From 2312f84487d0a9f0dda7b4c0b360c9b269343cd8 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Wed, 24 Jan 2018 16:03:03 +0100 Subject: [PATCH 01/27] migrate to ts --- .editorconfig | 9 + .gitignore | 1 + README.md | 16 +- dictionaries/en_US/README.md | 7 + .../en_US/en_US.aff | 0 .../en_US/en_US.dic | 0 dist/typo.js | 744 ++++ dist/typo.js.map | 1 + license.txt | 5 +- manifest.json | 9 - package.json | 28 + {typo => src}/README.md | 10 +- src/typo.ts | 973 ++++++ tsconfig.json | 13 + tslint.json | 7 + typo/dictionaries/en_US/README.md | 7 - typo/package.json | 27 - typo/typo.js | 981 ------ yarn.lock | 3003 +++++++++++++++++ 19 files changed, 4797 insertions(+), 1044 deletions(-) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 dictionaries/en_US/README.md rename {typo/dictionaries => dictionaries}/en_US/en_US.aff (100%) rename {typo/dictionaries => dictionaries}/en_US/en_US.dic (100%) create mode 100644 dist/typo.js create mode 100644 dist/typo.js.map delete mode 100644 manifest.json create mode 100644 package.json rename {typo => src}/README.md (96%) create mode 100644 src/typo.ts create mode 100644 tsconfig.json create mode 100644 tslint.json delete mode 100644 typo/dictionaries/en_US/README.md delete mode 100644 typo/package.json delete mode 100644 typo/typo.js create mode 100644 yarn.lock diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..59754b0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[{src,scripts}/**.{ts,json,js}] +end_of_line = crlf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/README.md b/README.md index 84cd00c..81fb4fc 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -Typo.js is a JavaScript spellchecker that uses Hunspell-style dictionaries. +Typo.js is a Typescript port of [Typo.js spellchecker](https://github.com/cfinke/Typo.js) -Usage -===== +# Usage To use Typo in a Chrome extension, simply include the typo.js file in your extension's background page, and then initialize the dictionary like so: @@ -29,7 +28,7 @@ var is_spelled_correctly = dictionary.check("mispelled"); ``` To get suggested corrections for a misspelled word, do this: - + ```javascript var array_of_suggestions = dictionary.suggest("mispeling"); @@ -49,13 +48,10 @@ Typo.js has full support for the following Hunspell affix flags: * NOSUGGEST * NEEDAFFIX -_Note: The manifest.json file in the root directory of the project is there to simplify testing, as it allows you to load all of the files in the Typo project as a Chrome extension. It doesn't have any purpose if you're using Typo.js in your own project._ +# Demo -Demo -==== There's a live demo of Typo.js at http://www.chrisfinke.com/files/typo-demo/ and a complete Node.js example file at examples/node/index.js. -Licensing -========= +# Licensing -Typo.js is free software, licensed under the Modified BSD License. \ No newline at end of file +Typo.js is free software, licensed under the Modified BSD License. diff --git a/dictionaries/en_US/README.md b/dictionaries/en_US/README.md new file mode 100644 index 0000000..bcdc117 --- /dev/null +++ b/dictionaries/en_US/README.md @@ -0,0 +1,7 @@ +2006-02-07 release. + +--- + +This dictionary is based on a subset of the original English wordlist created by Kevin Atkinson for Pspell and Aspell and thus is covered by his original LGPL license. The affix file is a heavily modified version of the original english.aff file which was released as part of Geoff Kuenning's Ispell and as such is covered by his BSD license. + +Thanks to both authors for their wonderful work. diff --git a/typo/dictionaries/en_US/en_US.aff b/dictionaries/en_US/en_US.aff similarity index 100% rename from typo/dictionaries/en_US/en_US.aff rename to dictionaries/en_US/en_US.aff diff --git a/typo/dictionaries/en_US/en_US.dic b/dictionaries/en_US/en_US.dic similarity index 100% rename from typo/dictionaries/en_US/en_US.dic rename to dictionaries/en_US/en_US.dic diff --git a/dist/typo.js b/dist/typo.js new file mode 100644 index 0000000..059f156 --- /dev/null +++ b/dist/typo.js @@ -0,0 +1,744 @@ +import { Buffer } from "buffer"; +import * as fs from "fs"; +var Typo = /** @class */ (function() { + /** + * Typo constructor. + * + * @param {String} [dictionary] The locale code of the dictionary being used. e.g., + * "en_US". This is only used to auto-load dictionaries. + * @param {String} [affData] The data from the dictionary's .aff file. If omitted + * and Typo.js is being used in a Chrome extension, the .aff + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].aff + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff + * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted + * and Typo.js is being used in a Chrome extension, the .dic + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].dic + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic + * @param {Object} [settings] Constructor settings. Available properties are: + * {String} [dictionaryPath]: path to load dictionary from in non-chrome + * environment. + * {Object} [flags]: flag information. + * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded + * asynchronously. + * {Function} [loadedCallback]: Called when both affData and wordsData + * have been loaded. Only used if asyncLoad is set to true. The parameter + * is the instantiated Typo object. + * + * @returns {Typo} A Typo object. + */ + function Typo(dictionary, affData, wordsData, settings) { + if (settings === void 0) { + settings = {}; + } + this.affData = affData; + this.wordsData = wordsData; + this.settings = settings; + this.rules = {}; + this.dictionaryTable = {}; + this.compoundRules = []; + this.compoundRuleCodes = {}; + this.replacementTable = []; + this.flags = {}; + this.memoized = {}; + this.loaded = false; + var path = Typo.DEFAULT_PATH; + if (dictionary) { + // If the data is preloaded, just setup the Typo object. + if (this.affData && this.wordsData) { + this.setup(); + } + if (this.settings.dictionaryPath) { + path = this.settings.dictionaryPath; + } + if (!this.affData) { + this.readDataFile( + path + "/" + dictionary + "/" + dictionary + ".aff", + this.setAffData + ); + } + if (!this.wordsData) { + this.readDataFile( + path + "/" + dictionary + "/" + dictionary + ".dic", + this.setWordsData + ); + } + } + } + Typo.prototype.readDataFile = function(url, setFunc) { + var response = this.readFile(url, null, this.settings.asyncLoad); + if (this.settings.asyncLoad) { + response.then(function(data) { + setFunc(data); + }); + } else { + setFunc(response); + } + }; + Typo.prototype.setAffData = function(data) { + this.affData = data; + if (this.wordsData) { + this.setup(); + } + }; + Typo.prototype.setWordsData = function(data) { + this.wordsData = data; + if (this.affData) { + this.setup(); + } + }; + Typo.prototype.setup = function() { + this.rules = this._parseAFF(this.affData); + // Save the rule codes that are used in compound rules. + this.compoundRuleCodes = {}; + var _len = this.compoundRules.length; + for (var i = 0; i < _len; i++) { + var rule = this.compoundRules[i]; + var _jlen = rule.length; + for (var j = 0; j < _jlen; j++) { + this.compoundRuleCodes[rule[j]] = []; + } + } + // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC + // will do the work of saving the list of words that are compound-only. + if ("ONLYINCOMPOUND" in this.flags) { + this.compoundRuleCodes["ONLYINCOMPOUND"] = []; + } + this.dictionaryTable = this._parseDIC(this.wordsData); + // Get rid of any codes from the compound rule codes that are never used + // (or that were special regex characters). Not especially necessary... + for (var i in this.compoundRuleCodes) { + if (this.compoundRuleCodes[i].length === 0) { + delete this.compoundRuleCodes[i]; + } + } + // Build the full regular expressions for each compound rule. + // I have a feeling (but no confirmation yet) that this method of + // testing for compound words is probably slow. + for (var i = 0, _len_1 = this.compoundRules.length; i < _len_1; i++) { + var ruleText = this.compoundRules[i]; + var expressionText = ""; + var _jlen = ruleText.length; + for (var j = 0; j < _jlen; j++) { + var character = ruleText[j]; + if (character in this.compoundRuleCodes) { + expressionText += + "(" + this.compoundRuleCodes[character].join("|") + ")"; + } else { + expressionText += character; + } + } + this.compoundRules[i] = new RegExp(expressionText, "i"); + } + this.loaded = true; + if (this.settings.asyncLoad && this.settings.loadedCallback) { + this.settings.loadedCallback(this); + } + }; + /** + * Read the contents of a file. + * + * @param {String} path The path (relative) to the file. + * @param {String} [charset="ISO8859-1"] The expected charset of the file + * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all + * files are read synchronously. + * @returns {String} The file data if async is false, otherwise a promise object. If running node.js, the data is + * always returned. + */ + Typo.prototype.readFile = function(path, charset, asyncLoad) { + charset = charset || "utf8"; + if (typeof XMLHttpRequest !== "undefined") { + var promise; + var req = new XMLHttpRequest(); + req.open("GET", path, asyncLoad); + if (asyncLoad) { + promise = new Promise(function(resolve, reject) { + req.onload = function() { + if (req.status === 200) { + resolve(req.responseText); + } else { + reject(req.statusText); + } + }; + req.onerror = function() { + reject(req.statusText); + }; + }); + } + if (req.overrideMimeType) + req.overrideMimeType("text/plain; charset=" + charset); + req.send(null); + return asyncLoad ? promise : req.responseText; + } else { + try { + if (fs.existsSync(path)) { + var stats = fs.statSync(path); + var fileDescriptor = fs.openSync(path, "r"); + var buffer = new Buffer(stats.size); + fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); + return buffer.toString(charset, 0, buffer.length); + } else { + console.log("Path " + path + " does not exist."); + } + } catch (e) { + console.log(e); + return ""; + } + } + }; + /** + * Parse the rules out from a .aff file. + * + * @param {String} data The contents of the affix file. + * @returns object The rules from the file. + */ + Typo.prototype._parseAFF = function(data) { + var rules = {}; + var line, subline, numEntries, lineParts; + var i, j, _len, _jlen; + // Remove comment lines + data = this._removeAffixComments(data); + var lines = data.split("\n"); + for (i = 0, _len = lines.length; i < _len; i++) { + line = lines[i]; + var definitionParts = line.split(/\s+/); + var ruleType = definitionParts[0]; + if (ruleType == "PFX" || ruleType == "SFX") { + var ruleCode = definitionParts[1]; + var combineable = definitionParts[2]; + numEntries = parseInt(definitionParts[3], 10); + var entries = []; + for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { + subline = lines[j]; + lineParts = subline.split(/\s+/); + var charactersToRemove = lineParts[2]; + var additionParts = lineParts[3].split("/"); + var charactersToAdd = additionParts[0]; + if (charactersToAdd === "0") charactersToAdd = ""; + var continuationClasses = this.parseRuleCodes(additionParts[1]); + var regexToMatch = lineParts[4]; + var entry = {}; + entry.add = charactersToAdd; + if (continuationClasses.length > 0) + entry.continuationClasses = continuationClasses; + if (regexToMatch !== ".") { + if (ruleType === "SFX") { + entry.match = new RegExp(regexToMatch + "$"); + } else { + entry.match = new RegExp("^" + regexToMatch); + } + } + if (charactersToRemove != "0") { + if (ruleType === "SFX") { + entry.remove = new RegExp(charactersToRemove + "$"); + } else { + entry.remove = charactersToRemove; + } + } + entries.push(entry); + } + rules[ruleCode] = { + type: ruleType, + combineable: combineable == "Y", + entries: entries + }; + i += numEntries; + } else if (ruleType === "COMPOUNDRULE") { + numEntries = parseInt(definitionParts[1], 10); + for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { + line = lines[j]; + lineParts = line.split(/\s+/); + this.compoundRules.push(lineParts[1]); + } + i += numEntries; + } else if (ruleType === "REP") { + lineParts = line.split(/\s+/); + if (lineParts.length === 3) { + this.replacementTable.push([lineParts[1], lineParts[2]]); + } + } else { + // ONLYINCOMPOUND + // COMPOUNDMIN + // FLAG + // KEEPCASE + // NEEDAFFIX + this.flags[ruleType] = definitionParts[1]; + } + } + return rules; + }; + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from an affix file. + * @return {String} The cleaned-up data. + */ + Typo.prototype._removeAffixComments = function(data) { + // Remove comments + // This used to remove any string starting with '#' up to the end of the line, + // but some COMPOUNDRULE definitions include '#' as part of the rule. + // I haven't seen any affix files that use comments on the same line as real data, + // so I don't think this will break anything. + data = data.replace(/^\s*#.*$/gm, ""); + // Trim each line + data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); + // Remove blank lines. + data = data.replace(/\n{2,}/g, "\n"); + // Trim the entire string + data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + return data; + }; + /** + * Parses the words out from the .dic file. + * + * @param {String} data The data from the dictionary file. + * @returns object The lookup table containing all of the words and + * word forms from the dictionary. + */ + Typo.prototype._parseDIC = function(data) { + data = this._removeDicComments(data); + var lines = data.split("\n"); + var dictionaryTable = {}; + function addWord(word, rules) { + // Some dictionaries will list the same word multiple times with different rule sets. + if (!dictionaryTable.hasOwnProperty(word)) { + dictionaryTable[word] = null; + } + if (rules.length > 0) { + if (dictionaryTable[word] === null) { + dictionaryTable[word] = []; + } + dictionaryTable[word].push(rules); + } + } + // The first line is the number of words in the dictionary. + for (var i = 1, _len = lines.length; i < _len; i++) { + var line = lines[i]; + if (!line) { + // Ignore empty lines. + continue; + } + var parts = line.split("/", 2); + var word = parts[0]; + // Now for each affix rule, generate that form of the word. + if (parts.length > 1) { + var ruleCodesArray = this.parseRuleCodes(parts[1]); + // Save the ruleCodes for compound word situations. + if ( + !("NEEDAFFIX" in this.flags) || + ruleCodesArray.indexOf(this.flags.NEEDAFFIX) == -1 + ) { + addWord(word, ruleCodesArray); + } + for (var j = 0, _jlen = ruleCodesArray.length; j < _jlen; j++) { + var code = ruleCodesArray[j]; + var rule = this.rules[code]; + if (rule) { + var newWords = this._applyRule(word, rule); + for (var ii = 0, _iilen = newWords.length; ii < _iilen; ii++) { + var newWord = newWords[ii]; + addWord(newWord, []); + if (rule.combineable) { + for (var k = j + 1; k < _jlen; k++) { + var combineCode = ruleCodesArray[k]; + var combineRule = this.rules[combineCode]; + if (combineRule) { + if ( + combineRule.combineable && + rule.type != combineRule.type + ) { + var otherNewWords = this._applyRule(newWord, combineRule); + for ( + var iii = 0, _iiilen = otherNewWords.length; + iii < _iiilen; + iii++ + ) { + var otherNewWord = otherNewWords[iii]; + addWord(otherNewWord, []); + } + } + } + } + } + } + } + if (code in this.compoundRuleCodes) { + this.compoundRuleCodes[code].push(word); + } + } + } else { + addWord(word.trim(), []); + } + } + return dictionaryTable; + }; + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from a .dic file. + * @return {String} The cleaned-up data. + */ + Typo.prototype._removeDicComments = function(data) { + // I can't find any official documentation on it, but at least the de_DE + // dictionary uses tab-indented lines as comments. + // Remove comments + data = data.replace(/^\t.*$/gm, ""); + return data; + }; + Typo.prototype.parseRuleCodes = function(textCodes) { + if (!textCodes) { + return []; + } else if (!("FLAG" in this.flags)) { + return textCodes.split(""); + } else if (this.flags.FLAG === "long") { + var flags = []; + for (var i = 0, _len = textCodes.length; i < _len; i += 2) { + flags.push(textCodes.substr(i, 2)); + } + return flags; + } else if (this.flags.FLAG === "num") { + return textCodes.split(","); + } + }; + /** + * Applies an affix rule to a word. + * + * @param {String} word The base word. + * @param {Object} rule The affix rule. + * @returns {String[]} The new words generated by the rule. + */ + Typo.prototype._applyRule = function(word, rule) { + var entries = rule.entries; + var newWords = []; + for (var i = 0, _len = entries.length; i < _len; i++) { + var entry = entries[i]; + if (!entry.match || word.match(entry.match)) { + var newWord = word; + if (entry.remove) { + newWord = newWord.replace(entry.remove, ""); + } + if (rule.type === "SFX") { + newWord = newWord + entry.add; + } else { + newWord = entry.add + newWord; + } + newWords.push(newWord); + if ("continuationClasses" in entry) { + for ( + var j = 0, _jlen = entry.continuationClasses.length; + j < _jlen; + j++ + ) { + var continuationRule = this.rules[entry.continuationClasses[j]]; + if (continuationRule) { + newWords = newWords.concat( + this._applyRule(newWord, continuationRule) + ); + } + /* + else { + // This shouldn't happen, but it does, at least in the de_DE dictionary. + // I think the author mistakenly supplied lower-case rule codes instead + // of upper-case. + } + */ + } + } + } + } + return newWords; + }; + /** + * Checks whether a word or a capitalization variant exists in the current dictionary. + * The word is trimmed and several variations of capitalizations are checked. + * If you want to check a word without any changes made to it, call checkExact() + * + * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function + * + * @param {String} aWord The word to check. + * @returns {Boolean} + */ + Typo.prototype.check = function(aWord) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + // Remove leading and trailing whitespace + var trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + if (this.checkExact(trimmedWord)) { + return true; + } + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + var capitalizedWord = + trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + if (this.checkExact(capitalizedWord)) { + return true; + } + } + var lowercaseWord = trimmedWord.toLowerCase(); + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } + } + return false; + }; + /** + * Checks whether a word exists in the current dictionary. + * + * @param {String} word The word to check. + * @returns {Boolean} + */ + Typo.prototype.checkExact = function(word) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + var ruleCodes = this.dictionaryTable[word]; + var i, _len; + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ( + "COMPOUNDMIN" in this.flags && + word.length >= this.flags.COMPOUNDMIN + ) { + for (i = 0, _len = this.compoundRules.length; i < _len; i++) { + if (word.match(this.compoundRules[i])) { + return true; + } + } + } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { + // this.dictionary['hasOwnProperty'] will be a function. + for (i = 0, _len = ruleCodes.length; i < _len; i++) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { + return true; + } + } + } + return false; + }; + /** + * Looks up whether a given word is flagged with a given flag. + * + * @param {String} word The word in question. + * @param {String} flag The flag in question. + * @return {Boolean} + */ + Typo.prototype.hasFlag = function(word, flag, wordFlags) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = Array.prototype.concat.apply( + [], + this.dictionaryTable[word] + ); + } + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } + } + return false; + }; + /** + * Returns a list of suggestions for a misspelled word. + * + * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. + * This suggestor is primitive, but it works. + * + * @param {String} word The misspelling. + * @param {Number} [limit=5] The maximum number of suggestions to return. + * @returns {String[]} The array of suggestions. + */ + Typo.prototype.suggest = function(word, limit) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + limit = limit || 5; + if (this.memoized.hasOwnProperty(word)) { + var memoizedLimit = this.memoized[word]["limit"]; + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if ( + limit <= memoizedLimit || + this.memoized[word]["suggestions"].length < memoizedLimit + ) { + return this.memoized[word]["suggestions"].slice(0, limit); + } + } + if (this.check(word)) return []; + // Check the replacement table. + for (var i = 0, _len = this.replacementTable.length; i < _len; i++) { + var replacementEntry = this.replacementTable[i]; + if (word.indexOf(replacementEntry[0]) !== -1) { + var correctedWord = word.replace( + replacementEntry[0], + replacementEntry[1] + ); + if (this.check(correctedWord)) { + return [correctedWord]; + } + } + } + /** + * Returns a hash keyed by all of the strings that can be made by making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. + * + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool known_only Whether this function should ignore strings that are not in the dictionary. + */ + function edits1(words, known_only) { + var rv = {}; + var i, j, _len, _jlen, _edit; + if (typeof words == "string") { + var word = words; + words = {}; + words[word] = true; + } + for (var word in words) { + for (i = 0, _len = word.length + 1; i < _len; i++) { + var s = [word.substring(0, i), word.substring(i)]; + if (s[1]) { + _edit = s[0] + s[1].substring(1); + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + _edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + if (s[1]) { + for (j = 0, _jlen = this.alphabet.length; j < _jlen; j++) { + // Eliminate replacement of a letter by itthis + if (this.alphabet[j] != s[1].substring(0, 1)) { + _edit = s[0] + this.alphabet[j] + s[1].substring(1); + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + } + } + if (s[1]) { + for (j = 0, _jlen = this.alphabet.length; j < _jlen; j++) { + _edit = s[0] + this.alphabet[j] + s[1]; + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + } + } + } + return rv; + } + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + var ed1 = edits1(word); + var ed2 = edits1(ed1, true); + // Sort the edits based on how many different ways they were created. + var weighted_corrections = ed2; + for (var ed1word in ed1) { + if (!this.check(ed1word)) { + continue; + } + if (ed1word in weighted_corrections) { + weighted_corrections[ed1word] += ed1[ed1word]; + } else { + weighted_corrections[ed1word] = ed1[ed1word]; + } + } + var sorted_corrections = []; + for (var i_1 in weighted_corrections) { + if (weighted_corrections.hasOwnProperty(i_1)) { + sorted_corrections.push([i_1, weighted_corrections[i_1]]); + } + } + function sorter(a, b) { + if (a[1] < b[1]) { + return -1; + } + // @todo If a and b are equally weighted, add our own weight based on something like the key locations on this language's default keyboard. + return 1; + } + sorted_corrections.sort(sorter).reverse(); + var rv = []; + var capitalization_scheme = "lowercase"; + if (word.toUpperCase() === word) { + capitalization_scheme = "uppercase"; + } else if ( + word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === + word + ) { + capitalization_scheme = "capitalized"; + } + var working_limit = limit; + for (i = 0; i < Math.min(working_limit, sorted_corrections.length); i++) { + if ("uppercase" === capitalization_scheme) { + sorted_corrections[i][0] = sorted_corrections[i][0].toUpperCase(); + } else if ("capitalized" === capitalization_scheme) { + sorted_corrections[i][0] = + sorted_corrections[i][0].substr(0, 1).toUpperCase() + + sorted_corrections[i][0].substr(1); + } + if ( + !this.hasFlag(sorted_corrections[i][0], "NOSUGGEST") && + rv.indexOf(sorted_corrections[i][0]) == -1 + ) { + rv.push(sorted_corrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion + // make sure we still return the right number of suggestions. + working_limit++; + } + } + return rv; + } + this.memoized[word] = { + suggestions: correct(word), + limit: limit + }; + return this.memoized[word]["suggestions"]; + }; + Typo.DEFAULT_PATH = "dictionaries"; + return Typo; +})(); +export { Typo }; +//# sourceMappingURL=typo.js.map diff --git a/dist/typo.js.map b/dist/typo.js.map new file mode 100644 index 0000000..9d4d9b4 --- /dev/null +++ b/dist/typo.js.map @@ -0,0 +1 @@ +{"version":3,"file":"typo.js","sourceRoot":"","sources":["../src/typo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC;AAoBzB;IAcI;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IACH,cACI,UAAmB,EACX,OAAgB,EAChB,SAAkB,EAClB,QAAwB;QAAxB,yBAAA,EAAA,aAAwB;QAFxB,YAAO,GAAP,OAAO,CAAS;QAChB,cAAS,GAAT,SAAS,CAAS;QAClB,aAAQ,GAAR,QAAQ,CAAgB;QA5C5B,UAAK,GAA4B,EAAE,CAAC;QACpC,oBAAe,GAAW,EAAE,CAAC;QAE7B,kBAAa,GAAe,EAAE,CAAC;QAC/B,sBAAiB,GAAmC,EAAE,CAAC;QACvD,qBAAgB,GAAe,EAAE,CAAC;QAClC,UAAK,GAA4B,EAAE,CAAC;QACpC,aAAQ,GAA4B,EAAE,CAAC;QAEvC,WAAM,GAAY,KAAK,CAAC;QAqC5B,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC;QAE7B,EAAE,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC;YACb,wDAAwD;YACxD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;gBACjC,IAAI,CAAC,KAAK,EAAE,CAAC;YACjB,CAAC;YACD,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC;gBAC/B,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC;YACxC,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;gBAChB,IAAI,CAAC,YAAY,CACb,IAAI,GAAG,GAAG,GAAG,UAAU,GAAG,GAAG,GAAG,UAAU,GAAG,MAAM,EACnD,IAAI,CAAC,UAAU,CAClB,CAAC;YACN,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;gBAClB,IAAI,CAAC,YAAY,CACb,IAAI,GAAG,GAAG,GAAG,UAAU,GAAG,GAAG,GAAG,UAAU,GAAG,MAAM,EACnD,IAAI,CAAC,YAAY,CACpB,CAAC;YACN,CAAC;QACL,CAAC;IACL,CAAC;IAEO,2BAAY,GAApB,UAAqB,GAAW,EAAE,OAAiC;QAC/D,IAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAEnE,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC;YAC1B,QAAQ,CAAC,IAAI,CAAC,UAAS,IAAY;gBAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC,CAAC,CAAC;QACP,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,OAAO,CAAC,QAAQ,CAAC,CAAC;QACtB,CAAC;IACL,CAAC;IAEO,yBAAU,GAAlB,UAAmB,IAAY;QAC3B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAEpB,EAAE,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YACjB,IAAI,CAAC,KAAK,EAAE,CAAC;QACjB,CAAC;IACL,CAAC;IAEO,2BAAY,GAApB,UAAqB,IAAY;QAC7B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QAEtB,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,KAAK,EAAE,CAAC;QACjB,CAAC;IACL,CAAC;IAEO,oBAAK,GAAb;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAE1C,uDAAuD;QACvD,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAE5B,IAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC;QACvC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC5B,IAAI,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;YAEjC,IAAM,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YAC1B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;YACzC,CAAC;QACL,CAAC;QAED,+EAA+E;QAC/E,uEAAuE;QACvE,EAAE,CAAC,CAAC,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,GAAG,EAAE,CAAC;QAClD,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAEtD,wEAAwE;QACxE,wEAAwE;QACxE,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YACnC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACrC,CAAC;QACL,CAAC;QAED,6DAA6D;QAC7D,iEAAiE;QACjE,+CAA+C;QAC/C,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,MAAI,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,MAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC9D,IAAI,QAAQ,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;YAErC,IAAI,cAAc,GAAG,EAAE,CAAC;YAExB,IAAM,KAAK,GAAG,QAAQ,CAAC,MAAM,CAAC;YAC9B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7B,IAAI,SAAS,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;gBAE5B,EAAE,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;oBACtC,cAAc;wBACV,GAAG,GAAG,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;gBAChE,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,cAAc,IAAI,SAAS,CAAC;gBAChC,CAAC;YACL,CAAC;YAED,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,IAAI,MAAM,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAC5D,CAAC;QAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,IAAI,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC;YAC1D,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QACvC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IAEK,uBAAQ,GAAhB,UACI,IAAY,EACZ,OAAsB,EACtB,SAAmB;QAEnB,OAAO,GAAG,OAAO,IAAI,MAAM,CAAC;QAE5B,EAAE,CAAC,CAAC,OAAO,cAAc,KAAK,WAAW,CAAC,CAAC,CAAC;YACxC,IAAI,OAAO,CAAC;YACZ,IAAI,GAAG,GAAG,IAAI,cAAc,EAAE,CAAC;YAC/B,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;YAEjC,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;gBACZ,OAAO,GAAG,IAAI,OAAO,CACjB,UACI,OAA8B,EAC9B,MAA6B;oBAE7B,GAAG,CAAC,MAAM,GAAG;wBACT,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,CAAC;4BACrB,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;wBAC9B,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;wBAC3B,CAAC;oBACL,CAAC,CAAC;oBAEF,GAAG,CAAC,OAAO,GAAG;wBACV,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;oBAC3B,CAAC,CAAC;gBACN,CAAC,CACJ,CAAC;YACN,CAAC;YAED,EAAE,CAAC,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACrB,GAAG,CAAC,gBAAgB,CAAC,sBAAsB,GAAG,OAAO,CAAC,CAAC;YAE3D,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAEf,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC;QAClD,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC;gBACD,EAAE,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oBACtB,IAAM,KAAK,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;oBAEhC,IAAM,cAAc,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;oBAE9C,IAAM,MAAM,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAEtC,EAAE,CAAC,QAAQ,CAAC,cAAc,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;oBAE5D,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;gBACtD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,CAAC,GAAG,CAAC,OAAO,GAAG,IAAI,GAAG,kBAAkB,CAAC,CAAC;gBACrD,CAAC;YACL,CAAC;YAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACT,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;gBACf,MAAM,CAAC,EAAE,CAAC;YACd,CAAC;QACL,CAAC;IACL,CAAC;IAED;;;;;OAKG;IAEH,wBAAS,GAAT,UAAU,IAAY;QAClB,IAAI,KAAK,GAAG,EAAE,CAAC;QAEf,IAAI,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,SAAS,CAAC;QACzC,IAAI,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QAEtB,uBAAuB;QACvB,IAAI,GAAG,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAC;QAEvC,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAE7B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC7C,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEhB,IAAI,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAExC,IAAI,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAElC,EAAE,CAAC,CAAC,QAAQ,IAAI,KAAK,IAAI,QAAQ,IAAI,KAAK,CAAC,CAAC,CAAC;gBACzC,IAAI,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBAClC,IAAI,WAAW,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,IAAI,OAAO,GAAG,EAAE,CAAC;gBAEjB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oBACzD,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEnB,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBACjC,IAAI,kBAAkB,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAEtC,IAAI,aAAa,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oBAE5C,IAAI,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACvC,EAAE,CAAC,CAAC,eAAe,KAAK,GAAG,CAAC;wBAAC,eAAe,GAAG,EAAE,CAAC;oBAElD,IAAI,mBAAmB,GAAG,IAAI,CAAC,cAAc,CACzC,aAAa,CAAC,CAAC,CAAC,CACnB,CAAC;oBAEF,IAAI,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAEhC,IAAM,KAAK,GAAW,EAAE,CAAC;oBACzB,KAAK,CAAC,GAAG,GAAG,eAAe,CAAC;oBAE5B,EAAE,CAAC,CAAC,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC;wBAC/B,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;oBAEpD,EAAE,CAAC,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC;wBACjD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,CAAC;wBACjD,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,kBAAkB,IAAI,GAAG,CAAC,CAAC,CAAC;wBAC5B,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,kBAAkB,GAAG,GAAG,CAAC,CAAC;wBACxD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,MAAM,GAAG,kBAAkB,CAAC;wBACtC,CAAC;oBACL,CAAC;oBAED,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACxB,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,GAAG;oBACd,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,WAAW,IAAI,GAAG;oBAC/B,OAAO,EAAE,OAAO;iBACnB,CAAC;gBAEF,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,cAAc,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oBACzD,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEhB,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC9B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC5B,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAE9B,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;oBACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,iBAAiB;gBACjB,cAAc;gBACd,OAAO;gBACP,WAAW;gBACX,YAAY;gBAEZ,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEH,mCAAoB,GAApB,UAAqB,IAAY;QAC7B,kBAAkB;QAClB,8EAA8E;QAC9E,qEAAqE;QACrE,kFAAkF;QAClF,6CAA6C;QAC7C,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;QAEtC,iBAAiB;QACjB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QAE1D,sBAAsB;QACtB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAErC,yBAAyB;QACzB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAExD,MAAM,CAAC,IAAI,CAAC;IAChB,CAAC;IAED;;;;;;OAMG;IAEH,wBAAS,GAAT,UAAU,IAAY;QAClB,IAAI,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;QAErC,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC7B,IAAI,eAAe,GAAG,EAAE,CAAC;QAEzB,iBAAiB,IAAI,EAAE,KAAK;YACxB,qFAAqF;YACrF,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACjC,CAAC;YAED,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;oBACjC,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC/B,CAAC;gBAED,eAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,CAAC;QACL,CAAC;QAED,2DAA2D;QAC3D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACjD,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEpB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACR,sBAAsB;gBACtB,QAAQ,CAAC;YACb,CAAC;YAED,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YAE/B,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEpB,2DAA2D;YAC3D,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAI,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAEnD,mDAAmD;gBACnD,EAAE,CAAC,CACC,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC;oBAC5B,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,CACrD,CAAC,CAAC,CAAC;oBACC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;gBAClC,CAAC;gBAED,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC5D,IAAI,IAAI,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oBAE7B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAE5B,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;wBACP,IAAI,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;wBAE3C,GAAG,CAAC,CACA,IAAI,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC,MAAM,EACpC,EAAE,GAAG,MAAM,EACX,EAAE,EAAE,EACN,CAAC;4BACC,IAAI,OAAO,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;4BAE3B,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;4BAErB,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;gCACnB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oCACjC,IAAI,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oCAEpC,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;oCAE1C,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;wCACd,EAAE,CAAC,CACC,WAAW,CAAC,WAAW;4CACvB,IAAI,CAAC,IAAI,IAAI,WAAW,CAAC,IAC7B,CAAC,CAAC,CAAC;4CACC,IAAI,aAAa,GAAG,IAAI,CAAC,UAAU,CAC/B,OAAO,EACP,WAAW,CACd,CAAC;4CAEF,GAAG,CAAC,CACA,IAAI,GAAG,GAAG,CAAC,EACP,OAAO,GACH,aAAa,CAAC,MAAM,EAC5B,GAAG,GAAG,OAAO,EACb,GAAG,EAAE,EACP,CAAC;gDACC,IAAI,YAAY,GACZ,aAAa,CAAC,GAAG,CAAC,CAAC;gDACvB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4CAC9B,CAAC;wCACL,CAAC;oCACL,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;wBACjC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC5C,CAAC;gBACL,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;YAC7B,CAAC;QACL,CAAC;QAED,MAAM,CAAC,eAAe,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IAEH,iCAAkB,GAAlB,UAAmB,IAAI;QACnB,wEAAwE;QACxE,kDAAkD;QAElD,kBAAkB;QAClB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QAEpC,MAAM,CAAC,IAAI,CAAC;IAChB,CAAC;IAED,6BAAc,GAAd,UAAe,SAAS;QACpB,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;YACb,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACjC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAC/B,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC;YACpC,IAAI,KAAK,GAAG,EAAE,CAAC;YAEf,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;gBACxD,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvC,CAAC;YAED,MAAM,CAAC,KAAK,CAAC;QACjB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IAEH,yBAAU,GAAV,UAAW,IAAI,EAAE,IAAI;QACjB,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACnD,IAAI,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAEvB,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC1C,IAAI,OAAO,GAAG,IAAI,CAAC;gBAEnB,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;oBACf,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;gBAChD,CAAC;gBAED,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;oBACtB,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,OAAO,CAAC;gBAClC,CAAC;gBAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;gBAEvB,EAAE,CAAC,CAAC,qBAAqB,IAAI,KAAK,CAAC,CAAC,CAAC;oBACjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC,mBAAmB,CAAC,MAAM,EACnD,CAAC,GAAG,KAAK,EACT,CAAC,EAAE,EACL,CAAC;wBACC,IAAI,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAC7B,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAC/B,CAAC;wBAEF,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC;4BACnB,QAAQ,GAAG,QAAQ,CAAC,MAAM,CACtB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAC7C,CAAC;wBACN,CAAC;wBACD;;;;;;2BAMf;oBACW,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,QAAQ,CAAC;IACpB,CAAC;IAED;;;;;;;;;OASG;IAEH,oBAAK,GAAL,UAAM,KAAK;QACP,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,yCAAyC;QACzC,IAAI,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAEpE,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAED,2CAA2C;QAC3C,EAAE,CAAC,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC;YAC5C,0CAA0C;YAC1C,4CAA4C;YAC5C,IAAI,eAAe,GACf,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAE5D,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC5C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;gBACnC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,IAAI,aAAa,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;QAE9C,EAAE,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC,CAAC;YAChC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC1C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,6BAA6B;YAC7B,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;gBACjC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEH,yBAAU,GAAV,UAAW,IAAI;QACX,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,IAAI,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAE3C,IAAI,CAAC,EAAE,IAAI,CAAC;QAEZ,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;YACnC,0CAA0C;YAC1C,EAAE,CAAC,CACC,aAAa,IAAI,IAAI,CAAC,KAAK;gBAC3B,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,WAC9B,CAAC,CAAC,CAAC;gBACC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpC,MAAM,CAAC,IAAI,CAAC;oBAChB,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC;YAC5B,wEAAwE;YACxE,6DAA6D;YAC7D,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC;YACvC,wDAAwD;YACxD,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;gBACjD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACtD,MAAM,CAAC,IAAI,CAAC;gBAChB,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;OAMG;IAEH,sBAAO,GAAP,UAAQ,IAAI,EAAE,IAAI,EAAE,SAAU;QAC1B,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACrB,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;gBACnC,SAAS,GAAG,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,KAAK,CACpC,EAAE,EACF,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAC7B,CAAC;YACN,CAAC;YAED,EAAE,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEH,sBAAO,GAAP,UAAQ,IAAY,EAAE,KAAa;QAC/B,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrC,IAAI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC;YAEjD,wFAAwF;YACxF,2BAA2B;YAC3B,EAAE,CAAC,CACC,KAAK,IAAI,aAAa;gBACtB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,CAAC,MAAM,GAAG,aAChD,CAAC,CAAC,CAAC;gBACC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;YAC9D,CAAC;QACL,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAAC,MAAM,CAAC,EAAE,CAAC;QAEhC,+BAA+B;QAC/B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;YAEhD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAI,aAAa,GAAG,IAAI,CAAC,OAAO,CAC5B,gBAAgB,CAAC,CAAC,CAAC,EACnB,gBAAgB,CAAC,CAAC,CAAC,CACtB,CAAC;gBAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;oBAC5B,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;gBAC3B,CAAC;YACL,CAAC;QACL,CAAC;QAED;;;;;;WAMG;QACH,gBAAgB,KAAK,EAAE,UAAW;YAC9B,IAAI,EAAE,GAAG,EAAE,CAAC;YAEZ,IAAI,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC;YAE7B,EAAE,CAAC,CAAC,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,CAAC;gBAC3B,IAAI,IAAI,GAAG,KAAK,CAAC;gBACjB,KAAK,GAAG,EAAE,CAAC;gBACX,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACvB,CAAC;YAED,GAAG,CAAC,CAAC,IAAI,IAAI,IAAI,KAAK,CAAC,CAAC,CAAC;gBACrB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAChD,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;oBAElD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEjC,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;4BACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;4BAClB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;4BACnB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,gDAAgD;oBAChD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACzC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAErD,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;4BACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;4BAClB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;4BACnB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACnC,CAAC,GAAG,KAAK,EACT,CAAC,EAAE,EACL,CAAC;4BACC,8CAA8C;4BAC9C,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;gCAC3C,KAAK;oCACD,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gCAEhD,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;oCACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;wCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oCAClB,CAAC;oCAAC,IAAI,CAAC,CAAC;wCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oCACnB,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACnC,CAAC,GAAG,KAAK,EACT,CAAC,EAAE,EACL,CAAC;4BACC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;4BAEvC,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gCACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;oCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gCAClB,CAAC;gCAAC,IAAI,CAAC,CAAC;oCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;gCACnB,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;gBACL,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,iBAAiB,IAAI;YACjB,kEAAkE;YAClE,IAAI,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;YACvB,IAAI,GAAG,GAAG,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YAE5B,qEAAqE;YACrE,IAAI,oBAAoB,GAAG,GAAG,CAAC;YAE/B,GAAG,CAAC,CAAC,IAAI,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC;gBACtB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBACvB,QAAQ,CAAC;gBACb,CAAC;gBAED,EAAE,CAAC,CAAC,OAAO,IAAI,oBAAoB,CAAC,CAAC,CAAC;oBAClC,oBAAoB,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBAClD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,oBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;gBACjD,CAAC;YACL,CAAC;YAED,IAAI,kBAAkB,GAAG,EAAE,CAAC;YAE5B,GAAG,CAAC,CAAC,IAAI,GAAC,IAAI,oBAAoB,CAAC,CAAC,CAAC;gBACjC,EAAE,CAAC,CAAC,oBAAoB,CAAC,cAAc,CAAC,GAAC,CAAC,CAAC,CAAC,CAAC;oBACzC,kBAAkB,CAAC,IAAI,CAAC,CAAC,GAAC,EAAE,oBAAoB,CAAC,GAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,CAAC;YACL,CAAC;YAED,gBAAgB,CAAgB,EAAE,CAAgB;gBAC9C,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,MAAM,CAAC,CAAC,CAAC,CAAC;gBACd,CAAC;gBAED,2IAA2I;gBAE3I,MAAM,CAAC,CAAC,CAAC;YACb,CAAC;YAED,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC;YAE1C,IAAI,EAAE,GAAG,EAAE,CAAC;YAEZ,IAAI,qBAAqB,GAAG,WAAW,CAAC;YAExC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC9B,qBAAqB,GAAG,WAAW,CAAC;YACxC,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CACN,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;gBAC3B,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAChC,IACJ,CAAC,CAAC,CAAC;gBACC,qBAAqB,GAAG,aAAa,CAAC;YAC1C,CAAC;YAED,IAAI,aAAa,GAAW,KAAK,CAAC;YAElC,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EACL,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,aAAa,EAAE,kBAAkB,CAAC,MAAM,CAAC,EACtD,CAAC,EAAE,EACL,CAAC;gBACC,EAAE,CAAC,CAAC,WAAW,KAAK,qBAAqB,CAAC,CAAC,CAAC;oBACxC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,kBAAkB,CACzC,CAAC,CACJ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;gBACvB,CAAC;gBAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,KAAK,qBAAqB,CAAC,CAAC,CAAC;oBACjD,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpB,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;4BACnD,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC3C,CAAC;gBAED,EAAE,CAAC,CACC,CAAC,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC;oBACpD,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAC7C,CAAC,CAAC,CAAC;oBACC,EAAE,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACtC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,4DAA4D;oBAC5D,6DAA6D;oBAC7D,aAAa,EAAE,CAAC;gBACpB,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG;YAClB,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC;YAC1B,KAAK,EAAE,KAAK;SACf,CAAC;QAEF,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,CAAC;IAC9C,CAAC;IAr7Bc,iBAAY,GAAG,cAAc,CAAC;IAs7BjD,WAAC;CAAA,AAv7BD,IAu7BC;SAv7BY,IAAI"} \ No newline at end of file diff --git a/license.txt b/license.txt index 7d54f1a..cb47fc0 100644 --- a/license.txt +++ b/license.txt @@ -1,6 +1,3 @@ -Copyright (c) 2011, Christopher Finke -All rights reserved. - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright @@ -20,4 +17,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/manifest.json b/manifest.json deleted file mode 100644 index 23c7b61..0000000 --- a/manifest.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "manifest_version": 2, - "name": "Typo.js Testing Harness", - "version": "1.1", - "description": "Run the test suite by clicking on the Typo toolbar button.", - "browser_action": { - "default_popup": "tests/index.html" - } -} diff --git a/package.json b/package.json new file mode 100644 index 0000000..e8d51f0 --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "typo-js", + "version": "1.0.4", + "description": "A Typescript port of Typo.js", + "repository": { + "type": "git", + "url": "git://github.com/marcelorisoli/Typo.js.git" + }, + "keywords": ["spellcheck", "spellchecker", "hunspell", "typo", "speling"], + "author": "Marcelo Risoli ", + "license": "BSD-3-Clause", + "homepage": "https://github.com/marcelorisoli/Typo.js#readme", + "scripts": { + "build": "./node_modules/.bin/tsc", + "postinstall": "npm run build", + "precommit": "lint-staged", + "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}" + }, + "lint-staged": { + "*.{js,json,css,md}": ["prettier --write", "git add"] + }, + "devDependencies": { + "@types/node": "^9.3.0", + "husky": "^0.14.3", + "lint-staged": "^6.0.1", + "prettier": "1.10.2" + } +} diff --git a/typo/README.md b/src/README.md similarity index 96% rename from typo/README.md rename to src/README.md index 258be55..942570f 100644 --- a/typo/README.md +++ b/src/README.md @@ -1,7 +1,6 @@ Typo.js is a JavaScript spellchecker that uses Hunspell-style dictionaries. -Usage -===== +# Usage To use Typo, simply load it like so: @@ -19,7 +18,7 @@ var is_spelled_correctly = dictionary.check("mispelled"); ``` To get suggested corrections for a misspelled word, do this: - + ```javascript var array_of_suggestions = dictionary.suggest("mispeling"); @@ -39,7 +38,6 @@ Typo.js has full support for the following Hunspell affix flags: * NOSUGGEST * NEEDAFFIX -Licensing -========= +# Licensing -Typo.js is free software, licensed under the Modified BSD License. \ No newline at end of file +Typo.js is free software, licensed under the Modified BSD License. diff --git a/src/typo.ts b/src/typo.ts new file mode 100644 index 0000000..6f32574 --- /dev/null +++ b/src/typo.ts @@ -0,0 +1,973 @@ +import { Buffer } from "buffer"; +import * as fs from "fs"; +/** + * Typo is a Typescript port of a spellchecker using hunspell-style + * dictionaries. + */ + +interface IEntry { + add?: string; + continuationClasses?: any; + match?: any; + remove?: any; +} + +interface ISettings { + dictionaryPath?: string; + flags?: Object; + asyncLoad?: boolean; + loadedCallback?: (typo: Typo) => void; +} + +export class Typo { + private static DEFAULT_PATH = "dictionaries"; + + private rules: { [rule: string]: any } = {}; + private dictionaryTable: Object = {}; + + private compoundRules: Array = []; + private compoundRuleCodes: { [rule: string]: Array } = {}; + private replacementTable: Array = []; + private flags: { [flag: string]: any } = {}; + private memoized: { [rule: string]: any } = {}; + + private loaded: boolean = false; + + /** + * Typo constructor. + * + * @param {String} [dictionary] The locale code of the dictionary being used. e.g., + * "en_US". This is only used to auto-load dictionaries. + * @param {String} [affData] The data from the dictionary's .aff file. If omitted + * and Typo.js is being used in a Chrome extension, the .aff + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].aff + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff + * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted + * and Typo.js is being used in a Chrome extension, the .dic + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].dic + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic + * @param {Object} [settings] Constructor settings. Available properties are: + * {String} [dictionaryPath]: path to load dictionary from in non-chrome + * environment. + * {Object} [flags]: flag information. + * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded + * asynchronously. + * {Function} [loadedCallback]: Called when both affData and wordsData + * have been loaded. Only used if asyncLoad is set to true. The parameter + * is the instantiated Typo object. + * + * @returns {Typo} A Typo object. + */ + constructor( + dictionary?: string, + private affData?: string, + private wordsData?: string, + private settings: ISettings = {} + ) { + let path = Typo.DEFAULT_PATH; + + if (dictionary) { + // If the data is preloaded, just setup the Typo object. + if (this.affData && this.wordsData) { + this.setup(); + } + if (this.settings.dictionaryPath) { + path = this.settings.dictionaryPath; + } + if (!this.affData) { + this.readDataFile( + path + "/" + dictionary + "/" + dictionary + ".aff", + this.setAffData + ); + } + if (!this.wordsData) { + this.readDataFile( + path + "/" + dictionary + "/" + dictionary + ".dic", + this.setWordsData + ); + } + } + } + + private readDataFile(url: string, setFunc: ((data: string) => void)) { + const response = this.readFile(url, null, this.settings.asyncLoad); + + if (this.settings.asyncLoad) { + response.then(function(data: string) { + setFunc(data); + }); + } else { + setFunc(response); + } + } + + private setAffData(data: string) { + this.affData = data; + + if (this.wordsData) { + this.setup(); + } + } + + private setWordsData(data: string) { + this.wordsData = data; + + if (this.affData) { + this.setup(); + } + } + + private setup(): void { + this.rules = this._parseAFF(this.affData); + + // Save the rule codes that are used in compound rules. + this.compoundRuleCodes = {}; + + const _len = this.compoundRules.length; + for (let i = 0; i < _len; i++) { + let rule = this.compoundRules[i]; + + const _jlen = rule.length; + for (let j = 0; j < _jlen; j++) { + this.compoundRuleCodes[rule[j]] = []; + } + } + + // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC + // will do the work of saving the list of words that are compound-only. + if ("ONLYINCOMPOUND" in this.flags) { + this.compoundRuleCodes["ONLYINCOMPOUND"] = []; + } + + this.dictionaryTable = this._parseDIC(this.wordsData); + + // Get rid of any codes from the compound rule codes that are never used + // (or that were special regex characters). Not especially necessary... + for (let i in this.compoundRuleCodes) { + if (this.compoundRuleCodes[i].length === 0) { + delete this.compoundRuleCodes[i]; + } + } + + // Build the full regular expressions for each compound rule. + // I have a feeling (but no confirmation yet) that this method of + // testing for compound words is probably slow. + for (let i = 0, _len = this.compoundRules.length; i < _len; i++) { + var ruleText = this.compoundRules[i]; + + var expressionText = ""; + + const _jlen = ruleText.length; + for (let j = 0; j < _jlen; j++) { + var character = ruleText[j]; + + if (character in this.compoundRuleCodes) { + expressionText += + "(" + this.compoundRuleCodes[character].join("|") + ")"; + } else { + expressionText += character; + } + } + + this.compoundRules[i] = new RegExp(expressionText, "i"); + } + + this.loaded = true; + + if (this.settings.asyncLoad && this.settings.loadedCallback) { + this.settings.loadedCallback(this); + } + } + + /** + * Read the contents of a file. + * + * @param {String} path The path (relative) to the file. + * @param {String} [charset="ISO8859-1"] The expected charset of the file + * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all + * files are read synchronously. + * @returns {String} The file data if async is false, otherwise a promise object. If running node.js, the data is + * always returned. + */ + + private readFile( + path: string, + charset: string | null, + asyncLoad?: boolean + ) { + charset = charset || "utf8"; + + if (typeof XMLHttpRequest !== "undefined") { + var promise; + var req = new XMLHttpRequest(); + req.open("GET", path, asyncLoad); + + if (asyncLoad) { + promise = new Promise( + ( + resolve: (res: string) => void, + reject: (res: string) => void + ) => { + req.onload = function() { + if (req.status === 200) { + resolve(req.responseText); + } else { + reject(req.statusText); + } + }; + + req.onerror = function() { + reject(req.statusText); + }; + } + ); + } + + if (req.overrideMimeType) + req.overrideMimeType("text/plain; charset=" + charset); + + req.send(null); + + return asyncLoad ? promise : req.responseText; + } else { + try { + if (fs.existsSync(path)) { + const stats = fs.statSync(path); + + const fileDescriptor = fs.openSync(path, "r"); + + const buffer = new Buffer(stats.size); + + fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); + + return buffer.toString(charset, 0, buffer.length); + } else { + console.log("Path " + path + " does not exist."); + } + } catch (e) { + console.log(e); + return ""; + } + } + } + + /** + * Parse the rules out from a .aff file. + * + * @param {String} data The contents of the affix file. + * @returns object The rules from the file. + */ + + _parseAFF(data: string) { + var rules = {}; + + var line, subline, numEntries, lineParts; + var i, j, _len, _jlen; + + // Remove comment lines + data = this._removeAffixComments(data); + + var lines = data.split("\n"); + + for (i = 0, _len = lines.length; i < _len; i++) { + line = lines[i]; + + var definitionParts = line.split(/\s+/); + + var ruleType = definitionParts[0]; + + if (ruleType == "PFX" || ruleType == "SFX") { + var ruleCode = definitionParts[1]; + var combineable = definitionParts[2]; + numEntries = parseInt(definitionParts[3], 10); + + var entries = []; + + for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { + subline = lines[j]; + + lineParts = subline.split(/\s+/); + var charactersToRemove = lineParts[2]; + + var additionParts = lineParts[3].split("/"); + + var charactersToAdd = additionParts[0]; + if (charactersToAdd === "0") charactersToAdd = ""; + + var continuationClasses = this.parseRuleCodes( + additionParts[1] + ); + + var regexToMatch = lineParts[4]; + + const entry: IEntry = {}; + entry.add = charactersToAdd; + + if (continuationClasses.length > 0) + entry.continuationClasses = continuationClasses; + + if (regexToMatch !== ".") { + if (ruleType === "SFX") { + entry.match = new RegExp(regexToMatch + "$"); + } else { + entry.match = new RegExp("^" + regexToMatch); + } + } + + if (charactersToRemove != "0") { + if (ruleType === "SFX") { + entry.remove = new RegExp(charactersToRemove + "$"); + } else { + entry.remove = charactersToRemove; + } + } + + entries.push(entry); + } + + rules[ruleCode] = { + type: ruleType, + combineable: combineable == "Y", + entries: entries + }; + + i += numEntries; + } else if (ruleType === "COMPOUNDRULE") { + numEntries = parseInt(definitionParts[1], 10); + + for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { + line = lines[j]; + + lineParts = line.split(/\s+/); + this.compoundRules.push(lineParts[1]); + } + + i += numEntries; + } else if (ruleType === "REP") { + lineParts = line.split(/\s+/); + + if (lineParts.length === 3) { + this.replacementTable.push([lineParts[1], lineParts[2]]); + } + } else { + // ONLYINCOMPOUND + // COMPOUNDMIN + // FLAG + // KEEPCASE + // NEEDAFFIX + + this.flags[ruleType] = definitionParts[1]; + } + } + + return rules; + } + + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from an affix file. + * @return {String} The cleaned-up data. + */ + + _removeAffixComments(data: string) { + // Remove comments + // This used to remove any string starting with '#' up to the end of the line, + // but some COMPOUNDRULE definitions include '#' as part of the rule. + // I haven't seen any affix files that use comments on the same line as real data, + // so I don't think this will break anything. + data = data.replace(/^\s*#.*$/gm, ""); + + // Trim each line + data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); + + // Remove blank lines. + data = data.replace(/\n{2,}/g, "\n"); + + // Trim the entire string + data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + return data; + } + + /** + * Parses the words out from the .dic file. + * + * @param {String} data The data from the dictionary file. + * @returns object The lookup table containing all of the words and + * word forms from the dictionary. + */ + + _parseDIC(data: string) { + data = this._removeDicComments(data); + + var lines = data.split("\n"); + var dictionaryTable = {}; + + function addWord(word, rules) { + // Some dictionaries will list the same word multiple times with different rule sets. + if (!dictionaryTable.hasOwnProperty(word)) { + dictionaryTable[word] = null; + } + + if (rules.length > 0) { + if (dictionaryTable[word] === null) { + dictionaryTable[word] = []; + } + + dictionaryTable[word].push(rules); + } + } + + // The first line is the number of words in the dictionary. + for (var i = 1, _len = lines.length; i < _len; i++) { + var line = lines[i]; + + if (!line) { + // Ignore empty lines. + continue; + } + + var parts = line.split("/", 2); + + var word = parts[0]; + + // Now for each affix rule, generate that form of the word. + if (parts.length > 1) { + var ruleCodesArray = this.parseRuleCodes(parts[1]); + + // Save the ruleCodes for compound word situations. + if ( + !("NEEDAFFIX" in this.flags) || + ruleCodesArray.indexOf(this.flags.NEEDAFFIX) == -1 + ) { + addWord(word, ruleCodesArray); + } + + for (var j = 0, _jlen = ruleCodesArray.length; j < _jlen; j++) { + var code = ruleCodesArray[j]; + + var rule = this.rules[code]; + + if (rule) { + var newWords = this._applyRule(word, rule); + + for ( + var ii = 0, _iilen = newWords.length; + ii < _iilen; + ii++ + ) { + var newWord = newWords[ii]; + + addWord(newWord, []); + + if (rule.combineable) { + for (var k = j + 1; k < _jlen; k++) { + var combineCode = ruleCodesArray[k]; + + var combineRule = this.rules[combineCode]; + + if (combineRule) { + if ( + combineRule.combineable && + rule.type != combineRule.type + ) { + var otherNewWords = this._applyRule( + newWord, + combineRule + ); + + for ( + var iii = 0, + _iiilen = + otherNewWords.length; + iii < _iiilen; + iii++ + ) { + var otherNewWord = + otherNewWords[iii]; + addWord(otherNewWord, []); + } + } + } + } + } + } + } + + if (code in this.compoundRuleCodes) { + this.compoundRuleCodes[code].push(word); + } + } + } else { + addWord(word.trim(), []); + } + } + + return dictionaryTable; + } + + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from a .dic file. + * @return {String} The cleaned-up data. + */ + + _removeDicComments(data) { + // I can't find any official documentation on it, but at least the de_DE + // dictionary uses tab-indented lines as comments. + + // Remove comments + data = data.replace(/^\t.*$/gm, ""); + + return data; + } + + parseRuleCodes(textCodes) { + if (!textCodes) { + return []; + } else if (!("FLAG" in this.flags)) { + return textCodes.split(""); + } else if (this.flags.FLAG === "long") { + var flags = []; + + for (var i = 0, _len = textCodes.length; i < _len; i += 2) { + flags.push(textCodes.substr(i, 2)); + } + + return flags; + } else if (this.flags.FLAG === "num") { + return textCodes.split(","); + } + } + + /** + * Applies an affix rule to a word. + * + * @param {String} word The base word. + * @param {Object} rule The affix rule. + * @returns {String[]} The new words generated by the rule. + */ + + _applyRule(word, rule) { + var entries = rule.entries; + var newWords = []; + + for (var i = 0, _len = entries.length; i < _len; i++) { + var entry = entries[i]; + + if (!entry.match || word.match(entry.match)) { + var newWord = word; + + if (entry.remove) { + newWord = newWord.replace(entry.remove, ""); + } + + if (rule.type === "SFX") { + newWord = newWord + entry.add; + } else { + newWord = entry.add + newWord; + } + + newWords.push(newWord); + + if ("continuationClasses" in entry) { + for ( + var j = 0, _jlen = entry.continuationClasses.length; + j < _jlen; + j++ + ) { + var continuationRule = this.rules[ + entry.continuationClasses[j] + ]; + + if (continuationRule) { + newWords = newWords.concat( + this._applyRule(newWord, continuationRule) + ); + } + /* + else { + // This shouldn't happen, but it does, at least in the de_DE dictionary. + // I think the author mistakenly supplied lower-case rule codes instead + // of upper-case. + } + */ + } + } + } + } + + return newWords; + } + + /** + * Checks whether a word or a capitalization variant exists in the current dictionary. + * The word is trimmed and several variations of capitalizations are checked. + * If you want to check a word without any changes made to it, call checkExact() + * + * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function + * + * @param {String} aWord The word to check. + * @returns {Boolean} + */ + + check(aWord) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + + // Remove leading and trailing whitespace + var trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + if (this.checkExact(trimmedWord)) { + return true; + } + + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + var capitalizedWord = + trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + if (this.checkExact(capitalizedWord)) { + return true; + } + } + + var lowercaseWord = trimmedWord.toLowerCase(); + + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } + } + + return false; + } + + /** + * Checks whether a word exists in the current dictionary. + * + * @param {String} word The word to check. + * @returns {Boolean} + */ + + checkExact(word) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + + var ruleCodes = this.dictionaryTable[word]; + + var i, _len; + + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ( + "COMPOUNDMIN" in this.flags && + word.length >= this.flags.COMPOUNDMIN + ) { + for (i = 0, _len = this.compoundRules.length; i < _len; i++) { + if (word.match(this.compoundRules[i])) { + return true; + } + } + } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { + // this.dictionary['hasOwnProperty'] will be a function. + for (i = 0, _len = ruleCodes.length; i < _len; i++) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { + return true; + } + } + } + + return false; + } + + /** + * Looks up whether a given word is flagged with a given flag. + * + * @param {String} word The word in question. + * @param {String} flag The flag in question. + * @return {Boolean} + */ + + hasFlag(word, flag, wordFlags?) { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = Array.prototype.concat.apply( + [], + this.dictionaryTable[word] + ); + } + + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } + } + + return false; + } + + /** + * Returns a list of suggestions for a misspelled word. + * + * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. + * This suggestor is primitive, but it works. + * + * @param {String} word The misspelling. + * @param {Number} [limit=5] The maximum number of suggestions to return. + * @returns {String[]} The array of suggestions. + */ + + suggest(word: string, limit: number): Array { + if (!this.loaded) { + throw "Dictionary not loaded."; + } + + limit = limit || 5; + + if (this.memoized.hasOwnProperty(word)) { + var memoizedLimit = this.memoized[word]["limit"]; + + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if ( + limit <= memoizedLimit || + this.memoized[word]["suggestions"].length < memoizedLimit + ) { + return this.memoized[word]["suggestions"].slice(0, limit); + } + } + + if (this.check(word)) return []; + + // Check the replacement table. + for (var i = 0, _len = this.replacementTable.length; i < _len; i++) { + var replacementEntry = this.replacementTable[i]; + + if (word.indexOf(replacementEntry[0]) !== -1) { + var correctedWord = word.replace( + replacementEntry[0], + replacementEntry[1] + ); + + if (this.check(correctedWord)) { + return [correctedWord]; + } + } + } + + /** + * Returns a hash keyed by all of the strings that can be made by making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. + * + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool known_only Whether this function should ignore strings that are not in the dictionary. + */ + function edits1(words, known_only?) { + var rv = {}; + + let i, j, _len, _jlen, _edit; + + if (typeof words == "string") { + var word = words; + words = {}; + words[word] = true; + } + + for (var word in words) { + for (i = 0, _len = word.length + 1; i < _len; i++) { + var s = [word.substring(0, i), word.substring(i)]; + + if (s[1]) { + _edit = s[0] + s[1].substring(1); + + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + _edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + + if (s[1]) { + for ( + j = 0, _jlen = this.alphabet.length; + j < _jlen; + j++ + ) { + // Eliminate replacement of a letter by itthis + if (this.alphabet[j] != s[1].substring(0, 1)) { + _edit = + s[0] + this.alphabet[j] + s[1].substring(1); + + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + } + } + + if (s[1]) { + for ( + j = 0, _jlen = this.alphabet.length; + j < _jlen; + j++ + ) { + _edit = s[0] + this.alphabet[j] + s[1]; + + if (!known_only || this.check(_edit)) { + if (!(_edit in rv)) { + rv[_edit] = 1; + } else { + rv[_edit] += 1; + } + } + } + } + } + } + + return rv; + } + + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + var ed1 = edits1(word); + var ed2 = edits1(ed1, true); + + // Sort the edits based on how many different ways they were created. + var weighted_corrections = ed2; + + for (var ed1word in ed1) { + if (!this.check(ed1word)) { + continue; + } + + if (ed1word in weighted_corrections) { + weighted_corrections[ed1word] += ed1[ed1word]; + } else { + weighted_corrections[ed1word] = ed1[ed1word]; + } + } + + var sorted_corrections = []; + + for (let i in weighted_corrections) { + if (weighted_corrections.hasOwnProperty(i)) { + sorted_corrections.push([i, weighted_corrections[i]]); + } + } + + function sorter(a: Array, b: Array) { + if (a[1] < b[1]) { + return -1; + } + + // @todo If a and b are equally weighted, add our own weight based on something like the key locations on this language's default keyboard. + + return 1; + } + + sorted_corrections.sort(sorter).reverse(); + + var rv = []; + + var capitalization_scheme = "lowercase"; + + if (word.toUpperCase() === word) { + capitalization_scheme = "uppercase"; + } else if ( + word.substr(0, 1).toUpperCase() + + word.substr(1).toLowerCase() === + word + ) { + capitalization_scheme = "capitalized"; + } + + let working_limit: number = limit; + + for ( + i = 0; + i < Math.min(working_limit, sorted_corrections.length); + i++ + ) { + if ("uppercase" === capitalization_scheme) { + sorted_corrections[i][0] = sorted_corrections[ + i + ][0].toUpperCase(); + } else if ("capitalized" === capitalization_scheme) { + sorted_corrections[i][0] = + sorted_corrections[i][0].substr(0, 1).toUpperCase() + + sorted_corrections[i][0].substr(1); + } + + if ( + !this.hasFlag(sorted_corrections[i][0], "NOSUGGEST") && + rv.indexOf(sorted_corrections[i][0]) == -1 + ) { + rv.push(sorted_corrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion + // make sure we still return the right number of suggestions. + working_limit++; + } + } + + return rv; + } + + this.memoized[word] = { + suggestions: correct(word), + limit: limit + }; + + return this.memoized[word]["suggestions"]; + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..535a8f2 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "lib": ["dom", "es5", "es2015.core", "es2015.promise"], + "outDir": "./dist/", + "sourceMap": true, + // "noImplicitAny": true, + // "strictNullChecks": true, + "module": "es6", + "target": "es5", + "allowJs": true + }, + "include": ["./src/"] +} diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..9e97bd2 --- /dev/null +++ b/tslint.json @@ -0,0 +1,7 @@ +{ + "defaultSeverity": "error", + "extends": ["tslint:recommended"], + "jsRules": {}, + "rules": {}, + "rulesDirectory": [] +} diff --git a/typo/dictionaries/en_US/README.md b/typo/dictionaries/en_US/README.md deleted file mode 100644 index 97db2ab..0000000 --- a/typo/dictionaries/en_US/README.md +++ /dev/null @@ -1,7 +0,0 @@ -2006-02-07 release. - ---- - -This dictionary is based on a subset of the original English wordlist created by Kevin Atkinson for Pspell and Aspell and thus is covered by his original LGPL license. The affix file is a heavily modified version of the original english.aff file which was released as part of Geoff Kuenning's Ispell and as such is covered by his BSD license. - -Thanks to both authors for their wonderful work. \ No newline at end of file diff --git a/typo/package.json b/typo/package.json deleted file mode 100644 index 63dc7a4..0000000 --- a/typo/package.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "typo-js", - "version": "1.0.3", - "description": "A Hunspell-style spellchecker.", - "main": "typo.js", - "repository": { - "type": "git", - "url": "git://github.com/cfinke/Typo.js.git" - }, - "keywords": [ - "spellcheck", - "spellchecker", - "hunspell", - "typo", - "speling" - ], - "author": "Christopher Finke (http://www.chrisfinke.com/)", - "license": "BSD-3-Clause", - "bugs": { - "url": "https://github.com/cfinke/Typo.js/issues" - }, - "homepage": "https://github.com/cfinke/Typo.js#readme", - "tonicExample": "var Typo = require('typo-js'); var dictionary = new Typo('en_US'); dictionary.check('mispelled');", - "browser": { - "fs": false - } -} diff --git a/typo/typo.js b/typo/typo.js deleted file mode 100644 index d66353c..0000000 --- a/typo/typo.js +++ /dev/null @@ -1,981 +0,0 @@ -/* globals chrome: false */ -/* globals __dirname: false */ -/* globals require: false */ -/* globals Buffer: false */ -/* globals module: false */ - -/** - * Typo is a JavaScript implementation of a spellchecker using hunspell-style - * dictionaries. - */ - -var Typo; - -(function () { -"use strict"; - -/** - * Typo constructor. - * - * @param {String} [dictionary] The locale code of the dictionary being used. e.g., - * "en_US". This is only used to auto-load dictionaries. - * @param {String} [affData] The data from the dictionary's .aff file. If omitted - * and Typo.js is being used in a Chrome extension, the .aff - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].aff - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff - * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted - * and Typo.js is being used in a Chrome extension, the .dic - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].dic - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic - * @param {Object} [settings] Constructor settings. Available properties are: - * {String} [dictionaryPath]: path to load dictionary from in non-chrome - * environment. - * {Object} [flags]: flag information. - * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded - * asynchronously. - * {Function} [loadedCallback]: Called when both affData and wordsData - * have been loaded. Only used if asyncLoad is set to true. The parameter - * is the instantiated Typo object. - * - * @returns {Typo} A Typo object. - */ - -Typo = function (dictionary, affData, wordsData, settings) { - settings = settings || {}; - - this.dictionary = null; - - this.rules = {}; - this.dictionaryTable = {}; - - this.compoundRules = []; - this.compoundRuleCodes = {}; - - this.replacementTable = []; - - this.flags = settings.flags || {}; - - this.memoized = {}; - - this.loaded = false; - - var self = this; - - var path; - - // Loop-control variables. - var i, j, _len, _jlen; - - if (dictionary) { - self.dictionary = dictionary; - - // If the data is preloaded, just setup the Typo object. - if (affData && wordsData) { - setup(); - } - // Loading data for Chrome extentions. - else if (typeof window !== 'undefined' && 'chrome' in window && 'extension' in window.chrome && 'getURL' in window.chrome.extension) { - if (settings.dictionaryPath) { - path = settings.dictionaryPath; - } - else { - path = "typo/dictionaries"; - } - - if (!affData) readDataFile(chrome.extension.getURL(path + "/" + dictionary + "/" + dictionary + ".aff"), setAffData); - if (!wordsData) readDataFile(chrome.extension.getURL(path + "/" + dictionary + "/" + dictionary + ".dic"), setWordsData); - } - else { - if (settings.dictionaryPath) { - path = settings.dictionaryPath; - } - else if (typeof __dirname !== 'undefined') { - path = __dirname + '/dictionaries'; - } - else { - path = './dictionaries'; - } - - if (!affData) readDataFile(path + "/" + dictionary + "/" + dictionary + ".aff", setAffData); - if (!wordsData) readDataFile(path + "/" + dictionary + "/" + dictionary + ".dic", setWordsData); - } - } - - function readDataFile(url, setFunc) { - var response = self._readFile(url, null, settings.asyncLoad); - - if (settings.asyncLoad) { - response.then(function(data) { - setFunc(data); - }); - } - else { - setFunc(response); - } - } - - function setAffData(data) { - affData = data; - - if (wordsData) { - setup(); - } - } - - function setWordsData(data) { - wordsData = data; - - if (affData) { - setup(); - } - } - - function setup() { - self.rules = self._parseAFF(affData); - - // Save the rule codes that are used in compound rules. - self.compoundRuleCodes = {}; - - for (i = 0, _len = self.compoundRules.length; i < _len; i++) { - var rule = self.compoundRules[i]; - - for (j = 0, _jlen = rule.length; j < _jlen; j++) { - self.compoundRuleCodes[rule[j]] = []; - } - } - - // If we add this ONLYINCOMPOUND flag to self.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in self.flags) { - self.compoundRuleCodes[self.flags.ONLYINCOMPOUND] = []; - } - - self.dictionaryTable = self._parseDIC(wordsData); - - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (i in self.compoundRuleCodes) { - if (self.compoundRuleCodes[i].length === 0) { - delete self.compoundRuleCodes[i]; - } - } - - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - for (i = 0, _len = self.compoundRules.length; i < _len; i++) { - var ruleText = self.compoundRules[i]; - - var expressionText = ""; - - for (j = 0, _jlen = ruleText.length; j < _jlen; j++) { - var character = ruleText[j]; - - if (character in self.compoundRuleCodes) { - expressionText += "(" + self.compoundRuleCodes[character].join("|") + ")"; - } - else { - expressionText += character; - } - } - - self.compoundRules[i] = new RegExp(expressionText, "i"); - } - - self.loaded = true; - - if (settings.asyncLoad && settings.loadedCallback) { - settings.loadedCallback(self); - } - } - - return this; -}; - -Typo.prototype = { - /** - * Loads a Typo instance from a hash of all of the Typo properties. - * - * @param object obj A hash of Typo properties, probably gotten from a JSON.parse(JSON.stringify(typo_instance)). - */ - - load : function (obj) { - for (var i in obj) { - if (obj.hasOwnProperty(i)) { - this[i] = obj[i]; - } - } - - return this; - }, - - /** - * Read the contents of a file. - * - * @param {String} path The path (relative) to the file. - * @param {String} [charset="ISO8859-1"] The expected charset of the file - * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all - * files are read synchronously. - * @returns {String} The file data if async is false, otherwise a promise object. If running node.js, the data is - * always returned. - */ - - _readFile : function (path, charset, async) { - charset = charset || "utf8"; - - if (typeof XMLHttpRequest !== 'undefined') { - var promise; - var req = new XMLHttpRequest(); - req.open("GET", path, async); - - if (async) { - promise = new Promise(function(resolve, reject) { - req.onload = function() { - if (req.status === 200) { - resolve(req.responseText); - } - else { - reject(req.statusText); - } - }; - - req.onerror = function() { - reject(req.statusText); - } - }); - } - - if (req.overrideMimeType) - req.overrideMimeType("text/plain; charset=" + charset); - - req.send(null); - - return async ? promise : req.responseText; - } - else if (typeof require !== 'undefined') { - // Node.js - var fs = require("fs"); - - try { - if (fs.existsSync(path)) { - var stats = fs.statSync(path); - - var fileDescriptor = fs.openSync(path, 'r'); - - var buffer = new Buffer(stats.size); - - fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); - - return buffer.toString(charset, 0, buffer.length); - } - else { - console.log("Path " + path + " does not exist."); - } - } catch (e) { - console.log(e); - return ''; - } - } - }, - - /** - * Parse the rules out from a .aff file. - * - * @param {String} data The contents of the affix file. - * @returns object The rules from the file. - */ - - _parseAFF : function (data) { - var rules = {}; - - var line, subline, numEntries, lineParts; - var i, j, _len, _jlen; - - // Remove comment lines - data = this._removeAffixComments(data); - - var lines = data.split("\n"); - - for (i = 0, _len = lines.length; i < _len; i++) { - line = lines[i]; - - var definitionParts = line.split(/\s+/); - - var ruleType = definitionParts[0]; - - if (ruleType == "PFX" || ruleType == "SFX") { - var ruleCode = definitionParts[1]; - var combineable = definitionParts[2]; - numEntries = parseInt(definitionParts[3], 10); - - var entries = []; - - for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { - subline = lines[j]; - - lineParts = subline.split(/\s+/); - var charactersToRemove = lineParts[2]; - - var additionParts = lineParts[3].split("/"); - - var charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") charactersToAdd = ""; - - var continuationClasses = this.parseRuleCodes(additionParts[1]); - - var regexToMatch = lineParts[4]; - - var entry = {}; - entry.add = charactersToAdd; - - if (continuationClasses.length > 0) entry.continuationClasses = continuationClasses; - - if (regexToMatch !== ".") { - if (ruleType === "SFX") { - entry.match = new RegExp(regexToMatch + "$"); - } - else { - entry.match = new RegExp("^" + regexToMatch); - } - } - - if (charactersToRemove != "0") { - if (ruleType === "SFX") { - entry.remove = new RegExp(charactersToRemove + "$"); - } - else { - entry.remove = charactersToRemove; - } - } - - entries.push(entry); - } - - rules[ruleCode] = { "type" : ruleType, "combineable" : (combineable == "Y"), "entries" : entries }; - - i += numEntries; - } - else if (ruleType === "COMPOUNDRULE") { - numEntries = parseInt(definitionParts[1], 10); - - for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { - line = lines[j]; - - lineParts = line.split(/\s+/); - this.compoundRules.push(lineParts[1]); - } - - i += numEntries; - } - else if (ruleType === "REP") { - lineParts = line.split(/\s+/); - - if (lineParts.length === 3) { - this.replacementTable.push([ lineParts[1], lineParts[2] ]); - } - } - else { - // ONLYINCOMPOUND - // COMPOUNDMIN - // FLAG - // KEEPCASE - // NEEDAFFIX - - this.flags[ruleType] = definitionParts[1]; - } - } - - return rules; - }, - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from an affix file. - * @return {String} The cleaned-up data. - */ - - _removeAffixComments : function (data) { - // Remove comments - // This used to remove any string starting with '#' up to the end of the line, - // but some COMPOUNDRULE definitions include '#' as part of the rule. - // I haven't seen any affix files that use comments on the same line as real data, - // so I don't think this will break anything. - data = data.replace(/^\s*#.*$/mg, ""); - - // Trim each line - data = data.replace(/^\s\s*/m, '').replace(/\s\s*$/m, ''); - - // Remove blank lines. - data = data.replace(/\n{2,}/g, "\n"); - - // Trim the entire string - data = data.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); - - return data; - }, - - /** - * Parses the words out from the .dic file. - * - * @param {String} data The data from the dictionary file. - * @returns object The lookup table containing all of the words and - * word forms from the dictionary. - */ - - _parseDIC : function (data) { - data = this._removeDicComments(data); - - var lines = data.split("\n"); - var dictionaryTable = {}; - - function addWord(word, rules) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!dictionaryTable.hasOwnProperty(word)) { - dictionaryTable[word] = null; - } - - if (rules.length > 0) { - if (dictionaryTable[word] === null) { - dictionaryTable[word] = []; - } - - dictionaryTable[word].push(rules); - } - } - - // The first line is the number of words in the dictionary. - for (var i = 1, _len = lines.length; i < _len; i++) { - var line = lines[i]; - - if (!line) { - // Ignore empty lines. - continue; - } - - var parts = line.split("/", 2); - - var word = parts[0]; - - // Now for each affix rule, generate that form of the word. - if (parts.length > 1) { - var ruleCodesArray = this.parseRuleCodes(parts[1]); - - // Save the ruleCodes for compound word situations. - if (!("NEEDAFFIX" in this.flags) || ruleCodesArray.indexOf(this.flags.NEEDAFFIX) == -1) { - addWord(word, ruleCodesArray); - } - - for (var j = 0, _jlen = ruleCodesArray.length; j < _jlen; j++) { - var code = ruleCodesArray[j]; - - var rule = this.rules[code]; - - if (rule) { - var newWords = this._applyRule(word, rule); - - for (var ii = 0, _iilen = newWords.length; ii < _iilen; ii++) { - var newWord = newWords[ii]; - - addWord(newWord, []); - - if (rule.combineable) { - for (var k = j + 1; k < _jlen; k++) { - var combineCode = ruleCodesArray[k]; - - var combineRule = this.rules[combineCode]; - - if (combineRule) { - if (combineRule.combineable && (rule.type != combineRule.type)) { - var otherNewWords = this._applyRule(newWord, combineRule); - - for (var iii = 0, _iiilen = otherNewWords.length; iii < _iiilen; iii++) { - var otherNewWord = otherNewWords[iii]; - addWord(otherNewWord, []); - } - } - } - } - } - } - } - - if (code in this.compoundRuleCodes) { - this.compoundRuleCodes[code].push(word); - } - } - } - else { - addWord(word.trim(), []); - } - } - - return dictionaryTable; - }, - - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from a .dic file. - * @return {String} The cleaned-up data. - */ - - _removeDicComments : function (data) { - // I can't find any official documentation on it, but at least the de_DE - // dictionary uses tab-indented lines as comments. - - // Remove comments - data = data.replace(/^\t.*$/mg, ""); - - return data; - }, - - parseRuleCodes : function (textCodes) { - if (!textCodes) { - return []; - } - else if (!("FLAG" in this.flags)) { - return textCodes.split(""); - } - else if (this.flags.FLAG === "long") { - var flags = []; - - for (var i = 0, _len = textCodes.length; i < _len; i += 2) { - flags.push(textCodes.substr(i, 2)); - } - - return flags; - } - else if (this.flags.FLAG === "num") { - return textCodes.split(","); - } - }, - - /** - * Applies an affix rule to a word. - * - * @param {String} word The base word. - * @param {Object} rule The affix rule. - * @returns {String[]} The new words generated by the rule. - */ - - _applyRule : function (word, rule) { - var entries = rule.entries; - var newWords = []; - - for (var i = 0, _len = entries.length; i < _len; i++) { - var entry = entries[i]; - - if (!entry.match || word.match(entry.match)) { - var newWord = word; - - if (entry.remove) { - newWord = newWord.replace(entry.remove, ""); - } - - if (rule.type === "SFX") { - newWord = newWord + entry.add; - } - else { - newWord = entry.add + newWord; - } - - newWords.push(newWord); - - if ("continuationClasses" in entry) { - for (var j = 0, _jlen = entry.continuationClasses.length; j < _jlen; j++) { - var continuationRule = this.rules[entry.continuationClasses[j]]; - - if (continuationRule) { - newWords = newWords.concat(this._applyRule(newWord, continuationRule)); - } - /* - else { - // This shouldn't happen, but it does, at least in the de_DE dictionary. - // I think the author mistakenly supplied lower-case rule codes instead - // of upper-case. - } - */ - } - } - } - } - - return newWords; - }, - - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - - check : function (aWord) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - // Remove leading and trailing whitespace - var trimmedWord = aWord.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); - - if (this.checkExact(trimmedWord)) { - return true; - } - - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - var capitalizedWord = trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - if (this.checkExact(capitalizedWord)) { - return true; - } - } - - var lowercaseWord = trimmedWord.toLowerCase(); - - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } - } - - return false; - }, - - /** - * Checks whether a word exists in the current dictionary. - * - * @param {String} word The word to check. - * @returns {Boolean} - */ - - checkExact : function (word) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - var ruleCodes = this.dictionaryTable[word]; - - var i, _len; - - if (typeof ruleCodes === 'undefined') { - // Check if this might be a compound word. - if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { - for (i = 0, _len = this.compoundRules.length; i < _len; i++) { - if (word.match(this.compoundRules[i])) { - return true; - } - } - } - } - else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } - else if (typeof ruleCodes === 'object') { // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, _len = ruleCodes.length; i < _len; i++) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { - return true; - } - } - } - - return false; - }, - - /** - * Looks up whether a given word is flagged with a given flag. - * - * @param {String} word The word in question. - * @param {String} flag The flag in question. - * @return {Boolean} - */ - - hasFlag : function (word, flag, wordFlags) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - if (flag in this.flags) { - if (typeof wordFlags === 'undefined') { - wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); - } - - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } - } - - return false; - }, - - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ - - alphabet : "", - - suggest : function (word, limit) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - limit = limit || 5; - - if (this.memoized.hasOwnProperty(word)) { - var memoizedLimit = this.memoized[word]['limit']; - - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if (limit <= memoizedLimit || this.memoized[word]['suggestions'].length < memoizedLimit) { - return this.memoized[word]['suggestions'].slice(0, limit); - } - } - - if (this.check(word)) return []; - - // Check the replacement table. - for (var i = 0, _len = this.replacementTable.length; i < _len; i++) { - var replacementEntry = this.replacementTable[i]; - - if (word.indexOf(replacementEntry[0]) !== -1) { - var correctedWord = word.replace(replacementEntry[0], replacementEntry[1]); - - if (this.check(correctedWord)) { - return [ correctedWord ]; - } - } - } - - var self = this; - self.alphabet = "abcdefghijklmnopqrstuvwxyz"; - - /* - if (!self.alphabet) { - // Use the alphabet as implicitly defined by the words in the dictionary. - var alphaHash = {}; - - for (var i in self.dictionaryTable) { - for (var j = 0, _len = i.length; j < _len; j++) { - alphaHash[i[j]] = true; - } - } - - for (var i in alphaHash) { - self.alphabet += i; - } - - var alphaArray = self.alphabet.split(""); - alphaArray.sort(); - self.alphabet = alphaArray.join(""); - } - */ - - /** - * Returns a hash keyed by all of the strings that can be made by making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool known_only Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, known_only) { - var rv = {}; - - var i, j, _iilen, _len, _jlen, _edit; - - if (typeof words == 'string') { - var word = words; - words = {}; - words[word] = true; - } - - for (var word in words) { - for (i = 0, _len = word.length + 1; i < _len; i++) { - var s = [ word.substring(0, i), word.substring(i) ]; - - if (s[1]) { - _edit = s[0] + s[1].substring(1); - - if (!known_only || self.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } - else { - rv[_edit] += 1; - } - } - } - - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - _edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - - if (!known_only || self.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } - else { - rv[_edit] += 1; - } - } - } - - if (s[1]) { - for (j = 0, _jlen = self.alphabet.length; j < _jlen; j++) { - // Eliminate replacement of a letter by itself - if (self.alphabet[j] != s[1].substring(0,1)){ - _edit = s[0] + self.alphabet[j] + s[1].substring(1); - - if (!known_only || self.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } - else { - rv[_edit] += 1; - } - } - } - } - } - - if (s[1]) { - for (j = 0, _jlen = self.alphabet.length; j < _jlen; j++) { - _edit = s[0] + self.alphabet[j] + s[1]; - - if (!known_only || self.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } - else { - rv[_edit] += 1; - } - } - } - } - } - } - - return rv; - } - - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - var ed1 = edits1(word); - var ed2 = edits1(ed1, true); - - // Sort the edits based on how many different ways they were created. - var weighted_corrections = ed2; - - for (var ed1word in ed1) { - if (!self.check(ed1word)) { - continue; - } - - if (ed1word in weighted_corrections) { - weighted_corrections[ed1word] += ed1[ed1word]; - } - else { - weighted_corrections[ed1word] = ed1[ed1word]; - } - } - - var i, _len; - - var sorted_corrections = []; - - for (i in weighted_corrections) { - if (weighted_corrections.hasOwnProperty(i)) { - sorted_corrections.push([ i, weighted_corrections[i] ]); - } - } - - function sorter(a, b) { - if (a[1] < b[1]) { - return -1; - } - - // @todo If a and b are equally weighted, add our own weight based on something like the key locations on this language's default keyboard. - - return 1; - } - - sorted_corrections.sort(sorter).reverse(); - - var rv = []; - - var capitalization_scheme = "lowercase"; - - if (word.toUpperCase() === word) { - capitalization_scheme = "uppercase"; - } - else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { - capitalization_scheme = "capitalized"; - } - - var working_limit = limit; - - for (i = 0; i < Math.min(working_limit, sorted_corrections.length); i++) { - if ("uppercase" === capitalization_scheme) { - sorted_corrections[i][0] = sorted_corrections[i][0].toUpperCase(); - } - else if ("capitalized" === capitalization_scheme) { - sorted_corrections[i][0] = sorted_corrections[i][0].substr(0, 1).toUpperCase() + sorted_corrections[i][0].substr(1); - } - - if (!self.hasFlag(sorted_corrections[i][0], "NOSUGGEST") && rv.indexOf(sorted_corrections[i][0]) == -1) { - rv.push(sorted_corrections[i][0]); - } - else { - // If one of the corrections is not eligible as a suggestion , make sure we still return the right number of suggestions. - working_limit++; - } - } - - return rv; - } - - this.memoized[word] = { - 'suggestions': correct(word), - 'limit': limit - }; - - return this.memoized[word]['suggestions']; - } -}; -})(); - -// Support for use as a node.js module. -if (typeof module !== 'undefined') { - module.exports = Typo; -} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..682c7e9 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,3003 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@types/node@^9.3.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-9.3.0.tgz#3a129cda7c4e5df2409702626892cb4b96546dd5" + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + +acorn-dynamic-import@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" + dependencies: + acorn "^4.0.3" + +acorn@^4.0.3: + version "4.0.13" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" + +acorn@^5.0.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" + +ajv-keywords@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" + +ajv@^4.9.1: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +ajv@^5.1.5: + version "5.5.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.3.0" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +ansi-escapes@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +ansi-styles@^3.1.0, ansi-styles@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" + dependencies: + color-convert "^1.9.0" + +any-observable@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.2.0.tgz#c67870058003579009083f54ac0abafb5c33d242" + +anymatch@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + dependencies: + micromatch "^2.1.5" + normalize-path "^2.0.0" + +app-root-path@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" + +aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + +are-we-there-yet@~1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + dependencies: + sprintf-js "~1.0.2" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + dependencies: + arr-flatten "^1.0.1" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + +arr-flatten@^1.0.1, arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + +asn1.js@^4.0.0: + version "4.9.2" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async@^2.1.2, async@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" + dependencies: + lodash "^4.14.0" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +atob@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" + +awesome-typescript-loader@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/awesome-typescript-loader/-/awesome-typescript-loader-3.4.1.tgz#22fa49800f0619ec18ab15383aef93b95378dea9" + dependencies: + colors "^1.1.2" + enhanced-resolve "3.3.0" + loader-utils "^1.1.0" + lodash "^4.17.4" + micromatch "^3.0.3" + mkdirp "^0.5.1" + object-assign "^4.1.1" + source-map-support "^0.4.15" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws4@^1.2.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-js@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +big.js@^3.1.3: + version "3.2.0" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" + +binary-extensions@^1.0.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +brace-expansion@^1.1.7: + version "1.1.8" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +braces@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.0.tgz#a46941cb5fb492156b3d6a656e06c35364e3e66e" + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + define-property "^1.0.0" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + dependencies: + pako "~1.0.5" + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.1, chalk@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + +chokidar@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +ci-info@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +cli-cursor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" + dependencies: + restore-cursor "^1.0.1" + +cli-spinners@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" + +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" + dependencies: + color-name "^1.1.1" + +color-name@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + +colors@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +commander@^2.11.0, commander@^2.9.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" + +component-emitter@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +cosmiconfig@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc" + dependencies: + is-directory "^0.3.1" + js-yaml "^3.9.0" + parse-json "^4.0.0" + require-from-string "^2.0.1" + +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^2.0.0" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.6" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + dependencies: + es5-ext "^0.10.9" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +date-fns@^1.27.2: + version "1.29.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@^2.2.0, debug@^2.3.3: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + dependencies: + ms "2.0.0" + +debug@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + dependencies: + ms "2.0.0" + +decamelize@^1.0.0, decamelize@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + dependencies: + is-descriptor "^1.0.0" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +domain-browser@^1.1.1: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + +elliptic@^6.0.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +enhanced-resolve@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz#950964ecc7f0332a42321b673b38dc8ff15535b3" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + object-assign "^4.0.1" + tapable "^0.2.5" + +enhanced-resolve@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + object-assign "^4.0.1" + tapable "^0.2.7" + +errno@^0.1.3: + version "0.1.6" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" + dependencies: + prr "~1.0.1" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: + version "0.10.38" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.38.tgz#fa7d40d65bbc9bb8a67e1d3f9cc656a00530eed3" + dependencies: + es6-iterator "~2.0.3" + es6-symbol "~3.1.1" + +es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-map@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" + +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" + +es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +esprima@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + +esrecurse@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" + dependencies: + estraverse "^4.1.0" + object-assign "^4.0.1" + +estraverse@^4.1.0, estraverse@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +event-emitter@~0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + dependencies: + d "1" + es5-ext "~0.10.14" + +events@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exit-hook@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + dependencies: + is-posix-bracket "^0.1.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + dependencies: + fill-range "^2.1.0" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@~3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + dependencies: + is-extglob "^1.0.0" + +extglob@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0, extsprintf@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + +fast-deep-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +find-parent-dir@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" + +find-up@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + dependencies: + locate-path "^2.0.0" + +for-in@^1.0.1, for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + dependencies: + for-in "^1.0.1" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + dependencies: + map-cache "^0.2.2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.39" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-own-enumerable-property-symbols@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + dependencies: + is-glob "^2.0.0" + +glob@^7.0.5: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +graceful-fs@^4.1.2: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +hash-base@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" + dependencies: + inherits "^2.0.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.0" + +hawk@3.1.3, hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +hosted-git-info@^2.1.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + +husky@^0.14.3: + version "0.14.3" + resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" + dependencies: + is-ci "^1.0.10" + normalize-path "^1.0.0" + strip-indent "^2.0.0" + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + +interpret@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-ci@^1.0.10: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" + dependencies: + ci-info "^1.0.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + dependencies: + kind-of "^6.0.0" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + dependencies: + is-extglob "^1.0.0" + +is-glob@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" + dependencies: + is-extglob "^2.1.1" + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + +is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + +is-observable@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" + dependencies: + symbol-observable "^0.2.2" + +is-odd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-1.0.0.tgz#3b8a932eb028b3775c39bb09e91767accdb69088" + dependencies: + is-number "^3.0.0" + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + dependencies: + isobject "^3.0.1" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +jest-get-type@^21.2.0: + version "21.2.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" + +jest-validate@^21.1.0: + version "21.2.1" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" + dependencies: + chalk "^2.0.1" + jest-get-type "^21.2.0" + leven "^2.1.0" + pretty-format "^21.2.1" + +js-yaml@^3.9.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +json-loader@^0.5.4: + version "0.5.7" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" + +json-parse-better-errors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +json5@^0.5.0, json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0, kind-of@^5.0.2: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lazy-cache@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" + dependencies: + set-getter "^0.1.0" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + +lint-staged@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-6.0.1.tgz#855f2993ab4a265430e2fd9828427e648d65e6b4" + dependencies: + app-root-path "^2.0.0" + chalk "^2.1.0" + commander "^2.11.0" + cosmiconfig "^4.0.0" + debug "^3.1.0" + dedent "^0.7.0" + execa "^0.8.0" + find-parent-dir "^0.3.0" + is-glob "^4.0.0" + jest-validate "^21.1.0" + listr "^0.13.0" + lodash "^4.17.4" + log-symbols "^2.0.0" + minimatch "^3.0.0" + npm-which "^3.0.1" + p-map "^1.1.1" + path-is-inside "^1.0.2" + pify "^3.0.0" + staged-git-files "0.0.4" + stringify-object "^3.2.0" + +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + +listr-update-renderer@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7" + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^1.0.2" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" + dependencies: + chalk "^1.1.3" + cli-cursor "^1.0.2" + date-fns "^1.27.2" + figures "^1.7.0" + +listr@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.13.0.tgz#20bb0ba30bae660ee84cc0503df4be3d5623887d" + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + figures "^1.7.0" + indent-string "^2.1.0" + is-observable "^0.2.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.4.0" + listr-verbose-renderer "^0.4.0" + log-symbols "^1.0.2" + log-update "^1.0.2" + ora "^0.2.3" + p-map "^1.1.1" + rxjs "^5.4.2" + stream-to-observable "^0.2.0" + strip-ansi "^3.0.1" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +loader-runner@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" + +loader-utils@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + +loader-utils@~0.2.2: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lodash@^4.14.0, lodash@^4.17.4: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + dependencies: + chalk "^1.0.0" + +log-symbols@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + dependencies: + chalk "^2.0.1" + +log-update@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" + dependencies: + ansi-escapes "^1.0.0" + cli-cursor "^1.0.2" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +lru-cache@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + dependencies: + object-visit "^1.0.0" + +md5.js@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + dependencies: + mimic-fn "^1.0.0" + +memory-fs@^0.4.0, memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +micromatch@^2.1.5: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +micromatch@^3.0.3: + version "3.1.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.5.tgz#d05e168c206472dfbca985bfef4f57797b4cd4ba" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.0" + define-property "^1.0.0" + extend-shallow "^2.0.1" + extglob "^2.0.2" + fragment-cache "^0.2.1" + kind-of "^6.0.0" + nanomatch "^1.2.5" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@~1.30.0: + version "1.30.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" + +mime-types@^2.1.12, mime-types@~2.1.7: + version "2.1.17" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" + dependencies: + mime-db "~1.30.0" + +mimic-fn@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" + +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +mixin-deep@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.0.tgz#47a8732ba97799457c8c1eca28f95132d7e8150a" + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +nan@^2.3.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" + +nanomatch@^1.2.5: + version "1.2.7" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.7.tgz#53cd4aa109ff68b7f869591fdc9d10daeeea3e79" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^1.0.0" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + is-odd "^1.0.0" + kind-of "^5.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +node-libs-browser@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^1.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.0" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.10.3" + vm-browserify "0.0.4" + +node-pre-gyp@^0.6.39: + version "0.6.39" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" + dependencies: + detect-libc "^1.0.2" + hawk "3.1.3" + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" + +normalize-path@^2.0.0, normalize-path@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +npm-path@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" + dependencies: + which "^1.2.10" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +npm-which@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" + dependencies: + commander "^2.9.0" + npm-path "^2.0.2" + which "^1.2.10" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +oauth-sign@~0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + dependencies: + isobject "^3.0.0" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + dependencies: + isobject "^3.0.1" + +once@^1.3.0, once@^1.3.3: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +onetime@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" + +ora@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" + dependencies: + chalk "^1.1.1" + cli-cursor "^1.0.2" + cli-spinners "^0.1.2" + object-assign "^4.0.1" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + +p-limit@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" + dependencies: + p-try "^1.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + dependencies: + p-limit "^1.1.0" + +p-map@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + +pako@~1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" + +parse-asn1@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + dependencies: + pify "^2.0.0" + +pbkdf2@^3.0.3: + version "3.0.14" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +prettier@1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.2.tgz#1af8356d1842276a99a5b5529c82dd9e9ad3cc93" + +pretty-format@^21.2.1: + version "21.2.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.2.4, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +randomatic@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +rc@^1.1.7: + version "1.2.4" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +regex-cache@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + dependencies: + is-equal-shallow "^0.1.3" + +regex-not@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.0.tgz#42f83e39771622df826b02af176525d6a5f157f9" + dependencies: + extend-shallow "^2.0.1" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^1.5.2, repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request@2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-from-string@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.1.tgz#c545233e9d7da6616e9d59adfb39fc9f588676ff" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + +restore-cursor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" + dependencies: + exit-hook "^1.0.0" + onetime "^1.0.0" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" + dependencies: + glob "^7.0.5" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" + dependencies: + hash-base "^2.0.0" + inherits "^2.0.1" + +rxjs@^5.4.2: + version "5.5.6" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.6.tgz#e31fb96d6fd2ff1fd84bcea8ae9c02d007179c02" + dependencies: + symbol-observable "1.0.1" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + +"semver@2 || 3 || 4 || 5", semver@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-getter@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" + dependencies: + to-object-path "^0.3.0" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +set-value@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.1" + to-object-path "^0.3.0" + +set-value@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.10" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz#b1fde5cd7d11a5626638a07c604ab909cfa31f9b" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +signal-exit@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370" + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^2.0.0" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +source-list-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" + +source-map-loader@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.2.3.tgz#d4b0c8cd47d54edce3e6bfa0f523f452b5b0e521" + dependencies: + async "^2.5.0" + loader-utils "~0.2.2" + source-map "~0.6.1" + +source-map-resolve@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" + dependencies: + atob "^2.0.0" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + dependencies: + source-map "^0.5.6" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + +source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + +source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sshpk@^1.7.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +staged-git-files@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +stream-browserify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@^2.7.2: + version "2.8.0" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.0.tgz#fd86546dac9b1c91aff8fc5d287b98fafb41bc10" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.3" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-to-observable@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.2.0.tgz#59d6ea393d87c2c0ddac10aa0d561bc6ba6f0e10" + dependencies: + any-observable "^0.2.0" + +string-width@^1.0.1, string-width@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^1.0.0, string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.1.tgz#2720c2eff940854c819f6ee252aaeb581f30624d" + dependencies: + get-own-enumerable-property-symbols "^2.0.1" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +stringstream@~0.0.4: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + +strip-indent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +supports-color@^4.0.0, supports-color@^4.2.1: + version "4.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" + dependencies: + has-flag "^2.0.0" + +symbol-observable@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + +symbol-observable@^0.2.2: + version "0.2.4" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" + +tapable@^0.2.5, tapable@^0.2.7: + version "0.2.8" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" + +tar-pack@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +timers-browserify@^2.0.4: + version "2.0.5" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.5.tgz#04878fb12a155a159c9d1e59faa1f77bf4ecc44c" + dependencies: + setimmediate "^1.0.4" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.1.tgz#15358bee4a2c83bd76377ba1dc049d0f18837aae" + dependencies: + define-property "^0.2.5" + extend-shallow "^2.0.1" + regex-not "^1.0.0" + +tough-cookie@~2.3.0: + version "2.3.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" + dependencies: + punycode "^1.4.1" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +typescript@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" + +uglify-js@^2.8.29: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uglifyjs-webpack-plugin@^0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" + dependencies: + source-map "^0.5.6" + uglify-js "^2.8.29" + webpack-sources "^1.0.1" + +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +union-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^0.4.3" + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8" + dependencies: + define-property "^0.2.5" + isobject "^3.0.0" + lazy-cache "^2.0.2" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@0.10.3, util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +uuid@^3.0.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +watchpack@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" + dependencies: + async "^2.1.2" + chokidar "^1.7.0" + graceful-fs "^4.1.2" + +webpack-sources@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@^3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725" + dependencies: + acorn "^5.0.0" + acorn-dynamic-import "^2.0.0" + ajv "^5.1.5" + ajv-keywords "^2.0.0" + async "^2.1.2" + enhanced-resolve "^3.4.0" + escope "^3.6.0" + interpret "^1.0.0" + json-loader "^0.5.4" + json5 "^0.5.1" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + mkdirp "~0.5.0" + node-libs-browser "^2.0.0" + source-map "^0.5.3" + supports-color "^4.2.1" + tapable "^0.2.7" + uglifyjs-webpack-plugin "^0.4.6" + watchpack "^1.4.0" + webpack-sources "^1.0.1" + yargs "^8.0.2" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + +which@^1.2.10, which@^1.2.9: + version "1.3.0" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + dependencies: + string-width "^1.0.2" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +xtend@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + dependencies: + camelcase "^4.1.0" + +yargs@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" From ae399099924d55f67fa49a21e63100e12fc566e2 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Wed, 24 Jan 2018 16:15:15 +0100 Subject: [PATCH 02/27] add node to tsconfig types --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 535a8f2..47d0ac8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,8 @@ // "strictNullChecks": true, "module": "es6", "target": "es5", - "allowJs": true + "allowJs": true, + "types": ["node"] }, "include": ["./src/"] } From b5b351b1efa0baf7c28e8a1a5894605b610a04cc Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Wed, 24 Jan 2018 16:18:56 +0100 Subject: [PATCH 03/27] move types to runtime dependencies --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e8d51f0..8cd6185 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,10 @@ "lint-staged": { "*.{js,json,css,md}": ["prettier --write", "git add"] }, + "dependencies": { + "@types/node": "^9.3.0" + }, "devDependencies": { - "@types/node": "^9.3.0", "husky": "^0.14.3", "lint-staged": "^6.0.1", "prettier": "1.10.2" From 7a0eaeefe403e58ba73a883d4181820e7f62eca0 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Wed, 24 Jan 2018 16:36:02 +0100 Subject: [PATCH 04/27] add main entry point --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8cd6185..6a1668f 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,14 @@ { "name": "typo-js", "version": "1.0.4", + "main": "dist/typo.js", "description": "A Typescript port of Typo.js", "repository": { "type": "git", "url": "git://github.com/marcelorisoli/Typo.js.git" }, "keywords": ["spellcheck", "spellchecker", "hunspell", "typo", "speling"], - "author": "Marcelo Risoli ", + "author": "Marcelo Risoli ", "license": "BSD-3-Clause", "homepage": "https://github.com/marcelorisoli/Typo.js#readme", "scripts": { From ac3af99ae2738cde8823051f7adb8551a5f67121 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Thu, 1 Feb 2018 17:25:10 +0100 Subject: [PATCH 05/27] lint and indent --- src/typo.ts | 1963 ++++++++++++++++++++++++++------------------------- tslint.json | 4 +- 2 files changed, 993 insertions(+), 974 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 6f32574..c226b9f 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -1,973 +1,990 @@ -import { Buffer } from "buffer"; -import * as fs from "fs"; -/** - * Typo is a Typescript port of a spellchecker using hunspell-style - * dictionaries. - */ - -interface IEntry { - add?: string; - continuationClasses?: any; - match?: any; - remove?: any; -} - -interface ISettings { - dictionaryPath?: string; - flags?: Object; - asyncLoad?: boolean; - loadedCallback?: (typo: Typo) => void; -} - -export class Typo { - private static DEFAULT_PATH = "dictionaries"; - - private rules: { [rule: string]: any } = {}; - private dictionaryTable: Object = {}; - - private compoundRules: Array = []; - private compoundRuleCodes: { [rule: string]: Array } = {}; - private replacementTable: Array = []; - private flags: { [flag: string]: any } = {}; - private memoized: { [rule: string]: any } = {}; - - private loaded: boolean = false; - - /** - * Typo constructor. - * - * @param {String} [dictionary] The locale code of the dictionary being used. e.g., - * "en_US". This is only used to auto-load dictionaries. - * @param {String} [affData] The data from the dictionary's .aff file. If omitted - * and Typo.js is being used in a Chrome extension, the .aff - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].aff - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff - * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted - * and Typo.js is being used in a Chrome extension, the .dic - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].dic - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic - * @param {Object} [settings] Constructor settings. Available properties are: - * {String} [dictionaryPath]: path to load dictionary from in non-chrome - * environment. - * {Object} [flags]: flag information. - * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded - * asynchronously. - * {Function} [loadedCallback]: Called when both affData and wordsData - * have been loaded. Only used if asyncLoad is set to true. The parameter - * is the instantiated Typo object. - * - * @returns {Typo} A Typo object. - */ - constructor( - dictionary?: string, - private affData?: string, - private wordsData?: string, - private settings: ISettings = {} - ) { - let path = Typo.DEFAULT_PATH; - - if (dictionary) { - // If the data is preloaded, just setup the Typo object. - if (this.affData && this.wordsData) { - this.setup(); - } - if (this.settings.dictionaryPath) { - path = this.settings.dictionaryPath; - } - if (!this.affData) { - this.readDataFile( - path + "/" + dictionary + "/" + dictionary + ".aff", - this.setAffData - ); - } - if (!this.wordsData) { - this.readDataFile( - path + "/" + dictionary + "/" + dictionary + ".dic", - this.setWordsData - ); - } - } - } - - private readDataFile(url: string, setFunc: ((data: string) => void)) { - const response = this.readFile(url, null, this.settings.asyncLoad); - - if (this.settings.asyncLoad) { - response.then(function(data: string) { - setFunc(data); - }); - } else { - setFunc(response); - } - } - - private setAffData(data: string) { - this.affData = data; - - if (this.wordsData) { - this.setup(); - } - } - - private setWordsData(data: string) { - this.wordsData = data; - - if (this.affData) { - this.setup(); - } - } - - private setup(): void { - this.rules = this._parseAFF(this.affData); - - // Save the rule codes that are used in compound rules. - this.compoundRuleCodes = {}; - - const _len = this.compoundRules.length; - for (let i = 0; i < _len; i++) { - let rule = this.compoundRules[i]; - - const _jlen = rule.length; - for (let j = 0; j < _jlen; j++) { - this.compoundRuleCodes[rule[j]] = []; - } - } - - // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in this.flags) { - this.compoundRuleCodes["ONLYINCOMPOUND"] = []; - } - - this.dictionaryTable = this._parseDIC(this.wordsData); - - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (let i in this.compoundRuleCodes) { - if (this.compoundRuleCodes[i].length === 0) { - delete this.compoundRuleCodes[i]; - } - } - - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - for (let i = 0, _len = this.compoundRules.length; i < _len; i++) { - var ruleText = this.compoundRules[i]; - - var expressionText = ""; - - const _jlen = ruleText.length; - for (let j = 0; j < _jlen; j++) { - var character = ruleText[j]; - - if (character in this.compoundRuleCodes) { - expressionText += - "(" + this.compoundRuleCodes[character].join("|") + ")"; - } else { - expressionText += character; - } - } - - this.compoundRules[i] = new RegExp(expressionText, "i"); - } - - this.loaded = true; - - if (this.settings.asyncLoad && this.settings.loadedCallback) { - this.settings.loadedCallback(this); - } - } - - /** - * Read the contents of a file. - * - * @param {String} path The path (relative) to the file. - * @param {String} [charset="ISO8859-1"] The expected charset of the file - * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all - * files are read synchronously. - * @returns {String} The file data if async is false, otherwise a promise object. If running node.js, the data is - * always returned. - */ - - private readFile( - path: string, - charset: string | null, - asyncLoad?: boolean - ) { - charset = charset || "utf8"; - - if (typeof XMLHttpRequest !== "undefined") { - var promise; - var req = new XMLHttpRequest(); - req.open("GET", path, asyncLoad); - - if (asyncLoad) { - promise = new Promise( - ( - resolve: (res: string) => void, - reject: (res: string) => void - ) => { - req.onload = function() { - if (req.status === 200) { - resolve(req.responseText); - } else { - reject(req.statusText); - } - }; - - req.onerror = function() { - reject(req.statusText); - }; - } - ); - } - - if (req.overrideMimeType) - req.overrideMimeType("text/plain; charset=" + charset); - - req.send(null); - - return asyncLoad ? promise : req.responseText; - } else { - try { - if (fs.existsSync(path)) { - const stats = fs.statSync(path); - - const fileDescriptor = fs.openSync(path, "r"); - - const buffer = new Buffer(stats.size); - - fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); - - return buffer.toString(charset, 0, buffer.length); - } else { - console.log("Path " + path + " does not exist."); - } - } catch (e) { - console.log(e); - return ""; - } - } - } - - /** - * Parse the rules out from a .aff file. - * - * @param {String} data The contents of the affix file. - * @returns object The rules from the file. - */ - - _parseAFF(data: string) { - var rules = {}; - - var line, subline, numEntries, lineParts; - var i, j, _len, _jlen; - - // Remove comment lines - data = this._removeAffixComments(data); - - var lines = data.split("\n"); - - for (i = 0, _len = lines.length; i < _len; i++) { - line = lines[i]; - - var definitionParts = line.split(/\s+/); - - var ruleType = definitionParts[0]; - - if (ruleType == "PFX" || ruleType == "SFX") { - var ruleCode = definitionParts[1]; - var combineable = definitionParts[2]; - numEntries = parseInt(definitionParts[3], 10); - - var entries = []; - - for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { - subline = lines[j]; - - lineParts = subline.split(/\s+/); - var charactersToRemove = lineParts[2]; - - var additionParts = lineParts[3].split("/"); - - var charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") charactersToAdd = ""; - - var continuationClasses = this.parseRuleCodes( - additionParts[1] - ); - - var regexToMatch = lineParts[4]; - - const entry: IEntry = {}; - entry.add = charactersToAdd; - - if (continuationClasses.length > 0) - entry.continuationClasses = continuationClasses; - - if (regexToMatch !== ".") { - if (ruleType === "SFX") { - entry.match = new RegExp(regexToMatch + "$"); - } else { - entry.match = new RegExp("^" + regexToMatch); - } - } - - if (charactersToRemove != "0") { - if (ruleType === "SFX") { - entry.remove = new RegExp(charactersToRemove + "$"); - } else { - entry.remove = charactersToRemove; - } - } - - entries.push(entry); - } - - rules[ruleCode] = { - type: ruleType, - combineable: combineable == "Y", - entries: entries - }; - - i += numEntries; - } else if (ruleType === "COMPOUNDRULE") { - numEntries = parseInt(definitionParts[1], 10); - - for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { - line = lines[j]; - - lineParts = line.split(/\s+/); - this.compoundRules.push(lineParts[1]); - } - - i += numEntries; - } else if (ruleType === "REP") { - lineParts = line.split(/\s+/); - - if (lineParts.length === 3) { - this.replacementTable.push([lineParts[1], lineParts[2]]); - } - } else { - // ONLYINCOMPOUND - // COMPOUNDMIN - // FLAG - // KEEPCASE - // NEEDAFFIX - - this.flags[ruleType] = definitionParts[1]; - } - } - - return rules; - } - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from an affix file. - * @return {String} The cleaned-up data. - */ - - _removeAffixComments(data: string) { - // Remove comments - // This used to remove any string starting with '#' up to the end of the line, - // but some COMPOUNDRULE definitions include '#' as part of the rule. - // I haven't seen any affix files that use comments on the same line as real data, - // so I don't think this will break anything. - data = data.replace(/^\s*#.*$/gm, ""); - - // Trim each line - data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); - - // Remove blank lines. - data = data.replace(/\n{2,}/g, "\n"); - - // Trim the entire string - data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - - return data; - } - - /** - * Parses the words out from the .dic file. - * - * @param {String} data The data from the dictionary file. - * @returns object The lookup table containing all of the words and - * word forms from the dictionary. - */ - - _parseDIC(data: string) { - data = this._removeDicComments(data); - - var lines = data.split("\n"); - var dictionaryTable = {}; - - function addWord(word, rules) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!dictionaryTable.hasOwnProperty(word)) { - dictionaryTable[word] = null; - } - - if (rules.length > 0) { - if (dictionaryTable[word] === null) { - dictionaryTable[word] = []; - } - - dictionaryTable[word].push(rules); - } - } - - // The first line is the number of words in the dictionary. - for (var i = 1, _len = lines.length; i < _len; i++) { - var line = lines[i]; - - if (!line) { - // Ignore empty lines. - continue; - } - - var parts = line.split("/", 2); - - var word = parts[0]; - - // Now for each affix rule, generate that form of the word. - if (parts.length > 1) { - var ruleCodesArray = this.parseRuleCodes(parts[1]); - - // Save the ruleCodes for compound word situations. - if ( - !("NEEDAFFIX" in this.flags) || - ruleCodesArray.indexOf(this.flags.NEEDAFFIX) == -1 - ) { - addWord(word, ruleCodesArray); - } - - for (var j = 0, _jlen = ruleCodesArray.length; j < _jlen; j++) { - var code = ruleCodesArray[j]; - - var rule = this.rules[code]; - - if (rule) { - var newWords = this._applyRule(word, rule); - - for ( - var ii = 0, _iilen = newWords.length; - ii < _iilen; - ii++ - ) { - var newWord = newWords[ii]; - - addWord(newWord, []); - - if (rule.combineable) { - for (var k = j + 1; k < _jlen; k++) { - var combineCode = ruleCodesArray[k]; - - var combineRule = this.rules[combineCode]; - - if (combineRule) { - if ( - combineRule.combineable && - rule.type != combineRule.type - ) { - var otherNewWords = this._applyRule( - newWord, - combineRule - ); - - for ( - var iii = 0, - _iiilen = - otherNewWords.length; - iii < _iiilen; - iii++ - ) { - var otherNewWord = - otherNewWords[iii]; - addWord(otherNewWord, []); - } - } - } - } - } - } - } - - if (code in this.compoundRuleCodes) { - this.compoundRuleCodes[code].push(word); - } - } - } else { - addWord(word.trim(), []); - } - } - - return dictionaryTable; - } - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from a .dic file. - * @return {String} The cleaned-up data. - */ - - _removeDicComments(data) { - // I can't find any official documentation on it, but at least the de_DE - // dictionary uses tab-indented lines as comments. - - // Remove comments - data = data.replace(/^\t.*$/gm, ""); - - return data; - } - - parseRuleCodes(textCodes) { - if (!textCodes) { - return []; - } else if (!("FLAG" in this.flags)) { - return textCodes.split(""); - } else if (this.flags.FLAG === "long") { - var flags = []; - - for (var i = 0, _len = textCodes.length; i < _len; i += 2) { - flags.push(textCodes.substr(i, 2)); - } - - return flags; - } else if (this.flags.FLAG === "num") { - return textCodes.split(","); - } - } - - /** - * Applies an affix rule to a word. - * - * @param {String} word The base word. - * @param {Object} rule The affix rule. - * @returns {String[]} The new words generated by the rule. - */ - - _applyRule(word, rule) { - var entries = rule.entries; - var newWords = []; - - for (var i = 0, _len = entries.length; i < _len; i++) { - var entry = entries[i]; - - if (!entry.match || word.match(entry.match)) { - var newWord = word; - - if (entry.remove) { - newWord = newWord.replace(entry.remove, ""); - } - - if (rule.type === "SFX") { - newWord = newWord + entry.add; - } else { - newWord = entry.add + newWord; - } - - newWords.push(newWord); - - if ("continuationClasses" in entry) { - for ( - var j = 0, _jlen = entry.continuationClasses.length; - j < _jlen; - j++ - ) { - var continuationRule = this.rules[ - entry.continuationClasses[j] - ]; - - if (continuationRule) { - newWords = newWords.concat( - this._applyRule(newWord, continuationRule) - ); - } - /* - else { - // This shouldn't happen, but it does, at least in the de_DE dictionary. - // I think the author mistakenly supplied lower-case rule codes instead - // of upper-case. - } - */ - } - } - } - } - - return newWords; - } - - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - - check(aWord) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - // Remove leading and trailing whitespace - var trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - - if (this.checkExact(trimmedWord)) { - return true; - } - - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - var capitalizedWord = - trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - if (this.checkExact(capitalizedWord)) { - return true; - } - } - - var lowercaseWord = trimmedWord.toLowerCase(); - - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } - } - - return false; - } - - /** - * Checks whether a word exists in the current dictionary. - * - * @param {String} word The word to check. - * @returns {Boolean} - */ - - checkExact(word) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - var ruleCodes = this.dictionaryTable[word]; - - var i, _len; - - if (typeof ruleCodes === "undefined") { - // Check if this might be a compound word. - if ( - "COMPOUNDMIN" in this.flags && - word.length >= this.flags.COMPOUNDMIN - ) { - for (i = 0, _len = this.compoundRules.length; i < _len; i++) { - if (word.match(this.compoundRules[i])) { - return true; - } - } - } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } else if (typeof ruleCodes === "object") { - // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, _len = ruleCodes.length; i < _len; i++) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { - return true; - } - } - } - - return false; - } - - /** - * Looks up whether a given word is flagged with a given flag. - * - * @param {String} word The word in question. - * @param {String} flag The flag in question. - * @return {Boolean} - */ - - hasFlag(word, flag, wordFlags?) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - if (flag in this.flags) { - if (typeof wordFlags === "undefined") { - wordFlags = Array.prototype.concat.apply( - [], - this.dictionaryTable[word] - ); - } - - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } - } - - return false; - } - - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ - - suggest(word: string, limit: number): Array { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - - limit = limit || 5; - - if (this.memoized.hasOwnProperty(word)) { - var memoizedLimit = this.memoized[word]["limit"]; - - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if ( - limit <= memoizedLimit || - this.memoized[word]["suggestions"].length < memoizedLimit - ) { - return this.memoized[word]["suggestions"].slice(0, limit); - } - } - - if (this.check(word)) return []; - - // Check the replacement table. - for (var i = 0, _len = this.replacementTable.length; i < _len; i++) { - var replacementEntry = this.replacementTable[i]; - - if (word.indexOf(replacementEntry[0]) !== -1) { - var correctedWord = word.replace( - replacementEntry[0], - replacementEntry[1] - ); - - if (this.check(correctedWord)) { - return [correctedWord]; - } - } - } - - /** - * Returns a hash keyed by all of the strings that can be made by making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool known_only Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, known_only?) { - var rv = {}; - - let i, j, _len, _jlen, _edit; - - if (typeof words == "string") { - var word = words; - words = {}; - words[word] = true; - } - - for (var word in words) { - for (i = 0, _len = word.length + 1; i < _len; i++) { - var s = [word.substring(0, i), word.substring(i)]; - - if (s[1]) { - _edit = s[0] + s[1].substring(1); - - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - _edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - - if (s[1]) { - for ( - j = 0, _jlen = this.alphabet.length; - j < _jlen; - j++ - ) { - // Eliminate replacement of a letter by itthis - if (this.alphabet[j] != s[1].substring(0, 1)) { - _edit = - s[0] + this.alphabet[j] + s[1].substring(1); - - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - } - } - - if (s[1]) { - for ( - j = 0, _jlen = this.alphabet.length; - j < _jlen; - j++ - ) { - _edit = s[0] + this.alphabet[j] + s[1]; - - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - } - } - } - - return rv; - } - - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - var ed1 = edits1(word); - var ed2 = edits1(ed1, true); - - // Sort the edits based on how many different ways they were created. - var weighted_corrections = ed2; - - for (var ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } - - if (ed1word in weighted_corrections) { - weighted_corrections[ed1word] += ed1[ed1word]; - } else { - weighted_corrections[ed1word] = ed1[ed1word]; - } - } - - var sorted_corrections = []; - - for (let i in weighted_corrections) { - if (weighted_corrections.hasOwnProperty(i)) { - sorted_corrections.push([i, weighted_corrections[i]]); - } - } - - function sorter(a: Array, b: Array) { - if (a[1] < b[1]) { - return -1; - } - - // @todo If a and b are equally weighted, add our own weight based on something like the key locations on this language's default keyboard. - - return 1; - } - - sorted_corrections.sort(sorter).reverse(); - - var rv = []; - - var capitalization_scheme = "lowercase"; - - if (word.toUpperCase() === word) { - capitalization_scheme = "uppercase"; - } else if ( - word.substr(0, 1).toUpperCase() + - word.substr(1).toLowerCase() === - word - ) { - capitalization_scheme = "capitalized"; - } - - let working_limit: number = limit; - - for ( - i = 0; - i < Math.min(working_limit, sorted_corrections.length); - i++ - ) { - if ("uppercase" === capitalization_scheme) { - sorted_corrections[i][0] = sorted_corrections[ - i - ][0].toUpperCase(); - } else if ("capitalized" === capitalization_scheme) { - sorted_corrections[i][0] = - sorted_corrections[i][0].substr(0, 1).toUpperCase() + - sorted_corrections[i][0].substr(1); - } - - if ( - !this.hasFlag(sorted_corrections[i][0], "NOSUGGEST") && - rv.indexOf(sorted_corrections[i][0]) == -1 - ) { - rv.push(sorted_corrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion - // make sure we still return the right number of suggestions. - working_limit++; - } - } - - return rv; - } - - this.memoized[word] = { - suggestions: correct(word), - limit: limit - }; - - return this.memoized[word]["suggestions"]; - } -} +import { Buffer } from "buffer"; +import * as fs from "fs"; +/** + * Typo is a Typescript port of a spellchecker using hunspell-style + * dictionaries. + */ + +interface IEntry { + add?: string; + continuationClasses?: any; + match?: any; + remove?: any; +} + +interface ISettings { + dictionaryPath?: string; + flags?: { [flag: string]: any }; + asyncLoad?: boolean; + loadedCallback?: (typo: Typo) => void; +} + +export class Typo { + private static DEFAULT_PATH = "dictionaries"; + + private rules: { [rule: string]: any } = {}; + private dictionaryTable: { [word: string]: any } = {}; + + private compoundRules: any[] = []; + private compoundRuleCodes: { [rule: string]: any[] } = {}; + private replacementTable: any[] = []; + private flags: { [flag: string]: any } = {}; + private memoized: { [rule: string]: any } = {}; + + private loaded: boolean = false; + + /** + * Typo constructor. + * + * @param {String} [dictionary] The locale code of the dictionary being used. e.g., + * "en_US". This is only used to auto-load dictionaries. + * @param {String} [affData] The data from the dictionary's .aff file. If omitted + * and Typo.js is being used in a Chrome extension, the .aff + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].aff + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff + * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted + * and Typo.js is being used in a Chrome extension, the .dic + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].dic + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic + * @param {Object} [settings] Constructor settings. Available properties are: + * {String} [dictionaryPath]: path to load dictionary from in non-chrome + * environment. + * {Object} [flags]: flag information. + * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded + * asynchronously. + * {Function} [loadedCallback]: Called when both affData and wordsData + * have been loaded. Only used if asyncLoad is set to true. The parameter + * is the instantiated Typo object. + * + * @returns {Typo} A Typo object. + */ + constructor( + dictionary?: string, + private affData?: string, + private wordsData?: string, + private settings: ISettings = {}, + ) { + let path = Typo.DEFAULT_PATH; + + if (dictionary) { + // If the data is preloaded, just setup the Typo object. + if (this.affData && this.wordsData) { + this.setup(); + } + if (this.settings.dictionaryPath) { + path = this.settings.dictionaryPath; + } + if (!this.affData) { + this.readDataFile( + path + "/" + dictionary + "/" + dictionary + ".aff", + this.setAffData, + ); + } + if (!this.wordsData) { + this.readDataFile( + path + "/" + dictionary + "/" + dictionary + ".dic", + this.setWordsData, + ); + } + } + } + + private readDataFile(url: string, setFunc: ((data: string) => void)) { + const response = this.readFile(url, null, this.settings.asyncLoad); + + if (this.settings.asyncLoad) { + response.then((data: string) => { + setFunc(data); + }); + } else { + setFunc(response); + } + } + + private setAffData(data: string) { + this.affData = data; + + if (this.wordsData) { + this.setup(); + } + } + + private setWordsData(data: string) { + this.wordsData = data; + + if (this.affData) { + this.setup(); + } + } + + private setup(): void { + this.rules = this.parseAFF(this.affData); + + // Save the rule codes that are used in compound rules. + this.compoundRuleCodes = {}; + + let len = this.compoundRules.length; + for (let i = 0; i < len; i++) { + const rule = this.compoundRules[i]; + + const jlen = rule.length; + for (let j = 0; j < jlen; j++) { + this.compoundRuleCodes[rule[j]] = []; + } + } + + // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC + // will do the work of saving the list of words that are compound-only. + if ("ONLYINCOMPOUND" in this.flags) { + this.compoundRuleCodes.ONLYINCOMPOUND = []; + } + + this.dictionaryTable = this.parseDIC(this.wordsData); + + // Get rid of any codes from the compound rule codes that are never used + // (or that were special regex characters). Not especially necessary... + for (const i in this.compoundRuleCodes) { + if (this.compoundRuleCodes[i].length === 0) { + delete this.compoundRuleCodes[i]; + } + } + + // Build the full regular expressions for each compound rule. + // I have a feeling (but no confirmation yet) that this method of + // testing for compound words is probably slow. + len = this.compoundRules.length; + for (let i = 0; i < len; i++) { + const ruleText = this.compoundRules[i]; + + let expressionText = ""; + + const jlen = ruleText.length; + for (let j = 0; j < jlen; j++) { + const character = ruleText[j]; + + if (character in this.compoundRuleCodes) { + expressionText += + "(" + this.compoundRuleCodes[character].join("|") + ")"; + } else { + expressionText += character; + } + } + + this.compoundRules[i] = new RegExp(expressionText, "i"); + } + + this.loaded = true; + + if (this.settings.asyncLoad && this.settings.loadedCallback) { + this.settings.loadedCallback(this); + } + } + + /** + * Read the contents of a file. + * + * @param {String} path The path (relative) to the file. + * @param {String} [charset="ISO8859-1"] The expected charset of the file + * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all + * files are read synchronously. + * @returns {String} The file data if async is false, otherwise a promise object. + * If running node.js, the data is + * always returned. + */ + + private readFile( + path: string, + charset: string | null, + asyncLoad?: boolean, + ) { + charset = charset || "utf8"; + + if (typeof XMLHttpRequest !== "undefined") { + let promise; + const req = new XMLHttpRequest(); + req.open("GET", path, asyncLoad); + + if (asyncLoad) { + promise = new Promise( + ( + resolve: (res: string) => void, + reject: (res: string) => void, + ) => { + req.onload = () => { + if (req.status === 200) { + resolve(req.responseText); + } else { + reject(req.statusText); + } + }; + + req.onerror = () => { + reject(req.statusText); + }; + }, + ); + } + + if (req.overrideMimeType) { + req.overrideMimeType("text/plain; charset=" + charset); + } + + req.send(null); + + return asyncLoad ? promise : req.responseText; + } else { + try { + if (fs.existsSync(path)) { + const stats = fs.statSync(path); + + const fileDescriptor = fs.openSync(path, "r"); + + const buffer = new Buffer(stats.size); + + fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); + + return buffer.toString(charset, 0, buffer.length); + } else { + // console.log("Path " + path + " does not exist."); + } + } catch (e) { + // console.log(e); + return ""; + } + } + } + + /** + * Parse the rules out from a .aff file. + * + * @param {String} data The contents of the affix file. + * @returns object The rules from the file. + */ + + private parseAFF(data: string) { + const rules = {}; + + let line; + let subline; + let numEntries; + let lineParts; + let i; + let j; + let len; + let jlen; + + // Remove comment lines + data = this.removeAffixComments(data); + + const lines = data.split("\n"); + + for (i = 0, len = lines.length; i < len; i++) { + line = lines[i]; + + const definitionParts = line.split(/\s+/); + + const ruleType = definitionParts[0]; + + if (ruleType === "PFX" || ruleType === "SFX") { + const ruleCode = definitionParts[1]; + const combineable = definitionParts[2]; + numEntries = parseInt(definitionParts[3], 10); + + const entries = []; + + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + subline = lines[j]; + + lineParts = subline.split(/\s+/); + const charactersToRemove = lineParts[2]; + + const additionParts = lineParts[3].split("/"); + + let charactersToAdd = additionParts[0]; + if (charactersToAdd === "0") { charactersToAdd = ""; } + + const continuationClasses = this.parseRuleCodes( + additionParts[1], + ); + + const regexToMatch = lineParts[4]; + + const entry: IEntry = {}; + entry.add = charactersToAdd; + + if (continuationClasses.length > 0) { + entry.continuationClasses = continuationClasses; + } + + if (regexToMatch !== ".") { + if (ruleType === "SFX") { + entry.match = new RegExp(regexToMatch + "$"); + } else { + entry.match = new RegExp("^" + regexToMatch); + } + } + + if (charactersToRemove !== "0") { + if (ruleType === "SFX") { + entry.remove = new RegExp(charactersToRemove + "$"); + } else { + entry.remove = charactersToRemove; + } + } + + entries.push(entry); + } + + rules[ruleCode] = { + combineable: combineable === "Y", + entries, + type: ruleType, + }; + + i += numEntries; + } else if (ruleType === "COMPOUNDRULE") { + numEntries = parseInt(definitionParts[1], 10); + + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + line = lines[j]; + + lineParts = line.split(/\s+/); + this.compoundRules.push(lineParts[1]); + } + + i += numEntries; + } else if (ruleType === "REP") { + lineParts = line.split(/\s+/); + + if (lineParts.length === 3) { + this.replacementTable.push([lineParts[1], lineParts[2]]); + } + } else { + // ONLYINCOMPOUND + // COMPOUNDMIN + // FLAG + // KEEPCASE + // NEEDAFFIX + + this.flags[ruleType] = definitionParts[1]; + } + } + + return rules; + } + + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from an affix file. + * @return {String} The cleaned-up data. + */ + + private removeAffixComments(data: string) { + // Remove comments + // This used to remove any string starting with '#' up to the end of the line, + // but some COMPOUNDRULE definitions include '#' as part of the rule. + // I haven't seen any affix files that use comments on the same line as real data, + // so I don't think this will break anything. + data = data.replace(/^\s*#.*$/gm, ""); + + // Trim each line + data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); + + // Remove blank lines. + data = data.replace(/\n{2,}/g, "\n"); + + // Trim the entire string + data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + return data; + } + + /** + * Parses the words out from the .dic file. + * + * @param {String} data The data from the dictionary file. + * @returns object The lookup table containing all of the words and + * word forms from the dictionary. + */ + + private parseDIC(data: string) { + data = this.removeDicComments(data); + + const lines = data.split("\n"); + const dictionaryTable = {}; + + function addWord(word, rules) { + // Some dictionaries will list the same word multiple times with different rule sets. + if (!dictionaryTable.hasOwnProperty(word)) { + dictionaryTable[word] = null; + } + + if (rules.length > 0) { + if (dictionaryTable[word] === null) { + dictionaryTable[word] = []; + } + + dictionaryTable[word].push(rules); + } + } + + // The first line is the number of words in the dictionary. + for (let i = 1, len = lines.length; i < len; i++) { + const line = lines[i]; + + if (!line) { + // Ignore empty lines. + continue; + } + + const parts = line.split("/", 2); + + const word = parts[0]; + + // Now for each affix rule, generate that form of the word. + if (parts.length > 1) { + const ruleCodesArray = this.parseRuleCodes(parts[1]); + + // Save the ruleCodes for compound word situations. + if ( + !("NEEDAFFIX" in this.flags) || + ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 + ) { + addWord(word, ruleCodesArray); + } + + for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { + const code = ruleCodesArray[j]; + + const rule = this.rules[code]; + + if (rule) { + const newWords = this._applyRule(word, rule); + + for ( + let ii = 0, iilen = newWords.length; + ii < iilen; + ii++ + ) { + const newWord = newWords[ii]; + + addWord(newWord, []); + + if (rule.combineable) { + for (let k = j + 1; k < jlen; k++) { + const combineCode = ruleCodesArray[k]; + + const combineRule = this.rules[combineCode]; + + if (combineRule) { + if ( + combineRule.combineable && + rule.type !== combineRule.type + ) { + const otherNewWords = this._applyRule( + newWord, + combineRule, + ); + + for ( + let iii = 0, + iiilen = + otherNewWords.length; + iii < iiilen; + iii++ + ) { + const otherNewWord = + otherNewWords[iii]; + addWord(otherNewWord, []); + } + } + } + } + } + } + } + + if (code in this.compoundRuleCodes) { + this.compoundRuleCodes[code].push(word); + } + } + } else { + addWord(word.trim(), []); + } + } + + return dictionaryTable; + } + + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from a .dic file. + * @return {String} The cleaned-up data. + */ + + private removeDicComments(data) { + // I can't find any official documentation on it, but at least the de_DE + // dictionary uses tab-indented lines as comments. + + // Remove comments + data = data.replace(/^\t.*$/gm, ""); + + return data; + } + + private parseRuleCodes(textCodes) { + if (!textCodes) { + return []; + } else if (!("FLAG" in this.flags)) { + return textCodes.split(""); + } else if (this.flags.FLAG === "long") { + const flags = []; + + for (let i = 0, len = textCodes.length; i < len; i += 2) { + flags.push(textCodes.substr(i, 2)); + } + + return flags; + } else if (this.flags.FLAG === "num") { + return textCodes.split(","); + } + } + + /** + * Applies an affix rule to a word. + * + * @param {String} word The base word. + * @param {Object} rule The affix rule. + * @returns {String[]} The new words generated by the rule. + */ + + private _applyRule(word, rule) { + const entries = rule.entries; + let newWords = []; + + for (let i = 0, len = entries.length; i < len; i++) { + const entry = entries[i]; + + if (!entry.match || word.match(entry.match)) { + let newWord = word; + + if (entry.remove) { + newWord = newWord.replace(entry.remove, ""); + } + + if (rule.type === "SFX") { + newWord = newWord + entry.add; + } else { + newWord = entry.add + newWord; + } + + newWords.push(newWord); + + if ("continuationClasses" in entry) { + for ( + let j = 0, jlen = entry.continuationClasses.length; + j < jlen; + j++ + ) { + const continuationRule = this.rules[ + entry.continuationClasses[j] + ]; + + if (continuationRule) { + newWords = newWords.concat( + this._applyRule(newWord, continuationRule), + ); + } + /* + else { + // This shouldn't happen, but it does, at least in the de_DE dictionary. + // I think the author mistakenly supplied lower-case rule codes instead + // of upper-case. + } + */ + } + } + } + } + + return newWords; + } + + /** + * Checks whether a word or a capitalization variant exists in the current dictionary. + * The word is trimmed and several variations of capitalizations are checked. + * If you want to check a word without any changes made to it, call checkExact() + * + * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function + * + * @param {String} aWord The word to check. + * @returns {Boolean} + */ + + private check(aWord) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + // Remove leading and trailing whitespace + const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + if (this.checkExact(trimmedWord)) { + return true; + } + + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + const capitalizedWord = + trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + if (this.checkExact(capitalizedWord)) { + return true; + } + } + + const lowercaseWord = trimmedWord.toLowerCase(); + + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } + } + + return false; + } + + /** + * Checks whether a word exists in the current dictionary. + * + * @param {String} word The word to check. + * @returns {Boolean} + */ + + private checkExact(word) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + const ruleCodes = this.dictionaryTable[word]; + + let i; + let len; + + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ( + "COMPOUNDMIN" in this.flags && + word.length >= this.flags.COMPOUNDMIN + ) { + for (i = 0, len = this.compoundRules.length; i < len; i++) { + if (word.match(this.compoundRules[i])) { + return true; + } + } + } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { + // this.dictionary['hasOwnProperty'] will be a function. + for (i = 0, len = ruleCodes.length; i < len; i++) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { + return true; + } + } + } + + return false; + } + + /** + * Looks up whether a given word is flagged with a given flag. + * + * @param {String} word The word in question. + * @param {String} flag The flag in question. + * @return {Boolean} + */ + + private hasFlag(word, flag, wordFlags?) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = Array.prototype.concat.apply( + [], + this.dictionaryTable[word], + ); + } + + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } + } + + return false; + } + + /** + * Returns a list of suggestions for a misspelled word. + * + * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. + * This suggestor is primitive, but it works. + * + * @param {String} word The misspelling. + * @param {Number} [limit=5] The maximum number of suggestions to return. + * @returns {String[]} The array of suggestions. + */ + + private suggest(word: string, limit: number): string[] { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + limit = limit || 5; + + if (this.memoized.hasOwnProperty(word)) { + const memoizedLimit = this.memoized[word].limit; + + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if ( + limit <= memoizedLimit || + this.memoized[word].suggestions.length < memoizedLimit + ) { + return this.memoized[word].suggestions.slice(0, limit); + } + } + + if (this.check(word)) { return []; } + + // Check the replacement table. + for (let i = 0, len = this.replacementTable.length; i < len; i++) { + const replacementEntry = this.replacementTable[i]; + + if (word.indexOf(replacementEntry[0]) !== -1) { + const correctedWord = word.replace( + replacementEntry[0], + replacementEntry[1], + ); + + if (this.check(correctedWord)) { + return [correctedWord]; + } + } + } + + /** + * Returns a hash keyed by all of the strings that can be made by + * making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. + * + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. + */ + function edits1(words, knownOnly?) { + const rv = {}; + + let i; + let j; + let len; + let jlen; + let edit; + + if (typeof words === "string") { + const word = words; + words = {}; + words[word] = true; + } + + for (const word of words) { + for (i = 0, len = word.length + 1; i < len; i++) { + const s = [word.substring(0, i), word.substring(i)]; + + if (s[1]) { + edit = s[0] + s[1].substring(1); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + + if (s[1]) { + for ( + j = 0, jlen = this.alphabet.length; + j < jlen; + j++ + ) { + // Eliminate replacement of a letter by itthis + if (this.alphabet[j] !== s[1].substring(0, 1)) { + edit = + s[0] + this.alphabet[j] + s[1].substring(1); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } + + if (s[1]) { + for ( + j = 0, jlen = this.alphabet.length; + j < jlen; + j++ + ) { + edit = s[0] + this.alphabet[j] + s[1]; + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } + } + + return rv; + } + + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + const ed1 = edits1(word); + const ed2 = edits1(ed1, true); + + // Sort the edits based on how many different ways they were created. + const weightedCorrections = ed2; + + for (const ed1word in ed1) { + if (!this.check(ed1word)) { + continue; + } + + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; + } + } + + const sortedCorrections = []; + + for (const i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([i, weightedCorrections[i]]); + } + } + + function sorter(a: number[], b: number[]) { + if (a[1] < b[1]) { + return -1; + } + + // @todo If a and b are equally weighted, add our own weight based on something + // like the key locations on this language's default keyboard. + + return 1; + } + + sortedCorrections.sort(sorter).reverse(); + + const rv = []; + + let capitalizationScheme = "lowercase"; + + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if ( + word.substr(0, 1).toUpperCase() + + word.substr(1).toLowerCase() === + word + ) { + capitalizationScheme = "capitalized"; + } + + let workingLimit: number = limit; + + for ( + let i = 0; + i < Math.min(workingLimit, sortedCorrections.length); + i++ + ) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[ + i + ][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = + sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); + } + + if ( + !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && + rv.indexOf(sortedCorrections[i][0]) === -1 + ) { + rv.push(sortedCorrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion + // make sure we still return the right number of suggestions. + workingLimit++; + } + } + + return rv; + } + + this.memoized[word] = { + limit, + suggestions: correct(word), + }; + + return this.memoized[word].suggestions; + } +} diff --git a/tslint.json b/tslint.json index 9e97bd2..9a99d52 100644 --- a/tslint.json +++ b/tslint.json @@ -2,6 +2,8 @@ "defaultSeverity": "error", "extends": ["tslint:recommended"], "jsRules": {}, - "rules": {}, + "rules": { + "no-shadowed-variable": false + }, "rulesDirectory": [] } From c4e4d544a0a5a86f63db356f73eef5482785fae3 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 13:39:05 +0100 Subject: [PATCH 06/27] remove file loading and settings options --- dist/typo.js | 726 ++++++++++-------------- dist/typo.js.map | 2 +- src/typo.ts | 1362 ++++++++++++++++++++-------------------------- 3 files changed, 877 insertions(+), 1213 deletions(-) diff --git a/dist/typo.js b/dist/typo.js index 059f156..193a529 100644 --- a/dist/typo.js +++ b/dist/typo.js @@ -1,42 +1,14 @@ -import { Buffer } from "buffer"; -import * as fs from "fs"; var Typo = /** @class */ (function() { /** * Typo constructor. * - * @param {String} [dictionary] The locale code of the dictionary being used. e.g., - * "en_US". This is only used to auto-load dictionaries. - * @param {String} [affData] The data from the dictionary's .aff file. If omitted - * and Typo.js is being used in a Chrome extension, the .aff - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].aff - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff - * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted - * and Typo.js is being used in a Chrome extension, the .dic - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].dic - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic - * @param {Object} [settings] Constructor settings. Available properties are: - * {String} [dictionaryPath]: path to load dictionary from in non-chrome - * environment. - * {Object} [flags]: flag information. - * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded - * asynchronously. - * {Function} [loadedCallback]: Called when both affData and wordsData - * have been loaded. Only used if asyncLoad is set to true. The parameter - * is the instantiated Typo object. + * @param {String} [affData] The data from the dictionary's .aff file. + * @param {String} [wordsData] The data from the dictionary's .dic file. * - * @returns {Typo} A Typo object. */ - function Typo(dictionary, affData, wordsData, settings) { - if (settings === void 0) { - settings = {}; - } + function Typo(affData, wordsData) { this.affData = affData; this.wordsData = wordsData; - this.settings = settings; this.rules = {}; this.dictionaryTable = {}; this.compoundRules = []; @@ -44,70 +16,255 @@ var Typo = /** @class */ (function() { this.replacementTable = []; this.flags = {}; this.memoized = {}; - this.loaded = false; - var path = Typo.DEFAULT_PATH; - if (dictionary) { - // If the data is preloaded, just setup the Typo object. - if (this.affData && this.wordsData) { - this.setup(); + this.setup(); + } + /** + * Checks whether a word or a capitalization variant exists in the current dictionary. + * The word is trimmed and several variations of capitalizations are checked. + * If you want to check a word without any changes made to it, call checkExact() + * + * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function + * + * @param {String} aWord The word to check. + * @returns {Boolean} + */ + Typo.prototype.check = function(aWord) { + // Remove leading and trailing whitespace + var trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + if (this.checkExact(trimmedWord)) { + return true; + } + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + var capitalizedWord = + trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; } - if (this.settings.dictionaryPath) { - path = this.settings.dictionaryPath; + if (this.checkExact(capitalizedWord)) { + return true; } - if (!this.affData) { - this.readDataFile( - path + "/" + dictionary + "/" + dictionary + ".aff", - this.setAffData - ); + } + var lowercaseWord = trimmedWord.toLowerCase(); + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; } - if (!this.wordsData) { - this.readDataFile( - path + "/" + dictionary + "/" + dictionary + ".dic", - this.setWordsData - ); + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; } } - } - Typo.prototype.readDataFile = function(url, setFunc) { - var response = this.readFile(url, null, this.settings.asyncLoad); - if (this.settings.asyncLoad) { - response.then(function(data) { - setFunc(data); - }); - } else { - setFunc(response); - } + return false; }; - Typo.prototype.setAffData = function(data) { - this.affData = data; - if (this.wordsData) { - this.setup(); + /** + * Returns a list of suggestions for a misspelled word. + * + * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. + * This suggestor is primitive, but it works. + * + * @param {String} word The misspelling. + * @param {Number} [limit=5] The maximum number of suggestions to return. + * @returns {String[]} The array of suggestions. + */ + Typo.prototype.suggest = function(word, limit) { + limit = limit || 5; + if (this.memoized.hasOwnProperty(word)) { + var memoizedLimit = this.memoized[word].limit; + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if ( + limit <= memoizedLimit || + this.memoized[word].suggestions.length < memoizedLimit + ) { + return this.memoized[word].suggestions.slice(0, limit); + } } - }; - Typo.prototype.setWordsData = function(data) { - this.wordsData = data; - if (this.affData) { - this.setup(); + if (this.check(word)) { + return []; } + // Check the replacement table. + for (var i = 0, len = this.replacementTable.length; i < len; i++) { + var replacementEntry = this.replacementTable[i]; + if (word.indexOf(replacementEntry[0]) !== -1) { + var correctedWord = word.replace( + replacementEntry[0], + replacementEntry[1] + ); + if (this.check(correctedWord)) { + return [correctedWord]; + } + } + } + /** + * Returns a hash keyed by all of the strings that can be made by + * making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. + * + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. + */ + function edits1(words, knownOnly) { + var rv = {}; + var i; + var j; + var len; + var jlen; + var edit; + if (typeof words === "string") { + var word_1 = words; + words = {}; + words[word_1] = true; + } + for (var _i = 0, words_1 = words; _i < words_1.length; _i++) { + var word_2 = words_1[_i]; + for (i = 0, len = word_2.length + 1; i < len; i++) { + var s = [word_2.substring(0, i), word_2.substring(i)]; + if (s[1]) { + edit = s[0] + s[1].substring(1); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + if (s[1]) { + for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + // Eliminate replacement of a letter by itthis + if (this.alphabet[j] !== s[1].substring(0, 1)) { + edit = s[0] + this.alphabet[j] + s[1].substring(1); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } + if (s[1]) { + for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + edit = s[0] + this.alphabet[j] + s[1]; + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } + } + return rv; + } + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + var ed1 = edits1(word); + var ed2 = edits1(ed1, true); + // Sort the edits based on how many different ways they were created. + var weightedCorrections = ed2; + for (var ed1word in ed1) { + if (!this.check(ed1word)) { + continue; + } + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; + } + } + var sortedCorrections = []; + for (var i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([i, weightedCorrections[i]]); + } + } + function sorter(a, b) { + if (a[1] < b[1]) { + return -1; + } + // @todo If a and b are equally weighted, add our own weight based on something + // like the key locations on this language's default keyboard. + return 1; + } + sortedCorrections.sort(sorter).reverse(); + var rv = []; + var capitalizationScheme = "lowercase"; + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if ( + word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === + word + ) { + capitalizationScheme = "capitalized"; + } + var workingLimit = limit; + for ( + var i = 0; + i < Math.min(workingLimit, sortedCorrections.length); + i++ + ) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = + sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); + } + if ( + !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && + rv.indexOf(sortedCorrections[i][0]) === -1 + ) { + rv.push(sortedCorrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion + // make sure we still return the right number of suggestions. + workingLimit++; + } + } + return rv; + } + this.memoized[word] = { + limit: limit, + suggestions: correct(word) + }; + return this.memoized[word].suggestions; }; Typo.prototype.setup = function() { - this.rules = this._parseAFF(this.affData); + var _this = this; + this.rules = this.parseAFF(this.affData); // Save the rule codes that are used in compound rules. this.compoundRuleCodes = {}; - var _len = this.compoundRules.length; - for (var i = 0; i < _len; i++) { - var rule = this.compoundRules[i]; - var _jlen = rule.length; - for (var j = 0; j < _jlen; j++) { - this.compoundRuleCodes[rule[j]] = []; - } - } + this.compoundRules.forEach(function(rule) { + rule.forEach(function(item) { + return (_this.compoundRuleCodes[item] = []); + }); + }); // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC // will do the work of saving the list of words that are compound-only. if ("ONLYINCOMPOUND" in this.flags) { - this.compoundRuleCodes["ONLYINCOMPOUND"] = []; + this.compoundRuleCodes.ONLYINCOMPOUND = []; } - this.dictionaryTable = this._parseDIC(this.wordsData); + this.dictionaryTable = this.parseDIC(this.wordsData); // Get rid of any codes from the compound rule codes that are never used // (or that were special regex characters). Not especially necessary... for (var i in this.compoundRuleCodes) { @@ -118,76 +275,16 @@ var Typo = /** @class */ (function() { // Build the full regular expressions for each compound rule. // I have a feeling (but no confirmation yet) that this method of // testing for compound words is probably slow. - for (var i = 0, _len_1 = this.compoundRules.length; i < _len_1; i++) { - var ruleText = this.compoundRules[i]; + this.compoundRules.map(function(ruleText) { var expressionText = ""; - var _jlen = ruleText.length; - for (var j = 0; j < _jlen; j++) { - var character = ruleText[j]; - if (character in this.compoundRuleCodes) { - expressionText += - "(" + this.compoundRuleCodes[character].join("|") + ")"; - } else { - expressionText += character; - } - } - this.compoundRules[i] = new RegExp(expressionText, "i"); - } - this.loaded = true; - if (this.settings.asyncLoad && this.settings.loadedCallback) { - this.settings.loadedCallback(this); - } - }; - /** - * Read the contents of a file. - * - * @param {String} path The path (relative) to the file. - * @param {String} [charset="ISO8859-1"] The expected charset of the file - * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all - * files are read synchronously. - * @returns {String} The file data if async is false, otherwise a promise object. If running node.js, the data is - * always returned. - */ - Typo.prototype.readFile = function(path, charset, asyncLoad) { - charset = charset || "utf8"; - if (typeof XMLHttpRequest !== "undefined") { - var promise; - var req = new XMLHttpRequest(); - req.open("GET", path, asyncLoad); - if (asyncLoad) { - promise = new Promise(function(resolve, reject) { - req.onload = function() { - if (req.status === 200) { - resolve(req.responseText); - } else { - reject(req.statusText); - } - }; - req.onerror = function() { - reject(req.statusText); - }; - }); - } - if (req.overrideMimeType) - req.overrideMimeType("text/plain; charset=" + charset); - req.send(null); - return asyncLoad ? promise : req.responseText; - } else { - try { - if (fs.existsSync(path)) { - var stats = fs.statSync(path); - var fileDescriptor = fs.openSync(path, "r"); - var buffer = new Buffer(stats.size); - fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); - return buffer.toString(charset, 0, buffer.length); - } else { - console.log("Path " + path + " does not exist."); - } - } catch (e) { - console.log(e); - return ""; - } - } + ruleText.forEach(function(character) { + expressionText += + character in _this.compoundRuleCodes + ? "(" + _this.compoundRuleCodes[character].join("|") + ")" + : character; + }); + return new RegExp(expressionText, "i"); + }); }; /** * Parse the rules out from a .aff file. @@ -195,35 +292,44 @@ var Typo = /** @class */ (function() { * @param {String} data The contents of the affix file. * @returns object The rules from the file. */ - Typo.prototype._parseAFF = function(data) { + Typo.prototype.parseAFF = function(data) { var rules = {}; - var line, subline, numEntries, lineParts; - var i, j, _len, _jlen; + var line; + var subline; + var numEntries; + var lineParts; + var i; + var j; + var len; + var jlen; // Remove comment lines - data = this._removeAffixComments(data); + data = this.removeAffixComments(data); var lines = data.split("\n"); - for (i = 0, _len = lines.length; i < _len; i++) { + for (i = 0, len = lines.length; i < len; i++) { line = lines[i]; var definitionParts = line.split(/\s+/); var ruleType = definitionParts[0]; - if (ruleType == "PFX" || ruleType == "SFX") { + if (ruleType === "PFX" || ruleType === "SFX") { var ruleCode = definitionParts[1]; var combineable = definitionParts[2]; numEntries = parseInt(definitionParts[3], 10); var entries = []; - for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { subline = lines[j]; lineParts = subline.split(/\s+/); var charactersToRemove = lineParts[2]; var additionParts = lineParts[3].split("/"); var charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") charactersToAdd = ""; + if (charactersToAdd === "0") { + charactersToAdd = ""; + } var continuationClasses = this.parseRuleCodes(additionParts[1]); var regexToMatch = lineParts[4]; var entry = {}; entry.add = charactersToAdd; - if (continuationClasses.length > 0) + if (continuationClasses.length > 0) { entry.continuationClasses = continuationClasses; + } if (regexToMatch !== ".") { if (ruleType === "SFX") { entry.match = new RegExp(regexToMatch + "$"); @@ -231,7 +337,7 @@ var Typo = /** @class */ (function() { entry.match = new RegExp("^" + regexToMatch); } } - if (charactersToRemove != "0") { + if (charactersToRemove !== "0") { if (ruleType === "SFX") { entry.remove = new RegExp(charactersToRemove + "$"); } else { @@ -241,14 +347,14 @@ var Typo = /** @class */ (function() { entries.push(entry); } rules[ruleCode] = { - type: ruleType, - combineable: combineable == "Y", - entries: entries + combineable: combineable === "Y", + entries: entries, + type: ruleType }; i += numEntries; } else if (ruleType === "COMPOUNDRULE") { numEntries = parseInt(definitionParts[1], 10); - for (j = i + 1, _jlen = i + 1 + numEntries; j < _jlen; j++) { + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { line = lines[j]; lineParts = line.split(/\s+/); this.compoundRules.push(lineParts[1]); @@ -276,20 +382,19 @@ var Typo = /** @class */ (function() { * @param {String} data The data from an affix file. * @return {String} The cleaned-up data. */ - Typo.prototype._removeAffixComments = function(data) { + Typo.prototype.removeAffixComments = function(data) { // Remove comments // This used to remove any string starting with '#' up to the end of the line, // but some COMPOUNDRULE definitions include '#' as part of the rule. // I haven't seen any affix files that use comments on the same line as real data, // so I don't think this will break anything. - data = data.replace(/^\s*#.*$/gm, ""); - // Trim each line - data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); - // Remove blank lines. - data = data.replace(/\n{2,}/g, "\n"); - // Trim the entire string - data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - return data; + return data + .replace(/^\s*#.*$/gm, "") + .replace(/^\s\s*/m, "") + .replace(/\s\s*$/m, "") + .replace(/\n{2,}/g, "\n") + .replace(/^\s\s*/, "") + .replace(/\s\s*$/, ""); }; /** * Parses the words out from the .dic file. @@ -298,8 +403,8 @@ var Typo = /** @class */ (function() { * @returns object The lookup table containing all of the words and * word forms from the dictionary. */ - Typo.prototype._parseDIC = function(data) { - data = this._removeDicComments(data); + Typo.prototype.parseDIC = function(data) { + data = this.removeDicComments(data); var lines = data.split("\n"); var dictionaryTable = {}; function addWord(word, rules) { @@ -315,7 +420,7 @@ var Typo = /** @class */ (function() { } } // The first line is the number of words in the dictionary. - for (var i = 1, _len = lines.length; i < _len; i++) { + for (var i = 1, len = lines.length; i < len; i++) { var line = lines[i]; if (!line) { // Ignore empty lines. @@ -329,31 +434,31 @@ var Typo = /** @class */ (function() { // Save the ruleCodes for compound word situations. if ( !("NEEDAFFIX" in this.flags) || - ruleCodesArray.indexOf(this.flags.NEEDAFFIX) == -1 + ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 ) { addWord(word, ruleCodesArray); } - for (var j = 0, _jlen = ruleCodesArray.length; j < _jlen; j++) { + for (var j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { var code = ruleCodesArray[j]; var rule = this.rules[code]; if (rule) { var newWords = this._applyRule(word, rule); - for (var ii = 0, _iilen = newWords.length; ii < _iilen; ii++) { + for (var ii = 0, iilen = newWords.length; ii < iilen; ii++) { var newWord = newWords[ii]; addWord(newWord, []); if (rule.combineable) { - for (var k = j + 1; k < _jlen; k++) { + for (var k = j + 1; k < jlen; k++) { var combineCode = ruleCodesArray[k]; var combineRule = this.rules[combineCode]; if (combineRule) { if ( combineRule.combineable && - rule.type != combineRule.type + rule.type !== combineRule.type ) { var otherNewWords = this._applyRule(newWord, combineRule); for ( - var iii = 0, _iiilen = otherNewWords.length; - iii < _iiilen; + var iii = 0, iiilen = otherNewWords.length; + iii < iiilen; iii++ ) { var otherNewWord = otherNewWords[iii]; @@ -381,21 +486,20 @@ var Typo = /** @class */ (function() { * @param {String} data The data from a .dic file. * @return {String} The cleaned-up data. */ - Typo.prototype._removeDicComments = function(data) { + Typo.prototype.removeDicComments = function(data) { // I can't find any official documentation on it, but at least the de_DE // dictionary uses tab-indented lines as comments. // Remove comments - data = data.replace(/^\t.*$/gm, ""); - return data; + return data.replace(/^\t.*$/gm, ""); }; Typo.prototype.parseRuleCodes = function(textCodes) { - if (!textCodes) { + if (textCodes == null) { return []; } else if (!("FLAG" in this.flags)) { return textCodes.split(""); } else if (this.flags.FLAG === "long") { var flags = []; - for (var i = 0, _len = textCodes.length; i < _len; i += 2) { + for (var i = 0; i < textCodes.length; i += 2) { flags.push(textCodes.substr(i, 2)); } return flags; @@ -413,7 +517,7 @@ var Typo = /** @class */ (function() { Typo.prototype._applyRule = function(word, rule) { var entries = rule.entries; var newWords = []; - for (var i = 0, _len = entries.length; i < _len; i++) { + for (var i = 0, len = entries.length; i < len; i++) { var entry = entries[i]; if (!entry.match || word.match(entry.match)) { var newWord = word; @@ -428,8 +532,8 @@ var Typo = /** @class */ (function() { newWords.push(newWord); if ("continuationClasses" in entry) { for ( - var j = 0, _jlen = entry.continuationClasses.length; - j < _jlen; + var j = 0, jlen = entry.continuationClasses.length; + j < jlen; j++ ) { var continuationRule = this.rules[entry.continuationClasses[j]]; @@ -439,7 +543,7 @@ var Typo = /** @class */ (function() { ); } /* - else { + else { // This shouldn't happen, but it does, at least in the de_DE dictionary. // I think the author mistakenly supplied lower-case rule codes instead // of upper-case. @@ -451,52 +555,6 @@ var Typo = /** @class */ (function() { } return newWords; }; - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - Typo.prototype.check = function(aWord) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - // Remove leading and trailing whitespace - var trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - if (this.checkExact(trimmedWord)) { - return true; - } - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - var capitalizedWord = - trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - if (this.checkExact(capitalizedWord)) { - return true; - } - } - var lowercaseWord = trimmedWord.toLowerCase(); - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } - } - return false; - }; /** * Checks whether a word exists in the current dictionary. * @@ -504,18 +562,16 @@ var Typo = /** @class */ (function() { * @returns {Boolean} */ Typo.prototype.checkExact = function(word) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } var ruleCodes = this.dictionaryTable[word]; - var i, _len; + var i; + var len; if (typeof ruleCodes === "undefined") { // Check if this might be a compound word. if ( "COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN ) { - for (i = 0, _len = this.compoundRules.length; i < _len; i++) { + for (i = 0, len = this.compoundRules.length; i < len; i++) { if (word.match(this.compoundRules[i])) { return true; } @@ -527,7 +583,7 @@ var Typo = /** @class */ (function() { return true; } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, _len = ruleCodes.length; i < _len; i++) { + for (i = 0, len = ruleCodes.length; i < len; i++) { if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { return true; } @@ -543,15 +599,9 @@ var Typo = /** @class */ (function() { * @return {Boolean} */ Typo.prototype.hasFlag = function(word, flag, wordFlags) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } if (flag in this.flags) { if (typeof wordFlags === "undefined") { - wordFlags = Array.prototype.concat.apply( - [], - this.dictionaryTable[word] - ); + wordFlags = this.dictionaryTable[word]; } if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { return true; @@ -559,184 +609,6 @@ var Typo = /** @class */ (function() { } return false; }; - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ - Typo.prototype.suggest = function(word, limit) { - if (!this.loaded) { - throw "Dictionary not loaded."; - } - limit = limit || 5; - if (this.memoized.hasOwnProperty(word)) { - var memoizedLimit = this.memoized[word]["limit"]; - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if ( - limit <= memoizedLimit || - this.memoized[word]["suggestions"].length < memoizedLimit - ) { - return this.memoized[word]["suggestions"].slice(0, limit); - } - } - if (this.check(word)) return []; - // Check the replacement table. - for (var i = 0, _len = this.replacementTable.length; i < _len; i++) { - var replacementEntry = this.replacementTable[i]; - if (word.indexOf(replacementEntry[0]) !== -1) { - var correctedWord = word.replace( - replacementEntry[0], - replacementEntry[1] - ); - if (this.check(correctedWord)) { - return [correctedWord]; - } - } - } - /** - * Returns a hash keyed by all of the strings that can be made by making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool known_only Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, known_only) { - var rv = {}; - var i, j, _len, _jlen, _edit; - if (typeof words == "string") { - var word = words; - words = {}; - words[word] = true; - } - for (var word in words) { - for (i = 0, _len = word.length + 1; i < _len; i++) { - var s = [word.substring(0, i), word.substring(i)]; - if (s[1]) { - _edit = s[0] + s[1].substring(1); - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - _edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - if (s[1]) { - for (j = 0, _jlen = this.alphabet.length; j < _jlen; j++) { - // Eliminate replacement of a letter by itthis - if (this.alphabet[j] != s[1].substring(0, 1)) { - _edit = s[0] + this.alphabet[j] + s[1].substring(1); - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - } - } - if (s[1]) { - for (j = 0, _jlen = this.alphabet.length; j < _jlen; j++) { - _edit = s[0] + this.alphabet[j] + s[1]; - if (!known_only || this.check(_edit)) { - if (!(_edit in rv)) { - rv[_edit] = 1; - } else { - rv[_edit] += 1; - } - } - } - } - } - } - return rv; - } - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - var ed1 = edits1(word); - var ed2 = edits1(ed1, true); - // Sort the edits based on how many different ways they were created. - var weighted_corrections = ed2; - for (var ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } - if (ed1word in weighted_corrections) { - weighted_corrections[ed1word] += ed1[ed1word]; - } else { - weighted_corrections[ed1word] = ed1[ed1word]; - } - } - var sorted_corrections = []; - for (var i_1 in weighted_corrections) { - if (weighted_corrections.hasOwnProperty(i_1)) { - sorted_corrections.push([i_1, weighted_corrections[i_1]]); - } - } - function sorter(a, b) { - if (a[1] < b[1]) { - return -1; - } - // @todo If a and b are equally weighted, add our own weight based on something like the key locations on this language's default keyboard. - return 1; - } - sorted_corrections.sort(sorter).reverse(); - var rv = []; - var capitalization_scheme = "lowercase"; - if (word.toUpperCase() === word) { - capitalization_scheme = "uppercase"; - } else if ( - word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === - word - ) { - capitalization_scheme = "capitalized"; - } - var working_limit = limit; - for (i = 0; i < Math.min(working_limit, sorted_corrections.length); i++) { - if ("uppercase" === capitalization_scheme) { - sorted_corrections[i][0] = sorted_corrections[i][0].toUpperCase(); - } else if ("capitalized" === capitalization_scheme) { - sorted_corrections[i][0] = - sorted_corrections[i][0].substr(0, 1).toUpperCase() + - sorted_corrections[i][0].substr(1); - } - if ( - !this.hasFlag(sorted_corrections[i][0], "NOSUGGEST") && - rv.indexOf(sorted_corrections[i][0]) == -1 - ) { - rv.push(sorted_corrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion - // make sure we still return the right number of suggestions. - working_limit++; - } - } - return rv; - } - this.memoized[word] = { - suggestions: correct(word), - limit: limit - }; - return this.memoized[word]["suggestions"]; - }; Typo.DEFAULT_PATH = "dictionaries"; return Typo; })(); diff --git a/dist/typo.js.map b/dist/typo.js.map index 9d4d9b4..3967865 100644 --- a/dist/typo.js.map +++ b/dist/typo.js.map @@ -1 +1 @@ -{"version":3,"file":"typo.js","sourceRoot":"","sources":["../src/typo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC;AAoBzB;IAcI;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IACH,cACI,UAAmB,EACX,OAAgB,EAChB,SAAkB,EAClB,QAAwB;QAAxB,yBAAA,EAAA,aAAwB;QAFxB,YAAO,GAAP,OAAO,CAAS;QAChB,cAAS,GAAT,SAAS,CAAS;QAClB,aAAQ,GAAR,QAAQ,CAAgB;QA5C5B,UAAK,GAA4B,EAAE,CAAC;QACpC,oBAAe,GAAW,EAAE,CAAC;QAE7B,kBAAa,GAAe,EAAE,CAAC;QAC/B,sBAAiB,GAAmC,EAAE,CAAC;QACvD,qBAAgB,GAAe,EAAE,CAAC;QAClC,UAAK,GAA4B,EAAE,CAAC;QACpC,aAAQ,GAA4B,EAAE,CAAC;QAEvC,WAAM,GAAY,KAAK,CAAC;QAqC5B,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC;QAE7B,EAAE,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC;YACb,wDAAwD;YACxD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;gBACjC,IAAI,CAAC,KAAK,EAAE,CAAC;YACjB,CAAC;YACD,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC;gBAC/B,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC;YACxC,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;gBAChB,IAAI,CAAC,YAAY,CACb,IAAI,GAAG,GAAG,GAAG,UAAU,GAAG,GAAG,GAAG,UAAU,GAAG,MAAM,EACnD,IAAI,CAAC,UAAU,CAClB,CAAC;YACN,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;gBAClB,IAAI,CAAC,YAAY,CACb,IAAI,GAAG,GAAG,GAAG,UAAU,GAAG,GAAG,GAAG,UAAU,GAAG,MAAM,EACnD,IAAI,CAAC,YAAY,CACpB,CAAC;YACN,CAAC;QACL,CAAC;IACL,CAAC;IAEO,2BAAY,GAApB,UAAqB,GAAW,EAAE,OAAiC;QAC/D,IAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAEnE,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC;YAC1B,QAAQ,CAAC,IAAI,CAAC,UAAS,IAAY;gBAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC,CAAC,CAAC;QACP,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,OAAO,CAAC,QAAQ,CAAC,CAAC;QACtB,CAAC;IACL,CAAC;IAEO,yBAAU,GAAlB,UAAmB,IAAY;QAC3B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAEpB,EAAE,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YACjB,IAAI,CAAC,KAAK,EAAE,CAAC;QACjB,CAAC;IACL,CAAC;IAEO,2BAAY,GAApB,UAAqB,IAAY;QAC7B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QAEtB,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,KAAK,EAAE,CAAC;QACjB,CAAC;IACL,CAAC;IAEO,oBAAK,GAAb;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAE1C,uDAAuD;QACvD,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAE5B,IAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC;QACvC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC5B,IAAI,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;YAEjC,IAAM,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YAC1B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;YACzC,CAAC;QACL,CAAC;QAED,+EAA+E;QAC/E,uEAAuE;QACvE,EAAE,CAAC,CAAC,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,GAAG,EAAE,CAAC;QAClD,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAEtD,wEAAwE;QACxE,wEAAwE;QACxE,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YACnC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACrC,CAAC;QACL,CAAC;QAED,6DAA6D;QAC7D,iEAAiE;QACjE,+CAA+C;QAC/C,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,MAAI,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,MAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC9D,IAAI,QAAQ,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;YAErC,IAAI,cAAc,GAAG,EAAE,CAAC;YAExB,IAAM,KAAK,GAAG,QAAQ,CAAC,MAAM,CAAC;YAC9B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7B,IAAI,SAAS,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;gBAE5B,EAAE,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;oBACtC,cAAc;wBACV,GAAG,GAAG,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;gBAChE,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,cAAc,IAAI,SAAS,CAAC;gBAChC,CAAC;YACL,CAAC;YAED,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,IAAI,MAAM,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAC5D,CAAC;QAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,IAAI,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC;YAC1D,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QACvC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IAEK,uBAAQ,GAAhB,UACI,IAAY,EACZ,OAAsB,EACtB,SAAmB;QAEnB,OAAO,GAAG,OAAO,IAAI,MAAM,CAAC;QAE5B,EAAE,CAAC,CAAC,OAAO,cAAc,KAAK,WAAW,CAAC,CAAC,CAAC;YACxC,IAAI,OAAO,CAAC;YACZ,IAAI,GAAG,GAAG,IAAI,cAAc,EAAE,CAAC;YAC/B,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;YAEjC,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;gBACZ,OAAO,GAAG,IAAI,OAAO,CACjB,UACI,OAA8B,EAC9B,MAA6B;oBAE7B,GAAG,CAAC,MAAM,GAAG;wBACT,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,CAAC;4BACrB,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;wBAC9B,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;wBAC3B,CAAC;oBACL,CAAC,CAAC;oBAEF,GAAG,CAAC,OAAO,GAAG;wBACV,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;oBAC3B,CAAC,CAAC;gBACN,CAAC,CACJ,CAAC;YACN,CAAC;YAED,EAAE,CAAC,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACrB,GAAG,CAAC,gBAAgB,CAAC,sBAAsB,GAAG,OAAO,CAAC,CAAC;YAE3D,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAEf,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC;QAClD,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC;gBACD,EAAE,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oBACtB,IAAM,KAAK,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;oBAEhC,IAAM,cAAc,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;oBAE9C,IAAM,MAAM,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAEtC,EAAE,CAAC,QAAQ,CAAC,cAAc,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;oBAE5D,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;gBACtD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,CAAC,GAAG,CAAC,OAAO,GAAG,IAAI,GAAG,kBAAkB,CAAC,CAAC;gBACrD,CAAC;YACL,CAAC;YAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACT,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;gBACf,MAAM,CAAC,EAAE,CAAC;YACd,CAAC;QACL,CAAC;IACL,CAAC;IAED;;;;;OAKG;IAEH,wBAAS,GAAT,UAAU,IAAY;QAClB,IAAI,KAAK,GAAG,EAAE,CAAC;QAEf,IAAI,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,SAAS,CAAC;QACzC,IAAI,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;QAEtB,uBAAuB;QACvB,IAAI,GAAG,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAC;QAEvC,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAE7B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC7C,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEhB,IAAI,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAExC,IAAI,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAElC,EAAE,CAAC,CAAC,QAAQ,IAAI,KAAK,IAAI,QAAQ,IAAI,KAAK,CAAC,CAAC,CAAC;gBACzC,IAAI,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBAClC,IAAI,WAAW,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,IAAI,OAAO,GAAG,EAAE,CAAC;gBAEjB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oBACzD,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEnB,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBACjC,IAAI,kBAAkB,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAEtC,IAAI,aAAa,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oBAE5C,IAAI,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACvC,EAAE,CAAC,CAAC,eAAe,KAAK,GAAG,CAAC;wBAAC,eAAe,GAAG,EAAE,CAAC;oBAElD,IAAI,mBAAmB,GAAG,IAAI,CAAC,cAAc,CACzC,aAAa,CAAC,CAAC,CAAC,CACnB,CAAC;oBAEF,IAAI,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAEhC,IAAM,KAAK,GAAW,EAAE,CAAC;oBACzB,KAAK,CAAC,GAAG,GAAG,eAAe,CAAC;oBAE5B,EAAE,CAAC,CAAC,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC;wBAC/B,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;oBAEpD,EAAE,CAAC,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC;wBACjD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,CAAC;wBACjD,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,kBAAkB,IAAI,GAAG,CAAC,CAAC,CAAC;wBAC5B,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,kBAAkB,GAAG,GAAG,CAAC,CAAC;wBACxD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,MAAM,GAAG,kBAAkB,CAAC;wBACtC,CAAC;oBACL,CAAC;oBAED,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACxB,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,GAAG;oBACd,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,WAAW,IAAI,GAAG;oBAC/B,OAAO,EAAE,OAAO;iBACnB,CAAC;gBAEF,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,cAAc,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oBACzD,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEhB,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC9B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC5B,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAE9B,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;oBACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,iBAAiB;gBACjB,cAAc;gBACd,OAAO;gBACP,WAAW;gBACX,YAAY;gBAEZ,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEH,mCAAoB,GAApB,UAAqB,IAAY;QAC7B,kBAAkB;QAClB,8EAA8E;QAC9E,qEAAqE;QACrE,kFAAkF;QAClF,6CAA6C;QAC7C,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;QAEtC,iBAAiB;QACjB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QAE1D,sBAAsB;QACtB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAErC,yBAAyB;QACzB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAExD,MAAM,CAAC,IAAI,CAAC;IAChB,CAAC;IAED;;;;;;OAMG;IAEH,wBAAS,GAAT,UAAU,IAAY;QAClB,IAAI,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;QAErC,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC7B,IAAI,eAAe,GAAG,EAAE,CAAC;QAEzB,iBAAiB,IAAI,EAAE,KAAK;YACxB,qFAAqF;YACrF,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACjC,CAAC;YAED,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;oBACjC,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC/B,CAAC;gBAED,eAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,CAAC;QACL,CAAC;QAED,2DAA2D;QAC3D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACjD,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEpB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACR,sBAAsB;gBACtB,QAAQ,CAAC;YACb,CAAC;YAED,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YAE/B,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEpB,2DAA2D;YAC3D,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAI,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAEnD,mDAAmD;gBACnD,EAAE,CAAC,CACC,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC;oBAC5B,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,CACrD,CAAC,CAAC,CAAC;oBACC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;gBAClC,CAAC;gBAED,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC5D,IAAI,IAAI,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oBAE7B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAE5B,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;wBACP,IAAI,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;wBAE3C,GAAG,CAAC,CACA,IAAI,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC,MAAM,EACpC,EAAE,GAAG,MAAM,EACX,EAAE,EAAE,EACN,CAAC;4BACC,IAAI,OAAO,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;4BAE3B,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;4BAErB,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;gCACnB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;oCACjC,IAAI,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oCAEpC,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;oCAE1C,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;wCACd,EAAE,CAAC,CACC,WAAW,CAAC,WAAW;4CACvB,IAAI,CAAC,IAAI,IAAI,WAAW,CAAC,IAC7B,CAAC,CAAC,CAAC;4CACC,IAAI,aAAa,GAAG,IAAI,CAAC,UAAU,CAC/B,OAAO,EACP,WAAW,CACd,CAAC;4CAEF,GAAG,CAAC,CACA,IAAI,GAAG,GAAG,CAAC,EACP,OAAO,GACH,aAAa,CAAC,MAAM,EAC5B,GAAG,GAAG,OAAO,EACb,GAAG,EAAE,EACP,CAAC;gDACC,IAAI,YAAY,GACZ,aAAa,CAAC,GAAG,CAAC,CAAC;gDACvB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4CAC9B,CAAC;wCACL,CAAC;oCACL,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;wBACjC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC5C,CAAC;gBACL,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;YAC7B,CAAC;QACL,CAAC;QAED,MAAM,CAAC,eAAe,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IAEH,iCAAkB,GAAlB,UAAmB,IAAI;QACnB,wEAAwE;QACxE,kDAAkD;QAElD,kBAAkB;QAClB,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QAEpC,MAAM,CAAC,IAAI,CAAC;IAChB,CAAC;IAED,6BAAc,GAAd,UAAe,SAAS;QACpB,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;YACb,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACjC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAC/B,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC;YACpC,IAAI,KAAK,GAAG,EAAE,CAAC;YAEf,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;gBACxD,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvC,CAAC;YAED,MAAM,CAAC,KAAK,CAAC;QACjB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IAEH,yBAAU,GAAV,UAAW,IAAI,EAAE,IAAI;QACjB,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACnD,IAAI,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAEvB,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC1C,IAAI,OAAO,GAAG,IAAI,CAAC;gBAEnB,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;oBACf,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;gBAChD,CAAC;gBAED,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;oBACtB,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,OAAO,CAAC;gBAClC,CAAC;gBAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;gBAEvB,EAAE,CAAC,CAAC,qBAAqB,IAAI,KAAK,CAAC,CAAC,CAAC;oBACjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC,mBAAmB,CAAC,MAAM,EACnD,CAAC,GAAG,KAAK,EACT,CAAC,EAAE,EACL,CAAC;wBACC,IAAI,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAC7B,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAC/B,CAAC;wBAEF,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC;4BACnB,QAAQ,GAAG,QAAQ,CAAC,MAAM,CACtB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAC7C,CAAC;wBACN,CAAC;wBACD;;;;;;2BAMf;oBACW,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,QAAQ,CAAC;IACpB,CAAC;IAED;;;;;;;;;OASG;IAEH,oBAAK,GAAL,UAAM,KAAK;QACP,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,yCAAyC;QACzC,IAAI,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAEpE,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAED,2CAA2C;QAC3C,EAAE,CAAC,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC;YAC5C,0CAA0C;YAC1C,4CAA4C;YAC5C,IAAI,eAAe,GACf,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAE5D,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC5C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;gBACnC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,IAAI,aAAa,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;QAE9C,EAAE,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC,CAAC;YAChC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC1C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,6BAA6B;YAC7B,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;gBACjC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEH,yBAAU,GAAV,UAAW,IAAI;QACX,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,IAAI,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAE3C,IAAI,CAAC,EAAE,IAAI,CAAC;QAEZ,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;YACnC,0CAA0C;YAC1C,EAAE,CAAC,CACC,aAAa,IAAI,IAAI,CAAC,KAAK;gBAC3B,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,WAC9B,CAAC,CAAC,CAAC;gBACC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpC,MAAM,CAAC,IAAI,CAAC;oBAChB,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC;YAC5B,wEAAwE;YACxE,6DAA6D;YAC7D,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC;YACvC,wDAAwD;YACxD,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;gBACjD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACtD,MAAM,CAAC,IAAI,CAAC;gBAChB,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;OAMG;IAEH,sBAAO,GAAP,UAAQ,IAAI,EAAE,IAAI,EAAE,SAAU;QAC1B,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACrB,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;gBACnC,SAAS,GAAG,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,KAAK,CACpC,EAAE,EACF,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAC7B,CAAC;YACN,CAAC;YAED,EAAE,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEH,sBAAO,GAAP,UAAQ,IAAY,EAAE,KAAa;QAC/B,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACf,MAAM,wBAAwB,CAAC;QACnC,CAAC;QAED,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrC,IAAI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC;YAEjD,wFAAwF;YACxF,2BAA2B;YAC3B,EAAE,CAAC,CACC,KAAK,IAAI,aAAa;gBACtB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,CAAC,MAAM,GAAG,aAChD,CAAC,CAAC,CAAC;gBACC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;YAC9D,CAAC;QACL,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAAC,MAAM,CAAC,EAAE,CAAC;QAEhC,+BAA+B;QAC/B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;YAEhD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAI,aAAa,GAAG,IAAI,CAAC,OAAO,CAC5B,gBAAgB,CAAC,CAAC,CAAC,EACnB,gBAAgB,CAAC,CAAC,CAAC,CACtB,CAAC;gBAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;oBAC5B,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;gBAC3B,CAAC;YACL,CAAC;QACL,CAAC;QAED;;;;;;WAMG;QACH,gBAAgB,KAAK,EAAE,UAAW;YAC9B,IAAI,EAAE,GAAG,EAAE,CAAC;YAEZ,IAAI,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC;YAE7B,EAAE,CAAC,CAAC,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,CAAC;gBAC3B,IAAI,IAAI,GAAG,KAAK,CAAC;gBACjB,KAAK,GAAG,EAAE,CAAC;gBACX,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACvB,CAAC;YAED,GAAG,CAAC,CAAC,IAAI,IAAI,IAAI,KAAK,CAAC,CAAC,CAAC;gBACrB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAChD,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;oBAElD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEjC,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;4BACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;4BAClB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;4BACnB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,gDAAgD;oBAChD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACzC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAErD,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;4BACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;4BAClB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;4BACnB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACnC,CAAC,GAAG,KAAK,EACT,CAAC,EAAE,EACL,CAAC;4BACC,8CAA8C;4BAC9C,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;gCAC3C,KAAK;oCACD,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gCAEhD,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;oCACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;wCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oCAClB,CAAC;oCAAC,IAAI,CAAC,CAAC;wCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oCACnB,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACnC,CAAC,GAAG,KAAK,EACT,CAAC,EAAE,EACL,CAAC;4BACC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;4BAEvC,EAAE,CAAC,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gCACnC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;oCACjB,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gCAClB,CAAC;gCAAC,IAAI,CAAC,CAAC;oCACJ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;gCACnB,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;gBACL,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,iBAAiB,IAAI;YACjB,kEAAkE;YAClE,IAAI,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;YACvB,IAAI,GAAG,GAAG,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YAE5B,qEAAqE;YACrE,IAAI,oBAAoB,GAAG,GAAG,CAAC;YAE/B,GAAG,CAAC,CAAC,IAAI,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC;gBACtB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBACvB,QAAQ,CAAC;gBACb,CAAC;gBAED,EAAE,CAAC,CAAC,OAAO,IAAI,oBAAoB,CAAC,CAAC,CAAC;oBAClC,oBAAoB,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBAClD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,oBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;gBACjD,CAAC;YACL,CAAC;YAED,IAAI,kBAAkB,GAAG,EAAE,CAAC;YAE5B,GAAG,CAAC,CAAC,IAAI,GAAC,IAAI,oBAAoB,CAAC,CAAC,CAAC;gBACjC,EAAE,CAAC,CAAC,oBAAoB,CAAC,cAAc,CAAC,GAAC,CAAC,CAAC,CAAC,CAAC;oBACzC,kBAAkB,CAAC,IAAI,CAAC,CAAC,GAAC,EAAE,oBAAoB,CAAC,GAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,CAAC;YACL,CAAC;YAED,gBAAgB,CAAgB,EAAE,CAAgB;gBAC9C,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,MAAM,CAAC,CAAC,CAAC,CAAC;gBACd,CAAC;gBAED,2IAA2I;gBAE3I,MAAM,CAAC,CAAC,CAAC;YACb,CAAC;YAED,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC;YAE1C,IAAI,EAAE,GAAG,EAAE,CAAC;YAEZ,IAAI,qBAAqB,GAAG,WAAW,CAAC;YAExC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC9B,qBAAqB,GAAG,WAAW,CAAC;YACxC,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CACN,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;gBAC3B,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAChC,IACJ,CAAC,CAAC,CAAC;gBACC,qBAAqB,GAAG,aAAa,CAAC;YAC1C,CAAC;YAED,IAAI,aAAa,GAAW,KAAK,CAAC;YAElC,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EACL,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,aAAa,EAAE,kBAAkB,CAAC,MAAM,CAAC,EACtD,CAAC,EAAE,EACL,CAAC;gBACC,EAAE,CAAC,CAAC,WAAW,KAAK,qBAAqB,CAAC,CAAC,CAAC;oBACxC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,kBAAkB,CACzC,CAAC,CACJ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;gBACvB,CAAC;gBAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,KAAK,qBAAqB,CAAC,CAAC,CAAC;oBACjD,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpB,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;4BACnD,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC3C,CAAC;gBAED,EAAE,CAAC,CACC,CAAC,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC;oBACpD,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAC7C,CAAC,CAAC,CAAC;oBACC,EAAE,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACtC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,4DAA4D;oBAC5D,6DAA6D;oBAC7D,aAAa,EAAE,CAAC;gBACpB,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG;YAClB,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC;YAC1B,KAAK,EAAE,KAAK;SACf,CAAC;QAEF,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,CAAC;IAC9C,CAAC;IAr7Bc,iBAAY,GAAG,cAAc,CAAC;IAs7BjD,WAAC;CAAA,AAv7BD,IAu7BC;SAv7BY,IAAI"} \ No newline at end of file +{"version":3,"file":"typo.js","sourceRoot":"","sources":["../src/typo.ts"],"names":[],"mappings":"AAWA;IAYI;;;;;;OAMG;IACH,cACY,OAAe,EACf,SAAiB;QADjB,YAAO,GAAP,OAAO,CAAQ;QACf,cAAS,GAAT,SAAS,CAAQ;QAlBrB,UAAK,GAA4B,EAAE,CAAC;QACpC,oBAAe,GAAiC,EAAE,CAAC;QAEnD,kBAAa,GAAU,EAAE,CAAC;QAC1B,sBAAiB,GAAiC,EAAE,CAAC;QACrD,qBAAgB,GAAU,EAAE,CAAC;QAC7B,UAAK,GAA4B,EAAE,CAAC;QACpC,aAAQ,GAA4B,EAAE,CAAC;QAa3C,IAAI,CAAC,KAAK,EAAE,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,oBAAK,GAAZ,UAAa,KAAK;QACd,yCAAyC;QACzC,IAAM,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAEtE,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAED,2CAA2C;QACvC,EAAE,CAAC,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC;YAChD,0CAA0C;YAC1C,4CAA4C;YAC5C,IAAM,eAAe,GACjB,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAE5D,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC5C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;gBACnC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,IAAM,aAAa,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;QAEhD,EAAE,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC1C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,6BAA6B;YAC7B,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;gBACjC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,sBAAO,GAAd,UAAe,IAAY,EAAE,KAAa;QACtC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrC,IAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC;YAEhD,wFAAwF;YACxF,2BAA2B;YAC3B,EAAE,CAAC,CACC,KAAK,IAAI,aAAa;gBACtB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,MAAM,GAAG,aAC7C,CAAC,CAAC,CAAC;gBACC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;YAC3D,CAAC;QACL,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAAC,MAAM,CAAC,EAAE,CAAC;QAAC,CAAC;QAEpC,+BAA+B;QAC/B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/D,IAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;YAElD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAC9B,gBAAgB,CAAC,CAAC,CAAC,EACnB,gBAAgB,CAAC,CAAC,CAAC,CACtB,CAAC;gBAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;oBAC5B,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;gBAC3B,CAAC;YACL,CAAC;QACL,CAAC;QAED;;;;;;;WAOG;QACH,gBAAgB,KAAK,EAAE,SAAU;YAC7B,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,CAAC,CAAC;YACN,IAAI,CAAC,CAAC;YACN,IAAI,GAAG,CAAC;YACR,IAAI,IAAI,CAAC;YACT,IAAI,IAAI,CAAC;YAET,EAAE,CAAC,CAAC,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC;gBAC5B,IAAM,MAAI,GAAG,KAAK,CAAC;gBACnB,KAAK,GAAG,EAAE,CAAC;gBACX,KAAK,CAAC,MAAI,CAAC,GAAG,IAAI,CAAC;YACvB,CAAC;YAED,GAAG,CAAC,CAAe,UAAK,EAAL,eAAK,EAAL,mBAAK,EAAL,IAAK;gBAAnB,IAAM,MAAI,cAAA;gBACX,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC9C,IAAM,CAAC,GAAG,CAAC,MAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;oBAEpD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEhC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,gDAAgD;oBAChD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACzC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEpD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,8CAA8C;4BAC9C,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;gCAC5C,IAAI;oCACA,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gCAEhD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;wCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;oCACjB,CAAC;oCAAC,IAAI,CAAC,CAAC;wCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oCAClB,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;4BAEtC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;oCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gCACjB,CAAC;gCAAC,IAAI,CAAC,CAAC;oCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gCAClB,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;gBACL,CAAC;aACJ;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,iBAAiB,IAAI;YACjB,kEAAkE;YAClE,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;YACzB,IAAM,GAAG,GAAG,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YAE9B,qEAAqE;YACrE,IAAM,mBAAmB,GAAG,GAAG,CAAC;YAEhC,GAAG,CAAC,CAAC,IAAM,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC;gBACxB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBACvB,QAAQ,CAAC;gBACb,CAAC;gBAED,EAAE,CAAC,CAAC,OAAO,IAAI,mBAAmB,CAAC,CAAC,CAAC;oBACjC,mBAAmB,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBACjD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,mBAAmB,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;gBAChD,CAAC;YACL,CAAC;YAED,IAAM,iBAAiB,GAAG,EAAE,CAAC;YAE7B,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,mBAAmB,CAAC,CAAC,CAAC;gBAClC,EAAE,CAAC,CAAC,mBAAmB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACxC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACxD,CAAC;YACL,CAAC;YAED,gBAAgB,CAAW,EAAE,CAAW;gBACpC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,MAAM,CAAC,CAAC,CAAC,CAAC;gBACd,CAAC;gBAED,+EAA+E;gBAC/E,8DAA8D;gBAE9D,MAAM,CAAC,CAAC,CAAC;YACb,CAAC;YAED,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC;YAEzC,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,oBAAoB,GAAG,WAAW,CAAC;YAEvC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC9B,oBAAoB,GAAG,WAAW,CAAC;YACvC,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CACN,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;gBAC/B,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAChC,IACA,CAAC,CAAC,CAAC;gBACC,oBAAoB,GAAG,aAAa,CAAC;YACzC,CAAC;YAED,IAAI,YAAY,GAAW,KAAK,CAAC;YAEjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EACb,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,iBAAiB,CAAC,MAAM,CAAC,EACpD,CAAC,EAAE,EACD,CAAC;gBACC,EAAE,CAAC,CAAC,WAAW,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBACvC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CACvC,CAAC,CACJ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;gBACvB,CAAC;gBAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBAChD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACnB,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;4BAClD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,EAAE,CAAC,CACC,CAAC,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC;oBACnD,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAC7C,CAAC,CAAC,CAAC;oBACC,EAAE,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACrC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,4DAA4D;oBAC5D,6DAA6D;oBAC7D,YAAY,EAAE,CAAC;gBACnB,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG;YAClB,KAAK,OAAA;YACL,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC;SAC7B,CAAC;QAEF,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC;IAC3C,CAAC;IACO,oBAAK,GAAb;QAAA,iBAyCC;QAxCG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEzC,uDAAuD;QACvD,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAE5B,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAC,IAAI;YAC5B,IAAI,CAAC,OAAO,CAAC,UAAC,IAAI,IAAK,OAAA,KAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,EAAE,EAAjC,CAAiC,CAAC,CAAC;QAC9D,CAAC,CAAC,CAAC;QAEH,+EAA+E;QAC/E,uEAAuE;QACvE,EAAE,CAAC,CAAC,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,iBAAiB,CAAC,cAAc,GAAG,EAAE,CAAC;QAC/C,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAErD,wEAAwE;QACxE,wEAAwE;QACxE,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YACrC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACrC,CAAC;QACL,CAAC;QAED,6DAA6D;QAC7D,iEAAiE;QACjE,+CAA+C;QAC/C,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAC,QAAQ;YAE5B,IAAI,cAAc,GAAG,EAAE,CAAC;YAExB,QAAQ,CAAC,OAAO,CAAC,UAAC,SAAS;gBACvB,cAAc,IAAI,SAAS,IAAI,KAAI,CAAC,iBAAiB;oBACjD,CAAC,CAAC,GAAG,GAAG,KAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG;oBACzD,CAAC,CAAC,SAAS,CAAC;YACpB,CAAC,CAAC,CAAC;YACH,MAAM,CAAC,IAAI,MAAM,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IAEP,CAAC;IAED;;;;;OAKG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAM,KAAK,GAAG,EAAE,CAAC;QAEjB,IAAI,IAAI,CAAC;QACT,IAAI,OAAO,CAAC;QACZ,IAAI,UAAU,CAAC;QACf,IAAI,SAAS,CAAC;QACd,IAAI,CAAC,CAAC;QACN,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QACR,IAAI,IAAI,CAAC;QAET,uBAAuB;QACvB,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAEtC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAE/B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC3C,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEhB,IAAM,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAE1C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAEpC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,IAAI,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC3C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACpC,IAAM,WAAW,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACvC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,IAAM,OAAO,GAAG,EAAE,CAAC;gBAEnB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEnB,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBACjC,IAAM,kBAAkB,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAExC,IAAM,aAAa,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oBAE9C,IAAI,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACvC,EAAE,CAAC,CAAC,eAAe,KAAK,GAAG,CAAC,CAAC,CAAC;wBAAC,eAAe,GAAG,EAAE,CAAC;oBAAC,CAAC;oBAEtD,IAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,CAC3C,aAAa,CAAC,CAAC,CAAC,CACnB,CAAC;oBAEF,IAAM,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAElC,IAAM,KAAK,GAAW,EAAE,CAAC;oBACzB,KAAK,CAAC,GAAG,GAAG,eAAe,CAAC;oBAE5B,EAAE,CAAC,CAAC,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;wBACjC,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;oBACpD,CAAC;oBAED,EAAE,CAAC,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC;wBACjD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,CAAC;wBACjD,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,kBAAkB,KAAK,GAAG,CAAC,CAAC,CAAC;wBAC7B,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,kBAAkB,GAAG,GAAG,CAAC,CAAC;wBACxD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,MAAM,GAAG,kBAAkB,CAAC;wBACtC,CAAC;oBACL,CAAC;oBAED,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACxB,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,GAAG;oBACd,WAAW,EAAE,WAAW,KAAK,GAAG;oBAChC,OAAO,SAAA;oBACP,IAAI,EAAE,QAAQ;iBACjB,CAAC;gBAEF,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,cAAc,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEhB,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC9B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC5B,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAE9B,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;oBACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,iBAAiB;gBACjB,cAAc;gBACd,OAAO;gBACP,WAAW;gBACX,YAAY;gBAEZ,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEK,kCAAmB,GAA3B,UAA4B,IAAY;QACpC,kBAAkB;QAClB,8EAA8E;QAC9E,qEAAqE;QACrE,kFAAkF;QAClF,6CAA6C;QAC7C,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC;aAEpC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC;aAEjD,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC;aAExB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC7C,CAAC;IAED;;;;;;OAMG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAI,GAAG,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEpC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC/B,IAAM,eAAe,GAAG,EAAE,CAAC;QAE3B,iBAAiB,IAAI,EAAE,KAAK;YACxB,qFAAqF;YACrF,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACjC,CAAC;YAED,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;oBACjC,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC/B,CAAC;gBAED,eAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,CAAC;QACL,CAAC;QAED,2DAA2D;QAC3D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/C,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACR,sBAAsB;gBACtB,QAAQ,CAAC;YACb,CAAC;YAED,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YAEjC,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,2DAA2D;YAC3D,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAErD,mDAAmD;gBACnD,EAAE,CAAC,CACC,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC;oBAC5B,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,CACtD,CAAC,CAAC,CAAC;oBACC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;gBAClC,CAAC;gBAED,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,IAAM,IAAI,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oBAE/B,IAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAE9B,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;wBACP,IAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;wBAE7C,GAAG,CAAC,CACA,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC,MAAM,EACvC,EAAE,GAAG,KAAK,EACV,EAAE,EAAE,EACF,CAAC;4BACC,IAAM,OAAO,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;4BAE7B,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;4BAErB,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;gCACnB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oCAChC,IAAM,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oCAEtC,IAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;oCAE5C,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;wCACd,EAAE,CAAC,CACC,WAAW,CAAC,WAAW;4CACvB,IAAI,CAAC,IAAI,KAAK,WAAW,CAAC,IAC9B,CAAC,CAAC,CAAC;4CACC,IAAM,aAAa,GAAG,IAAI,CAAC,UAAU,CACjC,OAAO,EACP,WAAW,CACd,CAAC;4CAEF,GAAG,CAAC,CACA,IAAI,GAAG,GAAG,CAAC,EACX,MAAM,GACV,aAAa,CAAC,MAAM,EACpB,GAAG,GAAG,MAAM,EACZ,GAAG,EAAE,EACH,CAAC;gDACC,IAAM,YAAY,GACd,aAAa,CAAC,GAAG,CAAC,CAAC;gDACvB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4CAC9B,CAAC;wCACL,CAAC;oCACL,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;wBACjC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC5C,CAAC;gBACL,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;YAC7B,CAAC;QACL,CAAC;QAED,MAAM,CAAC,eAAe,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IAEK,gCAAiB,GAAzB,UAA0B,IAAI;QAC1B,wEAAwE;QACxE,kDAAkD;QAElD,kBAAkB;QAClB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACxC,CAAC;IAEO,6BAAc,GAAtB,UAAuB,SAAS;QAC5B,EAAE,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACjC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAC/B,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC;YACpC,IAAM,KAAK,GAAG,EAAE,CAAC;YAEjB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC3C,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvC,CAAC;YAED,MAAM,CAAC,KAAK,CAAC;QACjB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IAEK,yBAAU,GAAlB,UAAmB,IAAI,EAAE,IAAI;QACzB,IAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YACjD,IAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAEzB,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC1C,IAAI,OAAO,GAAG,IAAI,CAAC;gBAEnB,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;oBACf,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;gBAChD,CAAC;gBAED,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;oBACtB,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,OAAO,CAAC;gBAClC,CAAC;gBAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;gBAEvB,EAAE,CAAC,CAAC,qBAAqB,IAAI,KAAK,CAAC,CAAC,CAAC;oBACjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,mBAAmB,CAAC,MAAM,EACtD,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;wBACC,IAAM,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAC/B,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAC/B,CAAC;wBAEF,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC;4BACnB,QAAQ,GAAG,QAAQ,CAAC,MAAM,CACtB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAC7C,CAAC;wBACN,CAAC;wBACD;;;;;;2BAMG;oBACP,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,QAAQ,CAAC;IACpB,CAAC;IAED;;;;;OAKG;IAEK,yBAAU,GAAlB,UAAmB,IAAI;QACnB,IAAM,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAE7C,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QAER,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;YACnC,0CAA0C;YAC1C,EAAE,CAAC,CACC,aAAa,IAAI,IAAI,CAAC,KAAK;gBAC3B,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,WAC9B,CAAC,CAAC,CAAC;gBACC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBACxD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpC,MAAM,CAAC,IAAI,CAAC;oBAChB,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC;YAC5B,wEAAwE;YACxE,6DAA6D;YAC7D,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC;YACvC,wDAAwD;YACxD,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC/C,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACtD,MAAM,CAAC,IAAI,CAAC;gBAChB,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;OAMG;IAEK,sBAAO,GAAf,UAAgB,IAAI,EAAE,IAAI,EAAE,SAAU;QAClC,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACrB,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;gBACnC,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;YAED,EAAE,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QACD,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAhwBc,iBAAY,GAAG,cAAc,CAAC;IAiwBjD,WAAC;CAAA,AAlwBD,IAkwBC;SAlwBY,IAAI"} \ No newline at end of file diff --git a/src/typo.ts b/src/typo.ts index c226b9f..8425aa7 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -1,10 +1,7 @@ -import { Buffer } from "buffer"; -import * as fs from "fs"; /** * Typo is a Typescript port of a spellchecker using hunspell-style * dictionaries. */ - interface IEntry { add?: string; continuationClasses?: any; @@ -12,979 +9,774 @@ interface IEntry { remove?: any; } -interface ISettings { - dictionaryPath?: string; - flags?: { [flag: string]: any }; - asyncLoad?: boolean; - loadedCallback?: (typo: Typo) => void; -} - export class Typo { private static DEFAULT_PATH = "dictionaries"; private rules: { [rule: string]: any } = {}; - private dictionaryTable: { [word: string]: any } = {}; + private dictionaryTable: { [word: string]: string[] } = {}; private compoundRules: any[] = []; - private compoundRuleCodes: { [rule: string]: any[] } = {}; + private compoundRuleCodes: { [rule: string]: string[] } = {}; private replacementTable: any[] = []; private flags: { [flag: string]: any } = {}; private memoized: { [rule: string]: any } = {}; - private loaded: boolean = false; - /** * Typo constructor. * - * @param {String} [dictionary] The locale code of the dictionary being used. e.g., - * "en_US". This is only used to auto-load dictionaries. - * @param {String} [affData] The data from the dictionary's .aff file. If omitted - * and Typo.js is being used in a Chrome extension, the .aff - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].aff - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff - * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted - * and Typo.js is being used in a Chrome extension, the .dic - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].dic - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic - * @param {Object} [settings] Constructor settings. Available properties are: - * {String} [dictionaryPath]: path to load dictionary from in non-chrome - * environment. - * {Object} [flags]: flag information. - * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded - * asynchronously. - * {Function} [loadedCallback]: Called when both affData and wordsData - * have been loaded. Only used if asyncLoad is set to true. The parameter - * is the instantiated Typo object. + * @param {String} [affData] The data from the dictionary's .aff file. + * @param {String} [wordsData] The data from the dictionary's .dic file. * - * @returns {Typo} A Typo object. */ constructor( - dictionary?: string, - private affData?: string, - private wordsData?: string, - private settings: ISettings = {}, + private affData: string, + private wordsData: string, ) { - let path = Typo.DEFAULT_PATH; + this.setup(); + } - if (dictionary) { - // If the data is preloaded, just setup the Typo object. - if (this.affData && this.wordsData) { - this.setup(); - } - if (this.settings.dictionaryPath) { - path = this.settings.dictionaryPath; - } - if (!this.affData) { - this.readDataFile( - path + "/" + dictionary + "/" + dictionary + ".aff", - this.setAffData, - ); - } - if (!this.wordsData) { - this.readDataFile( - path + "/" + dictionary + "/" + dictionary + ".dic", - this.setWordsData, - ); - } - } - } + /** + * Checks whether a word or a capitalization variant exists in the current dictionary. + * The word is trimmed and several variations of capitalizations are checked. + * If you want to check a word without any changes made to it, call checkExact() + * + * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function + * + * @param {String} aWord The word to check. + * @returns {Boolean} + */ - private readDataFile(url: string, setFunc: ((data: string) => void)) { - const response = this.readFile(url, null, this.settings.asyncLoad); + public check(aWord) { + // Remove leading and trailing whitespace + const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - if (this.settings.asyncLoad) { - response.then((data: string) => { - setFunc(data); - }); - } else { - setFunc(response); - } - } + if (this.checkExact(trimmedWord)) { + return true; + } - private setAffData(data: string) { - this.affData = data; + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + const capitalizedWord = + trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - if (this.wordsData) { - this.setup(); - } + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; } - private setWordsData(data: string) { - this.wordsData = data; - - if (this.affData) { - this.setup(); - } + if (this.checkExact(capitalizedWord)) { + return true; } + } - private setup(): void { - this.rules = this.parseAFF(this.affData); - - // Save the rule codes that are used in compound rules. - this.compoundRuleCodes = {}; - - let len = this.compoundRules.length; - for (let i = 0; i < len; i++) { - const rule = this.compoundRules[i]; - - const jlen = rule.length; - for (let j = 0; j < jlen; j++) { - this.compoundRuleCodes[rule[j]] = []; - } - } - - // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in this.flags) { - this.compoundRuleCodes.ONLYINCOMPOUND = []; - } - - this.dictionaryTable = this.parseDIC(this.wordsData); + const lowercaseWord = trimmedWord.toLowerCase(); - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (const i in this.compoundRuleCodes) { - if (this.compoundRuleCodes[i].length === 0) { - delete this.compoundRuleCodes[i]; - } - } - - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - len = this.compoundRules.length; - for (let i = 0; i < len; i++) { - const ruleText = this.compoundRules[i]; + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } - let expressionText = ""; + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } + } - const jlen = ruleText.length; - for (let j = 0; j < jlen; j++) { - const character = ruleText[j]; + return false; + } - if (character in this.compoundRuleCodes) { - expressionText += - "(" + this.compoundRuleCodes[character].join("|") + ")"; - } else { - expressionText += character; - } - } + /** + * Returns a list of suggestions for a misspelled word. + * + * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. + * This suggestor is primitive, but it works. + * + * @param {String} word The misspelling. + * @param {Number} [limit=5] The maximum number of suggestions to return. + * @returns {String[]} The array of suggestions. + */ - this.compoundRules[i] = new RegExp(expressionText, "i"); - } + public suggest(word: string, limit: number): string[] { + limit = limit || 5; - this.loaded = true; + if (this.memoized.hasOwnProperty(word)) { + const memoizedLimit = this.memoized[word].limit; - if (this.settings.asyncLoad && this.settings.loadedCallback) { - this.settings.loadedCallback(this); + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if ( + limit <= memoizedLimit || + this.memoized[word].suggestions.length < memoizedLimit + ) { + return this.memoized[word].suggestions.slice(0, limit); } } - /** - * Read the contents of a file. - * - * @param {String} path The path (relative) to the file. - * @param {String} [charset="ISO8859-1"] The expected charset of the file - * @param {Boolean} async If true, the file will be read asynchronously. For node.js this does nothing, all - * files are read synchronously. - * @returns {String} The file data if async is false, otherwise a promise object. - * If running node.js, the data is - * always returned. - */ + if (this.check(word)) { return []; } - private readFile( - path: string, - charset: string | null, - asyncLoad?: boolean, - ) { - charset = charset || "utf8"; - - if (typeof XMLHttpRequest !== "undefined") { - let promise; - const req = new XMLHttpRequest(); - req.open("GET", path, asyncLoad); - - if (asyncLoad) { - promise = new Promise( - ( - resolve: (res: string) => void, - reject: (res: string) => void, - ) => { - req.onload = () => { - if (req.status === 200) { - resolve(req.responseText); - } else { - reject(req.statusText); - } - }; + // Check the replacement table. + for (let i = 0, len = this.replacementTable.length; i < len; i++) { + const replacementEntry = this.replacementTable[i]; - req.onerror = () => { - reject(req.statusText); - }; - }, - ); - } + if (word.indexOf(replacementEntry[0]) !== -1) { + const correctedWord = word.replace( + replacementEntry[0], + replacementEntry[1], + ); - if (req.overrideMimeType) { - req.overrideMimeType("text/plain; charset=" + charset); - } - - req.send(null); - - return asyncLoad ? promise : req.responseText; - } else { - try { - if (fs.existsSync(path)) { - const stats = fs.statSync(path); - - const fileDescriptor = fs.openSync(path, "r"); - - const buffer = new Buffer(stats.size); - - fs.readSync(fileDescriptor, buffer, 0, buffer.length, null); - - return buffer.toString(charset, 0, buffer.length); - } else { - // console.log("Path " + path + " does not exist."); - } - } catch (e) { - // console.log(e); - return ""; + if (this.check(correctedWord)) { + return [correctedWord]; } } } /** - * Parse the rules out from a .aff file. + * Returns a hash keyed by all of the strings that can be made by + * making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. * - * @param {String} data The contents of the affix file. - * @returns object The rules from the file. + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. */ + function edits1(words, knownOnly?) { + const rv = {}; - private parseAFF(data: string) { - const rules = {}; - - let line; - let subline; - let numEntries; - let lineParts; let i; let j; let len; let jlen; + let edit; - // Remove comment lines - data = this.removeAffixComments(data); - - const lines = data.split("\n"); - - for (i = 0, len = lines.length; i < len; i++) { - line = lines[i]; - - const definitionParts = line.split(/\s+/); - - const ruleType = definitionParts[0]; - - if (ruleType === "PFX" || ruleType === "SFX") { - const ruleCode = definitionParts[1]; - const combineable = definitionParts[2]; - numEntries = parseInt(definitionParts[3], 10); - - const entries = []; - - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - subline = lines[j]; - - lineParts = subline.split(/\s+/); - const charactersToRemove = lineParts[2]; - - const additionParts = lineParts[3].split("/"); - - let charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") { charactersToAdd = ""; } - - const continuationClasses = this.parseRuleCodes( - additionParts[1], - ); - - const regexToMatch = lineParts[4]; + if (typeof words === "string") { + const word = words; + words = {}; + words[word] = true; + } - const entry: IEntry = {}; - entry.add = charactersToAdd; + for (const word of words) { + for (i = 0, len = word.length + 1; i < len; i++) { + const s = [word.substring(0, i), word.substring(i)]; - if (continuationClasses.length > 0) { - entry.continuationClasses = continuationClasses; - } + if (s[1]) { + edit = s[0] + s[1].substring(1); - if (regexToMatch !== ".") { - if (ruleType === "SFX") { - entry.match = new RegExp(regexToMatch + "$"); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; } else { - entry.match = new RegExp("^" + regexToMatch); + rv[edit] += 1; } } + } + + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - if (charactersToRemove !== "0") { - if (ruleType === "SFX") { - entry.remove = new RegExp(charactersToRemove + "$"); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; } else { - entry.remove = charactersToRemove; + rv[edit] += 1; } } - - entries.push(entry); } - rules[ruleCode] = { - combineable: combineable === "Y", - entries, - type: ruleType, - }; - - i += numEntries; - } else if (ruleType === "COMPOUNDRULE") { - numEntries = parseInt(definitionParts[1], 10); - - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - line = lines[j]; + if (s[1]) { + for ( + j = 0, jlen = this.alphabet.length; + j < jlen; + j++ + ) { + // Eliminate replacement of a letter by itthis + if (this.alphabet[j] !== s[1].substring(0, 1)) { + edit = + s[0] + this.alphabet[j] + s[1].substring(1); - lineParts = line.split(/\s+/); - this.compoundRules.push(lineParts[1]); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } } - i += numEntries; - } else if (ruleType === "REP") { - lineParts = line.split(/\s+/); + if (s[1]) { + for ( + j = 0, jlen = this.alphabet.length; + j < jlen; + j++ + ) { + edit = s[0] + this.alphabet[j] + s[1]; - if (lineParts.length === 3) { - this.replacementTable.push([lineParts[1], lineParts[2]]); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } } - } else { - // ONLYINCOMPOUND - // COMPOUNDMIN - // FLAG - // KEEPCASE - // NEEDAFFIX - - this.flags[ruleType] = definitionParts[1]; } } - return rules; + return rv; } - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from an affix file. - * @return {String} The cleaned-up data. - */ - - private removeAffixComments(data: string) { - // Remove comments - // This used to remove any string starting with '#' up to the end of the line, - // but some COMPOUNDRULE definitions include '#' as part of the rule. - // I haven't seen any affix files that use comments on the same line as real data, - // so I don't think this will break anything. - data = data.replace(/^\s*#.*$/gm, ""); - - // Trim each line - data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); - - // Remove blank lines. - data = data.replace(/\n{2,}/g, "\n"); + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + const ed1 = edits1(word); + const ed2 = edits1(ed1, true); - // Trim the entire string - data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + // Sort the edits based on how many different ways they were created. + const weightedCorrections = ed2; - return data; - } - - /** - * Parses the words out from the .dic file. - * - * @param {String} data The data from the dictionary file. - * @returns object The lookup table containing all of the words and - * word forms from the dictionary. - */ - - private parseDIC(data: string) { - data = this.removeDicComments(data); - - const lines = data.split("\n"); - const dictionaryTable = {}; - - function addWord(word, rules) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!dictionaryTable.hasOwnProperty(word)) { - dictionaryTable[word] = null; + for (const ed1word in ed1) { + if (!this.check(ed1word)) { + continue; } - if (rules.length > 0) { - if (dictionaryTable[word] === null) { - dictionaryTable[word] = []; - } - - dictionaryTable[word].push(rules); + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; } } - // The first line is the number of words in the dictionary. - for (let i = 1, len = lines.length; i < len; i++) { - const line = lines[i]; + const sortedCorrections = []; - if (!line) { - // Ignore empty lines. - continue; + for (const i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([i, weightedCorrections[i]]); } + } - const parts = line.split("/", 2); - - const word = parts[0]; - - // Now for each affix rule, generate that form of the word. - if (parts.length > 1) { - const ruleCodesArray = this.parseRuleCodes(parts[1]); - - // Save the ruleCodes for compound word situations. - if ( - !("NEEDAFFIX" in this.flags) || - ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 - ) { - addWord(word, ruleCodesArray); - } - - for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { - const code = ruleCodesArray[j]; + function sorter(a: number[], b: number[]) { + if (a[1] < b[1]) { + return -1; + } - const rule = this.rules[code]; + // @todo If a and b are equally weighted, add our own weight based on something + // like the key locations on this language's default keyboard. - if (rule) { - const newWords = this._applyRule(word, rule); + return 1; + } - for ( - let ii = 0, iilen = newWords.length; - ii < iilen; - ii++ - ) { - const newWord = newWords[ii]; + sortedCorrections.sort(sorter).reverse(); - addWord(newWord, []); + const rv = []; - if (rule.combineable) { - for (let k = j + 1; k < jlen; k++) { - const combineCode = ruleCodesArray[k]; + let capitalizationScheme = "lowercase"; - const combineRule = this.rules[combineCode]; + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if ( + word.substr(0, 1).toUpperCase() + + word.substr(1).toLowerCase() === + word + ) { + capitalizationScheme = "capitalized"; + } - if (combineRule) { - if ( - combineRule.combineable && - rule.type !== combineRule.type - ) { - const otherNewWords = this._applyRule( - newWord, - combineRule, - ); - - for ( - let iii = 0, - iiilen = - otherNewWords.length; - iii < iiilen; - iii++ - ) { - const otherNewWord = - otherNewWords[iii]; - addWord(otherNewWord, []); - } - } - } - } - } - } - } + let workingLimit: number = limit; + + for ( + let i = 0; + i < Math.min(workingLimit, sortedCorrections.length); + i++ + ) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[ + i + ][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = + sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); + } - if (code in this.compoundRuleCodes) { - this.compoundRuleCodes[code].push(word); - } - } + if ( + !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && + rv.indexOf(sortedCorrections[i][0]) === -1 + ) { + rv.push(sortedCorrections[i][0]); } else { - addWord(word.trim(), []); + // If one of the corrections is not eligible as a suggestion + // make sure we still return the right number of suggestions. + workingLimit++; } } - return dictionaryTable; + return rv; } - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from a .dic file. - * @return {String} The cleaned-up data. - */ + this.memoized[word] = { + limit, + suggestions: correct(word), + }; + + return this.memoized[word].suggestions; + } + private setup(): void { + this.rules = this.parseAFF(this.affData); - private removeDicComments(data) { - // I can't find any official documentation on it, but at least the de_DE - // dictionary uses tab-indented lines as comments. + // Save the rule codes that are used in compound rules. + this.compoundRuleCodes = {}; - // Remove comments - data = data.replace(/^\t.*$/gm, ""); + this.compoundRules.forEach((rule) => { + rule.forEach((item) => this.compoundRuleCodes[item] = []); + }); - return data; + // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC + // will do the work of saving the list of words that are compound-only. + if ("ONLYINCOMPOUND" in this.flags) { + this.compoundRuleCodes.ONLYINCOMPOUND = []; } - private parseRuleCodes(textCodes) { - if (!textCodes) { - return []; - } else if (!("FLAG" in this.flags)) { - return textCodes.split(""); - } else if (this.flags.FLAG === "long") { - const flags = []; + this.dictionaryTable = this.parseDIC(this.wordsData); - for (let i = 0, len = textCodes.length; i < len; i += 2) { - flags.push(textCodes.substr(i, 2)); - } - - return flags; - } else if (this.flags.FLAG === "num") { - return textCodes.split(","); + // Get rid of any codes from the compound rule codes that are never used + // (or that were special regex characters). Not especially necessary... + for (const i in this.compoundRuleCodes) { + if (this.compoundRuleCodes[i].length === 0) { + delete this.compoundRuleCodes[i]; } } - /** - * Applies an affix rule to a word. - * - * @param {String} word The base word. - * @param {Object} rule The affix rule. - * @returns {String[]} The new words generated by the rule. - */ + // Build the full regular expressions for each compound rule. + // I have a feeling (but no confirmation yet) that this method of + // testing for compound words is probably slow. + this.compoundRules.map((ruleText) => { - private _applyRule(word, rule) { - const entries = rule.entries; - let newWords = []; + let expressionText = ""; - for (let i = 0, len = entries.length; i < len; i++) { - const entry = entries[i]; + ruleText.forEach((character) => { + expressionText += character in this.compoundRuleCodes + ? "(" + this.compoundRuleCodes[character].join("|") + ")" + : character; + }); + return new RegExp(expressionText, "i"); + }); - if (!entry.match || word.match(entry.match)) { - let newWord = word; + } - if (entry.remove) { - newWord = newWord.replace(entry.remove, ""); - } + /** + * Parse the rules out from a .aff file. + * + * @param {String} data The contents of the affix file. + * @returns object The rules from the file. + */ - if (rule.type === "SFX") { - newWord = newWord + entry.add; - } else { - newWord = entry.add + newWord; - } + private parseAFF(data: string) { + const rules = {}; - newWords.push(newWord); + let line; + let subline; + let numEntries; + let lineParts; + let i; + let j; + let len; + let jlen; - if ("continuationClasses" in entry) { - for ( - let j = 0, jlen = entry.continuationClasses.length; - j < jlen; - j++ - ) { - const continuationRule = this.rules[ - entry.continuationClasses[j] - ]; - - if (continuationRule) { - newWords = newWords.concat( - this._applyRule(newWord, continuationRule), - ); - } - /* - else { - // This shouldn't happen, but it does, at least in the de_DE dictionary. - // I think the author mistakenly supplied lower-case rule codes instead - // of upper-case. - } - */ - } - } - } - } + // Remove comment lines + data = this.removeAffixComments(data); - return newWords; - } + const lines = data.split("\n"); - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - - private check(aWord) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } + for (i = 0, len = lines.length; i < len; i++) { + line = lines[i]; - // Remove leading and trailing whitespace - const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - - if (this.checkExact(trimmedWord)) { - return true; - } + const definitionParts = line.split(/\s+/); - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - const capitalizedWord = - trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + const ruleType = definitionParts[0]; - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } + if (ruleType === "PFX" || ruleType === "SFX") { + const ruleCode = definitionParts[1]; + const combineable = definitionParts[2]; + numEntries = parseInt(definitionParts[3], 10); - if (this.checkExact(capitalizedWord)) { - return true; - } - } + const entries = []; - const lowercaseWord = trimmedWord.toLowerCase(); + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + subline = lines[j]; - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } + lineParts = subline.split(/\s+/); + const charactersToRemove = lineParts[2]; - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } - } + const additionParts = lineParts[3].split("/"); - return false; - } + let charactersToAdd = additionParts[0]; + if (charactersToAdd === "0") { charactersToAdd = ""; } - /** - * Checks whether a word exists in the current dictionary. - * - * @param {String} word The word to check. - * @returns {Boolean} - */ + const continuationClasses = this.parseRuleCodes( + additionParts[1], + ); - private checkExact(word) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } + const regexToMatch = lineParts[4]; - const ruleCodes = this.dictionaryTable[word]; + const entry: IEntry = {}; + entry.add = charactersToAdd; - let i; - let len; + if (continuationClasses.length > 0) { + entry.continuationClasses = continuationClasses; + } - if (typeof ruleCodes === "undefined") { - // Check if this might be a compound word. - if ( - "COMPOUNDMIN" in this.flags && - word.length >= this.flags.COMPOUNDMIN - ) { - for (i = 0, len = this.compoundRules.length; i < len; i++) { - if (word.match(this.compoundRules[i])) { - return true; + if (regexToMatch !== ".") { + if (ruleType === "SFX") { + entry.match = new RegExp(regexToMatch + "$"); + } else { + entry.match = new RegExp("^" + regexToMatch); } } - } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } else if (typeof ruleCodes === "object") { - // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, len = ruleCodes.length; i < len; i++) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { - return true; + + if (charactersToRemove !== "0") { + if (ruleType === "SFX") { + entry.remove = new RegExp(charactersToRemove + "$"); + } else { + entry.remove = charactersToRemove; + } } + + entries.push(entry); } - } - return false; - } + rules[ruleCode] = { + combineable: combineable === "Y", + entries, + type: ruleType, + }; - /** - * Looks up whether a given word is flagged with a given flag. - * - * @param {String} word The word in question. - * @param {String} flag The flag in question. - * @return {Boolean} - */ + i += numEntries; + } else if (ruleType === "COMPOUNDRULE") { + numEntries = parseInt(definitionParts[1], 10); - private hasFlag(word, flag, wordFlags?) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + line = lines[j]; - if (flag in this.flags) { - if (typeof wordFlags === "undefined") { - wordFlags = Array.prototype.concat.apply( - [], - this.dictionaryTable[word], - ); + lineParts = line.split(/\s+/); + this.compoundRules.push(lineParts[1]); } - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; + i += numEntries; + } else if (ruleType === "REP") { + lineParts = line.split(/\s+/); + + if (lineParts.length === 3) { + this.replacementTable.push([lineParts[1], lineParts[2]]); } - } + } else { + // ONLYINCOMPOUND + // COMPOUNDMIN + // FLAG + // KEEPCASE + // NEEDAFFIX - return false; + this.flags[ruleType] = definitionParts[1]; + } } - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ + return rules; + } - private suggest(word: string, limit: number): string[] { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from an affix file. + * @return {String} The cleaned-up data. + */ - limit = limit || 5; + private removeAffixComments(data: string) { + // Remove comments + // This used to remove any string starting with '#' up to the end of the line, + // but some COMPOUNDRULE definitions include '#' as part of the rule. + // I haven't seen any affix files that use comments on the same line as real data, + // so I don't think this will break anything. + return data.replace(/^\s*#.*$/gm, "") + // Trim each line + .replace(/^\s\s*/m, "").replace(/\s\s*$/m, "") + // Remove blank lines. + .replace(/\n{2,}/g, "\n") + // Trim the entire string + .replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + } - if (this.memoized.hasOwnProperty(word)) { - const memoizedLimit = this.memoized[word].limit; + /** + * Parses the words out from the .dic file. + * + * @param {String} data The data from the dictionary file. + * @returns object The lookup table containing all of the words and + * word forms from the dictionary. + */ - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if ( - limit <= memoizedLimit || - this.memoized[word].suggestions.length < memoizedLimit - ) { - return this.memoized[word].suggestions.slice(0, limit); - } + private parseDIC(data: string) { + data = this.removeDicComments(data); + + const lines = data.split("\n"); + const dictionaryTable = {}; + + function addWord(word, rules) { + // Some dictionaries will list the same word multiple times with different rule sets. + if (!dictionaryTable.hasOwnProperty(word)) { + dictionaryTable[word] = null; } - if (this.check(word)) { return []; } + if (rules.length > 0) { + if (dictionaryTable[word] === null) { + dictionaryTable[word] = []; + } - // Check the replacement table. - for (let i = 0, len = this.replacementTable.length; i < len; i++) { - const replacementEntry = this.replacementTable[i]; + dictionaryTable[word].push(rules); + } + } - if (word.indexOf(replacementEntry[0]) !== -1) { - const correctedWord = word.replace( - replacementEntry[0], - replacementEntry[1], - ); + // The first line is the number of words in the dictionary. + for (let i = 1, len = lines.length; i < len; i++) { + const line = lines[i]; - if (this.check(correctedWord)) { - return [correctedWord]; - } - } + if (!line) { + // Ignore empty lines. + continue; } - /** - * Returns a hash keyed by all of the strings that can be made by - * making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, knownOnly?) { - const rv = {}; - - let i; - let j; - let len; - let jlen; - let edit; - - if (typeof words === "string") { - const word = words; - words = {}; - words[word] = true; - } + const parts = line.split("/", 2); - for (const word of words) { - for (i = 0, len = word.length + 1; i < len; i++) { - const s = [word.substring(0, i), word.substring(i)]; + const word = parts[0]; - if (s[1]) { - edit = s[0] + s[1].substring(1); + // Now for each affix rule, generate that form of the word. + if (parts.length > 1) { + const ruleCodesArray = this.parseRuleCodes(parts[1]); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } + // Save the ruleCodes for compound word situations. + if ( + !("NEEDAFFIX" in this.flags) || + ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 + ) { + addWord(word, ruleCodesArray); + } - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { + const code = ruleCodesArray[j]; - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } + const rule = this.rules[code]; - if (s[1]) { - for ( - j = 0, jlen = this.alphabet.length; - j < jlen; - j++ - ) { - // Eliminate replacement of a letter by itthis - if (this.alphabet[j] !== s[1].substring(0, 1)) { - edit = - s[0] + this.alphabet[j] + s[1].substring(1); - - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; + if (rule) { + const newWords = this._applyRule(word, rule); + + for ( + let ii = 0, iilen = newWords.length; + ii < iilen; + ii++ + ) { + const newWord = newWords[ii]; + + addWord(newWord, []); + + if (rule.combineable) { + for (let k = j + 1; k < jlen; k++) { + const combineCode = ruleCodesArray[k]; + + const combineRule = this.rules[combineCode]; + + if (combineRule) { + if ( + combineRule.combineable && + rule.type !== combineRule.type + ) { + const otherNewWords = this._applyRule( + newWord, + combineRule, + ); + + for ( + let iii = 0, + iiilen = + otherNewWords.length; + iii < iiilen; + iii++ + ) { + const otherNewWord = + otherNewWords[iii]; + addWord(otherNewWord, []); + } } } } } } + } - if (s[1]) { - for ( - j = 0, jlen = this.alphabet.length; - j < jlen; - j++ - ) { - edit = s[0] + this.alphabet[j] + s[1]; - - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - } + if (code in this.compoundRuleCodes) { + this.compoundRuleCodes[code].push(word); } } - - return rv; + } else { + addWord(word.trim(), []); } + } - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - const ed1 = edits1(word); - const ed2 = edits1(ed1, true); + return dictionaryTable; + } - // Sort the edits based on how many different ways they were created. - const weightedCorrections = ed2; + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from a .dic file. + * @return {String} The cleaned-up data. + */ - for (const ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } + private removeDicComments(data) { + // I can't find any official documentation on it, but at least the de_DE + // dictionary uses tab-indented lines as comments. - if (ed1word in weightedCorrections) { - weightedCorrections[ed1word] += ed1[ed1word]; - } else { - weightedCorrections[ed1word] = ed1[ed1word]; - } - } + // Remove comments + return data.replace(/^\t.*$/gm, ""); + } - const sortedCorrections = []; + private parseRuleCodes(textCodes) { + if (textCodes == null) { + return []; + } else if (!("FLAG" in this.flags)) { + return textCodes.split(""); + } else if (this.flags.FLAG === "long") { + const flags = []; - for (const i in weightedCorrections) { - if (weightedCorrections.hasOwnProperty(i)) { - sortedCorrections.push([i, weightedCorrections[i]]); - } - } - - function sorter(a: number[], b: number[]) { - if (a[1] < b[1]) { - return -1; - } + for (let i = 0; i < textCodes.length; i += 2) { + flags.push(textCodes.substr(i, 2)); + } - // @todo If a and b are equally weighted, add our own weight based on something - // like the key locations on this language's default keyboard. + return flags; + } else if (this.flags.FLAG === "num") { + return textCodes.split(","); + } + } - return 1; - } + /** + * Applies an affix rule to a word. + * + * @param {String} word The base word. + * @param {Object} rule The affix rule. + * @returns {String[]} The new words generated by the rule. + */ - sortedCorrections.sort(sorter).reverse(); + private _applyRule(word, rule) { + const entries = rule.entries; + let newWords = []; - const rv = []; + for (let i = 0, len = entries.length; i < len; i++) { + const entry = entries[i]; - let capitalizationScheme = "lowercase"; + if (!entry.match || word.match(entry.match)) { + let newWord = word; - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if ( - word.substr(0, 1).toUpperCase() + - word.substr(1).toLowerCase() === - word - ) { - capitalizationScheme = "capitalized"; + if (entry.remove) { + newWord = newWord.replace(entry.remove, ""); } - let workingLimit: number = limit; + if (rule.type === "SFX") { + newWord = newWord + entry.add; + } else { + newWord = entry.add + newWord; + } - for ( - let i = 0; - i < Math.min(workingLimit, sortedCorrections.length); - i++ - ) { - if ("uppercase" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[ - i - ][0].toUpperCase(); - } else if ("capitalized" === capitalizationScheme) { - sortedCorrections[i][0] = - sortedCorrections[i][0].substr(0, 1).toUpperCase() + - sortedCorrections[i][0].substr(1); - } + newWords.push(newWord); - if ( - !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && - rv.indexOf(sortedCorrections[i][0]) === -1 + if ("continuationClasses" in entry) { + for ( + let j = 0, jlen = entry.continuationClasses.length; + j < jlen; + j++ ) { - rv.push(sortedCorrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion - // make sure we still return the right number of suggestions. - workingLimit++; + const continuationRule = this.rules[ + entry.continuationClasses[j] + ]; + + if (continuationRule) { + newWords = newWords.concat( + this._applyRule(newWord, continuationRule), + ); + } + /* + else { + // This shouldn't happen, but it does, at least in the de_DE dictionary. + // I think the author mistakenly supplied lower-case rule codes instead + // of upper-case. + } + */ } } + } + } + + return newWords; + } - return rv; + /** + * Checks whether a word exists in the current dictionary. + * + * @param {String} word The word to check. + * @returns {Boolean} + */ + + private checkExact(word) { + const ruleCodes = this.dictionaryTable[word]; + + let i; + let len; + + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ( + "COMPOUNDMIN" in this.flags && + word.length >= this.flags.COMPOUNDMIN + ) { + for (i = 0, len = this.compoundRules.length; i < len; i++) { + if (word.match(this.compoundRules[i])) { + return true; + } + } + } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { + // this.dictionary['hasOwnProperty'] will be a function. + for (i = 0, len = ruleCodes.length; i < len; i++) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { + return true; + } } + } + + return false; + } + + /** + * Looks up whether a given word is flagged with a given flag. + * + * @param {String} word The word in question. + * @param {String} flag The flag in question. + * @return {Boolean} + */ - this.memoized[word] = { - limit, - suggestions: correct(word), - }; + private hasFlag(word, flag, wordFlags?) { + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = this.dictionaryTable[word]; + } - return this.memoized[word].suggestions; + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } } + return false; + } } From f2b66883109846e81bdf025185b4e5f04b3d71cb Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 13:54:25 +0100 Subject: [PATCH 07/27] add dts file --- dist/typo.d.ts | 5 +++++ dist/typo.js | 4 +++- dist/typo.js.map | 2 +- package.json | 2 +- src/typo.ts | 11 ++++++++++- tsconfig.json | 1 - 6 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 dist/typo.d.ts diff --git a/dist/typo.d.ts b/dist/typo.d.ts new file mode 100644 index 0000000..4f46ea8 --- /dev/null +++ b/dist/typo.d.ts @@ -0,0 +1,5 @@ +export interface ITypo { + check(word: string): boolean; + suggest(word: string, limit?: number): string[]; +} +export declare function createTypo(affData: string, wordsData: string): ITypo; diff --git a/dist/typo.js b/dist/typo.js index 193a529..587077b 100644 --- a/dist/typo.js +++ b/dist/typo.js @@ -1,3 +1,6 @@ +export function createTypo(affData, wordsData) { + return new Typo(affData, wordsData); +} var Typo = /** @class */ (function() { /** * Typo constructor. @@ -612,5 +615,4 @@ var Typo = /** @class */ (function() { Typo.DEFAULT_PATH = "dictionaries"; return Typo; })(); -export { Typo }; //# sourceMappingURL=typo.js.map diff --git a/dist/typo.js.map b/dist/typo.js.map index 3967865..6b333f0 100644 --- a/dist/typo.js.map +++ b/dist/typo.js.map @@ -1 +1 @@ -{"version":3,"file":"typo.js","sourceRoot":"","sources":["../src/typo.ts"],"names":[],"mappings":"AAWA;IAYI;;;;;;OAMG;IACH,cACY,OAAe,EACf,SAAiB;QADjB,YAAO,GAAP,OAAO,CAAQ;QACf,cAAS,GAAT,SAAS,CAAQ;QAlBrB,UAAK,GAA4B,EAAE,CAAC;QACpC,oBAAe,GAAiC,EAAE,CAAC;QAEnD,kBAAa,GAAU,EAAE,CAAC;QAC1B,sBAAiB,GAAiC,EAAE,CAAC;QACrD,qBAAgB,GAAU,EAAE,CAAC;QAC7B,UAAK,GAA4B,EAAE,CAAC;QACpC,aAAQ,GAA4B,EAAE,CAAC;QAa3C,IAAI,CAAC,KAAK,EAAE,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,oBAAK,GAAZ,UAAa,KAAK;QACd,yCAAyC;QACzC,IAAM,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAEtE,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAED,2CAA2C;QACvC,EAAE,CAAC,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC;YAChD,0CAA0C;YAC1C,4CAA4C;YAC5C,IAAM,eAAe,GACjB,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAE5D,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC5C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;gBACnC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,IAAM,aAAa,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;QAEhD,EAAE,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC1C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,6BAA6B;YAC7B,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;gBACjC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,sBAAO,GAAd,UAAe,IAAY,EAAE,KAAa;QACtC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrC,IAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC;YAEhD,wFAAwF;YACxF,2BAA2B;YAC3B,EAAE,CAAC,CACC,KAAK,IAAI,aAAa;gBACtB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,MAAM,GAAG,aAC7C,CAAC,CAAC,CAAC;gBACC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;YAC3D,CAAC;QACL,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAAC,MAAM,CAAC,EAAE,CAAC;QAAC,CAAC;QAEpC,+BAA+B;QAC/B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/D,IAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;YAElD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAC9B,gBAAgB,CAAC,CAAC,CAAC,EACnB,gBAAgB,CAAC,CAAC,CAAC,CACtB,CAAC;gBAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;oBAC5B,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;gBAC3B,CAAC;YACL,CAAC;QACL,CAAC;QAED;;;;;;;WAOG;QACH,gBAAgB,KAAK,EAAE,SAAU;YAC7B,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,CAAC,CAAC;YACN,IAAI,CAAC,CAAC;YACN,IAAI,GAAG,CAAC;YACR,IAAI,IAAI,CAAC;YACT,IAAI,IAAI,CAAC;YAET,EAAE,CAAC,CAAC,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC;gBAC5B,IAAM,MAAI,GAAG,KAAK,CAAC;gBACnB,KAAK,GAAG,EAAE,CAAC;gBACX,KAAK,CAAC,MAAI,CAAC,GAAG,IAAI,CAAC;YACvB,CAAC;YAED,GAAG,CAAC,CAAe,UAAK,EAAL,eAAK,EAAL,mBAAK,EAAL,IAAK;gBAAnB,IAAM,MAAI,cAAA;gBACX,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC9C,IAAM,CAAC,GAAG,CAAC,MAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;oBAEpD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEhC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,gDAAgD;oBAChD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACzC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEpD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,8CAA8C;4BAC9C,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;gCAC5C,IAAI;oCACA,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gCAEhD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;wCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;oCACjB,CAAC;oCAAC,IAAI,CAAC,CAAC;wCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oCAClB,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;4BAEtC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;oCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gCACjB,CAAC;gCAAC,IAAI,CAAC,CAAC;oCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gCAClB,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;gBACL,CAAC;aACJ;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,iBAAiB,IAAI;YACjB,kEAAkE;YAClE,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;YACzB,IAAM,GAAG,GAAG,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YAE9B,qEAAqE;YACrE,IAAM,mBAAmB,GAAG,GAAG,CAAC;YAEhC,GAAG,CAAC,CAAC,IAAM,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC;gBACxB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBACvB,QAAQ,CAAC;gBACb,CAAC;gBAED,EAAE,CAAC,CAAC,OAAO,IAAI,mBAAmB,CAAC,CAAC,CAAC;oBACjC,mBAAmB,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBACjD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,mBAAmB,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;gBAChD,CAAC;YACL,CAAC;YAED,IAAM,iBAAiB,GAAG,EAAE,CAAC;YAE7B,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,mBAAmB,CAAC,CAAC,CAAC;gBAClC,EAAE,CAAC,CAAC,mBAAmB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACxC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACxD,CAAC;YACL,CAAC;YAED,gBAAgB,CAAW,EAAE,CAAW;gBACpC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,MAAM,CAAC,CAAC,CAAC,CAAC;gBACd,CAAC;gBAED,+EAA+E;gBAC/E,8DAA8D;gBAE9D,MAAM,CAAC,CAAC,CAAC;YACb,CAAC;YAED,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC;YAEzC,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,oBAAoB,GAAG,WAAW,CAAC;YAEvC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC9B,oBAAoB,GAAG,WAAW,CAAC;YACvC,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CACN,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;gBAC/B,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAChC,IACA,CAAC,CAAC,CAAC;gBACC,oBAAoB,GAAG,aAAa,CAAC;YACzC,CAAC;YAED,IAAI,YAAY,GAAW,KAAK,CAAC;YAEjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EACb,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,iBAAiB,CAAC,MAAM,CAAC,EACpD,CAAC,EAAE,EACD,CAAC;gBACC,EAAE,CAAC,CAAC,WAAW,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBACvC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CACvC,CAAC,CACJ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;gBACvB,CAAC;gBAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBAChD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACnB,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;4BAClD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,EAAE,CAAC,CACC,CAAC,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC;oBACnD,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAC7C,CAAC,CAAC,CAAC;oBACC,EAAE,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACrC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,4DAA4D;oBAC5D,6DAA6D;oBAC7D,YAAY,EAAE,CAAC;gBACnB,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG;YAClB,KAAK,OAAA;YACL,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC;SAC7B,CAAC;QAEF,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC;IAC3C,CAAC;IACO,oBAAK,GAAb;QAAA,iBAyCC;QAxCG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEzC,uDAAuD;QACvD,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAE5B,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAC,IAAI;YAC5B,IAAI,CAAC,OAAO,CAAC,UAAC,IAAI,IAAK,OAAA,KAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,EAAE,EAAjC,CAAiC,CAAC,CAAC;QAC9D,CAAC,CAAC,CAAC;QAEH,+EAA+E;QAC/E,uEAAuE;QACvE,EAAE,CAAC,CAAC,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,iBAAiB,CAAC,cAAc,GAAG,EAAE,CAAC;QAC/C,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAErD,wEAAwE;QACxE,wEAAwE;QACxE,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YACrC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACrC,CAAC;QACL,CAAC;QAED,6DAA6D;QAC7D,iEAAiE;QACjE,+CAA+C;QAC/C,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAC,QAAQ;YAE5B,IAAI,cAAc,GAAG,EAAE,CAAC;YAExB,QAAQ,CAAC,OAAO,CAAC,UAAC,SAAS;gBACvB,cAAc,IAAI,SAAS,IAAI,KAAI,CAAC,iBAAiB;oBACjD,CAAC,CAAC,GAAG,GAAG,KAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG;oBACzD,CAAC,CAAC,SAAS,CAAC;YACpB,CAAC,CAAC,CAAC;YACH,MAAM,CAAC,IAAI,MAAM,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IAEP,CAAC;IAED;;;;;OAKG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAM,KAAK,GAAG,EAAE,CAAC;QAEjB,IAAI,IAAI,CAAC;QACT,IAAI,OAAO,CAAC;QACZ,IAAI,UAAU,CAAC;QACf,IAAI,SAAS,CAAC;QACd,IAAI,CAAC,CAAC;QACN,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QACR,IAAI,IAAI,CAAC;QAET,uBAAuB;QACvB,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAEtC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAE/B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC3C,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEhB,IAAM,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAE1C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAEpC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,IAAI,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC3C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACpC,IAAM,WAAW,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACvC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,IAAM,OAAO,GAAG,EAAE,CAAC;gBAEnB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEnB,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBACjC,IAAM,kBAAkB,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAExC,IAAM,aAAa,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oBAE9C,IAAI,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACvC,EAAE,CAAC,CAAC,eAAe,KAAK,GAAG,CAAC,CAAC,CAAC;wBAAC,eAAe,GAAG,EAAE,CAAC;oBAAC,CAAC;oBAEtD,IAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,CAC3C,aAAa,CAAC,CAAC,CAAC,CACnB,CAAC;oBAEF,IAAM,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAElC,IAAM,KAAK,GAAW,EAAE,CAAC;oBACzB,KAAK,CAAC,GAAG,GAAG,eAAe,CAAC;oBAE5B,EAAE,CAAC,CAAC,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;wBACjC,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;oBACpD,CAAC;oBAED,EAAE,CAAC,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC;wBACjD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,CAAC;wBACjD,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,kBAAkB,KAAK,GAAG,CAAC,CAAC,CAAC;wBAC7B,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,kBAAkB,GAAG,GAAG,CAAC,CAAC;wBACxD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,MAAM,GAAG,kBAAkB,CAAC;wBACtC,CAAC;oBACL,CAAC;oBAED,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACxB,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,GAAG;oBACd,WAAW,EAAE,WAAW,KAAK,GAAG;oBAChC,OAAO,SAAA;oBACP,IAAI,EAAE,QAAQ;iBACjB,CAAC;gBAEF,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,cAAc,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEhB,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC9B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC5B,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAE9B,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;oBACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,iBAAiB;gBACjB,cAAc;gBACd,OAAO;gBACP,WAAW;gBACX,YAAY;gBAEZ,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEK,kCAAmB,GAA3B,UAA4B,IAAY;QACpC,kBAAkB;QAClB,8EAA8E;QAC9E,qEAAqE;QACrE,kFAAkF;QAClF,6CAA6C;QAC7C,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC;aAEpC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC;aAEjD,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC;aAExB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC7C,CAAC;IAED;;;;;;OAMG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAI,GAAG,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEpC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC/B,IAAM,eAAe,GAAG,EAAE,CAAC;QAE3B,iBAAiB,IAAI,EAAE,KAAK;YACxB,qFAAqF;YACrF,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACjC,CAAC;YAED,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;oBACjC,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC/B,CAAC;gBAED,eAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,CAAC;QACL,CAAC;QAED,2DAA2D;QAC3D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/C,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACR,sBAAsB;gBACtB,QAAQ,CAAC;YACb,CAAC;YAED,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YAEjC,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,2DAA2D;YAC3D,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAErD,mDAAmD;gBACnD,EAAE,CAAC,CACC,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC;oBAC5B,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,CACtD,CAAC,CAAC,CAAC;oBACC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;gBAClC,CAAC;gBAED,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,IAAM,IAAI,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oBAE/B,IAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAE9B,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;wBACP,IAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;wBAE7C,GAAG,CAAC,CACA,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC,MAAM,EACvC,EAAE,GAAG,KAAK,EACV,EAAE,EAAE,EACF,CAAC;4BACC,IAAM,OAAO,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;4BAE7B,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;4BAErB,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;gCACnB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oCAChC,IAAM,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oCAEtC,IAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;oCAE5C,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;wCACd,EAAE,CAAC,CACC,WAAW,CAAC,WAAW;4CACvB,IAAI,CAAC,IAAI,KAAK,WAAW,CAAC,IAC9B,CAAC,CAAC,CAAC;4CACC,IAAM,aAAa,GAAG,IAAI,CAAC,UAAU,CACjC,OAAO,EACP,WAAW,CACd,CAAC;4CAEF,GAAG,CAAC,CACA,IAAI,GAAG,GAAG,CAAC,EACX,MAAM,GACV,aAAa,CAAC,MAAM,EACpB,GAAG,GAAG,MAAM,EACZ,GAAG,EAAE,EACH,CAAC;gDACC,IAAM,YAAY,GACd,aAAa,CAAC,GAAG,CAAC,CAAC;gDACvB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4CAC9B,CAAC;wCACL,CAAC;oCACL,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;wBACjC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC5C,CAAC;gBACL,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;YAC7B,CAAC;QACL,CAAC;QAED,MAAM,CAAC,eAAe,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IAEK,gCAAiB,GAAzB,UAA0B,IAAI;QAC1B,wEAAwE;QACxE,kDAAkD;QAElD,kBAAkB;QAClB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACxC,CAAC;IAEO,6BAAc,GAAtB,UAAuB,SAAS;QAC5B,EAAE,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACjC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAC/B,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC;YACpC,IAAM,KAAK,GAAG,EAAE,CAAC;YAEjB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC3C,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvC,CAAC;YAED,MAAM,CAAC,KAAK,CAAC;QACjB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IAEK,yBAAU,GAAlB,UAAmB,IAAI,EAAE,IAAI;QACzB,IAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YACjD,IAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAEzB,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC1C,IAAI,OAAO,GAAG,IAAI,CAAC;gBAEnB,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;oBACf,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;gBAChD,CAAC;gBAED,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;oBACtB,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,OAAO,CAAC;gBAClC,CAAC;gBAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;gBAEvB,EAAE,CAAC,CAAC,qBAAqB,IAAI,KAAK,CAAC,CAAC,CAAC;oBACjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,mBAAmB,CAAC,MAAM,EACtD,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;wBACC,IAAM,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAC/B,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAC/B,CAAC;wBAEF,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC;4BACnB,QAAQ,GAAG,QAAQ,CAAC,MAAM,CACtB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAC7C,CAAC;wBACN,CAAC;wBACD;;;;;;2BAMG;oBACP,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,QAAQ,CAAC;IACpB,CAAC;IAED;;;;;OAKG;IAEK,yBAAU,GAAlB,UAAmB,IAAI;QACnB,IAAM,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAE7C,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QAER,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;YACnC,0CAA0C;YAC1C,EAAE,CAAC,CACC,aAAa,IAAI,IAAI,CAAC,KAAK;gBAC3B,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,WAC9B,CAAC,CAAC,CAAC;gBACC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBACxD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpC,MAAM,CAAC,IAAI,CAAC;oBAChB,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC;YAC5B,wEAAwE;YACxE,6DAA6D;YAC7D,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC;YACvC,wDAAwD;YACxD,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC/C,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACtD,MAAM,CAAC,IAAI,CAAC;gBAChB,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;OAMG;IAEK,sBAAO,GAAf,UAAgB,IAAI,EAAE,IAAI,EAAE,SAAU;QAClC,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACrB,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;gBACnC,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;YAED,EAAE,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QACD,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAhwBc,iBAAY,GAAG,cAAc,CAAC;IAiwBjD,WAAC;CAAA,AAlwBD,IAkwBC;SAlwBY,IAAI"} \ No newline at end of file +{"version":3,"file":"typo.js","sourceRoot":"","sources":["../src/typo.ts"],"names":[],"mappings":"AAgBA,MAAM,qBAAqB,OAAe,EAAE,SAAiB;IACzD,MAAM,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;AACxC,CAAC;AAED;IAYI;;;;;;OAMG;IACH,cACY,OAAe,EACf,SAAiB;QADjB,YAAO,GAAP,OAAO,CAAQ;QACf,cAAS,GAAT,SAAS,CAAQ;QAlBrB,UAAK,GAA4B,EAAE,CAAC;QACpC,oBAAe,GAAiC,EAAE,CAAC;QAEnD,kBAAa,GAAU,EAAE,CAAC;QAC1B,sBAAiB,GAAiC,EAAE,CAAC;QACrD,qBAAgB,GAAU,EAAE,CAAC;QAC7B,UAAK,GAA4B,EAAE,CAAC;QACpC,aAAQ,GAA4B,EAAE,CAAC;QAa3C,IAAI,CAAC,KAAK,EAAE,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,oBAAK,GAAZ,UAAa,KAAK;QACd,yCAAyC;QACzC,IAAM,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAEtE,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAED,2CAA2C;QACvC,EAAE,CAAC,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC;YAChD,0CAA0C;YAC1C,4CAA4C;YAC5C,IAAM,eAAe,GACjB,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAE5D,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC5C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;gBACnC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,IAAM,aAAa,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;QAEhD,EAAE,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC1C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,6BAA6B;YAC7B,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;gBACjC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,sBAAO,GAAd,UAAe,IAAY,EAAE,KAAa;QACtC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrC,IAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC;YAEhD,wFAAwF;YACxF,2BAA2B;YAC3B,EAAE,CAAC,CACC,KAAK,IAAI,aAAa;gBACtB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,MAAM,GAAG,aAC7C,CAAC,CAAC,CAAC;gBACC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;YAC3D,CAAC;QACL,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAAC,MAAM,CAAC,EAAE,CAAC;QAAC,CAAC;QAEpC,+BAA+B;QAC/B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/D,IAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;YAElD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAC9B,gBAAgB,CAAC,CAAC,CAAC,EACnB,gBAAgB,CAAC,CAAC,CAAC,CACtB,CAAC;gBAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;oBAC5B,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;gBAC3B,CAAC;YACL,CAAC;QACL,CAAC;QAED;;;;;;;WAOG;QACH,gBAAgB,KAAK,EAAE,SAAU;YAC7B,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,CAAC,CAAC;YACN,IAAI,CAAC,CAAC;YACN,IAAI,GAAG,CAAC;YACR,IAAI,IAAI,CAAC;YACT,IAAI,IAAI,CAAC;YAET,EAAE,CAAC,CAAC,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC;gBAC5B,IAAM,MAAI,GAAG,KAAK,CAAC;gBACnB,KAAK,GAAG,EAAE,CAAC;gBACX,KAAK,CAAC,MAAI,CAAC,GAAG,IAAI,CAAC;YACvB,CAAC;YAED,GAAG,CAAC,CAAe,UAAK,EAAL,eAAK,EAAL,mBAAK,EAAL,IAAK;gBAAnB,IAAM,MAAI,cAAA;gBACX,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC9C,IAAM,CAAC,GAAG,CAAC,MAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;oBAEpD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEhC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,gDAAgD;oBAChD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACzC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEpD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,8CAA8C;4BAC9C,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;gCAC5C,IAAI;oCACA,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gCAEhD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;wCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;oCACjB,CAAC;oCAAC,IAAI,CAAC,CAAC;wCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oCAClB,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;4BAEtC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;oCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gCACjB,CAAC;gCAAC,IAAI,CAAC,CAAC;oCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gCAClB,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;gBACL,CAAC;aACJ;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,iBAAiB,IAAI;YACjB,kEAAkE;YAClE,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;YACzB,IAAM,GAAG,GAAG,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YAE9B,qEAAqE;YACrE,IAAM,mBAAmB,GAAG,GAAG,CAAC;YAEhC,GAAG,CAAC,CAAC,IAAM,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC;gBACxB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBACvB,QAAQ,CAAC;gBACb,CAAC;gBAED,EAAE,CAAC,CAAC,OAAO,IAAI,mBAAmB,CAAC,CAAC,CAAC;oBACjC,mBAAmB,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBACjD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,mBAAmB,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;gBAChD,CAAC;YACL,CAAC;YAED,IAAM,iBAAiB,GAAG,EAAE,CAAC;YAE7B,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,mBAAmB,CAAC,CAAC,CAAC;gBAClC,EAAE,CAAC,CAAC,mBAAmB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACxC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACxD,CAAC;YACL,CAAC;YAED,gBAAgB,CAAW,EAAE,CAAW;gBACpC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,MAAM,CAAC,CAAC,CAAC,CAAC;gBACd,CAAC;gBAED,+EAA+E;gBAC/E,8DAA8D;gBAE9D,MAAM,CAAC,CAAC,CAAC;YACb,CAAC;YAED,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC;YAEzC,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,oBAAoB,GAAG,WAAW,CAAC;YAEvC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC9B,oBAAoB,GAAG,WAAW,CAAC;YACvC,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CACN,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;gBAC/B,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAChC,IACA,CAAC,CAAC,CAAC;gBACC,oBAAoB,GAAG,aAAa,CAAC;YACzC,CAAC;YAED,IAAI,YAAY,GAAW,KAAK,CAAC;YAEjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EACb,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,iBAAiB,CAAC,MAAM,CAAC,EACpD,CAAC,EAAE,EACD,CAAC;gBACC,EAAE,CAAC,CAAC,WAAW,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBACvC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CACvC,CAAC,CACJ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;gBACvB,CAAC;gBAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBAChD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACnB,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;4BAClD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,EAAE,CAAC,CACC,CAAC,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC;oBACnD,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAC7C,CAAC,CAAC,CAAC;oBACC,EAAE,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACrC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,4DAA4D;oBAC5D,6DAA6D;oBAC7D,YAAY,EAAE,CAAC;gBACnB,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG;YAClB,KAAK,OAAA;YACL,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC;SAC7B,CAAC;QAEF,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC;IAC3C,CAAC;IACO,oBAAK,GAAb;QAAA,iBAyCC;QAxCG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEzC,uDAAuD;QACvD,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAE5B,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAC,IAAI;YAC5B,IAAI,CAAC,OAAO,CAAC,UAAC,IAAI,IAAK,OAAA,KAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,EAAE,EAAjC,CAAiC,CAAC,CAAC;QAC9D,CAAC,CAAC,CAAC;QAEH,+EAA+E;QAC/E,uEAAuE;QACvE,EAAE,CAAC,CAAC,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,iBAAiB,CAAC,cAAc,GAAG,EAAE,CAAC;QAC/C,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAErD,wEAAwE;QACxE,wEAAwE;QACxE,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YACrC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACrC,CAAC;QACL,CAAC;QAED,6DAA6D;QAC7D,iEAAiE;QACjE,+CAA+C;QAC/C,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAC,QAAQ;YAE5B,IAAI,cAAc,GAAG,EAAE,CAAC;YAExB,QAAQ,CAAC,OAAO,CAAC,UAAC,SAAS;gBACvB,cAAc,IAAI,SAAS,IAAI,KAAI,CAAC,iBAAiB;oBACjD,CAAC,CAAC,GAAG,GAAG,KAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG;oBACzD,CAAC,CAAC,SAAS,CAAC;YACpB,CAAC,CAAC,CAAC;YACH,MAAM,CAAC,IAAI,MAAM,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IAEP,CAAC;IAED;;;;;OAKG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAM,KAAK,GAAG,EAAE,CAAC;QAEjB,IAAI,IAAI,CAAC;QACT,IAAI,OAAO,CAAC;QACZ,IAAI,UAAU,CAAC;QACf,IAAI,SAAS,CAAC;QACd,IAAI,CAAC,CAAC;QACN,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QACR,IAAI,IAAI,CAAC;QAET,uBAAuB;QACvB,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAEtC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAE/B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC3C,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEhB,IAAM,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAE1C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAEpC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,IAAI,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC3C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACpC,IAAM,WAAW,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACvC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,IAAM,OAAO,GAAG,EAAE,CAAC;gBAEnB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEnB,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBACjC,IAAM,kBAAkB,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAExC,IAAM,aAAa,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oBAE9C,IAAI,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACvC,EAAE,CAAC,CAAC,eAAe,KAAK,GAAG,CAAC,CAAC,CAAC;wBAAC,eAAe,GAAG,EAAE,CAAC;oBAAC,CAAC;oBAEtD,IAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,CAC3C,aAAa,CAAC,CAAC,CAAC,CACnB,CAAC;oBAEF,IAAM,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAElC,IAAM,KAAK,GAAW,EAAE,CAAC;oBACzB,KAAK,CAAC,GAAG,GAAG,eAAe,CAAC;oBAE5B,EAAE,CAAC,CAAC,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;wBACjC,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;oBACpD,CAAC;oBAED,EAAE,CAAC,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC;wBACjD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,CAAC;wBACjD,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,kBAAkB,KAAK,GAAG,CAAC,CAAC,CAAC;wBAC7B,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,kBAAkB,GAAG,GAAG,CAAC,CAAC;wBACxD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,MAAM,GAAG,kBAAkB,CAAC;wBACtC,CAAC;oBACL,CAAC;oBAED,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACxB,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,GAAG;oBACd,WAAW,EAAE,WAAW,KAAK,GAAG;oBAChC,OAAO,SAAA;oBACP,IAAI,EAAE,QAAQ;iBACjB,CAAC;gBAEF,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,cAAc,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEhB,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC9B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC5B,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAE9B,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;oBACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,iBAAiB;gBACjB,cAAc;gBACd,OAAO;gBACP,WAAW;gBACX,YAAY;gBAEZ,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEK,kCAAmB,GAA3B,UAA4B,IAAY;QACpC,kBAAkB;QAClB,8EAA8E;QAC9E,qEAAqE;QACrE,kFAAkF;QAClF,6CAA6C;QAC7C,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC;aAEpC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC;aAEjD,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC;aAExB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC7C,CAAC;IAED;;;;;;OAMG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAI,GAAG,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEpC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC/B,IAAM,eAAe,GAAG,EAAE,CAAC;QAE3B,iBAAiB,IAAI,EAAE,KAAK;YACxB,qFAAqF;YACrF,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACjC,CAAC;YAED,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;oBACjC,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC/B,CAAC;gBAED,eAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,CAAC;QACL,CAAC;QAED,2DAA2D;QAC3D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/C,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACR,sBAAsB;gBACtB,QAAQ,CAAC;YACb,CAAC;YAED,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YAEjC,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,2DAA2D;YAC3D,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAErD,mDAAmD;gBACnD,EAAE,CAAC,CACC,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC;oBAC5B,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,CACtD,CAAC,CAAC,CAAC;oBACC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;gBAClC,CAAC;gBAED,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,IAAM,IAAI,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oBAE/B,IAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAE9B,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;wBACP,IAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;wBAE7C,GAAG,CAAC,CACA,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC,MAAM,EACvC,EAAE,GAAG,KAAK,EACV,EAAE,EAAE,EACF,CAAC;4BACC,IAAM,OAAO,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;4BAE7B,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;4BAErB,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;gCACnB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oCAChC,IAAM,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oCAEtC,IAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;oCAE5C,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;wCACd,EAAE,CAAC,CACC,WAAW,CAAC,WAAW;4CACvB,IAAI,CAAC,IAAI,KAAK,WAAW,CAAC,IAC9B,CAAC,CAAC,CAAC;4CACC,IAAM,aAAa,GAAG,IAAI,CAAC,UAAU,CACjC,OAAO,EACP,WAAW,CACd,CAAC;4CAEF,GAAG,CAAC,CACA,IAAI,GAAG,GAAG,CAAC,EACX,MAAM,GACV,aAAa,CAAC,MAAM,EACpB,GAAG,GAAG,MAAM,EACZ,GAAG,EAAE,EACH,CAAC;gDACC,IAAM,YAAY,GACd,aAAa,CAAC,GAAG,CAAC,CAAC;gDACvB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4CAC9B,CAAC;wCACL,CAAC;oCACL,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;wBACjC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC5C,CAAC;gBACL,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;YAC7B,CAAC;QACL,CAAC;QAED,MAAM,CAAC,eAAe,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IAEK,gCAAiB,GAAzB,UAA0B,IAAI;QAC1B,wEAAwE;QACxE,kDAAkD;QAElD,kBAAkB;QAClB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACxC,CAAC;IAEO,6BAAc,GAAtB,UAAuB,SAAS;QAC5B,EAAE,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACjC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAC/B,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC;YACpC,IAAM,KAAK,GAAG,EAAE,CAAC;YAEjB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC3C,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvC,CAAC;YAED,MAAM,CAAC,KAAK,CAAC;QACjB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IAEK,yBAAU,GAAlB,UAAmB,IAAI,EAAE,IAAI;QACzB,IAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YACjD,IAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAEzB,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC1C,IAAI,OAAO,GAAG,IAAI,CAAC;gBAEnB,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;oBACf,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;gBAChD,CAAC;gBAED,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;oBACtB,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,OAAO,CAAC;gBAClC,CAAC;gBAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;gBAEvB,EAAE,CAAC,CAAC,qBAAqB,IAAI,KAAK,CAAC,CAAC,CAAC;oBACjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,mBAAmB,CAAC,MAAM,EACtD,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;wBACC,IAAM,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAC/B,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAC/B,CAAC;wBAEF,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC;4BACnB,QAAQ,GAAG,QAAQ,CAAC,MAAM,CACtB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAC7C,CAAC;wBACN,CAAC;wBACD;;;;;;2BAMG;oBACP,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,QAAQ,CAAC;IACpB,CAAC;IAED;;;;;OAKG;IAEK,yBAAU,GAAlB,UAAmB,IAAI;QACnB,IAAM,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAE7C,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QAER,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;YACnC,0CAA0C;YAC1C,EAAE,CAAC,CACC,aAAa,IAAI,IAAI,CAAC,KAAK;gBAC3B,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,WAC9B,CAAC,CAAC,CAAC;gBACC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBACxD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpC,MAAM,CAAC,IAAI,CAAC;oBAChB,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC;YAC5B,wEAAwE;YACxE,6DAA6D;YAC7D,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC;YACvC,wDAAwD;YACxD,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC/C,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACtD,MAAM,CAAC,IAAI,CAAC;gBAChB,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;OAMG;IAEK,sBAAO,GAAf,UAAgB,IAAI,EAAE,IAAI,EAAE,SAAU;QAClC,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACrB,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;gBACnC,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;YAED,EAAE,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QACD,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAhwBc,iBAAY,GAAG,cAAc,CAAC;IAiwBjD,WAAC;CAAA,AAlwBD,IAkwBC"} \ No newline at end of file diff --git a/package.json b/package.json index 6a1668f..9d5c2c5 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "license": "BSD-3-Clause", "homepage": "https://github.com/marcelorisoli/Typo.js#readme", "scripts": { - "build": "./node_modules/.bin/tsc", + "build": "./node_modules/.bin/tsc -d", "postinstall": "npm run build", "precommit": "lint-staged", "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}" diff --git a/src/typo.ts b/src/typo.ts index 8425aa7..bf063fa 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -9,7 +9,16 @@ interface IEntry { remove?: any; } -export class Typo { +export interface ITypo { + check(word: string): boolean; + suggest(word: string, limit?: number): string[]; +} + +export function createTypo(affData: string, wordsData: string): ITypo { + return new Typo(affData, wordsData); +} + +class Typo implements ITypo { private static DEFAULT_PATH = "dictionaries"; private rules: { [rule: string]: any } = {}; diff --git a/tsconfig.json b/tsconfig.json index 47d0ac8..08fbe41 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,6 @@ // "strictNullChecks": true, "module": "es6", "target": "es5", - "allowJs": true, "types": ["node"] }, "include": ["./src/"] From 87a91595897a2621902bf1208dbb1db31ae51cd3 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 13:56:30 +0100 Subject: [PATCH 08/27] remove typings dependency --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index 9d5c2c5..b24e299 100644 --- a/package.json +++ b/package.json @@ -20,9 +20,6 @@ "lint-staged": { "*.{js,json,css,md}": ["prettier --write", "git add"] }, - "dependencies": { - "@types/node": "^9.3.0" - }, "devDependencies": { "husky": "^0.14.3", "lint-staged": "^6.0.1", From 32768c0d58429b87d2bdac6d438f7c741dc9e256 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 13:59:17 +0100 Subject: [PATCH 09/27] remove postinstall script --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index b24e299..7e6b78d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typo-js", - "version": "1.0.4", + "version": "1.1.0", "main": "dist/typo.js", "description": "A Typescript port of Typo.js", "repository": { @@ -13,7 +13,6 @@ "homepage": "https://github.com/marcelorisoli/Typo.js#readme", "scripts": { "build": "./node_modules/.bin/tsc -d", - "postinstall": "npm run build", "precommit": "lint-staged", "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}" }, From ec547583cbc0253f60317b7b3f8c72a9d3fe9d2b Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 14:16:11 +0100 Subject: [PATCH 10/27] move dts to its own dir --- dist/{ => dts}/typo.d.ts | 0 package.json | 2 +- tsconfig.json | 2 ++ 3 files changed, 3 insertions(+), 1 deletion(-) rename dist/{ => dts}/typo.d.ts (100%) diff --git a/dist/typo.d.ts b/dist/dts/typo.d.ts similarity index 100% rename from dist/typo.d.ts rename to dist/dts/typo.d.ts diff --git a/package.json b/package.json index 7e6b78d..68aca3f 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "license": "BSD-3-Clause", "homepage": "https://github.com/marcelorisoli/Typo.js#readme", "scripts": { - "build": "./node_modules/.bin/tsc -d", + "build": "./node_modules/.bin/tsc", "precommit": "lint-staged", "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}" }, diff --git a/tsconfig.json b/tsconfig.json index 08fbe41..78ab160 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,8 @@ "compilerOptions": { "lib": ["dom", "es5", "es2015.core", "es2015.promise"], "outDir": "./dist/", + "declaration": true, + "declarationDir": "./dist/dts", "sourceMap": true, // "noImplicitAny": true, // "strictNullChecks": true, From 6c0b269920f54401e0ad02e4d5b47367eb3b7917 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 14:50:19 +0100 Subject: [PATCH 11/27] add google closure compiler --- .gitignore | 1 + concatenate.js | 47 ++++ dist/dts/typo.d.ts | 5 - dist/typo.js | 618 ------------------------------------------- dist/typo.js.map | 1 - package.json | 10 +- src/require-entry.ts | 9 + src/typo.ts | 6 + tsconfig.json | 12 +- 9 files changed, 74 insertions(+), 635 deletions(-) create mode 100644 concatenate.js delete mode 100644 dist/dts/typo.d.ts delete mode 100644 dist/typo.js delete mode 100644 dist/typo.js.map create mode 100644 src/require-entry.ts diff --git a/.gitignore b/.gitignore index c2658d7..b38db2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules/ +build/ diff --git a/concatenate.js b/concatenate.js new file mode 100644 index 0000000..f80d915 --- /dev/null +++ b/concatenate.js @@ -0,0 +1,47 @@ +#!/usr/bin/env node +"use strict"; +const spawnSync = require("child_process").spawnSync; +const COMPILER_PATH = require("google-closure-compiler").compiler.COMPILER_PATH; + +const args = ["-jar", COMPILER_PATH].concat(get_args()); +const result = spawnSync("java", args, { stdio: "inherit" }); +if (result.error) { + if (result.error.code === "ENOENT") { + console.error('Could not find "java" in your PATH.'); + } else { + console.error(result.error.message); + } + process.exit(1); +} else { + process.exit(result.status); +} + +function get_args() { + const entryPoint = process.argv[2]; + const outputFile = process.argv[3]; + + console.log("Entry point:", entryPoint); + console.log("Output:", outputFile); + + return [ + "--process_common_js_modules", + "--module_resolution", + "NODE", + "--dependency_mode", + "STRICT", + "--compilation_level", + "SIMPLE", + "--isolation_mode", + "IIFE", + "--language_in", + "ECMASCRIPT5_STRICT", + "--language_out", + "ECMASCRIPT5_STRICT", + "--entry_point", + entryPoint, + "--js_output_file", + outputFile, + "--js", + "build/ts/**.js" + ]; +} diff --git a/dist/dts/typo.d.ts b/dist/dts/typo.d.ts deleted file mode 100644 index 4f46ea8..0000000 --- a/dist/dts/typo.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -export interface ITypo { - check(word: string): boolean; - suggest(word: string, limit?: number): string[]; -} -export declare function createTypo(affData: string, wordsData: string): ITypo; diff --git a/dist/typo.js b/dist/typo.js deleted file mode 100644 index 587077b..0000000 --- a/dist/typo.js +++ /dev/null @@ -1,618 +0,0 @@ -export function createTypo(affData, wordsData) { - return new Typo(affData, wordsData); -} -var Typo = /** @class */ (function() { - /** - * Typo constructor. - * - * @param {String} [affData] The data from the dictionary's .aff file. - * @param {String} [wordsData] The data from the dictionary's .dic file. - * - */ - function Typo(affData, wordsData) { - this.affData = affData; - this.wordsData = wordsData; - this.rules = {}; - this.dictionaryTable = {}; - this.compoundRules = []; - this.compoundRuleCodes = {}; - this.replacementTable = []; - this.flags = {}; - this.memoized = {}; - this.setup(); - } - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - Typo.prototype.check = function(aWord) { - // Remove leading and trailing whitespace - var trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - if (this.checkExact(trimmedWord)) { - return true; - } - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - var capitalizedWord = - trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - if (this.checkExact(capitalizedWord)) { - return true; - } - } - var lowercaseWord = trimmedWord.toLowerCase(); - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } - } - return false; - }; - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ - Typo.prototype.suggest = function(word, limit) { - limit = limit || 5; - if (this.memoized.hasOwnProperty(word)) { - var memoizedLimit = this.memoized[word].limit; - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if ( - limit <= memoizedLimit || - this.memoized[word].suggestions.length < memoizedLimit - ) { - return this.memoized[word].suggestions.slice(0, limit); - } - } - if (this.check(word)) { - return []; - } - // Check the replacement table. - for (var i = 0, len = this.replacementTable.length; i < len; i++) { - var replacementEntry = this.replacementTable[i]; - if (word.indexOf(replacementEntry[0]) !== -1) { - var correctedWord = word.replace( - replacementEntry[0], - replacementEntry[1] - ); - if (this.check(correctedWord)) { - return [correctedWord]; - } - } - } - /** - * Returns a hash keyed by all of the strings that can be made by - * making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, knownOnly) { - var rv = {}; - var i; - var j; - var len; - var jlen; - var edit; - if (typeof words === "string") { - var word_1 = words; - words = {}; - words[word_1] = true; - } - for (var _i = 0, words_1 = words; _i < words_1.length; _i++) { - var word_2 = words_1[_i]; - for (i = 0, len = word_2.length + 1; i < len; i++) { - var s = [word_2.substring(0, i), word_2.substring(i)]; - if (s[1]) { - edit = s[0] + s[1].substring(1); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - if (s[1]) { - for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { - // Eliminate replacement of a letter by itthis - if (this.alphabet[j] !== s[1].substring(0, 1)) { - edit = s[0] + this.alphabet[j] + s[1].substring(1); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - } - } - if (s[1]) { - for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { - edit = s[0] + this.alphabet[j] + s[1]; - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - } - } - } - return rv; - } - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - var ed1 = edits1(word); - var ed2 = edits1(ed1, true); - // Sort the edits based on how many different ways they were created. - var weightedCorrections = ed2; - for (var ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } - if (ed1word in weightedCorrections) { - weightedCorrections[ed1word] += ed1[ed1word]; - } else { - weightedCorrections[ed1word] = ed1[ed1word]; - } - } - var sortedCorrections = []; - for (var i in weightedCorrections) { - if (weightedCorrections.hasOwnProperty(i)) { - sortedCorrections.push([i, weightedCorrections[i]]); - } - } - function sorter(a, b) { - if (a[1] < b[1]) { - return -1; - } - // @todo If a and b are equally weighted, add our own weight based on something - // like the key locations on this language's default keyboard. - return 1; - } - sortedCorrections.sort(sorter).reverse(); - var rv = []; - var capitalizationScheme = "lowercase"; - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if ( - word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === - word - ) { - capitalizationScheme = "capitalized"; - } - var workingLimit = limit; - for ( - var i = 0; - i < Math.min(workingLimit, sortedCorrections.length); - i++ - ) { - if ("uppercase" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); - } else if ("capitalized" === capitalizationScheme) { - sortedCorrections[i][0] = - sortedCorrections[i][0].substr(0, 1).toUpperCase() + - sortedCorrections[i][0].substr(1); - } - if ( - !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && - rv.indexOf(sortedCorrections[i][0]) === -1 - ) { - rv.push(sortedCorrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion - // make sure we still return the right number of suggestions. - workingLimit++; - } - } - return rv; - } - this.memoized[word] = { - limit: limit, - suggestions: correct(word) - }; - return this.memoized[word].suggestions; - }; - Typo.prototype.setup = function() { - var _this = this; - this.rules = this.parseAFF(this.affData); - // Save the rule codes that are used in compound rules. - this.compoundRuleCodes = {}; - this.compoundRules.forEach(function(rule) { - rule.forEach(function(item) { - return (_this.compoundRuleCodes[item] = []); - }); - }); - // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in this.flags) { - this.compoundRuleCodes.ONLYINCOMPOUND = []; - } - this.dictionaryTable = this.parseDIC(this.wordsData); - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (var i in this.compoundRuleCodes) { - if (this.compoundRuleCodes[i].length === 0) { - delete this.compoundRuleCodes[i]; - } - } - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - this.compoundRules.map(function(ruleText) { - var expressionText = ""; - ruleText.forEach(function(character) { - expressionText += - character in _this.compoundRuleCodes - ? "(" + _this.compoundRuleCodes[character].join("|") + ")" - : character; - }); - return new RegExp(expressionText, "i"); - }); - }; - /** - * Parse the rules out from a .aff file. - * - * @param {String} data The contents of the affix file. - * @returns object The rules from the file. - */ - Typo.prototype.parseAFF = function(data) { - var rules = {}; - var line; - var subline; - var numEntries; - var lineParts; - var i; - var j; - var len; - var jlen; - // Remove comment lines - data = this.removeAffixComments(data); - var lines = data.split("\n"); - for (i = 0, len = lines.length; i < len; i++) { - line = lines[i]; - var definitionParts = line.split(/\s+/); - var ruleType = definitionParts[0]; - if (ruleType === "PFX" || ruleType === "SFX") { - var ruleCode = definitionParts[1]; - var combineable = definitionParts[2]; - numEntries = parseInt(definitionParts[3], 10); - var entries = []; - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - subline = lines[j]; - lineParts = subline.split(/\s+/); - var charactersToRemove = lineParts[2]; - var additionParts = lineParts[3].split("/"); - var charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") { - charactersToAdd = ""; - } - var continuationClasses = this.parseRuleCodes(additionParts[1]); - var regexToMatch = lineParts[4]; - var entry = {}; - entry.add = charactersToAdd; - if (continuationClasses.length > 0) { - entry.continuationClasses = continuationClasses; - } - if (regexToMatch !== ".") { - if (ruleType === "SFX") { - entry.match = new RegExp(regexToMatch + "$"); - } else { - entry.match = new RegExp("^" + regexToMatch); - } - } - if (charactersToRemove !== "0") { - if (ruleType === "SFX") { - entry.remove = new RegExp(charactersToRemove + "$"); - } else { - entry.remove = charactersToRemove; - } - } - entries.push(entry); - } - rules[ruleCode] = { - combineable: combineable === "Y", - entries: entries, - type: ruleType - }; - i += numEntries; - } else if (ruleType === "COMPOUNDRULE") { - numEntries = parseInt(definitionParts[1], 10); - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - line = lines[j]; - lineParts = line.split(/\s+/); - this.compoundRules.push(lineParts[1]); - } - i += numEntries; - } else if (ruleType === "REP") { - lineParts = line.split(/\s+/); - if (lineParts.length === 3) { - this.replacementTable.push([lineParts[1], lineParts[2]]); - } - } else { - // ONLYINCOMPOUND - // COMPOUNDMIN - // FLAG - // KEEPCASE - // NEEDAFFIX - this.flags[ruleType] = definitionParts[1]; - } - } - return rules; - }; - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from an affix file. - * @return {String} The cleaned-up data. - */ - Typo.prototype.removeAffixComments = function(data) { - // Remove comments - // This used to remove any string starting with '#' up to the end of the line, - // but some COMPOUNDRULE definitions include '#' as part of the rule. - // I haven't seen any affix files that use comments on the same line as real data, - // so I don't think this will break anything. - return data - .replace(/^\s*#.*$/gm, "") - .replace(/^\s\s*/m, "") - .replace(/\s\s*$/m, "") - .replace(/\n{2,}/g, "\n") - .replace(/^\s\s*/, "") - .replace(/\s\s*$/, ""); - }; - /** - * Parses the words out from the .dic file. - * - * @param {String} data The data from the dictionary file. - * @returns object The lookup table containing all of the words and - * word forms from the dictionary. - */ - Typo.prototype.parseDIC = function(data) { - data = this.removeDicComments(data); - var lines = data.split("\n"); - var dictionaryTable = {}; - function addWord(word, rules) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!dictionaryTable.hasOwnProperty(word)) { - dictionaryTable[word] = null; - } - if (rules.length > 0) { - if (dictionaryTable[word] === null) { - dictionaryTable[word] = []; - } - dictionaryTable[word].push(rules); - } - } - // The first line is the number of words in the dictionary. - for (var i = 1, len = lines.length; i < len; i++) { - var line = lines[i]; - if (!line) { - // Ignore empty lines. - continue; - } - var parts = line.split("/", 2); - var word = parts[0]; - // Now for each affix rule, generate that form of the word. - if (parts.length > 1) { - var ruleCodesArray = this.parseRuleCodes(parts[1]); - // Save the ruleCodes for compound word situations. - if ( - !("NEEDAFFIX" in this.flags) || - ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 - ) { - addWord(word, ruleCodesArray); - } - for (var j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { - var code = ruleCodesArray[j]; - var rule = this.rules[code]; - if (rule) { - var newWords = this._applyRule(word, rule); - for (var ii = 0, iilen = newWords.length; ii < iilen; ii++) { - var newWord = newWords[ii]; - addWord(newWord, []); - if (rule.combineable) { - for (var k = j + 1; k < jlen; k++) { - var combineCode = ruleCodesArray[k]; - var combineRule = this.rules[combineCode]; - if (combineRule) { - if ( - combineRule.combineable && - rule.type !== combineRule.type - ) { - var otherNewWords = this._applyRule(newWord, combineRule); - for ( - var iii = 0, iiilen = otherNewWords.length; - iii < iiilen; - iii++ - ) { - var otherNewWord = otherNewWords[iii]; - addWord(otherNewWord, []); - } - } - } - } - } - } - } - if (code in this.compoundRuleCodes) { - this.compoundRuleCodes[code].push(word); - } - } - } else { - addWord(word.trim(), []); - } - } - return dictionaryTable; - }; - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from a .dic file. - * @return {String} The cleaned-up data. - */ - Typo.prototype.removeDicComments = function(data) { - // I can't find any official documentation on it, but at least the de_DE - // dictionary uses tab-indented lines as comments. - // Remove comments - return data.replace(/^\t.*$/gm, ""); - }; - Typo.prototype.parseRuleCodes = function(textCodes) { - if (textCodes == null) { - return []; - } else if (!("FLAG" in this.flags)) { - return textCodes.split(""); - } else if (this.flags.FLAG === "long") { - var flags = []; - for (var i = 0; i < textCodes.length; i += 2) { - flags.push(textCodes.substr(i, 2)); - } - return flags; - } else if (this.flags.FLAG === "num") { - return textCodes.split(","); - } - }; - /** - * Applies an affix rule to a word. - * - * @param {String} word The base word. - * @param {Object} rule The affix rule. - * @returns {String[]} The new words generated by the rule. - */ - Typo.prototype._applyRule = function(word, rule) { - var entries = rule.entries; - var newWords = []; - for (var i = 0, len = entries.length; i < len; i++) { - var entry = entries[i]; - if (!entry.match || word.match(entry.match)) { - var newWord = word; - if (entry.remove) { - newWord = newWord.replace(entry.remove, ""); - } - if (rule.type === "SFX") { - newWord = newWord + entry.add; - } else { - newWord = entry.add + newWord; - } - newWords.push(newWord); - if ("continuationClasses" in entry) { - for ( - var j = 0, jlen = entry.continuationClasses.length; - j < jlen; - j++ - ) { - var continuationRule = this.rules[entry.continuationClasses[j]]; - if (continuationRule) { - newWords = newWords.concat( - this._applyRule(newWord, continuationRule) - ); - } - /* - else { - // This shouldn't happen, but it does, at least in the de_DE dictionary. - // I think the author mistakenly supplied lower-case rule codes instead - // of upper-case. - } - */ - } - } - } - } - return newWords; - }; - /** - * Checks whether a word exists in the current dictionary. - * - * @param {String} word The word to check. - * @returns {Boolean} - */ - Typo.prototype.checkExact = function(word) { - var ruleCodes = this.dictionaryTable[word]; - var i; - var len; - if (typeof ruleCodes === "undefined") { - // Check if this might be a compound word. - if ( - "COMPOUNDMIN" in this.flags && - word.length >= this.flags.COMPOUNDMIN - ) { - for (i = 0, len = this.compoundRules.length; i < len; i++) { - if (word.match(this.compoundRules[i])) { - return true; - } - } - } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } else if (typeof ruleCodes === "object") { - // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, len = ruleCodes.length; i < len; i++) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { - return true; - } - } - } - return false; - }; - /** - * Looks up whether a given word is flagged with a given flag. - * - * @param {String} word The word in question. - * @param {String} flag The flag in question. - * @return {Boolean} - */ - Typo.prototype.hasFlag = function(word, flag, wordFlags) { - if (flag in this.flags) { - if (typeof wordFlags === "undefined") { - wordFlags = this.dictionaryTable[word]; - } - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } - } - return false; - }; - Typo.DEFAULT_PATH = "dictionaries"; - return Typo; -})(); -//# sourceMappingURL=typo.js.map diff --git a/dist/typo.js.map b/dist/typo.js.map deleted file mode 100644 index 6b333f0..0000000 --- a/dist/typo.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"typo.js","sourceRoot":"","sources":["../src/typo.ts"],"names":[],"mappings":"AAgBA,MAAM,qBAAqB,OAAe,EAAE,SAAiB;IACzD,MAAM,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;AACxC,CAAC;AAED;IAYI;;;;;;OAMG;IACH,cACY,OAAe,EACf,SAAiB;QADjB,YAAO,GAAP,OAAO,CAAQ;QACf,cAAS,GAAT,SAAS,CAAQ;QAlBrB,UAAK,GAA4B,EAAE,CAAC;QACpC,oBAAe,GAAiC,EAAE,CAAC;QAEnD,kBAAa,GAAU,EAAE,CAAC;QAC1B,sBAAiB,GAAiC,EAAE,CAAC;QACrD,qBAAgB,GAAU,EAAE,CAAC;QAC7B,UAAK,GAA4B,EAAE,CAAC;QACpC,aAAQ,GAA4B,EAAE,CAAC;QAa3C,IAAI,CAAC,KAAK,EAAE,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,oBAAK,GAAZ,UAAa,KAAK;QACd,yCAAyC;QACzC,IAAM,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;QAEtE,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAED,2CAA2C;QACvC,EAAE,CAAC,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC;YAChD,0CAA0C;YAC1C,4CAA4C;YAC5C,IAAM,eAAe,GACjB,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAE5D,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC5C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;gBACnC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,IAAM,aAAa,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;QAEhD,EAAE,CAAC,CAAC,aAAa,KAAK,WAAW,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;gBAC1C,yDAAyD;gBACzD,MAAM,CAAC,KAAK,CAAC;YACjB,CAAC;YAED,6BAA6B;YAC7B,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;gBACjC,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAEG,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;;;;OASG;IAEI,sBAAO,GAAd,UAAe,IAAY,EAAE,KAAa;QACtC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QAEnB,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrC,IAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC;YAEhD,wFAAwF;YACxF,2BAA2B;YAC3B,EAAE,CAAC,CACC,KAAK,IAAI,aAAa;gBACtB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,MAAM,GAAG,aAC7C,CAAC,CAAC,CAAC;gBACC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;YAC3D,CAAC;QACL,CAAC;QAED,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAAC,MAAM,CAAC,EAAE,CAAC;QAAC,CAAC;QAEpC,+BAA+B;QAC/B,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/D,IAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;YAElD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAC9B,gBAAgB,CAAC,CAAC,CAAC,EACnB,gBAAgB,CAAC,CAAC,CAAC,CACtB,CAAC;gBAEF,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;oBAC5B,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;gBAC3B,CAAC;YACL,CAAC;QACL,CAAC;QAED;;;;;;;WAOG;QACH,gBAAgB,KAAK,EAAE,SAAU;YAC7B,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,CAAC,CAAC;YACN,IAAI,CAAC,CAAC;YACN,IAAI,GAAG,CAAC;YACR,IAAI,IAAI,CAAC;YACT,IAAI,IAAI,CAAC;YAET,EAAE,CAAC,CAAC,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC;gBAC5B,IAAM,MAAI,GAAG,KAAK,CAAC;gBACnB,KAAK,GAAG,EAAE,CAAC;gBACX,KAAK,CAAC,MAAI,CAAC,GAAG,IAAI,CAAC;YACvB,CAAC;YAED,GAAG,CAAC,CAAe,UAAK,EAAL,eAAK,EAAL,mBAAK,EAAL,IAAK;gBAAnB,IAAM,MAAI,cAAA;gBACX,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,MAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC9C,IAAM,CAAC,GAAG,CAAC,MAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;oBAEpD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEhC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,gDAAgD;oBAChD,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACzC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;wBAEpD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;4BACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;gCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;4BACjB,CAAC;4BAAC,IAAI,CAAC,CAAC;gCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;4BAClB,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,8CAA8C;4BAC9C,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;gCAC5C,IAAI;oCACA,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;gCAEhD,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;wCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;oCACjB,CAAC;oCAAC,IAAI,CAAC,CAAC;wCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oCAClB,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACP,GAAG,CAAC,CACA,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EACtC,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;4BACC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;4BAEtC,EAAE,CAAC,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gCACjC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;oCAChB,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gCACjB,CAAC;gCAAC,IAAI,CAAC,CAAC;oCACJ,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gCAClB,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;gBACL,CAAC;aACJ;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,iBAAiB,IAAI;YACjB,kEAAkE;YAClE,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;YACzB,IAAM,GAAG,GAAG,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YAE9B,qEAAqE;YACrE,IAAM,mBAAmB,GAAG,GAAG,CAAC;YAEhC,GAAG,CAAC,CAAC,IAAM,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC;gBACxB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBACvB,QAAQ,CAAC;gBACb,CAAC;gBAED,EAAE,CAAC,CAAC,OAAO,IAAI,mBAAmB,CAAC,CAAC,CAAC;oBACjC,mBAAmB,CAAC,OAAO,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;gBACjD,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,mBAAmB,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;gBAChD,CAAC;YACL,CAAC;YAED,IAAM,iBAAiB,GAAG,EAAE,CAAC;YAE7B,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,mBAAmB,CAAC,CAAC,CAAC;gBAClC,EAAE,CAAC,CAAC,mBAAmB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACxC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACxD,CAAC;YACL,CAAC;YAED,gBAAgB,CAAW,EAAE,CAAW;gBACpC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,MAAM,CAAC,CAAC,CAAC,CAAC;gBACd,CAAC;gBAED,+EAA+E;gBAC/E,8DAA8D;gBAE9D,MAAM,CAAC,CAAC,CAAC;YACb,CAAC;YAED,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC;YAEzC,IAAM,EAAE,GAAG,EAAE,CAAC;YAEd,IAAI,oBAAoB,GAAG,WAAW,CAAC;YAEvC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC9B,oBAAoB,GAAG,WAAW,CAAC;YACvC,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CACN,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;gBAC/B,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAChC,IACA,CAAC,CAAC,CAAC;gBACC,oBAAoB,GAAG,aAAa,CAAC;YACzC,CAAC;YAED,IAAI,YAAY,GAAW,KAAK,CAAC;YAEjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EACb,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,iBAAiB,CAAC,MAAM,CAAC,EACpD,CAAC,EAAE,EACD,CAAC;gBACC,EAAE,CAAC,CAAC,WAAW,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBACvC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CACvC,CAAC,CACJ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;gBACvB,CAAC;gBAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,KAAK,oBAAoB,CAAC,CAAC,CAAC;oBAChD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACnB,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE;4BAClD,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,EAAE,CAAC,CACC,CAAC,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC;oBACnD,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAC7C,CAAC,CAAC,CAAC;oBACC,EAAE,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACrC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,4DAA4D;oBAC5D,6DAA6D;oBAC7D,YAAY,EAAE,CAAC;gBACnB,CAAC;YACL,CAAC;YAED,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG;YAClB,KAAK,OAAA;YACL,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC;SAC7B,CAAC;QAEF,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC;IAC3C,CAAC;IACO,oBAAK,GAAb;QAAA,iBAyCC;QAxCG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEzC,uDAAuD;QACvD,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAE5B,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAC,IAAI;YAC5B,IAAI,CAAC,OAAO,CAAC,UAAC,IAAI,IAAK,OAAA,KAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,EAAE,EAAjC,CAAiC,CAAC,CAAC;QAC9D,CAAC,CAAC,CAAC;QAEH,+EAA+E;QAC/E,uEAAuE;QACvE,EAAE,CAAC,CAAC,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,iBAAiB,CAAC,cAAc,GAAG,EAAE,CAAC;QAC/C,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAErD,wEAAwE;QACxE,wEAAwE;QACxE,GAAG,CAAC,CAAC,IAAM,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YACrC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACrC,CAAC;QACL,CAAC;QAED,6DAA6D;QAC7D,iEAAiE;QACjE,+CAA+C;QAC/C,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAC,QAAQ;YAE5B,IAAI,cAAc,GAAG,EAAE,CAAC;YAExB,QAAQ,CAAC,OAAO,CAAC,UAAC,SAAS;gBACvB,cAAc,IAAI,SAAS,IAAI,KAAI,CAAC,iBAAiB;oBACjD,CAAC,CAAC,GAAG,GAAG,KAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG;oBACzD,CAAC,CAAC,SAAS,CAAC;YACpB,CAAC,CAAC,CAAC;YACH,MAAM,CAAC,IAAI,MAAM,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IAEP,CAAC;IAED;;;;;OAKG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAM,KAAK,GAAG,EAAE,CAAC;QAEjB,IAAI,IAAI,CAAC;QACT,IAAI,OAAO,CAAC;QACZ,IAAI,UAAU,CAAC;QACf,IAAI,SAAS,CAAC;QACd,IAAI,CAAC,CAAC;QACN,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QACR,IAAI,IAAI,CAAC;QAET,uBAAuB;QACvB,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAEtC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAE/B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC3C,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEhB,IAAM,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAE1C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAEpC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,IAAI,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC3C,IAAM,QAAQ,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACpC,IAAM,WAAW,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;gBACvC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,IAAM,OAAO,GAAG,EAAE,CAAC;gBAEnB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEnB,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBACjC,IAAM,kBAAkB,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAExC,IAAM,aAAa,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;oBAE9C,IAAI,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACvC,EAAE,CAAC,CAAC,eAAe,KAAK,GAAG,CAAC,CAAC,CAAC;wBAAC,eAAe,GAAG,EAAE,CAAC;oBAAC,CAAC;oBAEtD,IAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,CAC3C,aAAa,CAAC,CAAC,CAAC,CACnB,CAAC;oBAEF,IAAM,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;oBAElC,IAAM,KAAK,GAAW,EAAE,CAAC;oBACzB,KAAK,CAAC,GAAG,GAAG,eAAe,CAAC;oBAE5B,EAAE,CAAC,CAAC,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;wBACjC,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;oBACpD,CAAC;oBAED,EAAE,CAAC,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,YAAY,GAAG,GAAG,CAAC,CAAC;wBACjD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,KAAK,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,CAAC;wBACjD,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,kBAAkB,KAAK,GAAG,CAAC,CAAC,CAAC;wBAC7B,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;4BACrB,KAAK,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,kBAAkB,GAAG,GAAG,CAAC,CAAC;wBACxD,CAAC;wBAAC,IAAI,CAAC,CAAC;4BACJ,KAAK,CAAC,MAAM,GAAG,kBAAkB,CAAC;wBACtC,CAAC;oBACL,CAAC;oBAED,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACxB,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,GAAG;oBACd,WAAW,EAAE,WAAW,KAAK,GAAG;oBAChC,OAAO,SAAA;oBACP,IAAI,EAAE,QAAQ;iBACjB,CAAC;gBAEF,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,cAAc,CAAC,CAAC,CAAC;gBACrC,UAAU,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE9C,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBACvD,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;oBAEhB,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;oBAC9B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1C,CAAC;gBAED,CAAC,IAAI,UAAU,CAAC;YACpB,CAAC;YAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC;gBAC5B,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAE9B,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;oBACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,iBAAiB;gBACjB,cAAc;gBACd,OAAO;gBACP,WAAW;gBACX,YAAY;gBAEZ,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IAEK,kCAAmB,GAA3B,UAA4B,IAAY;QACpC,kBAAkB;QAClB,8EAA8E;QAC9E,qEAAqE;QACrE,kFAAkF;QAClF,6CAA6C;QAC7C,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC;aAEpC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC;aAEjD,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC;aAExB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC7C,CAAC;IAED;;;;;;OAMG;IAEK,uBAAQ,GAAhB,UAAiB,IAAY;QACzB,IAAI,GAAG,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEpC,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC/B,IAAM,eAAe,GAAG,EAAE,CAAC;QAE3B,iBAAiB,IAAI,EAAE,KAAK;YACxB,qFAAqF;YACrF,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACxC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;YACjC,CAAC;YAED,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;oBACjC,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC/B,CAAC;gBAED,eAAe,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,CAAC;QACL,CAAC;QAED,2DAA2D;QAC3D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YAC/C,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACR,sBAAsB;gBACtB,QAAQ,CAAC;YACb,CAAC;YAED,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;YAEjC,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YAEtB,2DAA2D;YAC3D,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAErD,mDAAmD;gBACnD,EAAE,CAAC,CACC,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC;oBAC5B,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,CACtD,CAAC,CAAC,CAAC;oBACC,OAAO,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;gBAClC,CAAC;gBAED,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,IAAM,IAAI,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oBAE/B,IAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;oBAE9B,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;wBACP,IAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;wBAE7C,GAAG,CAAC,CACA,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC,MAAM,EACvC,EAAE,GAAG,KAAK,EACV,EAAE,EAAE,EACF,CAAC;4BACC,IAAM,OAAO,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;4BAE7B,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;4BAErB,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;gCACnB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;oCAChC,IAAM,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;oCAEtC,IAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;oCAE5C,EAAE,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;wCACd,EAAE,CAAC,CACC,WAAW,CAAC,WAAW;4CACvB,IAAI,CAAC,IAAI,KAAK,WAAW,CAAC,IAC9B,CAAC,CAAC,CAAC;4CACC,IAAM,aAAa,GAAG,IAAI,CAAC,UAAU,CACjC,OAAO,EACP,WAAW,CACd,CAAC;4CAEF,GAAG,CAAC,CACA,IAAI,GAAG,GAAG,CAAC,EACX,MAAM,GACV,aAAa,CAAC,MAAM,EACpB,GAAG,GAAG,MAAM,EACZ,GAAG,EAAE,EACH,CAAC;gDACC,IAAM,YAAY,GACd,aAAa,CAAC,GAAG,CAAC,CAAC;gDACvB,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4CAC9B,CAAC;wCACL,CAAC;oCACL,CAAC;gCACL,CAAC;4BACL,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;wBACjC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBAC5C,CAAC;gBACL,CAAC;YACL,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC;YAC7B,CAAC;QACL,CAAC;QAED,MAAM,CAAC,eAAe,CAAC;IAC3B,CAAC;IAED;;;;;OAKG;IAEK,gCAAiB,GAAzB,UAA0B,IAAI;QAC1B,wEAAwE;QACxE,kDAAkD;QAElD,kBAAkB;QAClB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACxC,CAAC;IAEO,6BAAc,GAAtB,UAAuB,SAAS;QAC5B,EAAE,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACjC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAC/B,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC;YACpC,IAAM,KAAK,GAAG,EAAE,CAAC;YAEjB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC3C,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvC,CAAC;YAED,MAAM,CAAC,KAAK,CAAC;QACjB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;YACnC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IAEK,yBAAU,GAAlB,UAAmB,IAAI,EAAE,IAAI;QACzB,IAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;YACjD,IAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAEzB,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC1C,IAAI,OAAO,GAAG,IAAI,CAAC;gBAEnB,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;oBACf,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;gBAChD,CAAC;gBAED,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC;oBACtB,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,OAAO,CAAC;gBAClC,CAAC;gBAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;gBAEvB,EAAE,CAAC,CAAC,qBAAqB,IAAI,KAAK,CAAC,CAAC,CAAC;oBACjC,GAAG,CAAC,CACA,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,KAAK,CAAC,mBAAmB,CAAC,MAAM,EACtD,CAAC,GAAG,IAAI,EACR,CAAC,EAAE,EACD,CAAC;wBACC,IAAM,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAC/B,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAC/B,CAAC;wBAEF,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC;4BACnB,QAAQ,GAAG,QAAQ,CAAC,MAAM,CACtB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAC7C,CAAC;wBACN,CAAC;wBACD;;;;;;2BAMG;oBACP,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,QAAQ,CAAC;IACpB,CAAC;IAED;;;;;OAKG;IAEK,yBAAU,GAAlB,UAAmB,IAAI;QACnB,IAAM,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAE7C,IAAI,CAAC,CAAC;QACN,IAAI,GAAG,CAAC;QAER,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;YACnC,0CAA0C;YAC1C,EAAE,CAAC,CACC,aAAa,IAAI,IAAI,CAAC,KAAK;gBAC3B,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,WAC9B,CAAC,CAAC,CAAC;gBACC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;oBACxD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACpC,MAAM,CAAC,IAAI,CAAC;oBAChB,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC;YAC5B,wEAAwE;YACxE,6DAA6D;YAC7D,MAAM,CAAC,IAAI,CAAC;QAChB,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC;YACvC,wDAAwD;YACxD,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC/C,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACtD,MAAM,CAAC,IAAI,CAAC;gBAChB,CAAC;YACL,CAAC;QACL,CAAC;QAED,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAED;;;;;;OAMG;IAEK,sBAAO,GAAf,UAAgB,IAAI,EAAE,IAAI,EAAE,SAAU;QAClC,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YACrB,EAAE,CAAC,CAAC,OAAO,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC;gBACnC,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;YAED,EAAE,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC1D,MAAM,CAAC,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QACD,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAhwBc,iBAAY,GAAG,cAAc,CAAC;IAiwBjD,WAAC;CAAA,AAlwBD,IAkwBC"} \ No newline at end of file diff --git a/package.json b/package.json index 68aca3f..8788e2f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "typo-js", - "version": "1.1.0", - "main": "dist/typo.js", + "version": "1.1.1", "description": "A Typescript port of Typo.js", "repository": { "type": "git", @@ -12,6 +11,9 @@ "license": "BSD-3-Clause", "homepage": "https://github.com/marcelorisoli/Typo.js#readme", "scripts": { + "postinstall": "npm run build-require", + "build-require": + "./node_modules/.bin/tsc && node concatenate.js build/ts/require-entry.js build/typo.js", "build": "./node_modules/.bin/tsc", "precommit": "lint-staged", "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}" @@ -19,6 +21,10 @@ "lint-staged": { "*.{js,json,css,md}": ["prettier --write", "git add"] }, + "dependencies": { + "google-closure-compiler": "20180101.0.0", + "typescript": "2.4.1" + }, "devDependencies": { "husky": "^0.14.3", "lint-staged": "^6.0.1", diff --git a/src/require-entry.ts b/src/require-entry.ts new file mode 100644 index 0000000..d9f5cb1 --- /dev/null +++ b/src/require-entry.ts @@ -0,0 +1,9 @@ +import * as typo from "./typo"; + +declare global { + function define(deps: string[], factory: () => any): void; +} + +define([], () => { + return typo; +}); diff --git a/src/typo.ts b/src/typo.ts index bf063fa..ecc23aa 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -789,3 +789,9 @@ class Typo implements ITypo { return false; } } + +declare function define(deps: string[], factory: () => any): void; + +define([], () => { + return { createTypo }; +}); diff --git a/tsconfig.json b/tsconfig.json index 78ab160..1f47696 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,9 @@ { "compilerOptions": { - "lib": ["dom", "es5", "es2015.core", "es2015.promise"], - "outDir": "./dist/", "declaration": true, - "declarationDir": "./dist/dts", - "sourceMap": true, - // "noImplicitAny": true, - // "strictNullChecks": true, - "module": "es6", "target": "es5", - "types": ["node"] + "declarationDir": "build/dts", + "outDir": "build/ts" }, - "include": ["./src/"] + "include": ["src/**.ts"] } From f29fc3b60ef5446450be43a4baee7520aa254e6c Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 2 Feb 2018 15:08:44 +0100 Subject: [PATCH 12/27] fix compoundRules types --- src/typo.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index ecc23aa..f470c9e 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -24,7 +24,7 @@ class Typo implements ITypo { private rules: { [rule: string]: any } = {}; private dictionaryTable: { [word: string]: string[] } = {}; - private compoundRules: any[] = []; + private compoundRules: RegExp[] = []; private compoundRuleCodes: { [rule: string]: string[] } = {}; private replacementTable: any[] = []; private flags: { [flag: string]: any } = {}; @@ -340,7 +340,7 @@ class Typo implements ITypo { this.compoundRuleCodes = {}; this.compoundRules.forEach((rule) => { - rule.forEach((item) => this.compoundRuleCodes[item] = []); + rule.toString().split("").forEach((item) => this.compoundRuleCodes[item] = []); }); // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC @@ -366,7 +366,7 @@ class Typo implements ITypo { let expressionText = ""; - ruleText.forEach((character) => { + ruleText.toString().split("").forEach((character) => { expressionText += character in this.compoundRuleCodes ? "(" + this.compoundRuleCodes[character].join("|") + ")" : character; From 380ef40afe04c1bab3f3404ce2fea9439cd59b71 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Mon, 5 Feb 2018 11:49:13 +0100 Subject: [PATCH 13/27] extract inline functions from suggest --- .editorconfig | 1 - src/typo.ts | 282 ++++++++++++++++++++++++-------------------------- 2 files changed, 136 insertions(+), 147 deletions(-) diff --git a/.editorconfig b/.editorconfig index 59754b0..b6722f2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,6 @@ root = true [{src,scripts}/**.{ts,json,js}] -end_of_line = crlf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true diff --git a/src/typo.ts b/src/typo.ts index f470c9e..8598c3b 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -24,6 +24,7 @@ class Typo implements ITypo { private rules: { [rule: string]: any } = {}; private dictionaryTable: { [word: string]: string[] } = {}; + private alphabet: string = ""; private compoundRules: RegExp[] = []; private compoundRuleCodes: { [rule: string]: string[] } = {}; private replacementTable: any[] = []; @@ -108,8 +109,7 @@ class Typo implements ITypo { * @returns {String[]} The array of suggestions. */ - public suggest(word: string, limit: number): string[] { - limit = limit || 5; + public suggest(word: string, limit: number = 5): string[] { if (this.memoized.hasOwnProperty(word)) { const memoizedLimit = this.memoized[word].limit; @@ -142,87 +142,69 @@ class Typo implements ITypo { } } - /** - * Returns a hash keyed by all of the strings that can be made by - * making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, knownOnly?) { - const rv = {}; - - let i; - let j; - let len; - let jlen; - let edit; - - if (typeof words === "string") { - const word = words; - words = {}; - words[word] = true; - } + this.alphabet = "abcdefghijklmnopqrstuvwxyz"; - for (const word of words) { - for (i = 0, len = word.length + 1; i < len; i++) { - const s = [word.substring(0, i), word.substring(i)]; + this.memoized[word] = { + limit, + suggestions: this.correct(word, limit), + }; - if (s[1]) { - edit = s[0] + s[1].substring(1); + return this.memoized[word].suggestions; + } - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } + /** + * Returns a hash keyed by all of the strings that can be made by + * making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. + * + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. + */ + private edits1(words, knownOnly?) { + const rv = {}; - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + let edit; - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } + if (typeof words === "string") { + const word = words; + words = {}; + words[word] = true; + } + + for (const word of words) { + for (let i = 0; i <= word.length; i++) { + const s = [word.substring(0, i), word.substring(i)]; + + if (s[1]) { + edit = s[0] + s[1].substring(1); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; } } + } - if (s[1]) { - for ( - j = 0, jlen = this.alphabet.length; - j < jlen; - j++ - ) { - // Eliminate replacement of a letter by itthis - if (this.alphabet[j] !== s[1].substring(0, 1)) { - edit = - s[0] + this.alphabet[j] + s[1].substring(1); - - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; } } + } - if (s[1]) { - for ( - j = 0, jlen = this.alphabet.length; - j < jlen; - j++ - ) { - edit = s[0] + this.alphabet[j] + s[1]; + if (s[1]) { + for (const letter of this.alphabet) { + // Eliminate replacement of a letter by itthis + if (letter !== s[1].substring(0, 1)) { + edit = s[0] + letter + s[1].substring(1); if (!knownOnly || this.check(edit)) { if (!(edit in rv)) { @@ -234,105 +216,113 @@ class Typo implements ITypo { } } } - } - return rv; + if (s[1]) { + for (const letter of this.alphabet) { + edit = s[0] + letter + s[0]; + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } } - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - const ed1 = edits1(word); - const ed2 = edits1(ed1, true); + return rv; + } - // Sort the edits based on how many different ways they were created. - const weightedCorrections = ed2; + private correct(word: string, limit: number) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + const ed1 = this.edits1(word); + const ed2 = this.edits1(ed1, true); - for (const ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } + // Sort the edits based on how many different ways they were created. + const weightedCorrections = ed2; - if (ed1word in weightedCorrections) { - weightedCorrections[ed1word] += ed1[ed1word]; - } else { - weightedCorrections[ed1word] = ed1[ed1word]; - } + for (const ed1word in ed1) { + if (!this.check(ed1word)) { + continue; } - const sortedCorrections = []; - - for (const i in weightedCorrections) { - if (weightedCorrections.hasOwnProperty(i)) { - sortedCorrections.push([i, weightedCorrections[i]]); - } + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; } + } - function sorter(a: number[], b: number[]) { - if (a[1] < b[1]) { - return -1; - } + const sortedCorrections = []; - // @todo If a and b are equally weighted, add our own weight based on something - // like the key locations on this language's default keyboard. + for (const i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([i, weightedCorrections[i]]); + } + } - return 1; + function sorter(a: number[], b: number[]) { + if (a[1] < b[1]) { + return -1; } - sortedCorrections.sort(sorter).reverse(); + // @todo If a and b are equally weighted, add our own weight based on something + // like the key locations on this language's default keyboard. - const rv = []; + return 1; + } - let capitalizationScheme = "lowercase"; + sortedCorrections.sort(sorter).reverse(); - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if ( - word.substr(0, 1).toUpperCase() + - word.substr(1).toLowerCase() === - word - ) { - capitalizationScheme = "capitalized"; - } + const rv = []; - let workingLimit: number = limit; + let capitalizationScheme = "lowercase"; - for ( - let i = 0; - i < Math.min(workingLimit, sortedCorrections.length); - i++ - ) { - if ("uppercase" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[ - i - ][0].toUpperCase(); - } else if ("capitalized" === capitalizationScheme) { - sortedCorrections[i][0] = - sortedCorrections[i][0].substr(0, 1).toUpperCase() + - sortedCorrections[i][0].substr(1); - } + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if ( + word.substr(0, 1).toUpperCase() + + word.substr(1).toLowerCase() === + word + ) { + capitalizationScheme = "capitalized"; + } - if ( - !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && - rv.indexOf(sortedCorrections[i][0]) === -1 - ) { - rv.push(sortedCorrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion - // make sure we still return the right number of suggestions. - workingLimit++; - } + let workingLimit: number = limit; + + for ( + let i = 0; + i < Math.min(workingLimit, sortedCorrections.length); + i++ + ) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[ + i + ][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = + sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); } - return rv; + if ( + !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && + rv.indexOf(sortedCorrections[i][0]) === -1 + ) { + rv.push(sortedCorrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion + // make sure we still return the right number of suggestions. + workingLimit++; + } } - this.memoized[word] = { - limit, - suggestions: correct(word), - }; - - return this.memoized[word].suggestions; + return rv; } + private setup(): void { this.rules = this.parseAFF(this.affData); From 08531de5e4337334e898a8285b5efc71e31861d4 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Mon, 5 Feb 2018 14:23:52 +0100 Subject: [PATCH 14/27] improve code readability --- src/typo.ts | 298 +++++++++++++++++++++++----------------------------- 1 file changed, 129 insertions(+), 169 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 8598c3b..36ced59 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -14,6 +14,11 @@ export interface ITypo { suggest(word: string, limit?: number): string[]; } +export interface IMemoized { + limit: number; + suggestions: string[]; +} + export function createTypo(affData: string, wordsData: string): ITypo { return new Typo(affData, wordsData); } @@ -29,7 +34,7 @@ class Typo implements ITypo { private compoundRuleCodes: { [rule: string]: string[] } = {}; private replacementTable: any[] = []; private flags: { [flag: string]: any } = {}; - private memoized: { [rule: string]: any } = {}; + private memoized: { [rule: string]: IMemoized } = {}; /** * Typo constructor. @@ -38,11 +43,43 @@ class Typo implements ITypo { * @param {String} [wordsData] The data from the dictionary's .dic file. * */ - constructor( - private affData: string, - private wordsData: string, - ) { - this.setup(); + constructor(affData: string, wordsData: string) { + this.rules = this.parseAFF(affData); + + this.compoundRules.forEach((rule) => { + rule.toString().split("").forEach((item) => this.compoundRuleCodes[item] = []); + }); + + // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC + // will do the work of saving the list of words that are compound-only. + if ("ONLYINCOMPOUND" in this.flags) { + this.compoundRuleCodes.ONLYINCOMPOUND = []; + } + + this.dictionaryTable = this.parseDIC(wordsData); + + // Get rid of any codes from the compound rule codes that are never used + // (or that were special regex characters). Not especially necessary... + for (const ruleCode in this.compoundRuleCodes) { + if (this.compoundRuleCodes[ruleCode].length === 0) { + delete this.compoundRuleCodes[ruleCode]; + } + } + + // Build the full regular expressions for each compound rule. + // I have a feeling (but no confirmation yet) that this method of + // testing for compound words is probably slow. + this.compoundRules.map((ruleText) => { + + let expressionText = ""; + + for (const character of ruleText.toString()) { + expressionText += character in this.compoundRuleCodes + ? "(" + this.compoundRuleCodes[character].join("|") + ")" + : character; + } + return new RegExp(expressionText, "i"); + }); } /** @@ -61,39 +98,39 @@ class Typo implements ITypo { const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); if (this.checkExact(trimmedWord)) { - return true; - } + return true; + } - // The exact word is not in the dictionary. + // The exact word is not in the dictionary. if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - const capitalizedWord = - trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + const capitalizedWord = + trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } - if (this.checkExact(capitalizedWord)) { - return true; + if (this.checkExact(capitalizedWord)) { + return true; + } } - } const lowercaseWord = trimmedWord.toLowerCase(); if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } } - } return false; } @@ -161,7 +198,7 @@ class Typo implements ITypo { * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. */ private edits1(words, knownOnly?) { - const rv = {}; + let rv: { [rule: string]: number } = {}; let edit; @@ -178,26 +215,14 @@ class Typo implements ITypo { if (s[1]) { edit = s[0] + s[1].substring(1); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } + rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); } // Eliminate transpositions of identical letters if (s[1].length > 1 && s[1][1] !== s[1][0]) { edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } + rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); } if (s[1]) { @@ -206,13 +231,7 @@ class Typo implements ITypo { if (letter !== s[1].substring(0, 1)) { edit = s[0] + letter + s[1].substring(1); - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } + rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); } } } @@ -221,13 +240,7 @@ class Typo implements ITypo { for (const letter of this.alphabet) { edit = s[0] + letter + s[0]; - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } + rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); } } } @@ -236,6 +249,18 @@ class Typo implements ITypo { return rv; } + private setOrIncreaseRuleValue( + rv: { [rule: string]: number }, + word: string, + knownOnly?: boolean, + ): { [rule: string]: number } { + const value = (word in rv) ? rv[word] + 1 : 1; + if (!knownOnly || this.check(word)) { + return {...rv, word: value}; + } + return rv; + } + private correct(word: string, limit: number) { // Get the edit-distance-1 and edit-distance-2 forms of this word. const ed1 = this.edits1(word); @@ -323,49 +348,6 @@ class Typo implements ITypo { return rv; } - private setup(): void { - this.rules = this.parseAFF(this.affData); - - // Save the rule codes that are used in compound rules. - this.compoundRuleCodes = {}; - - this.compoundRules.forEach((rule) => { - rule.toString().split("").forEach((item) => this.compoundRuleCodes[item] = []); - }); - - // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in this.flags) { - this.compoundRuleCodes.ONLYINCOMPOUND = []; - } - - this.dictionaryTable = this.parseDIC(this.wordsData); - - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (const i in this.compoundRuleCodes) { - if (this.compoundRuleCodes[i].length === 0) { - delete this.compoundRuleCodes[i]; - } - } - - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - this.compoundRules.map((ruleText) => { - - let expressionText = ""; - - ruleText.toString().split("").forEach((character) => { - expressionText += character in this.compoundRuleCodes - ? "(" + this.compoundRuleCodes[character].join("|") + ")" - : character; - }); - return new RegExp(expressionText, "i"); - }); - - } - /** * Parse the rules out from a .aff file. * @@ -376,22 +358,13 @@ class Typo implements ITypo { private parseAFF(data: string) { const rules = {}; - let line; - let subline; - let numEntries; - let lineParts; - let i; - let j; - let len; - let jlen; - // Remove comment lines data = this.removeAffixComments(data); const lines = data.split("\n"); - for (i = 0, len = lines.length; i < len; i++) { - line = lines[i]; + for (let i = 0; i < lines.length; i++) { + let line = lines[i]; const definitionParts = line.split(/\s+/); @@ -400,14 +373,14 @@ class Typo implements ITypo { if (ruleType === "PFX" || ruleType === "SFX") { const ruleCode = definitionParts[1]; const combineable = definitionParts[2]; - numEntries = parseInt(definitionParts[3], 10); + const numEntries = parseInt(definitionParts[3], 10); const entries = []; - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - subline = lines[j]; + for (let j = i + 1; j < i + 1 + numEntries; j++) { + const subline = lines[j]; - lineParts = subline.split(/\s+/); + const lineParts = subline.split(/\s+/); const charactersToRemove = lineParts[2]; const additionParts = lineParts[3].split("/"); @@ -455,18 +428,18 @@ class Typo implements ITypo { i += numEntries; } else if (ruleType === "COMPOUNDRULE") { - numEntries = parseInt(definitionParts[1], 10); + const numEntries = parseInt(definitionParts[1], 10); - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + for (let j = i + 1; j < i + 1 + numEntries; j++) { line = lines[j]; - lineParts = line.split(/\s+/); - this.compoundRules.push(lineParts[1]); + const lineParts = line.split(/\s+/); + this.compoundRules.push(new RegExp(lineParts[1])); } i += numEntries; } else if (ruleType === "REP") { - lineParts = line.split(/\s+/); + const lineParts = line.split(/\s+/); if (lineParts.length === 3) { this.replacementTable.push([lineParts[1], lineParts[2]]); @@ -500,11 +473,11 @@ class Typo implements ITypo { // so I don't think this will break anything. return data.replace(/^\s*#.*$/gm, "") // Trim each line - .replace(/^\s\s*/m, "").replace(/\s\s*$/m, "") - // Remove blank lines. - .replace(/\n{2,}/g, "\n") - // Trim the entire string - .replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + .replace(/^\s\s*/m, "").replace(/\s\s*$/m, "") + // Remove blank lines. + .replace(/\n{2,}/g, "\n") + // Trim the entire string + .replace(/^\s\s*/, "").replace(/\s\s*$/, ""); } /** @@ -521,21 +494,6 @@ class Typo implements ITypo { const lines = data.split("\n"); const dictionaryTable = {}; - function addWord(word, rules) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!dictionaryTable.hasOwnProperty(word)) { - dictionaryTable[word] = null; - } - - if (rules.length > 0) { - if (dictionaryTable[word] === null) { - dictionaryTable[word] = []; - } - - dictionaryTable[word].push(rules); - } - } - // The first line is the number of words in the dictionary. for (let i = 1, len = lines.length; i < len; i++) { const line = lines[i]; @@ -558,7 +516,7 @@ class Typo implements ITypo { !("NEEDAFFIX" in this.flags) || ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 ) { - addWord(word, ruleCodesArray); + this.addWord(word, ruleCodesArray); } for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { @@ -567,7 +525,7 @@ class Typo implements ITypo { const rule = this.rules[code]; if (rule) { - const newWords = this._applyRule(word, rule); + const newWords = this.applyRule(word, rule); for ( let ii = 0, iilen = newWords.length; @@ -576,7 +534,7 @@ class Typo implements ITypo { ) { const newWord = newWords[ii]; - addWord(newWord, []); + this.addWord(newWord, []); if (rule.combineable) { for (let k = j + 1; k < jlen; k++) { @@ -589,7 +547,7 @@ class Typo implements ITypo { combineRule.combineable && rule.type !== combineRule.type ) { - const otherNewWords = this._applyRule( + const otherNewWords = this.applyRule( newWord, combineRule, ); @@ -603,7 +561,7 @@ class Typo implements ITypo { ) { const otherNewWord = otherNewWords[iii]; - addWord(otherNewWord, []); + this.addWord(otherNewWord, []); } } } @@ -617,13 +575,28 @@ class Typo implements ITypo { } } } else { - addWord(word.trim(), []); + this.addWord(word.trim(), []); } } return dictionaryTable; } + private addWord(word: string, rules: string[]) { + // Some dictionaries will list the same word multiple times with different rule sets. + if (!this.dictionaryTable.hasOwnProperty(word)) { + this.dictionaryTable[word] = null; + } + + if (rules.length > 0) { + if (this.dictionaryTable[word] === null) { + this.dictionaryTable[word] = []; + } + + this.dictionaryTable[word].push(...rules); + } + } + /** * Removes comment lines and then cleans up blank lines and trailing whitespace. * @@ -665,12 +638,10 @@ class Typo implements ITypo { * @returns {String[]} The new words generated by the rule. */ - private _applyRule(word, rule) { - const entries = rule.entries; + private applyRule(word, rule) { let newWords = []; - for (let i = 0, len = entries.length; i < len; i++) { - const entry = entries[i]; + for (const entry of rule.entries) { if (!entry.match || word.match(entry.match)) { let newWord = word; @@ -688,18 +659,10 @@ class Typo implements ITypo { newWords.push(newWord); if ("continuationClasses" in entry) { - for ( - let j = 0, jlen = entry.continuationClasses.length; - j < jlen; - j++ - ) { - const continuationRule = this.rules[ - entry.continuationClasses[j] - ]; - + for (const continuationRule of this.rules[entry.continuationClasses]) { if (continuationRule) { newWords = newWords.concat( - this._applyRule(newWord, continuationRule), + this.applyRule(newWord, continuationRule), ); } /* @@ -727,17 +690,14 @@ class Typo implements ITypo { private checkExact(word) { const ruleCodes = this.dictionaryTable[word]; - let i; - let len; - if (typeof ruleCodes === "undefined") { // Check if this might be a compound word. if ( "COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN ) { - for (i = 0, len = this.compoundRules.length; i < len; i++) { - if (word.match(this.compoundRules[i])) { + for (const compoundRule of this.compoundRules) { + if (word.match(compoundRule)) { return true; } } @@ -748,8 +708,8 @@ class Typo implements ITypo { return true; } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, len = ruleCodes.length; i < len; i++) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { + for (const ruleCode of ruleCodes) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCode)) { return true; } } @@ -768,7 +728,7 @@ class Typo implements ITypo { private hasFlag(word, flag, wordFlags?) { if (flag in this.flags) { - if (typeof wordFlags === "undefined") { + if (wordFlags == null) { wordFlags = this.dictionaryTable[word]; } From 320d004aa4627db44c35c459005097c1ad3080b5 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Mon, 5 Feb 2018 15:51:06 +0100 Subject: [PATCH 15/27] revert to old js file --- src/typo.ts | 1608 +++++++++++++++++++++++++++------------------------ 1 file changed, 861 insertions(+), 747 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 36ced59..e93599c 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -1,747 +1,861 @@ -/** - * Typo is a Typescript port of a spellchecker using hunspell-style - * dictionaries. - */ -interface IEntry { - add?: string; - continuationClasses?: any; - match?: any; - remove?: any; -} - -export interface ITypo { - check(word: string): boolean; - suggest(word: string, limit?: number): string[]; -} - -export interface IMemoized { - limit: number; - suggestions: string[]; -} - -export function createTypo(affData: string, wordsData: string): ITypo { - return new Typo(affData, wordsData); -} - -class Typo implements ITypo { - private static DEFAULT_PATH = "dictionaries"; - - private rules: { [rule: string]: any } = {}; - private dictionaryTable: { [word: string]: string[] } = {}; - - private alphabet: string = ""; - private compoundRules: RegExp[] = []; - private compoundRuleCodes: { [rule: string]: string[] } = {}; - private replacementTable: any[] = []; - private flags: { [flag: string]: any } = {}; - private memoized: { [rule: string]: IMemoized } = {}; - - /** - * Typo constructor. - * - * @param {String} [affData] The data from the dictionary's .aff file. - * @param {String} [wordsData] The data from the dictionary's .dic file. - * - */ - constructor(affData: string, wordsData: string) { - this.rules = this.parseAFF(affData); - - this.compoundRules.forEach((rule) => { - rule.toString().split("").forEach((item) => this.compoundRuleCodes[item] = []); - }); - - // If we add this ONLYINCOMPOUND flag to this.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in this.flags) { - this.compoundRuleCodes.ONLYINCOMPOUND = []; - } - - this.dictionaryTable = this.parseDIC(wordsData); - - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (const ruleCode in this.compoundRuleCodes) { - if (this.compoundRuleCodes[ruleCode].length === 0) { - delete this.compoundRuleCodes[ruleCode]; - } - } - - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - this.compoundRules.map((ruleText) => { - - let expressionText = ""; - - for (const character of ruleText.toString()) { - expressionText += character in this.compoundRuleCodes - ? "(" + this.compoundRuleCodes[character].join("|") + ")" - : character; - } - return new RegExp(expressionText, "i"); - }); - } - - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - - public check(aWord) { - // Remove leading and trailing whitespace - const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - - if (this.checkExact(trimmedWord)) { - return true; - } - - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - const capitalizedWord = - trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - if (this.checkExact(capitalizedWord)) { - return true; - } - } - - const lowercaseWord = trimmedWord.toLowerCase(); - - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } - } - - return false; - } - - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ - - public suggest(word: string, limit: number = 5): string[] { - - if (this.memoized.hasOwnProperty(word)) { - const memoizedLimit = this.memoized[word].limit; - - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if ( - limit <= memoizedLimit || - this.memoized[word].suggestions.length < memoizedLimit - ) { - return this.memoized[word].suggestions.slice(0, limit); - } - } - - if (this.check(word)) { return []; } - - // Check the replacement table. - for (let i = 0, len = this.replacementTable.length; i < len; i++) { - const replacementEntry = this.replacementTable[i]; - - if (word.indexOf(replacementEntry[0]) !== -1) { - const correctedWord = word.replace( - replacementEntry[0], - replacementEntry[1], - ); - - if (this.check(correctedWord)) { - return [correctedWord]; - } - } - } - - this.alphabet = "abcdefghijklmnopqrstuvwxyz"; - - this.memoized[word] = { - limit, - suggestions: this.correct(word, limit), - }; - - return this.memoized[word].suggestions; - } - - /** - * Returns a hash keyed by all of the strings that can be made by - * making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. - */ - private edits1(words, knownOnly?) { - let rv: { [rule: string]: number } = {}; - - let edit; - - if (typeof words === "string") { - const word = words; - words = {}; - words[word] = true; - } - - for (const word of words) { - for (let i = 0; i <= word.length; i++) { - const s = [word.substring(0, i), word.substring(i)]; - - if (s[1]) { - edit = s[0] + s[1].substring(1); - - rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); - } - - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - - rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); - } - - if (s[1]) { - for (const letter of this.alphabet) { - // Eliminate replacement of a letter by itthis - if (letter !== s[1].substring(0, 1)) { - edit = s[0] + letter + s[1].substring(1); - - rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); - } - } - } - - if (s[1]) { - for (const letter of this.alphabet) { - edit = s[0] + letter + s[0]; - - rv = this.setOrIncreaseRuleValue(rv, word, knownOnly); - } - } - } - } - - return rv; - } - - private setOrIncreaseRuleValue( - rv: { [rule: string]: number }, - word: string, - knownOnly?: boolean, - ): { [rule: string]: number } { - const value = (word in rv) ? rv[word] + 1 : 1; - if (!knownOnly || this.check(word)) { - return {...rv, word: value}; - } - return rv; - } - - private correct(word: string, limit: number) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - const ed1 = this.edits1(word); - const ed2 = this.edits1(ed1, true); - - // Sort the edits based on how many different ways they were created. - const weightedCorrections = ed2; - - for (const ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } - - if (ed1word in weightedCorrections) { - weightedCorrections[ed1word] += ed1[ed1word]; - } else { - weightedCorrections[ed1word] = ed1[ed1word]; - } - } - - const sortedCorrections = []; - - for (const i in weightedCorrections) { - if (weightedCorrections.hasOwnProperty(i)) { - sortedCorrections.push([i, weightedCorrections[i]]); - } - } - - function sorter(a: number[], b: number[]) { - if (a[1] < b[1]) { - return -1; - } - - // @todo If a and b are equally weighted, add our own weight based on something - // like the key locations on this language's default keyboard. - - return 1; - } - - sortedCorrections.sort(sorter).reverse(); - - const rv = []; - - let capitalizationScheme = "lowercase"; - - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if ( - word.substr(0, 1).toUpperCase() + - word.substr(1).toLowerCase() === - word - ) { - capitalizationScheme = "capitalized"; - } - - let workingLimit: number = limit; - - for ( - let i = 0; - i < Math.min(workingLimit, sortedCorrections.length); - i++ - ) { - if ("uppercase" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[ - i - ][0].toUpperCase(); - } else if ("capitalized" === capitalizationScheme) { - sortedCorrections[i][0] = - sortedCorrections[i][0].substr(0, 1).toUpperCase() + - sortedCorrections[i][0].substr(1); - } - - if ( - !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") && - rv.indexOf(sortedCorrections[i][0]) === -1 - ) { - rv.push(sortedCorrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion - // make sure we still return the right number of suggestions. - workingLimit++; - } - } - - return rv; - } - - /** - * Parse the rules out from a .aff file. - * - * @param {String} data The contents of the affix file. - * @returns object The rules from the file. - */ - - private parseAFF(data: string) { - const rules = {}; - - // Remove comment lines - data = this.removeAffixComments(data); - - const lines = data.split("\n"); - - for (let i = 0; i < lines.length; i++) { - let line = lines[i]; - - const definitionParts = line.split(/\s+/); - - const ruleType = definitionParts[0]; - - if (ruleType === "PFX" || ruleType === "SFX") { - const ruleCode = definitionParts[1]; - const combineable = definitionParts[2]; - const numEntries = parseInt(definitionParts[3], 10); - - const entries = []; - - for (let j = i + 1; j < i + 1 + numEntries; j++) { - const subline = lines[j]; - - const lineParts = subline.split(/\s+/); - const charactersToRemove = lineParts[2]; - - const additionParts = lineParts[3].split("/"); - - let charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") { charactersToAdd = ""; } - - const continuationClasses = this.parseRuleCodes( - additionParts[1], - ); - - const regexToMatch = lineParts[4]; - - const entry: IEntry = {}; - entry.add = charactersToAdd; - - if (continuationClasses.length > 0) { - entry.continuationClasses = continuationClasses; - } - - if (regexToMatch !== ".") { - if (ruleType === "SFX") { - entry.match = new RegExp(regexToMatch + "$"); - } else { - entry.match = new RegExp("^" + regexToMatch); - } - } - - if (charactersToRemove !== "0") { - if (ruleType === "SFX") { - entry.remove = new RegExp(charactersToRemove + "$"); - } else { - entry.remove = charactersToRemove; - } - } - - entries.push(entry); - } - - rules[ruleCode] = { - combineable: combineable === "Y", - entries, - type: ruleType, - }; - - i += numEntries; - } else if (ruleType === "COMPOUNDRULE") { - const numEntries = parseInt(definitionParts[1], 10); - - for (let j = i + 1; j < i + 1 + numEntries; j++) { - line = lines[j]; - - const lineParts = line.split(/\s+/); - this.compoundRules.push(new RegExp(lineParts[1])); - } - - i += numEntries; - } else if (ruleType === "REP") { - const lineParts = line.split(/\s+/); - - if (lineParts.length === 3) { - this.replacementTable.push([lineParts[1], lineParts[2]]); - } - } else { - // ONLYINCOMPOUND - // COMPOUNDMIN - // FLAG - // KEEPCASE - // NEEDAFFIX - - this.flags[ruleType] = definitionParts[1]; - } - } - - return rules; - } - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from an affix file. - * @return {String} The cleaned-up data. - */ - - private removeAffixComments(data: string) { - // Remove comments - // This used to remove any string starting with '#' up to the end of the line, - // but some COMPOUNDRULE definitions include '#' as part of the rule. - // I haven't seen any affix files that use comments on the same line as real data, - // so I don't think this will break anything. - return data.replace(/^\s*#.*$/gm, "") - // Trim each line - .replace(/^\s\s*/m, "").replace(/\s\s*$/m, "") - // Remove blank lines. - .replace(/\n{2,}/g, "\n") - // Trim the entire string - .replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - } - - /** - * Parses the words out from the .dic file. - * - * @param {String} data The data from the dictionary file. - * @returns object The lookup table containing all of the words and - * word forms from the dictionary. - */ - - private parseDIC(data: string) { - data = this.removeDicComments(data); - - const lines = data.split("\n"); - const dictionaryTable = {}; - - // The first line is the number of words in the dictionary. - for (let i = 1, len = lines.length; i < len; i++) { - const line = lines[i]; - - if (!line) { - // Ignore empty lines. - continue; - } - - const parts = line.split("/", 2); - - const word = parts[0]; - - // Now for each affix rule, generate that form of the word. - if (parts.length > 1) { - const ruleCodesArray = this.parseRuleCodes(parts[1]); - - // Save the ruleCodes for compound word situations. - if ( - !("NEEDAFFIX" in this.flags) || - ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1 - ) { - this.addWord(word, ruleCodesArray); - } - - for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { - const code = ruleCodesArray[j]; - - const rule = this.rules[code]; - - if (rule) { - const newWords = this.applyRule(word, rule); - - for ( - let ii = 0, iilen = newWords.length; - ii < iilen; - ii++ - ) { - const newWord = newWords[ii]; - - this.addWord(newWord, []); - - if (rule.combineable) { - for (let k = j + 1; k < jlen; k++) { - const combineCode = ruleCodesArray[k]; - - const combineRule = this.rules[combineCode]; - - if (combineRule) { - if ( - combineRule.combineable && - rule.type !== combineRule.type - ) { - const otherNewWords = this.applyRule( - newWord, - combineRule, - ); - - for ( - let iii = 0, - iiilen = - otherNewWords.length; - iii < iiilen; - iii++ - ) { - const otherNewWord = - otherNewWords[iii]; - this.addWord(otherNewWord, []); - } - } - } - } - } - } - } - - if (code in this.compoundRuleCodes) { - this.compoundRuleCodes[code].push(word); - } - } - } else { - this.addWord(word.trim(), []); - } - } - - return dictionaryTable; - } - - private addWord(word: string, rules: string[]) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!this.dictionaryTable.hasOwnProperty(word)) { - this.dictionaryTable[word] = null; - } - - if (rules.length > 0) { - if (this.dictionaryTable[word] === null) { - this.dictionaryTable[word] = []; - } - - this.dictionaryTable[word].push(...rules); - } - } - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from a .dic file. - * @return {String} The cleaned-up data. - */ - - private removeDicComments(data) { - // I can't find any official documentation on it, but at least the de_DE - // dictionary uses tab-indented lines as comments. - - // Remove comments - return data.replace(/^\t.*$/gm, ""); - } - - private parseRuleCodes(textCodes) { - if (textCodes == null) { - return []; - } else if (!("FLAG" in this.flags)) { - return textCodes.split(""); - } else if (this.flags.FLAG === "long") { - const flags = []; - - for (let i = 0; i < textCodes.length; i += 2) { - flags.push(textCodes.substr(i, 2)); - } - - return flags; - } else if (this.flags.FLAG === "num") { - return textCodes.split(","); - } - } - - /** - * Applies an affix rule to a word. - * - * @param {String} word The base word. - * @param {Object} rule The affix rule. - * @returns {String[]} The new words generated by the rule. - */ - - private applyRule(word, rule) { - let newWords = []; - - for (const entry of rule.entries) { - - if (!entry.match || word.match(entry.match)) { - let newWord = word; - - if (entry.remove) { - newWord = newWord.replace(entry.remove, ""); - } - - if (rule.type === "SFX") { - newWord = newWord + entry.add; - } else { - newWord = entry.add + newWord; - } - - newWords.push(newWord); - - if ("continuationClasses" in entry) { - for (const continuationRule of this.rules[entry.continuationClasses]) { - if (continuationRule) { - newWords = newWords.concat( - this.applyRule(newWord, continuationRule), - ); - } - /* - else { - // This shouldn't happen, but it does, at least in the de_DE dictionary. - // I think the author mistakenly supplied lower-case rule codes instead - // of upper-case. - } - */ - } - } - } - } - - return newWords; - } - - /** - * Checks whether a word exists in the current dictionary. - * - * @param {String} word The word to check. - * @returns {Boolean} - */ - - private checkExact(word) { - const ruleCodes = this.dictionaryTable[word]; - - if (typeof ruleCodes === "undefined") { - // Check if this might be a compound word. - if ( - "COMPOUNDMIN" in this.flags && - word.length >= this.flags.COMPOUNDMIN - ) { - for (const compoundRule of this.compoundRules) { - if (word.match(compoundRule)) { - return true; - } - } - } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } else if (typeof ruleCodes === "object") { - // this.dictionary['hasOwnProperty'] will be a function. - for (const ruleCode of ruleCodes) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCode)) { - return true; - } - } - } - - return false; - } - - /** - * Looks up whether a given word is flagged with a given flag. - * - * @param {String} word The word in question. - * @param {String} flag The flag in question. - * @return {Boolean} - */ - - private hasFlag(word, flag, wordFlags?) { - if (flag in this.flags) { - if (wordFlags == null) { - wordFlags = this.dictionaryTable[word]; - } - - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } - } - return false; - } -} - -declare function define(deps: string[], factory: () => any): void; - -define([], () => { - return { createTypo }; -}); +/* globals chrome: false */ +/* globals __dirname: false */ +/* globals require: false */ +/* globals Buffer: false */ +/* globals module: false */ + +/** + * Typo is a JavaScript implementation of a spellchecker using hunspell-style + * dictionaries. + */ + +export interface ITypo { + check(word: string): boolean; + suggest(word: string, limit?: number): string[]; +} + +export function createTypo(affData: string, wordsData: string): ITypo { + return new Typo(affData, wordsData); +} + +let Typo; + +(() => { + "use strict"; + + /** + * Typo constructor. + * + * @param {String} [dictionary] The locale code of the dictionary being used. e.g., + * "en_US". This is only used to auto-load dictionaries. + * @param {String} [affData] The data from the dictionary's .aff file. If omitted + * and Typo.js is being used in a Chrome extension, the .aff + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].aff + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff + * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted + * and Typo.js is being used in a Chrome extension, the .dic + * file will be loaded automatically from + * lib/typo/dictionaries/[dictionary]/[dictionary].dic + * In other environments, it will be loaded from + * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic + * @param {Object} [settings] Constructor settings. Available properties are: + * {String} [dictionaryPath]: path to load dictionary from in non-chrome + * environment. + * {Object} [flags]: flag information. + * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded + * asynchronously. + * {Function} [loadedCallback]: Called when both affData and wordsData + * have been loaded. Only used if asyncLoad is set to true. The parameter + * is the instantiated Typo object. + * + * @returns {Typo} A Typo object. + */ + + Typo = function(dictionary, affData, wordsData, settings) { + settings = settings || {}; + + this.dictionary = null; + + this.rules = {}; + this.dictionaryTable = {}; + + this.compoundRules = []; + this.compoundRuleCodes = {}; + + this.replacementTable = []; + + this.flags = settings.flags || {}; + + this.memoized = {}; + + this.loaded = false; + + const self = this; + + // Loop-control variables. + let i; + let j; + let len; + let jlen; + + if (dictionary) { + self.dictionary = dictionary; + + setup(); + } + + function setup() { + self.rules = self._parseAFF(affData); + + // Save the rule codes that are used in compound rules. + self.compoundRuleCodes = {}; + + for (i = 0, len = self.compoundRules.length; i < len; i++) { + const rule = self.compoundRules[i]; + + for (j = 0, jlen = rule.length; j < jlen; j++) { + self.compoundRuleCodes[rule[j]] = []; + } + } + + // If we add this ONLYINCOMPOUND flag to self.compoundRuleCodes, then _parseDIC + // will do the work of saving the list of words that are compound-only. + if ("ONLYINCOMPOUND" in self.flags) { + self.compoundRuleCodes[self.flags.ONLYINCOMPOUND] = []; + } + + self.dictionaryTable = self._parseDIC(wordsData); + + // Get rid of any codes from the compound rule codes that are never used + // (or that were special regex characters). Not especially necessary... + for (i in self.compoundRuleCodes) { + if (self.compoundRuleCodes[i].length === 0) { + delete self.compoundRuleCodes[i]; + } + } + + // Build the full regular expressions for each compound rule. + // I have a feeling (but no confirmation yet) that this method of + // testing for compound words is probably slow. + for (i = 0, len = self.compoundRules.length; i < len; i++) { + const ruleText = self.compoundRules[i]; + + let expressionText = ""; + + for (j = 0, jlen = ruleText.length; j < jlen; j++) { + const character = ruleText[j]; + + if (character in self.compoundRuleCodes) { + expressionText += "(" + self.compoundRuleCodes[character].join("|") + ")"; + } else { + expressionText += character; + } + } + + self.compoundRules[i] = new RegExp(expressionText, "i"); + } + + self.loaded = true; + + if (settings.asyncLoad && settings.loadedCallback) { + settings.loadedCallback(self); + } + } + + return this; + }; + + Typo.prototype = { + /** + * Loads a Typo instance from a hash of all of the Typo properties. + * + * @param object obj A hash of Typo properties, + * probably gotten from a JSON.parse(JSON.stringify(typo_instance)). + */ + + load(obj) { + for (const i in obj) { + if (obj.hasOwnProperty(i)) { + this[i] = obj[i]; + } + } + + return this; + }, + + /** + * Parse the rules out from a .aff file. + * + * @param {String} data The contents of the affix file. + * @returns object The rules from the file. + */ + + _parseAFF(data) { + const rules = {}; + + let line; + let subline; + let numEntries; + let lineParts; + let i; + let j; + let len; + let jlen; + + // Remove comment lines + data = this._removeAffixComments(data); + + const lines = data.split("\n"); + + for (i = 0, len = lines.length; i < len; i++) { + line = lines[i]; + + const definitionParts = line.split(/\s+/); + + const ruleType = definitionParts[0]; + + if (ruleType === "PFX" || ruleType === "SFX") { + const ruleCode = definitionParts[1]; + const combineable = definitionParts[2]; + numEntries = parseInt(definitionParts[3], 10); + + const entries = []; + + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + subline = lines[j]; + + lineParts = subline.split(/\s+/); + const charactersToRemove = lineParts[2]; + + const additionParts = lineParts[3].split("/"); + + let charactersToAdd = additionParts[0]; + if (charactersToAdd === "0") { charactersToAdd = ""; } + + const continuationClasses = this.parseRuleCodes(additionParts[1]); + + const regexToMatch = lineParts[4]; + + const entry: any = {}; + entry.add = charactersToAdd; + + if (continuationClasses.length > 0) { entry.continuationClasses = continuationClasses; } + + if (regexToMatch !== ".") { + if (ruleType === "SFX") { + entry.match = new RegExp(regexToMatch + "$"); + } else { + entry.match = new RegExp("^" + regexToMatch); + } + } + + if (charactersToRemove !== "0") { + if (ruleType === "SFX") { + entry.remove = new RegExp(charactersToRemove + "$"); + } else { + entry.remove = charactersToRemove; + } + } + + entries.push(entry); + } + + rules[ruleCode] = { type : ruleType, combineable : (combineable === "Y"), entries }; + + i += numEntries; + } else if (ruleType === "COMPOUNDRULE") { + numEntries = parseInt(definitionParts[1], 10); + + for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { + line = lines[j]; + + lineParts = line.split(/\s+/); + this.compoundRules.push(lineParts[1]); + } + + i += numEntries; + } else if (ruleType === "REP") { + lineParts = line.split(/\s+/); + + if (lineParts.length === 3) { + this.replacementTable.push([ lineParts[1], lineParts[2] ]); + } + } else { + // ONLYINCOMPOUND + // COMPOUNDMIN + // FLAG + // KEEPCASE + // NEEDAFFIX + + this.flags[ruleType] = definitionParts[1]; + } + } + + return rules; + }, + + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from an affix file. + * @return {String} The cleaned-up data. + */ + + _removeAffixComments(data) { + // Remove comments + // This used to remove any string starting with '#' up to the end of the line, + // but some COMPOUNDRULE definitions include '#' as part of the rule. + // I haven't seen any affix files that use comments on the same line as real data, + // so I don't think this will break anything. + data = data.replace(/^\s*#.*$/mg, ""); + + // Trim each line + data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); + + // Remove blank lines. + data = data.replace(/\n{2,}/g, "\n"); + + // Trim the entire string + data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + return data; + }, + + /** + * Parses the words out from the .dic file. + * + * @param {String} data The data from the dictionary file. + * @returns object The lookup table containing all of the words and + * word forms from the dictionary. + */ + + _parseDIC(data) { + data = this._removeDicComments(data); + + const lines = data.split("\n"); + const dictionaryTable = {}; + + function addWord(word, rules) { + // Some dictionaries will list the same word multiple times with different rule sets. + if (!dictionaryTable.hasOwnProperty(word)) { + dictionaryTable[word] = null; + } + + if (rules.length > 0) { + if (dictionaryTable[word] === null) { + dictionaryTable[word] = []; + } + + dictionaryTable[word].push(rules); + } + } + + // The first line is the number of words in the dictionary. + for (let i = 1, len = lines.length; i < len; i++) { + const line = lines[i]; + + if (!line) { + // Ignore empty lines. + continue; + } + + const parts = line.split("/", 2); + + const word = parts[0]; + + // Now for each affix rule, generate that form of the word. + if (parts.length > 1) { + const ruleCodesArray = this.parseRuleCodes(parts[1]); + + // Save the ruleCodes for compound word situations. + if (!("NEEDAFFIX" in this.flags) || ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1) { + addWord(word, ruleCodesArray); + } + + for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { + const code = ruleCodesArray[j]; + + const rule = this.rules[code]; + + if (rule) { + const newWords = this._applyRule(word, rule); + + for (const newWord of newWords) { + + addWord(newWord, []); + + if (rule.combineable) { + for (let k = j + 1; k < jlen; k++) { + const combineCode = ruleCodesArray[k]; + + const combineRule = this.rules[combineCode]; + + if (combineRule) { + if (combineRule.combineable && (rule.type !== combineRule.type)) { + const otherNewWords = this._applyRule(newWord, combineRule); + + for (let iii = 0, iiilen = otherNewWords.length; iii < iiilen; iii++) { + const otherNewWord = otherNewWords[iii]; + addWord(otherNewWord, []); + } + } + } + } + } + } + } + + if (code in this.compoundRuleCodes) { + this.compoundRuleCodes[code].push(word); + } + } + } else { + addWord(word.trim(), []); + } + } + + return dictionaryTable; + }, + + /** + * Removes comment lines and then cleans up blank lines and trailing whitespace. + * + * @param {String} data The data from a .dic file. + * @return {String} The cleaned-up data. + */ + + _removeDicComments(data) { + // I can't find any official documentation on it, but at least the de_DE + // dictionary uses tab-indented lines as comments. + + // Remove comments + data = data.replace(/^\t.*$/mg, ""); + + return data; + }, + + parseRuleCodes(textCodes) { + if (!textCodes) { + return []; + } else if (!("FLAG" in this.flags)) { + return textCodes.split(""); + } else if (this.flags.FLAG === "long") { + const flags = []; + + for (let i = 0, len = textCodes.length; i < len; i += 2) { + flags.push(textCodes.substr(i, 2)); + } + + return flags; + } else if (this.flags.FLAG === "num") { + return textCodes.split(","); + } + }, + + /** + * Applies an affix rule to a word. + * + * @param {String} word The base word. + * @param {Object} rule The affix rule. + * @returns {String[]} The new words generated by the rule. + */ + + _applyRule(word, rule) { + const entries = rule.entries; + let newWords = []; + + for (let i = 0, len = entries.length; i < len; i++) { + const entry = entries[i]; + + if (!entry.match || word.match(entry.match)) { + let newWord = word; + + if (entry.remove) { + newWord = newWord.replace(entry.remove, ""); + } + + if (rule.type === "SFX") { + newWord = newWord + entry.add; + } else { + newWord = entry.add + newWord; + } + + newWords.push(newWord); + + if ("continuationClasses" in entry) { + for (let j = 0, jlen = entry.continuationClasses.length; j < jlen; j++) { + const continuationRule = this.rules[entry.continuationClasses[j]]; + + if (continuationRule) { + newWords = newWords.concat(this._applyRule(newWord, continuationRule)); + } + /* + else { + // This shouldn't happen, but it does, at least in the de_DE dictionary. + // I think the author mistakenly supplied lower-case rule codes instead + // of upper-case. + } + */ + } + } + } + } + + return newWords; + }, + + /** + * Checks whether a word or a capitalization variant exists in the current dictionary. + * The word is trimmed and several variations of capitalizations are checked. + * If you want to check a word without any changes made to it, call checkExact() + * + * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function + * + * @param {String} aWord The word to check. + * @returns {Boolean} + */ + + check(aWord) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + // Remove leading and trailing whitespace + const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + if (this.checkExact(trimmedWord)) { + return true; + } + + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + const capitalizedWord = trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + if (this.checkExact(capitalizedWord)) { + return true; + } + } + + const lowercaseWord = trimmedWord.toLowerCase(); + + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } + } + + return false; + }, + + /** + * Checks whether a word exists in the current dictionary. + * + * @param {String} word The word to check. + * @returns {Boolean} + */ + + checkExact(word) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + const ruleCodes = this.dictionaryTable[word]; + + let i; + let len; + + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { + for (i = 0, len = this.compoundRules.length; i < len; i++) { + if (word.match(this.compoundRules[i])) { + return true; + } + } + } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. + for (i = 0, len = ruleCodes.length; i < len; i++) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { + return true; + } + } + } + + return false; + }, + + /** + * Looks up whether a given word is flagged with a given flag. + * + * @param {String} word The word in question. + * @param {String} flag The flag in question. + * @return {Boolean} + */ + + hasFlag(word, flag, wordFlags) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); + } + + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } + } + + return false; + }, + + /** + * Returns a list of suggestions for a misspelled word. + * + * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. + * This suggestor is primitive, but it works. + * + * @param {String} word The misspelling. + * @param {Number} [limit=5] The maximum number of suggestions to return. + * @returns {String[]} The array of suggestions. + */ + + alphabet : "", + + suggest(word, limit) { + if (!this.loaded) { + throw new Error("Dictionary not loaded."); + } + + limit = limit || 5; + + if (this.memoized.hasOwnProperty(word)) { + const memoizedLimit = this.memoized[word].limit; + + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if (limit <= memoizedLimit || this.memoized[word].suggestions.length < memoizedLimit) { + return this.memoized[word].suggestions.slice(0, limit); + } + } + + if (this.check(word)) { return []; } + + // Check the replacement table. + for (let i = 0, len = this.replacementTable.length; i < len; i++) { + const replacementEntry = this.replacementTable[i]; + + if (word.indexOf(replacementEntry[0]) !== -1) { + const correctedWord = word.replace(replacementEntry[0], replacementEntry[1]); + + if (this.check(correctedWord)) { + return [ correctedWord ]; + } + } + } + + const self = this; + self.alphabet = "abcdefghijklmnopqrstuvwxyz"; + + /* + if (!self.alphabet) { + // Use the alphabet as implicitly defined by the words in the dictionary. + var alphaHash = {}; + + for (var i in self.dictionaryTable) { + for (var j = 0, len = i.length; j < len; j++) { + alphaHash[i[j]] = true; + } + } + + for (var i in alphaHash) { + self.alphabet += i; + } + + var alphaArray = self.alphabet.split(""); + alphaArray.sort(); + self.alphabet = alphaArray.join(""); + } + */ + + /** + * Returns a hash keyed by all of the strings that + * can be made by making a single edit to the word (or words in) `words` + * The value of each entry is the number of unique ways that the resulting word can be made. + * + * @arg mixed words Either a hash keyed by words or a string word to operate on. + * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. + */ + function edits1(words, knownOnly?) { + const rv = {}; + + let i; + let j; + let len; + let jlen; + let edit; + + if (typeof words === "string") { + const word = words; + words = {}; + words[word] = true; + } + + for (const word in words) { + if (words.hasOwnProperty(word)) { + for (i = 0, len = word.length + 1; i < len; i++) { + const s = [ word.substring(0, i), word.substring(i) ]; + + if (s[1]) { + edit = s[0] + s[1].substring(1); + + if (!knownOnly || self.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + + if (!knownOnly || self.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + + if (s[1]) { + for (j = 0, jlen = self.alphabet.length; j < jlen; j++) { + // Eliminate replacement of a letter by itself + if (self.alphabet[j] !== s[1].substring(0, 1)) { + edit = s[0] + self.alphabet[j] + s[1].substring(1); + + if (!knownOnly || self.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } + + if (s[1]) { + for (j = 0, jlen = self.alphabet.length; j < jlen; j++) { + edit = s[0] + self.alphabet[j] + s[1]; + + if (!knownOnly || self.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } + } + } + } + + return rv; + } + + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + const ed1 = edits1(word); + const ed2 = edits1(ed1, true); + + // Sort the edits based on how many different ways they were created. + const weightedCorrections = ed2; + + for (const ed1word in ed1) { + if (!self.check(ed1word)) { + continue; + } + + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; + } + } + + let i; + + const sortedCorrections = []; + + for (i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([ i, weightedCorrections[i] ]); + } + } + + function sorter(a, b) { + if (a[1] < b[1]) { + return -1; + } + + // @todo If a and b are equally weighted, add our own weight + // based on something like the key locations on this language's default keyboard. + + return 1; + } + + sortedCorrections.sort(sorter).reverse(); + + const rv = []; + + let capitalizationScheme = "lowercase"; + + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { + capitalizationScheme = "capitalized"; + } + + let workingLimit = limit; + + for (i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); + } + + if ( + !self.hasFlag(sortedCorrections[i][0], "NOSUGGEST") + && rv.indexOf(sortedCorrections[i][0]) === -1) { + rv.push(sortedCorrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion, + // make sure we still return the right number of suggestions. + workingLimit++; + } + } + + return rv; + } + + this.memoized[word] = { + limit, + suggestions: correct(word), + }; + + return this.memoized[word].suggestions; + }, + }; +})(); + +// Support for use as a node.js module. +if (typeof module !== "undefined") { + module.exports = Typo; +} From 0c0bf043ca5b0689dc7df454e3be4982351a1f16 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Mon, 5 Feb 2018 15:52:05 +0100 Subject: [PATCH 16/27] add define declaration --- src/typo.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/typo.ts b/src/typo.ts index e93599c..31d4c00 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -859,3 +859,9 @@ let Typo; if (typeof module !== "undefined") { module.exports = Typo; } + +declare function define(deps: string[], factory: () => any): void; + +define([], () => { + return { createTypo }; +}); From 3634cf2dbd1855cee5cacb1996f420679b8a54fb Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Mon, 5 Feb 2018 15:54:09 +0100 Subject: [PATCH 17/27] remove module code --- src/typo.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 31d4c00..7e1fddb 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -1,14 +1,3 @@ -/* globals chrome: false */ -/* globals __dirname: false */ -/* globals require: false */ -/* globals Buffer: false */ -/* globals module: false */ - -/** - * Typo is a JavaScript implementation of a spellchecker using hunspell-style - * dictionaries. - */ - export interface ITypo { check(word: string): boolean; suggest(word: string, limit?: number): string[]; @@ -855,11 +844,6 @@ let Typo; }; })(); -// Support for use as a node.js module. -if (typeof module !== "undefined") { - module.exports = Typo; -} - declare function define(deps: string[], factory: () => any): void; define([], () => { From 37c5c16e7aa9109b5c93d5c52ed7b158f1c6a8cf Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Mon, 5 Feb 2018 15:59:55 +0100 Subject: [PATCH 18/27] remove loaded and dictionary options --- src/typo.ts | 40 +++++----------------------------------- 1 file changed, 5 insertions(+), 35 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 7e1fddb..85ea814 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -1,10 +1,10 @@ export interface ITypo { - check(word: string): boolean; - suggest(word: string, limit?: number): string[]; + check(word: string): boolean; + suggest(word: string, limit?: number): string[]; } export function createTypo(affData: string, wordsData: string): ITypo { - return new Typo(affData, wordsData); + return new Typo(affData, wordsData, {}); } let Typo; @@ -42,10 +42,7 @@ let Typo; * @returns {Typo} A Typo object. */ - Typo = function(dictionary, affData, wordsData, settings) { - settings = settings || {}; - - this.dictionary = null; + Typo = function(affData, wordsData, settings: any = {}) { this.rules = {}; this.dictionaryTable = {}; @@ -59,8 +56,6 @@ let Typo; this.memoized = {}; - this.loaded = false; - const self = this; // Loop-control variables. @@ -69,11 +64,7 @@ let Typo; let len; let jlen; - if (dictionary) { - self.dictionary = dictionary; - - setup(); - } + setup(); function setup() { self.rules = self._parseAFF(affData); @@ -126,11 +117,6 @@ let Typo; self.compoundRules[i] = new RegExp(expressionText, "i"); } - self.loaded = true; - - if (settings.asyncLoad && settings.loadedCallback) { - settings.loadedCallback(self); - } } return this; @@ -487,10 +473,6 @@ let Typo; */ check(aWord) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } - // Remove leading and trailing whitespace const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); @@ -539,10 +521,6 @@ let Typo; */ checkExact(word) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } - const ruleCodes = this.dictionaryTable[word]; let i; @@ -581,10 +559,6 @@ let Typo; */ hasFlag(word, flag, wordFlags) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } - if (flag in this.flags) { if (typeof wordFlags === "undefined") { wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); @@ -612,10 +586,6 @@ let Typo; alphabet : "", suggest(word, limit) { - if (!this.loaded) { - throw new Error("Dictionary not loaded."); - } - limit = limit || 5; if (this.memoized.hasOwnProperty(word)) { From 7fa2bda103d0c650bead6ef75bf9629c246f0832 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Tue, 6 Mar 2018 13:05:53 +0100 Subject: [PATCH 19/27] remove hunspell dictionaryTable generation logic --- README.md | 29 +- __tests__/dictionaries/en_US.json | 152777 +++++++++++++++++++++++++++ __tests__/english.test.ts | 158 + package.json | 17 +- src/typo.ts | 1019 +- yarn.lock | 2288 +- 6 files changed, 154772 insertions(+), 1516 deletions(-) create mode 100644 __tests__/dictionaries/en_US.json create mode 100644 __tests__/english.test.ts diff --git a/README.md b/README.md index 81fb4fc..afa06a9 100755 --- a/README.md +++ b/README.md @@ -3,34 +3,29 @@ Typo.js is a Typescript port of [Typo.js spellchecker](https://github.com/cfinke # Usage To use Typo in a Chrome extension, simply include the typo.js file in your extension's background page, and then initialize the dictionary like so: +This is designed to be used within a web application and I removed the original dictionary table building. +For Typo to work it needs the dictionary data already parsed and supplied to the constructor instead of the language string or .aff/.dic files, including: -```javascript -var dictionary = new Typo("en_US"); -``` - -To use Typo in a standard web application you need to pass a settings object that provides a path to the folder containing the desired dictionary. +The dictionaryTable including all words and rule sets +The compoundRules RegExp array +The replacementTable array pairs +The Hunspell affix flags object ```javascript -var dictionary = new Typo("en_US", false, false, { dictionaryPath: "typo/dictionaries" }), -``` - -If using in node.js, load it like so: - -```javascript -var Typo = require("typo-js"); -var dictionary = new Typo([...]); +const Typo = require("typo-js"); +const dictionary = new Typo(...); ``` To check if a word is spelled correctly, do this: ```javascript -var is_spelled_correctly = dictionary.check("mispelled"); +const is_spelled_correctly = dictionary.check("mispelled"); ``` To get suggested corrections for a misspelled word, do this: ```javascript -var array_of_suggestions = dictionary.suggest("mispeling"); +const array_of_suggestions = dictionary.suggest("mispeling"); // array_of_suggestions == ["misspelling", "dispelling", "misdealing", "misfiling", "misruling"] ``` @@ -48,10 +43,6 @@ Typo.js has full support for the following Hunspell affix flags: * NOSUGGEST * NEEDAFFIX -# Demo - -There's a live demo of Typo.js at http://www.chrisfinke.com/files/typo-demo/ and a complete Node.js example file at examples/node/index.js. - # Licensing Typo.js is free software, licensed under the Modified BSD License. diff --git a/__tests__/dictionaries/en_US.json b/__tests__/dictionaries/en_US.json new file mode 100644 index 0000000..2d0d065 --- /dev/null +++ b/__tests__/dictionaries/en_US.json @@ -0,0 +1,152777 @@ +{ + "rules": { + "A": { "type": "PFX", "combineable": true, "entries": [{ "add": "re" }] }, + "I": { "type": "PFX", "combineable": true, "entries": [{ "add": "in" }] }, + "U": { "type": "PFX", "combineable": true, "entries": [{ "add": "un" }] }, + "C": { "type": "PFX", "combineable": true, "entries": [{ "add": "de" }] }, + "E": { "type": "PFX", "combineable": true, "entries": [{ "add": "dis" }] }, + "F": { "type": "PFX", "combineable": true, "entries": [{ "add": "con" }] }, + "K": { "type": "PFX", "combineable": true, "entries": [{ "add": "pro" }] }, + "V": { + "type": "SFX", + "combineable": false, + "entries": [ + { "add": "ive", "match": {}, "remove": {} }, + { "add": "ive", "match": {} } + ] + }, + "N": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "ion", "match": {}, "remove": {} }, + { "add": "ication", "match": {}, "remove": {} }, + { "add": "en", "match": {} } + ] + }, + "X": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "ions", "match": {}, "remove": {} }, + { "add": "ications", "match": {}, "remove": {} }, + { "add": "ens", "match": {} } + ] + }, + "H": { + "type": "SFX", + "combineable": false, + "entries": [ + { "add": "ieth", "match": {}, "remove": {} }, + { "add": "th", "match": {} } + ] + }, + "Y": { "type": "SFX", "combineable": true, "entries": [{ "add": "ly" }] }, + "G": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "ing", "match": {}, "remove": {} }, + { "add": "ing", "match": {} } + ] + }, + "J": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "ings", "match": {}, "remove": {} }, + { "add": "ings", "match": {} } + ] + }, + "D": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "d", "match": {} }, + { "add": "ied", "match": {}, "remove": {} }, + { "add": "ed", "match": {} }, + { "add": "ed", "match": {} } + ] + }, + "T": { + "type": "SFX", + "combineable": false, + "entries": [ + { "add": "st", "match": {} }, + { "add": "iest", "match": {}, "remove": {} }, + { "add": "est", "match": {} }, + { "add": "est", "match": {} } + ] + }, + "R": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "r", "match": {} }, + { "add": "ier", "match": {}, "remove": {} }, + { "add": "er", "match": {} }, + { "add": "er", "match": {} } + ] + }, + "Z": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "rs", "match": {} }, + { "add": "iers", "match": {}, "remove": {} }, + { "add": "ers", "match": {} }, + { "add": "ers", "match": {} } + ] + }, + "S": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "ies", "match": {}, "remove": {} }, + { "add": "s", "match": {} }, + { "add": "es", "match": {} }, + { "add": "s", "match": {} } + ] + }, + "P": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "iness", "match": {}, "remove": {} }, + { "add": "ness", "match": {} }, + { "add": "ness", "match": {} } + ] + }, + "M": { "type": "SFX", "combineable": true, "entries": [{ "add": "'s" }] }, + "B": { + "type": "SFX", + "combineable": true, + "entries": [ + { "add": "able", "match": {} }, + { "add": "able", "match": {} }, + { "add": "able", "match": {}, "remove": {} } + ] + }, + "L": { "type": "SFX", "combineable": true, "entries": [{ "add": "ment" }] } + }, + "dictionaryTable": { + "0": [["n", "m"]], + "1": [["n", "1"]], + "2": [["n", "m"]], + "3": [["n", "m"]], + "4": [["n", "m"]], + "5": [["n", "m"]], + "6": [["n", "m"]], + "7": [["n", "m"]], + "8": [["n", "m"]], + "9": [["n", "m"]], + "0th": [["p", "t"]], + "1st": [["p"]], + "1th": [["t", "c"]], + "2nd": [["p"]], + "2th": [["t", "c"]], + "3rd": [["p"]], + "3th": [["t", "c"]], + "4th": [["p", "t"]], + "5th": [["p", "t"]], + "6th": [["p", "t"]], + "7th": [["p", "t"]], + "8th": [["p", "t"]], + "9th": [["p", "t"]], + "a": null, + "A": null, + "AA": null, + "AAA": null, + "Aachen": [["M"]], + "Aachen's": null, + "aardvark": [["S", "M"]], + "aardvarks": null, + "aardvark's": null, + "Aaren": [["M"]], + "Aaren's": null, + "Aarhus": [["M"]], + "Aarhus's": null, + "Aarika": [["M"]], + "Aarika's": null, + "Aaron": [["M"]], + "Aaron's": null, + "AB": null, + "aback": null, + "abacus": [["S", "M"]], + "abacuses": null, + "abacus's": null, + "abaft": null, + "Abagael": [["M"]], + "Abagael's": null, + "Abagail": [["M"]], + "Abagail's": null, + "abalone": [["S", "M"]], + "abalones": null, + "abalone's": null, + "abandoner": [["M"]], + "abandoner's": null, + "abandon": [["L", "G", "D", "R", "S"]], + "abandonment": [["S", "M"]], + "abandoning": null, + "abandoned": null, + "abandons": null, + "abandonments": null, + "abandonment's": null, + "abase": [["L", "G", "D", "S", "R"]], + "abasement": [["S"]], + "abasing": null, + "abased": null, + "abases": null, + "abaser": [["M"]], + "abasements": null, + "abaser's": null, + "abashed": [["U", "Y"]], + "unabashed": null, + "unabashedly": null, + "abashedly": null, + "abashment": [["M", "S"]], + "abashment's": null, + "abashments": null, + "abash": [["S", "D", "L", "G"]], + "abashes": null, + "abashing": null, + "abate": [["D", "S", "R", "L", "G"]], + "abated": [["U"]], + "abates": null, + "abater": [["M"]], + "abatement": [["M", "S"]], + "abating": null, + "unabated": [["Y"]], + "abatement's": null, + "abatements": null, + "abater's": null, + "abattoir": [["S", "M"]], + "abattoirs": null, + "abattoir's": null, + "Abba": [["M"]], + "Abba's": null, + "Abbe": [["M"]], + "Abbe's": null, + "abb�": [["S"]], + "abb�s": null, + "abbess": [["S", "M"]], + "abbesses": null, + "abbess's": null, + "Abbey": [["M"]], + "Abbey's": null, + "abbey": [["M", "S"]], + "abbey's": null, + "abbeys": null, + "Abbie": [["M"]], + "Abbie's": null, + "Abbi": [["M"]], + "Abbi's": null, + "Abbot": [["M"]], + "Abbot's": null, + "abbot": [["M", "S"]], + "abbot's": null, + "abbots": null, + "Abbott": [["M"]], + "Abbott's": null, + "abbr": null, + "abbrev": null, + "abbreviated": [["U", "A"]], + "unabbreviated": null, + "reabbreviated": null, + "abbreviates": [["A"]], + "reabbreviates": null, + "abbreviate": [["X", "D", "S", "N", "G"]], + "abbreviations": null, + "abbreviation": [["M"]], + "abbreviating": [["A"]], + "reabbreviating": null, + "abbreviation's": null, + "Abbye": [["M"]], + "Abbye's": null, + "Abby": [["M"]], + "Abby's": null, + "ABC": [["M"]], + "ABC's": null, + "Abdel": [["M"]], + "Abdel's": null, + "abdicate": [["N", "G", "D", "S", "X"]], + "abdication": [["M"]], + "abdicating": null, + "abdicated": null, + "abdicates": null, + "abdications": null, + "abdication's": null, + "abdomen": [["S", "M"]], + "abdomens": null, + "abdomen's": null, + "abdominal": [["Y", "S"]], + "abdominally": null, + "abdominals": null, + "abduct": [["D", "G", "S"]], + "abducted": null, + "abducting": null, + "abducts": null, + "abduction": [["S", "M"]], + "abductions": null, + "abduction's": null, + "abductor": [["S", "M"]], + "abductors": null, + "abductor's": null, + "Abdul": [["M"]], + "Abdul's": null, + "ab": [["D", "Y"]], + "abed": null, + "ably": null, + "abeam": null, + "Abelard": [["M"]], + "Abelard's": null, + "Abel": [["M"]], + "Abel's": null, + "Abelson": [["M"]], + "Abelson's": null, + "Abe": [["M"]], + "Abe's": null, + "Aberdeen": [["M"]], + "Aberdeen's": null, + "Abernathy": [["M"]], + "Abernathy's": null, + "aberrant": [["Y", "S"]], + "aberrantly": null, + "aberrants": null, + "aberrational": null, + "aberration": [["S", "M"]], + "aberrations": null, + "aberration's": null, + "abet": [["S"]], + "abets": null, + "abetted": null, + "abetting": null, + "abettor": [["S", "M"]], + "abettors": null, + "abettor's": null, + "Abeu": [["M"]], + "Abeu's": null, + "abeyance": [["M", "S"]], + "abeyance's": null, + "abeyances": null, + "abeyant": null, + "Abey": [["M"]], + "Abey's": null, + "abhorred": null, + "abhorrence": [["M", "S"]], + "abhorrence's": null, + "abhorrences": null, + "abhorrent": [["Y"]], + "abhorrently": null, + "abhorrer": [["M"]], + "abhorrer's": null, + "abhorring": null, + "abhor": [["S"]], + "abhors": null, + "abidance": [["M", "S"]], + "abidance's": null, + "abidances": null, + "abide": [["J", "G", "S", "R"]], + "abidings": null, + "abiding": [["Y"]], + "abides": null, + "abider": [["M"]], + "abider's": null, + "abidingly": null, + "Abidjan": [["M"]], + "Abidjan's": null, + "Abie": [["M"]], + "Abie's": null, + "Abigael": [["M"]], + "Abigael's": null, + "Abigail": [["M"]], + "Abigail's": null, + "Abigale": [["M"]], + "Abigale's": null, + "Abilene": [["M"]], + "Abilene's": null, + "ability": [["I", "M", "E", "S"]], + "inability": null, + "inability's": null, + "inabilities": null, + "ability's": null, + "disability's": null, + "disability": null, + "disabilities": null, + "abilities": null, + "abjection": [["M", "S"]], + "abjection's": null, + "abjections": null, + "abjectness": [["S", "M"]], + "abjectnesses": null, + "abjectness's": null, + "abject": [["S", "G", "P", "D", "Y"]], + "abjects": null, + "abjecting": null, + "abjected": null, + "abjectly": null, + "abjuration": [["S", "M"]], + "abjurations": null, + "abjuration's": null, + "abjuratory": null, + "abjurer": [["M"]], + "abjurer's": null, + "abjure": [["Z", "G", "S", "R", "D"]], + "abjurers": null, + "abjuring": null, + "abjures": null, + "abjured": null, + "ablate": [["V", "G", "N", "S", "D", "X"]], + "ablative": [["S", "Y"]], + "ablating": null, + "ablation": [["M"]], + "ablates": null, + "ablated": null, + "ablations": null, + "ablation's": null, + "ablatives": null, + "ablatively": null, + "ablaze": null, + "abler": [["E"]], + "disabler": [["M"]], + "ables": [["E"]], + "disables": null, + "ablest": null, + "able": [["U"]], + "unable": null, + "abloom": null, + "ablution": [["M", "S"]], + "ablution's": null, + "ablutions": null, + "Ab": [["M"]], + "Ab's": null, + "ABM": [["S"]], + "ABMs": null, + "abnegate": [["N", "G", "S", "D", "X"]], + "abnegation": [["M"]], + "abnegating": null, + "abnegates": null, + "abnegated": null, + "abnegations": null, + "abnegation's": null, + "Abner": [["M"]], + "Abner's": null, + "abnormality": [["S", "M"]], + "abnormalities": null, + "abnormality's": null, + "abnormal": [["S", "Y"]], + "abnormals": null, + "abnormally": null, + "aboard": null, + "abode": [["G", "M", "D", "S"]], + "aboding": null, + "abode's": null, + "aboded": null, + "abodes": null, + "abolisher": [["M"]], + "abolisher's": null, + "abolish": [["L", "Z", "R", "S", "D", "G"]], + "abolishment": [["M", "S"]], + "abolishers": null, + "abolishes": null, + "abolished": null, + "abolishing": null, + "abolishment's": null, + "abolishments": null, + "abolitionism": [["S", "M"]], + "abolitionisms": null, + "abolitionism's": null, + "abolitionist": [["S", "M"]], + "abolitionists": null, + "abolitionist's": null, + "abolition": [["S", "M"]], + "abolitions": null, + "abolition's": null, + "abominable": null, + "abominably": null, + "abominate": [["X", "S", "D", "G", "N"]], + "abominations": null, + "abominates": null, + "abominated": null, + "abominating": null, + "abomination": [["M"]], + "abomination's": null, + "aboriginal": [["Y", "S"]], + "aboriginally": null, + "aboriginals": null, + "aborigine": [["S", "M"]], + "aborigines": null, + "aborigine's": null, + "Aborigine": [["S", "M"]], + "Aborigines": null, + "Aborigine's": null, + "aborning": null, + "abortionist": [["M", "S"]], + "abortionist's": null, + "abortionists": null, + "abortion": [["M", "S"]], + "abortion's": null, + "abortions": null, + "abortiveness": [["M"]], + "abortiveness's": null, + "abortive": [["P", "Y"]], + "abortively": null, + "abort": [["S", "R", "D", "V", "G"]], + "aborts": null, + "aborter": null, + "aborted": null, + "aborting": null, + "Abo": [["S", "M", "!"]], + "Abos": null, + "Abo's": null, + "abound": [["G", "D", "S"]], + "abounding": null, + "abounded": null, + "abounds": null, + "about": [["S"]], + "abouts": null, + "aboveboard": null, + "aboveground": null, + "above": [["S"]], + "aboves": null, + "abracadabra": [["S"]], + "abracadabras": null, + "abrader": [["M"]], + "abrader's": null, + "abrade": [["S", "R", "D", "G"]], + "abrades": null, + "abraded": null, + "abrading": null, + "Abraham": [["M"]], + "Abraham's": null, + "Abrahan": [["M"]], + "Abrahan's": null, + "Abra": [["M"]], + "Abra's": null, + "Abramo": [["M"]], + "Abramo's": null, + "Abram": [["S", "M"]], + "Abrams": null, + "Abram's": null, + "Abramson": [["M"]], + "Abramson's": null, + "Abran": [["M"]], + "Abran's": null, + "abrasion": [["M", "S"]], + "abrasion's": null, + "abrasions": null, + "abrasiveness": [["S"]], + "abrasivenesses": null, + "abrasive": [["S", "Y", "M", "P"]], + "abrasives": null, + "abrasively": null, + "abrasive's": null, + "abreaction": [["M", "S"]], + "abreaction's": null, + "abreactions": null, + "abreast": null, + "abridge": [["D", "S", "R", "G"]], + "abridged": [["U"]], + "abridges": null, + "abridger": [["M"]], + "abridging": null, + "unabridged": [["S"]], + "abridger's": null, + "abridgment": [["S", "M"]], + "abridgments": null, + "abridgment's": null, + "abroad": null, + "abrogate": [["X", "D", "S", "N", "G"]], + "abrogations": null, + "abrogated": null, + "abrogates": null, + "abrogation": [["M"]], + "abrogating": null, + "abrogation's": null, + "abrogator": [["S", "M"]], + "abrogators": null, + "abrogator's": null, + "abruptness": [["S", "M"]], + "abruptnesses": null, + "abruptness's": null, + "abrupt": [["T", "R", "Y", "P"]], + "abruptest": null, + "abrupter": null, + "abruptly": null, + "ABS": null, + "abscess": [["G", "D", "S", "M"]], + "abscessing": null, + "abscessed": null, + "abscesses": null, + "abscess's": null, + "abscissa": [["S", "M"]], + "abscissas": null, + "abscissa's": null, + "abscission": [["S", "M"]], + "abscissions": null, + "abscission's": null, + "absconder": [["M"]], + "absconder's": null, + "abscond": [["S", "D", "R", "Z", "G"]], + "absconds": null, + "absconded": null, + "absconders": null, + "absconding": null, + "abseil": [["S", "G", "D", "R"]], + "abseils": null, + "abseiling": null, + "abseiled": null, + "abseiler": null, + "absence": [["S", "M"]], + "absences": null, + "absence's": null, + "absenteeism": [["S", "M"]], + "absenteeisms": null, + "absenteeism's": null, + "absentee": [["M", "S"]], + "absentee's": null, + "absentees": null, + "absentia": [["M"]], + "absentia's": null, + "absentmindedness": [["S"]], + "absentmindednesses": null, + "absentminded": [["P", "Y"]], + "absentmindedly": null, + "absent": [["S", "G", "D", "R", "Y"]], + "absents": null, + "absenting": null, + "absented": null, + "absenter": null, + "absently": null, + "absinthe": [["S", "M"]], + "absinthes": null, + "absinthe's": null, + "abs": [["M"]], + "abs's": null, + "absoluteness": [["S", "M"]], + "absolutenesses": null, + "absoluteness's": null, + "absolute": [["N", "P", "R", "S", "Y", "T", "X"]], + "absolution": [["M"]], + "absoluter": null, + "absolutes": null, + "absolutely": null, + "absolutest": null, + "absolutions": null, + "absolution's": null, + "absolutism": [["M", "S"]], + "absolutism's": null, + "absolutisms": null, + "absolutist": [["S", "M"]], + "absolutists": null, + "absolutist's": null, + "absolve": [["G", "D", "S", "R"]], + "absolving": null, + "absolved": null, + "absolves": null, + "absolver": [["M"]], + "absolver's": null, + "absorb": [["A", "S", "G", "D"]], + "reabsorb": null, + "reabsorbs": null, + "reabsorbing": null, + "reabsorbed": null, + "absorbs": null, + "absorbing": [["Y"]], + "absorbed": [["U"]], + "unabsorbed": null, + "absorbency": [["M", "S"]], + "absorbency's": null, + "absorbencies": null, + "absorbent": [["M", "S"]], + "absorbent's": null, + "absorbents": null, + "absorber": [["S", "M"]], + "absorbers": null, + "absorber's": null, + "absorbingly": null, + "absorption": [["M", "S"]], + "absorption's": null, + "absorptions": null, + "absorptive": null, + "absorptivity": [["M"]], + "absorptivity's": null, + "abstainer": [["M"]], + "abstainer's": null, + "abstain": [["G", "S", "D", "R", "Z"]], + "abstaining": null, + "abstains": null, + "abstained": null, + "abstainers": null, + "abstemiousness": [["M", "S"]], + "abstemiousness's": null, + "abstemiousnesses": null, + "abstemious": [["Y", "P"]], + "abstemiously": null, + "abstention": [["S", "M"]], + "abstentions": null, + "abstention's": null, + "abstinence": [["M", "S"]], + "abstinence's": null, + "abstinences": null, + "abstinent": [["Y"]], + "abstinently": null, + "abstractedness": [["S", "M"]], + "abstractednesses": null, + "abstractedness's": null, + "abstracted": [["Y", "P"]], + "abstractedly": null, + "abstracter": [["M"]], + "abstracter's": null, + "abstractionism": [["M"]], + "abstractionism's": null, + "abstractionist": [["S", "M"]], + "abstractionists": null, + "abstractionist's": null, + "abstraction": [["S", "M"]], + "abstractions": null, + "abstraction's": null, + "abstractness": [["S", "M"]], + "abstractnesses": null, + "abstractness's": null, + "abstractor": [["M", "S"]], + "abstractor's": null, + "abstractors": null, + "abstract": [["P", "T", "V", "G", "R", "D", "Y", "S"]], + "abstractest": null, + "abstractive": null, + "abstracting": null, + "abstractly": null, + "abstracts": null, + "abstruseness": [["S", "M"]], + "abstrusenesses": null, + "abstruseness's": null, + "abstruse": [["P", "R", "Y", "T"]], + "abstruser": null, + "abstrusely": null, + "abstrusest": null, + "absurdity": [["S", "M"]], + "absurdities": null, + "absurdity's": null, + "absurdness": [["S", "M"]], + "absurdnesses": null, + "absurdness's": null, + "absurd": [["P", "R", "Y", "S", "T"]], + "absurder": null, + "absurdly": null, + "absurds": null, + "absurdest": null, + "Abuja": null, + "abundance": [["S", "M"]], + "abundances": null, + "abundance's": null, + "abundant": [["Y"]], + "abundantly": null, + "abused": [["E"]], + "disabused": null, + "abuse": [["G", "V", "Z", "D", "S", "R", "B"]], + "abusing": [["E"]], + "abusive": [["Y", "P"]], + "abusers": null, + "abuses": [["E"]], + "abuser": [["M"]], + "abusable": null, + "abuser's": null, + "disabuses": null, + "disabusing": null, + "abusiveness": [["S", "M"]], + "abusivenesses": null, + "abusiveness's": null, + "abusively": null, + "abut": [["L", "S"]], + "abutment": [["S", "M"]], + "abuts": null, + "abutments": null, + "abutment's": null, + "abutted": null, + "abutter": [["M", "S"]], + "abutter's": null, + "abutters": null, + "abutting": null, + "abuzz": null, + "abysmal": [["Y"]], + "abysmally": null, + "abyssal": null, + "Abyssinia": [["M"]], + "Abyssinia's": null, + "Abyssinian": null, + "abyss": [["S", "M"]], + "abysses": null, + "abyss's": null, + "AC": null, + "acacia": [["S", "M"]], + "acacias": null, + "acacia's": null, + "academe": [["M", "S"]], + "academe's": null, + "academes": null, + "academia": [["S", "M"]], + "academias": null, + "academia's": null, + "academical": [["Y"]], + "academically": null, + "academicianship": null, + "academician": [["S", "M"]], + "academicians": null, + "academician's": null, + "academic": [["S"]], + "academics": null, + "academy": [["S", "M"]], + "academies": null, + "academy's": null, + "Acadia": [["M"]], + "Acadia's": null, + "acanthus": [["M", "S"]], + "acanthus's": null, + "acanthuses": null, + "Acapulco": [["M"]], + "Acapulco's": null, + "accede": [["S", "D", "G"]], + "accedes": null, + "acceded": null, + "acceding": null, + "accelerated": [["U"]], + "unaccelerated": null, + "accelerate": [["N", "G", "S", "D", "X", "V"]], + "acceleration": [["M"]], + "accelerating": [["Y"]], + "accelerates": null, + "accelerations": null, + "accelerative": null, + "acceleratingly": null, + "acceleration's": null, + "accelerator": [["S", "M"]], + "accelerators": null, + "accelerator's": null, + "accelerometer": [["S", "M"]], + "accelerometers": null, + "accelerometer's": null, + "accented": [["U"]], + "unaccented": null, + "accent": [["S", "G", "M", "D"]], + "accents": null, + "accenting": null, + "accent's": null, + "accentual": [["Y"]], + "accentually": null, + "accentuate": [["X", "N", "G", "S", "D"]], + "accentuations": null, + "accentuation": [["M"]], + "accentuating": null, + "accentuates": null, + "accentuated": null, + "accentuation's": null, + "acceptability": [["S", "M"]], + "acceptabilities": null, + "acceptability's": [["U"]], + "unacceptability's": null, + "acceptableness": [["S", "M"]], + "acceptablenesses": null, + "acceptableness's": null, + "acceptable": [["P"]], + "acceptably": [["U"]], + "unacceptably": null, + "acceptance": [["S", "M"]], + "acceptances": null, + "acceptance's": null, + "acceptant": null, + "acceptation": [["S", "M"]], + "acceptations": null, + "acceptation's": null, + "accepted": [["Y"]], + "acceptedly": null, + "accepter": [["M"]], + "accepter's": null, + "accepting": [["P", "Y"]], + "acceptingness": null, + "acceptingly": null, + "acceptor": [["M", "S"]], + "acceptor's": null, + "acceptors": null, + "accept": [["R", "D", "B", "S", "Z", "V", "G"]], + "accepts": null, + "accepters": null, + "acceptive": null, + "accessed": [["A"]], + "reaccessed": null, + "accessibility": [["I", "M", "S"]], + "inaccessibility": null, + "inaccessibility's": null, + "inaccessibilities": null, + "accessibility's": null, + "accessibilities": null, + "accessible": [["I", "U"]], + "inaccessible": null, + "unaccessible": null, + "accessibly": [["I"]], + "inaccessibly": null, + "accession": [["S", "M", "D", "G"]], + "accessions": null, + "accession's": null, + "accessioned": null, + "accessioning": null, + "accessors": null, + "accessory": [["S", "M"]], + "accessories": null, + "accessory's": null, + "access": [["S", "D", "M", "G"]], + "accesses": null, + "access's": null, + "accessing": null, + "accidence": [["M"]], + "accidence's": null, + "accidentalness": [["M"]], + "accidentalness's": null, + "accidental": [["S", "P", "Y"]], + "accidentals": null, + "accidentally": null, + "accident": [["M", "S"]], + "accident's": null, + "accidents": null, + "acclaimer": [["M"]], + "acclaimer's": null, + "acclaim": [["S", "D", "R", "G"]], + "acclaims": null, + "acclaimed": null, + "acclaiming": null, + "acclamation": [["M", "S"]], + "acclamation's": null, + "acclamations": null, + "acclimate": [["X", "S", "D", "G", "N"]], + "acclimations": null, + "acclimates": null, + "acclimated": null, + "acclimating": null, + "acclimation": [["M"]], + "acclimation's": null, + "acclimatisation": null, + "acclimatise": [["D", "G"]], + "acclimatised": null, + "acclimatising": null, + "acclimatization": [["A", "M", "S"]], + "reacclimatization": null, + "reacclimatization's": null, + "reacclimatizations": null, + "acclimatization's": null, + "acclimatizations": null, + "acclimatized": [["U"]], + "unacclimatized": null, + "acclimatize": [["R", "S", "D", "G", "Z"]], + "acclimatizer": null, + "acclimatizes": [["A"]], + "acclimatizing": null, + "acclimatizers": null, + "reacclimatizes": null, + "acclivity": [["S", "M"]], + "acclivities": null, + "acclivity's": null, + "accolade": [["G", "D", "S", "M"]], + "accolading": null, + "accoladed": null, + "accolades": null, + "accolade's": null, + "accommodated": [["U"]], + "unaccommodated": null, + "accommodate": [["X", "V", "N", "G", "S", "D"]], + "accommodations": null, + "accommodative": [["P"]], + "accommodation": [["M"]], + "accommodating": [["Y"]], + "accommodates": null, + "accommodatingly": null, + "accommodation's": null, + "accommodativeness": [["M"]], + "accommodativeness's": null, + "accompanied": [["U"]], + "unaccompanied": null, + "accompanier": [["M"]], + "accompanier's": null, + "accompaniment": [["M", "S"]], + "accompaniment's": null, + "accompaniments": null, + "accompanist": [["S", "M"]], + "accompanists": null, + "accompanist's": null, + "accompany": [["D", "R", "S", "G"]], + "accompanies": null, + "accompanying": null, + "accomplice": [["M", "S"]], + "accomplice's": null, + "accomplices": null, + "accomplished": [["U"]], + "unaccomplished": null, + "accomplisher": [["M"]], + "accomplisher's": null, + "accomplishment": [["S", "M"]], + "accomplishments": null, + "accomplishment's": null, + "accomplish": [["S", "R", "D", "L", "Z", "G"]], + "accomplishes": null, + "accomplishers": null, + "accomplishing": null, + "accordance": [["S", "M"]], + "accordances": null, + "accordance's": null, + "accordant": [["Y"]], + "accordantly": null, + "accorder": [["M"]], + "accorder's": null, + "according": [["Y"]], + "accordingly": null, + "accordionist": [["S", "M"]], + "accordionists": null, + "accordionist's": null, + "accordion": [["M", "S"]], + "accordion's": null, + "accordions": null, + "accord": [["S", "Z", "G", "M", "R", "D"]], + "accords": null, + "accorders": null, + "accord's": null, + "accorded": null, + "accost": [["S", "G", "D"]], + "accosts": null, + "accosting": null, + "accosted": null, + "accountability": [["M", "S"]], + "accountability's": [["U"]], + "accountabilities": null, + "unaccountability's": null, + "accountableness": [["M"]], + "accountableness's": null, + "accountable": [["U"]], + "unaccountable": null, + "accountably": [["U"]], + "unaccountably": null, + "accountancy": [["S", "M"]], + "accountancies": null, + "accountancy's": null, + "accountant": [["M", "S"]], + "accountant's": null, + "accountants": null, + "account": [["B", "M", "D", "S", "G", "J"]], + "account's": null, + "accounted": [["U"]], + "accounts": null, + "accounting": [["M"]], + "accountings": null, + "unaccounted": null, + "accounting's": null, + "accouter": [["G", "S", "D"]], + "accoutering": null, + "accouters": null, + "accoutered": null, + "accouterments": null, + "accouterment's": null, + "accoutrement": [["M"]], + "accoutrement's": null, + "Accra": [["M"]], + "Accra's": null, + "accreditation": [["S", "M"]], + "accreditations": null, + "accreditation's": null, + "accredited": [["U"]], + "unaccredited": null, + "accredit": [["S", "G", "D"]], + "accredits": null, + "accrediting": null, + "accretion": [["S", "M"]], + "accretions": null, + "accretion's": null, + "accrual": [["M", "S"]], + "accrual's": null, + "accruals": null, + "accrue": [["S", "D", "G"]], + "accrues": null, + "accrued": null, + "accruing": null, + "acct": null, + "acculturate": [["X", "S", "D", "V", "N", "G"]], + "acculturations": null, + "acculturates": null, + "acculturated": null, + "acculturative": null, + "acculturation": [["M"]], + "acculturating": null, + "acculturation's": null, + "accumulate": [["V", "N", "G", "S", "D", "X"]], + "accumulative": [["Y", "P"]], + "accumulation": [["M"]], + "accumulating": null, + "accumulates": null, + "accumulated": null, + "accumulations": null, + "accumulation's": null, + "accumulativeness": [["M"]], + "accumulativeness's": null, + "accumulatively": null, + "accumulator": [["M", "S"]], + "accumulator's": null, + "accumulators": null, + "accuracy": [["I", "M", "S"]], + "inaccuracy": null, + "inaccuracy's": null, + "inaccuracies": null, + "accuracy's": null, + "accuracies": null, + "accurate": [["I", "Y"]], + "inaccurate": null, + "inaccurately": null, + "accurately": null, + "accurateness": [["S", "M"]], + "accuratenesses": null, + "accurateness's": null, + "accursedness": [["S", "M"]], + "accursednesses": null, + "accursedness's": null, + "accursed": [["Y", "P"]], + "accursedly": null, + "accusal": [["M"]], + "accusal's": null, + "accusation": [["S", "M"]], + "accusations": null, + "accusation's": null, + "accusative": [["S"]], + "accusatives": null, + "accusatory": null, + "accused": [["M"]], + "accused's": null, + "accuser": [["M"]], + "accuser's": null, + "accuse": [["S", "R", "D", "Z", "G"]], + "accuses": null, + "accusers": null, + "accusing": [["Y"]], + "accusingly": null, + "accustomedness": [["M"]], + "accustomedness's": null, + "accustomed": [["P"]], + "accustom": [["S", "G", "D"]], + "accustoms": null, + "accustoming": null, + "ac": [["D", "R", "G"]], + "aced": [["M"]], + "acer": null, + "acing": [["M"]], + "aced's": null, + "acerbate": [["D", "S", "G"]], + "acerbated": null, + "acerbates": null, + "acerbating": null, + "acerbic": null, + "acerbically": null, + "acerbity": [["M", "S"]], + "acerbity's": null, + "acerbities": null, + "ace": [["S", "M"]], + "aces": null, + "ace's": null, + "acetaminophen": [["S"]], + "acetaminophens": null, + "acetate": [["M", "S"]], + "acetate's": null, + "acetates": null, + "acetic": null, + "acetone": [["S", "M"]], + "acetones": null, + "acetone's": null, + "acetonic": null, + "acetylene": [["M", "S"]], + "acetylene's": null, + "acetylenes": null, + "Acevedo": [["M"]], + "Acevedo's": null, + "Achaean": [["M"]], + "Achaean's": null, + "Achebe": [["M"]], + "Achebe's": null, + "ached": [["A"]], + "reached": [["U"]], + "ache": [["D", "S", "G"]], + "aches": [["A"]], + "aching": [["Y"]], + "achene": [["S", "M"]], + "achenes": null, + "achene's": null, + "Achernar": [["M"]], + "Achernar's": null, + "reaches": null, + "Acheson": [["M"]], + "Acheson's": null, + "achievable": [["U"]], + "unachievable": null, + "achieved": [["U", "A"]], + "unachieved": null, + "reachieved": null, + "achieve": [["L", "Z", "G", "R", "S", "D", "B"]], + "achievement": [["S", "M"]], + "achievers": null, + "achieving": null, + "achiever": [["M"]], + "achieves": null, + "achievements": null, + "achievement's": null, + "achiever's": null, + "Achilles": null, + "achingly": null, + "achoo": null, + "achromatic": null, + "achy": [["T", "R"]], + "achiest": null, + "achier": null, + "acidic": null, + "acidification": [["M"]], + "acidification's": null, + "acidify": [["N", "S", "D", "G"]], + "acidifies": null, + "acidified": null, + "acidifying": null, + "acidity": [["S", "M"]], + "acidities": null, + "acidity's": null, + "acidness": [["M"]], + "acidness's": null, + "acidoses": null, + "acidosis": [["M"]], + "acidosis's": null, + "acid": [["S", "M", "Y", "P"]], + "acids": null, + "acid's": null, + "acidly": null, + "acidulous": null, + "acing's": null, + "Ackerman": [["M"]], + "Ackerman's": null, + "acknowledgeable": null, + "acknowledgedly": null, + "acknowledged": [["U"]], + "unacknowledged": null, + "acknowledge": [["G", "Z", "D", "R", "S"]], + "acknowledging": null, + "acknowledgers": null, + "acknowledger": [["M"]], + "acknowledges": null, + "acknowledger's": null, + "acknowledgment": [["S", "A", "M"]], + "acknowledgments": null, + "reacknowledgments": null, + "reacknowledgment": null, + "reacknowledgment's": null, + "acknowledgment's": null, + "ACLU": null, + "Ac": [["M"]], + "Ac's": null, + "ACM": null, + "acme": [["S", "M"]], + "acmes": null, + "acme's": null, + "acne": [["M", "D", "S"]], + "acne's": null, + "acned": null, + "acnes": null, + "acolyte": [["M", "S"]], + "acolyte's": null, + "acolytes": null, + "Aconcagua": [["M"]], + "Aconcagua's": null, + "aconite": [["M", "S"]], + "aconite's": null, + "aconites": null, + "acorn": [["S", "M"]], + "acorns": null, + "acorn's": null, + "Acosta": [["M"]], + "Acosta's": null, + "acoustical": [["Y"]], + "acoustically": null, + "acoustician": [["M"]], + "acoustician's": null, + "acoustic": [["S"]], + "acoustics": [["M"]], + "acoustics's": null, + "acquaintance": [["M", "S"]], + "acquaintance's": null, + "acquaintances": null, + "acquaintanceship": [["S"]], + "acquaintanceships": null, + "acquainted": [["U"]], + "unacquainted": null, + "acquaint": [["G", "A", "S", "D"]], + "acquainting": null, + "reacquainting": null, + "reacquaint": null, + "reacquaints": null, + "reacquainted": null, + "acquaints": null, + "acquiesce": [["G", "S", "D"]], + "acquiescing": null, + "acquiesces": null, + "acquiesced": null, + "acquiescence": [["S", "M"]], + "acquiescences": null, + "acquiescence's": null, + "acquiescent": [["Y"]], + "acquiescently": null, + "acquirable": null, + "acquire": [["A", "S", "D", "G"]], + "reacquire": null, + "reacquires": null, + "reacquired": null, + "reacquiring": null, + "acquires": null, + "acquired": null, + "acquiring": null, + "acquirement": [["S", "M"]], + "acquirements": null, + "acquirement's": null, + "acquisition's": [["A"]], + "reacquisition's": null, + "acquisition": [["S", "M"]], + "acquisitions": null, + "acquisitiveness": [["M", "S"]], + "acquisitiveness's": null, + "acquisitivenesses": null, + "acquisitive": [["P", "Y"]], + "acquisitively": null, + "acquit": [["S"]], + "acquits": null, + "acquittal": [["M", "S"]], + "acquittal's": null, + "acquittals": null, + "acquittance": [["M"]], + "acquittance's": null, + "acquitted": null, + "acquitter": [["M"]], + "acquitter's": null, + "acquitting": null, + "acreage": [["M", "S"]], + "acreage's": null, + "acreages": null, + "acre": [["M", "S"]], + "acre's": null, + "acres": null, + "acridity": [["M", "S"]], + "acridity's": null, + "acridities": null, + "acridness": [["S", "M"]], + "acridnesses": null, + "acridness's": null, + "acrid": [["T", "P", "R", "Y"]], + "acridest": null, + "acrider": null, + "acridly": null, + "acrimoniousness": [["M", "S"]], + "acrimoniousness's": null, + "acrimoniousnesses": null, + "acrimonious": [["Y", "P"]], + "acrimoniously": null, + "acrimony": [["M", "S"]], + "acrimony's": null, + "acrimonies": null, + "acrobatically": null, + "acrobatic": [["S"]], + "acrobatics": [["M"]], + "acrobatics's": null, + "acrobat": [["S", "M"]], + "acrobats": null, + "acrobat's": null, + "acronym": [["S", "M"]], + "acronyms": null, + "acronym's": null, + "acrophobia": [["S", "M"]], + "acrophobias": null, + "acrophobia's": null, + "Acropolis": [["M"]], + "Acropolis's": null, + "acropolis": [["S", "M"]], + "acropolises": null, + "acropolis's": null, + "across": null, + "acrostic": [["S", "M"]], + "acrostics": null, + "acrostic's": null, + "Acrux": [["M"]], + "Acrux's": null, + "acrylate": [["M"]], + "acrylate's": null, + "acrylic": [["S"]], + "acrylics": null, + "ACT": null, + "Actaeon": [["M"]], + "Actaeon's": null, + "Acta": [["M"]], + "Acta's": null, + "ACTH": null, + "acting": [["S"]], + "actings": null, + "actinic": null, + "actinide": [["S", "M"]], + "actinides": null, + "actinide's": null, + "actinium": [["M", "S"]], + "actinium's": null, + "actiniums": null, + "actinometer": [["M", "S"]], + "actinometer's": null, + "actinometers": null, + "action": [["D", "M", "S", "G", "B"]], + "actioned": null, + "action's": [["I", "A"]], + "actions": [["A", "I"]], + "actioning": null, + "actionable": null, + "reactions": null, + "inactions": null, + "inaction's": null, + "reaction's": null, + "activate": [["A", "X", "C", "D", "S", "N", "G", "I"]], + "reactivate": null, + "reactivations": null, + "reactivated": null, + "reactivates": null, + "reactivation": null, + "reactivating": null, + "activations": null, + "deactivations": null, + "inactivations": null, + "deactivate": null, + "deactivated": null, + "deactivates": null, + "deactivation": null, + "deactivating": null, + "activated": [["U"]], + "inactivated": null, + "activates": null, + "inactivates": null, + "activation": [["A", "M", "C", "I"]], + "inactivation": null, + "activating": null, + "inactivating": null, + "inactivate": null, + "unactivated": null, + "reactivation's": null, + "activation's": null, + "deactivation's": null, + "inactivation's": null, + "activator": [["S", "M"]], + "activators": null, + "activator's": null, + "active": [["A", "P", "Y"]], + "reactive": null, + "reactiveness": null, + "reactively": null, + "activeness": [["M", "S"]], + "actively": [["I"]], + "inactively": null, + "activeness's": null, + "activenesses": null, + "actives": null, + "activism": [["M", "S"]], + "activism's": null, + "activisms": null, + "activist": [["M", "S"]], + "activist's": null, + "activists": null, + "activities": [["A"]], + "reactivities": null, + "activity": [["M", "S", "I"]], + "activity's": null, + "inactivity's": null, + "inactivities": null, + "inactivity": null, + "Acton": [["M"]], + "Acton's": null, + "actor": [["M", "A", "S"]], + "actor's": null, + "reactor's": null, + "reactor": null, + "reactors": null, + "actors": null, + "actress": [["S", "M"]], + "actresses": null, + "actress's": null, + "act's": null, + "Acts": null, + "act": [["S", "A", "D", "V", "G"]], + "acts": null, + "reacts": null, + "react": null, + "reacted": [["U"]], + "reacting": null, + "acted": null, + "actuality": [["S", "M"]], + "actualities": null, + "actuality's": null, + "actualization": [["M", "A", "S"]], + "actualization's": null, + "reactualization's": null, + "reactualization": null, + "reactualizations": null, + "actualizations": null, + "actualize": [["G", "S", "D"]], + "actualizing": null, + "actualizes": [["A"]], + "actualized": null, + "reactualizes": null, + "actual": [["S", "Y"]], + "actuals": null, + "actually": null, + "actuarial": [["Y"]], + "actuarially": null, + "actuary": [["M", "S"]], + "actuary's": null, + "actuaries": null, + "actuate": [["G", "N", "X", "S", "D"]], + "actuating": null, + "actuation": [["M"]], + "actuations": null, + "actuates": null, + "actuated": null, + "actuation's": null, + "actuator": [["S", "M"]], + "actuators": null, + "actuator's": null, + "acuity": [["M", "S"]], + "acuity's": null, + "acuities": null, + "acumen": [["S", "M"]], + "acumens": null, + "acumen's": null, + "acupressure": [["S"]], + "acupressures": null, + "acupuncture": [["S", "M"]], + "acupunctures": null, + "acupuncture's": null, + "acupuncturist": [["S"]], + "acupuncturists": null, + "acuteness": [["M", "S"]], + "acuteness's": null, + "acutenesses": null, + "acute": [["Y", "T", "S", "R", "P"]], + "acutely": null, + "acutest": null, + "acutes": null, + "acuter": null, + "acyclic": null, + "acyclically": null, + "acyclovir": [["S"]], + "acyclovirs": null, + "AD": null, + "adage": [["M", "S"]], + "adage's": null, + "adages": null, + "adagio": [["S"]], + "adagios": null, + "Adah": [["M"]], + "Adah's": null, + "Adair": [["M"]], + "Adair's": null, + "Adaline": [["M"]], + "Adaline's": null, + "Ada": [["M"]], + "Ada's": null, + "adamant": [["S", "Y"]], + "adamants": null, + "adamantly": null, + "Adamo": [["M"]], + "Adamo's": null, + "Adam": [["S", "M"]], + "Adams": null, + "Adam's": null, + "Adamson": [["M"]], + "Adamson's": null, + "Adana": [["M"]], + "Adana's": null, + "Adan": [["M"]], + "Adan's": null, + "adaptability": [["M", "S"]], + "adaptability's": null, + "adaptabilities": null, + "adaptable": [["U"]], + "unadaptable": null, + "adaptation": [["M", "S"]], + "adaptation's": null, + "adaptations": null, + "adaptedness": [["M"]], + "adaptedness's": null, + "adapted": [["P"]], + "adapter": [["M"]], + "adapter's": null, + "adapting": [["A"]], + "readapting": null, + "adaption": null, + "adaptively": null, + "adaptiveness": [["M"]], + "adaptiveness's": null, + "adaptive": [["U"]], + "unadaptive": null, + "adaptivity": null, + "adapt": [["S", "R", "D", "B", "Z", "V", "G"]], + "adapts": null, + "adapters": null, + "Adara": [["M"]], + "Adara's": null, + "ad": [["A", "S"]], + "read": [["J", "G", "Z", "B", "R"]], + "reads": [["A"]], + "ads": null, + "ADC": null, + "Adda": [["M"]], + "Adda's": null, + "Addams": null, + "addenda": null, + "addend": [["S", "M"]], + "addends": null, + "addend's": null, + "addendum": [["M"]], + "addendum's": null, + "adder": [["M"]], + "adder's": null, + "Addia": [["M"]], + "Addia's": null, + "addiction": [["M", "S"]], + "addiction's": null, + "addictions": null, + "addictive": [["P"]], + "addictiveness": null, + "addict": [["S", "G", "V", "D"]], + "addicts": null, + "addicting": null, + "addicted": null, + "Addie": [["M"]], + "Addie's": null, + "Addi": [["M"]], + "Addi's": null, + "Addison": [["M"]], + "Addison's": null, + "additional": [["Y"]], + "additionally": null, + "addition": [["M", "S"]], + "addition's": null, + "additions": null, + "additive": [["Y", "M", "S"]], + "additively": null, + "additive's": null, + "additives": null, + "additivity": null, + "addle": [["G", "D", "S"]], + "addling": null, + "addled": null, + "addles": null, + "addressability": null, + "addressable": [["U"]], + "unaddressable": null, + "addressed": [["A"]], + "readdressed": null, + "addressee": [["S", "M"]], + "addressees": null, + "addressee's": null, + "addresser": [["M"]], + "addresser's": null, + "addresses": [["A"]], + "readdresses": null, + "address": [["M", "D", "R", "S", "Z", "G", "B"]], + "address's": null, + "addressers": null, + "addressing": null, + "Addressograph": [["M"]], + "Addressograph's": null, + "adduce": [["G", "R", "S", "D"]], + "adducing": null, + "adducer": [["M"]], + "adduces": null, + "adduced": null, + "adducer's": null, + "adduct": [["D", "G", "V", "S"]], + "adducted": null, + "adducting": null, + "adductive": null, + "adducts": null, + "adduction": [["M"]], + "adduction's": null, + "adductor": [["M"]], + "adductor's": null, + "Addy": [["M"]], + "Addy's": null, + "add": [["Z", "G", "B", "S", "D", "R"]], + "adders": null, + "adding": null, + "addable": null, + "adds": null, + "added": null, + "Adelaida": [["M"]], + "Adelaida's": null, + "Adelaide": [["M"]], + "Adelaide's": null, + "Adela": [["M"]], + "Adela's": null, + "Adelbert": [["M"]], + "Adelbert's": null, + "Adele": [["M"]], + "Adele's": null, + "Adelheid": [["M"]], + "Adelheid's": null, + "Adelice": [["M"]], + "Adelice's": null, + "Adelina": [["M"]], + "Adelina's": null, + "Adelind": [["M"]], + "Adelind's": null, + "Adeline": [["M"]], + "Adeline's": null, + "Adella": [["M"]], + "Adella's": null, + "Adelle": [["M"]], + "Adelle's": null, + "Adel": [["M"]], + "Adel's": null, + "Ade": [["M"]], + "Ade's": null, + "Adena": [["M"]], + "Adena's": null, + "Adenauer": [["M"]], + "Adenauer's": null, + "adenine": [["S", "M"]], + "adenines": null, + "adenine's": null, + "Aden": [["M"]], + "Aden's": null, + "adenoidal": null, + "adenoid": [["S"]], + "adenoids": null, + "adeptness": [["M", "S"]], + "adeptness's": null, + "adeptnesses": null, + "adept": [["R", "Y", "P", "T", "S"]], + "adepter": null, + "adeptly": null, + "adeptest": null, + "adepts": null, + "adequacy": [["I", "M", "S"]], + "inadequacy": null, + "inadequacy's": null, + "inadequacies": null, + "adequacy's": null, + "adequacies": null, + "adequate": [["I", "P", "Y"]], + "inadequate": [["S"]], + "inadequateness": null, + "inadequately": null, + "adequateness": [["S", "M"]], + "adequately": null, + "adequateness's": [["I"]], + "inadequateness's": null, + "adequatenesses": null, + "Adey": [["M"]], + "Adey's": null, + "Adham": [["M"]], + "Adham's": null, + "Adhara": [["M"]], + "Adhara's": null, + "adherence": [["S", "M"]], + "adherences": null, + "adherence's": null, + "adherent": [["Y", "M", "S"]], + "adherently": null, + "adherent's": null, + "adherents": null, + "adherer": [["M"]], + "adherer's": null, + "adhere": [["Z", "G", "R", "S", "D"]], + "adherers": null, + "adhering": null, + "adheres": null, + "adhered": null, + "adhesion": [["M", "S"]], + "adhesion's": null, + "adhesions": null, + "adhesiveness": [["M", "S"]], + "adhesiveness's": null, + "adhesivenesses": null, + "adhesive": [["P", "Y", "M", "S"]], + "adhesively": null, + "adhesive's": null, + "adhesives": null, + "adiabatic": null, + "adiabatically": null, + "Adiana": [["M"]], + "Adiana's": null, + "Adidas": [["M"]], + "Adidas's": null, + "adieu": [["S"]], + "adieus": null, + "Adi": [["M"]], + "Adi's": null, + "Adina": [["M"]], + "Adina's": null, + "adi�s": null, + "adipose": [["S"]], + "adiposes": null, + "Adirondack": [["S", "M"]], + "Adirondacks": null, + "Adirondack's": null, + "adj": null, + "adjacency": [["M", "S"]], + "adjacency's": null, + "adjacencies": null, + "adjacent": [["Y"]], + "adjacently": null, + "adjectival": [["Y"]], + "adjectivally": null, + "adjective": [["M", "Y", "S"]], + "adjective's": null, + "adjectively": null, + "adjectives": null, + "adjoin": [["S", "D", "G"]], + "adjoins": null, + "adjoined": null, + "adjoining": null, + "adjoint": [["M"]], + "adjoint's": null, + "adjourn": [["D", "G", "L", "S"]], + "adjourned": null, + "adjourning": null, + "adjournment": [["S", "M"]], + "adjourns": null, + "adjournments": null, + "adjournment's": null, + "adjudge": [["D", "S", "G"]], + "adjudged": null, + "adjudges": null, + "adjudging": null, + "adjudicate": [["V", "N", "G", "X", "S", "D"]], + "adjudicative": null, + "adjudication": [["M"]], + "adjudicating": null, + "adjudications": null, + "adjudicates": null, + "adjudicated": null, + "adjudication's": null, + "adjudicator": [["S", "M"]], + "adjudicators": null, + "adjudicator's": null, + "adjudicatory": null, + "adjunct": [["V", "S", "Y", "M"]], + "adjunctive": null, + "adjuncts": null, + "adjunctly": null, + "adjunct's": null, + "adjuration": [["S", "M"]], + "adjurations": null, + "adjuration's": null, + "adjure": [["G", "S", "D"]], + "adjuring": null, + "adjures": null, + "adjured": null, + "adjustable": [["U"]], + "unadjustable": null, + "adjustably": null, + "adjust": [["D", "R", "A", "L", "G", "S", "B"]], + "adjusted": [["U"]], + "readjusted": null, + "adjuster": [["S", "M"]], + "readjuster": null, + "readjust": null, + "readjustment": null, + "readjusting": null, + "readjusts": null, + "readjustable": null, + "adjustment": [["M", "A", "S"]], + "adjusting": null, + "adjusts": null, + "unadjusted": null, + "adjuster's": [["A"]], + "readjuster's": null, + "adjusters": null, + "adjustive": null, + "adjustment's": null, + "readjustment's": null, + "readjustments": null, + "adjustments": null, + "adjustor's": null, + "adjutant": [["S", "M"]], + "adjutants": null, + "adjutant's": null, + "Adkins": [["M"]], + "Adkins's": null, + "Adlai": [["M"]], + "Adlai's": null, + "Adler": [["M"]], + "Adler's": null, + "adman": [["M"]], + "adman's": null, + "admen": null, + "administer": [["G", "D", "J", "S"]], + "administering": null, + "administered": null, + "administerings": null, + "administers": null, + "administrable": null, + "administrate": [["X", "S", "D", "V", "N", "G"]], + "administrations": null, + "administrates": null, + "administrated": null, + "administrative": [["Y"]], + "administration": [["M"]], + "administrating": null, + "administration's": null, + "administratively": null, + "administrator": [["M", "S"]], + "administrator's": null, + "administrators": null, + "administratrix": [["M"]], + "administratrix's": null, + "admirableness": [["M"]], + "admirableness's": null, + "admirable": [["P"]], + "admirably": null, + "admiral": [["S", "M"]], + "admirals": null, + "admiral's": null, + "admiralty": [["M", "S"]], + "admiralty's": null, + "admiralties": null, + "Admiralty": [["S"]], + "Admiralties": null, + "admiration": [["M", "S"]], + "admiration's": null, + "admirations": null, + "admirer": [["M"]], + "admirer's": null, + "admire": [["R", "S", "D", "Z", "B", "G"]], + "admires": null, + "admired": null, + "admirers": null, + "admiring": [["Y"]], + "admiringly": null, + "admissibility": [["I", "S", "M"]], + "inadmissibility": null, + "inadmissibilities": null, + "inadmissibility's": null, + "admissibilities": null, + "admissibility's": null, + "admissible": [["I"]], + "inadmissible": null, + "admissibly": null, + "admission": [["A", "M", "S"]], + "readmission": null, + "readmission's": null, + "readmissions": null, + "admission's": null, + "admissions": null, + "admit": [["A", "S"]], + "readmit": null, + "readmits": null, + "admits": null, + "admittance": [["M", "S"]], + "admittance's": null, + "admittances": null, + "admitted": [["A"]], + "readmitted": null, + "admittedly": null, + "admitting": [["A"]], + "readmitting": null, + "admix": [["S", "D", "G"]], + "admixes": null, + "admixed": null, + "admixing": null, + "admixture": [["S", "M"]], + "admixtures": null, + "admixture's": null, + "Adm": [["M"]], + "Adm's": null, + "Ad": [["M", "N"]], + "Ad's": null, + "admonisher": [["M"]], + "admonisher's": null, + "admonish": [["G", "L", "S", "R", "D"]], + "admonishing": [["Y"]], + "admonishment": [["S", "M"]], + "admonishes": null, + "admonished": null, + "admonishingly": null, + "admonishments": null, + "admonishment's": null, + "admonition": [["M", "S"]], + "admonition's": null, + "admonitions": null, + "admonitory": null, + "adobe": [["M", "S"]], + "adobe's": null, + "adobes": null, + "adolescence": [["M", "S"]], + "adolescence's": null, + "adolescences": null, + "adolescent": [["S", "Y", "M"]], + "adolescents": null, + "adolescently": null, + "adolescent's": null, + "Adolf": [["M"]], + "Adolf's": null, + "Adolfo": [["M"]], + "Adolfo's": null, + "Adolphe": [["M"]], + "Adolphe's": null, + "Adolph": [["M"]], + "Adolph's": null, + "Adolpho": [["M"]], + "Adolpho's": null, + "Adolphus": [["M"]], + "Adolphus's": null, + "Ado": [["M"]], + "Ado's": null, + "ado": [["M", "S"]], + "ado's": null, + "ados": null, + "Adonis": [["S", "M"]], + "Adonises": null, + "Adonis's": null, + "adopted": [["A", "U"]], + "readopted": null, + "unadopted": null, + "adopter": [["M"]], + "adopter's": null, + "adoption": [["M", "S"]], + "adoption's": null, + "adoptions": null, + "adoptive": [["Y"]], + "adoptively": null, + "adopt": [["R", "D", "S", "B", "Z", "V", "G"]], + "adopts": [["A"]], + "adoptable": null, + "adopters": null, + "adopting": null, + "readopts": null, + "adorableness": [["S", "M"]], + "adorablenesses": null, + "adorableness's": null, + "adorable": [["P"]], + "adorably": null, + "Adora": [["M"]], + "Adora's": null, + "adoration": [["S", "M"]], + "adorations": null, + "adoration's": null, + "adore": [["D", "S", "R", "G", "Z", "B"]], + "adored": null, + "adores": null, + "adorer": [["M"]], + "adoring": [["Y"]], + "adorers": null, + "Adoree": [["M"]], + "Adoree's": null, + "Adore": [["M"]], + "Adore's": null, + "adorer's": null, + "adoringly": null, + "adorned": [["U"]], + "unadorned": null, + "Adorne": [["M"]], + "Adorne's": null, + "adornment": [["S", "M"]], + "adornments": null, + "adornment's": null, + "adorn": [["S", "G", "L", "D"]], + "adorns": null, + "adorning": null, + "ADP": null, + "Adrea": [["M"]], + "Adrea's": null, + "adrenalin": null, + "adrenaline": [["M", "S"]], + "adrenaline's": null, + "adrenalines": null, + "Adrenalin": [["M", "S"]], + "Adrenalin's": null, + "Adrenalins": null, + "adrenal": [["Y", "S"]], + "adrenally": null, + "adrenals": null, + "Adria": [["M", "X"]], + "Adria's": null, + "Adriaens": null, + "Adriana": [["M"]], + "Adriana's": null, + "Adriane": [["M"]], + "Adriane's": null, + "Adrian": [["M"]], + "Adrian's": null, + "Adrianna": [["M"]], + "Adrianna's": null, + "Adrianne": [["M"]], + "Adrianne's": null, + "Adriano": [["M"]], + "Adriano's": null, + "Adriatic": null, + "Adriena": [["M"]], + "Adriena's": null, + "Adrien": [["M"]], + "Adrien's": null, + "Adrienne": [["M"]], + "Adrienne's": null, + "adrift": null, + "adroitness": [["M", "S"]], + "adroitness's": null, + "adroitnesses": null, + "adroit": [["R", "T", "Y", "P"]], + "adroiter": null, + "adroitest": null, + "adroitly": null, + "ad's": null, + "adsorbate": [["M"]], + "adsorbate's": null, + "adsorbent": [["S"]], + "adsorbents": null, + "adsorb": [["G", "S", "D"]], + "adsorbing": null, + "adsorbs": null, + "adsorbed": null, + "adsorption": [["M", "S"]], + "adsorption's": null, + "adsorptions": null, + "adsorptive": [["Y"]], + "adsorptively": null, + "adulate": [["G", "N", "D", "S", "X"]], + "adulating": null, + "adulation": [["M"]], + "adulated": null, + "adulates": null, + "adulations": null, + "adulation's": null, + "adulator": [["S", "M"]], + "adulators": null, + "adulator's": null, + "adulatory": null, + "adulterant": [["S", "M"]], + "adulterants": null, + "adulterant's": null, + "adulterated": [["U"]], + "unadulterated": [["Y"]], + "adulterate": [["N", "G", "S", "D", "X"]], + "adulteration": [["M"]], + "adulterating": null, + "adulterates": null, + "adulterations": null, + "adulteration's": null, + "adulterer": [["S", "M"]], + "adulterers": null, + "adulterer's": null, + "adulteress": [["M", "S"]], + "adulteress's": null, + "adulteresses": null, + "adulterous": [["Y"]], + "adulterously": null, + "adultery": [["S", "M"]], + "adulteries": null, + "adultery's": null, + "adulthood": [["M", "S"]], + "adulthood's": null, + "adulthoods": null, + "adult": [["M", "Y", "P", "S"]], + "adult's": null, + "adultly": null, + "adultness": [["M"]], + "adults": null, + "adultness's": null, + "adumbrate": [["X", "S", "D", "V", "G", "N"]], + "adumbrations": null, + "adumbrates": null, + "adumbrated": null, + "adumbrative": [["Y"]], + "adumbrating": null, + "adumbration": [["M"]], + "adumbration's": null, + "adumbratively": null, + "adv": null, + "advance": [["D", "S", "R", "L", "Z", "G"]], + "advanced": null, + "advances": null, + "advancer": [["M"]], + "advancement": [["M", "S"]], + "advancers": null, + "advancing": null, + "advancement's": null, + "advancements": null, + "advancer's": null, + "advantage": [["G", "M", "E", "D", "S"]], + "advantaging": null, + "disadvantaging": null, + "advantage's": null, + "disadvantage's": null, + "disadvantage": null, + "disadvantaged": [["P"]], + "disadvantages": null, + "advantaged": null, + "advantages": null, + "advantageous": [["E", "Y"]], + "disadvantageous": null, + "disadvantageously": null, + "advantageously": null, + "advantageousness": [["M"]], + "advantageousness's": null, + "Adventist": [["M"]], + "Adventist's": null, + "adventist": [["S"]], + "adventists": null, + "adventitiousness": [["M"]], + "adventitiousness's": null, + "adventitious": [["P", "Y"]], + "adventitiously": null, + "adventive": [["Y"]], + "adventively": null, + "Advent": [["S", "M"]], + "Advents": null, + "Advent's": null, + "advent": [["S", "V", "M"]], + "advents": null, + "advent's": null, + "adventurer": [["M"]], + "adventurer's": null, + "adventuresome": null, + "adventure": [["S", "R", "D", "G", "M", "Z"]], + "adventures": null, + "adventured": null, + "adventuring": null, + "adventure's": null, + "adventurers": null, + "adventuress": [["S", "M"]], + "adventuresses": null, + "adventuress's": null, + "adventurousness": [["S", "M"]], + "adventurousnesses": null, + "adventurousness's": null, + "adventurous": [["Y", "P"]], + "adventurously": null, + "adverbial": [["M", "Y", "S"]], + "adverbial's": null, + "adverbially": null, + "adverbials": null, + "adverb": [["S", "M"]], + "adverbs": null, + "adverb's": null, + "adversarial": null, + "adversary": [["S", "M"]], + "adversaries": null, + "adversary's": null, + "adverse": [["D", "S", "R", "P", "Y", "T", "G"]], + "adversed": null, + "adverses": null, + "adverser": null, + "adverseness": [["M", "S"]], + "adversely": null, + "adversest": null, + "adversing": null, + "adverseness's": null, + "adversenesses": null, + "adversity": [["S", "M"]], + "adversities": null, + "adversity's": null, + "advert": [["G", "S", "D"]], + "adverting": null, + "adverts": null, + "adverted": null, + "advertised": [["U"]], + "unadvertised": null, + "advertise": [["J", "G", "Z", "S", "R", "D", "L"]], + "advertisings": null, + "advertising": [["M"]], + "advertisers": null, + "advertises": null, + "advertiser": [["M"]], + "advertisement": [["S", "M"]], + "advertisements": null, + "advertisement's": null, + "advertiser's": null, + "advertising's": null, + "advertorial": [["S"]], + "advertorials": null, + "advice": [["S", "M"]], + "advices": null, + "advice's": null, + "Advil": [["M"]], + "Advil's": null, + "advisability": [["S", "I", "M"]], + "advisabilities": null, + "inadvisabilities": null, + "inadvisability": null, + "inadvisability's": null, + "advisability's": null, + "advisable": [["I"]], + "inadvisable": null, + "advisableness": [["M"]], + "advisableness's": null, + "advisably": null, + "advisedly": [["I"]], + "inadvisedly": null, + "advised": [["Y", "U"]], + "unadvisedly": null, + "unadvised": null, + "advisee": [["M", "S"]], + "advisee's": null, + "advisees": null, + "advisement": [["M", "S"]], + "advisement's": null, + "advisements": null, + "adviser": [["M"]], + "adviser's": null, + "advise": [["Z", "R", "S", "D", "G", "L", "B"]], + "advisers": null, + "advises": null, + "advising": null, + "advisor": [["S"]], + "advisors": null, + "advisor's": null, + "advisory": [["S"]], + "advisories": null, + "advocacy": [["S", "M"]], + "advocacies": null, + "advocacy's": null, + "advocate": [["N", "G", "V", "D", "S"]], + "advocation": [["M"]], + "advocating": null, + "advocative": null, + "advocated": null, + "advocates": null, + "advocation's": null, + "advt": null, + "adze's": null, + "adz": [["M", "D", "S", "G"]], + "adz's": null, + "adzed": null, + "adzes": null, + "adzing": null, + "Aegean": null, + "aegis": [["S", "M"]], + "aegises": null, + "aegis's": null, + "Aelfric": [["M"]], + "Aelfric's": null, + "Aeneas": null, + "Aeneid": [["M"]], + "Aeneid's": null, + "aeolian": null, + "Aeolus": [["M"]], + "Aeolus's": null, + "aeon's": null, + "aerate": [["X", "N", "G", "S", "D"]], + "aerations": null, + "aeration": [["M"]], + "aerating": null, + "aerates": null, + "aerated": null, + "aeration's": null, + "aerator": [["M", "S"]], + "aerator's": null, + "aerators": null, + "aerialist": [["M", "S"]], + "aerialist's": null, + "aerialists": null, + "aerial": [["S", "M", "Y"]], + "aerials": null, + "aerial's": null, + "aerially": null, + "Aeriela": [["M"]], + "Aeriela's": null, + "Aeriell": [["M"]], + "Aeriell's": null, + "Aeriel": [["M"]], + "Aeriel's": null, + "aerie": [["S", "R", "M", "T"]], + "aeries": null, + "aerier": null, + "aerie's": null, + "aeriest": null, + "aeroacoustic": null, + "aerobatic": [["S"]], + "aerobatics": null, + "aerobically": null, + "aerobic": [["S"]], + "aerobics": null, + "aerodrome": [["S", "M"]], + "aerodromes": null, + "aerodrome's": null, + "aerodynamically": null, + "aerodynamic": [["S"]], + "aerodynamics": [["M"]], + "aerodynamics's": null, + "aeronautical": [["Y"]], + "aeronautically": null, + "aeronautic": [["S"]], + "aeronautics": [["M"]], + "aeronautics's": null, + "aerosolize": [["D"]], + "aerosolized": null, + "aerosol": [["M", "S"]], + "aerosol's": null, + "aerosols": null, + "aerospace": [["S", "M"]], + "aerospaces": null, + "aerospace's": null, + "Aeschylus": [["M"]], + "Aeschylus's": null, + "Aesculapius": [["M"]], + "Aesculapius's": null, + "Aesop": [["M"]], + "Aesop's": null, + "aesthete": [["S"]], + "aesthetes": null, + "aesthetically": null, + "aestheticism": [["M", "S"]], + "aestheticism's": null, + "aestheticisms": null, + "aesthetics": [["M"]], + "aesthetics's": null, + "aesthetic": [["U"]], + "unaesthetic": null, + "aether": [["M"]], + "aether's": null, + "aetiology": [["M"]], + "aetiology's": null, + "AF": null, + "AFAIK": null, + "afar": [["S"]], + "afars": null, + "AFB": null, + "AFC": null, + "AFDC": null, + "affability": [["M", "S"]], + "affability's": null, + "affabilities": null, + "affable": [["T", "R"]], + "affablest": null, + "affabler": null, + "affably": null, + "affair": [["S", "M"]], + "affairs": null, + "affair's": null, + "affectation": [["M", "S"]], + "affectation's": null, + "affectations": null, + "affectedness": [["E", "M"]], + "disaffectedness": null, + "disaffectedness's": null, + "affectedness's": null, + "affected": [["U", "E", "Y", "P"]], + "unaffected": null, + "unaffectedly": null, + "unaffectedness": null, + "disaffected": null, + "disaffectedly": null, + "affectedly": null, + "affect": [["E", "G", "S", "D"]], + "disaffect": null, + "disaffecting": null, + "disaffects": null, + "affecting": [["Y"]], + "affects": null, + "affecter": [["M"]], + "affecter's": null, + "affectingly": null, + "affectionate": [["U", "Y"]], + "unaffectionate": null, + "unaffectionately": null, + "affectionately": null, + "affectioned": null, + "affection": [["E", "M", "S"]], + "disaffection": null, + "disaffection's": null, + "disaffections": null, + "affection's": null, + "affections": null, + "affectioning": null, + "affective": [["M", "Y"]], + "affective's": null, + "affectively": null, + "afferent": [["Y", "S"]], + "afferently": null, + "afferents": null, + "affiance": [["G", "D", "S"]], + "affiancing": null, + "affianced": null, + "affiances": null, + "affidavit": [["S", "M"]], + "affidavits": null, + "affidavit's": null, + "affiliated": [["U"]], + "unaffiliated": null, + "affiliate": [["E", "X", "S", "D", "N", "G"]], + "disaffiliate": null, + "disaffiliations": null, + "disaffiliates": null, + "disaffiliated": null, + "disaffiliation": null, + "disaffiliating": null, + "affiliations": null, + "affiliates": null, + "affiliation": [["E", "M"]], + "affiliating": null, + "disaffiliation's": null, + "affiliation's": null, + "affine": null, + "affinity": [["S", "M"]], + "affinities": null, + "affinity's": null, + "affirm": [["A", "S", "D", "G"]], + "reaffirm": null, + "reaffirms": null, + "reaffirmed": null, + "reaffirming": null, + "affirms": null, + "affirmed": null, + "affirming": null, + "affirmation": [["S", "A", "M"]], + "affirmations": null, + "reaffirmations": null, + "reaffirmation": null, + "reaffirmation's": null, + "affirmation's": null, + "affirmative": [["S", "Y"]], + "affirmatives": null, + "affirmatively": null, + "affix": [["S", "D", "G"]], + "affixes": null, + "affixed": null, + "affixing": null, + "afflatus": [["M", "S"]], + "afflatus's": null, + "afflatuses": null, + "afflict": [["G", "V", "D", "S"]], + "afflicting": null, + "afflictive": [["Y"]], + "afflicted": null, + "afflicts": null, + "affliction": [["S", "M"]], + "afflictions": null, + "affliction's": null, + "afflictively": null, + "affluence": [["S", "M"]], + "affluences": null, + "affluence's": null, + "affluent": [["Y", "S"]], + "affluently": null, + "affluents": null, + "afford": [["D", "S", "B", "G"]], + "afforded": null, + "affords": null, + "affordable": null, + "affording": null, + "afforest": [["A"]], + "reafforest": null, + "afforestation": [["S", "M"]], + "afforestations": null, + "afforestation's": null, + "afforested": null, + "afforesting": null, + "afforests": null, + "affray": [["M", "D", "S", "G"]], + "affray's": null, + "affrayed": null, + "affrays": null, + "affraying": null, + "affricate": [["V", "N", "M", "S"]], + "affricative": [["M"]], + "affrication": [["M"]], + "affricate's": null, + "affricates": null, + "affrication's": null, + "affricative's": null, + "affright": null, + "affront": [["G", "S", "D", "M"]], + "affronting": null, + "affronts": null, + "affronted": null, + "affront's": null, + "Afghani": [["S", "M"]], + "Afghanis": null, + "Afghani's": null, + "Afghanistan": [["M"]], + "Afghanistan's": null, + "afghan": [["M", "S"]], + "afghan's": null, + "afghans": null, + "Afghan": [["S", "M"]], + "Afghans": null, + "Afghan's": null, + "aficionado": [["M", "S"]], + "aficionado's": null, + "aficionados": null, + "afield": null, + "afire": null, + "aflame": null, + "afloat": null, + "aflutter": null, + "afoot": null, + "afore": null, + "aforementioned": null, + "aforesaid": null, + "aforethought": [["S"]], + "aforethoughts": null, + "afoul": null, + "Afr": null, + "afraid": [["U"]], + "unafraid": null, + "afresh": null, + "Africa": [["M"]], + "Africa's": null, + "African": [["M", "S"]], + "African's": null, + "Africans": null, + "Afrikaans": [["M"]], + "Afrikaans's": null, + "Afrikaner": [["S", "M"]], + "Afrikaners": null, + "Afrikaner's": null, + "afro": null, + "Afrocentric": null, + "Afrocentrism": [["S"]], + "Afrocentrisms": null, + "Afro": [["M", "S"]], + "Afro's": null, + "Afros": null, + "afterbirth": [["M"]], + "afterbirth's": null, + "afterbirths": null, + "afterburner": [["M", "S"]], + "afterburner's": null, + "afterburners": null, + "aftercare": [["S", "M"]], + "aftercares": null, + "aftercare's": null, + "aftereffect": [["M", "S"]], + "aftereffect's": null, + "aftereffects": null, + "afterglow": [["M", "S"]], + "afterglow's": null, + "afterglows": null, + "afterimage": [["M", "S"]], + "afterimage's": null, + "afterimages": null, + "afterlife": [["M"]], + "afterlife's": null, + "afterlives": null, + "aftermath": [["M"]], + "aftermath's": null, + "aftermaths": null, + "aftermost": null, + "afternoon": [["S", "M"]], + "afternoons": null, + "afternoon's": null, + "aftershave": [["S"]], + "aftershaves": null, + "aftershock": [["S", "M"]], + "aftershocks": null, + "aftershock's": null, + "afters": [["M"]], + "afters's": null, + "aftertaste": [["S", "M"]], + "aftertastes": null, + "aftertaste's": null, + "afterthought": [["M", "S"]], + "afterthought's": null, + "afterthoughts": null, + "afterward": [["S"]], + "afterwards": null, + "afterworld": [["M", "S"]], + "afterworld's": null, + "afterworlds": null, + "Afton": [["M"]], + "Afton's": null, + "aft": [["Z", "R"]], + "after": null, + "Agace": [["M"]], + "Agace's": null, + "again": null, + "against": null, + "Agamemnon": [["M"]], + "Agamemnon's": null, + "agapae": null, + "agape": [["S"]], + "agapes": null, + "agar": [["M", "S"]], + "agar's": null, + "agars": null, + "Agassiz": [["M"]], + "Agassiz's": null, + "Agata": [["M"]], + "Agata's": null, + "agate": [["S", "M"]], + "agates": null, + "agate's": null, + "Agatha": [["M"]], + "Agatha's": null, + "Agathe": [["M"]], + "Agathe's": null, + "agave": [["S", "M"]], + "agaves": null, + "agave's": null, + "agedness": [["M"]], + "agedness's": null, + "aged": [["P", "Y"]], + "agedly": null, + "age": [["G", "J", "D", "R", "S", "M", "Z"]], + "aging": null, + "agings": null, + "ager": null, + "ages": null, + "age's": null, + "agers": null, + "ageism": [["S"]], + "ageisms": null, + "ageist": [["S"]], + "ageists": null, + "agelessness": [["M", "S"]], + "agelessness's": null, + "agelessnesses": null, + "ageless": [["Y", "P"]], + "agelessly": null, + "agency": [["S", "M"]], + "agencies": null, + "agency's": null, + "agenda": [["M", "S"]], + "agenda's": null, + "agendas": null, + "agent": [["A", "M", "S"]], + "reagent": null, + "reagent's": null, + "reagents": null, + "agent's": null, + "agents": null, + "agented": null, + "agenting": null, + "agentive": null, + "ageratum": [["M"]], + "ageratum's": null, + "Aggie": [["M"]], + "Aggie's": null, + "Aggi": [["M"]], + "Aggi's": null, + "agglomerate": [["X", "N", "G", "V", "D", "S"]], + "agglomerations": null, + "agglomeration": [["M"]], + "agglomerating": null, + "agglomerative": null, + "agglomerated": null, + "agglomerates": null, + "agglomeration's": null, + "agglutinate": [["V", "N", "G", "X", "S", "D"]], + "agglutinative": null, + "agglutination": [["M"]], + "agglutinating": null, + "agglutinations": null, + "agglutinates": null, + "agglutinated": null, + "agglutination's": null, + "agglutinin": [["M", "S"]], + "agglutinin's": null, + "agglutinins": null, + "aggrandize": [["L", "D", "S", "G"]], + "aggrandizement": [["S", "M"]], + "aggrandized": null, + "aggrandizes": null, + "aggrandizing": null, + "aggrandizements": null, + "aggrandizement's": null, + "aggravate": [["S", "D", "N", "G", "X"]], + "aggravates": null, + "aggravated": null, + "aggravation": [["M"]], + "aggravating": [["Y"]], + "aggravations": null, + "aggravatingly": null, + "aggravation's": null, + "aggregated": [["U"]], + "unaggregated": null, + "aggregate": [["E", "G", "N", "V", "D"]], + "disaggregate": null, + "disaggregating": null, + "disaggregation": null, + "disaggregated": null, + "aggregating": null, + "aggregation": [["S", "M"]], + "aggregative": [["Y"]], + "aggregately": null, + "aggregateness": [["M"]], + "aggregateness's": null, + "aggregates": null, + "aggregations": null, + "aggregation's": null, + "aggregatively": null, + "aggression": [["S", "M"]], + "aggressions": null, + "aggression's": null, + "aggressively": null, + "aggressiveness": [["S"]], + "aggressivenesses": null, + "aggressive": [["U"]], + "unaggressive": null, + "aggressor": [["M", "S"]], + "aggressor's": null, + "aggressors": null, + "aggrieved": [["Y"]], + "aggrievedly": null, + "aggrieve": [["G", "D", "S"]], + "aggrieving": null, + "aggrieves": null, + "Aggy": [["S", "M"]], + "Aggies": null, + "Aggy's": null, + "aghast": null, + "agile": [["Y", "T", "R"]], + "agilely": null, + "agilest": null, + "agiler": null, + "agility": [["M", "S"]], + "agility's": null, + "agilities": null, + "agitated": [["Y"]], + "agitatedly": null, + "agitate": [["X", "V", "N", "G", "S", "D"]], + "agitations": null, + "agitative": null, + "agitation": [["M"]], + "agitating": null, + "agitates": null, + "agitation's": null, + "agitator": [["S", "M"]], + "agitators": null, + "agitator's": null, + "agitprop": [["M", "S"]], + "agitprop's": null, + "agitprops": null, + "Aglaia": [["M"]], + "Aglaia's": null, + "agleam": null, + "aglitter": null, + "aglow": null, + "Ag": [["M"]], + "Ag's": null, + "Agna": [["M"]], + "Agna's": null, + "Agnella": [["M"]], + "Agnella's": null, + "Agnese": [["M"]], + "Agnese's": null, + "Agnes": [["M"]], + "Agnes's": null, + "Agnesse": [["M"]], + "Agnesse's": null, + "Agneta": [["M"]], + "Agneta's": null, + "Agnew": [["M"]], + "Agnew's": null, + "Agni": [["M"]], + "Agni's": null, + "Agnola": [["M"]], + "Agnola's": null, + "agnosticism": [["M", "S"]], + "agnosticism's": null, + "agnosticisms": null, + "agnostic": [["S", "M"]], + "agnostics": null, + "agnostic's": null, + "ago": null, + "agog": null, + "agonizedly": [["S"]], + "agonizedlies": null, + "agonized": [["Y"]], + "agonize": [["Z", "G", "R", "S", "D"]], + "agonizers": null, + "agonizing": [["Y"]], + "agonizer": null, + "agonizes": null, + "agonizingly": null, + "agony": [["S", "M"]], + "agonies": null, + "agony's": null, + "agoraphobia": [["M", "S"]], + "agoraphobia's": null, + "agoraphobias": null, + "agoraphobic": [["S"]], + "agoraphobics": null, + "Agosto": [["M"]], + "Agosto's": null, + "Agra": [["M"]], + "Agra's": null, + "agrarianism": [["M", "S"]], + "agrarianism's": null, + "agrarianisms": null, + "agrarian": [["S"]], + "agrarians": null, + "agreeable": [["E", "P"]], + "disagreeable": [["S"]], + "disagreeableness": null, + "agreeableness": [["S", "M", "E"]], + "agreeablenesses": null, + "disagreeablenesses": null, + "agreeableness's": null, + "disagreeableness's": null, + "agreeably": [["E"]], + "disagreeably": null, + "agreeing": [["E"]], + "disagreeing": null, + "agree": [["L", "E", "B", "D", "S"]], + "agreement": [["E", "S", "M"]], + "disagreement": null, + "disagree": null, + "disagreed": null, + "disagrees": null, + "agreed": null, + "agrees": null, + "disagreements": null, + "disagreement's": null, + "agreements": null, + "agreement's": null, + "agreer": [["S"]], + "agreers": null, + "Agretha": [["M"]], + "Agretha's": null, + "agribusiness": [["S", "M"]], + "agribusinesses": null, + "agribusiness's": null, + "Agricola": [["M"]], + "Agricola's": null, + "agriculturalist": [["S"]], + "agriculturalists": null, + "agricultural": [["Y"]], + "agriculturally": null, + "agriculture": [["M", "S"]], + "agriculture's": null, + "agricultures": null, + "agriculturist": [["S", "M"]], + "agriculturists": null, + "agriculturist's": null, + "Agrippa": [["M"]], + "Agrippa's": null, + "Agrippina": [["M"]], + "Agrippina's": null, + "agrochemicals": null, + "agronomic": [["S"]], + "agronomics": null, + "agronomist": [["S", "M"]], + "agronomists": null, + "agronomist's": null, + "agronomy": [["M", "S"]], + "agronomy's": null, + "agronomies": null, + "aground": null, + "Aguascalientes": [["M"]], + "Aguascalientes's": null, + "ague": [["M", "S"]], + "ague's": null, + "agues": null, + "Aguie": [["M"]], + "Aguie's": null, + "Aguilar": [["M"]], + "Aguilar's": null, + "Aguinaldo": [["M"]], + "Aguinaldo's": null, + "Aguirre": [["M"]], + "Aguirre's": null, + "Aguistin": [["M"]], + "Aguistin's": null, + "Aguste": [["M"]], + "Aguste's": null, + "Agustin": [["M"]], + "Agustin's": null, + "ah": null, + "Ahab": [["M"]], + "Ahab's": null, + "Aharon": [["M"]], + "Aharon's": null, + "aha": [["S"]], + "ahas": null, + "ahead": null, + "ahem": [["S"]], + "ahems": null, + "Ahmadabad": null, + "Ahmad": [["M"]], + "Ahmad's": null, + "Ahmed": [["M"]], + "Ahmed's": null, + "ahoy": [["S"]], + "ahoys": null, + "Ahriman": [["M"]], + "Ahriman's": null, + "AI": null, + "Aida": [["M"]], + "Aida's": null, + "Aidan": [["M"]], + "Aidan's": null, + "aided": [["U"]], + "unaided": null, + "aide": [["M", "S"]], + "aide's": null, + "aides": null, + "aider": [["M"]], + "aider's": null, + "AIDS": null, + "aid": [["Z", "G", "D", "R", "S"]], + "aiders": null, + "aiding": null, + "aids": null, + "Aigneis": [["M"]], + "Aigneis's": null, + "aigrette": [["S", "M"]], + "aigrettes": null, + "aigrette's": null, + "Aiken": [["M"]], + "Aiken's": null, + "Aila": [["M"]], + "Aila's": null, + "Ailbert": [["M"]], + "Ailbert's": null, + "Ailee": [["M"]], + "Ailee's": null, + "Aileen": [["M"]], + "Aileen's": null, + "Aile": [["M"]], + "Aile's": null, + "Ailene": [["M"]], + "Ailene's": null, + "aileron": [["M", "S"]], + "aileron's": null, + "ailerons": null, + "Ailey": [["M"]], + "Ailey's": null, + "Ailina": [["M"]], + "Ailina's": null, + "Aili": [["S", "M"]], + "Ailis": null, + "Aili's": null, + "ail": [["L", "S", "D", "G"]], + "ailment": [["S", "M"]], + "ails": null, + "ailed": null, + "ailing": null, + "ailments": null, + "ailment's": null, + "Ailsun": [["M"]], + "Ailsun's": null, + "Ailyn": [["M"]], + "Ailyn's": null, + "Aimee": [["M"]], + "Aimee's": null, + "Aime": [["M"]], + "Aime's": null, + "aimer": [["M"]], + "aimer's": null, + "Aimil": [["M"]], + "Aimil's": null, + "aimlessness": [["M", "S"]], + "aimlessness's": null, + "aimlessnesses": null, + "aimless": [["Y", "P"]], + "aimlessly": null, + "aim": [["Z", "S", "G", "D", "R"]], + "aimers": null, + "aims": null, + "aiming": null, + "aimed": null, + "Aindrea": [["M"]], + "Aindrea's": null, + "Ainslee": [["M"]], + "Ainslee's": null, + "Ainsley": [["M"]], + "Ainsley's": null, + "Ainslie": [["M"]], + "Ainslie's": null, + "ain't": null, + "Ainu": [["M"]], + "Ainu's": null, + "airbag": [["M", "S"]], + "airbag's": null, + "airbags": null, + "airbase": [["S"]], + "airbases": null, + "airborne": null, + "airbrush": [["S", "D", "M", "G"]], + "airbrushes": null, + "airbrushed": null, + "airbrush's": null, + "airbrushing": null, + "Airbus": [["M"]], + "Airbus's": null, + "airbus": [["S", "M"]], + "airbuses": null, + "airbus's": null, + "aircraft": [["M", "S"]], + "aircraft's": null, + "aircrafts": null, + "aircrew": [["M"]], + "aircrew's": null, + "airdrop": [["M", "S"]], + "airdrop's": null, + "airdrops": null, + "airdropped": null, + "airdropping": null, + "Airedale": [["S", "M"]], + "Airedales": null, + "Airedale's": null, + "Aires": null, + "airfare": [["S"]], + "airfares": null, + "airfield": [["M", "S"]], + "airfield's": null, + "airfields": null, + "airflow": [["S", "M"]], + "airflows": null, + "airflow's": null, + "airfoil": [["M", "S"]], + "airfoil's": null, + "airfoils": null, + "airframe": [["M", "S"]], + "airframe's": null, + "airframes": null, + "airfreight": [["S", "G", "D"]], + "airfreights": null, + "airfreighting": null, + "airfreighted": null, + "airhead": [["M", "S"]], + "airhead's": null, + "airheads": null, + "airily": null, + "airiness": [["M", "S"]], + "airiness's": null, + "airinesses": null, + "airing": [["M"]], + "airing's": null, + "airlessness": [["S"]], + "airlessnesses": null, + "airless": [["P"]], + "airlift": [["M", "D", "S", "G"]], + "airlift's": null, + "airlifted": null, + "airlifts": null, + "airlifting": null, + "airliner": [["M"]], + "airliner's": null, + "airline": [["S", "R", "M", "Z"]], + "airlines": null, + "airline's": null, + "airliners": null, + "airlock": [["M", "S"]], + "airlock's": null, + "airlocks": null, + "airmail": [["D", "S", "G"]], + "airmailed": null, + "airmails": null, + "airmailing": null, + "airman": [["M"]], + "airman's": null, + "airmass": null, + "air": [["M", "D", "R", "T", "Z", "G", "J", "S"]], + "air's": null, + "aired": null, + "airer": null, + "airest": null, + "airers": null, + "airings": null, + "airs": null, + "airmen": null, + "airpark": null, + "airplane": [["S", "M"]], + "airplanes": null, + "airplane's": null, + "airplay": [["S"]], + "airplays": null, + "airport": [["M", "S"]], + "airport's": null, + "airports": null, + "airship": [["M", "S"]], + "airship's": null, + "airships": null, + "airsickness": [["S", "M"]], + "airsicknesses": null, + "airsickness's": null, + "airsick": [["P"]], + "airspace": [["S", "M"]], + "airspaces": null, + "airspace's": null, + "airspeed": [["S", "M"]], + "airspeeds": null, + "airspeed's": null, + "airstrip": [["M", "S"]], + "airstrip's": null, + "airstrips": null, + "airtightness": [["M"]], + "airtightness's": null, + "airtight": [["P"]], + "airtime": null, + "airwaves": null, + "airway": [["S", "M"]], + "airways": null, + "airway's": null, + "airworthiness": [["S", "M"]], + "airworthinesses": null, + "airworthiness's": null, + "airworthy": [["P", "T", "R"]], + "airworthiest": null, + "airworthier": null, + "airy": [["P", "R", "T"]], + "airier": null, + "airiest": null, + "Aisha": [["M"]], + "Aisha's": null, + "aisle": [["D", "S", "G", "M"]], + "aisled": null, + "aisles": null, + "aisling": null, + "aisle's": null, + "aitch": [["M", "S"]], + "aitch's": null, + "aitches": null, + "ajar": null, + "Ajax": [["M"]], + "Ajax's": null, + "Ajay": [["M"]], + "Ajay's": null, + "AK": null, + "aka": null, + "Akbar": [["M"]], + "Akbar's": null, + "Akihito": [["M"]], + "Akihito's": null, + "akimbo": null, + "Akim": [["M"]], + "Akim's": null, + "akin": null, + "Akita": [["M"]], + "Akita's": null, + "Akkad": [["M"]], + "Akkad's": null, + "Akron": [["M"]], + "Akron's": null, + "Aksel": [["M"]], + "Aksel's": null, + "AL": null, + "Alabama": [["M"]], + "Alabama's": null, + "Alabaman": [["S"]], + "Alabamans": null, + "Alabamian": [["M", "S"]], + "Alabamian's": null, + "Alabamians": null, + "alabaster": [["M", "S"]], + "alabaster's": null, + "alabasters": null, + "alack": [["S"]], + "alacks": null, + "alacrity": [["S", "M"]], + "alacrities": null, + "alacrity's": null, + "Aladdin": [["M"]], + "Aladdin's": null, + "Alaine": [["M"]], + "Alaine's": null, + "Alain": [["M"]], + "Alain's": null, + "Alair": [["M"]], + "Alair's": null, + "Alameda": [["M"]], + "Alameda's": null, + "Alamogordo": [["M"]], + "Alamogordo's": null, + "Alamo": [["S", "M"]], + "Alamos": null, + "Alamo's": null, + "ala": [["M", "S"]], + "ala's": null, + "alas": [["S"]], + "Ala": [["M", "S"]], + "Ala's": null, + "Alas": null, + "Alanah": [["M"]], + "Alanah's": null, + "Alana": [["M"]], + "Alana's": null, + "Aland": [["M"]], + "Aland's": null, + "Alane": [["M"]], + "Alane's": null, + "alanine": [["M"]], + "alanine's": null, + "Alan": [["M"]], + "Alan's": null, + "Alanna": [["M"]], + "Alanna's": null, + "Alano": [["M"]], + "Alano's": null, + "Alanson": [["M"]], + "Alanson's": null, + "Alard": [["M"]], + "Alard's": null, + "Alaric": [["M"]], + "Alaric's": null, + "Alar": [["M"]], + "Alar's": null, + "alarming": [["Y"]], + "alarmingly": null, + "alarmist": [["M", "S"]], + "alarmist's": null, + "alarmists": null, + "alarm": [["S", "D", "G"]], + "alarms": null, + "alarmed": null, + "Alasdair": [["M"]], + "Alasdair's": null, + "Alaska": [["M"]], + "Alaska's": null, + "Alaskan": [["S"]], + "Alaskans": null, + "alases": null, + "Alastair": [["M"]], + "Alastair's": null, + "Alasteir": [["M"]], + "Alasteir's": null, + "Alaster": [["M"]], + "Alaster's": null, + "Alayne": [["M"]], + "Alayne's": null, + "albacore": [["S", "M"]], + "albacores": null, + "albacore's": null, + "alba": [["M"]], + "alba's": null, + "Alba": [["M"]], + "Alba's": null, + "Albania": [["M"]], + "Albania's": null, + "Albanian": [["S", "M"]], + "Albanians": null, + "Albanian's": null, + "Albany": [["M"]], + "Albany's": null, + "albatross": [["S", "M"]], + "albatrosses": null, + "albatross's": null, + "albedo": [["M"]], + "albedo's": null, + "Albee": [["M"]], + "Albee's": null, + "albeit": null, + "Alberich": [["M"]], + "Alberich's": null, + "Alberik": [["M"]], + "Alberik's": null, + "Alberio": [["M"]], + "Alberio's": null, + "Alberta": [["M"]], + "Alberta's": null, + "Albertan": [["S"]], + "Albertans": null, + "Albertina": [["M"]], + "Albertina's": null, + "Albertine": [["M"]], + "Albertine's": null, + "Albert": [["M"]], + "Albert's": null, + "Alberto": [["M"]], + "Alberto's": null, + "Albie": [["M"]], + "Albie's": null, + "Albigensian": null, + "Albina": [["M"]], + "Albina's": null, + "albinism": [["S", "M"]], + "albinisms": null, + "albinism's": null, + "albino": [["M", "S"]], + "albino's": null, + "albinos": null, + "Albion": [["M"]], + "Albion's": null, + "Albireo": [["M"]], + "Albireo's": null, + "alb": [["M", "S"]], + "alb's": null, + "albs": null, + "Albrecht": [["M"]], + "Albrecht's": null, + "albumen": [["M"]], + "albumen's": null, + "albumin": [["M", "S"]], + "albumin's": null, + "albumins": null, + "albuminous": null, + "album": [["M", "N", "X", "S"]], + "album's": null, + "albumens": null, + "albums": null, + "Albuquerque": [["M"]], + "Albuquerque's": null, + "Alcatraz": [["M"]], + "Alcatraz's": null, + "Alcestis": [["M"]], + "Alcestis's": null, + "alchemical": null, + "alchemist": [["S", "M"]], + "alchemists": null, + "alchemist's": null, + "alchemy": [["M", "S"]], + "alchemy's": null, + "alchemies": null, + "Alcibiades": [["M"]], + "Alcibiades's": null, + "Alcmena": [["M"]], + "Alcmena's": null, + "Alcoa": [["M"]], + "Alcoa's": null, + "alcoholically": null, + "alcoholic": [["M", "S"]], + "alcoholic's": null, + "alcoholics": null, + "alcoholism": [["S", "M"]], + "alcoholisms": null, + "alcoholism's": null, + "alcohol": [["M", "S"]], + "alcohol's": null, + "alcohols": null, + "Alcott": [["M"]], + "Alcott's": null, + "alcove": [["M", "S", "D"]], + "alcove's": null, + "alcoves": null, + "alcoved": null, + "Alcuin": [["M"]], + "Alcuin's": null, + "Alcyone": [["M"]], + "Alcyone's": null, + "Aldan": [["M"]], + "Aldan's": null, + "Aldebaran": [["M"]], + "Aldebaran's": null, + "aldehyde": [["M"]], + "aldehyde's": null, + "Alden": [["M"]], + "Alden's": null, + "Alderamin": [["M"]], + "Alderamin's": null, + "alderman": [["M"]], + "alderman's": null, + "aldermen": null, + "alder": [["S", "M"]], + "alders": null, + "alder's": null, + "alderwoman": null, + "alderwomen": null, + "Aldin": [["M"]], + "Aldin's": null, + "Aldis": [["M"]], + "Aldis's": null, + "Aldo": [["M"]], + "Aldo's": null, + "Aldon": [["M"]], + "Aldon's": null, + "Aldous": [["M"]], + "Aldous's": null, + "Aldrich": [["M"]], + "Aldrich's": null, + "Aldric": [["M"]], + "Aldric's": null, + "Aldridge": [["M"]], + "Aldridge's": null, + "Aldrin": [["M"]], + "Aldrin's": null, + "Aldus": [["M"]], + "Aldus's": null, + "Aldwin": [["M"]], + "Aldwin's": null, + "aleatory": null, + "Alecia": [["M"]], + "Alecia's": null, + "Aleck": [["M"]], + "Aleck's": null, + "Alec": [["M"]], + "Alec's": null, + "Aleda": [["M"]], + "Aleda's": null, + "alee": null, + "Aleece": [["M"]], + "Aleece's": null, + "Aleen": [["M"]], + "Aleen's": null, + "alehouse": [["M", "S"]], + "alehouse's": null, + "alehouses": null, + "Aleichem": [["M"]], + "Aleichem's": null, + "Alejandra": [["M"]], + "Alejandra's": null, + "Alejandrina": [["M"]], + "Alejandrina's": null, + "Alejandro": [["M"]], + "Alejandro's": null, + "Alejoa": [["M"]], + "Alejoa's": null, + "Aleksandr": [["M"]], + "Aleksandr's": null, + "Alembert": [["M"]], + "Alembert's": null, + "alembic": [["S", "M"]], + "alembics": null, + "alembic's": null, + "ale": [["M", "V", "S"]], + "ale's": null, + "alive": [["P"]], + "ales": null, + "Alena": [["M"]], + "Alena's": null, + "Alene": [["M"]], + "Alene's": null, + "aleph": [["M"]], + "aleph's": null, + "Aleppo": [["M"]], + "Aleppo's": null, + "Aler": [["M"]], + "Aler's": null, + "alerted": [["Y"]], + "alertedly": null, + "alertness": [["M", "S"]], + "alertness's": null, + "alertnesses": null, + "alert": [["S", "T", "Z", "G", "P", "R", "D", "Y"]], + "alerts": null, + "alertest": null, + "alerters": null, + "alerting": null, + "alerter": null, + "alertly": null, + "Alessandra": [["M"]], + "Alessandra's": null, + "Alessandro": [["M"]], + "Alessandro's": null, + "Aleta": [["M"]], + "Aleta's": null, + "Alethea": [["M"]], + "Alethea's": null, + "Aleutian": [["S"]], + "Aleutians": null, + "Aleut": [["S", "M"]], + "Aleuts": null, + "Aleut's": null, + "alewife": [["M"]], + "alewife's": null, + "alewives": null, + "Alexa": [["M"]], + "Alexa's": null, + "Alexander": [["S", "M"]], + "Alexanders": null, + "Alexander's": null, + "Alexandra": [["M"]], + "Alexandra's": null, + "Alexandre": [["M"]], + "Alexandre's": null, + "Alexandria": [["M"]], + "Alexandria's": null, + "Alexandrian": [["S"]], + "Alexandrians": null, + "Alexandrina": [["M"]], + "Alexandrina's": null, + "Alexandr": [["M"]], + "Alexandr's": null, + "Alexandro": [["M", "S"]], + "Alexandro's": null, + "Alexandros": null, + "Alexei": [["M"]], + "Alexei's": null, + "Alexia": [["M"]], + "Alexia's": null, + "Alexina": [["M"]], + "Alexina's": null, + "Alexine": [["M"]], + "Alexine's": null, + "Alexio": [["M"]], + "Alexio's": null, + "Alexi": [["S", "M"]], + "Alexis": null, + "Alexi's": null, + "Alex": [["M"]], + "Alex's": null, + "alfalfa": [["M", "S"]], + "alfalfa's": null, + "alfalfas": null, + "Alfa": [["M"]], + "Alfa's": null, + "Alfie": [["M"]], + "Alfie's": null, + "Alfi": [["M"]], + "Alfi's": null, + "Alf": [["M"]], + "Alf's": null, + "Alfonse": [["M"]], + "Alfonse's": null, + "Alfons": [["M"]], + "Alfons's": null, + "Alfonso": [["M"]], + "Alfonso's": null, + "Alfonzo": [["M"]], + "Alfonzo's": null, + "Alford": [["M"]], + "Alford's": null, + "Alfreda": [["M"]], + "Alfreda's": null, + "Alfred": [["M"]], + "Alfred's": null, + "Alfredo": [["M"]], + "Alfredo's": null, + "alfresco": null, + "Alfy": [["M"]], + "Alfy's": null, + "algae": null, + "algaecide": null, + "algal": null, + "alga": [["M"]], + "alga's": null, + "algebraic": null, + "algebraical": [["Y"]], + "algebraically": null, + "algebraist": [["M"]], + "algebraist's": null, + "algebra": [["M", "S"]], + "algebra's": null, + "algebras": null, + "Algenib": [["M"]], + "Algenib's": null, + "Algeria": [["M"]], + "Algeria's": null, + "Algerian": [["M", "S"]], + "Algerian's": null, + "Algerians": null, + "Alger": [["M"]], + "Alger's": null, + "Algernon": [["M"]], + "Algernon's": null, + "Algieba": [["M"]], + "Algieba's": null, + "Algiers": [["M"]], + "Algiers's": null, + "alginate": [["S", "M"]], + "alginates": null, + "alginate's": null, + "ALGOL": null, + "Algol": [["M"]], + "Algol's": null, + "Algonquian": [["S", "M"]], + "Algonquians": null, + "Algonquian's": null, + "Algonquin": [["S", "M"]], + "Algonquins": null, + "Algonquin's": null, + "algorithmic": null, + "algorithmically": null, + "algorithm": [["M", "S"]], + "algorithm's": null, + "algorithms": null, + "Alhambra": [["M"]], + "Alhambra's": null, + "Alhena": [["M"]], + "Alhena's": null, + "Alia": [["M"]], + "Alia's": null, + "alias": [["G", "S", "D"]], + "aliasing": null, + "aliases": null, + "aliased": null, + "alibi": [["M", "D", "S", "G"]], + "alibi's": null, + "alibied": null, + "alibis": null, + "alibiing": null, + "Alica": [["M"]], + "Alica's": null, + "Alicea": [["M"]], + "Alicea's": null, + "Alice": [["M"]], + "Alice's": null, + "Alicia": [["M"]], + "Alicia's": null, + "Alick": [["M"]], + "Alick's": null, + "Alic": [["M"]], + "Alic's": null, + "Alida": [["M"]], + "Alida's": null, + "Alidia": [["M"]], + "Alidia's": null, + "Alie": [["M"]], + "Alie's": null, + "alienable": [["I", "U"]], + "inalienable": null, + "unalienable": null, + "alienate": [["S", "D", "N", "G", "X"]], + "alienates": null, + "alienated": null, + "alienation": [["M"]], + "alienating": null, + "alienations": null, + "alienation's": null, + "alienist": [["M", "S"]], + "alienist's": null, + "alienists": null, + "alien": [["R", "D", "G", "M", "B", "S"]], + "aliener": null, + "aliened": null, + "aliening": null, + "alien's": null, + "aliens": null, + "Alighieri": [["M"]], + "Alighieri's": null, + "alight": [["D", "S", "G"]], + "alighted": null, + "alights": null, + "alighting": null, + "aligned": [["U"]], + "unaligned": null, + "aligner": [["S", "M"]], + "aligners": null, + "aligner's": null, + "align": [["L", "A", "S", "D", "G"]], + "alignment": [["S", "A", "M"]], + "realignment": null, + "realign": null, + "realigns": null, + "realigned": null, + "realigning": null, + "aligns": null, + "aligning": null, + "alignments": null, + "realignments": null, + "realignment's": null, + "alignment's": null, + "Alika": [["M"]], + "Alika's": null, + "Alikee": [["M"]], + "Alikee's": null, + "alikeness": [["M"]], + "alikeness's": null, + "alike": [["U"]], + "unalike": null, + "alimentary": null, + "aliment": [["S", "D", "M", "G"]], + "aliments": null, + "alimented": null, + "aliment's": null, + "alimenting": null, + "alimony": [["M", "S"]], + "alimony's": null, + "alimonies": null, + "Ali": [["M", "S"]], + "Ali's": null, + "Alis": null, + "Alina": [["M"]], + "Alina's": null, + "Aline": [["M"]], + "Aline's": null, + "alinement's": null, + "Alioth": [["M"]], + "Alioth's": null, + "aliquot": [["S"]], + "aliquots": null, + "Alisa": [["M"]], + "Alisa's": null, + "Alisander": [["M"]], + "Alisander's": null, + "Alisha": [["M"]], + "Alisha's": null, + "Alison": [["M"]], + "Alison's": null, + "Alissa": [["M"]], + "Alissa's": null, + "Alistair": [["M"]], + "Alistair's": null, + "Alister": [["M"]], + "Alister's": null, + "Alisun": [["M"]], + "Alisun's": null, + "aliveness": [["M", "S"]], + "aliveness's": null, + "alivenesses": null, + "Alix": [["M"]], + "Alix's": null, + "aliyah": [["M"]], + "aliyah's": null, + "aliyahs": null, + "Aliza": [["M"]], + "Aliza's": null, + "Alkaid": [["M"]], + "Alkaid's": null, + "alkalies": null, + "alkali": [["M"]], + "alkali's": null, + "alkaline": null, + "alkalinity": [["M", "S"]], + "alkalinity's": null, + "alkalinities": null, + "alkalize": [["S", "D", "G"]], + "alkalizes": null, + "alkalized": null, + "alkalizing": null, + "alkaloid": [["M", "S"]], + "alkaloid's": null, + "alkaloids": null, + "alkyd": [["S"]], + "alkyds": null, + "alkyl": [["M"]], + "alkyl's": null, + "Allahabad": [["M"]], + "Allahabad's": null, + "Allah": [["M"]], + "Allah's": null, + "Alla": [["M"]], + "Alla's": null, + "Allan": [["M"]], + "Allan's": null, + "Allard": [["M"]], + "Allard's": null, + "allay": [["G", "D", "S"]], + "allaying": null, + "allayed": null, + "allays": null, + "Allayne": [["M"]], + "Allayne's": null, + "Alleen": [["M"]], + "Alleen's": null, + "allegation": [["S", "M"]], + "allegations": null, + "allegation's": null, + "alleged": [["Y"]], + "allegedly": null, + "allege": [["S", "D", "G"]], + "alleges": null, + "alleging": null, + "Allegheny": [["M", "S"]], + "Allegheny's": null, + "Alleghenies": null, + "allegiance": [["S", "M"]], + "allegiances": null, + "allegiance's": null, + "allegiant": null, + "allegoric": null, + "allegoricalness": [["M"]], + "allegoricalness's": null, + "allegorical": [["Y", "P"]], + "allegorically": null, + "allegorist": [["M", "S"]], + "allegorist's": null, + "allegorists": null, + "allegory": [["S", "M"]], + "allegories": null, + "allegory's": null, + "Allegra": [["M"]], + "Allegra's": null, + "allegretto": [["M", "S"]], + "allegretto's": null, + "allegrettos": null, + "allegri": null, + "allegro": [["M", "S"]], + "allegro's": null, + "allegros": null, + "allele": [["S", "M"]], + "alleles": null, + "allele's": null, + "alleluia": [["S"]], + "alleluias": null, + "allemande": [["M"]], + "allemande's": null, + "Allendale": [["M"]], + "Allendale's": null, + "Allende": [["M"]], + "Allende's": null, + "Allene": [["M"]], + "Allene's": null, + "Allen": [["M"]], + "Allen's": null, + "Allentown": [["M"]], + "Allentown's": null, + "allergenic": null, + "allergen": [["M", "S"]], + "allergen's": null, + "allergens": null, + "allergic": null, + "allergically": null, + "allergist": [["M", "S"]], + "allergist's": null, + "allergists": null, + "allergy": [["M", "S"]], + "allergy's": null, + "allergies": null, + "alleviate": [["S", "D", "V", "G", "N", "X"]], + "alleviates": null, + "alleviated": null, + "alleviative": null, + "alleviating": null, + "alleviation": [["M"]], + "alleviations": null, + "alleviation's": null, + "alleviator": [["M", "S"]], + "alleviator's": null, + "alleviators": null, + "Alley": [["M"]], + "Alley's": null, + "alley": [["M", "S"]], + "alley's": null, + "alleys": null, + "Alleyn": [["M"]], + "Alleyn's": null, + "alleyway": [["M", "S"]], + "alleyway's": null, + "alleyways": null, + "Allhallows": null, + "alliance": [["M", "S"]], + "alliance's": null, + "alliances": null, + "Allianora": [["M"]], + "Allianora's": null, + "Allie": [["M"]], + "Allie's": null, + "allier": null, + "allies": [["M"]], + "allies's": null, + "alligator": [["D", "M", "G", "S"]], + "alligatored": null, + "alligator's": null, + "alligatoring": null, + "alligators": null, + "Alli": [["M", "S"]], + "Alli's": null, + "Allis": null, + "Allina": [["M"]], + "Allina's": null, + "Allin": [["M"]], + "Allin's": null, + "Allison": [["M"]], + "Allison's": null, + "Allissa": [["M"]], + "Allissa's": null, + "Allister": [["M"]], + "Allister's": null, + "Allistir": [["M"]], + "Allistir's": null, + "alliterate": [["X", "V", "N", "G", "S", "D"]], + "alliterations": null, + "alliterative": [["Y"]], + "alliteration": [["M"]], + "alliterating": null, + "alliterates": null, + "alliterated": null, + "alliteration's": null, + "alliteratively": null, + "Allix": [["M"]], + "Allix's": null, + "allocable": [["U"]], + "unallocable": null, + "allocatable": null, + "allocate": [["A", "C", "S", "D", "N", "G", "X"]], + "reallocate": null, + "reallocates": null, + "reallocated": null, + "reallocation": null, + "reallocating": null, + "reallocations": null, + "deallocate": null, + "deallocates": null, + "deallocated": null, + "deallocation": null, + "deallocating": null, + "deallocations": null, + "allocates": null, + "allocated": [["U"]], + "allocation": [["A", "M", "C"]], + "allocating": null, + "allocations": null, + "unallocated": null, + "reallocation's": null, + "allocation's": null, + "deallocation's": null, + "allocative": null, + "allocator": [["A", "M", "S"]], + "reallocator": null, + "reallocator's": null, + "reallocators": null, + "allocator's": null, + "allocators": null, + "allophone": [["M", "S"]], + "allophone's": null, + "allophones": null, + "allophonic": null, + "allotment": [["M", "S"]], + "allotment's": null, + "allotments": [["A"]], + "reallotments": null, + "allotrope": [["M"]], + "allotrope's": null, + "allotropic": null, + "allots": [["A"]], + "reallots": null, + "allot": [["S", "D", "L"]], + "alloted": null, + "allotted": [["A"]], + "reallotted": null, + "allotter": [["M"]], + "allotter's": null, + "allotting": [["A"]], + "reallotting": null, + "allover": [["S"]], + "allovers": null, + "allowableness": [["M"]], + "allowableness's": null, + "allowable": [["P"]], + "allowably": null, + "allowance": [["G", "S", "D", "M"]], + "allowancing": null, + "allowances": null, + "allowanced": null, + "allowance's": null, + "allowed": [["Y"]], + "allowedly": null, + "allowing": [["E"]], + "disallowing": null, + "allow": [["S", "B", "G", "D"]], + "allows": [["E"]], + "disallows": null, + "alloyed": [["U"]], + "unalloyed": null, + "alloy": [["S", "G", "M", "D"]], + "alloys": null, + "alloying": null, + "alloy's": null, + "all": [["S"]], + "alls": null, + "allspice": [["M", "S"]], + "allspice's": null, + "allspices": null, + "Allstate": [["M"]], + "Allstate's": null, + "Allsun": [["M"]], + "Allsun's": null, + "allude": [["G", "S", "D"]], + "alluding": null, + "alludes": null, + "alluded": null, + "allure": [["G", "L", "S", "D"]], + "alluring": [["Y"]], + "allurement": [["S", "M"]], + "allures": null, + "allured": null, + "allurements": null, + "allurement's": null, + "alluringly": null, + "allusion": [["M", "S"]], + "allusion's": null, + "allusions": null, + "allusiveness": [["M", "S"]], + "allusiveness's": null, + "allusivenesses": null, + "allusive": [["P", "Y"]], + "allusively": null, + "alluvial": [["S"]], + "alluvials": null, + "alluvions": null, + "alluvium": [["M", "S"]], + "alluvium's": null, + "alluviums": null, + "Allx": [["M"]], + "Allx's": null, + "ally": [["A", "S", "D", "G"]], + "really": null, + "reallies": null, + "reallied": null, + "reallying": null, + "allied": null, + "allying": null, + "Allyce": [["M"]], + "Allyce's": null, + "Ally": [["M", "S"]], + "Ally's": null, + "Allies": null, + "Allyn": [["M"]], + "Allyn's": null, + "Allys": null, + "Allyson": [["M"]], + "Allyson's": null, + "alma": null, + "Almach": [["M"]], + "Almach's": null, + "Almaden": [["M"]], + "Almaden's": null, + "almagest": null, + "Alma": [["M"]], + "Alma's": null, + "almanac": [["M", "S"]], + "almanac's": null, + "almanacs": null, + "Almaty": [["M"]], + "Almaty's": null, + "Almeda": [["M"]], + "Almeda's": null, + "Almeria": [["M"]], + "Almeria's": null, + "Almeta": [["M"]], + "Almeta's": null, + "almightiness": [["M"]], + "almightiness's": null, + "Almighty": [["M"]], + "Almighty's": null, + "almighty": [["P"]], + "Almira": [["M"]], + "Almira's": null, + "Almire": [["M"]], + "Almire's": null, + "almond": [["S", "M"]], + "almonds": null, + "almond's": null, + "almoner": [["M", "S"]], + "almoner's": null, + "almoners": null, + "almost": null, + "Al": [["M", "R", "Y"]], + "Al's": null, + "alms": [["A"]], + "realms": null, + "almshouse": [["S", "M"]], + "almshouses": null, + "almshouse's": null, + "almsman": [["M"]], + "almsman's": null, + "alnico": null, + "Alnilam": [["M"]], + "Alnilam's": null, + "Alnitak": [["M"]], + "Alnitak's": null, + "aloe": [["M", "S"]], + "aloe's": null, + "aloes": null, + "aloft": null, + "aloha": [["S", "M"]], + "alohas": null, + "aloha's": null, + "Aloin": [["M"]], + "Aloin's": null, + "Aloise": [["M"]], + "Aloise's": null, + "Aloisia": [["M"]], + "Aloisia's": null, + "aloneness": [["M"]], + "aloneness's": null, + "alone": [["P"]], + "along": null, + "alongshore": null, + "alongside": null, + "Alon": [["M"]], + "Alon's": null, + "Alonso": [["M"]], + "Alonso's": null, + "Alonzo": [["M"]], + "Alonzo's": null, + "aloofness": [["M", "S"]], + "aloofness's": null, + "aloofnesses": null, + "aloof": [["Y", "P"]], + "aloofly": null, + "aloud": null, + "Aloysia": [["M"]], + "Aloysia's": null, + "Aloysius": [["M"]], + "Aloysius's": null, + "alpaca": [["S", "M"]], + "alpacas": null, + "alpaca's": null, + "Alpert": [["M"]], + "Alpert's": null, + "alphabetical": [["Y"]], + "alphabetically": null, + "alphabetic": [["S"]], + "alphabetics": null, + "alphabetization": [["S", "M"]], + "alphabetizations": null, + "alphabetization's": null, + "alphabetizer": [["M"]], + "alphabetizer's": null, + "alphabetize": [["S", "R", "D", "G", "Z"]], + "alphabetizes": null, + "alphabetized": null, + "alphabetizing": null, + "alphabetizers": null, + "alphabet": [["S", "G", "D", "M"]], + "alphabets": null, + "alphabeting": null, + "alphabeted": null, + "alphabet's": null, + "alpha": [["M", "S"]], + "alpha's": null, + "alphas": null, + "alphanumerical": [["Y"]], + "alphanumerically": null, + "alphanumeric": [["S"]], + "alphanumerics": null, + "Alphard": [["M"]], + "Alphard's": null, + "Alphecca": [["M"]], + "Alphecca's": null, + "Alpheratz": [["M"]], + "Alpheratz's": null, + "Alphonse": [["M"]], + "Alphonse's": null, + "Alphonso": [["M"]], + "Alphonso's": null, + "Alpine": null, + "alpine": [["S"]], + "alpines": null, + "alp": [["M", "S"]], + "alp's": null, + "alps": null, + "Alps": null, + "already": null, + "Alric": [["M"]], + "Alric's": null, + "alright": null, + "Alsace": [["M"]], + "Alsace's": null, + "Alsatian": [["M", "S"]], + "Alsatian's": null, + "Alsatians": null, + "also": null, + "Alsop": [["M"]], + "Alsop's": null, + "Alston": [["M"]], + "Alston's": null, + "Altaic": [["M"]], + "Altaic's": null, + "Altai": [["M"]], + "Altai's": null, + "Altair": [["M"]], + "Altair's": null, + "Alta": [["M"]], + "Alta's": null, + "altar": [["M", "S"]], + "altar's": null, + "altars": null, + "altarpiece": [["S", "M"]], + "altarpieces": null, + "altarpiece's": null, + "alterable": [["U", "I"]], + "unalterable": [["P"]], + "inalterable": [["P"]], + "alteration": [["M", "S"]], + "alteration's": null, + "alterations": null, + "altercate": [["N", "X"]], + "altercation": [["M"]], + "altercations": null, + "altercation's": null, + "altered": [["U"]], + "unaltered": null, + "alternate": [["S", "D", "V", "G", "N", "Y", "X"]], + "alternates": null, + "alternated": null, + "alternative": [["Y", "M", "S", "P"]], + "alternating": null, + "alternation": [["M"]], + "alternately": null, + "alternations": null, + "alternation's": null, + "alternativeness": [["M"]], + "alternativeness's": null, + "alternatively": null, + "alternative's": null, + "alternatives": null, + "alternator": [["M", "S"]], + "alternator's": null, + "alternators": null, + "alter": [["R", "D", "Z", "B", "G"]], + "alterer": null, + "alterers": null, + "altering": null, + "Althea": [["M"]], + "Althea's": null, + "although": null, + "altimeter": [["S", "M"]], + "altimeters": null, + "altimeter's": null, + "Altiplano": [["M"]], + "Altiplano's": null, + "altitude": [["S", "M"]], + "altitudes": null, + "altitude's": null, + "altogether": [["S"]], + "altogethers": null, + "Alton": [["M"]], + "Alton's": null, + "alto": [["S", "M"]], + "altos": null, + "alto's": null, + "Altos": [["M"]], + "Altos's": null, + "altruism": [["S", "M"]], + "altruisms": null, + "altruism's": null, + "altruistic": null, + "altruistically": null, + "altruist": [["S", "M"]], + "altruists": null, + "altruist's": null, + "alt": [["R", "Z", "S"]], + "alters": null, + "alts": null, + "ALU": null, + "Aludra": [["M"]], + "Aludra's": null, + "Aluin": [["M"]], + "Aluin's": null, + "Aluino": [["M"]], + "Aluino's": null, + "alumina": [["S", "M"]], + "aluminas": null, + "alumina's": null, + "aluminum": [["M", "S"]], + "aluminum's": null, + "aluminums": null, + "alumnae": null, + "alumna": [["M"]], + "alumna's": null, + "alumni": null, + "alumnus": [["M", "S"]], + "alumnus's": null, + "alumnuses": null, + "alum": [["S", "M"]], + "alums": null, + "alum's": null, + "alundum": null, + "Alva": [["M"]], + "Alva's": null, + "Alvan": [["M"]], + "Alvan's": null, + "Alvarado": [["M"]], + "Alvarado's": null, + "Alvarez": [["M"]], + "Alvarez's": null, + "Alvaro": [["M"]], + "Alvaro's": null, + "alveolar": [["Y"]], + "alveolarly": null, + "alveoli": null, + "alveolus": [["M"]], + "alveolus's": null, + "Alvera": [["M"]], + "Alvera's": null, + "Alverta": [["M"]], + "Alverta's": null, + "Alvie": [["M"]], + "Alvie's": null, + "Alvina": [["M"]], + "Alvina's": null, + "Alvinia": [["M"]], + "Alvinia's": null, + "Alvin": [["M"]], + "Alvin's": null, + "Alvira": [["M"]], + "Alvira's": null, + "Alvis": [["M"]], + "Alvis's": null, + "Alvy": [["M"]], + "Alvy's": null, + "alway": [["S"]], + "always": null, + "Alwin": [["M"]], + "Alwin's": null, + "Alwyn": [["M"]], + "Alwyn's": null, + "Alyce": [["M"]], + "Alyce's": null, + "Alyda": [["M"]], + "Alyda's": null, + "Alyosha": [["M"]], + "Alyosha's": null, + "Alysa": [["M"]], + "Alysa's": null, + "Alyse": [["M"]], + "Alyse's": null, + "Alysia": [["M"]], + "Alysia's": null, + "Alys": [["M"]], + "Alys's": null, + "Alyson": [["M"]], + "Alyson's": null, + "Alyss": null, + "Alyssa": [["M"]], + "Alyssa's": null, + "Alzheimer": [["M"]], + "Alzheimer's": null, + "AM": null, + "AMA": null, + "Amabelle": [["M"]], + "Amabelle's": null, + "Amabel": [["M"]], + "Amabel's": null, + "Amadeus": [["M"]], + "Amadeus's": null, + "Amado": [["M"]], + "Amado's": null, + "amain": null, + "Amalea": [["M"]], + "Amalea's": null, + "Amalee": [["M"]], + "Amalee's": null, + "Amaleta": [["M"]], + "Amaleta's": null, + "amalgamate": [["V", "N", "G", "X", "S", "D"]], + "amalgamative": null, + "amalgamation": [["M"]], + "amalgamating": null, + "amalgamations": null, + "amalgamates": null, + "amalgamated": null, + "amalgamation's": null, + "amalgam": [["M", "S"]], + "amalgam's": null, + "amalgams": null, + "Amalia": [["M"]], + "Amalia's": null, + "Amalie": [["M"]], + "Amalie's": null, + "Amalita": [["M"]], + "Amalita's": null, + "Amalle": [["M"]], + "Amalle's": null, + "Amanda": [["M"]], + "Amanda's": null, + "Amandie": [["M"]], + "Amandie's": null, + "Amandi": [["M"]], + "Amandi's": null, + "Amandy": [["M"]], + "Amandy's": null, + "amanuenses": null, + "amanuensis": [["M"]], + "amanuensis's": null, + "Amara": [["M"]], + "Amara's": null, + "amaranth": [["M"]], + "amaranth's": null, + "amaranths": null, + "amaretto": [["S"]], + "amarettos": null, + "Amargo": [["M"]], + "Amargo's": null, + "Amarillo": [["M"]], + "Amarillo's": null, + "amaryllis": [["M", "S"]], + "amaryllis's": null, + "amaryllises": null, + "am": [["A", "S"]], + "ream": [["M", "D", "R", "G", "Z"]], + "reams": null, + "ams": null, + "amasser": [["M"]], + "amasser's": null, + "amass": [["G", "R", "S", "D"]], + "amassing": null, + "amasses": null, + "amassed": null, + "Amata": [["M"]], + "Amata's": null, + "amateurishness": [["M", "S"]], + "amateurishness's": null, + "amateurishnesses": null, + "amateurish": [["Y", "P"]], + "amateurishly": null, + "amateurism": [["M", "S"]], + "amateurism's": null, + "amateurisms": null, + "amateur": [["S", "M"]], + "amateurs": null, + "amateur's": null, + "Amati": [["M"]], + "Amati's": null, + "amatory": null, + "amazed": [["Y"]], + "amazedly": null, + "amaze": [["L", "D", "S", "R", "G", "Z"]], + "amazement": [["M", "S"]], + "amazes": null, + "amazer": null, + "amazing": [["Y"]], + "amazers": null, + "amazement's": null, + "amazements": null, + "amazingly": null, + "amazonian": null, + "Amazonian": null, + "amazon": [["M", "S"]], + "amazon's": null, + "amazons": null, + "Amazon": [["S", "M"]], + "Amazons": null, + "Amazon's": null, + "ambassadorial": null, + "ambassador": [["M", "S"]], + "ambassador's": null, + "ambassadors": null, + "ambassadorship": [["M", "S"]], + "ambassadorship's": null, + "ambassadorships": null, + "ambassadress": [["S", "M"]], + "ambassadresses": null, + "ambassadress's": null, + "ambergris": [["S", "M"]], + "ambergrises": null, + "ambergris's": null, + "Amberly": [["M"]], + "Amberly's": null, + "amber": [["M", "S"]], + "amber's": null, + "ambers": null, + "Amber": [["Y", "M"]], + "Amber's": null, + "ambiance": [["M", "S"]], + "ambiance's": null, + "ambiances": null, + "ambidexterity": [["M", "S"]], + "ambidexterity's": null, + "ambidexterities": null, + "ambidextrous": [["Y"]], + "ambidextrously": null, + "ambience's": null, + "ambient": [["S"]], + "ambients": null, + "ambiguity": [["M", "S"]], + "ambiguity's": null, + "ambiguities": null, + "ambiguously": [["U"]], + "unambiguously": null, + "ambiguousness": [["M"]], + "ambiguousness's": null, + "ambiguous": [["Y", "P"]], + "ambition": [["G", "M", "D", "S"]], + "ambitioning": null, + "ambition's": null, + "ambitioned": null, + "ambitions": null, + "ambitiousness": [["M", "S"]], + "ambitiousness's": null, + "ambitiousnesses": null, + "ambitious": [["P", "Y"]], + "ambitiously": null, + "ambit": [["M"]], + "ambit's": null, + "ambivalence": [["S", "M"]], + "ambivalences": null, + "ambivalence's": null, + "ambivalent": [["Y"]], + "ambivalently": null, + "amble": [["G", "Z", "D", "S", "R"]], + "ambling": null, + "amblers": null, + "ambled": null, + "ambles": null, + "ambler": [["M"]], + "Amble": [["M"]], + "Amble's": null, + "ambler's": null, + "ambrose": null, + "Ambrose": [["M"]], + "Ambrose's": null, + "ambrosial": [["Y"]], + "ambrosially": null, + "ambrosia": [["S", "M"]], + "ambrosias": null, + "ambrosia's": null, + "Ambrosi": [["M"]], + "Ambrosi's": null, + "Ambrosio": [["M"]], + "Ambrosio's": null, + "Ambrosius": [["M"]], + "Ambrosius's": null, + "Ambros": [["M"]], + "Ambros's": null, + "ambulance": [["M", "S"]], + "ambulance's": null, + "ambulances": null, + "ambulant": [["S"]], + "ambulants": null, + "ambulate": [["D", "S", "N", "G", "X"]], + "ambulated": null, + "ambulates": null, + "ambulation": [["M"]], + "ambulating": null, + "ambulations": null, + "ambulation's": null, + "ambulatory": [["S"]], + "ambulatories": null, + "Ambur": [["M"]], + "Ambur's": null, + "ambuscade": [["M", "G", "S", "R", "D"]], + "ambuscade's": null, + "ambuscading": null, + "ambuscades": null, + "ambuscader": [["M"]], + "ambuscaded": null, + "ambuscader's": null, + "ambusher": [["M"]], + "ambusher's": null, + "ambush": [["M", "Z", "R", "S", "D", "G"]], + "ambush's": null, + "ambushers": null, + "ambushes": null, + "ambushed": null, + "ambushing": null, + "Amby": [["M"]], + "Amby's": null, + "Amdahl": [["M"]], + "Amdahl's": null, + "ameba's": null, + "Amelia": [["M"]], + "Amelia's": null, + "Amelie": [["M"]], + "Amelie's": null, + "Amelina": [["M"]], + "Amelina's": null, + "Ameline": [["M"]], + "Ameline's": null, + "ameliorate": [["X", "V", "G", "N", "S", "D"]], + "ameliorations": null, + "ameliorative": null, + "ameliorating": null, + "amelioration": [["M"]], + "ameliorates": null, + "ameliorated": null, + "amelioration's": null, + "Amelita": [["M"]], + "Amelita's": null, + "amenability": [["S", "M"]], + "amenabilities": null, + "amenability's": null, + "amenably": null, + "amended": [["U"]], + "unamended": null, + "amender": [["M"]], + "amender's": null, + "amendment": [["S", "M"]], + "amendments": null, + "amendment's": null, + "amen": [["D", "R", "G", "T", "S", "B"]], + "amened": null, + "amener": null, + "amening": null, + "amenest": null, + "amens": null, + "amenable": null, + "amend": [["S", "B", "R", "D", "G", "L"]], + "amends": [["M"]], + "amendable": null, + "amending": null, + "amends's": null, + "Amenhotep": [["M"]], + "Amenhotep's": null, + "amenity": [["M", "S"]], + "amenity's": null, + "amenities": null, + "amenorrhea": [["M"]], + "amenorrhea's": null, + "Amerada": [["M"]], + "Amerada's": null, + "Amerasian": [["S"]], + "Amerasians": null, + "amercement": [["M", "S"]], + "amercement's": null, + "amercements": null, + "amerce": [["S", "D", "L", "G"]], + "amerces": null, + "amerced": null, + "amercing": null, + "Americana": [["M"]], + "Americana's": null, + "Americanism": [["S", "M"]], + "Americanisms": null, + "Americanism's": null, + "Americanization": [["S", "M"]], + "Americanizations": null, + "Americanization's": null, + "americanized": null, + "Americanize": [["S", "D", "G"]], + "Americanizes": null, + "Americanized": null, + "Americanizing": null, + "American": [["M", "S"]], + "American's": null, + "Americans": null, + "America": [["S", "M"]], + "Americas": null, + "America's": null, + "americium": [["M", "S"]], + "americium's": null, + "americiums": null, + "Amerigo": [["M"]], + "Amerigo's": null, + "Amerindian": [["M", "S"]], + "Amerindian's": null, + "Amerindians": null, + "Amerind": [["M", "S"]], + "Amerind's": null, + "Amerinds": null, + "Amer": [["M"]], + "Amer's": null, + "Amery": [["M"]], + "Amery's": null, + "Ameslan": [["M"]], + "Ameslan's": null, + "Ame": [["S", "M"]], + "Ames": null, + "Ame's": null, + "amethystine": null, + "amethyst": [["M", "S"]], + "amethyst's": null, + "amethysts": null, + "Amharic": [["M"]], + "Amharic's": null, + "Amherst": [["M"]], + "Amherst's": null, + "amiability": [["M", "S"]], + "amiability's": null, + "amiabilities": null, + "amiableness": [["M"]], + "amiableness's": null, + "amiable": [["R", "P", "T"]], + "amiabler": null, + "amiablest": null, + "amiably": null, + "amicability": [["S", "M"]], + "amicabilities": null, + "amicability's": null, + "amicableness": [["M"]], + "amicableness's": null, + "amicable": [["P"]], + "amicably": null, + "amide": [["S", "M"]], + "amides": null, + "amide's": null, + "amid": [["S"]], + "amids": null, + "amidships": null, + "amidst": null, + "Amie": [["M"]], + "Amie's": null, + "Amiga": [["M"]], + "Amiga's": null, + "amigo": [["M", "S"]], + "amigo's": null, + "amigos": null, + "Amii": [["M"]], + "Amii's": null, + "Amil": [["M"]], + "Amil's": null, + "Ami": [["M"]], + "Ami's": null, + "amines": null, + "aminobenzoic": null, + "amino": [["M"]], + "amino's": null, + "amir's": null, + "Amish": null, + "amiss": null, + "Amitie": [["M"]], + "Amitie's": null, + "Amity": [["M"]], + "Amity's": null, + "amity": [["S", "M"]], + "amities": null, + "amity's": null, + "Ammamaria": [["M"]], + "Ammamaria's": null, + "Amman": [["M"]], + "Amman's": null, + "Ammerman": [["M"]], + "Ammerman's": null, + "ammeter": [["M", "S"]], + "ammeter's": null, + "ammeters": null, + "ammo": [["M", "S"]], + "ammo's": null, + "ammos": null, + "ammoniac": null, + "ammonia": [["M", "S"]], + "ammonia's": null, + "ammonias": null, + "ammonium": [["M"]], + "ammonium's": null, + "Am": [["M", "R"]], + "Am's": null, + "ammunition": [["M", "S"]], + "ammunition's": null, + "ammunitions": null, + "amnesiac": [["M", "S"]], + "amnesiac's": null, + "amnesiacs": null, + "amnesia": [["S", "M"]], + "amnesias": null, + "amnesia's": null, + "amnesic": [["S"]], + "amnesics": null, + "amnesty": [["G", "M", "S", "D"]], + "amnestying": null, + "amnesty's": null, + "amnesties": null, + "amnestied": null, + "amniocenteses": null, + "amniocentesis": [["M"]], + "amniocentesis's": null, + "amnion": [["S", "M"]], + "amnions": null, + "amnion's": null, + "amniotic": null, + "Amoco": [["M"]], + "Amoco's": null, + "amoeba": [["S", "M"]], + "amoebas": null, + "amoeba's": null, + "amoebic": null, + "amoeboid": null, + "amok": [["M", "S"]], + "amok's": null, + "amoks": null, + "among": null, + "amongst": null, + "Amontillado": [["M"]], + "Amontillado's": null, + "amontillado": [["M", "S"]], + "amontillado's": null, + "amontillados": null, + "amorality": [["M", "S"]], + "amorality's": null, + "amoralities": null, + "amoral": [["Y"]], + "amorally": null, + "amorousness": [["S", "M"]], + "amorousnesses": null, + "amorousness's": null, + "amorous": [["P", "Y"]], + "amorously": null, + "amorphousness": [["M", "S"]], + "amorphousness's": null, + "amorphousnesses": null, + "amorphous": [["P", "Y"]], + "amorphously": null, + "amortization": [["S", "U", "M"]], + "amortizations": null, + "unamortizations": null, + "unamortization": null, + "unamortization's": null, + "amortization's": null, + "amortized": [["U"]], + "unamortized": null, + "amortize": [["S", "D", "G"]], + "amortizes": null, + "amortizing": null, + "Amory": [["M"]], + "Amory's": null, + "Amos": null, + "amount": [["S", "M", "R", "D", "Z", "G"]], + "amounts": null, + "amount's": null, + "amounter": null, + "amounted": null, + "amounters": null, + "amounting": null, + "amour": [["M", "S"]], + "amour's": null, + "amours": null, + "Amparo": [["M"]], + "Amparo's": null, + "amperage": [["S", "M"]], + "amperages": null, + "amperage's": null, + "Ampere": [["M"]], + "Ampere's": null, + "ampere": [["M", "S"]], + "ampere's": null, + "amperes": null, + "ampersand": [["M", "S"]], + "ampersand's": null, + "ampersands": null, + "Ampex": [["M"]], + "Ampex's": null, + "amphetamine": [["M", "S"]], + "amphetamine's": null, + "amphetamines": null, + "amphibian": [["S", "M"]], + "amphibians": null, + "amphibian's": null, + "amphibiousness": [["M"]], + "amphibiousness's": null, + "amphibious": [["P", "Y"]], + "amphibiously": null, + "amphibology": [["M"]], + "amphibology's": null, + "amphitheater": [["S", "M"]], + "amphitheaters": null, + "amphitheater's": null, + "amphorae": null, + "amphora": [["M"]], + "amphora's": null, + "ampleness": [["M"]], + "ampleness's": null, + "ample": [["P", "T", "R"]], + "amplest": null, + "ampler": null, + "amplification": [["M"]], + "amplification's": null, + "amplifier": [["M"]], + "amplifier's": null, + "amplify": [["D", "R", "S", "X", "G", "N", "Z"]], + "amplified": null, + "amplifies": null, + "amplifications": null, + "amplifying": null, + "amplifiers": null, + "amplitude": [["M", "S"]], + "amplitude's": null, + "amplitudes": null, + "ampoule's": null, + "amp": [["S", "G", "M", "D", "Y"]], + "amps": null, + "amping": null, + "amp's": null, + "amped": null, + "amply": null, + "ampule": [["S", "M"]], + "ampules": null, + "ampule's": null, + "amputate": [["D", "S", "N", "G", "X"]], + "amputated": null, + "amputates": null, + "amputation": [["M"]], + "amputating": null, + "amputations": null, + "amputation's": null, + "amputee": [["S", "M"]], + "amputees": null, + "amputee's": null, + "Amritsar": [["M"]], + "Amritsar's": null, + "Amsterdam": [["M"]], + "Amsterdam's": null, + "amt": null, + "Amtrak": [["M"]], + "Amtrak's": null, + "amuck's": null, + "amulet": [["S", "M"]], + "amulets": null, + "amulet's": null, + "Amundsen": [["M"]], + "Amundsen's": null, + "Amur": [["M"]], + "Amur's": null, + "amused": [["Y"]], + "amusedly": null, + "amuse": [["L", "D", "S", "R", "G", "V", "Z"]], + "amusement": [["S", "M"]], + "amuses": null, + "amuser": [["M"]], + "amusing": [["Y", "P"]], + "amusive": null, + "amusers": null, + "amusements": null, + "amusement's": null, + "amuser's": null, + "amusingness": [["M"]], + "amusingness's": null, + "amusingly": null, + "Amway": [["M"]], + "Amway's": null, + "Amye": [["M"]], + "Amye's": null, + "amylase": [["M", "S"]], + "amylase's": null, + "amylases": null, + "amyl": [["M"]], + "amyl's": null, + "Amy": [["M"]], + "Amy's": null, + "Anabal": [["M"]], + "Anabal's": null, + "Anabaptist": [["S", "M"]], + "Anabaptists": null, + "Anabaptist's": null, + "Anabella": [["M"]], + "Anabella's": null, + "Anabelle": [["M"]], + "Anabelle's": null, + "Anabel": [["M"]], + "Anabel's": null, + "anabolic": null, + "anabolism": [["M", "S"]], + "anabolism's": null, + "anabolisms": null, + "anachronism": [["S", "M"]], + "anachronisms": null, + "anachronism's": null, + "anachronistic": null, + "anachronistically": null, + "Anacin": [["M"]], + "Anacin's": null, + "anaconda": [["M", "S"]], + "anaconda's": null, + "anacondas": null, + "Anacreon": [["M"]], + "Anacreon's": null, + "anaerobe": [["S", "M"]], + "anaerobes": null, + "anaerobe's": null, + "anaerobic": null, + "anaerobically": null, + "anaglyph": [["M"]], + "anaglyph's": null, + "anagrammatic": null, + "anagrammatically": null, + "anagrammed": null, + "anagramming": null, + "anagram": [["M", "S"]], + "anagram's": null, + "anagrams": null, + "Anaheim": [["M"]], + "Anaheim's": null, + "Analects": [["M"]], + "Analects's": null, + "analgesia": [["M", "S"]], + "analgesia's": null, + "analgesias": null, + "analgesic": [["S"]], + "analgesics": null, + "Analiese": [["M"]], + "Analiese's": null, + "Analise": [["M"]], + "Analise's": null, + "Anallese": [["M"]], + "Anallese's": null, + "Anallise": [["M"]], + "Anallise's": null, + "analogical": [["Y"]], + "analogically": null, + "analogize": [["S", "D", "G"]], + "analogizes": null, + "analogized": null, + "analogizing": null, + "analogousness": [["M", "S"]], + "analogousness's": null, + "analogousnesses": null, + "analogous": [["Y", "P"]], + "analogously": null, + "analog": [["S", "M"]], + "analogs": null, + "analog's": null, + "analogue": [["S", "M"]], + "analogues": null, + "analogue's": null, + "analogy": [["M", "S"]], + "analogy's": null, + "analogies": null, + "anal": [["Y"]], + "anally": null, + "analysand": [["M", "S"]], + "analysand's": null, + "analysands": null, + "analyses": null, + "analysis": [["A", "M"]], + "reanalysis": null, + "reanalysis's": null, + "analysis's": null, + "analyst": [["S", "M"]], + "analysts": null, + "analyst's": null, + "analytical": [["Y"]], + "analytically": null, + "analyticity": [["S"]], + "analyticities": null, + "analytic": [["S"]], + "analytics": [["M"]], + "analytics's": null, + "analyzable": [["U"]], + "unanalyzable": null, + "analyze": [["D", "R", "S", "Z", "G", "A"]], + "analyzed": [["U"]], + "reanalyzed": null, + "analyzer": [["M"]], + "reanalyzer": null, + "analyzes": null, + "reanalyzes": null, + "analyzers": null, + "reanalyzers": null, + "analyzing": null, + "reanalyzing": null, + "reanalyze": null, + "unanalyzed": null, + "analyzer's": null, + "Ana": [["M"]], + "Ana's": null, + "anamorphic": null, + "Ananias": [["M"]], + "Ananias's": null, + "anapaest's": null, + "anapestic": [["S"]], + "anapestics": null, + "anapest": [["S", "M"]], + "anapests": null, + "anapest's": null, + "anaphora": [["M"]], + "anaphora's": null, + "anaphoric": null, + "anaphorically": null, + "anaplasmosis": [["M"]], + "anaplasmosis's": null, + "anarchic": null, + "anarchical": [["Y"]], + "anarchically": null, + "anarchism": [["M", "S"]], + "anarchism's": null, + "anarchisms": null, + "anarchistic": null, + "anarchist": [["M", "S"]], + "anarchist's": null, + "anarchists": null, + "anarchy": [["M", "S"]], + "anarchy's": null, + "anarchies": null, + "Anastasia": [["M"]], + "Anastasia's": null, + "Anastasie": [["M"]], + "Anastasie's": null, + "Anastassia": [["M"]], + "Anastassia's": null, + "anastigmatic": null, + "anastomoses": null, + "anastomosis": [["M"]], + "anastomosis's": null, + "anastomotic": null, + "anathema": [["M", "S"]], + "anathema's": null, + "anathemas": null, + "anathematize": [["G", "S", "D"]], + "anathematizing": null, + "anathematizes": null, + "anathematized": null, + "Anatola": [["M"]], + "Anatola's": null, + "Anatole": [["M"]], + "Anatole's": null, + "Anatolia": [["M"]], + "Anatolia's": null, + "Anatolian": null, + "Anatollo": [["M"]], + "Anatollo's": null, + "Anatol": [["M"]], + "Anatol's": null, + "anatomic": null, + "anatomical": [["Y", "S"]], + "anatomically": null, + "anatomicals": null, + "anatomist": [["M", "S"]], + "anatomist's": null, + "anatomists": null, + "anatomize": [["G", "S", "D"]], + "anatomizing": null, + "anatomizes": null, + "anatomized": null, + "anatomy": [["M", "S"]], + "anatomy's": null, + "anatomies": null, + "Anaxagoras": [["M"]], + "Anaxagoras's": null, + "Ancell": [["M"]], + "Ancell's": null, + "ancestor": [["S", "M", "D", "G"]], + "ancestors": null, + "ancestor's": null, + "ancestored": null, + "ancestoring": null, + "ancestral": [["Y"]], + "ancestrally": null, + "ancestress": [["S", "M"]], + "ancestresses": null, + "ancestress's": null, + "ancestry": [["S", "M"]], + "ancestries": null, + "ancestry's": null, + "Anchorage": [["M"]], + "Anchorage's": null, + "anchorage": [["S", "M"]], + "anchorages": null, + "anchorage's": null, + "anchored": [["U"]], + "unanchored": null, + "anchorite": [["M", "S"]], + "anchorite's": null, + "anchorites": null, + "anchoritism": [["M"]], + "anchoritism's": null, + "anchorman": [["M"]], + "anchorman's": null, + "anchormen": null, + "anchorpeople": null, + "anchorperson": [["S"]], + "anchorpersons": null, + "anchor": [["S", "G", "D", "M"]], + "anchors": null, + "anchoring": null, + "anchor's": null, + "anchorwoman": null, + "anchorwomen": null, + "anchovy": [["M", "S"]], + "anchovy's": null, + "anchovies": null, + "ancientness": [["M", "S"]], + "ancientness's": null, + "ancientnesses": null, + "ancient": [["S", "R", "Y", "T", "P"]], + "ancients": null, + "ancienter": null, + "anciently": null, + "ancientest": null, + "ancillary": [["S"]], + "ancillaries": null, + "an": [["C", "S"]], + "dean": [["D", "M", "G"]], + "deans": null, + "ans": [["M"]], + "Andalusia": [["M"]], + "Andalusia's": null, + "Andalusian": null, + "Andaman": null, + "andante": [["S"]], + "andantes": null, + "and": [["D", "Z", "G", "S"]], + "anded": null, + "anders": null, + "anding": null, + "ands": null, + "Andean": [["M"]], + "Andean's": null, + "Andeee": [["M"]], + "Andeee's": null, + "Andee": [["M"]], + "Andee's": null, + "Anderea": [["M"]], + "Anderea's": null, + "Andersen": [["M"]], + "Andersen's": null, + "Anders": [["N"]], + "Anderson": [["M"]], + "Anderson's": null, + "Andes": null, + "Andie": [["M"]], + "Andie's": null, + "Andi": [["M"]], + "Andi's": null, + "andiron": [["M", "S"]], + "andiron's": null, + "andirons": null, + "Andonis": [["M"]], + "Andonis's": null, + "Andorra": [["M"]], + "Andorra's": null, + "Andover": [["M"]], + "Andover's": null, + "Andra": [["S", "M"]], + "Andras": null, + "Andra's": null, + "Andrea": [["M", "S"]], + "Andrea's": null, + "Andreas": null, + "Andreana": [["M"]], + "Andreana's": null, + "Andree": [["M"]], + "Andree's": null, + "Andrei": [["M"]], + "Andrei's": null, + "Andrej": [["M"]], + "Andrej's": null, + "Andre": [["S", "M"]], + "Andres": null, + "Andre's": null, + "Andrew": [["M", "S"]], + "Andrew's": null, + "Andrews": null, + "Andrey": [["M"]], + "Andrey's": null, + "Andria": [["M"]], + "Andria's": null, + "Andriana": [["M"]], + "Andriana's": null, + "Andriette": [["M"]], + "Andriette's": null, + "Andris": null, + "androgenic": null, + "androgen": [["S", "M"]], + "androgens": null, + "androgen's": null, + "androgynous": null, + "androgyny": [["S", "M"]], + "androgynies": null, + "androgyny's": null, + "android": [["M", "S"]], + "android's": null, + "androids": null, + "Andromache": [["M"]], + "Andromache's": null, + "Andromeda": [["M"]], + "Andromeda's": null, + "Andropov": [["M"]], + "Andropov's": null, + "Andros": [["M"]], + "Andros's": null, + "Andrus": [["M"]], + "Andrus's": null, + "Andy": [["M"]], + "Andy's": null, + "anecdotal": [["Y"]], + "anecdotally": null, + "anecdote": [["S", "M"]], + "anecdotes": null, + "anecdote's": null, + "anechoic": null, + "anemia": [["S", "M"]], + "anemias": null, + "anemia's": null, + "anemically": null, + "anemic": [["S"]], + "anemics": null, + "anemometer": [["M", "S"]], + "anemometer's": null, + "anemometers": null, + "anemometry": [["M"]], + "anemometry's": null, + "anemone": [["S", "M"]], + "anemones": null, + "anemone's": null, + "anent": null, + "aneroid": null, + "Anestassia": [["M"]], + "Anestassia's": null, + "anesthesia": [["M", "S"]], + "anesthesia's": null, + "anesthesias": null, + "anesthesiologist": [["M", "S"]], + "anesthesiologist's": null, + "anesthesiologists": null, + "anesthesiology": [["S", "M"]], + "anesthesiologies": null, + "anesthesiology's": null, + "anesthetically": null, + "anesthetic": [["S", "M"]], + "anesthetics": null, + "anesthetic's": null, + "anesthetist": [["M", "S"]], + "anesthetist's": null, + "anesthetists": null, + "anesthetization": [["S", "M"]], + "anesthetizations": null, + "anesthetization's": null, + "anesthetizer": [["M"]], + "anesthetizer's": null, + "anesthetize": [["Z", "S", "R", "D", "G"]], + "anesthetizers": null, + "anesthetizes": null, + "anesthetized": null, + "anesthetizing": null, + "Anet": [["M"]], + "Anet's": null, + "Anetta": [["M"]], + "Anetta's": null, + "Anette": [["M"]], + "Anette's": null, + "Anett": [["M"]], + "Anett's": null, + "aneurysm": [["M", "S"]], + "aneurysm's": null, + "aneurysms": null, + "anew": null, + "Angara": [["M"]], + "Angara's": null, + "Angela": [["M"]], + "Angela's": null, + "Angeleno": [["S", "M"]], + "Angelenos": null, + "Angeleno's": null, + "Angele": [["S", "M"]], + "Angeles": null, + "Angele's": null, + "angelfish": [["S", "M"]], + "angelfishes": null, + "angelfish's": null, + "Angelia": [["M"]], + "Angelia's": null, + "angelic": null, + "angelical": [["Y"]], + "angelically": null, + "Angelica": [["M"]], + "Angelica's": null, + "angelica": [["M", "S"]], + "angelica's": null, + "angelicas": null, + "Angelico": [["M"]], + "Angelico's": null, + "Angelika": [["M"]], + "Angelika's": null, + "Angeli": [["M"]], + "Angeli's": null, + "Angelina": [["M"]], + "Angelina's": null, + "Angeline": [["M"]], + "Angeline's": null, + "Angelique": [["M"]], + "Angelique's": null, + "Angelita": [["M"]], + "Angelita's": null, + "Angelle": [["M"]], + "Angelle's": null, + "Angel": [["M"]], + "Angel's": null, + "angel": [["M", "D", "S", "G"]], + "angel's": null, + "angeled": null, + "angels": null, + "angeling": null, + "Angelo": [["M"]], + "Angelo's": null, + "Angelou": [["M"]], + "Angelou's": null, + "Ange": [["M"]], + "Ange's": null, + "anger": [["G", "D", "M", "S"]], + "angering": null, + "angered": null, + "anger's": null, + "angers": null, + "Angevin": [["M"]], + "Angevin's": null, + "Angie": [["M"]], + "Angie's": null, + "Angil": [["M"]], + "Angil's": null, + "angina": [["M", "S"]], + "angina's": null, + "anginas": null, + "angiography": null, + "angioplasty": [["S"]], + "angioplasties": null, + "angiosperm": [["M", "S"]], + "angiosperm's": null, + "angiosperms": null, + "Angkor": [["M"]], + "Angkor's": null, + "angle": [["G", "M", "Z", "D", "S", "R", "J"]], + "angling": [["M"]], + "angle's": null, + "anglers": null, + "angled": null, + "angles": null, + "angler": [["M"]], + "anglings": null, + "angler's": null, + "Angles": null, + "angleworm": [["M", "S"]], + "angleworm's": null, + "angleworms": null, + "Anglia": [["M"]], + "Anglia's": null, + "Anglicanism": [["M", "S"]], + "Anglicanism's": null, + "Anglicanisms": null, + "Anglican": [["M", "S"]], + "Anglican's": null, + "Anglicans": null, + "Anglicism": [["S", "M"]], + "Anglicisms": null, + "Anglicism's": null, + "Anglicization": [["M", "S"]], + "Anglicization's": null, + "Anglicizations": null, + "anglicize": [["S", "D", "G"]], + "anglicizes": null, + "anglicized": null, + "anglicizing": null, + "Anglicize": [["S", "D", "G"]], + "Anglicizes": null, + "Anglicized": null, + "Anglicizing": null, + "angling's": null, + "Anglo": [["M", "S"]], + "Anglo's": null, + "Anglos": null, + "Anglophile": [["S", "M"]], + "Anglophiles": null, + "Anglophile's": null, + "Anglophilia": [["M"]], + "Anglophilia's": null, + "Anglophobe": [["M", "S"]], + "Anglophobe's": null, + "Anglophobes": null, + "Anglophobia": [["M"]], + "Anglophobia's": null, + "Angola": [["M"]], + "Angola's": null, + "Angolan": [["S"]], + "Angolans": null, + "angora": [["M", "S"]], + "angora's": null, + "angoras": null, + "Angora": [["M", "S"]], + "Angora's": null, + "Angoras": null, + "angrily": null, + "angriness": [["M"]], + "angriness's": null, + "angry": [["R", "T", "P"]], + "angrier": null, + "angriest": null, + "angst": [["M", "S"]], + "angst's": null, + "angsts": null, + "�ngstr�m": [["M"]], + "�ngstr�m's": null, + "angstrom": [["M", "S"]], + "angstrom's": null, + "angstroms": null, + "Anguilla": [["M"]], + "Anguilla's": null, + "anguish": [["D", "S", "M", "G"]], + "anguished": null, + "anguishes": null, + "anguish's": null, + "anguishing": null, + "angularity": [["M", "S"]], + "angularity's": null, + "angularities": null, + "angular": [["Y"]], + "angularly": null, + "Angus": [["M"]], + "Angus's": null, + "Angy": [["M"]], + "Angy's": null, + "Anheuser": [["M"]], + "Anheuser's": null, + "anhydride": [["M"]], + "anhydride's": null, + "anhydrite": [["M"]], + "anhydrite's": null, + "anhydrous": [["Y"]], + "anhydrously": null, + "Aniakchak": [["M"]], + "Aniakchak's": null, + "Ania": [["M"]], + "Ania's": null, + "Anibal": [["M"]], + "Anibal's": null, + "Anica": [["M"]], + "Anica's": null, + "aniline": [["S", "M"]], + "anilines": null, + "aniline's": null, + "animadversion": [["S", "M"]], + "animadversions": null, + "animadversion's": null, + "animadvert": [["D", "S", "G"]], + "animadverted": null, + "animadverts": null, + "animadverting": null, + "animalcule": [["M", "S"]], + "animalcule's": null, + "animalcules": null, + "animal": [["M", "Y", "P", "S"]], + "animal's": null, + "animally": null, + "animalness": null, + "animals": null, + "animated": [["A"]], + "reanimated": null, + "animatedly": null, + "animately": [["I"]], + "inanimately": null, + "animateness": [["M", "I"]], + "animateness's": null, + "inanimateness's": null, + "inanimateness": [["S"]], + "animates": [["A"]], + "reanimates": null, + "animate": [["Y", "N", "G", "X", "D", "S", "P"]], + "animation": [["A", "M", "S"]], + "animating": [["A"]], + "animations": null, + "reanimating": null, + "reanimation": null, + "reanimation's": null, + "reanimations": null, + "animation's": null, + "animator": [["S", "M"]], + "animators": null, + "animator's": null, + "animism": [["S", "M"]], + "animisms": null, + "animism's": null, + "animistic": null, + "animist": [["S"]], + "animists": null, + "animized": null, + "animosity": [["M", "S"]], + "animosity's": null, + "animosities": null, + "animus": [["S", "M"]], + "animuses": null, + "animus's": null, + "anionic": [["S"]], + "anionics": null, + "anion": [["M", "S"]], + "anion's": null, + "anions": null, + "aniseed": [["M", "S"]], + "aniseed's": null, + "aniseeds": null, + "aniseikonic": null, + "anise": [["M", "S"]], + "anise's": null, + "anises": null, + "anisette": [["S", "M"]], + "anisettes": null, + "anisette's": null, + "anisotropic": null, + "anisotropy": [["M", "S"]], + "anisotropy's": null, + "anisotropies": null, + "Anissa": [["M"]], + "Anissa's": null, + "Anita": [["M"]], + "Anita's": null, + "Anitra": [["M"]], + "Anitra's": null, + "Anjanette": [["M"]], + "Anjanette's": null, + "Anjela": [["M"]], + "Anjela's": null, + "Ankara": [["M"]], + "Ankara's": null, + "ankh": [["M"]], + "ankh's": null, + "ankhs": null, + "anklebone": [["S", "M"]], + "anklebones": null, + "anklebone's": null, + "ankle": [["G", "M", "D", "S"]], + "ankling": null, + "ankle's": null, + "ankled": null, + "ankles": null, + "anklet": [["M", "S"]], + "anklet's": null, + "anklets": null, + "Annabal": [["M"]], + "Annabal's": null, + "Annabela": [["M"]], + "Annabela's": null, + "Annabella": [["M"]], + "Annabella's": null, + "Annabelle": [["M"]], + "Annabelle's": null, + "Annabell": [["M"]], + "Annabell's": null, + "Annabel": [["M"]], + "Annabel's": null, + "Annadiana": [["M"]], + "Annadiana's": null, + "Annadiane": [["M"]], + "Annadiane's": null, + "Annalee": [["M"]], + "Annalee's": null, + "Annaliese": [["M"]], + "Annaliese's": null, + "Annalise": [["M"]], + "Annalise's": null, + "annalist": [["M", "S"]], + "annalist's": null, + "annalists": null, + "annal": [["M", "N", "S"]], + "annal's": null, + "annalen": null, + "annals": null, + "Anna": [["M"]], + "Anna's": null, + "Annamaria": [["M"]], + "Annamaria's": null, + "Annamarie": [["M"]], + "Annamarie's": null, + "Annapolis": [["M"]], + "Annapolis's": null, + "Annapurna": [["M"]], + "Annapurna's": null, + "anneal": [["D", "R", "S", "Z", "G"]], + "annealed": null, + "annealer": [["M"]], + "anneals": null, + "annealers": null, + "annealing": null, + "annealer's": null, + "Annecorinne": [["M"]], + "Annecorinne's": null, + "annelid": [["M", "S"]], + "annelid's": null, + "annelids": null, + "Anneliese": [["M"]], + "Anneliese's": null, + "Annelise": [["M"]], + "Annelise's": null, + "Anne": [["M"]], + "Anne's": null, + "Annemarie": [["M"]], + "Annemarie's": null, + "Annetta": [["M"]], + "Annetta's": null, + "Annette": [["M"]], + "Annette's": null, + "annexation": [["S", "M"]], + "annexations": null, + "annexation's": null, + "annexe": [["M"]], + "annexe's": null, + "annex": [["G", "S", "D"]], + "annexing": null, + "annexes": null, + "annexed": null, + "Annice": [["M"]], + "Annice's": null, + "Annie": [["M"]], + "Annie's": null, + "annihilate": [["X", "S", "D", "V", "G", "N"]], + "annihilations": null, + "annihilates": null, + "annihilated": null, + "annihilative": null, + "annihilating": null, + "annihilation": [["M"]], + "annihilation's": null, + "annihilator": [["M", "S"]], + "annihilator's": null, + "annihilators": null, + "Anni": [["M", "S"]], + "Anni's": null, + "Annis": null, + "Annissa": [["M"]], + "Annissa's": null, + "anniversary": [["M", "S"]], + "anniversary's": null, + "anniversaries": null, + "Ann": [["M"]], + "Ann's": null, + "Annmaria": [["M"]], + "Annmaria's": null, + "Annmarie": [["M"]], + "Annmarie's": null, + "Annnora": [["M"]], + "Annnora's": null, + "Annora": [["M"]], + "Annora's": null, + "annotated": [["U"]], + "unannotated": null, + "annotate": [["V", "N", "G", "X", "S", "D"]], + "annotative": null, + "annotation": [["M"]], + "annotating": null, + "annotations": null, + "annotates": null, + "annotation's": null, + "annotator": [["M", "S"]], + "annotator's": null, + "annotators": null, + "announced": [["U"]], + "unannounced": null, + "announcement": [["S", "M"]], + "announcements": null, + "announcement's": null, + "announcer": [["M"]], + "announcer's": null, + "announce": [["Z", "G", "L", "R", "S", "D"]], + "announcers": null, + "announcing": null, + "announces": null, + "annoyance": [["M", "S"]], + "annoyance's": null, + "annoyances": null, + "annoyer": [["M"]], + "annoyer's": null, + "annoying": [["Y"]], + "annoyingly": null, + "annoy": [["Z", "G", "S", "R", "D"]], + "annoyers": null, + "annoys": null, + "annoyed": null, + "annualized": null, + "annual": [["Y", "S"]], + "annually": null, + "annuals": null, + "annuitant": [["M", "S"]], + "annuitant's": null, + "annuitants": null, + "annuity": [["M", "S"]], + "annuity's": null, + "annuities": null, + "annular": [["Y", "S"]], + "annularly": null, + "annulars": null, + "annuli": null, + "annulled": null, + "annulling": null, + "annulment": [["M", "S"]], + "annulment's": null, + "annulments": null, + "annul": [["S", "L"]], + "annuls": null, + "annulus": [["M"]], + "annulus's": null, + "annum": null, + "annunciate": [["X", "N", "G", "S", "D"]], + "annunciations": null, + "annunciation": [["M"]], + "annunciating": null, + "annunciates": null, + "annunciated": null, + "annunciation's": null, + "Annunciation": [["S"]], + "Annunciations": null, + "annunciator": [["S", "M"]], + "annunciators": null, + "annunciator's": null, + "Anny": [["M"]], + "Anny's": null, + "anode": [["S", "M"]], + "anodes": null, + "anode's": null, + "anodic": null, + "anodize": [["G", "D", "S"]], + "anodizing": null, + "anodized": null, + "anodizes": null, + "anodyne": [["S", "M"]], + "anodynes": null, + "anodyne's": null, + "anoint": [["D", "R", "L", "G", "S"]], + "anointed": null, + "anointer": [["M"]], + "anointment": [["S", "M"]], + "anointing": null, + "anoints": null, + "anointer's": null, + "anointments": null, + "anointment's": null, + "anomalousness": [["M"]], + "anomalousness's": null, + "anomalous": [["Y", "P"]], + "anomalously": null, + "anomaly": [["M", "S"]], + "anomaly's": null, + "anomalies": null, + "anomic": null, + "anomie": [["M"]], + "anomie's": null, + "anon": [["S"]], + "anons": null, + "anonymity": [["M", "S"]], + "anonymity's": null, + "anonymities": null, + "anonymousness": [["M"]], + "anonymousness's": null, + "anonymous": [["Y", "P"]], + "anonymously": null, + "anopheles": [["M"]], + "anopheles's": null, + "anorak": [["S", "M"]], + "anoraks": null, + "anorak's": null, + "anorectic": [["S"]], + "anorectics": null, + "anorexia": [["S", "M"]], + "anorexias": null, + "anorexia's": null, + "anorexic": [["S"]], + "anorexics": null, + "another": [["M"]], + "another's": null, + "Anouilh": [["M"]], + "Anouilh's": null, + "Ansell": [["M"]], + "Ansell's": null, + "Ansel": [["M"]], + "Ansel's": null, + "Anselma": [["M"]], + "Anselma's": null, + "Anselm": [["M"]], + "Anselm's": null, + "Anselmo": [["M"]], + "Anselmo's": null, + "Anshan": [["M"]], + "Anshan's": null, + "ANSI": [["M"]], + "ANSI's": null, + "Ansley": [["M"]], + "Ansley's": null, + "ans's": null, + "Anson": [["M"]], + "Anson's": null, + "Anstice": [["M"]], + "Anstice's": null, + "answerable": [["U"]], + "unanswerable": null, + "answered": [["U"]], + "unanswered": null, + "answerer": [["M"]], + "answerer's": null, + "answer": [["M", "Z", "G", "B", "S", "D", "R"]], + "answer's": null, + "answerers": null, + "answering": null, + "answers": null, + "antacid": [["M", "S"]], + "antacid's": null, + "antacids": null, + "Antaeus": [["M"]], + "Antaeus's": null, + "antagonism": [["M", "S"]], + "antagonism's": null, + "antagonisms": null, + "antagonistic": null, + "antagonistically": null, + "antagonist": [["M", "S"]], + "antagonist's": null, + "antagonists": null, + "antagonized": [["U"]], + "unantagonized": null, + "antagonize": [["G", "Z", "R", "S", "D"]], + "antagonizing": [["U"]], + "antagonizers": null, + "antagonizer": null, + "antagonizes": null, + "unantagonizing": null, + "Antananarivo": [["M"]], + "Antananarivo's": null, + "antarctic": null, + "Antarctica": [["M"]], + "Antarctica's": null, + "Antarctic": [["M"]], + "Antarctic's": null, + "Antares": null, + "anteater": [["M", "S"]], + "anteater's": null, + "anteaters": null, + "antebellum": null, + "antecedence": [["M", "S"]], + "antecedence's": null, + "antecedences": null, + "antecedent": [["S", "M", "Y"]], + "antecedents": null, + "antecedent's": null, + "antecedently": null, + "antechamber": [["S", "M"]], + "antechambers": null, + "antechamber's": null, + "antedate": [["G", "D", "S"]], + "antedating": null, + "antedated": null, + "antedates": null, + "antediluvian": [["S"]], + "antediluvians": null, + "anteing": null, + "antelope": [["M", "S"]], + "antelope's": null, + "antelopes": null, + "ante": [["M", "S"]], + "ante's": null, + "antes": null, + "antenatal": null, + "antennae": null, + "antenna": [["M", "S"]], + "antenna's": null, + "antennas": null, + "anterior": [["S", "Y"]], + "anteriors": null, + "anteriorly": null, + "anteroom": [["S", "M"]], + "anterooms": null, + "anteroom's": null, + "ant": [["G", "S", "M", "D"]], + "anting": [["M"]], + "ants": null, + "ant's": null, + "anted": null, + "Anthea": [["M"]], + "Anthea's": null, + "Anthe": [["M"]], + "Anthe's": null, + "anthem": [["M", "G", "D", "S"]], + "anthem's": null, + "antheming": null, + "anthemed": null, + "anthems": null, + "anther": [["M", "S"]], + "anther's": null, + "anthers": null, + "Anthia": [["M"]], + "Anthia's": null, + "Anthiathia": [["M"]], + "Anthiathia's": null, + "anthill": [["S"]], + "anthills": null, + "anthologist": [["M", "S"]], + "anthologist's": null, + "anthologists": null, + "anthologize": [["G", "D", "S"]], + "anthologizing": null, + "anthologized": null, + "anthologizes": null, + "anthology": [["S", "M"]], + "anthologies": null, + "anthology's": null, + "Anthony": [["M"]], + "Anthony's": null, + "anthraces": null, + "anthracite": [["M", "S"]], + "anthracite's": null, + "anthracites": null, + "anthrax": [["M"]], + "anthrax's": null, + "anthropic": null, + "anthropocentric": null, + "anthropogenic": null, + "anthropoid": [["S"]], + "anthropoids": null, + "anthropological": [["Y"]], + "anthropologically": null, + "anthropologist": [["M", "S"]], + "anthropologist's": null, + "anthropologists": null, + "anthropology": [["S", "M"]], + "anthropologies": null, + "anthropology's": null, + "anthropometric": [["S"]], + "anthropometrics": null, + "anthropometry": [["M"]], + "anthropometry's": null, + "anthropomorphic": null, + "anthropomorphically": null, + "anthropomorphism": [["S", "M"]], + "anthropomorphisms": null, + "anthropomorphism's": null, + "anthropomorphizing": null, + "anthropomorphous": null, + "antiabortion": null, + "antiabortionist": [["S"]], + "antiabortionists": null, + "antiaircraft": null, + "antibacterial": [["S"]], + "antibacterials": null, + "antibiotic": [["S", "M"]], + "antibiotics": null, + "antibiotic's": null, + "antibody": [["M", "S"]], + "antibody's": null, + "antibodies": null, + "anticancer": null, + "Antichrist": [["M", "S"]], + "Antichrist's": null, + "Antichrists": null, + "anticipated": [["U"]], + "unanticipated": [["Y"]], + "anticipate": [["X", "V", "G", "N", "S", "D"]], + "anticipations": null, + "anticipative": [["Y"]], + "anticipating": null, + "anticipation": [["M"]], + "anticipates": null, + "anticipation's": null, + "anticipatively": null, + "anticipatory": null, + "anticked": null, + "anticking": null, + "anticlerical": [["S"]], + "anticlericals": null, + "anticlimactic": null, + "anticlimactically": null, + "anticlimax": [["S", "M"]], + "anticlimaxes": null, + "anticlimax's": null, + "anticline": [["S", "M"]], + "anticlines": null, + "anticline's": null, + "anticlockwise": null, + "antic": [["M", "S"]], + "antic's": null, + "antics": null, + "anticoagulant": [["S"]], + "anticoagulants": null, + "anticoagulation": [["M"]], + "anticoagulation's": null, + "anticommunism": [["S", "M"]], + "anticommunisms": null, + "anticommunism's": null, + "anticommunist": [["S", "M"]], + "anticommunists": null, + "anticommunist's": null, + "anticompetitive": null, + "anticyclone": [["M", "S"]], + "anticyclone's": null, + "anticyclones": null, + "anticyclonic": null, + "antidemocratic": null, + "antidepressant": [["S", "M"]], + "antidepressants": null, + "antidepressant's": null, + "antidisestablishmentarianism": [["M"]], + "antidisestablishmentarianism's": null, + "antidote": [["D", "S", "M", "G"]], + "antidoted": null, + "antidotes": null, + "antidote's": null, + "antidoting": null, + "Antietam": [["M"]], + "Antietam's": null, + "antifascist": [["S", "M"]], + "antifascists": null, + "antifascist's": null, + "antiformant": null, + "antifreeze": [["S", "M"]], + "antifreezes": null, + "antifreeze's": null, + "antifundamentalist": [["M"]], + "antifundamentalist's": null, + "antigenic": null, + "antigenicity": [["S", "M"]], + "antigenicities": null, + "antigenicity's": null, + "antigen": [["M", "S"]], + "antigen's": null, + "antigens": null, + "antigone": null, + "Antigone": [["M"]], + "Antigone's": null, + "Antigua": [["M"]], + "Antigua's": null, + "antiheroes": null, + "antihero": [["M"]], + "antihero's": null, + "antihistamine": [["M", "S"]], + "antihistamine's": null, + "antihistamines": null, + "antihistorical": null, + "antiknock": [["M", "S"]], + "antiknock's": null, + "antiknocks": null, + "antilabor": null, + "Antillean": null, + "Antilles": null, + "antilogarithm": [["S", "M"]], + "antilogarithms": null, + "antilogarithm's": null, + "antilogs": null, + "antimacassar": [["S", "M"]], + "antimacassars": null, + "antimacassar's": null, + "antimalarial": [["S"]], + "antimalarials": null, + "antimatter": [["S", "M"]], + "antimatters": null, + "antimatter's": null, + "antimicrobial": [["S"]], + "antimicrobials": null, + "antimissile": [["S"]], + "antimissiles": null, + "antimony": [["S", "M"]], + "antimonies": null, + "antimony's": null, + "anting's": null, + "Antin": [["M"]], + "Antin's": null, + "antinomian": null, + "antinomy": [["M"]], + "antinomy's": null, + "antinuclear": null, + "Antioch": [["M"]], + "Antioch's": null, + "antioxidant": [["M", "S"]], + "antioxidant's": null, + "antioxidants": null, + "antiparticle": [["S", "M"]], + "antiparticles": null, + "antiparticle's": null, + "Antipas": [["M"]], + "Antipas's": null, + "antipasti": null, + "antipasto": [["M", "S"]], + "antipasto's": null, + "antipastos": null, + "antipathetic": null, + "antipathy": [["S", "M"]], + "antipathies": null, + "antipathy's": null, + "antipersonnel": null, + "antiperspirant": [["M", "S"]], + "antiperspirant's": null, + "antiperspirants": null, + "antiphonal": [["S", "Y"]], + "antiphonals": null, + "antiphonally": null, + "antiphon": [["S", "M"]], + "antiphons": null, + "antiphon's": null, + "antipodal": [["S"]], + "antipodals": null, + "antipodean": [["S"]], + "antipodeans": null, + "antipode": [["M", "S"]], + "antipode's": null, + "antipodes": null, + "Antipodes": null, + "antipollution": [["S"]], + "antipollutions": null, + "antipoverty": null, + "antiquarianism": [["M", "S"]], + "antiquarianism's": null, + "antiquarianisms": null, + "antiquarian": [["M", "S"]], + "antiquarian's": null, + "antiquarians": null, + "antiquary": [["S", "M"]], + "antiquaries": null, + "antiquary's": null, + "antiquate": [["N", "G", "S", "D"]], + "antiquation": [["M"]], + "antiquating": null, + "antiquates": null, + "antiquated": null, + "antiquation's": null, + "antique": [["M", "G", "D", "S"]], + "antique's": null, + "antiquing": null, + "antiqued": null, + "antiques": null, + "antiquity": [["S", "M"]], + "antiquities": null, + "antiquity's": null, + "antiredeposition": null, + "antiresonance": [["M"]], + "antiresonance's": null, + "antiresonator": null, + "anti": [["S"]], + "antis": null, + "antisemitic": null, + "antisemitism": [["M"]], + "antisemitism's": null, + "antisepses": null, + "antisepsis": [["M"]], + "antisepsis's": null, + "antiseptically": null, + "antiseptic": [["S"]], + "antiseptics": null, + "antiserum": [["S", "M"]], + "antiserums": null, + "antiserum's": null, + "antislavery": [["S"]], + "antislaveries": null, + "antisocial": [["Y"]], + "antisocially": null, + "antispasmodic": [["S"]], + "antispasmodics": null, + "antisubmarine": null, + "antisymmetric": null, + "antisymmetry": null, + "antitank": null, + "antitheses": null, + "antithesis": [["M"]], + "antithesis's": null, + "antithetic": null, + "antithetical": [["Y"]], + "antithetically": null, + "antithyroid": null, + "antitoxin": [["M", "S"]], + "antitoxin's": null, + "antitoxins": null, + "antitrust": [["M", "R"]], + "antitrust's": null, + "antitruster": null, + "antivenin": [["M", "S"]], + "antivenin's": null, + "antivenins": null, + "antiviral": [["S"]], + "antivirals": null, + "antivivisectionist": [["S"]], + "antivivisectionists": null, + "antiwar": null, + "antler": [["S", "D", "M"]], + "antlers": null, + "antlered": null, + "antler's": null, + "Antofagasta": [["M"]], + "Antofagasta's": null, + "Antoine": [["M"]], + "Antoine's": null, + "Antoinette": [["M"]], + "Antoinette's": null, + "Antonella": [["M"]], + "Antonella's": null, + "Antone": [["M"]], + "Antone's": null, + "Antonetta": [["M"]], + "Antonetta's": null, + "Antonia": [["M"]], + "Antonia's": null, + "Antonie": [["M"]], + "Antonie's": null, + "Antonietta": [["M"]], + "Antonietta's": null, + "Antoni": [["M"]], + "Antoni's": null, + "Antonina": [["M"]], + "Antonina's": null, + "Antonin": [["M"]], + "Antonin's": null, + "Antonino": [["M"]], + "Antonino's": null, + "Antoninus": [["M"]], + "Antoninus's": null, + "Antonio": [["M"]], + "Antonio's": null, + "Antonius": [["M"]], + "Antonius's": null, + "Anton": [["M", "S"]], + "Anton's": null, + "Antons": null, + "Antonovics": [["M"]], + "Antonovics's": null, + "Antony": [["M"]], + "Antony's": null, + "antonymous": null, + "antonym": [["S", "M"]], + "antonyms": null, + "antonym's": null, + "antral": null, + "antsy": [["R", "T"]], + "antsier": null, + "antsiest": null, + "Antwan": [["M"]], + "Antwan's": null, + "Antwerp": [["M"]], + "Antwerp's": null, + "Anubis": [["M"]], + "Anubis's": null, + "anus": [["S", "M"]], + "anuses": null, + "anus's": null, + "anvil": [["M", "D", "S", "G"]], + "anvil's": null, + "anviled": null, + "anvils": null, + "anviling": null, + "anxiety": [["M", "S"]], + "anxiety's": null, + "anxieties": null, + "anxiousness": [["S", "M"]], + "anxiousnesses": null, + "anxiousness's": null, + "anxious": [["P", "Y"]], + "anxiously": null, + "any": null, + "Anya": [["M"]], + "Anya's": null, + "anybody": [["S"]], + "anybodies": null, + "anyhow": null, + "Any": [["M"]], + "Any's": null, + "anymore": null, + "anyone": [["M", "S"]], + "anyone's": null, + "anyones": null, + "anyplace": null, + "anything": [["S"]], + "anythings": null, + "anytime": null, + "anyway": [["S"]], + "anyways": null, + "anywhere": [["S"]], + "anywheres": null, + "anywise": null, + "AOL": [["M"]], + "AOL's": null, + "aorta": [["M", "S"]], + "aorta's": null, + "aortas": null, + "aortic": null, + "AP": null, + "apace": null, + "apache": [["M", "S"]], + "apache's": null, + "apaches": null, + "Apache": [["M", "S"]], + "Apache's": null, + "Apaches": null, + "Apalachicola": [["M"]], + "Apalachicola's": null, + "apartheid": [["S", "M"]], + "apartheids": null, + "apartheid's": null, + "apart": [["L", "P"]], + "apartment": [["M", "S"]], + "apartness": [["M"]], + "apartment's": null, + "apartments": null, + "apartness's": null, + "apathetic": null, + "apathetically": null, + "apathy": [["S", "M"]], + "apathies": null, + "apathy's": null, + "apatite": [["M", "S"]], + "apatite's": null, + "apatites": null, + "APB": null, + "aped": [["A"]], + "reaped": null, + "apelike": null, + "ape": [["M", "D", "R", "S", "G"]], + "ape's": null, + "aper": [["A"]], + "apes": null, + "aping": null, + "Apennines": null, + "reaper": [["M"]], + "aperiodic": null, + "aperiodically": null, + "aperiodicity": [["M"]], + "aperiodicity's": null, + "aperitif": [["S"]], + "aperitifs": null, + "aperture": [["M", "D", "S"]], + "aperture's": null, + "apertured": null, + "apertures": null, + "apex": [["M", "S"]], + "apex's": null, + "apexes": null, + "aphasia": [["S", "M"]], + "aphasias": null, + "aphasia's": null, + "aphasic": [["S"]], + "aphasics": null, + "aphelia": null, + "aphelion": [["S", "M"]], + "aphelions": null, + "aphelion's": null, + "aphid": [["M", "S"]], + "aphid's": null, + "aphids": null, + "aphonic": null, + "aphorism": [["M", "S"]], + "aphorism's": null, + "aphorisms": null, + "aphoristic": null, + "aphoristically": null, + "aphrodisiac": [["S", "M"]], + "aphrodisiacs": null, + "aphrodisiac's": null, + "Aphrodite": [["M"]], + "Aphrodite's": null, + "Apia": [["M"]], + "Apia's": null, + "apiarist": [["S", "M"]], + "apiarists": null, + "apiarist's": null, + "apiary": [["S", "M"]], + "apiaries": null, + "apiary's": null, + "apical": [["Y", "S"]], + "apically": null, + "apicals": null, + "apices's": null, + "apiece": null, + "apishness": [["M"]], + "apishness's": null, + "apish": [["Y", "P"]], + "apishly": null, + "aplenty": null, + "aplomb": [["S", "M"]], + "aplombs": null, + "aplomb's": null, + "APO": null, + "Apocalypse": [["M"]], + "Apocalypse's": null, + "apocalypse": [["M", "S"]], + "apocalypse's": null, + "apocalypses": null, + "apocalyptic": null, + "apocryphalness": [["M"]], + "apocryphalness's": null, + "apocryphal": [["Y", "P"]], + "apocryphally": null, + "apocrypha": [["M"]], + "apocrypha's": null, + "Apocrypha": [["M"]], + "Apocrypha's": null, + "apogee": [["M", "S"]], + "apogee's": null, + "apogees": null, + "apolar": null, + "apolitical": [["Y"]], + "apolitically": null, + "Apollinaire": [["M"]], + "Apollinaire's": null, + "Apollonian": null, + "Apollo": [["S", "M"]], + "Apollos": null, + "Apollo's": null, + "apologetically": [["U"]], + "unapologetically": null, + "apologetic": [["S"]], + "apologetics": [["M"]], + "apologetics's": null, + "apologia": [["S", "M"]], + "apologias": null, + "apologia's": null, + "apologist": [["M", "S"]], + "apologist's": null, + "apologists": null, + "apologize": [["G", "Z", "S", "R", "D"]], + "apologizing": [["U"]], + "apologizers": null, + "apologizes": [["A"]], + "apologizer": [["M"]], + "apologized": null, + "apologizer's": null, + "reapologizes": null, + "unapologizing": [["M"]], + "apology": [["M", "S"]], + "apology's": null, + "apologies": null, + "apoplectic": null, + "apoplexy": [["S", "M"]], + "apoplexies": null, + "apoplexy's": null, + "apostasy": [["S", "M"]], + "apostasies": null, + "apostasy's": null, + "apostate": [["S", "M"]], + "apostates": null, + "apostate's": null, + "apostatize": [["D", "S", "G"]], + "apostatized": null, + "apostatizes": null, + "apostatizing": null, + "apostleship": [["S", "M"]], + "apostleships": null, + "apostleship's": null, + "apostle": [["S", "M"]], + "apostles": null, + "apostle's": null, + "apostolic": null, + "apostrophe": [["S", "M"]], + "apostrophes": null, + "apostrophe's": null, + "apostrophized": null, + "apothecary": [["M", "S"]], + "apothecary's": null, + "apothecaries": null, + "apothegm": [["M", "S"]], + "apothegm's": null, + "apothegms": null, + "apotheoses": null, + "apotheosis": [["M"]], + "apotheosis's": null, + "apotheosized": null, + "apotheosizes": null, + "apotheosizing": null, + "Appalachia": [["M"]], + "Appalachia's": null, + "Appalachian": [["M", "S"]], + "Appalachian's": null, + "Appalachians": null, + "appalling": [["Y"]], + "appallingly": null, + "appall": [["S", "D", "G"]], + "appalls": null, + "appalled": null, + "Appaloosa": [["M", "S"]], + "Appaloosa's": null, + "Appaloosas": null, + "appaloosa": [["S"]], + "appaloosas": null, + "appanage": [["M"]], + "appanage's": null, + "apparatus": [["S", "M"]], + "apparatuses": null, + "apparatus's": null, + "apparel": [["S", "G", "M", "D"]], + "apparels": null, + "appareling": null, + "apparel's": null, + "appareled": null, + "apparency": null, + "apparently": [["I"]], + "inapparently": null, + "apparentness": [["M"]], + "apparentness's": null, + "apparent": [["U"]], + "unapparent": null, + "apparition": [["S", "M"]], + "apparitions": null, + "apparition's": null, + "appealer": [["M"]], + "appealer's": null, + "appealing": [["U", "Y"]], + "unappealing": null, + "unappealingly": null, + "appealingly": null, + "appeal": [["S", "G", "M", "D", "R", "Z"]], + "appeals": null, + "appeal's": null, + "appealed": null, + "appealers": null, + "appear": [["A", "E", "G", "D", "S"]], + "reappear": null, + "reappearing": null, + "reappeared": null, + "reappears": null, + "disappear": null, + "disappearing": null, + "disappeared": null, + "disappears": null, + "appearing": null, + "appeared": null, + "appears": null, + "appearance": [["A", "M", "E", "S"]], + "reappearance": null, + "reappearance's": null, + "reappearances": null, + "appearance's": null, + "disappearance's": null, + "disappearance": null, + "disappearances": null, + "appearances": null, + "appearer": [["S"]], + "appearers": null, + "appease": [["D", "S", "R", "G", "Z", "L"]], + "appeased": [["U"]], + "appeases": null, + "appeaser": [["M"]], + "appeasing": null, + "appeasers": null, + "appeasement": [["M", "S"]], + "unappeased": null, + "appeasement's": null, + "appeasements": null, + "appeaser's": null, + "appellant": [["M", "S"]], + "appellant's": null, + "appellants": null, + "appellate": [["V", "N", "X"]], + "appellative": [["M", "Y"]], + "appellation": [["M"]], + "appellations": null, + "appellation's": null, + "appellative's": null, + "appellatively": null, + "appendage": [["M", "S"]], + "appendage's": null, + "appendages": null, + "appendectomy": [["S", "M"]], + "appendectomies": null, + "appendectomy's": null, + "appendices": null, + "appendicitis": [["S", "M"]], + "appendicitises": null, + "appendicitis's": null, + "appendix": [["S", "M"]], + "appendixes": null, + "appendix's": null, + "append": [["S", "G", "Z", "D", "R"]], + "appends": null, + "appending": null, + "appenders": null, + "appended": null, + "appender": null, + "appertain": [["D", "S", "G"]], + "appertained": null, + "appertains": null, + "appertaining": null, + "appetite": [["M", "V", "S"]], + "appetite's": null, + "appetitive": null, + "appetites": null, + "appetizer": [["S", "M"]], + "appetizers": null, + "appetizer's": null, + "appetizing": [["Y", "U"]], + "appetizingly": null, + "unappetizingly": null, + "unappetizing": null, + "Appia": [["M"]], + "Appia's": null, + "Appian": [["M"]], + "Appian's": null, + "applauder": [["M"]], + "applauder's": null, + "applaud": [["Z", "G", "S", "D", "R"]], + "applauders": null, + "applauding": null, + "applauds": null, + "applauded": null, + "applause": [["M", "S"]], + "applause's": null, + "applauses": null, + "applecart": [["M"]], + "applecart's": null, + "applejack": [["M", "S"]], + "applejack's": null, + "applejacks": null, + "Apple": [["M"]], + "Apple's": null, + "apple": [["M", "S"]], + "apple's": null, + "apples": null, + "applesauce": [["S", "M"]], + "applesauces": null, + "applesauce's": null, + "Appleseed": [["M"]], + "Appleseed's": null, + "Appleton": [["M"]], + "Appleton's": null, + "applet": [["S"]], + "applets": null, + "appliance": [["S", "M"]], + "appliances": null, + "appliance's": null, + "applicabilities": null, + "applicability": [["I", "M"]], + "inapplicability": null, + "inapplicability's": null, + "applicability's": null, + "applicable": [["I"]], + "inapplicable": null, + "applicably": null, + "applicant": [["M", "S"]], + "applicant's": null, + "applicants": null, + "applicate": [["V"]], + "applicative": [["Y"]], + "application": [["M", "A"]], + "application's": null, + "reapplication's": null, + "reapplication": null, + "applicatively": null, + "applicator": [["M", "S"]], + "applicator's": null, + "applicators": null, + "applier": [["S", "M"]], + "appliers": null, + "applier's": null, + "appliqu�d": null, + "appliqu�": [["M", "S", "G"]], + "appliqu�'s": null, + "appliqu�s": null, + "appliqu�ing": null, + "apply": [["A", "G", "S", "D", "X", "N"]], + "reapply": null, + "reapplying": null, + "reapplies": null, + "reapplied": null, + "reapplications": null, + "applying": null, + "applies": null, + "applied": null, + "applications": null, + "appointee": [["S", "M"]], + "appointees": null, + "appointee's": null, + "appoint": [["E", "L", "S", "A", "D", "G"]], + "disappoint": null, + "disappointment": null, + "disappoints": null, + "disappointed": [["Y"]], + "disappointing": [["Y"]], + "appointment": [["A", "S", "E", "M"]], + "reappointment": null, + "appoints": null, + "reappoints": null, + "reappoint": null, + "reappointed": null, + "reappointing": null, + "appointed": null, + "appointing": null, + "appointer": [["M", "S"]], + "appointer's": null, + "appointers": null, + "appointive": null, + "reappointments": null, + "reappointment's": null, + "appointments": null, + "disappointments": null, + "disappointment's": null, + "appointment's": null, + "Appolonia": [["M"]], + "Appolonia's": null, + "Appomattox": [["M"]], + "Appomattox's": null, + "apportion": [["G", "A", "D", "L", "S"]], + "apportioning": null, + "reapportioning": null, + "reapportion": null, + "reapportioned": null, + "reapportionment": null, + "reapportions": null, + "apportioned": null, + "apportionment": [["S", "A", "M"]], + "apportions": null, + "apportionments": null, + "reapportionments": null, + "reapportionment's": null, + "apportionment's": null, + "appose": [["S", "D", "G"]], + "apposes": null, + "apposed": null, + "apposing": null, + "appositeness": [["M", "S"]], + "appositeness's": null, + "appositenesses": null, + "apposite": [["X", "Y", "N", "V", "P"]], + "appositions": null, + "appositely": null, + "apposition": [["M"]], + "appositive": [["S", "Y"]], + "apposition's": null, + "appositives": null, + "appositively": null, + "appraisal": [["S", "A", "M"]], + "appraisals": null, + "reappraisals": null, + "reappraisal": null, + "reappraisal's": null, + "appraisal's": null, + "appraised": [["A"]], + "reappraised": null, + "appraisees": null, + "appraiser": [["M"]], + "appraiser's": null, + "appraises": [["A"]], + "reappraises": null, + "appraise": [["Z", "G", "D", "R", "S"]], + "appraisers": null, + "appraising": [["Y"]], + "appraisingly": null, + "appreciable": [["I"]], + "inappreciable": null, + "appreciably": [["I"]], + "inappreciably": null, + "appreciated": [["U"]], + "unappreciated": null, + "appreciate": [["X", "D", "S", "N", "G", "V"]], + "appreciations": null, + "appreciates": null, + "appreciation": [["M"]], + "appreciating": null, + "appreciative": [["P", "I", "Y"]], + "appreciation's": null, + "appreciativeness": [["M", "I"]], + "appreciativeness's": null, + "inappreciativeness's": null, + "inappreciativeness": null, + "inappreciative": null, + "inappreciatively": null, + "appreciatively": null, + "appreciator": [["M", "S"]], + "appreciator's": null, + "appreciators": null, + "appreciatory": null, + "apprehend": [["D", "R", "S", "G"]], + "apprehended": null, + "apprehender": [["M"]], + "apprehends": null, + "apprehending": null, + "apprehender's": null, + "apprehensible": null, + "apprehension": [["S", "M"]], + "apprehensions": null, + "apprehension's": null, + "apprehensiveness": [["S", "M"]], + "apprehensivenesses": null, + "apprehensiveness's": null, + "apprehensive": [["Y", "P"]], + "apprehensively": null, + "apprentice": [["D", "S", "G", "M"]], + "apprenticed": null, + "apprentices": null, + "apprenticing": null, + "apprentice's": null, + "apprenticeship": [["S", "M"]], + "apprenticeships": null, + "apprenticeship's": null, + "apprise": [["D", "S", "G"]], + "apprised": null, + "apprises": null, + "apprising": null, + "apprizer": [["S", "M"]], + "apprizers": null, + "apprizer's": null, + "apprizingly": null, + "apprizings": null, + "approachability": [["U", "M"]], + "unapproachability": null, + "unapproachability's": null, + "approachability's": null, + "approachable": [["U", "I"]], + "unapproachable": null, + "inapproachable": null, + "approach": [["B", "R", "S", "D", "Z", "G"]], + "approacher": [["M"]], + "approaches": null, + "approached": null, + "approachers": null, + "approaching": null, + "approacher's": null, + "approbate": [["N", "X"]], + "approbation": [["E", "M", "S"]], + "approbations": null, + "disapprobation": null, + "disapprobation's": null, + "disapprobations": null, + "approbation's": null, + "appropriable": null, + "appropriated": [["U"]], + "unappropriated": null, + "appropriately": [["I"]], + "inappropriately": null, + "appropriateness": [["S", "M", "I"]], + "appropriatenesses": null, + "inappropriatenesses": null, + "appropriateness's": null, + "inappropriateness's": null, + "inappropriateness": null, + "appropriate": [["X", "D", "S", "G", "N", "V", "Y", "T", "P"]], + "appropriations": null, + "appropriates": null, + "appropriating": null, + "appropriation": [["M"]], + "appropriative": null, + "appropriatest": null, + "appropriation's": null, + "appropriator": [["S", "M"]], + "appropriators": null, + "appropriator's": null, + "approval": [["E", "S", "M"]], + "disapproval": null, + "disapprovals": null, + "disapproval's": null, + "approvals": null, + "approval's": null, + "approve": [["D", "S", "R", "E", "G"]], + "approved": [["U"]], + "disapproved": null, + "approves": null, + "disapproves": null, + "approver": [["S", "M"]], + "disapprover": null, + "disapprove": null, + "disapproving": null, + "approving": [["Y", "E"]], + "unapproved": null, + "approver's": [["E"]], + "disapprover's": null, + "approvers": null, + "approvingly": null, + "disapprovingly": null, + "approx": null, + "approximate": [["X", "G", "N", "V", "Y", "D", "S"]], + "approximations": null, + "approximating": null, + "approximation": [["M"]], + "approximative": [["Y"]], + "approximately": null, + "approximated": null, + "approximates": null, + "approximation's": null, + "approximatively": null, + "appurtenance": [["M", "S"]], + "appurtenance's": null, + "appurtenances": null, + "appurtenant": [["S"]], + "appurtenants": null, + "APR": null, + "apricot": [["M", "S"]], + "apricot's": null, + "apricots": null, + "Aprilette": [["M"]], + "Aprilette's": null, + "April": [["M", "S"]], + "April's": null, + "Aprils": null, + "Apr": [["M"]], + "Apr's": null, + "apron": [["S", "D", "M", "G"]], + "aprons": null, + "aproned": null, + "apron's": null, + "aproning": null, + "apropos": null, + "apse": [["M", "S"]], + "apse's": null, + "apses": null, + "apsis": [["M"]], + "apsis's": null, + "apter": null, + "aptest": null, + "aptitude": [["S", "M"]], + "aptitudes": null, + "aptitude's": null, + "aptness": [["S", "M", "I"]], + "aptnesses": null, + "inaptnesses": null, + "aptness's": [["U"]], + "inaptness's": null, + "inaptness": null, + "unaptness's": null, + "apt": [["U", "P", "Y", "I"]], + "unapt": null, + "unaptness": null, + "unaptly": null, + "aptly": null, + "inaptly": null, + "inapt": null, + "Apuleius": [["M"]], + "Apuleius's": null, + "aquaculture": [["M", "S"]], + "aquaculture's": null, + "aquacultures": null, + "aqualung": [["S", "M"]], + "aqualungs": null, + "aqualung's": null, + "aquamarine": [["S", "M"]], + "aquamarines": null, + "aquamarine's": null, + "aquanaut": [["S", "M"]], + "aquanauts": null, + "aquanaut's": null, + "aquaplane": [["G", "S", "D", "M"]], + "aquaplaning": null, + "aquaplanes": null, + "aquaplaned": null, + "aquaplane's": null, + "aquarium": [["M", "S"]], + "aquarium's": null, + "aquariums": null, + "Aquarius": [["M", "S"]], + "Aquarius's": null, + "Aquariuses": null, + "aqua": [["S", "M"]], + "aquas": null, + "aqua's": null, + "aquatically": null, + "aquatic": [["S"]], + "aquatics": null, + "aquavit": [["S", "M"]], + "aquavits": null, + "aquavit's": null, + "aqueduct": [["M", "S"]], + "aqueduct's": null, + "aqueducts": null, + "aqueous": [["Y"]], + "aqueously": null, + "aquiculture's": null, + "aquifer": [["S", "M"]], + "aquifers": null, + "aquifer's": null, + "Aquila": [["M"]], + "Aquila's": null, + "aquiline": null, + "Aquinas": [["M"]], + "Aquinas's": null, + "Aquino": [["M"]], + "Aquino's": null, + "Aquitaine": [["M"]], + "Aquitaine's": null, + "AR": null, + "Arabela": [["M"]], + "Arabela's": null, + "Arabele": [["M"]], + "Arabele's": null, + "Arabella": [["M"]], + "Arabella's": null, + "Arabelle": [["M"]], + "Arabelle's": null, + "Arabel": [["M"]], + "Arabel's": null, + "arabesque": [["S", "M"]], + "arabesques": null, + "arabesque's": null, + "Arabia": [["M"]], + "Arabia's": null, + "Arabian": [["M", "S"]], + "Arabian's": null, + "Arabians": null, + "Arabic": [["M"]], + "Arabic's": null, + "arability": [["M", "S"]], + "arability's": null, + "arabilities": null, + "Arabist": [["M", "S"]], + "Arabist's": null, + "Arabists": null, + "arable": [["S"]], + "arables": null, + "Arab": [["M", "S"]], + "Arab's": null, + "Arabs": null, + "Araby": [["M"]], + "Araby's": null, + "Araceli": [["M"]], + "Araceli's": null, + "arachnid": [["M", "S"]], + "arachnid's": null, + "arachnids": null, + "arachnoid": [["M"]], + "arachnoid's": null, + "arachnophobia": null, + "Arafat": [["M"]], + "Arafat's": null, + "Araguaya": [["M"]], + "Araguaya's": null, + "Araldo": [["M"]], + "Araldo's": null, + "Aral": [["M"]], + "Aral's": null, + "Ara": [["M"]], + "Ara's": null, + "Aramaic": [["M"]], + "Aramaic's": null, + "Aramco": [["M"]], + "Aramco's": null, + "Arapahoes": null, + "Arapahoe's": null, + "Arapaho": [["M", "S"]], + "Arapaho's": null, + "Arapahos": null, + "Ararat": [["M"]], + "Ararat's": null, + "Araucanian": [["M"]], + "Araucanian's": null, + "Arawakan": [["M"]], + "Arawakan's": null, + "Arawak": [["M"]], + "Arawak's": null, + "arbiter": [["M", "S"]], + "arbiter's": null, + "arbiters": null, + "arbitrage": [["G", "M", "Z", "R", "S", "D"]], + "arbitraging": null, + "arbitrage's": null, + "arbitragers": null, + "arbitrager": [["M"]], + "arbitrages": null, + "arbitraged": null, + "arbitrager's": null, + "arbitrageur": [["S"]], + "arbitrageurs": null, + "arbitrament": [["M", "S"]], + "arbitrament's": null, + "arbitraments": null, + "arbitrarily": null, + "arbitrariness": [["M", "S"]], + "arbitrariness's": null, + "arbitrarinesses": null, + "arbitrary": [["P"]], + "arbitrate": [["S", "D", "X", "V", "N", "G"]], + "arbitrates": null, + "arbitrated": null, + "arbitrations": null, + "arbitrative": null, + "arbitration": [["M"]], + "arbitrating": null, + "arbitration's": null, + "arbitrator": [["S", "M"]], + "arbitrators": null, + "arbitrator's": null, + "arbor": [["D", "M", "S"]], + "arbored": null, + "arbor's": null, + "arbors": null, + "arboreal": [["Y"]], + "arboreally": null, + "arbores": null, + "arboretum": [["M", "S"]], + "arboretum's": null, + "arboretums": null, + "arborvitae": [["M", "S"]], + "arborvitae's": null, + "arborvitaes": null, + "arbutus": [["S", "M"]], + "arbutuses": null, + "arbutus's": null, + "ARC": null, + "arcade": [["S", "D", "M", "G"]], + "arcades": null, + "arcaded": null, + "arcade's": null, + "arcading": null, + "Arcadia": [["M"]], + "Arcadia's": null, + "Arcadian": null, + "arcana": [["M"]], + "arcana's": null, + "arcane": [["P"]], + "arcaneness": null, + "arc": [["D", "S", "G", "M"]], + "arced": null, + "arcs": null, + "arcing": null, + "arc's": null, + "archaeological": [["Y"]], + "archaeologically": null, + "archaeologist": [["S", "M"]], + "archaeologists": null, + "archaeologist's": null, + "archaically": null, + "archaic": [["P"]], + "archaicness": null, + "Archaimbaud": [["M"]], + "Archaimbaud's": null, + "archaism": [["S", "M"]], + "archaisms": null, + "archaism's": null, + "archaist": [["M", "S"]], + "archaist's": null, + "archaists": null, + "archaize": [["G", "D", "R", "S", "Z"]], + "archaizing": null, + "archaized": null, + "archaizer": [["M"]], + "archaizes": null, + "archaizers": null, + "archaizer's": null, + "Archambault": [["M"]], + "Archambault's": null, + "archangel": [["S", "M"]], + "archangels": null, + "archangel's": null, + "archbishopric": [["S", "M"]], + "archbishoprics": null, + "archbishopric's": null, + "archbishop": [["S", "M"]], + "archbishops": null, + "archbishop's": null, + "archdeacon": [["M", "S"]], + "archdeacon's": null, + "archdeacons": null, + "archdiocesan": null, + "archdiocese": [["S", "M"]], + "archdioceses": null, + "archdiocese's": null, + "archduchess": [["M", "S"]], + "archduchess's": null, + "archduchesses": null, + "archduke": [["M", "S"]], + "archduke's": null, + "archdukes": null, + "Archean": null, + "archenemy": [["S", "M"]], + "archenemies": null, + "archenemy's": null, + "archeologist's": null, + "archeology": [["M", "S"]], + "archeology's": null, + "archeologies": null, + "archer": [["M"]], + "archer's": null, + "Archer": [["M"]], + "Archer's": null, + "archery": [["M", "S"]], + "archery's": null, + "archeries": null, + "archetypal": null, + "archetype": [["S", "M"]], + "archetypes": null, + "archetype's": null, + "archfiend": [["S", "M"]], + "archfiends": null, + "archfiend's": null, + "archfool": null, + "Archibald": [["M"]], + "Archibald's": null, + "Archibaldo": [["M"]], + "Archibaldo's": null, + "Archibold": [["M"]], + "Archibold's": null, + "Archie": [["M"]], + "Archie's": null, + "archiepiscopal": null, + "Archimedes": [["M"]], + "Archimedes's": null, + "arching": [["M"]], + "arching's": null, + "archipelago": [["S", "M"]], + "archipelagos": null, + "archipelago's": null, + "architect": [["M", "S"]], + "architect's": null, + "architects": null, + "architectonic": [["S"]], + "architectonics": [["M"]], + "architectonics's": null, + "architectural": [["Y"]], + "architecturally": null, + "architecture": [["S", "M"]], + "architectures": null, + "architecture's": null, + "architrave": [["M", "S"]], + "architrave's": null, + "architraves": null, + "archival": null, + "archive": [["D", "R", "S", "G", "M", "Z"]], + "archived": [["U"]], + "archiver": null, + "archives": null, + "archiving": null, + "archive's": null, + "archivers": null, + "unarchived": null, + "archivist": [["M", "S"]], + "archivist's": null, + "archivists": null, + "Arch": [["M", "R"]], + "Arch's": null, + "archness": [["M", "S"]], + "archness's": null, + "archnesses": null, + "arch": [["P", "G", "V", "Z", "T", "M", "Y", "D", "S", "R"]], + "archers": null, + "archest": null, + "arch's": null, + "archly": null, + "arched": null, + "arches": null, + "archway": [["S", "M"]], + "archways": null, + "archway's": null, + "Archy": [["M"]], + "Archy's": null, + "arclike": null, + "ARCO": [["M"]], + "ARCO's": null, + "arcsine": null, + "arctangent": null, + "Arctic": [["M"]], + "Arctic's": null, + "arctic": [["S"]], + "arctics": null, + "Arcturus": [["M"]], + "Arcturus's": null, + "Ardabil": null, + "Arda": [["M", "H"]], + "Arda's": null, + "Ardath": [["M"]], + "Ardath's": null, + "Ardeen": [["M"]], + "Ardeen's": null, + "Ardelia": [["M"]], + "Ardelia's": null, + "Ardelis": [["M"]], + "Ardelis's": null, + "Ardella": [["M"]], + "Ardella's": null, + "Ardelle": [["M"]], + "Ardelle's": null, + "ardency": [["M"]], + "ardency's": null, + "Ardene": [["M"]], + "Ardene's": null, + "Ardenia": [["M"]], + "Ardenia's": null, + "Arden": [["M"]], + "Arden's": null, + "ardent": [["Y"]], + "ardently": null, + "Ardine": [["M"]], + "Ardine's": null, + "Ardisj": [["M"]], + "Ardisj's": null, + "Ardis": [["M"]], + "Ardis's": null, + "Ardith": [["M"]], + "Ardith's": null, + "ardor": [["S", "M"]], + "ardors": null, + "ardor's": null, + "Ardra": [["M"]], + "Ardra's": null, + "arduousness": [["S", "M"]], + "arduousnesses": null, + "arduousness's": null, + "arduous": [["Y", "P"]], + "arduously": null, + "Ardyce": [["M"]], + "Ardyce's": null, + "Ardys": null, + "Ardyth": [["M"]], + "Ardyth's": null, + "areal": null, + "area": [["S", "M"]], + "areas": null, + "area's": null, + "areawide": null, + "are": [["B", "S"]], + "ares": null, + "Arel": [["M"]], + "Arel's": null, + "arenaceous": null, + "arena": [["S", "M"]], + "arenas": null, + "arena's": null, + "aren't": null, + "Arequipa": [["M"]], + "Arequipa's": null, + "Ares": null, + "Aretha": [["M"]], + "Aretha's": null, + "Argentina": [["M"]], + "Argentina's": null, + "Argentinean": [["S"]], + "Argentineans": null, + "Argentine": [["S", "M"]], + "Argentines": null, + "Argentine's": null, + "Argentinian": [["S"]], + "Argentinians": null, + "argent": [["M", "S"]], + "argent's": null, + "argents": null, + "arginine": [["M", "S"]], + "arginine's": null, + "arginines": null, + "Argonaut": [["M", "S"]], + "Argonaut's": null, + "Argonauts": null, + "argonaut": [["S"]], + "argonauts": null, + "argon": [["M", "S"]], + "argon's": null, + "argons": null, + "Argonne": [["M"]], + "Argonne's": null, + "Argo": [["S", "M"]], + "Argos": null, + "Argo's": null, + "argosy": [["S", "M"]], + "argosies": null, + "argosy's": null, + "argot": [["S", "M"]], + "argots": null, + "argot's": null, + "arguable": [["I", "U"]], + "inarguable": null, + "unarguable": null, + "arguably": [["I", "U"]], + "inarguably": null, + "unarguably": null, + "argue": [["D", "S", "R", "G", "Z"]], + "argued": null, + "argues": null, + "arguer": [["M"]], + "arguing": null, + "arguers": null, + "arguer's": null, + "argumentation": [["S", "M"]], + "argumentations": null, + "argumentation's": null, + "argumentativeness": [["M", "S"]], + "argumentativeness's": null, + "argumentativenesses": null, + "argumentative": [["Y", "P"]], + "argumentatively": null, + "argument": [["S", "M"]], + "arguments": null, + "argument's": null, + "Argus": [["M"]], + "Argus's": null, + "argyle": [["S"]], + "argyles": null, + "Ariadne": [["M"]], + "Ariadne's": null, + "Ariana": [["M"]], + "Ariana's": null, + "Arianism": [["M"]], + "Arianism's": null, + "Arianist": [["S", "M"]], + "Arianists": null, + "Arianist's": null, + "aria": [["S", "M"]], + "arias": null, + "aria's": null, + "Aridatha": [["M"]], + "Aridatha's": null, + "aridity": [["S", "M"]], + "aridities": null, + "aridity's": null, + "aridness": [["M"]], + "aridness's": null, + "arid": [["T", "Y", "R", "P"]], + "aridest": null, + "aridly": null, + "arider": null, + "Ariela": [["M"]], + "Ariela's": null, + "Ariella": [["M"]], + "Ariella's": null, + "Arielle": [["M"]], + "Arielle's": null, + "Ariel": [["M"]], + "Ariel's": null, + "Arie": [["S", "M"]], + "Aries": [["S"]], + "Arie's": null, + "Arieses": null, + "aright": null, + "Ari": [["M"]], + "Ari's": null, + "Arin": [["M"]], + "Arin's": null, + "Ario": [["M"]], + "Ario's": null, + "Ariosto": [["M"]], + "Ariosto's": null, + "arise": [["G", "J", "S", "R"]], + "arising": null, + "arisings": null, + "arises": null, + "ariser": null, + "arisen": null, + "Aristarchus": [["M"]], + "Aristarchus's": null, + "Aristides": null, + "aristocracy": [["S", "M"]], + "aristocracies": null, + "aristocracy's": null, + "aristocratic": null, + "aristocratically": null, + "aristocrat": [["M", "S"]], + "aristocrat's": null, + "aristocrats": null, + "Aristophanes": [["M"]], + "Aristophanes's": null, + "Aristotelean": null, + "Aristotelian": [["M"]], + "Aristotelian's": null, + "Aristotle": [["M"]], + "Aristotle's": null, + "arithmetical": [["Y"]], + "arithmetically": null, + "arithmetician": [["S", "M"]], + "arithmeticians": null, + "arithmetician's": null, + "arithmetic": [["M", "S"]], + "arithmetic's": null, + "arithmetics": null, + "arithmetize": [["S", "D"]], + "arithmetizes": null, + "arithmetized": null, + "Arius": [["M"]], + "Arius's": null, + "Ariz": [["M"]], + "Ariz's": null, + "Arizona": [["M"]], + "Arizona's": null, + "Arizonan": [["S"]], + "Arizonans": null, + "Arizonian": [["S"]], + "Arizonians": null, + "Arjuna": [["M"]], + "Arjuna's": null, + "Arkansan": [["M", "S"]], + "Arkansan's": null, + "Arkansans": null, + "Arkansas": [["M"]], + "Arkansas's": null, + "Arkhangelsk": [["M"]], + "Arkhangelsk's": null, + "Ark": [["M"]], + "Ark's": null, + "ark": [["M", "S"]], + "ark's": null, + "arks": null, + "Arkwright": [["M"]], + "Arkwright's": null, + "Arlana": [["M"]], + "Arlana's": null, + "Arlan": [["M"]], + "Arlan's": null, + "Arlee": [["M"]], + "Arlee's": null, + "Arleen": [["M"]], + "Arleen's": null, + "Arlena": [["M"]], + "Arlena's": null, + "Arlene": [["M"]], + "Arlene's": null, + "Arlen": [["M"]], + "Arlen's": null, + "Arleta": [["M"]], + "Arleta's": null, + "Arlette": [["M"]], + "Arlette's": null, + "Arley": [["M"]], + "Arley's": null, + "Arleyne": [["M"]], + "Arleyne's": null, + "Arlie": [["M"]], + "Arlie's": null, + "Arliene": [["M"]], + "Arliene's": null, + "Arlina": [["M"]], + "Arlina's": null, + "Arlinda": [["M"]], + "Arlinda's": null, + "Arline": [["M"]], + "Arline's": null, + "Arlington": [["M"]], + "Arlington's": null, + "Arlin": [["M"]], + "Arlin's": null, + "Arluene": [["M"]], + "Arluene's": null, + "Arly": [["M"]], + "Arly's": null, + "Arlyne": [["M"]], + "Arlyne's": null, + "Arlyn": [["M"]], + "Arlyn's": null, + "Armada": [["M"]], + "Armada's": null, + "armada": [["S", "M"]], + "armadas": null, + "armada's": null, + "armadillo": [["M", "S"]], + "armadillo's": null, + "armadillos": null, + "Armageddon": [["S", "M"]], + "Armageddons": null, + "Armageddon's": null, + "Armagnac": [["M"]], + "Armagnac's": null, + "armament": [["E", "A", "S"]], + "disarmament": null, + "disarmaments": null, + "rearmament": null, + "rearmaments": null, + "armaments": null, + "armament's": [["E"]], + "disarmament's": null, + "Armand": [["M"]], + "Armand's": null, + "Armando": [["M"]], + "Armando's": null, + "Arman": [["M"]], + "Arman's": null, + "arm": [["A", "S", "E", "D", "G"]], + "rearm": null, + "rearms": null, + "rearmed": null, + "rearming": null, + "arms": null, + "disarms": null, + "disarm": null, + "disarmed": null, + "disarming": [["Y"]], + "armed": [["U"]], + "arming": [["M"]], + "Armata": [["M"]], + "Armata's": null, + "armature": [["M", "G", "S", "D"]], + "armature's": null, + "armaturing": null, + "armatures": null, + "armatured": null, + "armband": [["S", "M"]], + "armbands": null, + "armband's": null, + "armchair": [["M", "S"]], + "armchair's": null, + "armchairs": null, + "Armco": [["M"]], + "Armco's": null, + "unarmed": null, + "Armenia": [["M"]], + "Armenia's": null, + "Armenian": [["M", "S"]], + "Armenian's": null, + "Armenians": null, + "armer": [["M", "E", "S"]], + "armer's": null, + "disarmer's": null, + "disarmer": null, + "disarmers": null, + "armers": null, + "armful": [["S", "M"]], + "armfuls": null, + "armful's": null, + "armhole": [["M", "S"]], + "armhole's": null, + "armholes": null, + "arming's": null, + "Arminius": [["M"]], + "Arminius's": null, + "Armin": [["M"]], + "Armin's": null, + "armistice": [["M", "S"]], + "armistice's": null, + "armistices": null, + "armless": null, + "armlet": [["S", "M"]], + "armlets": null, + "armlet's": null, + "armload": [["M"]], + "armload's": null, + "Armonk": [["M"]], + "Armonk's": null, + "armored": [["U"]], + "unarmored": null, + "armorer": [["M"]], + "armorer's": null, + "armorial": [["S"]], + "armorials": null, + "armory": [["D", "S", "M"]], + "armoried": null, + "armories": null, + "armory's": null, + "armor": [["Z", "R", "D", "M", "G", "S"]], + "armorers": null, + "armor's": null, + "armoring": null, + "armors": null, + "Armour": [["M"]], + "Armour's": null, + "armpit": [["M", "S"]], + "armpit's": null, + "armpits": null, + "armrest": [["M", "S"]], + "armrest's": null, + "armrests": null, + "arm's": null, + "Armstrong": [["M"]], + "Armstrong's": null, + "Ar": [["M", "Y"]], + "Ar's": null, + "army": [["S", "M"]], + "armies": null, + "army's": null, + "Arnaldo": [["M"]], + "Arnaldo's": null, + "Arneb": [["M"]], + "Arneb's": null, + "Arne": [["M"]], + "Arne's": null, + "Arney": [["M"]], + "Arney's": null, + "Arnhem": [["M"]], + "Arnhem's": null, + "Arnie": [["M"]], + "Arnie's": null, + "Arni": [["M"]], + "Arni's": null, + "Arnold": [["M"]], + "Arnold's": null, + "Arnoldo": [["M"]], + "Arnoldo's": null, + "Arno": [["M"]], + "Arno's": null, + "Arnuad": [["M"]], + "Arnuad's": null, + "Arnulfo": [["M"]], + "Arnulfo's": null, + "Arny": [["M"]], + "Arny's": null, + "aroma": [["S", "M"]], + "aromas": null, + "aroma's": null, + "aromatherapist": [["S"]], + "aromatherapists": null, + "aromatherapy": [["S"]], + "aromatherapies": null, + "aromatically": null, + "aromaticity": [["M"]], + "aromaticity's": null, + "aromaticness": [["M"]], + "aromaticness's": null, + "aromatic": [["S", "P"]], + "aromatics": null, + "Aron": [["M"]], + "Aron's": null, + "arose": null, + "around": null, + "arousal": [["M", "S"]], + "arousal's": null, + "arousals": null, + "aroused": [["U"]], + "unaroused": null, + "arouse": [["G", "S", "D"]], + "arousing": null, + "arouses": null, + "ARPA": [["M"]], + "ARPA's": null, + "Arpanet": [["M"]], + "Arpanet's": null, + "ARPANET": [["M"]], + "ARPANET's": null, + "arpeggio": [["S", "M"]], + "arpeggios": null, + "arpeggio's": null, + "arrack": [["M"]], + "arrack's": null, + "Arragon": [["M"]], + "Arragon's": null, + "arraignment": [["M", "S"]], + "arraignment's": null, + "arraignments": null, + "arraign": [["S", "D", "G", "L"]], + "arraigns": null, + "arraigned": null, + "arraigning": null, + "arrangeable": [["A"]], + "rearrangeable": null, + "arranged": [["E", "A"]], + "disarranged": null, + "rearranged": null, + "arrangement": [["A", "M", "S", "E"]], + "rearrangement": null, + "rearrangement's": null, + "rearrangements": null, + "arrangement's": null, + "disarrangement's": null, + "arrangements": null, + "disarrangements": null, + "disarrangement": null, + "arranger": [["M"]], + "arranger's": null, + "arranges": [["E", "A"]], + "disarranges": null, + "rearranges": null, + "arrange": [["Z", "D", "S", "R", "L", "G"]], + "arrangers": null, + "arranging": [["E", "A"]], + "disarranging": null, + "rearranging": null, + "arrant": [["Y"]], + "arrantly": null, + "arras": [["S", "M"]], + "arrases": null, + "arras's": null, + "arrayer": null, + "array": [["E", "S", "G", "M", "D"]], + "disarray": null, + "disarrays": null, + "disarraying": null, + "disarray's": null, + "disarrayed": null, + "arrays": null, + "arraying": null, + "array's": null, + "arrayed": null, + "arrear": [["S", "M"]], + "arrears": null, + "arrear's": null, + "arrest": [["A", "D", "S", "G"]], + "rearrest": null, + "rearrested": null, + "rearrests": null, + "rearresting": null, + "arrested": null, + "arrests": null, + "arresting": [["Y"]], + "arrestee": [["M", "S"]], + "arrestee's": null, + "arrestees": null, + "arrester": [["M", "S"]], + "arrester's": null, + "arresters": null, + "arrestingly": null, + "arrestor": [["M", "S"]], + "arrestor's": null, + "arrestors": null, + "Arrhenius": [["M"]], + "Arrhenius's": null, + "arrhythmia": [["S", "M"]], + "arrhythmias": null, + "arrhythmia's": null, + "arrhythmic": null, + "arrhythmical": null, + "Arri": [["M"]], + "Arri's": null, + "arrival": [["M", "S"]], + "arrival's": null, + "arrivals": null, + "arriver": [["M"]], + "arriver's": null, + "arrive": [["S", "R", "D", "G"]], + "arrives": null, + "arrived": null, + "arriving": null, + "arrogance": [["M", "S"]], + "arrogance's": null, + "arrogances": null, + "arrogant": [["Y"]], + "arrogantly": null, + "arrogate": [["X", "N", "G", "D", "S"]], + "arrogations": null, + "arrogation": [["M"]], + "arrogating": null, + "arrogated": null, + "arrogates": null, + "arrogation's": null, + "Arron": [["M"]], + "Arron's": null, + "arrowhead": [["S", "M"]], + "arrowheads": null, + "arrowhead's": null, + "arrowroot": [["M", "S"]], + "arrowroot's": null, + "arrowroots": null, + "arrow": [["S", "D", "M", "G"]], + "arrows": null, + "arrowed": null, + "arrow's": null, + "arrowing": null, + "arroyo": [["M", "S"]], + "arroyo's": null, + "arroyos": null, + "arr": [["T", "V"]], + "arsenal": [["M", "S"]], + "arsenal's": null, + "arsenals": null, + "arsenate": [["M"]], + "arsenate's": null, + "arsenic": [["M", "S"]], + "arsenic's": null, + "arsenics": null, + "arsenide": [["M"]], + "arsenide's": null, + "arsine": [["M", "S"]], + "arsine's": null, + "arsines": null, + "arsonist": [["M", "S"]], + "arsonist's": null, + "arsonists": null, + "arson": [["S", "M"]], + "arsons": null, + "arson's": null, + "Artair": [["M"]], + "Artair's": null, + "Artaxerxes": [["M"]], + "Artaxerxes's": null, + "artefact's": null, + "Arte": [["M"]], + "Arte's": null, + "Artemas": null, + "Artemis": [["M"]], + "Artemis's": null, + "Artemus": [["M"]], + "Artemus's": null, + "arterial": [["S", "Y"]], + "arterials": null, + "arterially": null, + "arteriolar": null, + "arteriole": [["S", "M"]], + "arterioles": null, + "arteriole's": null, + "arterioscleroses": null, + "arteriosclerosis": [["M"]], + "arteriosclerosis's": null, + "artery": [["S", "M"]], + "arteries": null, + "artery's": null, + "artesian": null, + "artfulness": [["S", "M"]], + "artfulnesses": null, + "artfulness's": null, + "artful": [["Y", "P"]], + "artfully": null, + "Arther": [["M"]], + "Arther's": null, + "arthritic": [["S"]], + "arthritics": null, + "arthritides": null, + "arthritis": [["M"]], + "arthritis's": null, + "arthrogram": [["M", "S"]], + "arthrogram's": null, + "arthrograms": null, + "arthropod": [["S", "M"]], + "arthropods": null, + "arthropod's": null, + "arthroscope": [["S"]], + "arthroscopes": null, + "arthroscopic": null, + "Arthurian": null, + "Arthur": [["M"]], + "Arthur's": null, + "artichoke": [["S", "M"]], + "artichokes": null, + "artichoke's": null, + "article": [["G", "M", "D", "S"]], + "articling": null, + "article's": null, + "articled": null, + "articles": null, + "articulable": [["I"]], + "inarticulable": null, + "articular": null, + "articulated": [["E", "U"]], + "disarticulated": null, + "unarticulated": null, + "articulately": [["I"]], + "inarticulately": null, + "articulateness": [["I", "M", "S"]], + "inarticulateness": null, + "inarticulateness's": null, + "inarticulatenesses": null, + "articulateness's": null, + "articulatenesses": null, + "articulates": [["I"]], + "inarticulates": null, + "articulate": [["V", "G", "N", "Y", "X", "P", "S", "D"]], + "articulative": null, + "articulating": null, + "articulation": [["M"]], + "articulations": null, + "articulation's": null, + "articulator": [["S", "M"]], + "articulators": null, + "articulator's": null, + "articulatory": null, + "Artie": [["M"]], + "Artie's": null, + "artifact": [["M", "S"]], + "artifact's": null, + "artifacts": null, + "artificer": [["M"]], + "artificer's": null, + "artifice": [["Z", "R", "S", "M"]], + "artificers": null, + "artifices": null, + "artifice's": null, + "artificiality": [["M", "S"]], + "artificiality's": null, + "artificialities": null, + "artificialness": [["M"]], + "artificialness's": null, + "artificial": [["P", "Y"]], + "artificially": null, + "artillerist": null, + "artilleryman": [["M"]], + "artilleryman's": null, + "artillerymen": null, + "artillery": [["S", "M"]], + "artilleries": null, + "artillery's": null, + "artiness": [["M", "S"]], + "artiness's": null, + "artinesses": null, + "artisan": [["S", "M"]], + "artisans": null, + "artisan's": null, + "artiste": [["S", "M"]], + "artistes": null, + "artiste's": null, + "artistically": [["I"]], + "inartistically": null, + "artistic": [["I"]], + "inartistic": null, + "artist": [["M", "S"]], + "artist's": null, + "artists": null, + "artistry": [["S", "M"]], + "artistries": null, + "artistry's": null, + "artlessness": [["M", "S"]], + "artlessness's": null, + "artlessnesses": null, + "artless": [["Y", "P"]], + "artlessly": null, + "Art": [["M"]], + "Art's": null, + "art": [["S", "M"]], + "arts": null, + "art's": null, + "artsy": [["R", "T"]], + "artsier": null, + "artsiest": null, + "Artur": [["M"]], + "Artur's": null, + "Arturo": [["M"]], + "Arturo's": null, + "Artus": [["M"]], + "Artus's": null, + "artwork": [["M", "S"]], + "artwork's": null, + "artworks": null, + "Arty": [["M"]], + "Arty's": null, + "arty": [["T", "P", "R"]], + "artiest": null, + "artier": null, + "Aruba": [["M"]], + "Aruba's": null, + "arum": [["M", "S"]], + "arum's": null, + "arums": null, + "Arvie": [["M"]], + "Arvie's": null, + "Arvin": [["M"]], + "Arvin's": null, + "Arv": [["M"]], + "Arv's": null, + "Arvy": [["M"]], + "Arvy's": null, + "Aryan": [["M", "S"]], + "Aryan's": null, + "Aryans": null, + "Aryn": [["M"]], + "Aryn's": null, + "as": null, + "As": null, + "A's": null, + "Asa": [["M"]], + "Asa's": null, + "Asama": [["M"]], + "Asama's": null, + "asap": null, + "ASAP": null, + "asbestos": [["M", "S"]], + "asbestos's": null, + "asbestoses": null, + "Ascella": [["M"]], + "Ascella's": null, + "ascend": [["A", "D", "G", "S"]], + "reascend": null, + "reascended": null, + "reascending": null, + "reascends": null, + "ascended": null, + "ascending": null, + "ascends": null, + "ascendancy": [["M", "S"]], + "ascendancy's": null, + "ascendancies": null, + "ascendant": [["S", "Y"]], + "ascendants": null, + "ascendantly": null, + "ascender": [["S", "M"]], + "ascenders": null, + "ascender's": null, + "Ascension": [["M"]], + "Ascension's": null, + "ascension": [["S", "M"]], + "ascensions": null, + "ascension's": null, + "ascent": [["S", "M"]], + "ascents": null, + "ascent's": null, + "ascertain": [["D", "S", "B", "L", "G"]], + "ascertained": null, + "ascertains": null, + "ascertainable": null, + "ascertainment": [["M", "S"]], + "ascertaining": null, + "ascertainment's": null, + "ascertainments": null, + "ascetically": null, + "asceticism": [["M", "S"]], + "asceticism's": null, + "asceticisms": null, + "ascetic": [["S", "M"]], + "ascetics": null, + "ascetic's": null, + "ASCII": null, + "ascot": [["M", "S"]], + "ascot's": null, + "ascots": null, + "ascribe": [["G", "S", "D", "B"]], + "ascribing": null, + "ascribes": null, + "ascribed": null, + "ascribable": null, + "ascription": [["M", "S"]], + "ascription's": null, + "ascriptions": null, + "ascriptive": null, + "Ase": [["M"]], + "Ase's": null, + "aseptically": null, + "aseptic": [["S"]], + "aseptics": null, + "asexuality": [["M", "S"]], + "asexuality's": null, + "asexualities": null, + "asexual": [["Y"]], + "asexually": null, + "Asgard": [["M"]], + "Asgard's": null, + "ashame": [["D"]], + "ashamed": [["U", "Y"]], + "unashamed": null, + "unashamedly": null, + "ashamedly": null, + "Ashanti": [["M"]], + "Ashanti's": null, + "Ashbey": [["M"]], + "Ashbey's": null, + "Ashby": [["M"]], + "Ashby's": null, + "ashcan": [["S", "M"]], + "ashcans": null, + "ashcan's": null, + "Ashely": [["M"]], + "Ashely's": null, + "Asher": [["M"]], + "Asher's": null, + "Asheville": [["M"]], + "Asheville's": null, + "Ashia": [["M"]], + "Ashia's": null, + "Ashien": [["M"]], + "Ashien's": null, + "Ashil": [["M"]], + "Ashil's": null, + "Ashkenazim": null, + "Ashkhabad": [["M"]], + "Ashkhabad's": null, + "Ashla": [["M"]], + "Ashla's": null, + "Ashland": [["M"]], + "Ashland's": null, + "Ashlan": [["M"]], + "Ashlan's": null, + "ashlar": [["G", "S", "D", "M"]], + "ashlaring": null, + "ashlars": null, + "ashlared": null, + "ashlar's": null, + "Ashlee": [["M"]], + "Ashlee's": null, + "Ashleigh": [["M"]], + "Ashleigh's": null, + "Ashlen": [["M"]], + "Ashlen's": null, + "Ashley": [["M"]], + "Ashley's": null, + "Ashlie": [["M"]], + "Ashlie's": null, + "Ashli": [["M"]], + "Ashli's": null, + "Ashlin": [["M"]], + "Ashlin's": null, + "Ashly": [["M"]], + "Ashly's": null, + "ashman": [["M"]], + "ashman's": null, + "ash": [["M", "N", "D", "R", "S", "G"]], + "ash's": null, + "ashen": null, + "ashed": null, + "asher": null, + "ashes": null, + "ashing": null, + "Ashmolean": [["M"]], + "Ashmolean's": null, + "Ash": [["M", "R", "Y"]], + "Ash's": null, + "ashore": null, + "ashram": [["S", "M"]], + "ashrams": null, + "ashram's": null, + "Ashton": [["M"]], + "Ashton's": null, + "ashtray": [["M", "S"]], + "ashtray's": null, + "ashtrays": null, + "Ashurbanipal": [["M"]], + "Ashurbanipal's": null, + "ashy": [["R", "T"]], + "ashier": null, + "ashiest": null, + "Asia": [["M"]], + "Asia's": null, + "Asian": [["M", "S"]], + "Asian's": null, + "Asians": null, + "Asiatic": [["S", "M"]], + "Asiatics": null, + "Asiatic's": null, + "aside": [["S"]], + "asides": null, + "Asilomar": [["M"]], + "Asilomar's": null, + "Asimov": null, + "asinine": [["Y"]], + "asininely": null, + "asininity": [["M", "S"]], + "asininity's": null, + "asininities": null, + "askance": null, + "ask": [["D", "R", "Z", "G", "S"]], + "asked": [["U"]], + "asker": [["M"]], + "askers": null, + "asking": null, + "asks": null, + "unasked": null, + "asker's": null, + "askew": [["P"]], + "askewness": null, + "ASL": null, + "aslant": null, + "asleep": null, + "Asmara": [["M"]], + "Asmara's": null, + "asocial": [["S"]], + "asocials": null, + "Asoka": [["M"]], + "Asoka's": null, + "asparagus": [["M", "S"]], + "asparagus's": null, + "asparaguses": null, + "aspartame": [["S"]], + "aspartames": null, + "ASPCA": null, + "aspect": [["S", "M"]], + "aspects": null, + "aspect's": null, + "Aspell": [["M"]], + "Aspell's": null, + "aspen": [["M"]], + "aspen's": null, + "Aspen": [["M"]], + "Aspen's": null, + "asperity": [["S", "M"]], + "asperities": null, + "asperity's": null, + "asper": [["M"]], + "asper's": null, + "aspersion": [["S", "M"]], + "aspersions": null, + "aspersion's": null, + "asphalt": [["M", "D", "R", "S", "G"]], + "asphalt's": null, + "asphalted": null, + "asphalter": null, + "asphalts": null, + "asphalting": null, + "asphodel": [["M", "S"]], + "asphodel's": null, + "asphodels": null, + "asphyxia": [["M", "S"]], + "asphyxia's": null, + "asphyxias": null, + "asphyxiate": [["G", "N", "X", "S", "D"]], + "asphyxiating": null, + "asphyxiation": [["M"]], + "asphyxiations": null, + "asphyxiates": null, + "asphyxiated": null, + "asphyxiation's": null, + "aspic": [["M", "S"]], + "aspic's": null, + "aspics": null, + "Aspidiske": [["M"]], + "Aspidiske's": null, + "aspidistra": [["M", "S"]], + "aspidistra's": null, + "aspidistras": null, + "aspirant": [["M", "S"]], + "aspirant's": null, + "aspirants": null, + "aspirate": [["N", "G", "D", "S", "X"]], + "aspiration": [["M"]], + "aspirating": null, + "aspirated": null, + "aspirates": null, + "aspirations": null, + "aspirational": null, + "aspiration's": null, + "aspirator": [["S", "M"]], + "aspirators": null, + "aspirator's": null, + "aspire": [["G", "S", "R", "D"]], + "aspiring": null, + "aspires": null, + "aspirer": [["M"]], + "aspired": null, + "aspirer's": null, + "aspirin": [["S", "M"]], + "aspirins": null, + "aspirin's": null, + "asplenium": null, + "asp": [["M", "N", "R", "X", "S"]], + "asp's": null, + "aspens": null, + "asps": null, + "Asquith": [["M"]], + "Asquith's": null, + "Assad": [["M"]], + "Assad's": null, + "assailable": [["U"]], + "unassailable": [["P"]], + "assailant": [["S", "M"]], + "assailants": null, + "assailant's": null, + "assail": [["B", "G", "D", "S"]], + "assailing": null, + "assailed": null, + "assails": null, + "Assamese": [["M"]], + "Assamese's": null, + "Assam": [["M"]], + "Assam's": null, + "assassinate": [["D", "S", "G", "N", "X"]], + "assassinated": null, + "assassinates": null, + "assassinating": null, + "assassination": [["M"]], + "assassinations": null, + "assassination's": null, + "assassin": [["M", "S"]], + "assassin's": null, + "assassins": null, + "assaulter": [["M"]], + "assaulter's": null, + "assaultive": [["Y", "P"]], + "assaultively": null, + "assaultiveness": null, + "assault": [["S", "G", "V", "M", "D", "R"]], + "assaults": null, + "assaulting": null, + "assault's": null, + "assaulted": null, + "assayer": [["M"]], + "assayer's": null, + "assay": [["S", "Z", "G", "R", "D"]], + "assays": null, + "assayers": null, + "assaying": null, + "assayed": null, + "assemblage": [["M", "S"]], + "assemblage's": null, + "assemblages": null, + "assemble": [["A", "D", "S", "R", "E", "G"]], + "reassemble": null, + "reassembled": null, + "reassembles": null, + "reassembler": null, + "reassembling": null, + "assembled": [["U"]], + "disassembled": null, + "assembles": null, + "disassembles": null, + "assembler": [["E", "M", "S"]], + "disassembler": null, + "disassemble": null, + "disassembling": null, + "assembling": null, + "unassembled": null, + "disassembler's": null, + "disassemblers": null, + "assembler's": null, + "assemblers": null, + "assemblies": [["A"]], + "reassemblies": null, + "assembly": [["E", "A", "M"]], + "disassembly": null, + "disassembly's": null, + "reassembly": null, + "reassembly's": null, + "assembly's": null, + "assemblyman": [["M"]], + "assemblyman's": null, + "assemblymen": null, + "Assembly": [["M", "S"]], + "Assembly's": null, + "Assemblies": null, + "assemblywoman": null, + "assemblywomen": null, + "assent": [["S", "G", "M", "R", "D"]], + "assents": null, + "assenting": null, + "assent's": null, + "assenter": null, + "assented": null, + "assert": [["A", "D", "G", "S"]], + "reassert": null, + "reasserted": null, + "reasserting": null, + "reasserts": null, + "asserted": null, + "asserting": null, + "asserts": null, + "asserter": [["M", "S"]], + "asserter's": null, + "asserters": null, + "assertional": null, + "assertion": [["A", "M", "S"]], + "reassertion": null, + "reassertion's": null, + "reassertions": null, + "assertion's": null, + "assertions": null, + "assertiveness": [["S", "M"]], + "assertivenesses": null, + "assertiveness's": null, + "assertive": [["P", "Y"]], + "assertively": null, + "assess": [["B", "L", "S", "D", "G"]], + "assessable": null, + "assessment": [["S", "A", "M"]], + "assesses": [["A"]], + "assessed": [["A"]], + "assessing": null, + "reassessed": null, + "reassesses": null, + "assessments": null, + "reassessments": null, + "reassessment": null, + "reassessment's": null, + "assessment's": null, + "assessor": [["M", "S"]], + "assessor's": null, + "assessors": null, + "asset": [["S", "M"]], + "assets": null, + "asset's": null, + "asseverate": [["X", "S", "D", "N", "G"]], + "asseverations": null, + "asseverates": null, + "asseverated": null, + "asseveration": [["M"]], + "asseverating": null, + "asseveration's": null, + "asshole": [["M", "S", "!"]], + "asshole's": null, + "assholes": null, + "assiduity": [["S", "M"]], + "assiduities": null, + "assiduity's": null, + "assiduousness": [["S", "M"]], + "assiduousnesses": null, + "assiduousness's": null, + "assiduous": [["P", "Y"]], + "assiduously": null, + "assign": [["A", "L", "B", "S", "G", "D"]], + "reassign": null, + "reassignment": null, + "reassignable": null, + "reassigns": null, + "reassigning": null, + "reassigned": null, + "assignment": [["M", "A", "S"]], + "assignable": null, + "assigns": [["C", "U"]], + "assigning": null, + "assigned": [["U"]], + "assignation": [["M", "S"]], + "assignation's": null, + "assignations": null, + "unassigned": null, + "assignee": [["M", "S"]], + "assignee's": null, + "assignees": null, + "assigner": [["M", "S"]], + "assigner's": null, + "assigners": null, + "assignment's": null, + "reassignment's": null, + "reassignments": null, + "assignments": null, + "assignor": [["M", "S"]], + "assignor's": null, + "assignors": null, + "deassigns": null, + "unassigns": null, + "assimilate": [["V", "N", "G", "X", "S", "D"]], + "assimilative": null, + "assimilation": [["M"]], + "assimilating": null, + "assimilations": null, + "assimilates": null, + "assimilated": null, + "assimilationist": [["M"]], + "assimilationist's": null, + "assimilation's": null, + "Assisi": [["M"]], + "Assisi's": null, + "assistance": [["S", "M"]], + "assistances": null, + "assistance's": null, + "assistantship": [["S", "M"]], + "assistantships": null, + "assistantship's": null, + "assistant": [["S", "M"]], + "assistants": null, + "assistant's": null, + "assisted": [["U"]], + "unassisted": null, + "assister": [["M"]], + "assister's": null, + "assist": [["R", "D", "G", "S"]], + "assisting": null, + "assists": null, + "assize": [["M", "G", "S", "D"]], + "assize's": null, + "assizing": null, + "assizes": null, + "assized": null, + "ass": [["M", "N", "S"]], + "ass's": null, + "assen": null, + "asses": null, + "assn": null, + "assoc": null, + "associable": null, + "associated": [["U"]], + "unassociated": null, + "associate": [["S", "D", "E", "X", "N", "G"]], + "associates": null, + "disassociates": null, + "disassociated": null, + "disassociate": null, + "disassociations": null, + "disassociation": null, + "disassociating": null, + "associations": null, + "association": [["M", "E"]], + "associating": null, + "associateship": null, + "associational": null, + "association's": null, + "disassociation's": null, + "associative": [["Y"]], + "associatively": null, + "associativity": [["S"]], + "associativities": null, + "associator": [["M", "S"]], + "associator's": null, + "associators": null, + "assonance": [["S", "M"]], + "assonances": null, + "assonance's": null, + "assonant": [["S"]], + "assonants": null, + "assorter": [["M"]], + "assorter's": null, + "assort": [["L", "R", "D", "S", "G"]], + "assortment": [["S", "M"]], + "assorted": null, + "assorts": null, + "assorting": null, + "assortments": null, + "assortment's": null, + "asst": null, + "assuaged": [["U"]], + "unassuaged": null, + "assuage": [["S", "D", "G"]], + "assuages": null, + "assuaging": null, + "assumability": null, + "assumer": [["M"]], + "assumer's": null, + "assume": [["S", "R", "D", "B", "J", "G"]], + "assumes": null, + "assumed": null, + "assumable": null, + "assumings": null, + "assuming": [["U", "A"]], + "unassuming": [["P", "Y"]], + "reassuming": null, + "assumption": [["S", "M"]], + "assumptions": null, + "assumption's": null, + "assumptive": null, + "assurance": [["A", "M", "S"]], + "reassurance": null, + "reassurance's": null, + "reassurances": null, + "assurance's": null, + "assurances": null, + "assure": [["A", "G", "S", "D"]], + "reassure": null, + "reassuring": null, + "reassures": null, + "reassured": null, + "assuring": [["Y", "A"]], + "assures": null, + "assured": [["P", "Y", "S"]], + "assuredness": [["M"]], + "assuredness's": null, + "assuredly": null, + "assureds": null, + "assurer": [["S", "M"]], + "assurers": null, + "assurer's": null, + "assuringly": null, + "reassuringly": [["U"]], + "Assyria": [["M"]], + "Assyria's": null, + "Assyrian": [["S", "M"]], + "Assyrians": null, + "Assyrian's": null, + "Assyriology": [["M"]], + "Assyriology's": null, + "Astaire": [["S", "M"]], + "Astaires": null, + "Astaire's": null, + "Astarte": [["M"]], + "Astarte's": null, + "astatine": [["M", "S"]], + "astatine's": null, + "astatines": null, + "aster": [["E", "S", "M"]], + "disaster": null, + "disasters": null, + "disaster's": null, + "asters": null, + "aster's": null, + "asteria": null, + "asterisked": [["U"]], + "unasterisked": null, + "asterisk": [["S", "G", "M", "D"]], + "asterisks": null, + "asterisking": null, + "asterisk's": null, + "astern": null, + "asteroidal": null, + "asteroid": [["S", "M"]], + "asteroids": null, + "asteroid's": null, + "asthma": [["M", "S"]], + "asthma's": null, + "asthmas": null, + "asthmatic": [["S"]], + "asthmatics": null, + "astigmatic": [["S"]], + "astigmatics": null, + "astigmatism": [["S", "M"]], + "astigmatisms": null, + "astigmatism's": null, + "astir": null, + "astonish": [["G", "S", "D", "L"]], + "astonishing": [["Y"]], + "astonishes": null, + "astonished": null, + "astonishment": [["S", "M"]], + "astonishingly": null, + "astonishments": null, + "astonishment's": null, + "Aston": [["M"]], + "Aston's": null, + "Astoria": [["M"]], + "Astoria's": null, + "Astor": [["M"]], + "Astor's": null, + "astounding": [["Y"]], + "astoundingly": null, + "astound": [["S", "D", "G"]], + "astounds": null, + "astounded": null, + "astraddle": null, + "Astrakhan": [["M"]], + "Astrakhan's": null, + "astrakhan": [["S", "M"]], + "astrakhans": null, + "astrakhan's": null, + "astral": [["S", "Y"]], + "astrals": null, + "astrally": null, + "Astra": [["M"]], + "Astra's": null, + "astray": null, + "astride": null, + "Astrid": [["M"]], + "Astrid's": null, + "astringency": [["S", "M"]], + "astringencies": null, + "astringency's": null, + "astringent": [["Y", "S"]], + "astringently": null, + "astringents": null, + "Astrix": [["M"]], + "Astrix's": null, + "astrolabe": [["M", "S"]], + "astrolabe's": null, + "astrolabes": null, + "astrologer": [["M", "S"]], + "astrologer's": null, + "astrologers": null, + "astrological": [["Y"]], + "astrologically": null, + "astrologist": [["M"]], + "astrologist's": null, + "astrology": [["S", "M"]], + "astrologies": null, + "astrology's": null, + "astronautical": null, + "astronautic": [["S"]], + "astronautics": [["M"]], + "astronautics's": null, + "astronaut": [["S", "M"]], + "astronauts": null, + "astronaut's": null, + "astronomer": [["M", "S"]], + "astronomer's": null, + "astronomers": null, + "astronomic": null, + "astronomical": [["Y"]], + "astronomically": null, + "astronomy": [["S", "M"]], + "astronomies": null, + "astronomy's": null, + "astrophysical": null, + "astrophysicist": [["S", "M"]], + "astrophysicists": null, + "astrophysicist's": null, + "astrophysics": [["M"]], + "astrophysics's": null, + "Astroturf": [["M"]], + "Astroturf's": null, + "AstroTurf": [["S"]], + "AstroTurfs": null, + "Asturias": [["M"]], + "Asturias's": null, + "astuteness": [["M", "S"]], + "astuteness's": null, + "astutenesses": null, + "astute": [["R", "T", "Y", "P"]], + "astuter": null, + "astutest": null, + "astutely": null, + "Asunci�n": [["M"]], + "Asunci�n's": null, + "asunder": null, + "Aswan": [["M"]], + "Aswan's": null, + "asylum": [["M", "S"]], + "asylum's": null, + "asylums": null, + "asymmetric": null, + "asymmetrical": [["Y"]], + "asymmetrically": null, + "asymmetry": [["M", "S"]], + "asymmetry's": null, + "asymmetries": null, + "asymptomatic": null, + "asymptomatically": null, + "asymptote": [["M", "S"]], + "asymptote's": null, + "asymptotes": null, + "asymptotically": null, + "asymptotic": [["Y"]], + "asymptoticly": null, + "asynchronism": [["M"]], + "asynchronism's": null, + "asynchronous": [["Y"]], + "asynchronously": null, + "asynchrony": null, + "at": null, + "Atacama": [["M"]], + "Atacama's": null, + "Atahualpa": [["M"]], + "Atahualpa's": null, + "Atalanta": [["M"]], + "Atalanta's": null, + "Atari": [["M"]], + "Atari's": null, + "Atat�rk": [["M"]], + "Atat�rk's": null, + "atavism": [["M", "S"]], + "atavism's": null, + "atavisms": null, + "atavistic": null, + "atavist": [["M", "S"]], + "atavist's": null, + "atavists": null, + "ataxia": [["M", "S"]], + "ataxia's": null, + "ataxias": null, + "ataxic": [["S"]], + "ataxics": null, + "atelier": [["S", "M"]], + "ateliers": null, + "atelier's": null, + "atemporal": null, + "ate": [["S"]], + "ates": null, + "Athabasca": [["M"]], + "Athabasca's": null, + "Athabascan's": null, + "Athabaskan": [["M", "S"]], + "Athabaskan's": null, + "Athabaskans": null, + "Athabaska's": null, + "atheism": [["S", "M"]], + "atheisms": null, + "atheism's": null, + "atheistic": null, + "atheist": [["S", "M"]], + "atheists": null, + "atheist's": null, + "Athena": [["M"]], + "Athena's": null, + "Athene": [["M"]], + "Athene's": null, + "Athenian": [["S", "M"]], + "Athenians": null, + "Athenian's": null, + "Athens": [["M"]], + "Athens's": null, + "atheroscleroses": null, + "atherosclerosis": [["M"]], + "atherosclerosis's": null, + "athirst": null, + "athlete": [["M", "S"]], + "athlete's": null, + "athletes": null, + "athletically": null, + "athleticism": [["M"]], + "athleticism's": null, + "athletic": [["S"]], + "athletics": [["M"]], + "athletics's": null, + "athwart": null, + "atilt": null, + "Atkins": [["M"]], + "Atkins's": null, + "Atkinson": [["M"]], + "Atkinson's": null, + "Atlanta": [["M"]], + "Atlanta's": null, + "Atlante": [["M", "S"]], + "Atlante's": null, + "Atlantes": null, + "atlantes": null, + "Atlantic": [["M"]], + "Atlantic's": null, + "Atlantis": [["M"]], + "Atlantis's": null, + "atlas": [["S", "M"]], + "atlases": null, + "atlas's": null, + "Atlas": [["S", "M"]], + "Atlases": null, + "Atlas's": null, + "At": [["M"]], + "At's": null, + "Atman": null, + "ATM": [["M"]], + "ATM's": null, + "atmosphere": [["D", "S", "M"]], + "atmosphered": null, + "atmospheres": null, + "atmosphere's": null, + "atmospherically": null, + "atmospheric": [["S"]], + "atmospherics": null, + "atoll": [["M", "S"]], + "atoll's": null, + "atolls": null, + "atomically": null, + "atomicity": [["M"]], + "atomicity's": null, + "atomic": [["S"]], + "atomics": [["M"]], + "atomics's": null, + "atomistic": null, + "atomization": [["S", "M"]], + "atomizations": null, + "atomization's": null, + "atomize": [["G", "Z", "D", "R", "S"]], + "atomizing": null, + "atomizers": null, + "atomized": null, + "atomizer": [["M"]], + "atomizes": null, + "atomizer's": null, + "atom": [["S", "M"]], + "atoms": null, + "atom's": null, + "atonality": [["M", "S"]], + "atonality's": null, + "atonalities": null, + "atonal": [["Y"]], + "atonally": null, + "atone": [["L", "D", "S", "G"]], + "atonement": [["S", "M"]], + "atoned": null, + "atones": null, + "atoning": null, + "atonements": null, + "atonement's": null, + "atop": null, + "ATP": null, + "Atreus": [["M"]], + "Atreus's": null, + "atria": null, + "atrial": null, + "Atria": [["M"]], + "Atria's": null, + "atrium": [["M"]], + "atrium's": null, + "atrociousness": [["S", "M"]], + "atrociousnesses": null, + "atrociousness's": null, + "atrocious": [["Y", "P"]], + "atrociously": null, + "atrocity": [["S", "M"]], + "atrocities": null, + "atrocity's": null, + "atrophic": null, + "atrophy": [["D", "S", "G", "M"]], + "atrophied": null, + "atrophies": null, + "atrophying": null, + "atrophy's": null, + "atropine": [["S", "M"]], + "atropines": null, + "atropine's": null, + "Atropos": [["M"]], + "Atropos's": null, + "Ats": null, + "attach": [["B", "L", "G", "Z", "M", "D", "R", "S"]], + "attachable": null, + "attachment": [["A", "S", "M"]], + "attaching": null, + "attachers": null, + "attach's": null, + "attached": [["U", "A"]], + "attacher": [["M"]], + "attaches": null, + "unattached": null, + "reattached": null, + "attacher's": null, + "attach�": [["S"]], + "attach�s": null, + "reattachment": null, + "reattachments": null, + "reattachment's": null, + "attachments": null, + "attachment's": null, + "attacker": [["M"]], + "attacker's": null, + "attack": [["G", "B", "Z", "S", "D", "R"]], + "attacking": null, + "attackable": null, + "attackers": null, + "attacks": null, + "attacked": null, + "attainabilities": null, + "attainability": [["U", "M"]], + "unattainability": null, + "unattainability's": null, + "attainability's": null, + "attainableness": [["M"]], + "attainableness's": null, + "attainable": [["U"]], + "unattainable": null, + "attainably": [["U"]], + "unattainably": null, + "attain": [["A", "G", "S", "D"]], + "reattain": null, + "reattaining": null, + "reattains": null, + "reattained": null, + "attaining": null, + "attains": null, + "attained": [["U"]], + "attainder": [["M", "S"]], + "attainder's": null, + "attainders": null, + "unattained": null, + "attainer": [["M", "S"]], + "attainer's": null, + "attainers": null, + "attainment": [["M", "S"]], + "attainment's": null, + "attainments": null, + "attar": [["M", "S"]], + "attar's": null, + "attars": null, + "attempt": [["A", "D", "S", "G"]], + "reattempt": null, + "reattempted": null, + "reattempts": null, + "reattempting": null, + "attempted": null, + "attempts": null, + "attempting": null, + "attempter": [["M", "S"]], + "attempter's": null, + "attempters": null, + "attendance": [["M", "S"]], + "attendance's": null, + "attendances": null, + "attendant": [["S", "M"]], + "attendants": null, + "attendant's": null, + "attended": [["U"]], + "unattended": null, + "attendee": [["S", "M"]], + "attendees": null, + "attendee's": null, + "attender": [["M"]], + "attender's": null, + "attend": [["S", "G", "Z", "D", "R"]], + "attends": null, + "attending": null, + "attenders": null, + "attentional": null, + "attentionality": null, + "attention": [["I", "M", "S"]], + "inattention": null, + "inattention's": null, + "inattentions": null, + "attention's": null, + "attentions": null, + "attentiveness": [["I", "M", "S"]], + "inattentiveness": null, + "inattentiveness's": null, + "inattentivenesses": null, + "attentiveness's": null, + "attentivenesses": null, + "attentive": [["Y", "I", "P"]], + "attentively": null, + "inattentively": null, + "inattentive": null, + "attenuated": [["U"]], + "unattenuated": null, + "attenuate": [["S", "D", "X", "G", "N"]], + "attenuates": null, + "attenuations": null, + "attenuating": null, + "attenuation": [["M"]], + "attenuation's": null, + "attenuator": [["M", "S"]], + "attenuator's": null, + "attenuators": null, + "attestation": [["S", "M"]], + "attestations": null, + "attestation's": null, + "attested": [["U"]], + "unattested": null, + "attester": [["M"]], + "attester's": null, + "attest": [["G", "S", "D", "R"]], + "attesting": null, + "attests": null, + "Attic": null, + "Attica": [["M"]], + "Attica's": null, + "attic": [["M", "S"]], + "attic's": null, + "attics": null, + "Attila": [["M"]], + "Attila's": null, + "attire": [["S", "D", "G"]], + "attires": null, + "attired": null, + "attiring": null, + "attitude": [["M", "S"]], + "attitude's": null, + "attitudes": null, + "attitudinal": [["Y"]], + "attitudinally": null, + "attitudinize": [["S", "D", "G"]], + "attitudinizes": null, + "attitudinized": null, + "attitudinizing": null, + "Attlee": [["M"]], + "Attlee's": null, + "attn": null, + "Attn": null, + "attorney": [["S", "M"]], + "attorneys": null, + "attorney's": null, + "attractant": [["S", "M"]], + "attractants": null, + "attractant's": null, + "attract": [["B", "S", "D", "G", "V"]], + "attractable": null, + "attracts": null, + "attracted": null, + "attracting": null, + "attractive": [["U", "Y", "P"]], + "attraction": [["M", "S"]], + "attraction's": null, + "attractions": null, + "attractivenesses": null, + "attractiveness": [["U", "M"]], + "unattractiveness": null, + "unattractiveness's": null, + "attractiveness's": null, + "unattractive": null, + "unattractively": null, + "attractively": null, + "attractor": [["M", "S"]], + "attractor's": null, + "attractors": null, + "attributable": [["U"]], + "unattributable": null, + "attribute": [["B", "V", "N", "G", "R", "S", "D", "X"]], + "attributive": [["S", "Y"]], + "attribution": [["M"]], + "attributing": null, + "attributer": [["M"]], + "attributes": null, + "attributed": [["U"]], + "attributions": null, + "unattributed": null, + "attributer's": null, + "attributional": null, + "attribution's": null, + "attributives": null, + "attributively": null, + "attrition": [["M", "S"]], + "attrition's": null, + "attritions": null, + "Attucks": null, + "attune": [["S", "D", "G"]], + "attunes": null, + "attuned": null, + "attuning": null, + "atty": null, + "ATV": [["S"]], + "ATVs": null, + "atwitter": null, + "Atwood": [["M"]], + "Atwood's": null, + "atypical": [["Y"]], + "atypically": null, + "Aube": [["M"]], + "Aube's": null, + "Auberge": [["M"]], + "Auberge's": null, + "aubergine": [["M", "S"]], + "aubergine's": null, + "aubergines": null, + "Auberon": [["M"]], + "Auberon's": null, + "Auberta": [["M"]], + "Auberta's": null, + "Aubert": [["M"]], + "Aubert's": null, + "Aubine": [["M"]], + "Aubine's": null, + "Aubree": [["M"]], + "Aubree's": null, + "Aubrette": [["M"]], + "Aubrette's": null, + "Aubrey": [["M"]], + "Aubrey's": null, + "Aubrie": [["M"]], + "Aubrie's": null, + "Aubry": [["M"]], + "Aubry's": null, + "auburn": [["S", "M"]], + "auburns": null, + "auburn's": null, + "Auckland": [["M"]], + "Auckland's": null, + "auctioneer": [["S", "D", "M", "G"]], + "auctioneers": null, + "auctioneered": null, + "auctioneer's": null, + "auctioneering": null, + "auction": [["M", "D", "S", "G"]], + "auction's": null, + "auctioned": null, + "auctions": null, + "auctioning": null, + "audaciousness": [["S", "M"]], + "audaciousnesses": null, + "audaciousness's": null, + "audacious": [["P", "Y"]], + "audaciously": null, + "audacity": [["M", "S"]], + "audacity's": null, + "audacities": null, + "Auden": [["M"]], + "Auden's": null, + "audibility": [["M", "S", "I"]], + "audibility's": null, + "inaudibility's": null, + "audibilities": null, + "inaudibilities": null, + "inaudibility": null, + "audible": [["I"]], + "inaudible": null, + "audibles": null, + "audibly": [["I"]], + "inaudibly": null, + "Audie": [["M"]], + "Audie's": null, + "audience": [["M", "S"]], + "audience's": null, + "audiences": null, + "Audi": [["M"]], + "Audi's": null, + "audiogram": [["S", "M"]], + "audiograms": null, + "audiogram's": null, + "audiological": null, + "audiologist": [["M", "S"]], + "audiologist's": null, + "audiologists": null, + "audiology": [["S", "M"]], + "audiologies": null, + "audiology's": null, + "audiometer": [["M", "S"]], + "audiometer's": null, + "audiometers": null, + "audiometric": null, + "audiometry": [["M"]], + "audiometry's": null, + "audiophile": [["S", "M"]], + "audiophiles": null, + "audiophile's": null, + "audio": [["S", "M"]], + "audios": null, + "audio's": null, + "audiotape": [["S"]], + "audiotapes": null, + "audiovisual": [["S"]], + "audiovisuals": null, + "audited": [["U"]], + "unaudited": null, + "audition": [["M", "D", "S", "G"]], + "audition's": null, + "auditioned": null, + "auditions": null, + "auditioning": null, + "auditorium": [["M", "S"]], + "auditorium's": null, + "auditoriums": null, + "auditor": [["M", "S"]], + "auditor's": null, + "auditors": null, + "auditory": [["S"]], + "auditories": null, + "audit": [["S", "M", "D", "V", "G"]], + "audits": null, + "audit's": null, + "auditive": null, + "auditing": null, + "Audra": [["M"]], + "Audra's": null, + "Audre": [["M"]], + "Audre's": null, + "Audrey": [["M"]], + "Audrey's": null, + "Audrie": [["M"]], + "Audrie's": null, + "Audrye": [["M"]], + "Audrye's": null, + "Audry": [["M"]], + "Audry's": null, + "Audubon": [["M"]], + "Audubon's": null, + "Audy": [["M"]], + "Audy's": null, + "Auerbach": [["M"]], + "Auerbach's": null, + "Augean": null, + "auger": [["S", "M"]], + "augers": null, + "auger's": null, + "aught": [["S"]], + "aughts": null, + "Augie": [["M"]], + "Augie's": null, + "Aug": [["M"]], + "Aug's": null, + "augmentation": [["S", "M"]], + "augmentations": null, + "augmentation's": null, + "augmentative": [["S"]], + "augmentatives": null, + "augment": [["D", "R", "Z", "G", "S"]], + "augmented": null, + "augmenter": [["M"]], + "augmenters": null, + "augmenting": null, + "augments": null, + "augmenter's": null, + "augur": [["G", "D", "M", "S"]], + "auguring": null, + "augured": null, + "augur's": null, + "augurs": null, + "augury": [["S", "M"]], + "auguries": null, + "augury's": null, + "Augusta": [["M"]], + "Augusta's": null, + "Augustan": [["S"]], + "Augustans": null, + "Auguste": [["M"]], + "Auguste's": null, + "Augustina": [["M"]], + "Augustina's": null, + "Augustine": [["M"]], + "Augustine's": null, + "Augustinian": [["S"]], + "Augustinians": null, + "Augustin": [["M"]], + "Augustin's": null, + "augustness": [["S", "M"]], + "augustnesses": null, + "augustness's": null, + "Augusto": [["M"]], + "Augusto's": null, + "August": [["S", "M"]], + "Augusts": null, + "August's": null, + "august": [["S", "T", "P", "Y", "R"]], + "augusts": null, + "augustest": null, + "augustly": null, + "auguster": null, + "Augustus": [["M"]], + "Augustus's": null, + "Augy": [["M"]], + "Augy's": null, + "auk": [["M", "S"]], + "auk's": null, + "auks": null, + "Au": [["M"]], + "Au's": null, + "Aundrea": [["M"]], + "Aundrea's": null, + "auntie": [["M", "S"]], + "auntie's": null, + "aunties": null, + "aunt": [["M", "Y", "S"]], + "aunt's": null, + "auntly": null, + "aunts": null, + "aunty's": null, + "aural": [["Y"]], + "aurally": null, + "Aura": [["M"]], + "Aura's": null, + "aura": [["S", "M"]], + "auras": null, + "aura's": null, + "Aurea": [["M"]], + "Aurea's": null, + "Aurelea": [["M"]], + "Aurelea's": null, + "Aurelia": [["M"]], + "Aurelia's": null, + "Aurelie": [["M"]], + "Aurelie's": null, + "Aurelio": [["M"]], + "Aurelio's": null, + "Aurelius": [["M"]], + "Aurelius's": null, + "Aurel": [["M"]], + "Aurel's": null, + "aureole": [["G", "M", "S", "D"]], + "aureoling": null, + "aureole's": null, + "aureoles": null, + "aureoled": null, + "aureomycin": null, + "Aureomycin": [["M"]], + "Aureomycin's": null, + "Auria": [["M"]], + "Auria's": null, + "auric": null, + "auricle": [["S", "M"]], + "auricles": null, + "auricle's": null, + "auricular": null, + "Aurie": [["M"]], + "Aurie's": null, + "Auriga": [["M"]], + "Auriga's": null, + "Aurilia": [["M"]], + "Aurilia's": null, + "Aurlie": [["M"]], + "Aurlie's": null, + "Auroora": [["M"]], + "Auroora's": null, + "auroral": null, + "Aurora": [["M"]], + "Aurora's": null, + "aurora": [["S", "M"]], + "auroras": null, + "aurora's": null, + "Aurore": [["M"]], + "Aurore's": null, + "Aurthur": [["M"]], + "Aurthur's": null, + "Auschwitz": [["M"]], + "Auschwitz's": null, + "auscultate": [["X", "D", "S", "N", "G"]], + "auscultations": null, + "auscultated": null, + "auscultates": null, + "auscultation": [["M"]], + "auscultating": null, + "auscultation's": null, + "auspice": [["S", "M"]], + "auspices": null, + "auspice's": null, + "auspicious": [["I", "P", "Y"]], + "inauspicious": null, + "inauspiciousness": null, + "inauspiciously": null, + "auspiciousness": [["I", "M"]], + "auspiciously": null, + "auspiciousnesses": null, + "inauspiciousness's": null, + "auspiciousness's": null, + "Aussie": [["M", "S"]], + "Aussie's": null, + "Aussies": null, + "Austen": [["M"]], + "Austen's": null, + "austereness": [["M"]], + "austereness's": null, + "austere": [["T", "Y", "R", "P"]], + "austerest": null, + "austerely": null, + "austerer": null, + "austerity": [["S", "M"]], + "austerities": null, + "austerity's": null, + "Austina": [["M"]], + "Austina's": null, + "Austine": [["M"]], + "Austine's": null, + "Austin": [["S", "M"]], + "Austins": null, + "Austin's": null, + "austral": null, + "Australasia": [["M"]], + "Australasia's": null, + "Australasian": [["S"]], + "Australasians": null, + "australes": null, + "Australia": [["M"]], + "Australia's": null, + "Australian": [["M", "S"]], + "Australian's": null, + "Australians": null, + "Australis": [["M"]], + "Australis's": null, + "australites": null, + "Australoid": null, + "Australopithecus": [["M"]], + "Australopithecus's": null, + "Austria": [["M"]], + "Austria's": null, + "Austrian": [["S", "M"]], + "Austrians": null, + "Austrian's": null, + "Austronesian": null, + "authentically": null, + "authenticated": [["U"]], + "unauthenticated": null, + "authenticate": [["G", "N", "D", "S", "X"]], + "authenticating": null, + "authentication": [["M"]], + "authenticates": null, + "authentications": null, + "authentication's": null, + "authenticator": [["M", "S"]], + "authenticator's": null, + "authenticators": null, + "authenticity": [["M", "S"]], + "authenticity's": null, + "authenticities": null, + "authentic": [["U", "I"]], + "unauthentic": null, + "inauthentic": null, + "author": [["D", "M", "G", "S"]], + "authored": null, + "author's": null, + "authoring": null, + "authors": null, + "authoress": [["S"]], + "authoresses": null, + "authorial": null, + "authoritarianism": [["M", "S"]], + "authoritarianism's": null, + "authoritarianisms": null, + "authoritarian": [["S"]], + "authoritarians": null, + "authoritativeness": [["S", "M"]], + "authoritativenesses": null, + "authoritativeness's": null, + "authoritative": [["P", "Y"]], + "authoritatively": null, + "authority": [["S", "M"]], + "authorities": null, + "authority's": null, + "authorization": [["M", "A", "S"]], + "authorization's": null, + "reauthorization's": null, + "reauthorization": null, + "reauthorizations": null, + "authorizations": null, + "authorize": [["A", "G", "D", "S"]], + "reauthorize": null, + "reauthorizing": null, + "reauthorized": null, + "reauthorizes": null, + "authorizing": null, + "authorized": [["U"]], + "authorizes": [["U"]], + "unauthorized": [["P", "Y"]], + "authorizer": [["S", "M"]], + "authorizers": null, + "authorizer's": null, + "unauthorizes": null, + "authorship": [["M", "S"]], + "authorship's": null, + "authorships": null, + "autism": [["M", "S"]], + "autism's": null, + "autisms": null, + "autistic": [["S"]], + "autistics": null, + "autobahn": [["M", "S"]], + "autobahn's": null, + "autobahns": null, + "autobiographer": [["M", "S"]], + "autobiographer's": null, + "autobiographers": null, + "autobiographic": null, + "autobiographical": [["Y"]], + "autobiographically": null, + "autobiography": [["M", "S"]], + "autobiography's": null, + "autobiographies": null, + "autoclave": [["S", "D", "G", "M"]], + "autoclaves": null, + "autoclaved": null, + "autoclaving": null, + "autoclave's": null, + "autocollimator": [["M"]], + "autocollimator's": null, + "autocorrelate": [["G", "N", "S", "D", "X"]], + "autocorrelating": null, + "autocorrelation": [["M"]], + "autocorrelates": null, + "autocorrelated": null, + "autocorrelations": null, + "autocorrelation's": null, + "autocracy": [["S", "M"]], + "autocracies": null, + "autocracy's": null, + "autocratic": null, + "autocratically": null, + "autocrat": [["S", "M"]], + "autocrats": null, + "autocrat's": null, + "autodial": [["R"]], + "autodialer": null, + "autodidact": [["M", "S"]], + "autodidact's": null, + "autodidacts": null, + "autofluorescence": null, + "autograph": [["M", "D", "G"]], + "autograph's": null, + "autographed": null, + "autographing": null, + "autographs": null, + "autoignition": [["M"]], + "autoignition's": null, + "autoimmune": null, + "autoimmunity": [["S"]], + "autoimmunities": null, + "autoloader": null, + "automaker": [["S"]], + "automakers": null, + "automata's": null, + "automate": [["N", "G", "D", "S", "X"]], + "automation": [["M"]], + "automating": null, + "automated": null, + "automates": null, + "automations": null, + "automatically": null, + "automatic": [["S"]], + "automatics": null, + "automation's": null, + "automatism": [["S", "M"]], + "automatisms": null, + "automatism's": null, + "automatize": [["D", "S", "G"]], + "automatized": null, + "automatizes": null, + "automatizing": null, + "automaton": [["S", "M"]], + "automatons": null, + "automaton's": null, + "automobile": [["G", "D", "S", "M"]], + "automobiling": null, + "automobiled": null, + "automobiles": null, + "automobile's": null, + "automorphism": [["S", "M"]], + "automorphisms": null, + "automorphism's": null, + "automotive": null, + "autonavigator": [["S", "M"]], + "autonavigators": null, + "autonavigator's": null, + "autonomic": [["S"]], + "autonomics": null, + "autonomous": [["Y"]], + "autonomously": null, + "autonomy": [["M", "S"]], + "autonomy's": null, + "autonomies": null, + "autopilot": [["S", "M"]], + "autopilots": null, + "autopilot's": null, + "autopsy": [["M", "D", "S", "G"]], + "autopsy's": null, + "autopsied": null, + "autopsies": null, + "autopsying": null, + "autoregressive": null, + "autorepeat": [["G", "S"]], + "autorepeating": null, + "autorepeats": null, + "auto": [["S", "D", "M", "G"]], + "autos": null, + "autoed": null, + "auto's": null, + "autoing": null, + "autostart": null, + "autosuggestibility": [["M"]], + "autosuggestibility's": null, + "autotransformer": [["M"]], + "autotransformer's": null, + "autoworker": [["S"]], + "autoworkers": null, + "autumnal": [["Y"]], + "autumnally": null, + "Autumn": [["M"]], + "Autumn's": null, + "autumn": [["M", "S"]], + "autumn's": null, + "autumns": null, + "aux": null, + "auxiliary": [["S"]], + "auxiliaries": null, + "auxin": [["M", "S"]], + "auxin's": null, + "auxins": null, + "AV": null, + "availability": [["U", "S", "M"]], + "unavailability": null, + "unavailabilities": null, + "unavailability's": null, + "availabilities": null, + "availability's": null, + "availableness": [["M"]], + "availableness's": null, + "available": [["U"]], + "unavailable": null, + "availably": null, + "avail": [["B", "S", "Z", "G", "R", "D"]], + "avails": null, + "availers": null, + "availing": [["U"]], + "availer": null, + "availed": null, + "unavailing": [["P", "Y"]], + "avalanche": [["M", "G", "S", "D"]], + "avalanche's": null, + "avalanching": null, + "avalanches": null, + "avalanched": null, + "Avalon": [["M"]], + "Avalon's": null, + "Ava": [["M"]], + "Ava's": null, + "avant": null, + "avarice": [["S", "M"]], + "avarices": null, + "avarice's": null, + "avariciousness": [["M"]], + "avariciousness's": null, + "avaricious": [["P", "Y"]], + "avariciously": null, + "avast": [["S"]], + "avasts": null, + "avatar": [["M", "S"]], + "avatar's": null, + "avatars": null, + "avaunt": [["S"]], + "avaunts": null, + "avdp": null, + "Aveline": [["M"]], + "Aveline's": null, + "Ave": [["M", "S"]], + "Ave's": null, + "Aves": null, + "avenged": [["U"]], + "unavenged": null, + "avenger": [["M"]], + "avenger's": null, + "avenge": [["Z", "G", "S", "R", "D"]], + "avengers": null, + "avenging": null, + "avenges": null, + "Aventine": [["M"]], + "Aventine's": null, + "Aventino": [["M"]], + "Aventino's": null, + "avenue": [["M", "S"]], + "avenue's": null, + "avenues": null, + "average": [["D", "S", "P", "G", "Y", "M"]], + "averaged": null, + "averages": null, + "averageness": null, + "averaging": null, + "averagely": null, + "average's": null, + "Averell": [["M"]], + "Averell's": null, + "Averill": [["M"]], + "Averill's": null, + "Averil": [["M"]], + "Averil's": null, + "Avernus": [["M"]], + "Avernus's": null, + "averred": null, + "averrer": null, + "averring": null, + "Averroes": [["M"]], + "Averroes's": null, + "averseness": [["M"]], + "averseness's": null, + "averse": [["Y", "N", "X", "P"]], + "aversely": null, + "aversion": [["M"]], + "aversions": null, + "aversion's": null, + "avers": [["V"]], + "aversive": null, + "avert": [["G", "S", "D"]], + "averting": null, + "averts": null, + "averted": null, + "Averyl": [["M"]], + "Averyl's": null, + "Avery": [["M"]], + "Avery's": null, + "ave": [["S"]], + "aves": [["C"]], + "deaves": null, + "Avesta": [["M"]], + "Avesta's": null, + "avg": null, + "avian": [["S"]], + "avians": null, + "aviary": [["S", "M"]], + "aviaries": null, + "aviary's": null, + "aviate": [["N", "X"]], + "aviation": [["M"]], + "aviations": null, + "aviation's": null, + "aviator": [["S", "M"]], + "aviators": null, + "aviator's": null, + "aviatrices": null, + "aviatrix": [["S", "M"]], + "aviatrixes": null, + "aviatrix's": null, + "Avicenna": [["M"]], + "Avicenna's": null, + "Avictor": [["M"]], + "Avictor's": null, + "avidity": [["M", "S"]], + "avidity's": null, + "avidities": null, + "avid": [["T", "P", "Y", "R"]], + "avidest": null, + "avidness": null, + "avidly": null, + "avider": null, + "Avie": [["M"]], + "Avie's": null, + "Avigdor": [["M"]], + "Avigdor's": null, + "Avignon": [["M"]], + "Avignon's": null, + "Avila": [["M"]], + "Avila's": null, + "avionic": [["S"]], + "avionics": [["M"]], + "avionics's": null, + "Avior": [["M"]], + "Avior's": null, + "Avis": null, + "avitaminoses": null, + "avitaminosis": [["M"]], + "avitaminosis's": null, + "Avivah": [["M"]], + "Avivah's": null, + "Aviva": [["M"]], + "Aviva's": null, + "Aviv": [["M"]], + "Aviv's": null, + "avocado": [["M", "S"]], + "avocado's": null, + "avocados": null, + "avocational": null, + "avocation": [["S", "M"]], + "avocations": null, + "avocation's": null, + "Avogadro": [["M"]], + "Avogadro's": null, + "avoidable": [["U"]], + "unavoidable": null, + "avoidably": [["U"]], + "unavoidably": null, + "avoidance": [["S", "M"]], + "avoidances": null, + "avoidance's": null, + "avoider": [["M"]], + "avoider's": null, + "avoid": [["Z", "R", "D", "B", "G", "S"]], + "avoiders": null, + "avoided": null, + "avoiding": null, + "avoids": null, + "avoirdupois": [["M", "S"]], + "avoirdupois's": null, + "avoirdupoises": null, + "Avon": [["M"]], + "Avon's": null, + "avouch": [["G", "D", "S"]], + "avouching": null, + "avouched": null, + "avouches": null, + "avowal": [["E", "M", "S"]], + "disavowal": null, + "disavowal's": null, + "disavowals": null, + "avowal's": null, + "avowals": null, + "avowed": [["Y"]], + "avowedly": null, + "avower": [["M"]], + "avower's": null, + "avow": [["G", "E", "D", "S"]], + "avowing": null, + "disavowing": null, + "disavow": null, + "disavowed": null, + "disavows": null, + "avows": null, + "Avram": [["M"]], + "Avram's": null, + "Avril": [["M"]], + "Avril's": null, + "Avrit": [["M"]], + "Avrit's": null, + "Avrom": [["M"]], + "Avrom's": null, + "avuncular": null, + "av": [["Z", "R"]], + "aver": null, + "AWACS": null, + "await": [["S", "D", "G"]], + "awaits": null, + "awaited": null, + "awaiting": null, + "awake": [["G", "S"]], + "awaking": null, + "awakes": null, + "awakened": [["U"]], + "unawakened": null, + "awakener": [["M"]], + "awakener's": null, + "awakening": [["S"]], + "awakenings": null, + "awaken": [["S", "A", "D", "G"]], + "awakens": null, + "reawakens": null, + "reawaken": null, + "reawakened": null, + "reawakening": [["M"]], + "awarder": [["M"]], + "awarder's": null, + "award": [["R", "D", "S", "Z", "G"]], + "awarded": null, + "awards": null, + "awarders": null, + "awarding": null, + "awareness": [["M", "S", "U"]], + "awareness's": null, + "unawareness's": null, + "awarenesses": null, + "unawarenesses": null, + "unawareness": null, + "aware": [["T", "R", "P"]], + "awarest": null, + "awarer": null, + "awash": null, + "away": [["P", "S"]], + "awayness": null, + "aways": null, + "aweigh": null, + "awe": [["S", "M"]], + "awes": null, + "awe's": null, + "awesomeness": [["S", "M"]], + "awesomenesses": null, + "awesomeness's": null, + "awesome": [["P", "Y"]], + "awesomely": null, + "awestruck": null, + "awfuller": null, + "awfullest": null, + "awfulness": [["S", "M"]], + "awfulnesses": null, + "awfulness's": null, + "awful": [["Y", "P"]], + "awfully": null, + "aw": [["G", "D"]], + "awing": null, + "awed": null, + "awhile": [["S"]], + "awhiles": null, + "awkwardness": [["M", "S"]], + "awkwardness's": null, + "awkwardnesses": null, + "awkward": [["P", "R", "Y", "T"]], + "awkwarder": null, + "awkwardly": null, + "awkwardest": null, + "awl": [["M", "S"]], + "awl's": null, + "awls": null, + "awning": [["D", "M"]], + "awninged": null, + "awning's": null, + "awn": [["M", "D", "J", "G", "S"]], + "awn's": null, + "awned": null, + "awnings": null, + "awns": null, + "awoke": null, + "awoken": null, + "AWOL": null, + "awry": [["R", "T"]], + "awrier": null, + "awriest": null, + "ax": [["D", "R", "S", "Z", "G", "M"]], + "axed": null, + "axer": null, + "axes": null, + "axers": null, + "axing": null, + "ax's": null, + "axehead": [["S"]], + "axeheads": null, + "Axel": [["M"]], + "Axel's": null, + "Axe": [["M"]], + "Axe's": null, + "axeman": null, + "axial": [["Y"]], + "axially": null, + "axillary": null, + "axiological": [["Y"]], + "axiologically": null, + "axiology": [["M"]], + "axiology's": null, + "axiomatically": null, + "axiomatic": [["S"]], + "axiomatics": null, + "axiomatization": [["M", "S"]], + "axiomatization's": null, + "axiomatizations": null, + "axiomatize": [["G", "D", "S"]], + "axiomatizing": null, + "axiomatized": null, + "axiomatizes": null, + "axiom": [["S", "M"]], + "axioms": null, + "axiom's": null, + "axion": [["S", "M"]], + "axions": null, + "axion's": null, + "axis": [["S", "M"]], + "axises": null, + "axis's": null, + "axle": [["M", "S"]], + "axle's": null, + "axles": null, + "axletree": [["M", "S"]], + "axletree's": null, + "axletrees": null, + "Ax": [["M"]], + "Ax's": null, + "axolotl": [["S", "M"]], + "axolotls": null, + "axolotl's": null, + "axon": [["S", "M"]], + "axons": null, + "axon's": null, + "ayah": [["M"]], + "ayah's": null, + "ayahs": null, + "Ayala": [["M"]], + "Ayala's": null, + "ayatollah": null, + "ayatollahs": null, + "aye": [["M", "Z", "R", "S"]], + "aye's": null, + "ayers": null, + "ayer": null, + "ayes": null, + "Ayers": null, + "Aylmar": [["M"]], + "Aylmar's": null, + "Aylmer": [["M"]], + "Aylmer's": null, + "Aymara": [["M"]], + "Aymara's": null, + "Aymer": [["M"]], + "Aymer's": null, + "Ayn": [["M"]], + "Ayn's": null, + "AZ": null, + "azalea": [["S", "M"]], + "azaleas": null, + "azalea's": null, + "Azania": [["M"]], + "Azania's": null, + "Azazel": [["M"]], + "Azazel's": null, + "Azerbaijan": [["M"]], + "Azerbaijan's": null, + "azimuthal": [["Y"]], + "azimuthally": null, + "azimuth": [["M"]], + "azimuth's": null, + "azimuths": null, + "Azores": null, + "Azov": [["M"]], + "Azov's": null, + "AZT": null, + "Aztecan": null, + "Aztec": [["M", "S"]], + "Aztec's": null, + "Aztecs": null, + "azure": [["M", "S"]], + "azure's": null, + "azures": null, + "BA": null, + "Baal": [["S", "M"]], + "Baals": null, + "Baal's": null, + "baa": [["S", "D", "G"]], + "baas": null, + "baaed": null, + "baaing": null, + "Babara": [["M"]], + "Babara's": null, + "Babar's": null, + "Babbage": [["M"]], + "Babbage's": null, + "Babbette": [["M"]], + "Babbette's": null, + "Babbie": [["M"]], + "Babbie's": null, + "babbitt": [["G", "D", "S"]], + "babbitting": null, + "babbitted": null, + "babbitts": null, + "Babbitt": [["M"]], + "Babbitt's": null, + "babbler": [["M"]], + "babbler's": null, + "babble": [["R", "S", "D", "G", "Z"]], + "babbles": null, + "babbled": null, + "babbling": null, + "babblers": null, + "Babb": [["M"]], + "Babb's": null, + "Babcock": [["M"]], + "Babcock's": null, + "Babel": [["M", "S"]], + "Babel's": null, + "Babels": null, + "babel": [["S"]], + "babels": null, + "babe": [["S", "M"]], + "babes": null, + "babe's": null, + "Babette": [["M"]], + "Babette's": null, + "Babita": [["M"]], + "Babita's": null, + "Babka": [["M"]], + "Babka's": null, + "baboon": [["M", "S"]], + "baboon's": null, + "baboons": null, + "Bab": [["S", "M"]], + "Babs": null, + "Bab's": null, + "babushka": [["M", "S"]], + "babushka's": null, + "babushkas": null, + "babyhood": [["M", "S"]], + "babyhood's": null, + "babyhoods": null, + "babyish": null, + "Babylonia": [["M"]], + "Babylonia's": null, + "Babylonian": [["S", "M"]], + "Babylonians": null, + "Babylonian's": null, + "Babylon": [["M", "S"]], + "Babylon's": null, + "Babylons": null, + "babysat": null, + "babysit": [["S"]], + "babysits": null, + "babysitter": [["S"]], + "babysitters": null, + "babysitting": null, + "baby": [["T", "D", "S", "R", "M", "G"]], + "babiest": null, + "babied": null, + "babies": null, + "babier": null, + "baby's": null, + "babying": null, + "Bacall": [["M"]], + "Bacall's": null, + "Bacardi": [["M"]], + "Bacardi's": null, + "baccalaureate": [["M", "S"]], + "baccalaureate's": null, + "baccalaureates": null, + "baccarat": [["S", "M"]], + "baccarats": null, + "baccarat's": null, + "bacchanalia": null, + "Bacchanalia": [["M"]], + "Bacchanalia's": null, + "bacchanalian": [["S"]], + "bacchanalians": null, + "bacchanal": [["S", "M"]], + "bacchanals": null, + "bacchanal's": null, + "Bacchic": null, + "Bacchus": [["M"]], + "Bacchus's": null, + "bachelorhood": [["S", "M"]], + "bachelorhoods": null, + "bachelorhood's": null, + "bachelor": [["S", "M"]], + "bachelors": null, + "bachelor's": null, + "Bach": [["M"]], + "Bach's": null, + "bacillary": null, + "bacilli": null, + "bacillus": [["M", "S"]], + "bacillus's": null, + "bacilluses": null, + "backache": [["S", "M"]], + "backaches": null, + "backache's": null, + "backarrow": null, + "backbencher": [["M"]], + "backbencher's": null, + "backbench": [["Z", "R"]], + "backbenchers": null, + "backbiter": [["M"]], + "backbiter's": null, + "backbite": [["S"]], + "backbites": null, + "backbitten": null, + "backbit": [["Z", "G", "J", "R"]], + "backbiters": null, + "backbiting": null, + "backbitings": null, + "backboard": [["S", "M"]], + "backboards": null, + "backboard's": null, + "backbone": [["S", "M"]], + "backbones": null, + "backbone's": null, + "backbreaking": null, + "backchaining": null, + "backcloth": [["M"]], + "backcloth's": null, + "backdate": [["G", "D", "S"]], + "backdating": null, + "backdated": null, + "backdates": null, + "backdrop": [["M", "S"]], + "backdrop's": null, + "backdrops": null, + "backdropped": null, + "backdropping": null, + "backed": [["U"]], + "unbacked": null, + "backer": [["M"]], + "backer's": null, + "backfield": [["S", "M"]], + "backfields": null, + "backfield's": null, + "backfill": [["S", "D", "G"]], + "backfills": null, + "backfilled": null, + "backfilling": null, + "backfire": [["G", "D", "S"]], + "backfiring": null, + "backfired": null, + "backfires": null, + "backgammon": [["M", "S"]], + "backgammon's": null, + "backgammons": null, + "background": [["S", "D", "R", "M", "Z", "G"]], + "backgrounds": null, + "backgrounded": null, + "backgrounder": null, + "background's": null, + "backgrounders": null, + "backgrounding": null, + "back": [["G", "Z", "D", "R", "M", "S", "J"]], + "backing": [["M"]], + "backers": null, + "back's": null, + "backs": null, + "backings": null, + "backhanded": [["Y"]], + "backhandedly": null, + "backhander": [["M"]], + "backhander's": null, + "backhand": [["R", "D", "M", "S", "Z", "G"]], + "backhand's": null, + "backhands": null, + "backhanders": null, + "backhanding": null, + "backhoe": [["S"]], + "backhoes": null, + "backing's": null, + "backlash": [["G", "R", "S", "D", "M"]], + "backlashing": null, + "backlasher": null, + "backlashes": null, + "backlashed": null, + "backlash's": null, + "backless": null, + "backlogged": null, + "backlogging": null, + "backlog": [["M", "S"]], + "backlog's": null, + "backlogs": null, + "backorder": null, + "backpacker": [["M"]], + "backpacker's": null, + "backpack": [["Z", "G", "S", "M", "R", "D"]], + "backpackers": null, + "backpacking": null, + "backpacks": null, + "backpack's": null, + "backpacked": null, + "backpedal": [["D", "G", "S"]], + "backpedaled": null, + "backpedaling": null, + "backpedals": null, + "backplane": [["M", "S"]], + "backplane's": null, + "backplanes": null, + "backplate": [["S", "M"]], + "backplates": null, + "backplate's": null, + "backrest": [["M", "S"]], + "backrest's": null, + "backrests": null, + "backscatter": [["S", "M", "D", "G"]], + "backscatters": null, + "backscatter's": null, + "backscattered": null, + "backscattering": null, + "backseat": [["S"]], + "backseats": null, + "backside": [["S", "M"]], + "backsides": null, + "backside's": null, + "backslapper": [["M", "S"]], + "backslapper's": null, + "backslappers": null, + "backslapping": [["M"]], + "backslapping's": null, + "backslash": [["D", "S", "G"]], + "backslashed": null, + "backslashes": null, + "backslashing": null, + "backslider": [["M"]], + "backslider's": null, + "backslide": [["S"]], + "backslides": null, + "backslid": [["R", "Z", "G"]], + "backsliders": null, + "backsliding": null, + "backspace": [["G", "S", "D"]], + "backspacing": null, + "backspaces": null, + "backspaced": null, + "backspin": [["S", "M"]], + "backspins": null, + "backspin's": null, + "backstabber": [["M"]], + "backstabber's": null, + "backstabbing": null, + "backstage": null, + "backstair": [["S"]], + "backstairs": null, + "backstitch": [["G", "D", "S", "M"]], + "backstitching": null, + "backstitched": null, + "backstitches": null, + "backstitch's": null, + "backstop": [["M", "S"]], + "backstop's": null, + "backstops": null, + "backstopped": null, + "backstopping": null, + "backstreet": [["M"]], + "backstreet's": null, + "backstretch": [["S", "M"]], + "backstretches": null, + "backstretch's": null, + "backstroke": [["G", "M", "D", "S"]], + "backstroking": null, + "backstroke's": null, + "backstroked": null, + "backstrokes": null, + "backtalk": [["S"]], + "backtalks": null, + "backtrack": [["S", "D", "R", "G", "Z"]], + "backtracks": null, + "backtracked": null, + "backtracker": null, + "backtracking": null, + "backtrackers": null, + "backup": [["S", "M"]], + "backups": null, + "backup's": null, + "Backus": [["M"]], + "Backus's": null, + "backwardness": [["M", "S"]], + "backwardness's": null, + "backwardnesses": null, + "backward": [["Y", "S", "P"]], + "backwardly": null, + "backwards": null, + "backwash": [["S", "D", "M", "G"]], + "backwashes": null, + "backwashed": null, + "backwash's": null, + "backwashing": null, + "backwater": [["S", "M"]], + "backwaters": null, + "backwater's": null, + "backwood": [["S"]], + "backwoods": null, + "backwoodsman": [["M"]], + "backwoodsman's": null, + "backwoodsmen": null, + "backyard": [["M", "S"]], + "backyard's": null, + "backyards": null, + "baconer": [["M"]], + "baconer's": null, + "Bacon": [["M"]], + "Bacon's": null, + "bacon": [["S", "R", "M"]], + "bacons": null, + "bacon's": null, + "bacterial": [["Y"]], + "bacterially": null, + "bacteria": [["M", "S"]], + "bacteria's": null, + "bacterias": null, + "bactericidal": null, + "bactericide": [["S", "M"]], + "bactericides": null, + "bactericide's": null, + "bacteriologic": null, + "bacteriological": null, + "bacteriologist": [["M", "S"]], + "bacteriologist's": null, + "bacteriologists": null, + "bacteriology": [["S", "M"]], + "bacteriologies": null, + "bacteriology's": null, + "bacterium": [["M"]], + "bacterium's": null, + "Bactria": [["M"]], + "Bactria's": null, + "badder": null, + "baddest": null, + "baddie": [["M", "S"]], + "baddie's": null, + "baddies": null, + "bade": null, + "Baden": [["M"]], + "Baden's": null, + "badge": [["D", "S", "R", "G", "M", "Z"]], + "badged": null, + "badges": null, + "badger": [["D", "M", "G"]], + "badging": null, + "badge's": null, + "badgers": null, + "badgered": null, + "badger's": null, + "badgering": null, + "badinage": [["D", "S", "M", "G"]], + "badinaged": null, + "badinages": null, + "badinage's": null, + "badinaging": null, + "badland": [["S"]], + "badlands": null, + "Badlands": [["M"]], + "Badlands's": null, + "badman": [["M"]], + "badman's": null, + "badmen": null, + "badminton": [["M", "S"]], + "badminton's": null, + "badmintons": null, + "badmouth": [["D", "G"]], + "badmouthed": null, + "badmouthing": null, + "badmouths": null, + "badness": [["S", "M"]], + "badnesses": null, + "badness's": null, + "bad": [["P", "S", "N", "Y"]], + "bads": null, + "baden": null, + "badly": null, + "Baedeker": [["S", "M"]], + "Baedekers": null, + "Baedeker's": null, + "Baez": [["M"]], + "Baez's": null, + "Baffin": [["M"]], + "Baffin's": null, + "bafflement": [["M", "S"]], + "bafflement's": null, + "bafflements": null, + "baffler": [["M"]], + "baffler's": null, + "baffle": [["R", "S", "D", "G", "Z", "L"]], + "baffles": null, + "baffled": null, + "baffling": [["Y"]], + "bafflers": null, + "bafflingly": null, + "bagatelle": [["M", "S"]], + "bagatelle's": null, + "bagatelles": null, + "bagel": [["S", "M"]], + "bagels": null, + "bagel's": null, + "bagful": [["M", "S"]], + "bagful's": null, + "bagfuls": null, + "baggageman": null, + "baggagemen": null, + "baggage": [["S", "M"]], + "baggages": null, + "baggage's": null, + "bagged": [["M"]], + "bagged's": null, + "bagger": [["S", "M"]], + "baggers": null, + "bagger's": null, + "baggily": null, + "bagginess": [["M", "S"]], + "bagginess's": null, + "bagginesses": null, + "bagging": [["M"]], + "bagging's": null, + "baggy": [["P", "R", "S", "T"]], + "baggier": null, + "baggies": null, + "baggiest": null, + "Baghdad": [["M"]], + "Baghdad's": null, + "bagpiper": [["M"]], + "bagpiper's": null, + "bagpipe": [["R", "S", "M", "Z"]], + "bagpipes": null, + "bagpipe's": null, + "bagpipers": null, + "Bagrodia": [["M", "S"]], + "Bagrodia's": null, + "Bagrodias": null, + "bag": [["S", "M"]], + "bags": null, + "bag's": null, + "baguette": [["S", "M"]], + "baguettes": null, + "baguette's": null, + "Baguio": [["M"]], + "Baguio's": null, + "bah": null, + "Baha'i": null, + "Bahama": [["M", "S"]], + "Bahama's": null, + "Bahamas": null, + "Bahamanian": [["S"]], + "Bahamanians": null, + "Bahamian": [["M", "S"]], + "Bahamian's": null, + "Bahamians": null, + "Baha'ullah": null, + "Bahia": [["M"]], + "Bahia's": null, + "Bahrain": [["M"]], + "Bahrain's": null, + "bahs": null, + "Baikal": [["M"]], + "Baikal's": null, + "Bailey": [["S", "M"]], + "Baileys": null, + "Bailey's": null, + "bail": [["G", "S", "M", "Y", "D", "R", "B"]], + "bailing": null, + "bails": null, + "bail's": null, + "bailly": null, + "bailed": null, + "bailer": null, + "bailable": null, + "Bailie": [["M"]], + "Bailie's": null, + "bailiff": [["S", "M"]], + "bailiffs": null, + "bailiff's": null, + "bailiwick": [["M", "S"]], + "bailiwick's": null, + "bailiwicks": null, + "Baillie": [["M"]], + "Baillie's": null, + "Bail": [["M"]], + "Bail's": null, + "bailout": [["M", "S"]], + "bailout's": null, + "bailouts": null, + "bailsman": [["M"]], + "bailsman's": null, + "bailsmen": null, + "Baily": [["M"]], + "Baily's": null, + "Baird": [["M"]], + "Baird's": null, + "bairn": [["S", "M"]], + "bairns": null, + "bairn's": null, + "baiter": [["M"]], + "baiter's": null, + "bait": [["G", "S", "M", "D", "R"]], + "baiting": null, + "baits": null, + "bait's": null, + "baited": null, + "baize": [["G", "M", "D", "S"]], + "baizing": null, + "baize's": null, + "baized": null, + "baizes": null, + "Baja": [["M"]], + "Baja's": null, + "baked": [["U"]], + "unbaked": null, + "bakehouse": [["M"]], + "bakehouse's": null, + "Bakelite": [["M"]], + "Bakelite's": null, + "baker": [["M"]], + "baker's": null, + "Baker": [["M"]], + "Baker's": null, + "Bakersfield": [["M"]], + "Bakersfield's": null, + "bakery": [["S", "M"]], + "bakeries": null, + "bakery's": null, + "bakeshop": [["S"]], + "bakeshops": null, + "bake": [["Z", "G", "J", "D", "R", "S"]], + "bakers": null, + "baking": [["M"]], + "bakings": null, + "bakes": null, + "baking's": null, + "baklava": [["M"]], + "baklava's": null, + "baksheesh": [["S", "M"]], + "baksheeshes": null, + "baksheesh's": null, + "Baku": [["M"]], + "Baku's": null, + "Bakunin": [["M"]], + "Bakunin's": null, + "balaclava": [["M", "S"]], + "balaclava's": null, + "balaclavas": null, + "balalaika": [["M", "S"]], + "balalaika's": null, + "balalaikas": null, + "balanced": [["A"]], + "rebalanced": null, + "balancedness": null, + "balancer": [["M", "S"]], + "balancer's": null, + "balancers": null, + "balance's": null, + "balance": [["U", "S", "D", "G"]], + "unbalance": null, + "unbalances": null, + "unbalanced": [["P"]], + "unbalancing": null, + "balances": null, + "balancing": null, + "Balanchine": [["M"]], + "Balanchine's": null, + "Balboa": [["M"]], + "Balboa's": null, + "balboa": [["S", "M"]], + "balboas": null, + "balboa's": null, + "balcony": [["M", "S", "D"]], + "balcony's": null, + "balconies": null, + "balconied": null, + "balderdash": [["M", "S"]], + "balderdash's": null, + "balderdashes": null, + "Balder": [["M"]], + "Balder's": null, + "baldfaced": null, + "Bald": [["M", "R"]], + "Bald's": null, + "baldness": [["M", "S"]], + "baldness's": null, + "baldnesses": null, + "bald": [["P", "Y", "D", "R", "G", "S", "T"]], + "baldly": null, + "balded": null, + "balder": null, + "balding": null, + "balds": null, + "baldest": null, + "baldric": [["S", "M"]], + "baldrics": null, + "baldric's": null, + "Balduin": [["M"]], + "Balduin's": null, + "Baldwin": [["M"]], + "Baldwin's": null, + "baldy": null, + "Balearic": [["M"]], + "Balearic's": null, + "baleen": [["M", "S"]], + "baleen's": null, + "baleens": null, + "balefuller": null, + "balefullest": null, + "balefulness": [["M", "S"]], + "balefulness's": null, + "balefulnesses": null, + "baleful": [["Y", "P"]], + "balefully": null, + "Bale": [["M"]], + "Bale's": null, + "bale": [["M", "Z", "G", "D", "R", "S"]], + "bale's": null, + "balers": null, + "baling": null, + "baled": null, + "baler": [["M"]], + "bales": null, + "baler's": null, + "Balfour": [["M"]], + "Balfour's": null, + "Bali": [["M"]], + "Bali's": null, + "Balinese": null, + "balkanization": null, + "balkanize": [["D", "G"]], + "balkanized": null, + "balkanizing": null, + "Balkan": [["S", "M"]], + "Balkans": null, + "Balkan's": null, + "balker": [["M"]], + "balker's": null, + "balk": [["G", "D", "R", "S"]], + "balking": null, + "balked": null, + "balks": null, + "Balkhash": [["M"]], + "Balkhash's": null, + "balkiness": [["M"]], + "balkiness's": null, + "balky": [["P", "R", "T"]], + "balkier": null, + "balkiest": null, + "balladeer": [["M", "S"]], + "balladeer's": null, + "balladeers": null, + "ballade": [["M", "S"]], + "ballade's": null, + "ballades": null, + "balladry": [["M", "S"]], + "balladry's": null, + "balladries": null, + "ballad": [["S", "M"]], + "ballads": null, + "ballad's": null, + "Ballard": [["S", "M"]], + "Ballards": null, + "Ballard's": null, + "ballast": [["S", "G", "M", "D"]], + "ballasts": null, + "ballasting": null, + "ballast's": null, + "ballasted": null, + "ballcock": [["S"]], + "ballcocks": null, + "ballerina": [["M", "S"]], + "ballerina's": null, + "ballerinas": null, + "baller": [["M"]], + "baller's": null, + "balletic": null, + "ballet": [["M", "S"]], + "ballet's": null, + "ballets": null, + "ballfields": null, + "ballgame": [["S"]], + "ballgames": null, + "ball": [["G", "Z", "M", "S", "D", "R"]], + "balling": null, + "ballers": null, + "ball's": null, + "balls": null, + "balled": null, + "ballistic": [["S"]], + "ballistics": [["M"]], + "ballistics's": null, + "Ball": [["M"]], + "Ball's": null, + "balloonist": [["S"]], + "balloonists": null, + "balloon": [["R", "D", "M", "Z", "G", "S"]], + "ballooner": null, + "ballooned": null, + "balloon's": null, + "ballooners": null, + "ballooning": null, + "balloons": null, + "balloter": [["M"]], + "balloter's": null, + "ballot": [["M", "R", "D", "G", "S"]], + "ballot's": null, + "balloted": null, + "balloting": null, + "ballots": null, + "ballpark": [["S", "M"]], + "ballparks": null, + "ballpark's": null, + "ballplayer": [["S", "M"]], + "ballplayers": null, + "ballplayer's": null, + "ballpoint": [["S", "M"]], + "ballpoints": null, + "ballpoint's": null, + "ballroom": [["S", "M"]], + "ballrooms": null, + "ballroom's": null, + "ballsy": [["T", "R"]], + "ballsiest": null, + "ballsier": null, + "ballyhoo": [["S", "G", "M", "D"]], + "ballyhoos": null, + "ballyhooing": null, + "ballyhoo's": null, + "ballyhooed": null, + "balminess": [["S", "M"]], + "balminesses": null, + "balminess's": null, + "balm": [["M", "S"]], + "balm's": null, + "balms": null, + "balmy": [["P", "R", "T"]], + "balmier": null, + "balmiest": null, + "baloney": [["S", "M"]], + "baloneys": null, + "baloney's": null, + "balsam": [["G", "M", "D", "S"]], + "balsaming": null, + "balsam's": null, + "balsamed": null, + "balsams": null, + "balsamic": null, + "balsa": [["M", "S"]], + "balsa's": null, + "balsas": null, + "Balthazar": [["M"]], + "Balthazar's": null, + "Baltic": [["M"]], + "Baltic's": null, + "Baltimore": [["M"]], + "Baltimore's": null, + "Baluchistan": [["M"]], + "Baluchistan's": null, + "baluster": [["M", "S"]], + "baluster's": null, + "balusters": null, + "balustrade": [["S", "M"]], + "balustrades": null, + "balustrade's": null, + "Balzac": [["M"]], + "Balzac's": null, + "Ba": [["M"]], + "Ba's": null, + "Bamako": [["M"]], + "Bamako's": null, + "Bamberger": [["M"]], + "Bamberger's": null, + "Bambie": [["M"]], + "Bambie's": null, + "Bambi": [["M"]], + "Bambi's": null, + "bamboo": [["S", "M"]], + "bamboos": null, + "bamboo's": null, + "bamboozle": [["G", "S", "D"]], + "bamboozling": null, + "bamboozles": null, + "bamboozled": null, + "Bamby": [["M"]], + "Bamby's": null, + "Banach": [["M"]], + "Banach's": null, + "banality": [["M", "S"]], + "banality's": null, + "banalities": null, + "banal": [["T", "Y", "R"]], + "banalest": null, + "banally": null, + "banaler": null, + "banana": [["S", "M"]], + "bananas": null, + "banana's": null, + "Bancroft": [["M"]], + "Bancroft's": null, + "bandager": [["M"]], + "bandager's": null, + "bandage": [["R", "S", "D", "M", "G"]], + "bandages": null, + "bandaged": null, + "bandage's": null, + "bandaging": null, + "bandanna": [["S", "M"]], + "bandannas": null, + "bandanna's": null, + "bandbox": [["M", "S"]], + "bandbox's": null, + "bandboxes": null, + "bandeau": [["M"]], + "bandeau's": null, + "bandeaux": null, + "band": [["E", "D", "G", "S"]], + "disband": [["L"]], + "disbanded": null, + "disbanding": null, + "disbands": null, + "banded": null, + "banding": [["M"]], + "bands": null, + "bander": [["M"]], + "bander's": null, + "banding's": null, + "bandit": [["M", "S"]], + "bandit's": null, + "bandits": null, + "banditry": [["M", "S"]], + "banditry's": null, + "banditries": null, + "bandmaster": [["M", "S"]], + "bandmaster's": null, + "bandmasters": null, + "bandoleer": [["S", "M"]], + "bandoleers": null, + "bandoleer's": null, + "bandpass": null, + "band's": null, + "bandsman": [["M"]], + "bandsman's": null, + "bandsmen": null, + "bandstand": [["S", "M"]], + "bandstands": null, + "bandstand's": null, + "bandstop": null, + "Bandung": [["M"]], + "Bandung's": null, + "bandwagon": [["M", "S"]], + "bandwagon's": null, + "bandwagons": null, + "bandwidth": [["M"]], + "bandwidth's": null, + "bandwidths": null, + "bandy": [["T", "G", "R", "S", "D"]], + "bandiest": null, + "bandying": null, + "bandier": null, + "bandies": null, + "bandied": null, + "banefuller": null, + "banefullest": null, + "baneful": [["Y"]], + "banefully": null, + "bane": [["M", "S"]], + "bane's": null, + "banes": null, + "Bangalore": [["M"]], + "Bangalore's": null, + "banger": [["M"]], + "banger's": null, + "bang": [["G", "D", "R", "Z", "M", "S"]], + "banging": null, + "banged": null, + "bangers": null, + "bang's": null, + "bangs": null, + "bangkok": null, + "Bangkok": [["M"]], + "Bangkok's": null, + "Bangladeshi": [["S"]], + "Bangladeshis": null, + "Bangladesh": [["M"]], + "Bangladesh's": null, + "bangle": [["M", "S"]], + "bangle's": null, + "bangles": null, + "Bangor": [["M"]], + "Bangor's": null, + "Bangui": [["M"]], + "Bangui's": null, + "bani": null, + "banisher": [["M"]], + "banisher's": null, + "banishment": [["M", "S"]], + "banishment's": null, + "banishments": null, + "banish": [["R", "S", "D", "G", "L"]], + "banishes": null, + "banished": null, + "banishing": null, + "banister": [["M", "S"]], + "banister's": null, + "banisters": null, + "Banjarmasin": [["M"]], + "Banjarmasin's": null, + "banjoist": [["S", "M"]], + "banjoists": null, + "banjoist's": null, + "banjo": [["M", "S"]], + "banjo's": null, + "banjos": null, + "Banjul": [["M"]], + "Banjul's": null, + "bankbook": [["S", "M"]], + "bankbooks": null, + "bankbook's": null, + "bankcard": [["S"]], + "bankcards": null, + "banker": [["M"]], + "banker's": null, + "bank": [["G", "Z", "J", "D", "R", "M", "B", "S"]], + "banking": [["M"]], + "bankers": null, + "bankings": null, + "banked": null, + "bank's": null, + "bankable": null, + "banks": null, + "banking's": null, + "Bank": [["M", "S"]], + "Bank's": null, + "Banks": null, + "banknote": [["S"]], + "banknotes": null, + "bankroll": [["D", "M", "S", "G"]], + "bankrolled": null, + "bankroll's": null, + "bankrolls": null, + "bankrolling": null, + "bankruptcy": [["M", "S"]], + "bankruptcy's": null, + "bankruptcies": null, + "bankrupt": [["D", "M", "G", "S"]], + "bankrupted": null, + "bankrupt's": null, + "bankrupting": null, + "bankrupts": null, + "Banky": [["M"]], + "Banky's": null, + "Ban": [["M"]], + "Ban's": null, + "banned": [["U"]], + "unbanned": null, + "Banneker": [["M"]], + "Banneker's": null, + "banner": [["S", "D", "M", "G"]], + "banners": null, + "bannered": null, + "banner's": null, + "bannering": null, + "banning": [["U"]], + "unbanning": null, + "Bannister": [["M"]], + "Bannister's": null, + "bannister's": null, + "bannock": [["S", "M"]], + "bannocks": null, + "bannock's": null, + "banns": null, + "banqueter": [["M"]], + "banqueter's": null, + "banquet": [["S", "Z", "G", "J", "M", "R", "D"]], + "banquets": null, + "banqueters": null, + "banqueting": null, + "banquetings": null, + "banquet's": null, + "banqueted": null, + "banquette": [["M", "S"]], + "banquette's": null, + "banquettes": null, + "ban": [["S", "G", "M", "D"]], + "bans": [["U"]], + "baning": null, + "ban's": null, + "baned": null, + "banshee": [["M", "S"]], + "banshee's": null, + "banshees": null, + "unbans": null, + "bantam": [["M", "S"]], + "bantam's": null, + "bantams": null, + "bantamweight": [["M", "S"]], + "bantamweight's": null, + "bantamweights": null, + "banterer": [["M"]], + "banterer's": null, + "bantering": [["Y"]], + "banteringly": null, + "banter": [["R", "D", "S", "G"]], + "bantered": null, + "banters": null, + "Banting": [["M"]], + "Banting's": null, + "Bantu": [["S", "M"]], + "Bantus": null, + "Bantu's": null, + "banyan": [["M", "S"]], + "banyan's": null, + "banyans": null, + "banzai": [["S"]], + "banzais": null, + "baobab": [["S", "M"]], + "baobabs": null, + "baobab's": null, + "Baotou": [["M"]], + "Baotou's": null, + "baptismal": [["Y"]], + "baptismally": null, + "baptism": [["S", "M"]], + "baptisms": null, + "baptism's": null, + "Baptiste": [["M"]], + "Baptiste's": null, + "baptistery": [["M", "S"]], + "baptistery's": null, + "baptisteries": null, + "baptist": [["M", "S"]], + "baptist's": null, + "baptists": null, + "Baptist": [["M", "S"]], + "Baptist's": null, + "Baptists": null, + "baptistry's": null, + "baptized": [["U"]], + "unbaptized": null, + "baptizer": [["M"]], + "baptizer's": null, + "baptize": [["S", "R", "D", "Z", "G"]], + "baptizes": [["U"]], + "baptizers": null, + "baptizing": null, + "unbaptizes": null, + "Barabbas": [["M"]], + "Barabbas's": null, + "Barbabas": [["M"]], + "Barbabas's": null, + "Barbabra": [["M"]], + "Barbabra's": null, + "Barbadian": [["S"]], + "Barbadians": null, + "Barbados": [["M"]], + "Barbados's": null, + "Barbaraanne": [["M"]], + "Barbaraanne's": null, + "Barbara": [["M"]], + "Barbara's": null, + "Barbarella": [["M"]], + "Barbarella's": null, + "barbarianism": [["M", "S"]], + "barbarianism's": null, + "barbarianisms": null, + "barbarian": [["M", "S"]], + "barbarian's": null, + "barbarians": null, + "barbaric": null, + "barbarically": null, + "barbarism": [["M", "S"]], + "barbarism's": null, + "barbarisms": null, + "barbarity": [["S", "M"]], + "barbarities": null, + "barbarity's": null, + "barbarize": [["S", "D", "G"]], + "barbarizes": null, + "barbarized": null, + "barbarizing": null, + "Barbarossa": [["M"]], + "Barbarossa's": null, + "barbarousness": [["M"]], + "barbarousness's": null, + "barbarous": [["P", "Y"]], + "barbarously": null, + "Barbary": [["M"]], + "Barbary's": null, + "barb": [["D", "R", "M", "S", "G", "Z"]], + "barbed": [["P"]], + "barber": [["D", "M", "G"]], + "barb's": null, + "barbs": null, + "barbing": null, + "barbers": null, + "barbecue": [["D", "R", "S", "M", "G"]], + "barbecued": null, + "barbecuer": null, + "barbecues": null, + "barbecue's": null, + "barbecuing": null, + "barbedness": null, + "Barbee": [["M"]], + "Barbee's": null, + "barbell": [["S", "M"]], + "barbells": null, + "barbell's": null, + "barbel": [["M", "S"]], + "barbel's": null, + "barbels": null, + "Barbe": [["M"]], + "Barbe's": null, + "barbeque's": null, + "barbered": [["U"]], + "barber's": null, + "barbering": null, + "unbarbered": null, + "Barber": [["M"]], + "Barber's": null, + "barberry": [["M", "S"]], + "barberry's": null, + "barberries": null, + "barbershop": [["M", "S"]], + "barbershop's": null, + "barbershops": null, + "Barbette": [["M"]], + "Barbette's": null, + "Barbey": [["M"]], + "Barbey's": null, + "Barbie": [["M"]], + "Barbie's": null, + "Barbi": [["M"]], + "Barbi's": null, + "barbital": [["M"]], + "barbital's": null, + "barbiturate": [["M", "S"]], + "barbiturate's": null, + "barbiturates": null, + "Barbour": [["M"]], + "Barbour's": null, + "Barbra": [["M"]], + "Barbra's": null, + "Barb": [["R", "M"]], + "Barb's": null, + "Barbuda": [["M"]], + "Barbuda's": null, + "barbwire": [["S", "M"]], + "barbwires": null, + "barbwire's": null, + "Barby": [["M"]], + "Barby's": null, + "barcarole": [["S", "M"]], + "barcaroles": null, + "barcarole's": null, + "Barcelona": [["M"]], + "Barcelona's": null, + "Barclay": [["M"]], + "Barclay's": null, + "Bardeen": [["M"]], + "Bardeen's": null, + "Barde": [["M"]], + "Barde's": null, + "bardic": null, + "Bard": [["M"]], + "Bard's": null, + "bard": [["M", "D", "S", "G"]], + "bard's": null, + "barded": null, + "bards": null, + "barding": null, + "bareback": [["D"]], + "barebacked": null, + "barefacedness": [["M"]], + "barefacedness's": null, + "barefaced": [["Y", "P"]], + "barefacedly": null, + "barefoot": [["D"]], + "barefooted": null, + "barehanded": null, + "bareheaded": null, + "barelegged": null, + "bareness": [["M", "S"]], + "bareness's": null, + "barenesses": null, + "Barents": [["M"]], + "Barents's": null, + "bare": [["Y", "S", "P"]], + "barely": null, + "bares": null, + "barfly": [["S", "M"]], + "barflies": null, + "barfly's": null, + "barf": [["Y", "D", "S", "G"]], + "barfed": null, + "barfs": null, + "barfing": null, + "bargainer": [["M"]], + "bargainer's": null, + "bargain": [["Z", "G", "S", "D", "R", "M"]], + "bargainers": null, + "bargaining": null, + "bargains": null, + "bargained": null, + "bargain's": null, + "barge": [["D", "S", "G", "M"]], + "barged": null, + "barges": null, + "barging": null, + "barge's": null, + "bargeman": [["M"]], + "bargeman's": null, + "bargemen": null, + "bargepole": [["M"]], + "bargepole's": null, + "barhopped": null, + "barhopping": null, + "barhop": [["S"]], + "barhops": null, + "Bari": [["M"]], + "Bari's": null, + "baritone": [["M", "S"]], + "baritone's": null, + "baritones": null, + "barium": [["M", "S"]], + "barium's": null, + "bariums": null, + "barked": [["C"]], + "debarked": null, + "barkeeper": [["M"]], + "barkeeper's": null, + "barkeep": [["S", "R", "Z"]], + "barkeeps": null, + "barkeepers": null, + "barker": [["M"]], + "barker's": null, + "Barker": [["M"]], + "Barker's": null, + "bark": [["G", "Z", "D", "R", "M", "S"]], + "barking": null, + "barkers": null, + "bark's": null, + "barks": [["C"]], + "Barkley": [["M"]], + "Barkley's": null, + "debarks": null, + "barleycorn": [["M", "S"]], + "barleycorn's": null, + "barleycorns": null, + "barley": [["M", "S"]], + "barley's": null, + "barleys": null, + "Barlow": [["M"]], + "Barlow's": null, + "barmaid": [["S", "M"]], + "barmaids": null, + "barmaid's": null, + "barman": [["M"]], + "barman's": null, + "barmen": null, + "Bar": [["M", "H"]], + "Bar's": null, + "Barth": [["M"]], + "Barnabas": null, + "Barnabe": [["M"]], + "Barnabe's": null, + "Barnaby": [["M"]], + "Barnaby's": null, + "barnacle": [["M", "D", "S"]], + "barnacle's": null, + "barnacled": null, + "barnacles": null, + "Barnard": [["M"]], + "Barnard's": null, + "Barnaul": [["M"]], + "Barnaul's": null, + "Barnebas": [["M"]], + "Barnebas's": null, + "Barnes": null, + "Barnett": [["M"]], + "Barnett's": null, + "Barney": [["M"]], + "Barney's": null, + "barnful": null, + "barn": [["G", "D", "S", "M"]], + "barning": null, + "barned": null, + "barns": null, + "barn's": null, + "Barnhard": [["M"]], + "Barnhard's": null, + "Barnie": [["M"]], + "Barnie's": null, + "Barn": [["M"]], + "Barn's": null, + "barnsful": null, + "barnstorm": [["D", "R", "G", "Z", "S"]], + "barnstormed": null, + "barnstormer": [["M"]], + "barnstorming": null, + "barnstormers": null, + "barnstorms": null, + "barnstormer's": null, + "Barnum": [["M"]], + "Barnum's": null, + "barnyard": [["M", "S"]], + "barnyard's": null, + "barnyards": null, + "Barny": [["M"]], + "Barny's": null, + "Baroda": [["M"]], + "Baroda's": null, + "barometer": [["M", "S"]], + "barometer's": null, + "barometers": null, + "barometric": null, + "barometrically": null, + "baronage": [["M", "S"]], + "baronage's": null, + "baronages": null, + "baroness": [["M", "S"]], + "baroness's": null, + "baronesses": null, + "baronetcy": [["S", "M"]], + "baronetcies": null, + "baronetcy's": null, + "baronet": [["M", "S"]], + "baronet's": null, + "baronets": null, + "baronial": null, + "Baron": [["M"]], + "Baron's": null, + "baron": [["S", "M"]], + "barons": null, + "baron's": null, + "barony": [["S", "M"]], + "baronies": null, + "barony's": null, + "baroque": [["S", "P", "M", "Y"]], + "baroques": null, + "baroqueness": null, + "baroque's": null, + "baroquely": null, + "barque's": null, + "Barquisimeto": [["M"]], + "Barquisimeto's": null, + "barracker": [["M"]], + "barracker's": null, + "barrack": [["S", "D", "R", "G"]], + "barracks": null, + "barracked": null, + "barracking": null, + "barracuda": [["M", "S"]], + "barracuda's": null, + "barracudas": null, + "barrage": [["M", "G", "S", "D"]], + "barrage's": null, + "barraging": null, + "barrages": null, + "barraged": null, + "Barranquilla": [["M"]], + "Barranquilla's": null, + "barred": [["E", "C", "U"]], + "disbarred": null, + "debarred": null, + "unbarred": null, + "barre": [["G", "M", "D", "S", "J"]], + "barring": [["R"]], + "barre's": null, + "barres": null, + "barrings": null, + "barrel": [["S", "G", "M", "D"]], + "barrels": null, + "barreling": null, + "barrel's": null, + "barreled": null, + "barrenness": [["S", "M"]], + "barrennesses": null, + "barrenness's": null, + "barren": [["S", "P", "R", "T"]], + "barrens": null, + "barrener": null, + "barrenest": null, + "Barrera": [["M"]], + "Barrera's": null, + "Barret": [["M"]], + "Barret's": null, + "barrette": [["S", "M"]], + "barrettes": null, + "barrette's": null, + "Barrett": [["M"]], + "Barrett's": null, + "barricade": [["S", "D", "M", "G"]], + "barricades": null, + "barricaded": null, + "barricade's": null, + "barricading": null, + "Barrie": [["M"]], + "Barrie's": null, + "barrier": [["M", "S"]], + "barrier's": null, + "barriers": null, + "barringer": null, + "barrio": [["S", "M"]], + "barrios": null, + "barrio's": null, + "Barri": [["S", "M"]], + "Barris": null, + "Barri's": null, + "barrister": [["M", "S"]], + "barrister's": null, + "barristers": null, + "Barr": [["M"]], + "Barr's": null, + "Barron": [["M"]], + "Barron's": null, + "barroom": [["S", "M"]], + "barrooms": null, + "barroom's": null, + "barrow": [["M", "S"]], + "barrow's": null, + "barrows": null, + "Barry": [["M"]], + "Barry's": null, + "Barrymore": [["M", "S"]], + "Barrymore's": null, + "Barrymores": null, + "bars": [["E", "C", "U"]], + "disbars": null, + "debars": null, + "unbars": null, + "barstool": [["S", "M"]], + "barstools": null, + "barstool's": null, + "Barstow": [["M"]], + "Barstow's": null, + "Bartel": [["M"]], + "Bartel's": null, + "bartender": [["M"]], + "bartender's": null, + "bartend": [["Z", "R"]], + "bartenders": null, + "barterer": [["M"]], + "barterer's": null, + "barter": [["S", "R", "D", "Z", "G"]], + "barters": null, + "bartered": null, + "barterers": null, + "bartering": null, + "bar": [["T", "G", "M", "D", "R", "S"]], + "barest": null, + "baring": null, + "bar's": null, + "bared": null, + "barer": null, + "Barthel": [["M"]], + "Barthel's": null, + "Barth's": null, + "Bartholdi": [["M"]], + "Bartholdi's": null, + "Bartholemy": [["M"]], + "Bartholemy's": null, + "Bartholomeo": [["M"]], + "Bartholomeo's": null, + "Bartholomeus": [["M"]], + "Bartholomeus's": null, + "Bartholomew": [["M"]], + "Bartholomew's": null, + "Bartie": [["M"]], + "Bartie's": null, + "Bartlet": [["M"]], + "Bartlet's": null, + "Bartlett": [["M"]], + "Bartlett's": null, + "Bart": [["M"]], + "Bart's": null, + "Bart�k": [["M"]], + "Bart�k's": null, + "Bartolemo": [["M"]], + "Bartolemo's": null, + "Bartolomeo": [["M"]], + "Bartolomeo's": null, + "Barton": [["M"]], + "Barton's": null, + "Bartram": [["M"]], + "Bartram's": null, + "Barty": [["M"]], + "Barty's": null, + "barycenter": null, + "barycentre's": null, + "barycentric": null, + "Bary": [["M"]], + "Bary's": null, + "baryon": [["S", "M"]], + "baryons": null, + "baryon's": null, + "Baryram": [["M"]], + "Baryram's": null, + "Baryshnikov": [["M"]], + "Baryshnikov's": null, + "basaltic": null, + "basalt": [["S", "M"]], + "basalts": null, + "basalt's": null, + "basal": [["Y"]], + "basally": null, + "Bascom": [["M"]], + "Bascom's": null, + "bas": [["D", "R", "S", "T", "G"]], + "based": null, + "baser": null, + "bases": null, + "basest": null, + "basing": null, + "baseball": [["M", "S"]], + "baseball's": null, + "baseballs": null, + "baseband": null, + "baseboard": [["M", "S"]], + "baseboard's": null, + "baseboards": null, + "base": [["C", "G", "R", "S", "D", "L"]], + "debase": null, + "debasing": null, + "debaser": [["M"]], + "debases": null, + "debased": null, + "debasement": null, + "basement": [["C", "S", "M"]], + "baseless": null, + "baseline": [["S", "M"]], + "baselines": null, + "baseline's": null, + "Basel": [["M"]], + "Basel's": null, + "basely": null, + "Base": [["M"]], + "Base's": null, + "baseman": [["M"]], + "baseman's": null, + "basemen": null, + "debasements": null, + "debasement's": null, + "basements": null, + "basement's": null, + "baseness": [["M", "S"]], + "baseness's": null, + "basenesses": null, + "baseplate": [["M"]], + "baseplate's": null, + "base's": null, + "basetting": null, + "bashfulness": [["M", "S"]], + "bashfulness's": null, + "bashfulnesses": null, + "bashful": [["P", "Y"]], + "bashfully": null, + "bash": [["J", "G", "D", "S", "R"]], + "bashings": null, + "bashing": null, + "bashed": null, + "bashes": null, + "basher": null, + "Basho": [["M"]], + "Basho's": null, + "Basia": [["M"]], + "Basia's": null, + "BASIC": null, + "basically": null, + "basic": [["S"]], + "basics": null, + "Basie": [["M"]], + "Basie's": null, + "basilar": null, + "Basile": [["M"]], + "Basile's": null, + "basilica": [["S", "M"]], + "basilicas": null, + "basilica's": null, + "Basilio": [["M"]], + "Basilio's": null, + "basilisk": [["S", "M"]], + "basilisks": null, + "basilisk's": null, + "Basilius": [["M"]], + "Basilius's": null, + "Basil": [["M"]], + "Basil's": null, + "basil": [["M", "S"]], + "basil's": null, + "basils": null, + "basin": [["D", "M", "S"]], + "basined": null, + "basin's": null, + "basins": null, + "basinful": [["S"]], + "basinfuls": null, + "basis": [["M"]], + "basis's": null, + "basketball": [["M", "S"]], + "basketball's": null, + "basketballs": null, + "basketry": [["M", "S"]], + "basketry's": null, + "basketries": null, + "basket": [["S", "M"]], + "baskets": null, + "basket's": null, + "basketwork": [["S", "M"]], + "basketworks": null, + "basketwork's": null, + "bask": [["G", "S", "D"]], + "basking": null, + "basks": null, + "basked": null, + "basophilic": null, + "Basque": [["S", "M"]], + "Basques": null, + "Basque's": null, + "Basra": [["M"]], + "Basra's": null, + "Basseterre": [["M"]], + "Basseterre's": null, + "basset": [["G", "M", "D", "S"]], + "basseting": null, + "basset's": null, + "basseted": null, + "bassets": null, + "Bassett": [["M"]], + "Bassett's": null, + "bassinet": [["S", "M"]], + "bassinets": null, + "bassinet's": null, + "bassist": [["M", "S"]], + "bassist's": null, + "bassists": null, + "Bass": [["M"]], + "Bass's": null, + "basso": [["M", "S"]], + "basso's": null, + "bassos": null, + "bassoonist": [["M", "S"]], + "bassoonist's": null, + "bassoonists": null, + "bassoon": [["M", "S"]], + "bassoon's": null, + "bassoons": null, + "bass": [["S", "M"]], + "basses": null, + "bass's": null, + "basswood": [["S", "M"]], + "basswoods": null, + "basswood's": null, + "bastardization": [["M", "S"]], + "bastardization's": null, + "bastardizations": null, + "bastardized": [["U"]], + "unbastardized": null, + "bastardize": [["S", "D", "G"]], + "bastardizes": null, + "bastardizing": null, + "bastard": [["M", "Y", "S"]], + "bastard's": null, + "bastardly": null, + "bastards": null, + "bastardy": [["M", "S"]], + "bastardy's": null, + "bastardies": null, + "baste": [["N", "X", "S"]], + "bastion": [["D", "M"]], + "bastions": null, + "bastes": null, + "baster": [["M"]], + "baster's": null, + "Bastian": [["M"]], + "Bastian's": null, + "Bastien": [["M"]], + "Bastien's": null, + "Bastille": [["M"]], + "Bastille's": null, + "basting": [["M"]], + "basting's": null, + "bastioned": null, + "bastion's": null, + "bast": [["S", "G", "Z", "M", "D", "R"]], + "basts": null, + "basters": null, + "bast's": null, + "basted": null, + "Basutoland": [["M"]], + "Basutoland's": null, + "Bataan": [["M"]], + "Bataan's": null, + "Batavia": [["M"]], + "Batavia's": null, + "batch": [["M", "R", "S", "D", "G"]], + "batch's": null, + "batcher": null, + "batches": null, + "batched": null, + "batching": null, + "bated": [["U"]], + "unbated": null, + "bate": [["K", "G", "S", "A", "D", "C"]], + "probate": [["N", "V", "M", "X"]], + "probating": [["A"]], + "probates": [["A"]], + "probated": [["A"]], + "bating": null, + "rebating": null, + "debating": null, + "bates": null, + "rebates": null, + "debates": null, + "rebate": [["M"]], + "rebated": null, + "debated": null, + "debate": [["B", "M", "Z"]], + "bater": [["A", "C"]], + "rebater": null, + "debater": [["M"]], + "Bates": null, + "bathe": null, + "bather": [["M"]], + "bather's": null, + "bathetic": null, + "bathhouse": [["S", "M"]], + "bathhouses": null, + "bathhouse's": null, + "bath": [["J", "M", "D", "S", "R", "G", "Z"]], + "bathings": null, + "bath's": null, + "bathed": null, + "bathes": null, + "bathing": null, + "bathers": null, + "bathmat": [["S"]], + "bathmats": null, + "Batholomew": [["M"]], + "Batholomew's": null, + "bathos": [["S", "M"]], + "bathoses": null, + "bathos's": null, + "bathrobe": [["M", "S"]], + "bathrobe's": null, + "bathrobes": null, + "bathroom": [["S", "D", "M"]], + "bathrooms": null, + "bathroomed": null, + "bathroom's": null, + "baths": null, + "Bathsheba": [["M"]], + "Bathsheba's": null, + "bathtub": [["M", "S"]], + "bathtub's": null, + "bathtubs": null, + "bathwater": null, + "bathyscaphe's": null, + "bathysphere": [["M", "S"]], + "bathysphere's": null, + "bathyspheres": null, + "batik": [["D", "M", "S", "G"]], + "batiked": null, + "batik's": null, + "batiks": null, + "batiking": null, + "Batista": [["M"]], + "Batista's": null, + "batiste": [["S", "M"]], + "batistes": null, + "batiste's": null, + "Bat": [["M"]], + "Bat's": null, + "batman": [["M"]], + "batman's": null, + "Batman": [["M"]], + "Batman's": null, + "batmen": null, + "baton": [["S", "M"]], + "batons": null, + "baton's": null, + "Batsheva": [["M"]], + "Batsheva's": null, + "batsman": [["M"]], + "batsman's": null, + "bat": [["S", "M", "D", "R", "G"]], + "bats": null, + "bat's": null, + "batsmen": null, + "battalion": [["M", "S"]], + "battalion's": null, + "battalions": null, + "batted": null, + "batten": [["S", "D", "M", "G"]], + "battens": null, + "battened": null, + "batten's": null, + "battening": null, + "batter": [["S", "R", "D", "Z", "G"]], + "batters": null, + "batterer": null, + "battered": null, + "batterers": null, + "battering": null, + "battery": [["M", "S"]], + "battery's": null, + "batteries": null, + "batting": [["M", "S"]], + "batting's": null, + "battings": null, + "battledore": [["M", "S"]], + "battledore's": null, + "battledores": null, + "battledress": null, + "battlefield": [["S", "M"]], + "battlefields": null, + "battlefield's": null, + "battlefront": [["S", "M"]], + "battlefronts": null, + "battlefront's": null, + "battle": [["G", "M", "Z", "R", "S", "D", "L"]], + "battling": null, + "battle's": null, + "battlers": null, + "battler": [["M"]], + "battles": null, + "battled": null, + "battlement": [["S", "M", "D"]], + "battleground": [["S", "M"]], + "battlegrounds": null, + "battleground's": null, + "Battle": [["M"]], + "Battle's": null, + "battlements": null, + "battlement's": null, + "battlemented": null, + "battler's": null, + "battleship": [["M", "S"]], + "battleship's": null, + "battleships": null, + "batty": [["R", "T"]], + "battier": null, + "battiest": null, + "Batu": [["M"]], + "Batu's": null, + "batwings": null, + "bauble": [["S", "M"]], + "baubles": null, + "bauble's": null, + "Baudelaire": [["M"]], + "Baudelaire's": null, + "baud": [["M"]], + "baud's": null, + "Baudoin": [["M"]], + "Baudoin's": null, + "Baudouin": [["M"]], + "Baudouin's": null, + "Bauer": [["M"]], + "Bauer's": null, + "Bauhaus": [["M"]], + "Bauhaus's": null, + "baulk": [["G", "S", "D", "M"]], + "baulking": null, + "baulks": null, + "baulked": null, + "baulk's": null, + "Bausch": [["M"]], + "Bausch's": null, + "bauxite": [["S", "M"]], + "bauxites": null, + "bauxite's": null, + "Bavaria": [["M"]], + "Bavaria's": null, + "Bavarian": [["S"]], + "Bavarians": null, + "bawdily": null, + "bawdiness": [["M", "S"]], + "bawdiness's": null, + "bawdinesses": null, + "bawd": [["S", "M"]], + "bawds": null, + "bawd's": null, + "bawdy": [["P", "R", "S", "T"]], + "bawdier": null, + "bawdies": null, + "bawdiest": null, + "bawler": [["M"]], + "bawler's": null, + "bawl": [["S", "G", "D", "R"]], + "bawls": null, + "bawling": null, + "bawled": null, + "Baxie": [["M"]], + "Baxie's": null, + "Bax": [["M"]], + "Bax's": null, + "Baxter": [["M"]], + "Baxter's": null, + "Baxy": [["M"]], + "Baxy's": null, + "Bayamon": null, + "Bayard": [["M"]], + "Bayard's": null, + "bayberry": [["M", "S"]], + "bayberry's": null, + "bayberries": null, + "Bayda": [["M"]], + "Bayda's": null, + "Bayer": [["M"]], + "Bayer's": null, + "Bayes": null, + "Bayesian": null, + "bay": [["G", "S", "M", "D", "Y"]], + "baying": null, + "bays": null, + "bay's": null, + "bayed": null, + "bayly": null, + "Baylor": [["M"]], + "Baylor's": null, + "Bay": [["M", "R"]], + "Bay's": null, + "bayonet": [["S", "G", "M", "D"]], + "bayonets": null, + "bayoneting": null, + "bayonet's": null, + "bayoneted": null, + "Bayonne": [["M"]], + "Bayonne's": null, + "bayou": [["M", "S"]], + "bayou's": null, + "bayous": null, + "Bayreuth": [["M"]], + "Bayreuth's": null, + "bazaar": [["M", "S"]], + "bazaar's": null, + "bazaars": null, + "bazillion": [["S"]], + "bazillions": null, + "bazooka": [["M", "S"]], + "bazooka's": null, + "bazookas": null, + "BB": null, + "BBB": null, + "BBC": null, + "bbl": null, + "BBQ": null, + "BBS": null, + "BC": null, + "BCD": null, + "bdrm": null, + "beachcomber": [["S", "M"]], + "beachcombers": null, + "beachcomber's": null, + "beachhead": [["S", "M"]], + "beachheads": null, + "beachhead's": null, + "Beach": [["M"]], + "Beach's": null, + "beach": [["M", "S", "D", "G"]], + "beach's": null, + "beaches": null, + "beached": null, + "beaching": null, + "beachwear": [["M"]], + "beachwear's": null, + "beacon": [["D", "M", "S", "G"]], + "beaconed": null, + "beacon's": null, + "beacons": null, + "beaconing": null, + "beading": [["M"]], + "beading's": null, + "Beadle": [["M"]], + "Beadle's": null, + "beadle": [["S", "M"]], + "beadles": null, + "beadle's": null, + "bead": [["S", "J", "G", "M", "D"]], + "beads": null, + "beadings": null, + "bead's": null, + "beaded": null, + "beadsman": [["M"]], + "beadsman's": null, + "beadworker": null, + "beady": [["T", "R"]], + "beadiest": null, + "beadier": null, + "beagle": [["S", "D", "G", "M"]], + "beagles": null, + "beagled": null, + "beagling": null, + "beagle's": null, + "beaker": [["M"]], + "beaker's": null, + "beak": [["Z", "S", "D", "R", "M"]], + "beakers": null, + "beaks": null, + "beaked": null, + "beak's": null, + "Beale": [["M"]], + "Beale's": null, + "Bealle": [["M"]], + "Bealle's": null, + "Bea": [["M"]], + "Bea's": null, + "beam": [["M", "D", "R", "S", "G", "Z"]], + "beam's": null, + "beamed": null, + "beamer": null, + "beams": null, + "beaming": null, + "beamers": null, + "beanbag": [["S", "M"]], + "beanbags": null, + "beanbag's": null, + "bean": [["D", "R", "M", "G", "Z", "S"]], + "beaned": null, + "beaner": null, + "bean's": null, + "beaning": null, + "beaners": null, + "beans": null, + "beanie": [["S", "M"]], + "beanies": null, + "beanie's": null, + "Bean": [["M"]], + "Bean's": null, + "beanpole": [["M", "S"]], + "beanpole's": null, + "beanpoles": null, + "beanstalk": [["S", "M"]], + "beanstalks": null, + "beanstalk's": null, + "bearable": [["U"]], + "unbearable": null, + "bearably": [["U"]], + "unbearably": null, + "beard": [["D", "S", "G", "M"]], + "bearded": [["P"]], + "beards": null, + "bearding": null, + "beard's": null, + "beardedness": null, + "beardless": null, + "Beard": [["M"]], + "Beard's": null, + "Beardmore": [["M"]], + "Beardmore's": null, + "Beardsley": [["M"]], + "Beardsley's": null, + "bearer": [["M"]], + "bearer's": null, + "bearing": [["M"]], + "bearing's": null, + "bearishness": [["S", "M"]], + "bearishnesses": null, + "bearishness's": null, + "bearish": [["P", "Y"]], + "bearishly": null, + "bearlike": null, + "Bear": [["M"]], + "Bear's": null, + "Bearnaise": [["M"]], + "Bearnaise's": null, + "Bearnard": [["M"]], + "Bearnard's": null, + "bearskin": [["M", "S"]], + "bearskin's": null, + "bearskins": null, + "bear": [["Z", "B", "R", "S", "J", "G"]], + "bearers": null, + "bears": null, + "bearings": null, + "Beasley": [["M"]], + "Beasley's": null, + "beasties": null, + "beastings": [["M"]], + "beastings's": null, + "beastliness": [["M", "S"]], + "beastliness's": null, + "beastlinesses": null, + "beastly": [["P", "T", "R"]], + "beastliest": null, + "beastlier": null, + "beast": [["S", "J", "M", "Y"]], + "beasts": null, + "beast's": null, + "beatable": [["U"]], + "unbeatable": null, + "beatably": [["U"]], + "unbeatably": null, + "beaten": [["U"]], + "unbeaten": null, + "beater": [["M"]], + "beater's": null, + "beatific": null, + "beatifically": null, + "beatification": [["M"]], + "beatification's": null, + "beatify": [["G", "N", "X", "D", "S"]], + "beatifying": null, + "beatifications": null, + "beatified": null, + "beatifies": null, + "beating": [["M"]], + "beating's": null, + "beatitude": [["M", "S"]], + "beatitude's": null, + "beatitudes": null, + "Beatlemania": [["M"]], + "Beatlemania's": null, + "Beatles": [["M"]], + "Beatles's": null, + "beatnik": [["S", "M"]], + "beatniks": null, + "beatnik's": null, + "beat": [["N", "R", "G", "S", "B", "Z", "J"]], + "beats": null, + "beaters": null, + "beatings": null, + "Beatrice": [["M"]], + "Beatrice's": null, + "Beatrisa": [["M"]], + "Beatrisa's": null, + "Beatrix": [["M"]], + "Beatrix's": null, + "Beatriz": [["M"]], + "Beatriz's": null, + "Beauchamps": null, + "Beaufort": [["M"]], + "Beaufort's": null, + "Beaujolais": [["M"]], + "Beaujolais's": null, + "Beau": [["M"]], + "Beau's": null, + "Beaumarchais": [["M"]], + "Beaumarchais's": null, + "Beaumont": [["M"]], + "Beaumont's": null, + "beau": [["M", "S"]], + "beau's": null, + "beaus": null, + "Beauregard": [["M"]], + "Beauregard's": null, + "beauteousness": [["M"]], + "beauteousness's": null, + "beauteous": [["Y", "P"]], + "beauteously": null, + "beautician": [["M", "S"]], + "beautician's": null, + "beauticians": null, + "beautification": [["M"]], + "beautification's": null, + "beautifier": [["M"]], + "beautifier's": null, + "beautifully": [["U"]], + "unbeautifully": null, + "beautifulness": [["M"]], + "beautifulness's": null, + "beautiful": [["P", "T", "Y", "R"]], + "beautifulest": null, + "beautifuler": null, + "beautify": [["S", "R", "D", "N", "G", "X", "Z"]], + "beautifies": null, + "beautified": null, + "beautifying": null, + "beautifications": null, + "beautifiers": null, + "beaut": [["S", "M"]], + "beauts": null, + "beaut's": null, + "beauty": [["S", "M"]], + "beauties": null, + "beauty's": null, + "Beauvoir": [["M"]], + "Beauvoir's": null, + "beaux's": null, + "beaver": [["D", "M", "S", "G"]], + "beavered": null, + "beaver's": null, + "beavers": null, + "beavering": null, + "Beaverton": [["M"]], + "Beaverton's": null, + "Bebe": [["M"]], + "Bebe's": null, + "bebop": [["M", "S"]], + "bebop's": null, + "bebops": null, + "becalm": [["G", "D", "S"]], + "becalming": null, + "becalmed": null, + "becalms": null, + "became": null, + "because": null, + "Becca": [["M"]], + "Becca's": null, + "Bechtel": [["M"]], + "Bechtel's": null, + "Becka": [["M"]], + "Becka's": null, + "Becker": [["M"]], + "Becker's": null, + "Becket": [["M"]], + "Becket's": null, + "Beckett": [["M"]], + "Beckett's": null, + "beck": [["G", "S", "D", "M"]], + "becking": null, + "becks": null, + "becked": null, + "beck's": null, + "Beckie": [["M"]], + "Beckie's": null, + "Becki": [["M"]], + "Becki's": null, + "beckon": [["S", "D", "G"]], + "beckons": null, + "beckoned": null, + "beckoning": null, + "Beck": [["R", "M"]], + "Beck's": null, + "Becky": [["M"]], + "Becky's": null, + "becloud": [["S", "G", "D"]], + "beclouds": null, + "beclouding": null, + "beclouded": null, + "become": [["G", "J", "S"]], + "becoming": [["U", "Y"]], + "becomings": null, + "becomes": null, + "unbecoming": [["P"]], + "unbecomingly": null, + "becomingly": null, + "Becquerel": [["M"]], + "Becquerel's": null, + "bedaub": [["G", "D", "S"]], + "bedaubing": null, + "bedaubed": null, + "bedaubs": null, + "bedazzle": [["G", "L", "D", "S"]], + "bedazzling": null, + "bedazzlement": [["S", "M"]], + "bedazzled": null, + "bedazzles": null, + "bedazzlements": null, + "bedazzlement's": null, + "bedbug": [["S", "M"]], + "bedbugs": null, + "bedbug's": null, + "bedchamber": [["M"]], + "bedchamber's": null, + "bedclothes": null, + "bedded": null, + "bedder": [["M", "S"]], + "bedder's": null, + "bedders": null, + "bedding": [["M", "S"]], + "bedding's": null, + "beddings": null, + "bedeck": [["D", "G", "S"]], + "bedecked": null, + "bedecking": null, + "bedecks": null, + "Bede": [["M"]], + "Bede's": null, + "bedevil": [["D", "G", "L", "S"]], + "bedeviled": null, + "bedeviling": null, + "bedevilment": [["S", "M"]], + "bedevils": null, + "bedevilments": null, + "bedevilment's": null, + "bedfast": null, + "bedfellow": [["M", "S"]], + "bedfellow's": null, + "bedfellows": null, + "Bedford": [["M"]], + "Bedford's": null, + "bedimmed": null, + "bedimming": null, + "bedim": [["S"]], + "bedims": null, + "bedizen": [["D", "G", "S"]], + "bedizened": null, + "bedizening": null, + "bedizens": null, + "bedlam": [["M", "S"]], + "bedlam's": null, + "bedlams": null, + "bedlinen": null, + "bedmaker": [["S", "M"]], + "bedmakers": null, + "bedmaker's": null, + "bedmate": [["M", "S"]], + "bedmate's": null, + "bedmates": null, + "bed": [["M", "S"]], + "bed's": null, + "beds": null, + "Bedouin": [["S", "M"]], + "Bedouins": null, + "Bedouin's": null, + "bedpan": [["S", "M"]], + "bedpans": null, + "bedpan's": null, + "bedpost": [["S", "M"]], + "bedposts": null, + "bedpost's": null, + "bedraggle": [["G", "S", "D"]], + "bedraggling": null, + "bedraggles": null, + "bedraggled": null, + "bedridden": null, + "bedrock": [["S", "M"]], + "bedrocks": null, + "bedrock's": null, + "bedroll": [["S", "M"]], + "bedrolls": null, + "bedroll's": null, + "bedroom": [["D", "M", "S"]], + "bedroomed": null, + "bedroom's": null, + "bedrooms": null, + "bedsheets": null, + "bedside": [["M", "S"]], + "bedside's": null, + "bedsides": null, + "bedsit": null, + "bedsitter": [["M"]], + "bedsitter's": null, + "bedsore": [["M", "S"]], + "bedsore's": null, + "bedsores": null, + "bedspread": [["S", "M"]], + "bedspreads": null, + "bedspread's": null, + "bedspring": [["S", "M"]], + "bedsprings": null, + "bedspring's": null, + "bedstead": [["S", "M"]], + "bedsteads": null, + "bedstead's": null, + "bedstraw": [["M"]], + "bedstraw's": null, + "bedtime": [["S", "M"]], + "bedtimes": null, + "bedtime's": null, + "Beebe": [["M"]], + "Beebe's": null, + "beebread": [["M", "S"]], + "beebread's": null, + "beebreads": null, + "Beecher": [["M"]], + "Beecher's": null, + "beech": [["M", "R", "S", "N"]], + "beech's": null, + "beecher": null, + "beeches": null, + "beechen": null, + "beechnut": [["M", "S"]], + "beechnut's": null, + "beechnuts": null, + "beechwood": null, + "beefburger": [["S", "M"]], + "beefburgers": null, + "beefburger's": null, + "beefcake": [["M", "S"]], + "beefcake's": null, + "beefcakes": null, + "beef": [["G", "Z", "S", "D", "R", "M"]], + "beefing": null, + "beefers": null, + "beefs": null, + "beefed": null, + "beefer": null, + "beef's": null, + "beefiness": [["M", "S"]], + "beefiness's": null, + "beefinesses": null, + "beefsteak": [["M", "S"]], + "beefsteak's": null, + "beefsteaks": null, + "beefy": [["T", "R", "P"]], + "beefiest": null, + "beefier": null, + "beehive": [["M", "S"]], + "beehive's": null, + "beehives": null, + "beekeeper": [["M", "S"]], + "beekeeper's": null, + "beekeepers": null, + "beekeeping": [["S", "M"]], + "beekeepings": null, + "beekeeping's": null, + "beeline": [["M", "G", "S", "D"]], + "beeline's": null, + "beelining": null, + "beelines": null, + "beelined": null, + "Beelzebub": [["M"]], + "Beelzebub's": null, + "Bee": [["M"]], + "Bee's": null, + "bee": [["M", "Z", "G", "J", "R", "S"]], + "bee's": null, + "beers": null, + "being": [["M"]], + "beings": null, + "beer": [["M"]], + "bees": null, + "been": [["S"]], + "beens": null, + "beeper": [["M"]], + "beeper's": null, + "beep": [["G", "Z", "S", "M", "D", "R"]], + "beeping": null, + "beepers": null, + "beeps": null, + "beep's": null, + "beeped": null, + "Beerbohm": [["M"]], + "Beerbohm's": null, + "beer's": null, + "beermat": [["S"]], + "beermats": null, + "beery": [["T", "R"]], + "beeriest": null, + "beerier": null, + "beeswax": [["D", "S", "M", "G"]], + "beeswaxed": null, + "beeswaxes": null, + "beeswax's": null, + "beeswaxing": null, + "Beethoven": [["M"]], + "Beethoven's": null, + "beetle": [["G", "M", "R", "S", "D"]], + "beetling": null, + "beetle's": null, + "beetler": null, + "beetles": null, + "beetled": null, + "Beeton": [["M"]], + "Beeton's": null, + "beetroot": [["M"]], + "beetroot's": null, + "beet": [["S", "M"]], + "beets": null, + "beet's": null, + "beeves": [["M"]], + "beeves's": null, + "befall": [["S", "G", "N"]], + "befalls": null, + "befalling": null, + "befallen": null, + "befell": null, + "befit": [["S", "M"]], + "befits": null, + "befit's": null, + "befitted": null, + "befitting": [["Y"]], + "befittingly": null, + "befogged": null, + "befogging": null, + "befog": [["S"]], + "befogs": null, + "before": null, + "beforehand": null, + "befoul": [["G", "S", "D"]], + "befouling": null, + "befouls": null, + "befouled": null, + "befriend": [["D", "G", "S"]], + "befriended": null, + "befriending": null, + "befriends": null, + "befuddle": [["G", "L", "D", "S"]], + "befuddling": null, + "befuddlement": [["S", "M"]], + "befuddled": null, + "befuddles": null, + "befuddlements": null, + "befuddlement's": null, + "began": null, + "beget": [["S"]], + "begets": null, + "begetting": null, + "beggar": [["D", "Y", "M", "S", "G"]], + "beggared": null, + "beggarly": [["P"]], + "beggar's": null, + "beggars": null, + "beggaring": null, + "beggarliness": [["M"]], + "beggarliness's": null, + "beggary": [["M", "S"]], + "beggary's": null, + "beggaries": null, + "begged": null, + "begging": null, + "Begin": [["M"]], + "Begin's": null, + "beginner": [["M", "S"]], + "beginner's": null, + "beginners": null, + "beginning": [["M", "S"]], + "beginning's": null, + "beginnings": null, + "begin": [["S"]], + "begins": null, + "begone": [["S"]], + "begones": null, + "begonia": [["S", "M"]], + "begonias": null, + "begonia's": null, + "begot": null, + "begotten": null, + "begrime": [["S", "D", "G"]], + "begrimes": null, + "begrimed": null, + "begriming": null, + "begrudge": [["G", "D", "R", "S"]], + "begrudging": [["Y"]], + "begrudged": null, + "begrudger": null, + "begrudges": null, + "begrudgingly": null, + "beg": [["S"]], + "begs": null, + "beguilement": [["S", "M"]], + "beguilements": null, + "beguilement's": null, + "beguiler": [["M"]], + "beguiler's": null, + "beguile": [["R", "S", "D", "L", "Z", "G"]], + "beguiles": null, + "beguiled": null, + "beguilers": null, + "beguiling": [["Y"]], + "beguilingly": null, + "beguine": [["S", "M"]], + "beguines": null, + "beguine's": null, + "begum": [["M", "S"]], + "begum's": null, + "begums": null, + "begun": null, + "behalf": [["M"]], + "behalf's": null, + "behalves": null, + "Behan": [["M"]], + "Behan's": null, + "behave": [["G", "R", "S", "D"]], + "behaving": null, + "behaver": null, + "behaves": null, + "behaved": null, + "behavioral": [["Y"]], + "behaviorally": null, + "behaviorism": [["M", "S"]], + "behaviorism's": null, + "behaviorisms": null, + "behavioristic": [["S"]], + "behavioristics": null, + "behaviorist": [["S"]], + "behaviorists": null, + "behavior": [["S", "M", "D"]], + "behaviors": null, + "behavior's": null, + "behaviored": null, + "behead": [["G", "S", "D"]], + "beheading": null, + "beheads": null, + "beheaded": null, + "beheld": null, + "behemoth": [["M"]], + "behemoth's": null, + "behemoths": null, + "behest": [["S", "M"]], + "behests": null, + "behest's": null, + "behindhand": null, + "behind": [["S"]], + "behinds": null, + "beholder": [["M"]], + "beholder's": null, + "behold": [["Z", "G", "R", "N", "S"]], + "beholders": null, + "beholding": null, + "beholden": null, + "beholds": null, + "behoofs": null, + "behoove": [["S", "D", "J", "M", "G"]], + "behooves": null, + "behooved": null, + "behoovings": null, + "behoove's": null, + "behooving": [["Y", "M"]], + "behoovingly": null, + "behooving's": null, + "Behring": [["M"]], + "Behring's": null, + "Beiderbecke": [["M"]], + "Beiderbecke's": null, + "beige": [["M", "S"]], + "beige's": null, + "beiges": null, + "Beijing": null, + "Beilul": [["M"]], + "Beilul's": null, + "being's": null, + "Beirut": [["M"]], + "Beirut's": null, + "Beitris": [["M"]], + "Beitris's": null, + "bejewel": [["S", "D", "G"]], + "bejewels": null, + "bejeweled": null, + "bejeweling": null, + "Bekesy": [["M"]], + "Bekesy's": null, + "Bekki": [["M"]], + "Bekki's": null, + "be": [["K", "S"]], + "probe": null, + "probes": null, + "bes": null, + "belabor": [["M", "D", "S", "G"]], + "belabor's": null, + "belabored": null, + "belabors": null, + "belaboring": null, + "Bela": [["M"]], + "Bela's": null, + "Belarus": null, + "belate": [["D"]], + "belated": [["P", "Y"]], + "belatedness": [["M"]], + "belatedness's": null, + "belatedly": null, + "Belau": [["M"]], + "Belau's": null, + "belay": [["G", "S", "D"]], + "belaying": null, + "belays": null, + "belayed": null, + "belch": [["G", "S", "D"]], + "belching": null, + "belches": null, + "belched": null, + "beleaguer": [["G", "D", "S"]], + "beleaguering": null, + "beleaguered": null, + "beleaguers": null, + "Belem": [["M"]], + "Belem's": null, + "Belfast": [["M"]], + "Belfast's": null, + "belfry": [["S", "M"]], + "belfries": null, + "belfry's": null, + "Belgian": [["M", "S"]], + "Belgian's": null, + "Belgians": null, + "Belgium": [["M"]], + "Belgium's": null, + "Belg": [["M"]], + "Belg's": null, + "Belgrade": [["M"]], + "Belgrade's": null, + "Belia": [["M"]], + "Belia's": null, + "Belicia": [["M"]], + "Belicia's": null, + "belie": null, + "belief": [["E", "S", "U", "M"]], + "disbelief": null, + "disbeliefs": null, + "disbelief's": null, + "beliefs": null, + "unbeliefs": null, + "unbelief": null, + "unbelief's": null, + "belief's": null, + "belier": [["M"]], + "belier's": null, + "believability's": null, + "believability": [["U"]], + "unbelievability": null, + "believable": [["U"]], + "unbelievable": null, + "believably": [["U"]], + "unbelievably": null, + "believed": [["U"]], + "unbelieved": null, + "believe": [["E", "Z", "G", "D", "R", "S"]], + "disbelieve": null, + "disbelievers": null, + "disbelieving": [["Y"]], + "disbelieved": null, + "disbeliever": null, + "disbelieves": null, + "believers": null, + "believing": [["U"]], + "believer": [["M", "U", "S", "E"]], + "believes": null, + "believer's": null, + "unbeliever's": null, + "disbeliever's": null, + "unbeliever": null, + "unbelievers": null, + "unbelieving": [["Y"]], + "Belinda": [["M"]], + "Belinda's": null, + "Belita": [["M"]], + "Belita's": null, + "belittlement": [["M", "S"]], + "belittlement's": null, + "belittlements": null, + "belittler": [["M"]], + "belittler's": null, + "belittle": [["R", "S", "D", "G", "L"]], + "belittles": null, + "belittled": null, + "belittling": null, + "Belize": [["M"]], + "Belize's": null, + "belladonna": [["M", "S"]], + "belladonna's": null, + "belladonnas": null, + "Bella": [["M"]], + "Bella's": null, + "Bellamy": [["M"]], + "Bellamy's": null, + "Bellanca": [["M"]], + "Bellanca's": null, + "Bellatrix": [["M"]], + "Bellatrix's": null, + "bellboy": [["M", "S"]], + "bellboy's": null, + "bellboys": null, + "belled": [["A"]], + "rebelled": null, + "Belle": [["M"]], + "Belle's": null, + "belle": [["M", "S"]], + "belle's": null, + "belles": null, + "belletristic": null, + "belletrist": [["S", "M"]], + "belletrists": null, + "belletrist's": null, + "Belleville": [["M"]], + "Belleville's": null, + "bellflower": [["M"]], + "bellflower's": null, + "bell": [["G", "S", "M", "D"]], + "belling": [["A"]], + "bells": [["A"]], + "bell's": null, + "bellhop": [["M", "S"]], + "bellhop's": null, + "bellhops": null, + "bellicoseness": [["M"]], + "bellicoseness's": null, + "bellicose": [["Y", "P"]], + "bellicosely": null, + "bellicosity": [["M", "S"]], + "bellicosity's": null, + "bellicosities": null, + "belligerence": [["S", "M"]], + "belligerences": null, + "belligerence's": null, + "belligerency": [["M", "S"]], + "belligerency's": null, + "belligerencies": null, + "belligerent": [["S", "M", "Y"]], + "belligerents": null, + "belligerent's": null, + "belligerently": null, + "Bellina": [["M"]], + "Bellina's": null, + "rebelling": null, + "Bellini": [["M"]], + "Bellini's": null, + "Bell": [["M"]], + "Bell's": null, + "bellman": [["M"]], + "bellman's": null, + "bellmen": null, + "Bellovin": [["M"]], + "Bellovin's": null, + "bellow": [["D", "G", "S"]], + "bellowed": null, + "bellowing": null, + "bellows": [["M"]], + "Bellow": [["M"]], + "Bellow's": null, + "bellows's": null, + "rebells": null, + "bellwether": [["M", "S"]], + "bellwether's": null, + "bellwethers": null, + "Bellwood": [["M"]], + "Bellwood's": null, + "bellyacher": [["M"]], + "bellyacher's": null, + "bellyache": [["S", "R", "D", "G", "M"]], + "bellyaches": null, + "bellyached": null, + "bellyaching": null, + "bellyache's": null, + "bellybutton": [["M", "S"]], + "bellybutton's": null, + "bellybuttons": null, + "bellyfull": null, + "bellyful": [["M", "S"]], + "bellyful's": null, + "bellyfuls": null, + "belly": [["S", "D", "G", "M"]], + "bellies": null, + "bellied": null, + "bellying": null, + "belly's": null, + "Bel": [["M"]], + "Bel's": null, + "Belmont": [["M"]], + "Belmont's": null, + "Belmopan": [["M"]], + "Belmopan's": null, + "Beloit": [["M"]], + "Beloit's": null, + "belong": [["D", "G", "J", "S"]], + "belonged": null, + "belonging": [["M", "P"]], + "belongings": null, + "belongs": null, + "belonging's": null, + "belongingness": null, + "Belorussian": [["S"]], + "Belorussians": null, + "Belorussia's": null, + "belove": [["D"]], + "beloved": [["S"]], + "beloveds": null, + "below": [["S"]], + "belows": null, + "Belshazzar": [["M"]], + "Belshazzar's": null, + "belted": [["U"]], + "unbelted": null, + "belt": [["G", "S", "M", "D"]], + "belting": [["M"]], + "belts": null, + "belt's": null, + "belting's": null, + "Belton": [["M"]], + "Belton's": null, + "Beltran": [["M"]], + "Beltran's": null, + "Beltsville": [["M"]], + "Beltsville's": null, + "beltway": [["S", "M"]], + "beltways": null, + "beltway's": null, + "beluga": [["S", "M"]], + "belugas": null, + "beluga's": null, + "Belushi": [["M"]], + "Belushi's": null, + "Belva": [["M"]], + "Belva's": null, + "belvedere": [["M"]], + "belvedere's": null, + "Belvia": [["M"]], + "Belvia's": null, + "bely": [["D", "S", "R", "G"]], + "belied": null, + "belies": null, + "belying": null, + "beman": null, + "Be": [["M", "H"]], + "Be's": null, + "Beth": [["M"]], + "bemire": [["S", "D", "G"]], + "bemires": null, + "bemired": null, + "bemiring": null, + "bemoan": [["G", "D", "S"]], + "bemoaning": null, + "bemoaned": null, + "bemoans": null, + "bemused": [["Y"]], + "bemusedly": null, + "bemuse": [["G", "S", "D", "L"]], + "bemusing": null, + "bemuses": null, + "bemusement": [["S", "M"]], + "bemusements": null, + "bemusement's": null, + "Benacerraf": [["M"]], + "Benacerraf's": null, + "Benares's": null, + "bencher": [["M"]], + "bencher's": null, + "benchmark": [["G", "D", "M", "S"]], + "benchmarking": null, + "benchmarked": null, + "benchmark's": null, + "benchmarks": null, + "bench": [["M", "R", "S", "D", "G"]], + "bench's": null, + "benches": null, + "benched": null, + "benching": null, + "bend": [["B", "U", "S", "G"]], + "bendable": null, + "unbendable": null, + "unbend": null, + "unbends": null, + "unbending": null, + "bends": null, + "bending": null, + "bended": null, + "Bender": [["M"]], + "Bender's": null, + "bender": [["M", "S"]], + "bender's": null, + "benders": null, + "Bendick": [["M"]], + "Bendick's": null, + "Bendicty": [["M"]], + "Bendicty's": null, + "Bendite": [["M"]], + "Bendite's": null, + "Bendix": [["M"]], + "Bendix's": null, + "beneath": null, + "Benedetta": [["M"]], + "Benedetta's": null, + "Benedetto": [["M"]], + "Benedetto's": null, + "Benedick": [["M"]], + "Benedick's": null, + "Benedicta": [["M"]], + "Benedicta's": null, + "Benedictine": [["M", "S"]], + "Benedictine's": null, + "Benedictines": null, + "benediction": [["M", "S"]], + "benediction's": null, + "benedictions": null, + "Benedict": [["M"]], + "Benedict's": null, + "Benedicto": [["M"]], + "Benedicto's": null, + "benedictory": null, + "Benedikta": [["M"]], + "Benedikta's": null, + "Benedikt": [["M"]], + "Benedikt's": null, + "benefaction": [["M", "S"]], + "benefaction's": null, + "benefactions": null, + "benefactor": [["M", "S"]], + "benefactor's": null, + "benefactors": null, + "benefactress": [["S"]], + "benefactresses": null, + "benefice": [["M", "G", "S", "D"]], + "benefice's": null, + "beneficing": null, + "benefices": null, + "beneficed": null, + "beneficence": [["S", "M"]], + "beneficences": null, + "beneficence's": null, + "beneficent": [["Y"]], + "beneficently": null, + "beneficialness": [["M"]], + "beneficialness's": null, + "beneficial": [["P", "Y"]], + "beneficially": null, + "beneficiary": [["M", "S"]], + "beneficiary's": null, + "beneficiaries": null, + "benefiter": [["M"]], + "benefiter's": null, + "benefit": [["S", "R", "D", "M", "Z", "G"]], + "benefits": null, + "benefited": null, + "benefit's": null, + "benefiters": null, + "benefiting": null, + "Benelux": [["M"]], + "Benelux's": null, + "Benet": [["M"]], + "Benet's": null, + "Benetta": [["M"]], + "Benetta's": null, + "Benetton": [["M"]], + "Benetton's": null, + "benevolence": [["S", "M"]], + "benevolences": null, + "benevolence's": null, + "benevolentness": [["M"]], + "benevolentness's": null, + "benevolent": [["Y", "P"]], + "benevolently": null, + "Bengali": [["M"]], + "Bengali's": null, + "Bengal": [["S", "M"]], + "Bengals": null, + "Bengal's": null, + "Benghazi": [["M"]], + "Benghazi's": null, + "Bengt": [["M"]], + "Bengt's": null, + "Beniamino": [["M"]], + "Beniamino's": null, + "benightedness": [["M"]], + "benightedness's": null, + "benighted": [["Y", "P"]], + "benightedly": null, + "benignant": null, + "benignity": [["M", "S"]], + "benignity's": null, + "benignities": null, + "benign": [["Y"]], + "benignly": null, + "Beninese": null, + "Benin": [["M"]], + "Benin's": null, + "Benita": [["M"]], + "Benita's": null, + "Benito": [["M"]], + "Benito's": null, + "Benjamen": [["M"]], + "Benjamen's": null, + "Benjamin": [["M"]], + "Benjamin's": null, + "Benjie": [["M"]], + "Benjie's": null, + "Benji": [["M"]], + "Benji's": null, + "Benjy": [["M"]], + "Benjy's": null, + "Ben": [["M"]], + "Ben's": null, + "Bennett": [["M"]], + "Bennett's": null, + "Bennie": [["M"]], + "Bennie's": null, + "Benni": [["M"]], + "Benni's": null, + "Bennington": [["M"]], + "Bennington's": null, + "Benn": [["M"]], + "Benn's": null, + "Benny": [["M"]], + "Benny's": null, + "Benoite": [["M"]], + "Benoite's": null, + "Benoit": [["M"]], + "Benoit's": null, + "Benson": [["M"]], + "Benson's": null, + "Bentham": [["M"]], + "Bentham's": null, + "Bentlee": [["M"]], + "Bentlee's": null, + "Bentley": [["M", "S"]], + "Bentley's": null, + "Bentleys": null, + "Bent": [["M"]], + "Bent's": null, + "Benton": [["M"]], + "Benton's": null, + "bents": null, + "bent": [["U"]], + "unbent": null, + "bentwood": [["S", "M"]], + "bentwoods": null, + "bentwood's": null, + "benumb": [["S", "G", "D"]], + "benumbs": null, + "benumbing": null, + "benumbed": null, + "Benyamin": [["M"]], + "Benyamin's": null, + "Benzedrine": [["M"]], + "Benzedrine's": null, + "benzene": [["M", "S"]], + "benzene's": null, + "benzenes": null, + "benzine": [["S", "M"]], + "benzines": null, + "benzine's": null, + "Benz": [["M"]], + "Benz's": null, + "Beograd's": null, + "Beowulf": [["M"]], + "Beowulf's": null, + "bequeath": [["G", "S", "D"]], + "bequeathing": null, + "bequeathes": null, + "bequeathed": null, + "bequeaths": null, + "bequest": [["M", "S"]], + "bequest's": null, + "bequests": null, + "berate": [["G", "S", "D"]], + "berating": null, + "berates": null, + "berated": null, + "Berber": [["M", "S"]], + "Berber's": null, + "Berbers": null, + "bereave": [["G", "L", "S", "D"]], + "bereaving": null, + "bereavement": [["M", "S"]], + "bereaves": null, + "bereaved": null, + "bereavement's": null, + "bereavements": null, + "bereft": null, + "Berenice": [["M"]], + "Berenice's": null, + "Beret": [["M"]], + "Beret's": null, + "beret": [["S", "M"]], + "berets": null, + "beret's": null, + "Bergen": [["M"]], + "Bergen's": null, + "Bergerac": [["M"]], + "Bergerac's": null, + "Berger": [["M"]], + "Berger's": null, + "Berget": [["M"]], + "Berget's": null, + "Berglund": [["M"]], + "Berglund's": null, + "Bergman": [["M"]], + "Bergman's": null, + "Berg": [["N", "R", "M"]], + "Berg's": null, + "berg": [["N", "R", "S", "M"]], + "bergen": null, + "berger": null, + "bergs": null, + "berg's": null, + "Bergson": [["M"]], + "Bergson's": null, + "Bergsten": [["M"]], + "Bergsten's": null, + "Bergstrom": [["M"]], + "Bergstrom's": null, + "beribbon": [["D"]], + "beribboned": null, + "beriberi": [["S", "M"]], + "beriberis": null, + "beriberi's": null, + "Beringer": [["M"]], + "Beringer's": null, + "Bering": [["R", "M"]], + "Bering's": null, + "Berkeley": [["M"]], + "Berkeley's": null, + "berkelium": [["S", "M"]], + "berkeliums": null, + "berkelium's": null, + "Berke": [["M"]], + "Berke's": null, + "Berkie": [["M"]], + "Berkie's": null, + "Berkley": [["M"]], + "Berkley's": null, + "Berkly": [["M"]], + "Berkly's": null, + "Berkowitz": [["M"]], + "Berkowitz's": null, + "Berkshire": [["S", "M"]], + "Berkshires": null, + "Berkshire's": null, + "Berky": [["M"]], + "Berky's": null, + "Berk": [["Y", "M"]], + "Berk's": null, + "Berle": [["M"]], + "Berle's": null, + "Berliner": [["M"]], + "Berliner's": null, + "Berlin": [["S", "Z", "R", "M"]], + "Berlins": null, + "Berliners": null, + "Berlin's": null, + "Berlioz": [["M"]], + "Berlioz's": null, + "Berlitz": [["M"]], + "Berlitz's": null, + "Berman": [["M"]], + "Berman's": null, + "Ber": [["M", "G"]], + "Ber's": null, + "berm": [["S", "M"]], + "berms": null, + "berm's": null, + "Bermuda": [["M", "S"]], + "Bermuda's": null, + "Bermudas": null, + "Bermudan": [["S"]], + "Bermudans": null, + "Bermudian": [["S"]], + "Bermudians": null, + "Bernadene": [["M"]], + "Bernadene's": null, + "Bernadette": [["M"]], + "Bernadette's": null, + "Bernadina": [["M"]], + "Bernadina's": null, + "Bernadine": [["M"]], + "Bernadine's": null, + "Berna": [["M"]], + "Berna's": null, + "Bernardina": [["M"]], + "Bernardina's": null, + "Bernardine": [["M"]], + "Bernardine's": null, + "Bernardino": [["M"]], + "Bernardino's": null, + "Bernard": [["M"]], + "Bernard's": null, + "Bernardo": [["M"]], + "Bernardo's": null, + "Bernarr": [["M"]], + "Bernarr's": null, + "Bernays": [["M"]], + "Bernays's": null, + "Bernbach": [["M"]], + "Bernbach's": null, + "Bernelle": [["M"]], + "Bernelle's": null, + "Berne's": null, + "Bernese": null, + "Bernete": [["M"]], + "Bernete's": null, + "Bernetta": [["M"]], + "Bernetta's": null, + "Bernette": [["M"]], + "Bernette's": null, + "Bernhard": [["M"]], + "Bernhard's": null, + "Bernhardt": [["M"]], + "Bernhardt's": null, + "Bernice": [["M"]], + "Bernice's": null, + "Berniece": [["M"]], + "Berniece's": null, + "Bernie": [["M"]], + "Bernie's": null, + "Berni": [["M"]], + "Berni's": null, + "Bernini": [["M"]], + "Bernini's": null, + "Bernita": [["M"]], + "Bernita's": null, + "Bern": [["M"]], + "Bern's": null, + "Bernoulli": [["M"]], + "Bernoulli's": null, + "Bernstein": [["M"]], + "Bernstein's": null, + "Berny": [["M"]], + "Berny's": null, + "Berra": [["M"]], + "Berra's": null, + "Berrie": [["M"]], + "Berrie's": null, + "Berri": [["M"]], + "Berri's": null, + "berrylike": null, + "Berry": [["M"]], + "Berry's": null, + "berry": [["S", "D", "M", "G"]], + "berries": null, + "berried": null, + "berry's": null, + "berrying": null, + "berserker": [["M"]], + "berserker's": null, + "berserk": [["S", "R"]], + "berserks": null, + "Berta": [["M"]], + "Berta's": null, + "Berte": [["M"]], + "Berte's": null, + "Bertha": [["M"]], + "Bertha's": null, + "Berthe": [["M"]], + "Berthe's": null, + "berth": [["M", "D", "G", "J"]], + "berth's": null, + "berthed": null, + "berthing": null, + "berthings": null, + "berths": null, + "Bertie": [["M"]], + "Bertie's": null, + "Bertillon": [["M"]], + "Bertillon's": null, + "Berti": [["M"]], + "Berti's": null, + "Bertina": [["M"]], + "Bertina's": null, + "Bertine": [["M"]], + "Bertine's": null, + "Bert": [["M"]], + "Bert's": null, + "Berton": [["M"]], + "Berton's": null, + "Bertram": [["M"]], + "Bertram's": null, + "Bertrand": [["M"]], + "Bertrand's": null, + "Bertrando": [["M"]], + "Bertrando's": null, + "Berty": [["M"]], + "Berty's": null, + "Beryle": [["M"]], + "Beryle's": null, + "beryllium": [["M", "S"]], + "beryllium's": null, + "berylliums": null, + "Beryl": [["M"]], + "Beryl's": null, + "beryl": [["S", "M"]], + "beryls": null, + "beryl's": null, + "Berzelius": [["M"]], + "Berzelius's": null, + "beseecher": [["M"]], + "beseecher's": null, + "beseeching": [["Y"]], + "beseechingly": null, + "beseech": [["R", "S", "J", "Z", "G"]], + "beseeches": null, + "beseechings": null, + "beseechers": null, + "beseem": [["G", "D", "S"]], + "beseeming": null, + "beseemed": null, + "beseems": null, + "beset": [["S"]], + "besets": null, + "besetting": null, + "beside": [["S"]], + "besides": null, + "besieger": [["M"]], + "besieger's": null, + "besiege": [["S", "R", "D", "Z", "G"]], + "besieges": null, + "besieged": null, + "besiegers": null, + "besieging": null, + "besmear": [["G", "S", "D"]], + "besmearing": null, + "besmears": null, + "besmeared": null, + "besmirch": [["G", "S", "D"]], + "besmirching": null, + "besmirches": null, + "besmirched": null, + "besom": [["G", "M", "D", "S"]], + "besoming": null, + "besom's": null, + "besomed": null, + "besoms": null, + "besot": [["S"]], + "besots": null, + "besotted": null, + "besotting": null, + "besought": null, + "bespangle": [["G", "S", "D"]], + "bespangling": null, + "bespangles": null, + "bespangled": null, + "bespatter": [["S", "G", "D"]], + "bespatters": null, + "bespattering": null, + "bespattered": null, + "bespeak": [["S", "G"]], + "bespeaks": null, + "bespeaking": null, + "bespectacled": null, + "bespoke": null, + "bespoken": null, + "Bess": null, + "Bessel": [["M"]], + "Bessel's": null, + "Bessemer": [["M"]], + "Bessemer's": null, + "Bessie": [["M"]], + "Bessie's": null, + "Bessy": [["M"]], + "Bessy's": null, + "best": [["D", "R", "S", "G"]], + "bested": null, + "bester": null, + "bests": null, + "besting": null, + "bestiality": [["M", "S"]], + "bestiality's": null, + "bestialities": null, + "bestial": [["Y"]], + "bestially": null, + "bestiary": [["M", "S"]], + "bestiary's": null, + "bestiaries": null, + "bestirred": null, + "bestirring": null, + "bestir": [["S"]], + "bestirs": null, + "Best": [["M"]], + "Best's": null, + "bestowal": [["S", "M"]], + "bestowals": null, + "bestowal's": null, + "bestow": [["S", "G", "D"]], + "bestows": null, + "bestowing": null, + "bestowed": null, + "bestrew": [["D", "G", "S"]], + "bestrewed": null, + "bestrewing": null, + "bestrews": null, + "bestrewn": null, + "bestridden": null, + "bestride": [["S", "G"]], + "bestrides": null, + "bestriding": null, + "bestrode": null, + "bestseller": [["M", "S"]], + "bestseller's": null, + "bestsellers": null, + "bestselling": null, + "bestubble": [["D"]], + "bestubbled": null, + "betaken": null, + "betake": [["S", "G"]], + "betakes": null, + "betaking": null, + "beta": [["S", "M"]], + "betas": null, + "beta's": null, + "betatron": [["M"]], + "betatron's": null, + "betcha": null, + "Betelgeuse": [["M"]], + "Betelgeuse's": null, + "betel": [["M", "S"]], + "betel's": null, + "betels": null, + "Bethanne": [["M"]], + "Bethanne's": null, + "Bethany": [["M"]], + "Bethany's": null, + "bethel": [["M"]], + "bethel's": null, + "Bethe": [["M"]], + "Bethe's": null, + "Bethena": [["M"]], + "Bethena's": null, + "Bethesda": [["M"]], + "Bethesda's": null, + "Bethina": [["M"]], + "Bethina's": null, + "bethink": [["G", "S"]], + "bethinking": null, + "bethinks": null, + "Bethlehem": [["M"]], + "Bethlehem's": null, + "beth": [["M"]], + "beth's": null, + "Beth's": null, + "bethought": null, + "Bethune": null, + "betide": [["G", "S", "D"]], + "betiding": null, + "betides": null, + "betided": null, + "betimes": null, + "bet": [["M", "S"]], + "bet's": null, + "bets": null, + "betoken": [["G", "S", "D"]], + "betokening": null, + "betokens": null, + "betokened": null, + "betook": null, + "betrayal": [["S", "M"]], + "betrayals": null, + "betrayal's": null, + "betrayer": [["M"]], + "betrayer's": null, + "betray": [["S", "R", "D", "Z", "G"]], + "betrays": null, + "betrayed": null, + "betrayers": null, + "betraying": null, + "betrothal": [["S", "M"]], + "betrothals": null, + "betrothal's": null, + "betrothed": [["U"]], + "unbetrothed": null, + "betroth": [["G", "D"]], + "betrothing": null, + "betroths": null, + "Betsey": [["M"]], + "Betsey's": null, + "Betsy": [["M"]], + "Betsy's": null, + "Betta": [["M"]], + "Betta's": null, + "Betteanne": [["M"]], + "Betteanne's": null, + "Betteann": [["M"]], + "Betteann's": null, + "Bette": [["M"]], + "Bette's": null, + "betterment": [["M", "S"]], + "betterment's": null, + "betterments": null, + "better": [["S", "D", "L", "G"]], + "betters": null, + "bettered": null, + "bettering": null, + "Bettie": [["M"]], + "Bettie's": null, + "Betti": [["M"]], + "Betti's": null, + "Bettina": [["M"]], + "Bettina's": null, + "Bettine": [["M"]], + "Bettine's": null, + "betting": null, + "bettor": [["S", "M"]], + "bettors": null, + "bettor's": null, + "Bettye": [["M"]], + "Bettye's": null, + "Betty": [["S", "M"]], + "Betties": null, + "Betty's": null, + "betweenness": [["M"]], + "betweenness's": null, + "between": [["S", "P"]], + "betweens": null, + "betwixt": null, + "Beulah": [["M"]], + "Beulah's": null, + "Bevan": [["M"]], + "Bevan's": null, + "bevel": [["S", "J", "G", "M", "R", "D"]], + "bevels": null, + "bevelings": null, + "beveling": null, + "bevel's": null, + "beveler": null, + "beveled": null, + "beverage": [["M", "S"]], + "beverage's": null, + "beverages": null, + "Beverie": [["M"]], + "Beverie's": null, + "Beverlee": [["M"]], + "Beverlee's": null, + "Beverley": [["M"]], + "Beverley's": null, + "Beverlie": [["M"]], + "Beverlie's": null, + "Beverly": [["M"]], + "Beverly's": null, + "Bevin": [["M"]], + "Bevin's": null, + "Bevon": [["M"]], + "Bevon's": null, + "Bev's": null, + "Bevvy": [["M"]], + "Bevvy's": null, + "bevy": [["S", "M"]], + "bevies": null, + "bevy's": null, + "bewail": [["G", "D", "S"]], + "bewailing": null, + "bewailed": null, + "bewails": null, + "beware": [["G", "S", "D"]], + "bewaring": null, + "bewares": null, + "bewared": null, + "bewhisker": [["D"]], + "bewhiskered": null, + "bewigged": null, + "bewildered": [["P", "Y"]], + "bewilderedness": null, + "bewilderedly": null, + "bewildering": [["Y"]], + "bewilderingly": null, + "bewilder": [["L", "D", "S", "G"]], + "bewilderment": [["S", "M"]], + "bewilders": null, + "bewilderments": null, + "bewilderment's": null, + "bewitching": [["Y"]], + "bewitchingly": null, + "bewitch": [["L", "G", "D", "S"]], + "bewitchment": [["S", "M"]], + "bewitched": null, + "bewitches": null, + "bewitchments": null, + "bewitchment's": null, + "bey": [["M", "S"]], + "bey's": null, + "beys": null, + "beyond": [["S"]], + "beyonds": null, + "bezel": [["M", "S"]], + "bezel's": null, + "bezels": null, + "bf": null, + "B": [["G", "T"]], + "Bing": [["M"]], + "Bhopal": [["M"]], + "Bhopal's": null, + "Bhutanese": null, + "Bhutan": [["M"]], + "Bhutan's": null, + "Bhutto": [["M"]], + "Bhutto's": null, + "Bialystok": [["M"]], + "Bialystok's": null, + "Bianca": [["M"]], + "Bianca's": null, + "Bianco": [["M"]], + "Bianco's": null, + "Bianka": [["M"]], + "Bianka's": null, + "biannual": [["Y"]], + "biannually": null, + "bias": [["D", "S", "M", "P", "G"]], + "biased": [["U"]], + "biases": null, + "bias's": null, + "biasness": null, + "biasing": null, + "unbiased": [["P"]], + "biathlon": [["M", "S"]], + "biathlon's": null, + "biathlons": null, + "biaxial": [["Y"]], + "biaxially": null, + "bibbed": null, + "Bibbie": [["M"]], + "Bibbie's": null, + "bibbing": null, + "Bibbye": [["M"]], + "Bibbye's": null, + "Bibby": [["M"]], + "Bibby's": null, + "Bibi": [["M"]], + "Bibi's": null, + "bible": [["M", "S"]], + "bible's": null, + "bibles": null, + "Bible": [["M", "S"]], + "Bible's": null, + "Bibles": null, + "biblical": [["Y"]], + "biblically": null, + "biblicists": null, + "bibliographer": [["M", "S"]], + "bibliographer's": null, + "bibliographers": null, + "bibliographical": [["Y"]], + "bibliographically": null, + "bibliographic": [["S"]], + "bibliographics": null, + "bibliography": [["M", "S"]], + "bibliography's": null, + "bibliographies": null, + "bibliophile": [["M", "S"]], + "bibliophile's": null, + "bibliophiles": null, + "Bib": [["M"]], + "Bib's": null, + "bib": [["M", "S"]], + "bib's": null, + "bibs": null, + "bibulous": null, + "bicameral": null, + "bicameralism": [["M", "S"]], + "bicameralism's": null, + "bicameralisms": null, + "bicarb": [["M", "S"]], + "bicarb's": null, + "bicarbs": null, + "bicarbonate": [["M", "S"]], + "bicarbonate's": null, + "bicarbonates": null, + "bicentenary": [["S"]], + "bicentenaries": null, + "bicentennial": [["S"]], + "bicentennials": null, + "bicep": [["S"]], + "biceps": [["M"]], + "biceps's": null, + "bichromate": [["D", "M"]], + "bichromated": null, + "bichromate's": null, + "bickerer": [["M"]], + "bickerer's": null, + "bickering": [["M"]], + "bickering's": null, + "bicker": [["S", "R", "D", "Z", "G"]], + "bickers": null, + "bickered": null, + "bickerers": null, + "biconcave": null, + "biconnected": null, + "biconvex": null, + "bicuspid": [["S"]], + "bicuspids": null, + "bicycler": [["M"]], + "bicycler's": null, + "bicycle": [["R", "S", "D", "M", "Z", "G"]], + "bicycles": null, + "bicycled": null, + "bicycle's": null, + "bicyclers": null, + "bicycling": null, + "bicyclist": [["S", "M"]], + "bicyclists": null, + "bicyclist's": null, + "biddable": null, + "bidden": [["U"]], + "unbidden": null, + "bidder": [["M", "S"]], + "bidder's": null, + "bidders": null, + "Biddie": [["M"]], + "Biddie's": null, + "bidding": [["M", "S"]], + "bidding's": null, + "biddings": null, + "Biddle": [["M"]], + "Biddle's": null, + "Biddy": [["M"]], + "Biddy's": null, + "biddy": [["S", "M"]], + "biddies": null, + "biddy's": null, + "bider": [["M"]], + "bider's": null, + "bide": [["S"]], + "bides": null, + "bidet": [["S", "M"]], + "bidets": null, + "bidet's": null, + "Bidget": [["M"]], + "Bidget's": null, + "bid": [["G", "M", "R", "S"]], + "biding": null, + "bid's": null, + "bids": [["A"]], + "bidiagonal": null, + "bidirectional": [["Y"]], + "bidirectionally": null, + "rebids": null, + "biennial": [["S", "Y"]], + "biennials": null, + "biennially": null, + "biennium": [["S", "M"]], + "bienniums": null, + "biennium's": null, + "Bienville": [["M"]], + "Bienville's": null, + "Bierce": [["M"]], + "Bierce's": null, + "bier": [["M"]], + "bier's": null, + "bifocal": [["S"]], + "bifocals": null, + "bifurcate": [["S", "D", "X", "G", "N", "Y"]], + "bifurcates": null, + "bifurcated": null, + "bifurcations": null, + "bifurcating": null, + "bifurcation": [["M"]], + "bifurcately": null, + "bifurcation's": null, + "bigamist": [["S", "M"]], + "bigamists": null, + "bigamist's": null, + "bigamous": null, + "bigamy": [["S", "M"]], + "bigamies": null, + "bigamy's": null, + "Bigelow": [["M"]], + "Bigelow's": null, + "Bigfoot": null, + "bigged": null, + "bigger": null, + "biggest": null, + "biggie": [["S", "M"]], + "biggies": null, + "biggie's": null, + "bigging": null, + "biggish": null, + "bighead": [["M", "S"]], + "bighead's": null, + "bigheads": null, + "bigheartedness": [["S"]], + "bigheartednesses": null, + "bighearted": [["P"]], + "bighorn": [["M", "S"]], + "bighorn's": null, + "bighorns": null, + "bight": [["S", "M", "D", "G"]], + "bights": null, + "bight's": null, + "bighted": null, + "bighting": null, + "bigmouth": [["M"]], + "bigmouth's": null, + "bigmouths": null, + "bigness": [["S", "M"]], + "bignesses": null, + "bigness's": null, + "bigoted": [["Y"]], + "bigotedly": null, + "bigot": [["M", "D", "S", "G"]], + "bigot's": null, + "bigots": null, + "bigoting": null, + "bigotry": [["M", "S"]], + "bigotry's": null, + "bigotries": null, + "big": [["P", "Y", "S"]], + "bigly": null, + "bigs": null, + "bigwig": [["M", "S"]], + "bigwig's": null, + "bigwigs": null, + "biharmonic": null, + "bijection": [["M", "S"]], + "bijection's": null, + "bijections": null, + "bijective": [["Y"]], + "bijectively": null, + "bijou": [["M"]], + "bijou's": null, + "bijoux": null, + "bike": [["M", "Z", "G", "D", "R", "S"]], + "bike's": null, + "bikers": null, + "biking": null, + "biked": null, + "biker": [["M"]], + "bikes": null, + "biker's": null, + "bikini": [["S", "M", "D"]], + "bikinis": null, + "bikini's": null, + "bikinied": null, + "Biko": [["M"]], + "Biko's": null, + "bilabial": [["S"]], + "bilabials": null, + "bilateralness": [["M"]], + "bilateralness's": null, + "bilateral": [["P", "Y"]], + "bilaterally": null, + "bilayer": [["S"]], + "bilayers": null, + "Bilbao": [["M"]], + "Bilbao's": null, + "bilberry": [["M", "S"]], + "bilberry's": null, + "bilberries": null, + "Bilbo": [["M"]], + "Bilbo's": null, + "bile": [["S", "M"]], + "biles": null, + "bile's": null, + "bilge": [["G", "M", "D", "S"]], + "bilging": null, + "bilge's": null, + "bilged": null, + "bilges": null, + "biliary": null, + "Bili": [["M"]], + "Bili's": null, + "bilinear": null, + "bilingualism": [["S", "M"]], + "bilingualisms": null, + "bilingualism's": null, + "bilingual": [["S", "Y"]], + "bilinguals": null, + "bilingually": null, + "biliousness": [["S", "M"]], + "biliousnesses": null, + "biliousness's": null, + "bilious": [["P"]], + "bilker": [["M"]], + "bilker's": null, + "bilk": [["G", "Z", "S", "D", "R"]], + "bilking": null, + "bilkers": null, + "bilks": null, + "bilked": null, + "billboard": [["M", "D", "G", "S"]], + "billboard's": null, + "billboarded": null, + "billboarding": null, + "billboards": null, + "biller": [["M"]], + "biller's": null, + "billet": [["M", "D", "G", "S"]], + "billet's": null, + "billeted": null, + "billeting": null, + "billets": null, + "billfold": [["M", "S"]], + "billfold's": null, + "billfolds": null, + "billiard": [["S", "M"]], + "billiards": null, + "billiard's": null, + "Billie": [["M"]], + "Billie's": null, + "Billi": [["M"]], + "Billi's": null, + "billing": [["M"]], + "billing's": null, + "billingsgate": [["S", "M"]], + "billingsgates": null, + "billingsgate's": null, + "Billings": [["M"]], + "Billings's": null, + "billionaire": [["M", "S"]], + "billionaire's": null, + "billionaires": null, + "billion": [["S", "H", "M"]], + "billions": null, + "billionth": null, + "billion's": null, + "billionths": null, + "bill": [["J", "G", "Z", "S", "B", "M", "D", "R"]], + "billings": null, + "billers": null, + "bills": null, + "billable": null, + "bill's": null, + "billed": null, + "Bill": [["J", "M"]], + "Bill's": null, + "billow": [["D", "M", "G", "S"]], + "billowed": null, + "billow's": null, + "billowing": null, + "billows": null, + "billowy": [["R", "T"]], + "billowier": null, + "billowiest": null, + "billposters": null, + "Billye": [["M"]], + "Billye's": null, + "Billy": [["M"]], + "Billy's": null, + "billy": [["S", "M"]], + "billies": null, + "billy's": null, + "Bil": [["M", "Y"]], + "Bil's": null, + "bi": [["M"]], + "bi's": null, + "Bi": [["M"]], + "Bi's": null, + "bimbo": [["M", "S"]], + "bimbo's": null, + "bimbos": null, + "bimetallic": [["S"]], + "bimetallics": null, + "bimetallism": [["M", "S"]], + "bimetallism's": null, + "bimetallisms": null, + "Bimini": [["M"]], + "Bimini's": null, + "bimodal": null, + "bimolecular": [["Y"]], + "bimolecularly": null, + "bimonthly": [["S"]], + "bimonthlies": null, + "binary": [["S"]], + "binaries": null, + "binaural": [["Y"]], + "binaurally": null, + "binder": [["M"]], + "binder's": null, + "bindery": [["M", "S"]], + "bindery's": null, + "binderies": null, + "binding": [["M", "P", "Y"]], + "binding's": null, + "bindingness": [["M"]], + "bindingly": null, + "bindingness's": null, + "bind": [["J", "D", "R", "G", "Z", "S"]], + "bindings": null, + "binded": null, + "binders": null, + "binds": [["A", "U"]], + "bindle": [["M"]], + "bindle's": null, + "rebinds": null, + "unbinds": null, + "bindweed": [["M", "S"]], + "bindweed's": null, + "bindweeds": null, + "binge": [["M", "S"]], + "binge's": null, + "binges": null, + "bing": [["G", "N", "D", "M"]], + "binging": null, + "bingen": null, + "binged": null, + "bing's": null, + "Bingham": [["M"]], + "Bingham's": null, + "Binghamton": [["M"]], + "Binghamton's": null, + "Bing's": null, + "bingo": [["M", "S"]], + "bingo's": null, + "bingos": null, + "Bini": [["M"]], + "Bini's": null, + "Bink": [["M"]], + "Bink's": null, + "Binky": [["M"]], + "Binky's": null, + "binnacle": [["M", "S"]], + "binnacle's": null, + "binnacles": null, + "binned": null, + "Binnie": [["M"]], + "Binnie's": null, + "Binni": [["M"]], + "Binni's": null, + "binning": null, + "Binny": [["M"]], + "Binny's": null, + "binocular": [["S", "Y"]], + "binoculars": null, + "binocularly": null, + "binodal": null, + "binomial": [["S", "Y", "M"]], + "binomials": null, + "binomially": null, + "binomial's": null, + "bin": [["S", "M"]], + "bins": null, + "bin's": null, + "binuclear": null, + "biochemical": [["S", "Y"]], + "biochemicals": null, + "biochemically": null, + "biochemist": [["M", "S"]], + "biochemist's": null, + "biochemists": null, + "biochemistry": [["M", "S"]], + "biochemistry's": null, + "biochemistries": null, + "biodegradability": [["S"]], + "biodegradabilities": null, + "biodegradable": null, + "biodiversity": [["S"]], + "biodiversities": null, + "bioengineering": [["M"]], + "bioengineering's": null, + "bioethics": null, + "biofeedback": [["S", "M"]], + "biofeedbacks": null, + "biofeedback's": null, + "biographer": [["M"]], + "biographer's": null, + "biographic": null, + "biographical": [["Y"]], + "biographically": null, + "biograph": [["R", "Z"]], + "biographers": null, + "biography": [["M", "S"]], + "biography's": null, + "biographies": null, + "biog": [["S"]], + "biogs": null, + "Bioko": [["M"]], + "Bioko's": null, + "biol": null, + "biological": [["S", "Y"]], + "biologicals": null, + "biologically": null, + "biologic": [["S"]], + "biologics": null, + "biologist": [["S", "M"]], + "biologists": null, + "biologist's": null, + "biology": [["M", "S"]], + "biology's": null, + "biologies": null, + "biomass": [["S", "M"]], + "biomasses": null, + "biomass's": null, + "biomedical": null, + "biomedicine": [["M"]], + "biomedicine's": null, + "biometric": [["S"]], + "biometrics": [["M"]], + "biometrics's": null, + "biometry": [["M"]], + "biometry's": null, + "biomolecule": [["S"]], + "biomolecules": null, + "biomorph": null, + "bionically": null, + "bionic": [["S"]], + "bionics": [["M"]], + "bionics's": null, + "biophysical": [["Y"]], + "biophysically": null, + "biophysicist": [["S", "M"]], + "biophysicists": null, + "biophysicist's": null, + "biophysic": [["S"]], + "biophysics": [["M"]], + "biophysics's": null, + "biopic": [["S"]], + "biopics": null, + "biopsy": [["S", "D", "G", "M"]], + "biopsies": null, + "biopsied": null, + "biopsying": null, + "biopsy's": null, + "biorhythm": [["S"]], + "biorhythms": null, + "BIOS": null, + "bioscience": [["S"]], + "biosciences": null, + "biosphere": [["M", "S"]], + "biosphere's": null, + "biospheres": null, + "biostatistic": [["S"]], + "biostatistics": null, + "biosynthesized": null, + "biotechnological": null, + "biotechnologist": null, + "biotechnology": [["S", "M"]], + "biotechnologies": null, + "biotechnology's": null, + "biotic": null, + "biotin": [["S", "M"]], + "biotins": null, + "biotin's": null, + "bipartisan": null, + "bipartisanship": [["M", "S"]], + "bipartisanship's": null, + "bipartisanships": null, + "bipartite": [["Y", "N"]], + "bipartitely": null, + "bipartition": [["M"]], + "bipartition's": null, + "bipedal": null, + "biped": [["M", "S"]], + "biped's": null, + "bipeds": null, + "biplane": [["M", "S"]], + "biplane's": null, + "biplanes": null, + "bipolar": null, + "bipolarity": [["M", "S"]], + "bipolarity's": null, + "bipolarities": null, + "biracial": null, + "Birch": [["M"]], + "Birch's": null, + "birch": [["M", "R", "S", "D", "N", "G"]], + "birch's": null, + "bircher": null, + "birches": null, + "birched": null, + "birchen": null, + "birching": null, + "birdbath": [["M"]], + "birdbath's": null, + "birdbaths": null, + "birdbrain": [["S", "D", "M"]], + "birdbrains": null, + "birdbrained": null, + "birdbrain's": null, + "birdcage": [["S", "M"]], + "birdcages": null, + "birdcage's": null, + "birder": [["M"]], + "birder's": null, + "birdhouse": [["M", "S"]], + "birdhouse's": null, + "birdhouses": null, + "birdieing": null, + "Birdie": [["M"]], + "Birdie's": null, + "birdie": [["M", "S", "D"]], + "birdie's": null, + "birdies": null, + "birdied": null, + "birdlike": null, + "birdlime": [["M", "G", "D", "S"]], + "birdlime's": null, + "birdliming": null, + "birdlimed": null, + "birdlimes": null, + "Bird": [["M"]], + "Bird's": null, + "birdseed": [["M", "S"]], + "birdseed's": null, + "birdseeds": null, + "Birdseye": [["M"]], + "Birdseye's": null, + "bird": [["S", "M", "D", "R", "G", "Z"]], + "birds": null, + "bird's": null, + "birded": null, + "birding": null, + "birders": null, + "birdsong": null, + "birdtables": null, + "birdwatch": [["G", "Z", "R"]], + "birdwatching": null, + "birdwatchers": null, + "birdwatcher": null, + "birefringence": [["M"]], + "birefringence's": null, + "birefringent": null, + "biretta": [["S", "M"]], + "birettas": null, + "biretta's": null, + "Birgit": [["M"]], + "Birgit's": null, + "Birgitta": [["M"]], + "Birgitta's": null, + "Birkenstock": [["M"]], + "Birkenstock's": null, + "Birk": [["M"]], + "Birk's": null, + "Birmingham": [["M"]], + "Birmingham's": null, + "Biro": [["M"]], + "Biro's": null, + "Biron": [["M"]], + "Biron's": null, + "birthday": [["S", "M"]], + "birthdays": null, + "birthday's": null, + "birthmark": [["M", "S"]], + "birthmark's": null, + "birthmarks": null, + "birth": [["M", "D", "G"]], + "birth's": [["A"]], + "birthed": null, + "birthing": null, + "birthplace": [["S", "M"]], + "birthplaces": null, + "birthplace's": null, + "birthrate": [["M", "S"]], + "birthrate's": null, + "birthrates": null, + "birthright": [["M", "S"]], + "birthright's": null, + "birthrights": null, + "rebirth's": null, + "births": [["A"]], + "rebirths": null, + "birthstone": [["S", "M"]], + "birthstones": null, + "birthstone's": null, + "bis": null, + "Biscay": [["M"]], + "Biscay's": null, + "Biscayne": [["M"]], + "Biscayne's": null, + "biscuit": [["M", "S"]], + "biscuit's": null, + "biscuits": null, + "bisect": [["D", "S", "G"]], + "bisected": null, + "bisects": null, + "bisecting": null, + "bisection": [["M", "S"]], + "bisection's": null, + "bisections": null, + "bisector": [["M", "S"]], + "bisector's": null, + "bisectors": null, + "biserial": null, + "bisexuality": [["M", "S"]], + "bisexuality's": null, + "bisexualities": null, + "bisexual": [["Y", "M", "S"]], + "bisexually": null, + "bisexual's": null, + "bisexuals": null, + "Bishkek": null, + "bishop": [["D", "G", "S", "M"]], + "bishoped": null, + "bishoping": null, + "bishops": null, + "bishop's": null, + "Bishop": [["M"]], + "Bishop's": null, + "bishopric": [["S", "M"]], + "bishoprics": null, + "bishopric's": null, + "Bismarck": [["M"]], + "Bismarck's": null, + "Bismark": [["M"]], + "Bismark's": null, + "bismuth": [["M"]], + "bismuth's": null, + "bismuths": null, + "bison": [["M"]], + "bison's": null, + "bisque": [["S", "M"]], + "bisques": null, + "bisque's": null, + "Bissau": [["M"]], + "Bissau's": null, + "bistable": null, + "bistate": null, + "bistro": [["S", "M"]], + "bistros": null, + "bistro's": null, + "bisyllabic": null, + "bitblt": [["S"]], + "bitblts": null, + "bitchily": null, + "bitchiness": [["M", "S"]], + "bitchiness's": null, + "bitchinesses": null, + "bitch": [["M", "S", "D", "G"]], + "bitch's": null, + "bitches": null, + "bitched": null, + "bitching": null, + "bitchy": [["P", "T", "R"]], + "bitchiest": null, + "bitchier": null, + "biter": [["M"]], + "biter's": null, + "bite": [["S"]], + "bites": null, + "biting": [["Y"]], + "bitingly": null, + "bitmap": [["S", "M"]], + "bitmaps": null, + "bitmap's": null, + "bit": [["M", "R", "J", "S", "Z", "G"]], + "bit's": [["C"]], + "bitings": null, + "bits": [["C"]], + "biters": null, + "BITNET": [["M"]], + "BITNET's": null, + "debit's": null, + "debits": null, + "bitser": [["M"]], + "bitser's": null, + "bitted": null, + "bitten": null, + "bitterness": [["S", "M"]], + "bitternesses": null, + "bitterness's": null, + "bittern": [["S", "M"]], + "bitterns": null, + "bittern's": null, + "bitternut": [["M"]], + "bitternut's": null, + "bitter": [["P", "S", "R", "D", "Y", "T", "G"]], + "bitters": null, + "bitterer": null, + "bittered": null, + "bitterly": null, + "bitterest": null, + "bittering": null, + "bitterroot": [["M"]], + "bitterroot's": null, + "bittersweet": [["Y", "M", "S", "P"]], + "bittersweetly": null, + "bittersweet's": null, + "bittersweets": null, + "bittersweetness": null, + "bitting": null, + "bitty": [["P", "R", "T"]], + "bittiness": null, + "bittier": null, + "bittiest": null, + "bitumen": [["M", "S"]], + "bitumen's": null, + "bitumens": null, + "bituminous": null, + "bitwise": null, + "bivalent": [["S"]], + "bivalents": null, + "bivalve": [["M", "S", "D"]], + "bivalve's": null, + "bivalves": null, + "bivalved": null, + "bivariate": null, + "bivouacked": null, + "bivouacking": null, + "bivouac": [["M", "S"]], + "bivouac's": null, + "bivouacs": null, + "biweekly": [["S"]], + "biweeklies": null, + "biyearly": null, + "bizarreness": [["M"]], + "bizarreness's": null, + "bizarre": [["Y", "S", "P"]], + "bizarrely": null, + "bizarres": null, + "Bizet": [["M"]], + "Bizet's": null, + "biz": [["M"]], + "biz's": null, + "bizzes": null, + "Bjorn": [["M"]], + "Bjorn's": null, + "bk": null, + "b": [["K", "G", "D"]], + "prob": [["R", "B", "J"]], + "probing": null, + "probed": null, + "Bk": [["M"]], + "Bk's": null, + "blabbed": null, + "blabber": [["G", "M", "D", "S"]], + "blabbering": null, + "blabber's": null, + "blabbered": null, + "blabbers": null, + "blabbermouth": [["M"]], + "blabbermouth's": null, + "blabbermouths": null, + "blabbing": null, + "blab": [["S"]], + "blabs": null, + "blackamoor": [["S", "M"]], + "blackamoors": null, + "blackamoor's": null, + "blackball": [["S", "D", "M", "G"]], + "blackballs": null, + "blackballed": null, + "blackball's": null, + "blackballing": null, + "blackberry": [["G", "M", "S"]], + "blackberrying": null, + "blackberry's": null, + "blackberries": null, + "blackbirder": [["M"]], + "blackbirder's": null, + "blackbird": [["S", "G", "D", "R", "M"]], + "blackbirds": null, + "blackbirding": null, + "blackbirded": null, + "blackbird's": null, + "blackboard": [["S", "M"]], + "blackboards": null, + "blackboard's": null, + "blackbody": [["S"]], + "blackbodies": null, + "Blackburn": [["M"]], + "Blackburn's": null, + "blackcurrant": [["M"]], + "blackcurrant's": null, + "blackener": [["M"]], + "blackener's": null, + "blacken": [["G", "D", "R"]], + "blackening": null, + "blackened": null, + "Blackfeet": null, + "Blackfoot": [["M"]], + "Blackfoot's": null, + "blackguard": [["M", "D", "S", "G"]], + "blackguard's": null, + "blackguarded": null, + "blackguards": null, + "blackguarding": null, + "blackhead": [["S", "M"]], + "blackheads": null, + "blackhead's": null, + "blacking": [["M"]], + "blacking's": null, + "blackish": null, + "blackjack": [["S", "G", "M", "D"]], + "blackjacks": null, + "blackjacking": null, + "blackjack's": null, + "blackjacked": null, + "blackleg": [["M"]], + "blackleg's": null, + "blacklist": [["D", "R", "M", "S", "G"]], + "blacklisted": null, + "blacklister": null, + "blacklist's": null, + "blacklists": null, + "blacklisting": null, + "blackmail": [["D", "R", "M", "G", "Z", "S"]], + "blackmailed": null, + "blackmailer": [["M"]], + "blackmail's": null, + "blackmailing": null, + "blackmailers": null, + "blackmails": null, + "blackmailer's": null, + "Blackman": [["M"]], + "Blackman's": null, + "Blackmer": [["M"]], + "Blackmer's": null, + "blackness": [["M", "S"]], + "blackness's": null, + "blacknesses": null, + "blackout": [["S", "M"]], + "blackouts": null, + "blackout's": null, + "Blackpool": [["M"]], + "Blackpool's": null, + "Black's": null, + "black": [["S", "J", "T", "X", "P", "Y", "R", "D", "N", "G"]], + "blacks": null, + "blackings": null, + "blackest": null, + "blackens": null, + "blackly": null, + "blacker": null, + "blacked": null, + "blacksmith": [["M", "G"]], + "blacksmith's": null, + "blacksmithing": null, + "blacksmiths": null, + "blacksnake": [["M", "S"]], + "blacksnake's": null, + "blacksnakes": null, + "blackspot": null, + "Blackstone": [["M"]], + "Blackstone's": null, + "blackthorn": [["M", "S"]], + "blackthorn's": null, + "blackthorns": null, + "blacktop": [["M", "S"]], + "blacktop's": null, + "blacktops": null, + "blacktopped": null, + "blacktopping": null, + "Blackwell": [["M", "S"]], + "Blackwell's": null, + "Blackwells": null, + "bladder": [["M", "S"]], + "bladder's": null, + "bladders": null, + "bladdernut": [["M"]], + "bladdernut's": null, + "bladderwort": [["M"]], + "bladderwort's": null, + "blade": [["D", "S", "G", "M"]], + "bladed": null, + "blades": null, + "blading": null, + "blade's": null, + "blah": [["M", "D", "G"]], + "blah's": null, + "blahed": null, + "blahing": null, + "blahs": null, + "Blaine": [["M"]], + "Blaine's": null, + "Blaire": [["M"]], + "Blaire's": null, + "Blair": [["M"]], + "Blair's": null, + "Blakelee": [["M"]], + "Blakelee's": null, + "Blakeley": [["M"]], + "Blakeley's": null, + "Blake": [["M"]], + "Blake's": null, + "Blakey": [["M"]], + "Blakey's": null, + "blame": [["D", "S", "R", "B", "G", "M", "Z"]], + "blamed": null, + "blames": null, + "blamer": [["M"]], + "blamable": null, + "blaming": null, + "blame's": null, + "blamers": null, + "blamelessness": [["S", "M"]], + "blamelessnesses": null, + "blamelessness's": null, + "blameless": [["Y", "P"]], + "blamelessly": null, + "blamer's": null, + "blameworthiness": [["S", "M"]], + "blameworthinesses": null, + "blameworthiness's": null, + "blameworthy": [["P"]], + "Blanca": [["M"]], + "Blanca's": null, + "Blancha": [["M"]], + "Blancha's": null, + "Blanchard": [["M"]], + "Blanchard's": null, + "blanch": [["D", "R", "S", "G"]], + "blanched": null, + "blancher": [["M"]], + "blanches": null, + "blanching": null, + "Blanche": [["M"]], + "Blanche's": null, + "blancher's": null, + "Blanch": [["M"]], + "Blanch's": null, + "blanc": [["M"]], + "blanc's": null, + "blancmange": [["S", "M"]], + "blancmanges": null, + "blancmange's": null, + "blandishment": [["M", "S"]], + "blandishment's": null, + "blandishments": null, + "blandish": [["S", "D", "G", "L"]], + "blandishes": null, + "blandished": null, + "blandishing": null, + "blandness": [["M", "S"]], + "blandness's": null, + "blandnesses": null, + "bland": [["P", "Y", "R", "T"]], + "blandly": null, + "blander": null, + "blandest": null, + "Blane": [["M"]], + "Blane's": null, + "Blankenship": [["M"]], + "Blankenship's": null, + "blanketing": [["M"]], + "blanketing's": null, + "blanket": [["S", "D", "R", "M", "Z", "G"]], + "blankets": null, + "blanketed": null, + "blanketer": null, + "blanket's": null, + "blanketers": null, + "blankness": [["M", "S"]], + "blankness's": null, + "blanknesses": null, + "blank": [["S", "P", "G", "T", "Y", "R", "D"]], + "blanks": null, + "blanking": null, + "blankest": null, + "blankly": null, + "blanker": null, + "blanked": null, + "Blanton": [["M"]], + "Blanton's": null, + "Blantyre": [["M"]], + "Blantyre's": null, + "blare": [["D", "S", "G"]], + "blared": null, + "blares": null, + "blaring": null, + "blarney": [["D", "M", "G", "S"]], + "blarneyed": null, + "blarney's": null, + "blarneying": null, + "blarneys": null, + "blas�": null, + "blasphemer": [["M"]], + "blasphemer's": null, + "blaspheme": [["R", "S", "D", "Z", "G"]], + "blasphemes": null, + "blasphemed": null, + "blasphemers": null, + "blaspheming": null, + "blasphemousness": [["M"]], + "blasphemousness's": null, + "blasphemous": [["P", "Y"]], + "blasphemously": null, + "blasphemy": [["S", "M"]], + "blasphemies": null, + "blasphemy's": null, + "blaster": [["M"]], + "blaster's": null, + "blasting": [["M"]], + "blasting's": null, + "blastoff": [["S", "M"]], + "blastoffs": null, + "blastoff's": null, + "blast": [["S", "M", "R", "D", "G", "Z"]], + "blasts": null, + "blast's": null, + "blasted": null, + "blasters": null, + "blatancy": [["S", "M"]], + "blatancies": null, + "blatancy's": null, + "blatant": [["Y", "P"]], + "blatantly": null, + "blatantness": null, + "blather": [["D", "R", "G", "S"]], + "blathered": null, + "blatherer": null, + "blathering": null, + "blathers": null, + "blatting": null, + "Blatz": [["M"]], + "Blatz's": null, + "Blavatsky": [["M"]], + "Blavatsky's": null, + "Blayne": [["M"]], + "Blayne's": null, + "blaze": [["D", "S", "R", "G", "M", "Z"]], + "blazed": null, + "blazes": null, + "blazer": [["M"]], + "blazing": [["Y"]], + "blaze's": null, + "blazers": null, + "blazer's": null, + "blazingly": null, + "blazoner": [["M"]], + "blazoner's": null, + "blazon": [["S", "G", "D", "R"]], + "blazons": null, + "blazoning": null, + "blazoned": null, + "bl": [["D"]], + "bled": null, + "bldg": null, + "bleach": [["D", "R", "S", "Z", "G"]], + "bleached": [["U"]], + "bleacher": [["M"]], + "bleaches": null, + "bleachers": null, + "bleaching": null, + "unbleached": null, + "bleacher's": null, + "bleakness": [["M", "S"]], + "bleakness's": null, + "bleaknesses": null, + "bleak": [["T", "P", "Y", "R", "S"]], + "bleakest": null, + "bleakly": null, + "bleaker": null, + "bleaks": null, + "blear": [["G", "D", "S"]], + "blearing": null, + "bleared": null, + "blears": null, + "blearily": null, + "bleariness": [["S", "M"]], + "blearinesses": null, + "bleariness's": null, + "bleary": [["P", "R", "T"]], + "blearier": null, + "bleariest": null, + "bleater": [["M"]], + "bleater's": null, + "bleat": [["R", "D", "G", "S"]], + "bleated": null, + "bleating": null, + "bleats": null, + "bleeder": [["M"]], + "bleeder's": null, + "bleed": [["Z", "R", "J", "S", "G"]], + "bleeders": null, + "bleedings": null, + "bleeds": null, + "bleeding": null, + "Bleeker": [["M"]], + "Bleeker's": null, + "bleep": [["G", "M", "R", "D", "Z", "S"]], + "bleeping": null, + "bleep's": null, + "bleeper": null, + "bleeped": null, + "bleepers": null, + "bleeps": null, + "blemish": [["D", "S", "M", "G"]], + "blemished": [["U"]], + "blemishes": null, + "blemish's": null, + "blemishing": null, + "unblemished": null, + "blench": [["D", "S", "G"]], + "blenched": null, + "blenches": null, + "blenching": null, + "blender": [["M"]], + "blender's": null, + "blend": [["G", "Z", "R", "D", "S"]], + "blending": null, + "blenders": null, + "blended": null, + "blends": null, + "Blenheim": [["M"]], + "Blenheim's": null, + "blessedness": [["M", "S"]], + "blessedness's": null, + "blessednesses": null, + "blessed": [["P", "R", "Y", "T"]], + "blesseder": null, + "blessedly": null, + "blessedest": null, + "blessing": [["M"]], + "blessing's": null, + "bless": [["J", "G", "S", "D"]], + "blessings": null, + "blesses": null, + "Blevins": [["M"]], + "Blevins's": null, + "blew": null, + "Bligh": [["M"]], + "Bligh's": null, + "blighter": [["M"]], + "blighter's": null, + "blight": [["G", "S", "M", "D", "R"]], + "blighting": null, + "blights": null, + "blight's": null, + "blighted": null, + "blimey": [["S"]], + "blimeys": null, + "blimp": [["M", "S"]], + "blimp's": null, + "blimps": null, + "blinded": [["U"]], + "unblinded": null, + "blinder": [["M"]], + "blinder's": null, + "blindfold": [["S", "D", "G"]], + "blindfolds": null, + "blindfolded": null, + "blindfolding": null, + "blinding": [["M", "Y"]], + "blinding's": null, + "blindingly": null, + "blind": [["J", "G", "T", "Z", "P", "Y", "R", "D", "S"]], + "blindings": null, + "blindest": null, + "blinders": null, + "blindness": [["M", "S"]], + "blindly": null, + "blinds": null, + "blindness's": null, + "blindnesses": null, + "blindside": [["S", "D", "G"]], + "blindsides": null, + "blindsided": null, + "blindsiding": null, + "blinker": [["M", "D", "G"]], + "blinker's": null, + "blinkered": null, + "blinkering": null, + "blinking": [["U"]], + "unblinking": [["Y"]], + "blink": [["R", "D", "G", "S", "Z"]], + "blinked": null, + "blinks": [["M"]], + "blinkers": null, + "blinks's": null, + "Blinnie": [["M"]], + "Blinnie's": null, + "Blinni": [["M"]], + "Blinni's": null, + "Blinny": [["M"]], + "Blinny's": null, + "blintze": [["M"]], + "blintze's": null, + "blintz": [["S", "M"]], + "blintzes": null, + "blintz's": null, + "blip": [["M", "S"]], + "blip's": null, + "blips": null, + "blipped": null, + "blipping": null, + "Blisse": [["M"]], + "Blisse's": null, + "blissfulness": [["M", "S"]], + "blissfulness's": null, + "blissfulnesses": null, + "blissful": [["P", "Y"]], + "blissfully": null, + "Bliss": [["M"]], + "Bliss's": null, + "bliss": [["S", "D", "M", "G"]], + "blisses": null, + "blissed": null, + "bliss's": null, + "blissing": null, + "blistering": [["Y"]], + "blisteringly": null, + "blister": [["S", "M", "D", "G"]], + "blisters": null, + "blister's": null, + "blistered": null, + "blistery": null, + "Blithe": [["M"]], + "Blithe's": null, + "blitheness": [["S", "M"]], + "blithenesses": null, + "blitheness's": null, + "blither": [["G"]], + "blithering": null, + "blithesome": null, + "blithe": [["T", "Y", "P", "R"]], + "blithest": null, + "blithely": null, + "blitz": [["G", "S", "D", "M"]], + "blitzing": null, + "blitzes": null, + "blitzed": null, + "blitz's": null, + "blitzkrieg": [["S", "M"]], + "blitzkriegs": null, + "blitzkrieg's": null, + "blizzard": [["M", "S"]], + "blizzard's": null, + "blizzards": null, + "bloater": [["M"]], + "bloater's": null, + "bloat": [["S", "R", "D", "G", "Z"]], + "bloats": null, + "bloated": null, + "bloating": null, + "bloaters": null, + "blobbed": null, + "blobbing": null, + "blob": [["M", "S"]], + "blob's": null, + "blobs": null, + "Bloch": [["M"]], + "Bloch's": null, + "blockader": [["M"]], + "blockader's": null, + "blockade": [["Z", "M", "G", "R", "S", "D"]], + "blockaders": null, + "blockade's": null, + "blockading": null, + "blockades": null, + "blockaded": null, + "blockage": [["M", "S"]], + "blockage's": null, + "blockages": null, + "blockbuster": [["S", "M"]], + "blockbusters": null, + "blockbuster's": null, + "blockbusting": [["M", "S"]], + "blockbusting's": null, + "blockbustings": null, + "blocker": [["M", "S"]], + "blocker's": null, + "blockers": null, + "blockhead": [["M", "S"]], + "blockhead's": null, + "blockheads": null, + "blockhouse": [["S", "M"]], + "blockhouses": null, + "blockhouse's": null, + "block's": null, + "block": [["U", "S", "D", "G"]], + "unblock": null, + "unblocks": null, + "unblocked": null, + "unblocking": null, + "blocks": null, + "blocked": null, + "blocking": null, + "blocky": [["R"]], + "blockier": null, + "bloc": [["M", "S"]], + "bloc's": null, + "blocs": null, + "Bloemfontein": [["M"]], + "Bloemfontein's": null, + "bloke": [["S", "M"]], + "blokes": null, + "bloke's": null, + "Blomberg": [["M"]], + "Blomberg's": null, + "Blomquist": [["M"]], + "Blomquist's": null, + "Blondelle": [["M"]], + "Blondelle's": null, + "Blondell": [["M"]], + "Blondell's": null, + "blonde's": null, + "Blondie": [["M"]], + "Blondie's": null, + "blondish": null, + "blondness": [["M", "S"]], + "blondness's": null, + "blondnesses": null, + "blond": [["S", "P", "M", "R", "T"]], + "blonds": null, + "blond's": null, + "blonder": null, + "blondest": null, + "Blondy": [["M"]], + "Blondy's": null, + "bloodbath": null, + "bloodbaths": null, + "bloodcurdling": null, + "bloodhound": [["S", "M"]], + "bloodhounds": null, + "bloodhound's": null, + "bloodied": [["U"]], + "unbloodied": null, + "bloodiness": [["M", "S"]], + "bloodiness's": null, + "bloodinesses": null, + "bloodlessness": [["S", "M"]], + "bloodlessnesses": null, + "bloodlessness's": null, + "bloodless": [["P", "Y"]], + "bloodlessly": null, + "bloodletting": [["M", "S"]], + "bloodletting's": null, + "bloodlettings": null, + "bloodline": [["S", "M"]], + "bloodlines": null, + "bloodline's": null, + "bloodmobile": [["M", "S"]], + "bloodmobile's": null, + "bloodmobiles": null, + "bloodroot": [["M"]], + "bloodroot's": null, + "bloodshed": [["S", "M"]], + "bloodsheds": null, + "bloodshed's": null, + "bloodshot": null, + "blood": [["S", "M", "D", "G"]], + "bloods": null, + "blood's": null, + "blooded": null, + "blooding": null, + "bloodsport": [["S"]], + "bloodsports": null, + "bloodstain": [["M", "D", "S"]], + "bloodstain's": null, + "bloodstained": null, + "bloodstains": null, + "bloodstock": [["S", "M"]], + "bloodstocks": null, + "bloodstock's": null, + "bloodstone": [["M"]], + "bloodstone's": null, + "bloodstream": [["S", "M"]], + "bloodstreams": null, + "bloodstream's": null, + "bloodsucker": [["S", "M"]], + "bloodsuckers": null, + "bloodsucker's": null, + "bloodsucking": [["S"]], + "bloodsuckings": null, + "bloodthirstily": null, + "bloodthirstiness": [["M", "S"]], + "bloodthirstiness's": null, + "bloodthirstinesses": null, + "bloodthirsty": [["R", "T", "P"]], + "bloodthirstier": null, + "bloodthirstiest": null, + "bloodworm": [["M"]], + "bloodworm's": null, + "bloodymindedness": null, + "bloody": [["T", "P", "G", "D", "R", "S"]], + "bloodiest": null, + "bloodying": null, + "bloodier": null, + "bloodies": null, + "bloomer": [["M"]], + "bloomer's": null, + "Bloomer": [["M"]], + "Bloomer's": null, + "Bloomfield": [["M"]], + "Bloomfield's": null, + "Bloomington": [["M"]], + "Bloomington's": null, + "Bloom": [["M", "R"]], + "Bloom's": null, + "bloom": [["S", "M", "R", "D", "G", "Z"]], + "blooms": null, + "bloom's": null, + "bloomed": null, + "blooming": null, + "bloomers": null, + "blooper": [["M"]], + "blooper's": null, + "bloop": [["G", "S", "Z", "R", "D"]], + "blooping": null, + "bloops": null, + "bloopers": null, + "blooped": null, + "blossom": [["D", "M", "G", "S"]], + "blossomed": null, + "blossom's": null, + "blossoming": null, + "blossoms": null, + "blossomy": null, + "blotch": [["G", "M", "D", "S"]], + "blotching": null, + "blotch's": null, + "blotched": null, + "blotches": null, + "blotchy": [["R", "T"]], + "blotchier": null, + "blotchiest": null, + "blot": [["M", "S"]], + "blot's": null, + "blots": null, + "blotted": null, + "blotter": [["M", "S"]], + "blotter's": null, + "blotters": null, + "blotting": null, + "blotto": null, + "blouse": [["G", "M", "S", "D"]], + "blousing": null, + "blouse's": null, + "blouses": null, + "bloused": null, + "blower": [["M"]], + "blower's": null, + "blowfish": [["M"]], + "blowfish's": null, + "blowfly": [["M", "S"]], + "blowfly's": null, + "blowflies": null, + "blowgun": [["S", "M"]], + "blowguns": null, + "blowgun's": null, + "blow": [["G", "Z", "R", "S"]], + "blowing": [["M"]], + "blowers": null, + "blows": null, + "blowing's": null, + "blown": [["U"]], + "unblown": null, + "blowout": [["M", "S"]], + "blowout's": null, + "blowouts": null, + "blowpipe": [["S", "M"]], + "blowpipes": null, + "blowpipe's": null, + "blowtorch": [["S", "M"]], + "blowtorches": null, + "blowtorch's": null, + "blowup": [["M", "S"]], + "blowup's": null, + "blowups": null, + "blowy": [["R", "S", "T"]], + "blowier": null, + "blowies": null, + "blowiest": null, + "blowzy": [["R", "T"]], + "blowzier": null, + "blowziest": null, + "BLT": null, + "blubber": [["G", "S", "D", "R"]], + "blubbering": null, + "blubbers": null, + "blubbered": null, + "blubberer": null, + "blubbery": null, + "Blucher": [["M"]], + "Blucher's": null, + "bludgeon": [["G", "S", "M", "D"]], + "bludgeoning": null, + "bludgeons": null, + "bludgeon's": null, + "bludgeoned": null, + "blueback": null, + "Bluebeard": [["M"]], + "Bluebeard's": null, + "bluebell": [["M", "S"]], + "bluebell's": null, + "bluebells": null, + "blueberry": [["S", "M"]], + "blueberries": null, + "blueberry's": null, + "bluebill": [["M"]], + "bluebill's": null, + "bluebird": [["M", "S"]], + "bluebird's": null, + "bluebirds": null, + "bluebonnet": [["S", "M"]], + "bluebonnets": null, + "bluebonnet's": null, + "bluebook": [["M"]], + "bluebook's": null, + "bluebottle": [["M", "S"]], + "bluebottle's": null, + "bluebottles": null, + "bluebush": null, + "bluefish": [["S", "M"]], + "bluefishes": null, + "bluefish's": null, + "bluegill": [["S", "M"]], + "bluegills": null, + "bluegill's": null, + "bluegrass": [["M", "S"]], + "bluegrass's": null, + "bluegrasses": null, + "blueing's": null, + "blueish": null, + "bluejacket": [["M", "S"]], + "bluejacket's": null, + "bluejackets": null, + "bluejeans": null, + "blue": [["J", "M", "Y", "T", "G", "D", "R", "S", "P"]], + "bluings": null, + "blue's": null, + "bluely": null, + "bluest": [["M"]], + "bluing": [["M"]], + "blued": null, + "bluer": [["M"]], + "blues": null, + "blueness": [["M", "S"]], + "blueness's": null, + "bluenesses": null, + "bluenose": [["M", "S"]], + "bluenose's": null, + "bluenoses": null, + "bluepoint": [["S", "M"]], + "bluepoints": null, + "bluepoint's": null, + "blueprint": [["G", "D", "M", "S"]], + "blueprinting": null, + "blueprinted": null, + "blueprint's": null, + "blueprints": null, + "bluer's": null, + "bluest's": null, + "bluestocking": [["S", "M"]], + "bluestockings": null, + "bluestocking's": null, + "bluesy": [["T", "R"]], + "bluesiest": null, + "bluesier": null, + "bluet": [["M", "S"]], + "bluet's": null, + "bluets": null, + "bluffer": [["M"]], + "bluffer's": null, + "bluffness": [["M", "S"]], + "bluffness's": null, + "bluffnesses": null, + "bluff": [["S", "P", "G", "T", "Z", "Y", "R", "D"]], + "bluffs": null, + "bluffing": null, + "bluffest": null, + "bluffers": null, + "bluffly": null, + "bluffed": null, + "bluing's": null, + "bluishness": [["M"]], + "bluishness's": null, + "bluish": [["P"]], + "Blumenthal": [["M"]], + "Blumenthal's": null, + "Blum": [["M"]], + "Blum's": null, + "blunderbuss": [["M", "S"]], + "blunderbuss's": null, + "blunderbusses": null, + "blunderer": [["M"]], + "blunderer's": null, + "blunder": [["G", "S", "M", "D", "R", "J", "Z"]], + "blundering": [["Y"]], + "blunders": null, + "blunder's": null, + "blundered": null, + "blunderings": null, + "blunderers": null, + "blunderingly": null, + "bluntness": [["M", "S"]], + "bluntness's": null, + "bluntnesses": null, + "blunt": [["P", "S", "G", "T", "Y", "R", "D"]], + "blunts": null, + "blunting": null, + "bluntest": null, + "bluntly": null, + "blunter": null, + "blunted": null, + "blurb": [["G", "S", "D", "M"]], + "blurbing": null, + "blurbs": null, + "blurbed": null, + "blurb's": null, + "blur": [["M", "S"]], + "blur's": null, + "blurs": null, + "blurred": [["Y"]], + "blurredly": null, + "blurriness": [["S"]], + "blurrinesses": null, + "blurring": [["Y"]], + "blurringly": null, + "blurry": [["R", "P", "T"]], + "blurrier": null, + "blurriest": null, + "blurt": [["G", "S", "R", "D"]], + "blurting": null, + "blurts": null, + "blurter": null, + "blurted": null, + "blusher": [["M"]], + "blusher's": null, + "blushing": [["U", "Y"]], + "unblushing": null, + "unblushingly": null, + "blushingly": null, + "blush": [["R", "S", "D", "G", "Z"]], + "blushes": null, + "blushed": null, + "blushers": null, + "blusterer": [["M"]], + "blusterer's": null, + "blustering": [["Y"]], + "blusteringly": null, + "blusterous": null, + "bluster": [["S", "D", "R", "Z", "G"]], + "blusters": null, + "blustered": null, + "blusterers": null, + "blustery": null, + "blvd": null, + "Blvd": null, + "Blythe": [["M"]], + "Blythe's": null, + "BM": null, + "BMW": [["M"]], + "BMW's": null, + "BO": null, + "boarded": null, + "boarder": [["S", "M"]], + "boarders": null, + "boarder's": null, + "boardgames": null, + "boardinghouse": [["S", "M"]], + "boardinghouses": null, + "boardinghouse's": null, + "boarding": [["S", "M"]], + "boardings": null, + "boarding's": null, + "board": [["I", "S"]], + "inboard": null, + "inboards": null, + "boards": null, + "boardroom": [["M", "S"]], + "boardroom's": null, + "boardrooms": null, + "board's": null, + "boardwalk": [["S", "M"]], + "boardwalks": null, + "boardwalk's": null, + "boar": [["M", "S"]], + "boar's": null, + "boars": null, + "boa": [["S", "M"]], + "boas": null, + "boa's": null, + "boaster": [["M"]], + "boaster's": null, + "boastfulness": [["M", "S"]], + "boastfulness's": null, + "boastfulnesses": null, + "boastful": [["Y", "P"]], + "boastfully": null, + "boast": [["S", "J", "R", "D", "G", "Z"]], + "boasts": null, + "boastings": null, + "boasted": null, + "boasting": null, + "boasters": null, + "boatclubs": null, + "boater": [["M"]], + "boater's": null, + "boathouse": [["S", "M"]], + "boathouses": null, + "boathouse's": null, + "boating": [["M"]], + "boating's": null, + "boatload": [["S", "M"]], + "boatloads": null, + "boatload's": null, + "boatman": [["M"]], + "boatman's": null, + "boat": [["M", "D", "R", "G", "Z", "J", "S"]], + "boat's": null, + "boated": null, + "boaters": null, + "boatings": null, + "boats": null, + "boatmen": null, + "boatswain": [["S", "M"]], + "boatswains": null, + "boatswain's": null, + "boatyard": [["S", "M"]], + "boatyards": null, + "boatyard's": null, + "bobbed": null, + "Bobbee": [["M"]], + "Bobbee's": null, + "Bobbe": [["M"]], + "Bobbe's": null, + "Bobbette": [["M"]], + "Bobbette's": null, + "Bobbie": [["M"]], + "Bobbie's": null, + "Bobbi": [["M"]], + "Bobbi's": null, + "bobbing": [["M"]], + "bobbing's": null, + "bobbin": [["M", "S"]], + "bobbin's": null, + "bobbins": null, + "Bobbitt": [["M"]], + "Bobbitt's": null, + "bobble": [["S", "D", "G", "M"]], + "bobbles": null, + "bobbled": null, + "bobbling": null, + "bobble's": null, + "Bobbsey": [["M"]], + "Bobbsey's": null, + "Bobbye": [["M"]], + "Bobbye's": null, + "Bobby": [["M"]], + "Bobby's": null, + "bobby": [["S", "M"]], + "bobbies": null, + "bobby's": null, + "bobbysoxer's": null, + "bobcat": [["M", "S"]], + "bobcat's": null, + "bobcats": null, + "Bobette": [["M"]], + "Bobette's": null, + "Bobina": [["M"]], + "Bobina's": null, + "Bobine": [["M"]], + "Bobine's": null, + "Bobinette": [["M"]], + "Bobinette's": null, + "Bob": [["M"]], + "Bob's": null, + "bobolink": [["S", "M"]], + "bobolinks": null, + "bobolink's": null, + "Bobrow": [["M"]], + "Bobrow's": null, + "bobsledded": null, + "bobsledder": [["M", "S"]], + "bobsledder's": null, + "bobsledders": null, + "bobsledding": [["M"]], + "bobsledding's": null, + "bobsled": [["M", "S"]], + "bobsled's": null, + "bobsleds": null, + "bobsleigh": [["M"]], + "bobsleigh's": null, + "bobsleighs": null, + "bobs": [["M"]], + "bobs's": null, + "bob": [["S", "M"]], + "bob's": null, + "bobtail": [["S", "G", "D", "M"]], + "bobtails": null, + "bobtailing": null, + "bobtailed": null, + "bobtail's": null, + "bobwhite": [["S", "M"]], + "bobwhites": null, + "bobwhite's": null, + "Boca": [["M"]], + "Boca's": null, + "Boccaccio": [["M"]], + "Boccaccio's": null, + "boccie": [["S", "M"]], + "boccies": null, + "boccie's": null, + "bock": [["G", "D", "S"]], + "bocking": null, + "bocked": null, + "bocks": null, + "bockwurst": null, + "bodega": [["M", "S"]], + "bodega's": null, + "bodegas": null, + "Bodenheim": [["M"]], + "Bodenheim's": null, + "bode": [["S"]], + "bodes": null, + "Bodhidharma": [["M"]], + "Bodhidharma's": null, + "bodhisattva": null, + "Bodhisattva": [["M"]], + "Bodhisattva's": null, + "bodice": [["S", "M"]], + "bodices": null, + "bodice's": null, + "bodied": [["M"]], + "bodied's": null, + "bodiless": null, + "bodily": null, + "boding": [["M"]], + "boding's": null, + "bodkin": [["S", "M"]], + "bodkins": null, + "bodkin's": null, + "bod": [["S", "G", "M", "D"]], + "bods": null, + "bod's": null, + "boded": null, + "bodybuilder": [["S", "M"]], + "bodybuilders": null, + "bodybuilder's": null, + "bodybuilding": [["S"]], + "bodybuildings": null, + "body": [["D", "S", "M", "G"]], + "bodies": null, + "body's": null, + "bodying": [["M"]], + "bodyguard": [["M", "S"]], + "bodyguard's": null, + "bodyguards": null, + "bodying's": null, + "bodysuit": [["S"]], + "bodysuits": null, + "bodyweight": null, + "bodywork": [["S", "M"]], + "bodyworks": null, + "bodywork's": null, + "Boeing": [["M"]], + "Boeing's": null, + "Boeotia": [["M"]], + "Boeotia's": null, + "Boeotian": null, + "Boer": [["M"]], + "Boer's": null, + "Bogartian": [["M"]], + "Bogartian's": null, + "Bogart": [["M"]], + "Bogart's": null, + "Bogey": [["M"]], + "Bogey's": null, + "bogeyman": [["M"]], + "bogeyman's": null, + "bogeymen": null, + "bogey": [["S", "G", "M", "D"]], + "bogeys": null, + "bogeying": null, + "bogey's": null, + "bogeyed": null, + "bogged": null, + "bogging": null, + "boggle": [["S", "D", "G"]], + "boggles": null, + "boggled": null, + "boggling": [["Y"]], + "bogglingly": null, + "boggy": [["R", "T"]], + "boggier": null, + "boggiest": null, + "bogie's": null, + "bog": [["M", "S"]], + "bog's": null, + "bogs": null, + "Bogot�": [["M"]], + "Bogot�'s": null, + "bogus": null, + "bogyman": null, + "bogymen": null, + "bogy's": null, + "Boheme": [["M"]], + "Boheme's": null, + "bohemianism": [["S"]], + "bohemianisms": null, + "bohemian": [["S"]], + "bohemians": null, + "Bohemian": [["S", "M"]], + "Bohemians": null, + "Bohemian's": null, + "Bohemia": [["S", "M"]], + "Bohemias": null, + "Bohemia's": null, + "Bohr": [["M"]], + "Bohr's": null, + "Boigie": [["M"]], + "Boigie's": null, + "boiled": [["A", "U"]], + "reboiled": null, + "unboiled": null, + "boiler": [["M"]], + "boiler's": null, + "boilermaker": [["M", "S"]], + "boilermaker's": null, + "boilermakers": null, + "boilerplate": [["S", "M"]], + "boilerplates": null, + "boilerplate's": null, + "boil": [["J", "S", "G", "Z", "D", "R"]], + "boilings": null, + "boils": [["A"]], + "boiling": null, + "boilers": null, + "reboils": null, + "Boise": [["M"]], + "Boise's": null, + "Bois": [["M"]], + "Bois's": null, + "boisterousness": [["M", "S"]], + "boisterousness's": null, + "boisterousnesses": null, + "boisterous": [["Y", "P"]], + "boisterously": null, + "bola": [["S", "M"]], + "bolas": null, + "bola's": null, + "boldface": [["S", "D", "M", "G"]], + "boldfaces": null, + "boldfaced": null, + "boldface's": null, + "boldfacing": null, + "boldness": [["M", "S"]], + "boldness's": null, + "boldnesses": null, + "bold": [["Y", "R", "P", "S", "T"]], + "boldly": null, + "bolder": null, + "bolds": null, + "boldest": null, + "bole": [["M", "S"]], + "bole's": null, + "boles": null, + "bolero": [["M", "S"]], + "bolero's": null, + "boleros": null, + "Boleyn": [["M"]], + "Boleyn's": null, + "bolivares": null, + "Bolivar": [["M"]], + "Bolivar's": null, + "bolivar": [["M", "S"]], + "bolivar's": null, + "bolivars": null, + "Bolivia": [["M"]], + "Bolivia's": null, + "Bolivian": [["S"]], + "Bolivians": null, + "bollard": [["S", "M"]], + "bollards": null, + "bollard's": null, + "bollix": [["G", "S", "D"]], + "bollixing": null, + "bollixes": null, + "bollixed": null, + "boll": [["M", "D", "S", "G"]], + "boll's": null, + "bolled": null, + "bolls": null, + "bolling": null, + "Bologna": [["M"]], + "Bologna's": null, + "bologna": [["M", "S"]], + "bologna's": null, + "bolognas": null, + "bolometer": [["M", "S"]], + "bolometer's": null, + "bolometers": null, + "bolo": [["M", "S"]], + "bolo's": null, + "bolos": null, + "boloney's": null, + "Bolshevik": [["M", "S"]], + "Bolshevik's": null, + "Bolsheviks": null, + "Bolshevism": [["M", "S"]], + "Bolshevism's": null, + "Bolshevisms": null, + "Bolshevistic": [["M"]], + "Bolshevistic's": null, + "Bolshevist": [["M", "S"]], + "Bolshevist's": null, + "Bolshevists": null, + "Bolshoi": [["M"]], + "Bolshoi's": null, + "bolsterer": [["M"]], + "bolsterer's": null, + "bolster": [["S", "R", "D", "G"]], + "bolsters": null, + "bolstered": null, + "bolstering": null, + "bolted": [["U"]], + "unbolted": null, + "bolter": [["M"]], + "bolter's": null, + "bolt": [["M", "D", "R", "G", "S"]], + "bolt's": null, + "bolting": null, + "bolts": [["U"]], + "Bolton": [["M"]], + "Bolton's": null, + "unbolts": null, + "Boltzmann": [["M"]], + "Boltzmann's": null, + "bolus": [["S", "M"]], + "boluses": null, + "bolus's": null, + "bombardier": [["M", "S"]], + "bombardier's": null, + "bombardiers": null, + "bombard": [["L", "D", "S", "G"]], + "bombardment": [["S", "M"]], + "bombarded": null, + "bombards": null, + "bombarding": null, + "bombardments": null, + "bombardment's": null, + "bombastic": null, + "bombastically": null, + "bombast": [["R", "M", "S"]], + "bombaster": null, + "bombast's": null, + "bombasts": null, + "Bombay": [["M"]], + "Bombay's": null, + "bomber": [["M"]], + "bomber's": null, + "bombproof": null, + "bomb": [["S", "G", "Z", "D", "R", "J"]], + "bombs": null, + "bombing": null, + "bombers": null, + "bombed": null, + "bombings": null, + "bombshell": [["S", "M"]], + "bombshells": null, + "bombshell's": null, + "Bo": [["M", "R", "Z"]], + "Bo's": null, + "Boers": null, + "bona": null, + "bonanza": [["M", "S"]], + "bonanza's": null, + "bonanzas": null, + "Bonaparte": [["M"]], + "Bonaparte's": null, + "Bonaventure": [["M"]], + "Bonaventure's": null, + "bonbon": [["S", "M"]], + "bonbons": null, + "bonbon's": null, + "bondage": [["S", "M"]], + "bondages": null, + "bondage's": null, + "bonder": [["M"]], + "bonder's": null, + "bondholder": [["S", "M"]], + "bondholders": null, + "bondholder's": null, + "Bondie": [["M"]], + "Bondie's": null, + "bond": [["J", "M", "D", "R", "S", "G", "Z"]], + "bondings": null, + "bond's": null, + "bonded": null, + "bonds": [["A"]], + "bonding": null, + "bonders": null, + "Bond": [["M"]], + "Bond's": null, + "bondman": [["M"]], + "bondman's": null, + "bondmen": null, + "Bondon": [["M"]], + "Bondon's": null, + "rebonds": null, + "bondsman": [["M"]], + "bondsman's": null, + "bondsmen": null, + "bondwoman": [["M"]], + "bondwoman's": null, + "bondwomen": null, + "Bondy": [["M"]], + "Bondy's": null, + "boned": [["U"]], + "unboned": null, + "bonehead": [["S", "D", "M"]], + "boneheads": null, + "boneheaded": null, + "bonehead's": null, + "boneless": null, + "Bone": [["M"]], + "Bone's": null, + "bone": [["M", "Z", "D", "R", "S", "G"]], + "bone's": null, + "boners": null, + "boner": [["M"]], + "bones": null, + "boning": null, + "boner's": null, + "bonfire": [["M", "S"]], + "bonfire's": null, + "bonfires": null, + "bong": [["G", "D", "M", "S"]], + "bonging": null, + "bonged": null, + "bong's": null, + "bongs": null, + "bongo": [["M", "S"]], + "bongo's": null, + "bongos": null, + "Bonham": [["M"]], + "Bonham's": null, + "bonhomie": [["M", "S"]], + "bonhomie's": null, + "bonhomies": null, + "Boniface": [["M"]], + "Boniface's": null, + "boniness": [["M", "S"]], + "boniness's": null, + "boninesses": null, + "Bonita": [["M"]], + "Bonita's": null, + "bonito": [["M", "S"]], + "bonito's": null, + "bonitos": null, + "bonjour": null, + "bonkers": null, + "Bonnee": [["M"]], + "Bonnee's": null, + "Bonner": [["M"]], + "Bonner's": null, + "bonneted": [["U"]], + "unbonneted": null, + "bonnet": [["S", "G", "M", "D"]], + "bonnets": null, + "bonneting": null, + "bonnet's": null, + "Bonneville": [["M"]], + "Bonneville's": null, + "Bonnibelle": [["M"]], + "Bonnibelle's": null, + "bonnie": null, + "Bonnie": [["M"]], + "Bonnie's": null, + "Bonni": [["M"]], + "Bonni's": null, + "Bonn": [["R", "M"]], + "Bonn's": null, + "Bonny": [["M"]], + "Bonny's": null, + "bonny": [["R", "T"]], + "bonnier": null, + "bonniest": null, + "bonsai": [["S", "M"]], + "bonsais": null, + "bonsai's": null, + "Bontempo": [["M"]], + "Bontempo's": null, + "bonus": [["S", "M"]], + "bonuses": null, + "bonus's": null, + "bony": [["R", "T", "P"]], + "bonier": null, + "boniest": null, + "bonzes": null, + "boob": [["D", "M", "S", "G"]], + "boobed": null, + "boob's": null, + "boobs": null, + "boobing": null, + "booby": [["S", "M"]], + "boobies": null, + "booby's": null, + "boodle": [["G", "M", "S", "D"]], + "boodling": null, + "boodle's": null, + "boodles": null, + "boodled": null, + "boogeyman's": null, + "boogieing": null, + "boogie": [["S", "D"]], + "boogies": null, + "boogied": null, + "boo": [["G", "S", "D", "H"]], + "booing": null, + "boos": null, + "booed": null, + "booth": [["M"]], + "boohoo": [["G", "D", "S"]], + "boohooing": null, + "boohooed": null, + "boohoos": null, + "bookbinder": [["M"]], + "bookbinder's": null, + "bookbindery": [["S", "M"]], + "bookbinderies": null, + "bookbindery's": null, + "bookbinding": [["M"]], + "bookbinding's": null, + "bookbind": [["J", "R", "G", "Z"]], + "bookbindings": null, + "bookbinders": null, + "bookcase": [["M", "S"]], + "bookcase's": null, + "bookcases": null, + "booked": [["U"]], + "unbooked": null, + "bookend": [["S", "G", "D"]], + "bookends": null, + "bookending": null, + "bookended": null, + "Booker": [["M"]], + "Booker's": null, + "book": [["G", "Z", "D", "R", "M", "J", "S", "B"]], + "booking": [["M"]], + "bookers": null, + "booker": null, + "book's": null, + "bookings": null, + "books": null, + "bookable": null, + "bookie": [["S", "M"]], + "bookies": null, + "bookie's": null, + "booking's": null, + "bookishness": [["M"]], + "bookishness's": null, + "bookish": [["P", "Y"]], + "bookishly": null, + "bookkeeper": [["M"]], + "bookkeeper's": null, + "bookkeep": [["G", "Z", "J", "R"]], + "bookkeeping": [["M"]], + "bookkeepers": null, + "bookkeepings": null, + "bookkeeping's": null, + "booklet": [["M", "S"]], + "booklet's": null, + "booklets": null, + "bookmaker": [["M", "S"]], + "bookmaker's": null, + "bookmakers": null, + "bookmaking": [["M", "S"]], + "bookmaking's": null, + "bookmakings": null, + "bookmark": [["M", "D", "G", "S"]], + "bookmark's": null, + "bookmarked": null, + "bookmarking": null, + "bookmarks": null, + "bookmobile": [["M", "S"]], + "bookmobile's": null, + "bookmobiles": null, + "bookplate": [["S", "M"]], + "bookplates": null, + "bookplate's": null, + "bookseller": [["S", "M"]], + "booksellers": null, + "bookseller's": null, + "bookshelf": [["M"]], + "bookshelf's": null, + "bookshelves": null, + "bookshop": [["M", "S"]], + "bookshop's": null, + "bookshops": null, + "bookstall": [["M", "S"]], + "bookstall's": null, + "bookstalls": null, + "bookstore": [["S", "M"]], + "bookstores": null, + "bookstore's": null, + "bookwork": [["M"]], + "bookwork's": null, + "bookworm": [["M", "S"]], + "bookworm's": null, + "bookworms": null, + "Boolean": null, + "boolean": [["S"]], + "booleans": null, + "Boole": [["M"]], + "Boole's": null, + "boom": [["D", "R", "G", "J", "S"]], + "boomed": null, + "boomer": [["M"]], + "booming": null, + "boomings": null, + "booms": null, + "boomerang": [["M", "D", "S", "G"]], + "boomerang's": null, + "boomeranged": null, + "boomerangs": null, + "boomeranging": null, + "boomer's": null, + "boomtown": [["S"]], + "boomtowns": null, + "boondocks": null, + "boondoggle": [["D", "R", "S", "G", "Z"]], + "boondoggled": null, + "boondoggler": [["M"]], + "boondoggles": null, + "boondoggling": null, + "boondogglers": null, + "boondoggler's": null, + "Boone": [["M"]], + "Boone's": null, + "Boonie": [["M"]], + "Boonie's": null, + "boonies": null, + "boon": [["M", "S"]], + "boon's": null, + "boons": null, + "Boony": [["M"]], + "Boony's": null, + "boorishness": [["S", "M"]], + "boorishnesses": null, + "boorishness's": null, + "boorish": [["P", "Y"]], + "boorishly": null, + "boor": [["M", "S"]], + "boor's": null, + "boors": null, + "boosterism": null, + "booster": [["M"]], + "booster's": null, + "boost": [["S", "G", "Z", "M", "R", "D"]], + "boosts": null, + "boosting": null, + "boosters": null, + "boost's": null, + "boosted": null, + "boot": [["A", "G", "D", "S"]], + "reboot": [["Z", "R"]], + "rebooting": null, + "rebooted": null, + "reboots": null, + "booting": null, + "booted": null, + "boots": null, + "bootblack": [["M", "S"]], + "bootblack's": null, + "bootblacks": null, + "bootee": [["M", "S"]], + "bootee's": null, + "bootees": null, + "Boote": [["M"]], + "Boote's": null, + "Bo�tes": null, + "Boothe": [["M"]], + "Boothe's": null, + "booth's": null, + "Booth": [["M"]], + "Booth's": null, + "booths": null, + "bootie's": null, + "bootlaces": null, + "bootlegged": [["M"]], + "bootlegged's": null, + "bootlegger": [["S", "M"]], + "bootleggers": null, + "bootlegger's": null, + "bootlegging": [["M"]], + "bootlegging's": null, + "bootleg": [["S"]], + "bootlegs": null, + "Bootle": [["M"]], + "Bootle's": null, + "bootless": null, + "Boot": [["M"]], + "Boot's": null, + "bootprints": null, + "boot's": null, + "bootstrapped": null, + "bootstrapping": null, + "bootstrap": [["S", "M"]], + "bootstraps": null, + "bootstrap's": null, + "booty": [["S", "M"]], + "booties": null, + "booty's": null, + "booze": [["D", "S", "R", "G", "M", "Z"]], + "boozed": null, + "boozes": null, + "boozer": [["M"]], + "boozing": null, + "booze's": null, + "boozers": null, + "boozer's": null, + "boozy": [["T", "R"]], + "booziest": null, + "boozier": null, + "bopped": null, + "bopping": null, + "bop": [["S"]], + "bops": null, + "borate": [["M", "S", "D"]], + "borate's": null, + "borates": null, + "borated": null, + "borax": [["M", "S"]], + "borax's": null, + "boraxes": null, + "Bordeaux": [["M"]], + "Bordeaux's": null, + "bordello": [["M", "S"]], + "bordello's": null, + "bordellos": null, + "Borden": [["M"]], + "Borden's": null, + "borderer": [["M"]], + "borderer's": null, + "border": [["J", "R", "D", "M", "G", "S"]], + "borderings": null, + "bordered": null, + "border's": null, + "bordering": null, + "borders": null, + "borderland": [["S", "M"]], + "borderlands": null, + "borderland's": null, + "borderline": [["M", "S"]], + "borderline's": null, + "borderlines": null, + "Bordie": [["M"]], + "Bordie's": null, + "Bord": [["M", "N"]], + "Bord's": null, + "Bordon": [["M"]], + "Bordon's": null, + "Bordy": [["M"]], + "Bordy's": null, + "Borealis": [["M"]], + "Borealis's": null, + "Boreas": [["M"]], + "Boreas's": null, + "boredom": [["M", "S"]], + "boredom's": null, + "boredoms": null, + "boreholes": null, + "borer": [["M"]], + "borer's": null, + "bore": [["Z", "G", "J", "D", "R", "S"]], + "borers": null, + "boring": [["Y", "M", "P"]], + "borings": null, + "bored": null, + "bores": null, + "Borges": null, + "Borgia": [["M"]], + "Borgia's": null, + "Borg": [["M"]], + "Borg's": null, + "boric": null, + "boringly": null, + "boring's": null, + "boringness": null, + "Boris": null, + "Bork": [["M"]], + "Bork's": null, + "born": [["A", "I", "U"]], + "reborn": null, + "inborn": null, + "unborn": null, + "Borneo": [["M"]], + "Borneo's": null, + "borne": [["U"]], + "unborne": null, + "Born": [["M"]], + "Born's": null, + "Borodin": [["M"]], + "Borodin's": null, + "boron": [["S", "M"]], + "borons": null, + "boron's": null, + "borosilicate": [["M"]], + "borosilicate's": null, + "borough": [["M"]], + "borough's": null, + "boroughs": null, + "Borroughs": [["M"]], + "Borroughs's": null, + "borrower": [["M"]], + "borrower's": null, + "borrowing": [["M"]], + "borrowing's": null, + "borrow": [["J", "Z", "R", "D", "G", "B", "S"]], + "borrowings": null, + "borrowers": null, + "borrowed": null, + "borrowable": null, + "borrows": null, + "borscht": [["S", "M"]], + "borschts": null, + "borscht's": null, + "borstal": [["M", "S"]], + "borstal's": null, + "borstals": null, + "Boru": [["M"]], + "Boru's": null, + "borzoi": [["M", "S"]], + "borzoi's": null, + "borzois": null, + "Bosch": [["M"]], + "Bosch's": null, + "Bose": [["M"]], + "Bose's": null, + "bosh": [["M", "S"]], + "bosh's": null, + "boshes": null, + "Bosnia": [["M"]], + "Bosnia's": null, + "Bosnian": [["S"]], + "Bosnians": null, + "bosom's": null, + "bosom": [["S", "G", "U", "D"]], + "bosoms": null, + "unbosoms": null, + "bosoming": null, + "unbosoming": null, + "unbosom": null, + "unbosomed": null, + "bosomed": null, + "bosomy": [["R", "T"]], + "bosomier": null, + "bosomiest": null, + "boson": [["S", "M"]], + "bosons": null, + "boson's": null, + "Bosporus": [["M"]], + "Bosporus's": null, + "boss": [["D", "S", "R", "M", "G"]], + "bossed": null, + "bosses": null, + "bosser": null, + "boss's": null, + "bossing": null, + "bossily": null, + "bossiness": [["M", "S"]], + "bossiness's": null, + "bossinesses": null, + "bossism": [["M", "S"]], + "bossism's": null, + "bossisms": null, + "bossy": [["P", "T", "S", "R"]], + "bossiest": null, + "bossies": null, + "bossier": null, + "Bostitch": [["M"]], + "Bostitch's": null, + "Bostonian": [["S", "M"]], + "Bostonians": null, + "Bostonian's": null, + "Boston": [["M", "S"]], + "Boston's": null, + "Bostons": null, + "bosun's": null, + "Boswell": [["M", "S"]], + "Boswell's": null, + "Boswells": null, + "botanical": [["S", "Y"]], + "botanicals": null, + "botanically": null, + "botanic": [["S"]], + "botanics": null, + "botanist": [["S", "M"]], + "botanists": null, + "botanist's": null, + "botany": [["S", "M"]], + "botanies": null, + "botany's": null, + "botcher": [["M"]], + "botcher's": null, + "botch": [["S", "R", "D", "G", "Z"]], + "botches": null, + "botched": null, + "botching": null, + "botchers": null, + "botfly": [["M"]], + "botfly's": null, + "bother": [["D", "G"]], + "bothered": null, + "bothering": null, + "bothersome": null, + "bothy": [["M"]], + "bothy's": null, + "both": [["Z", "R"]], + "bothers": null, + "bot": [["S"]], + "bots": null, + "Botswana": [["M"]], + "Botswana's": null, + "Botticelli": [["M"]], + "Botticelli's": null, + "bottle": [["G", "M", "Z", "S", "R", "D"]], + "bottling": null, + "bottle's": null, + "bottlers": null, + "bottles": null, + "bottler": [["M"]], + "bottled": null, + "bottleneck": [["G", "S", "D", "M"]], + "bottlenecking": null, + "bottlenecks": null, + "bottlenecked": null, + "bottleneck's": null, + "bottler's": null, + "bottomlessness": [["M"]], + "bottomlessness's": null, + "bottomless": [["Y", "P"]], + "bottomlessly": null, + "bottommost": null, + "bottom": [["S", "M", "R", "D", "G"]], + "bottoms": null, + "bottom's": null, + "bottomer": null, + "bottomed": null, + "bottoming": null, + "botulin": [["M"]], + "botulin's": null, + "botulinus": [["M"]], + "botulinus's": null, + "botulism": [["S", "M"]], + "botulisms": null, + "botulism's": null, + "Boucher": [["M"]], + "Boucher's": null, + "boudoir": [["M", "S"]], + "boudoir's": null, + "boudoirs": null, + "bouffant": [["S"]], + "bouffants": null, + "bougainvillea": [["S", "M"]], + "bougainvilleas": null, + "bougainvillea's": null, + "bough": [["M", "D"]], + "bough's": null, + "boughed": null, + "boughs": null, + "bought": [["N"]], + "boughten": null, + "bouillabaisse": [["M", "S"]], + "bouillabaisse's": null, + "bouillabaisses": null, + "bouillon": [["M", "S"]], + "bouillon's": null, + "bouillons": null, + "boulder": [["G", "M", "D", "S"]], + "bouldering": null, + "boulder's": null, + "bouldered": null, + "boulders": null, + "Boulder": [["M"]], + "Boulder's": null, + "boulevard": [["M", "S"]], + "boulevard's": null, + "boulevards": null, + "bouncer": [["M"]], + "bouncer's": null, + "bounce": [["S", "R", "D", "G", "Z"]], + "bounces": null, + "bounced": null, + "bouncing": [["Y"]], + "bouncers": null, + "bouncily": null, + "bouncingly": null, + "bouncy": [["T", "R", "P"]], + "bounciest": null, + "bouncier": null, + "bounciness": null, + "boundary": [["M", "S"]], + "boundary's": null, + "boundaries": null, + "bound": [["A", "U", "D", "I"]], + "rebound": [["G"]], + "rebounded": null, + "unbound": null, + "unbounded": null, + "bounded": [["U", "P"]], + "inbounded": null, + "inbound": [["G"]], + "boundedness": [["M", "U"]], + "boundedness's": null, + "unboundedness's": null, + "unboundedness": null, + "bounden": null, + "bounder": [["A", "M"]], + "rebounder": null, + "rebounder's": null, + "bounder's": null, + "bounders": null, + "bounding": null, + "boundlessness": [["S", "M"]], + "boundlessnesses": null, + "boundlessness's": null, + "boundless": [["Y", "P"]], + "boundlessly": null, + "bounds": [["I", "A"]], + "inbounds": null, + "rebounds": null, + "bounteousness": [["M", "S"]], + "bounteousness's": null, + "bounteousnesses": null, + "bounteous": [["P", "Y"]], + "bounteously": null, + "bountifulness": [["S", "M"]], + "bountifulnesses": null, + "bountifulness's": null, + "bountiful": [["P", "Y"]], + "bountifully": null, + "bounty": [["S", "D", "M"]], + "bounties": null, + "bountied": null, + "bounty's": null, + "bouquet": [["S", "M"]], + "bouquets": null, + "bouquet's": null, + "Bourbaki": [["M"]], + "Bourbaki's": null, + "bourbon": [["S", "M"]], + "bourbons": null, + "bourbon's": null, + "Bourbon": [["S", "M"]], + "Bourbons": null, + "Bourbon's": null, + "bourgeoisie": [["S", "M"]], + "bourgeoisies": null, + "bourgeoisie's": null, + "bourgeois": [["M"]], + "bourgeois's": null, + "Bourke": [["M"]], + "Bourke's": null, + "Bourne": [["M"]], + "Bourne's": null, + "Bournemouth": [["M"]], + "Bournemouth's": null, + "boutique": [["M", "S"]], + "boutique's": null, + "boutiques": null, + "bout": [["M", "S"]], + "bout's": null, + "bouts": null, + "boutonni�re": [["M", "S"]], + "boutonni�re's": null, + "boutonni�res": null, + "Bouvier": null, + "Bovary": [["M"]], + "Bovary's": null, + "bovine": [["Y", "S"]], + "bovinely": null, + "bovines": null, + "Bowditch": [["M"]], + "Bowditch's": null, + "bowdlerization": [["M", "S"]], + "bowdlerization's": null, + "bowdlerizations": null, + "bowdlerize": [["G", "R", "S", "D"]], + "bowdlerizing": null, + "bowdlerizer": null, + "bowdlerizes": null, + "bowdlerized": null, + "bowed": [["U"]], + "unbowed": null, + "bowel": [["G", "M", "D", "S"]], + "boweling": null, + "bowel's": null, + "boweled": null, + "bowels": null, + "Bowell": [["M"]], + "Bowell's": null, + "Bowen": [["M"]], + "Bowen's": null, + "bower": [["D", "M", "G"]], + "bowered": null, + "bower's": null, + "bowering": null, + "Bowers": null, + "Bowery": [["M"]], + "Bowery's": null, + "Bowes": null, + "bowie": null, + "Bowie": [["M"]], + "Bowie's": null, + "bowing": [["M"]], + "bowing's": null, + "bowlder's": null, + "bowlegged": null, + "bowleg": [["S", "M"]], + "bowlegs": null, + "bowleg's": null, + "bowler": [["M"]], + "bowler's": null, + "bowlful": [["S"]], + "bowlfuls": null, + "bowl": [["G", "Z", "S", "M", "D", "R"]], + "bowling": [["M"]], + "bowlers": null, + "bowls": null, + "bowl's": null, + "bowled": null, + "bowline": [["M", "S"]], + "bowline's": null, + "bowlines": null, + "bowling's": null, + "bowman": [["M"]], + "bowman's": null, + "Bowman": [["M"]], + "Bowman's": null, + "bowmen": null, + "bowser": [["M"]], + "bowser's": null, + "bowsprit": [["S", "M"]], + "bowsprits": null, + "bowsprit's": null, + "bows": [["R"]], + "bowstring": [["G", "S", "M", "D"]], + "bowstringing": null, + "bowstrings": null, + "bowstring's": null, + "bowstringed": null, + "bow": [["S", "Z", "G", "N", "D", "R"]], + "bowers": null, + "bowen": null, + "bowwow": [["D", "M", "G", "S"]], + "bowwowed": null, + "bowwow's": null, + "bowwowing": null, + "bowwows": null, + "boxcar": [["S", "M"]], + "boxcars": null, + "boxcar's": null, + "box": [["D", "R", "S", "J", "Z", "G", "M"]], + "boxed": null, + "boxer": [["M"]], + "boxes": null, + "boxings": null, + "boxers": null, + "boxing": [["M"]], + "box's": null, + "boxer's": null, + "boxful": [["M"]], + "boxful's": null, + "boxing's": null, + "boxlike": null, + "boxtops": null, + "boxwood": [["S", "M"]], + "boxwoods": null, + "boxwood's": null, + "boxy": [["T", "P", "R"]], + "boxiest": null, + "boxiness": null, + "boxier": null, + "Boyce": [["M"]], + "Boyce's": null, + "Boycey": [["M"]], + "Boycey's": null, + "Boycie": [["M"]], + "Boycie's": null, + "boycotter": [["M"]], + "boycotter's": null, + "boycott": [["R", "D", "G", "S"]], + "boycotted": null, + "boycotting": null, + "boycotts": null, + "Boyd": [["M"]], + "Boyd's": null, + "Boyer": [["M"]], + "Boyer's": null, + "boyfriend": [["M", "S"]], + "boyfriend's": null, + "boyfriends": null, + "boyhood": [["S", "M"]], + "boyhoods": null, + "boyhood's": null, + "boyishness": [["M", "S"]], + "boyishness's": null, + "boyishnesses": null, + "boyish": [["P", "Y"]], + "boyishly": null, + "Boyle": [["M"]], + "Boyle's": null, + "Boy": [["M", "R"]], + "Boy's": null, + "boy": [["M", "R", "S"]], + "boy's": null, + "boyer": null, + "boys": null, + "boyscout": null, + "boysenberry": [["S", "M"]], + "boysenberries": null, + "boysenberry's": null, + "bozo": [["S", "M"]], + "bozos": null, + "bozo's": null, + "bpi": null, + "bps": null, + "BR": null, + "brace": [["D", "S", "R", "J", "G", "M"]], + "braced": [["U"]], + "braces": null, + "bracer": [["M"]], + "bracings": null, + "bracing": null, + "brace's": null, + "unbraced": null, + "bracelet": [["M", "S"]], + "bracelet's": null, + "bracelets": null, + "bracer's": null, + "brachia": null, + "brachium": [["M"]], + "brachium's": null, + "bracken": [["S", "M"]], + "brackens": null, + "bracken's": null, + "bracketed": [["U"]], + "unbracketed": null, + "bracketing": [["M"]], + "bracketing's": null, + "bracket": [["S", "G", "M", "D"]], + "brackets": null, + "bracket's": null, + "brackishness": [["S", "M"]], + "brackishnesses": null, + "brackishness's": null, + "brackish": [["P"]], + "bract": [["S", "M"]], + "bracts": null, + "bract's": null, + "Bradan": [["M"]], + "Bradan's": null, + "bradawl": [["M"]], + "bradawl's": null, + "Bradbury": [["M"]], + "Bradbury's": null, + "Bradburys": null, + "bradded": null, + "bradding": null, + "Braddock": [["M"]], + "Braddock's": null, + "Brade": [["M"]], + "Brade's": null, + "Braden": [["M"]], + "Braden's": null, + "Bradford": [["M"]], + "Bradford's": null, + "Bradley": [["M"]], + "Bradley's": null, + "Bradly": [["M"]], + "Bradly's": null, + "Brad": [["M", "Y", "N"]], + "Brad's": null, + "Bradney": [["M"]], + "Bradney's": null, + "Bradshaw": [["M"]], + "Bradshaw's": null, + "brad": [["S", "M"]], + "brads": null, + "brad's": null, + "Bradstreet": [["M"]], + "Bradstreet's": null, + "Brady": [["M"]], + "Brady's": null, + "brae": [["S", "M"]], + "braes": null, + "brae's": null, + "braggadocio": [["S", "M"]], + "braggadocios": null, + "braggadocio's": null, + "braggart": [["S", "M"]], + "braggarts": null, + "braggart's": null, + "bragged": null, + "bragger": [["M", "S"]], + "bragger's": null, + "braggers": null, + "braggest": null, + "bragging": null, + "Bragg": [["M"]], + "Bragg's": null, + "brag": [["S"]], + "brags": null, + "Brahe": [["M"]], + "Brahe's": null, + "Brahma": [["M", "S"]], + "Brahma's": null, + "Brahmas": null, + "Brahmanism": [["M", "S"]], + "Brahmanism's": null, + "Brahmanisms": null, + "Brahman": [["S", "M"]], + "Brahmans": null, + "Brahman's": null, + "Brahmaputra": [["M"]], + "Brahmaputra's": null, + "Brahmin's": null, + "Brahms": null, + "braider": [["M"]], + "braider's": null, + "braiding": [["M"]], + "braiding's": null, + "braid": [["R", "D", "S", "J", "G"]], + "braided": null, + "braids": null, + "braidings": null, + "braille": [["D", "S", "G"]], + "brailled": null, + "brailles": null, + "brailling": null, + "Braille": [["G", "D", "S", "M"]], + "Brailling": null, + "Brailled": null, + "Brailles": null, + "Braille's": null, + "Brainard": [["S", "M"]], + "Brainards": null, + "Brainard's": null, + "braincell": [["S"]], + "braincells": null, + "brainchild": [["M"]], + "brainchild's": null, + "brainchildren": null, + "brain": [["G", "S", "D", "M"]], + "braining": null, + "brains": null, + "brained": null, + "brain's": null, + "braininess": [["M", "S"]], + "braininess's": null, + "braininesses": null, + "brainlessness": [["M"]], + "brainlessness's": null, + "brainless": [["Y", "P"]], + "brainlessly": null, + "Brain": [["M"]], + "Brain's": null, + "brainpower": [["M"]], + "brainpower's": null, + "brainstorm": [["D", "R", "M", "G", "J", "S"]], + "brainstormed": null, + "brainstormer": null, + "brainstorm's": null, + "brainstorming": [["M"]], + "brainstormings": null, + "brainstorms": null, + "brainstorming's": null, + "brainteaser": [["S"]], + "brainteasers": null, + "brainteasing": null, + "brainwasher": [["M"]], + "brainwasher's": null, + "brainwashing": [["M"]], + "brainwashing's": null, + "brainwash": [["J", "G", "R", "S", "D"]], + "brainwashings": null, + "brainwashes": null, + "brainwashed": null, + "brainwave": [["S"]], + "brainwaves": null, + "brainy": [["R", "P", "T"]], + "brainier": null, + "brainiest": null, + "braise": [["S", "D", "G"]], + "braises": null, + "braised": null, + "braising": null, + "brake": [["D", "S", "G", "M"]], + "braked": null, + "brakes": null, + "braking": null, + "brake's": null, + "brakeman": [["M"]], + "brakeman's": null, + "brakemen": [["M"]], + "brakemen's": null, + "bramble": [["D", "S", "G", "M"]], + "brambled": null, + "brambles": null, + "brambling": [["M"]], + "bramble's": null, + "brambling's": null, + "brambly": [["R", "T"]], + "bramblier": null, + "brambliest": null, + "Bram": [["M"]], + "Bram's": null, + "Brampton": [["M"]], + "Brampton's": null, + "bra": [["M", "S"]], + "bra's": null, + "bras": null, + "Brana": [["M"]], + "Brana's": null, + "branched": [["U"]], + "unbranched": null, + "branching": [["M"]], + "branching's": null, + "branchlike": null, + "Branch": [["M"]], + "Branch's": null, + "branch": [["M", "D", "S", "J", "G"]], + "branch's": null, + "branches": null, + "branchings": null, + "Branchville": [["M"]], + "Branchville's": null, + "Brandais": [["M"]], + "Brandais's": null, + "Brandea": [["M"]], + "Brandea's": null, + "branded": [["U"]], + "unbranded": null, + "Brandeis": [["M"]], + "Brandeis's": null, + "Brandel": [["M"]], + "Brandel's": null, + "Brande": [["M"]], + "Brande's": null, + "Brandenburg": [["M"]], + "Brandenburg's": null, + "Branden": [["M"]], + "Branden's": null, + "brander": [["G", "D", "M"]], + "brandering": null, + "brandered": null, + "brander's": null, + "Brander": [["M"]], + "Brander's": null, + "Brandice": [["M"]], + "Brandice's": null, + "Brandie": [["M"]], + "Brandie's": null, + "Brandi": [["M"]], + "Brandi's": null, + "Brandise": [["M"]], + "Brandise's": null, + "brandish": [["G", "S", "D"]], + "brandishing": null, + "brandishes": null, + "brandished": null, + "Brand": [["M", "R", "N"]], + "Brand's": null, + "Brando": [["M"]], + "Brando's": null, + "Brandon": [["M"]], + "Brandon's": null, + "brand": [["S", "M", "R", "D", "G", "Z"]], + "brands": null, + "brand's": null, + "branding": null, + "branders": null, + "Brandt": [["M"]], + "Brandt's": null, + "Brandtr": [["M"]], + "Brandtr's": null, + "brandy": [["G", "D", "S", "M"]], + "brandying": null, + "brandied": null, + "brandies": null, + "brandy's": null, + "Brandy": [["M"]], + "Brandy's": null, + "Brandyn": [["M"]], + "Brandyn's": null, + "brandywine": null, + "Braniff": [["M"]], + "Braniff's": null, + "Bran": [["M"]], + "Bran's": null, + "branned": null, + "branning": null, + "Brannon": [["M"]], + "Brannon's": null, + "bran": [["S", "M"]], + "brans": null, + "bran's": null, + "Brantley": [["M"]], + "Brantley's": null, + "Brant": [["M"]], + "Brant's": null, + "Braque": [["M"]], + "Braque's": null, + "brashness": [["M", "S"]], + "brashness's": null, + "brashnesses": null, + "brash": [["P", "Y", "S", "R", "T"]], + "brashly": null, + "brashes": null, + "brasher": null, + "brashest": null, + "Brasilia": null, + "brasserie": [["S", "M"]], + "brasseries": null, + "brasserie's": null, + "brass": [["G", "S", "D", "M"]], + "brassing": null, + "brasses": null, + "brassed": null, + "brass's": null, + "brassiere": [["M", "S"]], + "brassiere's": null, + "brassieres": null, + "brassily": null, + "brassiness": [["S", "M"]], + "brassinesses": null, + "brassiness's": null, + "brassy": [["R", "S", "P", "T"]], + "brassier": null, + "brassies": null, + "brassiest": null, + "Bratislava": [["M"]], + "Bratislava's": null, + "brat": [["S", "M"]], + "brats": null, + "brat's": null, + "Brattain": [["M"]], + "Brattain's": null, + "bratty": [["R", "T"]], + "brattier": null, + "brattiest": null, + "bratwurst": [["M", "S"]], + "bratwurst's": null, + "bratwursts": null, + "Braun": [["M"]], + "Braun's": null, + "bravadoes": null, + "bravado": [["M"]], + "bravado's": null, + "brave": [["D", "S", "R", "G", "Y", "T", "P"]], + "braved": null, + "braves": null, + "braver": null, + "braving": null, + "bravely": null, + "bravest": [["M"]], + "braveness": [["M", "S"]], + "braveness's": null, + "bravenesses": null, + "bravery": [["M", "S"]], + "bravery's": null, + "braveries": null, + "bravest's": null, + "bravo": [["S", "D", "G"]], + "bravos": null, + "bravoed": null, + "bravoing": null, + "bravura": [["S", "M"]], + "bravuras": null, + "bravura's": null, + "brawler": [["M"]], + "brawler's": null, + "brawl": [["M", "R", "D", "S", "G", "Z"]], + "brawl's": null, + "brawled": null, + "brawls": null, + "brawling": null, + "brawlers": null, + "brawniness": [["S", "M"]], + "brawninesses": null, + "brawniness's": null, + "brawn": [["M", "S"]], + "brawn's": null, + "brawns": null, + "brawny": [["T", "R", "P"]], + "brawniest": null, + "brawnier": null, + "brayer": [["M"]], + "brayer's": null, + "Bray": [["M"]], + "Bray's": null, + "bray": [["S", "D", "R", "G"]], + "brays": null, + "brayed": null, + "braying": null, + "braze": [["G", "Z", "D", "S", "R"]], + "brazing": null, + "brazers": null, + "brazed": null, + "brazes": null, + "brazer": [["M"]], + "brazenness": [["M", "S"]], + "brazenness's": null, + "brazennesses": null, + "brazen": [["P", "Y", "D", "S", "G"]], + "brazenly": null, + "brazened": null, + "brazens": null, + "brazening": null, + "brazer's": null, + "brazier": [["S", "M"]], + "braziers": null, + "brazier's": null, + "Brazilian": [["M", "S"]], + "Brazilian's": null, + "Brazilians": null, + "Brazil": [["M"]], + "Brazil's": null, + "Brazos": [["M"]], + "Brazos's": null, + "Brazzaville": [["M"]], + "Brazzaville's": null, + "breacher": [["M"]], + "breacher's": null, + "breach": [["M", "D", "R", "S", "G", "Z"]], + "breach's": null, + "breached": null, + "breaches": null, + "breaching": null, + "breachers": null, + "breadbasket": [["S", "M"]], + "breadbaskets": null, + "breadbasket's": null, + "breadboard": [["S", "M", "D", "G"]], + "breadboards": null, + "breadboard's": null, + "breadboarded": null, + "breadboarding": null, + "breadbox": [["S"]], + "breadboxes": null, + "breadcrumb": [["S"]], + "breadcrumbs": null, + "breadfruit": [["M", "S"]], + "breadfruit's": null, + "breadfruits": null, + "breadline": [["M", "S"]], + "breadline's": null, + "breadlines": null, + "bread": [["S", "M", "D", "H", "G"]], + "breads": null, + "bread's": null, + "breaded": null, + "breadth": [["M"]], + "breading": null, + "breadth's": null, + "breadths": null, + "breadwinner": [["M", "S"]], + "breadwinner's": null, + "breadwinners": null, + "breakables": null, + "breakable": [["U"]], + "unbreakable": null, + "breakage": [["M", "S"]], + "breakage's": null, + "breakages": null, + "breakaway": [["M", "S"]], + "breakaway's": null, + "breakaways": null, + "breakdown": [["M", "S"]], + "breakdown's": null, + "breakdowns": null, + "breaker": [["M"]], + "breaker's": null, + "breakfaster": [["M"]], + "breakfaster's": null, + "breakfast": [["R", "D", "M", "G", "Z", "S"]], + "breakfasted": null, + "breakfast's": null, + "breakfasting": null, + "breakfasters": null, + "breakfasts": null, + "breakfront": [["S"]], + "breakfronts": null, + "breaking": [["M"]], + "breaking's": null, + "breakneck": null, + "breakout": [["M", "S"]], + "breakout's": null, + "breakouts": null, + "breakpoint": [["S", "M", "D", "G"]], + "breakpoints": null, + "breakpoint's": null, + "breakpointed": null, + "breakpointing": null, + "break": [["S", "Z", "R", "B", "G"]], + "breaks": null, + "breakers": null, + "breakthroughs": null, + "breakthrough": [["S", "M"]], + "breakthroughes": null, + "breakthrough's": null, + "breakup": [["S", "M"]], + "breakups": null, + "breakup's": null, + "breakwater": [["S", "M"]], + "breakwaters": null, + "breakwater's": null, + "bream": [["S", "D", "G"]], + "breams": null, + "breamed": null, + "breaming": null, + "Breanne": [["M"]], + "Breanne's": null, + "Brear": [["M"]], + "Brear's": null, + "breastbone": [["M", "S"]], + "breastbone's": null, + "breastbones": null, + "breastfed": null, + "breastfeed": [["G"]], + "breastfeeding": null, + "breasting": [["M"]], + "breasting's": null, + "breast": [["M", "D", "S", "G"]], + "breast's": null, + "breasted": null, + "breasts": null, + "breastplate": [["S", "M"]], + "breastplates": null, + "breastplate's": null, + "breaststroke": [["S", "M"]], + "breaststrokes": null, + "breaststroke's": null, + "breastwork": [["M", "S"]], + "breastwork's": null, + "breastworks": null, + "breathable": [["U"]], + "unbreathable": null, + "breathalyser": [["S"]], + "breathalysers": null, + "Breathalyzer": [["S", "M"]], + "Breathalyzers": null, + "Breathalyzer's": null, + "breathe": null, + "breather": [["M"]], + "breather's": null, + "breathing": [["M"]], + "breathing's": null, + "breathlessness": [["S", "M"]], + "breathlessnesses": null, + "breathlessness's": null, + "breathless": [["P", "Y"]], + "breathlessly": null, + "breaths": null, + "breathtaking": [["Y"]], + "breathtakingly": null, + "breathy": [["T", "R"]], + "breathiest": null, + "breathier": null, + "breath": [["Z", "B", "J", "M", "D", "R", "S", "G"]], + "breathers": null, + "breathings": null, + "breath's": null, + "breathed": null, + "breathes": null, + "Brecht": [["M"]], + "Brecht's": null, + "Breckenridge": [["M"]], + "Breckenridge's": null, + "bred": [["D", "G"]], + "breded": null, + "breding": null, + "bredes": null, + "breeching": [["M"]], + "breeching's": null, + "breech": [["M", "D", "S", "G"]], + "breech's": null, + "breeched": null, + "breeches": null, + "breeder": [["I"]], + "inbreeder": null, + "breeder's": null, + "breeding": [["I", "M"]], + "inbreeding": null, + "inbreeding's": null, + "breeding's": null, + "breeds": [["I"]], + "inbreeds": null, + "breed": [["S", "Z", "J", "R", "G"]], + "breeders": null, + "breedings": null, + "Bree": [["M"]], + "Bree's": null, + "Breena": [["M"]], + "Breena's": null, + "breeze": [["G", "M", "S", "D"]], + "breezing": null, + "breeze's": null, + "breezes": null, + "breezed": null, + "breezeway": [["S", "M"]], + "breezeways": null, + "breezeway's": null, + "breezily": null, + "breeziness": [["S", "M"]], + "breezinesses": null, + "breeziness's": null, + "breezy": [["R", "P", "T"]], + "breezier": null, + "breeziest": null, + "Bremen": [["M"]], + "Bremen's": null, + "bremsstrahlung": [["M"]], + "bremsstrahlung's": null, + "Brena": [["M"]], + "Brena's": null, + "Brenda": [["M"]], + "Brenda's": null, + "Brendan": [["M"]], + "Brendan's": null, + "Brenden": [["M"]], + "Brenden's": null, + "Brendin": [["M"]], + "Brendin's": null, + "Brendis": [["M"]], + "Brendis's": null, + "Brendon": [["M"]], + "Brendon's": null, + "Bren": [["M"]], + "Bren's": null, + "Brenna": [["M"]], + "Brenna's": null, + "Brennan": [["M"]], + "Brennan's": null, + "Brennen": [["M"]], + "Brennen's": null, + "Brenner": [["M"]], + "Brenner's": null, + "Brenn": [["R", "N", "M"]], + "Brenn's": null, + "Brent": [["M"]], + "Brent's": null, + "Brenton": [["M"]], + "Brenton's": null, + "Bresenham": [["M"]], + "Bresenham's": null, + "Brest": [["M"]], + "Brest's": null, + "brethren": null, + "Bret": [["M"]], + "Bret's": null, + "Breton": null, + "Brett": [["M"]], + "Brett's": null, + "breve": [["S", "M"]], + "breves": null, + "breve's": null, + "brevet": [["M", "S"]], + "brevet's": null, + "brevets": null, + "brevetted": null, + "brevetting": null, + "breviary": [["S", "M"]], + "breviaries": null, + "breviary's": null, + "brevity": [["M", "S"]], + "brevity's": null, + "brevities": null, + "brew": [["D", "R", "G", "Z", "S"]], + "brewed": null, + "brewer": [["M"]], + "brewing": [["M"]], + "brewers": null, + "brews": null, + "brewer's": null, + "Brewer": [["M"]], + "Brewer's": null, + "brewery": [["M", "S"]], + "brewery's": null, + "breweries": null, + "brewing's": null, + "brewpub": [["S"]], + "brewpubs": null, + "Brew": [["R", "M"]], + "Brew's": null, + "Brewster": [["M"]], + "Brewster's": null, + "Brezhnev": [["M"]], + "Brezhnev's": null, + "Bria": [["M"]], + "Bria's": null, + "Briana": [["M"]], + "Briana's": null, + "Brian": [["M"]], + "Brian's": null, + "Brianna": [["M"]], + "Brianna's": null, + "Brianne": [["M"]], + "Brianne's": null, + "Briano": [["M"]], + "Briano's": null, + "Briant": [["M"]], + "Briant's": null, + "briar's": null, + "bribe": [["G", "Z", "D", "S", "R"]], + "bribing": null, + "bribers": null, + "bribed": null, + "bribes": null, + "briber": [["M"]], + "briber's": null, + "bribery": [["M", "S"]], + "bribery's": null, + "briberies": null, + "Brice": [["M"]], + "Brice's": null, + "brickbat": [["S", "M"]], + "brickbats": null, + "brickbat's": null, + "brick": [["G", "R", "D", "S", "M"]], + "bricking": null, + "bricker": null, + "bricked": null, + "bricks": null, + "brick's": null, + "bricklayer": [["M", "S"]], + "bricklayer's": null, + "bricklayers": null, + "bricklaying": [["S", "M"]], + "bricklayings": null, + "bricklaying's": null, + "brickmason": [["S"]], + "brickmasons": null, + "brickwork": [["S", "M"]], + "brickworks": null, + "brickwork's": null, + "brickyard": [["M"]], + "brickyard's": null, + "bridal": [["S"]], + "bridals": null, + "Bridalveil": [["M"]], + "Bridalveil's": null, + "bridegroom": [["M", "S"]], + "bridegroom's": null, + "bridegrooms": null, + "Bride": [["M"]], + "Bride's": null, + "bride": [["M", "S"]], + "bride's": null, + "brides": null, + "bridesmaid": [["M", "S"]], + "bridesmaid's": null, + "bridesmaids": null, + "Bridewell": [["M"]], + "Bridewell's": null, + "bridgeable": [["U"]], + "unbridgeable": null, + "bridged": [["U"]], + "unbridged": null, + "bridgehead": [["M", "S"]], + "bridgehead's": null, + "bridgeheads": null, + "Bridgeport": [["M"]], + "Bridgeport's": null, + "Bridger": [["M"]], + "Bridger's": null, + "Bridges": null, + "bridge": [["S", "D", "G", "M"]], + "bridges": null, + "bridging": [["M"]], + "bridge's": null, + "Bridget": [["M"]], + "Bridget's": null, + "Bridgetown": [["M"]], + "Bridgetown's": null, + "Bridgette": [["M"]], + "Bridgette's": null, + "Bridgett": [["M"]], + "Bridgett's": null, + "Bridgewater": [["M"]], + "Bridgewater's": null, + "bridgework": [["M", "S"]], + "bridgework's": null, + "bridgeworks": null, + "bridging's": null, + "Bridgman": [["M"]], + "Bridgman's": null, + "Bridie": [["M"]], + "Bridie's": null, + "bridled": [["U"]], + "unbridled": null, + "bridle": [["S", "D", "G", "M"]], + "bridles": null, + "bridling": null, + "bridle's": null, + "bridleway": [["S"]], + "bridleways": null, + "briefcase": [["S", "M"]], + "briefcases": null, + "briefcase's": null, + "briefed": [["C"]], + "debriefed": null, + "briefing": [["M"]], + "briefing's": null, + "briefness": [["M", "S"]], + "briefness's": null, + "briefnesses": null, + "briefs": [["C"]], + "debriefs": null, + "brief": [["Y", "R", "D", "J", "P", "G", "T", "S"]], + "briefly": null, + "briefer": null, + "briefings": null, + "briefest": null, + "Brien": [["M"]], + "Brien's": null, + "Brier": [["M"]], + "Brier's": null, + "brier": [["M", "S"]], + "brier's": null, + "briers": null, + "Brie": [["R", "S", "M"]], + "Bries": null, + "Brie's": null, + "Brietta": [["M"]], + "Brietta's": null, + "brigade": [["G", "D", "S", "M"]], + "brigading": null, + "brigaded": null, + "brigades": null, + "brigade's": null, + "brigadier": [["M", "S"]], + "brigadier's": null, + "brigadiers": null, + "Brigadoon": null, + "brigandage": [["M", "S"]], + "brigandage's": null, + "brigandages": null, + "brigand": [["M", "S"]], + "brigand's": null, + "brigands": null, + "brigantine": [["M", "S"]], + "brigantine's": null, + "brigantines": null, + "Brigg": [["M", "S"]], + "Brigg's": null, + "Briggs": null, + "Brigham": [["M"]], + "Brigham's": null, + "brightener": [["M"]], + "brightener's": null, + "brighten": [["R", "D", "Z", "G"]], + "brightened": null, + "brighteners": null, + "brightening": null, + "bright": [["G", "X", "T", "P", "S", "Y", "N", "R"]], + "brighting": null, + "brightens": null, + "brightest": null, + "brightness": [["S", "M"]], + "brights": null, + "brightly": null, + "brighter": null, + "Bright": [["M"]], + "Bright's": null, + "brightnesses": null, + "brightness's": null, + "Brighton": [["M"]], + "Brighton's": null, + "Brigida": [["M"]], + "Brigida's": null, + "Brigid": [["M"]], + "Brigid's": null, + "Brigit": [["M"]], + "Brigit's": null, + "Brigitta": [["M"]], + "Brigitta's": null, + "Brigitte": [["M"]], + "Brigitte's": null, + "Brig": [["M"]], + "Brig's": null, + "brig": [["S", "M"]], + "brigs": null, + "brig's": null, + "brilliance": [["M", "S"]], + "brilliance's": null, + "brilliances": null, + "brilliancy": [["M", "S"]], + "brilliancy's": null, + "brilliancies": null, + "brilliantine": [["M", "S"]], + "brilliantine's": null, + "brilliantines": null, + "brilliantness": [["M"]], + "brilliantness's": null, + "brilliant": [["P", "S", "Y"]], + "brilliants": null, + "brilliantly": null, + "Brillo": null, + "Brillouin": [["M"]], + "Brillouin's": null, + "brimful": null, + "brimless": null, + "brimmed": null, + "brimming": null, + "brim": [["S", "M"]], + "brims": null, + "brim's": null, + "brimstone": [["M", "S"]], + "brimstone's": null, + "brimstones": null, + "Brina": [["M"]], + "Brina's": null, + "Brindisi": [["M"]], + "Brindisi's": null, + "brindle": [["D", "S", "M"]], + "brindled": null, + "brindles": null, + "brindle's": null, + "brine": [["G", "M", "D", "S", "R"]], + "brining": null, + "brine's": null, + "brined": null, + "brines": null, + "briner": [["M"]], + "briner's": null, + "Briney": [["M"]], + "Briney's": null, + "bringer": [["M"]], + "bringer's": null, + "bring": [["R", "G", "Z", "S"]], + "bringing": null, + "bringers": null, + "brings": null, + "brininess": [["M", "S"]], + "brininess's": null, + "brininesses": null, + "Brinkley": [["M"]], + "Brinkley's": null, + "brinkmanship": [["S", "M"]], + "brinkmanships": null, + "brinkmanship's": null, + "brink": [["M", "S"]], + "brink's": null, + "brinks": null, + "Brinna": [["M"]], + "Brinna's": null, + "Brinn": [["M"]], + "Brinn's": null, + "Briny": [["M"]], + "Briny's": null, + "briny": [["P", "T", "S", "R"]], + "briniest": null, + "brinies": null, + "brinier": null, + "brioche": [["S", "M"]], + "brioches": null, + "brioche's": null, + "Brion": [["M"]], + "Brion's": null, + "briquet's": null, + "briquette": [["M", "G", "S", "D"]], + "briquette's": null, + "briquetting": null, + "briquettes": null, + "briquetted": null, + "Brisbane": [["M"]], + "Brisbane's": null, + "brisket": [["S", "M"]], + "briskets": null, + "brisket's": null, + "briskness": [["M", "S"]], + "briskness's": null, + "brisknesses": null, + "brisk": [["Y", "R", "D", "P", "G", "T", "S"]], + "briskly": null, + "brisker": null, + "brisked": null, + "brisking": null, + "briskest": null, + "brisks": null, + "bristle": [["D", "S", "G", "M"]], + "bristled": null, + "bristles": null, + "bristling": null, + "bristle's": null, + "bristly": [["T", "R"]], + "bristliest": null, + "bristlier": null, + "Bristol": [["M"]], + "Bristol's": null, + "bristol": [["S"]], + "bristols": null, + "Britain": [["M"]], + "Britain's": null, + "Brita": [["M"]], + "Brita's": null, + "Britannia": [["M"]], + "Britannia's": null, + "Britannic": null, + "Britannica": [["M"]], + "Britannica's": null, + "britches": null, + "Briticism": [["M", "S"]], + "Briticism's": null, + "Briticisms": null, + "Britisher": [["M"]], + "Britisher's": null, + "Britishly": [["M"]], + "Britishly's": null, + "British": [["R", "Y", "Z"]], + "Britishers": null, + "Brit": [["M", "S"]], + "Brit's": null, + "Brits": null, + "Britney": [["M"]], + "Britney's": null, + "Britni": [["M"]], + "Britni's": null, + "Briton": [["M", "S"]], + "Briton's": null, + "Britons": null, + "Britta": [["M"]], + "Britta's": null, + "Brittaney": [["M"]], + "Brittaney's": null, + "Brittani": [["M"]], + "Brittani's": null, + "Brittan": [["M"]], + "Brittan's": null, + "Brittany": [["M", "S"]], + "Brittany's": null, + "Brittanies": null, + "Britte": [["M"]], + "Britte's": null, + "Britten": [["M"]], + "Britten's": null, + "Britteny": [["M"]], + "Britteny's": null, + "brittleness": [["M", "S"]], + "brittleness's": null, + "brittlenesses": null, + "brittle": [["Y", "T", "P", "D", "R", "S", "G"]], + "brittlely": null, + "brittlest": null, + "brittled": null, + "brittler": null, + "brittles": null, + "brittling": null, + "Britt": [["M", "N"]], + "Britt's": null, + "Brittne": [["M"]], + "Brittne's": null, + "Brittney": [["M"]], + "Brittney's": null, + "Brittni": [["M"]], + "Brittni's": null, + "Brnaba": [["M"]], + "Brnaba's": null, + "Brnaby": [["M"]], + "Brnaby's": null, + "Brno": [["M"]], + "Brno's": null, + "broach": [["D", "R", "S", "G"]], + "broached": null, + "broacher": [["M"]], + "broaches": null, + "broaching": null, + "broacher's": null, + "broadband": null, + "broadcaster": [["M"]], + "broadcaster's": null, + "broadcast": [["R", "S", "G", "Z", "J"]], + "broadcasts": [["A"]], + "broadcasting": null, + "broadcasters": null, + "broadcastings": null, + "rebroadcasts": null, + "broadcloth": [["M"]], + "broadcloth's": null, + "broadcloths": null, + "broaden": [["J", "G", "R", "D", "Z"]], + "broadenings": null, + "broadening": null, + "broadener": null, + "broadened": null, + "broadeners": null, + "broadleaved": null, + "broadloom": [["S", "M"]], + "broadlooms": null, + "broadloom's": null, + "broadminded": [["P"]], + "broadmindedness": null, + "broadness": [["S"]], + "broadnesses": null, + "broadsheet": [["M", "S"]], + "broadsheet's": null, + "broadsheets": null, + "broadside": [["S", "D", "G", "M"]], + "broadsides": null, + "broadsided": null, + "broadsiding": null, + "broadside's": null, + "broadsword": [["M", "S"]], + "broadsword's": null, + "broadswords": null, + "broad": [["T", "X", "S", "Y", "R", "N", "P"]], + "broadest": null, + "broadens": null, + "broads": null, + "broadly": null, + "broader": null, + "Broadway": [["S", "M"]], + "Broadways": null, + "Broadway's": null, + "Brobdingnagian": null, + "Brobdingnag": [["M"]], + "Brobdingnag's": null, + "brocade": [["D", "S", "G", "M"]], + "brocaded": null, + "brocades": null, + "brocading": null, + "brocade's": null, + "broccoli": [["M", "S"]], + "broccoli's": null, + "broccolis": null, + "brochette": [["S", "M"]], + "brochettes": null, + "brochette's": null, + "brochure": [["S", "M"]], + "brochures": null, + "brochure's": null, + "Brockie": [["M"]], + "Brockie's": null, + "Brock": [["M"]], + "Brock's": null, + "Brocky": [["M"]], + "Brocky's": null, + "Broddie": [["M"]], + "Broddie's": null, + "Broddy": [["M"]], + "Broddy's": null, + "Broderick": [["M"]], + "Broderick's": null, + "Broderic": [["M"]], + "Broderic's": null, + "Brodie": [["M"]], + "Brodie's": null, + "Brod": [["M"]], + "Brod's": null, + "Brody": [["M"]], + "Brody's": null, + "brogan": [["M", "S"]], + "brogan's": null, + "brogans": null, + "Broglie": [["M"]], + "Broglie's": null, + "brogue": [["M", "S"]], + "brogue's": null, + "brogues": null, + "broiler": [["M"]], + "broiler's": null, + "broil": [["R", "D", "S", "G", "Z"]], + "broiled": null, + "broils": null, + "broiling": null, + "broilers": null, + "brokenhearted": [["Y"]], + "brokenheartedly": null, + "brokenness": [["M", "S"]], + "brokenness's": null, + "brokennesses": null, + "broken": [["Y", "P"]], + "brokenly": null, + "brokerage": [["M", "S"]], + "brokerage's": null, + "brokerages": null, + "broker": [["D", "M", "G"]], + "brokered": null, + "broker's": null, + "brokering": null, + "broke": [["R", "G", "Z"]], + "broking": null, + "brokers": null, + "Brok": [["M"]], + "Brok's": null, + "bromide": [["M", "S"]], + "bromide's": null, + "bromides": null, + "bromidic": null, + "bromine": [["M", "S"]], + "bromine's": null, + "bromines": null, + "bronchial": null, + "bronchi": [["M"]], + "bronchi's": null, + "bronchiolar": null, + "bronchiole": [["M", "S"]], + "bronchiole's": null, + "bronchioles": null, + "bronchiolitis": null, + "bronchitic": [["S"]], + "bronchitics": null, + "bronchitis": [["M", "S"]], + "bronchitis's": null, + "bronchitises": null, + "broncho's": null, + "bronchus": [["M"]], + "bronchus's": null, + "broncobuster": [["S", "M"]], + "broncobusters": null, + "broncobuster's": null, + "bronco": [["S", "M"]], + "broncos": null, + "bronco's": null, + "bronc": [["S"]], + "broncs": null, + "Bron": [["M"]], + "Bron's": null, + "Bronnie": [["M"]], + "Bronnie's": null, + "Bronny": [["M"]], + "Bronny's": null, + "Bronson": [["M"]], + "Bronson's": null, + "Bronte": null, + "brontosaur": [["S", "M"]], + "brontosaurs": null, + "brontosaur's": null, + "brontosaurus": [["S", "M"]], + "brontosauruses": null, + "brontosaurus's": null, + "Bronx": [["M"]], + "Bronx's": null, + "bronzed": [["M"]], + "bronzed's": null, + "bronze": [["S", "R", "D", "G", "M"]], + "bronzes": null, + "bronzer": null, + "bronzing": [["M"]], + "bronze's": null, + "bronzing's": null, + "brooch": [["M", "S"]], + "brooch's": null, + "brooches": null, + "brooder": [["M"]], + "brooder's": null, + "broodiness": [["M"]], + "broodiness's": null, + "brooding": [["Y"]], + "broodingly": null, + "broodmare": [["S", "M"]], + "broodmares": null, + "broodmare's": null, + "brood": [["S", "M", "R", "D", "G", "Z"]], + "broods": null, + "brood's": null, + "brooded": null, + "brooders": null, + "broody": [["P", "T", "R"]], + "broodiest": null, + "broodier": null, + "Brookdale": [["M"]], + "Brookdale's": null, + "Brooke": [["M"]], + "Brooke's": null, + "Brookfield": [["M"]], + "Brookfield's": null, + "Brookhaven": [["M"]], + "Brookhaven's": null, + "brooklet": [["M", "S"]], + "brooklet's": null, + "brooklets": null, + "Brooklyn": [["M"]], + "Brooklyn's": null, + "Brookmont": [["M"]], + "Brookmont's": null, + "brook": [["S", "G", "D", "M"]], + "brooks": null, + "brooking": null, + "brooked": null, + "brook's": null, + "brookside": null, + "Brook": [["S", "M"]], + "Brooks": null, + "Brook's": null, + "broom": [["S", "M", "D", "G"]], + "brooms": null, + "broom's": null, + "broomed": null, + "brooming": null, + "broomstick": [["M", "S"]], + "broomstick's": null, + "broomsticks": null, + "Bros": null, + "Brose": [["M"]], + "Brose's": null, + "bro": [["S", "H"]], + "bros": [["S"]], + "broth": [["Z", "M", "R"]], + "broses": null, + "brothel": [["M", "S"]], + "brothel's": null, + "brothels": null, + "brother": [["D", "Y", "M", "G"]], + "brothered": null, + "brotherly": [["P"]], + "brother's": null, + "brothering": null, + "brotherhood": [["S", "M"]], + "brotherhoods": null, + "brotherhood's": null, + "brotherliness": [["M", "S"]], + "brotherliness's": null, + "brotherlinesses": null, + "broths": null, + "brothers": null, + "broth's": null, + "brougham": [["M", "S"]], + "brougham's": null, + "broughams": null, + "brought": null, + "brouhaha": [["M", "S"]], + "brouhaha's": null, + "brouhahas": null, + "browbeat": [["N", "S", "G"]], + "browbeaten": null, + "browbeats": null, + "browbeating": null, + "brow": [["M", "S"]], + "brow's": null, + "brows": [["S", "R", "D", "G", "Z"]], + "Brownell": [["M"]], + "Brownell's": null, + "Browne": [["M"]], + "Browne's": null, + "Brownian": [["M"]], + "Brownian's": null, + "Brownie": [["M", "S"]], + "Brownie's": null, + "Brownies": null, + "brownie": [["M", "T", "R", "S"]], + "brownie's": null, + "browniest": null, + "brownier": null, + "brownies": null, + "browning": [["M"]], + "browning's": null, + "Browning": [["M"]], + "Browning's": null, + "brownish": null, + "Brown": [["M", "G"]], + "Brown's": null, + "brownness": [["M", "S"]], + "brownness's": null, + "brownnesses": null, + "brownout": [["M", "S"]], + "brownout's": null, + "brownouts": null, + "brownstone": [["M", "S"]], + "brownstone's": null, + "brownstones": null, + "Brownsville": [["M"]], + "Brownsville's": null, + "brown": [["Y", "R", "D", "M", "S", "J", "G", "T", "P"]], + "brownly": null, + "browner": null, + "browned": null, + "brown's": null, + "browns": null, + "brownings": null, + "brownest": null, + "browse": null, + "browser": [["M"]], + "browser's": null, + "browses": null, + "browsed": null, + "browsing": null, + "browsers": null, + "brr": null, + "Br": [["T", "M", "N"]], + "Br's": null, + "Brubeck": [["M"]], + "Brubeck's": null, + "brucellosis": [["M"]], + "brucellosis's": null, + "Bruce": [["M"]], + "Bruce's": null, + "Brucie": [["M"]], + "Brucie's": null, + "Bruckner": [["M"]], + "Bruckner's": null, + "Bruegel": [["M"]], + "Bruegel's": null, + "Brueghel's": null, + "bruin": [["M", "S"]], + "bruin's": null, + "bruins": null, + "bruised": [["U"]], + "unbruised": null, + "bruise": [["J", "G", "S", "R", "D", "Z"]], + "bruisings": null, + "bruising": null, + "bruises": null, + "bruiser": [["M"]], + "bruisers": null, + "bruiser's": null, + "Bruis": [["M"]], + "Bruis's": null, + "bruit": [["D", "S", "G"]], + "bruited": null, + "bruits": null, + "bruiting": null, + "Brumidi": [["M"]], + "Brumidi's": null, + "Brummel": [["M"]], + "Brummel's": null, + "brunch": [["M", "D", "S", "G"]], + "brunch's": null, + "brunched": null, + "brunches": null, + "brunching": null, + "Brunei": [["M"]], + "Brunei's": null, + "Brunelleschi": [["M"]], + "Brunelleschi's": null, + "brunet": [["S"]], + "brunets": null, + "brunette": [["S", "M"]], + "brunettes": null, + "brunette's": null, + "Brunhilda": [["M"]], + "Brunhilda's": null, + "Brunhilde": [["M"]], + "Brunhilde's": null, + "Bruno": [["M"]], + "Bruno's": null, + "Brunswick": [["M"]], + "Brunswick's": null, + "brunt": [["G", "S", "M", "D"]], + "brunting": null, + "brunts": null, + "brunt's": null, + "brunted": null, + "brusher": [["M"]], + "brusher's": null, + "brushfire": [["M", "S"]], + "brushfire's": null, + "brushfires": null, + "brushlike": null, + "brush": [["M", "S", "R", "D", "G"]], + "brush's": null, + "brushes": null, + "brushed": null, + "brushing": null, + "brushoff": [["S"]], + "brushoffs": null, + "brushwood": [["S", "M"]], + "brushwoods": null, + "brushwood's": null, + "brushwork": [["M", "S"]], + "brushwork's": null, + "brushworks": null, + "brushy": [["R"]], + "brushier": null, + "brusqueness": [["M", "S"]], + "brusqueness's": null, + "brusquenesses": null, + "brusque": [["P", "Y", "T", "R"]], + "brusquely": null, + "brusquest": null, + "brusquer": null, + "Brussels": null, + "brutality": [["S", "M"]], + "brutalities": null, + "brutality's": null, + "brutalization": [["S", "M"]], + "brutalizations": null, + "brutalization's": null, + "brutalized": [["U"]], + "unbrutalized": null, + "brutalizes": [["A", "U"]], + "rebrutalizes": null, + "unbrutalizes": null, + "brutalize": [["S", "D", "G"]], + "brutalizing": null, + "brutal": [["Y"]], + "brutally": null, + "brute": [["D", "S", "R", "G", "M"]], + "bruted": null, + "brutes": null, + "bruter": null, + "bruting": null, + "brute's": null, + "brutishness": [["S", "M"]], + "brutishnesses": null, + "brutishness's": null, + "brutish": [["Y", "P"]], + "brutishly": null, + "Brutus": [["M"]], + "Brutus's": null, + "Bruxelles": [["M"]], + "Bruxelles's": null, + "Bryana": [["M"]], + "Bryana's": null, + "Bryan": [["M"]], + "Bryan's": null, + "Bryant": [["M"]], + "Bryant's": null, + "Bryanty": [["M"]], + "Bryanty's": null, + "Bryce": [["M"]], + "Bryce's": null, + "Bryna": [["M"]], + "Bryna's": null, + "Bryn": [["M"]], + "Bryn's": null, + "Brynna": [["M"]], + "Brynna's": null, + "Brynne": [["M"]], + "Brynne's": null, + "Brynner": [["M"]], + "Brynner's": null, + "Brynn": [["R", "M"]], + "Brynn's": null, + "Bryon": [["M"]], + "Bryon's": null, + "Brzezinski": [["M"]], + "Brzezinski's": null, + "B's": null, + "BS": null, + "BSA": null, + "BSD": null, + "Btu": null, + "BTU": null, + "BTW": null, + "bu": null, + "bubblegum": [["S"]], + "bubblegums": null, + "bubbler": [["M"]], + "bubbler's": null, + "bubble": [["R", "S", "D", "G", "M"]], + "bubbles": null, + "bubbled": null, + "bubbling": null, + "bubble's": null, + "bubbly": [["T", "R", "S"]], + "bubbliest": null, + "bubblier": null, + "bubblies": null, + "Buber": [["M"]], + "Buber's": null, + "bub": [["M", "S"]], + "bub's": null, + "bubs": null, + "buboes": null, + "bubo": [["M"]], + "bubo's": null, + "bubonic": null, + "buccaneer": [["G", "M", "D", "S"]], + "buccaneering": null, + "buccaneer's": null, + "buccaneered": null, + "buccaneers": null, + "Buchanan": [["M"]], + "Buchanan's": null, + "Bucharest": [["M"]], + "Bucharest's": null, + "Buchenwald": [["M"]], + "Buchenwald's": null, + "Buchwald": [["M"]], + "Buchwald's": null, + "buckaroo": [["S", "M"]], + "buckaroos": null, + "buckaroo's": null, + "buckboard": [["S", "M"]], + "buckboards": null, + "buckboard's": null, + "bucker": [["M"]], + "bucker's": null, + "bucketful": [["M", "S"]], + "bucketful's": null, + "bucketfuls": null, + "bucket": [["S", "G", "M", "D"]], + "buckets": null, + "bucketing": null, + "bucket's": null, + "bucketed": null, + "buckeye": [["S", "M"]], + "buckeyes": null, + "buckeye's": null, + "buck": [["G", "S", "D", "R", "M"]], + "bucking": null, + "bucks": null, + "bucked": null, + "buck's": null, + "buckhorn": [["M"]], + "buckhorn's": null, + "Buckie": [["M"]], + "Buckie's": null, + "Buckingham": [["M"]], + "Buckingham's": null, + "buckled": [["U"]], + "unbuckled": null, + "buckler": [["M", "D", "G"]], + "buckler's": null, + "bucklered": null, + "bucklering": null, + "buckle": [["R", "S", "D", "G", "M", "Z"]], + "buckles": [["U"]], + "buckling": [["U"]], + "buckle's": null, + "bucklers": null, + "unbuckles": null, + "Buckley": [["M"]], + "Buckley's": null, + "buckling's": null, + "unbuckling": null, + "Buck": [["M"]], + "Buck's": null, + "Buckner": [["M"]], + "Buckner's": null, + "buckram": [["G", "S", "D", "M"]], + "buckraming": null, + "buckrams": null, + "buckramed": null, + "buckram's": null, + "bucksaw": [["S", "M"]], + "bucksaws": null, + "bucksaw's": null, + "buckshot": [["M", "S"]], + "buckshot's": null, + "buckshots": null, + "buckskin": [["S", "M"]], + "buckskins": null, + "buckskin's": null, + "buckteeth": null, + "bucktooth": [["D", "M"]], + "bucktoothed": null, + "bucktooth's": null, + "buckwheat": [["S", "M"]], + "buckwheats": null, + "buckwheat's": null, + "Bucky": [["M"]], + "Bucky's": null, + "bucolically": null, + "bucolic": [["S"]], + "bucolics": null, + "Budapest": [["M"]], + "Budapest's": null, + "budded": null, + "Buddha": [["M", "S"]], + "Buddha's": null, + "Buddhas": null, + "Buddhism": [["S", "M"]], + "Buddhisms": null, + "Buddhism's": null, + "Buddhist": [["S", "M"]], + "Buddhists": null, + "Buddhist's": null, + "Buddie": [["M"]], + "Buddie's": null, + "budding": [["S"]], + "buddings": null, + "Budd": [["M"]], + "Budd's": null, + "buddy": [["G", "S", "D", "M"]], + "buddying": null, + "buddies": null, + "buddied": null, + "buddy's": null, + "Buddy": [["M"]], + "Buddy's": null, + "budge": [["G", "D", "S"]], + "budging": [["U"]], + "budged": null, + "budges": null, + "budgerigar": [["M", "S"]], + "budgerigar's": null, + "budgerigars": null, + "budgetary": null, + "budgeter": [["M"]], + "budgeter's": null, + "budget": [["G", "M", "R", "D", "Z", "S"]], + "budgeting": null, + "budget's": null, + "budgeted": null, + "budgeters": null, + "budgets": null, + "budgie": [["M", "S"]], + "budgie's": null, + "budgies": null, + "unbudging": [["Y"]], + "Bud": [["M"]], + "Bud's": null, + "bud": [["M", "S"]], + "bud's": null, + "buds": null, + "Budweiser": [["M", "S"]], + "Budweiser's": null, + "Budweisers": null, + "Buehring": [["M"]], + "Buehring's": null, + "Buena": [["M"]], + "Buena's": null, + "buffaloes": null, + "Buffalo": [["M"]], + "Buffalo's": null, + "buffalo": [["M", "D", "G"]], + "buffalo's": null, + "buffaloed": null, + "buffaloing": null, + "buff": [["A", "S", "G", "D"]], + "rebuff": null, + "rebuffs": null, + "rebuffing": null, + "rebuffed": null, + "buffs": null, + "buffing": null, + "buffed": null, + "buffered": [["U"]], + "unbuffered": null, + "bufferer": [["M"]], + "bufferer's": null, + "buffer": [["R", "D", "M", "S", "G", "Z"]], + "buffer's": null, + "buffers": null, + "buffering": null, + "bufferers": null, + "buffet": [["G", "M", "D", "J", "S"]], + "buffeting": null, + "buffet's": null, + "buffeted": null, + "buffetings": null, + "buffets": null, + "bufflehead": [["M"]], + "bufflehead's": null, + "buffoonery": [["M", "S"]], + "buffoonery's": null, + "buffooneries": null, + "buffoonish": null, + "buffoon": [["S", "M"]], + "buffoons": null, + "buffoon's": null, + "buff's": null, + "Buffy": [["M"]], + "Buffy's": null, + "Buford": [["M"]], + "Buford's": null, + "bugaboo": [["S", "M"]], + "bugaboos": null, + "bugaboo's": null, + "Bugatti": [["M"]], + "Bugatti's": null, + "bugbear": [["S", "M"]], + "bugbears": null, + "bugbear's": null, + "bug": [["C", "S"]], + "debug": null, + "debugs": null, + "bugs": null, + "bugeyed": null, + "bugged": [["C"]], + "debugged": null, + "buggered": null, + "buggering": null, + "bugger": [["S", "C", "M", "!"]], + "buggers": null, + "debuggers": null, + "debugger": null, + "debugger's": null, + "bugger's": null, + "buggery": [["M"]], + "buggery's": null, + "bugging": [["C"]], + "debugging": null, + "buggy": [["R", "S", "M", "T"]], + "buggier": null, + "buggies": null, + "buggy's": null, + "buggiest": null, + "bugle": [["G", "M", "D", "S", "R", "Z"]], + "bugling": null, + "bugle's": null, + "bugled": null, + "bugles": null, + "bugler": [["M"]], + "buglers": null, + "bugler's": null, + "bug's": null, + "Buick": [["M"]], + "Buick's": null, + "builder": [["S", "M"]], + "builders": null, + "builder's": null, + "building": [["S", "M"]], + "buildings": null, + "building's": null, + "build": [["S", "A", "G"]], + "builds": null, + "rebuilds": null, + "rebuild": null, + "rebuilding": null, + "buildup": [["M", "S"]], + "buildup's": null, + "buildups": null, + "built": [["A", "U", "I"]], + "rebuilt": null, + "unbuilt": null, + "inbuilt": null, + "Buiron": [["M"]], + "Buiron's": null, + "Bujumbura": [["M"]], + "Bujumbura's": null, + "Bukhara": [["M"]], + "Bukhara's": null, + "Bukharin": [["M"]], + "Bukharin's": null, + "Bulawayo": [["M"]], + "Bulawayo's": null, + "Bulba": [["M"]], + "Bulba's": null, + "bulb": [["D", "M", "G", "S"]], + "bulbed": null, + "bulb's": null, + "bulbing": null, + "bulbs": null, + "bulblet": null, + "bulbous": null, + "Bulfinch": [["M"]], + "Bulfinch's": null, + "Bulganin": [["M"]], + "Bulganin's": null, + "Bulgaria": [["M"]], + "Bulgaria's": null, + "Bulgarian": [["S"]], + "Bulgarians": null, + "bulge": [["D", "S", "G", "M"]], + "bulged": null, + "bulges": null, + "bulging": null, + "bulge's": null, + "bulgy": [["R", "T"]], + "bulgier": null, + "bulgiest": null, + "bulimarexia": [["S"]], + "bulimarexias": null, + "bulimia": [["M", "S"]], + "bulimia's": null, + "bulimias": null, + "bulimic": [["S"]], + "bulimics": null, + "bulk": [["G", "D", "R", "M", "S"]], + "bulking": null, + "bulked": null, + "bulker": null, + "bulk's": null, + "bulks": null, + "bulkhead": [["S", "D", "M"]], + "bulkheads": null, + "bulkheaded": null, + "bulkhead's": null, + "bulkiness": [["S", "M"]], + "bulkinesses": null, + "bulkiness's": null, + "bulky": [["R", "P", "T"]], + "bulkier": null, + "bulkiest": null, + "bulldogged": null, + "bulldogger": null, + "bulldogging": null, + "bulldog": [["S", "M"]], + "bulldogs": null, + "bulldog's": null, + "bulldoze": [["G", "R", "S", "D", "Z"]], + "bulldozing": null, + "bulldozer": [["M"]], + "bulldozes": null, + "bulldozed": null, + "bulldozers": null, + "bulldozer's": null, + "bullet": [["G", "M", "D", "S"]], + "bulleting": null, + "bullet's": null, + "bulleted": null, + "bullets": null, + "bulletin": [["S", "G", "M", "D"]], + "bulletins": null, + "bulletining": null, + "bulletin's": null, + "bulletined": null, + "bulletproof": [["S", "G", "D"]], + "bulletproofs": null, + "bulletproofing": null, + "bulletproofed": null, + "bullfighter": [["M"]], + "bullfighter's": null, + "bullfighting": [["M"]], + "bullfighting's": null, + "bullfight": [["S", "J", "G", "Z", "M", "R"]], + "bullfights": null, + "bullfightings": null, + "bullfighters": null, + "bullfight's": null, + "bullfinch": [["M", "S"]], + "bullfinch's": null, + "bullfinches": null, + "bullfrog": [["S", "M"]], + "bullfrogs": null, + "bullfrog's": null, + "bullhead": [["D", "M", "S"]], + "bullheaded": [["Y", "P"]], + "bullhead's": null, + "bullheads": null, + "bullheadedness": [["S", "M"]], + "bullheadednesses": null, + "bullheadedness's": null, + "bullheadedly": null, + "bullhide": null, + "bullhorn": [["S", "M"]], + "bullhorns": null, + "bullhorn's": null, + "bullied": [["M"]], + "bullied's": null, + "bullion": [["S", "M"]], + "bullions": null, + "bullion's": null, + "bullishness": [["S", "M"]], + "bullishnesses": null, + "bullishness's": null, + "bullish": [["P", "Y"]], + "bullishly": null, + "bull": [["M", "D", "G", "S"]], + "bull's": null, + "bulled": null, + "bulling": null, + "bulls": null, + "Bullock": [["M"]], + "Bullock's": null, + "bullock": [["M", "S"]], + "bullock's": null, + "bullocks": null, + "bullpen": [["M", "S"]], + "bullpen's": null, + "bullpens": null, + "bullring": [["S", "M"]], + "bullrings": null, + "bullring's": null, + "bullseye": null, + "bullshit": [["M", "S", "!"]], + "bullshit's": null, + "bullshits": null, + "bullshitted": [["!"]], + "bullshitter": [["S", "!"]], + "bullshitters": null, + "bullshitting": [["!"]], + "bullwhackers": null, + "Bullwinkle": [["M"]], + "Bullwinkle's": null, + "bullyboy": [["M", "S"]], + "bullyboy's": null, + "bullyboys": null, + "bullying": [["M"]], + "bullying's": null, + "bully": [["T", "R", "S", "D", "G", "M"]], + "bulliest": null, + "bullier": null, + "bullies": null, + "bully's": null, + "bulrush": [["S", "M"]], + "bulrushes": null, + "bulrush's": null, + "Bultmann": [["M"]], + "Bultmann's": null, + "bulwark": [["G", "M", "D", "S"]], + "bulwarking": null, + "bulwark's": null, + "bulwarked": null, + "bulwarks": null, + "bumblebee": [["M", "S"]], + "bumblebee's": null, + "bumblebees": null, + "bumble": [["J", "G", "Z", "R", "S", "D"]], + "bumblings": null, + "bumbling": [["Y"]], + "bumblers": null, + "bumbler": [["M"]], + "bumbles": null, + "bumbled": null, + "bumbler's": null, + "bumblingly": null, + "Bumbry": [["M"]], + "Bumbry's": null, + "bummed": [["M"]], + "bummed's": null, + "bummer": [["M", "S"]], + "bummer's": null, + "bummers": null, + "bummest": null, + "bumming": [["M"]], + "bumming's": null, + "bumper": [["D", "M", "G"]], + "bumpered": null, + "bumper's": null, + "bumpering": null, + "bump": [["G", "Z", "D", "R", "S"]], + "bumping": null, + "bumpers": null, + "bumped": null, + "bumps": null, + "bumpiness": [["M", "S"]], + "bumpiness's": null, + "bumpinesses": null, + "bumpkin": [["M", "S"]], + "bumpkin's": null, + "bumpkins": null, + "Bumppo": [["M"]], + "Bumppo's": null, + "bumptiousness": [["S", "M"]], + "bumptiousnesses": null, + "bumptiousness's": null, + "bumptious": [["P", "Y"]], + "bumptiously": null, + "bumpy": [["P", "R", "T"]], + "bumpier": null, + "bumpiest": null, + "bum": [["S", "M"]], + "bums": null, + "bum's": null, + "Bunche": [["M"]], + "Bunche's": null, + "bunch": [["M", "S", "D", "G"]], + "bunch's": null, + "bunches": null, + "bunched": null, + "bunching": null, + "bunchy": [["R", "T"]], + "bunchier": null, + "bunchiest": null, + "buncombe's": null, + "bunco's": null, + "Bundestag": [["M"]], + "Bundestag's": null, + "bundled": [["U"]], + "unbundled": null, + "bundle": [["G", "M", "R", "S", "D"]], + "bundling": null, + "bundle's": null, + "bundler": [["M"]], + "bundles": null, + "bundler's": null, + "Bundy": [["M"]], + "Bundy's": null, + "bungalow": [["M", "S"]], + "bungalow's": null, + "bungalows": null, + "bungee": [["S", "M"]], + "bungees": null, + "bungee's": null, + "bung": [["G", "D", "M", "S"]], + "bunging": null, + "bunged": null, + "bung's": null, + "bungs": null, + "bunghole": [["M", "S"]], + "bunghole's": null, + "bungholes": null, + "bungle": [["G", "Z", "R", "S", "D"]], + "bungling": [["Y"]], + "bunglers": null, + "bungler": [["M"]], + "bungles": null, + "bungled": null, + "bungler's": null, + "bunglingly": null, + "Bunin": [["M"]], + "Bunin's": null, + "bunion": [["S", "M"]], + "bunions": null, + "bunion's": null, + "bunk": [["C", "S", "G", "D", "R"]], + "debunk": null, + "debunks": null, + "debunking": null, + "debunked": null, + "debunker": null, + "bunks": null, + "bunking": null, + "bunked": null, + "bunker": [["S", "D", "M", "G"]], + "Bunker": [["M"]], + "Bunker's": null, + "bunker's": [["C"]], + "debunker's": null, + "bunkers": null, + "bunkered": null, + "bunkering": null, + "bunkhouse": [["S", "M"]], + "bunkhouses": null, + "bunkhouse's": null, + "bunkmate": [["M", "S"]], + "bunkmate's": null, + "bunkmates": null, + "bunko's": null, + "bunk's": null, + "bunkum": [["S", "M"]], + "bunkums": null, + "bunkum's": null, + "Bunnie": [["M"]], + "Bunnie's": null, + "Bunni": [["M"]], + "Bunni's": null, + "Bunny": [["M"]], + "Bunny's": null, + "bunny": [["S", "M"]], + "bunnies": null, + "bunny's": null, + "Bunsen": [["S", "M"]], + "Bunsens": null, + "Bunsen's": null, + "bun": [["S", "M"]], + "buns": null, + "bun's": null, + "bunt": [["G", "J", "Z", "D", "R", "S"]], + "bunting": [["M"]], + "buntings": null, + "bunters": null, + "bunted": null, + "bunter": null, + "bunts": null, + "bunting's": null, + "Bu�uel": [["M"]], + "Bu�uel's": null, + "Bunyan": [["M"]], + "Bunyan's": null, + "buoyancy": [["M", "S"]], + "buoyancy's": null, + "buoyancies": null, + "buoyant": [["Y"]], + "buoyantly": null, + "buoy": [["S", "M", "D", "G"]], + "buoys": null, + "buoy's": null, + "buoyed": null, + "buoying": null, + "Burbank": [["M"]], + "Burbank's": null, + "burbler": [["M"]], + "burbler's": null, + "burble": [["R", "S", "D", "G"]], + "burbles": null, + "burbled": null, + "burbling": null, + "burbs": null, + "Burch": [["M"]], + "Burch's": null, + "burden's": null, + "burdensomeness": [["M"]], + "burdensomeness's": null, + "burdensome": [["P", "Y"]], + "burdensomely": null, + "burden": [["U", "G", "D", "S"]], + "unburden": null, + "unburdening": null, + "unburdened": null, + "unburdens": null, + "burdening": null, + "burdened": null, + "burdens": null, + "burdock": [["S", "M"]], + "burdocks": null, + "burdock's": null, + "bureaucracy": [["M", "S"]], + "bureaucracy's": null, + "bureaucracies": null, + "bureaucratically": null, + "bureaucratic": [["U"]], + "unbureaucratic": null, + "bureaucratization": [["M", "S"]], + "bureaucratization's": null, + "bureaucratizations": null, + "bureaucratize": [["S", "D", "G"]], + "bureaucratizes": null, + "bureaucratized": null, + "bureaucratizing": null, + "bureaucrat": [["M", "S"]], + "bureaucrat's": null, + "bureaucrats": null, + "bureau": [["M", "S"]], + "bureau's": null, + "bureaus": null, + "burgeon": [["G", "D", "S"]], + "burgeoning": null, + "burgeoned": null, + "burgeons": null, + "burger": [["M"]], + "burger's": null, + "Burger": [["M"]], + "Burger's": null, + "Burgess": [["M"]], + "Burgess's": null, + "burgess": [["M", "S"]], + "burgess's": null, + "burgesses": null, + "burgher": [["M"]], + "burgher's": null, + "burgh": [["M", "R", "Z"]], + "burgh's": null, + "burghers": null, + "burghs": null, + "burglarize": [["G", "D", "S"]], + "burglarizing": null, + "burglarized": null, + "burglarizes": null, + "burglarproof": [["D", "G", "S"]], + "burglarproofed": null, + "burglarproofing": null, + "burglarproofs": null, + "burglar": [["S", "M"]], + "burglars": null, + "burglar's": null, + "burglary": [["M", "S"]], + "burglary's": null, + "burglaries": null, + "burgle": [["S", "D", "G"]], + "burgles": null, + "burgled": null, + "burgling": null, + "burgomaster": [["S", "M"]], + "burgomasters": null, + "burgomaster's": null, + "Burgoyne": [["M"]], + "Burgoyne's": null, + "Burg": [["R", "M"]], + "Burg's": null, + "burg": [["S", "Z", "R", "M"]], + "burgs": null, + "burgers": null, + "burg's": null, + "Burgundian": [["S"]], + "Burgundians": null, + "Burgundy": [["M", "S"]], + "Burgundy's": null, + "Burgundies": null, + "burgundy": [["S"]], + "burgundies": null, + "burial": [["A", "S", "M"]], + "reburial": null, + "reburials": null, + "reburial's": null, + "burials": null, + "burial's": null, + "buried": [["U"]], + "unburied": null, + "burier": [["M"]], + "burier's": null, + "Burke": [["M"]], + "Burke's": null, + "Burk": [["S", "M"]], + "Burks": null, + "Burk's": null, + "burlap": [["M", "S"]], + "burlap's": null, + "burlaps": null, + "burler": [["M"]], + "burler's": null, + "burlesquer": [["M"]], + "burlesquer's": null, + "burlesque": [["S", "R", "D", "M", "Y", "G"]], + "burlesques": null, + "burlesqued": null, + "burlesque's": null, + "burlesquely": null, + "burlesquing": null, + "burley": [["M"]], + "burley's": null, + "Burlie": [["M"]], + "Burlie's": null, + "burliness": [["S", "M"]], + "burlinesses": null, + "burliness's": null, + "Burlingame": [["M"]], + "Burlingame's": null, + "Burlington": [["M"]], + "Burlington's": null, + "Burl": [["M"]], + "Burl's": null, + "burl": [["S", "M", "D", "R", "G"]], + "burls": null, + "burl's": null, + "burled": null, + "burling": null, + "burly": [["P", "R", "T"]], + "burlier": null, + "burliest": null, + "Burma": [["M"]], + "Burma's": null, + "Burmese": null, + "bur": [["M", "Y", "S"]], + "bur's": null, + "burs": null, + "burnable": [["S"]], + "burnables": null, + "Burnaby": [["M"]], + "Burnaby's": null, + "Burnard": [["M"]], + "Burnard's": null, + "burned": [["U"]], + "unburned": null, + "Burne": [["M", "S"]], + "Burne's": null, + "Burnes": null, + "burner": [["M"]], + "burner's": null, + "Burnett": [["M"]], + "Burnett's": null, + "burn": [["G", "Z", "S", "D", "R", "B", "J"]], + "burning": [["Y"]], + "burners": null, + "burns": null, + "burnings": null, + "burningly": null, + "burnisher": [["M"]], + "burnisher's": null, + "burnish": [["G", "D", "R", "S", "Z"]], + "burnishing": null, + "burnished": null, + "burnishes": null, + "burnishers": null, + "burnoose": [["M", "S"]], + "burnoose's": null, + "burnooses": null, + "burnout": [["M", "S"]], + "burnout's": null, + "burnouts": null, + "Burns": null, + "Burnside": [["M", "S"]], + "Burnside's": null, + "Burnsides": null, + "burnt": [["Y", "P"]], + "burntly": null, + "burntness": null, + "burp": [["S", "G", "M", "D"]], + "burps": null, + "burping": null, + "burp's": null, + "burped": null, + "burr": [["G", "S", "D", "R", "M"]], + "burring": null, + "burrs": null, + "burred": null, + "burrer": null, + "burr's": null, + "Burris": [["M"]], + "Burris's": null, + "burrito": [["S"]], + "burritos": null, + "Burr": [["M"]], + "Burr's": null, + "burro": [["S", "M"]], + "burros": null, + "burro's": null, + "Burroughs": [["M"]], + "Burroughs's": null, + "burrower": [["M"]], + "burrower's": null, + "burrow": [["G", "R", "D", "M", "Z", "S"]], + "burrowing": null, + "burrowed": null, + "burrow's": null, + "burrowers": null, + "burrows": null, + "bursae": null, + "bursa": [["M"]], + "bursa's": null, + "Bursa": [["M"]], + "Bursa's": null, + "bursar": [["M", "S"]], + "bursar's": null, + "bursars": null, + "bursary": [["M", "S"]], + "bursary's": null, + "bursaries": null, + "bursitis": [["M", "S"]], + "bursitis's": null, + "bursitises": null, + "burster": [["M"]], + "burster's": null, + "burst": [["S", "R", "G"]], + "bursts": null, + "bursting": null, + "Burtie": [["M"]], + "Burtie's": null, + "Burt": [["M"]], + "Burt's": null, + "Burton": [["M"]], + "Burton's": null, + "Burty": [["M"]], + "Burty's": null, + "Burundian": [["S"]], + "Burundians": null, + "Burundi": [["M"]], + "Burundi's": null, + "bury": [["A", "S", "D", "G"]], + "rebury": null, + "reburies": null, + "reburied": null, + "reburying": null, + "buries": null, + "burying": null, + "busboy": [["M", "S"]], + "busboy's": null, + "busboys": null, + "busby": [["S", "M"]], + "busbies": null, + "busby's": null, + "Busch": [["M"]], + "Busch's": null, + "buses": [["A"]], + "rebuses": null, + "busgirl": [["S"]], + "busgirls": null, + "bus": [["G", "M", "D", "S", "J"]], + "busing": null, + "bus's": [["A"]], + "bused": null, + "busings": null, + "bushel": [["M", "D", "J", "S", "G"]], + "bushel's": null, + "busheled": null, + "bushelings": null, + "bushels": null, + "busheling": null, + "Bushido": [["M"]], + "Bushido's": null, + "bushiness": [["M", "S"]], + "bushiness's": null, + "bushinesses": null, + "bushing": [["M"]], + "bushing's": null, + "bush": [["J", "M", "D", "S", "R", "G"]], + "bushings": null, + "bush's": null, + "bushed": null, + "bushes": null, + "busher": null, + "bushland": null, + "Bush": [["M"]], + "Bush's": null, + "bushman": [["M"]], + "bushman's": null, + "bushmaster": [["S", "M"]], + "bushmasters": null, + "bushmaster's": null, + "bushmen": null, + "Bushnell": [["M"]], + "Bushnell's": null, + "bushwhacker": [["M"]], + "bushwhacker's": null, + "bushwhacking": [["M"]], + "bushwhacking's": null, + "bushwhack": [["R", "D", "G", "S", "Z"]], + "bushwhacked": null, + "bushwhacks": null, + "bushwhackers": null, + "bushy": [["P", "T", "R"]], + "bushiest": null, + "bushier": null, + "busily": null, + "businesslike": null, + "businessman": [["M"]], + "businessman's": null, + "businessmen": null, + "business": [["M", "S"]], + "business's": null, + "businesses": null, + "businesspeople": null, + "businessperson": [["S"]], + "businesspersons": null, + "businesswoman": [["M"]], + "businesswoman's": null, + "businesswomen": null, + "busker": [["M"]], + "busker's": null, + "busk": [["G", "R", "M"]], + "busking": null, + "busk's": null, + "buskin": [["S", "M"]], + "buskins": null, + "buskin's": null, + "rebus's": null, + "buss": [["D"]], + "bussed": null, + "bustard": [["M", "S"]], + "bustard's": null, + "bustards": null, + "buster": [["M"]], + "buster's": null, + "bustle": [["G", "S", "D"]], + "bustling": [["Y"]], + "bustles": null, + "bustled": null, + "bustlingly": null, + "bust": [["M", "S", "D", "R", "G", "Z"]], + "bust's": null, + "busts": null, + "busted": null, + "busting": null, + "busters": null, + "busty": [["R", "T"]], + "bustier": null, + "bustiest": null, + "busybody": [["M", "S"]], + "busybody's": null, + "busybodies": null, + "busy": [["D", "S", "R", "P", "T", "G"]], + "busied": null, + "busies": null, + "busier": null, + "busiest": null, + "busying": null, + "busyness": [["M", "S"]], + "busyness's": null, + "busynesses": null, + "busywork": [["S", "M"]], + "busyworks": null, + "busywork's": null, + "but": [["A", "C", "S"]], + "rebut": null, + "rebuts": null, + "debut": [["M", "D", "G"]], + "debuts": null, + "buts": null, + "butane": [["M", "S"]], + "butane's": null, + "butanes": null, + "butcherer": [["M"]], + "butcherer's": null, + "butcher": [["M", "D", "R", "Y", "G"]], + "butcher's": null, + "butchered": null, + "butcherly": null, + "butchering": null, + "butchery": [["M", "S"]], + "butchery's": null, + "butcheries": null, + "Butch": [["M"]], + "Butch's": null, + "butch": [["R", "S", "Z"]], + "butches": null, + "butchers": null, + "butene": [["M"]], + "butene's": null, + "Butler": [["M"]], + "Butler's": null, + "butler": [["S", "D", "M", "G"]], + "butlers": null, + "butlered": null, + "butler's": null, + "butlering": null, + "butted": [["A"]], + "rebutted": null, + "butte": [["M", "S"]], + "butte's": null, + "buttes": null, + "butterball": [["M", "S"]], + "butterball's": null, + "butterballs": null, + "buttercup": [["S", "M"]], + "buttercups": null, + "buttercup's": null, + "buttered": [["U"]], + "unbuttered": null, + "butterfat": [["M", "S"]], + "butterfat's": null, + "butterfats": null, + "Butterfield": [["M"]], + "Butterfield's": null, + "butterfingered": null, + "butterfingers": [["M"]], + "butterfingers's": null, + "butterfly": [["M", "G", "S", "D"]], + "butterfly's": null, + "butterflying": null, + "butterflies": null, + "butterflied": null, + "buttermilk": [["M", "S"]], + "buttermilk's": null, + "buttermilks": null, + "butternut": [["M", "S"]], + "butternut's": null, + "butternuts": null, + "butter": [["R", "D", "M", "G", "Z"]], + "butterer": null, + "butter's": null, + "buttering": null, + "butterers": null, + "butterscotch": [["S", "M"]], + "butterscotches": null, + "butterscotch's": null, + "buttery": [["T", "R", "S"]], + "butteriest": null, + "butterier": null, + "butteries": null, + "butting": [["M"]], + "butting's": null, + "buttock": [["S", "G", "M", "D"]], + "buttocks": null, + "buttocking": null, + "buttock's": null, + "buttocked": null, + "buttoner": [["M"]], + "buttoner's": null, + "buttonhole": [["G", "M", "R", "S", "D"]], + "buttonholing": null, + "buttonhole's": null, + "buttonholer": [["M"]], + "buttonholes": null, + "buttonholed": null, + "buttonholer's": null, + "button's": null, + "button": [["S", "U", "D", "G"]], + "buttons": null, + "unbuttons": null, + "unbutton": null, + "unbuttoned": null, + "unbuttoning": null, + "buttoned": null, + "buttoning": null, + "buttonweed": null, + "buttonwood": [["S", "M"]], + "buttonwoods": null, + "buttonwood's": null, + "buttress": [["M", "S", "D", "G"]], + "buttress's": null, + "buttresses": null, + "buttressed": null, + "buttressing": null, + "butt": [["S", "G", "Z", "M", "D", "R"]], + "butts": null, + "butters": null, + "butt's": null, + "butyl": [["M"]], + "butyl's": null, + "butyrate": [["M"]], + "butyrate's": null, + "buxomness": [["M"]], + "buxomness's": null, + "buxom": [["T", "P", "Y", "R"]], + "buxomest": null, + "buxomly": null, + "buxomer": null, + "Buxtehude": [["M"]], + "Buxtehude's": null, + "buyback": [["S"]], + "buybacks": null, + "buyer": [["M"]], + "buyer's": null, + "buyout": [["S"]], + "buyouts": null, + "buy": [["Z", "G", "R", "S"]], + "buyers": null, + "buying": null, + "buys": null, + "buzzard": [["M", "S"]], + "buzzard's": null, + "buzzards": null, + "buzz": [["D", "S", "R", "M", "G", "Z"]], + "buzzed": null, + "buzzes": null, + "buzzer": [["M"]], + "buzz's": null, + "buzzing": null, + "buzzers": null, + "buzzer's": null, + "buzzword": [["S", "M"]], + "buzzwords": null, + "buzzword's": null, + "buzzy": null, + "bx": null, + "bxs": null, + "byelaw's": null, + "Byelorussia's": null, + "bye": [["M", "Z", "S"]], + "bye's": null, + "byers": null, + "byes": null, + "Byers": [["M"]], + "Byers's": null, + "bygone": [["S"]], + "bygones": null, + "bylaw": [["S", "M"]], + "bylaws": null, + "bylaw's": null, + "byliner": [["M"]], + "byliner's": null, + "byline": [["R", "S", "D", "G", "M"]], + "bylines": null, + "bylined": null, + "bylining": null, + "byline's": null, + "BYOB": null, + "bypass": [["G", "S", "D", "M"]], + "bypassing": null, + "bypasses": null, + "bypassed": null, + "bypass's": null, + "bypath": [["M"]], + "bypath's": null, + "bypaths": null, + "byplay": [["S"]], + "byplays": null, + "byproduct": [["S", "M"]], + "byproducts": null, + "byproduct's": null, + "Byram": [["M"]], + "Byram's": null, + "Byran": [["M"]], + "Byran's": null, + "Byrann": [["M"]], + "Byrann's": null, + "Byrd": [["M"]], + "Byrd's": null, + "byre": [["S", "M"]], + "byres": null, + "byre's": null, + "Byrle": [["M"]], + "Byrle's": null, + "Byrne": [["M"]], + "Byrne's": null, + "byroad": [["M", "S"]], + "byroad's": null, + "byroads": null, + "Byrom": [["M"]], + "Byrom's": null, + "Byronic": null, + "Byronism": [["M"]], + "Byronism's": null, + "Byron": [["M"]], + "Byron's": null, + "bystander": [["S", "M"]], + "bystanders": null, + "bystander's": null, + "byte": [["S", "M"]], + "bytes": null, + "byte's": null, + "byway": [["S", "M"]], + "byways": null, + "byway's": null, + "byword": [["S", "M"]], + "bywords": null, + "byword's": null, + "byzantine": null, + "Byzantine": [["S"]], + "Byzantines": null, + "Byzantium": [["M"]], + "Byzantium's": null, + "by": [["Z", "R"]], + "biers": null, + "C": null, + "ca": null, + "CA": null, + "cabala": [["M", "S"]], + "cabala's": null, + "cabalas": null, + "caballed": null, + "caballero": [["S", "M"]], + "caballeros": null, + "caballero's": null, + "caballing": null, + "cabal": [["S", "M"]], + "cabals": null, + "cabal's": null, + "cabana": [["M", "S"]], + "cabana's": null, + "cabanas": null, + "cabaret": [["S", "M"]], + "cabarets": null, + "cabaret's": null, + "cabbage": [["M", "G", "S", "D"]], + "cabbage's": null, + "cabbaging": null, + "cabbages": null, + "cabbaged": null, + "cabbed": null, + "cabbing": null, + "cabby's": null, + "cabdriver": [["S", "M"]], + "cabdrivers": null, + "cabdriver's": null, + "caber": [["M"]], + "caber's": null, + "Cabernet": [["M"]], + "Cabernet's": null, + "cabinetmaker": [["S", "M"]], + "cabinetmakers": null, + "cabinetmaker's": null, + "cabinetmaking": [["M", "S"]], + "cabinetmaking's": null, + "cabinetmakings": null, + "cabinet": [["M", "S"]], + "cabinet's": null, + "cabinets": null, + "cabinetry": [["S", "M"]], + "cabinetries": null, + "cabinetry's": null, + "cabinetwork": [["M", "S"]], + "cabinetwork's": null, + "cabinetworks": null, + "cabin": [["G", "D", "M", "S"]], + "cabining": null, + "cabined": null, + "cabin's": null, + "cabins": null, + "cablecast": [["S", "G"]], + "cablecasts": null, + "cablecasting": null, + "cable": [["G", "M", "D", "S"]], + "cabling": null, + "cable's": null, + "cabled": null, + "cables": null, + "cablegram": [["S", "M"]], + "cablegrams": null, + "cablegram's": null, + "cabochon": [["M", "S"]], + "cabochon's": null, + "cabochons": null, + "caboodle": [["S", "M"]], + "caboodles": null, + "caboodle's": null, + "caboose": [["M", "S"]], + "caboose's": null, + "cabooses": null, + "Cabot": [["M"]], + "Cabot's": null, + "Cabrera": [["M"]], + "Cabrera's": null, + "Cabrini": [["M"]], + "Cabrini's": null, + "cabriolet": [["M", "S"]], + "cabriolet's": null, + "cabriolets": null, + "cab": [["S", "M", "R"]], + "cabs": null, + "cab's": null, + "cabstand": [["M", "S"]], + "cabstand's": null, + "cabstands": null, + "cacao": [["S", "M"]], + "cacaos": null, + "cacao's": null, + "cacciatore": null, + "cache": [["D", "S", "R", "G", "M"]], + "cached": null, + "caches": null, + "cacher": null, + "caching": null, + "cache's": null, + "cachepot": [["M", "S"]], + "cachepot's": null, + "cachepots": null, + "cachet": [["M", "D", "G", "S"]], + "cachet's": null, + "cacheted": null, + "cacheting": null, + "cachets": null, + "Cacilia": [["M"]], + "Cacilia's": null, + "Cacilie": [["M"]], + "Cacilie's": null, + "cackler": [["M"]], + "cackler's": null, + "cackle": [["R", "S", "D", "G", "Z"]], + "cackles": null, + "cackled": null, + "cackling": null, + "cacklers": null, + "cackly": null, + "CACM": null, + "cacophonist": null, + "cacophonous": null, + "cacophony": [["S", "M"]], + "cacophonies": null, + "cacophony's": null, + "cacti": null, + "cactus": [["M"]], + "cactus's": null, + "CAD": null, + "cadaverous": [["Y"]], + "cadaverously": null, + "cadaver": [["S", "M"]], + "cadavers": null, + "cadaver's": null, + "caddishness": [["S", "M"]], + "caddishnesses": null, + "caddishness's": null, + "caddish": [["P", "Y"]], + "caddishly": null, + "Caddric": [["M"]], + "Caddric's": null, + "caddy": [["G", "S", "D", "M"]], + "caddying": null, + "caddies": null, + "caddied": null, + "caddy's": null, + "cadence": [["C", "S", "M"]], + "decadence": null, + "decadences": null, + "decadence's": null, + "cadences": null, + "cadence's": null, + "cadenced": null, + "cadencing": null, + "cadent": [["C"]], + "decadent": [["Y", "S"]], + "cadenza": [["M", "S"]], + "cadenza's": null, + "cadenzas": null, + "cadet": [["S", "M"]], + "cadets": null, + "cadet's": null, + "Cadette": [["S"]], + "Cadettes": null, + "cadge": [["D", "S", "R", "G", "Z"]], + "cadged": null, + "cadges": null, + "cadger": [["M"]], + "cadging": null, + "cadgers": null, + "cadger's": null, + "Cadillac": [["M", "S"]], + "Cadillac's": null, + "Cadillacs": null, + "Cadiz": [["M"]], + "Cadiz's": null, + "Cad": [["M"]], + "Cad's": null, + "cadmium": [["M", "S"]], + "cadmium's": null, + "cadmiums": null, + "cadre": [["S", "M"]], + "cadres": null, + "cadre's": null, + "cad": [["S", "M"]], + "cads": null, + "cad's": null, + "caducei": null, + "caduceus": [["M"]], + "caduceus's": null, + "Caedmon": [["M"]], + "Caedmon's": null, + "Caesar": [["M", "S"]], + "Caesar's": null, + "Caesars": null, + "caesura": [["S", "M"]], + "caesuras": null, + "caesura's": null, + "caf�": [["M", "S"]], + "caf�'s": null, + "caf�s": null, + "cafeteria": [["S", "M"]], + "cafeterias": null, + "cafeteria's": null, + "caffeine": [["S", "M"]], + "caffeines": null, + "caffeine's": null, + "caftan": [["S", "M"]], + "caftans": null, + "caftan's": null, + "caged": [["U"]], + "uncaged": null, + "Cage": [["M"]], + "Cage's": null, + "cage": [["M", "Z", "G", "D", "R", "S"]], + "cage's": null, + "cagers": null, + "caging": null, + "cager": [["M"]], + "cages": null, + "cager's": null, + "cagey": [["P"]], + "cageyness": null, + "cagier": null, + "cagiest": null, + "cagily": null, + "caginess": [["M", "S"]], + "caginess's": null, + "caginesses": null, + "Cagney": [["M"]], + "Cagney's": null, + "Cahokia": [["M"]], + "Cahokia's": null, + "cahoot": [["M", "S"]], + "cahoot's": null, + "cahoots": null, + "Cahra": [["M"]], + "Cahra's": null, + "CAI": null, + "Caiaphas": [["M"]], + "Caiaphas's": null, + "caiman's": null, + "Caine": [["M"]], + "Caine's": null, + "Cain": [["M", "S"]], + "Cain's": null, + "Cains": null, + "Cairistiona": [["M"]], + "Cairistiona's": null, + "cairn": [["S", "D", "M"]], + "cairns": null, + "cairned": null, + "cairn's": null, + "Cairo": [["M"]], + "Cairo's": null, + "caisson": [["S", "M"]], + "caissons": null, + "caisson's": null, + "caitiff": [["M", "S"]], + "caitiff's": null, + "caitiffs": null, + "Caitlin": [["M"]], + "Caitlin's": null, + "Caitrin": [["M"]], + "Caitrin's": null, + "cajole": [["L", "G", "Z", "R", "S", "D"]], + "cajolement": [["M", "S"]], + "cajoling": null, + "cajolers": null, + "cajoler": [["M"]], + "cajoles": null, + "cajoled": null, + "cajolement's": null, + "cajolements": null, + "cajoler's": null, + "cajolery": [["S", "M"]], + "cajoleries": null, + "cajolery's": null, + "Cajun": [["M", "S"]], + "Cajun's": null, + "Cajuns": null, + "cake": [["M", "G", "D", "S"]], + "cake's": null, + "caking": null, + "caked": null, + "cakes": null, + "cakewalk": [["S", "M", "D", "G"]], + "cakewalks": null, + "cakewalk's": null, + "cakewalked": null, + "cakewalking": null, + "calabash": [["S", "M"]], + "calabashes": null, + "calabash's": null, + "calaboose": [["M", "S"]], + "calaboose's": null, + "calabooses": null, + "Calais": [["M"]], + "Calais's": null, + "calamari": [["S"]], + "calamaris": null, + "calamine": [["G", "S", "D", "M"]], + "calamining": null, + "calamines": null, + "calamined": null, + "calamine's": null, + "calamitousness": [["M"]], + "calamitousness's": null, + "calamitous": [["Y", "P"]], + "calamitously": null, + "calamity": [["M", "S"]], + "calamity's": null, + "calamities": null, + "cal": [["C"]], + "decal": [["S", "M"]], + "calcareousness": [["M"]], + "calcareousness's": null, + "calcareous": [["P", "Y"]], + "calcareously": null, + "calciferous": null, + "calcification": [["M"]], + "calcification's": null, + "calcify": [["X", "G", "N", "S", "D"]], + "calcifications": null, + "calcifying": null, + "calcifies": null, + "calcified": null, + "calcimine": [["G", "M", "S", "D"]], + "calcimining": null, + "calcimine's": null, + "calcimines": null, + "calcimined": null, + "calcine": [["S", "D", "G"]], + "calcines": null, + "calcined": null, + "calcining": null, + "calcite": [["S", "M"]], + "calcites": null, + "calcite's": null, + "calcium": [["S", "M"]], + "calciums": null, + "calcium's": null, + "Calcomp": [["M"]], + "Calcomp's": null, + "CalComp": [["M"]], + "CalComp's": null, + "CALCOMP": [["M"]], + "CALCOMP's": null, + "calculability": [["I", "M"]], + "incalculability": null, + "incalculability's": null, + "calculability's": null, + "calculable": [["I", "P"]], + "incalculable": null, + "incalculableness": [["M"]], + "calculableness": null, + "calculate": [["A", "X", "N", "G", "D", "S"]], + "recalculate": null, + "recalculations": null, + "recalculation": null, + "recalculating": null, + "recalculated": null, + "recalculates": null, + "calculations": null, + "calculation": [["A", "M"]], + "calculating": [["U"]], + "calculated": [["P", "Y"]], + "calculates": null, + "calculatedness": null, + "calculatedly": null, + "calculatingly": null, + "uncalculating": null, + "recalculation's": null, + "calculation's": null, + "calculative": null, + "calculator": [["S", "M"]], + "calculators": null, + "calculator's": null, + "calculi": null, + "calculus": [["M"]], + "calculus's": null, + "Calcutta": [["M"]], + "Calcutta's": null, + "caldera": [["S", "M"]], + "calderas": null, + "caldera's": null, + "Calder": [["M"]], + "Calder's": null, + "Calderon": [["M"]], + "Calderon's": null, + "caldron's": null, + "Caldwell": [["M"]], + "Caldwell's": null, + "Caleb": [["M"]], + "Caleb's": null, + "Caledonia": [["M"]], + "Caledonia's": null, + "Cale": [["M"]], + "Cale's": null, + "calendar": [["M", "D", "G", "S"]], + "calendar's": null, + "calendared": null, + "calendaring": null, + "calendars": null, + "calender": [["M", "D", "G", "S"]], + "calender's": null, + "calendered": null, + "calendering": null, + "calenders": null, + "calf": [["M"]], + "calf's": null, + "calfskin": [["S", "M"]], + "calfskins": null, + "calfskin's": null, + "Calgary": [["M"]], + "Calgary's": null, + "Calhoun": [["M"]], + "Calhoun's": null, + "Caliban": [["M"]], + "Caliban's": null, + "caliber": [["S", "M"]], + "calibers": null, + "caliber's": null, + "calibrated": [["U"]], + "uncalibrated": null, + "calibrater's": null, + "calibrate": [["X", "N", "G", "S", "D"]], + "calibrations": null, + "calibration": [["M"]], + "calibrating": [["A"]], + "calibrates": null, + "recalibrating": null, + "calibration's": null, + "calibrator": [["M", "S"]], + "calibrator's": null, + "calibrators": null, + "calicoes": null, + "calico": [["M"]], + "calico's": null, + "Calida": [["M"]], + "Calida's": null, + "Calif": [["M"]], + "Calif's": null, + "California": [["M"]], + "California's": null, + "Californian": [["M", "S"]], + "Californian's": null, + "Californians": null, + "californium": [["S", "M"]], + "californiums": null, + "californium's": null, + "calif's": null, + "Caligula": [["M"]], + "Caligula's": null, + "Cali": [["M"]], + "Cali's": null, + "caliper": [["S", "D", "M", "G"]], + "calipers": null, + "calipered": null, + "caliper's": null, + "calipering": null, + "caliphate": [["S", "M"]], + "caliphates": null, + "caliphate's": null, + "caliph": [["M"]], + "caliph's": null, + "caliphs": null, + "calisthenic": [["S"]], + "calisthenics": [["M"]], + "calisthenics's": null, + "Callaghan": [["M"]], + "Callaghan's": null, + "call": [["A", "G", "R", "D", "B", "S"]], + "recall": null, + "recalling": null, + "recaller": null, + "recalled": null, + "recallable": null, + "recalls": null, + "calling": [["S", "M"]], + "caller": [["M", "S"]], + "called": [["U"]], + "callable": null, + "calls": null, + "Callahan": [["M"]], + "Callahan's": null, + "calla": [["M", "S"]], + "calla's": null, + "callas": null, + "Calla": [["M", "S"]], + "Calla's": null, + "Callas": null, + "Callao": [["M"]], + "Callao's": null, + "callback": [["S"]], + "callbacks": null, + "Callean": [["M"]], + "Callean's": null, + "uncalled": null, + "callee": [["M"]], + "callee's": null, + "caller's": null, + "callers": null, + "Calley": [["M"]], + "Calley's": null, + "Callida": [["M"]], + "Callida's": null, + "Callie": [["M"]], + "Callie's": null, + "calligrapher": [["M"]], + "calligrapher's": null, + "calligraphic": null, + "calligraphist": [["M", "S"]], + "calligraphist's": null, + "calligraphists": null, + "calligraph": [["R", "Z"]], + "calligraphers": null, + "calligraphy": [["M", "S"]], + "calligraphy's": null, + "calligraphies": null, + "Calli": [["M"]], + "Calli's": null, + "callings": null, + "calling's": null, + "Calliope": [["M"]], + "Calliope's": null, + "calliope": [["S", "M"]], + "calliopes": null, + "calliope's": null, + "callisthenics's": null, + "Callisto": [["M"]], + "Callisto's": null, + "callosity": [["M", "S"]], + "callosity's": null, + "callosities": null, + "callousness": [["S", "M"]], + "callousnesses": null, + "callousness's": null, + "callous": [["P", "G", "S", "D", "Y"]], + "callousing": null, + "callouses": null, + "calloused": null, + "callously": null, + "callowness": [["M", "S"]], + "callowness's": null, + "callownesses": null, + "callow": [["R", "T", "S", "P"]], + "callower": null, + "callowest": null, + "callows": null, + "callus": [["S", "D", "M", "G"]], + "calluses": null, + "callused": null, + "callus's": null, + "callusing": null, + "Cally": [["M"]], + "Cally's": null, + "calming": [["Y"]], + "calmingly": null, + "calmness": [["M", "S"]], + "calmness's": null, + "calmnesses": null, + "calm": [["P", "G", "T", "Y", "D", "R", "S"]], + "calmest": null, + "calmly": null, + "calmed": null, + "calmer": null, + "calms": null, + "Cal": [["M", "Y"]], + "Cal's": null, + "Caloocan": [["M"]], + "Caloocan's": null, + "caloric": [["S"]], + "calorics": null, + "calorie": [["S", "M"]], + "calories": null, + "calorie's": null, + "calorific": null, + "calorimeter": [["M", "S"]], + "calorimeter's": null, + "calorimeters": null, + "calorimetric": null, + "calorimetry": [["M"]], + "calorimetry's": null, + "Caltech": [["M"]], + "Caltech's": null, + "Calumet": [["M"]], + "Calumet's": null, + "calumet": [["M", "S"]], + "calumet's": null, + "calumets": null, + "calumniate": [["N", "G", "S", "D", "X"]], + "calumniation": [["M"]], + "calumniating": null, + "calumniates": null, + "calumniated": null, + "calumniations": null, + "calumniation's": null, + "calumniator": [["S", "M"]], + "calumniators": null, + "calumniator's": null, + "calumnious": null, + "calumny": [["M", "S"]], + "calumny's": null, + "calumnies": null, + "calvary": [["M"]], + "calvary's": null, + "Calvary": [["M"]], + "Calvary's": null, + "calve": [["G", "D", "S"]], + "calving": null, + "calved": null, + "calves": [["M"]], + "Calvert": [["M"]], + "Calvert's": null, + "calves's": null, + "Calvinism": [["M", "S"]], + "Calvinism's": null, + "Calvinisms": null, + "Calvinistic": null, + "Calvinist": [["M", "S"]], + "Calvinist's": null, + "Calvinists": null, + "Calvin": [["M"]], + "Calvin's": null, + "Calv": [["M"]], + "Calv's": null, + "calyces's": null, + "Calypso": [["M"]], + "Calypso's": null, + "calypso": [["S", "M"]], + "calypsos": null, + "calypso's": null, + "calyx": [["M", "S"]], + "calyx's": null, + "calyxes": null, + "Ca": [["M"]], + "Ca's": null, + "CAM": null, + "Camacho": [["M"]], + "Camacho's": null, + "Camala": [["M"]], + "Camala's": null, + "camaraderie": [["S", "M"]], + "camaraderies": null, + "camaraderie's": null, + "camber": [["D", "M", "S", "G"]], + "cambered": null, + "camber's": null, + "cambers": null, + "cambering": null, + "cambial": null, + "cambium": [["S", "M"]], + "cambiums": null, + "cambium's": null, + "Cambodia": [["M"]], + "Cambodia's": null, + "Cambodian": [["S"]], + "Cambodians": null, + "Cambrian": [["S"]], + "Cambrians": null, + "cambric": [["M", "S"]], + "cambric's": null, + "cambrics": null, + "Cambridge": [["M"]], + "Cambridge's": null, + "camcorder": [["S"]], + "camcorders": null, + "Camden": [["M"]], + "Camden's": null, + "camelhair's": null, + "Camella": [["M"]], + "Camella's": null, + "Camellia": [["M"]], + "Camellia's": null, + "camellia": [["M", "S"]], + "camellia's": null, + "camellias": null, + "Camel": [["M"]], + "Camel's": null, + "Camelopardalis": [["M"]], + "Camelopardalis's": null, + "Camelot": [["M"]], + "Camelot's": null, + "camel": [["S", "M"]], + "camels": null, + "camel's": null, + "Camembert": [["M", "S"]], + "Camembert's": null, + "Camemberts": null, + "cameo": [["G", "S", "D", "M"]], + "cameoing": null, + "cameos": null, + "cameoed": null, + "cameo's": null, + "camerae": null, + "cameraman": [["M"]], + "cameraman's": null, + "cameramen": null, + "camera": [["M", "S"]], + "camera's": null, + "cameras": null, + "camerawoman": null, + "camerawomen": null, + "Cameron": [["M"]], + "Cameron's": null, + "Cameroonian": [["S"]], + "Cameroonians": null, + "Cameroon": [["S", "M"]], + "Cameroons": null, + "Cameroon's": null, + "came": [["N"]], + "camion": [["M"]], + "Camey": [["M"]], + "Camey's": null, + "Camila": [["M"]], + "Camila's": null, + "Camile": [["M"]], + "Camile's": null, + "Camilla": [["M"]], + "Camilla's": null, + "Camille": [["M"]], + "Camille's": null, + "Cami": [["M"]], + "Cami's": null, + "Camino": [["M"]], + "Camino's": null, + "camion's": null, + "camisole": [["M", "S"]], + "camisole's": null, + "camisoles": null, + "Cam": [["M"]], + "Cam's": null, + "cammed": null, + "Cammie": [["M"]], + "Cammie's": null, + "Cammi": [["M"]], + "Cammi's": null, + "cam": [["M", "S"]], + "cam's": null, + "cams": null, + "Cammy": [["M"]], + "Cammy's": null, + "Camoens": [["M"]], + "Camoens's": null, + "camomile's": null, + "camouflage": [["D", "R", "S", "G", "Z", "M"]], + "camouflaged": null, + "camouflager": [["M"]], + "camouflages": null, + "camouflaging": null, + "camouflagers": null, + "camouflage's": null, + "camouflager's": null, + "campaigner": [["M"]], + "campaigner's": null, + "campaign": [["Z", "M", "R", "D", "S", "G"]], + "campaigners": null, + "campaign's": null, + "campaigned": null, + "campaigns": null, + "campaigning": null, + "campanile": [["S", "M"]], + "campaniles": null, + "campanile's": null, + "campanological": null, + "campanologist": [["S", "M"]], + "campanologists": null, + "campanologist's": null, + "campanology": [["M", "S"]], + "campanology's": null, + "campanologies": null, + "Campbell": [["M"]], + "Campbell's": null, + "Campbellsport": [["M"]], + "Campbellsport's": null, + "camper": [["S", "M"]], + "campers": null, + "camper's": null, + "campesinos": null, + "campest": null, + "campfire": [["S", "M"]], + "campfires": null, + "campfire's": null, + "campground": [["M", "S"]], + "campground's": null, + "campgrounds": null, + "camphor": [["M", "S"]], + "camphor's": null, + "camphors": null, + "Campinas": [["M"]], + "Campinas's": null, + "camping": [["S"]], + "campings": null, + "Campos": null, + "camp's": null, + "camp": [["S", "C", "G", "D"]], + "camps": null, + "decamps": null, + "decamp": [["L"]], + "decamping": null, + "decamped": null, + "camped": null, + "campsite": [["M", "S"]], + "campsite's": null, + "campsites": null, + "campus": [["G", "S", "D", "M"]], + "campusing": null, + "campuses": null, + "campused": null, + "campus's": null, + "campy": [["R", "T"]], + "campier": null, + "campiest": null, + "Camry": [["M"]], + "Camry's": null, + "camshaft": [["S", "M"]], + "camshafts": null, + "camshaft's": null, + "Camus": [["M"]], + "Camus's": null, + "Canaanite": [["S", "M"]], + "Canaanites": null, + "Canaanite's": null, + "Canaan": [["M"]], + "Canaan's": null, + "Canada": [["M"]], + "Canada's": null, + "Canadianism": [["S", "M"]], + "Canadianisms": null, + "Canadianism's": null, + "Canadian": [["S"]], + "Canadians": null, + "Canad": [["M"]], + "Canad's": null, + "Canaletto": [["M"]], + "Canaletto's": null, + "canalization": [["M", "S"]], + "canalization's": null, + "canalizations": null, + "canalize": [["G", "S", "D"]], + "canalizing": null, + "canalizes": null, + "canalized": null, + "canal": [["S", "G", "M", "D"]], + "canals": null, + "canaling": null, + "canal's": null, + "canaled": null, + "canap�": [["S"]], + "canap�s": null, + "canard": [["M", "S"]], + "canard's": null, + "canards": null, + "Canaries": null, + "canary": [["S", "M"]], + "canaries": null, + "canary's": null, + "canasta": [["S", "M"]], + "canastas": null, + "canasta's": null, + "Canaveral": [["M"]], + "Canaveral's": null, + "Canberra": [["M"]], + "Canberra's": null, + "cancan": [["S", "M"]], + "cancans": null, + "cancan's": null, + "cancelate": [["D"]], + "cancelated": null, + "canceled": [["U"]], + "uncanceled": null, + "canceler": [["M"]], + "canceler's": null, + "cancellation": [["M", "S"]], + "cancellation's": null, + "cancellations": null, + "cancel": [["R", "D", "Z", "G", "S"]], + "cancelers": null, + "canceling": null, + "cancels": null, + "cancer": [["M", "S"]], + "cancer's": null, + "cancers": null, + "Cancer": [["M", "S"]], + "Cancer's": null, + "Cancers": null, + "cancerous": [["Y"]], + "cancerously": null, + "Cancun": [["M"]], + "Cancun's": null, + "Candace": [["M"]], + "Candace's": null, + "candelabra": [["S"]], + "candelabras": null, + "candelabrum": [["M"]], + "candelabrum's": null, + "Candice": [["M"]], + "Candice's": null, + "candidacy": [["M", "S"]], + "candidacy's": null, + "candidacies": null, + "Candida": [["M"]], + "Candida's": null, + "candidate": [["S", "M"]], + "candidates": null, + "candidate's": null, + "candidature": [["S"]], + "candidatures": null, + "Candide": [["M"]], + "Candide's": null, + "candidly": [["U"]], + "uncandidly": null, + "candidness": [["S", "M"]], + "candidnesses": null, + "candidness's": null, + "candid": [["T", "R", "Y", "P", "S"]], + "candidest": null, + "candider": null, + "candids": null, + "Candie": [["M"]], + "Candie's": null, + "Candi": [["S", "M"]], + "Candis": null, + "Candi's": null, + "candle": [["G", "M", "Z", "R", "S", "D"]], + "candling": null, + "candle's": null, + "candlers": null, + "candler": [["M"]], + "candles": null, + "candled": null, + "candlelight": [["S", "M", "R"]], + "candlelights": null, + "candlelight's": null, + "candlelighter": null, + "candlelit": null, + "candlepower": [["S", "M"]], + "candlepowers": null, + "candlepower's": null, + "candler's": null, + "candlestick": [["S", "M"]], + "candlesticks": null, + "candlestick's": null, + "Candlewick": [["M"]], + "Candlewick's": null, + "candlewick": [["M", "S"]], + "candlewick's": null, + "candlewicks": null, + "candor": [["M", "S"]], + "candor's": null, + "candors": null, + "Candra": [["M"]], + "Candra's": null, + "candy": [["G", "S", "D", "M"]], + "candying": null, + "candies": null, + "candied": null, + "candy's": null, + "Candy": [["M"]], + "Candy's": null, + "canebrake": [["S", "M"]], + "canebrakes": null, + "canebrake's": null, + "caner": [["M"]], + "caner's": null, + "cane": [["S", "M"]], + "canes": null, + "cane's": null, + "canine": [["S"]], + "canines": null, + "caning": [["M"]], + "caning's": null, + "Canis": [["M"]], + "Canis's": null, + "canister": [["S", "G", "M", "D"]], + "canisters": null, + "canistering": null, + "canister's": null, + "canistered": null, + "cankerous": null, + "canker": [["S", "D", "M", "G"]], + "cankers": null, + "cankered": null, + "canker's": null, + "cankering": null, + "Can": [["M"]], + "Can's": null, + "can": [["M", "D", "R", "S", "Z", "G", "J"]], + "can's": null, + "caned": null, + "cans": null, + "caners": null, + "canings": null, + "cannabis": [["M", "S"]], + "cannabis's": null, + "cannabises": null, + "canned": null, + "cannelloni": null, + "canner": [["S", "M"]], + "canners": null, + "canner's": null, + "cannery": [["M", "S"]], + "cannery's": null, + "canneries": null, + "Cannes": null, + "cannibalism": [["M", "S"]], + "cannibalism's": null, + "cannibalisms": null, + "cannibalistic": null, + "cannibalization": [["S", "M"]], + "cannibalizations": null, + "cannibalization's": null, + "cannibalize": [["G", "S", "D"]], + "cannibalizing": null, + "cannibalizes": null, + "cannibalized": null, + "cannibal": [["S", "M"]], + "cannibals": null, + "cannibal's": null, + "cannily": [["U"]], + "uncannily": null, + "canninesses": null, + "canniness": [["U", "M"]], + "uncanniness": null, + "uncanniness's": null, + "canniness's": null, + "canning": [["M"]], + "canning's": null, + "cannister": [["S", "M"]], + "cannisters": null, + "cannister's": null, + "cannonade": [["S", "D", "G", "M"]], + "cannonades": null, + "cannonaded": null, + "cannonading": null, + "cannonade's": null, + "cannonball": [["S", "G", "D", "M"]], + "cannonballs": null, + "cannonballing": null, + "cannonballed": null, + "cannonball's": null, + "Cannon": [["M"]], + "Cannon's": null, + "cannon": [["S", "D", "M", "G"]], + "cannons": null, + "cannoned": null, + "cannon's": null, + "cannoning": null, + "cannot": null, + "canny": [["R", "P", "U", "T"]], + "cannier": null, + "uncannier": null, + "uncanny": null, + "canniest": null, + "canoe": [["D", "S", "G", "M"]], + "canoed": null, + "canoes": null, + "canoing": null, + "canoe's": null, + "canoeist": [["S", "M"]], + "canoeists": null, + "canoeist's": null, + "Canoga": [["M"]], + "Canoga's": null, + "canonic": null, + "canonicalization": null, + "canonicalize": [["G", "S", "D"]], + "canonicalizing": null, + "canonicalizes": null, + "canonicalized": null, + "canonical": [["S", "Y"]], + "canonicals": null, + "canonically": null, + "canonist": [["M"]], + "canonist's": null, + "canonization": [["M", "S"]], + "canonization's": null, + "canonizations": null, + "canonized": [["U"]], + "uncanonized": null, + "canonize": [["S", "D", "G"]], + "canonizes": null, + "canonizing": null, + "canon": [["S", "M"]], + "canons": null, + "canon's": null, + "Canopus": [["M"]], + "Canopus's": null, + "canopy": [["G", "S", "D", "M"]], + "canopying": null, + "canopies": null, + "canopied": null, + "canopy's": null, + "canst": null, + "can't": null, + "cantabile": [["S"]], + "cantabiles": null, + "Cantabrigian": null, + "cantaloupe": [["M", "S"]], + "cantaloupe's": null, + "cantaloupes": null, + "cantankerousness": [["S", "M"]], + "cantankerousnesses": null, + "cantankerousness's": null, + "cantankerous": [["P", "Y"]], + "cantankerously": null, + "cantata": [["S", "M"]], + "cantatas": null, + "cantata's": null, + "cant": [["C", "Z", "G", "S", "R", "D"]], + "decant": null, + "decanters": null, + "decanting": null, + "decants": null, + "decanter": null, + "decanted": null, + "canters": null, + "canting": null, + "cants": [["A"]], + "canter": [["C", "M"]], + "canted": [["I", "A"]], + "incanted": null, + "recanted": null, + "canteen": [["M", "S"]], + "canteen's": null, + "canteens": null, + "Canterbury": [["M"]], + "Canterbury's": null, + "decanter's": null, + "canter's": null, + "cantered": null, + "cantering": null, + "canticle": [["S", "M"]], + "canticles": null, + "canticle's": null, + "cantilever": [["S", "D", "M", "G"]], + "cantilevers": null, + "cantilevered": null, + "cantilever's": null, + "cantilevering": null, + "canto": [["M", "S"]], + "canto's": null, + "cantos": null, + "cantonal": null, + "Cantonese": [["M"]], + "Cantonese's": null, + "Canton": [["M"]], + "Canton's": null, + "cantonment": [["S", "M"]], + "cantonments": null, + "cantonment's": null, + "canton": [["M", "G", "S", "L", "D"]], + "canton's": null, + "cantoning": null, + "cantons": null, + "cantoned": null, + "Cantor": [["M"]], + "Cantor's": null, + "cantor": [["M", "S"]], + "cantor's": null, + "cantors": null, + "Cantrell": [["M"]], + "Cantrell's": null, + "cant's": null, + "recants": null, + "Cantu": [["M"]], + "Cantu's": null, + "Canute": [["M"]], + "Canute's": null, + "canvasback": [["M", "S"]], + "canvasback's": null, + "canvasbacks": null, + "canvas": [["R", "S", "D", "M", "G"]], + "canvaser": null, + "canvases": null, + "canvased": null, + "canvas's": null, + "canvasing": null, + "canvasser": [["M"]], + "canvasser's": null, + "canvass": [["R", "S", "D", "Z", "G"]], + "canvasses": null, + "canvassed": null, + "canvassers": null, + "canvassing": null, + "canyon": [["M", "S"]], + "canyon's": null, + "canyons": null, + "CAP": null, + "capability": [["I", "S", "M"]], + "incapability": null, + "incapabilities": null, + "incapability's": null, + "capabilities": null, + "capability's": null, + "capableness": [["I", "M"]], + "incapableness": null, + "incapableness's": null, + "capableness's": null, + "capable": [["P", "I"]], + "incapable": [["S"]], + "capabler": null, + "capablest": null, + "capably": [["I"]], + "incapably": null, + "capaciousness": [["M", "S"]], + "capaciousness's": null, + "capaciousnesses": null, + "capacious": [["P", "Y"]], + "capaciously": null, + "capacitance": [["S", "M"]], + "capacitances": null, + "capacitance's": null, + "capacitate": [["V"]], + "capacitative": null, + "capacitive": [["Y"]], + "capacitively": null, + "capacitor": [["M", "S"]], + "capacitor's": null, + "capacitors": null, + "capacity": [["I", "M", "S"]], + "incapacity": null, + "incapacity's": null, + "incapacities": null, + "capacity's": null, + "capacities": null, + "caparison": [["S", "D", "M", "G"]], + "caparisons": null, + "caparisoned": null, + "caparison's": null, + "caparisoning": null, + "Capek": [["M"]], + "Capek's": null, + "Capella": [["M"]], + "Capella's": null, + "caper": [["G", "D", "M"]], + "capering": null, + "capered": null, + "caper's": null, + "capeskin": [["S", "M"]], + "capeskins": null, + "capeskin's": null, + "cape": [["S", "M"]], + "capes": null, + "cape's": null, + "Capet": [["M"]], + "Capet's": null, + "Capetown": [["M"]], + "Capetown's": null, + "Caph": [["M"]], + "Caph's": null, + "capillarity": [["M", "S"]], + "capillarity's": null, + "capillarities": null, + "capillary": [["S"]], + "capillaries": null, + "Capistrano": [["M"]], + "Capistrano's": null, + "capitalism": [["S", "M"]], + "capitalisms": null, + "capitalism's": null, + "capitalistic": null, + "capitalistically": null, + "capitalist": [["S", "M"]], + "capitalists": null, + "capitalist's": null, + "capitalization": [["S", "M", "A"]], + "capitalizations": null, + "recapitalizations": null, + "capitalization's": null, + "recapitalization's": null, + "recapitalization": null, + "capitalized": [["A", "U"]], + "recapitalized": null, + "uncapitalized": null, + "capitalizer": [["M"]], + "capitalizer's": null, + "capitalize": [["R", "S", "D", "G", "Z"]], + "capitalizes": [["A"]], + "capitalizing": null, + "capitalizers": null, + "recapitalizes": null, + "capital": [["S", "M", "Y"]], + "capitals": null, + "capital's": null, + "capitally": null, + "capita": [["M"]], + "capita's": null, + "Capitan": [["M"]], + "Capitan's": null, + "capitation": [["C", "S", "M"]], + "decapitation": null, + "decapitations": null, + "decapitation's": null, + "capitations": null, + "capitation's": null, + "Capitoline": [["M"]], + "Capitoline's": null, + "Capitol": [["M", "S"]], + "Capitol's": null, + "Capitols": null, + "capitol": [["S", "M"]], + "capitols": null, + "capitol's": null, + "capitulate": [["A", "X", "N", "G", "S", "D"]], + "recapitulate": null, + "recapitulations": null, + "recapitulation": null, + "recapitulating": null, + "recapitulates": null, + "recapitulated": null, + "capitulations": null, + "capitulation": [["M", "A"]], + "capitulating": null, + "capitulates": null, + "capitulated": null, + "capitulation's": null, + "recapitulation's": null, + "caplet": [["S"]], + "caplets": null, + "cap": [["M", "D", "R", "S", "Z", "B"]], + "cap's": null, + "caped": null, + "caps": [["A", "U"]], + "capers": null, + "Capone": [["M"]], + "Capone's": null, + "capon": [["S", "M"]], + "capons": null, + "capon's": null, + "capo": [["S", "M"]], + "capos": null, + "capo's": null, + "Capote": [["M"]], + "Capote's": null, + "capped": [["U", "A"]], + "uncapped": null, + "recapped": null, + "capping": [["M"]], + "capping's": null, + "cappuccino": [["M", "S"]], + "cappuccino's": null, + "cappuccinos": null, + "Cappy": [["M"]], + "Cappy's": null, + "Capra": [["M"]], + "Capra's": null, + "Caprice": [["M"]], + "Caprice's": null, + "caprice": [["M", "S"]], + "caprice's": null, + "caprices": null, + "capriciousness": [["M", "S"]], + "capriciousness's": null, + "capriciousnesses": null, + "capricious": [["P", "Y"]], + "capriciously": null, + "Capricorn": [["M", "S"]], + "Capricorn's": null, + "Capricorns": null, + "Capri": [["M"]], + "Capri's": null, + "recaps": null, + "uncaps": null, + "capsicum": [["M", "S"]], + "capsicum's": null, + "capsicums": null, + "capsize": [["S", "D", "G"]], + "capsizes": null, + "capsized": null, + "capsizing": null, + "capstan": [["M", "S"]], + "capstan's": null, + "capstans": null, + "capstone": [["M", "S"]], + "capstone's": null, + "capstones": null, + "capsular": null, + "capsule": [["M", "G", "S", "D"]], + "capsule's": null, + "capsuling": null, + "capsules": null, + "capsuled": null, + "capsulize": [["G", "S", "D"]], + "capsulizing": null, + "capsulizes": null, + "capsulized": null, + "captaincy": [["M", "S"]], + "captaincy's": null, + "captaincies": null, + "captain": [["S", "G", "D", "M"]], + "captains": null, + "captaining": null, + "captained": null, + "captain's": null, + "caption": [["G", "S", "D", "R", "M"]], + "captioning": null, + "captions": null, + "captioned": null, + "captioner": null, + "caption's": null, + "captiousness": [["S", "M"]], + "captiousnesses": null, + "captiousness's": null, + "captious": [["P", "Y"]], + "captiously": null, + "captivate": [["X", "G", "N", "S", "D"]], + "captivations": null, + "captivating": null, + "captivation": [["M"]], + "captivates": null, + "captivated": null, + "captivation's": null, + "captivator": [["S", "M"]], + "captivators": null, + "captivator's": null, + "captive": [["M", "S"]], + "captive's": null, + "captives": null, + "captivity": [["S", "M"]], + "captivities": null, + "captivity's": null, + "Capt": [["M"]], + "Capt's": null, + "captor": [["S", "M"]], + "captors": null, + "captor's": null, + "capture": [["A", "G", "S", "D"]], + "recapture": null, + "recapturing": null, + "recaptures": null, + "recaptured": null, + "capturing": null, + "captures": null, + "captured": null, + "capturer": [["M", "S"]], + "capturer's": null, + "capturers": null, + "capt": [["V"]], + "Capulet": [["M"]], + "Capulet's": null, + "Caputo": [["M"]], + "Caputo's": null, + "Caracalla": [["M"]], + "Caracalla's": null, + "Caracas": [["M"]], + "Caracas's": null, + "caracul's": null, + "carafe": [["S", "M"]], + "carafes": null, + "carafe's": null, + "Caralie": [["M"]], + "Caralie's": null, + "Cara": [["M"]], + "Cara's": null, + "caramelize": [["S", "D", "G"]], + "caramelizes": null, + "caramelized": null, + "caramelizing": null, + "caramel": [["M", "S"]], + "caramel's": null, + "caramels": null, + "carapace": [["S", "M"]], + "carapaces": null, + "carapace's": null, + "carapaxes": null, + "carat": [["S", "M"]], + "carats": null, + "carat's": null, + "Caravaggio": [["M"]], + "Caravaggio's": null, + "caravan": [["D", "R", "M", "G", "S"]], + "caravaned": null, + "caravaner": [["M"]], + "caravan's": null, + "caravaning": null, + "caravans": null, + "caravaner's": null, + "caravansary": [["M", "S"]], + "caravansary's": null, + "caravansaries": null, + "caravanserai's": null, + "caravel": [["M", "S"]], + "caravel's": null, + "caravels": null, + "caraway": [["M", "S"]], + "caraway's": null, + "caraways": null, + "carbide": [["M", "S"]], + "carbide's": null, + "carbides": null, + "carbine": [["M", "S"]], + "carbine's": null, + "carbines": null, + "carbohydrate": [["M", "S"]], + "carbohydrate's": null, + "carbohydrates": null, + "carbolic": null, + "Carboloy": [["M"]], + "Carboloy's": null, + "carbonaceous": null, + "carbonate": [["S", "D", "X", "M", "N", "G"]], + "carbonates": null, + "carbonated": null, + "carbonations": null, + "carbonate's": null, + "carbonation": [["M"]], + "carbonating": null, + "carbonation's": null, + "Carbondale": [["M"]], + "Carbondale's": null, + "Carbone": [["M", "S"]], + "Carbone's": null, + "Carbones": null, + "carbonic": null, + "carboniferous": null, + "Carboniferous": null, + "carbonization": [["S", "A", "M"]], + "carbonizations": null, + "recarbonizations": null, + "recarbonization": null, + "recarbonization's": null, + "carbonization's": null, + "carbonizer": [["A", "S"]], + "recarbonizer": null, + "recarbonizers": null, + "carbonizers": null, + "carbonizer's": null, + "carbonizes": [["A"]], + "recarbonizes": null, + "carbonize": [["Z", "G", "R", "S", "D"]], + "carbonizing": null, + "carbonized": null, + "carbon": [["M", "S"]], + "carbon's": null, + "carbons": null, + "carbonyl": [["M"]], + "carbonyl's": null, + "carborundum": null, + "Carborundum": [["M", "S"]], + "Carborundum's": null, + "Carborundums": null, + "carboy": [["M", "S"]], + "carboy's": null, + "carboys": null, + "carbuncle": [["S", "D", "M"]], + "carbuncles": null, + "carbuncled": null, + "carbuncle's": null, + "carbuncular": null, + "carburetor": [["M", "S"]], + "carburetor's": null, + "carburetors": null, + "carburetter": [["S"]], + "carburetters": null, + "carburettor": [["S", "M"]], + "carburettors": null, + "carburettor's": null, + "carcase": [["M", "S"]], + "carcase's": null, + "carcases": null, + "carcass": [["S", "M"]], + "carcasses": null, + "carcass's": null, + "Carce": [["M"]], + "Carce's": null, + "carcinogenic": null, + "carcinogenicity": [["M", "S"]], + "carcinogenicity's": null, + "carcinogenicities": null, + "carcinogen": [["S", "M"]], + "carcinogens": null, + "carcinogen's": null, + "carcinoma": [["S", "M"]], + "carcinomas": null, + "carcinoma's": null, + "cardamom": [["M", "S"]], + "cardamom's": null, + "cardamoms": null, + "cardboard": [["M", "S"]], + "cardboard's": null, + "cardboards": null, + "card": [["E", "D", "R", "S", "G"]], + "discard": null, + "discarded": null, + "discarder": null, + "discards": null, + "discarding": null, + "carded": null, + "carder": [["M", "S"]], + "cards": null, + "carding": [["M"]], + "Cardenas": [["M"]], + "Cardenas's": null, + "carder's": [["E"]], + "carders": null, + "discarder's": null, + "cardholders": null, + "cardiac": [["S"]], + "cardiacs": null, + "Cardiff": [["M"]], + "Cardiff's": null, + "cardigan": [["S", "M"]], + "cardigans": null, + "cardigan's": null, + "cardinality": [["S", "M"]], + "cardinalities": null, + "cardinality's": null, + "cardinal": [["S", "Y", "M"]], + "cardinals": null, + "cardinally": null, + "cardinal's": null, + "carding's": null, + "Cardin": [["M"]], + "Cardin's": null, + "Cardiod": [["M"]], + "Cardiod's": null, + "cardiogram": [["M", "S"]], + "cardiogram's": null, + "cardiograms": null, + "cardiograph": [["M"]], + "cardiograph's": null, + "cardiographs": null, + "cardioid": [["M"]], + "cardioid's": null, + "cardiologist": [["S", "M"]], + "cardiologists": null, + "cardiologist's": null, + "cardiology": [["M", "S"]], + "cardiology's": null, + "cardiologies": null, + "cardiomegaly": [["M"]], + "cardiomegaly's": null, + "cardiopulmonary": null, + "cardiovascular": null, + "card's": null, + "cardsharp": [["Z", "S", "M", "R"]], + "cardsharpers": null, + "cardsharps": null, + "cardsharp's": null, + "cardsharper": null, + "CARE": null, + "cared": [["U"]], + "uncared": null, + "careen": [["D", "S", "G"]], + "careened": null, + "careens": null, + "careening": null, + "careerism": [["M"]], + "careerism's": null, + "careerist": [["M", "S"]], + "careerist's": null, + "careerists": null, + "career": [["S", "G", "R", "D", "M"]], + "careers": null, + "careering": null, + "careerer": null, + "careered": null, + "career's": null, + "carefree": null, + "carefuller": null, + "carefullest": null, + "carefulness": [["M", "S"]], + "carefulness's": null, + "carefulnesses": null, + "careful": [["P", "Y"]], + "carefully": null, + "caregiver": [["S"]], + "caregivers": null, + "carelessness": [["M", "S"]], + "carelessness's": null, + "carelessnesses": null, + "careless": [["Y", "P"]], + "carelessly": null, + "Care": [["M"]], + "Care's": null, + "Carena": [["M"]], + "Carena's": null, + "Caren": [["M"]], + "Caren's": null, + "carer": [["M"]], + "carer's": null, + "care": [["S"]], + "cares": null, + "Caresa": [["M"]], + "Caresa's": null, + "Caressa": [["M"]], + "Caressa's": null, + "Caresse": [["M"]], + "Caresse's": null, + "caresser": [["M"]], + "caresser's": null, + "caressing": [["Y"]], + "caressingly": null, + "caressive": [["Y"]], + "caressively": null, + "caress": [["S", "R", "D", "M", "V", "G"]], + "caresses": null, + "caressed": null, + "caress's": null, + "caretaker": [["S", "M"]], + "caretakers": null, + "caretaker's": null, + "caret": [["S", "M"]], + "carets": null, + "caret's": null, + "careworn": null, + "Carey": [["M"]], + "Carey's": null, + "carfare": [["M", "S"]], + "carfare's": null, + "carfares": null, + "cargoes": null, + "cargo": [["M"]], + "cargo's": null, + "carhopped": null, + "carhopping": null, + "carhop": [["S", "M"]], + "carhops": null, + "carhop's": null, + "Caria": [["M"]], + "Caria's": null, + "Caribbean": [["S"]], + "Caribbeans": null, + "Carib": [["M"]], + "Carib's": null, + "caribou": [["M", "S"]], + "caribou's": null, + "caribous": null, + "caricature": [["G", "M", "S", "D"]], + "caricaturing": null, + "caricature's": null, + "caricatures": null, + "caricatured": null, + "caricaturisation": null, + "caricaturist": [["M", "S"]], + "caricaturist's": null, + "caricaturists": null, + "caricaturization": null, + "Carie": [["M"]], + "Carie's": null, + "caries": [["M"]], + "caries's": null, + "carillonned": null, + "carillonning": null, + "carillon": [["S", "M"]], + "carillons": null, + "carillon's": null, + "Caril": [["M"]], + "Caril's": null, + "Carilyn": [["M"]], + "Carilyn's": null, + "Cari": [["M"]], + "Cari's": null, + "Carina": [["M"]], + "Carina's": null, + "Carine": [["M"]], + "Carine's": null, + "caring": [["U"]], + "uncaring": null, + "Carin": [["M"]], + "Carin's": null, + "Cariotta": [["M"]], + "Cariotta's": null, + "carious": null, + "Carissa": [["M"]], + "Carissa's": null, + "Carita": [["M"]], + "Carita's": null, + "Caritta": [["M"]], + "Caritta's": null, + "carjack": [["G", "S", "J", "D", "R", "Z"]], + "carjacking": null, + "carjacks": null, + "carjackings": null, + "carjacked": null, + "carjacker": null, + "carjackers": null, + "Carla": [["M"]], + "Carla's": null, + "Carlee": [["M"]], + "Carlee's": null, + "Carleen": [["M"]], + "Carleen's": null, + "Carlene": [["M"]], + "Carlene's": null, + "Carlen": [["M"]], + "Carlen's": null, + "Carletonian": [["M"]], + "Carletonian's": null, + "Carleton": [["M"]], + "Carleton's": null, + "Carley": [["M"]], + "Carley's": null, + "Carlie": [["M"]], + "Carlie's": null, + "Carlina": [["M"]], + "Carlina's": null, + "Carline": [["M"]], + "Carline's": null, + "Carling": [["M"]], + "Carling's": null, + "Carlin": [["M"]], + "Carlin's": null, + "Carlita": [["M"]], + "Carlita's": null, + "Carl": [["M", "N", "G"]], + "Carl's": null, + "carload": [["M", "S", "G"]], + "carload's": null, + "carloads": null, + "carloading": null, + "Carlo": [["S", "M"]], + "Carlos": null, + "Carlo's": null, + "Carlota": [["M"]], + "Carlota's": null, + "Carlotta": [["M"]], + "Carlotta's": null, + "Carlsbad": [["M"]], + "Carlsbad's": null, + "Carlson": [["M"]], + "Carlson's": null, + "Carlton": [["M"]], + "Carlton's": null, + "Carlye": [["M"]], + "Carlye's": null, + "Carlyle": [["M"]], + "Carlyle's": null, + "Carly": [["M"]], + "Carly's": null, + "Carlyn": [["M"]], + "Carlyn's": null, + "Carlynne": [["M"]], + "Carlynne's": null, + "Carlynn": [["M"]], + "Carlynn's": null, + "Carma": [["M"]], + "Carma's": null, + "Carmela": [["M"]], + "Carmela's": null, + "Carmelia": [["M"]], + "Carmelia's": null, + "Carmelina": [["M"]], + "Carmelina's": null, + "Carmelita": [["M"]], + "Carmelita's": null, + "Carmella": [["M"]], + "Carmella's": null, + "Carmelle": [["M"]], + "Carmelle's": null, + "Carmel": [["M"]], + "Carmel's": null, + "Carmelo": [["M"]], + "Carmelo's": null, + "Carmencita": [["M"]], + "Carmencita's": null, + "Carmen": [["M"]], + "Carmen's": null, + "Carmichael": [["M"]], + "Carmichael's": null, + "Carmina": [["M"]], + "Carmina's": null, + "Carmine": [["M"]], + "Carmine's": null, + "carmine": [["M", "S"]], + "carmine's": null, + "carmines": null, + "Carmita": [["M"]], + "Carmita's": null, + "Car": [["M", "N", "Y"]], + "Car's": null, + "Carmon": [["M"]], + "Carmon's": null, + "carnage": [["M", "S"]], + "carnage's": null, + "carnages": null, + "carnality": [["S", "M"]], + "carnalities": null, + "carnality's": null, + "carnal": [["Y"]], + "carnally": null, + "Carnap": [["M"]], + "Carnap's": null, + "carnation": [["I", "M", "S"]], + "incarnation": [["A", "M"]], + "incarnation's": null, + "incarnations": null, + "carnation's": null, + "carnations": null, + "Carnegie": [["M"]], + "Carnegie's": null, + "carnelian": [["S", "M"]], + "carnelians": null, + "carnelian's": null, + "Carney": [["M"]], + "Carney's": null, + "carney's": null, + "carnival": [["M", "S"]], + "carnival's": null, + "carnivals": null, + "carnivore": [["S", "M"]], + "carnivores": null, + "carnivore's": null, + "carnivorousness": [["M", "S"]], + "carnivorousness's": null, + "carnivorousnesses": null, + "carnivorous": [["Y", "P"]], + "carnivorously": null, + "Carnot": [["M"]], + "Carnot's": null, + "Carny": [["M"]], + "Carny's": null, + "carny": [["S", "D", "G"]], + "carnies": null, + "carnied": null, + "carnying": null, + "carob": [["S", "M"]], + "carobs": null, + "carob's": null, + "Carola": [["M"]], + "Carola's": null, + "Carolan": [["M"]], + "Carolan's": null, + "Carolann": [["M"]], + "Carolann's": null, + "Carolee": [["M"]], + "Carolee's": null, + "Carole": [["M"]], + "Carole's": null, + "caroler": [["M"]], + "caroler's": null, + "Carolina": [["M", "S"]], + "Carolina's": null, + "Carolinas": null, + "Caroline": [["M"]], + "Caroline's": null, + "Carolingian": null, + "Carolinian": [["S"]], + "Carolinians": null, + "Carolin": [["M"]], + "Carolin's": null, + "Caroljean": [["M"]], + "Caroljean's": null, + "Carol": [["M"]], + "Carol's": null, + "carol": [["S", "G", "Z", "M", "R", "D"]], + "carols": null, + "caroling": null, + "carolers": null, + "carol's": null, + "caroled": null, + "Carolus": [["M"]], + "Carolus's": null, + "Carolyne": [["M"]], + "Carolyne's": null, + "Carolyn": [["M"]], + "Carolyn's": null, + "Carolynn": [["M"]], + "Carolynn's": null, + "Caro": [["M"]], + "Caro's": null, + "carom": [["G", "S", "M", "D"]], + "caroming": null, + "caroms": null, + "carom's": null, + "caromed": null, + "Caron": [["M"]], + "Caron's": null, + "carotene": [["M", "S"]], + "carotene's": null, + "carotenes": null, + "carotid": [["M", "S"]], + "carotid's": null, + "carotids": null, + "carousal": [["M", "S"]], + "carousal's": null, + "carousals": null, + "carousel": [["M", "S"]], + "carousel's": null, + "carousels": null, + "carouser": [["M"]], + "carouser's": null, + "carouse": [["S", "R", "D", "Z", "G"]], + "carouses": null, + "caroused": null, + "carousers": null, + "carousing": null, + "carpal": [["S", "M"]], + "carpals": null, + "carpal's": null, + "Carpathian": [["M", "S"]], + "Carpathian's": null, + "Carpathians": null, + "carpel": [["S", "M"]], + "carpels": null, + "carpel's": null, + "carpenter": [["D", "S", "M", "G"]], + "carpentered": null, + "carpenters": null, + "carpenter's": null, + "carpentering": [["M"]], + "carpentering's": null, + "Carpenter": [["M"]], + "Carpenter's": null, + "carpentry": [["M", "S"]], + "carpentry's": null, + "carpentries": null, + "carper": [["M"]], + "carper's": null, + "carpetbagged": null, + "carpetbagger": [["M", "S"]], + "carpetbagger's": null, + "carpetbaggers": null, + "carpetbagging": null, + "carpetbag": [["M", "S"]], + "carpetbag's": null, + "carpetbags": null, + "carpeting": [["M"]], + "carpeting's": null, + "carpet": [["M", "D", "J", "G", "S"]], + "carpet's": null, + "carpeted": null, + "carpetings": null, + "carpets": null, + "carpi": [["M"]], + "carpi's": null, + "carping": [["Y"]], + "carpingly": null, + "carp": [["M", "D", "R", "S", "G", "Z"]], + "carp's": null, + "carped": null, + "carps": null, + "carpers": null, + "carpool": [["D", "G", "S"]], + "carpooled": null, + "carpooling": null, + "carpools": null, + "carport": [["M", "S"]], + "carport's": null, + "carports": null, + "carpus": [["M"]], + "carpus's": null, + "carrageen": [["M"]], + "carrageen's": null, + "Carree": [["M"]], + "Carree's": null, + "carrel": [["S", "M"]], + "carrels": null, + "carrel's": null, + "carriage": [["S", "M"]], + "carriages": null, + "carriage's": null, + "carriageway": [["S", "M"]], + "carriageways": null, + "carriageway's": null, + "Carrie": [["M"]], + "Carrie's": null, + "carrier": [["M"]], + "carrier's": null, + "Carrier": [["M"]], + "Carrier's": null, + "Carrillo": [["M"]], + "Carrillo's": null, + "Carri": [["M"]], + "Carri's": null, + "carrion": [["S", "M"]], + "carrions": null, + "carrion's": null, + "Carrissa": [["M"]], + "Carrissa's": null, + "Carr": [["M"]], + "Carr's": null, + "Carroll": [["M"]], + "Carroll's": null, + "Carrol": [["M"]], + "Carrol's": null, + "carrot": [["M", "S"]], + "carrot's": null, + "carrots": null, + "carroty": [["R", "T"]], + "carrotier": null, + "carrotiest": null, + "carrousel's": null, + "carryall": [["M", "S"]], + "carryall's": null, + "carryalls": null, + "Carry": [["M", "R"]], + "Carry's": null, + "carryout": [["S"]], + "carryouts": null, + "carryover": [["S"]], + "carryovers": null, + "carry": [["R", "S", "D", "Z", "G"]], + "carries": null, + "carried": null, + "carriers": null, + "carrying": null, + "carsickness": [["S", "M"]], + "carsicknesses": null, + "carsickness's": null, + "carsick": [["P"]], + "Carson": [["M"]], + "Carson's": null, + "cartage": [["M", "S"]], + "cartage's": null, + "cartages": null, + "cartel": [["S", "M"]], + "cartels": null, + "cartel's": null, + "carte": [["M"]], + "carte's": null, + "carter": [["M"]], + "carter's": null, + "Carter": [["M"]], + "Carter's": null, + "Cartesian": null, + "Carthage": [["M"]], + "Carthage's": null, + "Carthaginian": [["S"]], + "Carthaginians": null, + "carthorse": [["M", "S"]], + "carthorse's": null, + "carthorses": null, + "Cartier": [["M"]], + "Cartier's": null, + "cartilage": [["M", "S"]], + "cartilage's": null, + "cartilages": null, + "cartilaginous": null, + "cartload": [["M", "S"]], + "cartload's": null, + "cartloads": null, + "cart": [["M", "D", "R", "G", "S", "Z"]], + "cart's": null, + "carted": null, + "carting": null, + "carts": null, + "carters": null, + "Cart": [["M", "R"]], + "Cart's": null, + "cartographer": [["M", "S"]], + "cartographer's": null, + "cartographers": null, + "cartographic": null, + "cartography": [["M", "S"]], + "cartography's": null, + "cartographies": null, + "carton": [["G", "S", "D", "M"]], + "cartoning": null, + "cartons": null, + "cartoned": null, + "carton's": null, + "cartoon": [["G", "S", "D", "M"]], + "cartooning": null, + "cartoons": null, + "cartooned": null, + "cartoon's": null, + "cartoonist": [["M", "S"]], + "cartoonist's": null, + "cartoonists": null, + "cartridge": [["S", "M"]], + "cartridges": null, + "cartridge's": null, + "cartwheel": [["M", "R", "D", "G", "S"]], + "cartwheel's": null, + "cartwheeler": null, + "cartwheeled": null, + "cartwheeling": null, + "cartwheels": null, + "Cartwright": [["M"]], + "Cartwright's": null, + "Carty": [["R", "M"]], + "Carty's": null, + "Caruso": [["M"]], + "Caruso's": null, + "carve": [["D", "S", "R", "J", "G", "Z"]], + "carved": null, + "carves": null, + "carver": [["M"]], + "carvings": null, + "carving": [["M"]], + "carvers": null, + "carven": null, + "carver's": null, + "Carver": [["M"]], + "Carver's": null, + "carving's": null, + "caryatid": [["M", "S"]], + "caryatid's": null, + "caryatids": null, + "Caryl": [["M"]], + "Caryl's": null, + "Cary": [["M"]], + "Cary's": null, + "Caryn": [["M"]], + "Caryn's": null, + "car": [["Z", "G", "S", "M", "D", "R"]], + "carers": null, + "cars": null, + "car's": null, + "casaba": [["S", "M"]], + "casabas": null, + "casaba's": null, + "Casablanca": [["M"]], + "Casablanca's": null, + "Casals": [["M"]], + "Casals's": null, + "Casandra": [["M"]], + "Casandra's": null, + "Casanova": [["S", "M"]], + "Casanovas": null, + "Casanova's": null, + "Casar": [["M"]], + "Casar's": null, + "casbah": [["M"]], + "casbah's": null, + "cascade": [["M", "S", "D", "G"]], + "cascade's": null, + "cascades": null, + "cascaded": null, + "cascading": null, + "Cascades": [["M"]], + "Cascades's": null, + "cascara": [["M", "S"]], + "cascara's": null, + "cascaras": null, + "casebook": [["S", "M"]], + "casebooks": null, + "casebook's": null, + "case": [["D", "S", "J", "M", "G", "L"]], + "cased": [["U"]], + "cases": null, + "casings": null, + "case's": null, + "casing": [["M"]], + "casement": [["S", "M"]], + "uncased": null, + "caseharden": [["S", "G", "D"]], + "casehardens": null, + "casehardening": null, + "casehardened": null, + "casein": [["S", "M"]], + "caseins": null, + "casein's": null, + "caseload": [["M", "S"]], + "caseload's": null, + "caseloads": null, + "Case": [["M"]], + "Case's": null, + "casements": null, + "casement's": null, + "caseworker": [["M"]], + "caseworker's": null, + "casework": [["Z", "M", "R", "S"]], + "caseworkers": null, + "casework's": null, + "caseworks": null, + "Casey": [["M"]], + "Casey's": null, + "cashbook": [["S", "M"]], + "cashbooks": null, + "cashbook's": null, + "cashew": [["M", "S"]], + "cashew's": null, + "cashews": null, + "cash": [["G", "Z", "M", "D", "S", "R"]], + "cashing": null, + "cashers": null, + "cash's": null, + "cashed": null, + "cashes": null, + "casher": null, + "cashier": [["S", "D", "M", "G"]], + "cashiers": null, + "cashiered": null, + "cashier's": null, + "cashiering": null, + "cashless": null, + "Cash": [["M"]], + "Cash's": null, + "cashmere": [["M", "S"]], + "cashmere's": null, + "cashmeres": null, + "Casie": [["M"]], + "Casie's": null, + "Casi": [["M"]], + "Casi's": null, + "casing's": null, + "casino": [["M", "S"]], + "casino's": null, + "casinos": null, + "casket": [["S", "G", "M", "D"]], + "caskets": null, + "casketing": null, + "casket's": null, + "casketed": null, + "cask": [["G", "S", "D", "M"]], + "casking": null, + "casks": null, + "casked": null, + "cask's": null, + "Caspar": [["M"]], + "Caspar's": null, + "Casper": [["M"]], + "Casper's": null, + "Caspian": null, + "Cass": null, + "Cassandra": [["S", "M"]], + "Cassandras": null, + "Cassandra's": null, + "Cassandre": [["M"]], + "Cassandre's": null, + "Cassandry": [["M"]], + "Cassandry's": null, + "Cassatt": [["M"]], + "Cassatt's": null, + "Cassaundra": [["M"]], + "Cassaundra's": null, + "cassava": [["M", "S"]], + "cassava's": null, + "cassavas": null, + "casserole": [["M", "G", "S", "D"]], + "casserole's": null, + "casseroling": null, + "casseroles": null, + "casseroled": null, + "cassette": [["S", "M"]], + "cassettes": null, + "cassette's": null, + "Cassey": [["M"]], + "Cassey's": null, + "cassia": [["M", "S"]], + "cassia's": null, + "cassias": null, + "Cassie": [["M"]], + "Cassie's": null, + "Cassi": [["M"]], + "Cassi's": null, + "cassino's": null, + "Cassiopeia": [["M"]], + "Cassiopeia's": null, + "Cassite": [["M"]], + "Cassite's": null, + "Cassius": [["M"]], + "Cassius's": null, + "cassock": [["S", "D", "M"]], + "cassocks": null, + "cassocked": null, + "cassock's": null, + "Cassondra": [["M"]], + "Cassondra's": null, + "cassowary": [["S", "M"]], + "cassowaries": null, + "cassowary's": null, + "Cassy": [["M"]], + "Cassy's": null, + "Castaneda": [["M"]], + "Castaneda's": null, + "castanet": [["S", "M"]], + "castanets": null, + "castanet's": null, + "castaway": [["S", "M"]], + "castaways": null, + "castaway's": null, + "castellated": null, + "caste": [["M", "H", "S"]], + "caste's": null, + "casteth": null, + "castes": null, + "caster": [["M"]], + "caster's": null, + "cast": [["G", "Z", "S", "J", "M", "D", "R"]], + "casting": [["M"]], + "casters": null, + "casts": [["A"]], + "castings": null, + "cast's": null, + "casted": null, + "castigate": [["X", "G", "N", "S", "D"]], + "castigations": null, + "castigating": null, + "castigation": [["M"]], + "castigates": null, + "castigated": null, + "castigation's": null, + "castigator": [["S", "M"]], + "castigators": null, + "castigator's": null, + "Castile's": null, + "Castillo": [["M"]], + "Castillo's": null, + "casting's": null, + "castle": [["G", "M", "S", "D"]], + "castling": null, + "castle's": null, + "castles": null, + "castled": null, + "castoff": [["S"]], + "castoffs": null, + "Castor": [["M"]], + "Castor's": null, + "castor's": null, + "castrate": [["D", "S", "N", "G", "X"]], + "castrated": null, + "castrates": null, + "castration": [["M"]], + "castrating": null, + "castrations": null, + "castration's": null, + "Castries": [["M"]], + "Castries's": null, + "Castro": [["M"]], + "Castro's": null, + "recasts": null, + "casualness": [["S", "M"]], + "casualnesses": null, + "casualness's": null, + "casual": [["S", "Y", "P"]], + "casuals": null, + "casually": null, + "casualty": [["S", "M"]], + "casualties": null, + "casualty's": null, + "casuistic": null, + "casuist": [["M", "S"]], + "casuist's": null, + "casuists": null, + "casuistry": [["S", "M"]], + "casuistries": null, + "casuistry's": null, + "cataclysmal": null, + "cataclysmic": null, + "cataclysm": [["M", "S"]], + "cataclysm's": null, + "cataclysms": null, + "catacomb": [["M", "S"]], + "catacomb's": null, + "catacombs": null, + "catafalque": [["S", "M"]], + "catafalques": null, + "catafalque's": null, + "Catalan": [["M", "S"]], + "Catalan's": null, + "Catalans": null, + "catalepsy": [["M", "S"]], + "catalepsy's": null, + "catalepsies": null, + "cataleptic": [["S"]], + "cataleptics": null, + "Catalina": [["M"]], + "Catalina's": null, + "cataloger": [["M"]], + "cataloger's": null, + "catalog": [["S", "D", "R", "M", "Z", "G"]], + "catalogs": null, + "cataloged": null, + "catalog's": null, + "catalogers": null, + "cataloging": null, + "Catalonia": [["M"]], + "Catalonia's": null, + "catalpa": [["S", "M"]], + "catalpas": null, + "catalpa's": null, + "catalysis": [["M"]], + "catalysis's": null, + "catalyst": [["S", "M"]], + "catalysts": null, + "catalyst's": null, + "catalytic": null, + "catalytically": null, + "catalyze": [["D", "S", "G"]], + "catalyzed": null, + "catalyzes": null, + "catalyzing": null, + "catamaran": [["M", "S"]], + "catamaran's": null, + "catamarans": null, + "catapult": [["M", "G", "S", "D"]], + "catapult's": null, + "catapulting": null, + "catapults": null, + "catapulted": null, + "cataract": [["M", "S"]], + "cataract's": null, + "cataracts": null, + "Catarina": [["M"]], + "Catarina's": null, + "catarrh": [["M"]], + "catarrh's": null, + "catarrhs": null, + "catastrophe": [["S", "M"]], + "catastrophes": null, + "catastrophe's": null, + "catastrophic": null, + "catastrophically": null, + "catatonia": [["M", "S"]], + "catatonia's": null, + "catatonias": null, + "catatonic": [["S"]], + "catatonics": null, + "Catawba": [["M"]], + "Catawba's": null, + "catbird": [["M", "S"]], + "catbird's": null, + "catbirds": null, + "catboat": [["S", "M"]], + "catboats": null, + "catboat's": null, + "catcall": [["S", "M", "D", "G"]], + "catcalls": null, + "catcall's": null, + "catcalled": null, + "catcalling": null, + "catchable": [["U"]], + "uncatchable": null, + "catchall": [["M", "S"]], + "catchall's": null, + "catchalls": null, + "catch": [["B", "R", "S", "J", "L", "G", "Z"]], + "catcher": [["M"]], + "catches": null, + "catchings": null, + "catchment": [["S", "M"]], + "catching": null, + "catchers": null, + "catcher's": null, + "catchments": null, + "catchment's": null, + "catchpenny": [["S"]], + "catchpennies": null, + "catchphrase": [["S"]], + "catchphrases": null, + "catchup": [["M", "S"]], + "catchup's": null, + "catchups": null, + "catchword": [["M", "S"]], + "catchword's": null, + "catchwords": null, + "catchy": [["T", "R"]], + "catchiest": null, + "catchier": null, + "catechism": [["M", "S"]], + "catechism's": null, + "catechisms": null, + "catechist": [["S", "M"]], + "catechists": null, + "catechist's": null, + "catechize": [["S", "D", "G"]], + "catechizes": null, + "catechized": null, + "catechizing": null, + "catecholamine": [["M", "S"]], + "catecholamine's": null, + "catecholamines": null, + "categoric": null, + "categorical": [["Y"]], + "categorically": null, + "categorization": [["M", "S"]], + "categorization's": null, + "categorizations": null, + "categorized": [["A", "U"]], + "recategorized": null, + "uncategorized": null, + "categorize": [["R", "S", "D", "G", "Z"]], + "categorizer": null, + "categorizes": null, + "categorizing": null, + "categorizers": null, + "category": [["M", "S"]], + "category's": null, + "categories": null, + "Cate": [["M"]], + "Cate's": null, + "catenate": [["N", "F"]], + "catenation": [["M", "F"]], + "concatenation": null, + "concatenate": [["X", "S", "D", "G"]], + "catenation's": null, + "concatenation's": null, + "catercorner": null, + "caterer": [["M"]], + "caterer's": null, + "cater": [["G", "R", "D", "Z"]], + "catering": [["M"]], + "catered": null, + "caterers": null, + "Caterina": [["M"]], + "Caterina's": null, + "catering's": null, + "Caterpillar": null, + "caterpillar": [["S", "M"]], + "caterpillars": null, + "caterpillar's": null, + "caterwaul": [["D", "S", "G"]], + "caterwauled": null, + "caterwauls": null, + "caterwauling": null, + "catfish": [["M", "S"]], + "catfish's": null, + "catfishes": null, + "catgut": [["S", "M"]], + "catguts": null, + "catgut's": null, + "Catha": [["M"]], + "Catha's": null, + "Catharina": [["M"]], + "Catharina's": null, + "Catharine": [["M"]], + "Catharine's": null, + "catharses": null, + "catharsis": [["M"]], + "catharsis's": null, + "cathartic": [["S"]], + "cathartics": null, + "Cathay": [["M"]], + "Cathay's": null, + "cathedral": [["S", "M"]], + "cathedrals": null, + "cathedral's": null, + "Cathee": [["M"]], + "Cathee's": null, + "Catherina": [["M"]], + "Catherina's": null, + "Catherine": [["M"]], + "Catherine's": null, + "Catherin": [["M"]], + "Catherin's": null, + "Cather": [["M"]], + "Cather's": null, + "Cathe": [["R", "M"]], + "Cathe's": null, + "catheterize": [["G", "S", "D"]], + "catheterizing": null, + "catheterizes": null, + "catheterized": null, + "catheter": [["S", "M"]], + "catheters": null, + "catheter's": null, + "Cathie": [["M"]], + "Cathie's": null, + "Cathi": [["M"]], + "Cathi's": null, + "Cathleen": [["M"]], + "Cathleen's": null, + "Cathlene": [["M"]], + "Cathlene's": null, + "cathode": [["M", "S"]], + "cathode's": null, + "cathodes": null, + "cathodic": null, + "catholicism": null, + "Catholicism": [["S", "M"]], + "Catholicisms": null, + "Catholicism's": null, + "catholicity": [["M", "S"]], + "catholicity's": null, + "catholicities": null, + "catholic": [["M", "S"]], + "catholic's": null, + "catholics": null, + "Catholic": [["S"]], + "Catholics": null, + "Cathrine": [["M"]], + "Cathrine's": null, + "Cathrin": [["M"]], + "Cathrin's": null, + "Cathryn": [["M"]], + "Cathryn's": null, + "Cathyleen": [["M"]], + "Cathyleen's": null, + "Cathy": [["M"]], + "Cathy's": null, + "Catie": [["M"]], + "Catie's": null, + "Catiline": [["M"]], + "Catiline's": null, + "Cati": [["M"]], + "Cati's": null, + "Catina": [["M"]], + "Catina's": null, + "cationic": null, + "cation": [["M", "S"]], + "cation's": null, + "cations": null, + "catkin": [["S", "M"]], + "catkins": null, + "catkin's": null, + "Catlaina": [["M"]], + "Catlaina's": null, + "Catlee": [["M"]], + "Catlee's": null, + "catlike": null, + "Catlin": [["M"]], + "Catlin's": null, + "catnapped": null, + "catnapping": null, + "catnap": [["S", "M"]], + "catnaps": null, + "catnap's": null, + "catnip": [["M", "S"]], + "catnip's": null, + "catnips": null, + "Cato": [["M"]], + "Cato's": null, + "Catrina": [["M"]], + "Catrina's": null, + "Catriona": [["M"]], + "Catriona's": null, + "Catskill": [["S", "M"]], + "Catskills": null, + "Catskill's": null, + "cat": [["S", "M", "R", "Z"]], + "cats": null, + "cat's": null, + "caters": null, + "catsup's": null, + "cattail": [["S", "M"]], + "cattails": null, + "cattail's": null, + "catted": null, + "cattery": [["M"]], + "cattery's": null, + "cattily": null, + "cattiness": [["S", "M"]], + "cattinesses": null, + "cattiness's": null, + "catting": null, + "cattle": [["M"]], + "cattle's": null, + "cattleman": [["M"]], + "cattleman's": null, + "cattlemen": null, + "Catt": [["M"]], + "Catt's": null, + "catty": [["P", "R", "S", "T"]], + "cattier": null, + "catties": null, + "cattiest": null, + "Catullus": [["M"]], + "Catullus's": null, + "CATV": null, + "catwalk": [["M", "S"]], + "catwalk's": null, + "catwalks": null, + "Caty": [["M"]], + "Caty's": null, + "Caucasian": [["S"]], + "Caucasians": null, + "Caucasoid": [["S"]], + "Caucasoids": null, + "Caucasus": [["M"]], + "Caucasus's": null, + "Cauchy": [["M"]], + "Cauchy's": null, + "caucus": [["S", "D", "M", "G"]], + "caucuses": null, + "caucused": null, + "caucus's": null, + "caucusing": null, + "caudal": [["Y"]], + "caudally": null, + "caught": [["U"]], + "uncaught": null, + "cauldron": [["M", "S"]], + "cauldron's": null, + "cauldrons": null, + "cauliflower": [["M", "S"]], + "cauliflower's": null, + "cauliflowers": null, + "caulker": [["M"]], + "caulker's": null, + "caulk": [["J", "S", "G", "Z", "R", "D"]], + "caulkings": null, + "caulks": null, + "caulking": null, + "caulkers": null, + "caulked": null, + "causality": [["S", "M"]], + "causalities": null, + "causality's": null, + "causal": [["Y", "S"]], + "causally": null, + "causals": null, + "causate": [["X", "V", "N"]], + "causations": null, + "causative": [["S", "Y"]], + "causation": [["M"]], + "causation's": null, + "causatives": null, + "causatively": null, + "cause": [["D", "S", "R", "G", "M", "Z"]], + "caused": [["U"]], + "causes": null, + "causer": [["M"]], + "causing": null, + "cause's": null, + "causers": null, + "uncaused": null, + "causeless": null, + "causerie": [["M", "S"]], + "causerie's": null, + "causeries": null, + "causer's": null, + "causeway": [["S", "G", "D", "M"]], + "causeways": null, + "causewaying": null, + "causewayed": null, + "causeway's": null, + "caustically": null, + "causticity": [["M", "S"]], + "causticity's": null, + "causticities": null, + "caustic": [["Y", "S"]], + "causticly": null, + "caustics": null, + "cauterization": [["S", "M"]], + "cauterizations": null, + "cauterization's": null, + "cauterized": [["U"]], + "uncauterized": [["M", "S"]], + "cauterize": [["G", "S", "D"]], + "cauterizing": null, + "cauterizes": null, + "cautionary": null, + "cautioner": [["M"]], + "cautioner's": null, + "caution": [["G", "J", "D", "R", "M", "S", "Z"]], + "cautioning": null, + "cautionings": null, + "cautioned": null, + "caution's": null, + "cautions": null, + "cautioners": null, + "cautiousness's": [["I"]], + "incautiousness's": null, + "cautiousness": [["S", "M"]], + "cautiousnesses": null, + "cautious": [["P", "I", "Y"]], + "incautiousness": null, + "incautious": null, + "incautiously": null, + "cautiously": null, + "cavalcade": [["M", "S"]], + "cavalcade's": null, + "cavalcades": null, + "cavalierness": [["M"]], + "cavalierness's": null, + "cavalier": [["S", "G", "Y", "D", "P"]], + "cavaliers": null, + "cavaliering": null, + "cavalierly": null, + "cavaliered": null, + "cavalryman": [["M"]], + "cavalryman's": null, + "cavalrymen": null, + "cavalry": [["M", "S"]], + "cavalry's": null, + "cavalries": null, + "caveat": [["S", "M"]], + "caveats": null, + "caveat's": null, + "caveatted": null, + "caveatting": null, + "cave": [["G", "F", "R", "S", "D"]], + "caving": [["M", "S"]], + "concaving": null, + "concave": [["Y", "P"]], + "concaver": null, + "concaves": null, + "concaved": null, + "caver": [["M"]], + "caves": null, + "caved": null, + "caveman": [["M"]], + "caveman's": null, + "cavemen": null, + "Cavendish": [["M"]], + "Cavendish's": null, + "caver's": null, + "cavern": [["G", "S", "D", "M"]], + "caverning": null, + "caverns": null, + "caverned": null, + "cavern's": null, + "cavernous": [["Y"]], + "cavernously": null, + "cave's": null, + "caviar": [["M", "S"]], + "caviar's": null, + "caviars": null, + "caviler": [["M"]], + "caviler's": null, + "cavil": [["S", "J", "R", "D", "G", "Z"]], + "cavils": null, + "cavilings": null, + "caviled": null, + "caviling": null, + "cavilers": null, + "caving's": null, + "cavings": null, + "cavity": [["M", "F", "S"]], + "cavity's": null, + "concavity's": null, + "concavity": null, + "concavities": null, + "cavities": null, + "cavort": [["S", "D", "G"]], + "cavorts": null, + "cavorted": null, + "cavorting": null, + "Cavour": [["M"]], + "Cavour's": null, + "caw": [["S", "M", "D", "G"]], + "caws": null, + "caw's": null, + "cawed": null, + "cawing": null, + "Caxton": [["M"]], + "Caxton's": null, + "Caye": [["M"]], + "Caye's": null, + "Cayenne": [["M"]], + "Cayenne's": null, + "cayenne": [["S", "M"]], + "cayennes": null, + "cayenne's": null, + "Cayla": [["M"]], + "Cayla's": null, + "Cayman": [["M"]], + "Cayman's": null, + "cayman": [["S", "M"]], + "caymans": null, + "cayman's": null, + "cay's": null, + "cay": [["S", "C"]], + "cays": null, + "decays": null, + "decay": [["G", "R", "D"]], + "Cayuga": [["M"]], + "Cayuga's": null, + "cayuse": [["S", "M"]], + "cayuses": null, + "cayuse's": null, + "Caz": [["M"]], + "Caz's": null, + "Cazzie": [["M"]], + "Cazzie's": null, + "c": [["B"]], + "CB": null, + "CBC": null, + "Cb": [["M"]], + "Cb's": null, + "CBS": null, + "cc": null, + "Cchaddie": [["M"]], + "Cchaddie's": null, + "CCTV": null, + "CCU": null, + "CD": null, + "CDC": [["M"]], + "CDC's": null, + "Cd": [["M"]], + "Cd's": null, + "CDT": null, + "Ce": null, + "cease": [["D", "S", "C", "G"]], + "ceased": null, + "deceased": null, + "ceases": null, + "deceases": null, + "decease": [["M"]], + "deceasing": null, + "ceasing": [["U"]], + "ceasefire": [["S"]], + "ceasefires": null, + "ceaselessness": [["S", "M"]], + "ceaselessnesses": null, + "ceaselessness's": null, + "ceaseless": [["Y", "P"]], + "ceaselessly": null, + "unceasing": [["Y"]], + "Ceausescu": [["M"]], + "Ceausescu's": null, + "Cebuano": [["M"]], + "Cebuano's": null, + "Cebu": [["M"]], + "Cebu's": null, + "ceca": null, + "cecal": null, + "Cecelia": [["M"]], + "Cecelia's": null, + "Cece": [["M"]], + "Cece's": null, + "Cecile": [["M"]], + "Cecile's": null, + "Ceciley": [["M"]], + "Ceciley's": null, + "Cecilia": [["M"]], + "Cecilia's": null, + "Cecilio": [["M"]], + "Cecilio's": null, + "Cecilius": [["M"]], + "Cecilius's": null, + "Cecilla": [["M"]], + "Cecilla's": null, + "Cecil": [["M"]], + "Cecil's": null, + "Cecily": [["M"]], + "Cecily's": null, + "cecum": [["M"]], + "cecum's": null, + "cedar": [["S", "M"]], + "cedars": null, + "cedar's": null, + "ceded": [["A"]], + "receded": null, + "cede": [["F", "R", "S", "D", "G"]], + "concede": null, + "conceder": null, + "concedes": null, + "conceded": [["Y"]], + "conceding": null, + "ceder": [["S", "M"]], + "cedes": [["A"]], + "ceding": [["A"]], + "ceder's": [["F"]], + "conceder's": null, + "ceders": null, + "recedes": null, + "cedilla": [["S", "M"]], + "cedillas": null, + "cedilla's": null, + "receding": null, + "Ced": [["M"]], + "Ced's": null, + "Cedric": [["M"]], + "Cedric's": null, + "ceilidh": [["M"]], + "ceilidh's": null, + "ceiling": [["M", "D", "S"]], + "ceiling's": null, + "ceilinged": null, + "ceilings": null, + "Ceil": [["M"]], + "Ceil's": null, + "celandine": [["M", "S"]], + "celandine's": null, + "celandines": null, + "Celanese": [["M"]], + "Celanese's": null, + "Celebes's": null, + "celebrant": [["M", "S"]], + "celebrant's": null, + "celebrants": null, + "celebratedness": [["M"]], + "celebratedness's": null, + "celebrated": [["P"]], + "celebrate": [["X", "S", "D", "G", "N"]], + "celebrations": null, + "celebrates": null, + "celebrating": null, + "celebration": [["M"]], + "celebration's": null, + "celebrator": [["M", "S"]], + "celebrator's": null, + "celebrators": null, + "celebratory": null, + "celebrity": [["M", "S"]], + "celebrity's": null, + "celebrities": null, + "Cele": [["M"]], + "Cele's": null, + "Celene": [["M"]], + "Celene's": null, + "celerity": [["S", "M"]], + "celerities": null, + "celerity's": null, + "celery": [["S", "M"]], + "celeries": null, + "celery's": null, + "Celesta": [["M"]], + "Celesta's": null, + "celesta": [["S", "M"]], + "celestas": null, + "celesta's": null, + "Celeste": [["M"]], + "Celeste's": null, + "celestial": [["Y", "S"]], + "celestially": null, + "celestials": null, + "Celestia": [["M"]], + "Celestia's": null, + "Celestina": [["M"]], + "Celestina's": null, + "Celestine": [["M"]], + "Celestine's": null, + "Celestyna": [["M"]], + "Celestyna's": null, + "Celestyn": [["M"]], + "Celestyn's": null, + "Celia": [["M"]], + "Celia's": null, + "celibacy": [["M", "S"]], + "celibacy's": null, + "celibacies": null, + "celibate": [["S", "M"]], + "celibates": null, + "celibate's": null, + "Celie": [["M"]], + "Celie's": null, + "Celina": [["M"]], + "Celina's": null, + "Celinda": [["M"]], + "Celinda's": null, + "Celine": [["M"]], + "Celine's": null, + "Celinka": [["M"]], + "Celinka's": null, + "Celisse": [["M"]], + "Celisse's": null, + "Celka": [["M"]], + "Celka's": null, + "cellarer": [["M"]], + "cellarer's": null, + "cellar": [["R", "D", "M", "G", "S"]], + "cellared": null, + "cellar's": null, + "cellaring": null, + "cellars": null, + "Celle": [["M"]], + "Celle's": null, + "cell": [["G", "M", "D", "S"]], + "celling": null, + "cell's": null, + "celled": null, + "cells": null, + "Cellini": [["M"]], + "Cellini's": null, + "cellist": [["S", "M"]], + "cellists": null, + "cellist's": null, + "Cello": [["M"]], + "Cello's": null, + "cello": [["M", "S"]], + "cello's": null, + "cellos": null, + "cellophane": [["S", "M"]], + "cellophanes": null, + "cellophane's": null, + "cellphone": [["S"]], + "cellphones": null, + "cellular": [["S", "Y"]], + "cellulars": null, + "cellularly": null, + "cellulite": [["S"]], + "cellulites": null, + "celluloid": [["S", "M"]], + "celluloids": null, + "celluloid's": null, + "cellulose": [["S", "M"]], + "celluloses": null, + "cellulose's": null, + "Celsius": [["S"]], + "Celsiuses": null, + "Celtic": [["S", "M"]], + "Celtics": null, + "Celtic's": null, + "Celt": [["M", "S"]], + "Celt's": null, + "Celts": null, + "cementa": null, + "cementer": [["M"]], + "cementer's": null, + "cementum": [["S", "M"]], + "cementums": null, + "cementum's": null, + "cement": [["Z", "G", "M", "R", "D", "S"]], + "cementers": null, + "cementing": null, + "cement's": null, + "cemented": null, + "cements": null, + "cemetery": [["M", "S"]], + "cemetery's": null, + "cemeteries": null, + "cenobite": [["M", "S"]], + "cenobite's": null, + "cenobites": null, + "cenobitic": null, + "cenotaph": [["M"]], + "cenotaph's": null, + "cenotaphs": null, + "Cenozoic": null, + "censer": [["M", "S"]], + "censer's": null, + "censers": null, + "censored": [["U"]], + "uncensored": null, + "censor": [["G", "D", "M", "S"]], + "censoring": null, + "censor's": null, + "censors": null, + "censorial": null, + "censoriousness": [["M", "S"]], + "censoriousness's": null, + "censoriousnesses": null, + "censorious": [["Y", "P"]], + "censoriously": null, + "censorship": [["M", "S"]], + "censorship's": null, + "censorships": null, + "censure": [["B", "R", "S", "D", "Z", "M", "G"]], + "censurable": null, + "censurer": [["M"]], + "censures": null, + "censured": null, + "censurers": null, + "censure's": null, + "censuring": null, + "censurer's": null, + "census": [["S", "D", "M", "G"]], + "censuses": null, + "censused": null, + "census's": null, + "censusing": null, + "centaur": [["S", "M"]], + "centaurs": null, + "centaur's": null, + "Centaurus": [["M"]], + "Centaurus's": null, + "centavo": [["S", "M"]], + "centavos": null, + "centavo's": null, + "centenarian": [["M", "S"]], + "centenarian's": null, + "centenarians": null, + "centenary": [["S"]], + "centenaries": null, + "centennial": [["Y", "S"]], + "centennially": null, + "centennials": null, + "center": [["A", "C"]], + "recenter": null, + "decenter": null, + "centerboard": [["S", "M"]], + "centerboards": null, + "centerboard's": null, + "centered": null, + "centerer": [["S"]], + "centerers": null, + "centerfold": [["S"]], + "centerfolds": null, + "centering": [["S", "M"]], + "centerings": null, + "centering's": null, + "centerline": [["S", "M"]], + "centerlines": null, + "centerline's": null, + "centerpiece": [["S", "M"]], + "centerpieces": null, + "centerpiece's": null, + "center's": null, + "Centigrade": null, + "centigrade": [["S"]], + "centigrades": null, + "centigram": [["S", "M"]], + "centigrams": null, + "centigram's": null, + "centiliter": [["M", "S"]], + "centiliter's": null, + "centiliters": null, + "centime": [["S", "M"]], + "centimes": null, + "centime's": null, + "centimeter": [["S", "M"]], + "centimeters": null, + "centimeter's": null, + "centipede": [["M", "S"]], + "centipede's": null, + "centipedes": null, + "Centralia": [["M"]], + "Centralia's": null, + "centralism": [["M"]], + "centralism's": null, + "centralist": [["M"]], + "centralist's": null, + "centrality": [["M", "S"]], + "centrality's": null, + "centralities": null, + "centralization": [["C", "A", "M", "S"]], + "decentralization": null, + "decentralization's": null, + "decentralizations": null, + "recentralization": null, + "recentralization's": null, + "recentralizations": null, + "centralization's": null, + "centralizations": null, + "centralize": [["C", "G", "S", "D"]], + "decentralize": null, + "decentralizing": null, + "decentralizes": null, + "decentralized": null, + "centralizing": null, + "centralizes": [["A"]], + "centralized": null, + "centralizer": [["S", "M"]], + "centralizers": null, + "centralizer's": null, + "recentralizes": null, + "central": [["S", "T", "R", "Y"]], + "centrals": null, + "centralest": null, + "centraler": null, + "centrally": null, + "centrefold's": null, + "Centrex": null, + "CENTREX": [["M"]], + "CENTREX's": null, + "centric": [["F"]], + "concentric": null, + "centrifugal": [["S", "Y"]], + "centrifugals": null, + "centrifugally": null, + "centrifugate": [["N", "M"]], + "centrifugation": [["M"]], + "centrifugate's": null, + "centrifugation's": null, + "centrifuge": [["G", "M", "S", "D"]], + "centrifuging": null, + "centrifuge's": null, + "centrifuges": null, + "centrifuged": null, + "centripetal": [["Y"]], + "centripetally": null, + "centrist": [["M", "S"]], + "centrist's": null, + "centrists": null, + "centroid": [["M", "S"]], + "centroid's": null, + "centroids": null, + "cent": [["S", "Z", "M", "R"]], + "cents": null, + "centers": null, + "cent's": null, + "centurion": [["M", "S"]], + "centurion's": null, + "centurions": null, + "century": [["M", "S"]], + "century's": null, + "centuries": null, + "CEO": null, + "cephalic": [["S"]], + "cephalics": null, + "Cepheid": null, + "Cepheus": [["M"]], + "Cepheus's": null, + "ceramicist": [["S"]], + "ceramicists": null, + "ceramic": [["M", "S"]], + "ceramic's": null, + "ceramics": null, + "ceramist": [["M", "S"]], + "ceramist's": null, + "ceramists": null, + "cerate": [["M", "D"]], + "cerate's": null, + "cerated": null, + "Cerberus": [["M"]], + "Cerberus's": null, + "cereal": [["M", "S"]], + "cereal's": null, + "cereals": null, + "cerebellar": null, + "cerebellum": [["M", "S"]], + "cerebellum's": null, + "cerebellums": null, + "cerebra": null, + "cerebral": [["S", "Y"]], + "cerebrals": null, + "cerebrally": null, + "cerebrate": [["X", "S", "D", "G", "N"]], + "cerebrations": null, + "cerebrates": null, + "cerebrated": null, + "cerebrating": null, + "cerebration": [["M"]], + "cerebration's": null, + "cerebrum": [["M", "S"]], + "cerebrum's": null, + "cerebrums": null, + "cerement": [["S", "M"]], + "cerements": null, + "cerement's": null, + "ceremonial": [["Y", "S", "P"]], + "ceremonially": null, + "ceremonials": null, + "ceremonialness": null, + "ceremoniousness": [["M", "S"]], + "ceremoniousness's": [["U"]], + "ceremoniousnesses": null, + "unceremoniousness's": null, + "ceremonious": [["Y", "U", "P"]], + "ceremoniously": null, + "unceremoniously": null, + "unceremonious": null, + "unceremoniousness": null, + "ceremony": [["M", "S"]], + "ceremony's": null, + "ceremonies": null, + "Cerenkov": [["M"]], + "Cerenkov's": null, + "Ceres": [["M"]], + "Ceres's": null, + "Cerf": [["M"]], + "Cerf's": null, + "cerise": [["S", "M"]], + "cerises": null, + "cerise's": null, + "cerium": [["M", "S"]], + "cerium's": null, + "ceriums": null, + "cermet": [["S", "M"]], + "cermets": null, + "cermet's": null, + "CERN": [["M"]], + "CERN's": null, + "certainer": null, + "certainest": null, + "certainty": [["U", "M", "S"]], + "uncertainty": null, + "uncertainty's": null, + "uncertainties": null, + "certainty's": null, + "certainties": null, + "certain": [["U", "Y"]], + "uncertain": [["P"]], + "uncertainly": null, + "certainly": null, + "cert": [["F", "S"]], + "concert": [["E", "D", "S", "G"]], + "concerts": null, + "certs": null, + "certifiable": null, + "certifiably": null, + "certificate": [["S", "D", "G", "M"]], + "certificates": null, + "certificated": null, + "certificating": null, + "certificate's": null, + "certification": [["A", "M", "C"]], + "recertification": null, + "recertification's": null, + "certification's": null, + "decertification's": null, + "decertification": null, + "certified": [["U"]], + "uncertified": null, + "certifier": [["M"]], + "certifier's": null, + "certify": [["D", "R", "S", "Z", "G", "N", "X"]], + "certifies": null, + "certifiers": null, + "certifying": null, + "certifications": null, + "certiorari": [["M"]], + "certiorari's": null, + "certitude": [["I", "S", "M"]], + "incertitude": null, + "incertitudes": null, + "incertitude's": null, + "certitudes": null, + "certitude's": null, + "cerulean": [["M", "S"]], + "cerulean's": null, + "ceruleans": null, + "Cervantes": [["M"]], + "Cervantes's": null, + "cervical": null, + "cervices": [["M"]], + "cervices's": null, + "cervix": [["M"]], + "cervix's": null, + "Cesarean": null, + "cesarean": [["S"]], + "cesareans": null, + "Cesare": [["M"]], + "Cesare's": null, + "Cesar": [["M"]], + "Cesar's": null, + "Cesaro": [["M"]], + "Cesaro's": null, + "cesium": [["M", "S"]], + "cesium's": null, + "cesiums": null, + "cessation": [["S", "M"]], + "cessations": null, + "cessation's": null, + "cession": [["F", "A", "M", "S", "K"]], + "concession": [["R"]], + "concession's": null, + "concessions": null, + "recession": null, + "recession's": null, + "recessions": null, + "cession's": null, + "procession's": null, + "cessions": null, + "processions": null, + "procession": [["G", "D"]], + "Cessna": [["M"]], + "Cessna's": null, + "cesspit": [["M"]], + "cesspit's": null, + "cesspool": [["S", "M"]], + "cesspools": null, + "cesspool's": null, + "Cesya": [["M"]], + "Cesya's": null, + "cetacean": [["S"]], + "cetaceans": null, + "cetera": [["S"]], + "ceteras": null, + "Cetus": [["M"]], + "Cetus's": null, + "Ceylonese": null, + "Ceylon": [["M"]], + "Ceylon's": null, + "Cezanne": [["S"]], + "Cezannes": null, + "cf": null, + "CF": null, + "CFC": null, + "Cf": [["M"]], + "Cf's": null, + "CFO": null, + "cg": null, + "Chablis": [["S", "M"]], + "Chablises": null, + "Chablis's": null, + "Chaddie": [["M"]], + "Chaddie's": null, + "Chadd": [["M"]], + "Chadd's": null, + "Chaddy": [["M"]], + "Chaddy's": null, + "Chadian": [["S"]], + "Chadians": null, + "Chad": [["M"]], + "Chad's": null, + "Chadwick": [["M"]], + "Chadwick's": null, + "chafe": [["G", "D", "S", "R"]], + "chafing": null, + "chafed": null, + "chafes": null, + "chafer": [["M"]], + "chafer's": null, + "chaffer": [["D", "R", "G"]], + "chaffered": null, + "chafferer": [["M"]], + "chaffering": null, + "chafferer's": null, + "Chaffey": [["M"]], + "Chaffey's": null, + "chaff": [["G", "R", "D", "M", "S"]], + "chaffing": null, + "chaffed": null, + "chaff's": null, + "chaffs": null, + "chaffinch": [["S", "M"]], + "chaffinches": null, + "chaffinch's": null, + "Chagall": [["M"]], + "Chagall's": null, + "chagrin": [["D", "G", "M", "S"]], + "chagrined": null, + "chagrining": null, + "chagrin's": null, + "chagrins": null, + "Chaim": [["M"]], + "Chaim's": null, + "chainlike": null, + "chain's": null, + "chainsaw": [["S", "G", "D"]], + "chainsaws": null, + "chainsawing": null, + "chainsawed": null, + "chain": [["S", "G", "U", "D"]], + "chains": null, + "unchains": null, + "chaining": null, + "unchaining": null, + "unchain": null, + "unchained": null, + "chained": null, + "chairlady": [["M"]], + "chairlady's": null, + "chairlift": [["M", "S"]], + "chairlift's": null, + "chairlifts": null, + "chairman": [["M", "D", "G", "S"]], + "chairman's": null, + "chairmaned": null, + "chairmaning": null, + "chairmans": null, + "chairmanship": [["M", "S"]], + "chairmanship's": null, + "chairmanships": null, + "chairmen": null, + "chairperson": [["M", "S"]], + "chairperson's": null, + "chairpersons": null, + "chair": [["S", "G", "D", "M"]], + "chairs": null, + "chairing": null, + "chaired": null, + "chair's": null, + "chairwoman": [["M"]], + "chairwoman's": null, + "chairwomen": null, + "chaise": [["S", "M"]], + "chaises": null, + "chaise's": null, + "chalcedony": [["M", "S"]], + "chalcedony's": null, + "chalcedonies": null, + "Chaldea": [["M"]], + "Chaldea's": null, + "Chaldean": [["M"]], + "Chaldean's": null, + "chalet": [["S", "M"]], + "chalets": null, + "chalet's": null, + "chalice": [["D", "S", "M"]], + "chaliced": null, + "chalices": null, + "chalice's": null, + "chalkboard": [["S", "M"]], + "chalkboards": null, + "chalkboard's": null, + "chalk": [["D", "S", "M", "G"]], + "chalked": null, + "chalks": null, + "chalk's": null, + "chalking": null, + "chalkiness": [["S"]], + "chalkinesses": null, + "chalkline": null, + "chalky": [["R", "P", "T"]], + "chalkier": null, + "chalkiest": null, + "challenged": [["U"]], + "unchallenged": null, + "challenger": [["M"]], + "challenger's": null, + "challenge": [["Z", "G", "S", "R", "D"]], + "challengers": null, + "challenging": [["Y"]], + "challenges": null, + "challengingly": null, + "challis": [["S", "M"]], + "challises": null, + "challis's": null, + "Chalmers": null, + "chamberer": [["M"]], + "chamberer's": null, + "Chamberlain": [["M"]], + "Chamberlain's": null, + "chamberlain": [["M", "S"]], + "chamberlain's": null, + "chamberlains": null, + "chambermaid": [["M", "S"]], + "chambermaid's": null, + "chambermaids": null, + "chamberpot": [["S"]], + "chamberpots": null, + "Chambers": [["M"]], + "Chambers's": null, + "chamber": [["S", "Z", "G", "D", "R", "M"]], + "chambers": null, + "chamberers": null, + "chambering": null, + "chambered": null, + "chamber's": null, + "chambray": [["M", "S"]], + "chambray's": null, + "chambrays": null, + "chameleon": [["S", "M"]], + "chameleons": null, + "chameleon's": null, + "chamfer": [["D", "M", "G", "S"]], + "chamfered": null, + "chamfer's": null, + "chamfering": null, + "chamfers": null, + "chammy's": null, + "chamois": [["D", "S", "M", "G"]], + "chamoised": null, + "chamoises": null, + "chamois's": null, + "chamoising": null, + "chamomile": [["M", "S"]], + "chamomile's": null, + "chamomiles": null, + "champagne": [["M", "S"]], + "champagne's": null, + "champagnes": null, + "champaign": [["M"]], + "champaign's": null, + "champ": [["D", "G", "S", "Z"]], + "champed": null, + "champing": null, + "champs": null, + "champers": null, + "champion": [["M", "D", "G", "S"]], + "champion's": null, + "championed": null, + "championing": null, + "champions": null, + "championship": [["M", "S"]], + "championship's": null, + "championships": null, + "Champlain": [["M"]], + "Champlain's": null, + "chanced": [["M"]], + "chanced's": null, + "chance": [["G", "M", "R", "S", "D"]], + "chancing": [["M"]], + "chance's": null, + "chancer": null, + "chances": null, + "chancellery": [["S", "M"]], + "chancelleries": null, + "chancellery's": null, + "chancellorship": [["S", "M"]], + "chancellorships": null, + "chancellorship's": null, + "chancellor": [["S", "M"]], + "chancellors": null, + "chancellor's": null, + "Chancellorsville": [["M"]], + "Chancellorsville's": null, + "chancel": [["S", "M"]], + "chancels": null, + "chancel's": null, + "Chance": [["M"]], + "Chance's": null, + "chancery": [["S", "M"]], + "chanceries": null, + "chancery's": null, + "Chancey": [["M"]], + "Chancey's": null, + "chanciness": [["S"]], + "chancinesses": null, + "chancing's": null, + "chancre": [["S", "M"]], + "chancres": null, + "chancre's": null, + "chancy": [["R", "P", "T"]], + "chancier": null, + "chanciest": null, + "Chandal": [["M"]], + "Chandal's": null, + "Chanda": [["M"]], + "Chanda's": null, + "chandelier": [["S", "M"]], + "chandeliers": null, + "chandelier's": null, + "Chandigarh": [["M"]], + "Chandigarh's": null, + "Chandler": [["M"]], + "Chandler's": null, + "chandler": [["M", "S"]], + "chandler's": null, + "chandlers": null, + "Chandragupta": [["M"]], + "Chandragupta's": null, + "Chandra": [["M"]], + "Chandra's": null, + "Chandrasekhar": [["M"]], + "Chandrasekhar's": null, + "Chandy": [["M"]], + "Chandy's": null, + "Chanel": [["M"]], + "Chanel's": null, + "Chane": [["M"]], + "Chane's": null, + "Chaney": [["M"]], + "Chaney's": null, + "Changchun": [["M"]], + "Changchun's": null, + "changeabilities": null, + "changeability": [["U", "M"]], + "unchangeability": null, + "unchangeability's": null, + "changeability's": null, + "changeableness": [["S", "M"]], + "changeablenesses": null, + "changeableness's": null, + "changeable": [["U"]], + "unchangeable": null, + "changeably": [["U"]], + "unchangeably": null, + "changed": [["U"]], + "unchanged": null, + "change": [["G", "Z", "R", "S", "D"]], + "changing": [["U"]], + "changers": null, + "changer": [["M"]], + "changes": null, + "changeless": null, + "changeling": [["M"]], + "changeling's": null, + "changeover": [["S", "M"]], + "changeovers": null, + "changeover's": null, + "changer's": null, + "unchanging": [["P", "Y"]], + "Chang": [["M"]], + "Chang's": null, + "Changsha": [["M"]], + "Changsha's": null, + "Chan": [["M"]], + "Chan's": null, + "Channa": [["M"]], + "Channa's": null, + "channeler": [["M"]], + "channeler's": null, + "channeling": [["M"]], + "channeling's": null, + "channelization": [["S", "M"]], + "channelizations": null, + "channelization's": null, + "channelize": [["G", "D", "S"]], + "channelizing": null, + "channelized": null, + "channelizes": null, + "channellings": null, + "channel": [["M", "D", "R", "Z", "S", "G"]], + "channel's": null, + "channeled": null, + "channelers": null, + "channels": null, + "Channing": [["M"]], + "Channing's": null, + "chanson": [["S", "M"]], + "chansons": null, + "chanson's": null, + "Chantalle": [["M"]], + "Chantalle's": null, + "Chantal": [["M"]], + "Chantal's": null, + "chanter": [["M"]], + "chanter's": null, + "chanteuse": [["M", "S"]], + "chanteuse's": null, + "chanteuses": null, + "chantey": [["S", "M"]], + "chanteys": null, + "chantey's": null, + "chanticleer": [["S", "M"]], + "chanticleers": null, + "chanticleer's": null, + "Chantilly": [["M"]], + "Chantilly's": null, + "chantry": [["M", "S"]], + "chantry's": null, + "chantries": null, + "chant": [["S", "J", "G", "Z", "M", "R", "D"]], + "chants": null, + "chantings": null, + "chanting": null, + "chanters": null, + "chant's": null, + "chanted": null, + "chanty's": null, + "Chanukah's": null, + "Chao": [["M"]], + "Chao's": null, + "chaos": [["S", "M"]], + "chaoses": null, + "chaos's": null, + "chaotic": null, + "chaotically": null, + "chaparral": [["M", "S"]], + "chaparral's": null, + "chaparrals": null, + "chapbook": [["S", "M"]], + "chapbooks": null, + "chapbook's": null, + "chapeau": [["M", "S"]], + "chapeau's": null, + "chapeaus": null, + "chapel": [["M", "S"]], + "chapel's": null, + "chapels": null, + "chaperonage": [["M", "S"]], + "chaperonage's": null, + "chaperonages": null, + "chaperoned": [["U"]], + "unchaperoned": null, + "chaperone's": null, + "chaperon": [["G", "M", "D", "S"]], + "chaperoning": null, + "chaperon's": null, + "chaperons": null, + "chaplaincy": [["M", "S"]], + "chaplaincy's": null, + "chaplaincies": null, + "chaplain": [["M", "S"]], + "chaplain's": null, + "chaplains": null, + "chaplet": [["S", "M"]], + "chaplets": null, + "chaplet's": null, + "Chaplin": [["M"]], + "Chaplin's": null, + "Chapman": [["M"]], + "Chapman's": null, + "chap": [["M", "S"]], + "chap's": null, + "chaps": null, + "Chappaquiddick": [["M"]], + "Chappaquiddick's": null, + "chapped": null, + "chapping": null, + "chapter": [["S", "G", "D", "M"]], + "chapters": null, + "chaptering": null, + "chaptered": null, + "chapter's": null, + "Chara": null, + "charabanc": [["M", "S"]], + "charabanc's": null, + "charabancs": null, + "characterful": null, + "characteristically": [["U"]], + "uncharacteristically": null, + "characteristic": [["S", "M"]], + "characteristics": null, + "characteristic's": null, + "characterizable": [["M", "S"]], + "characterizable's": null, + "characterizables": null, + "characterization": [["M", "S"]], + "characterization's": null, + "characterizations": null, + "characterize": [["D", "R", "S", "B", "Z", "G"]], + "characterized": [["U"]], + "characterizer": [["M"]], + "characterizes": null, + "characterizers": null, + "characterizing": null, + "uncharacterized": null, + "characterizer's": null, + "characterless": null, + "character": [["M", "D", "S", "G"]], + "character's": null, + "charactered": null, + "characters": null, + "charactering": null, + "charade": [["S", "M"]], + "charades": null, + "charade's": null, + "charbroil": [["S", "D", "G"]], + "charbroils": null, + "charbroiled": null, + "charbroiling": null, + "charcoal": [["M", "G", "S", "D"]], + "charcoal's": null, + "charcoaling": null, + "charcoals": null, + "charcoaled": null, + "Chardonnay": null, + "chardonnay": [["S"]], + "chardonnays": null, + "chard": [["S", "M"]], + "chards": null, + "chard's": null, + "chargeableness": [["M"]], + "chargeableness's": null, + "chargeable": [["P"]], + "charged": [["U"]], + "uncharged": null, + "charge": [["E", "G", "R", "S", "D", "A"]], + "discharge": null, + "discharging": null, + "discharger": null, + "discharges": null, + "discharged": [["U"]], + "charging": null, + "recharging": null, + "charger": [["A", "M", "E"]], + "recharger": null, + "charges": null, + "recharges": null, + "recharged": null, + "recharge": null, + "recharger's": null, + "charger's": null, + "discharger's": null, + "chargers": null, + "char": [["G", "S"]], + "charing": null, + "chars": null, + "Charil": [["M"]], + "Charil's": null, + "charily": null, + "chariness": [["M", "S"]], + "chariness's": null, + "charinesses": null, + "Charin": [["M"]], + "Charin's": null, + "charioteer": [["G", "S", "D", "M"]], + "charioteering": null, + "charioteers": null, + "charioteered": null, + "charioteer's": null, + "Chariot": [["M"]], + "Chariot's": null, + "chariot": [["S", "M", "D", "G"]], + "chariots": null, + "chariot's": null, + "charioted": null, + "charioting": null, + "Charis": null, + "charisma": [["M"]], + "charisma's": null, + "charismata": null, + "charismatically": null, + "charismatic": [["S"]], + "charismatics": null, + "Charissa": [["M"]], + "Charissa's": null, + "Charisse": [["M"]], + "Charisse's": null, + "charitablenesses": null, + "charitableness": [["U", "M"]], + "uncharitableness": null, + "uncharitableness's": null, + "charitableness's": null, + "charitable": [["U", "P"]], + "uncharitable": null, + "charitably": [["U"]], + "uncharitably": null, + "Charita": [["M"]], + "Charita's": null, + "Charity": [["M"]], + "Charity's": null, + "charity": [["M", "S"]], + "charity's": null, + "charities": null, + "charlady": [["M"]], + "charlady's": null, + "Charla": [["M"]], + "Charla's": null, + "charlatanism": [["M", "S"]], + "charlatanism's": null, + "charlatanisms": null, + "charlatanry": [["S", "M"]], + "charlatanries": null, + "charlatanry's": null, + "charlatan": [["S", "M"]], + "charlatans": null, + "charlatan's": null, + "Charlean": [["M"]], + "Charlean's": null, + "Charleen": [["M"]], + "Charleen's": null, + "Charlemagne": [["M"]], + "Charlemagne's": null, + "Charlena": [["M"]], + "Charlena's": null, + "Charlene": [["M"]], + "Charlene's": null, + "Charles": [["M"]], + "Charles's": null, + "Charleston": [["S", "M"]], + "Charlestons": null, + "Charleston's": null, + "Charley": [["M"]], + "Charley's": null, + "Charlie": [["M"]], + "Charlie's": null, + "Charline": [["M"]], + "Charline's": null, + "Charlot": [["M"]], + "Charlot's": null, + "Charlotta": [["M"]], + "Charlotta's": null, + "Charlotte": [["M"]], + "Charlotte's": null, + "Charlottesville": [["M"]], + "Charlottesville's": null, + "Charlottetown": [["M"]], + "Charlottetown's": null, + "Charlton": [["M"]], + "Charlton's": null, + "Charmaine": [["M"]], + "Charmaine's": null, + "Charmain": [["M"]], + "Charmain's": null, + "Charmane": [["M"]], + "Charmane's": null, + "charmer": [["M"]], + "charmer's": null, + "Charmian": [["M"]], + "Charmian's": null, + "Charmine": [["M"]], + "Charmine's": null, + "charming": [["R", "Y", "T"]], + "charminger": null, + "charmingly": null, + "charmingest": null, + "Charmin": [["M"]], + "Charmin's": null, + "Charmion": [["M"]], + "Charmion's": null, + "charmless": null, + "charm": [["S", "G", "M", "Z", "R", "D"]], + "charms": null, + "charm's": null, + "charmers": null, + "charmed": null, + "Charolais": null, + "Charo": [["M"]], + "Charo's": null, + "Charon": [["M"]], + "Charon's": null, + "charred": null, + "charring": null, + "charted": [["U"]], + "uncharted": null, + "charter": [["A", "G", "D", "S"]], + "recharter": null, + "rechartering": null, + "rechartered": null, + "recharters": null, + "chartering": null, + "chartered": [["U"]], + "charters": null, + "unchartered": null, + "charterer": [["S", "M"]], + "charterers": null, + "charterer's": null, + "charter's": null, + "chartist": [["S", "M"]], + "chartists": null, + "chartist's": null, + "Chartres": [["M"]], + "Chartres's": null, + "chartreuse": [["M", "S"]], + "chartreuse's": null, + "chartreuses": null, + "chartroom": [["S"]], + "chartrooms": null, + "chart": [["S", "J", "M", "R", "D", "G", "B", "Z"]], + "charts": null, + "chartings": null, + "chart's": null, + "charting": null, + "chartable": null, + "charwoman": [["M"]], + "charwoman's": null, + "charwomen": null, + "Charybdis": [["M"]], + "Charybdis's": null, + "Charyl": [["M"]], + "Charyl's": null, + "chary": [["P", "T", "R"]], + "chariest": null, + "charier": null, + "Chas": null, + "chase": [["D", "S", "R", "G", "Z"]], + "chased": null, + "chases": null, + "chaser": [["M"]], + "chasing": [["M"]], + "chasers": null, + "Chase": [["M"]], + "Chase's": null, + "chaser's": null, + "chasing's": null, + "Chasity": [["M"]], + "Chasity's": null, + "chasm": [["S", "M"]], + "chasms": null, + "chasm's": null, + "chassis": [["M"]], + "chassis's": null, + "chastely": null, + "chasteness": [["S", "M"]], + "chastenesses": null, + "chasteness's": null, + "chasten": [["G", "S", "D"]], + "chastening": null, + "chastens": null, + "chastened": null, + "chaste": [["U", "T", "R"]], + "unchaste": null, + "unchaster": null, + "chastest": null, + "chaster": null, + "chastisement": [["S", "M"]], + "chastisements": null, + "chastisement's": null, + "chastiser": [["M"]], + "chastiser's": null, + "chastise": [["Z", "G", "L", "D", "R", "S"]], + "chastisers": null, + "chastising": null, + "chastised": null, + "chastises": null, + "Chastity": [["M"]], + "Chastity's": null, + "chastity": [["S", "M"]], + "chastities": null, + "chastity's": [["U"]], + "unchastity's": null, + "chasuble": [["S", "M"]], + "chasubles": null, + "chasuble's": null, + "Chateaubriand": null, + "ch�teau": [["M"]], + "ch�teau's": null, + "chateaus": null, + "ch�teaux": null, + "ch�telaine": [["S", "M"]], + "ch�telaines": null, + "ch�telaine's": null, + "chat": [["M", "S"]], + "chat's": null, + "chats": null, + "Chattahoochee": [["M"]], + "Chattahoochee's": null, + "Chattanooga": [["M"]], + "Chattanooga's": null, + "chatted": null, + "chattel": [["M", "S"]], + "chattel's": null, + "chattels": null, + "chatterbox": [["M", "S"]], + "chatterbox's": null, + "chatterboxes": null, + "chatterer": [["M"]], + "chatterer's": null, + "Chatterley": [["M"]], + "Chatterley's": null, + "chatter": [["S", "Z", "G", "D", "R", "Y"]], + "chatters": null, + "chatterers": null, + "chattering": null, + "chattered": null, + "chatterly": null, + "Chatterton": [["M"]], + "Chatterton's": null, + "chattily": null, + "chattiness": [["S", "M"]], + "chattinesses": null, + "chattiness's": null, + "chatting": null, + "chatty": [["R", "T", "P"]], + "chattier": null, + "chattiest": null, + "Chaucer": [["M"]], + "Chaucer's": null, + "chauffeur": [["G", "S", "M", "D"]], + "chauffeuring": null, + "chauffeurs": null, + "chauffeur's": null, + "chauffeured": null, + "Chaunce": [["M"]], + "Chaunce's": null, + "Chauncey": [["M"]], + "Chauncey's": null, + "Chautauqua": [["M"]], + "Chautauqua's": null, + "chauvinism": [["M", "S"]], + "chauvinism's": null, + "chauvinisms": null, + "chauvinistic": null, + "chauvinistically": null, + "chauvinist": [["M", "S"]], + "chauvinist's": null, + "chauvinists": null, + "Chavez": [["M"]], + "Chavez's": null, + "chaw": null, + "Chayefsky": [["M"]], + "Chayefsky's": null, + "cheapen": [["D", "G"]], + "cheapened": null, + "cheapening": null, + "cheapish": null, + "cheapness": [["M", "S"]], + "cheapness's": null, + "cheapnesses": null, + "cheapskate": [["M", "S"]], + "cheapskate's": null, + "cheapskates": null, + "cheap": [["Y", "R", "N", "T", "X", "S", "P"]], + "cheaply": null, + "cheaper": null, + "cheapest": null, + "cheapens": null, + "cheaps": null, + "cheater": [["M"]], + "cheater's": null, + "cheat": [["R", "D", "S", "G", "Z"]], + "cheated": null, + "cheats": null, + "cheating": null, + "cheaters": null, + "Chechen": [["M"]], + "Chechen's": null, + "Chechnya": [["M"]], + "Chechnya's": null, + "checkable": [["U"]], + "uncheckable": null, + "checkbook": [["M", "S"]], + "checkbook's": null, + "checkbooks": null, + "checked": [["U", "A"]], + "unchecked": null, + "rechecked": null, + "checkerboard": [["M", "S"]], + "checkerboard's": null, + "checkerboards": null, + "checker": [["D", "M", "G"]], + "checkered": null, + "checker's": null, + "checkering": null, + "check": [["G", "Z", "B", "S", "R", "D", "M"]], + "checking": null, + "checkers": null, + "checks": [["A"]], + "check's": [["A"]], + "checklist": [["S"]], + "checklists": null, + "checkmate": [["M", "S", "D", "G"]], + "checkmate's": null, + "checkmates": null, + "checkmated": null, + "checkmating": null, + "checkoff": [["S", "M"]], + "checkoffs": null, + "checkoff's": null, + "checkout": [["S"]], + "checkouts": null, + "checkpoint": [["M", "S"]], + "checkpoint's": null, + "checkpoints": null, + "checkroom": [["M", "S"]], + "checkroom's": null, + "checkrooms": null, + "recheck's": null, + "rechecks": null, + "checksummed": null, + "checksumming": null, + "checksum": [["S", "M"]], + "checksums": null, + "checksum's": null, + "checkup": [["M", "S"]], + "checkup's": null, + "checkups": null, + "Cheddar": [["M", "S"]], + "Cheddar's": null, + "Cheddars": null, + "cheddar": [["S"]], + "cheddars": null, + "cheekbone": [["S", "M"]], + "cheekbones": null, + "cheekbone's": null, + "cheek": [["D", "M", "G", "S"]], + "cheeked": null, + "cheek's": null, + "cheeking": null, + "cheeks": null, + "cheekily": null, + "cheekiness": [["S", "M"]], + "cheekinesses": null, + "cheekiness's": null, + "cheeky": [["P", "R", "T"]], + "cheekier": null, + "cheekiest": null, + "cheep": [["G", "M", "D", "S"]], + "cheeping": null, + "cheep's": null, + "cheeped": null, + "cheeps": null, + "cheerer": [["M"]], + "cheerer's": null, + "cheerfuller": null, + "cheerfullest": null, + "cheerfulness": [["M", "S"]], + "cheerfulness's": null, + "cheerfulnesses": null, + "cheerful": [["Y", "P"]], + "cheerfully": null, + "cheerily": null, + "cheeriness": [["S", "M"]], + "cheerinesses": null, + "cheeriness's": null, + "cheerio": [["S"]], + "cheerios": null, + "Cheerios": [["M"]], + "Cheerios's": null, + "cheerleader": [["S", "M"]], + "cheerleaders": null, + "cheerleader's": null, + "cheerlessness": [["S", "M"]], + "cheerlessnesses": null, + "cheerlessness's": null, + "cheerless": [["P", "Y"]], + "cheerlessly": null, + "cheers": [["S"]], + "cheerses": null, + "cheery": [["P", "T", "R"]], + "cheeriest": null, + "cheerier": null, + "cheer": [["Y", "R", "D", "G", "Z", "S"]], + "cheerly": null, + "cheered": null, + "cheering": null, + "cheerers": null, + "cheeseburger": [["S", "M"]], + "cheeseburgers": null, + "cheeseburger's": null, + "cheesecake": [["S", "M"]], + "cheesecakes": null, + "cheesecake's": null, + "cheesecloth": [["M"]], + "cheesecloth's": null, + "cheesecloths": null, + "cheeseparing": [["S"]], + "cheeseparings": null, + "cheese": [["S", "D", "G", "M"]], + "cheeses": null, + "cheesed": null, + "cheesing": null, + "cheese's": null, + "cheesiness": [["S", "M"]], + "cheesinesses": null, + "cheesiness's": null, + "cheesy": [["P", "R", "T"]], + "cheesier": null, + "cheesiest": null, + "cheetah": [["M"]], + "cheetah's": null, + "cheetahs": null, + "Cheeto": [["M"]], + "Cheeto's": null, + "Cheever": [["M"]], + "Cheever's": null, + "cheffed": null, + "cheffing": null, + "chef": [["S", "M"]], + "chefs": null, + "chef's": null, + "Chekhov": [["M"]], + "Chekhov's": null, + "chelate": [["X", "D", "M", "N", "G"]], + "chelations": null, + "chelated": null, + "chelate's": null, + "chelation": [["M"]], + "chelating": null, + "chelation's": null, + "Chelsae": [["M"]], + "Chelsae's": null, + "Chelsea": [["M"]], + "Chelsea's": null, + "Chelsey": [["M"]], + "Chelsey's": null, + "Chelsie": [["M"]], + "Chelsie's": null, + "Chelsy": [["M"]], + "Chelsy's": null, + "Chelyabinsk": [["M"]], + "Chelyabinsk's": null, + "chem": null, + "Che": [["M"]], + "Che's": null, + "chemic": null, + "chemical": [["S", "Y", "M"]], + "chemicals": null, + "chemically": null, + "chemical's": null, + "chemiluminescence": [["M"]], + "chemiluminescence's": null, + "chemiluminescent": null, + "chemise": [["S", "M"]], + "chemises": null, + "chemise's": null, + "chemistry": [["S", "M"]], + "chemistries": null, + "chemistry's": null, + "chemist": [["S", "M"]], + "chemists": null, + "chemist's": null, + "chemotherapeutic": [["S"]], + "chemotherapeutics": null, + "chemotherapy": [["S", "M"]], + "chemotherapies": null, + "chemotherapy's": null, + "chemurgy": [["S", "M"]], + "chemurgies": null, + "chemurgy's": null, + "Chengdu": null, + "Cheng": [["M"]], + "Cheng's": null, + "chenille": [["S", "M"]], + "chenilles": null, + "chenille's": null, + "Chen": [["M"]], + "Chen's": null, + "Cheops": [["M"]], + "Cheops's": null, + "Chere": [["M"]], + "Chere's": null, + "Cherey": [["M"]], + "Cherey's": null, + "Cherianne": [["M"]], + "Cherianne's": null, + "Cherice": [["M"]], + "Cherice's": null, + "Cherida": [["M"]], + "Cherida's": null, + "Cherie": [["M"]], + "Cherie's": null, + "Cherilyn": [["M"]], + "Cherilyn's": null, + "Cherilynn": [["M"]], + "Cherilynn's": null, + "Cheri": [["M"]], + "Cheri's": null, + "Cherin": [["M"]], + "Cherin's": null, + "Cherise": [["M"]], + "Cherise's": null, + "cherisher": [["M"]], + "cherisher's": null, + "cherish": [["G", "D", "R", "S"]], + "cherishing": null, + "cherished": null, + "cherishes": null, + "Cherish": [["M"]], + "Cherish's": null, + "Cheriton": [["M"]], + "Cheriton's": null, + "Cherlyn": [["M"]], + "Cherlyn's": null, + "Cher": [["M"]], + "Cher's": null, + "Chernenko": [["M"]], + "Chernenko's": null, + "Chernobyl": [["M"]], + "Chernobyl's": null, + "Cherokee": [["M", "S"]], + "Cherokee's": null, + "Cherokees": null, + "cheroot": [["M", "S"]], + "cheroot's": null, + "cheroots": null, + "Cherri": [["M"]], + "Cherri's": null, + "Cherrita": [["M"]], + "Cherrita's": null, + "Cherry": [["M"]], + "Cherry's": null, + "cherry": [["S", "M"]], + "cherries": null, + "cherry's": null, + "chert": [["M", "S"]], + "chert's": null, + "cherts": null, + "cherubic": null, + "cherubim": [["S"]], + "cherubims": null, + "cherub": [["S", "M"]], + "cherubs": null, + "cherub's": null, + "chervil": [["M", "S"]], + "chervil's": null, + "chervils": null, + "Cherye": [["M"]], + "Cherye's": null, + "Cheryl": [["M"]], + "Cheryl's": null, + "Chery": [["M"]], + "Chery's": null, + "Chesapeake": [["M"]], + "Chesapeake's": null, + "Cheshire": [["M"]], + "Cheshire's": null, + "Cheslie": [["M"]], + "Cheslie's": null, + "chessboard": [["S", "M"]], + "chessboards": null, + "chessboard's": null, + "chessman": [["M"]], + "chessman's": null, + "chessmen": null, + "chess": [["S", "M"]], + "chesses": null, + "chess's": null, + "Chesterfield": [["M"]], + "Chesterfield's": null, + "chesterfield": [["M", "S"]], + "chesterfield's": null, + "chesterfields": null, + "Chester": [["M"]], + "Chester's": null, + "Chesterton": [["M"]], + "Chesterton's": null, + "chestful": [["S"]], + "chestfuls": null, + "chest": [["M", "R", "D", "S"]], + "chest's": null, + "chester": null, + "chested": null, + "chests": null, + "chestnut": [["S", "M"]], + "chestnuts": null, + "chestnut's": null, + "Cheston": [["M"]], + "Cheston's": null, + "chesty": [["T", "R"]], + "chestiest": null, + "chestier": null, + "Chet": [["M"]], + "Chet's": null, + "Chevalier": [["M"]], + "Chevalier's": null, + "chevalier": [["S", "M"]], + "chevaliers": null, + "chevalier's": null, + "Cheviot": [["M"]], + "Cheviot's": null, + "cheviot": [["S"]], + "cheviots": null, + "Chev": [["M"]], + "Chev's": null, + "Chevrolet": [["M"]], + "Chevrolet's": null, + "chevron": [["D", "M", "S"]], + "chevroned": null, + "chevron's": null, + "chevrons": null, + "Chevy": [["M"]], + "Chevy's": null, + "chewer": [["M"]], + "chewer's": null, + "chew": [["G", "Z", "S", "D", "R"]], + "chewing": null, + "chewers": null, + "chews": null, + "chewed": null, + "chewiness": [["S"]], + "chewinesses": null, + "chewy": [["R", "T", "P"]], + "chewier": null, + "chewiest": null, + "Cheyenne": [["S", "M"]], + "Cheyennes": null, + "Cheyenne's": null, + "chg": null, + "chge": null, + "Chiang": [["M"]], + "Chiang's": null, + "chianti": [["M"]], + "chianti's": null, + "Chianti": [["S"]], + "Chiantis": null, + "chiaroscuro": [["S", "M"]], + "chiaroscuros": null, + "chiaroscuro's": null, + "Chiarra": [["M"]], + "Chiarra's": null, + "Chiba": [["M"]], + "Chiba's": null, + "Chicagoan": [["S", "M"]], + "Chicagoans": null, + "Chicagoan's": null, + "Chicago": [["M"]], + "Chicago's": null, + "Chicana": [["M", "S"]], + "Chicana's": null, + "Chicanas": null, + "chicane": [["M", "G", "D", "S"]], + "chicane's": null, + "chicaning": null, + "chicaned": null, + "chicanes": null, + "chicanery": [["M", "S"]], + "chicanery's": null, + "chicaneries": null, + "Chicano": [["M", "S"]], + "Chicano's": null, + "Chicanos": null, + "chichi": [["R", "T", "S"]], + "chichier": null, + "chichiest": null, + "chichis": null, + "chickadee": [["S", "M"]], + "chickadees": null, + "chickadee's": null, + "Chickasaw": [["S", "M"]], + "Chickasaws": null, + "Chickasaw's": null, + "chickenfeed": null, + "chicken": [["G", "D", "M"]], + "chickening": null, + "chickened": null, + "chicken's": null, + "chickenhearted": null, + "chickenpox": [["M", "S"]], + "chickenpox's": null, + "chickenpoxes": null, + "Chickie": [["M"]], + "Chickie's": null, + "Chick": [["M"]], + "Chick's": null, + "chickpea": [["M", "S"]], + "chickpea's": null, + "chickpeas": null, + "chickweed": [["M", "S"]], + "chickweed's": null, + "chickweeds": null, + "chick": [["X", "S", "N", "M"]], + "chickens": null, + "chicks": null, + "chick's": null, + "Chicky": [["M"]], + "Chicky's": null, + "chicle": [["M", "S"]], + "chicle's": null, + "chicles": null, + "Chic": [["M"]], + "Chic's": null, + "chicness": [["S"]], + "chicnesses": null, + "Chico": [["M"]], + "Chico's": null, + "chicory": [["M", "S"]], + "chicory's": null, + "chicories": null, + "chic": [["S", "Y", "R", "P", "T"]], + "chics": null, + "chicly": null, + "chicer": null, + "chicest": null, + "chide": [["G", "D", "S"]], + "chiding": [["Y"]], + "chided": null, + "chides": null, + "chidingly": null, + "chiefdom": [["M", "S"]], + "chiefdom's": null, + "chiefdoms": null, + "chieftain": [["S", "M"]], + "chieftains": null, + "chieftain's": null, + "chief": [["Y", "R", "M", "S", "T"]], + "chiefly": null, + "chiefer": null, + "chief's": null, + "chiefs": null, + "chiefest": null, + "chiffonier": [["M", "S"]], + "chiffonier's": null, + "chiffoniers": null, + "chiffon": [["M", "S"]], + "chiffon's": null, + "chiffons": null, + "chigger": [["M", "S"]], + "chigger's": null, + "chiggers": null, + "chignon": [["M", "S"]], + "chignon's": null, + "chignons": null, + "Chihuahua": [["M", "S"]], + "Chihuahua's": null, + "Chihuahuas": null, + "chihuahua": [["S"]], + "chihuahuas": null, + "chilblain": [["M", "S"]], + "chilblain's": null, + "chilblains": null, + "childbearing": [["M", "S"]], + "childbearing's": null, + "childbearings": null, + "childbirth": [["M"]], + "childbirth's": null, + "childbirths": null, + "childcare": [["S"]], + "childcares": null, + "childes": null, + "child": [["G", "M", "Y", "D"]], + "childing": null, + "child's": null, + "childly": null, + "childed": null, + "childhood": [["M", "S"]], + "childhood's": null, + "childhoods": null, + "childishness": [["S", "M"]], + "childishnesses": null, + "childishness's": null, + "childish": [["Y", "P"]], + "childishly": null, + "childlessness": [["S", "M"]], + "childlessnesses": null, + "childlessness's": null, + "childless": [["P"]], + "childlikeness": [["M"]], + "childlikeness's": null, + "childlike": [["P"]], + "childminders": null, + "childproof": [["G", "S", "D"]], + "childproofing": null, + "childproofs": null, + "childproofed": null, + "childrearing": null, + "children": [["M"]], + "children's": null, + "Chilean": [["S"]], + "Chileans": null, + "Chile": [["M", "S"]], + "Chile's": null, + "Chiles": null, + "chile's": null, + "chilies": null, + "chili": [["M"]], + "chili's": null, + "chiller": [["M"]], + "chiller's": null, + "chilliness": [["M", "S"]], + "chilliness's": null, + "chillinesses": null, + "chilling": [["Y"]], + "chillingly": null, + "chilli's": null, + "chill": [["M", "R", "D", "J", "G", "T", "Z", "P", "S"]], + "chill's": null, + "chilled": null, + "chillings": null, + "chillest": null, + "chillers": null, + "chillness": [["M", "S"]], + "chills": null, + "chillness's": null, + "chillnesses": null, + "chilly": [["T", "P", "R", "S"]], + "chilliest": null, + "chillier": null, + "chillies": null, + "Chilton": [["M"]], + "Chilton's": null, + "Chi": [["M"]], + "Chi's": null, + "chimaera's": null, + "chimaerical": null, + "Chimborazo": [["M"]], + "Chimborazo's": null, + "chime": [["D", "S", "R", "G", "M", "Z"]], + "chimed": null, + "chimes": null, + "chimer": [["M"]], + "chiming": null, + "chime's": null, + "chimers": null, + "Chimera": [["S"]], + "Chimeras": null, + "chimera": [["S", "M"]], + "chimeras": null, + "chimera's": null, + "chimeric": null, + "chimerical": null, + "chimer's": null, + "Chimiques": null, + "chimney": [["S", "M", "D"]], + "chimneys": null, + "chimney's": null, + "chimneyed": null, + "chimpanzee": [["S", "M"]], + "chimpanzees": null, + "chimpanzee's": null, + "chimp": [["M", "S"]], + "chimp's": null, + "chimps": null, + "chi": [["M", "S"]], + "chi's": null, + "chis": null, + "Chimu": [["M"]], + "Chimu's": null, + "Ch'in": null, + "China": [["M"]], + "China's": null, + "Chinaman": [["M"]], + "Chinaman's": null, + "Chinamen": null, + "china": [["M", "S"]], + "china's": null, + "chinas": null, + "Chinatown": [["S", "M"]], + "Chinatowns": null, + "Chinatown's": null, + "chinchilla": [["S", "M"]], + "chinchillas": null, + "chinchilla's": null, + "chine": [["M", "S"]], + "chine's": null, + "chines": null, + "Chinese": [["M"]], + "Chinese's": null, + "Ching": [["M"]], + "Ching's": null, + "chink": [["D", "M", "S", "G"]], + "chinked": null, + "chink's": null, + "chinks": null, + "chinking": null, + "chinless": null, + "Chin": [["M"]], + "Chin's": null, + "chinned": null, + "chinner": [["S"]], + "chinners": null, + "chinning": null, + "chino": [["M", "S"]], + "chino's": null, + "chinos": null, + "Chinook": [["M", "S"]], + "Chinook's": null, + "Chinooks": null, + "chin": [["S", "G", "D", "M"]], + "chins": null, + "chining": null, + "chined": null, + "chin's": null, + "chinstrap": [["S"]], + "chinstraps": null, + "chintz": [["S", "M"]], + "chintzes": null, + "chintz's": null, + "chintzy": [["T", "R"]], + "chintziest": null, + "chintzier": null, + "chipboard": [["M"]], + "chipboard's": null, + "Chipewyan": [["M"]], + "Chipewyan's": null, + "Chip": [["M"]], + "Chip's": null, + "chipmunk": [["S", "M"]], + "chipmunks": null, + "chipmunk's": null, + "chipped": null, + "Chippendale": [["M"]], + "Chippendale's": null, + "chipper": [["D", "G", "S"]], + "chippered": null, + "chippering": null, + "chippers": null, + "Chippewa": [["M", "S"]], + "Chippewa's": null, + "Chippewas": null, + "chipping": [["M", "S"]], + "chipping's": null, + "chippings": null, + "chip": [["S", "M"]], + "chips": null, + "chip's": null, + "Chiquia": [["M"]], + "Chiquia's": null, + "Chiquita": [["M"]], + "Chiquita's": null, + "chiral": null, + "Chirico": [["M"]], + "Chirico's": null, + "chirography": [["S", "M"]], + "chirographies": null, + "chirography's": null, + "chiropodist": [["S", "M"]], + "chiropodists": null, + "chiropodist's": null, + "chiropody": [["M", "S"]], + "chiropody's": null, + "chiropodies": null, + "chiropractic": [["M", "S"]], + "chiropractic's": null, + "chiropractics": null, + "chiropractor": [["S", "M"]], + "chiropractors": null, + "chiropractor's": null, + "chirp": [["G", "D", "S"]], + "chirping": null, + "chirped": null, + "chirps": null, + "chirpy": [["R", "T"]], + "chirpier": null, + "chirpiest": null, + "chirrup": [["D", "G", "S"]], + "chirruped": null, + "chirruping": null, + "chirrups": null, + "chiseler": [["M"]], + "chiseler's": null, + "chisel": [["Z", "G", "S", "J", "M", "D", "R"]], + "chiselers": null, + "chiseling": null, + "chisels": null, + "chiselings": null, + "chisel's": null, + "chiseled": null, + "Chisholm": [["M"]], + "Chisholm's": null, + "Chisinau": [["M"]], + "Chisinau's": null, + "chitchat": [["S", "M"]], + "chitchats": null, + "chitchat's": null, + "chitchatted": null, + "chitchatting": null, + "chitinous": null, + "chitin": [["S", "M"]], + "chitins": null, + "chitin's": null, + "chit": [["S", "M"]], + "chits": null, + "chit's": null, + "Chittagong": [["M"]], + "Chittagong's": null, + "chitterlings": null, + "chivalric": null, + "chivalrously": [["U"]], + "unchivalrously": null, + "chivalrousness": [["M", "S"]], + "chivalrousness's": null, + "chivalrousnesses": null, + "chivalrous": [["Y", "P"]], + "chivalry": [["S", "M"]], + "chivalries": null, + "chivalry's": null, + "chive": [["G", "M", "D", "S"]], + "chiving": null, + "chive's": null, + "chived": null, + "chives": null, + "chivvy": [["D"]], + "chivvied": null, + "chivying": null, + "chlamydiae": null, + "chlamydia": [["S"]], + "chlamydias": null, + "Chloe": [["M"]], + "Chloe's": null, + "Chloette": [["M"]], + "Chloette's": null, + "Chlo": [["M"]], + "Chlo's": null, + "chloral": [["M", "S"]], + "chloral's": null, + "chlorals": null, + "chlorate": [["M"]], + "chlorate's": null, + "chlordane": [["M", "S"]], + "chlordane's": null, + "chlordanes": null, + "chloride": [["M", "S"]], + "chloride's": null, + "chlorides": null, + "chlorinated": [["C"]], + "dechlorinated": null, + "chlorinates": [["C"]], + "dechlorinates": null, + "chlorinate": [["X", "D", "S", "G", "N"]], + "chlorinations": null, + "chlorinating": null, + "chlorination": [["M"]], + "chlorination's": null, + "chlorine": [["M", "S"]], + "chlorine's": null, + "chlorines": null, + "Chloris": null, + "chlorofluorocarbon": [["S"]], + "chlorofluorocarbons": null, + "chloroform": [["D", "M", "S", "G"]], + "chloroformed": null, + "chloroform's": null, + "chloroforms": null, + "chloroforming": null, + "chlorophyll": [["S", "M"]], + "chlorophylls": null, + "chlorophyll's": null, + "chloroplast": [["M", "S"]], + "chloroplast's": null, + "chloroplasts": null, + "chloroquine": [["M"]], + "chloroquine's": null, + "chm": null, + "Ch": [["M", "G", "N", "R", "S"]], + "Ch's": null, + "Ches": null, + "chockablock": null, + "chock": [["S", "G", "R", "D", "M"]], + "chocks": null, + "chocking": null, + "chocker": null, + "chocked": null, + "chock's": null, + "chocoholic": [["S"]], + "chocoholics": null, + "chocolate": [["M", "S"]], + "chocolate's": null, + "chocolates": null, + "chocolaty": null, + "Choctaw": [["M", "S"]], + "Choctaw's": null, + "Choctaws": null, + "choiceness": [["M"]], + "choiceness's": null, + "choice": [["R", "S", "M", "T", "Y", "P"]], + "choicer": null, + "choices": null, + "choice's": null, + "choicest": null, + "choicely": null, + "choirboy": [["M", "S"]], + "choirboy's": null, + "choirboys": null, + "choirmaster": [["S", "M"]], + "choirmasters": null, + "choirmaster's": null, + "choir": [["S", "D", "M", "G"]], + "choirs": null, + "choired": null, + "choir's": null, + "choiring": null, + "chokeberry": [["M"]], + "chokeberry's": null, + "chokecherry": [["S", "M"]], + "chokecherries": null, + "chokecherry's": null, + "choke": [["D", "S", "R", "G", "Z"]], + "choked": null, + "chokes": [["M"]], + "choker": [["M"]], + "choking": [["Y"]], + "chokers": null, + "choker's": null, + "chokes's": null, + "chokingly": null, + "cholera": [["S", "M"]], + "choleras": null, + "cholera's": null, + "choleric": null, + "choler": [["S", "M"]], + "cholers": null, + "choler's": null, + "cholesterol": [["S", "M"]], + "cholesterols": null, + "cholesterol's": null, + "choline": [["M"]], + "choline's": null, + "cholinesterase": [["M"]], + "cholinesterase's": null, + "chomp": [["D", "S", "G"]], + "chomped": null, + "chomps": null, + "chomping": null, + "Chomsky": [["M"]], + "Chomsky's": null, + "Chongqing": null, + "choose": [["G", "Z", "R", "S"]], + "choosing": null, + "choosers": null, + "chooser": [["M"]], + "chooses": null, + "chooser's": null, + "choosiness": [["S"]], + "choosinesses": null, + "choosy": [["R", "P", "T"]], + "choosier": null, + "choosiest": null, + "chophouse": [["S", "M"]], + "chophouses": null, + "chophouse's": null, + "Chopin": [["M"]], + "Chopin's": null, + "chopped": null, + "chopper": [["S", "D", "M", "G"]], + "choppers": null, + "choppered": null, + "chopper's": null, + "choppering": null, + "choppily": null, + "choppiness": [["M", "S"]], + "choppiness's": null, + "choppinesses": null, + "chopping": null, + "choppy": [["R", "P", "T"]], + "choppier": null, + "choppiest": null, + "chop": [["S"]], + "chops": null, + "chopstick": [["S", "M"]], + "chopsticks": null, + "chopstick's": null, + "chorale": [["M", "S"]], + "chorale's": null, + "chorales": null, + "choral": [["S", "Y"]], + "chorals": null, + "chorally": null, + "chordal": null, + "chordata": null, + "chordate": [["M", "S"]], + "chordate's": null, + "chordates": null, + "chording": [["M"]], + "chording's": null, + "chord": [["S", "G", "M", "D"]], + "chords": null, + "chord's": null, + "chorded": null, + "chorea": [["M", "S"]], + "chorea's": null, + "choreas": null, + "chore": [["D", "S", "G", "N", "M"]], + "chored": null, + "chores": null, + "choring": null, + "chorion": [["M"]], + "chore's": null, + "choreographer": [["M"]], + "choreographer's": null, + "choreographic": null, + "choreographically": null, + "choreographs": null, + "choreography": [["M", "S"]], + "choreography's": null, + "choreographies": null, + "choreograph": [["Z", "G", "D", "R"]], + "choreographers": null, + "choreographing": null, + "choreographed": null, + "chorines": null, + "chorion's": null, + "chorister": [["S", "M"]], + "choristers": null, + "chorister's": null, + "choroid": [["S"]], + "choroids": null, + "chortler": [["M"]], + "chortler's": null, + "chortle": [["Z", "G", "D", "R", "S"]], + "chortlers": null, + "chortling": null, + "chortled": null, + "chortles": null, + "chorus": [["G", "D", "S", "M"]], + "chorusing": null, + "chorused": null, + "choruses": null, + "chorus's": null, + "chosen": [["U"]], + "unchosen": null, + "chose": [["S"]], + "choses": null, + "Chou": [["M"]], + "Chou's": null, + "chowder": [["S", "G", "D", "M"]], + "chowders": null, + "chowdering": null, + "chowdered": null, + "chowder's": null, + "chow": [["D", "G", "M", "S"]], + "chowed": null, + "chowing": null, + "chow's": null, + "chows": null, + "Chretien": [["M"]], + "Chretien's": null, + "Chris": [["M"]], + "Chris's": null, + "chrism": [["S", "M"]], + "chrisms": null, + "chrism's": null, + "chrissake": null, + "Chrisse": [["M"]], + "Chrisse's": null, + "Chrissie": [["M"]], + "Chrissie's": null, + "Chrissy": [["M"]], + "Chrissy's": null, + "Christabella": [["M"]], + "Christabella's": null, + "Christabel": [["M"]], + "Christabel's": null, + "Christalle": [["M"]], + "Christalle's": null, + "Christal": [["M"]], + "Christal's": null, + "Christa": [["M"]], + "Christa's": null, + "Christan": [["M"]], + "Christan's": null, + "Christchurch": [["M"]], + "Christchurch's": null, + "Christean": [["M"]], + "Christean's": null, + "Christel": [["M"]], + "Christel's": null, + "Christendom": [["M", "S"]], + "Christendom's": null, + "Christendoms": null, + "christened": [["U"]], + "unchristened": null, + "christening": [["S", "M"]], + "christenings": null, + "christening's": null, + "Christen": [["M"]], + "Christen's": null, + "christen": [["S", "A", "G", "D"]], + "christens": null, + "rechristens": null, + "rechristen": null, + "rechristening": null, + "rechristened": null, + "Christensen": [["M"]], + "Christensen's": null, + "Christenson": [["M"]], + "Christenson's": null, + "Christiana": [["M"]], + "Christiana's": null, + "Christiane": [["M"]], + "Christiane's": null, + "Christianity": [["S", "M"]], + "Christianities": null, + "Christianity's": null, + "Christianize": [["G", "S", "D"]], + "Christianizing": null, + "Christianizes": null, + "Christianized": null, + "Christian": [["M", "S"]], + "Christian's": null, + "Christians": [["N"]], + "Christiano": [["M"]], + "Christiano's": null, + "Christiansen": [["M"]], + "Christiansen's": null, + "Christie": [["S", "M"]], + "Christies": null, + "Christie's": null, + "Christi": [["M"]], + "Christi's": null, + "Christina": [["M"]], + "Christina's": null, + "Christine": [["M"]], + "Christine's": null, + "Christin": [["M"]], + "Christin's": null, + "Christlike": null, + "Christmas": [["S", "M"]], + "Christmases": null, + "Christmas's": null, + "Christmastide": [["S", "M"]], + "Christmastides": null, + "Christmastide's": null, + "Christmastime": [["S"]], + "Christmastimes": null, + "Christoffel": [["M"]], + "Christoffel's": null, + "Christoffer": [["M"]], + "Christoffer's": null, + "Christoforo": [["M"]], + "Christoforo's": null, + "Christoper": [["M"]], + "Christoper's": null, + "Christophe": [["M"]], + "Christophe's": null, + "Christopher": [["M"]], + "Christopher's": null, + "Christoph": [["M", "R"]], + "Christoph's": null, + "Christophorus": [["M"]], + "Christophorus's": null, + "Christos": [["M"]], + "Christos's": null, + "Christ": [["S", "M", "N"]], + "Christs": null, + "Christ's": null, + "Christye": [["M"]], + "Christye's": null, + "Christyna": [["M"]], + "Christyna's": null, + "Christy's": null, + "Chrisy": [["M"]], + "Chrisy's": null, + "chroma": [["M"]], + "chroma's": null, + "chromate": [["M"]], + "chromate's": null, + "chromatically": null, + "chromaticism": [["M"]], + "chromaticism's": null, + "chromaticness": [["M"]], + "chromaticness's": null, + "chromatic": [["P", "S"]], + "chromatics": [["M"]], + "chromatics's": null, + "chromatin": [["M", "S"]], + "chromatin's": null, + "chromatins": null, + "chromatogram": [["M", "S"]], + "chromatogram's": null, + "chromatograms": null, + "chromatograph": null, + "chromatographic": null, + "chromatography": [["M"]], + "chromatography's": null, + "chrome": [["G", "M", "S", "D"]], + "chroming": null, + "chrome's": null, + "chromes": null, + "chromed": null, + "chromic": null, + "chromite": [["M"]], + "chromite's": null, + "chromium": [["S", "M"]], + "chromiums": null, + "chromium's": null, + "chromosomal": null, + "chromosome": [["M", "S"]], + "chromosome's": null, + "chromosomes": null, + "chromosphere": [["M"]], + "chromosphere's": null, + "chronically": null, + "chronicled": [["U"]], + "unchronicled": null, + "chronicler": [["M"]], + "chronicler's": null, + "chronicle": [["S", "R", "D", "M", "Z", "G"]], + "chronicles": null, + "chronicle's": null, + "chroniclers": null, + "chronicling": null, + "chronic": [["S"]], + "chronics": null, + "chronograph": [["M"]], + "chronograph's": null, + "chronographs": null, + "chronography": null, + "chronological": [["Y"]], + "chronologically": null, + "chronologist": [["M", "S"]], + "chronologist's": null, + "chronologists": null, + "chronology": [["M", "S"]], + "chronology's": null, + "chronologies": null, + "chronometer": [["M", "S"]], + "chronometer's": null, + "chronometers": null, + "chronometric": null, + "Chrotoem": [["M"]], + "Chrotoem's": null, + "chrysalids": null, + "chrysalis": [["S", "M"]], + "chrysalises": null, + "chrysalis's": null, + "Chrysa": [["M"]], + "Chrysa's": null, + "chrysanthemum": [["M", "S"]], + "chrysanthemum's": null, + "chrysanthemums": null, + "Chrysler": [["M"]], + "Chrysler's": null, + "Chrysostom": [["M"]], + "Chrysostom's": null, + "Chrystal": [["M"]], + "Chrystal's": null, + "Chrystel": [["M"]], + "Chrystel's": null, + "Chryste": [["M"]], + "Chryste's": null, + "chubbiness": [["S", "M"]], + "chubbinesses": null, + "chubbiness's": null, + "chubby": [["R", "T", "P"]], + "chubbier": null, + "chubbiest": null, + "chub": [["M", "S"]], + "chub's": null, + "chubs": null, + "Chucho": [["M"]], + "Chucho's": null, + "chuck": [["G", "S", "D", "M"]], + "chucking": null, + "chucks": null, + "chucked": null, + "chuck's": null, + "chuckhole": [["S", "M"]], + "chuckholes": null, + "chuckhole's": null, + "chuckle": [["D", "S", "G"]], + "chuckled": null, + "chuckles": null, + "chuckling": [["Y"]], + "chucklingly": null, + "Chuck": [["M"]], + "Chuck's": null, + "chuff": [["D", "M"]], + "chuffed": null, + "chuff's": null, + "chugged": null, + "chugging": null, + "chug": [["M", "S"]], + "chug's": null, + "chugs": null, + "Chukchi": [["M"]], + "Chukchi's": null, + "chukka": [["S"]], + "chukkas": null, + "Chumash": [["M"]], + "Chumash's": null, + "chummed": null, + "chummily": null, + "chumminess": [["M", "S"]], + "chumminess's": null, + "chumminesses": null, + "chumming": null, + "chum": [["M", "S"]], + "chum's": null, + "chums": null, + "chummy": [["S", "R", "T", "P"]], + "chummies": null, + "chummier": null, + "chummiest": null, + "chumping": [["M"]], + "chumping's": null, + "chump": [["M", "D", "G", "S"]], + "chump's": null, + "chumped": null, + "chumps": null, + "Chungking's": null, + "Chung": [["M"]], + "Chung's": null, + "chunkiness": [["M", "S"]], + "chunkiness's": null, + "chunkinesses": null, + "chunk": [["S", "G", "D", "M"]], + "chunks": null, + "chunking": null, + "chunked": null, + "chunk's": null, + "chunky": [["R", "P", "T"]], + "chunkier": null, + "chunkiest": null, + "chuntering": null, + "churchgoer": [["S", "M"]], + "churchgoers": null, + "churchgoer's": null, + "churchgoing": [["S", "M"]], + "churchgoings": null, + "churchgoing's": null, + "Churchillian": null, + "Churchill": [["M"]], + "Churchill's": null, + "churchliness": [["M"]], + "churchliness's": null, + "churchly": [["P"]], + "churchman": [["M"]], + "churchman's": null, + "church": [["M", "D", "S", "Y", "G"]], + "church's": null, + "churched": null, + "churches": null, + "churching": null, + "churchmen": null, + "Church": [["M", "S"]], + "Church's": null, + "Churches": null, + "churchwarden": [["S", "M"]], + "churchwardens": null, + "churchwarden's": null, + "churchwoman": [["M"]], + "churchwoman's": null, + "churchwomen": null, + "churchyard": [["S", "M"]], + "churchyards": null, + "churchyard's": null, + "churlishness": [["S", "M"]], + "churlishnesses": null, + "churlishness's": null, + "churlish": [["Y", "P"]], + "churlishly": null, + "churl": [["S", "M"]], + "churls": null, + "churl's": null, + "churner": [["M"]], + "churner's": null, + "churning": [["M"]], + "churning's": null, + "churn": [["S", "G", "Z", "R", "D", "M"]], + "churns": null, + "churners": null, + "churned": null, + "churn's": null, + "chute": [["D", "S", "G", "M"]], + "chuted": null, + "chutes": null, + "chuting": null, + "chute's": null, + "chutney": [["M", "S"]], + "chutney's": null, + "chutneys": null, + "chutzpah": [["M"]], + "chutzpah's": null, + "chutzpahs": null, + "chutzpa": [["S", "M"]], + "chutzpas": null, + "chutzpa's": null, + "Chuvash": [["M"]], + "Chuvash's": null, + "ch": [["V", "T"]], + "chyme": [["S", "M"]], + "chymes": null, + "chyme's": null, + "Ci": null, + "CIA": null, + "ciao": [["S"]], + "ciaos": null, + "cicada": [["M", "S"]], + "cicada's": null, + "cicadas": null, + "cicatrice": [["S"]], + "cicatrices": null, + "cicatrix's": null, + "Cicely": [["M"]], + "Cicely's": null, + "Cicero": [["M"]], + "Cicero's": null, + "cicerone": [["M", "S"]], + "cicerone's": null, + "cicerones": null, + "ciceroni": null, + "Ciceronian": null, + "Cicily": [["M"]], + "Cicily's": null, + "CID": null, + "cider's": [["C"]], + "decider's": null, + "cider": [["S", "M"]], + "ciders": null, + "Cid": [["M"]], + "Cid's": null, + "Ciel": [["M"]], + "Ciel's": null, + "cigarette": [["M", "S"]], + "cigarette's": null, + "cigarettes": null, + "cigarillo": [["M", "S"]], + "cigarillo's": null, + "cigarillos": null, + "cigar": [["S", "M"]], + "cigars": null, + "cigar's": null, + "cilantro": [["S"]], + "cilantros": null, + "cilia": [["M"]], + "cilia's": null, + "ciliate": [["F", "D", "S"]], + "conciliate": [["G", "N", "V", "X"]], + "conciliated": null, + "conciliates": null, + "ciliated": null, + "ciliates": null, + "ciliately": null, + "cilium": [["M"]], + "cilium's": null, + "Cilka": [["M"]], + "Cilka's": null, + "cinch": [["M", "S", "D", "G"]], + "cinch's": null, + "cinches": null, + "cinched": null, + "cinching": null, + "cinchona": [["S", "M"]], + "cinchonas": null, + "cinchona's": null, + "Cincinnati": [["M"]], + "Cincinnati's": null, + "cincture": [["M", "G", "S", "D"]], + "cincture's": null, + "cincturing": null, + "cinctures": null, + "cinctured": null, + "Cinda": [["M"]], + "Cinda's": null, + "Cindee": [["M"]], + "Cindee's": null, + "Cindelyn": [["M"]], + "Cindelyn's": null, + "cinder": [["D", "M", "G", "S"]], + "cindered": null, + "cinder's": null, + "cindering": null, + "cinders": null, + "Cinderella": [["M", "S"]], + "Cinderella's": null, + "Cinderellas": null, + "Cindie": [["M"]], + "Cindie's": null, + "Cindi": [["M"]], + "Cindi's": null, + "Cindra": [["M"]], + "Cindra's": null, + "Cindy": [["M"]], + "Cindy's": null, + "cine": [["M"]], + "cine's": null, + "cinema": [["S", "M"]], + "cinemas": null, + "cinema's": null, + "cinematic": null, + "cinematographer": [["M", "S"]], + "cinematographer's": null, + "cinematographers": null, + "cinematographic": null, + "cinematography": [["M", "S"]], + "cinematography's": null, + "cinematographies": null, + "Cinerama": [["M"]], + "Cinerama's": null, + "cinnabar": [["M", "S"]], + "cinnabar's": null, + "cinnabars": null, + "Cinnamon": [["M"]], + "Cinnamon's": null, + "cinnamon": [["M", "S"]], + "cinnamon's": null, + "cinnamons": null, + "ciphered": [["C"]], + "deciphered": null, + "cipher": [["M", "S", "G", "D"]], + "cipher's": null, + "ciphers": [["C"]], + "ciphering": null, + "deciphers": null, + "cir": null, + "circa": null, + "circadian": null, + "Circe": [["M"]], + "Circe's": null, + "circler": [["M"]], + "circler's": null, + "circle": [["R", "S", "D", "G", "M"]], + "circles": null, + "circled": null, + "circling": null, + "circle's": null, + "circlet": [["M", "S"]], + "circlet's": null, + "circlets": null, + "circuital": null, + "circuit": [["G", "S", "M", "D"]], + "circuiting": null, + "circuits": null, + "circuit's": null, + "circuited": null, + "circuitousness": [["M", "S"]], + "circuitousness's": null, + "circuitousnesses": null, + "circuitous": [["Y", "P"]], + "circuitously": null, + "circuitry": [["S", "M"]], + "circuitries": null, + "circuitry's": null, + "circuity": [["M", "S"]], + "circuity's": null, + "circuities": null, + "circulant": null, + "circularity": [["S", "M"]], + "circularities": null, + "circularity's": null, + "circularize": [["G", "S", "D"]], + "circularizing": null, + "circularizes": null, + "circularized": null, + "circularness": [["M"]], + "circularness's": null, + "circular": [["P", "S", "M", "Y"]], + "circulars": null, + "circular's": null, + "circularly": null, + "circulate": [["A", "S", "D", "N", "G"]], + "recirculate": null, + "recirculates": null, + "recirculated": null, + "recirculation": null, + "recirculating": null, + "circulates": null, + "circulated": null, + "circulation": [["M", "A"]], + "circulating": null, + "circulation's": null, + "recirculation's": null, + "circulations": null, + "circulative": null, + "circulatory": null, + "circumcise": [["D", "R", "S", "X", "N", "G"]], + "circumcised": [["U"]], + "circumciser": [["M"]], + "circumcises": null, + "circumcisions": null, + "circumcision": [["M"]], + "circumcising": null, + "uncircumcised": null, + "circumciser's": null, + "circumcision's": null, + "circumference": [["S", "M"]], + "circumferences": null, + "circumference's": null, + "circumferential": [["Y"]], + "circumferentially": null, + "circumflex": [["M", "S", "D", "G"]], + "circumflex's": null, + "circumflexes": null, + "circumflexed": null, + "circumflexing": null, + "circumlocution": [["M", "S"]], + "circumlocution's": null, + "circumlocutions": null, + "circumlocutory": null, + "circumnavigate": [["D", "S", "N", "G", "X"]], + "circumnavigated": null, + "circumnavigates": null, + "circumnavigation": [["M"]], + "circumnavigating": null, + "circumnavigations": null, + "circumnavigational": null, + "circumnavigation's": null, + "circumpolar": null, + "circumscribe": [["G", "S", "D"]], + "circumscribing": null, + "circumscribes": null, + "circumscribed": null, + "circumscription": [["S", "M"]], + "circumscriptions": null, + "circumscription's": null, + "circumspection": [["S", "M"]], + "circumspections": null, + "circumspection's": null, + "circumspect": [["Y"]], + "circumspectly": null, + "circumsphere": null, + "circumstance": [["S", "D", "M", "G"]], + "circumstances": null, + "circumstanced": null, + "circumstance's": null, + "circumstancing": null, + "circumstantial": [["Y", "S"]], + "circumstantially": null, + "circumstantials": null, + "circumvention": [["M", "S"]], + "circumvention's": null, + "circumventions": null, + "circumvent": [["S", "B", "G", "D"]], + "circumvents": null, + "circumventable": null, + "circumventing": null, + "circumvented": null, + "circus": [["S", "M"]], + "circuses": null, + "circus's": null, + "Cirillo": [["M"]], + "Cirillo's": null, + "Cirilo": [["M"]], + "Cirilo's": null, + "Ciro": [["M"]], + "Ciro's": null, + "cirque": [["S", "M"]], + "cirques": null, + "cirque's": null, + "cirrhoses": null, + "cirrhosis": [["M"]], + "cirrhosis's": null, + "cirrhotic": [["S"]], + "cirrhotics": null, + "cirri": [["M"]], + "cirri's": null, + "cirrus": [["M"]], + "cirrus's": null, + "Cissiee": [["M"]], + "Cissiee's": null, + "Cissy": [["M"]], + "Cissy's": null, + "cistern": [["S", "M"]], + "cisterns": null, + "cistern's": null, + "citadel": [["S", "M"]], + "citadels": null, + "citadel's": null, + "citations": [["I"]], + "incitations": null, + "citation": [["S", "M", "A"]], + "recitations": null, + "citation's": null, + "recitation's": null, + "recitation": null, + "cit": [["D", "S", "G"]], + "cited": null, + "cits": null, + "citing": null, + "cite": [["I", "S", "D", "A", "G"]], + "incite": [["R", "Z", "L"]], + "incites": null, + "incited": null, + "inciting": null, + "cites": null, + "recites": null, + "recited": null, + "recite": [["Z", "R"]], + "reciting": null, + "Citibank": [["M"]], + "Citibank's": null, + "citified": null, + "citizenry": [["S", "M"]], + "citizenries": null, + "citizenry's": null, + "citizenship": [["M", "S"]], + "citizenship's": null, + "citizenships": null, + "citizen": [["S", "Y", "M"]], + "citizens": null, + "citizenly": null, + "citizen's": null, + "citrate": [["D", "M"]], + "citrated": null, + "citrate's": null, + "citric": null, + "Citroen": [["M"]], + "Citroen's": null, + "citronella": [["M", "S"]], + "citronella's": null, + "citronellas": null, + "citron": [["M", "S"]], + "citron's": null, + "citrons": null, + "citrus": [["S", "M"]], + "citruses": null, + "citrus's": null, + "city": [["D", "S", "M"]], + "citied": null, + "cities": null, + "city's": null, + "cityscape": [["M", "S"]], + "cityscape's": null, + "cityscapes": null, + "citywide": null, + "civet": [["S", "M"]], + "civets": null, + "civet's": null, + "civic": [["S"]], + "civics": [["M"]], + "civics's": null, + "civilian": [["S", "M"]], + "civilians": null, + "civilian's": null, + "civility": [["I", "M", "S"]], + "incivility": null, + "incivility's": null, + "incivilities": null, + "civility's": null, + "civilities": null, + "civilizational": [["M", "S"]], + "civilizational's": null, + "civilizationals": null, + "civilization": [["A", "M", "S"]], + "recivilization": null, + "recivilization's": null, + "recivilizations": null, + "civilization's": null, + "civilizations": null, + "civilizedness": [["M"]], + "civilizedness's": null, + "civilized": [["P", "U"]], + "uncivilizedness": null, + "uncivilized": [["Y"]], + "civilize": [["D", "R", "S", "Z", "G"]], + "civilizer": [["M"]], + "civilizes": [["A", "U"]], + "civilizers": null, + "civilizing": null, + "civilizer's": null, + "recivilizes": null, + "uncivilizes": null, + "civil": [["U", "Y"]], + "uncivil": null, + "uncivilly": null, + "civilly": null, + "civvies": null, + "ck": [["C"]], + "deck": [["G", "R", "D", "M", "S", "J"]], + "clack": [["S", "D", "G"]], + "clacks": null, + "clacked": null, + "clacking": null, + "cladding": [["S", "M"]], + "claddings": null, + "cladding's": null, + "clads": null, + "clad": [["U"]], + "unclad": null, + "Claiborne": [["M"]], + "Claiborne's": null, + "Claiborn": [["M"]], + "Claiborn's": null, + "claimable": null, + "claimant": [["M", "S"]], + "claimant's": null, + "claimants": null, + "claim": [["C", "D", "R", "S", "K", "A", "E", "G", "Z"]], + "declaim": null, + "declaimed": null, + "declaimer": null, + "declaims": null, + "declaiming": null, + "declaimers": null, + "claimed": [["U"]], + "proclaimed": null, + "reclaimed": null, + "disclaimed": null, + "claimer": [["K", "M", "A", "C", "E"]], + "proclaimer": null, + "reclaimer": null, + "disclaimer": null, + "claims": null, + "proclaims": null, + "reclaims": null, + "disclaims": null, + "proclaim": null, + "proclaiming": null, + "proclaimers": null, + "reclaim": [["B"]], + "reclaiming": null, + "reclaimers": null, + "disclaim": null, + "disclaiming": null, + "disclaimers": null, + "claiming": null, + "claimers": null, + "unclaimed": null, + "proclaimer's": null, + "claimer's": null, + "reclaimer's": null, + "declaimer's": null, + "disclaimer's": null, + "Claire": [["M"]], + "Claire's": null, + "Clair": [["M"]], + "Clair's": null, + "Clairol": [["M"]], + "Clairol's": null, + "clairvoyance": [["M", "S"]], + "clairvoyance's": null, + "clairvoyances": null, + "clairvoyant": [["Y", "S"]], + "clairvoyantly": null, + "clairvoyants": null, + "clambake": [["M", "S"]], + "clambake's": null, + "clambakes": null, + "clamberer": [["M"]], + "clamberer's": null, + "clamber": [["S", "D", "R", "Z", "G"]], + "clambers": null, + "clambered": null, + "clamberers": null, + "clambering": null, + "clammed": null, + "clammily": null, + "clamminess": [["M", "S"]], + "clamminess's": null, + "clamminesses": null, + "clamming": null, + "clam": [["M", "S"]], + "clam's": null, + "clams": null, + "clammy": [["T", "P", "R"]], + "clammiest": null, + "clammier": null, + "clamorer": [["M"]], + "clamorer's": null, + "clamor": [["G", "D", "R", "M", "S", "Z"]], + "clamoring": null, + "clamored": null, + "clamor's": null, + "clamors": null, + "clamorers": null, + "clamorousness": [["U", "M"]], + "unclamorousness": null, + "unclamorousness's": null, + "clamorousness's": null, + "clamorous": [["P", "U", "Y"]], + "unclamorous": null, + "unclamorously": null, + "clamorously": null, + "clampdown": [["S", "M"]], + "clampdowns": null, + "clampdown's": null, + "clamper": [["M"]], + "clamper's": null, + "clamp": [["M", "R", "D", "G", "S"]], + "clamp's": null, + "clamped": null, + "clamping": null, + "clamps": null, + "clamshell": [["M", "S"]], + "clamshell's": null, + "clamshells": null, + "Clancy": [["M"]], + "Clancy's": null, + "clandestineness": [["M"]], + "clandestineness's": null, + "clandestine": [["Y", "P"]], + "clandestinely": null, + "clanger": [["M"]], + "clanger's": null, + "clangor": [["M", "D", "S", "G"]], + "clangor's": null, + "clangored": null, + "clangors": null, + "clangoring": null, + "clangorous": [["Y"]], + "clangorously": null, + "clang": [["S", "G", "Z", "R", "D"]], + "clangs": null, + "clanging": null, + "clangers": null, + "clanged": null, + "clanking": [["Y"]], + "clankingly": null, + "clank": [["S", "G", "D", "M"]], + "clanks": null, + "clanked": null, + "clank's": null, + "clan": [["M", "S"]], + "clan's": null, + "clans": null, + "clannishness": [["S", "M"]], + "clannishnesses": null, + "clannishness's": null, + "clannish": [["P", "Y"]], + "clannishly": null, + "clansman": [["M"]], + "clansman's": null, + "clansmen": null, + "clapboard": [["S", "D", "G", "M"]], + "clapboards": null, + "clapboarded": null, + "clapboarding": null, + "clapboard's": null, + "Clapeyron": [["M"]], + "Clapeyron's": null, + "clapped": null, + "clapper": [["G", "M", "D", "S"]], + "clappering": null, + "clapper's": null, + "clappered": null, + "clappers": null, + "clapping": null, + "clap": [["S"]], + "claps": null, + "Clapton": [["M"]], + "Clapton's": null, + "claptrap": [["S", "M"]], + "claptraps": null, + "claptrap's": null, + "claque": [["M", "S"]], + "claque's": null, + "claques": null, + "Clarabelle": [["M"]], + "Clarabelle's": null, + "Clara": [["M"]], + "Clara's": null, + "Clarance": [["M"]], + "Clarance's": null, + "Clare": [["M"]], + "Clare's": null, + "Claremont": [["M"]], + "Claremont's": null, + "Clarence": [["M"]], + "Clarence's": null, + "Clarendon": [["M"]], + "Clarendon's": null, + "Claresta": [["M"]], + "Claresta's": null, + "Clareta": [["M"]], + "Clareta's": null, + "claret": [["M", "D", "G", "S"]], + "claret's": null, + "clareted": null, + "clareting": null, + "clarets": null, + "Claretta": [["M"]], + "Claretta's": null, + "Clarette": [["M"]], + "Clarette's": null, + "Clarey": [["M"]], + "Clarey's": null, + "Claribel": [["M"]], + "Claribel's": null, + "Clarice": [["M"]], + "Clarice's": null, + "Clarie": [["M"]], + "Clarie's": null, + "clarification": [["M"]], + "clarification's": null, + "clarifier": [["M"]], + "clarifier's": null, + "clarify": [["N", "G", "X", "D", "R", "S"]], + "clarifying": null, + "clarifications": null, + "clarified": null, + "clarifies": null, + "Clari": [["M"]], + "Clari's": null, + "Clarinda": [["M"]], + "Clarinda's": null, + "Clarine": [["M"]], + "Clarine's": null, + "clarinetist": [["S", "M"]], + "clarinetists": null, + "clarinetist's": null, + "clarinet": [["S", "M"]], + "clarinets": null, + "clarinet's": null, + "clarinettist's": null, + "clarion": [["G", "S", "M", "D"]], + "clarioning": null, + "clarions": null, + "clarion's": null, + "clarioned": null, + "Clarissa": [["M"]], + "Clarissa's": null, + "Clarisse": [["M"]], + "Clarisse's": null, + "Clarita": [["M"]], + "Clarita's": null, + "clarities": null, + "clarity": [["U", "M"]], + "unclarity": null, + "unclarity's": null, + "clarity's": null, + "Clarke": [["M"]], + "Clarke's": null, + "Clark": [["M"]], + "Clark's": null, + "Clarridge": [["M"]], + "Clarridge's": null, + "Clary": [["M"]], + "Clary's": null, + "clasher": [["M"]], + "clasher's": null, + "clash": [["R", "S", "D", "G"]], + "clashes": null, + "clashed": null, + "clashing": null, + "clasped": [["M"]], + "clasped's": null, + "clasper": [["M"]], + "clasper's": null, + "clasp's": null, + "clasp": [["U", "G", "S", "D"]], + "unclasp": null, + "unclasping": null, + "unclasps": null, + "unclasped": null, + "clasping": null, + "clasps": null, + "classer": [["M"]], + "classer's": null, + "class": [["G", "R", "S", "D", "M"]], + "classing": null, + "classes": null, + "classed": null, + "class's": null, + "classical": [["Y"]], + "classically": null, + "classicism": [["S", "M"]], + "classicisms": null, + "classicism's": null, + "classicist": [["S", "M"]], + "classicists": null, + "classicist's": null, + "classic": [["S"]], + "classics": [["M"]], + "classics's": null, + "classifiable": [["U"]], + "unclassifiable": null, + "classification": [["A", "M", "C"]], + "reclassification": null, + "reclassification's": null, + "classification's": null, + "declassification's": null, + "declassification": null, + "classificatory": null, + "classified": [["S"]], + "classifieds": null, + "classifier": [["S", "M"]], + "classifiers": null, + "classifier's": null, + "classify": [["C", "N", "X", "A", "S", "D", "G"]], + "declassify": null, + "declassifications": null, + "declassifies": null, + "declassified": null, + "declassifying": null, + "classifications": null, + "reclassifications": null, + "reclassify": null, + "reclassifies": null, + "reclassified": null, + "reclassifying": null, + "classifies": null, + "classifying": null, + "classiness": [["S", "M"]], + "classinesses": null, + "classiness's": null, + "classless": [["P"]], + "classlessness": null, + "classmate": [["M", "S"]], + "classmate's": null, + "classmates": null, + "classroom": [["M", "S"]], + "classroom's": null, + "classrooms": null, + "classwork": [["M"]], + "classwork's": null, + "classy": [["P", "R", "T"]], + "classier": null, + "classiest": null, + "clatterer": [["M"]], + "clatterer's": null, + "clattering": [["Y"]], + "clatteringly": null, + "clatter": [["S", "G", "D", "R"]], + "clatters": null, + "clattered": null, + "clattery": null, + "Claudelle": [["M"]], + "Claudelle's": null, + "Claudell": [["M"]], + "Claudell's": null, + "Claude": [["M"]], + "Claude's": null, + "Claudetta": [["M"]], + "Claudetta's": null, + "Claudette": [["M"]], + "Claudette's": null, + "Claudia": [["M"]], + "Claudia's": null, + "Claudian": [["M"]], + "Claudian's": null, + "Claudianus": [["M"]], + "Claudianus's": null, + "Claudie": [["M"]], + "Claudie's": null, + "Claudina": [["M"]], + "Claudina's": null, + "Claudine": [["M"]], + "Claudine's": null, + "Claudio": [["M"]], + "Claudio's": null, + "Claudius": [["M"]], + "Claudius's": null, + "clausal": null, + "clause": [["M", "S"]], + "clause's": null, + "clauses": null, + "Clausen": [["M"]], + "Clausen's": null, + "Clausewitz": [["M"]], + "Clausewitz's": null, + "Clausius": [["M"]], + "Clausius's": null, + "Claus": [["N", "M"]], + "Claus's": null, + "claustrophobia": [["S", "M"]], + "claustrophobias": null, + "claustrophobia's": null, + "claustrophobic": null, + "clave": [["R", "M"]], + "claver": null, + "clave's": [["F"]], + "conclave's": null, + "clavichord": [["S", "M"]], + "clavichords": null, + "clavichord's": null, + "clavicle": [["M", "S"]], + "clavicle's": null, + "clavicles": null, + "clavier": [["M", "S"]], + "clavier's": null, + "claviers": null, + "clawer": [["M"]], + "clawer's": null, + "claw": [["G", "D", "R", "M", "S"]], + "clawing": null, + "clawed": null, + "claw's": null, + "claws": null, + "Clayborne": [["M"]], + "Clayborne's": null, + "Clayborn": [["M"]], + "Clayborn's": null, + "Claybourne": [["M"]], + "Claybourne's": null, + "clayey": null, + "clayier": null, + "clayiest": null, + "Clay": [["M"]], + "Clay's": null, + "clay": [["M", "D", "G", "S"]], + "clay's": null, + "clayed": null, + "claying": null, + "clays": null, + "claymore": [["M", "S"]], + "claymore's": null, + "claymores": null, + "Clayson": [["M"]], + "Clayson's": null, + "Clayton": [["M"]], + "Clayton's": null, + "Clea": [["M"]], + "Clea's": null, + "cleanable": null, + "cleaner": [["M", "S"]], + "cleaner's": null, + "cleaners": null, + "cleaning": [["S", "M"]], + "cleanings": null, + "cleaning's": null, + "cleanliness": [["U", "M", "S"]], + "uncleanliness": null, + "uncleanliness's": null, + "uncleanlinesses": null, + "cleanliness's": null, + "cleanlinesses": null, + "cleanly": [["P", "R", "T", "U"]], + "cleanlier": null, + "uncleanlier": null, + "cleanliest": null, + "uncleanly": null, + "cleanness": [["M", "S", "U"]], + "cleanness's": null, + "uncleanness's": null, + "cleannesses": null, + "uncleannesses": null, + "uncleanness": null, + "cleanse": null, + "cleanser": [["M"]], + "cleanser's": null, + "cleans": [["G", "D", "R", "S", "Z"]], + "cleansing": null, + "cleansed": null, + "cleanses": null, + "cleansers": null, + "cleanup": [["M", "S"]], + "cleanup's": null, + "cleanups": null, + "clean": [["U", "Y", "R", "D", "P", "T"]], + "unclean": null, + "uncleaner": null, + "uncleaned": null, + "cleaned": null, + "cleanest": null, + "clearance": [["M", "S"]], + "clearance's": null, + "clearances": null, + "clearcut": null, + "clearer": [["M"]], + "clearer's": null, + "clearheadedness": [["M"]], + "clearheadedness's": null, + "clearheaded": [["P", "Y"]], + "clearheadedly": null, + "clearinghouse": [["S"]], + "clearinghouses": null, + "clearing": [["M", "S"]], + "clearing's": null, + "clearings": null, + "clearly": null, + "clearness": [["M", "S"]], + "clearness's": null, + "clearnesses": null, + "clears": null, + "clear": [["U", "T", "R", "D"]], + "unclear": null, + "unclearer": null, + "uncleared": null, + "clearest": null, + "cleared": null, + "Clearwater": [["M"]], + "Clearwater's": null, + "clearway": [["M"]], + "clearway's": null, + "cleat": [["M", "D", "S", "G"]], + "cleat's": null, + "cleated": null, + "cleats": null, + "cleating": null, + "cleavage": [["M", "S"]], + "cleavage's": null, + "cleavages": null, + "cleaver": [["M"]], + "cleaver's": null, + "cleave": [["R", "S", "D", "G", "Z"]], + "cleaves": null, + "cleaved": null, + "cleaving": null, + "cleavers": null, + "Cleavland": [["M"]], + "Cleavland's": null, + "clef": [["S", "M"]], + "clefs": null, + "clef's": null, + "cleft": [["M", "D", "G", "S"]], + "cleft's": null, + "clefted": null, + "clefting": null, + "clefts": null, + "clematis": [["M", "S"]], + "clematis's": null, + "clematises": null, + "clemence": null, + "Clemenceau": [["M"]], + "Clemenceau's": null, + "Clemence": [["M"]], + "Clemence's": null, + "clemency": [["I", "S", "M"]], + "inclemency": null, + "inclemencies": null, + "inclemency's": null, + "clemencies": null, + "clemency's": null, + "Clemente": [["M"]], + "Clemente's": null, + "Clementia": [["M"]], + "Clementia's": null, + "Clementina": [["M"]], + "Clementina's": null, + "Clementine": [["M"]], + "Clementine's": null, + "Clementius": [["M"]], + "Clementius's": null, + "clement": [["I", "Y"]], + "inclement": null, + "inclemently": null, + "clemently": null, + "Clement": [["M", "S"]], + "Clement's": null, + "Clements": null, + "clements": null, + "Clemmie": [["M"]], + "Clemmie's": null, + "Clemmy": [["M"]], + "Clemmy's": null, + "Clemons": null, + "Clemson": [["M"]], + "Clemson's": null, + "Clem": [["X", "M"]], + "Clemens": null, + "Clem's": null, + "clenches": null, + "clenching": null, + "clench": [["U", "D"]], + "unclench": null, + "unclenched": null, + "clenched": null, + "Cleo": [["M"]], + "Cleo's": null, + "Cleon": [["M"]], + "Cleon's": null, + "Cleopatra": [["M"]], + "Cleopatra's": null, + "Clerc": [["M"]], + "Clerc's": null, + "clerestory": [["M", "S"]], + "clerestory's": null, + "clerestories": null, + "clergyman": [["M"]], + "clergyman's": null, + "clergymen": null, + "clergy": [["M", "S"]], + "clergy's": null, + "clergies": null, + "clergywoman": null, + "clergywomen": null, + "clericalism": [["S", "M"]], + "clericalisms": null, + "clericalism's": null, + "clerical": [["Y", "S"]], + "clerically": null, + "clericals": null, + "cleric": [["S", "M"]], + "clerics": null, + "cleric's": null, + "Clerissa": [["M"]], + "Clerissa's": null, + "clerk": [["S", "G", "Y", "D", "M"]], + "clerks": null, + "clerking": null, + "clerkly": null, + "clerked": null, + "clerk's": null, + "clerkship": [["M", "S"]], + "clerkship's": null, + "clerkships": null, + "Cletis": null, + "Cletus": [["M"]], + "Cletus's": null, + "Cleveland": [["M"]], + "Cleveland's": null, + "Cleve": [["M"]], + "Cleve's": null, + "cleverness": [["S", "M"]], + "clevernesses": null, + "cleverness's": null, + "clever": [["R", "Y", "P", "T"]], + "cleverer": null, + "cleverly": null, + "cleverest": null, + "Clevey": [["M"]], + "Clevey's": null, + "Clevie": [["M"]], + "Clevie's": null, + "clevis": [["S", "M"]], + "clevises": null, + "clevis's": null, + "clew": [["D", "M", "G", "S"]], + "clewed": null, + "clew's": null, + "clewing": null, + "clews": null, + "cl": [["G", "J"]], + "cling": [["U"]], + "clings": null, + "Cliburn": [["M"]], + "Cliburn's": null, + "clich�d": null, + "clich�": [["S", "M"]], + "clich�s": null, + "clich�'s": null, + "clicker": [["M"]], + "clicker's": null, + "click": [["G", "Z", "S", "R", "D", "M"]], + "clicking": null, + "clickers": null, + "clicks": null, + "clicked": null, + "click's": null, + "client�le": [["S", "M"]], + "client�les": null, + "client�le's": null, + "client": [["S", "M"]], + "clients": null, + "client's": null, + "cliffhanger": [["M", "S"]], + "cliffhanger's": null, + "cliffhangers": null, + "cliffhanging": null, + "Cliff": [["M"]], + "Cliff's": null, + "Clifford": [["M"]], + "Clifford's": null, + "cliff": [["S", "M"]], + "cliffs": null, + "cliff's": null, + "Clifton": [["M"]], + "Clifton's": null, + "climacteric": [["S", "M"]], + "climacterics": null, + "climacteric's": null, + "climactic": null, + "climate": [["M", "S"]], + "climate's": null, + "climates": null, + "climatic": null, + "climatically": null, + "climatological": [["Y"]], + "climatologically": null, + "climatologist": [["S", "M"]], + "climatologists": null, + "climatologist's": null, + "climatology": [["M", "S"]], + "climatology's": null, + "climatologies": null, + "climax": [["M", "D", "S", "G"]], + "climax's": null, + "climaxed": null, + "climaxes": null, + "climaxing": null, + "climbable": [["U"]], + "unclimbable": null, + "climb": [["B", "G", "Z", "S", "J", "R", "D"]], + "climbing": null, + "climbers": null, + "climbs": null, + "climbings": null, + "climber": [["M"]], + "climbed": [["U"]], + "climbdown": null, + "unclimbed": null, + "climber's": null, + "clime": [["S", "M"]], + "climes": null, + "clime's": null, + "Clim": [["M"]], + "Clim's": null, + "clinch": [["D", "R", "S", "Z", "G"]], + "clinched": null, + "clincher": [["M"]], + "clinches": null, + "clinchers": null, + "clinching": [["Y"]], + "clincher's": null, + "clinchingly": null, + "Cline": [["M"]], + "Cline's": null, + "clinger": [["M", "S"]], + "clinger's": null, + "clingers": null, + "clinging": null, + "uncling": null, + "clingy": [["T", "R"]], + "clingiest": null, + "clingier": null, + "clinical": [["Y"]], + "clinically": null, + "clinician": [["M", "S"]], + "clinician's": null, + "clinicians": null, + "clinic": [["M", "S"]], + "clinic's": null, + "clinics": null, + "clinker": [["G", "M", "D"]], + "clinkering": null, + "clinker's": null, + "clinkered": null, + "clink": [["R", "D", "G", "S", "Z"]], + "clinked": null, + "clinking": null, + "clinks": null, + "clinkers": null, + "clinometer": [["M", "I", "S"]], + "clinometer's": null, + "inclinometer's": null, + "inclinometer": null, + "inclinometers": null, + "clinometers": null, + "Clint": [["M"]], + "Clint's": null, + "Clinton": [["M"]], + "Clinton's": null, + "Clio": [["M"]], + "Clio's": null, + "cliometrician": [["S"]], + "cliometricians": null, + "cliometric": [["S"]], + "cliometrics": null, + "clipboard": [["S", "M"]], + "clipboards": null, + "clipboard's": null, + "clipped": [["U"]], + "unclipped": null, + "clipper": [["M", "S"]], + "clipper's": null, + "clippers": null, + "clipping": [["S", "M"]], + "clippings": null, + "clipping's": null, + "clip": [["S", "M"]], + "clips": null, + "clip's": null, + "clique": [["S", "D", "G", "M"]], + "cliques": null, + "cliqued": null, + "cliquing": null, + "clique's": null, + "cliquey": null, + "cliquier": null, + "cliquiest": null, + "cliquishness": [["S", "M"]], + "cliquishnesses": null, + "cliquishness's": null, + "cliquish": [["Y", "P"]], + "cliquishly": null, + "clitoral": null, + "clitorides": null, + "clitoris": [["M", "S"]], + "clitoris's": null, + "clitorises": null, + "Clive": [["M"]], + "Clive's": null, + "cloacae": null, + "cloaca": [["M"]], + "cloaca's": null, + "cloakroom": [["M", "S"]], + "cloakroom's": null, + "cloakrooms": null, + "cloak's": null, + "cloak": [["U", "S", "D", "G"]], + "uncloak": null, + "uncloaks": null, + "uncloaked": null, + "uncloaking": null, + "cloaks": null, + "cloaked": null, + "cloaking": null, + "clobber": [["D", "G", "S"]], + "clobbered": null, + "clobbering": null, + "clobbers": null, + "cloche": [["M", "S"]], + "cloche's": null, + "cloches": null, + "clocker": [["M"]], + "clocker's": null, + "clockmaker": [["M"]], + "clockmaker's": null, + "clock": [["S", "G", "Z", "R", "D", "M", "J"]], + "clocks": null, + "clocking": null, + "clockers": null, + "clocked": null, + "clock's": null, + "clockings": null, + "clockwatcher": null, + "clockwise": null, + "clockwork": [["M", "S"]], + "clockwork's": null, + "clockworks": null, + "clodded": null, + "clodding": null, + "cloddishness": [["M"]], + "cloddishness's": null, + "cloddish": [["P"]], + "clodhopper": [["S", "M"]], + "clodhoppers": null, + "clodhopper's": null, + "clod": [["M", "S"]], + "clod's": null, + "clods": null, + "Cloe": [["M"]], + "Cloe's": null, + "clogged": [["U"]], + "unclogged": null, + "clogging": [["U"]], + "unclogging": null, + "clog's": null, + "clog": [["U", "S"]], + "unclog": null, + "unclogs": null, + "clogs": null, + "cloisonn�": null, + "cloisonnes": null, + "cloister": [["M", "D", "G", "S"]], + "cloister's": null, + "cloistered": null, + "cloistering": null, + "cloisters": null, + "cloistral": null, + "Clo": [["M"]], + "Clo's": null, + "clomp": [["M", "D", "S", "G"]], + "clomp's": null, + "clomped": null, + "clomps": null, + "clomping": null, + "clonal": null, + "clone": [["D", "S", "R", "G", "M", "Z"]], + "cloned": null, + "clones": null, + "cloner": null, + "cloning": null, + "clone's": null, + "cloners": null, + "clonk": [["S", "G", "D"]], + "clonks": null, + "clonking": null, + "clonked": null, + "clopped": null, + "clopping": null, + "clop": [["S"]], + "clops": null, + "Cloris": [["M"]], + "Cloris's": null, + "closed": [["U"]], + "unclosed": null, + "close": [["E", "D", "S", "R", "G"]], + "disclose": null, + "disclosed": [["U"]], + "discloses": null, + "discloser": null, + "disclosing": null, + "closes": null, + "closer": [["E", "M"]], + "closing": [["S"]], + "closefisted": null, + "closely": null, + "closemouthed": null, + "closeness": [["M", "S"]], + "closeness's": null, + "closenesses": null, + "closeout": [["M", "S"]], + "closeout's": null, + "closeouts": null, + "discloser's": null, + "closer's": null, + "closers": null, + "closest": null, + "closet": [["M", "D", "S", "G"]], + "closet's": null, + "closeted": null, + "closets": null, + "closeting": null, + "closeup": [["S"]], + "closeups": null, + "closings": null, + "closured": null, + "closure": [["E", "M", "S"]], + "disclosure": null, + "disclosure's": null, + "disclosures": null, + "closure's": [["I"]], + "closures": null, + "inclosure's": null, + "closuring": null, + "clothbound": null, + "clothesbrush": null, + "clotheshorse": [["M", "S"]], + "clotheshorse's": null, + "clotheshorses": null, + "clothesline": [["S", "D", "G", "M"]], + "clotheslines": null, + "clotheslined": null, + "clotheslining": null, + "clothesline's": null, + "clothesman": null, + "clothesmen": null, + "clothespin": [["M", "S"]], + "clothespin's": null, + "clothespins": null, + "clothe": [["U", "D", "S", "G"]], + "unclothe": null, + "unclothed": null, + "unclothes": null, + "unclothing": null, + "clothed": null, + "clothes": null, + "clothing": [["M"]], + "cloth": [["G", "J", "M", "S", "D"]], + "clothings": null, + "cloth's": null, + "clothier": [["M", "S"]], + "clothier's": null, + "clothiers": null, + "clothing's": null, + "Clotho": [["M"]], + "Clotho's": null, + "cloths": null, + "Clotilda": [["M"]], + "Clotilda's": null, + "clot": [["M", "S"]], + "clot's": null, + "clots": null, + "clotted": null, + "clotting": null, + "cloture": [["M", "D", "S", "G"]], + "cloture's": null, + "clotured": null, + "clotures": null, + "cloturing": null, + "cloudburst": [["M", "S"]], + "cloudburst's": null, + "cloudbursts": null, + "clouded": [["U"]], + "unclouded": [["Y"]], + "cloudiness": [["S", "M"]], + "cloudinesses": null, + "cloudiness's": null, + "cloudlessness": [["M"]], + "cloudlessness's": null, + "cloudless": [["Y", "P"]], + "cloudlessly": null, + "cloudscape": [["S", "M"]], + "cloudscapes": null, + "cloudscape's": null, + "cloud": [["S", "G", "M", "D"]], + "clouds": null, + "clouding": null, + "cloud's": null, + "cloudy": [["T", "P", "R"]], + "cloudiest": null, + "cloudier": null, + "clout": [["G", "S", "M", "D"]], + "clouting": null, + "clouts": null, + "clout's": null, + "clouted": null, + "cloven": null, + "cloverleaf": [["M", "S"]], + "cloverleaf's": null, + "cloverleafs": null, + "clover": [["M"]], + "clover's": null, + "clove": [["S", "R", "M", "Z"]], + "cloves": null, + "clove's": null, + "clovers": null, + "Clovis": [["M"]], + "Clovis's": null, + "clown": [["D", "M", "S", "G"]], + "clowned": null, + "clown's": null, + "clowns": null, + "clowning": null, + "clownishness": [["S", "M"]], + "clownishnesses": null, + "clownishness's": null, + "clownish": [["P", "Y"]], + "clownishly": null, + "cloy": [["D", "S", "G"]], + "cloyed": null, + "cloys": null, + "cloying": [["Y"]], + "cloyingly": null, + "clubbed": [["M"]], + "clubbed's": null, + "clubbing": [["M"]], + "clubbing's": null, + "clubfeet": null, + "clubfoot": [["D", "M"]], + "clubfooted": null, + "clubfoot's": null, + "clubhouse": [["S", "M"]], + "clubhouses": null, + "clubhouse's": null, + "club": [["M", "S"]], + "club's": null, + "clubs": null, + "clubroom": [["S", "M"]], + "clubrooms": null, + "clubroom's": null, + "cluck": [["G", "S", "D", "M"]], + "clucking": null, + "clucks": null, + "clucked": null, + "cluck's": null, + "clueless": null, + "clue": [["M", "G", "D", "S"]], + "clue's": null, + "cluing": null, + "clued": null, + "clues": null, + "Cluj": [["M"]], + "Cluj's": null, + "clump": [["M", "D", "G", "S"]], + "clump's": null, + "clumped": null, + "clumping": null, + "clumps": null, + "clumpy": [["R", "T"]], + "clumpier": null, + "clumpiest": null, + "clumsily": null, + "clumsiness": [["M", "S"]], + "clumsiness's": null, + "clumsinesses": null, + "clumsy": [["P", "R", "T"]], + "clumsier": null, + "clumsiest": null, + "clung": null, + "clunk": [["S", "G", "Z", "R", "D", "M"]], + "clunks": null, + "clunking": null, + "clunkers": null, + "clunker": null, + "clunked": null, + "clunk's": null, + "clunky": [["P", "R", "Y", "T"]], + "clunkiness": null, + "clunkier": null, + "clunkyly": null, + "clunkiest": null, + "clustered": [["A", "U"]], + "reclustered": null, + "unclustered": null, + "clusters": [["A"]], + "reclusters": null, + "cluster": [["S", "G", "J", "M", "D"]], + "clustering": null, + "clusterings": null, + "cluster's": null, + "clutch": [["D", "S", "G"]], + "clutched": null, + "clutches": null, + "clutching": null, + "cluttered": [["U"]], + "uncluttered": null, + "clutter": [["G", "S", "D"]], + "cluttering": null, + "clutters": null, + "Cl": [["V", "M"]], + "Cl's": null, + "Clyde": [["M"]], + "Clyde's": null, + "Clydesdale": [["M"]], + "Clydesdale's": null, + "Cly": [["M"]], + "Cly's": null, + "Clytemnestra": [["M"]], + "Clytemnestra's": null, + "Clyve": [["M"]], + "Clyve's": null, + "Clywd": [["M"]], + "Clywd's": null, + "cm": null, + "Cm": [["M"]], + "Cm's": null, + "CMOS": null, + "cnidarian": [["M", "S"]], + "cnidarian's": null, + "cnidarians": null, + "CNN": null, + "CNS": null, + "CO": null, + "coacher": [["M"]], + "coacher's": null, + "coachman": [["M"]], + "coachman's": null, + "coachmen": null, + "coach": [["M", "S", "R", "D", "G"]], + "coach's": null, + "coaches": null, + "coached": null, + "coaching": null, + "coachwork": [["M"]], + "coachwork's": null, + "coadjutor": [["M", "S"]], + "coadjutor's": null, + "coadjutors": null, + "coagulable": null, + "coagulant": [["S", "M"]], + "coagulants": null, + "coagulant's": null, + "coagulate": [["G", "N", "X", "S", "D"]], + "coagulating": null, + "coagulation": [["M"]], + "coagulations": null, + "coagulates": null, + "coagulated": null, + "coagulation's": null, + "coagulator": [["S"]], + "coagulators": null, + "coaler": [["M"]], + "coaler's": null, + "coalesce": [["G", "D", "S"]], + "coalescing": null, + "coalesced": null, + "coalesces": null, + "coalescence": [["S", "M"]], + "coalescences": null, + "coalescence's": null, + "coalescent": null, + "coalface": [["S", "M"]], + "coalfaces": null, + "coalface's": null, + "coalfield": [["M", "S"]], + "coalfield's": null, + "coalfields": null, + "coalitionist": [["S", "M"]], + "coalitionists": null, + "coalitionist's": null, + "coalition": [["M", "S"]], + "coalition's": null, + "coalitions": null, + "coal": [["M", "D", "R", "G", "S"]], + "coal's": null, + "coaled": null, + "coaling": null, + "coals": null, + "coalminers": null, + "coarseness": [["S", "M"]], + "coarsenesses": null, + "coarseness's": null, + "coarsen": [["S", "G", "D"]], + "coarsens": null, + "coarsening": null, + "coarsened": null, + "coarse": [["T", "Y", "R", "P"]], + "coarsest": null, + "coarsely": null, + "coarser": null, + "coastal": null, + "coaster": [["M"]], + "coaster's": null, + "coastguard": [["M", "S"]], + "coastguard's": null, + "coastguards": null, + "coastline": [["S", "M"]], + "coastlines": null, + "coastline's": null, + "coast": [["S", "M", "R", "D", "G", "Z"]], + "coasts": null, + "coast's": null, + "coasted": null, + "coasting": null, + "coasters": null, + "coated": [["U"]], + "uncoated": null, + "Coates": [["M"]], + "Coates's": null, + "coating": [["M"]], + "coating's": null, + "coat": [["M", "D", "R", "G", "Z", "J", "S"]], + "coat's": null, + "coater": null, + "coaters": null, + "coatings": null, + "coats": null, + "coattail": [["S"]], + "coattails": null, + "coattest": null, + "coauthor": [["M", "D", "G", "S"]], + "coauthor's": null, + "coauthored": null, + "coauthoring": null, + "coauthors": null, + "coaxer": [["M"]], + "coaxer's": null, + "coax": [["G", "Z", "D", "S", "R"]], + "coaxing": [["Y"]], + "coaxers": null, + "coaxed": null, + "coaxes": null, + "coaxial": [["Y"]], + "coaxially": null, + "coaxingly": null, + "Cobain": [["M"]], + "Cobain's": null, + "cobalt": [["M", "S"]], + "cobalt's": null, + "cobalts": null, + "cobbed": null, + "Cobbie": [["M"]], + "Cobbie's": null, + "cobbing": null, + "cobbler": [["M"]], + "cobbler's": null, + "cobble": [["S", "R", "D", "G", "M", "Z"]], + "cobbles": null, + "cobbled": null, + "cobbling": null, + "cobble's": null, + "cobblers": null, + "cobblestone": [["M", "S", "D"]], + "cobblestone's": null, + "cobblestones": null, + "cobblestoned": null, + "Cobb": [["M"]], + "Cobb's": null, + "Cobby": [["M"]], + "Cobby's": null, + "coble": [["M"]], + "coble's": null, + "Cob": [["M"]], + "Cob's": null, + "COBOL": null, + "Cobol": [["M"]], + "Cobol's": null, + "cobra": [["M", "S"]], + "cobra's": null, + "cobras": null, + "cob": [["S", "M"]], + "cobs": null, + "cob's": null, + "cobwebbed": null, + "cobwebbing": null, + "cobwebby": [["R", "T"]], + "cobwebbier": null, + "cobwebbiest": null, + "cobweb": [["S", "M"]], + "cobwebs": null, + "cobweb's": null, + "cocaine": [["M", "S"]], + "cocaine's": null, + "cocaines": null, + "coca": [["M", "S"]], + "coca's": null, + "cocas": null, + "cocci": [["M", "S"]], + "cocci's": null, + "coccis": null, + "coccus": [["M"]], + "coccus's": null, + "coccyges": null, + "coccyx": [["M"]], + "coccyx's": null, + "Cochabamba": [["M"]], + "Cochabamba's": null, + "cochineal": [["S", "M"]], + "cochineals": null, + "cochineal's": null, + "Cochin": [["M"]], + "Cochin's": null, + "Cochise": [["M"]], + "Cochise's": null, + "cochleae": null, + "cochlear": null, + "cochlea": [["S", "M"]], + "cochleas": null, + "cochlea's": null, + "Cochran": [["M"]], + "Cochran's": null, + "cockade": [["S", "M"]], + "cockades": null, + "cockade's": null, + "cockamamie": null, + "cockatoo": [["S", "M"]], + "cockatoos": null, + "cockatoo's": null, + "cockatrice": [["M", "S"]], + "cockatrice's": null, + "cockatrices": null, + "cockcrow": [["M", "S"]], + "cockcrow's": null, + "cockcrows": null, + "cockerel": [["M", "S"]], + "cockerel's": null, + "cockerels": null, + "cocker": [["M"]], + "cocker's": null, + "cockeye": [["D", "M"]], + "cockeyed": [["P", "Y"]], + "cockeye's": null, + "cockeyedness": null, + "cockeyedly": null, + "cockfighting": [["M"]], + "cockfighting's": null, + "cockfight": [["M", "J", "S", "G"]], + "cockfight's": null, + "cockfightings": null, + "cockfights": null, + "cock": [["G", "D", "R", "M", "S"]], + "cocking": null, + "cocked": null, + "cock's": null, + "cocks": null, + "cockily": null, + "cockiness": [["M", "S"]], + "cockiness's": null, + "cockinesses": null, + "cocklebur": [["M"]], + "cocklebur's": null, + "cockle": [["S", "D", "G", "M"]], + "cockles": null, + "cockled": null, + "cockling": null, + "cockle's": null, + "cockleshell": [["S", "M"]], + "cockleshells": null, + "cockleshell's": null, + "Cockney": null, + "cockney": [["M", "S"]], + "cockney's": null, + "cockneys": null, + "cockpit": [["M", "S"]], + "cockpit's": null, + "cockpits": null, + "cockroach": [["S", "M"]], + "cockroaches": null, + "cockroach's": null, + "cockscomb": [["S", "M"]], + "cockscombs": null, + "cockscomb's": null, + "cockshies": null, + "cocksucker": [["S", "!"]], + "cocksuckers": null, + "cocksure": null, + "cocktail": [["G", "D", "M", "S"]], + "cocktailing": null, + "cocktailed": null, + "cocktail's": null, + "cocktails": null, + "cocky": [["R", "P", "T"]], + "cockier": null, + "cockiest": null, + "cocoa": [["S", "M"]], + "cocoas": null, + "cocoa's": null, + "coco": [["M", "S"]], + "coco's": null, + "cocos": null, + "coconut": [["S", "M"]], + "coconuts": null, + "coconut's": null, + "cocoon": [["G", "D", "M", "S"]], + "cocooning": null, + "cocooned": null, + "cocoon's": null, + "cocoons": null, + "Cocteau": [["M"]], + "Cocteau's": null, + "COD": null, + "coda": [["S", "M"]], + "codas": null, + "coda's": null, + "codded": null, + "codding": null, + "coddle": [["G", "S", "R", "D"]], + "coddling": null, + "coddles": null, + "coddler": [["M"]], + "coddled": null, + "coddler's": null, + "codebook": [["S"]], + "codebooks": null, + "codebreak": [["R"]], + "codebreaker": null, + "coded": [["U", "A"]], + "uncoded": null, + "recoded": null, + "Codee": [["M"]], + "Codee's": null, + "codeine": [["M", "S"]], + "codeine's": null, + "codeines": null, + "codename": [["D"]], + "codenamed": null, + "codependency": [["S"]], + "codependencies": null, + "codependent": [["S"]], + "codependents": null, + "coder": [["C", "M"]], + "decoder": null, + "decoder's": null, + "coder's": null, + "code's": null, + "co": [["D", "E", "S"]], + "coed": [["S", "M"]], + "discoed": null, + "disco": [["M", "G"]], + "discos": null, + "cos": [["G", "D", "S"]], + "codes": [["A"]], + "recodes": null, + "code": [["S", "C", "Z", "G", "J", "R", "D"]], + "decodes": null, + "decode": null, + "decoders": null, + "decoding": null, + "decodings": null, + "decoded": null, + "coders": null, + "coding": [["M"]], + "codings": null, + "codetermine": [["S"]], + "codetermines": null, + "codeword": [["S", "M"]], + "codewords": null, + "codeword's": null, + "codex": [["M"]], + "codex's": null, + "codfish": [["S", "M"]], + "codfishes": null, + "codfish's": null, + "codger": [["M", "S"]], + "codger's": null, + "codgers": null, + "codices": [["M"]], + "codices's": null, + "codicil": [["S", "M"]], + "codicils": null, + "codicil's": null, + "Codie": [["M"]], + "Codie's": null, + "codification": [["M"]], + "codification's": null, + "codifier": [["M"]], + "codifier's": null, + "codify": [["N", "Z", "X", "G", "R", "S", "D"]], + "codifiers": null, + "codifications": null, + "codifying": null, + "codifies": null, + "codified": null, + "Codi": [["M"]], + "Codi's": null, + "coding's": null, + "codling": [["M"]], + "codling's": null, + "Cod": [["M"]], + "Cod's": null, + "cod": [["M", "D", "R", "S", "Z", "G", "J"]], + "cod's": null, + "cods": null, + "codpiece": [["M", "S"]], + "codpiece's": null, + "codpieces": null, + "Cody": [["M"]], + "Cody's": null, + "coedited": null, + "coediting": null, + "coeditor": [["M", "S"]], + "coeditor's": null, + "coeditors": null, + "coedits": null, + "coeds": null, + "coed's": null, + "coeducational": null, + "coeducation": [["S", "M"]], + "coeducations": null, + "coeducation's": null, + "coefficient": [["S", "Y", "M"]], + "coefficients": null, + "coefficiently": null, + "coefficient's": null, + "coelenterate": [["M", "S"]], + "coelenterate's": null, + "coelenterates": null, + "coequal": [["S", "Y"]], + "coequals": null, + "coequally": null, + "coercer": [["M"]], + "coercer's": null, + "coerce": [["S", "R", "D", "X", "V", "G", "N", "Z"]], + "coerces": null, + "coerced": null, + "coercions": null, + "coercive": [["P", "Y"]], + "coercing": null, + "coercion": [["M"]], + "coercers": null, + "coercible": [["I"]], + "incoercible": null, + "coercion's": null, + "coerciveness": [["M"]], + "coerciveness's": null, + "coercively": null, + "coeval": [["Y", "S"]], + "coevally": null, + "coevals": null, + "coexistence": [["M", "S"]], + "coexistence's": null, + "coexistences": null, + "coexistent": null, + "coexist": [["G", "D", "S"]], + "coexisting": null, + "coexisted": null, + "coexists": null, + "coextensive": [["Y"]], + "coextensively": null, + "cofactor": [["M", "S"]], + "cofactor's": null, + "cofactors": null, + "coffeecake": [["S", "M"]], + "coffeecakes": null, + "coffeecake's": null, + "coffeecup": null, + "coffeehouse": [["S", "M"]], + "coffeehouses": null, + "coffeehouse's": null, + "coffeemaker": [["S"]], + "coffeemakers": null, + "coffeepot": [["M", "S"]], + "coffeepot's": null, + "coffeepots": null, + "coffee": [["S", "M"]], + "coffees": null, + "coffee's": null, + "cofferdam": [["S", "M"]], + "cofferdams": null, + "cofferdam's": null, + "coffer": [["D", "M", "S", "G"]], + "coffered": null, + "coffer's": null, + "coffers": null, + "coffering": null, + "Coffey": [["M"]], + "Coffey's": null, + "coffin": [["D", "M", "G", "S"]], + "coffined": null, + "coffin's": null, + "coffining": null, + "coffins": null, + "Coffman": [["M"]], + "Coffman's": null, + "cogency": [["M", "S"]], + "cogency's": null, + "cogencies": null, + "cogent": [["Y"]], + "cogently": null, + "cogged": null, + "cogging": null, + "cogitate": [["D", "S", "X", "N", "G", "V"]], + "cogitated": null, + "cogitates": null, + "cogitations": null, + "cogitation": [["M"]], + "cogitating": null, + "cogitative": null, + "cogitation's": null, + "cogitator": [["M", "S"]], + "cogitator's": null, + "cogitators": null, + "cog": [["M", "S"]], + "cog's": null, + "cogs": null, + "Cognac": [["M"]], + "Cognac's": null, + "cognac": [["S", "M"]], + "cognacs": null, + "cognac's": null, + "cognate": [["S", "X", "Y", "N"]], + "cognates": null, + "cognations": null, + "cognately": null, + "cognation": [["M"]], + "cognation's": null, + "cognitional": null, + "cognition": [["S", "A", "M"]], + "cognitions": null, + "recognitions": null, + "recognition": null, + "recognition's": null, + "cognition's": null, + "cognitive": [["S", "Y"]], + "cognitives": null, + "cognitively": null, + "cognizable": null, + "cognizance": [["M", "A", "I"]], + "cognizance's": null, + "recognizance's": null, + "incognizance's": null, + "recognizance": null, + "incognizance": null, + "cognizances": [["A"]], + "recognizances": null, + "cognizant": [["I"]], + "incognizant": null, + "cognomen": [["S", "M"]], + "cognomens": null, + "cognomen's": null, + "cognoscente": null, + "cognoscenti": null, + "cogwheel": [["S", "M"]], + "cogwheels": null, + "cogwheel's": null, + "cohabitant": [["M", "S"]], + "cohabitant's": null, + "cohabitants": null, + "cohabitational": null, + "cohabitation": [["S", "M"]], + "cohabitations": null, + "cohabitation's": null, + "cohabit": [["S", "D", "G"]], + "cohabits": null, + "cohabited": null, + "cohabiting": null, + "Cohan": [["M"]], + "Cohan's": null, + "coheir": [["M", "S"]], + "coheir's": null, + "coheirs": null, + "Cohen": [["M"]], + "Cohen's": null, + "cohere": [["G", "S", "R", "D"]], + "cohering": null, + "coheres": null, + "coherer": [["M"]], + "cohered": null, + "coherence": [["S", "I", "M"]], + "coherences": null, + "incoherences": null, + "incoherence": null, + "incoherence's": null, + "coherence's": null, + "coherencies": null, + "coherency": [["I"]], + "incoherency": [["M"]], + "coherent": [["I", "Y"]], + "incoherent": null, + "incoherently": null, + "coherently": null, + "coherer's": null, + "cohesion": [["M", "S"]], + "cohesion's": null, + "cohesions": null, + "cohesiveness": [["S", "M"]], + "cohesivenesses": null, + "cohesiveness's": null, + "cohesive": [["P", "Y"]], + "cohesively": null, + "Cohn": [["M"]], + "Cohn's": null, + "cohoes": null, + "coho": [["M", "S"]], + "coho's": null, + "cohos": null, + "cohort": [["S", "M"]], + "cohorts": null, + "cohort's": null, + "coiffed": null, + "coiffing": null, + "coiffure": [["M", "G", "S", "D"]], + "coiffure's": null, + "coiffuring": null, + "coiffures": null, + "coiffured": null, + "coif": [["S", "M"]], + "coifs": null, + "coif's": null, + "coil": [["U", "G", "S", "A", "D"]], + "uncoil": null, + "uncoiling": null, + "uncoils": null, + "uncoiled": null, + "coiling": null, + "recoiling": null, + "coils": null, + "recoils": null, + "recoil": null, + "recoiled": null, + "coiled": null, + "Coimbatore": [["M"]], + "Coimbatore's": null, + "coinage's": [["A"]], + "recoinage's": null, + "coinage": [["S", "M"]], + "coinages": null, + "coincide": [["G", "S", "D"]], + "coinciding": null, + "coincides": null, + "coincided": null, + "coincidence": [["M", "S"]], + "coincidence's": null, + "coincidences": null, + "coincidental": [["Y"]], + "coincidentally": null, + "coincident": [["Y"]], + "coincidently": null, + "coined": [["U"]], + "uncoined": null, + "coiner": [["M"]], + "coiner's": null, + "coin": [["G", "Z", "S", "D", "R", "M"]], + "coining": null, + "coiners": null, + "coins": null, + "coin's": null, + "coinsurance": [["S", "M"]], + "coinsurances": null, + "coinsurance's": null, + "Cointon": [["M"]], + "Cointon's": null, + "cointreau": null, + "coital": [["Y"]], + "coitally": null, + "coitus": [["S", "M"]], + "coituses": null, + "coitus's": null, + "coke": [["M", "G", "D", "S"]], + "coke's": null, + "coking": null, + "coked": null, + "cokes": null, + "Coke": [["M", "S"]], + "Coke's": null, + "Cokes": null, + "COL": null, + "COLA": null, + "colander": [["S", "M"]], + "colanders": null, + "colander's": null, + "Colan": [["M"]], + "Colan's": null, + "Colas": null, + "cola": [["S", "M"]], + "colas": null, + "cola's": null, + "colatitude": [["M", "S"]], + "colatitude's": null, + "colatitudes": null, + "Colbert": [["M"]], + "Colbert's": null, + "Colby": [["M"]], + "Colby's": null, + "coldblooded": null, + "coldish": null, + "coldness": [["M", "S"]], + "coldness's": null, + "coldnesses": null, + "cold": [["Y", "R", "P", "S", "T"]], + "coldly": null, + "colder": null, + "colds": null, + "coldest": null, + "Coleen": [["M"]], + "Coleen's": null, + "Cole": [["M"]], + "Cole's": null, + "Coleman": [["M"]], + "Coleman's": null, + "Colene": [["M"]], + "Colene's": null, + "Coleridge": [["M"]], + "Coleridge's": null, + "coleslaw": [["S", "M"]], + "coleslaws": null, + "coleslaw's": null, + "Colet": [["M"]], + "Colet's": null, + "Coletta": [["M"]], + "Coletta's": null, + "Colette": [["M"]], + "Colette's": null, + "coleus": [["S", "M"]], + "coleuses": null, + "coleus's": null, + "Colfax": [["M"]], + "Colfax's": null, + "Colgate": [["M"]], + "Colgate's": null, + "colicky": null, + "colic": [["S", "M"]], + "colics": null, + "colic's": null, + "coliform": null, + "Colin": [["M"]], + "Colin's": null, + "coliseum": [["S", "M"]], + "coliseums": null, + "coliseum's": null, + "colitis": [["M", "S"]], + "colitis's": null, + "colitises": null, + "collaborate": [["V", "G", "N", "X", "S", "D"]], + "collaborative": [["S", "Y"]], + "collaborating": null, + "collaboration": [["M"]], + "collaborations": null, + "collaborates": null, + "collaborated": null, + "collaboration's": null, + "collaboratives": null, + "collaboratively": null, + "collaborator": [["S", "M"]], + "collaborators": null, + "collaborator's": null, + "collage": [["M", "G", "S", "D"]], + "collage's": null, + "collaging": null, + "collages": null, + "collaged": null, + "collagen": [["M"]], + "collagen's": null, + "collapse": [["S", "D", "G"]], + "collapses": null, + "collapsed": null, + "collapsing": null, + "collapsibility": [["M"]], + "collapsibility's": null, + "collapsible": null, + "collarbone": [["M", "S"]], + "collarbone's": null, + "collarbones": null, + "collar": [["D", "M", "G", "S"]], + "collared": null, + "collar's": null, + "collaring": null, + "collars": null, + "collard": [["S", "M"]], + "collards": null, + "collard's": null, + "collarless": null, + "collated": [["U"]], + "uncollated": null, + "collateral": [["S", "Y", "M"]], + "collaterals": null, + "collaterally": null, + "collateral's": null, + "collate": [["S", "D", "V", "N", "G", "X"]], + "collates": null, + "collative": null, + "collation": [["M"]], + "collating": null, + "collations": null, + "collation's": null, + "collator": [["M", "S"]], + "collator's": null, + "collators": null, + "colleague": [["S", "D", "G", "M"]], + "colleagues": null, + "colleagued": null, + "colleaguing": null, + "colleague's": null, + "collectedness": [["M"]], + "collectedness's": null, + "collected": [["P", "Y"]], + "collectedly": null, + "collectible": [["S"]], + "collectibles": null, + "collection": [["A", "M", "S"]], + "recollection": null, + "recollection's": null, + "recollections": null, + "collection's": null, + "collections": null, + "collective": [["S", "Y"]], + "collectives": null, + "collectively": null, + "collectivism": [["S", "M"]], + "collectivisms": null, + "collectivism's": null, + "collectivist": [["M", "S"]], + "collectivist's": null, + "collectivists": null, + "collectivity": [["M", "S"]], + "collectivity's": null, + "collectivities": null, + "collectivization": [["M", "S"]], + "collectivization's": null, + "collectivizations": null, + "collectivize": [["D", "S", "G"]], + "collectivized": null, + "collectivizes": null, + "collectivizing": null, + "collector": [["M", "S"]], + "collector's": null, + "collectors": null, + "collect": [["S", "A", "G", "D"]], + "collects": null, + "recollects": null, + "recollect": null, + "recollecting": null, + "recollected": null, + "collecting": null, + "Colleen": [["M"]], + "Colleen's": null, + "colleen": [["S", "M"]], + "colleens": null, + "colleen's": null, + "college": [["S", "M"]], + "colleges": null, + "college's": null, + "collegiality": [["S"]], + "collegialities": null, + "collegian": [["S", "M"]], + "collegians": null, + "collegian's": null, + "collegiate": [["Y"]], + "collegiately": null, + "Collen": [["M"]], + "Collen's": null, + "Collete": [["M"]], + "Collete's": null, + "Collette": [["M"]], + "Collette's": null, + "coll": [["G"]], + "colling": null, + "collide": [["S", "D", "G"]], + "collides": null, + "collided": null, + "colliding": null, + "Collie": [["M"]], + "Collie's": null, + "collie": [["M", "Z", "S", "R", "D"]], + "collie's": null, + "colliers": null, + "collies": null, + "collier": [["M"]], + "collied": null, + "collier's": null, + "Collier": [["M"]], + "Collier's": null, + "colliery": [["M", "S"]], + "colliery's": null, + "collieries": null, + "collimate": [["C"]], + "decollimate": null, + "collimated": [["U"]], + "uncollimated": null, + "collimates": null, + "collimating": null, + "collimation": [["M"]], + "collimation's": null, + "collimator": [["M"]], + "collimator's": null, + "collinear": null, + "collinearity": [["M"]], + "collinearity's": null, + "Colline": [["M"]], + "Colline's": null, + "Collin": [["M", "S"]], + "Collin's": null, + "Collins": null, + "collisional": null, + "collision": [["S", "M"]], + "collisions": null, + "collision's": null, + "collocate": [["X", "S", "D", "G", "N"]], + "collocations": null, + "collocates": null, + "collocated": null, + "collocating": null, + "collocation": [["M"]], + "collocation's": null, + "colloidal": [["Y"]], + "colloidally": null, + "colloid": [["M", "S"]], + "colloid's": null, + "colloids": null, + "colloq": null, + "colloquialism": [["M", "S"]], + "colloquialism's": null, + "colloquialisms": null, + "colloquial": [["S", "Y"]], + "colloquials": null, + "colloquially": null, + "colloquies": null, + "colloquium": [["S", "M"]], + "colloquiums": null, + "colloquium's": null, + "colloquy": [["M"]], + "colloquy's": null, + "collude": [["S", "D", "G"]], + "colludes": null, + "colluded": null, + "colluding": null, + "collusion": [["S", "M"]], + "collusions": null, + "collusion's": null, + "collusive": null, + "collying": null, + "Colly": [["R", "M"]], + "Colly's": null, + "Colman": [["M"]], + "Colman's": null, + "Col": [["M", "Y"]], + "Col's": null, + "Cologne": [["M"]], + "Cologne's": null, + "cologne": [["M", "S", "D"]], + "cologne's": null, + "colognes": null, + "cologned": null, + "Colo": [["M"]], + "Colo's": null, + "Colombia": [["M"]], + "Colombia's": null, + "Colombian": [["S"]], + "Colombians": null, + "Colombo": [["M"]], + "Colombo's": null, + "colonelcy": [["M", "S"]], + "colonelcy's": null, + "colonelcies": null, + "colonel": [["M", "S"]], + "colonel's": null, + "colonels": null, + "colonialism": [["M", "S"]], + "colonialism's": null, + "colonialisms": null, + "colonialist": [["M", "S"]], + "colonialist's": null, + "colonialists": null, + "colonial": [["S", "P", "Y"]], + "colonials": null, + "colonialness": null, + "colonially": null, + "colonist": [["S", "M"]], + "colonists": null, + "colonist's": null, + "colonization": [["A", "C", "S", "M"]], + "recolonization": null, + "recolonizations": null, + "recolonization's": null, + "decolonization": null, + "decolonizations": null, + "decolonization's": null, + "colonizations": null, + "colonization's": null, + "colonize": [["A", "C", "S", "D", "G"]], + "recolonize": null, + "recolonizes": null, + "recolonized": null, + "recolonizing": null, + "decolonize": null, + "decolonizes": null, + "decolonized": null, + "decolonizing": null, + "colonizes": [["U"]], + "colonized": [["U"]], + "colonizing": null, + "uncolonized": null, + "colonizer": [["M", "S"]], + "colonizer's": null, + "colonizers": null, + "uncolonizes": null, + "Colon": [["M"]], + "Colon's": null, + "colonnade": [["M", "S", "D"]], + "colonnade's": null, + "colonnades": null, + "colonnaded": null, + "colon": [["S", "M"]], + "colons": null, + "colon's": null, + "colony": [["S", "M"]], + "colonies": null, + "colony's": null, + "colophon": [["S", "M"]], + "colophons": null, + "colophon's": null, + "Coloradan": [["S"]], + "Coloradans": null, + "Coloradoan": [["S"]], + "Coloradoans": null, + "Colorado": [["M"]], + "Colorado's": null, + "colorant": [["S", "M"]], + "colorants": null, + "colorant's": null, + "coloration": [["E", "M", "S"]], + "discoloration": null, + "discoloration's": null, + "discolorations": null, + "coloration's": null, + "colorations": null, + "coloratura": [["S", "M"]], + "coloraturas": null, + "coloratura's": null, + "colorblindness": [["S"]], + "colorblindnesses": null, + "colorblind": [["P"]], + "colored": [["U", "S", "E"]], + "uncolored": [["P", "Y"]], + "uncoloreds": null, + "coloreds": null, + "discoloreds": [["U"]], + "discolored": [["M", "P"]], + "colorer": [["M"]], + "colorer's": null, + "colorfastness": [["S", "M"]], + "colorfastnesses": null, + "colorfastness's": null, + "colorfast": [["P"]], + "colorfulness": [["M", "S"]], + "colorfulness's": null, + "colorfulnesses": null, + "colorful": [["P", "Y"]], + "colorfully": null, + "colorimeter": [["S", "M"]], + "colorimeters": null, + "colorimeter's": null, + "colorimetry": null, + "coloring": [["M"]], + "coloring's": null, + "colorization": [["S"]], + "colorizations": null, + "colorize": [["G", "S", "D"]], + "colorizing": [["C"]], + "colorizes": null, + "colorized": null, + "decolorizing": null, + "colorlessness": [["S", "M"]], + "colorlessnesses": null, + "colorlessness's": null, + "colorless": [["P", "Y"]], + "colorlessly": null, + "colors": [["E", "A"]], + "discolors": null, + "recolors": null, + "color": [["S", "R", "D", "M", "G", "Z", "J"]], + "color's": null, + "colorers": null, + "colorings": null, + "colossal": [["Y"]], + "colossally": null, + "Colosseum": [["M"]], + "Colosseum's": null, + "colossi": null, + "colossus": [["M"]], + "colossus's": null, + "colostomy": [["S", "M"]], + "colostomies": null, + "colostomy's": null, + "colostrum": [["S", "M"]], + "colostrums": null, + "colostrum's": null, + "col": [["S", "D"]], + "cols": null, + "coled": null, + "colter": [["M"]], + "colter's": null, + "coltishness": [["M"]], + "coltishness's": null, + "coltish": [["P", "Y"]], + "coltishly": null, + "Colt": [["M"]], + "Colt's": null, + "colt": [["M", "R", "S"]], + "colt's": null, + "colts": null, + "Coltrane": [["M"]], + "Coltrane's": null, + "Columbia": [["M"]], + "Columbia's": null, + "Columbian": null, + "Columbine": [["M"]], + "Columbine's": null, + "columbine": [["S", "M"]], + "columbines": null, + "columbine's": null, + "Columbus": [["M"]], + "Columbus's": null, + "columnar": null, + "columnist": [["M", "S"]], + "columnist's": null, + "columnists": null, + "columnize": [["G", "S", "D"]], + "columnizing": null, + "columnizes": null, + "columnized": null, + "column": [["S", "D", "M"]], + "columns": null, + "columned": null, + "column's": null, + "Colver": [["M"]], + "Colver's": null, + "Co": [["M"]], + "Co's": null, + "comae": null, + "comaker": [["S", "M"]], + "comakers": null, + "comaker's": null, + "Comanche": [["M", "S"]], + "Comanche's": null, + "Comanches": null, + "coma": [["S", "M"]], + "comas": null, + "coma's": null, + "comatose": null, + "combatant": [["S", "M"]], + "combatants": null, + "combatant's": null, + "combativeness": [["M", "S"]], + "combativeness's": null, + "combativenesses": null, + "combative": [["P", "Y"]], + "combatively": null, + "combat": [["S", "V", "G", "M", "D"]], + "combats": null, + "combating": null, + "combat's": null, + "combated": null, + "combed": [["U"]], + "uncombed": null, + "comber": [["M"]], + "comber's": null, + "combinational": [["A"]], + "recombinational": null, + "combination": [["A", "S", "M"]], + "recombination": null, + "recombinations": null, + "recombination's": null, + "combinations": null, + "combination's": null, + "combinatorial": [["Y"]], + "combinatorially": null, + "combinatoric": [["S"]], + "combinatorics": null, + "combinator": [["S", "M"]], + "combinators": null, + "combinator's": null, + "combined": [["A", "U"]], + "recombined": null, + "uncombined": null, + "combiner": [["M"]], + "combiner's": null, + "combines": [["A"]], + "recombines": null, + "combine": [["Z", "G", "B", "R", "S", "D"]], + "combiners": null, + "combining": [["A"]], + "combinable": null, + "recombining": null, + "combo": [["M", "S"]], + "combo's": null, + "combos": null, + "comb": [["S", "G", "Z", "D", "R", "M", "J"]], + "combs": null, + "combing": null, + "combers": null, + "comb's": null, + "combings": null, + "Combs": [["M"]], + "Combs's": null, + "combusted": null, + "combustibility": [["S", "M"]], + "combustibilities": null, + "combustibility's": null, + "combustible": [["S", "I"]], + "combustibles": null, + "incombustibles": null, + "incombustible": null, + "combustion": [["M", "S"]], + "combustion's": null, + "combustions": null, + "combustive": null, + "Comdex": [["M"]], + "Comdex's": null, + "Comdr": [["M"]], + "Comdr's": null, + "comeback": [["S", "M"]], + "comebacks": null, + "comeback's": null, + "comedian": [["S", "M"]], + "comedians": null, + "comedian's": null, + "comedic": null, + "comedienne": [["S", "M"]], + "comediennes": null, + "comedienne's": null, + "comedown": [["M", "S"]], + "comedown's": null, + "comedowns": null, + "comedy": [["S", "M"]], + "comedies": null, + "comedy's": null, + "come": [["I", "Z", "S", "R", "G", "J"]], + "income": [["M"]], + "incomers": null, + "incomes": null, + "incomer": null, + "incoming": null, + "incomings": null, + "comers": null, + "comes": [["M"]], + "comer": [["I", "M"]], + "coming": null, + "comings": null, + "comeliness": [["S", "M"]], + "comelinesses": null, + "comeliness's": null, + "comely": [["T", "P", "R"]], + "comeliest": null, + "comelier": null, + "incomer's": null, + "comer's": null, + "comes's": null, + "comestible": [["M", "S"]], + "comestible's": null, + "comestibles": null, + "cometary": null, + "cometh": null, + "comet": [["S", "M"]], + "comets": null, + "comet's": null, + "comeuppance": [["S", "M"]], + "comeuppances": null, + "comeuppance's": null, + "comfit's": null, + "comfit": [["S", "E"]], + "comfits": null, + "discomfits": null, + "discomfit": [["D", "G"]], + "comfortability": [["S"]], + "comfortabilities": null, + "comfortableness": [["M", "S"]], + "comfortableness's": null, + "comfortablenesses": null, + "comfortable": [["U"]], + "uncomfortable": null, + "comfortably": [["U"]], + "uncomfortably": null, + "comforted": [["U"]], + "uncomforted": null, + "comforter": [["M", "S"]], + "comforter's": null, + "comforters": null, + "comfort": [["E", "S", "M", "D", "G"]], + "discomfort": null, + "discomforts": null, + "discomfort's": null, + "discomforted": null, + "discomforting": null, + "comforts": null, + "comfort's": null, + "comforting": [["Y", "E"]], + "comfortingly": null, + "discomfortingly": null, + "comfy": [["R", "T"]], + "comfier": null, + "comfiest": null, + "comicality": [["M", "S"]], + "comicality's": null, + "comicalities": null, + "comical": [["Y"]], + "comically": null, + "comic": [["M", "S"]], + "comic's": null, + "comics": null, + "Cominform": [["M"]], + "Cominform's": null, + "comity": [["S", "M"]], + "comities": null, + "comity's": null, + "com": [["L", "J", "R", "T", "Z", "G"]], + "comment": [["S", "U", "G", "D"]], + "comest": null, + "comm": null, + "Com": [["M"]], + "Com's": null, + "comma": [["M", "S"]], + "comma's": null, + "commas": null, + "commandant": [["M", "S"]], + "commandant's": null, + "commandants": null, + "commandeer": [["S", "D", "G"]], + "commandeers": null, + "commandeered": null, + "commandeering": null, + "commander": [["M"]], + "commander's": null, + "commanding": [["Y"]], + "commandingly": null, + "commandment": [["S", "M"]], + "commandments": null, + "commandment's": null, + "commando": [["S", "M"]], + "commandos": null, + "commando's": null, + "command": [["S", "Z", "R", "D", "M", "G", "L"]], + "commands": null, + "commanders": null, + "commanded": null, + "command's": null, + "commemorate": [["S", "D", "V", "N", "G", "X"]], + "commemorates": null, + "commemorated": null, + "commemorative": [["Y", "S"]], + "commemoration": [["M"]], + "commemorating": null, + "commemorations": null, + "commemoration's": null, + "commemoratively": null, + "commemoratives": null, + "commemorator": [["S"]], + "commemorators": null, + "commence": [["A", "L", "D", "S", "G"]], + "recommence": null, + "recommencement": null, + "recommenced": null, + "recommences": null, + "recommencing": null, + "commencement": [["A", "M", "S"]], + "commenced": null, + "commences": null, + "commencing": null, + "recommencement's": null, + "recommencements": null, + "commencement's": null, + "commencements": null, + "commencer": [["M"]], + "commencer's": null, + "commendably": null, + "commendation": [["A", "S", "M"]], + "recommendation": null, + "recommendations": null, + "recommendation's": null, + "commendations": null, + "commendation's": null, + "commendatory": [["A"]], + "recommendatory": null, + "commender": [["A", "M"]], + "recommender": null, + "recommender's": null, + "commender's": null, + "commend": [["G", "S", "A", "D", "R", "B"]], + "commending": null, + "recommending": null, + "commends": null, + "recommends": null, + "recommend": null, + "recommended": [["U"]], + "recommendable": null, + "commended": null, + "commendable": null, + "commensurable": [["I"]], + "incommensurable": null, + "commensurate": [["I", "Y"]], + "incommensurate": null, + "incommensurately": null, + "commensurately": null, + "commensurates": null, + "commensuration": [["S", "M"]], + "commensurations": null, + "commensuration's": null, + "commentary": [["M", "S"]], + "commentary's": null, + "commentaries": null, + "commentate": [["G", "S", "D"]], + "commentating": null, + "commentates": null, + "commentated": null, + "commentator": [["S", "M"]], + "commentators": null, + "commentator's": null, + "commenter": [["M"]], + "commenter's": null, + "comment's": null, + "comments": null, + "uncomments": null, + "uncomment": null, + "uncommenting": null, + "uncommented": null, + "commenting": null, + "commented": null, + "commerce": [["M", "G", "S", "D"]], + "commerce's": null, + "commercing": null, + "commerces": null, + "commerced": null, + "commercialism": [["M", "S"]], + "commercialism's": null, + "commercialisms": null, + "commercialization": [["S", "M"]], + "commercializations": null, + "commercialization's": null, + "commercialize": [["G", "S", "D"]], + "commercializing": null, + "commercializes": null, + "commercialized": null, + "commercial": [["P", "Y", "S"]], + "commercialness": null, + "commercially": null, + "commercials": null, + "Commie": null, + "commie": [["S", "M"]], + "commies": null, + "commie's": null, + "commingle": [["G", "S", "D"]], + "commingling": null, + "commingles": null, + "commingled": null, + "commiserate": [["V", "G", "N", "X", "S", "D"]], + "commiserative": null, + "commiserating": null, + "commiseration": [["M"]], + "commiserations": null, + "commiserates": null, + "commiserated": null, + "commiseration's": null, + "commissariat": [["M", "S"]], + "commissariat's": null, + "commissariats": null, + "commissar": [["M", "S"]], + "commissar's": null, + "commissars": null, + "commissary": [["M", "S"]], + "commissary's": null, + "commissaries": null, + "commission": [["A", "S", "C", "G", "D"]], + "recommission": null, + "recommissions": null, + "recommissioning": null, + "recommissioned": null, + "commissions": null, + "decommissions": null, + "decommission": null, + "decommissioning": null, + "decommissioned": null, + "commissioning": null, + "commissioned": null, + "commissioner": [["S", "M"]], + "commissioners": null, + "commissioner's": null, + "commission's": [["A"]], + "recommission's": null, + "commitment": [["S", "M"]], + "commitments": null, + "commitment's": null, + "commit": [["S", "A"]], + "commits": null, + "recommits": null, + "recommit": null, + "committable": null, + "committal": [["M", "A"]], + "committal's": null, + "recommittal's": null, + "recommittal": null, + "committals": null, + "committed": [["U", "A"]], + "uncommitted": null, + "recommitted": null, + "committeeman": [["M"]], + "committeeman's": null, + "committeemen": null, + "committee": [["M", "S"]], + "committee's": null, + "committees": null, + "committeewoman": [["M"]], + "committeewoman's": null, + "committeewomen": null, + "committing": [["A"]], + "recommitting": null, + "commode": [["M", "S"]], + "commode's": null, + "commodes": [["I", "E"]], + "incommodes": null, + "discommodes": null, + "commodiousness": [["M", "I"]], + "commodiousness's": null, + "incommodiousness's": null, + "incommodiousness": null, + "commodious": [["Y", "I", "P"]], + "commodiously": null, + "incommodiously": null, + "incommodious": null, + "commodity": [["M", "S"]], + "commodity's": null, + "commodities": null, + "commodore": [["S", "M"]], + "commodores": null, + "commodore's": null, + "commonality": [["M", "S"]], + "commonality's": null, + "commonalities": null, + "commonalty": [["M", "S"]], + "commonalty's": null, + "commonalties": null, + "commoner": [["M", "S"]], + "commoner's": null, + "commoners": null, + "commonness": [["M", "S", "U"]], + "commonness's": null, + "uncommonness's": null, + "commonnesses": null, + "uncommonnesses": null, + "uncommonness": null, + "commonplaceness": [["M"]], + "commonplaceness's": null, + "commonplace": [["S", "P"]], + "commonplaces": null, + "common": [["R", "Y", "U", "P", "T"]], + "uncommoner": null, + "commonly": null, + "uncommonly": null, + "uncommon": null, + "commonest": null, + "commonsense": null, + "commons": [["M"]], + "commons's": null, + "Commons": [["M"]], + "Commons's": null, + "commonweal": [["S", "H", "M"]], + "commonweals": null, + "commonwealth": [["M"]], + "commonweal's": null, + "commonwealth's": null, + "Commonwealth": [["M"]], + "Commonwealth's": null, + "commonwealths": null, + "Commonwealths": null, + "commotion": [["M", "S"]], + "commotion's": null, + "commotions": null, + "communality": [["M"]], + "communality's": null, + "communal": [["Y"]], + "communally": null, + "commune": [["X", "S", "D", "N", "G"]], + "communions": null, + "communes": null, + "communed": null, + "communion": [["M"]], + "communing": null, + "communicability": [["M", "S"]], + "communicability's": null, + "communicabilities": null, + "communicable": [["I", "U"]], + "incommunicable": null, + "uncommunicable": null, + "communicably": null, + "communicant": [["M", "S"]], + "communicant's": null, + "communicants": null, + "communicate": [["V", "N", "G", "X", "S", "D"]], + "communicative": [["P", "Y"]], + "communication": [["M"]], + "communicating": null, + "communications": null, + "communicates": null, + "communicated": null, + "communicational": null, + "communication's": null, + "communicativeness": [["M"]], + "communicativeness's": null, + "communicatively": null, + "communicator": [["S", "M"]], + "communicators": null, + "communicator's": null, + "communion's": null, + "Communion": [["S", "M"]], + "Communions": null, + "Communion's": null, + "communique": [["S"]], + "communiques": null, + "communism": [["M", "S"]], + "communism's": null, + "communisms": null, + "Communism": [["S"]], + "Communisms": null, + "communistic": null, + "communist": [["M", "S"]], + "communist's": null, + "communists": null, + "Communist": [["S"]], + "Communists": null, + "communitarian": [["M"]], + "communitarian's": null, + "community": [["M", "S"]], + "community's": null, + "communities": null, + "communize": [["S", "D", "G"]], + "communizes": null, + "communized": null, + "communizing": null, + "commutable": [["I"]], + "incommutable": null, + "commutate": [["X", "V", "G", "N", "S", "D"]], + "commutations": null, + "commutative": [["Y"]], + "commutating": null, + "commutation": [["M"]], + "commutates": null, + "commutated": null, + "commutation's": null, + "commutatively": null, + "commutativity": null, + "commutator": [["M", "S"]], + "commutator's": null, + "commutators": null, + "commute": [["B", "Z", "G", "R", "S", "D"]], + "commuters": null, + "commuting": null, + "commuter": [["M"]], + "commutes": null, + "commuted": null, + "commuter's": null, + "Comoros": null, + "compaction": [["M"]], + "compaction's": null, + "compactness": [["M", "S"]], + "compactness's": null, + "compactnesses": null, + "compactor": [["M", "S"]], + "compactor's": null, + "compactors": null, + "compact": [["T", "Z", "G", "S", "P", "R", "D", "Y"]], + "compactest": null, + "compacters": null, + "compacting": null, + "compacts": null, + "compacter": null, + "compacted": null, + "compactly": null, + "companionableness": [["M"]], + "companionableness's": null, + "companionable": [["P"]], + "companionably": null, + "companion": [["G", "B", "S", "M", "D"]], + "companioning": null, + "companions": null, + "companion's": null, + "companioned": null, + "companionship": [["M", "S"]], + "companionship's": null, + "companionships": null, + "companionway": [["M", "S"]], + "companionway's": null, + "companionways": null, + "company": [["M", "S", "D", "G"]], + "company's": null, + "companies": null, + "companied": null, + "companying": null, + "Compaq": [["M"]], + "Compaq's": null, + "comparabilities": null, + "comparability": [["I", "M"]], + "incomparability": null, + "incomparability's": null, + "comparability's": null, + "comparableness": [["M"]], + "comparableness's": null, + "comparable": [["P"]], + "comparably": [["I"]], + "incomparably": null, + "comparativeness": [["M"]], + "comparativeness's": null, + "comparative": [["P", "Y", "S"]], + "comparatively": null, + "comparatives": null, + "comparator": [["S", "M"]], + "comparators": null, + "comparator's": null, + "compare": [["G", "R", "S", "D", "B"]], + "comparing": null, + "comparer": [["M"]], + "compares": null, + "compared": null, + "comparer's": null, + "comparison": [["M", "S"]], + "comparison's": null, + "comparisons": null, + "compartmental": null, + "compartmentalization": [["S", "M"]], + "compartmentalizations": null, + "compartmentalization's": null, + "compartmentalize": [["D", "S", "G"]], + "compartmentalized": null, + "compartmentalizes": null, + "compartmentalizing": null, + "compartment": [["S", "D", "M", "G"]], + "compartments": null, + "compartmented": null, + "compartment's": null, + "compartmenting": null, + "compassionateness": [["M"]], + "compassionateness's": null, + "compassionate": [["P", "S", "D", "G", "Y"]], + "compassionates": null, + "compassionated": null, + "compassionating": null, + "compassionately": null, + "compassion": [["M", "S"]], + "compassion's": null, + "compassions": null, + "compass": [["M", "S", "D", "G"]], + "compass's": null, + "compasses": null, + "compassed": null, + "compassing": null, + "compatibility": [["I", "M", "S"]], + "incompatibility": null, + "incompatibility's": null, + "incompatibilities": null, + "compatibility's": null, + "compatibilities": null, + "compatibleness": [["M"]], + "compatibleness's": null, + "compatible": [["S", "I"]], + "compatibles": null, + "incompatibles": null, + "incompatible": null, + "compatibly": [["I"]], + "incompatibly": null, + "compatriot": [["S", "M"]], + "compatriots": null, + "compatriot's": null, + "compeer": [["D", "S", "G", "M"]], + "compeered": null, + "compeers": null, + "compeering": null, + "compeer's": null, + "compellable": null, + "compelled": null, + "compelling": [["Y", "M"]], + "compellingly": null, + "compelling's": null, + "compel": [["S"]], + "compels": null, + "compendious": null, + "compendium": [["M", "S"]], + "compendium's": null, + "compendiums": null, + "compensable": null, + "compensated": [["U"]], + "uncompensated": null, + "compensate": [["X", "V", "N", "G", "S", "D"]], + "compensations": null, + "compensative": null, + "compensation": [["M"]], + "compensating": null, + "compensates": null, + "compensation's": null, + "compensator": [["M"]], + "compensator's": null, + "compensatory": null, + "compete": [["G", "S", "D"]], + "competing": null, + "competes": null, + "competed": null, + "competence": [["I", "S", "M"]], + "incompetence": null, + "incompetences": null, + "incompetence's": null, + "competences": null, + "competence's": null, + "competency": [["I", "S"]], + "incompetency": null, + "incompetencies": null, + "competencies": null, + "competency's": null, + "competent": [["I", "Y"]], + "incompetent": [["M", "S"]], + "incompetently": null, + "competently": null, + "competition": [["S", "M"]], + "competitions": null, + "competition's": null, + "competitiveness": [["S", "M"]], + "competitivenesses": null, + "competitiveness's": null, + "competitive": [["Y", "P"]], + "competitively": null, + "competitor": [["M", "S"]], + "competitor's": null, + "competitors": null, + "comp": [["G", "S", "Y", "D"]], + "comping": null, + "comps": null, + "comply": [["Z", "X", "R", "S", "D", "N", "G"]], + "comped": null, + "compilable": [["U"]], + "uncompilable": null, + "compilation": [["S", "A", "M"]], + "compilations": null, + "recompilations": null, + "recompilation": null, + "recompilation's": null, + "compilation's": null, + "compile": [["A", "S", "D", "C", "G"]], + "recompile": null, + "recompiles": null, + "recompiled": null, + "recompiling": null, + "compiles": null, + "decompiles": null, + "compiled": null, + "decompiled": null, + "decompile": null, + "decompiling": null, + "compiling": null, + "compiler": [["C", "S"]], + "decompiler": null, + "decompilers": null, + "compilers": null, + "compiler's": null, + "complacence": [["S"]], + "complacences": null, + "complacency": [["S", "M"]], + "complacencies": null, + "complacency's": null, + "complacent": [["Y"]], + "complacently": null, + "complainant": [["M", "S"]], + "complainant's": null, + "complainants": null, + "complainer": [["M"]], + "complainer's": null, + "complain": [["G", "Z", "R", "D", "S"]], + "complaining": [["Y", "U"]], + "complainers": null, + "complained": null, + "complains": null, + "complainingly": null, + "uncomplainingly": null, + "uncomplaining": null, + "complaint": [["M", "S"]], + "complaint's": null, + "complaints": null, + "complaisance": [["S", "M"]], + "complaisances": null, + "complaisance's": null, + "complaisant": [["Y"]], + "complaisantly": null, + "complected": null, + "complementariness": [["M"]], + "complementariness's": null, + "complementarity": null, + "complementary": [["S", "P"]], + "complementaries": null, + "complementation": [["M"]], + "complementation's": null, + "complementer": [["M"]], + "complementer's": null, + "complement": [["Z", "S", "M", "R", "D", "G"]], + "complementers": null, + "complements": null, + "complement's": null, + "complemented": null, + "complementing": null, + "complete": [["B", "T", "Y", "V", "N", "G", "P", "R", "S", "D", "X"]], + "completable": null, + "completest": null, + "completely": [["I"]], + "completive": null, + "completion": [["M", "I"]], + "completing": null, + "completeness": [["I", "S", "M"]], + "completer": [["M"]], + "completes": null, + "completed": [["U"]], + "completions": null, + "uncompleted": null, + "incompletely": null, + "incompleteness": null, + "incompletenesses": null, + "incompleteness's": null, + "completenesses": null, + "completeness's": null, + "completer's": null, + "completion's": null, + "incompletion's": null, + "incompletion": null, + "complexional": null, + "complexion": [["D", "M", "S"]], + "complexioned": null, + "complexion's": null, + "complexions": null, + "complexity": [["M", "S"]], + "complexity's": null, + "complexities": null, + "complexness": [["M"]], + "complexness's": null, + "complex": [["T", "G", "P", "R", "S", "D", "Y"]], + "complexest": null, + "complexing": null, + "complexer": null, + "complexes": null, + "complexed": null, + "complexly": null, + "compliance": [["S", "M"]], + "compliances": null, + "compliance's": null, + "compliant": [["Y"]], + "compliantly": null, + "complicatedness": [["M"]], + "complicatedness's": null, + "complicated": [["Y", "P"]], + "complicatedly": null, + "complicate": [["S", "D", "G"]], + "complicates": null, + "complicating": null, + "complication": [["M"]], + "complication's": null, + "complicator": [["S", "M"]], + "complicators": null, + "complicator's": null, + "complicit": null, + "complicity": [["M", "S"]], + "complicity's": null, + "complicities": null, + "complier": [["M"]], + "complier's": null, + "complimentary": [["U"]], + "uncomplimentary": null, + "complimenter": [["M"]], + "complimenter's": null, + "compliment": [["Z", "S", "M", "R", "D", "G"]], + "complimenters": null, + "compliments": null, + "compliment's": null, + "complimented": null, + "complimenting": null, + "compliers": null, + "complications": null, + "complies": null, + "complied": null, + "complying": null, + "component": [["S", "M"]], + "components": null, + "component's": null, + "comport": [["G", "L", "S", "D"]], + "comporting": null, + "comportment": [["S", "M"]], + "comports": null, + "comported": null, + "comportments": null, + "comportment's": null, + "compose": [["C", "G", "A", "S", "D", "E"]], + "decompose": [["B"]], + "decomposing": null, + "decomposes": null, + "decomposed": null, + "composing": null, + "recomposing": null, + "discomposing": null, + "recompose": null, + "recomposes": null, + "recomposed": null, + "composes": null, + "discomposes": null, + "composed": [["P", "Y"]], + "discomposed": null, + "discompose": null, + "composedness": [["M"]], + "composedness's": null, + "composedly": null, + "composer": [["C", "M"]], + "decomposer": null, + "decomposer's": null, + "composer's": null, + "composers": null, + "composite": [["Y", "S", "D", "X", "N", "G"]], + "compositely": null, + "composites": null, + "composited": null, + "compositions": [["C"]], + "composition": [["C", "M", "A"]], + "compositing": null, + "compositional": [["Y"]], + "compositionally": null, + "decomposition": null, + "decomposition's": null, + "composition's": null, + "recomposition's": null, + "recomposition": null, + "decompositions": null, + "compositor": [["M", "S"]], + "compositor's": null, + "compositors": null, + "compost": [["D", "M", "G", "S"]], + "composted": null, + "compost's": null, + "composting": null, + "composts": null, + "composure": [["E", "S", "M"]], + "discomposure": null, + "discomposures": null, + "discomposure's": null, + "composures": null, + "composure's": null, + "compote": [["M", "S"]], + "compote's": null, + "compotes": null, + "compounded": [["U"]], + "uncompounded": null, + "compounder": [["M"]], + "compounder's": null, + "compound": [["R", "D", "M", "B", "G", "S"]], + "compound's": null, + "compoundable": null, + "compounding": null, + "compounds": null, + "comprehend": [["D", "G", "S"]], + "comprehended": null, + "comprehending": [["U"]], + "comprehends": null, + "uncomprehending": [["Y"]], + "comprehensibility": [["S", "I", "M"]], + "comprehensibilities": null, + "incomprehensibilities": null, + "incomprehensibility": null, + "incomprehensibility's": null, + "comprehensibility's": null, + "comprehensibleness": [["I", "M"]], + "incomprehensibleness": null, + "incomprehensibleness's": null, + "comprehensibleness's": null, + "comprehensible": [["P", "I"]], + "incomprehensible": null, + "comprehensibly": [["I"]], + "incomprehensibly": null, + "comprehension": [["I", "M", "S"]], + "incomprehension": null, + "incomprehension's": null, + "incomprehensions": null, + "comprehension's": null, + "comprehensions": null, + "comprehensiveness": [["S", "M"]], + "comprehensivenesses": null, + "comprehensiveness's": null, + "comprehensive": [["Y", "P", "S"]], + "comprehensively": null, + "comprehensives": null, + "compressed": [["Y"]], + "compressedly": null, + "compressibility": [["I", "M"]], + "incompressibility": null, + "incompressibility's": null, + "compressibility's": null, + "compressible": [["I"]], + "incompressible": null, + "compressional": null, + "compression": [["C", "S", "M"]], + "decompression": null, + "decompressions": null, + "decompression's": null, + "compressions": null, + "compression's": null, + "compressive": [["Y"]], + "compressively": null, + "compressor": [["M", "S"]], + "compressor's": null, + "compressors": null, + "compress": [["S", "D", "U", "G", "C"]], + "compresses": null, + "uncompresses": null, + "decompresses": null, + "uncompressed": null, + "decompressed": null, + "uncompress": null, + "uncompressing": null, + "compressing": null, + "decompressing": null, + "decompress": [["R"]], + "comprise": [["G", "S", "D"]], + "comprising": null, + "comprises": null, + "comprised": null, + "compromiser": [["M"]], + "compromiser's": null, + "compromise": [["S", "R", "D", "G", "M", "Z"]], + "compromises": null, + "compromised": null, + "compromising": [["U", "Y"]], + "compromise's": null, + "compromisers": null, + "uncompromising": null, + "uncompromisingly": null, + "compromisingly": null, + "Compton": [["M"]], + "Compton's": null, + "comptroller": [["S", "M"]], + "comptrollers": null, + "comptroller's": null, + "compulsion": [["S", "M"]], + "compulsions": null, + "compulsion's": null, + "compulsiveness": [["M", "S"]], + "compulsiveness's": null, + "compulsivenesses": null, + "compulsive": [["P", "Y", "S"]], + "compulsively": null, + "compulsives": null, + "compulsivity": null, + "compulsorily": null, + "compulsory": [["S"]], + "compulsories": null, + "compunction": [["M", "S"]], + "compunction's": null, + "compunctions": null, + "Compuserve": [["M"]], + "Compuserve's": null, + "CompuServe": [["M"]], + "CompuServe's": null, + "computability": [["M"]], + "computability's": null, + "computable": [["U", "I"]], + "uncomputable": null, + "incomputable": null, + "computably": null, + "computational": [["Y"]], + "computationally": null, + "computation": [["S", "M"]], + "computations": null, + "computation's": null, + "computed": [["A"]], + "recomputed": null, + "computerese": null, + "computerization": [["M", "S"]], + "computerization's": null, + "computerizations": null, + "computerize": [["S", "D", "G"]], + "computerizes": null, + "computerized": null, + "computerizing": null, + "computer": [["M"]], + "computer's": null, + "compute": [["R", "S", "D", "Z", "B", "G"]], + "computes": [["A"]], + "computers": null, + "computing": [["A"]], + "recomputes": null, + "recomputing": null, + "comradely": [["P"]], + "comradeliness": null, + "comradeship": [["M", "S"]], + "comradeship's": null, + "comradeships": null, + "comrade": [["Y", "M", "S"]], + "comrade's": null, + "comrades": null, + "Comte": [["M"]], + "Comte's": null, + "Conakry": [["M"]], + "Conakry's": null, + "Conan": [["M"]], + "Conan's": null, + "Conant": [["M"]], + "Conant's": null, + "concatenations": null, + "concatenates": null, + "concatenated": null, + "concatenating": null, + "concaveness": [["M", "S"]], + "concaveness's": null, + "concavenesses": null, + "concavely": null, + "conceal": [["B", "S", "Z", "G", "R", "D", "L"]], + "concealable": null, + "conceals": null, + "concealers": null, + "concealing": [["Y"]], + "concealer": [["M"]], + "concealed": [["U"]], + "concealment": [["M", "S"]], + "unconcealed": null, + "concealer's": null, + "concealingly": null, + "concealment's": null, + "concealments": null, + "concededly": null, + "conceitedness": [["S", "M"]], + "conceitednesses": null, + "conceitedness's": null, + "conceited": [["Y", "P"]], + "conceitedly": null, + "conceit": [["S", "G", "D", "M"]], + "conceits": null, + "conceiting": null, + "conceit's": null, + "conceivable": [["I", "U"]], + "inconceivable": [["P"]], + "unconceivable": null, + "conceivably": [["I"]], + "inconceivably": null, + "conceive": [["B", "G", "R", "S", "D"]], + "conceiving": null, + "conceiver": [["M"]], + "conceives": null, + "conceived": null, + "conceiver's": null, + "concentrate": [["V", "N", "G", "S", "D", "X"]], + "concentrative": null, + "concentration": [["M"]], + "concentrating": null, + "concentrates": null, + "concentrated": null, + "concentrations": null, + "concentration's": null, + "concentrator": [["M", "S"]], + "concentrator's": null, + "concentrators": null, + "concentrically": null, + "Concepci�n": [["M"]], + "Concepci�n's": null, + "conceptional": null, + "conception": [["M", "S"]], + "conception's": null, + "conceptions": null, + "concept": [["S", "V", "M"]], + "concepts": null, + "conceptive": null, + "concept's": null, + "conceptuality": [["M"]], + "conceptuality's": null, + "conceptualization": [["A"]], + "reconceptualization": null, + "conceptualizations": null, + "conceptualization's": null, + "conceptualize": [["D", "R", "S", "G"]], + "conceptualized": null, + "conceptualizer": null, + "conceptualizes": null, + "conceptualizing": [["A"]], + "reconceptualizing": null, + "conceptual": [["Y"]], + "conceptually": null, + "concerned": [["Y", "U"]], + "concernedly": null, + "unconcernedly": null, + "unconcerned": [["P"]], + "concern": [["U", "S", "G", "D"]], + "unconcern": [["M"]], + "unconcerns": null, + "unconcerning": null, + "concerns": null, + "concerning": null, + "concerted": [["P", "Y"]], + "concertedness": null, + "concertedly": null, + "disconcert": null, + "disconcerted": null, + "disconcerts": null, + "disconcerting": [["Y"]], + "concerting": null, + "concertina": [["M", "D", "G", "S"]], + "concertina's": null, + "concertinaed": null, + "concertinaing": null, + "concertinas": null, + "concertize": [["G", "D", "S"]], + "concertizing": null, + "concertized": null, + "concertizes": null, + "concertmaster": [["M", "S"]], + "concertmaster's": null, + "concertmasters": null, + "concerto": [["S", "M"]], + "concertos": null, + "concerto's": null, + "concert's": null, + "concessionaire": [["S", "M"]], + "concessionaires": null, + "concessionaire's": null, + "concessional": null, + "concessionary": null, + "concessioner": null, + "Concetta": [["M"]], + "Concetta's": null, + "Concettina": [["M"]], + "Concettina's": null, + "Conchita": [["M"]], + "Conchita's": null, + "conch": [["M", "D", "G"]], + "conch's": null, + "conched": null, + "conching": null, + "conchs": null, + "concierge": [["S", "M"]], + "concierges": null, + "concierge's": null, + "conciliar": null, + "conciliating": null, + "conciliation": [["A", "S", "M"]], + "conciliative": null, + "conciliations": null, + "reconciliation": null, + "reconciliations": null, + "reconciliation's": null, + "conciliation's": null, + "conciliator": [["M", "S"]], + "conciliator's": null, + "conciliators": null, + "conciliatory": [["A"]], + "reconciliatory": null, + "conciseness": [["S", "M"]], + "concisenesses": null, + "conciseness's": null, + "concise": [["T", "Y", "R", "N", "P", "X"]], + "concisest": null, + "concisely": null, + "conciser": null, + "concision": [["M"]], + "concisions": null, + "concision's": null, + "conclave": [["S"]], + "conclaves": null, + "concluder": [["M"]], + "concluder's": null, + "conclude": [["R", "S", "D", "G"]], + "concludes": null, + "concluded": null, + "concluding": null, + "conclusion": [["S", "M"]], + "conclusions": null, + "conclusion's": null, + "conclusive": [["I", "P", "Y"]], + "inconclusive": null, + "inconclusiveness": null, + "inconclusively": null, + "conclusiveness": [["I", "S", "M"]], + "conclusively": null, + "inconclusivenesses": null, + "inconclusiveness's": null, + "conclusivenesses": null, + "conclusiveness's": null, + "concocter": [["M"]], + "concocter's": null, + "concoction": [["S", "M"]], + "concoctions": null, + "concoction's": null, + "concoct": [["R", "D", "V", "G", "S"]], + "concocted": null, + "concoctive": null, + "concocting": null, + "concocts": null, + "concomitant": [["Y", "S"]], + "concomitantly": null, + "concomitants": null, + "concordance": [["M", "S"]], + "concordance's": null, + "concordances": null, + "concordant": [["Y"]], + "concordantly": null, + "concordat": [["S", "M"]], + "concordats": null, + "concordat's": null, + "Concorde": [["M"]], + "Concorde's": null, + "Concordia": [["M"]], + "Concordia's": null, + "Concord": [["M", "S"]], + "Concord's": null, + "Concords": null, + "concourse": null, + "concreteness": [["M", "S"]], + "concreteness's": null, + "concretenesses": null, + "concrete": [["N", "G", "X", "R", "S", "D", "P", "Y", "M"]], + "concretion": [["M"]], + "concreting": null, + "concretions": null, + "concreter": null, + "concretes": null, + "concreted": null, + "concretely": null, + "concrete's": null, + "concretion's": null, + "concubinage": [["S", "M"]], + "concubinages": null, + "concubinage's": null, + "concubine": [["S", "M"]], + "concubines": null, + "concubine's": null, + "concupiscence": [["S", "M"]], + "concupiscences": null, + "concupiscence's": null, + "concupiscent": null, + "concurrence": [["M", "S"]], + "concurrence's": null, + "concurrences": null, + "concur": [["S"]], + "concurs": null, + "concussion": [["M", "S"]], + "concussion's": null, + "concussions": null, + "concuss": [["V", "D"]], + "concussive": null, + "concussed": null, + "condemnate": [["X", "N"]], + "condemnations": null, + "condemnation": [["M"]], + "condemnation's": null, + "condemnatory": null, + "condemner": [["M"]], + "condemner's": null, + "condemn": [["Z", "S", "G", "R", "D", "B"]], + "condemners": null, + "condemns": null, + "condemning": null, + "condemned": null, + "condemnable": null, + "condensate": [["N", "M", "X", "S"]], + "condensation": [["M"]], + "condensate's": null, + "condensations": null, + "condensates": null, + "condensation's": null, + "condenser": [["M"]], + "condenser's": null, + "condense": [["Z", "G", "S", "D"]], + "condensers": null, + "condensing": null, + "condenses": null, + "condensed": null, + "condensible": null, + "condescend": null, + "condescending": [["Y"]], + "condescendingly": null, + "condescension": [["M", "S"]], + "condescension's": null, + "condescensions": null, + "condign": null, + "condiment": [["S", "M"]], + "condiments": null, + "condiment's": null, + "condition": [["A", "G", "S", "J", "D"]], + "recondition": null, + "reconditioning": null, + "reconditions": null, + "reconditionings": null, + "reconditioned": null, + "conditioning": [["M"]], + "conditions": null, + "conditionings": null, + "conditioned": [["U"]], + "conditionals": null, + "conditional": [["U", "Y"]], + "unconditional": null, + "unconditionally": null, + "conditionally": null, + "unconditioned": null, + "conditioner": [["M", "S"]], + "conditioner's": null, + "conditioners": null, + "conditioning's": null, + "condition's": null, + "condole": null, + "condolence": [["M", "S"]], + "condolence's": null, + "condolences": null, + "condominium": [["M", "S"]], + "condominium's": null, + "condominiums": null, + "condom": [["S", "M"]], + "condoms": null, + "condom's": null, + "condone": [["G", "R", "S", "D"]], + "condoning": null, + "condoner": [["M"]], + "condones": null, + "condoned": null, + "condoner's": null, + "Condorcet": [["M"]], + "Condorcet's": null, + "condor": [["M", "S"]], + "condor's": null, + "condors": null, + "condo": [["S", "M"]], + "condos": null, + "condo's": null, + "conduce": [["V", "G", "S", "D"]], + "conducive": [["P"]], + "conducing": null, + "conduces": null, + "conduced": null, + "conduciveness": [["M"]], + "conduciveness's": null, + "conductance": [["S", "M"]], + "conductances": null, + "conductance's": null, + "conductibility": [["S", "M"]], + "conductibilities": null, + "conductibility's": null, + "conductible": null, + "conduction": [["M", "S"]], + "conduction's": null, + "conductions": null, + "conductive": [["Y"]], + "conductively": null, + "conductivity": [["M", "S"]], + "conductivity's": null, + "conductivities": null, + "conductor": [["M", "S"]], + "conductor's": null, + "conductors": null, + "conductress": [["M", "S"]], + "conductress's": null, + "conductresses": null, + "conduct": [["V"]], + "conduit": [["M", "S"]], + "conduit's": null, + "conduits": null, + "coneflower": [["M"]], + "coneflower's": null, + "Conestoga": null, + "coney's": null, + "confabbed": null, + "confabbing": null, + "confab": [["M", "S"]], + "confab's": null, + "confabs": null, + "confabulate": [["X", "S", "D", "G", "N"]], + "confabulations": null, + "confabulates": null, + "confabulated": null, + "confabulating": null, + "confabulation": [["M"]], + "confabulation's": null, + "confectioner": [["M"]], + "confectioner's": null, + "confectionery": [["S", "M"]], + "confectioneries": null, + "confectionery's": null, + "confectionist": null, + "confection": [["R", "D", "M", "G", "Z", "S"]], + "confectioned": null, + "confection's": null, + "confectioning": null, + "confectioners": null, + "confections": null, + "confect": [["S"]], + "confects": null, + "Confederacy": [["M"]], + "Confederacy's": null, + "confederacy": [["M", "S"]], + "confederacy's": null, + "confederacies": null, + "confederate": [["M"]], + "confederate's": null, + "Confederate": [["S"]], + "Confederates": null, + "conferee": [["M", "S"]], + "conferee's": null, + "conferees": null, + "conference": [["D", "S", "G", "M"]], + "conferenced": null, + "conferences": null, + "conferencing": null, + "conference's": null, + "conferrable": null, + "conferral": [["S", "M"]], + "conferrals": null, + "conferral's": null, + "conferred": null, + "conferrer": [["S", "M"]], + "conferrers": null, + "conferrer's": null, + "conferring": null, + "confer": [["S", "B"]], + "confers": null, + "conferable": null, + "confessed": [["Y"]], + "confessedly": null, + "confessional": [["S", "Y"]], + "confessionals": null, + "confessionally": null, + "confession": [["M", "S"]], + "confession's": null, + "confessions": null, + "confessor": [["S", "M"]], + "confessors": null, + "confessor's": null, + "confetti": [["M"]], + "confetti's": null, + "confidante": [["S", "M"]], + "confidantes": null, + "confidante's": null, + "confidant": [["S", "M"]], + "confidants": null, + "confidant's": null, + "confidence": [["S", "M"]], + "confidences": null, + "confidence's": null, + "confidentiality": [["M", "S"]], + "confidentiality's": null, + "confidentialities": null, + "confidentialness": [["M"]], + "confidentialness's": null, + "confidential": [["P", "Y"]], + "confidentially": null, + "confident": [["Y"]], + "confidently": null, + "confider": [["M"]], + "confider's": null, + "confide": [["Z", "G", "R", "S", "D"]], + "confiders": null, + "confiding": [["P", "Y"]], + "confides": null, + "confided": null, + "confidingness": null, + "confidingly": null, + "configuration": [["A", "S", "M"]], + "reconfiguration": null, + "reconfigurations": null, + "reconfiguration's": null, + "configurations": null, + "configuration's": null, + "configure": [["A", "G", "S", "D", "B"]], + "reconfigure": [["R"]], + "reconfiguring": null, + "reconfigures": null, + "reconfigured": null, + "reconfigurable": null, + "configuring": null, + "configures": null, + "configured": null, + "configurable": null, + "confined": [["U"]], + "unconfined": null, + "confine": [["L"]], + "confinement": [["M", "S"]], + "confinement's": null, + "confinements": null, + "confiner": [["M"]], + "confiner's": null, + "confirm": [["A", "G", "D", "S"]], + "reconfirm": null, + "reconfirming": null, + "reconfirmed": null, + "reconfirms": null, + "confirming": null, + "confirmed": [["Y", "P"]], + "confirms": null, + "confirmation": [["A", "S", "M"]], + "reconfirmation": null, + "reconfirmations": null, + "reconfirmation's": null, + "confirmations": null, + "confirmation's": null, + "confirmatory": null, + "confirmedness": [["M"]], + "confirmedness's": null, + "confirmedly": null, + "confiscate": [["D", "S", "G", "N", "X"]], + "confiscated": null, + "confiscates": null, + "confiscating": null, + "confiscation": [["M"]], + "confiscations": null, + "confiscation's": null, + "confiscator": [["M", "S"]], + "confiscator's": null, + "confiscators": null, + "confiscatory": null, + "conflagration": [["M", "S"]], + "conflagration's": null, + "conflagrations": null, + "conflate": [["N", "G", "S", "D", "X"]], + "conflation": [["M"]], + "conflating": null, + "conflates": null, + "conflated": null, + "conflations": null, + "conflation's": null, + "conflicting": [["Y"]], + "conflictingly": null, + "conflict": [["S", "V", "G", "D", "M"]], + "conflicts": null, + "conflictive": null, + "conflicted": null, + "conflict's": null, + "confluence": [["M", "S"]], + "confluence's": null, + "confluences": null, + "conformable": [["U"]], + "unconformable": null, + "conformal": null, + "conformance": [["S", "M"]], + "conformances": null, + "conformance's": null, + "conformational": [["Y"]], + "conformationally": null, + "conform": [["B"]], + "conformer": [["M"]], + "conformer's": null, + "conformism": [["S", "M"]], + "conformisms": null, + "conformism's": null, + "conformist": [["S", "M"]], + "conformists": null, + "conformist's": null, + "conformities": null, + "conformity": [["M", "U", "I"]], + "conformity's": null, + "unconformity's": null, + "inconformity's": null, + "unconformity": null, + "inconformity": null, + "confounded": [["Y"]], + "confoundedly": null, + "confound": [["R"]], + "confounder": null, + "confr�re": [["M", "S"]], + "confr�re's": null, + "confr�res": null, + "confrontational": null, + "confrontation": [["S", "M"]], + "confrontations": null, + "confrontation's": null, + "confronter": [["M"]], + "confronter's": null, + "confront": [["Z"]], + "confronters": null, + "Confucianism": [["S", "M"]], + "Confucianisms": null, + "Confucianism's": null, + "Confucian": [["S"]], + "Confucians": null, + "Confucius": [["M"]], + "Confucius's": null, + "confusedness": [["M"]], + "confusedness's": null, + "confused": [["P", "Y"]], + "confusedly": null, + "confuse": [["R", "B", "Z"]], + "confuser": null, + "confusable": null, + "confusers": null, + "confusing": [["Y"]], + "confusingly": null, + "confutation": [["M", "S"]], + "confutation's": null, + "confutations": null, + "confute": [["G", "R", "S", "D"]], + "confuting": null, + "confuter": [["M"]], + "confutes": null, + "confuted": null, + "confuter's": null, + "conga": [["M", "D", "G"]], + "conga's": null, + "congaed": null, + "congaing": null, + "congeal": [["G", "S", "D", "L"]], + "congealing": null, + "congeals": null, + "congealed": null, + "congealment": [["M", "S"]], + "congealment's": null, + "congealments": null, + "congeniality": [["U", "M"]], + "uncongeniality": null, + "uncongeniality's": null, + "congeniality's": null, + "congenial": [["U"]], + "uncongenial": null, + "congeries": [["M"]], + "congeries's": null, + "conger": [["S", "M"]], + "congers": null, + "conger's": null, + "congestion": [["M", "S"]], + "congestion's": null, + "congestions": null, + "congest": [["V", "G", "S", "D"]], + "congestive": null, + "congesting": null, + "congests": null, + "congested": null, + "conglomerate": [["X", "D", "S", "N", "G", "V", "M"]], + "conglomerations": null, + "conglomerated": null, + "conglomerates": null, + "conglomeration": [["M"]], + "conglomerating": null, + "conglomerative": null, + "conglomerate's": null, + "conglomeration's": null, + "Cong": [["M"]], + "Cong's": null, + "Congolese": null, + "Congo": [["M"]], + "Congo's": null, + "congrats": null, + "congratulate": [["N", "G", "X", "S", "D"]], + "congratulation": [["M"]], + "congratulating": null, + "congratulations": null, + "congratulates": null, + "congratulated": null, + "congratulation's": null, + "congratulatory": null, + "congregate": [["D", "S", "X", "G", "N"]], + "congregated": null, + "congregates": null, + "congregations": null, + "congregating": null, + "congregation": [["M"]], + "congregational": null, + "Congregational": null, + "congregationalism": [["M", "S"]], + "congregationalism's": null, + "congregationalisms": null, + "congregationalist": [["M", "S"]], + "congregationalist's": null, + "congregationalists": null, + "Congregationalist": [["S"]], + "Congregationalists": null, + "congregation's": null, + "congressional": [["Y"]], + "congressionally": null, + "congressman": [["M"]], + "congressman's": null, + "congressmen": null, + "Congress": [["M", "S"]], + "Congress's": null, + "Congresses": null, + "congress": [["M", "S", "D", "G"]], + "congress's": null, + "congresses": null, + "congressed": null, + "congressing": null, + "congresspeople": null, + "congressperson": [["S"]], + "congresspersons": null, + "congresswoman": [["M"]], + "congresswoman's": null, + "congresswomen": null, + "Congreve": [["M"]], + "Congreve's": null, + "congruence": [["I", "M"]], + "incongruence": null, + "incongruence's": null, + "congruence's": null, + "congruences": null, + "congruency": [["M"]], + "congruency's": null, + "congruential": null, + "congruent": [["Y", "I"]], + "congruently": null, + "incongruently": null, + "incongruent": null, + "congruity": [["M", "S", "I"]], + "congruity's": null, + "incongruity's": null, + "congruities": null, + "incongruities": null, + "incongruity": null, + "congruousness": [["I", "M"]], + "incongruousness": [["S"]], + "incongruousness's": null, + "congruousness's": null, + "congruous": [["Y", "I", "P"]], + "congruously": null, + "incongruously": null, + "incongruous": null, + "conicalness": [["M"]], + "conicalness's": null, + "conical": [["P", "S", "Y"]], + "conicals": null, + "conically": null, + "conic": [["S"]], + "conics": [["M"]], + "conics's": null, + "conifer": [["M", "S"]], + "conifer's": null, + "conifers": null, + "coniferous": null, + "conjectural": [["Y"]], + "conjecturally": null, + "conjecture": [["G", "M", "D", "R", "S"]], + "conjecturing": null, + "conjecture's": null, + "conjectured": null, + "conjecturer": [["M"]], + "conjectures": null, + "conjecturer's": null, + "conjoint": null, + "conjugacy": null, + "conjugal": [["Y"]], + "conjugally": null, + "conjugate": [["X", "V", "N", "G", "Y", "S", "D", "P"]], + "conjugations": null, + "conjugative": null, + "conjugation": [["M"]], + "conjugating": null, + "conjugately": null, + "conjugates": null, + "conjugated": null, + "conjugateness": null, + "conjugation's": null, + "conjunct": [["D", "S", "V"]], + "conjuncted": null, + "conjuncts": null, + "conjunctive": [["Y", "S"]], + "conjunctiva": [["M", "S"]], + "conjunctiva's": null, + "conjunctivas": null, + "conjunctively": null, + "conjunctives": null, + "conjunctivitis": [["S", "M"]], + "conjunctivitises": null, + "conjunctivitis's": null, + "conjuration": [["M", "S"]], + "conjuration's": null, + "conjurations": null, + "conjurer": [["M"]], + "conjurer's": null, + "conjure": [["R", "S", "D", "Z", "G"]], + "conjures": null, + "conjured": null, + "conjurers": null, + "conjuring": [["M"]], + "conjuring's": null, + "conker": [["M"]], + "conker's": null, + "conk": [["Z", "D", "R"]], + "conkers": null, + "conked": null, + "Conley": [["M"]], + "Conley's": null, + "Con": [["M"]], + "Con's": null, + "conman": null, + "connect": [["A", "D", "G", "E", "S"]], + "reconnect": [["R"]], + "reconnected": null, + "reconnecting": null, + "reconnects": null, + "connected": [["U"]], + "disconnected": [["P"]], + "connecting": null, + "disconnecting": null, + "disconnect": [["R"]], + "disconnects": null, + "connects": null, + "connectedly": [["E"]], + "disconnectedly": null, + "connectedness": [["M", "E"]], + "connectedness's": null, + "disconnectedness's": null, + "disconnectedness": [["S"]], + "unconnected": null, + "connectible": null, + "Connecticut": [["M"]], + "Connecticut's": null, + "connection": [["A", "M", "E"]], + "reconnection": null, + "reconnection's": null, + "connection's": null, + "disconnection's": null, + "disconnection": null, + "connectionless": null, + "connections": [["E"]], + "disconnections": null, + "connective": [["S", "Y", "M"]], + "connectives": null, + "connectively": null, + "connective's": null, + "connectivity": [["M", "S"]], + "connectivity's": null, + "connectivities": null, + "connector": [["M", "S"]], + "connector's": null, + "connectors": null, + "Connelly": [["M"]], + "Connelly's": null, + "Conner": [["M"]], + "Conner's": null, + "Connery": [["M"]], + "Connery's": null, + "connexion": [["M", "S"]], + "connexion's": null, + "connexions": null, + "Conney": [["M"]], + "Conney's": null, + "conn": [["G", "V", "D", "R"]], + "conning": null, + "connive": [["Z", "G", "R", "S", "D"]], + "conned": null, + "conner": null, + "Connie": [["M"]], + "Connie's": null, + "Conni": [["M"]], + "Conni's": null, + "conniption": [["M", "S"]], + "conniption's": null, + "conniptions": null, + "connivance": [["M", "S"]], + "connivance's": null, + "connivances": null, + "conniver": [["M"]], + "conniver's": null, + "connivers": null, + "conniving": null, + "connives": null, + "connived": null, + "connoisseur": [["M", "S"]], + "connoisseur's": null, + "connoisseurs": null, + "Connor": [["S", "M"]], + "Connors": null, + "Connor's": null, + "connotative": [["Y"]], + "connotatively": null, + "Conn": [["R", "M"]], + "Conn's": null, + "connubial": [["Y"]], + "connubially": null, + "Conny": [["M"]], + "Conny's": null, + "conquerable": [["U"]], + "unconquerable": null, + "conquered": [["A", "U"]], + "reconquered": null, + "unconquered": null, + "conqueror": [["M", "S"]], + "conqueror's": null, + "conquerors": null, + "conquer": [["R", "D", "S", "B", "Z", "G"]], + "conquerer": null, + "conquers": [["A"]], + "conquerers": null, + "conquering": null, + "reconquers": null, + "conquest": [["A", "S", "M"]], + "reconquest": null, + "reconquests": null, + "reconquest's": null, + "conquests": null, + "conquest's": null, + "conquistador": [["M", "S"]], + "conquistador's": null, + "conquistadors": null, + "Conrade": [["M"]], + "Conrade's": null, + "Conrad": [["M"]], + "Conrad's": null, + "Conrado": [["M"]], + "Conrado's": null, + "Conrail": [["M"]], + "Conrail's": null, + "Conroy": [["M"]], + "Conroy's": null, + "Consalve": [["M"]], + "Consalve's": null, + "consanguineous": [["Y"]], + "consanguineously": null, + "consanguinity": [["S", "M"]], + "consanguinities": null, + "consanguinity's": null, + "conscienceless": null, + "conscientiousness": [["M", "S"]], + "conscientiousness's": null, + "conscientiousnesses": null, + "conscientious": [["Y", "P"]], + "conscientiously": null, + "conscionable": [["U"]], + "unconscionable": [["P"]], + "consciousness": [["M", "U", "S"]], + "consciousness's": null, + "unconsciousness's": null, + "unconsciousness": null, + "unconsciousnesses": null, + "consciousnesses": null, + "conscious": [["U", "Y", "S", "P"]], + "unconscious": null, + "unconsciously": null, + "unconsciouses": null, + "consciously": null, + "consciouses": null, + "conscription": [["S", "M"]], + "conscriptions": null, + "conscription's": null, + "consecrated": [["A", "U"]], + "reconsecrated": null, + "unconsecrated": null, + "consecrates": [["A"]], + "reconsecrates": null, + "consecrate": [["X", "D", "S", "N", "G", "V"]], + "consecrations": null, + "consecration": [["A", "M", "S"]], + "consecrating": [["A"]], + "consecrative": null, + "reconsecrating": null, + "reconsecration": null, + "reconsecration's": null, + "reconsecrations": null, + "consecration's": null, + "consecutiveness": [["M"]], + "consecutiveness's": null, + "consecutive": [["Y", "P"]], + "consecutively": null, + "consensus": [["S", "M"]], + "consensuses": null, + "consensus's": null, + "consenter": [["M"]], + "consenter's": null, + "consenting": [["Y"]], + "consentingly": null, + "consent": [["S", "Z", "G", "R", "D"]], + "consents": null, + "consenters": null, + "consented": null, + "consequence": null, + "consequentiality": [["S"]], + "consequentialities": null, + "consequential": [["I", "Y"]], + "inconsequential": null, + "inconsequentially": null, + "consequentially": null, + "consequentialness": [["M"]], + "consequentialness's": null, + "consequently": [["I"]], + "inconsequently": null, + "consequent": [["P", "S", "Y"]], + "consequentness": null, + "consequents": null, + "conservancy": [["S", "M"]], + "conservancies": null, + "conservancy's": null, + "conservationism": null, + "conservationist": [["S", "M"]], + "conservationists": null, + "conservationist's": null, + "conservation": [["S", "M"]], + "conservations": null, + "conservation's": null, + "conservatism": [["S", "M"]], + "conservatisms": null, + "conservatism's": null, + "conservativeness": [["M"]], + "conservativeness's": null, + "Conservative": [["S"]], + "Conservatives": null, + "conservative": [["S", "Y", "P"]], + "conservatives": null, + "conservatively": null, + "conservator": [["M", "S"]], + "conservator's": null, + "conservators": null, + "conservatory": [["M", "S"]], + "conservatory's": null, + "conservatories": null, + "con": [["S", "G", "M"]], + "cons": null, + "coning": null, + "con's": null, + "considerable": [["I"]], + "inconsiderable": [["P"]], + "considerables": null, + "considerably": [["I"]], + "inconsiderably": null, + "considerateness": [["M", "S", "I"]], + "considerateness's": null, + "inconsiderateness's": null, + "consideratenesses": null, + "inconsideratenesses": null, + "inconsiderateness": null, + "considerate": [["X", "I", "P", "N", "Y"]], + "considerations": null, + "inconsiderations": null, + "inconsiderate": null, + "inconsideration": null, + "inconsiderately": null, + "consideration": [["A", "S", "M", "I"]], + "considerately": null, + "reconsideration": null, + "reconsiderations": null, + "reconsideration's": null, + "consideration's": null, + "inconsideration's": null, + "considered": [["U"]], + "unconsidered": null, + "considerer": [["M"]], + "considerer's": null, + "consider": [["G", "A", "S", "D"]], + "considering": [["S"]], + "reconsidering": null, + "reconsider": null, + "reconsiders": null, + "reconsidered": null, + "considers": null, + "considerings": null, + "consign": [["A", "S", "G", "D"]], + "reconsign": null, + "reconsigns": null, + "reconsigning": null, + "reconsigned": null, + "consigns": null, + "consigning": null, + "consigned": null, + "consignee": [["S", "M"]], + "consignees": null, + "consignee's": null, + "consignment": [["S", "M"]], + "consignments": null, + "consignment's": null, + "consist": [["D", "S", "G"]], + "consisted": null, + "consists": null, + "consisting": null, + "consistence": [["S"]], + "consistences": null, + "consistency": [["I", "M", "S"]], + "inconsistency": null, + "inconsistency's": null, + "inconsistencies": null, + "consistency's": null, + "consistencies": null, + "consistent": [["I", "Y"]], + "inconsistent": null, + "inconsistently": null, + "consistently": null, + "consistory": [["M", "S"]], + "consistory's": null, + "consistories": null, + "consolable": [["I"]], + "inconsolable": [["P"]], + "Consolata": [["M"]], + "Consolata's": null, + "consolation": [["M", "S"]], + "consolation's": [["E"]], + "consolations": null, + "disconsolation's": null, + "consolatory": null, + "consoled": [["U"]], + "unconsoled": null, + "consoler": [["M"]], + "consoler's": null, + "console": [["Z", "B", "G"]], + "consolers": null, + "consoling": [["Y"]], + "consolidated": [["A", "U"]], + "reconsolidated": null, + "unconsolidated": null, + "consolidate": [["N", "G", "D", "S", "X"]], + "consolidation": [["M"]], + "consolidating": null, + "consolidates": [["A"]], + "consolidations": null, + "reconsolidates": null, + "consolidation's": null, + "consolidator": [["S", "M"]], + "consolidators": null, + "consolidator's": null, + "consolingly": null, + "consomm�": [["S"]], + "consomm�s": null, + "consonance": [["I", "M"]], + "inconsonance": null, + "inconsonance's": null, + "consonance's": null, + "consonances": null, + "consonantal": null, + "consonant": [["M", "Y", "S"]], + "consonant's": null, + "consonantly": null, + "consonants": null, + "consortia": null, + "consortium": [["M"]], + "consortium's": null, + "conspectus": [["M", "S"]], + "conspectus's": null, + "conspectuses": null, + "conspicuousness": [["I", "M", "S"]], + "inconspicuousness": null, + "inconspicuousness's": null, + "inconspicuousnesses": null, + "conspicuousness's": null, + "conspicuousnesses": null, + "conspicuous": [["Y", "I", "P"]], + "conspicuously": null, + "inconspicuously": null, + "inconspicuous": null, + "conspiracy": [["M", "S"]], + "conspiracy's": null, + "conspiracies": null, + "conspiratorial": [["Y"]], + "conspiratorially": null, + "conspirator": [["S", "M"]], + "conspirators": null, + "conspirator's": null, + "constable": null, + "Constable": [["M"]], + "Constable's": null, + "constabulary": [["M", "S"]], + "constabulary's": null, + "constabularies": null, + "constance": null, + "Constance": [["M"]], + "Constance's": null, + "Constancia": [["M"]], + "Constancia's": null, + "constancy": [["I", "M", "S"]], + "inconstancy": null, + "inconstancy's": null, + "inconstancies": null, + "constancy's": null, + "constancies": null, + "Constancy": [["M"]], + "Constancy's": null, + "Constanta": [["M"]], + "Constanta's": null, + "Constantia": [["M"]], + "Constantia's": null, + "Constantina": [["M"]], + "Constantina's": null, + "Constantine": [["M"]], + "Constantine's": null, + "Constantin": [["M"]], + "Constantin's": null, + "Constantino": [["M"]], + "Constantino's": null, + "Constantinople": [["M"]], + "Constantinople's": null, + "constant": [["I", "Y"]], + "inconstant": null, + "inconstantly": null, + "constantly": null, + "constants": null, + "constellation": [["S", "M"]], + "constellations": null, + "constellation's": null, + "consternate": [["X", "N", "G", "S", "D"]], + "consternations": null, + "consternation": [["M"]], + "consternating": null, + "consternates": null, + "consternated": null, + "consternation's": null, + "constipate": [["X", "D", "S", "N", "G"]], + "constipations": null, + "constipated": null, + "constipates": null, + "constipation": [["M"]], + "constipating": null, + "constipation's": null, + "constituency": [["M", "S"]], + "constituency's": null, + "constituencies": null, + "constituent": [["S", "Y", "M"]], + "constituents": null, + "constituently": null, + "constituent's": null, + "constituted": [["A"]], + "reconstituted": null, + "constitute": [["N", "G", "V", "X", "D", "S"]], + "constitution": [["A", "M", "S"]], + "constituting": [["A"]], + "constitutive": [["Y"]], + "constitutions": null, + "constitutes": [["A"]], + "reconstitutes": null, + "reconstituting": null, + "Constitution": null, + "constitutionality's": null, + "constitutionality": [["U", "S"]], + "unconstitutionality": null, + "unconstitutionalities": null, + "constitutionalities": null, + "constitutionally": [["U"]], + "unconstitutionally": null, + "constitutional": [["S", "Y"]], + "constitutionals": null, + "reconstitution": null, + "reconstitution's": null, + "reconstitutions": null, + "constitution's": null, + "constitutively": null, + "constrain": null, + "constrainedly": null, + "constrained": [["U"]], + "unconstrained": null, + "constraint": [["M", "S"]], + "constraint's": null, + "constraints": null, + "constriction": [["M", "S"]], + "constriction's": null, + "constrictions": null, + "constrictor": [["M", "S"]], + "constrictor's": null, + "constrictors": null, + "constrict": [["S", "D", "G", "V"]], + "constricts": null, + "constricted": null, + "constricting": null, + "constrictive": null, + "construable": null, + "construct": [["A", "S", "D", "G", "V"]], + "reconstruct": null, + "reconstructs": null, + "reconstructed": [["U"]], + "reconstructing": null, + "constructs": null, + "constructed": null, + "constructing": null, + "constructive": [["Y", "P"]], + "constructibility": null, + "constructible": [["A"]], + "reconstructible": null, + "constructional": [["Y"]], + "constructionally": null, + "constructionist": [["M", "S"]], + "constructionist's": null, + "constructionists": null, + "construction": [["M", "A", "S"]], + "construction's": null, + "reconstruction's": null, + "reconstruction": null, + "reconstructions": null, + "constructions": [["C"]], + "deconstructions": null, + "constructiveness": [["S", "M"]], + "constructivenesses": null, + "constructiveness's": null, + "constructively": null, + "constructor": [["M", "S"]], + "constructor's": null, + "constructors": null, + "construe": [["G", "S", "D"]], + "construing": null, + "construes": null, + "construed": null, + "Consuela": [["M"]], + "Consuela's": null, + "Consuelo": [["M"]], + "Consuelo's": null, + "consular": [["S"]], + "consulars": null, + "consulate": [["M", "S"]], + "consulate's": null, + "consulates": null, + "consul": [["K", "M", "S"]], + "proconsul": null, + "proconsul's": null, + "proconsuls": null, + "consul's": null, + "consuls": null, + "consulship": [["M", "S"]], + "consulship's": null, + "consulships": null, + "consultancy": [["S"]], + "consultancies": null, + "consultant": [["M", "S"]], + "consultant's": null, + "consultants": null, + "consultation": [["S", "M"]], + "consultations": null, + "consultation's": null, + "consultative": null, + "consulted": [["A"]], + "reconsulted": null, + "consulter": [["M"]], + "consulter's": null, + "consult": [["R", "D", "V", "G", "S"]], + "consultive": null, + "consulting": null, + "consults": null, + "consumable": [["S"]], + "consumables": null, + "consumed": [["Y"]], + "consumedly": null, + "consume": [["J", "Z", "G", "S", "D", "B"]], + "consumings": null, + "consumers": null, + "consuming": [["Y"]], + "consumes": null, + "consumerism": [["M", "S"]], + "consumerism's": null, + "consumerisms": null, + "consumerist": [["S"]], + "consumerists": null, + "consumer": [["M"]], + "consumer's": null, + "consumingly": null, + "consummate": [["D", "S", "G", "V", "Y"]], + "consummated": [["U"]], + "consummates": null, + "consummating": null, + "consummative": null, + "consummately": null, + "unconsummated": null, + "consumption": [["S", "M"]], + "consumptions": null, + "consumption's": null, + "consumptive": [["Y", "S"]], + "consumptively": null, + "consumptives": null, + "cont": null, + "contact": [["B", "G", "D"]], + "contactable": null, + "contacting": null, + "contacted": [["A"]], + "recontacted": null, + "contact's": [["A"]], + "recontact's": null, + "contacts": [["A"]], + "recontacts": null, + "contagion": [["S", "M"]], + "contagions": null, + "contagion's": null, + "contagiousness": [["M", "S"]], + "contagiousness's": null, + "contagiousnesses": null, + "contagious": [["Y", "P"]], + "contagiously": null, + "containerization": [["S", "M"]], + "containerizations": null, + "containerization's": null, + "containerize": [["G", "S", "D"]], + "containerizing": null, + "containerizes": null, + "containerized": null, + "container": [["M"]], + "container's": null, + "containment": [["S", "M"]], + "containments": null, + "containment's": null, + "contain": [["S", "L", "Z", "G", "B", "R", "D"]], + "contains": null, + "containers": null, + "containing": null, + "containable": null, + "contained": null, + "contaminant": [["S", "M"]], + "contaminants": null, + "contaminant's": null, + "contaminated": [["A", "U"]], + "recontaminated": null, + "uncontaminated": null, + "contaminates": [["A"]], + "recontaminates": null, + "contaminate": [["S", "D", "C", "X", "N", "G"]], + "decontaminates": null, + "decontaminated": null, + "decontaminate": null, + "decontaminations": null, + "decontamination": null, + "decontaminating": null, + "contaminations": null, + "contamination": [["C", "M"]], + "contaminating": [["A"]], + "recontaminating": null, + "decontamination's": null, + "contamination's": null, + "contaminative": null, + "contaminator": [["M", "S"]], + "contaminator's": null, + "contaminators": null, + "contd": null, + "cont'd": null, + "contemn": [["S", "G", "D"]], + "contemns": null, + "contemning": null, + "contemned": null, + "contemplate": [["D", "V", "N", "G", "X"]], + "contemplated": null, + "contemplative": [["P", "S", "Y"]], + "contemplation": [["M"]], + "contemplating": null, + "contemplations": null, + "contemplation's": null, + "contemplativeness": [["M"]], + "contemplativeness's": null, + "contemplatives": null, + "contemplatively": null, + "contemporaneity": [["M", "S"]], + "contemporaneity's": null, + "contemporaneities": null, + "contemporaneousness": [["M"]], + "contemporaneousness's": null, + "contemporaneous": [["P", "Y"]], + "contemporaneously": null, + "contemptibleness": [["M"]], + "contemptibleness's": null, + "contemptible": [["P"]], + "contemptibly": null, + "contempt": [["M"]], + "contempt's": null, + "contemptuousness": [["S", "M"]], + "contemptuousnesses": null, + "contemptuousness's": null, + "contemptuous": [["P", "Y"]], + "contemptuously": null, + "contentedly": [["E"]], + "discontentedly": null, + "contentedness": [["S", "M"]], + "contentednesses": null, + "contentedness's": null, + "contented": [["Y", "P"]], + "content": [["E", "M", "D", "L", "S", "G"]], + "discontent": null, + "discontent's": null, + "discontented": null, + "discontentment": null, + "discontents": null, + "discontenting": null, + "content's": null, + "contentment": [["E", "S"]], + "contents": null, + "contenting": null, + "contention": [["M", "S"]], + "contention's": null, + "contentions": null, + "contentiousness": [["S", "M"]], + "contentiousnesses": null, + "contentiousness's": null, + "contentious": [["P", "Y"]], + "contentiously": null, + "contently": null, + "discontentments": null, + "contentments": null, + "contentment's": null, + "conterminous": [["Y"]], + "conterminously": null, + "contestable": [["I"]], + "incontestable": null, + "contestant": [["S", "M"]], + "contestants": null, + "contestant's": null, + "contested": [["U"]], + "uncontested": null, + "contextualize": [["G", "D", "S"]], + "contextualizing": null, + "contextualized": null, + "contextualizes": null, + "contiguity": [["M", "S"]], + "contiguity's": null, + "contiguities": null, + "contiguousness": [["M"]], + "contiguousness's": null, + "contiguous": [["Y", "P"]], + "contiguously": null, + "continence": [["I", "S", "M"]], + "incontinence": null, + "incontinences": null, + "incontinence's": null, + "continences": null, + "continence's": null, + "Continental": [["S"]], + "Continentals": null, + "continental": [["S", "Y"]], + "continentals": null, + "continentally": null, + "continent": [["I", "Y"]], + "incontinent": null, + "incontinently": null, + "continently": null, + "Continent": [["M"]], + "Continent's": null, + "continents": null, + "continent's": null, + "contingency": [["S", "M"]], + "contingencies": null, + "contingency's": null, + "contingent": [["S", "M", "Y"]], + "contingents": null, + "contingent's": null, + "contingently": null, + "continua": null, + "continuable": null, + "continual": [["Y"]], + "continually": null, + "continuance": [["E", "S", "M"]], + "discontinuance": null, + "discontinuances": null, + "discontinuance's": null, + "continuances": null, + "continuance's": null, + "continuant": [["M"]], + "continuant's": null, + "continuation": [["E", "S", "M"]], + "discontinuation": null, + "discontinuations": null, + "discontinuation's": null, + "continuations": null, + "continuation's": null, + "continue": [["E", "S", "D", "G"]], + "discontinue": null, + "discontinues": null, + "discontinued": null, + "discontinuing": null, + "continues": null, + "continued": null, + "continuing": null, + "continuer": [["M"]], + "continuer's": null, + "continuity": [["S", "E", "M"]], + "continuities": null, + "discontinuities": null, + "discontinuity": null, + "discontinuity's": null, + "continuity's": null, + "continuousness": [["M"]], + "continuousness's": null, + "continuous": [["Y", "E"]], + "continuously": null, + "discontinuously": null, + "discontinuous": null, + "continuum": [["M"]], + "continuum's": null, + "contortionist": [["S", "M"]], + "contortionists": null, + "contortionist's": null, + "contortion": [["M", "S"]], + "contortion's": null, + "contortions": null, + "contort": [["V", "G", "D"]], + "contortive": null, + "contorting": null, + "contorted": null, + "contour": null, + "contraband": [["S", "M"]], + "contrabands": null, + "contraband's": null, + "contrabass": [["M"]], + "contrabass's": null, + "contraception": [["S", "M"]], + "contraceptions": null, + "contraception's": null, + "contraceptive": [["S"]], + "contraceptives": null, + "contract": [["D", "G"]], + "contracted": null, + "contracting": null, + "contractible": null, + "contractile": null, + "contractual": [["Y"]], + "contractually": null, + "contradict": [["G", "D", "S"]], + "contradicting": null, + "contradicted": null, + "contradicts": null, + "contradiction": [["M", "S"]], + "contradiction's": null, + "contradictions": null, + "contradictorily": null, + "contradictoriness": [["M"]], + "contradictoriness's": null, + "contradictory": [["P", "S"]], + "contradictories": null, + "contradistinction": [["M", "S"]], + "contradistinction's": null, + "contradistinctions": null, + "contraflow": [["S"]], + "contraflows": null, + "contrail": [["M"]], + "contrail's": null, + "contraindicate": [["S", "D", "V", "N", "G", "X"]], + "contraindicates": null, + "contraindicated": null, + "contraindicative": null, + "contraindication": [["M"]], + "contraindicating": null, + "contraindications": null, + "contraindication's": null, + "contralto": [["S", "M"]], + "contraltos": null, + "contralto's": null, + "contrapositive": [["S"]], + "contrapositives": null, + "contraption": [["M", "S"]], + "contraption's": null, + "contraptions": null, + "contrapuntal": [["Y"]], + "contrapuntally": null, + "contrariety": [["M", "S"]], + "contrariety's": null, + "contrarieties": null, + "contrarily": null, + "contrariness": [["M", "S"]], + "contrariness's": null, + "contrarinesses": null, + "contrariwise": null, + "contrary": [["P", "S"]], + "contraries": null, + "contra": [["S"]], + "contras": null, + "contrasting": [["Y"]], + "contrastingly": null, + "contrastive": [["Y"]], + "contrastively": null, + "contrast": [["S", "R", "D", "V", "G", "Z"]], + "contrasts": null, + "contraster": null, + "contrasted": null, + "contrasters": null, + "contravene": [["G", "S", "R", "D"]], + "contravening": null, + "contravenes": null, + "contravener": [["M"]], + "contravened": null, + "contravener's": null, + "contravention": [["M", "S"]], + "contravention's": null, + "contraventions": null, + "Contreras": [["M"]], + "Contreras's": null, + "contretemps": [["M"]], + "contretemps's": null, + "contribute": [["X", "V", "N", "Z", "R", "D"]], + "contributions": null, + "contributive": [["Y"]], + "contribution": [["M"]], + "contributers": null, + "contributer": null, + "contributed": null, + "contribution's": null, + "contributively": null, + "contributorily": null, + "contributor": [["S", "M"]], + "contributors": null, + "contributor's": null, + "contributory": [["S"]], + "contributories": null, + "contriteness": [["M"]], + "contriteness's": null, + "contrite": [["N", "X", "P"]], + "contrition": [["M"]], + "contritions": null, + "contrition's": null, + "contrivance": [["S", "M"]], + "contrivances": null, + "contrivance's": null, + "contriver": [["M"]], + "contriver's": null, + "contrive": [["Z", "G", "R", "S", "D"]], + "contrivers": null, + "contriving": null, + "contrives": null, + "contrived": null, + "control": [["C", "S"]], + "decontrol": null, + "decontrols": null, + "controls": null, + "controllability": [["M"]], + "controllability's": null, + "controllable": [["I", "U"]], + "incontrollable": null, + "uncontrollable": null, + "controllably": [["U"]], + "uncontrollably": null, + "controlled": [["C", "U"]], + "decontrolled": null, + "uncontrolled": null, + "controller": [["S", "M"]], + "controllers": null, + "controller's": null, + "controlling": [["C"]], + "decontrolling": null, + "control's": null, + "controversialists": null, + "controversial": [["U", "Y"]], + "uncontroversial": null, + "uncontroversially": null, + "controversially": null, + "controversy": [["M", "S"]], + "controversy's": null, + "controversies": null, + "controvert": [["D", "G", "S"]], + "controverted": null, + "controverting": null, + "controverts": null, + "controvertible": [["I"]], + "incontrovertible": null, + "contumacious": [["Y"]], + "contumaciously": null, + "contumacy": [["M", "S"]], + "contumacy's": null, + "contumacies": null, + "contumelious": null, + "contumely": [["M", "S"]], + "contumely's": null, + "contumelies": null, + "contuse": [["N", "G", "X", "S", "D"]], + "contusion": [["M"]], + "contusing": null, + "contusions": null, + "contuses": null, + "contused": null, + "contusion's": null, + "conundrum": [["S", "M"]], + "conundrums": null, + "conundrum's": null, + "conurbation": [["M", "S"]], + "conurbation's": null, + "conurbations": null, + "convalesce": [["G", "D", "S"]], + "convalescing": null, + "convalesced": null, + "convalesces": null, + "convalescence": [["S", "M"]], + "convalescences": null, + "convalescence's": null, + "convalescent": [["S"]], + "convalescents": null, + "convect": [["D", "S", "V", "G"]], + "convected": null, + "convects": null, + "convective": null, + "convecting": null, + "convectional": null, + "convection": [["M", "S"]], + "convection's": null, + "convections": null, + "convector": null, + "convene": [["A", "S", "D", "G"]], + "reconvene": null, + "reconvenes": null, + "reconvened": null, + "reconvening": null, + "convenes": null, + "convened": null, + "convening": null, + "convener": [["M", "S"]], + "convener's": null, + "conveners": null, + "convenience": [["I", "S", "M"]], + "inconvenience": [["D", "G"]], + "inconveniences": null, + "inconvenience's": null, + "conveniences": null, + "convenience's": null, + "convenient": [["I", "Y"]], + "inconvenient": null, + "inconveniently": null, + "conveniently": null, + "conventicle": [["S", "M"]], + "conventicles": null, + "conventicle's": null, + "conventionalism": [["M"]], + "conventionalism's": null, + "conventionalist": [["M"]], + "conventionalist's": null, + "conventionality": [["S", "U", "M"]], + "conventionalities": null, + "unconventionalities": null, + "unconventionality": null, + "unconventionality's": null, + "conventionality's": null, + "conventionalize": [["G", "D", "S"]], + "conventionalizing": null, + "conventionalized": null, + "conventionalizes": null, + "conventional": [["U", "Y"]], + "unconventional": null, + "unconventionally": null, + "conventionally": null, + "convention": [["M", "A"]], + "convention's": null, + "reconvention's": null, + "reconvention": null, + "conventions": null, + "convergence": [["M", "S"]], + "convergence's": null, + "convergences": null, + "convergent": null, + "conversant": [["Y"]], + "conversantly": null, + "conversationalist": [["S", "M"]], + "conversationalists": null, + "conversationalist's": null, + "conversational": [["Y"]], + "conversationally": null, + "conversation": [["S", "M"]], + "conversations": null, + "conversation's": null, + "conversazione": [["M"]], + "conversazione's": null, + "converse": [["Y"]], + "conversely": null, + "conversion": [["A", "M"]], + "reconversion": null, + "reconversion's": null, + "conversion's": null, + "conversioning": null, + "converted": [["U"]], + "unconverted": null, + "converter": [["M", "S"]], + "converter's": null, + "converters": null, + "convert": [["G", "A", "D", "S"]], + "converting": null, + "reconverting": null, + "reconvert": null, + "reconverted": null, + "reconverts": null, + "converts": null, + "convertibility's": [["I"]], + "inconvertibility's": null, + "convertibility": [["S", "M"]], + "convertibilities": null, + "convertibleness": [["M"]], + "convertibleness's": null, + "convertible": [["P", "S"]], + "convertibles": null, + "convexity": [["M", "S"]], + "convexity's": null, + "convexities": null, + "convex": [["Y"]], + "convexly": null, + "conveyance": [["D", "R", "S", "G", "M", "Z"]], + "conveyanced": null, + "conveyancer": [["M"]], + "conveyances": null, + "conveyancing": [["M"]], + "conveyance's": null, + "conveyancers": null, + "conveyancer's": null, + "conveyancing's": null, + "convey": [["B", "D", "G", "S"]], + "conveyable": null, + "conveyed": null, + "conveying": null, + "conveys": null, + "conveyor": [["M", "S"]], + "conveyor's": null, + "conveyors": null, + "conviction": [["M", "S"]], + "conviction's": null, + "convictions": null, + "convict": [["S", "V", "G", "D"]], + "convicts": null, + "convictive": null, + "convicting": null, + "convicted": null, + "convinced": [["U"]], + "unconvinced": null, + "convincer": [["M"]], + "convincer's": null, + "convince": [["R", "S", "D", "Z", "G"]], + "convinces": null, + "convincers": null, + "convincing": [["P", "U", "Y"]], + "convincingness": [["M"]], + "convincingness's": null, + "unconvincingness": null, + "unconvincing": null, + "unconvincingly": null, + "convincingly": null, + "conviviality": [["M", "S"]], + "conviviality's": null, + "convivialities": null, + "convivial": [["Y"]], + "convivially": null, + "convoke": [["G", "S", "D"]], + "convoking": null, + "convokes": null, + "convoked": null, + "convolute": [["X", "D", "N", "Y"]], + "convolutions": null, + "convoluted": null, + "convolution": [["M"]], + "convolutely": null, + "convolution's": null, + "convolve": [["C"]], + "deconvolve": null, + "convolved": null, + "convolves": null, + "convolving": null, + "convoy": [["G", "M", "D", "S"]], + "convoying": null, + "convoy's": null, + "convoyed": null, + "convoys": null, + "convulse": [["S", "D", "X", "V", "N", "G"]], + "convulses": null, + "convulsed": null, + "convulsions": null, + "convulsive": [["Y", "P"]], + "convulsion": [["M"]], + "convulsing": null, + "convulsion's": null, + "convulsiveness": [["M"]], + "convulsiveness's": null, + "convulsively": null, + "Conway": [["M"]], + "Conway's": null, + "cony": [["S", "M"]], + "conies": null, + "cony's": null, + "coo": [["G", "S", "D"]], + "cooing": null, + "coos": null, + "cooed": null, + "cookbook": [["S", "M"]], + "cookbooks": null, + "cookbook's": null, + "cooked": [["A", "U"]], + "recooked": null, + "uncooked": null, + "Cooke": [["M"]], + "Cooke's": null, + "cooker": [["M"]], + "cooker's": null, + "cookery": [["M", "S"]], + "cookery's": null, + "cookeries": null, + "cook": [["G", "Z", "D", "R", "M", "J", "S"]], + "cooking": [["M"]], + "cookers": null, + "cook's": null, + "cookings": null, + "cooks": [["A"]], + "Cookie": [["M"]], + "Cookie's": null, + "cookie": [["S", "M"]], + "cookies": null, + "cookie's": null, + "cooking's": null, + "Cook": [["M"]], + "Cook's": null, + "cookout": [["S", "M"]], + "cookouts": null, + "cookout's": null, + "recooks": null, + "cookware": [["S", "M"]], + "cookwares": null, + "cookware's": null, + "cooky's": null, + "coolant": [["S", "M"]], + "coolants": null, + "coolant's": null, + "cooled": [["U"]], + "uncooled": null, + "cooler": [["M"]], + "cooler's": null, + "Cooley": [["M"]], + "Cooley's": null, + "coolheaded": null, + "Coolidge": [["M"]], + "Coolidge's": null, + "coolie": [["M", "S"]], + "coolie's": null, + "coolies": null, + "coolness": [["M", "S"]], + "coolness's": null, + "coolnesses": null, + "cool": [["Y", "D", "R", "P", "J", "G", "Z", "T", "S"]], + "coolly": null, + "coolings": null, + "cooling": null, + "coolers": null, + "coolest": null, + "cools": null, + "coon": [["M", "S", "!"]], + "coon's": null, + "coons": null, + "coonskin": [["M", "S"]], + "coonskin's": null, + "coonskins": null, + "cooperage": [["M", "S"]], + "cooperage's": null, + "cooperages": null, + "cooperate": [["V", "N", "G", "X", "S", "D"]], + "cooperative": [["P", "S", "Y"]], + "cooperation": [["M"]], + "cooperating": null, + "cooperations": null, + "cooperates": null, + "cooperated": null, + "cooperation's": null, + "cooperativeness": [["S", "M"]], + "cooperativenesses": null, + "cooperativeness's": null, + "cooperatives": null, + "cooperatively": null, + "cooperator": [["M", "S"]], + "cooperator's": null, + "cooperators": null, + "cooper": [["G", "D", "M"]], + "coopering": null, + "coopered": null, + "cooper's": null, + "Cooper": [["M"]], + "Cooper's": null, + "coop": [["M", "D", "R", "G", "Z", "S"]], + "coop's": null, + "cooped": null, + "cooping": null, + "coopers": null, + "coops": null, + "Coop": [["M", "R"]], + "Coop's": null, + "coordinated": [["U"]], + "uncoordinated": null, + "coordinateness": [["M"]], + "coordinateness's": null, + "coordinate": [["X", "N", "G", "V", "Y", "P", "D", "S"]], + "coordinations": null, + "coordination": [["M"]], + "coordinating": null, + "coordinative": null, + "coordinately": null, + "coordinates": null, + "coordination's": null, + "coordinator": [["M", "S"]], + "coordinator's": null, + "coordinators": null, + "Coors": [["M"]], + "Coors's": null, + "cootie": [["S", "M"]], + "cooties": null, + "cootie's": null, + "coot": [["M", "S"]], + "coot's": null, + "coots": null, + "copay": [["S"]], + "copays": null, + "Copeland": [["M"]], + "Copeland's": null, + "Copenhagen": [["M"]], + "Copenhagen's": null, + "coper": [["M"]], + "coper's": null, + "Copernican": null, + "Copernicus": [["M"]], + "Copernicus's": null, + "cope": [["S"]], + "copes": null, + "copied": [["A"]], + "recopied": null, + "copier": [["M"]], + "copier's": null, + "copies": [["A"]], + "recopies": null, + "copilot": [["S", "M"]], + "copilots": null, + "copilot's": null, + "coping": [["M"]], + "coping's": null, + "copiousness": [["S", "M"]], + "copiousnesses": null, + "copiousness's": null, + "copious": [["Y", "P"]], + "copiously": null, + "coplanar": null, + "Copland": [["M"]], + "Copland's": null, + "Copley": [["M"]], + "Copley's": null, + "copolymer": [["M", "S"]], + "copolymer's": null, + "copolymers": null, + "copora": null, + "copped": null, + "Copperfield": [["M"]], + "Copperfield's": null, + "copperhead": [["M", "S"]], + "copperhead's": null, + "copperheads": null, + "copper": [["M", "S", "G", "D"]], + "copper's": null, + "coppers": null, + "coppering": null, + "coppered": null, + "copperplate": [["M", "S"]], + "copperplate's": null, + "copperplates": null, + "coppersmith": [["M"]], + "coppersmith's": null, + "coppersmiths": null, + "coppery": null, + "coppice's": null, + "copping": null, + "Coppola": [["M"]], + "Coppola's": null, + "copra": [["M", "S"]], + "copra's": null, + "copras": null, + "coprolite": [["M"]], + "coprolite's": null, + "coprophagous": null, + "copse": [["M"]], + "copse's": null, + "cops": [["G", "D", "S"]], + "copsing": null, + "copsed": null, + "copses": null, + "cop": [["S", "J", "M", "D", "R", "G"]], + "copings": null, + "cop's": null, + "coped": null, + "copter": [["S", "M"]], + "copters": null, + "copter's": null, + "Coptic": [["M"]], + "Coptic's": null, + "copula": [["M", "S"]], + "copula's": null, + "copulas": null, + "copulate": [["X", "D", "S", "N", "G", "V"]], + "copulations": null, + "copulated": null, + "copulates": null, + "copulation": [["M"]], + "copulating": null, + "copulative": [["S"]], + "copulation's": null, + "copulatives": null, + "copybook": [["M", "S"]], + "copybook's": null, + "copybooks": null, + "copycat": [["S", "M"]], + "copycats": null, + "copycat's": null, + "copycatted": null, + "copycatting": null, + "copyist": [["S", "M"]], + "copyists": null, + "copyist's": null, + "copy": [["M", "Z", "B", "D", "S", "R", "G"]], + "copy's": null, + "copiers": null, + "copyable": null, + "copying": null, + "copyrighter": [["M"]], + "copyrighter's": null, + "copyright": [["M", "S", "R", "D", "G", "Z"]], + "copyright's": null, + "copyrights": null, + "copyrighted": null, + "copyrighting": null, + "copyrighters": null, + "copywriter": [["M", "S"]], + "copywriter's": null, + "copywriters": null, + "coquetry": [["M", "S"]], + "coquetry's": null, + "coquetries": null, + "coquette": [["D", "S", "M", "G"]], + "coquetted": null, + "coquettes": null, + "coquette's": null, + "coquetting": null, + "coquettish": [["Y"]], + "coquettishly": null, + "Corabella": [["M"]], + "Corabella's": null, + "Corabelle": [["M"]], + "Corabelle's": null, + "Corabel": [["M"]], + "Corabel's": null, + "coracle": [["S", "M"]], + "coracles": null, + "coracle's": null, + "Coralie": [["M"]], + "Coralie's": null, + "Coraline": [["M"]], + "Coraline's": null, + "coralline": null, + "Coral": [["M"]], + "Coral's": null, + "coral": [["S", "M"]], + "corals": null, + "coral's": null, + "Coralyn": [["M"]], + "Coralyn's": null, + "Cora": [["M"]], + "Cora's": null, + "corbel": [["G", "M", "D", "J", "S"]], + "corbeling": null, + "corbel's": null, + "corbeled": null, + "corbelings": null, + "corbels": null, + "Corbet": [["M"]], + "Corbet's": null, + "Corbett": [["M"]], + "Corbett's": null, + "Corbie": [["M"]], + "Corbie's": null, + "Corbin": [["M"]], + "Corbin's": null, + "Corby": [["M"]], + "Corby's": null, + "cordage": [["M", "S"]], + "cordage's": null, + "cordages": null, + "corded": [["A", "E"]], + "recorded": [["A", "U"]], + "discorded": null, + "Cordelia": [["M"]], + "Cordelia's": null, + "Cordelie": [["M"]], + "Cordelie's": null, + "Cordell": [["M"]], + "Cordell's": null, + "corder": [["A", "M"]], + "recorder": null, + "recorder's": null, + "corder's": null, + "Cordey": [["M"]], + "Cordey's": null, + "cord": [["F", "S", "A", "E", "M"]], + "concord": null, + "concords": null, + "concord's": null, + "cords": null, + "records": [["A"]], + "discords": null, + "record": [["Z", "G", "J"]], + "record's": null, + "discord": [["G"]], + "discord's": null, + "cord's": null, + "cordiality": [["M", "S"]], + "cordiality's": null, + "cordialities": null, + "cordialness": [["M"]], + "cordialness's": null, + "cordial": [["P", "Y", "S"]], + "cordially": null, + "cordials": null, + "Cordie": [["M"]], + "Cordie's": null, + "cordillera": [["M", "S"]], + "cordillera's": null, + "cordilleras": null, + "Cordilleras": null, + "Cordi": [["M"]], + "Cordi's": null, + "cording": [["M", "A"]], + "cording's": null, + "recording's": null, + "recording": null, + "cordite": [["M", "S"]], + "cordite's": null, + "cordites": null, + "cordless": null, + "Cord": [["M"]], + "Cord's": null, + "Cordoba": null, + "cordon": [["D", "M", "S", "G"]], + "cordoned": null, + "cordon's": null, + "cordons": null, + "cordoning": null, + "cordovan": [["S", "M"]], + "cordovans": null, + "cordovan's": null, + "Cordula": [["M"]], + "Cordula's": null, + "corduroy": [["G", "D", "M", "S"]], + "corduroying": null, + "corduroyed": null, + "corduroy's": null, + "corduroys": null, + "Cordy": [["M"]], + "Cordy's": null, + "cored": [["A"]], + "recored": null, + "Coreen": [["M"]], + "Coreen's": null, + "Corella": [["M"]], + "Corella's": null, + "core": [["M", "Z", "G", "D", "R", "S"]], + "core's": null, + "corers": null, + "coring": [["M"]], + "corer": [["M"]], + "cores": null, + "Corenda": [["M"]], + "Corenda's": null, + "Corene": [["M"]], + "Corene's": null, + "corer's": null, + "corespondent": [["M", "S"]], + "corespondent's": null, + "corespondents": null, + "Coretta": [["M"]], + "Coretta's": null, + "Corette": [["M"]], + "Corette's": null, + "Corey": [["M"]], + "Corey's": null, + "Corfu": [["M"]], + "Corfu's": null, + "corgi": [["M", "S"]], + "corgi's": null, + "corgis": null, + "coriander": [["S", "M"]], + "corianders": null, + "coriander's": null, + "Corie": [["M"]], + "Corie's": null, + "Corilla": [["M"]], + "Corilla's": null, + "Cori": [["M"]], + "Cori's": null, + "Corina": [["M"]], + "Corina's": null, + "Corine": [["M"]], + "Corine's": null, + "coring's": null, + "Corinna": [["M"]], + "Corinna's": null, + "Corinne": [["M"]], + "Corinne's": null, + "Corinthian": [["S"]], + "Corinthians": [["M"]], + "Corinthians's": null, + "Corinth": [["M"]], + "Corinth's": null, + "Coriolanus": [["M"]], + "Coriolanus's": null, + "Coriolis": [["M"]], + "Coriolis's": null, + "Corissa": [["M"]], + "Corissa's": null, + "Coriss": [["M"]], + "Coriss's": null, + "corked": [["U"]], + "uncorked": null, + "corker": [["M"]], + "corker's": null, + "cork": [["G", "Z", "D", "R", "M", "S"]], + "corking": null, + "corkers": null, + "cork's": null, + "corks": [["U"]], + "Cork": [["M"]], + "Cork's": null, + "corkscrew": [["D", "M", "G", "S"]], + "corkscrewed": null, + "corkscrew's": null, + "corkscrewing": null, + "corkscrews": null, + "uncorks": null, + "Corliss": [["M"]], + "Corliss's": null, + "Corly": [["M"]], + "Corly's": null, + "Cormack": [["M"]], + "Cormack's": null, + "corm": [["M", "S"]], + "corm's": null, + "corms": null, + "cormorant": [["M", "S"]], + "cormorant's": null, + "cormorants": null, + "Cornall": [["M"]], + "Cornall's": null, + "cornball": [["S", "M"]], + "cornballs": null, + "cornball's": null, + "cornbread": [["S"]], + "cornbreads": null, + "corncob": [["S", "M"]], + "corncobs": null, + "corncob's": null, + "corncrake": [["M"]], + "corncrake's": null, + "corneal": null, + "cornea": [["S", "M"]], + "corneas": null, + "cornea's": null, + "Corneille": [["M"]], + "Corneille's": null, + "Cornela": [["M"]], + "Cornela's": null, + "Cornelia": [["M"]], + "Cornelia's": null, + "Cornelius": [["M"]], + "Cornelius's": null, + "Cornelle": [["M"]], + "Cornelle's": null, + "Cornell": [["M"]], + "Cornell's": null, + "corner": [["G", "D", "M"]], + "cornering": null, + "cornered": null, + "corner's": null, + "cornerstone": [["M", "S"]], + "cornerstone's": null, + "cornerstones": null, + "cornet": [["S", "M"]], + "cornets": null, + "cornet's": null, + "Corney": [["M"]], + "Corney's": null, + "cornfield": [["S", "M"]], + "cornfields": null, + "cornfield's": null, + "cornflake": [["S"]], + "cornflakes": null, + "cornflour": [["M"]], + "cornflour's": null, + "cornflower": [["S", "M"]], + "cornflowers": null, + "cornflower's": null, + "corn": [["G", "Z", "D", "R", "M", "S"]], + "corning": null, + "corners": null, + "corned": null, + "corn's": null, + "corns": null, + "cornice": [["G", "S", "D", "M"]], + "cornicing": null, + "cornices": null, + "corniced": null, + "cornice's": null, + "Cornie": [["M"]], + "Cornie's": null, + "cornily": null, + "corniness": [["S"]], + "corninesses": null, + "Cornish": [["S"]], + "Cornishes": null, + "cornmeal": [["S"]], + "cornmeals": null, + "cornrow": [["G", "D", "S"]], + "cornrowing": null, + "cornrowed": null, + "cornrows": null, + "cornstalk": [["M", "S"]], + "cornstalk's": null, + "cornstalks": null, + "cornstarch": [["S", "M"]], + "cornstarches": null, + "cornstarch's": null, + "cornucopia": [["M", "S"]], + "cornucopia's": null, + "cornucopias": null, + "Cornwallis": [["M"]], + "Cornwallis's": null, + "Cornwall": [["M"]], + "Cornwall's": null, + "Corny": [["M"]], + "Corny's": null, + "corny": [["R", "P", "T"]], + "cornier": null, + "corniest": null, + "corolla": [["M", "S"]], + "corolla's": null, + "corollas": null, + "corollary": [["S", "M"]], + "corollaries": null, + "corollary's": null, + "Coronado": [["M"]], + "Coronado's": null, + "coronal": [["M", "S"]], + "coronal's": null, + "coronals": null, + "coronary": [["S"]], + "coronaries": null, + "corona": [["S", "M"]], + "coronas": null, + "corona's": null, + "coronate": [["N", "X"]], + "coronation": [["M"]], + "coronations": null, + "coronation's": null, + "coroner": [["M", "S"]], + "coroner's": null, + "coroners": null, + "coronet": [["D", "M", "S"]], + "coroneted": null, + "coronet's": null, + "coronets": null, + "Corot": [["M"]], + "Corot's": null, + "coroutine": [["S", "M"]], + "coroutines": null, + "coroutine's": null, + "Corp": null, + "corporal": [["S", "Y", "M"]], + "corporals": null, + "corporally": null, + "corporal's": null, + "corpora": [["M", "S"]], + "corpora's": null, + "corporas": null, + "corporate": [["I", "N", "V", "X", "S"]], + "incorporate": [["G", "A", "S", "D", "X", "N"]], + "incorporation": null, + "incorporations": null, + "incorporates": null, + "corporation": [["M", "I"]], + "corporative": null, + "corporations": null, + "corporates": null, + "corporately": null, + "corporation's": null, + "incorporation's": null, + "corporatism": [["M"]], + "corporatism's": null, + "corporatist": null, + "corporeality": [["M", "S"]], + "corporeality's": null, + "corporealities": null, + "corporeal": [["I", "Y"]], + "incorporeal": null, + "incorporeally": null, + "corporeally": null, + "corporealness": [["M"]], + "corporealness's": null, + "corp": [["S"]], + "corps": [["S", "M"]], + "corpse": [["M"]], + "corpse's": null, + "corpsman": [["M"]], + "corpsman's": null, + "corpsmen": null, + "corpses": null, + "corps's": null, + "corpulence": [["M", "S"]], + "corpulence's": null, + "corpulences": null, + "corpulentness": [["S"]], + "corpulentnesses": null, + "corpulent": [["Y", "P"]], + "corpulently": null, + "corpuscle": [["S", "M"]], + "corpuscles": null, + "corpuscle's": null, + "corpuscular": null, + "corpus": [["M"]], + "corpus's": null, + "corr": null, + "corralled": null, + "corralling": null, + "corral": [["M", "S"]], + "corral's": null, + "corrals": null, + "correctable": [["U"]], + "uncorrectable": null, + "correct": [["B", "P", "S", "D", "R", "Y", "T", "G", "V"]], + "correctness": [["M", "S", "I"]], + "corrects": null, + "corrected": [["U"]], + "correcter": null, + "correctly": [["I"]], + "correctest": null, + "correcting": null, + "corrective": [["Y", "P", "S"]], + "uncorrected": null, + "correctional": null, + "correction": [["M", "S"]], + "correction's": null, + "corrections": null, + "correctively": null, + "correctiveness": null, + "correctives": null, + "incorrectly": null, + "correctness's": null, + "incorrectness's": null, + "correctnesses": null, + "incorrectnesses": null, + "incorrectness": null, + "corrector": [["M", "S"]], + "corrector's": null, + "correctors": null, + "Correggio": [["M"]], + "Correggio's": null, + "correlated": [["U"]], + "uncorrelated": null, + "correlate": [["S", "D", "X", "V", "N", "G"]], + "correlates": null, + "correlations": null, + "correlative": [["Y", "S"]], + "correlation": [["M"]], + "correlating": null, + "correlation's": null, + "correlatively": null, + "correlatives": null, + "Correna": [["M"]], + "Correna's": null, + "correspond": [["D", "S", "G"]], + "corresponded": null, + "corresponds": null, + "corresponding": [["Y"]], + "correspondence": [["M", "S"]], + "correspondence's": null, + "correspondences": null, + "correspondent": [["S", "M"]], + "correspondents": null, + "correspondent's": null, + "correspondingly": null, + "Correy": [["M"]], + "Correy's": null, + "Corrianne": [["M"]], + "Corrianne's": null, + "corridor": [["S", "M"]], + "corridors": null, + "corridor's": null, + "Corrie": [["M"]], + "Corrie's": null, + "corrigenda": null, + "corrigendum": [["M"]], + "corrigendum's": null, + "corrigible": [["I"]], + "incorrigible": [["S", "P"]], + "Corri": [["M"]], + "Corri's": null, + "Corrina": [["M"]], + "Corrina's": null, + "Corrine": [["M"]], + "Corrine's": null, + "Corrinne": [["M"]], + "Corrinne's": null, + "corroborated": [["U"]], + "uncorroborated": null, + "corroborate": [["G", "N", "V", "X", "D", "S"]], + "corroborating": null, + "corroboration": [["M"]], + "corroborative": [["Y"]], + "corroborations": null, + "corroborates": null, + "corroboration's": null, + "corroboratively": null, + "corroborator": [["M", "S"]], + "corroborator's": null, + "corroborators": null, + "corroboratory": null, + "corrode": [["S", "D", "G"]], + "corrodes": null, + "corroded": null, + "corroding": null, + "corrodible": null, + "corrosion": [["S", "M"]], + "corrosions": null, + "corrosion's": null, + "corrosiveness": [["M"]], + "corrosiveness's": null, + "corrosive": [["Y", "P", "S"]], + "corrosively": null, + "corrosives": null, + "corrugate": [["N", "G", "X", "S", "D"]], + "corrugation": [["M"]], + "corrugating": null, + "corrugations": null, + "corrugates": null, + "corrugated": null, + "corrugation's": null, + "corrupt": [["D", "R", "Y", "P", "T", "S", "G", "V"]], + "corrupted": [["U"]], + "corrupter": [["M"]], + "corruptly": null, + "corruptness": [["M", "S"]], + "corruptest": null, + "corrupts": null, + "corrupting": null, + "corruptive": [["Y"]], + "uncorrupted": null, + "corrupter's": null, + "corruptibility": [["S", "M", "I"]], + "corruptibilities": null, + "incorruptibilities": null, + "corruptibility's": null, + "incorruptibility's": null, + "incorruptibility": null, + "corruptible": [["I"]], + "incorruptible": [["S"]], + "corruption": [["I", "M"]], + "incorruption": null, + "incorruption's": null, + "corruption's": null, + "corruptions": null, + "corruptively": null, + "corruptness's": null, + "corruptnesses": null, + "Corry": [["M"]], + "Corry's": null, + "corsage": [["M", "S"]], + "corsage's": null, + "corsages": null, + "corsair": [["S", "M"]], + "corsairs": null, + "corsair's": null, + "corset": [["G", "M", "D", "S"]], + "corseting": null, + "corset's": null, + "corseted": null, + "corsets": null, + "Corsica": [["M"]], + "Corsica's": null, + "Corsican": [["S"]], + "Corsicans": null, + "cort�ge": [["M", "S"]], + "cort�ge's": null, + "cort�ges": null, + "Cortes": [["S"]], + "Corteses": null, + "cortex": [["M"]], + "cortex's": null, + "Cortez's": null, + "cortical": [["Y"]], + "cortically": null, + "cortices": null, + "corticosteroid": [["S", "M"]], + "corticosteroids": null, + "corticosteroid's": null, + "Cortie": [["M"]], + "Cortie's": null, + "cortisone": [["S", "M"]], + "cortisones": null, + "cortisone's": null, + "Cortland": [["M"]], + "Cortland's": null, + "Cort": [["M"]], + "Cort's": null, + "Cortney": [["M"]], + "Cortney's": null, + "Corty": [["M"]], + "Corty's": null, + "corundum": [["M", "S"]], + "corundum's": null, + "corundums": null, + "coruscate": [["X", "S", "D", "G", "N"]], + "coruscations": null, + "coruscates": null, + "coruscated": null, + "coruscating": null, + "coruscation": [["M"]], + "coruscation's": null, + "Corvallis": [["M"]], + "Corvallis's": null, + "corvette": [["M", "S"]], + "corvette's": null, + "corvettes": null, + "Corvus": [["M"]], + "Corvus's": null, + "Cory": [["M"]], + "Cory's": null, + "Cos": null, + "Cosby": [["M"]], + "Cosby's": null, + "Cosetta": [["M"]], + "Cosetta's": null, + "Cosette": [["M"]], + "Cosette's": null, + "cosing": null, + "cosed": null, + "coses": null, + "cosignatory": [["M", "S"]], + "cosignatory's": null, + "cosignatories": null, + "cosign": [["S", "R", "D", "Z", "G"]], + "cosigns": null, + "cosigner": null, + "cosigned": null, + "cosigners": null, + "cosigning": null, + "cosily": null, + "Cosimo": [["M"]], + "Cosimo's": null, + "cosine": [["M", "S"]], + "cosine's": null, + "cosines": null, + "cosiness": [["M", "S"]], + "cosiness's": null, + "cosinesses": null, + "Cosme": [["M"]], + "Cosme's": null, + "cosmetically": null, + "cosmetician": [["M", "S"]], + "cosmetician's": null, + "cosmeticians": null, + "cosmetic": [["S", "M"]], + "cosmetics": null, + "cosmetic's": null, + "cosmetologist": [["M", "S"]], + "cosmetologist's": null, + "cosmetologists": null, + "cosmetology": [["M", "S"]], + "cosmetology's": null, + "cosmetologies": null, + "cosmic": null, + "cosmical": [["Y"]], + "cosmically": null, + "cosmogonist": [["M", "S"]], + "cosmogonist's": null, + "cosmogonists": null, + "cosmogony": [["S", "M"]], + "cosmogonies": null, + "cosmogony's": null, + "cosmological": [["Y"]], + "cosmologically": null, + "cosmologist": [["M", "S"]], + "cosmologist's": null, + "cosmologists": null, + "cosmology": [["S", "M"]], + "cosmologies": null, + "cosmology's": null, + "Cosmo": [["M"]], + "Cosmo's": null, + "cosmonaut": [["M", "S"]], + "cosmonaut's": null, + "cosmonauts": null, + "cosmopolitanism": [["M", "S"]], + "cosmopolitanism's": null, + "cosmopolitanisms": null, + "cosmopolitan": [["S", "M"]], + "cosmopolitans": null, + "cosmopolitan's": null, + "cosmos": [["S", "M"]], + "cosmoses": null, + "cosmos's": null, + "cosponsor": [["D", "S", "G"]], + "cosponsored": null, + "cosponsors": null, + "cosponsoring": null, + "cossack": [["S"]], + "cossacks": null, + "Cossack": [["S", "M"]], + "Cossacks": null, + "Cossack's": null, + "cosset": [["G", "D", "S"]], + "cosseting": null, + "cosseted": null, + "cossets": null, + "Costa": [["M"]], + "Costa's": null, + "Costanza": [["M"]], + "Costanza's": null, + "costarred": null, + "costarring": null, + "costar": [["S"]], + "costars": null, + "Costello": [["M"]], + "Costello's": null, + "costiveness": [["M"]], + "costiveness's": null, + "costive": [["P", "Y"]], + "costively": null, + "costless": null, + "costliness": [["S", "M"]], + "costlinesses": null, + "costliness's": null, + "costly": [["R", "T", "P"]], + "costlier": null, + "costliest": null, + "cost": [["M", "Y", "G", "V", "J", "S"]], + "cost's": null, + "costing": null, + "costings": null, + "costs": null, + "Costner": [["M"]], + "Costner's": null, + "costumer": [["M"]], + "costumer's": null, + "costume": [["Z", "M", "G", "S", "R", "D"]], + "costumers": null, + "costume's": null, + "costuming": null, + "costumes": null, + "costumed": null, + "cotangent": [["S", "M"]], + "cotangents": null, + "cotangent's": null, + "Cote": [["M"]], + "Cote's": null, + "cote": [["M", "S"]], + "cote's": null, + "cotes": null, + "coterie": [["M", "S"]], + "coterie's": null, + "coteries": null, + "coterminous": [["Y"]], + "coterminously": null, + "cotillion": [["S", "M"]], + "cotillions": null, + "cotillion's": null, + "Cotonou": [["M"]], + "Cotonou's": null, + "Cotopaxi": [["M"]], + "Cotopaxi's": null, + "cot": [["S", "G", "M", "D"]], + "cots": null, + "coting": null, + "cot's": null, + "coted": null, + "cottager": [["M"]], + "cottager's": null, + "cottage": [["Z", "M", "G", "S", "R", "D"]], + "cottagers": null, + "cottage's": null, + "cottaging": null, + "cottages": null, + "cottaged": null, + "cottar's": null, + "cotted": null, + "cotter": [["S", "D", "M"]], + "cotters": null, + "cottered": null, + "cotter's": null, + "cotton": [["G", "S", "D", "M"]], + "cottoning": null, + "cottons": null, + "cottoned": null, + "cotton's": null, + "Cotton": [["M"]], + "Cotton's": null, + "cottonmouth": [["M"]], + "cottonmouth's": null, + "cottonmouths": null, + "cottonseed": [["M", "S"]], + "cottonseed's": null, + "cottonseeds": null, + "cottontail": [["S", "M"]], + "cottontails": null, + "cottontail's": null, + "cottonwood": [["S", "M"]], + "cottonwoods": null, + "cottonwood's": null, + "cottony": null, + "cotyledon": [["M", "S"]], + "cotyledon's": null, + "cotyledons": null, + "couching": [["M"]], + "couching's": null, + "couch": [["M", "S", "D", "G"]], + "couch's": null, + "couches": null, + "couched": null, + "cougar": [["M", "S"]], + "cougar's": null, + "cougars": null, + "cougher": [["M"]], + "cougher's": null, + "cough": [["R", "D", "G"]], + "coughed": null, + "coughing": null, + "coughs": null, + "couldn't": null, + "could": [["T"]], + "couldest": null, + "could've": null, + "coul�e": [["M", "S"]], + "coul�e's": null, + "coul�es": null, + "Coulomb": [["M"]], + "Coulomb's": null, + "coulomb": [["S", "M"]], + "coulombs": null, + "coulomb's": null, + "councilman": [["M"]], + "councilman's": null, + "councilmen": null, + "councilor": [["M", "S"]], + "councilor's": null, + "councilors": null, + "councilperson": [["S"]], + "councilpersons": null, + "council": [["S", "M"]], + "councils": null, + "council's": null, + "councilwoman": [["M"]], + "councilwoman's": null, + "councilwomen": null, + "counsel": [["G", "S", "D", "M"]], + "counseling": null, + "counsels": null, + "counseled": null, + "counsel's": null, + "counsellings": null, + "counselor": [["M", "S"]], + "counselor's": null, + "counselors": null, + "countability": [["E"]], + "discountability": null, + "countable": [["U"]], + "uncountable": null, + "countably": [["U"]], + "uncountably": null, + "countdown": [["S", "M"]], + "countdowns": null, + "countdown's": null, + "counted": [["U"]], + "uncounted": null, + "count": [["E", "G", "A", "R", "D", "S"]], + "discount": [["B"]], + "discounting": null, + "discounter": null, + "discounted": null, + "discounts": null, + "counting": null, + "recounting": null, + "recount": null, + "recounter": null, + "recounted": null, + "recounts": null, + "counter": [["G", "S", "M", "D"]], + "counts": null, + "countenance": [["E", "G", "D", "S"]], + "discountenance": null, + "discountenancing": null, + "discountenanced": null, + "discountenances": null, + "countenancing": null, + "countenanced": null, + "countenances": null, + "countenancer": [["M"]], + "countenancer's": null, + "countenance's": null, + "counteract": [["D", "S", "V", "G"]], + "counteracted": null, + "counteracts": null, + "counteractive": null, + "counteracting": null, + "counteraction": [["S", "M"]], + "counteractions": null, + "counteraction's": null, + "counterargument": [["S", "M"]], + "counterarguments": null, + "counterargument's": null, + "counterattack": [["D", "R", "M", "G", "S"]], + "counterattacked": null, + "counterattacker": null, + "counterattack's": null, + "counterattacking": null, + "counterattacks": null, + "counterbalance": [["M", "S", "D", "G"]], + "counterbalance's": null, + "counterbalances": null, + "counterbalanced": null, + "counterbalancing": null, + "counterclaim": [["G", "S", "D", "M"]], + "counterclaiming": null, + "counterclaims": null, + "counterclaimed": null, + "counterclaim's": null, + "counterclockwise": null, + "counterculture": [["M", "S"]], + "counterculture's": null, + "countercultures": null, + "countercyclical": null, + "counterespionage": [["M", "S"]], + "counterespionage's": null, + "counterespionages": null, + "counterexample": [["S"]], + "counterexamples": null, + "counterfeiter": [["M"]], + "counterfeiter's": null, + "counterfeit": [["Z", "S", "G", "R", "D"]], + "counterfeiters": null, + "counterfeits": null, + "counterfeiting": null, + "counterfeited": null, + "counterflow": null, + "counterfoil": [["M", "S"]], + "counterfoil's": null, + "counterfoils": null, + "counterforce": [["M"]], + "counterforce's": null, + "countering": null, + "counters": [["E"]], + "counter's": [["E"]], + "countered": null, + "counterinsurgency": [["M", "S"]], + "counterinsurgency's": null, + "counterinsurgencies": null, + "counterintelligence": [["M", "S"]], + "counterintelligence's": null, + "counterintelligences": null, + "counterintuitive": null, + "countermand": [["D", "S", "G"]], + "countermanded": null, + "countermands": null, + "countermanding": null, + "counterman": [["M"]], + "counterman's": null, + "countermeasure": [["S", "M"]], + "countermeasures": null, + "countermeasure's": null, + "countermen": null, + "counteroffensive": [["S", "M"]], + "counteroffensives": null, + "counteroffensive's": null, + "counteroffer": [["S", "M"]], + "counteroffers": null, + "counteroffer's": null, + "counterpane": [["S", "M"]], + "counterpanes": null, + "counterpane's": null, + "counterpart": [["S", "M"]], + "counterparts": null, + "counterpart's": null, + "counterpoint": [["G", "S", "D", "M"]], + "counterpointing": null, + "counterpoints": null, + "counterpointed": null, + "counterpoint's": null, + "counterpoise": [["G", "M", "S", "D"]], + "counterpoising": null, + "counterpoise's": null, + "counterpoises": null, + "counterpoised": null, + "counterproductive": null, + "counterproposal": [["M"]], + "counterproposal's": null, + "counterrevolutionary": [["M", "S"]], + "counterrevolutionary's": null, + "counterrevolutionaries": null, + "counterrevolution": [["M", "S"]], + "counterrevolution's": null, + "counterrevolutions": null, + "discounter's": null, + "discounters": null, + "countersignature": [["M", "S"]], + "countersignature's": null, + "countersignatures": null, + "countersign": [["S", "D", "G"]], + "countersigns": null, + "countersigned": null, + "countersigning": null, + "countersink": [["S", "G"]], + "countersinks": null, + "countersinking": null, + "counterspy": [["M", "S"]], + "counterspy's": null, + "counterspies": null, + "counterstrike": null, + "countersunk": null, + "countertenor": [["S", "M"]], + "countertenors": null, + "countertenor's": null, + "countervail": [["D", "S", "G"]], + "countervailed": null, + "countervails": null, + "countervailing": null, + "counterweight": [["G", "M", "D", "S"]], + "counterweighting": null, + "counterweight's": null, + "counterweighted": null, + "counterweights": null, + "countess": [["M", "S"]], + "countess's": null, + "countesses": null, + "countless": [["Y"]], + "countlessly": null, + "countrify": [["D"]], + "countrified": null, + "countryman": [["M"]], + "countryman's": null, + "countrymen": null, + "country": [["M", "S"]], + "country's": null, + "countries": null, + "countryside": [["M", "S"]], + "countryside's": null, + "countrysides": null, + "countrywide": null, + "countrywoman": [["M"]], + "countrywoman's": null, + "countrywomen": null, + "county": [["S", "M"]], + "counties": null, + "county's": null, + "coup": [["A", "S", "D", "G"]], + "recoup": null, + "recoups": null, + "recouped": null, + "recouping": null, + "coups": null, + "couped": null, + "couping": null, + "coupe": [["M", "S"]], + "coupe's": null, + "coupes": null, + "Couperin": [["M"]], + "Couperin's": null, + "couple": [["A", "C", "U"]], + "recouple": null, + "decouple": [["G"]], + "uncouple": [["G"]], + "coupled": [["C", "U"]], + "decoupled": null, + "uncoupled": null, + "coupler": [["C"]], + "decoupler": null, + "couplers": null, + "coupler's": null, + "couple's": null, + "couples": [["C", "U"]], + "decouples": null, + "uncouples": null, + "couplet": [["S", "M"]], + "couplets": null, + "couplet's": null, + "coupling's": [["C"]], + "decoupling's": null, + "coupling": [["S", "M"]], + "couplings": null, + "coupon": [["S", "M"]], + "coupons": null, + "coupon's": null, + "coup's": null, + "courage": [["M", "S"]], + "courage's": null, + "courages": [["E"]], + "courageously": null, + "courageousness": [["M", "S"]], + "courageousness's": null, + "courageousnesses": null, + "courageous": [["U"]], + "uncourageous": null, + "discourages": null, + "Courbet": [["M"]], + "Courbet's": null, + "courgette": [["M", "S"]], + "courgette's": null, + "courgettes": null, + "courier": [["G", "M", "D", "S"]], + "couriering": null, + "courier's": null, + "couriered": null, + "couriers": null, + "course": [["E", "G", "S", "R", "D", "M"]], + "discourse": null, + "discoursing": null, + "discourses": null, + "discourser": null, + "discoursed": null, + "discourse's": null, + "coursing": [["M"]], + "courses": [["F", "A"]], + "courser": [["S", "M"]], + "coursed": null, + "course's": [["A", "F"]], + "courser's": [["E"]], + "discourser's": null, + "coursers": null, + "recourse's": null, + "concourse's": null, + "concourses": null, + "recourses": null, + "coursework": null, + "coursing's": null, + "Courtenay": [["M"]], + "Courtenay's": null, + "courteousness": [["E", "M"]], + "discourteousness": null, + "discourteousness's": null, + "courteousness's": null, + "courteousnesses": null, + "courteous": [["P", "E", "Y"]], + "discourteous": null, + "discourteously": null, + "courteously": null, + "courtesan": [["M", "S"]], + "courtesan's": null, + "courtesans": null, + "courtesied": null, + "courtesy": [["E", "S", "M"]], + "discourtesy": null, + "discourtesies": null, + "discourtesy's": null, + "courtesies": null, + "courtesy's": null, + "courtesying": null, + "court": [["G", "Z", "M", "Y", "R", "D", "S"]], + "courting": null, + "courters": null, + "court's": null, + "courtly": [["R", "T", "P"]], + "courter": null, + "courted": null, + "courts": null, + "courthouse": [["M", "S"]], + "courthouse's": null, + "courthouses": null, + "courtier": [["S", "M"]], + "courtiers": null, + "courtier's": null, + "courtliness": [["M", "S"]], + "courtliness's": null, + "courtlinesses": null, + "courtlier": null, + "courtliest": null, + "Court": [["M"]], + "Court's": null, + "Courtnay": [["M"]], + "Courtnay's": null, + "Courtney": [["M"]], + "Courtney's": null, + "courtroom": [["M", "S"]], + "courtroom's": null, + "courtrooms": null, + "courtship": [["S", "M"]], + "courtships": null, + "courtship's": null, + "courtyard": [["S", "M"]], + "courtyards": null, + "courtyard's": null, + "couscous": [["M", "S"]], + "couscous's": null, + "couscouses": null, + "cousinly": [["U"]], + "uncousinly": null, + "cousin": [["Y", "M", "S"]], + "cousin's": null, + "cousins": null, + "Cousteau": [["M"]], + "Cousteau's": null, + "couture": [["S", "M"]], + "coutures": null, + "couture's": null, + "couturier": [["S", "M"]], + "couturiers": null, + "couturier's": null, + "covalent": [["Y"]], + "covalently": null, + "covariance": [["S", "M"]], + "covariances": null, + "covariance's": null, + "covariant": [["S"]], + "covariants": null, + "covariate": [["S", "N"]], + "covariates": null, + "covariation": null, + "covary": null, + "cove": [["D", "R", "S", "M", "Z", "G"]], + "coved": null, + "cover": [["A", "E", "G", "U", "D", "S"]], + "coves": null, + "cove's": null, + "covers": [["M"]], + "coving": null, + "covenanted": [["U"]], + "uncovenanted": null, + "covenanter": [["M"]], + "covenanter's": null, + "covenant": [["S", "G", "R", "D", "M"]], + "covenants": null, + "covenanting": null, + "covenant's": null, + "coven": [["S", "M"]], + "covens": null, + "coven's": null, + "Covent": [["M"]], + "Covent's": null, + "Coventry": [["M", "S"]], + "Coventry's": null, + "Coventries": null, + "coverable": [["E"]], + "discoverable": [["I"]], + "recover": [["B"]], + "recovering": null, + "recovered": null, + "recovers": null, + "discover": [["A", "D", "G", "S"]], + "discovering": null, + "discovered": [["U"]], + "discovers": null, + "covering": [["M", "S"]], + "uncovering": null, + "uncover": null, + "uncovered": null, + "uncovers": null, + "covered": null, + "coverage": [["M", "S"]], + "coverage's": null, + "coverages": null, + "coverall": [["D", "M", "S"]], + "coveralled": null, + "coverall's": null, + "coveralls": null, + "coverer": [["A", "M", "E"]], + "recoverer": null, + "recoverer's": null, + "coverer's": null, + "discoverer's": null, + "discoverer": [["S"]], + "covering's": null, + "coverings": null, + "coverlet": [["M", "S"]], + "coverlet's": null, + "coverlets": null, + "coversheet": null, + "covers's": null, + "covertness": [["S", "M"]], + "covertnesses": null, + "covertness's": null, + "covert": [["Y", "P", "S"]], + "covertly": null, + "coverts": null, + "coveter": [["M"]], + "coveter's": null, + "coveting": [["Y"]], + "covetingly": null, + "covetousness": [["S", "M"]], + "covetousnesses": null, + "covetousness's": null, + "covetous": [["P", "Y"]], + "covetously": null, + "covet": [["S", "G", "R", "D"]], + "covets": null, + "coveted": null, + "covey": [["S", "M"]], + "coveys": null, + "covey's": null, + "covington": null, + "cowardice": [["M", "S"]], + "cowardice's": null, + "cowardices": null, + "cowardliness": [["M", "S"]], + "cowardliness's": null, + "cowardlinesses": null, + "cowardly": [["P"]], + "Coward": [["M"]], + "Coward's": null, + "coward": [["M", "Y", "S"]], + "coward's": null, + "cowards": null, + "cowbell": [["M", "S"]], + "cowbell's": null, + "cowbells": null, + "cowbird": [["M", "S"]], + "cowbird's": null, + "cowbirds": null, + "cowboy": [["M", "S"]], + "cowboy's": null, + "cowboys": null, + "cowcatcher": [["S", "M"]], + "cowcatchers": null, + "cowcatcher's": null, + "cowed": [["Y"]], + "cowedly": null, + "cowering": [["Y"]], + "coweringly": null, + "cower": [["R", "D", "G", "Z"]], + "cowerer": null, + "cowered": null, + "cowerers": null, + "cowgirl": [["M", "S"]], + "cowgirl's": null, + "cowgirls": null, + "cowhand": [["S"]], + "cowhands": null, + "cowherd": [["S", "M"]], + "cowherds": null, + "cowherd's": null, + "cowhide": [["M", "G", "S", "D"]], + "cowhide's": null, + "cowhiding": null, + "cowhides": null, + "cowhided": null, + "Cowley": [["M"]], + "Cowley's": null, + "cowlick": [["M", "S"]], + "cowlick's": null, + "cowlicks": null, + "cowling": [["M"]], + "cowling's": null, + "cowl": [["S", "G", "M", "D"]], + "cowls": null, + "cowl's": null, + "cowled": null, + "cowman": [["M"]], + "cowman's": null, + "cow": [["M", "D", "R", "S", "Z", "G"]], + "cow's": null, + "cows": null, + "cowers": null, + "cowing": null, + "cowmen": null, + "coworker": [["M", "S"]], + "coworker's": null, + "coworkers": null, + "Cowper": [["M"]], + "Cowper's": null, + "cowpoke": [["M", "S"]], + "cowpoke's": null, + "cowpokes": null, + "cowpony": null, + "cowpox": [["M", "S"]], + "cowpox's": null, + "cowpoxes": null, + "cowpuncher": [["M"]], + "cowpuncher's": null, + "cowpunch": [["R", "Z"]], + "cowpunchers": null, + "cowrie": [["S", "M"]], + "cowries": null, + "cowrie's": null, + "cowshed": [["S", "M"]], + "cowsheds": null, + "cowshed's": null, + "cowslip": [["M", "S"]], + "cowslip's": null, + "cowslips": null, + "coxcomb": [["M", "S"]], + "coxcomb's": null, + "coxcombs": null, + "Cox": [["M"]], + "Cox's": null, + "cox": [["M", "D", "S", "G"]], + "cox's": null, + "coxed": null, + "coxes": null, + "coxing": null, + "coxswain": [["G", "S", "M", "D"]], + "coxswaining": null, + "coxswains": null, + "coxswain's": null, + "coxswained": null, + "coy": [["C", "D", "S", "G"]], + "decoy": [["M"]], + "decoyed": null, + "decoys": null, + "decoying": null, + "coyed": null, + "coys": null, + "coying": null, + "coyer": null, + "coyest": null, + "coyly": null, + "Coy": [["M"]], + "Coy's": null, + "coyness": [["M", "S"]], + "coyness's": null, + "coynesses": null, + "coyote": [["S", "M"]], + "coyotes": null, + "coyote's": null, + "coypu": [["S", "M"]], + "coypus": null, + "coypu's": null, + "cozenage": [["M", "S"]], + "cozenage's": null, + "cozenages": null, + "cozen": [["S", "G", "D"]], + "cozens": null, + "cozening": null, + "cozened": null, + "cozily": null, + "coziness": [["M", "S"]], + "coziness's": null, + "cozinesses": null, + "Cozmo": [["M"]], + "Cozmo's": null, + "Cozumel": [["M"]], + "Cozumel's": null, + "cozy": [["D", "S", "R", "T", "P", "G"]], + "cozied": null, + "cozies": null, + "cozier": null, + "coziest": null, + "cozying": null, + "CPA": null, + "cpd": null, + "CPI": null, + "cpl": null, + "Cpl": null, + "CPO": null, + "CPR": null, + "cps": null, + "CPU": [["S", "M"]], + "CPUs": null, + "CPU's": null, + "crabapple": null, + "crabbedness": [["M"]], + "crabbedness's": null, + "crabbed": [["Y", "P"]], + "crabbedly": null, + "Crabbe": [["M"]], + "Crabbe's": null, + "crabber": [["M", "S"]], + "crabber's": null, + "crabbers": null, + "crabbily": null, + "crabbiness": [["S"]], + "crabbinesses": null, + "crabbing": [["M"]], + "crabbing's": null, + "crabby": [["P", "R", "T"]], + "crabbier": null, + "crabbiest": null, + "crabgrass": [["S"]], + "crabgrasses": null, + "crablike": null, + "crab": [["M", "S"]], + "crab's": null, + "crabs": null, + "crackable": [["U"]], + "uncrackable": null, + "crackdown": [["M", "S"]], + "crackdown's": null, + "crackdowns": null, + "crackerjack": [["S"]], + "crackerjacks": null, + "cracker": [["M"]], + "cracker's": null, + "crackle": [["G", "J", "D", "S"]], + "crackling": [["M"]], + "cracklings": null, + "crackled": null, + "crackles": null, + "crackling's": null, + "crackly": [["R", "T"]], + "cracklier": null, + "crackliest": null, + "crackpot": [["S", "M"]], + "crackpots": null, + "crackpot's": null, + "crackup": [["S"]], + "crackups": null, + "crack": [["Z", "S", "B", "Y", "R", "D", "G"]], + "crackers": null, + "cracks": null, + "cracked": null, + "cracking": null, + "cradler": [["M"]], + "cradler's": null, + "cradle": [["S", "R", "D", "G", "M"]], + "cradles": null, + "cradled": null, + "cradling": [["M"]], + "cradle's": null, + "cradling's": null, + "craftily": null, + "craftiness": [["S", "M"]], + "craftinesses": null, + "craftiness's": null, + "Craft": [["M"]], + "Craft's": null, + "craft": [["M", "R", "D", "S", "G"]], + "craft's": null, + "crafter": null, + "crafted": null, + "crafts": null, + "crafting": null, + "craftsman": [["M"]], + "craftsman's": null, + "craftsmanship": [["S", "M"]], + "craftsmanships": null, + "craftsmanship's": null, + "craftsmen": null, + "craftspeople": null, + "craftspersons": null, + "craftswoman": null, + "craftswomen": null, + "crafty": [["T", "R", "P"]], + "craftiest": null, + "craftier": null, + "Craggie": [["M"]], + "Craggie's": null, + "cragginess": [["S", "M"]], + "cragginesses": null, + "cragginess's": null, + "Craggy": [["M"]], + "Craggy's": null, + "craggy": [["R", "T", "P"]], + "craggier": null, + "craggiest": null, + "crag": [["S", "M"]], + "crags": null, + "crag's": null, + "Craig": [["M"]], + "Craig's": null, + "Cramer": [["M"]], + "Cramer's": null, + "crammed": null, + "crammer": [["M"]], + "crammer's": null, + "cramming": null, + "cramper": [["M"]], + "cramper's": null, + "cramp": [["M", "R", "D", "G", "S"]], + "cramp's": null, + "cramped": null, + "cramping": null, + "cramps": null, + "crampon": [["S", "M"]], + "crampons": null, + "crampon's": null, + "cram": [["S"]], + "crams": null, + "Cranach": [["M"]], + "Cranach's": null, + "cranberry": [["S", "M"]], + "cranberries": null, + "cranberry's": null, + "Crandall": [["M"]], + "Crandall's": null, + "crane": [["D", "S", "G", "M"]], + "craned": null, + "cranes": null, + "craning": null, + "crane's": null, + "cranelike": null, + "Crane": [["M"]], + "Crane's": null, + "Cranford": [["M"]], + "Cranford's": null, + "cranial": null, + "cranium": [["M", "S"]], + "cranium's": null, + "craniums": null, + "crankcase": [["M", "S"]], + "crankcase's": null, + "crankcases": null, + "crankily": null, + "crankiness": [["M", "S"]], + "crankiness's": null, + "crankinesses": null, + "crank": [["S", "G", "T", "R", "D", "M"]], + "cranks": null, + "cranking": null, + "crankest": null, + "cranker": null, + "cranked": null, + "crank's": null, + "crankshaft": [["M", "S"]], + "crankshaft's": null, + "crankshafts": null, + "cranky": [["T", "R", "P"]], + "crankiest": null, + "crankier": null, + "Cranmer": [["M"]], + "Cranmer's": null, + "cranny": [["D", "S", "G", "M"]], + "crannied": null, + "crannies": null, + "crannying": null, + "cranny's": null, + "Cranston": [["M"]], + "Cranston's": null, + "crape": [["S", "M"]], + "crapes": null, + "crape's": null, + "crapped": null, + "crappie": [["M"]], + "crappie's": null, + "crapping": null, + "crappy": [["R", "S", "T"]], + "crappier": null, + "crappies": null, + "crappiest": null, + "crapshooter": [["S", "M"]], + "crapshooters": null, + "crapshooter's": null, + "crap": [["S", "M", "D", "G", "!"]], + "craps": null, + "crap's": null, + "craped": null, + "craping": null, + "crasher": [["M"]], + "crasher's": null, + "crashing": [["Y"]], + "crashingly": null, + "crash": [["S", "R", "D", "G", "Z"]], + "crashes": null, + "crashed": null, + "crashers": null, + "crassness": [["M", "S"]], + "crassness's": null, + "crassnesses": null, + "crass": [["T", "Y", "R", "P"]], + "crassest": null, + "crassly": null, + "crasser": null, + "crate": [["D", "S", "R", "G", "M", "Z"]], + "crated": null, + "crates": null, + "crater": [["D", "M", "G"]], + "crating": null, + "crate's": null, + "craters": null, + "cratered": null, + "crater's": null, + "cratering": null, + "Crater": [["M"]], + "Crater's": null, + "cravat": [["S", "M"]], + "cravats": null, + "cravat's": null, + "cravatted": null, + "cravatting": null, + "crave": [["D", "S", "R", "G", "J"]], + "craved": null, + "craves": null, + "craver": [["M"]], + "craving": [["M"]], + "cravings": null, + "cravenness": [["S", "M"]], + "cravennesses": null, + "cravenness's": null, + "craven": [["S", "P", "Y", "D", "G"]], + "cravens": null, + "cravenly": null, + "cravened": null, + "cravening": null, + "craver's": null, + "craving's": null, + "crawdad": [["S"]], + "crawdads": null, + "crawfish's": null, + "Crawford": [["M"]], + "Crawford's": null, + "crawler": [["M"]], + "crawler's": null, + "crawl": [["R", "D", "S", "G", "Z"]], + "crawled": null, + "crawls": null, + "crawling": null, + "crawlers": null, + "crawlspace": [["S"]], + "crawlspaces": null, + "crawlway": null, + "crawly": [["T", "R", "S"]], + "crawliest": null, + "crawlier": null, + "crawlies": null, + "craw": [["S", "Y", "M"]], + "craws": null, + "craw's": null, + "crayfish": [["G", "S", "D", "M"]], + "crayfishing": null, + "crayfishes": null, + "crayfished": null, + "crayfish's": null, + "Crayola": [["M"]], + "Crayola's": null, + "crayon": [["G", "S", "D", "M"]], + "crayoning": null, + "crayons": null, + "crayoned": null, + "crayon's": null, + "Cray": [["S", "M"]], + "Crays": null, + "Cray's": null, + "craze": [["G", "M", "D", "S"]], + "crazing": null, + "craze's": null, + "crazed": null, + "crazes": null, + "crazily": null, + "craziness": [["M", "S"]], + "craziness's": null, + "crazinesses": null, + "crazy": [["S", "R", "T", "P"]], + "crazies": null, + "crazier": null, + "craziest": null, + "creakily": null, + "creakiness": [["S", "M"]], + "creakinesses": null, + "creakiness's": null, + "creak": [["S", "D", "G"]], + "creaks": null, + "creaked": null, + "creaking": null, + "creaky": [["P", "T", "R"]], + "creakiest": null, + "creakier": null, + "creamer": [["M"]], + "creamer's": null, + "creamery": [["M", "S"]], + "creamery's": null, + "creameries": null, + "creamily": null, + "creaminess": [["S", "M"]], + "creaminesses": null, + "creaminess's": null, + "cream": [["S", "M", "R", "D", "G", "Z"]], + "creams": null, + "cream's": null, + "creamed": null, + "creaming": null, + "creamers": null, + "creamy": [["T", "R", "P"]], + "creamiest": null, + "creamier": null, + "creased": [["C", "U"]], + "decreased": null, + "uncreased": null, + "crease": [["I", "D", "R", "S", "G"]], + "increase": [["J", "B"]], + "increased": null, + "increaser": [["M"]], + "increases": null, + "increasing": [["Y"]], + "creaser": null, + "creases": [["C"]], + "creasing": [["C"]], + "crease's": null, + "decreases": null, + "decreasing": [["Y"]], + "created": [["U"]], + "uncreated": null, + "create": [["X", "K", "V", "N", "G", "A", "D", "S"]], + "creations": null, + "procreations": null, + "recreations": null, + "procreate": null, + "procreation": null, + "procreating": null, + "procreated": null, + "procreates": null, + "creative": [["Y", "P"]], + "creation": [["M", "A", "K"]], + "recreation": null, + "creating": null, + "recreating": null, + "recreate": null, + "recreated": null, + "recreates": null, + "creates": null, + "creationism": [["M", "S"]], + "creationism's": null, + "creationisms": null, + "creationist": [["M", "S"]], + "creationist's": null, + "creationists": null, + "Creation": [["M"]], + "Creation's": null, + "creation's": null, + "recreation's": null, + "procreation's": null, + "creativeness": [["S", "M"]], + "creativenesses": null, + "creativeness's": null, + "creatively": null, + "creativities": null, + "creativity": [["K"]], + "procreativity": null, + "creativity's": null, + "Creator": [["M"]], + "Creator's": null, + "creator": [["M", "S"]], + "creator's": null, + "creators": null, + "creatureliness": [["M"]], + "creatureliness's": null, + "creaturely": [["P"]], + "creature": [["Y", "M", "S"]], + "creature's": null, + "creatures": null, + "cr�che": [["S", "M"]], + "cr�ches": null, + "cr�che's": null, + "credence": [["M", "S"]], + "credence's": null, + "credences": null, + "credent": null, + "credential": [["S", "G", "M", "D"]], + "credentials": null, + "credentialing": null, + "credential's": null, + "credentialed": null, + "credenza": [["S", "M"]], + "credenzas": null, + "credenza's": null, + "credibility": [["I", "M", "S"]], + "incredibility": null, + "incredibility's": null, + "incredibilities": null, + "credibility's": null, + "credibilities": null, + "credible": [["I"]], + "incredible": [["P"]], + "credibly": [["I"]], + "incredibly": null, + "creditability": [["M"]], + "creditability's": null, + "creditableness": [["M"]], + "creditableness's": null, + "creditable": [["P"]], + "creditably": [["E"]], + "discreditably": null, + "credited": [["U"]], + "uncredited": null, + "credit": [["E", "G", "B", "S", "D"]], + "discredit": null, + "discrediting": null, + "discreditable": null, + "discredits": null, + "discredited": null, + "crediting": null, + "credits": null, + "creditor": [["M", "S"]], + "creditor's": null, + "creditors": null, + "credit's": null, + "creditworthiness": null, + "credo": [["S", "M"]], + "credos": null, + "credo's": null, + "credulity": [["I", "S", "M"]], + "incredulity": null, + "incredulities": null, + "incredulity's": null, + "credulities": null, + "credulity's": null, + "credulous": [["I", "Y"]], + "incredulous": null, + "incredulously": null, + "credulously": null, + "credulousness": [["S", "M"]], + "credulousnesses": null, + "credulousness's": null, + "creedal": null, + "creed": [["C"]], + "decreed": null, + "creeds": null, + "creed's": null, + "creekside": null, + "creek": [["S", "M"]], + "creeks": null, + "creek's": null, + "Creek": [["S", "M"]], + "Creeks": null, + "Creek's": null, + "creel": [["S", "M", "D", "G"]], + "creels": null, + "creel's": null, + "creeled": null, + "creeling": null, + "Cree": [["M", "D", "S"]], + "Cree's": null, + "Creed": null, + "Crees": null, + "creeper": [["M"]], + "creeper's": null, + "creepily": null, + "creepiness": [["S", "M"]], + "creepinesses": null, + "creepiness's": null, + "creep": [["S", "G", "Z", "R"]], + "creeps": null, + "creeping": null, + "creepers": null, + "creepy": [["P", "R", "S", "T"]], + "creepier": null, + "creepies": null, + "creepiest": null, + "Creigh": [["M"]], + "Creigh's": null, + "Creight": [["M"]], + "Creight's": null, + "Creighton": [["M"]], + "Creighton's": null, + "cremate": [["X", "D", "S", "N", "G"]], + "cremations": null, + "cremated": null, + "cremates": null, + "cremation": [["M"]], + "cremating": null, + "cremation's": null, + "crematoria": null, + "crematorium": [["M", "S"]], + "crematorium's": null, + "crematoriums": null, + "crematory": [["S"]], + "crematories": null, + "creme": [["S"]], + "cremes": null, + "crenelate": [["X", "G", "N", "S", "D"]], + "crenelations": null, + "crenelating": null, + "crenelation": [["M"]], + "crenelates": null, + "crenelated": null, + "crenelation's": null, + "Creole": [["M", "S"]], + "Creole's": null, + "Creoles": null, + "creole": [["S", "M"]], + "creoles": null, + "creole's": null, + "Creon": [["M"]], + "Creon's": null, + "creosote": [["M", "G", "D", "S"]], + "creosote's": null, + "creosoting": null, + "creosoted": null, + "creosotes": null, + "crepe": [["D", "S", "G", "M"]], + "creped": null, + "crepes": null, + "creping": null, + "crepe's": null, + "crept": null, + "crescendoed": null, + "crescendoing": null, + "crescendo": [["S", "C", "M"]], + "crescendos": null, + "decrescendos": null, + "decrescendo": null, + "decrescendo's": null, + "crescendo's": null, + "crescent": [["M", "S"]], + "crescent's": null, + "crescents": null, + "cress": [["S"]], + "cresses": null, + "crestfallenness": [["M"]], + "crestfallenness's": null, + "crestfallen": [["P", "Y"]], + "crestfallenly": null, + "cresting": [["M"]], + "cresting's": null, + "crestless": null, + "crest": [["S", "G", "M", "D"]], + "crests": null, + "crest's": null, + "crested": null, + "Crestview": [["M"]], + "Crestview's": null, + "cretaceous": null, + "Cretaceously": [["M"]], + "Cretaceously's": null, + "Cretaceous": [["Y"]], + "Cretan": [["S"]], + "Cretans": null, + "Crete": [["M"]], + "Crete's": null, + "cretinism": [["M", "S"]], + "cretinism's": null, + "cretinisms": null, + "cretin": [["M", "S"]], + "cretin's": null, + "cretins": null, + "cretinous": null, + "cretonne": [["S", "M"]], + "cretonnes": null, + "cretonne's": null, + "crevasse": [["D", "S", "M", "G"]], + "crevassed": null, + "crevasses": null, + "crevasse's": null, + "crevassing": null, + "crevice": [["S", "M"]], + "crevices": null, + "crevice's": null, + "crew": [["D", "M", "G", "S"]], + "crewed": null, + "crew's": null, + "crewing": null, + "crews": null, + "crewel": [["S", "M"]], + "crewels": null, + "crewel's": null, + "crewelwork": [["S", "M"]], + "crewelworks": null, + "crewelwork's": null, + "crewman": [["M"]], + "crewman's": null, + "crewmen": null, + "cribbage": [["S", "M"]], + "cribbages": null, + "cribbage's": null, + "cribbed": null, + "cribber": [["S", "M"]], + "cribbers": null, + "cribber's": null, + "cribbing": [["M"]], + "cribbing's": null, + "crib": [["S", "M"]], + "cribs": null, + "crib's": null, + "Crichton": [["M"]], + "Crichton's": null, + "cricketer": [["M"]], + "cricketer's": null, + "cricket": [["S", "M", "Z", "R", "D", "G"]], + "crickets": null, + "cricket's": null, + "cricketers": null, + "cricketed": null, + "cricketing": null, + "crick": [["G", "D", "S", "M"]], + "cricking": null, + "cricked": null, + "cricks": null, + "crick's": null, + "Crick": [["M"]], + "Crick's": null, + "cried": [["C"]], + "decried": null, + "crier": [["C", "M"]], + "decrier": null, + "decrier's": null, + "crier's": null, + "cries": [["C"]], + "decries": null, + "Crimea": [["M"]], + "Crimea's": null, + "Crimean": null, + "crime": [["G", "M", "D", "S"]], + "criming": null, + "crime's": null, + "crimed": null, + "crimes": null, + "criminality": [["M", "S"]], + "criminality's": null, + "criminalities": null, + "criminalization": [["C"]], + "decriminalization": [["S"]], + "criminalize": [["G", "C"]], + "criminalizing": null, + "decriminalizing": null, + "decriminalize": [["D", "S"]], + "criminal": [["S", "Y", "M"]], + "criminals": null, + "criminally": null, + "criminal's": null, + "criminologist": [["S", "M"]], + "criminologists": null, + "criminologist's": null, + "criminology": [["M", "S"]], + "criminology's": null, + "criminologies": null, + "crimper": [["M"]], + "crimper's": null, + "crimp": [["R", "D", "G", "S"]], + "crimped": null, + "crimping": null, + "crimps": null, + "crimson": [["D", "M", "S", "G"]], + "crimsoned": null, + "crimson's": null, + "crimsons": null, + "crimsoning": null, + "cringer": [["M"]], + "cringer's": null, + "cringe": [["S", "R", "D", "G"]], + "cringes": null, + "cringed": null, + "cringing": null, + "crinkle": [["D", "S", "G"]], + "crinkled": null, + "crinkles": null, + "crinkling": null, + "crinkly": [["T", "R", "S"]], + "crinkliest": null, + "crinklier": null, + "crinklies": null, + "Crin": [["M"]], + "Crin's": null, + "crinoline": [["S", "M"]], + "crinolines": null, + "crinoline's": null, + "cripple": [["G", "M", "Z", "D", "R", "S"]], + "crippling": [["Y"]], + "cripple's": null, + "cripplers": null, + "crippled": null, + "crippler": [["M"]], + "cripples": null, + "crippler's": null, + "cripplingly": null, + "Crisco": [["M"]], + "Crisco's": null, + "crises": null, + "crisis": [["M"]], + "crisis's": null, + "Cris": [["M"]], + "Cris's": null, + "crisper": [["M"]], + "crisper's": null, + "crispiness": [["S", "M"]], + "crispinesses": null, + "crispiness's": null, + "crispness": [["M", "S"]], + "crispness's": null, + "crispnesses": null, + "crisp": [["P", "G", "T", "Y", "R", "D", "S"]], + "crisping": null, + "crispest": null, + "crisply": null, + "crisped": null, + "crisps": null, + "crispy": [["R", "P", "T"]], + "crispier": null, + "crispiest": null, + "criss": null, + "crisscross": [["G", "D", "S"]], + "crisscrossing": null, + "crisscrossed": null, + "crisscrosses": null, + "Crissie": [["M"]], + "Crissie's": null, + "Crissy": [["M"]], + "Crissy's": null, + "Cristabel": [["M"]], + "Cristabel's": null, + "Cristal": [["M"]], + "Cristal's": null, + "Crista": [["M"]], + "Crista's": null, + "Cristen": [["M"]], + "Cristen's": null, + "Cristian": [["M"]], + "Cristian's": null, + "Cristiano": [["M"]], + "Cristiano's": null, + "Cristie": [["M"]], + "Cristie's": null, + "Cristi": [["M"]], + "Cristi's": null, + "Cristina": [["M"]], + "Cristina's": null, + "Cristine": [["M"]], + "Cristine's": null, + "Cristin": [["M"]], + "Cristin's": null, + "Cristionna": [["M"]], + "Cristionna's": null, + "Cristobal": [["M"]], + "Cristobal's": null, + "Cristy": [["M"]], + "Cristy's": null, + "criteria": null, + "criterion": [["M"]], + "criterion's": null, + "criticality": null, + "critically": [["U"]], + "uncritically": null, + "criticalness": [["M"]], + "criticalness's": null, + "critical": [["Y", "P"]], + "criticism": [["M", "S"]], + "criticism's": null, + "criticisms": null, + "criticized": [["U"]], + "uncriticized": null, + "criticize": [["G", "S", "R", "D", "Z"]], + "criticizing": [["U", "Y"]], + "criticizes": [["A"]], + "criticizer": [["M"]], + "criticizers": null, + "criticizer's": null, + "recriticizes": null, + "criticizingly": [["S"]], + "criticizinglies": null, + "uncriticizing": null, + "uncriticizingly": null, + "critic": [["M", "S"]], + "critic's": null, + "critics": null, + "critique": [["M", "G", "S", "D"]], + "critique's": null, + "critiquing": null, + "critiques": null, + "critiqued": null, + "critter": [["S", "M"]], + "critters": null, + "critter's": null, + "Cr": [["M"]], + "Cr's": null, + "croaker": [["M"]], + "croaker's": null, + "croak": [["S", "R", "D", "G", "Z"]], + "croaks": null, + "croaked": null, + "croaking": null, + "croakers": null, + "croaky": [["R", "T"]], + "croakier": null, + "croakiest": null, + "Croatia": [["M"]], + "Croatia's": null, + "Croatian": [["S"]], + "Croatians": null, + "Croat": [["S", "M"]], + "Croats": null, + "Croat's": null, + "Croce": [["M"]], + "Croce's": null, + "crocheter": [["M"]], + "crocheter's": null, + "crochet": [["R", "D", "S", "Z", "J", "G"]], + "crocheted": null, + "crochets": null, + "crocheters": null, + "crochetings": null, + "crocheting": null, + "crockery": [["S", "M"]], + "crockeries": null, + "crockery's": null, + "Crockett": [["M"]], + "Crockett's": null, + "Crockpot": [["M"]], + "Crockpot's": null, + "crock": [["S", "G", "R", "D", "M"]], + "crocks": null, + "crocking": null, + "crocker": null, + "crocked": null, + "crock's": null, + "crocodile": [["M", "S"]], + "crocodile's": null, + "crocodiles": null, + "crocus": [["S", "M"]], + "crocuses": null, + "crocus's": null, + "Croesus": [["S", "M"]], + "Croesuses": null, + "Croesus's": null, + "crofter": [["M"]], + "crofter's": null, + "croft": [["M", "R", "G", "Z", "S"]], + "croft's": null, + "crofting": null, + "crofters": null, + "crofts": null, + "croissant": [["M", "S"]], + "croissant's": null, + "croissants": null, + "Croix": [["M"]], + "Croix's": null, + "Cromwellian": null, + "Cromwell": [["M"]], + "Cromwell's": null, + "crone": [["S", "M"]], + "crones": null, + "crone's": null, + "Cronin": [["M"]], + "Cronin's": null, + "Cronkite": [["M"]], + "Cronkite's": null, + "Cronus": [["M"]], + "Cronus's": null, + "crony": [["S", "M"]], + "cronies": null, + "crony's": null, + "crookedness": [["S", "M"]], + "crookednesses": null, + "crookedness's": null, + "crooked": [["T", "P", "R", "Y"]], + "crookedest": null, + "crookeder": null, + "crookedly": null, + "Crookes": [["M"]], + "Crookes's": null, + "crookneck": [["M", "S"]], + "crookneck's": null, + "crooknecks": null, + "crook": [["S", "G", "D", "M"]], + "crooks": null, + "crooking": null, + "crook's": null, + "crooner": [["M"]], + "crooner's": null, + "croon": [["S", "R", "D", "G", "Z"]], + "croons": null, + "crooned": null, + "crooning": null, + "crooners": null, + "cropland": [["M", "S"]], + "cropland's": null, + "croplands": null, + "crop": [["M", "S"]], + "crop's": null, + "crops": null, + "cropped": null, + "cropper": [["S", "M"]], + "croppers": null, + "cropper's": null, + "cropping": null, + "croquet": [["M", "D", "S", "G"]], + "croquet's": null, + "croqueted": null, + "croquets": null, + "croqueting": null, + "croquette": [["S", "M"]], + "croquettes": null, + "croquette's": null, + "Crosby": [["M"]], + "Crosby's": null, + "crosier": [["S", "M"]], + "crosiers": null, + "crosier's": null, + "crossarm": null, + "crossbarred": null, + "crossbarring": null, + "crossbar": [["S", "M"]], + "crossbars": null, + "crossbar's": null, + "crossbeam": [["M", "S"]], + "crossbeam's": null, + "crossbeams": null, + "crossbones": null, + "crossbowman": [["M"]], + "crossbowman's": null, + "crossbowmen": null, + "crossbow": [["S", "M"]], + "crossbows": null, + "crossbow's": null, + "crossbred": [["S"]], + "crossbreds": null, + "crossbreed": [["S", "G"]], + "crossbreeds": null, + "crossbreeding": null, + "crosscheck": [["S", "G", "D"]], + "crosschecks": null, + "crosschecking": null, + "crosschecked": null, + "crosscurrent": [["S", "M"]], + "crosscurrents": null, + "crosscurrent's": null, + "crosscut": [["S", "M"]], + "crosscuts": null, + "crosscut's": null, + "crosscutting": null, + "crossed": [["U", "A"]], + "uncrossed": null, + "recrossed": null, + "crosses": [["U", "A"]], + "uncrosses": null, + "recrosses": null, + "crossfire": [["S", "M"]], + "crossfires": null, + "crossfire's": null, + "crosshatch": [["G", "D", "S"]], + "crosshatching": null, + "crosshatched": null, + "crosshatches": null, + "crossing": [["M"]], + "crossing's": null, + "Cross": [["M"]], + "Cross's": null, + "crossness": [["M", "S"]], + "crossness's": null, + "crossnesses": null, + "crossover": [["M", "S"]], + "crossover's": null, + "crossovers": null, + "crosspatch": [["M", "S"]], + "crosspatch's": null, + "crosspatches": null, + "crosspiece": [["S", "M"]], + "crosspieces": null, + "crosspiece's": null, + "crosspoint": null, + "crossproduct": [["S"]], + "crossproducts": null, + "crossroad": [["G", "S", "M"]], + "crossroading": null, + "crossroads": [["M"]], + "crossroad's": null, + "crossroads's": null, + "crosstalk": [["M"]], + "crosstalk's": null, + "crosstown": null, + "crosswalk": [["M", "S"]], + "crosswalk's": null, + "crosswalks": null, + "crossway": [["M"]], + "crossway's": null, + "crosswind": [["S", "M"]], + "crosswinds": null, + "crosswind's": null, + "crosswise": null, + "crossword": [["M", "S"]], + "crossword's": null, + "crosswords": null, + "cross": [["Z", "T", "Y", "S", "R", "D", "M", "P", "B", "J", "G"]], + "crossers": null, + "crossest": null, + "crossly": null, + "crosser": null, + "cross's": null, + "crossable": null, + "crossings": null, + "crotchetiness": [["M"]], + "crotchetiness's": null, + "crotchet": [["M", "S"]], + "crotchet's": null, + "crotchets": null, + "crotchety": [["P"]], + "crotchless": null, + "crotch": [["M", "D", "S"]], + "crotch's": null, + "crotched": null, + "crotches": null, + "crouch": [["D", "S", "G"]], + "crouched": null, + "crouches": null, + "crouching": null, + "croupier": [["M"]], + "croupier's": null, + "croup": [["S", "M", "D", "G"]], + "croups": null, + "croup's": null, + "crouped": null, + "crouping": null, + "croupy": [["T", "Z", "R"]], + "croupiest": null, + "croupiers": null, + "cro�ton": [["M", "S"]], + "cro�ton's": null, + "cro�tons": null, + "crowbait": null, + "crowbarred": null, + "crowbarring": null, + "crowbar": [["S", "M"]], + "crowbars": null, + "crowbar's": null, + "crowdedness": [["M"]], + "crowdedness's": null, + "crowded": [["P"]], + "crowd": [["M", "R", "D", "S", "G"]], + "crowd's": null, + "crowder": null, + "crowds": null, + "crowding": null, + "crowfeet": null, + "crowfoot": [["M"]], + "crowfoot's": null, + "crow": [["G", "D", "M", "S"]], + "crowing": null, + "crowed": null, + "crow's": null, + "crows": null, + "Crowley": [["M"]], + "Crowley's": null, + "crowned": [["U"]], + "uncrowned": null, + "crowner": [["M"]], + "crowner's": null, + "crown": [["R", "D", "M", "S", "J", "G"]], + "crown's": null, + "crowns": null, + "crownings": null, + "crowning": null, + "crozier's": null, + "CRT": [["S"]], + "CRTs": null, + "crucial": [["Y"]], + "crucially": null, + "crucible": [["M", "S"]], + "crucible's": null, + "crucibles": null, + "crucifiable": null, + "crucifixion": [["M", "S"]], + "crucifixion's": null, + "crucifixions": null, + "Crucifixion": [["M", "S"]], + "Crucifixion's": null, + "Crucifixions": null, + "crucifix": [["S", "M"]], + "crucifixes": null, + "crucifix's": null, + "cruciform": [["S"]], + "cruciforms": null, + "crucify": [["N", "G", "D", "S"]], + "crucification": null, + "crucifying": null, + "crucified": null, + "crucifies": null, + "crudded": null, + "crudding": null, + "cruddy": [["T", "R"]], + "cruddiest": null, + "cruddier": null, + "crudeness": [["M", "S"]], + "crudeness's": null, + "crudenesses": null, + "crude": [["Y", "S", "P"]], + "crudely": null, + "crudes": null, + "crudit�s": null, + "crudity": [["M", "S"]], + "crudity's": null, + "crudities": null, + "crud": [["S", "T", "M", "R"]], + "cruds": null, + "crudest": null, + "crud's": null, + "cruder": null, + "cruelness": [["M", "S"]], + "cruelness's": null, + "cruelnesses": null, + "cruelty": [["S", "M"]], + "cruelties": null, + "cruelty's": null, + "cruel": [["Y", "R", "T", "S", "P"]], + "cruelly": null, + "crueler": null, + "cruelest": null, + "cruels": null, + "cruet": [["M", "S"]], + "cruet's": null, + "cruets": null, + "cruft": null, + "crufty": null, + "Cruikshank": [["M"]], + "Cruikshank's": null, + "cruise": [["G", "Z", "S", "R", "D"]], + "cruising": null, + "cruisers": null, + "cruises": null, + "cruiser": [["M"]], + "cruised": null, + "cruiser's": null, + "cruller": [["S", "M"]], + "crullers": null, + "cruller's": null, + "crumb": [["G", "S", "Y", "D", "M"]], + "crumbing": null, + "crumbs": null, + "crumbly": [["P", "T", "R", "S"]], + "crumbed": null, + "crumb's": null, + "crumble": [["D", "S", "J", "G"]], + "crumbled": null, + "crumbles": null, + "crumblings": null, + "crumbling": null, + "crumbliness": [["M", "S"]], + "crumbliness's": null, + "crumblinesses": null, + "crumbliest": null, + "crumblier": null, + "crumblies": null, + "crumby": [["R", "T"]], + "crumbier": null, + "crumbiest": null, + "crumminess": [["S"]], + "crumminesses": null, + "crummy": [["S", "R", "T", "P"]], + "crummies": null, + "crummier": null, + "crummiest": null, + "crump": null, + "crumpet": [["S", "M"]], + "crumpets": null, + "crumpet's": null, + "crumple": [["D", "S", "G"]], + "crumpled": null, + "crumples": null, + "crumpling": null, + "crunch": [["D", "S", "R", "G", "Z"]], + "crunched": null, + "crunches": null, + "cruncher": null, + "crunching": null, + "crunchers": null, + "crunchiness": [["M", "S"]], + "crunchiness's": null, + "crunchinesses": null, + "crunchy": [["T", "R", "P"]], + "crunchiest": null, + "crunchier": null, + "crupper": [["M", "S"]], + "crupper's": null, + "cruppers": null, + "crusade": [["G", "D", "S", "R", "M", "Z"]], + "crusading": null, + "crusaded": null, + "crusades": null, + "crusader": [["M"]], + "crusade's": null, + "crusaders": null, + "crusader's": null, + "cruse": [["M", "S"]], + "cruse's": null, + "cruses": null, + "crushable": [["U"]], + "uncrushable": null, + "crusher": [["M"]], + "crusher's": null, + "crushing": [["Y"]], + "crushingly": null, + "crushproof": null, + "crush": [["S", "R", "D", "B", "G", "Z"]], + "crushes": null, + "crushed": null, + "crushers": null, + "Crusoe": [["M"]], + "Crusoe's": null, + "crustacean": [["M", "S"]], + "crustacean's": null, + "crustaceans": null, + "crustal": null, + "crust": [["G", "M", "D", "S"]], + "crusting": null, + "crust's": null, + "crusted": null, + "crusts": null, + "crustily": null, + "crustiness": [["S", "M"]], + "crustinesses": null, + "crustiness's": null, + "crusty": [["S", "R", "T", "P"]], + "crusties": null, + "crustier": null, + "crustiest": null, + "crutch": [["M", "D", "S", "G"]], + "crutch's": null, + "crutched": null, + "crutches": null, + "crutching": null, + "Crux": [["M"]], + "Crux's": null, + "crux": [["M", "S"]], + "crux's": null, + "cruxes": null, + "Cruz": [["M"]], + "Cruz's": null, + "crybaby": [["M", "S"]], + "crybaby's": null, + "crybabies": null, + "cry": [["J", "G", "D", "R", "S", "Z"]], + "cryings": null, + "crying": null, + "criers": null, + "cryogenic": [["S"]], + "cryogenics": [["M"]], + "cryogenics's": null, + "cryostat": [["M"]], + "cryostat's": null, + "cryosurgery": [["S", "M"]], + "cryosurgeries": null, + "cryosurgery's": null, + "cryptanalysis": [["M"]], + "cryptanalysis's": null, + "cryptanalyst": [["M"]], + "cryptanalyst's": null, + "cryptanalytic": null, + "crypt": [["C", "S"]], + "decrypt": [["G", "D"]], + "decrypts": null, + "crypts": null, + "cryptic": null, + "cryptically": null, + "cryptogram": [["M", "S"]], + "cryptogram's": null, + "cryptograms": null, + "cryptographer": [["M", "S"]], + "cryptographer's": null, + "cryptographers": null, + "cryptographic": null, + "cryptographically": null, + "cryptography": [["M", "S"]], + "cryptography's": null, + "cryptographies": null, + "cryptologic": null, + "cryptological": null, + "cryptologist": [["M"]], + "cryptologist's": null, + "cryptology": [["M"]], + "cryptology's": null, + "Cryptozoic": [["M"]], + "Cryptozoic's": null, + "crypt's": null, + "crystalline": [["S"]], + "crystallines": null, + "crystallite": [["S", "M"]], + "crystallites": null, + "crystallite's": null, + "crystallization": [["A", "M", "S"]], + "recrystallization": null, + "recrystallization's": null, + "recrystallizations": null, + "crystallization's": null, + "crystallizations": null, + "crystallized": [["U", "A"]], + "uncrystallized": null, + "recrystallized": null, + "crystallizes": [["A"]], + "recrystallizes": null, + "crystallize": [["S", "R", "D", "Z", "G"]], + "crystallizer": null, + "crystallizers": null, + "crystallizing": [["A"]], + "recrystallizing": null, + "crystallographer": [["M", "S"]], + "crystallographer's": null, + "crystallographers": null, + "crystallographic": null, + "crystallography": [["M"]], + "crystallography's": null, + "Crystal": [["M"]], + "Crystal's": null, + "crystal": [["S", "M"]], + "crystals": null, + "crystal's": null, + "Crysta": [["M"]], + "Crysta's": null, + "Crystie": [["M"]], + "Crystie's": null, + "Cs": null, + "C's": null, + "cs": [["E", "A"]], + "discs": null, + "recs": null, + "cs's": null, + "CST": null, + "ct": null, + "CT": null, + "Cthrine": [["M"]], + "Cthrine's": null, + "Ct": [["M"]], + "Ct's": null, + "ctn": null, + "ctr": null, + "Cuba": [["M"]], + "Cuba's": null, + "Cuban": [["S"]], + "Cubans": null, + "cubbed": null, + "cubbing": null, + "cubbyhole": [["M", "S"]], + "cubbyhole's": null, + "cubbyholes": null, + "cuber": [["M"]], + "cuber's": null, + "cube": [["S", "M"]], + "cubes": null, + "cube's": null, + "cubical": [["Y"]], + "cubically": null, + "cubicle": [["S", "M"]], + "cubicles": null, + "cubicle's": null, + "cubic": [["Y", "S"]], + "cubicly": null, + "cubics": null, + "cubism": [["S", "M"]], + "cubisms": null, + "cubism's": null, + "cubist": [["M", "S"]], + "cubist's": null, + "cubists": null, + "cubit": [["M", "S"]], + "cubit's": null, + "cubits": null, + "cub": [["M", "D", "R", "S", "Z", "G"]], + "cub's": null, + "cubed": null, + "cubs": null, + "cubers": null, + "cubing": null, + "cuboid": null, + "Cuchulain": [["M"]], + "Cuchulain's": null, + "cuckold": [["G", "S", "D", "M"]], + "cuckolding": null, + "cuckolds": null, + "cuckolded": null, + "cuckold's": null, + "cuckoldry": [["M", "S"]], + "cuckoldry's": null, + "cuckoldries": null, + "cuckoo": [["S", "G", "D", "M"]], + "cuckoos": null, + "cuckooing": null, + "cuckooed": null, + "cuckoo's": null, + "cucumber": [["M", "S"]], + "cucumber's": null, + "cucumbers": null, + "cuddle": [["G", "S", "D"]], + "cuddling": null, + "cuddles": null, + "cuddled": null, + "cuddly": [["T", "R", "P"]], + "cuddliest": null, + "cuddlier": null, + "cuddliness": null, + "cu": [["D", "G"]], + "cued": null, + "cuing": null, + "cudgel": [["G", "S", "J", "M", "D"]], + "cudgeling": null, + "cudgels": null, + "cudgelings": null, + "cudgel's": null, + "cudgeled": null, + "cud": [["M", "S"]], + "cud's": null, + "cuds": null, + "cue": [["M", "S"]], + "cue's": null, + "cues": null, + "cuff": [["G", "S", "D", "M"]], + "cuffing": null, + "cuffs": null, + "cuffed": null, + "cuff's": null, + "Cuisinart": [["M"]], + "Cuisinart's": null, + "cuisine": [["M", "S"]], + "cuisine's": null, + "cuisines": null, + "Culbertson": [["M"]], + "Culbertson's": null, + "culinary": null, + "Cullan": [["M"]], + "Cullan's": null, + "cull": [["D", "R", "G", "S"]], + "culled": null, + "culler": [["M"]], + "culling": null, + "culls": null, + "cullender's": null, + "Cullen": [["M"]], + "Cullen's": null, + "culler's": null, + "Culley": [["M"]], + "Culley's": null, + "Cullie": [["M"]], + "Cullie's": null, + "Cullin": [["M"]], + "Cullin's": null, + "Cull": [["M", "N"]], + "Cull's": null, + "Cully": [["M"]], + "Cully's": null, + "culminate": [["X", "S", "D", "G", "N"]], + "culminations": null, + "culminates": null, + "culminated": null, + "culminating": null, + "culmination": [["M"]], + "culmination's": null, + "culotte": [["S"]], + "culottes": null, + "culpability": [["M", "S"]], + "culpability's": null, + "culpabilities": null, + "culpable": [["I"]], + "inculpable": null, + "culpableness": [["M"]], + "culpableness's": null, + "culpably": null, + "culpa": [["S", "M"]], + "culpas": null, + "culpa's": null, + "culprit": [["S", "M"]], + "culprits": null, + "culprit's": null, + "cultism": [["S", "M"]], + "cultisms": null, + "cultism's": null, + "cultist": [["S", "M"]], + "cultists": null, + "cultist's": null, + "cultivable": null, + "cultivated": [["U"]], + "uncultivated": null, + "cultivate": [["X", "B", "S", "D", "G", "N"]], + "cultivations": null, + "cultivatable": null, + "cultivates": null, + "cultivating": null, + "cultivation": [["M"]], + "cultivation's": null, + "cultivator": [["S", "M"]], + "cultivators": null, + "cultivator's": null, + "cult": [["M", "S"]], + "cult's": null, + "cults": null, + "cultural": [["Y"]], + "culturally": null, + "cultured": [["U"]], + "uncultured": null, + "culture": [["S", "D", "G", "M"]], + "cultures": null, + "culturing": null, + "culture's": null, + "Culver": [["M", "S"]], + "Culver's": null, + "Culvers": null, + "culvert": [["S", "M"]], + "culverts": null, + "culvert's": null, + "Cu": [["M"]], + "Cu's": null, + "cumber": [["D", "S", "G"]], + "cumbered": null, + "cumbers": null, + "cumbering": null, + "Cumberland": [["M"]], + "Cumberland's": null, + "cumbersomeness": [["M", "S"]], + "cumbersomeness's": null, + "cumbersomenesses": null, + "cumbersome": [["Y", "P"]], + "cumbersomely": null, + "cumbrous": null, + "cumin": [["M", "S"]], + "cumin's": null, + "cumins": null, + "cummerbund": [["M", "S"]], + "cummerbund's": null, + "cummerbunds": null, + "Cummings": null, + "cumquat's": null, + "cum": [["S"]], + "cums": null, + "cumulate": [["X", "V", "N", "G", "S", "D"]], + "cumulations": null, + "cumulative": [["Y"]], + "cumulation": [["M"]], + "cumulating": null, + "cumulates": null, + "cumulated": null, + "cumulation's": null, + "cumulatively": null, + "cumuli": null, + "cumulonimbi": null, + "cumulonimbus": [["M"]], + "cumulonimbus's": null, + "cumulus": [["M"]], + "cumulus's": null, + "Cunard": [["M"]], + "Cunard's": null, + "cuneiform": [["S"]], + "cuneiforms": null, + "cunnilingus": [["S", "M"]], + "cunnilinguses": null, + "cunnilingus's": null, + "Cunningham": [["M"]], + "Cunningham's": null, + "cunningness": [["M"]], + "cunningness's": null, + "cunning": [["R", "Y", "S", "P", "T"]], + "cunninger": null, + "cunningly": null, + "cunnings": null, + "cunningest": null, + "cunt": [["S", "M", "!"]], + "cunts": null, + "cunt's": null, + "cupboard": [["S", "M"]], + "cupboards": null, + "cupboard's": null, + "cupcake": [["S", "M"]], + "cupcakes": null, + "cupcake's": null, + "Cupertino": [["M"]], + "Cupertino's": null, + "cupful": [["S", "M"]], + "cupfuls": null, + "cupful's": null, + "cupidinously": null, + "cupidity": [["M", "S"]], + "cupidity's": null, + "cupidities": null, + "Cupid": [["M"]], + "Cupid's": null, + "cupid": [["S"]], + "cupids": null, + "cup": [["M", "S"]], + "cup's": null, + "cups": null, + "cupola": [["M", "D", "G", "S"]], + "cupola's": null, + "cupolaed": null, + "cupolaing": null, + "cupolas": null, + "cupped": null, + "cupping": [["M"]], + "cupping's": null, + "cupric": null, + "cuprous": null, + "curability": [["M", "S"]], + "curability's": null, + "curabilities": null, + "curable": [["I", "P"]], + "incurable": [["S"]], + "incurableness": null, + "curableness": [["M", "I"]], + "curableness's": null, + "incurableness's": null, + "curably": [["I"]], + "incurably": null, + "Curacao": [["M"]], + "Curacao's": null, + "curacy": [["S", "M"]], + "curacies": null, + "curacy's": null, + "curare": [["M", "S"]], + "curare's": null, + "curares": null, + "curate": [["V", "G", "M", "S", "D"]], + "curative": [["Y", "S"]], + "curating": null, + "curate's": null, + "curates": null, + "curated": null, + "curatively": null, + "curatives": null, + "curatorial": null, + "curator": [["K", "M", "S"]], + "procurator": null, + "procurator's": null, + "procurators": null, + "curator's": null, + "curators": null, + "curbing": [["M"]], + "curbing's": null, + "curbside": null, + "curb": [["S", "J", "D", "M", "G"]], + "curbs": null, + "curbings": null, + "curbed": null, + "curb's": null, + "curbstone": [["M", "S"]], + "curbstone's": null, + "curbstones": null, + "Curcio": [["M"]], + "Curcio's": null, + "curdle": [["S", "D", "G"]], + "curdles": null, + "curdled": null, + "curdling": null, + "curd": [["S", "M", "D", "G"]], + "curds": null, + "curd's": null, + "curded": null, + "curding": null, + "cured": [["U"]], + "uncured": null, + "cure": [["K", "B", "D", "R", "S", "G", "Z"]], + "procure": [["L"]], + "procurable": [["U"]], + "procured": null, + "procurer": null, + "procures": null, + "procuring": null, + "procurers": null, + "curer": [["M", "K"]], + "cures": null, + "curing": null, + "curers": null, + "curer's": null, + "procurer's": null, + "curettage": [["S", "M"]], + "curettages": null, + "curettage's": null, + "curfew": [["S", "M"]], + "curfews": null, + "curfew's": null, + "curfs": null, + "curiae": null, + "curia": [["M"]], + "curia's": null, + "cur": [["I", "B", "S"]], + "incur": null, + "incurs": null, + "curs": [["A", "S", "D", "V", "G"]], + "Curie": [["M"]], + "Curie's": null, + "curie": [["S", "M"]], + "curies": null, + "curie's": null, + "curiosity": [["S", "M"]], + "curiosities": null, + "curiosity's": null, + "curio": [["S", "M"]], + "curios": null, + "curio's": null, + "curiousness": [["S", "M"]], + "curiousnesses": null, + "curiousness's": null, + "curious": [["T", "P", "R", "Y"]], + "curiousest": null, + "curiouser": null, + "curiously": null, + "Curitiba": [["M"]], + "Curitiba's": null, + "curium": [["M", "S"]], + "curium's": null, + "curiums": null, + "curler": [["S", "M"]], + "curlers": null, + "curler's": null, + "curlew": [["M", "S"]], + "curlew's": null, + "curlews": null, + "curlicue": [["M", "G", "D", "S"]], + "curlicue's": null, + "curlicuing": null, + "curlicued": null, + "curlicues": null, + "curliness": [["S", "M"]], + "curlinesses": null, + "curliness's": null, + "curling": [["M"]], + "curling's": null, + "curl": [["U", "D", "S", "G"]], + "uncurl": null, + "uncurled": null, + "uncurls": null, + "uncurling": null, + "curled": null, + "curls": null, + "curlycue's": null, + "curly": [["P", "R", "T"]], + "curlier": null, + "curliest": null, + "curmudgeon": [["M", "Y", "S"]], + "curmudgeon's": null, + "curmudgeonly": null, + "curmudgeons": null, + "Curran": [["M"]], + "Curran's": null, + "currant": [["S", "M"]], + "currants": null, + "currant's": null, + "curred": [["A", "F", "I"]], + "recurred": null, + "concurred": null, + "incurred": null, + "currency's": null, + "currency": [["S", "F"]], + "currencies": null, + "concurrencies": null, + "concurrency": null, + "current": [["F", "S", "Y"]], + "concurrent": null, + "concurrents": null, + "concurrently": null, + "currents": null, + "currently": [["A"]], + "recurrently": null, + "currentness": [["M"]], + "currentness's": null, + "Currey": [["M"]], + "Currey's": null, + "curricle": [["M"]], + "curricle's": null, + "curricula": null, + "curricular": null, + "curriculum": [["M"]], + "curriculum's": null, + "Currie": [["M"]], + "Currie's": null, + "currier": [["M"]], + "currier's": null, + "Currier": [["M"]], + "Currier's": null, + "curring": [["F", "A", "I"]], + "concurring": null, + "recurring": null, + "incurring": null, + "Curr": [["M"]], + "Curr's": null, + "currycomb": [["D", "M", "G", "S"]], + "currycombed": null, + "currycomb's": null, + "currycombing": null, + "currycombs": null, + "Curry": [["M", "R"]], + "Curry's": null, + "curry": [["R", "S", "D", "M", "G"]], + "curries": null, + "curried": null, + "curry's": null, + "currying": null, + "cur's": null, + "recurs": null, + "recurses": null, + "recursed": null, + "recursing": null, + "curses": null, + "cursed": [["Y", "R", "P", "T"]], + "cursive": [["E", "P", "Y", "A"]], + "cursing": null, + "curse": [["A"]], + "recurse": [["N", "X"]], + "cursedness": [["M"]], + "cursedness's": null, + "cursedly": null, + "curseder": null, + "cursedest": null, + "curse's": null, + "discursive": null, + "discursiveness": [["S"]], + "discursively": null, + "cursiveness": [["E", "M"]], + "recursiveness": null, + "cursively": null, + "recursively": null, + "recursive": null, + "discursiveness's": null, + "cursiveness's": null, + "cursives": null, + "cursor": [["D", "M", "S", "G"]], + "cursored": null, + "cursor's": null, + "cursors": null, + "cursoring": null, + "cursorily": null, + "cursoriness": [["S", "M"]], + "cursorinesses": null, + "cursoriness's": null, + "cursory": [["P"]], + "curtailer": [["M"]], + "curtailer's": null, + "curtail": [["L", "S", "G", "D", "R"]], + "curtailment": [["S", "M"]], + "curtails": null, + "curtailing": null, + "curtailed": null, + "curtailments": null, + "curtailment's": null, + "curtain": [["G", "S", "M", "D"]], + "curtaining": null, + "curtains": null, + "curtain's": null, + "curtained": null, + "Curtice": [["M"]], + "Curtice's": null, + "Curtis": [["M"]], + "Curtis's": null, + "Curt": [["M"]], + "Curt's": null, + "curtness": [["M", "S"]], + "curtness's": null, + "curtnesses": null, + "curtsey's": null, + "curtsy": [["S", "D", "M", "G"]], + "curtsies": null, + "curtsied": null, + "curtsy's": null, + "curtsying": null, + "curt": [["T", "Y", "R", "P"]], + "curtest": null, + "curtly": null, + "curter": null, + "curvaceousness": [["S"]], + "curvaceousnesses": null, + "curvaceous": [["Y", "P"]], + "curvaceously": null, + "curvature": [["M", "S"]], + "curvature's": null, + "curvatures": null, + "curved": [["A"]], + "recurved": null, + "curved's": null, + "curve": [["D", "S", "G", "M"]], + "curves": null, + "curving": [["M"]], + "curve's": null, + "curvilinearity": [["M"]], + "curvilinearity's": null, + "curvilinear": [["Y"]], + "curvilinearly": null, + "curving's": null, + "curvy": [["R", "T"]], + "curvier": null, + "curviest": null, + "cushion": [["S", "M", "D", "G"]], + "cushions": null, + "cushion's": null, + "cushioned": null, + "cushioning": null, + "Cushman": [["M"]], + "Cushman's": null, + "cushy": [["T", "R"]], + "cushiest": null, + "cushier": null, + "cuspid": [["M", "S"]], + "cuspid's": null, + "cuspids": null, + "cuspidor": [["M", "S"]], + "cuspidor's": null, + "cuspidors": null, + "cusp": [["M", "S"]], + "cusp's": null, + "cusps": null, + "cussedness": [["M"]], + "cussedness's": null, + "cussed": [["Y", "P"]], + "cussedly": null, + "cuss": [["E", "G", "D", "S", "R"]], + "discuss": null, + "discussing": null, + "discussed": [["U", "A"]], + "discusses": null, + "discusser": [["M"]], + "cussing": [["F"]], + "cusses": [["F"]], + "cusser": null, + "concusses": null, + "concussing": null, + "cuss's": null, + "custard": [["M", "S"]], + "custard's": null, + "custards": null, + "Custer": [["M"]], + "Custer's": null, + "custodial": null, + "custodianship": [["M", "S"]], + "custodianship's": null, + "custodianships": null, + "custodian": [["S", "M"]], + "custodians": null, + "custodian's": null, + "custody": [["M", "S"]], + "custody's": null, + "custodies": null, + "customarily": null, + "customariness": [["M"]], + "customariness's": null, + "customary": [["P", "S"]], + "customaries": null, + "customer": [["M"]], + "customer's": null, + "customhouse": [["S"]], + "customhouses": null, + "customization": [["S", "M"]], + "customizations": null, + "customization's": null, + "customize": [["Z", "G", "B", "S", "R", "D"]], + "customizers": null, + "customizing": null, + "customizable": null, + "customizes": null, + "customizer": null, + "customized": null, + "custom": [["S", "M", "R", "Z"]], + "customs": null, + "custom's": null, + "customers": null, + "cutaneous": [["Y"]], + "cutaneously": null, + "cutaway": [["S", "M"]], + "cutaways": null, + "cutaway's": null, + "cutback": [["S", "M"]], + "cutbacks": null, + "cutback's": null, + "cuteness": [["M", "S"]], + "cuteness's": null, + "cutenesses": null, + "cute": [["S", "P", "Y"]], + "cutes": null, + "cutely": null, + "cutesy": [["R", "T"]], + "cutesier": null, + "cutesiest": null, + "cuticle": [["S", "M"]], + "cuticles": null, + "cuticle's": null, + "cutlass": [["M", "S"]], + "cutlass's": null, + "cutlasses": null, + "cutler": [["S", "M"]], + "cutlers": null, + "cutler's": null, + "cutlery": [["M", "S"]], + "cutlery's": null, + "cutleries": null, + "cutlet": [["S", "M"]], + "cutlets": null, + "cutlet's": null, + "cut": [["M", "R", "S", "T"]], + "cut's": null, + "cuter": null, + "cuts": null, + "cutest": null, + "cutoff": [["M", "S"]], + "cutoff's": null, + "cutoffs": null, + "cutout": [["S", "M"]], + "cutouts": null, + "cutout's": null, + "cutter": [["S", "M"]], + "cutters": null, + "cutter's": null, + "cutthroat": [["S", "M"]], + "cutthroats": null, + "cutthroat's": null, + "cutting": [["M", "Y", "S"]], + "cutting's": null, + "cuttingly": null, + "cuttings": null, + "cuttlebone": [["S", "M"]], + "cuttlebones": null, + "cuttlebone's": null, + "cuttlefish": [["M", "S"]], + "cuttlefish's": null, + "cuttlefishes": null, + "cuttle": [["M"]], + "cuttle's": null, + "cutup": [["M", "S"]], + "cutup's": null, + "cutups": null, + "cutworm": [["M", "S"]], + "cutworm's": null, + "cutworms": null, + "Cuvier": [["M"]], + "Cuvier's": null, + "Cuzco": [["M"]], + "Cuzco's": null, + "CV": null, + "cw": null, + "cwt": null, + "Cyanamid": [["M"]], + "Cyanamid's": null, + "cyanate": [["M"]], + "cyanate's": null, + "cyanic": null, + "cyanide": [["G", "M", "S", "D"]], + "cyaniding": null, + "cyanide's": null, + "cyanides": null, + "cyanided": null, + "cyan": [["M", "S"]], + "cyan's": null, + "cyans": null, + "cyanogen": [["M"]], + "cyanogen's": null, + "Cybele": [["M"]], + "Cybele's": null, + "cybernetic": [["S"]], + "cybernetics": [["M"]], + "cybernetics's": null, + "cyberpunk": [["S"]], + "cyberpunks": null, + "cyberspace": [["S"]], + "cyberspaces": null, + "Cybill": [["M"]], + "Cybill's": null, + "Cybil": [["M"]], + "Cybil's": null, + "Cyb": [["M"]], + "Cyb's": null, + "cyborg": [["S"]], + "cyborgs": null, + "Cyclades": null, + "cyclamen": [["M", "S"]], + "cyclamen's": null, + "cyclamens": null, + "cycle": [["A", "S", "D", "G"]], + "recycle": [["B", "Z"]], + "recycles": null, + "recycled": null, + "recycling": null, + "cycles": null, + "cycled": null, + "cycling": [["M"]], + "cycler": null, + "cycle's": null, + "cycleway": [["S"]], + "cycleways": null, + "cyclic": null, + "cyclical": [["S", "Y"]], + "cyclicals": null, + "cyclically": null, + "cycling's": null, + "cyclist": [["M", "S"]], + "cyclist's": null, + "cyclists": null, + "cyclohexanol": null, + "cycloidal": null, + "cycloid": [["S", "M"]], + "cycloids": null, + "cycloid's": null, + "cyclometer": [["M", "S"]], + "cyclometer's": null, + "cyclometers": null, + "cyclone": [["S", "M"]], + "cyclones": null, + "cyclone's": null, + "cyclonic": null, + "cyclopean": null, + "cyclopedia": [["M", "S"]], + "cyclopedia's": null, + "cyclopedias": null, + "cyclopes": null, + "Cyclopes": null, + "cyclops": null, + "Cyclops": [["M"]], + "Cyclops's": null, + "cyclotron": [["M", "S"]], + "cyclotron's": null, + "cyclotrons": null, + "cyder": [["S", "M"]], + "cyders": null, + "cyder's": null, + "cygnet": [["M", "S"]], + "cygnet's": null, + "cygnets": null, + "Cygnus": [["M"]], + "Cygnus's": null, + "cylinder": [["G", "M", "D", "S"]], + "cylindering": null, + "cylinder's": null, + "cylindered": null, + "cylinders": null, + "cylindric": null, + "cylindrical": [["Y"]], + "cylindrically": null, + "Cy": [["M"]], + "Cy's": null, + "cymbalist": [["M", "S"]], + "cymbalist's": null, + "cymbalists": null, + "cymbal": [["S", "M"]], + "cymbals": null, + "cymbal's": null, + "Cymbre": [["M"]], + "Cymbre's": null, + "Cynde": [["M"]], + "Cynde's": null, + "Cyndia": [["M"]], + "Cyndia's": null, + "Cyndie": [["M"]], + "Cyndie's": null, + "Cyndi": [["M"]], + "Cyndi's": null, + "Cyndy": [["M"]], + "Cyndy's": null, + "cynical": [["U", "Y"]], + "uncynical": null, + "uncynically": null, + "cynically": null, + "cynicism": [["M", "S"]], + "cynicism's": null, + "cynicisms": null, + "cynic": [["M", "S"]], + "cynic's": null, + "cynics": null, + "cynosure": [["S", "M"]], + "cynosures": null, + "cynosure's": null, + "Cynthea": [["M"]], + "Cynthea's": null, + "Cynthia": [["M"]], + "Cynthia's": null, + "Cynthie": [["M"]], + "Cynthie's": null, + "Cynthy": [["M"]], + "Cynthy's": null, + "cypher": [["M", "G", "S", "D"]], + "cypher's": null, + "cyphering": null, + "cyphers": null, + "cyphered": null, + "cypreses": null, + "cypress": [["S", "M"]], + "cypresses": null, + "cypress's": null, + "Cyprian": null, + "Cypriot": [["S", "M"]], + "Cypriots": null, + "Cypriot's": null, + "Cyprus": [["M"]], + "Cyprus's": null, + "Cyrano": [["M"]], + "Cyrano's": null, + "Cyrille": [["M"]], + "Cyrille's": null, + "Cyrillic": null, + "Cyrill": [["M"]], + "Cyrill's": null, + "Cyrillus": [["M"]], + "Cyrillus's": null, + "Cyril": [["M"]], + "Cyril's": null, + "Cyrus": [["M"]], + "Cyrus's": null, + "cystic": null, + "cyst": [["M", "S"]], + "cyst's": null, + "cysts": null, + "cytochemistry": [["M"]], + "cytochemistry's": null, + "cytochrome": [["M"]], + "cytochrome's": null, + "cytologist": [["M", "S"]], + "cytologist's": null, + "cytologists": null, + "cytology": [["M", "S"]], + "cytology's": null, + "cytologies": null, + "cytolysis": [["M"]], + "cytolysis's": null, + "cytoplasmic": null, + "cytoplasm": [["S", "M"]], + "cytoplasms": null, + "cytoplasm's": null, + "cytosine": [["M", "S"]], + "cytosine's": null, + "cytosines": null, + "cytotoxic": null, + "CZ": null, + "czarevitch": [["M"]], + "czarevitch's": null, + "czarina": [["S", "M"]], + "czarinas": null, + "czarina's": null, + "czarism": [["M"]], + "czarism's": null, + "czarist": [["S"]], + "czarists": null, + "czarship": null, + "czar": [["S", "M"]], + "czars": null, + "czar's": null, + "Czech": null, + "Czechoslovakia": [["M"]], + "Czechoslovakia's": null, + "Czechoslovakian": [["S"]], + "Czechoslovakians": null, + "Czechoslovak": [["S"]], + "Czechoslovaks": null, + "Czechs": null, + "Czerniak": [["M"]], + "Czerniak's": null, + "Czerny": [["M"]], + "Czerny's": null, + "D": null, + "DA": null, + "dabbed": null, + "dabber": [["M", "S"]], + "dabber's": null, + "dabbers": null, + "dabbing": null, + "dabbler": [["M"]], + "dabbler's": null, + "dabble": [["R", "S", "D", "Z", "G"]], + "dabbles": null, + "dabbled": null, + "dabblers": null, + "dabbling": null, + "dab": [["S"]], + "dabs": null, + "Dacca's": null, + "dace": [["M", "S"]], + "dace's": null, + "daces": null, + "Dacey": [["M"]], + "Dacey's": null, + "dacha": [["S", "M"]], + "dachas": null, + "dacha's": null, + "Dachau": [["M"]], + "Dachau's": null, + "dachshund": [["S", "M"]], + "dachshunds": null, + "dachshund's": null, + "Dacia": [["M"]], + "Dacia's": null, + "Dacie": [["M"]], + "Dacie's": null, + "Dacron": [["M", "S"]], + "Dacron's": null, + "Dacrons": null, + "dactylic": [["S"]], + "dactylics": null, + "dactyl": [["M", "S"]], + "dactyl's": null, + "dactyls": null, + "Dacy": [["M"]], + "Dacy's": null, + "Dadaism": [["M"]], + "Dadaism's": null, + "dadaism": [["S"]], + "dadaisms": null, + "Dadaist": [["M"]], + "Dadaist's": null, + "dadaist": [["S"]], + "dadaists": null, + "Dada": [["M"]], + "Dada's": null, + "daddy": [["S", "M"]], + "daddies": null, + "daddy's": null, + "Dade": [["M"]], + "Dade's": null, + "dado": [["D", "M", "G"]], + "dadoed": null, + "dado's": null, + "dadoing": null, + "dadoes": null, + "dad": [["S", "M"]], + "dads": null, + "dad's": null, + "Daedalus": [["M"]], + "Daedalus's": null, + "Dael": [["M"]], + "Dael's": null, + "daemonic": null, + "daemon": [["S", "M"]], + "daemons": null, + "daemon's": null, + "Daffie": [["M"]], + "Daffie's": null, + "Daffi": [["M"]], + "Daffi's": null, + "daffiness": [["S"]], + "daffinesses": null, + "daffodil": [["M", "S"]], + "daffodil's": null, + "daffodils": null, + "Daffy": [["M"]], + "Daffy's": null, + "daffy": [["P", "T", "R"]], + "daffiest": null, + "daffier": null, + "daftness": [["M", "S"]], + "daftness's": null, + "daftnesses": null, + "daft": [["T", "Y", "R", "P"]], + "daftest": null, + "daftly": null, + "dafter": null, + "DAG": null, + "dagger": [["D", "M", "S", "G"]], + "daggered": null, + "dagger's": null, + "daggers": null, + "daggering": null, + "Dag": [["M"]], + "Dag's": null, + "Dagmar": [["M"]], + "Dagmar's": null, + "Dagny": [["M"]], + "Dagny's": null, + "Daguerre": [["M"]], + "Daguerre's": null, + "daguerreotype": [["M", "G", "D", "S"]], + "daguerreotype's": null, + "daguerreotyping": null, + "daguerreotyped": null, + "daguerreotypes": null, + "Dagwood": [["M"]], + "Dagwood's": null, + "Dahlia": [["M"]], + "Dahlia's": null, + "dahlia": [["M", "S"]], + "dahlia's": null, + "dahlias": null, + "Dahl": [["M"]], + "Dahl's": null, + "Dahomey": [["M"]], + "Dahomey's": null, + "Daile": [["M"]], + "Daile's": null, + "dailiness": [["M", "S"]], + "dailiness's": null, + "dailinesses": null, + "daily": [["P", "S"]], + "dailies": null, + "Daimler": [["M"]], + "Daimler's": null, + "daintily": null, + "daintiness": [["M", "S"]], + "daintiness's": null, + "daintinesses": null, + "dainty": [["T", "P", "R", "S"]], + "daintiest": null, + "daintier": null, + "dainties": null, + "daiquiri": [["S", "M"]], + "daiquiris": null, + "daiquiri's": null, + "dairying": [["M"]], + "dairying's": null, + "dairyland": null, + "dairymaid": [["S", "M"]], + "dairymaids": null, + "dairymaid's": null, + "dairyman": [["M"]], + "dairyman's": null, + "dairymen": null, + "dairy": [["M", "J", "G", "S"]], + "dairy's": null, + "dairyings": null, + "dairies": null, + "dairywoman": [["M"]], + "dairywoman's": null, + "dairywomen": null, + "Daisey": [["M"]], + "Daisey's": null, + "Daisie": [["M"]], + "Daisie's": null, + "Daisi": [["M"]], + "Daisi's": null, + "dais": [["S", "M"]], + "daises": null, + "dais's": null, + "Daisy": [["M"]], + "Daisy's": null, + "daisy": [["S", "M"]], + "daisies": null, + "daisy's": null, + "Dakar": [["M"]], + "Dakar's": null, + "Dakotan": null, + "Dakota": [["S", "M"]], + "Dakotas": null, + "Dakota's": null, + "Dale": [["M"]], + "Dale's": null, + "Dalenna": [["M"]], + "Dalenna's": null, + "dale": [["S", "M", "H"]], + "dales": null, + "dale's": null, + "daleth": [["M"]], + "daleth's": null, + "Daley": [["M"]], + "Daley's": null, + "Dalhousie": [["M"]], + "Dalhousie's": null, + "Dalia": [["M"]], + "Dalia's": null, + "Dalian": [["M"]], + "Dalian's": null, + "Dalila": [["M"]], + "Dalila's": null, + "Dali": [["S", "M"]], + "Dalis": null, + "Dali's": null, + "Dallas": [["M"]], + "Dallas's": null, + "dalliance": [["S", "M"]], + "dalliances": null, + "dalliance's": null, + "dallier": [["M"]], + "dallier's": null, + "Dalli": [["M", "S"]], + "Dalli's": null, + "Dallis": null, + "Dall": [["M"]], + "Dall's": null, + "Dallon": [["M"]], + "Dallon's": null, + "dally": [["Z", "R", "S", "D", "G"]], + "dalliers": null, + "dallies": null, + "dallied": null, + "dallying": null, + "Dal": [["M"]], + "Dal's": null, + "Dalmatia": [["M"]], + "Dalmatia's": null, + "dalmatian": [["S"]], + "dalmatians": null, + "Dalmatian": [["S", "M"]], + "Dalmatians": null, + "Dalmatian's": null, + "Daloris": [["M"]], + "Daloris's": null, + "Dalston": [["M"]], + "Dalston's": null, + "Dalt": [["M"]], + "Dalt's": null, + "Dalton": [["M"]], + "Dalton's": null, + "Daly": [["M"]], + "Daly's": null, + "damageable": null, + "damaged": [["U"]], + "undamaged": null, + "damage": [["M", "Z", "G", "R", "S", "D"]], + "damage's": null, + "damagers": null, + "damaging": [["Y"]], + "damager": [["M"]], + "damages": null, + "damager's": null, + "damagingly": null, + "Damara": [["M"]], + "Damara's": null, + "Damaris": [["M"]], + "Damaris's": null, + "Damascus": [["M"]], + "Damascus's": null, + "damask": [["D", "M", "G", "S"]], + "damasked": null, + "damask's": null, + "damasking": null, + "damasks": null, + "dame": [["S", "M"]], + "dames": null, + "dame's": null, + "Dame": [["S", "M", "N"]], + "Dames": null, + "Dame's": null, + "Damion": [["M"]], + "Damian": [["M"]], + "Damian's": null, + "Damiano": [["M"]], + "Damiano's": null, + "Damien": [["M"]], + "Damien's": null, + "Damion's": null, + "Damita": [["M"]], + "Damita's": null, + "dam": [["M", "D", "S"]], + "dam's": null, + "damed": null, + "dams": null, + "dammed": null, + "damming": null, + "dammit": [["S"]], + "dammits": null, + "damnably": null, + "damnation": [["M", "S"]], + "damnation's": null, + "damnations": null, + "damnedest": [["M", "S"]], + "damnedest's": null, + "damnedests": null, + "damned": [["T", "R"]], + "damneder": null, + "damn": [["G", "S", "B", "R", "D"]], + "damning": [["Y"]], + "damns": null, + "damnable": null, + "damner": null, + "damningly": null, + "Damocles": [["M"]], + "Damocles's": null, + "Damon": [["M"]], + "Damon's": null, + "damped": [["U"]], + "undamped": null, + "dampener": [["M"]], + "dampener's": null, + "dampen": [["R", "D", "Z", "G"]], + "dampened": null, + "dampeners": null, + "dampening": null, + "damper": [["M"]], + "damper's": null, + "dampness": [["M", "S"]], + "dampness's": null, + "dampnesses": null, + "damp": [["S", "G", "Z", "T", "X", "Y", "R", "D", "N", "P"]], + "damps": null, + "damping": null, + "dampers": null, + "dampest": null, + "dampens": null, + "damply": null, + "damselfly": [["M", "S"]], + "damselfly's": null, + "damselflies": null, + "damsel": [["M", "S"]], + "damsel's": null, + "damsels": null, + "damson": [["M", "S"]], + "damson's": null, + "damsons": null, + "Dana�": null, + "Dana": [["M"]], + "Dana's": null, + "Danbury": [["M"]], + "Danbury's": null, + "dancelike": null, + "dancer": [["M"]], + "dancer's": null, + "dance": [["S", "R", "D", "J", "G", "Z"]], + "dances": null, + "danced": null, + "dancings": null, + "dancing": null, + "dancers": null, + "dandelion": [["M", "S"]], + "dandelion's": null, + "dandelions": null, + "dander": [["D", "M", "G", "S"]], + "dandered": null, + "dander's": null, + "dandering": null, + "danders": null, + "dandify": [["S", "D", "G"]], + "dandifies": null, + "dandified": null, + "dandifying": null, + "dandily": null, + "dandle": [["G", "S", "D"]], + "dandling": null, + "dandles": null, + "dandled": null, + "dandruff": [["M", "S"]], + "dandruff's": null, + "dandruffs": null, + "dandy": [["T", "R", "S", "M"]], + "dandiest": null, + "dandier": null, + "dandies": null, + "dandy's": null, + "Danelaw": [["M"]], + "Danelaw's": null, + "Danella": [["M"]], + "Danella's": null, + "Danell": [["M"]], + "Danell's": null, + "Dane": [["S", "M"]], + "Danes": null, + "Dane's": null, + "Danette": [["M"]], + "Danette's": null, + "danger": [["D", "M", "G"]], + "dangered": null, + "danger's": null, + "dangering": null, + "Dangerfield": [["M"]], + "Dangerfield's": null, + "dangerousness": [["M"]], + "dangerousness's": null, + "dangerous": [["Y", "P"]], + "dangerously": null, + "dangler": [["M"]], + "dangler's": null, + "dangle": [["Z", "G", "R", "S", "D"]], + "danglers": null, + "dangling": [["Y"]], + "dangles": null, + "dangled": null, + "danglingly": null, + "dang": [["S", "G", "Z", "R", "D"]], + "dangs": null, + "danging": null, + "dangers": null, + "danged": null, + "Danial": [["M"]], + "Danial's": null, + "Dania": [["M"]], + "Dania's": null, + "Danica": [["M"]], + "Danica's": null, + "Danice": [["M"]], + "Danice's": null, + "Daniela": [["M"]], + "Daniela's": null, + "Daniele": [["M"]], + "Daniele's": null, + "Daniella": [["M"]], + "Daniella's": null, + "Danielle": [["M"]], + "Danielle's": null, + "Daniel": [["S", "M"]], + "Daniels": null, + "Daniel's": null, + "Danielson": [["M"]], + "Danielson's": null, + "Danie": [["M"]], + "Danie's": null, + "Danika": [["M"]], + "Danika's": null, + "Danila": [["M"]], + "Danila's": null, + "Dani": [["M"]], + "Dani's": null, + "Danish": null, + "danish": [["S"]], + "danishes": null, + "Danita": [["M"]], + "Danita's": null, + "Danit": [["M"]], + "Danit's": null, + "dankness": [["M", "S"]], + "dankness's": null, + "danknesses": null, + "dank": [["T", "P", "Y", "R"]], + "dankest": null, + "dankly": null, + "danker": null, + "Danna": [["M"]], + "Danna's": null, + "Dannel": [["M"]], + "Dannel's": null, + "Dannie": [["M"]], + "Dannie's": null, + "Danni": [["M"]], + "Danni's": null, + "Dannye": [["M"]], + "Dannye's": null, + "Danny": [["M"]], + "Danny's": null, + "danseuse": [["S", "M"]], + "danseuses": null, + "danseuse's": null, + "Dan": [["S", "M"]], + "Dans": null, + "Dan's": null, + "Dante": [["M"]], + "Dante's": null, + "Danton": [["M"]], + "Danton's": null, + "Danube": [["M"]], + "Danube's": null, + "Danubian": null, + "Danville": [["M"]], + "Danville's": null, + "Danya": [["M"]], + "Danya's": null, + "Danyelle": [["M"]], + "Danyelle's": null, + "Danyette": [["M"]], + "Danyette's": null, + "Danzig": [["M"]], + "Danzig's": null, + "Daphene": [["M"]], + "Daphene's": null, + "Daphna": [["M"]], + "Daphna's": null, + "Daphne": [["M"]], + "Daphne's": null, + "dapperness": [["M"]], + "dapperness's": null, + "dapper": [["P", "S", "T", "R", "Y"]], + "dappers": null, + "dapperest": null, + "dapperer": null, + "dapperly": null, + "dapple": [["S", "D", "G"]], + "dapples": null, + "dappled": null, + "dappling": null, + "Dara": [["M"]], + "Dara's": null, + "Darbee": [["M"]], + "Darbee's": null, + "Darbie": [["M"]], + "Darbie's": null, + "Darb": [["M"]], + "Darb's": null, + "Darby": [["M"]], + "Darby's": null, + "Darcee": [["M"]], + "Darcee's": null, + "Darcey": [["M"]], + "Darcey's": null, + "Darcie": [["M"]], + "Darcie's": null, + "Darci": [["M"]], + "Darci's": null, + "D'Arcy": null, + "Darcy": [["M"]], + "Darcy's": null, + "Darda": [["M"]], + "Darda's": null, + "Dardanelles": null, + "daredevil": [["M", "S"]], + "daredevil's": null, + "daredevils": null, + "daredevilry": [["S"]], + "daredevilries": null, + "Dareen": [["M"]], + "Dareen's": null, + "Darelle": [["M"]], + "Darelle's": null, + "Darell": [["M"]], + "Darell's": null, + "Dare": [["M"]], + "Dare's": null, + "Daren": [["M"]], + "Daren's": null, + "darer": [["M"]], + "darer's": null, + "daresay": null, + "dare": [["Z", "G", "D", "R", "S", "J"]], + "darers": null, + "daring": [["P", "Y"]], + "dared": null, + "dares": null, + "darings": null, + "d'Arezzo": null, + "Daria": [["M"]], + "Daria's": null, + "Darice": [["M"]], + "Darice's": null, + "Darill": [["M"]], + "Darill's": null, + "Dari": [["M"]], + "Dari's": null, + "daringness": [["M"]], + "daringness's": null, + "daringly": null, + "Darin": [["M"]], + "Darin's": null, + "Dario": [["M"]], + "Dario's": null, + "Darius": [["M"]], + "Darius's": null, + "Darjeeling": [["M"]], + "Darjeeling's": null, + "darkener": [["M"]], + "darkener's": null, + "darken": [["R", "D", "Z", "G"]], + "darkened": null, + "darkeners": null, + "darkening": null, + "dark": [["G", "T", "X", "Y", "R", "D", "N", "S", "P"]], + "darking": null, + "darkest": null, + "darkens": null, + "darkly": [["T", "R"]], + "darker": null, + "darked": null, + "darks": null, + "darkness": [["M", "S"]], + "darkish": null, + "darkliest": null, + "darklier": null, + "darkness's": null, + "darknesses": null, + "darkroom": [["S", "M"]], + "darkrooms": null, + "darkroom's": null, + "Darla": [["M"]], + "Darla's": null, + "Darleen": [["M"]], + "Darleen's": null, + "Darlene": [["M"]], + "Darlene's": null, + "Darline": [["M"]], + "Darline's": null, + "Darling": [["M"]], + "Darling's": null, + "darlingness": [["M"]], + "darlingness's": null, + "Darlington": [["M"]], + "Darlington's": null, + "darling": [["Y", "M", "S", "P"]], + "darlingly": null, + "darling's": null, + "darlings": null, + "Darlleen": [["M"]], + "Darlleen's": null, + "Dar": [["M", "N", "H"]], + "Dar's": null, + "Darth": [["M"]], + "Darnall": [["M"]], + "Darnall's": null, + "darned": [["T", "R"]], + "darnedest": null, + "darneder": null, + "Darnell": [["M"]], + "Darnell's": null, + "darner": [["M"]], + "darner's": null, + "darn": [["G", "R", "D", "Z", "S"]], + "darning": [["M"]], + "darners": null, + "darns": null, + "darning's": null, + "Darn": [["M"]], + "Darn's": null, + "Daron": [["M"]], + "Daron's": null, + "DARPA": [["M"]], + "DARPA's": null, + "Darrelle": [["M"]], + "Darrelle's": null, + "Darrell": [["M"]], + "Darrell's": null, + "Darrel": [["M"]], + "Darrel's": null, + "Darren": [["M"]], + "Darren's": null, + "Darrick": [["M"]], + "Darrick's": null, + "Darrin": [["M"]], + "Darrin's": null, + "Darrow": [["M"]], + "Darrow's": null, + "Darryl": [["M"]], + "Darryl's": null, + "Darsey": [["M"]], + "Darsey's": null, + "Darsie": [["M"]], + "Darsie's": null, + "d'art": null, + "dartboard": [["S", "M"]], + "dartboards": null, + "dartboard's": null, + "darter": [["M"]], + "darter's": null, + "Darth's": null, + "Dartmouth": [["M"]], + "Dartmouth's": null, + "dart": [["M", "R", "D", "G", "Z", "S"]], + "dart's": null, + "darted": null, + "darting": null, + "darters": null, + "darts": null, + "Darvon": [["M"]], + "Darvon's": null, + "Darwinian": [["S"]], + "Darwinians": null, + "Darwinism": [["M", "S"]], + "Darwinism's": null, + "Darwinisms": null, + "Darwinist": [["M", "S"]], + "Darwinist's": null, + "Darwinists": null, + "Darwin": [["M"]], + "Darwin's": null, + "Darya": [["M"]], + "Darya's": null, + "Daryle": [["M"]], + "Daryle's": null, + "Daryl": [["M"]], + "Daryl's": null, + "Daryn": [["M"]], + "Daryn's": null, + "Dasha": [["M"]], + "Dasha's": null, + "dashboard": [["S", "M"]], + "dashboards": null, + "dashboard's": null, + "dasher": [["M"]], + "dasher's": null, + "dash": [["G", "Z", "S", "R", "D"]], + "dashing": [["Y"]], + "dashers": null, + "dashes": null, + "dashed": null, + "dashiki": [["S", "M"]], + "dashikis": null, + "dashiki's": null, + "dashingly": null, + "Dasie": [["M"]], + "Dasie's": null, + "Dasi": [["M"]], + "Dasi's": null, + "dastardliness": [["S", "M"]], + "dastardlinesses": null, + "dastardliness's": null, + "dastardly": [["P"]], + "dastard": [["M", "Y", "S"]], + "dastard's": null, + "dastards": null, + "Dasya": [["M"]], + "Dasya's": null, + "DAT": null, + "database": [["D", "S", "M", "G"]], + "databased": null, + "databases": null, + "database's": null, + "databasing": null, + "datafile": null, + "datagram": [["M", "S"]], + "datagram's": null, + "datagrams": null, + "data": [["M"]], + "data's": null, + "Datamation": [["M"]], + "Datamation's": null, + "Datamedia": [["M"]], + "Datamedia's": null, + "dataset": [["S"]], + "datasets": null, + "datedly": null, + "datedness": null, + "date": [["D", "R", "S", "M", "Z", "G", "V"]], + "dated": [["U"]], + "dater": [["M"]], + "dates": null, + "date's": null, + "daters": null, + "dating": null, + "dative": [["S"]], + "undated": [["I"]], + "dateless": null, + "dateline": [["D", "S", "M", "G"]], + "datelined": null, + "datelines": null, + "dateline's": null, + "datelining": null, + "dater's": null, + "Datha": [["M"]], + "Datha's": null, + "datives": null, + "Datsun": [["M"]], + "Datsun's": null, + "datum": [["M", "S"]], + "datum's": null, + "datums": null, + "dauber": [["M"]], + "dauber's": null, + "daub": [["R", "D", "S", "G", "Z"]], + "daubed": null, + "daubs": null, + "daubing": null, + "daubers": null, + "Daugherty": [["M"]], + "Daugherty's": null, + "daughter": [["M", "Y", "S"]], + "daughter's": null, + "daughterly": null, + "daughters": null, + "Daumier": [["M"]], + "Daumier's": null, + "Daune": [["M"]], + "Daune's": null, + "daunt": [["D", "S", "G"]], + "daunted": [["U"]], + "daunts": null, + "daunting": [["Y"]], + "undaunted": [["Y"]], + "dauntingly": null, + "dauntlessness": [["S", "M"]], + "dauntlessnesses": null, + "dauntlessness's": null, + "dauntless": [["P", "Y"]], + "dauntlessly": null, + "dauphin": [["S", "M"]], + "dauphins": null, + "dauphin's": null, + "Davao": [["M"]], + "Davao's": null, + "Daveen": [["M"]], + "Daveen's": null, + "Dave": [["M"]], + "Dave's": null, + "Daven": [["M"]], + "Daven's": null, + "Davenport": [["M"]], + "Davenport's": null, + "davenport": [["M", "S"]], + "davenport's": null, + "davenports": null, + "Daveta": [["M"]], + "Daveta's": null, + "Davey": [["M"]], + "Davey's": null, + "Davida": [["M"]], + "Davida's": null, + "Davidde": [["M"]], + "Davidde's": null, + "Davide": [["M"]], + "Davide's": null, + "David": [["S", "M"]], + "Davids": null, + "David's": null, + "Davidson": [["M"]], + "Davidson's": null, + "Davie": [["M"]], + "Davie's": null, + "Davina": [["M"]], + "Davina's": null, + "Davine": [["M"]], + "Davine's": null, + "Davinich": [["M"]], + "Davinich's": null, + "Davin": [["M"]], + "Davin's": null, + "Davis": [["M"]], + "Davis's": null, + "Davita": [["M"]], + "Davita's": null, + "davit": [["S", "M"]], + "davits": null, + "davit's": null, + "Dav": [["M", "N"]], + "Dav's": null, + "Davon": [["M"]], + "Davon's": null, + "Davy": [["S", "M"]], + "Davies": null, + "Davy's": null, + "dawdler": [["M"]], + "dawdler's": null, + "dawdle": [["Z", "G", "R", "S", "D"]], + "dawdlers": null, + "dawdling": null, + "dawdles": null, + "dawdled": null, + "Dawes": [["M"]], + "Dawes's": null, + "Dawna": [["M"]], + "Dawna's": null, + "dawn": [["G", "S", "D", "M"]], + "dawning": null, + "dawns": null, + "dawned": null, + "dawn's": null, + "Dawn": [["M"]], + "Dawn's": null, + "Dawson": [["M"]], + "Dawson's": null, + "daybed": [["S"]], + "daybeds": null, + "daybreak": [["S", "M"]], + "daybreaks": null, + "daybreak's": null, + "daycare": [["S"]], + "daycares": null, + "daydreamer": [["M"]], + "daydreamer's": null, + "daydream": [["R", "D", "M", "S", "Z", "G"]], + "daydreamed": null, + "daydream's": null, + "daydreams": null, + "daydreamers": null, + "daydreaming": null, + "Dayle": [["M"]], + "Dayle's": null, + "daylight": [["G", "S", "D", "M"]], + "daylighting": null, + "daylights": null, + "daylighted": null, + "daylight's": null, + "Day": [["M"]], + "Day's": null, + "Dayna": [["M"]], + "Dayna's": null, + "daysack": null, + "day": [["S", "M"]], + "days": null, + "day's": null, + "daytime": [["S", "M"]], + "daytimes": null, + "daytime's": null, + "Dayton": [["M"]], + "Dayton's": null, + "dazed": [["P", "Y"]], + "dazedness": null, + "dazedly": null, + "daze": [["D", "S", "G"]], + "dazes": null, + "dazing": null, + "dazzler": [["M"]], + "dazzler's": null, + "dazzle": [["Z", "G", "J", "R", "S", "D"]], + "dazzlers": null, + "dazzling": [["Y"]], + "dazzlings": null, + "dazzles": null, + "dazzled": null, + "dazzlingly": null, + "db": null, + "DB": null, + "dbl": null, + "dB": [["M"]], + "dB's": null, + "DBMS": null, + "DC": null, + "DD": null, + "Ddene": [["M"]], + "Ddene's": null, + "DDS": null, + "DDT": null, + "DE": null, + "deacon": [["D", "S", "M", "G"]], + "deaconed": null, + "deacons": null, + "deacon's": null, + "deaconing": null, + "deaconess": [["M", "S"]], + "deaconess's": null, + "deaconesses": null, + "deadbeat": [["S", "M"]], + "deadbeats": null, + "deadbeat's": null, + "deadbolt": [["S"]], + "deadbolts": null, + "deadener": [["M"]], + "deadener's": null, + "deadening": [["M", "Y"]], + "deadening's": null, + "deadeningly": null, + "deaden": [["R", "D", "G"]], + "deadened": null, + "deadhead": [["M", "S"]], + "deadhead's": null, + "deadheads": null, + "deadline": [["M", "G", "D", "S"]], + "deadline's": null, + "deadlining": null, + "deadlined": null, + "deadlines": null, + "deadliness": [["S", "M"]], + "deadlinesses": null, + "deadliness's": null, + "deadlock": [["M", "G", "D", "S"]], + "deadlock's": null, + "deadlocking": null, + "deadlocked": null, + "deadlocks": null, + "deadly": [["R", "P", "T"]], + "deadlier": null, + "deadliest": null, + "deadness": [["M"]], + "deadness's": null, + "deadpanned": null, + "deadpanner": null, + "deadpanning": null, + "deadpan": [["S"]], + "deadpans": null, + "dead": [["P", "T", "X", "Y", "R", "N"]], + "deadest": null, + "deadens": null, + "deader": null, + "deadwood": [["S", "M"]], + "deadwoods": null, + "deadwood's": null, + "deafening": [["M", "Y"]], + "deafening's": null, + "deafeningly": null, + "deafen": [["J", "G", "D"]], + "deafenings": null, + "deafened": null, + "deafness": [["M", "S"]], + "deafness's": null, + "deafnesses": null, + "deaf": [["T", "X", "P", "Y", "R", "N"]], + "deafest": null, + "deafens": null, + "deafly": null, + "deafer": null, + "dealer": [["M"]], + "dealer's": null, + "dealership": [["M", "S"]], + "dealership's": null, + "dealerships": null, + "dealing": [["M"]], + "dealing's": null, + "deallocator": null, + "deal": [["R", "S", "G", "Z", "J"]], + "deals": null, + "dealers": null, + "dealings": null, + "dealt": null, + "Deana": [["M"]], + "Deana's": null, + "deaned": null, + "dean's": null, + "deaning": null, + "Deandre": [["M"]], + "Deandre's": null, + "Deane": [["M"]], + "Deane's": null, + "deanery": [["M", "S"]], + "deanery's": null, + "deaneries": null, + "Dean": [["M"]], + "Dean's": null, + "Deanna": [["M"]], + "Deanna's": null, + "Deanne": [["M"]], + "Deanne's": null, + "Deann": [["M"]], + "Deann's": null, + "deanship": [["S", "M"]], + "deanships": null, + "deanship's": null, + "Dearborn": [["M"]], + "Dearborn's": null, + "dearness": [["M", "S"]], + "dearness's": null, + "dearnesses": null, + "dearth": [["M"]], + "dearth's": null, + "dearths": null, + "dear": [["T", "Y", "R", "H", "P", "S"]], + "dearest": null, + "dearly": null, + "dearer": null, + "dears": null, + "deary": [["M", "S"]], + "deary's": null, + "dearies": null, + "deassign": null, + "deathbed": [["M", "S"]], + "deathbed's": null, + "deathbeds": null, + "deathblow": [["S", "M"]], + "deathblows": null, + "deathblow's": null, + "deathless": [["Y"]], + "deathlessly": null, + "deathlike": null, + "deathly": [["T", "R"]], + "deathliest": null, + "deathlier": null, + "death": [["M", "Y"]], + "death's": null, + "deaths": null, + "deathtrap": [["S", "M"]], + "deathtraps": null, + "deathtrap's": null, + "deathward": null, + "deathwatch": [["M", "S"]], + "deathwatch's": null, + "deathwatches": null, + "debacle": [["S", "M"]], + "debacles": null, + "debacle's": null, + "debarkation": [["S", "M"]], + "debarkations": null, + "debarkation's": null, + "debark": [["G"]], + "debarking": null, + "debar": [["L"]], + "debarment": [["S", "M"]], + "debarments": null, + "debarment's": null, + "debarring": null, + "debaser's": null, + "debatable": [["U"]], + "undebatable": null, + "debate's": null, + "debaters": null, + "debater's": null, + "debauchedness": [["M"]], + "debauchedness's": null, + "debauched": [["P", "Y"]], + "debauchedly": null, + "debauchee": [["S", "M"]], + "debauchees": null, + "debauchee's": null, + "debaucher": [["M"]], + "debaucher's": null, + "debauchery": [["S", "M"]], + "debaucheries": null, + "debauchery's": null, + "debauch": [["G", "D", "R", "S"]], + "debauching": null, + "debauches": null, + "Debbie": [["M"]], + "Debbie's": null, + "Debbi": [["M"]], + "Debbi's": null, + "Debby": [["M"]], + "Debby's": null, + "Debee": [["M"]], + "Debee's": null, + "debenture": [["M", "S"]], + "debenture's": null, + "debentures": null, + "Debera": [["M"]], + "Debera's": null, + "debilitate": [["N", "G", "X", "S", "D"]], + "debilitation": [["M"]], + "debilitating": null, + "debilitations": null, + "debilitates": null, + "debilitated": null, + "debilitation's": null, + "debility": [["M", "S"]], + "debility's": null, + "debilities": null, + "Debi": [["M"]], + "Debi's": null, + "debit": [["D", "G"]], + "debited": null, + "debiting": null, + "deb": [["M", "S"]], + "deb's": null, + "debs": null, + "Deb": [["M", "S"]], + "Deb's": null, + "Debs": null, + "debonairness": [["S", "M"]], + "debonairnesses": null, + "debonairness's": null, + "debonair": [["P", "Y"]], + "debonairly": null, + "Deborah": [["M"]], + "Deborah's": null, + "Debora": [["M"]], + "Debora's": null, + "Debor": [["M"]], + "Debor's": null, + "debouch": [["D", "S", "G"]], + "debouched": null, + "debouches": null, + "debouching": null, + "Debra": [["M"]], + "Debra's": null, + "debrief": [["G", "J"]], + "debriefing": null, + "debriefings": null, + "debris": [["M"]], + "debris's": null, + "debtor": [["S", "M"]], + "debtors": null, + "debtor's": null, + "debt": [["S", "M"]], + "debts": null, + "debt's": null, + "Debussy": [["M"]], + "Debussy's": null, + "d�butante": [["S", "M"]], + "d�butantes": null, + "d�butante's": null, + "debut's": null, + "debuted": null, + "debuting": null, + "decade": [["M", "S"]], + "decade's": null, + "decades": null, + "decadency": [["S"]], + "decadencies": null, + "decadently": null, + "decadents": null, + "decaffeinate": [["D", "S", "G"]], + "decaffeinated": null, + "decaffeinates": null, + "decaffeinating": null, + "decaf": [["S"]], + "decafs": null, + "decagon": [["M", "S"]], + "decagon's": null, + "decagons": null, + "Decalogue": [["M"]], + "Decalogue's": null, + "decals": null, + "decal's": null, + "decampment": [["M", "S"]], + "decampment's": null, + "decampments": null, + "decapitate": [["G", "S", "D"]], + "decapitating": null, + "decapitates": null, + "decapitated": null, + "decapitator": [["S", "M"]], + "decapitators": null, + "decapitator's": null, + "decathlon": [["S", "M"]], + "decathlons": null, + "decathlon's": null, + "Decatur": [["M"]], + "Decatur's": null, + "decaying": null, + "decayer": null, + "decayed": null, + "Decca": [["M"]], + "Decca's": null, + "Deccan": [["M"]], + "Deccan's": null, + "decease's": null, + "decedent": [["M", "S"]], + "decedent's": null, + "decedents": null, + "deceitfulness": [["S", "M"]], + "deceitfulnesses": null, + "deceitfulness's": null, + "deceitful": [["P", "Y"]], + "deceitfully": null, + "deceit": [["S", "M"]], + "deceits": null, + "deceit's": null, + "deceived": [["U"]], + "undeceived": null, + "deceiver": [["M"]], + "deceiver's": null, + "deceives": [["U"]], + "undeceives": null, + "deceive": [["Z", "G", "R", "S", "D"]], + "deceivers": null, + "deceiving": [["U"]], + "deceivingly": null, + "undeceiving": null, + "decelerate": [["X", "N", "G", "S", "D"]], + "decelerations": null, + "deceleration": [["M"]], + "decelerating": null, + "decelerates": null, + "decelerated": null, + "deceleration's": null, + "decelerator": [["S", "M"]], + "decelerators": null, + "decelerator's": null, + "December": [["S", "M"]], + "Decembers": null, + "December's": null, + "decency": [["I", "S", "M"]], + "indecency": null, + "indecencies": null, + "indecency's": null, + "decencies": null, + "decency's": null, + "decennial": [["S", "Y"]], + "decennials": null, + "decennially": null, + "decent": [["T", "I", "Y", "R"]], + "decentest": null, + "indecent": null, + "indecently": null, + "indecenter": null, + "decently": null, + "deception": [["S", "M"]], + "deceptions": null, + "deception's": null, + "deceptiveness": [["S", "M"]], + "deceptivenesses": null, + "deceptiveness's": null, + "deceptive": [["Y", "P"]], + "deceptively": null, + "decertify": [["N"]], + "dechlorinate": [["N"]], + "dechlorination": null, + "decibel": [["M", "S"]], + "decibel's": null, + "decibels": null, + "decidability": [["U"]], + "undecidability": null, + "decidable": [["U"]], + "undecidable": null, + "decidedness": [["M"]], + "decidedness's": null, + "decided": [["P", "Y"]], + "decidedly": null, + "decide": [["G", "R", "S", "D", "B"]], + "deciding": null, + "decider": null, + "decides": null, + "deciduousness": [["M"]], + "deciduousness's": null, + "deciduous": [["Y", "P"]], + "deciduously": null, + "decile": [["S", "M"]], + "deciles": null, + "decile's": null, + "deciliter": [["S", "M"]], + "deciliters": null, + "deciliter's": null, + "decimal": [["S", "Y", "M"]], + "decimals": null, + "decimally": null, + "decimal's": null, + "decimate": [["X", "N", "G", "D", "S"]], + "decimations": null, + "decimation": [["M"]], + "decimating": null, + "decimated": null, + "decimates": null, + "decimation's": null, + "decimeter": [["M", "S"]], + "decimeter's": null, + "decimeters": null, + "decipherable": [["I", "U"]], + "indecipherable": null, + "undecipherable": null, + "decipher": [["B", "R", "Z", "G"]], + "decipherer": [["M"]], + "decipherers": null, + "deciphering": null, + "decipherer's": null, + "decisional": null, + "decisioned": null, + "decisioning": null, + "decision": [["I", "S", "M"]], + "indecision": null, + "indecisions": null, + "indecision's": null, + "decisions": null, + "decision's": null, + "decisive": [["I", "P", "Y"]], + "indecisive": null, + "indecisiveness": null, + "indecisively": null, + "decisiveness": [["M", "S", "I"]], + "decisively": null, + "decisiveness's": null, + "indecisiveness's": null, + "decisivenesses": null, + "indecisivenesses": null, + "deckchair": null, + "decker": [["M"]], + "decker's": null, + "Decker": [["M"]], + "Decker's": null, + "decking": [["M"]], + "decked": null, + "deck's": null, + "decks": null, + "deckings": null, + "deckhand": [["S"]], + "deckhands": null, + "decking's": null, + "Deck": [["R", "M"]], + "Deck's": null, + "declamation": [["S", "M"]], + "declamations": null, + "declamation's": null, + "declamatory": null, + "declarable": null, + "declaration": [["M", "S"]], + "declaration's": [["A"]], + "declarations": null, + "redeclaration's": null, + "declarative": [["S", "Y"]], + "declaratives": null, + "declaratively": null, + "declarator": [["M", "S"]], + "declarator's": null, + "declarators": null, + "declaratory": null, + "declare": [["A", "G", "S", "D"]], + "redeclare": null, + "redeclaring": null, + "redeclares": null, + "redeclared": null, + "declaring": null, + "declares": null, + "declared": [["U"]], + "undeclared": null, + "declarer": [["M", "S"]], + "declarer's": null, + "declarers": null, + "declension": [["S", "M"]], + "declensions": null, + "declension's": null, + "declination": [["M", "S"]], + "declination's": null, + "declinations": null, + "decliner": [["M"]], + "decliner's": null, + "decline": [["Z", "G", "R", "S", "D"]], + "decliners": null, + "declining": null, + "declines": null, + "declined": null, + "declivity": [["S", "M"]], + "declivities": null, + "declivity's": null, + "Dec": [["M"]], + "Dec's": null, + "DEC": [["M"]], + "DEC's": null, + "DECNET": null, + "DECnet": [["M"]], + "DECnet's": null, + "deco": null, + "d�colletage": [["S"]], + "d�colletages": null, + "d�collet�": null, + "decolletes": null, + "decolorising": null, + "decomposability": [["M"]], + "decomposability's": null, + "decomposable": [["I", "U"]], + "indecomposable": null, + "undecomposable": null, + "decompresser": null, + "decongestant": [["S"]], + "decongestants": null, + "deconstruction": null, + "deconvolution": null, + "decorated": [["A", "U"]], + "redecorated": null, + "undecorated": null, + "decorate": [["N", "G", "V", "D", "S", "X"]], + "decoration": [["A", "S", "M"]], + "decorating": [["A"]], + "decorative": [["Y", "P"]], + "decorates": [["A"]], + "decorations": null, + "redecorates": null, + "redecorating": null, + "redecoration": null, + "redecorations": null, + "redecoration's": null, + "decoration's": null, + "decorativeness": [["M"]], + "decorativeness's": null, + "decoratively": null, + "decorator": [["S", "M"]], + "decorators": null, + "decorator's": null, + "decorousness": [["M", "S"]], + "decorousness's": [["I"]], + "decorousnesses": null, + "indecorousness's": null, + "decorous": [["P", "I", "Y"]], + "indecorousness": null, + "indecorous": null, + "indecorously": null, + "decorously": null, + "decor": [["S"]], + "decors": null, + "decorticate": [["G", "N", "D", "S"]], + "decorticating": null, + "decortication": [["M"]], + "decorticated": null, + "decorticates": null, + "decortication's": null, + "decorum": [["M", "S"]], + "decorum's": null, + "decorums": null, + "decoupage": [["M", "G", "S", "D"]], + "decoupage's": null, + "decoupaging": null, + "decoupages": null, + "decoupaged": null, + "decoupling": null, + "decoy's": null, + "decrease": null, + "decreasingly": null, + "decreeing": null, + "decree": [["R", "S", "M"]], + "decreer": null, + "decrees": null, + "decree's": null, + "decremental": null, + "decrement": [["D", "M", "G", "S"]], + "decremented": null, + "decrement's": null, + "decrementing": null, + "decrements": null, + "decrepit": null, + "decrepitude": [["S", "M"]], + "decrepitudes": null, + "decrepitude's": null, + "decriminalizations": null, + "decriminalized": null, + "decriminalizes": null, + "decry": [["G"]], + "decrying": null, + "decrypting": null, + "decrypted": null, + "decryption": null, + "DECstation": [["M"]], + "DECstation's": null, + "DECsystem": [["M"]], + "DECsystem's": null, + "DECtape": [["M"]], + "DECtape's": null, + "decustomised": null, + "Dedekind": [["M"]], + "Dedekind's": null, + "Dede": [["M"]], + "Dede's": null, + "dedicate": [["A", "G", "D", "S"]], + "rededicate": null, + "rededicating": null, + "rededicated": null, + "rededicates": null, + "dedicating": null, + "dedicated": [["Y"]], + "dedicates": null, + "dedicatedly": null, + "dedication": [["M", "S"]], + "dedication's": null, + "dedications": null, + "dedicative": null, + "dedicator": [["M", "S"]], + "dedicator's": null, + "dedicators": null, + "dedicatory": null, + "Dedie": [["M"]], + "Dedie's": null, + "Dedra": [["M"]], + "Dedra's": null, + "deduce": [["R", "S", "D", "G"]], + "deducer": null, + "deduces": null, + "deduced": null, + "deducing": null, + "deducible": null, + "deductibility": [["M"]], + "deductibility's": null, + "deductible": [["S"]], + "deductibles": null, + "deduction": [["S", "M"]], + "deductions": null, + "deduction's": null, + "deductive": [["Y"]], + "deductively": null, + "deduct": [["V", "G"]], + "deducting": null, + "Deeanne": [["M"]], + "Deeanne's": null, + "Deeann": [["M"]], + "Deeann's": null, + "deeded": null, + "Deedee": [["M"]], + "Deedee's": null, + "deeding": null, + "deed": [["I", "S"]], + "indeed": null, + "indeeds": null, + "deeds": null, + "deed's": null, + "deejay": [["M", "D", "S", "G"]], + "deejay's": null, + "deejayed": null, + "deejays": null, + "deejaying": null, + "Dee": [["M"]], + "Dee's": null, + "deem": [["A", "D", "G", "S"]], + "redeem": [["B", "R", "Z"]], + "redeemed": [["U"]], + "redeeming": null, + "redeems": null, + "deemed": null, + "deeming": null, + "deems": null, + "deemphasis": null, + "Deena": [["M"]], + "Deena's": null, + "deepen": [["D", "G"]], + "deepened": null, + "deepening": null, + "deepish": null, + "deepness": [["M", "S"]], + "deepness's": null, + "deepnesses": null, + "deep": [["P", "T", "X", "S", "Y", "R", "N"]], + "deepest": null, + "deepens": null, + "deeps": null, + "deeply": null, + "deeper": null, + "Deerdre": [["M"]], + "Deerdre's": null, + "Deere": [["M"]], + "Deere's": null, + "deerskin": [["M", "S"]], + "deerskin's": null, + "deerskins": null, + "deer": [["S", "M"]], + "deers": null, + "deer's": null, + "deerstalker": [["S", "M"]], + "deerstalkers": null, + "deerstalker's": null, + "deerstalking": [["M"]], + "deerstalking's": null, + "Deeyn": [["M"]], + "Deeyn's": null, + "deface": [["L", "Z"]], + "defacement": [["S", "M"]], + "defacers": null, + "defacements": null, + "defacement's": null, + "defaecate": null, + "defalcate": [["N", "G", "X", "S", "D"]], + "defalcation": [["M"]], + "defalcating": null, + "defalcations": null, + "defalcates": null, + "defalcated": null, + "defalcation's": null, + "defamation": [["S", "M"]], + "defamations": null, + "defamation's": null, + "defamatory": null, + "defamer": [["M"]], + "defamer's": null, + "defame": [["Z", "R"]], + "defamers": null, + "defaulter": [["M"]], + "defaulter's": null, + "default": [["Z", "R"]], + "defaulters": null, + "defeated": [["U"]], + "undefeated": null, + "defeater": [["M"]], + "defeater's": null, + "defeatism": [["S", "M"]], + "defeatisms": null, + "defeatism's": null, + "defeatist": [["S", "M"]], + "defeatists": null, + "defeatist's": null, + "defeat": [["Z", "G", "D"]], + "defeaters": null, + "defeating": null, + "defecate": [["D", "S", "N", "G", "X"]], + "defecated": null, + "defecates": null, + "defecation": [["M"]], + "defecating": null, + "defecations": null, + "defecation's": null, + "defection": [["S", "M"]], + "defections": null, + "defection's": null, + "defectiveness": [["M", "S"]], + "defectiveness's": null, + "defectivenesses": null, + "defective": [["P", "Y", "S"]], + "defectively": null, + "defectives": null, + "defect": [["M", "D", "S", "V", "G"]], + "defect's": null, + "defected": null, + "defects": null, + "defecting": null, + "defector": [["M", "S"]], + "defector's": null, + "defectors": null, + "defendant": [["S", "M"]], + "defendants": null, + "defendant's": null, + "defended": [["U"]], + "undefended": null, + "defenestrate": [["G", "S", "D"]], + "defenestrating": null, + "defenestrates": null, + "defenestrated": null, + "defenselessness": [["M", "S"]], + "defenselessness's": null, + "defenselessnesses": null, + "defenseless": [["P", "Y"]], + "defenselessly": null, + "defenses": [["U"]], + "undefenses": null, + "defense": [["V", "G", "S", "D", "M"]], + "defensive": [["P", "S", "Y"]], + "defensing": null, + "defensed": null, + "defense's": null, + "defensibility": [["M"]], + "defensibility's": null, + "defensible": [["I"]], + "indefensible": null, + "defensibly": [["I"]], + "indefensibly": null, + "defensiveness": [["M", "S"]], + "defensiveness's": null, + "defensivenesses": null, + "defensives": null, + "defensively": null, + "deference": [["M", "S"]], + "deference's": null, + "deferences": null, + "deferential": [["Y"]], + "deferentially": null, + "deferent": [["S"]], + "deferents": null, + "deferrable": null, + "deferral": [["S", "M"]], + "deferrals": null, + "deferral's": null, + "deferred": null, + "deferrer": [["M", "S"]], + "deferrer's": null, + "deferrers": null, + "deferring": null, + "deffer": null, + "defiance": [["M", "S"]], + "defiance's": null, + "defiances": null, + "defiant": [["Y"]], + "defiantly": null, + "defibrillator": [["M"]], + "defibrillator's": null, + "deficiency": [["M", "S"]], + "deficiency's": null, + "deficiencies": null, + "deficient": [["S", "Y"]], + "deficients": null, + "deficiently": null, + "deficit": [["M", "S"]], + "deficit's": null, + "deficits": null, + "defier": [["M"]], + "defier's": null, + "defile": [["L"]], + "defilement": [["M", "S"]], + "defilement's": null, + "defilements": null, + "definable": [["U", "I"]], + "undefinable": null, + "indefinable": [["P", "S"]], + "definably": [["I"]], + "indefinably": null, + "define": [["A", "G", "D", "R", "S"]], + "redefine": null, + "redefining": null, + "redefined": null, + "redefiner": null, + "redefines": null, + "defining": null, + "defined": [["U"]], + "definer": [["S", "M"]], + "defines": null, + "undefined": [["P"]], + "definers": null, + "definer's": null, + "definite": [["I", "P", "Y"]], + "indefinite": [["S"]], + "indefiniteness": null, + "indefinitely": null, + "definiteness": [["I", "M", "S"]], + "definitely": null, + "indefiniteness's": null, + "indefinitenesses": null, + "definiteness's": null, + "definitenesses": null, + "definitional": null, + "definition": [["A", "S", "M"]], + "redefinition": null, + "redefinitions": null, + "redefinition's": null, + "definitions": null, + "definition's": null, + "definitiveness": [["M"]], + "definitiveness's": null, + "definitive": [["S", "Y", "P"]], + "definitives": null, + "definitively": null, + "defis": null, + "deflate": [["X", "N", "G", "R", "S", "D", "B"]], + "deflations": null, + "deflation": [["M"]], + "deflating": null, + "deflater": null, + "deflates": null, + "deflated": null, + "deflatable": null, + "deflationary": null, + "deflation's": null, + "deflect": [["D", "S", "G", "V"]], + "deflected": [["U"]], + "deflects": null, + "deflecting": null, + "deflective": null, + "undeflected": null, + "deflection": [["M", "S"]], + "deflection's": null, + "deflections": null, + "deflector": [["M", "S"]], + "deflector's": null, + "deflectors": null, + "defocus": null, + "defocussing": null, + "Defoe": [["M"]], + "Defoe's": null, + "defog": null, + "defogger": [["S"]], + "defoggers": null, + "defoliant": [["S", "M"]], + "defoliants": null, + "defoliant's": null, + "defoliator": [["S", "M"]], + "defoliators": null, + "defoliator's": null, + "deformational": null, + "deform": [["B"]], + "deformable": null, + "deformed": [["U"]], + "undeformed": null, + "deformity": [["S", "M"]], + "deformities": null, + "deformity's": null, + "defrauder": [["M"]], + "defrauder's": null, + "defraud": [["Z", "G", "D", "R"]], + "defrauders": null, + "defrauding": null, + "defrauded": null, + "defrayal": [["S", "M"]], + "defrayals": null, + "defrayal's": null, + "defroster": [["M"]], + "defroster's": null, + "defrost": [["R", "Z"]], + "defrosters": null, + "deftness": [["M", "S"]], + "deftness's": null, + "deftnesses": null, + "deft": [["T", "Y", "R", "P"]], + "deftest": null, + "deftly": null, + "defter": null, + "defunct": [["S"]], + "defuncts": null, + "defying": [["Y"]], + "defyingly": null, + "defy": [["R", "D", "G"]], + "defied": null, + "def": [["Z"]], + "defers": null, + "deg": null, + "Degas": [["M"]], + "Degas's": null, + "degassing": null, + "degauss": [["G", "D"]], + "degaussing": null, + "degaussed": null, + "degeneracy": [["M", "S"]], + "degeneracy's": null, + "degeneracies": null, + "degenerateness": [["M"]], + "degenerateness's": null, + "degenerate": [["P", "Y"]], + "degenerately": null, + "degrade": [["B"]], + "degradable": null, + "degradedness": [["M"]], + "degradedness's": null, + "degraded": [["Y", "P"]], + "degradedly": null, + "degrading": [["Y"]], + "degradingly": null, + "degrease": null, + "degree": [["S", "M"]], + "degrees": null, + "degree's": null, + "degum": null, + "Dehlia": [["M"]], + "Dehlia's": null, + "dehumanize": null, + "dehydrator": [["M", "S"]], + "dehydrator's": null, + "dehydrators": null, + "deicer": [["M"]], + "deicer's": null, + "deice": [["Z", "R"]], + "deicers": null, + "deictic": null, + "Deidre": [["M"]], + "Deidre's": null, + "deification": [["M"]], + "deification's": null, + "deify": [["S", "D", "X", "G", "N"]], + "deifies": null, + "deified": null, + "deifications": null, + "deifying": null, + "deign": [["D", "G", "S"]], + "deigned": null, + "deigning": null, + "deigns": null, + "Deimos": [["M"]], + "Deimos's": null, + "Deina": [["M"]], + "Deina's": null, + "Deirdre": [["M", "S"]], + "Deirdre's": null, + "Deirdres": null, + "deistic": null, + "deist": [["S", "M"]], + "deists": null, + "deist's": null, + "Deity": [["M"]], + "Deity's": null, + "deity": [["S", "M"]], + "deities": null, + "deity's": null, + "deja": null, + "deject": [["D", "S", "G"]], + "dejected": [["P", "Y"]], + "dejects": null, + "dejecting": null, + "dejectedness": [["M"]], + "dejectedness's": null, + "dejectedly": null, + "dejection": [["S", "M"]], + "dejections": null, + "dejection's": null, + "Dejesus": [["M"]], + "Dejesus's": null, + "DeKalb": [["M"]], + "DeKalb's": null, + "DeKastere": [["M"]], + "DeKastere's": null, + "Delacroix": [["M"]], + "Delacroix's": null, + "Delacruz": [["M"]], + "Delacruz's": null, + "Delainey": [["M"]], + "Delainey's": null, + "Dela": [["M"]], + "Dela's": null, + "Delaney": [["M"]], + "Delaney's": null, + "Delano": [["M"]], + "Delano's": null, + "Delawarean": [["S", "M"]], + "Delawareans": null, + "Delawarean's": null, + "Delaware": [["M", "S"]], + "Delaware's": null, + "Delawares": null, + "delay": [["D"]], + "delayed": null, + "delayer": [["G"]], + "delayering": null, + "Delbert": [["M"]], + "Delbert's": null, + "Delcina": [["M"]], + "Delcina's": null, + "Delcine": [["M"]], + "Delcine's": null, + "delectableness": [["M"]], + "delectableness's": null, + "delectable": [["S", "P"]], + "delectables": null, + "delectably": null, + "delectation": [["M", "S"]], + "delectation's": null, + "delectations": null, + "delegable": null, + "Deleon": [["M"]], + "Deleon's": null, + "deleted": [["U"]], + "undeleted": null, + "deleteriousness": [["M"]], + "deleteriousness's": null, + "deleterious": [["P", "Y"]], + "deleteriously": null, + "delete": [["X", "B", "R", "S", "D", "N", "G"]], + "deletions": null, + "deletable": null, + "deleter": null, + "deletes": null, + "deletion": [["M"]], + "deleting": null, + "deletion's": null, + "delfs": null, + "Delft": [["M"]], + "Delft's": null, + "delft": [["M", "S"]], + "delft's": null, + "delfts": null, + "delftware": [["S"]], + "delftwares": null, + "Delgado": [["M"]], + "Delgado's": null, + "Delhi": [["M"]], + "Delhi's": null, + "Delia": [["M"]], + "Delia's": null, + "deliberateness": [["S", "M"]], + "deliberatenesses": null, + "deliberateness's": null, + "deliberate": [["P", "V", "Y"]], + "deliberative": [["P", "Y"]], + "deliberately": null, + "deliberativeness": [["M"]], + "deliberativeness's": null, + "deliberatively": null, + "Delibes": [["M"]], + "Delibes's": null, + "delicacy": [["I", "M", "S"]], + "indelicacy": null, + "indelicacy's": null, + "indelicacies": null, + "delicacy's": null, + "delicacies": null, + "delicate": [["I", "Y", "P"]], + "indelicate": null, + "indelicately": null, + "indelicateness": null, + "delicately": null, + "delicateness": [["I", "M"]], + "delicatenesses": null, + "indelicateness's": null, + "delicateness's": null, + "delicates": null, + "delicatessen": [["M", "S"]], + "delicatessen's": null, + "delicatessens": null, + "deliciousness": [["M", "S"]], + "deliciousness's": null, + "deliciousnesses": null, + "delicious": [["Y", "S", "P"]], + "deliciously": null, + "deliciouses": null, + "delicti": null, + "delightedness": [["M"]], + "delightedness's": null, + "delighted": [["Y", "P"]], + "delightedly": null, + "delightfulness": [["M"]], + "delightfulness's": null, + "delightful": [["Y", "P"]], + "delightfully": null, + "Delilah": [["M"]], + "Delilah's": null, + "Delilahs": null, + "Delila": [["M"]], + "Delila's": null, + "Delinda": [["M"]], + "Delinda's": null, + "delineate": [["S", "D", "X", "V", "N", "G"]], + "delineates": null, + "delineated": null, + "delineations": null, + "delineative": null, + "delineation": [["M"]], + "delineating": null, + "delineation's": null, + "delinquency": [["M", "S"]], + "delinquency's": null, + "delinquencies": null, + "delinquent": [["S", "Y", "M"]], + "delinquents": null, + "delinquently": null, + "delinquent's": null, + "deliquesce": [["G", "S", "D"]], + "deliquescing": null, + "deliquesces": null, + "deliquesced": null, + "deliquescent": null, + "deliriousness": [["M", "S"]], + "deliriousness's": null, + "deliriousnesses": null, + "delirious": [["P", "Y"]], + "deliriously": null, + "delirium": [["S", "M"]], + "deliriums": null, + "delirium's": null, + "deli": [["S", "M"]], + "delis": null, + "deli's": null, + "Delius": [["M"]], + "Delius's": null, + "deliverables": null, + "deliverable": [["U"]], + "undeliverable": null, + "deliver": [["A", "G", "S", "D"]], + "redeliver": null, + "redelivering": null, + "redelivers": null, + "redelivered": null, + "delivering": null, + "delivers": null, + "delivered": [["U"]], + "deliverance": [["S", "M"]], + "deliverances": null, + "deliverance's": null, + "undelivered": null, + "deliverer": [["S", "M"]], + "deliverers": null, + "deliverer's": null, + "delivery": [["A", "M"]], + "redelivery": null, + "redelivery's": null, + "delivery's": null, + "deliverymen": [["M"]], + "deliverymen's": null, + "Della": [["M"]], + "Della's": null, + "Dell": [["M"]], + "Dell's": null, + "dell": [["S", "M"]], + "dells": null, + "dell's": null, + "Dellwood": [["M"]], + "Dellwood's": null, + "Delly": [["M"]], + "Delly's": null, + "Delmar": [["M"]], + "Delmar's": null, + "Delmarva": [["M"]], + "Delmarva's": null, + "Delmer": [["M"]], + "Delmer's": null, + "Delmonico": null, + "Delmore": [["M"]], + "Delmore's": null, + "Delmor": [["M"]], + "Delmor's": null, + "Del": [["M", "Y"]], + "Del's": null, + "Delora": [["M"]], + "Delora's": null, + "Delores": [["M"]], + "Delores's": null, + "Deloria": [["M"]], + "Deloria's": null, + "Deloris": [["M"]], + "Deloris's": null, + "Delphic": null, + "Delphi": [["M"]], + "Delphi's": null, + "Delphine": [["M"]], + "Delphine's": null, + "Delphinia": [["M"]], + "Delphinia's": null, + "delphinium": [["S", "M"]], + "delphiniums": null, + "delphinium's": null, + "Delphinus": [["M"]], + "Delphinus's": null, + "Delta": [["M"]], + "Delta's": null, + "delta": [["M", "S"]], + "delta's": null, + "deltas": null, + "deltoid": [["S", "M"]], + "deltoids": null, + "deltoid's": null, + "deluder": [["M"]], + "deluder's": null, + "delude": [["R", "S", "D", "G"]], + "deludes": null, + "deluded": null, + "deluding": [["Y"]], + "deludingly": null, + "deluge": [["S", "D", "G"]], + "deluges": null, + "deluged": null, + "deluging": null, + "delusional": null, + "delusion": [["S", "M"]], + "delusions": null, + "delusion's": null, + "delusiveness": [["M"]], + "delusiveness's": null, + "delusive": [["P", "Y"]], + "delusively": null, + "deluxe": null, + "delve": [["G", "Z", "S", "R", "D"]], + "delving": null, + "delvers": null, + "delves": null, + "delver": [["M"]], + "delved": null, + "delver's": null, + "demagnify": [["N"]], + "demagnification": null, + "demagogic": null, + "demagogue": [["G", "S", "D", "M"]], + "demagoguing": null, + "demagogues": null, + "demagogued": null, + "demagogue's": null, + "demagoguery": [["S", "M"]], + "demagogueries": null, + "demagoguery's": null, + "demagogy": [["M", "S"]], + "demagogy's": null, + "demagogies": null, + "demander": [["M"]], + "demander's": null, + "demand": [["G", "S", "R", "D"]], + "demanding": [["U"]], + "demands": null, + "demanded": null, + "demandingly": null, + "undemanding": null, + "demarcate": [["S", "D", "N", "G", "X"]], + "demarcates": null, + "demarcated": null, + "demarcation": [["M"]], + "demarcating": null, + "demarcations": null, + "demarcation's": null, + "Demavend": [["M"]], + "Demavend's": null, + "demean": [["G", "D", "S"]], + "demeaning": null, + "demeaned": null, + "demeans": null, + "demeanor": [["S", "M"]], + "demeanors": null, + "demeanor's": null, + "dementedness": [["M"]], + "dementedness's": null, + "demented": [["Y", "P"]], + "dementedly": null, + "dementia": [["M", "S"]], + "dementia's": null, + "dementias": null, + "Demerol": [["M"]], + "Demerol's": null, + "demesne": [["S", "M"]], + "demesnes": null, + "demesne's": null, + "Demeter": [["M"]], + "Demeter's": null, + "Demetra": [["M"]], + "Demetra's": null, + "Demetre": [["M"]], + "Demetre's": null, + "Demetria": [["M"]], + "Demetria's": null, + "Demetri": [["M", "S"]], + "Demetri's": null, + "Demetris": null, + "Demetrius": [["M"]], + "Demetrius's": null, + "demigod": [["M", "S"]], + "demigod's": null, + "demigods": null, + "demijohn": [["M", "S"]], + "demijohn's": null, + "demijohns": null, + "demimondaine": [["S", "M"]], + "demimondaines": null, + "demimondaine's": null, + "demimonde": [["S", "M"]], + "demimondes": null, + "demimonde's": null, + "demineralization": [["S", "M"]], + "demineralizations": null, + "demineralization's": null, + "Deming": [["M"]], + "Deming's": null, + "demise": [["D", "M", "G"]], + "demised": null, + "demise's": null, + "demising": null, + "demit": null, + "demitasse": [["M", "S"]], + "demitasse's": null, + "demitasses": null, + "demitted": null, + "demitting": null, + "Dem": [["M", "G"]], + "Dem's": null, + "democracy": [["M", "S"]], + "democracy's": null, + "democracies": null, + "Democratic": null, + "democratically": [["U"]], + "undemocratically": null, + "democratic": [["U"]], + "undemocratic": null, + "democratization": [["M", "S"]], + "democratization's": null, + "democratizations": null, + "democratize": [["D", "R", "S", "G"]], + "democratized": null, + "democratizer": null, + "democratizes": [["U"]], + "democratizing": null, + "undemocratizes": null, + "Democrat": [["M", "S"]], + "Democrat's": null, + "Democrats": null, + "democrat": [["S", "M"]], + "democrats": null, + "democrat's": null, + "Democritus": [["M"]], + "Democritus's": null, + "d�mod�": null, + "demo": [["D", "M", "P", "G"]], + "demoed": null, + "demo's": null, + "demoness": null, + "demoing": null, + "demographer": [["M", "S"]], + "demographer's": null, + "demographers": null, + "demographical": [["Y"]], + "demographically": null, + "demographic": [["S"]], + "demographics": null, + "demography": [["M", "S"]], + "demography's": null, + "demographies": null, + "demolisher": [["M"]], + "demolisher's": null, + "demolish": [["G", "S", "R", "D"]], + "demolishing": null, + "demolishes": null, + "demolished": null, + "demolition": [["M", "S"]], + "demolition's": null, + "demolitions": null, + "demonetization": [["S"]], + "demonetizations": null, + "demoniacal": [["Y"]], + "demoniacally": null, + "demoniac": [["S"]], + "demoniacs": null, + "demonic": null, + "demonology": [["M"]], + "demonology's": null, + "demon": [["S", "M"]], + "demons": null, + "demon's": null, + "demonstrable": [["I"]], + "indemonstrable": null, + "demonstrableness": [["M"]], + "demonstrableness's": null, + "demonstrably": [["I"]], + "indemonstrably": null, + "demonstrate": [["X", "D", "S", "N", "G", "V"]], + "demonstrations": null, + "demonstrated": null, + "demonstrates": null, + "demonstration": [["M"]], + "demonstrating": null, + "demonstrative": [["Y", "U", "P"]], + "demonstration's": null, + "demonstrativenesses": null, + "demonstrativeness": [["U", "M"]], + "undemonstrativeness": null, + "undemonstrativeness's": null, + "demonstrativeness's": null, + "demonstratives": null, + "demonstratively": null, + "undemonstratively": null, + "undemonstrative": null, + "demonstrator": [["M", "S"]], + "demonstrator's": null, + "demonstrators": null, + "demoralization": [["M"]], + "demoralization's": null, + "demoralizer": [["M"]], + "demoralizer's": null, + "demoralizing": [["Y"]], + "demoralizingly": null, + "DeMorgan": [["M"]], + "DeMorgan's": null, + "Demosthenes": [["M"]], + "Demosthenes's": null, + "demote": [["D", "G", "X"]], + "demoted": null, + "demoting": null, + "demotions": null, + "demotic": [["S"]], + "demotics": null, + "Demott": [["M"]], + "Demott's": null, + "demount": [["B"]], + "demountable": null, + "Dempsey": [["M"]], + "Dempsey's": null, + "demulcent": [["S"]], + "demulcents": null, + "demultiplex": null, + "demureness": [["S", "M"]], + "demurenesses": null, + "demureness's": null, + "demure": [["Y", "P"]], + "demurely": null, + "demurral": [["M", "S"]], + "demurral's": null, + "demurrals": null, + "demurred": null, + "demurrer": [["M", "S"]], + "demurrer's": null, + "demurrers": null, + "demurring": null, + "demur": [["R", "T", "S"]], + "demurer": null, + "demurest": null, + "demurs": null, + "demythologization": [["M"]], + "demythologization's": null, + "demythologize": [["R"]], + "demythologizer": null, + "den": null, + "Dena": [["M"]], + "Dena's": null, + "dendrite": [["M", "S"]], + "dendrite's": null, + "dendrites": null, + "Deneb": [["M"]], + "Deneb's": null, + "Denebola": [["M"]], + "Denebola's": null, + "Deneen": [["M"]], + "Deneen's": null, + "Dene": [["M"]], + "Dene's": null, + "Deng": [["M"]], + "Deng's": null, + "dengue": [["M", "S"]], + "dengue's": null, + "dengues": null, + "deniable": [["U"]], + "undeniable": [["P"]], + "denial": [["S", "M"]], + "denials": null, + "denial's": null, + "Denice": [["M"]], + "Denice's": null, + "denier": [["M"]], + "denier's": null, + "denigrate": [["V", "N", "G", "X", "S", "D"]], + "denigrative": null, + "denigration": [["M"]], + "denigrating": null, + "denigrations": null, + "denigrates": null, + "denigrated": null, + "denigration's": null, + "denim": [["S", "M"]], + "denims": null, + "denim's": null, + "Denise": [["M"]], + "Denise's": null, + "Deni": [["S", "M"]], + "Denis": null, + "Deni's": null, + "denizen": [["S", "M", "D", "G"]], + "denizens": null, + "denizen's": null, + "denizened": null, + "denizening": null, + "Den": [["M"]], + "Den's": null, + "De": [["N", "M"]], + "Dion": [["M"]], + "De's": null, + "Denmark": [["M"]], + "Denmark's": null, + "Denna": [["M"]], + "Denna's": null, + "denned": null, + "Dennet": [["M"]], + "Dennet's": null, + "Denney": [["M"]], + "Denney's": null, + "Dennie": [["M"]], + "Dennie's": null, + "Denni": [["M", "S"]], + "Denni's": null, + "Dennis": null, + "denning": null, + "Dennison": [["M"]], + "Dennison's": null, + "Denny": [["M"]], + "Denny's": null, + "denominate": [["V"]], + "denominative": null, + "denominational": [["Y"]], + "denominationally": null, + "denote": [["B"]], + "denotable": null, + "denouement": [["M", "S"]], + "denouement's": null, + "denouements": null, + "denounce": [["L", "Z", "R", "S", "D", "G"]], + "denouncement": [["S", "M"]], + "denouncers": null, + "denouncer": [["M"]], + "denounces": null, + "denounced": null, + "denouncing": null, + "denouncements": null, + "denouncement's": null, + "denouncer's": null, + "dense": [["F", "R"]], + "denser": null, + "densely": null, + "denseness": [["S", "M"]], + "densenesses": null, + "denseness's": null, + "densitometer": [["M", "S"]], + "densitometer's": null, + "densitometers": null, + "densitometric": null, + "densitometry": [["M"]], + "densitometry's": null, + "density": [["M", "S"]], + "density's": null, + "densities": null, + "dens": [["R", "T"]], + "densest": null, + "dental": [["Y", "S"]], + "dentally": null, + "dentals": null, + "dentifrice": [["S", "M"]], + "dentifrices": null, + "dentifrice's": null, + "dentine's": null, + "dentin": [["S", "M"]], + "dentins": null, + "dentin's": null, + "dent": [["I", "S", "G", "D"]], + "indent": [["R"]], + "indents": null, + "indenting": null, + "indented": [["U"]], + "dents": null, + "denting": null, + "dented": null, + "dentistry": [["M", "S"]], + "dentistry's": null, + "dentistries": null, + "dentist": [["S", "M"]], + "dentists": null, + "dentist's": null, + "dentition": [["M", "S"]], + "dentition's": null, + "dentitions": null, + "dent's": null, + "denture": [["I", "M", "S"]], + "indenture": [["D", "G"]], + "indenture's": null, + "indentures": null, + "denture's": null, + "dentures": null, + "denuclearize": [["G", "S", "D"]], + "denuclearizing": null, + "denuclearizes": null, + "denuclearized": null, + "denudation": [["S", "M"]], + "denudations": null, + "denudation's": null, + "denude": [["D", "G"]], + "denuded": null, + "denuding": null, + "denuder": [["M"]], + "denuder's": null, + "denunciate": [["V", "N", "G", "S", "D", "X"]], + "denunciative": null, + "denunciation": [["M"]], + "denunciating": null, + "denunciates": null, + "denunciated": null, + "denunciations": null, + "denunciation's": null, + "Denver": [["M"]], + "Denver's": null, + "denying": [["Y"]], + "denyingly": null, + "Deny": [["M"]], + "Deny's": null, + "Denys": null, + "Denyse": [["M"]], + "Denyse's": null, + "deny": [["S", "R", "D", "Z", "G"]], + "denies": null, + "denied": null, + "deniers": null, + "deodorant": [["S", "M"]], + "deodorants": null, + "deodorant's": null, + "deodorization": [["S", "M"]], + "deodorizations": null, + "deodorization's": null, + "deodorize": [["G", "Z", "S", "R", "D"]], + "deodorizing": null, + "deodorizers": null, + "deodorizes": null, + "deodorizer": [["M"]], + "deodorized": null, + "deodorizer's": null, + "Deon": [["M"]], + "Deon's": null, + "Deonne": [["M"]], + "Deonne's": null, + "deoxyribonucleic": null, + "depart": [["L"]], + "department": [["M", "S"]], + "departmentalization": [["S", "M"]], + "departmentalizations": null, + "departmentalization's": null, + "departmentalize": [["D", "S", "G"]], + "departmentalized": null, + "departmentalizes": null, + "departmentalizing": null, + "departmental": [["Y"]], + "departmentally": null, + "department's": null, + "departments": null, + "departure": [["M", "S"]], + "departure's": null, + "departures": null, + "dependability": [["M", "S"]], + "dependability's": null, + "dependabilities": null, + "dependableness": [["M"]], + "dependableness's": null, + "dependable": [["P"]], + "dependably": null, + "Dependant": [["M", "S"]], + "Dependant's": null, + "Dependants": null, + "depend": [["B"]], + "dependence": [["I", "S", "M"]], + "independence": null, + "independences": null, + "independence's": null, + "dependences": null, + "dependence's": null, + "dependency": [["M", "S"]], + "dependency's": null, + "dependencies": null, + "dependent": [["I", "Y", "S"]], + "independent": null, + "independently": null, + "independents": null, + "dependently": null, + "dependents": null, + "dependent's": null, + "depicted": [["U"]], + "undepicted": null, + "depicter": [["M"]], + "depicter's": null, + "depiction": [["S", "M"]], + "depictions": null, + "depiction's": null, + "depict": [["R", "D", "S", "G"]], + "depicts": null, + "depicting": null, + "depilatory": [["S"]], + "depilatories": null, + "deplete": [["V", "G", "N", "S", "D", "X"]], + "depletive": null, + "depleting": null, + "depletion": [["M"]], + "depletes": null, + "depleted": null, + "depletions": null, + "depletion's": null, + "deplorableness": [["M"]], + "deplorableness's": null, + "deplorable": [["P"]], + "deplorably": null, + "deplorer": [["M"]], + "deplorer's": null, + "deplore": [["S", "R", "D", "B", "G"]], + "deplores": null, + "deplored": null, + "deploring": [["Y"]], + "deploringly": null, + "deployable": null, + "deploy": [["A", "G", "D", "L", "S"]], + "redeploy": null, + "redeploying": null, + "redeployed": null, + "redeployment": null, + "redeploys": null, + "deploying": null, + "deployed": null, + "deployment": [["S", "A", "M"]], + "deploys": null, + "deployments": null, + "redeployments": null, + "redeployment's": null, + "deployment's": null, + "depolarize": null, + "deponent": [["S"]], + "deponents": null, + "deportation": [["M", "S"]], + "deportation's": null, + "deportations": null, + "deportee": [["S", "M"]], + "deportees": null, + "deportee's": null, + "deport": [["L", "G"]], + "deportment": [["M", "S"]], + "deporting": null, + "deportment's": null, + "deportments": null, + "depose": null, + "deposit": [["A", "D", "G", "S"]], + "redeposit": [["M"]], + "redeposited": null, + "redepositing": null, + "redeposits": null, + "deposited": null, + "depositing": null, + "deposits": null, + "depositary": [["M"]], + "depositary's": null, + "deposition": [["A"]], + "redeposition": null, + "depositor": [["S", "A", "M"]], + "depositors": null, + "redepositors": null, + "redepositor": null, + "redepositor's": null, + "depositor's": null, + "depository": [["M", "S"]], + "depository's": null, + "depositories": null, + "depravedness": [["M"]], + "depravedness's": null, + "depraved": [["P", "Y"]], + "depravedly": null, + "deprave": [["G", "S", "R", "D"]], + "depraving": null, + "depraves": null, + "depraver": [["M"]], + "depraver's": null, + "depravity": [["S", "M"]], + "depravities": null, + "depravity's": null, + "deprecate": [["X", "S", "D", "N", "G"]], + "deprecations": null, + "deprecates": null, + "deprecated": null, + "deprecation": [["M"]], + "deprecating": [["Y"]], + "deprecatingly": null, + "deprecation's": null, + "deprecatory": null, + "depreciable": null, + "depreciate": [["X", "D", "S", "N", "G", "V"]], + "depreciations": null, + "depreciated": null, + "depreciates": null, + "depreciation": [["M"]], + "depreciating": [["Y"]], + "depreciative": [["Y"]], + "depreciatingly": null, + "depreciation's": null, + "depreciatively": null, + "depressant": [["S"]], + "depressants": null, + "depressible": null, + "depression": [["M", "S"]], + "depression's": null, + "depressions": null, + "depressive": [["Y", "S"]], + "depressively": null, + "depressives": null, + "depressor": [["M", "S"]], + "depressor's": null, + "depressors": null, + "depress": [["V"]], + "deprive": [["G", "S", "D"]], + "depriving": null, + "deprives": null, + "deprived": null, + "depth": [["M"]], + "depth's": null, + "depths": null, + "Dept": [["M"]], + "Dept's": null, + "deputation": [["S", "M"]], + "deputations": null, + "deputation's": null, + "depute": [["S", "D", "G"]], + "deputes": null, + "deputed": null, + "deputing": null, + "deputize": [["D", "S", "G"]], + "deputized": null, + "deputizes": null, + "deputizing": null, + "deputy": [["M", "S"]], + "deputy's": null, + "deputies": null, + "dequeue": null, + "derail": [["L"]], + "derailment": [["M", "S"]], + "d�railleur": [["M", "S"]], + "d�railleur's": null, + "d�railleurs": null, + "derailment's": null, + "derailments": null, + "derange": [["L"]], + "derangement": [["M", "S"]], + "derangement's": null, + "derangements": null, + "Derbyshire": [["M"]], + "Derbyshire's": null, + "derby": [["S", "M"]], + "derbies": null, + "derby's": null, + "Derby": [["S", "M"]], + "Derbies": null, + "Derby's": null, + "dereference": [["Z"]], + "dereferencers": null, + "Derek": [["M"]], + "Derek's": null, + "dereliction": [["S", "M"]], + "derelictions": null, + "dereliction's": null, + "derelict": [["S"]], + "derelicts": null, + "Derick": [["M"]], + "Derick's": null, + "deride": [["D"]], + "derided": null, + "deriding": [["Y"]], + "deridingly": null, + "derision": [["S", "M"]], + "derisions": null, + "derision's": null, + "derisiveness": [["M", "S"]], + "derisiveness's": null, + "derisivenesses": null, + "derisive": [["P", "Y"]], + "derisively": null, + "derisory": null, + "derivable": [["U"]], + "underivable": null, + "derivate": [["X", "N", "V"]], + "derivations": null, + "derivation": [["M"]], + "derivative": [["S", "P", "Y", "M"]], + "derivation's": null, + "derivativeness": [["M"]], + "derivativeness's": null, + "derivatives": null, + "derivatively": null, + "derivative's": null, + "derive": [["B"]], + "derived": [["U"]], + "underived": null, + "Derk": [["M"]], + "Derk's": null, + "Der": [["M"]], + "Der's": null, + "dermal": null, + "dermatitides": null, + "dermatitis": [["M", "S"]], + "dermatitis's": null, + "dermatitises": null, + "dermatological": null, + "dermatologist": [["M", "S"]], + "dermatologist's": null, + "dermatologists": null, + "dermatology": [["M", "S"]], + "dermatology's": null, + "dermatologies": null, + "dermis": [["S", "M"]], + "dermises": null, + "dermis's": null, + "Dermot": [["M"]], + "Dermot's": null, + "derogate": [["X", "D", "S", "N", "G", "V"]], + "derogations": null, + "derogated": null, + "derogates": null, + "derogation": [["M"]], + "derogating": null, + "derogative": null, + "derogation's": null, + "derogatorily": null, + "derogatory": null, + "Derrek": [["M"]], + "Derrek's": null, + "Derrick": [["M"]], + "Derrick's": null, + "derrick": [["S", "M", "D", "G"]], + "derricks": null, + "derrick's": null, + "derricked": null, + "derricking": null, + "Derrida": [["M"]], + "Derrida's": null, + "derri�re": [["S"]], + "derri�res": null, + "Derrik": [["M"]], + "Derrik's": null, + "Derril": [["M"]], + "Derril's": null, + "derringer": [["S", "M"]], + "derringers": null, + "derringer's": null, + "Derron": [["M"]], + "Derron's": null, + "Derry": [["M"]], + "Derry's": null, + "dervish": [["S", "M"]], + "dervishes": null, + "dervish's": null, + "Derward": [["M"]], + "Derward's": null, + "Derwin": [["M"]], + "Derwin's": null, + "Des": null, + "desalinate": [["N", "G", "S", "D", "X"]], + "desalination": [["M"]], + "desalinating": null, + "desalinates": null, + "desalinated": null, + "desalinations": null, + "desalination's": null, + "desalinization": [["M", "S"]], + "desalinization's": null, + "desalinizations": null, + "desalinize": [["G", "S", "D"]], + "desalinizing": null, + "desalinizes": null, + "desalinized": null, + "desalt": [["G"]], + "desalting": null, + "descant": [["M"]], + "descant's": null, + "Descartes": [["M"]], + "Descartes's": null, + "descendant": [["S", "M"]], + "descendants": null, + "descendant's": null, + "descended": [["F", "U"]], + "condescended": null, + "undescended": null, + "descendent's": null, + "descender": [["M"]], + "descender's": null, + "descending": [["F"]], + "descends": [["F"]], + "condescends": null, + "descend": [["Z", "G", "S", "D", "R"]], + "descenders": null, + "descent": null, + "describable": [["I"]], + "indescribable": [["P", "S"]], + "describe": [["Z", "B"]], + "describers": null, + "description": [["M", "S"]], + "description's": null, + "descriptions": null, + "descriptiveness": [["M", "S"]], + "descriptiveness's": null, + "descriptivenesses": null, + "descriptive": [["S", "Y", "P"]], + "descriptives": null, + "descriptively": null, + "descriptor": [["S", "M"]], + "descriptors": null, + "descriptor's": null, + "descry": [["S", "D", "G"]], + "descries": null, + "descried": null, + "descrying": null, + "Desdemona": [["M"]], + "Desdemona's": null, + "desecrater": [["M"]], + "desecrater's": null, + "desecrate": [["S", "R", "D", "G", "N", "X"]], + "desecrates": null, + "desecrated": null, + "desecrating": null, + "desecration": [["M"]], + "desecrations": null, + "desecration's": null, + "deserter": [["M"]], + "deserter's": null, + "desertification": null, + "desertion": [["M", "S"]], + "desertion's": null, + "desertions": null, + "desert": [["Z", "G", "M", "R", "D", "S"]], + "deserters": null, + "deserting": null, + "desert's": null, + "deserted": null, + "deserts": null, + "deservedness": [["M"]], + "deservedness's": null, + "deserved": [["Y", "U"]], + "deservedly": null, + "undeservedly": null, + "undeserved": null, + "deserve": [["J"]], + "deservings": null, + "deserving": [["Y"]], + "deservingly": null, + "d�shabill�'s": null, + "desiccant": [["S"]], + "desiccants": null, + "desiccate": [["X", "N", "G", "S", "D"]], + "desiccations": null, + "desiccation": [["M"]], + "desiccating": null, + "desiccates": null, + "desiccated": null, + "desiccation's": null, + "desiccator": [["S", "M"]], + "desiccators": null, + "desiccator's": null, + "desiderata": null, + "desideratum": [["M"]], + "desideratum's": null, + "designable": null, + "design": [["A", "D", "G", "S"]], + "redesign": null, + "redesigned": null, + "redesigning": null, + "redesigns": null, + "designed": [["Y"]], + "designing": [["U"]], + "designs": null, + "designate": [["V", "N", "G", "S", "D", "X"]], + "designative": null, + "designation": [["M"]], + "designating": null, + "designates": null, + "designated": null, + "designations": null, + "designational": null, + "designation's": null, + "designator": [["S", "M"]], + "designators": null, + "designator's": null, + "designedly": null, + "designer": [["M"]], + "designer's": null, + "undesigning": null, + "Desi": [["M"]], + "Desi's": null, + "desirabilia": null, + "desirability's": null, + "desirability": [["U", "S"]], + "undesirability": null, + "undesirabilities": null, + "desirabilities": null, + "desirableness": [["S", "M"]], + "desirablenesses": null, + "desirableness's": [["U"]], + "undesirableness's": null, + "desirable": [["U", "P", "S"]], + "undesirable": null, + "undesirableness": null, + "undesirables": null, + "desirables": null, + "desirably": [["U"]], + "undesirably": null, + "Desirae": [["M"]], + "Desirae's": null, + "desire": [["B", "R"]], + "desirer": [["M"]], + "desired": [["U"]], + "undesired": null, + "Desiree": [["M"]], + "Desiree's": null, + "desirer's": null, + "Desiri": [["M"]], + "Desiri's": null, + "desirousness": [["M"]], + "desirousness's": null, + "desirous": [["P", "Y"]], + "desirously": null, + "desist": [["D", "S", "G"]], + "desisted": null, + "desists": null, + "desisting": null, + "desk": [["S", "M"]], + "desks": null, + "desk's": null, + "desktop": [["S"]], + "desktops": null, + "Desmond": [["M"]], + "Desmond's": null, + "Desmund": [["M"]], + "Desmund's": null, + "desolateness": [["S", "M"]], + "desolatenesses": null, + "desolateness's": null, + "desolate": [["P", "X", "D", "R", "S", "Y", "N", "G"]], + "desolations": null, + "desolated": null, + "desolater": [["M"]], + "desolates": null, + "desolately": null, + "desolation": [["M"]], + "desolating": [["Y"]], + "desolater's": null, + "desolatingly": null, + "desolation's": null, + "desorption": [["M"]], + "desorption's": null, + "despairer": [["M"]], + "despairer's": null, + "despairing": [["Y"]], + "despairingly": null, + "despair": [["S", "G", "D", "R"]], + "despairs": null, + "despaired": null, + "desperadoes": null, + "desperado": [["M"]], + "desperado's": null, + "desperateness": [["S", "M"]], + "desperatenesses": null, + "desperateness's": null, + "desperate": [["Y", "N", "X", "P"]], + "desperately": null, + "desperation": [["M"]], + "desperations": null, + "desperation's": null, + "despicable": null, + "despicably": null, + "despiser": [["M"]], + "despiser's": null, + "despise": [["S", "R", "D", "G"]], + "despises": null, + "despised": null, + "despising": null, + "despoil": [["L"]], + "despoilment": [["M", "S"]], + "despoilment's": null, + "despoilments": null, + "despond": null, + "despondence": [["S"]], + "despondences": null, + "despondency": [["M", "S"]], + "despondency's": null, + "despondencies": null, + "despondent": [["Y"]], + "despondently": null, + "despotic": null, + "despotically": null, + "despotism": [["S", "M"]], + "despotisms": null, + "despotism's": null, + "dessert": [["S", "M"]], + "desserts": null, + "dessert's": null, + "dessicate": [["D", "N"]], + "dessicated": null, + "dessication": null, + "d'Estaing": null, + "destinate": [["N", "X"]], + "destination": [["M"]], + "destinations": null, + "destination's": null, + "destine": [["G", "S", "D"]], + "destining": null, + "destines": null, + "destined": null, + "destiny": [["M", "S"]], + "destiny's": null, + "destinies": null, + "destituteness": [["M"]], + "destituteness's": null, + "destitute": [["N", "X", "P"]], + "destitution": [["M"]], + "destitutions": null, + "destitution's": null, + "destroy": [["B", "Z", "G", "D", "R", "S"]], + "destroyable": null, + "destroyers": null, + "destroying": null, + "destroyed": null, + "destroyer": [["M"]], + "destroys": null, + "destroyer's": null, + "destructibility": [["S", "M", "I"]], + "destructibilities": null, + "indestructibilities": null, + "destructibility's": null, + "indestructibility's": null, + "indestructibility": null, + "destructible": [["I"]], + "indestructible": [["P"]], + "destruction": [["S", "M"]], + "destructions": null, + "destruction's": null, + "destructiveness": [["M", "S"]], + "destructiveness's": null, + "destructivenesses": null, + "destructive": [["Y", "P"]], + "destructively": null, + "destructor": [["M"]], + "destructor's": null, + "destruct": [["V", "G", "S", "D"]], + "destructing": null, + "destructs": null, + "destructed": null, + "desuetude": [["M", "S"]], + "desuetude's": null, + "desuetudes": null, + "desultorily": null, + "desultoriness": [["M"]], + "desultoriness's": null, + "desultory": [["P"]], + "detachedness": [["M"]], + "detachedness's": null, + "detached": [["Y", "P"]], + "detachedly": null, + "detacher": [["M"]], + "detacher's": null, + "detach": [["L", "S", "R", "D", "B", "G"]], + "detachment": [["S", "M"]], + "detaches": null, + "detachable": null, + "detaching": null, + "detachments": null, + "detachment's": null, + "detailedness": [["M"]], + "detailedness's": null, + "detailed": [["Y", "P"]], + "detailedly": null, + "detainee": [["S"]], + "detainees": null, + "detainer": [["M"]], + "detainer's": null, + "detain": [["L", "G", "R", "D", "S"]], + "detainment": [["M", "S"]], + "detaining": null, + "detained": null, + "detains": null, + "detainment's": null, + "detainments": null, + "d'etat": null, + "detectability": [["U"]], + "undetectability": null, + "detectable": [["U"]], + "undetectable": null, + "detectably": [["U"]], + "undetectably": null, + "detect": [["D", "B", "S", "V", "G"]], + "detected": [["U"]], + "detects": null, + "detective": [["M", "S"]], + "detecting": null, + "undetected": null, + "detection": [["S", "M"]], + "detections": null, + "detection's": null, + "detective's": null, + "detectives": null, + "detector": [["M", "S"]], + "detector's": null, + "detectors": null, + "d�tente": null, + "detentes": null, + "detention": [["S", "M"]], + "detentions": null, + "detention's": null, + "detergency": [["M"]], + "detergency's": null, + "detergent": [["S", "M"]], + "detergents": null, + "detergent's": null, + "deteriorate": [["X", "D", "S", "N", "G", "V"]], + "deteriorations": null, + "deteriorated": null, + "deteriorates": null, + "deterioration": [["M"]], + "deteriorating": null, + "deteriorative": null, + "deterioration's": null, + "determent": [["S", "M"]], + "determents": null, + "determent's": null, + "determinability": [["M"]], + "determinability's": null, + "determinable": [["I", "P"]], + "indeterminable": null, + "indeterminableness": null, + "determinableness": [["I", "M"]], + "indeterminableness's": null, + "determinableness's": null, + "determinacy": [["I"]], + "indeterminacy": [["M", "S"]], + "determinant": [["M", "S"]], + "determinant's": null, + "determinants": null, + "determinateness": [["I", "M"]], + "indeterminateness": null, + "indeterminateness's": null, + "determinateness's": null, + "determinate": [["P", "Y", "I", "N"]], + "determinately": null, + "indeterminately": null, + "indeterminate": null, + "indetermination": null, + "determination": [["I", "M"]], + "indetermination's": null, + "determination's": null, + "determinativeness": [["M"]], + "determinativeness's": null, + "determinative": [["P"]], + "determinedly": null, + "determinedness": [["M"]], + "determinedness's": null, + "determined": [["U"]], + "undetermined": null, + "determine": [["G", "A", "S", "D"]], + "determining": null, + "redetermining": null, + "redetermine": null, + "redetermines": null, + "redetermined": null, + "determines": null, + "determiner": [["S", "M"]], + "determiners": null, + "determiner's": null, + "determinism": [["M", "S"]], + "determinism's": [["I"]], + "determinisms": null, + "indeterminism's": null, + "deterministically": null, + "deterministic": [["I"]], + "indeterministic": null, + "deterred": [["U"]], + "undeterred": null, + "deterrence": [["S", "M"]], + "deterrences": null, + "deterrence's": null, + "deterrent": [["S", "M", "Y"]], + "deterrents": null, + "deterrent's": null, + "deterrently": null, + "deterring": null, + "detersive": [["S"]], + "detersives": null, + "deter": [["S", "L"]], + "deters": [["V"]], + "detestableness": [["M"]], + "detestableness's": null, + "detestable": [["P"]], + "detestably": null, + "detestation": [["S", "M"]], + "detestations": null, + "detestation's": null, + "dethrone": [["L"]], + "dethronement": [["S", "M"]], + "dethronements": null, + "dethronement's": null, + "detonable": null, + "detonated": [["U"]], + "undetonated": null, + "detonate": [["X", "D", "S", "N", "G", "V"]], + "detonations": null, + "detonates": null, + "detonation": [["M"]], + "detonating": null, + "detonative": null, + "detonation's": null, + "detonator": [["M", "S"]], + "detonator's": null, + "detonators": null, + "detour": [["G"]], + "detouring": null, + "detoxification": [["M"]], + "detoxification's": null, + "detoxify": [["N", "X", "G", "S", "D"]], + "detoxifications": null, + "detoxifying": null, + "detoxifies": null, + "detoxified": null, + "detox": [["S", "D", "G"]], + "detoxes": null, + "detoxed": null, + "detoxing": null, + "detract": [["G", "V", "D"]], + "detracting": null, + "detractive": [["Y"]], + "detracted": null, + "detractively": null, + "d'etre": null, + "detribalize": [["G", "S", "D"]], + "detribalizing": null, + "detribalizes": null, + "detribalized": null, + "detrimental": [["S", "Y"]], + "detrimentals": null, + "detrimentally": null, + "detriment": [["S", "M"]], + "detriments": null, + "detriment's": null, + "detritus": [["M"]], + "detritus's": null, + "Detroit": [["M"]], + "Detroit's": null, + "deuced": [["Y"]], + "deucedly": null, + "deuce": [["S", "D", "G", "M"]], + "deuces": null, + "deucing": null, + "deuce's": null, + "deus": null, + "deuterium": [["M", "S"]], + "deuterium's": null, + "deuteriums": null, + "deuteron": [["M"]], + "deuteron's": null, + "Deuteronomy": [["M"]], + "Deuteronomy's": null, + "Deutsch": [["M"]], + "Deutsch's": null, + "Deva": [["M"]], + "Deva's": null, + "Devanagari": [["M"]], + "Devanagari's": null, + "Devan": [["M"]], + "Devan's": null, + "devastate": [["X", "V", "N", "G", "S", "D"]], + "devastations": null, + "devastative": null, + "devastation": [["M"]], + "devastating": [["Y"]], + "devastates": null, + "devastated": null, + "devastatingly": null, + "devastation's": null, + "devastator": [["S", "M"]], + "devastators": null, + "devastator's": null, + "develop": [["A", "L", "Z", "S", "G", "D", "R"]], + "redevelop": null, + "redevelopment": null, + "redevelopers": null, + "redevelops": null, + "redeveloping": null, + "redeveloped": null, + "redeveloper": null, + "development": [["A", "S", "M"]], + "developers": null, + "develops": null, + "developing": null, + "developed": [["U"]], + "developer": [["M", "A"]], + "undeveloped": null, + "developer's": null, + "redeveloper's": null, + "developmental": [["Y"]], + "developmentally": null, + "redevelopments": null, + "redevelopment's": null, + "developments": null, + "development's": null, + "deviance": [["M", "S"]], + "deviance's": null, + "deviances": null, + "deviancy": [["S"]], + "deviancies": null, + "deviant": [["Y", "M", "S"]], + "deviantly": null, + "deviant's": null, + "deviants": null, + "deviated": [["U"]], + "undeviated": null, + "deviate": [["X", "S", "D", "G", "N"]], + "deviations": null, + "deviates": null, + "deviating": [["U"]], + "deviation": [["M"]], + "undeviating": [["Y"]], + "deviation's": null, + "devilishness": [["M", "S"]], + "devilishness's": null, + "devilishnesses": null, + "devilish": [["P", "Y"]], + "devilishly": null, + "devilment": [["S", "M"]], + "devilments": null, + "devilment's": null, + "devilry": [["M", "S"]], + "devilry's": null, + "devilries": null, + "devil": [["S", "L", "M", "D", "G"]], + "devils": null, + "devil's": null, + "deviled": null, + "deviling": null, + "deviltry": [["M", "S"]], + "deviltry's": null, + "deviltries": null, + "Devi": [["M"]], + "Devi's": null, + "Devina": [["M"]], + "Devina's": null, + "Devin": [["M"]], + "Devin's": null, + "Devinne": [["M"]], + "Devinne's": null, + "deviousness": [["S", "M"]], + "deviousnesses": null, + "deviousness's": null, + "devious": [["Y", "P"]], + "deviously": null, + "devise": [["J", "R"]], + "devisings": null, + "deviser": [["M"]], + "deviser's": null, + "Devland": [["M"]], + "Devland's": null, + "Devlen": [["M"]], + "Devlen's": null, + "Devlin": [["M"]], + "Devlin's": null, + "Dev": [["M"]], + "Dev's": null, + "devoice": null, + "devolution": [["M", "S"]], + "devolution's": null, + "devolutions": null, + "devolve": [["G", "S", "D"]], + "devolving": null, + "devolves": null, + "devolved": null, + "Devondra": [["M"]], + "Devondra's": null, + "Devonian": null, + "Devon": [["M"]], + "Devon's": null, + "Devonna": [["M"]], + "Devonna's": null, + "Devonne": [["M"]], + "Devonne's": null, + "Devonshire": [["M"]], + "Devonshire's": null, + "Devora": [["M"]], + "Devora's": null, + "devoted": [["Y"]], + "devotedly": null, + "devotee": [["M", "S"]], + "devotee's": null, + "devotees": null, + "devote": [["X", "N"]], + "devotions": null, + "devotion": [["M"]], + "devotional": [["Y", "S"]], + "devotionally": null, + "devotionals": null, + "devotion's": null, + "devourer": [["M"]], + "devourer's": null, + "devour": [["S", "R", "D", "Z", "G"]], + "devours": null, + "devoured": null, + "devourers": null, + "devouring": null, + "devoutness": [["M", "S"]], + "devoutness's": null, + "devoutnesses": null, + "devout": [["P", "R", "Y", "T"]], + "devouter": null, + "devoutly": null, + "devoutest": null, + "Devy": [["M"]], + "Devy's": null, + "Dewain": [["M"]], + "Dewain's": null, + "dewar": null, + "Dewar": [["M"]], + "Dewar's": null, + "Dewayne": [["M"]], + "Dewayne's": null, + "dewberry": [["M", "S"]], + "dewberry's": null, + "dewberries": null, + "dewclaw": [["S", "M"]], + "dewclaws": null, + "dewclaw's": null, + "dewdrop": [["M", "S"]], + "dewdrop's": null, + "dewdrops": null, + "Dewey": [["M"]], + "Dewey's": null, + "Dewie": [["M"]], + "Dewie's": null, + "dewiness": [["M", "S"]], + "dewiness's": null, + "dewinesses": null, + "Dewitt": [["M"]], + "Dewitt's": null, + "dewlap": [["M", "S"]], + "dewlap's": null, + "dewlaps": null, + "Dew": [["M"]], + "Dew's": null, + "dew": [["M", "D", "G", "S"]], + "dew's": null, + "dewed": null, + "dewing": null, + "dews": null, + "dewy": [["T", "P", "R"]], + "dewiest": null, + "dewier": null, + "Dexedrine": [["M"]], + "Dexedrine's": null, + "dexes": [["I"]], + "indexes": null, + "Dex": [["M"]], + "Dex's": null, + "dexter": null, + "dexterity": [["M", "S"]], + "dexterity's": null, + "dexterities": null, + "Dexter": [["M"]], + "Dexter's": null, + "dexterousness": [["M", "S"]], + "dexterousness's": null, + "dexterousnesses": null, + "dexterous": [["P", "Y"]], + "dexterously": null, + "dextrose": [["S", "M"]], + "dextroses": null, + "dextrose's": null, + "DH": null, + "Dhaka": null, + "Dhaulagiri": [["M"]], + "Dhaulagiri's": null, + "dhoti": [["S", "M"]], + "dhotis": null, + "dhoti's": null, + "dhow": [["M", "S"]], + "dhow's": null, + "dhows": null, + "DI": null, + "diabase": [["M"]], + "diabase's": null, + "diabetes": [["M"]], + "diabetes's": null, + "diabetic": [["S"]], + "diabetics": null, + "diabolic": null, + "diabolicalness": [["M"]], + "diabolicalness's": null, + "diabolical": [["Y", "P"]], + "diabolically": null, + "diabolism": [["M"]], + "diabolism's": null, + "diachronic": [["P"]], + "diachronicness": null, + "diacritical": [["Y", "S"]], + "diacritically": null, + "diacriticals": null, + "diacritic": [["M", "S"]], + "diacritic's": null, + "diacritics": null, + "diadem": [["G", "M", "D", "S"]], + "diademing": null, + "diadem's": null, + "diademed": null, + "diadems": null, + "diaereses": null, + "diaeresis": [["M"]], + "diaeresis's": null, + "Diaghilev": [["M"]], + "Diaghilev's": null, + "diagnometer": [["S", "M"]], + "diagnometers": null, + "diagnometer's": null, + "diagnosable": [["U"]], + "undiagnosable": null, + "diagnose": [["B", "G", "D", "S"]], + "diagnosing": null, + "diagnosed": [["U"]], + "diagnoses": null, + "undiagnosed": null, + "diagnosis": [["M"]], + "diagnosis's": null, + "diagnostically": null, + "diagnostician": [["S", "M"]], + "diagnosticians": null, + "diagnostician's": null, + "diagnostic": [["M", "S"]], + "diagnostic's": null, + "diagnostics": [["M"]], + "diagnostics's": null, + "diagonalize": [["G", "D", "S", "B"]], + "diagonalizing": null, + "diagonalized": null, + "diagonalizes": null, + "diagonalizable": null, + "diagonal": [["Y", "S"]], + "diagonally": null, + "diagonals": null, + "diagrammable": null, + "diagrammatic": null, + "diagrammaticality": null, + "diagrammatically": null, + "diagrammed": null, + "diagrammer": [["S", "M"]], + "diagrammers": null, + "diagrammer's": null, + "diagramming": null, + "diagram": [["M", "S"]], + "diagram's": null, + "diagrams": null, + "Diahann": [["M"]], + "Diahann's": null, + "dialectal": [["Y"]], + "dialectally": null, + "dialectical": [["Y"]], + "dialectically": null, + "dialectic": [["M", "S"]], + "dialectic's": null, + "dialectics": null, + "dialect": [["M", "S"]], + "dialect's": null, + "dialects": null, + "dialed": [["A"]], + "redialed": null, + "dialer": [["M"]], + "dialer's": null, + "dialing": [["M"]], + "dialing's": null, + "dial": [["M", "R", "D", "S", "G", "Z", "J"]], + "dial's": null, + "dials": [["A"]], + "dialers": null, + "dialings": null, + "dialogged": null, + "dialogging": null, + "dialog": [["M", "S"]], + "dialog's": null, + "dialogs": null, + "redials": null, + "dialysis": [["M"]], + "dialysis's": null, + "dialyzed": [["U"]], + "undialyzed": [["S", "M"]], + "dialyzes": null, + "diam": null, + "diamagnetic": null, + "diameter": [["M", "S"]], + "diameter's": null, + "diameters": null, + "diametric": null, + "diametrical": [["Y"]], + "diametrically": null, + "diamondback": [["S", "M"]], + "diamondbacks": null, + "diamondback's": null, + "diamond": [["G", "S", "M", "D"]], + "diamonding": null, + "diamonds": null, + "diamond's": null, + "diamonded": null, + "Diana": [["M"]], + "Diana's": null, + "Diandra": [["M"]], + "Diandra's": null, + "Diane": [["M"]], + "Diane's": null, + "Dianemarie": [["M"]], + "Dianemarie's": null, + "Dian": [["M"]], + "Dian's": null, + "Dianna": [["M"]], + "Dianna's": null, + "Dianne": [["M"]], + "Dianne's": null, + "Diann": [["M"]], + "Diann's": null, + "Diannne": [["M"]], + "Diannne's": null, + "diapason": [["M", "S"]], + "diapason's": null, + "diapasons": null, + "diaper": [["S", "G", "D", "M"]], + "diapers": null, + "diapering": null, + "diapered": null, + "diaper's": null, + "diaphanousness": [["M"]], + "diaphanousness's": null, + "diaphanous": [["Y", "P"]], + "diaphanously": null, + "diaphragmatic": null, + "diaphragm": [["S", "M"]], + "diaphragms": null, + "diaphragm's": null, + "diarist": [["S", "M"]], + "diarists": null, + "diarist's": null, + "Diarmid": [["M"]], + "Diarmid's": null, + "diarrheal": null, + "diarrhea": [["M", "S"]], + "diarrhea's": null, + "diarrheas": null, + "diary": [["M", "S"]], + "diary's": null, + "diaries": null, + "diaspora": null, + "Diaspora": [["S", "M"]], + "Diasporas": null, + "Diaspora's": null, + "diastase": [["S", "M"]], + "diastases": null, + "diastase's": null, + "diastole": [["M", "S"]], + "diastole's": null, + "diastoles": null, + "diastolic": null, + "diathermy": [["S", "M"]], + "diathermies": null, + "diathermy's": null, + "diathesis": [["M"]], + "diathesis's": null, + "diatomic": null, + "diatom": [["S", "M"]], + "diatoms": null, + "diatom's": null, + "diatonic": null, + "diatribe": [["M", "S"]], + "diatribe's": null, + "diatribes": null, + "Diaz's": null, + "dibble": [["S", "D", "M", "G"]], + "dibbles": null, + "dibbled": null, + "dibble's": null, + "dibbling": null, + "dibs": null, + "DiCaprio": [["M"]], + "DiCaprio's": null, + "dice": [["G", "D", "R", "S"]], + "dicing": [["M"]], + "diced": null, + "dicer": [["M"]], + "dices": null, + "dicer's": null, + "dicey": null, + "dichloride": [["M"]], + "dichloride's": null, + "dichotomization": [["M"]], + "dichotomization's": null, + "dichotomize": [["D", "S", "G"]], + "dichotomized": null, + "dichotomizes": null, + "dichotomizing": null, + "dichotomous": [["P", "Y"]], + "dichotomousness": null, + "dichotomously": null, + "dichotomy": [["S", "M"]], + "dichotomies": null, + "dichotomy's": null, + "dicier": null, + "diciest": null, + "dicing's": null, + "Dickensian": [["S"]], + "Dickensians": null, + "dickens": [["M"]], + "dickens's": null, + "Dickens": [["M"]], + "Dickens's": null, + "dicker": [["D", "G"]], + "dickered": null, + "dickering": null, + "Dickerson": [["M"]], + "Dickerson's": null, + "dickey": [["S", "M"]], + "dickeys": null, + "dickey's": null, + "dick": [["G", "Z", "X", "R", "D", "M", "S", "!"]], + "dicking": null, + "dickers": null, + "dicked": null, + "dick's": null, + "dicks": null, + "Dickie": [["M"]], + "Dickie's": null, + "dickier": null, + "dickiest": null, + "Dickinson": [["M"]], + "Dickinson's": null, + "Dickson": [["M"]], + "Dickson's": null, + "Dick": [["X", "M"]], + "Dick's": null, + "Dicky": [["M"]], + "Dicky's": null, + "dicky's": null, + "dicotyledonous": null, + "dicotyledon": [["S", "M"]], + "dicotyledons": null, + "dicotyledon's": null, + "dicta": [["M"]], + "dicta's": null, + "Dictaphone": [["S", "M"]], + "Dictaphones": null, + "Dictaphone's": null, + "dictate": [["S", "D", "N", "G", "X"]], + "dictates": null, + "dictated": null, + "dictation": [["M"]], + "dictating": null, + "dictations": null, + "dictation's": null, + "dictatorialness": [["M"]], + "dictatorialness's": null, + "dictatorial": [["Y", "P"]], + "dictatorially": null, + "dictator": [["M", "S"]], + "dictator's": null, + "dictators": null, + "dictatorship": [["S", "M"]], + "dictatorships": null, + "dictatorship's": null, + "dictionary": [["S", "M"]], + "dictionaries": null, + "dictionary's": null, + "diction": [["M", "S"]], + "diction's": null, + "dictions": null, + "dictum": [["M"]], + "dictum's": null, + "didactically": null, + "didactic": [["S"]], + "didactics": [["M"]], + "didactics's": null, + "did": [["A", "U"]], + "redid": null, + "undid": null, + "diddler": [["M"]], + "diddler's": null, + "diddle": [["Z", "G", "R", "S", "D"]], + "diddlers": null, + "diddling": null, + "diddles": null, + "diddled": null, + "Diderot": [["M"]], + "Diderot's": null, + "Didi": [["M"]], + "Didi's": null, + "didn't": null, + "didoes": null, + "dido": [["M"]], + "dido's": null, + "Dido": [["M"]], + "Dido's": null, + "didst": null, + "die": [["D", "S"]], + "died": null, + "dies": [["U"]], + "Diefenbaker": [["M"]], + "Diefenbaker's": null, + "Diego": [["M"]], + "Diego's": null, + "dieing": null, + "dielectric": [["M", "S"]], + "dielectric's": null, + "dielectrics": null, + "diem": null, + "Diem": [["M"]], + "Diem's": null, + "Diena": [["M"]], + "Diena's": null, + "Dierdre": [["M"]], + "Dierdre's": null, + "diereses": null, + "dieresis": [["M"]], + "dieresis's": null, + "diesel": [["G", "M", "D", "S"]], + "dieseling": null, + "diesel's": null, + "dieseled": null, + "diesels": null, + "Diesel's": null, + "dies's": null, + "undies": null, + "dietary": [["S"]], + "dietaries": null, + "dieter": [["M"]], + "dieter's": null, + "Dieter": [["M"]], + "Dieter's": null, + "dietetic": [["S"]], + "dietetics": [["M"]], + "dietetics's": null, + "diethylaminoethyl": null, + "diethylstilbestrol": [["M"]], + "diethylstilbestrol's": null, + "dietitian": [["M", "S"]], + "dietitian's": null, + "dietitians": null, + "diet": [["R", "D", "G", "Z", "S", "M"]], + "dieted": null, + "dieting": null, + "dieters": null, + "diets": null, + "diet's": null, + "Dietrich": [["M"]], + "Dietrich's": null, + "Dietz": [["M"]], + "Dietz's": null, + "difference": [["D", "S", "G", "M"]], + "differenced": null, + "differences": [["I"]], + "differencing": null, + "difference's": [["I"]], + "indifference's": null, + "indifferences": null, + "differentiability": null, + "differentiable": null, + "differential": [["S", "M", "Y"]], + "differentials": null, + "differential's": null, + "differentially": null, + "differentiated": [["U"]], + "undifferentiated": null, + "differentiate": [["X", "S", "D", "N", "G"]], + "differentiations": null, + "differentiates": null, + "differentiation": [["M"]], + "differentiating": null, + "differentiation's": null, + "differentiator": [["S", "M"]], + "differentiators": null, + "differentiator's": null, + "differentness": null, + "different": [["Y", "I"]], + "differently": null, + "indifferently": null, + "indifferent": null, + "differ": [["S", "Z", "G", "R", "D"]], + "differs": null, + "differers": null, + "differing": null, + "differer": null, + "differed": null, + "difficile": null, + "difficult": [["Y"]], + "difficultly": null, + "difficulty": [["S", "M"]], + "difficulties": null, + "difficulty's": null, + "diffidence": [["M", "S"]], + "diffidence's": null, + "diffidences": null, + "diffident": [["Y"]], + "diffidently": null, + "diffract": [["G", "S", "D"]], + "diffracting": null, + "diffracts": null, + "diffracted": null, + "diffraction": [["S", "M"]], + "diffractions": null, + "diffraction's": null, + "diffractometer": [["S", "M"]], + "diffractometers": null, + "diffractometer's": null, + "diffuseness": [["M", "S"]], + "diffuseness's": null, + "diffusenesses": null, + "diffuse": [["P", "R", "S", "D", "Z", "Y", "V", "X", "N", "G"]], + "diffuser": [["M"]], + "diffuses": null, + "diffused": null, + "diffusers": null, + "diffusely": null, + "diffusive": [["Y", "P"]], + "diffusions": null, + "diffusion": [["M"]], + "diffusing": null, + "diffuser's": null, + "diffusible": null, + "diffusional": null, + "diffusion's": null, + "diffusiveness": [["M"]], + "diffusiveness's": null, + "diffusively": null, + "diffusivity": [["M"]], + "diffusivity's": null, + "digerati": null, + "digested": [["I", "U"]], + "indigested": null, + "undigested": null, + "digester": [["M"]], + "digester's": null, + "digestibility": [["M", "S"]], + "digestibility's": null, + "digestibilities": null, + "digestible": [["I"]], + "indigestible": [["S"]], + "digestifs": null, + "digestion": [["I", "S", "M"]], + "indigestion": null, + "indigestions": null, + "indigestion's": null, + "digestions": null, + "digestion's": null, + "digestive": [["Y", "S", "P"]], + "digestively": null, + "digestives": null, + "digestiveness": null, + "digest": [["R", "D", "V", "G", "S"]], + "digesting": null, + "digests": null, + "digger": [["M", "S"]], + "digger's": null, + "diggers": null, + "digging": [["S"]], + "diggings": null, + "digitalis": [["M"]], + "digitalis's": null, + "digitalization": [["M", "S"]], + "digitalization's": null, + "digitalizations": null, + "digitalized": null, + "digitalizes": null, + "digitalizing": null, + "digital": [["S", "Y"]], + "digitals": null, + "digitally": null, + "digitization": [["M"]], + "digitization's": null, + "digitizer": [["M"]], + "digitizer's": null, + "digitize": [["Z", "G", "D", "R", "S"]], + "digitizers": null, + "digitizing": null, + "digitized": null, + "digitizes": null, + "digit": [["S", "M"]], + "digits": null, + "digit's": null, + "dignified": [["U"]], + "undignified": null, + "dignify": [["D", "S", "G"]], + "dignifies": null, + "dignifying": null, + "dignitary": [["S", "M"]], + "dignitaries": null, + "dignitary's": null, + "dignity": [["I", "S", "M"]], + "indignity": null, + "indignities": null, + "indignity's": null, + "dignities": null, + "dignity's": null, + "digram": null, + "digraph": [["M"]], + "digraph's": null, + "digraphs": null, + "digress": [["G", "V", "D", "S"]], + "digressing": null, + "digressive": [["P", "Y"]], + "digressed": null, + "digresses": null, + "digression": [["S", "M"]], + "digressions": null, + "digression's": null, + "digressiveness": [["M"]], + "digressiveness's": null, + "digressively": null, + "dig": [["T", "S"]], + "digs": null, + "dihedral": null, + "Dijkstra": [["M"]], + "Dijkstra's": null, + "Dijon": [["M"]], + "Dijon's": null, + "dike": [["D", "R", "S", "M", "G"]], + "diked": null, + "diker": [["M"]], + "dikes": null, + "dike's": null, + "diking": null, + "diker's": null, + "diktat": [["S", "M"]], + "diktats": null, + "diktat's": null, + "Dilan": [["M"]], + "Dilan's": null, + "dilapidate": [["X", "G", "N", "S", "D"]], + "dilapidations": null, + "dilapidating": null, + "dilapidation": [["M"]], + "dilapidates": null, + "dilapidated": null, + "dilapidation's": null, + "dilatation": [["S", "M"]], + "dilatations": null, + "dilatation's": null, + "dilated": [["Y", "P"]], + "dilatedly": null, + "dilatedness": null, + "dilate": [["X", "V", "N", "G", "S", "D"]], + "dilations": null, + "dilative": null, + "dilation": [["M"]], + "dilating": null, + "dilates": null, + "dilation's": null, + "dilatoriness": [["M"]], + "dilatoriness's": null, + "dilator": [["S", "M"]], + "dilators": null, + "dilator's": null, + "dilatory": [["P"]], + "Dilbert": [["M"]], + "Dilbert's": null, + "dilemma": [["M", "S"]], + "dilemma's": null, + "dilemmas": null, + "dilettante": [["M", "S"]], + "dilettante's": null, + "dilettantes": null, + "dilettantish": null, + "dilettantism": [["M", "S"]], + "dilettantism's": null, + "dilettantisms": null, + "diligence": [["S", "M"]], + "diligences": null, + "diligence's": null, + "diligentness": [["M"]], + "diligentness's": null, + "diligent": [["Y", "P"]], + "diligently": null, + "dilithium": null, + "Dillard": [["M"]], + "Dillard's": null, + "Dillie": [["M"]], + "Dillie's": null, + "Dillinger": [["M"]], + "Dillinger's": null, + "dilling": [["R"]], + "dillinger": null, + "dillis": null, + "Dill": [["M"]], + "Dill's": null, + "Dillon": [["M"]], + "Dillon's": null, + "dill": [["S", "G", "M", "D"]], + "dills": null, + "dill's": null, + "dilled": null, + "dillydally": [["G", "S", "D"]], + "dillydallying": null, + "dillydallies": null, + "dillydallied": null, + "Dilly": [["M"]], + "Dilly's": null, + "dilly": [["S", "M"]], + "dillies": null, + "dilly's": null, + "dilogarithm": null, + "diluent": null, + "diluted": [["U"]], + "undiluted": null, + "diluteness": [["M"]], + "diluteness's": null, + "dilute": [["R", "S", "D", "P", "X", "Y", "V", "N", "G"]], + "diluter": null, + "dilutes": null, + "dilutions": null, + "dilutely": null, + "dilutive": null, + "dilution": [["M"]], + "diluting": null, + "dilution's": null, + "Di": [["M"]], + "Di's": null, + "DiMaggio": [["M"]], + "DiMaggio's": null, + "dimensionality": [["M"]], + "dimensionality's": null, + "dimensional": [["Y"]], + "dimensionally": null, + "dimensionless": null, + "dimension": [["M", "D", "G", "S"]], + "dimension's": null, + "dimensioned": null, + "dimensioning": null, + "dimensions": null, + "dimer": [["M"]], + "dimer's": null, + "dime": [["S", "M"]], + "dimes": null, + "dime's": null, + "dimethylglyoxime": null, + "dimethyl": [["M"]], + "dimethyl's": null, + "diminished": [["U"]], + "undiminished": null, + "diminish": [["S", "D", "G", "B", "J"]], + "diminishes": null, + "diminishing": null, + "diminishable": null, + "diminishings": null, + "diminuendo": [["S", "M"]], + "diminuendos": null, + "diminuendo's": null, + "diminution": [["S", "M"]], + "diminutions": null, + "diminution's": null, + "diminutiveness": [["M"]], + "diminutiveness's": null, + "diminutive": [["S", "Y", "P"]], + "diminutives": null, + "diminutively": null, + "Dimitri": [["M"]], + "Dimitri's": null, + "Dimitry": [["M"]], + "Dimitry's": null, + "dimity": [["M", "S"]], + "dimity's": null, + "dimities": null, + "dimmed": [["U"]], + "undimmed": null, + "dimmer": [["M", "S"]], + "dimmer's": null, + "dimmers": null, + "dimmest": null, + "dimming": null, + "dimness": [["S", "M"]], + "dimnesses": null, + "dimness's": null, + "dimorphism": [["M"]], + "dimorphism's": null, + "dimple": [["M", "G", "S", "D"]], + "dimple's": null, + "dimpling": null, + "dimples": null, + "dimpled": null, + "dimply": [["R", "T"]], + "dimplier": null, + "dimpliest": null, + "dim": [["R", "Y", "P", "Z", "S"]], + "dimly": null, + "dimers": null, + "dims": null, + "dimwit": [["M", "S"]], + "dimwit's": null, + "dimwits": null, + "dimwitted": null, + "Dinah": [["M"]], + "Dinah's": null, + "Dina": [["M"]], + "Dina's": null, + "dinar": [["S", "M"]], + "dinars": null, + "dinar's": null, + "diner": [["M"]], + "diner's": null, + "dine": [["S"]], + "dines": null, + "dinette": [["M", "S"]], + "dinette's": null, + "dinettes": null, + "dingbat": [["M", "S"]], + "dingbat's": null, + "dingbats": null, + "ding": [["G", "D"]], + "dinging": null, + "dinged": null, + "dinghy": [["S", "M"]], + "dinghies": null, + "dinghy's": null, + "dingily": null, + "dinginess": [["S", "M"]], + "dinginesses": null, + "dinginess's": null, + "dingle": [["M", "S"]], + "dingle's": null, + "dingles": null, + "dingoes": null, + "dingo": [["M", "S"]], + "dingo's": null, + "dingos": null, + "dingus": [["S", "M"]], + "dinguses": null, + "dingus's": null, + "dingy": [["P", "R", "S", "T"]], + "dingier": null, + "dingies": null, + "dingiest": null, + "dinky": [["R", "S", "T"]], + "dinkier": null, + "dinkies": null, + "dinkiest": null, + "din": [["M", "D", "R", "Z", "G", "S"]], + "din's": null, + "dined": null, + "diners": null, + "dining": null, + "dins": null, + "dinned": null, + "dinner": [["S", "M"]], + "dinners": null, + "dinner's": null, + "dinnertime": [["S"]], + "dinnertimes": null, + "dinnerware": [["M", "S"]], + "dinnerware's": null, + "dinnerwares": null, + "Dinnie": [["M"]], + "Dinnie's": null, + "dinning": null, + "Dinny": [["M"]], + "Dinny's": null, + "Dino": [["M"]], + "Dino's": null, + "dinosaur": [["M", "S"]], + "dinosaur's": null, + "dinosaurs": null, + "dint": [["S", "G", "M", "D"]], + "dints": null, + "dinting": null, + "dint's": null, + "dinted": null, + "diocesan": [["S"]], + "diocesans": null, + "diocese": [["S", "M"]], + "dioceses": null, + "diocese's": null, + "Diocletian": [["M"]], + "Diocletian's": null, + "diode": [["S", "M"]], + "diodes": null, + "diode's": null, + "Diogenes": [["M"]], + "Diogenes's": null, + "Dione": [["M"]], + "Dione's": null, + "Dionisio": [["M"]], + "Dionisio's": null, + "Dionis": [["M"]], + "Dionis's": null, + "Dion's": null, + "Dionne": [["M"]], + "Dionne's": null, + "Dionysian": null, + "Dionysus": [["M"]], + "Dionysus's": null, + "Diophantine": [["M"]], + "Diophantine's": null, + "diopter": [["M", "S"]], + "diopter's": null, + "diopters": null, + "diorama": [["S", "M"]], + "dioramas": null, + "diorama's": null, + "Dior": [["M"]], + "Dior's": null, + "dioxalate": null, + "dioxide": [["M", "S"]], + "dioxide's": null, + "dioxides": null, + "dioxin": [["S"]], + "dioxins": null, + "diphtheria": [["S", "M"]], + "diphtherias": null, + "diphtheria's": null, + "diphthong": [["S", "M"]], + "diphthongs": null, + "diphthong's": null, + "diplexers": null, + "diploid": [["S"]], + "diploids": null, + "diplomacy": [["S", "M"]], + "diplomacies": null, + "diplomacy's": null, + "diploma": [["S", "M", "D", "G"]], + "diplomas": null, + "diploma's": null, + "diplomaed": null, + "diplomaing": null, + "diplomata": null, + "diplomatically": null, + "diplomatic": [["S"]], + "diplomatics": [["M"]], + "diplomatics's": null, + "diplomatist": [["S", "M"]], + "diplomatists": null, + "diplomatist's": null, + "diplomat": [["M", "S"]], + "diplomat's": null, + "diplomats": null, + "dipodic": null, + "dipody": [["M"]], + "dipody's": null, + "dipole": [["M", "S"]], + "dipole's": null, + "dipoles": null, + "dipped": null, + "Dipper": [["M"]], + "Dipper's": null, + "dipper": [["S", "M"]], + "dippers": null, + "dipper's": null, + "dipping": [["S"]], + "dippings": null, + "dippy": [["T", "R"]], + "dippiest": null, + "dippier": null, + "dip": [["S"]], + "dips": null, + "dipsomaniac": [["M", "S"]], + "dipsomaniac's": null, + "dipsomaniacs": null, + "dipsomania": [["S", "M"]], + "dipsomanias": null, + "dipsomania's": null, + "dipstick": [["M", "S"]], + "dipstick's": null, + "dipsticks": null, + "dipterous": null, + "diptych": [["M"]], + "diptych's": null, + "diptychs": null, + "Dir": null, + "Dirac": [["M"]], + "Dirac's": null, + "directed": [["I", "U", "A"]], + "indirected": null, + "undirected": null, + "redirected": null, + "directionality": null, + "directional": [["S", "Y"]], + "directionals": null, + "directionally": null, + "direction": [["M", "I", "S"]], + "direction's": null, + "indirection's": null, + "indirection": null, + "indirections": null, + "directions": [["A"]], + "redirections": null, + "directive": [["S", "M"]], + "directives": null, + "directive's": null, + "directivity": [["M"]], + "directivity's": null, + "directly": [["I"]], + "indirectly": null, + "directness": [["I", "S", "M"]], + "indirectness": null, + "indirectnesses": null, + "indirectness's": null, + "directnesses": null, + "directness's": null, + "director": [["A", "M", "S"]], + "redirector": null, + "redirector's": null, + "redirectors": null, + "director's": null, + "directors": null, + "directorate": [["S", "M"]], + "directorates": null, + "directorate's": null, + "directorial": null, + "directorship": [["S", "M"]], + "directorships": null, + "directorship's": null, + "directory": [["S", "M"]], + "directories": null, + "directory's": null, + "direct": [["R", "D", "Y", "P", "T", "S", "V", "G"]], + "directer": null, + "directest": null, + "directs": [["I", "A"]], + "directing": null, + "directrix": [["M", "S"]], + "directrix's": null, + "directrixes": null, + "indirects": null, + "redirects": null, + "direful": [["Y"]], + "direfully": null, + "direness": [["M"]], + "direness's": null, + "dire": [["Y", "T", "R", "P"]], + "direly": null, + "direst": null, + "direr": null, + "dirge": [["G", "S", "D", "M"]], + "dirging": null, + "dirges": null, + "dirged": null, + "dirge's": null, + "Dirichlet": [["M"]], + "Dirichlet's": null, + "dirigible": [["S"]], + "dirigibles": null, + "dirk": [["G", "D", "M", "S"]], + "dirking": null, + "dirked": null, + "dirk's": null, + "dirks": null, + "Dirk": [["M"]], + "Dirk's": null, + "dirndl": [["M", "S"]], + "dirndl's": null, + "dirndls": null, + "dirtily": null, + "dirtiness": [["S", "M"]], + "dirtinesses": null, + "dirtiness's": null, + "dirt": [["M", "S"]], + "dirt's": null, + "dirts": null, + "dirty": [["G", "P", "R", "S", "D", "T"]], + "dirtying": null, + "dirtier": null, + "dirties": null, + "dirtied": null, + "dirtiest": null, + "Dis": null, + "disable": [["L", "Z", "G", "D"]], + "disablement": [["M", "S"]], + "disablers": null, + "disabling": null, + "disabled": null, + "disablement's": null, + "disablements": null, + "disabler's": null, + "disabuse": null, + "disadvantagedness": null, + "disagreeables": null, + "disallow": [["D"]], + "disallowed": null, + "disambiguate": [["D", "S", "G", "N", "X"]], + "disambiguated": null, + "disambiguates": null, + "disambiguating": null, + "disambiguation": null, + "disambiguations": null, + "disappointedly": null, + "disappointingly": null, + "disarmingly": null, + "disarrange": [["L"]], + "disastrous": [["Y"]], + "disastrously": null, + "disbandment": [["S", "M"]], + "disbandments": null, + "disbandment's": null, + "disbar": [["L"]], + "disbarment": [["M", "S"]], + "disbarment's": null, + "disbarments": null, + "disbarring": null, + "disbelievingly": null, + "disbursal": [["S"]], + "disbursals": null, + "disburse": [["G", "D", "R", "S", "L"]], + "disbursing": null, + "disbursed": null, + "disburser": [["M"]], + "disburses": null, + "disbursement": [["M", "S"]], + "disbursement's": null, + "disbursements": null, + "disburser's": null, + "discerner": [["M"]], + "discerner's": null, + "discernibility": null, + "discernible": [["I"]], + "indiscernible": null, + "discernibly": null, + "discerning": [["Y"]], + "discerningly": null, + "discernment": [["M", "S"]], + "discernment's": null, + "discernments": null, + "discern": [["S", "D", "R", "G", "L"]], + "discerns": null, + "discerned": null, + "disc": [["G", "D", "M"]], + "discing": null, + "disced": null, + "disc's": null, + "undischarged": null, + "disciple": [["D", "S", "M", "G"]], + "discipled": null, + "disciples": null, + "disciple's": null, + "discipling": null, + "discipleship": [["S", "M"]], + "discipleships": null, + "discipleship's": null, + "disciplinarian": [["S", "M"]], + "disciplinarians": null, + "disciplinarian's": null, + "disciplinary": null, + "disciplined": [["U"]], + "undisciplined": null, + "discipline": [["I", "D", "M"]], + "indiscipline": null, + "indisciplined": null, + "indiscipline's": null, + "discipline's": null, + "discipliner": [["M"]], + "discipliner's": null, + "disciplines": null, + "disciplining": null, + "undisclosed": null, + "discography": [["M", "S"]], + "discography's": null, + "discographies": null, + "discolored's": null, + "discoloredness": null, + "undiscoloreds": null, + "discolor": [["G"]], + "discoloring": null, + "discombobulate": [["S", "D", "G", "N", "X"]], + "discombobulates": null, + "discombobulated": null, + "discombobulating": null, + "discombobulation": null, + "discombobulations": null, + "discomfited": null, + "discomfiting": null, + "discomfiture": [["M", "S"]], + "discomfiture's": null, + "discomfitures": null, + "disco's": null, + "discoing": null, + "discommode": [["D", "G"]], + "discommoded": null, + "discommoding": null, + "disconcertingly": null, + "disconnectednesses": null, + "disconnecter": [["M"]], + "disconnecter's": null, + "disconsolate": [["Y", "N"]], + "disconsolately": null, + "disconsolation": null, + "discordance": [["S", "M"]], + "discordances": null, + "discordance's": null, + "discordant": [["Y"]], + "discordantly": null, + "discording": null, + "discorporate": [["D"]], + "discorporated": null, + "discotheque": [["M", "S"]], + "discotheque's": null, + "discotheques": null, + "discountable": null, + "discourage": [["L", "G", "D", "R"]], + "discouragement": [["M", "S"]], + "discouraging": [["Y"]], + "discouraged": null, + "discourager": null, + "discouragement's": null, + "discouragements": null, + "discouragingly": null, + "indiscoverable": null, + "rediscover": null, + "rediscovered": null, + "rediscovering": null, + "rediscovers": null, + "undiscovered": null, + "discoverers": null, + "discovery": [["S", "A", "M"]], + "discoveries": null, + "rediscoveries": null, + "rediscovery": null, + "rediscovery's": null, + "discovery's": null, + "discreetly": [["I"]], + "indiscreetly": null, + "discreetness's": [["I"]], + "indiscreetness's": null, + "discreetness": [["S", "M"]], + "discreetnesses": null, + "discreet": [["T", "R", "Y", "P"]], + "discreetest": null, + "discreeter": null, + "discrepancy": [["S", "M"]], + "discrepancies": null, + "discrepancy's": null, + "discrepant": [["Y"]], + "discrepantly": null, + "discreteness": [["S", "M"]], + "discretenesses": null, + "discreteness's": null, + "discrete": [["Y", "P", "N", "X"]], + "discretely": null, + "discretion": [["I", "M", "S"]], + "discretions": null, + "discretionary": null, + "indiscretion": null, + "indiscretion's": null, + "indiscretions": null, + "discretion's": null, + "discretization": null, + "discretized": null, + "discriminable": null, + "discriminant": [["M", "S"]], + "discriminant's": null, + "discriminants": null, + "discriminated": [["U"]], + "undiscriminated": null, + "discriminate": [["S", "D", "V", "N", "G", "X"]], + "discriminates": null, + "discriminative": null, + "discrimination": [["M", "I"]], + "discriminating": [["Y", "I"]], + "discriminations": null, + "discriminatingly": null, + "indiscriminatingly": null, + "indiscriminating": null, + "discrimination's": null, + "indiscrimination's": null, + "indiscrimination": null, + "discriminator": [["M", "S"]], + "discriminator's": null, + "discriminators": null, + "discriminatory": null, + "discursivenesses": null, + "discussant": [["M", "S"]], + "discussant's": null, + "discussants": null, + "undiscussed": null, + "rediscussed": null, + "discusser's": null, + "discussion": [["S", "M"]], + "discussions": null, + "discussion's": null, + "discus": [["S", "M"]], + "discuses": null, + "discus's": null, + "disdainfulness": [["M"]], + "disdainfulness's": null, + "disdainful": [["Y", "P"]], + "disdainfully": null, + "disdain": [["M", "G", "S", "D"]], + "disdain's": null, + "disdaining": null, + "disdains": null, + "disdained": null, + "disease": [["G"]], + "diseasing": null, + "disembowelment": [["S", "M"]], + "disembowelments": null, + "disembowelment's": null, + "disembowel": [["S", "L", "G", "D"]], + "disembowels": null, + "disemboweling": null, + "disemboweled": null, + "disengage": [["L"]], + "disengagement": null, + "disfigure": [["L"]], + "disfigurement": [["M", "S"]], + "disfigurement's": null, + "disfigurements": null, + "disfranchise": [["L"]], + "disfranchisement": [["M", "S"]], + "disfranchisement's": null, + "disfranchisements": null, + "disgorge": null, + "disgrace": [["R"]], + "disgracer": [["M"]], + "disgracer's": null, + "disgruntle": [["D", "S", "L", "G"]], + "disgruntled": null, + "disgruntles": null, + "disgruntlement": [["M", "S"]], + "disgruntling": null, + "disgruntlement's": null, + "disgruntlements": null, + "disguised": [["U", "Y"]], + "undisguised": null, + "undisguisedly": null, + "disguisedly": null, + "disguise": [["R"]], + "disguiser": [["M"]], + "disguiser's": null, + "disgust": null, + "disgusted": [["Y"]], + "disgustedly": null, + "disgustful": [["Y"]], + "disgustfully": null, + "disgusting": [["Y"]], + "disgustingly": null, + "dishabille": [["S", "M"]], + "dishabilles": null, + "dishabille's": null, + "disharmonious": null, + "dishcloth": [["M"]], + "dishcloth's": null, + "dishcloths": null, + "dishevel": [["L", "D", "G", "S"]], + "dishevelment": [["M", "S"]], + "disheveled": null, + "disheveling": null, + "dishevels": null, + "dishevelment's": null, + "dishevelments": null, + "dish": [["G", "D"]], + "dishing": null, + "dished": null, + "dishonest": null, + "dishonored": [["U"]], + "undishonored": null, + "dishpan": [["M", "S"]], + "dishpan's": null, + "dishpans": null, + "dishrag": [["S", "M"]], + "dishrags": null, + "dishrag's": null, + "dishtowel": [["S", "M"]], + "dishtowels": null, + "dishtowel's": null, + "dishwasher": [["M", "S"]], + "dishwasher's": null, + "dishwashers": null, + "dishwater": [["S", "M"]], + "dishwaters": null, + "dishwater's": null, + "disillusion": [["L", "G", "D"]], + "disillusionment": [["S", "M"]], + "disillusioning": null, + "disillusioned": null, + "disillusionments": null, + "disillusionment's": null, + "disinfectant": [["M", "S"]], + "disinfectant's": null, + "disinfectants": null, + "disinherit": null, + "disinterestedness": [["S", "M"]], + "disinterestednesses": null, + "disinterestedness's": null, + "disinterested": [["P"]], + "disinvest": [["L"]], + "disinvestment": null, + "disjoin": null, + "disjointedness": [["S"]], + "disjointednesses": null, + "disjunctive": [["Y", "S"]], + "disjunctively": null, + "disjunctives": null, + "disjunct": [["V", "S"]], + "disjuncts": null, + "disk": [["D"]], + "disked": null, + "diskette": [["S"]], + "diskettes": null, + "dislike": [["G"]], + "disliking": null, + "dislodge": [["L", "G"]], + "dislodgement": [["M"]], + "dislodging": null, + "dislodgement's": null, + "dismalness": [["M"]], + "dismalness's": null, + "dismal": [["P", "S", "T", "R", "Y"]], + "dismals": null, + "dismalest": null, + "dismaler": null, + "dismally": null, + "dismantle": [["L"]], + "dismantlement": [["S", "M"]], + "dismantlements": null, + "dismantlement's": null, + "dismay": [["D"]], + "dismayed": [["U"]], + "undismayed": null, + "dismaying": [["Y"]], + "dismayingly": null, + "dis": [["M", "B"]], + "dis's": null, + "dismember": [["L", "G"]], + "dismemberment": [["M", "S"]], + "dismembering": null, + "dismemberment's": null, + "dismemberments": null, + "dismissive": [["Y"]], + "dismissively": null, + "dismiss": [["R", "Z"]], + "dismisser": null, + "dismissers": null, + "Disneyland": [["M"]], + "Disneyland's": null, + "Disney": [["M"]], + "Disney's": null, + "disoblige": [["G"]], + "disobliging": null, + "disorderedness": [["M"]], + "disorderedness's": null, + "disordered": [["Y", "P"]], + "disorderedly": null, + "disorderliness": [["M"]], + "disorderliness's": null, + "disorderly": [["P"]], + "disorder": [["Y"]], + "disorganize": null, + "disorganized": [["U"]], + "undisorganized": null, + "disparagement": [["M", "S"]], + "disparagement's": null, + "disparagements": null, + "disparager": [["M"]], + "disparager's": null, + "disparage": [["R", "S", "D", "L", "G"]], + "disparages": null, + "disparaged": null, + "disparaging": [["Y"]], + "disparagingly": null, + "disparateness": [["M"]], + "disparateness's": null, + "disparate": [["P", "S", "Y"]], + "disparates": null, + "disparately": null, + "dispatch": [["Z"]], + "dispatchers": null, + "dispelled": null, + "dispelling": null, + "dispel": [["S"]], + "dispels": null, + "dispensable": [["I"]], + "indispensable": [["S", "P"]], + "dispensary": [["M", "S"]], + "dispensary's": null, + "dispensaries": null, + "dispensate": [["N", "X"]], + "dispensation": [["M"]], + "dispensations": null, + "dispensation's": null, + "dispenser": [["M"]], + "dispenser's": null, + "dispense": [["Z", "G", "D", "R", "S", "B"]], + "dispensers": null, + "dispensing": null, + "dispensed": null, + "dispenses": null, + "dispersal": [["M", "S"]], + "dispersal's": null, + "dispersals": null, + "dispersant": [["M"]], + "dispersant's": null, + "dispersed": [["Y"]], + "dispersedly": null, + "disperser": [["M"]], + "disperser's": null, + "disperse": [["X", "D", "R", "S", "Z", "L", "N", "G", "V"]], + "dispersions": null, + "disperses": null, + "dispersers": null, + "dispersement": null, + "dispersion": [["M"]], + "dispersing": null, + "dispersive": [["P", "Y"]], + "dispersible": null, + "dispersion's": null, + "dispersiveness": [["M"]], + "dispersiveness's": null, + "dispersively": null, + "dispirit": [["D", "S", "G"]], + "dispirited": null, + "dispirits": null, + "dispiriting": null, + "displace": [["L"]], + "displacement": null, + "display": [["A", "G", "D", "S"]], + "redisplay": null, + "redisplaying": null, + "redisplayed": null, + "redisplays": null, + "displaying": null, + "displayed": [["U"]], + "displays": null, + "undisplayed": null, + "displeased": [["Y"]], + "displeasedly": null, + "displease": [["G"]], + "displeasing": null, + "displeasure": null, + "disport": null, + "disposable": [["S"]], + "disposables": null, + "disposal": [["S", "M"]], + "disposals": null, + "disposal's": null, + "dispose": [["I", "G", "S", "D"]], + "indispose": null, + "indisposing": null, + "indisposes": null, + "indisposed": null, + "disposing": null, + "disposes": null, + "disposed": null, + "dispositional": null, + "disposition": [["I", "S", "M"]], + "indisposition": null, + "indispositions": null, + "indisposition's": null, + "dispositions": null, + "disposition's": null, + "disproportional": null, + "disproportionate": [["N"]], + "disproportionation": [["M"]], + "disproportionation's": null, + "disprove": [["B"]], + "disprovable": null, + "disputable": [["I"]], + "indisputable": [["P"]], + "disputably": [["I"]], + "indisputably": null, + "disputant": [["S", "M"]], + "disputants": null, + "disputant's": null, + "disputation": [["S", "M"]], + "disputations": null, + "disputation's": null, + "disputatious": [["Y"]], + "disputatiously": null, + "disputed": [["U"]], + "undisputed": null, + "disputer": [["M"]], + "disputer's": null, + "dispute": [["Z", "B", "G", "S", "R", "D"]], + "disputers": null, + "disputing": null, + "disputes": null, + "disquieting": [["Y"]], + "disquietingly": null, + "disquiet": [["M"]], + "disquiet's": null, + "disquisition": [["S", "M"]], + "disquisitions": null, + "disquisition's": null, + "Disraeli": [["M"]], + "Disraeli's": null, + "disregardful": null, + "disrepair": [["M"]], + "disrepair's": null, + "disreputableness": [["M"]], + "disreputableness's": null, + "disreputable": [["P"]], + "disrepute": [["M"]], + "disrepute's": null, + "disrespect": null, + "disrupted": [["U"]], + "undisrupted": null, + "disrupter": [["M"]], + "disrupter's": null, + "disrupt": [["G", "V", "D", "R", "S"]], + "disrupting": null, + "disruptive": [["Y", "P"]], + "disrupts": null, + "disruption": [["M", "S"]], + "disruption's": null, + "disruptions": null, + "disruptively": null, + "disruptiveness": null, + "disruptor": [["M"]], + "disruptor's": null, + "dissatisfy": null, + "dissect": [["D", "G"]], + "dissected": null, + "dissecting": null, + "dissed": null, + "dissembler": [["M"]], + "dissembler's": null, + "dissemble": [["Z", "G", "R", "S", "D"]], + "dissemblers": null, + "dissembling": null, + "dissembles": null, + "dissembled": null, + "disseminate": [["X", "G", "N", "S", "D"]], + "disseminations": null, + "disseminating": null, + "dissemination": [["M"]], + "disseminates": null, + "disseminated": null, + "dissemination's": null, + "dissension": [["S", "M"]], + "dissensions": null, + "dissension's": null, + "dissenter": [["M"]], + "dissenter's": null, + "dissent": [["Z", "G", "S", "D", "R"]], + "dissenters": null, + "dissenting": null, + "dissents": null, + "dissented": null, + "dissertation": [["S", "M"]], + "dissertations": null, + "dissertation's": null, + "disservice": null, + "disses": null, + "dissever": null, + "dissidence": [["S", "M"]], + "dissidences": null, + "dissidence's": null, + "dissident": [["M", "S"]], + "dissident's": null, + "dissidents": null, + "dissimilar": [["S"]], + "dissimilars": null, + "dissing": null, + "dissipatedly": null, + "dissipatedness": [["M"]], + "dissipatedness's": null, + "dissipated": [["U"]], + "undissipated": null, + "dissipater": [["M"]], + "dissipater's": null, + "dissipate": [["X", "R", "S", "D", "V", "N", "G"]], + "dissipations": null, + "dissipates": null, + "dissipative": null, + "dissipation": [["M"]], + "dissipating": null, + "dissipation's": null, + "dissociable": [["I"]], + "indissociable": null, + "dissociate": [["D", "S", "X", "N", "G", "V"]], + "dissociated": [["U"]], + "dissociates": null, + "dissociations": null, + "dissociation": [["M"]], + "dissociating": null, + "dissociative": [["Y"]], + "undissociated": null, + "dissociation's": null, + "dissociatively": null, + "dissoluble": [["I"]], + "indissoluble": [["P"]], + "dissoluteness": [["S", "M"]], + "dissolutenesses": null, + "dissoluteness's": null, + "dissolute": [["P", "Y"]], + "dissolutely": null, + "dissolve": [["A", "S", "D", "G"]], + "redissolve": null, + "redissolves": null, + "redissolved": null, + "redissolving": null, + "dissolves": null, + "dissolved": [["U"]], + "dissolving": null, + "undissolved": null, + "dissonance": [["S", "M"]], + "dissonances": null, + "dissonance's": null, + "dissonant": [["Y"]], + "dissonantly": null, + "dissuade": [["G", "D", "R", "S"]], + "dissuading": null, + "dissuaded": null, + "dissuader": [["M"]], + "dissuades": null, + "dissuader's": null, + "dissuasive": null, + "dist": null, + "distaff": [["S", "M"]], + "distaffs": null, + "distaff's": null, + "distal": [["Y"]], + "distally": null, + "distance": [["D", "S", "M", "G"]], + "distanced": null, + "distances": null, + "distance's": null, + "distancing": null, + "distantness": [["M"]], + "distantness's": null, + "distant": [["Y", "P"]], + "distantly": null, + "distaste": null, + "distemper": null, + "distend": null, + "distension": null, + "distention": [["S", "M"]], + "distentions": null, + "distention's": null, + "distillate": [["X", "N", "M", "S"]], + "distillations": null, + "distillation": [["M"]], + "distillate's": null, + "distillates": null, + "distillation's": null, + "distillery": [["M", "S"]], + "distillery's": null, + "distilleries": null, + "distincter": null, + "distinctest": null, + "distinction": [["M", "S"]], + "distinction's": null, + "distinctions": null, + "distinctiveness": [["M", "S"]], + "distinctiveness's": null, + "distinctivenesses": null, + "distinctive": [["Y", "P"]], + "distinctively": null, + "distinct": [["I", "Y", "V", "P"]], + "indistinct": null, + "indistinctly": null, + "indistinctness": null, + "distinctly": null, + "distinctness": [["M", "S", "I"]], + "distinctness's": null, + "indistinctness's": null, + "distinctnesses": null, + "indistinctnesses": null, + "distinguishable": [["I"]], + "indistinguishable": [["P"]], + "distinguishably": [["I"]], + "indistinguishably": null, + "distinguish": [["B", "D", "R", "S", "G"]], + "distinguished": [["U"]], + "distinguisher": [["M"]], + "distinguishes": null, + "distinguishing": null, + "undistinguished": null, + "distinguisher's": null, + "distort": [["B", "G", "D", "R"]], + "distortable": null, + "distorting": null, + "distorted": [["U"]], + "distorter": [["M"]], + "undistorted": null, + "distorter's": null, + "distortion": [["M", "S"]], + "distortion's": null, + "distortions": null, + "distract": [["D", "G"]], + "distracted": [["Y", "P"]], + "distracting": [["Y"]], + "distractedness": [["M"]], + "distractedness's": null, + "distractedly": null, + "distractingly": null, + "distrait": null, + "distraught": [["Y"]], + "distraughtly": null, + "distress": null, + "distressful": null, + "distressing": [["Y"]], + "distressingly": null, + "distribute": [["A", "D", "X", "S", "V", "N", "G", "B"]], + "redistribute": null, + "redistributed": null, + "redistributions": null, + "redistributes": null, + "redistribution": null, + "redistributing": null, + "redistributable": null, + "distributed": [["U"]], + "distributions": null, + "distributes": null, + "distributive": [["S", "P", "Y"]], + "distribution": [["A", "M"]], + "distributing": null, + "distributable": null, + "undistributed": null, + "distributer": null, + "distributional": null, + "redistribution's": null, + "distribution's": null, + "distributiveness": [["M"]], + "distributiveness's": null, + "distributives": null, + "distributively": null, + "distributivity": null, + "distributorship": [["M"]], + "distributorship's": null, + "distributor": [["S", "M"]], + "distributors": null, + "distributor's": null, + "district": [["G", "S", "A", "D"]], + "districting": null, + "redistricting": null, + "districts": null, + "redistricts": null, + "redistrict": null, + "redistricted": null, + "districted": null, + "district's": null, + "distrust": [["G"]], + "distrusting": null, + "disturbance": [["S", "M"]], + "disturbances": null, + "disturbance's": null, + "disturbed": [["U"]], + "undisturbed": null, + "disturber": [["M"]], + "disturber's": null, + "disturbing": [["Y"]], + "disturbingly": null, + "disturb": [["Z", "G", "D", "R", "S"]], + "disturbers": null, + "disturbs": null, + "disulfide": [["M"]], + "disulfide's": null, + "disuse": [["M"]], + "disuse's": null, + "disyllable": [["M"]], + "disyllable's": null, + "Dita": [["M"]], + "Dita's": null, + "ditcher": [["M"]], + "ditcher's": null, + "ditch": [["M", "R", "S", "D", "G"]], + "ditch's": null, + "ditches": null, + "ditched": null, + "ditching": null, + "dither": [["R", "D", "Z", "S", "G"]], + "ditherer": null, + "dithered": null, + "ditherers": null, + "dithers": null, + "dithering": null, + "ditsy": [["T", "R"]], + "ditsiest": null, + "ditsier": null, + "ditto": [["D", "M", "G", "S"]], + "dittoed": null, + "ditto's": null, + "dittoing": null, + "dittos": null, + "ditty": [["S", "D", "G", "M"]], + "ditties": null, + "dittied": null, + "dittying": null, + "ditty's": null, + "Ditzel": [["M"]], + "Ditzel's": null, + "ditz": [["S"]], + "ditzes": null, + "diuresis": [["M"]], + "diuresis's": null, + "diuretic": [["S"]], + "diuretics": null, + "diurnal": [["S", "Y"]], + "diurnals": null, + "diurnally": null, + "divalent": [["S"]], + "divalents": null, + "diva": [["M", "S"]], + "diva's": null, + "divas": null, + "divan": [["S", "M"]], + "divans": null, + "divan's": null, + "dived": [["M"]], + "dived's": null, + "divergence": [["S", "M"]], + "divergences": null, + "divergence's": null, + "divergent": [["Y"]], + "divergently": null, + "diverge": [["S", "D", "G"]], + "diverges": null, + "diverged": null, + "diverging": null, + "diver": [["M"]], + "diver's": null, + "diverseness": [["M", "S"]], + "diverseness's": null, + "diversenesses": null, + "diverse": [["X", "Y", "N", "P"]], + "diversions": null, + "diversely": null, + "diversion": [["M"]], + "diversification": [["M"]], + "diversification's": null, + "diversifier": [["M"]], + "diversifier's": null, + "diversify": [["G", "S", "R", "D", "N", "X"]], + "diversifying": null, + "diversifies": null, + "diversified": null, + "diversifications": null, + "diversionary": null, + "diversion's": null, + "diversity": [["S", "M"]], + "diversities": null, + "diversity's": null, + "divert": [["G", "S", "D"]], + "diverting": null, + "diverts": null, + "diverted": null, + "diverticulitis": [["S", "M"]], + "diverticulitises": null, + "diverticulitis's": null, + "divertimento": [["M"]], + "divertimento's": null, + "dive": [["S"]], + "dives": null, + "divestiture": [["M", "S"]], + "divestiture's": null, + "divestitures": null, + "divest": [["L", "D", "G", "S"]], + "divestment": [["S"]], + "divested": null, + "divesting": null, + "divests": null, + "divestments": null, + "dividable": null, + "divide": [["A", "G", "D", "S"]], + "redivide": null, + "redividing": null, + "redivided": null, + "redivides": null, + "dividing": null, + "divided": [["U"]], + "divides": null, + "undivided": null, + "dividend": [["M", "S"]], + "dividend's": null, + "dividends": null, + "divider": [["M", "S"]], + "divider's": null, + "dividers": null, + "divination": [["S", "M"]], + "divinations": null, + "divination's": null, + "diviner": [["M"]], + "diviner's": null, + "divine": [["R", "S", "D", "T", "Z", "Y", "G"]], + "divines": null, + "divined": null, + "divinest": null, + "diviners": null, + "divinely": null, + "divining": null, + "divinity": [["M", "S"]], + "divinity's": null, + "divinities": null, + "divisibility": [["I", "M", "S"]], + "indivisibility": null, + "indivisibility's": null, + "indivisibilities": null, + "divisibility's": null, + "divisibilities": null, + "divisible": [["I"]], + "indivisible": [["S", "P"]], + "divisional": null, + "division": [["S", "M"]], + "divisions": null, + "division's": null, + "divisiveness": [["M", "S"]], + "divisiveness's": null, + "divisivenesses": null, + "divisive": [["P", "Y"]], + "divisively": null, + "divisor": [["S", "M"]], + "divisors": null, + "divisor's": null, + "divorc�e": [["M", "S"]], + "divorc�e's": null, + "divorc�es": null, + "divorce": [["G", "S", "D", "L", "M"]], + "divorcing": null, + "divorces": null, + "divorced": null, + "divorcement": [["M", "S"]], + "divorce's": null, + "divorcement's": null, + "divorcements": null, + "divot": [["M", "S"]], + "divot's": null, + "divots": null, + "div": [["T", "Z", "G", "J", "D", "R", "S"]], + "divers": null, + "diving": null, + "divings": null, + "divs": null, + "divulge": [["G", "S", "D"]], + "divulging": null, + "divulges": null, + "divulged": null, + "divvy": [["G", "S", "D", "M"]], + "divvying": null, + "divvies": null, + "divvied": null, + "divvy's": null, + "Dixiecrat": [["M", "S"]], + "Dixiecrat's": null, + "Dixiecrats": null, + "dixieland": null, + "Dixieland": [["M", "S"]], + "Dixieland's": null, + "Dixielands": null, + "Dixie": [["M"]], + "Dixie's": null, + "Dix": [["M"]], + "Dix's": null, + "Dixon": [["M"]], + "Dixon's": null, + "dizzily": null, + "dizziness": [["S", "M"]], + "dizzinesses": null, + "dizziness's": null, + "dizzying": [["Y"]], + "dizzyingly": null, + "dizzy": [["P", "G", "R", "S", "D", "T"]], + "dizzier": null, + "dizzies": null, + "dizzied": null, + "dizziest": null, + "DJ": null, + "Djakarta's": null, + "djellabah's": null, + "djellaba": [["S"]], + "djellabas": null, + "d": [["J", "G", "V", "X"]], + "dings": null, + "Djibouti": [["M"]], + "Djibouti's": null, + "DMD": null, + "Dmitri": [["M"]], + "Dmitri's": null, + "DMZ": null, + "DNA": null, + "Dnepropetrovsk": [["M"]], + "Dnepropetrovsk's": null, + "Dnepr's": null, + "Dnieper's": null, + "Dniester": [["M"]], + "Dniester's": null, + "Dniren": [["M"]], + "Dniren's": null, + "DOA": null, + "doable": null, + "DOB": null, + "Dobbin": [["M"]], + "Dobbin's": null, + "dobbin": [["M", "S"]], + "dobbin's": null, + "dobbins": null, + "Doberman": null, + "Dobro": [["M"]], + "Dobro's": null, + "docent": [["S", "M"]], + "docents": null, + "docent's": null, + "docile": [["Y"]], + "docilely": null, + "docility": [["M", "S"]], + "docility's": null, + "docilities": null, + "docker": [["M"]], + "docker's": null, + "docket": [["G", "S", "M", "D"]], + "docketing": null, + "dockets": null, + "docket's": null, + "docketed": null, + "dock": [["G", "Z", "S", "R", "D", "M"]], + "docking": null, + "dockers": null, + "docks": null, + "docked": null, + "dock's": null, + "dockland": [["M", "S"]], + "dockland's": null, + "docklands": null, + "dockside": [["M"]], + "dockside's": null, + "dockworker": [["S"]], + "dockworkers": null, + "dockyard": [["S", "M"]], + "dockyards": null, + "dockyard's": null, + "doc": [["M", "S"]], + "doc's": null, + "docs": null, + "Doctor": null, + "doctoral": null, + "doctorate": [["S", "M"]], + "doctorates": null, + "doctorate's": null, + "doctor": [["G", "S", "D", "M"]], + "doctoring": null, + "doctors": null, + "doctored": null, + "doctor's": null, + "Doctorow": [["M"]], + "Doctorow's": null, + "doctrinaire": [["S"]], + "doctrinaires": null, + "doctrinal": [["Y"]], + "doctrinally": null, + "doctrine": [["S", "M"]], + "doctrines": null, + "doctrine's": null, + "docudrama": [["S"]], + "docudramas": null, + "documentary": [["M", "S"]], + "documentary's": null, + "documentaries": null, + "documentation": [["M", "S"]], + "documentation's": null, + "documentations": null, + "documented": [["U"]], + "undocumented": null, + "document": [["R", "D", "M", "Z", "G", "S"]], + "documenter": null, + "document's": null, + "documenters": null, + "documenting": null, + "documents": null, + "DOD": null, + "dodder": [["D", "G", "S"]], + "doddered": null, + "doddering": null, + "dodders": null, + "dodecahedra": null, + "dodecahedral": null, + "dodecahedron": [["M"]], + "dodecahedron's": null, + "Dode": [["M"]], + "Dode's": null, + "dodge": [["G", "Z", "S", "R", "D"]], + "dodging": null, + "dodgers": null, + "dodges": null, + "dodger": [["M"]], + "dodged": null, + "Dodge": [["M"]], + "Dodge's": null, + "dodgem": [["S"]], + "dodgems": null, + "dodger's": null, + "Dodgson": [["M"]], + "Dodgson's": null, + "Dodie": [["M"]], + "Dodie's": null, + "Dodi": [["M"]], + "Dodi's": null, + "Dodington": [["M"]], + "Dodington's": null, + "Dodoma": [["M"]], + "Dodoma's": null, + "dodo": [["S", "M"]], + "dodos": null, + "dodo's": null, + "Dodson": [["M"]], + "Dodson's": null, + "Dody": [["M"]], + "Dody's": null, + "DOE": null, + "Doe": [["M"]], + "Doe's": null, + "doe": [["M", "S"]], + "doe's": null, + "does": [["A", "U"]], + "doer": [["M", "U"]], + "doer's": null, + "undoer's": null, + "undoer": null, + "redoes": null, + "undoes": null, + "doeskin": [["M", "S"]], + "doeskin's": null, + "doeskins": null, + "doesn't": null, + "d'oeuvre": null, + "doff": [["S", "G", "D"]], + "doffs": null, + "doffing": null, + "doffed": null, + "dogcart": [["S", "M"]], + "dogcarts": null, + "dogcart's": null, + "dogcatcher": [["M", "S"]], + "dogcatcher's": null, + "dogcatchers": null, + "dogeared": null, + "Doge": [["M"]], + "Doge's": null, + "doge": [["S", "M"]], + "doges": null, + "doge's": null, + "dogfight": [["G", "M", "S"]], + "dogfighting": null, + "dogfight's": null, + "dogfights": null, + "dogfish": [["S", "M"]], + "dogfishes": null, + "dogfish's": null, + "dogfought": null, + "doggedness": [["S", "M"]], + "doggednesses": null, + "doggedness's": null, + "dogged": [["P", "Y"]], + "doggedly": null, + "doggerel": [["S", "M"]], + "doggerels": null, + "doggerel's": null, + "dogging": null, + "doggone": [["R", "S", "D", "T", "G"]], + "doggoner": null, + "doggones": null, + "doggoned": null, + "doggonest": null, + "doggoning": null, + "doggy": [["S", "R", "M", "T"]], + "doggies": null, + "doggier": null, + "doggy's": null, + "doggiest": null, + "doghouse": [["S", "M"]], + "doghouses": null, + "doghouse's": null, + "dogie": [["S", "M"]], + "dogies": null, + "dogie's": null, + "doglegged": null, + "doglegging": null, + "dogleg": [["S", "M"]], + "doglegs": null, + "dogleg's": null, + "dogma": [["M", "S"]], + "dogma's": null, + "dogmas": null, + "dogmatically": [["U"]], + "undogmatically": null, + "dogmatic": [["S"]], + "dogmatics": [["M"]], + "dogmatics's": null, + "dogmatism": [["S", "M"]], + "dogmatisms": null, + "dogmatism's": null, + "dogmatist": [["S", "M"]], + "dogmatists": null, + "dogmatist's": null, + "dogsbody": [["M"]], + "dogsbody's": null, + "dog": [["S", "M"]], + "dogs": null, + "dog's": null, + "dogtooth": [["M"]], + "dogtooth's": null, + "Dogtown": [["M"]], + "Dogtown's": null, + "dogtrot": [["M", "S"]], + "dogtrot's": null, + "dogtrots": null, + "dogtrotted": null, + "dogtrotting": null, + "dogwood": [["S", "M"]], + "dogwoods": null, + "dogwood's": null, + "dogy's": null, + "Doha": [["M"]], + "Doha's": null, + "doh's": null, + "doily": [["S", "M"]], + "doilies": null, + "doily's": null, + "doing": [["M", "U"]], + "doing's": null, + "undoing's": null, + "undoing": null, + "Dolby": [["S", "M"]], + "Dolbies": null, + "Dolby's": null, + "doldrum": [["S"]], + "doldrums": [["M"]], + "doldrums's": null, + "doled": [["F"]], + "condoled": null, + "dolefuller": null, + "dolefullest": null, + "dolefulness": [["M", "S"]], + "dolefulness's": null, + "dolefulnesses": null, + "doleful": [["P", "Y"]], + "dolefully": null, + "Dole": [["M"]], + "Dole's": null, + "dole": [["M", "G", "D", "S"]], + "dole's": null, + "doling": [["F"]], + "doles": [["F"]], + "condoles": null, + "Dolf": [["M"]], + "Dolf's": null, + "condoling": null, + "dollar": [["S", "M"]], + "dollars": null, + "dollar's": null, + "Dolley": [["M"]], + "Dolley's": null, + "Dollie": [["M"]], + "Dollie's": null, + "Dolli": [["M"]], + "Dolli's": null, + "Doll": [["M"]], + "Doll's": null, + "doll": [["M", "D", "G", "S"]], + "doll's": null, + "dolled": null, + "dolling": null, + "dolls": null, + "dollop": [["G", "S", "M", "D"]], + "dolloping": null, + "dollops": null, + "dollop's": null, + "dolloped": null, + "Dolly": [["M"]], + "Dolly's": null, + "dolly": [["S", "D", "M", "G"]], + "dollies": null, + "dollied": null, + "dolly's": null, + "dollying": null, + "dolmen": [["M", "S"]], + "dolmen's": null, + "dolmens": null, + "dolomite": [["S", "M"]], + "dolomites": null, + "dolomite's": null, + "dolomitic": null, + "Dolores": [["M"]], + "Dolores's": null, + "Dolorita": [["S", "M"]], + "Doloritas": null, + "Dolorita's": null, + "dolorous": [["Y"]], + "dolorously": null, + "dolor": [["S", "M"]], + "dolors": null, + "dolor's": null, + "dolphin": [["S", "M"]], + "dolphins": null, + "dolphin's": null, + "Dolph": [["M"]], + "Dolph's": null, + "doltishness": [["S", "M"]], + "doltishnesses": null, + "doltishness's": null, + "doltish": [["Y", "P"]], + "doltishly": null, + "dolt": [["M", "S"]], + "dolt's": null, + "dolts": null, + "domain": [["M", "S"]], + "domain's": null, + "domains": null, + "dome": [["D", "S", "M", "G"]], + "domed": null, + "domes": null, + "dome's": null, + "doming": null, + "Domenic": [["M"]], + "Domenic's": null, + "Domenico": [["M"]], + "Domenico's": null, + "Domeniga": [["M"]], + "Domeniga's": null, + "Domesday": [["M"]], + "Domesday's": null, + "domestically": null, + "domesticate": [["D", "S", "X", "G", "N"]], + "domesticated": [["U"]], + "domesticates": null, + "domestications": null, + "domesticating": null, + "domestication": [["M"]], + "undomesticated": null, + "domestication's": null, + "domesticity": [["M", "S"]], + "domesticity's": null, + "domesticities": null, + "domestic": [["S"]], + "domestics": null, + "domicile": [["S", "D", "M", "G"]], + "domiciles": null, + "domiciled": null, + "domicile's": null, + "domiciling": null, + "domiciliary": null, + "dominance": [["M", "S"]], + "dominance's": null, + "dominances": null, + "dominant": [["Y", "S"]], + "dominantly": null, + "dominants": null, + "dominate": [["V", "N", "G", "X", "S", "D"]], + "dominative": null, + "domination": [["M"]], + "dominating": null, + "dominations": null, + "dominates": null, + "dominated": null, + "domination's": null, + "dominator": [["M"]], + "dominator's": null, + "dominatrices": null, + "dominatrix": null, + "domineer": [["D", "S", "G"]], + "domineered": null, + "domineers": null, + "domineering": [["Y", "P"]], + "domineeringness": [["M"]], + "domineeringness's": null, + "domineeringly": null, + "Dominga": [["M"]], + "Dominga's": null, + "Domingo": [["M"]], + "Domingo's": null, + "Dominguez": [["M"]], + "Dominguez's": null, + "Dominica": [["M"]], + "Dominica's": null, + "Dominican": [["M", "S"]], + "Dominican's": null, + "Dominicans": null, + "Dominick": [["M"]], + "Dominick's": null, + "Dominic": [["M"]], + "Dominic's": null, + "Dominik": [["M"]], + "Dominik's": null, + "Domini": [["M"]], + "Domini's": null, + "dominion": [["M", "S"]], + "dominion's": null, + "dominions": null, + "Dominique": [["M"]], + "Dominique's": null, + "dominoes": null, + "domino": [["M"]], + "domino's": null, + "Domitian": [["M"]], + "Domitian's": null, + "Dom": [["M"]], + "Dom's": null, + "Donahue": [["M"]], + "Donahue's": null, + "Donald": [["M"]], + "Donald's": null, + "Donaldson": [["M"]], + "Donaldson's": null, + "Donall": [["M"]], + "Donall's": null, + "Donal": [["M"]], + "Donal's": null, + "Donalt": [["M"]], + "Donalt's": null, + "Dona": [["M"]], + "Dona's": null, + "dona": [["M", "S"]], + "dona's": null, + "donas": null, + "Donatello": [["M"]], + "Donatello's": null, + "donate": [["X", "V", "G", "N", "S", "D"]], + "donations": null, + "donative": [["M"]], + "donating": null, + "donation": [["M"]], + "donates": null, + "donated": null, + "donation's": null, + "donative's": null, + "Donaugh": [["M"]], + "Donaugh's": null, + "Donavon": [["M"]], + "Donavon's": null, + "done": [["A", "U", "F"]], + "redone": null, + "undone": null, + "Donella": [["M"]], + "Donella's": null, + "Donelle": [["M"]], + "Donelle's": null, + "Donetsk": [["M"]], + "Donetsk's": null, + "Donetta": [["M"]], + "Donetta's": null, + "dong": [["G", "D", "M", "S"]], + "donging": null, + "donged": null, + "dong's": null, + "dongs": null, + "dongle": [["S"]], + "dongles": null, + "Donia": [["M"]], + "Donia's": null, + "Donica": [["M"]], + "Donica's": null, + "Donielle": [["M"]], + "Donielle's": null, + "Donizetti": [["M"]], + "Donizetti's": null, + "donkey": [["M", "S"]], + "donkey's": null, + "donkeys": null, + "Donna": [["M"]], + "Donna's": null, + "Donnamarie": [["M"]], + "Donnamarie's": null, + "donned": null, + "Donnell": [["M"]], + "Donnell's": null, + "Donnelly": [["M"]], + "Donnelly's": null, + "Donne": [["M"]], + "Donne's": null, + "Donner": [["M"]], + "Donner's": null, + "Donnie": [["M"]], + "Donnie's": null, + "Donni": [["M"]], + "Donni's": null, + "donning": null, + "donnishness": [["M"]], + "donnishness's": null, + "donnish": [["Y", "P"]], + "donnishly": null, + "Donn": [["R", "M"]], + "Donn's": null, + "donnybrook": [["M", "S"]], + "donnybrook's": null, + "donnybrooks": null, + "Donny": [["M"]], + "Donny's": null, + "donor": [["M", "S"]], + "donor's": null, + "donors": null, + "Donovan": [["M"]], + "Donovan's": null, + "don": [["S"]], + "dons": null, + "Don": [["S", "M"]], + "Dons": null, + "Don's": null, + "don't": null, + "donut": [["M", "S"]], + "donut's": null, + "donuts": null, + "donutted": null, + "donutting": null, + "doodad": [["M", "S"]], + "doodad's": null, + "doodads": null, + "doodlebug": [["M", "S"]], + "doodlebug's": null, + "doodlebugs": null, + "doodler": [["M"]], + "doodler's": null, + "doodle": [["S", "R", "D", "Z", "G"]], + "doodles": null, + "doodled": null, + "doodlers": null, + "doodling": null, + "doohickey": [["M", "S"]], + "doohickey's": null, + "doohickeys": null, + "Dooley": [["M"]], + "Dooley's": null, + "Doolittle": [["M"]], + "Doolittle's": null, + "doom": [["M", "D", "G", "S"]], + "doom's": null, + "doomed": null, + "dooming": null, + "dooms": null, + "doomsday": [["S", "M"]], + "doomsdays": null, + "doomsday's": null, + "Doonesbury": [["M"]], + "Doonesbury's": null, + "doorbell": [["S", "M"]], + "doorbells": null, + "doorbell's": null, + "door": [["G", "D", "M", "S"]], + "dooring": null, + "doored": null, + "door's": null, + "doors": [["I"]], + "doorhandles": null, + "doorkeeper": [["M"]], + "doorkeeper's": null, + "doorkeep": [["R", "Z"]], + "doorkeepers": null, + "doorknob": [["S", "M"]], + "doorknobs": null, + "doorknob's": null, + "doorman": [["M"]], + "doorman's": null, + "doormat": [["S", "M"]], + "doormats": null, + "doormat's": null, + "doormen": null, + "doornail": [["M"]], + "doornail's": null, + "doorplate": [["S", "M"]], + "doorplates": null, + "doorplate's": null, + "indoors": null, + "doorstep": [["M", "S"]], + "doorstep's": null, + "doorsteps": null, + "doorstepped": null, + "doorstepping": null, + "doorstop": [["M", "S"]], + "doorstop's": null, + "doorstops": null, + "doorway": [["M", "S"]], + "doorway's": null, + "doorways": null, + "dooryard": [["S", "M"]], + "dooryards": null, + "dooryard's": null, + "dopamine": null, + "dopant": [["M"]], + "dopant's": null, + "dopa": [["S", "M"]], + "dopas": null, + "dopa's": null, + "dope": [["D", "R", "S", "M", "Z", "G"]], + "doped": null, + "doper": [["M"]], + "dopes": null, + "dope's": null, + "dopers": null, + "doping": null, + "doper's": null, + "dopey": null, + "dopier": null, + "dopiest": null, + "dopiness": [["S"]], + "dopinesses": null, + "Doppler": [["M"]], + "Doppler's": null, + "Dorado": [["M"]], + "Dorado's": null, + "Doralia": [["M"]], + "Doralia's": null, + "Doralin": [["M"]], + "Doralin's": null, + "Doralyn": [["M"]], + "Doralyn's": null, + "Doralynne": [["M"]], + "Doralynne's": null, + "Doralynn": [["M"]], + "Doralynn's": null, + "Dora": [["M"]], + "Dora's": null, + "Dorcas": null, + "Dorchester": [["M"]], + "Dorchester's": null, + "Doreen": [["M"]], + "Doreen's": null, + "Dorelia": [["M"]], + "Dorelia's": null, + "Dorella": [["M"]], + "Dorella's": null, + "Dorelle": [["M"]], + "Dorelle's": null, + "Dor�": [["M"]], + "Dor�'s": null, + "Dorena": [["M"]], + "Dorena's": null, + "Dorene": [["M"]], + "Dorene's": null, + "Doretta": [["M"]], + "Doretta's": null, + "Dorette": [["M"]], + "Dorette's": null, + "Dorey": [["M"]], + "Dorey's": null, + "Doria": [["M"]], + "Doria's": null, + "Dorian": [["M"]], + "Dorian's": null, + "Doric": null, + "Dorice": [["M"]], + "Dorice's": null, + "Dorie": [["M"]], + "Dorie's": null, + "Dori": [["M", "S"]], + "Dori's": null, + "Doris": null, + "Dorine": [["M"]], + "Dorine's": null, + "Dorisa": [["M"]], + "Dorisa's": null, + "Dorise": [["M"]], + "Dorise's": null, + "Dorita": [["M"]], + "Dorita's": null, + "dork": [["S"]], + "dorks": null, + "dorky": [["R", "T"]], + "dorkier": null, + "dorkiest": null, + "dormancy": [["M", "S"]], + "dormancy's": null, + "dormancies": null, + "dormant": [["S"]], + "dormants": null, + "dormer": [["M"]], + "dormer's": null, + "dormice": null, + "dormitory": [["S", "M"]], + "dormitories": null, + "dormitory's": null, + "dorm": [["M", "R", "Z", "S"]], + "dorm's": null, + "dormers": null, + "dorms": null, + "dormouse": [["M"]], + "dormouse's": null, + "Dorolice": [["M"]], + "Dorolice's": null, + "Dorolisa": [["M"]], + "Dorolisa's": null, + "Doro": [["M"]], + "Doro's": null, + "Dorotea": [["M"]], + "Dorotea's": null, + "Doroteya": [["M"]], + "Doroteya's": null, + "Dorothea": [["M"]], + "Dorothea's": null, + "Dorothee": [["M"]], + "Dorothee's": null, + "Dorothy": [["M"]], + "Dorothy's": null, + "Dorree": [["M"]], + "Dorree's": null, + "Dorrie": [["M"]], + "Dorrie's": null, + "Dorri": [["S", "M"]], + "Dorris": null, + "Dorri's": null, + "Dorry": [["M"]], + "Dorry's": null, + "dorsal": [["Y", "S"]], + "dorsally": null, + "dorsals": null, + "Dorsey": [["M"]], + "Dorsey's": null, + "Dorthea": [["M"]], + "Dorthea's": null, + "Dorthy": [["M"]], + "Dorthy's": null, + "Dortmund": [["M"]], + "Dortmund's": null, + "Dory": [["M"]], + "Dory's": null, + "dory": [["S", "M"]], + "dories": null, + "dory's": null, + "DOS": null, + "dosage": [["S", "M"]], + "dosages": null, + "dosage's": null, + "dose": [["M"]], + "dose's": null, + "dos": [["G", "D", "S"]], + "dosing": null, + "dosed": null, + "doses": null, + "Dosi": [["M"]], + "Dosi's": null, + "dosimeter": [["M", "S"]], + "dosimeter's": null, + "dosimeters": null, + "dosimetry": [["M"]], + "dosimetry's": null, + "dossier": [["M", "S"]], + "dossier's": null, + "dossiers": null, + "dost": null, + "Dostoevsky": [["M"]], + "Dostoevsky's": null, + "DOT": null, + "dotage": [["S", "M"]], + "dotages": null, + "dotage's": null, + "dotard": [["M", "S"]], + "dotard's": null, + "dotards": null, + "doter": [["M"]], + "doter's": null, + "dote": [["S"]], + "dotes": null, + "Doti": [["M"]], + "Doti's": null, + "doting": [["Y"]], + "dotingly": null, + "Dot": [["M"]], + "Dot's": null, + "dot": [["M", "D", "R", "S", "J", "Z", "G"]], + "dot's": null, + "doted": null, + "dots": null, + "dotings": null, + "doters": null, + "Dotson": [["M"]], + "Dotson's": null, + "dotted": null, + "Dottie": [["M"]], + "Dottie's": null, + "Dotti": [["M"]], + "Dotti's": null, + "dottiness": [["M"]], + "dottiness's": null, + "dotting": null, + "Dotty": [["M"]], + "Dotty's": null, + "dotty": [["P", "R", "T"]], + "dottier": null, + "dottiest": null, + "do": [["T", "Z", "R", "H", "G", "J"]], + "doest": null, + "doers": null, + "doth": null, + "doings": null, + "Douala": [["M"]], + "Douala's": null, + "Douay": [["M"]], + "Douay's": null, + "Doubleday": [["M"]], + "Doubleday's": null, + "doubled": [["U", "A"]], + "undoubled": null, + "redoubled": null, + "double": [["G", "P", "S", "R", "D", "Z"]], + "doubling": [["A"]], + "doubleness": [["M"]], + "doubles": [["M"]], + "doubler": [["M"]], + "doublers": null, + "doubleheader": [["M", "S"]], + "doubleheader's": null, + "doubleheaders": null, + "doubleness's": null, + "doubler's": null, + "doubles's": null, + "doublespeak": [["S"]], + "doublespeaks": null, + "doublethink": [["M"]], + "doublethink's": null, + "doublet": [["M", "S"]], + "doublet's": null, + "doublets": null, + "doubleton": [["M"]], + "doubleton's": null, + "redoubling": null, + "doubloon": [["M", "S"]], + "doubloon's": null, + "doubloons": null, + "doubly": null, + "doubt": [["A", "G", "S", "D", "M", "B"]], + "redoubt": null, + "redoubting": null, + "redoubts": null, + "redoubted": null, + "redoubt's": null, + "redoubtable": null, + "doubting": [["Y"]], + "doubts": null, + "doubted": [["U"]], + "doubt's": null, + "doubtable": null, + "undoubted": [["Y"]], + "doubter": [["S", "M"]], + "doubters": null, + "doubter's": null, + "doubtfulness": [["S", "M"]], + "doubtfulnesses": null, + "doubtfulness's": null, + "doubtful": [["Y", "P"]], + "doubtfully": null, + "doubtingly": null, + "doubtlessness": [["M"]], + "doubtlessness's": null, + "doubtless": [["Y", "P"]], + "doubtlessly": null, + "douche": [["G", "S", "D", "M"]], + "douching": null, + "douches": null, + "douched": null, + "douche's": null, + "Dougherty": [["M"]], + "Dougherty's": null, + "dough": [["M"]], + "dough's": null, + "doughs": null, + "doughty": [["R", "T"]], + "doughtier": null, + "doughtiest": null, + "doughy": [["R", "T"]], + "doughier": null, + "doughiest": null, + "Dougie": [["M"]], + "Dougie's": null, + "Douglas": [["M"]], + "Douglas's": null, + "Douglass": null, + "Doug": [["M"]], + "Doug's": null, + "Dougy": [["M"]], + "Dougy's": null, + "dourness": [["M", "S"]], + "dourness's": null, + "dournesses": null, + "Douro": [["M"]], + "Douro's": null, + "dour": [["T", "Y", "R", "P"]], + "dourest": null, + "dourly": null, + "dourer": null, + "douser": [["M"]], + "douser's": null, + "douse": [["S", "R", "D", "G"]], + "douses": null, + "doused": null, + "dousing": null, + "dovecote": [["M", "S"]], + "dovecote's": null, + "dovecotes": null, + "Dover": [["M"]], + "Dover's": null, + "dove": [["R", "S", "M"]], + "dover": null, + "doves": null, + "dove's": null, + "dovetail": [["G", "S", "D", "M"]], + "dovetailing": null, + "dovetails": null, + "dovetailed": null, + "dovetail's": null, + "dovish": null, + "Dov": [["M", "R"]], + "Dov's": null, + "dowager": [["S", "M"]], + "dowagers": null, + "dowager's": null, + "dowdily": null, + "dowdiness": [["M", "S"]], + "dowdiness's": null, + "dowdinesses": null, + "dowdy": [["T", "P", "S", "R"]], + "dowdiest": null, + "dowdies": null, + "dowdier": null, + "dowel": [["G", "M", "D", "S"]], + "doweling": null, + "dowel's": null, + "doweled": null, + "dowels": null, + "dower": [["G", "D", "M", "S"]], + "dowering": null, + "dowered": null, + "dower's": null, + "dowers": null, + "Dow": [["M"]], + "Dow's": null, + "downbeat": [["S", "M"]], + "downbeats": null, + "downbeat's": null, + "downcast": [["S"]], + "downcasts": null, + "downdraft": [["M"]], + "downdraft's": null, + "downer": [["M"]], + "downer's": null, + "Downey": [["M"]], + "Downey's": null, + "downfall": [["N", "M", "S"]], + "downfallen": null, + "downfall's": null, + "downfalls": null, + "downgrade": [["G", "S", "D"]], + "downgrading": null, + "downgrades": null, + "downgraded": null, + "down": [["G", "Z", "S", "R", "D"]], + "downing": null, + "downers": null, + "downs": null, + "downed": null, + "downheartedness": [["M", "S"]], + "downheartedness's": null, + "downheartednesses": null, + "downhearted": [["P", "Y"]], + "downheartedly": null, + "downhill": [["R", "S"]], + "downhiller": null, + "downhills": null, + "downland": null, + "download": [["D", "G", "S"]], + "downloaded": null, + "downloading": null, + "downloads": null, + "downpipes": null, + "downplay": [["G", "D", "S"]], + "downplaying": null, + "downplayed": null, + "downplays": null, + "downpour": [["M", "S"]], + "downpour's": null, + "downpours": null, + "downrange": null, + "downrightness": [["M"]], + "downrightness's": null, + "downright": [["Y", "P"]], + "downrightly": null, + "downriver": null, + "Downs": null, + "downscale": [["G", "S", "D"]], + "downscaling": null, + "downscales": null, + "downscaled": null, + "downside": [["S"]], + "downsides": null, + "downsize": [["D", "S", "G"]], + "downsized": null, + "downsizes": null, + "downsizing": null, + "downslope": null, + "downspout": [["S", "M"]], + "downspouts": null, + "downspout's": null, + "downstage": [["S"]], + "downstages": null, + "downstairs": null, + "downstate": [["S", "R"]], + "downstates": null, + "downstater": null, + "downstream": null, + "downswing": [["M", "S"]], + "downswing's": null, + "downswings": null, + "downtime": [["S", "M"]], + "downtimes": null, + "downtime's": null, + "downtowner": [["M"]], + "downtowner's": null, + "downtown": [["M", "R", "S"]], + "downtown's": null, + "downtowns": null, + "downtrend": [["M"]], + "downtrend's": null, + "downtrodden": null, + "downturn": [["M", "S"]], + "downturn's": null, + "downturns": null, + "downwardness": [["M"]], + "downwardness's": null, + "downward": [["Y", "P", "S"]], + "downwardly": null, + "downwards": null, + "downwind": null, + "downy": [["R", "T"]], + "downier": null, + "downiest": null, + "dowry": [["S", "M"]], + "dowries": null, + "dowry's": null, + "dowse": [["G", "Z", "S", "R", "D"]], + "dowsing": null, + "dowsers": null, + "dowses": null, + "dowser": [["M"]], + "dowsed": null, + "dowser's": null, + "doxology": [["M", "S"]], + "doxology's": null, + "doxologies": null, + "doyenne": [["S", "M"]], + "doyennes": null, + "doyenne's": null, + "doyen": [["S", "M"]], + "doyens": null, + "doyen's": null, + "Doyle": [["M"]], + "Doyle's": null, + "Doy": [["M"]], + "Doy's": null, + "doze": null, + "dozen": [["G", "H", "D"]], + "dozening": null, + "dozenth": null, + "dozened": null, + "dozenths": null, + "dozer": [["M"]], + "dozer's": null, + "doz": [["X", "G", "N", "D", "R", "S"]], + "dozens": null, + "dozing": null, + "dozed": null, + "dozes": null, + "dozy": null, + "DP": null, + "DPs": null, + "dpt": null, + "DPT": null, + "drabbed": null, + "drabber": null, + "drabbest": null, + "drabbing": null, + "drabness": [["M", "S"]], + "drabness's": null, + "drabnesses": null, + "drab": [["Y", "S", "P"]], + "drably": null, + "drabs": null, + "drachma": [["M", "S"]], + "drachma's": null, + "drachmas": null, + "Draco": [["M"]], + "Draco's": null, + "draconian": null, + "Draconian": null, + "Dracula": [["M"]], + "Dracula's": null, + "draft": [["A", "M", "D", "G", "S"]], + "redraft": null, + "redraft's": null, + "redrafted": null, + "redrafting": null, + "redrafts": null, + "draft's": null, + "drafted": null, + "drafting": [["S"]], + "drafts": null, + "draftee": [["S", "M"]], + "draftees": null, + "draftee's": null, + "drafter": [["M", "S"]], + "drafter's": null, + "drafters": null, + "draftily": null, + "draftiness": [["S", "M"]], + "draftinesses": null, + "draftiness's": null, + "draftings": null, + "draftsman": [["M"]], + "draftsman's": null, + "draftsmanship": [["S", "M"]], + "draftsmanships": null, + "draftsmanship's": null, + "draftsmen": null, + "draftsperson": null, + "draftswoman": null, + "draftswomen": null, + "drafty": [["P", "T", "R"]], + "draftiest": null, + "draftier": null, + "dragged": null, + "dragger": [["M"]], + "dragger's": null, + "dragging": [["Y"]], + "draggingly": null, + "draggy": [["R", "T"]], + "draggier": null, + "draggiest": null, + "drag": [["M", "S"]], + "drag's": null, + "drags": null, + "dragnet": [["M", "S"]], + "dragnet's": null, + "dragnets": null, + "dragonfly": [["S", "M"]], + "dragonflies": null, + "dragonfly's": null, + "dragonhead": [["M"]], + "dragonhead's": null, + "dragon": [["S", "M"]], + "dragons": null, + "dragon's": null, + "dragoon": [["D", "M", "G", "S"]], + "dragooned": null, + "dragoon's": null, + "dragooning": null, + "dragoons": null, + "drainage": [["M", "S"]], + "drainage's": null, + "drainages": null, + "drainboard": [["S", "M"]], + "drainboards": null, + "drainboard's": null, + "drained": [["U"]], + "undrained": null, + "drainer": [["M"]], + "drainer's": null, + "drainpipe": [["M", "S"]], + "drainpipe's": null, + "drainpipes": null, + "drain": [["S", "Z", "G", "R", "D", "M"]], + "drains": null, + "drainers": null, + "draining": null, + "drain's": null, + "Drake": [["M"]], + "Drake's": null, + "drake": [["S", "M"]], + "drakes": null, + "drake's": null, + "Dramamine": [["M", "S"]], + "Dramamine's": null, + "Dramamines": null, + "drama": [["S", "M"]], + "dramas": null, + "drama's": null, + "dramatically": [["U"]], + "undramatically": null, + "dramatical": [["Y"]], + "dramatic": [["S"]], + "dramatics": [["M"]], + "dramatics's": null, + "dramatist": [["M", "S"]], + "dramatist's": null, + "dramatists": null, + "dramatization": [["M", "S"]], + "dramatization's": null, + "dramatizations": null, + "dramatized": [["U"]], + "undramatized": [["S", "M"]], + "dramatizer": [["M"]], + "dramatizer's": null, + "dramatize": [["S", "R", "D", "Z", "G"]], + "dramatizes": null, + "dramatizers": null, + "dramatizing": null, + "dramaturgy": [["M"]], + "dramaturgy's": null, + "Drambuie": [["M"]], + "Drambuie's": null, + "drammed": null, + "dramming": null, + "dram": [["M", "S"]], + "dram's": null, + "drams": null, + "drank": null, + "Drano": [["M"]], + "Drano's": null, + "draper": [["M"]], + "draper's": null, + "drapery": [["M", "S"]], + "drapery's": null, + "draperies": null, + "drape": [["S", "R", "D", "G", "Z"]], + "drapes": null, + "draped": null, + "draping": null, + "drapers": null, + "drastic": null, + "drastically": null, + "drat": [["S"]], + "drats": null, + "dratted": null, + "dratting": null, + "Dravidian": [["M"]], + "Dravidian's": null, + "drawable": null, + "draw": [["A", "S", "G"]], + "redraw": null, + "redraws": null, + "redrawing": null, + "draws": null, + "drawing": [["S", "M"]], + "drawback": [["M", "S"]], + "drawback's": null, + "drawbacks": null, + "drawbridge": [["S", "M"]], + "drawbridges": null, + "drawbridge's": null, + "drawer": [["S", "M"]], + "drawers": null, + "drawer's": null, + "drawings": null, + "drawing's": null, + "drawler": [["M"]], + "drawler's": null, + "drawling": [["Y"]], + "drawlingly": null, + "drawl": [["R", "D", "S", "G"]], + "drawled": null, + "drawls": null, + "drawly": null, + "drawn": [["A", "I"]], + "redrawn": null, + "indrawn": null, + "drawnly": null, + "drawnness": null, + "drawstring": [["M", "S"]], + "drawstring's": null, + "drawstrings": null, + "dray": [["S", "M", "D", "G"]], + "drays": null, + "dray's": null, + "drayed": null, + "draying": null, + "dreadfulness": [["S", "M"]], + "dreadfulnesses": null, + "dreadfulness's": null, + "dreadful": [["Y", "P", "S"]], + "dreadfully": null, + "dreadfuls": null, + "dreadlocks": null, + "dreadnought": [["S", "M"]], + "dreadnoughts": null, + "dreadnought's": null, + "dread": [["S", "R", "D", "G"]], + "dreads": null, + "dreader": null, + "dreaded": null, + "dreading": null, + "dreamboat": [["S", "M"]], + "dreamboats": null, + "dreamboat's": null, + "dreamed": [["U"]], + "undreamed": null, + "dreamer": [["M"]], + "dreamer's": null, + "dreamily": null, + "dreaminess": [["S", "M"]], + "dreaminesses": null, + "dreaminess's": null, + "dreaming": [["Y"]], + "dreamingly": null, + "dreamland": [["S", "M"]], + "dreamlands": null, + "dreamland's": null, + "dreamlessness": [["M"]], + "dreamlessness's": null, + "dreamless": [["P", "Y"]], + "dreamlessly": null, + "dreamlike": null, + "dream": [["S", "M", "R", "D", "Z", "G"]], + "dreams": null, + "dream's": null, + "dreamers": null, + "dreamworld": [["S"]], + "dreamworlds": null, + "dreamy": [["P", "T", "R"]], + "dreamiest": null, + "dreamier": null, + "drearily": null, + "dreariness": [["S", "M"]], + "drearinesses": null, + "dreariness's": null, + "drear": [["S"]], + "drears": null, + "dreary": [["T", "R", "S", "P"]], + "dreariest": null, + "drearier": null, + "drearies": null, + "Dreddy": [["M"]], + "Dreddy's": null, + "dredge": [["M", "Z", "G", "S", "R", "D"]], + "dredge's": null, + "dredgers": null, + "dredging": null, + "dredges": null, + "dredger": [["M"]], + "dredged": null, + "dredger's": null, + "Dredi": [["M"]], + "Dredi's": null, + "dreg": [["M", "S"]], + "dreg's": null, + "dregs": null, + "Dreiser": [["M"]], + "Dreiser's": null, + "Dre": [["M"]], + "Dre's": null, + "drencher": [["M"]], + "drencher's": null, + "drench": [["G", "D", "R", "S"]], + "drenching": null, + "drenched": null, + "drenches": null, + "Dresden": [["M"]], + "Dresden's": null, + "dress": [["A", "D", "R", "S", "G"]], + "redress": null, + "redressed": null, + "redresser": null, + "redresses": null, + "redressing": null, + "dressed": [["U"]], + "dresser": [["M", "S"]], + "dresses": [["U"]], + "dressing": [["M", "S"]], + "dressage": [["M", "S"]], + "dressage's": null, + "dressages": null, + "undressed": null, + "dresser's": [["A"]], + "dressers": null, + "redresser's": null, + "undresses": null, + "dressiness": [["S", "M"]], + "dressinesses": null, + "dressiness's": null, + "dressing's": null, + "dressings": null, + "dressmaker": [["M", "S"]], + "dressmaker's": null, + "dressmakers": null, + "dressmaking": [["S", "M"]], + "dressmakings": null, + "dressmaking's": null, + "dressy": [["P", "T", "R"]], + "dressiest": null, + "dressier": null, + "drew": [["A"]], + "redrew": null, + "Drew": [["M"]], + "Drew's": null, + "Drexel": [["M"]], + "Drexel's": null, + "Dreyfus": [["M"]], + "Dreyfus's": null, + "Dreyfuss": null, + "dribble": [["D", "R", "S", "G", "Z"]], + "dribbled": null, + "dribbler": [["M"]], + "dribbles": null, + "dribbling": null, + "dribblers": null, + "dribbler's": null, + "driblet": [["S", "M"]], + "driblets": null, + "driblet's": null, + "drib": [["S", "M"]], + "dribs": null, + "drib's": null, + "dried": [["U"]], + "undried": null, + "drier": [["M"]], + "drier's": null, + "drifter": [["M"]], + "drifter's": null, + "drifting": [["Y"]], + "driftingly": null, + "drift": [["R", "D", "Z", "S", "G"]], + "drifted": null, + "drifters": null, + "drifts": null, + "driftwood": [["S", "M"]], + "driftwoods": null, + "driftwood's": null, + "driller": [["M"]], + "driller's": null, + "drilling": [["M"]], + "drilling's": null, + "drillmaster": [["S", "M"]], + "drillmasters": null, + "drillmaster's": null, + "drill": [["M", "R", "D", "Z", "G", "S"]], + "drill's": null, + "drilled": null, + "drillers": null, + "drills": null, + "drinkable": [["S"]], + "drinkables": null, + "drink": [["B", "R", "S", "Z", "G"]], + "drinker": [["M"]], + "drinks": null, + "drinkers": null, + "drinking": null, + "drinker's": null, + "dripped": null, + "dripping": [["M", "S"]], + "dripping's": null, + "drippings": null, + "drippy": [["R", "T"]], + "drippier": null, + "drippiest": null, + "drip": [["S", "M"]], + "drips": null, + "drip's": null, + "driveler": [["M"]], + "driveler's": null, + "drivel": [["G", "Z", "D", "R", "S"]], + "driveling": null, + "drivelers": null, + "driveled": null, + "drivels": null, + "driven": [["P"]], + "drivenness": null, + "driver": [["M"]], + "driver's": null, + "drive": [["S", "R", "B", "G", "Z", "J"]], + "drives": null, + "drivable": null, + "driving": null, + "drivers": null, + "drivings": null, + "driveway": [["M", "S"]], + "driveway's": null, + "driveways": null, + "drizzle": [["D", "S", "G", "M"]], + "drizzled": null, + "drizzles": null, + "drizzling": [["Y"]], + "drizzle's": null, + "drizzlingly": null, + "drizzly": [["T", "R"]], + "drizzliest": null, + "drizzlier": null, + "Dr": [["M"]], + "Dr's": null, + "drogue": [["M", "S"]], + "drogue's": null, + "drogues": null, + "drollery": [["S", "M"]], + "drolleries": null, + "drollery's": null, + "drollness": [["M", "S"]], + "drollness's": null, + "drollnesses": null, + "droll": [["R", "D", "S", "P", "T", "G"]], + "droller": null, + "drolled": null, + "drolls": null, + "drollest": null, + "drolling": null, + "drolly": null, + "dromedary": [["M", "S"]], + "dromedary's": null, + "dromedaries": null, + "Drona": [["M"]], + "Drona's": null, + "drone": [["S", "R", "D", "G", "M"]], + "drones": null, + "droner": null, + "droned": null, + "droning": [["Y"]], + "drone's": null, + "droningly": null, + "drool": [["G", "S", "R", "D"]], + "drooling": null, + "drools": null, + "drooler": null, + "drooled": null, + "droopiness": [["M", "S"]], + "droopiness's": null, + "droopinesses": null, + "drooping": [["Y"]], + "droopingly": null, + "droop": [["S", "G", "D"]], + "droops": null, + "drooped": null, + "droopy": [["P", "R", "T"]], + "droopier": null, + "droopiest": null, + "drophead": null, + "dropkick": [["S"]], + "dropkicks": null, + "droplet": [["S", "M"]], + "droplets": null, + "droplet's": null, + "dropout": [["M", "S"]], + "dropout's": null, + "dropouts": null, + "dropped": null, + "dropper": [["S", "M"]], + "droppers": null, + "dropper's": null, + "dropping": [["M", "S"]], + "dropping's": null, + "droppings": null, + "dropsical": null, + "drop": [["S", "M"]], + "drops": null, + "drop's": null, + "dropsy": [["M", "S"]], + "dropsy's": null, + "dropsies": null, + "drosophila": [["M"]], + "drosophila's": null, + "dross": [["S", "M"]], + "drosses": null, + "dross's": null, + "drought": [["S", "M"]], + "droughts": null, + "drought's": null, + "drover": [["M"]], + "drover's": null, + "drove": [["S", "R", "D", "G", "Z"]], + "droves": null, + "droved": null, + "droving": null, + "drovers": null, + "drowner": [["M"]], + "drowner's": null, + "drown": [["R", "D", "S", "J", "G"]], + "drowned": null, + "drowns": null, + "drownings": null, + "drowning": null, + "drowse": [["S", "D", "G"]], + "drowses": null, + "drowsed": null, + "drowsing": null, + "drowsily": null, + "drowsiness": [["S", "M"]], + "drowsinesses": null, + "drowsiness's": null, + "drowsy": [["P", "T", "R"]], + "drowsiest": null, + "drowsier": null, + "drubbed": null, + "drubber": [["M", "S"]], + "drubber's": null, + "drubbers": null, + "drubbing": [["S", "M"]], + "drubbings": null, + "drubbing's": null, + "drub": [["S"]], + "drubs": null, + "Drucie": [["M"]], + "Drucie's": null, + "Drucill": [["M"]], + "Drucill's": null, + "Druci": [["M"]], + "Druci's": null, + "Drucy": [["M"]], + "Drucy's": null, + "drudge": [["M", "G", "S", "R", "D"]], + "drudge's": null, + "drudging": [["Y"]], + "drudges": null, + "drudger": [["M"]], + "drudged": null, + "drudger's": null, + "drudgery": [["S", "M"]], + "drudgeries": null, + "drudgery's": null, + "drudgingly": null, + "Drud": [["M"]], + "Drud's": null, + "drugged": null, + "druggie": [["S", "R", "T"]], + "druggies": null, + "druggier": null, + "druggiest": null, + "drugging": null, + "druggist": [["S", "M"]], + "druggists": null, + "druggist's": null, + "Drugi": [["M"]], + "Drugi's": null, + "drugless": null, + "drug": [["S", "M"]], + "drugs": null, + "drug's": null, + "drugstore": [["S", "M"]], + "drugstores": null, + "drugstore's": null, + "druidism": [["M", "S"]], + "druidism's": null, + "druidisms": null, + "druid": [["M", "S"]], + "druid's": null, + "druids": null, + "Druid's": null, + "Dru": [["M"]], + "Dru's": null, + "drumbeat": [["S", "G", "M"]], + "drumbeats": null, + "drumbeating": null, + "drumbeat's": null, + "drumhead": [["M"]], + "drumhead's": null, + "drumlin": [["M", "S"]], + "drumlin's": null, + "drumlins": null, + "drummed": null, + "drummer": [["S", "M"]], + "drummers": null, + "drummer's": null, + "drumming": null, + "Drummond": [["M"]], + "Drummond's": null, + "drum": [["S", "M"]], + "drums": null, + "drum's": null, + "drumstick": [["S", "M"]], + "drumsticks": null, + "drumstick's": null, + "drunkard": [["S", "M"]], + "drunkards": null, + "drunkard's": null, + "drunkenness": [["S", "M"]], + "drunkennesses": null, + "drunkenness's": null, + "drunken": [["Y", "P"]], + "drunkenly": null, + "drunk": [["S", "R", "N", "Y", "M", "T"]], + "drunks": null, + "drunker": null, + "drunkly": null, + "drunk's": null, + "drunkest": null, + "drupe": [["S", "M"]], + "drupes": null, + "drupe's": null, + "Drury": [["M"]], + "Drury's": null, + "Drusie": [["M"]], + "Drusie's": null, + "Drusilla": [["M"]], + "Drusilla's": null, + "Drusi": [["M"]], + "Drusi's": null, + "Drusy": [["M"]], + "Drusy's": null, + "druthers": null, + "dryad": [["M", "S"]], + "dryad's": null, + "dryads": null, + "Dryden": [["M"]], + "Dryden's": null, + "dryer": [["M", "S"]], + "dryer's": null, + "dryers": null, + "dry": [["G", "Y", "D", "R", "S", "T", "Z"]], + "drying": null, + "dryly": null, + "dries": null, + "driest": null, + "driers": null, + "dryish": null, + "dryness": [["S", "M"]], + "drynesses": null, + "dryness's": null, + "drys": null, + "drystone": null, + "drywall": [["G", "S", "D"]], + "drywalling": null, + "drywalls": null, + "drywalled": null, + "D's": null, + "d's": [["A"]], + "red's": null, + "Dshubba": [["M"]], + "Dshubba's": null, + "DST": null, + "DTP": null, + "dualism": [["M", "S"]], + "dualism's": null, + "dualisms": null, + "dualistic": null, + "dualist": [["M"]], + "dualist's": null, + "duality": [["M", "S"]], + "duality's": null, + "dualities": null, + "dual": [["Y", "S"]], + "dually": null, + "duals": null, + "Duane": [["M"]], + "Duane's": null, + "Dubai": [["M"]], + "Dubai's": null, + "dubbed": null, + "dubber": [["S"]], + "dubbers": null, + "dubbing": [["M"]], + "dubbing's": null, + "dubbin": [["M", "S"]], + "dubbin's": null, + "dubbins": null, + "Dubcek": [["M"]], + "Dubcek's": null, + "Dubhe": [["M"]], + "Dubhe's": null, + "dubiety": [["M", "S"]], + "dubiety's": null, + "dubieties": null, + "dubiousness": [["S", "M"]], + "dubiousnesses": null, + "dubiousness's": null, + "dubious": [["Y", "P"]], + "dubiously": null, + "Dublin": [["M"]], + "Dublin's": null, + "Dubrovnik": [["M"]], + "Dubrovnik's": null, + "dub": [["S"]], + "dubs": null, + "Dubuque": [["M"]], + "Dubuque's": null, + "ducal": null, + "ducat": [["S", "M"]], + "ducats": null, + "ducat's": null, + "duce": [["C", "A", "I", "K", "F"]], + "reduce": [["R", "S", "D", "G", "Z"]], + "induce": [["Z", "G", "L", "S", "R", "D"]], + "produce": [["A", "Z", "G", "D", "R", "S"]], + "duce's": null, + "Duchamp": [["M"]], + "Duchamp's": null, + "duchess": [["M", "S"]], + "duchess's": null, + "duchesses": null, + "duchy": [["S", "M"]], + "duchies": null, + "duchy's": null, + "duckbill": [["S", "M"]], + "duckbills": null, + "duckbill's": null, + "ducker": [["M"]], + "ducker's": null, + "duck": [["G", "S", "R", "D", "M"]], + "ducking": null, + "ducks": null, + "ducked": null, + "duck's": null, + "duckling": [["S", "M"]], + "ducklings": null, + "duckling's": null, + "duckpins": null, + "duckpond": null, + "duckweed": [["M", "S"]], + "duckweed's": null, + "duckweeds": null, + "ducky": [["R", "S", "M", "T"]], + "duckier": null, + "duckies": null, + "ducky's": null, + "duckiest": null, + "ducted": [["C", "F", "I"]], + "deducted": null, + "conducted": null, + "inducted": null, + "ductile": [["I"]], + "inductile": null, + "ductility": [["S", "M"]], + "ductilities": null, + "ductility's": null, + "ducting": [["F"]], + "conducting": null, + "duct": [["K", "M", "S", "F"]], + "product": [["V"]], + "product's": null, + "products": null, + "duct's": [["A"]], + "conduct's": null, + "ducts": [["C", "I"]], + "conducts": null, + "ductless": null, + "reduct's": null, + "deducts": null, + "inducts": null, + "ductwork": [["M"]], + "ductwork's": null, + "dudder": null, + "dude": [["M", "S"]], + "dude's": null, + "dudes": null, + "dudgeon": [["S", "M"]], + "dudgeons": null, + "dudgeon's": null, + "dud": [["G", "M", "D", "S"]], + "duding": null, + "dud's": null, + "duded": null, + "duds": null, + "Dudley": [["M"]], + "Dudley's": null, + "Dud": [["M"]], + "Dud's": null, + "duelist": [["M", "S"]], + "duelist's": null, + "duelists": null, + "duel": [["M", "R", "D", "G", "Z", "S", "J"]], + "duel's": null, + "dueler": null, + "dueled": null, + "dueling": null, + "duelers": null, + "duels": null, + "duelings": null, + "dueness": [["M"]], + "dueness's": null, + "duenna": [["M", "S"]], + "duenna's": null, + "duennas": null, + "due": [["P", "M", "S"]], + "due's": null, + "dues": null, + "duet": [["M", "S"]], + "duet's": null, + "duets": null, + "duetted": null, + "duetting": null, + "duffel": [["M"]], + "duffel's": null, + "duffer": [["M"]], + "duffer's": null, + "duff": [["G", "Z", "S", "R", "D", "M"]], + "duffing": null, + "duffers": null, + "duffs": null, + "duffed": null, + "duff's": null, + "Duffie": [["M"]], + "Duffie's": null, + "Duff": [["M"]], + "Duff's": null, + "Duffy": [["M"]], + "Duffy's": null, + "Dugald": [["M"]], + "Dugald's": null, + "dugout": [["S", "M"]], + "dugouts": null, + "dugout's": null, + "dug": [["S"]], + "dugs": null, + "duh": null, + "DUI": null, + "Duisburg": [["M"]], + "Duisburg's": null, + "dukedom": [["S", "M"]], + "dukedoms": null, + "dukedom's": null, + "duke": [["D", "S", "M", "G"]], + "duked": null, + "dukes": null, + "duke's": null, + "duking": null, + "Duke": [["M"]], + "Duke's": null, + "Dukey": [["M"]], + "Dukey's": null, + "Dukie": [["M"]], + "Dukie's": null, + "Duky": [["M"]], + "Duky's": null, + "Dulcea": [["M"]], + "Dulcea's": null, + "Dulce": [["M"]], + "Dulce's": null, + "dulcet": [["S", "Y"]], + "dulcets": null, + "dulcetly": null, + "Dulcia": [["M"]], + "Dulcia's": null, + "Dulciana": [["M"]], + "Dulciana's": null, + "Dulcie": [["M"]], + "Dulcie's": null, + "dulcify": null, + "Dulci": [["M"]], + "Dulci's": null, + "dulcimer": [["M", "S"]], + "dulcimer's": null, + "dulcimers": null, + "Dulcinea": [["M"]], + "Dulcinea's": null, + "Dulcine": [["M"]], + "Dulcine's": null, + "Dulcy": [["M"]], + "Dulcy's": null, + "dullard": [["M", "S"]], + "dullard's": null, + "dullards": null, + "Dulles": [["M"]], + "Dulles's": null, + "dullness": [["M", "S"]], + "dullness's": null, + "dullnesses": null, + "dull": [["S", "R", "D", "P", "G", "T"]], + "dulls": null, + "duller": null, + "dulled": null, + "dulling": null, + "dullest": null, + "dully": null, + "dulness's": null, + "Dulsea": [["M"]], + "Dulsea's": null, + "Duluth": [["M"]], + "Duluth's": null, + "duly": [["U"]], + "unduly": null, + "Du": [["M"]], + "Du's": null, + "Dumas": null, + "dumbbell": [["M", "S"]], + "dumbbell's": null, + "dumbbells": null, + "dumbfound": [["G", "S", "D", "R"]], + "dumbfounding": null, + "dumbfounds": null, + "dumbfounded": null, + "dumbfounder": null, + "dumbness": [["M", "S"]], + "dumbness's": null, + "dumbnesses": null, + "Dumbo": [["M"]], + "Dumbo's": null, + "dumb": [["P", "S", "G", "T", "Y", "R", "D"]], + "dumbs": null, + "dumbing": null, + "dumbest": null, + "dumbly": null, + "dumber": null, + "dumbed": null, + "dumbstruck": null, + "dumbwaiter": [["S", "M"]], + "dumbwaiters": null, + "dumbwaiter's": null, + "dumdum": [["M", "S"]], + "dumdum's": null, + "dumdums": null, + "dummy": [["S", "D", "M", "G"]], + "dummies": null, + "dummied": null, + "dummy's": null, + "dummying": null, + "Dumont": [["M"]], + "Dumont's": null, + "dumper": [["U", "M"]], + "undumper": null, + "undumper's": null, + "dumper's": null, + "dumpiness": [["M", "S"]], + "dumpiness's": null, + "dumpinesses": null, + "dumpling": [["M", "S"]], + "dumpling's": null, + "dumplings": null, + "dump": [["S", "G", "Z", "R", "D"]], + "dumps": null, + "dumping": null, + "dumpers": null, + "dumped": null, + "dumpster": [["S"]], + "dumpsters": null, + "Dumpster": [["S"]], + "Dumpsters": null, + "Dumpty": [["M"]], + "Dumpty's": null, + "dumpy": [["P", "R", "S", "T"]], + "dumpier": null, + "dumpies": null, + "dumpiest": null, + "Dunant": [["M"]], + "Dunant's": null, + "Dunbar": [["M"]], + "Dunbar's": null, + "Duncan": [["M"]], + "Duncan's": null, + "dunce": [["M", "S"]], + "dunce's": null, + "dunces": null, + "Dunc": [["M"]], + "Dunc's": null, + "Dundee": [["M"]], + "Dundee's": null, + "dunderhead": [["M", "S"]], + "dunderhead's": null, + "dunderheads": null, + "Dunedin": [["M"]], + "Dunedin's": null, + "dune": [["S", "M"]], + "dunes": null, + "dune's": null, + "dungaree": [["S", "M"]], + "dungarees": null, + "dungaree's": null, + "dungeon": [["G", "S", "M", "D"]], + "dungeoning": null, + "dungeons": null, + "dungeon's": null, + "dungeoned": null, + "dunghill": [["M", "S"]], + "dunghill's": null, + "dunghills": null, + "dung": [["S", "G", "D", "M"]], + "dungs": null, + "dunging": null, + "dunged": null, + "dung's": null, + "Dunham": [["M"]], + "Dunham's": null, + "dunker": [["M"]], + "dunker's": null, + "dunk": [["G", "S", "R", "D"]], + "dunking": null, + "dunks": null, + "dunked": null, + "Dunkirk": [["M"]], + "Dunkirk's": null, + "Dunlap": [["M"]], + "Dunlap's": null, + "Dun": [["M"]], + "Dun's": null, + "dunned": null, + "Dunne": [["M"]], + "Dunne's": null, + "dunner": null, + "dunnest": null, + "dunning": null, + "Dunn": [["M"]], + "Dunn's": null, + "dunno": [["M"]], + "dunno's": null, + "dun": [["S"]], + "duns": null, + "Dunstan": [["M"]], + "Dunstan's": null, + "duodecimal": [["S"]], + "duodecimals": null, + "duodena": null, + "duodenal": null, + "duodenum": [["M"]], + "duodenum's": null, + "duologue": [["M"]], + "duologue's": null, + "duo": [["M", "S"]], + "duo's": null, + "duos": null, + "duopolist": null, + "duopoly": [["M"]], + "duopoly's": null, + "dupe": [["N", "G", "D", "R", "S", "M", "Z"]], + "dupion": [["M"]], + "duping": null, + "duped": null, + "duper": [["M"]], + "dupes": null, + "dupe's": null, + "dupers": null, + "duper's": null, + "dupion's": null, + "duple": null, + "duplexer": [["M"]], + "duplexer's": null, + "duplex": [["M", "S", "R", "D", "G"]], + "duplex's": null, + "duplexes": null, + "duplexed": null, + "duplexing": null, + "duplicability": [["M"]], + "duplicability's": null, + "duplicable": null, + "duplicate": [["A", "D", "S", "G", "N", "X"]], + "reduplicate": null, + "reduplicated": null, + "reduplicates": null, + "reduplicating": null, + "reduplication": null, + "reduplications": null, + "duplicated": null, + "duplicates": null, + "duplicating": null, + "duplication": [["A", "M"]], + "duplications": null, + "reduplication's": null, + "duplication's": null, + "duplicative": null, + "duplicator": [["M", "S"]], + "duplicator's": null, + "duplicators": null, + "duplicitous": null, + "duplicity": [["S", "M"]], + "duplicities": null, + "duplicity's": null, + "Dupont": [["M", "S"]], + "Dupont's": null, + "Duponts": null, + "DuPont": [["M", "S"]], + "DuPont's": null, + "DuPonts": null, + "durability": [["M", "S"]], + "durability's": null, + "durabilities": null, + "durableness": [["M"]], + "durableness's": null, + "durable": [["P", "S"]], + "durables": null, + "durably": null, + "Duracell": [["M"]], + "Duracell's": null, + "durance": [["S", "M"]], + "durances": null, + "durance's": null, + "Durand": [["M"]], + "Durand's": null, + "Duran": [["M"]], + "Duran's": null, + "Durante": [["M"]], + "Durante's": null, + "Durant": [["M"]], + "Durant's": null, + "durational": null, + "duration": [["M", "S"]], + "duration's": null, + "durations": null, + "Durban": [["M"]], + "Durban's": null, + "D�rer": [["M"]], + "D�rer's": null, + "duress": [["S", "M"]], + "duresses": null, + "duress's": null, + "Durex": [["M"]], + "Durex's": null, + "Durham": [["M", "S"]], + "Durham's": null, + "Durhams": null, + "during": null, + "Durkee": [["M"]], + "Durkee's": null, + "Durkheim": [["M"]], + "Durkheim's": null, + "Dur": [["M"]], + "Dur's": null, + "Durocher": [["M"]], + "Durocher's": null, + "durst": null, + "durum": [["M", "S"]], + "durum's": null, + "durums": null, + "Durward": [["M"]], + "Durward's": null, + "Duse": [["M"]], + "Duse's": null, + "Dusenberg": [["M"]], + "Dusenberg's": null, + "Dusenbury": [["M"]], + "Dusenbury's": null, + "Dushanbe": [["M"]], + "Dushanbe's": null, + "dusk": [["G", "D", "M", "S"]], + "dusking": null, + "dusked": null, + "dusk's": null, + "dusks": null, + "duskiness": [["M", "S"]], + "duskiness's": null, + "duskinesses": null, + "dusky": [["R", "P", "T"]], + "duskier": null, + "duskiest": null, + "D�sseldorf": null, + "dustbin": [["M", "S"]], + "dustbin's": null, + "dustbins": null, + "dustcart": [["M"]], + "dustcart's": null, + "dustcover": null, + "duster": [["M"]], + "duster's": null, + "dustily": null, + "dustiness": [["M", "S"]], + "dustiness's": null, + "dustinesses": null, + "dusting": [["M"]], + "dusting's": null, + "Dustin": [["M"]], + "Dustin's": null, + "dustless": null, + "dustman": [["M"]], + "dustman's": null, + "dustmen": null, + "dust": [["M", "R", "D", "G", "Z", "S"]], + "dust's": null, + "dusted": null, + "dusters": null, + "dusts": null, + "dustpan": [["S", "M"]], + "dustpans": null, + "dustpan's": null, + "Dusty": [["M"]], + "Dusty's": null, + "dusty": [["R", "P", "T"]], + "dustier": null, + "dustiest": null, + "Dutch": [["M"]], + "Dutch's": null, + "Dutchman": [["M"]], + "Dutchman's": null, + "Dutchmen": null, + "dutch": [["M", "S"]], + "dutch's": null, + "dutches": null, + "Dutchwoman": null, + "Dutchwomen": null, + "duteous": [["Y"]], + "duteously": null, + "dutiable": null, + "dutifulness": [["S"]], + "dutifulnesses": null, + "dutiful": [["U", "P", "Y"]], + "undutiful": null, + "undutifulness": null, + "undutifully": null, + "dutifully": null, + "duty": [["S", "M"]], + "duties": null, + "duty's": null, + "Duvalier": [["M"]], + "Duvalier's": null, + "duvet": [["S", "M"]], + "duvets": null, + "duvet's": null, + "duxes": null, + "Dvina": [["M"]], + "Dvina's": null, + "Dvor�k": [["M"]], + "Dvor�k's": null, + "Dwain": [["M"]], + "Dwain's": null, + "dwarfish": null, + "dwarfism": [["M", "S"]], + "dwarfism's": null, + "dwarfisms": null, + "dwarf": [["M", "T", "G", "S", "P", "R", "D"]], + "dwarf's": null, + "dwarfest": null, + "dwarfing": null, + "dwarfs": null, + "dwarfness": null, + "dwarfer": null, + "dwarfed": null, + "Dwayne": [["M"]], + "Dwayne's": null, + "dweeb": [["S"]], + "dweebs": null, + "dweller": [["S", "M"]], + "dwellers": null, + "dweller's": null, + "dwell": [["I", "G", "S"]], + "indwell": null, + "indwelling": null, + "indwells": null, + "dwelling": [["M", "S"]], + "dwells": null, + "dwelling's": null, + "dwellings": null, + "dwelt": [["I"]], + "indwelt": null, + "DWI": null, + "Dwight": [["M"]], + "Dwight's": null, + "dwindle": [["G", "S", "D"]], + "dwindling": null, + "dwindles": null, + "dwindled": null, + "dyadic": null, + "dyad": [["M", "S"]], + "dyad's": null, + "dyads": null, + "Dyana": [["M"]], + "Dyana's": null, + "Dyane": [["M"]], + "Dyane's": null, + "Dyan": [["M"]], + "Dyan's": null, + "Dyanna": [["M"]], + "Dyanna's": null, + "Dyanne": [["M"]], + "Dyanne's": null, + "Dyann": [["M"]], + "Dyann's": null, + "dybbukim": null, + "dybbuk": [["S", "M"]], + "dybbuks": null, + "dybbuk's": null, + "dyed": [["A"]], + "redyed": null, + "dyeing": [["M"]], + "dyeing's": null, + "dye": [["J", "D", "R", "S", "M", "Z", "G"]], + "dyings": null, + "dyer": [["M"]], + "dyes": [["A"]], + "dye's": null, + "dyers": null, + "dying": [["U", "A"]], + "dyer's": null, + "Dyer": [["M"]], + "Dyer's": null, + "redyes": null, + "dyestuff": [["S", "M"]], + "dyestuffs": null, + "dyestuff's": null, + "undying": null, + "redying": null, + "Dyke": [["M"]], + "Dyke's": null, + "dyke's": null, + "Dylan": [["M"]], + "Dylan's": null, + "Dy": [["M"]], + "Dy's": null, + "Dynah": [["M"]], + "Dynah's": null, + "Dyna": [["M"]], + "Dyna's": null, + "dynamical": [["Y"]], + "dynamically": null, + "dynamic": [["S"]], + "dynamics": [["M"]], + "dynamics's": null, + "dynamism": [["S", "M"]], + "dynamisms": null, + "dynamism's": null, + "dynamiter": [["M"]], + "dynamiter's": null, + "dynamite": [["R", "S", "D", "Z", "M", "G"]], + "dynamites": null, + "dynamited": null, + "dynamiters": null, + "dynamite's": null, + "dynamiting": null, + "dynamized": null, + "dynamo": [["M", "S"]], + "dynamo's": null, + "dynamos": null, + "dynastic": null, + "dynasty": [["M", "S"]], + "dynasty's": null, + "dynasties": null, + "dyne": [["M"]], + "dyne's": null, + "dysentery": [["S", "M"]], + "dysenteries": null, + "dysentery's": null, + "dysfunctional": null, + "dysfunction": [["M", "S"]], + "dysfunction's": null, + "dysfunctions": null, + "dyslectic": [["S"]], + "dyslectics": null, + "dyslexia": [["M", "S"]], + "dyslexia's": null, + "dyslexias": null, + "dyslexically": null, + "dyslexic": [["S"]], + "dyslexics": null, + "dyspepsia": [["M", "S"]], + "dyspepsia's": null, + "dyspepsias": null, + "dyspeptic": [["S"]], + "dyspeptics": null, + "dysprosium": [["M", "S"]], + "dysprosium's": null, + "dysprosiums": null, + "dystopia": [["M"]], + "dystopia's": null, + "dystrophy": [["M"]], + "dystrophy's": null, + "dz": null, + "Dzerzhinsky": [["M"]], + "Dzerzhinsky's": null, + "E": null, + "ea": null, + "each": null, + "Eachelle": [["M"]], + "Eachelle's": null, + "Eada": [["M"]], + "Eada's": null, + "Eadie": [["M"]], + "Eadie's": null, + "Eadith": [["M"]], + "Eadith's": null, + "Eadmund": [["M"]], + "Eadmund's": null, + "eagerness": [["M", "S"]], + "eagerness's": null, + "eagernesses": null, + "eager": [["T", "S", "P", "R", "Y", "M"]], + "eagerest": null, + "eagers": null, + "eagerer": null, + "eagerly": null, + "eager's": null, + "eagle": [["S", "D", "G", "M"]], + "eagles": null, + "eagled": null, + "eagling": null, + "eagle's": null, + "eaglet": [["S", "M"]], + "eaglets": null, + "eaglet's": null, + "Eakins": [["M"]], + "Eakins's": null, + "Ealasaid": [["M"]], + "Ealasaid's": null, + "Eal": [["M"]], + "Eal's": null, + "Eamon": [["M"]], + "Eamon's": null, + "earache": [["S", "M"]], + "earaches": null, + "earache's": null, + "eardrum": [["S", "M"]], + "eardrums": null, + "eardrum's": null, + "earful": [["M", "S"]], + "earful's": null, + "earfuls": null, + "ear": [["G", "S", "M", "D", "Y", "H"]], + "earing": [["M"]], + "ears": null, + "ear's": null, + "eared": null, + "early": [["P", "R", "S", "T"]], + "earth": [["M", "D", "N", "Y", "G"]], + "Earhart": [["M"]], + "Earhart's": null, + "earing's": null, + "earldom": [["M", "S"]], + "earldom's": null, + "earldoms": null, + "Earle": [["M"]], + "Earle's": null, + "Earlene": [["M"]], + "Earlene's": null, + "Earlie": [["M"]], + "Earlie's": null, + "Earline": [["M"]], + "Earline's": null, + "earliness": [["S", "M"]], + "earlinesses": null, + "earliness's": null, + "Earl": [["M"]], + "Earl's": null, + "earl": [["M", "S"]], + "earl's": null, + "earls": null, + "earlobe": [["S"]], + "earlobes": null, + "Early": [["M"]], + "Early's": null, + "earlier": null, + "earlies": null, + "earliest": null, + "earmark": [["D", "G", "S", "J"]], + "earmarked": null, + "earmarking": null, + "earmarks": null, + "earmarkings": null, + "earmuff": [["S", "M"]], + "earmuffs": null, + "earmuff's": null, + "earned": [["U"]], + "unearned": null, + "earner": [["M"]], + "earner's": null, + "Earnestine": [["M"]], + "Earnestine's": null, + "Earnest": [["M"]], + "Earnest's": null, + "earnestness": [["M", "S"]], + "earnestness's": null, + "earnestnesses": null, + "earnest": [["P", "Y", "S"]], + "earnestly": null, + "earnests": null, + "earn": [["G", "R", "D", "Z", "T", "S", "J"]], + "earning": [["M"]], + "earners": null, + "earns": null, + "earnings": null, + "earning's": null, + "earphone": [["M", "S"]], + "earphone's": null, + "earphones": null, + "earpieces": null, + "earplug": [["M", "S"]], + "earplug's": null, + "earplugs": null, + "Earp": [["M"]], + "Earp's": null, + "earring": [["M", "S"]], + "earring's": null, + "earrings": null, + "earshot": [["M", "S"]], + "earshot's": null, + "earshots": null, + "earsplitting": null, + "Eartha": [["M"]], + "Eartha's": null, + "earthbound": null, + "earthed": [["U"]], + "unearthed": null, + "earthenware": [["M", "S"]], + "earthenware's": null, + "earthenwares": null, + "earthiness": [["S", "M"]], + "earthinesses": null, + "earthiness's": null, + "earthliness": [["M"]], + "earthliness's": null, + "earthling": [["M", "S"]], + "earthling's": null, + "earthlings": null, + "earthly": [["T", "P", "R"]], + "earthliest": null, + "earthlier": null, + "earth's": null, + "earthen": null, + "earthing": null, + "earthmen": null, + "earthmover": [["M"]], + "earthmover's": null, + "earthmoving": null, + "earthquake": [["S", "D", "G", "M"]], + "earthquakes": null, + "earthquaked": null, + "earthquaking": null, + "earthquake's": null, + "earthshaking": null, + "earths": [["U"]], + "unearths": null, + "earthward": [["S"]], + "earthwards": null, + "earthwork": [["M", "S"]], + "earthwork's": null, + "earthworks": null, + "earthworm": [["M", "S"]], + "earthworm's": null, + "earthworms": null, + "earthy": [["P", "T", "R"]], + "earthiest": null, + "earthier": null, + "Earvin": [["M"]], + "Earvin's": null, + "earwax": [["M", "S"]], + "earwax's": null, + "earwaxes": null, + "earwigged": null, + "earwigging": null, + "earwig": [["M", "S"]], + "earwig's": null, + "earwigs": null, + "eased": [["E"]], + "diseased": null, + "ease": [["L", "D", "R", "S", "M", "G"]], + "easement": [["M", "S"]], + "easer": [["M"]], + "eases": [["U", "E"]], + "ease's": [["E", "U"]], + "easing": [["M"]], + "easel": [["M", "S"]], + "easel's": null, + "easels": null, + "easement's": null, + "easements": null, + "easer's": null, + "disease's": null, + "unease's": null, + "uneases": null, + "diseases": null, + "easies": null, + "easily": [["U"]], + "uneasily": null, + "easiness": [["M", "S", "U"]], + "easiness's": null, + "uneasiness's": null, + "easinesses": null, + "uneasinesses": null, + "uneasiness": null, + "easing's": null, + "eastbound": null, + "easterly": [["S"]], + "easterlies": null, + "Easter": [["M"]], + "Easter's": null, + "easterner": [["M"]], + "easterner's": null, + "Easterner": [["M"]], + "Easterner's": null, + "easternmost": null, + "Eastern": [["R", "Z"]], + "Easterners": null, + "eastern": [["Z", "R"]], + "easterners": null, + "easter": [["Y"]], + "east": [["G", "S", "M", "R"]], + "easting": [["M"]], + "easts": null, + "east's": null, + "Easthampton": [["M"]], + "Easthampton's": null, + "easting's": null, + "Eastland": [["M"]], + "Eastland's": null, + "Eastman": [["M"]], + "Eastman's": null, + "eastward": [["S"]], + "eastwards": null, + "Eastwick": [["M"]], + "Eastwick's": null, + "Eastwood": [["M"]], + "Eastwood's": null, + "East": [["Z", "S", "M", "R"]], + "Easters": null, + "Easts": null, + "East's": null, + "easygoingness": [["M"]], + "easygoingness's": null, + "easygoing": [["P"]], + "easy": [["P", "U", "T", "R"]], + "uneasy": null, + "uneasier": null, + "easiest": null, + "easier": null, + "eatables": null, + "eatable": [["U"]], + "uneatable": null, + "eaten": [["U"]], + "uneaten": null, + "eater": [["M"]], + "eater's": null, + "eatery": [["M", "S"]], + "eatery's": null, + "eateries": null, + "eating": [["M"]], + "eating's": null, + "Eaton": [["M"]], + "Eaton's": null, + "eat": [["S", "J", "Z", "G", "N", "R", "B"]], + "eats": null, + "eatings": null, + "eaters": null, + "eavesdropped": null, + "eavesdropper": [["M", "S"]], + "eavesdropper's": null, + "eavesdroppers": null, + "eavesdropping": null, + "eavesdrop": [["S"]], + "eavesdrops": null, + "eave": [["S", "M"]], + "eaves": null, + "eave's": null, + "Eba": [["M"]], + "Eba's": null, + "Ebba": [["M"]], + "Ebba's": null, + "ebb": [["D", "S", "G"]], + "ebbed": null, + "ebbs": null, + "ebbing": null, + "EBCDIC": null, + "Ebeneezer": [["M"]], + "Ebeneezer's": null, + "Ebeneser": [["M"]], + "Ebeneser's": null, + "Ebenezer": [["M"]], + "Ebenezer's": null, + "Eben": [["M"]], + "Eben's": null, + "Eberhard": [["M"]], + "Eberhard's": null, + "Eberto": [["M"]], + "Eberto's": null, + "Eb": [["M", "N"]], + "Eb's": null, + "Ebola": null, + "Ebonee": [["M"]], + "Ebonee's": null, + "Ebonics": null, + "Ebony": [["M"]], + "Ebony's": null, + "ebony": [["S", "M"]], + "ebonies": null, + "ebony's": null, + "Ebro": [["M"]], + "Ebro's": null, + "ebullience": [["S", "M"]], + "ebulliences": null, + "ebullience's": null, + "ebullient": [["Y"]], + "ebulliently": null, + "ebullition": [["S", "M"]], + "ebullitions": null, + "ebullition's": null, + "EC": null, + "eccentrically": null, + "eccentricity": [["S", "M"]], + "eccentricities": null, + "eccentricity's": null, + "eccentric": [["M", "S"]], + "eccentric's": null, + "eccentrics": null, + "eccl": null, + "Eccles": null, + "Ecclesiastes": [["M"]], + "Ecclesiastes's": null, + "ecclesiastical": [["Y"]], + "ecclesiastically": null, + "ecclesiastic": [["M", "S"]], + "ecclesiastic's": null, + "ecclesiastics": null, + "ECG": null, + "echelon": [["S", "G", "D", "M"]], + "echelons": null, + "echeloning": null, + "echeloned": null, + "echelon's": null, + "echinoderm": [["S", "M"]], + "echinoderms": null, + "echinoderm's": null, + "echo": [["D", "M", "G"]], + "echoed": [["A"]], + "echo's": null, + "echoing": null, + "reechoed": null, + "echoes": [["A"]], + "reechoes": null, + "echoic": null, + "echolocation": [["S", "M"]], + "echolocations": null, + "echolocation's": null, + "�clair": [["M", "S"]], + "�clair's": null, + "�clairs": null, + "�clat": [["M", "S"]], + "�clat's": null, + "�clats": null, + "eclectically": null, + "eclecticism": [["M", "S"]], + "eclecticism's": null, + "eclecticisms": null, + "eclectic": [["S"]], + "eclectics": null, + "eclipse": [["M", "G", "S", "D"]], + "eclipse's": null, + "eclipsing": null, + "eclipses": null, + "eclipsed": null, + "ecliptic": [["M", "S"]], + "ecliptic's": null, + "ecliptics": null, + "eclogue": [["M", "S"]], + "eclogue's": null, + "eclogues": null, + "ecocide": [["S", "M"]], + "ecocides": null, + "ecocide's": null, + "ecol": null, + "Ecole": [["M"]], + "Ecole's": null, + "ecologic": null, + "ecological": [["Y"]], + "ecologically": null, + "ecologist": [["M", "S"]], + "ecologist's": null, + "ecologists": null, + "ecology": [["M", "S"]], + "ecology's": null, + "ecologies": null, + "Eco": [["M"]], + "Eco's": null, + "econ": null, + "Econometrica": [["M"]], + "Econometrica's": null, + "econometricians": null, + "econometric": [["S"]], + "econometrics": [["M"]], + "econometrics's": null, + "economical": [["Y", "U"]], + "economically": null, + "uneconomically": null, + "uneconomical": null, + "economic": [["S"]], + "economics": [["M"]], + "economics's": null, + "economist": [["M", "S"]], + "economist's": null, + "economists": null, + "economization": null, + "economize": [["G", "Z", "S", "R", "D"]], + "economizing": [["U"]], + "economizers": null, + "economizes": null, + "economizer": [["M"]], + "economized": null, + "economizer's": null, + "uneconomizing": null, + "economy": [["M", "S"]], + "economy's": null, + "economies": null, + "ecosystem": [["M", "S"]], + "ecosystem's": null, + "ecosystems": null, + "ecru": [["S", "M"]], + "ecrus": null, + "ecru's": null, + "ecstasy": [["M", "S"]], + "ecstasy's": null, + "ecstasies": null, + "Ecstasy": [["S"]], + "Ecstasies": null, + "ecstatically": null, + "ecstatic": [["S"]], + "ecstatics": null, + "ectoplasm": [["M"]], + "ectoplasm's": null, + "Ecuadoran": [["S"]], + "Ecuadorans": null, + "Ecuadorean": [["S"]], + "Ecuadoreans": null, + "Ecuadorian": [["S"]], + "Ecuadorians": null, + "Ecuador": [["M"]], + "Ecuador's": null, + "ecumenical": [["Y"]], + "ecumenically": null, + "ecumenicism": [["S", "M"]], + "ecumenicisms": null, + "ecumenicism's": null, + "ecumenicist": [["M", "S"]], + "ecumenicist's": null, + "ecumenicists": null, + "ecumenic": [["M", "S"]], + "ecumenic's": null, + "ecumenics": [["M"]], + "ecumenics's": null, + "ecumenism": [["S", "M"]], + "ecumenisms": null, + "ecumenism's": null, + "ecumenist": [["M", "S"]], + "ecumenist's": null, + "ecumenists": null, + "eczema": [["M", "S"]], + "eczema's": null, + "eczemas": null, + "Eda": [["M"]], + "Eda's": null, + "Edam": [["S", "M"]], + "Edams": null, + "Edam's": null, + "Edan": [["M"]], + "Edan's": null, + "ed": [["A", "S", "C"]], + "reed": [["G", "M", "D", "R"]], + "reeds": null, + "eds": null, + "Edda": [["M"]], + "Edda's": null, + "Eddie": [["M"]], + "Eddie's": null, + "Eddi": [["M"]], + "Eddi's": null, + "Edd": [["M"]], + "Edd's": null, + "Eddy": [["M"]], + "Eddy's": null, + "eddy": [["S", "D", "M", "G"]], + "eddies": null, + "eddied": null, + "eddy's": null, + "eddying": null, + "Edee": [["M"]], + "Edee's": null, + "Edeline": [["M"]], + "Edeline's": null, + "edelweiss": [["M", "S"]], + "edelweiss's": null, + "edelweisses": null, + "Ede": [["M"]], + "Ede's": null, + "edema": [["S", "M"]], + "edemas": null, + "edema's": null, + "edematous": null, + "eden": null, + "Eden": [["M"]], + "Eden's": null, + "Edgard": [["M"]], + "Edgard's": null, + "Edgardo": [["M"]], + "Edgardo's": null, + "Edgar": [["M"]], + "Edgar's": null, + "edge": [["D", "R", "S", "M", "Z", "G", "J"]], + "edged": null, + "edger": [["M"]], + "edges": null, + "edge's": null, + "edgers": null, + "edging": [["M"]], + "edgings": null, + "edgeless": null, + "edger's": null, + "Edgerton": [["M"]], + "Edgerton's": null, + "Edgewater": [["M"]], + "Edgewater's": null, + "edgewise": null, + "Edgewood": [["M"]], + "Edgewood's": null, + "edgily": null, + "edginess": [["M", "S"]], + "edginess's": null, + "edginesses": null, + "edging's": null, + "edgy": [["T", "R", "P"]], + "edgiest": null, + "edgier": null, + "edibility": [["M", "S"]], + "edibility's": null, + "edibilities": null, + "edibleness": [["S", "M"]], + "ediblenesses": null, + "edibleness's": null, + "edible": [["S", "P"]], + "edibles": null, + "edict": [["S", "M"]], + "edicts": null, + "edict's": null, + "Edie": [["M"]], + "Edie's": null, + "edification": [["M"]], + "edification's": null, + "edifice": [["S", "M"]], + "edifices": null, + "edifice's": null, + "edifier": [["M"]], + "edifier's": null, + "edifying": [["U"]], + "unedifying": null, + "edify": [["Z", "N", "X", "G", "R", "S", "D"]], + "edifiers": null, + "edifications": null, + "edifies": null, + "edified": null, + "Edik": [["M"]], + "Edik's": null, + "Edi": [["M", "H"]], + "Edi's": null, + "Edith": [["M"]], + "Edinburgh": [["M"]], + "Edinburgh's": null, + "Edin": [["M"]], + "Edin's": null, + "Edison": [["M"]], + "Edison's": null, + "editable": null, + "Edita": [["M"]], + "Edita's": null, + "edited": [["I", "U"]], + "inedited": null, + "unedited": null, + "Editha": [["M"]], + "Editha's": null, + "Edithe": [["M"]], + "Edithe's": null, + "Edith's": null, + "edition": [["S", "M"]], + "editions": null, + "edition's": null, + "editorialist": [["M"]], + "editorialist's": null, + "editorialize": [["D", "R", "S", "G"]], + "editorialized": null, + "editorializer": [["M"]], + "editorializes": null, + "editorializing": null, + "editorializer's": null, + "editorial": [["Y", "S"]], + "editorially": null, + "editorials": null, + "editor": [["M", "S"]], + "editor's": null, + "editors": null, + "editorship": [["M", "S"]], + "editorship's": null, + "editorships": null, + "edit": [["S", "A", "D", "G"]], + "edits": null, + "reedits": null, + "reedit": null, + "reedited": null, + "reediting": null, + "editing": null, + "Ediva": [["M"]], + "Ediva's": null, + "Edlin": [["M"]], + "Edlin's": null, + "Edmond": [["M"]], + "Edmond's": null, + "Edmon": [["M"]], + "Edmon's": null, + "Edmonton": [["M"]], + "Edmonton's": null, + "Edmund": [["M"]], + "Edmund's": null, + "Edna": [["M"]], + "Edna's": null, + "Edouard": [["M"]], + "Edouard's": null, + "EDP": null, + "Edsel": [["M"]], + "Edsel's": null, + "Edsger": [["M"]], + "Edsger's": null, + "EDT": null, + "Eduard": [["M"]], + "Eduard's": null, + "Eduardo": [["M"]], + "Eduardo's": null, + "educability": [["S", "M"]], + "educabilities": null, + "educability's": null, + "educable": [["S"]], + "educables": null, + "educated": [["Y", "P"]], + "educatedly": null, + "educatedness": null, + "educate": [["X", "A", "S", "D", "G", "N"]], + "educations": null, + "reeducations": null, + "reeducate": null, + "reeducates": null, + "reeducated": null, + "reeducating": null, + "reeducation": null, + "educates": null, + "educating": null, + "education": [["A", "M"]], + "educationalists": null, + "educational": [["Y"]], + "educationally": null, + "reeducation's": null, + "education's": null, + "educationists": null, + "educative": null, + "educator": [["M", "S"]], + "educator's": null, + "educators": null, + "educ": [["D", "B", "G"]], + "educed": null, + "educing": null, + "educe": [["S"]], + "educes": null, + "eduction": [["M"]], + "eduction's": null, + "Eduino": [["M"]], + "Eduino's": null, + "edutainment": [["S"]], + "edutainments": null, + "Edvard": [["M"]], + "Edvard's": null, + "Edwardian": null, + "Edwardo": [["M"]], + "Edwardo's": null, + "Edward": [["S", "M"]], + "Edwards": null, + "Edward's": null, + "Edwina": [["M"]], + "Edwina's": null, + "Edwin": [["M"]], + "Edwin's": null, + "Ed": [["X", "M", "N"]], + "Edens": null, + "Ed's": null, + "Edy": [["M"]], + "Edy's": null, + "Edythe": [["M"]], + "Edythe's": null, + "Edyth": [["M"]], + "Edyth's": null, + "EEC": null, + "EEG": null, + "eek": [["S"]], + "eeks": null, + "eelgrass": [["M"]], + "eelgrass's": null, + "eel": [["M", "S"]], + "eel's": null, + "eels": null, + "e'en": null, + "EEO": null, + "EEOC": null, + "e'er": null, + "eerie": [["R", "T"]], + "eerier": null, + "eeriest": null, + "eerily": null, + "eeriness": [["M", "S"]], + "eeriness's": null, + "eerinesses": null, + "Eeyore": [["M"]], + "Eeyore's": null, + "effaceable": [["I"]], + "ineffaceable": null, + "effacement": [["M", "S"]], + "effacement's": null, + "effacements": null, + "effacer": [["M"]], + "effacer's": null, + "efface": [["S", "R", "D", "L", "G"]], + "effaces": null, + "effaced": null, + "effacing": null, + "effectiveness": [["I", "S", "M"]], + "ineffectiveness": null, + "ineffectivenesses": null, + "ineffectiveness's": null, + "effectivenesses": null, + "effectiveness's": null, + "effectives": null, + "effective": [["Y", "I", "P"]], + "effectively": null, + "ineffectively": null, + "ineffective": null, + "effector": [["M", "S"]], + "effector's": null, + "effectors": null, + "effect": [["S", "M", "D", "G", "V"]], + "effects": null, + "effect's": null, + "effected": null, + "effecting": null, + "effectual": [["I", "Y", "P"]], + "ineffectual": null, + "ineffectually": null, + "ineffectualness": null, + "effectually": null, + "effectualness": [["M", "I"]], + "effectualness's": null, + "ineffectualness's": null, + "effectuate": [["S", "D", "G", "N"]], + "effectuates": null, + "effectuated": null, + "effectuating": null, + "effectuation": [["M"]], + "effectuation's": null, + "effeminacy": [["M", "S"]], + "effeminacy's": null, + "effeminacies": null, + "effeminate": [["S", "Y"]], + "effeminates": null, + "effeminately": null, + "effendi": [["M", "S"]], + "effendi's": null, + "effendis": null, + "efferent": [["S", "Y"]], + "efferents": null, + "efferently": null, + "effervesce": [["G", "S", "D"]], + "effervescing": null, + "effervesces": null, + "effervesced": null, + "effervescence": [["S", "M"]], + "effervescences": null, + "effervescence's": null, + "effervescent": [["Y"]], + "effervescently": null, + "effeteness": [["S", "M"]], + "effetenesses": null, + "effeteness's": null, + "effete": [["Y", "P"]], + "effetely": null, + "efficacious": [["I", "P", "Y"]], + "inefficacious": null, + "inefficaciousness": null, + "inefficaciously": null, + "efficaciousness": [["M", "I"]], + "efficaciously": null, + "efficaciousness's": null, + "inefficaciousness's": null, + "efficacy": [["I", "M", "S"]], + "inefficacy": null, + "inefficacy's": null, + "inefficacies": null, + "efficacy's": null, + "efficacies": null, + "efficiency": [["M", "I", "S"]], + "efficiency's": null, + "inefficiency's": null, + "inefficiency": null, + "inefficiencies": null, + "efficiencies": null, + "efficient": [["I", "S", "Y"]], + "inefficient": null, + "inefficients": null, + "inefficiently": null, + "efficients": null, + "efficiently": null, + "Effie": [["M"]], + "Effie's": null, + "effigy": [["S", "M"]], + "effigies": null, + "effigy's": null, + "effloresce": null, + "efflorescence": [["S", "M"]], + "efflorescences": null, + "efflorescence's": null, + "efflorescent": null, + "effluence": [["S", "M"]], + "effluences": null, + "effluence's": null, + "effluent": [["M", "S"]], + "effluent's": null, + "effluents": null, + "effluvia": null, + "effluvium": [["M"]], + "effluvium's": null, + "effluxion": null, + "efflux": [["M"]], + "efflux's": null, + "effortlessness": [["S", "M"]], + "effortlessnesses": null, + "effortlessness's": null, + "effortless": [["P", "Y"]], + "effortlessly": null, + "effort": [["M", "S"]], + "effort's": null, + "efforts": null, + "effrontery": [["M", "S"]], + "effrontery's": null, + "effronteries": null, + "effulgence": [["S", "M"]], + "effulgences": null, + "effulgence's": null, + "effulgent": null, + "effuse": [["X", "S", "D", "V", "G", "N"]], + "effusions": null, + "effuses": null, + "effused": null, + "effusive": [["Y", "P"]], + "effusing": null, + "effusion": [["M"]], + "effusion's": null, + "effusiveness": [["M", "S"]], + "effusiveness's": null, + "effusivenesses": null, + "effusively": null, + "EFL": null, + "e": [["F", "M", "D", "S"]], + "cone": null, + "cone's": null, + "coned": null, + "cones": null, + "e's": null, + "es": null, + "Efrain": [["M"]], + "Efrain's": null, + "Efrem": [["M"]], + "Efrem's": null, + "Efren": [["M"]], + "Efren's": null, + "EFT": null, + "egad": null, + "egalitarian": [["I"]], + "inegalitarian": null, + "egalitarianism": [["M", "S"]], + "egalitarianism's": null, + "egalitarianisms": null, + "egalitarians": null, + "EGA": [["M"]], + "EGA's": null, + "Egan": [["M"]], + "Egan's": null, + "Egbert": [["M"]], + "Egbert's": null, + "Egerton": [["M"]], + "Egerton's": null, + "eggbeater": [["S", "M"]], + "eggbeaters": null, + "eggbeater's": null, + "eggcup": [["M", "S"]], + "eggcup's": null, + "eggcups": null, + "egger": [["M"]], + "egger's": null, + "egg": [["G", "M", "D", "R", "S"]], + "egging": null, + "egg's": null, + "egged": null, + "eggs": null, + "eggheaded": [["P"]], + "eggheadedness": null, + "egghead": [["S", "D", "M"]], + "eggheads": null, + "egghead's": null, + "eggnog": [["S", "M"]], + "eggnogs": null, + "eggnog's": null, + "eggplant": [["M", "S"]], + "eggplant's": null, + "eggplants": null, + "eggshell": [["S", "M"]], + "eggshells": null, + "eggshell's": null, + "egis's": null, + "eglantine": [["M", "S"]], + "eglantine's": null, + "eglantines": null, + "egocentrically": null, + "egocentricity": [["S", "M"]], + "egocentricities": null, + "egocentricity's": null, + "egocentric": [["S"]], + "egocentrics": null, + "egoism": [["S", "M"]], + "egoisms": null, + "egoism's": null, + "egoistic": null, + "egoistical": [["Y"]], + "egoistically": null, + "egoist": [["S", "M"]], + "egoists": null, + "egoist's": null, + "egomaniac": [["M", "S"]], + "egomaniac's": null, + "egomaniacs": null, + "egomania": [["M", "S"]], + "egomania's": null, + "egomanias": null, + "Egon": [["M"]], + "Egon's": null, + "Egor": [["M"]], + "Egor's": null, + "ego": [["S", "M"]], + "egos": null, + "ego's": null, + "egotism": [["S", "M"]], + "egotisms": null, + "egotism's": null, + "egotistic": null, + "egotistical": [["Y"]], + "egotistically": null, + "egotist": [["M", "S"]], + "egotist's": null, + "egotists": null, + "egregiousness": [["M", "S"]], + "egregiousness's": null, + "egregiousnesses": null, + "egregious": [["P", "Y"]], + "egregiously": null, + "egress": [["S", "D", "M", "G"]], + "egresses": null, + "egressed": null, + "egress's": null, + "egressing": null, + "egret": [["S", "M"]], + "egrets": null, + "egret's": null, + "Egyptian": [["S"]], + "Egyptians": null, + "Egypt": [["M"]], + "Egypt's": null, + "Egyptology": [["M"]], + "Egyptology's": null, + "eh": null, + "Ehrlich": [["M"]], + "Ehrlich's": null, + "Eichmann": [["M"]], + "Eichmann's": null, + "eiderdown": [["S", "M"]], + "eiderdowns": null, + "eiderdown's": null, + "eider": [["S", "M"]], + "eiders": null, + "eider's": null, + "eidetic": null, + "Eiffel": [["M"]], + "Eiffel's": null, + "eigenfunction": [["M", "S"]], + "eigenfunction's": null, + "eigenfunctions": null, + "eigenstate": [["S"]], + "eigenstates": null, + "eigenvalue": [["S", "M"]], + "eigenvalues": null, + "eigenvalue's": null, + "eigenvector": [["M", "S"]], + "eigenvector's": null, + "eigenvectors": null, + "eighteen": [["M", "H", "S"]], + "eighteen's": null, + "eighteenth": null, + "eighteens": null, + "eighteenths": null, + "eightfold": null, + "eighth": [["M", "S"]], + "eighth's": null, + "eighthes": null, + "eighths": null, + "eightieths": null, + "eightpence": null, + "eight": [["S", "M"]], + "eights": null, + "eight's": null, + "eighty": [["S", "H", "M"]], + "eighties": null, + "eightieth": null, + "eighty's": null, + "Eileen": [["M"]], + "Eileen's": null, + "Eilis": [["M"]], + "Eilis's": null, + "Eimile": [["M"]], + "Eimile's": null, + "Einsteinian": null, + "einsteinium": [["M", "S"]], + "einsteinium's": null, + "einsteiniums": null, + "Einstein": [["S", "M"]], + "Einsteins": null, + "Einstein's": null, + "Eire": [["M"]], + "Eire's": null, + "Eirena": [["M"]], + "Eirena's": null, + "Eisenhower": [["M"]], + "Eisenhower's": null, + "Eisenstein": [["M"]], + "Eisenstein's": null, + "Eisner": [["M"]], + "Eisner's": null, + "eisteddfod": [["M"]], + "eisteddfod's": null, + "either": null, + "ejaculate": [["S", "D", "X", "N", "G"]], + "ejaculates": null, + "ejaculated": null, + "ejaculations": null, + "ejaculation": [["M"]], + "ejaculating": null, + "ejaculation's": null, + "ejaculatory": null, + "ejecta": null, + "ejection": [["S", "M"]], + "ejections": null, + "ejection's": null, + "ejector": [["S", "M"]], + "ejectors": null, + "ejector's": null, + "eject": [["V", "G", "S", "D"]], + "ejective": null, + "ejecting": null, + "ejects": null, + "ejected": null, + "Ekaterina": [["M"]], + "Ekaterina's": null, + "Ekberg": [["M"]], + "Ekberg's": null, + "eked": [["A"]], + "reeked": null, + "eke": [["D", "S", "G"]], + "ekes": null, + "eking": null, + "EKG": null, + "Ekstrom": [["M"]], + "Ekstrom's": null, + "Ektachrome": [["M"]], + "Ektachrome's": null, + "elaborateness": [["S", "M"]], + "elaboratenesses": null, + "elaborateness's": null, + "elaborate": [["S", "D", "Y", "P", "V", "N", "G", "X"]], + "elaborates": null, + "elaborated": null, + "elaborately": null, + "elaborative": null, + "elaboration": [["M"]], + "elaborating": null, + "elaborations": null, + "elaboration's": null, + "elaborators": null, + "Elaina": [["M"]], + "Elaina's": null, + "Elaine": [["M"]], + "Elaine's": null, + "Elana": [["M"]], + "Elana's": null, + "eland": [["S", "M"]], + "elands": null, + "eland's": null, + "Elane": [["M"]], + "Elane's": null, + "�lan": [["M"]], + "�lan's": null, + "Elanor": [["M"]], + "Elanor's": null, + "elans": null, + "elapse": [["S", "D", "G"]], + "elapses": null, + "elapsed": null, + "elapsing": null, + "el": [["A", "S"]], + "reel": [["U", "S", "D", "G"]], + "reels": null, + "els": null, + "elastically": [["I"]], + "inelastically": null, + "elasticated": null, + "elasticity": [["S", "M"]], + "elasticities": null, + "elasticity's": null, + "elasticize": [["G", "D", "S"]], + "elasticizing": null, + "elasticized": null, + "elasticizes": null, + "elastic": [["S"]], + "elastics": null, + "elastodynamics": null, + "elastomer": [["M"]], + "elastomer's": null, + "elatedness": [["M"]], + "elatedness's": null, + "elated": [["P", "Y"]], + "elatedly": null, + "elater": [["M"]], + "elater's": null, + "elate": [["S", "R", "D", "X", "G", "N"]], + "elates": null, + "elations": null, + "elating": null, + "elation": [["M"]], + "elation's": null, + "Elayne": [["M"]], + "Elayne's": null, + "Elba": [["M", "S"]], + "Elba's": null, + "Elbas": null, + "Elbe": [["M"]], + "Elbe's": null, + "Elberta": [["M"]], + "Elberta's": null, + "Elbertina": [["M"]], + "Elbertina's": null, + "Elbertine": [["M"]], + "Elbertine's": null, + "Elbert": [["M"]], + "Elbert's": null, + "elbow": [["G", "D", "M", "S"]], + "elbowing": null, + "elbowed": null, + "elbow's": null, + "elbows": null, + "elbowroom": [["S", "M"]], + "elbowrooms": null, + "elbowroom's": null, + "Elbrus": [["M"]], + "Elbrus's": null, + "Elden": [["M"]], + "Elden's": null, + "elderberry": [["M", "S"]], + "elderberry's": null, + "elderberries": null, + "elderflower": null, + "elderliness": [["M"]], + "elderliness's": null, + "elderly": [["P", "S"]], + "elderlies": null, + "elder": [["S", "Y"]], + "elders": null, + "eldest": null, + "Eldin": [["M"]], + "Eldin's": null, + "Eldon": [["M"]], + "Eldon's": null, + "Eldorado's": null, + "Eldredge": [["M"]], + "Eldredge's": null, + "Eldridge": [["M"]], + "Eldridge's": null, + "Eleanora": [["M"]], + "Eleanora's": null, + "Eleanore": [["M"]], + "Eleanore's": null, + "Eleanor": [["M"]], + "Eleanor's": null, + "Eleazar": [["M"]], + "Eleazar's": null, + "electable": [["U"]], + "unelectable": null, + "elect": [["A", "S", "G", "D"]], + "reelect": null, + "reelects": null, + "reelecting": null, + "reelected": null, + "elects": null, + "electing": null, + "elected": [["U"]], + "unelected": null, + "electioneer": [["G", "S", "D"]], + "electioneering": null, + "electioneers": null, + "electioneered": null, + "election": [["S", "A", "M"]], + "elections": null, + "reelections": null, + "reelection": null, + "reelection's": null, + "election's": null, + "electiveness": [["M"]], + "electiveness's": null, + "elective": [["S", "P", "Y"]], + "electives": null, + "electively": null, + "electoral": [["Y"]], + "electorally": null, + "electorate": [["S", "M"]], + "electorates": null, + "electorate's": null, + "elector": [["S", "M"]], + "electors": null, + "elector's": null, + "Electra": [["M"]], + "Electra's": null, + "electress": [["M"]], + "electress's": null, + "electricalness": [["M"]], + "electricalness's": null, + "electrical": [["P", "Y"]], + "electrically": null, + "electrician": [["S", "M"]], + "electricians": null, + "electrician's": null, + "electricity": [["S", "M"]], + "electricities": null, + "electricity's": null, + "electric": [["S"]], + "electrics": null, + "electrification": [["M"]], + "electrification's": null, + "electrifier": [["M"]], + "electrifier's": null, + "electrify": [["Z", "X", "G", "N", "D", "R", "S"]], + "electrifiers": null, + "electrifications": null, + "electrifying": null, + "electrified": null, + "electrifies": null, + "electrocardiogram": [["M", "S"]], + "electrocardiogram's": null, + "electrocardiograms": null, + "electrocardiograph": [["M"]], + "electrocardiograph's": null, + "electrocardiographs": null, + "electrocardiography": [["M", "S"]], + "electrocardiography's": null, + "electrocardiographies": null, + "electrochemical": [["Y"]], + "electrochemically": null, + "electrocute": [["G", "N", "X", "S", "D"]], + "electrocuting": null, + "electrocution": [["M"]], + "electrocutions": null, + "electrocutes": null, + "electrocuted": null, + "electrocution's": null, + "electrode": [["S", "M"]], + "electrodes": null, + "electrode's": null, + "electrodynamics": [["M"]], + "electrodynamics's": null, + "electrodynamic": [["Y", "S"]], + "electrodynamicly": null, + "electroencephalogram": [["S", "M"]], + "electroencephalograms": null, + "electroencephalogram's": null, + "electroencephalographic": null, + "electroencephalograph": [["M"]], + "electroencephalograph's": null, + "electroencephalographs": null, + "electroencephalography": [["M", "S"]], + "electroencephalography's": null, + "electroencephalographies": null, + "electrologist": [["M", "S"]], + "electrologist's": null, + "electrologists": null, + "electroluminescent": null, + "electrolysis": [["M"]], + "electrolysis's": null, + "electrolyte": [["S", "M"]], + "electrolytes": null, + "electrolyte's": null, + "electrolytic": null, + "electrolytically": null, + "electrolyze": [["S", "D", "G"]], + "electrolyzes": null, + "electrolyzed": null, + "electrolyzing": null, + "electro": [["M"]], + "electro's": null, + "electromagnetic": null, + "electromagnetically": null, + "electromagnetism": [["S", "M"]], + "electromagnetisms": null, + "electromagnetism's": null, + "electromagnet": [["S", "M"]], + "electromagnets": null, + "electromagnet's": null, + "electromechanical": null, + "electromechanics": null, + "electromotive": null, + "electromyograph": null, + "electromyographic": null, + "electromyographically": null, + "electromyography": [["M"]], + "electromyography's": null, + "electronegative": null, + "electronically": null, + "electronic": [["S"]], + "electronics": [["M"]], + "electronics's": null, + "electron": [["M", "S"]], + "electron's": null, + "electrons": null, + "electrophoresis": [["M"]], + "electrophoresis's": null, + "electrophorus": [["M"]], + "electrophorus's": null, + "electroplate": [["D", "S", "G"]], + "electroplated": null, + "electroplates": null, + "electroplating": null, + "electroscope": [["M", "S"]], + "electroscope's": null, + "electroscopes": null, + "electroscopic": null, + "electroshock": [["G", "D", "M", "S"]], + "electroshocking": null, + "electroshocked": null, + "electroshock's": null, + "electroshocks": null, + "electrostatic": [["S"]], + "electrostatics": [["M"]], + "electrostatics's": null, + "electrotherapist": [["M"]], + "electrotherapist's": null, + "electrotype": [["G", "S", "D", "Z", "M"]], + "electrotyping": null, + "electrotypes": null, + "electrotyped": null, + "electrotypers": null, + "electrotype's": null, + "electroweak": null, + "eleemosynary": null, + "Eleen": [["M"]], + "Eleen's": null, + "elegance": [["I", "S", "M"]], + "inelegance": null, + "inelegances": null, + "inelegance's": null, + "elegances": null, + "elegance's": null, + "elegant": [["Y", "I"]], + "elegantly": null, + "inelegantly": null, + "inelegant": null, + "elegiacal": null, + "elegiac": [["S"]], + "elegiacs": null, + "elegy": [["S", "M"]], + "elegies": null, + "elegy's": null, + "elem": null, + "elemental": [["Y", "S"]], + "elementally": null, + "elementals": null, + "elementarily": null, + "elementariness": [["M"]], + "elementariness's": null, + "elementary": [["P"]], + "element": [["M", "S"]], + "element's": null, + "elements": null, + "Elena": [["M"]], + "Elena's": null, + "Elene": [["M"]], + "Elene's": null, + "Eleni": [["M"]], + "Eleni's": null, + "Elenore": [["M"]], + "Elenore's": null, + "Eleonora": [["M"]], + "Eleonora's": null, + "Eleonore": [["M"]], + "Eleonore's": null, + "elephantiases": null, + "elephantiasis": [["M"]], + "elephantiasis's": null, + "elephantine": null, + "elephant": [["S", "M"]], + "elephants": null, + "elephant's": null, + "elevated": [["S"]], + "elevateds": null, + "elevate": [["X", "D", "S", "N", "G"]], + "elevations": null, + "elevates": null, + "elevation": [["M"]], + "elevating": null, + "elevation's": null, + "elevator": [["S", "M"]], + "elevators": null, + "elevator's": null, + "eleven": [["H", "M"]], + "eleventh": null, + "eleven's": null, + "elevens": [["S"]], + "elevenses": null, + "elevenths": null, + "elev": [["N", "X"]], + "Elfie": [["M"]], + "Elfie's": null, + "elfin": [["S"]], + "elfins": null, + "elfish": null, + "elf": [["M"]], + "elf's": null, + "Elfreda": [["M"]], + "Elfreda's": null, + "Elfrida": [["M"]], + "Elfrida's": null, + "Elfrieda": [["M"]], + "Elfrieda's": null, + "Elga": [["M"]], + "Elga's": null, + "Elgar": [["M"]], + "Elgar's": null, + "Elianora": [["M"]], + "Elianora's": null, + "Elianore": [["M"]], + "Elianore's": null, + "Elia": [["S", "M"]], + "Elias": null, + "Elia's": null, + "Elicia": [["M"]], + "Elicia's": null, + "elicitation": [["M", "S"]], + "elicitation's": null, + "elicitations": null, + "elicit": [["G", "S", "D"]], + "eliciting": null, + "elicits": null, + "elicited": null, + "elide": [["G", "S", "D"]], + "eliding": null, + "elides": null, + "elided": null, + "Elie": [["M"]], + "Elie's": null, + "eligibility": [["I", "S", "M"]], + "ineligibility": null, + "ineligibilities": null, + "ineligibility's": null, + "eligibilities": null, + "eligibility's": null, + "eligible": [["S", "I"]], + "eligibles": null, + "ineligibles": null, + "ineligible": null, + "Elihu": [["M"]], + "Elihu's": null, + "Elijah": [["M"]], + "Elijah's": null, + "Eli": [["M"]], + "Eli's": null, + "eliminate": [["X", "S", "D", "Y", "V", "G", "N"]], + "eliminations": null, + "eliminates": null, + "eliminated": null, + "eliminately": null, + "eliminative": null, + "eliminating": null, + "elimination": [["M"]], + "elimination's": null, + "eliminator": [["S", "M"]], + "eliminators": null, + "eliminator's": null, + "Elinore": [["M"]], + "Elinore's": null, + "Elinor": [["M"]], + "Elinor's": null, + "Eliot": [["M"]], + "Eliot's": null, + "Elisabeth": [["M"]], + "Elisabeth's": null, + "Elisabet": [["M"]], + "Elisabet's": null, + "Elisabetta": [["M"]], + "Elisabetta's": null, + "Elisa": [["M"]], + "Elisa's": null, + "Elise": [["M"]], + "Elise's": null, + "Eliseo": [["M"]], + "Eliseo's": null, + "Elisha": [["M"]], + "Elisha's": null, + "elision": [["S", "M"]], + "elisions": null, + "elision's": null, + "Elissa": [["M"]], + "Elissa's": null, + "Elita": [["M"]], + "Elita's": null, + "elite": [["M", "P", "S"]], + "elite's": null, + "eliteness": null, + "elites": null, + "elitism": [["S", "M"]], + "elitisms": null, + "elitism's": null, + "elitist": [["S", "M"]], + "elitists": null, + "elitist's": null, + "elixir": [["M", "S"]], + "elixir's": null, + "elixirs": null, + "Elizabethan": [["S"]], + "Elizabethans": null, + "Elizabeth": [["M"]], + "Elizabeth's": null, + "Elizabet": [["M"]], + "Elizabet's": null, + "Eliza": [["M"]], + "Eliza's": null, + "Elka": [["M"]], + "Elka's": null, + "Elke": [["M"]], + "Elke's": null, + "Elkhart": [["M"]], + "Elkhart's": null, + "elk": [["M", "S"]], + "elk's": null, + "elks": null, + "Elladine": [["M"]], + "Elladine's": null, + "Ella": [["M"]], + "Ella's": null, + "Ellary": [["M"]], + "Ellary's": null, + "Elle": [["M"]], + "Elle's": null, + "Ellene": [["M"]], + "Ellene's": null, + "Ellen": [["M"]], + "Ellen's": null, + "Ellerey": [["M"]], + "Ellerey's": null, + "Ellery": [["M"]], + "Ellery's": null, + "Ellesmere": [["M"]], + "Ellesmere's": null, + "Ellette": [["M"]], + "Ellette's": null, + "Ellie": [["M"]], + "Ellie's": null, + "Ellington": [["M"]], + "Ellington's": null, + "Elliot": [["M"]], + "Elliot's": null, + "Elliott": [["M"]], + "Elliott's": null, + "ellipse": [["M", "S"]], + "ellipse's": null, + "ellipses": null, + "ellipsis": [["M"]], + "ellipsis's": null, + "ellipsoidal": null, + "ellipsoid": [["M", "S"]], + "ellipsoid's": null, + "ellipsoids": null, + "ellipsometer": [["M", "S"]], + "ellipsometer's": null, + "ellipsometers": null, + "ellipsometry": null, + "elliptic": null, + "elliptical": [["Y", "S"]], + "elliptically": null, + "ellipticals": null, + "ellipticity": [["M"]], + "ellipticity's": null, + "Elli": [["S", "M"]], + "Ellis": null, + "Elli's": null, + "Ellison": [["M"]], + "Ellison's": null, + "Ellissa": [["M"]], + "Ellissa's": null, + "ell": [["M", "S"]], + "ell's": null, + "ells": null, + "Ellswerth": [["M"]], + "Ellswerth's": null, + "Ellsworth": [["M"]], + "Ellsworth's": null, + "Ellwood": [["M"]], + "Ellwood's": null, + "Elly": [["M"]], + "Elly's": null, + "Ellyn": [["M"]], + "Ellyn's": null, + "Ellynn": [["M"]], + "Ellynn's": null, + "Elma": [["M"]], + "Elma's": null, + "Elmer": [["M"]], + "Elmer's": null, + "Elmhurst": [["M"]], + "Elmhurst's": null, + "Elmira": [["M"]], + "Elmira's": null, + "elm": [["M", "R", "S"]], + "elm's": null, + "elmer": null, + "elms": null, + "Elmo": [["M"]], + "Elmo's": null, + "Elmore": [["M"]], + "Elmore's": null, + "Elmsford": [["M"]], + "Elmsford's": null, + "El": [["M", "Y"]], + "El's": null, + "Elna": [["M", "H"]], + "Elna's": null, + "Elnath": [["M"]], + "Elnar": [["M"]], + "Elnar's": null, + "Elnath's": null, + "Elnora": [["M"]], + "Elnora's": null, + "Elnore": [["M"]], + "Elnore's": null, + "elocutionary": null, + "elocutionist": [["M", "S"]], + "elocutionist's": null, + "elocutionists": null, + "elocution": [["S", "M"]], + "elocutions": null, + "elocution's": null, + "elodea": [["S"]], + "elodeas": null, + "Elohim": [["M"]], + "Elohim's": null, + "Eloisa": [["M"]], + "Eloisa's": null, + "Eloise": [["M"]], + "Eloise's": null, + "elongate": [["N", "G", "X", "S", "D"]], + "elongation": [["M"]], + "elongating": null, + "elongations": null, + "elongates": null, + "elongated": null, + "elongation's": null, + "Elonore": [["M"]], + "Elonore's": null, + "elopement": [["M", "S"]], + "elopement's": null, + "elopements": null, + "eloper": [["M"]], + "eloper's": null, + "elope": [["S", "R", "D", "L", "G"]], + "elopes": null, + "eloped": null, + "eloping": null, + "eloquence": [["S", "M"]], + "eloquences": null, + "eloquence's": null, + "eloquent": [["I", "Y"]], + "ineloquent": null, + "ineloquently": null, + "eloquently": null, + "Elora": [["M"]], + "Elora's": null, + "Eloy": [["M"]], + "Eloy's": null, + "Elroy": [["M"]], + "Elroy's": null, + "Elsa": [["M"]], + "Elsa's": null, + "Elsbeth": [["M"]], + "Elsbeth's": null, + "else": [["M"]], + "else's": null, + "Else": [["M"]], + "Else's": null, + "Elset": [["M"]], + "Elset's": null, + "elsewhere": null, + "Elsey": [["M"]], + "Elsey's": null, + "Elsie": [["M"]], + "Elsie's": null, + "Elsi": [["M"]], + "Elsi's": null, + "Elsinore": [["M"]], + "Elsinore's": null, + "Elspeth": [["M"]], + "Elspeth's": null, + "Elston": [["M"]], + "Elston's": null, + "Elsworth": [["M"]], + "Elsworth's": null, + "Elsy": [["M"]], + "Elsy's": null, + "Eltanin": [["M"]], + "Eltanin's": null, + "Elton": [["M"]], + "Elton's": null, + "eluate": [["S", "M"]], + "eluates": null, + "eluate's": null, + "elucidate": [["S", "D", "V", "N", "G", "X"]], + "elucidates": null, + "elucidated": null, + "elucidative": null, + "elucidation": [["M"]], + "elucidating": null, + "elucidations": null, + "elucidation's": null, + "elude": [["G", "S", "D"]], + "eluding": null, + "eludes": null, + "eluded": null, + "elusiveness": [["S", "M"]], + "elusivenesses": null, + "elusiveness's": null, + "elusive": [["Y", "P"]], + "elusively": null, + "elute": [["D", "G", "N"]], + "eluted": null, + "eluting": null, + "elution": [["M"]], + "elution's": null, + "Elva": [["M"]], + "Elva's": null, + "elven": null, + "Elvera": [["M"]], + "Elvera's": null, + "elver": [["S", "M"]], + "elvers": null, + "elver's": null, + "elves": [["M"]], + "elves's": null, + "Elvia": [["M"]], + "Elvia's": null, + "Elvina": [["M"]], + "Elvina's": null, + "Elvin": [["M"]], + "Elvin's": null, + "Elvira": [["M"]], + "Elvira's": null, + "elvish": null, + "Elvis": [["M"]], + "Elvis's": null, + "Elvyn": [["M"]], + "Elvyn's": null, + "Elwin": [["M"]], + "Elwin's": null, + "Elwira": [["M"]], + "Elwira's": null, + "Elwood": [["M"]], + "Elwood's": null, + "Elwyn": [["M"]], + "Elwyn's": null, + "Ely": [["M"]], + "Ely's": null, + "Elyn": [["M"]], + "Elyn's": null, + "Elys�e": [["M"]], + "Elys�e's": null, + "Elysees": null, + "Elyse": [["M"]], + "Elyse's": null, + "Elysha": [["M"]], + "Elysha's": null, + "Elysia": [["M"]], + "Elysia's": null, + "elysian": null, + "Elysian": null, + "Elysium": [["S", "M"]], + "Elysiums": null, + "Elysium's": null, + "Elyssa": [["M"]], + "Elyssa's": null, + "EM": null, + "emaciate": [["N", "G", "X", "D", "S"]], + "emaciation": [["M"]], + "emaciating": null, + "emaciations": null, + "emaciated": null, + "emaciates": null, + "emaciation's": null, + "emacs": [["M"]], + "emacs's": null, + "Emacs": [["M"]], + "Emacs's": null, + "email": [["S", "M", "D", "G"]], + "emails": null, + "email's": null, + "emailed": null, + "emailing": null, + "Emalee": [["M"]], + "Emalee's": null, + "Emalia": [["M"]], + "Emalia's": null, + "Ema": [["M"]], + "Ema's": null, + "emanate": [["X", "S", "D", "V", "N", "G"]], + "emanations": null, + "emanates": null, + "emanated": null, + "emanative": null, + "emanation": [["M"]], + "emanating": null, + "emanation's": null, + "emancipate": [["D", "S", "X", "G", "N"]], + "emancipated": null, + "emancipates": null, + "emancipations": null, + "emancipating": null, + "emancipation": [["M"]], + "emancipation's": null, + "emancipator": [["M", "S"]], + "emancipator's": null, + "emancipators": null, + "Emanuele": [["M"]], + "Emanuele's": null, + "Emanuel": [["M"]], + "Emanuel's": null, + "emasculate": [["G", "N", "D", "S", "X"]], + "emasculating": null, + "emasculation": [["M"]], + "emasculated": null, + "emasculates": null, + "emasculations": null, + "emasculation's": null, + "embalmer": [["M"]], + "embalmer's": null, + "embalm": [["Z", "G", "R", "D", "S"]], + "embalmers": null, + "embalming": null, + "embalmed": null, + "embalms": null, + "embank": [["G", "L", "D", "S"]], + "embanking": null, + "embankment": [["M", "S"]], + "embanked": null, + "embanks": null, + "embankment's": null, + "embankments": null, + "embarcadero": null, + "embargoes": null, + "embargo": [["G", "M", "D"]], + "embargoing": null, + "embargo's": null, + "embargoed": null, + "embark": [["A", "D", "E", "S", "G"]], + "reembark": null, + "reembarked": null, + "reembarks": null, + "reembarking": null, + "embarked": null, + "disembarked": null, + "disembark": null, + "disembarks": null, + "disembarking": null, + "embarks": null, + "embarking": null, + "embarkation": [["E", "M", "S"]], + "disembarkation": null, + "disembarkation's": null, + "disembarkations": null, + "embarkation's": null, + "embarkations": null, + "embarrassedly": null, + "embarrassed": [["U"]], + "unembarrassed": null, + "embarrassing": [["Y"]], + "embarrassingly": null, + "embarrassment": [["M", "S"]], + "embarrassment's": null, + "embarrassments": null, + "embarrass": [["S", "D", "L", "G"]], + "embarrasses": null, + "embassy": [["M", "S"]], + "embassy's": null, + "embassies": null, + "embattle": [["D", "S", "G"]], + "embattled": null, + "embattles": null, + "embattling": null, + "embeddable": null, + "embedded": null, + "embedder": null, + "embedding": [["M", "S"]], + "embedding's": null, + "embeddings": null, + "embed": [["S"]], + "embeds": null, + "embellished": [["U"]], + "unembellished": null, + "embellisher": [["M"]], + "embellisher's": null, + "embellish": [["L", "G", "R", "S", "D"]], + "embellishment": [["M", "S"]], + "embellishing": null, + "embellishes": null, + "embellishment's": null, + "embellishments": null, + "ember": [["M", "S"]], + "ember's": null, + "embers": null, + "embezzle": [["L", "Z", "G", "D", "R", "S"]], + "embezzlement": [["M", "S"]], + "embezzlers": null, + "embezzling": null, + "embezzled": null, + "embezzler": [["M"]], + "embezzles": null, + "embezzlement's": null, + "embezzlements": null, + "embezzler's": null, + "embitter": [["L", "G", "D", "S"]], + "embitterment": [["S", "M"]], + "embittering": null, + "embittered": null, + "embitters": null, + "embitterments": null, + "embitterment's": null, + "emblazon": [["D", "L", "G", "S"]], + "emblazoned": null, + "emblazonment": [["S", "M"]], + "emblazoning": null, + "emblazons": null, + "emblazonments": null, + "emblazonment's": null, + "emblematic": null, + "emblem": [["G", "S", "M", "D"]], + "embleming": null, + "emblems": null, + "emblem's": null, + "emblemed": null, + "embodier": [["M"]], + "embodier's": null, + "embodiment": [["E", "S", "M"]], + "disembodiment": null, + "disembodiments": null, + "disembodiment's": null, + "embodiments": null, + "embodiment's": null, + "embody": [["E", "S", "D", "G", "A"]], + "disembody": null, + "disembodies": null, + "disembodied": null, + "disembodying": null, + "embodies": null, + "reembodies": null, + "embodied": null, + "reembodied": null, + "embodying": null, + "reembodying": null, + "reembody": null, + "embolden": [["D", "S", "G"]], + "emboldened": null, + "emboldens": null, + "emboldening": null, + "embolism": [["S", "M"]], + "embolisms": null, + "embolism's": null, + "embosom": null, + "embosser": [["M"]], + "embosser's": null, + "emboss": [["Z", "G", "R", "S", "D"]], + "embossers": null, + "embossing": null, + "embosses": null, + "embossed": null, + "embouchure": [["S", "M"]], + "embouchures": null, + "embouchure's": null, + "embower": [["G", "S", "D"]], + "embowering": null, + "embowers": null, + "embowered": null, + "embraceable": null, + "embracer": [["M"]], + "embracer's": null, + "embrace": [["R", "S", "D", "V", "G"]], + "embraces": null, + "embraced": null, + "embracive": null, + "embracing": [["Y"]], + "embracingly": null, + "embrasure": [["M", "S"]], + "embrasure's": null, + "embrasures": null, + "embrittle": null, + "embrocation": [["S", "M"]], + "embrocations": null, + "embrocation's": null, + "embroiderer": [["M"]], + "embroiderer's": null, + "embroider": [["S", "G", "Z", "D", "R"]], + "embroiders": null, + "embroidering": null, + "embroiderers": null, + "embroidered": null, + "embroidery": [["M", "S"]], + "embroidery's": null, + "embroideries": null, + "embroilment": [["M", "S"]], + "embroilment's": null, + "embroilments": null, + "embroil": [["S", "L", "D", "G"]], + "embroils": null, + "embroiled": null, + "embroiling": null, + "embryologist": [["S", "M"]], + "embryologists": null, + "embryologist's": null, + "embryology": [["M", "S"]], + "embryology's": null, + "embryologies": null, + "embryonic": null, + "embryo": [["S", "M"]], + "embryos": null, + "embryo's": null, + "emceeing": null, + "emcee": [["S", "D", "M"]], + "emcees": null, + "emceed": null, + "emcee's": null, + "Emelda": [["M"]], + "Emelda's": null, + "Emelen": [["M"]], + "Emelen's": null, + "Emelia": [["M"]], + "Emelia's": null, + "Emelina": [["M"]], + "Emelina's": null, + "Emeline": [["M"]], + "Emeline's": null, + "Emelita": [["M"]], + "Emelita's": null, + "Emelyne": [["M"]], + "Emelyne's": null, + "emendation": [["M", "S"]], + "emendation's": null, + "emendations": null, + "emend": [["S", "R", "D", "G", "B"]], + "emends": null, + "emender": null, + "emended": null, + "emending": null, + "emendable": null, + "emerald": [["S", "M"]], + "emeralds": null, + "emerald's": null, + "Emera": [["M"]], + "Emera's": null, + "emerge": [["A", "D", "S", "G"]], + "reemerge": null, + "reemerged": null, + "reemerges": null, + "reemerging": null, + "emerged": null, + "emerges": null, + "emerging": null, + "emergence": [["M", "A", "S"]], + "emergence's": null, + "reemergence's": null, + "reemergence": null, + "reemergences": null, + "emergences": null, + "emergency": [["S", "M"]], + "emergencies": null, + "emergency's": null, + "emergent": [["S"]], + "emergents": null, + "emerita": null, + "emeritae": null, + "emeriti": null, + "emeritus": null, + "Emerson": [["M"]], + "Emerson's": null, + "Emery": [["M"]], + "Emery's": null, + "emery": [["M", "G", "S", "D"]], + "emery's": null, + "emerying": null, + "emeries": null, + "emeried": null, + "emetic": [["S"]], + "emetics": null, + "emf": [["S"]], + "emfs": null, + "emigrant": [["M", "S"]], + "emigrant's": null, + "emigrants": null, + "emigrate": [["S", "D", "X", "N", "G"]], + "emigrates": null, + "emigrated": null, + "emigrations": null, + "emigration": [["M"]], + "emigrating": null, + "emigration's": null, + "�migr�": [["S"]], + "�migr�s": null, + "Emilee": [["M"]], + "Emilee's": null, + "Emile": [["M"]], + "Emile's": null, + "Emilia": [["M"]], + "Emilia's": null, + "Emilie": [["M"]], + "Emilie's": null, + "Emili": [["M"]], + "Emili's": null, + "Emiline": [["M"]], + "Emiline's": null, + "Emilio": [["M"]], + "Emilio's": null, + "Emil": [["M"]], + "Emil's": null, + "Emily": [["M"]], + "Emily's": null, + "eminence": [["M", "S"]], + "eminence's": null, + "eminences": null, + "Eminence": [["M", "S"]], + "Eminence's": null, + "Eminences": null, + "eminent": [["Y"]], + "eminently": null, + "emirate": [["S", "M"]], + "emirates": null, + "emirate's": null, + "emir": [["S", "M"]], + "emirs": null, + "emir's": null, + "emissary": [["S", "M"]], + "emissaries": null, + "emissary's": null, + "emission": [["A", "M", "S"]], + "reemission": null, + "reemission's": null, + "reemissions": null, + "emission's": null, + "emissions": null, + "emissivity": [["M", "S"]], + "emissivity's": null, + "emissivities": null, + "emit": [["S"]], + "emits": null, + "emittance": [["M"]], + "emittance's": null, + "emitted": null, + "emitter": [["S", "M"]], + "emitters": null, + "emitter's": null, + "emitting": null, + "Emlen": [["M"]], + "Emlen's": null, + "Emlyn": [["M"]], + "Emlyn's": null, + "Emlynne": [["M"]], + "Emlynne's": null, + "Emlynn": [["M"]], + "Emlynn's": null, + "em": [["M"]], + "em's": null, + "Em": [["M"]], + "Em's": null, + "Emmalee": [["M"]], + "Emmalee's": null, + "Emmaline": [["M"]], + "Emmaline's": null, + "Emmalyn": [["M"]], + "Emmalyn's": null, + "Emmalynne": [["M"]], + "Emmalynne's": null, + "Emmalynn": [["M"]], + "Emmalynn's": null, + "Emma": [["M"]], + "Emma's": null, + "Emmanuel": [["M"]], + "Emmanuel's": null, + "Emmeline": [["M"]], + "Emmeline's": null, + "Emmerich": [["M"]], + "Emmerich's": null, + "Emmery": [["M"]], + "Emmery's": null, + "Emmet": [["M"]], + "Emmet's": null, + "Emmett": [["M"]], + "Emmett's": null, + "Emmey": [["M"]], + "Emmey's": null, + "Emmie": [["M"]], + "Emmie's": null, + "Emmi": [["M"]], + "Emmi's": null, + "Emmit": [["M"]], + "Emmit's": null, + "Emmott": [["M"]], + "Emmott's": null, + "Emmye": [["M"]], + "Emmye's": null, + "Emmy": [["S", "M"]], + "Emmies": null, + "Emmy's": null, + "Emogene": [["M"]], + "Emogene's": null, + "emollient": [["S"]], + "emollients": null, + "emolument": [["S", "M"]], + "emoluments": null, + "emolument's": null, + "Emory": [["M"]], + "Emory's": null, + "emote": [["S", "D", "V", "G", "N", "X"]], + "emotes": null, + "emoted": null, + "emotive": [["Y"]], + "emoting": null, + "emotion": [["M"]], + "emotions": null, + "emotionalism": [["M", "S"]], + "emotionalism's": null, + "emotionalisms": null, + "emotionality": [["M"]], + "emotionality's": null, + "emotionalize": [["G", "D", "S"]], + "emotionalizing": null, + "emotionalized": null, + "emotionalizes": null, + "emotional": [["U", "Y"]], + "unemotional": null, + "unemotionally": null, + "emotionally": null, + "emotionless": null, + "emotion's": null, + "emotively": null, + "empaneled": null, + "empaneling": null, + "empath": null, + "empathetic": null, + "empathetical": [["Y"]], + "empathetically": null, + "empathic": null, + "empathize": [["S", "D", "G"]], + "empathizes": null, + "empathized": null, + "empathizing": null, + "empathy": [["M", "S"]], + "empathy's": null, + "empathies": null, + "emperor": [["M", "S"]], + "emperor's": null, + "emperors": null, + "emphases": null, + "emphasis": [["M"]], + "emphasis's": null, + "emphasize": [["Z", "G", "C", "R", "S", "D", "A"]], + "emphasizers": null, + "deemphasizers": null, + "reemphasizers": null, + "emphasizing": null, + "deemphasizing": null, + "reemphasizing": null, + "deemphasize": null, + "deemphasizer": null, + "deemphasizes": null, + "deemphasized": null, + "emphasizer": null, + "reemphasizer": null, + "emphasizes": null, + "reemphasizes": null, + "emphasized": null, + "reemphasized": null, + "reemphasize": null, + "emphatically": [["U"]], + "unemphatically": null, + "emphatic": [["U"]], + "unemphatic": null, + "emphysema": [["S", "M"]], + "emphysemas": null, + "emphysema's": null, + "emphysematous": null, + "empire": [["M", "S"]], + "empire's": null, + "empires": null, + "empirical": [["Y"]], + "empirically": null, + "empiricism": [["S", "M"]], + "empiricisms": null, + "empiricism's": null, + "empiricist": [["S", "M"]], + "empiricists": null, + "empiricist's": null, + "empiric": [["S", "M"]], + "empirics": null, + "empiric's": null, + "emplace": [["L"]], + "emplacement": [["M", "S"]], + "emplacement's": null, + "emplacements": null, + "employability": [["U", "M"]], + "unemployability": null, + "unemployability's": null, + "employability's": null, + "employable": [["U", "S"]], + "unemployable": null, + "unemployables": null, + "employables": null, + "employed": [["U"]], + "unemployed": [["S"]], + "employee": [["S", "M"]], + "employees": null, + "employee's": null, + "employer": [["S", "M"]], + "employers": null, + "employer's": null, + "employ": [["L", "A", "G", "D", "S"]], + "employment": [["U", "M", "A", "S"]], + "reemployment": null, + "reemploy": null, + "reemploying": null, + "reemployed": null, + "reemploys": null, + "employing": null, + "employs": null, + "unemployment": null, + "unemployment's": null, + "unemployments": null, + "employment's": null, + "reemployment's": null, + "reemployments": null, + "employments": null, + "emporium": [["M", "S"]], + "emporium's": null, + "emporiums": null, + "empower": [["G", "L", "S", "D"]], + "empowering": null, + "empowerment": [["M", "S"]], + "empowers": null, + "empowered": null, + "empowerment's": null, + "empowerments": null, + "empress": [["M", "S"]], + "empress's": null, + "empresses": null, + "emptier": [["M"]], + "emptier's": null, + "emptily": null, + "emptiness": [["S", "M"]], + "emptinesses": null, + "emptiness's": null, + "empty": [["G", "R", "S", "D", "P", "T"]], + "emptying": null, + "empties": null, + "emptied": null, + "emptiest": null, + "empyrean": [["S", "M"]], + "empyreans": null, + "empyrean's": null, + "ems": [["C"]], + "EMT": null, + "emulate": [["S", "D", "V", "G", "N", "X"]], + "emulates": null, + "emulated": null, + "emulative": [["Y"]], + "emulating": null, + "emulation": [["M"]], + "emulations": null, + "emulation's": null, + "emulatively": null, + "emulator": [["M", "S"]], + "emulator's": null, + "emulators": null, + "emulsification": [["M"]], + "emulsification's": null, + "emulsifier": [["M"]], + "emulsifier's": null, + "emulsify": [["N", "Z", "S", "R", "D", "X", "G"]], + "emulsifiers": null, + "emulsifies": null, + "emulsified": null, + "emulsifications": null, + "emulsifying": null, + "emulsion": [["S", "M"]], + "emulsions": null, + "emulsion's": null, + "emu": [["S", "M"]], + "emus": null, + "emu's": null, + "Emylee": [["M"]], + "Emylee's": null, + "Emyle": [["M"]], + "Emyle's": null, + "enabler": [["M"]], + "enabler's": null, + "enable": [["S", "R", "D", "Z", "G"]], + "enables": null, + "enabled": null, + "enablers": null, + "enabling": null, + "enactment": [["A", "S", "M"]], + "reenactment": null, + "reenactments": null, + "reenactment's": null, + "enactments": null, + "enactment's": null, + "enact": [["S", "G", "A", "L", "D"]], + "enacts": null, + "reenacts": null, + "enacting": null, + "reenacting": null, + "reenact": null, + "reenacted": null, + "enacted": null, + "enameler": [["M"]], + "enameler's": null, + "enamelware": [["S", "M"]], + "enamelwares": null, + "enamelware's": null, + "enamel": [["Z", "G", "J", "M", "D", "R", "S"]], + "enamelers": null, + "enameling": null, + "enamelings": null, + "enamel's": null, + "enameled": null, + "enamels": null, + "enamor": [["D", "S", "G"]], + "enamored": null, + "enamors": null, + "enamoring": null, + "en": [["B", "M"]], + "en's": null, + "enc": null, + "encamp": [["L", "S", "D", "G"]], + "encampment": [["M", "S"]], + "encamps": null, + "encamped": null, + "encamping": null, + "encampment's": null, + "encampments": null, + "encapsulate": [["S", "D", "G", "N", "X"]], + "encapsulates": null, + "encapsulated": null, + "encapsulating": null, + "encapsulation": [["M"]], + "encapsulations": null, + "encapsulation's": null, + "encase": [["G", "S", "D", "L"]], + "encasing": null, + "encases": null, + "encased": null, + "encasement": [["S", "M"]], + "encasements": null, + "encasement's": null, + "encephalitic": null, + "encephalitides": null, + "encephalitis": [["M"]], + "encephalitis's": null, + "encephalographic": null, + "encephalopathy": [["M"]], + "encephalopathy's": null, + "enchain": [["S", "G", "D"]], + "enchains": null, + "enchaining": null, + "enchained": null, + "enchanter": [["M", "S"]], + "enchanter's": null, + "enchanters": null, + "enchant": [["E", "S", "L", "D", "G"]], + "disenchant": null, + "disenchants": null, + "disenchantment": null, + "disenchanted": null, + "disenchanting": null, + "enchants": null, + "enchantment": [["M", "S", "E"]], + "enchanted": null, + "enchanting": [["Y"]], + "enchantingly": null, + "enchantment's": null, + "disenchantment's": null, + "enchantments": null, + "disenchantments": null, + "enchantress": [["M", "S"]], + "enchantress's": null, + "enchantresses": null, + "enchilada": [["S", "M"]], + "enchiladas": null, + "enchilada's": null, + "encipherer": [["M"]], + "encipherer's": null, + "encipher": [["S", "R", "D", "G"]], + "enciphers": null, + "enciphered": null, + "enciphering": null, + "encircle": [["G", "L", "D", "S"]], + "encircling": null, + "encirclement": [["S", "M"]], + "encircled": null, + "encircles": null, + "encirclements": null, + "encirclement's": null, + "encl": null, + "enclave": [["M", "G", "D", "S"]], + "enclave's": null, + "enclaving": null, + "enclaved": null, + "enclaves": null, + "enclosed": [["U"]], + "unenclosed": null, + "enclose": [["G", "D", "S"]], + "enclosing": null, + "encloses": null, + "enclosure": [["S", "M"]], + "enclosures": null, + "enclosure's": null, + "encoder": [["M"]], + "encoder's": null, + "encode": [["Z", "J", "G", "S", "R", "D"]], + "encoders": null, + "encodings": null, + "encoding": null, + "encodes": null, + "encoded": null, + "encomium": [["S", "M"]], + "encomiums": null, + "encomium's": null, + "encompass": [["G", "D", "S"]], + "encompassing": null, + "encompassed": null, + "encompasses": null, + "encore": [["G", "S", "D"]], + "encoring": null, + "encores": null, + "encored": null, + "encounter": [["G", "S", "D"]], + "encountering": null, + "encounters": null, + "encountered": null, + "encouragement": [["S", "M"]], + "encouragements": null, + "encouragement's": null, + "encourager": [["M"]], + "encourager's": null, + "encourage": [["S", "R", "D", "G", "L"]], + "encourages": null, + "encouraged": null, + "encouraging": [["Y"]], + "encouragingly": null, + "encroacher": [["M"]], + "encroacher's": null, + "encroach": [["L", "G", "R", "S", "D"]], + "encroachment": [["M", "S"]], + "encroaching": null, + "encroaches": null, + "encroached": null, + "encroachment's": null, + "encroachments": null, + "encrustation": [["M", "S"]], + "encrustation's": null, + "encrustations": null, + "encrust": [["D", "S", "G"]], + "encrusted": null, + "encrusts": null, + "encrusting": null, + "encrypt": [["D", "G", "S"]], + "encrypted": [["U"]], + "encrypting": null, + "encrypts": null, + "unencrypted": null, + "encryption": [["S", "M"]], + "encryptions": null, + "encryption's": null, + "encumbered": [["U"]], + "unencumbered": null, + "encumber": [["S", "E", "D", "G"]], + "encumbers": null, + "disencumbers": null, + "disencumber": null, + "disencumbered": null, + "disencumbering": null, + "encumbering": null, + "encumbrancer": [["M"]], + "encumbrancer's": null, + "encumbrance": [["S", "R", "M"]], + "encumbrances": null, + "encumbrance's": null, + "ency": null, + "encyclical": [["S", "M"]], + "encyclicals": null, + "encyclical's": null, + "encyclopaedia's": null, + "encyclopedia": [["S", "M"]], + "encyclopedias": null, + "encyclopedia's": null, + "encyclopedic": null, + "encyst": [["G", "S", "L", "D"]], + "encysting": null, + "encysts": null, + "encystment": [["M", "S"]], + "encysted": null, + "encystment's": null, + "encystments": null, + "endanger": [["D", "G", "S", "L"]], + "endangered": null, + "endangering": null, + "endangers": null, + "endangerment": [["S", "M"]], + "endangerments": null, + "endangerment's": null, + "endear": [["G", "S", "L", "D"]], + "endearing": [["Y"]], + "endears": null, + "endearment": [["M", "S"]], + "endeared": null, + "endearingly": null, + "endearment's": null, + "endearments": null, + "endeavored": [["U"]], + "unendeavored": null, + "endeavorer": [["M"]], + "endeavorer's": null, + "endeavor": [["G", "Z", "S", "M", "R", "D"]], + "endeavoring": null, + "endeavorers": null, + "endeavors": null, + "endeavor's": null, + "endemically": null, + "endemicity": null, + "endemic": [["S"]], + "endemics": null, + "ender": [["M"]], + "ender's": null, + "endgame": [["M"]], + "endgame's": null, + "Endicott": [["M"]], + "Endicott's": null, + "ending": [["M"]], + "ending's": null, + "endive": [["S", "M"]], + "endives": null, + "endive's": null, + "endlessness": [["M", "S"]], + "endlessness's": null, + "endlessnesses": null, + "endless": [["P", "Y"]], + "endlessly": null, + "endmost": null, + "endnote": [["M", "S"]], + "endnote's": null, + "endnotes": null, + "endocrine": [["S"]], + "endocrines": null, + "endocrinologist": [["S", "M"]], + "endocrinologists": null, + "endocrinologist's": null, + "endocrinology": [["S", "M"]], + "endocrinologies": null, + "endocrinology's": null, + "endogamous": null, + "endogamy": [["M"]], + "endogamy's": null, + "endogenous": [["Y"]], + "endogenously": null, + "endomorphism": [["S", "M"]], + "endomorphisms": null, + "endomorphism's": null, + "endorse": [["D", "R", "S", "Z", "G", "L"]], + "endorsed": null, + "endorser": [["M"]], + "endorses": null, + "endorsers": null, + "endorsing": null, + "endorsement": [["M", "S"]], + "endorsement's": null, + "endorsements": null, + "endorser's": null, + "endoscope": [["M", "S"]], + "endoscope's": null, + "endoscopes": null, + "endoscopic": null, + "endoscopy": [["S", "M"]], + "endoscopies": null, + "endoscopy's": null, + "endosperm": [["M"]], + "endosperm's": null, + "endothelial": null, + "endothermic": null, + "endow": [["G", "S", "D", "L"]], + "endowing": null, + "endows": null, + "endowed": null, + "endowment": [["S", "M"]], + "endowments": null, + "endowment's": null, + "endpoint": [["M", "S"]], + "endpoint's": null, + "endpoints": null, + "endue": [["S", "D", "G"]], + "endues": null, + "endued": null, + "enduing": null, + "endungeoned": null, + "endurable": [["U"]], + "unendurable": [["P"]], + "endurably": [["U"]], + "unendurably": null, + "endurance": [["S", "M"]], + "endurances": null, + "endurance's": null, + "endure": [["B", "S", "D", "G"]], + "endures": null, + "endured": null, + "enduring": [["Y", "P"]], + "enduringness": [["M"]], + "enduringness's": null, + "enduringly": null, + "endways": null, + "Endymion": [["M"]], + "Endymion's": null, + "end": [["Z", "G", "V", "M", "D", "R", "S", "J"]], + "enders": null, + "end's": null, + "ended": null, + "ends": null, + "endings": null, + "ENE": null, + "enema": [["S", "M"]], + "enemas": null, + "enema's": null, + "enemy": [["S", "M"]], + "enemies": null, + "enemy's": null, + "energetically": null, + "energetic": [["S"]], + "energetics": [["M"]], + "energetics's": null, + "energized": [["U"]], + "unenergized": [["M", "S"]], + "energizer": [["M"]], + "energizer's": null, + "energize": [["Z", "G", "D", "R", "S"]], + "energizers": null, + "energizing": null, + "energizes": null, + "energy": [["M", "S"]], + "energy's": null, + "energies": null, + "enervate": [["X", "N", "G", "V", "D", "S"]], + "enervations": null, + "enervation": [["M"]], + "enervating": null, + "enervative": null, + "enervated": null, + "enervates": null, + "enervation's": null, + "enfeeble": [["G", "L", "D", "S"]], + "enfeebling": null, + "enfeeblement": [["S", "M"]], + "enfeebled": null, + "enfeebles": null, + "enfeeblements": null, + "enfeeblement's": null, + "enfilade": [["M", "G", "D", "S"]], + "enfilade's": null, + "enfilading": null, + "enfiladed": null, + "enfilades": null, + "enfold": [["S", "G", "D"]], + "enfolds": null, + "enfolding": null, + "enfolded": null, + "enforceability": [["M"]], + "enforceability's": null, + "enforceable": [["U"]], + "unenforceable": null, + "enforced": [["Y"]], + "enforcedly": null, + "enforce": [["L", "D", "R", "S", "Z", "G"]], + "enforcement": [["S", "M"]], + "enforcer": [["M"]], + "enforces": null, + "enforcers": null, + "enforcing": null, + "enforcements": null, + "enforcement's": null, + "enforcer's": null, + "enforcible": [["U"]], + "unenforcible": null, + "enfranchise": [["E", "L", "D", "R", "S", "G"]], + "disenfranchise": null, + "disenfranchisement": null, + "disenfranchised": null, + "disenfranchiser": null, + "disenfranchises": null, + "disenfranchising": null, + "enfranchisement": [["E", "M", "S"]], + "enfranchised": null, + "enfranchiser": [["M"]], + "enfranchises": null, + "enfranchising": null, + "disenfranchisement's": null, + "disenfranchisements": null, + "enfranchisement's": null, + "enfranchisements": null, + "enfranchiser's": null, + "engage": [["A", "D", "S", "G", "E"]], + "reengage": null, + "reengaged": null, + "reengages": null, + "reengaging": null, + "engaged": null, + "disengaged": null, + "engages": null, + "disengages": null, + "engaging": [["Y"]], + "disengaging": null, + "engagement": [["S", "E", "M"]], + "engagements": null, + "disengagements": null, + "disengagement's": null, + "engagement's": null, + "engagingly": null, + "Engelbert": [["M"]], + "Engelbert's": null, + "Engel": [["M", "S"]], + "Engel's": null, + "Engels": null, + "engender": [["D", "G", "S"]], + "engendered": null, + "engendering": null, + "engenders": null, + "engineer": [["G", "S", "M", "D", "J"]], + "engineering": [["M", "Y"]], + "engineers": null, + "engineer's": null, + "engineered": null, + "engineerings": null, + "engineering's": null, + "engineeringly": null, + "engine": [["M", "G", "S", "D"]], + "engine's": null, + "engining": null, + "engines": null, + "engined": null, + "England": [["M"]], + "England's": null, + "england": [["Z", "R"]], + "englanders": null, + "englander": null, + "Englebert": [["M"]], + "Englebert's": null, + "Englewood": [["M"]], + "Englewood's": null, + "English": [["G", "D", "R", "S", "M"]], + "Englishing": null, + "Englished": null, + "Englisher": null, + "Englishes": null, + "English's": null, + "Englishman": [["M"]], + "Englishman's": null, + "Englishmen": null, + "Englishwoman": [["M"]], + "Englishwoman's": null, + "Englishwomen": null, + "Eng": [["M"]], + "Eng's": null, + "engorge": [["L", "G", "D", "S"]], + "engorgement": [["M", "S"]], + "engorging": null, + "engorged": null, + "engorges": null, + "engorgement's": null, + "engorgements": null, + "Engracia": [["M"]], + "Engracia's": null, + "engram": [["M", "S"]], + "engram's": null, + "engrams": null, + "engraver": [["M"]], + "engraver's": null, + "engrave": [["Z", "G", "D", "R", "S", "J"]], + "engravers": null, + "engraving": [["M"]], + "engraved": null, + "engraves": null, + "engravings": null, + "engraving's": null, + "engrossed": [["Y"]], + "engrossedly": null, + "engrosser": [["M"]], + "engrosser's": null, + "engross": [["G", "L", "D", "R", "S"]], + "engrossing": [["Y"]], + "engrossment": [["S", "M"]], + "engrosses": null, + "engrossingly": null, + "engrossments": null, + "engrossment's": null, + "engulf": [["G", "D", "S", "L"]], + "engulfing": null, + "engulfed": null, + "engulfs": null, + "engulfment": [["S", "M"]], + "engulfments": null, + "engulfment's": null, + "enhanceable": null, + "enhance": [["L", "Z", "G", "D", "R", "S"]], + "enhancement": [["M", "S"]], + "enhancers": null, + "enhancing": null, + "enhanced": null, + "enhancer": [["M"]], + "enhances": null, + "enhancement's": null, + "enhancements": null, + "enhancer's": null, + "enharmonic": null, + "Enid": [["M"]], + "Enid's": null, + "Enif": [["M"]], + "Enif's": null, + "enigma": [["M", "S"]], + "enigma's": null, + "enigmas": null, + "enigmatic": null, + "enigmatically": null, + "Eniwetok": [["M"]], + "Eniwetok's": null, + "enjambement's": null, + "enjambment": [["M", "S"]], + "enjambment's": null, + "enjambments": null, + "enjoinder": null, + "enjoin": [["G", "S", "D"]], + "enjoining": null, + "enjoins": null, + "enjoined": null, + "enjoyability": null, + "enjoyableness": [["M"]], + "enjoyableness's": null, + "enjoyable": [["P"]], + "enjoyably": null, + "enjoy": [["G", "B", "D", "S", "L"]], + "enjoying": null, + "enjoyed": null, + "enjoys": null, + "enjoyment": [["S", "M"]], + "enjoyments": null, + "enjoyment's": null, + "Enkidu": [["M"]], + "Enkidu's": null, + "enlargeable": null, + "enlarge": [["L", "D", "R", "S", "Z", "G"]], + "enlargement": [["M", "S"]], + "enlarged": null, + "enlarger": [["M"]], + "enlarges": null, + "enlargers": null, + "enlarging": null, + "enlargement's": null, + "enlargements": null, + "enlarger's": null, + "enlightened": [["U"]], + "unenlightened": null, + "enlighten": [["G", "D", "S", "L"]], + "enlightening": [["U"]], + "enlightens": null, + "enlightenment": [["S", "M"]], + "unenlightening": null, + "enlightenments": null, + "enlightenment's": null, + "enlistee": [["M", "S"]], + "enlistee's": null, + "enlistees": null, + "enlister": [["M"]], + "enlister's": null, + "enlistment": [["S", "A", "M"]], + "enlistments": null, + "reenlistments": null, + "reenlistment": null, + "reenlistment's": null, + "enlistment's": null, + "enlist": [["S", "A", "G", "D", "L"]], + "enlists": null, + "reenlists": null, + "reenlist": null, + "reenlisting": null, + "reenlisted": null, + "enlisting": null, + "enlisted": null, + "enliven": [["L", "D", "G", "S"]], + "enlivenment": [["S", "M"]], + "enlivened": null, + "enlivening": null, + "enlivens": null, + "enlivenments": null, + "enlivenment's": null, + "enmesh": [["D", "S", "L", "G"]], + "enmeshed": null, + "enmeshes": null, + "enmeshment": [["S", "M"]], + "enmeshing": null, + "enmeshments": null, + "enmeshment's": null, + "enmity": [["M", "S"]], + "enmity's": null, + "enmities": null, + "Ennis": [["M"]], + "Ennis's": null, + "ennoble": [["L", "D", "R", "S", "G"]], + "ennoblement": [["S", "M"]], + "ennobled": null, + "ennobler": [["M"]], + "ennobles": null, + "ennobling": null, + "ennoblements": null, + "ennoblement's": null, + "ennobler's": null, + "ennui": [["S", "M"]], + "ennuis": null, + "ennui's": null, + "Enoch": [["M"]], + "Enoch's": null, + "enormity": [["S", "M"]], + "enormities": null, + "enormity's": null, + "enormousness": [["M", "S"]], + "enormousness's": null, + "enormousnesses": null, + "enormous": [["Y", "P"]], + "enormously": null, + "Enos": null, + "enough": null, + "enoughs": null, + "enplane": [["D", "S", "G"]], + "enplaned": null, + "enplanes": null, + "enplaning": null, + "enqueue": [["D", "S"]], + "enqueued": null, + "enqueues": null, + "enquirer": [["S"]], + "enquirers": null, + "enquiringly": null, + "enrage": [["S", "D", "G"]], + "enrages": null, + "enraged": null, + "enraging": null, + "enrapture": [["G", "S", "D"]], + "enrapturing": null, + "enraptures": null, + "enraptured": null, + "Enrica": [["M"]], + "Enrica's": null, + "enricher": [["M"]], + "enricher's": null, + "Enrichetta": [["M"]], + "Enrichetta's": null, + "enrich": [["L", "D", "S", "R", "G"]], + "enrichment": [["S", "M"]], + "enriched": null, + "enriches": null, + "enriching": null, + "enrichments": null, + "enrichment's": null, + "Enrico": [["M"]], + "Enrico's": null, + "Enrika": [["M"]], + "Enrika's": null, + "Enrique": [["M"]], + "Enrique's": null, + "Enriqueta": [["M"]], + "Enriqueta's": null, + "enrobed": null, + "enrollee": [["S", "M"]], + "enrollees": null, + "enrollee's": null, + "enroll": [["L", "G", "S", "D"]], + "enrollment": [["S", "M"]], + "enrolling": null, + "enrolls": null, + "enrolled": null, + "enrollments": null, + "enrollment's": null, + "ens": null, + "ensconce": [["D", "S", "G"]], + "ensconced": null, + "ensconces": null, + "ensconcing": null, + "ensemble": [["M", "S"]], + "ensemble's": null, + "ensembles": null, + "enshrine": [["D", "S", "L", "G"]], + "enshrined": null, + "enshrines": null, + "enshrinement": [["S", "M"]], + "enshrining": null, + "enshrinements": null, + "enshrinement's": null, + "enshroud": [["D", "G", "S"]], + "enshrouded": null, + "enshrouding": null, + "enshrouds": null, + "ensign": [["S", "M"]], + "ensigns": null, + "ensign's": null, + "ensilage": [["D", "S", "M", "G"]], + "ensilaged": null, + "ensilages": null, + "ensilage's": null, + "ensilaging": null, + "enslavement": [["M", "S"]], + "enslavement's": null, + "enslavements": null, + "enslaver": [["M"]], + "enslaver's": null, + "enslave": [["Z", "G", "L", "D", "S", "R"]], + "enslavers": null, + "enslaving": null, + "enslaved": null, + "enslaves": null, + "ensnare": [["G", "L", "D", "S"]], + "ensnaring": null, + "ensnarement": [["S", "M"]], + "ensnared": null, + "ensnares": null, + "ensnarements": null, + "ensnarement's": null, + "Ensolite": [["M"]], + "Ensolite's": null, + "ensue": [["S", "D", "G"]], + "ensues": null, + "ensued": null, + "ensuing": null, + "ensurer": [["M"]], + "ensurer's": null, + "ensure": [["S", "R", "D", "Z", "G"]], + "ensures": null, + "ensured": null, + "ensurers": null, + "ensuring": null, + "entailer": [["M"]], + "entailer's": null, + "entailment": [["M", "S"]], + "entailment's": null, + "entailments": null, + "entail": [["S", "D", "R", "L", "G"]], + "entails": null, + "entailed": null, + "entailing": null, + "entangle": [["E", "G", "D", "R", "S", "L"]], + "disentangle": null, + "disentangling": null, + "disentangled": null, + "disentangler": null, + "disentangles": null, + "disentanglement": null, + "entangling": null, + "entangled": null, + "entangler": [["E", "M"]], + "entangles": null, + "entanglement": [["E", "S", "M"]], + "disentanglements": null, + "disentanglement's": null, + "entanglements": null, + "entanglement's": null, + "disentangler's": null, + "entangler's": null, + "entente": [["M", "S"]], + "entente's": null, + "ententes": null, + "enter": [["A", "S", "D", "G"]], + "reenter": null, + "reenters": null, + "reentered": null, + "reentering": null, + "enters": null, + "entered": [["U"]], + "entering": null, + "unentered": null, + "enterer": [["M"]], + "enterer's": null, + "enteritides": null, + "enteritis": [["S", "M"]], + "enteritises": null, + "enteritis's": null, + "enterprise": [["G", "M", "S", "R"]], + "enterprising": [["Y"]], + "enterprise's": null, + "enterprises": null, + "enterpriser": [["M"]], + "Enterprise": [["M"]], + "Enterprise's": null, + "enterpriser's": null, + "enterprisingly": null, + "entertainer": [["M"]], + "entertainer's": null, + "entertaining": [["Y"]], + "entertainingly": null, + "entertainment": [["S", "M"]], + "entertainments": null, + "entertainment's": null, + "entertain": [["S", "G", "Z", "R", "D", "L"]], + "entertains": null, + "entertainers": null, + "entertained": null, + "enthalpy": [["S", "M"]], + "enthalpies": null, + "enthalpy's": null, + "enthrall": [["G", "D", "S", "L"]], + "enthralling": null, + "enthralled": null, + "enthralls": null, + "enthrallment": [["S", "M"]], + "enthrallments": null, + "enthrallment's": null, + "enthrone": [["G", "D", "S", "L"]], + "enthroning": null, + "enthroned": null, + "enthrones": null, + "enthronement": [["M", "S"]], + "enthronement's": null, + "enthronements": null, + "enthuse": [["D", "S", "G"]], + "enthused": null, + "enthuses": null, + "enthusing": null, + "enthusiasm": [["S", "M"]], + "enthusiasms": null, + "enthusiasm's": null, + "enthusiastically": [["U"]], + "unenthusiastically": null, + "enthusiastic": [["U"]], + "unenthusiastic": null, + "enthusiast": [["M", "S"]], + "enthusiast's": null, + "enthusiasts": null, + "enticement": [["S", "M"]], + "enticements": null, + "enticement's": null, + "entice": [["S", "R", "D", "J", "L", "Z", "G"]], + "entices": null, + "enticer": null, + "enticed": null, + "enticings": null, + "enticers": null, + "enticing": [["Y"]], + "enticingly": null, + "entire": [["S", "Y"]], + "entires": null, + "entirely": null, + "entirety": [["S", "M"]], + "entireties": null, + "entirety's": null, + "entitle": [["G", "L", "D", "S"]], + "entitling": null, + "entitlement": [["M", "S"]], + "entitled": null, + "entitles": null, + "entitlement's": null, + "entitlements": null, + "entity": [["S", "M"]], + "entities": null, + "entity's": null, + "entomb": [["G", "D", "S", "L"]], + "entombing": null, + "entombed": null, + "entombs": null, + "entombment": [["M", "S"]], + "entombment's": null, + "entombments": null, + "entomological": null, + "entomologist": [["S"]], + "entomologists": null, + "entomology": [["M", "S"]], + "entomology's": null, + "entomologies": null, + "entourage": [["S", "M"]], + "entourages": null, + "entourage's": null, + "entr'acte": [["S"]], + "entr'actes": null, + "entrails": null, + "entrainer": [["M"]], + "entrainer's": null, + "entrain": [["G", "S", "L", "D", "R"]], + "entraining": null, + "entrains": null, + "entrainment": null, + "entrained": null, + "entrancement": [["M", "S"]], + "entrancement's": null, + "entrancements": null, + "entrance": [["M", "G", "D", "S", "L"]], + "entrance's": null, + "entrancing": [["Y"]], + "entranced": null, + "entrances": null, + "entranceway": [["M"]], + "entranceway's": null, + "entrancingly": null, + "entrant": [["M", "S"]], + "entrant's": null, + "entrants": null, + "entrapment": [["S", "M"]], + "entrapments": null, + "entrapment's": null, + "entrapped": null, + "entrapping": null, + "entrap": [["S", "L"]], + "entraps": null, + "entreating": [["Y"]], + "entreatingly": null, + "entreat": [["S", "G", "D"]], + "entreats": null, + "entreated": null, + "entreaty": [["S", "M"]], + "entreaties": null, + "entreaty's": null, + "entr�e": [["S"]], + "entr�es": null, + "entrench": [["L", "S", "D", "G"]], + "entrenchment": [["M", "S"]], + "entrenches": null, + "entrenched": null, + "entrenching": null, + "entrenchment's": null, + "entrenchments": null, + "entrepreneurial": null, + "entrepreneur": [["M", "S"]], + "entrepreneur's": null, + "entrepreneurs": null, + "entrepreneurship": [["M"]], + "entrepreneurship's": null, + "entropic": null, + "entropy": [["M", "S"]], + "entropy's": null, + "entropies": null, + "entrust": [["D", "S", "G"]], + "entrusted": null, + "entrusts": null, + "entrusting": null, + "entry": [["A", "S", "M"]], + "reentry": null, + "reentries": null, + "reentry's": null, + "entries": null, + "entry's": null, + "entryway": [["S", "M"]], + "entryways": null, + "entryway's": null, + "entwine": [["D", "S", "G"]], + "entwined": null, + "entwines": null, + "entwining": null, + "enumerable": null, + "enumerate": [["A", "N"]], + "reenumerate": null, + "reenumeration": null, + "enumeration": [["S", "M"]], + "enumerated": [["U"]], + "unenumerated": null, + "enumerates": null, + "enumerating": null, + "enumeration's": [["A"]], + "reenumeration's": null, + "enumerations": null, + "enumerative": null, + "enumerator": [["S", "M"]], + "enumerators": null, + "enumerator's": null, + "enunciable": null, + "enunciated": [["U"]], + "unenunciated": null, + "enunciate": [["X", "G", "N", "S", "D"]], + "enunciations": null, + "enunciating": null, + "enunciation": [["M"]], + "enunciates": null, + "enunciation's": null, + "enureses": null, + "enuresis": [["M"]], + "enuresis's": null, + "envelope": [["M", "S"]], + "envelope's": null, + "envelopes": null, + "enveloper": [["M"]], + "enveloper's": null, + "envelopment": [["M", "S"]], + "envelopment's": null, + "envelopments": null, + "envelop": [["Z", "G", "L", "S", "D", "R"]], + "envelopers": null, + "enveloping": null, + "envelops": null, + "enveloped": null, + "envenom": [["S", "D", "G"]], + "envenoms": null, + "envenomed": null, + "envenoming": null, + "enviableness": [["M"]], + "enviableness's": null, + "enviable": [["U"]], + "unenviable": null, + "enviably": null, + "envied": [["U"]], + "unenvied": null, + "envier": [["M"]], + "envier's": null, + "enviousness": [["S", "M"]], + "enviousnesses": null, + "enviousness's": null, + "envious": [["P", "Y"]], + "enviously": null, + "environ": [["L", "G", "S", "D"]], + "environment": [["M", "S"]], + "environing": null, + "environs": null, + "environed": null, + "environmentalism": [["S", "M"]], + "environmentalisms": null, + "environmentalism's": null, + "environmentalist": [["S", "M"]], + "environmentalists": null, + "environmentalist's": null, + "environmental": [["Y"]], + "environmentally": null, + "environment's": null, + "environments": null, + "envisage": [["D", "S", "G"]], + "envisaged": null, + "envisages": null, + "envisaging": null, + "envision": [["G", "S", "D"]], + "envisioning": null, + "envisions": null, + "envisioned": null, + "envoy": [["S", "M"]], + "envoys": null, + "envoy's": null, + "envying": [["Y"]], + "envyingly": null, + "envy": [["S", "R", "D", "M", "G"]], + "envies": null, + "envy's": null, + "enzymatic": null, + "enzymatically": null, + "enzyme": [["S", "M"]], + "enzymes": null, + "enzyme's": null, + "enzymology": [["M"]], + "enzymology's": null, + "Eocene": null, + "EOE": null, + "eohippus": [["M"]], + "eohippus's": null, + "Eolanda": [["M"]], + "Eolanda's": null, + "Eolande": [["M"]], + "Eolande's": null, + "eolian": null, + "eon": [["S", "M"]], + "eons": null, + "eon's": null, + "EPA": null, + "epaulet": [["S", "M"]], + "epaulets": null, + "epaulet's": null, + "�p�e": [["S"]], + "�p�es": null, + "ephedrine": [["M", "S"]], + "ephedrine's": null, + "ephedrines": null, + "ephemeral": [["S", "Y"]], + "ephemerals": null, + "ephemerally": null, + "ephemera": [["M", "S"]], + "ephemera's": null, + "ephemeras": null, + "ephemerids": null, + "ephemeris": [["M"]], + "ephemeris's": null, + "Ephesian": [["S"]], + "Ephesians": [["M"]], + "Ephesians's": null, + "Ephesus": [["M"]], + "Ephesus's": null, + "Ephraim": [["M"]], + "Ephraim's": null, + "Ephrayim": [["M"]], + "Ephrayim's": null, + "Ephrem": [["M"]], + "Ephrem's": null, + "epically": null, + "epicenter": [["S", "M"]], + "epicenters": null, + "epicenter's": null, + "epic": [["S", "M"]], + "epics": null, + "epic's": null, + "Epictetus": [["M"]], + "Epictetus's": null, + "Epicurean": null, + "epicurean": [["S"]], + "epicureans": null, + "epicure": [["S", "M"]], + "epicures": null, + "epicure's": null, + "Epicurus": [["M"]], + "Epicurus's": null, + "epicycle": [["M", "S"]], + "epicycle's": null, + "epicycles": null, + "epicyclic": null, + "epicyclical": [["Y"]], + "epicyclically": null, + "epicycloid": [["M"]], + "epicycloid's": null, + "epidemically": null, + "epidemic": [["M", "S"]], + "epidemic's": null, + "epidemics": null, + "epidemiological": [["Y"]], + "epidemiologically": null, + "epidemiologist": [["M", "S"]], + "epidemiologist's": null, + "epidemiologists": null, + "epidemiology": [["M", "S"]], + "epidemiology's": null, + "epidemiologies": null, + "epidermal": null, + "epidermic": null, + "epidermis": [["M", "S"]], + "epidermis's": null, + "epidermises": null, + "epidural": null, + "epigenetic": null, + "epiglottis": [["S", "M"]], + "epiglottises": null, + "epiglottis's": null, + "epigrammatic": null, + "epigram": [["M", "S"]], + "epigram's": null, + "epigrams": null, + "epigrapher": [["M"]], + "epigrapher's": null, + "epigraph": [["R", "M"]], + "epigraph's": null, + "epigraphs": null, + "epigraphy": [["M", "S"]], + "epigraphy's": null, + "epigraphies": null, + "epilepsy": [["S", "M"]], + "epilepsies": null, + "epilepsy's": null, + "epileptic": [["S"]], + "epileptics": null, + "epilogue": [["S", "D", "M", "G"]], + "epilogues": null, + "epilogued": null, + "epilogue's": null, + "epiloguing": null, + "Epimethius": [["M"]], + "Epimethius's": null, + "epinephrine": [["S", "M"]], + "epinephrines": null, + "epinephrine's": null, + "epiphany": [["S", "M"]], + "epiphanies": null, + "epiphany's": null, + "Epiphany": [["S", "M"]], + "Epiphanies": null, + "Epiphany's": null, + "epiphenomena": null, + "episcopacy": [["M", "S"]], + "episcopacy's": null, + "episcopacies": null, + "episcopalian": null, + "Episcopalian": [["S"]], + "Episcopalians": null, + "Episcopal": [["S"]], + "Episcopals": null, + "episcopal": [["Y"]], + "episcopally": null, + "episcopate": [["M", "S"]], + "episcopate's": null, + "episcopates": null, + "episode": [["S", "M"]], + "episodes": null, + "episode's": null, + "episodic": null, + "episodically": null, + "epistemic": null, + "epistemological": [["Y"]], + "epistemologically": null, + "epistemology": [["M"]], + "epistemology's": null, + "epistle": [["M", "R", "S"]], + "epistle's": null, + "epistler": null, + "epistles": null, + "Epistle": [["S", "M"]], + "Epistles": null, + "Epistle's": null, + "epistolary": [["S"]], + "epistolaries": null, + "epistolatory": null, + "epitaph": [["G", "M", "D"]], + "epitaphing": null, + "epitaph's": null, + "epitaphed": null, + "epitaphs": null, + "epitaxial": [["Y"]], + "epitaxially": null, + "epitaxy": [["M"]], + "epitaxy's": null, + "epithelial": null, + "epithelium": [["M", "S"]], + "epithelium's": null, + "epitheliums": null, + "epithet": [["M", "S"]], + "epithet's": null, + "epithets": null, + "epitome": [["M", "S"]], + "epitome's": null, + "epitomes": null, + "epitomized": [["U"]], + "unepitomized": null, + "epitomizer": [["M"]], + "epitomizer's": null, + "epitomize": [["S", "R", "D", "Z", "G"]], + "epitomizes": null, + "epitomizers": null, + "epitomizing": null, + "epochal": [["Y"]], + "epochally": null, + "epoch": [["M"]], + "epoch's": null, + "epochs": null, + "eponymous": null, + "epoxy": [["G", "S", "D"]], + "epoxying": null, + "epoxies": null, + "epoxied": null, + "epsilon": [["S", "M"]], + "epsilons": null, + "epsilon's": null, + "Epsom": [["M"]], + "Epsom's": null, + "Epstein": [["M"]], + "Epstein's": null, + "equability": [["M", "S"]], + "equability's": null, + "equabilities": null, + "equableness": [["M"]], + "equableness's": null, + "equable": [["P"]], + "equably": null, + "equaling": null, + "equality": [["I", "S", "M"]], + "inequality": null, + "inequalities": null, + "inequality's": null, + "equalities": null, + "equality's": null, + "equalization": [["M", "S"]], + "equalization's": null, + "equalizations": null, + "equalize": [["D", "R", "S", "G", "J", "Z"]], + "equalized": [["U"]], + "equalizer": [["M"]], + "equalizes": [["U"]], + "equalizing": null, + "equalizings": null, + "equalizers": null, + "unequalized": null, + "equalizer's": null, + "unequalizes": null, + "equal": [["U", "S", "D", "Y"]], + "unequal": null, + "unequals": null, + "unequaled": null, + "unequally": null, + "equals": null, + "equaled": null, + "equally": null, + "equanimity": [["M", "S"]], + "equanimity's": null, + "equanimities": null, + "equate": [["N", "G", "X", "B", "S", "D"]], + "equation": [["M"]], + "equating": null, + "equations": null, + "equatable": null, + "equates": null, + "equated": null, + "equation's": null, + "equatorial": [["S"]], + "equatorials": null, + "equator": [["S", "M"]], + "equators": null, + "equator's": null, + "equerry": [["M", "S"]], + "equerry's": null, + "equerries": null, + "equestrianism": [["S", "M"]], + "equestrianisms": null, + "equestrianism's": null, + "equestrian": [["S"]], + "equestrians": null, + "equestrienne": [["S", "M"]], + "equestriennes": null, + "equestrienne's": null, + "equiangular": null, + "equidistant": [["Y"]], + "equidistantly": null, + "equilateral": [["S"]], + "equilaterals": null, + "equilibrate": [["G", "N", "S", "D"]], + "equilibrating": null, + "equilibration": [["M"]], + "equilibrates": null, + "equilibrated": null, + "equilibration's": null, + "equilibrium": [["M", "S", "E"]], + "equilibrium's": null, + "disequilibrium's": null, + "equilibriums": null, + "disequilibriums": null, + "disequilibrium": null, + "equine": [["S"]], + "equines": null, + "equinoctial": [["S"]], + "equinoctials": null, + "equinox": [["M", "S"]], + "equinox's": null, + "equinoxes": null, + "equipage": [["S", "M"]], + "equipages": null, + "equipage's": null, + "equipartition": [["M"]], + "equipartition's": null, + "equip": [["A", "S"]], + "reequip": null, + "reequips": null, + "equips": null, + "equipment": [["S", "M"]], + "equipments": null, + "equipment's": null, + "equipoise": [["G", "M", "S", "D"]], + "equipoising": null, + "equipoise's": null, + "equipoises": null, + "equipoised": null, + "equipotent": null, + "equipped": [["A", "U"]], + "reequipped": null, + "unequipped": null, + "equipping": [["A"]], + "reequipping": null, + "equiproportional": null, + "equiproportionality": null, + "equiproportionate": null, + "equitable": [["I"]], + "inequitable": null, + "equitableness": [["M"]], + "equitableness's": null, + "equitably": [["I"]], + "inequitably": null, + "equitation": [["S", "M"]], + "equitations": null, + "equitation's": null, + "equity": [["I", "M", "S"]], + "inequity": null, + "inequity's": null, + "inequities": null, + "equity's": null, + "equities": null, + "equiv": null, + "equivalence": [["D", "S", "M", "G"]], + "equivalenced": null, + "equivalences": null, + "equivalence's": null, + "equivalencing": null, + "equivalent": [["S", "Y"]], + "equivalents": null, + "equivalently": null, + "equivocalness": [["M", "S"]], + "equivocalness's": null, + "equivocalnesses": null, + "equivocal": [["U", "Y"]], + "unequivocal": null, + "unequivocally": null, + "equivocally": null, + "equivocate": [["N", "G", "S", "D", "X"]], + "equivocation": [["M"]], + "equivocating": null, + "equivocates": null, + "equivocated": null, + "equivocations": null, + "equivocation's": null, + "equivocator": [["S", "M"]], + "equivocators": null, + "equivocator's": null, + "Equuleus": [["M"]], + "Equuleus's": null, + "ER": null, + "ERA": null, + "eradicable": [["I"]], + "ineradicable": null, + "eradicate": [["S", "D", "X", "V", "G", "N"]], + "eradicates": null, + "eradicated": null, + "eradications": null, + "eradicative": null, + "eradicating": null, + "eradication": [["M"]], + "eradication's": null, + "eradicator": [["S", "M"]], + "eradicators": null, + "eradicator's": null, + "era": [["M", "S"]], + "era's": null, + "eras": [["S", "R", "D", "B", "G", "Z"]], + "Eran": [["M"]], + "Eran's": null, + "erase": [["N"]], + "erasion": [["M"]], + "eraser": [["M"]], + "eraser's": null, + "erasion's": null, + "Erasmus": [["M"]], + "Erasmus's": null, + "erases": null, + "erased": null, + "erasable": null, + "erasing": null, + "erasers": null, + "Erastus": [["M"]], + "Erastus's": null, + "erasure": [["M", "S"]], + "erasure's": null, + "erasures": null, + "Erato": [["M"]], + "Erato's": null, + "Eratosthenes": [["M"]], + "Eratosthenes's": null, + "erbium": [["S", "M"]], + "erbiums": null, + "erbium's": null, + "Erda": [["M"]], + "Erda's": null, + "ere": null, + "Erebus": [["M"]], + "Erebus's": null, + "erect": [["G", "P", "S", "R", "D", "Y"]], + "erecting": null, + "erectness": [["M", "S"]], + "erects": null, + "erecter": null, + "erected": null, + "erectly": null, + "erectile": null, + "erection": [["S", "M"]], + "erections": null, + "erection's": null, + "erectness's": null, + "erectnesses": null, + "erector": [["S", "M"]], + "erectors": null, + "erector's": null, + "Erek": [["M"]], + "Erek's": null, + "erelong": null, + "eremite": [["M", "S"]], + "eremite's": null, + "eremites": null, + "Erena": [["M"]], + "Erena's": null, + "ergo": null, + "ergodic": null, + "ergodicity": [["M"]], + "ergodicity's": null, + "ergonomically": null, + "ergonomics": [["M"]], + "ergonomics's": null, + "ergonomic": [["U"]], + "unergonomic": null, + "ergophobia": null, + "ergosterol": [["S", "M"]], + "ergosterols": null, + "ergosterol's": null, + "ergot": [["S", "M"]], + "ergots": null, + "ergot's": null, + "erg": [["S", "M"]], + "ergs": null, + "erg's": null, + "Erhard": [["M"]], + "Erhard's": null, + "Erhart": [["M"]], + "Erhart's": null, + "Erica": [["M"]], + "Erica's": null, + "Ericha": [["M"]], + "Ericha's": null, + "Erich": [["M"]], + "Erich's": null, + "Ericka": [["M"]], + "Ericka's": null, + "Erick": [["M"]], + "Erick's": null, + "Erickson": [["M"]], + "Erickson's": null, + "Eric": [["M"]], + "Eric's": null, + "Ericson's": null, + "Ericsson's": null, + "Eridanus": [["M"]], + "Eridanus's": null, + "Erie": [["S", "M"]], + "Eries": null, + "Erie's": null, + "Erika": [["M"]], + "Erika's": null, + "Erik": [["M"]], + "Erik's": null, + "Erikson": [["M"]], + "Erikson's": null, + "Erina": [["M"]], + "Erina's": null, + "Erin": [["M"]], + "Erin's": null, + "Erinna": [["M"]], + "Erinna's": null, + "Erinn": [["M"]], + "Erinn's": null, + "eris": null, + "Eris": null, + "Eritrea": [["M"]], + "Eritrea's": null, + "Erlang": [["M"]], + "Erlang's": null, + "Erlenmeyer": [["M"]], + "Erlenmeyer's": null, + "Erl": [["M"]], + "Erl's": null, + "Er": [["M"]], + "Er's": null, + "Erma": [["M"]], + "Erma's": null, + "Ermanno": [["M"]], + "Ermanno's": null, + "Ermengarde": [["M"]], + "Ermengarde's": null, + "Ermentrude": [["M"]], + "Ermentrude's": null, + "Ermina": [["M"]], + "Ermina's": null, + "ermine": [["M", "S", "D"]], + "ermine's": null, + "ermines": null, + "ermined": null, + "Erminia": [["M"]], + "Erminia's": null, + "Erminie": [["M"]], + "Erminie's": null, + "Ermin": [["M"]], + "Ermin's": null, + "Ernaline": [["M"]], + "Ernaline's": null, + "Erna": [["M"]], + "Erna's": null, + "Ernesta": [["M"]], + "Ernesta's": null, + "Ernestine": [["M"]], + "Ernestine's": null, + "Ernest": [["M"]], + "Ernest's": null, + "Ernesto": [["M"]], + "Ernesto's": null, + "Ernestus": [["M"]], + "Ernestus's": null, + "Ernie": [["M"]], + "Ernie's": null, + "Ernst": [["M"]], + "Ernst's": null, + "Erny": [["M"]], + "Erny's": null, + "erode": [["S", "D", "G"]], + "erodes": null, + "eroded": null, + "eroding": null, + "erodible": null, + "erogenous": null, + "erosible": null, + "erosional": null, + "erosion": [["S", "M"]], + "erosions": null, + "erosion's": null, + "erosiveness": [["M"]], + "erosiveness's": null, + "erosive": [["P"]], + "Eros": [["S", "M"]], + "Eroses": null, + "Eros's": null, + "erotically": null, + "erotica": [["M"]], + "erotica's": null, + "eroticism": [["M", "S"]], + "eroticism's": null, + "eroticisms": null, + "erotic": [["S"]], + "erotics": null, + "errancy": [["M", "S"]], + "errancy's": null, + "errancies": null, + "errand": [["M", "S"]], + "errand's": null, + "errands": null, + "errantry": [["M"]], + "errantry's": null, + "errant": [["Y", "S"]], + "errantly": null, + "errants": null, + "errata": [["S", "M"]], + "erratas": null, + "errata's": null, + "erratically": null, + "erratic": [["S"]], + "erratics": null, + "erratum": [["M", "S"]], + "erratum's": null, + "erratums": null, + "err": [["D", "G", "S"]], + "erred": null, + "erring": [["U", "Y"]], + "errs": null, + "Errick": [["M"]], + "Errick's": null, + "unerring": null, + "unerringly": null, + "erringly": null, + "Erroll": [["M"]], + "Erroll's": null, + "Errol": [["M"]], + "Errol's": null, + "erroneousness": [["M"]], + "erroneousness's": null, + "erroneous": [["Y", "P"]], + "erroneously": null, + "error": [["S", "M"]], + "errors": null, + "error's": null, + "ersatz": [["S"]], + "ersatzes": null, + "Erse": [["M"]], + "Erse's": null, + "Erskine": [["M"]], + "Erskine's": null, + "erst": null, + "erstwhile": null, + "Ertha": [["M"]], + "Ertha's": null, + "eructation": [["M", "S"]], + "eructation's": null, + "eructations": null, + "eruct": [["D", "G", "S"]], + "eructed": null, + "eructing": null, + "eructs": null, + "erudite": [["N", "Y", "X"]], + "erudition": [["M"]], + "eruditely": null, + "eruditions": null, + "erudition's": null, + "erupt": [["D", "S", "V", "G"]], + "erupted": null, + "erupts": null, + "eruptive": [["S", "Y"]], + "erupting": null, + "eruption": [["S", "M"]], + "eruptions": null, + "eruption's": null, + "eruptives": null, + "eruptively": null, + "Ervin": [["M"]], + "Ervin's": null, + "ErvIn": [["M"]], + "ErvIn's": null, + "Erv": [["M"]], + "Erv's": null, + "Erwin": [["M"]], + "Erwin's": null, + "Eryn": [["M"]], + "Eryn's": null, + "erysipelas": [["S", "M"]], + "erysipelases": null, + "erysipelas's": null, + "erythrocyte": [["S", "M"]], + "erythrocytes": null, + "erythrocyte's": null, + "Es": null, + "E's": null, + "Esau": [["M"]], + "Esau's": null, + "escadrille": [["M"]], + "escadrille's": null, + "escalate": [["C", "D", "S", "X", "G", "N"]], + "deescalate": null, + "deescalated": null, + "deescalates": null, + "deescalations": null, + "deescalating": null, + "deescalation": null, + "escalated": null, + "escalates": null, + "escalations": null, + "escalating": null, + "escalation": [["M", "C"]], + "escalation's": null, + "deescalation's": null, + "escalator": [["S", "M"]], + "escalators": null, + "escalator's": null, + "escallop": [["S", "G", "D", "M"]], + "escallops": null, + "escalloping": null, + "escalloped": null, + "escallop's": null, + "escapable": [["I"]], + "inescapable": null, + "escapade": [["S", "M"]], + "escapades": null, + "escapade's": null, + "escapee": [["M", "S"]], + "escapee's": null, + "escapees": null, + "escape": [["L", "G", "S", "R", "D", "B"]], + "escapement": [["M", "S"]], + "escaping": null, + "escapes": null, + "escaper": [["M"]], + "escaped": null, + "escapement's": null, + "escapements": null, + "escaper's": null, + "escapism": [["S", "M"]], + "escapisms": null, + "escapism's": null, + "escapist": [["S"]], + "escapists": null, + "escapology": null, + "escarole": [["M", "S"]], + "escarole's": null, + "escaroles": null, + "escarpment": [["M", "S"]], + "escarpment's": null, + "escarpments": null, + "eschatology": [["M"]], + "eschatology's": null, + "Escherichia": [["M"]], + "Escherichia's": null, + "Escher": [["M"]], + "Escher's": null, + "eschew": [["S", "G", "D"]], + "eschews": null, + "eschewing": null, + "eschewed": null, + "Escondido": [["M"]], + "Escondido's": null, + "escort": [["S", "G", "M", "D"]], + "escorts": null, + "escorting": null, + "escort's": null, + "escorted": null, + "escritoire": [["S", "M"]], + "escritoires": null, + "escritoire's": null, + "escrow": [["D", "M", "G", "S"]], + "escrowed": null, + "escrow's": null, + "escrowing": null, + "escrows": null, + "escudo": [["M", "S"]], + "escudo's": null, + "escudos": null, + "escutcheon": [["S", "M"]], + "escutcheons": null, + "escutcheon's": null, + "Esdras": [["M"]], + "Esdras's": null, + "ESE": null, + "Eskimo": [["S", "M"]], + "Eskimos": null, + "Eskimo's": null, + "ESL": null, + "Esma": [["M"]], + "Esma's": null, + "Esmaria": [["M"]], + "Esmaria's": null, + "Esmark": [["M"]], + "Esmark's": null, + "Esme": [["M"]], + "Esme's": null, + "Esmeralda": [["M"]], + "Esmeralda's": null, + "esophageal": null, + "esophagi": null, + "esophagus": [["M"]], + "esophagus's": null, + "esoteric": null, + "esoterica": null, + "esoterically": null, + "esp": null, + "ESP": null, + "espadrille": [["M", "S"]], + "espadrille's": null, + "espadrilles": null, + "Espagnol": [["M"]], + "Espagnol's": null, + "espalier": [["S", "M", "D", "G"]], + "espaliers": null, + "espalier's": null, + "espaliered": null, + "espaliering": null, + "especial": [["Y"]], + "especially": null, + "Esperanto": [["M"]], + "Esperanto's": null, + "Esperanza": [["M"]], + "Esperanza's": null, + "Espinoza": [["M"]], + "Espinoza's": null, + "espionage": [["S", "M"]], + "espionages": null, + "espionage's": null, + "esplanade": [["S", "M"]], + "esplanades": null, + "esplanade's": null, + "Esp": [["M"]], + "Esp's": null, + "Esposito": [["M"]], + "Esposito's": null, + "espousal": [["M", "S"]], + "espousal's": null, + "espousals": null, + "espouser": [["M"]], + "espouser's": null, + "espouse": [["S", "R", "D", "G"]], + "espouses": null, + "espoused": null, + "espousing": null, + "espresso": [["S", "M"]], + "espressos": null, + "espresso's": null, + "esprit": [["S", "M"]], + "esprits": null, + "esprit's": null, + "espy": [["G", "S", "D"]], + "espying": null, + "espies": null, + "espied": null, + "Esq": [["M"]], + "Esq's": null, + "esquire": [["G", "M", "S", "D"]], + "esquiring": null, + "esquire's": null, + "esquires": null, + "esquired": null, + "Esquire": [["S"]], + "Esquires": null, + "Esra": [["M"]], + "Esra's": null, + "Essa": [["M"]], + "Essa's": null, + "essayer": [["M"]], + "essayer's": null, + "essayist": [["S", "M"]], + "essayists": null, + "essayist's": null, + "essay": [["S", "Z", "M", "G", "R", "D"]], + "essays": null, + "essayers": null, + "essay's": null, + "essaying": null, + "essayed": null, + "essence": [["M", "S"]], + "essence's": null, + "essences": null, + "Essene": [["S", "M"]], + "Essenes": null, + "Essene's": null, + "Essen": [["M"]], + "Essen's": null, + "essentialist": [["M"]], + "essentialist's": null, + "essentially": null, + "essentialness": [["M"]], + "essentialness's": null, + "essential": [["U", "S", "I"]], + "unessential": null, + "unessentials": null, + "essentials": null, + "inessentials": null, + "inessential": null, + "Essequibo": [["M"]], + "Essequibo's": null, + "Essex": [["M"]], + "Essex's": null, + "Essie": [["M"]], + "Essie's": null, + "Essy": [["M"]], + "Essy's": null, + "EST": null, + "established": [["U"]], + "unestablished": null, + "establisher": [["M"]], + "establisher's": null, + "establish": [["L", "A", "E", "G", "S", "D"]], + "establishment": [["E", "M", "A", "S"]], + "reestablishment": null, + "disestablishment": null, + "reestablish": null, + "reestablishing": null, + "reestablishes": null, + "reestablished": null, + "disestablish": null, + "disestablishing": null, + "disestablishes": null, + "disestablished": null, + "establishing": null, + "establishes": null, + "disestablishment's": null, + "disestablishments": null, + "establishment's": null, + "reestablishment's": null, + "reestablishments": null, + "establishments": null, + "Establishment": [["M", "S"]], + "Establishment's": null, + "Establishments": null, + "Esta": [["M"]], + "Esta's": null, + "estate": [["G", "S", "D", "M"]], + "estating": null, + "estates": null, + "estated": null, + "estate's": null, + "Esteban": [["M"]], + "Esteban's": null, + "esteem": [["E", "G", "D", "S"]], + "disesteem": null, + "disesteeming": null, + "disesteemed": null, + "disesteems": null, + "esteeming": null, + "esteemed": null, + "esteems": null, + "Estela": [["M"]], + "Estela's": null, + "Estele": [["M"]], + "Estele's": null, + "Estella": [["M"]], + "Estella's": null, + "Estelle": [["M"]], + "Estelle's": null, + "Estell": [["M"]], + "Estell's": null, + "Estel": [["M"]], + "Estel's": null, + "Esterh�zy": [["M"]], + "Esterh�zy's": null, + "ester": [["M"]], + "ester's": null, + "Ester": [["M"]], + "Ester's": null, + "Estes": null, + "Estevan": [["M"]], + "Estevan's": null, + "Esther": [["M"]], + "Esther's": null, + "esthete's": null, + "esthetically": null, + "esthetic's": null, + "esthetics's": null, + "estimable": [["I"]], + "inestimable": null, + "estimableness": [["M"]], + "estimableness's": null, + "estimate": [["X", "D", "S", "N", "G", "V"]], + "estimations": null, + "estimated": null, + "estimates": null, + "estimation": [["M"]], + "estimating": [["A"]], + "estimative": null, + "reestimating": null, + "estimation's": null, + "estimator": [["S", "M"]], + "estimators": null, + "estimator's": null, + "Estonia": [["M"]], + "Estonia's": null, + "Estonian": [["S"]], + "Estonians": null, + "estoppal": null, + "Estrada": [["M"]], + "Estrada's": null, + "estrange": [["D", "R", "S", "L", "G"]], + "estranged": null, + "estranger": [["M"]], + "estranges": null, + "estrangement": [["S", "M"]], + "estranging": null, + "estrangements": null, + "estrangement's": null, + "estranger's": null, + "Estrella": [["M"]], + "Estrella's": null, + "Estrellita": [["M"]], + "Estrellita's": null, + "estrogen": [["S", "M"]], + "estrogens": null, + "estrogen's": null, + "estrous": null, + "estrus": [["S", "M"]], + "estruses": null, + "estrus's": null, + "est": [["R", "Z"]], + "esters": null, + "estuarine": null, + "estuary": [["S", "M"]], + "estuaries": null, + "estuary's": null, + "et": null, + "ET": null, + "ETA": null, + "Etan": [["M"]], + "Etan's": null, + "eta": [["S", "M"]], + "etas": null, + "eta's": null, + "etc": null, + "etcetera": [["S", "M"]], + "etceteras": null, + "etcetera's": null, + "etcher": [["M"]], + "etcher's": null, + "etch": [["G", "Z", "J", "S", "R", "D"]], + "etching": [["M"]], + "etchers": null, + "etchings": null, + "etches": null, + "etched": null, + "etching's": null, + "ETD": null, + "eternalness": [["S", "M"]], + "eternalnesses": null, + "eternalness's": null, + "eternal": [["P", "S", "Y"]], + "eternals": null, + "eternally": null, + "eternity": [["S", "M"]], + "eternities": null, + "eternity's": null, + "ethane": [["S", "M"]], + "ethanes": null, + "ethane's": null, + "Ethan": [["M"]], + "Ethan's": null, + "ethanol": [["M", "S"]], + "ethanol's": null, + "ethanols": null, + "Ethelbert": [["M"]], + "Ethelbert's": null, + "Ethelda": [["M"]], + "Ethelda's": null, + "Ethelind": [["M"]], + "Ethelind's": null, + "Etheline": [["M"]], + "Etheline's": null, + "Ethelin": [["M"]], + "Ethelin's": null, + "Ethel": [["M"]], + "Ethel's": null, + "Ethelred": [["M"]], + "Ethelred's": null, + "Ethelyn": [["M"]], + "Ethelyn's": null, + "Ethe": [["M"]], + "Ethe's": null, + "etherealness": [["M"]], + "etherealness's": null, + "ethereal": [["P", "Y"]], + "ethereally": null, + "etherized": null, + "Ethernet": [["M", "S"]], + "Ethernet's": null, + "Ethernets": null, + "ether": [["S", "M"]], + "ethers": null, + "ether's": null, + "ethically": [["U"]], + "unethically": null, + "ethicalness": [["M"]], + "ethicalness's": null, + "ethical": [["P", "Y", "S"]], + "ethicals": null, + "ethicist": [["S"]], + "ethicists": null, + "ethic": [["M", "S"]], + "ethic's": null, + "ethics": null, + "Ethiopia": [["M"]], + "Ethiopia's": null, + "Ethiopian": [["S"]], + "Ethiopians": null, + "ethnically": null, + "ethnicity": [["M", "S"]], + "ethnicity's": null, + "ethnicities": null, + "ethnic": [["S"]], + "ethnics": null, + "ethnocentric": null, + "ethnocentrism": [["M", "S"]], + "ethnocentrism's": null, + "ethnocentrisms": null, + "ethnographers": null, + "ethnographic": null, + "ethnography": [["M"]], + "ethnography's": null, + "ethnological": null, + "ethnologist": [["S", "M"]], + "ethnologists": null, + "ethnologist's": null, + "ethnology": [["S", "M"]], + "ethnologies": null, + "ethnology's": null, + "ethnomethodology": null, + "ethological": null, + "ethologist": [["M", "S"]], + "ethologist's": null, + "ethologists": null, + "ethology": [["S", "M"]], + "ethologies": null, + "ethology's": null, + "ethos": [["S", "M"]], + "ethoses": null, + "ethos's": null, + "ethylene": [["M", "S"]], + "ethylene's": null, + "ethylenes": null, + "Ethyl": [["M"]], + "Ethyl's": null, + "ethyl": [["S", "M"]], + "ethyls": null, + "ethyl's": null, + "Etienne": [["M"]], + "Etienne's": null, + "etiologic": null, + "etiological": null, + "etiology": [["S", "M"]], + "etiologies": null, + "etiology's": null, + "etiquette": [["S", "M"]], + "etiquettes": null, + "etiquette's": null, + "Etna": [["M"]], + "Etna's": null, + "Etruria": [["M"]], + "Etruria's": null, + "Etruscan": [["M", "S"]], + "Etruscan's": null, + "Etruscans": null, + "Etta": [["M"]], + "Etta's": null, + "Ettie": [["M"]], + "Ettie's": null, + "Etti": [["M"]], + "Etti's": null, + "Ettore": [["M"]], + "Ettore's": null, + "Etty": [["M"]], + "Etty's": null, + "�tude": [["M", "S"]], + "�tude's": null, + "�tudes": null, + "etymological": [["Y"]], + "etymologically": null, + "etymologist": [["S", "M"]], + "etymologists": null, + "etymologist's": null, + "etymology": [["M", "S"]], + "etymology's": null, + "etymologies": null, + "EU": null, + "eucalypti": null, + "eucalyptus": [["S", "M"]], + "eucalyptuses": null, + "eucalyptus's": null, + "Eucharistic": null, + "Eucharist": [["S", "M"]], + "Eucharists": null, + "Eucharist's": null, + "euchre": [["M", "G", "S", "D"]], + "euchre's": null, + "euchring": null, + "euchres": null, + "euchred": null, + "euclidean": null, + "Euclid": [["M"]], + "Euclid's": null, + "Eudora": [["M"]], + "Eudora's": null, + "Euell": [["M"]], + "Euell's": null, + "Eugene": [["M"]], + "Eugene's": null, + "Eugenia": [["M"]], + "Eugenia's": null, + "eugenically": null, + "eugenicist": [["S", "M"]], + "eugenicists": null, + "eugenicist's": null, + "eugenic": [["S"]], + "eugenics": [["M"]], + "eugenics's": null, + "Eugenie": [["M"]], + "Eugenie's": null, + "Eugenio": [["M"]], + "Eugenio's": null, + "Eugenius": [["M"]], + "Eugenius's": null, + "Eugen": [["M"]], + "Eugen's": null, + "Eugine": [["M"]], + "Eugine's": null, + "Eulalie": [["M"]], + "Eulalie's": null, + "Eula": [["M"]], + "Eula's": null, + "Eulerian": [["M"]], + "Eulerian's": null, + "Euler": [["M"]], + "Euler's": null, + "eulogistic": null, + "eulogist": [["M", "S"]], + "eulogist's": null, + "eulogists": null, + "eulogized": [["U"]], + "uneulogized": [["S", "M"]], + "eulogize": [["G", "R", "S", "D", "Z"]], + "eulogizing": null, + "eulogizer": [["M"]], + "eulogizes": null, + "eulogizers": null, + "eulogizer's": null, + "eulogy": [["M", "S"]], + "eulogy's": null, + "eulogies": null, + "Eu": [["M"]], + "Eu's": null, + "Eumenides": null, + "Eunice": [["M"]], + "Eunice's": null, + "eunuch": [["M"]], + "eunuch's": null, + "eunuchs": null, + "Euphemia": [["M"]], + "Euphemia's": null, + "euphemism": [["M", "S"]], + "euphemism's": null, + "euphemisms": null, + "euphemistic": null, + "euphemistically": null, + "euphemist": [["M"]], + "euphemist's": null, + "euphonious": [["Y"]], + "euphoniously": null, + "euphonium": [["M"]], + "euphonium's": null, + "euphony": [["S", "M"]], + "euphonies": null, + "euphony's": null, + "euphoria": [["S", "M"]], + "euphorias": null, + "euphoria's": null, + "euphoric": null, + "euphorically": null, + "Euphrates": [["M"]], + "Euphrates's": null, + "Eurasia": [["M"]], + "Eurasia's": null, + "Eurasian": [["S"]], + "Eurasians": null, + "eureka": [["S"]], + "eurekas": null, + "Euripides": [["M"]], + "Euripides's": null, + "Eur": [["M"]], + "Eur's": null, + "Eurodollar": [["S", "M"]], + "Eurodollars": null, + "Eurodollar's": null, + "Europa": [["M"]], + "Europa's": null, + "Europeanization": [["S", "M"]], + "Europeanizations": null, + "Europeanization's": null, + "Europeanized": null, + "European": [["M", "S"]], + "European's": null, + "Europeans": null, + "Europe": [["M"]], + "Europe's": null, + "europium": [["M", "S"]], + "europium's": null, + "europiums": null, + "Eurydice": [["M"]], + "Eurydice's": null, + "Eustace": [["M"]], + "Eustace's": null, + "Eustachian": [["M"]], + "Eustachian's": null, + "Eustacia": [["M"]], + "Eustacia's": null, + "eutectic": null, + "Euterpe": [["M"]], + "Euterpe's": null, + "euthanasia": [["S", "M"]], + "euthanasias": null, + "euthanasia's": null, + "euthenics": [["M"]], + "euthenics's": null, + "evacuate": [["D", "S", "X", "N", "G", "V"]], + "evacuated": null, + "evacuates": null, + "evacuations": null, + "evacuation": [["M"]], + "evacuating": null, + "evacuative": null, + "evacuation's": null, + "evacuee": [["M", "S"]], + "evacuee's": null, + "evacuees": null, + "evader": [["M"]], + "evader's": null, + "evade": [["S", "R", "D", "B", "G", "Z"]], + "evades": null, + "evaded": null, + "evadable": null, + "evading": null, + "evaders": null, + "Evaleen": [["M"]], + "Evaleen's": null, + "evaluable": null, + "evaluate": [["A", "D", "S", "G", "N", "X"]], + "reevaluate": null, + "reevaluated": null, + "reevaluates": null, + "reevaluating": null, + "reevaluation": null, + "reevaluations": null, + "evaluated": [["U"]], + "evaluates": null, + "evaluating": null, + "evaluation": [["M", "A"]], + "evaluations": null, + "unevaluated": null, + "evaluational": null, + "evaluation's": null, + "reevaluation's": null, + "evaluative": null, + "evaluator": [["M", "S"]], + "evaluator's": null, + "evaluators": null, + "Eva": [["M"]], + "Eva's": null, + "evanescence": [["M", "S"]], + "evanescence's": null, + "evanescences": null, + "evanescent": null, + "Evangelia": [["M"]], + "Evangelia's": null, + "evangelic": null, + "evangelicalism": [["S", "M"]], + "evangelicalisms": null, + "evangelicalism's": null, + "Evangelical": [["S"]], + "Evangelicals": null, + "evangelical": [["Y", "S"]], + "evangelically": null, + "evangelicals": null, + "Evangelina": [["M"]], + "Evangelina's": null, + "Evangeline": [["M"]], + "Evangeline's": null, + "Evangelin": [["M"]], + "Evangelin's": null, + "evangelism": [["S", "M"]], + "evangelisms": null, + "evangelism's": null, + "evangelistic": null, + "evangelist": [["M", "S"]], + "evangelist's": null, + "evangelists": null, + "Evangelist": [["M", "S"]], + "Evangelist's": null, + "Evangelists": null, + "evangelize": [["G", "D", "S"]], + "evangelizing": null, + "evangelized": null, + "evangelizes": null, + "Evania": [["M"]], + "Evania's": null, + "Evan": [["M", "S"]], + "Evan's": null, + "Evans": null, + "Evanne": [["M"]], + "Evanne's": null, + "Evanston": [["M"]], + "Evanston's": null, + "Evansville": [["M"]], + "Evansville's": null, + "evaporate": [["V", "N", "G", "S", "D", "X"]], + "evaporative": [["Y"]], + "evaporation": [["M"]], + "evaporating": null, + "evaporates": null, + "evaporated": null, + "evaporations": null, + "evaporation's": null, + "evaporatively": null, + "evaporator": [["M", "S"]], + "evaporator's": null, + "evaporators": null, + "evasion": [["S", "M"]], + "evasions": null, + "evasion's": null, + "evasiveness": [["S", "M"]], + "evasivenesses": null, + "evasiveness's": null, + "evasive": [["P", "Y"]], + "evasively": null, + "Eveleen": [["M"]], + "Eveleen's": null, + "Evelina": [["M"]], + "Evelina's": null, + "Eveline": [["M"]], + "Eveline's": null, + "Evelin": [["M"]], + "Evelin's": null, + "Evelyn": [["M"]], + "Evelyn's": null, + "Eve": [["M"]], + "Eve's": null, + "evened": null, + "evener": [["M"]], + "evener's": null, + "evenhanded": [["Y", "P"]], + "evenhandedly": null, + "evenhandedness": null, + "evening": [["S", "M"]], + "evenings": null, + "evening's": null, + "Evenki": [["M"]], + "Evenki's": null, + "Even": [["M"]], + "Even's": null, + "evenness": [["M", "S", "U"]], + "evenness's": null, + "unevenness's": null, + "evennesses": null, + "unevennesses": null, + "unevenness": null, + "even": [["P", "U", "Y", "R", "T"]], + "uneven": null, + "unevenly": null, + "unevener": null, + "evenly": null, + "evenest": null, + "evens": null, + "evensong": [["M", "S"]], + "evensong's": null, + "evensongs": null, + "eventfulness": [["S", "M"]], + "eventfulnesses": null, + "eventfulness's": null, + "eventful": [["Y", "U"]], + "eventfully": null, + "uneventfully": null, + "uneventful": null, + "eventide": [["S", "M"]], + "eventides": null, + "eventide's": null, + "event": [["S", "G", "M"]], + "events": null, + "eventing": null, + "event's": null, + "eventuality": [["M", "S"]], + "eventuality's": null, + "eventualities": null, + "eventual": [["Y"]], + "eventually": null, + "eventuate": [["G", "S", "D"]], + "eventuating": null, + "eventuates": null, + "eventuated": null, + "Everard": [["M"]], + "Everard's": null, + "Eveready": [["M"]], + "Eveready's": null, + "Evered": [["M"]], + "Evered's": null, + "Everest": [["M"]], + "Everest's": null, + "Everette": [["M"]], + "Everette's": null, + "Everett": [["M"]], + "Everett's": null, + "everglade": [["M", "S"]], + "everglade's": null, + "everglades": null, + "Everglades": null, + "evergreen": [["S"]], + "evergreens": null, + "Everhart": [["M"]], + "Everhart's": null, + "everlastingness": [["M"]], + "everlastingness's": null, + "everlasting": [["P", "Y", "S"]], + "everlastingly": null, + "everlastings": null, + "everliving": null, + "evermore": null, + "EverReady": [["M"]], + "EverReady's": null, + "eve": [["R", "S", "M"]], + "ever": [["T"]], + "eves": [["A"]], + "eve's": [["A"]], + "everest": null, + "every": null, + "everybody": [["M"]], + "everybody's": null, + "everydayness": [["M"]], + "everydayness's": null, + "everyday": [["P"]], + "everyman": null, + "everyone": [["M", "S"]], + "everyone's": null, + "everyones": null, + "everyplace": null, + "everything": null, + "everywhere": null, + "reeve's": null, + "reeves": null, + "Evey": [["M"]], + "Evey's": null, + "evict": [["D", "G", "S"]], + "evicted": null, + "evicting": null, + "evicts": null, + "eviction": [["S", "M"]], + "evictions": null, + "eviction's": null, + "evidence": [["M", "G", "S", "D"]], + "evidence's": null, + "evidencing": null, + "evidences": null, + "evidenced": null, + "evidential": [["Y"]], + "evidentially": null, + "evident": [["Y", "S"]], + "evidently": null, + "evidents": null, + "Evie": [["M"]], + "Evie's": null, + "evildoer": [["S", "M"]], + "evildoers": null, + "evildoer's": null, + "evildoing": [["M", "S"]], + "evildoing's": null, + "evildoings": null, + "evilness": [["M", "S"]], + "evilness's": null, + "evilnesses": null, + "evil": [["Y", "R", "P", "T", "S"]], + "evilly": null, + "eviler": null, + "evilest": null, + "evils": null, + "evince": [["S", "D", "G"]], + "evinces": null, + "evinced": null, + "evincing": null, + "Evin": [["M"]], + "Evin's": null, + "eviscerate": [["G", "N", "X", "D", "S"]], + "eviscerating": null, + "evisceration": [["M"]], + "eviscerations": null, + "eviscerated": null, + "eviscerates": null, + "evisceration's": null, + "Evita": [["M"]], + "Evita's": null, + "Ev": [["M", "N"]], + "Ev's": null, + "evocable": null, + "evocate": [["N", "V", "X"]], + "evocation": [["M"]], + "evocative": [["Y", "P"]], + "evocations": null, + "evocation's": null, + "evocativeness": [["M"]], + "evocativeness's": null, + "evocatively": null, + "evoke": [["S", "D", "G"]], + "evokes": null, + "evoked": null, + "evoking": null, + "evolute": [["N", "M", "X", "S"]], + "evolution": [["M"]], + "evolute's": null, + "evolutions": null, + "evolutes": null, + "evolutionarily": null, + "evolutionary": null, + "evolutionist": [["M", "S"]], + "evolutionist's": null, + "evolutionists": null, + "evolution's": null, + "evolve": [["S", "D", "G"]], + "evolves": null, + "evolved": null, + "evolving": null, + "Evonne": [["M"]], + "Evonne's": null, + "Evvie": [["M"]], + "Evvie's": null, + "Evvy": [["M"]], + "Evvy's": null, + "Evy": [["M"]], + "Evy's": null, + "Evyn": [["M"]], + "Evyn's": null, + "Ewan": [["M"]], + "Ewan's": null, + "Eward": [["M"]], + "Eward's": null, + "Ewart": [["M"]], + "Ewart's": null, + "Ewell": [["M"]], + "Ewell's": null, + "ewe": [["M", "Z", "R", "S"]], + "ewe's": null, + "ewers": null, + "ewer": [["M"]], + "ewes": null, + "Ewen": [["M"]], + "Ewen's": null, + "ewer's": null, + "Ewing": [["M"]], + "Ewing's": null, + "exacerbate": [["N", "G", "X", "D", "S"]], + "exacerbation": [["M"]], + "exacerbating": null, + "exacerbations": null, + "exacerbated": null, + "exacerbates": null, + "exacerbation's": null, + "exacter": [["M"]], + "exacter's": null, + "exactingness": [["M"]], + "exactingness's": null, + "exacting": [["Y", "P"]], + "exactingly": null, + "exaction": [["S", "M"]], + "exactions": null, + "exaction's": null, + "exactitude": [["I", "S", "M"]], + "inexactitude": null, + "inexactitudes": null, + "inexactitude's": null, + "exactitudes": null, + "exactitude's": null, + "exactly": [["I"]], + "inexactly": null, + "exactness": [["M", "S", "I"]], + "exactness's": null, + "inexactness's": null, + "exactnesses": null, + "inexactnesses": null, + "inexactness": null, + "exact": [["T", "G", "S", "P", "R", "D", "Y"]], + "exactest": null, + "exacts": null, + "exacted": null, + "exaggerate": [["D", "S", "X", "N", "G", "V"]], + "exaggerated": [["Y", "P"]], + "exaggerates": null, + "exaggerations": null, + "exaggeration": [["M"]], + "exaggerating": null, + "exaggerative": [["Y"]], + "exaggeratedly": null, + "exaggeratedness": null, + "exaggeration's": null, + "exaggeratively": null, + "exaggerator": [["M", "S"]], + "exaggerator's": null, + "exaggerators": null, + "exaltation": [["S", "M"]], + "exaltations": null, + "exaltation's": null, + "exalted": [["Y"]], + "exaltedly": null, + "exalter": [["M"]], + "exalter's": null, + "exalt": [["Z", "R", "D", "G", "S"]], + "exalters": null, + "exalting": null, + "exalts": null, + "examen": [["M"]], + "examen's": null, + "examination": [["A", "S"]], + "reexamination": null, + "reexaminations": null, + "examinations": null, + "examination's": null, + "examine": [["B", "G", "Z", "D", "R", "S"]], + "examinable": null, + "examining": [["A"]], + "examiners": null, + "examined": [["A", "U"]], + "examiner": [["M"]], + "examines": [["A"]], + "reexamined": null, + "unexamined": null, + "examinees": null, + "examiner's": null, + "reexamines": null, + "reexamining": null, + "exam": [["M", "N", "S"]], + "exam's": null, + "exams": null, + "example": [["D", "S", "G", "M"]], + "exampled": [["U"]], + "examples": null, + "exampling": null, + "example's": null, + "unexampled": null, + "exasperate": [["D", "S", "X", "G", "N"]], + "exasperated": [["Y"]], + "exasperates": null, + "exasperations": null, + "exasperating": [["Y"]], + "exasperation": [["M"]], + "exasperatedly": null, + "exasperatingly": null, + "exasperation's": null, + "Excalibur": [["M"]], + "Excalibur's": null, + "excavate": [["N", "G", "D", "S", "X"]], + "excavation": [["M"]], + "excavating": null, + "excavated": null, + "excavates": null, + "excavations": null, + "excavation's": null, + "excavator": [["S", "M"]], + "excavators": null, + "excavator's": null, + "Excedrin": [["M"]], + "Excedrin's": null, + "exceeder": [["M"]], + "exceeder's": null, + "exceeding": [["Y"]], + "exceedingly": null, + "exceed": [["S", "G", "D", "R"]], + "exceeds": null, + "exceeded": null, + "excelled": null, + "excellence": [["S", "M"]], + "excellences": null, + "excellence's": null, + "excellency": [["M", "S"]], + "excellency's": null, + "excellencies": null, + "Excellency": [["M", "S"]], + "Excellency's": null, + "Excellencies": null, + "excellent": [["Y"]], + "excellently": null, + "excelling": null, + "excel": [["S"]], + "excels": null, + "excelsior": [["S"]], + "excelsiors": null, + "except": [["D", "S", "G", "V"]], + "excepted": null, + "excepts": null, + "excepting": null, + "exceptive": null, + "exceptionable": [["U"]], + "unexceptionable": null, + "exceptionalness": [["M"]], + "exceptionalness's": null, + "exceptional": [["Y", "U"]], + "exceptionally": null, + "unexceptionally": null, + "unexceptional": null, + "exception": [["B", "M", "S"]], + "exception's": null, + "exceptions": null, + "excerpter": [["M"]], + "excerpter's": null, + "excerpt": [["G", "M", "D", "R", "S"]], + "excerpting": null, + "excerpt's": null, + "excerpted": null, + "excerpts": null, + "excess": [["G", "V", "D", "S", "M"]], + "excessing": null, + "excessive": [["P", "Y"]], + "excessed": null, + "excesses": null, + "excess's": null, + "excessiveness": [["M"]], + "excessiveness's": null, + "excessively": null, + "exchangeable": null, + "exchange": [["G", "D", "R", "S", "Z"]], + "exchanging": null, + "exchanged": null, + "exchanger": [["M"]], + "exchanges": null, + "exchangers": null, + "exchanger's": null, + "exchequer": [["S", "M"]], + "exchequers": null, + "exchequer's": null, + "Exchequer": [["S", "M"]], + "Exchequers": null, + "Exchequer's": null, + "excise": [["X", "M", "S", "D", "N", "G", "B"]], + "excisions": null, + "excise's": null, + "excises": null, + "excised": null, + "excision": [["M"]], + "excising": null, + "excisable": null, + "excision's": null, + "excitability": [["M", "S"]], + "excitability's": null, + "excitabilities": null, + "excitableness": [["M"]], + "excitableness's": null, + "excitable": [["P"]], + "excitably": null, + "excitation": [["S", "M"]], + "excitations": null, + "excitation's": null, + "excitatory": null, + "excited": [["Y"]], + "excitedly": null, + "excitement": [["M", "S"]], + "excitement's": null, + "excitements": null, + "exciter": [["M"]], + "exciter's": null, + "excite": [["R", "S", "D", "L", "B", "Z", "G"]], + "excites": null, + "exciters": null, + "exciting": [["U"]], + "excitingly": null, + "unexciting": null, + "exciton": [["M"]], + "exciton's": null, + "exclaimer": [["M"]], + "exclaimer's": null, + "exclaim": [["S", "Z", "D", "R", "G"]], + "exclaims": null, + "exclaimers": null, + "exclaimed": null, + "exclaiming": null, + "exclamation": [["M", "S"]], + "exclamation's": null, + "exclamations": null, + "exclamatory": null, + "exclude": [["D", "R", "S", "G"]], + "excluded": null, + "excluder": [["M"]], + "excludes": null, + "excluding": null, + "excluder's": null, + "exclusionary": null, + "exclusioner": [["M"]], + "exclusioner's": null, + "exclusion": [["S", "Z", "M", "R"]], + "exclusions": null, + "exclusioners": null, + "exclusion's": null, + "exclusiveness": [["S", "M"]], + "exclusivenesses": null, + "exclusiveness's": null, + "exclusive": [["S", "P", "Y"]], + "exclusives": null, + "exclusively": null, + "exclusivity": [["M", "S"]], + "exclusivity's": null, + "exclusivities": null, + "excommunicate": [["X", "V", "N", "G", "S", "D"]], + "excommunications": null, + "excommunicative": null, + "excommunication": [["M"]], + "excommunicating": null, + "excommunicates": null, + "excommunicated": null, + "excommunication's": null, + "excoriate": [["G", "N", "X", "S", "D"]], + "excoriating": null, + "excoriation": [["M"]], + "excoriations": null, + "excoriates": null, + "excoriated": null, + "excoriation's": null, + "excremental": null, + "excrement": [["S", "M"]], + "excrements": null, + "excrement's": null, + "excrescence": [["M", "S"]], + "excrescence's": null, + "excrescences": null, + "excrescent": null, + "excreta": null, + "excrete": [["N", "G", "D", "R", "S", "X"]], + "excretion": [["M"]], + "excreting": null, + "excreted": null, + "excreter": [["M"]], + "excretes": null, + "excretions": null, + "excreter's": null, + "excretion's": null, + "excretory": [["S"]], + "excretories": null, + "excruciate": [["N", "G", "D", "S"]], + "excruciation": [["M"]], + "excruciating": [["Y"]], + "excruciated": null, + "excruciates": null, + "excruciatingly": null, + "excruciation's": null, + "exculpate": [["X", "S", "D", "G", "N"]], + "exculpations": null, + "exculpates": null, + "exculpated": null, + "exculpating": null, + "exculpation": [["M"]], + "exculpation's": null, + "exculpatory": null, + "excursionist": [["S", "M"]], + "excursionists": null, + "excursionist's": null, + "excursion": [["M", "S"]], + "excursion's": null, + "excursions": null, + "excursiveness": [["S", "M"]], + "excursivenesses": null, + "excursiveness's": null, + "excursive": [["P", "Y"]], + "excursively": null, + "excursus": [["M", "S"]], + "excursus's": null, + "excursuses": null, + "excusable": [["I", "P"]], + "inexcusable": null, + "inexcusableness": null, + "excusableness": [["I", "M"]], + "inexcusableness's": null, + "excusableness's": null, + "excusably": [["I"]], + "inexcusably": null, + "excuse": [["B", "G", "R", "S", "D"]], + "excusing": null, + "excuser": [["M"]], + "excuses": null, + "excused": [["U"]], + "unexcused": null, + "excuser's": null, + "exec": [["M", "S"]], + "exec's": null, + "execs": null, + "execrableness": [["M"]], + "execrableness's": null, + "execrable": [["P"]], + "execrably": null, + "execrate": [["D", "S", "X", "N", "G", "V"]], + "execrated": null, + "execrates": null, + "execrations": null, + "execration": [["M"]], + "execrating": null, + "execrative": null, + "execration's": null, + "executable": [["M", "S"]], + "executable's": null, + "executables": null, + "execute": [["N", "G", "V", "Z", "B", "X", "D", "R", "S"]], + "execution": [["Z", "M", "R"]], + "executing": null, + "executive": [["S", "M"]], + "executers": null, + "executions": null, + "executed": null, + "executer": [["M"]], + "executes": null, + "executer's": null, + "executional": null, + "executioner": [["M"]], + "executioner's": null, + "executioners": null, + "execution's": null, + "executives": null, + "executive's": null, + "executor": [["S", "M"]], + "executors": null, + "executor's": null, + "executrices": null, + "executrix": [["M"]], + "executrix's": null, + "exegeses": null, + "exegesis": [["M"]], + "exegesis's": null, + "exegete": [["M"]], + "exegete's": null, + "exegetical": null, + "exegetic": [["S"]], + "exegetics": null, + "exemplariness": [["M"]], + "exemplariness's": null, + "exemplar": [["M", "S"]], + "exemplar's": null, + "exemplars": null, + "exemplary": [["P"]], + "exemplification": [["M"]], + "exemplification's": null, + "exemplifier": [["M"]], + "exemplifier's": null, + "exemplify": [["Z", "X", "N", "S", "R", "D", "G"]], + "exemplifiers": null, + "exemplifications": null, + "exemplifies": null, + "exemplified": null, + "exemplifying": null, + "exemption": [["M", "S"]], + "exemption's": null, + "exemptions": null, + "exempt": [["S", "D", "G"]], + "exempts": null, + "exempted": null, + "exempting": null, + "exerciser": [["M"]], + "exerciser's": null, + "exercise": [["Z", "D", "R", "S", "G", "B"]], + "exercisers": null, + "exercised": null, + "exercises": null, + "exercising": null, + "exercisable": null, + "exertion": [["M", "S"]], + "exertion's": null, + "exertions": null, + "exert": [["S", "G", "D"]], + "exerts": null, + "exerting": null, + "exerted": null, + "Exeter": [["M"]], + "Exeter's": null, + "exeunt": null, + "exhalation": [["S", "M"]], + "exhalations": null, + "exhalation's": null, + "exhale": [["G", "S", "D"]], + "exhaling": null, + "exhales": null, + "exhaled": null, + "exhausted": [["Y"]], + "exhaustedly": null, + "exhauster": [["M"]], + "exhauster's": null, + "exhaustible": [["I"]], + "inexhaustible": [["P"]], + "exhausting": [["Y"]], + "exhaustingly": null, + "exhaustion": [["S", "M"]], + "exhaustions": null, + "exhaustion's": null, + "exhaustiveness": [["M", "S"]], + "exhaustiveness's": null, + "exhaustivenesses": null, + "exhaustive": [["Y", "P"]], + "exhaustively": null, + "exhaust": [["V", "G", "R", "D", "S"]], + "exhausts": null, + "exhibitioner": [["M"]], + "exhibitioner's": null, + "exhibitionism": [["M", "S"]], + "exhibitionism's": null, + "exhibitionisms": null, + "exhibitionist": [["M", "S"]], + "exhibitionist's": null, + "exhibitionists": null, + "exhibition": [["Z", "M", "R", "S"]], + "exhibitioners": null, + "exhibition's": null, + "exhibitions": null, + "exhibitor": [["S", "M"]], + "exhibitors": null, + "exhibitor's": null, + "exhibit": [["V", "G", "S", "D"]], + "exhibitive": null, + "exhibiting": null, + "exhibits": null, + "exhibited": null, + "exhilarate": [["X", "S", "D", "V", "N", "G"]], + "exhilarations": null, + "exhilarates": null, + "exhilarated": null, + "exhilarative": null, + "exhilaration": [["M"]], + "exhilarating": [["Y"]], + "exhilaratingly": null, + "exhilaration's": null, + "exhortation": [["S", "M"]], + "exhortations": null, + "exhortation's": null, + "exhort": [["D", "R", "S", "G"]], + "exhorted": null, + "exhorter": [["M"]], + "exhorts": null, + "exhorting": null, + "exhorter's": null, + "exhumation": [["S", "M"]], + "exhumations": null, + "exhumation's": null, + "exhume": [["G", "R", "S", "D"]], + "exhuming": null, + "exhumer": [["M"]], + "exhumes": null, + "exhumed": null, + "exhumer's": null, + "exigence": [["S"]], + "exigences": null, + "exigency": [["S", "M"]], + "exigencies": null, + "exigency's": null, + "exigent": [["S", "Y"]], + "exigents": null, + "exigently": null, + "exiguity": [["S", "M"]], + "exiguities": null, + "exiguity's": null, + "exiguous": null, + "exile": [["S", "D", "G", "M"]], + "exiles": null, + "exiled": null, + "exiling": null, + "exile's": null, + "existence": [["M", "S"]], + "existence's": null, + "existences": null, + "existent": [["I"]], + "inexistent": null, + "existentialism": [["M", "S"]], + "existentialism's": null, + "existentialisms": null, + "existentialistic": null, + "existentialist": [["M", "S"]], + "existentialist's": null, + "existentialists": null, + "existential": [["Y"]], + "existentially": null, + "existents": null, + "exist": [["S", "D", "G"]], + "exists": null, + "existed": null, + "existing": null, + "exit": [["M", "D", "S", "G"]], + "exit's": null, + "exited": null, + "exits": null, + "exiting": null, + "exobiology": [["M", "S"]], + "exobiology's": null, + "exobiologies": null, + "exocrine": null, + "Exodus": [["M"]], + "Exodus's": null, + "exodus": [["S", "M"]], + "exoduses": null, + "exodus's": null, + "exogamous": null, + "exogamy": [["M"]], + "exogamy's": null, + "exogenous": [["Y"]], + "exogenously": null, + "exonerate": [["S", "D", "V", "G", "N", "X"]], + "exonerates": null, + "exonerated": null, + "exonerative": null, + "exonerating": null, + "exoneration": [["M"]], + "exonerations": null, + "exoneration's": null, + "exorbitance": [["M", "S"]], + "exorbitance's": null, + "exorbitances": null, + "exorbitant": [["Y"]], + "exorbitantly": null, + "exorcise": [["S", "D", "G"]], + "exorcises": null, + "exorcised": null, + "exorcising": null, + "exorcism": [["S", "M"]], + "exorcisms": null, + "exorcism's": null, + "exorcist": [["S", "M"]], + "exorcists": null, + "exorcist's": null, + "exorcizer": [["M"]], + "exorcizer's": null, + "exoskeleton": [["M", "S"]], + "exoskeleton's": null, + "exoskeletons": null, + "exosphere": [["S", "M"]], + "exospheres": null, + "exosphere's": null, + "exothermic": null, + "exothermically": null, + "exotica": null, + "exotically": null, + "exoticism": [["S", "M"]], + "exoticisms": null, + "exoticism's": null, + "exoticness": [["M"]], + "exoticness's": null, + "exotic": [["P", "S"]], + "exotics": null, + "exp": null, + "expandability": [["M"]], + "expandability's": null, + "expand": [["D", "R", "S", "G", "Z", "B"]], + "expanded": [["U"]], + "expander": [["M"]], + "expands": null, + "expanding": null, + "expanders": null, + "expandable": null, + "unexpanded": null, + "expander's": null, + "expanse": [["D", "S", "X", "G", "N", "V", "M"]], + "expansed": null, + "expanses": null, + "expansions": null, + "expansing": null, + "expansion": [["M"]], + "expansive": [["Y", "P"]], + "expanse's": null, + "expansible": null, + "expansionary": null, + "expansionism": [["M", "S"]], + "expansionism's": null, + "expansionisms": null, + "expansionist": [["M", "S"]], + "expansionist's": null, + "expansionists": null, + "expansion's": null, + "expansiveness": [["S"]], + "expansivenesses": null, + "expansively": null, + "expatiate": [["X", "S", "D", "N", "G"]], + "expatiations": null, + "expatiates": null, + "expatiated": null, + "expatiation": [["M"]], + "expatiating": null, + "expatiation's": null, + "expatriate": [["S", "D", "N", "G", "X"]], + "expatriates": null, + "expatriated": null, + "expatriation": [["M"]], + "expatriating": null, + "expatriations": null, + "expatriation's": null, + "expectancy": [["M", "S"]], + "expectancy's": null, + "expectancies": null, + "expectant": [["Y", "S"]], + "expectantly": null, + "expectants": null, + "expectational": null, + "expectation": [["M", "S"]], + "expectation's": null, + "expectations": null, + "expected": [["U", "P", "Y"]], + "unexpected": null, + "unexpectedness": [["M", "S"]], + "unexpectedly": null, + "expectedness": null, + "expectedly": null, + "expecting": [["Y"]], + "expectingly": null, + "expectorant": [["S"]], + "expectorants": null, + "expectorate": [["N", "G", "X", "D", "S"]], + "expectoration": [["M"]], + "expectorating": null, + "expectorations": null, + "expectorated": null, + "expectorates": null, + "expectoration's": null, + "expect": [["S", "B", "G", "D"]], + "expects": null, + "expectable": null, + "expedience": [["I", "S"]], + "inexpedience": [["M"]], + "inexpediences": null, + "expediences": null, + "expediency": [["I", "M", "S"]], + "inexpediency": null, + "inexpediency's": null, + "inexpediencies": null, + "expediency's": null, + "expediencies": null, + "expedients": null, + "expedient": [["Y", "I"]], + "expediently": null, + "inexpediently": null, + "inexpedient": null, + "expediter": [["M"]], + "expediter's": null, + "expedite": [["Z", "D", "R", "S", "N", "G", "X"]], + "expediters": null, + "expedited": null, + "expedites": null, + "expedition": [["M"]], + "expediting": null, + "expeditions": null, + "expeditionary": null, + "expedition's": null, + "expeditiousness": [["M", "S"]], + "expeditiousness's": null, + "expeditiousnesses": null, + "expeditious": [["Y", "P"]], + "expeditiously": null, + "expeditor's": null, + "expellable": null, + "expelled": null, + "expelling": null, + "expel": [["S"]], + "expels": null, + "expendable": [["S"]], + "expendables": null, + "expended": [["U"]], + "unexpended": null, + "expender": [["M"]], + "expender's": null, + "expenditure": [["S", "M"]], + "expenditures": null, + "expenditure's": null, + "expend": [["S", "D", "R", "G", "B"]], + "expends": null, + "expending": null, + "expense": [["D", "S", "G", "V", "M"]], + "expensed": null, + "expenses": null, + "expensing": null, + "expensive": [["I", "Y", "P"]], + "expense's": null, + "inexpensive": null, + "inexpensively": null, + "inexpensiveness": null, + "expensively": null, + "expensiveness": [["S", "M", "I"]], + "expensivenesses": null, + "inexpensivenesses": null, + "expensiveness's": null, + "inexpensiveness's": null, + "experienced": [["U"]], + "unexperienced": null, + "experience": [["I", "S", "D", "M"]], + "inexperience": null, + "inexperiences": null, + "inexperienced": null, + "inexperience's": null, + "experiences": null, + "experience's": null, + "experiencing": null, + "experiential": [["Y"]], + "experientially": null, + "experimentalism": [["M"]], + "experimentalism's": null, + "experimentalist": [["S", "M"]], + "experimentalists": null, + "experimentalist's": null, + "experimental": [["Y"]], + "experimentally": null, + "experimentation": [["S", "M"]], + "experimentations": null, + "experimentation's": null, + "experimenter": [["M"]], + "experimenter's": null, + "experiment": [["G", "S", "M", "D", "R", "Z"]], + "experimenting": null, + "experiments": null, + "experiment's": null, + "experimented": null, + "experimenters": null, + "experted": null, + "experting": null, + "expertise": [["S", "M"]], + "expertises": null, + "expertise's": null, + "expertize": [["G", "D"]], + "expertizing": null, + "expertized": null, + "expertnesses": null, + "expertness": [["I", "M"]], + "inexpertness": null, + "inexpertness's": null, + "expertness's": null, + "expert": [["P", "I", "S", "Y"]], + "inexpert": null, + "inexperts": null, + "inexpertly": null, + "experts": null, + "expertly": null, + "expert's": null, + "expiable": [["I"]], + "inexpiable": null, + "expiate": [["X", "G", "N", "D", "S"]], + "expiations": null, + "expiating": null, + "expiation": [["M"]], + "expiated": null, + "expiates": null, + "expiation's": null, + "expiatory": null, + "expiration": [["M", "S"]], + "expiration's": null, + "expirations": null, + "expired": [["U"]], + "unexpired": null, + "expire": [["S", "D", "G"]], + "expires": null, + "expiring": null, + "expiry": [["M", "S"]], + "expiry's": null, + "expiries": null, + "explainable": [["U", "I"]], + "unexplainable": null, + "inexplainable": null, + "explain": [["A", "D", "S", "G"]], + "reexplain": null, + "reexplained": null, + "reexplains": null, + "reexplaining": null, + "explained": [["U"]], + "explains": null, + "explaining": null, + "unexplained": null, + "explainer": [["S", "M"]], + "explainers": null, + "explainer's": null, + "explanation": [["M", "S"]], + "explanation's": null, + "explanations": null, + "explanatory": null, + "expletive": [["S", "M"]], + "expletives": null, + "expletive's": null, + "explicable": [["I"]], + "inexplicable": [["P"]], + "explicate": [["V", "G", "N", "S", "D", "X"]], + "explicative": [["Y"]], + "explicating": null, + "explication": [["M"]], + "explicates": null, + "explicated": null, + "explications": null, + "explication's": null, + "explicatively": null, + "explicitness": [["S", "M"]], + "explicitnesses": null, + "explicitness's": null, + "explicit": [["P", "S", "Y"]], + "explicits": null, + "explicitly": null, + "explode": [["D", "S", "R", "G", "Z"]], + "exploded": [["U"]], + "explodes": null, + "exploder": [["M"]], + "exploding": null, + "exploders": null, + "unexploded": null, + "exploder's": null, + "exploitation": [["M", "S"]], + "exploitation's": null, + "exploitations": null, + "exploitative": null, + "exploited": [["U"]], + "unexploited": null, + "exploiter": [["M"]], + "exploiter's": null, + "exploit": [["Z", "G", "V", "S", "M", "D", "R", "B"]], + "exploiters": null, + "exploiting": null, + "exploitive": null, + "exploits": null, + "exploit's": null, + "exploitable": null, + "exploration": [["M", "S"]], + "exploration's": null, + "explorations": null, + "exploratory": null, + "explore": [["D", "S", "R", "B", "G", "Z"]], + "explored": [["U"]], + "explores": null, + "explorer": [["M"]], + "explorable": null, + "exploring": null, + "explorers": null, + "unexplored": null, + "explorer's": null, + "explosion": [["M", "S"]], + "explosion's": null, + "explosions": null, + "explosiveness": [["S", "M"]], + "explosivenesses": null, + "explosiveness's": null, + "explosive": [["Y", "P", "S"]], + "explosively": null, + "explosives": null, + "expo": [["M", "S"]], + "expo's": null, + "expos": [["R", "S", "D", "Z", "G"]], + "exponential": [["S", "Y"]], + "exponentials": null, + "exponentially": null, + "exponentiate": [["X", "S", "D", "N", "G"]], + "exponentiations": null, + "exponentiates": null, + "exponentiated": null, + "exponentiation": [["M"]], + "exponentiating": null, + "exponentiation's": null, + "exponent": [["M", "S"]], + "exponent's": null, + "exponents": null, + "exportability": null, + "exportable": null, + "export": [["A", "G", "S", "D"]], + "reexport": null, + "reexporting": null, + "reexports": null, + "reexported": null, + "exporting": null, + "exports": null, + "exported": null, + "exportation": [["S", "M"]], + "exportations": null, + "exportation's": null, + "exporter": [["M", "S"]], + "exporter's": null, + "exporters": null, + "export's": null, + "expose": null, + "exposed": [["U"]], + "unexposed": null, + "exposer": [["M"]], + "exposer's": null, + "exposit": [["D"]], + "exposited": null, + "exposition": [["S", "M"]], + "expositions": null, + "exposition's": null, + "expositor": [["M", "S"]], + "expositor's": null, + "expositors": null, + "expository": null, + "exposes": null, + "exposers": null, + "exposing": null, + "expostulate": [["D", "S", "X", "N", "G"]], + "expostulated": null, + "expostulates": null, + "expostulations": null, + "expostulation": [["M"]], + "expostulating": null, + "expostulation's": null, + "exposure": [["S", "M"]], + "exposures": null, + "exposure's": null, + "expounder": [["M"]], + "expounder's": null, + "expound": [["Z", "G", "S", "D", "R"]], + "expounders": null, + "expounding": null, + "expounds": null, + "expounded": null, + "expressed": [["U"]], + "unexpressed": null, + "expresser": [["M"]], + "expresser's": null, + "express": [["G", "V", "D", "R", "S", "Y"]], + "expressing": null, + "expressive": [["I", "Y", "P"]], + "expresses": null, + "expressly": null, + "expressibility": [["I"]], + "inexpressibility": [["M"]], + "expressible": [["I"]], + "inexpressible": [["P", "S"]], + "expressibly": [["I"]], + "inexpressibly": null, + "expressionism": [["S", "M"]], + "expressionisms": null, + "expressionism's": null, + "expressionistic": null, + "expressionist": [["S"]], + "expressionists": null, + "expressionless": [["Y", "P"]], + "expressionlessly": null, + "expressionlessness": null, + "expression": [["M", "S"]], + "expression's": null, + "expressions": null, + "inexpressive": null, + "inexpressively": null, + "inexpressiveness": null, + "expressively": null, + "expressiveness": [["M", "S"]], + "expressiveness's": [["I"]], + "expressivenesses": null, + "inexpressiveness's": null, + "expressway": [["S", "M"]], + "expressways": null, + "expressway's": null, + "expropriate": [["X", "D", "S", "G", "N"]], + "expropriations": null, + "expropriated": null, + "expropriates": null, + "expropriating": null, + "expropriation": [["M"]], + "expropriation's": null, + "expropriator": [["S", "M"]], + "expropriators": null, + "expropriator's": null, + "expulsion": [["M", "S"]], + "expulsion's": null, + "expulsions": null, + "expunge": [["G", "D", "S", "R"]], + "expunging": null, + "expunged": null, + "expunges": null, + "expunger": [["M"]], + "expunger's": null, + "expurgated": [["U"]], + "unexpurgated": null, + "expurgate": [["S", "D", "G", "N", "X"]], + "expurgates": null, + "expurgating": null, + "expurgation": [["M"]], + "expurgations": null, + "expurgation's": null, + "exquisiteness": [["S", "M"]], + "exquisitenesses": null, + "exquisiteness's": null, + "exquisite": [["Y", "P", "S"]], + "exquisitely": null, + "exquisites": null, + "ex": [["S"]], + "exes": null, + "ext": null, + "extant": null, + "extemporaneousness": [["M", "S"]], + "extemporaneousness's": null, + "extemporaneousnesses": null, + "extemporaneous": [["Y", "P"]], + "extemporaneously": null, + "extempore": [["S"]], + "extempores": null, + "extemporization": [["S", "M"]], + "extemporizations": null, + "extemporization's": null, + "extemporizer": [["M"]], + "extemporizer's": null, + "extemporize": [["Z", "G", "S", "R", "D"]], + "extemporizers": null, + "extemporizing": null, + "extemporizes": null, + "extemporized": null, + "extendability": [["M"]], + "extendability's": null, + "extendedly": null, + "extendedness": [["M"]], + "extendedness's": null, + "extended": [["U"]], + "unextended": null, + "extender": [["M"]], + "extender's": null, + "extendibility": [["M"]], + "extendibility's": null, + "extendibles": null, + "extend": [["S", "G", "Z", "D", "R"]], + "extends": null, + "extending": null, + "extenders": null, + "extensibility": [["M"]], + "extensibility's": null, + "extensible": [["I"]], + "inextensible": null, + "extensional": [["Y"]], + "extensionally": null, + "extension": [["S", "M"]], + "extensions": null, + "extension's": null, + "extensiveness": [["S", "M"]], + "extensivenesses": null, + "extensiveness's": null, + "extensive": [["P", "Y"]], + "extensively": null, + "extensor": [["M", "S"]], + "extensor's": null, + "extensors": null, + "extent": [["S", "M"]], + "extents": null, + "extent's": null, + "extenuate": [["X", "S", "D", "G", "N"]], + "extenuations": null, + "extenuates": null, + "extenuated": null, + "extenuating": null, + "extenuation": [["M"]], + "extenuation's": null, + "exterior": [["M", "Y", "S"]], + "exterior's": null, + "exteriorly": null, + "exteriors": null, + "exterminate": [["X", "N", "G", "D", "S"]], + "exterminations": null, + "extermination": [["M"]], + "exterminating": null, + "exterminated": null, + "exterminates": null, + "extermination's": null, + "exterminator": [["S", "M"]], + "exterminators": null, + "exterminator's": null, + "externalities": null, + "externalization": [["S", "M"]], + "externalizations": null, + "externalization's": null, + "externalize": [["G", "D", "S"]], + "externalizing": null, + "externalized": null, + "externalizes": null, + "external": [["Y", "S"]], + "externally": null, + "externals": null, + "extern": [["M"]], + "extern's": null, + "extinct": [["D", "G", "V", "S"]], + "extincted": null, + "extincting": null, + "extinctive": null, + "extincts": null, + "extinction": [["M", "S"]], + "extinction's": null, + "extinctions": null, + "extinguishable": [["I"]], + "inextinguishable": null, + "extinguish": [["B", "Z", "G", "D", "R", "S"]], + "extinguishers": null, + "extinguishing": null, + "extinguished": null, + "extinguisher": [["M"]], + "extinguishes": null, + "extinguisher's": null, + "extirpate": [["X", "S", "D", "V", "N", "G"]], + "extirpations": null, + "extirpates": null, + "extirpated": null, + "extirpative": null, + "extirpation": [["M"]], + "extirpating": null, + "extirpation's": null, + "extolled": null, + "extoller": [["M"]], + "extoller's": null, + "extolling": null, + "extol": [["S"]], + "extols": null, + "extort": [["D", "R", "S", "G", "V"]], + "extorted": null, + "extorter": [["M"]], + "extorts": null, + "extorting": null, + "extortive": null, + "extorter's": null, + "extortionate": [["Y"]], + "extortionately": null, + "extortioner": [["M"]], + "extortioner's": null, + "extortionist": [["S", "M"]], + "extortionists": null, + "extortionist's": null, + "extortion": [["Z", "S", "R", "M"]], + "extortioners": null, + "extortions": null, + "extortion's": null, + "extracellular": [["Y"]], + "extracellularly": null, + "extract": [["G", "V", "S", "B", "D"]], + "extracting": null, + "extractive": [["Y"]], + "extracts": null, + "extractable": null, + "extracted": null, + "extraction": [["S", "M"]], + "extractions": null, + "extraction's": null, + "extractively": null, + "extractor": [["S", "M"]], + "extractors": null, + "extractor's": null, + "extracurricular": [["S"]], + "extracurriculars": null, + "extradite": [["X", "N", "G", "S", "D", "B"]], + "extraditions": null, + "extradition": [["M"]], + "extraditing": null, + "extradites": null, + "extradited": null, + "extraditable": null, + "extradition's": null, + "extragalactic": null, + "extralegal": [["Y"]], + "extralegally": null, + "extramarital": null, + "extramural": null, + "extraneousness": [["M"]], + "extraneousness's": null, + "extraneous": [["Y", "P"]], + "extraneously": null, + "extraordinarily": null, + "extraordinariness": [["M"]], + "extraordinariness's": null, + "extraordinary": [["P", "S"]], + "extraordinaries": null, + "extrapolate": [["X", "V", "G", "N", "S", "D"]], + "extrapolations": null, + "extrapolative": null, + "extrapolating": null, + "extrapolation": [["M"]], + "extrapolates": null, + "extrapolated": null, + "extrapolation's": null, + "extra": [["S"]], + "extras": null, + "extrasensory": null, + "extraterrestrial": [["S"]], + "extraterrestrials": null, + "extraterritorial": null, + "extraterritoriality": [["M", "S"]], + "extraterritoriality's": null, + "extraterritorialities": null, + "extravagance": [["M", "S"]], + "extravagance's": null, + "extravagances": null, + "extravagant": [["Y"]], + "extravagantly": null, + "extravaganza": [["S", "M"]], + "extravaganzas": null, + "extravaganza's": null, + "extravehicular": null, + "extravert's": null, + "extrema": null, + "extremal": null, + "extreme": [["D", "S", "R", "Y", "T", "P"]], + "extremed": null, + "extremes": null, + "extremer": null, + "extremely": null, + "extremest": null, + "extremeness": [["M", "S"]], + "extremeness's": null, + "extremenesses": null, + "extremism": [["S", "M"]], + "extremisms": null, + "extremism's": null, + "extremist": [["M", "S"]], + "extremist's": null, + "extremists": null, + "extremity": [["S", "M"]], + "extremities": null, + "extremity's": null, + "extricable": [["I"]], + "inextricable": null, + "extricate": [["X", "S", "D", "N", "G"]], + "extrications": null, + "extricates": null, + "extricated": null, + "extrication": [["M"]], + "extricating": null, + "extrication's": null, + "extrinsic": null, + "extrinsically": null, + "extroversion": [["S", "M"]], + "extroversions": null, + "extroversion's": null, + "extrovert": [["G", "M", "D", "S"]], + "extroverting": null, + "extrovert's": null, + "extroverted": null, + "extroverts": null, + "extrude": [["G", "D", "S", "R"]], + "extruding": null, + "extruded": null, + "extrudes": null, + "extruder": [["M"]], + "extruder's": null, + "extrusion": [["M", "S"]], + "extrusion's": null, + "extrusions": null, + "extrusive": null, + "exuberance": [["M", "S"]], + "exuberance's": null, + "exuberances": null, + "exuberant": [["Y"]], + "exuberantly": null, + "exudate": [["X", "N", "M"]], + "exudations": null, + "exudation": [["M"]], + "exudate's": null, + "exudation's": null, + "exude": [["G", "S", "D"]], + "exuding": null, + "exudes": null, + "exuded": null, + "exultant": [["Y"]], + "exultantly": null, + "exultation": [["S", "M"]], + "exultations": null, + "exultation's": null, + "exult": [["D", "G", "S"]], + "exulted": null, + "exulting": [["Y"]], + "exults": null, + "exultingly": null, + "exurban": null, + "exurbanite": [["S", "M"]], + "exurbanites": null, + "exurbanite's": null, + "exurbia": [["M", "S"]], + "exurbia's": null, + "exurbias": null, + "exurb": [["M", "S"]], + "exurb's": null, + "exurbs": null, + "Exxon": [["M"]], + "Exxon's": null, + "Eyck": [["M"]], + "Eyck's": null, + "Eyde": [["M"]], + "Eyde's": null, + "Eydie": [["M"]], + "Eydie's": null, + "eyeball": [["G", "S", "M", "D"]], + "eyeballing": null, + "eyeballs": null, + "eyeball's": null, + "eyeballed": null, + "eyebrow": [["M", "S"]], + "eyebrow's": null, + "eyebrows": null, + "eyed": [["P"]], + "eyedness": null, + "eyedropper": [["M", "S"]], + "eyedropper's": null, + "eyedroppers": null, + "eyeful": [["M", "S"]], + "eyeful's": null, + "eyefuls": null, + "eye": [["G", "D", "R", "S", "M", "Z"]], + "eying": null, + "eyer": [["M"]], + "eyes": null, + "eye's": null, + "eyers": null, + "eyeglass": [["M", "S"]], + "eyeglass's": null, + "eyeglasses": null, + "eyelash": [["M", "S"]], + "eyelash's": null, + "eyelashes": null, + "eyeless": null, + "eyelet": [["G", "S", "M", "D"]], + "eyeleting": null, + "eyelets": null, + "eyelet's": null, + "eyeleted": null, + "eyelid": [["S", "M"]], + "eyelids": null, + "eyelid's": null, + "eyeliner": [["M", "S"]], + "eyeliner's": null, + "eyeliners": null, + "eyeopener": [["M", "S"]], + "eyeopener's": null, + "eyeopeners": null, + "eyeopening": null, + "eyepiece": [["S", "M"]], + "eyepieces": null, + "eyepiece's": null, + "eyer's": null, + "eyeshadow": null, + "eyesight": [["M", "S"]], + "eyesight's": null, + "eyesights": null, + "eyesore": [["S", "M"]], + "eyesores": null, + "eyesore's": null, + "eyestrain": [["M", "S"]], + "eyestrain's": null, + "eyestrains": null, + "eyeteeth": null, + "eyetooth": [["M"]], + "eyetooth's": null, + "eyewash": [["M", "S"]], + "eyewash's": null, + "eyewashes": null, + "eyewitness": [["S", "M"]], + "eyewitnesses": null, + "eyewitness's": null, + "Eyre": [["M"]], + "Eyre's": null, + "eyrie's": null, + "Eysenck": [["M"]], + "Eysenck's": null, + "Ezechiel": [["M"]], + "Ezechiel's": null, + "Ezekiel": [["M"]], + "Ezekiel's": null, + "Ezequiel": [["M"]], + "Ezequiel's": null, + "Eziechiele": [["M"]], + "Eziechiele's": null, + "Ezmeralda": [["M"]], + "Ezmeralda's": null, + "Ezra": [["M"]], + "Ezra's": null, + "Ezri": [["M"]], + "Ezri's": null, + "F": null, + "FAA": null, + "Fabe": [["M", "R"]], + "Fabe's": null, + "Faber": [["M"]], + "Faberg�": [["M"]], + "Faberg�'s": null, + "Faber's": null, + "Fabiano": [["M"]], + "Fabiano's": null, + "Fabian": [["S"]], + "Fabians": null, + "Fabien": [["M"]], + "Fabien's": null, + "Fabio": [["M"]], + "Fabio's": null, + "fable": [["G", "M", "S", "R", "D"]], + "fabling": null, + "fable's": null, + "fables": null, + "fabler": [["M"]], + "fabled": null, + "fabler's": null, + "fabricate": [["S", "D", "X", "N", "G"]], + "fabricates": null, + "fabricated": null, + "fabrications": null, + "fabrication": [["M"]], + "fabricating": null, + "fabrication's": null, + "fabricator": [["M", "S"]], + "fabricator's": null, + "fabricators": null, + "fabric": [["M", "S"]], + "fabric's": null, + "fabrics": null, + "fabulists": null, + "fabulousness": [["M"]], + "fabulousness's": null, + "fabulous": [["Y", "P"]], + "fabulously": null, + "facade": [["G", "M", "S", "D"]], + "facading": null, + "facade's": null, + "facades": null, + "facaded": null, + "face": [["A", "G", "C", "S", "D"]], + "reface": null, + "refacing": null, + "refaces": null, + "refaced": null, + "facing": [["M", "S"]], + "defacing": null, + "defaces": null, + "defaced": null, + "faces": null, + "faced": null, + "facecloth": null, + "facecloths": null, + "faceless": [["P"]], + "facelessness": null, + "faceplate": [["M"]], + "faceplate's": null, + "facer": [["C", "M"]], + "defacer": null, + "defacer's": null, + "facer's": null, + "face's": null, + "facetiousness": [["M", "S"]], + "facetiousness's": null, + "facetiousnesses": null, + "facetious": [["Y", "P"]], + "facetiously": null, + "facet": [["S", "G", "M", "D"]], + "facets": null, + "faceting": null, + "facet's": null, + "faceted": null, + "facial": [["Y", "S"]], + "facially": null, + "facials": null, + "facileness": [["M"]], + "facileness's": null, + "facile": [["Y", "P"]], + "facilely": null, + "facilitate": [["V", "N", "G", "X", "S", "D"]], + "facilitative": null, + "facilitation": [["M"]], + "facilitating": null, + "facilitations": null, + "facilitates": null, + "facilitated": null, + "facilitation's": null, + "facilitator": [["S", "M"]], + "facilitators": null, + "facilitator's": null, + "facilitatory": null, + "facility": [["M", "S"]], + "facility's": null, + "facilities": null, + "facing's": null, + "facings": null, + "facsimileing": null, + "facsimile": [["M", "S", "D"]], + "facsimile's": null, + "facsimiles": null, + "facsimiled": null, + "factional": null, + "factionalism": [["S", "M"]], + "factionalisms": null, + "factionalism's": null, + "faction": [["S", "M"]], + "factions": null, + "faction's": null, + "factiousness": [["M"]], + "factiousness's": null, + "factious": [["P", "Y"]], + "factiously": null, + "factitious": null, + "fact": [["M", "S"]], + "fact's": null, + "facts": null, + "facto": null, + "factoid": [["S"]], + "factoids": null, + "factorial": [["M", "S"]], + "factorial's": null, + "factorials": null, + "factoring": [["A"]], + "refactoring": null, + "factoring's": null, + "factorisable": null, + "factorization": [["S", "M"]], + "factorizations": null, + "factorization's": null, + "factorize": [["G", "S", "D"]], + "factorizing": null, + "factorizes": null, + "factorized": null, + "factor": [["S", "D", "M", "J", "G"]], + "factors": null, + "factored": null, + "factor's": null, + "factorings": null, + "factory": [["M", "S"]], + "factory's": null, + "factories": null, + "factotum": [["M", "S"]], + "factotum's": null, + "factotums": null, + "factuality": [["M"]], + "factuality's": null, + "factualness": [["M"]], + "factualness's": null, + "factual": [["P", "Y"]], + "factually": null, + "faculty": [["M", "S"]], + "faculty's": null, + "faculties": null, + "faddish": null, + "faddist": [["S", "M"]], + "faddists": null, + "faddist's": null, + "fadedly": null, + "faded": [["U"]], + "unfaded": null, + "fadeout": null, + "fader": [["M"]], + "fader's": null, + "fade": [["S"]], + "fades": null, + "fading's": null, + "fading": [["U"]], + "unfading": [["Y"]], + "fad": [["Z", "G", "S", "M", "D", "R"]], + "faders": null, + "fads": null, + "fad's": null, + "Fae": [["M"]], + "Fae's": null, + "faerie": [["M", "S"]], + "faerie's": null, + "faeries": null, + "Faeroe": [["M"]], + "Faeroe's": null, + "faery's": null, + "Fafnir": [["M"]], + "Fafnir's": null, + "fagged": null, + "fagging": null, + "faggoting's": null, + "Fagin": [["M"]], + "Fagin's": null, + "fag": [["M", "S"]], + "fag's": null, + "fags": null, + "fagoting": [["M"]], + "fagoting's": null, + "fagot": [["M", "D", "S", "J", "G"]], + "fagot's": null, + "fagoted": null, + "fagots": null, + "fagotings": null, + "Fahd": [["M"]], + "Fahd's": null, + "Fahrenheit": [["S"]], + "Fahrenheits": null, + "fa�ence": [["S"]], + "fa�ences": null, + "failing's": null, + "failing": [["U", "Y"]], + "unfailing": [["P"]], + "unfailingly": null, + "failingly": null, + "fail": [["J", "S", "G", "D"]], + "failings": null, + "fails": null, + "failed": null, + "faille": [["M", "S"]], + "faille's": null, + "failles": null, + "failsafe": null, + "failure": [["S", "M"]], + "failures": null, + "failure's": null, + "Faina": [["M"]], + "Faina's": null, + "fain": [["G", "T", "S", "R", "D"]], + "faining": null, + "fainest": null, + "fains": null, + "fainer": null, + "fained": null, + "fainter": [["M"]], + "fainter's": null, + "fainthearted": null, + "faintness": [["M", "S"]], + "faintness's": null, + "faintnesses": null, + "faint": [["Y", "R", "D", "S", "G", "P", "T"]], + "faintly": null, + "fainted": null, + "faints": null, + "fainting": null, + "faintest": null, + "Fairbanks": null, + "Fairchild": [["M"]], + "Fairchild's": null, + "faired": null, + "Fairfax": [["M"]], + "Fairfax's": null, + "Fairfield": [["M"]], + "Fairfield's": null, + "fairgoer": [["S"]], + "fairgoers": null, + "fairground": [["M", "S"]], + "fairground's": null, + "fairgrounds": null, + "fairing": [["M", "S"]], + "fairing's": null, + "fairings": null, + "fairish": null, + "Fairleigh": [["M"]], + "Fairleigh's": null, + "fairless": null, + "Fairlie": [["M"]], + "Fairlie's": null, + "Fair": [["M"]], + "Fair's": null, + "Fairmont": [["M"]], + "Fairmont's": null, + "fairness's": null, + "fairness": [["U", "S"]], + "unfairness": null, + "unfairnesses": null, + "fairnesses": null, + "Fairport": [["M"]], + "Fairport's": null, + "fairs": null, + "fair": [["T", "U", "R", "Y", "P"]], + "fairest": null, + "unfair": null, + "unfairer": null, + "unfairly": null, + "fairer": null, + "fairly": null, + "Fairview": [["M"]], + "Fairview's": null, + "fairway": [["M", "S"]], + "fairway's": null, + "fairways": null, + "fairyland": [["M", "S"]], + "fairyland's": null, + "fairylands": null, + "fairy": [["M", "S"]], + "fairy's": null, + "fairies": null, + "fairytale": null, + "Faisalabad": null, + "Faisal": [["M"]], + "Faisal's": null, + "faithed": null, + "faithfulness": [["M", "S", "U"]], + "faithfulness's": null, + "unfaithfulness's": null, + "faithfulnesses": null, + "unfaithfulnesses": null, + "unfaithfulness": null, + "faithfuls": null, + "faithful": [["U", "Y", "P"]], + "unfaithful": null, + "unfaithfully": null, + "faithfully": null, + "faithing": null, + "faithlessness": [["S", "M"]], + "faithlessnesses": null, + "faithlessness's": null, + "faithless": [["Y", "P"]], + "faithlessly": null, + "Faith": [["M"]], + "Faith's": null, + "faiths": null, + "faith's": null, + "faith": [["U"]], + "unfaith": null, + "fajitas": null, + "faker": [["M"]], + "faker's": null, + "fake": [["Z", "G", "D", "R", "S"]], + "fakers": null, + "faking": null, + "faked": null, + "fakes": null, + "fakir": [["S", "M"]], + "fakirs": null, + "fakir's": null, + "falafel": null, + "falconer": [["M"]], + "falconer's": null, + "falconry": [["M", "S"]], + "falconry's": null, + "falconries": null, + "falcon": [["Z", "S", "R", "M"]], + "falconers": null, + "falcons": null, + "falcon's": null, + "Falito": [["M"]], + "Falito's": null, + "Falkland": [["M", "S"]], + "Falkland's": null, + "Falklands": null, + "Falk": [["M"]], + "Falk's": null, + "Falkner": [["M"]], + "Falkner's": null, + "fallaciousness": [["M"]], + "fallaciousness's": null, + "fallacious": [["P", "Y"]], + "fallaciously": null, + "fallacy": [["M", "S"]], + "fallacy's": null, + "fallacies": null, + "faller": [["M"]], + "faller's": null, + "fallibility": [["M", "S", "I"]], + "fallibility's": null, + "infallibility's": null, + "fallibilities": null, + "infallibilities": null, + "infallibility": null, + "fallible": [["I"]], + "infallible": null, + "fallibleness": [["M", "S"]], + "fallibleness's": null, + "falliblenesses": null, + "fallibly": [["I"]], + "infallibly": null, + "falloff": [["S"]], + "falloffs": null, + "Fallon": [["M"]], + "Fallon's": null, + "fallopian": null, + "Fallopian": [["M"]], + "Fallopian's": null, + "fallout": [["M", "S"]], + "fallout's": null, + "fallouts": null, + "fallowness": [["M"]], + "fallowness's": null, + "fallow": [["P", "S", "G", "D"]], + "fallows": null, + "fallowing": null, + "fallowed": null, + "fall": [["S", "G", "Z", "M", "R", "N"]], + "falls": null, + "falling": null, + "fallers": null, + "fall's": null, + "fallen": null, + "falsehood": [["S", "M"]], + "falsehoods": null, + "falsehood's": null, + "falseness": [["S", "M"]], + "falsenesses": null, + "falseness's": null, + "false": [["P", "T", "Y", "R"]], + "falsest": null, + "falsely": null, + "falser": null, + "falsetto": [["S", "M"]], + "falsettos": null, + "falsetto's": null, + "falsie": [["M", "S"]], + "falsie's": null, + "falsies": null, + "falsifiability": [["M"]], + "falsifiability's": null, + "falsifiable": [["U"]], + "unfalsifiable": null, + "falsification": [["M"]], + "falsification's": null, + "falsifier": [["M"]], + "falsifier's": null, + "falsify": [["Z", "R", "S", "D", "N", "X", "G"]], + "falsifiers": null, + "falsifies": null, + "falsified": null, + "falsifications": null, + "falsifying": null, + "falsity": [["M", "S"]], + "falsity's": null, + "falsities": null, + "Falstaff": [["M"]], + "Falstaff's": null, + "falterer": [["M"]], + "falterer's": null, + "faltering": [["U", "Y"]], + "unfaltering": null, + "unfalteringly": null, + "falteringly": null, + "falter": [["R", "D", "S", "G", "J"]], + "faltered": null, + "falters": null, + "falterings": null, + "Falwell": [["M"]], + "Falwell's": null, + "fa": [["M"]], + "fa's": null, + "famed": [["C"]], + "defamed": null, + "fame": [["D", "S", "M", "G"]], + "fames": [["C"]], + "fame's": null, + "faming": [["C"]], + "defames": null, + "familial": null, + "familiarity": [["M", "U", "S"]], + "familiarity's": null, + "unfamiliarity's": null, + "unfamiliarity": null, + "unfamiliarities": null, + "familiarities": null, + "familiarization": [["M", "S"]], + "familiarization's": null, + "familiarizations": null, + "familiarized": [["U"]], + "unfamiliarized": null, + "familiarizer": [["M"]], + "familiarizer's": null, + "familiarize": [["Z", "G", "R", "S", "D"]], + "familiarizers": null, + "familiarizing": [["Y"]], + "familiarizes": null, + "familiarizingly": null, + "familiarly": [["U"]], + "unfamiliarly": null, + "familiarness": [["M"]], + "familiarness's": null, + "familiar": [["Y", "P", "S"]], + "familiars": null, + "family": [["M", "S"]], + "family's": null, + "families": null, + "famine": [["S", "M"]], + "famines": null, + "famine's": null, + "defaming": null, + "famish": [["G", "S", "D"]], + "famishing": null, + "famishes": null, + "famished": null, + "famously": [["I"]], + "infamously": null, + "famousness": [["M"]], + "famousness's": null, + "famous": [["P", "Y"]], + "fanaticalness": [["M"]], + "fanaticalness's": null, + "fanatical": [["Y", "P"]], + "fanatically": null, + "fanaticism": [["M", "S"]], + "fanaticism's": null, + "fanaticisms": null, + "fanatic": [["S", "M"]], + "fanatics": null, + "fanatic's": null, + "Fanchette": [["M"]], + "Fanchette's": null, + "Fanchon": [["M"]], + "Fanchon's": null, + "fancied": null, + "Fancie": [["M"]], + "Fancie's": null, + "fancier": [["S", "M"]], + "fanciers": null, + "fancier's": null, + "fanciest": null, + "fancifulness": [["M", "S"]], + "fancifulness's": null, + "fancifulnesses": null, + "fanciful": [["Y", "P"]], + "fancifully": null, + "fancily": null, + "fanciness": [["S", "M"]], + "fancinesses": null, + "fanciness's": null, + "fancying": null, + "fancy": [["I", "S"]], + "infancy": [["M"]], + "infancies": null, + "fancies": null, + "Fancy": [["M"]], + "Fancy's": null, + "fancywork": [["S", "M"]], + "fancyworks": null, + "fancywork's": null, + "fandango": [["S", "M"]], + "fandangos": null, + "fandango's": null, + "Fanechka": [["M"]], + "Fanechka's": null, + "fanfare": [["S", "M"]], + "fanfares": null, + "fanfare's": null, + "fanfold": [["M"]], + "fanfold's": null, + "fang": [["D", "M", "S"]], + "fanged": null, + "fang's": null, + "fangs": null, + "fangled": null, + "Fania": [["M"]], + "Fania's": null, + "fanlight": [["S", "M"]], + "fanlights": null, + "fanlight's": null, + "Fan": [["M"]], + "Fan's": null, + "fanned": null, + "Fannie": [["M"]], + "Fannie's": null, + "Fanni": [["M"]], + "Fanni's": null, + "fanning": null, + "fanny": [["S", "M"]], + "fannies": null, + "fanny's": null, + "Fanny": [["S", "M"]], + "Fannies": null, + "Fanny's": null, + "fanout": null, + "fan": [["S", "M"]], + "fans": null, + "fan's": null, + "fantail": [["S", "M"]], + "fantails": null, + "fantail's": null, + "fantasia": [["S", "M"]], + "fantasias": null, + "fantasia's": null, + "fantasist": [["M"]], + "fantasist's": null, + "fantasize": [["S", "R", "D", "G"]], + "fantasizes": null, + "fantasizer": null, + "fantasized": null, + "fantasizing": null, + "fantastical": [["Y"]], + "fantastically": null, + "fantastic": [["S"]], + "fantastics": null, + "fantasy": [["G", "M", "S", "D"]], + "fantasying": null, + "fantasy's": null, + "fantasies": null, + "fantasied": null, + "Fanya": [["M"]], + "Fanya's": null, + "fanzine": [["S"]], + "fanzines": null, + "FAQ": [["S", "M"]], + "FAQs": null, + "FAQ's": null, + "Faraday": [["M"]], + "Faraday's": null, + "farad": [["S", "M"]], + "farads": null, + "farad's": null, + "Farah": [["M"]], + "Farah's": null, + "Fara": [["M"]], + "Fara's": null, + "Farand": [["M"]], + "Farand's": null, + "faraway": null, + "Farber": [["M"]], + "Farber's": null, + "farce": [["S", "D", "G", "M"]], + "farces": null, + "farced": null, + "farcing": null, + "farce's": null, + "farcical": [["Y"]], + "farcically": null, + "fare": [["M", "S"]], + "fare's": null, + "fares": null, + "farer": [["M"]], + "farer's": null, + "farewell": [["D", "G", "M", "S"]], + "farewelled": null, + "farewelling": null, + "farewell's": null, + "farewells": null, + "farfetchedness": [["M"]], + "farfetchedness's": null, + "far": [["G", "D", "R"]], + "faring": null, + "fared": null, + "Fargo": [["M"]], + "Fargo's": null, + "Farica": [["M"]], + "Farica's": null, + "farinaceous": null, + "farina": [["M", "S"]], + "farina's": null, + "farinas": null, + "Farkas": [["M"]], + "Farkas's": null, + "Farlay": [["M"]], + "Farlay's": null, + "Farlee": [["M"]], + "Farlee's": null, + "Farleigh": [["M"]], + "Farleigh's": null, + "Farley": [["M"]], + "Farley's": null, + "Farlie": [["M"]], + "Farlie's": null, + "Farly": [["M"]], + "Farly's": null, + "farmer": [["M"]], + "farmer's": null, + "Farmer": [["M"]], + "Farmer's": null, + "farmhand": [["S"]], + "farmhands": null, + "farmhouse": [["S", "M"]], + "farmhouses": null, + "farmhouse's": null, + "farming": [["M"]], + "farming's": null, + "Farmington": [["M"]], + "Farmington's": null, + "farmland": [["S", "M"]], + "farmlands": null, + "farmland's": null, + "farm": [["M", "R", "D", "G", "Z", "S", "J"]], + "farm's": null, + "farmed": null, + "farmers": null, + "farms": null, + "farmings": null, + "farmstead": [["S", "M"]], + "farmsteads": null, + "farmstead's": null, + "farmworker": [["S"]], + "farmworkers": null, + "Far": [["M", "Y"]], + "Far's": null, + "farmyard": [["M", "S"]], + "farmyard's": null, + "farmyards": null, + "faro": [["M", "S"]], + "faro's": null, + "faros": null, + "farragoes": null, + "farrago": [["M"]], + "farrago's": null, + "Farragut": [["M"]], + "Farragut's": null, + "Farrah": [["M"]], + "Farrah's": null, + "Farrakhan": [["M"]], + "Farrakhan's": null, + "Farra": [["M"]], + "Farra's": null, + "Farrand": [["M"]], + "Farrand's": null, + "Farrell": [["M"]], + "Farrell's": null, + "Farrel": [["M"]], + "Farrel's": null, + "farrier": [["S", "M"]], + "farriers": null, + "farrier's": null, + "Farris": [["M"]], + "Farris's": null, + "Farr": [["M"]], + "Farr's": null, + "farrow": [["D", "M", "G", "S"]], + "farrowed": null, + "farrow's": null, + "farrowing": null, + "farrows": null, + "farseeing": null, + "farsightedness": [["S", "M"]], + "farsightednesses": null, + "farsightedness's": null, + "farsighted": [["Y", "P"]], + "farsightedly": null, + "farther": null, + "farthermost": null, + "farthest": null, + "farthing": [["S", "M"]], + "farthings": null, + "farthing's": null, + "fart": [["M", "D", "G", "S", "!"]], + "fart's": null, + "farted": null, + "farting": null, + "farts": null, + "fas": null, + "fascia": [["S", "M"]], + "fascias": null, + "fascia's": null, + "fascicle": [["D", "S", "M"]], + "fascicled": null, + "fascicles": null, + "fascicle's": null, + "fasciculate": [["D", "N", "X"]], + "fasciculated": null, + "fasciculation": [["M"]], + "fasciculations": null, + "fasciculation's": null, + "fascinate": [["S", "D", "N", "G", "X"]], + "fascinates": null, + "fascinated": null, + "fascination": [["M"]], + "fascinating": [["Y"]], + "fascinations": null, + "fascinatingly": null, + "fascination's": null, + "fascism": [["M", "S"]], + "fascism's": null, + "fascisms": null, + "Fascism's": null, + "fascistic": null, + "Fascist's": null, + "fascist": [["S", "M"]], + "fascists": null, + "fascist's": null, + "fashionableness": [["M"]], + "fashionableness's": null, + "fashionable": [["P", "S"]], + "fashionables": null, + "fashionably": [["U"]], + "unfashionably": null, + "fashion": [["A", "D", "S", "G"]], + "refashion": null, + "refashioned": null, + "refashions": null, + "refashioning": null, + "fashioned": null, + "fashions": null, + "fashioning": null, + "fashioner": [["S", "M"]], + "fashioners": null, + "fashioner's": null, + "fashion's": null, + "Fassbinder": [["M"]], + "Fassbinder's": null, + "fastback": [["M", "S"]], + "fastback's": null, + "fastbacks": null, + "fastball": [["S"]], + "fastballs": null, + "fasten": [["A", "G", "U", "D", "S"]], + "refasten": null, + "refastening": null, + "refastened": null, + "refastens": null, + "fastening": [["S", "M"]], + "unfastening": null, + "unfasten": null, + "unfastened": null, + "unfastens": null, + "fastened": null, + "fastens": null, + "fastener": [["M", "S"]], + "fastener's": null, + "fasteners": null, + "fastenings": null, + "fastening's": null, + "fast": [["G", "T", "X", "S", "P", "R", "N", "D"]], + "fasting": null, + "fastest": null, + "fasts": null, + "fastness": [["M", "S"]], + "faster": null, + "fasted": null, + "fastidiousness": [["M", "S"]], + "fastidiousness's": null, + "fastidiousnesses": null, + "fastidious": [["P", "Y"]], + "fastidiously": null, + "fastness's": null, + "fastnesses": null, + "fatalism": [["M", "S"]], + "fatalism's": null, + "fatalisms": null, + "fatalistic": null, + "fatalistically": null, + "fatalist": [["M", "S"]], + "fatalist's": null, + "fatalists": null, + "fatality": [["M", "S"]], + "fatality's": null, + "fatalities": null, + "fatal": [["S", "Y"]], + "fatals": null, + "fatally": null, + "fatback": [["S", "M"]], + "fatbacks": null, + "fatback's": null, + "fatefulness": [["M", "S"]], + "fatefulness's": null, + "fatefulnesses": null, + "fateful": [["Y", "P"]], + "fatefully": null, + "fate": [["M", "S"]], + "fate's": null, + "fates": null, + "Fates": null, + "fatheaded": [["P"]], + "fatheadedness": null, + "fathead": [["S", "M", "D"]], + "fatheads": null, + "fathead's": null, + "father": [["D", "Y", "M", "G", "S"]], + "fathered": [["U"]], + "fatherly": [["P"]], + "father's": null, + "fathering": null, + "fathers": null, + "unfathered": null, + "fatherhood": [["M", "S"]], + "fatherhood's": null, + "fatherhoods": null, + "fatherland": [["S", "M"]], + "fatherlands": null, + "fatherland's": null, + "fatherless": null, + "fatherliness": [["M"]], + "fatherliness's": null, + "Father": [["S", "M"]], + "Fathers": null, + "Father's": null, + "fathomable": [["U"]], + "unfathomable": null, + "fathomless": null, + "fathom": [["M", "D", "S", "B", "G"]], + "fathom's": null, + "fathomed": null, + "fathoms": null, + "fathoming": null, + "fatigued": [["U"]], + "unfatigued": null, + "fatigue": [["M", "G", "S", "D"]], + "fatigue's": null, + "fatiguing": [["Y"]], + "fatigues": null, + "fatiguingly": null, + "Fatima": [["M"]], + "Fatima's": null, + "fatness": [["S", "M"]], + "fatnesses": null, + "fatness's": null, + "fat": [["P", "S", "G", "M", "D", "Y"]], + "fats": null, + "fating": null, + "fat's": null, + "fated": null, + "fatly": null, + "fatso": [["M"]], + "fatso's": null, + "fatted": null, + "fattener": [["M"]], + "fattener's": null, + "fatten": [["J", "Z", "G", "S", "R", "D"]], + "fattenings": null, + "fatteners": null, + "fattening": null, + "fattens": null, + "fattened": null, + "fatter": null, + "fattest": [["M"]], + "fattest's": null, + "fattiness": [["S", "M"]], + "fattinesses": null, + "fattiness's": null, + "fatting": null, + "fatty": [["R", "S", "P", "T"]], + "fattier": null, + "fatties": null, + "fattiest": null, + "fatuity": [["M", "S"]], + "fatuity's": null, + "fatuities": null, + "fatuousness": [["S", "M"]], + "fatuousnesses": null, + "fatuousness's": null, + "fatuous": [["Y", "P"]], + "fatuously": null, + "fatwa": [["S", "M"]], + "fatwas": null, + "fatwa's": null, + "faucet": [["S", "M"]], + "faucets": null, + "faucet's": null, + "Faulknerian": null, + "Faulkner": [["M"]], + "Faulkner's": null, + "fault": [["C", "G", "S", "M", "D"]], + "defaulting": null, + "defaults": null, + "default's": null, + "defaulted": null, + "faulting": null, + "faults": null, + "fault's": null, + "faulted": null, + "faultfinder": [["M", "S"]], + "faultfinder's": null, + "faultfinders": null, + "faultfinding": [["M", "S"]], + "faultfinding's": null, + "faultfindings": null, + "faultily": null, + "faultiness": [["M", "S"]], + "faultiness's": null, + "faultinesses": null, + "faultlessness": [["S", "M"]], + "faultlessnesses": null, + "faultlessness's": null, + "faultless": [["P", "Y"]], + "faultlessly": null, + "faulty": [["R", "T", "P"]], + "faultier": null, + "faultiest": null, + "fauna": [["M", "S"]], + "fauna's": null, + "faunas": null, + "Faunie": [["M"]], + "Faunie's": null, + "Faun": [["M"]], + "Faun's": null, + "faun": [["M", "S"]], + "faun's": null, + "fauns": null, + "Fauntleroy": [["M"]], + "Fauntleroy's": null, + "Faustian": null, + "Faustina": [["M"]], + "Faustina's": null, + "Faustine": [["M"]], + "Faustine's": null, + "Faustino": [["M"]], + "Faustino's": null, + "Faust": [["M"]], + "Faust's": null, + "Faustus": [["M"]], + "Faustus's": null, + "fauvism": [["S"]], + "fauvisms": null, + "favorableness": [["M", "U"]], + "favorableness's": null, + "unfavorableness's": null, + "unfavorableness": null, + "favorable": [["U", "M", "P", "S"]], + "unfavorable": null, + "unfavorable's": null, + "unfavorables": null, + "favorable's": null, + "favorables": null, + "favorably": [["U"]], + "unfavorably": null, + "favoredness": [["M"]], + "favoredness's": null, + "favored's": [["U"]], + "unfavored's": null, + "favored": [["Y", "P", "S", "M"]], + "favoredly": null, + "favoreds": null, + "favorer": [["E", "M"]], + "disfavorer": null, + "disfavorer's": null, + "favorer's": null, + "favor": [["E", "S", "M", "R", "D", "G", "Z"]], + "disfavor": null, + "disfavors": null, + "disfavor's": null, + "disfavored": null, + "disfavoring": null, + "disfavorers": null, + "favors": [["A"]], + "favor's": null, + "favoring": [["M", "Y", "S"]], + "favorers": null, + "favoring's": null, + "favoringly": null, + "favorings": [["U"]], + "unfavorings": null, + "favorite": [["S", "M", "U"]], + "favorites": null, + "unfavorites": null, + "favorite's": null, + "unfavorite's": null, + "unfavorite": null, + "favoritism": [["M", "S"]], + "favoritism's": null, + "favoritisms": null, + "refavors": null, + "Fawkes": [["M"]], + "Fawkes's": null, + "Fawne": [["M"]], + "Fawne's": null, + "fawner": [["M"]], + "fawner's": null, + "fawn": [["G", "Z", "R", "D", "M", "S"]], + "fawning": [["Y"]], + "fawners": null, + "fawned": null, + "fawn's": null, + "fawns": null, + "Fawnia": [["M"]], + "Fawnia's": null, + "fawningly": null, + "Fawn": [["M"]], + "Fawn's": null, + "fax": [["G", "M", "D", "S"]], + "faxing": null, + "fax's": null, + "faxed": null, + "faxes": null, + "Fax": [["M"]], + "Fax's": null, + "Faydra": [["M"]], + "Faydra's": null, + "Faye": [["M"]], + "Faye's": null, + "Fayette": [["M"]], + "Fayette's": null, + "Fayetteville": [["M"]], + "Fayetteville's": null, + "Fayina": [["M"]], + "Fayina's": null, + "Fay": [["M"]], + "Fay's": null, + "fay": [["M", "D", "R", "G", "S"]], + "fay's": null, + "fayed": null, + "fayer": null, + "faying": null, + "fays": null, + "Fayre": [["M"]], + "Fayre's": null, + "Faythe": [["M"]], + "Faythe's": null, + "Fayth": [["M"]], + "Fayth's": null, + "faze": [["D", "S", "G"]], + "fazed": null, + "fazes": null, + "fazing": null, + "FBI": null, + "FCC": null, + "FD": null, + "FDA": null, + "FDIC": null, + "FDR": [["M"]], + "FDR's": null, + "fealty": [["M", "S"]], + "fealty's": null, + "fealties": null, + "fearfuller": null, + "fearfullest": null, + "fearfulness": [["M", "S"]], + "fearfulness's": null, + "fearfulnesses": null, + "fearful": [["Y", "P"]], + "fearfully": null, + "fearlessness": [["M", "S"]], + "fearlessness's": null, + "fearlessnesses": null, + "fearless": [["P", "Y"]], + "fearlessly": null, + "fear": [["R", "D", "M", "S", "G"]], + "fearer": null, + "feared": null, + "fear's": null, + "fears": null, + "fearing": null, + "fearsomeness": [["M"]], + "fearsomeness's": null, + "fearsome": [["P", "Y"]], + "fearsomely": null, + "feasibility": [["S", "M"]], + "feasibilities": null, + "feasibility's": null, + "feasibleness": [["M"]], + "feasibleness's": null, + "feasible": [["U", "I"]], + "unfeasible": null, + "infeasible": null, + "feasibly": [["U"]], + "unfeasibly": null, + "feaster": [["M"]], + "feaster's": null, + "feast": [["G", "S", "M", "R", "D"]], + "feasting": null, + "feasts": null, + "feast's": null, + "feasted": null, + "feater": [["C"]], + "featherbed": null, + "featherbedding": [["S", "M"]], + "featherbeddings": null, + "featherbedding's": null, + "featherbrain": [["M", "D"]], + "featherbrain's": null, + "featherbrained": null, + "feathered": [["U"]], + "unfeathered": null, + "feathering": [["M"]], + "feathering's": null, + "featherless": null, + "featherlight": null, + "Featherman": [["M"]], + "Featherman's": null, + "feathertop": null, + "featherweight": [["S", "M"]], + "featherweights": null, + "featherweight's": null, + "feathery": [["T", "R"]], + "featheriest": null, + "featherier": null, + "feather": [["Z", "M", "D", "R", "G", "S"]], + "featherers": null, + "feather's": null, + "featherer": null, + "feathers": null, + "feat": [["M", "Y", "R", "G", "T", "S"]], + "feat's": null, + "featly": null, + "feating": null, + "featest": null, + "feats": [["C"]], + "defeats": null, + "featureless": null, + "feature": [["M", "G", "S", "D"]], + "feature's": null, + "featuring": null, + "features": null, + "featured": null, + "Feb": [["M"]], + "Feb's": null, + "febrile": null, + "February": [["M", "S"]], + "February's": null, + "Februaries": null, + "fecal": null, + "feces": null, + "fecklessness": [["M"]], + "fecklessness's": null, + "feckless": [["P", "Y"]], + "fecklessly": null, + "fecundability": null, + "fecundate": [["X", "S", "D", "G", "N"]], + "fecundations": null, + "fecundates": null, + "fecundated": null, + "fecundating": null, + "fecundation": [["M"]], + "fecundation's": null, + "fecund": [["I"]], + "infecund": null, + "fecundity": [["S", "M"]], + "fecundities": null, + "fecundity's": null, + "federalism": [["S", "M"]], + "federalisms": null, + "federalism's": null, + "Federalist": null, + "federalist": [["M", "S"]], + "federalist's": null, + "federalists": null, + "federalization": [["M", "S"]], + "federalization's": null, + "federalizations": null, + "federalize": [["G", "S", "D"]], + "federalizing": null, + "federalizes": null, + "federalized": null, + "Federal": [["S"]], + "Federals": null, + "federal": [["Y", "S"]], + "federally": null, + "federals": null, + "federated": [["U"]], + "unfederated": null, + "federate": [["F", "S", "D", "X", "V", "N", "G"]], + "confederates": null, + "confederated": null, + "confederations": null, + "confederation": null, + "confederating": null, + "federates": null, + "federations": null, + "federative": [["Y"]], + "federation": [["F", "M"]], + "federating": null, + "confederation's": null, + "federation's": null, + "federatively": null, + "Federica": [["M"]], + "Federica's": null, + "Federico": [["M"]], + "Federico's": null, + "FedEx": [["M"]], + "FedEx's": null, + "Fedora": [["M"]], + "Fedora's": null, + "fedora": [["S", "M"]], + "fedoras": null, + "fedora's": null, + "feds": null, + "Fed": [["S", "M"]], + "Feds": null, + "Fed's": null, + "fed": [["U"]], + "unfed": null, + "feebleness": [["S", "M"]], + "feeblenesses": null, + "feebleness's": null, + "feeble": [["T", "P", "R"]], + "feeblest": null, + "feebler": null, + "feebly": null, + "feedback": [["S", "M"]], + "feedbacks": null, + "feedback's": null, + "feedbag": [["M", "S"]], + "feedbag's": null, + "feedbags": null, + "feeder": [["M"]], + "feeder's": null, + "feed": [["G", "R", "Z", "J", "S"]], + "feeding": [["M"]], + "feeders": null, + "feedings": null, + "feeds": null, + "feeding's": null, + "feedlot": [["S", "M"]], + "feedlots": null, + "feedlot's": null, + "feedstock": null, + "feedstuffs": null, + "feeing": null, + "feeler": [["M"]], + "feeler's": null, + "feel": [["G", "Z", "J", "R", "S"]], + "feeling": [["M", "Y", "P"]], + "feelers": null, + "feelings": null, + "feels": null, + "feelingly": [["U"]], + "unfeelingly": null, + "feeling's": null, + "feelingness": [["M"]], + "feelingness's": null, + "Fee": [["M"]], + "Fee's": null, + "fee": [["M", "D", "S"]], + "fee's": null, + "fees": null, + "feet": [["M"]], + "feet's": null, + "feigned": [["U"]], + "unfeigned": [["Y"]], + "feigner": [["M"]], + "feigner's": null, + "feign": [["R", "D", "G", "S"]], + "feigning": null, + "feigns": null, + "feint": [["M", "D", "S", "G"]], + "feint's": null, + "feinted": null, + "feints": null, + "feinting": null, + "feisty": [["R", "T"]], + "feistier": null, + "feistiest": null, + "Felder": [["M"]], + "Felder's": null, + "Feldman": [["M"]], + "Feldman's": null, + "feldspar": [["M", "S"]], + "feldspar's": null, + "feldspars": null, + "Felecia": [["M"]], + "Felecia's": null, + "Felicdad": [["M"]], + "Felicdad's": null, + "Felice": [["M"]], + "Felice's": null, + "Felicia": [["M"]], + "Felicia's": null, + "Felicio": [["M"]], + "Felicio's": null, + "felicitate": [["X", "G", "N", "S", "D"]], + "felicitations": null, + "felicitating": null, + "felicitation": [["M"]], + "felicitates": null, + "felicitated": null, + "felicitation's": null, + "felicitous": [["I", "Y"]], + "infelicitous": null, + "infelicitously": null, + "felicitously": null, + "felicitousness": [["M"]], + "felicitousness's": null, + "felicity": [["I", "M", "S"]], + "infelicity": null, + "infelicity's": null, + "infelicities": null, + "felicity's": null, + "felicities": null, + "Felicity": [["M"]], + "Felicity's": null, + "Felicle": [["M"]], + "Felicle's": null, + "Felic": [["M"]], + "Felic's": null, + "Felike": [["M"]], + "Felike's": null, + "Feliks": [["M"]], + "Feliks's": null, + "feline": [["S", "Y"]], + "felines": null, + "felinely": null, + "Felipa": [["M"]], + "Felipa's": null, + "Felipe": [["M"]], + "Felipe's": null, + "Felisha": [["M"]], + "Felisha's": null, + "Felita": [["M"]], + "Felita's": null, + "Felix": [["M"]], + "Felix's": null, + "Feliza": [["M"]], + "Feliza's": null, + "Felizio": [["M"]], + "Felizio's": null, + "fella": [["S"]], + "fellas": null, + "fellatio": [["S", "M"]], + "fellatios": null, + "fellatio's": null, + "felled": [["A"]], + "refelled": null, + "feller": [["M"]], + "feller's": null, + "felling": [["A"]], + "refelling": null, + "Fellini": [["M"]], + "Fellini's": null, + "fellness": [["M"]], + "fellness's": null, + "fellowman": null, + "fellowmen": null, + "fellow": [["S", "G", "D", "Y", "M"]], + "fellows": null, + "fellowing": null, + "fellowed": null, + "fellowly": null, + "fellow's": null, + "fellowshipped": null, + "fellowshipping": null, + "fellowship": [["S", "M"]], + "fellowships": null, + "fellowship's": null, + "fell": [["P", "S", "G", "Z", "T", "R", "D"]], + "fells": null, + "fellers": null, + "fellest": null, + "feloniousness": [["M"]], + "feloniousness's": null, + "felonious": [["P", "Y"]], + "feloniously": null, + "felon": [["M", "S"]], + "felon's": null, + "felons": null, + "felony": [["M", "S"]], + "felony's": null, + "felonies": null, + "felt": [["G", "S", "D"]], + "felting": [["M"]], + "felts": null, + "felted": null, + "felting's": null, + "Fe": [["M"]], + "Fe's": null, + "female": [["M", "P", "S"]], + "female's": null, + "femaleness": [["S", "M"]], + "females": null, + "femalenesses": null, + "femaleness's": null, + "feminineness": [["M"]], + "feminineness's": null, + "feminine": [["P", "Y", "S"]], + "femininely": null, + "feminines": null, + "femininity": [["M", "S"]], + "femininity's": null, + "femininities": null, + "feminism": [["M", "S"]], + "feminism's": null, + "feminisms": null, + "feminist": [["M", "S"]], + "feminist's": null, + "feminists": null, + "femme": [["M", "S"]], + "femme's": null, + "femmes": null, + "femoral": null, + "fem": [["S"]], + "fems": null, + "femur": [["M", "S"]], + "femur's": null, + "femurs": null, + "fenced": [["U"]], + "unfenced": null, + "fencepost": [["M"]], + "fencepost's": null, + "fencer": [["M"]], + "fencer's": null, + "fence": [["S", "R", "D", "J", "G", "M", "Z"]], + "fences": null, + "fencings": null, + "fencing": [["M"]], + "fence's": null, + "fencers": null, + "fencing's": null, + "fender": [["C", "M"]], + "defender": null, + "defender's": null, + "fender's": null, + "fend": [["R", "D", "S", "C", "Z", "G"]], + "fended": null, + "fends": null, + "defends": null, + "defend": null, + "defenders": null, + "defending": null, + "fenders": null, + "fending": null, + "Fenelia": [["M"]], + "Fenelia's": null, + "fenestration": [["C", "S", "M"]], + "defenestration": null, + "defenestrations": null, + "defenestration's": null, + "fenestrations": null, + "fenestration's": null, + "Fenian": [["M"]], + "Fenian's": null, + "fenland": [["M"]], + "fenland's": null, + "fen": [["M", "S"]], + "fen's": null, + "fens": null, + "fennel": [["S", "M"]], + "fennels": null, + "fennel's": null, + "Fenwick": [["M"]], + "Fenwick's": null, + "Feodora": [["M"]], + "Feodora's": null, + "Feodor": [["M"]], + "Feodor's": null, + "feral": null, + "Ferber": [["M"]], + "Ferber's": null, + "Ferdie": [["M"]], + "Ferdie's": null, + "Ferdinanda": [["M"]], + "Ferdinanda's": null, + "Ferdinande": [["M"]], + "Ferdinande's": null, + "Ferdinand": [["M"]], + "Ferdinand's": null, + "Ferdinando": [["M"]], + "Ferdinando's": null, + "Ferd": [["M"]], + "Ferd's": null, + "Ferdy": [["M"]], + "Ferdy's": null, + "fer": [["F", "L", "C"]], + "conferment": null, + "ferment": [["F", "S", "C", "M"]], + "deferment": null, + "defer": null, + "Fergus": [["M"]], + "Fergus's": null, + "Ferguson": [["M"]], + "Ferguson's": null, + "Ferlinghetti": [["M"]], + "Ferlinghetti's": null, + "Fermat": [["M"]], + "Fermat's": null, + "fermentation": [["M", "S"]], + "fermentation's": null, + "fermentations": null, + "fermented": null, + "fermenter": null, + "conferments": null, + "conferment's": null, + "ferments": null, + "deferments": null, + "deferment's": null, + "ferment's": null, + "fermenting": null, + "Fermi": [["M"]], + "Fermi's": null, + "fermion": [["M", "S"]], + "fermion's": null, + "fermions": null, + "fermium": [["M", "S"]], + "fermium's": null, + "fermiums": null, + "Fernanda": [["M"]], + "Fernanda's": null, + "Fernande": [["M"]], + "Fernande's": null, + "Fernandez": [["M"]], + "Fernandez's": null, + "Fernandina": [["M"]], + "Fernandina's": null, + "Fernando": [["M"]], + "Fernando's": null, + "Ferne": [["M"]], + "Ferne's": null, + "fernery": [["M"]], + "fernery's": null, + "Fern": [["M"]], + "Fern's": null, + "fern": [["M", "S"]], + "fern's": null, + "ferns": null, + "ferny": [["T", "R"]], + "ferniest": null, + "fernier": null, + "ferociousness": [["M", "S"]], + "ferociousness's": null, + "ferociousnesses": null, + "ferocious": [["Y", "P"]], + "ferociously": null, + "ferocity": [["M", "S"]], + "ferocity's": null, + "ferocities": null, + "Ferrari": [["M"]], + "Ferrari's": null, + "Ferraro": [["M"]], + "Ferraro's": null, + "Ferreira": [["M"]], + "Ferreira's": null, + "Ferrell": [["M"]], + "Ferrell's": null, + "Ferrel": [["M"]], + "Ferrel's": null, + "Ferrer": [["M"]], + "Ferrer's": null, + "ferreter": [["M"]], + "ferreter's": null, + "ferret": [["S", "M", "R", "D", "G"]], + "ferrets": null, + "ferret's": null, + "ferreted": null, + "ferreting": null, + "ferric": null, + "ferris": null, + "Ferris": null, + "ferrite": [["M"]], + "ferrite's": null, + "ferro": null, + "ferroelectric": null, + "ferromagnetic": null, + "ferromagnet": [["M"]], + "ferromagnet's": null, + "ferrous": null, + "ferrule": [["M", "G", "S", "D"]], + "ferrule's": null, + "ferruling": null, + "ferrules": null, + "ferruled": null, + "ferryboat": [["M", "S"]], + "ferryboat's": null, + "ferryboats": null, + "ferryman": [["M"]], + "ferryman's": null, + "ferrymen": null, + "ferry": [["S", "D", "M", "G"]], + "ferries": null, + "ferried": null, + "ferry's": null, + "ferrying": null, + "fertileness": [["M"]], + "fertileness's": null, + "fertile": [["Y", "P"]], + "fertilely": null, + "fertility": [["I", "M", "S"]], + "infertility": null, + "infertility's": null, + "infertilities": null, + "fertility's": null, + "fertilities": null, + "fertilization": [["A", "S", "M"]], + "refertilization": null, + "refertilizations": null, + "refertilization's": null, + "fertilizations": null, + "fertilization's": null, + "fertilized": [["U"]], + "unfertilized": null, + "fertilizer": [["M"]], + "fertilizer's": null, + "fertilizes": [["A"]], + "refertilizes": null, + "fertilize": [["S", "R", "D", "Z", "G"]], + "fertilizers": null, + "fertilizing": null, + "ferule": [["S", "D", "G", "M"]], + "ferules": null, + "feruled": null, + "feruling": null, + "ferule's": null, + "fervency": [["M", "S"]], + "fervency's": null, + "fervencies": null, + "fervent": [["Y"]], + "fervently": null, + "fervidness": [["M"]], + "fervidness's": null, + "fervid": [["Y", "P"]], + "fervidly": null, + "fervor": [["M", "S"]], + "fervor's": null, + "fervors": null, + "fess": [["K", "G", "F", "S", "D"]], + "profess": null, + "professing": null, + "professes": null, + "professed": [["Y"]], + "fessing": null, + "confessing": null, + "confess": null, + "confesses": null, + "fesses": null, + "fessed": null, + "Fess": [["M"]], + "Fess's": null, + "fess's": null, + "festal": [["S"]], + "festals": null, + "fester": [["G", "D"]], + "festering": null, + "festered": null, + "festival": [["S", "M"]], + "festivals": null, + "festival's": null, + "festiveness": [["S", "M"]], + "festivenesses": null, + "festiveness's": null, + "festive": [["P", "Y"]], + "festively": null, + "festivity": [["S", "M"]], + "festivities": null, + "festivity's": null, + "festoon": [["S", "M", "D", "G"]], + "festoons": null, + "festoon's": null, + "festooned": null, + "festooning": null, + "fest": [["R", "V", "Z"]], + "festers": null, + "fetal": null, + "feta": [["M", "S"]], + "feta's": null, + "fetas": null, + "fetcher": [["M"]], + "fetcher's": null, + "fetching": [["Y"]], + "fetchingly": null, + "fetch": [["R", "S", "D", "G", "Z"]], + "fetches": null, + "fetched": null, + "fetchers": null, + "feted": null, + "f�te": [["M", "S"]], + "f�te's": null, + "f�tes": null, + "fetich's": null, + "fetidness": [["S", "M"]], + "fetidnesses": null, + "fetidness's": null, + "fetid": [["Y", "P"]], + "fetidly": null, + "feting": null, + "fetishism": [["S", "M"]], + "fetishisms": null, + "fetishism's": null, + "fetishistic": null, + "fetishist": [["S", "M"]], + "fetishists": null, + "fetishist's": null, + "fetish": [["M", "S"]], + "fetish's": null, + "fetishes": null, + "fetlock": [["M", "S"]], + "fetlock's": null, + "fetlocks": null, + "fetter's": null, + "fetter": [["U", "G", "S", "D"]], + "unfetter": null, + "unfettering": null, + "unfetters": null, + "unfettered": null, + "fettering": null, + "fetters": null, + "fettered": null, + "fettle": [["G", "S", "D"]], + "fettling": [["M"]], + "fettles": null, + "fettled": null, + "fettling's": null, + "fettuccine": [["S"]], + "fettuccines": null, + "fetus": [["S", "M"]], + "fetuses": null, + "fetus's": null, + "feudalism": [["M", "S"]], + "feudalism's": null, + "feudalisms": null, + "feudalistic": null, + "feudal": [["Y"]], + "feudally": null, + "feudatory": [["M"]], + "feudatory's": null, + "feud": [["M", "D", "S", "G"]], + "feud's": null, + "feuded": null, + "feuds": null, + "feuding": null, + "feverishness": [["S", "M"]], + "feverishnesses": null, + "feverishness's": null, + "feverish": [["P", "Y"]], + "feverishly": null, + "fever": [["S", "D", "M", "G"]], + "fevers": null, + "fevered": null, + "fever's": null, + "fevering": null, + "fewness": [["M", "S"]], + "fewness's": null, + "fewnesses": null, + "few": [["P", "T", "R", "S"]], + "fewest": null, + "fewer": null, + "fews": null, + "Fey": [["M"]], + "Fey's": null, + "Feynman": [["M"]], + "Feynman's": null, + "fey": [["R", "T"]], + "feyer": null, + "feyest": null, + "fez": [["M"]], + "fez's": null, + "Fez": [["M"]], + "Fez's": null, + "fezzes": null, + "ff": null, + "FHA": null, + "fianc�e": [["S"]], + "fianc�es": null, + "fianc�": [["M", "S"]], + "fianc�'s": null, + "fianc�s": null, + "Fianna": [["M"]], + "Fianna's": null, + "Fiann": [["M"]], + "Fiann's": null, + "fiascoes": null, + "fiasco": [["M"]], + "fiasco's": null, + "Fiat": [["M"]], + "Fiat's": null, + "fiat": [["M", "S"]], + "fiat's": null, + "fiats": null, + "fibbed": null, + "fibber": [["M", "S"]], + "fibber's": null, + "fibbers": null, + "fibbing": null, + "fiberboard": [["M", "S"]], + "fiberboard's": null, + "fiberboards": null, + "fiber": [["D", "M"]], + "fibered": null, + "fiber's": null, + "fiberfill": [["S"]], + "fiberfills": null, + "Fiberglas": [["M"]], + "Fiberglas's": null, + "fiberglass": [["D", "S", "M", "G"]], + "fiberglassed": null, + "fiberglasses": null, + "fiberglass's": null, + "fiberglassing": null, + "Fibonacci": [["M"]], + "Fibonacci's": null, + "fibrillate": [["X", "G", "N", "D", "S"]], + "fibrillations": null, + "fibrillating": null, + "fibrillation": [["M"]], + "fibrillated": null, + "fibrillates": null, + "fibrillation's": null, + "fibril": [["M", "S"]], + "fibril's": null, + "fibrils": null, + "fibrin": [["M", "S"]], + "fibrin's": null, + "fibrins": null, + "fibroblast": [["M", "S"]], + "fibroblast's": null, + "fibroblasts": null, + "fibroid": [["S"]], + "fibroids": null, + "fibroses": null, + "fibrosis": [["M"]], + "fibrosis's": null, + "fibrousness": [["M"]], + "fibrousness's": null, + "fibrous": [["Y", "P"]], + "fibrously": null, + "fib": [["S", "Z", "M", "R"]], + "fibs": null, + "fibers": null, + "fib's": null, + "fibulae": null, + "fibula": [["M"]], + "fibula's": null, + "fibular": null, + "FICA": null, + "fices": null, + "fiche": [["S", "M"]], + "fiches": null, + "fiche's": null, + "Fichte": [["M"]], + "Fichte's": null, + "fichu": [["S", "M"]], + "fichus": null, + "fichu's": null, + "fickleness": [["M", "S"]], + "fickleness's": null, + "ficklenesses": null, + "fickle": [["R", "T", "P"]], + "fickler": null, + "ficklest": null, + "ficos": null, + "fictionalization": [["M", "S"]], + "fictionalization's": null, + "fictionalizations": null, + "fictionalize": [["D", "S", "G"]], + "fictionalized": null, + "fictionalizes": null, + "fictionalizing": null, + "fictional": [["Y"]], + "fictionally": null, + "fiction": [["S", "M"]], + "fictions": null, + "fiction's": null, + "fictitiousness": [["M"]], + "fictitiousness's": null, + "fictitious": [["P", "Y"]], + "fictitiously": null, + "fictive": [["Y"]], + "fictively": null, + "ficus": null, + "fiddle": [["G", "M", "Z", "J", "R", "S", "D"]], + "fiddling": null, + "fiddle's": null, + "fiddlers": null, + "fiddlings": null, + "fiddler": [["M"]], + "fiddles": null, + "fiddled": null, + "fiddler's": null, + "fiddlestick": [["S", "M"]], + "fiddlesticks": null, + "fiddlestick's": null, + "fiddly": null, + "fide": [["F"]], + "Fidela": [["M"]], + "Fidela's": null, + "Fidelia": [["M"]], + "Fidelia's": null, + "Fidelio": [["M"]], + "Fidelio's": null, + "fidelity": [["I", "M", "S"]], + "infidelity": null, + "infidelity's": null, + "infidelities": null, + "fidelity's": null, + "fidelities": null, + "Fidelity": [["M"]], + "Fidelity's": null, + "Fidel": [["M"]], + "Fidel's": null, + "fidget": [["D", "S", "G"]], + "fidgeted": null, + "fidgets": null, + "fidgeting": null, + "fidgety": null, + "Fidole": [["M"]], + "Fidole's": null, + "Fido": [["M"]], + "Fido's": null, + "fiducial": [["Y"]], + "fiducially": null, + "fiduciary": [["M", "S"]], + "fiduciary's": null, + "fiduciaries": null, + "fiefdom": [["S"]], + "fiefdoms": null, + "fief": [["M", "S"]], + "fief's": null, + "fiefs": null, + "fielded": null, + "fielder": [["I", "M"]], + "infielder": null, + "infielder's": null, + "fielder's": null, + "fielding": null, + "Fielding": [["M"]], + "Fielding's": null, + "Field": [["M", "G", "S"]], + "Field's": null, + "Fields": null, + "fieldstone": [["M"]], + "fieldstone's": null, + "fieldworker": [["M"]], + "fieldworker's": null, + "fieldwork": [["Z", "M", "R", "S"]], + "fieldworkers": null, + "fieldwork's": null, + "fieldworks": null, + "field": [["Z", "I", "S", "M", "R"]], + "fielders": null, + "infielders": null, + "infield": null, + "infields": null, + "infield's": null, + "fields": null, + "field's": null, + "fiendishness": [["M"]], + "fiendishness's": null, + "fiendish": [["Y", "P"]], + "fiendishly": null, + "fiend": [["M", "S"]], + "fiend's": null, + "fiends": null, + "fierceness": [["S", "M"]], + "fiercenesses": null, + "fierceness's": null, + "fierce": [["R", "P", "T", "Y"]], + "fiercer": null, + "fiercest": null, + "fiercely": null, + "fierily": null, + "fieriness": [["M", "S"]], + "fieriness's": null, + "fierinesses": null, + "fiery": [["P", "T", "R"]], + "fieriest": null, + "fierier": null, + "fie": [["S"]], + "fies": [["C"]], + "defies": null, + "fiesta": [["M", "S"]], + "fiesta's": null, + "fiestas": null, + "fife": [["D", "R", "S", "M", "Z", "G"]], + "fifed": null, + "fifer": [["M"]], + "fifes": null, + "fife's": null, + "fifers": null, + "fifing": null, + "fifer's": null, + "Fifi": [["M"]], + "Fifi's": null, + "Fifine": [["M"]], + "Fifine's": null, + "FIFO": null, + "fifteen": [["H", "R", "M", "S"]], + "fifteenth": null, + "fifteener": null, + "fifteen's": null, + "fifteens": null, + "fifteenths": null, + "fifths": null, + "fifth": [["Y"]], + "fifthly": null, + "fiftieths": null, + "fifty": [["H", "S", "M"]], + "fiftieth": null, + "fifties": null, + "fifty's": null, + "Figaro": [["M"]], + "Figaro's": null, + "figged": null, + "figging": null, + "fightback": null, + "fighter": [["M", "I", "S"]], + "fighter's": null, + "infighter's": null, + "infighter": null, + "infighters": null, + "fighters": null, + "fighting": [["I", "S"]], + "infighting": [["M"]], + "infightings": null, + "fightings": null, + "fight": [["Z", "S", "J", "R", "G"]], + "fights": null, + "figment": [["M", "S"]], + "figment's": null, + "figments": null, + "fig": [["M", "L", "S"]], + "fig's": null, + "figs": null, + "Figueroa": [["M"]], + "Figueroa's": null, + "figural": null, + "figuration": [["F", "S", "M"]], + "figurations": null, + "figuration's": null, + "figurativeness": [["M"]], + "figurativeness's": null, + "figurative": [["Y", "P"]], + "figuratively": null, + "figure": [["G", "F", "E", "S", "D"]], + "figuring": [["S"]], + "disfiguring": null, + "disfigures": null, + "disfigured": null, + "figures": null, + "figured": null, + "figurehead": [["S", "M"]], + "figureheads": null, + "figurehead's": null, + "figurer": [["S", "M"]], + "figurers": null, + "figurer's": null, + "figure's": null, + "figurine": [["S", "M"]], + "figurines": null, + "figurine's": null, + "figurings": null, + "Fijian": [["S", "M"]], + "Fijians": null, + "Fijian's": null, + "Fiji": [["M"]], + "Fiji's": null, + "filamentary": null, + "filament": [["M", "S"]], + "filament's": null, + "filaments": null, + "filamentous": null, + "Filberte": [["M"]], + "Filberte's": null, + "Filbert": [["M"]], + "Filbert's": null, + "filbert": [["M", "S"]], + "filbert's": null, + "filberts": null, + "Filberto": [["M"]], + "Filberto's": null, + "filch": [["S", "D", "G"]], + "filches": null, + "filched": null, + "filching": null, + "filed": [["A", "C"]], + "refiled": null, + "defiled": null, + "file": [["K", "D", "R", "S", "G", "M", "Z"]], + "profile": null, + "profiled": null, + "profiler": null, + "profiles": null, + "profiling": null, + "profile's": null, + "profilers": null, + "filer": [["K", "M", "C", "S"]], + "files": [["A", "C"]], + "filing": [["A", "C"]], + "file's": null, + "filers": null, + "filename": [["S", "M"]], + "filenames": null, + "filename's": null, + "profiler's": null, + "filer's": null, + "defiler's": null, + "defiler": null, + "defilers": null, + "refiles": null, + "defiles": null, + "filet's": null, + "filial": [["U", "Y"]], + "unfilial": null, + "unfilially": null, + "filially": null, + "Filia": [["M"]], + "Filia's": null, + "filibusterer": [["M"]], + "filibusterer's": null, + "filibuster": [["M", "D", "R", "S", "Z", "G"]], + "filibuster's": null, + "filibustered": null, + "filibusters": null, + "filibusterers": null, + "filibustering": null, + "Filide": [["M"]], + "Filide's": null, + "filigreeing": null, + "filigree": [["M", "S", "D"]], + "filigree's": null, + "filigrees": null, + "filigreed": null, + "refiling": null, + "defiling": null, + "filings": null, + "Filipino": [["S", "M"]], + "Filipinos": null, + "Filipino's": null, + "Filip": [["M"]], + "Filip's": null, + "Filippa": [["M"]], + "Filippa's": null, + "Filippo": [["M"]], + "Filippo's": null, + "fill": [["B", "A", "J", "G", "S", "D"]], + "fillable": null, + "refillable": null, + "refill": null, + "refillings": null, + "refilling": null, + "refills": null, + "refilled": null, + "fillings": null, + "filling": [["M"]], + "fills": null, + "filled": [["U"]], + "unfilled": null, + "filler": [["M", "S"]], + "filler's": null, + "fillers": null, + "filleting": [["M"]], + "filleting's": null, + "fillet": [["M", "D", "S", "G"]], + "fillet's": null, + "filleted": null, + "fillets": null, + "filling's": null, + "fillip": [["M", "D", "G", "S"]], + "fillip's": null, + "filliped": null, + "filliping": null, + "fillips": null, + "Fillmore": [["M"]], + "Fillmore's": null, + "filly": [["S", "M"]], + "fillies": null, + "filly's": null, + "filmdom": [["M"]], + "filmdom's": null, + "Filmer": [["M"]], + "Filmer's": null, + "filminess": [["S", "M"]], + "filminesses": null, + "filminess's": null, + "filming": [["M"]], + "filming's": null, + "filmmaker": [["S"]], + "filmmakers": null, + "Filmore": [["M"]], + "Filmore's": null, + "film": [["S", "G", "M", "D"]], + "films": null, + "film's": null, + "filmed": null, + "filmstrip": [["S", "M"]], + "filmstrips": null, + "filmstrip's": null, + "filmy": [["R", "T", "P"]], + "filmier": null, + "filmiest": null, + "Filofax": [["S"]], + "Filofaxes": null, + "filtered": [["U"]], + "unfiltered": null, + "filterer": [["M"]], + "filterer's": null, + "filter": [["R", "D", "M", "S", "Z", "G", "B"]], + "filter's": null, + "filters": null, + "filterers": null, + "filtering": null, + "filterable": null, + "filthily": null, + "filthiness": [["S", "M"]], + "filthinesses": null, + "filthiness's": null, + "filth": [["M"]], + "filth's": null, + "filths": null, + "filthy": [["T", "R", "S", "D", "G", "P"]], + "filthiest": null, + "filthier": null, + "filthies": null, + "filthied": null, + "filthying": null, + "filtrated": [["I"]], + "infiltrated": null, + "filtrate": [["S", "D", "X", "M", "N", "G"]], + "filtrates": [["I"]], + "filtrations": null, + "filtrate's": null, + "filtration": [["I", "M", "S"]], + "filtrating": [["I"]], + "infiltrates": null, + "infiltrating": null, + "infiltration": null, + "infiltration's": null, + "infiltrations": null, + "filtration's": null, + "finagler": [["M"]], + "finagler's": null, + "finagle": [["R", "S", "D", "Z", "G"]], + "finagles": null, + "finagled": null, + "finaglers": null, + "finagling": null, + "finale": [["M", "S"]], + "finale's": null, + "finales": null, + "finalist": [["M", "S"]], + "finalist's": null, + "finalists": null, + "finality": [["M", "S"]], + "finality's": null, + "finalities": null, + "finalization": [["S", "M"]], + "finalizations": null, + "finalization's": null, + "finalize": [["G", "S", "D"]], + "finalizing": null, + "finalizes": null, + "finalized": null, + "final": [["S", "Y"]], + "finals": null, + "finally": null, + "Fina": [["M"]], + "Fina's": null, + "financed": [["A"]], + "refinanced": null, + "finance": [["M", "G", "S", "D", "J"]], + "finance's": null, + "financing": [["A"]], + "finances": [["A"]], + "financings": null, + "refinances": null, + "financial": [["Y"]], + "financially": null, + "financier": [["D", "M", "G", "S"]], + "financiered": null, + "financier's": null, + "financiering": null, + "financiers": null, + "refinancing": null, + "Finch": [["M"]], + "Finch's": null, + "finch": [["M", "S"]], + "finch's": null, + "finches": null, + "findable": [["U"]], + "unfindable": null, + "find": [["B", "R", "J", "S", "G", "Z"]], + "finder": [["M"]], + "findings": null, + "finds": null, + "finding": [["M"]], + "finders": null, + "finder's": null, + "finding's": null, + "Findlay": [["M"]], + "Findlay's": null, + "Findley": [["M"]], + "Findley's": null, + "fine": [["F", "G", "S", "C", "R", "D", "A"]], + "confining": null, + "confines": null, + "fining": [["M"]], + "refining": null, + "fines": null, + "refines": null, + "finer": null, + "refiner": null, + "fined": null, + "refined": [["U"]], + "refine": [["L", "Z"]], + "finely": null, + "fineness": [["M", "S"]], + "fineness's": null, + "finenesses": null, + "finery": [["M", "A", "S"]], + "finery's": null, + "refinery's": null, + "refinery": null, + "refineries": null, + "fineries": null, + "fine's": null, + "finespun": null, + "finesse": [["S", "D", "M", "G"]], + "finesses": null, + "finessed": null, + "finesse's": null, + "finessing": null, + "fingerboard": [["S", "M"]], + "fingerboards": null, + "fingerboard's": null, + "fingerer": [["M"]], + "fingerer's": null, + "fingering": [["M"]], + "fingering's": null, + "fingerless": null, + "fingerling": [["M"]], + "fingerling's": null, + "fingernail": [["M", "S"]], + "fingernail's": null, + "fingernails": null, + "fingerprint": [["S", "G", "D", "M"]], + "fingerprints": null, + "fingerprinting": null, + "fingerprinted": null, + "fingerprint's": null, + "finger": [["S", "G", "R", "D", "M", "J"]], + "fingers": null, + "fingered": null, + "finger's": null, + "fingerings": null, + "fingertip": [["M", "S"]], + "fingertip's": null, + "fingertips": null, + "finial": [["S", "M"]], + "finials": null, + "finial's": null, + "finical": null, + "finickiness": [["S"]], + "finickinesses": null, + "finicky": [["R", "P", "T"]], + "finickier": null, + "finickiest": null, + "fining's": null, + "finished": [["U", "A"]], + "unfinished": null, + "refinished": null, + "finisher": [["M"]], + "finisher's": null, + "finishes": [["A"]], + "refinishes": null, + "finish": [["J", "Z", "G", "R", "S", "D"]], + "finishings": null, + "finishers": null, + "finishing": null, + "finis": [["S", "M"]], + "finises": null, + "finis's": null, + "finite": [["I", "S", "P", "Y"]], + "infinite": [["V"]], + "infinites": null, + "infiniteness": null, + "infinitely": null, + "finites": null, + "finiteness": [["M", "I", "C"]], + "finitely": [["C"]], + "finiteness's": null, + "infiniteness's": null, + "fink": [["G", "D", "M", "S"]], + "finking": null, + "finked": null, + "fink's": null, + "finks": null, + "Finland": [["M"]], + "Finland's": null, + "Finlay": [["M"]], + "Finlay's": null, + "Finley": [["M"]], + "Finley's": null, + "Fin": [["M"]], + "Fin's": null, + "Finnbogadottir": [["M"]], + "Finnbogadottir's": null, + "finned": null, + "Finnegan": [["M"]], + "Finnegan's": null, + "finner": null, + "finning": null, + "Finnish": null, + "Finn": [["M", "S"]], + "Finn's": null, + "Finns": null, + "finny": [["R", "T"]], + "finnier": null, + "finniest": null, + "fin": [["T", "G", "M", "D", "R", "S"]], + "finest": null, + "fin's": null, + "fins": null, + "Fiona": [["M"]], + "Fiona's": null, + "Fionna": [["M"]], + "Fionna's": null, + "Fionnula": [["M"]], + "Fionnula's": null, + "fiord's": null, + "Fiorello": [["M"]], + "Fiorello's": null, + "Fiorenze": [["M"]], + "Fiorenze's": null, + "Fiori": [["M"]], + "Fiori's": null, + "f": [["I", "R", "A", "C"]], + "inf": [["Z", "T"]], + "infer": [["B"]], + "refer": [["B"]], + "ref": [["Z", "S"]], + "firearm": [["S", "M"]], + "firearms": null, + "firearm's": null, + "fireball": [["S", "M"]], + "fireballs": null, + "fireball's": null, + "fireboat": [["M"]], + "fireboat's": null, + "firebomb": [["M", "D", "S", "G"]], + "firebomb's": null, + "firebombed": null, + "firebombs": null, + "firebombing": null, + "firebox": [["M", "S"]], + "firebox's": null, + "fireboxes": null, + "firebrand": [["M", "S"]], + "firebrand's": null, + "firebrands": null, + "firebreak": [["S", "M"]], + "firebreaks": null, + "firebreak's": null, + "firebrick": [["S", "M"]], + "firebricks": null, + "firebrick's": null, + "firebug": [["S", "M"]], + "firebugs": null, + "firebug's": null, + "firecracker": [["S", "M"]], + "firecrackers": null, + "firecracker's": null, + "firedamp": [["S", "M"]], + "firedamps": null, + "firedamp's": null, + "fired": [["U"]], + "unfired": null, + "firefight": [["J", "R", "G", "Z", "S"]], + "firefightings": null, + "firefighter": null, + "firefighting": null, + "firefighters": null, + "firefights": null, + "firefly": [["M", "S"]], + "firefly's": null, + "fireflies": null, + "Firefox": [["M"]], + "Firefox's": null, + "fireguard": [["M"]], + "fireguard's": null, + "firehouse": [["M", "S"]], + "firehouse's": null, + "firehouses": null, + "firelight": [["G", "Z", "S", "M"]], + "firelighting": null, + "firelighters": null, + "firelights": null, + "firelight's": null, + "fireman": [["M"]], + "fireman's": null, + "firemen": null, + "fire": [["M", "S"]], + "fire's": null, + "fires": null, + "fireplace": [["M", "S"]], + "fireplace's": null, + "fireplaces": null, + "fireplug": [["M", "S"]], + "fireplug's": null, + "fireplugs": null, + "firepower": [["S", "M"]], + "firepowers": null, + "firepower's": null, + "fireproof": [["S", "G", "D"]], + "fireproofs": null, + "fireproofing": null, + "fireproofed": null, + "firer": [["M"]], + "firer's": null, + "firesafe": null, + "fireside": [["S", "M"]], + "firesides": null, + "fireside's": null, + "Firestone": [["M"]], + "Firestone's": null, + "firestorm": [["S", "M"]], + "firestorms": null, + "firestorm's": null, + "firetrap": [["S", "M"]], + "firetraps": null, + "firetrap's": null, + "firetruck": [["S"]], + "firetrucks": null, + "firewall": [["S"]], + "firewalls": null, + "firewater": [["S", "M"]], + "firewaters": null, + "firewater's": null, + "firewood": [["M", "S"]], + "firewood's": null, + "firewoods": null, + "firework": [["M", "S"]], + "firework's": null, + "fireworks": null, + "firing": [["M"]], + "firing's": null, + "firkin": [["M"]], + "firkin's": null, + "firmament": [["M", "S"]], + "firmament's": null, + "firmaments": null, + "firmer": null, + "firmest": null, + "firm": [["I", "S", "F", "D", "G"]], + "infirm": null, + "infirms": null, + "infirmed": null, + "infirming": null, + "firms": null, + "firmed": null, + "firming": null, + "firmly": [["I"]], + "infirmly": null, + "firmness": [["M", "S"]], + "firmness's": null, + "firmnesses": null, + "firm's": null, + "firmware": [["M", "S"]], + "firmware's": null, + "firmwares": null, + "firring": null, + "firstborn": [["S"]], + "firstborns": null, + "firsthand": null, + "first": [["S", "Y"]], + "firsts": null, + "firstly": null, + "firth": [["M"]], + "firth's": null, + "firths": null, + "fir": [["Z", "G", "J", "M", "D", "R", "H", "S"]], + "firers": null, + "firings": null, + "fir's": null, + "firs": null, + "fiscal": [["Y", "S"]], + "fiscally": null, + "fiscals": null, + "Fischbein": [["M"]], + "Fischbein's": null, + "Fischer": [["M"]], + "Fischer's": null, + "fishbowl": [["M", "S"]], + "fishbowl's": null, + "fishbowls": null, + "fishcake": [["S"]], + "fishcakes": null, + "fisher": [["M"]], + "fisher's": null, + "Fisher": [["M"]], + "Fisher's": null, + "fisherman": [["M"]], + "fisherman's": null, + "fishermen": [["M"]], + "fishermen's": null, + "fishery": [["M", "S"]], + "fishery's": null, + "fisheries": null, + "fishhook": [["M", "S"]], + "fishhook's": null, + "fishhooks": null, + "fishily": null, + "fishiness": [["M", "S"]], + "fishiness's": null, + "fishinesses": null, + "fishing": [["M"]], + "fishing's": null, + "fish": [["J", "G", "Z", "M", "S", "R", "D"]], + "fishings": null, + "fishers": null, + "fish's": null, + "fishes": null, + "fished": null, + "Fishkill": [["M"]], + "Fishkill's": null, + "fishmeal": null, + "fishmonger": [["M", "S"]], + "fishmonger's": null, + "fishmongers": null, + "fishnet": [["S", "M"]], + "fishnets": null, + "fishnet's": null, + "fishpond": [["S", "M"]], + "fishponds": null, + "fishpond's": null, + "fishtail": [["D", "M", "G", "S"]], + "fishtailed": null, + "fishtail's": null, + "fishtailing": null, + "fishtails": null, + "fishtanks": null, + "fishwife": [["M"]], + "fishwife's": null, + "fishwives": null, + "fishy": [["T", "P", "R"]], + "fishiest": null, + "fishier": null, + "Fiske": [["M"]], + "Fiske's": null, + "Fisk": [["M"]], + "Fisk's": null, + "fissile": null, + "fissionable": [["S"]], + "fissionables": null, + "fission": [["B", "S", "D", "M", "G"]], + "fissions": null, + "fissioned": null, + "fission's": null, + "fissioning": null, + "fissure": [["M", "G", "S", "D"]], + "fissure's": null, + "fissuring": null, + "fissures": null, + "fissured": null, + "fistfight": [["S", "M"]], + "fistfights": null, + "fistfight's": null, + "fistful": [["M", "S"]], + "fistful's": null, + "fistfuls": null, + "fisticuff": [["S", "M"]], + "fisticuffs": null, + "fisticuff's": null, + "fist": [["M", "D", "G", "S"]], + "fist's": null, + "fisted": null, + "fisting": null, + "fists": null, + "fistula": [["S", "M"]], + "fistulas": null, + "fistula's": null, + "fistulous": null, + "Fitchburg": [["M"]], + "Fitchburg's": null, + "Fitch": [["M"]], + "Fitch's": null, + "fitfulness": [["S", "M"]], + "fitfulnesses": null, + "fitfulness's": null, + "fitful": [["P", "Y"]], + "fitfully": null, + "fitments": null, + "fitness": [["U", "S", "M"]], + "unfitness": null, + "unfitnesses": null, + "unfitness's": null, + "fitnesses": null, + "fitness's": null, + "fits": [["A", "K"]], + "refits": null, + "profits": null, + "fit's": [["K"]], + "profit's": null, + "fitted": [["U", "A"]], + "unfitted": null, + "refitted": null, + "fitter": [["S", "M"]], + "fitters": null, + "fitter's": null, + "fittest": null, + "fitting": [["A", "U"]], + "refitting": null, + "unfitting": null, + "fittingly": null, + "fittingness": [["M"]], + "fittingness's": null, + "fittings": null, + "fit": [["U", "Y", "P", "S"]], + "unfit": null, + "unfitly": null, + "unfits": null, + "fitly": null, + "Fitzgerald": [["M"]], + "Fitzgerald's": null, + "Fitz": [["M"]], + "Fitz's": null, + "Fitzpatrick": [["M"]], + "Fitzpatrick's": null, + "Fitzroy": [["M"]], + "Fitzroy's": null, + "fivefold": null, + "five": [["M", "R", "S"]], + "five's": null, + "fiver": [["M"]], + "fives": null, + "fiver's": null, + "fixable": null, + "fixate": [["V", "N", "G", "X", "S", "D"]], + "fixative": [["S"]], + "fixation": [["M"]], + "fixating": null, + "fixations": null, + "fixates": null, + "fixated": null, + "fixatifs": null, + "fixation's": null, + "fixatives": null, + "fixedness": [["M"]], + "fixedness's": null, + "fixed": [["Y", "P"]], + "fixedly": null, + "fixer": [["S", "M"]], + "fixers": null, + "fixer's": null, + "fixes": [["I"]], + "infixes": null, + "fixing": [["S", "M"]], + "fixings": null, + "fixing's": null, + "fixity": [["M", "S"]], + "fixity's": null, + "fixities": null, + "fixture": [["S", "M"]], + "fixtures": null, + "fixture's": null, + "fix": [["U", "S", "D", "G"]], + "unfix": null, + "unfixes": null, + "unfixed": null, + "unfixing": null, + "Fizeau": [["M"]], + "Fizeau's": null, + "fizzer": [["M"]], + "fizzer's": null, + "fizzle": [["G", "S", "D"]], + "fizzling": null, + "fizzles": null, + "fizzled": null, + "fizz": [["S", "R", "D", "G"]], + "fizzes": null, + "fizzed": null, + "fizzing": null, + "fizzy": [["R", "T"]], + "fizzier": null, + "fizziest": null, + "fjord": [["S", "M"]], + "fjords": null, + "fjord's": null, + "FL": null, + "flabbergast": [["G", "S", "D"]], + "flabbergasting": [["Y"]], + "flabbergasts": null, + "flabbergasted": null, + "flabbergastingly": null, + "flabbily": null, + "flabbiness": [["S", "M"]], + "flabbinesses": null, + "flabbiness's": null, + "flabby": [["T", "P", "R"]], + "flabbiest": null, + "flabbier": null, + "flab": [["M", "S"]], + "flab's": null, + "flabs": null, + "flaccidity": [["M", "S"]], + "flaccidity's": null, + "flaccidities": null, + "flaccid": [["Y"]], + "flaccidly": null, + "flack": [["S", "G", "D", "M"]], + "flacks": null, + "flacking": null, + "flacked": null, + "flack's": null, + "flagella": [["M"]], + "flagella's": null, + "flagellate": [["D", "S", "N", "G", "X"]], + "flagellated": null, + "flagellates": null, + "flagellation": [["M"]], + "flagellating": null, + "flagellations": null, + "flagellation's": null, + "flagellum": [["M"]], + "flagellum's": null, + "flagged": null, + "flaggingly": [["U"]], + "unflaggingly": null, + "flagging": [["S", "M", "Y"]], + "flaggings": null, + "flagging's": null, + "flagman": [["M"]], + "flagman's": null, + "flagmen": null, + "flag": [["M", "S"]], + "flag's": null, + "flags": null, + "flagon": [["S", "M"]], + "flagons": null, + "flagon's": null, + "flagpole": [["S", "M"]], + "flagpoles": null, + "flagpole's": null, + "flagrance": [["M", "S"]], + "flagrance's": null, + "flagrances": null, + "flagrancy": [["S", "M"]], + "flagrancies": null, + "flagrancy's": null, + "flagrant": [["Y"]], + "flagrantly": null, + "flagship": [["M", "S"]], + "flagship's": null, + "flagships": null, + "flagstaff": [["M", "S"]], + "flagstaff's": null, + "flagstaffs": null, + "flagstone": [["S", "M"]], + "flagstones": null, + "flagstone's": null, + "flail": [["S", "G", "M", "D"]], + "flails": null, + "flailing": null, + "flail's": null, + "flailed": null, + "flair": [["S", "M"]], + "flairs": null, + "flair's": null, + "flaker": [["M"]], + "flaker's": null, + "flake": [["S", "M"]], + "flakes": null, + "flake's": null, + "flakiness": [["M", "S"]], + "flakiness's": null, + "flakinesses": null, + "flak": [["R", "D", "M", "G", "S"]], + "flaked": null, + "flak's": null, + "flaking": null, + "flaks": null, + "flaky": [["P", "R", "T"]], + "flakier": null, + "flakiest": null, + "Fla": [["M"]], + "Fla's": null, + "flamb�": [["D"]], + "flamb�ed": null, + "flambeing": null, + "flambes": null, + "flamboyance": [["M", "S"]], + "flamboyance's": null, + "flamboyances": null, + "flamboyancy": [["M", "S"]], + "flamboyancy's": null, + "flamboyancies": null, + "flamboyant": [["Y", "S"]], + "flamboyantly": null, + "flamboyants": null, + "flamenco": [["S", "M"]], + "flamencos": null, + "flamenco's": null, + "flamen": [["M"]], + "flamen's": null, + "flameproof": [["D", "G", "S"]], + "flameproofed": null, + "flameproofing": null, + "flameproofs": null, + "flamer": [["I", "M"]], + "inflamer": null, + "inflamer's": null, + "flamer's": null, + "flame's": null, + "flame": [["S", "I", "G", "D", "R"]], + "flames": null, + "inflames": null, + "inflame": null, + "inflaming": null, + "inflamed": null, + "flaming": [["Y"]], + "flamed": null, + "flamethrower": [["S", "M"]], + "flamethrowers": null, + "flamethrower's": null, + "flamingo": [["S", "M"]], + "flamingos": null, + "flamingo's": null, + "flamingly": null, + "flammability": [["I", "S", "M"]], + "inflammability": null, + "inflammabilities": null, + "inflammability's": null, + "flammabilities": null, + "flammability's": null, + "flammable": [["S", "I"]], + "flammables": null, + "inflammables": null, + "inflammable": [["P"]], + "flam": [["M", "R", "N", "D", "J", "G", "Z"]], + "flam's": null, + "flamings": null, + "flamers": null, + "Flanagan": [["M"]], + "Flanagan's": null, + "Flanders": [["M"]], + "Flanders's": null, + "flange": [["G", "M", "S", "D"]], + "flanging": null, + "flange's": null, + "flanges": null, + "flanged": null, + "flanker": [["M"]], + "flanker's": null, + "flank": [["S", "G", "Z", "R", "D", "M"]], + "flanks": null, + "flanking": null, + "flankers": null, + "flanked": null, + "flank's": null, + "flan": [["M", "S"]], + "flan's": null, + "flans": null, + "flannel": [["D", "M", "G", "S"]], + "flanneled": null, + "flannel's": null, + "flanneling": null, + "flannels": null, + "flannelet": [["M", "S"]], + "flannelet's": null, + "flannelets": null, + "flannelette's": null, + "flapjack": [["S", "M"]], + "flapjacks": null, + "flapjack's": null, + "flap": [["M", "S"]], + "flap's": null, + "flaps": [["M"]], + "flapped": null, + "flapper": [["S", "M"]], + "flappers": null, + "flapper's": null, + "flapping": null, + "flaps's": null, + "flare": [["S", "D", "G"]], + "flares": null, + "flared": null, + "flaring": [["Y"]], + "flareup": [["S"]], + "flareups": null, + "flaringly": null, + "flashback": [["S", "M"]], + "flashbacks": null, + "flashback's": null, + "flashbulb": [["S", "M"]], + "flashbulbs": null, + "flashbulb's": null, + "flashcard": [["S"]], + "flashcards": null, + "flashcube": [["M", "S"]], + "flashcube's": null, + "flashcubes": null, + "flasher": [["M"]], + "flasher's": null, + "flashgun": [["S"]], + "flashguns": null, + "flashily": null, + "flashiness": [["S", "M"]], + "flashinesses": null, + "flashiness's": null, + "flashing": [["M"]], + "flashing's": null, + "flash": [["J", "M", "R", "S", "D", "G", "Z"]], + "flashings": null, + "flash's": null, + "flashes": null, + "flashed": null, + "flashers": null, + "flashlight": [["M", "S"]], + "flashlight's": null, + "flashlights": null, + "flashy": [["T", "P", "R"]], + "flashiest": null, + "flashier": null, + "flask": [["S", "M"]], + "flasks": null, + "flask's": null, + "flatbed": [["S"]], + "flatbeds": null, + "flatboat": [["M", "S"]], + "flatboat's": null, + "flatboats": null, + "flatcar": [["M", "S"]], + "flatcar's": null, + "flatcars": null, + "flatfeet": null, + "flatfish": [["S", "M"]], + "flatfishes": null, + "flatfish's": null, + "flatfoot": [["S", "G", "D", "M"]], + "flatfoots": null, + "flatfooting": null, + "flatfooted": null, + "flatfoot's": null, + "flathead": [["M"]], + "flathead's": null, + "flatiron": [["S", "M"]], + "flatirons": null, + "flatiron's": null, + "flatland": [["R", "S"]], + "flatlander": null, + "flatlands": null, + "flatmate": [["M"]], + "flatmate's": null, + "flat": [["M", "Y", "P", "S"]], + "flat's": null, + "flatly": null, + "flatness": [["M", "S"]], + "flats": null, + "flatness's": null, + "flatnesses": null, + "flatted": null, + "flattener": [["M"]], + "flattener's": null, + "flatten": [["S", "D", "R", "G"]], + "flattens": null, + "flattened": null, + "flattening": null, + "flatter": [["D", "R", "S", "Z", "G"]], + "flattered": null, + "flatterer": [["M"]], + "flatters": null, + "flatterers": null, + "flattering": [["Y", "U"]], + "flatterer's": null, + "flatteringly": null, + "unflatteringly": null, + "unflattering": null, + "flattery": [["S", "M"]], + "flatteries": null, + "flattery's": null, + "flattest": [["M"]], + "flattest's": null, + "flatting": null, + "flattish": null, + "Flatt": [["M"]], + "Flatt's": null, + "flattop": [["M", "S"]], + "flattop's": null, + "flattops": null, + "flatulence": [["S", "M"]], + "flatulences": null, + "flatulence's": null, + "flatulent": [["Y"]], + "flatulently": null, + "flatus": [["S", "M"]], + "flatuses": null, + "flatus's": null, + "flatware": [["M", "S"]], + "flatware's": null, + "flatwares": null, + "flatworm": [["S", "M"]], + "flatworms": null, + "flatworm's": null, + "Flaubert": [["M"]], + "Flaubert's": null, + "flaunting": [["Y"]], + "flauntingly": null, + "flaunt": [["S", "D", "G"]], + "flaunts": null, + "flaunted": null, + "flautist": [["S", "M"]], + "flautists": null, + "flautist's": null, + "flavored": [["U"]], + "unflavored": null, + "flavorer": [["M"]], + "flavorer's": null, + "flavorful": null, + "flavoring": [["M"]], + "flavoring's": null, + "flavorless": null, + "flavor": [["S", "J", "D", "R", "M", "Z", "G"]], + "flavors": null, + "flavorings": null, + "flavor's": null, + "flavorers": null, + "flavorsome": null, + "flaw": [["G", "D", "M", "S"]], + "flawing": null, + "flawed": null, + "flaw's": null, + "flaws": null, + "flawlessness": [["M", "S"]], + "flawlessness's": null, + "flawlessnesses": null, + "flawless": [["P", "Y"]], + "flawlessly": null, + "flax": [["M", "S", "N"]], + "flax's": null, + "flaxes": null, + "flaxen": null, + "flaxseed": [["M"]], + "flaxseed's": null, + "flayer": [["M"]], + "flayer's": null, + "flay": [["R", "D", "G", "Z", "S"]], + "flayed": null, + "flaying": null, + "flayers": null, + "flays": null, + "fleabag": [["M", "S"]], + "fleabag's": null, + "fleabags": null, + "fleabites": null, + "flea": [["S", "M"]], + "fleas": null, + "flea's": null, + "fleawort": [["M"]], + "fleawort's": null, + "fleck": [["G", "R", "D", "M", "S"]], + "flecking": null, + "flecker": null, + "flecked": null, + "fleck's": null, + "flecks": null, + "Fledermaus": [["M"]], + "Fledermaus's": null, + "fledged": [["U"]], + "unfledged": null, + "fledge": [["G", "S", "D"]], + "fledging": null, + "fledges": null, + "fledgling": [["S", "M"]], + "fledglings": null, + "fledgling's": null, + "fleecer": [["M"]], + "fleecer's": null, + "fleece": [["R", "S", "D", "G", "M", "Z"]], + "fleeces": null, + "fleeced": null, + "fleecing": null, + "fleece's": null, + "fleecers": null, + "fleeciness": [["S", "M"]], + "fleecinesses": null, + "fleeciness's": null, + "fleecy": [["R", "T", "P"]], + "fleecier": null, + "fleeciest": null, + "fleeing": null, + "flee": [["R", "S"]], + "fleer": null, + "flees": null, + "fleetingly": [["M"]], + "fleetingly's": null, + "fleetingness": [["S", "M"]], + "fleetingnesses": null, + "fleetingness's": null, + "fleeting": [["Y", "P"]], + "fleet": [["M", "Y", "R", "D", "G", "T", "P", "S"]], + "fleet's": null, + "fleetly": null, + "fleeter": null, + "fleeted": null, + "fleetest": null, + "fleetness": [["M", "S"]], + "fleets": null, + "fleetness's": null, + "fleetnesses": null, + "Fleischer": [["M"]], + "Fleischer's": null, + "Fleischman": [["M"]], + "Fleischman's": null, + "Fleisher": [["M"]], + "Fleisher's": null, + "Fleming": [["M"]], + "Fleming's": null, + "Flemished": [["M"]], + "Flemished's": null, + "Flemish": [["G", "D", "S", "M"]], + "Flemishing": [["M"]], + "Flemishes": null, + "Flemish's": null, + "Flemishing's": null, + "Flem": [["J", "G", "M"]], + "Flemings": null, + "Flem's": null, + "Flemming": [["M"]], + "Flemming's": null, + "flesher": [["M"]], + "flesher's": null, + "fleshiness": [["M"]], + "fleshiness's": null, + "flesh": [["J", "M", "Y", "R", "S", "D", "G"]], + "fleshings": null, + "flesh's": null, + "fleshly": [["T", "R"]], + "fleshes": null, + "fleshed": null, + "fleshing": null, + "fleshless": null, + "fleshliest": null, + "fleshlier": null, + "fleshpot": [["S", "M"]], + "fleshpots": null, + "fleshpot's": null, + "fleshy": [["T", "P", "R"]], + "fleshiest": null, + "fleshier": null, + "fletch": [["D", "R", "S", "G", "J"]], + "fletched": null, + "fletcher": [["M"]], + "fletches": null, + "fletching": [["M"]], + "fletchings": null, + "fletcher's": null, + "Fletcher": [["M"]], + "Fletcher's": null, + "fletching's": null, + "Fletch": [["M", "R"]], + "Fletch's": null, + "Fleurette": [["M"]], + "Fleurette's": null, + "Fleur": [["M"]], + "Fleur's": null, + "flew": [["S"]], + "flews": [["M"]], + "flews's": null, + "flexed": [["I"]], + "inflexed": null, + "flexibility": [["M", "S", "I"]], + "flexibility's": null, + "inflexibility's": null, + "flexibilities": null, + "inflexibilities": null, + "inflexibility": null, + "flexible": [["I"]], + "inflexible": [["P"]], + "flexibly": [["I"]], + "inflexibly": null, + "flexitime's": null, + "flex": [["M", "S", "D", "A", "G"]], + "flex's": null, + "reflex's": null, + "flexes": null, + "reflexes": null, + "reflexed": null, + "reflex": [["Y", "V"]], + "reflexing": null, + "flexing": null, + "flextime": [["S"]], + "flextimes": null, + "flexural": null, + "flexure": [["M"]], + "flexure's": null, + "fl": [["G", "J", "D"]], + "fling": [["R", "M", "G"]], + "flings": null, + "fled": null, + "flibbertigibbet": [["M", "S"]], + "flibbertigibbet's": null, + "flibbertigibbets": null, + "flicker": [["G", "D"]], + "flickering": [["Y"]], + "flickered": null, + "flickeringly": null, + "flickery": null, + "flick": [["G", "Z", "S", "R", "D"]], + "flicking": null, + "flickers": null, + "flicks": null, + "flicked": null, + "flier": [["M"]], + "flier's": null, + "flight": [["G", "M", "D", "S"]], + "flighting": null, + "flight's": null, + "flighted": null, + "flights": null, + "flightiness": [["S", "M"]], + "flightinesses": null, + "flightiness's": null, + "flightless": null, + "flightpath": null, + "flighty": [["R", "T", "P"]], + "flightier": null, + "flightiest": null, + "flimflammed": null, + "flimflamming": null, + "flimflam": [["M", "S"]], + "flimflam's": null, + "flimflams": null, + "flimsily": null, + "flimsiness": [["M", "S"]], + "flimsiness's": null, + "flimsinesses": null, + "flimsy": [["P", "T", "R", "S"]], + "flimsiest": null, + "flimsier": null, + "flimsies": null, + "flincher": [["M"]], + "flincher's": null, + "flinch": [["G", "D", "R", "S"]], + "flinching": [["U"]], + "flinched": null, + "flinches": null, + "unflinching": [["Y"]], + "flinger": [["M"]], + "flinger's": null, + "fling's": null, + "flinging": null, + "Flin": [["M"]], + "Flin's": null, + "Flinn": [["M"]], + "Flinn's": null, + "flintiness": [["M"]], + "flintiness's": null, + "flintless": null, + "flintlock": [["M", "S"]], + "flintlock's": null, + "flintlocks": null, + "Flint": [["M"]], + "Flint's": null, + "flint": [["M", "D", "S", "G"]], + "flint's": null, + "flinted": null, + "flints": null, + "flinting": null, + "Flintstones": null, + "flinty": [["T", "R", "P"]], + "flintiest": null, + "flintier": null, + "flipflop": null, + "flippable": null, + "flippancy": [["M", "S"]], + "flippancy's": null, + "flippancies": null, + "flippant": [["Y"]], + "flippantly": null, + "flipped": null, + "flipper": [["S", "M"]], + "flippers": null, + "flipper's": null, + "flippest": null, + "flipping": null, + "flip": [["S"]], + "flips": null, + "flirtation": [["S", "M"]], + "flirtations": null, + "flirtation's": null, + "flirtatiousness": [["M", "S"]], + "flirtatiousness's": null, + "flirtatiousnesses": null, + "flirtatious": [["P", "Y"]], + "flirtatiously": null, + "flirt": [["G", "R", "D", "S"]], + "flirting": null, + "flirter": null, + "flirted": null, + "flirts": null, + "flit": [["S"]], + "flits": null, + "flitted": null, + "flitting": null, + "floater": [["M"]], + "floater's": null, + "float": [["S", "R", "D", "G", "J", "Z"]], + "floats": null, + "floated": null, + "floating": null, + "floatings": null, + "floaters": null, + "floaty": null, + "flocculate": [["G", "N", "D", "S"]], + "flocculating": null, + "flocculation": [["M"]], + "flocculated": null, + "flocculates": null, + "flocculation's": null, + "flock": [["S", "J", "D", "M", "G"]], + "flocks": null, + "flockings": null, + "flocked": null, + "flock's": null, + "flocking": null, + "floe": [["M", "S"]], + "floe's": null, + "floes": null, + "flogged": null, + "flogger": [["S", "M"]], + "floggers": null, + "flogger's": null, + "flogging": [["S", "M"]], + "floggings": null, + "flogging's": null, + "flog": [["S"]], + "flogs": null, + "Flo": [["M"]], + "Flo's": null, + "floodgate": [["M", "S"]], + "floodgate's": null, + "floodgates": null, + "floodlight": [["D", "G", "M", "S"]], + "floodlighted": null, + "floodlighting": null, + "floodlight's": null, + "floodlights": null, + "floodlit": null, + "floodplain": [["S"]], + "floodplains": null, + "flood": [["S", "M", "R", "D", "G"]], + "floods": null, + "flood's": null, + "flooder": null, + "flooded": null, + "flooding": null, + "floodwater": [["S", "M"]], + "floodwaters": null, + "floodwater's": null, + "floorboard": [["M", "S"]], + "floorboard's": null, + "floorboards": null, + "floorer": [["M"]], + "floorer's": null, + "flooring": [["M"]], + "flooring's": null, + "floor": [["S", "J", "R", "D", "M", "G"]], + "floors": null, + "floorings": null, + "floored": null, + "floor's": null, + "floorspace": null, + "floorwalker": [["S", "M"]], + "floorwalkers": null, + "floorwalker's": null, + "floozy": [["S", "M"]], + "floozies": null, + "floozy's": null, + "flophouse": [["S", "M"]], + "flophouses": null, + "flophouse's": null, + "flop": [["M", "S"]], + "flop's": null, + "flops": null, + "flopped": null, + "flopper": [["M"]], + "flopper's": null, + "floppily": null, + "floppiness": [["S", "M"]], + "floppinesses": null, + "floppiness's": null, + "flopping": null, + "floppy": [["T", "M", "R", "S", "P"]], + "floppiest": null, + "floppy's": null, + "floppier": null, + "floppies": null, + "floral": [["S", "Y"]], + "florals": null, + "florally": null, + "Flora": [["M"]], + "Flora's": null, + "Florance": [["M"]], + "Florance's": null, + "flora": [["S", "M"]], + "floras": null, + "flora's": null, + "Florella": [["M"]], + "Florella's": null, + "Florence": [["M"]], + "Florence's": null, + "Florencia": [["M"]], + "Florencia's": null, + "Florentia": [["M"]], + "Florentia's": null, + "Florentine": [["S"]], + "Florentines": null, + "Florenza": [["M"]], + "Florenza's": null, + "florescence": [["M", "I", "S"]], + "florescence's": null, + "inflorescence's": null, + "inflorescence": null, + "inflorescences": null, + "florescences": null, + "florescent": [["I"]], + "inflorescent": null, + "Flore": [["S", "M"]], + "Flores": null, + "Flore's": null, + "floret": [["M", "S"]], + "floret's": null, + "florets": null, + "Florette": [["M"]], + "Florette's": null, + "Floria": [["M"]], + "Floria's": null, + "Florian": [["M"]], + "Florian's": null, + "Florida": [["M"]], + "Florida's": null, + "Floridan": [["S"]], + "Floridans": null, + "Floridian": [["S"]], + "Floridians": null, + "floridness": [["S", "M"]], + "floridnesses": null, + "floridness's": null, + "florid": [["Y", "P"]], + "floridly": null, + "Florie": [["M"]], + "Florie's": null, + "Florina": [["M"]], + "Florina's": null, + "Florinda": [["M"]], + "Florinda's": null, + "Florine": [["M"]], + "Florine's": null, + "florin": [["M", "S"]], + "florin's": null, + "florins": null, + "Flori": [["S", "M"]], + "Floris": null, + "Flori's": null, + "florist": [["M", "S"]], + "florist's": null, + "florists": null, + "Flor": [["M"]], + "Flor's": null, + "Florrie": [["M"]], + "Florrie's": null, + "Florri": [["M"]], + "Florri's": null, + "Florry": [["M"]], + "Florry's": null, + "Flory": [["M"]], + "Flory's": null, + "floss": [["G", "S", "D", "M"]], + "flossing": null, + "flosses": null, + "flossed": null, + "floss's": null, + "Flossie": [["M"]], + "Flossie's": null, + "Flossi": [["M"]], + "Flossi's": null, + "Flossy": [["M"]], + "Flossy's": null, + "flossy": [["R", "S", "T"]], + "flossier": null, + "flossies": null, + "flossiest": null, + "flotation": [["S", "M"]], + "flotations": null, + "flotation's": null, + "flotilla": [["S", "M"]], + "flotillas": null, + "flotilla's": null, + "flotsam": [["S", "M"]], + "flotsams": null, + "flotsam's": null, + "flounce": [["G", "D", "S"]], + "flouncing": [["M"]], + "flounced": null, + "flounces": null, + "flouncing's": null, + "flouncy": [["R", "T"]], + "flouncier": null, + "flounciest": null, + "flounder": [["S", "D", "G"]], + "flounders": null, + "floundered": null, + "floundering": null, + "flourisher": [["M"]], + "flourisher's": null, + "flourish": [["G", "S", "R", "D"]], + "flourishing": [["Y"]], + "flourishes": null, + "flourished": null, + "flourishingly": null, + "flour": [["S", "G", "D", "M"]], + "flours": null, + "flouring": null, + "floured": null, + "flour's": null, + "floury": [["T", "R"]], + "flouriest": null, + "flourier": null, + "flouter": [["M"]], + "flouter's": null, + "flout": [["G", "Z", "S", "R", "D"]], + "flouting": null, + "flouters": null, + "flouts": null, + "flouted": null, + "flowchart": [["S", "G"]], + "flowcharts": null, + "flowcharting": null, + "flowed": null, + "flowerbed": [["S", "M"]], + "flowerbeds": null, + "flowerbed's": null, + "flower": [["C", "S", "G", "D"]], + "deflower": null, + "deflowers": null, + "deflowering": null, + "deflowered": null, + "flowers": null, + "flowering": null, + "flowered": null, + "flowerer": [["M"]], + "flowerer's": null, + "floweriness": [["S", "M"]], + "flowerinesses": null, + "floweriness's": null, + "flowerless": null, + "flowerpot": [["M", "S"]], + "flowerpot's": null, + "flowerpots": null, + "flower's": null, + "Flowers": null, + "flowery": [["T", "R", "P"]], + "floweriest": null, + "flowerier": null, + "flowing": [["Y"]], + "flowingly": null, + "flow": [["I", "S", "G"]], + "inflow": [["M"]], + "inflows": null, + "inflowing": null, + "flows": null, + "flown": null, + "flowstone": null, + "Floyd": [["M"]], + "Floyd's": null, + "Flss": [["M"]], + "Flss's": null, + "flt": null, + "flubbed": null, + "flubbing": null, + "flub": [["S"]], + "flubs": null, + "fluctuate": [["X", "S", "D", "N", "G"]], + "fluctuations": null, + "fluctuates": null, + "fluctuated": null, + "fluctuation": [["M"]], + "fluctuating": null, + "fluctuation's": null, + "fluency": [["M", "S"]], + "fluency's": null, + "fluencies": null, + "fluently": null, + "fluent": [["S", "F"]], + "fluents": null, + "confluents": null, + "confluent": null, + "flue": [["S", "M"]], + "flues": null, + "flue's": null, + "fluffiness": [["S", "M"]], + "fluffinesses": null, + "fluffiness's": null, + "fluff": [["S", "G", "D", "M"]], + "fluffs": null, + "fluffing": null, + "fluffed": null, + "fluff's": null, + "fluffy": [["P", "R", "T"]], + "fluffier": null, + "fluffiest": null, + "fluidity": [["S", "M"]], + "fluidities": null, + "fluidity's": null, + "fluidized": null, + "fluid": [["M", "Y", "S", "P"]], + "fluid's": null, + "fluidly": null, + "fluids": null, + "fluidness": [["M"]], + "fluidness's": null, + "fluke": [["S", "D", "G", "M"]], + "flukes": null, + "fluked": null, + "fluking": null, + "fluke's": null, + "fluky": [["R", "T"]], + "flukier": null, + "flukiest": null, + "flume": [["S", "D", "G", "M"]], + "flumes": null, + "flumed": null, + "fluming": null, + "flume's": null, + "flummox": [["D", "S", "G"]], + "flummoxed": null, + "flummoxes": null, + "flummoxing": null, + "flu": [["M", "S"]], + "flu's": null, + "flus": null, + "flung": null, + "flunkey's": null, + "flunk": [["S", "R", "D", "G"]], + "flunks": null, + "flunker": null, + "flunked": null, + "flunking": null, + "flunky": [["M", "S"]], + "flunky's": null, + "flunkies": null, + "fluoresce": [["G", "S", "R", "D"]], + "fluorescing": null, + "fluoresces": null, + "fluorescer": null, + "fluoresced": null, + "fluorescence": [["M", "S"]], + "fluorescence's": null, + "fluorescences": null, + "fluorescent": [["S"]], + "fluorescents": null, + "fluoridate": [["X", "D", "S", "G", "N"]], + "fluoridations": null, + "fluoridated": null, + "fluoridates": null, + "fluoridating": null, + "fluoridation": [["M"]], + "fluoridation's": null, + "fluoride": [["S", "M"]], + "fluorides": null, + "fluoride's": null, + "fluorimetric": null, + "fluorinated": null, + "fluorine": [["S", "M"]], + "fluorines": null, + "fluorine's": null, + "fluorite": [["M", "S"]], + "fluorite's": null, + "fluorites": null, + "fluorocarbon": [["M", "S"]], + "fluorocarbon's": null, + "fluorocarbons": null, + "fluoroscope": [["M", "G", "D", "S"]], + "fluoroscope's": null, + "fluoroscoping": null, + "fluoroscoped": null, + "fluoroscopes": null, + "fluoroscopic": null, + "flurry": [["G", "M", "D", "S"]], + "flurrying": null, + "flurry's": null, + "flurried": null, + "flurries": null, + "flushness": [["M"]], + "flushness's": null, + "flush": [["T", "R", "S", "D", "P", "B", "G"]], + "flushest": null, + "flusher": null, + "flushes": null, + "flushed": null, + "flushable": null, + "flushing": null, + "fluster": [["D", "S", "G"]], + "flustered": null, + "flusters": null, + "flustering": null, + "fluter": [["M"]], + "fluter's": null, + "flute": [["S", "R", "D", "G", "M", "J"]], + "flutes": null, + "fluted": null, + "fluting": [["M"]], + "flute's": null, + "flutings": null, + "fluting's": null, + "flutist": [["M", "S"]], + "flutist's": null, + "flutists": null, + "flutter": [["D", "R", "S", "G"]], + "fluttered": null, + "flutterer": [["M"]], + "flutters": null, + "fluttering": null, + "flutterer's": null, + "fluttery": null, + "fluxed": [["A"]], + "refluxed": null, + "fluxes": [["A"]], + "refluxes": null, + "flux": [["I", "M", "S"]], + "influx": null, + "influx's": null, + "influxes": null, + "flux's": null, + "fluxing": null, + "flyaway": null, + "flyblown": null, + "flyby": [["M"]], + "flyby's": null, + "flybys": null, + "flycatcher": [["M", "S"]], + "flycatcher's": null, + "flycatchers": null, + "flyer's": null, + "fly": [["J", "G", "B", "D", "R", "S", "T", "Z"]], + "flyings": null, + "flying": null, + "flyable": null, + "flied": null, + "flies": null, + "fliest": null, + "fliers": null, + "flyleaf": [["M"]], + "flyleaf's": null, + "flyleaves": null, + "Flynn": [["M"]], + "Flynn's": null, + "flyover": [["M", "S"]], + "flyover's": null, + "flyovers": null, + "flypaper": [["M", "S"]], + "flypaper's": null, + "flypapers": null, + "flysheet": [["S"]], + "flysheets": null, + "flyspeck": [["M", "D", "G", "S"]], + "flyspeck's": null, + "flyspecked": null, + "flyspecking": null, + "flyspecks": null, + "flyswatter": [["S"]], + "flyswatters": null, + "flyway": [["M", "S"]], + "flyway's": null, + "flyways": null, + "flyweight": [["M", "S"]], + "flyweight's": null, + "flyweights": null, + "flywheel": [["M", "S"]], + "flywheel's": null, + "flywheels": null, + "FM": null, + "Fm": [["M"]], + "Fm's": null, + "FNMA": [["M"]], + "FNMA's": null, + "foal": [["M", "D", "S", "G"]], + "foal's": null, + "foaled": null, + "foals": null, + "foaling": null, + "foaminess": [["M", "S"]], + "foaminess's": null, + "foaminesses": null, + "foam": [["M", "R", "D", "S", "G"]], + "foam's": null, + "foamer": null, + "foamed": null, + "foams": null, + "foaming": null, + "foamy": [["R", "P", "T"]], + "foamier": null, + "foamiest": null, + "fobbed": null, + "fobbing": null, + "fob": [["S", "M"]], + "fobs": null, + "fob's": null, + "focal": [["F"]], + "confocal": null, + "focally": null, + "Foch": [["M"]], + "Foch's": null, + "foci's": null, + "focused": [["A", "U"]], + "refocused": null, + "unfocused": null, + "focuser": [["M"]], + "focuser's": null, + "focuses": [["A"]], + "refocuses": null, + "focus": [["S", "R", "D", "M", "B", "G"]], + "focus's": null, + "focusable": null, + "focusing": null, + "fodder": [["G", "D", "M", "S"]], + "foddering": null, + "foddered": null, + "fodder's": null, + "fodders": null, + "foe": [["S", "M"]], + "foes": null, + "foe's": null, + "foetid": null, + "FOFL": null, + "fogbound": null, + "fogged": [["C"]], + "defogged": null, + "foggily": null, + "fogginess": [["M", "S"]], + "fogginess's": null, + "fogginesses": null, + "fogging": [["C"]], + "defogging": null, + "foggy": [["R", "P", "T"]], + "foggier": null, + "foggiest": null, + "foghorn": [["S", "M"]], + "foghorns": null, + "foghorn's": null, + "fogs": [["C"]], + "defogs": null, + "fog": [["S", "M"]], + "fog's": null, + "fogyish": null, + "fogy": [["S", "M"]], + "fogies": null, + "fogy's": null, + "foible": [["M", "S"]], + "foible's": null, + "foibles": null, + "foil": [["G", "S", "D"]], + "foiling": null, + "foils": null, + "foiled": null, + "foist": [["G", "D", "S"]], + "foisting": null, + "foisted": null, + "foists": null, + "Fokker": [["M"]], + "Fokker's": null, + "foldaway": [["S"]], + "foldaways": null, + "folded": [["A", "U"]], + "refolded": null, + "unfolded": null, + "folder": [["M"]], + "folder's": null, + "foldout": [["M", "S"]], + "foldout's": null, + "foldouts": null, + "fold": [["R", "D", "J", "S", "G", "Z"]], + "foldings": null, + "folds": [["U", "A"]], + "folding": null, + "folders": null, + "unfolds": null, + "refolds": null, + "Foley": [["M"]], + "Foley's": null, + "foliage": [["M", "S", "D"]], + "foliage's": null, + "foliages": null, + "foliaged": null, + "foliate": [["C", "S", "D", "X", "G", "N"]], + "defoliate": null, + "defoliates": null, + "defoliated": null, + "defoliations": null, + "defoliating": null, + "defoliation": null, + "foliates": null, + "foliated": null, + "foliations": null, + "foliating": null, + "foliation": [["C", "M"]], + "defoliation's": null, + "foliation's": null, + "folio": [["S", "D", "M", "G"]], + "folios": null, + "folioed": null, + "folio's": null, + "folioing": null, + "folklike": null, + "folklore": [["M", "S"]], + "folklore's": null, + "folklores": null, + "folkloric": null, + "folklorist": [["S", "M"]], + "folklorists": null, + "folklorist's": null, + "folk": [["M", "S"]], + "folk's": null, + "folks": null, + "folksiness": [["M", "S"]], + "folksiness's": null, + "folksinesses": null, + "folksinger": [["S"]], + "folksingers": null, + "folksinging": [["S"]], + "folksingings": null, + "folksong": [["S"]], + "folksongs": null, + "folksy": [["T", "P", "R"]], + "folksiest": null, + "folksier": null, + "folktale": [["S"]], + "folktales": null, + "folkway": [["S"]], + "folkways": null, + "foll": null, + "follicle": [["S", "M"]], + "follicles": null, + "follicle's": null, + "follicular": null, + "follower": [["M"]], + "follower's": null, + "follow": [["J", "S", "Z", "B", "G", "R", "D"]], + "followings": null, + "follows": null, + "followers": null, + "followable": null, + "following": null, + "followed": null, + "followup's": null, + "folly": [["S", "M"]], + "follies": null, + "folly's": null, + "Folsom": null, + "fol": [["Y"]], + "Fomalhaut": [["M"]], + "Fomalhaut's": null, + "fomentation": [["S", "M"]], + "fomentations": null, + "fomentation's": null, + "fomenter": [["M"]], + "fomenter's": null, + "foment": [["R", "D", "S", "G"]], + "fomented": null, + "foments": null, + "fomenting": null, + "Fonda": [["M"]], + "Fonda's": null, + "fondant": [["S", "M"]], + "fondants": null, + "fondant's": null, + "fondle": [["G", "S", "R", "D"]], + "fondling": null, + "fondles": null, + "fondler": [["M"]], + "fondled": null, + "fondler's": null, + "fondness": [["M", "S"]], + "fondness's": null, + "fondnesses": null, + "fond": [["P", "M", "Y", "R", "D", "G", "T", "S"]], + "fond's": null, + "fondly": null, + "fonder": null, + "fonded": null, + "fonding": null, + "fondest": null, + "fonds": null, + "fondue": [["M", "S"]], + "fondue's": null, + "fondues": null, + "Fons": null, + "Fonsie": [["M"]], + "Fonsie's": null, + "Fontainebleau": [["M"]], + "Fontainebleau's": null, + "Fontaine": [["M"]], + "Fontaine's": null, + "Fontana": [["M"]], + "Fontana's": null, + "fontanelle's": null, + "fontanel": [["M", "S"]], + "fontanel's": null, + "fontanels": null, + "font": [["M", "S"]], + "font's": null, + "fonts": null, + "Fonzie": [["M"]], + "Fonzie's": null, + "Fonz": [["M"]], + "Fonz's": null, + "foodie": [["S"]], + "foodies": null, + "food": [["M", "S"]], + "food's": null, + "foods": null, + "foodstuff": [["M", "S"]], + "foodstuff's": null, + "foodstuffs": null, + "foolery": [["M", "S"]], + "foolery's": null, + "fooleries": null, + "foolhardily": null, + "foolhardiness": [["S", "M"]], + "foolhardinesses": null, + "foolhardiness's": null, + "foolhardy": [["P", "T", "R"]], + "foolhardiest": null, + "foolhardier": null, + "foolishness": [["S", "M"]], + "foolishnesses": null, + "foolishness's": null, + "foolish": [["P", "R", "Y", "T"]], + "foolisher": null, + "foolishly": null, + "foolishest": null, + "fool": [["M", "D", "G", "S"]], + "fool's": null, + "fooled": null, + "fooling": null, + "fools": null, + "foolproof": null, + "foolscap": [["M", "S"]], + "foolscap's": null, + "foolscaps": null, + "footage": [["S", "M"]], + "footages": null, + "footage's": null, + "football": [["S", "R", "D", "M", "G", "Z"]], + "footballs": null, + "footballer": null, + "footballed": null, + "football's": null, + "footballing": null, + "footballers": null, + "footbridge": [["S", "M"]], + "footbridges": null, + "footbridge's": null, + "Foote": [["M"]], + "Foote's": null, + "footer": [["M"]], + "footer's": null, + "footfall": [["S", "M"]], + "footfalls": null, + "footfall's": null, + "foothill": [["S", "M"]], + "foothills": null, + "foothill's": null, + "foothold": [["M", "S"]], + "foothold's": null, + "footholds": null, + "footing": [["M"]], + "footing's": null, + "footless": null, + "footlights": null, + "footling": null, + "footlocker": [["S", "M"]], + "footlockers": null, + "footlocker's": null, + "footloose": null, + "footman": [["M"]], + "footman's": null, + "footmarks": null, + "footmen": null, + "footnote": [["M", "S", "D", "G"]], + "footnote's": null, + "footnotes": null, + "footnoted": null, + "footnoting": null, + "footpad": [["S", "M"]], + "footpads": null, + "footpad's": null, + "footpath": [["M"]], + "footpath's": null, + "footpaths": null, + "footplate": [["M"]], + "footplate's": null, + "footprint": [["M", "S"]], + "footprint's": null, + "footprints": null, + "footrace": [["S"]], + "footraces": null, + "footrest": [["M", "S"]], + "footrest's": null, + "footrests": null, + "footsie": [["S", "M"]], + "footsies": null, + "footsie's": null, + "foot": [["S", "M", "R", "D", "G", "Z", "J"]], + "foots": null, + "foot's": null, + "footed": null, + "footers": null, + "footings": null, + "footsore": null, + "footstep": [["S", "M"]], + "footsteps": null, + "footstep's": null, + "footstool": [["S", "M"]], + "footstools": null, + "footstool's": null, + "footwear": [["M"]], + "footwear's": null, + "footwork": [["S", "M"]], + "footworks": null, + "footwork's": null, + "fop": [["M", "S"]], + "fop's": null, + "fops": null, + "fopped": null, + "foppery": [["M", "S"]], + "foppery's": null, + "fopperies": null, + "fopping": null, + "foppishness": [["S", "M"]], + "foppishnesses": null, + "foppishness's": null, + "foppish": [["Y", "P"]], + "foppishly": null, + "forage": [["G", "S", "R", "D", "M", "Z"]], + "foraging": null, + "forages": null, + "forager": [["M"]], + "foraged": null, + "forage's": null, + "foragers": null, + "forager's": null, + "forayer": [["M"]], + "forayer's": null, + "foray": [["S", "G", "M", "R", "D"]], + "forays": null, + "foraying": null, + "foray's": null, + "forayed": null, + "forbade": null, + "forbearance": [["S", "M"]], + "forbearances": null, + "forbearance's": null, + "forbearer": [["M"]], + "forbearer's": null, + "forbear": [["M", "R", "S", "G"]], + "forbear's": null, + "forbears": null, + "forbearing": null, + "Forbes": [["M"]], + "Forbes's": null, + "forbidden": null, + "forbiddingness": [["M"]], + "forbiddingness's": null, + "forbidding": [["Y", "P", "S"]], + "forbiddingly": null, + "forbiddings": null, + "forbid": [["S"]], + "forbids": null, + "forbore": null, + "forborne": null, + "forced": [["Y"]], + "forcedly": null, + "forcefield": [["M", "S"]], + "forcefield's": null, + "forcefields": null, + "forcefulness": [["M", "S"]], + "forcefulness's": null, + "forcefulnesses": null, + "forceful": [["P", "Y"]], + "forcefully": null, + "forceps": [["M"]], + "forceps's": null, + "forcer": [["M"]], + "forcer's": null, + "force": [["S", "R", "D", "G", "M"]], + "forces": null, + "forcing": null, + "force's": null, + "forcibleness": [["M"]], + "forcibleness's": null, + "forcible": [["P"]], + "forcibly": null, + "fordable": [["U"]], + "unfordable": null, + "Fordham": [["M"]], + "Fordham's": null, + "Ford": [["M"]], + "Ford's": null, + "ford": [["S", "M", "D", "B", "G"]], + "fords": null, + "ford's": null, + "forded": null, + "fording": null, + "forearm": [["G", "S", "D", "M"]], + "forearming": null, + "forearms": null, + "forearmed": null, + "forearm's": null, + "forebear": [["M", "S"]], + "forebear's": null, + "forebears": null, + "forebode": [["G", "J", "D", "S"]], + "foreboding": [["P", "Y", "M"]], + "forebodings": null, + "foreboded": null, + "forebodes": null, + "forebodingness": [["M"]], + "forebodingness's": null, + "forebodingly": null, + "foreboding's": null, + "forecaster": [["M"]], + "forecaster's": null, + "forecastle": [["M", "S"]], + "forecastle's": null, + "forecastles": null, + "forecast": [["S", "Z", "G", "R"]], + "forecasts": null, + "forecasters": null, + "forecasting": null, + "foreclose": [["G", "S", "D"]], + "foreclosing": null, + "forecloses": null, + "foreclosed": null, + "foreclosure": [["M", "S"]], + "foreclosure's": null, + "foreclosures": null, + "forecourt": [["S", "M"]], + "forecourts": null, + "forecourt's": null, + "foredoom": [["S", "D", "G"]], + "foredooms": null, + "foredoomed": null, + "foredooming": null, + "forefather": [["S", "M"]], + "forefathers": null, + "forefather's": null, + "forefeet": null, + "forefinger": [["M", "S"]], + "forefinger's": null, + "forefingers": null, + "forefoot": [["M"]], + "forefoot's": null, + "forefront": [["S", "M"]], + "forefronts": null, + "forefront's": null, + "foregoer": [["M"]], + "foregoer's": null, + "foregoing": [["S"]], + "foregoings": null, + "foregone": null, + "foregos": null, + "foreground": [["M", "G", "D", "S"]], + "foreground's": null, + "foregrounding": null, + "foregrounded": null, + "foregrounds": null, + "forehand": [["S"]], + "forehands": null, + "forehead": [["M", "S"]], + "forehead's": null, + "foreheads": null, + "foreigner": [["M"]], + "foreigner's": null, + "foreignness": [["S", "M"]], + "foreignnesses": null, + "foreignness's": null, + "foreign": [["P", "R", "Y", "Z", "S"]], + "foreignly": null, + "foreigners": null, + "foreigns": null, + "foreknew": null, + "foreknow": [["G", "S"]], + "foreknowing": null, + "foreknows": null, + "foreknowledge": [["M", "S"]], + "foreknowledge's": null, + "foreknowledges": null, + "foreknown": null, + "foreleg": [["M", "S"]], + "foreleg's": null, + "forelegs": null, + "forelimb": [["M", "S"]], + "forelimb's": null, + "forelimbs": null, + "forelock": [["M", "D", "S", "G"]], + "forelock's": null, + "forelocked": null, + "forelocks": null, + "forelocking": null, + "foreman": [["M"]], + "foreman's": null, + "Foreman": [["M"]], + "Foreman's": null, + "foremast": [["S", "M"]], + "foremasts": null, + "foremast's": null, + "foremen": null, + "foremost": null, + "forename": [["D", "S", "M"]], + "forenamed": null, + "forenames": null, + "forename's": null, + "forenoon": [["S", "M"]], + "forenoons": null, + "forenoon's": null, + "forensically": null, + "forensic": [["S"]], + "forensics": [["M"]], + "forensics's": null, + "foreordain": [["D", "S", "G"]], + "foreordained": null, + "foreordains": null, + "foreordaining": null, + "forepart": [["M", "S"]], + "forepart's": null, + "foreparts": null, + "forepaws": null, + "forepeople": null, + "foreperson": [["S"]], + "forepersons": null, + "foreplay": [["M", "S"]], + "foreplay's": null, + "foreplays": null, + "forequarter": [["S", "M"]], + "forequarters": null, + "forequarter's": null, + "forerunner": [["M", "S"]], + "forerunner's": null, + "forerunners": null, + "fore": [["S"]], + "fores": null, + "foresail": [["S", "M"]], + "foresails": null, + "foresail's": null, + "foresaw": null, + "foreseeable": [["U"]], + "unforeseeable": null, + "foreseeing": null, + "foreseen": [["U"]], + "unforeseen": null, + "foreseer": [["M"]], + "foreseer's": null, + "foresee": [["Z", "S", "R", "B"]], + "foreseers": null, + "foresees": null, + "foreshadow": [["S", "G", "D"]], + "foreshadows": null, + "foreshadowing": null, + "foreshadowed": null, + "foreshore": [["M"]], + "foreshore's": null, + "foreshorten": [["D", "S", "G"]], + "foreshortened": null, + "foreshortens": null, + "foreshortening": null, + "foresightedness": [["S", "M"]], + "foresightednesses": null, + "foresightedness's": null, + "foresighted": [["P", "Y"]], + "foresightedly": null, + "foresight": [["S", "M", "D"]], + "foresights": null, + "foresight's": null, + "foreskin": [["S", "M"]], + "foreskins": null, + "foreskin's": null, + "forestaller": [["M"]], + "forestaller's": null, + "forestall": [["L", "G", "S", "R", "D"]], + "forestallment": [["M"]], + "forestalling": null, + "forestalls": null, + "forestalled": null, + "forestallment's": null, + "forestation": [["M", "C", "S"]], + "forestation's": null, + "deforestation's": null, + "deforestation": null, + "deforestations": null, + "forestations": [["A"]], + "reforestations": null, + "forest": [["C", "S", "A", "G", "D"]], + "deforest": null, + "deforests": null, + "deforesting": null, + "deforested": null, + "forests": null, + "reforests": null, + "reforest": null, + "reforesting": null, + "reforested": null, + "foresting": null, + "forested": null, + "Forester": [["M"]], + "Forester's": null, + "forester": [["S", "M"]], + "foresters": null, + "forester's": null, + "forestland": [["S"]], + "forestlands": null, + "Forest": [["M", "R"]], + "Forest's": null, + "forestry": [["M", "S"]], + "forestry's": null, + "forestries": null, + "forest's": null, + "foretaste": [["M", "G", "S", "D"]], + "foretaste's": null, + "foretasting": null, + "foretastes": null, + "foretasted": null, + "foreteller": [["M"]], + "foreteller's": null, + "foretell": [["R", "G", "S"]], + "foretelling": null, + "foretells": null, + "forethought": [["M", "S"]], + "forethought's": null, + "forethoughts": null, + "foretold": null, + "forevermore": null, + "forever": [["P", "S"]], + "foreverness": null, + "forevers": null, + "forewarner": [["M"]], + "forewarner's": null, + "forewarn": [["G", "S", "J", "R", "D"]], + "forewarning": null, + "forewarns": null, + "forewarnings": null, + "forewarned": null, + "forewent": null, + "forewoman": [["M"]], + "forewoman's": null, + "forewomen": null, + "foreword": [["S", "M"]], + "forewords": null, + "foreword's": null, + "forfeiter": [["M"]], + "forfeiter's": null, + "forfeiture": [["M", "S"]], + "forfeiture's": null, + "forfeitures": null, + "forfeit": [["Z", "G", "D", "R", "M", "S"]], + "forfeiters": null, + "forfeiting": null, + "forfeited": null, + "forfeit's": null, + "forfeits": null, + "forfend": [["G", "S", "D"]], + "forfending": null, + "forfends": null, + "forfended": null, + "forgather": [["G", "S", "D"]], + "forgathering": null, + "forgathers": null, + "forgathered": null, + "forgave": null, + "forged": [["A"]], + "reforged": null, + "forge": [["J", "V", "G", "M", "Z", "S", "R", "D"]], + "forgings": null, + "forgive": [["S", "R", "P", "B", "Z", "G"]], + "forging": [["M"]], + "forge's": null, + "forgers": null, + "forges": [["A"]], + "forger": [["M"]], + "forger's": null, + "forgery": [["M", "S"]], + "forgery's": null, + "forgeries": null, + "reforges": null, + "forgetfulness": [["S", "M"]], + "forgetfulnesses": null, + "forgetfulness's": null, + "forgetful": [["P", "Y"]], + "forgetfully": null, + "forget": [["S", "V"]], + "forgets": null, + "forgetive": null, + "forgettable": [["U"]], + "unforgettable": null, + "forgettably": [["U"]], + "unforgettably": null, + "forgetting": null, + "forging's": null, + "forgivable": [["U"]], + "unforgivable": null, + "forgivably": [["U"]], + "unforgivably": null, + "forgiven": null, + "forgiveness": [["S", "M"]], + "forgivenesses": null, + "forgiveness's": null, + "forgiver": [["M"]], + "forgiver's": null, + "forgives": null, + "forgivers": null, + "forgiving": [["U", "P"]], + "forgivingly": null, + "forgivingness": [["M"]], + "forgivingness's": null, + "unforgiving": null, + "unforgivingness": null, + "forgoer": [["M"]], + "forgoer's": null, + "forgoes": null, + "forgone": null, + "forgo": [["R", "S", "G", "Z"]], + "forgos": null, + "forgoing": null, + "forgoers": null, + "forgot": null, + "forgotten": [["U"]], + "unforgotten": null, + "for": [["H", "T"]], + "forth": null, + "forkful": [["S"]], + "forkfuls": null, + "fork": [["G", "S", "R", "D", "M"]], + "forking": null, + "forks": null, + "forker": null, + "forked": null, + "fork's": null, + "forklift": [["D", "M", "S", "G"]], + "forklifted": null, + "forklift's": null, + "forklifts": null, + "forklifting": null, + "forlornness": [["M"]], + "forlornness's": null, + "forlorn": [["P", "T", "R", "Y"]], + "forlornest": null, + "forlorner": null, + "forlornly": null, + "formability": [["A", "M"]], + "reformability": null, + "reformability's": null, + "formability's": null, + "formaldehyde": [["S", "M"]], + "formaldehydes": null, + "formaldehyde's": null, + "formalin": [["M"]], + "formalin's": null, + "formalism": [["S", "M"]], + "formalisms": null, + "formalism's": null, + "formalistic": null, + "formalist": [["S", "M"]], + "formalists": null, + "formalist's": null, + "formality": [["S", "M", "I"]], + "formalities": null, + "informalities": null, + "formality's": null, + "informality's": null, + "informality": null, + "formal": [["I", "Y"]], + "informal": null, + "informally": null, + "formally": null, + "formalization": [["S", "M"]], + "formalizations": null, + "formalization's": null, + "formalized": [["U"]], + "unformalized": null, + "formalizer": [["M"]], + "formalizer's": null, + "formalizes": [["I"]], + "informalizes": null, + "formalize": [["Z", "G", "S", "R", "D"]], + "formalizers": null, + "formalizing": null, + "formalness": [["M"]], + "formalness's": null, + "formals": null, + "formant": [["M", "I", "S"]], + "formant's": null, + "informant's": null, + "informant": null, + "informants": null, + "formants": null, + "format": [["A", "V", "S"]], + "reformat": null, + "reformats": null, + "formative": [["S", "Y", "P"]], + "formats": null, + "formate": [["M", "X", "G", "N", "S", "D"]], + "formate's": null, + "formations": null, + "formating": null, + "formation": [["A", "F", "S", "C", "I", "M"]], + "formates": null, + "formated": null, + "reformation": null, + "reformations": null, + "reformation's": null, + "conformation": null, + "conformations": null, + "conformation's": null, + "deformations": null, + "informations": null, + "deformation": null, + "deformation's": null, + "information": [["E", "S"]], + "information's": null, + "formation's": null, + "formatively": [["I"]], + "informatively": null, + "formativeness": [["I", "M"]], + "informativeness": [["S"]], + "informativeness's": null, + "formativeness's": null, + "formatives": null, + "format's": null, + "formatted": [["U", "A"]], + "unformatted": null, + "reformatted": null, + "formatter": [["A"]], + "reformatter": null, + "formatters": null, + "formatter's": null, + "formatting": [["A"]], + "reformatting": null, + "form": [["C", "G", "S", "A", "F", "D", "I"]], + "deforming": null, + "deforms": null, + "forming": null, + "reforming": null, + "conforming": null, + "informing": null, + "forms": null, + "reforms": null, + "conforms": null, + "informs": null, + "reform": [["B"]], + "reformed": [["U"]], + "conformed": null, + "formed": [["U"]], + "informed": [["U"]], + "inform": null, + "unformed": null, + "former": [["F", "S", "A", "I"]], + "conformers": null, + "formers": null, + "reformers": null, + "informers": null, + "reformer": [["M"]], + "informer": [["M"]], + "formerly": null, + "formfitting": null, + "formic": null, + "Formica": [["M", "S"]], + "Formica's": null, + "Formicas": null, + "formidableness": [["M"]], + "formidableness's": null, + "formidable": [["P"]], + "formidably": null, + "formlessness": [["M", "S"]], + "formlessness's": null, + "formlessnesses": null, + "formless": [["P", "Y"]], + "formlessly": null, + "Formosa": [["M"]], + "Formosa's": null, + "Formosan": null, + "form's": null, + "formulaic": null, + "formula": [["S", "M"]], + "formulas": null, + "formula's": null, + "formulate": [["A", "G", "N", "S", "D", "X"]], + "reformulate": null, + "reformulating": null, + "reformulation": null, + "reformulates": null, + "reformulated": null, + "reformulations": null, + "formulating": null, + "formulation": [["A", "M"]], + "formulates": null, + "formulated": [["U"]], + "formulations": null, + "unformulated": null, + "reformulation's": null, + "formulation's": null, + "formulator": [["S", "M"]], + "formulators": null, + "formulator's": null, + "fornicate": [["G", "N", "X", "S", "D"]], + "fornicating": null, + "fornication": [["M"]], + "fornications": null, + "fornicates": null, + "fornicated": null, + "fornication's": null, + "fornicator": [["S", "M"]], + "fornicators": null, + "fornicator's": null, + "Forrester": [["M"]], + "Forrester's": null, + "Forrest": [["R", "M"]], + "Forrest's": null, + "forsaken": null, + "forsake": [["S", "G"]], + "forsakes": null, + "forsaking": null, + "forsook": null, + "forsooth": null, + "Forster": [["M"]], + "Forster's": null, + "forswear": [["S", "G"]], + "forswears": null, + "forswearing": null, + "forswore": null, + "forsworn": null, + "forsythia": [["M", "S"]], + "forsythia's": null, + "forsythias": null, + "Fortaleza": [["M"]], + "Fortaleza's": null, + "forte": [["M", "S"]], + "forte's": null, + "fortes": null, + "forthcome": [["J", "G"]], + "forthcomings": null, + "forthcoming": [["U"]], + "unforthcoming": null, + "FORTH": [["M"]], + "FORTH's": null, + "forthrightness": [["S", "M"]], + "forthrightnesses": null, + "forthrightness's": null, + "forthright": [["P", "Y", "S"]], + "forthrightly": null, + "forthrights": null, + "forthwith": null, + "fortieths": null, + "fortification": [["M", "S"]], + "fortification's": null, + "fortifications": null, + "fortified": [["U"]], + "unfortified": null, + "fortifier": [["S", "M"]], + "fortifiers": null, + "fortifier's": null, + "fortify": [["A", "D", "S", "G"]], + "refortify": null, + "refortified": null, + "refortifies": null, + "refortifying": null, + "fortifies": null, + "fortifying": null, + "fortiori": null, + "fortissimo": [["S"]], + "fortissimos": null, + "fortitude": [["S", "M"]], + "fortitudes": null, + "fortitude's": null, + "fortnightly": [["S"]], + "fortnightlies": null, + "fortnight": [["M", "Y", "S"]], + "fortnight's": null, + "fortnights": null, + "FORTRAN": null, + "Fortran": [["M"]], + "Fortran's": null, + "fortress": [["G", "M", "S", "D"]], + "fortressing": null, + "fortress's": null, + "fortresses": null, + "fortressed": null, + "fort": [["S", "M"]], + "forts": null, + "fort's": null, + "fortuitousness": [["S", "M"]], + "fortuitousnesses": null, + "fortuitousness's": null, + "fortuitous": [["Y", "P"]], + "fortuitously": null, + "fortuity": [["M", "S"]], + "fortuity's": null, + "fortuities": null, + "fortunateness": [["M"]], + "fortunateness's": null, + "fortunate": [["Y", "U", "S"]], + "fortunately": null, + "unfortunately": null, + "unfortunate": null, + "unfortunates": null, + "fortunates": null, + "fortune": [["M", "G", "S", "D"]], + "fortune's": null, + "fortuning": null, + "fortunes": null, + "fortuned": null, + "fortuneteller": [["S", "M"]], + "fortunetellers": null, + "fortuneteller's": null, + "fortunetelling": [["S", "M"]], + "fortunetellings": null, + "fortunetelling's": null, + "forty": [["S", "R", "M", "H"]], + "forties": null, + "fortier": null, + "forty's": null, + "fortieth": null, + "forum": [["M", "S"]], + "forum's": null, + "forums": null, + "forwarder": [["M"]], + "forwarder's": null, + "forwarding": [["M"]], + "forwarding's": null, + "forwardness": [["M", "S"]], + "forwardness's": null, + "forwardnesses": null, + "forward": [["P", "T", "Z", "S", "G", "D", "R", "Y"]], + "forwardest": null, + "forwarders": null, + "forwards": null, + "forwarded": null, + "forwardly": null, + "forwent": null, + "fossiliferous": null, + "fossilization": [["M", "S"]], + "fossilization's": null, + "fossilizations": null, + "fossilized": [["U"]], + "unfossilized": [["M", "S"]], + "fossilize": [["G", "S", "D"]], + "fossilizing": null, + "fossilizes": null, + "fossil": [["M", "S"]], + "fossil's": null, + "fossils": null, + "Foss": [["M"]], + "Foss's": null, + "fosterer": [["M"]], + "fosterer's": null, + "Foster": [["M"]], + "Foster's": null, + "foster": [["S", "R", "D", "G"]], + "fosters": null, + "fostered": null, + "fostering": null, + "Foucault": [["M"]], + "Foucault's": null, + "fought": null, + "foulard": [["S", "M"]], + "foulards": null, + "foulard's": null, + "foulmouth": [["D"]], + "foulmouthed": null, + "foulness": [["M", "S"]], + "foulness's": null, + "foulnesses": null, + "fouls": [["M"]], + "fouls's": null, + "foul": [["S", "Y", "R", "D", "G", "T", "P"]], + "foully": null, + "fouler": null, + "fouled": null, + "fouling": null, + "foulest": null, + "foundational": null, + "foundation": [["S", "M"]], + "foundations": null, + "foundation's": null, + "founded": [["U", "F"]], + "unfounded": null, + "founder": [["M", "D", "G"]], + "founder's": [["F"]], + "foundered": null, + "foundering": null, + "confounder's": null, + "founding": [["F"]], + "confounding": null, + "foundling": [["M", "S"]], + "foundling's": null, + "foundlings": null, + "found": [["R", "D", "G", "Z", "S"]], + "founders": null, + "founds": [["K", "F"]], + "foundry": [["M", "S"]], + "foundry's": null, + "foundries": null, + "profounds": null, + "confounds": null, + "fountainhead": [["S", "M"]], + "fountainheads": null, + "fountainhead's": null, + "fountain": [["S", "M", "D", "G"]], + "fountains": null, + "fountain's": null, + "fountained": null, + "fountaining": null, + "fount": [["M", "S"]], + "fount's": null, + "founts": null, + "fourfold": null, + "Fourier": [["M"]], + "Fourier's": null, + "fourpence": [["M"]], + "fourpence's": null, + "fourpenny": null, + "fourposter": [["S", "M"]], + "fourposters": null, + "fourposter's": null, + "fourscore": [["S"]], + "fourscores": null, + "four": [["S", "H", "M"]], + "fours": null, + "fourth": [["Y"]], + "four's": null, + "foursome": [["S", "M"]], + "foursomes": null, + "foursome's": null, + "foursquare": null, + "fourteener": [["M"]], + "fourteener's": null, + "fourteen": [["S", "M", "R", "H"]], + "fourteens": null, + "fourteen's": null, + "fourteenth": null, + "fourteenths": null, + "Fourth": null, + "fourths": null, + "Fourths": null, + "fourthly": null, + "fovea": [["M"]], + "fovea's": null, + "fowler": [["M"]], + "fowler's": null, + "Fowler": [["M"]], + "Fowler's": null, + "fowling": [["M"]], + "fowling's": null, + "fowl": [["S", "G", "M", "R", "D"]], + "fowls": null, + "fowl's": null, + "fowled": null, + "foxfire": [["S", "M"]], + "foxfires": null, + "foxfire's": null, + "foxglove": [["S", "M"]], + "foxgloves": null, + "foxglove's": null, + "Foxhall": [["M"]], + "Foxhall's": null, + "foxhole": [["S", "M"]], + "foxholes": null, + "foxhole's": null, + "foxhound": [["S", "M"]], + "foxhounds": null, + "foxhound's": null, + "foxily": null, + "foxiness": [["M", "S"]], + "foxiness's": null, + "foxinesses": null, + "foxing": [["M"]], + "foxing's": null, + "fox": [["M", "D", "S", "G"]], + "fox's": null, + "foxed": null, + "foxes": null, + "Fox": [["M", "S"]], + "Fox's": null, + "Foxes": null, + "foxtail": [["M"]], + "foxtail's": null, + "foxtrot": [["M", "S"]], + "foxtrot's": null, + "foxtrots": null, + "foxtrotted": null, + "foxtrotting": null, + "foxy": [["T", "R", "P"]], + "foxiest": null, + "foxier": null, + "foyer": [["S", "M"]], + "foyers": null, + "foyer's": null, + "FPO": null, + "fps": null, + "fr": null, + "fracas": [["S", "M"]], + "fracases": null, + "fracas's": null, + "fractal": [["S", "M"]], + "fractals": null, + "fractal's": null, + "fractional": [["Y"]], + "fractionally": null, + "fractionate": [["D", "N", "G"]], + "fractionated": null, + "fractionation": [["M"]], + "fractionating": null, + "fractionation's": null, + "fractioned": null, + "fractioning": null, + "fraction": [["I", "S", "M", "A"]], + "infraction": null, + "infractions": null, + "infraction's": null, + "fractions": null, + "refractions": null, + "fraction's": null, + "refraction's": null, + "refraction": null, + "fractiousness": [["S", "M"]], + "fractiousnesses": null, + "fractiousness's": null, + "fractious": [["P", "Y"]], + "fractiously": null, + "fracture": [["M", "G", "D", "S"]], + "fracture's": null, + "fracturing": null, + "fractured": null, + "fractures": null, + "fragile": [["Y"]], + "fragilely": null, + "fragility": [["M", "S"]], + "fragility's": null, + "fragilities": null, + "fragmentarily": null, + "fragmentariness": [["M"]], + "fragmentariness's": null, + "fragmentary": [["P"]], + "fragmentation": [["M", "S"]], + "fragmentation's": null, + "fragmentations": null, + "fragment": [["S", "D", "M", "G"]], + "fragments": null, + "fragmented": null, + "fragment's": null, + "fragmenting": null, + "Fragonard": [["M"]], + "Fragonard's": null, + "fragrance": [["S", "M"]], + "fragrances": null, + "fragrance's": null, + "fragrant": [["Y"]], + "fragrantly": null, + "frailness": [["M", "S"]], + "frailness's": null, + "frailnesses": null, + "frail": [["S", "T", "P", "Y", "R"]], + "frails": null, + "frailest": null, + "frailly": null, + "frailer": null, + "frailty": [["M", "S"]], + "frailty's": null, + "frailties": null, + "framed": [["U"]], + "unframed": null, + "framer": [["M"]], + "framer's": null, + "frame": [["S", "R", "D", "J", "G", "M", "Z"]], + "frames": null, + "framings": null, + "framing": [["M"]], + "frame's": null, + "framers": null, + "framework": [["S", "M"]], + "frameworks": null, + "framework's": null, + "framing's": null, + "Francaise": [["M"]], + "Francaise's": null, + "France": [["M", "S"]], + "France's": null, + "Frances": null, + "Francene": [["M"]], + "Francene's": null, + "Francesca": [["M"]], + "Francesca's": null, + "Francesco": [["M"]], + "Francesco's": null, + "franchisee": [["S"]], + "franchisees": null, + "franchise": [["E", "S", "D", "G"]], + "disfranchises": null, + "disfranchised": null, + "disfranchising": null, + "franchises": null, + "franchised": null, + "franchising": null, + "franchiser": [["S", "M"]], + "franchisers": null, + "franchiser's": null, + "franchise's": null, + "Franchot": [["M"]], + "Franchot's": null, + "Francie": [["M"]], + "Francie's": null, + "Francine": [["M"]], + "Francine's": null, + "Francis": null, + "Francisca": [["M"]], + "Francisca's": null, + "Franciscan": [["M", "S"]], + "Franciscan's": null, + "Franciscans": null, + "Francisco": [["M"]], + "Francisco's": null, + "Franciska": [["M"]], + "Franciska's": null, + "Franciskus": [["M"]], + "Franciskus's": null, + "francium": [["M", "S"]], + "francium's": null, + "franciums": null, + "Francklin": [["M"]], + "Francklin's": null, + "Francklyn": [["M"]], + "Francklyn's": null, + "Franck": [["M"]], + "Franck's": null, + "Francoise": [["M"]], + "Francoise's": null, + "Francois": [["M"]], + "Francois's": null, + "Franco": [["M"]], + "Franco's": null, + "francophone": [["M"]], + "francophone's": null, + "franc": [["S", "M"]], + "francs": null, + "franc's": null, + "Francyne": [["M"]], + "Francyne's": null, + "frangibility": [["S", "M"]], + "frangibilities": null, + "frangibility's": null, + "frangible": null, + "Frankel": [["M"]], + "Frankel's": null, + "Frankenstein": [["M", "S"]], + "Frankenstein's": null, + "Frankensteins": null, + "franker": [["M"]], + "franker's": null, + "Frankford": [["M"]], + "Frankford's": null, + "Frankfort": [["M"]], + "Frankfort's": null, + "Frankfurter": [["M"]], + "Frankfurter's": null, + "frankfurter": [["M", "S"]], + "frankfurter's": null, + "frankfurters": null, + "Frankfurt": [["R", "M"]], + "Frankfurt's": null, + "Frankie": [["M"]], + "Frankie's": null, + "frankincense": [["M", "S"]], + "frankincense's": null, + "frankincenses": null, + "Frankish": [["M"]], + "Frankish's": null, + "franklin": [["M"]], + "franklin's": null, + "Franklin": [["M"]], + "Franklin's": null, + "Franklyn": [["M"]], + "Franklyn's": null, + "frankness": [["M", "S"]], + "frankness's": null, + "franknesses": null, + "frank": [["S", "G", "T", "Y", "R", "D", "P"]], + "franks": null, + "franking": null, + "frankest": null, + "frankly": null, + "franked": null, + "Frank": [["S", "M"]], + "Franks": null, + "Frank's": null, + "Franky": [["M"]], + "Franky's": null, + "Fran": [["M", "S"]], + "Fran's": null, + "Frans": null, + "Frannie": [["M"]], + "Frannie's": null, + "Franni": [["M"]], + "Franni's": null, + "Franny": [["M"]], + "Franny's": null, + "Fransisco": [["M"]], + "Fransisco's": null, + "frantically": null, + "franticness": [["M"]], + "franticness's": null, + "frantic": [["P", "Y"]], + "franticly": null, + "Frants": [["M"]], + "Frants's": null, + "Franzen": [["M"]], + "Franzen's": null, + "Franz": [["N", "M"]], + "Franz's": null, + "frapp�": null, + "frappeed": null, + "frappeing": null, + "frappes": null, + "Frasco": [["M"]], + "Frasco's": null, + "Fraser": [["M"]], + "Fraser's": null, + "Frasier": [["M"]], + "Frasier's": null, + "Frasquito": [["M"]], + "Frasquito's": null, + "fraternal": [["Y"]], + "fraternally": null, + "fraternity": [["M", "S", "F"]], + "fraternity's": null, + "confraternity's": null, + "fraternities": null, + "confraternities": null, + "confraternity": null, + "fraternization": [["S", "M"]], + "fraternizations": null, + "fraternization's": null, + "fraternize": [["G", "Z", "R", "S", "D"]], + "fraternizing": [["U"]], + "fraternizers": null, + "fraternizer": [["M"]], + "fraternizes": null, + "fraternized": null, + "fraternizer's": null, + "unfraternizing": [["S", "M"]], + "frat": [["M", "S"]], + "frat's": null, + "frats": null, + "fratricidal": null, + "fratricide": [["M", "S"]], + "fratricide's": null, + "fratricides": null, + "fraud": [["C", "S"]], + "defrauds": null, + "frauds": null, + "fraud's": null, + "fraudsters": null, + "fraudulence": [["S"]], + "fraudulences": null, + "fraudulent": [["Y", "P"]], + "fraudulently": null, + "fraudulentness": null, + "fraught": [["S", "G", "D"]], + "fraughts": null, + "fraughting": null, + "fraughted": null, + "Fraulein": [["S"]], + "Frauleins": null, + "Frau": [["M", "N"]], + "Frau's": null, + "Frauen": null, + "fray": [["C", "S", "D", "G"]], + "defray": null, + "defrays": null, + "defrayed": null, + "defraying": null, + "frays": null, + "frayed": null, + "fraying": null, + "Frayda": [["M"]], + "Frayda's": null, + "Frayne": [["M"]], + "Frayne's": null, + "fray's": null, + "Fraze": [["M", "R"]], + "Fraze's": null, + "Frazer": [["M"]], + "Frazer's": null, + "Frazier": [["M"]], + "Frazier's": null, + "frazzle": [["G", "D", "S"]], + "frazzling": null, + "frazzled": null, + "frazzles": null, + "freakishness": [["S", "M"]], + "freakishnesses": null, + "freakishness's": null, + "freakish": [["Y", "P"]], + "freakishly": null, + "freak": [["S", "G", "D", "M"]], + "freaks": null, + "freaking": null, + "freaked": null, + "freak's": null, + "freaky": [["R", "T"]], + "freakier": null, + "freakiest": null, + "freckle": [["G", "M", "D", "S"]], + "freckling": null, + "freckle's": null, + "freckled": null, + "freckles": null, + "freckly": [["R", "T"]], + "frecklier": null, + "freckliest": null, + "Freda": [["M"]], + "Freda's": null, + "Freddie": [["M"]], + "Freddie's": null, + "Freddi": [["M"]], + "Freddi's": null, + "Freddy": [["M"]], + "Freddy's": null, + "Fredek": [["M"]], + "Fredek's": null, + "Fredelia": [["M"]], + "Fredelia's": null, + "Frederica": [["M"]], + "Frederica's": null, + "Frederich": [["M"]], + "Frederich's": null, + "Fredericka": [["M"]], + "Fredericka's": null, + "Frederick": [["M", "S"]], + "Frederick's": null, + "Fredericks": null, + "Frederic": [["M"]], + "Frederic's": null, + "Frederico": [["M"]], + "Frederico's": null, + "Fredericton": [["M"]], + "Fredericton's": null, + "Frederigo": [["M"]], + "Frederigo's": null, + "Frederik": [["M"]], + "Frederik's": null, + "Frederique": [["M"]], + "Frederique's": null, + "Fredholm": [["M"]], + "Fredholm's": null, + "Fredia": [["M"]], + "Fredia's": null, + "Fredi": [["M"]], + "Fredi's": null, + "Fred": [["M"]], + "Fred's": null, + "Fredra": [["M"]], + "Fredra's": null, + "Fredrick": [["M"]], + "Fredrick's": null, + "Fredrickson": [["M"]], + "Fredrickson's": null, + "Fredric": [["M"]], + "Fredric's": null, + "Fredrika": [["M"]], + "Fredrika's": null, + "freebase": [["G", "D", "S"]], + "freebasing": null, + "freebased": null, + "freebases": null, + "freebie": [["M", "S"]], + "freebie's": null, + "freebies": null, + "freebooter": [["M"]], + "freebooter's": null, + "freeboot": [["Z", "R"]], + "freebooters": null, + "freeborn": null, + "freedman": [["M"]], + "freedman's": null, + "Freedman": [["M"]], + "Freedman's": null, + "freedmen": null, + "freedom": [["M", "S"]], + "freedom's": null, + "freedoms": null, + "freehand": [["D"]], + "freehanded": [["Y"]], + "freehandedly": null, + "freeholder": [["M"]], + "freeholder's": null, + "freehold": [["Z", "S", "R", "M"]], + "freeholders": null, + "freeholds": null, + "freehold's": null, + "freeing": [["S"]], + "freeings": null, + "freelance": [["S", "R", "D", "G", "Z", "M"]], + "freelances": null, + "freelancer": null, + "freelanced": null, + "freelancing": null, + "freelancers": null, + "freelance's": null, + "Freeland": [["M"]], + "Freeland's": null, + "freeloader": [["M"]], + "freeloader's": null, + "freeload": [["S", "R", "D", "G", "Z"]], + "freeloads": null, + "freeloaded": null, + "freeloading": null, + "freeloaders": null, + "Free": [["M"]], + "Free's": null, + "freeman": [["M"]], + "freeman's": null, + "Freeman": [["M"]], + "Freeman's": null, + "freemasonry": [["M"]], + "freemasonry's": null, + "Freemasonry": [["M", "S"]], + "Freemasonry's": null, + "Freemasonries": null, + "Freemason": [["S", "M"]], + "Freemasons": null, + "Freemason's": null, + "freemen": null, + "Freemon": [["M"]], + "Freemon's": null, + "freeness": [["M"]], + "freeness's": null, + "Freeport": [["M"]], + "Freeport's": null, + "freestanding": null, + "freestone": [["S", "M"]], + "freestones": null, + "freestone's": null, + "freestyle": [["S", "M"]], + "freestyles": null, + "freestyle's": null, + "freethinker": [["M", "S"]], + "freethinker's": null, + "freethinkers": null, + "freethinking": [["S"]], + "freethinkings": null, + "Freetown": [["M"]], + "Freetown's": null, + "freeway": [["M", "S"]], + "freeway's": null, + "freeways": null, + "freewheeler": [["M"]], + "freewheeler's": null, + "freewheeling": [["P"]], + "freewheelingness": null, + "freewheel": [["S", "R", "D", "M", "G", "Z"]], + "freewheels": null, + "freewheeled": null, + "freewheel's": null, + "freewheelers": null, + "freewill": null, + "free": [["Y", "T", "D", "R", "S", "P"]], + "freely": null, + "freest": null, + "freed": null, + "freer": null, + "frees": null, + "freezable": null, + "freezer": [["S", "M"]], + "freezers": null, + "freezer's": null, + "freeze": [["U", "G", "S", "A"]], + "unfreeze": null, + "unfreezing": null, + "unfreezes": null, + "freezing": [["S"]], + "refreezing": null, + "freezes": null, + "refreezes": null, + "refreeze": null, + "freezings": null, + "Freida": [["M"]], + "Freida's": null, + "freighter": [["M"]], + "freighter's": null, + "freight": [["Z", "G", "M", "D", "R", "S"]], + "freighters": null, + "freighting": null, + "freight's": null, + "freighted": null, + "freights": null, + "Fremont": [["M"]], + "Fremont's": null, + "Frenchman": [["M"]], + "Frenchman's": null, + "French": [["M", "D", "S", "G"]], + "French's": null, + "Frenched": null, + "Frenches": null, + "Frenching": null, + "Frenchmen": null, + "Frenchwoman": [["M"]], + "Frenchwoman's": null, + "Frenchwomen": null, + "frenetically": null, + "frenetic": [["S"]], + "frenetics": null, + "frenzied": [["Y"]], + "frenziedly": null, + "frenzy": [["M", "D", "S", "G"]], + "frenzy's": null, + "frenzies": null, + "frenzying": null, + "freon": [["S"]], + "freons": null, + "Freon": [["S", "M"]], + "Freons": null, + "Freon's": null, + "freq": null, + "frequency": [["I", "S", "M"]], + "infrequency": null, + "infrequencies": null, + "infrequency's": null, + "frequencies": null, + "frequency's": null, + "frequented": [["U"]], + "unfrequented": null, + "frequenter": [["M", "S"]], + "frequenter's": null, + "frequenters": null, + "frequentest": null, + "frequenting": null, + "frequent": [["I", "Y"]], + "infrequent": null, + "infrequently": null, + "frequently": null, + "frequentness": [["M"]], + "frequentness's": null, + "frequents": null, + "fresco": [["D", "M", "G"]], + "frescoed": null, + "fresco's": null, + "frescoing": null, + "frescoes": null, + "fresh": [["A", "Z", "S", "R", "N", "D", "G"]], + "refresh": [["L", "B"]], + "refreshers": null, + "refreshes": null, + "refresher": null, + "refreshen": null, + "refreshed": [["U"]], + "refreshing": [["Y"]], + "freshers": null, + "freshes": null, + "fresher": [["M", "A"]], + "freshen": [["S", "Z", "G", "D", "R"]], + "freshed": null, + "freshing": null, + "freshener": [["M"]], + "freshener's": null, + "freshens": null, + "fresheners": null, + "freshening": null, + "freshened": null, + "fresher's": null, + "refresher's": null, + "freshest": null, + "freshet": [["S", "M"]], + "freshets": null, + "freshet's": null, + "freshly": null, + "freshman": [["M"]], + "freshman's": null, + "freshmen": null, + "freshness": [["M", "S"]], + "freshness's": null, + "freshnesses": null, + "freshwater": [["S", "M"]], + "freshwaters": null, + "freshwater's": null, + "Fresnel": [["M"]], + "Fresnel's": null, + "Fresno": [["M"]], + "Fresno's": null, + "fretboard": null, + "fretfulness": [["M", "S"]], + "fretfulness's": null, + "fretfulnesses": null, + "fretful": [["P", "Y"]], + "fretfully": null, + "fret": [["S"]], + "frets": null, + "fretsaw": [["S"]], + "fretsaws": null, + "fretted": null, + "fretting": null, + "fretwork": [["M", "S"]], + "fretwork's": null, + "fretworks": null, + "Freudian": [["S"]], + "Freudians": null, + "Freud": [["M"]], + "Freud's": null, + "Freya": [["M"]], + "Freya's": null, + "Frey": [["M"]], + "Frey's": null, + "friableness": [["M"]], + "friableness's": null, + "friable": [["P"]], + "friary": [["M", "S"]], + "friary's": null, + "friaries": null, + "friar": [["Y", "M", "S"]], + "friarly": null, + "friar's": null, + "friars": null, + "fricasseeing": null, + "fricassee": [["M", "S", "D"]], + "fricassee's": null, + "fricassees": null, + "fricasseed": null, + "frication": [["M"]], + "frication's": null, + "fricative": [["M", "S"]], + "fricative's": null, + "fricatives": null, + "Frick": [["M"]], + "Frick's": null, + "frictional": [["Y"]], + "frictionally": null, + "frictionless": [["Y"]], + "frictionlessly": null, + "friction": [["M", "S"]], + "friction's": null, + "frictions": null, + "Friday": [["S", "M"]], + "Fridays": null, + "Friday's": null, + "fridge": [["S", "M"]], + "fridges": null, + "fridge's": null, + "fried": [["A"]], + "refried": null, + "Frieda": [["M"]], + "Frieda's": null, + "Friedan": [["M"]], + "Friedan's": null, + "friedcake": [["S", "M"]], + "friedcakes": null, + "friedcake's": null, + "Friederike": [["M"]], + "Friederike's": null, + "Friedman": [["M"]], + "Friedman's": null, + "Friedrich": [["M"]], + "Friedrich's": null, + "Friedrick": [["M"]], + "Friedrick's": null, + "friendlessness": [["M"]], + "friendlessness's": null, + "friendless": [["P"]], + "friendlies": null, + "friendlily": null, + "friendliness": [["U", "S", "M"]], + "unfriendliness": null, + "unfriendlinesses": null, + "unfriendliness's": null, + "friendlinesses": null, + "friendliness's": null, + "friendly": [["P", "U", "T", "R"]], + "unfriendly": null, + "unfriendlier": null, + "friendliest": null, + "friendlier": null, + "friend": [["S", "G", "M", "Y", "D"]], + "friends": null, + "friending": null, + "friend's": null, + "friended": null, + "friendship": [["M", "S"]], + "friendship's": null, + "friendships": null, + "frier's": null, + "fries": [["M"]], + "fries's": null, + "frieze": [["S", "D", "G", "M"]], + "friezes": null, + "friezed": null, + "friezing": null, + "frieze's": null, + "frigate": [["S", "M"]], + "frigates": null, + "frigate's": null, + "Frigga": [["M"]], + "Frigga's": null, + "frigged": null, + "frigging": [["S"]], + "friggings": null, + "frighten": [["D", "G"]], + "frightened": null, + "frightening": [["Y"]], + "frighteningly": null, + "frightfulness": [["M", "S"]], + "frightfulness's": null, + "frightfulnesses": null, + "frightful": [["P", "Y"]], + "frightfully": null, + "fright": [["G", "X", "M", "D", "N", "S"]], + "frighting": null, + "frightens": null, + "fright's": null, + "frighted": null, + "frights": null, + "Frigidaire": [["M"]], + "Frigidaire's": null, + "frigidity": [["M", "S"]], + "frigidity's": null, + "frigidities": null, + "frigidness": [["S", "M"]], + "frigidnesses": null, + "frigidness's": null, + "frigid": [["Y", "P"]], + "frigidly": null, + "frig": [["S"]], + "frigs": null, + "frill": [["M", "D", "G", "S"]], + "frill's": null, + "frilled": null, + "frilling": null, + "frills": null, + "frilly": [["R", "S", "T"]], + "frillier": null, + "frillies": null, + "frilliest": null, + "Fri": [["M"]], + "Fri's": null, + "fringe": [["I", "G", "S", "D"]], + "infringe": [["L", "R"]], + "infringing": null, + "infringes": null, + "infringed": null, + "fringing": null, + "fringes": null, + "fringed": null, + "fringe's": null, + "frippery": [["S", "M"]], + "fripperies": null, + "frippery's": null, + "Frisbee": [["M", "S"]], + "Frisbee's": null, + "Frisbees": null, + "Frisco": [["M"]], + "Frisco's": null, + "Frisian": [["S", "M"]], + "Frisians": null, + "Frisian's": null, + "frisker": [["M"]], + "frisker's": null, + "friskily": null, + "friskiness": [["S", "M"]], + "friskinesses": null, + "friskiness's": null, + "frisk": [["R", "D", "G", "S"]], + "frisked": null, + "frisking": null, + "frisks": null, + "frisky": [["R", "T", "P"]], + "friskier": null, + "friskiest": null, + "frisson": [["M"]], + "frisson's": null, + "Frito": [["M"]], + "Frito's": null, + "fritterer": [["M"]], + "fritterer's": null, + "fritter": [["R", "D", "S", "G"]], + "frittered": null, + "fritters": null, + "frittering": null, + "Fritz": [["M"]], + "Fritz's": null, + "fritz": [["S", "M"]], + "fritzes": null, + "fritz's": null, + "frivolity": [["M", "S"]], + "frivolity's": null, + "frivolities": null, + "frivolousness": [["S", "M"]], + "frivolousnesses": null, + "frivolousness's": null, + "frivolous": [["P", "Y"]], + "frivolously": null, + "frizz": [["G", "Y", "S", "D"]], + "frizzing": null, + "frizzly": [["R", "T"]], + "frizzes": null, + "frizzed": null, + "frizzle": [["D", "S", "G"]], + "frizzled": null, + "frizzles": null, + "frizzling": null, + "frizzlier": null, + "frizzliest": null, + "frizzy": [["R", "T"]], + "frizzier": null, + "frizziest": null, + "Fr": [["M", "D"]], + "Fr's": null, + "Frobisher": [["M"]], + "Frobisher's": null, + "frocking": [["M"]], + "frocking's": null, + "frock's": null, + "frock": [["S", "U", "D", "G", "C"]], + "frocks": null, + "unfrocks": null, + "defrocks": null, + "unfrock": null, + "unfrocked": null, + "unfrocking": null, + "frocked": null, + "defrocked": null, + "defrocking": null, + "defrock": null, + "frogged": null, + "frogging": null, + "frogman": [["M"]], + "frogman's": null, + "frogmarched": null, + "frogmen": null, + "frog": [["M", "S"]], + "frog's": null, + "frogs": null, + "fro": [["H", "S"]], + "froth": [["G", "M", "D"]], + "fros": null, + "Froissart": [["M"]], + "Froissart's": null, + "frolicked": null, + "frolicker": [["S", "M"]], + "frolickers": null, + "frolicker's": null, + "frolicking": null, + "frolic": [["S", "M"]], + "frolics": null, + "frolic's": null, + "frolicsome": null, + "from": null, + "Fromm": [["M"]], + "Fromm's": null, + "frond": [["S", "M"]], + "fronds": null, + "frond's": null, + "frontage": [["M", "S"]], + "frontage's": null, + "frontages": null, + "frontal": [["S", "Y"]], + "frontals": null, + "frontally": null, + "Frontenac": [["M"]], + "Frontenac's": null, + "front": [["G", "S", "F", "R", "D"]], + "fronting": null, + "confronting": null, + "fronts": null, + "confronts": null, + "confronted": null, + "fronter": null, + "fronted": null, + "frontier": [["S", "M"]], + "frontiers": null, + "frontier's": null, + "frontiersman": [["M"]], + "frontiersman's": null, + "frontiersmen": null, + "frontispiece": [["S", "M"]], + "frontispieces": null, + "frontispiece's": null, + "frontrunner's": null, + "front's": null, + "frontward": [["S"]], + "frontwards": null, + "frosh": [["M"]], + "frosh's": null, + "Frostbelt": [["M"]], + "Frostbelt's": null, + "frostbite": [["M", "S"]], + "frostbite's": null, + "frostbites": null, + "frostbit": [["G"]], + "frostbiting": [["M"]], + "frostbiting's": null, + "frostbitten": null, + "frost": [["C", "D", "S", "G"]], + "defrosted": null, + "defrosts": null, + "defrosting": null, + "frosted": [["U"]], + "frosts": null, + "frosting": [["M", "S"]], + "frosteds": null, + "unfrosted": null, + "frostily": null, + "frostiness": [["S", "M"]], + "frostinesses": null, + "frostiness's": null, + "frosting's": null, + "frostings": null, + "Frost": [["M"]], + "Frost's": null, + "frost's": null, + "frosty": [["P", "T", "R"]], + "frostiest": null, + "frostier": null, + "frothing": null, + "froth's": null, + "frothed": null, + "frothiness": [["S", "M"]], + "frothinesses": null, + "frothiness's": null, + "froths": null, + "frothy": [["T", "R", "P"]], + "frothiest": null, + "frothier": null, + "froufrou": [["M", "S"]], + "froufrou's": null, + "froufrous": null, + "frowardness": [["M", "S"]], + "frowardness's": null, + "frowardnesses": null, + "froward": [["P"]], + "frowner": [["M"]], + "frowner's": null, + "frowning": [["Y"]], + "frowningly": null, + "frown": [["R", "D", "S", "G"]], + "frowned": null, + "frowns": null, + "frowzily": null, + "frowziness": [["S", "M"]], + "frowzinesses": null, + "frowziness's": null, + "frowzy": [["R", "P", "T"]], + "frowzier": null, + "frowziest": null, + "frozenness": [["M"]], + "frozenness's": null, + "frozen": [["Y", "P"]], + "frozenly": null, + "froze": [["U", "A"]], + "unfroze": null, + "refroze": null, + "fructify": [["G", "S", "D"]], + "fructifying": null, + "fructifies": null, + "fructified": null, + "fructose": [["M", "S"]], + "fructose's": null, + "fructoses": null, + "Fruehauf": [["M"]], + "Fruehauf's": null, + "frugality": [["S", "M"]], + "frugalities": null, + "frugality's": null, + "frugal": [["Y"]], + "frugally": null, + "fruitcake": [["S", "M"]], + "fruitcakes": null, + "fruitcake's": null, + "fruiterer": [["M"]], + "fruiterer's": null, + "fruiter": [["R", "M"]], + "fruiter's": null, + "fruitfuller": null, + "fruitfullest": null, + "fruitfulness": [["M", "S"]], + "fruitfulness's": null, + "fruitfulnesses": null, + "fruitful": [["U", "Y", "P"]], + "unfruitful": null, + "unfruitfully": null, + "unfruitfulness": null, + "fruitfully": null, + "fruit": [["G", "M", "R", "D", "S"]], + "fruiting": null, + "fruit's": null, + "fruited": null, + "fruits": null, + "fruitiness": [["M", "S"]], + "fruitiness's": null, + "fruitinesses": null, + "fruition": [["S", "M"]], + "fruitions": null, + "fruition's": null, + "fruitlessness": [["M", "S"]], + "fruitlessness's": null, + "fruitlessnesses": null, + "fruitless": [["Y", "P"]], + "fruitlessly": null, + "fruity": [["R", "P", "T"]], + "fruitier": null, + "fruitiest": null, + "frumpish": null, + "frump": [["M", "S"]], + "frump's": null, + "frumps": null, + "frumpy": [["T", "R"]], + "frumpiest": null, + "frumpier": null, + "Frunze": [["M"]], + "Frunze's": null, + "frustrater": [["M"]], + "frustrater's": null, + "frustrate": [["R", "S", "D", "X", "N", "G"]], + "frustrates": null, + "frustrated": null, + "frustrations": null, + "frustration": [["M"]], + "frustrating": [["Y"]], + "frustratingly": null, + "frustration's": null, + "frustum": [["S", "M"]], + "frustums": null, + "frustum's": null, + "Frye": [["M"]], + "Frye's": null, + "fryer": [["M", "S"]], + "fryer's": null, + "fryers": null, + "Fry": [["M"]], + "Fry's": null, + "fry": [["N", "G", "D", "S"]], + "frying": null, + "F's": null, + "f's": [["K", "A"]], + "prof's": null, + "ref's": null, + "FSLIC": null, + "ft": [["C"]], + "FTC": null, + "FTP": null, + "fuchsia": [["M", "S"]], + "fuchsia's": null, + "fuchsias": null, + "Fuchs": [["M"]], + "Fuchs's": null, + "fucker": [["M", "!"]], + "fucker's": null, + "fuck": [["G", "Z", "J", "R", "D", "M", "S", "!"]], + "fucking": null, + "fuckers": null, + "fuckings": null, + "fucked": null, + "fuck's": null, + "fucks": null, + "FUD": null, + "fuddle": [["G", "S", "D"]], + "fuddling": null, + "fuddles": null, + "fuddled": null, + "fudge": [["G", "M", "S", "D"]], + "fudging": null, + "fudge's": null, + "fudges": null, + "fudged": null, + "fuel": [["A", "S", "D", "G"]], + "refuel": null, + "refuels": null, + "refueled": null, + "refueling": null, + "fuels": null, + "fueled": null, + "fueling": null, + "fueler": [["S", "M"]], + "fuelers": null, + "fueler's": null, + "fuel's": null, + "Fuentes": [["M"]], + "Fuentes's": null, + "fugal": null, + "Fugger": [["M"]], + "Fugger's": null, + "fugitiveness": [["M"]], + "fugitiveness's": null, + "fugitive": [["S", "Y", "M", "P"]], + "fugitives": null, + "fugitively": null, + "fugitive's": null, + "fugue": [["G", "M", "S", "D"]], + "fuguing": null, + "fugue's": null, + "fugues": null, + "fugued": null, + "fuhrer": [["S"]], + "fuhrers": null, + "Fuji": [["M"]], + "Fuji's": null, + "Fujitsu": [["M"]], + "Fujitsu's": null, + "Fujiyama": null, + "Fukuoka": [["M"]], + "Fukuoka's": null, + "Fulani": [["M"]], + "Fulani's": null, + "Fulbright": [["M"]], + "Fulbright's": null, + "fulcrum": [["S", "M"]], + "fulcrums": null, + "fulcrum's": null, + "fulfilled": [["U"]], + "unfulfilled": null, + "fulfiller": [["M"]], + "fulfiller's": null, + "fulfill": [["G", "L", "S", "R", "D"]], + "fulfilling": null, + "fulfillment": [["M", "S"]], + "fulfills": null, + "fulfillment's": null, + "fulfillments": null, + "fullback": [["S", "M", "G"]], + "fullbacks": null, + "fullback's": null, + "fullbacking": null, + "fuller": [["D", "M", "G"]], + "fullered": null, + "fuller's": null, + "fullering": null, + "Fuller": [["M"]], + "Fuller's": null, + "Fullerton": [["M"]], + "Fullerton's": null, + "fullish": null, + "fullness": [["M", "S"]], + "fullness's": null, + "fullnesses": null, + "full": [["R", "D", "P", "S", "G", "Z", "T"]], + "fulled": null, + "fulls": null, + "fulling": null, + "fullers": null, + "fullest": null, + "fullstops": null, + "fullword": [["S", "M"]], + "fullwords": null, + "fullword's": null, + "fully": null, + "fulminate": [["X", "S", "D", "G", "N"]], + "fulminations": null, + "fulminates": null, + "fulminated": null, + "fulminating": null, + "fulmination": [["M"]], + "fulmination's": null, + "fulness's": null, + "fulsomeness": [["S", "M"]], + "fulsomenesses": null, + "fulsomeness's": null, + "fulsome": [["P", "Y"]], + "fulsomely": null, + "Fulton": [["M"]], + "Fulton's": null, + "Fulvia": [["M"]], + "Fulvia's": null, + "fumble": [["G", "Z", "R", "S", "D"]], + "fumbling": [["Y"]], + "fumblers": null, + "fumbler": [["M"]], + "fumbles": null, + "fumbled": null, + "fumbler's": null, + "fumblingly": null, + "fume": [["D", "S", "G"]], + "fumed": null, + "fumes": null, + "fuming": [["Y"]], + "fumigant": [["M", "S"]], + "fumigant's": null, + "fumigants": null, + "fumigate": [["N", "G", "S", "D", "X"]], + "fumigation": [["M"]], + "fumigating": null, + "fumigates": null, + "fumigated": null, + "fumigations": null, + "fumigation's": null, + "fumigator": [["S", "M"]], + "fumigators": null, + "fumigator's": null, + "fumingly": null, + "fumy": [["T", "R"]], + "fumiest": null, + "fumier": null, + "Funafuti": null, + "functionalism": [["M"]], + "functionalism's": null, + "functionalist": [["S", "M"]], + "functionalists": null, + "functionalist's": null, + "functionality": [["S"]], + "functionalities": null, + "functional": [["Y", "S"]], + "functionally": null, + "functionals": null, + "functionary": [["M", "S"]], + "functionary's": null, + "functionaries": null, + "function": [["G", "S", "M", "D"]], + "functioning": null, + "functions": null, + "function's": null, + "functioned": null, + "functor": [["S", "M"]], + "functors": null, + "functor's": null, + "fundamentalism": [["S", "M"]], + "fundamentalisms": null, + "fundamentalism's": null, + "fundamentalist": [["S", "M"]], + "fundamentalists": null, + "fundamentalist's": null, + "fundamental": [["S", "Y"]], + "fundamentals": null, + "fundamentally": null, + "fund": [["A", "S", "M", "R", "D", "Z", "G"]], + "refund": [["B"]], + "refunds": null, + "refund's": null, + "refunder": [["M"]], + "refunded": null, + "refunders": null, + "refunding": null, + "funds": null, + "fund's": null, + "funder": null, + "funded": [["U"]], + "funders": null, + "funding": [["S"]], + "unfunded": null, + "fundholders": null, + "fundholding": null, + "fundings": null, + "Fundy": [["M"]], + "Fundy's": null, + "funeral": [["M", "S"]], + "funeral's": null, + "funerals": null, + "funerary": null, + "funereal": [["Y"]], + "funereally": null, + "funfair": [["M"]], + "funfair's": null, + "fungal": [["S"]], + "fungals": null, + "fungible": [["M"]], + "fungible's": null, + "fungicidal": null, + "fungicide": [["S", "M"]], + "fungicides": null, + "fungicide's": null, + "fungi": [["M"]], + "fungi's": null, + "fungoid": [["S"]], + "fungoids": null, + "fungous": null, + "fungus": [["M"]], + "fungus's": null, + "funicular": [["S", "M"]], + "funiculars": null, + "funicular's": null, + "funk": [["G", "S", "D", "M"]], + "funking": null, + "funks": null, + "funked": null, + "funk's": null, + "funkiness": [["S"]], + "funkinesses": null, + "funky": [["R", "T", "P"]], + "funkier": null, + "funkiest": null, + "fun": [["M", "S"]], + "fun's": null, + "funs": null, + "funned": null, + "funnel": [["S", "G", "M", "D"]], + "funnels": null, + "funneling": null, + "funnel's": null, + "funneled": null, + "funner": null, + "funnest": null, + "funnily": [["U"]], + "unfunnily": null, + "funniness": [["S", "M"]], + "funninesses": null, + "funniness's": null, + "funning": null, + "funny": [["R", "S", "P", "T"]], + "funnier": null, + "funnies": null, + "funniest": null, + "furbelow": [["M", "D", "S", "G"]], + "furbelow's": null, + "furbelowed": null, + "furbelows": null, + "furbelowing": null, + "furbisher": [["M"]], + "furbisher's": null, + "furbish": [["G", "D", "R", "S", "A"]], + "furbishing": null, + "refurbishing": null, + "furbished": null, + "refurbished": null, + "refurbisher": null, + "furbishes": null, + "refurbishes": null, + "refurbish": [["L"]], + "furiousness": [["M"]], + "furiousness's": null, + "furious": [["R", "Y", "P"]], + "furiouser": null, + "furiously": null, + "furlong": [["M", "S"]], + "furlong's": null, + "furlongs": null, + "furlough": [["D", "G", "M"]], + "furloughed": null, + "furloughing": null, + "furlough's": null, + "furloughs": null, + "furl": [["U", "D", "G", "S"]], + "unfurl": null, + "unfurled": null, + "unfurling": null, + "unfurls": null, + "furled": null, + "furling": null, + "furls": null, + "furn": null, + "furnace": [["G", "M", "S", "D"]], + "furnacing": null, + "furnace's": null, + "furnaces": null, + "furnaced": null, + "furnished": [["U"]], + "unfurnished": null, + "furnisher": [["M", "S"]], + "furnisher's": null, + "furnishers": null, + "furnish": [["G", "A", "S", "D"]], + "furnishing": [["S", "M"]], + "refurnishing": null, + "refurnish": null, + "refurnishes": null, + "refurnished": null, + "furnishes": null, + "furnishings": null, + "furnishing's": null, + "furniture": [["S", "M"]], + "furnitures": null, + "furniture's": null, + "furore": [["M", "S"]], + "furore's": null, + "furores": null, + "furor": [["M", "S"]], + "furor's": null, + "furors": null, + "fur": [["P", "M", "S"]], + "furness": null, + "fur's": null, + "furs": null, + "furred": null, + "furrier": [["M"]], + "furrier's": null, + "furriness": [["S", "M"]], + "furrinesses": null, + "furriness's": null, + "furring": [["S", "M"]], + "furrings": null, + "furring's": null, + "furrow": [["D", "M", "G", "S"]], + "furrowed": null, + "furrow's": null, + "furrowing": null, + "furrows": null, + "furry": [["R", "T", "Z", "P"]], + "furriest": null, + "furriers": null, + "furtherance": [["M", "S"]], + "furtherance's": null, + "furtherances": null, + "furtherer": [["M"]], + "furtherer's": null, + "furthermore": null, + "furthermost": null, + "further": [["T", "G", "D", "R", "S"]], + "furtherest": null, + "furthering": null, + "furthered": null, + "furthers": null, + "furthest": null, + "furtiveness": [["S", "M"]], + "furtivenesses": null, + "furtiveness's": null, + "furtive": [["P", "Y"]], + "furtively": null, + "fury": [["S", "M"]], + "furies": null, + "fury's": null, + "furze": [["S", "M"]], + "furzes": null, + "furze's": null, + "fusebox": [["S"]], + "fuseboxes": null, + "fusee": [["S", "M"]], + "fusees": null, + "fusee's": null, + "fuse": [["F", "S", "D", "A", "G", "C", "I"]], + "confuses": null, + "fuses": null, + "refuses": null, + "defuses": null, + "infuses": null, + "fused": null, + "refused": null, + "defused": null, + "infused": null, + "refuse": [["R"]], + "refusing": null, + "fusing": null, + "defusing": null, + "infusing": null, + "defuse": null, + "infuse": [["R", "Z"]], + "fuselage": [["S", "M"]], + "fuselages": null, + "fuselage's": null, + "fuse's": [["A"]], + "refuse's": null, + "Fushun": [["M"]], + "Fushun's": null, + "fusibility": [["S", "M"]], + "fusibilities": null, + "fusibility's": null, + "fusible": [["I"]], + "infusible": [["P"]], + "fusiform": null, + "fusilier": [["M", "S"]], + "fusilier's": null, + "fusiliers": null, + "fusillade": [["S", "D", "M", "G"]], + "fusillades": null, + "fusilladed": null, + "fusillade's": null, + "fusillading": null, + "fusion": [["K", "M", "F", "S", "I"]], + "profusion": null, + "profusion's": null, + "profusions": null, + "fusion's": null, + "confusion's": null, + "infusion's": null, + "confusion": null, + "confusions": null, + "fusions": null, + "infusions": null, + "infusion": null, + "fussbudget": [["M", "S"]], + "fussbudget's": null, + "fussbudgets": null, + "fusser": [["M"]], + "fusser's": null, + "fussily": null, + "fussiness": [["M", "S"]], + "fussiness's": null, + "fussinesses": null, + "fusspot": [["S", "M"]], + "fusspots": null, + "fusspot's": null, + "fuss": [["S", "R", "D", "M", "G"]], + "fusses": null, + "fussed": null, + "fuss's": null, + "fussing": null, + "fussy": [["P", "T", "R"]], + "fussiest": null, + "fussier": null, + "fustian": [["M", "S"]], + "fustian's": null, + "fustians": null, + "fustiness": [["M", "S"]], + "fustiness's": null, + "fustinesses": null, + "fusty": [["R", "P", "T"]], + "fustier": null, + "fustiest": null, + "fut": null, + "futileness": [["M"]], + "futileness's": null, + "futile": [["P", "Y"]], + "futilely": null, + "futility": [["M", "S"]], + "futility's": null, + "futilities": null, + "futon": [["S"]], + "futons": null, + "future": [["S", "M"]], + "futures": null, + "future's": null, + "futurism": [["S", "M"]], + "futurisms": null, + "futurism's": null, + "futuristic": [["S"]], + "futuristics": null, + "futurist": [["S"]], + "futurists": null, + "futurity": [["M", "S"]], + "futurity's": null, + "futurities": null, + "futurologist": [["S"]], + "futurologists": null, + "futurology": [["M", "S"]], + "futurology's": null, + "futurologies": null, + "futz": [["G", "S", "D"]], + "futzing": null, + "futzes": null, + "futzed": null, + "fuze's": null, + "Fuzhou": [["M"]], + "Fuzhou's": null, + "Fuzzbuster": [["M"]], + "Fuzzbuster's": null, + "fuzzily": null, + "fuzziness": [["S", "M"]], + "fuzzinesses": null, + "fuzziness's": null, + "fuzz": [["S", "D", "M", "G"]], + "fuzzes": null, + "fuzzed": null, + "fuzz's": null, + "fuzzing": null, + "fuzzy": [["P", "R", "T"]], + "fuzzier": null, + "fuzziest": null, + "fwd": null, + "FWD": null, + "fwy": null, + "FY": null, + "FYI": null, + "GA": null, + "gabardine": [["S", "M"]], + "gabardines": null, + "gabardine's": null, + "gabbed": null, + "Gabbey": [["M"]], + "Gabbey's": null, + "Gabbie": [["M"]], + "Gabbie's": null, + "Gabbi": [["M"]], + "Gabbi's": null, + "gabbiness": [["S"]], + "gabbinesses": null, + "gabbing": null, + "gabble": [["S", "D", "G"]], + "gabbles": null, + "gabbled": null, + "gabbling": null, + "Gabby": [["M"]], + "Gabby's": null, + "gabby": [["T", "R", "P"]], + "gabbiest": null, + "gabbier": null, + "Gabe": [["M"]], + "Gabe's": null, + "gaberdine's": null, + "Gabey": [["M"]], + "Gabey's": null, + "gabfest": [["M", "S"]], + "gabfest's": null, + "gabfests": null, + "Gabie": [["M"]], + "Gabie's": null, + "Gabi": [["M"]], + "Gabi's": null, + "gable": [["G", "M", "S", "R", "D"]], + "gabling": null, + "gable's": null, + "gables": null, + "gabler": null, + "gabled": null, + "Gable": [["M"]], + "Gable's": null, + "Gabonese": null, + "Gabon": [["M"]], + "Gabon's": null, + "Gaborone": [["M"]], + "Gaborone's": null, + "Gabriela": [["M"]], + "Gabriela's": null, + "Gabriele": [["M"]], + "Gabriele's": null, + "Gabriella": [["M"]], + "Gabriella's": null, + "Gabrielle": [["M"]], + "Gabrielle's": null, + "Gabriellia": [["M"]], + "Gabriellia's": null, + "Gabriell": [["M"]], + "Gabriell's": null, + "Gabriello": [["M"]], + "Gabriello's": null, + "Gabriel": [["M"]], + "Gabriel's": null, + "Gabrila": [["M"]], + "Gabrila's": null, + "gab": [["S"]], + "gabs": null, + "Gaby": [["M"]], + "Gaby's": null, + "Gacrux": [["M"]], + "Gacrux's": null, + "gadabout": [["M", "S"]], + "gadabout's": null, + "gadabouts": null, + "gadded": null, + "gadder": [["M", "S"]], + "gadder's": null, + "gadders": null, + "gadding": null, + "gadfly": [["M", "S"]], + "gadfly's": null, + "gadflies": null, + "gadgetry": [["M", "S"]], + "gadgetry's": null, + "gadgetries": null, + "gadget": [["S", "M"]], + "gadgets": null, + "gadget's": null, + "gadolinium": [["M", "S"]], + "gadolinium's": null, + "gadoliniums": null, + "gad": [["S"]], + "gads": null, + "Gadsden": [["M"]], + "Gadsden's": null, + "Gaea": [["M"]], + "Gaea's": null, + "Gaelan": [["M"]], + "Gaelan's": null, + "Gaelic": [["M"]], + "Gaelic's": null, + "Gael": [["S", "M"]], + "Gaels": null, + "Gael's": null, + "Gae": [["M"]], + "Gae's": null, + "gaffe": [["M", "S"]], + "gaffe's": null, + "gaffes": null, + "gaffer": [["M"]], + "gaffer's": null, + "gaff": [["S", "G", "Z", "R", "D", "M"]], + "gaffs": null, + "gaffing": null, + "gaffers": null, + "gaffed": null, + "gaff's": null, + "gaga": null, + "Gagarin": [["M"]], + "Gagarin's": null, + "gag": [["D", "R", "S", "G"]], + "gaged": null, + "gager": [["M"]], + "gags": null, + "gaging": null, + "Gage": [["M"]], + "Gage's": null, + "gager's": null, + "gage": [["S", "M"]], + "gages": null, + "gage's": null, + "gagged": null, + "gagging": null, + "gaggle": [["S", "D", "G"]], + "gaggles": null, + "gaggled": null, + "gaggling": null, + "gagwriter": [["S"]], + "gagwriters": null, + "gaiety": [["M", "S"]], + "gaiety's": null, + "gaieties": null, + "Gaile": [["M"]], + "Gaile's": null, + "Gail": [["M"]], + "Gail's": null, + "gaily": null, + "gain": [["A", "D", "G", "S"]], + "regain": null, + "regained": null, + "regaining": null, + "regains": null, + "gained": null, + "gaining": [["S"]], + "gains": null, + "gainer": [["S", "M"]], + "gainers": null, + "gainer's": null, + "Gaines": [["M"]], + "Gaines's": null, + "Gainesville": [["M"]], + "Gainesville's": null, + "gainfulness": [["M"]], + "gainfulness's": null, + "gainful": [["Y", "P"]], + "gainfully": null, + "gainings": null, + "gainly": [["U"]], + "ungainly": [["P", "R", "T"]], + "gainsaid": null, + "gainsayer": [["M"]], + "gainsayer's": null, + "gainsay": [["R", "S", "Z", "G"]], + "gainsays": null, + "gainsayers": null, + "gainsaying": null, + "Gainsborough": [["M"]], + "Gainsborough's": null, + "gaiter": [["M"]], + "gaiter's": null, + "gait": [["G", "S", "Z", "M", "R", "D"]], + "gaiting": null, + "gaits": null, + "gaiters": null, + "gait's": null, + "gaited": null, + "Gaithersburg": [["M"]], + "Gaithersburg's": null, + "galactic": null, + "Galahad": [["M", "S"]], + "Galahad's": null, + "Galahads": null, + "Galapagos": [["M"]], + "Galapagos's": null, + "gal": [["A", "S"]], + "regal": [["G", "Y", "R", "D"]], + "regals": null, + "gals": null, + "gala": [["S", "M"]], + "galas": null, + "gala's": null, + "Galatea": [["M"]], + "Galatea's": null, + "Galatia": [["M"]], + "Galatia's": null, + "Galatians": [["M"]], + "Galatians's": null, + "Galaxy": [["M"]], + "Galaxy's": null, + "galaxy": [["M", "S"]], + "galaxy's": null, + "galaxies": null, + "Galbraith": [["M"]], + "Galbraith's": null, + "Galbreath": [["M"]], + "Galbreath's": null, + "gale": [["A", "S"]], + "regale": [["L"]], + "regales": null, + "gales": null, + "Gale": [["M"]], + "Gale's": null, + "galen": null, + "galena": [["M", "S"]], + "galena's": null, + "galenas": null, + "galenite": [["M"]], + "galenite's": null, + "Galen": [["M"]], + "Galen's": null, + "gale's": null, + "Galibi": [["M"]], + "Galibi's": null, + "Galilean": [["M", "S"]], + "Galilean's": null, + "Galileans": null, + "Galilee": [["M"]], + "Galilee's": null, + "Galileo": [["M"]], + "Galileo's": null, + "Galina": [["M"]], + "Galina's": null, + "Gallagher": [["M"]], + "Gallagher's": null, + "gallanted": null, + "gallanting": null, + "gallantry": [["M", "S"]], + "gallantry's": null, + "gallantries": null, + "gallants": null, + "gallant": [["U", "Y"]], + "ungallant": null, + "ungallantly": null, + "gallantly": null, + "Gallard": [["M"]], + "Gallard's": null, + "gallbladder": [["M", "S"]], + "gallbladder's": null, + "gallbladders": null, + "Gallegos": [["M"]], + "Gallegos's": null, + "galleon": [["S", "M"]], + "galleons": null, + "galleon's": null, + "galleria": [["S"]], + "gallerias": null, + "gallery": [["M", "S", "D", "G"]], + "gallery's": null, + "galleries": null, + "galleried": null, + "gallerying": null, + "galley": [["M", "S"]], + "galley's": null, + "galleys": null, + "Gallic": null, + "Gallicism": [["S", "M"]], + "Gallicisms": null, + "Gallicism's": null, + "gallimaufry": [["M", "S"]], + "gallimaufry's": null, + "gallimaufries": null, + "galling": [["Y"]], + "gallingly": null, + "gallium": [["S", "M"]], + "galliums": null, + "gallium's": null, + "gallivant": [["G", "D", "S"]], + "gallivanting": null, + "gallivanted": null, + "gallivants": null, + "Gall": [["M"]], + "Gall's": null, + "gallonage": [["M"]], + "gallonage's": null, + "gallon": [["S", "M"]], + "gallons": null, + "gallon's": null, + "galloper": [["M"]], + "galloper's": null, + "gallop": [["G", "S", "R", "D", "Z"]], + "galloping": null, + "gallops": null, + "galloped": null, + "gallopers": null, + "Galloway": [["M"]], + "Galloway's": null, + "gallows": [["M"]], + "gallows's": null, + "gall": [["S", "G", "M", "D"]], + "galls": null, + "gall's": null, + "galled": null, + "gallstone": [["M", "S"]], + "gallstone's": null, + "gallstones": null, + "Gallup": [["M"]], + "Gallup's": null, + "Gal": [["M", "N"]], + "Gal's": null, + "Galois": [["M"]], + "Galois's": null, + "galoot": [["M", "S"]], + "galoot's": null, + "galoots": null, + "galore": [["S"]], + "galores": null, + "galosh": [["G", "M", "S", "D"]], + "galoshing": null, + "galosh's": null, + "galoshes": null, + "galoshed": null, + "gal's": null, + "Galsworthy": [["M"]], + "Galsworthy's": null, + "galumph": [["G", "D"]], + "galumphing": null, + "galumphed": null, + "galumphs": null, + "galvanic": null, + "Galvani": [["M"]], + "Galvani's": null, + "galvanism": [["M", "S"]], + "galvanism's": null, + "galvanisms": null, + "galvanization": [["S", "M"]], + "galvanizations": null, + "galvanization's": null, + "galvanize": [["S", "D", "G"]], + "galvanizes": null, + "galvanized": null, + "galvanizing": null, + "Galvan": [["M"]], + "Galvan's": null, + "galvanometer": [["S", "M"]], + "galvanometers": null, + "galvanometer's": null, + "galvanometric": null, + "Galven": [["M"]], + "Galven's": null, + "Galveston": [["M"]], + "Galveston's": null, + "Galvin": [["M"]], + "Galvin's": null, + "Ga": [["M"]], + "Ga's": null, + "Gamaliel": [["M"]], + "Gamaliel's": null, + "Gama": [["M"]], + "Gama's": null, + "Gambia": [["M"]], + "Gambia's": null, + "Gambian": [["S"]], + "Gambians": null, + "gambit": [["M", "S"]], + "gambit's": null, + "gambits": null, + "gamble": [["G", "Z", "R", "S", "D"]], + "gambling": null, + "gamblers": null, + "gambler": [["M"]], + "gambles": null, + "gambled": null, + "Gamble": [["M"]], + "Gamble's": null, + "gambler's": null, + "gambol": [["S", "G", "D"]], + "gambols": null, + "gamboling": null, + "gamboled": null, + "gamecock": [["S", "M"]], + "gamecocks": null, + "gamecock's": null, + "gamekeeper": [["M", "S"]], + "gamekeeper's": null, + "gamekeepers": null, + "gameness": [["M", "S"]], + "gameness's": null, + "gamenesses": null, + "game": [["P", "J", "D", "R", "S", "M", "Y", "T", "Z", "G"]], + "gamings": null, + "gamed": null, + "gamer": null, + "games": null, + "game's": null, + "gamely": null, + "gamest": [["R", "Z"]], + "gamers": null, + "gaming": [["M"]], + "gamesmanship": [["S", "M"]], + "gamesmanships": null, + "gamesmanship's": null, + "gamesmen": null, + "gamester": [["M"]], + "gamester's": null, + "gamesters": null, + "gamete": [["M", "S"]], + "gamete's": null, + "gametes": null, + "gametic": null, + "gamine": [["S", "M"]], + "gamines": null, + "gamine's": null, + "gaminess": [["M", "S"]], + "gaminess's": null, + "gaminesses": null, + "gaming's": null, + "gamin": [["M", "S"]], + "gamin's": null, + "gamins": null, + "gamma": [["M", "S"]], + "gamma's": null, + "gammas": null, + "gammon": [["D", "M", "S", "G"]], + "gammoned": null, + "gammon's": null, + "gammons": null, + "gammoning": null, + "Gamow": [["M"]], + "Gamow's": null, + "gamut": [["M", "S"]], + "gamut's": null, + "gamuts": null, + "gamy": [["T", "R", "P"]], + "gamiest": null, + "gamier": null, + "gander": [["D", "M", "G", "S"]], + "gandered": null, + "gander's": null, + "gandering": null, + "ganders": null, + "Gandhian": null, + "Gandhi": [["M"]], + "Gandhi's": null, + "gangbusters": null, + "ganger": [["M"]], + "ganger's": null, + "Ganges": [["M"]], + "Ganges's": null, + "gang": [["G", "R", "D", "M", "S"]], + "ganging": null, + "ganged": null, + "gang's": null, + "gangs": null, + "gangland": [["S", "M"]], + "ganglands": null, + "gangland's": null, + "ganglia": [["M"]], + "ganglia's": null, + "gangling": null, + "ganglionic": null, + "ganglion": [["M"]], + "ganglion's": null, + "gangplank": [["S", "M"]], + "gangplanks": null, + "gangplank's": null, + "gangrene": [["S", "D", "M", "G"]], + "gangrenes": null, + "gangrened": null, + "gangrene's": null, + "gangrening": null, + "gangrenous": null, + "gangster": [["S", "M"]], + "gangsters": null, + "gangster's": null, + "Gangtok": [["M"]], + "Gangtok's": null, + "gangway": [["M", "S"]], + "gangway's": null, + "gangways": null, + "Gan": [["M"]], + "Gan's": null, + "gannet": [["S", "M"]], + "gannets": null, + "gannet's": null, + "Gannie": [["M"]], + "Gannie's": null, + "Gannon": [["M"]], + "Gannon's": null, + "Ganny": [["M"]], + "Ganny's": null, + "gantlet": [["G", "M", "D", "S"]], + "gantleting": null, + "gantlet's": null, + "gantleted": null, + "gantlets": null, + "Gantry": [["M"]], + "Gantry's": null, + "gantry": [["M", "S"]], + "gantry's": null, + "gantries": null, + "Ganymede": [["M"]], + "Ganymede's": null, + "GAO": null, + "gaoler": [["M"]], + "gaoler's": null, + "gaol": [["M", "R", "D", "G", "Z", "S"]], + "gaol's": null, + "gaoled": null, + "gaoling": null, + "gaolers": null, + "gaols": null, + "gaper": [["M"]], + "gaper's": null, + "gape": [["S"]], + "gapes": null, + "gaping": [["Y"]], + "gapingly": null, + "gapped": null, + "gapping": null, + "gap": [["S", "J", "M", "D", "R", "G"]], + "gaps": null, + "gapings": null, + "gap's": null, + "gaped": null, + "garage": [["G", "M", "S", "D"]], + "garaging": null, + "garage's": null, + "garages": null, + "garaged": null, + "Garald": [["M"]], + "Garald's": null, + "garbageman": [["M"]], + "garbageman's": null, + "garbage": [["S", "D", "M", "G"]], + "garbages": null, + "garbaged": null, + "garbage's": null, + "garbaging": null, + "garbanzo": [["M", "S"]], + "garbanzo's": null, + "garbanzos": null, + "garb": [["D", "M", "G", "S"]], + "garbed": null, + "garb's": null, + "garbing": null, + "garbs": null, + "garbler": [["M"]], + "garbler's": null, + "garble": [["R", "S", "D", "G"]], + "garbles": null, + "garbled": null, + "garbling": null, + "Garbo": [["M"]], + "Garbo's": null, + "Garcia": [["M"]], + "Garcia's": null, + "gar�on": [["S", "M"]], + "gar�ons": null, + "gar�on's": null, + "gardener": [["M"]], + "gardener's": null, + "Gardener": [["M"]], + "Gardener's": null, + "gardenia": [["S", "M"]], + "gardenias": null, + "gardenia's": null, + "gardening": [["M"]], + "gardening's": null, + "garden": [["Z", "G", "R", "D", "M", "S"]], + "gardeners": null, + "gardened": null, + "garden's": null, + "gardens": null, + "Gardie": [["M"]], + "Gardie's": null, + "Gardiner": [["M"]], + "Gardiner's": null, + "Gard": [["M"]], + "Gard's": null, + "Gardner": [["M"]], + "Gardner's": null, + "Gardy": [["M"]], + "Gardy's": null, + "Garek": [["M"]], + "Garek's": null, + "Gare": [["M", "H"]], + "Gare's": null, + "Gareth": [["M"]], + "Gareth's": null, + "Garey": [["M"]], + "Garey's": null, + "Garfield": [["M"]], + "Garfield's": null, + "garfish": [["M", "S"]], + "garfish's": null, + "garfishes": null, + "Garfunkel": [["M"]], + "Garfunkel's": null, + "Gargantua": [["M"]], + "Gargantua's": null, + "gargantuan": null, + "gargle": [["S", "D", "G"]], + "gargles": null, + "gargled": null, + "gargling": null, + "gargoyle": [["D", "S", "M"]], + "gargoyled": null, + "gargoyles": null, + "gargoyle's": null, + "Garibaldi": [["M"]], + "Garibaldi's": null, + "Garik": [["M"]], + "Garik's": null, + "garishness": [["M", "S"]], + "garishness's": null, + "garishnesses": null, + "garish": [["Y", "P"]], + "garishly": null, + "Garland": [["M"]], + "Garland's": null, + "garland": [["S", "M", "D", "G"]], + "garlands": null, + "garland's": null, + "garlanded": null, + "garlanding": null, + "garlicked": null, + "garlicking": null, + "garlicky": null, + "garlic": [["S", "M"]], + "garlics": null, + "garlic's": null, + "garment": [["M", "D", "G", "S"]], + "garment's": null, + "garmented": null, + "garmenting": null, + "garments": null, + "Gar": [["M", "H"]], + "Gar's": null, + "Garth": [["M"]], + "Garner": [["M"]], + "Garner's": null, + "garner": [["S", "G", "D"]], + "garners": null, + "garnering": null, + "garnered": null, + "Garnet": [["M"]], + "Garnet's": null, + "garnet": [["S", "M"]], + "garnets": null, + "garnet's": null, + "Garnette": [["M"]], + "Garnette's": null, + "Garnett": [["M"]], + "Garnett's": null, + "garnish": [["D", "S", "L", "G"]], + "garnished": null, + "garnishes": null, + "garnishment": [["M", "S"]], + "garnishing": null, + "garnisheeing": null, + "garnishee": [["S", "D", "M"]], + "garnishees": null, + "garnisheed": null, + "garnishee's": null, + "garnishment's": null, + "garnishments": null, + "Garold": [["M"]], + "Garold's": null, + "garote's": null, + "garotte's": null, + "Garrard": [["M"]], + "Garrard's": null, + "garred": null, + "Garrek": [["M"]], + "Garrek's": null, + "Garreth": [["M"]], + "Garreth's": null, + "Garret": [["M"]], + "Garret's": null, + "garret": [["S", "M"]], + "garrets": null, + "garret's": null, + "Garrett": [["M"]], + "Garrett's": null, + "Garrick": [["M"]], + "Garrick's": null, + "Garrik": [["M"]], + "Garrik's": null, + "garring": null, + "Garrison": [["M"]], + "Garrison's": null, + "garrison": [["S", "G", "M", "D"]], + "garrisons": null, + "garrisoning": null, + "garrison's": null, + "garrisoned": null, + "garroter": [["M"]], + "garroter's": null, + "garrote": [["S", "R", "D", "M", "Z", "G"]], + "garrotes": null, + "garroted": null, + "garrote's": null, + "garroters": null, + "garroting": null, + "Garrot": [["M"]], + "Garrot's": null, + "garrotte's": null, + "Garrott": [["M"]], + "Garrott's": null, + "garrulity": [["S", "M"]], + "garrulities": null, + "garrulity's": null, + "garrulousness": [["M", "S"]], + "garrulousness's": null, + "garrulousnesses": null, + "garrulous": [["P", "Y"]], + "garrulously": null, + "Garry": [["M"]], + "Garry's": null, + "gar": [["S", "L", "M"]], + "gars": null, + "gar's": null, + "garter": [["S", "G", "D", "M"]], + "garters": null, + "gartering": null, + "gartered": null, + "garter's": null, + "Garth's": null, + "Garvey": [["M"]], + "Garvey's": null, + "Garvin": [["M"]], + "Garvin's": null, + "Garv": [["M"]], + "Garv's": null, + "Garvy": [["M"]], + "Garvy's": null, + "Garwin": [["M"]], + "Garwin's": null, + "Garwood": [["M"]], + "Garwood's": null, + "Gary": [["M"]], + "Gary's": null, + "Garza": [["M"]], + "Garza's": null, + "gasbag": [["M", "S"]], + "gasbag's": null, + "gasbags": null, + "Gascony": [["M"]], + "Gascony's": null, + "gaseousness": [["M"]], + "gaseousness's": null, + "gaseous": [["Y", "P"]], + "gaseously": null, + "gases": [["C"]], + "degases": null, + "gas": [["F", "C"]], + "congas": null, + "degas": null, + "gash": [["G", "T", "M", "S", "R", "D"]], + "gashing": null, + "gashest": null, + "gash's": null, + "gashes": null, + "gasher": null, + "gashed": null, + "gasification": [["M"]], + "gasification's": null, + "gasifier": [["M"]], + "gasifier's": null, + "gasify": [["S", "R", "D", "G", "X", "Z", "N"]], + "gasifies": null, + "gasified": null, + "gasifying": null, + "gasifications": null, + "gasifiers": null, + "gasket": [["S", "M"]], + "gaskets": null, + "gasket's": null, + "gaslight": [["D", "M", "S"]], + "gaslighted": null, + "gaslight's": null, + "gaslights": null, + "gasohol": [["S"]], + "gasohols": null, + "gasoline": [["M", "S"]], + "gasoline's": null, + "gasolines": null, + "gasometer": [["M"]], + "gasometer's": null, + "Gaspard": [["M"]], + "Gaspard's": null, + "Gaspar": [["M"]], + "Gaspar's": null, + "Gasparo": [["M"]], + "Gasparo's": null, + "gasper": [["M"]], + "gasper's": null, + "Gasper": [["M"]], + "Gasper's": null, + "gasp": [["G", "Z", "S", "R", "D"]], + "gasping": [["Y"]], + "gaspers": null, + "gasps": null, + "gasped": null, + "gaspingly": null, + "gas's": null, + "gassed": [["C"]], + "degassed": null, + "Gasser": [["M"]], + "Gasser's": null, + "gasser": [["M", "S"]], + "gasser's": null, + "gassers": null, + "Gasset": [["M"]], + "Gasset's": null, + "gassiness": [["M"]], + "gassiness's": null, + "gassing": [["S", "M"]], + "gassings": null, + "gassing's": null, + "gassy": [["P", "T", "R"]], + "gassiest": null, + "gassier": null, + "Gaston": [["M"]], + "Gaston's": null, + "gastric": null, + "gastritides": null, + "gastritis": [["M", "S"]], + "gastritis's": null, + "gastritises": null, + "gastroenteritides": null, + "gastroenteritis": [["M"]], + "gastroenteritis's": null, + "gastrointestinal": null, + "gastronome": [["S", "M"]], + "gastronomes": null, + "gastronome's": null, + "gastronomic": null, + "gastronomical": [["Y"]], + "gastronomically": null, + "gastronomy": [["M", "S"]], + "gastronomy's": null, + "gastronomies": null, + "gastropod": [["S", "M"]], + "gastropods": null, + "gastropod's": null, + "gasworks": [["M"]], + "gasworks's": null, + "gateau": [["M", "S"]], + "gateau's": null, + "gateaus": null, + "gateaux": null, + "gatecrash": [["G", "Z", "S", "R", "D"]], + "gatecrashing": null, + "gatecrashers": null, + "gatecrashes": null, + "gatecrasher": null, + "gatecrashed": null, + "gatehouse": [["M", "S"]], + "gatehouse's": null, + "gatehouses": null, + "gatekeeper": [["S", "M"]], + "gatekeepers": null, + "gatekeeper's": null, + "gate": [["M", "G", "D", "S"]], + "gate's": null, + "gating": null, + "gated": null, + "gates": null, + "gatepost": [["S", "M"]], + "gateposts": null, + "gatepost's": null, + "Gates": null, + "gateway": [["M", "S"]], + "gateway's": null, + "gateways": null, + "gathered": [["I", "A"]], + "ingathered": null, + "regathered": null, + "gatherer": [["M"]], + "gatherer's": null, + "gathering": [["M"]], + "gathering's": null, + "gather": [["J", "R", "D", "Z", "G", "S"]], + "gatherings": null, + "gatherers": null, + "gathers": [["A"]], + "regathers": null, + "Gatlinburg": [["M"]], + "Gatlinburg's": null, + "Gatling": [["M"]], + "Gatling's": null, + "Gatorade": [["M"]], + "Gatorade's": null, + "gator": [["M", "S"]], + "gator's": null, + "gators": null, + "Gatsby": [["M"]], + "Gatsby's": null, + "Gatun": [["M"]], + "Gatun's": null, + "gaucheness": [["S", "M"]], + "gauchenesses": null, + "gaucheness's": null, + "gaucherie": [["S", "M"]], + "gaucheries": null, + "gaucherie's": null, + "gauche": [["T", "Y", "P", "R"]], + "gauchest": null, + "gauchely": null, + "gaucher": null, + "gaucho": [["S", "M"]], + "gauchos": null, + "gaucho's": null, + "gaudily": null, + "gaudiness": [["M", "S"]], + "gaudiness's": null, + "gaudinesses": null, + "gaudy": [["P", "R", "S", "T"]], + "gaudier": null, + "gaudies": null, + "gaudiest": null, + "gaugeable": null, + "gauger": [["M"]], + "gauger's": null, + "Gauguin": [["M"]], + "Gauguin's": null, + "Gaulish": [["M"]], + "Gaulish's": null, + "Gaulle": [["M"]], + "Gaulle's": null, + "Gaul": [["M", "S"]], + "Gaul's": null, + "Gauls": null, + "Gaultiero": [["M"]], + "Gaultiero's": null, + "gauntlet": [["G", "S", "D", "M"]], + "gauntleting": null, + "gauntlets": null, + "gauntleted": null, + "gauntlet's": null, + "Gauntley": [["M"]], + "Gauntley's": null, + "gauntness": [["M", "S"]], + "gauntness's": null, + "gauntnesses": null, + "gaunt": [["P", "Y", "R", "D", "S", "G", "T"]], + "gauntly": null, + "gaunter": null, + "gaunted": null, + "gaunts": null, + "gaunting": null, + "gauntest": null, + "gauss": [["C"]], + "gausses": null, + "Gaussian": null, + "Gauss": [["M"]], + "Gauss's": null, + "gauss's": null, + "Gautama": [["M"]], + "Gautama's": null, + "Gauthier": [["M"]], + "Gauthier's": null, + "Gautier": [["M"]], + "Gautier's": null, + "gauze": [["S", "D", "G", "M"]], + "gauzes": null, + "gauzed": null, + "gauzing": null, + "gauze's": null, + "gauziness": [["M", "S"]], + "gauziness's": null, + "gauzinesses": null, + "gauzy": [["T", "R", "P"]], + "gauziest": null, + "gauzier": null, + "Gavan": [["M"]], + "Gavan's": null, + "gave": null, + "gavel": [["G", "M", "D", "S"]], + "gaveling": null, + "gavel's": null, + "gaveled": null, + "gavels": null, + "Gaven": [["M"]], + "Gaven's": null, + "Gavin": [["M"]], + "Gavin's": null, + "Gav": [["M", "N"]], + "Gav's": null, + "gavotte": [["M", "S", "D", "G"]], + "gavotte's": null, + "gavottes": null, + "gavotted": null, + "gavotting": null, + "Gavra": [["M"]], + "Gavra's": null, + "Gavrielle": [["M"]], + "Gavrielle's": null, + "Gawain": [["M"]], + "Gawain's": null, + "Gawen": [["M"]], + "Gawen's": null, + "gawkily": null, + "gawkiness": [["M", "S"]], + "gawkiness's": null, + "gawkinesses": null, + "gawk": [["S", "G", "R", "D", "M"]], + "gawks": null, + "gawking": null, + "gawker": null, + "gawked": null, + "gawk's": null, + "gawky": [["R", "S", "P", "T"]], + "gawkier": null, + "gawkies": null, + "gawkiest": null, + "Gayel": [["M"]], + "Gayel's": null, + "Gayelord": [["M"]], + "Gayelord's": null, + "Gaye": [["M"]], + "Gaye's": null, + "gayety's": null, + "Gayla": [["M"]], + "Gayla's": null, + "Gayleen": [["M"]], + "Gayleen's": null, + "Gaylene": [["M"]], + "Gaylene's": null, + "Gayler": [["M"]], + "Gayler's": null, + "Gayle": [["R", "M"]], + "Gayle's": null, + "Gaylord": [["M"]], + "Gaylord's": null, + "Gaylor": [["M"]], + "Gaylor's": null, + "Gay": [["M"]], + "Gay's": null, + "gayness": [["S", "M"]], + "gaynesses": null, + "gayness's": null, + "Gaynor": [["M"]], + "Gaynor's": null, + "gay": [["R", "T", "P", "S"]], + "gayer": null, + "gayest": null, + "gays": null, + "Gaza": [["M"]], + "Gaza's": null, + "gazebo": [["S", "M"]], + "gazebos": null, + "gazebo's": null, + "gaze": [["D", "R", "S", "Z", "G"]], + "gazed": null, + "gazer": [["M"]], + "gazes": null, + "gazers": null, + "gazing": null, + "gazelle": [["M", "S"]], + "gazelle's": null, + "gazelles": null, + "gazer's": null, + "gazetteer": [["S", "G", "D", "M"]], + "gazetteers": null, + "gazetteering": null, + "gazetteered": null, + "gazetteer's": null, + "gazette": [["M", "G", "S", "D"]], + "gazette's": null, + "gazetting": null, + "gazettes": null, + "gazetted": null, + "Gaziantep": [["M"]], + "Gaziantep's": null, + "gazillion": [["S"]], + "gazillions": null, + "gazpacho": [["M", "S"]], + "gazpacho's": null, + "gazpachos": null, + "GB": null, + "G": [["B"]], + "Gdansk": [["M"]], + "Gdansk's": null, + "Gd": [["M"]], + "Gd's": null, + "GDP": null, + "Gearalt": [["M"]], + "Gearalt's": null, + "Gearard": [["M"]], + "Gearard's": null, + "gearbox": [["S", "M"]], + "gearboxes": null, + "gearbox's": null, + "gear": [["D", "M", "J", "S", "G"]], + "geared": null, + "gear's": null, + "gearings": null, + "gears": null, + "gearing": [["M"]], + "gearing's": null, + "gearshift": [["M", "S"]], + "gearshift's": null, + "gearshifts": null, + "gearstick": null, + "gearwheel": [["S", "M"]], + "gearwheels": null, + "gearwheel's": null, + "Geary": [["M"]], + "Geary's": null, + "gecko": [["M", "S"]], + "gecko's": null, + "geckos": null, + "GED": null, + "geegaw's": null, + "geeing": null, + "geek": [["S", "M"]], + "geeks": null, + "geek's": null, + "geeky": [["R", "T"]], + "geekier": null, + "geekiest": null, + "geese": [["M"]], + "geese's": null, + "geest": [["M"]], + "geest's": null, + "gee": [["T", "D", "S"]], + "geed": null, + "gees": null, + "geezer": [["M", "S"]], + "geezer's": null, + "geezers": null, + "Gehenna": [["M"]], + "Gehenna's": null, + "Gehrig": [["M"]], + "Gehrig's": null, + "Geiger": [["M"]], + "Geiger's": null, + "Geigy": [["M"]], + "Geigy's": null, + "geisha": [["M"]], + "geisha's": null, + "gelatinousness": [["M"]], + "gelatinousness's": null, + "gelatinous": [["P", "Y"]], + "gelatinously": null, + "gelatin": [["S", "M"]], + "gelatins": null, + "gelatin's": null, + "gelcap": null, + "gelding": [["M"]], + "gelding's": null, + "geld": [["J", "S", "G", "D"]], + "geldings": null, + "gelds": null, + "gelded": null, + "gelid": null, + "gelignite": [["M", "S"]], + "gelignite's": null, + "gelignites": null, + "gelled": null, + "gelling": null, + "gel": [["M", "B", "S"]], + "gel's": null, + "gelable": null, + "gels": null, + "Gelya": [["M"]], + "Gelya's": null, + "Ge": [["M"]], + "Ge's": null, + "GE": [["M"]], + "GE's": null, + "Gemini": [["S", "M"]], + "Geminis": null, + "Gemini's": null, + "gemlike": null, + "Gemma": [["M"]], + "Gemma's": null, + "gemmed": null, + "gemming": null, + "gem": [["M", "S"]], + "gem's": null, + "gems": null, + "gemological": null, + "gemologist": [["M", "S"]], + "gemologist's": null, + "gemologists": null, + "gemology": [["M", "S"]], + "gemology's": null, + "gemologies": null, + "gemstone": [["S", "M"]], + "gemstones": null, + "gemstone's": null, + "gen": null, + "Gena": [["M"]], + "Gena's": null, + "Genaro": [["M"]], + "Genaro's": null, + "gendarme": [["M", "S"]], + "gendarme's": null, + "gendarmes": null, + "gender": [["D", "M", "G", "S"]], + "gendered": null, + "gender's": null, + "gendering": null, + "genders": null, + "genderless": null, + "genealogical": [["Y"]], + "genealogically": null, + "genealogist": [["S", "M"]], + "genealogists": null, + "genealogist's": null, + "genealogy": [["M", "S"]], + "genealogy's": null, + "genealogies": null, + "Gene": [["M"]], + "Gene's": null, + "gene": [["M", "S"]], + "gene's": null, + "genes": [["S"]], + "generalissimo": [["S", "M"]], + "generalissimos": null, + "generalissimo's": null, + "generalist": [["M", "S"]], + "generalist's": null, + "generalists": null, + "generality": [["M", "S"]], + "generality's": null, + "generalities": null, + "generalizable": [["S", "M"]], + "generalizables": null, + "generalizable's": null, + "generalization": [["M", "S"]], + "generalization's": null, + "generalizations": null, + "generalized": [["U"]], + "ungeneralized": null, + "generalize": [["G", "Z", "B", "S", "R", "D"]], + "generalizing": null, + "generalizers": null, + "generalizes": null, + "generalizer": [["M"]], + "generalizer's": null, + "general": [["M", "S", "P", "Y"]], + "general's": null, + "generals": null, + "generalness": [["M"]], + "generally": null, + "generalness's": null, + "generalship": [["S", "M"]], + "generalships": null, + "generalship's": null, + "genera": [["M"]], + "genera's": null, + "generate": [["C", "X", "A", "V", "N", "G", "S", "D"]], + "degenerations": null, + "degeneration": null, + "degenerating": null, + "degenerates": null, + "degenerated": null, + "generations": null, + "regenerations": null, + "regenerate": [["U"]], + "regeneration": null, + "regenerating": null, + "regenerates": null, + "regenerated": null, + "generative": [["A", "Y"]], + "generation": [["M", "C", "A"]], + "generating": null, + "generates": null, + "generated": null, + "generational": null, + "generation's": null, + "degeneration's": null, + "regeneration's": null, + "regenerative": null, + "regeneratively": null, + "generatively": null, + "generators": [["A"]], + "regenerators": null, + "generator": [["S", "M"]], + "generator's": null, + "generically": null, + "generic": [["P", "S"]], + "genericness": null, + "generics": null, + "generosity": [["M", "S"]], + "generosity's": null, + "generosities": null, + "generously": [["U"]], + "ungenerously": null, + "generousness": [["S", "M"]], + "generousnesses": null, + "generousness's": null, + "generous": [["P", "Y"]], + "Genesco": [["M"]], + "Genesco's": null, + "genesis": [["M"]], + "genesis's": null, + "Genesis": [["M"]], + "Genesis's": null, + "geneses": null, + "genetically": null, + "geneticist": [["M", "S"]], + "geneticist's": null, + "geneticists": null, + "genetic": [["S"]], + "genetics": [["M"]], + "genetics's": null, + "Genet": [["M"]], + "Genet's": null, + "Geneva": [["M"]], + "Geneva's": null, + "Genevieve": [["M"]], + "Genevieve's": null, + "Genevra": [["M"]], + "Genevra's": null, + "Genghis": [["M"]], + "Genghis's": null, + "geniality": [["F", "M", "S"]], + "congenialities": null, + "geniality's": null, + "genialities": null, + "genially": [["F"]], + "congenially": null, + "genialness": [["M"]], + "genialness's": null, + "genial": [["P", "Y"]], + "Genia": [["M"]], + "Genia's": null, + "genies": [["K"]], + "progenies": null, + "genie": [["S", "M"]], + "genie's": null, + "genii": [["M"]], + "genii's": null, + "genitalia": null, + "genitals": null, + "genital": [["Y", "F"]], + "genitally": null, + "congenitally": null, + "congenital": null, + "genitive": [["S", "M"]], + "genitives": null, + "genitive's": null, + "genitourinary": null, + "genius": [["S", "M"]], + "geniuses": null, + "genius's": null, + "Gen": [["M"]], + "Gen's": null, + "Genna": [["M"]], + "Genna's": null, + "Gennie": [["M"]], + "Gennie's": null, + "Gennifer": [["M"]], + "Gennifer's": null, + "Genni": [["M"]], + "Genni's": null, + "Genny": [["M"]], + "Genny's": null, + "Genoa": [["S", "M"]], + "Genoas": null, + "Genoa's": null, + "genocidal": null, + "genocide": [["S", "M"]], + "genocides": null, + "genocide's": null, + "Geno": [["M"]], + "Geno's": null, + "genome": [["S", "M"]], + "genomes": null, + "genome's": null, + "genotype": [["M", "S"]], + "genotype's": null, + "genotypes": null, + "Genovera": [["M"]], + "Genovera's": null, + "genre": [["M", "S"]], + "genre's": null, + "genres": null, + "gent": [["A", "M", "S"]], + "regent": null, + "regent's": null, + "regents": null, + "gent's": null, + "gents": null, + "genteelness": [["M", "S"]], + "genteelness's": null, + "genteelnesses": null, + "genteel": [["P", "R", "Y", "T"]], + "genteeler": null, + "genteelly": null, + "genteelest": null, + "gentian": [["S", "M"]], + "gentians": null, + "gentian's": null, + "gentile": [["S"]], + "gentiles": null, + "Gentile's": null, + "gentility": [["M", "S"]], + "gentility's": null, + "gentilities": null, + "gentlefolk": [["S"]], + "gentlefolks": null, + "gentlemanliness": [["M"]], + "gentlemanliness's": null, + "gentlemanly": [["U"]], + "ungentlemanly": null, + "gentleman": [["Y", "M"]], + "gentleman's": null, + "gentlemen": null, + "gentleness": [["S", "M"]], + "gentlenesses": null, + "gentleness's": null, + "gentle": [["P", "R", "S", "D", "G", "T"]], + "gentler": null, + "gentles": null, + "gentled": null, + "gentling": null, + "gentlest": null, + "gentlewoman": [["M"]], + "gentlewoman's": null, + "gentlewomen": [["M"]], + "gentlewomen's": null, + "gently": null, + "gentrification": [["M"]], + "gentrification's": null, + "gentrify": [["N", "S", "D", "G", "X"]], + "gentrifies": null, + "gentrified": null, + "gentrifying": null, + "gentrifications": null, + "Gentry": [["M"]], + "Gentry's": null, + "gentry": [["M", "S"]], + "gentry's": null, + "gentries": null, + "genuflect": [["G", "D", "S"]], + "genuflecting": null, + "genuflected": null, + "genuflects": null, + "genuflection": [["M", "S"]], + "genuflection's": null, + "genuflections": null, + "genuineness": [["S", "M"]], + "genuinenesses": null, + "genuineness's": null, + "genuine": [["P", "Y"]], + "genuinely": null, + "genus": null, + "Genvieve": [["M"]], + "Genvieve's": null, + "geocentric": null, + "geocentrically": null, + "geocentricism": null, + "geochemical": [["Y"]], + "geochemically": null, + "geochemistry": [["M", "S"]], + "geochemistry's": null, + "geochemistries": null, + "geochronology": [["M"]], + "geochronology's": null, + "geodesic": [["S"]], + "geodesics": null, + "geode": [["S", "M"]], + "geodes": null, + "geode's": null, + "geodesy": [["M", "S"]], + "geodesy's": null, + "geodesies": null, + "geodetic": [["S"]], + "geodetics": null, + "Geoff": [["M"]], + "Geoff's": null, + "Geoffrey": [["M"]], + "Geoffrey's": null, + "Geoffry": [["M"]], + "Geoffry's": null, + "geog": null, + "geographer": [["M", "S"]], + "geographer's": null, + "geographers": null, + "geographic": null, + "geographical": [["Y"]], + "geographically": null, + "geography": [["M", "S"]], + "geography's": null, + "geographies": null, + "geologic": null, + "geological": [["Y"]], + "geologically": null, + "geologist": [["M", "S"]], + "geologist's": null, + "geologists": null, + "geology": [["M", "S"]], + "geology's": null, + "geologies": null, + "geom": null, + "Geo": [["M"]], + "Geo's": null, + "geomagnetic": null, + "geomagnetically": null, + "geomagnetism": [["S", "M"]], + "geomagnetisms": null, + "geomagnetism's": null, + "geometer": [["M", "S"]], + "geometer's": null, + "geometers": null, + "geometrical": [["Y"]], + "geometrically": null, + "geometrician": [["M"]], + "geometrician's": null, + "geometric": [["S"]], + "geometrics": null, + "geometry": [["M", "S"]], + "geometry's": null, + "geometries": null, + "geomorphological": null, + "geomorphology": [["M"]], + "geomorphology's": null, + "geophysical": [["Y"]], + "geophysically": null, + "geophysicist": [["M", "S"]], + "geophysicist's": null, + "geophysicists": null, + "geophysics": [["M"]], + "geophysics's": null, + "geopolitical": [["Y"]], + "geopolitically": null, + "geopolitic": [["S"]], + "geopolitics": [["M"]], + "geopolitics's": null, + "Georas": [["M"]], + "Georas's": null, + "Geordie": [["M"]], + "Geordie's": null, + "Georgeanna": [["M"]], + "Georgeanna's": null, + "Georgeanne": [["M"]], + "Georgeanne's": null, + "Georgena": [["M"]], + "Georgena's": null, + "George": [["S", "M"]], + "Georges": null, + "George's": null, + "Georgeta": [["M"]], + "Georgeta's": null, + "Georgetown": [["M"]], + "Georgetown's": null, + "Georgetta": [["M"]], + "Georgetta's": null, + "Georgette": [["M"]], + "Georgette's": null, + "Georgia": [["M"]], + "Georgia's": null, + "Georgiana": [["M"]], + "Georgiana's": null, + "Georgianna": [["M"]], + "Georgianna's": null, + "Georgianne": [["M"]], + "Georgianne's": null, + "Georgian": [["S"]], + "Georgians": null, + "Georgie": [["M"]], + "Georgie's": null, + "Georgi": [["M"]], + "Georgi's": null, + "Georgina": [["M"]], + "Georgina's": null, + "Georgine": [["M"]], + "Georgine's": null, + "Georg": [["M"]], + "Georg's": null, + "Georgy": [["M"]], + "Georgy's": null, + "geostationary": null, + "geosynchronous": null, + "geosyncline": [["S", "M"]], + "geosynclines": null, + "geosyncline's": null, + "geothermal": null, + "geothermic": null, + "Geralda": [["M"]], + "Geralda's": null, + "Geraldine": [["M"]], + "Geraldine's": null, + "Gerald": [["M"]], + "Gerald's": null, + "geranium": [["S", "M"]], + "geraniums": null, + "geranium's": null, + "Gerard": [["M"]], + "Gerard's": null, + "Gerardo": [["M"]], + "Gerardo's": null, + "Gerber": [["M"]], + "Gerber's": null, + "gerbil": [["M", "S"]], + "gerbil's": null, + "gerbils": null, + "Gerda": [["M"]], + "Gerda's": null, + "Gerek": [["M"]], + "Gerek's": null, + "Gerhardine": [["M"]], + "Gerhardine's": null, + "Gerhard": [["M"]], + "Gerhard's": null, + "Gerhardt": [["M"]], + "Gerhardt's": null, + "Gerianna": [["M"]], + "Gerianna's": null, + "Gerianne": [["M"]], + "Gerianne's": null, + "geriatric": [["S"]], + "geriatrics": [["M"]], + "geriatrics's": null, + "Gerick": [["M"]], + "Gerick's": null, + "Gerik": [["M"]], + "Gerik's": null, + "Geri": [["M"]], + "Geri's": null, + "Geritol": [["M"]], + "Geritol's": null, + "Gerladina": [["M"]], + "Gerladina's": null, + "Ger": [["M"]], + "Ger's": null, + "Germaine": [["M"]], + "Germaine's": null, + "Germain": [["M"]], + "Germain's": null, + "Germana": [["M"]], + "Germana's": null, + "germane": null, + "Germania": [["M"]], + "Germania's": null, + "Germanic": [["M"]], + "Germanic's": null, + "germanium": [["S", "M"]], + "germaniums": null, + "germanium's": null, + "germanized": null, + "German": [["S", "M"]], + "Germans": null, + "German's": null, + "Germantown": [["M"]], + "Germantown's": null, + "Germany": [["M"]], + "Germany's": null, + "Germayne": [["M"]], + "Germayne's": null, + "germen": [["M"]], + "germen's": null, + "germicidal": null, + "germicide": [["M", "S"]], + "germicide's": null, + "germicides": null, + "germinal": [["Y"]], + "germinally": null, + "germinated": [["U"]], + "ungerminated": null, + "germinate": [["X", "V", "G", "N", "S", "D"]], + "germinations": null, + "germinative": [["Y"]], + "germinating": null, + "germination": [["M"]], + "germinates": null, + "germination's": null, + "germinatively": null, + "germ": [["M", "N", "S"]], + "germ's": null, + "germs": null, + "Gerome": [["M"]], + "Gerome's": null, + "Geronimo": [["M"]], + "Geronimo's": null, + "gerontocracy": [["M"]], + "gerontocracy's": null, + "gerontological": null, + "gerontologist": [["S", "M"]], + "gerontologists": null, + "gerontologist's": null, + "gerontology": [["S", "M"]], + "gerontologies": null, + "gerontology's": null, + "Gerrard": [["M"]], + "Gerrard's": null, + "Gerrie": [["M"]], + "Gerrie's": null, + "Gerrilee": [["M"]], + "Gerrilee's": null, + "Gerri": [["M"]], + "Gerri's": null, + "Gerry": [["M"]], + "Gerry's": null, + "gerrymander": [["S", "G", "D"]], + "gerrymanders": null, + "gerrymandering": null, + "gerrymandered": null, + "Gershwin": [["M", "S"]], + "Gershwin's": null, + "Gershwins": null, + "Gerta": [["M"]], + "Gerta's": null, + "Gertie": [["M"]], + "Gertie's": null, + "Gerti": [["M"]], + "Gerti's": null, + "Gert": [["M"]], + "Gert's": null, + "Gertruda": [["M"]], + "Gertruda's": null, + "Gertrude": [["M"]], + "Gertrude's": null, + "Gertrudis": [["M"]], + "Gertrudis's": null, + "Gertrud": [["M"]], + "Gertrud's": null, + "Gerty": [["M"]], + "Gerty's": null, + "gerundive": [["M"]], + "gerundive's": null, + "gerund": [["S", "V", "M"]], + "gerunds": null, + "gerund's": null, + "Gery": [["M"]], + "Gery's": null, + "gestalt": [["M"]], + "gestalt's": null, + "gestapo": [["S"]], + "gestapos": null, + "Gestapo": [["S", "M"]], + "Gestapos": null, + "Gestapo's": null, + "gestate": [["S", "D", "G", "N", "X"]], + "gestates": null, + "gestated": null, + "gestating": null, + "gestation": [["M"]], + "gestations": null, + "gestational": null, + "gestation's": null, + "gesticulate": [["X", "S", "D", "V", "G", "N"]], + "gesticulations": null, + "gesticulates": null, + "gesticulated": null, + "gesticulative": [["Y"]], + "gesticulating": null, + "gesticulation": [["M"]], + "gesticulation's": null, + "gesticulatively": null, + "gestural": null, + "gesture": [["S", "D", "M", "G"]], + "gestures": null, + "gestured": null, + "gesture's": null, + "gesturing": null, + "gesundheit": null, + "getaway": [["S", "M"]], + "getaways": null, + "getaway's": null, + "Gethsemane": [["M"]], + "Gethsemane's": null, + "get": [["S"]], + "gets": null, + "getter": [["S", "D", "M"]], + "getters": null, + "gettered": null, + "getter's": null, + "getting": null, + "Getty": [["M"]], + "Getty's": null, + "Gettysburg": [["M"]], + "Gettysburg's": null, + "getup": [["M", "S"]], + "getup's": null, + "getups": null, + "gewgaw": [["M", "S"]], + "gewgaw's": null, + "gewgaws": null, + "Gew�rztraminer": null, + "geyser": [["G", "D", "M", "S"]], + "geysering": null, + "geysered": null, + "geyser's": null, + "geysers": null, + "Ghanaian": [["M", "S"]], + "Ghanaian's": null, + "Ghanaians": null, + "Ghana": [["M"]], + "Ghana's": null, + "Ghanian's": null, + "ghastliness": [["M", "S"]], + "ghastliness's": null, + "ghastlinesses": null, + "ghastly": [["T", "P", "R"]], + "ghastliest": null, + "ghastlier": null, + "ghat": [["M", "S"]], + "ghat's": null, + "ghats": null, + "Ghats": [["M"]], + "Ghats's": null, + "Ghent": [["M"]], + "Ghent's": null, + "Gherardo": [["M"]], + "Gherardo's": null, + "gherkin": [["S", "M"]], + "gherkins": null, + "gherkin's": null, + "ghetto": [["D", "G", "M", "S"]], + "ghettoed": null, + "ghettoing": null, + "ghetto's": null, + "ghettos": null, + "ghettoize": [["S", "D", "G"]], + "ghettoizes": null, + "ghettoized": null, + "ghettoizing": null, + "Ghibelline": [["M"]], + "Ghibelline's": null, + "ghostlike": null, + "ghostliness": [["M", "S"]], + "ghostliness's": null, + "ghostlinesses": null, + "ghostly": [["T", "R", "P"]], + "ghostliest": null, + "ghostlier": null, + "ghost": [["S", "M", "Y", "D", "G"]], + "ghosts": null, + "ghost's": null, + "ghosted": null, + "ghosting": null, + "ghostwrite": [["R", "S", "G", "Z"]], + "ghostwriter": null, + "ghostwrites": null, + "ghostwriting": null, + "ghostwriters": null, + "ghostwritten": null, + "ghostwrote": null, + "ghoulishness": [["S", "M"]], + "ghoulishnesses": null, + "ghoulishness's": null, + "ghoulish": [["P", "Y"]], + "ghoulishly": null, + "ghoul": [["S", "M"]], + "ghouls": null, + "ghoul's": null, + "GHQ": null, + "GI": null, + "Giacinta": [["M"]], + "Giacinta's": null, + "Giacobo": [["M"]], + "Giacobo's": null, + "Giacometti": [["M"]], + "Giacometti's": null, + "Giacomo": [["M"]], + "Giacomo's": null, + "Giacopo": [["M"]], + "Giacopo's": null, + "Giana": [["M"]], + "Giana's": null, + "Gianina": [["M"]], + "Gianina's": null, + "Gian": [["M"]], + "Gian's": null, + "Gianna": [["M"]], + "Gianna's": null, + "Gianni": [["M"]], + "Gianni's": null, + "Giannini": [["M"]], + "Giannini's": null, + "giantess": [["M", "S"]], + "giantess's": null, + "giantesses": null, + "giantkiller": null, + "giant": [["S", "M"]], + "giants": null, + "giant's": null, + "Giauque": [["M"]], + "Giauque's": null, + "Giavani": [["M"]], + "Giavani's": null, + "gibber": [["D", "G", "S"]], + "gibbered": null, + "gibbering": null, + "gibbers": null, + "gibberish": [["M", "S"]], + "gibberish's": null, + "gibberishes": null, + "gibbet": [["M", "D", "S", "G"]], + "gibbet's": null, + "gibbeted": null, + "gibbets": null, + "gibbeting": null, + "Gibbie": [["M"]], + "Gibbie's": null, + "Gibb": [["M", "S"]], + "Gibb's": null, + "Gibbs": null, + "Gibbon": [["M"]], + "Gibbon's": null, + "gibbon": [["M", "S"]], + "gibbon's": null, + "gibbons": null, + "gibbousness": [["M"]], + "gibbousness's": null, + "gibbous": [["Y", "P"]], + "gibbously": null, + "Gibby": [["M"]], + "Gibby's": null, + "gibe": [["G", "D", "R", "S"]], + "gibing": null, + "gibed": null, + "giber": [["M"]], + "gibes": null, + "giber's": null, + "giblet": [["M", "S"]], + "giblet's": null, + "giblets": null, + "Gib": [["M"]], + "Gib's": null, + "Gibraltar": [["M", "S"]], + "Gibraltar's": null, + "Gibraltars": null, + "Gibson": [["M"]], + "Gibson's": null, + "giddap": null, + "giddily": null, + "giddiness": [["S", "M"]], + "giddinesses": null, + "giddiness's": null, + "Giddings": [["M"]], + "Giddings's": null, + "giddy": [["G", "P", "R", "S", "D", "T"]], + "giddying": null, + "giddier": null, + "giddies": null, + "giddied": null, + "giddiest": null, + "Gide": [["M"]], + "Gide's": null, + "Gideon": [["M", "S"]], + "Gideon's": null, + "Gideons": null, + "Gielgud": [["M"]], + "Gielgud's": null, + "Gienah": [["M"]], + "Gienah's": null, + "Giffard": [["M"]], + "Giffard's": null, + "Giffer": [["M"]], + "Giffer's": null, + "Giffie": [["M"]], + "Giffie's": null, + "Gifford": [["M"]], + "Gifford's": null, + "Giff": [["R", "M"]], + "Giff's": null, + "Giffy": [["M"]], + "Giffy's": null, + "giftedness": [["M"]], + "giftedness's": null, + "gifted": [["P", "Y"]], + "giftedly": null, + "gift": [["S", "G", "M", "D"]], + "gifts": null, + "gifting": null, + "gift's": null, + "gigabyte": [["S"]], + "gigabytes": null, + "gigacycle": [["M", "S"]], + "gigacycle's": null, + "gigacycles": null, + "gigahertz": [["M"]], + "gigahertz's": null, + "gigantically": null, + "giganticness": [["M"]], + "giganticness's": null, + "gigantic": [["P"]], + "gigavolt": null, + "gigawatt": [["M"]], + "gigawatt's": null, + "gigged": null, + "gigging": null, + "giggler": [["M"]], + "giggler's": null, + "giggle": [["R", "S", "D", "G", "Z"]], + "giggles": null, + "giggled": null, + "giggling": [["Y"]], + "gigglers": null, + "gigglingly": null, + "giggly": [["T", "R"]], + "giggliest": null, + "gigglier": null, + "Gigi": [["M"]], + "Gigi's": null, + "gig": [["M", "S"]], + "gig's": null, + "gigs": null, + "GIGO": null, + "gigolo": [["M", "S"]], + "gigolo's": null, + "gigolos": null, + "gila": null, + "Gila": [["M"]], + "Gila's": null, + "Gilberta": [["M"]], + "Gilberta's": null, + "Gilberte": [["M"]], + "Gilberte's": null, + "Gilbertina": [["M"]], + "Gilbertina's": null, + "Gilbertine": [["M"]], + "Gilbertine's": null, + "gilbert": [["M"]], + "gilbert's": null, + "Gilbert": [["M"]], + "Gilbert's": null, + "Gilberto": [["M"]], + "Gilberto's": null, + "Gilbertson": [["M"]], + "Gilbertson's": null, + "Gilburt": [["M"]], + "Gilburt's": null, + "Gilchrist": [["M"]], + "Gilchrist's": null, + "Gilda": [["M"]], + "Gilda's": null, + "gilder": [["M"]], + "gilder's": null, + "gilding": [["M"]], + "gilding's": null, + "gild": [["J", "S", "G", "Z", "R", "D"]], + "gildings": null, + "gilds": null, + "gilders": null, + "gilded": null, + "Gilead": [["M"]], + "Gilead's": null, + "Gilemette": [["M"]], + "Gilemette's": null, + "Giles": null, + "Gilgamesh": [["M"]], + "Gilgamesh's": null, + "Gilkson": [["M"]], + "Gilkson's": null, + "Gillan": [["M"]], + "Gillan's": null, + "Gilles": null, + "Gillespie": [["M"]], + "Gillespie's": null, + "Gillette": [["M"]], + "Gillette's": null, + "Gilliam": [["M"]], + "Gilliam's": null, + "Gillian": [["M"]], + "Gillian's": null, + "Gillie": [["M"]], + "Gillie's": null, + "Gilligan": [["M"]], + "Gilligan's": null, + "Gilli": [["M"]], + "Gilli's": null, + "Gill": [["M"]], + "Gill's": null, + "gill": [["S", "G", "M", "R", "D"]], + "gills": null, + "gilling": null, + "gill's": null, + "giller": null, + "gilled": null, + "Gilly": [["M"]], + "Gilly's": null, + "Gilmore": [["M"]], + "Gilmore's": null, + "Gil": [["M", "Y"]], + "Gil's": null, + "gilt": [["S"]], + "gilts": null, + "gimbaled": null, + "gimbals": null, + "Gimbel": [["M"]], + "Gimbel's": null, + "gimcrackery": [["S", "M"]], + "gimcrackeries": null, + "gimcrackery's": null, + "gimcrack": [["S"]], + "gimcracks": null, + "gimlet": [["M", "D", "S", "G"]], + "gimlet's": null, + "gimleted": null, + "gimlets": null, + "gimleting": null, + "gimme": [["S"]], + "gimmes": null, + "gimmick": [["G", "D", "M", "S"]], + "gimmicking": null, + "gimmicked": null, + "gimmick's": null, + "gimmicks": null, + "gimmickry": [["M", "S"]], + "gimmickry's": null, + "gimmickries": null, + "gimmicky": null, + "gimp": [["G", "S", "M", "D"]], + "gimping": null, + "gimps": null, + "gimp's": null, + "gimped": null, + "gimpy": [["R", "T"]], + "gimpier": null, + "gimpiest": null, + "Gina": [["M"]], + "Gina's": null, + "Ginelle": [["M"]], + "Ginelle's": null, + "Ginevra": [["M"]], + "Ginevra's": null, + "gingerbread": [["S", "M"]], + "gingerbreads": null, + "gingerbread's": null, + "gingerliness": [["M"]], + "gingerliness's": null, + "gingerly": [["P"]], + "Ginger": [["M"]], + "Ginger's": null, + "ginger": [["S", "G", "D", "Y", "M"]], + "gingers": null, + "gingering": null, + "gingered": null, + "ginger's": null, + "gingersnap": [["S", "M"]], + "gingersnaps": null, + "gingersnap's": null, + "gingery": null, + "gingham": [["S", "M"]], + "ginghams": null, + "gingham's": null, + "gingivitis": [["S", "M"]], + "gingivitises": null, + "gingivitis's": null, + "Gingrich": [["M"]], + "Gingrich's": null, + "ginkgoes": null, + "ginkgo": [["M"]], + "ginkgo's": null, + "ginmill": null, + "gin": [["M", "S"]], + "gin's": null, + "gins": null, + "ginned": null, + "Ginnie": [["M"]], + "Ginnie's": null, + "Ginnifer": [["M"]], + "Ginnifer's": null, + "Ginni": [["M"]], + "Ginni's": null, + "ginning": null, + "Ginny": [["M"]], + "Ginny's": null, + "Gino": [["M"]], + "Gino's": null, + "Ginsberg": [["M"]], + "Ginsberg's": null, + "Ginsburg": [["M"]], + "Ginsburg's": null, + "ginseng": [["S", "M"]], + "ginsengs": null, + "ginseng's": null, + "Gioconda": [["M"]], + "Gioconda's": null, + "Giordano": [["M"]], + "Giordano's": null, + "Giorgia": [["M"]], + "Giorgia's": null, + "Giorgi": [["M"]], + "Giorgi's": null, + "Giorgio": [["M"]], + "Giorgio's": null, + "Giorgione": [["M"]], + "Giorgione's": null, + "Giotto": [["M"]], + "Giotto's": null, + "Giovanna": [["M"]], + "Giovanna's": null, + "Giovanni": [["M"]], + "Giovanni's": null, + "Gipsy's": null, + "giraffe": [["M", "S"]], + "giraffe's": null, + "giraffes": null, + "Giralda": [["M"]], + "Giralda's": null, + "Giraldo": [["M"]], + "Giraldo's": null, + "Giraud": [["M"]], + "Giraud's": null, + "Giraudoux": [["M"]], + "Giraudoux's": null, + "girded": [["U"]], + "ungirded": null, + "girder": [["M"]], + "girder's": null, + "girdle": [["G", "M", "R", "S", "D"]], + "girdling": null, + "girdle's": null, + "girdler": [["M"]], + "girdles": null, + "girdled": null, + "girdler's": null, + "gird": [["R", "D", "S", "G", "Z"]], + "girds": null, + "girding": null, + "girders": null, + "girlfriend": [["M", "S"]], + "girlfriend's": null, + "girlfriends": null, + "girlhood": [["S", "M"]], + "girlhoods": null, + "girlhood's": null, + "girlie": [["M"]], + "girlie's": null, + "girlishness": [["S", "M"]], + "girlishnesses": null, + "girlishness's": null, + "girlish": [["Y", "P"]], + "girlishly": null, + "girl": [["M", "S"]], + "girl's": null, + "girls": null, + "giro": [["M"]], + "giro's": null, + "girt": [["G", "D", "S"]], + "girting": null, + "girted": null, + "girts": null, + "girth": [["M", "D", "G"]], + "girth's": null, + "girthed": null, + "girthing": null, + "girths": null, + "Gisela": [["M"]], + "Gisela's": null, + "Giselbert": [["M"]], + "Giselbert's": null, + "Gisele": [["M"]], + "Gisele's": null, + "Gisella": [["M"]], + "Gisella's": null, + "Giselle": [["M"]], + "Giselle's": null, + "Gish": [["M"]], + "Gish's": null, + "gist": [["M", "S"]], + "gist's": null, + "gists": null, + "git": [["M"]], + "git's": null, + "Giuditta": [["M"]], + "Giuditta's": null, + "Giulia": [["M"]], + "Giulia's": null, + "Giuliano": [["M"]], + "Giuliano's": null, + "Giulietta": [["M"]], + "Giulietta's": null, + "Giulio": [["M"]], + "Giulio's": null, + "Giuseppe": [["M"]], + "Giuseppe's": null, + "Giustina": [["M"]], + "Giustina's": null, + "Giustino": [["M"]], + "Giustino's": null, + "Giusto": [["M"]], + "Giusto's": null, + "giveaway": [["S", "M"]], + "giveaways": null, + "giveaway's": null, + "giveback": [["S"]], + "givebacks": null, + "give": [["H", "Z", "G", "R", "S"]], + "giveth": null, + "givers": null, + "giving": [["Y"]], + "giver": [["M"]], + "gives": null, + "given": [["S", "P"]], + "givens": null, + "givenness": null, + "giver's": null, + "givingly": null, + "Giza": [["M"]], + "Giza's": null, + "Gizela": [["M"]], + "Gizela's": null, + "gizmo's": null, + "gizzard": [["S", "M"]], + "gizzards": null, + "gizzard's": null, + "Gk": [["M"]], + "Gk's": null, + "glac�": [["D", "G", "S"]], + "glac�ed": null, + "glac�ing": null, + "glac�s": null, + "glacial": [["Y"]], + "glacially": null, + "glaciate": [["X", "N", "G", "D", "S"]], + "glaciations": null, + "glaciation": [["M"]], + "glaciating": null, + "glaciated": null, + "glaciates": null, + "glaciation's": null, + "glacier": [["S", "M"]], + "glaciers": null, + "glacier's": null, + "glaciological": null, + "glaciologist": [["M"]], + "glaciologist's": null, + "glaciology": [["M"]], + "glaciology's": null, + "gladded": null, + "gladden": [["G", "D", "S"]], + "gladdening": null, + "gladdened": null, + "gladdens": null, + "gladder": null, + "gladdest": null, + "gladding": null, + "gladdy": null, + "glade": [["S", "M"]], + "glades": null, + "glade's": null, + "gladiatorial": null, + "gladiator": [["S", "M"]], + "gladiators": null, + "gladiator's": null, + "Gladi": [["M"]], + "Gladi's": null, + "gladiola": [["M", "S"]], + "gladiola's": null, + "gladiolas": null, + "gladioli": null, + "gladiolus": [["M"]], + "gladiolus's": null, + "gladly": [["R", "T"]], + "gladlier": null, + "gladliest": null, + "Glad": [["M"]], + "Glad's": null, + "gladness": [["M", "S"]], + "gladness's": null, + "gladnesses": null, + "gladsome": [["R", "T"]], + "gladsomer": null, + "gladsomest": null, + "Gladstone": [["M", "S"]], + "Gladstone's": null, + "Gladstones": null, + "Gladys": null, + "glad": [["Y", "S", "P"]], + "glads": null, + "glamor": [["D", "M", "G", "S"]], + "glamored": null, + "glamor's": null, + "glamoring": null, + "glamors": null, + "glamorization": [["M", "S"]], + "glamorization's": null, + "glamorizations": null, + "glamorizer": [["M"]], + "glamorizer's": null, + "glamorize": [["S", "R", "D", "Z", "G"]], + "glamorizes": null, + "glamorized": null, + "glamorizers": null, + "glamorizing": null, + "glamorousness": [["M"]], + "glamorousness's": null, + "glamorous": [["P", "Y"]], + "glamorously": null, + "glance": [["G", "J", "S", "D"]], + "glancing": [["Y"]], + "glancings": null, + "glances": null, + "glanced": null, + "glancingly": null, + "glanders": [["M"]], + "glanders's": null, + "glandes": null, + "glandular": [["Y"]], + "glandularly": null, + "gland": [["Z", "S", "M"]], + "glands": null, + "gland's": null, + "glans": [["M"]], + "glans's": null, + "glare": [["S", "D", "G"]], + "glares": null, + "glared": null, + "glaring": [["Y", "P"]], + "glaringness": [["M"]], + "glaringness's": null, + "glaringly": null, + "Glaser": [["M"]], + "Glaser's": null, + "Glasgow": [["M"]], + "Glasgow's": null, + "glasnost": [["S"]], + "glasnosts": null, + "glassblower": [["S"]], + "glassblowers": null, + "glassblowing": [["M", "S"]], + "glassblowing's": null, + "glassblowings": null, + "glassful": [["M", "S"]], + "glassful's": null, + "glassfuls": null, + "glass": [["G", "S", "D", "M"]], + "glassing": null, + "glasses": null, + "glassed": null, + "glass's": null, + "glasshouse": [["S", "M"]], + "glasshouses": null, + "glasshouse's": null, + "glassily": null, + "glassiness": [["S", "M"]], + "glassinesses": null, + "glassiness's": null, + "glassless": null, + "Glass": [["M"]], + "Glass's": null, + "glassware": [["S", "M"]], + "glasswares": null, + "glassware's": null, + "glasswort": [["M"]], + "glasswort's": null, + "glassy": [["P", "R", "S", "T"]], + "glassier": null, + "glassies": null, + "glassiest": null, + "Glastonbury": [["M"]], + "Glastonbury's": null, + "Glaswegian": [["S"]], + "Glaswegians": null, + "glaucoma": [["S", "M"]], + "glaucomas": null, + "glaucoma's": null, + "glaucous": null, + "glazed": [["U"]], + "unglazed": null, + "glazer": [["M"]], + "glazer's": null, + "glaze": [["S", "R", "D", "G", "Z", "J"]], + "glazes": null, + "glazing": [["M"]], + "glazers": null, + "glazings": null, + "glazier": [["S", "M"]], + "glaziers": null, + "glazier's": null, + "glazing's": null, + "gleam": [["M", "D", "G", "S"]], + "gleam's": null, + "gleamed": null, + "gleaming": null, + "gleams": null, + "gleaner": [["M"]], + "gleaner's": null, + "gleaning": [["M"]], + "gleaning's": null, + "glean": [["R", "D", "G", "Z", "J", "S"]], + "gleaned": null, + "gleaners": null, + "gleanings": null, + "gleans": null, + "Gleason": [["M"]], + "Gleason's": null, + "Gleda": [["M"]], + "Gleda's": null, + "gleed": [["M"]], + "gleed's": null, + "glee": [["D", "S", "M"]], + "glees": null, + "glee's": null, + "gleefulness": [["M", "S"]], + "gleefulness's": null, + "gleefulnesses": null, + "gleeful": [["Y", "P"]], + "gleefully": null, + "gleeing": null, + "Glendale": [["M"]], + "Glendale's": null, + "Glenda": [["M"]], + "Glenda's": null, + "Glenden": [["M"]], + "Glenden's": null, + "Glendon": [["M"]], + "Glendon's": null, + "Glenine": [["M"]], + "Glenine's": null, + "Glen": [["M"]], + "Glen's": null, + "Glenna": [["M"]], + "Glenna's": null, + "Glennie": [["M"]], + "Glennie's": null, + "Glennis": [["M"]], + "Glennis's": null, + "Glenn": [["M"]], + "Glenn's": null, + "glen": [["S", "M"]], + "glens": null, + "glen's": null, + "glibber": null, + "glibbest": null, + "glibness": [["M", "S"]], + "glibness's": null, + "glibnesses": null, + "glib": [["Y", "P"]], + "glibly": null, + "glide": [["J", "G", "Z", "S", "R", "D"]], + "glidings": null, + "gliding": null, + "gliders": null, + "glides": null, + "glider": [["M"]], + "glided": null, + "glider's": null, + "glim": [["M"]], + "glim's": null, + "glimmer": [["D", "S", "J", "G"]], + "glimmered": null, + "glimmers": null, + "glimmerings": null, + "glimmering": [["M"]], + "glimmering's": null, + "glimpse": [["D", "R", "S", "Z", "M", "G"]], + "glimpsed": null, + "glimpser": [["M"]], + "glimpses": null, + "glimpsers": null, + "glimpse's": null, + "glimpsing": null, + "glimpser's": null, + "glint": [["D", "S", "G"]], + "glinted": null, + "glints": null, + "glinting": null, + "glissandi": null, + "glissando": [["M"]], + "glissando's": null, + "glisten": [["D", "S", "G"]], + "glistened": null, + "glistens": null, + "glistening": null, + "glister": [["D", "G", "S"]], + "glistered": null, + "glistering": null, + "glisters": null, + "glitch": [["M", "S"]], + "glitch's": null, + "glitches": null, + "glitter": [["G", "D", "S", "J"]], + "glittering": [["Y"]], + "glittered": null, + "glitters": null, + "glitterings": null, + "glitteringly": null, + "glittery": null, + "glitz": [["G", "S", "D"]], + "glitzing": null, + "glitzes": null, + "glitzed": null, + "glitzy": [["T", "R"]], + "glitziest": null, + "glitzier": null, + "gloaming": [["M", "S"]], + "gloaming's": null, + "gloamings": null, + "gloater": [["M"]], + "gloater's": null, + "gloating": [["Y"]], + "gloatingly": null, + "gloat": [["S", "R", "D", "G"]], + "gloats": null, + "gloated": null, + "globalism": [["S"]], + "globalisms": null, + "globalist": [["S"]], + "globalists": null, + "global": [["S", "Y"]], + "globals": null, + "globally": null, + "globe": [["S", "M"]], + "globes": null, + "globe's": null, + "globetrotter": [["M", "S"]], + "globetrotter's": null, + "globetrotters": null, + "glob": [["G", "D", "M", "S"]], + "globing": null, + "globed": null, + "glob's": null, + "globs": null, + "globularity": [["M"]], + "globularity's": null, + "globularness": [["M"]], + "globularness's": null, + "globular": [["P", "Y"]], + "globularly": null, + "globule": [["M", "S"]], + "globule's": null, + "globules": null, + "globulin": [["M", "S"]], + "globulin's": null, + "globulins": null, + "glockenspiel": [["S", "M"]], + "glockenspiels": null, + "glockenspiel's": null, + "glommed": null, + "gloom": [["G", "S", "M", "D"]], + "glooming": null, + "glooms": null, + "gloom's": null, + "gloomed": null, + "gloomily": null, + "gloominess": [["M", "S"]], + "gloominess's": null, + "gloominesses": null, + "gloomy": [["R", "T", "P"]], + "gloomier": null, + "gloomiest": null, + "glop": [["M", "S"]], + "glop's": null, + "glops": null, + "glopped": null, + "glopping": null, + "gloppy": [["T", "R"]], + "gloppiest": null, + "gloppier": null, + "Gloria": [["M"]], + "Gloria's": null, + "Gloriana": [["M"]], + "Gloriana's": null, + "Gloriane": [["M"]], + "Gloriane's": null, + "glorification": [["M"]], + "glorification's": null, + "glorifier": [["M"]], + "glorifier's": null, + "glorify": [["X", "Z", "R", "S", "D", "N", "G"]], + "glorifications": null, + "glorifiers": null, + "glorifies": null, + "glorified": null, + "glorifying": null, + "Glori": [["M"]], + "Glori's": null, + "glorious": [["I", "Y", "P"]], + "inglorious": null, + "ingloriously": null, + "ingloriousness": null, + "gloriously": null, + "gloriousness": [["I", "M"]], + "ingloriousness's": null, + "gloriousness's": null, + "Glory": [["M"]], + "Glory's": null, + "glory": [["S", "D", "M", "G"]], + "glories": null, + "gloried": null, + "glory's": null, + "glorying": null, + "glossary": [["M", "S"]], + "glossary's": null, + "glossaries": null, + "gloss": [["G", "S", "D", "M"]], + "glossing": null, + "glosses": null, + "glossed": null, + "gloss's": null, + "glossily": null, + "glossiness": [["S", "M"]], + "glossinesses": null, + "glossiness's": null, + "glossolalia": [["S", "M"]], + "glossolalias": null, + "glossolalia's": null, + "glossy": [["R", "S", "P", "T"]], + "glossier": null, + "glossies": null, + "glossiest": null, + "glottal": null, + "glottalization": [["M"]], + "glottalization's": null, + "glottis": [["M", "S"]], + "glottis's": null, + "glottises": null, + "Gloucester": [["M"]], + "Gloucester's": null, + "gloveless": null, + "glover": [["M"]], + "glover's": null, + "Glover": [["M"]], + "Glover's": null, + "glove": [["S", "R", "D", "G", "M", "Z"]], + "gloves": null, + "gloved": null, + "gloving": null, + "glove's": null, + "glovers": null, + "glower": [["G", "D"]], + "glowering": null, + "glowered": null, + "glow": [["G", "Z", "R", "D", "M", "S"]], + "glowing": [["Y"]], + "glowers": null, + "glowed": null, + "glow's": null, + "glows": null, + "glowingly": null, + "glowworm": [["S", "M"]], + "glowworms": null, + "glowworm's": null, + "glucose": [["S", "M"]], + "glucoses": null, + "glucose's": null, + "glue": [["D", "R", "S", "M", "Z", "G"]], + "glued": [["U"]], + "gluer": [["M"]], + "glues": null, + "glue's": null, + "gluers": null, + "gluing": null, + "unglued": null, + "gluer's": null, + "gluey": null, + "gluier": null, + "gluiest": null, + "glummer": null, + "glummest": null, + "glumness": [["M", "S"]], + "glumness's": null, + "glumnesses": null, + "glum": [["S", "Y", "P"]], + "glums": null, + "glumly": null, + "gluon": [["M"]], + "gluon's": null, + "glutamate": [["M"]], + "glutamate's": null, + "gluten": [["M"]], + "gluten's": null, + "glutenous": null, + "glutinousness": [["M"]], + "glutinousness's": null, + "glutinous": [["P", "Y"]], + "glutinously": null, + "glut": [["S", "M", "N", "X"]], + "gluts": null, + "glut's": null, + "glutens": null, + "glutted": null, + "glutting": null, + "glutton": [["M", "S"]], + "glutton's": null, + "gluttons": null, + "gluttonous": [["Y"]], + "gluttonously": null, + "gluttony": [["S", "M"]], + "gluttonies": null, + "gluttony's": null, + "glyceride": [["M"]], + "glyceride's": null, + "glycerinate": [["M", "D"]], + "glycerinate's": null, + "glycerinated": null, + "glycerine's": null, + "glycerin": [["S", "M"]], + "glycerins": null, + "glycerin's": null, + "glycerolized": [["C"]], + "deglycerolized": null, + "glycerol": [["S", "M"]], + "glycerols": null, + "glycerol's": null, + "glycine": [["M"]], + "glycine's": null, + "glycogen": [["S", "M"]], + "glycogens": null, + "glycogen's": null, + "glycol": [["M", "S"]], + "glycol's": null, + "glycols": null, + "Glynda": [["M"]], + "Glynda's": null, + "Glynis": [["M"]], + "Glynis's": null, + "Glyn": [["M"]], + "Glyn's": null, + "Glynnis": [["M"]], + "Glynnis's": null, + "Glynn": [["M"]], + "Glynn's": null, + "glyph": [["M"]], + "glyph's": null, + "glyphs": null, + "gm": null, + "GM": null, + "GMT": null, + "gnarl": [["S", "M", "D", "G"]], + "gnarls": null, + "gnarl's": null, + "gnarled": null, + "gnarling": null, + "gnash": [["S", "D", "G"]], + "gnashes": null, + "gnashed": null, + "gnashing": null, + "gnat": [["M", "S"]], + "gnat's": null, + "gnats": null, + "gnawer": [["M"]], + "gnawer's": null, + "gnaw": [["G", "R", "D", "S", "J"]], + "gnawing": [["M"]], + "gnawed": null, + "gnaws": null, + "gnawings": null, + "gnawing's": null, + "gneiss": [["S", "M"]], + "gneisses": null, + "gneiss's": null, + "Gnni": [["M"]], + "Gnni's": null, + "gnomelike": null, + "GNOME": [["M"]], + "GNOME's": null, + "gnome": [["S", "M"]], + "gnomes": null, + "gnome's": null, + "gnomic": null, + "gnomish": null, + "gnomonic": null, + "gnosticism": null, + "Gnosticism": [["M"]], + "Gnosticism's": null, + "gnostic": [["K"]], + "prognostic": [["S"]], + "Gnostic": [["M"]], + "Gnostic's": null, + "GNP": null, + "gnu": [["M", "S"]], + "gnu's": null, + "gnus": null, + "goad": [["M", "D", "S", "G"]], + "goad's": null, + "goaded": null, + "goads": null, + "goading": null, + "goalie": [["S", "M"]], + "goalies": null, + "goalie's": null, + "goalkeeper": [["M", "S"]], + "goalkeeper's": null, + "goalkeepers": null, + "goalkeeping": [["M"]], + "goalkeeping's": null, + "goalless": null, + "goal": [["M", "D", "S", "G"]], + "goal's": null, + "goaled": null, + "goals": null, + "goaling": null, + "goalmouth": [["M"]], + "goalmouth's": null, + "goalpost": [["S"]], + "goalposts": null, + "goalscorer": null, + "goalscoring": null, + "goaltender": [["S", "M"]], + "goaltenders": null, + "goaltender's": null, + "Goa": [["M"]], + "Goa's": null, + "goatee": [["S", "M"]], + "goatees": null, + "goatee's": null, + "goatherd": [["M", "S"]], + "goatherd's": null, + "goatherds": null, + "goat": [["M", "S"]], + "goat's": null, + "goats": null, + "goatskin": [["S", "M"]], + "goatskins": null, + "goatskin's": null, + "gobbed": null, + "gobbet": [["M", "S"]], + "gobbet's": null, + "gobbets": null, + "gobbing": null, + "gobbledegook's": null, + "gobbledygook": [["S"]], + "gobbledygooks": null, + "gobbler": [["M"]], + "gobbler's": null, + "gobble": [["S", "R", "D", "G", "Z"]], + "gobbles": null, + "gobbled": null, + "gobbling": null, + "gobblers": null, + "Gobi": [["M"]], + "Gobi's": null, + "goblet": [["M", "S"]], + "goblet's": null, + "goblets": null, + "goblin": [["S", "M"]], + "goblins": null, + "goblin's": null, + "gob": [["S", "M"]], + "gobs": null, + "gob's": null, + "Godard": [["M"]], + "Godard's": null, + "Godart": [["M"]], + "Godart's": null, + "godchild": [["M"]], + "godchild's": null, + "godchildren": null, + "goddammit": null, + "goddamn": [["G", "S"]], + "goddamning": null, + "goddamns": null, + "Goddard": [["M"]], + "Goddard's": null, + "Goddart": [["M"]], + "Goddart's": null, + "goddaughter": [["S", "M"]], + "goddaughters": null, + "goddaughter's": null, + "godded": null, + "goddess": [["M", "S"]], + "goddess's": null, + "goddesses": null, + "godding": null, + "G�del": [["M"]], + "G�del's": null, + "godfather": [["G", "S", "D", "M"]], + "godfathering": null, + "godfathers": null, + "godfathered": null, + "godfather's": null, + "godforsaken": null, + "Godfree": [["M"]], + "Godfree's": null, + "Godfrey": [["M"]], + "Godfrey's": null, + "Godfry": [["M"]], + "Godfry's": null, + "godhead": [["S"]], + "godheads": null, + "godhood": [["S", "M"]], + "godhoods": null, + "godhood's": null, + "Godiva": [["M"]], + "Godiva's": null, + "godlessness": [["M", "S"]], + "godlessness's": null, + "godlessnesses": null, + "godless": [["P"]], + "godlikeness": [["M"]], + "godlikeness's": null, + "godlike": [["P"]], + "godliness": [["U", "M", "S"]], + "ungodliness": null, + "ungodliness's": null, + "ungodlinesses": null, + "godliness's": null, + "godlinesses": null, + "godly": [["U", "T", "P", "R"]], + "ungodly": null, + "ungodlier": null, + "godliest": null, + "godlier": null, + "God": [["M"]], + "God's": null, + "godmother": [["M", "S"]], + "godmother's": null, + "godmothers": null, + "Godot": [["M"]], + "Godot's": null, + "godparent": [["S", "M"]], + "godparents": null, + "godparent's": null, + "godsend": [["M", "S"]], + "godsend's": null, + "godsends": null, + "god": [["S", "M", "Y"]], + "gods": null, + "god's": null, + "godson": [["M", "S"]], + "godson's": null, + "godsons": null, + "Godspeed": [["S"]], + "Godspeeds": null, + "Godthaab": [["M"]], + "Godthaab's": null, + "Godunov": [["M"]], + "Godunov's": null, + "Godwin": [["M"]], + "Godwin's": null, + "Godzilla": [["M"]], + "Godzilla's": null, + "Goebbels": [["M"]], + "Goebbels's": null, + "Goering": [["M"]], + "Goering's": null, + "goer": [["M", "G"]], + "goer's": null, + "goering": null, + "goes": null, + "Goethals": [["M"]], + "Goethals's": null, + "Goethe": [["M"]], + "Goethe's": null, + "gofer": [["S", "M"]], + "gofers": null, + "gofer's": null, + "Goff": [["M"]], + "Goff's": null, + "goggler": [["M"]], + "goggler's": null, + "goggle": [["S", "R", "D", "G", "Z"]], + "goggles": null, + "goggled": null, + "goggling": null, + "gogglers": null, + "Gogh": [["M"]], + "Gogh's": null, + "Gog": [["M"]], + "Gog's": null, + "Gogol": [["M"]], + "Gogol's": null, + "Goiania": [["M"]], + "Goiania's": null, + "going": [["M"]], + "going's": null, + "goiter": [["S", "M"]], + "goiters": null, + "goiter's": null, + "Golan": [["M"]], + "Golan's": null, + "Golconda": [["M"]], + "Golconda's": null, + "Golda": [["M"]], + "Golda's": null, + "Goldarina": [["M"]], + "Goldarina's": null, + "Goldberg": [["M"]], + "Goldberg's": null, + "goldbricker": [["M"]], + "goldbricker's": null, + "goldbrick": [["G", "Z", "R", "D", "M", "S"]], + "goldbricking": null, + "goldbrickers": null, + "goldbricked": null, + "goldbrick's": null, + "goldbricks": null, + "Golden": [["M"]], + "Golden's": null, + "goldenness": [["M"]], + "goldenness's": null, + "goldenrod": [["S", "M"]], + "goldenrods": null, + "goldenrod's": null, + "goldenseal": [["M"]], + "goldenseal's": null, + "golden": [["T", "R", "Y", "P"]], + "goldenest": null, + "goldener": null, + "goldenly": null, + "goldfinch": [["M", "S"]], + "goldfinch's": null, + "goldfinches": null, + "goldfish": [["S", "M"]], + "goldfishes": null, + "goldfish's": null, + "Goldia": [["M"]], + "Goldia's": null, + "Goldie": [["M"]], + "Goldie's": null, + "Goldilocks": [["M"]], + "Goldilocks's": null, + "Goldi": [["M"]], + "Goldi's": null, + "Goldina": [["M"]], + "Goldina's": null, + "Golding": [["M"]], + "Golding's": null, + "Goldman": [["M"]], + "Goldman's": null, + "goldmine": [["S"]], + "goldmines": null, + "gold": [["M", "R", "N", "G", "T", "S"]], + "gold's": null, + "golder": null, + "golding": null, + "goldest": null, + "golds": null, + "goldsmith": [["M"]], + "goldsmith's": null, + "Goldsmith": [["M"]], + "Goldsmith's": null, + "goldsmiths": null, + "Goldstein": [["M"]], + "Goldstein's": null, + "Goldwater": [["M"]], + "Goldwater's": null, + "Goldwyn": [["M"]], + "Goldwyn's": null, + "Goldy": [["M"]], + "Goldy's": null, + "Goleta": [["M"]], + "Goleta's": null, + "golfer": [["M"]], + "golfer's": null, + "golf": [["R", "D", "M", "G", "Z", "S"]], + "golfed": null, + "golf's": null, + "golfing": null, + "golfers": null, + "golfs": null, + "Golgotha": [["M"]], + "Golgotha's": null, + "Goliath": [["M"]], + "Goliath's": null, + "Goliaths": null, + "golly": [["S"]], + "gollies": null, + "Gomez": [["M"]], + "Gomez's": null, + "Gomorrah": [["M"]], + "Gomorrah's": null, + "Gompers": [["M"]], + "Gompers's": null, + "go": [["M", "R", "H", "Z", "G", "J"]], + "go's": null, + "goth": null, + "goers": null, + "goings": null, + "gonadal": null, + "gonad": [["S", "M"]], + "gonads": null, + "gonad's": null, + "gondola": [["S", "M"]], + "gondolas": null, + "gondola's": null, + "gondolier": [["M", "S"]], + "gondolier's": null, + "gondoliers": null, + "Gondwanaland": [["M"]], + "Gondwanaland's": null, + "goner": [["M"]], + "goner's": null, + "gone": [["R", "Z", "N"]], + "goners": null, + "gonion": [["M"]], + "gong": [["S", "G", "D", "M"]], + "gongs": null, + "gonging": null, + "gonged": null, + "gong's": null, + "gonion's": null, + "gonna": null, + "gonorrheal": null, + "gonorrhea": [["M", "S"]], + "gonorrhea's": null, + "gonorrheas": null, + "Gonzales": [["M"]], + "Gonzales's": null, + "Gonzalez": [["M"]], + "Gonzalez's": null, + "Gonzalo": [["M"]], + "Gonzalo's": null, + "Goober": [["M"]], + "Goober's": null, + "goober": [["M", "S"]], + "goober's": null, + "goobers": null, + "goodbye": [["M", "S"]], + "goodbye's": null, + "goodbyes": null, + "goodhearted": null, + "goodie's": null, + "goodish": null, + "goodly": [["T", "R"]], + "goodliest": null, + "goodlier": null, + "Good": [["M"]], + "Good's": null, + "Goodman": [["M"]], + "Goodman's": null, + "goodness": [["M", "S"]], + "goodness's": null, + "goodnesses": null, + "goodnight": null, + "Goodrich": [["M"]], + "Goodrich's": null, + "good": [["S", "Y", "P"]], + "goods": null, + "goodwill": [["M", "S"]], + "goodwill's": null, + "goodwills": null, + "Goodwin": [["M"]], + "Goodwin's": null, + "Goodyear": [["M"]], + "Goodyear's": null, + "goody": [["S", "M"]], + "goodies": null, + "goody's": null, + "gooey": null, + "goofiness": [["M", "S"]], + "goofiness's": null, + "goofinesses": null, + "goof": [["S", "D", "M", "G"]], + "goofs": null, + "goofed": null, + "goof's": null, + "goofing": null, + "goofy": [["R", "P", "T"]], + "goofier": null, + "goofiest": null, + "Google": [["M"]], + "Google's": null, + "gooier": null, + "gooiest": null, + "gook": [["S", "M"]], + "gooks": null, + "gook's": null, + "goo": [["M", "S"]], + "goo's": null, + "goos": [["S", "D", "G"]], + "goon": [["S", "M"]], + "goons": null, + "goon's": null, + "goop": [["S", "M"]], + "goops": null, + "goop's": null, + "gooseberry": [["M", "S"]], + "gooseberry's": null, + "gooseberries": null, + "goosebumps": null, + "goose": [["M"]], + "goose's": null, + "gooses": null, + "goosed": null, + "goosing": null, + "GOP": null, + "Gopher": null, + "gopher": [["S", "M"]], + "gophers": null, + "gopher's": null, + "Goran": [["M"]], + "Goran's": null, + "Goraud": [["M"]], + "Goraud's": null, + "Gorbachev": null, + "Gordan": [["M"]], + "Gordan's": null, + "Gorden": [["M"]], + "Gorden's": null, + "Gordian": [["M"]], + "Gordian's": null, + "Gordie": [["M"]], + "Gordie's": null, + "Gordimer": [["M"]], + "Gordimer's": null, + "Gordon": [["M"]], + "Gordon's": null, + "Gordy": [["M"]], + "Gordy's": null, + "gore": [["D", "S", "M", "G"]], + "gored": null, + "gores": null, + "gore's": null, + "goring": [["M"]], + "Gore": [["M"]], + "Gore's": null, + "Goren": [["M"]], + "Goren's": null, + "Gorey": [["M"]], + "Gorey's": null, + "Gorgas": null, + "gorged": [["E"]], + "disgorged": null, + "gorge": [["G", "M", "S", "R", "D"]], + "gorging": [["E"]], + "gorge's": null, + "gorges": [["E"]], + "gorger": [["E", "M"]], + "gorgeousness": [["S", "M"]], + "gorgeousnesses": null, + "gorgeousness's": null, + "gorgeous": [["Y", "P"]], + "gorgeously": null, + "disgorger": null, + "disgorger's": null, + "gorger's": null, + "disgorges": null, + "disgorging": null, + "Gorgon": [["M"]], + "Gorgon's": null, + "gorgon": [["S"]], + "gorgons": null, + "Gorgonzola": [["M"]], + "Gorgonzola's": null, + "Gorham": [["M"]], + "Gorham's": null, + "gorilla": [["M", "S"]], + "gorilla's": null, + "gorillas": null, + "gorily": null, + "goriness": [["M", "S"]], + "goriness's": null, + "gorinesses": null, + "goring's": null, + "Gorky": [["M"]], + "Gorky's": null, + "gormandizer": [["M"]], + "gormandizer's": null, + "gormandize": [["S", "R", "D", "G", "Z"]], + "gormandizes": null, + "gormandized": null, + "gormandizing": null, + "gormandizers": null, + "gormless": null, + "gorp": [["S"]], + "gorps": null, + "gorse": [["S", "M"]], + "gorses": null, + "gorse's": null, + "gory": [["P", "R", "T"]], + "gorier": null, + "goriest": null, + "gos": null, + "goshawk": [["M", "S"]], + "goshawk's": null, + "goshawks": null, + "gosh": [["S"]], + "goshes": null, + "gosling": [["M"]], + "gosling's": null, + "gospeler": [["M"]], + "gospeler's": null, + "gospel": [["M", "R", "S", "Z"]], + "gospel's": null, + "gospels": null, + "gospelers": null, + "Gospel": [["S", "M"]], + "Gospels": null, + "Gospel's": null, + "gossamer": [["S", "M"]], + "gossamers": null, + "gossamer's": null, + "gossipy": null, + "gossip": [["Z", "G", "M", "R", "D", "S"]], + "gossipers": null, + "gossiping": null, + "gossip's": null, + "gossiper": null, + "gossiped": null, + "gossips": null, + "gotcha": [["S", "M"]], + "gotchas": null, + "gotcha's": null, + "G�teborg": [["M"]], + "G�teborg's": null, + "Gotham": [["M"]], + "Gotham's": null, + "Gothart": [["M"]], + "Gothart's": null, + "Gothicism": [["M"]], + "Gothicism's": null, + "Gothic": [["S"]], + "Gothics": null, + "Goth": [["M"]], + "Goth's": null, + "Goths": null, + "got": [["I", "U"]], + "ingot": [["S", "M", "D", "G"]], + "ungot": null, + "goto": null, + "GOTO": [["M", "S"]], + "GOTO's": null, + "GOTOs": null, + "gotta": null, + "gotten": [["U"]], + "ungotten": null, + "Gottfried": [["M"]], + "Gottfried's": null, + "Goucher": [["M"]], + "Goucher's": null, + "Gouda": [["S", "M"]], + "Goudas": null, + "Gouda's": null, + "gouge": [["G", "Z", "S", "R", "D"]], + "gouging": null, + "gougers": null, + "gouges": null, + "gouger": [["M"]], + "gouged": null, + "gouger's": null, + "goulash": [["S", "M"]], + "goulashes": null, + "goulash's": null, + "Gould": [["M"]], + "Gould's": null, + "Gounod": [["M"]], + "Gounod's": null, + "gourde": [["S", "M"]], + "gourdes": null, + "gourde's": null, + "gourd": [["M", "S"]], + "gourd's": null, + "gourds": null, + "gourmand": [["M", "S"]], + "gourmand's": null, + "gourmands": null, + "gourmet": [["M", "S"]], + "gourmet's": null, + "gourmets": null, + "gout": [["S", "M"]], + "gouts": null, + "gout's": null, + "gouty": [["R", "T"]], + "goutier": null, + "goutiest": null, + "governable": [["U"]], + "ungovernable": null, + "governance": [["S", "M"]], + "governances": null, + "governance's": null, + "governed": [["U"]], + "ungoverned": null, + "governess": [["S", "M"]], + "governesses": null, + "governess's": null, + "govern": [["L", "B", "G", "S", "D"]], + "government": [["M", "S"]], + "governing": null, + "governs": null, + "governmental": [["Y"]], + "governmentally": null, + "government's": null, + "governments": null, + "Governor": null, + "governor": [["M", "S"]], + "governor's": null, + "governors": null, + "governorship": [["S", "M"]], + "governorships": null, + "governorship's": null, + "gov": [["S"]], + "govs": null, + "govt": null, + "gown": [["G", "S", "D", "M"]], + "gowning": null, + "gowns": null, + "gowned": null, + "gown's": null, + "Goya": [["M"]], + "Goya's": null, + "GP": null, + "GPA": null, + "GPO": null, + "GPSS": null, + "gr": null, + "grabbed": null, + "grabber": [["S", "M"]], + "grabbers": null, + "grabber's": null, + "grabbing": [["S"]], + "grabbings": null, + "grab": [["S"]], + "grabs": null, + "Gracchus": [["M"]], + "Gracchus's": null, + "grace": [["E", "S", "D", "M", "G"]], + "disgraces": null, + "disgraced": null, + "disgrace's": null, + "disgracing": null, + "graces": null, + "graced": null, + "grace's": null, + "gracing": null, + "graceful": [["E", "Y", "P", "U"]], + "disgraceful": null, + "disgracefully": null, + "disgracefulness": null, + "gracefully": null, + "ungracefully": null, + "gracefulness": [["E", "S", "M"]], + "ungracefulness": null, + "ungraceful": null, + "gracefuller": null, + "gracefullest": null, + "disgracefulnesses": null, + "disgracefulness's": null, + "gracefulnesses": null, + "gracefulness's": null, + "Graceland": [["M"]], + "Graceland's": null, + "gracelessness": [["M", "S"]], + "gracelessness's": null, + "gracelessnesses": null, + "graceless": [["P", "Y"]], + "gracelessly": null, + "Grace": [["M"]], + "Grace's": null, + "Gracia": [["M"]], + "Gracia's": null, + "Graciela": [["M"]], + "Graciela's": null, + "Gracie": [["M"]], + "Gracie's": null, + "graciousness": [["S", "M"]], + "graciousnesses": null, + "graciousness's": null, + "gracious": [["U", "Y"]], + "ungracious": null, + "ungraciously": null, + "graciously": null, + "grackle": [["S", "M"]], + "grackles": null, + "grackle's": null, + "gradate": [["D", "S", "N", "G", "X"]], + "gradated": null, + "gradates": null, + "gradation": [["M", "C", "S"]], + "gradating": null, + "gradations": null, + "gradation's": null, + "degradation's": null, + "degradation": null, + "degradations": null, + "grade": [["A", "C", "S", "D", "G"]], + "regrade": null, + "regrades": null, + "regraded": null, + "regrading": null, + "degrades": null, + "grades": null, + "graded": [["U"]], + "grading": null, + "ungraded": null, + "Gradeigh": [["M"]], + "Gradeigh's": null, + "gradely": null, + "grader": [["M", "C"]], + "grader's": null, + "degrader's": null, + "degrader": null, + "grade's": null, + "Gradey": [["M"]], + "Gradey's": null, + "gradient": [["R", "M", "S"]], + "gradienter": null, + "gradient's": null, + "gradients": null, + "grad": [["M", "R", "D", "G", "Z", "J", "S"]], + "grad's": null, + "graders": null, + "gradings": null, + "grads": null, + "gradualism": [["M", "S"]], + "gradualism's": null, + "gradualisms": null, + "gradualist": [["M", "S"]], + "gradualist's": null, + "gradualists": null, + "gradualness": [["M", "S"]], + "gradualness's": null, + "gradualnesses": null, + "gradual": [["S", "Y", "P"]], + "graduals": null, + "gradually": null, + "graduand": [["S", "M"]], + "graduands": null, + "graduand's": null, + "graduate": [["M", "N", "G", "D", "S", "X"]], + "graduate's": null, + "graduation": [["M"]], + "graduating": null, + "graduated": null, + "graduates": null, + "graduations": null, + "graduation's": null, + "Grady": [["M"]], + "Grady's": null, + "Graehme": [["M"]], + "Graehme's": null, + "Graeme": [["M"]], + "Graeme's": null, + "Graffias": [["M"]], + "Graffias's": null, + "graffiti": null, + "graffito": [["M"]], + "graffito's": null, + "Graff": [["M"]], + "Graff's": null, + "grafter": [["M"]], + "grafter's": null, + "grafting": [["M"]], + "grafting's": null, + "graft": [["M", "R", "D", "S", "G", "Z"]], + "graft's": null, + "grafted": null, + "grafts": null, + "grafters": null, + "Grafton": [["M"]], + "Grafton's": null, + "Grahame": [["M"]], + "Grahame's": null, + "Graham": [["M"]], + "Graham's": null, + "graham": [["S", "M"]], + "grahams": null, + "graham's": null, + "Graig": [["M"]], + "Graig's": null, + "grail": [["S"]], + "grails": null, + "Grail": [["S", "M"]], + "Grails": null, + "Grail's": null, + "grainer": [["M"]], + "grainer's": null, + "grain": [["I", "G", "S", "D"]], + "ingrain": null, + "ingraining": null, + "ingrains": null, + "ingrained": [["Y"]], + "graining": [["M"]], + "grains": null, + "grained": null, + "graininess": [["M", "S"]], + "graininess's": null, + "graininesses": null, + "graining's": null, + "grain's": null, + "grainy": [["R", "T", "P"]], + "grainier": null, + "grainiest": null, + "gram": [["K", "S", "M"]], + "program": [["C", "S", "A"]], + "programs": null, + "program's": null, + "grams": null, + "gram's": null, + "Gram": [["M"]], + "Gram's": null, + "grammarian": [["S", "M"]], + "grammarians": null, + "grammarian's": null, + "grammar": [["M", "S"]], + "grammar's": null, + "grammars": null, + "grammaticality": [["M"]], + "grammaticality's": null, + "grammaticalness": [["M"]], + "grammaticalness's": null, + "grammatical": [["U", "Y"]], + "ungrammatical": null, + "ungrammatically": null, + "grammatically": null, + "grammatic": [["K"]], + "programmatic": null, + "gramme": [["S", "M"]], + "grammes": null, + "gramme's": null, + "Grammy": [["S"]], + "Grammies": null, + "gramophone": [["S", "M"]], + "gramophones": null, + "gramophone's": null, + "Grampians": null, + "grampus": [["S", "M"]], + "grampuses": null, + "grampus's": null, + "Granada": [["M"]], + "Granada's": null, + "granary": [["M", "S"]], + "granary's": null, + "granaries": null, + "grandam": [["S", "M"]], + "grandams": null, + "grandam's": null, + "grandaunt": [["M", "S"]], + "grandaunt's": null, + "grandaunts": null, + "grandchild": [["M"]], + "grandchild's": null, + "grandchildren": null, + "granddaddy": [["M", "S"]], + "granddaddy's": null, + "granddaddies": null, + "granddad": [["S", "M"]], + "granddads": null, + "granddad's": null, + "granddaughter": [["M", "S"]], + "granddaughter's": null, + "granddaughters": null, + "grandee": [["S", "M"]], + "grandees": null, + "grandee's": null, + "grandeur": [["M", "S"]], + "grandeur's": null, + "grandeurs": null, + "grandfather": [["M", "Y", "D", "S", "G"]], + "grandfather's": null, + "grandfatherly": null, + "grandfathered": null, + "grandfathers": null, + "grandfathering": null, + "grandiloquence": [["S", "M"]], + "grandiloquences": null, + "grandiloquence's": null, + "grandiloquent": [["Y"]], + "grandiloquently": null, + "grandiose": [["Y", "P"]], + "grandiosely": null, + "grandioseness": null, + "grandiosity": [["M", "S"]], + "grandiosity's": null, + "grandiosities": null, + "grandkid": [["S", "M"]], + "grandkids": null, + "grandkid's": null, + "grandma": [["M", "S"]], + "grandma's": null, + "grandmas": null, + "grandmaster": [["M", "S"]], + "grandmaster's": null, + "grandmasters": null, + "grandmother": [["M", "Y", "S"]], + "grandmother's": null, + "grandmotherly": null, + "grandmothers": null, + "grandnephew": [["M", "S"]], + "grandnephew's": null, + "grandnephews": null, + "grandness": [["M", "S"]], + "grandness's": null, + "grandnesses": null, + "grandniece": [["S", "M"]], + "grandnieces": null, + "grandniece's": null, + "grandpa": [["M", "S"]], + "grandpa's": null, + "grandpas": null, + "grandparent": [["M", "S"]], + "grandparent's": null, + "grandparents": null, + "grandson": [["M", "S"]], + "grandson's": null, + "grandsons": null, + "grandstander": [["M"]], + "grandstander's": null, + "grandstand": [["S", "R", "D", "M", "G"]], + "grandstands": null, + "grandstanded": null, + "grandstand's": null, + "grandstanding": null, + "grand": [["T", "P", "S", "Y", "R"]], + "grandest": null, + "grands": null, + "grandly": null, + "grander": null, + "granduncle": [["M", "S"]], + "granduncle's": null, + "granduncles": null, + "Grange": [["M", "R"]], + "Grange's": null, + "Granger": [["M"]], + "grange": [["M", "S", "R"]], + "grange's": null, + "granges": null, + "granger": null, + "Granger's": null, + "granite": [["M", "S"]], + "granite's": null, + "granites": null, + "granitic": null, + "Gran": [["M"]], + "Gran's": null, + "Grannie": [["M"]], + "Grannie's": null, + "Granny": [["M"]], + "Granny's": null, + "granny": [["M", "S"]], + "granny's": null, + "grannies": null, + "granola": [["S"]], + "granolas": null, + "grantee": [["M", "S"]], + "grantee's": null, + "grantees": null, + "granter": [["M"]], + "granter's": null, + "Grantham": [["M"]], + "Grantham's": null, + "Granthem": [["M"]], + "Granthem's": null, + "Grantley": [["M"]], + "Grantley's": null, + "Grant": [["M"]], + "Grant's": null, + "grantor's": null, + "grant": [["S", "G", "Z", "M", "R", "D"]], + "grants": null, + "granting": null, + "granters": null, + "grant's": null, + "granted": null, + "grantsmanship": [["S"]], + "grantsmanships": null, + "granularity": [["S", "M"]], + "granularities": null, + "granularity's": null, + "granular": [["Y"]], + "granularly": null, + "granulate": [["S", "D", "X", "V", "G", "N"]], + "granulates": null, + "granulated": null, + "granulations": null, + "granulative": null, + "granulating": null, + "granulation": [["M"]], + "granulation's": null, + "granule": [["S", "M"]], + "granules": null, + "granule's": null, + "granulocytic": null, + "Granville": [["M"]], + "Granville's": null, + "grapefruit": [["S", "M"]], + "grapefruits": null, + "grapefruit's": null, + "grape": [["S", "D", "G", "M"]], + "grapes": null, + "graped": null, + "graping": null, + "grape's": null, + "grapeshot": [["M"]], + "grapeshot's": null, + "grapevine": [["M", "S"]], + "grapevine's": null, + "grapevines": null, + "grapheme": [["M"]], + "grapheme's": null, + "graph": [["G", "M", "D"]], + "graphing": null, + "graph's": null, + "graphed": null, + "graphical": [["Y"]], + "graphically": null, + "graphicness": [["M"]], + "graphicness's": null, + "graphic": [["P", "S"]], + "graphics": [["M"]], + "graphics's": null, + "graphite": [["S", "M"]], + "graphites": null, + "graphite's": null, + "graphologist": [["S", "M"]], + "graphologists": null, + "graphologist's": null, + "graphology": [["M", "S"]], + "graphology's": null, + "graphologies": null, + "graphs": null, + "grapnel": [["S", "M"]], + "grapnels": null, + "grapnel's": null, + "grapple": [["D", "R", "S", "G"]], + "grappled": null, + "grappler": [["M"]], + "grapples": null, + "grappling": [["M"]], + "grappler's": null, + "grappling's": null, + "grasper": [["M"]], + "grasper's": null, + "graspingness": [["M"]], + "graspingness's": null, + "grasping": [["P", "Y"]], + "graspingly": null, + "grasp": [["S", "R", "D", "B", "G"]], + "grasps": null, + "grasped": null, + "graspable": null, + "grass": [["G", "Z", "S", "D", "M"]], + "grassing": null, + "grassers": null, + "grasses": null, + "grassed": null, + "grass's": null, + "grasshopper": [["S", "M"]], + "grasshoppers": null, + "grasshopper's": null, + "grassland": [["M", "S"]], + "grassland's": null, + "grasslands": null, + "Grass": [["M"]], + "Grass's": null, + "grassroots": null, + "grassy": [["R", "T"]], + "grassier": null, + "grassiest": null, + "Grata": [["M"]], + "Grata's": null, + "gratefuller": null, + "gratefullest": null, + "gratefulness": [["U", "S", "M"]], + "ungratefulness": null, + "ungratefulnesses": null, + "ungratefulness's": null, + "gratefulnesses": null, + "gratefulness's": null, + "grateful": [["Y", "P", "U"]], + "gratefully": null, + "ungratefully": null, + "ungrateful": null, + "grater": [["M"]], + "grater's": null, + "grates": [["I"]], + "ingrates": null, + "grate": [["S", "R", "D", "J", "G", "Z"]], + "grated": null, + "gratings": null, + "grating": [["Y", "M"]], + "graters": null, + "Gratia": [["M"]], + "Gratia's": null, + "Gratiana": [["M"]], + "Gratiana's": null, + "graticule": [["M"]], + "graticule's": null, + "gratification": [["M"]], + "gratification's": null, + "gratified": [["U"]], + "ungratified": null, + "gratifying": [["Y"]], + "gratifyingly": null, + "gratify": [["N", "D", "S", "X", "G"]], + "gratifies": null, + "gratifications": null, + "gratingly": null, + "grating's": null, + "gratis": null, + "gratitude": [["I", "M", "S"]], + "ingratitude": null, + "ingratitude's": null, + "ingratitudes": null, + "gratitude's": null, + "gratitudes": null, + "gratuitousness": [["M", "S"]], + "gratuitousness's": null, + "gratuitousnesses": null, + "gratuitous": [["P", "Y"]], + "gratuitously": null, + "gratuity": [["S", "M"]], + "gratuities": null, + "gratuity's": null, + "gravamen": [["S", "M"]], + "gravamens": null, + "gravamen's": null, + "gravedigger": [["S", "M"]], + "gravediggers": null, + "gravedigger's": null, + "gravel": [["S", "G", "M", "Y", "D"]], + "gravels": null, + "graveling": null, + "gravel's": null, + "gravelly": null, + "graveled": null, + "graven": null, + "graveness": [["M", "S"]], + "graveness's": null, + "gravenesses": null, + "graver": [["M"]], + "graver's": null, + "graveside": [["S"]], + "gravesides": null, + "Graves": [["M"]], + "Graves's": null, + "grave": [["S", "R", "D", "P", "G", "M", "Z", "T", "Y"]], + "graves": null, + "graved": null, + "graving": null, + "grave's": null, + "gravers": null, + "gravest": null, + "gravely": null, + "gravestone": [["S", "M"]], + "gravestones": null, + "gravestone's": null, + "graveyard": [["M", "S"]], + "graveyard's": null, + "graveyards": null, + "gravidness": [["M"]], + "gravidness's": null, + "gravid": [["P", "Y"]], + "gravidly": null, + "gravimeter": [["S", "M"]], + "gravimeters": null, + "gravimeter's": null, + "gravimetric": null, + "gravitas": null, + "gravitate": [["X", "V", "G", "N", "S", "D"]], + "gravitations": null, + "gravitative": null, + "gravitating": null, + "gravitation": [["M"]], + "gravitates": null, + "gravitated": null, + "gravitational": [["Y"]], + "gravitationally": null, + "gravitation's": null, + "graviton": [["S", "M"]], + "gravitons": null, + "graviton's": null, + "gravity": [["M", "S"]], + "gravity's": null, + "gravities": null, + "gravy": [["S", "M"]], + "gravies": null, + "gravy's": null, + "graybeard": [["M", "S"]], + "graybeard's": null, + "graybeards": null, + "Grayce": [["M"]], + "Grayce's": null, + "grayish": null, + "Gray": [["M"]], + "Gray's": null, + "grayness": [["S"]], + "graynesses": null, + "gray": [["P", "Y", "R", "D", "G", "T", "S"]], + "grayly": null, + "grayer": null, + "grayed": null, + "graying": null, + "grayest": null, + "grays": null, + "Grayson": [["M"]], + "Grayson's": null, + "graze": [["G", "Z", "S", "R", "D"]], + "grazing": [["M"]], + "grazers": null, + "grazes": null, + "grazer": [["M"]], + "grazed": null, + "grazer's": null, + "Grazia": [["M"]], + "Grazia's": null, + "grazing's": null, + "grease": [["G", "M", "Z", "S", "R", "D"]], + "greasing": null, + "grease's": null, + "greasers": null, + "greases": null, + "greaser": [["M"]], + "greased": null, + "greasepaint": [["M", "S"]], + "greasepaint's": null, + "greasepaints": null, + "greaseproof": null, + "greaser's": null, + "greasily": null, + "greasiness": [["S", "M"]], + "greasinesses": null, + "greasiness's": null, + "greasy": [["P", "R", "T"]], + "greasier": null, + "greasiest": null, + "greatcoat": [["D", "M", "S"]], + "greatcoated": null, + "greatcoat's": null, + "greatcoats": null, + "greaten": [["D", "G"]], + "greatened": null, + "greatening": null, + "greathearted": null, + "greatness": [["M", "S"]], + "greatness's": null, + "greatnesses": null, + "great": [["S", "P", "T", "Y", "R", "N"]], + "greats": null, + "greatest": null, + "greatly": null, + "greater": null, + "grebe": [["M", "S"]], + "grebe's": null, + "grebes": null, + "Grecian": [["S"]], + "Grecians": null, + "Greece": [["M"]], + "Greece's": null, + "greed": [["C"]], + "degreed": null, + "greedily": null, + "greediness": [["S", "M"]], + "greedinesses": null, + "greediness's": null, + "greeds": null, + "greed's": null, + "greedy": [["R", "T", "P"]], + "greedier": null, + "greediest": null, + "Greek": [["S", "M"]], + "Greeks": null, + "Greek's": null, + "Greeley": [["M"]], + "Greeley's": null, + "greenback": [["M", "S"]], + "greenback's": null, + "greenbacks": null, + "greenbelt": [["S"]], + "greenbelts": null, + "Greenberg": [["M"]], + "Greenberg's": null, + "Greenblatt": [["M"]], + "Greenblatt's": null, + "Greenbriar": [["M"]], + "Greenbriar's": null, + "Greene": [["M"]], + "Greene's": null, + "greenery": [["M", "S"]], + "greenery's": null, + "greeneries": null, + "Greenfeld": [["M"]], + "Greenfeld's": null, + "greenfield": null, + "Greenfield": [["M"]], + "Greenfield's": null, + "greenfly": [["M"]], + "greenfly's": null, + "greengage": [["S", "M"]], + "greengages": null, + "greengage's": null, + "greengrocer": [["S", "M"]], + "greengrocers": null, + "greengrocer's": null, + "greengrocery": [["M"]], + "greengrocery's": null, + "greenhorn": [["S", "M"]], + "greenhorns": null, + "greenhorn's": null, + "greenhouse": [["S", "M"]], + "greenhouses": null, + "greenhouse's": null, + "greening": [["M"]], + "greening's": null, + "greenish": [["P"]], + "greenishness": null, + "Greenland": [["M"]], + "Greenland's": null, + "Green": [["M"]], + "Green's": null, + "greenmail": [["G", "D", "S"]], + "greenmailing": null, + "greenmailed": null, + "greenmails": null, + "greenness": [["M", "S"]], + "greenness's": null, + "greennesses": null, + "Greenpeace": [["M"]], + "Greenpeace's": null, + "greenroom": [["S", "M"]], + "greenrooms": null, + "greenroom's": null, + "Greensboro": [["M"]], + "Greensboro's": null, + "Greensleeves": [["M"]], + "Greensleeves's": null, + "Greensville": [["M"]], + "Greensville's": null, + "greensward": [["S", "M"]], + "greenswards": null, + "greensward's": null, + "green": [["S", "Y", "R", "D", "M", "P", "G", "T"]], + "greens": null, + "greenly": null, + "greener": null, + "greened": null, + "green's": null, + "greenest": null, + "Greentree": [["M"]], + "Greentree's": null, + "Greenville": [["M"]], + "Greenville's": null, + "Greenwich": [["M"]], + "Greenwich's": null, + "greenwood": [["M", "S"]], + "greenwood's": null, + "greenwoods": null, + "Greer": [["M"]], + "Greer's": null, + "greeter": [["M"]], + "greeter's": null, + "greeting": [["M"]], + "greeting's": null, + "greets": [["A"]], + "regreets": null, + "greet": [["S", "R", "D", "J", "G", "Z"]], + "greeted": null, + "greetings": null, + "greeters": null, + "gregariousness": [["M", "S"]], + "gregariousness's": null, + "gregariousnesses": null, + "gregarious": [["P", "Y"]], + "gregariously": null, + "Gregg": [["M"]], + "Gregg's": null, + "Greggory": [["M"]], + "Greggory's": null, + "Greg": [["M"]], + "Greg's": null, + "Gregoire": [["M"]], + "Gregoire's": null, + "Gregoor": [["M"]], + "Gregoor's": null, + "Gregorian": null, + "Gregorio": [["M"]], + "Gregorio's": null, + "Gregorius": [["M"]], + "Gregorius's": null, + "Gregor": [["M"]], + "Gregor's": null, + "Gregory": [["M"]], + "Gregory's": null, + "gremlin": [["S", "M"]], + "gremlins": null, + "gremlin's": null, + "Grenada": [["M"]], + "Grenada's": null, + "grenade": [["M", "S"]], + "grenade's": null, + "grenades": null, + "Grenadian": [["S"]], + "Grenadians": null, + "grenadier": [["S", "M"]], + "grenadiers": null, + "grenadier's": null, + "Grenadines": null, + "grenadine": [["S", "M"]], + "grenadines": null, + "grenadine's": null, + "Grendel": [["M"]], + "Grendel's": null, + "Grenier": [["M"]], + "Grenier's": null, + "Grenoble": [["M"]], + "Grenoble's": null, + "Grenville": [["M"]], + "Grenville's": null, + "Gresham": [["M"]], + "Gresham's": null, + "Gretal": [["M"]], + "Gretal's": null, + "Greta": [["M"]], + "Greta's": null, + "Gretchen": [["M"]], + "Gretchen's": null, + "Gretel": [["M"]], + "Gretel's": null, + "Grete": [["M"]], + "Grete's": null, + "Grethel": [["M"]], + "Grethel's": null, + "Gretna": [["M"]], + "Gretna's": null, + "Gretta": [["M"]], + "Gretta's": null, + "Gretzky": [["M"]], + "Gretzky's": null, + "grew": [["A"]], + "regrew": null, + "greybeard": [["M"]], + "greybeard's": null, + "greyhound": [["M", "S"]], + "greyhound's": null, + "greyhounds": null, + "Grey": [["M"]], + "Grey's": null, + "greyness": [["M"]], + "greyness's": null, + "gridded": null, + "griddlecake": [["S", "M"]], + "griddlecakes": null, + "griddlecake's": null, + "griddle": [["D", "S", "G", "M"]], + "griddled": null, + "griddles": null, + "griddling": null, + "griddle's": null, + "gridiron": [["G", "S", "M", "D"]], + "gridironing": null, + "gridirons": null, + "gridiron's": null, + "gridironed": null, + "gridlock": [["D", "S", "G"]], + "gridlocked": null, + "gridlocks": null, + "gridlocking": null, + "grids": [["A"]], + "regrids": null, + "grid": [["S", "G", "M"]], + "griding": null, + "grid's": null, + "grief": [["M", "S"]], + "grief's": null, + "griefs": null, + "Grieg": [["M"]], + "Grieg's": null, + "Grier": [["M"]], + "Grier's": null, + "grievance": [["S", "M"]], + "grievances": null, + "grievance's": null, + "griever": [["M"]], + "griever's": null, + "grieve": [["S", "R", "D", "G", "Z"]], + "grieves": null, + "grieved": null, + "grieving": [["Y"]], + "grievers": null, + "grievingly": null, + "grievousness": [["S", "M"]], + "grievousnesses": null, + "grievousness's": null, + "grievous": [["P", "Y"]], + "grievously": null, + "Griffie": [["M"]], + "Griffie's": null, + "Griffin": [["M"]], + "Griffin's": null, + "griffin": [["S", "M"]], + "griffins": null, + "griffin's": null, + "Griffith": [["M"]], + "Griffith's": null, + "Griff": [["M"]], + "Griff's": null, + "griffon's": null, + "Griffy": [["M"]], + "Griffy's": null, + "griller": [["M"]], + "griller's": null, + "grille": [["S", "M"]], + "grilles": null, + "grille's": null, + "grill": [["R", "D", "G", "S"]], + "grilled": null, + "grilling": null, + "grills": null, + "grillwork": [["M"]], + "grillwork's": null, + "grimace": [["D", "R", "S", "G", "M"]], + "grimaced": null, + "grimacer": [["M"]], + "grimaces": null, + "grimacing": null, + "grimace's": null, + "grimacer's": null, + "Grimaldi": [["M"]], + "Grimaldi's": null, + "grime": [["M", "S"]], + "grime's": null, + "grimes": null, + "Grimes": null, + "griminess": [["M", "S"]], + "griminess's": null, + "griminesses": null, + "grimmer": null, + "grimmest": null, + "Grimm": [["M"]], + "Grimm's": null, + "grimness": [["M", "S"]], + "grimness's": null, + "grimnesses": null, + "grim": [["P", "G", "Y", "D"]], + "griming": null, + "grimly": null, + "grimed": null, + "grimy": [["T", "P", "R"]], + "grimiest": null, + "grimier": null, + "Grinch": [["M"]], + "Grinch's": null, + "grind": [["A", "S", "G"]], + "regrind": null, + "regrinds": null, + "regrinding": null, + "grinds": null, + "grinding": [["S", "Y"]], + "grinder": [["M", "S"]], + "grinder's": null, + "grinders": null, + "grindings": null, + "grindingly": null, + "grindstone": [["S", "M"]], + "grindstones": null, + "grindstone's": null, + "gringo": [["S", "M"]], + "gringos": null, + "gringo's": null, + "grinned": null, + "grinner": [["M"]], + "grinner's": null, + "grinning": [["Y"]], + "grinningly": null, + "grin": [["S"]], + "grins": null, + "griper": [["M"]], + "griper's": null, + "gripe": [["S"]], + "gripes": null, + "grippe": [["G", "M", "Z", "S", "R", "D"]], + "gripping": [["Y"]], + "grippe's": null, + "grippers": null, + "grippes": null, + "gripper": [["M"]], + "gripped": null, + "gripper's": null, + "grippingly": null, + "grip": [["S", "G", "Z", "M", "R", "D"]], + "grips": null, + "griping": null, + "gripers": null, + "grip's": null, + "griped": null, + "Griselda": [["M"]], + "Griselda's": null, + "grisliness": [["S", "M"]], + "grislinesses": null, + "grisliness's": null, + "grisly": [["R", "P", "T"]], + "grislier": null, + "grisliest": null, + "Gris": [["M"]], + "Gris's": null, + "Grissel": [["M"]], + "Grissel's": null, + "gristle": [["S", "M"]], + "gristles": null, + "gristle's": null, + "gristliness": [["M"]], + "gristliness's": null, + "gristly": [["T", "R", "P"]], + "gristliest": null, + "gristlier": null, + "gristmill": [["M", "S"]], + "gristmill's": null, + "gristmills": null, + "grist": [["M", "Y", "S"]], + "grist's": null, + "grists": null, + "Griswold": [["M"]], + "Griswold's": null, + "grit": [["M", "S"]], + "grit's": null, + "grits": null, + "gritted": null, + "gritter": [["M", "S"]], + "gritter's": null, + "gritters": null, + "grittiness": [["S", "M"]], + "grittinesses": null, + "grittiness's": null, + "gritting": null, + "gritty": [["P", "R", "T"]], + "grittier": null, + "grittiest": null, + "Griz": [["M"]], + "Griz's": null, + "grizzle": [["D", "S", "G"]], + "grizzled": null, + "grizzles": null, + "grizzling": [["M"]], + "grizzling's": null, + "grizzly": [["T", "R", "S"]], + "grizzliest": null, + "grizzlier": null, + "grizzlies": null, + "Gr": [["M"]], + "Gr's": null, + "groaner": [["M"]], + "groaner's": null, + "groan": [["G", "Z", "S", "R", "D", "M"]], + "groaning": null, + "groaners": null, + "groans": null, + "groaned": null, + "groan's": null, + "groat": [["S", "M"]], + "groats": null, + "groat's": null, + "grocer": [["M", "S"]], + "grocer's": null, + "grocers": null, + "grocery": [["M", "S"]], + "grocery's": null, + "groceries": null, + "groggily": null, + "grogginess": [["S", "M"]], + "grogginesses": null, + "grogginess's": null, + "groggy": [["R", "P", "T"]], + "groggier": null, + "groggiest": null, + "grog": [["M", "S"]], + "grog's": null, + "grogs": null, + "groin": [["M", "G", "S", "D"]], + "groin's": null, + "groining": null, + "groins": null, + "groined": null, + "grokked": null, + "grokking": null, + "grok": [["S"]], + "groks": null, + "grommet": [["G", "M", "D", "S"]], + "grommeting": null, + "grommet's": null, + "grommeted": null, + "grommets": null, + "Gromyko": [["M"]], + "Gromyko's": null, + "groofs": null, + "groomer": [["M"]], + "groomer's": null, + "groom": [["G", "Z", "S", "M", "R", "D"]], + "grooming": null, + "groomers": null, + "grooms": null, + "groom's": null, + "groomed": null, + "groomsman": [["M"]], + "groomsman's": null, + "groomsmen": null, + "Groot": [["M"]], + "Groot's": null, + "groover": [["M"]], + "groover's": null, + "groove": [["S", "R", "D", "G", "M"]], + "grooves": null, + "grooved": null, + "grooving": null, + "groove's": null, + "groovy": [["T", "R"]], + "grooviest": null, + "groovier": null, + "groper": [["M"]], + "groper's": null, + "grope": [["S", "R", "D", "J", "G", "Z"]], + "gropes": null, + "groped": null, + "gropings": null, + "groping": null, + "gropers": null, + "Gropius": [["M"]], + "Gropius's": null, + "grosbeak": [["S", "M"]], + "grosbeaks": null, + "grosbeak's": null, + "grosgrain": [["M", "S"]], + "grosgrain's": null, + "grosgrains": null, + "Gross": null, + "Grosset": [["M"]], + "Grosset's": null, + "gross": [["G", "T", "Y", "S", "R", "D", "P"]], + "grossing": null, + "grossest": null, + "grossly": null, + "grosses": null, + "grosser": null, + "grossed": null, + "grossness": [["M", "S"]], + "Grossman": [["M"]], + "Grossman's": null, + "grossness's": null, + "grossnesses": null, + "Grosvenor": [["M"]], + "Grosvenor's": null, + "Grosz": [["M"]], + "Grosz's": null, + "grotesqueness": [["M", "S"]], + "grotesqueness's": null, + "grotesquenesses": null, + "grotesque": [["P", "S", "Y"]], + "grotesques": null, + "grotesquely": null, + "Grotius": [["M"]], + "Grotius's": null, + "Groton": [["M"]], + "Groton's": null, + "grottoes": null, + "grotto": [["M"]], + "grotto's": null, + "grouch": [["G", "D", "S"]], + "grouching": null, + "grouched": null, + "grouches": null, + "grouchily": null, + "grouchiness": [["M", "S"]], + "grouchiness's": null, + "grouchinesses": null, + "grouchy": [["R", "P", "T"]], + "grouchier": null, + "grouchiest": null, + "groundbreaking": [["S"]], + "groundbreakings": null, + "grounded": [["U"]], + "ungrounded": null, + "grounder": [["M"]], + "grounder's": null, + "groundhog": [["S", "M"]], + "groundhogs": null, + "groundhog's": null, + "ground": [["J", "G", "Z", "M", "D", "R", "S"]], + "groundings": null, + "grounding": null, + "grounders": null, + "ground's": null, + "grounds": null, + "groundlessness": [["M"]], + "groundlessness's": null, + "groundless": [["Y", "P"]], + "groundlessly": null, + "groundnut": [["M", "S"]], + "groundnut's": null, + "groundnuts": null, + "groundsheet": [["M"]], + "groundsheet's": null, + "groundskeepers": null, + "groundsman": [["M"]], + "groundsman's": null, + "groundswell": [["S"]], + "groundswells": null, + "groundwater": [["S"]], + "groundwaters": null, + "groundwork": [["S", "M"]], + "groundworks": null, + "groundwork's": null, + "grouped": [["A"]], + "regrouped": null, + "grouper": [["M"]], + "grouper's": null, + "groupie": [["M", "S"]], + "groupie's": null, + "groupies": null, + "grouping": [["M"]], + "grouping's": null, + "groups": [["A"]], + "regroups": null, + "group": [["Z", "J", "S", "M", "R", "D", "G"]], + "groupers": null, + "groupings": null, + "group's": null, + "grouse": [["G", "M", "Z", "S", "R", "D"]], + "grousing": null, + "grouse's": null, + "grousers": null, + "grouses": null, + "grouser": [["M"]], + "groused": null, + "grouser's": null, + "grouter": [["M"]], + "grouter's": null, + "grout": [["G", "S", "M", "R", "D"]], + "grouting": null, + "grouts": null, + "grout's": null, + "grouted": null, + "groveler": [["M"]], + "groveler's": null, + "grovelike": null, + "groveling": [["Y"]], + "grovelingly": null, + "grovel": [["S", "D", "R", "G", "Z"]], + "grovels": null, + "groveled": null, + "grovelers": null, + "Grover": [["M"]], + "Grover's": null, + "Grove": [["R", "M"]], + "Grove's": null, + "grove": [["S", "R", "M", "Z"]], + "groves": null, + "grover": null, + "grove's": null, + "grovers": null, + "grower": [["M"]], + "grower's": null, + "grow": [["G", "Z", "Y", "R", "H", "S"]], + "growing": [["I"]], + "growers": null, + "growly": [["R", "P"]], + "growth": [["I", "M", "A"]], + "grows": [["A"]], + "ingrowing": null, + "growingly": null, + "growler": [["M"]], + "growler's": null, + "growling": [["Y"]], + "growlingly": null, + "growl": [["R", "D", "G", "Z", "S"]], + "growled": null, + "growlers": null, + "growls": null, + "growlier": null, + "growliness": null, + "grown": [["I", "A"]], + "ingrown": [["P"]], + "regrown": null, + "grownup": [["M", "S"]], + "grownup's": null, + "grownups": null, + "regrows": null, + "ingrowth": null, + "ingrowth's": null, + "growth's": null, + "regrowth's": null, + "regrowth": null, + "growths": [["I", "A"]], + "ingrowths": null, + "regrowths": null, + "grubbed": null, + "grubber": [["S", "M"]], + "grubbers": null, + "grubber's": null, + "grubbily": null, + "grubbiness": [["S", "M"]], + "grubbinesses": null, + "grubbiness's": null, + "grubbing": null, + "grubby": [["R", "T", "P"]], + "grubbier": null, + "grubbiest": null, + "grub": [["M", "S"]], + "grub's": null, + "grubs": null, + "grubstake": [["M", "S", "D", "G"]], + "grubstake's": null, + "grubstakes": null, + "grubstaked": null, + "grubstaking": null, + "grudge": [["G", "M", "S", "R", "D", "J"]], + "grudging": [["Y"]], + "grudge's": null, + "grudges": null, + "grudger": [["M"]], + "grudged": null, + "grudgings": null, + "grudger's": null, + "grudgingly": null, + "grueling": [["Y"]], + "gruelingly": null, + "gruel": [["M", "D", "G", "J", "S"]], + "gruel's": null, + "grueled": null, + "gruelings": null, + "gruels": null, + "gruesomeness": [["S", "M"]], + "gruesomenesses": null, + "gruesomeness's": null, + "gruesome": [["R", "Y", "T", "P"]], + "gruesomer": null, + "gruesomely": null, + "gruesomest": null, + "gruffness": [["M", "S"]], + "gruffness's": null, + "gruffnesses": null, + "gruff": [["P", "S", "G", "T", "Y", "R", "D"]], + "gruffs": null, + "gruffing": null, + "gruffest": null, + "gruffly": null, + "gruffer": null, + "gruffed": null, + "grumble": [["G", "Z", "J", "D", "S", "R"]], + "grumbling": [["Y"]], + "grumblers": null, + "grumblings": null, + "grumbled": null, + "grumbles": null, + "grumbler": [["M"]], + "grumbler's": null, + "grumblingly": null, + "Grumman": [["M"]], + "Grumman's": null, + "grumpily": null, + "grumpiness": [["M", "S"]], + "grumpiness's": null, + "grumpinesses": null, + "grump": [["M", "D", "G", "S"]], + "grump's": null, + "grumped": null, + "grumping": null, + "grumps": null, + "grumpy": [["T", "P", "R"]], + "grumpiest": null, + "grumpier": null, + "Grundy": [["M"]], + "Grundy's": null, + "Gr�newald": [["M"]], + "Gr�newald's": null, + "grunge": [["S"]], + "grunges": null, + "grungy": [["R", "T"]], + "grungier": null, + "grungiest": null, + "grunion": [["S", "M"]], + "grunions": null, + "grunion's": null, + "grunter": [["M"]], + "grunter's": null, + "grunt": [["S", "G", "R", "D"]], + "grunts": null, + "grunting": null, + "grunted": null, + "Grusky": [["M"]], + "Grusky's": null, + "Grus": [["M"]], + "Grus's": null, + "Gruy�re": null, + "Gruyeres": null, + "gryphon's": null, + "g's": null, + "G's": null, + "gs": [["A"]], + "regs": null, + "GSA": null, + "gt": null, + "GU": null, + "guacamole": [["M", "S"]], + "guacamole's": null, + "guacamoles": null, + "Guadalajara": [["M"]], + "Guadalajara's": null, + "Guadalcanal": [["M"]], + "Guadalcanal's": null, + "Guadalquivir": [["M"]], + "Guadalquivir's": null, + "Guadalupe": [["M"]], + "Guadalupe's": null, + "Guadeloupe": [["M"]], + "Guadeloupe's": null, + "Guallatiri": [["M"]], + "Guallatiri's": null, + "Gualterio": [["M"]], + "Gualterio's": null, + "Guamanian": [["S", "M"]], + "Guamanians": null, + "Guamanian's": null, + "Guam": [["M"]], + "Guam's": null, + "Guangzhou": null, + "guanine": [["M", "S"]], + "guanine's": null, + "guanines": null, + "guano": [["M", "S"]], + "guano's": null, + "guanos": null, + "Guantanamo": [["M"]], + "Guantanamo's": null, + "Guarani": [["M"]], + "Guarani's": null, + "guarani": [["S", "M"]], + "guaranis": null, + "guarani's": null, + "guaranteeing": null, + "guarantee": [["R", "S", "D", "Z", "M"]], + "guaranteer": null, + "guarantees": null, + "guaranteed": null, + "guaranteers": null, + "guarantee's": null, + "guarantor": [["S", "M"]], + "guarantors": null, + "guarantor's": null, + "guaranty": [["M", "S", "D", "G"]], + "guaranty's": null, + "guaranties": null, + "guarantied": null, + "guarantying": null, + "guardedness": [["U", "M"]], + "unguardedness": null, + "unguardedness's": null, + "guardedness's": null, + "guarded": [["U", "Y", "P"]], + "unguarded": null, + "unguardedly": null, + "guardedly": null, + "guarder": [["M"]], + "guarder's": null, + "guardhouse": [["S", "M"]], + "guardhouses": null, + "guardhouse's": null, + "Guardia": [["M"]], + "Guardia's": null, + "guardianship": [["M", "S"]], + "guardianship's": null, + "guardianships": null, + "guardian": [["S", "M"]], + "guardians": null, + "guardian's": null, + "guardrail": [["S", "M"]], + "guardrails": null, + "guardrail's": null, + "guard": [["R", "D", "S", "G", "Z"]], + "guards": null, + "guarding": null, + "guarders": null, + "guardroom": [["S", "M"]], + "guardrooms": null, + "guardroom's": null, + "guardsman": [["M"]], + "guardsman's": null, + "guardsmen": null, + "Guarnieri": [["M"]], + "Guarnieri's": null, + "Guatemala": [["M"]], + "Guatemala's": null, + "Guatemalan": [["S"]], + "Guatemalans": null, + "guava": [["S", "M"]], + "guavas": null, + "guava's": null, + "Guayaquil": [["M"]], + "Guayaquil's": null, + "gubernatorial": null, + "Gucci": [["M"]], + "Gucci's": null, + "gudgeon": [["M"]], + "gudgeon's": null, + "Guelph": [["M"]], + "Guelph's": null, + "Guendolen": [["M"]], + "Guendolen's": null, + "Guenevere": [["M"]], + "Guenevere's": null, + "Guenna": [["M"]], + "Guenna's": null, + "Guenther": [["M"]], + "Guenther's": null, + "guernsey": [["S"]], + "guernseys": null, + "Guernsey": [["S", "M"]], + "Guernseys": null, + "Guernsey's": null, + "Guerra": [["M"]], + "Guerra's": null, + "Guerrero": [["M"]], + "Guerrero's": null, + "guerrilla": [["M", "S"]], + "guerrilla's": null, + "guerrillas": null, + "guessable": [["U"]], + "unguessable": null, + "guess": [["B", "G", "Z", "R", "S", "D"]], + "guessing": null, + "guessers": null, + "guesser": [["M"]], + "guesses": null, + "guessed": [["U"]], + "unguessed": null, + "guesser's": null, + "guesstimate": [["D", "S", "M", "G"]], + "guesstimated": null, + "guesstimates": null, + "guesstimate's": null, + "guesstimating": null, + "guesswork": [["M", "S"]], + "guesswork's": null, + "guessworks": null, + "guest": [["S", "G", "M", "D"]], + "guests": null, + "guesting": null, + "guest's": null, + "guested": null, + "Guevara": [["M"]], + "Guevara's": null, + "guffaw": [["G", "S", "D", "M"]], + "guffawing": null, + "guffaws": null, + "guffawed": null, + "guffaw's": null, + "guff": [["S", "M"]], + "guffs": null, + "guff's": null, + "Guggenheim": [["M"]], + "Guggenheim's": null, + "Guglielma": [["M"]], + "Guglielma's": null, + "Guglielmo": [["M"]], + "Guglielmo's": null, + "Guhleman": [["M"]], + "Guhleman's": null, + "GUI": null, + "Guiana": [["M"]], + "Guiana's": null, + "guidance": [["M", "S"]], + "guidance's": null, + "guidances": null, + "guidebook": [["S", "M"]], + "guidebooks": null, + "guidebook's": null, + "guided": [["U"]], + "unguided": null, + "guide": [["G", "Z", "S", "R", "D"]], + "guiding": null, + "guiders": null, + "guides": null, + "guider": [["M"]], + "guideline": [["S", "M"]], + "guidelines": null, + "guideline's": null, + "guidepost": [["M", "S"]], + "guidepost's": null, + "guideposts": null, + "guider's": null, + "Guido": [["M"]], + "Guido's": null, + "Guilbert": [["M"]], + "Guilbert's": null, + "guilder": [["M"]], + "guilder's": null, + "guildhall": [["S", "M"]], + "guildhalls": null, + "guildhall's": null, + "guild": [["S", "Z", "M", "R"]], + "guilds": null, + "guilders": null, + "guild's": null, + "guileful": null, + "guilelessness": [["M", "S"]], + "guilelessness's": null, + "guilelessnesses": null, + "guileless": [["Y", "P"]], + "guilelessly": null, + "guile": [["S", "D", "G", "M"]], + "guiles": null, + "guiled": null, + "guiling": null, + "guile's": null, + "Guillaume": [["M"]], + "Guillaume's": null, + "Guillema": [["M"]], + "Guillema's": null, + "Guillemette": [["M"]], + "Guillemette's": null, + "guillemot": [["M", "S"]], + "guillemot's": null, + "guillemots": null, + "Guillermo": [["M"]], + "Guillermo's": null, + "guillotine": [["S", "D", "G", "M"]], + "guillotines": null, + "guillotined": null, + "guillotining": null, + "guillotine's": null, + "guiltily": null, + "guiltiness": [["M", "S"]], + "guiltiness's": null, + "guiltinesses": null, + "guiltlessness": [["M"]], + "guiltlessness's": null, + "guiltless": [["Y", "P"]], + "guiltlessly": null, + "guilt": [["S", "M"]], + "guilts": null, + "guilt's": null, + "guilty": [["P", "T", "R"]], + "guiltiest": null, + "guiltier": null, + "Gui": [["M"]], + "Gui's": null, + "Guinea": [["M"]], + "Guinea's": null, + "Guinean": [["S"]], + "Guineans": null, + "guinea": [["S", "M"]], + "guineas": null, + "guinea's": null, + "Guinevere": [["M"]], + "Guinevere's": null, + "Guinna": [["M"]], + "Guinna's": null, + "Guinness": [["M"]], + "Guinness's": null, + "guise's": null, + "guise": [["S", "D", "E", "G"]], + "guises": null, + "disguises": null, + "guised": null, + "disguising": null, + "guising": null, + "guitarist": [["S", "M"]], + "guitarists": null, + "guitarist's": null, + "guitar": [["S", "M"]], + "guitars": null, + "guitar's": null, + "Guiyang": null, + "Guizot": [["M"]], + "Guizot's": null, + "Gujarati": [["M"]], + "Gujarati's": null, + "Gujarat": [["M"]], + "Gujarat's": null, + "Gujranwala": [["M"]], + "Gujranwala's": null, + "gulag": [["S"]], + "gulags": null, + "gulch": [["M", "S"]], + "gulch's": null, + "gulches": null, + "gulden": [["M", "S"]], + "gulden's": null, + "guldens": null, + "gulf": [["D", "M", "G", "S"]], + "gulfed": null, + "gulf's": null, + "gulfing": null, + "gulfs": null, + "Gullah": [["M"]], + "Gullah's": null, + "gullet": [["M", "S"]], + "gullet's": null, + "gullets": null, + "gulley's": null, + "gullibility": [["M", "S"]], + "gullibility's": null, + "gullibilities": null, + "gullible": null, + "Gulliver": [["M"]], + "Gulliver's": null, + "gull": [["M", "D", "S", "G"]], + "gull's": null, + "gulled": null, + "gulls": null, + "gulling": null, + "gully": [["S", "D", "M", "G"]], + "gullies": null, + "gullied": null, + "gully's": null, + "gullying": null, + "gulp": [["R", "D", "G", "Z", "S"]], + "gulper": null, + "gulped": null, + "gulping": null, + "gulpers": null, + "gulps": null, + "gumboil": [["M", "S"]], + "gumboil's": null, + "gumboils": null, + "gumbo": [["M", "S"]], + "gumbo's": null, + "gumbos": null, + "gumboots": null, + "gumdrop": [["S", "M"]], + "gumdrops": null, + "gumdrop's": null, + "gummed": null, + "gumminess": [["M"]], + "gumminess's": null, + "gumming": [["C"]], + "degumming": null, + "gum": [["M", "S"]], + "gum's": null, + "gums": null, + "gummy": [["R", "T", "P"]], + "gummier": null, + "gummiest": null, + "gumption": [["S", "M"]], + "gumptions": null, + "gumption's": null, + "gumshoeing": null, + "gumshoe": [["S", "D", "M"]], + "gumshoes": null, + "gumshoed": null, + "gumshoe's": null, + "gumtree": [["M", "S"]], + "gumtree's": null, + "gumtrees": null, + "Gunar": [["M"]], + "Gunar's": null, + "gunboat": [["M", "S"]], + "gunboat's": null, + "gunboats": null, + "Gunderson": [["M"]], + "Gunderson's": null, + "gunfighter": [["M"]], + "gunfighter's": null, + "gunfight": [["S", "R", "M", "G", "Z"]], + "gunfights": null, + "gunfight's": null, + "gunfighting": null, + "gunfighters": null, + "gunfire": [["S", "M"]], + "gunfires": null, + "gunfire's": null, + "gunflint": [["M"]], + "gunflint's": null, + "gunfought": null, + "Gunilla": [["M"]], + "Gunilla's": null, + "gunk": [["S", "M"]], + "gunks": null, + "gunk's": null, + "gunky": [["R", "T"]], + "gunkier": null, + "gunkiest": null, + "Gun": [["M"]], + "Gun's": null, + "gunman": [["M"]], + "gunman's": null, + "gunmen": null, + "gunmetal": [["M", "S"]], + "gunmetal's": null, + "gunmetals": null, + "gun": [["M", "S"]], + "gun's": null, + "guns": null, + "Gunnar": [["M"]], + "Gunnar's": null, + "gunned": null, + "gunnel's": null, + "Gunner": [["M"]], + "Gunner's": null, + "gunner": [["S", "M"]], + "gunners": null, + "gunner's": null, + "gunnery": [["M", "S"]], + "gunnery's": null, + "gunneries": null, + "gunning": [["M"]], + "gunning's": null, + "gunnysack": [["S", "M"]], + "gunnysacks": null, + "gunnysack's": null, + "gunny": [["S", "M"]], + "gunnies": null, + "gunny's": null, + "gunpoint": [["M", "S"]], + "gunpoint's": null, + "gunpoints": null, + "gunpowder": [["S", "M"]], + "gunpowders": null, + "gunpowder's": null, + "gunrunner": [["M", "S"]], + "gunrunner's": null, + "gunrunners": null, + "gunrunning": [["M", "S"]], + "gunrunning's": null, + "gunrunnings": null, + "gunship": [["S"]], + "gunships": null, + "gunshot": [["S", "M"]], + "gunshots": null, + "gunshot's": null, + "gunslinger": [["M"]], + "gunslinger's": null, + "gunsling": [["G", "Z", "R"]], + "gunslinging": null, + "gunslingers": null, + "gunsmith": [["M"]], + "gunsmith's": null, + "gunsmiths": null, + "Guntar": [["M"]], + "Guntar's": null, + "Gunter": [["M"]], + "Gunter's": null, + "Gunther": [["M"]], + "Gunther's": null, + "gunwale": [["M", "S"]], + "gunwale's": null, + "gunwales": null, + "Guofeng": [["M"]], + "Guofeng's": null, + "guppy": [["S", "M"]], + "guppies": null, + "guppy's": null, + "Gupta": [["M"]], + "Gupta's": null, + "gurgle": [["S", "D", "G"]], + "gurgles": null, + "gurgled": null, + "gurgling": null, + "Gurkha": [["M"]], + "Gurkha's": null, + "gurney": [["S"]], + "gurneys": null, + "guru": [["M", "S"]], + "guru's": null, + "gurus": null, + "Gusella": [["M"]], + "Gusella's": null, + "gusher": [["M"]], + "gusher's": null, + "gush": [["S", "R", "D", "G", "Z"]], + "gushes": null, + "gushed": null, + "gushing": null, + "gushers": null, + "gushy": [["T", "R"]], + "gushiest": null, + "gushier": null, + "Gus": [["M"]], + "Gus's": null, + "Guss": null, + "gusset": [["M", "D", "S", "G"]], + "gusset's": null, + "gusseted": null, + "gussets": null, + "gusseting": null, + "Gussie": [["M"]], + "Gussie's": null, + "Gussi": [["M"]], + "Gussi's": null, + "gussy": [["G", "S", "D"]], + "gussying": null, + "gussies": null, + "gussied": null, + "Gussy": [["M"]], + "Gussy's": null, + "Gustaf": [["M"]], + "Gustaf's": null, + "Gustafson": [["M"]], + "Gustafson's": null, + "Gusta": [["M"]], + "Gusta's": null, + "gustatory": null, + "Gustave": [["M"]], + "Gustave's": null, + "Gustav": [["M"]], + "Gustav's": null, + "Gustavo": [["M"]], + "Gustavo's": null, + "Gustavus": [["M"]], + "Gustavus's": null, + "gusted": [["E"]], + "Gustie": [["M"]], + "Gustie's": null, + "gustily": null, + "Gusti": [["M"]], + "Gusti's": null, + "gustiness": [["M"]], + "gustiness's": null, + "gusting": [["E"]], + "gust": [["M", "D", "G", "S"]], + "gust's": null, + "gusts": [["E"]], + "gustoes": null, + "gusto": [["M"]], + "gusto's": null, + "disgusts": null, + "Gusty": [["M"]], + "Gusty's": null, + "gusty": [["R", "P", "T"]], + "gustier": null, + "gustiest": null, + "Gutenberg": [["M"]], + "Gutenberg's": null, + "Guthrey": [["M"]], + "Guthrey's": null, + "Guthrie": [["M"]], + "Guthrie's": null, + "Guthry": [["M"]], + "Guthry's": null, + "Gutierrez": [["M"]], + "Gutierrez's": null, + "gutlessness": [["S"]], + "gutlessnesses": null, + "gutless": [["P"]], + "gutser": [["M"]], + "gutser's": null, + "gutsiness": [["M"]], + "gutsiness's": null, + "gut": [["S", "M"]], + "guts": [["R"]], + "gut's": null, + "gutsy": [["P", "T", "R"]], + "gutsiest": null, + "gutsier": null, + "gutted": null, + "gutter": [["G", "S", "D", "M"]], + "guttering": [["M"]], + "gutters": null, + "guttered": null, + "gutter's": null, + "guttering's": null, + "guttersnipe": [["M"]], + "guttersnipe's": null, + "gutting": null, + "gutturalness": [["M"]], + "gutturalness's": null, + "guttural": [["S", "P", "Y"]], + "gutturals": null, + "gutturally": null, + "gutty": [["R", "S", "M", "T"]], + "guttier": null, + "gutties": null, + "gutty's": null, + "guttiest": null, + "Guyana": [["M"]], + "Guyana's": null, + "Guyanese": null, + "Guy": [["M"]], + "Guy's": null, + "guy": [["M", "D", "R", "Z", "G", "S"]], + "guy's": null, + "guyed": null, + "guyer": null, + "guyers": null, + "guying": null, + "guys": null, + "Guzman": [["M"]], + "Guzman's": null, + "guzzle": [["G", "Z", "R", "S", "D"]], + "guzzling": null, + "guzzlers": null, + "guzzler": [["M"]], + "guzzles": null, + "guzzled": null, + "guzzler's": null, + "g": [["V", "B", "X"]], + "gens": null, + "Gwalior": [["M"]], + "Gwalior's": null, + "Gwendolen": [["M"]], + "Gwendolen's": null, + "Gwendoline": [["M"]], + "Gwendoline's": null, + "Gwendolin": [["M"]], + "Gwendolin's": null, + "Gwendolyn": [["M"]], + "Gwendolyn's": null, + "Gweneth": [["M"]], + "Gweneth's": null, + "Gwenette": [["M"]], + "Gwenette's": null, + "Gwen": [["M"]], + "Gwen's": null, + "Gwenneth": [["M"]], + "Gwenneth's": null, + "Gwennie": [["M"]], + "Gwennie's": null, + "Gwenni": [["M"]], + "Gwenni's": null, + "Gwenny": [["M"]], + "Gwenny's": null, + "Gwenora": [["M"]], + "Gwenora's": null, + "Gwenore": [["M"]], + "Gwenore's": null, + "Gwyneth": [["M"]], + "Gwyneth's": null, + "Gwyn": [["M"]], + "Gwyn's": null, + "Gwynne": [["M"]], + "Gwynne's": null, + "gymkhana": [["S", "M"]], + "gymkhanas": null, + "gymkhana's": null, + "gym": [["M", "S"]], + "gym's": null, + "gyms": null, + "gymnasia's": null, + "gymnasium": [["S", "M"]], + "gymnasiums": null, + "gymnasium's": null, + "gymnastically": null, + "gymnastic": [["S"]], + "gymnastics": [["M"]], + "gymnastics's": null, + "gymnast": [["S", "M"]], + "gymnasts": null, + "gymnast's": null, + "gymnosperm": [["S", "M"]], + "gymnosperms": null, + "gymnosperm's": null, + "gynecologic": null, + "gynecological": [["M", "S"]], + "gynecological's": null, + "gynecologicals": null, + "gynecologist": [["S", "M"]], + "gynecologists": null, + "gynecologist's": null, + "gynecology": [["M", "S"]], + "gynecology's": null, + "gynecologies": null, + "gypped": null, + "gypper": [["S"]], + "gyppers": null, + "gypping": null, + "gyp": [["S"]], + "gyps": null, + "gypsite": null, + "gypster": [["S"]], + "gypsters": null, + "gypsum": [["M", "S"]], + "gypsum's": null, + "gypsums": null, + "gypsy": [["S", "D", "M", "G"]], + "gypsies": null, + "gypsied": null, + "gypsy's": null, + "gypsying": null, + "Gypsy": [["S", "M"]], + "Gypsies": null, + "Gypsy's": null, + "gyrate": [["X", "N", "G", "S", "D"]], + "gyrations": null, + "gyration": [["M"]], + "gyrating": null, + "gyrates": null, + "gyrated": null, + "gyration's": null, + "gyrator": [["M", "S"]], + "gyrator's": null, + "gyrators": null, + "gyrfalcon": [["S", "M"]], + "gyrfalcons": null, + "gyrfalcon's": null, + "gyrocompass": [["M"]], + "gyrocompass's": null, + "gyro": [["M", "S"]], + "gyro's": null, + "gyros": null, + "gyroscope": [["S", "M"]], + "gyroscopes": null, + "gyroscope's": null, + "gyroscopic": null, + "gyve": [["G", "D", "S"]], + "gyving": null, + "gyved": null, + "gyves": null, + "H": null, + "Haag": [["M"]], + "Haag's": null, + "Haas": [["M"]], + "Haas's": null, + "Habakkuk": [["M"]], + "Habakkuk's": null, + "habeas": null, + "haberdasher": [["S", "M"]], + "haberdashers": null, + "haberdasher's": null, + "haberdashery": [["S", "M"]], + "haberdasheries": null, + "haberdashery's": null, + "Haber": [["M"]], + "Haber's": null, + "Haberman": [["M"]], + "Haberman's": null, + "Habib": [["M"]], + "Habib's": null, + "habiliment": [["S", "M"]], + "habiliments": null, + "habiliment's": null, + "habitability": [["M", "S"]], + "habitability's": null, + "habitabilities": null, + "habitableness": [["M"]], + "habitableness's": null, + "habitable": [["P"]], + "habitant": [["I", "S", "M"]], + "inhabitant": null, + "inhabitants": null, + "inhabitant's": null, + "habitants": null, + "habitant's": null, + "habitation": [["M", "I"]], + "habitation's": null, + "inhabitation's": null, + "inhabitation": null, + "habitations": null, + "habitat": [["M", "S"]], + "habitat's": null, + "habitats": null, + "habit": [["I", "B", "D", "G", "S"]], + "inhabit": [["R"]], + "inhabitable": [["U"]], + "inhabited": [["U"]], + "inhabiting": null, + "inhabits": null, + "habited": null, + "habiting": null, + "habits": null, + "habit's": null, + "habitualness": [["S", "M"]], + "habitualnesses": null, + "habitualness's": null, + "habitual": [["S", "Y", "P"]], + "habituals": null, + "habitually": null, + "habituate": [["S", "D", "N", "G", "X"]], + "habituates": null, + "habituated": null, + "habituation": [["M"]], + "habituating": null, + "habituations": null, + "habituation's": null, + "habitu�": [["M", "S"]], + "habitu�'s": null, + "habitu�s": null, + "hacienda": [["M", "S"]], + "hacienda's": null, + "haciendas": null, + "hacker": [["M"]], + "hacker's": null, + "Hackett": [["M"]], + "Hackett's": null, + "hack": [["G", "Z", "S", "D", "R", "B", "J"]], + "hacking": null, + "hackers": null, + "hacks": null, + "hacked": null, + "hackable": null, + "hackings": null, + "hackler": [["M"]], + "hackler's": null, + "hackle": [["R", "S", "D", "M", "G"]], + "hackles": null, + "hackled": null, + "hackle's": null, + "hackling": null, + "hackney": [["S", "M", "D", "G"]], + "hackneys": null, + "hackney's": null, + "hackneyed": null, + "hackneying": null, + "hacksaw": [["S", "D", "M", "G"]], + "hacksaws": null, + "hacksawed": null, + "hacksaw's": null, + "hacksawing": null, + "hackwork": [["S"]], + "hackworks": null, + "Hadamard": [["M"]], + "Hadamard's": null, + "Hadar": [["M"]], + "Hadar's": null, + "Haddad": [["M"]], + "Haddad's": null, + "haddock": [["M", "S"]], + "haddock's": null, + "haddocks": null, + "hades": null, + "Hades": null, + "had": [["G", "D"]], + "hading": null, + "haded": null, + "hadji's": null, + "hadj's": null, + "Hadlee": [["M"]], + "Hadlee's": null, + "Hadleigh": [["M"]], + "Hadleigh's": null, + "Hadley": [["M"]], + "Hadley's": null, + "Had": [["M"]], + "Had's": null, + "hadn't": null, + "Hadria": [["M"]], + "Hadria's": null, + "Hadrian": [["M"]], + "Hadrian's": null, + "hadron": [["M", "S"]], + "hadron's": null, + "hadrons": null, + "hadst": null, + "haemoglobin's": null, + "haemophilia's": null, + "haemorrhage's": null, + "Hafiz": [["M"]], + "Hafiz's": null, + "hafnium": [["M", "S"]], + "hafnium's": null, + "hafniums": null, + "haft": [["G", "S", "M", "D"]], + "hafting": null, + "hafts": null, + "haft's": null, + "hafted": null, + "Hagan": [["M"]], + "Hagan's": null, + "Hagar": [["M"]], + "Hagar's": null, + "Hagen": [["M"]], + "Hagen's": null, + "Hager": [["M"]], + "Hager's": null, + "Haggai": [["M"]], + "Haggai's": null, + "haggardness": [["M", "S"]], + "haggardness's": null, + "haggardnesses": null, + "haggard": [["S", "Y", "P"]], + "haggards": null, + "haggardly": null, + "hagged": null, + "hagging": null, + "haggish": null, + "haggis": [["S", "M"]], + "haggises": null, + "haggis's": null, + "haggler": [["M"]], + "haggler's": null, + "haggle": [["R", "S", "D", "Z", "G"]], + "haggles": null, + "haggled": null, + "hagglers": null, + "haggling": null, + "Hagiographa": [["M"]], + "Hagiographa's": null, + "hagiographer": [["S", "M"]], + "hagiographers": null, + "hagiographer's": null, + "hagiography": [["M", "S"]], + "hagiography's": null, + "hagiographies": null, + "hag": [["S", "M", "N"]], + "hags": null, + "hag's": null, + "hagen": null, + "Hagstrom": [["M"]], + "Hagstrom's": null, + "Hague": [["M"]], + "Hague's": null, + "ha": [["H"]], + "hath": null, + "hahnium": [["S"]], + "hahniums": null, + "Hahn": [["M"]], + "Hahn's": null, + "Haifa": [["M"]], + "Haifa's": null, + "haiku": [["M"]], + "haiku's": null, + "Hailee": [["M"]], + "Hailee's": null, + "hailer": [["M"]], + "hailer's": null, + "Hailey": [["M"]], + "Hailey's": null, + "hail": [["S", "G", "M", "D", "R"]], + "hails": null, + "hailing": null, + "hail's": null, + "hailed": null, + "hailstone": [["S", "M"]], + "hailstones": null, + "hailstone's": null, + "hailstorm": [["S", "M"]], + "hailstorms": null, + "hailstorm's": null, + "Haily": [["M"]], + "Haily's": null, + "Haiphong": [["M"]], + "Haiphong's": null, + "hairball": [["S", "M"]], + "hairballs": null, + "hairball's": null, + "hairbreadth": [["M"]], + "hairbreadth's": null, + "hairbreadths": null, + "hairbrush": [["S", "M"]], + "hairbrushes": null, + "hairbrush's": null, + "haircare": null, + "haircloth": [["M"]], + "haircloth's": null, + "haircloths": null, + "haircut": [["M", "S"]], + "haircut's": null, + "haircuts": null, + "haircutting": null, + "hairdo": [["S", "M"]], + "hairdos": null, + "hairdo's": null, + "hairdresser": [["S", "M"]], + "hairdressers": null, + "hairdresser's": null, + "hairdressing": [["S", "M"]], + "hairdressings": null, + "hairdressing's": null, + "hairdryer": [["S"]], + "hairdryers": null, + "hairiness": [["M", "S"]], + "hairiness's": null, + "hairinesses": null, + "hairlessness": [["M"]], + "hairlessness's": null, + "hairless": [["P"]], + "hairlike": null, + "hairline": [["S", "M"]], + "hairlines": null, + "hairline's": null, + "hairnet": [["M", "S"]], + "hairnet's": null, + "hairnets": null, + "hairpiece": [["M", "S"]], + "hairpiece's": null, + "hairpieces": null, + "hairpin": [["M", "S"]], + "hairpin's": null, + "hairpins": null, + "hairsbreadth": null, + "hairsbreadths": null, + "hair": [["S", "D", "M"]], + "hairs": null, + "haired": null, + "hair's": null, + "hairsplitter": [["S", "M"]], + "hairsplitters": null, + "hairsplitter's": null, + "hairsplitting": [["M", "S"]], + "hairsplitting's": null, + "hairsplittings": null, + "hairspray": null, + "hairspring": [["S", "M"]], + "hairsprings": null, + "hairspring's": null, + "hairstyle": [["S", "M", "G"]], + "hairstyles": null, + "hairstyle's": null, + "hairstyling": null, + "hairstylist": [["S"]], + "hairstylists": null, + "hairy": [["P", "T", "R"]], + "hairiest": null, + "hairier": null, + "Haitian": [["S"]], + "Haitians": null, + "Haiti": [["M"]], + "Haiti's": null, + "hajjes": null, + "hajji": [["M", "S"]], + "hajji's": null, + "hajjis": null, + "hajj": [["M"]], + "hajj's": null, + "Hakeem": [["M"]], + "Hakeem's": null, + "hake": [["M", "S"]], + "hake's": null, + "hakes": null, + "Hakim": [["M"]], + "Hakim's": null, + "Hakka": [["M"]], + "Hakka's": null, + "Hakluyt": [["M"]], + "Hakluyt's": null, + "halalled": null, + "halalling": null, + "halal": [["S"]], + "halals": null, + "halberd": [["S", "M"]], + "halberds": null, + "halberd's": null, + "halcyon": [["S"]], + "halcyons": null, + "Haldane": [["M"]], + "Haldane's": null, + "Haleakala": [["M"]], + "Haleakala's": null, + "Haleigh": [["M"]], + "Haleigh's": null, + "hale": [["I", "S", "R", "D", "G"]], + "inhale": [["Z"]], + "inhales": null, + "inhaler": null, + "inhaled": null, + "inhaling": null, + "hales": null, + "haler": [["I", "M"]], + "haled": null, + "haling": null, + "Hale": [["M"]], + "Hale's": null, + "inhaler's": null, + "haler's": null, + "halest": null, + "Halette": [["M"]], + "Halette's": null, + "Haley": [["M"]], + "Haley's": null, + "halfback": [["S", "M"]], + "halfbacks": null, + "halfback's": null, + "halfbreed": null, + "halfheartedness": [["M", "S"]], + "halfheartedness's": null, + "halfheartednesses": null, + "halfhearted": [["P", "Y"]], + "halfheartedly": null, + "halfpence": [["S"]], + "halfpences": null, + "halfpenny": [["M", "S"]], + "halfpenny's": null, + "halfpennies": null, + "halfpennyworth": null, + "half": [["P", "M"]], + "halfness": null, + "half's": null, + "halftime": [["S"]], + "halftimes": null, + "halftone": [["M", "S"]], + "halftone's": null, + "halftones": null, + "halfway": null, + "halfword": [["M", "S"]], + "halfword's": null, + "halfwords": null, + "halibut": [["S", "M"]], + "halibuts": null, + "halibut's": null, + "halide": [["S", "M"]], + "halides": null, + "halide's": null, + "Halie": [["M"]], + "Halie's": null, + "Halifax": [["M"]], + "Halifax's": null, + "Hali": [["M"]], + "Hali's": null, + "Halimeda": [["M"]], + "Halimeda's": null, + "halite": [["M", "S"]], + "halite's": null, + "halites": null, + "halitoses": null, + "halitosis": [["M"]], + "halitosis's": null, + "hallelujah": null, + "hallelujahs": null, + "Halley": [["M"]], + "Halley's": null, + "halliard's": null, + "Hallie": [["M"]], + "Hallie's": null, + "Halli": [["M"]], + "Halli's": null, + "Hallinan": [["M"]], + "Hallinan's": null, + "Hall": [["M"]], + "Hall's": null, + "Hallmark": [["M"]], + "Hallmark's": null, + "hallmark": [["S", "G", "M", "D"]], + "hallmarks": null, + "hallmarking": null, + "hallmark's": null, + "hallmarked": null, + "hallo": [["G", "D", "S"]], + "halloing": null, + "halloed": null, + "hallos": null, + "halloo's": null, + "Halloween": [["M", "S"]], + "Halloween's": null, + "Halloweens": null, + "hallowing": null, + "hallows": null, + "hallow": [["U", "D"]], + "unhallow": null, + "unhallowed": null, + "hallowed": null, + "hall": [["S", "M", "R"]], + "halls": null, + "hall's": null, + "haller": null, + "Hallsy": [["M"]], + "Hallsy's": null, + "hallucinate": [["V", "N", "G", "S", "D", "X"]], + "hallucinative": null, + "hallucination": [["M"]], + "hallucinating": null, + "hallucinates": null, + "hallucinated": null, + "hallucinations": null, + "hallucination's": null, + "hallucinatory": null, + "hallucinogenic": [["S"]], + "hallucinogenics": null, + "hallucinogen": [["S", "M"]], + "hallucinogens": null, + "hallucinogen's": null, + "hallway": [["S", "M"]], + "hallways": null, + "hallway's": null, + "Hally": [["M"]], + "Hally's": null, + "halocarbon": null, + "halogenated": null, + "halogen": [["S", "M"]], + "halogens": null, + "halogen's": null, + "halon": null, + "halo": [["S", "D", "M", "G"]], + "halos": null, + "haloed": null, + "halo's": null, + "haloing": null, + "Halpern": [["M"]], + "Halpern's": null, + "Halsey": [["M"]], + "Halsey's": null, + "Hal": [["S", "M", "Y"]], + "Hals": null, + "Hal's": null, + "Halsy": [["M"]], + "Halsy's": null, + "halter": [["G", "D", "M"]], + "haltering": null, + "haltered": null, + "halter's": null, + "halt": [["G", "Z", "J", "S", "M", "D", "R"]], + "halting": [["Y"]], + "halters": null, + "haltings": null, + "halts": null, + "halt's": null, + "halted": null, + "haltingly": null, + "halve": [["G", "Z", "D", "S"]], + "halving": null, + "halvers": null, + "halved": null, + "halves": [["M"]], + "halves's": null, + "halyard": [["M", "S"]], + "halyard's": null, + "halyards": null, + "Ha": [["M"]], + "Ha's": null, + "Hamal": [["M"]], + "Hamal's": null, + "Haman": [["M"]], + "Haman's": null, + "hamburger": [["M"]], + "hamburger's": null, + "Hamburg": [["M", "S"]], + "Hamburg's": null, + "Hamburgs": null, + "hamburg": [["S", "Z", "R", "M"]], + "hamburgs": null, + "hamburgers": null, + "hamburg's": null, + "Hamel": [["M"]], + "Hamel's": null, + "Hamey": [["M"]], + "Hamey's": null, + "Hamhung": [["M"]], + "Hamhung's": null, + "Hamid": [["M"]], + "Hamid's": null, + "Hamilcar": [["M"]], + "Hamilcar's": null, + "Hamil": [["M"]], + "Hamil's": null, + "Hamiltonian": [["M", "S"]], + "Hamiltonian's": null, + "Hamiltonians": null, + "Hamilton": [["M"]], + "Hamilton's": null, + "Hamish": [["M"]], + "Hamish's": null, + "Hamitic": [["M"]], + "Hamitic's": null, + "Hamlen": [["M"]], + "Hamlen's": null, + "Hamlet": [["M"]], + "Hamlet's": null, + "hamlet": [["M", "S"]], + "hamlet's": null, + "hamlets": null, + "Hamlin": [["M"]], + "Hamlin's": null, + "Ham": [["M"]], + "Ham's": null, + "Hammad": [["M"]], + "Hammad's": null, + "Hammarskjold": [["M"]], + "Hammarskjold's": null, + "hammed": null, + "hammerer": [["M"]], + "hammerer's": null, + "hammerhead": [["S", "M"]], + "hammerheads": null, + "hammerhead's": null, + "hammering": [["M"]], + "hammering's": null, + "hammerless": null, + "hammerlock": [["M", "S"]], + "hammerlock's": null, + "hammerlocks": null, + "Hammerstein": [["M"]], + "Hammerstein's": null, + "hammertoe": [["S", "M"]], + "hammertoes": null, + "hammertoe's": null, + "hammer": [["Z", "G", "S", "R", "D", "M"]], + "hammerers": null, + "hammers": null, + "hammered": null, + "hammer's": null, + "Hammett": [["M"]], + "Hammett's": null, + "hamming": null, + "hammock": [["M", "S"]], + "hammock's": null, + "hammocks": null, + "Hammond": [["M"]], + "Hammond's": null, + "Hammurabi": [["M"]], + "Hammurabi's": null, + "hammy": [["R", "T"]], + "hammier": null, + "hammiest": null, + "Hamnet": [["M"]], + "Hamnet's": null, + "hampered": [["U"]], + "unhampered": null, + "hamper": [["G", "S", "D"]], + "hampering": null, + "hampers": null, + "Hampshire": [["M"]], + "Hampshire's": null, + "Hampton": [["M"]], + "Hampton's": null, + "ham": [["S", "M"]], + "hams": null, + "ham's": null, + "hamster": [["M", "S"]], + "hamster's": null, + "hamsters": null, + "hamstring": [["M", "G", "S"]], + "hamstring's": null, + "hamstringing": null, + "hamstrings": null, + "hamstrung": null, + "Hamsun": [["M"]], + "Hamsun's": null, + "Hana": [["M"]], + "Hana's": null, + "Hanan": [["M"]], + "Hanan's": null, + "Hancock": [["M"]], + "Hancock's": null, + "handbagged": null, + "handbagging": null, + "handbag": [["M", "S"]], + "handbag's": null, + "handbags": null, + "handball": [["S", "M"]], + "handballs": null, + "handball's": null, + "handbarrow": [["M", "S"]], + "handbarrow's": null, + "handbarrows": null, + "handbasin": null, + "handbill": [["M", "S"]], + "handbill's": null, + "handbills": null, + "handbook": [["S", "M"]], + "handbooks": null, + "handbook's": null, + "handbrake": [["M"]], + "handbrake's": null, + "handcar": [["S", "M"]], + "handcars": null, + "handcar's": null, + "handcart": [["M", "S"]], + "handcart's": null, + "handcarts": null, + "handclasp": [["M", "S"]], + "handclasp's": null, + "handclasps": null, + "handcraft": [["G", "M", "D", "S"]], + "handcrafting": null, + "handcraft's": null, + "handcrafted": null, + "handcrafts": null, + "handcuff": [["G", "S", "D"]], + "handcuffing": null, + "handcuffs": [["M"]], + "handcuffed": null, + "handcuffs's": null, + "handedness": [["M"]], + "handedness's": null, + "handed": [["P", "Y"]], + "handedly": null, + "Handel": [["M"]], + "Handel's": null, + "hander": [["S"]], + "handers": null, + "handful": [["S", "M"]], + "handfuls": null, + "handful's": null, + "handgun": [["S", "M"]], + "handguns": null, + "handgun's": null, + "handhold": [["M"]], + "handhold's": null, + "handicapped": null, + "handicapper": [["S", "M"]], + "handicappers": null, + "handicapper's": null, + "handicapping": null, + "handicap": [["S", "M"]], + "handicaps": null, + "handicap's": null, + "handicraftsman": [["M"]], + "handicraftsman's": null, + "handicraftsmen": null, + "handicraft": [["S", "M", "R"]], + "handicrafts": null, + "handicraft's": null, + "handicrafter": null, + "handily": [["U"]], + "unhandily": null, + "handiness": [["S", "M"]], + "handinesses": null, + "handiness's": null, + "handiwork": [["M", "S"]], + "handiwork's": null, + "handiworks": null, + "handkerchief": [["M", "S"]], + "handkerchief's": null, + "handkerchiefs": null, + "handleable": null, + "handlebar": [["S", "M"]], + "handlebars": null, + "handlebar's": null, + "handle": [["M", "Z", "G", "R", "S", "D"]], + "handle's": null, + "handlers": null, + "handling": [["M"]], + "handler": [["M"]], + "handles": null, + "handled": null, + "handler's": null, + "handless": null, + "handling's": null, + "handmade": null, + "handmaiden": [["M"]], + "handmaiden's": null, + "handmaid": [["N", "M", "S", "X"]], + "handmaid's": null, + "handmaids": null, + "handmaidens": null, + "handout": [["S", "M"]], + "handouts": null, + "handout's": null, + "handover": null, + "handpick": [["G", "D", "S"]], + "handpicking": null, + "handpicked": null, + "handpicks": null, + "handrail": [["S", "M"]], + "handrails": null, + "handrail's": null, + "hand's": null, + "handsaw": [["S", "M"]], + "handsaws": null, + "handsaw's": null, + "handset": [["S", "M"]], + "handsets": null, + "handset's": null, + "handshake": [["G", "M", "S", "R"]], + "handshaking": [["M"]], + "handshake's": null, + "handshakes": null, + "handshaker": [["M"]], + "handshaker's": null, + "handshaking's": null, + "handsomely": [["U"]], + "unhandsomely": null, + "handsomeness": [["M", "S"]], + "handsomeness's": null, + "handsomenesses": null, + "handsome": [["R", "P", "T", "Y"]], + "handsomer": null, + "handsomest": null, + "handspike": [["S", "M"]], + "handspikes": null, + "handspike's": null, + "handspring": [["S", "M"]], + "handsprings": null, + "handspring's": null, + "handstand": [["M", "S"]], + "handstand's": null, + "handstands": null, + "hand": [["U", "D", "S", "G"]], + "unhand": null, + "unhanded": null, + "unhands": null, + "unhanding": null, + "hands": null, + "handing": null, + "handwork": [["S", "M"]], + "handworks": null, + "handwork's": null, + "handwoven": null, + "handwrite": [["G", "S", "J"]], + "handwriting": [["M"]], + "handwrites": null, + "handwritings": null, + "handwriting's": null, + "handwritten": null, + "Handy": [["M"]], + "Handy's": null, + "handyman": [["M"]], + "handyman's": null, + "handymen": null, + "handy": [["U", "R", "T"]], + "unhandy": null, + "unhandier": null, + "handier": null, + "handiest": null, + "Haney": [["M"]], + "Haney's": null, + "hangar": [["S", "G", "D", "M"]], + "hangars": null, + "hangaring": null, + "hangared": null, + "hangar's": null, + "hangdog": [["S"]], + "hangdogs": null, + "hanged": [["A"]], + "rehanged": null, + "hanger": [["M"]], + "hanger's": null, + "hang": [["G", "D", "R", "Z", "B", "S", "J"]], + "hanging": [["M"]], + "hangers": null, + "hangable": null, + "hangs": [["A"]], + "hangings": null, + "hanging's": null, + "hangman": [["M"]], + "hangman's": null, + "hangmen": null, + "hangnail": [["M", "S"]], + "hangnail's": null, + "hangnails": null, + "hangout": [["M", "S"]], + "hangout's": null, + "hangouts": null, + "hangover": [["S", "M"]], + "hangovers": null, + "hangover's": null, + "rehangs": null, + "Hangul": [["M"]], + "Hangul's": null, + "hangup": [["S"]], + "hangups": null, + "Hangzhou": null, + "Hankel": [["M"]], + "Hankel's": null, + "hankerer": [["M"]], + "hankerer's": null, + "hanker": [["G", "R", "D", "J"]], + "hankering": [["M"]], + "hankered": null, + "hankerings": null, + "hankering's": null, + "hank": [["G", "Z", "D", "R", "M", "S"]], + "hanking": null, + "hankers": null, + "hanked": null, + "hank's": null, + "hanks": null, + "hankie": [["S", "M"]], + "hankies": null, + "hankie's": null, + "Hank": [["M"]], + "Hank's": null, + "hanky's": null, + "Hannah": [["M"]], + "Hannah's": null, + "Hanna": [["M"]], + "Hanna's": null, + "Hannibal": [["M"]], + "Hannibal's": null, + "Hannie": [["M"]], + "Hannie's": null, + "Hanni": [["M", "S"]], + "Hanni's": null, + "Hannis": null, + "Hanny": [["M"]], + "Hanny's": null, + "Hanoi": [["M"]], + "Hanoi's": null, + "Hanoverian": null, + "Hanover": [["M"]], + "Hanover's": null, + "Hansel": [["M"]], + "Hansel's": null, + "Hansen": [["M"]], + "Hansen's": null, + "Hansiain": [["M"]], + "Hansiain's": null, + "Han": [["S", "M"]], + "Hans": [["N"]], + "Han's": null, + "hansom": [["M", "S"]], + "hansom's": null, + "hansoms": null, + "Hanson": [["M"]], + "Hanson's": null, + "Hanuka": [["S"]], + "Hanukas": null, + "Hanukkah": [["M"]], + "Hanukkah's": null, + "Hanukkahs": null, + "Hapgood": [["M"]], + "Hapgood's": null, + "haphazardness": [["S", "M"]], + "haphazardnesses": null, + "haphazardness's": null, + "haphazard": [["S", "P", "Y"]], + "haphazards": null, + "haphazardly": null, + "haplessness": [["M", "S"]], + "haplessness's": null, + "haplessnesses": null, + "hapless": [["Y", "P"]], + "haplessly": null, + "haploid": [["S"]], + "haploids": null, + "happed": null, + "happening": [["M"]], + "happening's": null, + "happen": [["J", "D", "G", "S"]], + "happenings": null, + "happened": null, + "happens": null, + "happenstance": [["S", "M"]], + "happenstances": null, + "happenstance's": null, + "happily": [["U"]], + "unhappily": null, + "happiness": [["U", "M", "S"]], + "unhappiness": null, + "unhappiness's": null, + "unhappinesses": null, + "happiness's": null, + "happinesses": null, + "happing": null, + "Happy": [["M"]], + "Happy's": null, + "happy": [["U", "T", "P", "R"]], + "unhappy": null, + "unhappier": null, + "happiest": null, + "happier": null, + "Hapsburg": [["M"]], + "Hapsburg's": null, + "hap": [["S", "M", "Y"]], + "haps": null, + "hap's": null, + "haply": null, + "Harald": [["M"]], + "Harald's": null, + "harangue": [["G", "D", "R", "S"]], + "haranguing": null, + "harangued": null, + "haranguer": [["M"]], + "harangues": null, + "haranguer's": null, + "Harare": null, + "harasser": [["M"]], + "harasser's": null, + "harass": [["L", "S", "R", "D", "Z", "G"]], + "harassment": [["S", "M"]], + "harasses": null, + "harassed": null, + "harassers": null, + "harassing": null, + "harassments": null, + "harassment's": null, + "Harbert": [["M"]], + "Harbert's": null, + "harbinger": [["D", "M", "S", "G"]], + "harbingered": null, + "harbinger's": null, + "harbingers": null, + "harbingering": null, + "Harbin": [["M"]], + "Harbin's": null, + "harborer": [["M"]], + "harborer's": null, + "harbor": [["Z", "G", "R", "D", "M", "S"]], + "harborers": null, + "harboring": null, + "harbored": null, + "harbor's": null, + "harbors": null, + "Harcourt": [["M"]], + "Harcourt's": null, + "hardback": [["S", "M"]], + "hardbacks": null, + "hardback's": null, + "hardball": [["S", "M"]], + "hardballs": null, + "hardball's": null, + "hardboard": [["S", "M"]], + "hardboards": null, + "hardboard's": null, + "hardboiled": null, + "hardbound": null, + "hardcore": [["M", "S"]], + "hardcore's": null, + "hardcores": null, + "hardcover": [["S", "M"]], + "hardcovers": null, + "hardcover's": null, + "hardened": [["U"]], + "unhardened": null, + "hardener": [["M"]], + "hardener's": null, + "hardening": [["M"]], + "hardening's": null, + "harden": [["Z", "G", "R", "D"]], + "hardeners": null, + "hardhat": [["S"]], + "hardhats": null, + "hardheadedness": [["S", "M"]], + "hardheadednesses": null, + "hardheadedness's": null, + "hardheaded": [["Y", "P"]], + "hardheadedly": null, + "hardheartedness": [["S", "M"]], + "hardheartednesses": null, + "hardheartedness's": null, + "hardhearted": [["Y", "P"]], + "hardheartedly": null, + "hardihood": [["M", "S"]], + "hardihood's": null, + "hardihoods": null, + "hardily": null, + "hardiness": [["S", "M"]], + "hardinesses": null, + "hardiness's": null, + "Harding": [["M"]], + "Harding's": null, + "Hardin": [["M"]], + "Hardin's": null, + "hardliner": [["S"]], + "hardliners": null, + "hardness": [["M", "S"]], + "hardness's": null, + "hardnesses": null, + "hardscrabble": null, + "hardshell": null, + "hardship": [["M", "S"]], + "hardship's": null, + "hardships": null, + "hardstand": [["S"]], + "hardstands": null, + "hardtack": [["M", "S"]], + "hardtack's": null, + "hardtacks": null, + "hardtop": [["M", "S"]], + "hardtop's": null, + "hardtops": null, + "hardware": [["S", "M"]], + "hardwares": null, + "hardware's": null, + "hardwire": [["D", "S", "G"]], + "hardwired": null, + "hardwires": null, + "hardwiring": null, + "hardwood": [["M", "S"]], + "hardwood's": null, + "hardwoods": null, + "hardworking": null, + "Hardy": [["M"]], + "Hardy's": null, + "hard": [["Y", "N", "R", "P", "J", "G", "X", "T", "S"]], + "hardly": null, + "harder": null, + "hardings": null, + "harding": null, + "hardens": null, + "hardest": null, + "hards": null, + "hardy": [["P", "T", "R", "S"]], + "hardiest": null, + "hardier": null, + "hardies": null, + "harebell": [["M", "S"]], + "harebell's": null, + "harebells": null, + "harebrained": null, + "harelip": [["M", "S"]], + "harelip's": null, + "harelips": null, + "harelipped": null, + "hare": [["M", "G", "D", "S"]], + "hare's": null, + "haring": null, + "hared": null, + "hares": null, + "harem": [["S", "M"]], + "harems": null, + "harem's": null, + "Hargreaves": [["M"]], + "Hargreaves's": null, + "hark": [["G", "D", "S"]], + "harking": null, + "harked": null, + "harks": null, + "Harland": [["M"]], + "Harland's": null, + "Harlan": [["M"]], + "Harlan's": null, + "Harlem": [["M"]], + "Harlem's": null, + "Harlene": [["M"]], + "Harlene's": null, + "Harlen": [["M"]], + "Harlen's": null, + "Harlequin": null, + "harlequin": [["M", "S"]], + "harlequin's": null, + "harlequins": null, + "Harley": [["M"]], + "Harley's": null, + "Harlie": [["M"]], + "Harlie's": null, + "Harli": [["M"]], + "Harli's": null, + "Harlin": [["M"]], + "Harlin's": null, + "harlotry": [["M", "S"]], + "harlotry's": null, + "harlotries": null, + "harlot": [["S", "M"]], + "harlots": null, + "harlot's": null, + "Harlow": [["M"]], + "Harlow's": null, + "Harman": [["M"]], + "Harman's": null, + "harmed": [["U"]], + "unharmed": null, + "harmer": [["M"]], + "harmer's": null, + "harmfulness": [["M", "S"]], + "harmfulness's": null, + "harmfulnesses": null, + "harmful": [["P", "Y"]], + "harmfully": null, + "harmlessness": [["S", "M"]], + "harmlessnesses": null, + "harmlessness's": null, + "harmless": [["Y", "P"]], + "harmlessly": null, + "harm": [["M", "D", "R", "G", "S"]], + "harm's": null, + "harming": null, + "harms": null, + "Harmonia": [["M"]], + "Harmonia's": null, + "harmonically": null, + "harmonica": [["M", "S"]], + "harmonica's": null, + "harmonicas": null, + "harmonic": [["S"]], + "harmonics": [["M"]], + "harmonics's": null, + "Harmonie": [["M"]], + "Harmonie's": null, + "harmonious": [["I", "P", "Y"]], + "inharmonious": null, + "inharmoniousness": null, + "inharmoniously": null, + "harmoniousness": [["M", "S"]], + "harmoniously": null, + "harmoniousness's": [["I"]], + "harmoniousnesses": null, + "inharmoniousness's": null, + "harmonium": [["M", "S"]], + "harmonium's": null, + "harmoniums": null, + "harmonization": [["A"]], + "reharmonization": null, + "harmonizations": null, + "harmonization's": null, + "harmonized": [["U"]], + "unharmonized": null, + "harmonizer": [["M"]], + "harmonizer's": null, + "harmonizes": [["U", "A"]], + "unharmonizes": null, + "reharmonizes": null, + "harmonize": [["Z", "G", "S", "R", "D"]], + "harmonizers": null, + "harmonizing": null, + "Harmon": [["M"]], + "Harmon's": null, + "harmony": [["E", "M", "S"]], + "disharmony": null, + "disharmony's": null, + "disharmonies": null, + "harmony's": null, + "harmonies": null, + "Harmony": [["M"]], + "Harmony's": null, + "harness": [["D", "R", "S", "M", "G"]], + "harnessed": [["U"]], + "harnesser": [["M"]], + "harnesses": [["U"]], + "harness's": null, + "harnessing": null, + "unharnessed": null, + "harnesser's": null, + "unharnesses": null, + "Harold": [["M"]], + "Harold's": null, + "Haroun": [["M"]], + "Haroun's": null, + "harper": [["M"]], + "harper's": null, + "Harper": [["M"]], + "Harper's": null, + "harping": [["M"]], + "harping's": null, + "harpist": [["S", "M"]], + "harpists": null, + "harpist's": null, + "harp": [["M", "D", "R", "J", "G", "Z", "S"]], + "harp's": null, + "harped": null, + "harpings": null, + "harpers": null, + "harps": null, + "Harp": [["M", "R"]], + "Harp's": null, + "harpooner": [["M"]], + "harpooner's": null, + "harpoon": [["S", "Z", "G", "D", "R", "M"]], + "harpoons": null, + "harpooners": null, + "harpooning": null, + "harpooned": null, + "harpoon's": null, + "harpsichordist": [["M", "S"]], + "harpsichordist's": null, + "harpsichordists": null, + "harpsichord": [["S", "M"]], + "harpsichords": null, + "harpsichord's": null, + "harpy": [["S", "M"]], + "harpies": null, + "harpy's": null, + "Harpy": [["S", "M"]], + "Harpies": null, + "Harpy's": null, + "Harrell": [["M"]], + "Harrell's": null, + "harridan": [["S", "M"]], + "harridans": null, + "harridan's": null, + "Harrie": [["M"]], + "Harrie's": null, + "harrier": [["M"]], + "harrier's": null, + "Harriet": [["M"]], + "Harriet's": null, + "Harrietta": [["M"]], + "Harrietta's": null, + "Harriette": [["M"]], + "Harriette's": null, + "Harriett": [["M"]], + "Harriett's": null, + "Harrington": [["M"]], + "Harrington's": null, + "Harriot": [["M"]], + "Harriot's": null, + "Harriott": [["M"]], + "Harriott's": null, + "Harrisburg": [["M"]], + "Harrisburg's": null, + "Harri": [["S", "M"]], + "Harris": null, + "Harri's": null, + "Harrisonburg": [["M"]], + "Harrisonburg's": null, + "Harrison": [["M"]], + "Harrison's": null, + "harrower": [["M"]], + "harrower's": null, + "harrow": [["R", "D", "M", "G", "S"]], + "harrowed": null, + "harrow's": null, + "harrowing": null, + "harrows": null, + "harrumph": [["S", "D", "G"]], + "harrumphes": null, + "harrumphed": null, + "harrumphing": null, + "Harry": [["M"]], + "Harry's": null, + "harry": [["R", "S", "D", "G", "Z"]], + "harries": null, + "harried": null, + "harrying": null, + "harriers": null, + "harshen": [["G", "D"]], + "harshening": null, + "harshened": null, + "harshness": [["S", "M"]], + "harshnesses": null, + "harshness's": null, + "harsh": [["T", "R", "N", "Y", "P"]], + "harshest": null, + "harsher": null, + "harshly": null, + "Harte": [["M"]], + "Harte's": null, + "Hartford": [["M"]], + "Hartford's": null, + "Hartley": [["M"]], + "Hartley's": null, + "Hartline": [["M"]], + "Hartline's": null, + "Hart": [["M"]], + "Hart's": null, + "Hartman": [["M"]], + "Hartman's": null, + "hart": [["M", "S"]], + "hart's": null, + "harts": null, + "Hartwell": [["M"]], + "Hartwell's": null, + "Harvard": [["M"]], + "Harvard's": null, + "harvested": [["U"]], + "unharvested": null, + "harvester": [["M"]], + "harvester's": null, + "harvestman": [["M"]], + "harvestman's": null, + "harvest": [["M", "D", "R", "Z", "G", "S"]], + "harvest's": null, + "harvesters": null, + "harvesting": null, + "harvests": null, + "Harvey": [["M", "S"]], + "Harvey's": null, + "Harveys": null, + "Harv": [["M"]], + "Harv's": null, + "Harwell": [["M"]], + "Harwell's": null, + "Harwilll": [["M"]], + "Harwilll's": null, + "has": null, + "Hasbro": [["M"]], + "Hasbro's": null, + "hash": [["A", "G", "S", "D"]], + "rehash": null, + "rehashing": null, + "rehashes": null, + "rehashed": null, + "hashing": [["M"]], + "hashes": null, + "hashed": null, + "Hasheem": [["M"]], + "Hasheem's": null, + "hasher": [["M"]], + "hasher's": null, + "Hashim": [["M"]], + "Hashim's": null, + "hashing's": null, + "hashish": [["M", "S"]], + "hashish's": null, + "hashishes": null, + "hash's": null, + "Hasidim": null, + "Haskell": [["M"]], + "Haskell's": null, + "Haskel": [["M"]], + "Haskel's": null, + "Haskins": [["M"]], + "Haskins's": null, + "Haslett": [["M"]], + "Haslett's": null, + "hasn't": null, + "hasp": [["G", "M", "D", "S"]], + "hasping": null, + "hasp's": null, + "hasped": null, + "hasps": null, + "hassle": [["M", "G", "R", "S", "D"]], + "hassle's": null, + "hassling": null, + "hassler": null, + "hassles": null, + "hassled": null, + "hassock": [["M", "S"]], + "hassock's": null, + "hassocks": null, + "haste": [["M", "S"]], + "haste's": null, + "hastes": null, + "hastener": [["M"]], + "hastener's": null, + "hasten": [["G", "R", "D"]], + "hastening": null, + "hastened": null, + "hast": [["G", "X", "J", "D", "N"]], + "hasting": null, + "hastens": null, + "hastings": null, + "hasted": null, + "Hastie": [["M"]], + "Hastie's": null, + "hastily": null, + "hastiness": [["M", "S"]], + "hastiness's": null, + "hastinesses": null, + "Hastings": [["M"]], + "Hastings's": null, + "Hasty": [["M"]], + "Hasty's": null, + "hasty": [["R", "P", "T"]], + "hastier": null, + "hastiest": null, + "hatchback": [["S", "M"]], + "hatchbacks": null, + "hatchback's": null, + "hatcheck": [["S"]], + "hatchecks": null, + "hatched": [["U"]], + "unhatched": null, + "hatcher": [["M"]], + "hatcher's": null, + "hatchery": [["M", "S"]], + "hatchery's": null, + "hatcheries": null, + "hatchet": [["M", "D", "S", "G"]], + "hatchet's": null, + "hatcheted": null, + "hatchets": null, + "hatcheting": null, + "hatching": [["M"]], + "hatching's": null, + "hatch": [["R", "S", "D", "J", "G"]], + "hatches": null, + "hatchings": null, + "Hatchure": [["M"]], + "Hatchure's": null, + "hatchway": [["M", "S"]], + "hatchway's": null, + "hatchways": null, + "hatefulness": [["M", "S"]], + "hatefulness's": null, + "hatefulnesses": null, + "hateful": [["Y", "P"]], + "hatefully": null, + "hater": [["M"]], + "hater's": null, + "hate": [["S"]], + "hates": null, + "Hatfield": [["M"]], + "Hatfield's": null, + "Hathaway": [["M"]], + "Hathaway's": null, + "hatless": null, + "hat": [["M", "D", "R", "S", "Z", "G"]], + "hat's": null, + "hated": null, + "hats": null, + "haters": null, + "hating": null, + "hatred": [["S", "M"]], + "hatreds": null, + "hatred's": null, + "hatstands": null, + "hatted": null, + "Hatteras": [["M"]], + "Hatteras's": null, + "hatter": [["S", "M"]], + "hatters": null, + "hatter's": null, + "Hattie": [["M"]], + "Hattie's": null, + "Hatti": [["M"]], + "Hatti's": null, + "hatting": null, + "Hatty": [["M"]], + "Hatty's": null, + "hauberk": [["S", "M"]], + "hauberks": null, + "hauberk's": null, + "Haugen": [["M"]], + "Haugen's": null, + "haughtily": null, + "haughtiness": [["S", "M"]], + "haughtinesses": null, + "haughtiness's": null, + "haughty": [["T", "P", "R"]], + "haughtiest": null, + "haughtier": null, + "haulage": [["M", "S"]], + "haulage's": null, + "haulages": null, + "hauler": [["M"]], + "hauler's": null, + "haul": [["S", "D", "R", "G", "Z"]], + "hauls": null, + "hauled": null, + "hauling": null, + "haulers": null, + "haunch": [["G", "M", "S", "D"]], + "haunching": null, + "haunch's": null, + "haunches": null, + "haunched": null, + "haunter": [["M"]], + "haunter's": null, + "haunting": [["Y"]], + "hauntingly": null, + "haunt": [["J", "R", "D", "S", "Z", "G"]], + "hauntings": null, + "haunted": null, + "haunts": null, + "haunters": null, + "Hauptmann": [["M"]], + "Hauptmann's": null, + "Hausa": [["M"]], + "Hausa's": null, + "Hausdorff": [["M"]], + "Hausdorff's": null, + "Hauser": [["M"]], + "Hauser's": null, + "hauteur": [["M", "S"]], + "hauteur's": null, + "hauteurs": null, + "Havana": [["S", "M"]], + "Havanas": null, + "Havana's": null, + "Havarti": null, + "Havel": [["M"]], + "Havel's": null, + "haven": [["D", "M", "G", "S"]], + "havened": null, + "haven's": null, + "havening": null, + "havens": null, + "Haven": [["M"]], + "Haven's": null, + "haven't": null, + "haver": [["G"]], + "havering": null, + "haversack": [["S", "M"]], + "haversacks": null, + "haversack's": null, + "have": [["Z", "G", "S", "R"]], + "havers": null, + "having": null, + "haves": null, + "havocked": null, + "havocking": null, + "havoc": [["S", "M"]], + "havocs": null, + "havoc's": null, + "Haw": null, + "Hawaiian": [["S"]], + "Hawaiians": null, + "Hawaii": [["M"]], + "Hawaii's": null, + "hawker": [["M"]], + "hawker's": null, + "hawk": [["G", "Z", "S", "D", "R", "M"]], + "hawking": [["M"]], + "hawkers": null, + "hawks": null, + "hawked": null, + "hawk's": null, + "Hawking": null, + "hawking's": null, + "Hawkins": [["M"]], + "Hawkins's": null, + "hawkishness": [["S"]], + "hawkishnesses": null, + "hawkish": [["P"]], + "Hawley": [["M"]], + "Hawley's": null, + "haw": [["M", "D", "S", "G"]], + "haw's": null, + "hawed": null, + "haws": [["R", "Z"]], + "hawing": null, + "hawser": [["M"]], + "hawser's": null, + "hawsers": null, + "Hawthorne": [["M"]], + "Hawthorne's": null, + "hawthorn": [["M", "S"]], + "hawthorn's": null, + "hawthorns": null, + "haycock": [["S", "M"]], + "haycocks": null, + "haycock's": null, + "Hayden": [["M"]], + "Hayden's": null, + "Haydn": [["M"]], + "Haydn's": null, + "Haydon": [["M"]], + "Haydon's": null, + "Hayes": null, + "hayfield": [["M", "S"]], + "hayfield's": null, + "hayfields": null, + "hay": [["G", "S", "M", "D", "R"]], + "haying": null, + "hays": null, + "hay's": null, + "hayed": null, + "hayer": null, + "Hayley": [["M"]], + "Hayley's": null, + "hayloft": [["M", "S"]], + "hayloft's": null, + "haylofts": null, + "haymow": [["M", "S"]], + "haymow's": null, + "haymows": null, + "Haynes": null, + "hayrick": [["M", "S"]], + "hayrick's": null, + "hayricks": null, + "hayride": [["M", "S"]], + "hayride's": null, + "hayrides": null, + "hayseed": [["M", "S"]], + "hayseed's": null, + "hayseeds": null, + "Hay": [["S", "M"]], + "Hays": null, + "Hay's": null, + "haystack": [["S", "M"]], + "haystacks": null, + "haystack's": null, + "haywain": null, + "Hayward": [["M"]], + "Hayward's": null, + "haywire": [["M", "S"]], + "haywire's": null, + "haywires": null, + "Haywood": [["M"]], + "Haywood's": null, + "Hayyim": [["M"]], + "Hayyim's": null, + "hazard": [["M", "D", "G", "S"]], + "hazard's": null, + "hazarded": null, + "hazarding": null, + "hazards": null, + "hazardousness": [["M"]], + "hazardousness's": null, + "hazardous": [["P", "Y"]], + "hazardously": null, + "haze": [["D", "S", "R", "J", "M", "Z", "G"]], + "hazed": null, + "hazes": null, + "hazer": [["M"]], + "hazings": null, + "haze's": null, + "hazers": null, + "hazing": [["M"]], + "Hazel": [["M"]], + "Hazel's": null, + "hazel": [["M", "S"]], + "hazel's": null, + "hazels": null, + "hazelnut": [["S", "M"]], + "hazelnuts": null, + "hazelnut's": null, + "Haze": [["M"]], + "Haze's": null, + "hazer's": null, + "hazily": null, + "haziness": [["M", "S"]], + "haziness's": null, + "hazinesses": null, + "hazing's": null, + "Hazlett": [["M"]], + "Hazlett's": null, + "Hazlitt": [["M"]], + "Hazlitt's": null, + "hazy": [["P", "T", "R"]], + "haziest": null, + "hazier": null, + "HBO": [["M"]], + "HBO's": null, + "hdqrs": null, + "HDTV": null, + "headache": [["M", "S"]], + "headache's": null, + "headaches": null, + "headband": [["S", "M"]], + "headbands": null, + "headband's": null, + "headboard": [["M", "S"]], + "headboard's": null, + "headboards": null, + "headcount": null, + "headdress": [["M", "S"]], + "headdress's": null, + "headdresses": null, + "header": [["M"]], + "header's": null, + "headfirst": null, + "headgear": [["S", "M"]], + "headgears": null, + "headgear's": null, + "headhunter": [["M"]], + "headhunter's": null, + "headhunting": [["M"]], + "headhunting's": null, + "headhunt": [["Z", "G", "S", "R", "D", "M", "J"]], + "headhunters": null, + "headhunts": null, + "headhunted": null, + "headhunt's": null, + "headhuntings": null, + "headily": null, + "headiness": [["S"]], + "headinesses": null, + "heading": [["M"]], + "heading's": null, + "headlamp": [["S"]], + "headlamps": null, + "headland": [["M", "S"]], + "headland's": null, + "headlands": null, + "headlessness": [["M"]], + "headlessness's": null, + "headless": [["P"]], + "headlight": [["M", "S"]], + "headlight's": null, + "headlights": null, + "headline": [["D", "R", "S", "Z", "M", "G"]], + "headlined": null, + "headliner": [["M"]], + "headlines": null, + "headliners": null, + "headline's": null, + "headlining": null, + "headliner's": null, + "headlock": [["M", "S"]], + "headlock's": null, + "headlocks": null, + "headlong": null, + "Head": [["M"]], + "Head's": null, + "headman": [["M"]], + "headman's": null, + "headmaster": [["M", "S"]], + "headmaster's": null, + "headmasters": null, + "headmastership": [["M"]], + "headmastership's": null, + "headmen": null, + "headmistress": [["M", "S"]], + "headmistress's": null, + "headmistresses": null, + "headphone": [["S", "M"]], + "headphones": null, + "headphone's": null, + "headpiece": [["S", "M"]], + "headpieces": null, + "headpiece's": null, + "headpin": [["M", "S"]], + "headpin's": null, + "headpins": null, + "headquarter": [["G", "D", "S"]], + "headquartering": null, + "headquartered": null, + "headquarters": null, + "headrest": [["M", "S"]], + "headrest's": null, + "headrests": null, + "headroom": [["S", "M"]], + "headrooms": null, + "headroom's": null, + "headscarf": [["M"]], + "headscarf's": null, + "headset": [["S", "M"]], + "headsets": null, + "headset's": null, + "headship": [["S", "M"]], + "headships": null, + "headship's": null, + "headshrinker": [["M", "S"]], + "headshrinker's": null, + "headshrinkers": null, + "head": [["S", "J", "G", "Z", "M", "D", "R"]], + "heads": null, + "headings": null, + "headers": null, + "head's": null, + "headed": null, + "headsman": [["M"]], + "headsman's": null, + "headsmen": null, + "headstall": [["S", "M"]], + "headstalls": null, + "headstall's": null, + "headstand": [["M", "S"]], + "headstand's": null, + "headstands": null, + "headstock": [["M"]], + "headstock's": null, + "headstone": [["M", "S"]], + "headstone's": null, + "headstones": null, + "headstrong": null, + "headwaiter": [["S", "M"]], + "headwaiters": null, + "headwaiter's": null, + "headwall": [["S"]], + "headwalls": null, + "headwater": [["S"]], + "headwaters": null, + "headway": [["M", "S"]], + "headway's": null, + "headways": null, + "headwind": [["S", "M"]], + "headwinds": null, + "headwind's": null, + "headword": [["M", "S"]], + "headword's": null, + "headwords": null, + "heady": [["P", "T", "R"]], + "headiest": null, + "headier": null, + "heal": [["D", "R", "H", "S", "G", "Z"]], + "healed": [["U"]], + "healer": [["M"]], + "health": [["M"]], + "heals": null, + "healing": null, + "healers": null, + "unhealed": null, + "healer's": null, + "Heall": [["M"]], + "Heall's": null, + "healthfully": null, + "healthfulness": [["S", "M"]], + "healthfulnesses": null, + "healthfulness's": null, + "healthful": [["U"]], + "unhealthful": null, + "healthily": [["U"]], + "unhealthily": null, + "healthiness": [["M", "S", "U"]], + "healthiness's": null, + "unhealthiness's": null, + "healthinesses": null, + "unhealthinesses": null, + "unhealthiness": null, + "health's": null, + "healths": null, + "healthy": [["U", "R", "P", "T"]], + "unhealthy": null, + "unhealthier": null, + "healthier": null, + "healthiest": null, + "heap": [["S", "M", "D", "G"]], + "heaps": null, + "heap's": null, + "heaped": null, + "heaping": null, + "heard": [["U", "A"]], + "unheard": null, + "reheard": null, + "hearer": [["M"]], + "hearer's": null, + "hearing": [["A", "M"]], + "rehearing": null, + "rehearing's": null, + "hearing's": null, + "hearken": [["S", "G", "D"]], + "hearkens": null, + "hearkening": null, + "hearkened": null, + "hearsay": [["S", "M"]], + "hearsays": null, + "hearsay's": null, + "hearse": [["M"]], + "hearse's": null, + "hears": [["S", "D", "A", "G"]], + "hearses": null, + "rehearses": null, + "hearsed": null, + "rehearsed": [["U"]], + "rehears": [["R"]], + "rehearsing": null, + "hearsing": null, + "Hearst": [["M"]], + "Hearst's": null, + "heartache": [["S", "M"]], + "heartaches": null, + "heartache's": null, + "heartbeat": [["M", "S"]], + "heartbeat's": null, + "heartbeats": null, + "heartbreak": [["G", "M", "S"]], + "heartbreaking": [["Y"]], + "heartbreak's": null, + "heartbreaks": null, + "heartbreakingly": null, + "heartbroke": null, + "heartbroken": null, + "heartburning": [["M"]], + "heartburning's": null, + "heartburn": [["S", "G", "M"]], + "heartburns": null, + "heartburn's": null, + "hearted": [["Y"]], + "heartedly": null, + "hearten": [["E", "G", "D", "S"]], + "dishearten": null, + "disheartening": null, + "disheartened": null, + "disheartens": null, + "heartening": [["E", "Y"]], + "heartened": null, + "heartens": null, + "dishearteningly": null, + "hearteningly": null, + "heartfelt": null, + "hearth": [["M"]], + "hearth's": null, + "hearthrug": null, + "hearths": null, + "hearthstone": [["M", "S"]], + "hearthstone's": null, + "hearthstones": null, + "heartily": null, + "heartiness": [["S", "M"]], + "heartinesses": null, + "heartiness's": null, + "heartland": [["S", "M"]], + "heartlands": null, + "heartland's": null, + "heartlessness": [["S", "M"]], + "heartlessnesses": null, + "heartlessness's": null, + "heartless": [["Y", "P"]], + "heartlessly": null, + "heartrending": [["Y"]], + "heartrendingly": null, + "heartsickness": [["M", "S"]], + "heartsickness's": null, + "heartsicknesses": null, + "heartsick": [["P"]], + "heart": [["S", "M", "D", "N", "X", "G"]], + "hearts": null, + "heart's": null, + "hearting": null, + "heartstrings": null, + "heartthrob": [["M", "S"]], + "heartthrob's": null, + "heartthrobs": null, + "heartwarming": null, + "Heartwood": [["M"]], + "Heartwood's": null, + "heartwood": [["S", "M"]], + "heartwoods": null, + "heartwood's": null, + "hearty": [["T", "R", "S", "P"]], + "heartiest": null, + "heartier": null, + "hearties": null, + "hear": [["Z", "T", "S", "R", "H", "J", "G"]], + "hearers": null, + "hearest": null, + "hearings": null, + "heatedly": null, + "heated": [["U", "A"]], + "unheated": null, + "reheated": null, + "heater": [["M"]], + "heater's": null, + "heathendom": [["S", "M"]], + "heathendoms": null, + "heathendom's": null, + "heathenish": [["Y"]], + "heathenishly": null, + "heathenism": [["M", "S"]], + "heathenism's": null, + "heathenisms": null, + "heathen": [["M"]], + "heathen's": null, + "heather": [["M"]], + "heather's": null, + "Heather": [["M"]], + "Heather's": null, + "heathery": null, + "Heathkit": [["M"]], + "Heathkit's": null, + "heathland": null, + "Heathman": [["M"]], + "Heathman's": null, + "Heath": [["M", "R"]], + "Heath's": null, + "heath": [["M", "R", "N", "Z", "X"]], + "heath's": null, + "heathers": null, + "heathens": null, + "heaths": null, + "heatproof": null, + "heats": [["A"]], + "reheats": null, + "heat": [["S", "M", "D", "R", "G", "Z", "B", "J"]], + "heat's": null, + "heating": null, + "heaters": null, + "heatable": null, + "heatings": null, + "heatstroke": [["M", "S"]], + "heatstroke's": null, + "heatstrokes": null, + "heatwave": null, + "heave": [["D", "S", "R", "G", "Z"]], + "heaved": null, + "heaves": [["M"]], + "heaver": [["M"]], + "heaving": null, + "heavers": null, + "heavenliness": [["M"]], + "heavenliness's": null, + "heavenly": [["P", "T", "R"]], + "heavenliest": null, + "heavenlier": null, + "heaven": [["S", "Y", "M"]], + "heavens": null, + "heaven's": null, + "heavenward": [["S"]], + "heavenwards": null, + "heaver's": null, + "heaves's": null, + "heavily": null, + "heaviness": [["M", "S"]], + "heaviness's": null, + "heavinesses": null, + "Heaviside": [["M"]], + "Heaviside's": null, + "heavyhearted": null, + "heavyset": null, + "heavy": [["T", "P", "R", "S"]], + "heaviest": null, + "heavier": null, + "heavies": null, + "heavyweight": [["S", "M"]], + "heavyweights": null, + "heavyweight's": null, + "Hebe": [["M"]], + "Hebe's": null, + "hebephrenic": null, + "Hebert": [["M"]], + "Hebert's": null, + "Heb": [["M"]], + "Heb's": null, + "Hebraic": null, + "Hebraism": [["M", "S"]], + "Hebraism's": null, + "Hebraisms": null, + "Hebrew": [["S", "M"]], + "Hebrews": null, + "Hebrew's": null, + "Hebrides": [["M"]], + "Hebrides's": null, + "Hecate": [["M"]], + "Hecate's": null, + "hecatomb": [["M"]], + "hecatomb's": null, + "heckler": [["M"]], + "heckler's": null, + "heckle": [["R", "S", "D", "Z", "G"]], + "heckles": null, + "heckled": null, + "hecklers": null, + "heckling": null, + "heck": [["S"]], + "hecks": null, + "hectare": [["M", "S"]], + "hectare's": null, + "hectares": null, + "hectically": null, + "hectic": [["S"]], + "hectics": null, + "hectogram": [["M", "S"]], + "hectogram's": null, + "hectograms": null, + "hectometer": [["S", "M"]], + "hectometers": null, + "hectometer's": null, + "Hector": [["M"]], + "Hector's": null, + "hector": [["S", "G", "D"]], + "hectors": null, + "hectoring": null, + "hectored": null, + "Hecuba": [["M"]], + "Hecuba's": null, + "he'd": null, + "Heda": [["M"]], + "Heda's": null, + "Hedda": [["M"]], + "Hedda's": null, + "Heddie": [["M"]], + "Heddie's": null, + "Heddi": [["M"]], + "Heddi's": null, + "hedge": [["D", "S", "R", "G", "M", "Z"]], + "hedged": null, + "hedges": null, + "hedger": [["M"]], + "hedging": [["Y"]], + "hedge's": null, + "hedgers": null, + "hedgehog": [["M", "S"]], + "hedgehog's": null, + "hedgehogs": null, + "hedgehopped": null, + "hedgehopping": null, + "hedgehop": [["S"]], + "hedgehops": null, + "hedger's": null, + "hedgerow": [["S", "M"]], + "hedgerows": null, + "hedgerow's": null, + "hedgingly": null, + "Hedi": [["M"]], + "Hedi's": null, + "hedonism": [["S", "M"]], + "hedonisms": null, + "hedonism's": null, + "hedonistic": null, + "hedonist": [["M", "S"]], + "hedonist's": null, + "hedonists": null, + "Hedvige": [["M"]], + "Hedvige's": null, + "Hedvig": [["M"]], + "Hedvig's": null, + "Hedwiga": [["M"]], + "Hedwiga's": null, + "Hedwig": [["M"]], + "Hedwig's": null, + "Hedy": [["M"]], + "Hedy's": null, + "heeded": [["U"]], + "unheeded": null, + "heedfulness": [["M"]], + "heedfulness's": null, + "heedful": [["P", "Y"]], + "heedfully": null, + "heeding": [["U"]], + "unheeding": null, + "heedlessness": [["S", "M"]], + "heedlessnesses": null, + "heedlessness's": null, + "heedless": [["Y", "P"]], + "heedlessly": null, + "heed": [["S", "M", "G", "D"]], + "heeds": null, + "heed's": null, + "heehaw": [["D", "G", "S"]], + "heehawed": null, + "heehawing": null, + "heehaws": null, + "heeler": [["M"]], + "heeler's": null, + "heeling": [["M"]], + "heeling's": null, + "heelless": null, + "heel": [["S", "G", "Z", "M", "D", "R"]], + "heels": null, + "heelers": null, + "heel's": null, + "heeled": null, + "Heep": [["M"]], + "Heep's": null, + "Hefner": [["M"]], + "Hefner's": null, + "heft": [["G", "S", "D"]], + "hefting": null, + "hefts": null, + "hefted": null, + "heftily": null, + "heftiness": [["S", "M"]], + "heftinesses": null, + "heftiness's": null, + "hefty": [["T", "R", "P"]], + "heftiest": null, + "heftier": null, + "Hegelian": null, + "Hegel": [["M"]], + "Hegel's": null, + "hegemonic": null, + "hegemony": [["M", "S"]], + "hegemony's": null, + "hegemonies": null, + "Hegira": [["M"]], + "Hegira's": null, + "hegira": [["S"]], + "hegiras": null, + "Heida": [["M"]], + "Heida's": null, + "Heidegger": [["M"]], + "Heidegger's": null, + "Heidelberg": [["M"]], + "Heidelberg's": null, + "Heidie": [["M"]], + "Heidie's": null, + "Heidi": [["M"]], + "Heidi's": null, + "heifer": [["M", "S"]], + "heifer's": null, + "heifers": null, + "Heifetz": [["M"]], + "Heifetz's": null, + "heighten": [["G", "D"]], + "heightening": null, + "heightened": null, + "height": [["S", "M", "N", "X"]], + "heights": null, + "height's": null, + "heightens": null, + "Heimlich": [["M"]], + "Heimlich's": null, + "Heindrick": [["M"]], + "Heindrick's": null, + "Heineken": [["M"]], + "Heineken's": null, + "Heine": [["M"]], + "Heine's": null, + "Heinlein": [["M"]], + "Heinlein's": null, + "heinousness": [["S", "M"]], + "heinousnesses": null, + "heinousness's": null, + "heinous": [["P", "Y"]], + "heinously": null, + "Heinrich": [["M"]], + "Heinrich's": null, + "Heinrick": [["M"]], + "Heinrick's": null, + "Heinrik": [["M"]], + "Heinrik's": null, + "Heinze": [["M"]], + "Heinze's": null, + "Heinz": [["M"]], + "Heinz's": null, + "heiress": [["M", "S"]], + "heiress's": null, + "heiresses": null, + "heirloom": [["M", "S"]], + "heirloom's": null, + "heirlooms": null, + "heir": [["S", "D", "M", "G"]], + "heirs": null, + "heired": null, + "heir's": null, + "heiring": null, + "Heisenberg": [["M"]], + "Heisenberg's": null, + "Heiser": [["M"]], + "Heiser's": null, + "heister": [["M"]], + "heister's": null, + "heist": [["G", "S", "M", "R", "D"]], + "heisting": null, + "heists": null, + "heist's": null, + "heisted": null, + "Hejira's": null, + "Helaina": [["M"]], + "Helaina's": null, + "Helaine": [["M"]], + "Helaine's": null, + "held": null, + "Helena": [["M"]], + "Helena's": null, + "Helene": [["M"]], + "Helene's": null, + "Helenka": [["M"]], + "Helenka's": null, + "Helen": [["M"]], + "Helen's": null, + "Helga": [["M"]], + "Helga's": null, + "Helge": [["M"]], + "Helge's": null, + "helical": [["Y"]], + "helically": null, + "helices": [["M"]], + "helices's": null, + "helicon": [["M"]], + "helicon's": null, + "Helicon": [["M"]], + "Helicon's": null, + "helicopter": [["G", "S", "M", "D"]], + "helicoptering": null, + "helicopters": null, + "helicopter's": null, + "helicoptered": null, + "heliocentric": null, + "heliography": [["M"]], + "heliography's": null, + "Heliopolis": [["M"]], + "Heliopolis's": null, + "Helios": [["M"]], + "Helios's": null, + "heliosphere": null, + "heliotrope": [["S", "M"]], + "heliotropes": null, + "heliotrope's": null, + "heliport": [["M", "S"]], + "heliport's": null, + "heliports": null, + "helium": [["M", "S"]], + "helium's": null, + "heliums": null, + "helix": [["M"]], + "helix's": null, + "he'll": null, + "hellbender": [["M"]], + "hellbender's": null, + "hellbent": null, + "hellcat": [["S", "M"]], + "hellcats": null, + "hellcat's": null, + "hellebore": [["S", "M"]], + "hellebores": null, + "hellebore's": null, + "Hellene": [["S", "M"]], + "Hellenes": null, + "Hellene's": null, + "Hellenic": null, + "Hellenism": [["M", "S"]], + "Hellenism's": null, + "Hellenisms": null, + "Hellenistic": null, + "Hellenist": [["M", "S"]], + "Hellenist's": null, + "Hellenists": null, + "Hellenization": [["M"]], + "Hellenization's": null, + "Hellenize": null, + "heller": [["M"]], + "heller's": null, + "Heller": [["M"]], + "Heller's": null, + "Hellespont": [["M"]], + "Hellespont's": null, + "hellfire": [["M"]], + "hellfire's": null, + "hell": [["G", "S", "M", "D", "R"]], + "helling": null, + "hells": null, + "hell's": null, + "helled": null, + "hellhole": [["S", "M"]], + "hellholes": null, + "hellhole's": null, + "Helli": [["M"]], + "Helli's": null, + "hellion": [["S", "M"]], + "hellions": null, + "hellion's": null, + "hellishness": [["S", "M"]], + "hellishnesses": null, + "hellishness's": null, + "hellish": [["P", "Y"]], + "hellishly": null, + "Hellman": [["M"]], + "Hellman's": null, + "hello": [["G", "M", "S"]], + "helloing": null, + "hello's": null, + "hellos": null, + "Hell's": null, + "helluva": null, + "helmed": null, + "helmet": [["G", "S", "M", "D"]], + "helmeting": null, + "helmets": null, + "helmet's": null, + "helmeted": null, + "Helmholtz": [["M"]], + "Helmholtz's": null, + "helming": null, + "helms": null, + "helm's": null, + "helmsman": [["M"]], + "helmsman's": null, + "helmsmen": null, + "helm": [["U"]], + "unhelm": null, + "Helmut": [["M"]], + "Helmut's": null, + "H�loise": [["M"]], + "H�loise's": null, + "helot": [["S"]], + "helots": null, + "helper": [["M"]], + "helper's": null, + "helpfulness": [["M", "S"]], + "helpfulness's": null, + "helpfulnesses": null, + "helpful": [["U", "Y"]], + "unhelpful": null, + "unhelpfully": null, + "helpfully": null, + "help": [["G", "Z", "S", "J", "D", "R"]], + "helping": [["M"]], + "helpers": null, + "helps": null, + "helpings": null, + "helped": null, + "helping's": null, + "helplessness": [["S", "M"]], + "helplessnesses": null, + "helplessness's": null, + "helpless": [["Y", "P"]], + "helplessly": null, + "helpline": [["S"]], + "helplines": null, + "helpmate": [["S", "M"]], + "helpmates": null, + "helpmate's": null, + "helpmeet's": null, + "Helsa": [["M"]], + "Helsa's": null, + "Helsinki": [["M"]], + "Helsinki's": null, + "helve": [["G", "M", "D", "S"]], + "helving": null, + "helve's": null, + "helved": null, + "helves": null, + "Helvetian": [["S"]], + "Helvetians": null, + "Helvetius": [["M"]], + "Helvetius's": null, + "Helyn": [["M"]], + "Helyn's": null, + "He": [["M"]], + "He's": null, + "hematite": [["M", "S"]], + "hematite's": null, + "hematites": null, + "hematologic": null, + "hematological": null, + "hematologist": [["S", "M"]], + "hematologists": null, + "hematologist's": null, + "hematology": [["M", "S"]], + "hematology's": null, + "hematologies": null, + "heme": [["M", "S"]], + "heme's": null, + "hemes": null, + "Hemingway": [["M"]], + "Hemingway's": null, + "hemisphere": [["M", "S", "D"]], + "hemisphere's": null, + "hemispheres": null, + "hemisphered": null, + "hemispheric": null, + "hemispherical": null, + "hemline": [["S", "M"]], + "hemlines": null, + "hemline's": null, + "hemlock": [["M", "S"]], + "hemlock's": null, + "hemlocks": null, + "hemmed": null, + "hemmer": [["S", "M"]], + "hemmers": null, + "hemmer's": null, + "hemming": null, + "hem": [["M", "S"]], + "hem's": null, + "hems": null, + "hemoglobin": [["M", "S"]], + "hemoglobin's": null, + "hemoglobins": null, + "hemolytic": null, + "hemophiliac": [["S", "M"]], + "hemophiliacs": null, + "hemophiliac's": null, + "hemophilia": [["S", "M"]], + "hemophilias": null, + "hemophilia's": null, + "hemorrhage": [["G", "M", "D", "S"]], + "hemorrhaging": null, + "hemorrhage's": null, + "hemorrhaged": null, + "hemorrhages": null, + "hemorrhagic": null, + "hemorrhoid": [["M", "S"]], + "hemorrhoid's": null, + "hemorrhoids": null, + "hemostat": [["S", "M"]], + "hemostats": null, + "hemostat's": null, + "hemp": [["M", "N", "S"]], + "hemp's": null, + "hempen": null, + "hemps": null, + "h": [["E", "M", "S"]], + "dish's": null, + "dishes": null, + "h's": null, + "hes": null, + "hemstitch": [["D", "S", "M", "G"]], + "hemstitched": null, + "hemstitches": null, + "hemstitch's": null, + "hemstitching": null, + "henceforth": null, + "henceforward": null, + "hence": [["S"]], + "hences": null, + "Hench": [["M"]], + "Hench's": null, + "henchman": [["M"]], + "henchman's": null, + "henchmen": null, + "Henderson": [["M"]], + "Henderson's": null, + "Hendrick": [["S", "M"]], + "Hendricks": null, + "Hendrick's": null, + "Hendrickson": [["M"]], + "Hendrickson's": null, + "Hendrika": [["M"]], + "Hendrika's": null, + "Hendrik": [["M"]], + "Hendrik's": null, + "Hendrix": [["M"]], + "Hendrix's": null, + "henge": [["M"]], + "henge's": null, + "Henka": [["M"]], + "Henka's": null, + "Henley": [["M"]], + "Henley's": null, + "hen": [["M", "S"]], + "hen's": null, + "hens": null, + "henna": [["M", "D", "S", "G"]], + "henna's": null, + "hennaed": null, + "hennas": null, + "hennaing": null, + "Hennessey": [["M"]], + "Hennessey's": null, + "henning": null, + "henpeck": [["G", "S", "D"]], + "henpecking": null, + "henpecks": null, + "henpecked": null, + "Henrie": [["M"]], + "Henrie's": null, + "Henrieta": [["M"]], + "Henrieta's": null, + "Henrietta": [["M"]], + "Henrietta's": null, + "Henriette": [["M"]], + "Henriette's": null, + "Henrik": [["M"]], + "Henrik's": null, + "Henri": [["M"]], + "Henri's": null, + "Henryetta": [["M"]], + "Henryetta's": null, + "henry": [["M"]], + "henry's": null, + "Henry": [["M"]], + "Henry's": null, + "Hensley": [["M"]], + "Hensley's": null, + "Henson": [["M"]], + "Henson's": null, + "heparin": [["M", "S"]], + "heparin's": null, + "heparins": null, + "hepatic": [["S"]], + "hepatics": null, + "hepatitides": null, + "hepatitis": [["M"]], + "hepatitis's": null, + "Hepburn": [["M"]], + "Hepburn's": null, + "Hephaestus": [["M"]], + "Hephaestus's": null, + "Hephzibah": [["M"]], + "Hephzibah's": null, + "hepper": null, + "heppest": null, + "Hepplewhite": null, + "hep": [["S"]], + "heps": null, + "heptagonal": null, + "heptagon": [["S", "M"]], + "heptagons": null, + "heptagon's": null, + "heptane": [["M"]], + "heptane's": null, + "heptathlon": [["S"]], + "heptathlons": null, + "her": null, + "Heracles": [["M"]], + "Heracles's": null, + "Heraclitus": [["M"]], + "Heraclitus's": null, + "heralded": [["U"]], + "unheralded": null, + "heraldic": null, + "herald": [["M", "D", "S", "G"]], + "herald's": null, + "heralds": null, + "heralding": null, + "heraldry": [["M", "S"]], + "heraldry's": null, + "heraldries": null, + "Hera": [["M"]], + "Hera's": null, + "herbaceous": null, + "herbage": [["M", "S"]], + "herbage's": null, + "herbages": null, + "herbalism": null, + "herbalist": [["M", "S"]], + "herbalist's": null, + "herbalists": null, + "herbal": [["S"]], + "herbals": null, + "Herbart": [["M"]], + "Herbart's": null, + "Herbert": [["M"]], + "Herbert's": null, + "herbicidal": null, + "herbicide": [["M", "S"]], + "herbicide's": null, + "herbicides": null, + "Herbie": [["M"]], + "Herbie's": null, + "herbivore": [["S", "M"]], + "herbivores": null, + "herbivore's": null, + "herbivorous": [["Y"]], + "herbivorously": null, + "Herb": [["M"]], + "Herb's": null, + "herb": [["M", "S"]], + "herb's": null, + "herbs": null, + "Herby": [["M"]], + "Herby's": null, + "Herc": [["M"]], + "Herc's": null, + "Herculaneum": [["M"]], + "Herculaneum's": null, + "herculean": null, + "Herculean": null, + "Hercule": [["M", "S"]], + "Hercule's": null, + "Hercules": null, + "Herculie": [["M"]], + "Herculie's": null, + "herder": [["M"]], + "herder's": null, + "Herder": [["M"]], + "Herder's": null, + "herd": [["M", "D", "R", "G", "Z", "S"]], + "herd's": null, + "herded": null, + "herding": null, + "herders": null, + "herds": null, + "herdsman": [["M"]], + "herdsman's": null, + "herdsmen": null, + "hereabout": [["S"]], + "hereabouts": null, + "hereafter": [["S"]], + "hereafters": null, + "hereby": null, + "hereditary": null, + "heredity": [["M", "S"]], + "heredity's": null, + "heredities": null, + "Hereford": [["S", "M"]], + "Herefords": null, + "Hereford's": null, + "herein": null, + "hereinafter": null, + "here": [["I", "S"]], + "inhere": [["D", "G"]], + "inheres": null, + "heres": [["M"]], + "hereof": null, + "hereon": null, + "here's": null, + "heres's": null, + "heresy": [["S", "M"]], + "heresies": null, + "heresy's": null, + "heretical": null, + "heretic": [["S", "M"]], + "heretics": null, + "heretic's": null, + "hereto": null, + "heretofore": null, + "hereunder": null, + "hereunto": null, + "hereupon": null, + "herewith": null, + "Heriberto": [["M"]], + "Heriberto's": null, + "heritable": null, + "heritage": [["M", "S"]], + "heritage's": null, + "heritages": null, + "heritor": [["I", "M"]], + "inheritor": [["S"]], + "inheritor's": null, + "heritor's": null, + "Herkimer": [["M"]], + "Herkimer's": null, + "Herman": [["M"]], + "Herman's": null, + "Hermann": [["M"]], + "Hermann's": null, + "hermaphrodite": [["S", "M"]], + "hermaphrodites": null, + "hermaphrodite's": null, + "hermaphroditic": null, + "Hermaphroditus": [["M"]], + "Hermaphroditus's": null, + "hermeneutic": [["S"]], + "hermeneutics": [["M"]], + "hermeneutics's": null, + "Hermes": null, + "hermetical": [["Y"]], + "hermetically": null, + "hermetic": [["S"]], + "hermetics": null, + "Hermia": [["M"]], + "Hermia's": null, + "Hermie": [["M"]], + "Hermie's": null, + "Hermina": [["M"]], + "Hermina's": null, + "Hermine": [["M"]], + "Hermine's": null, + "Herminia": [["M"]], + "Herminia's": null, + "Hermione": [["M"]], + "Hermione's": null, + "hermitage": [["S", "M"]], + "hermitages": null, + "hermitage's": null, + "Hermite": [["M"]], + "Hermite's": null, + "hermitian": null, + "hermit": [["M", "S"]], + "hermit's": null, + "hermits": null, + "Hermon": [["M"]], + "Hermon's": null, + "Hermosa": [["M"]], + "Hermosa's": null, + "Hermosillo": [["M"]], + "Hermosillo's": null, + "Hermy": [["M"]], + "Hermy's": null, + "Hernandez": [["M"]], + "Hernandez's": null, + "Hernando": [["M"]], + "Hernando's": null, + "hernial": null, + "hernia": [["M", "S"]], + "hernia's": null, + "hernias": null, + "herniate": [["N", "G", "X", "D", "S"]], + "herniation": null, + "herniating": null, + "herniations": null, + "herniated": null, + "herniates": null, + "Herod": [["M"]], + "Herod's": null, + "Herodotus": [["M"]], + "Herodotus's": null, + "heroes": null, + "heroically": null, + "heroics": null, + "heroic": [["U"]], + "unheroic": null, + "heroine": [["S", "M"]], + "heroines": null, + "heroine's": null, + "heroin": [["M", "S"]], + "heroin's": null, + "heroins": null, + "heroism": [["S", "M"]], + "heroisms": null, + "heroism's": null, + "Herold": [["M"]], + "Herold's": null, + "hero": [["M"]], + "hero's": null, + "heron": [["S", "M"]], + "herons": null, + "heron's": null, + "herpes": [["M"]], + "herpes's": null, + "herpetologist": [["S", "M"]], + "herpetologists": null, + "herpetologist's": null, + "herpetology": [["M", "S"]], + "herpetology's": null, + "herpetologies": null, + "Herrera": [["M"]], + "Herrera's": null, + "Herrick": [["M"]], + "Herrick's": null, + "herringbone": [["S", "D", "G", "M"]], + "herringbones": null, + "herringboned": null, + "herringboning": null, + "herringbone's": null, + "Herring": [["M"]], + "Herring's": null, + "herring": [["S", "M"]], + "herrings": null, + "herring's": null, + "Herrington": [["M"]], + "Herrington's": null, + "Herr": [["M", "G"]], + "Herr's": null, + "Herschel": [["M"]], + "Herschel's": null, + "Hersch": [["M"]], + "Hersch's": null, + "herself": null, + "Hersey": [["M"]], + "Hersey's": null, + "Hershel": [["M"]], + "Hershel's": null, + "Hershey": [["M"]], + "Hershey's": null, + "Hersh": [["M"]], + "Hersh's": null, + "Herta": [["M"]], + "Herta's": null, + "Hertha": [["M"]], + "Hertha's": null, + "hertz": [["M"]], + "hertz's": null, + "Hertz": [["M"]], + "Hertz's": null, + "Hertzog": [["M"]], + "Hertzog's": null, + "Hertzsprung": [["M"]], + "Hertzsprung's": null, + "Herve": [["M"]], + "Herve's": null, + "Hervey": [["M"]], + "Hervey's": null, + "Herzegovina": [["M"]], + "Herzegovina's": null, + "Herzl": [["M"]], + "Herzl's": null, + "Hesiod": [["M"]], + "Hesiod's": null, + "hesitance": [["S"]], + "hesitances": null, + "hesitancy": [["S", "M"]], + "hesitancies": null, + "hesitancy's": null, + "hesitantly": null, + "hesitant": [["U"]], + "unhesitant": null, + "hesitater": [["M"]], + "hesitater's": null, + "hesitate": [["X", "D", "R", "S", "N", "G"]], + "hesitations": null, + "hesitated": null, + "hesitates": null, + "hesitation": [["M"]], + "hesitating": [["U", "Y"]], + "unhesitating": null, + "unhesitatingly": null, + "hesitatingly": null, + "hesitation's": null, + "Hesperus": [["M"]], + "Hesperus's": null, + "Hesse": [["M"]], + "Hesse's": null, + "Hessian": [["M", "S"]], + "Hessian's": null, + "Hessians": null, + "Hess": [["M"]], + "Hess's": null, + "Hester": [["M"]], + "Hester's": null, + "Hesther": [["M"]], + "Hesther's": null, + "Hestia": [["M"]], + "Hestia's": null, + "Heston": [["M"]], + "Heston's": null, + "heterodox": null, + "heterodoxy": [["M", "S"]], + "heterodoxy's": null, + "heterodoxies": null, + "heterodyne": null, + "heterogamous": null, + "heterogamy": [["M"]], + "heterogamy's": null, + "heterogeneity": [["S", "M"]], + "heterogeneities": null, + "heterogeneity's": null, + "heterogeneousness": [["M"]], + "heterogeneousness's": null, + "heterogeneous": [["P", "Y"]], + "heterogeneously": null, + "heterosexuality": [["S", "M"]], + "heterosexualities": null, + "heterosexuality's": null, + "heterosexual": [["Y", "M", "S"]], + "heterosexually": null, + "heterosexual's": null, + "heterosexuals": null, + "heterostructure": null, + "heterozygous": null, + "Hettie": [["M"]], + "Hettie's": null, + "Hetti": [["M"]], + "Hetti's": null, + "Hetty": [["M"]], + "Hetty's": null, + "Heublein": [["M"]], + "Heublein's": null, + "heuristically": null, + "heuristic": [["S", "M"]], + "heuristics": null, + "heuristic's": null, + "Heusen": [["M"]], + "Heusen's": null, + "Heuser": [["M"]], + "Heuser's": null, + "he": [["V", "M", "Z"]], + "hive": [["M", "G", "D", "S"]], + "he's": null, + "hers": null, + "hew": [["D", "R", "Z", "G", "S"]], + "hewed": null, + "hewer": [["M"]], + "hewers": null, + "hewing": null, + "hews": null, + "Hewe": [["M"]], + "Hewe's": null, + "hewer's": null, + "Hewet": [["M"]], + "Hewet's": null, + "Hewett": [["M"]], + "Hewett's": null, + "Hewie": [["M"]], + "Hewie's": null, + "Hewitt": [["M"]], + "Hewitt's": null, + "Hewlett": [["M"]], + "Hewlett's": null, + "Hew": [["M"]], + "Hew's": null, + "hexachloride": [["M"]], + "hexachloride's": null, + "hexadecimal": [["Y", "S"]], + "hexadecimally": null, + "hexadecimals": null, + "hexafluoride": [["M"]], + "hexafluoride's": null, + "hexagonal": [["Y"]], + "hexagonally": null, + "hexagon": [["S", "M"]], + "hexagons": null, + "hexagon's": null, + "hexagram": [["S", "M"]], + "hexagrams": null, + "hexagram's": null, + "hexameter": [["S", "M"]], + "hexameters": null, + "hexameter's": null, + "hex": [["D", "S", "R", "G"]], + "hexed": null, + "hexes": null, + "hexer": [["M"]], + "hexing": null, + "hexer's": null, + "hey": null, + "heyday": [["M", "S"]], + "heyday's": null, + "heydays": null, + "Heyerdahl": [["M"]], + "Heyerdahl's": null, + "Heywood": [["M"]], + "Heywood's": null, + "Hezekiah": [["M"]], + "Hezekiah's": null, + "hf": null, + "HF": null, + "Hf": [["M"]], + "Hf's": null, + "Hg": [["M"]], + "Hg's": null, + "hgt": null, + "hgwy": null, + "HHS": null, + "HI": null, + "Hialeah": [["M"]], + "Hialeah's": null, + "hiatus": [["S", "M"]], + "hiatuses": null, + "hiatus's": null, + "Hiawatha": [["M"]], + "Hiawatha's": null, + "hibachi": [["M", "S"]], + "hibachi's": null, + "hibachis": null, + "hibernate": [["X", "G", "N", "S", "D"]], + "hibernations": null, + "hibernating": null, + "hibernation": [["M"]], + "hibernates": null, + "hibernated": null, + "hibernation's": null, + "hibernator": [["S", "M"]], + "hibernators": null, + "hibernator's": null, + "Hibernia": [["M"]], + "Hibernia's": null, + "Hibernian": [["S"]], + "Hibernians": null, + "hibiscus": [["M", "S"]], + "hibiscus's": null, + "hibiscuses": null, + "hiccup": [["M", "D", "G", "S"]], + "hiccup's": null, + "hiccuped": null, + "hiccuping": null, + "hiccups": null, + "hickey": [["S", "M"]], + "hickeys": null, + "hickey's": null, + "Hickey": [["S", "M"]], + "Hickeys": null, + "Hickey's": null, + "Hickman": [["M"]], + "Hickman's": null, + "Hickok": [["M"]], + "Hickok's": null, + "hickory": [["M", "S"]], + "hickory's": null, + "hickories": null, + "hick": [["S", "M"]], + "hicks": null, + "hick's": null, + "Hicks": [["M"]], + "Hicks's": null, + "hi": [["D"]], + "hied": null, + "hidden": [["U"]], + "unhidden": null, + "hideaway": [["S", "M"]], + "hideaways": null, + "hideaway's": null, + "hidebound": null, + "hideousness": [["S", "M"]], + "hideousnesses": null, + "hideousness's": null, + "hideous": [["Y", "P"]], + "hideously": null, + "hideout": [["M", "S"]], + "hideout's": null, + "hideouts": null, + "hider": [["M"]], + "hider's": null, + "hide": [["S"]], + "hides": null, + "hiding": [["M"]], + "hiding's": null, + "hid": [["Z", "D", "R", "G", "J"]], + "hiders": null, + "hided": null, + "hidings": null, + "hieing": null, + "hierarchal": null, + "hierarchic": null, + "hierarchical": [["Y"]], + "hierarchically": null, + "hierarchy": [["S", "M"]], + "hierarchies": null, + "hierarchy's": null, + "hieratic": null, + "hieroglyph": null, + "hieroglyphic": [["S"]], + "hieroglyphics": [["M"]], + "hieroglyphics's": null, + "hieroglyphs": null, + "Hieronymus": [["M"]], + "Hieronymus's": null, + "hie": [["S"]], + "hies": null, + "hifalutin": null, + "Higashiosaka": null, + "Higgins": [["M"]], + "Higgins's": null, + "highball": [["G", "S", "D", "M"]], + "highballing": null, + "highballs": null, + "highballed": null, + "highball's": null, + "highborn": null, + "highboy": [["M", "S"]], + "highboy's": null, + "highboys": null, + "highbrow": [["S", "M"]], + "highbrows": null, + "highbrow's": null, + "highchair": [["S", "M"]], + "highchairs": null, + "highchair's": null, + "highfalutin": null, + "Highfield": [["M"]], + "Highfield's": null, + "highhandedness": [["S", "M"]], + "highhandednesses": null, + "highhandedness's": null, + "highhanded": [["P", "Y"]], + "highhandedly": null, + "highish": null, + "Highlander": [["S", "M"]], + "Highlanders": null, + "Highlander's": null, + "Highlands": null, + "highland": [["Z", "S", "R", "M"]], + "highlanders": null, + "highlands": null, + "highlander": null, + "highland's": null, + "highlight": [["G", "Z", "R", "D", "M", "S"]], + "highlighting": null, + "highlighters": null, + "highlighter": null, + "highlighted": null, + "highlight's": null, + "highlights": null, + "Highness": [["M"]], + "Highness's": null, + "highness": [["M", "S"]], + "highness's": null, + "highnesses": null, + "highpoint": null, + "high": [["P", "Y", "R", "T"]], + "highly": null, + "higher": null, + "highest": null, + "highroad": [["M", "S"]], + "highroad's": null, + "highroads": null, + "highs": null, + "hight": null, + "hightail": [["D", "G", "S"]], + "hightailed": null, + "hightailing": null, + "hightails": null, + "highwayman": [["M"]], + "highwayman's": null, + "highwaymen": null, + "highway": [["M", "S"]], + "highway's": null, + "highways": null, + "hijacker": [["M"]], + "hijacker's": null, + "hijack": [["J", "Z", "R", "D", "G", "S"]], + "hijackings": null, + "hijackers": null, + "hijacked": null, + "hijacking": null, + "hijacks": null, + "hiker": [["M"]], + "hiker's": null, + "hike": [["Z", "G", "D", "S", "R"]], + "hikers": null, + "hiking": null, + "hiked": null, + "hikes": null, + "Hilario": [["M"]], + "Hilario's": null, + "hilariousness": [["M", "S"]], + "hilariousness's": null, + "hilariousnesses": null, + "hilarious": [["Y", "P"]], + "hilariously": null, + "hilarity": [["M", "S"]], + "hilarity's": null, + "hilarities": null, + "Hilarius": [["M"]], + "Hilarius's": null, + "Hilary": [["M"]], + "Hilary's": null, + "Hilbert": [["M"]], + "Hilbert's": null, + "Hildagarde": [["M"]], + "Hildagarde's": null, + "Hildagard": [["M"]], + "Hildagard's": null, + "Hilda": [["M"]], + "Hilda's": null, + "Hildebrand": [["M"]], + "Hildebrand's": null, + "Hildegaard": [["M"]], + "Hildegaard's": null, + "Hildegarde": [["M"]], + "Hildegarde's": null, + "Hilde": [["M"]], + "Hilde's": null, + "Hildy": [["M"]], + "Hildy's": null, + "Hillard": [["M"]], + "Hillard's": null, + "Hillary": [["M"]], + "Hillary's": null, + "hillbilly": [["M", "S"]], + "hillbilly's": null, + "hillbillies": null, + "Hillcrest": [["M"]], + "Hillcrest's": null, + "Hillel": [["M"]], + "Hillel's": null, + "hiller": [["M"]], + "hiller's": null, + "Hillery": [["M"]], + "Hillery's": null, + "hill": [["G", "S", "M", "D", "R"]], + "hilling": null, + "hills": null, + "hill's": null, + "hilled": null, + "Hilliard": [["M"]], + "Hilliard's": null, + "Hilliary": [["M"]], + "Hilliary's": null, + "Hillie": [["M"]], + "Hillie's": null, + "Hillier": [["M"]], + "Hillier's": null, + "hilliness": [["S", "M"]], + "hillinesses": null, + "hilliness's": null, + "Hill": [["M"]], + "Hill's": null, + "hillman": null, + "hillmen": null, + "hillock": [["S", "M"]], + "hillocks": null, + "hillock's": null, + "Hillsboro": [["M"]], + "Hillsboro's": null, + "Hillsdale": [["M"]], + "Hillsdale's": null, + "hillside": [["S", "M"]], + "hillsides": null, + "hillside's": null, + "hilltop": [["M", "S"]], + "hilltop's": null, + "hilltops": null, + "hillwalking": null, + "Hillyer": [["M"]], + "Hillyer's": null, + "Hilly": [["R", "M"]], + "Hilly's": null, + "hilly": [["T", "R", "P"]], + "hilliest": null, + "hillier": null, + "hilt": [["M", "D", "G", "S"]], + "hilt's": null, + "hilted": null, + "hilting": null, + "hilts": null, + "Hilton": [["M"]], + "Hilton's": null, + "Hi": [["M"]], + "Hi's": null, + "Himalaya": [["M", "S"]], + "Himalaya's": null, + "Himalayas": null, + "Himalayan": [["S"]], + "Himalayans": null, + "Himmler": [["M"]], + "Himmler's": null, + "him": [["S"]], + "hims": null, + "himself": null, + "Hinayana": [["M"]], + "Hinayana's": null, + "Hinda": [["M"]], + "Hinda's": null, + "Hindemith": [["M"]], + "Hindemith's": null, + "Hindenburg": [["M"]], + "Hindenburg's": null, + "hindered": [["U"]], + "unhindered": null, + "hinderer": [["M"]], + "hinderer's": null, + "hinder": [["G", "R", "D"]], + "hindering": null, + "Hindi": [["M"]], + "Hindi's": null, + "hindmost": null, + "hindquarter": [["S", "M"]], + "hindquarters": null, + "hindquarter's": null, + "hindrance": [["S", "M"]], + "hindrances": null, + "hindrance's": null, + "hind": [["R", "S", "Z"]], + "hinds": null, + "hinders": null, + "hindsight": [["S", "M"]], + "hindsights": null, + "hindsight's": null, + "Hinduism": [["S", "M"]], + "Hinduisms": null, + "Hinduism's": null, + "Hindu": [["M", "S"]], + "Hindu's": null, + "Hindus": null, + "Hindustani": [["M", "S"]], + "Hindustani's": null, + "Hindustanis": null, + "Hindustan": [["M"]], + "Hindustan's": null, + "Hines": [["M"]], + "Hines's": null, + "hinger": null, + "hinge's": null, + "hinge": [["U", "D", "S", "G"]], + "unhinge": null, + "unhinged": null, + "unhinges": null, + "unhinging": null, + "hinged": null, + "hinges": null, + "hinging": null, + "Hinkle": [["M"]], + "Hinkle's": null, + "Hinsdale": [["M"]], + "Hinsdale's": null, + "hinterland": [["M", "S"]], + "hinterland's": null, + "hinterlands": null, + "hinter": [["M"]], + "hinter's": null, + "hint": [["G", "Z", "M", "D", "R", "S"]], + "hinting": null, + "hinters": null, + "hint's": null, + "hinted": null, + "hints": null, + "Hinton": [["M"]], + "Hinton's": null, + "Hinze": [["M"]], + "Hinze's": null, + "hipbone": [["S", "M"]], + "hipbones": null, + "hipbone's": null, + "hipness": [["S"]], + "hipnesses": null, + "Hipparchus": [["M"]], + "Hipparchus's": null, + "hipped": null, + "hipper": null, + "hippest": null, + "hippie": [["M", "T", "R", "S"]], + "hippie's": null, + "hippiest": null, + "hippier": null, + "hippies": null, + "hipping": [["M"]], + "hipping's": null, + "Hippocrates": [["M"]], + "Hippocrates's": null, + "Hippocratic": null, + "hippodrome": [["M", "S"]], + "hippodrome's": null, + "hippodromes": null, + "hippo": [["M", "S"]], + "hippo's": null, + "hippos": null, + "hippopotamus": [["S", "M"]], + "hippopotamuses": null, + "hippopotamus's": null, + "hip": [["P", "S", "M"]], + "hips": null, + "hip's": null, + "hippy's": null, + "hipster": [["M", "S"]], + "hipster's": null, + "hipsters": null, + "hiragana": null, + "Hiram": [["M"]], + "Hiram's": null, + "hire": [["A", "G", "S", "D"]], + "rehire": null, + "rehiring": null, + "rehires": null, + "rehired": null, + "hiring": [["S"]], + "hires": null, + "hired": null, + "hireling": [["S", "M"]], + "hirelings": null, + "hireling's": null, + "hirer": [["S", "M"]], + "hirers": null, + "hirer's": null, + "Hirey": [["M"]], + "Hirey's": null, + "hirings": null, + "Hirohito": [["M"]], + "Hirohito's": null, + "Hiroshi": [["M"]], + "Hiroshi's": null, + "Hiroshima": [["M"]], + "Hiroshima's": null, + "Hirsch": [["M"]], + "Hirsch's": null, + "hirsuteness": [["M", "S"]], + "hirsuteness's": null, + "hirsutenesses": null, + "hirsute": [["P"]], + "his": null, + "Hispanic": [["S", "M"]], + "Hispanics": null, + "Hispanic's": null, + "Hispaniola": [["M"]], + "Hispaniola's": null, + "hiss": [["D", "S", "R", "M", "J", "G"]], + "hissed": null, + "hisses": null, + "hisser": [["M"]], + "hiss's": null, + "hissings": null, + "hissing": [["M"]], + "hisser's": null, + "hissing's": null, + "Hiss": [["M"]], + "Hiss's": null, + "histamine": [["S", "M"]], + "histamines": null, + "histamine's": null, + "histidine": [["S", "M"]], + "histidines": null, + "histidine's": null, + "histochemic": null, + "histochemical": null, + "histochemistry": [["M"]], + "histochemistry's": null, + "histogram": [["M", "S"]], + "histogram's": null, + "histograms": null, + "histological": null, + "histologist": [["M", "S"]], + "histologist's": null, + "histologists": null, + "histology": [["S", "M"]], + "histologies": null, + "histology's": null, + "historian": [["M", "S"]], + "historian's": null, + "historians": null, + "historic": null, + "historicalness": [["M"]], + "historicalness's": null, + "historical": [["P", "Y"]], + "historically": null, + "historicism": [["M"]], + "historicism's": null, + "historicist": [["M"]], + "historicist's": null, + "historicity": [["M", "S"]], + "historicity's": null, + "historicities": null, + "historiographer": [["S", "M"]], + "historiographers": null, + "historiographer's": null, + "historiography": [["M", "S"]], + "historiography's": null, + "historiographies": null, + "history": [["M", "S"]], + "history's": null, + "histories": null, + "histrionically": null, + "histrionic": [["S"]], + "histrionics": [["M"]], + "histrionics's": null, + "hist": [["S", "D", "G"]], + "hists": null, + "histed": null, + "histing": null, + "Hitachi": [["M"]], + "Hitachi's": null, + "Hitchcock": [["M"]], + "Hitchcock's": null, + "hitcher": [["M", "S"]], + "hitcher's": null, + "hitchers": null, + "hitchhike": [["R", "S", "D", "G", "Z"]], + "hitchhiker": null, + "hitchhikes": null, + "hitchhiked": null, + "hitchhiking": null, + "hitchhikers": null, + "hitch": [["U", "G", "S", "D"]], + "unhitch": null, + "unhitching": null, + "unhitches": null, + "unhitched": null, + "hitching": null, + "hitches": null, + "hitched": null, + "hither": null, + "hitherto": null, + "Hitler": [["S", "M"]], + "Hitlers": null, + "Hitler's": null, + "hitless": null, + "hit": [["M", "S"]], + "hit's": null, + "hits": null, + "hittable": null, + "hitter": [["S", "M"]], + "hitters": null, + "hitter's": null, + "hitting": null, + "Hittite": [["S", "M"]], + "Hittites": null, + "Hittite's": null, + "HIV": null, + "hive's": null, + "hiving": null, + "hived": null, + "hives": null, + "h'm": null, + "HM": null, + "HMO": null, + "Hmong": null, + "HMS": null, + "hoarder": [["M"]], + "hoarder's": null, + "hoarding": [["M"]], + "hoarding's": null, + "hoard": [["R", "D", "J", "Z", "S", "G", "M"]], + "hoarded": null, + "hoardings": null, + "hoarders": null, + "hoards": null, + "hoard's": null, + "hoarfrost": [["S", "M"]], + "hoarfrosts": null, + "hoarfrost's": null, + "hoariness": [["M", "S"]], + "hoariness's": null, + "hoarinesses": null, + "hoar": [["M"]], + "hoar's": null, + "hoarseness": [["S", "M"]], + "hoarsenesses": null, + "hoarseness's": null, + "hoarse": [["R", "T", "Y", "P"]], + "hoarser": null, + "hoarsest": null, + "hoarsely": null, + "hoary": [["T", "P", "R"]], + "hoariest": null, + "hoarier": null, + "hoaxer": [["M"]], + "hoaxer's": null, + "hoax": [["G", "Z", "M", "D", "S", "R"]], + "hoaxing": null, + "hoaxers": null, + "hoax's": null, + "hoaxed": null, + "hoaxes": null, + "Hobard": [["M"]], + "Hobard's": null, + "Hobart": [["M"]], + "Hobart's": null, + "hobbed": null, + "Hobbes": [["M"]], + "Hobbes's": null, + "hobbing": null, + "hobbit": null, + "hobbler": [["M"]], + "hobbler's": null, + "hobble": [["Z", "S", "R", "D", "G"]], + "hobblers": null, + "hobbles": null, + "hobbled": null, + "hobbling": null, + "Hobbs": [["M"]], + "Hobbs's": null, + "hobbyhorse": [["S", "M"]], + "hobbyhorses": null, + "hobbyhorse's": null, + "hobbyist": [["S", "M"]], + "hobbyists": null, + "hobbyist's": null, + "hobby": [["S", "M"]], + "hobbies": null, + "hobby's": null, + "Hobday": [["M"]], + "Hobday's": null, + "Hobey": [["M"]], + "Hobey's": null, + "hobgoblin": [["M", "S"]], + "hobgoblin's": null, + "hobgoblins": null, + "Hobie": [["M"]], + "Hobie's": null, + "hobnail": [["G", "D", "M", "S"]], + "hobnailing": null, + "hobnailed": null, + "hobnail's": null, + "hobnails": null, + "hobnobbed": null, + "hobnobbing": null, + "hobnob": [["S"]], + "hobnobs": null, + "Hoboken": [["M"]], + "Hoboken's": null, + "hobo": [["S", "D", "M", "G"]], + "hobos": null, + "hoboed": null, + "hobo's": null, + "hoboing": null, + "hob": [["S", "M"]], + "hobs": null, + "hob's": null, + "hoc": null, + "hocker": [["M"]], + "hocker's": null, + "hockey": [["S", "M"]], + "hockeys": null, + "hockey's": null, + "hock": [["G", "D", "R", "M", "S"]], + "hocking": null, + "hocked": null, + "hock's": null, + "hocks": null, + "Hockney": [["M"]], + "Hockney's": null, + "hockshop": [["S", "M"]], + "hockshops": null, + "hockshop's": null, + "hodge": [["M", "S"]], + "hodge's": null, + "hodges": null, + "Hodge": [["M", "S"]], + "Hodge's": null, + "Hodges": null, + "hodgepodge": [["S", "M"]], + "hodgepodges": null, + "hodgepodge's": null, + "Hodgkin": [["M"]], + "Hodgkin's": null, + "ho": [["D", "R", "Y", "Z"]], + "hoed": null, + "hoer": [["M"]], + "holy": [["S", "R", "T", "P"]], + "hoers": null, + "hod": [["S", "M"]], + "hods": null, + "hod's": null, + "Hoebart": [["M"]], + "Hoebart's": null, + "hoecake": [["S", "M"]], + "hoecakes": null, + "hoecake's": null, + "hoedown": [["M", "S"]], + "hoedown's": null, + "hoedowns": null, + "hoeing": null, + "hoer's": null, + "hoe": [["S", "M"]], + "hoes": null, + "hoe's": null, + "Hoffa": [["M"]], + "Hoffa's": null, + "Hoff": [["M"]], + "Hoff's": null, + "Hoffman": [["M"]], + "Hoffman's": null, + "Hofstadter": [["M"]], + "Hofstadter's": null, + "Hogan": [["M"]], + "Hogan's": null, + "hogan": [["S", "M"]], + "hogans": null, + "hogan's": null, + "Hogarth": [["M"]], + "Hogarth's": null, + "hogback": [["M", "S"]], + "hogback's": null, + "hogbacks": null, + "hogged": null, + "hogger": null, + "hogging": null, + "hoggish": [["Y"]], + "hoggishly": null, + "hogshead": [["S", "M"]], + "hogsheads": null, + "hogshead's": null, + "hog": [["S", "M"]], + "hogs": null, + "hog's": null, + "hogtie": [["S", "D"]], + "hogties": null, + "hogtied": null, + "hogtying": null, + "hogwash": [["S", "M"]], + "hogwashes": null, + "hogwash's": null, + "Hohenlohe": [["M"]], + "Hohenlohe's": null, + "Hohenstaufen": [["M"]], + "Hohenstaufen's": null, + "Hohenzollern": [["M"]], + "Hohenzollern's": null, + "Hohhot": [["M"]], + "Hohhot's": null, + "hoister": [["M"]], + "hoister's": null, + "hoist": [["G", "R", "D", "S"]], + "hoisting": null, + "hoisted": null, + "hoists": null, + "hoke": [["D", "S", "G"]], + "hoked": null, + "hokes": null, + "hoking": null, + "hokey": [["P", "R", "T"]], + "hokeyness": null, + "hokeyer": null, + "hokeyest": null, + "hokier": null, + "hokiest": null, + "Hokkaido": [["M"]], + "Hokkaido's": null, + "hokum": [["M", "S"]], + "hokum's": null, + "hokums": null, + "Hokusai": [["M"]], + "Hokusai's": null, + "Holbein": [["M"]], + "Holbein's": null, + "Holbrook": [["M"]], + "Holbrook's": null, + "Holcomb": [["M"]], + "Holcomb's": null, + "holdall": [["M", "S"]], + "holdall's": null, + "holdalls": null, + "Holden": [["M"]], + "Holden's": null, + "holder": [["M"]], + "holder's": null, + "Holder": [["M"]], + "Holder's": null, + "holding": [["I", "S"]], + "inholding": null, + "inholdings": null, + "holdings": null, + "holding's": null, + "hold": [["N", "R", "B", "S", "J", "G", "Z"]], + "holden": null, + "holdable": null, + "holds": null, + "holders": null, + "holdout": [["S", "M"]], + "holdouts": null, + "holdout's": null, + "holdover": [["S", "M"]], + "holdovers": null, + "holdover's": null, + "holdup": [["M", "S"]], + "holdup's": null, + "holdups": null, + "hole": [["M", "G", "D", "S"]], + "hole's": null, + "holing": null, + "holed": null, + "holes": null, + "holey": null, + "holiday": [["G", "R", "D", "M", "S"]], + "holidaying": null, + "holidayer": null, + "holidayed": null, + "holiday's": null, + "holidays": null, + "Holiday": [["M"]], + "Holiday's": null, + "holidaymaker": [["S"]], + "holidaymakers": null, + "holier": [["U"]], + "unholier": null, + "Holiness": [["M", "S"]], + "Holiness's": null, + "Holinesses": null, + "holiness": [["M", "S", "U"]], + "holiness's": null, + "unholiness's": null, + "holinesses": null, + "unholinesses": null, + "unholiness": null, + "holistic": null, + "holistically": null, + "hollandaise": null, + "Hollandaise": [["M"]], + "Hollandaise's": null, + "Hollander": [["M"]], + "Hollander's": null, + "Holland": [["R", "M", "S", "Z"]], + "Holland's": null, + "Hollands": null, + "Hollanders": null, + "holler": [["G", "D", "S"]], + "hollering": null, + "hollered": null, + "hollers": null, + "Hollerith": [["M"]], + "Hollerith's": null, + "Holley": [["M"]], + "Holley's": null, + "Hollie": [["M"]], + "Hollie's": null, + "Holli": [["S", "M"]], + "Hollis": null, + "Holli's": null, + "Hollister": [["M"]], + "Hollister's": null, + "Holloway": [["M"]], + "Holloway's": null, + "hollowness": [["M", "S"]], + "hollowness's": null, + "hollownesses": null, + "hollow": [["R", "D", "Y", "T", "G", "S", "P"]], + "hollower": null, + "hollowed": null, + "hollowly": null, + "hollowest": null, + "hollowing": null, + "hollows": null, + "hollowware": [["M"]], + "hollowware's": null, + "Hollyanne": [["M"]], + "Hollyanne's": null, + "hollyhock": [["M", "S"]], + "hollyhock's": null, + "hollyhocks": null, + "Holly": [["M"]], + "Holly's": null, + "holly": [["S", "M"]], + "hollies": null, + "holly's": null, + "Hollywood": [["M"]], + "Hollywood's": null, + "Holman": [["M"]], + "Holman's": null, + "Holmes": null, + "holmium": [["M", "S"]], + "holmium's": null, + "holmiums": null, + "Holm": [["M"]], + "Holm's": null, + "Holocaust": null, + "holocaust": [["M", "S"]], + "holocaust's": null, + "holocausts": null, + "Holocene": null, + "hologram": [["S", "M"]], + "holograms": null, + "hologram's": null, + "holograph": [["G", "M", "D"]], + "holographing": null, + "holograph's": null, + "holographed": null, + "holographic": null, + "holographs": null, + "holography": [["M", "S"]], + "holography's": null, + "holographies": null, + "Holstein": [["M", "S"]], + "Holstein's": null, + "Holsteins": null, + "holster": [["M", "D", "S", "G"]], + "holster's": null, + "holstered": null, + "holsters": null, + "holstering": null, + "Holst": [["M"]], + "Holst's": null, + "Holt": [["M"]], + "Holt's": null, + "Holyoke": [["M"]], + "Holyoke's": null, + "holies": null, + "holiest": null, + "holystone": [["M", "S"]], + "holystone's": null, + "holystones": null, + "Holzman": [["M"]], + "Holzman's": null, + "Ho": [["M"]], + "Ho's": null, + "homage": [["M", "G", "S", "R", "D"]], + "homage's": null, + "homaging": null, + "homages": null, + "homager": [["M"]], + "homaged": null, + "homager's": null, + "hombre": [["S", "M"]], + "hombres": null, + "hombre's": null, + "homburg": [["S", "M"]], + "homburgs": null, + "homburg's": null, + "homebody": [["M", "S"]], + "homebody's": null, + "homebodies": null, + "homebound": null, + "homeboy": [["S"]], + "homeboys": null, + "homebuilder": [["S"]], + "homebuilders": null, + "homebuilding": null, + "homebuilt": null, + "homecoming": [["M", "S"]], + "homecoming's": null, + "homecomings": null, + "home": [["D", "S", "R", "M", "Y", "Z", "G"]], + "homed": null, + "homes": null, + "homer": [["G", "D", "M"]], + "home's": null, + "homely": [["R", "P", "T"]], + "homers": null, + "homing": [["M"]], + "homegrown": null, + "homeland": [["S", "M"]], + "homelands": null, + "homeland's": null, + "homelessness": [["S", "M"]], + "homelessnesses": null, + "homelessness's": null, + "homeless": [["P"]], + "homelike": null, + "homeliness": [["S", "M"]], + "homelinesses": null, + "homeliness's": null, + "homelier": null, + "homeliest": null, + "homemade": null, + "homemake": [["J", "R", "Z", "G"]], + "homemakings": null, + "homemaker": [["M"]], + "homemakers": null, + "homemaking": [["M"]], + "homemaker's": null, + "homemaking's": null, + "homeomorphic": null, + "homeomorphism": [["M", "S"]], + "homeomorphism's": null, + "homeomorphisms": null, + "homeomorph": [["M"]], + "homeomorph's": null, + "homeopath": null, + "homeopathic": null, + "homeopaths": null, + "homeopathy": [["M", "S"]], + "homeopathy's": null, + "homeopathies": null, + "homeostases": null, + "homeostasis": [["M"]], + "homeostasis's": null, + "homeostatic": null, + "homeowner": [["S"]], + "homeowners": null, + "homeownership": null, + "homepage": null, + "Homere": [["M"]], + "Homere's": null, + "homering": null, + "homered": null, + "homer's": null, + "Homeric": null, + "homerists": null, + "Homer": [["M"]], + "Homer's": null, + "homeroom": [["M", "S"]], + "homeroom's": null, + "homerooms": null, + "Homerus": [["M"]], + "Homerus's": null, + "homeschooling": [["S"]], + "homeschoolings": null, + "homesickness": [["M", "S"]], + "homesickness's": null, + "homesicknesses": null, + "homesick": [["P"]], + "homespun": [["S"]], + "homespuns": null, + "homesteader": [["M"]], + "homesteader's": null, + "homestead": [["G", "Z", "S", "R", "D", "M"]], + "homesteading": null, + "homesteaders": null, + "homesteads": null, + "homesteaded": null, + "homestead's": null, + "homestretch": [["S", "M"]], + "homestretches": null, + "homestretch's": null, + "hometown": [["S", "M"]], + "hometowns": null, + "hometown's": null, + "homeward": null, + "homeworker": [["M"]], + "homeworker's": null, + "homework": [["Z", "S", "M", "R"]], + "homeworkers": null, + "homeworks": null, + "homework's": null, + "homeyness": [["M", "S"]], + "homeyness's": null, + "homeynesses": null, + "homey": [["P", "S"]], + "homeys": null, + "homicidal": [["Y"]], + "homicidally": null, + "homicide": [["S", "M"]], + "homicides": null, + "homicide's": null, + "homier": null, + "homiest": null, + "homiletic": [["S"]], + "homiletics": null, + "homily": [["S", "M"]], + "homilies": null, + "homily's": null, + "hominess's": null, + "homing's": null, + "hominid": [["M", "S"]], + "hominid's": null, + "hominids": null, + "hominy": [["S", "M"]], + "hominies": null, + "hominy's": null, + "Hom": [["M", "R"]], + "Hom's": null, + "homogamy": [["M"]], + "homogamy's": null, + "homogenate": [["M", "S"]], + "homogenate's": null, + "homogenates": null, + "homogeneity": [["I", "S", "M"]], + "inhomogeneity": null, + "inhomogeneities": null, + "inhomogeneity's": null, + "homogeneities": null, + "homogeneity's": null, + "homogeneous": [["P", "Y"]], + "homogeneousness": null, + "homogeneously": null, + "homogenization": [["M", "S"]], + "homogenization's": null, + "homogenizations": null, + "homogenize": [["D", "R", "S", "G", "Z"]], + "homogenized": null, + "homogenizer": [["M"]], + "homogenizes": null, + "homogenizing": null, + "homogenizers": null, + "homogenizer's": null, + "homograph": [["M"]], + "homograph's": null, + "homographs": null, + "homological": null, + "homologous": null, + "homologue": [["M"]], + "homologue's": null, + "homology": [["M", "S"]], + "homology's": null, + "homologies": null, + "homomorphic": null, + "homomorphism": [["S", "M"]], + "homomorphisms": null, + "homomorphism's": null, + "homonym": [["S", "M"]], + "homonyms": null, + "homonym's": null, + "homophobia": [["S"]], + "homophobias": null, + "homophobic": null, + "homophone": [["M", "S"]], + "homophone's": null, + "homophones": null, + "homopolymers": null, + "homosexuality": [["S", "M"]], + "homosexualities": null, + "homosexuality's": null, + "homosexual": [["Y", "M", "S"]], + "homosexually": null, + "homosexual's": null, + "homosexuals": null, + "homo": [["S", "M"]], + "homos": null, + "homo's": null, + "homotopy": null, + "homozygous": [["Y"]], + "homozygously": null, + "honcho": [["D", "S", "G"]], + "honchoed": null, + "honchos": null, + "honchoing": null, + "Honda": [["M"]], + "Honda's": null, + "Hondo": [["M"]], + "Hondo's": null, + "Honduran": [["S"]], + "Hondurans": null, + "Honduras": [["M"]], + "Honduras's": null, + "Honecker": [["M"]], + "Honecker's": null, + "hone": [["S", "M"]], + "hones": null, + "hone's": null, + "honestly": [["E"]], + "dishonestly": null, + "honest": [["R", "Y", "T"]], + "honester": null, + "honestest": null, + "honesty": [["E", "S", "M"]], + "dishonesty": null, + "dishonesties": null, + "dishonesty's": null, + "honesties": null, + "honesty's": null, + "honeybee": [["S", "M"]], + "honeybees": null, + "honeybee's": null, + "honeycomb": [["S", "D", "M", "G"]], + "honeycombs": null, + "honeycombed": null, + "honeycomb's": null, + "honeycombing": null, + "honeydew": [["S", "M"]], + "honeydews": null, + "honeydew's": null, + "honey": [["G", "S", "M", "D"]], + "honeying": null, + "honeys": null, + "honey's": null, + "honeyed": null, + "honeylocust": null, + "Honey": [["M"]], + "Honey's": null, + "honeymooner": [["M"]], + "honeymooner's": null, + "honeymoon": [["R", "D", "M", "G", "Z", "S"]], + "honeymooned": null, + "honeymoon's": null, + "honeymooning": null, + "honeymooners": null, + "honeymoons": null, + "honeysuckle": [["M", "S"]], + "honeysuckle's": null, + "honeysuckles": null, + "Honeywell": [["M"]], + "Honeywell's": null, + "hong": [["M"]], + "hong's": null, + "Honiara": [["M"]], + "Honiara's": null, + "honker": [["M"]], + "honker's": null, + "honk": [["G", "Z", "S", "D", "R", "M"]], + "honking": null, + "honkers": null, + "honks": null, + "honked": null, + "honk's": null, + "honky": [["S", "M"]], + "honkies": null, + "honky's": null, + "Hon": [["M"]], + "Hon's": null, + "hon": [["M", "D", "R", "S", "Z", "T", "G"]], + "hon's": null, + "honed": null, + "honer": null, + "hons": null, + "honers": null, + "honing": null, + "Honolulu": [["M"]], + "Honolulu's": null, + "honorableness": [["S", "M"]], + "honorablenesses": null, + "honorableness's": null, + "honorable": [["P", "S", "M"]], + "honorables": [["U"]], + "honorable's": null, + "unhonorables": null, + "honorablies": [["U"]], + "unhonorablies": null, + "honorably": [["U", "E"]], + "unhonorably": null, + "dishonorably": null, + "honorarily": null, + "honorarium": [["S", "M"]], + "honorariums": null, + "honorarium's": null, + "honorary": [["S"]], + "honoraries": null, + "honored": [["U"]], + "unhonored": null, + "honoree": [["S"]], + "honorees": null, + "honor": [["E", "R", "D", "B", "Z", "G", "S"]], + "dishonor": null, + "dishonorer": null, + "dishonorable": null, + "dishonorers": null, + "dishonoring": null, + "dishonors": null, + "honorer": [["E", "M"]], + "honorers": null, + "honoring": null, + "honors": [["A"]], + "dishonorer's": null, + "honorer's": null, + "Honoria": [["M"]], + "Honoria's": null, + "honorific": [["S"]], + "honorifics": null, + "Honor": [["M"]], + "Honor's": null, + "honor's": null, + "rehonors": null, + "Honshu": [["M"]], + "Honshu's": null, + "hooch": [["M", "S"]], + "hooch's": null, + "hooches": null, + "hoodedness": [["M"]], + "hoodedness's": null, + "hooded": [["P"]], + "hoodlum": [["S", "M"]], + "hoodlums": null, + "hoodlum's": null, + "Hood": [["M"]], + "Hood's": null, + "hood": [["M", "D", "S", "G"]], + "hood's": null, + "hoods": null, + "hooding": null, + "hoodoo": [["D", "M", "G", "S"]], + "hoodooed": null, + "hoodoo's": null, + "hoodooing": null, + "hoodoos": null, + "hoodwinker": [["M"]], + "hoodwinker's": null, + "hoodwink": [["S", "R", "D", "G"]], + "hoodwinks": null, + "hoodwinked": null, + "hoodwinking": null, + "hooey": [["S", "M"]], + "hooeys": null, + "hooey's": null, + "hoof": [["D", "R", "M", "S", "G"]], + "hoofed": null, + "hoofer": [["M"]], + "hoof's": null, + "hoofs": null, + "hoofing": null, + "hoofer's": null, + "hoofmark": [["S"]], + "hoofmarks": null, + "hookah": [["M"]], + "hookah's": null, + "hookahs": null, + "hookedness": [["M"]], + "hookedness's": null, + "hooked": [["P"]], + "Hooke": [["M", "R"]], + "Hooke's": null, + "Hooker": [["M"]], + "hooker": [["M"]], + "hooker's": null, + "Hooker's": null, + "hookey's": null, + "hook": [["G", "Z", "D", "R", "M", "S"]], + "hooking": null, + "hookers": null, + "hook's": null, + "hooks": [["U"]], + "unhooks": null, + "hookup": [["S", "M"]], + "hookups": null, + "hookup's": null, + "hookworm": [["M", "S"]], + "hookworm's": null, + "hookworms": null, + "hooky": [["S", "R", "M", "T"]], + "hookies": null, + "hookier": null, + "hooky's": null, + "hookiest": null, + "hooliganism": [["S", "M"]], + "hooliganisms": null, + "hooliganism's": null, + "hooligan": [["S", "M"]], + "hooligans": null, + "hooligan's": null, + "hooper": [["M"]], + "hooper's": null, + "Hooper": [["M"]], + "Hooper's": null, + "hoopla": [["S", "M"]], + "hooplas": null, + "hoopla's": null, + "hoop": [["M", "D", "R", "S", "G"]], + "hoop's": null, + "hooped": null, + "hoops": null, + "hooping": null, + "hooray": [["S", "M", "D", "G"]], + "hoorays": null, + "hooray's": null, + "hoorayed": null, + "hooraying": null, + "hoosegow": [["M", "S"]], + "hoosegow's": null, + "hoosegows": null, + "Hoosier": [["S", "M"]], + "Hoosiers": null, + "Hoosier's": null, + "hootch's": null, + "hootenanny": [["S", "M"]], + "hootenannies": null, + "hootenanny's": null, + "hooter": [["M"]], + "hooter's": null, + "hoot": [["M", "D", "R", "S", "G", "Z"]], + "hoot's": null, + "hooted": null, + "hoots": null, + "hooting": null, + "hooters": null, + "Hoover": [["M", "S"]], + "Hoover's": null, + "Hoovers": null, + "hooves": [["M"]], + "hooves's": null, + "hoped": [["U"]], + "unhoped": null, + "hopefulness": [["M", "S"]], + "hopefulness's": null, + "hopefulnesses": null, + "hopeful": [["S", "P", "Y"]], + "hopefuls": null, + "hopefully": null, + "hopelessness": [["S", "M"]], + "hopelessnesses": null, + "hopelessness's": null, + "hopeless": [["Y", "P"]], + "hopelessly": null, + "Hope": [["M"]], + "Hope's": null, + "hoper": [["M"]], + "hoper's": null, + "hope": [["S", "M"]], + "hopes": null, + "hope's": null, + "Hopewell": [["M"]], + "Hopewell's": null, + "Hopi": [["S", "M"]], + "Hopis": null, + "Hopi's": null, + "Hopkinsian": [["M"]], + "Hopkinsian's": null, + "Hopkins": [["M"]], + "Hopkins's": null, + "hopped": null, + "Hopper": [["M"]], + "Hopper's": null, + "hopper": [["M", "S"]], + "hopper's": null, + "hoppers": null, + "hopping": [["M"]], + "hopping's": null, + "hoppled": null, + "hopples": null, + "hopscotch": [["M", "D", "S", "G"]], + "hopscotch's": null, + "hopscotched": null, + "hopscotches": null, + "hopscotching": null, + "hop": [["S", "M", "D", "R", "G"]], + "hops": null, + "hop's": null, + "hoping": null, + "Horace": [["M"]], + "Horace's": null, + "Horacio": [["M"]], + "Horacio's": null, + "Horatia": [["M"]], + "Horatia's": null, + "Horatio": [["M"]], + "Horatio's": null, + "Horatius": [["M"]], + "Horatius's": null, + "horde": [["D", "S", "G", "M"]], + "horded": null, + "hordes": null, + "hording": null, + "horde's": null, + "horehound": [["M", "S"]], + "horehound's": null, + "horehounds": null, + "horizon": [["M", "S"]], + "horizon's": null, + "horizons": null, + "horizontal": [["Y", "S"]], + "horizontally": null, + "horizontals": null, + "Hormel": [["M"]], + "Hormel's": null, + "hormonal": [["Y"]], + "hormonally": null, + "hormone": [["M", "S"]], + "hormone's": null, + "hormones": null, + "Hormuz": [["M"]], + "Hormuz's": null, + "hornbeam": [["M"]], + "hornbeam's": null, + "hornblende": [["M", "S"]], + "hornblende's": null, + "hornblendes": null, + "Hornblower": [["M"]], + "Hornblower's": null, + "hornedness": [["M"]], + "hornedness's": null, + "horned": [["P"]], + "Horne": [["M"]], + "Horne's": null, + "hornet": [["M", "S"]], + "hornet's": null, + "hornets": null, + "horn": [["G", "D", "R", "M", "S"]], + "horning": null, + "horner": null, + "horn's": null, + "horns": null, + "horniness": [["M"]], + "horniness's": null, + "hornless": null, + "hornlike": null, + "Horn": [["M"]], + "Horn's": null, + "hornpipe": [["M", "S"]], + "hornpipe's": null, + "hornpipes": null, + "horny": [["T", "R", "P"]], + "horniest": null, + "hornier": null, + "horologic": null, + "horological": null, + "horologist": [["M", "S"]], + "horologist's": null, + "horologists": null, + "horology": [["M", "S"]], + "horology's": null, + "horologies": null, + "horoscope": [["M", "S"]], + "horoscope's": null, + "horoscopes": null, + "Horowitz": [["M"]], + "Horowitz's": null, + "horrendous": [["Y"]], + "horrendously": null, + "horribleness": [["S", "M"]], + "horriblenesses": null, + "horribleness's": null, + "horrible": [["S", "P"]], + "horribles": null, + "horribly": null, + "horridness": [["M"]], + "horridness's": null, + "horrid": [["P", "Y"]], + "horridly": null, + "horrific": null, + "horrifically": null, + "horrify": [["D", "S", "G"]], + "horrified": null, + "horrifies": null, + "horrifying": [["Y"]], + "horrifyingly": null, + "horror": [["M", "S"]], + "horror's": null, + "horrors": null, + "hors": [["D", "S", "G", "X"]], + "horsed": null, + "horses": null, + "horsing": [["M"]], + "horsens": null, + "horseback": [["M", "S"]], + "horseback's": null, + "horsebacks": null, + "horsedom": null, + "horseflesh": [["M"]], + "horseflesh's": null, + "horsefly": [["M", "S"]], + "horsefly's": null, + "horseflies": null, + "horsehair": [["S", "M"]], + "horsehairs": null, + "horsehair's": null, + "horsehide": [["S", "M"]], + "horsehides": null, + "horsehide's": null, + "horselaugh": [["M"]], + "horselaugh's": null, + "horselaughs": null, + "horseless": null, + "horselike": null, + "horsely": null, + "horseman": [["M"]], + "horseman's": null, + "horsemanship": [["M", "S"]], + "horsemanship's": null, + "horsemanships": null, + "horsemen": null, + "horseplayer": [["M"]], + "horseplayer's": null, + "horseplay": [["S", "M", "R"]], + "horseplays": null, + "horseplay's": null, + "horsepower": [["S", "M"]], + "horsepowers": null, + "horsepower's": null, + "horseradish": [["S", "M"]], + "horseradishes": null, + "horseradish's": null, + "horse's": null, + "horseshoeing": null, + "horseshoe": [["M", "R", "S", "D"]], + "horseshoe's": null, + "horseshoer": [["M"]], + "horseshoes": null, + "horseshoed": null, + "horseshoer's": null, + "horsetail": [["S", "M"]], + "horsetails": null, + "horsetail's": null, + "horse": [["U", "G", "D", "S"]], + "unhorse": null, + "unhorsing": null, + "unhorsed": null, + "unhorses": null, + "horsewhipped": null, + "horsewhipping": null, + "horsewhip": [["S", "M"]], + "horsewhips": null, + "horsewhip's": null, + "horsewoman": [["M"]], + "horsewoman's": null, + "horsewomen": null, + "horsey": null, + "horsier": null, + "horsiest": null, + "horsing's": null, + "Horst": [["M"]], + "Horst's": null, + "hortatory": null, + "Horten": [["M"]], + "Horten's": null, + "Hortense": [["M"]], + "Hortense's": null, + "Hortensia": [["M"]], + "Hortensia's": null, + "horticultural": null, + "horticulture": [["S", "M"]], + "horticultures": null, + "horticulture's": null, + "horticulturist": [["S", "M"]], + "horticulturists": null, + "horticulturist's": null, + "Hort": [["M", "N"]], + "Hort's": null, + "Horton": [["M"]], + "Horton's": null, + "Horus": [["M"]], + "Horus's": null, + "hosanna": [["S", "D", "G"]], + "hosannas": null, + "hosannaed": null, + "hosannaing": null, + "Hosea": [["M"]], + "Hosea's": null, + "hose": [["M"]], + "hose's": null, + "hosepipe": null, + "hos": [["G", "D", "S"]], + "hosing": null, + "hosed": null, + "hoses": null, + "hosier": [["M", "S"]], + "hosier's": null, + "hosiers": null, + "hosiery": [["S", "M"]], + "hosieries": null, + "hosiery's": null, + "hosp": null, + "hospice": [["M", "S"]], + "hospice's": null, + "hospices": null, + "hospitable": [["I"]], + "inhospitable": [["P"]], + "hospitably": [["I"]], + "inhospitably": null, + "hospitality": [["M", "S"]], + "hospitality's": [["I"]], + "hospitalities": null, + "inhospitality's": null, + "hospitalization": [["M", "S"]], + "hospitalization's": null, + "hospitalizations": null, + "hospitalize": [["G", "S", "D"]], + "hospitalizing": null, + "hospitalizes": null, + "hospitalized": null, + "hospital": [["M", "S"]], + "hospital's": null, + "hospitals": null, + "hostage": [["M", "S"]], + "hostage's": null, + "hostages": null, + "hosteler": [["M"]], + "hosteler's": null, + "hostelry": [["M", "S"]], + "hostelry's": null, + "hostelries": null, + "hostel": [["S", "Z", "G", "M", "R", "D"]], + "hostels": null, + "hostelers": null, + "hosteling": null, + "hostel's": null, + "hosteled": null, + "hostess": [["M", "D", "S", "G"]], + "hostess's": null, + "hostessed": null, + "hostesses": null, + "hostessing": null, + "hostile": [["Y", "S"]], + "hostilely": null, + "hostiles": null, + "hostility": [["S", "M"]], + "hostilities": null, + "hostility's": null, + "hostler": [["M", "S"]], + "hostler's": null, + "hostlers": null, + "Host": [["M", "S"]], + "Host's": null, + "Hosts": null, + "host": [["M", "Y", "D", "G", "S"]], + "host's": null, + "hostly": null, + "hosted": null, + "hosting": null, + "hosts": null, + "hotbed": [["M", "S"]], + "hotbed's": null, + "hotbeds": null, + "hotblooded": null, + "hotbox": [["M", "S"]], + "hotbox's": null, + "hotboxes": null, + "hotcake": [["S"]], + "hotcakes": null, + "hotchpotch": [["M"]], + "hotchpotch's": null, + "hotelier": [["M", "S"]], + "hotelier's": null, + "hoteliers": null, + "hotelman": [["M"]], + "hotelman's": null, + "hotel": [["M", "S"]], + "hotel's": null, + "hotels": null, + "hotfoot": [["D", "G", "S"]], + "hotfooted": null, + "hotfooting": null, + "hotfoots": null, + "hothead": [["D", "M", "S"]], + "hotheaded": [["P", "Y"]], + "hothead's": null, + "hotheads": null, + "hotheadedness": [["S", "M"]], + "hotheadednesses": null, + "hotheadedness's": null, + "hotheadedly": null, + "hothouse": [["M", "G", "D", "S"]], + "hothouse's": null, + "hothousing": null, + "hothoused": null, + "hothouses": null, + "hotness": [["M", "S"]], + "hotness's": null, + "hotnesses": null, + "hotplate": [["S", "M"]], + "hotplates": null, + "hotplate's": null, + "hotpot": [["M"]], + "hotpot's": null, + "hot": [["P", "S", "Y"]], + "hots": null, + "hotly": null, + "hotrod": null, + "hotshot": [["S"]], + "hotshots": null, + "hotted": null, + "Hottentot": [["S", "M"]], + "Hottentots": null, + "Hottentot's": null, + "hotter": null, + "hottest": null, + "hotting": null, + "Houdaille": [["M"]], + "Houdaille's": null, + "Houdini": [["M"]], + "Houdini's": null, + "hough": [["M"]], + "hough's": null, + "hounder": [["M"]], + "hounder's": null, + "hounding": [["M"]], + "hounding's": null, + "hound": [["M", "R", "D", "S", "G"]], + "hound's": null, + "hounded": null, + "hounds": null, + "hourglass": [["M", "S"]], + "hourglass's": null, + "hourglasses": null, + "houri": [["M", "S"]], + "houri's": null, + "houris": null, + "hourly": [["S"]], + "hourlies": null, + "hour": [["Y", "M", "S"]], + "hour's": null, + "hours": null, + "house": [["A", "S", "D", "G"]], + "rehouse": null, + "rehouses": null, + "rehoused": null, + "rehousing": null, + "houses": null, + "housed": null, + "housing": [["M", "S"]], + "houseboat": [["S", "M"]], + "houseboats": null, + "houseboat's": null, + "housebound": null, + "houseboy": [["S", "M"]], + "houseboys": null, + "houseboy's": null, + "housebreaker": [["M"]], + "housebreaker's": null, + "housebreaking": [["M"]], + "housebreaking's": null, + "housebreak": [["J", "S", "R", "Z", "G"]], + "housebreakings": null, + "housebreaks": null, + "housebreakers": null, + "housebroke": null, + "housebroken": null, + "housebuilding": null, + "housecleaning": [["M"]], + "housecleaning's": null, + "houseclean": [["J", "D", "S", "G"]], + "housecleanings": null, + "housecleaned": null, + "housecleans": null, + "housecoat": [["M", "S"]], + "housecoat's": null, + "housecoats": null, + "housefly": [["M", "S"]], + "housefly's": null, + "houseflies": null, + "houseful": [["S", "M"]], + "housefuls": null, + "houseful's": null, + "householder": [["M"]], + "householder's": null, + "household": [["Z", "R", "M", "S"]], + "householders": null, + "household's": null, + "households": null, + "househusband": [["S"]], + "househusbands": null, + "housekeeper": [["M"]], + "housekeeper's": null, + "housekeeping": [["M"]], + "housekeeping's": null, + "housekeep": [["J", "R", "G", "Z"]], + "housekeepings": null, + "housekeepers": null, + "houselights": null, + "House": [["M"]], + "House's": null, + "housemaid": [["M", "S"]], + "housemaid's": null, + "housemaids": null, + "houseman": [["M"]], + "houseman's": null, + "housemen": null, + "housemother": [["M", "S"]], + "housemother's": null, + "housemothers": null, + "housemoving": null, + "houseparent": [["S", "M"]], + "houseparents": null, + "houseparent's": null, + "houseplant": [["S"]], + "houseplants": null, + "houser": null, + "house's": null, + "housetop": [["M", "S"]], + "housetop's": null, + "housetops": null, + "housewares": null, + "housewarming": [["M", "S"]], + "housewarming's": null, + "housewarmings": null, + "housewifeliness": [["M"]], + "housewifeliness's": null, + "housewifely": [["P"]], + "housewife": [["Y", "M"]], + "housewife's": null, + "housewives": null, + "houseworker": [["M"]], + "houseworker's": null, + "housework": [["Z", "S", "M", "R"]], + "houseworkers": null, + "houseworks": null, + "housework's": null, + "housing's": null, + "housings": null, + "Housman": [["M"]], + "Housman's": null, + "Houston": [["M"]], + "Houston's": null, + "Houyhnhnm": [["M"]], + "Houyhnhnm's": null, + "HOV": null, + "hovel": [["G", "S", "M", "D"]], + "hoveling": null, + "hovels": null, + "hovel's": null, + "hoveled": null, + "hovercraft": [["M"]], + "hovercraft's": null, + "hoverer": [["M"]], + "hoverer's": null, + "hover": [["G", "R", "D"]], + "hovering": null, + "hovered": null, + "hove": [["Z", "R"]], + "hovers": null, + "Howard": [["M"]], + "Howard's": null, + "howbeit": null, + "howdah": [["M"]], + "howdah's": null, + "howdahs": null, + "howdy": [["G", "S", "D"]], + "howdying": null, + "howdies": null, + "howdied": null, + "Howell": [["M", "S"]], + "Howell's": null, + "Howells": null, + "Howe": [["M"]], + "Howe's": null, + "however": null, + "Howey": [["M"]], + "Howey's": null, + "Howie": [["M"]], + "Howie's": null, + "howitzer": [["M", "S"]], + "howitzer's": null, + "howitzers": null, + "howler": [["M"]], + "howler's": null, + "howl": [["G", "Z", "S", "M", "D", "R"]], + "howling": null, + "howlers": null, + "howls": null, + "howl's": null, + "howled": null, + "Howrah": [["M"]], + "Howrah's": null, + "how": [["S", "M"]], + "hows": null, + "how's": null, + "howsoever": null, + "hoyden": [["D", "M", "G", "S"]], + "hoydened": null, + "hoyden's": null, + "hoydening": null, + "hoydens": null, + "hoydenish": null, + "Hoyle": [["S", "M"]], + "Hoyles": null, + "Hoyle's": null, + "hoy": [["M"]], + "hoy's": null, + "Hoyt": [["M"]], + "Hoyt's": null, + "hp": null, + "HP": null, + "HQ": null, + "hr": null, + "HR": null, + "HRH": null, + "Hrothgar": [["M"]], + "Hrothgar's": null, + "hrs": null, + "H's": null, + "HS": null, + "HST": null, + "ht": null, + "HTML": null, + "Hts": [["M"]], + "Hts's": null, + "HTTP": null, + "Huang": [["M"]], + "Huang's": null, + "huarache": [["S", "M"]], + "huaraches": null, + "huarache's": null, + "hubba": null, + "Hubbard": [["M"]], + "Hubbard's": null, + "Hubble": [["M"]], + "Hubble's": null, + "hubbub": [["S", "M"]], + "hubbubs": null, + "hubbub's": null, + "hubby": [["S", "M"]], + "hubbies": null, + "hubby's": null, + "hubcap": [["S", "M"]], + "hubcaps": null, + "hubcap's": null, + "Huber": [["M"]], + "Huber's": null, + "Hube": [["R", "M"]], + "Hube's": null, + "Hubert": [["M"]], + "Hubert's": null, + "Huberto": [["M"]], + "Huberto's": null, + "Hubey": [["M"]], + "Hubey's": null, + "Hubie": [["M"]], + "Hubie's": null, + "hub": [["M", "S"]], + "hub's": null, + "hubs": null, + "hubris": [["S", "M"]], + "hubrises": null, + "hubris's": null, + "huckleberry": [["S", "M"]], + "huckleberries": null, + "huckleberry's": null, + "Huck": [["M"]], + "Huck's": null, + "huckster": [["S", "G", "M", "D"]], + "hucksters": null, + "huckstering": null, + "huckster's": null, + "huckstered": null, + "HUD": null, + "Huddersfield": [["M"]], + "Huddersfield's": null, + "huddler": [["M"]], + "huddler's": null, + "huddle": [["R", "S", "D", "M", "G"]], + "huddles": null, + "huddled": null, + "huddle's": null, + "huddling": null, + "Hudson": [["M"]], + "Hudson's": null, + "hue": [["M", "D", "S"]], + "hue's": null, + "hued": null, + "hues": null, + "Huerta": [["M"]], + "Huerta's": null, + "Huey": [["M"]], + "Huey's": null, + "huffily": null, + "huffiness": [["S", "M"]], + "huffinesses": null, + "huffiness's": null, + "Huff": [["M"]], + "Huff's": null, + "Huffman": [["M"]], + "Huffman's": null, + "huff": [["S", "G", "D", "M"]], + "huffs": null, + "huffing": null, + "huffed": null, + "huff's": null, + "huffy": [["T", "R", "P"]], + "huffiest": null, + "huffier": null, + "hugeness": [["M", "S"]], + "hugeness's": null, + "hugenesses": null, + "huge": [["Y", "P"]], + "hugely": null, + "hugged": null, + "hugger": null, + "hugging": [["S"]], + "huggings": null, + "Huggins": null, + "Hughie": [["M"]], + "Hughie's": null, + "Hugh": [["M", "S"]], + "Hugh's": null, + "Hughes": null, + "Hugibert": [["M"]], + "Hugibert's": null, + "Hugo": [["M"]], + "Hugo's": null, + "hug": [["R", "T", "S"]], + "huger": null, + "hugest": null, + "hugs": null, + "Huguenot": [["S", "M"]], + "Huguenots": null, + "Huguenot's": null, + "Hugues": [["M"]], + "Hugues's": null, + "huh": null, + "huhs": null, + "Hui": [["M"]], + "Hui's": null, + "Huitzilopitchli": [["M"]], + "Huitzilopitchli's": null, + "hula": [["M", "D", "S", "G"]], + "hula's": null, + "hulaed": null, + "hulas": null, + "hulaing": null, + "Hulda": [["M"]], + "Hulda's": null, + "hulk": [["G", "D", "M", "S"]], + "hulking": null, + "hulked": null, + "hulk's": null, + "hulks": null, + "hullabaloo": [["S", "M"]], + "hullabaloos": null, + "hullabaloo's": null, + "huller": [["M"]], + "huller's": null, + "hulling": [["M"]], + "hulling's": null, + "Hull": [["M"]], + "Hull's": null, + "hull": [["M", "D", "R", "G", "Z", "S"]], + "hull's": null, + "hulled": null, + "hullers": null, + "hulls": null, + "hullo": [["G", "S", "D", "M"]], + "hulloing": null, + "hullos": null, + "hulloed": null, + "hullo's": null, + "humane": [["I", "Y"]], + "inhumane": null, + "inhumanely": null, + "humanely": null, + "humaneness": [["S", "M"]], + "humanenesses": null, + "humaneness's": null, + "humaner": null, + "humanest": null, + "human": [["I", "P", "Y"]], + "inhuman": null, + "inhumanness": null, + "inhumanly": null, + "humanness": [["I", "M"]], + "humanly": null, + "humanism": [["S", "M"]], + "humanisms": null, + "humanism's": null, + "humanistic": null, + "humanist": [["S", "M"]], + "humanists": null, + "humanist's": null, + "humanitarianism": [["S", "M"]], + "humanitarianisms": null, + "humanitarianism's": null, + "humanitarian": [["S"]], + "humanitarians": null, + "humanity": [["I", "S", "M"]], + "inhumanity": null, + "inhumanities": null, + "inhumanity's": null, + "humanities": null, + "humanity's": null, + "humanization": [["C", "S", "M"]], + "dehumanization": null, + "dehumanizations": null, + "dehumanization's": null, + "humanizations": null, + "humanization's": null, + "humanized": [["C"]], + "dehumanized": null, + "humanizer": [["M"]], + "humanizer's": null, + "humanize": [["R", "S", "D", "Z", "G"]], + "humanizes": [["I", "A", "C"]], + "humanizers": null, + "humanizing": [["C"]], + "inhumanizes": null, + "rehumanizes": null, + "dehumanizes": null, + "dehumanizing": null, + "humankind": [["M"]], + "humankind's": null, + "humannesses": null, + "inhumanness's": null, + "humanness's": null, + "humanoid": [["S"]], + "humanoids": null, + "humans": null, + "Humbert": [["M"]], + "Humbert's": null, + "Humberto": [["M"]], + "Humberto's": null, + "humbleness": [["S", "M"]], + "humblenesses": null, + "humbleness's": null, + "humble": [["T", "Z", "G", "P", "R", "S", "D", "J"]], + "humblest": null, + "humblers": null, + "humbling": null, + "humbler": null, + "humbles": null, + "humbled": null, + "humblings": null, + "humbly": null, + "Humboldt": [["M"]], + "Humboldt's": null, + "humbugged": null, + "humbugging": null, + "humbug": [["M", "S"]], + "humbug's": null, + "humbugs": null, + "humdinger": [["M", "S"]], + "humdinger's": null, + "humdingers": null, + "humdrum": [["S"]], + "humdrums": null, + "Hume": [["M"]], + "Hume's": null, + "humeral": [["S"]], + "humerals": null, + "humeri": null, + "humerus": [["M"]], + "humerus's": null, + "Humfrey": [["M"]], + "Humfrey's": null, + "Humfrid": [["M"]], + "Humfrid's": null, + "Humfried": [["M"]], + "Humfried's": null, + "humidification": [["M", "C"]], + "humidification's": null, + "dehumidification's": null, + "dehumidification": null, + "humidifier": [["C", "M"]], + "dehumidifier": null, + "dehumidifier's": null, + "humidifier's": null, + "humidify": [["R", "S", "D", "C", "X", "G", "N", "Z"]], + "humidifies": null, + "dehumidifies": null, + "humidified": null, + "dehumidified": null, + "dehumidify": null, + "dehumidifications": null, + "dehumidifying": null, + "dehumidifiers": null, + "humidifications": null, + "humidifying": null, + "humidifiers": null, + "humidistat": [["M"]], + "humidistat's": null, + "humidity": [["M", "S"]], + "humidity's": null, + "humidities": null, + "humidor": [["M", "S"]], + "humidor's": null, + "humidors": null, + "humid": [["Y"]], + "humidly": null, + "humiliate": [["S", "D", "X", "N", "G"]], + "humiliates": null, + "humiliated": null, + "humiliations": null, + "humiliation": [["M"]], + "humiliating": [["Y"]], + "humiliatingly": null, + "humiliation's": null, + "humility": [["M", "S"]], + "humility's": null, + "humilities": null, + "hummed": null, + "Hummel": [["M"]], + "Hummel's": null, + "hummer": [["S", "M"]], + "hummers": null, + "hummer's": null, + "humming": null, + "hummingbird": [["S", "M"]], + "hummingbirds": null, + "hummingbird's": null, + "hummock": [["M", "D", "S", "G"]], + "hummock's": null, + "hummocked": null, + "hummocks": null, + "hummocking": null, + "hummocky": null, + "hummus": [["S"]], + "hummuses": null, + "humongous": null, + "humored": [["U"]], + "unhumored": null, + "humorist": [["M", "S"]], + "humorist's": null, + "humorists": null, + "humorlessness": [["M", "S"]], + "humorlessness's": null, + "humorlessnesses": null, + "humorless": [["P", "Y"]], + "humorlessly": null, + "humorousness": [["M", "S"]], + "humorousness's": null, + "humorousnesses": null, + "humorous": [["Y", "P"]], + "humorously": null, + "humor": [["R", "D", "M", "Z", "G", "S"]], + "humorer": null, + "humor's": null, + "humorers": null, + "humoring": null, + "humors": null, + "humpback": [["S", "M", "D"]], + "humpbacks": null, + "humpback's": null, + "humpbacked": null, + "hump": [["G", "S", "M", "D"]], + "humping": null, + "humps": null, + "hump's": null, + "humped": null, + "humph": [["D", "G"]], + "humphed": null, + "humphing": null, + "Humphrey": [["S", "M"]], + "Humphreys": null, + "Humphrey's": null, + "humphs": null, + "Humpty": [["M"]], + "Humpty's": null, + "hum": [["S"]], + "hums": null, + "humus": [["S", "M"]], + "humuses": null, + "humus's": null, + "Humvee": null, + "hunchback": [["D", "S", "M"]], + "hunchbacked": null, + "hunchbacks": null, + "hunchback's": null, + "hunch": [["G", "M", "S", "D"]], + "hunching": null, + "hunch's": null, + "hunches": null, + "hunched": null, + "hundredfold": [["S"]], + "hundredfolds": null, + "hundred": [["S", "H", "R", "M"]], + "hundreds": null, + "hundredth": null, + "hundreder": null, + "hundred's": null, + "hundredths": null, + "hundredweight": [["S", "M"]], + "hundredweights": null, + "hundredweight's": null, + "Hunfredo": [["M"]], + "Hunfredo's": null, + "hung": [["A"]], + "rehung": null, + "Hungarian": [["M", "S"]], + "Hungarian's": null, + "Hungarians": null, + "Hungary": [["M"]], + "Hungary's": null, + "hunger": [["S", "D", "M", "G"]], + "hungers": null, + "hungered": null, + "hunger's": null, + "hungering": null, + "Hung": [["M"]], + "Hung's": null, + "hungover": null, + "hungrily": null, + "hungriness": [["S", "M"]], + "hungrinesses": null, + "hungriness's": null, + "hungry": [["R", "T", "P"]], + "hungrier": null, + "hungriest": null, + "hunker": [["D", "G"]], + "hunkered": null, + "hunkering": null, + "hunky": [["R", "S", "T"]], + "hunkier": null, + "hunkies": null, + "hunkiest": null, + "hunk": [["Z", "R", "M", "S"]], + "hunkers": null, + "hunk's": null, + "hunks": null, + "Hun": [["M", "S"]], + "Hun's": null, + "Huns": null, + "hunter": [["M"]], + "hunter's": null, + "Hunter": [["M"]], + "Hunter's": null, + "hunt": [["G", "Z", "J", "D", "R", "S"]], + "hunting": [["M"]], + "hunters": null, + "huntings": null, + "hunted": null, + "hunts": null, + "hunting's": null, + "Huntington": [["M"]], + "Huntington's": null, + "Huntlee": [["M"]], + "Huntlee's": null, + "Huntley": [["M"]], + "Huntley's": null, + "Hunt": [["M", "R"]], + "Hunt's": null, + "huntress": [["M", "S"]], + "huntress's": null, + "huntresses": null, + "huntsman": [["M"]], + "huntsman's": null, + "huntsmen": null, + "Huntsville": [["M"]], + "Huntsville's": null, + "hurdle": [["J", "M", "Z", "G", "R", "S", "D"]], + "hurdlings": null, + "hurdle's": null, + "hurdlers": null, + "hurdling": null, + "hurdler": [["M"]], + "hurdles": null, + "hurdled": null, + "hurdler's": null, + "hurl": [["D", "R", "G", "Z", "J", "S"]], + "hurled": null, + "hurler": [["M"]], + "hurling": [["M"]], + "hurlers": null, + "hurlings": null, + "hurls": null, + "Hurlee": [["M"]], + "Hurlee's": null, + "Hurleigh": [["M"]], + "Hurleigh's": null, + "hurler's": null, + "Hurley": [["M"]], + "Hurley's": null, + "hurling's": null, + "Huron": [["S", "M"]], + "Hurons": null, + "Huron's": null, + "hurray": [["S", "D", "G"]], + "hurrays": null, + "hurrayed": null, + "hurraying": null, + "hurricane": [["M", "S"]], + "hurricane's": null, + "hurricanes": null, + "hurriedness": [["M"]], + "hurriedness's": null, + "hurried": [["U", "Y"]], + "unhurried": null, + "unhurriedly": null, + "hurriedly": null, + "hurry": [["R", "S", "D", "G"]], + "hurrier": null, + "hurries": null, + "hurrying": null, + "Hurst": [["M"]], + "Hurst's": null, + "hurter": [["M"]], + "hurter's": null, + "hurtfulness": [["M", "S"]], + "hurtfulness's": null, + "hurtfulnesses": null, + "hurtful": [["P", "Y"]], + "hurtfully": null, + "hurting": [["Y"]], + "hurtingly": null, + "hurtle": [["S", "D", "G"]], + "hurtles": null, + "hurtled": null, + "hurtling": null, + "hurts": null, + "hurt": [["U"]], + "unhurt": null, + "Hurwitz": [["M"]], + "Hurwitz's": null, + "Hus": null, + "Husain's": null, + "husbander": [["M"]], + "husbander's": null, + "husband": [["G", "S", "D", "R", "Y", "M"]], + "husbanding": null, + "husbands": null, + "husbanded": null, + "husbandly": null, + "husband's": null, + "husbandman": [["M"]], + "husbandman's": null, + "husbandmen": null, + "husbandry": [["S", "M"]], + "husbandries": null, + "husbandry's": null, + "Husein": [["M"]], + "Husein's": null, + "hush": [["D", "S", "G"]], + "hushed": null, + "hushes": null, + "hushing": null, + "husker": [["M"]], + "husker's": null, + "huskily": null, + "huskiness": [["M", "S"]], + "huskiness's": null, + "huskinesses": null, + "husking": [["M"]], + "husking's": null, + "husk": [["S", "G", "Z", "D", "R", "M"]], + "husks": null, + "huskers": null, + "husked": null, + "husk's": null, + "husky": [["R", "S", "P", "T"]], + "huskier": null, + "huskies": null, + "huskiest": null, + "hussar": [["M", "S"]], + "hussar's": null, + "hussars": null, + "Hussein": [["M"]], + "Hussein's": null, + "Husserl": [["M"]], + "Husserl's": null, + "hussy": [["S", "M"]], + "hussies": null, + "hussy's": null, + "hustings": [["M"]], + "hustings's": null, + "hustler": [["M"]], + "hustler's": null, + "hustle": [["R", "S", "D", "Z", "G"]], + "hustles": null, + "hustled": null, + "hustlers": null, + "hustling": null, + "Huston": [["M"]], + "Huston's": null, + "Hutchins": [["M"]], + "Hutchins's": null, + "Hutchinson": [["M"]], + "Hutchinson's": null, + "Hutchison": [["M"]], + "Hutchison's": null, + "hutch": [["M", "S", "D", "G"]], + "hutch's": null, + "hutches": null, + "hutched": null, + "hutching": null, + "hut": [["M", "S"]], + "hut's": null, + "huts": null, + "hutted": null, + "hutting": null, + "Hutton": [["M"]], + "Hutton's": null, + "Hutu": [["M"]], + "Hutu's": null, + "Huxley": [["M"]], + "Huxley's": null, + "Huygens": [["M"]], + "Huygens's": null, + "huzzah": [["G", "D"]], + "huzzahing": null, + "huzzahed": null, + "huzzahs": null, + "hwy": null, + "Hyacintha": [["M"]], + "Hyacintha's": null, + "Hyacinthe": [["M"]], + "Hyacinthe's": null, + "Hyacinthia": [["M"]], + "Hyacinthia's": null, + "Hyacinthie": [["M"]], + "Hyacinthie's": null, + "hyacinth": [["M"]], + "hyacinth's": null, + "Hyacinth": [["M"]], + "Hyacinth's": null, + "hyacinths": null, + "Hyades": null, + "hyaena's": null, + "Hyannis": [["M"]], + "Hyannis's": null, + "Hyatt": [["M"]], + "Hyatt's": null, + "hybridism": [["S", "M"]], + "hybridisms": null, + "hybridism's": null, + "hybridization": [["S"]], + "hybridizations": null, + "hybridize": [["G", "S", "D"]], + "hybridizing": null, + "hybridizes": null, + "hybridized": null, + "hybrid": [["M", "S"]], + "hybrid's": null, + "hybrids": null, + "Hyde": [["M"]], + "Hyde's": null, + "Hyderabad": [["M"]], + "Hyderabad's": null, + "Hydra": [["M"]], + "Hydra's": null, + "hydra": [["M", "S"]], + "hydra's": null, + "hydras": null, + "hydrangea": [["S", "M"]], + "hydrangeas": null, + "hydrangea's": null, + "hydrant": [["S", "M"]], + "hydrants": null, + "hydrant's": null, + "hydrate": [["C", "S", "D", "N", "G", "X"]], + "dehydrate": null, + "dehydrates": null, + "dehydrated": null, + "dehydration": null, + "dehydrating": null, + "dehydrations": null, + "hydrates": null, + "hydrated": null, + "hydration": [["M", "C"]], + "hydrating": null, + "hydrations": null, + "hydrate's": null, + "hydration's": null, + "dehydration's": null, + "hydraulically": null, + "hydraulicked": null, + "hydraulicking": null, + "hydraulic": [["S"]], + "hydraulics": [["M"]], + "hydraulics's": null, + "hydrazine": [["M"]], + "hydrazine's": null, + "hydride": [["M", "S"]], + "hydride's": null, + "hydrides": null, + "hydrocarbon": [["S", "M"]], + "hydrocarbons": null, + "hydrocarbon's": null, + "hydrocephali": null, + "hydrocephalus": [["M", "S"]], + "hydrocephalus's": null, + "hydrocephaluses": null, + "hydrochemistry": null, + "hydrochloric": null, + "hydrochloride": [["M"]], + "hydrochloride's": null, + "hydrodynamical": null, + "hydrodynamic": [["S"]], + "hydrodynamics": [["M"]], + "hydrodynamics's": null, + "hydroelectric": null, + "hydroelectrically": null, + "hydroelectricity": [["S", "M"]], + "hydroelectricities": null, + "hydroelectricity's": null, + "hydrofluoric": null, + "hydrofoil": [["M", "S"]], + "hydrofoil's": null, + "hydrofoils": null, + "hydrogenate": [["C", "D", "S", "G", "N"]], + "dehydrogenate": null, + "dehydrogenated": null, + "dehydrogenates": null, + "dehydrogenating": null, + "dehydrogenation": null, + "hydrogenated": null, + "hydrogenates": null, + "hydrogenating": null, + "hydrogenation": [["M", "C"]], + "hydrogenate's": null, + "hydrogenation's": null, + "dehydrogenation's": null, + "hydrogenations": null, + "hydrogen": [["M", "S"]], + "hydrogen's": null, + "hydrogens": null, + "hydrogenous": null, + "hydrological": [["Y"]], + "hydrologically": null, + "hydrologist": [["M", "S"]], + "hydrologist's": null, + "hydrologists": null, + "hydrology": [["S", "M"]], + "hydrologies": null, + "hydrology's": null, + "hydrolysis": [["M"]], + "hydrolysis's": null, + "hydrolyzed": [["U"]], + "unhydrolyzed": [["S", "M"]], + "hydrolyze": [["G", "S", "D"]], + "hydrolyzing": null, + "hydrolyzes": null, + "hydromagnetic": null, + "hydromechanics": [["M"]], + "hydromechanics's": null, + "hydrometer": [["S", "M"]], + "hydrometers": null, + "hydrometer's": null, + "hydrometry": [["M", "S"]], + "hydrometry's": null, + "hydrometries": null, + "hydrophilic": null, + "hydrophobia": [["S", "M"]], + "hydrophobias": null, + "hydrophobia's": null, + "hydrophobic": null, + "hydrophone": [["S", "M"]], + "hydrophones": null, + "hydrophone's": null, + "hydroplane": [["D", "S", "G", "M"]], + "hydroplaned": null, + "hydroplanes": null, + "hydroplaning": null, + "hydroplane's": null, + "hydroponic": [["S"]], + "hydroponics": [["M"]], + "hydroponics's": null, + "hydro": [["S", "M"]], + "hydros": null, + "hydro's": null, + "hydrosphere": [["M", "S"]], + "hydrosphere's": null, + "hydrospheres": null, + "hydrostatic": [["S"]], + "hydrostatics": [["M"]], + "hydrostatics's": null, + "hydrotherapy": [["S", "M"]], + "hydrotherapies": null, + "hydrotherapy's": null, + "hydrothermal": [["Y"]], + "hydrothermally": null, + "hydrous": null, + "hydroxide": [["M", "S"]], + "hydroxide's": null, + "hydroxides": null, + "hydroxy": null, + "hydroxylate": [["N"]], + "hydroxylation": null, + "hydroxyl": [["S", "M"]], + "hydroxyls": null, + "hydroxyl's": null, + "hydroxyzine": [["M"]], + "hydroxyzine's": null, + "hyena": [["M", "S"]], + "hyena's": null, + "hyenas": null, + "hygiene": [["M", "S"]], + "hygiene's": null, + "hygienes": null, + "hygienically": null, + "hygienic": [["S"]], + "hygienics": [["M"]], + "hygienics's": null, + "hygienist": [["M", "S"]], + "hygienist's": null, + "hygienists": null, + "hygrometer": [["S", "M"]], + "hygrometers": null, + "hygrometer's": null, + "hygroscopic": null, + "hying": null, + "Hy": [["M"]], + "Hy's": null, + "Hyman": [["M"]], + "Hyman's": null, + "hymeneal": [["S"]], + "hymeneals": null, + "Hymen": [["M"]], + "Hymen's": null, + "hymen": [["M", "S"]], + "hymen's": null, + "hymens": null, + "Hymie": [["M"]], + "Hymie's": null, + "hymnal": [["S", "M"]], + "hymnals": null, + "hymnal's": null, + "hymnbook": [["S"]], + "hymnbooks": null, + "hymn": [["G", "S", "D", "M"]], + "hymning": null, + "hymns": null, + "hymned": null, + "hymn's": null, + "Hynda": [["M"]], + "Hynda's": null, + "hype": [["M", "Z", "G", "D", "S", "R"]], + "hype's": null, + "hypers": null, + "hyping": null, + "hyped": null, + "hypes": null, + "hyper": null, + "hyperactive": [["S"]], + "hyperactives": null, + "hyperactivity": [["S", "M"]], + "hyperactivities": null, + "hyperactivity's": null, + "hyperbola": [["M", "S"]], + "hyperbola's": null, + "hyperbolas": null, + "hyperbole": [["M", "S"]], + "hyperbole's": null, + "hyperboles": null, + "hyperbolic": null, + "hyperbolically": null, + "hyperboloidal": null, + "hyperboloid": [["S", "M"]], + "hyperboloids": null, + "hyperboloid's": null, + "hypercellularity": null, + "hypercritical": [["Y"]], + "hypercritically": null, + "hypercube": [["M", "S"]], + "hypercube's": null, + "hypercubes": null, + "hyperemia": [["M"]], + "hyperemia's": null, + "hyperemic": null, + "hyperfine": null, + "hypergamous": [["Y"]], + "hypergamously": null, + "hypergamy": [["M"]], + "hypergamy's": null, + "hyperglycemia": [["M", "S"]], + "hyperglycemia's": null, + "hyperglycemias": null, + "hyperinflation": null, + "Hyperion": [["M"]], + "Hyperion's": null, + "hypermarket": [["S", "M"]], + "hypermarkets": null, + "hypermarket's": null, + "hypermedia": [["S"]], + "hypermedias": null, + "hyperplane": [["S", "M"]], + "hyperplanes": null, + "hyperplane's": null, + "hyperplasia": [["M"]], + "hyperplasia's": null, + "hypersensitiveness": [["M", "S"]], + "hypersensitiveness's": null, + "hypersensitivenesses": null, + "hypersensitive": [["P"]], + "hypersensitivity": [["M", "S"]], + "hypersensitivity's": null, + "hypersensitivities": null, + "hypersonic": null, + "hyperspace": [["M"]], + "hyperspace's": null, + "hypersphere": [["M"]], + "hypersphere's": null, + "hypertension": [["M", "S"]], + "hypertension's": null, + "hypertensions": null, + "hypertensive": [["S"]], + "hypertensives": null, + "hypertext": [["S", "M"]], + "hypertexts": null, + "hypertext's": null, + "hyperthyroid": null, + "hyperthyroidism": [["M", "S"]], + "hyperthyroidism's": null, + "hyperthyroidisms": null, + "hypertrophy": [["M", "S", "D", "G"]], + "hypertrophy's": null, + "hypertrophies": null, + "hypertrophied": null, + "hypertrophying": null, + "hypervelocity": null, + "hyperventilate": [["X", "S", "D", "G", "N"]], + "hyperventilations": null, + "hyperventilates": null, + "hyperventilated": null, + "hyperventilating": null, + "hyperventilation": [["M"]], + "hyperventilation's": null, + "hyphenated": [["U"]], + "unhyphenated": null, + "hyphenate": [["N", "G", "X", "S", "D"]], + "hyphenation": [["M"]], + "hyphenating": null, + "hyphenations": null, + "hyphenates": null, + "hyphenation's": null, + "hyphen": [["D", "M", "G", "S"]], + "hyphened": null, + "hyphen's": null, + "hyphening": null, + "hyphens": null, + "hypnoses": null, + "hypnosis": [["M"]], + "hypnosis's": null, + "hypnotherapy": [["S", "M"]], + "hypnotherapies": null, + "hypnotherapy's": null, + "hypnotically": null, + "hypnotic": [["S"]], + "hypnotics": null, + "hypnotism": [["M", "S"]], + "hypnotism's": null, + "hypnotisms": null, + "hypnotist": [["S", "M"]], + "hypnotists": null, + "hypnotist's": null, + "hypnotize": [["S", "D", "G"]], + "hypnotizes": null, + "hypnotized": null, + "hypnotizing": null, + "hypoactive": null, + "hypoallergenic": null, + "hypocellularity": null, + "hypochondriac": [["S", "M"]], + "hypochondriacs": null, + "hypochondriac's": null, + "hypochondria": [["M", "S"]], + "hypochondria's": null, + "hypochondrias": null, + "hypocrisy": [["S", "M"]], + "hypocrisies": null, + "hypocrisy's": null, + "hypocrite": [["M", "S"]], + "hypocrite's": null, + "hypocrites": null, + "hypocritical": [["Y"]], + "hypocritically": null, + "hypodermic": [["S"]], + "hypodermics": null, + "hypo": [["D", "M", "S", "G"]], + "hypoed": null, + "hypo's": null, + "hypos": null, + "hypoing": null, + "hypoglycemia": [["S", "M"]], + "hypoglycemias": null, + "hypoglycemia's": null, + "hypoglycemic": [["S"]], + "hypoglycemics": null, + "hypophyseal": null, + "hypophysectomized": null, + "hypotenuse": [["M", "S"]], + "hypotenuse's": null, + "hypotenuses": null, + "hypothalami": null, + "hypothalamic": null, + "hypothalamically": null, + "hypothalamus": [["M"]], + "hypothalamus's": null, + "hypothermia": [["S", "M"]], + "hypothermias": null, + "hypothermia's": null, + "hypotheses": null, + "hypothesis": [["M"]], + "hypothesis's": null, + "hypothesizer": [["M"]], + "hypothesizer's": null, + "hypothesize": [["Z", "G", "R", "S", "D"]], + "hypothesizers": null, + "hypothesizing": null, + "hypothesizes": null, + "hypothesized": null, + "hypothetic": null, + "hypothetical": [["Y"]], + "hypothetically": null, + "hypothyroid": null, + "hypothyroidism": [["S", "M"]], + "hypothyroidisms": null, + "hypothyroidism's": null, + "hypoxia": [["M"]], + "hypoxia's": null, + "hyssop": [["M", "S"]], + "hyssop's": null, + "hyssops": null, + "hysterectomy": [["M", "S"]], + "hysterectomy's": null, + "hysterectomies": null, + "hysteresis": [["M"]], + "hysteresis's": null, + "hysteria": [["S", "M"]], + "hysterias": null, + "hysteria's": null, + "hysterical": [["Y", "U"]], + "hysterically": null, + "unhysterically": null, + "unhysterical": null, + "hysteric": [["S", "M"]], + "hysterics": null, + "hysteric's": null, + "Hyundai": [["M"]], + "Hyundai's": null, + "Hz": null, + "i": null, + "I": null, + "IA": null, + "Iaccoca": [["M"]], + "Iaccoca's": null, + "Iago": [["M"]], + "Iago's": null, + "Iain": [["M"]], + "Iain's": null, + "Ia": [["M"]], + "Ia's": null, + "iambi": null, + "iambic": [["S"]], + "iambics": null, + "iamb": [["M", "S"]], + "iamb's": null, + "iambs": null, + "iambus": [["S", "M"]], + "iambuses": null, + "iambus's": null, + "Ian": [["M"]], + "Ian's": null, + "Ianthe": [["M"]], + "Ianthe's": null, + "Ibadan": [["M"]], + "Ibadan's": null, + "Ibbie": [["M"]], + "Ibbie's": null, + "Ibby": [["M"]], + "Ibby's": null, + "Iberia": [["M"]], + "Iberia's": null, + "Iberian": [["M", "S"]], + "Iberian's": null, + "Iberians": null, + "Ibero": [["M"]], + "Ibero's": null, + "ibex": [["M", "S"]], + "ibex's": null, + "ibexes": null, + "ibid": null, + "ibidem": null, + "ibis": [["S", "M"]], + "ibises": null, + "ibis's": null, + "IBM": [["M"]], + "IBM's": null, + "Ibo": [["M"]], + "Ibo's": null, + "Ibrahim": [["M"]], + "Ibrahim's": null, + "Ibsen": [["M"]], + "Ibsen's": null, + "ibuprofen": [["S"]], + "ibuprofens": null, + "Icarus": [["M"]], + "Icarus's": null, + "ICBM": [["S"]], + "ICBMs": null, + "ICC": null, + "iceberg": [["S", "M"]], + "icebergs": null, + "iceberg's": null, + "iceboat": [["M", "S"]], + "iceboat's": null, + "iceboats": null, + "icebound": null, + "icebox": [["M", "S"]], + "icebox's": null, + "iceboxes": null, + "icebreaker": [["S", "M"]], + "icebreakers": null, + "icebreaker's": null, + "icecap": [["S", "M"]], + "icecaps": null, + "icecap's": null, + "ice": [["G", "D", "S", "C"]], + "icing": [["M", "S"]], + "deicing": null, + "iced": null, + "deiced": null, + "ices": null, + "deices": null, + "Icelander": [["M"]], + "Icelander's": null, + "Icelandic": null, + "Iceland": [["M", "R", "Z"]], + "Iceland's": null, + "Icelanders": null, + "Ice": [["M"]], + "Ice's": null, + "iceman": [["M"]], + "iceman's": null, + "icemen": null, + "icepack": null, + "icepick": [["S"]], + "icepicks": null, + "ice's": null, + "Ichabod": [["M"]], + "Ichabod's": null, + "ichneumon": [["M"]], + "ichneumon's": null, + "ichthyologist": [["M", "S"]], + "ichthyologist's": null, + "ichthyologists": null, + "ichthyology": [["M", "S"]], + "ichthyology's": null, + "ichthyologies": null, + "icicle": [["S", "M"]], + "icicles": null, + "icicle's": null, + "icily": null, + "iciness": [["S", "M"]], + "icinesses": null, + "iciness's": null, + "icing's": null, + "icings": null, + "icky": [["R", "T"]], + "ickier": null, + "ickiest": null, + "iconic": null, + "icon": [["M", "S"]], + "icon's": null, + "icons": null, + "iconoclasm": [["M", "S"]], + "iconoclasm's": null, + "iconoclasms": null, + "iconoclastic": null, + "iconoclast": [["M", "S"]], + "iconoclast's": null, + "iconoclasts": null, + "iconography": [["M", "S"]], + "iconography's": null, + "iconographies": null, + "icosahedra": null, + "icosahedral": null, + "icosahedron": [["M"]], + "icosahedron's": null, + "ictus": [["S", "M"]], + "ictuses": null, + "ictus's": null, + "ICU": null, + "icy": [["R", "P", "T"]], + "icier": null, + "iciest": null, + "I'd": null, + "ID": null, + "Idahoan": [["S"]], + "Idahoans": null, + "Idahoes": null, + "Idaho": [["M", "S"]], + "Idaho's": null, + "Idahos": null, + "Idalia": [["M"]], + "Idalia's": null, + "Idalina": [["M"]], + "Idalina's": null, + "Idaline": [["M"]], + "Idaline's": null, + "Ida": [["M"]], + "Ida's": null, + "idealism": [["M", "S"]], + "idealism's": null, + "idealisms": null, + "idealistic": null, + "idealistically": null, + "idealist": [["M", "S"]], + "idealist's": null, + "idealists": null, + "idealization": [["M", "S"]], + "idealization's": null, + "idealizations": null, + "idealized": [["U"]], + "unidealized": null, + "idealize": [["G", "D", "R", "S", "Z"]], + "idealizing": null, + "idealizer": [["M"]], + "idealizes": null, + "idealizers": null, + "idealizer's": null, + "ideal": [["M", "Y", "S"]], + "ideal's": null, + "ideally": null, + "ideals": null, + "idealogical": null, + "idea": [["S", "M"]], + "ideas": null, + "idea's": null, + "ideate": [["S", "N"]], + "ideates": null, + "ideation": [["M"]], + "ideation's": null, + "Idelle": [["M"]], + "Idelle's": null, + "Idell": [["M"]], + "Idell's": null, + "idem": null, + "idempotent": [["S"]], + "idempotents": null, + "identicalness": [["M"]], + "identicalness's": null, + "identical": [["Y", "P"]], + "identically": null, + "identifiability": null, + "identifiable": [["U"]], + "unidentifiable": null, + "identifiably": null, + "identification": [["M"]], + "identification's": null, + "identified": [["U"]], + "unidentified": null, + "identifier": [["M"]], + "identifier's": null, + "identify": [["X", "Z", "N", "S", "R", "D", "G"]], + "identifications": null, + "identifiers": null, + "identifies": null, + "identifying": null, + "identity": [["S", "M"]], + "identities": null, + "identity's": null, + "ideogram": [["M", "S"]], + "ideogram's": null, + "ideograms": null, + "ideographic": null, + "ideograph": [["M"]], + "ideograph's": null, + "ideographs": null, + "ideological": [["Y"]], + "ideologically": null, + "ideologist": [["S", "M"]], + "ideologists": null, + "ideologist's": null, + "ideologue": [["S"]], + "ideologues": null, + "ideology": [["S", "M"]], + "ideologies": null, + "ideology's": null, + "ides": null, + "Idette": [["M"]], + "Idette's": null, + "idiocy": [["M", "S"]], + "idiocy's": null, + "idiocies": null, + "idiolect": [["M"]], + "idiolect's": null, + "idiomatically": null, + "idiomatic": [["P"]], + "idiomaticness": null, + "idiom": [["M", "S"]], + "idiom's": null, + "idioms": null, + "idiopathic": null, + "idiosyncrasy": [["S", "M"]], + "idiosyncrasies": null, + "idiosyncrasy's": null, + "idiosyncratic": null, + "idiosyncratically": null, + "idiotic": null, + "idiotically": null, + "idiot": [["M", "S"]], + "idiot's": null, + "idiots": null, + "idleness": [["M", "S"]], + "idleness's": null, + "idlenesses": null, + "idle": [["P", "Z", "T", "G", "D", "S", "R"]], + "idlers": null, + "idlest": null, + "idling": null, + "idled": null, + "idles": null, + "idler": [["M"]], + "idler's": null, + "id": [["M", "Y"]], + "id's": null, + "idly": null, + "idolater": [["M", "S"]], + "idolater's": null, + "idolaters": null, + "idolatress": [["S"]], + "idolatresses": null, + "idolatrous": null, + "idolatry": [["S", "M"]], + "idolatries": null, + "idolatry's": null, + "idolization": [["S", "M"]], + "idolizations": null, + "idolization's": null, + "idolized": [["U"]], + "unidolized": [["M", "S"]], + "idolizer": [["M"]], + "idolizer's": null, + "idolize": [["Z", "G", "D", "R", "S"]], + "idolizers": null, + "idolizing": null, + "idolizes": null, + "idol": [["M", "S"]], + "idol's": null, + "idols": null, + "ids": null, + "IDs": null, + "idyllic": null, + "idyllically": null, + "idyll": [["M", "S"]], + "idyll's": null, + "idylls": null, + "IE": null, + "IEEE": null, + "Ieyasu": [["M"]], + "Ieyasu's": null, + "if": null, + "iffiness": [["S"]], + "iffinesses": null, + "iffy": [["T", "P", "R"]], + "iffiest": null, + "iffier": null, + "Ifni": [["M"]], + "Ifni's": null, + "ifs": null, + "Iggie": [["M"]], + "Iggie's": null, + "Iggy": [["M"]], + "Iggy's": null, + "igloo": [["M", "S"]], + "igloo's": null, + "igloos": null, + "Ignace": [["M"]], + "Ignace's": null, + "Ignacio": [["M"]], + "Ignacio's": null, + "Ignacius": [["M"]], + "Ignacius's": null, + "Ignatius": [["M"]], + "Ignatius's": null, + "Ignazio": [["M"]], + "Ignazio's": null, + "Ignaz": [["M"]], + "Ignaz's": null, + "igneous": null, + "ignitable": null, + "ignite": [["A", "S", "D", "G"]], + "reignite": null, + "reignites": null, + "reignited": null, + "reigniting": null, + "ignites": null, + "ignited": null, + "igniting": null, + "igniter": [["M"]], + "igniter's": null, + "ignition": [["M", "S"]], + "ignition's": null, + "ignitions": null, + "ignobleness": [["M"]], + "ignobleness's": null, + "ignoble": [["P"]], + "ignobly": null, + "ignominious": [["Y"]], + "ignominiously": null, + "ignominy": [["M", "S"]], + "ignominy's": null, + "ignominies": null, + "ignoramus": [["S", "M"]], + "ignoramuses": null, + "ignoramus's": null, + "ignorance": [["M", "S"]], + "ignorance's": null, + "ignorances": null, + "ignorantness": [["M"]], + "ignorantness's": null, + "ignorant": [["S", "P", "Y"]], + "ignorants": null, + "ignorantly": null, + "ignorer": [["M"]], + "ignorer's": null, + "ignore": [["S", "R", "D", "G", "B"]], + "ignores": null, + "ignored": null, + "ignoring": null, + "ignorable": null, + "Igor": [["M"]], + "Igor's": null, + "iguana": [["M", "S"]], + "iguana's": null, + "iguanas": null, + "Iguassu": [["M"]], + "Iguassu's": null, + "ii": null, + "iii": null, + "Ijsselmeer": [["M"]], + "Ijsselmeer's": null, + "Ike": [["M"]], + "Ike's": null, + "Ikey": [["M"]], + "Ikey's": null, + "Ikhnaton": [["M"]], + "Ikhnaton's": null, + "ikon's": null, + "IL": null, + "Ilaire": [["M"]], + "Ilaire's": null, + "Ila": [["M"]], + "Ila's": null, + "Ilario": [["M"]], + "Ilario's": null, + "ilea": null, + "Ileana": [["M"]], + "Ileana's": null, + "Ileane": [["M"]], + "Ileane's": null, + "ileitides": null, + "ileitis": [["M"]], + "ileitis's": null, + "Ilene": [["M"]], + "Ilene's": null, + "ileum": [["M"]], + "ileum's": null, + "ilia": null, + "iliac": null, + "Iliad": [["M", "S"]], + "Iliad's": null, + "Iliads": null, + "Ilise": [["M"]], + "Ilise's": null, + "ilium": [["M"]], + "ilium's": null, + "Ilka": [["M"]], + "Ilka's": null, + "ilk": [["M", "S"]], + "ilk's": null, + "ilks": null, + "I'll": null, + "Illa": [["M"]], + "Illa's": null, + "illegality": [["M", "S"]], + "illegality's": null, + "illegalities": null, + "illegal": [["Y", "S"]], + "illegally": null, + "illegals": null, + "illegibility": [["M", "S"]], + "illegibility's": null, + "illegibilities": null, + "illegible": null, + "illegibly": null, + "illegitimacy": [["S", "M"]], + "illegitimacies": null, + "illegitimacy's": null, + "illegitimate": [["S", "D", "G", "Y"]], + "illegitimates": null, + "illegitimated": null, + "illegitimating": null, + "illegitimately": null, + "illiberality": [["S", "M"]], + "illiberalities": null, + "illiberality's": null, + "illiberal": [["Y"]], + "illiberally": null, + "illicitness": [["M", "S"]], + "illicitness's": null, + "illicitnesses": null, + "illicit": [["Y", "P"]], + "illicitly": null, + "illimitableness": [["M"]], + "illimitableness's": null, + "illimitable": [["P"]], + "Illinoisan": [["M", "S"]], + "Illinoisan's": null, + "Illinoisans": null, + "Illinois": [["M"]], + "Illinois's": null, + "illiquid": null, + "illiteracy": [["M", "S"]], + "illiteracy's": null, + "illiteracies": null, + "illiterateness": [["M"]], + "illiterateness's": null, + "illiterate": [["P", "S", "Y"]], + "illiterates": null, + "illiterately": null, + "Ill": [["M"]], + "Ill's": null, + "illness": [["M", "S"]], + "illness's": null, + "illnesses": null, + "illogicality": [["S", "M"]], + "illogicalities": null, + "illogicality's": null, + "illogicalness": [["M"]], + "illogicalness's": null, + "illogical": [["P", "Y"]], + "illogically": null, + "illogic": [["M"]], + "illogic's": null, + "ill": [["P", "S"]], + "ills": null, + "illume": [["D", "G"]], + "illumed": null, + "illuming": null, + "illuminate": [["X", "S", "D", "V", "N", "G"]], + "illuminations": null, + "illuminates": null, + "illuminated": null, + "illuminative": null, + "illumination": [["M"]], + "illuminating": [["U"]], + "Illuminati": null, + "illuminatingly": null, + "unilluminating": null, + "illumination's": null, + "illumine": [["B", "G", "S", "D"]], + "illuminable": null, + "illumining": null, + "illumines": null, + "illumined": null, + "illusionary": null, + "illusion": [["E", "S"]], + "disillusions": null, + "illusions": null, + "illusionist": [["M", "S"]], + "illusionist's": null, + "illusionists": null, + "illusion's": null, + "illusiveness": [["M"]], + "illusiveness's": null, + "illusive": [["P", "Y"]], + "illusively": null, + "illusoriness": [["M"]], + "illusoriness's": null, + "illusory": [["P"]], + "illustrated": [["U"]], + "unillustrated": null, + "illustrate": [["V", "G", "N", "S", "D", "X"]], + "illustrative": [["Y"]], + "illustrating": null, + "illustration": [["M"]], + "illustrates": null, + "illustrations": null, + "illustration's": null, + "illustratively": null, + "illustrator": [["S", "M"]], + "illustrators": null, + "illustrator's": null, + "illustriousness": [["S", "M"]], + "illustriousnesses": null, + "illustriousness's": null, + "illustrious": [["P", "Y"]], + "illustriously": null, + "illus": [["V"]], + "illy": null, + "Ilona": [["M"]], + "Ilona's": null, + "Ilsa": [["M"]], + "Ilsa's": null, + "Ilse": [["M"]], + "Ilse's": null, + "Ilysa": [["M"]], + "Ilysa's": null, + "Ilyse": [["M"]], + "Ilyse's": null, + "Ilyssa": [["M"]], + "Ilyssa's": null, + "Ilyushin": [["M"]], + "Ilyushin's": null, + "I'm": null, + "image": [["D", "S", "G", "M"]], + "imaged": null, + "images": null, + "imaging": null, + "image's": null, + "Imagen": [["M"]], + "Imagen's": null, + "imagery": [["M", "S"]], + "imagery's": null, + "imageries": null, + "imaginableness": null, + "imaginable": [["U"]], + "unimaginable": null, + "imaginably": [["U"]], + "unimaginably": null, + "imaginariness": [["M"]], + "imaginariness's": null, + "imaginary": [["P", "S"]], + "imaginaries": null, + "imagination": [["M", "S"]], + "imagination's": null, + "imaginations": null, + "imaginativeness": [["M"]], + "imaginativeness's": null, + "imaginative": [["U", "Y"]], + "unimaginative": null, + "unimaginatively": null, + "imaginatively": null, + "imagined": [["U"]], + "unimagined": null, + "imaginer": [["M"]], + "imaginer's": null, + "imagine": [["R", "S", "D", "J", "B", "G"]], + "imagines": null, + "imaginings": null, + "imagining": null, + "imagoes": null, + "imago": [["M"]], + "imago's": null, + "imam": [["M", "S"]], + "imam's": null, + "imams": null, + "imbalance": [["S", "D", "M"]], + "imbalances": null, + "imbalanced": null, + "imbalance's": null, + "imbecile": [["Y", "M", "S"]], + "imbecilely": null, + "imbecile's": null, + "imbeciles": null, + "imbecilic": null, + "imbecility": [["M", "S"]], + "imbecility's": null, + "imbecilities": null, + "imbiber": [["M"]], + "imbiber's": null, + "imbibe": [["Z", "R", "S", "D", "G"]], + "imbibers": null, + "imbibes": null, + "imbibed": null, + "imbibing": null, + "imbrication": [["S", "M"]], + "imbrications": null, + "imbrication's": null, + "Imbrium": [["M"]], + "Imbrium's": null, + "imbroglio": [["M", "S"]], + "imbroglio's": null, + "imbroglios": null, + "imbruing": null, + "imbue": [["G", "D", "S"]], + "imbuing": null, + "imbued": null, + "imbues": null, + "Imelda": [["M"]], + "Imelda's": null, + "IMF": null, + "IMHO": null, + "imitable": [["I"]], + "inimitable": [["P"]], + "imitate": [["S", "D", "V", "N", "G", "X"]], + "imitates": null, + "imitated": null, + "imitative": [["Y", "P"]], + "imitation": [["M"]], + "imitating": null, + "imitations": null, + "imitation's": null, + "imitativeness": [["M", "S"]], + "imitativeness's": null, + "imitativenesses": null, + "imitatively": null, + "imitator": [["S", "M"]], + "imitators": null, + "imitator's": null, + "immaculateness": [["S", "M"]], + "immaculatenesses": null, + "immaculateness's": null, + "immaculate": [["Y", "P"]], + "immaculately": null, + "immanence": [["S"]], + "immanences": null, + "immanency": [["M", "S"]], + "immanency's": null, + "immanencies": null, + "immanent": [["Y"]], + "immanently": null, + "Immanuel": [["M"]], + "Immanuel's": null, + "immateriality": [["M", "S"]], + "immateriality's": null, + "immaterialities": null, + "immaterialness": [["M", "S"]], + "immaterialness's": null, + "immaterialnesses": null, + "immaterial": [["P", "Y"]], + "immaterially": null, + "immatureness": [["M"]], + "immatureness's": null, + "immature": [["S", "P", "Y"]], + "immatures": null, + "immaturely": null, + "immaturity": [["M", "S"]], + "immaturity's": null, + "immaturities": null, + "immeasurableness": [["M"]], + "immeasurableness's": null, + "immeasurable": [["P"]], + "immeasurably": null, + "immediacy": [["M", "S"]], + "immediacy's": null, + "immediacies": null, + "immediateness": [["S", "M"]], + "immediatenesses": null, + "immediateness's": null, + "immediate": [["Y", "P"]], + "immediately": null, + "immemorial": [["Y"]], + "immemorially": null, + "immenseness": [["M"]], + "immenseness's": null, + "immense": [["P", "R", "T", "Y"]], + "immenser": null, + "immensest": null, + "immensely": null, + "immensity": [["M", "S"]], + "immensity's": null, + "immensities": null, + "immerse": [["R", "S", "D", "X", "N", "G"]], + "immerser": null, + "immerses": null, + "immersed": null, + "immersions": null, + "immersion": [["M"]], + "immersing": null, + "immersible": null, + "immersion's": null, + "immigrant": [["S", "M"]], + "immigrants": null, + "immigrant's": null, + "immigrate": [["N", "G", "S", "D", "X"]], + "immigration": [["M"]], + "immigrating": null, + "immigrates": null, + "immigrated": null, + "immigrations": null, + "immigration's": null, + "imminence": [["S", "M"]], + "imminences": null, + "imminence's": null, + "imminentness": [["M"]], + "imminentness's": null, + "imminent": [["Y", "P"]], + "imminently": null, + "immobile": null, + "immobility": [["M", "S"]], + "immobility's": null, + "immobilities": null, + "immobilization": [["M", "S"]], + "immobilization's": null, + "immobilizations": null, + "immobilize": [["D", "S", "R", "G"]], + "immobilized": null, + "immobilizes": null, + "immobilizer": null, + "immobilizing": null, + "immoderateness": [["M"]], + "immoderateness's": null, + "immoderate": [["N", "Y", "P"]], + "immoderation": [["M"]], + "immoderately": null, + "immoderation's": null, + "immodest": [["Y"]], + "immodestly": null, + "immodesty": [["S", "M"]], + "immodesties": null, + "immodesty's": null, + "immolate": [["S", "D", "N", "G", "X"]], + "immolates": null, + "immolated": null, + "immolation": [["M"]], + "immolating": null, + "immolations": null, + "immolation's": null, + "immorality": [["M", "S"]], + "immorality's": null, + "immoralities": null, + "immoral": [["Y"]], + "immorally": null, + "immortality": [["S", "M"]], + "immortalities": null, + "immortality's": null, + "immortalized": [["U"]], + "unimmortalized": null, + "immortalize": [["G", "D", "S"]], + "immortalizing": null, + "immortalizes": null, + "immortal": [["S", "Y"]], + "immortals": null, + "immortally": null, + "immovability": [["S", "M"]], + "immovabilities": null, + "immovability's": null, + "immovableness": [["M"]], + "immovableness's": null, + "immovable": [["P", "S"]], + "immovables": null, + "immovably": null, + "immune": [["S"]], + "immunes": null, + "immunity": [["S", "M"]], + "immunities": null, + "immunity's": null, + "immunization": [["M", "S"]], + "immunization's": null, + "immunizations": null, + "immunize": [["G", "S", "D"]], + "immunizing": null, + "immunizes": null, + "immunized": null, + "immunoassay": [["M"]], + "immunoassay's": null, + "immunodeficiency": [["S"]], + "immunodeficiencies": null, + "immunodeficient": null, + "immunologic": null, + "immunological": [["Y"]], + "immunologically": null, + "immunologist": [["S", "M"]], + "immunologists": null, + "immunologist's": null, + "immunology": [["M", "S"]], + "immunology's": null, + "immunologies": null, + "immure": [["G", "S", "D"]], + "immuring": null, + "immures": null, + "immured": null, + "immutability": [["M", "S"]], + "immutability's": null, + "immutabilities": null, + "immutableness": [["M"]], + "immutableness's": null, + "immutable": [["P"]], + "immutably": null, + "IMNSHO": null, + "IMO": null, + "Imogene": [["M"]], + "Imogene's": null, + "Imogen": [["M"]], + "Imogen's": null, + "Imojean": [["M"]], + "Imojean's": null, + "impaction": [["S", "M"]], + "impactions": null, + "impaction's": null, + "impactor": [["S", "M"]], + "impactors": null, + "impactor's": null, + "impact": [["V", "G", "M", "R", "D", "S"]], + "impactive": null, + "impacting": null, + "impact's": null, + "impacter": null, + "impacted": null, + "impacts": null, + "impaired": [["U"]], + "unimpaired": null, + "impairer": [["M"]], + "impairer's": null, + "impair": [["L", "G", "R", "D", "S"]], + "impairment": [["S", "M"]], + "impairing": null, + "impairs": null, + "impairments": null, + "impairment's": null, + "impala": [["M", "S"]], + "impala's": null, + "impalas": null, + "impale": [["G", "L", "R", "S", "D"]], + "impaling": null, + "impalement": [["S", "M"]], + "impaler": [["M"]], + "impales": null, + "impaled": null, + "impalements": null, + "impalement's": null, + "impaler's": null, + "impalpable": null, + "impalpably": null, + "impanel": [["D", "G", "S"]], + "impaneled": null, + "impaneling": null, + "impanels": null, + "impartation": [["M"]], + "impartation's": null, + "impart": [["G", "D", "S"]], + "imparting": null, + "imparted": null, + "imparts": null, + "impartiality": [["S", "M"]], + "impartialities": null, + "impartiality's": null, + "impartial": [["Y"]], + "impartially": null, + "impassableness": [["M"]], + "impassableness's": null, + "impassable": [["P"]], + "impassably": null, + "impasse": [["S", "X", "B", "M", "V", "N"]], + "impasses": null, + "impassions": null, + "impasse's": null, + "impassive": [["Y", "P"]], + "impassion": [["D", "G"]], + "impassibility": [["S", "M"]], + "impassibilities": null, + "impassibility's": null, + "impassible": null, + "impassibly": null, + "impassioned": [["U"]], + "impassioning": null, + "unimpassioned": null, + "impassiveness": [["M", "S"]], + "impassiveness's": null, + "impassivenesses": null, + "impassively": null, + "impassivity": [["M", "S"]], + "impassivity's": null, + "impassivities": null, + "impasto": [["S", "M"]], + "impastos": null, + "impasto's": null, + "impatience": [["S", "M"]], + "impatiences": null, + "impatience's": null, + "impatiens": [["M"]], + "impatiens's": null, + "impatient": [["Y"]], + "impatiently": null, + "impeachable": [["U"]], + "unimpeachable": null, + "impeach": [["D", "R", "S", "Z", "G", "L", "B"]], + "impeached": null, + "impeacher": [["M"]], + "impeaches": null, + "impeachers": null, + "impeaching": null, + "impeachment": [["M", "S"]], + "impeacher's": null, + "impeachment's": null, + "impeachments": null, + "impeccability": [["S", "M"]], + "impeccabilities": null, + "impeccability's": null, + "impeccable": [["S"]], + "impeccables": null, + "impeccably": null, + "impecuniousness": [["M", "S"]], + "impecuniousness's": null, + "impecuniousnesses": null, + "impecunious": [["P", "Y"]], + "impecuniously": null, + "impedance": [["M", "S"]], + "impedance's": null, + "impedances": null, + "impeded": [["U"]], + "unimpeded": null, + "impeder": [["M"]], + "impeder's": null, + "impede": [["S"]], + "impedes": null, + "imped": [["G", "R", "D"]], + "impeding": null, + "impedimenta": null, + "impediment": [["S", "M"]], + "impediments": null, + "impediment's": null, + "impelled": null, + "impeller": [["M", "S"]], + "impeller's": null, + "impellers": null, + "impelling": null, + "impel": [["S"]], + "impels": null, + "impend": [["D", "G", "S"]], + "impended": null, + "impending": null, + "impends": null, + "impenetrability": [["M", "S"]], + "impenetrability's": null, + "impenetrabilities": null, + "impenetrableness": [["M"]], + "impenetrableness's": null, + "impenetrable": [["P"]], + "impenetrably": null, + "impenitence": [["M", "S"]], + "impenitence's": null, + "impenitences": null, + "impenitent": [["Y", "S"]], + "impenitently": null, + "impenitents": null, + "imperativeness": [["M"]], + "imperativeness's": null, + "imperative": [["P", "S", "Y"]], + "imperatives": null, + "imperatively": null, + "imperceivable": null, + "imperceptibility": [["M", "S"]], + "imperceptibility's": null, + "imperceptibilities": null, + "imperceptible": null, + "imperceptibly": null, + "imperceptive": null, + "imperf": null, + "imperfectability": null, + "imperfection": [["M", "S"]], + "imperfection's": null, + "imperfections": null, + "imperfectness": [["S", "M"]], + "imperfectnesses": null, + "imperfectness's": null, + "imperfect": [["Y", "S", "V", "P"]], + "imperfectly": null, + "imperfects": null, + "imperfective": null, + "imperialism": [["M", "S"]], + "imperialism's": null, + "imperialisms": null, + "imperialistic": null, + "imperialistically": null, + "imperialist": [["S", "M"]], + "imperialists": null, + "imperialist's": null, + "imperial": [["Y", "S"]], + "imperially": null, + "imperials": null, + "imperil": [["G", "S", "L", "D"]], + "imperiling": null, + "imperils": null, + "imperilment": [["S", "M"]], + "imperiled": null, + "imperilments": null, + "imperilment's": null, + "imperiousness": [["M", "S"]], + "imperiousness's": null, + "imperiousnesses": null, + "imperious": [["Y", "P"]], + "imperiously": null, + "imperishableness": [["M"]], + "imperishableness's": null, + "imperishable": [["S", "P"]], + "imperishables": null, + "imperishably": null, + "impermanence": [["M", "S"]], + "impermanence's": null, + "impermanences": null, + "impermanent": [["Y"]], + "impermanently": null, + "impermeability": [["S", "M"]], + "impermeabilities": null, + "impermeability's": null, + "impermeableness": [["M"]], + "impermeableness's": null, + "impermeable": [["P"]], + "impermeably": null, + "impermissible": null, + "impersonality": [["M"]], + "impersonality's": null, + "impersonalized": null, + "impersonal": [["Y"]], + "impersonally": null, + "impersonate": [["X", "G", "N", "D", "S"]], + "impersonations": null, + "impersonating": null, + "impersonation": [["M"]], + "impersonated": null, + "impersonates": null, + "impersonation's": null, + "impersonator": [["S", "M"]], + "impersonators": null, + "impersonator's": null, + "impertinence": [["S", "M"]], + "impertinences": null, + "impertinence's": null, + "impertinent": [["Y", "S"]], + "impertinently": null, + "impertinents": null, + "imperturbability": [["S", "M"]], + "imperturbabilities": null, + "imperturbability's": null, + "imperturbable": null, + "imperturbably": null, + "imperviousness": [["M"]], + "imperviousness's": null, + "impervious": [["P", "Y"]], + "imperviously": null, + "impetigo": [["M", "S"]], + "impetigo's": null, + "impetigos": null, + "impetuosity": [["M", "S"]], + "impetuosity's": null, + "impetuosities": null, + "impetuousness": [["M", "S"]], + "impetuousness's": null, + "impetuousnesses": null, + "impetuous": [["Y", "P"]], + "impetuously": null, + "impetus": [["M", "S"]], + "impetus's": null, + "impetuses": null, + "impiety": [["M", "S"]], + "impiety's": null, + "impieties": null, + "impinge": [["L", "S"]], + "impingement": [["M", "S"]], + "impinges": null, + "impingement's": null, + "impingements": null, + "imping": [["G", "D"]], + "impinging": null, + "impinged": null, + "impiousness": [["S", "M"]], + "impiousnesses": null, + "impiousness's": null, + "impious": [["P", "Y"]], + "impiously": null, + "impishness": [["M", "S"]], + "impishness's": null, + "impishnesses": null, + "impish": [["Y", "P"]], + "impishly": null, + "implacability": [["S", "M"]], + "implacabilities": null, + "implacability's": null, + "implacableness": [["M"]], + "implacableness's": null, + "implacable": [["P"]], + "implacably": null, + "implantation": [["S", "M"]], + "implantations": null, + "implantation's": null, + "implant": [["B", "G", "S", "D", "R"]], + "implantable": null, + "implanting": null, + "implants": null, + "implanted": null, + "implanter": [["M"]], + "implanter's": null, + "implausibility": [["M", "S"]], + "implausibility's": null, + "implausibilities": null, + "implausible": null, + "implausibly": null, + "implementability": null, + "implementable": [["U"]], + "unimplementable": null, + "implementation": [["A"]], + "reimplementation": null, + "implementations": null, + "implementation's": null, + "implemented": [["A", "U"]], + "reimplemented": null, + "unimplemented": null, + "implementer": [["M"]], + "implementer's": null, + "implementing": [["A"]], + "reimplementing": null, + "implementor": [["M", "S"]], + "implementor's": null, + "implementors": null, + "implement": [["S", "M", "R", "D", "G", "Z", "B"]], + "implements": null, + "implement's": null, + "implementers": null, + "implicant": [["S", "M"]], + "implicants": null, + "implicant's": null, + "implicate": [["V", "G", "S", "D"]], + "implicative": [["P", "Y"]], + "implicating": null, + "implicates": null, + "implicated": null, + "implication": [["M"]], + "implication's": null, + "implicativeness": null, + "implicatively": null, + "implicitness": [["S", "M"]], + "implicitnesses": null, + "implicitness's": null, + "implicit": [["Y", "P"]], + "implicitly": null, + "implied": [["Y"]], + "impliedly": null, + "implode": [["G", "S", "D"]], + "imploding": null, + "implodes": null, + "imploded": null, + "implore": [["G", "S", "D"]], + "imploring": [["Y"]], + "implores": null, + "implored": null, + "imploringly": null, + "implosion": [["S", "M"]], + "implosions": null, + "implosion's": null, + "implosive": [["S"]], + "implosives": null, + "imply": [["G", "N", "S", "D", "X"]], + "implying": null, + "implies": null, + "implications": null, + "impoliteness": [["M", "S"]], + "impoliteness's": null, + "impolitenesses": null, + "impolite": [["Y", "P"]], + "impolitely": null, + "impoliticness": [["M"]], + "impoliticness's": null, + "impolitic": [["P", "Y"]], + "impoliticly": null, + "imponderableness": [["M"]], + "imponderableness's": null, + "imponderable": [["P", "S"]], + "imponderables": null, + "importance": [["S", "M"]], + "importances": null, + "importance's": null, + "important": [["Y"]], + "importantly": null, + "importation": [["M", "S"]], + "importation's": null, + "importations": null, + "importer": [["M"]], + "importer's": null, + "importing": [["A"]], + "reimporting": null, + "import": [["S", "Z", "G", "B", "R", "D"]], + "imports": null, + "importers": null, + "importable": null, + "imported": null, + "importunateness": [["M"]], + "importunateness's": null, + "importunate": [["P", "Y", "G", "D", "S"]], + "importunately": null, + "importunating": null, + "importunated": null, + "importunates": null, + "importuner": [["M"]], + "importuner's": null, + "importune": [["S", "R", "D", "Z", "Y", "G"]], + "importunes": null, + "importuned": null, + "importuners": null, + "importunely": null, + "importuning": null, + "importunity": [["S", "M"]], + "importunities": null, + "importunity's": null, + "imposable": null, + "impose": [["A", "S", "D", "G"]], + "reimpose": null, + "reimposes": null, + "reimposed": null, + "reimposing": null, + "imposes": null, + "imposed": null, + "imposing": [["U"]], + "imposer": [["S", "M"]], + "imposers": null, + "imposer's": null, + "imposingly": null, + "unimposing": null, + "imposition": [["S", "M"]], + "impositions": null, + "imposition's": null, + "impossibility": [["S", "M"]], + "impossibilities": null, + "impossibility's": null, + "impossibleness": [["M"]], + "impossibleness's": null, + "impossible": [["P", "S"]], + "impossibles": null, + "impossibly": null, + "imposter's": null, + "impostor": [["S", "M"]], + "impostors": null, + "impostor's": null, + "impost": [["S", "G", "M", "D"]], + "imposts": null, + "imposting": null, + "impost's": null, + "imposted": null, + "imposture": [["S", "M"]], + "impostures": null, + "imposture's": null, + "impotence": [["M", "S"]], + "impotence's": null, + "impotences": null, + "impotency": [["S"]], + "impotencies": null, + "impotent": [["S", "Y"]], + "impotents": null, + "impotently": null, + "impound": [["G", "D", "S"]], + "impounding": null, + "impounded": null, + "impounds": null, + "impoundments": null, + "impoverisher": [["M"]], + "impoverisher's": null, + "impoverish": [["L", "G", "D", "R", "S"]], + "impoverishment": [["S", "M"]], + "impoverishing": null, + "impoverished": null, + "impoverishes": null, + "impoverishments": null, + "impoverishment's": null, + "impracticableness": [["M"]], + "impracticableness's": null, + "impracticable": [["P"]], + "impracticably": null, + "impracticality": [["S", "M"]], + "impracticalities": null, + "impracticality's": null, + "impracticalness": [["M"]], + "impracticalness's": null, + "impractical": [["P", "Y"]], + "impractically": null, + "imprecate": [["N", "G", "X", "S", "D"]], + "imprecation": [["M"]], + "imprecating": null, + "imprecations": null, + "imprecates": null, + "imprecated": null, + "imprecation's": null, + "impreciseness": [["M", "S"]], + "impreciseness's": null, + "imprecisenesses": null, + "imprecise": [["P", "Y", "X", "N"]], + "imprecisely": null, + "imprecisions": null, + "imprecision": [["M"]], + "imprecision's": null, + "impregnability": [["M", "S"]], + "impregnability's": null, + "impregnabilities": null, + "impregnableness": [["M"]], + "impregnableness's": null, + "impregnable": [["P"]], + "impregnably": null, + "impregnate": [["D", "S", "X", "N", "G"]], + "impregnated": null, + "impregnates": null, + "impregnations": null, + "impregnation": [["M"]], + "impregnating": null, + "impregnation's": null, + "impresario": [["S", "M"]], + "impresarios": null, + "impresario's": null, + "impress": [["D", "R", "S", "G", "V", "L"]], + "impressed": [["U"]], + "impresser": [["M"]], + "impresses": null, + "impressing": null, + "impressive": [["Y", "P"]], + "impressment": [["M"]], + "unimpressed": null, + "impresser's": null, + "impressibility": [["M", "S"]], + "impressibility's": null, + "impressibilities": null, + "impressible": null, + "impressionability": [["S", "M"]], + "impressionabilities": null, + "impressionability's": null, + "impressionableness": [["M"]], + "impressionableness's": null, + "impressionable": [["P"]], + "impression": [["B", "M", "S"]], + "impression's": null, + "impressions": null, + "impressionism": [["S", "M"]], + "impressionisms": null, + "impressionism's": null, + "impressionistic": null, + "impressionist": [["M", "S"]], + "impressionist's": null, + "impressionists": null, + "impressiveness": [["M", "S"]], + "impressiveness's": null, + "impressivenesses": null, + "impressively": null, + "impressment's": null, + "imprimatur": [["S", "M"]], + "imprimaturs": null, + "imprimatur's": null, + "imprinter": [["M"]], + "imprinter's": null, + "imprinting": [["M"]], + "imprinting's": null, + "imprint": [["S", "Z", "D", "R", "G", "M"]], + "imprints": null, + "imprinters": null, + "imprinted": null, + "imprint's": null, + "imprison": [["G", "L", "D", "S"]], + "imprisoning": null, + "imprisonment": [["M", "S"]], + "imprisoned": null, + "imprisons": null, + "imprisonment's": null, + "imprisonments": null, + "improbability": [["M", "S"]], + "improbability's": null, + "improbabilities": null, + "improbableness": [["M"]], + "improbableness's": null, + "improbable": [["P"]], + "improbably": null, + "impromptu": [["S"]], + "impromptus": null, + "improperness": [["M"]], + "improperness's": null, + "improper": [["P", "Y"]], + "improperly": null, + "impropitious": null, + "impropriety": [["S", "M"]], + "improprieties": null, + "impropriety's": null, + "improved": [["U"]], + "unimproved": null, + "improvement": [["M", "S"]], + "improvement's": null, + "improvements": null, + "improver": [["M"]], + "improver's": null, + "improve": [["S", "R", "D", "G", "B", "L"]], + "improves": null, + "improving": null, + "improvable": null, + "improvidence": [["S", "M"]], + "improvidences": null, + "improvidence's": null, + "improvident": [["Y"]], + "improvidently": null, + "improvisational": null, + "improvisation": [["M", "S"]], + "improvisation's": null, + "improvisations": null, + "improvisatory": null, + "improviser": [["M"]], + "improviser's": null, + "improvise": [["R", "S", "D", "Z", "G"]], + "improvises": null, + "improvised": null, + "improvisers": null, + "improvising": null, + "imprudence": [["S", "M"]], + "imprudences": null, + "imprudence's": null, + "imprudent": [["Y"]], + "imprudently": null, + "imp": [["S", "G", "M", "D", "R", "Y"]], + "imps": null, + "imp's": null, + "imper": null, + "impudence": [["M", "S"]], + "impudence's": null, + "impudences": null, + "impudent": [["Y"]], + "impudently": null, + "impugner": [["M"]], + "impugner's": null, + "impugn": [["S", "R", "D", "Z", "G", "B"]], + "impugns": null, + "impugned": null, + "impugners": null, + "impugning": null, + "impugnable": null, + "impulse": [["X", "M", "V", "G", "N", "S", "D"]], + "impulsions": null, + "impulse's": null, + "impulsive": [["Y", "P"]], + "impulsing": null, + "impulsion": [["M"]], + "impulses": null, + "impulsed": null, + "impulsion's": null, + "impulsiveness": [["M", "S"]], + "impulsiveness's": null, + "impulsivenesses": null, + "impulsively": null, + "impunity": [["S", "M"]], + "impunities": null, + "impunity's": null, + "impureness": [["M"]], + "impureness's": null, + "impure": [["R", "P", "T", "Y"]], + "impurer": null, + "impurest": null, + "impurely": null, + "impurity": [["M", "S"]], + "impurity's": null, + "impurities": null, + "imputation": [["S", "M"]], + "imputations": null, + "imputation's": null, + "impute": [["S", "D", "B", "G"]], + "imputes": null, + "imputed": null, + "imputable": null, + "imputing": null, + "Imus": [["M"]], + "Imus's": null, + "IN": null, + "inaction": null, + "inactive": null, + "inadequates": null, + "inadvertence": [["M", "S"]], + "inadvertence's": null, + "inadvertences": null, + "inadvertent": [["Y"]], + "inadvertently": null, + "inalienability": [["M", "S"]], + "inalienability's": null, + "inalienabilities": null, + "inalienably": null, + "inalterableness": [["M"]], + "inalterableness's": null, + "Ina": [["M"]], + "Ina's": null, + "inamorata": [["M", "S"]], + "inamorata's": null, + "inamoratas": null, + "inane": [["S", "R", "P", "Y", "T"]], + "inanes": null, + "inaner": null, + "inaneness": null, + "inanely": null, + "inanest": null, + "inanimatenesses": null, + "inanimate": [["P"]], + "inanity": [["M", "S"]], + "inanity's": null, + "inanities": null, + "inappeasable": null, + "inappropriate": [["P"]], + "inarticulate": [["P"]], + "in": [["A", "S"]], + "rein": [["G", "D", "M"]], + "reins": null, + "ins": null, + "inasmuch": null, + "inaugural": [["S"]], + "inaugurals": null, + "inaugurate": [["X", "S", "D", "N", "G"]], + "inaugurations": null, + "inaugurates": null, + "inaugurated": null, + "inauguration": [["M"]], + "inaugurating": null, + "inauguration's": null, + "inauthenticity": null, + "inbounding": null, + "inbred": [["S"]], + "inbreds": null, + "inbreed": [["J", "G"]], + "inbreedings": null, + "incalculableness's": null, + "incalculably": null, + "incandescence": [["S", "M"]], + "incandescences": null, + "incandescence's": null, + "incandescent": [["Y", "S"]], + "incandescently": null, + "incandescents": null, + "incant": null, + "incantation": [["S", "M"]], + "incantations": null, + "incantation's": null, + "incantatory": null, + "incapables": null, + "incapacitate": [["G", "N", "S", "D"]], + "incapacitating": null, + "incapacitation": [["M"]], + "incapacitates": null, + "incapacitated": null, + "incapacitation's": null, + "incarcerate": [["X", "G", "N", "D", "S"]], + "incarcerations": null, + "incarcerating": null, + "incarceration": [["M"]], + "incarcerated": null, + "incarcerates": null, + "incarceration's": null, + "incarnadine": [["G", "D", "S"]], + "incarnadining": null, + "incarnadined": null, + "incarnadines": null, + "incarnate": [["A", "G", "S", "D", "N", "X"]], + "reincarnate": null, + "reincarnating": null, + "reincarnates": null, + "reincarnated": null, + "reincarnation": null, + "reincarnations": null, + "incarnating": null, + "incarnates": null, + "incarnated": null, + "reincarnation's": null, + "Inca": [["S", "M"]], + "Incas": null, + "Inca's": null, + "incendiary": [["S"]], + "incendiaries": null, + "incense": [["M", "G", "D", "S"]], + "incense's": null, + "incensing": null, + "incensed": null, + "incenses": null, + "incentive": [["E", "S", "M"]], + "disincentive": null, + "disincentives": null, + "disincentive's": null, + "incentives": null, + "incentive's": null, + "incentively": null, + "incept": [["D", "G", "V", "S"]], + "incepted": null, + "incepting": null, + "inceptive": [["Y"]], + "incepts": null, + "inception": [["M", "S"]], + "inception's": null, + "inceptions": null, + "inceptively": null, + "inceptor": [["M"]], + "inceptor's": null, + "incessant": [["Y"]], + "incessantly": null, + "incest": [["S", "M"]], + "incests": null, + "incest's": null, + "incestuousness": [["M", "S"]], + "incestuousness's": null, + "incestuousnesses": null, + "incestuous": [["P", "Y"]], + "incestuously": null, + "inch": [["G", "M", "D", "S"]], + "inching": null, + "inch's": null, + "inched": null, + "inches": null, + "inchoate": [["D", "S", "G"]], + "inchoated": null, + "inchoates": null, + "inchoating": null, + "Inchon": [["M"]], + "Inchon's": null, + "inchworm": [["M", "S"]], + "inchworm's": null, + "inchworms": null, + "incidence": [["M", "S"]], + "incidence's": null, + "incidences": null, + "incidental": [["Y", "S"]], + "incidentally": null, + "incidentals": null, + "incident": [["S", "M"]], + "incidents": null, + "incident's": null, + "incinerate": [["X", "N", "G", "S", "D"]], + "incinerations": null, + "incineration": [["M"]], + "incinerating": null, + "incinerates": null, + "incinerated": null, + "incineration's": null, + "incinerator": [["S", "M"]], + "incinerators": null, + "incinerator's": null, + "incipience": [["S", "M"]], + "incipiences": null, + "incipience's": null, + "incipiency": [["M"]], + "incipiency's": null, + "incipient": [["Y"]], + "incipiently": null, + "incise": [["S", "D", "V", "G", "N", "X"]], + "incises": null, + "incised": null, + "incisive": [["Y", "P"]], + "incising": null, + "incision": [["M"]], + "incisions": null, + "incision's": null, + "incisiveness": [["M", "S"]], + "incisiveness's": null, + "incisivenesses": null, + "incisively": null, + "incisor": [["M", "S"]], + "incisor's": null, + "incisors": null, + "incitement": [["M", "S"]], + "incitement's": null, + "incitements": null, + "inciter": [["M"]], + "inciter's": null, + "inciters": null, + "incl": null, + "inclination": [["E", "S", "M"]], + "disinclination": null, + "disinclinations": null, + "disinclination's": null, + "inclinations": null, + "inclination's": null, + "incline": [["E", "G", "S", "D"]], + "disincline": null, + "disinclining": null, + "disinclines": null, + "disinclined": null, + "inclining": [["M"]], + "inclines": null, + "inclined": null, + "incliner": [["M"]], + "incliner's": null, + "inclining's": null, + "include": [["G", "D", "S"]], + "including": null, + "included": null, + "includes": null, + "inclusion": [["M", "S"]], + "inclusion's": null, + "inclusions": null, + "inclusiveness": [["M", "S"]], + "inclusiveness's": null, + "inclusivenesses": null, + "inclusive": [["P", "Y"]], + "inclusively": null, + "Inc": [["M"]], + "Inc's": null, + "incognito": [["S"]], + "incognitos": null, + "incoherency's": null, + "income's": null, + "incommode": [["D", "G"]], + "incommoded": null, + "incommoding": null, + "incommunicado": null, + "incomparable": null, + "incompetent's": null, + "incompetents": null, + "incomplete": [["P"]], + "inconceivability": [["M", "S"]], + "inconceivability's": null, + "inconceivabilities": null, + "inconceivableness": [["M"]], + "inconceivableness's": null, + "incondensable": null, + "incongruousnesses": null, + "inconsiderableness": [["M"]], + "inconsiderableness's": null, + "inconsistence": null, + "inconsolableness": [["M"]], + "inconsolableness's": null, + "inconsolably": null, + "incontestability": [["S", "M"]], + "incontestabilities": null, + "incontestability's": null, + "incontestably": null, + "incontrovertibly": null, + "inconvenienced": null, + "inconveniencing": null, + "inconvertibility": null, + "inconvertible": null, + "incorporable": null, + "incorporated": [["U", "E"]], + "unincorporated": null, + "disincorporated": null, + "incorporating": null, + "reincorporating": null, + "reincorporate": null, + "reincorporates": null, + "reincorporated": null, + "reincorporations": null, + "reincorporation": null, + "incorrect": [["P"]], + "incorrigibility": [["M", "S"]], + "incorrigibility's": null, + "incorrigibilities": null, + "incorrigibleness": [["M"]], + "incorrigibleness's": null, + "incorrigibles": null, + "incorrigibly": null, + "incorruptibles": null, + "incorruptibly": null, + "increasings": null, + "increasable": null, + "increaser's": null, + "increasingly": null, + "incredibleness": [["M"]], + "incredibleness's": null, + "incremental": [["Y"]], + "incrementally": null, + "incrementation": null, + "increment": [["D", "M", "G", "S"]], + "incremented": null, + "increment's": null, + "incrementing": null, + "increments": null, + "incriminate": [["X", "N", "G", "S", "D"]], + "incriminations": null, + "incrimination": [["M"]], + "incriminating": null, + "incriminates": null, + "incriminated": null, + "incrimination's": null, + "incriminatory": null, + "incrustation": [["S", "M"]], + "incrustations": null, + "incrustation's": null, + "inc": [["T"]], + "incubate": [["X", "N", "G", "V", "D", "S"]], + "incubations": null, + "incubation": [["M"]], + "incubating": null, + "incubative": null, + "incubated": null, + "incubates": null, + "incubation's": null, + "incubator": [["M", "S"]], + "incubator's": null, + "incubators": null, + "incubus": [["M", "S"]], + "incubus's": null, + "incubuses": null, + "inculcate": [["S", "D", "G", "N", "X"]], + "inculcates": null, + "inculcated": null, + "inculcating": null, + "inculcation": [["M"]], + "inculcations": null, + "inculcation's": null, + "inculpate": [["S", "D", "G"]], + "inculpates": null, + "inculpated": null, + "inculpating": null, + "incumbency": [["M", "S"]], + "incumbency's": null, + "incumbencies": null, + "incumbent": [["S"]], + "incumbents": null, + "incunabula": null, + "incunabulum": null, + "incurables": null, + "incurious": null, + "incursion": [["S", "M"]], + "incursions": null, + "incursion's": null, + "ind": null, + "indebtedness": [["S", "M"]], + "indebtednesses": null, + "indebtedness's": null, + "indebted": [["P"]], + "indefatigableness": [["M"]], + "indefatigableness's": null, + "indefatigable": [["P"]], + "indefatigably": null, + "indefeasible": null, + "indefeasibly": null, + "indefinableness": [["M"]], + "indefinableness's": null, + "indefinables": null, + "indefinites": null, + "indelible": null, + "indelibly": null, + "indemnification": [["M"]], + "indemnification's": null, + "indemnify": [["N", "X", "S", "D", "G"]], + "indemnifications": null, + "indemnifies": null, + "indemnified": null, + "indemnifying": null, + "indemnity": [["S", "M"]], + "indemnities": null, + "indemnity's": null, + "indentation": [["S", "M"]], + "indentations": null, + "indentation's": null, + "unindented": null, + "indenter": [["M"]], + "indenter's": null, + "indention": [["S", "M"]], + "indentions": null, + "indention's": null, + "indentured": null, + "indenturing": null, + "Independence": [["M"]], + "Independence's": null, + "indescribableness": [["M"]], + "indescribableness's": null, + "indescribables": null, + "indescribably": null, + "indestructibleness": [["M"]], + "indestructibleness's": null, + "indestructibly": null, + "indeterminably": null, + "indeterminacy's": null, + "indeterminacies": null, + "indeterminism": null, + "indexation": [["S"]], + "indexations": null, + "indexer": [["M"]], + "indexer's": null, + "index": [["M", "R", "D", "Z", "G", "B"]], + "index's": null, + "indexed": null, + "indexers": null, + "indexing": null, + "indexable": null, + "India": [["M"]], + "India's": null, + "Indiana": [["M"]], + "Indiana's": null, + "Indianan": [["S"]], + "Indianans": null, + "Indianapolis": [["M"]], + "Indianapolis's": null, + "Indianian": [["S"]], + "Indianians": null, + "Indian": [["S", "M"]], + "Indians": null, + "Indian's": null, + "indicant": [["M", "S"]], + "indicant's": null, + "indicants": null, + "indicate": [["D", "S", "N", "G", "V", "X"]], + "indicated": null, + "indicates": null, + "indication": [["M"]], + "indicating": null, + "indicative": [["S", "Y"]], + "indications": null, + "indication's": null, + "indicatives": null, + "indicatively": null, + "indicator": [["M", "S"]], + "indicator's": null, + "indicators": null, + "indices's": null, + "indicter": [["M"]], + "indicter's": null, + "indictment": [["S", "M"]], + "indictments": null, + "indictment's": null, + "indict": [["S", "G", "L", "B", "D", "R"]], + "indicts": null, + "indicting": null, + "indictable": null, + "indicted": null, + "indifference": null, + "indigence": [["M", "S"]], + "indigence's": null, + "indigences": null, + "indigenousness": [["M"]], + "indigenousness's": null, + "indigenous": [["Y", "P"]], + "indigenously": null, + "indigent": [["S", "Y"]], + "indigents": null, + "indigently": null, + "indigestibles": null, + "indignant": [["Y"]], + "indignantly": null, + "indignation": [["M", "S"]], + "indignation's": null, + "indignations": null, + "indigo": [["S", "M"]], + "indigos": null, + "indigo's": null, + "Indira": [["M"]], + "Indira's": null, + "indirect": [["P", "G"]], + "indirecting": null, + "indiscreet": [["P"]], + "indiscreetness": null, + "indiscriminateness": [["M"]], + "indiscriminateness's": null, + "indiscriminate": [["P", "Y"]], + "indiscriminately": null, + "indispensability": [["M", "S"]], + "indispensability's": null, + "indispensabilities": null, + "indispensableness": [["M"]], + "indispensableness's": null, + "indispensables": null, + "indispensably": null, + "indisputableness": [["M"]], + "indisputableness's": null, + "indissolubleness": [["M"]], + "indissolubleness's": null, + "indissolubly": null, + "indistinguishableness": [["M"]], + "indistinguishableness's": null, + "indite": [["S", "D", "G"]], + "indites": null, + "indited": null, + "inditing": null, + "indium": [["S", "M"]], + "indiums": null, + "indium's": null, + "individualism": [["M", "S"]], + "individualism's": null, + "individualisms": null, + "individualistic": null, + "individualistically": null, + "individualist": [["M", "S"]], + "individualist's": null, + "individualists": null, + "individuality": [["M", "S"]], + "individuality's": null, + "individualities": null, + "individualization": [["S", "M"]], + "individualizations": null, + "individualization's": null, + "individualize": [["D", "R", "S", "G", "Z"]], + "individualized": [["U"]], + "individualizer": [["M"]], + "individualizes": [["U"]], + "individualizing": [["Y"]], + "individualizers": null, + "unindividualized": null, + "individualizer's": null, + "unindividualizes": null, + "individualizingly": null, + "individual": [["Y", "M", "S"]], + "individually": null, + "individual's": null, + "individuals": null, + "individuate": [["D", "S", "X", "G", "N"]], + "individuated": null, + "individuates": null, + "individuations": null, + "individuating": null, + "individuation": [["M"]], + "individuation's": null, + "indivisibleness": [["M"]], + "indivisibleness's": null, + "indivisibles": null, + "indivisibly": null, + "Ind": [["M"]], + "Ind's": null, + "Indochina": [["M"]], + "Indochina's": null, + "Indochinese": null, + "indoctrinate": [["G", "N", "X", "S", "D"]], + "indoctrinating": null, + "indoctrination": [["M"]], + "indoctrinations": null, + "indoctrinates": null, + "indoctrinated": null, + "indoctrination's": null, + "indoctrinator": [["S", "M"]], + "indoctrinators": null, + "indoctrinator's": null, + "indolence": [["S", "M"]], + "indolences": null, + "indolence's": null, + "indolent": [["Y"]], + "indolently": null, + "indomitableness": [["M"]], + "indomitableness's": null, + "indomitable": [["P"]], + "indomitably": null, + "Indonesia": [["M"]], + "Indonesia's": null, + "Indonesian": [["S"]], + "Indonesians": null, + "indoor": null, + "Indore": [["M"]], + "Indore's": null, + "Indra": [["M"]], + "Indra's": null, + "indubitableness": [["M"]], + "indubitableness's": null, + "indubitable": [["P"]], + "indubitably": null, + "inducement": [["M", "S"]], + "inducement's": null, + "inducements": null, + "inducer": [["M"]], + "inducer's": null, + "inducers": null, + "inducing": null, + "induces": null, + "induced": null, + "inducible": null, + "inductance": [["M", "S"]], + "inductance's": null, + "inductances": null, + "inductee": [["S", "M"]], + "inductees": null, + "inductee's": null, + "induct": [["G", "V"]], + "inducting": null, + "inductive": [["P", "Y"]], + "induction": [["S", "M"]], + "inductions": null, + "induction's": null, + "inductiveness": [["M"]], + "inductiveness's": null, + "inductively": null, + "inductor": [["M", "S"]], + "inductor's": null, + "inductors": null, + "indulge": [["G", "D", "R", "S"]], + "indulging": null, + "indulged": null, + "indulger": [["M"]], + "indulges": null, + "indulgence": [["S", "D", "G", "M"]], + "indulgences": null, + "indulgenced": null, + "indulgencing": null, + "indulgence's": null, + "indulgent": [["Y"]], + "indulgently": null, + "indulger's": null, + "Indus": [["M"]], + "Indus's": null, + "industrialism": [["M", "S"]], + "industrialism's": null, + "industrialisms": null, + "industrialist": [["M", "S"]], + "industrialist's": null, + "industrialists": null, + "industrialization": [["M", "S"]], + "industrialization's": null, + "industrializations": null, + "industrialized": [["U"]], + "unindustrialized": [["M", "S"]], + "industrialize": [["S", "D", "G"]], + "industrializes": null, + "industrializing": null, + "industrial": [["S", "Y"]], + "industrials": null, + "industrially": null, + "industriousness": [["S", "M"]], + "industriousnesses": null, + "industriousness's": null, + "industrious": [["Y", "P"]], + "industriously": null, + "industry": [["S", "M"]], + "industries": null, + "industry's": null, + "Indy": [["S", "M"]], + "Indies": null, + "Indy's": null, + "inebriate": [["N", "G", "S", "D", "X"]], + "inebriation": [["M"]], + "inebriating": null, + "inebriates": null, + "inebriated": null, + "inebriations": null, + "inebriation's": null, + "inedible": null, + "ineducable": null, + "ineffability": [["M", "S"]], + "ineffability's": null, + "ineffabilities": null, + "ineffableness": [["M"]], + "ineffableness's": null, + "ineffable": [["P"]], + "ineffably": null, + "inelastic": null, + "ineligibly": null, + "ineluctable": null, + "ineluctably": null, + "ineptitude": [["S", "M"]], + "ineptitudes": null, + "ineptitude's": null, + "ineptness": [["M", "S"]], + "ineptness's": null, + "ineptnesses": null, + "inept": [["Y", "P"]], + "ineptly": null, + "inequivalent": null, + "inerrant": null, + "inertial": [["Y"]], + "inertially": null, + "inertia": [["S", "M"]], + "inertias": null, + "inertia's": null, + "inertness": [["M", "S"]], + "inertness's": null, + "inertnesses": null, + "inert": [["S", "P", "Y"]], + "inerts": null, + "inertly": null, + "Ines": null, + "inescapably": null, + "Inesita": [["M"]], + "Inesita's": null, + "Inessa": [["M"]], + "Inessa's": null, + "inestimably": null, + "inevitability": [["M", "S"]], + "inevitability's": null, + "inevitabilities": null, + "inevitableness": [["M"]], + "inevitableness's": null, + "inevitable": [["P"]], + "inevitably": null, + "inexact": [["P"]], + "inexhaustibleness": [["M"]], + "inexhaustibleness's": null, + "inexhaustibly": null, + "inexorability": [["M"]], + "inexorability's": null, + "inexorableness": [["M"]], + "inexorableness's": null, + "inexorable": [["P"]], + "inexorably": null, + "inexpedience's": null, + "inexplicableness": [["M"]], + "inexplicableness's": null, + "inexplicably": null, + "inexplicit": null, + "inexpressibility's": null, + "inexpressibleness": [["M"]], + "inexpressibleness's": null, + "inexpressibles": null, + "inextricably": null, + "Inez": [["M"]], + "Inez's": null, + "infamous": null, + "infamy": [["S", "M"]], + "infamies": null, + "infamy's": null, + "infancy's": null, + "infanticide": [["M", "S"]], + "infanticide's": null, + "infanticides": null, + "infantile": null, + "infant": [["M", "S"]], + "infant's": null, + "infants": null, + "infantryman": [["M"]], + "infantryman's": null, + "infantrymen": null, + "infantry": [["S", "M"]], + "infantries": null, + "infantry's": null, + "infarction": [["S", "M"]], + "infarctions": null, + "infarction's": null, + "infarct": [["S", "M"]], + "infarcts": null, + "infarct's": null, + "infatuate": [["X", "N", "G", "S", "D"]], + "infatuations": null, + "infatuation": [["M"]], + "infatuating": null, + "infatuates": null, + "infatuated": null, + "infatuation's": null, + "infauna": null, + "infected": [["U"]], + "uninfected": null, + "infecter": null, + "infect": [["E", "S", "G", "D", "A"]], + "disinfect": null, + "disinfects": null, + "disinfecting": null, + "disinfected": null, + "infects": null, + "reinfects": null, + "infecting": null, + "reinfecting": null, + "reinfected": null, + "reinfect": null, + "infection": [["E", "A", "S", "M"]], + "disinfection": null, + "disinfections": null, + "disinfection's": null, + "reinfection": null, + "reinfections": null, + "reinfection's": null, + "infections": null, + "infection's": null, + "infectiousness": [["M", "S"]], + "infectiousness's": null, + "infectiousnesses": null, + "infectious": [["P", "Y"]], + "infectiously": null, + "infective": null, + "inferable": null, + "inference": [["G", "M", "S", "R"]], + "inferencing": null, + "inference's": null, + "inferences": null, + "inferencer": null, + "inferential": [["Y"]], + "inferentially": null, + "inferiority": [["M", "S"]], + "inferiority's": null, + "inferiorities": null, + "inferior": [["S", "M", "Y"]], + "inferiors": null, + "inferior's": null, + "inferiorly": null, + "infernal": [["Y"]], + "infernally": null, + "inferno": [["M", "S"]], + "inferno's": null, + "infernos": null, + "inferred": null, + "inferring": null, + "infertile": null, + "infestation": [["M", "S"]], + "infestation's": null, + "infestations": null, + "infester": [["M"]], + "infester's": null, + "infest": [["G", "S", "D", "R"]], + "infesting": null, + "infests": null, + "infested": null, + "infidel": [["S", "M"]], + "infidels": null, + "infidel's": null, + "infighting's": null, + "infill": [["M", "G"]], + "infill's": null, + "infilling": null, + "infiltrate": [["V"]], + "infiltrative": null, + "infiltrator": [["M", "S"]], + "infiltrator's": null, + "infiltrators": null, + "infinitesimal": [["S", "Y"]], + "infinitesimals": null, + "infinitesimally": null, + "infinitive": [["Y", "M", "S"]], + "infinitival": null, + "infinitively": null, + "infinitive's": null, + "infinitives": null, + "infinitude": [["M", "S"]], + "infinitude's": null, + "infinitudes": null, + "infinitum": null, + "infinity": [["S", "M"]], + "infinities": null, + "infinity's": null, + "infirmary": [["S", "M"]], + "infirmaries": null, + "infirmary's": null, + "infirmity": [["S", "M"]], + "infirmities": null, + "infirmity's": null, + "infix": [["M"]], + "infix's": null, + "inflammableness": [["M"]], + "inflammableness's": null, + "inflammation": [["M", "S"]], + "inflammation's": null, + "inflammations": null, + "inflammatory": null, + "inflatable": [["M", "S"]], + "inflatable's": null, + "inflatables": null, + "inflate": [["N", "G", "B", "D", "R", "S", "X"]], + "inflation": [["E", "S", "M"]], + "inflating": null, + "inflated": null, + "inflater": [["M"]], + "inflates": null, + "inflations": null, + "inflater's": null, + "inflationary": null, + "disinflation": null, + "disinflations": null, + "disinflation's": null, + "inflation's": null, + "inflect": [["G", "V", "D", "S"]], + "inflecting": null, + "inflective": null, + "inflected": null, + "inflects": null, + "inflectional": [["Y"]], + "inflectionally": null, + "inflection": [["S", "M"]], + "inflections": null, + "inflection's": null, + "inflexibleness": [["M"]], + "inflexibleness's": null, + "inflexion": [["S", "M"]], + "inflexions": null, + "inflexion's": null, + "inflict": [["D", "R", "S", "G", "V"]], + "inflicted": null, + "inflicter": [["M"]], + "inflicts": null, + "inflicting": null, + "inflictive": null, + "inflicter's": null, + "infliction": [["S", "M"]], + "inflictions": null, + "infliction's": null, + "inflow's": null, + "influenced": [["U"]], + "uninfluenced": null, + "influencer": [["M"]], + "influencer's": null, + "influence": [["S", "R", "D", "G", "M"]], + "influences": null, + "influencing": null, + "influence's": null, + "influent": null, + "influential": [["S", "Y"]], + "influentials": null, + "influentially": null, + "influenza": [["M", "S"]], + "influenza's": null, + "influenzas": null, + "infomercial": [["S"]], + "infomercials": null, + "Informatica": [["M"]], + "Informatica's": null, + "informatics": null, + "informational": null, + "disinformation": null, + "disinformations": null, + "informativenesses": null, + "informative": [["U", "Y"]], + "uninformative": null, + "uninformatively": null, + "informatory": null, + "uninformed": null, + "informer's": null, + "info": [["S", "M"]], + "infos": null, + "info's": null, + "infotainment": [["S"]], + "infotainments": null, + "infra": null, + "infrared": [["S", "M"]], + "infrareds": null, + "infrared's": null, + "infrasonic": null, + "infrastructural": null, + "infrastructure": [["M", "S"]], + "infrastructure's": null, + "infrastructures": null, + "infrequence": [["S"]], + "infrequences": null, + "infringement": [["S", "M"]], + "infringer": [["M"]], + "infringements": null, + "infringement's": null, + "infringer's": null, + "infuriate": [["G", "N", "Y", "S", "D"]], + "infuriating": [["Y"]], + "infuriation": [["M"]], + "infuriately": null, + "infuriates": null, + "infuriated": null, + "infuriatingly": null, + "infuriation's": null, + "infuser": [["M"]], + "infuser's": null, + "infusers": null, + "infusibleness": [["M"]], + "infusibleness's": null, + "infers": null, + "Ingaberg": [["M"]], + "Ingaberg's": null, + "Ingaborg": [["M"]], + "Ingaborg's": null, + "Inga": [["M"]], + "Inga's": null, + "Ingamar": [["M"]], + "Ingamar's": null, + "Ingar": [["M"]], + "Ingar's": null, + "Ingeberg": [["M"]], + "Ingeberg's": null, + "Ingeborg": [["M"]], + "Ingeborg's": null, + "Ingelbert": [["M"]], + "Ingelbert's": null, + "Ingemar": [["M"]], + "Ingemar's": null, + "ingeniousness": [["M", "S"]], + "ingeniousness's": null, + "ingeniousnesses": null, + "ingenious": [["Y", "P"]], + "ingeniously": null, + "ing�nue": [["S"]], + "ing�nues": null, + "ingenuity": [["S", "M"]], + "ingenuities": null, + "ingenuity's": null, + "ingenuous": [["E", "Y"]], + "disingenuous": null, + "disingenuously": null, + "ingenuously": null, + "ingenuousness": [["M", "S"]], + "ingenuousness's": null, + "ingenuousnesses": null, + "Inger": [["M"]], + "Inger's": null, + "Inge": [["R", "M"]], + "Inge's": null, + "Ingersoll": [["M"]], + "Ingersoll's": null, + "ingest": [["D", "G", "V", "S"]], + "ingested": null, + "ingesting": null, + "ingestive": null, + "ingests": null, + "ingestible": null, + "ingestion": [["S", "M"]], + "ingestions": null, + "ingestion's": null, + "Inglebert": [["M"]], + "Inglebert's": null, + "inglenook": [["M", "S"]], + "inglenook's": null, + "inglenooks": null, + "Inglewood": [["M"]], + "Inglewood's": null, + "Inglis": [["M"]], + "Inglis's": null, + "Ingmar": [["M"]], + "Ingmar's": null, + "ingoing": null, + "ingots": null, + "ingot's": null, + "ingoted": null, + "ingoting": null, + "ingrainedly": null, + "Ingra": [["M"]], + "Ingra's": null, + "Ingram": [["M"]], + "Ingram's": null, + "ingrate": [["M"]], + "ingrate's": null, + "ingratiate": [["D", "S", "G", "N", "X"]], + "ingratiated": null, + "ingratiates": null, + "ingratiating": [["Y"]], + "ingratiation": [["M"]], + "ingratiations": null, + "ingratiatingly": null, + "ingratiation's": null, + "ingredient": [["S", "M"]], + "ingredients": null, + "ingredient's": null, + "Ingres": [["M"]], + "Ingres's": null, + "ingression": [["M"]], + "ingression's": null, + "ingress": [["M", "S"]], + "ingress's": null, + "ingresses": null, + "Ingrid": [["M"]], + "Ingrid's": null, + "Ingrim": [["M"]], + "Ingrim's": null, + "ingrownness": null, + "inguinal": null, + "Ingunna": [["M"]], + "Ingunna's": null, + "uninhabitable": null, + "inhabitance": null, + "uninhabited": null, + "inhabiter": [["M"]], + "inhabiter's": null, + "inhalant": [["S"]], + "inhalants": null, + "inhalation": [["S", "M"]], + "inhalations": null, + "inhalation's": null, + "inhalator": [["S", "M"]], + "inhalators": null, + "inhalator's": null, + "inhalers": null, + "inhered": null, + "inhering": null, + "inherent": [["Y"]], + "inherently": null, + "inheritableness": [["M"]], + "inheritableness's": null, + "inheritable": [["P"]], + "inheritance": [["E", "M", "S"]], + "disinheritance": null, + "disinheritance's": null, + "disinheritances": null, + "inheritance's": null, + "inheritances": null, + "inherit": [["B", "D", "S", "G"]], + "inherited": [["E"]], + "inherits": [["E"]], + "inheriting": [["E"]], + "disinherited": null, + "disinheriting": null, + "inheritors": null, + "inheritress": [["M", "S"]], + "inheritress's": null, + "inheritresses": null, + "inheritrix": [["M", "S"]], + "inheritrix's": null, + "inheritrixes": null, + "disinherits": null, + "inhibit": [["D", "V", "G", "S"]], + "inhibited": [["U"]], + "inhibitive": null, + "inhibiting": null, + "inhibits": null, + "uninhibited": [["Y", "P"]], + "inhibiter's": null, + "inhibition": [["M", "S"]], + "inhibition's": null, + "inhibitions": null, + "inhibitor": [["M", "S"]], + "inhibitor's": null, + "inhibitors": null, + "inhibitory": null, + "inhomogeneous": null, + "inhospitableness": [["M"]], + "inhospitableness's": null, + "inhospitality": null, + "Inigo": [["M"]], + "Inigo's": null, + "inimical": [["Y"]], + "inimically": null, + "inimitableness": [["M"]], + "inimitableness's": null, + "inimitably": null, + "inion": null, + "iniquitousness": [["M"]], + "iniquitousness's": null, + "iniquitous": [["P", "Y"]], + "iniquitously": null, + "iniquity": [["M", "S"]], + "iniquity's": null, + "iniquities": null, + "initialer": [["M"]], + "initialer's": null, + "initial": [["G", "S", "P", "R", "D", "Y"]], + "initialing": null, + "initials": null, + "initialness": null, + "initialed": null, + "initially": null, + "initialization": [["A"]], + "reinitialization": null, + "initializations": null, + "initialization's": null, + "initialize": [["A", "S", "D", "G"]], + "reinitialize": null, + "reinitializes": null, + "reinitialized": null, + "reinitializing": null, + "initializes": null, + "initialized": [["U"]], + "initializing": null, + "uninitialized": null, + "initializer": [["S"]], + "initializers": null, + "initiates": null, + "initiate": [["U", "D"]], + "uninitiate": null, + "uninitiated": null, + "initiated": null, + "initiating": null, + "initiation": [["S", "M"]], + "initiations": null, + "initiation's": null, + "initiative": [["S", "M"]], + "initiatives": null, + "initiative's": null, + "initiator": [["M", "S"]], + "initiator's": null, + "initiators": null, + "initiatory": null, + "injectable": [["U"]], + "uninjectable": null, + "inject": [["G", "V", "S", "D", "B"]], + "injecting": null, + "injective": null, + "injects": null, + "injected": null, + "injection": [["M", "S"]], + "injection's": null, + "injections": null, + "injector": [["S", "M"]], + "injectors": null, + "injector's": null, + "injunctive": null, + "injured": [["U"]], + "uninjured": null, + "injurer": [["M"]], + "injurer's": null, + "injure": [["S", "R", "D", "Z", "G"]], + "injures": null, + "injurers": null, + "injuring": null, + "injuriousness": [["M"]], + "injuriousness's": null, + "injurious": [["Y", "P"]], + "injuriously": null, + "inkblot": [["S", "M"]], + "inkblots": null, + "inkblot's": null, + "inker": [["M"]], + "inker's": null, + "inkiness": [["M", "S"]], + "inkiness's": null, + "inkinesses": null, + "inkling": [["S", "M"]], + "inklings": null, + "inkling's": null, + "inkstand": [["S", "M"]], + "inkstands": null, + "inkstand's": null, + "inkwell": [["S", "M"]], + "inkwells": null, + "inkwell's": null, + "inky": [["T", "P"]], + "inkiest": null, + "ink": [["Z", "D", "R", "J"]], + "inkers": null, + "inked": null, + "inkings": null, + "inland": null, + "inlander": [["M"]], + "inlander's": null, + "inlay": [["R", "G"]], + "inlayer": null, + "inlaying": null, + "inletting": null, + "inly": [["G"]], + "inlying": null, + "inmost": null, + "Inna": [["M"]], + "Inna's": null, + "innards": null, + "innateness": [["S", "M"]], + "innatenesses": null, + "innateness's": null, + "innate": [["Y", "P"]], + "innately": null, + "innermost": [["S"]], + "innermosts": null, + "innersole": [["S"]], + "innersoles": null, + "innerspring": null, + "innervate": [["G", "N", "S", "D", "X"]], + "innervating": null, + "innervation": [["M"]], + "innervates": null, + "innervated": null, + "innervations": null, + "innervation's": null, + "inner": [["Y"]], + "innerly": null, + "inning": [["M"]], + "inning's": null, + "Innis": [["M"]], + "Innis's": null, + "innkeeper": [["M", "S"]], + "innkeeper's": null, + "innkeepers": null, + "innocence": [["S", "M"]], + "innocences": null, + "innocence's": null, + "Innocent": [["M"]], + "Innocent's": null, + "innocent": [["S", "Y", "R", "T"]], + "innocents": null, + "innocently": null, + "innocenter": null, + "innocentest": null, + "innocuousness": [["M", "S"]], + "innocuousness's": null, + "innocuousnesses": null, + "innocuous": [["P", "Y"]], + "innocuously": null, + "innovate": [["S", "D", "V", "N", "G", "X"]], + "innovates": null, + "innovated": null, + "innovative": [["P"]], + "innovation": [["M"]], + "innovating": null, + "innovations": null, + "innovation's": null, + "innovativeness": null, + "innovator": [["M", "S"]], + "innovator's": null, + "innovators": null, + "innovatory": null, + "Innsbruck": [["M"]], + "Innsbruck's": null, + "innuendo": [["M", "D", "G", "S"]], + "innuendo's": null, + "innuendoed": null, + "innuendoing": null, + "innuendos": null, + "innumerability": [["M"]], + "innumerability's": null, + "innumerableness": [["M"]], + "innumerableness's": null, + "innumerable": [["P"]], + "innumerably": null, + "innumerate": null, + "inn": [["Z", "G", "D", "R", "S", "J"]], + "inners": null, + "inned": null, + "inns": null, + "innings": null, + "inoculate": [["A", "S", "D", "G"]], + "reinoculate": null, + "reinoculates": null, + "reinoculated": null, + "reinoculating": null, + "inoculates": null, + "inoculated": null, + "inoculating": null, + "inoculation": [["M", "S"]], + "inoculation's": null, + "inoculations": null, + "inoculative": null, + "inoffensive": [["P"]], + "inoffensiveness": null, + "Inonu": [["M"]], + "Inonu's": null, + "inopportuneness": [["M"]], + "inopportuneness's": null, + "inopportune": [["P"]], + "inordinateness": [["M"]], + "inordinateness's": null, + "inordinate": [["P", "Y"]], + "inordinately": null, + "inorganic": null, + "inpatient": null, + "In": [["P", "M"]], + "Inness": null, + "In's": null, + "input": [["M", "R", "D", "G"]], + "input's": null, + "inputer": null, + "inputed": null, + "inputing": null, + "inquirer": [["M"]], + "inquirer's": null, + "inquire": [["Z", "R"]], + "inquirers": null, + "inquiring": [["Y"]], + "inquiringly": null, + "inquiry": [["M", "S"]], + "inquiry's": null, + "inquiries": null, + "inquisitional": null, + "inquisition": [["M", "S"]], + "inquisition's": null, + "inquisitions": null, + "Inquisition": [["M", "S"]], + "Inquisition's": null, + "Inquisitions": null, + "inquisitiveness": [["M", "S"]], + "inquisitiveness's": null, + "inquisitivenesses": null, + "inquisitive": [["Y", "P"]], + "inquisitively": null, + "inquisitorial": [["Y"]], + "inquisitorially": null, + "inquisitor": [["M", "S"]], + "inquisitor's": null, + "inquisitors": null, + "INRI": null, + "inrush": [["M"]], + "inrush's": null, + "INS": null, + "insalubrious": null, + "insanitary": null, + "insatiability": [["M", "S"]], + "insatiability's": null, + "insatiabilities": null, + "insatiableness": [["M"]], + "insatiableness's": null, + "insatiable": [["P"]], + "insatiably": null, + "inscribe": [["Z"]], + "inscribers": null, + "inscription": [["S", "M"]], + "inscriptions": null, + "inscription's": null, + "inscrutability": [["S", "M"]], + "inscrutabilities": null, + "inscrutability's": null, + "inscrutableness": [["S", "M"]], + "inscrutablenesses": null, + "inscrutableness's": null, + "inscrutable": [["P"]], + "inscrutably": null, + "inseam": null, + "insecticidal": null, + "insecticide": [["M", "S"]], + "insecticide's": null, + "insecticides": null, + "insectivore": [["S", "M"]], + "insectivores": null, + "insectivore's": null, + "insectivorous": null, + "insecureness": [["M"]], + "insecureness's": null, + "insecure": [["P"]], + "inseminate": [["N", "G", "X", "S", "D"]], + "insemination": [["M"]], + "inseminating": null, + "inseminations": null, + "inseminates": null, + "inseminated": null, + "insemination's": null, + "insensateness": [["M"]], + "insensateness's": null, + "insensate": [["P"]], + "insensible": [["P"]], + "insensibleness": null, + "insentient": null, + "inseparable": [["S"]], + "inseparables": null, + "insert": [["A", "D", "S", "G"]], + "reinsert": null, + "reinserted": null, + "reinserts": null, + "reinserting": null, + "inserted": null, + "inserts": null, + "inserting": null, + "inserter": [["M"]], + "inserter's": null, + "insertion": [["A", "M", "S"]], + "reinsertion": null, + "reinsertion's": null, + "reinsertions": null, + "insertion's": null, + "insertions": null, + "insetting": null, + "inshore": null, + "insider": [["M"]], + "insider's": null, + "inside": [["Z"]], + "insiders": null, + "insidiousness": [["M", "S"]], + "insidiousness's": null, + "insidiousnesses": null, + "insidious": [["Y", "P"]], + "insidiously": null, + "insightful": [["Y"]], + "insightfully": null, + "insigne's": null, + "insignia": [["S", "M"]], + "insignias": null, + "insignia's": null, + "insignificant": null, + "insinuate": [["V", "N", "G", "X", "S", "D"]], + "insinuative": null, + "insinuation": [["M"]], + "insinuating": [["Y"]], + "insinuations": null, + "insinuates": null, + "insinuated": null, + "insinuatingly": null, + "insinuation's": null, + "insinuator": [["S", "M"]], + "insinuators": null, + "insinuator's": null, + "insipidity": [["M", "S"]], + "insipidity's": null, + "insipidities": null, + "insipid": [["Y"]], + "insipidly": null, + "insistence": [["S", "M"]], + "insistences": null, + "insistence's": null, + "insistent": [["Y"]], + "insistently": null, + "insisting": [["Y"]], + "insistingly": null, + "insist": [["S", "G", "D"]], + "insists": null, + "insisted": null, + "insociable": null, + "insofar": null, + "insole": [["M"]], + "insole's": null, + "insolence": [["S", "M"]], + "insolences": null, + "insolence's": null, + "insolent": [["Y", "S"]], + "insolently": null, + "insolents": null, + "insolubleness": [["M"]], + "insolubleness's": null, + "insoluble": [["P"]], + "insolubly": null, + "insomniac": [["S"]], + "insomniacs": null, + "insomnia": [["M", "S"]], + "insomnia's": null, + "insomnias": null, + "insomuch": null, + "insouciance": [["S", "M"]], + "insouciances": null, + "insouciance's": null, + "insouciant": [["Y"]], + "insouciantly": null, + "inspect": [["A", "G", "S", "D"]], + "reinspect": null, + "reinspecting": null, + "reinspects": null, + "reinspected": null, + "inspecting": null, + "inspects": null, + "inspected": null, + "inspection": [["S", "M"]], + "inspections": null, + "inspection's": null, + "inspective": null, + "inspectorate": [["M", "S"]], + "inspectorate's": null, + "inspectorates": null, + "inspector": [["S", "M"]], + "inspectors": null, + "inspector's": null, + "inspirational": [["Y"]], + "inspirationally": null, + "inspiration": [["M", "S"]], + "inspiration's": null, + "inspirations": null, + "inspired": [["U"]], + "uninspired": null, + "inspire": [["R"]], + "inspirer": [["M"]], + "inspirer's": null, + "inspiring": [["U"]], + "uninspiring": null, + "inspirit": [["D", "G"]], + "inspirited": null, + "inspiriting": null, + "Inst": null, + "installable": null, + "install": [["A", "D", "R", "S", "G"]], + "reinstall": null, + "reinstalled": null, + "reinstaller": null, + "reinstalls": null, + "reinstalling": null, + "installed": null, + "installer": [["M", "S"]], + "installs": null, + "installing": null, + "installation": [["S", "M"]], + "installations": null, + "installation's": null, + "installer's": null, + "installers": null, + "installment": [["M", "S"]], + "installment's": null, + "installments": null, + "instance": [["G", "D"]], + "instancing": null, + "instanced": null, + "instantaneousness": [["M"]], + "instantaneousness's": null, + "instantaneous": [["P", "Y"]], + "instantaneously": null, + "instantiated": [["U"]], + "uninstantiated": null, + "instantiate": [["S", "D", "X", "N", "G"]], + "instantiates": null, + "instantiations": null, + "instantiation": [["M"]], + "instantiating": null, + "instantiation's": null, + "instant": [["S", "R", "Y", "M", "P"]], + "instants": null, + "instanter": null, + "instantly": null, + "instant's": null, + "instantness": null, + "instate": [["A", "G", "S", "D"]], + "reinstate": [["L"]], + "reinstating": null, + "reinstates": null, + "reinstated": null, + "instating": null, + "instates": null, + "instated": null, + "inst": [["B"]], + "instable": null, + "instead": null, + "instigate": [["X", "S", "D", "V", "G", "N"]], + "instigations": null, + "instigates": null, + "instigated": null, + "instigative": null, + "instigating": null, + "instigation": [["M"]], + "instigation's": null, + "instigator": [["S", "M"]], + "instigators": null, + "instigator's": null, + "instillation": [["S", "M"]], + "instillations": null, + "instillation's": null, + "instinctive": [["Y"]], + "instinctively": null, + "instinctual": null, + "instinct": [["V", "M", "S"]], + "instinct's": null, + "instincts": null, + "instituter": [["M"]], + "instituter's": null, + "institutes": [["M"]], + "institutes's": null, + "institute": [["Z", "X", "V", "G", "N", "S", "R", "D"]], + "instituters": null, + "institutions": null, + "institutive": null, + "instituting": null, + "institution": [["A", "M"]], + "instituted": null, + "institutionalism": [["M"]], + "institutionalism's": null, + "institutionalist": [["M"]], + "institutionalist's": null, + "institutionalization": [["S", "M"]], + "institutionalizations": null, + "institutionalization's": null, + "institutionalize": [["G", "D", "S"]], + "institutionalizing": null, + "institutionalized": null, + "institutionalizes": null, + "institutional": [["Y"]], + "institutionally": null, + "reinstitution": null, + "reinstitution's": null, + "institution's": null, + "institutor's": null, + "instr": null, + "instruct": [["D", "S", "V", "G"]], + "instructed": [["U"]], + "instructs": null, + "instructive": [["P", "Y"]], + "instructing": null, + "uninstructed": null, + "instructional": null, + "instruction": [["M", "S"]], + "instruction's": null, + "instructions": null, + "instructiveness": [["M"]], + "instructiveness's": null, + "instructively": null, + "instructor": [["M", "S"]], + "instructor's": null, + "instructors": null, + "instrumentalist": [["M", "S"]], + "instrumentalist's": null, + "instrumentalists": null, + "instrumentality": [["S", "M"]], + "instrumentalities": null, + "instrumentality's": null, + "instrumental": [["S", "Y"]], + "instrumentals": null, + "instrumentally": null, + "instrumentation": [["S", "M"]], + "instrumentations": null, + "instrumentation's": null, + "instrument": [["G", "M", "D", "S"]], + "instrumenting": null, + "instrument's": null, + "instrumented": null, + "instruments": null, + "insubordinate": null, + "insubstantial": null, + "insufferable": null, + "insufferably": null, + "insularity": [["M", "S"]], + "insularity's": null, + "insularities": null, + "insular": [["Y", "S"]], + "insularly": null, + "insulars": null, + "insulate": [["D", "S", "X", "N", "G"]], + "insulated": [["U"]], + "insulates": null, + "insulations": null, + "insulation": [["M"]], + "insulating": null, + "uninsulated": null, + "insulation's": null, + "insulator": [["M", "S"]], + "insulator's": null, + "insulators": null, + "insulin": [["M", "S"]], + "insulin's": null, + "insulins": null, + "insult": [["D", "R", "S", "G"]], + "insulted": null, + "insulter": [["M"]], + "insults": null, + "insulting": [["Y"]], + "insulter's": null, + "insultingly": null, + "insuperable": null, + "insuperably": null, + "insupportableness": [["M"]], + "insupportableness's": null, + "insupportable": [["P"]], + "insurance": [["M", "S"]], + "insurance's": [["A"]], + "insurances": null, + "reinsurance's": null, + "insure": [["B", "Z", "G", "S"]], + "insurable": null, + "insurers": null, + "insuring": null, + "insures": null, + "insured": [["S"]], + "insureds": null, + "insurer": [["M"]], + "insurer's": null, + "insurgence": [["S", "M"]], + "insurgences": null, + "insurgence's": null, + "insurgency": [["M", "S"]], + "insurgency's": null, + "insurgencies": null, + "insurgent": [["M", "S"]], + "insurgent's": null, + "insurgents": null, + "insurmountably": null, + "insurrectionist": [["S", "M"]], + "insurrectionists": null, + "insurrectionist's": null, + "insurrection": [["S", "M"]], + "insurrections": null, + "insurrection's": null, + "intactness": [["M"]], + "intactness's": null, + "intact": [["P"]], + "intaglio": [["G", "M", "D", "S"]], + "intaglioing": null, + "intaglio's": null, + "intaglioed": null, + "intaglios": null, + "intake": [["M"]], + "intake's": null, + "intangible": [["M"]], + "intangible's": null, + "integer": [["M", "S"]], + "integer's": null, + "integers": null, + "integrability": [["M"]], + "integrability's": null, + "integrable": null, + "integral": [["S", "Y", "M"]], + "integrals": null, + "integrally": null, + "integral's": null, + "integrand": [["M", "S"]], + "integrand's": null, + "integrands": null, + "integrate": [["A", "G", "N", "X", "E", "D", "S"]], + "reintegrate": null, + "reintegrating": null, + "reintegration": null, + "reintegrations": null, + "reintegrated": null, + "reintegrates": null, + "integrating": null, + "disintegrating": null, + "integration": [["E", "M", "A"]], + "disintegration": null, + "integrations": null, + "disintegrations": null, + "disintegrate": null, + "disintegrated": null, + "disintegrates": null, + "integrated": null, + "integrates": null, + "disintegration's": null, + "integration's": null, + "reintegration's": null, + "integrative": [["E"]], + "disintegrative": null, + "integrator": [["M", "S"]], + "integrator's": null, + "integrators": null, + "integrity": [["S", "M"]], + "integrities": null, + "integrity's": null, + "integument": [["S", "M"]], + "integuments": null, + "integument's": null, + "intellective": [["Y"]], + "intellectively": null, + "intellect": [["M", "V", "S"]], + "intellect's": null, + "intellects": null, + "intellectualism": [["M", "S"]], + "intellectualism's": null, + "intellectualisms": null, + "intellectuality": [["M"]], + "intellectuality's": null, + "intellectualize": [["G", "S", "D"]], + "intellectualizing": null, + "intellectualizes": null, + "intellectualized": null, + "intellectualness": [["M"]], + "intellectualness's": null, + "intellectual": [["Y", "P", "S"]], + "intellectually": null, + "intellectuals": null, + "intelligence": [["M", "S", "R"]], + "intelligence's": null, + "intelligences": null, + "intelligencer": [["M"]], + "intelligencer's": null, + "intelligentsia": [["M", "S"]], + "intelligentsia's": null, + "intelligentsias": null, + "intelligent": [["U", "Y"]], + "unintelligent": null, + "unintelligently": null, + "intelligently": null, + "intelligibilities": null, + "intelligibility": [["U", "M"]], + "unintelligibility": null, + "unintelligibility's": null, + "intelligibility's": null, + "intelligibleness": [["M", "U"]], + "intelligibleness's": null, + "unintelligibleness's": null, + "unintelligibleness": null, + "intelligible": [["P", "U"]], + "unintelligible": null, + "intelligibly": [["U"]], + "unintelligibly": null, + "Intel": [["M"]], + "Intel's": null, + "Intelsat": [["M"]], + "Intelsat's": null, + "intemperate": [["P"]], + "intemperateness": null, + "intendant": [["M", "S"]], + "intendant's": null, + "intendants": null, + "intendedness": [["M"]], + "intendedness's": null, + "intended": [["S", "Y", "P"]], + "intendeds": null, + "intendedly": null, + "intender": [["M"]], + "intender's": null, + "intensification": [["M"]], + "intensification's": null, + "intensifier": [["M"]], + "intensifier's": null, + "intensify": [["G", "X", "N", "Z", "R", "S", "D"]], + "intensifying": null, + "intensifications": null, + "intensifiers": null, + "intensifies": null, + "intensified": null, + "intensional": [["Y"]], + "intensionally": null, + "intensiveness": [["M", "S"]], + "intensiveness's": null, + "intensivenesses": null, + "intensive": [["P", "S", "Y"]], + "intensives": null, + "intensively": null, + "intentionality": [["M"]], + "intentionality's": null, + "intentional": [["U", "Y"]], + "unintentional": null, + "unintentionally": null, + "intentionally": null, + "intention": [["S", "D", "M"]], + "intentions": null, + "intentioned": null, + "intention's": null, + "intentness": [["S", "M"]], + "intentnesses": null, + "intentness's": null, + "intent": [["Y", "P"]], + "intently": null, + "interaction": [["M", "S"]], + "interaction's": null, + "interactions": null, + "interactive": [["P", "Y"]], + "interactiveness": null, + "interactively": null, + "interactivity": null, + "interact": [["V", "G", "D", "S"]], + "interacting": null, + "interacted": null, + "interacts": null, + "interaxial": null, + "interbank": null, + "interbred": null, + "interbreed": [["G", "S"]], + "interbreeding": null, + "interbreeds": null, + "intercalate": [["G", "N", "V", "D", "S"]], + "intercalating": null, + "intercalation": [["M"]], + "intercalative": null, + "intercalated": null, + "intercalates": null, + "intercalation's": null, + "intercase": null, + "intercaste": null, + "interceder": [["M"]], + "interceder's": null, + "intercede": [["S", "R", "D", "G"]], + "intercedes": null, + "interceded": null, + "interceding": null, + "intercensal": null, + "intercept": [["D", "G", "S"]], + "intercepted": null, + "intercepting": null, + "intercepts": null, + "interception": [["M", "S"]], + "interception's": null, + "interceptions": null, + "interceptor": [["M", "S"]], + "interceptor's": null, + "interceptors": null, + "intercession": [["M", "S"]], + "intercession's": null, + "intercessions": null, + "intercessor": [["S", "M"]], + "intercessors": null, + "intercessor's": null, + "intercessory": null, + "interchangeability": [["M"]], + "interchangeability's": null, + "interchangeableness": [["M"]], + "interchangeableness's": null, + "interchangeable": [["P"]], + "interchangeably": null, + "interchange": [["D", "S", "R", "G", "J"]], + "interchanged": null, + "interchanges": null, + "interchanger": [["M"]], + "interchanging": null, + "interchangings": null, + "interchanger's": null, + "intercity": null, + "interclass": null, + "intercohort": null, + "intercollegiate": null, + "intercommunicate": [["S", "D", "X", "N", "G"]], + "intercommunicates": null, + "intercommunicated": null, + "intercommunications": null, + "intercommunication": [["M"]], + "intercommunicating": null, + "intercommunication's": null, + "intercom": [["S", "M"]], + "intercoms": null, + "intercom's": null, + "interconnectedness": [["M"]], + "interconnectedness's": null, + "interconnected": [["P"]], + "interconnect": [["G", "D", "S"]], + "interconnecting": null, + "interconnects": null, + "interconnection": [["S", "M"]], + "interconnections": null, + "interconnection's": null, + "interconnectivity": null, + "intercontinental": null, + "interconversion": [["M"]], + "interconversion's": null, + "intercorrelated": null, + "intercourse": [["S", "M"]], + "intercourses": null, + "intercourse's": null, + "Interdata": [["M"]], + "Interdata's": null, + "interdenominational": null, + "interdepartmental": [["Y"]], + "interdepartmentally": null, + "interdependence": [["M", "S"]], + "interdependence's": null, + "interdependences": null, + "interdependency": [["S", "M"]], + "interdependencies": null, + "interdependency's": null, + "interdependent": [["Y"]], + "interdependently": null, + "interdiction": [["M", "S"]], + "interdiction's": null, + "interdictions": null, + "interdict": [["M", "D", "V", "G", "S"]], + "interdict's": null, + "interdicted": null, + "interdictive": null, + "interdicting": null, + "interdicts": null, + "interdisciplinary": null, + "interested": [["U", "Y", "E"]], + "uninterested": null, + "uninterestedly": null, + "interestedly": null, + "disinterestedly": null, + "interest": [["G", "E", "M", "D", "S"]], + "interesting": [["Y", "P"]], + "disinteresting": null, + "disinterest": null, + "disinterest's": null, + "disinterests": null, + "interest's": null, + "interests": null, + "interestingly": [["U"]], + "uninterestingly": null, + "interestingness": [["M"]], + "interestingness's": null, + "inter": [["E", "S", "T", "L"]], + "disinter": null, + "disinters": null, + "disinterment": null, + "inters": null, + "interment": [["S", "M", "E"]], + "interface": [["S", "R", "D", "G", "M"]], + "interfaces": null, + "interfacer": null, + "interfaced": null, + "interfacing": [["M"]], + "interface's": null, + "interfacing's": null, + "interfaith": null, + "interference": [["M", "S"]], + "interference's": null, + "interferences": null, + "interferer": [["M"]], + "interferer's": null, + "interfere": [["S", "R", "D", "G"]], + "interferes": null, + "interfered": null, + "interfering": [["Y"]], + "interferingly": null, + "interferometer": [["S", "M"]], + "interferometers": null, + "interferometer's": null, + "interferometric": null, + "interferometry": [["M"]], + "interferometry's": null, + "interferon": [["M", "S"]], + "interferon's": null, + "interferons": null, + "interfile": [["G", "S", "D"]], + "interfiling": null, + "interfiles": null, + "interfiled": null, + "intergalactic": null, + "intergenerational": null, + "intergeneration": [["M"]], + "intergeneration's": null, + "interglacial": null, + "intergovernmental": null, + "intergroup": null, + "interim": [["S"]], + "interims": null, + "interindex": null, + "interindustry": null, + "interior": [["S", "M", "Y"]], + "interiors": null, + "interior's": null, + "interiorly": null, + "interj": null, + "interject": [["G", "D", "S"]], + "interjecting": null, + "interjected": null, + "interjects": null, + "interjectional": null, + "interjection": [["M", "S"]], + "interjection's": null, + "interjections": null, + "interlace": [["G", "S", "D"]], + "interlacing": null, + "interlaces": null, + "interlaced": null, + "interlard": [["S", "G", "D"]], + "interlards": null, + "interlarding": null, + "interlarded": null, + "interlayer": [["G"]], + "interlayering": null, + "interleave": [["S", "D", "G"]], + "interleaves": null, + "interleaved": null, + "interleaving": null, + "interleukin": [["S"]], + "interleukins": null, + "interlibrary": null, + "interlinear": [["S"]], + "interlinears": null, + "interline": [["J", "G", "S", "D"]], + "interlinings": null, + "interlining": [["M"]], + "interlines": null, + "interlined": null, + "interlingual": null, + "interlingua": [["M"]], + "interlingua's": null, + "interlining's": null, + "interlink": [["G", "D", "S"]], + "interlinking": null, + "interlinked": null, + "interlinks": null, + "interlisp": [["M"]], + "interlisp's": null, + "interlobular": null, + "interlocker": [["M"]], + "interlocker's": null, + "interlock": [["R", "D", "S", "G"]], + "interlocked": null, + "interlocks": null, + "interlocking": null, + "interlocutor": [["M", "S"]], + "interlocutor's": null, + "interlocutors": null, + "interlocutory": null, + "interlope": [["G", "Z", "S", "R", "D"]], + "interloping": null, + "interlopers": null, + "interlopes": null, + "interloper": [["M"]], + "interloped": null, + "interloper's": null, + "interlude": [["M", "S", "D", "G"]], + "interlude's": null, + "interludes": null, + "interluded": null, + "interluding": null, + "intermarriage": [["M", "S"]], + "intermarriage's": null, + "intermarriages": null, + "intermarry": [["G", "D", "S"]], + "intermarrying": null, + "intermarried": null, + "intermarries": null, + "intermediary": [["M", "S"]], + "intermediary's": null, + "intermediaries": null, + "intermediateness": [["M"]], + "intermediateness's": null, + "intermediate": [["Y", "M", "N", "G", "S", "D", "P"]], + "intermediately": null, + "intermediate's": null, + "intermediation": [["M"]], + "intermediating": null, + "intermediates": null, + "intermediated": null, + "intermediation's": null, + "interments": null, + "disinterments": null, + "interment's": null, + "disinterment's": null, + "intermeshed": null, + "intermetrics": null, + "intermezzi": null, + "intermezzo": [["S", "M"]], + "intermezzos": null, + "intermezzo's": null, + "interminably": null, + "intermingle": [["D", "S", "G"]], + "intermingled": null, + "intermingles": null, + "intermingling": null, + "intermission": [["M", "S"]], + "intermission's": null, + "intermissions": null, + "intermittent": [["Y"]], + "intermittently": null, + "intermix": [["G", "S", "R", "D"]], + "intermixing": null, + "intermixes": null, + "intermixer": null, + "intermixed": null, + "intermodule": null, + "intermolecular": [["Y"]], + "intermolecularly": null, + "internalization": [["S", "M"]], + "internalizations": null, + "internalization's": null, + "internalize": [["G", "D", "S"]], + "internalizing": null, + "internalized": null, + "internalizes": null, + "internal": [["S", "Y"]], + "internals": null, + "internally": null, + "Internationale": [["M"]], + "Internationale's": null, + "internationalism": [["S", "M"]], + "internationalisms": null, + "internationalism's": null, + "internationalist": [["S", "M"]], + "internationalists": null, + "internationalist's": null, + "internationality": [["M"]], + "internationality's": null, + "internationalization": [["M", "S"]], + "internationalization's": null, + "internationalizations": null, + "internationalize": [["D", "S", "G"]], + "internationalized": null, + "internationalizes": null, + "internationalizing": null, + "international": [["Y", "S"]], + "internationally": null, + "internationals": null, + "internecine": null, + "internee": [["S", "M"]], + "internees": null, + "internee's": null, + "interne's": null, + "Internet": [["M"]], + "Internet's": null, + "INTERNET": [["M"]], + "INTERNET's": null, + "internetwork": null, + "internist": [["S", "M"]], + "internists": null, + "internist's": null, + "intern": [["L"]], + "internment": [["S", "M"]], + "internments": null, + "internment's": null, + "internship": [["M", "S"]], + "internship's": null, + "internships": null, + "internuclear": null, + "interocular": null, + "interoffice": null, + "interoperability": null, + "interpenetrates": null, + "interpersonal": [["Y"]], + "interpersonally": null, + "interplanetary": null, + "interplay": [["G", "S", "M", "D"]], + "interplaying": null, + "interplays": null, + "interplay's": null, + "interplayed": null, + "interpol": null, + "interpolate": [["X", "G", "N", "V", "B", "D", "S"]], + "interpolations": null, + "interpolating": null, + "interpolation": [["M"]], + "interpolative": null, + "interpolatable": null, + "interpolated": null, + "interpolates": null, + "interpolation's": null, + "Interpol": [["M"]], + "Interpol's": null, + "interpose": [["G", "S", "R", "D"]], + "interposing": null, + "interposes": null, + "interposer": [["M"]], + "interposed": null, + "interposer's": null, + "interposition": [["M", "S"]], + "interposition's": null, + "interpositions": null, + "interpretable": [["U"]], + "uninterpretable": null, + "interpret": [["A", "G", "S", "D"]], + "reinterpret": null, + "reinterpreting": null, + "reinterprets": null, + "reinterpreted": null, + "interpreting": null, + "interprets": null, + "interpreted": [["U"]], + "interpretation": [["M", "S", "A"]], + "interpretation's": null, + "reinterpretation's": null, + "interpretations": null, + "reinterpretations": null, + "reinterpretation": null, + "interpretative": [["Y"]], + "interpretatively": null, + "uninterpreted": null, + "interpreter": [["S", "M"]], + "interpreters": null, + "interpreter's": null, + "interpretive": [["Y"]], + "interpretively": null, + "interpretor": [["S"]], + "interpretors": null, + "interprocess": null, + "interprocessor": null, + "interquartile": null, + "interracial": null, + "interred": [["E"]], + "disinterred": null, + "interregional": null, + "interregnum": [["M", "S"]], + "interregnum's": null, + "interregnums": null, + "interrelatedness": [["M"]], + "interrelatedness's": null, + "interrelated": [["P", "Y"]], + "interrelatedly": null, + "interrelate": [["G", "N", "D", "S", "X"]], + "interrelating": null, + "interrelation": [["M"]], + "interrelates": null, + "interrelations": null, + "interrelation's": null, + "interrelationship": [["S", "M"]], + "interrelationships": null, + "interrelationship's": null, + "interring": [["E"]], + "disinterring": null, + "interrogate": [["D", "S", "X", "G", "N", "V"]], + "interrogated": null, + "interrogates": null, + "interrogations": null, + "interrogating": null, + "interrogation": [["M"]], + "interrogative": [["S", "Y"]], + "interrogation's": null, + "interrogatives": null, + "interrogatively": null, + "interrogator": [["S", "M"]], + "interrogators": null, + "interrogator's": null, + "interrogatory": [["S"]], + "interrogatories": null, + "interrupted": [["U"]], + "uninterrupted": [["Y", "P"]], + "interrupter": [["M"]], + "interrupter's": null, + "interruptibility": null, + "interruptible": null, + "interruption": [["M", "S"]], + "interruption's": null, + "interruptions": null, + "interrupt": [["V", "G", "Z", "R", "D", "S"]], + "interruptive": null, + "interrupting": null, + "interrupters": null, + "interrupts": null, + "interscholastic": null, + "intersect": [["G", "D", "S"]], + "intersecting": null, + "intersected": null, + "intersects": null, + "intersection": [["M", "S"]], + "intersection's": null, + "intersections": null, + "intersession": [["M", "S"]], + "intersession's": null, + "intersessions": null, + "interspecies": null, + "intersperse": [["G", "N", "D", "S", "X"]], + "interspersing": null, + "interspersion": [["M"]], + "interspersed": null, + "intersperses": null, + "interspersions": null, + "interspersion's": null, + "interstage": null, + "interstate": [["S"]], + "interstates": null, + "interstellar": null, + "interstice": [["S", "M"]], + "interstices": null, + "interstice's": null, + "interstitial": [["S", "Y"]], + "interstitials": null, + "interstitially": null, + "intersurvey": null, + "intertask": null, + "intertwine": [["G", "S", "D"]], + "intertwining": null, + "intertwines": null, + "intertwined": null, + "interurban": [["S"]], + "interurbans": null, + "interval": [["M", "S"]], + "interval's": null, + "intervals": null, + "intervene": [["G", "S", "R", "D"]], + "intervening": null, + "intervenes": null, + "intervener": [["M"]], + "intervened": null, + "intervener's": null, + "intervenor": [["M"]], + "intervenor's": null, + "interventionism": [["M", "S"]], + "interventionism's": null, + "interventionisms": null, + "interventionist": [["S"]], + "interventionists": null, + "intervention": [["M", "S"]], + "intervention's": null, + "interventions": null, + "interview": [["A", "M", "D"]], + "reinterview": null, + "reinterview's": null, + "reinterviewed": null, + "interview's": null, + "interviewed": [["U"]], + "uninterviewed": null, + "interviewee": [["S", "M"]], + "interviewees": null, + "interviewee's": null, + "interviewer": [["S", "M"]], + "interviewers": null, + "interviewer's": null, + "interviewing": null, + "interviews": null, + "intervocalic": null, + "interweave": [["G", "S"]], + "interweaving": null, + "interweaves": null, + "interwove": null, + "interwoven": null, + "intestacy": [["S", "M"]], + "intestacies": null, + "intestacy's": null, + "intestinal": [["Y"]], + "intestinally": null, + "intestine": [["S", "M"]], + "intestines": null, + "intestine's": null, + "inti": null, + "intifada": null, + "intimacy": [["S", "M"]], + "intimacies": null, + "intimacy's": null, + "intimal": null, + "intimateness": [["M"]], + "intimateness's": null, + "intimater": [["M"]], + "intimater's": null, + "intimate": [["X", "Y", "N", "G", "P", "D", "R", "S"]], + "intimations": null, + "intimately": null, + "intimation": [["M"]], + "intimating": null, + "intimated": null, + "intimates": null, + "intimation's": null, + "intimidate": [["S", "D", "X", "N", "G"]], + "intimidates": null, + "intimidated": null, + "intimidations": null, + "intimidation": [["M"]], + "intimidating": [["Y"]], + "intimidatingly": null, + "intimidation's": null, + "into": null, + "intolerableness": [["M"]], + "intolerableness's": null, + "intolerable": [["P"]], + "intolerant": [["P", "S"]], + "intolerantness": null, + "intolerants": null, + "intonate": [["N", "X"]], + "intonation": [["M"]], + "intonations": null, + "intonation's": null, + "intoxicant": [["M", "S"]], + "intoxicant's": null, + "intoxicants": null, + "intoxicate": [["D", "S", "G", "N", "X"]], + "intoxicated": [["Y"]], + "intoxicates": null, + "intoxicating": null, + "intoxication": [["M"]], + "intoxications": null, + "intoxicatedly": null, + "intoxication's": null, + "intra": null, + "intracellular": null, + "intracity": null, + "intraclass": null, + "intracohort": null, + "intractability": [["M"]], + "intractability's": null, + "intractableness": [["M"]], + "intractableness's": null, + "intractable": [["P"]], + "intradepartmental": null, + "intrafamily": null, + "intragenerational": null, + "intraindustry": null, + "intraline": null, + "intrametropolitan": null, + "intramural": [["Y"]], + "intramurally": null, + "intramuscular": [["Y"]], + "intramuscularly": null, + "intranasal": null, + "intransigence": [["M", "S"]], + "intransigence's": null, + "intransigences": null, + "intransigent": [["Y", "S"]], + "intransigently": null, + "intransigents": null, + "intransitive": [["S"]], + "intransitives": null, + "intraoffice": null, + "intraprocess": null, + "intrapulmonary": null, + "intraregional": null, + "intrasectoral": null, + "intrastate": null, + "intratissue": null, + "intrauterine": null, + "intravenous": [["Y", "S"]], + "intravenously": null, + "intravenouses": null, + "intrepidity": [["S", "M"]], + "intrepidities": null, + "intrepidity's": null, + "intrepidness": [["M"]], + "intrepidness's": null, + "intrepid": [["Y", "P"]], + "intrepidly": null, + "intricacy": [["S", "M"]], + "intricacies": null, + "intricacy's": null, + "intricateness": [["M"]], + "intricateness's": null, + "intricate": [["P", "Y"]], + "intricately": null, + "intrigue": [["D", "R", "S", "Z", "G"]], + "intrigued": null, + "intriguer": [["M"]], + "intrigues": null, + "intriguers": null, + "intriguing": [["Y"]], + "intriguer's": null, + "intriguingly": null, + "intrinsically": null, + "intrinsic": [["S"]], + "intrinsics": null, + "introduce": [["A", "D", "S", "G"]], + "reintroduce": null, + "reintroduced": null, + "reintroduces": null, + "reintroducing": null, + "introduced": null, + "introduces": null, + "introducing": null, + "introducer": [["M"]], + "introducer's": null, + "introduction": [["A", "S", "M"]], + "reintroduction": null, + "reintroductions": null, + "reintroduction's": null, + "introductions": null, + "introduction's": null, + "introductory": null, + "introit": [["S", "M"]], + "introits": null, + "introit's": null, + "introject": [["S", "D"]], + "introjects": null, + "introjected": null, + "intro": [["S"]], + "intros": null, + "introspection": [["M", "S"]], + "introspection's": null, + "introspections": null, + "introspectiveness": [["M"]], + "introspectiveness's": null, + "introspective": [["Y", "P"]], + "introspectively": null, + "introspect": [["S", "G", "V", "D"]], + "introspects": null, + "introspecting": null, + "introspected": null, + "introversion": [["S", "M"]], + "introversions": null, + "introversion's": null, + "introvert": [["S", "M", "D", "G"]], + "introverts": null, + "introvert's": null, + "introverted": null, + "introverting": null, + "intruder": [["M"]], + "intruder's": null, + "intrude": [["Z", "G", "D", "S", "R"]], + "intruders": null, + "intruding": null, + "intruded": null, + "intrudes": null, + "intrusion": [["S", "M"]], + "intrusions": null, + "intrusion's": null, + "intrusiveness": [["M", "S"]], + "intrusiveness's": null, + "intrusivenesses": null, + "intrusive": [["S", "Y", "P"]], + "intrusives": null, + "intrusively": null, + "intubate": [["N", "G", "D", "S"]], + "intubation": [["M"]], + "intubating": null, + "intubated": null, + "intubates": null, + "intubation's": null, + "intuit": [["G", "V", "D", "S", "B"]], + "intuiting": null, + "intuitive": [["Y", "P"]], + "intuited": null, + "intuits": null, + "intuitable": null, + "intuitionist": [["M"]], + "intuitionist's": null, + "intuitiveness": [["M", "S"]], + "intuitiveness's": null, + "intuitivenesses": null, + "intuitively": null, + "int": [["Z", "R"]], + "Inuit": [["M", "S"]], + "Inuit's": null, + "Inuits": null, + "inundate": [["S", "X", "N", "G"]], + "inundates": null, + "inundations": null, + "inundation": [["M"]], + "inundating": null, + "inundation's": null, + "inure": [["G", "D", "S"]], + "inuring": null, + "inured": null, + "inures": null, + "invader": [["M"]], + "invader's": null, + "invade": [["Z", "S", "R", "D", "G"]], + "invaders": null, + "invades": null, + "invaded": null, + "invading": null, + "invalid": [["G", "S", "D", "M"]], + "invaliding": null, + "invalids": null, + "invalided": null, + "invalid's": null, + "invalidism": [["M", "S"]], + "invalidism's": null, + "invalidisms": null, + "invariable": [["P"]], + "invariableness": null, + "invariant": [["M"]], + "invariant's": null, + "invasion": [["S", "M"]], + "invasions": null, + "invasion's": null, + "invasive": [["P"]], + "invasiveness": null, + "invectiveness": [["M"]], + "invectiveness's": null, + "invective": [["P", "S", "M", "Y"]], + "invectives": null, + "invective's": null, + "invectively": null, + "inveigh": [["D", "R", "G"]], + "inveighed": null, + "inveigher": [["M"]], + "inveighing": null, + "inveigher's": null, + "inveighs": null, + "inveigle": [["D", "R", "S", "Z", "G"]], + "inveigled": null, + "inveigler": [["M"]], + "inveigles": null, + "inveiglers": null, + "inveigling": null, + "inveigler's": null, + "invent": [["A", "D", "G", "S"]], + "reinvent": null, + "reinvented": null, + "reinventing": null, + "reinvents": null, + "invented": [["U"]], + "inventing": null, + "invents": null, + "uninvented": null, + "invention": [["A", "S", "M"]], + "reinvention": null, + "reinventions": null, + "reinvention's": null, + "inventions": null, + "invention's": null, + "inventiveness": [["M", "S"]], + "inventiveness's": null, + "inventivenesses": null, + "inventive": [["Y", "P"]], + "inventively": null, + "inventor": [["M", "S"]], + "inventor's": null, + "inventors": null, + "inventory": [["S", "D", "M", "G"]], + "inventories": null, + "inventoried": null, + "inventory's": null, + "inventorying": null, + "Inverness": [["M"]], + "Inverness's": null, + "inverse": [["Y", "V"]], + "inversely": null, + "inversive": null, + "inverter": [["M"]], + "inverter's": null, + "invertible": null, + "invert": [["Z", "S", "G", "D", "R"]], + "inverters": null, + "inverts": null, + "inverting": null, + "inverted": null, + "invest": [["A", "D", "S", "L", "G"]], + "reinvest": null, + "reinvested": null, + "reinvests": null, + "reinvestment": null, + "reinvesting": null, + "invested": null, + "invests": null, + "investment": [["E", "S", "A"]], + "investing": null, + "investigate": [["X", "D", "S", "N", "G", "V"]], + "investigations": null, + "investigated": null, + "investigates": null, + "investigation": [["M", "A"]], + "investigating": null, + "investigative": null, + "investigation's": null, + "reinvestigation's": null, + "reinvestigation": null, + "investigator": [["M", "S"]], + "investigator's": null, + "investigators": null, + "investigatory": null, + "investiture": [["S", "M"]], + "investitures": null, + "investiture's": null, + "disinvestments": null, + "investments": null, + "reinvestments": null, + "investment's": [["A"]], + "reinvestment's": null, + "investor": [["S", "M"]], + "investors": null, + "investor's": null, + "inveteracy": [["M", "S"]], + "inveteracy's": null, + "inveteracies": null, + "inveterate": [["Y"]], + "inveterately": null, + "inviability": null, + "invidiousness": [["M", "S"]], + "invidiousness's": null, + "invidiousnesses": null, + "invidious": [["Y", "P"]], + "invidiously": null, + "invigilate": [["G", "D"]], + "invigilating": null, + "invigilated": null, + "invigilator": [["S", "M"]], + "invigilators": null, + "invigilator's": null, + "invigorate": [["A", "N", "G", "S", "D"]], + "reinvigorate": null, + "reinvigoration": null, + "reinvigorating": null, + "reinvigorates": null, + "reinvigorated": null, + "invigoration": [["A", "M"]], + "invigorating": [["Y"]], + "invigorates": null, + "invigorated": null, + "invigoratingly": null, + "reinvigoration's": null, + "invigoration's": null, + "invigorations": null, + "invincibility": [["S", "M"]], + "invincibilities": null, + "invincibility's": null, + "invincibleness": [["M"]], + "invincibleness's": null, + "invincible": [["P"]], + "invincibly": null, + "inviolability": [["M", "S"]], + "inviolability's": null, + "inviolabilities": null, + "inviolably": null, + "inviolateness": [["M"]], + "inviolateness's": null, + "inviolate": [["Y", "P"]], + "inviolately": null, + "inviscid": null, + "invisibleness": [["M"]], + "invisibleness's": null, + "invisible": [["S"]], + "invisibles": null, + "invitational": [["S"]], + "invitationals": null, + "invitation": [["M", "S"]], + "invitation's": null, + "invitations": null, + "invited": [["U"]], + "uninvited": null, + "invitee": [["S"]], + "invitees": null, + "inviter": [["M"]], + "inviter's": null, + "invite": [["S", "R", "D", "G"]], + "invites": null, + "inviting": [["Y"]], + "invitingly": null, + "invocable": null, + "invocate": null, + "invoked": [["A"]], + "reinvoked": null, + "invoke": [["G", "S", "R", "D", "B", "Z"]], + "invoking": null, + "invokes": [["A"]], + "invoker": [["M"]], + "invokable": null, + "invokers": null, + "invoker's": null, + "reinvokes": null, + "involuntariness": [["S"]], + "involuntarinesses": null, + "involuntary": [["P"]], + "involute": [["X", "Y", "N"]], + "involutions": null, + "involutely": null, + "involution": [["M"]], + "involution's": null, + "involutorial": null, + "involvedly": null, + "involved": [["U"]], + "uninvolved": null, + "involve": [["G", "D", "S", "R", "L"]], + "involving": null, + "involves": null, + "involver": [["M"]], + "involvement": [["S", "M"]], + "involvements": null, + "involvement's": null, + "involver's": null, + "invulnerability": [["M"]], + "invulnerability's": null, + "invulnerableness": [["M"]], + "invulnerableness's": null, + "inwardness": [["M"]], + "inwardness's": null, + "inward": [["P", "Y"]], + "inwardly": null, + "ioctl": null, + "iodate": [["M", "G", "N", "D"]], + "iodate's": null, + "iodating": null, + "iodation": [["M"]], + "iodated": null, + "iodation's": null, + "iodide": [["M", "S"]], + "iodide's": null, + "iodides": null, + "iodinate": [["D", "N", "G"]], + "iodinated": null, + "iodination": null, + "iodinating": null, + "iodine": [["M", "S"]], + "iodine's": null, + "iodines": null, + "iodize": [["G", "S", "D"]], + "iodizing": null, + "iodizes": null, + "iodized": null, + "Iolande": [["M"]], + "Iolande's": null, + "Iolanthe": [["M"]], + "Iolanthe's": null, + "Io": [["M"]], + "Io's": null, + "Iona": [["M"]], + "Iona's": null, + "Ionesco": [["M"]], + "Ionesco's": null, + "Ionian": [["M"]], + "Ionian's": null, + "ionic": [["S"]], + "ionics": null, + "Ionic": [["S"]], + "Ionics": null, + "ionization's": null, + "ionization": [["S", "U"]], + "ionizations": null, + "unionizations": null, + "unionization": null, + "ionized": [["U", "C"]], + "unionized": null, + "deionized": null, + "ionize": [["G", "N", "S", "R", "D", "J", "X", "Z"]], + "ionizing": [["U"]], + "ionizion": null, + "ionizes": [["U"]], + "ionizer": [["U", "S"]], + "ionizings": null, + "ionizions": null, + "ionizers": null, + "ionizer's": null, + "unionizer": null, + "unionizers": null, + "unionizes": null, + "unionizing": null, + "ionosphere": [["S", "M"]], + "ionospheres": null, + "ionosphere's": null, + "ionospheric": null, + "ion's": [["I"]], + "inion's": null, + "ion": [["S", "M", "U"]], + "ions": null, + "unions": null, + "union's": null, + "union": [["A", "E", "M", "S"]], + "Iorgo": [["M", "S"]], + "Iorgo's": null, + "Iorgos": null, + "Iormina": [["M"]], + "Iormina's": null, + "Iosep": [["M"]], + "Iosep's": null, + "iota": [["S", "M"]], + "iotas": null, + "iota's": null, + "IOU": null, + "Iowan": [["S"]], + "Iowans": null, + "Iowa": [["S", "M"]], + "Iowas": null, + "Iowa's": null, + "IPA": null, + "ipecac": [["M", "S"]], + "ipecac's": null, + "ipecacs": null, + "Iphigenia": [["M"]], + "Iphigenia's": null, + "ipso": null, + "Ipswich": [["M"]], + "Ipswich's": null, + "IQ": null, + "Iqbal": [["M"]], + "Iqbal's": null, + "Iquitos": [["M"]], + "Iquitos's": null, + "Ira": [["M"]], + "Ira's": null, + "Iranian": [["M", "S"]], + "Iranian's": null, + "Iranians": null, + "Iran": [["M"]], + "Iran's": null, + "Iraqi": [["S", "M"]], + "Iraqis": null, + "Iraqi's": null, + "Iraq": [["M"]], + "Iraq's": null, + "IRA": [["S"]], + "IRAs": null, + "irascibility": [["S", "M"]], + "irascibilities": null, + "irascibility's": null, + "irascible": null, + "irascibly": null, + "irateness": [["S"]], + "iratenesses": null, + "irate": [["R", "P", "Y", "T"]], + "irater": null, + "irately": null, + "iratest": null, + "ireful": null, + "Ireland": [["M"]], + "Ireland's": null, + "ire": [["M", "G", "D", "S"]], + "ire's": null, + "iring": null, + "ired": null, + "ires": null, + "Irena": [["M"]], + "Irena's": null, + "Irene": [["M"]], + "Irene's": null, + "irenic": [["S"]], + "irenics": null, + "iridescence": [["S", "M"]], + "iridescences": null, + "iridescence's": null, + "iridescent": [["Y"]], + "iridescently": null, + "irides": [["M"]], + "irides's": null, + "iridium": [["M", "S"]], + "iridium's": null, + "iridiums": null, + "irids": null, + "Irina": [["M"]], + "Irina's": null, + "Iris": null, + "iris": [["G", "D", "S", "M"]], + "irising": null, + "irised": null, + "irises": null, + "iris's": null, + "Irishman": [["M"]], + "Irishman's": null, + "Irishmen": null, + "Irish": [["R"]], + "Irisher": null, + "Irishwoman": [["M"]], + "Irishwoman's": null, + "Irishwomen": null, + "Irita": [["M"]], + "Irita's": null, + "irk": [["G", "D", "S"]], + "irking": null, + "irked": null, + "irks": null, + "irksomeness": [["S", "M"]], + "irksomenesses": null, + "irksomeness's": null, + "irksome": [["Y", "P"]], + "irksomely": null, + "Irkutsk": [["M"]], + "Irkutsk's": null, + "Ir": [["M"]], + "Ir's": null, + "Irma": [["M"]], + "Irma's": null, + "ironclad": [["S"]], + "ironclads": null, + "iron": [["D", "R", "M", "P", "S", "G", "J"]], + "ironed": null, + "ironer": [["M"]], + "iron's": null, + "ironness": null, + "irons": null, + "ironing": [["M"]], + "ironings": null, + "ironer's": null, + "ironic": null, + "ironicalness": [["M"]], + "ironicalness's": null, + "ironical": [["Y", "P"]], + "ironically": null, + "ironing's": null, + "ironmonger": [["M"]], + "ironmonger's": null, + "ironmongery": [["M"]], + "ironmongery's": null, + "ironside": [["M", "S"]], + "ironside's": null, + "ironsides": null, + "ironstone": [["M", "S"]], + "ironstone's": null, + "ironstones": null, + "ironware": [["S", "M"]], + "ironwares": null, + "ironware's": null, + "ironwood": [["S", "M"]], + "ironwoods": null, + "ironwood's": null, + "ironworker": [["M"]], + "ironworker's": null, + "ironwork": [["M", "R", "S"]], + "ironwork's": null, + "ironworks": null, + "irony": [["S", "M"]], + "ironies": null, + "irony's": null, + "Iroquoian": [["M", "S"]], + "Iroquoian's": null, + "Iroquoians": null, + "Iroquois": [["M"]], + "Iroquois's": null, + "irradiate": [["X", "S", "D", "V", "N", "G"]], + "irradiations": null, + "irradiates": null, + "irradiated": null, + "irradiative": null, + "irradiation": [["M"]], + "irradiating": null, + "irradiation's": null, + "irrationality": [["M", "S"]], + "irrationality's": null, + "irrationalities": null, + "irrationalness": [["M"]], + "irrationalness's": null, + "irrational": [["Y", "S", "P"]], + "irrationally": null, + "irrationals": null, + "Irrawaddy": [["M"]], + "Irrawaddy's": null, + "irreclaimable": null, + "irreconcilability": [["M", "S"]], + "irreconcilability's": null, + "irreconcilabilities": null, + "irreconcilableness": [["M"]], + "irreconcilableness's": null, + "irreconcilable": [["P", "S"]], + "irreconcilables": null, + "irreconcilably": null, + "irrecoverableness": [["M"]], + "irrecoverableness's": null, + "irrecoverable": [["P"]], + "irrecoverably": null, + "irredeemable": [["S"]], + "irredeemables": null, + "irredeemably": null, + "irredentism": [["M"]], + "irredentism's": null, + "irredentist": [["M"]], + "irredentist's": null, + "irreducibility": [["M"]], + "irreducibility's": null, + "irreducible": null, + "irreducibly": null, + "irreflexive": null, + "irrefutable": null, + "irrefutably": null, + "irregardless": null, + "irregularity": [["S", "M"]], + "irregularities": null, + "irregularity's": null, + "irregular": [["Y", "S"]], + "irregularly": null, + "irregulars": null, + "irrelevance": [["S", "M"]], + "irrelevances": null, + "irrelevance's": null, + "irrelevancy": [["M", "S"]], + "irrelevancy's": null, + "irrelevancies": null, + "irrelevant": [["Y"]], + "irrelevantly": null, + "irreligious": null, + "irremediableness": [["M"]], + "irremediableness's": null, + "irremediable": [["P"]], + "irremediably": null, + "irremovable": null, + "irreparableness": [["M"]], + "irreparableness's": null, + "irreparable": [["P"]], + "irreparably": null, + "irreplaceable": [["P"]], + "irreplaceableness": null, + "irrepressible": null, + "irrepressibly": null, + "irreproachableness": [["M"]], + "irreproachableness's": null, + "irreproachable": [["P"]], + "irreproachably": null, + "irreproducibility": null, + "irreproducible": null, + "irresistibility": [["M"]], + "irresistibility's": null, + "irresistibleness": [["M"]], + "irresistibleness's": null, + "irresistible": [["P"]], + "irresistibly": null, + "irresoluteness": [["S", "M"]], + "irresolutenesses": null, + "irresoluteness's": null, + "irresolute": [["P", "N", "X", "Y"]], + "irresolution": [["M"]], + "irresolutions": null, + "irresolutely": null, + "irresolution's": null, + "irresolvable": null, + "irrespective": [["Y"]], + "irrespectively": null, + "irresponsibility": [["S", "M"]], + "irresponsibilities": null, + "irresponsibility's": null, + "irresponsibleness": [["M"]], + "irresponsibleness's": null, + "irresponsible": [["P", "S"]], + "irresponsibles": null, + "irresponsibly": null, + "irretrievable": null, + "irretrievably": null, + "irreverence": [["M", "S"]], + "irreverence's": null, + "irreverences": null, + "irreverent": [["Y"]], + "irreverently": null, + "irreversible": null, + "irreversibly": null, + "irrevocableness": [["M"]], + "irrevocableness's": null, + "irrevocable": [["P"]], + "irrevocably": null, + "irrigable": null, + "irrigate": [["D", "S", "X", "N", "G"]], + "irrigated": null, + "irrigates": null, + "irrigations": null, + "irrigation": [["M"]], + "irrigating": null, + "irrigation's": null, + "irritability": [["M", "S"]], + "irritability's": null, + "irritabilities": null, + "irritableness": [["M"]], + "irritableness's": null, + "irritable": [["P"]], + "irritably": null, + "irritant": [["S"]], + "irritants": null, + "irritate": [["D", "S", "X", "N", "G", "V"]], + "irritated": [["Y"]], + "irritates": null, + "irritations": null, + "irritation": [["M"]], + "irritating": [["Y"]], + "irritative": null, + "irritatedly": null, + "irritatingly": null, + "irritation's": null, + "irrupt": [["G", "V", "S", "D"]], + "irrupting": null, + "irruptive": null, + "irrupts": null, + "irrupted": null, + "irruption": [["S", "M"]], + "irruptions": null, + "irruption's": null, + "IRS": null, + "Irtish": [["M"]], + "Irtish's": null, + "Irvine": [["M"]], + "Irvine's": null, + "Irving": [["M"]], + "Irving's": null, + "Irvin": [["M"]], + "Irvin's": null, + "Irv": [["M", "G"]], + "Irv's": null, + "Irwin": [["M"]], + "Irwin's": null, + "Irwinn": [["M"]], + "Irwinn's": null, + "is": null, + "i's": null, + "Isaac": [["S", "M"]], + "Isaacs": null, + "Isaac's": null, + "Isaak": [["M"]], + "Isaak's": null, + "Isabelita": [["M"]], + "Isabelita's": null, + "Isabella": [["M"]], + "Isabella's": null, + "Isabelle": [["M"]], + "Isabelle's": null, + "Isabel": [["M"]], + "Isabel's": null, + "Isacco": [["M"]], + "Isacco's": null, + "Isac": [["M"]], + "Isac's": null, + "Isadora": [["M"]], + "Isadora's": null, + "Isadore": [["M"]], + "Isadore's": null, + "Isador": [["M"]], + "Isador's": null, + "Isahella": [["M"]], + "Isahella's": null, + "Isaiah": [["M"]], + "Isaiah's": null, + "Isak": [["M"]], + "Isak's": null, + "Isa": [["M"]], + "Isa's": null, + "ISBN": null, + "Iscariot": [["M"]], + "Iscariot's": null, + "Iseabal": [["M"]], + "Iseabal's": null, + "Isfahan": [["M"]], + "Isfahan's": null, + "Isherwood": [["M"]], + "Isherwood's": null, + "Ishim": [["M"]], + "Ishim's": null, + "Ishmael": [["M"]], + "Ishmael's": null, + "Ishtar": [["M"]], + "Ishtar's": null, + "Isiahi": [["M"]], + "Isiahi's": null, + "Isiah": [["M"]], + "Isiah's": null, + "Isidora": [["M"]], + "Isidora's": null, + "Isidore": [["M"]], + "Isidore's": null, + "Isidor": [["M"]], + "Isidor's": null, + "Isidoro": [["M"]], + "Isidoro's": null, + "Isidro": [["M"]], + "Isidro's": null, + "isinglass": [["M", "S"]], + "isinglass's": null, + "isinglasses": null, + "Isis": [["M"]], + "Isis's": null, + "Islamabad": [["M"]], + "Islamabad's": null, + "Islamic": [["S"]], + "Islamics": null, + "Islam": [["S", "M"]], + "Islams": null, + "Islam's": null, + "islander": [["M"]], + "islander's": null, + "island": [["G", "Z", "M", "R", "D", "S"]], + "islanding": null, + "islanders": null, + "island's": null, + "islanded": null, + "islands": null, + "Islandia": [["M"]], + "Islandia's": null, + "isle": [["M", "S"]], + "isle's": null, + "isles": null, + "islet": [["S", "M"]], + "islets": null, + "islet's": null, + "isl": [["G", "D"]], + "isling": null, + "isled": null, + "Ismael": [["M"]], + "Ismael's": null, + "ism": [["M", "C", "S"]], + "ism's": null, + "deism's": null, + "deism": null, + "deisms": null, + "isms": null, + "isn't": null, + "ISO": null, + "isobaric": null, + "isobar": [["M", "S"]], + "isobar's": null, + "isobars": null, + "Isobel": [["M"]], + "Isobel's": null, + "isochronal": [["Y"]], + "isochronally": null, + "isochronous": [["Y"]], + "isochronously": null, + "isocline": [["M"]], + "isocline's": null, + "isocyanate": [["M"]], + "isocyanate's": null, + "isodine": null, + "isolate": [["S", "D", "X", "N", "G"]], + "isolates": null, + "isolated": null, + "isolations": null, + "isolation": [["M"]], + "isolating": null, + "isolationism": [["S", "M"]], + "isolationisms": null, + "isolationism's": null, + "isolationistic": null, + "isolationist": [["S", "M"]], + "isolationists": null, + "isolationist's": null, + "isolation's": null, + "isolator": [["M", "S"]], + "isolator's": null, + "isolators": null, + "Isolde": [["M"]], + "Isolde's": null, + "isomeric": null, + "isomerism": [["S", "M"]], + "isomerisms": null, + "isomerism's": null, + "isomer": [["S", "M"]], + "isomers": null, + "isomer's": null, + "isometrically": null, + "isometric": [["S"]], + "isometrics": [["M"]], + "isometrics's": null, + "isomorphic": null, + "isomorphically": null, + "isomorphism": [["M", "S"]], + "isomorphism's": null, + "isomorphisms": null, + "isomorph": [["M"]], + "isomorph's": null, + "isoperimetrical": null, + "isopleth": [["M"]], + "isopleth's": null, + "isopleths": null, + "isosceles": null, + "isostatic": null, + "isothermal": [["Y"]], + "isothermally": null, + "isotherm": [["M", "S"]], + "isotherm's": null, + "isotherms": null, + "isotonic": null, + "isotope": [["S", "M"]], + "isotopes": null, + "isotope's": null, + "isotopic": null, + "isotropic": null, + "isotropically": null, + "isotropy": [["M"]], + "isotropy's": null, + "Ispahan's": null, + "ispell": [["M"]], + "ispell's": null, + "Ispell": [["M"]], + "Ispell's": null, + "Israeli": [["M", "S"]], + "Israeli's": null, + "Israelis": null, + "Israelite": [["S", "M"]], + "Israelites": null, + "Israelite's": null, + "Israel": [["M", "S"]], + "Israel's": null, + "Israels": null, + "Issac": [["M"]], + "Issac's": null, + "Issiah": [["M"]], + "Issiah's": null, + "Issie": [["M"]], + "Issie's": null, + "Issi": [["M"]], + "Issi's": null, + "issuable": null, + "issuance": [["M", "S"]], + "issuance's": null, + "issuances": null, + "issuant": null, + "issued": [["A"]], + "reissued": null, + "issue": [["G", "M", "Z", "D", "S", "R"]], + "issuing": [["A"]], + "issue's": null, + "issuers": null, + "issues": [["A"]], + "issuer": [["A", "M", "S"]], + "reissuer": null, + "reissuer's": null, + "reissuers": null, + "issuer's": null, + "reissues": null, + "reissuing": null, + "Issy": [["M"]], + "Issy's": null, + "Istanbul": [["M"]], + "Istanbul's": null, + "isthmian": [["S"]], + "isthmians": null, + "isthmus": [["S", "M"]], + "isthmuses": null, + "isthmus's": null, + "Istvan": [["M"]], + "Istvan's": null, + "Isuzu": [["M"]], + "Isuzu's": null, + "It": null, + "IT": null, + "Itaipu": [["M"]], + "Itaipu's": null, + "ital": null, + "Italianate": [["G", "S", "D"]], + "Italianating": null, + "Italianates": null, + "Italianated": null, + "Italian": [["M", "S"]], + "Italian's": null, + "Italians": null, + "italicization": [["M", "S"]], + "italicization's": null, + "italicizations": null, + "italicized": [["U"]], + "unitalicized": null, + "italicize": [["G", "S", "D"]], + "italicizing": null, + "italicizes": null, + "italic": [["S"]], + "italics": null, + "Ital": [["M"]], + "Ital's": null, + "Italy": [["M"]], + "Italy's": null, + "Itasca": [["M"]], + "Itasca's": null, + "itch": [["G", "M", "D", "S"]], + "itching": null, + "itch's": null, + "itched": null, + "itches": null, + "itchiness": [["M", "S"]], + "itchiness's": null, + "itchinesses": null, + "Itch": [["M"]], + "Itch's": null, + "itchy": [["R", "T", "P"]], + "itchier": null, + "itchiest": null, + "ITcorp": [["M"]], + "ITcorp's": null, + "ITCorp": [["M"]], + "ITCorp's": null, + "it'd": null, + "Itel": [["M"]], + "Itel's": null, + "itemization": [["S", "M"]], + "itemizations": null, + "itemization's": null, + "itemized": [["U"]], + "unitemized": null, + "itemize": [["G", "Z", "D", "R", "S"]], + "itemizing": null, + "itemizers": null, + "itemizer": [["M"]], + "itemizes": [["A"]], + "itemizer's": null, + "reitemizes": null, + "item": [["M", "D", "S", "G"]], + "item's": null, + "itemed": null, + "items": null, + "iteming": null, + "iterate": [["A", "S", "D", "X", "V", "G", "N"]], + "reiterate": null, + "reiterates": null, + "reiterated": null, + "reiterations": null, + "reiterating": null, + "reiteration": null, + "iterates": null, + "iterated": null, + "iterations": null, + "iterative": [["Y", "A"]], + "iterating": null, + "iteration": [["M"]], + "iteration's": null, + "iteratively": null, + "reiteratively": null, + "reiterative": [["S", "P"]], + "iterator": [["M", "S"]], + "iterator's": null, + "iterators": null, + "Ithaca": [["M"]], + "Ithaca's": null, + "Ithacan": null, + "itinerant": [["S", "Y"]], + "itinerants": null, + "itinerantly": null, + "itinerary": [["M", "S"]], + "itinerary's": null, + "itineraries": null, + "it'll": null, + "it": [["M", "U", "S"]], + "it's": null, + "unit's": null, + "unit": [["V", "G", "R", "D"]], + "units": null, + "its": null, + "Ito": [["M"]], + "Ito's": null, + "itself": null, + "ITT": null, + "IUD": [["S"]], + "IUDs": null, + "IV": null, + "Iva": [["M"]], + "Iva's": null, + "Ivanhoe": [["M"]], + "Ivanhoe's": null, + "Ivan": [["M"]], + "Ivan's": null, + "Ivar": [["M"]], + "Ivar's": null, + "I've": null, + "Ive": [["M", "R", "S"]], + "Ive's": null, + "Iver": [["M"]], + "Ives": null, + "Iver's": null, + "Ivette": [["M"]], + "Ivette's": null, + "Ivett": [["M"]], + "Ivett's": null, + "Ivie": [["M"]], + "Ivie's": null, + "iv": [["M"]], + "iv's": null, + "Ivonne": [["M"]], + "Ivonne's": null, + "Ivor": [["M"]], + "Ivor's": null, + "Ivory": [["M"]], + "Ivory's": null, + "ivory": [["S", "M"]], + "ivories": null, + "ivory's": null, + "IVs": null, + "Ivy": [["M"]], + "Ivy's": null, + "ivy": [["M", "D", "S"]], + "ivy's": null, + "ivied": null, + "ivies": null, + "ix": null, + "Izaak": [["M"]], + "Izaak's": null, + "Izabel": [["M"]], + "Izabel's": null, + "Izak": [["M"]], + "Izak's": null, + "Izanagi": [["M"]], + "Izanagi's": null, + "Izanami": [["M"]], + "Izanami's": null, + "Izhevsk": [["M"]], + "Izhevsk's": null, + "Izmir": [["M"]], + "Izmir's": null, + "Izvestia": [["M"]], + "Izvestia's": null, + "Izzy": [["M"]], + "Izzy's": null, + "jabbed": null, + "jabberer": [["M"]], + "jabberer's": null, + "jabber": [["J", "R", "D", "S", "Z", "G"]], + "jabberings": null, + "jabbered": null, + "jabbers": null, + "jabberers": null, + "jabbering": null, + "jabbing": null, + "Jabez": [["M"]], + "Jabez's": null, + "Jablonsky": [["M"]], + "Jablonsky's": null, + "jabot": [["M", "S"]], + "jabot's": null, + "jabots": null, + "jab": [["S", "M"]], + "jabs": null, + "jab's": null, + "jacaranda": [["M", "S"]], + "jacaranda's": null, + "jacarandas": null, + "Jacenta": [["M"]], + "Jacenta's": null, + "Jacinda": [["M"]], + "Jacinda's": null, + "Jacinta": [["M"]], + "Jacinta's": null, + "Jacintha": [["M"]], + "Jacintha's": null, + "Jacinthe": [["M"]], + "Jacinthe's": null, + "jackal": [["S", "M"]], + "jackals": null, + "jackal's": null, + "jackass": [["S", "M"]], + "jackasses": null, + "jackass's": null, + "jackboot": [["D", "M", "S"]], + "jackbooted": null, + "jackboot's": null, + "jackboots": null, + "jackdaw": [["S", "M"]], + "jackdaws": null, + "jackdaw's": null, + "Jackelyn": [["M"]], + "Jackelyn's": null, + "jacketed": [["U"]], + "unjacketed": null, + "jacket": [["G", "S", "M", "D"]], + "jacketing": null, + "jackets": null, + "jacket's": null, + "jack": [["G", "D", "R", "M", "S"]], + "jacking": null, + "jacked": null, + "jacker": null, + "jack's": null, + "jacks": null, + "jackhammer": [["M", "D", "G", "S"]], + "jackhammer's": null, + "jackhammered": null, + "jackhammering": null, + "jackhammers": null, + "Jackie": [["M"]], + "Jackie's": null, + "Jacki": [["M"]], + "Jacki's": null, + "jackknife": [["M", "G", "S", "D"]], + "jackknife's": null, + "jackknifing": null, + "jackknifes": null, + "jackknifed": null, + "jackknives": null, + "Jacklin": [["M"]], + "Jacklin's": null, + "Jacklyn": [["M"]], + "Jacklyn's": null, + "Jack": [["M"]], + "Jack's": null, + "Jackman": [["M"]], + "Jackman's": null, + "jackpot": [["M", "S"]], + "jackpot's": null, + "jackpots": null, + "Jackqueline": [["M"]], + "Jackqueline's": null, + "Jackquelin": [["M"]], + "Jackquelin's": null, + "jackrabbit": [["D", "G", "S"]], + "jackrabbited": null, + "jackrabbiting": null, + "jackrabbits": null, + "Jacksonian": null, + "Jackson": [["S", "M"]], + "Jacksons": null, + "Jackson's": null, + "Jacksonville": [["M"]], + "Jacksonville's": null, + "jackstraw": [["M", "S"]], + "jackstraw's": null, + "jackstraws": null, + "Jacky": [["M"]], + "Jacky's": null, + "Jaclin": [["M"]], + "Jaclin's": null, + "Jaclyn": [["M"]], + "Jaclyn's": null, + "Jacobean": null, + "Jacobian": [["M"]], + "Jacobian's": null, + "Jacobi": [["M"]], + "Jacobi's": null, + "Jacobin": [["M"]], + "Jacobin's": null, + "Jacobite": [["M"]], + "Jacobite's": null, + "Jacobo": [["M"]], + "Jacobo's": null, + "Jacobsen": [["M"]], + "Jacobsen's": null, + "Jacob": [["S", "M"]], + "Jacobs": [["N"]], + "Jacob's": null, + "Jacobson": [["M"]], + "Jacobson's": null, + "Jacobus": null, + "Jacoby": [["M"]], + "Jacoby's": null, + "jacquard": [["M", "S"]], + "jacquard's": null, + "jacquards": null, + "Jacquard": [["S", "M"]], + "Jacquards": null, + "Jacquard's": null, + "Jacqueline": [["M"]], + "Jacqueline's": null, + "Jacquelin": [["M"]], + "Jacquelin's": null, + "Jacquelyn": [["M"]], + "Jacquelyn's": null, + "Jacquelynn": [["M"]], + "Jacquelynn's": null, + "Jacquenetta": [["M"]], + "Jacquenetta's": null, + "Jacquenette": [["M"]], + "Jacquenette's": null, + "Jacques": [["M"]], + "Jacques's": null, + "Jacquetta": [["M"]], + "Jacquetta's": null, + "Jacquette": [["M"]], + "Jacquette's": null, + "Jacquie": [["M"]], + "Jacquie's": null, + "Jacqui": [["M"]], + "Jacqui's": null, + "jacuzzi": null, + "Jacuzzi": [["S"]], + "Jacuzzis": null, + "Jacynth": [["M"]], + "Jacynth's": null, + "Jada": [["M"]], + "Jada's": null, + "jadedness": [["S", "M"]], + "jadednesses": null, + "jadedness's": null, + "jaded": [["P", "Y"]], + "jadedly": null, + "jadeite": [["S", "M"]], + "jadeites": null, + "jadeite's": null, + "Jade": [["M"]], + "Jade's": null, + "jade": [["M", "G", "D", "S"]], + "jade's": null, + "jading": null, + "jades": null, + "Jaeger": [["M"]], + "Jaeger's": null, + "Jae": [["M"]], + "Jae's": null, + "jaggedness": [["S", "M"]], + "jaggednesses": null, + "jaggedness's": null, + "jagged": [["R", "Y", "T", "P"]], + "jaggeder": null, + "jaggedly": null, + "jaggedest": null, + "Jagger": [["M"]], + "Jagger's": null, + "jaggers": null, + "jagging": null, + "jag": [["S"]], + "jags": null, + "jaguar": [["M", "S"]], + "jaguar's": null, + "jaguars": null, + "jailbird": [["M", "S"]], + "jailbird's": null, + "jailbirds": null, + "jailbreak": [["S", "M"]], + "jailbreaks": null, + "jailbreak's": null, + "jailer": [["M"]], + "jailer's": null, + "jail": [["G", "Z", "S", "M", "D", "R"]], + "jailing": null, + "jailers": null, + "jails": null, + "jail's": null, + "jailed": null, + "Jaime": [["M"]], + "Jaime's": null, + "Jaimie": [["M"]], + "Jaimie's": null, + "Jaine": [["M"]], + "Jaine's": null, + "Jainism": [["M"]], + "Jainism's": null, + "Jain": [["M"]], + "Jain's": null, + "Jaipur": [["M"]], + "Jaipur's": null, + "Jakarta": [["M"]], + "Jakarta's": null, + "Jake": [["M", "S"]], + "Jake's": null, + "Jakes": null, + "Jakie": [["M"]], + "Jakie's": null, + "Jakob": [["M"]], + "Jakob's": null, + "jalape�o": [["S"]], + "jalape�os": null, + "jalopy": [["S", "M"]], + "jalopies": null, + "jalopy's": null, + "jalousie": [["M", "S"]], + "jalousie's": null, + "jalousies": null, + "Jamaal": [["M"]], + "Jamaal's": null, + "Jamaica": [["M"]], + "Jamaica's": null, + "Jamaican": [["S"]], + "Jamaicans": null, + "Jamal": [["M"]], + "Jamal's": null, + "Jamar": [["M"]], + "Jamar's": null, + "jambalaya": [["M", "S"]], + "jambalaya's": null, + "jambalayas": null, + "jamb": [["D", "M", "G", "S"]], + "jambed": null, + "jamb's": null, + "jambing": null, + "jambs": null, + "jamboree": [["M", "S"]], + "jamboree's": null, + "jamborees": null, + "Jamel": [["M"]], + "Jamel's": null, + "Jame": [["M", "S"]], + "Jame's": null, + "James": null, + "Jameson": [["M"]], + "Jameson's": null, + "Jamestown": [["M"]], + "Jamestown's": null, + "Jamesy": [["M"]], + "Jamesy's": null, + "Jamey": [["M"]], + "Jamey's": null, + "Jamie": [["M"]], + "Jamie's": null, + "Jamill": [["M"]], + "Jamill's": null, + "Jamil": [["M"]], + "Jamil's": null, + "Jami": [["M"]], + "Jami's": null, + "Jamima": [["M"]], + "Jamima's": null, + "Jamison": [["M"]], + "Jamison's": null, + "Jammal": [["M"]], + "Jammal's": null, + "jammed": [["U"]], + "unjammed": null, + "Jammie": [["M"]], + "Jammie's": null, + "jamming": [["U"]], + "unjamming": null, + "jam": [["S", "M"]], + "jams": null, + "jam's": null, + "Janacek": [["M"]], + "Janacek's": null, + "Jana": [["M"]], + "Jana's": null, + "Janaya": [["M"]], + "Janaya's": null, + "Janaye": [["M"]], + "Janaye's": null, + "Jandy": [["M"]], + "Jandy's": null, + "Janean": [["M"]], + "Janean's": null, + "Janeczka": [["M"]], + "Janeczka's": null, + "Janeen": [["M"]], + "Janeen's": null, + "Janeiro": [["M"]], + "Janeiro's": null, + "Janek": [["M"]], + "Janek's": null, + "Janela": [["M"]], + "Janela's": null, + "Janella": [["M"]], + "Janella's": null, + "Janelle": [["M"]], + "Janelle's": null, + "Janell": [["M"]], + "Janell's": null, + "Janel": [["M"]], + "Janel's": null, + "Jane": [["M"]], + "Jane's": null, + "Janene": [["M"]], + "Janene's": null, + "Janenna": [["M"]], + "Janenna's": null, + "Janessa": [["M"]], + "Janessa's": null, + "Janesville": [["M"]], + "Janesville's": null, + "Janeta": [["M"]], + "Janeta's": null, + "Janet": [["M"]], + "Janet's": null, + "Janetta": [["M"]], + "Janetta's": null, + "Janette": [["M"]], + "Janette's": null, + "Janeva": [["M"]], + "Janeva's": null, + "Janey": [["M"]], + "Janey's": null, + "jangler": [["M"]], + "jangler's": null, + "jangle": [["R", "S", "D", "G", "Z"]], + "jangles": null, + "jangled": null, + "jangling": null, + "janglers": null, + "jangly": null, + "Jania": [["M"]], + "Jania's": null, + "Janice": [["M"]], + "Janice's": null, + "Janie": [["M"]], + "Janie's": null, + "Janifer": [["M"]], + "Janifer's": null, + "Janina": [["M"]], + "Janina's": null, + "Janine": [["M"]], + "Janine's": null, + "Janis": [["M"]], + "Janis's": null, + "janissary": [["M", "S"]], + "janissary's": null, + "janissaries": null, + "Janith": [["M"]], + "Janith's": null, + "janitorial": null, + "janitor": [["S", "M"]], + "janitors": null, + "janitor's": null, + "Janka": [["M"]], + "Janka's": null, + "Jan": [["M"]], + "Jan's": null, + "Janna": [["M"]], + "Janna's": null, + "Jannelle": [["M"]], + "Jannelle's": null, + "Jannel": [["M"]], + "Jannel's": null, + "Jannie": [["M"]], + "Jannie's": null, + "Janos": [["M"]], + "Janos's": null, + "Janot": [["M"]], + "Janot's": null, + "Jansenist": [["M"]], + "Jansenist's": null, + "Jansen": [["M"]], + "Jansen's": null, + "January": [["M", "S"]], + "January's": null, + "Januaries": null, + "Janus": [["M"]], + "Janus's": null, + "Jany": [["M"]], + "Jany's": null, + "Japanese": [["S", "M"]], + "Japaneses": null, + "Japanese's": null, + "Japan": [["M"]], + "Japan's": null, + "japanned": null, + "japanner": null, + "japanning": null, + "japan": [["S", "M"]], + "japans": null, + "japan's": null, + "jape": [["D", "S", "M", "G"]], + "japed": null, + "japes": null, + "jape's": null, + "japing": null, + "Japura": [["M"]], + "Japura's": null, + "Jaquelin": [["M"]], + "Jaquelin's": null, + "Jaquelyn": [["M"]], + "Jaquelyn's": null, + "Jaquenetta": [["M"]], + "Jaquenetta's": null, + "Jaquenette": [["M"]], + "Jaquenette's": null, + "Jaquith": [["M"]], + "Jaquith's": null, + "Jarad": [["M"]], + "Jarad's": null, + "jardini�re": [["M", "S"]], + "jardini�re's": null, + "jardini�res": null, + "Jard": [["M"]], + "Jard's": null, + "Jareb": [["M"]], + "Jareb's": null, + "Jared": [["M"]], + "Jared's": null, + "jarful": [["S"]], + "jarfuls": null, + "jargon": [["S", "G", "D", "M"]], + "jargons": null, + "jargoning": null, + "jargoned": null, + "jargon's": null, + "Jarib": [["M"]], + "Jarib's": null, + "Jarid": [["M"]], + "Jarid's": null, + "Jarlsberg": null, + "jar": [["M", "S"]], + "jar's": null, + "jars": null, + "Jarrad": [["M"]], + "Jarrad's": null, + "jarred": null, + "Jarred": [["M"]], + "Jarred's": null, + "Jarret": [["M"]], + "Jarret's": null, + "Jarrett": [["M"]], + "Jarrett's": null, + "Jarrid": [["M"]], + "Jarrid's": null, + "jarring": [["S", "Y"]], + "jarrings": null, + "jarringly": null, + "Jarrod": [["M"]], + "Jarrod's": null, + "Jarvis": [["M"]], + "Jarvis's": null, + "Jase": [["M"]], + "Jase's": null, + "Jasen": [["M"]], + "Jasen's": null, + "Jasmina": [["M"]], + "Jasmina's": null, + "Jasmine": [["M"]], + "Jasmine's": null, + "jasmine": [["M", "S"]], + "jasmine's": null, + "jasmines": null, + "Jasmin": [["M"]], + "Jasmin's": null, + "Jason": [["M"]], + "Jason's": null, + "Jasper": [["M"]], + "Jasper's": null, + "jasper": [["M", "S"]], + "jasper's": null, + "jaspers": null, + "Jastrow": [["M"]], + "Jastrow's": null, + "Jasun": [["M"]], + "Jasun's": null, + "jato": [["S", "M"]], + "jatos": null, + "jato's": null, + "jaundice": [["D", "S", "M", "G"]], + "jaundiced": [["U"]], + "jaundices": null, + "jaundice's": null, + "jaundicing": null, + "unjaundiced": null, + "jauntily": null, + "jauntiness": [["M", "S"]], + "jauntiness's": null, + "jauntinesses": null, + "jaunt": [["M", "D", "G", "S"]], + "jaunt's": null, + "jaunted": null, + "jaunting": null, + "jaunts": null, + "jaunty": [["S", "R", "T", "P"]], + "jaunties": null, + "jauntier": null, + "jauntiest": null, + "Javanese": null, + "Java": [["S", "M"]], + "Javas": null, + "Java's": null, + "javelin": [["S", "D", "M", "G"]], + "javelins": null, + "javelined": null, + "javelin's": null, + "javelining": null, + "Javier": [["M"]], + "Javier's": null, + "jawbone": [["S", "D", "M", "G"]], + "jawbones": null, + "jawboned": null, + "jawbone's": null, + "jawboning": null, + "jawbreaker": [["S", "M"]], + "jawbreakers": null, + "jawbreaker's": null, + "jawline": null, + "jaw": [["S", "M", "D", "G"]], + "jaws": null, + "jaw's": null, + "jawed": null, + "jawing": null, + "Jaxartes": [["M"]], + "Jaxartes's": null, + "Jayapura": [["M"]], + "Jayapura's": null, + "jaybird": [["S", "M"]], + "jaybirds": null, + "jaybird's": null, + "Jaycee": [["S", "M"]], + "Jaycees": null, + "Jaycee's": null, + "Jaye": [["M"]], + "Jaye's": null, + "Jay": [["M"]], + "Jay's": null, + "Jaymee": [["M"]], + "Jaymee's": null, + "Jayme": [["M"]], + "Jayme's": null, + "Jaymie": [["M"]], + "Jaymie's": null, + "Jaynell": [["M"]], + "Jaynell's": null, + "Jayne": [["M"]], + "Jayne's": null, + "jay": [["S", "M"]], + "jays": null, + "jay's": null, + "Jayson": [["M"]], + "Jayson's": null, + "jaywalker": [["M"]], + "jaywalker's": null, + "jaywalk": [["J", "S", "R", "D", "Z", "G"]], + "jaywalkings": null, + "jaywalks": null, + "jaywalked": null, + "jaywalkers": null, + "jaywalking": null, + "Jazmin": [["M"]], + "Jazmin's": null, + "jazziness": [["M"]], + "jazziness's": null, + "jazzmen": null, + "jazz": [["M", "G", "D", "S"]], + "jazz's": null, + "jazzing": null, + "jazzed": null, + "jazzes": null, + "jazzy": [["P", "T", "R"]], + "jazziest": null, + "jazzier": null, + "JCS": null, + "jct": null, + "JD": null, + "Jdavie": [["M"]], + "Jdavie's": null, + "jealousness": [["M"]], + "jealousness's": null, + "jealous": [["P", "Y"]], + "jealously": null, + "jealousy": [["M", "S"]], + "jealousy's": null, + "jealousies": null, + "Jeana": [["M"]], + "Jeana's": null, + "Jeanelle": [["M"]], + "Jeanelle's": null, + "Jeane": [["M"]], + "Jeane's": null, + "Jeanette": [["M"]], + "Jeanette's": null, + "Jeanie": [["M"]], + "Jeanie's": null, + "Jeanine": [["M"]], + "Jeanine's": null, + "Jean": [["M"]], + "Jean's": null, + "jean": [["M", "S"]], + "jean's": null, + "jeans": null, + "Jeanna": [["M"]], + "Jeanna's": null, + "Jeanne": [["M"]], + "Jeanne's": null, + "Jeannette": [["M"]], + "Jeannette's": null, + "Jeannie": [["M"]], + "Jeannie's": null, + "Jeannine": [["M"]], + "Jeannine's": null, + "Jecho": [["M"]], + "Jecho's": null, + "Jedd": [["M"]], + "Jedd's": null, + "Jeddy": [["M"]], + "Jeddy's": null, + "Jedediah": [["M"]], + "Jedediah's": null, + "Jedidiah": [["M"]], + "Jedidiah's": null, + "Jedi": [["M"]], + "Jedi's": null, + "Jed": [["M"]], + "Jed's": null, + "jeep": [["G", "Z", "S", "M", "D"]], + "jeeping": null, + "jeepers": null, + "jeeps": null, + "jeep's": null, + "jeeped": null, + "Jeep": [["S"]], + "Jeeps": null, + "jeerer": [["M"]], + "jeerer's": null, + "jeering": [["Y"]], + "jeeringly": null, + "jeer": [["S", "J", "D", "R", "M", "G"]], + "jeers": null, + "jeerings": null, + "jeered": null, + "jeer's": null, + "Jeeves": [["M"]], + "Jeeves's": null, + "jeez": null, + "Jefferey": [["M"]], + "Jefferey's": null, + "Jeffersonian": [["S"]], + "Jeffersonians": null, + "Jefferson": [["M"]], + "Jefferson's": null, + "Jeffery": [["M"]], + "Jeffery's": null, + "Jeffie": [["M"]], + "Jeffie's": null, + "Jeff": [["M"]], + "Jeff's": null, + "Jeffrey": [["S", "M"]], + "Jeffreys": null, + "Jeffrey's": null, + "Jeffry": [["M"]], + "Jeffry's": null, + "Jeffy": [["M"]], + "Jeffy's": null, + "jehad's": null, + "Jehanna": [["M"]], + "Jehanna's": null, + "Jehoshaphat": [["M"]], + "Jehoshaphat's": null, + "Jehovah": [["M"]], + "Jehovah's": null, + "Jehu": [["M"]], + "Jehu's": null, + "jejuna": null, + "jejuneness": [["M"]], + "jejuneness's": null, + "jejune": [["P", "Y"]], + "jejunely": null, + "jejunum": [["M"]], + "jejunum's": null, + "Jekyll": [["M"]], + "Jekyll's": null, + "Jelene": [["M"]], + "Jelene's": null, + "jell": [["G", "S", "D"]], + "jelling": null, + "jells": null, + "jelled": null, + "Jello": [["M"]], + "Jello's": null, + "jello's": null, + "jellybean": [["S", "M"]], + "jellybeans": null, + "jellybean's": null, + "jellyfish": [["M", "S"]], + "jellyfish's": null, + "jellyfishes": null, + "jellying": [["M"]], + "jellying's": null, + "jellylike": null, + "jellyroll": [["S"]], + "jellyrolls": null, + "jelly": [["S", "D", "M", "G"]], + "jellies": null, + "jellied": null, + "jelly's": null, + "Jemie": [["M"]], + "Jemie's": null, + "Jemimah": [["M"]], + "Jemimah's": null, + "Jemima": [["M"]], + "Jemima's": null, + "Jemmie": [["M"]], + "Jemmie's": null, + "jemmy": [["M"]], + "jemmy's": null, + "Jemmy": [["M"]], + "Jemmy's": null, + "Jena": [["M"]], + "Jena's": null, + "Jenda": [["M"]], + "Jenda's": null, + "Jenelle": [["M"]], + "Jenelle's": null, + "Jenica": [["M"]], + "Jenica's": null, + "Jeniece": [["M"]], + "Jeniece's": null, + "Jenifer": [["M"]], + "Jenifer's": null, + "Jeniffer": [["M"]], + "Jeniffer's": null, + "Jenilee": [["M"]], + "Jenilee's": null, + "Jeni": [["M"]], + "Jeni's": null, + "Jenine": [["M"]], + "Jenine's": null, + "Jenkins": [["M"]], + "Jenkins's": null, + "Jen": [["M"]], + "Jen's": null, + "Jenna": [["M"]], + "Jenna's": null, + "Jennee": [["M"]], + "Jennee's": null, + "Jenner": [["M"]], + "Jenner's": null, + "jennet": [["S", "M"]], + "jennets": null, + "jennet's": null, + "Jennette": [["M"]], + "Jennette's": null, + "Jennica": [["M"]], + "Jennica's": null, + "Jennie": [["M"]], + "Jennie's": null, + "Jennifer": [["M"]], + "Jennifer's": null, + "Jennilee": [["M"]], + "Jennilee's": null, + "Jenni": [["M"]], + "Jenni's": null, + "Jennine": [["M"]], + "Jennine's": null, + "Jennings": [["M"]], + "Jennings's": null, + "Jenn": [["R", "M", "J"]], + "Jenn's": null, + "Jenny": [["M"]], + "Jenny's": null, + "jenny": [["S", "M"]], + "jennies": null, + "jenny's": null, + "Jeno": [["M"]], + "Jeno's": null, + "Jensen": [["M"]], + "Jensen's": null, + "Jens": [["N"]], + "jeopard": null, + "jeopardize": [["G", "S", "D"]], + "jeopardizing": null, + "jeopardizes": null, + "jeopardized": null, + "jeopardy": [["M", "S"]], + "jeopardy's": null, + "jeopardies": null, + "Jephthah": [["M"]], + "Jephthah's": null, + "Jerad": [["M"]], + "Jerad's": null, + "Jerald": [["M"]], + "Jerald's": null, + "Jeralee": [["M"]], + "Jeralee's": null, + "Jeramey": [["M"]], + "Jeramey's": null, + "Jeramie": [["M"]], + "Jeramie's": null, + "Jere": [["M"]], + "Jere's": null, + "Jereme": [["M"]], + "Jereme's": null, + "jeremiad": [["S", "M"]], + "jeremiads": null, + "jeremiad's": null, + "Jeremiah": [["M"]], + "Jeremiah's": null, + "Jeremiahs": null, + "Jeremias": [["M"]], + "Jeremias's": null, + "Jeremie": [["M"]], + "Jeremie's": null, + "Jeremy": [["M"]], + "Jeremy's": null, + "Jericho": [["M"]], + "Jericho's": null, + "Jeri": [["M"]], + "Jeri's": null, + "jerker": [["M"]], + "jerker's": null, + "jerk": [["G", "S", "D", "R", "J"]], + "jerking": null, + "jerks": null, + "jerked": null, + "jerkings": null, + "jerkily": null, + "jerkiness": [["S", "M"]], + "jerkinesses": null, + "jerkiness's": null, + "jerkin": [["S", "M"]], + "jerkins": null, + "jerkin's": null, + "jerkwater": [["S"]], + "jerkwaters": null, + "jerky": [["R", "S", "T", "P"]], + "jerkier": null, + "jerkies": null, + "jerkiest": null, + "Jermaine": [["M"]], + "Jermaine's": null, + "Jermain": [["M"]], + "Jermain's": null, + "Jermayne": [["M"]], + "Jermayne's": null, + "Jeroboam": [["M"]], + "Jeroboam's": null, + "Jerold": [["M"]], + "Jerold's": null, + "Jerome": [["M"]], + "Jerome's": null, + "Jeromy": [["M"]], + "Jeromy's": null, + "Jerrie": [["M"]], + "Jerrie's": null, + "Jerrilee": [["M"]], + "Jerrilee's": null, + "Jerrilyn": [["M"]], + "Jerrilyn's": null, + "Jerri": [["M"]], + "Jerri's": null, + "Jerrine": [["M"]], + "Jerrine's": null, + "Jerrod": [["M"]], + "Jerrod's": null, + "Jerrold": [["M"]], + "Jerrold's": null, + "Jerrome": [["M"]], + "Jerrome's": null, + "jerrybuilt": null, + "Jerrylee": [["M"]], + "Jerrylee's": null, + "jerry": [["M"]], + "jerry's": null, + "Jerry": [["M"]], + "Jerry's": null, + "jersey": [["M", "S"]], + "jersey's": null, + "jerseys": null, + "Jersey": [["M", "S"]], + "Jersey's": null, + "Jerseys": null, + "Jerusalem": [["M"]], + "Jerusalem's": null, + "Jervis": [["M"]], + "Jervis's": null, + "Jes": null, + "Jessalin": [["M"]], + "Jessalin's": null, + "Jessalyn": [["M"]], + "Jessalyn's": null, + "Jessa": [["M"]], + "Jessa's": null, + "Jessamine": [["M"]], + "Jessamine's": null, + "jessamine's": null, + "Jessamyn": [["M"]], + "Jessamyn's": null, + "Jessee": [["M"]], + "Jessee's": null, + "Jesselyn": [["M"]], + "Jesselyn's": null, + "Jesse": [["M"]], + "Jesse's": null, + "Jessey": [["M"]], + "Jessey's": null, + "Jessica": [["M"]], + "Jessica's": null, + "Jessie": [["M"]], + "Jessie's": null, + "Jessika": [["M"]], + "Jessika's": null, + "Jessi": [["M"]], + "Jessi's": null, + "jess": [["M"]], + "jess's": null, + "Jess": [["M"]], + "Jess's": null, + "Jessy": [["M"]], + "Jessy's": null, + "jest": [["D", "R", "S", "G", "Z", "M"]], + "jested": null, + "jester": [["M"]], + "jests": null, + "jesting": [["Y"]], + "jesters": null, + "jest's": null, + "jester's": null, + "jestingly": null, + "Jesuit": [["S", "M"]], + "Jesuits": null, + "Jesuit's": null, + "Jesus": null, + "Jeth": [["M"]], + "Jeth's": null, + "Jethro": [["M"]], + "Jethro's": null, + "jetliner": [["M", "S"]], + "jetliner's": null, + "jetliners": null, + "jet": [["M", "S"]], + "jet's": null, + "jets": null, + "jetport": [["S", "M"]], + "jetports": null, + "jetport's": null, + "jetsam": [["M", "S"]], + "jetsam's": null, + "jetsams": null, + "jetted": [["M"]], + "jetted's": null, + "jetting": [["M"]], + "jetting's": null, + "jettison": [["D", "S", "G"]], + "jettisoned": null, + "jettisons": null, + "jettisoning": null, + "jetty": [["R", "S", "D", "G", "M", "T"]], + "jettier": null, + "jetties": null, + "jettied": null, + "jettying": null, + "jetty's": null, + "jettiest": null, + "jeweler": [["M"]], + "jeweler's": null, + "jewelery": [["S"]], + "jeweleries": null, + "jewel": [["G", "Z", "M", "R", "D", "S"]], + "jeweling": null, + "jewelers": null, + "jewel's": null, + "jeweled": null, + "jewels": null, + "Jewelled": [["M"]], + "Jewelled's": null, + "Jewelle": [["M"]], + "Jewelle's": null, + "jewellery's": null, + "Jewell": [["M", "D"]], + "Jewell's": null, + "Jewel": [["M"]], + "Jewel's": null, + "jewelry": [["M", "S"]], + "jewelry's": null, + "jewelries": null, + "Jewess": [["S", "M"]], + "Jewesses": null, + "Jewess's": null, + "Jewishness": [["M", "S"]], + "Jewishness's": null, + "Jewishnesses": null, + "Jewish": [["P"]], + "Jew": [["M", "S"]], + "Jew's": null, + "Jews": null, + "Jewry": [["M", "S"]], + "Jewry's": null, + "Jewries": null, + "Jezebel": [["M", "S"]], + "Jezebel's": null, + "Jezebels": null, + "j": [["F"]], + "conj": null, + "JFK": [["M"]], + "JFK's": null, + "jg": [["M"]], + "jg's": null, + "jibbed": null, + "jibbing": null, + "jibe": [["S"]], + "jibes": null, + "jib": [["M", "D", "S", "G"]], + "jib's": null, + "jibed": null, + "jibs": null, + "jibing": null, + "Jidda": [["M"]], + "Jidda's": null, + "jiff": [["S"]], + "jiffs": null, + "jiffy": [["S", "M"]], + "jiffies": null, + "jiffy's": null, + "jigged": null, + "jigger": [["S", "D", "M", "G"]], + "jiggers": null, + "jiggered": null, + "jigger's": null, + "jiggering": null, + "jigging": [["M"]], + "jigging's": null, + "jiggle": [["S", "D", "G"]], + "jiggles": null, + "jiggled": null, + "jiggling": null, + "jiggly": [["T", "R"]], + "jiggliest": null, + "jigglier": null, + "jig": [["M", "S"]], + "jig's": null, + "jigs": null, + "jigsaw": [["G", "S", "D", "M"]], + "jigsawing": null, + "jigsaws": null, + "jigsawed": null, + "jigsaw's": null, + "jihad": [["S", "M"]], + "jihads": null, + "jihad's": null, + "Jilin": null, + "Jillana": [["M"]], + "Jillana's": null, + "Jillane": [["M"]], + "Jillane's": null, + "Jillayne": [["M"]], + "Jillayne's": null, + "Jilleen": [["M"]], + "Jilleen's": null, + "Jillene": [["M"]], + "Jillene's": null, + "Jillian": [["M"]], + "Jillian's": null, + "Jillie": [["M"]], + "Jillie's": null, + "Jilli": [["M"]], + "Jilli's": null, + "Jill": [["M"]], + "Jill's": null, + "Jilly": [["M"]], + "Jilly's": null, + "jilt": [["D", "R", "G", "S"]], + "jilted": null, + "jilter": [["M"]], + "jilting": null, + "jilts": null, + "jilter's": null, + "Jimenez": [["M"]], + "Jimenez's": null, + "Jim": [["M"]], + "Jim's": null, + "Jimmie": [["M"]], + "Jimmie's": null, + "jimmy": [["G", "S", "D", "M"]], + "jimmying": null, + "jimmies": null, + "jimmied": null, + "jimmy's": null, + "Jimmy": [["M"]], + "Jimmy's": null, + "jimsonweed": [["S"]], + "jimsonweeds": null, + "Jinan": null, + "jingler": [["M"]], + "jingler's": null, + "jingle": [["R", "S", "D", "G"]], + "jingles": null, + "jingled": null, + "jingling": null, + "jingly": [["T", "R"]], + "jingliest": null, + "jinglier": null, + "jingoism": [["S", "M"]], + "jingoisms": null, + "jingoism's": null, + "jingoistic": null, + "jingoist": [["S", "M"]], + "jingoists": null, + "jingoist's": null, + "jingo": [["M"]], + "jingo's": null, + "Jinnah": [["M"]], + "Jinnah's": null, + "jinni's": null, + "jinn": [["M", "S"]], + "jinn's": null, + "jinns": null, + "Jinny": [["M"]], + "Jinny's": null, + "jinrikisha": [["S", "M"]], + "jinrikishas": null, + "jinrikisha's": null, + "jinx": [["G", "M", "D", "S"]], + "jinxing": null, + "jinx's": null, + "jinxed": null, + "jinxes": null, + "jitney": [["M", "S"]], + "jitney's": null, + "jitneys": null, + "jitterbugged": null, + "jitterbugger": null, + "jitterbugging": null, + "jitterbug": [["S", "M"]], + "jitterbugs": null, + "jitterbug's": null, + "jitter": [["S"]], + "jitters": null, + "jittery": [["T", "R"]], + "jitteriest": null, + "jitterier": null, + "jiujitsu's": null, + "Jivaro": [["M"]], + "Jivaro's": null, + "jive": [["M", "G", "D", "S"]], + "jive's": null, + "jiving": null, + "jived": null, + "jives": null, + "Joachim": [["M"]], + "Joachim's": null, + "Joana": [["M"]], + "Joana's": null, + "Joane": [["M"]], + "Joane's": null, + "Joanie": [["M"]], + "Joanie's": null, + "Joan": [["M"]], + "Joan's": null, + "Joanna": [["M"]], + "Joanna's": null, + "Joanne": [["S", "M"]], + "Joannes": null, + "Joanne's": null, + "Joann": [["M"]], + "Joann's": null, + "Joaquin": [["M"]], + "Joaquin's": null, + "jobbed": null, + "jobber": [["M", "S"]], + "jobber's": null, + "jobbers": null, + "jobbery": [["M"]], + "jobbery's": null, + "jobbing": [["M"]], + "jobbing's": null, + "Jobey": [["M"]], + "Jobey's": null, + "jobholder": [["S", "M"]], + "jobholders": null, + "jobholder's": null, + "Jobie": [["M"]], + "Jobie's": null, + "Jobi": [["M"]], + "Jobi's": null, + "Jobina": [["M"]], + "Jobina's": null, + "joblessness": [["M", "S"]], + "joblessness's": null, + "joblessnesses": null, + "jobless": [["P"]], + "Jobrel": [["M"]], + "Jobrel's": null, + "job": [["S", "M"]], + "jobs": null, + "job's": null, + "Job": [["S", "M"]], + "Jobs": null, + "Job's": null, + "Jobye": [["M"]], + "Jobye's": null, + "Joby": [["M"]], + "Joby's": null, + "Jobyna": [["M"]], + "Jobyna's": null, + "Jocasta": [["M"]], + "Jocasta's": null, + "Joceline": [["M"]], + "Joceline's": null, + "Jocelin": [["M"]], + "Jocelin's": null, + "Jocelyne": [["M"]], + "Jocelyne's": null, + "Jocelyn": [["M"]], + "Jocelyn's": null, + "jockey": [["S", "G", "M", "D"]], + "jockeys": null, + "jockeying": null, + "jockey's": null, + "jockeyed": null, + "jock": [["G", "D", "M", "S"]], + "jocking": null, + "jocked": null, + "jock's": null, + "jocks": null, + "Jock": [["M"]], + "Jock's": null, + "Jocko": [["M"]], + "Jocko's": null, + "jockstrap": [["M", "S"]], + "jockstrap's": null, + "jockstraps": null, + "jocoseness": [["M", "S"]], + "jocoseness's": null, + "jocosenesses": null, + "jocose": [["Y", "P"]], + "jocosely": null, + "jocosity": [["S", "M"]], + "jocosities": null, + "jocosity's": null, + "jocularity": [["S", "M"]], + "jocularities": null, + "jocularity's": null, + "jocular": [["Y"]], + "jocularly": null, + "jocundity": [["S", "M"]], + "jocundities": null, + "jocundity's": null, + "jocund": [["Y"]], + "jocundly": null, + "Jodee": [["M"]], + "Jodee's": null, + "jodhpurs": null, + "Jodie": [["M"]], + "Jodie's": null, + "Jodi": [["M"]], + "Jodi's": null, + "Jody": [["M"]], + "Jody's": null, + "Joeann": [["M"]], + "Joeann's": null, + "Joela": [["M"]], + "Joela's": null, + "Joelie": [["M"]], + "Joelie's": null, + "Joella": [["M"]], + "Joella's": null, + "Joelle": [["M"]], + "Joelle's": null, + "Joellen": [["M"]], + "Joellen's": null, + "Joell": [["M", "N"]], + "Joell's": null, + "Joelly": [["M"]], + "Joelly's": null, + "Joellyn": [["M"]], + "Joellyn's": null, + "Joel": [["M", "Y"]], + "Joel's": null, + "Joelynn": [["M"]], + "Joelynn's": null, + "Joe": [["M"]], + "Joe's": null, + "Joesph": [["M"]], + "Joesph's": null, + "Joete": [["M"]], + "Joete's": null, + "joey": [["M"]], + "joey's": null, + "Joey": [["M"]], + "Joey's": null, + "jogged": null, + "jogger": [["S", "M"]], + "joggers": null, + "jogger's": null, + "jogging": [["S"]], + "joggings": null, + "joggler": [["M"]], + "joggler's": null, + "joggle": [["S", "R", "D", "G"]], + "joggles": null, + "joggled": null, + "joggling": null, + "Jogjakarta": [["M"]], + "Jogjakarta's": null, + "jog": [["S"]], + "jogs": null, + "Johan": [["M"]], + "Johan's": null, + "Johannah": [["M"]], + "Johannah's": null, + "Johanna": [["M"]], + "Johanna's": null, + "Johannes": null, + "Johannesburg": [["M"]], + "Johannesburg's": null, + "Johann": [["M"]], + "Johann's": null, + "Johansen": [["M"]], + "Johansen's": null, + "Johanson": [["M"]], + "Johanson's": null, + "Johna": [["M", "H"]], + "Johna's": null, + "Johnath": [["M"]], + "Johnathan": [["M"]], + "Johnathan's": null, + "Johnath's": null, + "Johnathon": [["M"]], + "Johnathon's": null, + "Johnette": [["M"]], + "Johnette's": null, + "Johnie": [["M"]], + "Johnie's": null, + "Johnna": [["M"]], + "Johnna's": null, + "Johnnie": [["M"]], + "Johnnie's": null, + "johnnycake": [["S", "M"]], + "johnnycakes": null, + "johnnycake's": null, + "Johnny": [["M"]], + "Johnny's": null, + "johnny": [["S", "M"]], + "johnnies": null, + "johnny's": null, + "Johnsen": [["M"]], + "Johnsen's": null, + "john": [["S", "M"]], + "johns": null, + "john's": null, + "John": [["S", "M"]], + "Johns": [["N"]], + "John's": null, + "Johnson": [["M"]], + "Johnson's": null, + "Johnston": [["M"]], + "Johnston's": null, + "Johnstown": [["M"]], + "Johnstown's": null, + "Johny": [["M"]], + "Johny's": null, + "Joice": [["M"]], + "Joice's": null, + "join": [["A", "D", "G", "F", "S"]], + "rejoin": null, + "rejoined": null, + "rejoining": null, + "rejoins": null, + "joined": [["U"]], + "conjoined": null, + "joining": null, + "conjoining": null, + "conjoin": null, + "conjoins": null, + "joins": null, + "unjoined": null, + "joiner": [["F", "S", "M"]], + "conjoiner": null, + "conjoiners": null, + "conjoiner's": null, + "joiners": null, + "joiner's": null, + "joinery": [["M", "S"]], + "joinery's": null, + "joineries": null, + "jointed": [["E", "Y", "P"]], + "disjointed": null, + "disjointedly": null, + "jointedly": null, + "jointedness": [["M", "E"]], + "jointedness's": null, + "disjointedness's": null, + "joint": [["E", "G", "D", "Y", "P", "S"]], + "disjoint": null, + "disjointing": null, + "disjointly": null, + "disjointness": null, + "disjoints": null, + "jointing": null, + "jointly": [["F"]], + "jointness": null, + "joints": null, + "jointer": [["M"]], + "jointer's": null, + "conjointly": null, + "joint's": null, + "jointures": null, + "joist": [["G", "M", "D", "S"]], + "joisting": null, + "joist's": null, + "joisted": null, + "joists": null, + "Jojo": [["M"]], + "Jojo's": null, + "joke": [["M", "Z", "D", "S", "R", "G"]], + "joke's": null, + "jokers": null, + "joked": null, + "jokes": null, + "joker": [["M"]], + "joking": [["Y"]], + "joker's": null, + "jokey": null, + "jokier": null, + "jokiest": null, + "jokily": null, + "jokingly": null, + "Jolee": [["M"]], + "Jolee's": null, + "Joleen": [["M"]], + "Joleen's": null, + "Jolene": [["M"]], + "Jolene's": null, + "Joletta": [["M"]], + "Joletta's": null, + "Jolie": [["M"]], + "Jolie's": null, + "Joliet's": null, + "Joli": [["M"]], + "Joli's": null, + "Joline": [["M"]], + "Joline's": null, + "Jolla": [["M"]], + "Jolla's": null, + "jollification": [["M", "S"]], + "jollification's": null, + "jollifications": null, + "jollily": null, + "jolliness": [["S", "M"]], + "jollinesses": null, + "jolliness's": null, + "jollity": [["M", "S"]], + "jollity's": null, + "jollities": null, + "jolly": [["T", "S", "R", "D", "G", "P"]], + "jolliest": null, + "jollies": null, + "jollier": null, + "jollied": null, + "jollying": null, + "Jolson": [["M"]], + "Jolson's": null, + "jolt": [["D", "R", "G", "Z", "S"]], + "jolted": null, + "jolter": [["M"]], + "jolting": null, + "jolters": null, + "jolts": null, + "jolter's": null, + "Joly": [["M"]], + "Joly's": null, + "Jolyn": [["M"]], + "Jolyn's": null, + "Jolynn": [["M"]], + "Jolynn's": null, + "Jo": [["M", "Y"]], + "Jo's": null, + "Jonah": [["M"]], + "Jonah's": null, + "Jonahs": null, + "Jonas": null, + "Jonathan": [["M"]], + "Jonathan's": null, + "Jonathon": [["M"]], + "Jonathon's": null, + "Jonell": [["M"]], + "Jonell's": null, + "Jone": [["M", "S"]], + "Jone's": null, + "Jones": [["S"]], + "Joneses": null, + "Jonie": [["M"]], + "Jonie's": null, + "Joni": [["M", "S"]], + "Joni's": null, + "Jonis": null, + "Jon": [["M"]], + "Jon's": null, + "jonquil": [["M", "S"]], + "jonquil's": null, + "jonquils": null, + "Jonson": [["M"]], + "Jonson's": null, + "Joplin": [["M"]], + "Joplin's": null, + "Jordain": [["M"]], + "Jordain's": null, + "Jordana": [["M"]], + "Jordana's": null, + "Jordanian": [["S"]], + "Jordanians": null, + "Jordan": [["M"]], + "Jordan's": null, + "Jordanna": [["M"]], + "Jordanna's": null, + "Jordon": [["M"]], + "Jordon's": null, + "Jorey": [["M"]], + "Jorey's": null, + "Jorgan": [["M"]], + "Jorgan's": null, + "Jorge": [["M"]], + "Jorge's": null, + "Jorgensen": [["M"]], + "Jorgensen's": null, + "Jorgenson": [["M"]], + "Jorgenson's": null, + "Jorie": [["M"]], + "Jorie's": null, + "Jori": [["M"]], + "Jori's": null, + "Jorrie": [["M"]], + "Jorrie's": null, + "Jorry": [["M"]], + "Jorry's": null, + "Jory": [["M"]], + "Jory's": null, + "Joscelin": [["M"]], + "Joscelin's": null, + "Josee": [["M"]], + "Josee's": null, + "Josefa": [["M"]], + "Josefa's": null, + "Josefina": [["M"]], + "Josefina's": null, + "Josef": [["M"]], + "Josef's": null, + "Joseito": [["M"]], + "Joseito's": null, + "Jose": [["M"]], + "Jose's": null, + "Josepha": [["M"]], + "Josepha's": null, + "Josephina": [["M"]], + "Josephina's": null, + "Josephine": [["M"]], + "Josephine's": null, + "Joseph": [["M"]], + "Joseph's": null, + "Josephs": null, + "Josephson": [["M"]], + "Josephson's": null, + "Josephus": [["M"]], + "Josephus's": null, + "Josey": [["M"]], + "Josey's": null, + "josh": [["D", "S", "R", "G", "Z"]], + "joshed": null, + "joshes": null, + "josher": [["M"]], + "joshing": null, + "joshers": null, + "josher's": null, + "Joshia": [["M"]], + "Joshia's": null, + "Josh": [["M"]], + "Josh's": null, + "Joshuah": [["M"]], + "Joshuah's": null, + "Joshua": [["M"]], + "Joshua's": null, + "Josiah": [["M"]], + "Josiah's": null, + "Josias": [["M"]], + "Josias's": null, + "Josie": [["M"]], + "Josie's": null, + "Josi": [["M"]], + "Josi's": null, + "Josselyn": [["M"]], + "Josselyn's": null, + "joss": [["M"]], + "joss's": null, + "jostle": [["S", "D", "G"]], + "jostles": null, + "jostled": null, + "jostling": null, + "Josue": [["M"]], + "Josue's": null, + "Josy": [["M"]], + "Josy's": null, + "jot": [["S"]], + "jots": null, + "jotted": null, + "jotter": [["S", "M"]], + "jotters": null, + "jotter's": null, + "jotting": [["S", "M"]], + "jottings": null, + "jotting's": null, + "Joule": [["M"]], + "Joule's": null, + "joule": [["S", "M"]], + "joules": null, + "joule's": null, + "jounce": [["S", "D", "G"]], + "jounces": null, + "jounced": null, + "jouncing": null, + "jouncy": [["R", "T"]], + "jouncier": null, + "jounciest": null, + "Jourdain": [["M"]], + "Jourdain's": null, + "Jourdan": [["M"]], + "Jourdan's": null, + "journalese": [["M", "S"]], + "journalese's": null, + "journaleses": null, + "journal": [["G", "S", "D", "M"]], + "journaling": null, + "journals": null, + "journaled": null, + "journal's": null, + "journalism": [["S", "M"]], + "journalisms": null, + "journalism's": null, + "journalistic": null, + "journalist": [["S", "M"]], + "journalists": null, + "journalist's": null, + "journalize": [["D", "R", "S", "G", "Z"]], + "journalized": [["U"]], + "journalizer": [["M"]], + "journalizes": null, + "journalizing": null, + "journalizers": null, + "unjournalized": null, + "journalizer's": null, + "journey": [["D", "R", "M", "Z", "S", "G", "J"]], + "journeyed": null, + "journeyer": [["M"]], + "journey's": null, + "journeyers": null, + "journeys": null, + "journeying": null, + "journeyings": null, + "journeyer's": null, + "journeyman": [["M"]], + "journeyman's": null, + "journeymen": null, + "jouster": [["M"]], + "jouster's": null, + "joust": [["Z", "S", "M", "R", "D", "G"]], + "jousters": null, + "jousts": null, + "joust's": null, + "jousted": null, + "jousting": null, + "Jovanovich": [["M"]], + "Jovanovich's": null, + "Jove": [["M"]], + "Jove's": null, + "joviality": [["S", "M"]], + "jovialities": null, + "joviality's": null, + "jovial": [["Y"]], + "jovially": null, + "Jovian": null, + "jowl": [["S", "M", "D"]], + "jowls": null, + "jowl's": null, + "jowled": null, + "jowly": [["T", "R"]], + "jowliest": null, + "jowlier": null, + "Joya": [["M"]], + "Joya's": null, + "Joyan": [["M"]], + "Joyan's": null, + "Joyann": [["M"]], + "Joyann's": null, + "Joycean": null, + "Joycelin": [["M"]], + "Joycelin's": null, + "Joyce": [["M"]], + "Joyce's": null, + "Joye": [["M"]], + "Joye's": null, + "joyfuller": null, + "joyfullest": null, + "joyfulness": [["S", "M"]], + "joyfulnesses": null, + "joyfulness's": null, + "joyful": [["P", "Y"]], + "joyfully": null, + "joylessness": [["M", "S"]], + "joylessness's": null, + "joylessnesses": null, + "joyless": [["P", "Y"]], + "joylessly": null, + "Joy": [["M"]], + "Joy's": null, + "joy": [["M", "D", "S", "G"]], + "joy's": null, + "joyed": null, + "joys": null, + "joying": null, + "Joyner": [["M"]], + "Joyner's": null, + "joyousness": [["M", "S"]], + "joyousness's": null, + "joyousnesses": null, + "joyous": [["Y", "P"]], + "joyously": null, + "joyridden": null, + "joyride": [["S", "R", "Z", "M", "G", "J"]], + "joyrides": null, + "joyrider": null, + "joyriders": null, + "joyride's": null, + "joyriding": null, + "joyridings": null, + "joyrode": null, + "joystick": [["S"]], + "joysticks": null, + "Jozef": [["M"]], + "Jozef's": null, + "JP": null, + "Jpn": null, + "Jr": [["M"]], + "Jr's": null, + "j's": null, + "J's": null, + "Jsandye": [["M"]], + "Jsandye's": null, + "Juana": [["M"]], + "Juana's": null, + "Juanita": [["M"]], + "Juanita's": null, + "Juan": [["M"]], + "Juan's": null, + "Juarez": null, + "Jubal": [["M"]], + "Jubal's": null, + "jubilant": [["Y"]], + "jubilantly": null, + "jubilate": [["X", "N", "G", "D", "S"]], + "jubilations": null, + "jubilation": [["M"]], + "jubilating": null, + "jubilated": null, + "jubilates": null, + "jubilation's": null, + "jubilee": [["S", "M"]], + "jubilees": null, + "jubilee's": null, + "Judah": [["M"]], + "Judah's": null, + "Judaic": null, + "Judaical": null, + "Judaism": [["S", "M"]], + "Judaisms": null, + "Judaism's": null, + "Judas": [["S"]], + "Judases": null, + "juddered": null, + "juddering": null, + "Judd": [["M"]], + "Judd's": null, + "Judea": [["M"]], + "Judea's": null, + "Jude": [["M"]], + "Jude's": null, + "judge": [["A", "G", "D", "S"]], + "rejudge": null, + "rejudging": null, + "rejudged": null, + "rejudges": null, + "judging": null, + "judged": null, + "judges": null, + "judger": [["M"]], + "judger's": null, + "judge's": null, + "judgeship": [["S", "M"]], + "judgeships": null, + "judgeship's": null, + "judgmental": [["Y"]], + "judgmentally": null, + "judgment": [["M", "S"]], + "judgment's": null, + "judgments": null, + "judicable": null, + "judicatory": [["S"]], + "judicatories": null, + "judicature": [["M", "S"]], + "judicature's": null, + "judicatures": null, + "judicial": [["Y"]], + "judicially": null, + "judiciary": [["S"]], + "judiciaries": null, + "judicious": [["I", "Y", "P"]], + "injudicious": null, + "injudiciously": null, + "injudiciousness": null, + "judiciously": null, + "judiciousness": [["S", "M", "I"]], + "judiciousnesses": null, + "injudiciousnesses": null, + "judiciousness's": null, + "injudiciousness's": null, + "Judie": [["M"]], + "Judie's": null, + "Judi": [["M", "H"]], + "Judi's": null, + "Judith": [["M"]], + "Juditha": [["M"]], + "Juditha's": null, + "Judith's": null, + "Jud": [["M"]], + "Jud's": null, + "judo": [["M", "S"]], + "judo's": null, + "judos": null, + "Judon": [["M"]], + "Judon's": null, + "Judson": [["M"]], + "Judson's": null, + "Judye": [["M"]], + "Judye's": null, + "Judy": [["M"]], + "Judy's": null, + "jugate": [["F"]], + "jugful": [["S", "M"]], + "jugfuls": null, + "jugful's": null, + "jugged": null, + "Juggernaut": [["M"]], + "Juggernaut's": null, + "juggernaut": [["S", "M"]], + "juggernauts": null, + "juggernaut's": null, + "jugging": null, + "juggler": [["M"]], + "juggler's": null, + "juggle": [["R", "S", "D", "G", "Z"]], + "juggles": null, + "juggled": null, + "juggling": null, + "jugglers": null, + "jugglery": [["M", "S"]], + "jugglery's": null, + "juggleries": null, + "jug": [["M", "S"]], + "jug's": null, + "jugs": null, + "jugular": [["S"]], + "jugulars": null, + "juice": [["G", "M", "Z", "D", "S", "R"]], + "juicing": null, + "juice's": null, + "juicers": null, + "juiced": null, + "juices": null, + "juicer": [["M"]], + "juicer's": null, + "juicily": null, + "juiciness": [["M", "S"]], + "juiciness's": null, + "juicinesses": null, + "juicy": [["T", "R", "P"]], + "juiciest": null, + "juicier": null, + "Juieta": [["M"]], + "Juieta's": null, + "jujitsu": [["M", "S"]], + "jujitsu's": null, + "jujitsus": null, + "jujube": [["S", "M"]], + "jujubes": null, + "jujube's": null, + "juju": [["M"]], + "juju's": null, + "jujutsu's": null, + "jukebox": [["S", "M"]], + "jukeboxes": null, + "jukebox's": null, + "juke": [["G", "S"]], + "juking": null, + "jukes": null, + "Julee": [["M"]], + "Julee's": null, + "Jule": [["M", "S"]], + "Jule's": null, + "Jules": null, + "julep": [["S", "M"]], + "juleps": null, + "julep's": null, + "Julia": [["M"]], + "Julia's": null, + "Juliana": [["M"]], + "Juliana's": null, + "Juliane": [["M"]], + "Juliane's": null, + "Julian": [["M"]], + "Julian's": null, + "Julianna": [["M"]], + "Julianna's": null, + "Julianne": [["M"]], + "Julianne's": null, + "Juliann": [["M"]], + "Juliann's": null, + "Julie": [["M"]], + "Julie's": null, + "julienne": [["G", "S", "D"]], + "julienning": null, + "juliennes": null, + "julienned": null, + "Julienne": [["M"]], + "Julienne's": null, + "Julieta": [["M"]], + "Julieta's": null, + "Juliet": [["M"]], + "Juliet's": null, + "Julietta": [["M"]], + "Julietta's": null, + "Juliette": [["M"]], + "Juliette's": null, + "Juli": [["M"]], + "Juli's": null, + "Julina": [["M"]], + "Julina's": null, + "Juline": [["M"]], + "Juline's": null, + "Julio": [["M"]], + "Julio's": null, + "Julissa": [["M"]], + "Julissa's": null, + "Julita": [["M"]], + "Julita's": null, + "Julius": [["M"]], + "Julius's": null, + "Jul": [["M"]], + "Jul's": null, + "Julys": null, + "July": [["S", "M"]], + "Julies": null, + "July's": null, + "jumble": [["G", "S", "D"]], + "jumbling": null, + "jumbles": null, + "jumbled": null, + "jumbo": [["M", "S"]], + "jumbo's": null, + "jumbos": null, + "jumper": [["M"]], + "jumper's": null, + "jump": [["G", "Z", "D", "R", "S"]], + "jumping": null, + "jumpers": null, + "jumped": null, + "jumps": null, + "jumpily": null, + "jumpiness": [["M", "S"]], + "jumpiness's": null, + "jumpinesses": null, + "jumpsuit": [["S"]], + "jumpsuits": null, + "jumpy": [["P", "T", "R"]], + "jumpiest": null, + "jumpier": null, + "jun": null, + "junco": [["M", "S"]], + "junco's": null, + "juncos": null, + "junction": [["I", "M", "E", "S", "F"]], + "injunction": null, + "injunction's": null, + "injunctions": null, + "junction's": null, + "disjunction's": null, + "conjunction's": null, + "disjunction": null, + "disjunctions": null, + "junctions": null, + "conjunctions": null, + "conjunction": null, + "juncture": [["S", "F", "M"]], + "junctures": null, + "conjunctures": null, + "conjuncture": null, + "conjuncture's": null, + "juncture's": null, + "Juneau": [["M"]], + "Juneau's": null, + "June": [["M", "S"]], + "June's": null, + "Junes": null, + "Junette": [["M"]], + "Junette's": null, + "Jungfrau": [["M"]], + "Jungfrau's": null, + "Jungian": null, + "jungle": [["S", "D", "M"]], + "jungles": null, + "jungled": null, + "jungle's": null, + "Jung": [["M"]], + "Jung's": null, + "Junia": [["M"]], + "Junia's": null, + "Junie": [["M"]], + "Junie's": null, + "Junina": [["M"]], + "Junina's": null, + "juniority": [["M"]], + "juniority's": null, + "junior": [["M", "S"]], + "junior's": null, + "juniors": null, + "Junior": [["S"]], + "Juniors": null, + "juniper": [["S", "M"]], + "junipers": null, + "juniper's": null, + "junkerdom": null, + "Junker": [["S", "M"]], + "Junkers": null, + "Junker's": null, + "junketeer": [["S", "G", "D", "M"]], + "junketeers": null, + "junketeering": null, + "junketeered": null, + "junketeer's": null, + "junket": [["S", "M", "D", "G"]], + "junkets": null, + "junket's": null, + "junketed": null, + "junketing": null, + "junk": [["G", "Z", "D", "R", "M", "S"]], + "junking": null, + "junkers": null, + "junked": null, + "junker": null, + "junk's": null, + "junks": null, + "junkie": [["R", "S", "M", "T"]], + "junkier": null, + "junkies": null, + "junkie's": null, + "junkiest": null, + "junkyard": [["M", "S"]], + "junkyard's": null, + "junkyards": null, + "Jun": [["M"]], + "Jun's": null, + "Juno": [["M"]], + "Juno's": null, + "junta": [["M", "S"]], + "junta's": null, + "juntas": null, + "Jupiter": [["M"]], + "Jupiter's": null, + "Jurassic": null, + "juridic": null, + "juridical": [["Y"]], + "juridically": null, + "juried": null, + "jurisdictional": [["Y"]], + "jurisdictionally": null, + "jurisdiction": [["S", "M"]], + "jurisdictions": null, + "jurisdiction's": null, + "jurisprudence": [["S", "M"]], + "jurisprudences": null, + "jurisprudence's": null, + "jurisprudent": null, + "jurisprudential": [["Y"]], + "jurisprudentially": null, + "juristic": null, + "jurist": [["M", "S"]], + "jurist's": null, + "jurists": null, + "juror": [["M", "S"]], + "juror's": null, + "jurors": null, + "Jurua": [["M"]], + "Jurua's": null, + "jury": [["I", "M", "S"]], + "injury": null, + "injury's": null, + "injuries": null, + "jury's": null, + "juries": null, + "jurying": null, + "juryman": [["M"]], + "juryman's": null, + "jurymen": null, + "jurywoman": [["M"]], + "jurywoman's": null, + "jurywomen": null, + "justed": null, + "Justen": [["M"]], + "Justen's": null, + "juster": [["M"]], + "juster's": null, + "justest": null, + "Justice": [["M"]], + "Justice's": null, + "justice": [["M", "I", "S"]], + "justice's": null, + "injustice's": null, + "injustice": null, + "injustices": null, + "justices": null, + "justiciable": null, + "justifiability": [["M"]], + "justifiability's": null, + "justifiable": [["U"]], + "unjustifiable": null, + "justifiably": [["U"]], + "unjustifiably": null, + "justification": [["M"]], + "justification's": null, + "justified": [["U", "A"]], + "unjustified": null, + "rejustified": null, + "justifier": [["M"]], + "justifier's": null, + "justify": [["G", "D", "R", "S", "X", "Z", "N"]], + "justifying": null, + "justifies": null, + "justifications": null, + "justifiers": null, + "Justina": [["M"]], + "Justina's": null, + "Justine": [["M"]], + "Justine's": null, + "justing": null, + "Justinian": [["M"]], + "Justinian's": null, + "Justin": [["M"]], + "Justin's": null, + "Justinn": [["M"]], + "Justinn's": null, + "Justino": [["M"]], + "Justino's": null, + "Justis": [["M"]], + "Justis's": null, + "justness": [["M", "S"]], + "justness's": [["U"]], + "justnesses": null, + "unjustness's": null, + "justs": null, + "just": [["U", "P", "Y"]], + "unjust": null, + "unjustness": null, + "unjustly": null, + "justly": null, + "Justus": [["M"]], + "Justus's": null, + "jute": [["S", "M"]], + "jutes": null, + "jute's": null, + "Jutish": null, + "Jutland": [["M"]], + "Jutland's": null, + "jut": [["S"]], + "juts": null, + "jutted": null, + "jutting": null, + "Juvenal": [["M"]], + "Juvenal's": null, + "juvenile": [["S", "M"]], + "juveniles": null, + "juvenile's": null, + "juxtapose": [["S", "D", "G"]], + "juxtaposes": null, + "juxtaposed": null, + "juxtaposing": null, + "juxtaposition": [["S", "M"]], + "juxtapositions": null, + "juxtaposition's": null, + "JV": null, + "J": [["X"]], + "Jyoti": [["M"]], + "Jyoti's": null, + "Kaaba": [["M"]], + "Kaaba's": null, + "kabob": [["S", "M"]], + "kabobs": null, + "kabob's": null, + "kaboom": null, + "Kabuki": null, + "kabuki": [["S", "M"]], + "kabukis": null, + "kabuki's": null, + "Kabul": [["M"]], + "Kabul's": null, + "Kacey": [["M"]], + "Kacey's": null, + "Kacie": [["M"]], + "Kacie's": null, + "Kacy": [["M"]], + "Kacy's": null, + "Kaddish": [["M"]], + "Kaddish's": null, + "kaddish": [["S"]], + "kaddishes": null, + "Kaela": [["M"]], + "Kaela's": null, + "kaffeeklatch": null, + "kaffeeklatsch": [["S"]], + "kaffeeklatsches": null, + "Kafkaesque": null, + "Kafka": [["M"]], + "Kafka's": null, + "kaftan's": null, + "Kagoshima": [["M"]], + "Kagoshima's": null, + "Kahaleel": [["M"]], + "Kahaleel's": null, + "Kahlil": [["M"]], + "Kahlil's": null, + "Kahlua": [["M"]], + "Kahlua's": null, + "Kahn": [["M"]], + "Kahn's": null, + "Kaia": [["M"]], + "Kaia's": null, + "Kaifeng": [["M"]], + "Kaifeng's": null, + "Kaila": [["M"]], + "Kaila's": null, + "Kaile": [["M"]], + "Kaile's": null, + "Kailey": [["M"]], + "Kailey's": null, + "Kai": [["M"]], + "Kai's": null, + "Kaine": [["M"]], + "Kaine's": null, + "Kain": [["M"]], + "Kain's": null, + "kaiser": [["M", "S"]], + "kaiser's": null, + "kaisers": null, + "Kaiser": [["S", "M"]], + "Kaisers": null, + "Kaiser's": null, + "Kaitlin": [["M"]], + "Kaitlin's": null, + "Kaitlyn": [["M"]], + "Kaitlyn's": null, + "Kaitlynn": [["M"]], + "Kaitlynn's": null, + "Kaja": [["M"]], + "Kaja's": null, + "Kajar": [["M"]], + "Kajar's": null, + "Kakalina": [["M"]], + "Kakalina's": null, + "Kalahari": [["M"]], + "Kalahari's": null, + "Kala": [["M"]], + "Kala's": null, + "Kalamazoo": [["M"]], + "Kalamazoo's": null, + "Kalashnikov": [["M"]], + "Kalashnikov's": null, + "Kalb": [["M"]], + "Kalb's": null, + "Kaleb": [["M"]], + "Kaleb's": null, + "Kaleena": [["M"]], + "Kaleena's": null, + "kaleidescope": null, + "kaleidoscope": [["S", "M"]], + "kaleidoscopes": null, + "kaleidoscope's": null, + "kaleidoscopic": null, + "kaleidoscopically": null, + "Kale": [["M"]], + "Kale's": null, + "kale": [["M", "S"]], + "kale's": null, + "kales": null, + "Kalgoorlie": [["M"]], + "Kalgoorlie's": null, + "Kalie": [["M"]], + "Kalie's": null, + "Kalila": [["M"]], + "Kalila's": null, + "Kalil": [["M"]], + "Kalil's": null, + "Kali": [["M"]], + "Kali's": null, + "Kalina": [["M"]], + "Kalina's": null, + "Kalinda": [["M"]], + "Kalinda's": null, + "Kalindi": [["M"]], + "Kalindi's": null, + "Kalle": [["M"]], + "Kalle's": null, + "Kalli": [["M"]], + "Kalli's": null, + "Kally": [["M"]], + "Kally's": null, + "Kalmyk": null, + "Kalvin": [["M"]], + "Kalvin's": null, + "Kama": [["M"]], + "Kama's": null, + "Kamchatka": [["M"]], + "Kamchatka's": null, + "Kamehameha": [["M"]], + "Kamehameha's": null, + "Kameko": [["M"]], + "Kameko's": null, + "Kamikaze": [["M", "S"]], + "Kamikaze's": null, + "Kamikazes": null, + "kamikaze": [["S", "M"]], + "kamikazes": null, + "kamikaze's": null, + "Kamilah": [["M"]], + "Kamilah's": null, + "Kamila": [["M"]], + "Kamila's": null, + "Kamillah": [["M"]], + "Kamillah's": null, + "Kampala": [["M"]], + "Kampala's": null, + "Kampuchea": [["M"]], + "Kampuchea's": null, + "Kanchenjunga": [["M"]], + "Kanchenjunga's": null, + "Kandace": [["M"]], + "Kandace's": null, + "Kandahar": [["M"]], + "Kandahar's": null, + "Kandinsky": [["M"]], + "Kandinsky's": null, + "Kandy": [["M"]], + "Kandy's": null, + "Kane": [["M"]], + "Kane's": null, + "kangaroo": [["S", "G", "M", "D"]], + "kangaroos": null, + "kangarooing": null, + "kangaroo's": null, + "kangarooed": null, + "Kania": [["M"]], + "Kania's": null, + "Kankakee": [["M"]], + "Kankakee's": null, + "Kan": [["M", "S"]], + "Kan's": null, + "Kans": null, + "Kannada": [["M"]], + "Kannada's": null, + "Kano": [["M"]], + "Kano's": null, + "Kanpur": [["M"]], + "Kanpur's": null, + "Kansan": [["S"]], + "Kansans": null, + "Kansas": null, + "Kantian": null, + "Kant": [["M"]], + "Kant's": null, + "Kanya": [["M"]], + "Kanya's": null, + "Kaohsiung": [["M"]], + "Kaohsiung's": null, + "kaolinite": [["M"]], + "kaolinite's": null, + "kaolin": [["M", "S"]], + "kaolin's": null, + "kaolins": null, + "Kaplan": [["M"]], + "Kaplan's": null, + "kapok": [["S", "M"]], + "kapoks": null, + "kapok's": null, + "Kaposi": [["M"]], + "Kaposi's": null, + "kappa": [["M", "S"]], + "kappa's": null, + "kappas": null, + "kaput": [["M"]], + "kaput's": null, + "Karachi": [["M"]], + "Karachi's": null, + "Karaganda": [["M"]], + "Karaganda's": null, + "Karakorum": [["M"]], + "Karakorum's": null, + "karakul": [["M", "S"]], + "karakul's": null, + "karakuls": null, + "Karalee": [["M"]], + "Karalee's": null, + "Karalynn": [["M"]], + "Karalynn's": null, + "Kara": [["M"]], + "Kara's": null, + "Karamazov": [["M"]], + "Karamazov's": null, + "karaoke": [["S"]], + "karaokes": null, + "karate": [["M", "S"]], + "karate's": null, + "karates": null, + "karat": [["S", "M"]], + "karats": null, + "karat's": null, + "Karee": [["M"]], + "Karee's": null, + "Kareem": [["M"]], + "Kareem's": null, + "Karel": [["M"]], + "Karel's": null, + "Kare": [["M"]], + "Kare's": null, + "Karena": [["M"]], + "Karena's": null, + "Karenina": [["M"]], + "Karenina's": null, + "Karen": [["M"]], + "Karen's": null, + "Karia": [["M"]], + "Karia's": null, + "Karie": [["M"]], + "Karie's": null, + "Karil": [["M"]], + "Karil's": null, + "Karilynn": [["M"]], + "Karilynn's": null, + "Kari": [["M"]], + "Kari's": null, + "Karim": [["M"]], + "Karim's": null, + "Karina": [["M"]], + "Karina's": null, + "Karine": [["M"]], + "Karine's": null, + "Karin": [["M"]], + "Karin's": null, + "Kariotta": [["M"]], + "Kariotta's": null, + "Karisa": [["M"]], + "Karisa's": null, + "Karissa": [["M"]], + "Karissa's": null, + "Karita": [["M"]], + "Karita's": null, + "Karla": [["M"]], + "Karla's": null, + "Karlan": [["M"]], + "Karlan's": null, + "Karlee": [["M"]], + "Karlee's": null, + "Karleen": [["M"]], + "Karleen's": null, + "Karlene": [["M"]], + "Karlene's": null, + "Karlen": [["M"]], + "Karlen's": null, + "Karlie": [["M"]], + "Karlie's": null, + "Karlik": [["M"]], + "Karlik's": null, + "Karlis": null, + "Karl": [["M", "N", "X"]], + "Karl's": null, + "Karlens": null, + "Karloff": [["M"]], + "Karloff's": null, + "Karlotta": [["M"]], + "Karlotta's": null, + "Karlotte": [["M"]], + "Karlotte's": null, + "Karly": [["M"]], + "Karly's": null, + "Karlyn": [["M"]], + "Karlyn's": null, + "karma": [["S", "M"]], + "karmas": null, + "karma's": null, + "Karmen": [["M"]], + "Karmen's": null, + "karmic": null, + "Karna": [["M"]], + "Karna's": null, + "Karney": [["M"]], + "Karney's": null, + "Karola": [["M"]], + "Karola's": null, + "Karole": [["M"]], + "Karole's": null, + "Karolina": [["M"]], + "Karolina's": null, + "Karoline": [["M"]], + "Karoline's": null, + "Karol": [["M"]], + "Karol's": null, + "Karoly": [["M"]], + "Karoly's": null, + "Karon": [["M"]], + "Karon's": null, + "Karo": [["Y", "M"]], + "Karo's": null, + "Karp": [["M"]], + "Karp's": null, + "Karrah": [["M"]], + "Karrah's": null, + "Karrie": [["M"]], + "Karrie's": null, + "Karroo": [["M"]], + "Karroo's": null, + "Karry": [["M"]], + "Karry's": null, + "kart": [["M", "S"]], + "kart's": null, + "karts": null, + "Karylin": [["M"]], + "Karylin's": null, + "Karyl": [["M"]], + "Karyl's": null, + "Kary": [["M"]], + "Kary's": null, + "Karyn": [["M"]], + "Karyn's": null, + "Kasai": [["M"]], + "Kasai's": null, + "Kasey": [["M"]], + "Kasey's": null, + "Kashmir": [["S", "M"]], + "Kashmirs": null, + "Kashmir's": null, + "Kaspar": [["M"]], + "Kaspar's": null, + "Kasparov": [["M"]], + "Kasparov's": null, + "Kasper": [["M"]], + "Kasper's": null, + "Kass": null, + "Kassandra": [["M"]], + "Kassandra's": null, + "Kassey": [["M"]], + "Kassey's": null, + "Kassia": [["M"]], + "Kassia's": null, + "Kassie": [["M"]], + "Kassie's": null, + "Kassi": [["M"]], + "Kassi's": null, + "katakana": null, + "Katalin": [["M"]], + "Katalin's": null, + "Kata": [["M"]], + "Kata's": null, + "Katee": [["M"]], + "Katee's": null, + "Katelyn": [["M"]], + "Katelyn's": null, + "Kate": [["M"]], + "Kate's": null, + "Katerina": [["M"]], + "Katerina's": null, + "Katerine": [["M"]], + "Katerine's": null, + "Katey": [["M"]], + "Katey's": null, + "Katha": [["M"]], + "Katha's": null, + "Katharina": [["M"]], + "Katharina's": null, + "Katharine": [["M"]], + "Katharine's": null, + "Katharyn": [["M"]], + "Katharyn's": null, + "Kathe": [["M"]], + "Kathe's": null, + "Katherina": [["M"]], + "Katherina's": null, + "Katherine": [["M"]], + "Katherine's": null, + "Katheryn": [["M"]], + "Katheryn's": null, + "Kathiawar": [["M"]], + "Kathiawar's": null, + "Kathie": [["M"]], + "Kathie's": null, + "Kathi": [["M"]], + "Kathi's": null, + "Kathleen": [["M"]], + "Kathleen's": null, + "Kathlin": [["M"]], + "Kathlin's": null, + "Kath": [["M"]], + "Kath's": null, + "Kathmandu": null, + "Kathrine": [["M"]], + "Kathrine's": null, + "Kathryne": [["M"]], + "Kathryne's": null, + "Kathryn": [["M"]], + "Kathryn's": null, + "Kathye": [["M"]], + "Kathye's": null, + "Kathy": [["M"]], + "Kathy's": null, + "Katie": [["M"]], + "Katie's": null, + "Kati": [["M"]], + "Kati's": null, + "Katina": [["M"]], + "Katina's": null, + "Katine": [["M"]], + "Katine's": null, + "Katinka": [["M"]], + "Katinka's": null, + "Katleen": [["M"]], + "Katleen's": null, + "Katlin": [["M"]], + "Katlin's": null, + "Kat": [["M"]], + "Kat's": null, + "Katmai": [["M"]], + "Katmai's": null, + "Katmandu's": null, + "Katowice": [["M"]], + "Katowice's": null, + "Katrina": [["M"]], + "Katrina's": null, + "Katrine": [["M"]], + "Katrine's": null, + "Katrinka": [["M"]], + "Katrinka's": null, + "Kattie": [["M"]], + "Kattie's": null, + "Katti": [["M"]], + "Katti's": null, + "Katuscha": [["M"]], + "Katuscha's": null, + "Katusha": [["M"]], + "Katusha's": null, + "Katya": [["M"]], + "Katya's": null, + "katydid": [["S", "M"]], + "katydids": null, + "katydid's": null, + "Katy": [["M"]], + "Katy's": null, + "Katz": [["M"]], + "Katz's": null, + "Kauai": [["M"]], + "Kauai's": null, + "Kauffman": [["M"]], + "Kauffman's": null, + "Kaufman": [["M"]], + "Kaufman's": null, + "Kaunas": [["M"]], + "Kaunas's": null, + "Kaunda": [["M"]], + "Kaunda's": null, + "Kawabata": [["M"]], + "Kawabata's": null, + "Kawasaki": [["M"]], + "Kawasaki's": null, + "kayak": [["S", "G", "D", "M"]], + "kayaks": null, + "kayaking": null, + "kayaked": null, + "kayak's": null, + "Kaycee": [["M"]], + "Kaycee's": null, + "Kaye": [["M"]], + "Kaye's": null, + "Kayla": [["M"]], + "Kayla's": null, + "Kaylee": [["M"]], + "Kaylee's": null, + "Kayle": [["M"]], + "Kayle's": null, + "Kayley": [["M"]], + "Kayley's": null, + "Kaylil": [["M"]], + "Kaylil's": null, + "Kaylyn": [["M"]], + "Kaylyn's": null, + "Kay": [["M"]], + "Kay's": null, + "Kayne": [["M"]], + "Kayne's": null, + "kayo": [["D", "M", "S", "G"]], + "kayoed": null, + "kayo's": null, + "kayos": null, + "kayoing": null, + "Kazakh": [["M"]], + "Kazakh's": null, + "Kazakhstan": null, + "Kazan": [["M"]], + "Kazan's": null, + "Kazantzakis": [["M"]], + "Kazantzakis's": null, + "kazoo": [["S", "M"]], + "kazoos": null, + "kazoo's": null, + "Kb": null, + "KB": null, + "KC": null, + "kcal": [["M"]], + "kcal's": null, + "kc": [["M"]], + "kc's": null, + "KDE": [["M"]], + "KDE's": null, + "Keane": [["M"]], + "Keane's": null, + "Kean": [["M"]], + "Kean's": null, + "Kearney": [["M"]], + "Kearney's": null, + "Keary": [["M"]], + "Keary's": null, + "Keaton": [["M"]], + "Keaton's": null, + "Keats": [["M"]], + "Keats's": null, + "kebab": [["S", "M"]], + "kebabs": null, + "kebab's": null, + "Keck": [["M"]], + "Keck's": null, + "Keefe": [["M", "R"]], + "Keefe's": null, + "Keefer": [["M"]], + "Keefer's": null, + "Keegan": [["M"]], + "Keegan's": null, + "Keelby": [["M"]], + "Keelby's": null, + "Keeley": [["M"]], + "Keeley's": null, + "keel": [["G", "S", "M", "D", "R"]], + "keeling": null, + "keels": null, + "keel's": null, + "keeled": null, + "keeler": null, + "keelhaul": [["S", "G", "D"]], + "keelhauls": null, + "keelhauling": null, + "keelhauled": null, + "Keelia": [["M"]], + "Keelia's": null, + "Keely": [["M"]], + "Keely's": null, + "Keenan": [["M"]], + "Keenan's": null, + "Keene": [["M"]], + "Keene's": null, + "keener": [["M"]], + "keener's": null, + "keen": [["G", "T", "S", "P", "Y", "D", "R"]], + "keening": [["M"]], + "keenest": null, + "keens": null, + "keenness": [["M", "S"]], + "keenly": null, + "keened": null, + "keening's": null, + "Keen": [["M"]], + "Keen's": null, + "keenness's": null, + "keennesses": null, + "keeper": [["M"]], + "keeper's": null, + "keep": [["G", "Z", "J", "S", "R"]], + "keeping": [["M"]], + "keepers": null, + "keepings": null, + "keeps": null, + "keeping's": null, + "keepsake": [["S", "M"]], + "keepsakes": null, + "keepsake's": null, + "Keewatin": [["M"]], + "Keewatin's": null, + "kegged": null, + "kegging": null, + "keg": [["M", "S"]], + "keg's": null, + "kegs": null, + "Keillor": [["M"]], + "Keillor's": null, + "Keir": [["M"]], + "Keir's": null, + "Keisha": [["M"]], + "Keisha's": null, + "Keith": [["M"]], + "Keith's": null, + "Kelbee": [["M"]], + "Kelbee's": null, + "Kelby": [["M"]], + "Kelby's": null, + "Kelcey": [["M"]], + "Kelcey's": null, + "Kelcie": [["M"]], + "Kelcie's": null, + "Kelci": [["M"]], + "Kelci's": null, + "Kelcy": [["M"]], + "Kelcy's": null, + "Kele": [["M"]], + "Kele's": null, + "Kelila": [["M"]], + "Kelila's": null, + "Kellby": [["M"]], + "Kellby's": null, + "Kellen": [["M"]], + "Kellen's": null, + "Keller": [["M"]], + "Keller's": null, + "Kelley": [["M"]], + "Kelley's": null, + "Kellia": [["M"]], + "Kellia's": null, + "Kellie": [["M"]], + "Kellie's": null, + "Kelli": [["M"]], + "Kelli's": null, + "Kellina": [["M"]], + "Kellina's": null, + "Kellogg": [["M"]], + "Kellogg's": null, + "Kellsie": [["M"]], + "Kellsie's": null, + "Kellyann": [["M"]], + "Kellyann's": null, + "Kelly": [["M"]], + "Kelly's": null, + "kelp": [["G", "Z", "M", "D", "S"]], + "kelping": null, + "kelpers": null, + "kelp's": null, + "kelped": null, + "kelps": null, + "Kelsey": [["M"]], + "Kelsey's": null, + "Kelsi": [["M"]], + "Kelsi's": null, + "Kelsy": [["M"]], + "Kelsy's": null, + "Kelt's": null, + "Kelvin": [["M"]], + "Kelvin's": null, + "kelvin": [["M", "S"]], + "kelvin's": null, + "kelvins": null, + "Kelwin": [["M"]], + "Kelwin's": null, + "Kemerovo": [["M"]], + "Kemerovo's": null, + "Kempis": [["M"]], + "Kempis's": null, + "Kemp": [["M"]], + "Kemp's": null, + "Kendall": [["M"]], + "Kendall's": null, + "Kendal": [["M"]], + "Kendal's": null, + "Kendell": [["M"]], + "Kendell's": null, + "Kendra": [["M"]], + "Kendra's": null, + "Kendre": [["M"]], + "Kendre's": null, + "Kendrick": [["M", "S"]], + "Kendrick's": null, + "Kendricks": null, + "Kenilworth": [["M"]], + "Kenilworth's": null, + "Ken": [["M"]], + "Ken's": null, + "Kenmore": [["M"]], + "Kenmore's": null, + "ken": [["M", "S"]], + "ken's": null, + "kens": null, + "Kenna": [["M"]], + "Kenna's": null, + "Kennan": [["M"]], + "Kennan's": null, + "Kennecott": [["M"]], + "Kennecott's": null, + "kenned": null, + "Kennedy": [["M"]], + "Kennedy's": null, + "kennel": [["G", "S", "M", "D"]], + "kenneling": null, + "kennels": null, + "kennel's": null, + "kenneled": null, + "Kenneth": [["M"]], + "Kenneth's": null, + "Kennett": [["M"]], + "Kennett's": null, + "Kennie": [["M"]], + "Kennie's": null, + "kenning": null, + "Kennith": [["M"]], + "Kennith's": null, + "Kenn": [["M"]], + "Kenn's": null, + "Kenny": [["M"]], + "Kenny's": null, + "keno": [["M"]], + "keno's": null, + "Kenon": [["M"]], + "Kenon's": null, + "Kenosha": [["M"]], + "Kenosha's": null, + "Kensington": [["M"]], + "Kensington's": null, + "Kent": [["M"]], + "Kent's": null, + "Kenton": [["M"]], + "Kenton's": null, + "Kentuckian": [["S"]], + "Kentuckians": null, + "Kentucky": [["M"]], + "Kentucky's": null, + "Kenya": [["M"]], + "Kenya's": null, + "Kenyan": [["S"]], + "Kenyans": null, + "Kenyatta": [["M"]], + "Kenyatta's": null, + "Kenyon": [["M"]], + "Kenyon's": null, + "Keogh": [["M"]], + "Keogh's": null, + "Keokuk": [["M"]], + "Keokuk's": null, + "kepi": [["S", "M"]], + "kepis": null, + "kepi's": null, + "Kepler": [["M"]], + "Kepler's": null, + "kept": null, + "keratin": [["M", "S"]], + "keratin's": null, + "keratins": null, + "kerbside": null, + "Kerby": [["M"]], + "Kerby's": null, + "kerchief": [["M", "D", "S", "G"]], + "kerchief's": null, + "kerchiefed": null, + "kerchiefs": null, + "kerchiefing": null, + "Kerensky": [["M"]], + "Kerensky's": null, + "Kerianne": [["M"]], + "Kerianne's": null, + "Keriann": [["M"]], + "Keriann's": null, + "Keri": [["M"]], + "Keri's": null, + "Kerk": [["M"]], + "Kerk's": null, + "Ker": [["M"]], + "Ker's": null, + "Kermie": [["M"]], + "Kermie's": null, + "Kermit": [["M"]], + "Kermit's": null, + "Kermy": [["M"]], + "Kermy's": null, + "kerned": null, + "kernel": [["G", "S", "M", "D"]], + "kerneling": null, + "kernels": null, + "kernel's": null, + "kerneled": null, + "kerning": null, + "Kern": [["M"]], + "Kern's": null, + "kerosene": [["M", "S"]], + "kerosene's": null, + "kerosenes": null, + "Kerouac": [["M"]], + "Kerouac's": null, + "Kerrie": [["M"]], + "Kerrie's": null, + "Kerrill": [["M"]], + "Kerrill's": null, + "Kerri": [["M"]], + "Kerri's": null, + "Kerrin": [["M"]], + "Kerrin's": null, + "Kerr": [["M"]], + "Kerr's": null, + "Kerry": [["M"]], + "Kerry's": null, + "Kerstin": [["M"]], + "Kerstin's": null, + "Kerwin": [["M"]], + "Kerwin's": null, + "Kerwinn": [["M"]], + "Kerwinn's": null, + "Kesley": [["M"]], + "Kesley's": null, + "Keslie": [["M"]], + "Keslie's": null, + "Kessiah": [["M"]], + "Kessiah's": null, + "Kessia": [["M"]], + "Kessia's": null, + "Kessler": [["M"]], + "Kessler's": null, + "kestrel": [["S", "M"]], + "kestrels": null, + "kestrel's": null, + "ketch": [["M", "S"]], + "ketch's": null, + "ketches": null, + "ketchup": [["S", "M"]], + "ketchups": null, + "ketchup's": null, + "ketone": [["M"]], + "ketone's": null, + "ketosis": [["M"]], + "ketosis's": null, + "Kettering": [["M"]], + "Kettering's": null, + "Kettie": [["M"]], + "Kettie's": null, + "Ketti": [["M"]], + "Ketti's": null, + "kettledrum": [["S", "M"]], + "kettledrums": null, + "kettledrum's": null, + "kettleful": null, + "kettle": [["S", "M"]], + "kettles": null, + "kettle's": null, + "Ketty": [["M"]], + "Ketty's": null, + "Kevan": [["M"]], + "Kevan's": null, + "Keven": [["M"]], + "Keven's": null, + "Kevina": [["M"]], + "Kevina's": null, + "Kevin": [["M"]], + "Kevin's": null, + "Kevlar": null, + "Kev": [["M", "N"]], + "Kev's": null, + "Kevon": [["M"]], + "Kevon's": null, + "Kevorkian": [["M"]], + "Kevorkian's": null, + "Kevyn": [["M"]], + "Kevyn's": null, + "Kewaskum": [["M"]], + "Kewaskum's": null, + "Kewaunee": [["M"]], + "Kewaunee's": null, + "Kewpie": [["M"]], + "Kewpie's": null, + "keyboardist": [["S"]], + "keyboardists": null, + "keyboard": [["R", "D", "M", "Z", "G", "S"]], + "keyboarder": null, + "keyboarded": null, + "keyboard's": null, + "keyboarders": null, + "keyboarding": null, + "keyboards": null, + "keyclick": [["S", "M"]], + "keyclicks": null, + "keyclick's": null, + "keyhole": [["M", "S"]], + "keyhole's": null, + "keyholes": null, + "Key": [["M"]], + "Key's": null, + "Keynesian": [["M"]], + "Keynesian's": null, + "Keynes": [["M"]], + "Keynes's": null, + "keynoter": [["M"]], + "keynoter's": null, + "keynote": [["S", "R", "D", "Z", "M", "G"]], + "keynotes": null, + "keynoted": null, + "keynoters": null, + "keynote's": null, + "keynoting": null, + "keypad": [["M", "S"]], + "keypad's": null, + "keypads": null, + "keypuncher": [["M"]], + "keypuncher's": null, + "keypunch": [["Z", "G", "R", "S", "D"]], + "keypunchers": null, + "keypunching": null, + "keypunches": null, + "keypunched": null, + "keyring": null, + "key": [["S", "G", "M", "D"]], + "keys": null, + "keying": null, + "key's": null, + "keyed": null, + "keystone": [["S", "M"]], + "keystones": null, + "keystone's": null, + "keystroke": [["S", "D", "M", "G"]], + "keystrokes": null, + "keystroked": null, + "keystroke's": null, + "keystroking": null, + "keyword": [["S", "M"]], + "keywords": null, + "keyword's": null, + "k": [["F", "G", "E", "I", "S"]], + "conking": null, + "conks": null, + "king": [["S", "G", "Y", "D", "M"]], + "disking": null, + "inking": null, + "disks": null, + "inks": null, + "ks": null, + "kg": null, + "K": [["G"]], + "King": [["M"]], + "KGB": null, + "Khabarovsk": [["M"]], + "Khabarovsk's": null, + "Khachaturian": [["M"]], + "Khachaturian's": null, + "khaki": [["S", "M"]], + "khakis": null, + "khaki's": null, + "Khalid": [["M"]], + "Khalid's": null, + "Khalil": [["M"]], + "Khalil's": null, + "Khan": [["M"]], + "Khan's": null, + "khan": [["M", "S"]], + "khan's": null, + "khans": null, + "Kharkov": [["M"]], + "Kharkov's": null, + "Khartoum": [["M"]], + "Khartoum's": null, + "Khayyam": [["M"]], + "Khayyam's": null, + "Khmer": [["M"]], + "Khmer's": null, + "Khoisan": [["M"]], + "Khoisan's": null, + "Khomeini": [["M"]], + "Khomeini's": null, + "Khorana": [["M"]], + "Khorana's": null, + "Khrushchev": [["S", "M"]], + "Khrushchevs": null, + "Khrushchev's": null, + "Khufu": [["M"]], + "Khufu's": null, + "Khulna": [["M"]], + "Khulna's": null, + "Khwarizmi": [["M"]], + "Khwarizmi's": null, + "Khyber": [["M"]], + "Khyber's": null, + "kHz": [["M"]], + "kHz's": null, + "KIA": null, + "Kiah": [["M"]], + "Kiah's": null, + "Kial": [["M"]], + "Kial's": null, + "kibble": [["G", "M", "S", "D"]], + "kibbling": null, + "kibble's": null, + "kibbles": null, + "kibbled": null, + "kibbutzim": null, + "kibbutz": [["M"]], + "kibbutz's": null, + "kibitzer": [["M"]], + "kibitzer's": null, + "kibitz": [["G", "R", "S", "D", "Z"]], + "kibitzing": null, + "kibitzes": null, + "kibitzed": null, + "kibitzers": null, + "kibosh": [["G", "M", "S", "D"]], + "kiboshing": null, + "kibosh's": null, + "kiboshes": null, + "kiboshed": null, + "Kickapoo": [["M"]], + "Kickapoo's": null, + "kickback": [["S", "M"]], + "kickbacks": null, + "kickback's": null, + "kickball": [["M", "S"]], + "kickball's": null, + "kickballs": null, + "kicker": [["M"]], + "kicker's": null, + "kick": [["G", "Z", "D", "R", "S"]], + "kicking": null, + "kickers": null, + "kicked": null, + "kicks": null, + "kickoff": [["S", "M"]], + "kickoffs": null, + "kickoff's": null, + "kickstand": [["M", "S"]], + "kickstand's": null, + "kickstands": null, + "kicky": [["R", "T"]], + "kickier": null, + "kickiest": null, + "kidded": null, + "kidder": [["S", "M"]], + "kidders": null, + "kidder's": null, + "kiddie": [["S", "D"]], + "kiddies": null, + "kiddied": null, + "kidding": [["Y", "M"]], + "kiddingly": null, + "kidding's": null, + "kiddish": null, + "Kidd": [["M"]], + "Kidd's": null, + "kiddo": [["S", "M"]], + "kiddos": null, + "kiddo's": null, + "kiddying": null, + "kiddy's": null, + "kidless": null, + "kid": [["M", "S"]], + "kid's": null, + "kids": null, + "kidnaper's": null, + "kidnaping's": null, + "kidnap": [["M", "S", "J"]], + "kidnap's": null, + "kidnaps": null, + "kidnapings": null, + "kidnapped": null, + "kidnapper": [["S", "M"]], + "kidnappers": null, + "kidnapper's": null, + "kidnapping": [["S"]], + "kidnappings": null, + "kidney": [["M", "S"]], + "kidney's": null, + "kidneys": null, + "kidskin": [["S", "M"]], + "kidskins": null, + "kidskin's": null, + "Kieffer": [["M"]], + "Kieffer's": null, + "kielbasa": [["S", "M"]], + "kielbasas": null, + "kielbasa's": null, + "kielbasi": null, + "Kiele": [["M"]], + "Kiele's": null, + "Kiel": [["M"]], + "Kiel's": null, + "Kienan": [["M"]], + "Kienan's": null, + "kier": [["I"]], + "inkier": null, + "Kierkegaard": [["M"]], + "Kierkegaard's": null, + "Kiersten": [["M"]], + "Kiersten's": null, + "Kieth": [["M"]], + "Kieth's": null, + "Kiev": [["M"]], + "Kiev's": null, + "Kigali": [["M"]], + "Kigali's": null, + "Kikelia": [["M"]], + "Kikelia's": null, + "Kikuyu": [["M"]], + "Kikuyu's": null, + "Kilauea": [["M"]], + "Kilauea's": null, + "Kile": [["M"]], + "Kile's": null, + "Kiley": [["M"]], + "Kiley's": null, + "Kilian": [["M"]], + "Kilian's": null, + "Kilimanjaro": [["M"]], + "Kilimanjaro's": null, + "kill": [["B", "J", "G", "Z", "S", "D", "R"]], + "killable": null, + "killings": null, + "killing": [["Y"]], + "killers": null, + "kills": null, + "killed": null, + "killer": [["M"]], + "killdeer": [["S", "M"]], + "killdeers": null, + "killdeer's": null, + "Killebrew": [["M"]], + "Killebrew's": null, + "killer's": null, + "Killian": [["M"]], + "Killian's": null, + "Killie": [["M"]], + "Killie's": null, + "killingly": null, + "killjoy": [["S"]], + "killjoys": null, + "Killy": [["M"]], + "Killy's": null, + "kiln": [["G", "D", "S", "M"]], + "kilning": null, + "kilned": null, + "kilns": null, + "kiln's": null, + "kilobaud": [["M"]], + "kilobaud's": null, + "kilobit": [["S"]], + "kilobits": null, + "kilobuck": null, + "kilobyte": [["S"]], + "kilobytes": null, + "kilocycle": [["M", "S"]], + "kilocycle's": null, + "kilocycles": null, + "kilogauss": [["M"]], + "kilogauss's": null, + "kilogram": [["M", "S"]], + "kilogram's": null, + "kilograms": null, + "kilohertz": [["M"]], + "kilohertz's": null, + "kilohm": [["M"]], + "kilohm's": null, + "kilojoule": [["M", "S"]], + "kilojoule's": null, + "kilojoules": null, + "kiloliter": [["M", "S"]], + "kiloliter's": null, + "kiloliters": null, + "kilometer": [["S", "M"]], + "kilometers": null, + "kilometer's": null, + "kilo": [["S", "M"]], + "kilos": null, + "kilo's": null, + "kiloton": [["S", "M"]], + "kilotons": null, + "kiloton's": null, + "kilovolt": [["S", "M"]], + "kilovolts": null, + "kilovolt's": null, + "kilowatt": [["S", "M"]], + "kilowatts": null, + "kilowatt's": null, + "kiloword": null, + "kilter": [["M"]], + "kilter's": null, + "kilt": [["M", "D", "R", "G", "Z", "S"]], + "kilt's": null, + "kilted": null, + "kilting": null, + "kilters": null, + "kilts": null, + "Ki": [["M"]], + "Ki's": null, + "Kimball": [["M"]], + "Kimball's": null, + "Kimbell": [["M"]], + "Kimbell's": null, + "Kimberlee": [["M"]], + "Kimberlee's": null, + "Kimberley": [["M"]], + "Kimberley's": null, + "Kimberli": [["M"]], + "Kimberli's": null, + "Kimberly": [["M"]], + "Kimberly's": null, + "Kimberlyn": [["M"]], + "Kimberlyn's": null, + "Kimble": [["M"]], + "Kimble's": null, + "Kimbra": [["M"]], + "Kimbra's": null, + "Kim": [["M"]], + "Kim's": null, + "Kimmie": [["M"]], + "Kimmie's": null, + "Kimmi": [["M"]], + "Kimmi's": null, + "Kimmy": [["M"]], + "Kimmy's": null, + "kimono": [["M", "S"]], + "kimono's": null, + "kimonos": null, + "Kincaid": [["M"]], + "Kincaid's": null, + "kinda": null, + "kindergarten": [["M", "S"]], + "kindergarten's": null, + "kindergartens": null, + "kinderg�rtner": [["S", "M"]], + "kinderg�rtners": null, + "kinderg�rtner's": null, + "kinder": [["U"]], + "unkinder": null, + "kindheartedness": [["M", "S"]], + "kindheartedness's": null, + "kindheartednesses": null, + "kindhearted": [["Y", "P"]], + "kindheartedly": null, + "kindle": [["A", "G", "R", "S", "D"]], + "rekindle": null, + "rekindling": null, + "rekindler": null, + "rekindles": null, + "rekindled": null, + "kindling": [["M"]], + "kindler": [["M"]], + "kindles": null, + "kindled": null, + "kindler's": null, + "kindliness": [["S", "M"]], + "kindlinesses": null, + "kindliness's": [["U"]], + "unkindliness's": null, + "kindling's": null, + "kindly": [["T", "U", "P", "R"]], + "kindliest": null, + "unkindly": null, + "unkindliness": null, + "unkindlier": null, + "kindlier": null, + "kindness's": null, + "kindness": [["U", "S"]], + "unkindness": null, + "unkindnesses": null, + "kindnesses": null, + "kind": [["P", "S", "Y", "R", "T"]], + "kinds": null, + "kindest": null, + "kindred": [["S"]], + "kindreds": null, + "kinematic": [["S"]], + "kinematics": [["M"]], + "kinematics's": null, + "kinesics": [["M"]], + "kinesics's": null, + "kine": [["S", "M"]], + "kines": null, + "kine's": null, + "kinesthesis": null, + "kinesthetically": null, + "kinesthetic": [["S"]], + "kinesthetics": null, + "kinetically": null, + "kinetic": [["S"]], + "kinetics": [["M"]], + "kinetics's": null, + "kinfolk": [["S"]], + "kinfolks": null, + "kingbird": [["M"]], + "kingbird's": null, + "kingdom": [["S", "M"]], + "kingdoms": null, + "kingdom's": null, + "kingfisher": [["M", "S"]], + "kingfisher's": null, + "kingfishers": null, + "kinglet": [["M"]], + "kinglet's": null, + "kingliness": [["M"]], + "kingliness's": null, + "kingly": [["T", "P", "R"]], + "kingliest": null, + "kinglier": null, + "King's": null, + "kingpin": [["M", "S"]], + "kingpin's": null, + "kingpins": null, + "Kingsbury": [["M"]], + "Kingsbury's": null, + "kings": null, + "kinging": null, + "kinged": null, + "king's": null, + "kingship": [["S", "M"]], + "kingships": null, + "kingship's": null, + "Kingsley": [["M"]], + "Kingsley's": null, + "Kingsly": [["M"]], + "Kingsly's": null, + "Kingston": [["M"]], + "Kingston's": null, + "Kingstown": [["M"]], + "Kingstown's": null, + "Kingwood": [["M"]], + "Kingwood's": null, + "kink": [["G", "S", "D", "M"]], + "kinking": null, + "kinks": null, + "kinked": null, + "kink's": null, + "kinkily": null, + "kinkiness": [["S", "M"]], + "kinkinesses": null, + "kinkiness's": null, + "kinky": [["P", "R", "T"]], + "kinkier": null, + "kinkiest": null, + "Kin": [["M"]], + "Kin's": null, + "kin": [["M", "S"]], + "kin's": null, + "kins": null, + "Kinna": [["M"]], + "Kinna's": null, + "Kinney": [["M"]], + "Kinney's": null, + "Kinnickinnic": [["M"]], + "Kinnickinnic's": null, + "Kinnie": [["M"]], + "Kinnie's": null, + "Kinny": [["M"]], + "Kinny's": null, + "Kinsey": [["M"]], + "Kinsey's": null, + "kinsfolk": [["S"]], + "kinsfolks": null, + "Kinshasa": [["M"]], + "Kinshasa's": null, + "Kinshasha": [["M"]], + "Kinshasha's": null, + "kinship": [["S", "M"]], + "kinships": null, + "kinship's": null, + "Kinsley": [["M"]], + "Kinsley's": null, + "kinsman": [["M"]], + "kinsman's": null, + "kinsmen": [["M"]], + "kinsmen's": null, + "kinswoman": [["M"]], + "kinswoman's": null, + "kinswomen": null, + "kiosk": [["S", "M"]], + "kiosks": null, + "kiosk's": null, + "Kiowa": [["S", "M"]], + "Kiowas": null, + "Kiowa's": null, + "Kipling": [["M"]], + "Kipling's": null, + "Kip": [["M"]], + "Kip's": null, + "kip": [["M", "S"]], + "kip's": null, + "kips": null, + "Kippar": [["M"]], + "Kippar's": null, + "kipped": null, + "kipper": [["D", "M", "S", "G"]], + "kippered": null, + "kipper's": null, + "kippers": null, + "kippering": null, + "Kipper": [["M"]], + "Kipper's": null, + "Kippie": [["M"]], + "Kippie's": null, + "kipping": null, + "Kipp": [["M", "R"]], + "Kipp's": null, + "Kippy": [["M"]], + "Kippy's": null, + "Kira": [["M"]], + "Kira's": null, + "Kirbee": [["M"]], + "Kirbee's": null, + "Kirbie": [["M"]], + "Kirbie's": null, + "Kirby": [["M"]], + "Kirby's": null, + "Kirchhoff": [["M"]], + "Kirchhoff's": null, + "Kirchner": [["M"]], + "Kirchner's": null, + "Kirchoff": [["M"]], + "Kirchoff's": null, + "Kirghistan": [["M"]], + "Kirghistan's": null, + "Kirghizia": [["M"]], + "Kirghizia's": null, + "Kirghiz": [["M"]], + "Kirghiz's": null, + "Kiribati": null, + "Kiri": [["M"]], + "Kiri's": null, + "Kirinyaga": [["M"]], + "Kirinyaga's": null, + "kirk": [["G", "D", "M", "S"]], + "kirking": null, + "kirked": null, + "kirk's": null, + "kirks": null, + "Kirkland": [["M"]], + "Kirkland's": null, + "Kirk": [["M"]], + "Kirk's": null, + "Kirkpatrick": [["M"]], + "Kirkpatrick's": null, + "Kirkwood": [["M"]], + "Kirkwood's": null, + "Kirov": [["M"]], + "Kirov's": null, + "kirsch": [["S"]], + "kirsches": null, + "Kirsteni": [["M"]], + "Kirsteni's": null, + "Kirsten": [["M"]], + "Kirsten's": null, + "Kirsti": [["M"]], + "Kirsti's": null, + "Kirstin": [["M"]], + "Kirstin's": null, + "Kirstyn": [["M"]], + "Kirstyn's": null, + "Kisangani": [["M"]], + "Kisangani's": null, + "Kishinev": [["M"]], + "Kishinev's": null, + "kismet": [["S", "M"]], + "kismets": null, + "kismet's": null, + "kiss": [["D", "S", "R", "B", "J", "G", "Z"]], + "kissed": null, + "kisses": null, + "kisser": [["M"]], + "kissable": null, + "kissings": null, + "kissing": null, + "kissers": null, + "Kissee": [["M"]], + "Kissee's": null, + "kisser's": null, + "Kissiah": [["M"]], + "Kissiah's": null, + "Kissie": [["M"]], + "Kissie's": null, + "Kissinger": [["M"]], + "Kissinger's": null, + "Kitakyushu": [["M"]], + "Kitakyushu's": null, + "kitbag's": null, + "kitchener": [["M"]], + "kitchener's": null, + "Kitchener": [["M"]], + "Kitchener's": null, + "kitchenette": [["S", "M"]], + "kitchenettes": null, + "kitchenette's": null, + "kitchen": [["G", "D", "R", "M", "S"]], + "kitchening": null, + "kitchened": null, + "kitchen's": null, + "kitchens": null, + "kitchenware": [["S", "M"]], + "kitchenwares": null, + "kitchenware's": null, + "kiter": [["M"]], + "kiter's": null, + "kite": [["S", "M"]], + "kites": null, + "kite's": null, + "kith": [["M", "D", "G"]], + "kith's": null, + "kithed": null, + "kithing": null, + "kiths": null, + "Kit": [["M"]], + "Kit's": null, + "kit": [["M", "D", "R", "G", "S"]], + "kit's": null, + "kited": null, + "kiting": null, + "kits": null, + "kitsch": [["M", "S"]], + "kitsch's": null, + "kitsches": null, + "kitschy": null, + "kitted": null, + "kittenishness": [["M"]], + "kittenishness's": null, + "kittenish": [["Y", "P"]], + "kittenishly": null, + "kitten": [["S", "G", "D", "M"]], + "kittens": null, + "kittening": null, + "kittened": null, + "kitten's": null, + "Kittie": [["M"]], + "Kittie's": null, + "Kitti": [["M"]], + "Kitti's": null, + "kitting": null, + "kittiwakes": null, + "Kitty": [["M"]], + "Kitty's": null, + "kitty": [["S", "M"]], + "kitties": null, + "kitty's": null, + "Kiwanis": [["M"]], + "Kiwanis's": null, + "kiwifruit": [["S"]], + "kiwifruits": null, + "kiwi": [["S", "M"]], + "kiwis": null, + "kiwi's": null, + "Kizzee": [["M"]], + "Kizzee's": null, + "Kizzie": [["M"]], + "Kizzie's": null, + "KKK": null, + "kl": null, + "Klan": [["M"]], + "Klan's": null, + "Klansman": [["M"]], + "Klansman's": null, + "Klara": [["M"]], + "Klara's": null, + "Klarika": [["M"]], + "Klarika's": null, + "Klarrisa": [["M"]], + "Klarrisa's": null, + "Klaus": [["M"]], + "Klaus's": null, + "klaxon": [["M"]], + "klaxon's": null, + "Klee": [["M"]], + "Klee's": null, + "Kleenex": [["S", "M"]], + "Kleenexes": null, + "Kleenex's": null, + "Klein": [["M"]], + "Klein's": null, + "Kleinrock": [["M"]], + "Kleinrock's": null, + "Klemens": [["M"]], + "Klemens's": null, + "Klement": [["M"]], + "Klement's": null, + "Kleon": [["M"]], + "Kleon's": null, + "kleptomaniac": [["S", "M"]], + "kleptomaniacs": null, + "kleptomaniac's": null, + "kleptomania": [["M", "S"]], + "kleptomania's": null, + "kleptomanias": null, + "Kliment": [["M"]], + "Kliment's": null, + "Kline": [["M"]], + "Kline's": null, + "Klingon": [["M"]], + "Klingon's": null, + "Klondike": [["S", "D", "M", "G"]], + "Klondikes": null, + "Klondiked": null, + "Klondike's": null, + "Klondiking": null, + "kludger": [["M"]], + "kludger's": null, + "kludge": [["R", "S", "D", "G", "M", "Z"]], + "kludges": null, + "kludged": null, + "kludging": null, + "kludge's": null, + "kludgers": null, + "kludgey": null, + "klutziness": [["S"]], + "klutzinesses": null, + "klutz": [["S", "M"]], + "klutzes": null, + "klutz's": null, + "klutzy": [["T", "R", "P"]], + "klutziest": null, + "klutzier": null, + "Klux": [["M"]], + "Klux's": null, + "klystron": [["M", "S"]], + "klystron's": null, + "klystrons": null, + "km": null, + "kn": null, + "knacker": [["M"]], + "knacker's": null, + "knack": [["S", "G", "Z", "R", "D", "M"]], + "knacks": null, + "knacking": null, + "knackers": null, + "knacked": null, + "knack's": null, + "knackwurst": [["M", "S"]], + "knackwurst's": null, + "knackwursts": null, + "Knapp": [["M"]], + "Knapp's": null, + "knapsack": [["M", "S"]], + "knapsack's": null, + "knapsacks": null, + "Knauer": [["M"]], + "Knauer's": null, + "knavery": [["M", "S"]], + "knavery's": null, + "knaveries": null, + "knave": [["S", "M"]], + "knaves": null, + "knave's": null, + "knavish": [["Y"]], + "knavishly": null, + "kneader": [["M"]], + "kneader's": null, + "knead": [["G", "Z", "R", "D", "S"]], + "kneading": null, + "kneaders": null, + "kneaded": null, + "kneads": null, + "kneecap": [["M", "S"]], + "kneecap's": null, + "kneecaps": null, + "kneecapped": null, + "kneecapping": null, + "knee": [["D", "S", "M"]], + "kneed": null, + "knees": null, + "knee's": null, + "kneeing": null, + "kneeler": [["M"]], + "kneeler's": null, + "kneel": [["G", "R", "S"]], + "kneeling": null, + "kneels": null, + "kneepad": [["S", "M"]], + "kneepads": null, + "kneepad's": null, + "knell": [["S", "M", "D", "G"]], + "knells": null, + "knell's": null, + "knelled": null, + "knelling": null, + "knelt": null, + "Knesset": [["M"]], + "Knesset's": null, + "knew": null, + "Kngwarreye": [["M"]], + "Kngwarreye's": null, + "Knickerbocker": [["M", "S"]], + "Knickerbocker's": null, + "Knickerbockers": null, + "knickerbocker": [["S"]], + "knickerbockers": null, + "knickknack": [["S", "M"]], + "knickknacks": null, + "knickknack's": null, + "knick": [["Z", "R"]], + "knickers": null, + "knicker": null, + "Knievel": [["M"]], + "Knievel's": null, + "knife": [["D", "S", "G", "M"]], + "knifed": null, + "knifes": null, + "knifing": null, + "knife's": null, + "knighthood": [["M", "S"]], + "knighthood's": null, + "knighthoods": null, + "knightliness": [["M", "S"]], + "knightliness's": null, + "knightlinesses": null, + "knightly": [["P"]], + "Knight": [["M"]], + "Knight's": null, + "knight": [["M", "D", "Y", "S", "G"]], + "knight's": null, + "knighted": null, + "knights": null, + "knighting": null, + "knish": [["M", "S"]], + "knish's": null, + "knishes": null, + "knit": [["A", "U"]], + "reknit": null, + "unknit": null, + "knits": null, + "knitted": null, + "knitter": [["M", "S"]], + "knitter's": null, + "knitters": null, + "knitting": [["S", "M"]], + "knittings": null, + "knitting's": null, + "knitwear": [["M"]], + "knitwear's": null, + "knives": [["M"]], + "knives's": null, + "knobbly": null, + "knobby": [["R", "T"]], + "knobbier": null, + "knobbiest": null, + "Knobeloch": [["M"]], + "Knobeloch's": null, + "knob": [["M", "S"]], + "knob's": null, + "knobs": null, + "knockabout": [["M"]], + "knockabout's": null, + "knockdown": [["S"]], + "knockdowns": null, + "knocker": [["M"]], + "knocker's": null, + "knock": [["G", "Z", "S", "J", "R", "D"]], + "knocking": null, + "knockers": null, + "knocks": null, + "knockings": null, + "knocked": null, + "knockoff": [["S"]], + "knockoffs": null, + "knockout": [["M", "S"]], + "knockout's": null, + "knockouts": null, + "knockwurst's": null, + "knoll": [["M", "D", "S", "G"]], + "knoll's": null, + "knolled": null, + "knolls": null, + "knolling": null, + "Knopf": [["M"]], + "Knopf's": null, + "Knossos": [["M"]], + "Knossos's": null, + "knothole": [["S", "M"]], + "knotholes": null, + "knothole's": null, + "knot": [["M", "S"]], + "knot's": null, + "knots": null, + "knotted": null, + "knottiness": [["M"]], + "knottiness's": null, + "knotting": [["M"]], + "knotting's": null, + "knotty": [["T", "P", "R"]], + "knottiest": null, + "knottier": null, + "knowable": [["U"]], + "unknowable": [["S"]], + "knower": [["M"]], + "knower's": null, + "know": [["G", "R", "B", "S", "J"]], + "knowing": [["R", "Y", "T"]], + "knows": null, + "knowings": [["U"]], + "knowhow": null, + "knowingly": [["U"]], + "unknowingly": null, + "knowinger": null, + "knowingest": null, + "unknowings": null, + "knowledgeableness": [["M"]], + "knowledgeableness's": null, + "knowledgeable": [["P"]], + "knowledgeably": null, + "knowledge": [["S", "M"]], + "knowledges": null, + "knowledge's": null, + "Knowles": null, + "known": [["S", "U"]], + "knowns": null, + "unknowns": null, + "unknown": null, + "Knox": [["M"]], + "Knox's": null, + "Knoxville": [["M"]], + "Knoxville's": null, + "knuckleball": [["R"]], + "knuckleballer": null, + "knuckle": [["D", "S", "M", "G"]], + "knuckled": null, + "knuckles": null, + "knuckle's": null, + "knuckling": null, + "knuckleduster": null, + "knucklehead": [["M", "S"]], + "knucklehead's": null, + "knuckleheads": null, + "Knudsen": [["M"]], + "Knudsen's": null, + "Knudson": [["M"]], + "Knudson's": null, + "knurl": [["D", "S", "G"]], + "knurled": null, + "knurls": null, + "knurling": null, + "Knuth": [["M"]], + "Knuth's": null, + "Knutsen": [["M"]], + "Knutsen's": null, + "Knutson": [["M"]], + "Knutson's": null, + "KO": null, + "koala": [["S", "M"]], + "koalas": null, + "koala's": null, + "Kobayashi": [["M"]], + "Kobayashi's": null, + "Kobe": [["M"]], + "Kobe's": null, + "Kochab": [["M"]], + "Kochab's": null, + "Koch": [["M"]], + "Koch's": null, + "Kodachrome": [["M"]], + "Kodachrome's": null, + "Kodak": [["S", "M"]], + "Kodaks": null, + "Kodak's": null, + "Kodaly": [["M"]], + "Kodaly's": null, + "Kodiak": [["M"]], + "Kodiak's": null, + "Koenig": [["M"]], + "Koenig's": null, + "Koenigsberg": [["M"]], + "Koenigsberg's": null, + "Koenraad": [["M"]], + "Koenraad's": null, + "Koestler": [["M"]], + "Koestler's": null, + "Kohinoor": [["M"]], + "Kohinoor's": null, + "Kohler": [["M"]], + "Kohler's": null, + "Kohl": [["M", "R"]], + "Kohl's": null, + "kohlrabies": null, + "kohlrabi": [["M"]], + "kohlrabi's": null, + "kola": [["S", "M"]], + "kolas": null, + "kola's": null, + "Kolyma": [["M"]], + "Kolyma's": null, + "Kommunizma": [["M"]], + "Kommunizma's": null, + "Kong": [["M"]], + "Kong's": null, + "Kongo": [["M"]], + "Kongo's": null, + "Konrad": [["M"]], + "Konrad's": null, + "Konstance": [["M"]], + "Konstance's": null, + "Konstantine": [["M"]], + "Konstantine's": null, + "Konstantin": [["M"]], + "Konstantin's": null, + "Konstanze": [["M"]], + "Konstanze's": null, + "kookaburra": [["S", "M"]], + "kookaburras": null, + "kookaburra's": null, + "kook": [["G", "D", "M", "S"]], + "kooking": null, + "kooked": null, + "kook's": null, + "kooks": null, + "kookiness": [["S"]], + "kookinesses": null, + "kooky": [["P", "R", "T"]], + "kookier": null, + "kookiest": null, + "Koo": [["M"]], + "Koo's": null, + "Koontz": [["M"]], + "Koontz's": null, + "kopeck": [["M", "S"]], + "kopeck's": null, + "kopecks": null, + "Koppers": [["M"]], + "Koppers's": null, + "Koralle": [["M"]], + "Koralle's": null, + "Koral": [["M"]], + "Koral's": null, + "Kora": [["M"]], + "Kora's": null, + "Koranic": null, + "Koran": [["S", "M"]], + "Korans": null, + "Koran's": null, + "Kordula": [["M"]], + "Kordula's": null, + "Korea": [["M"]], + "Korea's": null, + "Korean": [["S"]], + "Koreans": null, + "Korella": [["M"]], + "Korella's": null, + "Kore": [["M"]], + "Kore's": null, + "Koren": [["M"]], + "Koren's": null, + "Koressa": [["M"]], + "Koressa's": null, + "Korey": [["M"]], + "Korey's": null, + "Korie": [["M"]], + "Korie's": null, + "Kori": [["M"]], + "Kori's": null, + "Kornberg": [["M"]], + "Kornberg's": null, + "Korney": [["M"]], + "Korney's": null, + "Korrie": [["M"]], + "Korrie's": null, + "Korry": [["M"]], + "Korry's": null, + "Kort": [["M"]], + "Kort's": null, + "Kory": [["M"]], + "Kory's": null, + "Korzybski": [["M"]], + "Korzybski's": null, + "Kosciusko": [["M"]], + "Kosciusko's": null, + "kosher": [["D", "G", "S"]], + "koshered": null, + "koshering": null, + "koshers": null, + "Kossuth": [["M"]], + "Kossuth's": null, + "Kosygin": [["M"]], + "Kosygin's": null, + "Kovacs": [["M"]], + "Kovacs's": null, + "Kowalewski": [["M"]], + "Kowalewski's": null, + "Kowalski": [["M"]], + "Kowalski's": null, + "Kowloon": [["M"]], + "Kowloon's": null, + "kowtow": [["S", "G", "D"]], + "kowtows": null, + "kowtowing": null, + "kowtowed": null, + "KP": null, + "kph": null, + "kraal": [["S", "M", "D", "G"]], + "kraals": null, + "kraal's": null, + "kraaled": null, + "kraaling": null, + "Kraemer": [["M"]], + "Kraemer's": null, + "kraft": [["M"]], + "kraft's": null, + "Kraft": [["M"]], + "Kraft's": null, + "Krakatau's": null, + "Krakatoa": [["M"]], + "Krakatoa's": null, + "Krakow": [["M"]], + "Krakow's": null, + "Kramer": [["M"]], + "Kramer's": null, + "Krasnodar": [["M"]], + "Krasnodar's": null, + "Krasnoyarsk": [["M"]], + "Krasnoyarsk's": null, + "Krause": [["M"]], + "Krause's": null, + "kraut": [["S", "!"]], + "krauts": null, + "Krebs": [["M"]], + "Krebs's": null, + "Kremlin": [["M"]], + "Kremlin's": null, + "Kremlinologist": [["M", "S"]], + "Kremlinologist's": null, + "Kremlinologists": null, + "Kremlinology": [["M", "S"]], + "Kremlinology's": null, + "Kremlinologies": null, + "Kresge": [["M"]], + "Kresge's": null, + "Krieger": [["M"]], + "Krieger's": null, + "kriegspiel": [["M"]], + "kriegspiel's": null, + "krill": [["M", "S"]], + "krill's": null, + "krills": null, + "Kringle": [["M"]], + "Kringle's": null, + "Krisha": [["M"]], + "Krisha's": null, + "Krishnah": [["M"]], + "Krishnah's": null, + "Krishna": [["M"]], + "Krishna's": null, + "Kris": [["M"]], + "Kris's": null, + "Krispin": [["M"]], + "Krispin's": null, + "Krissie": [["M"]], + "Krissie's": null, + "Krissy": [["M"]], + "Krissy's": null, + "Kristal": [["M"]], + "Kristal's": null, + "Krista": [["M"]], + "Krista's": null, + "Kristan": [["M"]], + "Kristan's": null, + "Kristel": [["M"]], + "Kristel's": null, + "Kriste": [["M"]], + "Kriste's": null, + "Kristen": [["M"]], + "Kristen's": null, + "Kristian": [["M"]], + "Kristian's": null, + "Kristie": [["M"]], + "Kristie's": null, + "Kristien": [["M"]], + "Kristien's": null, + "Kristi": [["M", "N"]], + "Kristi's": null, + "Kristina": [["M"]], + "Kristina's": null, + "Kristine": [["M"]], + "Kristine's": null, + "Kristin": [["M"]], + "Kristin's": null, + "Kristofer": [["M"]], + "Kristofer's": null, + "Kristoffer": [["M"]], + "Kristoffer's": null, + "Kristofor": [["M"]], + "Kristofor's": null, + "Kristoforo": [["M"]], + "Kristoforo's": null, + "Kristo": [["M", "S"]], + "Kristo's": null, + "Kristos": null, + "Kristopher": [["M"]], + "Kristopher's": null, + "Kristy": [["M"]], + "Kristy's": null, + "Kristyn": [["M"]], + "Kristyn's": null, + "Kr": [["M"]], + "Kr's": null, + "Kroc": [["M"]], + "Kroc's": null, + "Kroger": [["M"]], + "Kroger's": null, + "kr�na": [["M"]], + "kr�na's": null, + "Kronecker": [["M"]], + "Kronecker's": null, + "krone": [["R", "M"]], + "kroner": null, + "krone's": null, + "kronor": null, + "kr�nur": null, + "Kropotkin": [["M"]], + "Kropotkin's": null, + "Krueger": [["M"]], + "Krueger's": null, + "Kruger": [["M"]], + "Kruger's": null, + "Krugerrand": [["S"]], + "Krugerrands": null, + "Krupp": [["M"]], + "Krupp's": null, + "Kruse": [["M"]], + "Kruse's": null, + "krypton": [["S", "M"]], + "kryptons": null, + "krypton's": null, + "Krystalle": [["M"]], + "Krystalle's": null, + "Krystal": [["M"]], + "Krystal's": null, + "Krysta": [["M"]], + "Krysta's": null, + "Krystle": [["M"]], + "Krystle's": null, + "Krystyna": [["M"]], + "Krystyna's": null, + "K's": null, + "KS": null, + "k's": [["I", "E"]], + "ink's": null, + "disk's": null, + "kt": null, + "Kublai": [["M"]], + "Kublai's": null, + "Kubrick": [["M"]], + "Kubrick's": null, + "kuchen": [["M", "S"]], + "kuchen's": null, + "kuchens": null, + "kudos": [["M"]], + "kudos's": null, + "kudzu": [["S", "M"]], + "kudzus": null, + "kudzu's": null, + "Kuenning": [["M"]], + "Kuenning's": null, + "Kuhn": [["M"]], + "Kuhn's": null, + "Kuibyshev": [["M"]], + "Kuibyshev's": null, + "Ku": [["M"]], + "Ku's": null, + "Kumar": [["M"]], + "Kumar's": null, + "kumquat": [["S", "M"]], + "kumquats": null, + "kumquat's": null, + "Kunming": [["M"]], + "Kunming's": null, + "Kuomintang": [["M"]], + "Kuomintang's": null, + "Kurdish": [["M"]], + "Kurdish's": null, + "Kurdistan": [["S", "M"]], + "Kurdistans": null, + "Kurdistan's": null, + "Kurd": [["S", "M"]], + "Kurds": null, + "Kurd's": null, + "Kurosawa": [["M"]], + "Kurosawa's": null, + "Kurtis": [["M"]], + "Kurtis's": null, + "Kurt": [["M"]], + "Kurt's": null, + "kurtosis": [["M"]], + "kurtosis's": null, + "Kusch": [["M"]], + "Kusch's": null, + "Kuwaiti": [["S", "M"]], + "Kuwaitis": null, + "Kuwaiti's": null, + "Kuwait": [["M"]], + "Kuwait's": null, + "Kuznetsk": [["M"]], + "Kuznetsk's": null, + "Kuznets": [["M"]], + "Kuznets's": null, + "kvetch": [["D", "S", "G"]], + "kvetched": null, + "kvetches": null, + "kvetching": null, + "kw": null, + "kW": null, + "Kwakiutl": [["M"]], + "Kwakiutl's": null, + "Kwangchow's": null, + "Kwangju": [["M"]], + "Kwangju's": null, + "Kwanzaa": [["S"]], + "Kwanzaas": null, + "kWh": null, + "KY": null, + "Kyla": [["M"]], + "Kyla's": null, + "kyle": [["M"]], + "kyle's": null, + "Kyle": [["M"]], + "Kyle's": null, + "Kylen": [["M"]], + "Kylen's": null, + "Kylie": [["M"]], + "Kylie's": null, + "Kylila": [["M"]], + "Kylila's": null, + "Kylynn": [["M"]], + "Kylynn's": null, + "Ky": [["M", "H"]], + "Ky's": null, + "Kym": [["M"]], + "Kym's": null, + "Kynthia": [["M"]], + "Kynthia's": null, + "Kyoto": [["M"]], + "Kyoto's": null, + "Kyrgyzstan": null, + "Kyrstin": [["M"]], + "Kyrstin's": null, + "Kyushu": [["M"]], + "Kyushu's": null, + "L": null, + "LA": null, + "Laban": [["M"]], + "Laban's": null, + "labeled": [["U"]], + "unlabeled": null, + "labeler": [["M"]], + "labeler's": null, + "label": [["G", "A", "Z", "R", "D", "S"]], + "labeling": null, + "relabeling": null, + "relabel": null, + "relabelers": null, + "relabeler": null, + "relabeled": null, + "relabels": null, + "labelers": null, + "labels": null, + "labellings": [["A"]], + "relabellings": null, + "label's": null, + "labial": [["Y", "S"]], + "labially": null, + "labials": null, + "labia": [["M"]], + "labia's": null, + "labile": null, + "labiodental": null, + "labium": [["M"]], + "labium's": null, + "laboratory": [["M", "S"]], + "laboratory's": null, + "laboratories": null, + "laboredness": [["M"]], + "laboredness's": null, + "labored": [["P", "M", "Y"]], + "labored's": [["U"]], + "laboredly": null, + "unlabored's": null, + "laborer": [["M"]], + "laborer's": null, + "laboring": [["M", "Y"]], + "laboring's": null, + "laboringly": null, + "laborings": [["U"]], + "unlaborings": null, + "laboriousness": [["M", "S"]], + "laboriousness's": null, + "laboriousnesses": null, + "laborious": [["P", "Y"]], + "laboriously": null, + "labor": [["R", "D", "M", "J", "S", "Z", "G"]], + "labor's": null, + "labors": null, + "laborers": null, + "laborsaving": null, + "Labradorean": [["S"]], + "Labradoreans": null, + "Labrador": [["S", "M"]], + "Labradors": null, + "Labrador's": null, + "lab": [["S", "M"]], + "labs": null, + "lab's": null, + "Lab": [["S", "M"]], + "Labs": null, + "Lab's": null, + "laburnum": [["S", "M"]], + "laburnums": null, + "laburnum's": null, + "labyrinthine": null, + "labyrinth": [["M"]], + "labyrinth's": null, + "labyrinths": null, + "laced": [["U"]], + "unlaced": null, + "Lacee": [["M"]], + "Lacee's": null, + "lace": [["M", "S"]], + "lace's": null, + "laces": [["U"]], + "lacerate": [["N", "G", "V", "X", "D", "S"]], + "laceration": [["M"]], + "lacerating": null, + "lacerative": null, + "lacerations": null, + "lacerated": null, + "lacerates": null, + "laceration's": null, + "lacer": [["M"]], + "lacer's": null, + "unlaces": null, + "lacewing": [["M", "S"]], + "lacewing's": null, + "lacewings": null, + "Lacey": [["M"]], + "Lacey's": null, + "Lachesis": [["M"]], + "Lachesis's": null, + "lachrymal": [["S"]], + "lachrymals": null, + "lachrymose": null, + "Lacie": [["M"]], + "Lacie's": null, + "lacing": [["M"]], + "lacing's": null, + "lackadaisic": null, + "lackadaisical": [["Y"]], + "lackadaisically": null, + "Lackawanna": [["M"]], + "Lackawanna's": null, + "lacker": [["M"]], + "lacker's": null, + "lackey": [["S", "M", "D", "G"]], + "lackeys": null, + "lackey's": null, + "lackeyed": null, + "lackeying": null, + "lack": [["G", "R", "D", "M", "S"]], + "lacking": null, + "lacked": null, + "lack's": null, + "lacks": null, + "lackluster": [["S"]], + "lacklusters": null, + "Lac": [["M"]], + "Lac's": null, + "laconic": null, + "laconically": null, + "lacquerer": [["M"]], + "lacquerer's": null, + "lacquer": [["Z", "G", "D", "R", "M", "S"]], + "lacquerers": null, + "lacquering": null, + "lacquered": null, + "lacquer's": null, + "lacquers": null, + "lacrosse": [["M", "S"]], + "lacrosse's": null, + "lacrosses": null, + "lac": [["S", "G", "M", "D", "R"]], + "lacs": null, + "lac's": null, + "lactate": [["M", "N", "G", "S", "D", "X"]], + "lactate's": null, + "lactation": [["M"]], + "lactating": null, + "lactates": null, + "lactated": null, + "lactations": null, + "lactational": [["Y"]], + "lactationally": null, + "lactation's": null, + "lacteal": null, + "lactic": null, + "lactose": [["M", "S"]], + "lactose's": null, + "lactoses": null, + "lacunae": null, + "lacuna": [["M"]], + "lacuna's": null, + "Lacy": [["M"]], + "Lacy's": null, + "lacy": [["R", "T"]], + "lacier": null, + "laciest": null, + "ladder": [["G", "D", "M", "S"]], + "laddering": null, + "laddered": null, + "ladder's": null, + "ladders": null, + "laddie": [["M", "S"]], + "laddie's": null, + "laddies": null, + "laded": [["U"]], + "unladed": null, + "ladened": null, + "ladening": null, + "laden": [["U"]], + "unladen": null, + "lade": [["S"]], + "lades": null, + "lading": [["M"]], + "lading's": null, + "ladle": [["S", "D", "G", "M"]], + "ladles": null, + "ladled": null, + "ladling": null, + "ladle's": null, + "Ladoga": [["M"]], + "Ladoga's": null, + "Ladonna": [["M"]], + "Ladonna's": null, + "lad": [["X", "G", "S", "J", "M", "N", "D"]], + "ladens": null, + "lads": null, + "ladings": null, + "lad's": null, + "ladybird": [["S", "M"]], + "ladybirds": null, + "ladybird's": null, + "ladybug": [["M", "S"]], + "ladybug's": null, + "ladybugs": null, + "ladyfinger": [["S", "M"]], + "ladyfingers": null, + "ladyfinger's": null, + "ladylike": [["U"]], + "unladylike": null, + "ladylove": [["M", "S"]], + "ladylove's": null, + "ladyloves": null, + "Ladyship": [["M", "S"]], + "Ladyship's": null, + "Ladyships": null, + "ladyship": [["S", "M"]], + "ladyships": null, + "ladyship's": null, + "lady": [["S", "M"]], + "ladies": null, + "lady's": null, + "Lady": [["S", "M"]], + "Ladies": null, + "Lady's": null, + "Laetitia": [["M"]], + "Laetitia's": null, + "laetrile": [["S"]], + "laetriles": null, + "Lafayette": [["M"]], + "Lafayette's": null, + "Lafitte": [["M"]], + "Lafitte's": null, + "lager": [["D", "M", "G"]], + "lagered": null, + "lager's": null, + "lagering": null, + "laggard": [["M", "Y", "S", "P"]], + "laggard's": null, + "laggardly": null, + "laggards": null, + "laggardness": [["M"]], + "laggardness's": null, + "lagged": null, + "lagging": [["M", "S"]], + "lagging's": null, + "laggings": null, + "lagniappe": [["S", "M"]], + "lagniappes": null, + "lagniappe's": null, + "lagoon": [["M", "S"]], + "lagoon's": null, + "lagoons": null, + "Lagos": [["M"]], + "Lagos's": null, + "Lagrange": [["M"]], + "Lagrange's": null, + "Lagrangian": [["M"]], + "Lagrangian's": null, + "Laguerre": [["M"]], + "Laguerre's": null, + "Laguna": [["M"]], + "Laguna's": null, + "lag": [["Z", "S", "R"]], + "lagers": null, + "lags": null, + "Lahore": [["M"]], + "Lahore's": null, + "laid": [["A", "I"]], + "relaid": null, + "inlaid": null, + "Laidlaw": [["M"]], + "Laidlaw's": null, + "lain": null, + "Laina": [["M"]], + "Laina's": null, + "Lainey": [["M"]], + "Lainey's": null, + "Laird": [["M"]], + "Laird's": null, + "laird": [["M", "S"]], + "laird's": null, + "lairds": null, + "lair": [["G", "D", "M", "S"]], + "lairing": null, + "laired": null, + "lair's": null, + "lairs": null, + "laissez": null, + "laity": [["S", "M"]], + "laities": null, + "laity's": null, + "Laius": [["M"]], + "Laius's": null, + "lake": [["D", "S", "R", "M", "G"]], + "laked": null, + "lakes": null, + "laker": [["M"]], + "lake's": null, + "laking": null, + "Lakehurst": [["M"]], + "Lakehurst's": null, + "Lakeisha": [["M"]], + "Lakeisha's": null, + "laker's": null, + "lakeside": null, + "Lakewood": [["M"]], + "Lakewood's": null, + "Lakisha": [["M"]], + "Lakisha's": null, + "Lakshmi": [["M"]], + "Lakshmi's": null, + "lallygagged": null, + "lallygagging": null, + "lallygag": [["S"]], + "lallygags": null, + "Lalo": [["M"]], + "Lalo's": null, + "La": [["M"]], + "La's": null, + "Lamaism": [["S", "M"]], + "Lamaisms": null, + "Lamaism's": null, + "Lamarck": [["M"]], + "Lamarck's": null, + "Lamar": [["M"]], + "Lamar's": null, + "lamasery": [["M", "S"]], + "lamasery's": null, + "lamaseries": null, + "lama": [["S", "M"]], + "lamas": null, + "lama's": null, + "Lamaze": null, + "lambada": [["S"]], + "lambadas": null, + "lambaste": [["S", "D", "G"]], + "lambastes": null, + "lambasted": null, + "lambasting": null, + "lambda": [["S", "M"]], + "lambdas": null, + "lambda's": null, + "lambency": [["M", "S"]], + "lambency's": null, + "lambencies": null, + "lambent": [["Y"]], + "lambently": null, + "Lambert": [["M"]], + "Lambert's": null, + "lambkin": [["M", "S"]], + "lambkin's": null, + "lambkins": null, + "Lamb": [["M"]], + "Lamb's": null, + "Lamborghini": [["M"]], + "Lamborghini's": null, + "lambskin": [["M", "S"]], + "lambskin's": null, + "lambskins": null, + "lamb": [["S", "R", "D", "M", "G"]], + "lambs": null, + "lamber": null, + "lambed": null, + "lamb's": null, + "lambing": null, + "lambswool": null, + "lamebrain": [["S", "M"]], + "lamebrains": null, + "lamebrain's": null, + "lamed": [["M"]], + "lamed's": null, + "lameness": [["M", "S"]], + "lameness's": null, + "lamenesses": null, + "lamentableness": [["M"]], + "lamentableness's": null, + "lamentable": [["P"]], + "lamentably": null, + "lamentation": [["S", "M"]], + "lamentations": null, + "lamentation's": null, + "lament": [["D", "G", "S", "B"]], + "lamented": [["U"]], + "lamenting": null, + "laments": null, + "unlamented": null, + "lame": [["S", "P", "Y"]], + "lames": null, + "lamely": null, + "la": [["M", "H", "L", "G"]], + "la's": null, + "lath": [["M", "S", "R", "D", "G", "Z"]], + "laing": null, + "laminae": null, + "lamina": [["M"]], + "lamina's": null, + "laminar": null, + "laminate": [["X", "N", "G", "S", "D"]], + "laminations": null, + "lamination": [["M"]], + "laminating": null, + "laminates": null, + "laminated": null, + "lamination's": null, + "lam": [["M", "D", "R", "S", "T", "G"]], + "lam's": null, + "lamer": null, + "lams": null, + "lamest": null, + "laming": null, + "lammed": null, + "lammer": null, + "lamming": null, + "Lammond": [["M"]], + "Lammond's": null, + "Lamond": [["M"]], + "Lamond's": null, + "Lamont": [["M"]], + "Lamont's": null, + "L'Amour": null, + "lampblack": [["S", "M"]], + "lampblacks": null, + "lampblack's": null, + "lamplighter": [["M"]], + "lamplighter's": null, + "lamplight": [["Z", "R", "M", "S"]], + "lamplighters": null, + "lamplight's": null, + "lamplights": null, + "lampooner": [["M"]], + "lampooner's": null, + "lampoon": [["R", "D", "M", "G", "S"]], + "lampooned": null, + "lampoon's": null, + "lampooning": null, + "lampoons": null, + "Lamport": [["M"]], + "Lamport's": null, + "lamppost": [["S", "M"]], + "lampposts": null, + "lamppost's": null, + "lamprey": [["M", "S"]], + "lamprey's": null, + "lampreys": null, + "lamp": [["S", "G", "M", "R", "D"]], + "lamps": null, + "lamping": null, + "lamp's": null, + "lamper": null, + "lamped": null, + "lampshade": [["M", "S"]], + "lampshade's": null, + "lampshades": null, + "LAN": null, + "Lanae": [["M"]], + "Lanae's": null, + "Lanai": [["M"]], + "Lanai's": null, + "lanai": [["S", "M"]], + "lanais": null, + "lanai's": null, + "Lana": [["M"]], + "Lana's": null, + "Lancashire": [["M"]], + "Lancashire's": null, + "Lancaster": [["M"]], + "Lancaster's": null, + "Lancelot": [["M"]], + "Lancelot's": null, + "Lance": [["M"]], + "Lance's": null, + "lancer": [["M"]], + "lancer's": null, + "lance": [["S", "R", "D", "G", "M", "Z"]], + "lances": null, + "lanced": null, + "lancing": null, + "lance's": null, + "lancers": null, + "lancet": [["M", "S"]], + "lancet's": null, + "lancets": null, + "landau": [["M", "S"]], + "landau's": null, + "landaus": null, + "lander": [["I"]], + "landfall": [["S", "M"]], + "landfalls": null, + "landfall's": null, + "landfill": [["D", "S", "G"]], + "landfilled": null, + "landfills": null, + "landfilling": null, + "landforms": null, + "landholder": [["M"]], + "landholder's": null, + "landhold": [["J", "G", "Z", "R"]], + "landholdings": null, + "landholding": null, + "landholders": null, + "landing": [["M"]], + "landing's": null, + "Landis": [["M"]], + "Landis's": null, + "landlady": [["M", "S"]], + "landlady's": null, + "landladies": null, + "landless": null, + "landlines": null, + "landlocked": null, + "landlord": [["M", "S"]], + "landlord's": null, + "landlords": null, + "landlubber": [["S", "M"]], + "landlubbers": null, + "landlubber's": null, + "Land": [["M"]], + "Land's": null, + "landmark": [["G", "S", "M", "D"]], + "landmarking": null, + "landmarks": null, + "landmark's": null, + "landmarked": null, + "landmass": [["M", "S"]], + "landmass's": null, + "landmasses": null, + "Landon": [["M"]], + "Landon's": null, + "landowner": [["M", "S"]], + "landowner's": null, + "landowners": null, + "landownership": [["M"]], + "landownership's": null, + "landowning": [["S", "M"]], + "landownings": null, + "landowning's": null, + "Landry": [["M"]], + "Landry's": null, + "Landsat": null, + "landscape": [["G", "M", "Z", "S", "R", "D"]], + "landscaping": null, + "landscape's": null, + "landscapers": null, + "landscapes": null, + "landscaper": [["M"]], + "landscaped": null, + "landscaper's": null, + "lands": [["I"]], + "inlands": null, + "landslide": [["M", "S"]], + "landslide's": null, + "landslides": null, + "landslid": [["G"]], + "landsliding": null, + "landslip": null, + "landsman": [["M"]], + "landsman's": null, + "landsmen": null, + "land": [["S", "M", "R", "D", "J", "G", "Z"]], + "land's": null, + "landed": null, + "landings": null, + "landers": null, + "Landsteiner": [["M"]], + "Landsteiner's": null, + "landward": [["S"]], + "landwards": null, + "Landwehr": [["M"]], + "Landwehr's": null, + "Lane": [["M"]], + "Lane's": null, + "lane": [["S", "M"]], + "lanes": null, + "lane's": null, + "Lanette": [["M"]], + "Lanette's": null, + "Laney": [["M"]], + "Laney's": null, + "Langeland": [["M"]], + "Langeland's": null, + "Lange": [["M"]], + "Lange's": null, + "Langerhans": [["M"]], + "Langerhans's": null, + "Langford": [["M"]], + "Langford's": null, + "Langland": [["M"]], + "Langland's": null, + "Langley": [["M"]], + "Langley's": null, + "Lang": [["M"]], + "Lang's": null, + "Langmuir": [["M"]], + "Langmuir's": null, + "Langsdon": [["M"]], + "Langsdon's": null, + "Langston": [["M"]], + "Langston's": null, + "language": [["M", "S"]], + "language's": null, + "languages": null, + "languidness": [["M", "S"]], + "languidness's": null, + "languidnesses": null, + "languid": [["P", "Y"]], + "languidly": null, + "languisher": [["M"]], + "languisher's": null, + "languishing": [["Y"]], + "languishingly": null, + "languish": [["S", "R", "D", "G"]], + "languishes": null, + "languished": null, + "languorous": [["Y"]], + "languorously": null, + "languor": [["S", "M"]], + "languors": null, + "languor's": null, + "Lanie": [["M"]], + "Lanie's": null, + "Lani": [["M"]], + "Lani's": null, + "Lanita": [["M"]], + "Lanita's": null, + "lankiness": [["S", "M"]], + "lankinesses": null, + "lankiness's": null, + "lankness": [["M", "S"]], + "lankness's": null, + "lanknesses": null, + "lank": [["P", "T", "Y", "R"]], + "lankest": null, + "lankly": null, + "lanker": null, + "lanky": [["P", "R", "T"]], + "lankier": null, + "lankiest": null, + "Lanna": [["M"]], + "Lanna's": null, + "Lannie": [["M"]], + "Lannie's": null, + "Lanni": [["M"]], + "Lanni's": null, + "Lanny": [["M"]], + "Lanny's": null, + "lanolin": [["M", "S"]], + "lanolin's": null, + "lanolins": null, + "Lansing": [["M"]], + "Lansing's": null, + "lantern": [["G", "S", "D", "M"]], + "lanterning": null, + "lanterns": null, + "lanterned": null, + "lantern's": null, + "lanthanide": [["M"]], + "lanthanide's": null, + "lanthanum": [["M", "S"]], + "lanthanum's": null, + "lanthanums": null, + "lanyard": [["M", "S"]], + "lanyard's": null, + "lanyards": null, + "Lanzhou": null, + "Laocoon": [["M"]], + "Laocoon's": null, + "Lao": [["S", "M"]], + "Laos": null, + "Lao's": null, + "Laotian": [["M", "S"]], + "Laotian's": null, + "Laotians": null, + "lapboard": [["M", "S"]], + "lapboard's": null, + "lapboards": null, + "lapdog": [["S"]], + "lapdogs": null, + "lapel": [["M", "S"]], + "lapel's": null, + "lapels": null, + "lapidary": [["M", "S"]], + "lapidary's": null, + "lapidaries": null, + "lapin": [["M", "S"]], + "lapin's": null, + "lapins": null, + "Laplace": [["M"]], + "Laplace's": null, + "Lapland": [["Z", "M", "R"]], + "Laplanders": null, + "Lapland's": null, + "Laplander": null, + "lapped": null, + "lappet": [["M", "S"]], + "lappet's": null, + "lappets": null, + "lapping": null, + "Lapp": [["S", "M"]], + "Lapps": null, + "Lapp's": null, + "lapsed": [["A"]], + "relapsed": null, + "lapse": [["K", "S", "D", "M", "G"]], + "prolapse": null, + "prolapses": null, + "prolapsed": null, + "prolapse's": null, + "prolapsing": null, + "lapses": [["A"]], + "lapse's": null, + "lapsing": [["A"]], + "lapser": [["M", "A"]], + "lapser's": null, + "relapser's": null, + "relapser": null, + "relapses": null, + "relapsing": null, + "lap": [["S", "M"]], + "laps": [["S", "R", "D", "G"]], + "lap's": null, + "laptop": [["S", "M"]], + "laptops": null, + "laptop's": null, + "lapwing": [["M", "S"]], + "lapwing's": null, + "lapwings": null, + "Laraine": [["M"]], + "Laraine's": null, + "Lara": [["M"]], + "Lara's": null, + "Laramie": [["M"]], + "Laramie's": null, + "larboard": [["M", "S"]], + "larboard's": null, + "larboards": null, + "larcenist": [["S"]], + "larcenists": null, + "larcenous": null, + "larceny": [["M", "S"]], + "larceny's": null, + "larcenies": null, + "larch": [["M", "S"]], + "larch's": null, + "larches": null, + "larder": [["M"]], + "larder's": null, + "lard": [["M", "R", "D", "S", "G", "Z"]], + "lard's": null, + "larded": null, + "lards": null, + "larding": null, + "larders": null, + "Lardner": [["M"]], + "Lardner's": null, + "lardy": [["R", "T"]], + "lardier": null, + "lardiest": null, + "Laredo": [["M"]], + "Laredo's": null, + "largehearted": null, + "largemouth": null, + "largeness": [["S", "M"]], + "largenesses": null, + "largeness's": null, + "large": [["S", "R", "T", "Y", "P"]], + "larges": null, + "larger": null, + "largest": null, + "largely": null, + "largess": [["S", "M"]], + "largesses": null, + "largess's": null, + "largish": null, + "largo": [["S"]], + "largos": null, + "lariat": [["M", "D", "G", "S"]], + "lariat's": null, + "lariated": null, + "lariating": null, + "lariats": null, + "Lari": [["M"]], + "Lari's": null, + "Larina": [["M"]], + "Larina's": null, + "Larine": [["M"]], + "Larine's": null, + "Larisa": [["M"]], + "Larisa's": null, + "Larissa": [["M"]], + "Larissa's": null, + "larker": [["M"]], + "larker's": null, + "lark": [["G", "R", "D", "M", "S"]], + "larking": null, + "larked": null, + "lark's": null, + "larks": null, + "Lark": [["M"]], + "Lark's": null, + "larkspur": [["M", "S"]], + "larkspur's": null, + "larkspurs": null, + "Larousse": [["M"]], + "Larousse's": null, + "Larry": [["M"]], + "Larry's": null, + "Larsen": [["M"]], + "Larsen's": null, + "Lars": [["N", "M"]], + "Lars's": null, + "Larson": [["M"]], + "Larson's": null, + "larvae": null, + "larval": null, + "larva": [["M"]], + "larva's": null, + "laryngeal": [["Y", "S"]], + "laryngeally": null, + "laryngeals": null, + "larynges": null, + "laryngitides": null, + "laryngitis": [["M"]], + "laryngitis's": null, + "larynx": [["M"]], + "larynx's": null, + "Laryssa": [["M"]], + "Laryssa's": null, + "lasagna": [["S"]], + "lasagnas": null, + "lasagne's": null, + "Lascaux": [["M"]], + "Lascaux's": null, + "lasciviousness": [["M", "S"]], + "lasciviousness's": null, + "lasciviousnesses": null, + "lascivious": [["Y", "P"]], + "lasciviously": null, + "lase": null, + "laser": [["M"]], + "laser's": null, + "lashed": [["U"]], + "unlashed": null, + "lasher": [["M"]], + "lasher's": null, + "lashing": [["M"]], + "lashing's": null, + "lash": [["J", "G", "M", "S", "R", "D"]], + "lashings": null, + "lash's": null, + "lashes": null, + "Lassa": [["M"]], + "Lassa's": null, + "Lassen": [["M"]], + "Lassen's": null, + "Lassie": [["M"]], + "Lassie's": null, + "lassie": [["S", "M"]], + "lassies": null, + "lassie's": null, + "lassitude": [["M", "S"]], + "lassitude's": null, + "lassitudes": null, + "lassoer": [["M"]], + "lassoer's": null, + "lasso": [["G", "R", "D", "M", "S"]], + "lassoing": null, + "lassoed": null, + "lasso's": null, + "lassos": null, + "las": [["S", "R", "Z", "G"]], + "lases": null, + "lasers": null, + "lasing": null, + "lass": [["S", "M"]], + "lasses": null, + "lass's": null, + "laster": [["M"]], + "laster's": null, + "lastingness": [["M"]], + "lastingness's": null, + "lasting": [["P", "Y"]], + "lastingly": null, + "last": [["J", "G", "S", "Y", "R", "D"]], + "lastings": null, + "lasts": null, + "lastly": null, + "lasted": null, + "Laszlo": [["M"]], + "Laszlo's": null, + "Latasha": [["M"]], + "Latasha's": null, + "Latashia": [["M"]], + "Latashia's": null, + "latching": [["M"]], + "latching's": null, + "latchkey": [["S", "M"]], + "latchkeys": null, + "latchkey's": null, + "latch's": null, + "latch": [["U", "G", "S", "D"]], + "unlatch": null, + "unlatching": null, + "unlatches": null, + "unlatched": null, + "latches": null, + "latched": null, + "latecomer": [["S", "M"]], + "latecomers": null, + "latecomer's": null, + "lated": [["A"]], + "related": [["U"]], + "late": [["K", "A"]], + "prolate": null, + "relate": [["X", "V", "N", "G", "S", "Z"]], + "lately": null, + "latency": [["M", "S"]], + "latency's": null, + "latencies": null, + "lateness": [["M", "S"]], + "lateness's": null, + "latenesses": null, + "latent": [["Y", "S"]], + "latently": null, + "latents": null, + "later": [["A"]], + "relater": [["M"]], + "lateral": [["G", "D", "Y", "S"]], + "lateraling": null, + "lateraled": null, + "laterally": null, + "laterals": null, + "lateralization": null, + "Lateran": [["M"]], + "Lateran's": null, + "latest": [["S"]], + "latests": null, + "LaTeX": [["M"]], + "LaTeX's": null, + "latex": [["M", "S"]], + "latex's": null, + "latexes": null, + "lathe": [["M"]], + "lathe's": null, + "latherer": [["M"]], + "latherer's": null, + "lather": [["R", "D", "M", "G"]], + "lathered": null, + "lather's": null, + "lathering": null, + "lathery": null, + "lathing": [["M"]], + "lathing's": null, + "lath's": null, + "lathes": null, + "lathed": null, + "lathers": null, + "Lathrop": [["M"]], + "Lathrop's": null, + "laths": null, + "Latia": [["M"]], + "Latia's": null, + "latices": [["M"]], + "latices's": null, + "Latina": [["S", "M"]], + "Latinas": null, + "Latina's": null, + "Latinate": null, + "Latino": [["S"]], + "Latinos": null, + "Latin": [["R", "M", "S"]], + "Latiner": null, + "Latin's": null, + "Latins": null, + "latish": null, + "Latisha": [["M"]], + "Latisha's": null, + "latitude": [["S", "M"]], + "latitudes": null, + "latitude's": null, + "latitudinal": [["Y"]], + "latitudinally": null, + "latitudinarian": [["S"]], + "latitudinarians": null, + "latitudinary": null, + "Lat": [["M"]], + "Lat's": null, + "Latonya": [["M"]], + "Latonya's": null, + "Latoya": [["M"]], + "Latoya's": null, + "Latrena": [["M"]], + "Latrena's": null, + "Latrina": [["M"]], + "Latrina's": null, + "latrine": [["M", "S"]], + "latrine's": null, + "latrines": null, + "Latrobe": [["M"]], + "Latrobe's": null, + "lat": [["S", "D", "R", "T"]], + "lats": null, + "latter": [["Y", "M"]], + "latterly": null, + "latter's": null, + "latte": [["S", "R"]], + "lattes": null, + "lattice": [["S", "D", "M", "G"]], + "lattices": null, + "latticed": null, + "lattice's": null, + "latticing": [["M"]], + "latticework": [["M", "S"]], + "latticework's": null, + "latticeworks": null, + "latticing's": null, + "Lattimer": [["M"]], + "Lattimer's": null, + "Latvia": [["M"]], + "Latvia's": null, + "Latvian": [["S"]], + "Latvians": null, + "laudably": null, + "laudanum": [["M", "S"]], + "laudanum's": null, + "laudanums": null, + "laudatory": null, + "Lauderdale": [["M"]], + "Lauderdale's": null, + "lauder": [["M"]], + "lauder's": null, + "Lauder": [["M"]], + "Lauder's": null, + "Laud": [["M", "R"]], + "Laud's": null, + "laud": [["R", "D", "S", "B", "G"]], + "lauded": null, + "lauds": [["M"]], + "laudable": null, + "lauding": null, + "lauds's": null, + "Laue": [["M"]], + "Laue's": null, + "laughableness": [["M"]], + "laughableness's": null, + "laughable": [["P"]], + "laughably": null, + "laugh": [["B", "R", "D", "Z", "G", "J"]], + "laugher": [["M"]], + "laughed": null, + "laughers": null, + "laughing": [["M", "Y"]], + "laughings": null, + "laugher's": null, + "laughing's": null, + "laughingly": null, + "laughingstock": [["S", "M"]], + "laughingstocks": null, + "laughingstock's": null, + "laughs": null, + "laughter": [["M", "S"]], + "laughter's": null, + "laughters": null, + "Laughton": [["M"]], + "Laughton's": null, + "Launce": [["M"]], + "Launce's": null, + "launch": [["A", "G", "S", "D"]], + "relaunch": null, + "relaunching": null, + "relaunches": null, + "relaunched": null, + "launching": [["S"]], + "launches": null, + "launched": null, + "launcher": [["M", "S"]], + "launcher's": null, + "launchers": null, + "launchings": null, + "launchpad": [["S"]], + "launchpads": null, + "laundered": [["U"]], + "unlaundered": null, + "launderer": [["M"]], + "launderer's": null, + "launderette": [["M", "S"]], + "launderette's": null, + "launderettes": null, + "launder": [["S", "D", "R", "Z", "J", "G"]], + "launders": null, + "launderers": null, + "launderings": null, + "laundering": null, + "laundress": [["M", "S"]], + "laundress's": null, + "laundresses": null, + "laundrette": [["S"]], + "laundrettes": null, + "laundromat": [["S"]], + "laundromats": null, + "Laundromat": [["S", "M"]], + "Laundromats": null, + "Laundromat's": null, + "laundryman": [["M"]], + "laundryman's": null, + "laundrymen": null, + "laundry": [["M", "S"]], + "laundry's": null, + "laundries": null, + "laundrywoman": [["M"]], + "laundrywoman's": null, + "laundrywomen": null, + "Lauraine": [["M"]], + "Lauraine's": null, + "Lauralee": [["M"]], + "Lauralee's": null, + "Laural": [["M"]], + "Laural's": null, + "laura": [["M"]], + "laura's": null, + "Laura": [["M"]], + "Laura's": null, + "Laurasia": [["M"]], + "Laurasia's": null, + "laureate": [["D", "S", "N", "G"]], + "laureated": null, + "laureates": null, + "laureation": null, + "laureating": null, + "laureateship": [["S", "M"]], + "laureateships": null, + "laureateship's": null, + "Lauree": [["M"]], + "Lauree's": null, + "Laureen": [["M"]], + "Laureen's": null, + "Laurella": [["M"]], + "Laurella's": null, + "Laurel": [["M"]], + "Laurel's": null, + "laurel": [["S", "G", "M", "D"]], + "laurels": null, + "laureling": null, + "laurel's": null, + "laureled": null, + "Laure": [["M"]], + "Laure's": null, + "Laurena": [["M"]], + "Laurena's": null, + "Laurence": [["M"]], + "Laurence's": null, + "Laurene": [["M"]], + "Laurene's": null, + "Lauren": [["S", "M"]], + "Laurens": null, + "Lauren's": null, + "Laurentian": null, + "Laurent": [["M"]], + "Laurent's": null, + "Lauretta": [["M"]], + "Lauretta's": null, + "Laurette": [["M"]], + "Laurette's": null, + "Laurianne": [["M"]], + "Laurianne's": null, + "Laurice": [["M"]], + "Laurice's": null, + "Laurie": [["M"]], + "Laurie's": null, + "Lauri": [["M"]], + "Lauri's": null, + "Lauritz": [["M"]], + "Lauritz's": null, + "Lauryn": [["M"]], + "Lauryn's": null, + "Lausanne": [["M"]], + "Lausanne's": null, + "lavage": [["M", "S"]], + "lavage's": null, + "lavages": null, + "lavaliere": [["M", "S"]], + "lavaliere's": null, + "lavalieres": null, + "Laval": [["M"]], + "Laval's": null, + "lava": [["S", "M"]], + "lavas": null, + "lava's": null, + "lavatory": [["M", "S"]], + "lavatory's": null, + "lavatories": null, + "lave": [["G", "D", "S"]], + "laving": null, + "laved": null, + "laves": null, + "Lavena": [["M"]], + "Lavena's": null, + "lavender": [["M", "D", "S", "G"]], + "lavender's": null, + "lavendered": null, + "lavenders": null, + "lavendering": null, + "Laverna": [["M"]], + "Laverna's": null, + "Laverne": [["M"]], + "Laverne's": null, + "Lavern": [["M"]], + "Lavern's": null, + "Lavina": [["M"]], + "Lavina's": null, + "Lavinia": [["M"]], + "Lavinia's": null, + "Lavinie": [["M"]], + "Lavinie's": null, + "lavishness": [["M", "S"]], + "lavishness's": null, + "lavishnesses": null, + "lavish": [["S", "R", "D", "Y", "P", "T", "G"]], + "lavishes": null, + "lavisher": null, + "lavished": null, + "lavishly": null, + "lavishest": null, + "lavishing": null, + "Lavoisier": [["M"]], + "Lavoisier's": null, + "Lavonne": [["M"]], + "Lavonne's": null, + "Lawanda": [["M"]], + "Lawanda's": null, + "lawbreaker": [["S", "M"]], + "lawbreakers": null, + "lawbreaker's": null, + "lawbreaking": [["M", "S"]], + "lawbreaking's": null, + "lawbreakings": null, + "Lawford": [["M"]], + "Lawford's": null, + "lawfulness": [["S", "M", "U"]], + "lawfulnesses": null, + "unlawfulnesses": null, + "lawfulness's": null, + "unlawfulness's": null, + "unlawfulness": null, + "lawful": [["P", "U", "Y"]], + "unlawful": null, + "unlawfully": null, + "lawfully": null, + "lawgiver": [["M", "S"]], + "lawgiver's": null, + "lawgivers": null, + "lawgiving": [["M"]], + "lawgiving's": null, + "lawlessness": [["M", "S"]], + "lawlessness's": null, + "lawlessnesses": null, + "lawless": [["P", "Y"]], + "lawlessly": null, + "Law": [["M"]], + "Law's": null, + "lawmaker": [["M", "S"]], + "lawmaker's": null, + "lawmakers": null, + "lawmaking": [["S", "M"]], + "lawmakings": null, + "lawmaking's": null, + "lawman": [["M"]], + "lawman's": null, + "lawmen": null, + "lawnmower": [["S"]], + "lawnmowers": null, + "lawn": [["S", "M"]], + "lawns": null, + "lawn's": null, + "Lawrence": [["M"]], + "Lawrence's": null, + "Lawrenceville": [["M"]], + "Lawrenceville's": null, + "lawrencium": [["S", "M"]], + "lawrenciums": null, + "lawrencium's": null, + "Lawry": [["M"]], + "Lawry's": null, + "law": [["S", "M", "D", "G"]], + "laws": null, + "law's": null, + "lawed": null, + "lawing": null, + "Lawson": [["M"]], + "Lawson's": null, + "lawsuit": [["M", "S"]], + "lawsuit's": null, + "lawsuits": null, + "Lawton": [["M"]], + "Lawton's": null, + "lawyer": [["D", "Y", "M", "G", "S"]], + "lawyered": null, + "lawyerly": null, + "lawyer's": null, + "lawyering": null, + "lawyers": null, + "laxativeness": [["M"]], + "laxativeness's": null, + "laxative": [["P", "S", "Y", "M"]], + "laxatives": null, + "laxatively": null, + "laxative's": null, + "laxer": [["A"]], + "relaxer": null, + "laxes": [["A"]], + "relaxes": null, + "laxity": [["S", "M"]], + "laxities": null, + "laxity's": null, + "laxness": [["S", "M"]], + "laxnesses": null, + "laxness's": null, + "lax": [["P", "T", "S", "R", "Y"]], + "laxest": null, + "laxly": null, + "layabout": [["M", "S"]], + "layabout's": null, + "layabouts": null, + "Layamon": [["M"]], + "Layamon's": null, + "layaway": [["S"]], + "layaways": null, + "lay": [["C", "Z", "G", "S", "R"]], + "delayers": null, + "delaying": null, + "delays": null, + "layers": null, + "laying": null, + "lays": [["A", "I"]], + "layer": [["G", "J", "D", "M"]], + "layered": [["C"]], + "delayered": null, + "layering": [["M"]], + "layerings": null, + "layer's": [["I", "C"]], + "layering's": null, + "inlayer's": null, + "delayer's": null, + "layette": [["S", "M"]], + "layettes": null, + "layette's": null, + "Layla": [["M"]], + "Layla's": null, + "Lay": [["M"]], + "Lay's": null, + "layman": [["M"]], + "layman's": null, + "laymen": null, + "Layne": [["M"]], + "Layne's": null, + "Layney": [["M"]], + "Layney's": null, + "layoff": [["M", "S"]], + "layoff's": null, + "layoffs": null, + "layout": [["S", "M"]], + "layouts": null, + "layout's": null, + "layover": [["S", "M"]], + "layovers": null, + "layover's": null, + "laypeople": null, + "layperson": [["S"]], + "laypersons": null, + "relays": null, + "inlays": null, + "Layton": [["M"]], + "Layton's": null, + "layup": [["M", "S"]], + "layup's": null, + "layups": null, + "laywoman": [["M"]], + "laywoman's": null, + "laywomen": null, + "Lazare": [["M"]], + "Lazare's": null, + "Lazar": [["M"]], + "Lazar's": null, + "Lazaro": [["M"]], + "Lazaro's": null, + "Lazarus": [["M"]], + "Lazarus's": null, + "laze": [["D", "S", "G"]], + "lazed": null, + "lazes": null, + "lazing": null, + "lazily": null, + "laziness": [["M", "S"]], + "laziness's": null, + "lazinesses": null, + "lazuli": [["M"]], + "lazuli's": null, + "lazybones": [["M"]], + "lazybones's": null, + "lazy": [["P", "T", "S", "R", "D", "G"]], + "laziest": null, + "lazies": null, + "lazier": null, + "lazied": null, + "lazying": null, + "lb": null, + "LBJ": [["M"]], + "LBJ's": null, + "lbs": null, + "LC": null, + "LCD": null, + "LCM": null, + "LDC": null, + "leachate": null, + "Leach": [["M"]], + "Leach's": null, + "leach": [["S", "D", "G"]], + "leaches": null, + "leached": null, + "leaching": null, + "Leadbelly": [["M"]], + "Leadbelly's": null, + "leaded": [["U"]], + "unleaded": null, + "leadenness": [["M"]], + "leadenness's": null, + "leaden": [["P", "G", "D", "Y"]], + "leadening": null, + "leadened": null, + "leadenly": null, + "leaderless": null, + "leader": [["M"]], + "leader's": null, + "leadership": [["M", "S"]], + "leadership's": null, + "leaderships": null, + "lead": [["S", "G", "Z", "X", "J", "R", "D", "N"]], + "leads": null, + "leading": null, + "leaders": null, + "leadens": null, + "leadings": null, + "leadsman": [["M"]], + "leadsman's": null, + "leadsmen": null, + "leafage": [["M", "S"]], + "leafage's": null, + "leafages": null, + "leaf": [["G", "S", "D", "M"]], + "leafing": null, + "leafs": null, + "leafed": null, + "leaf's": null, + "leafhopper": [["M"]], + "leafhopper's": null, + "leafiness": [["M"]], + "leafiness's": null, + "leafless": null, + "leaflet": [["S", "D", "M", "G"]], + "leaflets": null, + "leafleted": null, + "leaflet's": null, + "leafleting": null, + "leafstalk": [["S", "M"]], + "leafstalks": null, + "leafstalk's": null, + "leafy": [["P", "T", "R"]], + "leafiest": null, + "leafier": null, + "leaguer": [["M"]], + "leaguer's": null, + "league": [["R", "S", "D", "M", "Z", "G"]], + "leagues": null, + "leagued": null, + "league's": null, + "leaguers": null, + "leaguing": null, + "Leah": [["M"]], + "Leah's": null, + "leakage": [["S", "M"]], + "leakages": null, + "leakage's": null, + "leaker": [["M"]], + "leaker's": null, + "Leakey": [["M"]], + "Leakey's": null, + "leak": [["G", "S", "R", "D", "M"]], + "leaking": null, + "leaks": null, + "leaked": null, + "leak's": null, + "leakiness": [["M", "S"]], + "leakiness's": null, + "leakinesses": null, + "leaky": [["P", "R", "T"]], + "leakier": null, + "leakiest": null, + "Lea": [["M"]], + "Lea's": null, + "lea": [["M", "S"]], + "lea's": null, + "leas": [["S", "R", "D", "G", "Z"]], + "Leander": [["M"]], + "Leander's": null, + "Leandra": [["M"]], + "Leandra's": null, + "leaner": [["M"]], + "leaner's": null, + "leaning": [["M"]], + "leaning's": null, + "Lean": [["M"]], + "Lean's": null, + "Leanna": [["M"]], + "Leanna's": null, + "Leanne": [["M"]], + "Leanne's": null, + "leanness": [["M", "S"]], + "leanness's": null, + "leannesses": null, + "Leann": [["M"]], + "Leann's": null, + "Leanora": [["M"]], + "Leanora's": null, + "Leanor": [["M"]], + "Leanor's": null, + "lean": [["Y", "R", "D", "G", "T", "J", "S", "P"]], + "leanly": null, + "leaned": null, + "leanest": null, + "leanings": null, + "leans": null, + "leaper": [["M"]], + "leaper's": null, + "leapfrogged": null, + "leapfrogging": null, + "leapfrog": [["S", "M"]], + "leapfrogs": null, + "leapfrog's": null, + "leap": [["R", "D", "G", "Z", "S"]], + "leaped": null, + "leaping": null, + "leapers": null, + "leaps": null, + "Lear": [["M"]], + "Lear's": null, + "learnedly": null, + "learnedness": [["M"]], + "learnedness's": null, + "learned": [["U", "A"]], + "unlearned": null, + "relearned": null, + "learner": [["M"]], + "learner's": null, + "learning": [["M"]], + "learning's": null, + "learns": [["U", "A"]], + "unlearns": null, + "relearns": null, + "learn": [["S", "Z", "G", "J", "R", "D"]], + "learners": null, + "learnings": null, + "Leary": [["M"]], + "Leary's": null, + "lease": [["A", "R", "S", "D", "G"]], + "release": [["B"]], + "releaser": null, + "releases": null, + "released": [["U"]], + "releasing": null, + "leaser": [["M", "A"]], + "leases": null, + "leased": null, + "leasing": [["M"]], + "leaseback": [["M", "S"]], + "leaseback's": null, + "leasebacks": null, + "leaseholder": [["M"]], + "leaseholder's": null, + "leasehold": [["S", "R", "M", "Z"]], + "leaseholds": null, + "leasehold's": null, + "leaseholders": null, + "leaser's": null, + "releaser's": null, + "lease's": null, + "leash's": null, + "leash": [["U", "G", "S", "D"]], + "unleash": null, + "unleashing": null, + "unleashes": null, + "unleashed": null, + "leashing": null, + "leashes": null, + "leashed": null, + "leasing's": null, + "leasers": null, + "least": [["S"]], + "leasts": null, + "leastwise": null, + "leatherette": [["S"]], + "leatherettes": null, + "leather": [["M", "D", "S", "G"]], + "leather's": null, + "leathered": null, + "leathers": null, + "leathering": null, + "leathern": null, + "leatherneck": [["S", "M"]], + "leathernecks": null, + "leatherneck's": null, + "leathery": null, + "leaven": [["D", "M", "J", "G", "S"]], + "leavened": [["U"]], + "leaven's": null, + "leavenings": null, + "leavening": [["M"]], + "leavens": null, + "unleavened": null, + "leavening's": null, + "Leavenworth": [["M"]], + "Leavenworth's": null, + "leaver": [["M"]], + "leaver's": null, + "leaves": [["M"]], + "leaves's": null, + "leave": [["S", "R", "D", "J", "G", "Z"]], + "leaved": null, + "leavings": null, + "leaving": [["M"]], + "leavers": null, + "leaving's": null, + "Lebanese": null, + "Lebanon": [["M"]], + "Lebanon's": null, + "Lebbie": [["M"]], + "Lebbie's": null, + "lebensraum": null, + "Lebesgue": [["M"]], + "Lebesgue's": null, + "Leblanc": [["M"]], + "Leblanc's": null, + "lecher": [["D", "M", "G", "S"]], + "lechered": null, + "lecher's": null, + "lechering": null, + "lechers": null, + "lecherousness": [["M", "S"]], + "lecherousness's": null, + "lecherousnesses": null, + "lecherous": [["Y", "P"]], + "lecherously": null, + "lechery": [["M", "S"]], + "lechery's": null, + "lecheries": null, + "lecithin": [["S", "M"]], + "lecithins": null, + "lecithin's": null, + "lectern": [["S", "M"]], + "lecterns": null, + "lectern's": null, + "lecturer": [["M"]], + "lecturer's": null, + "lecture": [["R", "S", "D", "Z", "M", "G"]], + "lectures": null, + "lectured": null, + "lecturers": null, + "lecture's": null, + "lecturing": null, + "lectureship": [["S", "M"]], + "lectureships": null, + "lectureship's": null, + "led": null, + "Leda": [["M"]], + "Leda's": null, + "Lederberg": [["M"]], + "Lederberg's": null, + "ledger": [["D", "M", "G"]], + "ledgered": null, + "ledger's": null, + "ledgering": null, + "ledge": [["S", "R", "M", "Z"]], + "ledges": null, + "ledge's": null, + "ledgers": null, + "LED": [["S", "M"]], + "LEDs": null, + "LED's": null, + "Leeanne": [["M"]], + "Leeanne's": null, + "Leeann": [["M"]], + "Leeann's": null, + "leech": [["M", "S", "D", "G"]], + "leech's": null, + "leeches": null, + "leeched": null, + "leeching": null, + "Leeds": [["M"]], + "Leeds's": null, + "leek": [["S", "M"]], + "leeks": null, + "leek's": null, + "Leelah": [["M"]], + "Leelah's": null, + "Leela": [["M"]], + "Leela's": null, + "Leeland": [["M"]], + "Leeland's": null, + "Lee": [["M"]], + "Lee's": null, + "lee": [["M", "Z", "R", "S"]], + "lee's": null, + "leers": null, + "leer": [["D", "G"]], + "lees": null, + "Leena": [["M"]], + "Leena's": null, + "leered": null, + "leering": [["Y"]], + "leeriness": [["M", "S"]], + "leeriness's": null, + "leerinesses": null, + "leeringly": null, + "leery": [["P", "T", "R"]], + "leeriest": null, + "leerier": null, + "Leesa": [["M"]], + "Leesa's": null, + "Leese": [["M"]], + "Leese's": null, + "Leeuwenhoek": [["M"]], + "Leeuwenhoek's": null, + "Leeward": [["M"]], + "Leeward's": null, + "leeward": [["S"]], + "leewards": null, + "leeway": [["M", "S"]], + "leeway's": null, + "leeways": null, + "leftism": [["S", "M"]], + "leftisms": null, + "leftism's": null, + "leftist": [["S", "M"]], + "leftists": null, + "leftist's": null, + "leftmost": null, + "leftover": [["M", "S"]], + "leftover's": null, + "leftovers": null, + "Left": [["S"]], + "Lefts": null, + "left": [["T", "R", "S"]], + "leftest": null, + "lefter": null, + "lefts": null, + "leftward": [["S"]], + "leftwards": null, + "Lefty": [["M"]], + "Lefty's": null, + "lefty": [["S", "M"]], + "lefties": null, + "lefty's": null, + "legacy": [["M", "S"]], + "legacy's": null, + "legacies": null, + "legalese": [["M", "S"]], + "legalese's": null, + "legaleses": null, + "legalism": [["S", "M"]], + "legalisms": null, + "legalism's": null, + "legalistic": null, + "legality": [["M", "S"]], + "legality's": null, + "legalities": null, + "legalization": [["M", "S"]], + "legalization's": null, + "legalizations": null, + "legalize": [["D", "S", "G"]], + "legalized": [["U"]], + "legalizes": null, + "legalizing": null, + "unlegalized": null, + "legal": [["S", "Y"]], + "legals": null, + "legally": null, + "legate": [["A", "X", "C", "N", "G", "S", "D"]], + "relegate": null, + "relegations": null, + "relegation": null, + "relegating": null, + "relegates": null, + "relegated": null, + "legations": null, + "delegations": null, + "delegate": null, + "delegation": null, + "delegating": null, + "delegates": null, + "delegated": null, + "legation": [["A", "M", "C"]], + "legating": null, + "legates": null, + "legated": null, + "legatee": [["M", "S"]], + "legatee's": null, + "legatees": null, + "legate's": [["C"]], + "delegate's": null, + "relegation's": null, + "legation's": null, + "delegation's": null, + "legato": [["S", "M"]], + "legatos": null, + "legato's": null, + "legendarily": null, + "legendary": [["S"]], + "legendaries": null, + "Legendre": [["M"]], + "Legendre's": null, + "legend": [["S", "M"]], + "legends": null, + "legend's": null, + "legerdemain": [["S", "M"]], + "legerdemains": null, + "legerdemain's": null, + "Leger": [["S", "M"]], + "Legers": null, + "Leger's": null, + "legged": null, + "legginess": [["M", "S"]], + "legginess's": null, + "legginesses": null, + "legging": [["M", "S"]], + "legging's": null, + "leggings": null, + "leggy": [["P", "R", "T"]], + "leggier": null, + "leggiest": null, + "leghorn": [["S", "M"]], + "leghorns": null, + "leghorn's": null, + "Leghorn": [["S", "M"]], + "Leghorns": null, + "Leghorn's": null, + "legibility": [["M", "S"]], + "legibility's": null, + "legibilities": null, + "legible": null, + "legibly": null, + "legionary": [["S"]], + "legionaries": null, + "legionnaire": [["S", "M"]], + "legionnaires": null, + "legionnaire's": null, + "legion": [["S", "M"]], + "legions": null, + "legion's": null, + "legislate": [["S", "D", "X", "V", "N", "G"]], + "legislates": null, + "legislated": null, + "legislations": null, + "legislative": [["S", "Y"]], + "legislation": [["M"]], + "legislating": null, + "legislation's": null, + "legislatives": null, + "legislatively": null, + "legislator": [["S", "M"]], + "legislators": null, + "legislator's": null, + "legislature": [["M", "S"]], + "legislature's": null, + "legislatures": null, + "legitimacy": [["M", "S"]], + "legitimacy's": null, + "legitimacies": null, + "legitimate": [["S", "D", "N", "G", "Y"]], + "legitimates": null, + "legitimated": null, + "legitimation": [["M"]], + "legitimating": null, + "legitimately": null, + "legitimation's": null, + "legitimatize": [["S", "D", "G"]], + "legitimatizes": null, + "legitimatized": null, + "legitimatizing": null, + "legitimization": [["M", "S"]], + "legitimization's": null, + "legitimizations": null, + "legitimize": [["R", "S", "D", "G"]], + "legitimizer": null, + "legitimizes": null, + "legitimized": null, + "legitimizing": null, + "legit": [["S"]], + "legits": null, + "legless": null, + "legman": [["M"]], + "legman's": null, + "legmen": null, + "leg": [["M", "S"]], + "leg's": null, + "legs": null, + "Lego": [["M"]], + "Lego's": null, + "Legra": [["M"]], + "Legra's": null, + "Legree": [["M"]], + "Legree's": null, + "legroom": [["M", "S"]], + "legroom's": null, + "legrooms": null, + "legstraps": null, + "legume": [["S", "M"]], + "legumes": null, + "legume's": null, + "leguminous": null, + "legwork": [["S", "M"]], + "legworks": null, + "legwork's": null, + "Lehigh": [["M"]], + "Lehigh's": null, + "Lehman": [["M"]], + "Lehman's": null, + "Leia": [["M"]], + "Leia's": null, + "Leibniz": [["M"]], + "Leibniz's": null, + "Leicester": [["S", "M"]], + "Leicesters": null, + "Leicester's": null, + "Leiden": [["M"]], + "Leiden's": null, + "Leif": [["M"]], + "Leif's": null, + "Leigha": [["M"]], + "Leigha's": null, + "Leigh": [["M"]], + "Leigh's": null, + "Leighton": [["M"]], + "Leighton's": null, + "Leilah": [["M"]], + "Leilah's": null, + "Leila": [["M"]], + "Leila's": null, + "lei": [["M", "S"]], + "lei's": null, + "leis": null, + "Leipzig": [["M"]], + "Leipzig's": null, + "Leisha": [["M"]], + "Leisha's": null, + "leisureliness": [["M", "S"]], + "leisureliness's": null, + "leisurelinesses": null, + "leisurely": [["P"]], + "leisure": [["S", "D", "Y", "M"]], + "leisures": null, + "leisured": null, + "leisure's": null, + "leisurewear": null, + "leitmotif": [["S", "M"]], + "leitmotifs": null, + "leitmotif's": null, + "leitmotiv": [["M", "S"]], + "leitmotiv's": null, + "leitmotivs": null, + "Lek": [["M"]], + "Lek's": null, + "Lelah": [["M"]], + "Lelah's": null, + "Lela": [["M"]], + "Lela's": null, + "Leland": [["M"]], + "Leland's": null, + "Lelia": [["M"]], + "Lelia's": null, + "Lemaitre": [["M"]], + "Lemaitre's": null, + "Lemar": [["M"]], + "Lemar's": null, + "Lemke": [["M"]], + "Lemke's": null, + "Lem": [["M"]], + "Lem's": null, + "lemma": [["M", "S"]], + "lemma's": null, + "lemmas": null, + "lemme": [["G", "J"]], + "lemming": [["M"]], + "lemmings": null, + "Lemmie": [["M"]], + "Lemmie's": null, + "lemming's": null, + "Lemmy": [["M"]], + "Lemmy's": null, + "lemonade": [["S", "M"]], + "lemonades": null, + "lemonade's": null, + "lemon": [["G", "S", "D", "M"]], + "lemoning": null, + "lemons": null, + "lemoned": null, + "lemon's": null, + "lemony": null, + "Lemuel": [["M"]], + "Lemuel's": null, + "Lemuria": [["M"]], + "Lemuria's": null, + "lemur": [["M", "S"]], + "lemur's": null, + "lemurs": null, + "Lena": [["M"]], + "Lena's": null, + "Lenard": [["M"]], + "Lenard's": null, + "Lenci": [["M"]], + "Lenci's": null, + "lender": [["M"]], + "lender's": null, + "lend": [["S", "R", "G", "Z"]], + "lends": null, + "lending": null, + "lenders": null, + "Lenee": [["M"]], + "Lenee's": null, + "Lenette": [["M"]], + "Lenette's": null, + "lengthener": [["M"]], + "lengthener's": null, + "lengthen": [["G", "R", "D"]], + "lengthening": null, + "lengthened": null, + "lengthily": null, + "lengthiness": [["M", "S"]], + "lengthiness's": null, + "lengthinesses": null, + "length": [["M", "N", "Y", "X"]], + "length's": null, + "lengthly": null, + "lengthens": null, + "lengths": null, + "lengthwise": null, + "lengthy": [["T", "R", "P"]], + "lengthiest": null, + "lengthier": null, + "lenience": [["S"]], + "leniences": null, + "leniency": [["M", "S"]], + "leniency's": null, + "leniencies": null, + "lenient": [["S", "Y"]], + "lenients": null, + "leniently": null, + "Leningrad": [["M"]], + "Leningrad's": null, + "Leninism": [["M"]], + "Leninism's": null, + "Leninist": null, + "Lenin": [["M"]], + "Lenin's": null, + "lenitive": [["S"]], + "lenitives": null, + "Lenka": [["M"]], + "Lenka's": null, + "Len": [["M"]], + "Len's": null, + "Le": [["N", "M"]], + "Lion": [["M"]], + "Le's": null, + "Lenna": [["M"]], + "Lenna's": null, + "Lennard": [["M"]], + "Lennard's": null, + "Lennie": [["M"]], + "Lennie's": null, + "Lennon": [["M"]], + "Lennon's": null, + "Lenny": [["M"]], + "Lenny's": null, + "Lenoir": [["M"]], + "Lenoir's": null, + "Leno": [["M"]], + "Leno's": null, + "Lenora": [["M"]], + "Lenora's": null, + "Lenore": [["M"]], + "Lenore's": null, + "lens": [["S", "R", "D", "M", "J", "G", "Z"]], + "lenses": null, + "lenser": null, + "lensed": null, + "lens's": null, + "lensings": null, + "lensing": null, + "lensers": null, + "lent": [["A"]], + "relent": [["S", "D", "G"]], + "lenticular": null, + "lentil": [["S", "M"]], + "lentils": null, + "lentil's": null, + "lento": [["S"]], + "lentos": null, + "Lent": [["S", "M", "N"]], + "Lents": null, + "Lent's": null, + "Lenten": null, + "Leodora": [["M"]], + "Leodora's": null, + "Leoine": [["M"]], + "Leoine's": null, + "Leola": [["M"]], + "Leola's": null, + "Leoline": [["M"]], + "Leoline's": null, + "Leo": [["M", "S"]], + "Leo's": null, + "Leos": null, + "Leona": [["M"]], + "Leona's": null, + "Leonanie": [["M"]], + "Leonanie's": null, + "Leonard": [["M"]], + "Leonard's": null, + "Leonardo": [["M"]], + "Leonardo's": null, + "Leoncavallo": [["M"]], + "Leoncavallo's": null, + "Leonelle": [["M"]], + "Leonelle's": null, + "Leonel": [["M"]], + "Leonel's": null, + "Leone": [["M"]], + "Leone's": null, + "Leonerd": [["M"]], + "Leonerd's": null, + "Leonhard": [["M"]], + "Leonhard's": null, + "Leonidas": [["M"]], + "Leonidas's": null, + "Leonid": [["M"]], + "Leonid's": null, + "Leonie": [["M"]], + "Leonie's": null, + "leonine": null, + "Leon": [["M"]], + "Leon's": null, + "Leonora": [["M"]], + "Leonora's": null, + "Leonore": [["M"]], + "Leonore's": null, + "Leonor": [["M"]], + "Leonor's": null, + "Leontine": [["M"]], + "Leontine's": null, + "Leontyne": [["M"]], + "Leontyne's": null, + "leopardess": [["S", "M"]], + "leopardesses": null, + "leopardess's": null, + "leopard": [["M", "S"]], + "leopard's": null, + "leopards": null, + "leopardskin": null, + "Leopold": [["M"]], + "Leopold's": null, + "Leopoldo": [["M"]], + "Leopoldo's": null, + "Leopoldville": [["M"]], + "Leopoldville's": null, + "Leora": [["M"]], + "Leora's": null, + "leotard": [["M", "S"]], + "leotard's": null, + "leotards": null, + "leper": [["S", "M"]], + "lepers": null, + "leper's": null, + "Lepidus": [["M"]], + "Lepidus's": null, + "Lepke": [["M"]], + "Lepke's": null, + "leprechaun": [["S", "M"]], + "leprechauns": null, + "leprechaun's": null, + "leprosy": [["M", "S"]], + "leprosy's": null, + "leprosies": null, + "leprous": null, + "lepta": null, + "lepton": [["S", "M"]], + "leptons": null, + "lepton's": null, + "Lepus": [["M"]], + "Lepus's": null, + "Lerner": [["M"]], + "Lerner's": null, + "Leroi": [["M"]], + "Leroi's": null, + "Leroy": [["M"]], + "Leroy's": null, + "Lesa": [["M"]], + "Lesa's": null, + "lesbianism": [["M", "S"]], + "lesbianism's": null, + "lesbianisms": null, + "lesbian": [["M", "S"]], + "lesbian's": null, + "lesbians": null, + "Leshia": [["M"]], + "Leshia's": null, + "lesion": [["D", "M", "S", "G"]], + "lesioned": null, + "lesion's": null, + "lesions": null, + "lesioning": null, + "Lesley": [["M"]], + "Lesley's": null, + "Leslie": [["M"]], + "Leslie's": null, + "Lesli": [["M"]], + "Lesli's": null, + "Lesly": [["M"]], + "Lesly's": null, + "Lesotho": [["M"]], + "Lesotho's": null, + "lessee": [["M", "S"]], + "lessee's": null, + "lessees": null, + "lessen": [["G", "D", "S"]], + "lessening": null, + "lessened": null, + "lessens": null, + "Lesseps": [["M"]], + "Lesseps's": null, + "lesser": null, + "lesses": null, + "Lessie": [["M"]], + "Lessie's": null, + "lessing": null, + "lesson": [["D", "M", "S", "G"]], + "lessoned": null, + "lesson's": null, + "lessons": null, + "lessoning": null, + "lessor": [["M", "S"]], + "lessor's": null, + "lessors": null, + "less": [["U"]], + "unless": null, + "Lester": [["M"]], + "Lester's": null, + "lest": [["R"]], + "lester": null, + "Les": [["Y"]], + "Lesya": [["M"]], + "Lesya's": null, + "Leta": [["M"]], + "Leta's": null, + "letdown": [["S", "M"]], + "letdowns": null, + "letdown's": null, + "lethality": [["M"]], + "lethality's": null, + "lethal": [["Y", "S"]], + "lethally": null, + "lethals": null, + "Letha": [["M"]], + "Letha's": null, + "lethargic": null, + "lethargically": null, + "lethargy": [["M", "S"]], + "lethargy's": null, + "lethargies": null, + "Lethe": [["M"]], + "Lethe's": null, + "Lethia": [["M"]], + "Lethia's": null, + "Leticia": [["M"]], + "Leticia's": null, + "Letisha": [["M"]], + "Letisha's": null, + "let": [["I", "S", "M"]], + "inlet": null, + "inlets": null, + "inlet's": null, + "lets": null, + "let's": null, + "Letitia": [["M"]], + "Letitia's": null, + "Letizia": [["M"]], + "Letizia's": null, + "Letta": [["M"]], + "Letta's": null, + "letterbox": [["S"]], + "letterboxes": null, + "lettered": [["U"]], + "unlettered": null, + "letterer": [["M"]], + "letterer's": null, + "letterhead": [["S", "M"]], + "letterheads": null, + "letterhead's": null, + "lettering": [["M"]], + "lettering's": null, + "letter": [["J", "S", "Z", "G", "R", "D", "M"]], + "letterings": null, + "letters": null, + "letterers": null, + "letter's": null, + "letterman": [["M"]], + "letterman's": null, + "Letterman": [["M"]], + "Letterman's": null, + "lettermen": null, + "letterpress": [["M", "S"]], + "letterpress's": null, + "letterpresses": null, + "Lettie": [["M"]], + "Lettie's": null, + "Letti": [["M"]], + "Letti's": null, + "letting": [["S"]], + "lettings": null, + "lettuce": [["S", "M"]], + "lettuces": null, + "lettuce's": null, + "Letty": [["M"]], + "Letty's": null, + "letup": [["M", "S"]], + "letup's": null, + "letups": null, + "leukemia": [["S", "M"]], + "leukemias": null, + "leukemia's": null, + "leukemic": [["S"]], + "leukemics": null, + "leukocyte": [["M", "S"]], + "leukocyte's": null, + "leukocytes": null, + "Leupold": [["M"]], + "Leupold's": null, + "Levant": [["M"]], + "Levant's": null, + "leveeing": null, + "levee": [["S", "D", "M"]], + "levees": null, + "leveed": null, + "levee's": null, + "leveled": [["U"]], + "unleveled": null, + "leveler": [["M"]], + "leveler's": null, + "levelheadedness": [["S"]], + "levelheadednesses": null, + "levelheaded": [["P"]], + "leveling": [["U"]], + "unleveling": null, + "levelness": [["S", "M"]], + "levelnesses": null, + "levelness's": null, + "level": [["S", "T", "Z", "G", "R", "D", "Y", "P"]], + "levels": null, + "levelest": null, + "levelers": null, + "levelly": null, + "leverage": [["M", "G", "D", "S"]], + "leverage's": null, + "leveraging": null, + "leveraged": null, + "leverages": null, + "lever": [["S", "D", "M", "G"]], + "levers": null, + "levered": null, + "lever's": null, + "levering": null, + "Levesque": [["M"]], + "Levesque's": null, + "Levey": [["M"]], + "Levey's": null, + "Leviathan": null, + "leviathan": [["M", "S"]], + "leviathan's": null, + "leviathans": null, + "levier": [["M"]], + "levier's": null, + "Levi": [["M", "S"]], + "Levi's": null, + "Levis": null, + "Levine": [["M"]], + "Levine's": null, + "Levin": [["M"]], + "Levin's": null, + "levitate": [["X", "N", "G", "D", "S"]], + "levitations": null, + "levitation": [["M"]], + "levitating": null, + "levitated": null, + "levitates": null, + "levitation's": null, + "Leviticus": [["M"]], + "Leviticus's": null, + "Levitt": [["M"]], + "Levitt's": null, + "levity": [["M", "S"]], + "levity's": null, + "levities": null, + "Lev": [["M"]], + "Lev's": null, + "Levon": [["M"]], + "Levon's": null, + "Levy": [["M"]], + "Levy's": null, + "levy": [["S", "R", "D", "Z", "G"]], + "levies": null, + "levied": null, + "leviers": null, + "levying": null, + "lewdness": [["M", "S"]], + "lewdness's": null, + "lewdnesses": null, + "lewd": [["P", "Y", "R", "T"]], + "lewdly": null, + "lewder": null, + "lewdest": null, + "Lewellyn": [["M"]], + "Lewellyn's": null, + "Lewes": null, + "Lewie": [["M"]], + "Lewie's": null, + "Lewinsky": [["M"]], + "Lewinsky's": null, + "lewis": [["M"]], + "lewis's": null, + "Lewis": [["M"]], + "Lewis's": null, + "Lewiss": null, + "Lew": [["M"]], + "Lew's": null, + "lex": null, + "lexeme": [["M", "S"]], + "lexeme's": null, + "lexemes": null, + "lexical": [["Y"]], + "lexically": null, + "lexicographer": [["M", "S"]], + "lexicographer's": null, + "lexicographers": null, + "lexicographic": null, + "lexicographical": [["Y"]], + "lexicographically": null, + "lexicography": [["S", "M"]], + "lexicographies": null, + "lexicography's": null, + "lexicon": [["S", "M"]], + "lexicons": null, + "lexicon's": null, + "Lexie": [["M"]], + "Lexie's": null, + "Lexi": [["M", "S"]], + "Lexi's": null, + "Lexis": null, + "Lexine": [["M"]], + "Lexine's": null, + "Lexington": [["M"]], + "Lexington's": null, + "Lexus": [["M"]], + "Lexus's": null, + "Lexy": [["M"]], + "Lexy's": null, + "Leyden": [["M"]], + "Leyden's": null, + "Leyla": [["M"]], + "Leyla's": null, + "Lezley": [["M"]], + "Lezley's": null, + "Lezlie": [["M"]], + "Lezlie's": null, + "lg": null, + "Lhasa": [["S", "M"]], + "Lhasas": null, + "Lhasa's": null, + "Lhotse": [["M"]], + "Lhotse's": null, + "liability": [["S", "A", "M"]], + "liabilities": null, + "reliabilities": null, + "reliability": [["U", "M", "S"]], + "reliability's": null, + "liability's": null, + "liable": [["A", "P"]], + "reliable": [["U"]], + "reliableness": null, + "liableness": null, + "liaise": [["G", "S", "D"]], + "liaising": null, + "liaises": null, + "liaised": null, + "liaison": [["S", "M"]], + "liaisons": null, + "liaison's": null, + "Lia": [["M"]], + "Lia's": null, + "Liam": [["M"]], + "Liam's": null, + "Liana": [["M"]], + "Liana's": null, + "Liane": [["M"]], + "Liane's": null, + "Lian": [["M"]], + "Lian's": null, + "Lianna": [["M"]], + "Lianna's": null, + "Lianne": [["M"]], + "Lianne's": null, + "liar": [["M", "S"]], + "liar's": null, + "liars": null, + "libation": [["S", "M"]], + "libations": null, + "libation's": null, + "libbed": null, + "Libbey": [["M"]], + "Libbey's": null, + "Libbie": [["M"]], + "Libbie's": null, + "Libbi": [["M"]], + "Libbi's": null, + "libbing": null, + "Libby": [["M"]], + "Libby's": null, + "libeler": [["M"]], + "libeler's": null, + "libel": [["G", "M", "R", "D", "S", "Z"]], + "libeling": null, + "libel's": null, + "libeled": null, + "libels": null, + "libelers": null, + "libelous": [["Y"]], + "libelously": null, + "Liberace": [["M"]], + "Liberace's": null, + "liberalism": [["M", "S"]], + "liberalism's": null, + "liberalisms": null, + "liberality": [["M", "S"]], + "liberality's": null, + "liberalities": null, + "liberalization": [["S", "M"]], + "liberalizations": null, + "liberalization's": null, + "liberalized": [["U"]], + "unliberalized": null, + "liberalize": [["G", "Z", "S", "R", "D"]], + "liberalizing": null, + "liberalizers": null, + "liberalizes": null, + "liberalizer": [["M"]], + "liberalizer's": null, + "liberalness": [["M", "S"]], + "liberalness's": null, + "liberalnesses": null, + "liberal": [["Y", "S", "P"]], + "liberally": null, + "liberals": null, + "liberate": [["N", "G", "D", "S", "C", "X"]], + "liberation": [["M", "C"]], + "deliberation": null, + "liberating": null, + "deliberating": null, + "liberated": null, + "deliberated": null, + "liberates": null, + "deliberates": null, + "deliberations": null, + "liberations": null, + "liberationists": null, + "liberation's": null, + "deliberation's": null, + "liberator": [["S", "C", "M"]], + "liberators": null, + "deliberators": null, + "deliberator": null, + "deliberator's": null, + "liberator's": null, + "Liberia": [["M"]], + "Liberia's": null, + "Liberian": [["S"]], + "Liberians": null, + "libertarianism": [["M"]], + "libertarianism's": null, + "libertarian": [["M", "S"]], + "libertarian's": null, + "libertarians": null, + "libertine": [["M", "S"]], + "libertine's": null, + "libertines": null, + "liberty": [["M", "S"]], + "liberty's": null, + "liberties": null, + "libidinal": null, + "libidinousness": [["M"]], + "libidinousness's": null, + "libidinous": [["P", "Y"]], + "libidinously": null, + "libido": [["M", "S"]], + "libido's": null, + "libidos": null, + "Lib": [["M"]], + "Lib's": null, + "lib": [["M", "S"]], + "lib's": null, + "libs": null, + "librarian": [["M", "S"]], + "librarian's": null, + "librarians": null, + "library": [["M", "S"]], + "library's": null, + "libraries": null, + "Libra": [["S", "M"]], + "Libras": null, + "Libra's": null, + "libretoes": null, + "libretos": null, + "librettist": [["M", "S"]], + "librettist's": null, + "librettists": null, + "libretto": [["M", "S"]], + "libretto's": null, + "librettos": null, + "Libreville": [["M"]], + "Libreville's": null, + "Librium": [["M"]], + "Librium's": null, + "Libya": [["M"]], + "Libya's": null, + "Libyan": [["S"]], + "Libyans": null, + "lice": [["M"]], + "lice's": null, + "licensed": [["A", "U"]], + "relicensed": null, + "unlicensed": null, + "licensee": [["S", "M"]], + "licensees": null, + "licensee's": null, + "license": [["M", "G", "B", "R", "S", "D"]], + "license's": null, + "licensing": [["A"]], + "licensable": null, + "licenser": [["M"]], + "licenses": [["A"]], + "licenser's": null, + "relicenses": null, + "relicensing": null, + "licensor": [["M"]], + "licensor's": null, + "licentiate": [["M", "S"]], + "licentiate's": null, + "licentiates": null, + "licentiousness": [["M", "S"]], + "licentiousness's": null, + "licentiousnesses": null, + "licentious": [["P", "Y"]], + "licentiously": null, + "Licha": [["M"]], + "Licha's": null, + "lichee's": null, + "lichen": [["D", "M", "G", "S"]], + "lichened": null, + "lichen's": null, + "lichening": null, + "lichens": null, + "Lichtenstein": [["M"]], + "Lichtenstein's": null, + "Lichter": [["M"]], + "Lichter's": null, + "licit": [["Y"]], + "licitly": null, + "licked": [["U"]], + "unlicked": null, + "lickerish": null, + "licker": [["M"]], + "licker's": null, + "lick": [["G", "R", "D", "S", "J"]], + "licking": [["M"]], + "licks": null, + "lickings": null, + "licking's": null, + "licorice": [["S", "M"]], + "licorices": null, + "licorice's": null, + "Lida": [["M"]], + "Lida's": null, + "lidded": null, + "lidding": null, + "Lidia": [["M"]], + "Lidia's": null, + "lidless": null, + "lid": [["M", "S"]], + "lid's": null, + "lids": null, + "lido": [["M", "S"]], + "lido's": null, + "lidos": null, + "Lieberman": [["M"]], + "Lieberman's": null, + "Liebfraumilch": [["M"]], + "Liebfraumilch's": null, + "Liechtenstein": [["R", "M", "Z"]], + "Liechtensteiner": null, + "Liechtenstein's": null, + "Liechtensteiners": null, + "lied": [["M", "R"]], + "lied's": null, + "lieder": null, + "lie": [["D", "R", "S"]], + "lier": [["I", "M", "A"]], + "lies": [["A"]], + "Lief": [["M"]], + "Lief's": null, + "liefs": [["A"]], + "reliefs": null, + "lief": [["T", "S", "R"]], + "liefest": null, + "liefer": null, + "Liege": [["M"]], + "Liege's": null, + "liege": [["S", "R"]], + "lieges": null, + "lieger": null, + "Lie": [["M"]], + "Lie's": null, + "lien": [["S", "M"]], + "liens": null, + "lien's": null, + "inlier": null, + "inlier's": null, + "lier's": null, + "relier's": null, + "relier": null, + "relies": null, + "Liesa": [["M"]], + "Liesa's": null, + "lieu": [["S", "M"]], + "lieus": null, + "lieu's": null, + "lieut": null, + "lieutenancy": [["M", "S"]], + "lieutenancy's": null, + "lieutenancies": null, + "lieutenant": [["S", "M"]], + "lieutenants": null, + "lieutenant's": null, + "Lieut": [["M"]], + "Lieut's": null, + "lifeblood": [["S", "M"]], + "lifebloods": null, + "lifeblood's": null, + "lifeboat": [["S", "M"]], + "lifeboats": null, + "lifeboat's": null, + "lifebuoy": [["S"]], + "lifebuoys": null, + "lifeforms": null, + "lifeguard": [["M", "D", "S", "G"]], + "lifeguard's": null, + "lifeguarded": null, + "lifeguards": null, + "lifeguarding": null, + "lifelessness": [["S", "M"]], + "lifelessnesses": null, + "lifelessness's": null, + "lifeless": [["P", "Y"]], + "lifelessly": null, + "lifelikeness": [["M"]], + "lifelikeness's": null, + "lifelike": [["P"]], + "lifeline": [["S", "M"]], + "lifelines": null, + "lifeline's": null, + "lifelong": null, + "life": [["M", "Z", "R"]], + "life's": null, + "lifers": null, + "lifer": [["M"]], + "lifer's": null, + "lifesaver": [["S", "M"]], + "lifesavers": null, + "lifesaver's": null, + "lifesaving": [["S"]], + "lifesavings": null, + "lifespan": [["S"]], + "lifespans": null, + "lifestyle": [["S"]], + "lifestyles": null, + "lifetaking": null, + "lifetime": [["M", "S"]], + "lifetime's": null, + "lifetimes": null, + "lifework": [["M", "S"]], + "lifework's": null, + "lifeworks": null, + "LIFO": null, + "lifter": [["M"]], + "lifter's": null, + "lift": [["G", "Z", "M", "R", "D", "S"]], + "lifting": null, + "lifters": null, + "lift's": null, + "lifted": null, + "lifts": null, + "liftoff": [["M", "S"]], + "liftoff's": null, + "liftoffs": null, + "ligament": [["M", "S"]], + "ligament's": null, + "ligaments": null, + "ligand": [["M", "S"]], + "ligand's": null, + "ligands": null, + "ligate": [["X", "S", "D", "N", "G"]], + "ligations": null, + "ligates": null, + "ligated": null, + "ligation": [["M"]], + "ligating": null, + "ligation's": null, + "ligature": [["D", "S", "G", "M"]], + "ligatured": null, + "ligatures": null, + "ligaturing": null, + "ligature's": null, + "light": [["A", "D", "S", "C", "G"]], + "relight": null, + "relighted": null, + "relights": null, + "relighting": null, + "lighted": [["U"]], + "lights": null, + "delights": null, + "delight": null, + "delighting": null, + "lighting": [["M", "S"]], + "unlighted": null, + "lightener": [["M"]], + "lightener's": null, + "lightening": [["M"]], + "lightening's": null, + "lighten": [["Z", "G", "D", "R", "S"]], + "lighteners": null, + "lightened": null, + "lightens": null, + "lighter": [["C", "M"]], + "delighter": null, + "delighter's": null, + "lighter's": null, + "lightered": null, + "lightering": null, + "lighters": null, + "lightest": null, + "lightface": [["S", "D", "M"]], + "lightfaces": null, + "lightfaced": null, + "lightface's": null, + "lightheaded": null, + "lightheartedness": [["M", "S"]], + "lightheartedness's": null, + "lightheartednesses": null, + "lighthearted": [["P", "Y"]], + "lightheartedly": null, + "lighthouse": [["M", "S"]], + "lighthouse's": null, + "lighthouses": null, + "lighting's": null, + "lightings": null, + "lightly": null, + "lightness": [["M", "S"]], + "lightness's": null, + "lightnesses": null, + "lightning": [["S", "M", "D"]], + "lightnings": null, + "lightning's": null, + "lightninged": null, + "lightproof": null, + "light's": null, + "lightship": [["S", "M"]], + "lightships": null, + "lightship's": null, + "lightweight": [["S"]], + "lightweights": null, + "ligneous": null, + "lignite": [["M", "S"]], + "lignite's": null, + "lignites": null, + "lignum": null, + "likability": [["M", "S"]], + "likability's": null, + "likabilities": null, + "likableness": [["M", "S"]], + "likableness's": null, + "likablenesses": null, + "likable": [["P"]], + "likeability's": null, + "liked": [["E"]], + "disliked": null, + "likelihood": [["M", "S", "U"]], + "likelihood's": null, + "unlikelihood's": null, + "likelihoods": null, + "unlikelihoods": null, + "unlikelihood": null, + "likely": [["U", "P", "R", "T"]], + "unlikely": null, + "unlikeliness": [["S"]], + "unlikelier": null, + "likeliness": null, + "likelier": null, + "likeliest": null, + "likeness": [["M", "S", "U"]], + "likeness's": null, + "unlikeness's": null, + "likenesses": null, + "unlikenesses": null, + "unlikeness": null, + "liken": [["G", "S", "D"]], + "likening": null, + "likens": null, + "likened": null, + "liker": [["E"]], + "disliker": null, + "liker's": null, + "likes": [["E"]], + "dislikes": null, + "likest": null, + "like": [["U", "S", "P", "B", "Y"]], + "unlike": null, + "unlikes": null, + "unlikable": null, + "likewise": null, + "liking": [["S", "M"]], + "likings": null, + "liking's": null, + "lilac": [["M", "S"]], + "lilac's": null, + "lilacs": null, + "Lilah": [["M"]], + "Lilah's": null, + "Lila": [["S", "M"]], + "Lilas": null, + "Lila's": null, + "Lilia": [["M", "S"]], + "Lilia's": null, + "Lilias": null, + "Liliana": [["M"]], + "Liliana's": null, + "Liliane": [["M"]], + "Liliane's": null, + "Lilian": [["M"]], + "Lilian's": null, + "Lilith": [["M"]], + "Lilith's": null, + "Liliuokalani": [["M"]], + "Liliuokalani's": null, + "Lilla": [["M"]], + "Lilla's": null, + "Lille": [["M"]], + "Lille's": null, + "Lillian": [["M"]], + "Lillian's": null, + "Lillie": [["M"]], + "Lillie's": null, + "Lilli": [["M", "S"]], + "Lilli's": null, + "Lillis": null, + "lilliputian": [["S"]], + "lilliputians": null, + "Lilliputian": [["S", "M"]], + "Lilliputians": null, + "Lilliputian's": null, + "Lilliput": [["M"]], + "Lilliput's": null, + "Lilllie": [["M"]], + "Lilllie's": null, + "Lilly": [["M"]], + "Lilly's": null, + "Lil": [["M", "Y"]], + "Lil's": null, + "Lilongwe": [["M"]], + "Lilongwe's": null, + "lilting": [["Y", "P"]], + "liltingly": null, + "liltingness": null, + "lilt": [["M", "D", "S", "G"]], + "lilt's": null, + "lilted": null, + "lilts": null, + "Lilyan": [["M"]], + "Lilyan's": null, + "Lily": [["M"]], + "Lily's": null, + "lily": [["M", "S", "D"]], + "lily's": null, + "lilies": null, + "lilied": null, + "Lima": [["M"]], + "Lima's": null, + "Limbaugh": [["M"]], + "Limbaugh's": null, + "limbered": [["U"]], + "unlimbered": null, + "limberness": [["S", "M"]], + "limbernesses": null, + "limberness's": null, + "limber": [["R", "D", "Y", "T", "G", "P"]], + "limberer": null, + "limberly": null, + "limberest": null, + "limbering": null, + "limbers": [["U"]], + "unlimbers": null, + "limbic": null, + "limbless": null, + "Limbo": null, + "limbo": [["G", "D", "M", "S"]], + "limboing": null, + "limboed": null, + "limbo's": null, + "limbos": null, + "limb": [["S", "G", "Z", "R", "D", "M"]], + "limbs": null, + "limbing": null, + "limbed": null, + "limb's": null, + "Limburger": [["S", "M"]], + "Limburgers": null, + "Limburger's": null, + "limeade": [["S", "M"]], + "limeades": null, + "limeade's": null, + "lime": [["D", "S", "M", "G"]], + "limed": null, + "limes": null, + "lime's": null, + "liming": null, + "limekiln": [["M"]], + "limekiln's": null, + "limelight": [["D", "M", "G", "S"]], + "limelighted": null, + "limelight's": null, + "limelighting": null, + "limelights": null, + "limerick": [["S", "M"]], + "limericks": null, + "limerick's": null, + "limestone": [["S", "M"]], + "limestones": null, + "limestone's": null, + "limitability": null, + "limitably": null, + "limitation": [["M", "C", "S"]], + "limitation's": null, + "delimitation's": null, + "delimitation": null, + "delimitations": null, + "limitations": null, + "limit": [["C", "S", "Z", "G", "R", "D"]], + "delimit": null, + "delimits": null, + "delimiters": null, + "delimiting": null, + "delimiter": null, + "delimited": null, + "limits": null, + "limiters": null, + "limiting": [["S"]], + "limiter": [["M"]], + "limited": [["P", "S", "Y"]], + "limitedly": [["U"]], + "unlimitedly": null, + "limitedness": [["M"]], + "limitedness's": null, + "limiteds": null, + "limiter's": null, + "limitings": null, + "limitlessness": [["S", "M"]], + "limitlessnesses": null, + "limitlessness's": null, + "limitless": [["P", "Y"]], + "limitlessly": null, + "limit's": null, + "limn": [["G", "S", "D"]], + "limning": null, + "limns": null, + "limned": null, + "Limoges": [["M"]], + "Limoges's": null, + "limo": [["S"]], + "limos": null, + "limousine": [["S", "M"]], + "limousines": null, + "limousine's": null, + "limper": [["M"]], + "limper's": null, + "limpet": [["S", "M"]], + "limpets": null, + "limpet's": null, + "limpidity": [["M", "S"]], + "limpidity's": null, + "limpidities": null, + "limpidness": [["S", "M"]], + "limpidnesses": null, + "limpidness's": null, + "limpid": [["Y", "P"]], + "limpidly": null, + "limpness": [["M", "S"]], + "limpness's": null, + "limpnesses": null, + "Limpopo": [["M"]], + "Limpopo's": null, + "limp": [["S", "G", "T", "P", "Y", "R", "D"]], + "limps": null, + "limping": null, + "limpest": null, + "limply": null, + "limped": null, + "Li": [["M", "Y"]], + "Li's": null, + "limy": [["T", "R"]], + "limiest": null, + "limier": null, + "linage": [["M", "S"]], + "linage's": null, + "linages": null, + "Lina": [["M"]], + "Lina's": null, + "linchpin": [["M", "S"]], + "linchpin's": null, + "linchpins": null, + "Linc": [["M"]], + "Linc's": null, + "Lincoln": [["S", "M"]], + "Lincolns": null, + "Lincoln's": null, + "Linda": [["M"]], + "Linda's": null, + "Lindbergh": [["M"]], + "Lindbergh's": null, + "Lindberg": [["M"]], + "Lindberg's": null, + "linden": [["M", "S"]], + "linden's": null, + "lindens": null, + "Lindholm": [["M"]], + "Lindholm's": null, + "Lindie": [["M"]], + "Lindie's": null, + "Lindi": [["M"]], + "Lindi's": null, + "Lind": [["M"]], + "Lind's": null, + "Lindon": [["M"]], + "Lindon's": null, + "Lindquist": [["M"]], + "Lindquist's": null, + "Lindsay": [["M"]], + "Lindsay's": null, + "Lindsey": [["M"]], + "Lindsey's": null, + "Lindstrom": [["M"]], + "Lindstrom's": null, + "Lindsy": [["M"]], + "Lindsy's": null, + "Lindy": [["M"]], + "Lindy's": null, + "line": [["A", "G", "D", "S"]], + "reline": null, + "relining": null, + "relined": null, + "relines": null, + "lining": [["S", "M"]], + "lined": [["U"]], + "lines": null, + "lineage": [["S", "M"]], + "lineages": null, + "lineage's": null, + "lineal": [["Y"]], + "lineally": null, + "Linea": [["M"]], + "Linea's": null, + "lineament": [["M", "S"]], + "lineament's": null, + "lineaments": null, + "linearity": [["M", "S"]], + "linearity's": null, + "linearities": null, + "linearize": [["S", "D", "G", "N", "B"]], + "linearizes": null, + "linearized": null, + "linearizing": null, + "linearizion": null, + "linearizable": null, + "linear": [["Y"]], + "linearly": null, + "linebacker": [["S", "M"]], + "linebackers": null, + "linebacker's": null, + "unlined": null, + "linefeed": null, + "Linell": [["M"]], + "Linell's": null, + "lineman": [["M"]], + "lineman's": null, + "linemen": null, + "linen": [["S", "M"]], + "linens": null, + "linen's": null, + "liner": [["S", "M"]], + "liners": null, + "liner's": null, + "line's": null, + "linesman": [["M"]], + "linesman's": null, + "linesmen": null, + "Linet": [["M"]], + "Linet's": null, + "Linette": [["M"]], + "Linette's": null, + "lineup": [["S"]], + "lineups": null, + "lingerer": [["M"]], + "lingerer's": null, + "lingerie": [["S", "M"]], + "lingeries": null, + "lingerie's": null, + "lingering": [["Y"]], + "lingeringly": null, + "linger": [["Z", "G", "J", "R", "D"]], + "lingerers": null, + "lingerings": null, + "lingered": null, + "lingoes": null, + "lingo": [["M"]], + "lingo's": null, + "lingual": [["S", "Y"]], + "linguals": null, + "lingually": null, + "lingua": [["M"]], + "lingua's": null, + "linguine": null, + "linguini's": null, + "linguistically": null, + "linguistic": [["S"]], + "linguistics": [["M"]], + "linguistics's": null, + "linguist": [["S", "M"]], + "linguists": null, + "linguist's": null, + "ling": [["Z", "R"]], + "lingers": null, + "liniment": [["M", "S"]], + "liniment's": null, + "liniments": null, + "linings": null, + "lining's": null, + "linkable": null, + "linkage": [["S", "M"]], + "linkages": null, + "linkage's": null, + "linked": [["A"]], + "relinked": null, + "linker": [["S"]], + "linkers": null, + "linking": [["S"]], + "linkings": null, + "Link": [["M"]], + "Link's": null, + "link's": null, + "linkup": [["S"]], + "linkups": null, + "link": [["U", "S", "G", "D"]], + "unlink": null, + "unlinks": null, + "unlinking": null, + "unlinked": null, + "links": null, + "Lin": [["M"]], + "Lin's": null, + "Linnaeus": [["M"]], + "Linnaeus's": null, + "Linnea": [["M"]], + "Linnea's": null, + "Linnell": [["M"]], + "Linnell's": null, + "Linnet": [["M"]], + "Linnet's": null, + "linnet": [["S", "M"]], + "linnets": null, + "linnet's": null, + "Linnie": [["M"]], + "Linnie's": null, + "Linn": [["M"]], + "Linn's": null, + "Linoel": [["M"]], + "Linoel's": null, + "linoleum": [["S", "M"]], + "linoleums": null, + "linoleum's": null, + "lino": [["M"]], + "lino's": null, + "Linotype": [["M"]], + "Linotype's": null, + "linseed": [["S", "M"]], + "linseeds": null, + "linseed's": null, + "lintel": [["S", "M"]], + "lintels": null, + "lintel's": null, + "linter": [["M"]], + "linter's": null, + "Linton": [["M"]], + "Linton's": null, + "lint": [["S", "M", "R"]], + "lints": null, + "lint's": null, + "linty": [["R", "S", "T"]], + "lintier": null, + "linties": null, + "lintiest": null, + "Linus": [["M"]], + "Linus's": null, + "Linux": [["M"]], + "Linux's": null, + "Linwood": [["M"]], + "Linwood's": null, + "Linzy": [["M"]], + "Linzy's": null, + "Lionello": [["M"]], + "Lionello's": null, + "Lionel": [["M"]], + "Lionel's": null, + "lioness": [["S", "M"]], + "lionesses": null, + "lioness's": null, + "lionhearted": null, + "lionization": [["S", "M"]], + "lionizations": null, + "lionization's": null, + "lionizer": [["M"]], + "lionizer's": null, + "lionize": [["Z", "R", "S", "D", "G"]], + "lionizers": null, + "lionizes": null, + "lionized": null, + "lionizing": null, + "Lion's": null, + "lion": [["M", "S"]], + "lion's": null, + "lions": null, + "lipase": [["M"]], + "lipase's": null, + "lipid": [["M", "S"]], + "lipid's": null, + "lipids": null, + "lip": [["M", "S"]], + "lip's": null, + "lips": null, + "liposuction": [["S"]], + "liposuctions": null, + "lipped": null, + "lipper": null, + "Lippi": [["M"]], + "Lippi's": null, + "lipping": null, + "Lippmann": [["M"]], + "Lippmann's": null, + "lippy": [["T", "R"]], + "lippiest": null, + "lippier": null, + "lipread": [["G", "S", "R", "J"]], + "lipreading": null, + "lipreads": null, + "lipreader": null, + "lipreadings": null, + "Lipschitz": [["M"]], + "Lipschitz's": null, + "Lipscomb": [["M"]], + "Lipscomb's": null, + "lipstick": [["M", "D", "S", "G"]], + "lipstick's": null, + "lipsticked": null, + "lipsticks": null, + "lipsticking": null, + "Lipton": [["M"]], + "Lipton's": null, + "liq": null, + "liquefaction": [["S", "M"]], + "liquefactions": null, + "liquefaction's": null, + "liquefier": [["M"]], + "liquefier's": null, + "liquefy": [["D", "R", "S", "G", "Z"]], + "liquefied": null, + "liquefies": null, + "liquefying": null, + "liquefiers": null, + "liqueur": [["D", "M", "S", "G"]], + "liqueured": null, + "liqueur's": null, + "liqueurs": null, + "liqueuring": null, + "liquidate": [["G", "N", "X", "S", "D"]], + "liquidating": null, + "liquidation": [["M"]], + "liquidations": null, + "liquidates": null, + "liquidated": null, + "liquidation's": null, + "liquidator": [["S", "M"]], + "liquidators": null, + "liquidator's": null, + "liquidity": [["S", "M"]], + "liquidities": null, + "liquidity's": null, + "liquidizer": [["M"]], + "liquidizer's": null, + "liquidize": [["Z", "G", "S", "R", "D"]], + "liquidizers": null, + "liquidizing": null, + "liquidizes": null, + "liquidized": null, + "liquidness": [["M"]], + "liquidness's": null, + "liquid": [["S", "P", "M", "Y"]], + "liquids": null, + "liquid's": null, + "liquidly": null, + "liquorice": [["S", "M"]], + "liquorices": null, + "liquorice's": null, + "liquorish": null, + "liquor": [["S", "D", "M", "G"]], + "liquors": null, + "liquored": null, + "liquor's": null, + "liquoring": null, + "lira": [["M"]], + "lira's": null, + "Lira": [["M"]], + "Lira's": null, + "lire": null, + "Lisabeth": [["M"]], + "Lisabeth's": null, + "Lisa": [["M"]], + "Lisa's": null, + "Lisbeth": [["M"]], + "Lisbeth's": null, + "Lisbon": [["M"]], + "Lisbon's": null, + "Lise": [["M"]], + "Lise's": null, + "Lisetta": [["M"]], + "Lisetta's": null, + "Lisette": [["M"]], + "Lisette's": null, + "Lisha": [["M"]], + "Lisha's": null, + "Lishe": [["M"]], + "Lishe's": null, + "Lisle": [["M"]], + "Lisle's": null, + "lisle": [["S", "M"]], + "lisles": null, + "lisle's": null, + "lisper": [["M"]], + "lisper's": null, + "lisp": [["M", "R", "D", "G", "Z", "S"]], + "lisp's": null, + "lisped": null, + "lisping": null, + "lispers": null, + "lisps": null, + "Lissajous": [["M"]], + "Lissajous's": null, + "Lissa": [["M"]], + "Lissa's": null, + "Lissie": [["M"]], + "Lissie's": null, + "Lissi": [["M"]], + "Lissi's": null, + "Liss": [["M"]], + "Liss's": null, + "lissomeness": [["M"]], + "lissomeness's": null, + "lissome": [["P"]], + "lissomness": [["M"]], + "lissomness's": null, + "Lissy": [["M"]], + "Lissy's": null, + "listed": [["U"]], + "unlisted": null, + "listener": [["M"]], + "listener's": null, + "listen": [["Z", "G", "R", "D"]], + "listeners": null, + "listening": null, + "listened": null, + "Listerine": [["M"]], + "Listerine's": null, + "lister": [["M"]], + "lister's": null, + "Lister": [["M"]], + "Lister's": null, + "listing": [["M"]], + "listing's": null, + "list": [["J", "M", "R", "D", "N", "G", "Z", "X", "S"]], + "listings": null, + "list's": null, + "listers": null, + "listens": null, + "lists": null, + "listlessness": [["S", "M"]], + "listlessnesses": null, + "listlessness's": null, + "listless": [["P", "Y"]], + "listlessly": null, + "Liston": [["M"]], + "Liston's": null, + "Liszt": [["M"]], + "Liszt's": null, + "Lita": [["M"]], + "Lita's": null, + "litany": [["M", "S"]], + "litany's": null, + "litanies": null, + "litchi": [["S", "M"]], + "litchis": null, + "litchi's": null, + "literacy": [["M", "S"]], + "literacy's": null, + "literacies": null, + "literalism": [["M"]], + "literalism's": null, + "literalistic": null, + "literalness": [["M", "S"]], + "literalness's": null, + "literalnesses": null, + "literal": [["P", "Y", "S"]], + "literally": null, + "literals": null, + "literariness": [["S", "M"]], + "literarinesses": null, + "literariness's": null, + "literary": [["P"]], + "literate": [["Y", "N", "S", "P"]], + "literately": null, + "literation": [["M"]], + "literates": null, + "literateness": null, + "literati": null, + "literation's": null, + "literature": [["S", "M"]], + "literatures": null, + "literature's": null, + "liter": [["M"]], + "liter's": null, + "lite": [["S"]], + "lites": null, + "litheness": [["S", "M"]], + "lithenesses": null, + "litheness's": null, + "lithe": [["P", "R", "T", "Y"]], + "lither": null, + "lithest": null, + "lithely": null, + "lithesome": null, + "lithium": [["S", "M"]], + "lithiums": null, + "lithium's": null, + "lithograph": [["D", "R", "M", "G", "Z"]], + "lithographed": null, + "lithographer": [["M"]], + "lithograph's": null, + "lithographing": null, + "lithographers": null, + "lithographer's": null, + "lithographic": null, + "lithographically": null, + "lithographs": null, + "lithography": [["M", "S"]], + "lithography's": null, + "lithographies": null, + "lithology": [["M"]], + "lithology's": null, + "lithosphere": [["M", "S"]], + "lithosphere's": null, + "lithospheres": null, + "lithospheric": null, + "Lithuania": [["M"]], + "Lithuania's": null, + "Lithuanian": [["S"]], + "Lithuanians": null, + "litigant": [["M", "S"]], + "litigant's": null, + "litigants": null, + "litigate": [["N", "G", "X", "D", "S"]], + "litigation": [["M"]], + "litigating": null, + "litigations": null, + "litigated": null, + "litigates": null, + "litigation's": null, + "litigator": [["S", "M"]], + "litigators": null, + "litigator's": null, + "litigiousness": [["M", "S"]], + "litigiousness's": null, + "litigiousnesses": null, + "litigious": [["P", "Y"]], + "litigiously": null, + "litmus": [["S", "M"]], + "litmuses": null, + "litmus's": null, + "litotes": [["M"]], + "litotes's": null, + "lit": [["R", "Z", "S"]], + "liters": null, + "lits": null, + "litt�rateur": [["S"]], + "litt�rateurs": null, + "litterbug": [["S", "M"]], + "litterbugs": null, + "litterbug's": null, + "litter": [["S", "Z", "G", "R", "D", "M"]], + "litters": null, + "litterers": null, + "littering": null, + "litterer": null, + "littered": null, + "litter's": null, + "Little": [["M"]], + "Little's": null, + "littleneck": [["M"]], + "littleneck's": null, + "littleness": [["S", "M"]], + "littlenesses": null, + "littleness's": null, + "little": [["R", "S", "P", "T"]], + "littler": null, + "littles": null, + "littlest": null, + "Littleton": [["M"]], + "Littleton's": null, + "Litton": [["M"]], + "Litton's": null, + "littoral": [["S"]], + "littorals": null, + "liturgical": [["Y"]], + "liturgically": null, + "liturgic": [["S"]], + "liturgics": [["M"]], + "liturgics's": null, + "liturgist": [["M", "S"]], + "liturgist's": null, + "liturgists": null, + "liturgy": [["S", "M"]], + "liturgies": null, + "liturgy's": null, + "Liuka": [["M"]], + "Liuka's": null, + "livability": [["M", "S"]], + "livability's": null, + "livabilities": null, + "livableness": [["M"]], + "livableness's": null, + "livable": [["U"]], + "unlivable": null, + "livably": null, + "Liva": [["M"]], + "Liva's": null, + "lived": [["A"]], + "relived": null, + "livelihood": [["S", "M"]], + "livelihoods": null, + "livelihood's": null, + "liveliness": [["S", "M"]], + "livelinesses": null, + "liveliness's": null, + "livelong": [["S"]], + "livelongs": null, + "lively": [["R", "T", "P"]], + "livelier": null, + "liveliest": null, + "liveness": [["M"]], + "liveness's": null, + "liven": [["S", "D", "G"]], + "livens": null, + "livened": null, + "livening": null, + "liver": [["C", "S", "G", "D"]], + "livers": null, + "livering": null, + "livered": null, + "liveried": null, + "liverish": null, + "Livermore": [["M"]], + "Livermore's": null, + "Liverpool": [["M"]], + "Liverpool's": null, + "Liverpudlian": [["M", "S"]], + "Liverpudlian's": null, + "Liverpudlians": null, + "liver's": null, + "liverwort": [["S", "M"]], + "liverworts": null, + "liverwort's": null, + "liverwurst": [["S", "M"]], + "liverwursts": null, + "liverwurst's": null, + "livery": [["C", "M", "S"]], + "deliveries": null, + "livery's": null, + "liveries": null, + "liveryman": [["M", "C"]], + "liveryman's": null, + "deliveryman's": null, + "deliveryman": null, + "liverymen": [["C"]], + "lives": [["A"]], + "relives": null, + "lives's": null, + "livestock": [["S", "M"]], + "livestocks": null, + "livestock's": null, + "live": [["Y", "H", "Z", "T", "G", "J", "D", "S", "R", "P", "B"]], + "liveth": null, + "livest": null, + "living": [["Y", "P"]], + "livings": null, + "Livia": [["M"]], + "Livia's": null, + "lividness": [["M"]], + "lividness's": null, + "livid": [["Y", "P"]], + "lividly": null, + "livingness": [["M"]], + "livingness's": null, + "Livingstone": [["M"]], + "Livingstone's": null, + "Livingston": [["M"]], + "Livingston's": null, + "livingly": null, + "Liv": [["M"]], + "Liv's": null, + "Livonia": [["M"]], + "Livonia's": null, + "Livvie": [["M"]], + "Livvie's": null, + "Livvy": [["M"]], + "Livvy's": null, + "Livvyy": [["M"]], + "Livvyy's": null, + "Livy": [["M"]], + "Livy's": null, + "Lizabeth": [["M"]], + "Lizabeth's": null, + "Liza": [["M"]], + "Liza's": null, + "lizard": [["M", "S"]], + "lizard's": null, + "lizards": null, + "Lizbeth": [["M"]], + "Lizbeth's": null, + "Lizette": [["M"]], + "Lizette's": null, + "Liz": [["M"]], + "Liz's": null, + "Lizzie": [["M"]], + "Lizzie's": null, + "Lizzy": [["M"]], + "Lizzy's": null, + "l": [["J", "G", "V", "X", "T"]], + "lings": null, + "Ljubljana": [["M"]], + "Ljubljana's": null, + "LL": null, + "llama": [["S", "M"]], + "llamas": null, + "llama's": null, + "llano": [["S", "M"]], + "llanos": null, + "llano's": null, + "LLB": null, + "ll": [["C"]], + "LLD": null, + "Llewellyn": [["M"]], + "Llewellyn's": null, + "Lloyd": [["M"]], + "Lloyd's": null, + "Llywellyn": [["M"]], + "Llywellyn's": null, + "LNG": null, + "lo": null, + "loadable": null, + "loaded": [["A"]], + "reloaded": null, + "loader": [["M", "U"]], + "loader's": null, + "unloader's": null, + "unloader": null, + "loading": [["M", "S"]], + "loading's": null, + "loadings": null, + "load's": [["A"]], + "reload's": null, + "loads": [["A"]], + "reloads": null, + "loadstar's": null, + "loadstone's": null, + "load": [["S", "U", "R", "D", "Z", "G"]], + "unloads": null, + "unload": null, + "unloaded": null, + "unloaders": null, + "unloading": null, + "loaders": null, + "loafer": [["M"]], + "loafer's": null, + "Loafer": [["S"]], + "Loafers": null, + "loaf": [["S", "R", "D", "M", "G", "Z"]], + "loafs": null, + "loafed": null, + "loaf's": null, + "loafing": null, + "loafers": null, + "loam": [["S", "M", "D", "G"]], + "loams": null, + "loam's": null, + "loamed": null, + "loaming": null, + "loamy": [["R", "T"]], + "loamier": null, + "loamiest": null, + "loaner": [["M"]], + "loaner's": null, + "loaning": [["M"]], + "loaning's": null, + "loan": [["S", "G", "Z", "R", "D", "M", "B"]], + "loans": null, + "loaners": null, + "loaned": null, + "loan's": null, + "loanable": null, + "loansharking": [["S"]], + "loansharkings": null, + "loanword": [["S"]], + "loanwords": null, + "loathe": null, + "loather": [["M"]], + "loather's": null, + "loathing": [["M"]], + "loathing's": null, + "loath": [["J", "P", "S", "R", "D", "Y", "Z", "G"]], + "loathings": null, + "loathness": [["M"]], + "loathes": null, + "loathed": null, + "loathly": null, + "loathers": null, + "loathness's": null, + "loathsomeness": [["M", "S"]], + "loathsomeness's": null, + "loathsomenesses": null, + "loathsome": [["P", "Y"]], + "loathsomely": null, + "loaves": [["M"]], + "loaves's": null, + "Lobachevsky": [["M"]], + "Lobachevsky's": null, + "lobar": null, + "lobbed": null, + "lobber": [["M", "S"]], + "lobber's": null, + "lobbers": null, + "lobbing": null, + "lobby": [["G", "S", "D", "M"]], + "lobbying": null, + "lobbies": null, + "lobbied": null, + "lobby's": null, + "lobbyist": [["M", "S"]], + "lobbyist's": null, + "lobbyists": null, + "lobe": [["S", "M"]], + "lobes": null, + "lobe's": null, + "lob": [["M", "D", "S", "G"]], + "lob's": null, + "lobed": null, + "lobs": null, + "lobing": null, + "lobotomist": null, + "lobotomize": [["G", "D", "S"]], + "lobotomizing": null, + "lobotomized": null, + "lobotomizes": null, + "lobotomy": [["M", "S"]], + "lobotomy's": null, + "lobotomies": null, + "lobster": [["M", "D", "G", "S"]], + "lobster's": null, + "lobstered": null, + "lobstering": null, + "lobsters": null, + "lobularity": null, + "lobular": [["Y"]], + "lobularly": null, + "lobule": [["S", "M"]], + "lobules": null, + "lobule's": null, + "locale": [["M", "S"]], + "locale's": null, + "locales": null, + "localisms": null, + "locality": [["M", "S"]], + "locality's": null, + "localities": null, + "localization": [["M", "S"]], + "localization's": null, + "localizations": null, + "localized": [["U"]], + "unlocalized": null, + "localizer": [["M"]], + "localizer's": null, + "localizes": [["U"]], + "unlocalizes": null, + "localize": [["Z", "G", "D", "R", "S"]], + "localizers": null, + "localizing": null, + "local": [["S", "G", "D", "Y"]], + "locals": null, + "localing": null, + "localed": null, + "locally": null, + "locatable": null, + "locate": [["A", "X", "E", "S", "D", "G", "N"]], + "relocate": [["B"]], + "relocations": null, + "relocates": null, + "relocated": null, + "relocating": null, + "relocation": null, + "locations": null, + "dislocations": null, + "dislocate": null, + "dislocates": null, + "dislocated": null, + "dislocating": null, + "dislocation": null, + "locates": null, + "located": null, + "locating": null, + "location": [["E", "M", "A"]], + "locater": [["M"]], + "locater's": null, + "locational": [["Y"]], + "locationally": null, + "dislocation's": null, + "location's": null, + "relocation's": null, + "locative": [["S"]], + "locatives": null, + "locator's": null, + "Lochinvar": [["M"]], + "Lochinvar's": null, + "loch": [["M"]], + "loch's": null, + "lochs": null, + "loci": [["M"]], + "loci's": null, + "lockable": null, + "Lockean": [["M"]], + "Lockean's": null, + "locked": [["A"]], + "relocked": null, + "Locke": [["M"]], + "Locke's": null, + "locker": [["S", "M"]], + "lockers": null, + "locker's": null, + "locket": [["S", "M"]], + "lockets": null, + "locket's": null, + "Lockhart": [["M"]], + "Lockhart's": null, + "Lockheed": [["M"]], + "Lockheed's": null, + "Lockian": [["M"]], + "Lockian's": null, + "locking": [["S"]], + "lockings": null, + "lockjaw": [["S", "M"]], + "lockjaws": null, + "lockjaw's": null, + "Lock": [["M"]], + "Lock's": null, + "locknut": [["M"]], + "locknut's": null, + "lockout": [["M", "S"]], + "lockout's": null, + "lockouts": null, + "lock's": null, + "locksmithing": [["M"]], + "locksmithing's": null, + "locksmith": [["M", "G"]], + "locksmith's": null, + "locksmiths": null, + "lockstep": [["S"]], + "locksteps": null, + "lock": [["U", "G", "S", "D"]], + "unlock": null, + "unlocking": null, + "unlocks": null, + "unlocked": null, + "locks": null, + "lockup": [["M", "S"]], + "lockup's": null, + "lockups": null, + "Lockwood": [["M"]], + "Lockwood's": null, + "locomotion": [["S", "M"]], + "locomotions": null, + "locomotion's": null, + "locomotive": [["Y", "M", "S"]], + "locomotively": null, + "locomotive's": null, + "locomotives": null, + "locomotor": null, + "locomotory": null, + "loco": [["S", "D", "M", "G"]], + "locos": null, + "locoed": null, + "loco's": null, + "locoing": null, + "locoweed": [["M", "S"]], + "locoweed's": null, + "locoweeds": null, + "locus": [["M"]], + "locus's": null, + "locust": [["S", "M"]], + "locusts": null, + "locust's": null, + "locution": [["M", "S"]], + "locution's": null, + "locutions": null, + "lode": [["S", "M"]], + "lodes": null, + "lode's": null, + "lodestar": [["M", "S"]], + "lodestar's": null, + "lodestars": null, + "lodestone": [["M", "S"]], + "lodestone's": null, + "lodestones": null, + "lodged": [["E"]], + "dislodged": null, + "lodge": [["G", "M", "Z", "S", "R", "D", "J"]], + "lodging": [["M"]], + "lodge's": null, + "lodgers": null, + "lodges": [["E"]], + "lodger": [["M"]], + "lodgings": null, + "Lodge": [["M"]], + "Lodge's": null, + "lodgepole": null, + "lodger's": null, + "dislodges": null, + "lodging's": null, + "lodgment": [["M"]], + "lodgment's": null, + "Lodovico": [["M"]], + "Lodovico's": null, + "Lodowick": [["M"]], + "Lodowick's": null, + "Lodz": null, + "Loeb": [["M"]], + "Loeb's": null, + "Loella": [["M"]], + "Loella's": null, + "Loewe": [["M"]], + "Loewe's": null, + "Loewi": [["M"]], + "Loewi's": null, + "lofter": [["M"]], + "lofter's": null, + "loftily": null, + "loftiness": [["S", "M"]], + "loftinesses": null, + "loftiness's": null, + "loft": [["S", "G", "M", "R", "D"]], + "lofts": null, + "lofting": null, + "loft's": null, + "lofted": null, + "lofty": [["P", "T", "R"]], + "loftiest": null, + "loftier": null, + "loganberry": [["S", "M"]], + "loganberries": null, + "loganberry's": null, + "Logan": [["M"]], + "Logan's": null, + "logarithmic": null, + "logarithmically": null, + "logarithm": [["M", "S"]], + "logarithm's": null, + "logarithms": null, + "logbook": [["M", "S"]], + "logbook's": null, + "logbooks": null, + "loge": [["S", "M", "N", "X"]], + "loges": null, + "loge's": null, + "logion": [["M"]], + "logions": null, + "logged": [["U"]], + "unlogged": null, + "loggerhead": [["S", "M"]], + "loggerheads": null, + "loggerhead's": null, + "logger": [["S", "M"]], + "loggers": null, + "logger's": null, + "loggia": [["S", "M"]], + "loggias": null, + "loggia's": null, + "logging": [["M", "S"]], + "logging's": null, + "loggings": null, + "logicality": [["M", "S"]], + "logicality's": null, + "logicalities": null, + "logicalness": [["M"]], + "logicalness's": null, + "logical": [["S", "P", "Y"]], + "logicals": null, + "logically": null, + "logician": [["S", "M"]], + "logicians": null, + "logician's": null, + "logic": [["S", "M"]], + "logics": null, + "logic's": null, + "login": [["S"]], + "logins": null, + "logion's": null, + "logistical": [["Y"]], + "logistically": null, + "logistic": [["M", "S"]], + "logistic's": null, + "logistics": null, + "logjam": [["S", "M"]], + "logjams": null, + "logjam's": null, + "LOGO": null, + "logo": [["S", "M"]], + "logos": null, + "logo's": null, + "logotype": [["M", "S"]], + "logotype's": null, + "logotypes": null, + "logout": null, + "logrolling": [["S", "M"]], + "logrollings": null, + "logrolling's": null, + "log's": [["K"]], + "prolog's": null, + "log": [["S", "M"]], + "logs": null, + "logy": [["R", "T"]], + "logier": null, + "logiest": null, + "Lohengrin": [["M"]], + "Lohengrin's": null, + "loincloth": [["M"]], + "loincloth's": null, + "loincloths": null, + "loin": [["S", "M"]], + "loins": null, + "loin's": null, + "Loire": [["M"]], + "Loire's": null, + "Loise": [["M"]], + "Loise's": null, + "Lois": [["M"]], + "Lois's": null, + "loiterer": [["M"]], + "loiterer's": null, + "loiter": [["R", "D", "J", "S", "Z", "G"]], + "loitered": null, + "loiterings": null, + "loiters": null, + "loiterers": null, + "loitering": null, + "Loki": [["M"]], + "Loki's": null, + "Lola": [["M"]], + "Lola's": null, + "Loleta": [["M"]], + "Loleta's": null, + "Lolita": [["M"]], + "Lolita's": null, + "loller": [["M"]], + "loller's": null, + "lollipop": [["M", "S"]], + "lollipop's": null, + "lollipops": null, + "loll": [["R", "D", "G", "S"]], + "lolled": null, + "lolling": null, + "lolls": null, + "Lolly": [["M"]], + "Lolly's": null, + "lolly": [["S", "M"]], + "lollies": null, + "lolly's": null, + "Lombardi": [["M"]], + "Lombardi's": null, + "Lombard": [["M"]], + "Lombard's": null, + "Lombardy": [["M"]], + "Lombardy's": null, + "Lomb": [["M"]], + "Lomb's": null, + "Lome": null, + "Lona": [["M"]], + "Lona's": null, + "Londonderry": [["M"]], + "Londonderry's": null, + "Londoner": [["M"]], + "Londoner's": null, + "London": [["R", "M", "Z"]], + "London's": null, + "Londoners": null, + "Lonee": [["M"]], + "Lonee's": null, + "loneliness": [["S", "M"]], + "lonelinesses": null, + "loneliness's": null, + "lonely": [["T", "R", "P"]], + "loneliest": null, + "lonelier": null, + "loneness": [["M"]], + "loneness's": null, + "lone": [["P", "Y", "Z", "R"]], + "loners": null, + "loner": [["M"]], + "loner's": null, + "lonesomeness": [["M", "S"]], + "lonesomeness's": null, + "lonesomenesses": null, + "lonesome": [["P", "S", "Y"]], + "lonesomes": null, + "lonesomely": null, + "longboat": [["M", "S"]], + "longboat's": null, + "longboats": null, + "longbow": [["S", "M"]], + "longbows": null, + "longbow's": null, + "longed": [["K"]], + "prolonged": null, + "longeing": null, + "longer": [["K"]], + "prolonger": [["M"]], + "longevity": [["M", "S"]], + "longevity's": null, + "longevities": null, + "Longfellow": [["M"]], + "Longfellow's": null, + "longhair": [["S", "M"]], + "longhairs": null, + "longhair's": null, + "longhand": [["S", "M"]], + "longhands": null, + "longhand's": null, + "longhorn": [["S", "M"]], + "longhorns": null, + "longhorn's": null, + "longing": [["M", "Y"]], + "longing's": null, + "longingly": null, + "longish": null, + "longitude": [["M", "S"]], + "longitude's": null, + "longitudes": null, + "longitudinal": [["Y"]], + "longitudinally": null, + "long": [["J", "G", "T", "Y", "R", "D", "P", "S"]], + "longings": null, + "longest": null, + "longly": null, + "longness": [["M"]], + "longs": [["K"]], + "Long": [["M"]], + "Long's": null, + "longness's": null, + "longshoreman": [["M"]], + "longshoreman's": null, + "longshoremen": null, + "longsighted": null, + "prolongs": null, + "longstanding": null, + "Longstreet": [["M"]], + "Longstreet's": null, + "longsword": null, + "longterm": null, + "longtime": null, + "Longueuil": [["M"]], + "Longueuil's": null, + "longueur": [["S", "M"]], + "longueurs": null, + "longueur's": null, + "longways": null, + "longword": [["S", "M"]], + "longwords": null, + "longword's": null, + "Loni": [["M"]], + "Loni's": null, + "Lon": [["M"]], + "Lon's": null, + "Lonna": [["M"]], + "Lonna's": null, + "Lonnard": [["M"]], + "Lonnard's": null, + "Lonnie": [["M"]], + "Lonnie's": null, + "Lonni": [["M"]], + "Lonni's": null, + "Lonny": [["M"]], + "Lonny's": null, + "loofah": [["M"]], + "loofah's": null, + "loofahs": null, + "lookahead": null, + "lookalike": [["S"]], + "lookalikes": null, + "looker": [["M"]], + "looker's": null, + "look": [["G", "Z", "R", "D", "S"]], + "looking": null, + "lookers": null, + "looked": null, + "looks": null, + "lookout": [["M", "S"]], + "lookout's": null, + "lookouts": null, + "lookup": [["S", "M"]], + "lookups": null, + "lookup's": null, + "looming": [["M"]], + "looming's": null, + "Loomis": [["M"]], + "Loomis's": null, + "loom": [["M", "D", "G", "S"]], + "loom's": null, + "loomed": null, + "looms": null, + "loon": [["M", "S"]], + "loon's": null, + "loons": null, + "loony": [["S", "R", "T"]], + "loonies": null, + "loonier": null, + "looniest": null, + "looper": [["M"]], + "looper's": null, + "loophole": [["M", "G", "S", "D"]], + "loophole's": null, + "loopholing": null, + "loopholes": null, + "loopholed": null, + "loop": [["M", "R", "D", "G", "S"]], + "loop's": null, + "looped": null, + "looping": null, + "loops": null, + "loopy": [["T", "R"]], + "loopiest": null, + "loopier": null, + "loosed": [["U"]], + "unloosed": null, + "looseleaf": null, + "loosener": [["M"]], + "loosener's": null, + "looseness": [["M", "S"]], + "looseness's": null, + "loosenesses": null, + "loosen": [["U", "D", "G", "S"]], + "unloosen": null, + "unloosened": null, + "unloosening": null, + "unloosens": null, + "loosened": null, + "loosening": null, + "loosens": null, + "loose": [["S", "R", "D", "P", "G", "T", "Y"]], + "looses": [["U"]], + "looser": null, + "loosing": [["M"]], + "loosest": null, + "loosely": null, + "unlooses": null, + "loosing's": null, + "looter": [["M"]], + "looter's": null, + "loot": [["M", "R", "D", "G", "Z", "S"]], + "loot's": null, + "looted": null, + "looting": null, + "looters": null, + "loots": null, + "loper": [["M"]], + "loper's": null, + "lope": [["S"]], + "lopes": null, + "Lopez": [["M"]], + "Lopez's": null, + "lopped": null, + "lopper": [["M", "S"]], + "lopper's": null, + "loppers": null, + "lopping": null, + "lop": [["S", "D", "R", "G"]], + "lops": null, + "loped": null, + "loping": null, + "lopsidedness": [["S", "M"]], + "lopsidednesses": null, + "lopsidedness's": null, + "lopsided": [["Y", "P"]], + "lopsidedly": null, + "loquaciousness": [["M", "S"]], + "loquaciousness's": null, + "loquaciousnesses": null, + "loquacious": [["Y", "P"]], + "loquaciously": null, + "loquacity": [["S", "M"]], + "loquacities": null, + "loquacity's": null, + "Loraine": [["M"]], + "Loraine's": null, + "Lorain": [["M"]], + "Lorain's": null, + "Loralee": [["M"]], + "Loralee's": null, + "Loralie": [["M"]], + "Loralie's": null, + "Loralyn": [["M"]], + "Loralyn's": null, + "Lora": [["M"]], + "Lora's": null, + "Lorant": [["M"]], + "Lorant's": null, + "lording": [["M"]], + "lording's": null, + "lordliness": [["S", "M"]], + "lordlinesses": null, + "lordliness's": null, + "lordly": [["P", "T", "R"]], + "lordliest": null, + "lordlier": null, + "Lord": [["M", "S"]], + "Lord's": null, + "Lords": null, + "lord": [["M", "Y", "D", "G", "S"]], + "lord's": null, + "lorded": null, + "lords": null, + "lordship": [["S", "M"]], + "lordships": null, + "lordship's": null, + "Lordship": [["S", "M"]], + "Lordships": null, + "Lordship's": null, + "Loree": [["M"]], + "Loree's": null, + "Loreen": [["M"]], + "Loreen's": null, + "Lorelei": [["M"]], + "Lorelei's": null, + "Lorelle": [["M"]], + "Lorelle's": null, + "lore": [["M", "S"]], + "lore's": null, + "lores": null, + "Lorena": [["M"]], + "Lorena's": null, + "Lorene": [["M"]], + "Lorene's": null, + "Loren": [["S", "M"]], + "Lorens": null, + "Loren's": null, + "Lorentzian": [["M"]], + "Lorentzian's": null, + "Lorentz": [["M"]], + "Lorentz's": null, + "Lorenza": [["M"]], + "Lorenza's": null, + "Lorenz": [["M"]], + "Lorenz's": null, + "Lorenzo": [["M"]], + "Lorenzo's": null, + "Loretta": [["M"]], + "Loretta's": null, + "Lorette": [["M"]], + "Lorette's": null, + "lorgnette": [["S", "M"]], + "lorgnettes": null, + "lorgnette's": null, + "Loria": [["M"]], + "Loria's": null, + "Lorianna": [["M"]], + "Lorianna's": null, + "Lorianne": [["M"]], + "Lorianne's": null, + "Lorie": [["M"]], + "Lorie's": null, + "Lorilee": [["M"]], + "Lorilee's": null, + "Lorilyn": [["M"]], + "Lorilyn's": null, + "Lori": [["M"]], + "Lori's": null, + "Lorinda": [["M"]], + "Lorinda's": null, + "Lorine": [["M"]], + "Lorine's": null, + "Lorin": [["M"]], + "Lorin's": null, + "loris": [["S", "M"]], + "lorises": null, + "loris's": null, + "Lorita": [["M"]], + "Lorita's": null, + "lorn": null, + "Lorna": [["M"]], + "Lorna's": null, + "Lorne": [["M"]], + "Lorne's": null, + "Lorraine": [["M"]], + "Lorraine's": null, + "Lorrayne": [["M"]], + "Lorrayne's": null, + "Lorre": [["M"]], + "Lorre's": null, + "Lorrie": [["M"]], + "Lorrie's": null, + "Lorri": [["M"]], + "Lorri's": null, + "Lorrin": [["M"]], + "Lorrin's": null, + "lorryload": [["S"]], + "lorryloads": null, + "Lorry": [["M"]], + "Lorry's": null, + "lorry": [["S", "M"]], + "lorries": null, + "lorry's": null, + "Lory": [["M"]], + "Lory's": null, + "Los": null, + "loser": [["M"]], + "loser's": null, + "lose": [["Z", "G", "J", "B", "S", "R"]], + "losers": null, + "losing": null, + "losings": null, + "losable": null, + "loses": null, + "lossage": null, + "lossless": null, + "loss": [["S", "M"]], + "losses": null, + "loss's": null, + "lossy": [["R", "T"]], + "lossier": null, + "lossiest": null, + "lost": [["P"]], + "lostness": null, + "Lothaire": [["M"]], + "Lothaire's": null, + "Lothario": [["M", "S"]], + "Lothario's": null, + "Lotharios": null, + "lotion": [["M", "S"]], + "lotion's": null, + "lotions": null, + "Lot": [["M"]], + "Lot's": null, + "lot": [["M", "S"]], + "lot's": null, + "lots": null, + "Lotta": [["M"]], + "Lotta's": null, + "lotted": null, + "Lotte": [["M"]], + "Lotte's": null, + "lotter": null, + "lottery": [["M", "S"]], + "lottery's": null, + "lotteries": null, + "Lottie": [["M"]], + "Lottie's": null, + "Lotti": [["M"]], + "Lotti's": null, + "lotting": null, + "Lott": [["M"]], + "Lott's": null, + "lotto": [["M", "S"]], + "lotto's": null, + "lottos": null, + "Lotty": [["M"]], + "Lotty's": null, + "lotus": [["S", "M"]], + "lotuses": null, + "lotus's": null, + "louden": [["D", "G"]], + "loudened": null, + "loudening": null, + "loudhailer": [["S"]], + "loudhailers": null, + "loudly": [["R", "T"]], + "loudlier": null, + "loudliest": null, + "loudmouth": [["D", "M"]], + "loudmouthed": null, + "loudmouth's": null, + "loudmouths": null, + "loudness": [["M", "S"]], + "loudness's": null, + "loudnesses": null, + "loudspeaker": [["S", "M"]], + "loudspeakers": null, + "loudspeaker's": null, + "loudspeaking": null, + "loud": [["Y", "R", "N", "P", "T"]], + "louder": null, + "loudest": null, + "Louella": [["M"]], + "Louella's": null, + "Louie": [["M"]], + "Louie's": null, + "Louisa": [["M"]], + "Louisa's": null, + "Louise": [["M"]], + "Louise's": null, + "Louisette": [["M"]], + "Louisette's": null, + "Louisiana": [["M"]], + "Louisiana's": null, + "Louisianan": [["S"]], + "Louisianans": null, + "Louisianian": [["S"]], + "Louisianians": null, + "Louis": [["M"]], + "Louis's": null, + "Louisville": [["M"]], + "Louisville's": null, + "Lou": [["M"]], + "Lou's": null, + "lounger": [["M"]], + "lounger's": null, + "lounge": [["S", "R", "D", "Z", "G"]], + "lounges": null, + "lounged": null, + "loungers": null, + "lounging": null, + "Lourdes": [["M"]], + "Lourdes's": null, + "lour": [["G", "S", "D"]], + "louring": null, + "lours": null, + "loured": null, + "louse": [["C", "S", "D", "G"]], + "delouse": null, + "delouses": null, + "deloused": null, + "delousing": null, + "louses": null, + "loused": null, + "lousing": null, + "louse's": null, + "lousewort": [["M"]], + "lousewort's": null, + "lousily": null, + "lousiness": [["M", "S"]], + "lousiness's": null, + "lousinesses": null, + "lousy": [["P", "R", "T"]], + "lousier": null, + "lousiest": null, + "loutishness": [["M"]], + "loutishness's": null, + "loutish": [["Y", "P"]], + "loutishly": null, + "Loutitia": [["M"]], + "Loutitia's": null, + "lout": [["S", "G", "M", "D"]], + "louts": null, + "louting": null, + "lout's": null, + "louted": null, + "louver": [["D", "M", "S"]], + "louvered": null, + "louver's": null, + "louvers": null, + "L'Ouverture": null, + "Louvre": [["M"]], + "Louvre's": null, + "lovableness": [["M", "S"]], + "lovableness's": null, + "lovablenesses": null, + "lovable": [["U"]], + "unlovable": null, + "lovably": null, + "lovebird": [["S", "M"]], + "lovebirds": null, + "lovebird's": null, + "lovechild": null, + "Lovecraft": [["M"]], + "Lovecraft's": null, + "love": [["D", "S", "R", "M", "Y", "Z", "G", "J", "B"]], + "loved": [["U"]], + "loves": null, + "lover": [["Y", "M", "G"]], + "love's": null, + "lovely": [["U", "R", "P", "T"]], + "lovers": null, + "loving": [["U"]], + "lovings": null, + "unloved": null, + "Lovejoy": [["M"]], + "Lovejoy's": null, + "Lovelace": [["M"]], + "Lovelace's": null, + "Loveland": [["M"]], + "Loveland's": null, + "lovelessness": [["M"]], + "lovelessness's": null, + "loveless": [["Y", "P"]], + "lovelessly": null, + "lovelies": null, + "lovelinesses": null, + "loveliness": [["U", "M"]], + "unloveliness": null, + "unloveliness's": null, + "loveliness's": null, + "Lovell": [["M"]], + "Lovell's": null, + "lovelornness": [["M"]], + "lovelornness's": null, + "lovelorn": [["P"]], + "unlovely": null, + "unlovelier": null, + "lovelier": null, + "loveliest": null, + "Love": [["M"]], + "Love's": null, + "lovemaking": [["S", "M"]], + "lovemakings": null, + "lovemaking's": null, + "loverly": null, + "lover's": null, + "lovering": null, + "lovesick": null, + "lovestruck": null, + "lovingly": null, + "lovingness": [["M"]], + "lovingness's": null, + "unloving": null, + "lowborn": null, + "lowboy": [["S", "M"]], + "lowboys": null, + "lowboy's": null, + "lowbrow": [["M", "S"]], + "lowbrow's": null, + "lowbrows": null, + "lowdown": [["S"]], + "lowdowns": null, + "Lowell": [["M"]], + "Lowell's": null, + "Lowe": [["M"]], + "Lowe's": null, + "lowercase": [["G", "S", "D"]], + "lowercasing": null, + "lowercases": null, + "lowercased": null, + "lower": [["D", "G"]], + "lowered": null, + "lowering": null, + "lowermost": null, + "Lowery": [["M"]], + "Lowery's": null, + "lowish": null, + "lowland": [["R", "M", "Z", "S"]], + "lowlander": null, + "lowland's": null, + "lowlanders": null, + "lowlands": null, + "Lowlands": [["M"]], + "Lowlands's": null, + "lowlife": [["S", "M"]], + "lowlifes": null, + "lowlife's": null, + "lowlight": [["M", "S"]], + "lowlight's": null, + "lowlights": null, + "lowliness": [["M", "S"]], + "lowliness's": null, + "lowlinesses": null, + "lowly": [["P", "T", "R"]], + "lowliest": null, + "lowlier": null, + "lowness": [["M", "S"]], + "lowness's": null, + "lownesses": null, + "low": [["P", "D", "R", "Y", "S", "Z", "T", "G"]], + "lowed": null, + "lows": null, + "lowers": null, + "lowest": null, + "lowing": null, + "Lowrance": [["M"]], + "Lowrance's": null, + "lox": [["M", "D", "S", "G"]], + "lox's": null, + "loxed": null, + "loxes": null, + "loxing": null, + "loyaler": null, + "loyalest": null, + "loyal": [["E", "Y"]], + "disloyal": null, + "disloyally": null, + "loyally": null, + "loyalism": [["S", "M"]], + "loyalisms": null, + "loyalism's": null, + "loyalist": [["S", "M"]], + "loyalists": null, + "loyalist's": null, + "loyalty": [["E", "M", "S"]], + "disloyalty": null, + "disloyalty's": null, + "disloyalties": null, + "loyalty's": null, + "loyalties": null, + "Loyang": [["M"]], + "Loyang's": null, + "Loydie": [["M"]], + "Loydie's": null, + "Loyd": [["M"]], + "Loyd's": null, + "Loy": [["M"]], + "Loy's": null, + "Loyola": [["M"]], + "Loyola's": null, + "lozenge": [["S", "D", "M"]], + "lozenges": null, + "lozenged": null, + "lozenge's": null, + "LP": null, + "LPG": null, + "LPN": [["S"]], + "LPNs": null, + "Lr": null, + "ls": null, + "l's": null, + "L's": null, + "LSD": null, + "ltd": null, + "Ltd": [["M"]], + "Ltd's": null, + "Lt": [["M"]], + "Lt's": null, + "Luanda": [["M"]], + "Luanda's": null, + "Luann": [["M"]], + "Luann's": null, + "luau": [["M", "S"]], + "luau's": null, + "luaus": null, + "lubber": [["Y", "M", "S"]], + "lubberly": null, + "lubber's": null, + "lubbers": null, + "Lubbock": [["M"]], + "Lubbock's": null, + "lube": [["D", "S", "M", "G"]], + "lubed": null, + "lubes": null, + "lube's": null, + "lubing": null, + "lubricant": [["S", "M"]], + "lubricants": null, + "lubricant's": null, + "lubricate": [["V", "N", "G", "S", "D", "X"]], + "lubricative": null, + "lubrication": [["M"]], + "lubricating": null, + "lubricates": null, + "lubricated": null, + "lubrications": null, + "lubrication's": null, + "lubricator": [["M", "S"]], + "lubricator's": null, + "lubricators": null, + "lubricious": [["Y"]], + "lubriciously": null, + "lubricity": [["S", "M"]], + "lubricities": null, + "lubricity's": null, + "Lubumbashi": [["M"]], + "Lubumbashi's": null, + "Lucais": [["M"]], + "Lucais's": null, + "Luca": [["M", "S"]], + "Luca's": null, + "Lucas": null, + "Luce": [["M"]], + "Luce's": null, + "lucent": [["Y"]], + "lucently": null, + "Lucerne": [["M"]], + "Lucerne's": null, + "Lucho": [["M"]], + "Lucho's": null, + "Lucia": [["M", "S"]], + "Lucia's": null, + "Lucias": null, + "Luciana": [["M"]], + "Luciana's": null, + "Lucian": [["M"]], + "Lucian's": null, + "Luciano": [["M"]], + "Luciano's": null, + "lucidity": [["M", "S"]], + "lucidity's": null, + "lucidities": null, + "lucidness": [["M", "S"]], + "lucidness's": null, + "lucidnesses": null, + "lucid": [["Y", "P"]], + "lucidly": null, + "Lucie": [["M"]], + "Lucie's": null, + "Lucien": [["M"]], + "Lucien's": null, + "Lucienne": [["M"]], + "Lucienne's": null, + "Lucifer": [["M"]], + "Lucifer's": null, + "Lucila": [["M"]], + "Lucila's": null, + "Lucile": [["M"]], + "Lucile's": null, + "Lucilia": [["M"]], + "Lucilia's": null, + "Lucille": [["M"]], + "Lucille's": null, + "Luci": [["M", "N"]], + "Luci's": null, + "Lucina": [["M"]], + "Lucina's": null, + "Lucinda": [["M"]], + "Lucinda's": null, + "Lucine": [["M"]], + "Lucine's": null, + "Lucio": [["M"]], + "Lucio's": null, + "Lucita": [["M"]], + "Lucita's": null, + "Lucite": [["M", "S"]], + "Lucite's": null, + "Lucites": null, + "Lucius": [["M"]], + "Lucius's": null, + "luck": [["G", "S", "D", "M"]], + "lucking": null, + "lucks": null, + "lucked": null, + "luck's": null, + "luckier": [["U"]], + "unluckier": null, + "luckily": [["U"]], + "unluckily": null, + "luckiness": [["U", "M", "S"]], + "unluckiness": null, + "unluckiness's": null, + "unluckinesses": null, + "luckiness's": null, + "luckinesses": null, + "luckless": null, + "Lucknow": [["M"]], + "Lucknow's": null, + "Lucky": [["M"]], + "Lucky's": null, + "lucky": [["R", "S", "P", "T"]], + "luckies": null, + "luckiest": null, + "lucrativeness": [["S", "M"]], + "lucrativenesses": null, + "lucrativeness's": null, + "lucrative": [["Y", "P"]], + "lucratively": null, + "lucre": [["M", "S"]], + "lucre's": null, + "lucres": null, + "Lucretia": [["M"]], + "Lucretia's": null, + "Lucretius": [["M"]], + "Lucretius's": null, + "lucubrate": [["G", "N", "S", "D", "X"]], + "lucubrating": null, + "lucubration": [["M"]], + "lucubrates": null, + "lucubrated": null, + "lucubrations": null, + "lucubration's": null, + "Lucy": [["M"]], + "Lucy's": null, + "Luddite": [["S", "M"]], + "Luddites": null, + "Luddite's": null, + "Ludhiana": [["M"]], + "Ludhiana's": null, + "ludicrousness": [["S", "M"]], + "ludicrousnesses": null, + "ludicrousness's": null, + "ludicrous": [["P", "Y"]], + "ludicrously": null, + "Ludlow": [["M"]], + "Ludlow's": null, + "Ludmilla": [["M"]], + "Ludmilla's": null, + "ludo": [["M"]], + "ludo's": null, + "Ludovico": [["M"]], + "Ludovico's": null, + "Ludovika": [["M"]], + "Ludovika's": null, + "Ludvig": [["M"]], + "Ludvig's": null, + "Ludwig": [["M"]], + "Ludwig's": null, + "Luella": [["M"]], + "Luella's": null, + "Luelle": [["M"]], + "Luelle's": null, + "luff": [["G", "S", "D", "M"]], + "luffing": null, + "luffs": null, + "luffed": null, + "luff's": null, + "Lufthansa": [["M"]], + "Lufthansa's": null, + "Luftwaffe": [["M"]], + "Luftwaffe's": null, + "luge": [["M", "C"]], + "luge's": null, + "deluge's": null, + "Luger": [["M"]], + "Luger's": null, + "luggage": [["S", "M"]], + "luggages": null, + "luggage's": null, + "lugged": null, + "lugger": [["S", "M"]], + "luggers": null, + "lugger's": null, + "lugging": null, + "Lugosi": [["M"]], + "Lugosi's": null, + "lug": [["R", "S"]], + "luger": null, + "lugs": null, + "lugsail": [["S", "M"]], + "lugsails": null, + "lugsail's": null, + "lugubriousness": [["M", "S"]], + "lugubriousness's": null, + "lugubriousnesses": null, + "lugubrious": [["Y", "P"]], + "lugubriously": null, + "Luigi": [["M"]], + "Luigi's": null, + "Luisa": [["M"]], + "Luisa's": null, + "Luise": [["M"]], + "Luise's": null, + "Luis": [["M"]], + "Luis's": null, + "Lukas": [["M"]], + "Lukas's": null, + "Luke": [["M"]], + "Luke's": null, + "lukewarmness": [["S", "M"]], + "lukewarmnesses": null, + "lukewarmness's": null, + "lukewarm": [["P", "Y"]], + "lukewarmly": null, + "Lula": [["M"]], + "Lula's": null, + "Lulita": [["M"]], + "Lulita's": null, + "lullaby": [["G", "M", "S", "D"]], + "lullabying": null, + "lullaby's": null, + "lullabies": null, + "lullabied": null, + "lull": [["S", "D", "G"]], + "lulls": null, + "lulled": null, + "lulling": null, + "lulu": [["M"]], + "lulu's": null, + "Lulu": [["M"]], + "Lulu's": null, + "Lu": [["M"]], + "Lu's": null, + "lumbago": [["S", "M"]], + "lumbagos": null, + "lumbago's": null, + "lumbar": [["S"]], + "lumbars": null, + "lumberer": [["M"]], + "lumberer's": null, + "lumbering": [["M"]], + "lumbering's": null, + "lumberjack": [["M", "S"]], + "lumberjack's": null, + "lumberjacks": null, + "lumberman": [["M"]], + "lumberman's": null, + "lumbermen": null, + "lumber": [["R", "D", "M", "G", "Z", "S", "J"]], + "lumbered": null, + "lumber's": null, + "lumberers": null, + "lumbers": null, + "lumberings": null, + "lumberyard": [["M", "S"]], + "lumberyard's": null, + "lumberyards": null, + "lumen": [["M"]], + "lumen's": null, + "Lumi�re": [["M"]], + "Lumi�re's": null, + "luminance": [["M"]], + "luminance's": null, + "luminary": [["M", "S"]], + "luminary's": null, + "luminaries": null, + "luminescence": [["S", "M"]], + "luminescences": null, + "luminescence's": null, + "luminescent": null, + "luminosity": [["M", "S"]], + "luminosity's": null, + "luminosities": null, + "luminousness": [["M"]], + "luminousness's": null, + "luminous": [["Y", "P"]], + "luminously": null, + "lummox": [["M", "S"]], + "lummox's": null, + "lummoxes": null, + "lumper": [["M"]], + "lumper's": null, + "lumpiness": [["M", "S"]], + "lumpiness's": null, + "lumpinesses": null, + "lumpishness": [["M"]], + "lumpishness's": null, + "lumpish": [["Y", "P"]], + "lumpishly": null, + "lump": [["S", "G", "M", "R", "D", "N"]], + "lumps": null, + "lumping": null, + "lump's": null, + "lumped": null, + "lumpen": null, + "lumpy": [["T", "P", "R"]], + "lumpiest": null, + "lumpier": null, + "lunacy": [["M", "S"]], + "lunacy's": null, + "lunacies": null, + "Luna": [["M"]], + "Luna's": null, + "lunar": [["S"]], + "lunars": null, + "lunary": null, + "lunate": [["Y", "N", "D"]], + "lunately": null, + "lunation": [["M"]], + "lunated": null, + "lunatic": [["S"]], + "lunatics": null, + "lunation's": null, + "luncheonette": [["S", "M"]], + "luncheonettes": null, + "luncheonette's": null, + "luncheon": [["S", "M", "D", "G"]], + "luncheons": null, + "luncheon's": null, + "luncheoned": null, + "luncheoning": null, + "luncher": [["M"]], + "luncher's": null, + "lunch": [["G", "M", "R", "S", "D"]], + "lunching": null, + "lunch's": null, + "lunches": null, + "lunched": null, + "lunchpack": null, + "lunchroom": [["M", "S"]], + "lunchroom's": null, + "lunchrooms": null, + "lunchtime": [["M", "S"]], + "lunchtime's": null, + "lunchtimes": null, + "Lundberg": [["M"]], + "Lundberg's": null, + "Lund": [["M"]], + "Lund's": null, + "Lundquist": [["M"]], + "Lundquist's": null, + "lune": [["M"]], + "lune's": null, + "lunge": [["M", "S"]], + "lunge's": null, + "lunges": null, + "lunger": [["M"]], + "lunger's": null, + "lungfish": [["S", "M"]], + "lungfishes": null, + "lungfish's": null, + "lungful": null, + "lung": [["S", "G", "R", "D", "M"]], + "lungs": null, + "lunging": null, + "lunged": null, + "lung's": null, + "lunkhead": [["S", "M"]], + "lunkheads": null, + "lunkhead's": null, + "Lupe": [["M"]], + "Lupe's": null, + "lupine": [["S", "M"]], + "lupines": null, + "lupine's": null, + "Lupus": [["M"]], + "Lupus's": null, + "lupus": [["S", "M"]], + "lupuses": null, + "lupus's": null, + "Lura": [["M"]], + "Lura's": null, + "lurcher": [["M"]], + "lurcher's": null, + "lurch": [["R", "S", "D", "G"]], + "lurches": null, + "lurched": null, + "lurching": null, + "lure": [["D", "S", "R", "G"]], + "lured": null, + "lures": null, + "lurer": [["M"]], + "luring": null, + "lurer's": null, + "Lurette": [["M"]], + "Lurette's": null, + "lurex": null, + "Luria": [["M"]], + "Luria's": null, + "luridness": [["S", "M"]], + "luridnesses": null, + "luridness's": null, + "lurid": [["Y", "P"]], + "luridly": null, + "lurker": [["M"]], + "lurker's": null, + "lurk": [["G", "Z", "S", "R", "D"]], + "lurking": null, + "lurkers": null, + "lurks": null, + "lurked": null, + "Lurleen": [["M"]], + "Lurleen's": null, + "Lurlene": [["M"]], + "Lurlene's": null, + "Lurline": [["M"]], + "Lurline's": null, + "Lusaka": [["M"]], + "Lusaka's": null, + "Lusa": [["M"]], + "Lusa's": null, + "lusciousness": [["M", "S"]], + "lusciousness's": null, + "lusciousnesses": null, + "luscious": [["P", "Y"]], + "lusciously": null, + "lushness": [["M", "S"]], + "lushness's": null, + "lushnesses": null, + "lush": [["Y", "S", "R", "D", "G", "T", "P"]], + "lushly": null, + "lushes": null, + "lusher": null, + "lushed": null, + "lushing": null, + "lushest": null, + "Lusitania": [["M"]], + "Lusitania's": null, + "luster": [["G", "D", "M"]], + "lustering": [["M"]], + "lustered": null, + "luster's": null, + "lustering's": null, + "lusterless": null, + "lustfulness": [["M"]], + "lustfulness's": null, + "lustful": [["P", "Y"]], + "lustfully": null, + "lustily": null, + "lustiness": [["M", "S"]], + "lustiness's": null, + "lustinesses": null, + "lust": [["M", "R", "D", "G", "Z", "S"]], + "lust's": null, + "lusted": null, + "lusting": null, + "lusters": null, + "lusts": null, + "lustrousness": [["M"]], + "lustrousness's": null, + "lustrous": [["P", "Y"]], + "lustrously": null, + "lusty": [["P", "R", "T"]], + "lustier": null, + "lustiest": null, + "lutanist": [["M", "S"]], + "lutanist's": null, + "lutanists": null, + "lute": [["D", "S", "M", "G"]], + "luted": null, + "lutes": null, + "lute's": null, + "luting": [["M"]], + "lutenist": [["M", "S"]], + "lutenist's": null, + "lutenists": null, + "Lutero": [["M"]], + "Lutero's": null, + "lutetium": [["M", "S"]], + "lutetium's": null, + "lutetiums": null, + "Lutheranism": [["M", "S"]], + "Lutheranism's": null, + "Lutheranisms": null, + "Lutheran": [["S", "M"]], + "Lutherans": null, + "Lutheran's": null, + "Luther": [["M"]], + "Luther's": null, + "luting's": null, + "Lutz": null, + "Luxembourgian": null, + "Luxembourg": [["R", "M", "Z"]], + "Luxembourger": null, + "Luxembourg's": null, + "Luxembourgers": null, + "Luxemburg's": null, + "luxe": [["M", "S"]], + "luxe's": null, + "luxes": null, + "luxuriance": [["M", "S"]], + "luxuriance's": null, + "luxuriances": null, + "luxuriant": [["Y"]], + "luxuriantly": null, + "luxuriate": [["G", "N", "S", "D", "X"]], + "luxuriating": null, + "luxuriation": [["M"]], + "luxuriates": null, + "luxuriated": null, + "luxuriations": null, + "luxuriation's": null, + "luxuriousness": [["S", "M"]], + "luxuriousnesses": null, + "luxuriousness's": null, + "luxurious": [["P", "Y"]], + "luxuriously": null, + "luxury": [["M", "S"]], + "luxury's": null, + "luxuries": null, + "Luz": [["M"]], + "Luz's": null, + "Luzon": [["M"]], + "Luzon's": null, + "L'vov": null, + "Lyallpur": [["M"]], + "Lyallpur's": null, + "lyceum": [["M", "S"]], + "lyceum's": null, + "lyceums": null, + "lychee's": null, + "lycopodium": [["M"]], + "lycopodium's": null, + "Lycra": [["S"]], + "Lycras": null, + "Lycurgus": [["M"]], + "Lycurgus's": null, + "Lyda": [["M"]], + "Lyda's": null, + "Lydia": [["M"]], + "Lydia's": null, + "Lydian": [["S"]], + "Lydians": null, + "Lydie": [["M"]], + "Lydie's": null, + "Lydon": [["M"]], + "Lydon's": null, + "lye": [["J", "S", "M", "G"]], + "lyings": null, + "lyes": null, + "lye's": null, + "lying": [["Y"]], + "Lyell": [["M"]], + "Lyell's": null, + "lyingly": null, + "Lyle": [["M"]], + "Lyle's": null, + "Lyly": [["M"]], + "Lyly's": null, + "Lyman": [["M"]], + "Lyman's": null, + "Lyme": [["M"]], + "Lyme's": null, + "lymphatic": [["S"]], + "lymphatics": null, + "lymph": [["M"]], + "lymph's": null, + "lymphocyte": [["S", "M"]], + "lymphocytes": null, + "lymphocyte's": null, + "lymphoid": null, + "lymphoma": [["M", "S"]], + "lymphoma's": null, + "lymphomas": null, + "lymphs": null, + "Ly": [["M", "Y"]], + "Ly's": null, + "Lynchburg": [["M"]], + "Lynchburg's": null, + "lyncher": [["M"]], + "lyncher's": null, + "lynching": [["M"]], + "lynching's": null, + "Lynch": [["M"]], + "Lynch's": null, + "lynch": [["Z", "G", "R", "S", "D", "J"]], + "lynchers": null, + "lynches": null, + "lynched": null, + "lynchings": null, + "Lynda": [["M"]], + "Lynda's": null, + "Lyndell": [["M"]], + "Lyndell's": null, + "Lyndel": [["M"]], + "Lyndel's": null, + "Lynde": [["M"]], + "Lynde's": null, + "Lyndon": [["M"]], + "Lyndon's": null, + "Lyndsay": [["M"]], + "Lyndsay's": null, + "Lyndsey": [["M"]], + "Lyndsey's": null, + "Lyndsie": [["M"]], + "Lyndsie's": null, + "Lyndy": [["M"]], + "Lyndy's": null, + "Lynea": [["M"]], + "Lynea's": null, + "Lynelle": [["M"]], + "Lynelle's": null, + "Lynette": [["M"]], + "Lynette's": null, + "Lynett": [["M"]], + "Lynett's": null, + "Lyn": [["M"]], + "Lyn's": null, + "Lynna": [["M"]], + "Lynna's": null, + "Lynnea": [["M"]], + "Lynnea's": null, + "Lynnelle": [["M"]], + "Lynnelle's": null, + "Lynnell": [["M"]], + "Lynnell's": null, + "Lynne": [["M"]], + "Lynne's": null, + "Lynnet": [["M"]], + "Lynnet's": null, + "Lynnette": [["M"]], + "Lynnette's": null, + "Lynnett": [["M"]], + "Lynnett's": null, + "Lynn": [["M"]], + "Lynn's": null, + "Lynsey": [["M"]], + "Lynsey's": null, + "lynx": [["M", "S"]], + "lynx's": null, + "lynxes": null, + "Lyon": [["S", "M"]], + "Lyons": null, + "Lyon's": null, + "Lyra": [["M"]], + "Lyra's": null, + "lyrebird": [["M", "S"]], + "lyrebird's": null, + "lyrebirds": null, + "lyre": [["S", "M"]], + "lyres": null, + "lyre's": null, + "lyricalness": [["M"]], + "lyricalness's": null, + "lyrical": [["Y", "P"]], + "lyrically": null, + "lyricism": [["S", "M"]], + "lyricisms": null, + "lyricism's": null, + "lyricist": [["S", "M"]], + "lyricists": null, + "lyricist's": null, + "lyric": [["S"]], + "lyrics": null, + "Lysenko": [["M"]], + "Lysenko's": null, + "lysine": [["M"]], + "lysine's": null, + "Lysistrata": [["M"]], + "Lysistrata's": null, + "Lysol": [["M"]], + "Lysol's": null, + "Lyssa": [["M"]], + "Lyssa's": null, + "LyX": [["M"]], + "LyX's": null, + "MA": null, + "Maalox": [["M"]], + "Maalox's": null, + "ma'am": null, + "Mabelle": [["M"]], + "Mabelle's": null, + "Mabel": [["M"]], + "Mabel's": null, + "Mable": [["M"]], + "Mable's": null, + "Mab": [["M"]], + "Mab's": null, + "macabre": [["Y"]], + "macabrely": null, + "macadamize": [["S", "D", "G"]], + "macadamizes": null, + "macadamized": null, + "macadamizing": null, + "macadam": [["S", "M"]], + "macadams": null, + "macadam's": null, + "Macao": [["M"]], + "Macao's": null, + "macaque": [["S", "M"]], + "macaques": null, + "macaque's": null, + "macaroni": [["S", "M"]], + "macaronis": null, + "macaroni's": null, + "macaroon": [["M", "S"]], + "macaroon's": null, + "macaroons": null, + "Macarthur": [["M"]], + "Macarthur's": null, + "MacArthur": [["M"]], + "MacArthur's": null, + "Macaulay": [["M"]], + "Macaulay's": null, + "macaw": [["S", "M"]], + "macaws": null, + "macaw's": null, + "Macbeth": [["M"]], + "Macbeth's": null, + "Maccabees": [["M"]], + "Maccabees's": null, + "Maccabeus": [["M"]], + "Maccabeus's": null, + "Macdonald": [["M"]], + "Macdonald's": null, + "MacDonald": [["M"]], + "MacDonald's": null, + "MacDraw": [["M"]], + "MacDraw's": null, + "Macedonia": [["M"]], + "Macedonia's": null, + "Macedonian": [["S"]], + "Macedonians": null, + "Macedon": [["M"]], + "Macedon's": null, + "mace": [["M", "S"]], + "mace's": null, + "maces": null, + "Mace": [["M", "S"]], + "Mace's": null, + "Maces": null, + "macerate": [["D", "S", "X", "N", "G"]], + "macerated": null, + "macerates": null, + "macerations": null, + "maceration": [["M"]], + "macerating": null, + "maceration's": null, + "macer": [["M"]], + "macer's": null, + "Macgregor": [["M"]], + "Macgregor's": null, + "MacGregor": [["M"]], + "MacGregor's": null, + "machete": [["S", "M"]], + "machetes": null, + "machete's": null, + "Machiavellian": [["S"]], + "Machiavellians": null, + "Machiavelli": [["M"]], + "Machiavelli's": null, + "machinate": [["S", "D", "X", "N", "G"]], + "machinates": null, + "machinated": null, + "machinations": null, + "machination": [["M"]], + "machinating": null, + "machination's": null, + "machinelike": null, + "machine": [["M", "G", "S", "D", "B"]], + "machine's": null, + "machining": null, + "machines": null, + "machined": null, + "machinable": null, + "machinery": [["S", "M"]], + "machineries": null, + "machinery's": null, + "machinist": [["M", "S"]], + "machinist's": null, + "machinists": null, + "machismo": [["S", "M"]], + "machismos": null, + "machismo's": null, + "Mach": [["M"]], + "Mach's": null, + "macho": [["S"]], + "machos": null, + "Machs": null, + "Macias": [["M"]], + "Macias's": null, + "Macintosh": [["M"]], + "Macintosh's": null, + "MacIntosh": [["M"]], + "MacIntosh's": null, + "macintosh's": null, + "Mackenzie": [["M"]], + "Mackenzie's": null, + "MacKenzie": [["M"]], + "MacKenzie's": null, + "mackerel": [["S", "M"]], + "mackerels": null, + "mackerel's": null, + "Mackinac": [["M"]], + "Mackinac's": null, + "Mackinaw": null, + "mackinaw": [["S", "M"]], + "mackinaws": null, + "mackinaw's": null, + "mackintosh": [["S", "M"]], + "mackintoshes": null, + "mackintosh's": null, + "mack": [["M"]], + "mack's": null, + "Mack": [["M"]], + "Mack's": null, + "MacLeish": [["M"]], + "MacLeish's": null, + "Macmillan": [["M"]], + "Macmillan's": null, + "MacMillan": [["M"]], + "MacMillan's": null, + "Macon": [["S", "M"]], + "Macons": null, + "Macon's": null, + "MacPaint": [["M"]], + "MacPaint's": null, + "macram�": [["S"]], + "macram�s": null, + "macrobiotic": [["S"]], + "macrobiotics": [["M"]], + "macrobiotics's": null, + "macrocosm": [["M", "S"]], + "macrocosm's": null, + "macrocosms": null, + "macrodynamic": null, + "macroeconomic": [["S"]], + "macroeconomics": [["M"]], + "macroeconomics's": null, + "macromolecular": null, + "macromolecule": [["S", "M"]], + "macromolecules": null, + "macromolecule's": null, + "macron": [["M", "S"]], + "macron's": null, + "macrons": null, + "macrophage": [["S", "M"]], + "macrophages": null, + "macrophage's": null, + "macroscopic": null, + "macroscopically": null, + "macrosimulation": null, + "macro": [["S", "M"]], + "macros": null, + "macro's": null, + "macrosocioeconomic": null, + "Mac": [["S", "G", "M", "D"]], + "Macs": null, + "Macing": null, + "Mac's": null, + "Maced": null, + "mac": [["S", "G", "M", "D", "R"]], + "macs": null, + "macing": null, + "mac's": null, + "maced": null, + "Macy": [["M"]], + "Macy's": null, + "Madagascan": [["S", "M"]], + "Madagascans": null, + "Madagascan's": null, + "Madagascar": [["M"]], + "Madagascar's": null, + "Madalena": [["M"]], + "Madalena's": null, + "Madalyn": [["M"]], + "Madalyn's": null, + "Mada": [["M"]], + "Mada's": null, + "madame": [["M"]], + "madame's": null, + "Madame": [["M", "S"]], + "Madame's": null, + "Madames": null, + "madam": [["S", "M"]], + "madams": null, + "madam's": null, + "madcap": [["S"]], + "madcaps": null, + "Maddalena": [["M"]], + "Maddalena's": null, + "madded": null, + "madden": [["G", "S", "D"]], + "maddening": [["Y"]], + "maddens": null, + "maddened": null, + "maddeningly": null, + "Madden": [["M"]], + "Madden's": null, + "madder": [["M", "S"]], + "madder's": null, + "madders": null, + "maddest": null, + "Maddie": [["M"]], + "Maddie's": null, + "Maddi": [["M"]], + "Maddi's": null, + "madding": null, + "Maddox": [["M"]], + "Maddox's": null, + "Maddy": [["M"]], + "Maddy's": null, + "made": [["A", "U"]], + "remade": [["S"]], + "unmade": null, + "Madeira": [["S", "M"]], + "Madeiras": null, + "Madeira's": null, + "Madelaine": [["M"]], + "Madelaine's": null, + "Madeleine": [["M"]], + "Madeleine's": null, + "Madelena": [["M"]], + "Madelena's": null, + "Madelene": [["M"]], + "Madelene's": null, + "Madelina": [["M"]], + "Madelina's": null, + "Madeline": [["M"]], + "Madeline's": null, + "Madelin": [["M"]], + "Madelin's": null, + "Madella": [["M"]], + "Madella's": null, + "Madelle": [["M"]], + "Madelle's": null, + "Madel": [["M"]], + "Madel's": null, + "Madelon": [["M"]], + "Madelon's": null, + "Madelyn": [["M"]], + "Madelyn's": null, + "mademoiselle": [["M", "S"]], + "mademoiselle's": null, + "mademoiselles": null, + "Madge": [["M"]], + "Madge's": null, + "madhouse": [["S", "M"]], + "madhouses": null, + "madhouse's": null, + "Madhya": [["M"]], + "Madhya's": null, + "Madison": [["M"]], + "Madison's": null, + "Madlen": [["M"]], + "Madlen's": null, + "Madlin": [["M"]], + "Madlin's": null, + "madman": [["M"]], + "madman's": null, + "madmen": null, + "madness": [["S", "M"]], + "madnesses": null, + "madness's": null, + "Madonna": [["M", "S"]], + "Madonna's": null, + "Madonnas": null, + "mad": [["P", "S", "Y"]], + "mads": null, + "madly": null, + "Madras": null, + "madras": [["S", "M"]], + "madrases": null, + "madras's": null, + "Madrid": [["M"]], + "Madrid's": null, + "madrigal": [["M", "S", "G"]], + "madrigal's": null, + "madrigals": null, + "madrigaling": null, + "Madsen": [["M"]], + "Madsen's": null, + "Madurai": [["M"]], + "Madurai's": null, + "madwoman": [["M"]], + "madwoman's": null, + "madwomen": null, + "Mady": [["M"]], + "Mady's": null, + "Maegan": [["M"]], + "Maegan's": null, + "Maelstrom": [["M"]], + "Maelstrom's": null, + "maelstrom": [["S", "M"]], + "maelstroms": null, + "maelstrom's": null, + "Mae": [["M"]], + "Mae's": null, + "maestro": [["M", "S"]], + "maestro's": null, + "maestros": null, + "Maeterlinck": [["M"]], + "Maeterlinck's": null, + "Mafia": [["M", "S"]], + "Mafia's": null, + "Mafias": null, + "mafia": [["S"]], + "mafias": null, + "mafiosi": null, + "mafioso": [["M"]], + "mafioso's": null, + "Mafioso": [["S"]], + "Mafiosos": null, + "MAG": null, + "magazine": [["D", "S", "M", "G"]], + "magazined": null, + "magazines": null, + "magazine's": null, + "magazining": null, + "Magdaia": [["M"]], + "Magdaia's": null, + "Magdalena": [["M"]], + "Magdalena's": null, + "Magdalene": [["M"]], + "Magdalene's": null, + "Magdalen": [["M"]], + "Magdalen's": null, + "Magda": [["M"]], + "Magda's": null, + "Magellanic": null, + "Magellan": [["M"]], + "Magellan's": null, + "magenta": [["M", "S"]], + "magenta's": null, + "magentas": null, + "magged": null, + "Maggee": [["M"]], + "Maggee's": null, + "Maggie": [["M"]], + "Maggie's": null, + "Maggi": [["M"]], + "Maggi's": null, + "magging": null, + "maggot": [["M", "S"]], + "maggot's": null, + "maggots": null, + "maggoty": [["R", "T"]], + "maggotier": null, + "maggotiest": null, + "Maggy": [["M"]], + "Maggy's": null, + "magi": null, + "magical": [["Y"]], + "magically": null, + "magician": [["M", "S"]], + "magician's": null, + "magicians": null, + "magicked": null, + "magicking": null, + "magic": [["S", "M"]], + "magics": null, + "magic's": null, + "Magill": [["M"]], + "Magill's": null, + "Magi": [["M"]], + "Magi's": null, + "Maginot": [["M"]], + "Maginot's": null, + "magisterial": [["Y"]], + "magisterially": null, + "magistracy": [["M", "S"]], + "magistracy's": null, + "magistracies": null, + "magistrate": [["M", "S"]], + "magistrate's": null, + "magistrates": null, + "Mag": [["M"]], + "Mag's": null, + "magma": [["S", "M"]], + "magmas": null, + "magma's": null, + "magnanimity": [["S", "M"]], + "magnanimities": null, + "magnanimity's": null, + "magnanimosity": null, + "magnanimous": [["P", "Y"]], + "magnanimousness": null, + "magnanimously": null, + "magnate": [["S", "M"]], + "magnates": null, + "magnate's": null, + "magnesia": [["M", "S"]], + "magnesia's": null, + "magnesias": null, + "magnesite": [["M"]], + "magnesite's": null, + "magnesium": [["S", "M"]], + "magnesiums": null, + "magnesium's": null, + "magnetically": null, + "magnetic": [["S"]], + "magnetics": [["M"]], + "magnetics's": null, + "magnetism": [["S", "M"]], + "magnetisms": null, + "magnetism's": null, + "magnetite": [["S", "M"]], + "magnetites": null, + "magnetite's": null, + "magnetizable": null, + "magnetization": [["A", "S", "C", "M"]], + "remagnetization": null, + "remagnetizations": null, + "remagnetization's": null, + "magnetizations": null, + "demagnetizations": null, + "demagnetization": null, + "demagnetization's": null, + "magnetization's": null, + "magnetize": [["C", "G", "D", "S"]], + "demagnetize": null, + "demagnetizing": null, + "demagnetized": null, + "demagnetizes": null, + "magnetizing": null, + "magnetized": [["U"]], + "magnetizes": null, + "unmagnetized": [["M", "S"]], + "magnetodynamics": null, + "magnetohydrodynamical": null, + "magnetohydrodynamics": [["M"]], + "magnetohydrodynamics's": null, + "magnetometer": [["M", "S"]], + "magnetometer's": null, + "magnetometers": null, + "magneto": [["M", "S"]], + "magneto's": null, + "magnetos": null, + "magnetosphere": [["M"]], + "magnetosphere's": null, + "magnetron": [["M"]], + "magnetron's": null, + "magnet": [["S", "M"]], + "magnets": null, + "magnet's": null, + "magnification": [["M"]], + "magnification's": null, + "magnificence": [["S", "M"]], + "magnificences": null, + "magnificence's": null, + "magnificent": [["Y"]], + "magnificently": null, + "magnified": [["U"]], + "unmagnified": null, + "magnify": [["D", "R", "S", "G", "N", "X", "Z"]], + "magnifier": null, + "magnifies": null, + "magnifying": null, + "magnifications": null, + "magnifiers": null, + "magniloquence": [["M", "S"]], + "magniloquence's": null, + "magniloquences": null, + "magniloquent": null, + "Magnitogorsk": [["M"]], + "Magnitogorsk's": null, + "magnitude": [["S", "M"]], + "magnitudes": null, + "magnitude's": null, + "magnolia": [["S", "M"]], + "magnolias": null, + "magnolia's": null, + "Magnum": null, + "magnum": [["S", "M"]], + "magnums": null, + "magnum's": null, + "Magnuson": [["M"]], + "Magnuson's": null, + "Magog": [["M"]], + "Magog's": null, + "Magoo": [["M"]], + "Magoo's": null, + "magpie": [["S", "M"]], + "magpies": null, + "magpie's": null, + "Magritte": [["M"]], + "Magritte's": null, + "Magruder": [["M"]], + "Magruder's": null, + "mag": [["S"]], + "mags": null, + "Magsaysay": [["M"]], + "Magsaysay's": null, + "Maguire": [["S", "M"]], + "Maguires": null, + "Maguire's": null, + "Magus": [["M"]], + "Magus's": null, + "Magyar": [["M", "S"]], + "Magyar's": null, + "Magyars": null, + "Mahabharata": null, + "Mahala": [["M"]], + "Mahala's": null, + "Mahalia": [["M"]], + "Mahalia's": null, + "maharajah": [["M"]], + "maharajah's": null, + "maharajahs": null, + "maharanee's": null, + "maharani": [["M", "S"]], + "maharani's": null, + "maharanis": null, + "Maharashtra": [["M"]], + "Maharashtra's": null, + "maharishi": [["S", "M"]], + "maharishis": null, + "maharishi's": null, + "mahatma": [["S", "M"]], + "mahatmas": null, + "mahatma's": null, + "Mahavira": [["M"]], + "Mahavira's": null, + "Mahayana": [["M"]], + "Mahayana's": null, + "Mahayanist": null, + "Mahdi": [["M"]], + "Mahdi's": null, + "Mahfouz": [["M"]], + "Mahfouz's": null, + "Mahican": [["S", "M"]], + "Mahicans": null, + "Mahican's": null, + "mahjong's": null, + "Mahler": [["M"]], + "Mahler's": null, + "Mahmoud": [["M"]], + "Mahmoud's": null, + "Mahmud": [["M"]], + "Mahmud's": null, + "mahogany": [["M", "S"]], + "mahogany's": null, + "mahoganies": null, + "Mahomet's": null, + "mahout": [["S", "M"]], + "mahouts": null, + "mahout's": null, + "Maia": [["M"]], + "Maia's": null, + "Maible": [["M"]], + "Maible's": null, + "maidenhair": [["M", "S"]], + "maidenhair's": null, + "maidenhairs": null, + "maidenhead": [["S", "M"]], + "maidenheads": null, + "maidenhead's": null, + "maidenhood": [["S", "M"]], + "maidenhoods": null, + "maidenhood's": null, + "maidenly": [["P"]], + "maidenliness": null, + "maiden": [["Y", "M"]], + "maiden's": null, + "maidservant": [["M", "S"]], + "maidservant's": null, + "maidservants": null, + "maid": [["S", "M", "N", "X"]], + "maids": null, + "maid's": null, + "maidens": null, + "maier": null, + "Maier": [["M"]], + "Maier's": null, + "Maiga": [["M"]], + "Maiga's": null, + "Maighdiln": [["M"]], + "Maighdiln's": null, + "Maigret": [["M"]], + "Maigret's": null, + "mailbag": [["M", "S"]], + "mailbag's": null, + "mailbags": null, + "mailbox": [["M", "S"]], + "mailbox's": null, + "mailboxes": null, + "mail": [["B", "S", "J", "G", "Z", "M", "R", "D"]], + "mailable": null, + "mails": null, + "mailings": null, + "mailing": null, + "mailers": null, + "mail's": null, + "mailer": [["M"]], + "mailed": null, + "mailer's": null, + "Mailer": [["M"]], + "Mailer's": null, + "Maillol": [["M"]], + "Maillol's": null, + "maillot": [["S", "M"]], + "maillots": null, + "maillot's": null, + "mailman": [["M"]], + "mailman's": null, + "mailmen": null, + "Maiman": [["M"]], + "Maiman's": null, + "maimedness": [["M"]], + "maimedness's": null, + "maimed": [["P"]], + "maimer": [["M"]], + "maimer's": null, + "Maimonides": [["M"]], + "Maimonides's": null, + "Mai": [["M", "R"]], + "Mai's": null, + "maim": [["S", "G", "Z", "R", "D"]], + "maims": null, + "maiming": null, + "maimers": null, + "mainbrace": [["M"]], + "mainbrace's": null, + "Maine": [["M", "Z", "R"]], + "Maine's": null, + "Mainers": null, + "Mainer": [["M"]], + "Mainer's": null, + "mainframe": [["M", "S"]], + "mainframe's": null, + "mainframes": null, + "mainlander": [["M"]], + "mainlander's": null, + "mainland": [["S", "R", "M", "Z"]], + "mainlands": null, + "mainland's": null, + "mainlanders": null, + "mainliner": [["M"]], + "mainliner's": null, + "mainline": [["R", "S", "D", "Z", "G"]], + "mainlines": null, + "mainlined": null, + "mainliners": null, + "mainlining": null, + "mainly": null, + "mainmast": [["S", "M"]], + "mainmasts": null, + "mainmast's": null, + "main": [["S", "A"]], + "mains": [["M"]], + "remains": null, + "remain": [["G", "D"]], + "mainsail": [["S", "M"]], + "mainsails": null, + "mainsail's": null, + "mains's": null, + "mainspring": [["S", "M"]], + "mainsprings": null, + "mainspring's": null, + "mainstay": [["M", "S"]], + "mainstay's": null, + "mainstays": null, + "mainstream": [["D", "R", "M", "S", "G"]], + "mainstreamed": null, + "mainstreamer": null, + "mainstream's": null, + "mainstreams": null, + "mainstreaming": null, + "maintainability": null, + "maintainable": [["U"]], + "unmaintainable": null, + "maintain": [["B", "R", "D", "Z", "G", "S"]], + "maintainer": [["M"]], + "maintained": [["U"]], + "maintainers": null, + "maintaining": null, + "maintains": null, + "unmaintained": null, + "maintainer's": null, + "maintenance": [["S", "M"]], + "maintenances": null, + "maintenance's": null, + "maintop": [["S", "M"]], + "maintops": null, + "maintop's": null, + "maiolica's": null, + "Maire": [["M"]], + "Maire's": null, + "Mair": [["M"]], + "Mair's": null, + "Maisey": [["M"]], + "Maisey's": null, + "Maisie": [["M"]], + "Maisie's": null, + "maisonette": [["M", "S"]], + "maisonette's": null, + "maisonettes": null, + "Maison": [["M"]], + "Maison's": null, + "Maitilde": [["M"]], + "Maitilde's": null, + "maize": [["M", "S"]], + "maize's": null, + "maizes": null, + "Maj": null, + "Maje": [["M"]], + "Maje's": null, + "majestic": null, + "majestically": null, + "majesty": [["M", "S"]], + "majesty's": null, + "majesties": null, + "Majesty": [["M", "S"]], + "Majesty's": null, + "Majesties": null, + "majolica": [["S", "M"]], + "majolicas": null, + "majolica's": null, + "Majorca": [["M"]], + "Majorca's": null, + "major": [["D", "M", "G", "S"]], + "majored": null, + "major's": null, + "majoring": null, + "majors": null, + "majordomo": [["S"]], + "majordomos": null, + "majorette": [["S", "M"]], + "majorettes": null, + "majorette's": null, + "majority": [["S", "M"]], + "majorities": null, + "majority's": null, + "Major": [["M"]], + "Major's": null, + "Majuro": [["M"]], + "Majuro's": null, + "makable": null, + "Makarios": [["M"]], + "Makarios's": null, + "makefile": [["S"]], + "makefiles": null, + "makeover": [["S"]], + "makeovers": null, + "Maker": [["M"]], + "Maker's": null, + "maker": [["S", "M"]], + "makers": null, + "maker's": null, + "makeshift": [["S"]], + "makeshifts": null, + "make": [["U", "G", "S", "A"]], + "unmake": null, + "unmaking": null, + "unmakes": null, + "making": [["S", "M"]], + "remaking": null, + "makes": null, + "remakes": null, + "remake": [["M"]], + "makeup": [["M", "S"]], + "makeup's": null, + "makeups": null, + "makings": null, + "making's": null, + "Malabar": [["M"]], + "Malabar's": null, + "Malabo": [["M"]], + "Malabo's": null, + "Malacca": [["M"]], + "Malacca's": null, + "Malachi": [["M"]], + "Malachi's": null, + "malachite": [["S", "M"]], + "malachites": null, + "malachite's": null, + "maladapt": [["D", "V"]], + "maladapted": null, + "maladaptive": null, + "maladjust": [["D", "L", "V"]], + "maladjusted": null, + "maladjustment": [["M", "S"]], + "maladjustive": null, + "maladjustment's": null, + "maladjustments": null, + "maladministration": null, + "maladroitness": [["M", "S"]], + "maladroitness's": null, + "maladroitnesses": null, + "maladroit": [["Y", "P"]], + "maladroitly": null, + "malady": [["M", "S"]], + "malady's": null, + "maladies": null, + "Malagasy": [["M"]], + "Malagasy's": null, + "malaise": [["S", "M"]], + "malaises": null, + "malaise's": null, + "Mala": [["M"]], + "Mala's": null, + "Malamud": [["M"]], + "Malamud's": null, + "malamute": [["S", "M"]], + "malamutes": null, + "malamute's": null, + "Malanie": [["M"]], + "Malanie's": null, + "malaprop": null, + "malapropism": [["S", "M"]], + "malapropisms": null, + "malapropism's": null, + "Malaprop": [["M"]], + "Malaprop's": null, + "malarial": null, + "malaria": [["M", "S"]], + "malaria's": null, + "malarias": null, + "malarious": null, + "malarkey": [["S", "M"]], + "malarkeys": null, + "malarkey's": null, + "malathion": [["S"]], + "malathions": null, + "Malawian": [["S"]], + "Malawians": null, + "Malawi": [["M"]], + "Malawi's": null, + "Malayalam": [["M"]], + "Malayalam's": null, + "Malaya": [["M"]], + "Malaya's": null, + "Malayan": [["M", "S"]], + "Malayan's": null, + "Malayans": null, + "Malaysia": [["M"]], + "Malaysia's": null, + "Malaysian": [["S"]], + "Malaysians": null, + "Malay": [["S", "M"]], + "Malays": null, + "Malay's": null, + "Malchy": [["M"]], + "Malchy's": null, + "Malcolm": [["M"]], + "Malcolm's": null, + "malcontentedness": [["M"]], + "malcontentedness's": null, + "malcontented": [["P", "Y"]], + "malcontentedly": null, + "malcontent": [["S", "M", "D"]], + "malcontents": null, + "malcontent's": null, + "Maldive": [["S", "M"]], + "Maldives": null, + "Maldive's": null, + "Maldivian": [["S"]], + "Maldivians": null, + "Maldonado": [["M"]], + "Maldonado's": null, + "maledict": null, + "malediction": [["M", "S"]], + "malediction's": null, + "maledictions": null, + "malefaction": [["M", "S"]], + "malefaction's": null, + "malefactions": null, + "malefactor": [["M", "S"]], + "malefactor's": null, + "malefactors": null, + "malefic": null, + "maleficence": [["M", "S"]], + "maleficence's": null, + "maleficences": null, + "maleficent": null, + "Male": [["M"]], + "Male's": null, + "Malena": [["M"]], + "Malena's": null, + "maleness": [["M", "S"]], + "maleness's": null, + "malenesses": null, + "male": [["P", "S", "M"]], + "males": null, + "male's": null, + "malevolence": [["S"]], + "malevolences": null, + "malevolencies": null, + "malevolent": [["Y"]], + "malevolently": null, + "malfeasance": [["S", "M"]], + "malfeasances": null, + "malfeasance's": null, + "malfeasant": null, + "malformation": [["M", "S"]], + "malformation's": null, + "malformations": null, + "malformed": null, + "malfunction": [["S", "D", "G"]], + "malfunctions": null, + "malfunctioned": null, + "malfunctioning": null, + "Malia": [["M"]], + "Malia's": null, + "Malian": [["S"]], + "Malians": null, + "Malibu": [["M"]], + "Malibu's": null, + "malice": [["M", "G", "S", "D"]], + "malice's": null, + "malicing": null, + "malices": null, + "maliced": null, + "maliciousness": [["M", "S"]], + "maliciousness's": null, + "maliciousnesses": null, + "malicious": [["Y", "U"]], + "maliciously": null, + "unmaliciously": null, + "unmalicious": null, + "malignancy": [["S", "M"]], + "malignancies": null, + "malignancy's": null, + "malignant": [["Y", "S"]], + "malignantly": null, + "malignants": null, + "malign": [["G", "S", "R", "D", "Y", "Z"]], + "maligning": null, + "maligns": null, + "maligner": null, + "maligned": null, + "malignly": null, + "maligners": null, + "malignity": [["M", "S"]], + "malignity's": null, + "malignities": null, + "Mali": [["M"]], + "Mali's": null, + "Malina": [["M"]], + "Malina's": null, + "Malinda": [["M"]], + "Malinda's": null, + "Malinde": [["M"]], + "Malinde's": null, + "malingerer": [["M"]], + "malingerer's": null, + "malinger": [["G", "Z", "R", "D", "S"]], + "malingering": null, + "malingerers": null, + "malingered": null, + "malingers": null, + "Malinowski": [["M"]], + "Malinowski's": null, + "Malissa": [["M"]], + "Malissa's": null, + "Malissia": [["M"]], + "Malissia's": null, + "mallard": [["S", "M"]], + "mallards": null, + "mallard's": null, + "Mallarm�": [["M"]], + "Mallarm�'s": null, + "malleability": [["S", "M"]], + "malleabilities": null, + "malleability's": null, + "malleableness": [["M"]], + "malleableness's": null, + "malleable": [["P"]], + "mallet": [["M", "S"]], + "mallet's": null, + "mallets": null, + "Mallissa": [["M"]], + "Mallissa's": null, + "Mallorie": [["M"]], + "Mallorie's": null, + "Mallory": [["M"]], + "Mallory's": null, + "mallow": [["M", "S"]], + "mallow's": null, + "mallows": null, + "mall": [["S", "G", "M", "D"]], + "malls": null, + "malling": null, + "mall's": null, + "malled": null, + "Mal": [["M"]], + "Mal's": null, + "malnourished": null, + "malnutrition": [["S", "M"]], + "malnutritions": null, + "malnutrition's": null, + "malocclusion": [["M", "S"]], + "malocclusion's": null, + "malocclusions": null, + "malodorous": null, + "Malone": [["M"]], + "Malone's": null, + "Malorie": [["M"]], + "Malorie's": null, + "Malory": [["M"]], + "Malory's": null, + "malposed": null, + "malpractice": [["S", "M"]], + "malpractices": null, + "malpractice's": null, + "Malraux": [["M"]], + "Malraux's": null, + "Malta": [["M"]], + "Malta's": null, + "malted": [["S"]], + "malteds": null, + "Maltese": null, + "Malthusian": [["S"]], + "Malthusians": null, + "Malthus": [["M"]], + "Malthus's": null, + "malting": [["M"]], + "malting's": null, + "maltose": [["S", "M"]], + "maltoses": null, + "maltose's": null, + "maltreat": [["G", "D", "S", "L"]], + "maltreating": null, + "maltreated": null, + "maltreats": null, + "maltreatment": [["S"]], + "maltreatments": null, + "malt": [["S", "G", "M", "D"]], + "malts": null, + "malt's": null, + "malty": [["R", "T"]], + "maltier": null, + "maltiest": null, + "Malva": [["M"]], + "Malva's": null, + "Malvina": [["M"]], + "Malvina's": null, + "Malvin": [["M"]], + "Malvin's": null, + "Malynda": [["M"]], + "Malynda's": null, + "mama": [["S", "M"]], + "mamas": null, + "mama's": null, + "mamba": [["S", "M"]], + "mambas": null, + "mamba's": null, + "mambo": [["G", "S", "D", "M"]], + "mamboing": null, + "mambos": null, + "mamboed": null, + "mambo's": null, + "Mame": [["M"]], + "Mame's": null, + "Mamet": [["M"]], + "Mamet's": null, + "ma": [["M", "H"]], + "ma's": null, + "math": [["M"]], + "Mamie": [["M"]], + "Mamie's": null, + "mammalian": [["S", "M"]], + "mammalians": null, + "mammalian's": null, + "mammal": [["S", "M"]], + "mammals": null, + "mammal's": null, + "mammary": null, + "mamma's": null, + "mammogram": [["S"]], + "mammograms": null, + "mammography": [["S"]], + "mammographies": null, + "Mammon's": null, + "mammon": [["S", "M"]], + "mammons": null, + "mammon's": null, + "mammoth": [["M"]], + "mammoth's": null, + "mammoths": null, + "mammy": [["S", "M"]], + "mammies": null, + "mammy's": null, + "Mamore": [["M"]], + "Mamore's": null, + "manacle": [["S", "D", "M", "G"]], + "manacles": null, + "manacled": null, + "manacle's": null, + "manacling": null, + "manageability": [["S"]], + "manageabilities": null, + "manageableness": null, + "manageable": [["U"]], + "unmanageable": null, + "managed": [["U"]], + "unmanaged": null, + "management": [["S", "M"]], + "managements": null, + "management's": null, + "manageress": [["M"]], + "manageress's": null, + "managerial": [["Y"]], + "managerially": null, + "manager": [["M"]], + "manager's": null, + "managership": [["M"]], + "managership's": null, + "manage": [["Z", "L", "G", "R", "S", "D"]], + "managers": null, + "managing": null, + "manages": null, + "Managua": [["M"]], + "Managua's": null, + "Manama": [["M"]], + "Manama's": null, + "ma�ana": [["M"]], + "ma�ana's": null, + "mananas": null, + "Manasseh": [["M"]], + "Manasseh's": null, + "manatee": [["S", "M"]], + "manatees": null, + "manatee's": null, + "Manaus's": null, + "Manchester": [["M"]], + "Manchester's": null, + "Manchu": [["M", "S"]], + "Manchu's": null, + "Manchus": null, + "Manchuria": [["M"]], + "Manchuria's": null, + "Manchurian": [["S"]], + "Manchurians": null, + "Mancini": [["M"]], + "Mancini's": null, + "manciple": [["M"]], + "manciple's": null, + "Mancunian": [["M", "S"]], + "Mancunian's": null, + "Mancunians": null, + "mandala": [["S", "M"]], + "mandalas": null, + "mandala's": null, + "Mandalay": [["M"]], + "Mandalay's": null, + "Manda": [["M"]], + "Manda's": null, + "mandamus": [["G", "M", "S", "D"]], + "mandamusing": null, + "mandamus's": null, + "mandamuses": null, + "mandamused": null, + "Mandarin": null, + "mandarin": [["M", "S"]], + "mandarin's": null, + "mandarins": null, + "mandate": [["S", "D", "M", "G"]], + "mandates": null, + "mandated": null, + "mandate's": null, + "mandating": null, + "mandatory": [["S"]], + "mandatories": null, + "Mandela": null, + "Mandelbrot": [["M"]], + "Mandelbrot's": null, + "Mandel": [["M"]], + "Mandel's": null, + "mandible": [["M", "S"]], + "mandible's": null, + "mandibles": null, + "mandibular": null, + "Mandie": [["M"]], + "Mandie's": null, + "Mandi": [["M"]], + "Mandi's": null, + "Mandingo": [["M"]], + "Mandingo's": null, + "mandolin": [["M", "S"]], + "mandolin's": null, + "mandolins": null, + "mandrake": [["M", "S"]], + "mandrake's": null, + "mandrakes": null, + "mandrel": [["S", "M"]], + "mandrels": null, + "mandrel's": null, + "mandrill": [["S", "M"]], + "mandrills": null, + "mandrill's": null, + "Mandy": [["M"]], + "Mandy's": null, + "man�ge": [["G", "S", "D"]], + "man�ging": null, + "man�ges": null, + "man�ged": null, + "mane": [["M", "D", "S"]], + "mane's": null, + "maned": null, + "manes": null, + "Manet": [["M"]], + "Manet's": null, + "maneuverability": [["M", "S"]], + "maneuverability's": null, + "maneuverabilities": null, + "maneuverer": [["M"]], + "maneuverer's": null, + "maneuver": [["M", "R", "D", "S", "G", "B"]], + "maneuver's": null, + "maneuvered": null, + "maneuvers": null, + "maneuvering": null, + "maneuverable": null, + "Manfred": [["M"]], + "Manfred's": null, + "manful": [["Y"]], + "manfully": null, + "manganese": [["M", "S"]], + "manganese's": null, + "manganeses": null, + "mange": [["G", "M", "S", "R", "D", "Z"]], + "manging": null, + "mange's": null, + "manges": null, + "manger": [["M"]], + "manged": null, + "mangers": null, + "manger's": null, + "manginess": [["S"]], + "manginesses": null, + "mangler": [["M"]], + "mangler's": null, + "mangle": [["R", "S", "D", "G"]], + "mangles": null, + "mangled": null, + "mangling": null, + "mangoes": null, + "mango": [["M"]], + "mango's": null, + "mangrove": [["M", "S"]], + "mangrove's": null, + "mangroves": null, + "mangy": [["P", "R", "T"]], + "mangier": null, + "mangiest": null, + "manhandle": [["G", "S", "D"]], + "manhandling": null, + "manhandles": null, + "manhandled": null, + "Manhattan": [["S", "M"]], + "Manhattans": null, + "Manhattan's": null, + "manhole": [["M", "S"]], + "manhole's": null, + "manholes": null, + "manhood": [["M", "S"]], + "manhood's": null, + "manhoods": null, + "manhunt": [["S", "M"]], + "manhunts": null, + "manhunt's": null, + "maniacal": [["Y"]], + "maniacally": null, + "maniac": [["S", "M"]], + "maniacs": null, + "maniac's": null, + "mania": [["S", "M"]], + "manias": null, + "mania's": null, + "manically": null, + "Manichean": [["M"]], + "Manichean's": null, + "manic": [["S"]], + "manics": null, + "manicure": [["M", "G", "S", "D"]], + "manicure's": null, + "manicuring": null, + "manicures": null, + "manicured": null, + "manicurist": [["S", "M"]], + "manicurists": null, + "manicurist's": null, + "manifestation": [["S", "M"]], + "manifestations": null, + "manifestation's": null, + "manifesto": [["G", "S", "D", "M"]], + "manifestoing": null, + "manifestos": null, + "manifestoed": null, + "manifesto's": null, + "manifest": [["Y", "D", "P", "G", "S"]], + "manifestly": null, + "manifested": null, + "manifestness": null, + "manifesting": null, + "manifests": null, + "manifolder": [["M"]], + "manifolder's": null, + "manifold": [["G", "P", "Y", "R", "D", "M", "S"]], + "manifolding": null, + "manifoldness": [["M"]], + "manifoldly": null, + "manifolded": null, + "manifold's": null, + "manifolds": null, + "manifoldness's": null, + "manikin": [["M", "S"]], + "manikin's": null, + "manikins": null, + "Manila": [["M", "S"]], + "Manila's": null, + "Manilas": null, + "manila": [["S"]], + "manilas": null, + "manilla's": null, + "Mani": [["M"]], + "Mani's": null, + "manioc": [["S", "M"]], + "maniocs": null, + "manioc's": null, + "manipulability": null, + "manipulable": null, + "manipulate": [["S", "D", "X", "B", "V", "G", "N"]], + "manipulates": null, + "manipulated": null, + "manipulations": null, + "manipulatable": null, + "manipulative": [["P", "M"]], + "manipulating": null, + "manipulation": null, + "manipulativeness": null, + "manipulative's": null, + "manipulator": [["M", "S"]], + "manipulator's": null, + "manipulators": null, + "manipulatory": null, + "Manitoba": [["M"]], + "Manitoba's": null, + "Manitoulin": [["M"]], + "Manitoulin's": null, + "Manitowoc": [["M"]], + "Manitowoc's": null, + "mankind": [["M"]], + "mankind's": null, + "Mankowski": [["M"]], + "Mankowski's": null, + "Manley": [["M"]], + "Manley's": null, + "manlike": null, + "manliness": [["S", "M"]], + "manlinesses": null, + "manliness's": [["U"]], + "unmanliness's": null, + "manly": [["U", "R", "P", "T"]], + "unmanly": null, + "unmanlier": null, + "unmanliness": null, + "manlier": null, + "manliest": null, + "manna": [["M", "S"]], + "manna's": null, + "mannas": null, + "manned": [["U"]], + "unmanned": null, + "mannequin": [["M", "S"]], + "mannequin's": null, + "mannequins": null, + "mannered": [["U"]], + "unmannered": [["Y"]], + "mannerism": [["S", "M"]], + "mannerisms": null, + "mannerism's": null, + "mannerist": [["M"]], + "mannerist's": null, + "mannerliness": [["M", "U"]], + "mannerliness's": null, + "unmannerliness's": null, + "unmannerliness": null, + "mannerly": [["U", "P"]], + "unmannerly": null, + "manner": [["S", "D", "Y", "M"]], + "manners": null, + "manner's": null, + "Mann": [["G", "M"]], + "Manning": [["M"]], + "Mann's": null, + "Mannheim": [["M"]], + "Mannheim's": null, + "Mannie": [["M"]], + "Mannie's": null, + "mannikin's": null, + "Manning's": null, + "manning": [["U"]], + "unmanning": null, + "mannishness": [["S", "M"]], + "mannishnesses": null, + "mannishness's": null, + "mannish": [["Y", "P"]], + "mannishly": null, + "Manny": [["M"]], + "Manny's": null, + "Manolo": [["M"]], + "Manolo's": null, + "Mano": [["M"]], + "Mano's": null, + "manometer": [["S", "M"]], + "manometers": null, + "manometer's": null, + "Manon": [["M"]], + "Manon's": null, + "manorial": null, + "manor": [["M", "S"]], + "manor's": null, + "manors": null, + "manpower": [["S", "M"]], + "manpowers": null, + "manpower's": null, + "manqu�": [["M"]], + "manqu�'s": null, + "man's": null, + "mansard": [["S", "M"]], + "mansards": null, + "mansard's": null, + "manservant": [["M"]], + "manservant's": null, + "manse": [["X", "N", "M"]], + "mansions": null, + "mansion": [["M"]], + "manse's": null, + "Mansfield": [["M"]], + "Mansfield's": null, + "mansion's": null, + "manslaughter": [["S", "M"]], + "manslaughters": null, + "manslaughter's": null, + "Man": [["S", "M"]], + "Mans": null, + "Man's": null, + "Manson": [["M"]], + "Manson's": null, + "mans": [["S"]], + "manses": null, + "manta": [["M", "S"]], + "manta's": null, + "mantas": null, + "Mantegna": [["M"]], + "Mantegna's": null, + "mantelpiece": [["M", "S"]], + "mantelpiece's": null, + "mantelpieces": null, + "mantel": [["S", "M"]], + "mantels": null, + "mantel's": null, + "mantes": null, + "mantilla": [["M", "S"]], + "mantilla's": null, + "mantillas": null, + "mantissa": [["S", "M"]], + "mantissas": null, + "mantissa's": null, + "mantis": [["S", "M"]], + "mantises": null, + "mantis's": null, + "mantle": [["E", "S", "D", "G"]], + "dismantles": null, + "dismantled": null, + "dismantling": null, + "mantles": null, + "mantled": null, + "mantling": [["M"]], + "Mantle": [["M"]], + "Mantle's": null, + "mantle's": null, + "mantling's": null, + "mantra": [["M", "S"]], + "mantra's": null, + "mantras": null, + "mantrap": [["S", "M"]], + "mantraps": null, + "mantrap's": null, + "manual": [["S", "M", "Y"]], + "manuals": null, + "manual's": null, + "manually": null, + "Manuela": [["M"]], + "Manuela's": null, + "Manuel": [["M"]], + "Manuel's": null, + "manufacture": [["J", "Z", "G", "D", "S", "R"]], + "manufacturings": null, + "manufacturers": null, + "manufacturing": null, + "manufactured": null, + "manufactures": null, + "manufacturer": [["M"]], + "manufacturer's": null, + "manumission": [["M", "S"]], + "manumission's": null, + "manumissions": null, + "manumit": [["S"]], + "manumits": null, + "manumitted": null, + "manumitting": null, + "manure": [["R", "S", "D", "M", "Z", "G"]], + "manurer": null, + "manures": null, + "manured": null, + "manure's": null, + "manurers": null, + "manuring": null, + "manuscript": [["M", "S"]], + "manuscript's": null, + "manuscripts": null, + "man": [["U", "S", "Y"]], + "unman": null, + "unmans": null, + "Manville": [["M"]], + "Manville's": null, + "Manx": null, + "many": null, + "Manya": [["M"]], + "Manya's": null, + "Maoism": [["M", "S"]], + "Maoism's": null, + "Maoisms": null, + "Maoist": [["S"]], + "Maoists": null, + "Mao": [["M"]], + "Mao's": null, + "Maori": [["S", "M"]], + "Maoris": null, + "Maori's": null, + "Maplecrest": [["M"]], + "Maplecrest's": null, + "maple": [["M", "S"]], + "maple's": null, + "maples": null, + "mapmaker": [["S"]], + "mapmakers": null, + "mappable": null, + "mapped": [["U", "A"]], + "unmapped": null, + "remapped": null, + "mapper": [["S"]], + "mappers": null, + "mapping": [["M", "S"]], + "mapping's": null, + "mappings": null, + "Mapplethorpe": [["M"]], + "Mapplethorpe's": null, + "maps": [["A", "U"]], + "remaps": null, + "unmaps": null, + "map": [["S", "M"]], + "map's": null, + "Maputo": [["M"]], + "Maputo's": null, + "Marabel": [["M"]], + "Marabel's": null, + "marabou": [["M", "S"]], + "marabou's": null, + "marabous": null, + "marabout's": null, + "Maracaibo": [["M"]], + "Maracaibo's": null, + "maraca": [["M", "S"]], + "maraca's": null, + "maracas": null, + "Mara": [["M"]], + "Mara's": null, + "maraschino": [["S", "M"]], + "maraschinos": null, + "maraschino's": null, + "Marathi": null, + "marathoner": [["M"]], + "marathoner's": null, + "Marathon": [["M"]], + "Marathon's": null, + "marathon": [["M", "R", "S", "Z"]], + "marathon's": null, + "marathons": null, + "marathoners": null, + "Marat": [["M"]], + "Marat's": null, + "marauder": [["M"]], + "marauder's": null, + "maraud": [["Z", "G", "R", "D", "S"]], + "marauders": null, + "marauding": null, + "marauded": null, + "marauds": null, + "marbleize": [["G", "S", "D"]], + "marbleizing": null, + "marbleizes": null, + "marbleized": null, + "marble": [["J", "R", "S", "D", "M", "G"]], + "marblings": null, + "marbler": [["M"]], + "marbles": null, + "marbled": null, + "marble's": null, + "marbling": [["M"]], + "marbler's": null, + "marbling's": null, + "Marceau": [["M"]], + "Marceau's": null, + "Marcela": [["M"]], + "Marcela's": null, + "Marcelia": [["M"]], + "Marcelia's": null, + "Marcelino": [["M"]], + "Marcelino's": null, + "Marcella": [["M"]], + "Marcella's": null, + "Marcelle": [["M"]], + "Marcelle's": null, + "Marcellina": [["M"]], + "Marcellina's": null, + "Marcelline": [["M"]], + "Marcelline's": null, + "Marcello": [["M"]], + "Marcello's": null, + "Marcellus": [["M"]], + "Marcellus's": null, + "Marcel": [["M"]], + "Marcel's": null, + "Marcelo": [["M"]], + "Marcelo's": null, + "Marchall": [["M"]], + "Marchall's": null, + "Marchelle": [["M"]], + "Marchelle's": null, + "marcher": [["M"]], + "marcher's": null, + "marchioness": [["S", "M"]], + "marchionesses": null, + "marchioness's": null, + "March": [["M", "S"]], + "March's": null, + "Marches": null, + "march": [["R", "S", "D", "Z", "G"]], + "marches": null, + "marched": null, + "marchers": null, + "marching": null, + "Marcia": [["M"]], + "Marcia's": null, + "Marciano": [["M"]], + "Marciano's": null, + "Marcie": [["M"]], + "Marcie's": null, + "Marcile": [["M"]], + "Marcile's": null, + "Marcille": [["M"]], + "Marcille's": null, + "Marci": [["M"]], + "Marci's": null, + "Marc": [["M"]], + "Marc's": null, + "Marconi": [["M"]], + "Marconi's": null, + "Marco": [["S", "M"]], + "Marcos": null, + "Marco's": null, + "Marcotte": [["M"]], + "Marcotte's": null, + "Marcus": [["M"]], + "Marcus's": null, + "Marcy": [["M"]], + "Marcy's": null, + "Mardi": [["S", "M"]], + "Mardis": null, + "Mardi's": null, + "Marduk": [["M"]], + "Marduk's": null, + "Mareah": [["M"]], + "Mareah's": null, + "mare": [["M", "S"]], + "mare's": null, + "mares": null, + "Marena": [["M"]], + "Marena's": null, + "Maren": [["M"]], + "Maren's": null, + "Maressa": [["M"]], + "Maressa's": null, + "Margalit": [["M"]], + "Margalit's": null, + "Margalo": [["M"]], + "Margalo's": null, + "Marga": [["M"]], + "Marga's": null, + "Margareta": [["M"]], + "Margareta's": null, + "Margarete": [["M"]], + "Margarete's": null, + "Margaretha": [["M"]], + "Margaretha's": null, + "Margarethe": [["M"]], + "Margarethe's": null, + "Margaret": [["M"]], + "Margaret's": null, + "Margaretta": [["M"]], + "Margaretta's": null, + "Margarette": [["M"]], + "Margarette's": null, + "margarine": [["M", "S"]], + "margarine's": null, + "margarines": null, + "Margarita": [["M"]], + "Margarita's": null, + "margarita": [["S", "M"]], + "margaritas": null, + "margarita's": null, + "Margarito": [["M"]], + "Margarito's": null, + "Margaux": [["M"]], + "Margaux's": null, + "Margeaux": [["M"]], + "Margeaux's": null, + "Marge": [["M"]], + "Marge's": null, + "Margery": [["M"]], + "Margery's": null, + "Marget": [["M"]], + "Marget's": null, + "Margette": [["M"]], + "Margette's": null, + "Margie": [["M"]], + "Margie's": null, + "Margi": [["M"]], + "Margi's": null, + "marginalia": null, + "marginality": null, + "marginalization": null, + "marginalize": [["S", "D", "G"]], + "marginalizes": null, + "marginalized": null, + "marginalizing": null, + "marginal": [["Y", "S"]], + "marginally": null, + "marginals": null, + "margin": [["G", "S", "D", "M"]], + "margining": null, + "margins": null, + "margined": null, + "margin's": null, + "Margit": [["M"]], + "Margit's": null, + "Margo": [["M"]], + "Margo's": null, + "Margot": [["M"]], + "Margot's": null, + "Margrethe": [["M"]], + "Margrethe's": null, + "Margret": [["M"]], + "Margret's": null, + "Marguerite": [["M"]], + "Marguerite's": null, + "Margy": [["M"]], + "Margy's": null, + "mariachi": [["S", "M"]], + "mariachis": null, + "mariachi's": null, + "maria": [["M"]], + "maria's": null, + "Maria": [["M"]], + "Maria's": null, + "Mariam": [["M"]], + "Mariam's": null, + "Mariana": [["S", "M"]], + "Marianas": null, + "Mariana's": null, + "Marian": [["M", "S"]], + "Marian's": null, + "Marians": null, + "Marianna": [["M"]], + "Marianna's": null, + "Marianne": [["M"]], + "Marianne's": null, + "Mariann": [["M"]], + "Mariann's": null, + "Mariano": [["M"]], + "Mariano's": null, + "Maribelle": [["M"]], + "Maribelle's": null, + "Maribel": [["M"]], + "Maribel's": null, + "Maribeth": [["M"]], + "Maribeth's": null, + "Maricela": [["M"]], + "Maricela's": null, + "Marice": [["M"]], + "Marice's": null, + "Maridel": [["M"]], + "Maridel's": null, + "Marieann": [["M"]], + "Marieann's": null, + "Mariejeanne": [["M"]], + "Mariejeanne's": null, + "Mariele": [["M"]], + "Mariele's": null, + "Marielle": [["M"]], + "Marielle's": null, + "Mariellen": [["M"]], + "Mariellen's": null, + "Mariel": [["M"]], + "Mariel's": null, + "Marie": [["M"]], + "Marie's": null, + "Marietta": [["M"]], + "Marietta's": null, + "Mariette": [["M"]], + "Mariette's": null, + "Marigold": [["M"]], + "Marigold's": null, + "marigold": [["M", "S"]], + "marigold's": null, + "marigolds": null, + "Marijn": [["M"]], + "Marijn's": null, + "Marijo": [["M"]], + "Marijo's": null, + "marijuana": [["S", "M"]], + "marijuanas": null, + "marijuana's": null, + "Marika": [["M"]], + "Marika's": null, + "Marilee": [["M"]], + "Marilee's": null, + "Marilin": [["M"]], + "Marilin's": null, + "Marillin": [["M"]], + "Marillin's": null, + "Marilyn": [["M"]], + "Marilyn's": null, + "marimba": [["S", "M"]], + "marimbas": null, + "marimba's": null, + "Mari": [["M", "S"]], + "Mari's": null, + "Maris": null, + "marinade": [["M", "G", "D", "S"]], + "marinade's": null, + "marinading": null, + "marinaded": null, + "marinades": null, + "Marina": [["M"]], + "Marina's": null, + "marina": [["M", "S"]], + "marina's": null, + "marinas": null, + "marinara": [["S", "M"]], + "marinaras": null, + "marinara's": null, + "marinate": [["N", "G", "X", "D", "S"]], + "marination": [["M"]], + "marinating": null, + "marinations": null, + "marinated": null, + "marinates": null, + "marination's": null, + "mariner": [["M"]], + "mariner's": null, + "Marine": [["S"]], + "Marines": null, + "marine": [["Z", "R", "S"]], + "mariners": null, + "marines": null, + "Marin": [["M"]], + "Marin's": null, + "Marinna": [["M"]], + "Marinna's": null, + "Marino": [["M"]], + "Marino's": null, + "Mario": [["M"]], + "Mario's": null, + "marionette": [["M", "S"]], + "marionette's": null, + "marionettes": null, + "Marion": [["M"]], + "Marion's": null, + "Mariquilla": [["M"]], + "Mariquilla's": null, + "Marisa": [["M"]], + "Marisa's": null, + "Mariska": [["M"]], + "Mariska's": null, + "Marisol": [["M"]], + "Marisol's": null, + "Marissa": [["M"]], + "Marissa's": null, + "Maritain": [["M"]], + "Maritain's": null, + "marital": [["Y"]], + "maritally": null, + "Marita": [["M"]], + "Marita's": null, + "maritime": [["R"]], + "maritimer": null, + "Maritsa": [["M"]], + "Maritsa's": null, + "Maritza": [["M"]], + "Maritza's": null, + "Mariupol": [["M"]], + "Mariupol's": null, + "Marius": [["M"]], + "Marius's": null, + "Mariya": [["M"]], + "Mariya's": null, + "Marja": [["M"]], + "Marja's": null, + "Marje": [["M"]], + "Marje's": null, + "Marjie": [["M"]], + "Marjie's": null, + "Marji": [["M"]], + "Marji's": null, + "Marj": [["M"]], + "Marj's": null, + "marjoram": [["S", "M"]], + "marjorams": null, + "marjoram's": null, + "Marjorie": [["M"]], + "Marjorie's": null, + "Marjory": [["M"]], + "Marjory's": null, + "Marjy": [["M"]], + "Marjy's": null, + "Markab": [["M"]], + "Markab's": null, + "markdown": [["S", "M"]], + "markdowns": null, + "markdown's": null, + "marked": [["A", "U"]], + "remarked": [["U"]], + "unmarked": null, + "markedly": null, + "marker": [["M"]], + "marker's": null, + "marketability": [["S", "M"]], + "marketabilities": null, + "marketability's": null, + "marketable": [["U"]], + "unmarketable": null, + "Marketa": [["M"]], + "Marketa's": null, + "marketeer": [["S"]], + "marketeers": null, + "marketer": [["M"]], + "marketer's": null, + "market": [["G", "S", "M", "R", "D", "J", "B", "Z"]], + "marketing": [["M"]], + "markets": null, + "market's": null, + "marketed": null, + "marketings": null, + "marketers": null, + "marketing's": null, + "marketplace": [["M", "S"]], + "marketplace's": null, + "marketplaces": null, + "mark": [["G", "Z", "R", "D", "M", "B", "S", "J"]], + "marking": [["M"]], + "markers": null, + "mark's": null, + "markable": null, + "marks": [["A"]], + "markings": null, + "Markham": [["M"]], + "Markham's": null, + "marking's": null, + "Markism": [["M"]], + "Markism's": null, + "markkaa": null, + "markka": [["M"]], + "markka's": null, + "Mark": [["M", "S"]], + "Mark's": null, + "Marks": null, + "Markos": null, + "Markov": null, + "Markovian": null, + "Markovitz": [["M"]], + "Markovitz's": null, + "remarks": null, + "marksman": [["M"]], + "marksman's": null, + "marksmanship": [["S"]], + "marksmanships": null, + "marksmen": null, + "markup": [["S", "M"]], + "markups": null, + "markup's": null, + "Markus": [["M"]], + "Markus's": null, + "Marla": [["M"]], + "Marla's": null, + "Marlane": [["M"]], + "Marlane's": null, + "Marlboro": [["M"]], + "Marlboro's": null, + "Marlborough": [["M"]], + "Marlborough's": null, + "Marleah": [["M"]], + "Marleah's": null, + "Marlee": [["M"]], + "Marlee's": null, + "Marleen": [["M"]], + "Marleen's": null, + "Marlena": [["M"]], + "Marlena's": null, + "Marlene": [["M"]], + "Marlene's": null, + "Marley": [["M"]], + "Marley's": null, + "Marlie": [["M"]], + "Marlie's": null, + "Marline": [["M"]], + "Marline's": null, + "marlinespike": [["S", "M"]], + "marlinespikes": null, + "marlinespike's": null, + "Marlin": [["M"]], + "Marlin's": null, + "marlin": [["S", "M"]], + "marlins": null, + "marlin's": null, + "marl": [["M", "D", "S", "G"]], + "marl's": null, + "marled": null, + "marls": null, + "marling": null, + "Marlo": [["M"]], + "Marlo's": null, + "Marlon": [["M"]], + "Marlon's": null, + "Marlowe": [["M"]], + "Marlowe's": null, + "Marlow": [["M"]], + "Marlow's": null, + "Marlyn": [["M"]], + "Marlyn's": null, + "Marmaduke": [["M"]], + "Marmaduke's": null, + "marmalade": [["M", "S"]], + "marmalade's": null, + "marmalades": null, + "Marmara": [["M"]], + "Marmara's": null, + "marmoreal": null, + "marmoset": [["M", "S"]], + "marmoset's": null, + "marmosets": null, + "marmot": [["S", "M"]], + "marmots": null, + "marmot's": null, + "Marna": [["M"]], + "Marna's": null, + "Marne": [["M"]], + "Marne's": null, + "Marney": [["M"]], + "Marney's": null, + "Marnia": [["M"]], + "Marnia's": null, + "Marnie": [["M"]], + "Marnie's": null, + "Marni": [["M"]], + "Marni's": null, + "maroon": [["G", "R", "D", "S"]], + "marooning": null, + "marooner": null, + "marooned": null, + "maroons": null, + "marquee": [["M", "S"]], + "marquee's": null, + "marquees": null, + "Marquesas": [["M"]], + "Marquesas's": null, + "marque": [["S", "M"]], + "marques": null, + "marque's": null, + "marquess": [["M", "S"]], + "marquess's": null, + "marquesses": null, + "marquetry": [["S", "M"]], + "marquetries": null, + "marquetry's": null, + "Marquette": [["M"]], + "Marquette's": null, + "Marquez": [["M"]], + "Marquez's": null, + "marquise": [["M"]], + "marquise's": null, + "marquisette": [["M", "S"]], + "marquisette's": null, + "marquisettes": null, + "Marquis": [["M"]], + "Marquis's": null, + "marquis": [["S", "M"]], + "marquises": null, + "marquis's": null, + "Marquita": [["M"]], + "Marquita's": null, + "Marrakesh": [["M"]], + "Marrakesh's": null, + "marred": [["U"]], + "unmarred": null, + "marriageability": [["S", "M"]], + "marriageabilities": null, + "marriageability's": null, + "marriageable": null, + "marriage": [["A", "S", "M"]], + "remarriage": null, + "remarriages": null, + "remarriage's": null, + "marriages": null, + "marriage's": null, + "married": [["U", "S"]], + "unmarried": null, + "unmarrieds": null, + "marrieds": null, + "Marrilee": [["M"]], + "Marrilee's": null, + "marring": null, + "Marriott": [["M"]], + "Marriott's": null, + "Marris": [["M"]], + "Marris's": null, + "Marrissa": [["M"]], + "Marrissa's": null, + "marrowbone": [["M", "S"]], + "marrowbone's": null, + "marrowbones": null, + "marrow": [["G", "D", "M", "S"]], + "marrowing": null, + "marrowed": null, + "marrow's": null, + "marrows": null, + "marry": [["S", "D", "G", "A"]], + "marries": null, + "remarries": null, + "remarried": null, + "marrying": null, + "remarrying": null, + "remarry": null, + "mar": [["S"]], + "mars": null, + "Marseillaise": [["S", "M"]], + "Marseillaises": null, + "Marseillaise's": null, + "Marseilles": null, + "Marseille's": null, + "marshal": [["G", "M", "D", "R", "S", "Z"]], + "marshaling": null, + "marshal's": null, + "marshaled": null, + "marshaler": null, + "marshals": null, + "marshalers": null, + "Marshalled": [["M"]], + "Marshalled's": null, + "marshaller": null, + "Marshall": [["G", "D", "M"]], + "Marshalling": [["M"]], + "Marshall's": null, + "Marshalling's": null, + "marshallings": null, + "Marshal": [["M"]], + "Marshal's": null, + "Marsha": [["M"]], + "Marsha's": null, + "marshiness": [["M"]], + "marshiness's": null, + "marshland": [["M", "S"]], + "marshland's": null, + "marshlands": null, + "Marsh": [["M"]], + "Marsh's": null, + "marshmallow": [["S", "M"]], + "marshmallows": null, + "marshmallow's": null, + "marsh": [["M", "S"]], + "marsh's": null, + "marshes": null, + "marshy": [["P", "R", "T"]], + "marshier": null, + "marshiest": null, + "Marsiella": [["M"]], + "Marsiella's": null, + "Mar": [["S", "M", "N"]], + "Mars": null, + "Mar's": null, + "marsupial": [["M", "S"]], + "marsupial's": null, + "marsupials": null, + "Martainn": [["M"]], + "Martainn's": null, + "Marta": [["M"]], + "Marta's": null, + "Martelle": [["M"]], + "Martelle's": null, + "Martel": [["M"]], + "Martel's": null, + "marten": [["M"]], + "marten's": null, + "Marten": [["M"]], + "Marten's": null, + "Martguerita": [["M"]], + "Martguerita's": null, + "Martha": [["M"]], + "Martha's": null, + "Marthe": [["M"]], + "Marthe's": null, + "Marthena": [["M"]], + "Marthena's": null, + "Martial": null, + "martial": [["Y"]], + "martially": null, + "Martian": [["S"]], + "Martians": null, + "Martica": [["M"]], + "Martica's": null, + "Martie": [["M"]], + "Martie's": null, + "Marti": [["M"]], + "Marti's": null, + "Martina": [["M"]], + "Martina's": null, + "martinet": [["S", "M"]], + "martinets": null, + "martinet's": null, + "Martinez": [["M"]], + "Martinez's": null, + "martingale": [["M", "S"]], + "martingale's": null, + "martingales": null, + "martini": [["M", "S"]], + "martini's": null, + "martinis": null, + "Martinique": [["M"]], + "Martinique's": null, + "Martin": [["M"]], + "Martin's": null, + "Martino": [["M"]], + "Martino's": null, + "martin": [["S", "M"]], + "martins": null, + "martin's": null, + "Martinson": [["M"]], + "Martinson's": null, + "Martita": [["M"]], + "Martita's": null, + "mart": [["M", "D", "N", "G", "X", "S"]], + "mart's": null, + "marted": null, + "marting": null, + "martens": null, + "marts": null, + "Mart": [["M", "N"]], + "Mart's": null, + "Marty": [["M"]], + "Marty's": null, + "Martyn": [["M"]], + "Martyn's": null, + "Martynne": [["M"]], + "Martynne's": null, + "martyrdom": [["S", "M"]], + "martyrdoms": null, + "martyrdom's": null, + "martyr": [["G", "D", "M", "S"]], + "martyring": null, + "martyred": null, + "martyr's": null, + "martyrs": null, + "Marva": [["M"]], + "Marva's": null, + "marvel": [["D", "G", "S"]], + "marveled": null, + "marveling": null, + "marvels": null, + "Marvell": [["M"]], + "Marvell's": null, + "marvelous": [["P", "Y"]], + "marvelousness": null, + "marvelously": null, + "Marve": [["M"]], + "Marve's": null, + "Marven": [["M"]], + "Marven's": null, + "Marvin": [["M"]], + "Marvin's": null, + "Marv": [["N", "M"]], + "Marv's": null, + "Marwin": [["M"]], + "Marwin's": null, + "Marxian": [["S"]], + "Marxians": null, + "Marxism": [["S", "M"]], + "Marxisms": null, + "Marxism's": null, + "Marxist": [["S", "M"]], + "Marxists": null, + "Marxist's": null, + "Marx": [["M"]], + "Marx's": null, + "Marya": [["M"]], + "Marya's": null, + "Maryanna": [["M"]], + "Maryanna's": null, + "Maryanne": [["M"]], + "Maryanne's": null, + "Maryann": [["M"]], + "Maryann's": null, + "Marybelle": [["M"]], + "Marybelle's": null, + "Marybeth": [["M"]], + "Marybeth's": null, + "Maryellen": [["M"]], + "Maryellen's": null, + "Maryjane": [["M"]], + "Maryjane's": null, + "Maryjo": [["M"]], + "Maryjo's": null, + "Maryland": [["M", "Z", "R"]], + "Maryland's": null, + "Marylanders": null, + "Marylander": null, + "Marylee": [["M"]], + "Marylee's": null, + "Marylinda": [["M"]], + "Marylinda's": null, + "Marylin": [["M"]], + "Marylin's": null, + "Maryl": [["M"]], + "Maryl's": null, + "Marylou": [["M"]], + "Marylou's": null, + "Marylynne": [["M"]], + "Marylynne's": null, + "Mary": [["M"]], + "Mary's": null, + "Maryrose": [["M"]], + "Maryrose's": null, + "Marys": null, + "Marysa": [["M"]], + "Marysa's": null, + "marzipan": [["S", "M"]], + "marzipans": null, + "marzipan's": null, + "Masada": [["M"]], + "Masada's": null, + "Masai": [["M"]], + "Masai's": null, + "Masaryk": [["M"]], + "Masaryk's": null, + "masc": null, + "Mascagni": [["M"]], + "Mascagni's": null, + "mascara": [["S", "G", "M", "D"]], + "mascaras": null, + "mascaraing": null, + "mascara's": null, + "mascaraed": null, + "mascot": [["S", "M"]], + "mascots": null, + "mascot's": null, + "masculineness": [["M"]], + "masculineness's": null, + "masculine": [["P", "Y", "S"]], + "masculinely": null, + "masculines": null, + "masculinity": [["S", "M"]], + "masculinities": null, + "masculinity's": null, + "Masefield": [["M"]], + "Masefield's": null, + "maser": [["M"]], + "maser's": null, + "Maseru": [["M"]], + "Maseru's": null, + "MASH": null, + "Masha": [["M"]], + "Masha's": null, + "Mashhad": [["M"]], + "Mashhad's": null, + "mash": [["J", "G", "Z", "M", "S", "R", "D"]], + "mashings": null, + "mashing": null, + "mashers": null, + "mash's": null, + "mashes": null, + "masher": null, + "mashed": null, + "m": [["A", "S", "K"]], + "rem": null, + "rems": null, + "ms": null, + "proms": null, + "prom": null, + "masked": [["U"]], + "unmasked": null, + "masker": [["M"]], + "masker's": null, + "mask": [["G", "Z", "S", "R", "D", "M", "J"]], + "masking": null, + "maskers": null, + "masks": [["U"]], + "mask's": null, + "maskings": null, + "unmasks": null, + "masochism": [["M", "S"]], + "masochism's": null, + "masochisms": null, + "masochistic": null, + "masochistically": null, + "masochist": [["M", "S"]], + "masochist's": null, + "masochists": null, + "masonic": null, + "Masonic": null, + "Masonite": [["M"]], + "Masonite's": null, + "masonry": [["M", "S"]], + "masonry's": null, + "masonries": null, + "mason": [["S", "D", "M", "G"]], + "masons": null, + "masoned": null, + "mason's": null, + "masoning": null, + "Mason": [["S", "M"]], + "Masons": null, + "Mason's": null, + "masquerader": [["M"]], + "masquerader's": null, + "masquerade": [["R", "S", "D", "G", "M", "Z"]], + "masquerades": null, + "masqueraded": null, + "masquerading": null, + "masquerade's": null, + "masqueraders": null, + "masquer": [["M"]], + "masquer's": null, + "masque": [["R", "S", "M", "Z"]], + "masques": null, + "masque's": null, + "masquers": null, + "Massachusetts": [["M"]], + "Massachusetts's": null, + "massacre": [["D", "R", "S", "M", "G"]], + "massacred": null, + "massacrer": null, + "massacres": null, + "massacre's": null, + "massacring": null, + "massager": [["M"]], + "massager's": null, + "massage": [["S", "R", "D", "M", "G"]], + "massages": null, + "massaged": null, + "massage's": null, + "massaging": null, + "Massasoit": [["M"]], + "Massasoit's": null, + "Massenet": [["M"]], + "Massenet's": null, + "masseur": [["M", "S"]], + "masseur's": null, + "masseurs": null, + "masseuse": [["S", "M"]], + "masseuses": null, + "masseuse's": null, + "Massey": [["M"]], + "Massey's": null, + "massif": [["S", "M"]], + "massifs": null, + "massif's": null, + "Massimiliano": [["M"]], + "Massimiliano's": null, + "Massimo": [["M"]], + "Massimo's": null, + "massing": [["R"]], + "massinger": null, + "massiveness": [["S", "M"]], + "massivenesses": null, + "massiveness's": null, + "massive": [["Y", "P"]], + "massively": null, + "massless": null, + "mas": [["S", "R", "Z"]], + "mases": null, + "masers": null, + "Mass": [["S"]], + "Masses": null, + "mass": [["V", "G", "S", "D"]], + "masses": null, + "massed": null, + "mastectomy": [["M", "S"]], + "mastectomy's": null, + "mastectomies": null, + "masterclass": null, + "mastered": [["A"]], + "remastered": null, + "masterfulness": [["M"]], + "masterfulness's": null, + "masterful": [["Y", "P"]], + "masterfully": null, + "master": [["J", "G", "D", "Y", "M"]], + "masterings": null, + "mastering": null, + "masterly": [["P"]], + "master's": null, + "masterliness": [["M"]], + "masterliness's": null, + "mastermind": [["G", "D", "S"]], + "masterminding": null, + "masterminded": null, + "masterminds": null, + "masterpiece": [["M", "S"]], + "masterpiece's": null, + "masterpieces": null, + "mastership": [["M"]], + "mastership's": null, + "Master": [["S", "M"]], + "Masters": null, + "Master's": null, + "masterstroke": [["M", "S"]], + "masterstroke's": null, + "masterstrokes": null, + "masterwork": [["S"]], + "masterworks": null, + "mastery": [["M", "S"]], + "mastery's": null, + "masteries": null, + "mast": [["G", "Z", "S", "M", "R", "D"]], + "masting": null, + "masters": null, + "masts": null, + "mast's": null, + "masted": null, + "masthead": [["S", "D", "M", "G"]], + "mastheads": null, + "mastheaded": null, + "masthead's": null, + "mastheading": null, + "masticate": [["S", "D", "X", "G", "N"]], + "masticates": null, + "masticated": null, + "mastications": null, + "masticating": null, + "mastication": [["M"]], + "mastication's": null, + "mastic": [["S", "M"]], + "mastics": null, + "mastic's": null, + "mastiff": [["M", "S"]], + "mastiff's": null, + "mastiffs": null, + "mastodon": [["M", "S"]], + "mastodon's": null, + "mastodons": null, + "mastoid": [["S"]], + "mastoids": null, + "masturbate": [["S", "D", "N", "G", "X"]], + "masturbates": null, + "masturbated": null, + "masturbation": [["M"]], + "masturbating": null, + "masturbations": null, + "masturbation's": null, + "masturbatory": null, + "matador": [["S", "M"]], + "matadors": null, + "matador's": null, + "Mata": [["M"]], + "Mata's": null, + "matchable": [["U"]], + "unmatchable": null, + "match": [["B", "M", "R", "S", "D", "Z", "G", "J"]], + "match's": [["A"]], + "matcher": [["M"]], + "matches": [["A"]], + "matched": [["U", "A"]], + "matchers": null, + "matching": null, + "matchings": null, + "matchbook": [["S", "M"]], + "matchbooks": null, + "matchbook's": null, + "matchbox": [["S", "M"]], + "matchboxes": null, + "matchbox's": null, + "unmatched": null, + "rematched": null, + "matcher's": null, + "rematches": null, + "matchless": [["Y"]], + "matchlessly": null, + "matchlock": [["M", "S"]], + "matchlock's": null, + "matchlocks": null, + "matchmake": [["G", "Z", "J", "R"]], + "matchmaking": [["M"]], + "matchmakers": null, + "matchmakings": null, + "matchmaker": [["M"]], + "matchmaker's": null, + "matchmaking's": null, + "matchplay": null, + "rematch's": null, + "matchstick": [["M", "S"]], + "matchstick's": null, + "matchsticks": null, + "matchwood": [["S", "M"]], + "matchwoods": null, + "matchwood's": null, + "mated": [["U"]], + "unmated": null, + "mate": [["I", "M", "S"]], + "inmate": null, + "inmate's": null, + "inmates": null, + "mate's": null, + "mates": [["U"]], + "Matelda": [["M"]], + "Matelda's": null, + "Mateo": [["M"]], + "Mateo's": null, + "materialism": [["S", "M"]], + "materialisms": null, + "materialism's": null, + "materialistic": null, + "materialistically": null, + "materialist": [["S", "M"]], + "materialists": null, + "materialist's": null, + "materiality": [["M"]], + "materiality's": null, + "materialization": [["S", "M"]], + "materializations": null, + "materialization's": null, + "materialize": [["C", "D", "S"]], + "dematerialize": null, + "dematerialized": null, + "dematerializes": null, + "materialized": [["A"]], + "materializes": [["A"]], + "rematerialized": null, + "materializer": [["S", "M"]], + "materializers": null, + "materializer's": null, + "rematerializes": null, + "materializing": null, + "materialness": [["M"]], + "materialness's": null, + "material": [["S", "P", "Y", "M"]], + "materials": null, + "materially": null, + "material's": null, + "mat�riel": [["M", "S"]], + "mat�riel's": null, + "mat�riels": null, + "mater": [["M"]], + "mater's": null, + "maternal": [["Y"]], + "maternally": null, + "maternity": [["M", "S"]], + "maternity's": null, + "maternities": null, + "unmates": null, + "mathematical": [["Y"]], + "mathematically": null, + "Mathematica": [["M"]], + "Mathematica's": null, + "mathematician": [["S", "M"]], + "mathematicians": null, + "mathematician's": null, + "mathematic": [["S"]], + "mathematics": [["M"]], + "mathematics's": null, + "Mathematik": [["M"]], + "Mathematik's": null, + "Mather": [["M"]], + "Mather's": null, + "Mathe": [["R", "M"]], + "Mathe's": null, + "Mathew": [["M", "S"]], + "Mathew's": null, + "Mathews": null, + "Mathewson": [["M"]], + "Mathewson's": null, + "Mathian": [["M"]], + "Mathian's": null, + "Mathias": null, + "Mathieu": [["M"]], + "Mathieu's": null, + "Mathilda": [["M"]], + "Mathilda's": null, + "Mathilde": [["M"]], + "Mathilde's": null, + "Mathis": null, + "math's": null, + "maths": null, + "Matias": [["M"]], + "Matias's": null, + "Matilda": [["M"]], + "Matilda's": null, + "Matilde": [["M"]], + "Matilde's": null, + "matin�e": [["S"]], + "matin�es": null, + "mating": [["M"]], + "mating's": null, + "matins": [["M"]], + "matins's": null, + "Matisse": [["S", "M"]], + "Matisses": null, + "Matisse's": null, + "matriarchal": null, + "matriarch": [["M"]], + "matriarch's": null, + "matriarchs": null, + "matriarchy": [["M", "S"]], + "matriarchy's": null, + "matriarchies": null, + "matrices": null, + "matricidal": null, + "matricide": [["M", "S"]], + "matricide's": null, + "matricides": null, + "matriculate": [["X", "S", "D", "G", "N"]], + "matriculations": null, + "matriculates": null, + "matriculated": null, + "matriculating": null, + "matriculation": [["M"]], + "matriculation's": null, + "matrimonial": [["Y"]], + "matrimonially": null, + "matrimony": [["S", "M"]], + "matrimonies": null, + "matrimony's": null, + "matrix": [["M"]], + "matrix's": null, + "matron": [["Y", "M", "S"]], + "matronly": null, + "matron's": null, + "matrons": null, + "mat": [["S", "J", "G", "M", "D", "R"]], + "mats": null, + "matings": null, + "mat's": null, + "Matsumoto": [["M"]], + "Matsumoto's": null, + "matte": [["J", "G", "M", "Z", "S", "R", "D"]], + "mattings": null, + "matting": [["M"]], + "matte's": null, + "matters": null, + "mattes": null, + "matter": [["G", "D", "M"]], + "matted": null, + "Mattel": [["M"]], + "Mattel's": null, + "Matteo": [["M"]], + "Matteo's": null, + "mattering": null, + "mattered": null, + "matter's": null, + "Matterhorn": [["M"]], + "Matterhorn's": null, + "Matthaeus": [["M"]], + "Matthaeus's": null, + "Mattheus": [["M"]], + "Mattheus's": null, + "Matthew": [["M", "S"]], + "Matthew's": null, + "Matthews": null, + "Matthias": null, + "Matthieu": [["M"]], + "Matthieu's": null, + "Matthiew": [["M"]], + "Matthiew's": null, + "Matthus": [["M"]], + "Matthus's": null, + "Mattias": [["M"]], + "Mattias's": null, + "Mattie": [["M"]], + "Mattie's": null, + "Matti": [["M"]], + "Matti's": null, + "matting's": null, + "mattins's": null, + "Matt": [["M"]], + "Matt's": null, + "mattock": [["M", "S"]], + "mattock's": null, + "mattocks": null, + "mattress": [["M", "S"]], + "mattress's": null, + "mattresses": null, + "matt's": null, + "Matty": [["M"]], + "Matty's": null, + "maturate": [["D", "S", "N", "G", "V", "X"]], + "maturated": null, + "maturates": null, + "maturation": [["M"]], + "maturating": null, + "maturative": null, + "maturations": null, + "maturational": null, + "maturation's": null, + "matureness": [["M"]], + "matureness's": null, + "maturer": [["M"]], + "maturer's": null, + "mature": [["R", "S", "D", "T", "P", "Y", "G"]], + "matures": null, + "matured": null, + "maturest": null, + "maturely": null, + "maturing": null, + "maturity": [["M", "S"]], + "maturity's": null, + "maturities": null, + "matzo": [["S", "H", "M"]], + "matzos": null, + "matzoth": null, + "matzo's": null, + "matzot": null, + "Maude": [["M"]], + "Maude's": null, + "Maudie": [["M"]], + "Maudie's": null, + "maudlin": [["Y"]], + "maudlinly": null, + "Maud": [["M"]], + "Maud's": null, + "Maugham": [["M"]], + "Maugham's": null, + "Maui": [["M"]], + "Maui's": null, + "mauler": [["M"]], + "mauler's": null, + "maul": [["R", "D", "G", "Z", "S"]], + "mauled": null, + "mauling": null, + "maulers": null, + "mauls": null, + "maunder": [["G", "D", "S"]], + "maundering": null, + "maundered": null, + "maunders": null, + "Maupassant": [["M"]], + "Maupassant's": null, + "Maura": [["M"]], + "Maura's": null, + "Maureene": [["M"]], + "Maureene's": null, + "Maureen": [["M"]], + "Maureen's": null, + "Maure": [["M"]], + "Maure's": null, + "Maurene": [["M"]], + "Maurene's": null, + "Mauriac": [["M"]], + "Mauriac's": null, + "Maurice": [["M"]], + "Maurice's": null, + "Mauricio": [["M"]], + "Mauricio's": null, + "Maurie": [["M"]], + "Maurie's": null, + "Maurine": [["M"]], + "Maurine's": null, + "Maurise": [["M"]], + "Maurise's": null, + "Maurita": [["M"]], + "Maurita's": null, + "Mauritania": [["M"]], + "Mauritania's": null, + "Mauritanian": [["S"]], + "Mauritanians": null, + "Mauritian": [["S"]], + "Mauritians": null, + "Mauritius": [["M"]], + "Mauritius's": null, + "Maurits": [["M"]], + "Maurits's": null, + "Maurizia": [["M"]], + "Maurizia's": null, + "Maurizio": [["M"]], + "Maurizio's": null, + "Maurois": [["M"]], + "Maurois's": null, + "Mauro": [["M"]], + "Mauro's": null, + "Maury": [["M"]], + "Maury's": null, + "Mauser": [["M"]], + "Mauser's": null, + "mausoleum": [["S", "M"]], + "mausoleums": null, + "mausoleum's": null, + "mauve": [["S", "M"]], + "mauves": null, + "mauve's": null, + "maven": [["S"]], + "mavens": null, + "maverick": [["S", "M", "D", "G"]], + "mavericks": null, + "maverick's": null, + "mavericked": null, + "mavericking": null, + "mavin's": null, + "Mavis": [["M"]], + "Mavis's": null, + "Mavra": [["M"]], + "Mavra's": null, + "mawkishness": [["S", "M"]], + "mawkishnesses": null, + "mawkishness's": null, + "mawkish": [["P", "Y"]], + "mawkishly": null, + "Mawr": [["M"]], + "Mawr's": null, + "maw": [["S", "G", "M", "D"]], + "maws": null, + "mawing": null, + "maw's": null, + "mawed": null, + "max": [["G", "D", "S"]], + "maxing": null, + "maxed": null, + "maxes": null, + "Maxie": [["M"]], + "Maxie's": null, + "maxillae": null, + "maxilla": [["M"]], + "maxilla's": null, + "maxillary": [["S"]], + "maxillaries": null, + "Maxi": [["M"]], + "Maxi's": null, + "maximality": null, + "maximal": [["S", "Y"]], + "maximals": null, + "maximally": null, + "maxima's": null, + "Maximilian": [["M"]], + "Maximilian's": null, + "Maximilianus": [["M"]], + "Maximilianus's": null, + "Maximilien": [["M"]], + "Maximilien's": null, + "maximization": [["S", "M"]], + "maximizations": null, + "maximization's": null, + "maximizer": [["M"]], + "maximizer's": null, + "maximize": [["R", "S", "D", "Z", "G"]], + "maximizes": null, + "maximized": null, + "maximizers": null, + "maximizing": null, + "Maxim": [["M"]], + "Maxim's": null, + "Maximo": [["M"]], + "Maximo's": null, + "maxim": [["S", "M"]], + "maxims": null, + "maxim's": null, + "maximum": [["M", "Y", "S"]], + "maximum's": null, + "maximumly": null, + "maximums": null, + "Maxine": [["M"]], + "Maxine's": null, + "maxi": [["S"]], + "maxis": null, + "Max": [["M"]], + "Max's": null, + "Maxtor": [["M"]], + "Maxtor's": null, + "Maxwellian": null, + "maxwell": [["M"]], + "maxwell's": null, + "Maxwell": [["M"]], + "Maxwell's": null, + "Maxy": [["M"]], + "Maxy's": null, + "Maya": [["M", "S"]], + "Maya's": null, + "Mayas": null, + "Mayan": [["S"]], + "Mayans": null, + "Maybelle": [["M"]], + "Maybelle's": null, + "maybe": [["S"]], + "maybes": null, + "mayday": [["S"]], + "maydays": null, + "may": [["E", "G", "S"]], + "dismays": null, + "maying": null, + "mays": null, + "Maye": [["M"]], + "Maye's": null, + "mayer": null, + "Mayer": [["M"]], + "Mayer's": null, + "mayest": null, + "Mayfair": [["M"]], + "Mayfair's": null, + "Mayflower": [["M"]], + "Mayflower's": null, + "mayflower": [["S", "M"]], + "mayflowers": null, + "mayflower's": null, + "mayfly": [["M", "S"]], + "mayfly's": null, + "mayflies": null, + "mayhap": null, + "mayhem": [["M", "S"]], + "mayhem's": null, + "mayhems": null, + "Maynard": [["M"]], + "Maynard's": null, + "Mayne": [["M"]], + "Mayne's": null, + "Maynord": [["M"]], + "Maynord's": null, + "mayn't": null, + "Mayo": [["M"]], + "Mayo's": null, + "mayonnaise": [["M", "S"]], + "mayonnaise's": null, + "mayonnaises": null, + "mayoral": null, + "mayoralty": [["M", "S"]], + "mayoralty's": null, + "mayoralties": null, + "mayoress": [["M", "S"]], + "mayoress's": null, + "mayoresses": null, + "Mayor": [["M"]], + "Mayor's": null, + "mayor": [["M", "S"]], + "mayor's": null, + "mayors": null, + "mayorship": [["M"]], + "mayorship's": null, + "mayo": [["S"]], + "mayos": null, + "maypole": [["M", "S"]], + "maypole's": null, + "maypoles": null, + "Maypole": [["S", "M"]], + "Maypoles": null, + "Maypole's": null, + "Mayra": [["M"]], + "Mayra's": null, + "May": [["S", "M", "R"]], + "Mays": null, + "May's": null, + "mayst": null, + "Mazama": [["M"]], + "Mazama's": null, + "Mazarin": [["M"]], + "Mazarin's": null, + "Mazatlan": [["M"]], + "Mazatlan's": null, + "Mazda": [["M"]], + "Mazda's": null, + "mazedness": [["S", "M"]], + "mazednesses": null, + "mazedness's": null, + "mazed": [["Y", "P"]], + "mazedly": null, + "maze": [["M", "G", "D", "S", "R"]], + "maze's": null, + "mazing": null, + "mazes": null, + "mazer": null, + "mazurka": [["S", "M"]], + "mazurkas": null, + "mazurka's": null, + "Mazzini": [["M"]], + "Mazzini's": null, + "Mb": null, + "MB": null, + "MBA": null, + "Mbabane": [["M"]], + "Mbabane's": null, + "Mbini": [["M"]], + "Mbini's": null, + "MC": null, + "McAdam": [["M", "S"]], + "McAdam's": null, + "McAdams": null, + "McAllister": [["M"]], + "McAllister's": null, + "McBride": [["M"]], + "McBride's": null, + "McCabe": [["M"]], + "McCabe's": null, + "McCain": [["M"]], + "McCain's": null, + "McCall": [["M"]], + "McCall's": null, + "McCarthyism": [["M"]], + "McCarthyism's": null, + "McCarthy": [["M"]], + "McCarthy's": null, + "McCartney": [["M"]], + "McCartney's": null, + "McCarty": [["M"]], + "McCarty's": null, + "McCauley": [["M"]], + "McCauley's": null, + "McClain": [["M"]], + "McClain's": null, + "McClellan": [["M"]], + "McClellan's": null, + "McClure": [["M"]], + "McClure's": null, + "McCluskey": [["M"]], + "McCluskey's": null, + "McConnell": [["M"]], + "McConnell's": null, + "McCormick": [["M"]], + "McCormick's": null, + "McCoy": [["S", "M"]], + "McCoys": null, + "McCoy's": null, + "McCracken": [["M"]], + "McCracken's": null, + "McCray": [["M"]], + "McCray's": null, + "McCullough": [["M"]], + "McCullough's": null, + "McDaniel": [["M"]], + "McDaniel's": null, + "McDermott": [["M"]], + "McDermott's": null, + "McDonald": [["M"]], + "McDonald's": null, + "McDonnell": [["M"]], + "McDonnell's": null, + "McDougall": [["M"]], + "McDougall's": null, + "McDowell": [["M"]], + "McDowell's": null, + "McElhaney": [["M"]], + "McElhaney's": null, + "McEnroe": [["M"]], + "McEnroe's": null, + "McFadden": [["M"]], + "McFadden's": null, + "McFarland": [["M"]], + "McFarland's": null, + "McGee": [["M"]], + "McGee's": null, + "McGill": [["M"]], + "McGill's": null, + "McGovern": [["M"]], + "McGovern's": null, + "McGowan": [["M"]], + "McGowan's": null, + "McGrath": [["M"]], + "McGrath's": null, + "McGraw": [["M"]], + "McGraw's": null, + "McGregor": [["M"]], + "McGregor's": null, + "McGuffey": [["M"]], + "McGuffey's": null, + "McGuire": [["M"]], + "McGuire's": null, + "MCI": [["M"]], + "MCI's": null, + "McIntosh": [["M"]], + "McIntosh's": null, + "McIntyre": [["M"]], + "McIntyre's": null, + "McKay": [["M"]], + "McKay's": null, + "McKee": [["M"]], + "McKee's": null, + "McKenzie": [["M"]], + "McKenzie's": null, + "McKesson": [["M"]], + "McKesson's": null, + "McKinley": [["M"]], + "McKinley's": null, + "McKinney": [["M"]], + "McKinney's": null, + "McKnight": [["M"]], + "McKnight's": null, + "McLanahan": [["M"]], + "McLanahan's": null, + "McLaughlin": [["M"]], + "McLaughlin's": null, + "McLean": [["M"]], + "McLean's": null, + "McLeod": [["M"]], + "McLeod's": null, + "McLuhan": [["M"]], + "McLuhan's": null, + "McMahon": [["M"]], + "McMahon's": null, + "McMartin": [["M"]], + "McMartin's": null, + "McMillan": [["M"]], + "McMillan's": null, + "McNamara": [["M"]], + "McNamara's": null, + "McNaughton": [["M"]], + "McNaughton's": null, + "McNeil": [["M"]], + "McNeil's": null, + "McPherson": [["M"]], + "McPherson's": null, + "MD": null, + "Md": [["M"]], + "Md's": null, + "mdse": null, + "MDT": null, + "ME": null, + "Meade": [["M"]], + "Meade's": null, + "Mead": [["M"]], + "Mead's": null, + "meadowland": null, + "meadowlark": [["S", "M"]], + "meadowlarks": null, + "meadowlark's": null, + "meadow": [["M", "S"]], + "meadow's": null, + "meadows": null, + "Meadows": null, + "meadowsweet": [["M"]], + "meadowsweet's": null, + "mead": [["S", "M"]], + "meads": null, + "mead's": null, + "Meagan": [["M"]], + "Meagan's": null, + "meagerness": [["S", "M"]], + "meagernesses": null, + "meagerness's": null, + "meager": [["P", "Y"]], + "meagerly": null, + "Meaghan": [["M"]], + "Meaghan's": null, + "meagres": null, + "mealiness": [["M", "S"]], + "mealiness's": null, + "mealinesses": null, + "meal": [["M", "D", "G", "S"]], + "meal's": null, + "mealed": null, + "mealing": null, + "meals": null, + "mealtime": [["M", "S"]], + "mealtime's": null, + "mealtimes": null, + "mealybug": [["S"]], + "mealybugs": null, + "mealymouthed": null, + "mealy": [["P", "R", "S", "T"]], + "mealier": null, + "mealies": null, + "mealiest": null, + "meander": [["J", "D", "S", "G"]], + "meanderings": null, + "meandered": null, + "meanders": null, + "meandering": null, + "meaneing": null, + "meanie": [["M", "S"]], + "meanie's": null, + "meanies": null, + "meaningfulness": [["S", "M"]], + "meaningfulnesses": null, + "meaningfulness's": null, + "meaningful": [["Y", "P"]], + "meaningfully": null, + "meaninglessness": [["S", "M"]], + "meaninglessnesses": null, + "meaninglessness's": null, + "meaningless": [["P", "Y"]], + "meaninglessly": null, + "meaning": [["M"]], + "meaning's": null, + "meanness": [["S"]], + "meannesses": null, + "means": [["M"]], + "means's": null, + "meantime": [["S", "M"]], + "meantimes": null, + "meantime's": null, + "meant": [["U"]], + "unmeant": null, + "meanwhile": [["S"]], + "meanwhiles": null, + "Meany": [["M"]], + "Meany's": null, + "mean": [["Y", "R", "G", "J", "T", "P", "S"]], + "meanly": null, + "meaner": null, + "meanings": null, + "meanest": null, + "meany's": null, + "Meara": [["M"]], + "Meara's": null, + "measle": [["S", "D"]], + "measles": [["M"]], + "measled": null, + "measles's": null, + "measly": [["T", "R"]], + "measliest": null, + "measlier": null, + "measurable": [["U"]], + "unmeasurable": null, + "measurably": null, + "measure": [["B", "L", "M", "G", "R", "S", "D"]], + "measurement": [["S", "M"]], + "measure's": null, + "measuring": [["A"]], + "measurer": [["M"]], + "measures": [["A"]], + "measured": [["Y"]], + "measuredly": null, + "measureless": null, + "measurements": null, + "measurement's": null, + "measurer's": null, + "remeasures": null, + "remeasuring": null, + "meas": [["Y"]], + "meataxe": null, + "meatball": [["M", "S"]], + "meatball's": null, + "meatballs": null, + "meatiness": [["M", "S"]], + "meatiness's": null, + "meatinesses": null, + "meatless": null, + "meatloaf": null, + "meatloaves": null, + "meat": [["M", "S"]], + "meat's": null, + "meats": null, + "meatpacking": [["S"]], + "meatpackings": null, + "meaty": [["R", "P", "T"]], + "meatier": null, + "meatiest": null, + "Mecca": [["M", "S"]], + "Mecca's": null, + "Meccas": null, + "mecca": [["S"]], + "meccas": null, + "mechanical": [["Y", "S"]], + "mechanically": null, + "mechanicals": null, + "mechanic": [["M", "S"]], + "mechanic's": null, + "mechanics": null, + "mechanism": [["S", "M"]], + "mechanisms": null, + "mechanism's": null, + "mechanistic": null, + "mechanistically": null, + "mechanist": [["M"]], + "mechanist's": null, + "mechanization": [["S", "M"]], + "mechanizations": null, + "mechanization's": null, + "mechanized": [["U"]], + "unmechanized": null, + "mechanizer": [["M"]], + "mechanizer's": null, + "mechanize": [["R", "S", "D", "Z", "G", "B"]], + "mechanizes": [["U"]], + "mechanizers": null, + "mechanizing": null, + "mechanizable": null, + "unmechanizes": null, + "mechanochemically": null, + "Mechelle": [["M"]], + "Mechelle's": null, + "med": null, + "medalist": [["M", "S"]], + "medalist's": null, + "medalists": null, + "medallion": [["M", "S"]], + "medallion's": null, + "medallions": null, + "medal": [["S", "G", "M", "D"]], + "medals": null, + "medaling": null, + "medal's": null, + "medaled": null, + "Medan": [["M"]], + "Medan's": null, + "meddle": [["G", "R", "S", "D", "Z"]], + "meddling": null, + "meddler": null, + "meddles": null, + "meddled": null, + "meddlers": null, + "meddlesome": null, + "Medea": [["M"]], + "Medea's": null, + "Medellin": null, + "Medfield": [["M"]], + "Medfield's": null, + "mediaeval's": null, + "medial": [["A", "Y"]], + "remedial": null, + "remedially": null, + "medially": null, + "medials": null, + "median": [["Y", "M", "S"]], + "medianly": null, + "median's": null, + "medians": null, + "media": [["S", "M"]], + "medias": null, + "media's": null, + "mediateness": [["M"]], + "mediateness's": null, + "mediate": [["P", "S", "D", "Y", "V", "N", "G", "X"]], + "mediates": null, + "mediated": null, + "mediately": null, + "mediative": null, + "mediation": [["A", "S", "M"]], + "mediating": null, + "mediations": null, + "remediation": null, + "remediations": null, + "remediation's": null, + "mediation's": null, + "mediator": [["S", "M"]], + "mediators": null, + "mediator's": null, + "Medicaid": [["S", "M"]], + "Medicaids": null, + "Medicaid's": null, + "medical": [["Y", "S"]], + "medically": null, + "medicals": null, + "medicament": [["M", "S"]], + "medicament's": null, + "medicaments": null, + "Medicare": [["M", "S"]], + "Medicare's": null, + "Medicares": null, + "medicate": [["D", "S", "X", "N", "G", "V"]], + "medicated": null, + "medicates": null, + "medications": null, + "medication": [["M"]], + "medicating": null, + "medicative": null, + "medication's": null, + "Medici": [["M", "S"]], + "Medici's": null, + "Medicis": null, + "medicinal": [["S", "Y"]], + "medicinals": null, + "medicinally": null, + "medicine": [["D", "S", "M", "G"]], + "medicined": null, + "medicines": null, + "medicine's": null, + "medicining": null, + "medico": [["S", "M"]], + "medicos": null, + "medico's": null, + "medic": [["S", "M"]], + "medics": null, + "medic's": null, + "medievalist": [["M", "S"]], + "medievalist's": null, + "medievalists": null, + "medieval": [["Y", "M", "S"]], + "medievally": null, + "medieval's": null, + "medievals": null, + "Medina": [["M"]], + "Medina's": null, + "mediocre": null, + "mediocrity": [["M", "S"]], + "mediocrity's": null, + "mediocrities": null, + "meditate": [["N", "G", "V", "X", "D", "S"]], + "meditation": [["M"]], + "meditating": null, + "meditative": [["P", "Y"]], + "meditations": null, + "meditated": null, + "meditates": null, + "meditation's": null, + "meditativeness": [["M"]], + "meditativeness's": null, + "meditatively": null, + "Mediterranean": [["M", "S"]], + "Mediterranean's": null, + "Mediterraneans": null, + "mediumistic": null, + "medium": [["S", "M"]], + "mediums": null, + "medium's": null, + "medley": [["S", "M"]], + "medleys": null, + "medley's": null, + "medulla": [["S", "M"]], + "medullas": null, + "medulla's": null, + "Medusa": [["M"]], + "Medusa's": null, + "meed": [["M", "S"]], + "meed's": null, + "meeds": null, + "meekness": [["M", "S"]], + "meekness's": null, + "meeknesses": null, + "meek": [["T", "P", "Y", "R"]], + "meekest": null, + "meekly": null, + "meeker": null, + "meerschaum": [["M", "S"]], + "meerschaum's": null, + "meerschaums": null, + "meeter": [["M"]], + "meeter's": null, + "meetinghouse": [["S"]], + "meetinghouses": null, + "meeting": [["M"]], + "meeting's": null, + "meet": [["J", "G", "S", "Y", "R"]], + "meetings": null, + "meets": null, + "meetly": null, + "me": [["G"]], + "ming": null, + "mega": null, + "megabit": [["M", "S"]], + "megabit's": null, + "megabits": null, + "megabuck": [["S"]], + "megabucks": null, + "megabyte": [["S"]], + "megabytes": null, + "megacycle": [["M", "S"]], + "megacycle's": null, + "megacycles": null, + "megadeath": [["M"]], + "megadeath's": null, + "megadeaths": null, + "megahertz": [["M"]], + "megahertz's": null, + "megalithic": null, + "megalith": [["M"]], + "megalith's": null, + "megaliths": null, + "megalomaniac": [["S", "M"]], + "megalomaniacs": null, + "megalomaniac's": null, + "megalomania": [["S", "M"]], + "megalomanias": null, + "megalomania's": null, + "megalopolis": [["S", "M"]], + "megalopolises": null, + "megalopolis's": null, + "Megan": [["M"]], + "Megan's": null, + "megaphone": [["S", "D", "G", "M"]], + "megaphones": null, + "megaphoned": null, + "megaphoning": null, + "megaphone's": null, + "megaton": [["M", "S"]], + "megaton's": null, + "megatons": null, + "megavolt": [["M"]], + "megavolt's": null, + "megawatt": [["S", "M"]], + "megawatts": null, + "megawatt's": null, + "megaword": [["S"]], + "megawords": null, + "Megen": [["M"]], + "Megen's": null, + "Meggie": [["M"]], + "Meggie's": null, + "Meggi": [["M"]], + "Meggi's": null, + "Meggy": [["M"]], + "Meggy's": null, + "Meghan": [["M"]], + "Meghan's": null, + "Meghann": [["M"]], + "Meghann's": null, + "Meg": [["M", "N"]], + "Meg's": null, + "megohm": [["M", "S"]], + "megohm's": null, + "megohms": null, + "Mehetabel": [["M"]], + "Mehetabel's": null, + "Meier": [["M"]], + "Meier's": null, + "Meighen": [["M"]], + "Meighen's": null, + "Meiji": [["M"]], + "Meiji's": null, + "Mei": [["M", "R"]], + "Mei's": null, + "meioses": null, + "meiosis": [["M"]], + "meiosis's": null, + "meiotic": null, + "Meir": [["M"]], + "Meir's": null, + "Meister": [["M"]], + "Meister's": null, + "Meistersinger": [["M"]], + "Meistersinger's": null, + "Mejia": [["M"]], + "Mejia's": null, + "Mekong": [["M"]], + "Mekong's": null, + "Mela": [["M"]], + "Mela's": null, + "Melamie": [["M"]], + "Melamie's": null, + "melamine": [["S", "M"]], + "melamines": null, + "melamine's": null, + "melancholia": [["S", "M"]], + "melancholias": null, + "melancholia's": null, + "melancholic": [["S"]], + "melancholics": null, + "melancholy": [["M", "S"]], + "melancholy's": null, + "melancholies": null, + "Melanesia": [["M"]], + "Melanesia's": null, + "Melanesian": [["S"]], + "Melanesians": null, + "melange": [["S"]], + "melanges": null, + "Melania": [["M"]], + "Melania's": null, + "Melanie": [["M"]], + "Melanie's": null, + "melanin": [["M", "S"]], + "melanin's": null, + "melanins": null, + "melanoma": [["S", "M"]], + "melanomas": null, + "melanoma's": null, + "Melantha": [["M"]], + "Melantha's": null, + "Melany": [["M"]], + "Melany's": null, + "Melba": [["M"]], + "Melba's": null, + "Melbourne": [["M"]], + "Melbourne's": null, + "Melcher": [["M"]], + "Melcher's": null, + "Melchior": [["M"]], + "Melchior's": null, + "meld": [["S", "G", "D"]], + "melds": null, + "melding": null, + "melded": null, + "m�l�e": [["M", "S"]], + "m�l�e's": null, + "m�l�es": null, + "Melendez": [["M"]], + "Melendez's": null, + "Melesa": [["M"]], + "Melesa's": null, + "Melessa": [["M"]], + "Melessa's": null, + "Melicent": [["M"]], + "Melicent's": null, + "Melina": [["M"]], + "Melina's": null, + "Melinda": [["M"]], + "Melinda's": null, + "Melinde": [["M"]], + "Melinde's": null, + "meliorate": [["X", "S", "D", "V", "N", "G"]], + "meliorations": null, + "meliorates": null, + "meliorated": null, + "meliorative": null, + "melioration": [["M"]], + "meliorating": null, + "melioration's": null, + "Melisa": [["M"]], + "Melisa's": null, + "Melisande": [["M"]], + "Melisande's": null, + "Melisandra": [["M"]], + "Melisandra's": null, + "Melisenda": [["M"]], + "Melisenda's": null, + "Melisent": [["M"]], + "Melisent's": null, + "Melissa": [["M"]], + "Melissa's": null, + "Melisse": [["M"]], + "Melisse's": null, + "Melita": [["M"]], + "Melita's": null, + "Melitta": [["M"]], + "Melitta's": null, + "Mella": [["M"]], + "Mella's": null, + "Mellicent": [["M"]], + "Mellicent's": null, + "Mellie": [["M"]], + "Mellie's": null, + "mellifluousness": [["S", "M"]], + "mellifluousnesses": null, + "mellifluousness's": null, + "mellifluous": [["Y", "P"]], + "mellifluously": null, + "Melli": [["M"]], + "Melli's": null, + "Mellisa": [["M"]], + "Mellisa's": null, + "Mellisent": [["M"]], + "Mellisent's": null, + "Melloney": [["M"]], + "Melloney's": null, + "Mellon": [["M"]], + "Mellon's": null, + "mellowness": [["M", "S"]], + "mellowness's": null, + "mellownesses": null, + "mellow": [["T", "G", "R", "D", "Y", "P", "S"]], + "mellowest": null, + "mellowing": null, + "mellower": null, + "mellowed": null, + "mellowly": null, + "mellows": null, + "Melly": [["M"]], + "Melly's": null, + "Mel": [["M", "Y"]], + "Mel's": null, + "Melodee": [["M"]], + "Melodee's": null, + "melodically": null, + "melodic": [["S"]], + "melodics": null, + "Melodie": [["M"]], + "Melodie's": null, + "melodiousness": [["S"]], + "melodiousnesses": null, + "melodious": [["Y", "P"]], + "melodiously": null, + "melodrama": [["S", "M"]], + "melodramas": null, + "melodrama's": null, + "melodramatically": null, + "melodramatic": [["S"]], + "melodramatics": null, + "Melody": [["M"]], + "Melody's": null, + "melody": [["M", "S"]], + "melody's": null, + "melodies": null, + "Melonie": [["M"]], + "Melonie's": null, + "melon": [["M", "S"]], + "melon's": null, + "melons": null, + "Melony": [["M"]], + "Melony's": null, + "Melosa": [["M"]], + "Melosa's": null, + "Melpomene": [["M"]], + "Melpomene's": null, + "meltdown": [["S"]], + "meltdowns": null, + "melter": [["M"]], + "melter's": null, + "melting": [["Y"]], + "meltingly": null, + "Melton": [["M"]], + "Melton's": null, + "melt": [["S", "A", "G", "D"]], + "melts": null, + "remelts": null, + "remelt": null, + "remelting": null, + "remelted": null, + "melted": null, + "Melva": [["M"]], + "Melva's": null, + "Melville": [["M"]], + "Melville's": null, + "Melvin": [["M"]], + "Melvin's": null, + "Melvyn": [["M"]], + "Melvyn's": null, + "Me": [["M"]], + "Me's": null, + "member": [["D", "M", "S"]], + "membered": [["A", "E"]], + "member's": null, + "members": [["E", "A"]], + "remembered": [["U"]], + "dismembered": null, + "dismembers": null, + "remembers": null, + "membership": [["S", "M"]], + "memberships": null, + "membership's": null, + "membrane": [["M", "S", "D"]], + "membrane's": null, + "membranes": null, + "membraned": null, + "membranous": null, + "memento": [["S", "M"]], + "mementos": null, + "memento's": null, + "Memling": [["M"]], + "Memling's": null, + "memoir": [["M", "S"]], + "memoir's": null, + "memoirs": null, + "memorabilia": null, + "memorability": [["S", "M"]], + "memorabilities": null, + "memorability's": null, + "memorableness": [["M"]], + "memorableness's": null, + "memorable": [["P"]], + "memorably": null, + "memorandum": [["S", "M"]], + "memorandums": null, + "memorandum's": null, + "memorialize": [["D", "S", "G"]], + "memorialized": [["U"]], + "memorializes": null, + "memorializing": null, + "unmemorialized": [["M", "S"]], + "memorial": [["S", "Y"]], + "memorials": null, + "memorially": null, + "memoriam": null, + "memorization": [["M", "S"]], + "memorization's": null, + "memorizations": null, + "memorized": [["U"]], + "unmemorized": null, + "memorizer": [["M"]], + "memorizer's": null, + "memorize": [["R", "S", "D", "Z", "G"]], + "memorizes": [["A"]], + "memorizers": null, + "memorizing": null, + "rememorizes": null, + "memoryless": null, + "memory": [["M", "S"]], + "memory's": null, + "memories": null, + "memo": [["S", "M"]], + "memos": null, + "memo's": null, + "Memphis": [["M"]], + "Memphis's": null, + "menace": [["G", "S", "D"]], + "menacing": [["Y"]], + "menaces": null, + "menaced": null, + "menacingly": null, + "menagerie": [["S", "M"]], + "menageries": null, + "menagerie's": null, + "menage": [["S"]], + "menages": null, + "Menander": [["M"]], + "Menander's": null, + "menarche": [["M", "S"]], + "menarche's": null, + "menarches": null, + "Menard": [["M"]], + "Menard's": null, + "Mencius": [["M"]], + "Mencius's": null, + "Mencken": [["M"]], + "Mencken's": null, + "mendaciousness": [["M"]], + "mendaciousness's": null, + "mendacious": [["P", "Y"]], + "mendaciously": null, + "mendacity": [["M", "S"]], + "mendacity's": null, + "mendacities": null, + "Mendeleev": [["M"]], + "Mendeleev's": null, + "mendelevium": [["S", "M"]], + "mendeleviums": null, + "mendelevium's": null, + "Mendelian": null, + "Mendel": [["M"]], + "Mendel's": null, + "Mendelssohn": [["M"]], + "Mendelssohn's": null, + "mender": [["M"]], + "mender's": null, + "Mendez": [["M"]], + "Mendez's": null, + "mendicancy": [["M", "S"]], + "mendicancy's": null, + "mendicancies": null, + "mendicant": [["S"]], + "mendicants": null, + "Mendie": [["M"]], + "Mendie's": null, + "mending": [["M"]], + "mending's": null, + "Mendocino": [["M"]], + "Mendocino's": null, + "Mendoza": [["M"]], + "Mendoza's": null, + "mend": [["R", "D", "S", "J", "G", "Z"]], + "mended": null, + "mends": null, + "mendings": null, + "menders": null, + "Mendy": [["M"]], + "Mendy's": null, + "Menelaus": [["M"]], + "Menelaus's": null, + "Menes": [["M"]], + "Menes's": null, + "menfolk": [["S"]], + "menfolks": null, + "menhaden": [["M"]], + "menhaden's": null, + "menial": [["Y", "S"]], + "menially": null, + "menials": null, + "meningeal": null, + "meninges": null, + "meningitides": null, + "meningitis": [["M"]], + "meningitis's": null, + "meninx": null, + "menisci": null, + "meniscus": [["M"]], + "meniscus's": null, + "Menkalinan": [["M"]], + "Menkalinan's": null, + "Menkar": [["M"]], + "Menkar's": null, + "Menkent": [["M"]], + "Menkent's": null, + "Menlo": [["M"]], + "Menlo's": null, + "men": [["M", "S"]], + "men's": null, + "mens": [["S", "D", "G"]], + "Mennonite": [["S", "M"]], + "Mennonites": null, + "Mennonite's": null, + "Menominee": null, + "menopausal": null, + "menopause": [["S", "M"]], + "menopauses": null, + "menopause's": null, + "menorah": [["M"]], + "menorah's": null, + "menorahs": null, + "Menotti": [["M"]], + "Menotti's": null, + "Mensa": [["M"]], + "Mensa's": null, + "Mensch": [["M"]], + "Mensch's": null, + "mensch": [["S"]], + "mensches": null, + "menservants": [["M"]], + "menservants's": null, + "menses": null, + "mensed": null, + "mensing": null, + "menstrual": null, + "menstruate": [["N", "G", "D", "S", "X"]], + "menstruation": [["M"]], + "menstruating": null, + "menstruated": null, + "menstruates": null, + "menstruations": null, + "menstruation's": null, + "mensurable": [["P"]], + "mensurableness": null, + "mensuration": [["M", "S"]], + "mensuration's": null, + "mensurations": null, + "menswear": [["M"]], + "menswear's": null, + "mentalist": [["M", "S"]], + "mentalist's": null, + "mentalists": null, + "mentality": [["M", "S"]], + "mentality's": null, + "mentalities": null, + "mental": [["Y"]], + "mentally": null, + "mentholated": null, + "menthol": [["S", "M"]], + "menthols": null, + "menthol's": null, + "mentionable": [["U"]], + "unmentionable": [["S"]], + "mentioned": [["U"]], + "unmentioned": null, + "mentioner": [["M"]], + "mentioner's": null, + "mention": [["Z", "G", "B", "R", "D", "S"]], + "mentioners": null, + "mentioning": null, + "mentions": null, + "mentor": [["D", "M", "S", "G"]], + "mentored": null, + "mentor's": null, + "mentors": null, + "mentoring": null, + "Menuhin": [["M"]], + "Menuhin's": null, + "menu": [["S", "M"]], + "menus": null, + "menu's": null, + "Menzies": [["M"]], + "Menzies's": null, + "meow": [["D", "S", "G"]], + "meowed": null, + "meows": null, + "meowing": null, + "Mephistopheles": [["M"]], + "Mephistopheles's": null, + "Merak": [["M"]], + "Merak's": null, + "Mercado": [["M"]], + "Mercado's": null, + "mercantile": null, + "Mercator": [["M"]], + "Mercator's": null, + "Mercedes": null, + "mercenariness": [["M"]], + "mercenariness's": null, + "mercenary": [["S", "M", "P"]], + "mercenaries": null, + "mercenary's": null, + "mercerize": [["S", "D", "G"]], + "mercerizes": null, + "mercerized": null, + "mercerizing": null, + "Mercer": [["M"]], + "Mercer's": null, + "mercer": [["S", "M"]], + "mercers": null, + "mercer's": null, + "merchandiser": [["M"]], + "merchandiser's": null, + "merchandise": [["S", "R", "D", "J", "M", "Z", "G"]], + "merchandises": null, + "merchandised": null, + "merchandisings": null, + "merchandise's": null, + "merchandisers": null, + "merchandising": null, + "merchantability": null, + "merchantman": [["M"]], + "merchantman's": null, + "merchantmen": null, + "merchant": [["S", "B", "D", "M", "G"]], + "merchants": null, + "merchantable": null, + "merchanted": null, + "merchant's": null, + "merchanting": null, + "Mercie": [["M"]], + "Mercie's": null, + "mercifully": [["U"]], + "unmercifully": null, + "mercifulness": [["M"]], + "mercifulness's": null, + "merciful": [["Y", "P"]], + "mercilessness": [["S", "M"]], + "mercilessnesses": null, + "mercilessness's": null, + "merciless": [["Y", "P"]], + "mercilessly": null, + "Merci": [["M"]], + "Merci's": null, + "Merck": [["M"]], + "Merck's": null, + "mercurial": [["S", "P", "Y"]], + "mercurials": null, + "mercurialness": null, + "mercurially": null, + "mercuric": null, + "Mercurochrome": [["M"]], + "Mercurochrome's": null, + "mercury": [["M", "S"]], + "mercury's": null, + "mercuries": null, + "Mercury": [["M", "S"]], + "Mercury's": null, + "Mercuries": null, + "Mercy": [["M"]], + "Mercy's": null, + "mercy": [["S", "M"]], + "mercies": null, + "mercy's": null, + "Meredeth": [["M"]], + "Meredeth's": null, + "Meredithe": [["M"]], + "Meredithe's": null, + "Meredith": [["M"]], + "Meredith's": null, + "Merell": [["M"]], + "Merell's": null, + "meretriciousness": [["S", "M"]], + "meretriciousnesses": null, + "meretriciousness's": null, + "meretricious": [["Y", "P"]], + "meretriciously": null, + "mere": [["Y", "S"]], + "merely": null, + "meres": null, + "merganser": [["M", "S"]], + "merganser's": null, + "mergansers": null, + "merger": [["M"]], + "merger's": null, + "merge": [["S", "R", "D", "G", "Z"]], + "merges": null, + "merged": null, + "merging": null, + "mergers": null, + "Meridel": [["M"]], + "Meridel's": null, + "meridian": [["M", "S"]], + "meridian's": null, + "meridians": null, + "meridional": null, + "Meridith": [["M"]], + "Meridith's": null, + "Meriel": [["M"]], + "Meriel's": null, + "Merilee": [["M"]], + "Merilee's": null, + "Merill": [["M"]], + "Merill's": null, + "Merilyn": [["M"]], + "Merilyn's": null, + "meringue": [["M", "S"]], + "meringue's": null, + "meringues": null, + "merino": [["M", "S"]], + "merino's": null, + "merinos": null, + "Meris": null, + "Merissa": [["M"]], + "Merissa's": null, + "merited": [["U"]], + "unmerited": null, + "meritocracy": [["M", "S"]], + "meritocracy's": null, + "meritocracies": null, + "meritocratic": null, + "meritocrats": null, + "meritoriousness": [["M", "S"]], + "meritoriousness's": null, + "meritoriousnesses": null, + "meritorious": [["P", "Y"]], + "meritoriously": null, + "merit": [["S", "C", "G", "M", "D"]], + "merits": null, + "demerits": null, + "demerit": null, + "demeriting": null, + "demerit's": null, + "demerited": null, + "meriting": null, + "merit's": null, + "Meriwether": [["M"]], + "Meriwether's": null, + "Merla": [["M"]], + "Merla's": null, + "Merle": [["M"]], + "Merle's": null, + "Merlina": [["M"]], + "Merlina's": null, + "Merline": [["M"]], + "Merline's": null, + "merlin": [["M"]], + "merlin's": null, + "Merlin": [["M"]], + "Merlin's": null, + "Merl": [["M"]], + "Merl's": null, + "mermaid": [["M", "S"]], + "mermaid's": null, + "mermaids": null, + "merman": [["M"]], + "merman's": null, + "mermen": null, + "Merna": [["M"]], + "Merna's": null, + "Merola": [["M"]], + "Merola's": null, + "meromorphic": null, + "Merralee": [["M"]], + "Merralee's": null, + "Merrel": [["M"]], + "Merrel's": null, + "Merriam": [["M"]], + "Merriam's": null, + "Merrick": [["M"]], + "Merrick's": null, + "Merridie": [["M"]], + "Merridie's": null, + "Merrielle": [["M"]], + "Merrielle's": null, + "Merrie": [["M"]], + "Merrie's": null, + "Merrilee": [["M"]], + "Merrilee's": null, + "Merrile": [["M"]], + "Merrile's": null, + "Merrili": [["M"]], + "Merrili's": null, + "Merrill": [["M"]], + "Merrill's": null, + "merrily": null, + "Merrily": [["M"]], + "Merrily's": null, + "Merrimack": [["M"]], + "Merrimack's": null, + "Merrimac": [["M"]], + "Merrimac's": null, + "merriment": [["M", "S"]], + "merriment's": null, + "merriments": null, + "merriness": [["S"]], + "merrinesses": null, + "Merritt": [["M"]], + "Merritt's": null, + "Merry": [["M"]], + "Merry's": null, + "merrymaker": [["M", "S"]], + "merrymaker's": null, + "merrymakers": null, + "merrymaking": [["S", "M"]], + "merrymakings": null, + "merrymaking's": null, + "merry": [["R", "P", "T"]], + "merrier": null, + "merriest": null, + "Mersey": [["M"]], + "Mersey's": null, + "mer": [["T", "G", "D", "R"]], + "merest": null, + "mering": null, + "mered": null, + "merer": null, + "Merton": [["M"]], + "Merton's": null, + "Mervin": [["M"]], + "Mervin's": null, + "Merv": [["M"]], + "Merv's": null, + "Merwin": [["M"]], + "Merwin's": null, + "Merwyn": [["M"]], + "Merwyn's": null, + "Meryl": [["M"]], + "Meryl's": null, + "Mesa": null, + "Mesabi": [["M"]], + "Mesabi's": null, + "mesa": [["S", "M"]], + "mesas": null, + "mesa's": null, + "mescaline": [["S", "M"]], + "mescalines": null, + "mescaline's": null, + "mescal": [["S", "M"]], + "mescals": null, + "mescal's": null, + "mesdames": [["M"]], + "mesdames's": null, + "mesdemoiselles": [["M"]], + "mesdemoiselles's": null, + "Meshed's": null, + "meshed": [["U"]], + "unmeshed": null, + "mesh": [["G", "M", "S", "D"]], + "meshing": null, + "mesh's": null, + "meshes": null, + "mesmeric": null, + "mesmerism": [["S", "M"]], + "mesmerisms": null, + "mesmerism's": null, + "mesmerized": [["U"]], + "unmesmerized": null, + "mesmerizer": [["M"]], + "mesmerizer's": null, + "mesmerize": [["S", "R", "D", "Z", "G"]], + "mesmerizes": null, + "mesmerizers": null, + "mesmerizing": null, + "Mesolithic": [["M"]], + "Mesolithic's": null, + "mesomorph": [["M"]], + "mesomorph's": null, + "mesomorphs": null, + "meson": [["M", "S"]], + "meson's": null, + "mesons": null, + "Mesopotamia": [["M"]], + "Mesopotamia's": null, + "Mesopotamian": [["S"]], + "Mesopotamians": null, + "mesosphere": [["M", "S"]], + "mesosphere's": null, + "mesospheres": null, + "mesozoic": null, + "Mesozoic": null, + "mesquite": [["M", "S"]], + "mesquite's": null, + "mesquites": null, + "mes": [["S"]], + "meses": null, + "message": [["S", "D", "M", "G"]], + "messages": null, + "messaged": null, + "message's": null, + "messaging": null, + "messeigneurs": null, + "messenger": [["G", "S", "M", "D"]], + "messengering": null, + "messengers": null, + "messenger's": null, + "messengered": null, + "Messerschmidt": [["M"]], + "Messerschmidt's": null, + "mess": [["G", "S", "D", "M"]], + "messing": null, + "messes": null, + "messed": null, + "mess's": null, + "Messiaen": [["M"]], + "Messiaen's": null, + "messiah": null, + "Messiah": [["M"]], + "Messiah's": null, + "messiahs": null, + "Messiahs": null, + "messianic": null, + "Messianic": null, + "messieurs": [["M"]], + "messieurs's": null, + "messily": null, + "messiness": [["M", "S"]], + "messiness's": null, + "messinesses": null, + "messmate": [["M", "S"]], + "messmate's": null, + "messmates": null, + "Messrs": [["M"]], + "Messrs's": null, + "messy": [["P", "R", "T"]], + "messier": null, + "messiest": null, + "mestizo": [["M", "S"]], + "mestizo's": null, + "mestizos": null, + "meta": null, + "metabolic": null, + "metabolically": null, + "metabolism": [["M", "S"]], + "metabolism's": null, + "metabolisms": null, + "metabolite": [["S", "M"]], + "metabolites": null, + "metabolite's": null, + "metabolize": [["G", "S", "D"]], + "metabolizing": null, + "metabolizes": null, + "metabolized": null, + "metacarpal": [["S"]], + "metacarpals": null, + "metacarpi": null, + "metacarpus": [["M"]], + "metacarpus's": null, + "metacircular": null, + "metacircularity": null, + "metalanguage": [["M", "S"]], + "metalanguage's": null, + "metalanguages": null, + "metalization": [["S", "M"]], + "metalizations": null, + "metalization's": null, + "metalized": null, + "metallic": [["S"]], + "metallics": null, + "metalliferous": null, + "metallings": null, + "metallography": [["M"]], + "metallography's": null, + "metalloid": [["M"]], + "metalloid's": null, + "metallurgic": null, + "metallurgical": [["Y"]], + "metallurgically": null, + "metallurgist": [["S"]], + "metallurgists": null, + "metallurgy": [["M", "S"]], + "metallurgy's": null, + "metallurgies": null, + "metal": [["S", "G", "M", "D"]], + "metals": null, + "metaling": null, + "metal's": null, + "metaled": null, + "metalsmith": [["M", "S"]], + "metalsmith's": null, + "metalsmithes": null, + "metalworking": [["M"]], + "metalworking's": null, + "metalwork": [["R", "M", "J", "G", "S", "Z"]], + "metalworker": null, + "metalwork's": null, + "metalworkings": null, + "metalworks": null, + "metalworkers": null, + "Meta": [["M"]], + "Meta's": null, + "metamathematical": null, + "metamorphic": null, + "metamorphism": [["S", "M"]], + "metamorphisms": null, + "metamorphism's": null, + "metamorphose": [["G", "D", "S"]], + "metamorphosing": null, + "metamorphosed": null, + "metamorphoses": null, + "metamorphosis": [["M"]], + "metamorphosis's": null, + "metaphoric": null, + "metaphorical": [["Y"]], + "metaphorically": null, + "metaphor": [["M", "S"]], + "metaphor's": null, + "metaphors": null, + "metaphosphate": [["M"]], + "metaphosphate's": null, + "metaphysical": [["Y"]], + "metaphysically": null, + "metaphysic": [["S", "M"]], + "metaphysics": null, + "metaphysic's": null, + "metastability": [["M"]], + "metastability's": null, + "metastable": null, + "metastases": null, + "metastasis": [["M"]], + "metastasis's": null, + "metastasize": [["D", "S", "G"]], + "metastasized": null, + "metastasizes": null, + "metastasizing": null, + "metastatic": null, + "metatarsal": [["S"]], + "metatarsals": null, + "metatarsi": null, + "metatarsus": [["M"]], + "metatarsus's": null, + "metatheses": null, + "metathesis": [["M"]], + "metathesis's": null, + "metathesized": null, + "metathesizes": null, + "metathesizing": null, + "metavariable": null, + "metempsychoses": null, + "metempsychosis": [["M"]], + "metempsychosis's": null, + "meteoric": null, + "meteorically": null, + "meteorite": [["S", "M"]], + "meteorites": null, + "meteorite's": null, + "meteoritic": [["S"]], + "meteoritics": [["M"]], + "meteoritics's": null, + "meteoroid": [["S", "M"]], + "meteoroids": null, + "meteoroid's": null, + "meteorologic": null, + "meteorological": null, + "meteorologist": [["S"]], + "meteorologists": null, + "meteorology": [["M", "S"]], + "meteorology's": null, + "meteorologies": null, + "meteor": [["S", "M"]], + "meteors": null, + "meteor's": null, + "meter": [["G", "D", "M"]], + "metering": null, + "metered": null, + "meter's": null, + "mete": [["Z", "D", "G", "S", "R"]], + "meters": null, + "meted": null, + "meting": null, + "metes": null, + "methadone": [["S", "M"]], + "methadones": null, + "methadone's": null, + "methane": [["M", "S"]], + "methane's": null, + "methanes": null, + "methanol": [["S", "M"]], + "methanols": null, + "methanol's": null, + "methinks": null, + "methionine": [["M"]], + "methionine's": null, + "methodicalness": [["S", "M"]], + "methodicalnesses": null, + "methodicalness's": null, + "methodical": [["Y", "P"]], + "methodically": null, + "methodism": null, + "Methodism": [["S", "M"]], + "Methodisms": null, + "Methodism's": null, + "methodist": [["M", "S"]], + "methodist's": null, + "methodists": null, + "Methodist": [["M", "S"]], + "Methodist's": null, + "Methodists": null, + "method": [["M", "S"]], + "method's": null, + "methods": null, + "methodological": [["Y"]], + "methodologically": null, + "methodologists": null, + "methodology": [["M", "S"]], + "methodology's": null, + "methodologies": null, + "methought": null, + "Methuen": [["M"]], + "Methuen's": null, + "Methuselah": [["M"]], + "Methuselah's": null, + "Methuselahs": null, + "methylated": null, + "methylene": [["M"]], + "methylene's": null, + "methyl": [["S", "M"]], + "methyls": null, + "methyl's": null, + "meticulousness": [["M", "S"]], + "meticulousness's": null, + "meticulousnesses": null, + "meticulous": [["Y", "P"]], + "meticulously": null, + "m�tier": [["S"]], + "m�tiers": null, + "metonymy": [["M"]], + "metonymy's": null, + "Metrecal": [["M"]], + "Metrecal's": null, + "metrical": [["Y"]], + "metrically": null, + "metricate": [["S", "D", "N", "G", "X"]], + "metricates": null, + "metricated": null, + "metrication": null, + "metricating": null, + "metrications": null, + "metricize": [["G", "S", "D"]], + "metricizing": null, + "metricizes": null, + "metricized": null, + "metrics": [["M"]], + "metrics's": null, + "metric": [["S", "M"]], + "metric's": null, + "metronome": [["M", "S"]], + "metronome's": null, + "metronomes": null, + "metropolis": [["S", "M"]], + "metropolises": null, + "metropolis's": null, + "metropolitanization": null, + "metropolitan": [["S"]], + "metropolitans": null, + "metro": [["S", "M"]], + "metros": null, + "metro's": null, + "mets": null, + "Metternich": [["M"]], + "Metternich's": null, + "mettle": [["S", "D", "M"]], + "mettles": null, + "mettled": null, + "mettle's": null, + "mettlesome": null, + "met": [["U"]], + "unmet": null, + "Metzler": [["M"]], + "Metzler's": null, + "Meuse": [["M"]], + "Meuse's": null, + "mewl": [["G", "S", "D"]], + "mewling": null, + "mewls": null, + "mewled": null, + "mew": [["S", "G", "D"]], + "mews": [["S", "M"]], + "mewing": null, + "mewed": null, + "mewses": null, + "mews's": null, + "Mex": null, + "Mexicali": [["M"]], + "Mexicali's": null, + "Mexican": [["S"]], + "Mexicans": null, + "Mexico": [["M"]], + "Mexico's": null, + "Meyerbeer": [["M"]], + "Meyerbeer's": null, + "Meyer": [["S", "M"]], + "Meyers": null, + "Meyer's": null, + "mezzanine": [["M", "S"]], + "mezzanine's": null, + "mezzanines": null, + "mezzo": [["S"]], + "mezzos": null, + "MFA": null, + "mfg": null, + "mfr": [["S"]], + "mfrs": null, + "mg": null, + "M": [["G", "B"]], + "Ming": [["M"]], + "Mg": [["M"]], + "Mg's": null, + "MGM": [["M"]], + "MGM's": null, + "mgr": null, + "Mgr": null, + "MHz": null, + "MI": null, + "MIA": null, + "Mia": [["M"]], + "Mia's": null, + "Miami": [["S", "M"]], + "Miamis": null, + "Miami's": null, + "Miaplacidus": [["M"]], + "Miaplacidus's": null, + "miasmal": null, + "miasma": [["S", "M"]], + "miasmas": null, + "miasma's": null, + "Micaela": [["M"]], + "Micaela's": null, + "Micah": [["M"]], + "Micah's": null, + "mica": [["M", "S"]], + "mica's": null, + "micas": null, + "micelles": null, + "mice": [["M"]], + "mice's": null, + "Michaela": [["M"]], + "Michaela's": null, + "Michaelangelo": [["M"]], + "Michaelangelo's": null, + "Michaelina": [["M"]], + "Michaelina's": null, + "Michaeline": [["M"]], + "Michaeline's": null, + "Michaella": [["M"]], + "Michaella's": null, + "Michaelmas": [["M", "S"]], + "Michaelmas's": null, + "Michaelmases": null, + "Michael": [["S", "M"]], + "Michaels": null, + "Michael's": null, + "Michaelson": [["M"]], + "Michaelson's": null, + "Michail": [["M"]], + "Michail's": null, + "Michale": [["M"]], + "Michale's": null, + "Michal": [["M"]], + "Michal's": null, + "Micheal": [["M"]], + "Micheal's": null, + "Micheil": [["M"]], + "Micheil's": null, + "Michelangelo": [["M"]], + "Michelangelo's": null, + "Michele": [["M"]], + "Michele's": null, + "Michelina": [["M"]], + "Michelina's": null, + "Micheline": [["M"]], + "Micheline's": null, + "Michelin": [["M"]], + "Michelin's": null, + "Michelle": [["M"]], + "Michelle's": null, + "Michell": [["M"]], + "Michell's": null, + "Michel": [["M"]], + "Michel's": null, + "Michelson": [["M"]], + "Michelson's": null, + "Michigander": [["S"]], + "Michiganders": null, + "Michiganite": [["S"]], + "Michiganites": null, + "Michigan": [["M"]], + "Michigan's": null, + "Mich": [["M"]], + "Mich's": null, + "Mickelson": [["M"]], + "Mickelson's": null, + "Mickey": [["M"]], + "Mickey's": null, + "mickey": [["S", "M"]], + "mickeys": null, + "mickey's": null, + "Mickie": [["M"]], + "Mickie's": null, + "Micki": [["M"]], + "Micki's": null, + "Mick": [["M"]], + "Mick's": null, + "Micky": [["M"]], + "Micky's": null, + "Mic": [["M"]], + "Mic's": null, + "Micmac": [["M"]], + "Micmac's": null, + "micra's": null, + "microamp": null, + "microanalysis": [["M"]], + "microanalysis's": null, + "microanalytic": null, + "microbe": [["M", "S"]], + "microbe's": null, + "microbes": null, + "microbial": null, + "microbicidal": null, + "microbicide": [["M"]], + "microbicide's": null, + "microbiological": null, + "microbiologist": [["M", "S"]], + "microbiologist's": null, + "microbiologists": null, + "microbiology": [["S", "M"]], + "microbiologies": null, + "microbiology's": null, + "microbrewery": [["S"]], + "microbreweries": null, + "microchemistry": [["M"]], + "microchemistry's": null, + "microchip": [["S"]], + "microchips": null, + "microcircuit": [["M", "S"]], + "microcircuit's": null, + "microcircuits": null, + "microcode": [["G", "S", "D"]], + "microcoding": null, + "microcodes": null, + "microcoded": null, + "microcomputer": [["M", "S"]], + "microcomputer's": null, + "microcomputers": null, + "microcosmic": null, + "microcosm": [["M", "S"]], + "microcosm's": null, + "microcosms": null, + "microdensitometer": null, + "microdot": [["M", "S"]], + "microdot's": null, + "microdots": null, + "microeconomic": [["S"]], + "microeconomics": [["M"]], + "microeconomics's": null, + "microelectronic": [["S"]], + "microelectronics": [["M"]], + "microelectronics's": null, + "microfiber": [["S"]], + "microfibers": null, + "microfiche": [["M"]], + "microfiche's": null, + "microfilm": [["D", "R", "M", "S", "G"]], + "microfilmed": null, + "microfilmer": null, + "microfilm's": null, + "microfilms": null, + "microfilming": null, + "microfossils": null, + "micrography": [["M"]], + "micrography's": null, + "microgroove": [["M", "S"]], + "microgroove's": null, + "microgrooves": null, + "microhydrodynamics": null, + "microinstruction": [["S", "M"]], + "microinstructions": null, + "microinstruction's": null, + "microjoule": null, + "microlevel": null, + "microlight": [["S"]], + "microlights": null, + "micromanage": [["G", "D", "S", "L"]], + "micromanaging": null, + "micromanaged": null, + "micromanages": null, + "micromanagement": [["S"]], + "micromanagements": null, + "micrometeorite": [["M", "S"]], + "micrometeorite's": null, + "micrometeorites": null, + "micrometeoritic": null, + "micrometer": [["S", "M"]], + "micrometers": null, + "micrometer's": null, + "Micronesia": [["M"]], + "Micronesia's": null, + "Micronesian": [["S"]], + "Micronesians": null, + "micron": [["M", "S"]], + "micron's": null, + "microns": null, + "microorganism": [["S", "M"]], + "microorganisms": null, + "microorganism's": null, + "microphone": [["S", "G", "M"]], + "microphones": null, + "microphoning": null, + "microphone's": null, + "Microport": [["M"]], + "Microport's": null, + "microprocessing": null, + "microprocessor": [["S", "M"]], + "microprocessors": null, + "microprocessor's": null, + "microprogrammed": null, + "microprogramming": null, + "microprogram": [["S", "M"]], + "microprograms": null, + "microprogram's": null, + "micro": [["S"]], + "micros": [["M"]], + "microscope": [["S", "M"]], + "microscopes": null, + "microscope's": null, + "microscopic": null, + "microscopical": [["Y"]], + "microscopically": null, + "microscopy": [["M", "S"]], + "microscopy's": null, + "microscopies": null, + "microsecond": [["M", "S"]], + "microsecond's": null, + "microseconds": null, + "microsimulation": [["S"]], + "microsimulations": null, + "Microsystems": null, + "micros's": null, + "Microsoft": [["M"]], + "Microsoft's": null, + "microsomal": null, + "microstore": null, + "microsurgery": [["S", "M"]], + "microsurgeries": null, + "microsurgery's": null, + "MicroVAXes": null, + "MicroVAX": [["M"]], + "MicroVAX's": null, + "microvolt": [["S", "M"]], + "microvolts": null, + "microvolt's": null, + "microwaveable": null, + "microwave": [["B", "M", "G", "S", "D"]], + "microwavable": null, + "microwave's": null, + "microwaving": null, + "microwaves": null, + "microwaved": null, + "microword": [["S"]], + "microwords": null, + "midair": [["M", "S"]], + "midair's": null, + "midairs": null, + "midas": null, + "Midas": [["M"]], + "Midas's": null, + "midband": [["M"]], + "midband's": null, + "midday": [["M", "S"]], + "midday's": null, + "middays": null, + "midden": [["S", "M"]], + "middens": null, + "midden's": null, + "middest": null, + "middlebrow": [["S", "M"]], + "middlebrows": null, + "middlebrow's": null, + "Middlebury": [["M"]], + "Middlebury's": null, + "middle": [["G", "J", "R", "S", "D"]], + "middling": [["Y"]], + "middlings": null, + "middler": null, + "middles": null, + "middled": null, + "middleman": [["M"]], + "middleman's": null, + "middlemen": null, + "middlemost": null, + "Middlesex": [["M"]], + "Middlesex's": null, + "Middleton": [["M"]], + "Middleton's": null, + "Middletown": [["M"]], + "Middletown's": null, + "middleweight": [["S", "M"]], + "middleweights": null, + "middleweight's": null, + "middlingly": null, + "middy": [["S", "M"]], + "middies": null, + "middy's": null, + "Mideastern": null, + "Mideast": [["M"]], + "Mideast's": null, + "midfield": [["R", "M"]], + "midfielder": null, + "midfield's": null, + "Midge": [["M"]], + "Midge's": null, + "midge": [["S", "M"]], + "midges": null, + "midge's": null, + "midget": [["M", "S"]], + "midget's": null, + "midgets": null, + "midi": [["S"]], + "midis": null, + "midland": [["M", "R", "S"]], + "midland's": null, + "midlander": null, + "midlands": null, + "Midland": [["M", "S"]], + "Midland's": null, + "Midlands": null, + "midlife": null, + "midlives": null, + "midmorn": [["G"]], + "midmorning": null, + "midmost": [["S"]], + "midmosts": null, + "midnight": [["S", "Y", "M"]], + "midnights": null, + "midnightly": null, + "midnight's": null, + "midpoint": [["M", "S"]], + "midpoint's": null, + "midpoints": null, + "midrange": null, + "midrib": [["M", "S"]], + "midrib's": null, + "midribs": null, + "midriff": [["M", "S"]], + "midriff's": null, + "midriffs": null, + "mid": [["S"]], + "mids": null, + "midscale": null, + "midsection": [["M"]], + "midsection's": null, + "midshipman": [["M"]], + "midshipman's": null, + "midshipmen": null, + "midship": [["S"]], + "midships": null, + "midspan": null, + "midstream": [["M", "S"]], + "midstream's": null, + "midstreams": null, + "midst": [["S", "M"]], + "midsts": null, + "midst's": null, + "midsummer": [["M", "S"]], + "midsummer's": null, + "midsummers": null, + "midterm": [["M", "S"]], + "midterm's": null, + "midterms": null, + "midtown": [["M", "S"]], + "midtown's": null, + "midtowns": null, + "Midway": [["M"]], + "Midway's": null, + "midway": [["S"]], + "midways": null, + "midweek": [["S", "Y", "M"]], + "midweeks": null, + "midweekly": null, + "midweek's": null, + "Midwesterner": [["M"]], + "Midwesterner's": null, + "Midwestern": [["Z", "R"]], + "Midwesterners": null, + "Midwest": [["M"]], + "Midwest's": null, + "midwicket": null, + "midwifery": [["S", "M"]], + "midwiferies": null, + "midwifery's": null, + "midwife": [["S", "D", "M", "G"]], + "midwifes": null, + "midwifed": null, + "midwife's": null, + "midwifing": null, + "midwinter": [["Y", "M", "S"]], + "midwinterly": null, + "midwinter's": null, + "midwinters": null, + "midwives": null, + "midyear": [["M", "S"]], + "midyear's": null, + "midyears": null, + "mien": [["M"]], + "mien's": null, + "miff": [["G", "D", "S"]], + "miffing": null, + "miffed": null, + "miffs": null, + "mightily": null, + "mightiness": [["M", "S"]], + "mightiness's": null, + "mightinesses": null, + "mightn't": null, + "might": [["S"]], + "mights": null, + "mighty": [["T", "P", "R"]], + "mightiest": null, + "mightier": null, + "mignon": null, + "mignonette": [["S", "M"]], + "mignonettes": null, + "mignonette's": null, + "Mignon": [["M"]], + "Mignon's": null, + "Mignonne": [["M"]], + "Mignonne's": null, + "migraine": [["S", "M"]], + "migraines": null, + "migraine's": null, + "migrant": [["M", "S"]], + "migrant's": null, + "migrants": null, + "migrate": [["A", "S", "D", "G"]], + "remigrate": null, + "remigrates": null, + "remigrated": null, + "remigrating": null, + "migrates": null, + "migrated": null, + "migrating": null, + "migration": [["M", "S"]], + "migration's": null, + "migrations": null, + "migrative": null, + "migratory": [["S"]], + "migratories": null, + "MIG": [["S"]], + "MIGs": null, + "Miguela": [["M"]], + "Miguela's": null, + "Miguelita": [["M"]], + "Miguelita's": null, + "Miguel": [["M"]], + "Miguel's": null, + "mikado": [["M", "S"]], + "mikado's": null, + "mikados": null, + "Mikaela": [["M"]], + "Mikaela's": null, + "Mikael": [["M"]], + "Mikael's": null, + "mike": [["D", "S", "M", "G"]], + "miked": null, + "mikes": null, + "mike's": null, + "miking": null, + "Mikel": [["M"]], + "Mikel's": null, + "Mike": [["M"]], + "Mike's": null, + "Mikey": [["M"]], + "Mikey's": null, + "Mikhail": [["M"]], + "Mikhail's": null, + "Mikkel": [["M"]], + "Mikkel's": null, + "Mikol": [["M"]], + "Mikol's": null, + "Mikoyan": [["M"]], + "Mikoyan's": null, + "milady": [["M", "S"]], + "milady's": null, + "miladies": null, + "Milagros": [["M"]], + "Milagros's": null, + "Milanese": null, + "Milan": [["M"]], + "Milan's": null, + "milch": [["M"]], + "milch's": null, + "mildew": [["D", "M", "G", "S"]], + "mildewed": null, + "mildew's": null, + "mildewing": null, + "mildews": null, + "mildness": [["M", "S"]], + "mildness's": null, + "mildnesses": null, + "Mildred": [["M"]], + "Mildred's": null, + "Mildrid": [["M"]], + "Mildrid's": null, + "mild": [["S", "T", "Y", "R", "N", "P"]], + "milds": null, + "mildest": null, + "mildly": null, + "milder": null, + "milden": null, + "mileage": [["S", "M"]], + "mileages": null, + "mileage's": null, + "Milena": [["M"]], + "Milena's": null, + "milepost": [["S", "M"]], + "mileposts": null, + "milepost's": null, + "miler": [["M"]], + "miler's": null, + "mile": [["S", "M"]], + "miles": null, + "mile's": null, + "Mile": [["S", "M"]], + "Miles": null, + "Mile's": null, + "milestone": [["M", "S"]], + "milestone's": null, + "milestones": null, + "Milford": [["M"]], + "Milford's": null, + "Milicent": [["M"]], + "Milicent's": null, + "milieu": [["S", "M"]], + "milieus": null, + "milieu's": null, + "Milissent": [["M"]], + "Milissent's": null, + "militancy": [["M", "S"]], + "militancy's": null, + "militancies": null, + "militantness": [["M"]], + "militantness's": null, + "militant": [["Y", "P", "S"]], + "militantly": null, + "militants": null, + "militarily": null, + "militarism": [["S", "M"]], + "militarisms": null, + "militarism's": null, + "militaristic": null, + "militarist": [["M", "S"]], + "militarist's": null, + "militarists": null, + "militarization": [["S", "C", "M"]], + "militarizations": null, + "demilitarizations": null, + "demilitarization": null, + "demilitarization's": null, + "militarization's": null, + "militarize": [["S", "D", "C", "G"]], + "militarizes": null, + "demilitarizes": null, + "militarized": null, + "demilitarized": null, + "demilitarize": null, + "demilitarizing": null, + "militarizing": null, + "military": null, + "militate": [["S", "D", "G"]], + "militates": null, + "militated": null, + "militating": null, + "militiaman": [["M"]], + "militiaman's": null, + "militiamen": null, + "militia": [["S", "M"]], + "militias": null, + "militia's": null, + "Milka": [["M"]], + "Milka's": null, + "Milken": [["M"]], + "Milken's": null, + "milker": [["M"]], + "milker's": null, + "milk": [["G", "Z", "S", "R", "D", "M"]], + "milking": null, + "milkers": null, + "milks": null, + "milked": null, + "milk's": null, + "milkiness": [["M", "S"]], + "milkiness's": null, + "milkinesses": null, + "milkmaid": [["S", "M"]], + "milkmaids": null, + "milkmaid's": null, + "milkman": [["M"]], + "milkman's": null, + "milkmen": null, + "milkshake": [["S"]], + "milkshakes": null, + "milksop": [["S", "M"]], + "milksops": null, + "milksop's": null, + "milkweed": [["M", "S"]], + "milkweed's": null, + "milkweeds": null, + "milky": [["R", "P", "T"]], + "milkier": null, + "milkiest": null, + "millage": [["S"]], + "millages": null, + "Millard": [["M"]], + "Millard's": null, + "Millay": [["M"]], + "Millay's": null, + "millenarian": null, + "millenarianism": [["M"]], + "millenarianism's": null, + "millennial": null, + "millennialism": null, + "millennium": [["M", "S"]], + "millennium's": null, + "millenniums": null, + "millepede's": null, + "miller": [["M"]], + "miller's": null, + "Miller": [["M"]], + "Miller's": null, + "Millet": [["M"]], + "Millet's": null, + "millet": [["M", "S"]], + "millet's": null, + "millets": null, + "milliamp": null, + "milliampere": [["S"]], + "milliamperes": null, + "milliard": [["M", "S"]], + "milliard's": null, + "milliards": null, + "millibar": [["M", "S"]], + "millibar's": null, + "millibars": null, + "Millicent": [["M"]], + "Millicent's": null, + "millidegree": [["S"]], + "millidegrees": null, + "Millie": [["M"]], + "Millie's": null, + "milligram": [["M", "S"]], + "milligram's": null, + "milligrams": null, + "millijoule": [["S"]], + "millijoules": null, + "Millikan": [["M"]], + "Millikan's": null, + "milliliter": [["M", "S"]], + "milliliter's": null, + "milliliters": null, + "Milli": [["M"]], + "Milli's": null, + "millimeter": [["S", "M"]], + "millimeters": null, + "millimeter's": null, + "milliner": [["S", "M"]], + "milliners": null, + "milliner's": null, + "millinery": [["M", "S"]], + "millinery's": null, + "millineries": null, + "milling": [["M"]], + "milling's": null, + "millionaire": [["M", "S"]], + "millionaire's": null, + "millionaires": null, + "million": [["H", "D", "M", "S"]], + "millionth": [["M"]], + "millioned": null, + "million's": null, + "millions": null, + "millionth's": null, + "millionths": null, + "millipede": [["S", "M"]], + "millipedes": null, + "millipede's": null, + "millisecond": [["M", "S"]], + "millisecond's": null, + "milliseconds": null, + "Millisent": [["M"]], + "Millisent's": null, + "millivoltmeter": [["S", "M"]], + "millivoltmeters": null, + "millivoltmeter's": null, + "millivolt": [["S", "M"]], + "millivolts": null, + "millivolt's": null, + "milliwatt": [["S"]], + "milliwatts": null, + "millpond": [["M", "S"]], + "millpond's": null, + "millponds": null, + "millrace": [["S", "M"]], + "millraces": null, + "millrace's": null, + "mill": [["S", "G", "Z", "M", "R", "D"]], + "mills": null, + "millers": null, + "mill's": null, + "milled": null, + "Mill": [["S", "M", "R"]], + "Mills": null, + "Mill's": null, + "millstone": [["S", "M"]], + "millstones": null, + "millstone's": null, + "millstream": [["S", "M"]], + "millstreams": null, + "millstream's": null, + "millwright": [["M", "S"]], + "millwright's": null, + "millwrights": null, + "Milly": [["M"]], + "Milly's": null, + "mil": [["M", "R", "S", "Z"]], + "mil's": null, + "mils": null, + "milers": null, + "Mil": [["M", "Y"]], + "Mil's": null, + "Milne": [["M"]], + "Milne's": null, + "Milo": [["M"]], + "Milo's": null, + "Milquetoast": [["S"]], + "Milquetoasts": null, + "milquetoast": [["S", "M"]], + "milquetoasts": null, + "milquetoast's": null, + "Miltiades": [["M"]], + "Miltiades's": null, + "Miltie": [["M"]], + "Miltie's": null, + "Milt": [["M"]], + "Milt's": null, + "milt": [["M", "D", "S", "G"]], + "milt's": null, + "milted": null, + "milts": null, + "milting": null, + "Miltonic": null, + "Milton": [["M"]], + "Milton's": null, + "Miltown": [["M"]], + "Miltown's": null, + "Milty": [["M"]], + "Milty's": null, + "Milwaukee": [["M"]], + "Milwaukee's": null, + "Milzie": [["M"]], + "Milzie's": null, + "MIMD": null, + "mime": [["D", "S", "R", "M", "G"]], + "mimed": null, + "mimes": null, + "mimer": [["M"]], + "mime's": null, + "miming": null, + "mimeograph": [["G", "M", "D", "S"]], + "mimeographing": null, + "mimeograph's": null, + "mimeographed": null, + "mimeographes": null, + "mimeographs": null, + "mimer's": null, + "mimesis": [["M"]], + "mimesis's": null, + "mimetic": null, + "mimetically": null, + "mimicked": null, + "mimicker": [["S", "M"]], + "mimickers": null, + "mimicker's": null, + "mimicking": null, + "mimicry": [["M", "S"]], + "mimicry's": null, + "mimicries": null, + "mimic": [["S"]], + "mimics": null, + "Mimi": [["M"]], + "Mimi's": null, + "mi": [["M", "N", "X"]], + "mi's": null, + "miens": null, + "Mimosa": [["M"]], + "Mimosa's": null, + "mimosa": [["S", "M"]], + "mimosas": null, + "mimosa's": null, + "Mina": [["M"]], + "Mina's": null, + "minaret": [["M", "S"]], + "minaret's": null, + "minarets": null, + "minatory": null, + "mincemeat": [["M", "S"]], + "mincemeat's": null, + "mincemeats": null, + "mincer": [["M"]], + "mincer's": null, + "mince": [["S", "R", "D", "G", "Z", "J"]], + "minces": null, + "minced": null, + "mincing": [["Y"]], + "mincers": null, + "mincings": null, + "mincingly": null, + "Minda": [["M"]], + "Minda's": null, + "Mindanao": [["M"]], + "Mindanao's": null, + "mind": [["A", "R", "D", "S", "Z", "G"]], + "remind": null, + "reminder": null, + "reminded": null, + "reminds": null, + "reminders": null, + "reminding": null, + "minder": [["M"]], + "minded": [["P"]], + "minds": null, + "minders": null, + "minding": null, + "mindbogglingly": null, + "mindedness": null, + "minder's": null, + "mindfully": null, + "mindfulness": [["M", "S"]], + "mindfulness's": null, + "mindfulnesses": null, + "mindful": [["U"]], + "unmindful": null, + "mindlessness": [["S", "M"]], + "mindlessnesses": null, + "mindlessness's": null, + "mindless": [["Y", "P"]], + "mindlessly": null, + "Mindoro": [["M"]], + "Mindoro's": null, + "min": [["D", "R", "Z", "G", "J"]], + "mined": null, + "miner": [["M"]], + "miners": null, + "mining": [["M"]], + "minings": null, + "mind's": null, + "mindset": [["S"]], + "mindsets": null, + "Mindy": [["M"]], + "Mindy's": null, + "minefield": [["M", "S"]], + "minefield's": null, + "minefields": null, + "mineralization": [["C"]], + "mineralized": [["U"]], + "unmineralized": [["M", "S"]], + "mineralogical": null, + "mineralogist": [["S", "M"]], + "mineralogists": null, + "mineralogist's": null, + "mineralogy": [["M", "S"]], + "mineralogy's": null, + "mineralogies": null, + "mineral": [["S", "M"]], + "minerals": null, + "mineral's": null, + "miner's": null, + "Miner": [["M"]], + "Miner's": null, + "Minerva": [["M"]], + "Minerva's": null, + "mineshaft": null, + "mine": [["S", "N", "X"]], + "mines": null, + "minion": [["M"]], + "minions": null, + "minestrone": [["M", "S"]], + "minestrone's": null, + "minestrones": null, + "minesweeper": [["M", "S"]], + "minesweeper's": null, + "minesweepers": null, + "Minetta": [["M"]], + "Minetta's": null, + "Minette": [["M"]], + "Minette's": null, + "mineworkers": null, + "mingle": [["S", "D", "G"]], + "mingles": null, + "mingled": null, + "mingling": null, + "Ming's": null, + "Mingus": [["M"]], + "Mingus's": null, + "miniature": [["G", "M", "S", "D"]], + "miniaturing": null, + "miniature's": null, + "miniatures": null, + "miniatured": null, + "miniaturist": [["S", "M"]], + "miniaturists": null, + "miniaturist's": null, + "miniaturization": [["M", "S"]], + "miniaturization's": null, + "miniaturizations": null, + "miniaturize": [["S", "D", "G"]], + "miniaturizes": null, + "miniaturized": null, + "miniaturizing": null, + "minibike": [["S"]], + "minibikes": null, + "minibus": [["S", "M"]], + "minibuses": null, + "minibus's": null, + "minicab": [["M"]], + "minicab's": null, + "minicam": [["M", "S"]], + "minicam's": null, + "minicams": null, + "minicomputer": [["S", "M"]], + "minicomputers": null, + "minicomputer's": null, + "minidress": [["S", "M"]], + "minidresses": null, + "minidress's": null, + "minify": [["G", "S", "D"]], + "minifying": null, + "minifies": null, + "minified": null, + "minimalism": [["S"]], + "minimalisms": null, + "minimalistic": null, + "minimalist": [["M", "S"]], + "minimalist's": null, + "minimalists": null, + "minimality": null, + "minimal": [["S", "Y"]], + "minimals": null, + "minimally": null, + "minima's": null, + "minimax": [["M"]], + "minimax's": null, + "minimization": [["M", "S"]], + "minimization's": null, + "minimizations": null, + "minimized": [["U"]], + "unminimized": null, + "minimizer": [["M"]], + "minimizer's": null, + "minimize": [["R", "S", "D", "Z", "G"]], + "minimizes": null, + "minimizers": null, + "minimizing": null, + "minim": [["S", "M"]], + "minims": null, + "minim's": null, + "minimum": [["M", "S"]], + "minimum's": null, + "minimums": null, + "mining's": null, + "minion's": null, + "mini": [["S"]], + "minis": null, + "miniseries": null, + "miniskirt": [["M", "S"]], + "miniskirt's": null, + "miniskirts": null, + "ministerial": [["Y"]], + "ministerially": null, + "minister": [["M", "D", "G", "S"]], + "minister's": null, + "ministered": null, + "ministering": null, + "ministers": null, + "ministrant": [["S"]], + "ministrants": null, + "ministration": [["S", "M"]], + "ministrations": null, + "ministration's": null, + "ministry": [["M", "S"]], + "ministry's": null, + "ministries": null, + "minivan": [["S"]], + "minivans": null, + "miniver": [["M"]], + "miniver's": null, + "minke": null, + "mink": [["S", "M"]], + "minks": null, + "mink's": null, + "Min": [["M", "R"]], + "Min's": null, + "Minna": [["M"]], + "Minna's": null, + "Minnaminnie": [["M"]], + "Minnaminnie's": null, + "Minneapolis": [["M"]], + "Minneapolis's": null, + "Minne": [["M"]], + "Minne's": null, + "minnesinger": [["M", "S"]], + "minnesinger's": null, + "minnesingers": null, + "Minnesota": [["M"]], + "Minnesota's": null, + "Minnesotan": [["S"]], + "Minnesotans": null, + "Minnie": [["M"]], + "Minnie's": null, + "Minni": [["M"]], + "Minni's": null, + "Minn": [["M"]], + "Minn's": null, + "Minnnie": [["M"]], + "Minnnie's": null, + "minnow": [["S", "M"]], + "minnows": null, + "minnow's": null, + "Minny": [["M"]], + "Minny's": null, + "Minoan": [["S"]], + "Minoans": null, + "Minolta": [["M"]], + "Minolta's": null, + "minor": [["D", "M", "S", "G"]], + "minored": null, + "minor's": null, + "minors": null, + "minoring": null, + "minority": [["M", "S"]], + "minority's": null, + "minorities": null, + "Minor": [["M"]], + "Minor's": null, + "Minos": null, + "Minotaur": [["M"]], + "Minotaur's": null, + "minotaur": [["S"]], + "minotaurs": null, + "Minot": [["M"]], + "Minot's": null, + "minoxidil": [["S"]], + "minoxidils": null, + "Minsk": [["M"]], + "Minsk's": null, + "Minsky": [["M"]], + "Minsky's": null, + "minster": [["S", "M"]], + "minsters": null, + "minster's": null, + "minstrel": [["S", "M"]], + "minstrels": null, + "minstrel's": null, + "minstrelsy": [["M", "S"]], + "minstrelsy's": null, + "minstrelsies": null, + "mintage": [["S", "M"]], + "mintages": null, + "mintage's": null, + "Mintaka": [["M"]], + "Mintaka's": null, + "Minta": [["M"]], + "Minta's": null, + "minter": [["M"]], + "minter's": null, + "mint": [["G", "Z", "S", "M", "R", "D"]], + "minting": null, + "minters": null, + "mints": null, + "mint's": null, + "minted": null, + "minty": [["R", "T"]], + "mintier": null, + "mintiest": null, + "minuend": [["S", "M"]], + "minuends": null, + "minuend's": null, + "minuet": [["S", "M"]], + "minuets": null, + "minuet's": null, + "Minuit": [["M"]], + "Minuit's": null, + "minuscule": [["S", "M"]], + "minuscules": null, + "minuscule's": null, + "minus": [["S"]], + "minuses": null, + "minuteman": null, + "Minuteman": [["M"]], + "Minuteman's": null, + "minutemen": null, + "minuteness": [["S", "M"]], + "minutenesses": null, + "minuteness's": null, + "minute": [["R", "S", "D", "P", "M", "T", "Y", "G"]], + "minuter": null, + "minutes": null, + "minuted": null, + "minute's": null, + "minutest": null, + "minutely": null, + "minuting": null, + "minutiae": null, + "minutia": [["M"]], + "minutia's": null, + "minx": [["M", "S"]], + "minx's": null, + "minxes": null, + "Miocene": null, + "MIPS": null, + "Miquela": [["M"]], + "Miquela's": null, + "Mirabeau": [["M"]], + "Mirabeau's": null, + "Mirabella": [["M"]], + "Mirabella's": null, + "Mirabelle": [["M"]], + "Mirabelle's": null, + "Mirabel": [["M"]], + "Mirabel's": null, + "Mirach": [["M"]], + "Mirach's": null, + "miracle": [["M", "S"]], + "miracle's": null, + "miracles": null, + "miraculousness": [["M"]], + "miraculousness's": null, + "miraculous": [["P", "Y"]], + "miraculously": null, + "mirage": [["G", "S", "D", "M"]], + "miraging": null, + "mirages": null, + "miraged": null, + "mirage's": null, + "Mira": [["M"]], + "Mira's": null, + "Miranda": [["M"]], + "Miranda's": null, + "Miran": [["M"]], + "Miran's": null, + "Mireielle": [["M"]], + "Mireielle's": null, + "Mireille": [["M"]], + "Mireille's": null, + "Mirella": [["M"]], + "Mirella's": null, + "Mirelle": [["M"]], + "Mirelle's": null, + "mire": [["M", "G", "D", "S"]], + "mire's": null, + "miring": null, + "mired": null, + "mires": null, + "Mirfak": [["M"]], + "Mirfak's": null, + "Miriam": [["M"]], + "Miriam's": null, + "Mirilla": [["M"]], + "Mirilla's": null, + "Mir": [["M"]], + "Mir's": null, + "Mirna": [["M"]], + "Mirna's": null, + "Miro": null, + "mirror": [["D", "M", "G", "S"]], + "mirrored": null, + "mirror's": null, + "mirroring": null, + "mirrors": null, + "mirthfulness": [["S", "M"]], + "mirthfulnesses": null, + "mirthfulness's": null, + "mirthful": [["P", "Y"]], + "mirthfully": null, + "mirthlessness": [["M"]], + "mirthlessness's": null, + "mirthless": [["Y", "P"]], + "mirthlessly": null, + "mirth": [["M"]], + "mirth's": null, + "mirths": null, + "MIRV": [["D", "S", "G"]], + "MIRVed": null, + "MIRVs": null, + "MIRVing": null, + "miry": [["R", "T"]], + "mirier": null, + "miriest": null, + "Mirzam": [["M"]], + "Mirzam's": null, + "misaddress": [["S", "D", "G"]], + "misaddresses": null, + "misaddressed": null, + "misaddressing": null, + "misadventure": [["S", "M"]], + "misadventures": null, + "misadventure's": null, + "misalign": [["D", "S", "G", "L"]], + "misaligned": null, + "misaligns": null, + "misaligning": null, + "misalignment": [["M", "S"]], + "misalignment's": null, + "misalignments": null, + "misalliance": [["M", "S"]], + "misalliance's": null, + "misalliances": null, + "misanalysed": null, + "misanthrope": [["M", "S"]], + "misanthrope's": null, + "misanthropes": null, + "misanthropic": null, + "misanthropically": null, + "misanthropist": [["S"]], + "misanthropists": null, + "misanthropy": [["S", "M"]], + "misanthropies": null, + "misanthropy's": null, + "misapplier": [["M"]], + "misapplier's": null, + "misapply": [["G", "N", "X", "R", "S", "D"]], + "misapplying": null, + "misapplication": null, + "misapplications": null, + "misapplies": null, + "misapplied": null, + "misapprehend": [["G", "D", "S"]], + "misapprehending": null, + "misapprehended": null, + "misapprehends": null, + "misapprehension": [["M", "S"]], + "misapprehension's": null, + "misapprehensions": null, + "misappropriate": [["G", "N", "X", "S", "D"]], + "misappropriating": null, + "misappropriation": null, + "misappropriations": null, + "misappropriates": null, + "misappropriated": null, + "misbegotten": null, + "misbehaver": [["M"]], + "misbehaver's": null, + "misbehave": [["R", "S", "D", "G"]], + "misbehaves": null, + "misbehaved": null, + "misbehaving": null, + "misbehavior": [["S", "M"]], + "misbehaviors": null, + "misbehavior's": null, + "misbrand": [["D", "S", "G"]], + "misbranded": null, + "misbrands": null, + "misbranding": null, + "misc": null, + "miscalculate": [["X", "G", "N", "S", "D"]], + "miscalculations": null, + "miscalculating": null, + "miscalculation": [["M"]], + "miscalculates": null, + "miscalculated": null, + "miscalculation's": null, + "miscall": [["S", "D", "G"]], + "miscalls": null, + "miscalled": null, + "miscalling": null, + "miscarriage": [["M", "S"]], + "miscarriage's": null, + "miscarriages": null, + "miscarry": [["S", "D", "G"]], + "miscarries": null, + "miscarried": null, + "miscarrying": null, + "miscast": [["G", "S"]], + "miscasting": null, + "miscasts": null, + "miscegenation": [["S", "M"]], + "miscegenations": null, + "miscegenation's": null, + "miscellanea": null, + "miscellaneous": [["P", "Y"]], + "miscellaneousness": null, + "miscellaneously": null, + "miscellany": [["M", "S"]], + "miscellany's": null, + "miscellanies": null, + "Mischa": [["M"]], + "Mischa's": null, + "mischance": [["M", "G", "S", "D"]], + "mischance's": null, + "mischancing": null, + "mischances": null, + "mischanced": null, + "mischief": [["M", "D", "G", "S"]], + "mischief's": null, + "mischiefed": null, + "mischiefing": null, + "mischiefs": null, + "mischievousness": [["M", "S"]], + "mischievousness's": null, + "mischievousnesses": null, + "mischievous": [["P", "Y"]], + "mischievously": null, + "miscibility": [["S"]], + "miscibilities": null, + "miscible": [["C"]], + "demiscible": null, + "misclassification": [["M"]], + "misclassification's": null, + "misclassified": null, + "misclassifying": null, + "miscode": [["S", "D", "G"]], + "miscodes": null, + "miscoded": null, + "miscoding": null, + "miscommunicate": [["N", "D", "S"]], + "miscommunication": null, + "miscommunicated": null, + "miscommunicates": null, + "miscomprehended": null, + "misconceive": [["G", "D", "S"]], + "misconceiving": null, + "misconceived": null, + "misconceives": null, + "misconception": [["M", "S"]], + "misconception's": null, + "misconceptions": null, + "misconduct": [["G", "S", "M", "D"]], + "misconducting": null, + "misconducts": null, + "misconduct's": null, + "misconducted": null, + "misconfiguration": null, + "misconstruction": [["M", "S"]], + "misconstruction's": null, + "misconstructions": null, + "misconstrue": [["D", "S", "G"]], + "misconstrued": null, + "misconstrues": null, + "misconstruing": null, + "miscopying": null, + "miscount": [["D", "G", "S"]], + "miscounted": null, + "miscounting": null, + "miscounts": null, + "miscreant": [["M", "S"]], + "miscreant's": null, + "miscreants": null, + "miscue": [["M", "G", "S", "D"]], + "miscue's": null, + "miscuing": null, + "miscues": null, + "miscued": null, + "misdeal": [["S", "G"]], + "misdeals": null, + "misdealing": null, + "misdealt": null, + "misdeed": [["M", "S"]], + "misdeed's": null, + "misdeeds": null, + "misdemeanant": [["S", "M"]], + "misdemeanants": null, + "misdemeanant's": null, + "misdemeanor": [["S", "M"]], + "misdemeanors": null, + "misdemeanor's": null, + "misdiagnose": [["G", "S", "D"]], + "misdiagnosing": null, + "misdiagnoses": null, + "misdiagnosed": null, + "misdid": null, + "misdirect": [["G", "S", "D"]], + "misdirecting": null, + "misdirects": null, + "misdirected": null, + "misdirection": [["M", "S"]], + "misdirection's": null, + "misdirections": null, + "misdirector": [["S"]], + "misdirectors": null, + "misdoes": null, + "misdo": [["J", "G"]], + "misdoings": null, + "misdoing": null, + "misdone": null, + "miserableness": [["S", "M"]], + "miserablenesses": null, + "miserableness's": null, + "miserable": [["S", "P"]], + "miserables": null, + "miserably": null, + "miser": [["K", "M"]], + "promiser": null, + "promiser's": null, + "miser's": null, + "miserliness": [["M", "S"]], + "miserliness's": null, + "miserlinesses": null, + "miserly": [["P"]], + "misery": [["M", "S"]], + "misery's": null, + "miseries": null, + "mises": [["K", "C"]], + "promises": null, + "demises": null, + "misfeasance": [["M", "S"]], + "misfeasance's": null, + "misfeasances": null, + "misfeature": [["M"]], + "misfeature's": null, + "misfield": null, + "misfile": [["S", "D", "G"]], + "misfiles": null, + "misfiled": null, + "misfiling": null, + "misfire": [["S", "D", "G"]], + "misfires": null, + "misfired": null, + "misfiring": null, + "misfit": [["M", "S"]], + "misfit's": null, + "misfits": null, + "misfitted": null, + "misfitting": null, + "misfortune": [["S", "M"]], + "misfortunes": null, + "misfortune's": null, + "misgauge": [["G", "D", "S"]], + "misgauging": null, + "misgauged": null, + "misgauges": null, + "misgiving": [["M", "Y", "S"]], + "misgiving's": null, + "misgivingly": null, + "misgivings": null, + "misgovern": [["L", "D", "G", "S"]], + "misgovernment": [["S"]], + "misgoverned": null, + "misgoverning": null, + "misgoverns": null, + "misgovernments": null, + "misguidance": [["S", "M"]], + "misguidances": null, + "misguidance's": null, + "misguidedness": [["M"]], + "misguidedness's": null, + "misguided": [["P", "Y"]], + "misguidedly": null, + "misguide": [["D", "R", "S", "G"]], + "misguider": [["M"]], + "misguides": null, + "misguiding": null, + "misguider's": null, + "Misha": [["M"]], + "Misha's": null, + "mishandle": [["S", "D", "G"]], + "mishandles": null, + "mishandled": null, + "mishandling": null, + "mishap": [["M", "S"]], + "mishap's": null, + "mishaps": null, + "mishapped": null, + "mishapping": null, + "misheard": null, + "mishear": [["G", "S"]], + "mishearing": null, + "mishears": null, + "mishitting": null, + "mishmash": [["S", "M"]], + "mishmashes": null, + "mishmash's": null, + "misidentification": [["M"]], + "misidentification's": null, + "misidentify": [["G", "N", "S", "D"]], + "misidentifying": null, + "misidentifies": null, + "misidentified": null, + "misinformation": [["S", "M"]], + "misinformations": null, + "misinformation's": null, + "misinform": [["G", "D", "S"]], + "misinforming": null, + "misinformed": null, + "misinforms": null, + "misinterpretation": [["M", "S"]], + "misinterpretation's": null, + "misinterpretations": null, + "misinterpreter": [["M"]], + "misinterpreter's": null, + "misinterpret": [["R", "D", "S", "Z", "G"]], + "misinterpreted": null, + "misinterprets": null, + "misinterpreters": null, + "misinterpreting": null, + "misjudge": [["D", "S", "G"]], + "misjudged": null, + "misjudges": null, + "misjudging": [["Y"]], + "misjudgingly": null, + "misjudgment": [["M", "S"]], + "misjudgment's": null, + "misjudgments": null, + "Miskito": null, + "mislabel": [["D", "S", "G"]], + "mislabeled": null, + "mislabels": null, + "mislabeling": null, + "mislaid": null, + "mislay": [["G", "S"]], + "mislaying": null, + "mislays": null, + "misleader": [["M"]], + "misleader's": null, + "mislead": [["G", "R", "J", "S"]], + "misleading": [["Y"]], + "misleadings": null, + "misleads": null, + "misleadingly": null, + "misled": null, + "mismanage": [["L", "G", "S", "D"]], + "mismanagement": [["M", "S"]], + "mismanaging": null, + "mismanages": null, + "mismanaged": null, + "mismanagement's": null, + "mismanagements": null, + "mismatch": [["G", "S", "D"]], + "mismatching": null, + "mismatches": null, + "mismatched": null, + "misname": [["G", "S", "D"]], + "misnaming": null, + "misnames": null, + "misnamed": null, + "misnomer": [["G", "S", "M", "D"]], + "misnomering": null, + "misnomers": null, + "misnomer's": null, + "misnomered": null, + "misogamist": [["M", "S"]], + "misogamist's": null, + "misogamists": null, + "misogamy": [["M", "S"]], + "misogamy's": null, + "misogamies": null, + "misogynistic": null, + "misogynist": [["M", "S"]], + "misogynist's": null, + "misogynists": null, + "misogynous": null, + "misogyny": [["M", "S"]], + "misogyny's": null, + "misogynies": null, + "misperceive": [["S", "D"]], + "misperceives": null, + "misperceived": null, + "misplace": [["G", "L", "D", "S"]], + "misplacing": null, + "misplacement": [["M", "S"]], + "misplaced": null, + "misplaces": null, + "misplacement's": null, + "misplacements": null, + "misplay": [["G", "S", "D"]], + "misplaying": null, + "misplays": null, + "misplayed": null, + "mispositioned": null, + "misprint": [["S", "G", "D", "M"]], + "misprints": null, + "misprinting": null, + "misprinted": null, + "misprint's": null, + "misprision": [["S", "M"]], + "misprisions": null, + "misprision's": null, + "mispronounce": [["D", "S", "G"]], + "mispronounced": null, + "mispronounces": null, + "mispronouncing": null, + "mispronunciation": [["M", "S"]], + "mispronunciation's": null, + "mispronunciations": null, + "misquotation": [["M", "S"]], + "misquotation's": null, + "misquotations": null, + "misquote": [["G", "D", "S"]], + "misquoting": null, + "misquoted": null, + "misquotes": null, + "misreader": [["M"]], + "misreader's": null, + "misread": [["R", "S", "G", "J"]], + "misreads": null, + "misreading": null, + "misreadings": null, + "misrelated": null, + "misremember": [["D", "G"]], + "misremembered": null, + "misremembering": null, + "misreport": [["D", "G", "S"]], + "misreported": null, + "misreporting": null, + "misreports": null, + "misrepresentation": [["M", "S"]], + "misrepresentation's": null, + "misrepresentations": null, + "misrepresenter": [["M"]], + "misrepresenter's": null, + "misrepresent": [["S", "D", "R", "G"]], + "misrepresents": null, + "misrepresented": null, + "misrepresenting": null, + "misroute": [["D", "S"]], + "misrouted": null, + "misroutes": null, + "misrule": [["S", "D", "G"]], + "misrules": null, + "misruled": null, + "misruling": null, + "missal": [["E", "S", "M"]], + "dismissal": null, + "dismissals": null, + "dismissal's": null, + "missals": null, + "missal's": null, + "misshape": [["D", "S", "G"]], + "misshaped": null, + "misshapes": null, + "misshaping": null, + "misshapenness": [["S", "M"]], + "misshapennesses": null, + "misshapenness's": null, + "misshapen": [["P", "Y"]], + "misshapenly": null, + "Missie": [["M"]], + "Missie's": null, + "missile": [["M", "S"]], + "missile's": null, + "missiles": null, + "missilery": [["S", "M"]], + "missileries": null, + "missilery's": null, + "mission": [["A", "M", "S"]], + "remission": null, + "remission's": null, + "remissions": null, + "mission's": null, + "missions": null, + "missionary": [["M", "S"]], + "missionary's": null, + "missionaries": null, + "missioned": null, + "missioner": [["S", "M"]], + "missioners": null, + "missioner's": null, + "missioning": null, + "missis's": null, + "Mississauga": [["M"]], + "Mississauga's": null, + "Mississippian": [["S"]], + "Mississippians": null, + "Mississippi": [["M"]], + "Mississippi's": null, + "missive": [["M", "S"]], + "missive's": null, + "missives": null, + "Missoula": [["M"]], + "Missoula's": null, + "Missourian": [["S"]], + "Missourians": null, + "Missouri": [["M"]], + "Missouri's": null, + "misspeak": [["S", "G"]], + "misspeaks": null, + "misspeaking": null, + "misspecification": null, + "misspecified": null, + "misspelling": [["M"]], + "misspelling's": null, + "misspell": [["S", "G", "J", "D"]], + "misspells": null, + "misspellings": null, + "misspelled": null, + "misspend": [["G", "S"]], + "misspending": null, + "misspends": null, + "misspent": null, + "misspoke": null, + "misspoken": null, + "mis": [["S", "R", "Z"]], + "misers": null, + "miss": [["S", "D", "E", "G", "V"]], + "misses": null, + "dismisses": null, + "missed": null, + "dismissed": null, + "dismissing": null, + "missing": null, + "Miss": [["S", "M"]], + "Misses": null, + "Miss's": null, + "misstate": [["G", "L", "D", "R", "S"]], + "misstating": null, + "misstatement": [["M", "S"]], + "misstated": null, + "misstater": [["M"]], + "misstates": null, + "misstatement's": null, + "misstatements": null, + "misstater's": null, + "misstep": [["M", "S"]], + "misstep's": null, + "missteps": null, + "misstepped": null, + "misstepping": null, + "missus": [["S", "M"]], + "missuses": null, + "missus's": null, + "Missy": [["M"]], + "Missy's": null, + "mistakable": [["U"]], + "unmistakable": null, + "mistake": [["B", "M", "G", "S", "R"]], + "mistake's": null, + "mistaking": [["Y"]], + "mistakes": null, + "mistaker": [["M"]], + "mistaken": [["Y"]], + "mistakenly": null, + "mistaker's": null, + "mistakingly": null, + "Mistassini": [["M"]], + "Mistassini's": null, + "mister": [["G", "D", "M"]], + "mistering": null, + "mistered": null, + "mister's": null, + "Mister": [["S", "M"]], + "Misters": null, + "Mister's": null, + "mistily": null, + "Misti": [["M"]], + "Misti's": null, + "mistime": [["G", "S", "D"]], + "mistiming": null, + "mistimes": null, + "mistimed": null, + "mistiness": [["S"]], + "mistinesses": null, + "mistletoe": [["M", "S"]], + "mistletoe's": null, + "mistletoes": null, + "mist": [["M", "R", "D", "G", "Z", "S"]], + "mist's": null, + "misted": null, + "misting": null, + "misters": null, + "mists": null, + "mistook": null, + "mistral": [["M", "S"]], + "mistral's": null, + "mistrals": null, + "mistranslated": null, + "mistranslates": null, + "mistranslating": null, + "mistranslation": [["S", "M"]], + "mistranslations": null, + "mistranslation's": null, + "mistreat": [["D", "G", "S", "L"]], + "mistreated": null, + "mistreating": null, + "mistreats": null, + "mistreatment": [["S", "M"]], + "mistreatments": null, + "mistreatment's": null, + "Mistress": [["M", "S"]], + "Mistress's": null, + "Mistresses": null, + "mistress": [["M", "S", "Y"]], + "mistress's": null, + "mistresses": null, + "mistressly": null, + "mistrial": [["S", "M"]], + "mistrials": null, + "mistrial's": null, + "mistruster": [["M"]], + "mistruster's": null, + "mistrustful": [["Y"]], + "mistrustfully": null, + "mistrust": [["S", "R", "D", "G"]], + "mistrusts": null, + "mistrusted": null, + "mistrusting": null, + "Misty": [["M"]], + "Misty's": null, + "mistype": [["S", "D", "G", "J"]], + "mistypes": null, + "mistyped": null, + "mistyping": null, + "mistypings": null, + "misty": [["P", "R", "T"]], + "mistier": null, + "mistiest": null, + "misunderstander": [["M"]], + "misunderstander's": null, + "misunderstanding": [["M"]], + "misunderstanding's": null, + "misunderstand": [["J", "S", "R", "Z", "G"]], + "misunderstandings": null, + "misunderstands": null, + "misunderstanders": null, + "misunderstood": null, + "misuser": [["M"]], + "misuser's": null, + "misuse": [["R", "S", "D", "M", "G"]], + "misuses": null, + "misused": null, + "misuse's": null, + "misusing": null, + "miswritten": null, + "Mitchael": [["M"]], + "Mitchael's": null, + "Mitchell": [["M"]], + "Mitchell's": null, + "Mitchel": [["M"]], + "Mitchel's": null, + "Mitch": [["M"]], + "Mitch's": null, + "miterer": [["M"]], + "miterer's": null, + "miter": [["G", "R", "D", "M"]], + "mitering": null, + "mitered": null, + "miter's": null, + "mite": [["S", "R", "M", "Z"]], + "mites": null, + "mite's": null, + "miters": null, + "Mitford": [["M"]], + "Mitford's": null, + "Mithra": [["M"]], + "Mithra's": null, + "Mithridates": [["M"]], + "Mithridates's": null, + "mitigated": [["U"]], + "unmitigated": [["Y", "P"]], + "mitigate": [["X", "N", "G", "V", "D", "S"]], + "mitigations": null, + "mitigation": [["M"]], + "mitigating": null, + "mitigative": null, + "mitigates": null, + "mitigation's": null, + "MIT": [["M"]], + "MIT's": null, + "mitoses": null, + "mitosis": [["M"]], + "mitosis's": null, + "mitotic": null, + "MITRE": [["S", "M"]], + "MITREs": null, + "MITRE's": null, + "Mitsubishi": [["M"]], + "Mitsubishi's": null, + "mitten": [["M"]], + "mitten's": null, + "Mitterrand": [["M"]], + "Mitterrand's": null, + "mitt": [["X", "S", "M", "N"]], + "mittens": null, + "mitts": null, + "mitt's": null, + "Mitty": [["M"]], + "Mitty's": null, + "Mitzi": [["M"]], + "Mitzi's": null, + "mitzvahs": null, + "mixable": null, + "mix": [["A", "G", "S", "D"]], + "remix": null, + "remixing": null, + "remixes": null, + "remixed": null, + "mixing": null, + "mixes": null, + "mixed": [["U"]], + "unmixed": null, + "mixer": [["S", "M"]], + "mixers": null, + "mixer's": null, + "mixture": [["S", "M"]], + "mixtures": null, + "mixture's": null, + "Mizar": [["M"]], + "Mizar's": null, + "mizzenmast": [["S", "M"]], + "mizzenmasts": null, + "mizzenmast's": null, + "mizzen": [["M", "S"]], + "mizzen's": null, + "mizzens": null, + "Mk": null, + "mks": null, + "ml": null, + "Mlle": [["M"]], + "Mlle's": null, + "mm": null, + "MM": null, + "MMe": null, + "Mme": [["S", "M"]], + "Mmes": null, + "Mme's": null, + "MN": null, + "mnemonically": null, + "mnemonics": [["M"]], + "mnemonics's": null, + "mnemonic": [["S", "M"]], + "mnemonic's": null, + "Mnemosyne": [["M"]], + "Mnemosyne's": null, + "Mn": [["M"]], + "Mn's": null, + "MO": null, + "moan": [["G", "S", "Z", "R", "D", "M"]], + "moaning": null, + "moans": null, + "moaners": null, + "moaner": null, + "moaned": null, + "moan's": null, + "moat": [["S", "M", "D", "G"]], + "moats": null, + "moat's": null, + "moated": null, + "moating": null, + "mobbed": null, + "mobber": null, + "mobbing": null, + "mobcap": [["S", "M"]], + "mobcaps": null, + "mobcap's": null, + "Mobile": [["M"]], + "Mobile's": null, + "mobile": [["S"]], + "mobiles": null, + "mobility": [["M", "S"]], + "mobility's": null, + "mobilities": null, + "mobilizable": null, + "mobilization": [["A", "M", "C", "S"]], + "remobilization": null, + "remobilization's": null, + "remobilizations": null, + "mobilization's": null, + "demobilization's": null, + "demobilization": null, + "demobilizations": null, + "mobilizations": null, + "mobilize": [["C", "G", "D", "S"]], + "demobilize": null, + "demobilizing": null, + "demobilized": null, + "demobilizes": null, + "mobilizing": null, + "mobilized": [["U"]], + "mobilizes": [["A"]], + "unmobilized": [["S", "M"]], + "mobilizer": [["M", "S"]], + "mobilizer's": null, + "mobilizers": null, + "remobilizes": null, + "Mobil": [["M"]], + "Mobil's": null, + "mob": [["M", "S"]], + "mob's": null, + "mobs": null, + "mobster": [["M", "S"]], + "mobster's": null, + "mobsters": null, + "Mobutu": [["M"]], + "Mobutu's": null, + "moccasin": [["S", "M"]], + "moccasins": null, + "moccasin's": null, + "mocha": [["S", "M"]], + "mochas": null, + "mocha's": null, + "mockers": [["M"]], + "mockers's": null, + "mockery": [["M", "S"]], + "mockery's": null, + "mockeries": null, + "mock": [["G", "Z", "S", "R", "D"]], + "mocking": [["Y"]], + "mocks": null, + "mocker": null, + "mocked": null, + "mockingbird": [["M", "S"]], + "mockingbird's": null, + "mockingbirds": null, + "mockingly": null, + "mo": [["C", "S", "K"]], + "demos": null, + "mos": [["S"]], + "promos": null, + "promo": null, + "modality": [["M", "S"]], + "modality's": null, + "modalities": null, + "modal": [["Y"]], + "modally": null, + "modeled": [["A"]], + "remodeled": null, + "modeler": [["M"]], + "modeler's": null, + "modeling": [["M"]], + "modeling's": null, + "models": [["A"]], + "remodels": null, + "model": [["Z", "G", "S", "J", "M", "R", "D"]], + "modelers": null, + "modelings": null, + "model's": null, + "mode": [["M", "S"]], + "mode's": null, + "modes": null, + "modem": [["S", "M"]], + "modems": null, + "modem's": null, + "moderated": [["U"]], + "unmoderated": null, + "moderateness": [["S", "M"]], + "moderatenesses": null, + "moderateness's": null, + "moderate": [["P", "N", "G", "D", "S", "X", "Y"]], + "moderation": [["M"]], + "moderating": null, + "moderates": null, + "moderations": null, + "moderately": null, + "moderation's": null, + "moderator": [["M", "S"]], + "moderator's": null, + "moderators": null, + "modernism": [["M", "S"]], + "modernism's": null, + "modernisms": null, + "modernistic": null, + "modernist": [["S"]], + "modernists": null, + "modernity": [["S", "M"]], + "modernities": null, + "modernity's": null, + "modernization": [["M", "S"]], + "modernization's": null, + "modernizations": null, + "modernized": [["U"]], + "unmodernized": null, + "modernizer": [["M"]], + "modernizer's": null, + "modernize": [["S", "R", "D", "G", "Z"]], + "modernizes": [["U"]], + "modernizing": null, + "modernizers": null, + "unmodernizes": null, + "modernness": [["S", "M"]], + "modernnesses": null, + "modernness's": null, + "modern": [["P", "T", "R", "Y", "S"]], + "modernest": null, + "moderner": null, + "modernly": null, + "moderns": null, + "Modesta": [["M"]], + "Modesta's": null, + "Modestia": [["M"]], + "Modestia's": null, + "Modestine": [["M"]], + "Modestine's": null, + "Modesto": [["M"]], + "Modesto's": null, + "modest": [["T", "R", "Y"]], + "modestest": null, + "modester": null, + "modestly": null, + "Modesty": [["M"]], + "Modesty's": null, + "modesty": [["M", "S"]], + "modesty's": null, + "modesties": null, + "modicum": [["S", "M"]], + "modicums": null, + "modicum's": null, + "modifiability": [["M"]], + "modifiability's": null, + "modifiableness": [["M"]], + "modifiableness's": null, + "modifiable": [["U"]], + "unmodifiable": null, + "modification": [["M"]], + "modification's": null, + "modified": [["U"]], + "unmodified": null, + "modifier": [["M"]], + "modifier's": null, + "modify": [["N", "G", "Z", "X", "R", "S", "D"]], + "modifying": null, + "modifiers": null, + "modifications": null, + "modifies": null, + "Modigliani": [["M"]], + "Modigliani's": null, + "modishness": [["M", "S"]], + "modishness's": null, + "modishnesses": null, + "modish": [["Y", "P"]], + "modishly": null, + "mod": [["T", "S", "R"]], + "mods": null, + "moder": null, + "Modula": [["M"]], + "Modula's": null, + "modularity": [["S", "M"]], + "modularities": null, + "modularity's": null, + "modularization": null, + "modularize": [["S", "D", "G"]], + "modularizes": null, + "modularized": null, + "modularizing": null, + "modular": [["S", "Y"]], + "modulars": null, + "modularly": null, + "modulate": [["A", "D", "S", "N", "C", "G"]], + "remodulate": null, + "remodulated": null, + "remodulates": null, + "remodulation": null, + "remodulating": null, + "modulated": null, + "demodulated": null, + "modulates": null, + "demodulates": null, + "modulation": [["C", "M", "S"]], + "demodulation": null, + "demodulate": null, + "demodulating": null, + "modulating": null, + "demodulation's": null, + "demodulations": null, + "modulation's": null, + "modulations": null, + "modulator": [["A", "C", "S", "M"]], + "remodulator": null, + "remodulators": null, + "remodulator's": null, + "demodulator": null, + "demodulators": null, + "demodulator's": null, + "modulators": null, + "modulator's": null, + "module": [["S", "M"]], + "modules": null, + "module's": null, + "moduli": null, + "modulo": null, + "modulus": [["M"]], + "modulus's": null, + "modus": null, + "Moe": [["M"]], + "Moe's": null, + "Moen": [["M"]], + "Moen's": null, + "Mogadiscio's": null, + "Mogadishu": null, + "mogul": [["M", "S"]], + "mogul's": null, + "moguls": null, + "Mogul": [["M", "S"]], + "Mogul's": null, + "Moguls": null, + "mohair": [["S", "M"]], + "mohairs": null, + "mohair's": null, + "Mohamed": [["M"]], + "Mohamed's": null, + "Mohammad": [["M"]], + "Mohammad's": null, + "Mohammedanism": [["M", "S"]], + "Mohammedanism's": null, + "Mohammedanisms": null, + "Mohammedan": [["S", "M"]], + "Mohammedans": null, + "Mohammedan's": null, + "Mohammed's": null, + "Mohandas": [["M"]], + "Mohandas's": null, + "Mohandis": [["M"]], + "Mohandis's": null, + "Mohawk": [["M", "S"]], + "Mohawk's": null, + "Mohawks": null, + "Mohegan": [["S"]], + "Mohegans": null, + "Mohican's": null, + "Moho": [["M"]], + "Moho's": null, + "Mohorovicic": [["M"]], + "Mohorovicic's": null, + "Mohr": [["M"]], + "Mohr's": null, + "moiety": [["M", "S"]], + "moiety's": null, + "moieties": null, + "moil": [["S", "G", "D"]], + "moils": null, + "moiling": null, + "moiled": null, + "Moina": [["M"]], + "Moina's": null, + "Moines": [["M"]], + "Moines's": null, + "Moira": [["M"]], + "Moira's": null, + "moire": [["M", "S"]], + "moire's": null, + "moires": null, + "Moise": [["M", "S"]], + "Moise's": null, + "Moises": null, + "Moiseyev": [["M"]], + "Moiseyev's": null, + "Moishe": [["M"]], + "Moishe's": null, + "moistener": [["M"]], + "moistener's": null, + "moisten": [["Z", "G", "R", "D"]], + "moisteners": null, + "moistening": null, + "moistened": null, + "moistness": [["M", "S"]], + "moistness's": null, + "moistnesses": null, + "moist": [["T", "X", "P", "R", "N", "Y"]], + "moistest": null, + "moistens": null, + "moister": null, + "moistly": null, + "moisture": [["M", "S"]], + "moisture's": null, + "moistures": null, + "moisturize": [["G", "Z", "D", "R", "S"]], + "moisturizing": null, + "moisturizers": null, + "moisturized": null, + "moisturizer": null, + "moisturizes": null, + "Mojave": [["M"]], + "Mojave's": null, + "molal": null, + "molarity": [["S", "M"]], + "molarities": null, + "molarity's": null, + "molar": [["M", "S"]], + "molar's": null, + "molars": null, + "molasses": [["M", "S"]], + "molasses's": null, + "molasseses": null, + "Moldavia": [["M"]], + "Moldavia's": null, + "Moldavian": [["S"]], + "Moldavians": null, + "moldboard": [["S", "M"]], + "moldboards": null, + "moldboard's": null, + "molder": [["D", "G"]], + "moldered": null, + "moldering": null, + "moldiness": [["S", "M"]], + "moldinesses": null, + "moldiness's": null, + "molding": [["M"]], + "molding's": null, + "mold": [["M", "R", "D", "J", "S", "G", "Z"]], + "mold's": null, + "molded": null, + "moldings": null, + "molds": null, + "molders": null, + "Moldova": null, + "moldy": [["P", "T", "R"]], + "moldiest": null, + "moldier": null, + "molecularity": [["S", "M"]], + "molecularities": null, + "molecularity's": null, + "molecular": [["Y"]], + "molecularly": null, + "molecule": [["M", "S"]], + "molecule's": null, + "molecules": null, + "molehill": [["S", "M"]], + "molehills": null, + "molehill's": null, + "mole": [["M", "T", "S"]], + "mole's": null, + "molest": [["R", "D", "Z", "G", "S"]], + "moles": null, + "moleskin": [["M", "S"]], + "moleskin's": null, + "moleskins": null, + "molestation": [["S", "M"]], + "molestations": null, + "molestation's": null, + "molested": [["U"]], + "unmolested": null, + "molester": [["M"]], + "molester's": null, + "molesters": null, + "molesting": null, + "molests": null, + "Moliere": null, + "Molina": [["M"]], + "Molina's": null, + "Moline": [["M"]], + "Moline's": null, + "Mollee": [["M"]], + "Mollee's": null, + "Mollie": [["M"]], + "Mollie's": null, + "mollification": [["M"]], + "mollification's": null, + "mollify": [["X", "S", "D", "G", "N"]], + "mollifications": null, + "mollifies": null, + "mollified": null, + "mollifying": null, + "Molli": [["M"]], + "Molli's": null, + "Moll": [["M"]], + "Moll's": null, + "moll": [["M", "S"]], + "moll's": null, + "molls": null, + "mollusc's": null, + "mollusk": [["S"]], + "mollusks": null, + "mollycoddler": [["M"]], + "mollycoddler's": null, + "mollycoddle": [["S", "R", "D", "G"]], + "mollycoddles": null, + "mollycoddled": null, + "mollycoddling": null, + "Molly": [["M"]], + "Molly's": null, + "molly": [["S", "M"]], + "mollies": null, + "molly's": null, + "Molnar": [["M"]], + "Molnar's": null, + "Moloch": [["M"]], + "Moloch's": null, + "Molokai": [["M"]], + "Molokai's": null, + "Molotov": [["M"]], + "Molotov's": null, + "molter": [["M"]], + "molter's": null, + "molt": [["R", "D", "N", "G", "Z", "S"]], + "molted": null, + "molten": null, + "molting": null, + "molters": null, + "molts": null, + "Moluccas": null, + "molybdenite": [["M"]], + "molybdenite's": null, + "molybdenum": [["M", "S"]], + "molybdenum's": null, + "molybdenums": null, + "Mombasa": [["M"]], + "Mombasa's": null, + "momenta": null, + "momentarily": null, + "momentariness": [["S", "M"]], + "momentarinesses": null, + "momentariness's": null, + "momentary": [["P"]], + "moment": [["M", "Y", "S"]], + "moment's": null, + "momently": null, + "moments": null, + "momentousness": [["M", "S"]], + "momentousness's": null, + "momentousnesses": null, + "momentous": [["Y", "P"]], + "momentously": null, + "momentum": [["S", "M"]], + "momentums": null, + "momentum's": null, + "momma": [["S"]], + "mommas": null, + "Mommy": [["M"]], + "Mommy's": null, + "mommy": [["S", "M"]], + "mommies": null, + "mommy's": null, + "Mo": [["M", "N"]], + "Mo's": null, + "mom": [["S", "M"]], + "moms": null, + "mom's": null, + "Monaco": [["M"]], + "Monaco's": null, + "monadic": null, + "monad": [["S", "M"]], + "monads": null, + "monad's": null, + "Monah": [["M"]], + "Monah's": null, + "Mona": [["M"]], + "Mona's": null, + "monarchic": null, + "monarchical": null, + "monarchism": [["M", "S"]], + "monarchism's": null, + "monarchisms": null, + "monarchistic": null, + "monarchist": [["M", "S"]], + "monarchist's": null, + "monarchists": null, + "monarch": [["M"]], + "monarch's": null, + "monarchs": null, + "monarchy": [["M", "S"]], + "monarchy's": null, + "monarchies": null, + "Monash": [["M"]], + "Monash's": null, + "monastery": [["M", "S"]], + "monastery's": null, + "monasteries": null, + "monastical": [["Y"]], + "monastically": null, + "monasticism": [["M", "S"]], + "monasticism's": null, + "monasticisms": null, + "monastic": [["S"]], + "monastics": null, + "monaural": [["Y"]], + "monaurally": null, + "Mondale": [["M"]], + "Mondale's": null, + "Monday": [["M", "S"]], + "Monday's": null, + "Mondays": null, + "Mondrian": [["M"]], + "Mondrian's": null, + "Monegasque": [["S", "M"]], + "Monegasques": null, + "Monegasque's": null, + "Monera": [["M"]], + "Monera's": null, + "monetarily": null, + "monetarism": [["S"]], + "monetarisms": null, + "monetarist": [["M", "S"]], + "monetarist's": null, + "monetarists": null, + "monetary": null, + "monetization": [["C", "M", "A"]], + "demonetization's": null, + "monetization's": null, + "remonetization's": null, + "remonetization": null, + "monetize": [["C", "G", "A", "D", "S"]], + "demonetize": null, + "demonetizing": null, + "demonetized": null, + "demonetizes": null, + "monetizing": null, + "remonetizing": null, + "remonetize": null, + "remonetized": null, + "remonetizes": null, + "monetized": null, + "monetizes": null, + "Monet": [["M"]], + "Monet's": null, + "moneybag": [["S", "M"]], + "moneybags": null, + "moneybag's": null, + "moneychangers": null, + "moneyer": [["M"]], + "moneyer's": null, + "moneylender": [["S", "M"]], + "moneylenders": null, + "moneylender's": null, + "moneymaker": [["M", "S"]], + "moneymaker's": null, + "moneymakers": null, + "moneymaking": [["M", "S"]], + "moneymaking's": null, + "moneymakings": null, + "money": [["S", "M", "R", "D"]], + "moneys": null, + "money's": null, + "moneyed": null, + "Monfort": [["M"]], + "Monfort's": null, + "monger": [["S", "G", "D", "M"]], + "mongers": null, + "mongering": null, + "mongered": null, + "monger's": null, + "Mongolia": [["M"]], + "Mongolia's": null, + "Mongolian": [["S"]], + "Mongolians": null, + "Mongolic": [["M"]], + "Mongolic's": null, + "mongolism": [["S", "M"]], + "mongolisms": null, + "mongolism's": null, + "mongoloid": [["S"]], + "mongoloids": null, + "Mongoloid": [["S"]], + "Mongoloids": null, + "Mongol": [["S", "M"]], + "Mongols": null, + "Mongol's": null, + "mongoose": [["S", "M"]], + "mongooses": null, + "mongoose's": null, + "mongrel": [["S", "M"]], + "mongrels": null, + "mongrel's": null, + "Monica": [["M"]], + "Monica's": null, + "monies": [["M"]], + "monies's": null, + "Monika": [["M"]], + "Monika's": null, + "moniker": [["M", "S"]], + "moniker's": null, + "monikers": null, + "Monique": [["M"]], + "Monique's": null, + "monism": [["M", "S"]], + "monism's": null, + "monisms": null, + "monist": [["S", "M"]], + "monists": null, + "monist's": null, + "monition": [["S", "M"]], + "monitions": null, + "monition's": null, + "monitored": [["U"]], + "unmonitored": null, + "monitor": [["G", "S", "M", "D"]], + "monitoring": null, + "monitors": null, + "monitor's": null, + "monitory": [["S"]], + "monitories": null, + "monkeyshine": [["S"]], + "monkeyshines": null, + "monkey": [["S", "M", "D", "G"]], + "monkeys": null, + "monkey's": null, + "monkeyed": null, + "monkeying": null, + "monkish": null, + "Monk": [["M"]], + "Monk's": null, + "monk": [["M", "S"]], + "monk's": null, + "monks": null, + "monkshood": [["S", "M"]], + "monkshoods": null, + "monkshood's": null, + "Monmouth": [["M"]], + "Monmouth's": null, + "monochromatic": null, + "monochromator": null, + "monochrome": [["M", "S"]], + "monochrome's": null, + "monochromes": null, + "monocle": [["S", "D", "M"]], + "monocles": null, + "monocled": null, + "monocle's": null, + "monoclinic": null, + "monoclonal": [["S"]], + "monoclonals": null, + "monocotyledonous": null, + "monocotyledon": [["S", "M"]], + "monocotyledons": null, + "monocotyledon's": null, + "monocular": [["S", "Y"]], + "monoculars": null, + "monocularly": null, + "monodic": null, + "monodist": [["S"]], + "monodists": null, + "monody": [["M", "S"]], + "monody's": null, + "monodies": null, + "monogamist": [["M", "S"]], + "monogamist's": null, + "monogamists": null, + "monogamous": [["P", "Y"]], + "monogamousness": null, + "monogamously": null, + "monogamy": [["M", "S"]], + "monogamy's": null, + "monogamies": null, + "monogrammed": null, + "monogramming": null, + "monogram": [["M", "S"]], + "monogram's": null, + "monograms": null, + "monograph": [["G", "M", "D", "S"]], + "monographing": null, + "monograph's": null, + "monographed": null, + "monographes": null, + "monographs": null, + "monolingualism": null, + "monolingual": [["S"]], + "monolinguals": null, + "monolithic": null, + "monolithically": null, + "monolith": [["M"]], + "monolith's": null, + "monoliths": null, + "monologist": [["S"]], + "monologists": null, + "monologue": [["G", "M", "S", "D"]], + "monologuing": null, + "monologue's": null, + "monologues": null, + "monologued": null, + "monomaniacal": null, + "monomaniac": [["M", "S"]], + "monomaniac's": null, + "monomaniacs": null, + "monomania": [["M", "S"]], + "monomania's": null, + "monomanias": null, + "monomeric": null, + "monomer": [["S", "M"]], + "monomers": null, + "monomer's": null, + "monomial": [["S", "M"]], + "monomials": null, + "monomial's": null, + "mono": [["M", "S"]], + "mono's": null, + "monos": null, + "Monongahela": [["M"]], + "Monongahela's": null, + "mononuclear": null, + "mononucleoses": null, + "mononucleosis": [["M"]], + "mononucleosis's": null, + "monophonic": null, + "monoplane": [["M", "S"]], + "monoplane's": null, + "monoplanes": null, + "monopole": [["S"]], + "monopoles": null, + "monopolistic": null, + "monopolist": [["M", "S"]], + "monopolist's": null, + "monopolists": null, + "monopolization": [["M", "S"]], + "monopolization's": null, + "monopolizations": null, + "monopolized": [["U"]], + "unmonopolized": null, + "monopolize": [["G", "Z", "D", "S", "R"]], + "monopolizing": null, + "monopolizers": null, + "monopolizes": [["U"]], + "monopolizer": null, + "unmonopolizes": null, + "monopoly": [["M", "S"]], + "monopoly's": null, + "monopolies": null, + "monorail": [["S", "M"]], + "monorails": null, + "monorail's": null, + "monostable": null, + "monosyllabic": null, + "monosyllable": [["M", "S"]], + "monosyllable's": null, + "monosyllables": null, + "monotheism": [["S", "M"]], + "monotheisms": null, + "monotheism's": null, + "monotheistic": null, + "monotheist": [["S"]], + "monotheists": null, + "monotone": [["S", "D", "M", "G"]], + "monotones": null, + "monotoned": null, + "monotone's": null, + "monotoning": null, + "monotonic": null, + "monotonically": null, + "monotonicity": null, + "monotonousness": [["M", "S"]], + "monotonousness's": null, + "monotonousnesses": null, + "monotonous": [["Y", "P"]], + "monotonously": null, + "monotony": [["M", "S"]], + "monotony's": null, + "monotonies": null, + "monovalent": null, + "monoxide": [["S", "M"]], + "monoxides": null, + "monoxide's": null, + "Monroe": [["M"]], + "Monroe's": null, + "Monro": [["M"]], + "Monro's": null, + "Monrovia": [["M"]], + "Monrovia's": null, + "Monsanto": [["M"]], + "Monsanto's": null, + "monseigneur": null, + "monsieur": [["M"]], + "monsieur's": null, + "Monsignori": null, + "Monsignor": [["M", "S"]], + "Monsignor's": null, + "Monsignors": null, + "monsignor": [["S"]], + "monsignors": null, + "Mon": [["S", "M"]], + "Mons": null, + "Mon's": null, + "monsoonal": null, + "monsoon": [["M", "S"]], + "monsoon's": null, + "monsoons": null, + "monster": [["S", "M"]], + "monsters": null, + "monster's": null, + "monstrance": [["A", "S", "M"]], + "remonstrance": null, + "remonstrances": null, + "remonstrance's": null, + "monstrances": null, + "monstrance's": null, + "monstrosity": [["S", "M"]], + "monstrosities": null, + "monstrosity's": null, + "monstrousness": [["M"]], + "monstrousness's": null, + "monstrous": [["Y", "P"]], + "monstrously": null, + "montage": [["S", "D", "M", "G"]], + "montages": null, + "montaged": null, + "montage's": null, + "montaging": null, + "Montague": [["M"]], + "Montague's": null, + "Montaigne": [["M"]], + "Montaigne's": null, + "Montana": [["M"]], + "Montana's": null, + "Montanan": [["M", "S"]], + "Montanan's": null, + "Montanans": null, + "Montcalm": [["M"]], + "Montcalm's": null, + "Montclair": [["M"]], + "Montclair's": null, + "Monte": [["M"]], + "Monte's": null, + "Montenegrin": null, + "Montenegro": [["M"]], + "Montenegro's": null, + "Monterey": [["M"]], + "Monterey's": null, + "Monterrey": [["M"]], + "Monterrey's": null, + "Montesquieu": [["M"]], + "Montesquieu's": null, + "Montessori": [["M"]], + "Montessori's": null, + "Monteverdi": [["M"]], + "Monteverdi's": null, + "Montevideo": [["M"]], + "Montevideo's": null, + "Montezuma": null, + "Montgomery": [["M"]], + "Montgomery's": null, + "monthly": [["S"]], + "monthlies": null, + "month": [["M", "Y"]], + "month's": null, + "months": null, + "Monticello": [["M"]], + "Monticello's": null, + "Monti": [["M"]], + "Monti's": null, + "Mont": [["M"]], + "Mont's": null, + "Montmartre": [["M"]], + "Montmartre's": null, + "Montoya": [["M"]], + "Montoya's": null, + "Montpelier": [["M"]], + "Montpelier's": null, + "Montrachet": [["M"]], + "Montrachet's": null, + "Montreal": [["M"]], + "Montreal's": null, + "Montserrat": [["M"]], + "Montserrat's": null, + "Monty": [["M"]], + "Monty's": null, + "monumentality": [["M"]], + "monumentality's": null, + "monumental": [["Y"]], + "monumentally": null, + "monument": [["D", "M", "S", "G"]], + "monumented": null, + "monument's": null, + "monuments": null, + "monumenting": null, + "mooch": [["Z", "S", "R", "D", "G"]], + "moochers": null, + "mooches": null, + "moocher": null, + "mooched": null, + "mooching": null, + "moodily": null, + "moodiness": [["M", "S"]], + "moodiness's": null, + "moodinesses": null, + "mood": [["M", "S"]], + "mood's": null, + "moods": null, + "Moody": [["M"]], + "Moody's": null, + "moody": [["P", "T", "R"]], + "moodiest": null, + "moodier": null, + "Moog": null, + "moo": [["G", "S", "D"]], + "mooing": null, + "moos": null, + "mooed": null, + "moonbeam": [["S", "M"]], + "moonbeams": null, + "moonbeam's": null, + "Mooney": [["M"]], + "Mooney's": null, + "moon": [["G", "D", "M", "S"]], + "mooning": null, + "mooned": null, + "moon's": null, + "moons": null, + "moonless": null, + "moonlight": [["G", "Z", "D", "R", "M", "S"]], + "moonlighting": [["M"]], + "moonlighters": null, + "moonlighted": null, + "moonlighter": null, + "moonlight's": null, + "moonlights": null, + "moonlighting's": null, + "moonlit": null, + "Moon": [["M"]], + "Moon's": null, + "moonscape": [["M", "S"]], + "moonscape's": null, + "moonscapes": null, + "moonshiner": [["M"]], + "moonshiner's": null, + "moonshine": [["S", "R", "Z", "M"]], + "moonshines": null, + "moonshiners": null, + "moonshine's": null, + "moonshot": [["M", "S"]], + "moonshot's": null, + "moonshots": null, + "moonstone": [["S", "M"]], + "moonstones": null, + "moonstone's": null, + "moonstruck": null, + "moonwalk": [["S", "D", "G"]], + "moonwalks": null, + "moonwalked": null, + "moonwalking": null, + "Moore": [["M"]], + "Moore's": null, + "moor": [["G", "D", "M", "J", "S"]], + "mooring": [["M"]], + "moored": null, + "moor's": null, + "moorings": null, + "moors": null, + "mooring's": null, + "Moorish": null, + "moorland": [["M", "S"]], + "moorland's": null, + "moorlands": null, + "Moor": [["M", "S"]], + "Moor's": null, + "Moors": null, + "moose": [["M"]], + "moose's": null, + "moot": [["R", "D", "G", "S"]], + "mooter": null, + "mooted": null, + "mooting": null, + "moots": null, + "moped": [["M", "S"]], + "moped's": null, + "mopeds": null, + "moper": [["M"]], + "moper's": null, + "mope": [["S"]], + "mopes": null, + "mopey": null, + "mopier": null, + "mopiest": null, + "mopish": null, + "mopped": null, + "moppet": [["M", "S"]], + "moppet's": null, + "moppets": null, + "mopping": null, + "mop": [["S", "Z", "G", "M", "D", "R"]], + "mops": null, + "mopers": null, + "moping": null, + "mop's": null, + "moraine": [["M", "S"]], + "moraine's": null, + "moraines": null, + "morale": [["M", "S"]], + "morale's": null, + "morales": null, + "Morales": [["M"]], + "Morales's": null, + "moralistic": null, + "moralistically": null, + "moralist": [["M", "S"]], + "moralist's": null, + "moralists": null, + "morality": [["U", "M", "S"]], + "unmorality": null, + "unmorality's": null, + "unmoralities": null, + "morality's": null, + "moralities": null, + "moralization": [["C", "S"]], + "demoralizations": null, + "moralizations": null, + "moralize": [["C", "G", "D", "R", "S", "Z"]], + "demoralize": null, + "demoralized": null, + "demoralizes": null, + "demoralizers": null, + "moralizing": null, + "moralized": null, + "moralizer": null, + "moralizes": null, + "moralizers": null, + "moralled": null, + "moraller": null, + "moralling": null, + "moral": [["S", "M", "Y"]], + "morals": null, + "moral's": null, + "morally": null, + "Mora": [["M"]], + "Mora's": null, + "Moran": [["M"]], + "Moran's": null, + "morass": [["S", "M"]], + "morasses": null, + "morass's": null, + "moratorium": [["S", "M"]], + "moratoriums": null, + "moratorium's": null, + "Moravia": [["M"]], + "Moravia's": null, + "Moravian": null, + "moray": [["S", "M"]], + "morays": null, + "moray's": null, + "morbidity": [["S", "M"]], + "morbidities": null, + "morbidity's": null, + "morbidness": [["S"]], + "morbidnesses": null, + "morbid": [["Y", "P"]], + "morbidly": null, + "mordancy": [["M", "S"]], + "mordancy's": null, + "mordancies": null, + "mordant": [["G", "D", "Y", "S"]], + "mordanting": null, + "mordanted": null, + "mordantly": null, + "mordants": null, + "Mordecai": [["M"]], + "Mordecai's": null, + "Mord": [["M"]], + "Mord's": null, + "Mordred": [["M"]], + "Mordred's": null, + "Mordy": [["M"]], + "Mordy's": null, + "more": [["D", "S", "N"]], + "mored": null, + "mores": null, + "morion": [["M"]], + "Moreen": [["M"]], + "Moreen's": null, + "Morehouse": [["M"]], + "Morehouse's": null, + "Moreland": [["M"]], + "Moreland's": null, + "morel": [["S", "M"]], + "morels": null, + "morel's": null, + "More": [["M"]], + "More's": null, + "Morena": [["M"]], + "Morena's": null, + "Moreno": [["M"]], + "Moreno's": null, + "moreover": null, + "Morey": [["M"]], + "Morey's": null, + "Morgana": [["M"]], + "Morgana's": null, + "Morganica": [["M"]], + "Morganica's": null, + "Morgan": [["M", "S"]], + "Morgan's": null, + "Morgans": null, + "Morganne": [["M"]], + "Morganne's": null, + "morgen": [["M"]], + "morgen's": null, + "Morgen": [["M"]], + "Morgen's": null, + "morgue": [["S", "M"]], + "morgues": null, + "morgue's": null, + "Morgun": [["M"]], + "Morgun's": null, + "Moria": [["M"]], + "Moria's": null, + "Moriarty": [["M"]], + "Moriarty's": null, + "moribundity": [["M"]], + "moribundity's": null, + "moribund": [["Y"]], + "moribundly": null, + "Morie": [["M"]], + "Morie's": null, + "Morin": [["M"]], + "Morin's": null, + "morion's": null, + "Morison": [["M"]], + "Morison's": null, + "Morissa": [["M"]], + "Morissa's": null, + "Morita": [["M"]], + "Morita's": null, + "Moritz": [["M"]], + "Moritz's": null, + "Morlee": [["M"]], + "Morlee's": null, + "Morley": [["M"]], + "Morley's": null, + "Morly": [["M"]], + "Morly's": null, + "Mormonism": [["M", "S"]], + "Mormonism's": null, + "Mormonisms": null, + "Mormon": [["S", "M"]], + "Mormons": null, + "Mormon's": null, + "Morna": [["M"]], + "Morna's": null, + "morning": [["M", "Y"]], + "morning's": null, + "morningly": null, + "morn": [["S", "G", "J", "D", "M"]], + "morns": null, + "mornings": null, + "morned": null, + "morn's": null, + "Moroccan": [["S"]], + "Moroccans": null, + "Morocco": [["M"]], + "Morocco's": null, + "morocco": [["S", "M"]], + "moroccos": null, + "morocco's": null, + "Moro": [["M"]], + "Moro's": null, + "moronic": null, + "moronically": null, + "Moroni": [["M"]], + "Moroni's": null, + "moron": [["S", "M"]], + "morons": null, + "moron's": null, + "moroseness": [["M", "S"]], + "moroseness's": null, + "morosenesses": null, + "morose": [["Y", "P"]], + "morosely": null, + "morpheme": [["D", "S", "M", "G"]], + "morphemed": null, + "morphemes": null, + "morpheme's": null, + "morpheming": null, + "morphemic": [["S"]], + "morphemics": null, + "Morpheus": [["M"]], + "Morpheus's": null, + "morph": [["G", "D", "J"]], + "morphing": null, + "morphed": null, + "morphings": null, + "morphia": [["S"]], + "morphias": null, + "morphine": [["M", "S"]], + "morphine's": null, + "morphines": null, + "morphism": [["M", "S"]], + "morphism's": null, + "morphisms": null, + "morphologic": null, + "morphological": [["Y"]], + "morphologically": null, + "morphology": [["M", "S"]], + "morphology's": null, + "morphologies": null, + "morphophonemic": [["S"]], + "morphophonemics": [["M"]], + "morphophonemics's": null, + "morphs": null, + "Morrie": [["M"]], + "Morrie's": null, + "morris": null, + "Morris": [["M"]], + "Morris's": null, + "Morrison": [["M"]], + "Morrison's": null, + "Morristown": [["M"]], + "Morristown's": null, + "Morrow": [["M"]], + "Morrow's": null, + "morrow": [["M", "S"]], + "morrow's": null, + "morrows": null, + "Morry": [["M"]], + "Morry's": null, + "morsel": [["G", "M", "D", "S"]], + "morseling": null, + "morsel's": null, + "morseled": null, + "morsels": null, + "Morse": [["M"]], + "Morse's": null, + "mortality": [["S", "M"]], + "mortalities": null, + "mortality's": null, + "mortal": [["S", "Y"]], + "mortals": null, + "mortally": null, + "mortarboard": [["S", "M"]], + "mortarboards": null, + "mortarboard's": null, + "mortar": [["G", "S", "D", "M"]], + "mortaring": null, + "mortars": null, + "mortared": null, + "mortar's": null, + "Morten": [["M"]], + "Morten's": null, + "mortgageable": null, + "mortgagee": [["S", "M"]], + "mortgagees": null, + "mortgagee's": null, + "mortgage": [["M", "G", "D", "S"]], + "mortgage's": null, + "mortgaging": null, + "mortgaged": null, + "mortgages": null, + "mortgagor": [["S", "M"]], + "mortgagors": null, + "mortgagor's": null, + "mortice's": null, + "mortician": [["S", "M"]], + "morticians": null, + "mortician's": null, + "Mortie": [["M"]], + "Mortie's": null, + "mortification": [["M"]], + "mortification's": null, + "mortified": [["Y"]], + "mortifiedly": null, + "mortifier": [["M"]], + "mortifier's": null, + "mortify": [["D", "R", "S", "X", "G", "N"]], + "mortifies": null, + "mortifications": null, + "mortifying": null, + "Mortimer": [["M"]], + "Mortimer's": null, + "mortise": [["M", "G", "S", "D"]], + "mortise's": null, + "mortising": null, + "mortises": null, + "mortised": null, + "Mort": [["M", "N"]], + "Mort's": null, + "Morton": [["M"]], + "Morton's": null, + "mortuary": [["M", "S"]], + "mortuary's": null, + "mortuaries": null, + "Morty": [["M"]], + "Morty's": null, + "Mosaic": null, + "mosaicked": null, + "mosaicking": null, + "mosaic": [["M", "S"]], + "mosaic's": null, + "mosaics": null, + "Moscone": [["M"]], + "Moscone's": null, + "Moscow": [["M"]], + "Moscow's": null, + "Moseley": [["M"]], + "Moseley's": null, + "Moselle": [["M"]], + "Moselle's": null, + "Mose": [["M", "S", "R"]], + "Mose's": null, + "Moses": null, + "Moser": [["M"]], + "Moser's": null, + "mosey": [["S", "G", "D"]], + "moseys": null, + "moseying": null, + "moseyed": null, + "Moshe": [["M"]], + "Moshe's": null, + "Moslem's": null, + "Mosley": [["M"]], + "Mosley's": null, + "mosque": [["S", "M"]], + "mosques": null, + "mosque's": null, + "mosquitoes": null, + "mosquito": [["M"]], + "mosquito's": null, + "moses": null, + "mossback": [["M", "S"]], + "mossback's": null, + "mossbacks": null, + "Mossberg": [["M"]], + "Mossberg's": null, + "Moss": [["M"]], + "Moss's": null, + "moss": [["S", "D", "M", "G"]], + "mosses": null, + "mossed": null, + "moss's": null, + "mossing": null, + "mossy": [["S", "R", "T"]], + "mossies": null, + "mossier": null, + "mossiest": null, + "most": [["S", "Y"]], + "mosts": null, + "mostly": null, + "Mosul": [["M"]], + "Mosul's": null, + "mote": [["A", "S", "C", "N", "K"]], + "remote": [["R", "P", "T", "Y"]], + "remotes": null, + "remotion": null, + "motes": null, + "demotes": null, + "promotes": null, + "demotion": null, + "motion": [["G", "R", "D", "M", "S"]], + "promotion": null, + "promote": [["G", "V", "Z", "B", "D", "R"]], + "motel": [["M", "S"]], + "motel's": null, + "motels": null, + "mote's": null, + "motet": [["S", "M"]], + "motets": null, + "motet's": null, + "mothball": [["D", "M", "G", "S"]], + "mothballed": null, + "mothball's": null, + "mothballing": null, + "mothballs": null, + "motherboard": [["M", "S"]], + "motherboard's": null, + "motherboards": null, + "motherfucker": [["M", "S", "!"]], + "motherfucker's": null, + "motherfuckers": null, + "motherfucking": [["!"]], + "motherhood": [["S", "M"]], + "motherhoods": null, + "motherhood's": null, + "mothering": [["M"]], + "mothering's": null, + "motherland": [["S", "M"]], + "motherlands": null, + "motherland's": null, + "motherless": null, + "motherliness": [["M", "S"]], + "motherliness's": null, + "motherlinesses": null, + "motherly": [["P"]], + "mother": [["R", "D", "Y", "M", "Z", "G"]], + "motherer": null, + "mothered": null, + "mother's": null, + "motherers": null, + "moths": null, + "moth": [["Z", "M", "R"]], + "mothers": null, + "moth's": null, + "motif": [["M", "S"]], + "motif's": null, + "motifs": null, + "motile": [["S"]], + "motiles": null, + "motility": [["M", "S"]], + "motility's": null, + "motilities": null, + "motional": [["K"]], + "promotional": null, + "motioner": [["M"]], + "motioner's": null, + "motioning": null, + "motioned": null, + "motion's": [["A", "C", "K"]], + "motions": [["K"]], + "motionlessness": [["S"]], + "motionlessnesses": null, + "motionless": [["Y", "P"]], + "motionlessly": null, + "remotion's": null, + "demotion's": null, + "promotion's": null, + "promotions": null, + "motivated": [["U"]], + "unmotivated": null, + "motivate": [["X", "D", "S", "N", "G", "V"]], + "motivations": null, + "motivates": null, + "motivation": [["M"]], + "motivating": null, + "motivative": null, + "motivational": [["Y"]], + "motivationally": null, + "motivation's": null, + "motivator": [["S"]], + "motivators": null, + "motiveless": null, + "motive": [["M", "G", "S", "D"]], + "motive's": null, + "motiving": null, + "motives": null, + "motived": null, + "motley": [["S"]], + "motleys": null, + "motlier": null, + "motliest": null, + "mot": [["M", "S", "V"]], + "mot's": null, + "mots": null, + "motocross": [["S", "M"]], + "motocrosses": null, + "motocross's": null, + "motorbike": [["S", "D", "G", "M"]], + "motorbikes": null, + "motorbiked": null, + "motorbiking": null, + "motorbike's": null, + "motorboat": [["M", "S"]], + "motorboat's": null, + "motorboats": null, + "motorcade": [["M", "S", "D", "G"]], + "motorcade's": null, + "motorcades": null, + "motorcaded": null, + "motorcading": null, + "motorcar": [["M", "S"]], + "motorcar's": null, + "motorcars": null, + "motorcycle": [["G", "M", "D", "S"]], + "motorcycling": null, + "motorcycle's": null, + "motorcycled": null, + "motorcycles": null, + "motorcyclist": [["S", "M"]], + "motorcyclists": null, + "motorcyclist's": null, + "motor": [["D", "M", "S", "G"]], + "motored": null, + "motor's": null, + "motors": null, + "motoring": [["M"]], + "motoring's": null, + "motorist": [["S", "M"]], + "motorists": null, + "motorist's": null, + "motorization": [["S", "M"]], + "motorizations": null, + "motorization's": null, + "motorize": [["D", "S", "G"]], + "motorized": [["U"]], + "motorizes": null, + "motorizing": null, + "unmotorized": null, + "motorman": [["M"]], + "motorman's": null, + "motormen": null, + "motormouth": null, + "motormouths": null, + "Motorola": [["M"]], + "Motorola's": null, + "motorway": [["S", "M"]], + "motorways": null, + "motorway's": null, + "Motown": [["M"]], + "Motown's": null, + "mottle": [["G", "S", "R", "D"]], + "mottling": null, + "mottles": null, + "mottler": [["M"]], + "mottled": null, + "mottler's": null, + "Mott": [["M"]], + "Mott's": null, + "mottoes": null, + "motto": [["M"]], + "motto's": null, + "moue": [["D", "S", "M", "G"]], + "moued": null, + "moues": null, + "moue's": null, + "mouing": null, + "moulder": [["D", "S", "G"]], + "mouldered": null, + "moulders": null, + "mouldering": null, + "moult": [["G", "S", "D"]], + "moulting": null, + "moults": null, + "moulted": null, + "mound": [["G", "M", "D", "S"]], + "mounding": null, + "mound's": null, + "mounded": null, + "mounds": null, + "mountable": null, + "mountaineering": [["M"]], + "mountaineering's": null, + "mountaineer": [["J", "M", "D", "S", "G"]], + "mountaineerings": null, + "mountaineer's": null, + "mountaineered": null, + "mountaineers": null, + "mountainousness": [["M"]], + "mountainousness's": null, + "mountainous": [["P", "Y"]], + "mountainously": null, + "mountainside": [["M", "S"]], + "mountainside's": null, + "mountainsides": null, + "mountain": [["S", "M"]], + "mountains": null, + "mountain's": null, + "mountaintop": [["S", "M"]], + "mountaintops": null, + "mountaintop's": null, + "Mountbatten": [["M"]], + "Mountbatten's": null, + "mountebank": [["S", "G", "M", "D"]], + "mountebanks": null, + "mountebanking": null, + "mountebank's": null, + "mountebanked": null, + "mounted": [["U"]], + "unmounted": null, + "mount": [["E", "G", "A", "C", "D"]], + "dismount": null, + "dismounting": null, + "dismounted": null, + "mounting": [["M", "S"]], + "remounting": null, + "demounting": null, + "remount": null, + "remounted": null, + "demounted": null, + "mounter": [["S", "M"]], + "mounters": null, + "mounter's": null, + "mounties": null, + "Mountie": [["S", "M"]], + "Mounties": null, + "Mountie's": null, + "mounting's": null, + "mountings": null, + "Mount": [["M"]], + "Mount's": null, + "mounts": [["A", "E"]], + "remounts": null, + "dismounts": null, + "mourner": [["M"]], + "mourner's": null, + "mournfuller": null, + "mournfullest": null, + "mournfulness": [["S"]], + "mournfulnesses": null, + "mournful": [["Y", "P"]], + "mournfully": null, + "mourning": [["M"]], + "mourning's": null, + "mourn": [["Z", "G", "S", "J", "R", "D"]], + "mourners": null, + "mourns": null, + "mournings": null, + "mourned": null, + "mouser": [["M"]], + "mouser's": null, + "mouse": [["S", "R", "D", "G", "M", "Z"]], + "mouses": null, + "moused": null, + "mousing": [["M"]], + "mouse's": null, + "mousers": null, + "mousetrapped": null, + "mousetrapping": null, + "mousetrap": [["S", "M"]], + "mousetraps": null, + "mousetrap's": null, + "mousiness": [["M", "S"]], + "mousiness's": null, + "mousinesses": null, + "mousing's": null, + "mousse": [["M", "G", "S", "D"]], + "mousse's": null, + "moussing": null, + "mousses": null, + "moussed": null, + "Moussorgsky": [["M"]], + "Moussorgsky's": null, + "mousy": [["P", "R", "T"]], + "mousier": null, + "mousiest": null, + "Mouthe": [["M"]], + "Mouthe's": null, + "mouthful": [["M", "S"]], + "mouthful's": null, + "mouthfuls": null, + "mouthiness": [["S", "M"]], + "mouthinesses": null, + "mouthiness's": null, + "mouth": [["M", "S", "R", "D", "G"]], + "mouth's": null, + "mouthes": null, + "mouther": null, + "mouthed": null, + "mouthing": null, + "mouthorgan": null, + "mouthpiece": [["S", "M"]], + "mouthpieces": null, + "mouthpiece's": null, + "mouths": null, + "mouthwash": [["S", "M"]], + "mouthwashes": null, + "mouthwash's": null, + "mouthwatering": null, + "mouthy": [["P", "T", "R"]], + "mouthiest": null, + "mouthier": null, + "Mouton": [["M"]], + "Mouton's": null, + "mouton": [["S", "M"]], + "moutons": null, + "mouton's": null, + "movable": [["A", "S", "P"]], + "removable": null, + "removables": null, + "removableness": null, + "movables": null, + "movableness": [["A", "M"]], + "removableness's": null, + "movableness's": null, + "move": [["A", "R", "S", "D", "G", "Z", "B"]], + "remove": null, + "remover": null, + "removes": null, + "removed": null, + "removing": null, + "removers": null, + "mover": [["A", "M"]], + "moves": null, + "moved": [["U"]], + "moving": [["Y", "S"]], + "movers": null, + "unmoved": null, + "movement": [["S", "M"]], + "movements": null, + "movement's": null, + "remover's": null, + "mover's": null, + "moviegoer": [["S"]], + "moviegoers": null, + "movie": [["S", "M"]], + "movies": null, + "movie's": null, + "movingly": null, + "movings": null, + "mower": [["M"]], + "mower's": null, + "Mowgli": [["M"]], + "Mowgli's": null, + "mowing": [["M"]], + "mowing's": null, + "mow": [["S", "D", "R", "Z", "G"]], + "mows": null, + "mowed": null, + "mowers": null, + "moxie": [["M", "S"]], + "moxie's": null, + "moxies": null, + "Moyer": [["M"]], + "Moyer's": null, + "Moyna": [["M"]], + "Moyna's": null, + "Moyra": [["M"]], + "Moyra's": null, + "Mozambican": [["S"]], + "Mozambicans": null, + "Mozambique": [["M"]], + "Mozambique's": null, + "Mozart": [["M"]], + "Mozart's": null, + "Mozelle": [["M"]], + "Mozelle's": null, + "Mozes": [["M"]], + "Mozes's": null, + "Mozilla": [["M"]], + "Mozilla's": null, + "mozzarella": [["M", "S"]], + "mozzarella's": null, + "mozzarellas": null, + "mp": null, + "MP": null, + "mpg": null, + "mph": null, + "MPH": null, + "MRI": null, + "Mr": [["M"]], + "Mr's": null, + "Mrs": null, + "M's": null, + "MS": null, + "MSG": null, + "Msgr": [["M"]], + "Msgr's": null, + "m's": [["K"]], + "prom's": null, + "Ms": [["S"]], + "Mses": null, + "MST": null, + "MSW": null, + "mt": null, + "MT": null, + "mtg": null, + "mtge": null, + "Mt": [["M"]], + "Mt's": null, + "MTS": null, + "MTV": null, + "Muawiya": [["M"]], + "Muawiya's": null, + "Mubarak": [["M"]], + "Mubarak's": null, + "muchness": [["M"]], + "muchness's": null, + "much": [["S", "P"]], + "muches": null, + "mucilage": [["M", "S"]], + "mucilage's": null, + "mucilages": null, + "mucilaginous": null, + "mucker": [["M"]], + "mucker's": null, + "muck": [["G", "R", "D", "M", "S"]], + "mucking": null, + "mucked": null, + "muck's": null, + "mucks": null, + "muckraker": [["M"]], + "muckraker's": null, + "muckrake": [["Z", "M", "D", "R", "S", "G"]], + "muckrakers": null, + "muckrake's": null, + "muckraked": null, + "muckrakes": null, + "muckraking": null, + "mucky": [["R", "T"]], + "muckier": null, + "muckiest": null, + "mucosa": [["M"]], + "mucosa's": null, + "mucous": null, + "mucus": [["S", "M"]], + "mucuses": null, + "mucus's": null, + "mudded": null, + "muddily": null, + "muddiness": [["S", "M"]], + "muddinesses": null, + "muddiness's": null, + "mudding": null, + "muddle": [["G", "R", "S", "D", "Z"]], + "muddling": null, + "muddler": [["M"]], + "muddles": null, + "muddled": null, + "muddlers": null, + "muddleheaded": [["P"]], + "muddleheadedness": null, + "muddlehead": [["S", "M", "D"]], + "muddleheads": null, + "muddlehead's": null, + "muddler's": null, + "muddy": [["T", "P", "G", "R", "S", "D"]], + "muddiest": null, + "muddying": null, + "muddier": null, + "muddies": null, + "muddied": null, + "mudflat": [["S"]], + "mudflats": null, + "mudguard": [["S", "M"]], + "mudguards": null, + "mudguard's": null, + "mudlarks": null, + "mud": [["M", "S"]], + "mud's": null, + "muds": null, + "mudroom": [["S"]], + "mudrooms": null, + "mudslide": [["S"]], + "mudslides": null, + "mudslinger": [["M"]], + "mudslinger's": null, + "mudslinging": [["M"]], + "mudslinging's": null, + "mudsling": [["J", "R", "G", "Z"]], + "mudslingings": null, + "mudslingers": null, + "Mueller": [["M"]], + "Mueller's": null, + "Muenster": null, + "muenster": [["M", "S"]], + "muenster's": null, + "muensters": null, + "muesli": [["M"]], + "muesli's": null, + "muezzin": [["M", "S"]], + "muezzin's": null, + "muezzins": null, + "muff": [["G", "D", "M", "S"]], + "muffing": null, + "muffed": null, + "muff's": null, + "muffs": null, + "Muffin": [["M"]], + "Muffin's": null, + "muffin": [["S", "M"]], + "muffins": null, + "muffin's": null, + "muffler": [["M"]], + "muffler's": null, + "muffle": [["Z", "R", "S", "D", "G"]], + "mufflers": null, + "muffles": null, + "muffled": null, + "muffling": null, + "Mufi": [["M"]], + "Mufi's": null, + "Mufinella": [["M"]], + "Mufinella's": null, + "mufti": [["M", "S"]], + "mufti's": null, + "muftis": null, + "Mugabe": [["M"]], + "Mugabe's": null, + "mugged": null, + "mugger": [["S", "M"]], + "muggers": null, + "mugger's": null, + "mugginess": [["S"]], + "mugginesses": null, + "mugging": [["S"]], + "muggings": null, + "muggy": [["R", "P", "T"]], + "muggier": null, + "muggiest": null, + "mugshot": [["S"]], + "mugshots": null, + "mug": [["S", "M"]], + "mugs": null, + "mug's": null, + "mugwump": [["M", "S"]], + "mugwump's": null, + "mugwumps": null, + "Muhammadanism": [["S"]], + "Muhammadanisms": null, + "Muhammadan": [["S", "M"]], + "Muhammadans": null, + "Muhammadan's": null, + "Muhammad": [["M"]], + "Muhammad's": null, + "Muire": [["M"]], + "Muire's": null, + "Muir": [["M"]], + "Muir's": null, + "Mukden": [["M"]], + "Mukden's": null, + "mukluk": [["S", "M"]], + "mukluks": null, + "mukluk's": null, + "mulattoes": null, + "mulatto": [["M"]], + "mulatto's": null, + "mulberry": [["M", "S"]], + "mulberry's": null, + "mulberries": null, + "mulch": [["G", "M", "S", "D"]], + "mulching": null, + "mulch's": null, + "mulches": null, + "mulched": null, + "mulct": [["S", "D", "G"]], + "mulcts": null, + "mulcted": null, + "mulcting": null, + "Mulder": [["M"]], + "Mulder's": null, + "mule": [["M", "G", "D", "S"]], + "mule's": null, + "muling": null, + "muled": null, + "mules": null, + "muleskinner": [["S"]], + "muleskinners": null, + "muleteer": [["M", "S"]], + "muleteer's": null, + "muleteers": null, + "mulishness": [["M", "S"]], + "mulishness's": null, + "mulishnesses": null, + "mulish": [["Y", "P"]], + "mulishly": null, + "mullah": [["M"]], + "mullah's": null, + "mullahs": null, + "mullein": [["M", "S"]], + "mullein's": null, + "mulleins": null, + "Mullen": [["M"]], + "Mullen's": null, + "muller": [["M"]], + "muller's": null, + "Muller": [["M"]], + "Muller's": null, + "mullet": [["M", "S"]], + "mullet's": null, + "mullets": null, + "Mulligan": [["M"]], + "Mulligan's": null, + "mulligan": [["S", "M"]], + "mulligans": null, + "mulligan's": null, + "mulligatawny": [["S", "M"]], + "mulligatawnies": null, + "mulligatawny's": null, + "Mullikan": [["M"]], + "Mullikan's": null, + "Mullins": null, + "mullion": [["M", "D", "S", "G"]], + "mullion's": null, + "mullioned": null, + "mullions": null, + "mullioning": null, + "mull": [["R", "D", "S", "G"]], + "mulled": null, + "mulls": null, + "mulling": null, + "Multan": [["M"]], + "Multan's": null, + "multi": null, + "Multibus": [["M"]], + "Multibus's": null, + "multicellular": null, + "multichannel": [["M"]], + "multichannel's": null, + "multicollinearity": [["M"]], + "multicollinearity's": null, + "multicolor": [["S", "D", "M"]], + "multicolors": null, + "multicolored": null, + "multicolor's": null, + "multicolumn": null, + "multicomponent": null, + "multicomputer": [["M", "S"]], + "multicomputer's": null, + "multicomputers": null, + "Multics": [["M"]], + "Multics's": null, + "MULTICS": [["M"]], + "MULTICS's": null, + "multicultural": null, + "multiculturalism": [["S"]], + "multiculturalisms": null, + "multidimensional": null, + "multidimensionality": null, + "multidisciplinary": null, + "multifaceted": null, + "multifamily": null, + "multifariousness": [["S", "M"]], + "multifariousnesses": null, + "multifariousness's": null, + "multifarious": [["Y", "P"]], + "multifariously": null, + "multifigure": null, + "multiform": null, + "multifunction": [["D"]], + "multifunctioned": null, + "multilateral": [["Y"]], + "multilaterally": null, + "multilayer": null, + "multilevel": [["D"]], + "multileveled": null, + "multilingual": null, + "multilingualism": [["S"]], + "multilingualisms": null, + "multimedia": [["S"]], + "multimedias": null, + "multimegaton": [["M"]], + "multimegaton's": null, + "multimeter": [["M"]], + "multimeter's": null, + "multimillionaire": [["S", "M"]], + "multimillionaires": null, + "multimillionaire's": null, + "multinational": [["S"]], + "multinationals": null, + "multinomial": [["M"]], + "multinomial's": null, + "multiphase": null, + "multiple": [["S", "M"]], + "multiples": null, + "multiple's": null, + "multiplet": [["S", "M"]], + "multiplets": null, + "multiplet's": null, + "multiplex": [["G", "Z", "M", "S", "R", "D"]], + "multiplexing": null, + "multiplexers": null, + "multiplex's": null, + "multiplexes": null, + "multiplexer": null, + "multiplexed": null, + "multiplexor's": null, + "multipliable": null, + "multiplicand": [["S", "M"]], + "multiplicands": null, + "multiplicand's": null, + "multiplication": [["M"]], + "multiplication's": null, + "multiplicative": [["Y", "S"]], + "multiplicatively": null, + "multiplicatives": null, + "multiplicity": [["M", "S"]], + "multiplicity's": null, + "multiplicities": null, + "multiplier": [["M"]], + "multiplier's": null, + "multiply": [["Z", "N", "S", "R", "D", "X", "G"]], + "multipliers": null, + "multiplies": null, + "multiplied": null, + "multiplications": null, + "multiplying": null, + "multiprocess": [["G"]], + "multiprocessing": null, + "multiprocessor": [["M", "S"]], + "multiprocessor's": null, + "multiprocessors": null, + "multiprogram": null, + "multiprogrammed": null, + "multiprogramming": [["M", "S"]], + "multiprogramming's": null, + "multiprogrammings": null, + "multipurpose": null, + "multiracial": null, + "multistage": null, + "multistory": [["S"]], + "multistories": null, + "multisyllabic": null, + "multitasking": [["S"]], + "multitaskings": null, + "multitude": [["M", "S"]], + "multitude's": null, + "multitudes": null, + "multitudinousness": [["M"]], + "multitudinousness's": null, + "multitudinous": [["Y", "P"]], + "multitudinously": null, + "multiuser": null, + "multivalent": null, + "multivalued": null, + "multivariate": null, + "multiversity": [["M"]], + "multiversity's": null, + "multivitamin": [["S"]], + "multivitamins": null, + "mu": [["M"]], + "mu's": null, + "mumbler": [["M"]], + "mumbler's": null, + "mumbletypeg": [["S"]], + "mumbletypegs": null, + "mumble": [["Z", "J", "G", "R", "S", "D"]], + "mumblers": null, + "mumblings": null, + "mumbling": null, + "mumbles": null, + "mumbled": null, + "Mumford": [["M"]], + "Mumford's": null, + "mummed": null, + "mummer": [["S", "M"]], + "mummers": null, + "mummer's": null, + "mummery": [["M", "S"]], + "mummery's": null, + "mummeries": null, + "mummification": [["M"]], + "mummification's": null, + "mummify": [["X", "S", "D", "G", "N"]], + "mummifications": null, + "mummifies": null, + "mummified": null, + "mummifying": null, + "mumming": null, + "mum": [["M", "S"]], + "mum's": null, + "mums": null, + "mummy": [["G", "S", "D", "M"]], + "mummying": null, + "mummies": null, + "mummied": null, + "mummy's": null, + "mumps": [["M"]], + "mumps's": null, + "muncher": [["M"]], + "muncher's": null, + "M�nchhausen": [["M"]], + "M�nchhausen's": null, + "munchies": null, + "Munch": [["M"]], + "Munch's": null, + "munch": [["Z", "R", "S", "D", "G"]], + "munchers": null, + "munches": null, + "munched": null, + "munching": null, + "Muncie": [["M"]], + "Muncie's": null, + "mundane": [["Y", "S", "P"]], + "mundanely": null, + "mundanes": null, + "mundaneness": null, + "Mundt": [["M"]], + "Mundt's": null, + "munge": [["J", "G", "Z", "S", "R", "D"]], + "mungings": null, + "munging": null, + "mungers": null, + "munges": null, + "munger": null, + "munged": null, + "Munich": [["M"]], + "Munich's": null, + "municipality": [["S", "M"]], + "municipalities": null, + "municipality's": null, + "municipal": [["Y", "S"]], + "municipally": null, + "municipals": null, + "munificence": [["M", "S"]], + "munificence's": null, + "munificences": null, + "munificent": [["Y"]], + "munificently": null, + "munition": [["S", "D", "G"]], + "munitions": null, + "munitioned": null, + "munitioning": null, + "Munmro": [["M"]], + "Munmro's": null, + "Munoz": [["M"]], + "Munoz's": null, + "Munroe": [["M"]], + "Munroe's": null, + "Munro": [["M"]], + "Munro's": null, + "mun": [["S"]], + "muns": null, + "Munsey": [["M"]], + "Munsey's": null, + "Munson": [["M"]], + "Munson's": null, + "Munster": [["M", "S"]], + "Munster's": null, + "Munsters": null, + "Muong": [["M"]], + "Muong's": null, + "muon": [["M"]], + "muon's": null, + "Muppet": [["M"]], + "Muppet's": null, + "muralist": [["S", "M"]], + "muralists": null, + "muralist's": null, + "mural": [["S", "M"]], + "murals": null, + "mural's": null, + "Murasaki": [["M"]], + "Murasaki's": null, + "Murat": [["M"]], + "Murat's": null, + "Murchison": [["M"]], + "Murchison's": null, + "Murcia": [["M"]], + "Murcia's": null, + "murderer": [["M"]], + "murderer's": null, + "murderess": [["S"]], + "murderesses": null, + "murder": [["G", "Z", "R", "D", "M", "S"]], + "murdering": null, + "murderers": null, + "murdered": null, + "murder's": null, + "murders": null, + "murderousness": [["M"]], + "murderousness's": null, + "murderous": [["Y", "P"]], + "murderously": null, + "Murdoch": [["M"]], + "Murdoch's": null, + "Murdock": [["M"]], + "Murdock's": null, + "Mureil": [["M"]], + "Mureil's": null, + "Murial": [["M"]], + "Murial's": null, + "muriatic": null, + "Murielle": [["M"]], + "Murielle's": null, + "Muriel": [["M"]], + "Muriel's": null, + "Murillo": [["M"]], + "Murillo's": null, + "murkily": null, + "murkiness": [["S"]], + "murkinesses": null, + "murk": [["T", "R", "M", "S"]], + "murkest": null, + "murker": null, + "murk's": null, + "murks": null, + "murky": [["R", "P", "T"]], + "murkier": null, + "murkiest": null, + "Murmansk": [["M"]], + "Murmansk's": null, + "murmurer": [["M"]], + "murmurer's": null, + "murmuring": [["U"]], + "unmurmuring": null, + "murmurous": null, + "murmur": [["R", "D", "M", "G", "Z", "S", "J"]], + "murmured": null, + "murmur's": null, + "murmurers": null, + "murmurs": null, + "murmurings": null, + "Murphy": [["M"]], + "Murphy's": null, + "murrain": [["S", "M"]], + "murrains": null, + "murrain's": null, + "Murray": [["M"]], + "Murray's": null, + "Murrow": [["M"]], + "Murrow's": null, + "Murrumbidgee": [["M"]], + "Murrumbidgee's": null, + "Murry": [["M"]], + "Murry's": null, + "Murvyn": [["M"]], + "Murvyn's": null, + "muscatel": [["M", "S"]], + "muscatel's": null, + "muscatels": null, + "Muscat": [["M"]], + "Muscat's": null, + "muscat": [["S", "M"]], + "muscats": null, + "muscat's": null, + "musclebound": null, + "muscle": [["S", "D", "M", "G"]], + "muscles": null, + "muscled": null, + "muscle's": null, + "muscling": null, + "Muscovite": [["M"]], + "Muscovite's": null, + "muscovite": [["M", "S"]], + "muscovite's": null, + "muscovites": null, + "Muscovy": [["M"]], + "Muscovy's": null, + "muscularity": [["S", "M"]], + "muscularities": null, + "muscularity's": null, + "muscular": [["Y"]], + "muscularly": null, + "musculature": [["S", "M"]], + "musculatures": null, + "musculature's": null, + "muse": null, + "Muse": [["M"]], + "Muse's": null, + "muser": [["M"]], + "muser's": null, + "musette": [["S", "M"]], + "musettes": null, + "musette's": null, + "museum": [["M", "S"]], + "museum's": null, + "museums": null, + "mus": [["G", "J", "D", "S", "R"]], + "musing": [["Y"]], + "musings": null, + "mused": null, + "muses": null, + "musher": [["M"]], + "musher's": null, + "mushiness": [["M", "S"]], + "mushiness's": null, + "mushinesses": null, + "mush": [["M", "S", "R", "D", "G"]], + "mush's": null, + "mushes": null, + "mushed": null, + "mushing": null, + "mushroom": [["D", "M", "S", "G"]], + "mushroomed": null, + "mushroom's": null, + "mushrooms": null, + "mushrooming": null, + "mushy": [["P", "T", "R"]], + "mushiest": null, + "mushier": null, + "Musial": [["M"]], + "Musial's": null, + "musicale": [["S", "M"]], + "musicales": null, + "musicale's": null, + "musicality": [["S", "M"]], + "musicalities": null, + "musicality's": null, + "musicals": null, + "musical": [["Y", "U"]], + "musically": null, + "unmusically": null, + "unmusical": null, + "musician": [["M", "Y", "S"]], + "musician's": null, + "musicianly": null, + "musicians": null, + "musicianship": [["M", "S"]], + "musicianship's": null, + "musicianships": null, + "musicked": null, + "musicking": null, + "musicological": null, + "musicologist": [["M", "S"]], + "musicologist's": null, + "musicologists": null, + "musicology": [["M", "S"]], + "musicology's": null, + "musicologies": null, + "music": [["S", "M"]], + "musics": null, + "music's": null, + "musingly": null, + "Muskegon": [["M"]], + "Muskegon's": null, + "muskeg": [["S", "M"]], + "muskegs": null, + "muskeg's": null, + "muskellunge": [["S", "M"]], + "muskellunges": null, + "muskellunge's": null, + "musketeer": [["M", "S"]], + "musketeer's": null, + "musketeers": null, + "musketry": [["M", "S"]], + "musketry's": null, + "musketries": null, + "musket": [["S", "M"]], + "muskets": null, + "musket's": null, + "musk": [["G", "D", "M", "S"]], + "musking": null, + "musked": null, + "musk's": null, + "musks": null, + "muskie": [["M"]], + "muskie's": null, + "muskiness": [["M", "S"]], + "muskiness's": null, + "muskinesses": null, + "muskmelon": [["M", "S"]], + "muskmelon's": null, + "muskmelons": null, + "muskox": [["N"]], + "muskoxen": null, + "muskrat": [["M", "S"]], + "muskrat's": null, + "muskrats": null, + "musky": [["R", "S", "P", "T"]], + "muskier": null, + "muskies": null, + "muskiest": null, + "Muslim": [["M", "S"]], + "Muslim's": null, + "Muslims": null, + "muslin": [["M", "S"]], + "muslin's": null, + "muslins": null, + "mussel": [["M", "S"]], + "mussel's": null, + "mussels": null, + "Mussolini": [["M", "S"]], + "Mussolini's": null, + "Mussolinis": null, + "Mussorgsky": [["M"]], + "Mussorgsky's": null, + "muss": [["S", "D", "G"]], + "musses": null, + "mussed": null, + "mussing": null, + "mussy": [["R", "T"]], + "mussier": null, + "mussiest": null, + "mustache": [["D", "S", "M"]], + "mustached": null, + "mustaches": null, + "mustache's": null, + "mustachio": [["M", "D", "S"]], + "mustachio's": null, + "mustachioed": null, + "mustachios": null, + "mustang": [["M", "S"]], + "mustang's": null, + "mustangs": null, + "mustard": [["M", "S"]], + "mustard's": null, + "mustards": null, + "muster": [["G", "D"]], + "mustering": null, + "mustered": null, + "mustily": null, + "mustiness": [["M", "S"]], + "mustiness's": null, + "mustinesses": null, + "mustn't": null, + "must": [["R", "D", "G", "Z", "S"]], + "musted": null, + "musting": null, + "musters": null, + "musts": null, + "must've": null, + "musty": [["R", "P", "T"]], + "mustier": null, + "mustiest": null, + "mutability": [["S", "M"]], + "mutabilities": null, + "mutability's": null, + "mutableness": [["M"]], + "mutableness's": null, + "mutable": [["P"]], + "mutably": null, + "mutagen": [["S", "M"]], + "mutagens": null, + "mutagen's": null, + "mutant": [["M", "S"]], + "mutant's": null, + "mutants": null, + "mutate": [["X", "V", "N", "G", "S", "D"]], + "mutations": null, + "mutative": null, + "mutation": [["M"]], + "mutating": null, + "mutates": null, + "mutated": null, + "mutational": [["Y"]], + "mutationally": null, + "mutation's": null, + "mutator": [["S"]], + "mutators": null, + "muted": [["Y"]], + "mutedly": null, + "muteness": [["S"]], + "mutenesses": null, + "mute": [["P", "D", "S", "R", "B", "Y", "T", "G"]], + "mutes": null, + "muter": null, + "mutely": null, + "mutest": null, + "muting": null, + "mutilate": [["X", "D", "S", "N", "G"]], + "mutilations": null, + "mutilated": null, + "mutilates": null, + "mutilation": [["M"]], + "mutilating": null, + "mutilation's": null, + "mutilator": [["M", "S"]], + "mutilator's": null, + "mutilators": null, + "mutineer": [["S", "M", "D", "G"]], + "mutineers": null, + "mutineer's": null, + "mutineered": null, + "mutineering": null, + "mutinous": [["Y"]], + "mutinously": null, + "mutiny": [["M", "G", "S", "D"]], + "mutiny's": null, + "mutinying": null, + "mutinies": null, + "mutinied": null, + "Mutsuhito": [["M"]], + "Mutsuhito's": null, + "mutterer": [["M"]], + "mutterer's": null, + "mutter": [["G", "Z", "R", "D", "J"]], + "muttering": null, + "mutterers": null, + "muttered": null, + "mutterings": null, + "muttonchops": null, + "mutton": [["S", "M"]], + "muttons": null, + "mutton's": null, + "mutt": [["Z", "S", "M", "R"]], + "mutters": null, + "mutts": null, + "mutt's": null, + "mutuality": [["S"]], + "mutualities": null, + "mutual": [["S", "Y"]], + "mutuals": null, + "mutually": null, + "muumuu": [["M", "S"]], + "muumuu's": null, + "muumuus": null, + "muzak": null, + "Muzak": [["S", "M"]], + "Muzaks": null, + "Muzak's": null, + "Muzo": [["M"]], + "Muzo's": null, + "muzzled": [["U"]], + "unmuzzled": null, + "muzzle": [["M", "G", "R", "S", "D"]], + "muzzle's": null, + "muzzling": null, + "muzzler": [["M"]], + "muzzles": null, + "muzzler's": null, + "MVP": null, + "MW": null, + "Myanmar": null, + "Mycah": [["M"]], + "Mycah's": null, + "Myca": [["M"]], + "Myca's": null, + "Mycenaean": null, + "Mycenae": [["M"]], + "Mycenae's": null, + "Mychal": [["M"]], + "Mychal's": null, + "mycologist": [["M", "S"]], + "mycologist's": null, + "mycologists": null, + "mycology": [["M", "S"]], + "mycology's": null, + "mycologies": null, + "myelitides": null, + "myelitis": [["M"]], + "myelitis's": null, + "Myer": [["M", "S"]], + "Myer's": null, + "Myers": null, + "myers": null, + "mylar": null, + "Mylar": [["S"]], + "Mylars": null, + "Myles": [["M"]], + "Myles's": null, + "Mylo": [["M"]], + "Mylo's": null, + "My": [["M"]], + "My's": null, + "myna": [["S", "M"]], + "mynas": null, + "myna's": null, + "Mynheer": [["M"]], + "Mynheer's": null, + "myocardial": null, + "myocardium": [["M"]], + "myocardium's": null, + "myopia": [["M", "S"]], + "myopia's": null, + "myopias": null, + "myopically": null, + "myopic": [["S"]], + "myopics": null, + "Myrah": [["M"]], + "Myrah's": null, + "Myra": [["M"]], + "Myra's": null, + "Myranda": [["M"]], + "Myranda's": null, + "Myrdal": [["M"]], + "Myrdal's": null, + "myriad": [["S"]], + "myriads": null, + "Myriam": [["M"]], + "Myriam's": null, + "Myrilla": [["M"]], + "Myrilla's": null, + "Myrle": [["M"]], + "Myrle's": null, + "Myrlene": [["M"]], + "Myrlene's": null, + "myrmidon": [["S"]], + "myrmidons": null, + "Myrna": [["M"]], + "Myrna's": null, + "Myron": [["M"]], + "Myron's": null, + "myrrh": [["M"]], + "myrrh's": null, + "myrrhs": null, + "Myrta": [["M"]], + "Myrta's": null, + "Myrtia": [["M"]], + "Myrtia's": null, + "Myrtice": [["M"]], + "Myrtice's": null, + "Myrtie": [["M"]], + "Myrtie's": null, + "Myrtle": [["M"]], + "Myrtle's": null, + "myrtle": [["S", "M"]], + "myrtles": null, + "myrtle's": null, + "Myrvyn": [["M"]], + "Myrvyn's": null, + "Myrwyn": [["M"]], + "Myrwyn's": null, + "mys": null, + "my": [["S"]], + "mies": null, + "myself": null, + "Mysore": [["M"]], + "Mysore's": null, + "mysteriousness": [["M", "S"]], + "mysteriousness's": null, + "mysteriousnesses": null, + "mysterious": [["Y", "P"]], + "mysteriously": null, + "mystery": [["M", "D", "S", "G"]], + "mystery's": null, + "mysteried": null, + "mysteries": null, + "mysterying": null, + "mystical": [["Y"]], + "mystically": null, + "mysticism": [["M", "S"]], + "mysticism's": null, + "mysticisms": null, + "mystic": [["S", "M"]], + "mystics": null, + "mystic's": null, + "mystification": [["M"]], + "mystification's": null, + "mystifier": [["M"]], + "mystifier's": null, + "mystify": [["C", "S", "D", "G", "N", "X"]], + "demystify": null, + "demystifies": null, + "demystified": null, + "demystifying": null, + "demystification": null, + "demystifications": null, + "mystifies": null, + "mystified": null, + "mystifying": [["Y"]], + "mystifications": null, + "mystifyingly": null, + "mystique": [["M", "S"]], + "mystique's": null, + "mystiques": null, + "Myst": [["M"]], + "Myst's": null, + "mythic": null, + "mythical": [["Y"]], + "mythically": null, + "myth": [["M", "S"]], + "myth's": null, + "mythes": null, + "mythographer": [["S", "M"]], + "mythographers": null, + "mythographer's": null, + "mythography": [["M"]], + "mythography's": null, + "mythological": [["Y"]], + "mythologically": null, + "mythologist": [["M", "S"]], + "mythologist's": null, + "mythologists": null, + "mythologize": [["C", "S", "D", "G"]], + "demythologizes": null, + "demythologized": null, + "demythologizing": null, + "mythologizes": null, + "mythologized": null, + "mythologizing": null, + "mythology": [["S", "M"]], + "mythologies": null, + "mythology's": null, + "myths": null, + "N": null, + "NAACP": null, + "nabbed": null, + "nabbing": null, + "Nabisco": [["M"]], + "Nabisco's": null, + "nabob": [["S", "M"]], + "nabobs": null, + "nabob's": null, + "Nabokov": [["M"]], + "Nabokov's": null, + "nab": [["S"]], + "nabs": null, + "nacelle": [["S", "M"]], + "nacelles": null, + "nacelle's": null, + "nacho": [["S"]], + "nachos": null, + "NaCl": [["M"]], + "NaCl's": null, + "nacre": [["M", "S"]], + "nacre's": null, + "nacres": null, + "nacreous": null, + "Nada": [["M"]], + "Nada's": null, + "Nadean": [["M"]], + "Nadean's": null, + "Nadeen": [["M"]], + "Nadeen's": null, + "Nader": [["M"]], + "Nader's": null, + "Nadia": [["M"]], + "Nadia's": null, + "Nadine": [["M"]], + "Nadine's": null, + "nadir": [["S", "M"]], + "nadirs": null, + "nadir's": null, + "Nadiya": [["M"]], + "Nadiya's": null, + "Nadya": [["M"]], + "Nadya's": null, + "Nady": [["M"]], + "Nady's": null, + "nae": [["V", "M"]], + "naive": [["S", "R", "T", "Y", "P"]], + "nae's": null, + "Nagasaki": [["M"]], + "Nagasaki's": null, + "nagged": null, + "nagger": [["S"]], + "naggers": null, + "nagging": [["Y"]], + "naggingly": null, + "nag": [["M", "S"]], + "nag's": null, + "nags": null, + "Nagoya": [["M"]], + "Nagoya's": null, + "Nagpur": [["M"]], + "Nagpur's": null, + "Nagy": [["M"]], + "Nagy's": null, + "Nahuatl": [["S", "M"]], + "Nahuatls": null, + "Nahuatl's": null, + "Nahum": [["M"]], + "Nahum's": null, + "naiad": [["S", "M"]], + "naiads": null, + "naiad's": null, + "naifs": null, + "nailbrush": [["S", "M"]], + "nailbrushes": null, + "nailbrush's": null, + "nailer": [["M"]], + "nailer's": null, + "nail": [["S", "G", "M", "R", "D"]], + "nails": null, + "nailing": null, + "nail's": null, + "nailed": null, + "Naipaul": [["M"]], + "Naipaul's": null, + "Nair": [["M"]], + "Nair's": null, + "Nairobi": [["M"]], + "Nairobi's": null, + "Naismith": [["M"]], + "Naismith's": null, + "naives": null, + "naiver": null, + "naivest": null, + "naively": null, + "naiveness": null, + "naivet�": [["S", "M"]], + "naivet�s": null, + "naivet�'s": null, + "naivety": [["M", "S"]], + "naivety's": null, + "naiveties": null, + "Nakamura": [["M"]], + "Nakamura's": null, + "Nakayama": [["M"]], + "Nakayama's": null, + "nakedness": [["M", "S"]], + "nakedness's": null, + "nakednesses": null, + "naked": [["T", "Y", "R", "P"]], + "nakedest": null, + "nakedly": null, + "nakeder": null, + "Nakoma": [["M"]], + "Nakoma's": null, + "Nalani": [["M"]], + "Nalani's": null, + "Na": [["M"]], + "Na's": null, + "Namath": [["M"]], + "Namath's": null, + "nameable": [["U"]], + "unnameable": null, + "name": [["A", "D", "S", "G"]], + "rename": null, + "renamed": null, + "renames": null, + "renaming": null, + "named": [["U"]], + "names": null, + "naming": [["M"]], + "namedrop": null, + "namedropping": null, + "named's": null, + "unnamed": null, + "nameless": [["P", "Y"]], + "namelessness": null, + "namelessly": null, + "namely": null, + "nameplate": [["M", "S"]], + "nameplate's": null, + "nameplates": null, + "namer": [["S", "M"]], + "namers": null, + "namer's": null, + "name's": null, + "namesake": [["S", "M"]], + "namesakes": null, + "namesake's": null, + "Namibia": [["M"]], + "Namibia's": null, + "Namibian": [["S"]], + "Namibians": null, + "naming's": null, + "Nam": [["M"]], + "Nam's": null, + "Nanak": [["M"]], + "Nanak's": null, + "Nana": [["M"]], + "Nana's": null, + "Nananne": [["M"]], + "Nananne's": null, + "Nancee": [["M"]], + "Nancee's": null, + "Nance": [["M"]], + "Nance's": null, + "Nancey": [["M"]], + "Nancey's": null, + "Nanchang": [["M"]], + "Nanchang's": null, + "Nancie": [["M"]], + "Nancie's": null, + "Nanci": [["M"]], + "Nanci's": null, + "Nancy": [["M"]], + "Nancy's": null, + "Nanete": [["M"]], + "Nanete's": null, + "Nanette": [["M"]], + "Nanette's": null, + "Nanice": [["M"]], + "Nanice's": null, + "Nani": [["M"]], + "Nani's": null, + "Nanine": [["M"]], + "Nanine's": null, + "Nanjing": null, + "Nanking's": null, + "Nan": [["M"]], + "Nan's": null, + "Nannette": [["M"]], + "Nannette's": null, + "Nannie": [["M"]], + "Nannie's": null, + "Nanni": [["M"]], + "Nanni's": null, + "Nanny": [["M"]], + "Nanny's": null, + "nanny": [["S", "D", "M", "G"]], + "nannies": null, + "nannied": null, + "nanny's": null, + "nannying": null, + "nanometer": [["M", "S"]], + "nanometer's": null, + "nanometers": null, + "Nanon": [["M"]], + "Nanon's": null, + "Nanook": [["M"]], + "Nanook's": null, + "nanosecond": [["S", "M"]], + "nanoseconds": null, + "nanosecond's": null, + "Nansen": [["M"]], + "Nansen's": null, + "Nantes": [["M"]], + "Nantes's": null, + "Nantucket": [["M"]], + "Nantucket's": null, + "Naoma": [["M"]], + "Naoma's": null, + "Naomi": [["M"]], + "Naomi's": null, + "napalm": [["M", "D", "G", "S"]], + "napalm's": null, + "napalmed": null, + "napalming": null, + "napalms": null, + "nape": [["S", "M"]], + "napes": null, + "nape's": null, + "Naphtali": [["M"]], + "Naphtali's": null, + "naphthalene": [["M", "S"]], + "naphthalene's": null, + "naphthalenes": null, + "naphtha": [["S", "M"]], + "naphthas": null, + "naphtha's": null, + "Napier": [["M"]], + "Napier's": null, + "napkin": [["S", "M"]], + "napkins": null, + "napkin's": null, + "Naples": [["M"]], + "Naples's": null, + "napless": null, + "Nap": [["M"]], + "Nap's": null, + "Napoleonic": null, + "napoleon": [["M", "S"]], + "napoleon's": null, + "napoleons": null, + "Napoleon": [["M", "S"]], + "Napoleon's": null, + "Napoleons": null, + "napped": null, + "napper": [["M", "S"]], + "napper's": null, + "nappers": null, + "Nappie": [["M"]], + "Nappie's": null, + "napping": null, + "Nappy": [["M"]], + "Nappy's": null, + "nappy": [["T", "R", "S", "M"]], + "nappiest": null, + "nappier": null, + "nappies": null, + "nappy's": null, + "nap": [["S", "M"]], + "naps": null, + "nap's": null, + "Nara": [["M"]], + "Nara's": null, + "Narbonne": [["M"]], + "Narbonne's": null, + "narc": [["D", "G", "S"]], + "narced": null, + "narcing": null, + "narcs": null, + "narcissism": [["M", "S"]], + "narcissism's": null, + "narcissisms": null, + "narcissistic": null, + "narcissist": [["M", "S"]], + "narcissist's": null, + "narcissists": null, + "narcissus": [["M"]], + "narcissus's": null, + "Narcissus": [["M"]], + "Narcissus's": null, + "narcoleptic": null, + "narcoses": null, + "narcosis": [["M"]], + "narcosis's": null, + "narcotic": [["S", "M"]], + "narcotics": null, + "narcotic's": null, + "narcotization": [["S"]], + "narcotizations": null, + "narcotize": [["G", "S", "D"]], + "narcotizing": null, + "narcotizes": null, + "narcotized": null, + "Nariko": [["M"]], + "Nariko's": null, + "Nari": [["M"]], + "Nari's": null, + "nark's": null, + "Narmada": [["M"]], + "Narmada's": null, + "Narragansett": [["M"]], + "Narragansett's": null, + "narrate": [["V", "G", "N", "S", "D", "X"]], + "narrative": [["M", "Y", "S"]], + "narrating": null, + "narration": [["M"]], + "narrates": null, + "narrated": null, + "narrations": null, + "narration's": null, + "narrative's": null, + "narratively": null, + "narratives": null, + "narratology": null, + "narrator": [["S", "M"]], + "narrators": null, + "narrator's": null, + "narrowing": [["P"]], + "narrowingness": null, + "narrowness": [["S", "M"]], + "narrownesses": null, + "narrowness's": null, + "narrow": [["R", "D", "Y", "T", "G", "P", "S"]], + "narrower": null, + "narrowed": null, + "narrowly": null, + "narrowest": null, + "narrows": null, + "narwhal": [["M", "S"]], + "narwhal's": null, + "narwhals": null, + "nary": null, + "nasality": [["M", "S"]], + "nasality's": null, + "nasalities": null, + "nasalization": [["M", "S"]], + "nasalization's": null, + "nasalizations": null, + "nasalize": [["G", "D", "S"]], + "nasalizing": null, + "nasalized": null, + "nasalizes": null, + "nasal": [["Y", "S"]], + "nasally": null, + "nasals": null, + "NASA": [["M", "S"]], + "NASA's": null, + "NASAs": null, + "nascence": [["A", "S", "M"]], + "renascence": null, + "renascences": null, + "renascence's": null, + "nascences": null, + "nascence's": null, + "nascent": [["A"]], + "renascent": null, + "NASDAQ": null, + "Nash": [["M"]], + "Nash's": null, + "Nashua": [["M"]], + "Nashua's": null, + "Nashville": [["M"]], + "Nashville's": null, + "Nassau": [["M"]], + "Nassau's": null, + "Nasser": [["M"]], + "Nasser's": null, + "nastily": null, + "nastiness": [["M", "S"]], + "nastiness's": null, + "nastinesses": null, + "nasturtium": [["S", "M"]], + "nasturtiums": null, + "nasturtium's": null, + "nasty": [["T", "R", "S", "P"]], + "nastiest": null, + "nastier": null, + "nasties": null, + "natal": null, + "Natala": [["M"]], + "Natala's": null, + "Natalee": [["M"]], + "Natalee's": null, + "Natale": [["M"]], + "Natale's": null, + "Natalia": [["M"]], + "Natalia's": null, + "Natalie": [["M"]], + "Natalie's": null, + "Natalina": [["M"]], + "Natalina's": null, + "Nataline": [["M"]], + "Nataline's": null, + "natalist": null, + "natality": [["M"]], + "natality's": null, + "Natal": [["M"]], + "Natal's": null, + "Natalya": [["M"]], + "Natalya's": null, + "Nata": [["M"]], + "Nata's": null, + "Nataniel": [["M"]], + "Nataniel's": null, + "Natasha": [["M"]], + "Natasha's": null, + "Natassia": [["M"]], + "Natassia's": null, + "Natchez": null, + "natch": [["S"]], + "natches": null, + "Nate": [["X", "M", "N"]], + "Nations": null, + "Nate's": null, + "Nation": null, + "Nathalia": [["M"]], + "Nathalia's": null, + "Nathalie": [["M"]], + "Nathalie's": null, + "Nathanael": [["M"]], + "Nathanael's": null, + "Nathanial": [["M"]], + "Nathanial's": null, + "Nathaniel": [["M"]], + "Nathaniel's": null, + "Nathanil": [["M"]], + "Nathanil's": null, + "Nathan": [["M", "S"]], + "Nathan's": null, + "Nathans": null, + "nationalism": [["S", "M"]], + "nationalisms": null, + "nationalism's": null, + "nationalistic": null, + "nationalistically": null, + "nationalist": [["M", "S"]], + "nationalist's": null, + "nationalists": null, + "nationality": [["M", "S"]], + "nationality's": null, + "nationalities": null, + "nationalization": [["M", "S"]], + "nationalization's": null, + "nationalizations": null, + "nationalize": [["C", "S", "D", "G"]], + "denationalize": null, + "denationalizes": null, + "denationalized": null, + "denationalizing": null, + "nationalizes": null, + "nationalized": [["A", "U"]], + "nationalizing": null, + "renationalized": null, + "unnationalized": null, + "nationalizer": [["S", "M"]], + "nationalizers": null, + "nationalizer's": null, + "national": [["Y", "S"]], + "nationally": null, + "nationals": null, + "nationhood": [["S", "M"]], + "nationhoods": null, + "nationhood's": null, + "nation": [["M", "S"]], + "nation's": null, + "nations": null, + "nationwide": null, + "nativeness": [["M"]], + "nativeness's": null, + "native": [["P", "Y", "S"]], + "natively": null, + "natives": null, + "Natividad": [["M"]], + "Natividad's": null, + "Nativity": [["M"]], + "Nativity's": null, + "nativity": [["M", "S"]], + "nativity's": null, + "nativities": null, + "Natka": [["M"]], + "Natka's": null, + "natl": null, + "Nat": [["M"]], + "Nat's": null, + "NATO": [["S", "M"]], + "NATOs": null, + "NATO's": null, + "natter": [["S", "G", "D"]], + "natters": null, + "nattering": null, + "nattered": null, + "nattily": null, + "nattiness": [["S", "M"]], + "nattinesses": null, + "nattiness's": null, + "Natty": [["M"]], + "Natty's": null, + "natty": [["T", "R", "P"]], + "nattiest": null, + "nattier": null, + "naturalism": [["M", "S"]], + "naturalism's": null, + "naturalisms": null, + "naturalistic": null, + "naturalist": [["M", "S"]], + "naturalist's": null, + "naturalists": null, + "naturalization": [["S", "M"]], + "naturalizations": null, + "naturalization's": null, + "naturalized": [["U"]], + "unnaturalized": null, + "naturalize": [["G", "S", "D"]], + "naturalizing": null, + "naturalizes": null, + "naturalness": [["U", "S"]], + "unnaturalness": [["M"]], + "unnaturalnesses": null, + "naturalnesses": null, + "natural": [["P", "U", "Y"]], + "unnatural": null, + "unnaturally": null, + "naturally": null, + "naturals": null, + "nature": [["A", "S", "D", "C", "G"]], + "renature": null, + "renatures": null, + "renatured": null, + "renaturing": null, + "natures": null, + "denatures": null, + "natured": null, + "denatured": null, + "denature": null, + "denaturing": null, + "naturing": null, + "nature's": null, + "naturist": null, + "Naugahyde": [["S"]], + "Naugahydes": null, + "naughtily": null, + "naughtiness": [["S", "M"]], + "naughtinesses": null, + "naughtiness's": null, + "naught": [["M", "S"]], + "naught's": null, + "naughts": null, + "naughty": [["T", "P", "R", "S"]], + "naughtiest": null, + "naughtier": null, + "naughties": null, + "Naur": [["M"]], + "Naur's": null, + "Nauru": [["M"]], + "Nauru's": null, + "nausea": [["S", "M"]], + "nauseas": null, + "nausea's": null, + "nauseate": [["D", "S", "G"]], + "nauseated": null, + "nauseates": null, + "nauseating": [["Y"]], + "nauseatingly": null, + "nauseousness": [["S", "M"]], + "nauseousnesses": null, + "nauseousness's": null, + "nauseous": [["P"]], + "nautical": [["Y"]], + "nautically": null, + "nautilus": [["M", "S"]], + "nautilus's": null, + "nautiluses": null, + "Navaho's": null, + "Navajoes": null, + "Navajo": [["S"]], + "Navajos": null, + "naval": [["Y"]], + "navally": null, + "Navarro": [["M"]], + "Navarro's": null, + "navel": [["M", "S"]], + "navel's": null, + "navels": null, + "nave": [["S", "M"]], + "naves": null, + "nave's": null, + "navigability": [["S", "M"]], + "navigabilities": null, + "navigability's": null, + "navigableness": [["M"]], + "navigableness's": null, + "navigable": [["P"]], + "navigate": [["D", "S", "X", "N", "G"]], + "navigated": null, + "navigates": null, + "navigations": null, + "navigation": [["M"]], + "navigating": null, + "navigational": null, + "navigation's": null, + "navigator": [["M", "S"]], + "navigator's": null, + "navigators": null, + "Navona": [["M"]], + "Navona's": null, + "Navratilova": [["M"]], + "Navratilova's": null, + "navvy": [["M"]], + "navvy's": null, + "Navy": [["S"]], + "Navies": null, + "navy": [["S", "M"]], + "navies": null, + "navy's": null, + "nay": [["M", "S"]], + "nay's": null, + "nays": null, + "naysayer": [["S"]], + "naysayers": null, + "Nazarene": [["M", "S"]], + "Nazarene's": null, + "Nazarenes": null, + "Nazareth": [["M"]], + "Nazareth's": null, + "Nazi": [["S", "M"]], + "Nazis": null, + "Nazi's": null, + "Nazism": [["S"]], + "Nazisms": null, + "NB": null, + "NBA": null, + "NBC": null, + "Nb": [["M"]], + "Nb's": null, + "NBS": null, + "NC": null, + "NCAA": null, + "NCC": null, + "NCO": null, + "NCR": null, + "ND": null, + "N'Djamena": null, + "Ndjamena": [["M"]], + "Ndjamena's": null, + "Nd": [["M"]], + "Nd's": null, + "Ne": null, + "NE": null, + "Neala": [["M"]], + "Neala's": null, + "Neale": [["M"]], + "Neale's": null, + "Neall": [["M"]], + "Neall's": null, + "Neal": [["M"]], + "Neal's": null, + "Nealon": [["M"]], + "Nealon's": null, + "Nealson": [["M"]], + "Nealson's": null, + "Nealy": [["M"]], + "Nealy's": null, + "Neanderthal": [["S"]], + "Neanderthals": null, + "neap": [["D", "G", "S"]], + "neaped": null, + "neaping": null, + "neaps": null, + "Neapolitan": [["S", "M"]], + "Neapolitans": null, + "Neapolitan's": null, + "nearby": null, + "nearly": [["R", "T"]], + "nearlier": null, + "nearliest": null, + "nearness": [["M", "S"]], + "nearness's": null, + "nearnesses": null, + "nearside": [["M"]], + "nearside's": null, + "nearsightedness": [["S"]], + "nearsightednesses": null, + "nearsighted": [["Y", "P"]], + "nearsightedly": null, + "near": [["T", "Y", "R", "D", "P", "S", "G"]], + "nearest": null, + "nearer": null, + "neared": null, + "nears": null, + "nearing": null, + "neaten": [["D", "G"]], + "neatened": null, + "neatening": null, + "neath": null, + "neatness": [["M", "S"]], + "neatness's": null, + "neatnesses": null, + "neat": [["Y", "R", "N", "T", "X", "P", "S"]], + "neatly": null, + "neater": null, + "neatest": null, + "neatens": null, + "neats": null, + "Neb": [["M"]], + "Neb's": null, + "Nebraska": [["M"]], + "Nebraska's": null, + "Nebraskan": [["M", "S"]], + "Nebraskan's": null, + "Nebraskans": null, + "Nebr": [["M"]], + "Nebr's": null, + "Nebuchadnezzar": [["M", "S"]], + "Nebuchadnezzar's": null, + "Nebuchadnezzars": null, + "nebulae": null, + "nebula": [["M"]], + "nebula's": null, + "nebular": null, + "nebulousness": [["S", "M"]], + "nebulousnesses": null, + "nebulousness's": null, + "nebulous": [["P", "Y"]], + "nebulously": null, + "necessaries": null, + "necessarily": [["U"]], + "unnecessarily": null, + "necessary": [["U"]], + "unnecessary": null, + "necessitate": [["D", "S", "N", "G", "X"]], + "necessitated": null, + "necessitates": null, + "necessitation": [["M"]], + "necessitating": null, + "necessitations": null, + "necessitation's": null, + "necessitous": null, + "necessity": [["S", "M"]], + "necessities": null, + "necessity's": null, + "neckband": [["M"]], + "neckband's": null, + "neckerchief": [["M", "S"]], + "neckerchief's": null, + "neckerchiefs": null, + "neck": [["G", "R", "D", "M", "J", "S"]], + "necking": [["M"]], + "necker": null, + "necked": null, + "neck's": null, + "neckings": null, + "necks": null, + "necking's": null, + "necklace": [["D", "S", "M", "G"]], + "necklaced": null, + "necklaces": null, + "necklace's": null, + "necklacing": null, + "neckline": [["M", "S"]], + "neckline's": null, + "necklines": null, + "necktie": [["M", "S"]], + "necktie's": null, + "neckties": null, + "necrology": [["S", "M"]], + "necrologies": null, + "necrology's": null, + "necromancer": [["M", "S"]], + "necromancer's": null, + "necromancers": null, + "necromancy": [["M", "S"]], + "necromancy's": null, + "necromancies": null, + "necromantic": null, + "necrophiliac": [["S"]], + "necrophiliacs": null, + "necrophilia": [["M"]], + "necrophilia's": null, + "necropolis": [["S", "M"]], + "necropolises": null, + "necropolis's": null, + "necropsy": [["M"]], + "necropsy's": null, + "necroses": null, + "necrosis": [["M"]], + "necrosis's": null, + "necrotic": null, + "nectarine": [["S", "M"]], + "nectarines": null, + "nectarine's": null, + "nectarous": null, + "nectar": [["S", "M"]], + "nectars": null, + "nectar's": null, + "nectary": [["M", "S"]], + "nectary's": null, + "nectaries": null, + "Neda": [["M"]], + "Neda's": null, + "Nedda": [["M"]], + "Nedda's": null, + "Neddie": [["M"]], + "Neddie's": null, + "Neddy": [["M"]], + "Neddy's": null, + "Nedi": [["M"]], + "Nedi's": null, + "Ned": [["M"]], + "Ned's": null, + "n�e": null, + "needed": [["U"]], + "unneeded": null, + "needer": [["M"]], + "needer's": null, + "needful": [["Y", "S", "P"]], + "needfully": null, + "needfuls": null, + "needfulness": null, + "Needham": [["M"]], + "Needham's": null, + "neediness": [["M", "S"]], + "neediness's": null, + "needinesses": null, + "needlecraft": [["M"]], + "needlecraft's": null, + "needle": [["G", "M", "Z", "R", "S", "D"]], + "needling": null, + "needle's": null, + "needlers": null, + "needler": null, + "needles": null, + "needled": null, + "needlepoint": [["S", "M"]], + "needlepoints": null, + "needlepoint's": null, + "needlessness": [["S"]], + "needlessnesses": null, + "needless": [["Y", "P"]], + "needlessly": null, + "needlewoman": [["M"]], + "needlewoman's": null, + "needlewomen": null, + "needlework": [["R", "M", "S"]], + "needleworker": null, + "needlework's": null, + "needleworks": null, + "needn't": null, + "need": [["Y", "R", "D", "G", "S"]], + "needly": null, + "needing": null, + "needs": null, + "needy": [["T", "P", "R"]], + "neediest": null, + "needier": null, + "Neel": [["M"]], + "Neel's": null, + "Neely": [["M"]], + "Neely's": null, + "ne'er": null, + "nefariousness": [["M", "S"]], + "nefariousness's": null, + "nefariousnesses": null, + "nefarious": [["Y", "P"]], + "nefariously": null, + "Nefen": [["M"]], + "Nefen's": null, + "Nefertiti": [["M"]], + "Nefertiti's": null, + "negated": [["U"]], + "unnegated": null, + "negater": [["M"]], + "negater's": null, + "negate": [["X", "R", "S", "D", "V", "N", "G"]], + "negations": null, + "negates": null, + "negative": [["P", "D", "S", "Y", "G"]], + "negation": [["M"]], + "negating": null, + "negation's": null, + "negativeness": [["S", "M"]], + "negativenesses": null, + "negativeness's": null, + "negatived": null, + "negatives": null, + "negatively": null, + "negativing": null, + "negativism": [["M", "S"]], + "negativism's": null, + "negativisms": null, + "negativity": [["M", "S"]], + "negativity's": null, + "negativities": null, + "negator": [["M", "S"]], + "negator's": null, + "negators": null, + "Negev": [["M"]], + "Negev's": null, + "neglecter": [["M"]], + "neglecter's": null, + "neglectfulness": [["S", "M"]], + "neglectfulnesses": null, + "neglectfulness's": null, + "neglectful": [["Y", "P"]], + "neglectfully": null, + "neglect": [["S", "D", "R", "G"]], + "neglects": null, + "neglected": null, + "neglecting": null, + "negligee": [["S", "M"]], + "negligees": null, + "negligee's": null, + "negligence": [["M", "S"]], + "negligence's": null, + "negligences": null, + "negligent": [["Y"]], + "negligently": null, + "negligibility": [["M"]], + "negligibility's": null, + "negligible": null, + "negligibly": null, + "negotiability": [["M", "S"]], + "negotiability's": null, + "negotiabilities": null, + "negotiable": [["A"]], + "renegotiable": null, + "negotiant": [["M"]], + "negotiant's": null, + "negotiate": [["A", "S", "D", "X", "G", "N"]], + "renegotiate": null, + "renegotiates": null, + "renegotiated": null, + "renegotiations": null, + "renegotiating": null, + "renegotiation": null, + "negotiates": null, + "negotiated": null, + "negotiations": null, + "negotiating": null, + "negotiation": [["M", "A"]], + "negotiation's": null, + "renegotiation's": null, + "negotiator": [["M", "S"]], + "negotiator's": null, + "negotiators": null, + "Negress": [["M", "S"]], + "Negress's": null, + "Negresses": null, + "negritude": [["M", "S"]], + "negritude's": null, + "negritudes": null, + "Negritude": [["S"]], + "Negritudes": null, + "Negroes": null, + "negroid": null, + "Negroid": [["S"]], + "Negroids": null, + "Negro": [["M"]], + "Negro's": null, + "neg": [["S"]], + "negs": null, + "Nehemiah": [["M"]], + "Nehemiah's": null, + "Nehru": [["M"]], + "Nehru's": null, + "neighbored": [["U"]], + "unneighbored": null, + "neighborer": [["M"]], + "neighborer's": null, + "neighborhood": [["S", "M"]], + "neighborhoods": null, + "neighborhood's": null, + "neighborlinesses": null, + "neighborliness": [["U", "M"]], + "unneighborliness": null, + "unneighborliness's": null, + "neighborliness's": null, + "neighborly": [["U", "P"]], + "unneighborly": null, + "neighbor": [["S", "M", "R", "D", "Y", "Z", "G", "J"]], + "neighbors": null, + "neighbor's": null, + "neighborers": null, + "neighboring": null, + "neighborings": null, + "neigh": [["M", "D", "G"]], + "neigh's": null, + "neighed": null, + "neighing": null, + "neighs": null, + "Neila": [["M"]], + "Neila's": null, + "Neile": [["M"]], + "Neile's": null, + "Neilla": [["M"]], + "Neilla's": null, + "Neille": [["M"]], + "Neille's": null, + "Neill": [["M"]], + "Neill's": null, + "Neil": [["S", "M"]], + "Neils": null, + "Neil's": null, + "neither": null, + "Nelda": [["M"]], + "Nelda's": null, + "Nelia": [["M"]], + "Nelia's": null, + "Nelie": [["M"]], + "Nelie's": null, + "Nelle": [["M"]], + "Nelle's": null, + "Nellie": [["M"]], + "Nellie's": null, + "Nelli": [["M"]], + "Nelli's": null, + "Nell": [["M"]], + "Nell's": null, + "Nelly": [["M"]], + "Nelly's": null, + "Nelsen": [["M"]], + "Nelsen's": null, + "Nels": [["N"]], + "Nelson": [["M"]], + "Nelson's": null, + "nelson": [["M", "S"]], + "nelson's": null, + "nelsons": null, + "nematic": null, + "nematode": [["S", "M"]], + "nematodes": null, + "nematode's": null, + "Nembutal": [["M"]], + "Nembutal's": null, + "nemeses": null, + "nemesis": null, + "Nemesis": [["M"]], + "Nemesis's": null, + "neoclassical": null, + "neoclassicism": [["M", "S"]], + "neoclassicism's": null, + "neoclassicisms": null, + "neoclassic": [["M"]], + "neoclassic's": null, + "neocolonialism": [["M", "S"]], + "neocolonialism's": null, + "neocolonialisms": null, + "neocortex": [["M"]], + "neocortex's": null, + "neodymium": [["M", "S"]], + "neodymium's": null, + "neodymiums": null, + "Neogene": null, + "neolithic": null, + "Neolithic": [["M"]], + "Neolithic's": null, + "neologism": [["S", "M"]], + "neologisms": null, + "neologism's": null, + "neomycin": [["M"]], + "neomycin's": null, + "neonatal": [["Y"]], + "neonatally": null, + "neonate": [["M", "S"]], + "neonate's": null, + "neonates": null, + "neon": [["D", "M", "S"]], + "neoned": null, + "neon's": null, + "neons": null, + "neophyte": [["M", "S"]], + "neophyte's": null, + "neophytes": null, + "neoplasm": [["S", "M"]], + "neoplasms": null, + "neoplasm's": null, + "neoplastic": null, + "neoprene": [["S", "M"]], + "neoprenes": null, + "neoprene's": null, + "Nepalese": null, + "Nepali": [["M", "S"]], + "Nepali's": null, + "Nepalis": null, + "Nepal": [["M"]], + "Nepal's": null, + "nepenthe": [["M", "S"]], + "nepenthe's": null, + "nepenthes": null, + "nephew": [["M", "S"]], + "nephew's": null, + "nephews": null, + "nephrite": [["S", "M"]], + "nephrites": null, + "nephrite's": null, + "nephritic": null, + "nephritides": null, + "nephritis": [["M"]], + "nephritis's": null, + "nepotism": [["M", "S"]], + "nepotism's": null, + "nepotisms": null, + "nepotist": [["S"]], + "nepotists": null, + "Neptune": [["M"]], + "Neptune's": null, + "neptunium": [["M", "S"]], + "neptunium's": null, + "neptuniums": null, + "nerd": [["S"]], + "nerds": null, + "nerdy": [["R", "T"]], + "nerdier": null, + "nerdiest": null, + "Nereid": [["M"]], + "Nereid's": null, + "Nerf": [["M"]], + "Nerf's": null, + "Nerissa": [["M"]], + "Nerissa's": null, + "Nerita": [["M"]], + "Nerita's": null, + "Nero": [["M"]], + "Nero's": null, + "Neron": [["M"]], + "Neron's": null, + "Nerta": [["M"]], + "Nerta's": null, + "Nerte": [["M"]], + "Nerte's": null, + "Nertie": [["M"]], + "Nertie's": null, + "Nerti": [["M"]], + "Nerti's": null, + "Nert": [["M"]], + "Nert's": null, + "Nerty": [["M"]], + "Nerty's": null, + "Neruda": [["M"]], + "Neruda's": null, + "nervelessness": [["S", "M"]], + "nervelessnesses": null, + "nervelessness's": null, + "nerveless": [["Y", "P"]], + "nervelessly": null, + "nerve's": null, + "nerve": [["U", "G", "S", "D"]], + "unnerve": null, + "unnerving": [["Y"]], + "unnerves": null, + "unnerved": null, + "nerving": [["M"]], + "nerves": null, + "nerved": null, + "nerviness": [["S", "M"]], + "nervinesses": null, + "nerviness's": null, + "nerving's": null, + "nervousness": [["S", "M"]], + "nervousnesses": null, + "nervousness's": null, + "nervous": [["P", "Y"]], + "nervously": null, + "nervy": [["T", "P", "R"]], + "nerviest": null, + "nervier": null, + "Nessa": [["M"]], + "Nessa's": null, + "Nessie": [["M"]], + "Nessie's": null, + "Nessi": [["M"]], + "Nessi's": null, + "Nessy": [["M"]], + "Nessy's": null, + "Nesta": [["M"]], + "Nesta's": null, + "nester": [["M"]], + "nester's": null, + "Nester": [["M"]], + "Nester's": null, + "Nestle": [["M"]], + "Nestle's": null, + "nestler": [["M"]], + "nestler's": null, + "nestle": [["R", "S", "D", "G"]], + "nestles": null, + "nestled": null, + "nestling": [["M"]], + "nestling's": null, + "Nestorius": [["M"]], + "Nestorius's": null, + "Nestor": [["M"]], + "Nestor's": null, + "nest": [["R", "D", "G", "S", "B", "M"]], + "nested": null, + "nesting": null, + "nests": null, + "nestable": null, + "nest's": null, + "netball": [["M"]], + "netball's": null, + "nether": null, + "Netherlander": [["S", "M"]], + "Netherlanders": null, + "Netherlander's": null, + "Netherlands": [["M"]], + "Netherlands's": null, + "nethermost": null, + "netherworld": [["S"]], + "netherworlds": null, + "Netscape": [["M"]], + "Netscape's": null, + "net": [["S", "M"]], + "nets": null, + "net's": null, + "Netta": [["M"]], + "Netta's": null, + "Nettie": [["M"]], + "Nettie's": null, + "Netti": [["M"]], + "Netti's": null, + "netting": [["M"]], + "netting's": null, + "nett": [["J", "G", "R", "D", "S"]], + "nettings": null, + "netter": null, + "netted": null, + "netts": null, + "Nettle": [["M"]], + "Nettle's": null, + "nettle": [["M", "S", "D", "G"]], + "nettle's": null, + "nettles": null, + "nettled": null, + "nettling": null, + "nettlesome": null, + "Netty": [["M"]], + "Netty's": null, + "network": [["S", "J", "M", "D", "G"]], + "networks": null, + "networkings": null, + "network's": null, + "networked": null, + "networking": null, + "Netzahualcoyotl": [["M"]], + "Netzahualcoyotl's": null, + "Neumann": [["M"]], + "Neumann's": null, + "neuralgia": [["M", "S"]], + "neuralgia's": null, + "neuralgias": null, + "neuralgic": null, + "neural": [["Y"]], + "neurally": null, + "neurasthenia": [["M", "S"]], + "neurasthenia's": null, + "neurasthenias": null, + "neurasthenic": [["S"]], + "neurasthenics": null, + "neuritic": [["S"]], + "neuritics": null, + "neuritides": null, + "neuritis": [["M"]], + "neuritis's": null, + "neuroanatomy": null, + "neurobiology": [["M"]], + "neurobiology's": null, + "neurological": [["Y"]], + "neurologically": null, + "neurologist": [["M", "S"]], + "neurologist's": null, + "neurologists": null, + "neurology": [["S", "M"]], + "neurologies": null, + "neurology's": null, + "neuromuscular": null, + "neuronal": null, + "neurone": [["S"]], + "neurones": null, + "neuron": [["M", "S"]], + "neuron's": null, + "neurons": null, + "neuropathology": [["M"]], + "neuropathology's": null, + "neurophysiology": [["M"]], + "neurophysiology's": null, + "neuropsychiatric": null, + "neuroses": null, + "neurosis": [["M"]], + "neurosis's": null, + "neurosurgeon": [["M", "S"]], + "neurosurgeon's": null, + "neurosurgeons": null, + "neurosurgery": [["S", "M"]], + "neurosurgeries": null, + "neurosurgery's": null, + "neurotically": null, + "neurotic": [["S"]], + "neurotics": null, + "neurotransmitter": [["S"]], + "neurotransmitters": null, + "neuter": [["J", "Z", "G", "R", "D"]], + "neuterings": null, + "neuterers": null, + "neutering": null, + "neuterer": null, + "neutered": null, + "neutralise's": null, + "neutralism": [["M", "S"]], + "neutralism's": null, + "neutralisms": null, + "neutralist": [["S"]], + "neutralists": null, + "neutrality": [["M", "S"]], + "neutrality's": null, + "neutralities": null, + "neutralization": [["M", "S"]], + "neutralization's": null, + "neutralizations": null, + "neutralized": [["U"]], + "unneutralized": null, + "neutralize": [["G", "Z", "S", "R", "D"]], + "neutralizing": null, + "neutralizers": null, + "neutralizes": null, + "neutralizer": null, + "neutral": [["P", "Y", "S"]], + "neutralness": null, + "neutrally": null, + "neutrals": null, + "neutrino": [["M", "S"]], + "neutrino's": null, + "neutrinos": null, + "neutron": [["M", "S"]], + "neutron's": null, + "neutrons": null, + "neut": [["Z", "R"]], + "neuters": null, + "Nevada": [["M"]], + "Nevada's": null, + "Nevadan": [["S"]], + "Nevadans": null, + "Nevadian": [["S"]], + "Nevadians": null, + "Neva": [["M"]], + "Neva's": null, + "never": null, + "nevermore": null, + "nevertheless": null, + "nevi": null, + "Nevile": [["M"]], + "Nevile's": null, + "Neville": [["M"]], + "Neville's": null, + "Nevil": [["M"]], + "Nevil's": null, + "Nevin": [["S", "M"]], + "Nevins": null, + "Nevin's": null, + "Nevis": [["M"]], + "Nevis's": null, + "Nev": [["M"]], + "Nev's": null, + "Nevsa": [["M"]], + "Nevsa's": null, + "Nevsky": [["M"]], + "Nevsky's": null, + "nevus": [["M"]], + "nevus's": null, + "Newark": [["M"]], + "Newark's": null, + "newbie": [["S"]], + "newbies": null, + "newborn": [["S"]], + "newborns": null, + "Newbury": [["M"]], + "Newbury's": null, + "Newburyport": [["M"]], + "Newburyport's": null, + "Newcastle": [["M"]], + "Newcastle's": null, + "newcomer": [["M", "S"]], + "newcomer's": null, + "newcomers": null, + "newed": [["A"]], + "renewed": null, + "Newell": [["M"]], + "Newell's": null, + "newel": [["M", "S"]], + "newel's": null, + "newels": null, + "newer": [["A"]], + "renewer": [["M"]], + "newfangled": null, + "newfound": null, + "newfoundland": null, + "Newfoundlander": [["M"]], + "Newfoundlander's": null, + "Newfoundland": [["S", "R", "M", "Z"]], + "Newfoundlands": null, + "Newfoundland's": null, + "Newfoundlanders": null, + "newish": null, + "newline": [["S", "M"]], + "newlines": null, + "newline's": null, + "newlywed": [["M", "S"]], + "newlywed's": null, + "newlyweds": null, + "Newman": [["M"]], + "Newman's": null, + "newness": [["M", "S"]], + "newness's": null, + "newnesses": null, + "Newport": [["M"]], + "Newport's": null, + "news": [["A"]], + "renews": null, + "newsagent": [["M", "S"]], + "newsagent's": null, + "newsagents": null, + "newsboy": [["S", "M"]], + "newsboys": null, + "newsboy's": null, + "newscaster": [["M"]], + "newscaster's": null, + "newscasting": [["M"]], + "newscasting's": null, + "newscast": [["S", "R", "M", "G", "Z"]], + "newscasts": null, + "newscast's": null, + "newscasters": null, + "newsdealer": [["M", "S"]], + "newsdealer's": null, + "newsdealers": null, + "newsed": null, + "newses": null, + "newsflash": [["S"]], + "newsflashes": null, + "newsgirl": [["S"]], + "newsgirls": null, + "newsgroup": [["S", "M"]], + "newsgroups": null, + "newsgroup's": null, + "newsing": null, + "newsletter": [["S", "M"]], + "newsletters": null, + "newsletter's": null, + "NeWS": [["M"]], + "NeWS's": null, + "newsman": [["M"]], + "newsman's": null, + "newsmen": null, + "newspaperman": [["M"]], + "newspaperman's": null, + "newspapermen": null, + "newspaper": [["S", "M", "G", "D"]], + "newspapers": null, + "newspaper's": null, + "newspapering": null, + "newspapered": null, + "newspaperwoman": [["M"]], + "newspaperwoman's": null, + "newspaperwomen": null, + "newsprint": [["M", "S"]], + "newsprint's": null, + "newsprints": null, + "new": [["S", "P", "T", "G", "D", "R", "Y"]], + "newest": null, + "newing": null, + "newly": null, + "newsreader": [["M", "S"]], + "newsreader's": null, + "newsreaders": null, + "newsreel": [["S", "M"]], + "newsreels": null, + "newsreel's": null, + "newsroom": [["S"]], + "newsrooms": null, + "news's": null, + "newsstand": [["M", "S"]], + "newsstand's": null, + "newsstands": null, + "Newsweekly": [["M"]], + "Newsweekly's": null, + "newsweekly": [["S"]], + "newsweeklies": null, + "Newsweek": [["M", "Y"]], + "Newsweek's": null, + "newswire": null, + "newswoman": [["M"]], + "newswoman's": null, + "newswomen": null, + "newsworthiness": [["S", "M"]], + "newsworthinesses": null, + "newsworthiness's": null, + "newsworthy": [["R", "P", "T"]], + "newsworthier": null, + "newsworthiest": null, + "newsy": [["T", "R", "S"]], + "newsiest": null, + "newsier": null, + "newsies": null, + "newt": [["M", "S"]], + "newt's": null, + "newts": null, + "Newtonian": null, + "Newton": [["M"]], + "Newton's": null, + "newton": [["S", "M"]], + "newtons": null, + "newton's": null, + "Nexis": [["M"]], + "Nexis's": null, + "next": null, + "nexus": [["S", "M"]], + "nexuses": null, + "nexus's": null, + "Neysa": [["M"]], + "Neysa's": null, + "NF": null, + "NFC": null, + "NFL": null, + "NFS": null, + "Ngaliema": [["M"]], + "Ngaliema's": null, + "Nguyen": [["M"]], + "Nguyen's": null, + "NH": null, + "NHL": null, + "niacin": [["S", "M"]], + "niacins": null, + "niacin's": null, + "Niagara": [["M"]], + "Niagara's": null, + "Niall": [["M"]], + "Niall's": null, + "Nial": [["M"]], + "Nial's": null, + "Niamey": [["M"]], + "Niamey's": null, + "nibbed": null, + "nibbing": null, + "nibbler": [["M"]], + "nibbler's": null, + "nibble": [["R", "S", "D", "G", "Z"]], + "nibbles": null, + "nibbled": null, + "nibbling": null, + "nibblers": null, + "Nibelung": [["M"]], + "Nibelung's": null, + "nib": [["S", "M"]], + "nibs": null, + "nib's": null, + "Nicaean": null, + "Nicaragua": [["M"]], + "Nicaragua's": null, + "Nicaraguan": [["S"]], + "Nicaraguans": null, + "Niccolo": [["M"]], + "Niccolo's": null, + "Nice": [["M"]], + "Nice's": null, + "Nicene": null, + "niceness": [["M", "S"]], + "niceness's": null, + "nicenesses": null, + "nicety": [["M", "S"]], + "nicety's": null, + "niceties": null, + "nice": [["Y", "T", "P", "R"]], + "nicely": null, + "nicest": null, + "nicer": null, + "niche": [["S", "D", "G", "M"]], + "niches": null, + "niched": null, + "niching": null, + "niche's": null, + "Nicholas": null, + "Nichole": [["M"]], + "Nichole's": null, + "Nicholle": [["M"]], + "Nicholle's": null, + "Nichol": [["M", "S"]], + "Nichol's": null, + "Nichols": null, + "Nicholson": [["M"]], + "Nicholson's": null, + "nichrome": null, + "nickelodeon": [["S", "M"]], + "nickelodeons": null, + "nickelodeon's": null, + "nickel": [["S", "G", "M", "D"]], + "nickels": null, + "nickeling": null, + "nickel's": null, + "nickeled": null, + "nicker": [["G", "D"]], + "nickering": null, + "nickered": null, + "Nickey": [["M"]], + "Nickey's": null, + "nick": [["G", "Z", "R", "D", "M", "S"]], + "nicking": null, + "nickers": null, + "nicked": null, + "nick's": null, + "nicks": null, + "Nickie": [["M"]], + "Nickie's": null, + "Nicki": [["M"]], + "Nicki's": null, + "Nicklaus": [["M"]], + "Nicklaus's": null, + "Nick": [["M"]], + "Nick's": null, + "nicknack's": null, + "nickname": [["M", "G", "D", "R", "S"]], + "nickname's": null, + "nicknaming": null, + "nicknamed": null, + "nicknamer": [["M"]], + "nicknames": null, + "nicknamer's": null, + "Nickolai": [["M"]], + "Nickolai's": null, + "Nickola": [["M", "S"]], + "Nickola's": null, + "Nickolas": null, + "Nickolaus": [["M"]], + "Nickolaus's": null, + "Nicko": [["M"]], + "Nicko's": null, + "Nicky": [["M"]], + "Nicky's": null, + "Nicobar": [["M"]], + "Nicobar's": null, + "Nicodemus": [["M"]], + "Nicodemus's": null, + "Nicolai": [["M", "S"]], + "Nicolai's": null, + "Nicolais": null, + "Nicola": [["M", "S"]], + "Nicola's": null, + "Nicolas": null, + "Nicolea": [["M"]], + "Nicolea's": null, + "Nicole": [["M"]], + "Nicole's": null, + "Nicolette": [["M"]], + "Nicolette's": null, + "Nicoli": [["M", "S"]], + "Nicoli's": null, + "Nicolis": null, + "Nicolina": [["M"]], + "Nicolina's": null, + "Nicoline": [["M"]], + "Nicoline's": null, + "Nicolle": [["M"]], + "Nicolle's": null, + "Nicol": [["M"]], + "Nicol's": null, + "Nico": [["M"]], + "Nico's": null, + "Nicosia": [["M"]], + "Nicosia's": null, + "nicotine": [["M", "S"]], + "nicotine's": null, + "nicotines": null, + "Niebuhr": [["M"]], + "Niebuhr's": null, + "niece": [["M", "S"]], + "niece's": null, + "nieces": null, + "Niel": [["M", "S"]], + "Niel's": null, + "Niels": [["N"]], + "Nielsen": [["M"]], + "Nielsen's": null, + "Nielson": [["M"]], + "Nielson's": null, + "Nietzsche": [["M"]], + "Nietzsche's": null, + "Nieves": [["M"]], + "Nieves's": null, + "nifty": [["T", "R", "S"]], + "niftiest": null, + "niftier": null, + "nifties": null, + "Nigel": [["M"]], + "Nigel's": null, + "Nigeria": [["M"]], + "Nigeria's": null, + "Nigerian": [["S"]], + "Nigerians": null, + "Nigerien": null, + "Niger": [["M"]], + "Niger's": null, + "niggardliness": [["S", "M"]], + "niggardlinesses": null, + "niggardliness's": null, + "niggardly": [["P"]], + "niggard": [["S", "G", "M", "D", "Y"]], + "niggards": null, + "niggarding": null, + "niggard's": null, + "niggarded": null, + "nigger": [["S", "G", "D", "M", "!"]], + "niggers": null, + "niggering": null, + "niggered": null, + "nigger's": null, + "niggler": [["M"]], + "niggler's": null, + "niggle": [["R", "S", "D", "G", "Z", "J"]], + "niggles": null, + "niggled": null, + "niggling": [["Y"]], + "nigglers": null, + "nigglings": null, + "nigglingly": null, + "nigh": [["R", "D", "G", "T"]], + "nigher": null, + "nighed": null, + "nighing": null, + "nighest": null, + "nighs": null, + "nightcap": [["S", "M"]], + "nightcaps": null, + "nightcap's": null, + "nightclothes": null, + "nightclubbed": null, + "nightclubbing": null, + "nightclub": [["M", "S"]], + "nightclub's": null, + "nightclubs": null, + "nightdress": [["M", "S"]], + "nightdress's": null, + "nightdresses": null, + "nightfall": [["S", "M"]], + "nightfalls": null, + "nightfall's": null, + "nightgown": [["M", "S"]], + "nightgown's": null, + "nightgowns": null, + "nighthawk": [["M", "S"]], + "nighthawk's": null, + "nighthawks": null, + "nightie": [["M", "S"]], + "nightie's": null, + "nighties": null, + "Nightingale": [["M"]], + "Nightingale's": null, + "nightingale": [["S", "M"]], + "nightingales": null, + "nightingale's": null, + "nightlife": [["M", "S"]], + "nightlife's": null, + "nightlifes": null, + "nightlong": null, + "nightmare": [["M", "S"]], + "nightmare's": null, + "nightmares": null, + "nightmarish": [["Y"]], + "nightmarishly": null, + "nightshade": [["S", "M"]], + "nightshades": null, + "nightshade's": null, + "nightshirt": [["M", "S"]], + "nightshirt's": null, + "nightshirts": null, + "night": [["S", "M", "Y", "D", "Z"]], + "nights": null, + "night's": null, + "nightly": null, + "nighted": null, + "nighters": null, + "nightspot": [["M", "S"]], + "nightspot's": null, + "nightspots": null, + "nightstand": [["S", "M"]], + "nightstands": null, + "nightstand's": null, + "nightstick": [["S"]], + "nightsticks": null, + "nighttime": [["S"]], + "nighttimes": null, + "nightwear": [["M"]], + "nightwear's": null, + "nighty's": null, + "NIH": null, + "nihilism": [["M", "S"]], + "nihilism's": null, + "nihilisms": null, + "nihilistic": null, + "nihilist": [["M", "S"]], + "nihilist's": null, + "nihilists": null, + "Nijinsky": [["M"]], + "Nijinsky's": null, + "Nikaniki": [["M"]], + "Nikaniki's": null, + "Nike": [["M"]], + "Nike's": null, + "Niki": [["M"]], + "Niki's": null, + "Nikita": [["M"]], + "Nikita's": null, + "Nikkie": [["M"]], + "Nikkie's": null, + "Nikki": [["M"]], + "Nikki's": null, + "Nikko": [["M"]], + "Nikko's": null, + "Nikolai": [["M"]], + "Nikolai's": null, + "Nikola": [["M", "S"]], + "Nikola's": null, + "Nikolas": null, + "Nikolaos": [["M"]], + "Nikolaos's": null, + "Nikolaus": [["M"]], + "Nikolaus's": null, + "Nikolayev's": null, + "Nikoletta": [["M"]], + "Nikoletta's": null, + "Nikolia": [["M"]], + "Nikolia's": null, + "Nikolos": [["M"]], + "Nikolos's": null, + "Niko": [["M", "S"]], + "Niko's": null, + "Nikos": null, + "Nikon": [["M"]], + "Nikon's": null, + "Nile": [["S", "M"]], + "Niles": null, + "Nile's": null, + "nilled": null, + "nilling": null, + "Nil": [["M", "S"]], + "Nil's": null, + "Nils": [["N"]], + "nil": [["M", "Y", "S"]], + "nil's": null, + "nilly": null, + "nils": null, + "nilpotent": null, + "Nilsen": [["M"]], + "Nilsen's": null, + "Nilson": [["M"]], + "Nilson's": null, + "Nilsson": [["M"]], + "Nilsson's": null, + "Ni": [["M"]], + "Ni's": null, + "nimbi": null, + "nimbleness": [["S", "M"]], + "nimblenesses": null, + "nimbleness's": null, + "nimble": [["T", "R", "P"]], + "nimblest": null, + "nimbler": null, + "nimbly": null, + "nimbus": [["D", "M"]], + "nimbused": null, + "nimbus's": null, + "NIMBY": null, + "Nimitz": [["M"]], + "Nimitz's": null, + "Nimrod": [["M", "S"]], + "Nimrod's": null, + "Nimrods": null, + "Nina": [["M"]], + "Nina's": null, + "nincompoop": [["M", "S"]], + "nincompoop's": null, + "nincompoops": null, + "ninefold": null, + "nine": [["M", "S"]], + "nine's": null, + "nines": null, + "ninepence": [["M"]], + "ninepence's": null, + "ninepin": [["S"]], + "ninepins": [["M"]], + "ninepins's": null, + "nineteen": [["S", "M", "H"]], + "nineteens": null, + "nineteen's": null, + "nineteenth": null, + "nineteenths": null, + "ninetieths": null, + "Ninetta": [["M"]], + "Ninetta's": null, + "Ninette": [["M"]], + "Ninette's": null, + "ninety": [["M", "H", "S"]], + "ninety's": null, + "ninetieth": null, + "nineties": null, + "Nineveh": [["M"]], + "Nineveh's": null, + "ninja": [["S"]], + "ninjas": null, + "Ninnetta": [["M"]], + "Ninnetta's": null, + "Ninnette": [["M"]], + "Ninnette's": null, + "ninny": [["S", "M"]], + "ninnies": null, + "ninny's": null, + "Ninon": [["M"]], + "Ninon's": null, + "Nintendo": [["M"]], + "Nintendo's": null, + "ninth": null, + "ninths": null, + "Niobe": [["M"]], + "Niobe's": null, + "niobium": [["M", "S"]], + "niobium's": null, + "niobiums": null, + "nipped": null, + "nipper": [["D", "M", "G", "S"]], + "nippered": null, + "nipper's": null, + "nippering": null, + "nippers": null, + "nippiness": [["S"]], + "nippinesses": null, + "nipping": [["Y"]], + "nippingly": null, + "nipple": [["G", "M", "S", "D"]], + "nippling": null, + "nipple's": null, + "nipples": null, + "nippled": null, + "Nipponese": null, + "Nippon": [["M"]], + "Nippon's": null, + "nippy": [["T", "P", "R"]], + "nippiest": null, + "nippier": null, + "nip": [["S"]], + "nips": null, + "Nirenberg": [["M"]], + "Nirenberg's": null, + "nirvana": [["M", "S"]], + "nirvana's": null, + "nirvanas": null, + "Nirvana": [["S"]], + "Nirvanas": null, + "nisei": null, + "Nisei": [["M", "S"]], + "Nisei's": null, + "Niseis": null, + "Nissa": [["M"]], + "Nissa's": null, + "Nissan": [["M"]], + "Nissan's": null, + "Nisse": [["M"]], + "Nisse's": null, + "Nissie": [["M"]], + "Nissie's": null, + "Nissy": [["M"]], + "Nissy's": null, + "Nita": [["M"]], + "Nita's": null, + "niter": [["M"]], + "niter's": null, + "nitpick": [["D", "R", "S", "J", "Z", "G"]], + "nitpicked": null, + "nitpicker": null, + "nitpicks": null, + "nitpickings": null, + "nitpickers": null, + "nitpicking": null, + "nitrate": [["M", "G", "N", "X", "S", "D"]], + "nitrate's": null, + "nitrating": null, + "nitration": [["M"]], + "nitrations": null, + "nitrates": null, + "nitrated": null, + "nitration's": null, + "nitric": null, + "nitride": [["M", "G", "S"]], + "nitride's": null, + "nitriding": [["M"]], + "nitrides": null, + "nitriding's": null, + "nitrification": [["S", "M"]], + "nitrifications": null, + "nitrification's": null, + "nitrite": [["M", "S"]], + "nitrite's": null, + "nitrites": null, + "nitrocellulose": [["M", "S"]], + "nitrocellulose's": null, + "nitrocelluloses": null, + "nitrogenous": null, + "nitrogen": [["S", "M"]], + "nitrogens": null, + "nitrogen's": null, + "nitroglycerin": [["M", "S"]], + "nitroglycerin's": null, + "nitroglycerins": null, + "nitrous": null, + "nitwit": [["M", "S"]], + "nitwit's": null, + "nitwits": null, + "nit": [["Z", "S", "M", "R"]], + "niters": null, + "nits": null, + "nit's": null, + "Niven": [["M"]], + "Niven's": null, + "nixer": [["M"]], + "nixer's": null, + "nix": [["G", "D", "S", "R"]], + "nixing": null, + "nixed": null, + "nixes": null, + "Nixie": [["M"]], + "Nixie's": null, + "Nixon": [["M"]], + "Nixon's": null, + "NJ": null, + "Nkrumah": [["M"]], + "Nkrumah's": null, + "NLRB": null, + "nm": null, + "NM": null, + "no": [["A"]], + "reno": null, + "NOAA": null, + "Noach": [["M"]], + "Noach's": null, + "Noah": [["M"]], + "Noah's": null, + "Noak": [["M"]], + "Noak's": null, + "Noami": [["M"]], + "Noami's": null, + "Noam": [["M"]], + "Noam's": null, + "Nobelist": [["S", "M"]], + "Nobelists": null, + "Nobelist's": null, + "nobelium": [["M", "S"]], + "nobelium's": null, + "nobeliums": null, + "Nobel": [["M"]], + "Nobel's": null, + "Nobe": [["M"]], + "Nobe's": null, + "Nobie": [["M"]], + "Nobie's": null, + "nobility": [["M", "S"]], + "nobility's": null, + "nobilities": null, + "Noble": [["M"]], + "Noble's": null, + "nobleman": [["M"]], + "nobleman's": null, + "noblemen": null, + "nobleness": [["S", "M"]], + "noblenesses": null, + "nobleness's": null, + "noblesse": [["M"]], + "noblesse's": null, + "noble": [["T", "P", "S", "R"]], + "noblest": null, + "nobles": null, + "nobler": null, + "noblewoman": null, + "noblewomen": null, + "nob": [["M", "Y"]], + "nob's": null, + "nobly": null, + "nobody": [["M", "S"]], + "nobody's": null, + "nobodies": null, + "Noby": [["M"]], + "Noby's": null, + "nocturnal": [["S", "Y"]], + "nocturnals": null, + "nocturnally": null, + "nocturne": [["S", "M"]], + "nocturnes": null, + "nocturne's": null, + "nodal": [["Y"]], + "nodally": null, + "nodded": null, + "nodding": null, + "noddle": [["M", "S", "D", "G"]], + "noddle's": null, + "noddles": null, + "noddled": null, + "noddling": null, + "noddy": [["M"]], + "noddy's": null, + "node": [["M", "S"]], + "node's": null, + "nodes": null, + "NoDoz": [["M"]], + "NoDoz's": null, + "nod": [["S", "M"]], + "nods": null, + "nod's": null, + "nodular": null, + "nodule": [["S", "M"]], + "nodules": null, + "nodule's": null, + "Noelani": [["M"]], + "Noelani's": null, + "Noella": [["M"]], + "Noella's": null, + "Noelle": [["M"]], + "Noelle's": null, + "Noell": [["M"]], + "Noell's": null, + "Noellyn": [["M"]], + "Noellyn's": null, + "Noel": [["M", "S"]], + "Noel's": null, + "Noels": null, + "noel": [["S"]], + "noels": null, + "Noelyn": [["M"]], + "Noelyn's": null, + "Noe": [["M"]], + "Noe's": null, + "Noemi": [["M"]], + "Noemi's": null, + "noes": [["S"]], + "noeses": null, + "noggin": [["S", "M"]], + "noggins": null, + "noggin's": null, + "nohow": null, + "noise": [["G", "M", "S", "D"]], + "noising": null, + "noise's": null, + "noises": null, + "noised": null, + "noiselessness": [["S", "M"]], + "noiselessnesses": null, + "noiselessness's": null, + "noiseless": [["Y", "P"]], + "noiselessly": null, + "noisemaker": [["M"]], + "noisemaker's": null, + "noisemake": [["Z", "G", "R"]], + "noisemakers": null, + "noisemaking": null, + "noisily": null, + "noisiness": [["M", "S"]], + "noisiness's": null, + "noisinesses": null, + "noisome": null, + "noisy": [["T", "P", "R"]], + "noisiest": null, + "noisier": null, + "Nola": [["M"]], + "Nola's": null, + "Nolana": [["M"]], + "Nolana's": null, + "Noland": [["M"]], + "Noland's": null, + "Nolan": [["M"]], + "Nolan's": null, + "Nolie": [["M"]], + "Nolie's": null, + "Nollie": [["M"]], + "Nollie's": null, + "Noll": [["M"]], + "Noll's": null, + "Nolly": [["M"]], + "Nolly's": null, + "No": [["M"]], + "No's": null, + "nomadic": null, + "nomad": [["S", "M"]], + "nomads": null, + "nomad's": null, + "Nome": [["M"]], + "Nome's": null, + "nomenclature": [["M", "S"]], + "nomenclature's": null, + "nomenclatures": null, + "Nomi": [["M"]], + "Nomi's": null, + "nominalized": null, + "nominal": [["K"]], + "pronominal": null, + "nominally": null, + "nominals": null, + "nominate": [["C", "D", "S", "A", "X", "N", "G"]], + "denominated": null, + "denominates": null, + "denominations": null, + "denomination": null, + "denominating": null, + "nominated": null, + "renominated": null, + "nominates": null, + "renominates": null, + "renominate": null, + "renominations": null, + "renomination": null, + "renominating": null, + "nominations": null, + "nomination": [["M", "A", "C"]], + "nominating": null, + "nomination's": null, + "renomination's": null, + "denomination's": null, + "nominative": [["S", "Y"]], + "nominatives": null, + "nominatively": null, + "nominator": [["C", "S", "M"]], + "denominator": null, + "denominators": null, + "denominator's": null, + "nominators": null, + "nominator's": null, + "nominee": [["M", "S"]], + "nominee's": null, + "nominees": null, + "non": null, + "nonabrasive": null, + "nonabsorbent": [["S"]], + "nonabsorbents": null, + "nonacademic": [["S"]], + "nonacademics": null, + "nonacceptance": [["M", "S"]], + "nonacceptance's": null, + "nonacceptances": null, + "nonacid": [["M", "S"]], + "nonacid's": null, + "nonacids": null, + "nonactive": null, + "nonadaptive": null, + "nonaddictive": null, + "nonadhesive": null, + "nonadjacent": null, + "nonadjustable": null, + "nonadministrative": null, + "nonage": [["M", "S"]], + "nonage's": null, + "nonages": null, + "nonagenarian": [["M", "S"]], + "nonagenarian's": null, + "nonagenarians": null, + "nonaggression": [["S", "M"]], + "nonaggressions": null, + "nonaggression's": null, + "nonagricultural": null, + "Nonah": [["M"]], + "Nonah's": null, + "nonalcoholic": [["S"]], + "nonalcoholics": null, + "nonaligned": null, + "nonalignment": [["S", "M"]], + "nonalignments": null, + "nonalignment's": null, + "nonallergic": null, + "Nona": [["M"]], + "Nona's": null, + "nonappearance": [["M", "S"]], + "nonappearance's": null, + "nonappearances": null, + "nonassignable": null, + "nonathletic": null, + "nonattendance": [["S", "M"]], + "nonattendances": null, + "nonattendance's": null, + "nonautomotive": null, + "nonavailability": [["S", "M"]], + "nonavailabilities": null, + "nonavailability's": null, + "nonbasic": null, + "nonbeliever": [["S", "M"]], + "nonbelievers": null, + "nonbeliever's": null, + "nonbelligerent": [["S"]], + "nonbelligerents": null, + "nonblocking": null, + "nonbreakable": null, + "nonburnable": null, + "nonbusiness": null, + "noncaloric": null, + "noncancerous": null, + "noncarbohydrate": [["M"]], + "noncarbohydrate's": null, + "nonce": [["M", "S"]], + "nonce's": null, + "nonces": null, + "nonchalance": [["S", "M"]], + "nonchalances": null, + "nonchalance's": null, + "nonchalant": [["Y", "P"]], + "nonchalantly": null, + "nonchalantness": null, + "nonchargeable": null, + "nonclerical": [["S"]], + "nonclericals": null, + "nonclinical": null, + "noncollectable": null, + "noncombatant": [["M", "S"]], + "noncombatant's": null, + "noncombatants": null, + "noncombustible": [["S"]], + "noncombustibles": null, + "noncommercial": [["S"]], + "noncommercials": null, + "noncommissioned": null, + "noncommittal": [["Y"]], + "noncommittally": null, + "noncom": [["M", "S"]], + "noncom's": null, + "noncoms": null, + "noncommunicable": null, + "noncompeting": null, + "noncompetitive": null, + "noncompliance": [["M", "S"]], + "noncompliance's": null, + "noncompliances": null, + "noncomplying": [["S"]], + "noncomplyings": null, + "noncomprehending": null, + "nonconducting": null, + "nonconductor": [["M", "S"]], + "nonconductor's": null, + "nonconductors": null, + "nonconforming": null, + "nonconformist": [["S", "M"]], + "nonconformists": null, + "nonconformist's": null, + "nonconformity": [["S", "M"]], + "nonconformities": null, + "nonconformity's": null, + "nonconsecutive": null, + "nonconservative": null, + "nonconstructive": null, + "noncontagious": null, + "noncontiguous": null, + "noncontinuous": null, + "noncontributing": null, + "noncontributory": null, + "noncontroversial": null, + "nonconvertible": null, + "noncooperation": [["S", "M"]], + "noncooperations": null, + "noncooperation's": null, + "noncorroding": [["S"]], + "noncorrodings": null, + "noncorrosive": null, + "noncredit": null, + "noncriminal": [["S"]], + "noncriminals": null, + "noncritical": null, + "noncrystalline": null, + "noncumulative": null, + "noncustodial": null, + "noncyclic": null, + "nondairy": null, + "nondecreasing": null, + "nondeductible": null, + "nondelivery": [["M", "S"]], + "nondelivery's": null, + "nondeliveries": null, + "nondemocratic": null, + "nondenominational": null, + "nondepartmental": null, + "nondepreciating": null, + "nondescript": [["Y", "S"]], + "nondescriptly": null, + "nondescripts": null, + "nondestructive": [["Y"]], + "nondestructively": null, + "nondetachable": null, + "nondeterminacy": null, + "nondeterminate": [["Y"]], + "nondeterminately": null, + "nondeterminism": null, + "nondeterministic": null, + "nondeterministically": null, + "nondisciplinary": null, + "nondisclosure": [["S", "M"]], + "nondisclosures": null, + "nondisclosure's": null, + "nondiscrimination": [["S", "M"]], + "nondiscriminations": null, + "nondiscrimination's": null, + "nondiscriminatory": null, + "nondramatic": null, + "nondrinker": [["S", "M"]], + "nondrinkers": null, + "nondrinker's": null, + "nondrying": null, + "nondurable": null, + "noneconomic": null, + "noneducational": null, + "noneffective": [["S"]], + "noneffectives": null, + "nonelastic": null, + "nonelectrical": null, + "nonelectric": [["S"]], + "nonelectrics": null, + "nonemergency": null, + "nonempty": null, + "nonenforceable": null, + "nonentity": [["M", "S"]], + "nonentity's": null, + "nonentities": null, + "nonequivalence": [["M"]], + "nonequivalence's": null, + "nonequivalent": [["S"]], + "nonequivalents": null, + "none": [["S"]], + "nones": [["M"]], + "nones's": null, + "nonessential": [["S"]], + "nonessentials": null, + "nonesuch": [["S", "M"]], + "nonesuches": null, + "nonesuch's": null, + "nonetheless": null, + "nonevent": [["M", "S"]], + "nonevent's": null, + "nonevents": null, + "nonexchangeable": null, + "nonexclusive": null, + "nonexempt": null, + "nonexistence": [["M", "S"]], + "nonexistence's": null, + "nonexistences": null, + "nonexistent": null, + "nonexplosive": [["S"]], + "nonexplosives": null, + "nonextensible": null, + "nonfactual": null, + "nonfading": null, + "nonfat": null, + "nonfatal": null, + "nonfattening": null, + "nonferrous": null, + "nonfictional": null, + "nonfiction": [["S", "M"]], + "nonfictions": null, + "nonfiction's": null, + "nonflammable": null, + "nonflowering": null, + "nonfluctuating": null, + "nonflying": null, + "nonfood": [["M"]], + "nonfood's": null, + "nonfreezing": null, + "nonfunctional": null, + "nongovernmental": null, + "nongranular": null, + "nonhazardous": null, + "nonhereditary": null, + "nonhuman": null, + "nonidentical": null, + "Nonie": [["M"]], + "Nonie's": null, + "Noni": [["M"]], + "Noni's": null, + "noninclusive": null, + "nonindependent": null, + "nonindustrial": null, + "noninfectious": null, + "noninflammatory": null, + "noninflationary": null, + "noninflected": null, + "nonintellectual": [["S"]], + "nonintellectuals": null, + "noninteracting": null, + "noninterchangeable": null, + "noninterference": [["M", "S"]], + "noninterference's": null, + "noninterferences": null, + "nonintervention": [["S", "M"]], + "noninterventions": null, + "nonintervention's": null, + "nonintoxicating": null, + "nonintuitive": null, + "noninvasive": null, + "nonionic": null, + "nonirritating": null, + "nonjudgmental": null, + "nonjudicial": null, + "nonlegal": null, + "nonlethal": null, + "nonlinearity": [["M", "S"]], + "nonlinearity's": null, + "nonlinearities": null, + "nonlinear": [["Y"]], + "nonlinearly": null, + "nonlinguistic": null, + "nonliterary": null, + "nonliving": null, + "nonlocal": null, + "nonmagical": null, + "nonmagnetic": null, + "nonmalignant": null, + "nonmember": [["S", "M"]], + "nonmembers": null, + "nonmember's": null, + "nonmetallic": null, + "nonmetal": [["M", "S"]], + "nonmetal's": null, + "nonmetals": null, + "nonmigratory": null, + "nonmilitant": [["S"]], + "nonmilitants": null, + "nonmilitary": null, + "Nonnah": [["M"]], + "Nonnah's": null, + "Nonna": [["M"]], + "Nonna's": null, + "nonnarcotic": [["S"]], + "nonnarcotics": null, + "nonnative": [["S"]], + "nonnatives": null, + "nonnegative": null, + "nonnegotiable": null, + "nonnuclear": null, + "nonnumerical": [["S"]], + "nonnumericals": null, + "nonobjective": null, + "nonobligatory": null, + "nonobservance": [["M", "S"]], + "nonobservance's": null, + "nonobservances": null, + "nonobservant": null, + "nonoccupational": null, + "nonoccurence": null, + "nonofficial": null, + "nonogenarian": null, + "nonoperational": null, + "nonoperative": null, + "nonorthogonal": null, + "nonorthogonality": null, + "nonparallel": [["S"]], + "nonparallels": null, + "nonparametric": null, + "nonpareil": [["S", "M"]], + "nonpareils": null, + "nonpareil's": null, + "nonparticipant": [["S", "M"]], + "nonparticipants": null, + "nonparticipant's": null, + "nonparticipating": null, + "nonpartisan": [["S"]], + "nonpartisans": null, + "nonpaying": null, + "nonpayment": [["S", "M"]], + "nonpayments": null, + "nonpayment's": null, + "nonperformance": [["S", "M"]], + "nonperformances": null, + "nonperformance's": null, + "nonperforming": null, + "nonperishable": [["S"]], + "nonperishables": null, + "nonperson": [["S"]], + "nonpersons": null, + "nonperturbing": null, + "nonphysical": [["Y"]], + "nonphysically": null, + "nonplus": [["S"]], + "nonpluses": null, + "nonplussed": null, + "nonplussing": null, + "nonpoisonous": null, + "nonpolitical": null, + "nonpolluting": null, + "nonporous": null, + "nonpracticing": null, + "nonprejudicial": null, + "nonprescription": null, + "nonprocedural": [["Y"]], + "nonprocedurally": null, + "nonproductive": null, + "nonprofessional": [["S"]], + "nonprofessionals": null, + "nonprofit": [["S", "B"]], + "nonprofits": null, + "nonprofitable": null, + "nonprogrammable": null, + "nonprogrammer": null, + "nonproliferation": [["S", "M"]], + "nonproliferations": null, + "nonproliferation's": null, + "nonpublic": null, + "nonpunishable": null, + "nonracial": null, + "nonradioactive": null, + "nonrandom": null, + "nonreactive": null, + "nonreciprocal": [["S"]], + "nonreciprocals": null, + "nonreciprocating": null, + "nonrecognition": [["S", "M"]], + "nonrecognitions": null, + "nonrecognition's": null, + "nonrecoverable": null, + "nonrecurring": null, + "nonredeemable": null, + "nonreducing": null, + "nonrefillable": null, + "nonrefundable": null, + "nonreligious": null, + "nonrenewable": null, + "nonrepresentational": null, + "nonresidential": null, + "nonresident": [["S", "M"]], + "nonresidents": null, + "nonresident's": null, + "nonresidual": null, + "nonresistance": [["S", "M"]], + "nonresistances": null, + "nonresistance's": null, + "nonresistant": [["S"]], + "nonresistants": null, + "nonrespondent": [["S"]], + "nonrespondents": null, + "nonresponse": null, + "nonrestrictive": null, + "nonreturnable": [["S"]], + "nonreturnables": null, + "nonrhythmic": null, + "nonrigid": null, + "nonsalaried": null, + "nonscheduled": null, + "nonscientific": null, + "nonscoring": null, + "nonseasonal": null, + "nonsectarian": null, + "nonsecular": null, + "nonsegregated": null, + "nonsense": [["M", "S"]], + "nonsense's": null, + "nonsenses": null, + "nonsensicalness": [["M"]], + "nonsensicalness's": null, + "nonsensical": [["P", "Y"]], + "nonsensically": null, + "nonsensitive": null, + "nonsexist": null, + "nonsexual": null, + "nonsingular": null, + "nonskid": null, + "nonslip": null, + "nonsmoker": [["S", "M"]], + "nonsmokers": null, + "nonsmoker's": null, + "nonsmoking": null, + "nonsocial": null, + "nonspeaking": null, + "nonspecialist": [["M", "S"]], + "nonspecialist's": null, + "nonspecialists": null, + "nonspecializing": null, + "nonspecific": null, + "nonspiritual": [["S"]], + "nonspirituals": null, + "nonstaining": null, + "nonstandard": null, + "nonstarter": [["S", "M"]], + "nonstarters": null, + "nonstarter's": null, + "nonstick": null, + "nonstop": null, + "nonstrategic": null, + "nonstriking": null, + "nonstructural": null, + "nonsuccessive": null, + "nonsupervisory": null, + "nonsupport": [["G", "S"]], + "nonsupporting": null, + "nonsupports": null, + "nonsurgical": null, + "nonsustaining": null, + "nonsympathizer": [["M"]], + "nonsympathizer's": null, + "nontarnishable": null, + "nontaxable": [["S"]], + "nontaxables": null, + "nontechnical": [["Y"]], + "nontechnically": null, + "nontenured": null, + "nonterminal": [["M", "S"]], + "nonterminal's": null, + "nonterminals": null, + "nonterminating": null, + "nontermination": [["M"]], + "nontermination's": null, + "nontheatrical": null, + "nonthinking": [["S"]], + "nonthinkings": null, + "nonthreatening": null, + "nontoxic": null, + "nontraditional": null, + "nontransferable": null, + "nontransparent": null, + "nontrivial": null, + "nontropical": null, + "nonuniform": null, + "nonunion": [["S"]], + "nonunions": null, + "nonuser": [["S", "M"]], + "nonusers": null, + "nonuser's": null, + "nonvenomous": null, + "nonverbal": [["Y"]], + "nonverbally": null, + "nonveteran": [["M", "S"]], + "nonveteran's": null, + "nonveterans": null, + "nonviable": null, + "nonviolence": [["S", "M"]], + "nonviolences": null, + "nonviolence's": null, + "nonviolent": [["Y"]], + "nonviolently": null, + "nonvirulent": null, + "nonvocal": null, + "nonvocational": null, + "nonvolatile": null, + "nonvolunteer": [["S"]], + "nonvolunteers": null, + "nonvoter": [["M", "S"]], + "nonvoter's": null, + "nonvoters": null, + "nonvoting": null, + "nonwhite": [["S", "M"]], + "nonwhites": null, + "nonwhite's": null, + "nonworking": null, + "nonyielding": null, + "nonzero": null, + "noodle": [["G", "M", "S", "D"]], + "noodling": null, + "noodle's": null, + "noodles": null, + "noodled": null, + "nook": [["M", "S"]], + "nook's": null, + "nooks": null, + "noonday": [["M", "S"]], + "noonday's": null, + "noondays": null, + "noon": [["G", "D", "M", "S"]], + "nooning": [["M"]], + "nooned": null, + "noon's": null, + "noons": null, + "nooning's": null, + "noontide": [["M", "S"]], + "noontide's": null, + "noontides": null, + "noontime": [["M", "S"]], + "noontime's": null, + "noontimes": null, + "noose": [["S", "D", "G", "M"]], + "nooses": null, + "noosed": null, + "noosing": null, + "noose's": null, + "nope": [["S"]], + "nopes": null, + "NORAD": [["M"]], + "NORAD's": null, + "noradrenalin": null, + "noradrenaline": [["M"]], + "noradrenaline's": null, + "Norah": [["M"]], + "Norah's": null, + "Nora": [["M"]], + "Nora's": null, + "Norbert": [["M"]], + "Norbert's": null, + "Norberto": [["M"]], + "Norberto's": null, + "Norbie": [["M"]], + "Norbie's": null, + "Norby": [["M"]], + "Norby's": null, + "Nordhoff": [["M"]], + "Nordhoff's": null, + "Nordic": [["S"]], + "Nordics": null, + "Nordstrom": [["M"]], + "Nordstrom's": null, + "Norean": [["M"]], + "Norean's": null, + "Noreen": [["M"]], + "Noreen's": null, + "Norene": [["M"]], + "Norene's": null, + "Norfolk": [["M"]], + "Norfolk's": null, + "nor": [["H"]], + "north": [["M", "R", "G", "Z"]], + "Norina": [["M"]], + "Norina's": null, + "Norine": [["M"]], + "Norine's": null, + "normalcy": [["M", "S"]], + "normalcy's": null, + "normalcies": null, + "normality": [["S", "M"]], + "normalities": null, + "normality's": null, + "normalization": [["A"]], + "renormalization": null, + "normalizations": null, + "normalization's": null, + "normalized": [["A", "U"]], + "renormalized": null, + "unnormalized": null, + "normalizes": [["A", "U"]], + "renormalizes": null, + "unnormalizes": null, + "normalize": [["S", "R", "D", "Z", "G", "B"]], + "normalizer": null, + "normalizers": null, + "normalizing": null, + "normalizable": null, + "normal": [["S", "Y"]], + "normals": null, + "normally": null, + "Norma": [["M"]], + "Norma's": null, + "Normand": [["M"]], + "Normand's": null, + "Normandy": [["M"]], + "Normandy's": null, + "Norman": [["S", "M"]], + "Normans": null, + "Norman's": null, + "normativeness": [["M"]], + "normativeness's": null, + "normative": [["Y", "P"]], + "normatively": null, + "Normie": [["M"]], + "Normie's": null, + "norm": [["S", "M", "G", "D"]], + "norms": null, + "norm's": null, + "norming": null, + "normed": null, + "Normy": [["M"]], + "Normy's": null, + "Norplant": null, + "Norrie": [["M"]], + "Norrie's": null, + "Norri": [["S", "M"]], + "Norris": null, + "Norri's": null, + "Norristown": [["M"]], + "Norristown's": null, + "Norry": [["M"]], + "Norry's": null, + "Norse": null, + "Norseman": [["M"]], + "Norseman's": null, + "Norsemen": null, + "Northampton": [["M"]], + "Northampton's": null, + "northbound": null, + "northeastern": null, + "northeaster": [["Y", "M"]], + "northeasterly": null, + "northeaster's": null, + "Northeast": [["S", "M"]], + "Northeasts": null, + "Northeast's": null, + "northeastward": [["S"]], + "northeastwards": null, + "northeast": [["Z", "S", "M", "R"]], + "northeasters": null, + "northeasts": null, + "northeast's": null, + "northerly": [["S"]], + "northerlies": null, + "norther": [["M", "Y"]], + "norther's": null, + "Northerner": [["M"]], + "Northerner's": null, + "northernmost": null, + "northern": [["R", "Y", "Z", "S"]], + "northerner": null, + "northernly": null, + "northerners": null, + "northerns": null, + "Northfield": [["M"]], + "Northfield's": null, + "northing": [["M"]], + "northing's": null, + "northland": null, + "North": [["M"]], + "North's": null, + "northmen": null, + "north's": null, + "northers": null, + "Northrop": [["M"]], + "Northrop's": null, + "Northrup": [["M"]], + "Northrup's": null, + "norths": null, + "Norths": null, + "Northumberland": [["M"]], + "Northumberland's": null, + "northward": [["S"]], + "northwards": null, + "northwestern": null, + "northwester": [["Y", "M"]], + "northwesterly": null, + "northwester's": null, + "northwest": [["M", "R", "Z", "S"]], + "northwest's": null, + "northwesters": null, + "northwests": null, + "Northwest": [["M", "S"]], + "Northwest's": null, + "Northwests": null, + "northwestward": [["S"]], + "northwestwards": null, + "Norton": [["M"]], + "Norton's": null, + "Norwalk": [["M"]], + "Norwalk's": null, + "Norway": [["M"]], + "Norway's": null, + "Norwegian": [["S"]], + "Norwegians": null, + "Norwich": [["M"]], + "Norwich's": null, + "Norw": [["M"]], + "Norw's": null, + "nosebag": [["M"]], + "nosebag's": null, + "nosebleed": [["S", "M"]], + "nosebleeds": null, + "nosebleed's": null, + "nosecone": [["S"]], + "nosecones": null, + "nosedive": [["D", "S", "G"]], + "nosedived": null, + "nosedives": null, + "nosediving": null, + "nosed": [["V"]], + "nosegay": [["M", "S"]], + "nosegay's": null, + "nosegays": null, + "nose": [["M"]], + "nose's": null, + "Nosferatu": [["M"]], + "Nosferatu's": null, + "nos": [["G", "D", "S"]], + "nosing": [["M"]], + "noses": null, + "nosh": [["M", "S", "D", "G"]], + "nosh's": null, + "noshes": null, + "noshed": null, + "noshing": null, + "nosily": null, + "nosiness": [["M", "S"]], + "nosiness's": null, + "nosinesses": null, + "nosing's": null, + "nostalgia": [["S", "M"]], + "nostalgias": null, + "nostalgia's": null, + "nostalgically": null, + "nostalgic": [["S"]], + "nostalgics": null, + "Nostradamus": [["M"]], + "Nostradamus's": null, + "Nostrand": [["M"]], + "Nostrand's": null, + "nostril": [["S", "M"]], + "nostrils": null, + "nostril's": null, + "nostrum": [["S", "M"]], + "nostrums": null, + "nostrum's": null, + "nosy": [["S", "R", "P", "M", "T"]], + "nosies": null, + "nosier": null, + "nosy's": null, + "nosiest": null, + "notability": [["S", "M"]], + "notabilities": null, + "notability's": null, + "notableness": [["M"]], + "notableness's": null, + "notable": [["P", "S"]], + "notables": null, + "notably": null, + "notarial": null, + "notarization": [["S"]], + "notarizations": null, + "notarize": [["D", "S", "G"]], + "notarized": null, + "notarizes": null, + "notarizing": null, + "notary": [["M", "S"]], + "notary's": null, + "notaries": null, + "notate": [["V", "G", "N", "X", "S", "D"]], + "notative": [["C", "F"]], + "notating": null, + "notation": [["C", "M", "S", "F"]], + "notations": null, + "notates": null, + "notated": null, + "notational": [["C", "Y"]], + "denotational": null, + "denotationally": null, + "notationally": null, + "denotation": null, + "denotation's": null, + "denotations": null, + "notation's": null, + "connotation's": null, + "connotations": null, + "connotation": null, + "denotative": null, + "notch": [["M", "S", "D", "G"]], + "notch's": null, + "notches": null, + "notched": null, + "notching": null, + "not": [["D", "R", "G", "B"]], + "noted": [["Y", "P"]], + "noter": null, + "noting": null, + "notebook": [["M", "S"]], + "notebook's": null, + "notebooks": null, + "note": [["C", "S", "D", "F", "G"]], + "denotes": null, + "denoted": null, + "denoting": null, + "notes": null, + "connotes": null, + "connoted": null, + "connote": null, + "connoting": null, + "notedness": [["M"]], + "notedness's": null, + "notedly": null, + "notepad": [["S"]], + "notepads": null, + "notepaper": [["M", "S"]], + "notepaper's": null, + "notepapers": null, + "note's": null, + "noteworthiness": [["S", "M"]], + "noteworthinesses": null, + "noteworthiness's": null, + "noteworthy": [["P"]], + "nothingness": [["S", "M"]], + "nothingnesses": null, + "nothingness's": null, + "nothing": [["P", "S"]], + "nothings": null, + "noticeable": [["U"]], + "unnoticeable": null, + "noticeably": null, + "noticeboard": [["S"]], + "noticeboards": null, + "noticed": [["U"]], + "unnoticed": null, + "notice": [["M", "S", "D", "G"]], + "notice's": null, + "notices": null, + "noticing": null, + "notifiable": null, + "notification": [["M"]], + "notification's": null, + "notifier": [["M"]], + "notifier's": null, + "notify": [["N", "G", "X", "S", "R", "D", "Z"]], + "notifying": null, + "notifications": null, + "notifies": null, + "notified": null, + "notifiers": null, + "notional": [["Y"]], + "notionally": null, + "notion": [["M", "S"]], + "notion's": null, + "notions": null, + "notoriety": [["S"]], + "notorieties": null, + "notoriousness": [["M"]], + "notoriousness's": null, + "notorious": [["Y", "P"]], + "notoriously": null, + "Notre": [["M"]], + "Notre's": null, + "Nottingham": [["M"]], + "Nottingham's": null, + "notwithstanding": null, + "Nouakchott": [["M"]], + "Nouakchott's": null, + "nougat": [["M", "S"]], + "nougat's": null, + "nougats": null, + "Noumea": [["M"]], + "Noumea's": null, + "noun": [["S", "M", "K"]], + "nouns": null, + "pronouns": null, + "noun's": null, + "pronoun's": null, + "pronoun": null, + "nourish": [["D", "R", "S", "G", "L"]], + "nourished": [["U"]], + "nourisher": [["M"]], + "nourishes": null, + "nourishing": null, + "nourishment": [["S", "M"]], + "unnourished": null, + "nourisher's": null, + "nourishments": null, + "nourishment's": null, + "nous": [["M"]], + "nous's": null, + "nouveau": null, + "nouvelle": null, + "novae": null, + "Novak": [["M"]], + "Novak's": null, + "Nova": [["M"]], + "Nova's": null, + "nova": [["M", "S"]], + "nova's": null, + "novas": null, + "novelette": [["S", "M"]], + "novelettes": null, + "novelette's": null, + "Novelia": [["M"]], + "Novelia's": null, + "novelist": [["S", "M"]], + "novelists": null, + "novelist's": null, + "novelization": [["S"]], + "novelizations": null, + "novelize": [["G", "D", "S"]], + "novelizing": null, + "novelized": null, + "novelizes": null, + "Novell": [["S", "M"]], + "Novells": null, + "Novell's": null, + "novella": [["S", "M"]], + "novellas": null, + "novella's": null, + "novel": [["S", "M"]], + "novels": null, + "novel's": null, + "novelty": [["M", "S"]], + "novelty's": null, + "novelties": null, + "November": [["S", "M"]], + "Novembers": null, + "November's": null, + "novena": [["S", "M"]], + "novenas": null, + "novena's": null, + "novene": null, + "Novgorod": [["M"]], + "Novgorod's": null, + "novice": [["M", "S"]], + "novice's": null, + "novices": null, + "novitiate": [["M", "S"]], + "novitiate's": null, + "novitiates": null, + "Nov": [["M"]], + "Nov's": null, + "Novocaine": [["M"]], + "Novocaine's": null, + "Novocain": [["S"]], + "Novocains": null, + "Novokuznetsk": [["M"]], + "Novokuznetsk's": null, + "Novosibirsk": [["M"]], + "Novosibirsk's": null, + "NOW": null, + "nowadays": null, + "noway": [["S"]], + "noways": null, + "Nowell": [["M"]], + "Nowell's": null, + "nowhere": [["S"]], + "nowheres": null, + "nowise": null, + "now": [["S"]], + "nows": null, + "noxiousness": [["M"]], + "noxiousness's": null, + "noxious": [["P", "Y"]], + "noxiously": null, + "Noyce": [["M"]], + "Noyce's": null, + "Noyes": [["M"]], + "Noyes's": null, + "nozzle": [["M", "S"]], + "nozzle's": null, + "nozzles": null, + "Np": null, + "NP": null, + "NRA": null, + "nroff": [["M"]], + "nroff's": null, + "N's": null, + "NS": null, + "n's": [["C", "I"]], + "den's": null, + "inn's": null, + "NSF": null, + "n": [["T"]], + "NT": null, + "nth": null, + "nuance": [["S", "D", "M"]], + "nuances": null, + "nuanced": null, + "nuance's": null, + "nubbin": [["S", "M"]], + "nubbins": null, + "nubbin's": null, + "nubby": [["R", "T"]], + "nubbier": null, + "nubbiest": null, + "Nubia": [["M"]], + "Nubia's": null, + "Nubian": [["M"]], + "Nubian's": null, + "nubile": null, + "nub": [["M", "S"]], + "nub's": null, + "nubs": null, + "nuclear": [["K"]], + "pronuclear": null, + "nuclease": [["M"]], + "nuclease's": null, + "nucleated": [["A"]], + "renucleated": null, + "nucleate": [["D", "S", "X", "N", "G"]], + "nucleates": null, + "nucleations": null, + "nucleation": [["M"]], + "nucleating": null, + "nucleation's": null, + "nucleic": null, + "nuclei": [["M"]], + "nuclei's": null, + "nucleoli": null, + "nucleolus": [["M"]], + "nucleolus's": null, + "nucleon": [["M", "S"]], + "nucleon's": null, + "nucleons": null, + "nucleotide": [["M", "S"]], + "nucleotide's": null, + "nucleotides": null, + "nucleus": [["M"]], + "nucleus's": null, + "nuclide": [["M"]], + "nuclide's": null, + "nude": [["C", "R", "S"]], + "denudes": null, + "nuder": null, + "nudes": null, + "nudely": null, + "nudeness": [["M"]], + "nudeness's": null, + "nudest": null, + "nudge": [["G", "S", "R", "D"]], + "nudging": null, + "nudges": null, + "nudger": [["M"]], + "nudged": null, + "nudger's": null, + "nudism": [["M", "S"]], + "nudism's": null, + "nudisms": null, + "nudist": [["M", "S"]], + "nudist's": null, + "nudists": null, + "nudity": [["M", "S"]], + "nudity's": null, + "nudities": null, + "nugatory": null, + "Nugent": [["M"]], + "Nugent's": null, + "nugget": [["S", "M"]], + "nuggets": null, + "nugget's": null, + "nuisance": [["M", "S"]], + "nuisance's": null, + "nuisances": null, + "nuke": [["D", "S", "M", "G"]], + "nuked": null, + "nukes": null, + "nuke's": null, + "nuking": null, + "Nukualofa": null, + "null": [["D", "S", "G"]], + "nulled": null, + "nulls": null, + "nulling": null, + "nullification": [["M"]], + "nullification's": null, + "nullifier": [["M"]], + "nullifier's": null, + "nullify": [["R", "S", "D", "X", "G", "N", "Z"]], + "nullifies": null, + "nullified": null, + "nullifications": null, + "nullifying": null, + "nullifiers": null, + "nullity": [["S", "M"]], + "nullities": null, + "nullity's": null, + "nu": [["M"]], + "nu's": null, + "numbered": [["U", "A"]], + "unnumbered": null, + "renumbered": null, + "numberer": [["M"]], + "numberer's": null, + "numberless": null, + "numberplate": [["M"]], + "numberplate's": null, + "number": [["R", "D", "M", "G", "J"]], + "number's": null, + "numbering": null, + "numberings": null, + "numbers": [["A"]], + "renumbers": null, + "Numbers": [["M"]], + "Numbers's": null, + "numbing": [["Y"]], + "numbingly": null, + "numbness": [["M", "S"]], + "numbness's": null, + "numbnesses": null, + "numb": [["S", "G", "Z", "T", "Y", "R", "D", "P"]], + "numbs": null, + "numbest": null, + "numbly": null, + "numbed": null, + "numbskull's": null, + "numerable": [["I", "C"]], + "denumerable": null, + "numeracy": [["S", "I"]], + "numeracies": null, + "innumeracies": null, + "innumeracy": null, + "numeral": [["Y", "M", "S"]], + "numerally": null, + "numeral's": null, + "numerals": null, + "numerate": [["S", "D", "N", "G", "X"]], + "numerates": [["I"]], + "numerated": null, + "numeration": [["M"]], + "numerating": null, + "numerations": null, + "innumerates": null, + "numeration's": null, + "numerator": [["M", "S"]], + "numerator's": null, + "numerators": null, + "numerical": [["Y"]], + "numerically": null, + "numeric": [["S"]], + "numerics": null, + "numerological": null, + "numerologist": [["S"]], + "numerologists": null, + "numerology": [["M", "S"]], + "numerology's": null, + "numerologies": null, + "numerousness": [["M"]], + "numerousness's": null, + "numerous": [["Y", "P"]], + "numerously": null, + "numinous": [["S"]], + "numinouses": null, + "numismatic": [["S"]], + "numismatics": [["M"]], + "numismatics's": null, + "numismatist": [["M", "S"]], + "numismatist's": null, + "numismatists": null, + "numskull": [["S", "M"]], + "numskulls": null, + "numskull's": null, + "Nunavut": [["M"]], + "Nunavut's": null, + "nuncio": [["S", "M"]], + "nuncios": null, + "nuncio's": null, + "Nunez": [["M"]], + "Nunez's": null, + "Nunki": [["M"]], + "Nunki's": null, + "nun": [["M", "S"]], + "nun's": null, + "nuns": null, + "nunnery": [["M", "S"]], + "nunnery's": null, + "nunneries": null, + "nuptial": [["S"]], + "nuptials": null, + "Nuremberg": [["M"]], + "Nuremberg's": null, + "Nureyev": [["M"]], + "Nureyev's": null, + "nursemaid": [["M", "S"]], + "nursemaid's": null, + "nursemaids": null, + "nurser": [["M"]], + "nurser's": null, + "nurseryman": [["M"]], + "nurseryman's": null, + "nurserymen": null, + "nursery": [["M", "S"]], + "nursery's": null, + "nurseries": null, + "nurse": [["S", "R", "D", "J", "G", "M", "Z"]], + "nurses": null, + "nursed": null, + "nursings": null, + "nursing": null, + "nurse's": null, + "nursers": null, + "nursling": [["M"]], + "nursling's": null, + "nurturer": [["M"]], + "nurturer's": null, + "nurture": [["S", "R", "D", "G", "Z", "M"]], + "nurtures": null, + "nurtured": null, + "nurturing": null, + "nurturers": null, + "nurture's": null, + "nus": null, + "nutate": [["N", "G", "S", "D"]], + "nutation": [["M"]], + "nutating": null, + "nutates": null, + "nutated": null, + "nutation's": null, + "nutcracker": [["M"]], + "nutcracker's": null, + "nutcrack": [["R", "Z"]], + "nutcrackers": null, + "nuthatch": [["S", "M"]], + "nuthatches": null, + "nuthatch's": null, + "nutmeat": [["S", "M"]], + "nutmeats": null, + "nutmeat's": null, + "nutmegged": null, + "nutmegging": null, + "nutmeg": [["M", "S"]], + "nutmeg's": null, + "nutmegs": null, + "nut": [["M", "S"]], + "nut's": null, + "nuts": null, + "nutpick": [["M", "S"]], + "nutpick's": null, + "nutpicks": null, + "Nutrasweet": [["M"]], + "Nutrasweet's": null, + "nutria": [["S", "M"]], + "nutrias": null, + "nutria's": null, + "nutrient": [["M", "S"]], + "nutrient's": null, + "nutrients": null, + "nutriment": [["M", "S"]], + "nutriment's": null, + "nutriments": null, + "nutritional": [["Y"]], + "nutritionally": null, + "nutritionist": [["M", "S"]], + "nutritionist's": null, + "nutritionists": null, + "nutrition": [["S", "M"]], + "nutritions": null, + "nutrition's": null, + "nutritiousness": [["M", "S"]], + "nutritiousness's": null, + "nutritiousnesses": null, + "nutritious": [["P", "Y"]], + "nutritiously": null, + "nutritive": [["Y"]], + "nutritively": null, + "nutshell": [["M", "S"]], + "nutshell's": null, + "nutshells": null, + "nutted": null, + "nuttiness": [["S", "M"]], + "nuttinesses": null, + "nuttiness's": null, + "nutting": null, + "nutty": [["T", "R", "P"]], + "nuttiest": null, + "nuttier": null, + "nuzzle": [["G", "Z", "R", "S", "D"]], + "nuzzling": null, + "nuzzlers": null, + "nuzzler": null, + "nuzzles": null, + "nuzzled": null, + "NV": null, + "NW": null, + "NWT": null, + "NY": null, + "Nyasa": [["M"]], + "Nyasa's": null, + "NYC": null, + "Nydia": [["M"]], + "Nydia's": null, + "Nye": [["M"]], + "Nye's": null, + "Nyerere": [["M"]], + "Nyerere's": null, + "nylon": [["S", "M"]], + "nylons": null, + "nylon's": null, + "nymphet": [["M", "S"]], + "nymphet's": null, + "nymphets": null, + "nymph": [["M"]], + "nymph's": null, + "nympholepsy": [["M"]], + "nympholepsy's": null, + "nymphomaniac": [["S"]], + "nymphomaniacs": null, + "nymphomania": [["M", "S"]], + "nymphomania's": null, + "nymphomanias": null, + "nymphs": null, + "Nyquist": [["M"]], + "Nyquist's": null, + "NYSE": null, + "Nyssa": [["M"]], + "Nyssa's": null, + "NZ": null, + "o": null, + "O": null, + "oafishness": [["S"]], + "oafishnesses": null, + "oafish": [["P", "Y"]], + "oafishly": null, + "oaf": [["M", "S"]], + "oaf's": null, + "oafs": null, + "Oahu": [["M"]], + "Oahu's": null, + "Oakland": [["M"]], + "Oakland's": null, + "Oakley": [["M"]], + "Oakley's": null, + "Oakmont": [["M"]], + "Oakmont's": null, + "oak": [["S", "M", "N"]], + "oaks": null, + "oak's": null, + "oaken": null, + "oakum": [["M", "S"]], + "oakum's": null, + "oakums": null, + "oakwood": null, + "oar": [["G", "S", "M", "D"]], + "oaring": null, + "oars": null, + "oar's": null, + "oared": null, + "oarlock": [["M", "S"]], + "oarlock's": null, + "oarlocks": null, + "oarsman": [["M"]], + "oarsman's": null, + "oarsmen": null, + "oarswoman": null, + "oarswomen": null, + "OAS": null, + "oases": null, + "oasis": [["M"]], + "oasis's": null, + "oatcake": [["M", "S"]], + "oatcake's": null, + "oatcakes": null, + "oater": [["M"]], + "oater's": null, + "Oates": [["M"]], + "Oates's": null, + "oath": [["M"]], + "oath's": null, + "oaths": null, + "oatmeal": [["S", "M"]], + "oatmeals": null, + "oatmeal's": null, + "oat": [["S", "M", "N", "R"]], + "oats": null, + "oat's": null, + "oaten": null, + "Oaxaca": [["M"]], + "Oaxaca's": null, + "ob": null, + "OB": null, + "Obadiah": [["M"]], + "Obadiah's": null, + "Obadias": [["M"]], + "Obadias's": null, + "obbligato": [["S"]], + "obbligatos": null, + "obduracy": [["S"]], + "obduracies": null, + "obdurateness": [["S"]], + "obduratenesses": null, + "obdurate": [["P", "D", "S", "Y", "G"]], + "obdurated": null, + "obdurates": null, + "obdurately": null, + "obdurating": null, + "Obediah": [["M"]], + "Obediah's": null, + "obedience": [["E", "M", "S"]], + "disobedience": null, + "disobedience's": null, + "disobediences": null, + "obedience's": null, + "obediences": null, + "obedient": [["E", "Y"]], + "disobedient": null, + "disobediently": null, + "obediently": null, + "Obed": [["M"]], + "Obed's": null, + "obeisance": [["M", "S"]], + "obeisance's": null, + "obeisances": null, + "obeisant": [["Y"]], + "obeisantly": null, + "obelisk": [["S", "M"]], + "obelisks": null, + "obelisk's": null, + "Oberlin": [["M"]], + "Oberlin's": null, + "Oberon": [["M"]], + "Oberon's": null, + "obese": null, + "obesity": [["M", "S"]], + "obesity's": null, + "obesities": null, + "obey": [["E", "D", "R", "G", "S"]], + "disobey": null, + "disobeyed": null, + "disobeyer": null, + "disobeying": null, + "disobeys": null, + "obeyed": null, + "obeyer": [["E", "M"]], + "obeying": null, + "obeys": null, + "disobeyer's": null, + "obeyer's": null, + "obfuscate": [["S", "R", "D", "X", "G", "N"]], + "obfuscates": null, + "obfuscater": null, + "obfuscated": null, + "obfuscations": null, + "obfuscating": null, + "obfuscation": [["M"]], + "obfuscation's": null, + "obfuscatory": null, + "Obidiah": [["M"]], + "Obidiah's": null, + "Obie": [["M"]], + "Obie's": null, + "obi": [["M", "D", "G", "S"]], + "obi's": null, + "obied": null, + "obiing": null, + "obis": null, + "obit": [["S", "M", "R"]], + "obits": null, + "obit's": null, + "obiter": null, + "obituary": [["S", "M"]], + "obituaries": null, + "obituary's": null, + "obj": null, + "objectify": [["G", "S", "D", "X", "N"]], + "objectifying": null, + "objectifies": null, + "objectified": null, + "objectifications": null, + "objectification": null, + "objectionableness": [["M"]], + "objectionableness's": null, + "objectionable": [["U"]], + "unobjectionable": null, + "objectionably": null, + "objection": [["S", "M", "B"]], + "objections": null, + "objection's": null, + "objectiveness": [["M", "S"]], + "objectiveness's": null, + "objectivenesses": null, + "objective": [["P", "Y", "S"]], + "objectively": null, + "objectives": null, + "objectivity": [["M", "S"]], + "objectivity's": null, + "objectivities": null, + "objector": [["S", "M"]], + "objectors": null, + "objector's": null, + "object": [["S", "G", "V", "M", "D"]], + "objects": null, + "objecting": null, + "object's": null, + "objected": null, + "objurgate": [["G", "N", "S", "D", "X"]], + "objurgating": null, + "objurgation": [["M"]], + "objurgates": null, + "objurgated": null, + "objurgations": null, + "objurgation's": null, + "oblate": [["N", "Y", "P", "S", "X"]], + "oblation": [["M"]], + "oblately": null, + "oblateness": null, + "oblates": null, + "oblations": null, + "oblation's": null, + "obligate": [["N", "G", "S", "D", "X", "Y"]], + "obligation": [["M"]], + "obligating": null, + "obligates": null, + "obligated": null, + "obligations": null, + "obligately": null, + "obligational": null, + "obligation's": null, + "obligatorily": null, + "obligatory": null, + "obliged": [["E"]], + "disobliged": null, + "obliger": [["M"]], + "obliger's": null, + "obliges": [["E"]], + "disobliges": null, + "oblige": [["S", "R", "D", "G"]], + "obliging": [["P", "Y"]], + "obligingness": [["M"]], + "obligingness's": null, + "obligingly": null, + "oblique": [["D", "S", "Y", "G", "P"]], + "obliqued": null, + "obliques": null, + "obliquely": null, + "obliquing": null, + "obliqueness": [["S"]], + "obliquenesses": null, + "obliquity": [["M", "S"]], + "obliquity's": null, + "obliquities": null, + "obliterate": [["V", "N", "G", "S", "D", "X"]], + "obliterative": [["Y"]], + "obliteration": [["M"]], + "obliterating": null, + "obliterates": null, + "obliterated": null, + "obliterations": null, + "obliteration's": null, + "obliteratively": null, + "oblivion": [["M", "S"]], + "oblivion's": null, + "oblivions": null, + "obliviousness": [["M", "S"]], + "obliviousness's": null, + "obliviousnesses": null, + "oblivious": [["Y", "P"]], + "obliviously": null, + "oblongness": [["M"]], + "oblongness's": null, + "oblong": [["S", "Y", "P"]], + "oblongs": null, + "oblongly": null, + "obloquies": null, + "obloquy": [["M"]], + "obloquy's": null, + "Ob": [["M", "D"]], + "Ob's": null, + "obnoxiousness": [["M", "S"]], + "obnoxiousness's": null, + "obnoxiousnesses": null, + "obnoxious": [["Y", "P"]], + "obnoxiously": null, + "oboe": [["S", "M"]], + "oboes": null, + "oboe's": null, + "oboist": [["S"]], + "oboists": null, + "obos": null, + "O'Brien": [["M"]], + "O'Brien's": null, + "obs": null, + "obscene": [["R", "Y", "T"]], + "obscener": null, + "obscenely": null, + "obscenest": null, + "obscenity": [["M", "S"]], + "obscenity's": null, + "obscenities": null, + "obscurantism": [["M", "S"]], + "obscurantism's": null, + "obscurantisms": null, + "obscurantist": [["M", "S"]], + "obscurantist's": null, + "obscurantists": null, + "obscuration": null, + "obscureness": [["M"]], + "obscureness's": null, + "obscure": [["Y", "T", "P", "D", "S", "R", "G", "L"]], + "obscurely": null, + "obscurest": null, + "obscured": null, + "obscures": null, + "obscurer": null, + "obscuring": null, + "obscurement": null, + "obscurity": [["M", "S"]], + "obscurity's": null, + "obscurities": null, + "obsequies": null, + "obsequiousness": [["S"]], + "obsequiousnesses": null, + "obsequious": [["Y", "P"]], + "obsequiously": null, + "obsequy": null, + "observability": [["M"]], + "observability's": null, + "observable": [["S", "U"]], + "observables": null, + "unobservables": null, + "unobservable": null, + "observably": null, + "observance": [["M", "S"]], + "observance's": null, + "observances": null, + "observantly": null, + "observants": null, + "observant": [["U"]], + "unobservant": null, + "observational": [["Y"]], + "observationally": null, + "observation": [["M", "S"]], + "observation's": null, + "observations": null, + "observatory": [["M", "S"]], + "observatory's": null, + "observatories": null, + "observed": [["U"]], + "unobserved": null, + "observer": [["M"]], + "observer's": null, + "observe": [["Z", "G", "D", "S", "R", "B"]], + "observers": null, + "observing": [["Y"]], + "observes": null, + "observingly": null, + "obsess": [["G", "V", "D", "S"]], + "obsessing": null, + "obsessive": [["P", "Y", "S"]], + "obsessed": null, + "obsesses": null, + "obsessional": null, + "obsession": [["M", "S"]], + "obsession's": null, + "obsessions": null, + "obsessiveness": [["S"]], + "obsessivenesses": null, + "obsessively": null, + "obsessives": null, + "obsidian": [["S", "M"]], + "obsidians": null, + "obsidian's": null, + "obsolesce": [["G", "S", "D"]], + "obsolescing": null, + "obsolesces": null, + "obsolesced": null, + "obsolescence": [["S"]], + "obsolescences": null, + "obsolescent": [["Y"]], + "obsolescently": null, + "obsolete": [["G", "P", "D", "S", "Y"]], + "obsoleting": null, + "obsoleteness": [["M"]], + "obsoleted": null, + "obsoletes": null, + "obsoletely": null, + "obsoleteness's": null, + "obstacle": [["S", "M"]], + "obstacles": null, + "obstacle's": null, + "obstetrical": null, + "obstetrician": [["S", "M"]], + "obstetricians": null, + "obstetrician's": null, + "obstetric": [["S"]], + "obstetrics": [["M"]], + "obstetrics's": null, + "obstinacy": [["S", "M"]], + "obstinacies": null, + "obstinacy's": null, + "obstinateness": [["M"]], + "obstinateness's": null, + "obstinate": [["P", "Y"]], + "obstinately": null, + "obstreperousness": [["S", "M"]], + "obstreperousnesses": null, + "obstreperousness's": null, + "obstreperous": [["P", "Y"]], + "obstreperously": null, + "obstructed": [["U"]], + "unobstructed": null, + "obstructer": [["M"]], + "obstructer's": null, + "obstructionism": [["S", "M"]], + "obstructionisms": null, + "obstructionism's": null, + "obstructionist": [["M", "S"]], + "obstructionist's": null, + "obstructionists": null, + "obstruction": [["S", "M"]], + "obstructions": null, + "obstruction's": null, + "obstructiveness": [["M", "S"]], + "obstructiveness's": null, + "obstructivenesses": null, + "obstructive": [["P", "S", "Y"]], + "obstructives": null, + "obstructively": null, + "obstruct": [["R", "D", "V", "G", "S"]], + "obstructing": null, + "obstructs": null, + "obtainable": [["U"]], + "unobtainable": null, + "obtainably": null, + "obtain": [["L", "S", "G", "D", "R", "B"]], + "obtainment": [["S"]], + "obtains": null, + "obtaining": null, + "obtained": null, + "obtainer": null, + "obtainments": null, + "obtrude": [["D", "S", "R", "G"]], + "obtruded": null, + "obtrudes": null, + "obtruder": [["M"]], + "obtruding": null, + "obtruder's": null, + "obtrusion": [["S"]], + "obtrusions": null, + "obtrusiveness": [["M", "S", "U"]], + "obtrusiveness's": null, + "unobtrusiveness's": null, + "obtrusivenesses": null, + "unobtrusivenesses": null, + "unobtrusiveness": null, + "obtrusive": [["U", "P", "Y"]], + "unobtrusive": null, + "unobtrusively": null, + "obtrusively": null, + "obtuseness": [["S"]], + "obtusenesses": null, + "obtuse": [["P", "R", "T", "Y"]], + "obtuser": null, + "obtusest": null, + "obtusely": null, + "obverse": [["Y", "S"]], + "obversely": null, + "obverses": null, + "obviate": [["X", "G", "N", "D", "S"]], + "obviations": null, + "obviating": null, + "obviation": null, + "obviated": null, + "obviates": null, + "obviousness": [["S", "M"]], + "obviousnesses": null, + "obviousness's": null, + "obvious": [["Y", "P"]], + "obviously": null, + "Oby": [["M"]], + "Oby's": null, + "ocarina": [["M", "S"]], + "ocarina's": null, + "ocarinas": null, + "O'Casey": null, + "Occam": [["M"]], + "Occam's": null, + "occasional": [["Y"]], + "occasionally": null, + "occasion": [["M", "D", "S", "J", "G"]], + "occasion's": null, + "occasioned": null, + "occasions": null, + "occasionings": null, + "occasioning": null, + "Occidental": [["S"]], + "Occidentals": null, + "occidental": [["S", "Y"]], + "occidentals": null, + "occidentally": null, + "occident": [["M"]], + "occident's": null, + "Occident": [["S", "M"]], + "Occidents": null, + "Occident's": null, + "occipital": [["Y"]], + "occipitally": null, + "occlude": [["G", "S", "D"]], + "occluding": null, + "occludes": null, + "occluded": null, + "occlusion": [["M", "S"]], + "occlusion's": null, + "occlusions": null, + "occlusive": [["S"]], + "occlusives": null, + "occulter": [["M"]], + "occulter's": null, + "occultism": [["S", "M"]], + "occultisms": null, + "occultism's": null, + "occult": [["S", "R", "D", "Y", "G"]], + "occults": null, + "occulted": null, + "occultly": null, + "occulting": null, + "occupancy": [["S", "M"]], + "occupancies": null, + "occupancy's": null, + "occupant": [["M", "S"]], + "occupant's": null, + "occupants": null, + "occupational": [["Y"]], + "occupationally": null, + "occupation": [["S", "A", "M"]], + "occupations": null, + "reoccupations": null, + "reoccupation": null, + "reoccupation's": null, + "occupation's": null, + "occupied": [["A", "U"]], + "reoccupied": null, + "unoccupied": null, + "occupier": [["M"]], + "occupier's": null, + "occupies": [["A"]], + "reoccupies": null, + "occupy": [["R", "S", "D", "Z", "G"]], + "occupiers": null, + "occupying": null, + "occur": [["A", "S"]], + "reoccur": null, + "reoccurs": null, + "occurs": null, + "occurred": [["A"]], + "reoccurred": null, + "occurrence": [["S", "M"]], + "occurrences": null, + "occurrence's": null, + "occurring": [["A"]], + "reoccurring": null, + "oceanfront": [["M", "S"]], + "oceanfront's": null, + "oceanfronts": null, + "oceangoing": null, + "Oceania": [["M"]], + "Oceania's": null, + "oceanic": null, + "ocean": [["M", "S"]], + "ocean's": null, + "oceans": null, + "oceanographer": [["S", "M"]], + "oceanographers": null, + "oceanographer's": null, + "oceanographic": null, + "oceanography": [["S", "M"]], + "oceanographies": null, + "oceanography's": null, + "oceanology": [["M", "S"]], + "oceanology's": null, + "oceanologies": null, + "oceanside": null, + "Oceanside": [["M"]], + "Oceanside's": null, + "Oceanus": [["M"]], + "Oceanus's": null, + "ocelot": [["S", "M"]], + "ocelots": null, + "ocelot's": null, + "ocher": [["D", "M", "G", "S"]], + "ochered": null, + "ocher's": null, + "ochering": null, + "ochers": null, + "Ochoa": [["M"]], + "Ochoa's": null, + "o'clock": null, + "O'Clock": null, + "O'Connell": [["M"]], + "O'Connell's": null, + "O'Connor": [["M"]], + "O'Connor's": null, + "Oconomowoc": [["M"]], + "Oconomowoc's": null, + "OCR": null, + "octagonal": [["Y"]], + "octagonally": null, + "octagon": [["S", "M"]], + "octagons": null, + "octagon's": null, + "octahedral": null, + "octahedron": [["M"]], + "octahedron's": null, + "octal": [["S"]], + "octals": null, + "octane": [["M", "S"]], + "octane's": null, + "octanes": null, + "octant": [["M"]], + "octant's": null, + "octave": [["M", "S"]], + "octave's": null, + "octaves": null, + "Octavia": [["M"]], + "Octavia's": null, + "Octavian": [["M"]], + "Octavian's": null, + "Octavio": [["M"]], + "Octavio's": null, + "Octavius": [["M"]], + "Octavius's": null, + "octavo": [["M", "S"]], + "octavo's": null, + "octavos": null, + "octennial": null, + "octet": [["S", "M"]], + "octets": null, + "octet's": null, + "octile": null, + "octillion": [["M"]], + "octillion's": null, + "Oct": [["M"]], + "Oct's": null, + "October": [["M", "S"]], + "October's": null, + "Octobers": null, + "octogenarian": [["M", "S"]], + "octogenarian's": null, + "octogenarians": null, + "octopus": [["S", "M"]], + "octopuses": null, + "octopus's": null, + "octoroon": [["M"]], + "octoroon's": null, + "ocular": [["S"]], + "oculars": null, + "oculist": [["S", "M"]], + "oculists": null, + "oculist's": null, + "OD": null, + "odalisque": [["S", "M"]], + "odalisques": null, + "odalisque's": null, + "oddball": [["S", "M"]], + "oddballs": null, + "oddball's": null, + "oddity": [["M", "S"]], + "oddity's": null, + "oddities": null, + "oddment": [["M", "S"]], + "oddment's": null, + "oddments": null, + "oddness": [["M", "S"]], + "oddness's": null, + "oddnesses": null, + "odd": [["T", "R", "Y", "S", "P", "L"]], + "oddest": null, + "odder": null, + "oddly": null, + "odds": null, + "Odele": [["M"]], + "Odele's": null, + "Odelia": [["M"]], + "Odelia's": null, + "Odelinda": [["M"]], + "Odelinda's": null, + "Odella": [["M"]], + "Odella's": null, + "Odelle": [["M"]], + "Odelle's": null, + "Odell": [["M"]], + "Odell's": null, + "O'Dell": [["M"]], + "O'Dell's": null, + "ode": [["M", "D", "R", "S"]], + "ode's": null, + "oded": null, + "oder": null, + "odes": null, + "Ode": [["M", "R"]], + "Ode's": null, + "Oder": [["M"]], + "Oderberg": [["M", "S"]], + "Oderberg's": null, + "Oderbergs": null, + "Oder's": null, + "Odessa": [["M"]], + "Odessa's": null, + "Odets": [["M"]], + "Odets's": null, + "Odetta": [["M"]], + "Odetta's": null, + "Odette": [["M"]], + "Odette's": null, + "Odey": [["M"]], + "Odey's": null, + "Odie": [["M"]], + "Odie's": null, + "Odilia": [["M"]], + "Odilia's": null, + "Odille": [["M"]], + "Odille's": null, + "Odin": [["M"]], + "Odin's": null, + "odiousness": [["M", "S"]], + "odiousness's": null, + "odiousnesses": null, + "odious": [["P", "Y"]], + "odiously": null, + "Odis": [["M"]], + "Odis's": null, + "odium": [["M", "S"]], + "odium's": null, + "odiums": null, + "Odo": [["M"]], + "Odo's": null, + "odometer": [["S", "M"]], + "odometers": null, + "odometer's": null, + "Odom": [["M"]], + "Odom's": null, + "O'Donnell": [["M"]], + "O'Donnell's": null, + "odor": [["D", "M", "S"]], + "odored": null, + "odor's": null, + "odors": null, + "odoriferous": null, + "odorless": null, + "odorous": [["Y", "P"]], + "odorously": null, + "odorousness": null, + "ODs": null, + "O'Dwyer": [["M"]], + "O'Dwyer's": null, + "Ody": [["M"]], + "Ody's": null, + "Odysseus": [["M"]], + "Odysseus's": null, + "Odyssey": [["M"]], + "Odyssey's": null, + "odyssey": [["S"]], + "odysseys": null, + "OE": null, + "OED": null, + "oedipal": null, + "Oedipal": [["Y"]], + "Oedipally": null, + "Oedipus": [["M"]], + "Oedipus's": null, + "OEM": [["M"]], + "OEM's": null, + "OEMS": null, + "oenology": [["M", "S"]], + "oenology's": null, + "oenologies": null, + "oenophile": [["S"]], + "oenophiles": null, + "o'er": null, + "O'Er": null, + "Oersted": [["M"]], + "Oersted's": null, + "oesophagi": null, + "oeuvre": [["S", "M"]], + "oeuvres": null, + "oeuvre's": null, + "Ofelia": [["M"]], + "Ofelia's": null, + "Ofella": [["M"]], + "Ofella's": null, + "offal": [["M", "S"]], + "offal's": null, + "offals": null, + "offbeat": [["M", "S"]], + "offbeat's": null, + "offbeats": null, + "offcuts": null, + "Offenbach": [["M"]], + "Offenbach's": null, + "offender": [["M"]], + "offender's": null, + "offend": [["S", "Z", "G", "D", "R"]], + "offends": null, + "offenders": null, + "offending": null, + "offended": null, + "offense": [["M", "S", "V"]], + "offense's": null, + "offenses": null, + "offensive": [["Y", "S", "P"]], + "offensively": [["I"]], + "inoffensively": null, + "offensiveness": [["M", "S", "I"]], + "offensiveness's": null, + "inoffensiveness's": null, + "offensivenesses": null, + "inoffensivenesses": null, + "offensives": null, + "offerer": [["M"]], + "offerer's": null, + "offering": [["M"]], + "offering's": null, + "offer": [["R", "D", "J", "G", "Z"]], + "offered": null, + "offerings": null, + "offerers": null, + "offertory": [["S", "M"]], + "offertories": null, + "offertory's": null, + "offhand": [["D"]], + "offhanded": [["Y", "P"]], + "offhandedness": [["S"]], + "offhandednesses": null, + "offhandedly": null, + "officeholder": [["S", "M"]], + "officeholders": null, + "officeholder's": null, + "officemate": [["S"]], + "officemates": null, + "officer": [["G", "M", "D"]], + "officering": null, + "officer's": null, + "officered": null, + "officership": [["S"]], + "officerships": null, + "office": [["S", "R", "M", "Z"]], + "offices": null, + "office's": null, + "officers": null, + "officialdom": [["S", "M"]], + "officialdoms": null, + "officialdom's": null, + "officialism": [["S", "M"]], + "officialisms": null, + "officialism's": null, + "officially": [["U"]], + "unofficially": null, + "official": [["P", "S", "Y", "M"]], + "officialness": null, + "officials": null, + "official's": null, + "officiant": [["S", "M"]], + "officiants": null, + "officiant's": null, + "officiate": [["X", "S", "D", "N", "G"]], + "officiations": null, + "officiates": null, + "officiated": null, + "officiation": [["M"]], + "officiating": null, + "officiation's": null, + "officiator": [["M", "S"]], + "officiator's": null, + "officiators": null, + "officio": null, + "officiousness": [["M", "S"]], + "officiousness's": null, + "officiousnesses": null, + "officious": [["Y", "P"]], + "officiously": null, + "offing": [["M"]], + "offing's": null, + "offish": null, + "offload": [["G", "D", "S"]], + "offloading": null, + "offloaded": null, + "offloads": null, + "offprint": [["G", "S", "D", "M"]], + "offprinting": null, + "offprints": null, + "offprinted": null, + "offprint's": null, + "offramp": null, + "offset": [["S", "M"]], + "offsets": null, + "offset's": null, + "offsetting": null, + "offshoot": [["M", "S"]], + "offshoot's": null, + "offshoots": null, + "offshore": null, + "offside": [["R", "S"]], + "offsider": null, + "offsides": null, + "offspring": [["M"]], + "offspring's": null, + "offstage": [["S"]], + "offstages": null, + "off": [["S", "Z", "G", "D", "R", "J"]], + "offs": null, + "offers": null, + "offed": null, + "offings": null, + "offtrack": null, + "Ofilia": [["M"]], + "Ofilia's": null, + "of": [["K"]], + "proof": [["S", "E", "A", "M"]], + "often": [["R", "T"]], + "oftener": null, + "oftenest": null, + "oftentimes": null, + "oft": [["N", "R", "T"]], + "ofter": null, + "oftest": null, + "ofttimes": null, + "Ogbomosho": [["M"]], + "Ogbomosho's": null, + "Ogdan": [["M"]], + "Ogdan's": null, + "Ogden": [["M"]], + "Ogden's": null, + "Ogdon": [["M"]], + "Ogdon's": null, + "Ogilvy": [["M"]], + "Ogilvy's": null, + "ogive": [["M"]], + "ogive's": null, + "Oglethorpe": [["M"]], + "Oglethorpe's": null, + "ogle": [["Z", "G", "D", "S", "R"]], + "oglers": null, + "ogling": null, + "ogled": null, + "ogles": null, + "ogler": null, + "ogreish": null, + "ogre": [["M", "S"]], + "ogre's": null, + "ogres": null, + "ogress": [["S"]], + "ogresses": null, + "oh": null, + "OH": null, + "O'Hara": null, + "O'Hare": [["M"]], + "O'Hare's": null, + "O'Higgins": null, + "Ohioan": [["S"]], + "Ohioans": null, + "Ohio": [["M"]], + "Ohio's": null, + "ohmic": null, + "ohmmeter": [["M", "S"]], + "ohmmeter's": null, + "ohmmeters": null, + "ohm": [["S", "M"]], + "ohms": null, + "ohm's": null, + "oho": [["S"]], + "ohos": null, + "ohs": null, + "OHSA": [["M"]], + "OHSA's": null, + "oilcloth": [["M"]], + "oilcloth's": null, + "oilcloths": null, + "oiler": [["M"]], + "oiler's": null, + "oilfield": [["M", "S"]], + "oilfield's": null, + "oilfields": null, + "oiliness": [["S", "M"]], + "oilinesses": null, + "oiliness's": null, + "oilman": [["M"]], + "oilman's": null, + "oil": [["M", "D", "R", "S", "Z", "G"]], + "oil's": null, + "oiled": null, + "oils": null, + "oilers": null, + "oiling": null, + "oilmen": null, + "oilseed": [["S", "M"]], + "oilseeds": null, + "oilseed's": null, + "oilskin": [["M", "S"]], + "oilskin's": null, + "oilskins": null, + "oily": [["T", "P", "R"]], + "oiliest": null, + "oilier": null, + "oink": [["G", "D", "S"]], + "oinking": null, + "oinked": null, + "oinks": null, + "ointment": [["S", "M"]], + "ointments": null, + "ointment's": null, + "Oise": [["M"]], + "Oise's": null, + "OJ": null, + "Ojibwa": [["S", "M"]], + "Ojibwas": null, + "Ojibwa's": null, + "Okamoto": [["M"]], + "Okamoto's": null, + "okapi": [["S", "M"]], + "okapis": null, + "okapi's": null, + "Okayama": [["M"]], + "Okayama's": null, + "okay": [["M"]], + "okay's": null, + "Okeechobee": [["M"]], + "Okeechobee's": null, + "O'Keeffe": null, + "Okefenokee": null, + "Okhotsk": [["M"]], + "Okhotsk's": null, + "Okinawa": [["M"]], + "Okinawa's": null, + "Okinawan": [["S"]], + "Okinawans": null, + "Oklahoma": [["M"]], + "Oklahoma's": null, + "Oklahoman": [["S", "M"]], + "Oklahomans": null, + "Oklahoman's": null, + "Okla": [["M"]], + "Okla's": null, + "OK": [["M", "D", "G"]], + "OK's": null, + "OKed": null, + "OKing": null, + "okra": [["M", "S"]], + "okra's": null, + "okras": null, + "OKs": null, + "Oktoberfest": null, + "Olaf": [["M"]], + "Olaf's": null, + "Olag": [["M"]], + "Olag's": null, + "Ola": [["M"]], + "Ola's": null, + "Olav": [["M"]], + "Olav's": null, + "Oldenburg": [["M"]], + "Oldenburg's": null, + "olden": [["D", "G"]], + "oldened": null, + "oldening": null, + "Oldfield": [["M"]], + "Oldfield's": null, + "oldie": [["M", "S"]], + "oldie's": null, + "oldies": null, + "oldish": null, + "oldness": [["S"]], + "oldnesses": null, + "Oldsmobile": [["M"]], + "Oldsmobile's": null, + "oldster": [["S", "M"]], + "oldsters": null, + "oldster's": null, + "Olduvai": [["M"]], + "Olduvai's": null, + "old": [["X", "T", "N", "R", "P", "S"]], + "oldens": null, + "oldest": null, + "older": null, + "olds": null, + "ol�": null, + "oleaginous": null, + "oleander": [["S", "M"]], + "oleanders": null, + "oleander's": null, + "O'Leary": [["M"]], + "O'Leary's": null, + "olefin": [["M"]], + "olefin's": null, + "Oleg": [["M"]], + "Oleg's": null, + "Ole": [["M", "V"]], + "Ole's": null, + "Olive": [["M", "Z", "R"]], + "Olenek": [["M"]], + "Olenek's": null, + "Olenka": [["M"]], + "Olenka's": null, + "Olen": [["M"]], + "Olen's": null, + "Olenolin": [["M"]], + "Olenolin's": null, + "oleomargarine": [["S", "M"]], + "oleomargarines": null, + "oleomargarine's": null, + "oleo": [["S"]], + "oleos": null, + "oles": null, + "olfactory": null, + "Olga": [["M"]], + "Olga's": null, + "Olia": [["M"]], + "Olia's": null, + "oligarchic": null, + "oligarchical": null, + "oligarch": [["M"]], + "oligarch's": null, + "oligarchs": null, + "oligarchy": [["S", "M"]], + "oligarchies": null, + "oligarchy's": null, + "Oligocene": null, + "oligopolistic": null, + "oligopoly": [["M", "S"]], + "oligopoly's": null, + "oligopolies": null, + "Olimpia": [["M"]], + "Olimpia's": null, + "Olin": [["M"]], + "Olin's": null, + "olive": [["M", "S", "R"]], + "olive's": null, + "olives": null, + "oliver": null, + "Olive's": null, + "Olivers": null, + "Oliver": [["M"]], + "Oliver's": null, + "Olivero": [["M"]], + "Olivero's": null, + "Olivette": [["M"]], + "Olivette's": null, + "Olivetti": [["M"]], + "Olivetti's": null, + "Olivia": [["M"]], + "Olivia's": null, + "Olivier": [["M"]], + "Olivier's": null, + "Olivie": [["R", "M"]], + "Olivie's": null, + "Oliviero": [["M"]], + "Oliviero's": null, + "Oliy": [["M"]], + "Oliy's": null, + "Ollie": [["M"]], + "Ollie's": null, + "Olly": [["M"]], + "Olly's": null, + "Olmec": null, + "Olmsted": [["M"]], + "Olmsted's": null, + "Olsen": [["M"]], + "Olsen's": null, + "Olson": [["M"]], + "Olson's": null, + "Olva": [["M"]], + "Olva's": null, + "Olvan": [["M"]], + "Olvan's": null, + "Olwen": [["M"]], + "Olwen's": null, + "Olympe": [["M"]], + "Olympe's": null, + "Olympiad": [["M", "S"]], + "Olympiad's": null, + "Olympiads": null, + "Olympian": [["S"]], + "Olympians": null, + "Olympia": [["S", "M"]], + "Olympias": null, + "Olympia's": null, + "Olympic": [["S"]], + "Olympics": null, + "Olympie": [["M"]], + "Olympie's": null, + "Olympus": [["M"]], + "Olympus's": null, + "Omaha": [["S", "M"]], + "Omahas": null, + "Omaha's": null, + "Oman": [["M"]], + "Oman's": null, + "Omar": [["M"]], + "Omar's": null, + "ombudsman": [["M"]], + "ombudsman's": null, + "ombudsmen": null, + "Omdurman": [["M"]], + "Omdurman's": null, + "omega": [["M", "S"]], + "omega's": null, + "omegas": null, + "omelet": [["S", "M"]], + "omelets": null, + "omelet's": null, + "omelette's": null, + "omen": [["D", "M", "G"]], + "omened": null, + "omen's": null, + "omening": null, + "Omero": [["M"]], + "Omero's": null, + "omicron": [["M", "S"]], + "omicron's": null, + "omicrons": null, + "ominousness": [["S", "M"]], + "ominousnesses": null, + "ominousness's": null, + "ominous": [["Y", "P"]], + "ominously": null, + "omission": [["M", "S"]], + "omission's": null, + "omissions": null, + "omit": [["S"]], + "omits": null, + "omitted": null, + "omitting": null, + "omnibus": [["M", "S"]], + "omnibus's": null, + "omnibuses": null, + "omni": [["M"]], + "omni's": null, + "omnipotence": [["S", "M"]], + "omnipotences": null, + "omnipotence's": null, + "Omnipotent": null, + "omnipotent": [["S", "Y"]], + "omnipotents": null, + "omnipotently": null, + "omnipresence": [["M", "S"]], + "omnipresence's": null, + "omnipresences": null, + "omnipresent": [["Y"]], + "omnipresently": null, + "omniscience": [["S", "M"]], + "omnisciences": null, + "omniscience's": null, + "omniscient": [["Y", "S"]], + "omnisciently": null, + "omniscients": null, + "omnivore": [["M", "S"]], + "omnivore's": null, + "omnivores": null, + "omnivorousness": [["M", "S"]], + "omnivorousness's": null, + "omnivorousnesses": null, + "omnivorous": [["P", "Y"]], + "omnivorously": null, + "oms": null, + "Omsk": [["M"]], + "Omsk's": null, + "om": [["X", "N"]], + "omens": null, + "ON": null, + "onanism": [["M"]], + "onanism's": null, + "Onassis": [["M"]], + "Onassis's": null, + "oncer": [["M"]], + "oncer's": null, + "once": [["S", "R"]], + "onces": null, + "oncogene": [["S"]], + "oncogenes": null, + "oncologist": [["S"]], + "oncologists": null, + "oncology": [["S", "M"]], + "oncologies": null, + "oncology's": null, + "oncoming": [["S"]], + "oncomings": null, + "Ondrea": [["M"]], + "Ondrea's": null, + "Oneal": [["M"]], + "Oneal's": null, + "Onega": [["M"]], + "Onega's": null, + "Onegin": [["M"]], + "Onegin's": null, + "Oneida": [["S", "M"]], + "Oneidas": null, + "Oneida's": null, + "O'Neil": null, + "O'Neill": null, + "oneness": [["M", "S"]], + "oneness's": null, + "onenesses": null, + "one": [["N", "P", "M", "S", "X"]], + "onion": [["G", "D", "M"]], + "one's": null, + "ones": null, + "onions": null, + "oner": [["M"]], + "oner's": null, + "onerousness": [["S", "M"]], + "onerousnesses": null, + "onerousness's": null, + "onerous": [["Y", "P"]], + "onerously": null, + "oneself": null, + "onetime": null, + "oneupmanship": null, + "Onfre": [["M"]], + "Onfre's": null, + "Onfroi": [["M"]], + "Onfroi's": null, + "ongoing": [["S"]], + "ongoings": null, + "Onida": [["M"]], + "Onida's": null, + "onioning": null, + "onioned": null, + "onion's": null, + "onionskin": [["M", "S"]], + "onionskin's": null, + "onionskins": null, + "onlooker": [["M", "S"]], + "onlooker's": null, + "onlookers": null, + "onlooking": null, + "only": [["T", "P"]], + "onliest": null, + "onliness": null, + "Onofredo": [["M"]], + "Onofredo's": null, + "Ono": [["M"]], + "Ono's": null, + "onomatopoeia": [["S", "M"]], + "onomatopoeias": null, + "onomatopoeia's": null, + "onomatopoeic": null, + "onomatopoetic": null, + "Onondaga": [["M", "S"]], + "Onondaga's": null, + "Onondagas": null, + "onrush": [["G", "M", "S"]], + "onrushing": null, + "onrush's": null, + "onrushes": null, + "on": [["R", "Y"]], + "ons": null, + "Onsager": [["M"]], + "Onsager's": null, + "onset": [["S", "M"]], + "onsets": null, + "onset's": null, + "onsetting": null, + "onshore": null, + "onside": null, + "onslaught": [["M", "S"]], + "onslaught's": null, + "onslaughts": null, + "Ontarian": [["S"]], + "Ontarians": null, + "Ontario": [["M"]], + "Ontario's": null, + "Ont": [["M"]], + "Ont's": null, + "onto": null, + "ontogeny": [["S", "M"]], + "ontogenies": null, + "ontogeny's": null, + "ontological": [["Y"]], + "ontologically": null, + "ontology": [["S", "M"]], + "ontologies": null, + "ontology's": null, + "onus": [["S", "M"]], + "onuses": null, + "onus's": null, + "onward": [["S"]], + "onwards": null, + "onyx": [["M", "S"]], + "onyx's": null, + "onyxes": null, + "oodles": null, + "ooh": [["G", "D"]], + "oohing": null, + "oohed": null, + "oohs": null, + "oolitic": null, + "Oona": [["M"]], + "Oona's": null, + "OOo": [["M"]], + "OOo's": null, + "oops": [["S"]], + "oopses": null, + "Oort": [["M"]], + "Oort's": null, + "ooze": [["G", "D", "S"]], + "oozing": null, + "oozed": null, + "oozes": null, + "oozy": [["R", "T"]], + "oozier": null, + "ooziest": null, + "opacity": [["S", "M"]], + "opacities": null, + "opacity's": null, + "opalescence": [["S"]], + "opalescences": null, + "opalescent": [["Y"]], + "opalescently": null, + "Opalina": [["M"]], + "Opalina's": null, + "Opaline": [["M"]], + "Opaline's": null, + "Opal": [["M"]], + "Opal's": null, + "opal": [["S", "M"]], + "opals": null, + "opal's": null, + "opaque": [["G", "T", "P", "Y", "R", "S", "D"]], + "opaquing": null, + "opaquest": null, + "opaqueness": [["S", "M"]], + "opaquely": null, + "opaquer": null, + "opaques": null, + "opaqued": null, + "opaquenesses": null, + "opaqueness's": null, + "opcode": [["M", "S"]], + "opcode's": null, + "opcodes": null, + "OPEC": null, + "Opel": [["M"]], + "Opel's": null, + "opencast": null, + "opened": [["A", "U"]], + "reopened": null, + "unopened": null, + "opener": [["M"]], + "opener's": null, + "openhandedness": [["S", "M"]], + "openhandednesses": null, + "openhandedness's": null, + "openhanded": [["P"]], + "openhearted": null, + "opening": [["M"]], + "opening's": null, + "openness": [["S"]], + "opennesses": null, + "OpenOffice.org": [["M"]], + "OpenOffice.org's": null, + "opens": [["A"]], + "reopens": null, + "openwork": [["M", "S"]], + "openwork's": null, + "openworks": null, + "open": [["Y", "R", "D", "J", "G", "Z", "T", "P"]], + "openly": null, + "openings": null, + "openers": null, + "openest": null, + "operable": [["I"]], + "inoperable": null, + "operandi": null, + "operand": [["S", "M"]], + "operands": null, + "operand's": null, + "operant": [["Y", "S"]], + "operantly": null, + "operants": null, + "opera": [["S", "M"]], + "operas": null, + "opera's": null, + "operate": [["X", "N", "G", "V", "D", "S"]], + "operations": null, + "operation": [["M"]], + "operating": null, + "operative": [["I", "P"]], + "operated": null, + "operates": null, + "operatically": null, + "operatic": [["S"]], + "operatics": null, + "operationalization": [["S"]], + "operationalizations": null, + "operationalize": [["D"]], + "operationalized": null, + "operational": [["Y"]], + "operationally": null, + "operation's": null, + "inoperative": null, + "inoperativeness": null, + "operativeness": [["M", "I"]], + "operatively": null, + "operativeness's": null, + "inoperativeness's": null, + "operatives": null, + "operator": [["S", "M"]], + "operators": null, + "operator's": null, + "operetta": [["M", "S"]], + "operetta's": null, + "operettas": null, + "ope": [["S"]], + "opes": null, + "Ophelia": [["M"]], + "Ophelia's": null, + "Ophelie": [["M"]], + "Ophelie's": null, + "Ophiuchus": [["M"]], + "Ophiuchus's": null, + "ophthalmic": [["S"]], + "ophthalmics": null, + "ophthalmologist": [["S", "M"]], + "ophthalmologists": null, + "ophthalmologist's": null, + "ophthalmology": [["M", "S"]], + "ophthalmology's": null, + "ophthalmologies": null, + "opiate": [["G", "M", "S", "D"]], + "opiating": null, + "opiate's": null, + "opiates": null, + "opiated": null, + "opine": [["X", "G", "N", "S", "D"]], + "opinions": null, + "opining": null, + "opinion": [["M"]], + "opines": null, + "opined": null, + "opinionatedness": [["M"]], + "opinionatedness's": null, + "opinionated": [["P", "Y"]], + "opinionatedly": null, + "opinion's": null, + "opioid": null, + "opium": [["M", "S"]], + "opium's": null, + "opiums": null, + "opossum": [["S", "M"]], + "opossums": null, + "opossum's": null, + "opp": null, + "Oppenheimer": [["M"]], + "Oppenheimer's": null, + "opponent": [["M", "S"]], + "opponent's": null, + "opponents": null, + "opportune": [["I", "Y"]], + "inopportunely": null, + "opportunely": null, + "opportunism": [["S", "M"]], + "opportunisms": null, + "opportunism's": null, + "opportunistic": null, + "opportunistically": null, + "opportunist": [["S", "M"]], + "opportunists": null, + "opportunist's": null, + "opportunity": [["M", "S"]], + "opportunity's": null, + "opportunities": null, + "oppose": [["B", "R", "S", "D", "G"]], + "opposable": null, + "opposer": [["M"]], + "opposes": null, + "opposed": [["U"]], + "opposing": null, + "unopposed": null, + "opposer's": null, + "oppositeness": [["M"]], + "oppositeness's": null, + "opposite": [["S", "X", "Y", "N", "P"]], + "opposites": null, + "oppositions": null, + "oppositely": null, + "opposition": [["M"]], + "oppositional": null, + "opposition's": null, + "oppress": [["D", "S", "G", "V"]], + "oppressed": null, + "oppresses": null, + "oppressing": null, + "oppressive": [["Y", "P"]], + "oppression": [["M", "S"]], + "oppression's": null, + "oppressions": null, + "oppressiveness": [["M", "S"]], + "oppressiveness's": null, + "oppressivenesses": null, + "oppressively": null, + "oppressor": [["M", "S"]], + "oppressor's": null, + "oppressors": null, + "opprobrious": [["Y"]], + "opprobriously": null, + "opprobrium": [["S", "M"]], + "opprobriums": null, + "opprobrium's": null, + "Oprah": [["M"]], + "Oprah's": null, + "ops": null, + "opt": [["D", "S", "G"]], + "opted": null, + "opts": null, + "opting": null, + "opthalmic": null, + "opthalmologic": null, + "opthalmology": null, + "optical": [["Y"]], + "optically": null, + "optician": [["S", "M"]], + "opticians": null, + "optician's": null, + "optic": [["S"]], + "optics": [["M"]], + "optics's": null, + "optima": null, + "optimality": null, + "optimal": [["Y"]], + "optimally": null, + "optimise's": null, + "optimism": [["S", "M"]], + "optimisms": null, + "optimism's": null, + "optimistic": null, + "optimistically": null, + "optimist": [["S", "M"]], + "optimists": null, + "optimist's": null, + "optimization": [["S", "M"]], + "optimizations": null, + "optimization's": null, + "optimize": [["D", "R", "S", "Z", "G"]], + "optimized": [["U"]], + "optimizer": [["M"]], + "optimizes": [["U"]], + "optimizers": null, + "optimizing": null, + "unoptimized": null, + "optimizer's": null, + "unoptimizes": null, + "optimum": [["S", "M"]], + "optimums": null, + "optimum's": null, + "optionality": [["M"]], + "optionality's": null, + "optional": [["Y", "S"]], + "optionally": null, + "optionals": null, + "option": [["G", "D", "M", "S"]], + "optioning": null, + "optioned": null, + "option's": null, + "options": null, + "optoelectronic": null, + "optometric": null, + "optometrist": [["M", "S"]], + "optometrist's": null, + "optometrists": null, + "optometry": [["S", "M"]], + "optometries": null, + "optometry's": null, + "opulence": [["S", "M"]], + "opulences": null, + "opulence's": null, + "opulent": [["Y"]], + "opulently": null, + "opus": [["S", "M"]], + "opuses": null, + "opus's": null, + "op": [["X", "G", "D", "N"]], + "oping": null, + "oped": null, + "OR": null, + "oracle": [["G", "M", "S", "D"]], + "oracling": null, + "oracle's": null, + "oracles": null, + "oracled": null, + "oracular": null, + "Oralee": [["M"]], + "Oralee's": null, + "Oralia": [["M"]], + "Oralia's": null, + "Oralie": [["M"]], + "Oralie's": null, + "Oralla": [["M"]], + "Oralla's": null, + "Oralle": [["M"]], + "Oralle's": null, + "oral": [["Y", "S"]], + "orally": null, + "orals": null, + "Ora": [["M"]], + "Ora's": null, + "orangeade": [["M", "S"]], + "orangeade's": null, + "orangeades": null, + "Orange": [["M"]], + "Orange's": null, + "orange": [["M", "S"]], + "orange's": null, + "oranges": null, + "orangery": [["S", "M"]], + "orangeries": null, + "orangery's": null, + "orangutan": [["M", "S"]], + "orangutan's": null, + "orangutans": null, + "Oranjestad": [["M"]], + "Oranjestad's": null, + "Oran": [["M"]], + "Oran's": null, + "orate": [["S", "D", "G", "N", "X"]], + "orates": null, + "orated": null, + "orating": null, + "oration": [["M"]], + "orations": null, + "oration's": null, + "oratorical": [["Y"]], + "oratorically": null, + "oratorio": [["M", "S"]], + "oratorio's": null, + "oratorios": null, + "orator": [["M", "S"]], + "orator's": null, + "orators": null, + "oratory": [["M", "S"]], + "oratory's": null, + "oratories": null, + "Orazio": [["M"]], + "Orazio's": null, + "Orbadiah": [["M"]], + "Orbadiah's": null, + "orbicular": null, + "orbiculares": null, + "orbital": [["M", "Y", "S"]], + "orbital's": null, + "orbitally": null, + "orbitals": null, + "orbit": [["M", "R", "D", "G", "Z", "S"]], + "orbit's": null, + "orbiter": null, + "orbited": null, + "orbiting": null, + "orbiters": null, + "orbits": null, + "orb": [["S", "M", "D", "G"]], + "orbs": null, + "orb's": null, + "orbed": null, + "orbing": null, + "orchard": [["S", "M"]], + "orchards": null, + "orchard's": null, + "orchestral": [["Y"]], + "orchestrally": null, + "orchestra": [["M", "S"]], + "orchestra's": null, + "orchestras": null, + "orchestrate": [["G", "N", "S", "D", "X"]], + "orchestrating": null, + "orchestration": [["M"]], + "orchestrates": null, + "orchestrated": null, + "orchestrations": null, + "orchestrater's": null, + "orchestration's": null, + "orchestrator": [["M"]], + "orchestrator's": null, + "orchid": [["S", "M"]], + "orchids": null, + "orchid's": null, + "ordainer": [["M"]], + "ordainer's": null, + "ordainment": [["M", "S"]], + "ordainment's": null, + "ordainments": null, + "ordain": [["S", "G", "L", "D", "R"]], + "ordains": null, + "ordaining": null, + "ordained": null, + "ordeal": [["S", "M"]], + "ordeals": null, + "ordeal's": null, + "order": [["A", "E", "S", "G", "D"]], + "reorder": null, + "reorders": null, + "reordering": null, + "reordered": null, + "disorders": null, + "disordering": null, + "orders": null, + "ordering": [["S"]], + "ordered": [["U"]], + "unordered": null, + "orderer": null, + "orderings": null, + "orderless": null, + "orderliness": [["S", "E"]], + "orderlinesses": null, + "disorderlinesses": null, + "orderly": [["P", "S"]], + "orderlies": null, + "order's": [["E"]], + "disorder's": null, + "ordinal": [["S"]], + "ordinals": null, + "ordinance": [["M", "S"]], + "ordinance's": null, + "ordinances": null, + "ordinarily": null, + "ordinariness": [["S"]], + "ordinarinesses": null, + "ordinary": [["R", "S", "P", "T"]], + "ordinarier": null, + "ordinaries": null, + "ordinariest": null, + "ordinated": null, + "ordinate": [["I"]], + "ordinates": null, + "ordinate's": null, + "ordinating": null, + "ordination": [["S", "M"]], + "ordinations": null, + "ordination's": null, + "ordnance": [["S", "M"]], + "ordnances": null, + "ordnance's": null, + "Ordovician": null, + "ordure": [["M", "S"]], + "ordure's": null, + "ordures": null, + "oregano": [["S", "M"]], + "oreganos": null, + "oregano's": null, + "Oreg": [["M"]], + "Oreg's": null, + "Oregonian": [["S"]], + "Oregonians": null, + "Oregon": [["M"]], + "Oregon's": null, + "Orelee": [["M"]], + "Orelee's": null, + "Orelia": [["M"]], + "Orelia's": null, + "Orelie": [["M"]], + "Orelie's": null, + "Orella": [["M"]], + "Orella's": null, + "Orelle": [["M"]], + "Orelle's": null, + "Orel": [["M"]], + "Orel's": null, + "Oren": [["M"]], + "Oren's": null, + "Ore": [["N", "M"]], + "Orion": [["M"]], + "Ore's": null, + "ore": [["N", "S", "M"]], + "orion": null, + "ores": null, + "ore's": null, + "Oreo": null, + "Orestes": null, + "organdie's": null, + "organdy": [["M", "S"]], + "organdy's": null, + "organdies": null, + "organelle": [["M", "S"]], + "organelle's": null, + "organelles": null, + "organically": [["I"]], + "inorganically": null, + "organic": [["S"]], + "organics": null, + "organismic": null, + "organism": [["M", "S"]], + "organism's": null, + "organisms": null, + "organist": [["M", "S"]], + "organist's": null, + "organists": null, + "organizable": [["U", "M", "S"]], + "unorganizable": null, + "unorganizable's": null, + "unorganizables": null, + "organizable's": null, + "organizables": null, + "organizational": [["M", "Y", "S"]], + "organizational's": null, + "organizationally": null, + "organizationals": null, + "organization": [["M", "E", "A", "S"]], + "organization's": null, + "disorganization's": null, + "reorganization's": null, + "disorganization": null, + "disorganizations": null, + "reorganization": null, + "reorganizations": null, + "organizations": null, + "organize": [["A", "G", "Z", "D", "R", "S"]], + "reorganize": null, + "reorganizing": null, + "reorganizers": null, + "reorganized": [["U"]], + "reorganizer": null, + "reorganizes": null, + "organizing": [["E"]], + "organizers": null, + "organized": [["U", "E"]], + "organizer": [["M", "A"]], + "organizes": [["E"]], + "unorganized": [["Y", "P"]], + "organizer's": null, + "reorganizer's": null, + "disorganizes": null, + "disorganizing": null, + "organ": [["M", "S"]], + "organ's": null, + "organs": null, + "organometallic": null, + "organza": [["S", "M"]], + "organzas": null, + "organza's": null, + "orgasm": [["G", "S", "M", "D"]], + "orgasming": null, + "orgasms": null, + "orgasm's": null, + "orgasmed": null, + "orgasmic": null, + "orgiastic": null, + "orgy": [["S", "M"]], + "orgies": null, + "orgy's": null, + "Oriana": [["M"]], + "Oriana's": null, + "oriel": [["M", "S"]], + "oriel's": null, + "oriels": null, + "orientable": null, + "Oriental": [["S"]], + "Orientals": null, + "oriental": [["S", "Y"]], + "orientals": null, + "orientally": null, + "orientated": [["A"]], + "reorientated": null, + "orientate": [["E", "S", "D", "X", "G", "N"]], + "disorientate": null, + "disorientates": null, + "disorientated": null, + "disorientations": null, + "disorientating": null, + "disorientation": null, + "orientates": [["A"]], + "orientations": null, + "orientating": null, + "orientation": [["A", "M", "E", "S"]], + "reorientates": null, + "reorientation": null, + "reorientation's": null, + "reorientations": null, + "orientation's": null, + "disorientation's": null, + "orienteering": [["M"]], + "orienteering's": null, + "orienter": null, + "orient": [["G", "A", "D", "E", "S"]], + "orienting": null, + "reorienting": null, + "disorienting": null, + "reorient": null, + "reoriented": null, + "reorients": null, + "oriented": null, + "disoriented": null, + "disorient": null, + "disorients": null, + "orients": null, + "orient's": null, + "Orient": [["S", "M"]], + "Orients": null, + "Orient's": null, + "orifice": [["M", "S"]], + "orifice's": null, + "orifices": null, + "orig": null, + "origami": [["M", "S"]], + "origami's": null, + "origamis": null, + "originality": [["S", "M"]], + "originalities": null, + "originality's": null, + "originally": null, + "original": [["U", "S"]], + "unoriginal": null, + "unoriginals": null, + "originals": null, + "originate": [["V", "G", "N", "X", "S", "D"]], + "originative": [["Y"]], + "originating": null, + "origination": [["M"]], + "originations": null, + "originates": null, + "originated": null, + "origination's": null, + "originatively": null, + "originator": [["S", "M"]], + "originators": null, + "originator's": null, + "origin": [["M", "S"]], + "origin's": null, + "origins": null, + "Orin": [["M"]], + "Orin's": null, + "Orinoco": [["M"]], + "Orinoco's": null, + "oriole": [["S", "M"]], + "orioles": null, + "oriole's": null, + "Orion's": null, + "orison": [["S", "M"]], + "orisons": null, + "orison's": null, + "Oriya": [["M"]], + "Oriya's": null, + "Orizaba": [["M"]], + "Orizaba's": null, + "Orkney": [["M"]], + "Orkney's": null, + "Orland": [["M"]], + "Orland's": null, + "Orlando": [["M"]], + "Orlando's": null, + "Orlan": [["M"]], + "Orlan's": null, + "Orleans": null, + "Orlick": [["M"]], + "Orlick's": null, + "Orlon": [["S", "M"]], + "Orlons": null, + "Orlon's": null, + "Orly": [["M"]], + "Orly's": null, + "ormolu": [["S", "M"]], + "ormolus": null, + "ormolu's": null, + "or": [["M", "Y"]], + "or's": null, + "orly": null, + "ornamental": [["S", "Y"]], + "ornamentals": null, + "ornamentally": null, + "ornamentation": [["S", "M"]], + "ornamentations": null, + "ornamentation's": null, + "ornament": [["G", "S", "D", "M"]], + "ornamenting": null, + "ornaments": null, + "ornamented": null, + "ornament's": null, + "ornateness": [["S", "M"]], + "ornatenesses": null, + "ornateness's": null, + "ornate": [["Y", "P"]], + "ornately": null, + "orneriness": [["S", "M"]], + "ornerinesses": null, + "orneriness's": null, + "ornery": [["P", "R", "T"]], + "ornerier": null, + "orneriest": null, + "ornithological": null, + "ornithologist": [["S", "M"]], + "ornithologists": null, + "ornithologist's": null, + "ornithology": [["M", "S"]], + "ornithology's": null, + "ornithologies": null, + "orographic": [["M"]], + "orographic's": null, + "orography": [["M"]], + "orography's": null, + "Orono": [["M"]], + "Orono's": null, + "orotund": null, + "orotundity": [["M", "S"]], + "orotundity's": null, + "orotundities": null, + "orphanage": [["M", "S"]], + "orphanage's": null, + "orphanages": null, + "orphanhood": [["M"]], + "orphanhood's": null, + "orphan": [["S", "G", "D", "M"]], + "orphans": null, + "orphaning": null, + "orphaned": null, + "orphan's": null, + "Orpheus": [["M"]], + "Orpheus's": null, + "Orphic": null, + "Orran": [["M"]], + "Orran's": null, + "Orren": [["M"]], + "Orren's": null, + "Orrin": [["M"]], + "Orrin's": null, + "orris": [["S", "M"]], + "orrises": null, + "orris's": null, + "Orr": [["M", "N"]], + "Orr's": null, + "ors": null, + "Orsa": [["M"]], + "Orsa's": null, + "Orsola": [["M"]], + "Orsola's": null, + "Orson": [["M"]], + "Orson's": null, + "Ortega": [["M"]], + "Ortega's": null, + "Ortensia": [["M"]], + "Ortensia's": null, + "orthodontia": [["S"]], + "orthodontias": null, + "orthodontic": [["S"]], + "orthodontics": [["M"]], + "orthodontics's": null, + "orthodontist": [["M", "S"]], + "orthodontist's": null, + "orthodontists": null, + "orthodoxies": null, + "orthodoxly": [["U"]], + "unorthodoxly": null, + "Orthodox": [["S"]], + "Orthodoxes": null, + "orthodoxy's": null, + "orthodox": [["Y", "S"]], + "orthodoxes": null, + "orthodoxy": [["U"]], + "unorthodoxy": null, + "orthogonality": [["M"]], + "orthogonality's": null, + "orthogonalization": [["M"]], + "orthogonalization's": null, + "orthogonalized": null, + "orthogonal": [["Y"]], + "orthogonally": null, + "orthographic": null, + "orthographically": null, + "orthography": [["M", "S"]], + "orthography's": null, + "orthographies": null, + "orthonormal": null, + "orthopedic": [["S"]], + "orthopedics": [["M"]], + "orthopedics's": null, + "orthopedist": [["S", "M"]], + "orthopedists": null, + "orthopedist's": null, + "orthophosphate": [["M", "S"]], + "orthophosphate's": null, + "orthophosphates": null, + "orthorhombic": null, + "Ortiz": [["M"]], + "Ortiz's": null, + "Orton": [["M"]], + "Orton's": null, + "Orval": [["M"]], + "Orval's": null, + "Orville": [["M"]], + "Orville's": null, + "Orv": [["M"]], + "Orv's": null, + "Orwellian": null, + "Orwell": [["M"]], + "Orwell's": null, + "o's": null, + "Osage": [["S", "M"]], + "Osages": null, + "Osage's": null, + "Osaka": [["M"]], + "Osaka's": null, + "Osbert": [["M"]], + "Osbert's": null, + "Osborne": [["M"]], + "Osborne's": null, + "Osborn": [["M"]], + "Osborn's": null, + "Osbourne": [["M"]], + "Osbourne's": null, + "Osbourn": [["M"]], + "Osbourn's": null, + "Oscar": [["S", "M"]], + "Oscars": null, + "Oscar's": null, + "Osceola": [["M"]], + "Osceola's": null, + "oscillate": [["S", "D", "X", "N", "G"]], + "oscillates": null, + "oscillated": null, + "oscillations": null, + "oscillation": [["M"]], + "oscillating": null, + "oscillation's": null, + "oscillator": [["S", "M"]], + "oscillators": null, + "oscillator's": null, + "oscillatory": null, + "oscilloscope": [["S", "M"]], + "oscilloscopes": null, + "oscilloscope's": null, + "osculate": [["X", "D", "S", "N", "G"]], + "osculations": null, + "osculated": null, + "osculates": null, + "osculation": [["M"]], + "osculating": null, + "osculation's": null, + "Osgood": [["M"]], + "Osgood's": null, + "OSHA": null, + "Oshawa": [["M"]], + "Oshawa's": null, + "O'Shea": [["M"]], + "O'Shea's": null, + "Oshkosh": [["M"]], + "Oshkosh's": null, + "osier": [["M", "S"]], + "osier's": null, + "osiers": null, + "Osiris": [["M"]], + "Osiris's": null, + "Oslo": [["M"]], + "Oslo's": null, + "Os": [["M"]], + "Os's": null, + "OS": [["M"]], + "OS's": null, + "Osman": [["M"]], + "Osman's": null, + "osmium": [["M", "S"]], + "osmium's": null, + "osmiums": null, + "Osmond": [["M"]], + "Osmond's": null, + "osmoses": null, + "osmosis": [["M"]], + "osmosis's": null, + "osmotic": null, + "Osmund": [["M"]], + "Osmund's": null, + "osprey": [["S", "M"]], + "ospreys": null, + "osprey's": null, + "osseous": [["Y"]], + "osseously": null, + "Ossie": [["M"]], + "Ossie's": null, + "ossification": [["M"]], + "ossification's": null, + "ossify": [["N", "G", "S", "D", "X"]], + "ossifying": null, + "ossifies": null, + "ossified": null, + "ossifications": null, + "ostensible": null, + "ostensibly": null, + "ostentation": [["M", "S"]], + "ostentation's": null, + "ostentations": null, + "ostentatiousness": [["M"]], + "ostentatiousness's": null, + "ostentatious": [["P", "Y"]], + "ostentatiously": null, + "osteoarthritides": null, + "osteoarthritis": [["M"]], + "osteoarthritis's": null, + "osteology": [["M"]], + "osteology's": null, + "osteopathic": null, + "osteopath": [["M"]], + "osteopath's": null, + "osteopaths": null, + "osteopathy": [["M", "S"]], + "osteopathy's": null, + "osteopathies": null, + "osteoporoses": null, + "osteoporosis": [["M"]], + "osteoporosis's": null, + "ostracise's": null, + "ostracism": [["M", "S"]], + "ostracism's": null, + "ostracisms": null, + "ostracize": [["G", "S", "D"]], + "ostracizing": null, + "ostracizes": null, + "ostracized": null, + "Ostrander": [["M"]], + "Ostrander's": null, + "ostrich": [["M", "S"]], + "ostrich's": null, + "ostriches": null, + "Ostrogoth": [["M"]], + "Ostrogoth's": null, + "Ostwald": [["M"]], + "Ostwald's": null, + "O'Sullivan": [["M"]], + "O'Sullivan's": null, + "Osvaldo": [["M"]], + "Osvaldo's": null, + "Oswald": [["M"]], + "Oswald's": null, + "Oswell": [["M"]], + "Oswell's": null, + "OT": null, + "OTB": null, + "OTC": null, + "Otes": null, + "Otha": [["M"]], + "Otha's": null, + "Othelia": [["M"]], + "Othelia's": null, + "Othella": [["M"]], + "Othella's": null, + "Othello": [["M"]], + "Othello's": null, + "otherness": [["M"]], + "otherness's": null, + "other": [["S", "M", "P"]], + "others": null, + "other's": null, + "otherwise": null, + "otherworldly": [["P"]], + "otherworldliness": null, + "otherworld": [["Y"]], + "Othilia": [["M"]], + "Othilia's": null, + "Othilie": [["M"]], + "Othilie's": null, + "Otho": [["M"]], + "Otho's": null, + "otiose": null, + "Otis": [["M"]], + "Otis's": null, + "OTOH": null, + "Ottawa": [["M", "S"]], + "Ottawa's": null, + "Ottawas": null, + "otter": [["D", "M", "G", "S"]], + "ottered": null, + "otter's": null, + "ottering": null, + "otters": null, + "Ottilie": [["M"]], + "Ottilie's": null, + "Otto": [["M"]], + "Otto's": null, + "Ottoman": null, + "ottoman": [["M", "S"]], + "ottoman's": null, + "ottomans": null, + "Ouagadougou": [["M"]], + "Ouagadougou's": null, + "oubliette": [["S", "M"]], + "oubliettes": null, + "oubliette's": null, + "ouch": [["S", "D", "G"]], + "ouches": null, + "ouched": null, + "ouching": null, + "oughtn't": null, + "ought": [["S", "G", "D"]], + "oughts": null, + "oughting": null, + "oughted": null, + "Ouija": [["M", "S"]], + "Ouija's": null, + "Ouijas": null, + "ounce": [["M", "S"]], + "ounce's": null, + "ounces": null, + "our": [["S"]], + "ours": null, + "ourself": null, + "ourselves": null, + "ouster": [["M"]], + "ouster's": null, + "oust": [["R", "D", "G", "Z", "S"]], + "ousted": null, + "ousting": null, + "ousters": null, + "ousts": null, + "outage": [["M", "S"]], + "outage's": null, + "outages": null, + "outargue": [["G", "D", "S"]], + "outarguing": null, + "outargued": null, + "outargues": null, + "outback": [["M", "R", "S"]], + "outback's": null, + "outbacker": null, + "outbacks": null, + "outbalance": [["G", "D", "S"]], + "outbalancing": null, + "outbalanced": null, + "outbalances": null, + "outbidding": null, + "outbid": [["S"]], + "outbids": null, + "outboard": [["S"]], + "outboards": null, + "outboast": [["G", "S", "D"]], + "outboasting": null, + "outboasts": null, + "outboasted": null, + "outbound": [["S"]], + "outbounds": null, + "outbreak": [["S", "M", "G"]], + "outbreaks": null, + "outbreak's": null, + "outbreaking": null, + "outbroke": null, + "outbroken": null, + "outbuilding": [["S", "M"]], + "outbuildings": null, + "outbuilding's": null, + "outburst": [["M", "G", "S"]], + "outburst's": null, + "outbursting": null, + "outbursts": null, + "outcast": [["G", "S", "M"]], + "outcasting": null, + "outcasts": null, + "outcast's": null, + "outclass": [["S", "D", "G"]], + "outclasses": null, + "outclassed": null, + "outclassing": null, + "outcome": [["S", "M"]], + "outcomes": null, + "outcome's": null, + "outcropped": null, + "outcropping": [["S"]], + "outcroppings": null, + "outcrop": [["S", "M"]], + "outcrops": null, + "outcrop's": null, + "outcry": [["M", "S", "D", "G"]], + "outcry's": null, + "outcries": null, + "outcried": null, + "outcrying": null, + "outdated": [["P"]], + "outdatedness": null, + "outdid": null, + "outdistance": [["G", "S", "D"]], + "outdistancing": null, + "outdistances": null, + "outdistanced": null, + "outdoes": null, + "outdo": [["G"]], + "outdoing": null, + "outdone": null, + "outdoor": [["S"]], + "outdoors": null, + "outdoorsy": null, + "outdraw": [["G", "S"]], + "outdrawing": null, + "outdraws": null, + "outdrawn": null, + "outdrew": null, + "outermost": null, + "outerwear": [["M"]], + "outerwear's": null, + "outface": [["S", "D", "G"]], + "outfaces": null, + "outfaced": null, + "outfacing": null, + "outfall": [["M", "S"]], + "outfall's": null, + "outfalls": null, + "outfielder": [["M"]], + "outfielder's": null, + "outfield": [["R", "M", "S", "Z"]], + "outfield's": null, + "outfields": null, + "outfielders": null, + "outfight": [["S", "G"]], + "outfights": null, + "outfighting": null, + "outfit": [["M", "S"]], + "outfit's": null, + "outfits": null, + "outfitted": null, + "outfitter": [["M", "S"]], + "outfitter's": null, + "outfitters": null, + "outfitting": null, + "outflank": [["S", "G", "D"]], + "outflanks": null, + "outflanking": null, + "outflanked": null, + "outflow": [["S", "M", "D", "G"]], + "outflows": null, + "outflow's": null, + "outflowed": null, + "outflowing": null, + "outfought": null, + "outfox": [["G", "S", "D"]], + "outfoxing": null, + "outfoxes": null, + "outfoxed": null, + "outgeneraled": null, + "outgoes": null, + "outgo": [["G", "J"]], + "outgoing": [["P"]], + "outgoings": null, + "outgoingness": null, + "outgrew": null, + "outgrip": null, + "outgrow": [["G", "S", "H"]], + "outgrowing": null, + "outgrows": null, + "outgrowth": [["M"]], + "outgrown": null, + "outgrowth's": null, + "outgrowths": null, + "outguess": [["S", "D", "G"]], + "outguesses": null, + "outguessed": null, + "outguessing": null, + "outhit": [["S"]], + "outhits": null, + "outhitting": null, + "outhouse": [["S", "M"]], + "outhouses": null, + "outhouse's": null, + "outing": [["M"]], + "outing's": null, + "outlaid": null, + "outlander": [["M"]], + "outlander's": null, + "outlandishness": [["M", "S"]], + "outlandishness's": null, + "outlandishnesses": null, + "outlandish": [["P", "Y"]], + "outlandishly": null, + "outland": [["Z", "R"]], + "outlanders": null, + "outlast": [["G", "S", "D"]], + "outlasting": null, + "outlasts": null, + "outlasted": null, + "outlawry": [["M"]], + "outlawry's": null, + "outlaw": [["S", "D", "M", "G"]], + "outlaws": null, + "outlawed": null, + "outlaw's": null, + "outlawing": null, + "outlay": [["G", "S", "M"]], + "outlaying": null, + "outlays": null, + "outlay's": null, + "outlet": [["S", "M"]], + "outlets": null, + "outlet's": null, + "outliers": null, + "outline": [["S", "D", "G", "M"]], + "outlines": null, + "outlined": null, + "outlining": null, + "outline's": null, + "outlive": [["G", "S", "D"]], + "outliving": null, + "outlives": null, + "outlived": null, + "outlook": [["M", "D", "G", "S"]], + "outlook's": null, + "outlooked": null, + "outlooking": null, + "outlooks": null, + "outlying": null, + "outmaneuver": [["G", "S", "D"]], + "outmaneuvering": null, + "outmaneuvers": null, + "outmaneuvered": null, + "outmatch": [["S", "D", "G"]], + "outmatches": null, + "outmatched": null, + "outmatching": null, + "outmigration": null, + "outmoded": null, + "outness": [["M"]], + "outness's": null, + "outnumber": [["G", "D", "S"]], + "outnumbering": null, + "outnumbered": null, + "outnumbers": null, + "outpaced": null, + "outpatient": [["S", "M"]], + "outpatients": null, + "outpatient's": null, + "outperform": [["D", "G", "S"]], + "outperformed": null, + "outperforming": null, + "outperforms": null, + "out": [["P", "J", "Z", "G", "S", "D", "R"]], + "outings": null, + "outers": null, + "outs": null, + "outed": null, + "outer": null, + "outplacement": [["S"]], + "outplacements": null, + "outplay": [["G", "D", "S"]], + "outplaying": null, + "outplayed": null, + "outplays": null, + "outpoint": [["G", "D", "S"]], + "outpointing": null, + "outpointed": null, + "outpoints": null, + "outpost": [["S", "M"]], + "outposts": null, + "outpost's": null, + "outpouring": [["M"]], + "outpouring's": null, + "outpour": [["M", "J", "G"]], + "outpour's": null, + "outpourings": null, + "outproduce": [["G", "S", "D"]], + "outproducing": null, + "outproduces": null, + "outproduced": null, + "output": [["S", "M"]], + "outputs": null, + "output's": null, + "outputted": null, + "outputting": null, + "outrace": [["G", "S", "D"]], + "outracing": null, + "outraces": null, + "outraced": null, + "outrage": [["G", "S", "D", "M"]], + "outraging": null, + "outrages": null, + "outraged": null, + "outrage's": null, + "outrageousness": [["M"]], + "outrageousness's": null, + "outrageous": [["Y", "P"]], + "outrageously": null, + "outran": null, + "outrank": [["G", "S", "D"]], + "outranking": null, + "outranks": null, + "outranked": null, + "outr�": null, + "outreach": [["S", "D", "G"]], + "outreaches": null, + "outreached": null, + "outreaching": null, + "outrider": [["M", "S"]], + "outrider's": null, + "outriders": null, + "outrigger": [["S", "M"]], + "outriggers": null, + "outrigger's": null, + "outright": [["Y"]], + "outrightly": null, + "outrunning": null, + "outrun": [["S"]], + "outruns": null, + "outscore": [["G", "D", "S"]], + "outscoring": null, + "outscored": null, + "outscores": null, + "outsell": [["G", "S"]], + "outselling": null, + "outsells": null, + "outset": [["M", "S"]], + "outset's": null, + "outsets": null, + "outsetting": null, + "outshine": [["S", "G"]], + "outshines": null, + "outshining": null, + "outshone": null, + "outshout": [["G", "D", "S"]], + "outshouting": null, + "outshouted": null, + "outshouts": null, + "outsider": [["P", "M"]], + "outsiderness": null, + "outsider's": null, + "outside": [["Z", "S", "R"]], + "outsiders": null, + "outsides": null, + "outsize": [["S"]], + "outsizes": null, + "outskirt": [["S", "M"]], + "outskirts": null, + "outskirt's": null, + "outsmart": [["S", "D", "G"]], + "outsmarts": null, + "outsmarted": null, + "outsmarting": null, + "outsold": null, + "outsource": [["S", "D", "J", "G"]], + "outsources": null, + "outsourced": null, + "outsourcings": null, + "outsourcing": null, + "outspend": [["S", "G"]], + "outspends": null, + "outspending": null, + "outspent": null, + "outspoke": null, + "outspokenness": [["S", "M"]], + "outspokennesses": null, + "outspokenness's": null, + "outspoken": [["Y", "P"]], + "outspokenly": null, + "outspread": [["S", "G"]], + "outspreads": null, + "outspreading": null, + "outstanding": [["Y"]], + "outstandingly": null, + "outstate": [["N", "X"]], + "outstation": [["M"]], + "outstations": null, + "outstation's": null, + "outstay": [["S", "D", "G"]], + "outstays": null, + "outstayed": null, + "outstaying": null, + "outstretch": [["G", "S", "D"]], + "outstretching": null, + "outstretches": null, + "outstretched": null, + "outstripped": null, + "outstripping": null, + "outstrip": [["S"]], + "outstrips": null, + "outtake": [["S"]], + "outtakes": null, + "outvote": [["G", "S", "D"]], + "outvoting": null, + "outvotes": null, + "outvoted": null, + "outwardness": [["M"]], + "outwardness's": null, + "outward": [["S", "Y", "P"]], + "outwards": null, + "outwardly": null, + "outwear": [["S", "G"]], + "outwears": null, + "outwearing": null, + "outweigh": [["G", "D"]], + "outweighing": null, + "outweighed": null, + "outweighs": null, + "outwit": [["S"]], + "outwits": null, + "outwitted": null, + "outwitting": null, + "outwore": null, + "outwork": [["S", "M", "D", "G"]], + "outworks": null, + "outwork's": null, + "outworked": null, + "outworking": null, + "outworn": null, + "ouzo": [["S", "M"]], + "ouzos": null, + "ouzo's": null, + "oval": [["M", "Y", "P", "S"]], + "oval's": null, + "ovally": null, + "ovalness": [["M"]], + "ovals": null, + "ovalness's": null, + "ova": [["M"]], + "ova's": null, + "ovarian": null, + "ovary": [["S", "M"]], + "ovaries": null, + "ovary's": null, + "ovate": [["S", "D", "G", "N", "X"]], + "ovates": null, + "ovated": null, + "ovating": null, + "ovation": [["G", "M", "D"]], + "ovations": null, + "ovationing": null, + "ovation's": null, + "ovationed": null, + "ovenbird": [["S", "M"]], + "ovenbirds": null, + "ovenbird's": null, + "oven": [["M", "S"]], + "oven's": null, + "ovens": null, + "overabundance": [["M", "S"]], + "overabundance's": null, + "overabundances": null, + "overabundant": null, + "overachieve": [["S", "R", "D", "G", "Z"]], + "overachieves": null, + "overachiever": null, + "overachieved": null, + "overachieving": null, + "overachievers": null, + "overact": [["D", "G", "V", "S"]], + "overacted": null, + "overacting": null, + "overactive": null, + "overacts": null, + "overage": [["S"]], + "overages": null, + "overaggressive": null, + "overallocation": null, + "overall": [["S", "M"]], + "overalls": null, + "overall's": null, + "overambitious": null, + "overanxious": null, + "overarching": null, + "overarm": [["G", "S", "D"]], + "overarming": null, + "overarms": null, + "overarmed": null, + "overate": null, + "overattentive": null, + "overawe": [["G", "D", "S"]], + "overawing": null, + "overawed": null, + "overawes": null, + "overbalance": [["D", "S", "G"]], + "overbalanced": null, + "overbalances": null, + "overbalancing": null, + "overbear": [["G", "S"]], + "overbearing": [["Y", "P"]], + "overbears": null, + "overbearingness": [["M"]], + "overbearingness's": null, + "overbearingly": null, + "overbidding": null, + "overbid": [["S"]], + "overbids": null, + "overbite": [["M", "S"]], + "overbite's": null, + "overbites": null, + "overblown": null, + "overboard": null, + "overbold": null, + "overbook": [["S", "D", "G"]], + "overbooks": null, + "overbooked": null, + "overbooking": null, + "overbore": null, + "overborne": null, + "overbought": null, + "overbuild": [["G", "S"]], + "overbuilding": null, + "overbuilds": null, + "overbuilt": null, + "overburdening": [["Y"]], + "overburdeningly": null, + "overburden": [["S", "D", "G"]], + "overburdens": null, + "overburdened": null, + "overbuy": [["G", "S"]], + "overbuying": null, + "overbuys": null, + "overcame": null, + "overcapacity": [["M"]], + "overcapacity's": null, + "overcapitalize": [["D", "S", "G"]], + "overcapitalized": null, + "overcapitalizes": null, + "overcapitalizing": null, + "overcareful": null, + "overcast": [["G", "S"]], + "overcasting": [["M"]], + "overcasts": null, + "overcasting's": null, + "overcautious": null, + "overcerebral": null, + "overcharge": [["D", "S", "G"]], + "overcharged": null, + "overcharges": null, + "overcharging": null, + "overcloud": [["D", "S", "G"]], + "overclouded": null, + "overclouds": null, + "overclouding": null, + "overcoating": [["M"]], + "overcoating's": null, + "overcoat": [["S", "M", "G"]], + "overcoats": null, + "overcoat's": null, + "overcomer": [["M"]], + "overcomer's": null, + "overcome": [["R", "S", "G"]], + "overcomes": null, + "overcoming": null, + "overcommitment": [["S"]], + "overcommitments": null, + "overcompensate": [["X", "G", "N", "D", "S"]], + "overcompensations": null, + "overcompensating": null, + "overcompensation": [["M"]], + "overcompensated": null, + "overcompensates": null, + "overcompensation's": null, + "overcomplexity": [["M"]], + "overcomplexity's": null, + "overcomplicated": null, + "overconfidence": [["M", "S"]], + "overconfidence's": null, + "overconfidences": null, + "overconfident": [["Y"]], + "overconfidently": null, + "overconscientious": null, + "overconsumption": [["M"]], + "overconsumption's": null, + "overcook": [["S", "D", "G"]], + "overcooks": null, + "overcooked": null, + "overcooking": null, + "overcooled": null, + "overcorrection": null, + "overcritical": null, + "overcrowd": [["D", "G", "S"]], + "overcrowded": null, + "overcrowding": null, + "overcrowds": null, + "overcurious": null, + "overdecorate": [["S", "D", "G"]], + "overdecorates": null, + "overdecorated": null, + "overdecorating": null, + "overdependent": null, + "overdetermined": null, + "overdevelop": [["S", "D", "G"]], + "overdevelops": null, + "overdeveloped": null, + "overdeveloping": null, + "overdid": null, + "overdoes": null, + "overdo": [["G"]], + "overdoing": null, + "overdone": null, + "overdose": [["D", "S", "M", "G"]], + "overdosed": null, + "overdoses": null, + "overdose's": null, + "overdosing": null, + "overdraft": [["S", "M"]], + "overdrafts": null, + "overdraft's": null, + "overdraw": [["G", "S"]], + "overdrawing": null, + "overdraws": null, + "overdrawn": null, + "overdress": [["G", "D", "S"]], + "overdressing": null, + "overdressed": null, + "overdresses": null, + "overdrew": null, + "overdrive": [["G", "S", "M"]], + "overdriving": null, + "overdrives": null, + "overdrive's": null, + "overdriven": null, + "overdrove": null, + "overdubbed": null, + "overdubbing": null, + "overdub": [["S"]], + "overdubs": null, + "overdue": null, + "overeagerness": [["M"]], + "overeagerness's": null, + "overeager": [["P", "Y"]], + "overeagerly": null, + "overeater": [["M"]], + "overeater's": null, + "overeat": [["G", "N", "R", "S"]], + "overeating": null, + "overeaten": null, + "overeats": null, + "overeducated": null, + "overemotional": null, + "overemphases": null, + "overemphasis": [["M"]], + "overemphasis's": null, + "overemphasize": [["G", "Z", "D", "S", "R"]], + "overemphasizing": null, + "overemphasizers": null, + "overemphasized": null, + "overemphasizes": null, + "overemphasizer": null, + "overenthusiastic": null, + "overestimate": [["D", "S", "X", "G", "N"]], + "overestimated": null, + "overestimates": null, + "overestimations": null, + "overestimating": null, + "overestimation": [["M"]], + "overestimation's": null, + "overexcite": [["D", "S", "G"]], + "overexcited": null, + "overexcites": null, + "overexciting": null, + "overexercise": [["S", "D", "G"]], + "overexercises": null, + "overexercised": null, + "overexercising": null, + "overexert": [["G", "D", "S"]], + "overexerting": null, + "overexerted": null, + "overexerts": null, + "overexertion": [["S", "M"]], + "overexertions": null, + "overexertion's": null, + "overexploitation": null, + "overexploited": null, + "overexpose": [["G", "D", "S"]], + "overexposing": null, + "overexposed": null, + "overexposes": null, + "overexposure": [["S", "M"]], + "overexposures": null, + "overexposure's": null, + "overextend": [["D", "S", "G"]], + "overextended": null, + "overextends": null, + "overextending": null, + "overextension": null, + "overfall": [["M"]], + "overfall's": null, + "overfed": null, + "overfeed": [["G", "S"]], + "overfeeding": null, + "overfeeds": null, + "overfill": [["G", "D", "S"]], + "overfilling": null, + "overfilled": null, + "overfills": null, + "overfishing": null, + "overflew": null, + "overflight": [["S", "M"]], + "overflights": null, + "overflight's": null, + "overflow": [["D", "G", "S"]], + "overflowed": null, + "overflowing": null, + "overflows": null, + "overflown": null, + "overfly": [["G", "S"]], + "overflying": null, + "overflies": null, + "overfond": null, + "overfull": null, + "overgeneralize": [["G", "D", "S"]], + "overgeneralizing": null, + "overgeneralized": null, + "overgeneralizes": null, + "overgenerous": null, + "overgraze": [["S", "D", "G"]], + "overgrazes": null, + "overgrazed": null, + "overgrazing": null, + "overgrew": null, + "overground": null, + "overgrow": [["G", "S", "H"]], + "overgrowing": null, + "overgrows": null, + "overgrowth": [["M"]], + "overgrown": null, + "overgrowth's": null, + "overgrowths": null, + "overhand": [["D", "G", "S"]], + "overhanded": null, + "overhanding": null, + "overhands": null, + "overhang": [["G", "S"]], + "overhanging": null, + "overhangs": null, + "overhasty": null, + "overhaul": [["G", "R", "D", "J", "S"]], + "overhauling": null, + "overhauler": null, + "overhauled": null, + "overhaulings": null, + "overhauls": null, + "overhead": [["S"]], + "overheads": null, + "overheard": null, + "overhearer": [["M"]], + "overhearer's": null, + "overhear": [["S", "R", "G"]], + "overhears": null, + "overhearing": null, + "overheat": [["S", "G", "D"]], + "overheats": null, + "overheating": null, + "overheated": null, + "overhung": null, + "overincredulous": null, + "overindulgence": [["S", "M"]], + "overindulgences": null, + "overindulgence's": null, + "overindulgent": null, + "overindulge": [["S", "D", "G"]], + "overindulges": null, + "overindulged": null, + "overindulging": null, + "overinflated": null, + "overjoy": [["S", "G", "D"]], + "overjoys": null, + "overjoying": null, + "overjoyed": null, + "overkill": [["S", "D", "M", "G"]], + "overkills": null, + "overkilled": null, + "overkill's": null, + "overkilling": null, + "overladed": null, + "overladen": null, + "overlaid": null, + "overlain": null, + "overland": [["S"]], + "overlands": null, + "overlap": [["M", "S"]], + "overlap's": null, + "overlaps": null, + "overlapped": null, + "overlapping": null, + "overlarge": null, + "overlay": [["G", "S"]], + "overlaying": null, + "overlays": null, + "overleaf": null, + "overlie": null, + "overload": [["S", "D", "G"]], + "overloads": null, + "overloaded": null, + "overloading": null, + "overlong": null, + "overlook": [["D", "S", "G"]], + "overlooked": null, + "overlooks": null, + "overlooking": null, + "overlord": [["D", "M", "S", "G"]], + "overlorded": null, + "overlord's": null, + "overlords": null, + "overlording": null, + "overloud": null, + "overly": [["G", "R", "S"]], + "overlying": null, + "overlier": null, + "overlies": null, + "overmanning": null, + "overmaster": [["G", "S", "D"]], + "overmastering": null, + "overmasters": null, + "overmastered": null, + "overmatching": null, + "overmodest": null, + "overmuch": [["S"]], + "overmuches": null, + "overnice": null, + "overnight": [["S", "D", "R", "G", "Z"]], + "overnights": null, + "overnighted": null, + "overnighter": null, + "overnighting": null, + "overnighters": null, + "overoptimism": [["S", "M"]], + "overoptimisms": null, + "overoptimism's": null, + "overoptimistic": null, + "overpaid": null, + "overparticular": null, + "overpass": [["G", "M", "S", "D"]], + "overpassing": null, + "overpass's": null, + "overpasses": null, + "overpassed": null, + "overpay": [["L", "S", "G"]], + "overpayment": [["M"]], + "overpays": null, + "overpaying": null, + "overpayment's": null, + "overplay": [["S", "G", "D"]], + "overplays": null, + "overplaying": null, + "overplayed": null, + "overpopulate": [["D", "S", "N", "G", "X"]], + "overpopulated": null, + "overpopulates": null, + "overpopulation": [["M"]], + "overpopulating": null, + "overpopulations": null, + "overpopulation's": null, + "overpopulous": null, + "overpower": [["G", "S", "D"]], + "overpowering": [["Y"]], + "overpowers": null, + "overpowered": null, + "overpoweringly": null, + "overpraise": [["D", "S", "G"]], + "overpraised": null, + "overpraises": null, + "overpraising": null, + "overprecise": null, + "overpressure": null, + "overprice": [["S", "D", "G"]], + "overprices": null, + "overpriced": null, + "overpricing": null, + "overprint": [["D", "G", "S"]], + "overprinted": null, + "overprinting": null, + "overprints": null, + "overproduce": [["S", "D", "G"]], + "overproduces": null, + "overproduced": null, + "overproducing": null, + "overproduction": [["S"]], + "overproductions": null, + "overprotect": [["G", "V", "D", "S"]], + "overprotecting": null, + "overprotective": null, + "overprotected": null, + "overprotects": null, + "overprotection": [["M"]], + "overprotection's": null, + "overqualified": null, + "overran": null, + "overrate": [["D", "S", "G"]], + "overrated": null, + "overrates": null, + "overrating": null, + "overreach": [["D", "S", "R", "G"]], + "overreached": null, + "overreaches": null, + "overreacher": null, + "overreaching": null, + "overreaction": [["S", "M"]], + "overreactions": null, + "overreaction's": null, + "overreact": [["S", "G", "D"]], + "overreacts": null, + "overreacting": null, + "overreacted": null, + "overred": null, + "overrefined": null, + "overrepresented": null, + "overridden": null, + "overrider": [["M"]], + "overrider's": null, + "override": [["R", "S", "G"]], + "overrides": null, + "overriding": null, + "overripe": null, + "overrode": null, + "overrule": [["G", "D", "S"]], + "overruling": null, + "overruled": null, + "overrules": null, + "overrunning": null, + "overrun": [["S"]], + "overruns": null, + "oversample": [["D", "G"]], + "oversampled": null, + "oversampling": null, + "oversaturate": null, + "oversaw": null, + "oversea": [["S"]], + "overseas": null, + "overseeing": null, + "overseen": null, + "overseer": [["M"]], + "overseer's": null, + "oversee": [["Z", "R", "S"]], + "overseers": null, + "oversees": null, + "oversell": [["S", "G"]], + "oversells": null, + "overselling": null, + "oversensitiveness": [["S"]], + "oversensitivenesses": null, + "oversensitive": [["P"]], + "oversensitivity": null, + "oversexed": null, + "overshadow": [["G", "S", "D"]], + "overshadowing": null, + "overshadows": null, + "overshadowed": null, + "overshoe": [["S", "M"]], + "overshoes": null, + "overshoe's": null, + "overshoot": [["S", "G"]], + "overshoots": null, + "overshooting": null, + "overshot": [["S"]], + "overshots": null, + "oversight": [["S", "M"]], + "oversights": null, + "oversight's": null, + "oversimple": null, + "oversimplification": [["M"]], + "oversimplification's": null, + "oversimplify": [["G", "X", "N", "D", "S"]], + "oversimplifying": null, + "oversimplifications": null, + "oversimplified": null, + "oversimplifies": null, + "oversize": [["G", "S"]], + "oversizing": null, + "oversizes": null, + "oversleep": [["G", "S"]], + "oversleeping": null, + "oversleeps": null, + "overslept": null, + "oversoftness": [["M"]], + "oversoftness's": null, + "oversoft": [["P"]], + "oversold": null, + "overspecialization": [["M", "S"]], + "overspecialization's": null, + "overspecializations": null, + "overspecialize": [["G", "S", "D"]], + "overspecializing": null, + "overspecializes": null, + "overspecialized": null, + "overspend": [["S", "G"]], + "overspends": null, + "overspending": null, + "overspent": null, + "overspill": [["D", "M", "S", "G"]], + "overspilled": null, + "overspill's": null, + "overspills": null, + "overspilling": null, + "overspread": [["S", "G"]], + "overspreads": null, + "overspreading": null, + "overstaffed": null, + "overstatement": [["S", "M"]], + "overstatements": null, + "overstatement's": null, + "overstate": [["S", "D", "L", "G"]], + "overstates": null, + "overstated": null, + "overstating": null, + "overstay": [["G", "S", "D"]], + "overstaying": null, + "overstays": null, + "overstayed": null, + "overstepped": null, + "overstepping": null, + "overstep": [["S"]], + "oversteps": null, + "overstimulate": [["D", "S", "G"]], + "overstimulated": null, + "overstimulates": null, + "overstimulating": null, + "overstock": [["S", "G", "D"]], + "overstocks": null, + "overstocking": null, + "overstocked": null, + "overstraining": null, + "overstressed": null, + "overstretch": [["D"]], + "overstretched": null, + "overstrict": null, + "overstrike": [["G", "S"]], + "overstriking": null, + "overstrikes": null, + "overstrung": null, + "overstuffed": null, + "oversubscribe": [["S", "D", "G"]], + "oversubscribes": null, + "oversubscribed": null, + "oversubscribing": null, + "oversubtle": null, + "oversupply": [["M", "D", "S", "G"]], + "oversupply's": null, + "oversupplied": null, + "oversupplies": null, + "oversupplying": null, + "oversuspicious": null, + "overtaken": null, + "overtake": [["R", "S", "Z", "G"]], + "overtaker": null, + "overtakes": null, + "overtakers": null, + "overtaking": null, + "overtax": [["D", "S", "G"]], + "overtaxed": null, + "overtaxes": null, + "overtaxing": null, + "overthrew": null, + "overthrow": [["G", "S"]], + "overthrowing": null, + "overthrows": null, + "overthrown": null, + "overtightened": null, + "overtime": [["M", "G", "D", "S"]], + "overtime's": null, + "overtiming": null, + "overtimed": null, + "overtimes": null, + "overtire": [["D", "S", "G"]], + "overtired": null, + "overtires": null, + "overtiring": null, + "overtone": [["M", "S"]], + "overtone's": null, + "overtones": null, + "overtook": null, + "overt": [["P", "Y"]], + "overtness": null, + "overtly": null, + "overture": [["D", "S", "M", "G"]], + "overtured": null, + "overtures": null, + "overture's": null, + "overturing": null, + "overturn": [["S", "D", "G"]], + "overturns": null, + "overturned": null, + "overturning": null, + "overuse": [["D", "S", "G"]], + "overused": null, + "overuses": null, + "overusing": null, + "overvalue": [["G", "S", "D"]], + "overvaluing": null, + "overvalues": null, + "overvalued": null, + "overview": [["M", "S"]], + "overview's": null, + "overviews": null, + "overweening": null, + "overweight": [["G", "S", "D"]], + "overweighting": null, + "overweights": null, + "overweighted": null, + "overwhelm": [["G", "D", "S"]], + "overwhelming": [["Y"]], + "overwhelmed": null, + "overwhelms": null, + "overwhelmingly": null, + "overwinter": [["S", "D", "G"]], + "overwinters": null, + "overwintered": null, + "overwintering": null, + "overwork": [["G", "S", "D"]], + "overworking": null, + "overworks": null, + "overworked": null, + "overwrap": null, + "overwrite": [["S", "G"]], + "overwrites": null, + "overwriting": null, + "overwritten": null, + "overwrote": null, + "overwrought": null, + "over": [["Y", "G", "S"]], + "overing": null, + "overs": null, + "overzealousness": [["M"]], + "overzealousness's": null, + "overzealous": [["P"]], + "Ovid": [["M"]], + "Ovid's": null, + "oviduct": [["S", "M"]], + "oviducts": null, + "oviduct's": null, + "oviform": null, + "oviparous": null, + "ovoid": [["S"]], + "ovoids": null, + "ovular": null, + "ovulate": [["G", "N", "X", "D", "S"]], + "ovulating": null, + "ovulation": null, + "ovulations": null, + "ovulated": null, + "ovulates": null, + "ovulatory": null, + "ovule": [["M", "S"]], + "ovule's": null, + "ovules": null, + "ovum": [["M", "S"]], + "ovum's": null, + "ovums": null, + "ow": [["D", "Y", "G"]], + "owed": null, + "owly": null, + "owing": null, + "Owen": [["M", "S"]], + "Owen's": null, + "Owens": null, + "owe": [["S"]], + "owes": null, + "owlet": [["S", "M"]], + "owlets": null, + "owlet's": null, + "owl": [["G", "S", "M", "D", "R"]], + "owling": null, + "owls": null, + "owl's": null, + "owled": null, + "owler": null, + "owlishness": [["M"]], + "owlishness's": null, + "owlish": [["P", "Y"]], + "owlishly": null, + "owned": [["U"]], + "unowned": null, + "own": [["E", "G", "D", "S"]], + "disown": null, + "disowning": null, + "disowned": null, + "disowns": null, + "owning": null, + "owns": null, + "ownership": [["M", "S"]], + "ownership's": null, + "ownerships": null, + "owner": [["S", "M"]], + "owners": null, + "owner's": null, + "oxalate": [["M"]], + "oxalate's": null, + "oxalic": null, + "oxaloacetic": null, + "oxblood": [["S"]], + "oxbloods": null, + "oxbow": [["S", "M"]], + "oxbows": null, + "oxbow's": null, + "oxcart": [["M", "S"]], + "oxcart's": null, + "oxcarts": null, + "oxen": [["M"]], + "oxen's": null, + "oxford": [["M", "S"]], + "oxford's": null, + "oxfords": null, + "Oxford": [["M", "S"]], + "Oxford's": null, + "Oxfords": null, + "oxidant": [["S", "M"]], + "oxidants": null, + "oxidant's": null, + "oxidate": [["N", "V", "X"]], + "oxidation": [["M"]], + "oxidative": [["Y"]], + "oxidations": null, + "oxidation's": null, + "oxidatively": null, + "oxide": [["S", "M"]], + "oxides": null, + "oxide's": null, + "oxidization": [["M", "S"]], + "oxidization's": null, + "oxidizations": null, + "oxidized": [["U"]], + "unoxidized": null, + "oxidize": [["J", "D", "R", "S", "G", "Z"]], + "oxidizings": null, + "oxidizer": [["M"]], + "oxidizes": [["A"]], + "oxidizing": null, + "oxidizers": null, + "oxidizer's": null, + "reoxidizes": null, + "ox": [["M", "N", "S"]], + "ox's": null, + "oxes": null, + "Oxnard": null, + "Oxonian": null, + "oxtail": [["M"]], + "oxtail's": null, + "Oxus": [["M"]], + "Oxus's": null, + "oxyacetylene": [["M", "S"]], + "oxyacetylene's": null, + "oxyacetylenes": null, + "oxygenate": [["X", "S", "D", "M", "G", "N"]], + "oxygenations": null, + "oxygenates": null, + "oxygenated": null, + "oxygenate's": null, + "oxygenating": null, + "oxygenation": [["M"]], + "oxygenation's": null, + "oxygen": [["M", "S"]], + "oxygen's": null, + "oxygens": null, + "oxyhydroxides": null, + "oxymora": null, + "oxymoron": [["M"]], + "oxymoron's": null, + "oyster": [["G", "S", "D", "M"]], + "oystering": [["M"]], + "oysters": null, + "oystered": null, + "oyster's": null, + "oystering's": null, + "oz": null, + "Ozark": [["S", "M"]], + "Ozarks": null, + "Ozark's": null, + "Oz": [["M"]], + "Oz's": null, + "ozone": [["S", "M"]], + "ozones": null, + "ozone's": null, + "Ozymandias": [["M"]], + "Ozymandias's": null, + "Ozzie": [["M"]], + "Ozzie's": null, + "Ozzy": [["M"]], + "Ozzy's": null, + "P": null, + "PA": null, + "Pablo": [["M"]], + "Pablo's": null, + "Pablum": [["M"]], + "Pablum's": null, + "pablum": [["S"]], + "pablums": null, + "Pabst": [["M"]], + "Pabst's": null, + "pabulum": [["S", "M"]], + "pabulums": null, + "pabulum's": null, + "PAC": null, + "pace": [["D", "R", "S", "M", "Z", "G"]], + "paced": null, + "pacer": [["M"]], + "paces": null, + "pace's": null, + "pacers": null, + "pacing": null, + "Pace": [["M"]], + "Pace's": null, + "pacemaker": [["S", "M"]], + "pacemakers": null, + "pacemaker's": null, + "pacer's": null, + "pacesetter": [["M", "S"]], + "pacesetter's": null, + "pacesetters": null, + "pacesetting": null, + "Pacheco": [["M"]], + "Pacheco's": null, + "pachyderm": [["M", "S"]], + "pachyderm's": null, + "pachyderms": null, + "pachysandra": [["M", "S"]], + "pachysandra's": null, + "pachysandras": null, + "pacific": null, + "pacifically": null, + "pacification": [["M"]], + "pacification's": null, + "Pacific": [["M"]], + "Pacific's": null, + "pacifier": [["M"]], + "pacifier's": null, + "pacifism": [["M", "S"]], + "pacifism's": null, + "pacifisms": null, + "pacifistic": null, + "pacifist": [["M", "S"]], + "pacifist's": null, + "pacifists": null, + "pacify": [["N", "R", "S", "D", "G", "X", "Z"]], + "pacifies": null, + "pacified": null, + "pacifying": null, + "pacifications": null, + "pacifiers": null, + "package": [["A", "R", "S", "D", "G"]], + "repackage": null, + "repackager": null, + "repackages": null, + "repackaged": null, + "repackaging": null, + "packager": [["S"]], + "packages": [["U"]], + "packaged": [["U"]], + "packaging": [["S", "M"]], + "unpackaged": null, + "packagers": null, + "package's": null, + "unpackages": null, + "packagings": null, + "packaging's": null, + "Packard": [["S", "M"]], + "Packards": null, + "Packard's": null, + "packed": [["A", "U"]], + "repacked": null, + "unpacked": null, + "packer": [["M", "U", "S"]], + "packer's": null, + "unpacker's": null, + "unpacker": null, + "unpackers": null, + "packers": null, + "packet": [["M", "S", "D", "G"]], + "packet's": null, + "packets": null, + "packeted": null, + "packeting": null, + "pack": [["G", "Z", "S", "J", "D", "R", "M", "B"]], + "packing": [["M"]], + "packs": [["U", "A"]], + "packings": null, + "pack's": null, + "packable": null, + "packhorse": [["M"]], + "packhorse's": null, + "packinghouse": [["S"]], + "packinghouses": null, + "packing's": null, + "packsaddle": [["S", "M"]], + "packsaddles": null, + "packsaddle's": null, + "Packston": [["M"]], + "Packston's": null, + "unpacks": null, + "repacks": null, + "Packwood": [["M"]], + "Packwood's": null, + "Paco": [["M"]], + "Paco's": null, + "Pacorro": [["M"]], + "Pacorro's": null, + "pact": [["S", "M"]], + "pacts": null, + "pact's": null, + "Padang": [["M"]], + "Padang's": null, + "padded": [["U"]], + "unpadded": null, + "Paddie": [["M"]], + "Paddie's": null, + "padding": [["S", "M"]], + "paddings": null, + "padding's": null, + "paddle": [["M", "Z", "G", "R", "S", "D"]], + "paddle's": null, + "paddlers": null, + "paddling": null, + "paddler": [["M"]], + "paddles": null, + "paddled": null, + "paddler's": null, + "paddock": [["S", "D", "M", "G"]], + "paddocks": null, + "paddocked": null, + "paddock's": null, + "paddocking": null, + "Paddy": [["M"]], + "Paddy's": null, + "paddy": [["S", "M"]], + "paddies": null, + "paddy's": null, + "Padget": [["M"]], + "Padget's": null, + "Padgett": [["M"]], + "Padgett's": null, + "Padilla": [["M"]], + "Padilla's": null, + "padlock": [["S", "G", "D", "M"]], + "padlocks": null, + "padlocking": null, + "padlocked": null, + "padlock's": null, + "pad": [["M", "S"]], + "pad's": null, + "pads": null, + "Padraic": [["M"]], + "Padraic's": null, + "Padraig": [["M"]], + "Padraig's": null, + "padre": [["M", "S"]], + "padre's": null, + "padres": null, + "Padrewski": [["M"]], + "Padrewski's": null, + "Padriac": [["M"]], + "Padriac's": null, + "paean": [["M", "S"]], + "paean's": null, + "paeans": null, + "paediatrician": [["M", "S"]], + "paediatrician's": null, + "paediatricians": null, + "paediatrics": [["M"]], + "paediatrics's": null, + "paedophilia's": null, + "paella": [["S", "M"]], + "paellas": null, + "paella's": null, + "paeony": [["M"]], + "paeony's": null, + "Paganini": [["M"]], + "Paganini's": null, + "paganism": [["M", "S"]], + "paganism's": null, + "paganisms": null, + "pagan": [["S", "M"]], + "pagans": null, + "pagan's": null, + "pageantry": [["S", "M"]], + "pageantries": null, + "pageantry's": null, + "pageant": [["S", "M"]], + "pageants": null, + "pageant's": null, + "pageboy": [["S", "M"]], + "pageboys": null, + "pageboy's": null, + "paged": [["U"]], + "unpaged": null, + "pageful": null, + "Page": [["M"]], + "Page's": null, + "page": [["M", "Z", "G", "D", "R", "S"]], + "page's": null, + "pagers": null, + "paging": null, + "pager": [["M"]], + "pages": null, + "pager's": null, + "paginate": [["D", "S", "N", "G", "X"]], + "paginated": null, + "paginates": null, + "pagination": null, + "paginating": null, + "paginations": null, + "Paglia": [["M"]], + "Paglia's": null, + "pagoda": [["M", "S"]], + "pagoda's": null, + "pagodas": null, + "Pahlavi": [["M"]], + "Pahlavi's": null, + "paid": [["A", "U"]], + "repaid": null, + "unpaid": null, + "Paige": [["M"]], + "Paige's": null, + "pailful": [["S", "M"]], + "pailfuls": null, + "pailful's": null, + "Pail": [["M"]], + "Pail's": null, + "pail": [["S", "M"]], + "pails": null, + "pail's": null, + "Paine": [["M"]], + "Paine's": null, + "painfuller": null, + "painfullest": null, + "painfulness": [["M", "S"]], + "painfulness's": null, + "painfulnesses": null, + "painful": [["Y", "P"]], + "painfully": null, + "pain": [["G", "S", "D", "M"]], + "paining": null, + "pains": null, + "pained": null, + "pain's": null, + "painkiller": [["M", "S"]], + "painkiller's": null, + "painkillers": null, + "painkilling": null, + "painlessness": [["S"]], + "painlessnesses": null, + "painless": [["Y", "P"]], + "painlessly": null, + "painstaking": [["S", "Y"]], + "painstakings": null, + "painstakingly": null, + "paint": [["A", "D", "R", "Z", "G", "S"]], + "repaint": null, + "repainted": null, + "repainter": null, + "repainters": null, + "repainting": null, + "repaints": null, + "painted": [["U"]], + "painter": [["Y", "M"]], + "painters": null, + "painting": [["S", "M"]], + "paints": null, + "paintbox": [["M"]], + "paintbox's": null, + "paintbrush": [["S", "M"]], + "paintbrushes": null, + "paintbrush's": null, + "unpainted": null, + "painterly": [["P"]], + "painterliness": null, + "painter's": null, + "paintings": null, + "painting's": null, + "paint's": null, + "paintwork": null, + "paired": [["U", "A"]], + "unpaired": null, + "repaired": null, + "pair": [["J", "S", "D", "M", "G"]], + "pairings": null, + "pairs": [["A"]], + "pair's": null, + "pairing": null, + "repairs": [["E"]], + "pairwise": null, + "paisley": [["M", "S"]], + "paisley's": null, + "paisleys": null, + "pajama": [["M", "D", "S"]], + "pajama's": null, + "pajamaed": null, + "pajamas": null, + "Pakistani": [["S"]], + "Pakistanis": null, + "Pakistan": [["M"]], + "Pakistan's": null, + "palace": [["M", "S"]], + "palace's": null, + "palaces": null, + "paladin": [["M", "S"]], + "paladin's": null, + "paladins": null, + "palaeolithic": null, + "palaeontologists": null, + "palaeontology": [["M"]], + "palaeontology's": null, + "palanquin": [["M", "S"]], + "palanquin's": null, + "palanquins": null, + "palatability": [["M"]], + "palatability's": null, + "palatableness": [["M"]], + "palatableness's": null, + "palatable": [["P"]], + "palatalization": [["M", "S"]], + "palatalization's": null, + "palatalizations": null, + "palatalize": [["S", "D", "G"]], + "palatalizes": null, + "palatalized": null, + "palatalizing": null, + "palatal": [["Y", "S"]], + "palatally": null, + "palatals": null, + "palate": [["B", "M", "S"]], + "palate's": null, + "palates": null, + "palatial": [["Y"]], + "palatially": null, + "palatinate": [["S", "M"]], + "palatinates": null, + "palatinate's": null, + "Palatine": null, + "palatine": [["S"]], + "palatines": null, + "palaver": [["G", "S", "D", "M"]], + "palavering": null, + "palavers": null, + "palavered": null, + "palaver's": null, + "paleface": [["S", "M"]], + "palefaces": null, + "paleface's": null, + "Palembang": [["M"]], + "Palembang's": null, + "paleness": [["S"]], + "palenesses": null, + "Paleocene": null, + "Paleogene": null, + "paleographer": [["S", "M"]], + "paleographers": null, + "paleographer's": null, + "paleography": [["S", "M"]], + "paleographies": null, + "paleography's": null, + "paleolithic": null, + "Paleolithic": null, + "paleontologist": [["S"]], + "paleontologists": null, + "paleontology": [["M", "S"]], + "paleontology's": null, + "paleontologies": null, + "Paleozoic": null, + "Palermo": [["M"]], + "Palermo's": null, + "pale": [["S", "P", "Y"]], + "pales": null, + "palely": null, + "Palestine": [["M"]], + "Palestine's": null, + "Palestinian": [["S"]], + "Palestinians": null, + "Palestrina": [["M"]], + "Palestrina's": null, + "palette": [["M", "S"]], + "palette's": null, + "palettes": null, + "Paley": [["M"]], + "Paley's": null, + "palfrey": [["M", "S"]], + "palfrey's": null, + "palfreys": null, + "palimony": [["S"]], + "palimonies": null, + "palimpsest": [["M", "S"]], + "palimpsest's": null, + "palimpsests": null, + "palindrome": [["M", "S"]], + "palindrome's": null, + "palindromes": null, + "palindromic": null, + "paling": [["M"]], + "paling's": null, + "palisade": [["M", "G", "S", "D"]], + "palisade's": null, + "palisading": null, + "palisades": null, + "palisaded": null, + "Palisades": [["M"]], + "Palisades's": null, + "palish": null, + "Palladio": [["M"]], + "Palladio's": null, + "palladium": [["S", "M"]], + "palladiums": null, + "palladium's": null, + "pallbearer": [["S", "M"]], + "pallbearers": null, + "pallbearer's": null, + "palletized": null, + "pallet": [["S", "M", "G", "D"]], + "pallets": null, + "pallet's": null, + "palleting": null, + "palleted": null, + "pall": [["G", "S", "M", "D"]], + "palling": null, + "palls": null, + "pall's": null, + "palled": null, + "palliate": [["S", "D", "V", "N", "G", "X"]], + "palliates": null, + "palliated": null, + "palliative": [["S", "Y"]], + "palliation": [["M"]], + "palliating": null, + "palliations": null, + "palliation's": null, + "palliatives": null, + "palliatively": null, + "pallidness": [["M", "S"]], + "pallidness's": null, + "pallidnesses": null, + "pallid": [["P", "Y"]], + "pallidly": null, + "Pall": [["M"]], + "Pall's": null, + "pallor": [["M", "S"]], + "pallor's": null, + "pallors": null, + "palmate": null, + "palmer": [["M"]], + "palmer's": null, + "Palmer": [["M"]], + "Palmer's": null, + "Palmerston": [["M"]], + "Palmerston's": null, + "palmetto": [["M", "S"]], + "palmetto's": null, + "palmettos": null, + "palm": [["G", "S", "M", "D", "R"]], + "palming": null, + "palms": null, + "palm's": null, + "palmed": null, + "palmist": [["M", "S"]], + "palmist's": null, + "palmists": null, + "palmistry": [["M", "S"]], + "palmistry's": null, + "palmistries": null, + "Palm": [["M", "R"]], + "Palm's": null, + "Palmolive": [["M"]], + "Palmolive's": null, + "palmtop": [["S"]], + "palmtops": null, + "Palmyra": [["M"]], + "Palmyra's": null, + "palmy": [["R", "T"]], + "palmier": null, + "palmiest": null, + "Palo": [["M"]], + "Palo's": null, + "Paloma": [["M"]], + "Paloma's": null, + "Palomar": [["M"]], + "Palomar's": null, + "palomino": [["M", "S"]], + "palomino's": null, + "palominos": null, + "palpable": null, + "palpably": null, + "palpate": [["S", "D", "N", "G", "X"]], + "palpates": null, + "palpated": null, + "palpation": [["M"]], + "palpating": null, + "palpations": null, + "palpation's": null, + "palpitate": [["N", "G", "X", "S", "D"]], + "palpitation": [["M"]], + "palpitating": null, + "palpitations": null, + "palpitates": null, + "palpitated": null, + "palpitation's": null, + "pal": [["S", "J", "M", "D", "R", "Y", "T", "G"]], + "pals": null, + "palings": null, + "pal's": null, + "paled": null, + "paler": null, + "pally": null, + "palest": null, + "palsy": [["G", "S", "D", "M"]], + "palsying": null, + "palsies": null, + "palsied": null, + "palsy's": null, + "paltriness": [["S", "M"]], + "paltrinesses": null, + "paltriness's": null, + "paltry": [["T", "R", "P"]], + "paltriest": null, + "paltrier": null, + "paludal": null, + "Pa": [["M"]], + "Pa's": null, + "Pamela": [["M"]], + "Pamela's": null, + "Pamelina": [["M"]], + "Pamelina's": null, + "Pamella": [["M"]], + "Pamella's": null, + "pa": [["M", "H"]], + "pa's": null, + "path": [["M"]], + "Pamirs": null, + "Pam": [["M"]], + "Pam's": null, + "Pammie": [["M"]], + "Pammie's": null, + "Pammi": [["M"]], + "Pammi's": null, + "Pammy": [["M"]], + "Pammy's": null, + "pampas": [["M"]], + "pampas's": null, + "pamperer": [["M"]], + "pamperer's": null, + "pamper": [["R", "D", "S", "G"]], + "pampered": null, + "pampers": null, + "pampering": null, + "Pampers": null, + "pamphleteer": [["D", "M", "S", "G"]], + "pamphleteered": null, + "pamphleteer's": null, + "pamphleteers": null, + "pamphleteering": null, + "pamphlet": [["S", "M"]], + "pamphlets": null, + "pamphlet's": null, + "panacea": [["M", "S"]], + "panacea's": null, + "panaceas": null, + "panache": [["M", "S"]], + "panache's": null, + "panaches": null, + "Panama": [["M", "S"]], + "Panama's": null, + "Panamas": null, + "Panamanian": [["S"]], + "Panamanians": null, + "panama": [["S"]], + "panamas": null, + "pancake": [["M", "G", "S", "D"]], + "pancake's": null, + "pancaking": null, + "pancakes": null, + "pancaked": null, + "Panchito": [["M"]], + "Panchito's": null, + "Pancho": [["M"]], + "Pancho's": null, + "panchromatic": null, + "pancreas": [["M", "S"]], + "pancreas's": null, + "pancreases": null, + "pancreatic": null, + "panda": [["S", "M"]], + "pandas": null, + "panda's": null, + "pandemic": [["S"]], + "pandemics": null, + "pandemonium": [["S", "M"]], + "pandemoniums": null, + "pandemonium's": null, + "pander": [["Z", "G", "R", "D", "S"]], + "panderers": null, + "pandering": null, + "panderer": null, + "pandered": null, + "panders": null, + "Pandora": [["M"]], + "Pandora's": null, + "panegyric": [["S", "M"]], + "panegyrics": null, + "panegyric's": null, + "pane": [["K", "M", "S"]], + "propane": null, + "propane's": null, + "propanes": null, + "pane's": null, + "panes": null, + "paneling": [["M"]], + "paneling's": null, + "panelist": [["M", "S"]], + "panelist's": null, + "panelists": null, + "panelization": null, + "panelized": null, + "panel": [["J", "S", "G", "D", "M"]], + "panelings": null, + "panels": null, + "paneled": null, + "panel's": null, + "Pangaea": [["M"]], + "Pangaea's": null, + "pang": [["G", "D", "M", "S"]], + "panging": null, + "panged": null, + "pang's": null, + "pangs": null, + "pangolin": [["M"]], + "pangolin's": null, + "panhandle": [["R", "S", "D", "G", "M", "Z"]], + "panhandler": null, + "panhandles": null, + "panhandled": null, + "panhandling": null, + "panhandle's": null, + "panhandlers": null, + "panicked": null, + "panicking": null, + "panicky": [["R", "T"]], + "panickier": null, + "panickiest": null, + "panic": [["S", "M"]], + "panics": null, + "panic's": null, + "panier's": null, + "panjandrum": [["M"]], + "panjandrum's": null, + "Pankhurst": [["M"]], + "Pankhurst's": null, + "Pan": [["M"]], + "Pan's": null, + "Panmunjom": [["M"]], + "Panmunjom's": null, + "panned": null, + "pannier": [["S", "M"]], + "panniers": null, + "pannier's": null, + "panning": null, + "panoply": [["M", "S", "D"]], + "panoply's": null, + "panoplies": null, + "panoplied": null, + "panorama": [["M", "S"]], + "panorama's": null, + "panoramas": null, + "panoramic": null, + "panpipes": null, + "Pansie": [["M"]], + "Pansie's": null, + "pan": [["S", "M", "D"]], + "pans": null, + "pan's": null, + "paned": null, + "Pansy": [["M"]], + "Pansy's": null, + "pansy": [["S", "M"]], + "pansies": null, + "pansy's": null, + "Pantagruel": [["M"]], + "Pantagruel's": null, + "Pantaloon": [["M"]], + "Pantaloon's": null, + "pantaloons": null, + "pant": [["G", "D", "S"]], + "panting": null, + "panted": null, + "pants": null, + "pantheism": [["M", "S"]], + "pantheism's": null, + "pantheisms": null, + "pantheistic": null, + "pantheist": [["S"]], + "pantheists": null, + "pantheon": [["M", "S"]], + "pantheon's": null, + "pantheons": null, + "panther": [["S", "M"]], + "panthers": null, + "panther's": null, + "pantie": [["S", "M"]], + "panties": null, + "pantie's": null, + "pantiled": null, + "pantograph": [["M"]], + "pantograph's": null, + "pantomime": [["S", "D", "G", "M"]], + "pantomimes": null, + "pantomimed": null, + "pantomiming": null, + "pantomime's": null, + "pantomimic": null, + "pantomimist": [["S", "M"]], + "pantomimists": null, + "pantomimist's": null, + "pantry": [["S", "M"]], + "pantries": null, + "pantry's": null, + "pantsuit": [["S", "M"]], + "pantsuits": null, + "pantsuit's": null, + "pantyhose": null, + "pantyliner": null, + "pantywaist": [["S", "M"]], + "pantywaists": null, + "pantywaist's": null, + "Panza": [["M"]], + "Panza's": null, + "Paola": [["M"]], + "Paola's": null, + "Paoli": [["M"]], + "Paoli's": null, + "Paolina": [["M"]], + "Paolina's": null, + "Paolo": [["M"]], + "Paolo's": null, + "papacy": [["S", "M"]], + "papacies": null, + "papacy's": null, + "Papagena": [["M"]], + "Papagena's": null, + "Papageno": [["M"]], + "Papageno's": null, + "papal": [["Y"]], + "papally": null, + "papa": [["M", "S"]], + "papa's": null, + "papas": null, + "paparazzi": null, + "papaw": [["S", "M"]], + "papaws": null, + "papaw's": null, + "papaya": [["M", "S"]], + "papaya's": null, + "papayas": null, + "paperback": [["G", "D", "M", "S"]], + "paperbacking": null, + "paperbacked": null, + "paperback's": null, + "paperbacks": null, + "paperboard": [["M", "S"]], + "paperboard's": null, + "paperboards": null, + "paperboy": [["S", "M"]], + "paperboys": null, + "paperboy's": null, + "paperer": [["M"]], + "paperer's": null, + "papergirl": [["S", "M"]], + "papergirls": null, + "papergirl's": null, + "paper": [["G", "J", "M", "R", "D", "Z"]], + "papering": null, + "paperings": null, + "paper's": null, + "papered": null, + "paperers": null, + "paperhanger": [["S", "M"]], + "paperhangers": null, + "paperhanger's": null, + "paperhanging": [["S", "M"]], + "paperhangings": null, + "paperhanging's": null, + "paperiness": [["M"]], + "paperiness's": null, + "paperless": null, + "paperweight": [["M", "S"]], + "paperweight's": null, + "paperweights": null, + "paperwork": [["S", "M"]], + "paperworks": null, + "paperwork's": null, + "papery": [["P"]], + "papillae": null, + "papilla": [["M"]], + "papilla's": null, + "papillary": null, + "papist": [["M", "S"]], + "papist's": null, + "papists": null, + "papoose": [["S", "M"]], + "papooses": null, + "papoose's": null, + "Pappas": [["M"]], + "Pappas's": null, + "papped": null, + "papping": null, + "pappy": [["R", "S", "T"]], + "pappier": null, + "pappies": null, + "pappiest": null, + "paprika": [["M", "S"]], + "paprika's": null, + "paprikas": null, + "pap": [["S", "Z", "M", "N", "R"]], + "paps": null, + "papers": null, + "pap's": null, + "papen": null, + "papyri": null, + "papyrus": [["M"]], + "papyrus's": null, + "Paquito": [["M"]], + "Paquito's": null, + "parable": [["M", "G", "S", "D"]], + "parable's": null, + "parabling": null, + "parables": null, + "parabled": null, + "parabola": [["M", "S"]], + "parabola's": null, + "parabolas": null, + "parabolic": null, + "paraboloidal": [["M"]], + "paraboloidal's": null, + "paraboloid": [["M", "S"]], + "paraboloid's": null, + "paraboloids": null, + "Paracelsus": [["M"]], + "Paracelsus's": null, + "paracetamol": [["M"]], + "paracetamol's": null, + "parachuter": [["M"]], + "parachuter's": null, + "parachute": [["R", "S", "D", "M", "G"]], + "parachutes": null, + "parachuted": null, + "parachute's": null, + "parachuting": null, + "parachutist": [["M", "S"]], + "parachutist's": null, + "parachutists": null, + "Paraclete": [["M"]], + "Paraclete's": null, + "parader": [["M"]], + "parader's": null, + "parade": [["R", "S", "D", "M", "Z", "G"]], + "parades": null, + "paraded": null, + "parade's": null, + "paraders": null, + "parading": null, + "paradigmatic": null, + "paradigm": [["S", "M"]], + "paradigms": null, + "paradigm's": null, + "paradisaic": null, + "paradisaical": null, + "Paradise": [["M"]], + "Paradise's": null, + "paradise": [["M", "S"]], + "paradise's": null, + "paradises": null, + "paradoxic": null, + "paradoxicalness": [["M"]], + "paradoxicalness's": null, + "paradoxical": [["Y", "P"]], + "paradoxically": null, + "paradox": [["M", "S"]], + "paradox's": null, + "paradoxes": null, + "paraffin": [["G", "S", "M", "D"]], + "paraffining": null, + "paraffins": null, + "paraffin's": null, + "paraffined": null, + "paragon": [["S", "G", "D", "M"]], + "paragons": null, + "paragoning": null, + "paragoned": null, + "paragon's": null, + "paragrapher": [["M"]], + "paragrapher's": null, + "paragraph": [["M", "R", "D", "G"]], + "paragraph's": null, + "paragraphed": null, + "paragraphing": null, + "paragraphs": null, + "Paraguayan": [["S"]], + "Paraguayans": null, + "Paraguay": [["M"]], + "Paraguay's": null, + "parakeet": [["M", "S"]], + "parakeet's": null, + "parakeets": null, + "paralegal": [["S"]], + "paralegals": null, + "paralinguistic": null, + "parallax": [["S", "M"]], + "parallaxes": null, + "parallax's": null, + "parallel": [["D", "S", "G"]], + "paralleled": [["U"]], + "parallels": null, + "paralleling": null, + "unparalleled": null, + "parallelepiped": [["M", "S"]], + "parallelepiped's": null, + "parallelepipeds": null, + "parallelism": [["S", "M"]], + "parallelisms": null, + "parallelism's": null, + "parallelization": [["M", "S"]], + "parallelization's": null, + "parallelizations": null, + "parallelize": [["Z", "G", "D", "S", "R"]], + "parallelizers": null, + "parallelizing": null, + "parallelized": null, + "parallelizes": null, + "parallelizer": null, + "parallelogram": [["M", "S"]], + "parallelogram's": null, + "parallelograms": null, + "paralysis": [["M"]], + "paralysis's": null, + "paralytically": null, + "paralytic": [["S"]], + "paralytics": null, + "paralyzedly": [["S"]], + "paralyzedlies": null, + "paralyzed": [["Y"]], + "paralyzer": [["M"]], + "paralyzer's": null, + "paralyze": [["Z", "G", "D", "R", "S"]], + "paralyzers": null, + "paralyzing": [["Y"]], + "paralyzes": null, + "paralyzingly": [["S"]], + "paralyzinglies": null, + "paramagnetic": null, + "paramagnet": [["M"]], + "paramagnet's": null, + "Paramaribo": [["M"]], + "Paramaribo's": null, + "paramecia": null, + "paramecium": [["M"]], + "paramecium's": null, + "paramedical": [["S"]], + "paramedicals": null, + "paramedic": [["M", "S"]], + "paramedic's": null, + "paramedics": null, + "parameterization": [["S", "M"]], + "parameterizations": null, + "parameterization's": null, + "parameterize": [["B", "S", "D", "G"]], + "parameterizable": null, + "parameterizes": null, + "parameterized": [["U"]], + "parameterizing": null, + "unparameterized": null, + "parameterless": null, + "parameter": [["S", "M"]], + "parameters": null, + "parameter's": null, + "parametric": null, + "parametrically": null, + "parametrization": null, + "parametrize": [["D", "S"]], + "parametrized": null, + "parametrizes": null, + "paramilitary": [["S"]], + "paramilitaries": null, + "paramount": [["S"]], + "paramounts": null, + "paramour": [["M", "S"]], + "paramour's": null, + "paramours": null, + "para": [["M", "S"]], + "para's": null, + "paras": null, + "Paramus": [["M"]], + "Paramus's": null, + "Paran�": null, + "paranoiac": [["S"]], + "paranoiacs": null, + "paranoia": [["S", "M"]], + "paranoias": null, + "paranoia's": null, + "paranoid": [["S"]], + "paranoids": null, + "paranormal": [["S", "Y"]], + "paranormals": null, + "paranormally": null, + "parapet": [["S", "M", "D"]], + "parapets": null, + "parapet's": null, + "parapeted": null, + "paraphernalia": null, + "paraphrase": [["G", "M", "S", "R", "D"]], + "paraphrasing": null, + "paraphrase's": null, + "paraphrases": null, + "paraphraser": [["M"]], + "paraphrased": null, + "paraphraser's": null, + "paraplegia": [["M", "S"]], + "paraplegia's": null, + "paraplegias": null, + "paraplegic": [["S"]], + "paraplegics": null, + "paraprofessional": [["S", "M"]], + "paraprofessionals": null, + "paraprofessional's": null, + "parapsychologist": [["S"]], + "parapsychologists": null, + "parapsychology": [["M", "S"]], + "parapsychology's": null, + "parapsychologies": null, + "paraquat": [["S"]], + "paraquats": null, + "parasite": [["S", "M"]], + "parasites": null, + "parasite's": null, + "parasitically": null, + "parasitic": [["S"]], + "parasitics": null, + "parasitism": [["S", "M"]], + "parasitisms": null, + "parasitism's": null, + "parasitologist": [["M"]], + "parasitologist's": null, + "parasitology": [["M"]], + "parasitology's": null, + "parasol": [["S", "M"]], + "parasols": null, + "parasol's": null, + "parasympathetic": [["S"]], + "parasympathetics": null, + "parathion": [["S", "M"]], + "parathions": null, + "parathion's": null, + "parathyroid": [["S"]], + "parathyroids": null, + "paratrooper": [["M"]], + "paratrooper's": null, + "paratroop": [["R", "S", "Z"]], + "paratroops": null, + "paratroopers": null, + "paratyphoid": [["S"]], + "paratyphoids": null, + "parboil": [["D", "S", "G"]], + "parboiled": null, + "parboils": null, + "parboiling": null, + "parceled": [["U"]], + "unparceled": null, + "parceling": [["M"]], + "parceling's": null, + "parcel": [["S", "G", "M", "D"]], + "parcels": null, + "parcel's": null, + "Parcheesi": [["M"]], + "Parcheesi's": null, + "parch": [["G", "S", "D", "L"]], + "parching": null, + "parches": null, + "parched": null, + "parchment": [["S", "M"]], + "parchments": null, + "parchment's": null, + "PARC": [["M"]], + "PARC's": null, + "pardonableness": [["M"]], + "pardonableness's": null, + "pardonable": [["U"]], + "unpardonable": null, + "pardonably": [["U"]], + "unpardonably": null, + "pardoner": [["M"]], + "pardoner's": null, + "pardon": [["Z", "B", "G", "R", "D", "S"]], + "pardoners": null, + "pardoning": null, + "pardoned": null, + "pardons": null, + "paregoric": [["S", "M"]], + "paregorics": null, + "paregoric's": null, + "parentage": [["M", "S"]], + "parentage's": null, + "parentages": null, + "parental": [["Y"]], + "parentally": null, + "parenteral": null, + "parentheses": null, + "parenthesis": [["M"]], + "parenthesis's": null, + "parenthesize": [["G", "S", "D"]], + "parenthesizing": null, + "parenthesizes": null, + "parenthesized": null, + "parenthetic": null, + "parenthetical": [["Y"]], + "parenthetically": null, + "parenthood": [["M", "S"]], + "parenthood's": null, + "parenthoods": null, + "parent": [["M", "D", "G", "J", "S"]], + "parent's": null, + "parented": null, + "parenting": null, + "parentings": null, + "parents": null, + "pare": [["S"]], + "pares": [["S"]], + "paresis": [["M"]], + "paresis's": null, + "pareses": null, + "Pareto": [["M"]], + "Pareto's": null, + "parfait": [["S", "M"]], + "parfaits": null, + "parfait's": null, + "pariah": [["M"]], + "pariah's": null, + "pariahs": null, + "parietal": [["S"]], + "parietals": null, + "parimutuel": [["S"]], + "parimutuels": null, + "paring": [["M"]], + "paring's": null, + "parishioner": [["S", "M"]], + "parishioners": null, + "parishioner's": null, + "parish": [["M", "S"]], + "parish's": null, + "parishes": null, + "Parisian": [["S", "M"]], + "Parisians": null, + "Parisian's": null, + "Paris": [["M"]], + "Paris's": null, + "parity": [["E", "S", "M"]], + "disparity": null, + "disparities": null, + "disparity's": null, + "parities": null, + "parity's": null, + "parka": [["M", "S"]], + "parka's": null, + "parkas": null, + "Parke": [["M"]], + "Parke's": null, + "Parker": [["M"]], + "Parker's": null, + "Parkersburg": [["M"]], + "Parkersburg's": null, + "park": [["G", "J", "Z", "D", "R", "M", "S"]], + "parking": [["M"]], + "parkings": null, + "parkers": null, + "parked": null, + "parker": null, + "park's": null, + "parks": null, + "Parkhouse": [["M"]], + "Parkhouse's": null, + "parking's": null, + "Parkinson": [["M"]], + "Parkinson's": null, + "parkish": null, + "parkland": [["M"]], + "parkland's": null, + "parklike": null, + "Parkman": null, + "Park": [["R", "M", "S"]], + "Park's": null, + "Parks": null, + "parkway": [["M", "S"]], + "parkway's": null, + "parkways": null, + "parlance": [["S", "M"]], + "parlances": null, + "parlance's": null, + "parlay": [["D", "G", "S"]], + "parlayed": null, + "parlaying": null, + "parlays": null, + "parley": [["M", "D", "S", "G"]], + "parley's": null, + "parleyed": null, + "parleys": null, + "parleying": null, + "parliamentarian": [["S", "M"]], + "parliamentarians": null, + "parliamentarian's": null, + "parliamentary": [["U"]], + "unparliamentary": null, + "parliament": [["M", "S"]], + "parliament's": null, + "parliaments": null, + "Parliament": [["M", "S"]], + "Parliament's": null, + "Parliaments": null, + "parlor": [["S", "M"]], + "parlors": null, + "parlor's": null, + "parlous": null, + "Parmesan": [["S"]], + "Parmesans": null, + "parmigiana": null, + "Parnassus": [["S", "M"]], + "Parnassuses": null, + "Parnassus's": null, + "Parnell": [["M"]], + "Parnell's": null, + "parochialism": [["S", "M"]], + "parochialisms": null, + "parochialism's": null, + "parochiality": null, + "parochial": [["Y"]], + "parochially": null, + "parodied": [["U"]], + "unparodied": null, + "parodist": [["S", "M"]], + "parodists": null, + "parodist's": null, + "parody": [["S", "D", "G", "M"]], + "parodies": null, + "parodying": null, + "parody's": null, + "parolee": [["M", "S"]], + "parolee's": null, + "parolees": null, + "parole": [["M", "S", "D", "G"]], + "parole's": null, + "paroles": null, + "paroled": null, + "paroling": null, + "paroxysmal": null, + "paroxysm": [["M", "S"]], + "paroxysm's": null, + "paroxysms": null, + "parquetry": [["S", "M"]], + "parquetries": null, + "parquetry's": null, + "parquet": [["S", "M", "D", "G"]], + "parquets": null, + "parquet's": null, + "parqueted": null, + "parqueting": null, + "parrakeet's": null, + "parred": null, + "parricidal": null, + "parricide": [["M", "S"]], + "parricide's": null, + "parricides": null, + "parring": null, + "Parrish": [["M"]], + "Parrish's": null, + "Parr": [["M"]], + "Parr's": null, + "Parrnell": [["M"]], + "Parrnell's": null, + "parrot": [["G", "M", "D", "S"]], + "parroting": null, + "parrot's": null, + "parroted": null, + "parrots": null, + "parrotlike": null, + "parry": [["G", "S", "D"]], + "parrying": null, + "parries": null, + "parried": null, + "Parry": [["M"]], + "Parry's": null, + "parse": null, + "parsec": [["S", "M"]], + "parsecs": null, + "parsec's": null, + "parsed": [["U"]], + "unparsed": null, + "Parsee's": null, + "parser": [["M"]], + "parser's": null, + "Parsifal": [["M"]], + "Parsifal's": null, + "parsimonious": [["Y"]], + "parsimoniously": null, + "parsimony": [["S", "M"]], + "parsimonies": null, + "parsimony's": null, + "pars": [["J", "D", "S", "R", "G", "Z"]], + "parsings": null, + "parses": null, + "parsing": null, + "parsers": null, + "parsley": [["M", "S"]], + "parsley's": null, + "parsleys": null, + "parsnip": [["M", "S"]], + "parsnip's": null, + "parsnips": null, + "parsonage": [["M", "S"]], + "parsonage's": null, + "parsonages": null, + "parson": [["M", "S"]], + "parson's": null, + "parsons": null, + "Parsons": [["M"]], + "Parsons's": null, + "partaken": null, + "partaker": [["M"]], + "partaker's": null, + "partake": [["Z", "G", "S", "R"]], + "partakers": null, + "partaking": null, + "partakes": null, + "part": [["C", "D", "G", "S"]], + "departed": null, + "departing": null, + "departs": null, + "parted": null, + "parting": [["M", "S"]], + "parts": null, + "parterre": [["M", "S"]], + "parterre's": null, + "parterres": null, + "parter": [["S"]], + "parters": null, + "parthenogeneses": null, + "parthenogenesis": [["M"]], + "parthenogenesis's": null, + "Parthenon": [["M"]], + "Parthenon's": null, + "Parthia": [["M"]], + "Parthia's": null, + "partiality": [["M", "S"]], + "partiality's": null, + "partialities": null, + "partial": [["S", "Y"]], + "partials": null, + "partially": null, + "participant": [["M", "S"]], + "participant's": null, + "participants": null, + "participate": [["N", "G", "V", "D", "S", "X"]], + "participation": [["M"]], + "participating": null, + "participative": null, + "participated": null, + "participates": null, + "participations": null, + "participation's": null, + "participator": [["S"]], + "participators": null, + "participatory": null, + "participial": [["Y"]], + "participially": null, + "participle": [["M", "S"]], + "participle's": null, + "participles": null, + "particleboard": [["S"]], + "particleboards": null, + "particle": [["M", "S"]], + "particle's": null, + "particles": null, + "particolored": null, + "particularistic": null, + "particularity": [["S", "M"]], + "particularities": null, + "particularity's": null, + "particularization": [["M", "S"]], + "particularization's": null, + "particularizations": null, + "particularize": [["G", "S", "D"]], + "particularizing": null, + "particularizes": null, + "particularized": null, + "particular": [["S", "Y"]], + "particulars": null, + "particularly": null, + "particulate": [["S"]], + "particulates": null, + "parting's": null, + "partings": null, + "partisanship": [["S", "M"]], + "partisanships": null, + "partisanship's": null, + "partisan": [["S", "M"]], + "partisans": null, + "partisan's": null, + "partition": [["A", "M", "R", "D", "G", "S"]], + "repartition": [["Z"]], + "repartition's": null, + "repartitioner": null, + "repartitioned": null, + "repartitioning": null, + "repartitions": null, + "partition's": null, + "partitioner": [["M"]], + "partitioned": [["U"]], + "partitioning": null, + "partitions": null, + "unpartitioned": null, + "partitioner's": null, + "partitive": [["S"]], + "partitives": null, + "partizan's": null, + "partly": null, + "partner": [["D", "M", "G", "S"]], + "partnered": null, + "partner's": null, + "partnering": null, + "partners": null, + "partnership": [["S", "M"]], + "partnerships": null, + "partnership's": null, + "partook": null, + "partridge": [["M", "S"]], + "partridge's": null, + "partridges": null, + "part's": null, + "parturition": [["S", "M"]], + "parturitions": null, + "parturition's": null, + "partway": null, + "party": [["R", "S", "D", "M", "G"]], + "partier": null, + "parties": null, + "partied": null, + "party's": null, + "partying": null, + "parvenu": [["S", "M"]], + "parvenus": null, + "parvenu's": null, + "par": [["Z", "G", "S", "J", "B", "M", "D", "R"]], + "parers": null, + "parings": null, + "par's": null, + "pared": null, + "parer": null, + "Pasadena": [["M"]], + "Pasadena's": null, + "PASCAL": null, + "Pascale": [["M"]], + "Pascale's": null, + "Pascal": [["M"]], + "Pascal's": null, + "pascal": [["S", "M"]], + "pascals": null, + "pascal's": null, + "paschal": [["S"]], + "paschals": null, + "pasha": [["M", "S"]], + "pasha's": null, + "pashas": null, + "Paso": [["M"]], + "Paso's": null, + "Pasquale": [["M"]], + "Pasquale's": null, + "pas": [["S"]], + "pases": null, + "passably": null, + "passage": [["M", "G", "S", "D"]], + "passage's": null, + "passaging": null, + "passages": null, + "passaged": null, + "passageway": [["M", "S"]], + "passageway's": null, + "passageways": null, + "Passaic": [["M"]], + "Passaic's": null, + "passband": null, + "passbook": [["M", "S"]], + "passbook's": null, + "passbooks": null, + "passel": [["M", "S"]], + "passel's": null, + "passels": null, + "pass�": [["M"]], + "pass�'s": null, + "passenger": [["M", "Y", "S"]], + "passenger's": null, + "passengerly": null, + "passengers": null, + "passerby": null, + "passer": [["M"]], + "passer's": null, + "passersby": null, + "passim": null, + "passing": [["Y"]], + "passingly": null, + "passionated": null, + "passionate": [["E", "Y", "P"]], + "dispassionate": null, + "dispassionately": null, + "dispassionateness": null, + "passionately": null, + "passionateness": [["E", "M"]], + "dispassionateness's": null, + "passionateness's": null, + "passionates": null, + "passionating": null, + "passioned": null, + "passionflower": [["M", "S"]], + "passionflower's": null, + "passionflowers": null, + "passioning": null, + "passionless": null, + "passion": [["S", "E", "M"]], + "passions": null, + "dispassions": null, + "dispassion": null, + "dispassion's": null, + "passion's": null, + "Passion": [["S", "M"]], + "Passions": null, + "Passion's": null, + "passivated": null, + "passiveness": [["S"]], + "passivenesses": null, + "passive": [["S", "Y", "P"]], + "passives": null, + "passively": null, + "passivity": [["S"]], + "passivities": null, + "pass": [["J", "G", "V", "B", "Z", "D", "S", "R"]], + "passings": null, + "passable": null, + "passers": null, + "passed": null, + "passes": null, + "passkey": [["S", "M"]], + "passkeys": null, + "passkey's": null, + "passmark": null, + "passover": null, + "Passover": [["M", "S"]], + "Passover's": null, + "Passovers": null, + "passport": [["S", "M"]], + "passports": null, + "passport's": null, + "password": [["S", "D", "M"]], + "passwords": null, + "passworded": null, + "password's": null, + "pasta": [["M", "S"]], + "pasta's": null, + "pastas": null, + "pasteboard": [["S", "M"]], + "pasteboards": null, + "pasteboard's": null, + "pasted": [["U", "A"]], + "unpasted": null, + "repasted": null, + "pastel": [["M", "S"]], + "pastel's": null, + "pastels": null, + "paste": [["M", "S"]], + "paste's": null, + "pastes": null, + "Pasternak": [["M"]], + "Pasternak's": null, + "pastern": [["S", "M"]], + "pasterns": null, + "pastern's": null, + "pasteup": null, + "pasteurization": [["M", "S"]], + "pasteurization's": null, + "pasteurizations": null, + "pasteurized": [["U"]], + "unpasteurized": null, + "pasteurizer": [["M"]], + "pasteurizer's": null, + "pasteurize": [["R", "S", "D", "G", "Z"]], + "pasteurizes": null, + "pasteurizing": null, + "pasteurizers": null, + "Pasteur": [["M"]], + "Pasteur's": null, + "pastiche": [["M", "S"]], + "pastiche's": null, + "pastiches": null, + "pastille": [["S", "M"]], + "pastilles": null, + "pastille's": null, + "pastime": [["S", "M"]], + "pastimes": null, + "pastime's": null, + "pastiness": [["S", "M"]], + "pastinesses": null, + "pastiness's": null, + "pastoralization": [["M"]], + "pastoralization's": null, + "pastoral": [["S", "P", "Y"]], + "pastorals": null, + "pastoralness": null, + "pastorally": null, + "pastorate": [["M", "S"]], + "pastorate's": null, + "pastorates": null, + "pastor": [["G", "S", "D", "M"]], + "pastoring": null, + "pastors": null, + "pastored": null, + "pastor's": null, + "past": [["P", "G", "M", "D", "R", "S"]], + "pastness": null, + "pasting": null, + "past's": [["A"]], + "paster": null, + "pasts": [["A"]], + "pastrami": [["M", "S"]], + "pastrami's": null, + "pastramis": null, + "pastry": [["S", "M"]], + "pastries": null, + "pastry's": null, + "repast's": null, + "repasts": null, + "pasturage": [["S", "M"]], + "pasturages": null, + "pasturage's": null, + "pasture": [["M", "G", "S", "R", "D"]], + "pasture's": null, + "pasturing": null, + "pastures": null, + "pasturer": [["M"]], + "pastured": null, + "pasturer's": null, + "pasty": [["P", "T", "R", "S"]], + "pastiest": null, + "pastier": null, + "pasties": null, + "Patagonia": [["M"]], + "Patagonia's": null, + "Patagonian": [["S"]], + "Patagonians": null, + "patch": [["E", "G", "R", "S", "D"]], + "dispatching": null, + "dispatcher": null, + "dispatches": null, + "dispatched": null, + "patching": null, + "patcher": [["E", "M"]], + "patches": null, + "patched": null, + "dispatcher's": null, + "patcher's": null, + "patchily": null, + "patchiness": [["S"]], + "patchinesses": null, + "patch's": null, + "patchwork": [["R", "M", "S", "Z"]], + "patchworker": null, + "patchwork's": null, + "patchworks": null, + "patchworkers": null, + "patchy": [["P", "R", "T"]], + "patchier": null, + "patchiest": null, + "patellae": null, + "patella": [["M", "S"]], + "patella's": null, + "patellas": null, + "Patel": [["M"]], + "Patel's": null, + "Pate": [["M"]], + "Pate's": null, + "paten": [["M"]], + "paten's": null, + "Paten": [["M"]], + "Paten's": null, + "patentee": [["S", "M"]], + "patentees": null, + "patentee's": null, + "patent": [["Z", "G", "M", "R", "D", "Y", "S", "B"]], + "patenters": null, + "patenting": null, + "patent's": null, + "patenter": null, + "patented": null, + "patently": null, + "patents": null, + "patentable": null, + "paterfamilias": [["S", "M"]], + "paterfamiliases": null, + "paterfamilias's": null, + "pater": [["M"]], + "pater's": null, + "paternalism": [["M", "S"]], + "paternalism's": null, + "paternalisms": null, + "paternalist": null, + "paternalistic": null, + "paternal": [["Y"]], + "paternally": null, + "paternity": [["S", "M"]], + "paternities": null, + "paternity's": null, + "paternoster": [["S", "M"]], + "paternosters": null, + "paternoster's": null, + "Paterson": [["M"]], + "Paterson's": null, + "pate": [["S", "M"]], + "pates": null, + "pate's": null, + "pathetic": null, + "pathetically": null, + "pathfinder": [["M", "S"]], + "pathfinder's": null, + "pathfinders": null, + "pathless": [["P"]], + "pathlessness": null, + "path's": null, + "pathname": [["S", "M"]], + "pathnames": null, + "pathname's": null, + "pathogenesis": [["M"]], + "pathogenesis's": null, + "pathogenic": null, + "pathogen": [["S", "M"]], + "pathogens": null, + "pathogen's": null, + "pathologic": null, + "pathological": [["Y"]], + "pathologically": null, + "pathologist": [["M", "S"]], + "pathologist's": null, + "pathologists": null, + "pathology": [["S", "M"]], + "pathologies": null, + "pathology's": null, + "pathos": [["S", "M"]], + "pathoses": null, + "pathos's": null, + "paths": null, + "pathway": [["M", "S"]], + "pathway's": null, + "pathways": null, + "Patience": [["M"]], + "Patience's": null, + "patience": [["S", "M"]], + "patiences": null, + "patience's": null, + "patient": [["M", "R", "Y", "T", "S"]], + "patient's": [["I"]], + "patienter": null, + "patiently": null, + "patientest": null, + "patients": [["I"]], + "inpatient's": null, + "inpatients": null, + "patina": [["S", "M"]], + "patinas": null, + "patina's": null, + "patine": null, + "Patin": [["M"]], + "Patin's": null, + "patio": [["M", "S"]], + "patio's": null, + "patios": null, + "Pat": [["M", "N"]], + "Pat's": null, + "pat": [["M", "N", "D", "R", "S"]], + "pat's": null, + "pated": null, + "pats": null, + "Patna": [["M"]], + "Patna's": null, + "patois": [["M"]], + "patois's": null, + "Paton": [["M"]], + "Paton's": null, + "patresfamilias": null, + "patriarchal": null, + "patriarchate": [["M", "S"]], + "patriarchate's": null, + "patriarchates": null, + "patriarch": [["M"]], + "patriarch's": null, + "patriarchs": null, + "patriarchy": [["M", "S"]], + "patriarchy's": null, + "patriarchies": null, + "Patrica": [["M"]], + "Patrica's": null, + "Patrice": [["M"]], + "Patrice's": null, + "Patricia": [["M"]], + "Patricia's": null, + "patrician": [["M", "S"]], + "patrician's": null, + "patricians": null, + "patricide": [["M", "S"]], + "patricide's": null, + "patricides": null, + "Patricio": [["M"]], + "Patricio's": null, + "Patrick": [["M"]], + "Patrick's": null, + "Patric": [["M"]], + "Patric's": null, + "patrimonial": null, + "patrimony": [["S", "M"]], + "patrimonies": null, + "patrimony's": null, + "patriotically": null, + "patriotic": [["U"]], + "unpatriotic": null, + "patriotism": [["S", "M"]], + "patriotisms": null, + "patriotism's": null, + "patriot": [["S", "M"]], + "patriots": null, + "patriot's": null, + "patristic": [["S"]], + "patristics": null, + "Patrizia": [["M"]], + "Patrizia's": null, + "Patrizio": [["M"]], + "Patrizio's": null, + "Patrizius": [["M"]], + "Patrizius's": null, + "patrolled": null, + "patrolling": null, + "patrolman": [["M"]], + "patrolman's": null, + "patrolmen": null, + "patrol": [["M", "S"]], + "patrol's": null, + "patrols": null, + "patrolwoman": null, + "patrolwomen": null, + "patronage": [["M", "S"]], + "patronage's": null, + "patronages": null, + "patroness": [["S"]], + "patronesses": null, + "patronization": null, + "patronized": [["U"]], + "unpatronized": null, + "patronize": [["G", "Z", "R", "S", "D", "J"]], + "patronizing": [["Y", "M"]], + "patronizers": null, + "patronizer": [["M"]], + "patronizes": [["A"]], + "patronizings": null, + "patronizer's": null, + "repatronizes": null, + "patronizing's": [["U"]], + "unpatronizing's": null, + "patronizingly": null, + "patronymically": null, + "patronymic": [["S"]], + "patronymics": null, + "patron": [["Y", "M", "S"]], + "patronly": null, + "patron's": null, + "patrons": null, + "patroon": [["M", "S"]], + "patroon's": null, + "patroons": null, + "patsy": [["S", "M"]], + "patsies": null, + "patsy's": null, + "Patsy": [["S", "M"]], + "Patsies": null, + "Patsy's": null, + "patted": null, + "Patten": [["M"]], + "Patten's": null, + "patten": [["M", "S"]], + "patten's": null, + "pattens": null, + "patterer": [["M"]], + "patterer's": null, + "pattern": [["G", "S", "D", "M"]], + "patterning": null, + "patterns": null, + "patterned": null, + "pattern's": null, + "patternless": null, + "patter": [["R", "D", "S", "G", "J"]], + "pattered": null, + "patters": null, + "pattering": null, + "patterings": null, + "Patterson": [["M"]], + "Patterson's": null, + "Pattie": [["M"]], + "Pattie's": null, + "Patti": [["M"]], + "Patti's": null, + "patting": null, + "Pattin": [["M"]], + "Pattin's": null, + "Patton": [["M"]], + "Patton's": null, + "Patty": [["M"]], + "Patty's": null, + "patty": [["S", "M"]], + "patties": null, + "patty's": null, + "paucity": [["S", "M"]], + "paucities": null, + "paucity's": null, + "Paula": [["M"]], + "Paula's": null, + "Paule": [["M"]], + "Paule's": null, + "Pauletta": [["M"]], + "Pauletta's": null, + "Paulette": [["M"]], + "Paulette's": null, + "Paulie": [["M"]], + "Paulie's": null, + "Pauli": [["M"]], + "Pauli's": null, + "Paulina": [["M"]], + "Paulina's": null, + "Pauline": null, + "Pauling": [["M"]], + "Pauling's": null, + "Paulita": [["M"]], + "Paulita's": null, + "Paul": [["M", "G"]], + "Paul's": null, + "Paulo": [["M"]], + "Paulo's": null, + "Paulsen": [["M"]], + "Paulsen's": null, + "Paulson": [["M"]], + "Paulson's": null, + "Paulus": [["M"]], + "Paulus's": null, + "Pauly": [["M"]], + "Pauly's": null, + "paunch": [["G", "M", "S", "D"]], + "paunching": null, + "paunch's": null, + "paunches": null, + "paunched": null, + "paunchiness": [["M"]], + "paunchiness's": null, + "paunchy": [["R", "T", "P"]], + "paunchier": null, + "paunchiest": null, + "pauperism": [["S", "M"]], + "pauperisms": null, + "pauperism's": null, + "pauperize": [["S", "D", "G"]], + "pauperizes": null, + "pauperized": null, + "pauperizing": null, + "pauper": [["S", "G", "D", "M"]], + "paupers": null, + "paupering": null, + "paupered": null, + "pauper's": null, + "pause": [["D", "S", "G"]], + "paused": null, + "pauses": null, + "pausing": null, + "Pavarotti": null, + "paved": [["U", "A"]], + "unpaved": null, + "repaved": null, + "pave": [["G", "D", "R", "S", "J", "L"]], + "paving": [["A"]], + "paver": [["M"]], + "paves": [["A"]], + "pavings": null, + "pavement": [["S", "G", "D", "M"]], + "Pavel": [["M"]], + "Pavel's": null, + "pavements": null, + "pavementing": null, + "pavemented": null, + "pavement's": null, + "paver's": null, + "repaves": null, + "Pavia": [["M"]], + "Pavia's": null, + "pavilion": [["S", "M", "D", "G"]], + "pavilions": null, + "pavilion's": null, + "pavilioned": null, + "pavilioning": null, + "repaving": null, + "paving's": null, + "Pavla": [["M"]], + "Pavla's": null, + "Pavlova": [["M", "S"]], + "Pavlova's": null, + "Pavlovas": null, + "Pavlovian": null, + "Pavlov": [["M"]], + "Pavlov's": null, + "pawl": [["S", "M"]], + "pawls": null, + "pawl's": null, + "paw": [["M", "D", "S", "G"]], + "paw's": null, + "pawed": null, + "paws": null, + "pawing": null, + "pawnbroker": [["S", "M"]], + "pawnbrokers": null, + "pawnbroker's": null, + "pawnbroking": [["S"]], + "pawnbrokings": null, + "Pawnee": [["S", "M"]], + "Pawnees": null, + "Pawnee's": null, + "pawner": [["M"]], + "pawner's": null, + "pawn": [["G", "S", "D", "R", "M"]], + "pawning": null, + "pawns": null, + "pawned": null, + "pawn's": null, + "pawnshop": [["M", "S"]], + "pawnshop's": null, + "pawnshops": null, + "pawpaw's": null, + "Pawtucket": [["M"]], + "Pawtucket's": null, + "paxes": null, + "Paxon": [["M"]], + "Paxon's": null, + "Paxton": [["M"]], + "Paxton's": null, + "payable": [["S"]], + "payables": null, + "pay": [["A", "G", "S", "L", "B"]], + "repay": null, + "repaying": null, + "repays": null, + "repayment": null, + "repayable": null, + "paying": null, + "pays": null, + "payment": [["A", "S", "M"]], + "payback": [["S"]], + "paybacks": null, + "paycheck": [["S", "M"]], + "paychecks": null, + "paycheck's": null, + "payday": [["M", "S"]], + "payday's": null, + "paydays": null, + "payed": null, + "payee": [["S", "M"]], + "payees": null, + "payee's": null, + "payer": [["S", "M"]], + "payers": null, + "payer's": null, + "payload": [["S", "M"]], + "payloads": null, + "payload's": null, + "paymaster": [["S", "M"]], + "paymasters": null, + "paymaster's": null, + "repayments": null, + "repayment's": null, + "payments": null, + "payment's": null, + "Payne": [["S", "M"]], + "Paynes": null, + "Payne's": null, + "payoff": [["M", "S"]], + "payoff's": null, + "payoffs": null, + "payola": [["M", "S"]], + "payola's": null, + "payolas": null, + "payout": [["S"]], + "payouts": null, + "payroll": [["M", "S"]], + "payroll's": null, + "payrolls": null, + "payslip": [["S"]], + "payslips": null, + "Payson": [["M"]], + "Payson's": null, + "Payton": [["M"]], + "Payton's": null, + "Paz": [["M"]], + "Paz's": null, + "Pb": [["M"]], + "Pb's": null, + "PBS": null, + "PBX": null, + "PCB": null, + "PC": [["M"]], + "PC's": null, + "PCP": null, + "PCs": null, + "pct": null, + "pd": null, + "PD": null, + "Pd": [["M"]], + "Pd's": null, + "PDP": null, + "PDQ": null, + "PDT": null, + "PE": null, + "Peabody": [["M"]], + "Peabody's": null, + "peaceableness": [["M"]], + "peaceableness's": null, + "peaceable": [["P"]], + "peaceably": null, + "peacefuller": null, + "peacefullest": null, + "peacefulness": [["S"]], + "peacefulnesses": null, + "peaceful": [["P", "Y"]], + "peacefully": null, + "peace": [["G", "M", "D", "S"]], + "peacing": null, + "peace's": null, + "peaced": null, + "peaces": null, + "peacekeeping": [["S"]], + "peacekeepings": null, + "Peace": [["M"]], + "Peace's": null, + "peacemaker": [["M", "S"]], + "peacemaker's": null, + "peacemakers": null, + "peacemaking": [["M", "S"]], + "peacemaking's": null, + "peacemakings": null, + "peacetime": [["M", "S"]], + "peacetime's": null, + "peacetimes": null, + "peach": [["G", "S", "D", "M"]], + "peaching": null, + "peaches": null, + "peached": null, + "peach's": null, + "Peachtree": [["M"]], + "Peachtree's": null, + "peachy": [["R", "T"]], + "peachier": null, + "peachiest": null, + "peacock": [["S", "G", "M", "D"]], + "peacocks": null, + "peacocking": null, + "peacock's": null, + "peacocked": null, + "Peadar": [["M"]], + "Peadar's": null, + "peafowl": [["S", "M"]], + "peafowls": null, + "peafowl's": null, + "peahen": [["M", "S"]], + "peahen's": null, + "peahens": null, + "peaked": [["P"]], + "peakedness": null, + "peakiness": [["M"]], + "peakiness's": null, + "peak": [["S", "G", "D", "M"]], + "peaks": null, + "peaking": null, + "peak's": null, + "peaky": [["P"]], + "pealed": [["A"]], + "repealed": null, + "Peale": [["M"]], + "Peale's": null, + "peal": [["M", "D", "S", "G"]], + "peal's": null, + "peals": [["A"]], + "pealing": null, + "repeals": null, + "pea": [["M", "S"]], + "pea's": null, + "peas": null, + "peanut": [["S", "M"]], + "peanuts": null, + "peanut's": null, + "Pearce": [["M"]], + "Pearce's": null, + "Pearla": [["M"]], + "Pearla's": null, + "Pearle": [["M"]], + "Pearle's": null, + "pearler": [["M"]], + "pearler's": null, + "Pearlie": [["M"]], + "Pearlie's": null, + "Pearline": [["M"]], + "Pearline's": null, + "Pearl": [["M"]], + "Pearl's": null, + "pearl": [["S", "G", "R", "D", "M"]], + "pearls": null, + "pearling": null, + "pearled": null, + "pearl's": null, + "pearly": [["T", "R", "S"]], + "pearliest": null, + "pearlier": null, + "pearlies": null, + "Pearson": [["M"]], + "Pearson's": null, + "pear": [["S", "Y", "M"]], + "pears": null, + "pear's": null, + "peartrees": null, + "Peary": [["M"]], + "Peary's": null, + "peasanthood": null, + "peasantry": [["S", "M"]], + "peasantries": null, + "peasantry's": null, + "peasant": [["S", "M"]], + "peasants": null, + "peasant's": null, + "peashooter": [["M", "S"]], + "peashooter's": null, + "peashooters": null, + "peats": [["A"]], + "repeats": null, + "peat": [["S", "M"]], + "peat's": null, + "peaty": [["T", "R"]], + "peatiest": null, + "peatier": null, + "pebble": [["M", "G", "S", "D"]], + "pebble's": null, + "pebbling": [["M"]], + "pebbles": null, + "pebbled": null, + "pebbling's": null, + "pebbly": [["T", "R"]], + "pebbliest": null, + "pebblier": null, + "Pebrook": [["M"]], + "Pebrook's": null, + "pecan": [["S", "M"]], + "pecans": null, + "pecan's": null, + "peccadilloes": null, + "peccadillo": [["M"]], + "peccadillo's": null, + "peccary": [["M", "S"]], + "peccary's": null, + "peccaries": null, + "Pechora": [["M"]], + "Pechora's": null, + "pecker": [["M"]], + "pecker's": null, + "peck": [["G", "Z", "S", "D", "R", "M"]], + "pecking": null, + "peckers": null, + "pecks": null, + "pecked": null, + "peck's": null, + "Peckinpah": [["M"]], + "Peckinpah's": null, + "Peck": [["M"]], + "Peck's": null, + "Pecos": [["M"]], + "Pecos's": null, + "pectic": null, + "pectin": [["S", "M"]], + "pectins": null, + "pectin's": null, + "pectoral": [["S"]], + "pectorals": null, + "peculate": [["N", "G", "D", "S", "X"]], + "peculation": null, + "peculating": null, + "peculated": null, + "peculates": null, + "peculations": null, + "peculator": [["S"]], + "peculators": null, + "peculiarity": [["M", "S"]], + "peculiarity's": null, + "peculiarities": null, + "peculiar": [["S", "Y"]], + "peculiars": null, + "peculiarly": null, + "pecuniary": null, + "pedagogical": [["Y"]], + "pedagogically": null, + "pedagogic": [["S"]], + "pedagogics": [["M"]], + "pedagogics's": null, + "pedagogue": [["S", "D", "G", "M"]], + "pedagogues": null, + "pedagogued": null, + "pedagoguing": null, + "pedagogue's": null, + "pedagogy": [["M", "S"]], + "pedagogy's": null, + "pedagogies": null, + "pedal": [["S", "G", "R", "D", "M"]], + "pedals": null, + "pedaling": null, + "pedaler": null, + "pedaled": null, + "pedal's": null, + "pedantic": null, + "pedantically": null, + "pedantry": [["M", "S"]], + "pedantry's": null, + "pedantries": null, + "pedant": [["S", "M"]], + "pedants": null, + "pedant's": null, + "peddler": [["M"]], + "peddler's": null, + "peddle": [["Z", "G", "R", "S", "D"]], + "peddlers": null, + "peddling": null, + "peddles": null, + "peddled": null, + "pederast": [["S", "M"]], + "pederasts": null, + "pederast's": null, + "pederasty": [["S", "M"]], + "pederasties": null, + "pederasty's": null, + "Peder": [["M"]], + "Peder's": null, + "pedestal": [["G", "D", "M", "S"]], + "pedestaling": null, + "pedestaled": null, + "pedestal's": null, + "pedestals": null, + "pedestrianization": null, + "pedestrianize": [["G", "S", "D"]], + "pedestrianizing": null, + "pedestrianizes": null, + "pedestrianized": null, + "pedestrian": [["M", "S"]], + "pedestrian's": null, + "pedestrians": null, + "pediatrician": [["S", "M"]], + "pediatricians": null, + "pediatrician's": null, + "pediatric": [["S"]], + "pediatrics": null, + "pedicab": [["S", "M"]], + "pedicabs": null, + "pedicab's": null, + "pedicure": [["D", "S", "M", "G"]], + "pedicured": null, + "pedicures": null, + "pedicure's": null, + "pedicuring": null, + "pedicurist": [["S", "M"]], + "pedicurists": null, + "pedicurist's": null, + "pedigree": [["D", "S", "M"]], + "pedigreed": null, + "pedigrees": null, + "pedigree's": null, + "pediment": [["D", "M", "S"]], + "pedimented": null, + "pediment's": null, + "pediments": null, + "pedlar's": null, + "pedometer": [["M", "S"]], + "pedometer's": null, + "pedometers": null, + "pedophile": [["S"]], + "pedophiles": null, + "pedophilia": null, + "Pedro": [["M"]], + "Pedro's": null, + "peduncle": [["M", "S"]], + "peduncle's": null, + "peduncles": null, + "peeing": null, + "peekaboo": [["S", "M"]], + "peekaboos": null, + "peekaboo's": null, + "peek": [["G", "S", "D"]], + "peeking": null, + "peeks": null, + "peeked": null, + "peeler": [["M"]], + "peeler's": null, + "peeling": [["M"]], + "peeling's": null, + "Peel": [["M"]], + "Peel's": null, + "peel": [["S", "J", "G", "Z", "D", "R"]], + "peels": null, + "peelings": null, + "peelers": null, + "peeled": null, + "peen": [["G", "S", "D", "M"]], + "peening": null, + "peens": null, + "peened": null, + "peen's": null, + "peeper": [["M"]], + "peeper's": null, + "peephole": [["S", "M"]], + "peepholes": null, + "peephole's": null, + "peep": [["S", "G", "Z", "D", "R"]], + "peeps": null, + "peeping": null, + "peepers": null, + "peeped": null, + "peepshow": [["M", "S"]], + "peepshow's": null, + "peepshows": null, + "peepy": null, + "peerage": [["M", "S"]], + "peerage's": null, + "peerages": null, + "peer": [["D", "M", "G"]], + "peered": null, + "peer's": null, + "peering": null, + "peeress": [["M", "S"]], + "peeress's": null, + "peeresses": null, + "peerlessness": [["M"]], + "peerlessness's": null, + "peerless": [["P", "Y"]], + "peerlessly": null, + "peeve": [["G", "Z", "M", "D", "S"]], + "peeving": null, + "peevers": [["M"]], + "peeve's": null, + "peeved": null, + "peeves": null, + "peevers's": null, + "peevishness": [["S", "M"]], + "peevishnesses": null, + "peevishness's": null, + "peevish": [["Y", "P"]], + "peevishly": null, + "peewee": [["S"]], + "peewees": null, + "pee": [["Z", "D", "R", "S"]], + "peers": null, + "peed": null, + "pees": null, + "Pegasus": [["M", "S"]], + "Pegasus's": null, + "Pegasuses": null, + "pegboard": [["S", "M"]], + "pegboards": null, + "pegboard's": null, + "Pegeen": [["M"]], + "Pegeen's": null, + "pegged": null, + "Peggie": [["M"]], + "Peggie's": null, + "Peggi": [["M"]], + "Peggi's": null, + "pegging": null, + "Peggy": [["M"]], + "Peggy's": null, + "Peg": [["M"]], + "Peg's": null, + "peg": [["M", "S"]], + "peg's": null, + "pegs": null, + "peignoir": [["S", "M"]], + "peignoirs": null, + "peignoir's": null, + "Pei": [["M"]], + "Pei's": null, + "Peiping": [["M"]], + "Peiping's": null, + "Peirce": [["M"]], + "Peirce's": null, + "pejoration": [["S", "M"]], + "pejorations": null, + "pejoration's": null, + "pejorative": [["S", "Y"]], + "pejoratives": null, + "pejoratively": null, + "peke": [["M", "S"]], + "peke's": null, + "pekes": null, + "Pekinese's": null, + "pekingese": null, + "Pekingese": [["S", "M"]], + "Pekingeses": null, + "Pekingese's": null, + "Peking": [["S", "M"]], + "Pekings": null, + "Peking's": null, + "pekoe": [["S", "M"]], + "pekoes": null, + "pekoe's": null, + "pelagic": null, + "Pelee": [["M"]], + "Pelee's": null, + "Pele": [["M"]], + "Pele's": null, + "pelf": [["S", "M"]], + "pelfs": null, + "pelf's": null, + "Pelham": [["M"]], + "Pelham's": null, + "pelican": [["S", "M"]], + "pelicans": null, + "pelican's": null, + "pellagra": [["S", "M"]], + "pellagras": null, + "pellagra's": null, + "pellet": [["S", "G", "M", "D"]], + "pellets": null, + "pelleting": null, + "pellet's": null, + "pelleted": null, + "pellucid": null, + "Peloponnese": [["M"]], + "Peloponnese's": null, + "pelter": [["M"]], + "pelter's": null, + "pelt": [["G", "S", "D", "R"]], + "pelting": null, + "pelts": null, + "pelted": null, + "pelvic": [["S"]], + "pelvics": null, + "pelvis": [["S", "M"]], + "pelvises": null, + "pelvis's": null, + "Pembroke": [["M"]], + "Pembroke's": null, + "pemmican": [["S", "M"]], + "pemmicans": null, + "pemmican's": null, + "penalization": [["S", "M"]], + "penalizations": null, + "penalization's": null, + "penalized": [["U"]], + "unpenalized": null, + "penalize": [["S", "D", "G"]], + "penalizes": null, + "penalizing": null, + "penalty": [["M", "S"]], + "penalty's": null, + "penalties": null, + "penal": [["Y"]], + "penally": null, + "Pena": [["M"]], + "Pena's": null, + "penance": [["S", "D", "M", "G"]], + "penances": null, + "penanced": null, + "penance's": null, + "penancing": null, + "pence": [["M"]], + "pence's": null, + "penchant": [["M", "S"]], + "penchant's": null, + "penchants": null, + "pencil": [["S", "G", "J", "M", "D"]], + "pencils": null, + "penciling": null, + "pencilings": null, + "pencil's": null, + "penciled": null, + "pendant": [["S", "M"]], + "pendants": null, + "pendant's": null, + "pend": [["D", "C", "G", "S"]], + "pended": null, + "depended": null, + "depending": null, + "depends": null, + "pending": null, + "pends": null, + "pendent": [["C", "S"]], + "pendents": null, + "Penderecki": [["M"]], + "Penderecki's": null, + "Pendleton": [["M"]], + "Pendleton's": null, + "pendulous": null, + "pendulum": [["M", "S"]], + "pendulum's": null, + "pendulums": null, + "Penelopa": [["M"]], + "Penelopa's": null, + "Penelope": [["M"]], + "Penelope's": null, + "penetrability": [["S", "M"]], + "penetrabilities": null, + "penetrability's": null, + "penetrable": null, + "penetrate": [["S", "D", "V", "G", "N", "X"]], + "penetrates": null, + "penetrated": null, + "penetrative": [["P", "Y"]], + "penetrating": [["Y"]], + "penetration": [["M"]], + "penetrations": null, + "penetratingly": null, + "penetration's": null, + "penetrativeness": [["M"]], + "penetrativeness's": null, + "penetratively": null, + "penetrator": [["M", "S"]], + "penetrator's": null, + "penetrators": null, + "penguin": [["M", "S"]], + "penguin's": null, + "penguins": null, + "penicillin": [["S", "M"]], + "penicillins": null, + "penicillin's": null, + "penile": null, + "peninsular": null, + "peninsula": [["S", "M"]], + "peninsulas": null, + "peninsula's": null, + "penis": [["M", "S"]], + "penis's": null, + "penises": null, + "penitence": [["M", "S"]], + "penitence's": null, + "penitences": null, + "penitential": [["Y", "S"]], + "penitentially": null, + "penitentials": null, + "penitentiary": [["M", "S"]], + "penitentiary's": null, + "penitentiaries": null, + "penitent": [["S", "Y"]], + "penitents": null, + "penitently": null, + "penknife": [["M"]], + "penknife's": null, + "penknives": null, + "penlight": [["M", "S"]], + "penlight's": null, + "penlights": null, + "pen": [["M"]], + "pen's": null, + "Pen": [["M"]], + "Pen's": null, + "penman": [["M"]], + "penman's": null, + "penmanship": [["M", "S"]], + "penmanship's": null, + "penmanships": null, + "penmen": null, + "Penna": null, + "pennant": [["S", "M"]], + "pennants": null, + "pennant's": null, + "penned": null, + "Penney": [["M"]], + "Penney's": null, + "Pennie": [["M"]], + "Pennie's": null, + "penniless": null, + "Penni": [["M"]], + "Penni's": null, + "penning": null, + "Pennington": [["M"]], + "Pennington's": null, + "pennis": null, + "Penn": [["M"]], + "Penn's": null, + "pennon": [["S", "M"]], + "pennons": null, + "pennon's": null, + "Pennsylvania": [["M"]], + "Pennsylvania's": null, + "Pennsylvanian": [["S"]], + "Pennsylvanians": null, + "Penny": [["M"]], + "Penny's": null, + "penny": [["S", "M"]], + "pennies": null, + "penny's": null, + "pennyweight": [["S", "M"]], + "pennyweights": null, + "pennyweight's": null, + "pennyworth": [["M"]], + "pennyworth's": null, + "penologist": [["M", "S"]], + "penologist's": null, + "penologists": null, + "penology": [["M", "S"]], + "penology's": null, + "penologies": null, + "Penrod": [["M"]], + "Penrod's": null, + "Pensacola": [["M"]], + "Pensacola's": null, + "pensioner": [["M"]], + "pensioner's": null, + "pension": [["Z", "G", "M", "R", "D", "B", "S"]], + "pensioners": null, + "pensioning": null, + "pension's": null, + "pensioned": null, + "pensionable": null, + "pensions": null, + "pensiveness": [["S"]], + "pensivenesses": null, + "pensive": [["P", "Y"]], + "pensively": null, + "pens": [["V"]], + "pentacle": [["M", "S"]], + "pentacle's": null, + "pentacles": null, + "pentagonal": [["S", "Y"]], + "pentagonals": null, + "pentagonally": null, + "Pentagon": [["M"]], + "Pentagon's": null, + "pentagon": [["S", "M"]], + "pentagons": null, + "pentagon's": null, + "pentagram": [["M", "S"]], + "pentagram's": null, + "pentagrams": null, + "pentameter": [["S", "M"]], + "pentameters": null, + "pentameter's": null, + "pent": [["A", "S"]], + "repent": [["R", "D", "G"]], + "repents": null, + "pents": null, + "Pentateuch": [["M"]], + "Pentateuch's": null, + "pentathlete": [["S"]], + "pentathletes": null, + "pentathlon": [["M", "S"]], + "pentathlon's": null, + "pentathlons": null, + "pentatonic": null, + "pentecostal": null, + "Pentecostalism": [["S"]], + "Pentecostalisms": null, + "Pentecostal": [["S"]], + "Pentecostals": null, + "Pentecost": [["S", "M"]], + "Pentecosts": null, + "Pentecost's": null, + "penthouse": [["S", "D", "G", "M"]], + "penthouses": null, + "penthoused": null, + "penthousing": null, + "penthouse's": null, + "Pentium": [["M"]], + "Pentium's": null, + "penuche": [["S", "M"]], + "penuches": null, + "penuche's": null, + "penultimate": [["S", "Y"]], + "penultimates": null, + "penultimately": null, + "penumbrae": null, + "penumbra": [["M", "S"]], + "penumbra's": null, + "penumbras": null, + "penuriousness": [["M", "S"]], + "penuriousness's": null, + "penuriousnesses": null, + "penurious": [["Y", "P"]], + "penuriously": null, + "penury": [["S", "M"]], + "penuries": null, + "penury's": null, + "peonage": [["M", "S"]], + "peonage's": null, + "peonages": null, + "peon": [["M", "S"]], + "peon's": null, + "peons": null, + "peony": [["S", "M"]], + "peonies": null, + "peony's": null, + "people": [["S", "D", "M", "G"]], + "peoples": null, + "peopled": null, + "people's": null, + "peopling": null, + "Peoria": [["M"]], + "Peoria's": null, + "Pepe": [["M"]], + "Pepe's": null, + "Pepillo": [["M"]], + "Pepillo's": null, + "Pepi": [["M"]], + "Pepi's": null, + "Pepin": [["M"]], + "Pepin's": null, + "Pepita": [["M"]], + "Pepita's": null, + "Pepito": [["M"]], + "Pepito's": null, + "pepped": null, + "peppercorn": [["M", "S"]], + "peppercorn's": null, + "peppercorns": null, + "pepperer": [["M"]], + "pepperer's": null, + "peppergrass": [["M"]], + "peppergrass's": null, + "peppermint": [["M", "S"]], + "peppermint's": null, + "peppermints": null, + "pepperoni": [["S"]], + "pepperonis": null, + "pepper": [["S", "G", "R", "D", "M"]], + "peppers": null, + "peppering": null, + "peppered": null, + "pepper's": null, + "peppery": null, + "peppiness": [["S", "M"]], + "peppinesses": null, + "peppiness's": null, + "pepping": null, + "peppy": [["P", "R", "T"]], + "peppier": null, + "peppiest": null, + "Pepsico": [["M"]], + "Pepsico's": null, + "PepsiCo": [["M"]], + "PepsiCo's": null, + "Pepsi": [["M"]], + "Pepsi's": null, + "pepsin": [["S", "M"]], + "pepsins": null, + "pepsin's": null, + "pep": [["S", "M"]], + "peps": null, + "pep's": null, + "peptic": [["S"]], + "peptics": null, + "peptidase": [["S", "M"]], + "peptidases": null, + "peptidase's": null, + "peptide": [["S", "M"]], + "peptides": null, + "peptide's": null, + "peptizing": null, + "Pepys": [["M"]], + "Pepys's": null, + "Pequot": [["M"]], + "Pequot's": null, + "peradventure": [["S"]], + "peradventures": null, + "perambulate": [["D", "S", "N", "G", "X"]], + "perambulated": null, + "perambulates": null, + "perambulation": [["M"]], + "perambulating": null, + "perambulations": null, + "perambulation's": null, + "perambulator": [["M", "S"]], + "perambulator's": null, + "perambulators": null, + "percale": [["M", "S"]], + "percale's": null, + "percales": null, + "perceivably": null, + "perceive": [["D", "R", "S", "Z", "G", "B"]], + "perceived": [["U"]], + "perceiver": [["M"]], + "perceives": null, + "perceivers": null, + "perceiving": null, + "perceivable": null, + "unperceived": null, + "perceiver's": null, + "percentage": [["M", "S"]], + "percentage's": null, + "percentages": null, + "percentile": [["S", "M"]], + "percentiles": null, + "percentile's": null, + "percent": [["M", "S"]], + "percent's": null, + "percents": null, + "perceptible": null, + "perceptibly": null, + "perceptional": null, + "perception": [["M", "S"]], + "perception's": null, + "perceptions": null, + "perceptiveness": [["M", "S"]], + "perceptiveness's": null, + "perceptivenesses": null, + "perceptive": [["Y", "P"]], + "perceptively": null, + "perceptual": [["Y"]], + "perceptually": null, + "percept": [["V", "M", "S"]], + "percept's": null, + "percepts": null, + "Perceval": [["M"]], + "Perceval's": null, + "perchance": null, + "perch": [["G", "S", "D", "M"]], + "perching": null, + "perches": null, + "perched": null, + "perch's": null, + "perchlorate": [["M"]], + "perchlorate's": null, + "perchlorination": null, + "percipience": [["M", "S"]], + "percipience's": null, + "percipiences": null, + "percipient": [["S"]], + "percipients": null, + "Percival": [["M"]], + "Percival's": null, + "percolate": [["N", "G", "S", "D", "X"]], + "percolation": [["M"]], + "percolating": null, + "percolates": null, + "percolated": null, + "percolations": null, + "percolation's": null, + "percolator": [["M", "S"]], + "percolator's": null, + "percolators": null, + "percuss": [["D", "S", "G", "V"]], + "percussed": null, + "percusses": null, + "percussing": null, + "percussive": [["P", "Y"]], + "percussionist": [["M", "S"]], + "percussionist's": null, + "percussionists": null, + "percussion": [["S", "A", "M"]], + "percussions": null, + "repercussions": null, + "repercussion": null, + "repercussion's": null, + "percussion's": null, + "percussiveness": [["M"]], + "percussiveness's": null, + "percussively": null, + "percutaneous": [["Y"]], + "percutaneously": null, + "Percy": [["M"]], + "Percy's": null, + "perdition": [["M", "S"]], + "perdition's": null, + "perditions": null, + "perdurable": null, + "peregrinate": [["X", "S", "D", "N", "G"]], + "peregrinations": null, + "peregrinates": null, + "peregrinated": null, + "peregrination": [["M"]], + "peregrinating": null, + "peregrination's": null, + "peregrine": [["S"]], + "peregrines": null, + "Perelman": [["M"]], + "Perelman's": null, + "peremptorily": null, + "peremptory": [["P"]], + "peremptoriness": null, + "perennial": [["S", "Y"]], + "perennials": null, + "perennially": null, + "p�res": null, + "perestroika": [["S"]], + "perestroikas": null, + "Perez": [["M"]], + "Perez's": null, + "perfecta": [["S"]], + "perfectas": null, + "perfect": [["D", "R", "Y", "S", "T", "G", "V", "P"]], + "perfected": null, + "perfecter": [["M"]], + "perfectly": null, + "perfects": null, + "perfectest": null, + "perfecting": null, + "perfective": [["P", "Y"]], + "perfectness": [["M", "S"]], + "perfecter's": null, + "perfectibility": [["M", "S"]], + "perfectibility's": null, + "perfectibilities": null, + "perfectible": null, + "perfectionism": [["M", "S"]], + "perfectionism's": null, + "perfectionisms": null, + "perfectionist": [["M", "S"]], + "perfectionist's": null, + "perfectionists": null, + "perfection": [["M", "S"]], + "perfection's": null, + "perfections": null, + "perfectiveness": [["M"]], + "perfectiveness's": null, + "perfectively": null, + "perfectness's": null, + "perfectnesses": null, + "perfidiousness": [["M"]], + "perfidiousness's": null, + "perfidious": [["Y", "P"]], + "perfidiously": null, + "perfidy": [["M", "S"]], + "perfidy's": null, + "perfidies": null, + "perforated": [["U"]], + "unperforated": null, + "perforate": [["X", "S", "D", "G", "N"]], + "perforations": null, + "perforates": null, + "perforating": null, + "perforation": [["M"]], + "perforation's": null, + "perforce": null, + "performance": [["M", "S"]], + "performance's": null, + "performances": null, + "performed": [["U"]], + "unperformed": null, + "performer": [["M"]], + "performer's": null, + "perform": [["S", "D", "R", "Z", "G", "B"]], + "performs": null, + "performers": null, + "performing": null, + "performable": null, + "perfumer": [["M"]], + "perfumer's": null, + "perfumery": [["S", "M"]], + "perfumeries": null, + "perfumery's": null, + "perfume": [["Z", "M", "G", "S", "R", "D"]], + "perfumers": null, + "perfume's": null, + "perfuming": null, + "perfumes": null, + "perfumed": null, + "perfunctorily": null, + "perfunctoriness": [["M"]], + "perfunctoriness's": null, + "perfunctory": [["P"]], + "perfused": null, + "perfusion": [["M"]], + "perfusion's": null, + "Pergamon": [["M"]], + "Pergamon's": null, + "pergola": [["S", "M"]], + "pergolas": null, + "pergola's": null, + "perhaps": [["S"]], + "perhapses": null, + "Peria": [["M"]], + "Peria's": null, + "pericardia": null, + "pericardium": [["M"]], + "pericardium's": null, + "Perice": [["M"]], + "Perice's": null, + "Periclean": null, + "Pericles": [["M"]], + "Pericles's": null, + "perigee": [["S", "M"]], + "perigees": null, + "perigee's": null, + "perihelia": null, + "perihelion": [["M"]], + "perihelion's": null, + "peril": [["G", "S", "D", "M"]], + "periling": null, + "perils": null, + "periled": null, + "peril's": null, + "Perilla": [["M"]], + "Perilla's": null, + "perilousness": [["M"]], + "perilousness's": null, + "perilous": [["P", "Y"]], + "perilously": null, + "Peri": [["M"]], + "Peri's": null, + "perimeter": [["M", "S"]], + "perimeter's": null, + "perimeters": null, + "perinatal": null, + "perinea": null, + "perineum": [["M"]], + "perineum's": null, + "periodic": null, + "periodical": [["Y", "M", "S"]], + "periodically": null, + "periodical's": null, + "periodicals": null, + "periodicity": [["M", "S"]], + "periodicity's": null, + "periodicities": null, + "period": [["M", "S"]], + "period's": null, + "periods": null, + "periodontal": [["Y"]], + "periodontally": null, + "periodontics": [["M"]], + "periodontics's": null, + "periodontist": [["S"]], + "periodontists": null, + "peripatetic": [["S"]], + "peripatetics": null, + "peripheral": [["S", "Y"]], + "peripherals": null, + "peripherally": null, + "periphery": [["S", "M"]], + "peripheries": null, + "periphery's": null, + "periphrases": null, + "periphrasis": [["M"]], + "periphrasis's": null, + "periphrastic": null, + "periscope": [["S", "D", "M", "G"]], + "periscopes": null, + "periscoped": null, + "periscope's": null, + "periscoping": null, + "perishable": [["S", "M"]], + "perishables": null, + "perishable's": null, + "perish": [["B", "Z", "G", "S", "R", "D"]], + "perishers": null, + "perishing": [["Y"]], + "perishes": null, + "perisher": null, + "perished": null, + "perishingly": null, + "peristalses": null, + "peristalsis": [["M"]], + "peristalsis's": null, + "peristaltic": null, + "peristyle": [["M", "S"]], + "peristyle's": null, + "peristyles": null, + "peritoneal": null, + "peritoneum": [["S", "M"]], + "peritoneums": null, + "peritoneum's": null, + "peritonitis": [["M", "S"]], + "peritonitis's": null, + "peritonitises": null, + "periwigged": null, + "periwigging": null, + "periwig": [["M", "S"]], + "periwig's": null, + "periwigs": null, + "periwinkle": [["S", "M"]], + "periwinkles": null, + "periwinkle's": null, + "perjurer": [["M"]], + "perjurer's": null, + "perjure": [["S", "R", "D", "Z", "G"]], + "perjures": null, + "perjured": null, + "perjurers": null, + "perjuring": null, + "perjury": [["M", "S"]], + "perjury's": null, + "perjuries": null, + "per": [["K"]], + "proper": [["P", "Y", "R", "T"]], + "perk": [["G", "D", "S"]], + "perking": null, + "perked": null, + "perks": null, + "perkily": null, + "perkiness": [["S"]], + "perkinesses": null, + "Perkin": [["S", "M"]], + "Perkins": null, + "Perkin's": null, + "perky": [["T", "R", "P"]], + "perkiest": null, + "perkier": null, + "Perla": [["M"]], + "Perla's": null, + "Perle": [["M"]], + "Perle's": null, + "Perl": [["M"]], + "Perl's": null, + "permafrost": [["M", "S"]], + "permafrost's": null, + "permafrosts": null, + "permalloy": [["M"]], + "permalloy's": null, + "Permalloy": [["M"]], + "Permalloy's": null, + "permanence": [["S", "M"]], + "permanences": null, + "permanence's": null, + "permanency": [["M", "S"]], + "permanency's": null, + "permanencies": null, + "permanentness": [["M"]], + "permanentness's": null, + "permanent": [["Y", "S", "P"]], + "permanently": null, + "permanents": null, + "permeability": [["S", "M"]], + "permeabilities": null, + "permeability's": null, + "permeableness": [["M"]], + "permeableness's": null, + "permeable": [["P"]], + "permeate": [["N", "G", "V", "D", "S", "X"]], + "permeation": null, + "permeating": null, + "permeative": null, + "permeated": null, + "permeates": null, + "permeations": null, + "Permian": null, + "permissibility": [["M"]], + "permissibility's": null, + "permissibleness": [["M"]], + "permissibleness's": null, + "permissible": [["P"]], + "permissibly": null, + "permission": [["S", "M"]], + "permissions": null, + "permission's": null, + "permissiveness": [["M", "S"]], + "permissiveness's": null, + "permissivenesses": null, + "permissive": [["Y", "P"]], + "permissively": null, + "permit": [["S", "M"]], + "permits": null, + "permit's": null, + "permitted": null, + "permitting": null, + "Perm": [["M"]], + "Perm's": null, + "perm": [["M", "D", "G", "S"]], + "perm's": null, + "permed": null, + "perming": null, + "perms": null, + "permutation": [["M", "S"]], + "permutation's": null, + "permutations": null, + "permute": [["S", "D", "G"]], + "permutes": null, + "permuted": null, + "permuting": null, + "Pernell": [["M"]], + "Pernell's": null, + "perniciousness": [["M", "S"]], + "perniciousness's": null, + "perniciousnesses": null, + "pernicious": [["P", "Y"]], + "perniciously": null, + "Pernod": [["M"]], + "Pernod's": null, + "Peron": [["M"]], + "Peron's": null, + "peroration": [["S", "M"]], + "perorations": null, + "peroration's": null, + "Perot": [["M"]], + "Perot's": null, + "peroxidase": [["M"]], + "peroxidase's": null, + "peroxide": [["M", "G", "D", "S"]], + "peroxide's": null, + "peroxiding": null, + "peroxided": null, + "peroxides": null, + "perpend": [["D", "G"]], + "perpended": null, + "perpending": null, + "perpendicularity": [["S", "M"]], + "perpendicularities": null, + "perpendicularity's": null, + "perpendicular": [["S", "Y"]], + "perpendiculars": null, + "perpendicularly": null, + "perpetrate": [["N", "G", "X", "S", "D"]], + "perpetration": [["M"]], + "perpetrating": null, + "perpetrations": null, + "perpetrates": null, + "perpetrated": null, + "perpetration's": null, + "perpetrator": [["S", "M"]], + "perpetrators": null, + "perpetrator's": null, + "perpetual": [["S", "Y"]], + "perpetuals": null, + "perpetually": null, + "perpetuate": [["N", "G", "S", "D", "X"]], + "perpetuation": [["M"]], + "perpetuating": null, + "perpetuates": null, + "perpetuated": null, + "perpetuations": null, + "perpetuation's": null, + "perpetuity": [["M", "S"]], + "perpetuity's": null, + "perpetuities": null, + "perplex": [["D", "S", "G"]], + "perplexed": [["Y"]], + "perplexes": null, + "perplexing": null, + "perplexedly": null, + "perplexity": [["M", "S"]], + "perplexity's": null, + "perplexities": null, + "perquisite": [["S", "M"]], + "perquisites": null, + "perquisite's": null, + "Perren": [["M"]], + "Perren's": null, + "Perri": [["M"]], + "Perri's": null, + "Perrine": [["M"]], + "Perrine's": null, + "Perry": [["M", "R"]], + "Perry's": null, + "Perrier": null, + "persecute": [["X", "V", "N", "G", "S", "D"]], + "persecutions": null, + "persecutive": null, + "persecution": [["M"]], + "persecuting": null, + "persecutes": null, + "persecuted": null, + "persecution's": null, + "persecutor": [["M", "S"]], + "persecutor's": null, + "persecutors": null, + "persecutory": null, + "Perseid": [["M"]], + "Perseid's": null, + "Persephone": [["M"]], + "Persephone's": null, + "Perseus": [["M"]], + "Perseus's": null, + "perseverance": [["M", "S"]], + "perseverance's": null, + "perseverances": null, + "persevere": [["G", "S", "D"]], + "persevering": [["Y"]], + "perseveres": null, + "persevered": null, + "perseveringly": null, + "Pershing": [["M"]], + "Pershing's": null, + "Persia": [["M"]], + "Persia's": null, + "Persian": [["S"]], + "Persians": null, + "persiflage": [["M", "S"]], + "persiflage's": null, + "persiflages": null, + "persimmon": [["S", "M"]], + "persimmons": null, + "persimmon's": null, + "Persis": [["M"]], + "Persis's": null, + "persist": [["D", "R", "S", "G"]], + "persisted": null, + "persister": null, + "persists": null, + "persisting": null, + "persistence": [["S", "M"]], + "persistences": null, + "persistence's": null, + "persistent": [["Y"]], + "persistently": null, + "persnickety": null, + "personableness": [["M"]], + "personableness's": null, + "personable": [["P"]], + "personae": null, + "personage": [["S", "M"]], + "personages": null, + "personage's": null, + "personality": [["S", "M"]], + "personalities": null, + "personality's": null, + "personalization": [["C", "M", "S"]], + "depersonalization": null, + "depersonalization's": null, + "depersonalizations": null, + "personalization's": null, + "personalizations": null, + "personalize": [["C", "S", "D", "G"]], + "depersonalize": null, + "depersonalizes": null, + "depersonalized": null, + "depersonalizing": null, + "personalizes": null, + "personalized": [["U"]], + "personalizing": null, + "unpersonalized": null, + "personalty": [["M", "S"]], + "personalty's": null, + "personalties": null, + "personal": [["Y", "S"]], + "personally": null, + "personals": null, + "persona": [["M"]], + "persona's": null, + "person": [["B", "M", "S"]], + "person's": [["U"]], + "persons": [["U"]], + "personification": [["M"]], + "personification's": null, + "personifier": [["M"]], + "personifier's": null, + "personify": [["X", "N", "G", "D", "R", "S"]], + "personifications": null, + "personifying": null, + "personified": null, + "personifies": null, + "personnel": [["S", "M"]], + "personnels": null, + "personnel's": null, + "unperson's": null, + "unpersons": null, + "perspective": [["Y", "M", "S"]], + "perspectively": null, + "perspective's": null, + "perspectives": null, + "perspex": null, + "perspicaciousness": [["M"]], + "perspicaciousness's": null, + "perspicacious": [["P", "Y"]], + "perspicaciously": null, + "perspicacity": [["S"]], + "perspicacities": null, + "perspicuity": [["S", "M"]], + "perspicuities": null, + "perspicuity's": null, + "perspicuousness": [["M"]], + "perspicuousness's": null, + "perspicuous": [["Y", "P"]], + "perspicuously": null, + "perspiration": [["M", "S"]], + "perspiration's": null, + "perspirations": null, + "perspire": [["D", "S", "G"]], + "perspired": null, + "perspires": null, + "perspiring": null, + "persuaded": [["U"]], + "unpersuaded": null, + "persuader": [["M"]], + "persuader's": null, + "persuade": [["Z", "G", "D", "R", "S", "B"]], + "persuaders": null, + "persuading": null, + "persuades": null, + "persuadable": null, + "persuasion": [["S", "M"]], + "persuasions": null, + "persuasion's": null, + "persuasively": null, + "persuasiveness": [["M", "S"]], + "persuasiveness's": null, + "persuasivenesses": null, + "persuasive": [["U"]], + "unpersuasive": null, + "pertain": [["G", "S", "D"]], + "pertaining": null, + "pertains": null, + "pertained": null, + "Perth": [["M"]], + "Perth's": null, + "pertinaciousness": [["M"]], + "pertinaciousness's": null, + "pertinacious": [["Y", "P"]], + "pertinaciously": null, + "pertinacity": [["M", "S"]], + "pertinacity's": null, + "pertinacities": null, + "pertinence": [["S"]], + "pertinences": null, + "pertinent": [["Y", "S"]], + "pertinently": null, + "pertinents": null, + "pertness": [["M", "S"]], + "pertness's": null, + "pertnesses": null, + "perturbation": [["M", "S"]], + "perturbation's": null, + "perturbations": null, + "perturbed": [["U"]], + "unperturbed": [["Y"]], + "perturb": [["G", "D", "S"]], + "perturbing": null, + "perturbs": null, + "pertussis": [["S", "M"]], + "pertussises": null, + "pertussis's": null, + "pert": [["Y", "R", "T", "S", "P"]], + "pertly": null, + "perter": null, + "pertest": null, + "perts": null, + "peruke": [["S", "M"]], + "perukes": null, + "peruke's": null, + "Peru": [["M"]], + "Peru's": null, + "perusal": [["S", "M"]], + "perusals": null, + "perusal's": null, + "peruser": [["M"]], + "peruser's": null, + "peruse": [["R", "S", "D", "Z", "G"]], + "peruses": null, + "perused": null, + "perusers": null, + "perusing": null, + "Peruvian": [["S"]], + "Peruvians": null, + "pervade": [["S", "D", "G"]], + "pervades": null, + "pervaded": null, + "pervading": null, + "pervasion": [["M"]], + "pervasion's": null, + "pervasiveness": [["M", "S"]], + "pervasiveness's": null, + "pervasivenesses": null, + "pervasive": [["P", "Y"]], + "pervasively": null, + "perverseness": [["S", "M"]], + "perversenesses": null, + "perverseness's": null, + "perverse": [["P", "X", "Y", "N", "V"]], + "perversions": null, + "perversely": null, + "perversion": [["M"]], + "perversive": null, + "perversion's": null, + "perversity": [["M", "S"]], + "perversity's": null, + "perversities": null, + "pervert": [["D", "R", "S", "G"]], + "perverted": [["Y", "P"]], + "perverter": [["M"]], + "perverts": null, + "perverting": null, + "pervertedly": null, + "pervertedness": null, + "perverter's": null, + "perviousness": null, + "peseta": [["S", "M"]], + "pesetas": null, + "peseta's": null, + "Peshawar": [["M"]], + "Peshawar's": null, + "peskily": null, + "peskiness": [["S"]], + "peskinesses": null, + "pesky": [["R", "T", "P"]], + "peskier": null, + "peskiest": null, + "peso": [["M", "S"]], + "peso's": null, + "pesos": null, + "pessimal": [["Y"]], + "pessimally": null, + "pessimism": [["S", "M"]], + "pessimisms": null, + "pessimism's": null, + "pessimistic": null, + "pessimistically": null, + "pessimist": [["S", "M"]], + "pessimists": null, + "pessimist's": null, + "pester": [["D", "G"]], + "pestered": null, + "pestering": null, + "pesticide": [["M", "S"]], + "pesticide's": null, + "pesticides": null, + "pestiferous": null, + "pestilence": [["S", "M"]], + "pestilences": null, + "pestilence's": null, + "pestilential": [["Y"]], + "pestilentially": null, + "pestilent": [["Y"]], + "pestilently": null, + "pestle": [["S", "D", "M", "G"]], + "pestles": null, + "pestled": null, + "pestle's": null, + "pestling": null, + "pesto": [["S"]], + "pestos": null, + "pest": [["R", "Z", "S", "M"]], + "pesters": null, + "pests": null, + "pest's": null, + "PET": null, + "P�tain": [["M"]], + "P�tain's": null, + "petal": [["S", "D", "M"]], + "petals": null, + "petaled": null, + "petal's": null, + "Peta": [["M"]], + "Peta's": null, + "petard": [["M", "S"]], + "petard's": null, + "petards": null, + "petcock": [["S", "M"]], + "petcocks": null, + "petcock's": null, + "Pete": [["M"]], + "Pete's": null, + "peter": [["G", "D"]], + "petering": null, + "petered": null, + "Peter": [["M"]], + "Peter's": null, + "Petersburg": [["M"]], + "Petersburg's": null, + "Petersen": [["M"]], + "Petersen's": null, + "Peters": [["N"]], + "Peterson": [["M"]], + "Peterson's": null, + "Peterus": [["M"]], + "Peterus's": null, + "Petey": [["M"]], + "Petey's": null, + "pethidine": [["M"]], + "pethidine's": null, + "petiole": [["S", "M"]], + "petioles": null, + "petiole's": null, + "petiteness": [["M"]], + "petiteness's": null, + "petite": [["X", "N", "P", "S"]], + "petitions": [["A"]], + "petition": [["G", "Z", "M", "R", "D"]], + "petites": null, + "petitioner": [["M"]], + "petitioner's": null, + "petitioning": null, + "petitioners": null, + "petition's": [["A"]], + "petitioned": null, + "repetition's": null, + "repetitions": null, + "petits": null, + "Petkiewicz": [["M"]], + "Petkiewicz's": null, + "Pet": [["M", "R", "Z"]], + "Pet's": null, + "Petra": [["M"]], + "Petra's": null, + "Petrarch": [["M"]], + "Petrarch's": null, + "petrel": [["S", "M"]], + "petrels": null, + "petrel's": null, + "petri": null, + "petrifaction": [["S", "M"]], + "petrifactions": null, + "petrifaction's": null, + "petrify": [["N", "D", "S", "G"]], + "petrification": null, + "petrified": null, + "petrifies": null, + "petrifying": null, + "Petrina": [["M"]], + "Petrina's": null, + "Petr": [["M"]], + "Petr's": null, + "petrochemical": [["S", "M"]], + "petrochemicals": null, + "petrochemical's": null, + "petrodollar": [["M", "S"]], + "petrodollar's": null, + "petrodollars": null, + "petroglyph": [["M"]], + "petroglyph's": null, + "petrolatum": [["M", "S"]], + "petrolatum's": null, + "petrolatums": null, + "petroleum": [["M", "S"]], + "petroleum's": null, + "petroleums": null, + "petrolled": null, + "petrolling": null, + "petrol": [["M", "S"]], + "petrol's": null, + "petrols": null, + "petrologist": [["M", "S"]], + "petrologist's": null, + "petrologists": null, + "petrology": [["M", "S"]], + "petrology's": null, + "petrologies": null, + "Petronella": [["M"]], + "Petronella's": null, + "Petronia": [["M"]], + "Petronia's": null, + "Petronilla": [["M"]], + "Petronilla's": null, + "Petronille": [["M"]], + "Petronille's": null, + "pet": [["S", "M", "R", "Z"]], + "pets": null, + "pet's": null, + "peters": null, + "petted": null, + "petter": [["M", "S"]], + "petter's": null, + "petters": null, + "Pettibone": [["M"]], + "Pettibone's": null, + "petticoat": [["S", "M", "D"]], + "petticoats": null, + "petticoat's": null, + "petticoated": null, + "pettifogged": null, + "pettifogger": [["S", "M"]], + "pettifoggers": null, + "pettifogger's": null, + "pettifogging": null, + "pettifog": [["S"]], + "pettifogs": null, + "pettily": null, + "pettiness": [["S"]], + "pettinesses": null, + "petting": null, + "pettis": null, + "pettishness": [["M"]], + "pettishness's": null, + "pettish": [["Y", "P"]], + "pettishly": null, + "Petty": [["M"]], + "Petty's": null, + "petty": [["P", "R", "S", "T"]], + "pettier": null, + "petties": null, + "pettiest": null, + "petulance": [["M", "S"]], + "petulance's": null, + "petulances": null, + "petulant": [["Y"]], + "petulantly": null, + "Petunia": [["M"]], + "Petunia's": null, + "petunia": [["S", "M"]], + "petunias": null, + "petunia's": null, + "Peugeot": [["M"]], + "Peugeot's": null, + "Pewaukee": [["M"]], + "Pewaukee's": null, + "pewee": [["M", "S"]], + "pewee's": null, + "pewees": null, + "pewit": [["M", "S"]], + "pewit's": null, + "pewits": null, + "pew": [["S", "M"]], + "pews": null, + "pew's": null, + "pewter": [["S", "R", "M"]], + "pewters": null, + "pewterer": null, + "pewter's": null, + "peyote": [["S", "M"]], + "peyotes": null, + "peyote's": null, + "Peyter": [["M"]], + "Peyter's": null, + "Peyton": [["M"]], + "Peyton's": null, + "pf": null, + "Pfc": null, + "PFC": null, + "pfennig": [["S", "M"]], + "pfennigs": null, + "pfennig's": null, + "Pfizer": [["M"]], + "Pfizer's": null, + "pg": null, + "PG": null, + "Phaedra": [["M"]], + "Phaedra's": null, + "Phaethon": [["M"]], + "Phaethon's": null, + "phaeton": [["M", "S"]], + "phaeton's": null, + "phaetons": null, + "phage": [["M"]], + "phage's": null, + "phagocyte": [["S", "M"]], + "phagocytes": null, + "phagocyte's": null, + "Phaidra": [["M"]], + "Phaidra's": null, + "phalanger": [["M", "S"]], + "phalanger's": null, + "phalangers": null, + "phalanges": null, + "phalanx": [["S", "M"]], + "phalanxes": null, + "phalanx's": null, + "phalli": null, + "phallic": null, + "phallus": [["M"]], + "phallus's": null, + "Phanerozoic": null, + "phantasmagoria": [["S", "M"]], + "phantasmagorias": null, + "phantasmagoria's": null, + "phantasmal": null, + "phantasm": [["S", "M"]], + "phantasms": null, + "phantasm's": null, + "phantasy's": null, + "phantom": [["M", "S"]], + "phantom's": null, + "phantoms": null, + "pharaoh": null, + "Pharaoh": [["M"]], + "Pharaoh's": null, + "pharaohs": null, + "Pharaohs": null, + "pharisaic": null, + "Pharisaic": null, + "Pharisaical": null, + "pharisee": [["S"]], + "pharisees": null, + "Pharisee": [["S", "M"]], + "Pharisees": null, + "Pharisee's": null, + "pharmaceutical": [["S", "Y"]], + "pharmaceuticals": null, + "pharmaceutically": null, + "pharmaceutic": [["S"]], + "pharmaceutics": [["M"]], + "pharmaceutics's": null, + "pharmacist": [["S", "M"]], + "pharmacists": null, + "pharmacist's": null, + "pharmacological": [["Y"]], + "pharmacologically": null, + "pharmacologist": [["S", "M"]], + "pharmacologists": null, + "pharmacologist's": null, + "pharmacology": [["S", "M"]], + "pharmacologies": null, + "pharmacology's": null, + "pharmacopoeia": [["S", "M"]], + "pharmacopoeias": null, + "pharmacopoeia's": null, + "pharmacy": [["S", "M"]], + "pharmacies": null, + "pharmacy's": null, + "pharyngeal": [["S"]], + "pharyngeals": null, + "pharynges": null, + "pharyngitides": null, + "pharyngitis": [["M"]], + "pharyngitis's": null, + "pharynx": [["M"]], + "pharynx's": null, + "phase": [["D", "S", "R", "G", "Z", "M"]], + "phased": null, + "phases": null, + "phaser": null, + "phasing": null, + "phasers": null, + "phase's": null, + "phaseout": [["S"]], + "phaseouts": null, + "PhD": null, + "pheasant": [["S", "M"]], + "pheasants": null, + "pheasant's": null, + "Phebe": [["M"]], + "Phebe's": null, + "Phedra": [["M"]], + "Phedra's": null, + "Phekda": [["M"]], + "Phekda's": null, + "Phelia": [["M"]], + "Phelia's": null, + "Phelps": [["M"]], + "Phelps's": null, + "phenacetin": [["M", "S"]], + "phenacetin's": null, + "phenacetins": null, + "phenobarbital": [["S", "M"]], + "phenobarbitals": null, + "phenobarbital's": null, + "phenolic": null, + "phenol": [["M", "S"]], + "phenol's": null, + "phenols": null, + "phenolphthalein": [["M"]], + "phenolphthalein's": null, + "phenomenal": [["Y"]], + "phenomenally": null, + "phenomena": [["S", "M"]], + "phenomenas": null, + "phenomena's": null, + "phenomenological": [["Y"]], + "phenomenologically": null, + "phenomenology": [["M", "S"]], + "phenomenology's": null, + "phenomenologies": null, + "phenomenon": [["S", "M"]], + "phenomenons": null, + "phenomenon's": null, + "phenotype": [["M", "S"]], + "phenotype's": null, + "phenotypes": null, + "phenylalanine": [["M"]], + "phenylalanine's": null, + "phenyl": [["M"]], + "phenyl's": null, + "pheromone": [["M", "S"]], + "pheromone's": null, + "pheromones": null, + "phew": [["S"]], + "phews": null, + "phialled": null, + "phialling": null, + "phial": [["M", "S"]], + "phial's": null, + "phials": null, + "Phidias": [["M"]], + "Phidias's": null, + "Philadelphia": [["M"]], + "Philadelphia's": null, + "philanderer": [["M"]], + "philanderer's": null, + "philander": [["S", "R", "D", "G", "Z"]], + "philanders": null, + "philandered": null, + "philandering": null, + "philanderers": null, + "philanthropic": null, + "philanthropically": null, + "philanthropist": [["M", "S"]], + "philanthropist's": null, + "philanthropists": null, + "philanthropy": [["S", "M"]], + "philanthropies": null, + "philanthropy's": null, + "philatelic": null, + "philatelist": [["M", "S"]], + "philatelist's": null, + "philatelists": null, + "philately": [["S", "M"]], + "philatelies": null, + "philately's": null, + "Philbert": [["M"]], + "Philbert's": null, + "Philco": [["M"]], + "Philco's": null, + "philharmonic": [["S"]], + "philharmonics": null, + "Philipa": [["M"]], + "Philipa's": null, + "Philip": [["M"]], + "Philip's": null, + "Philippa": [["M"]], + "Philippa's": null, + "Philippe": [["M"]], + "Philippe's": null, + "Philippians": [["M"]], + "Philippians's": null, + "philippic": [["S", "M"]], + "philippics": null, + "philippic's": null, + "Philippine": [["S", "M"]], + "Philippines": null, + "Philippine's": null, + "Philis": [["M"]], + "Philis's": null, + "philistine": [["S"]], + "philistines": null, + "Philistine": [["S", "M"]], + "Philistines": null, + "Philistine's": null, + "philistinism": [["S"]], + "philistinisms": null, + "Phillida": [["M"]], + "Phillida's": null, + "Phillie": [["M"]], + "Phillie's": null, + "Phillipa": [["M"]], + "Phillipa's": null, + "Phillipe": [["M"]], + "Phillipe's": null, + "Phillip": [["M", "S"]], + "Phillip's": null, + "Phillips": null, + "Phillipp": [["M"]], + "Phillipp's": null, + "Phillis": [["M"]], + "Phillis's": null, + "Philly": [["S", "M"]], + "Phillies": null, + "Philly's": null, + "Phil": [["M", "Y"]], + "Phil's": null, + "philodendron": [["M", "S"]], + "philodendron's": null, + "philodendrons": null, + "philological": [["Y"]], + "philologically": null, + "philologist": [["M", "S"]], + "philologist's": null, + "philologists": null, + "philology": [["M", "S"]], + "philology's": null, + "philologies": null, + "Philomena": [["M"]], + "Philomena's": null, + "philosopher": [["M", "S"]], + "philosopher's": null, + "philosophers": null, + "philosophic": null, + "philosophical": [["Y"]], + "philosophically": null, + "philosophized": [["U"]], + "unphilosophized": null, + "philosophizer": [["M"]], + "philosophizer's": null, + "philosophizes": [["U"]], + "unphilosophizes": null, + "philosophize": [["Z", "D", "R", "S", "G"]], + "philosophizers": null, + "philosophizing": null, + "philosophy": [["M", "S"]], + "philosophy's": null, + "philosophies": null, + "philter": [["S", "G", "D", "M"]], + "philters": null, + "philtering": null, + "philtered": null, + "philter's": null, + "philtre": [["D", "S", "M", "G"]], + "philtred": null, + "philtres": null, + "philtre's": null, + "philtring": null, + "Phineas": [["M"]], + "Phineas's": null, + "Phip": [["M"]], + "Phip's": null, + "Phipps": [["M"]], + "Phipps's": null, + "phi": [["S", "M"]], + "phis": null, + "phi's": null, + "phlebitides": null, + "phlebitis": [["M"]], + "phlebitis's": null, + "phlegmatic": null, + "phlegmatically": null, + "phlegm": [["S", "M"]], + "phlegms": null, + "phlegm's": null, + "phloem": [["M", "S"]], + "phloem's": null, + "phloems": null, + "phlox": [["M"]], + "phlox's": null, + "pH": [["M"]], + "pH's": null, + "Ph": [["M"]], + "Ph's": null, + "phobia": [["S", "M"]], + "phobias": null, + "phobia's": null, + "phobic": [["S"]], + "phobics": null, + "Phobos": [["M"]], + "Phobos's": null, + "Phoebe": [["M"]], + "Phoebe's": null, + "phoebe": [["S", "M"]], + "phoebes": null, + "phoebe's": null, + "Phoenicia": [["M"]], + "Phoenicia's": null, + "Phoenician": [["S", "M"]], + "Phoenicians": null, + "Phoenician's": null, + "Phoenix": [["M"]], + "Phoenix's": null, + "phoenix": [["M", "S"]], + "phoenix's": null, + "phoenixes": null, + "phone": [["D", "S", "G", "M"]], + "phoned": null, + "phones": null, + "phoning": null, + "phone's": null, + "phoneme": [["S", "M"]], + "phonemes": null, + "phoneme's": null, + "phonemically": null, + "phonemic": [["S"]], + "phonemics": [["M"]], + "phonemics's": null, + "phonetically": null, + "phonetician": [["S", "M"]], + "phoneticians": null, + "phonetician's": null, + "phonetic": [["S"]], + "phonetics": [["M"]], + "phonetics's": null, + "phonically": null, + "phonic": [["S"]], + "phonics": [["M"]], + "phonics's": null, + "phoniness": [["M", "S"]], + "phoniness's": null, + "phoninesses": null, + "phonographer": [["M"]], + "phonographer's": null, + "phonographic": null, + "phonograph": [["R", "M"]], + "phonograph's": null, + "phonographs": null, + "phonologic": null, + "phonological": [["Y"]], + "phonologically": null, + "phonologist": [["M", "S"]], + "phonologist's": null, + "phonologists": null, + "phonology": [["M", "S"]], + "phonology's": null, + "phonologies": null, + "phonon": [["M"]], + "phonon's": null, + "phony": [["P", "T", "R", "S", "D", "G"]], + "phoniest": null, + "phonier": null, + "phonies": null, + "phonied": null, + "phonying": null, + "phooey": [["S"]], + "phooeys": null, + "phosphatase": [["M"]], + "phosphatase's": null, + "phosphate": [["M", "S"]], + "phosphate's": null, + "phosphates": null, + "phosphide": [["M"]], + "phosphide's": null, + "phosphine": [["M", "S"]], + "phosphine's": null, + "phosphines": null, + "phosphoresce": null, + "phosphorescence": [["S", "M"]], + "phosphorescences": null, + "phosphorescence's": null, + "phosphorescent": [["Y"]], + "phosphorescently": null, + "phosphoric": null, + "phosphor": [["M", "S"]], + "phosphor's": null, + "phosphors": null, + "phosphorous": null, + "phosphorus": [["S", "M"]], + "phosphoruses": null, + "phosphorus's": null, + "photocell": [["M", "S"]], + "photocell's": null, + "photocells": null, + "photochemical": [["Y"]], + "photochemically": null, + "photochemistry": [["M"]], + "photochemistry's": null, + "photocopier": [["M"]], + "photocopier's": null, + "photocopy": [["M", "R", "S", "D", "Z", "G"]], + "photocopy's": null, + "photocopies": null, + "photocopied": null, + "photocopiers": null, + "photocopying": null, + "photoelectric": null, + "photoelectrically": null, + "photoelectronic": null, + "photoelectrons": null, + "photoengraver": [["M"]], + "photoengraver's": null, + "photoengrave": [["R", "S", "D", "J", "Z", "G"]], + "photoengraves": null, + "photoengraved": null, + "photoengravings": null, + "photoengravers": null, + "photoengraving": [["M"]], + "photoengraving's": null, + "photofinishing": [["M", "S"]], + "photofinishing's": null, + "photofinishings": null, + "photogenic": null, + "photogenically": null, + "photograph": [["A", "G", "D"]], + "rephotograph": null, + "rephotographing": null, + "rephotographed": null, + "photographing": null, + "photographed": null, + "photographer": [["S", "M"]], + "photographers": null, + "photographer's": null, + "photographic": null, + "photographically": null, + "photograph's": null, + "photographs": [["A"]], + "rephotographs": null, + "photography": [["M", "S"]], + "photography's": null, + "photographies": null, + "photojournalism": [["S", "M"]], + "photojournalisms": null, + "photojournalism's": null, + "photojournalist": [["S", "M"]], + "photojournalists": null, + "photojournalist's": null, + "photoluminescence": [["M"]], + "photoluminescence's": null, + "photolysis": [["M"]], + "photolysis's": null, + "photolytic": null, + "photometer": [["S", "M"]], + "photometers": null, + "photometer's": null, + "photometric": null, + "photometrically": null, + "photometry": [["M"]], + "photometry's": null, + "photomicrograph": [["M"]], + "photomicrograph's": null, + "photomicrography": [["M"]], + "photomicrography's": null, + "photomultiplier": [["M"]], + "photomultiplier's": null, + "photon": [["M", "S"]], + "photon's": null, + "photons": null, + "photorealism": null, + "photosensitive": null, + "photo": [["S", "G", "M", "D"]], + "photos": null, + "photoing": null, + "photo's": null, + "photoed": null, + "photosphere": [["M"]], + "photosphere's": null, + "photostatic": null, + "Photostat": [["M", "S"]], + "Photostat's": null, + "Photostats": null, + "Photostatted": null, + "Photostatting": null, + "photosyntheses": null, + "photosynthesis": [["M"]], + "photosynthesis's": null, + "photosynthesize": [["D", "S", "G"]], + "photosynthesized": null, + "photosynthesizes": null, + "photosynthesizing": null, + "photosynthetic": null, + "phototypesetter": null, + "phototypesetting": [["M"]], + "phototypesetting's": null, + "phrasal": null, + "phrase": [["A", "G", "D", "S"]], + "rephrase": null, + "rephrasing": null, + "rephrased": null, + "rephrases": null, + "phrasing": [["S", "M"]], + "phrased": null, + "phrases": null, + "phrasebook": null, + "phrasemaking": null, + "phraseology": [["M", "S"]], + "phraseology's": null, + "phraseologies": null, + "phrase's": null, + "phrasings": null, + "phrasing's": null, + "phrenological": [["Y"]], + "phrenologically": null, + "phrenologist": [["M", "S"]], + "phrenologist's": null, + "phrenologists": null, + "phrenology": [["M", "S"]], + "phrenology's": null, + "phrenologies": null, + "phylactery": [["M", "S"]], + "phylactery's": null, + "phylacteries": null, + "phylae": null, + "phyla": [["M"]], + "phyla's": null, + "Phylis": [["M"]], + "Phylis's": null, + "Phyllida": [["M"]], + "Phyllida's": null, + "Phyllis": [["M"]], + "Phyllis's": null, + "Phyllys": [["M"]], + "Phyllys's": null, + "phylogeny": [["M", "S"]], + "phylogeny's": null, + "phylogenies": null, + "phylum": [["M"]], + "phylum's": null, + "Phylys": [["M"]], + "Phylys's": null, + "phys": null, + "physicality": [["M"]], + "physicality's": null, + "physical": [["P", "Y", "S"]], + "physicalness": null, + "physically": null, + "physicals": null, + "physician": [["S", "M"]], + "physicians": null, + "physician's": null, + "physicist": [["M", "S"]], + "physicist's": null, + "physicists": null, + "physicked": null, + "physicking": null, + "physic": [["S", "M"]], + "physics": null, + "physic's": null, + "physiochemical": null, + "physiognomy": [["S", "M"]], + "physiognomies": null, + "physiognomy's": null, + "physiography": [["M", "S"]], + "physiography's": null, + "physiographies": null, + "physiologic": null, + "physiological": [["Y"]], + "physiologically": null, + "physiologist": [["S", "M"]], + "physiologists": null, + "physiologist's": null, + "physiology": [["M", "S"]], + "physiology's": null, + "physiologies": null, + "physiotherapist": [["M", "S"]], + "physiotherapist's": null, + "physiotherapists": null, + "physiotherapy": [["S", "M"]], + "physiotherapies": null, + "physiotherapy's": null, + "physique": [["M", "S", "D"]], + "physique's": null, + "physiques": null, + "physiqued": null, + "phytoplankton": [["M"]], + "phytoplankton's": null, + "Piaf": [["M"]], + "Piaf's": null, + "Piaget": [["M"]], + "Piaget's": null, + "Pia": [["M"]], + "Pia's": null, + "pianism": [["M"]], + "pianism's": null, + "pianissimo": [["S"]], + "pianissimos": null, + "pianistic": null, + "pianist": [["S", "M"]], + "pianists": null, + "pianist's": null, + "pianoforte": [["M", "S"]], + "pianoforte's": null, + "pianofortes": null, + "pianola": null, + "Pianola": [["M"]], + "Pianola's": null, + "piano": [["S", "M"]], + "pianos": null, + "piano's": null, + "piaster": [["M", "S"]], + "piaster's": null, + "piasters": null, + "piazza": [["S", "M"]], + "piazzas": null, + "piazza's": null, + "pibroch": [["M"]], + "pibroch's": null, + "pibrochs": null, + "picador": [["M", "S"]], + "picador's": null, + "picadors": null, + "picaresque": [["S"]], + "picaresques": null, + "pica": [["S", "M"]], + "picas": null, + "pica's": null, + "Picasso": [["M"]], + "Picasso's": null, + "picayune": [["S"]], + "picayunes": null, + "Piccadilly": [["M"]], + "Piccadilly's": null, + "piccalilli": [["M", "S"]], + "piccalilli's": null, + "piccalillis": null, + "piccolo": [["M", "S"]], + "piccolo's": null, + "piccolos": null, + "pickaback's": null, + "pickaxe's": null, + "pickax": [["G", "M", "S", "D"]], + "pickaxing": null, + "pickax's": null, + "pickaxes": null, + "pickaxed": null, + "pickerel": [["M", "S"]], + "pickerel's": null, + "pickerels": null, + "Pickering": [["M"]], + "Pickering's": null, + "picker": [["M", "G"]], + "picker's": null, + "pickering": null, + "picketer": [["M"]], + "picketer's": null, + "picket": [["M", "S", "R", "D", "Z", "G"]], + "picket's": null, + "pickets": null, + "picketed": null, + "picketers": null, + "picketing": null, + "Pickett": [["M"]], + "Pickett's": null, + "Pickford": [["M"]], + "Pickford's": null, + "pick": [["G", "Z", "S", "J", "D", "R"]], + "picking": null, + "pickers": null, + "picks": null, + "pickings": null, + "picked": null, + "pickle": [["S", "D", "M", "G"]], + "pickles": null, + "pickled": null, + "pickle's": null, + "pickling": null, + "Pickman": [["M"]], + "Pickman's": null, + "pickoff": [["S"]], + "pickoffs": null, + "pickpocket": [["G", "S", "M"]], + "pickpocketing": null, + "pickpockets": null, + "pickpocket's": null, + "pickup": [["S", "M"]], + "pickups": null, + "pickup's": null, + "Pickwick": [["M"]], + "Pickwick's": null, + "picky": [["R", "T"]], + "pickier": null, + "pickiest": null, + "picnicked": null, + "picnicker": [["M", "S"]], + "picnicker's": null, + "picnickers": null, + "picnicking": null, + "picnic": [["S", "M"]], + "picnics": null, + "picnic's": null, + "picofarad": [["M", "S"]], + "picofarad's": null, + "picofarads": null, + "picojoule": null, + "picoseconds": null, + "picot": [["D", "M", "G", "S"]], + "picoted": null, + "picot's": null, + "picoting": null, + "picots": null, + "Pict": [["M"]], + "Pict's": null, + "pictograph": [["M"]], + "pictograph's": null, + "pictographs": null, + "pictorialness": [["M"]], + "pictorialness's": null, + "pictorial": [["P", "Y", "S"]], + "pictorially": null, + "pictorials": null, + "picture": [["M", "G", "S", "D"]], + "picture's": null, + "picturing": null, + "pictures": null, + "pictured": null, + "picturesqueness": [["S", "M"]], + "picturesquenesses": null, + "picturesqueness's": null, + "picturesque": [["P", "Y"]], + "picturesquely": null, + "piddle": [["G", "S", "D"]], + "piddling": null, + "piddles": null, + "piddled": null, + "piddly": null, + "pidgin": [["S", "M"]], + "pidgins": null, + "pidgin's": null, + "piebald": [["S"]], + "piebalds": null, + "piece": [["G", "M", "D", "S", "R"]], + "piecing": null, + "piece's": null, + "pieced": null, + "pieces": null, + "piecer": [["M"]], + "piecemeal": null, + "piecer's": null, + "piecewise": null, + "pieceworker": [["M"]], + "pieceworker's": null, + "piecework": [["Z", "S", "M", "R"]], + "pieceworkers": null, + "pieceworks": null, + "piecework's": null, + "piedmont": null, + "Piedmont": [["M"]], + "Piedmont's": null, + "pieing": null, + "pie": [["M", "S"]], + "pie's": null, + "pies": null, + "Pierce": [["M"]], + "Pierce's": null, + "piercer": [["M"]], + "piercer's": null, + "pierce": [["R", "S", "D", "Z", "G", "J"]], + "pierces": null, + "pierced": null, + "piercers": null, + "piercing": [["Y"]], + "piercings": null, + "piercingly": null, + "Pierette": [["M"]], + "Pierette's": null, + "pier": [["M"]], + "pier's": null, + "Pier": [["M"]], + "Pier's": null, + "Pierre": [["M"]], + "Pierre's": null, + "Pierrette": [["M"]], + "Pierrette's": null, + "Pierrot": [["M"]], + "Pierrot's": null, + "Pierson": [["M"]], + "Pierson's": null, + "Pieter": [["M"]], + "Pieter's": null, + "Pietra": [["M"]], + "Pietra's": null, + "Pietrek": [["M"]], + "Pietrek's": null, + "Pietro": [["M"]], + "Pietro's": null, + "piety": [["S", "M"]], + "pieties": null, + "piety's": null, + "piezoelectric": null, + "piezoelectricity": [["M"]], + "piezoelectricity's": null, + "piffle": [["M", "G", "S", "D"]], + "piffle's": null, + "piffling": null, + "piffles": null, + "piffled": null, + "pigeon": [["D", "M", "G", "S"]], + "pigeoned": null, + "pigeon's": null, + "pigeoning": null, + "pigeons": null, + "pigeonhole": [["S", "D", "G", "M"]], + "pigeonholes": null, + "pigeonholed": null, + "pigeonholing": null, + "pigeonhole's": null, + "pigged": null, + "piggery": [["M"]], + "piggery's": null, + "pigging": null, + "piggishness": [["S", "M"]], + "piggishnesses": null, + "piggishness's": null, + "piggish": [["Y", "P"]], + "piggishly": null, + "piggyback": [["M", "S", "D", "G"]], + "piggyback's": null, + "piggybacks": null, + "piggybacked": null, + "piggybacking": null, + "Piggy": [["M"]], + "Piggy's": null, + "piggy": [["R", "S", "M", "T"]], + "piggier": null, + "piggies": null, + "piggy's": null, + "piggiest": null, + "pigheadedness": [["S"]], + "pigheadednesses": null, + "pigheaded": [["Y", "P"]], + "pigheadedly": null, + "piglet": [["M", "S"]], + "piglet's": null, + "piglets": null, + "pigmentation": [["M", "S"]], + "pigmentation's": null, + "pigmentations": null, + "pigment": [["M", "D", "S", "G"]], + "pigment's": null, + "pigmented": null, + "pigments": null, + "pigmenting": null, + "pig": [["M", "L", "S"]], + "pig's": null, + "pigs": null, + "Pigmy's": null, + "pigpen": [["S", "M"]], + "pigpens": null, + "pigpen's": null, + "pigroot": null, + "pigskin": [["M", "S"]], + "pigskin's": null, + "pigskins": null, + "pigsty": [["S", "M"]], + "pigsties": null, + "pigsty's": null, + "pigswill": [["M"]], + "pigswill's": null, + "pigtail": [["S", "M", "D"]], + "pigtails": null, + "pigtail's": null, + "pigtailed": null, + "Pike": [["M"]], + "Pike's": null, + "pike": [["M", "Z", "G", "D", "R", "S"]], + "pike's": null, + "pikers": null, + "piking": null, + "piked": null, + "piker": [["M"]], + "pikes": null, + "piker's": null, + "pikestaff": [["M", "S"]], + "pikestaff's": null, + "pikestaffs": null, + "pilaf": [["M", "S"]], + "pilaf's": null, + "pilafs": null, + "pilaster": [["S", "M"]], + "pilasters": null, + "pilaster's": null, + "Pilate": [["M"]], + "Pilate's": null, + "pilau's": null, + "pilchard": [["S", "M"]], + "pilchards": null, + "pilchard's": null, + "Pilcomayo": [["M"]], + "Pilcomayo's": null, + "pile": [["J", "D", "S", "M", "Z", "G"]], + "pilings": null, + "piled": null, + "piles": null, + "pile's": null, + "pilers": null, + "piling": [["M"]], + "pileup": [["M", "S"]], + "pileup's": null, + "pileups": null, + "pilferage": [["S", "M"]], + "pilferages": null, + "pilferage's": null, + "pilferer": [["M"]], + "pilferer's": null, + "pilfer": [["Z", "G", "S", "R", "D"]], + "pilferers": null, + "pilfering": null, + "pilfers": null, + "pilfered": null, + "Pilgrim": null, + "pilgrimage": [["D", "S", "G", "M"]], + "pilgrimaged": null, + "pilgrimages": null, + "pilgrimaging": null, + "pilgrimage's": null, + "pilgrim": [["M", "S"]], + "pilgrim's": null, + "pilgrims": null, + "piling's": null, + "pillage": [["R", "S", "D", "Z", "G"]], + "pillager": null, + "pillages": null, + "pillaged": null, + "pillagers": null, + "pillaging": null, + "pillar": [["D", "M", "S", "G"]], + "pillared": null, + "pillar's": null, + "pillars": null, + "pillaring": null, + "pillbox": [["M", "S"]], + "pillbox's": null, + "pillboxes": null, + "pill": [["G", "S", "M", "D"]], + "pilling": null, + "pills": null, + "pill's": null, + "pilled": null, + "pillion": [["D", "M", "G", "S"]], + "pillioned": null, + "pillion's": null, + "pillioning": null, + "pillions": null, + "pillory": [["M", "S", "D", "G"]], + "pillory's": null, + "pillories": null, + "pilloried": null, + "pillorying": null, + "pillowcase": [["S", "M"]], + "pillowcases": null, + "pillowcase's": null, + "pillow": [["G", "D", "M", "S"]], + "pillowing": null, + "pillowed": null, + "pillow's": null, + "pillows": null, + "pillowslip": [["S"]], + "pillowslips": null, + "Pillsbury": [["M"]], + "Pillsbury's": null, + "pilot": [["D", "M", "G", "S"]], + "piloted": null, + "pilot's": null, + "piloting": [["M"]], + "pilots": null, + "pilothouse": [["S", "M"]], + "pilothouses": null, + "pilothouse's": null, + "piloting's": null, + "pimento": [["M", "S"]], + "pimento's": null, + "pimentos": null, + "pimiento": [["S", "M"]], + "pimientos": null, + "pimiento's": null, + "pimpernel": [["S", "M"]], + "pimpernels": null, + "pimpernel's": null, + "pimp": [["G", "S", "M", "Y", "D"]], + "pimping": null, + "pimps": null, + "pimp's": null, + "pimply": [["T", "R", "M"]], + "pimped": null, + "pimple": [["S", "D", "M"]], + "pimples": null, + "pimpled": null, + "pimple's": null, + "pimplike": null, + "pimpliest": null, + "pimplier": null, + "pimply's": null, + "PIN": null, + "pinafore": [["M", "S"]], + "pinafore's": null, + "pinafores": null, + "pi�ata": [["S"]], + "pi�atas": null, + "Pinatubo": [["M"]], + "Pinatubo's": null, + "pinball": [["M", "S"]], + "pinball's": null, + "pinballs": null, + "Pincas": [["M"]], + "Pincas's": null, + "pincer": [["G", "S", "D"]], + "pincering": null, + "pincers": null, + "pincered": null, + "Pinchas": [["M"]], + "Pinchas's": null, + "pincher": [["M"]], + "pincher's": null, + "pinch": [["G", "R", "S", "D"]], + "pinching": null, + "pinches": null, + "pinched": null, + "pincushion": [["S", "M"]], + "pincushions": null, + "pincushion's": null, + "Pincus": [["M"]], + "Pincus's": null, + "Pindar": [["M"]], + "Pindar's": null, + "pineapple": [["M", "S"]], + "pineapple's": null, + "pineapples": null, + "pined": [["A"]], + "repined": null, + "Pinehurst": [["M"]], + "Pinehurst's": null, + "pine": [["M", "N", "G", "X", "D", "S"]], + "pine's": null, + "pinion": [["D", "M", "G"]], + "pining": [["A"]], + "pinions": null, + "pines": [["A"]], + "repines": null, + "pinfeather": [["S", "M"]], + "pinfeathers": null, + "pinfeather's": null, + "ping": [["G", "D", "R", "M"]], + "pinging": null, + "pinged": null, + "pinger": null, + "ping's": null, + "pinheaded": [["P"]], + "pinheadedness": null, + "pinhead": [["S", "M", "D"]], + "pinheads": null, + "pinhead's": null, + "pinhole": [["S", "M"]], + "pinholes": null, + "pinhole's": null, + "repining": null, + "pinioned": null, + "pinion's": null, + "pinioning": null, + "Pinkerton": [["M"]], + "Pinkerton's": null, + "pinkeye": [["M", "S"]], + "pinkeye's": null, + "pinkeyes": null, + "pink": [["G", "T", "Y", "D", "R", "M", "P", "S"]], + "pinking": null, + "pinkest": null, + "pinkly": null, + "pinked": null, + "pinker": null, + "pink's": null, + "pinkness": [["S"]], + "pinks": null, + "pinkie": [["S", "M"]], + "pinkies": null, + "pinkie's": null, + "pinkish": [["P"]], + "pinkishness": null, + "pinknesses": null, + "pinko": [["M", "S"]], + "pinko's": null, + "pinkos": null, + "pinky's": null, + "pinnacle": [["M", "G", "S", "D"]], + "pinnacle's": null, + "pinnacling": null, + "pinnacles": null, + "pinnacled": null, + "pinnate": null, + "pinned": [["U"]], + "unpinned": null, + "pinning": [["S"]], + "pinnings": null, + "Pinocchio": [["M"]], + "Pinocchio's": null, + "Pinochet": [["M"]], + "Pinochet's": null, + "pinochle": [["S", "M"]], + "pinochles": null, + "pinochle's": null, + "pi�on": [["S"]], + "pi�ons": null, + "pinpoint": [["S", "D", "G"]], + "pinpoints": null, + "pinpointed": null, + "pinpointing": null, + "pinprick": [["M", "D", "S", "G"]], + "pinprick's": null, + "pinpricked": null, + "pinpricks": null, + "pinpricking": null, + "pin's": null, + "pinsetter": [["S", "M"]], + "pinsetters": null, + "pinsetter's": null, + "Pinsky": [["M"]], + "Pinsky's": null, + "pinstripe": [["S", "D", "M"]], + "pinstripes": null, + "pinstriped": null, + "pinstripe's": null, + "pintail": [["S", "M"]], + "pintails": null, + "pintail's": null, + "Pinter": [["M"]], + "Pinter's": null, + "pint": [["M", "R", "S"]], + "pint's": null, + "pinter": null, + "pints": null, + "pinto": [["S"]], + "pintos": null, + "pinup": [["M", "S"]], + "pinup's": null, + "pinups": null, + "pin": [["U", "S"]], + "unpin": null, + "unpins": null, + "pins": null, + "pinwheel": [["D", "M", "G", "S"]], + "pinwheeled": null, + "pinwheel's": null, + "pinwheeling": null, + "pinwheels": null, + "pinyin": null, + "Pinyin": null, + "piny": [["R", "T"]], + "pinier": null, + "piniest": null, + "pioneer": [["S", "D", "M", "G"]], + "pioneers": null, + "pioneered": null, + "pioneer's": null, + "pioneering": null, + "pion": [["M"]], + "pion's": null, + "Piotr": [["M"]], + "Piotr's": null, + "piousness": [["M", "S"]], + "piousness's": null, + "piousnesses": null, + "pious": [["Y", "P"]], + "piously": null, + "pipeline": [["D", "S", "M", "G"]], + "pipelined": null, + "pipelines": null, + "pipeline's": null, + "pipelining": null, + "pipe": [["M", "S"]], + "pipe's": null, + "pipes": null, + "piper": [["M"]], + "piper's": null, + "Piper": [["M"]], + "Piper's": null, + "Pipestone": [["M"]], + "Pipestone's": null, + "pipet's": null, + "pipette": [["M", "G", "S", "D"]], + "pipette's": null, + "pipetting": null, + "pipettes": null, + "pipetted": null, + "pipework": null, + "piping": [["Y", "M"]], + "pipingly": null, + "piping's": null, + "pipit": [["M", "S"]], + "pipit's": null, + "pipits": null, + "pip": [["J", "S", "Z", "M", "G", "D", "R"]], + "pipings": null, + "pips": null, + "pipers": null, + "pip's": null, + "piped": null, + "Pip": [["M", "R"]], + "Pip's": null, + "Pippa": [["M"]], + "Pippa's": null, + "pipped": null, + "pipping": null, + "pippin": [["S", "M"]], + "pippins": null, + "pippin's": null, + "Pippo": [["M"]], + "Pippo's": null, + "Pippy": [["M"]], + "Pippy's": null, + "pipsqueak": [["S", "M"]], + "pipsqueaks": null, + "pipsqueak's": null, + "piquancy": [["M", "S"]], + "piquancy's": null, + "piquancies": null, + "piquantness": [["M"]], + "piquantness's": null, + "piquant": [["P", "Y"]], + "piquantly": null, + "pique": [["G", "M", "D", "S"]], + "piquing": null, + "pique's": null, + "piqued": null, + "piques": null, + "piracy": [["M", "S"]], + "piracy's": null, + "piracies": null, + "Piraeus": [["M"]], + "Piraeus's": null, + "Pirandello": [["M"]], + "Pirandello's": null, + "piranha": [["S", "M"]], + "piranhas": null, + "piranha's": null, + "pirate": [["M", "G", "S", "D"]], + "pirate's": null, + "pirating": null, + "pirates": null, + "pirated": null, + "piratical": [["Y"]], + "piratically": null, + "pirogi": null, + "pirogies": null, + "pirouette": [["M", "G", "S", "D"]], + "pirouette's": null, + "pirouetting": null, + "pirouettes": null, + "pirouetted": null, + "pis": null, + "Pisa": [["M"]], + "Pisa's": null, + "piscatorial": null, + "Pisces": [["M"]], + "Pisces's": null, + "Pisistratus": [["M"]], + "Pisistratus's": null, + "pismire": [["S", "M"]], + "pismires": null, + "pismire's": null, + "Pissaro": [["M"]], + "Pissaro's": null, + "piss": [["D", "S", "R", "G", "!"]], + "pissed": null, + "pisses": null, + "pisser": null, + "pissing": null, + "pistachio": [["M", "S"]], + "pistachio's": null, + "pistachios": null, + "piste": [["S", "M"]], + "pistes": null, + "piste's": null, + "pistillate": null, + "pistil": [["M", "S"]], + "pistil's": null, + "pistils": null, + "pistoleers": null, + "pistole": [["M"]], + "pistole's": null, + "pistol": [["S", "M", "G", "D"]], + "pistols": null, + "pistol's": null, + "pistoling": null, + "pistoled": null, + "piston": [["S", "M"]], + "pistons": null, + "piston's": null, + "pitapat": [["S"]], + "pitapats": null, + "pitapatted": null, + "pitapatting": null, + "pita": [["S", "M"]], + "pitas": null, + "pita's": null, + "Pitcairn": [["M"]], + "Pitcairn's": null, + "pitchblende": [["S", "M"]], + "pitchblendes": null, + "pitchblende's": null, + "pitcher": [["M"]], + "pitcher's": null, + "pitchfork": [["G", "D", "M", "S"]], + "pitchforking": null, + "pitchforked": null, + "pitchfork's": null, + "pitchforks": null, + "pitching": [["M"]], + "pitching's": null, + "pitchman": [["M"]], + "pitchman's": null, + "pitchmen": null, + "pitch": [["R", "S", "D", "Z", "G"]], + "pitches": null, + "pitched": null, + "pitchers": null, + "pitchstone": [["M"]], + "pitchstone's": null, + "piteousness": [["S", "M"]], + "piteousnesses": null, + "piteousness's": null, + "piteous": [["Y", "P"]], + "piteously": null, + "pitfall": [["S", "M"]], + "pitfalls": null, + "pitfall's": null, + "pithily": null, + "pithiness": [["S", "M"]], + "pithinesses": null, + "pithiness's": null, + "pith": [["M", "G", "D", "S"]], + "pith's": null, + "pithing": null, + "pithed": null, + "pithes": null, + "piths": null, + "pithy": [["R", "T", "P"]], + "pithier": null, + "pithiest": null, + "pitiableness": [["M"]], + "pitiableness's": null, + "pitiable": [["P"]], + "pitiably": null, + "pitier": [["M"]], + "pitier's": null, + "pitifuller": null, + "pitifullest": null, + "pitifulness": [["M"]], + "pitifulness's": null, + "pitiful": [["P", "Y"]], + "pitifully": null, + "pitilessness": [["S", "M"]], + "pitilessnesses": null, + "pitilessness's": null, + "pitiless": [["P", "Y"]], + "pitilessly": null, + "pitman": [["M"]], + "pitman's": null, + "pit": [["M", "S"]], + "pit's": null, + "pits": null, + "Pitney": [["M"]], + "Pitney's": null, + "piton": [["S", "M"]], + "pitons": null, + "piton's": null, + "pittance": [["S", "M"]], + "pittances": null, + "pittance's": null, + "pitted": null, + "pitting": null, + "Pittman": [["M"]], + "Pittman's": null, + "Pittsburgh": [["Z", "M"]], + "Pittsburghers": null, + "Pittsburgh's": null, + "Pittsfield": [["M"]], + "Pittsfield's": null, + "Pitt": [["S", "M"]], + "Pitts": null, + "Pitt's": null, + "Pittston": [["M"]], + "Pittston's": null, + "pituitary": [["S", "M"]], + "pituitaries": null, + "pituitary's": null, + "pitying": [["Y"]], + "pityingly": null, + "pity": [["Z", "D", "S", "R", "M", "G"]], + "pitiers": null, + "pitied": null, + "pities": null, + "pity's": null, + "Pius": [["M"]], + "Pius's": null, + "pivotal": [["Y"]], + "pivotally": null, + "pivot": [["D", "M", "S", "G"]], + "pivoted": null, + "pivot's": null, + "pivots": null, + "pivoting": [["M"]], + "pivoting's": null, + "pix": [["D", "S", "G"]], + "pixed": null, + "pixes": null, + "pixing": null, + "pixel": [["S", "M"]], + "pixels": null, + "pixel's": null, + "pixie": [["M", "S"]], + "pixie's": null, + "pixies": null, + "pixiness": null, + "pixmap": [["S", "M"]], + "pixmaps": null, + "pixmap's": null, + "Pizarro": [["M"]], + "Pizarro's": null, + "pizazz": [["S"]], + "pizazzes": null, + "pi": [["Z", "G", "D", "R", "H"]], + "piers": null, + "piing": null, + "pied": null, + "pizza": [["S", "M"]], + "pizzas": null, + "pizza's": null, + "pizzeria": [["S", "M"]], + "pizzerias": null, + "pizzeria's": null, + "pizzicati": null, + "pizzicato": null, + "pj's": null, + "PJ's": null, + "pk": null, + "pkg": null, + "pkt": null, + "pkwy": null, + "Pkwy": null, + "pl": null, + "placard": [["D", "S", "M", "G"]], + "placarded": null, + "placards": null, + "placard's": null, + "placarding": null, + "placate": [["N", "G", "V", "X", "D", "R", "S"]], + "placation": null, + "placating": null, + "placative": null, + "placations": null, + "placated": null, + "placater": null, + "placates": null, + "placatory": null, + "placeable": [["A"]], + "replaceable": null, + "placebo": [["S", "M"]], + "placebos": null, + "placebo's": null, + "placed": [["E", "A", "U"]], + "displaced": null, + "replaced": null, + "unplaced": null, + "place": [["D", "S", "R", "J", "L", "G", "Z", "M"]], + "places": [["E", "A"]], + "placer": [["E", "M"]], + "placings": null, + "placement": [["A", "M", "E", "S"]], + "placing": [["A", "E"]], + "placers": null, + "place's": null, + "placeholder": [["S"]], + "placeholders": null, + "placekick": [["D", "G", "S"]], + "placekicked": null, + "placekicking": null, + "placekicks": null, + "placeless": [["Y"]], + "placelessly": null, + "replacement": null, + "replacement's": null, + "replacements": null, + "placement's": null, + "displacement's": null, + "displacements": null, + "placements": null, + "placental": [["S"]], + "placentals": null, + "placenta": [["S", "M"]], + "placentas": null, + "placenta's": null, + "displacer": null, + "displacer's": null, + "placer's": null, + "displaces": null, + "replaces": null, + "placidity": [["S", "M"]], + "placidities": null, + "placidity's": null, + "placidness": [["M"]], + "placidness's": null, + "placid": [["P", "Y"]], + "placidly": null, + "replacing": null, + "displacing": null, + "placket": [["S", "M"]], + "plackets": null, + "placket's": null, + "plagiarism": [["M", "S"]], + "plagiarism's": null, + "plagiarisms": null, + "plagiarist": [["M", "S"]], + "plagiarist's": null, + "plagiarists": null, + "plagiarize": [["G", "Z", "D", "S", "R"]], + "plagiarizing": null, + "plagiarizers": null, + "plagiarized": null, + "plagiarizes": null, + "plagiarizer": null, + "plagiary": [["S", "M"]], + "plagiaries": null, + "plagiary's": null, + "plagued": [["U"]], + "unplagued": null, + "plague": [["M", "G", "R", "S", "D"]], + "plague's": null, + "plaguing": null, + "plaguer": [["M"]], + "plagues": null, + "plaguer's": null, + "plaice": [["M"]], + "plaice's": null, + "plaid": [["D", "M", "S", "G"]], + "plaided": null, + "plaid's": null, + "plaids": null, + "plaiding": null, + "plainclothes": null, + "plainclothesman": null, + "plainclothesmen": null, + "Plainfield": [["M"]], + "Plainfield's": null, + "plainness": [["M", "S"]], + "plainness's": null, + "plainnesses": null, + "plainsman": [["M"]], + "plainsman's": null, + "plainsmen": null, + "plainsong": [["S", "M"]], + "plainsongs": null, + "plainsong's": null, + "plainspoken": null, + "plain": [["S", "P", "T", "G", "R", "D", "Y"]], + "plains": null, + "plainest": null, + "plaining": null, + "plainer": null, + "plained": null, + "plainly": null, + "plaintiff": [["M", "S"]], + "plaintiff's": null, + "plaintiffs": null, + "plaintiveness": [["M"]], + "plaintiveness's": null, + "plaintive": [["Y", "P"]], + "plaintively": null, + "plaint": [["V", "M", "S"]], + "plaint's": null, + "plaints": null, + "Plainview": [["M"]], + "Plainview's": null, + "plaiting": [["M"]], + "plaiting's": null, + "plait": [["S", "R", "D", "M", "G"]], + "plaits": null, + "plaiter": null, + "plaited": null, + "plait's": null, + "planar": null, + "planarity": null, + "Planck": [["M"]], + "Planck's": null, + "plan": [["D", "R", "M", "S", "G", "Z"]], + "planed": null, + "planer": [["M"]], + "plan's": null, + "plans": null, + "planing": null, + "planers": null, + "planeload": null, + "planer's": null, + "plane's": null, + "plane": [["S", "C", "G", "D"]], + "planes": null, + "deplanes": null, + "deplane": null, + "deplaning": null, + "deplaned": null, + "planetarium": [["M", "S"]], + "planetarium's": null, + "planetariums": null, + "planetary": null, + "planetesimal": [["M"]], + "planetesimal's": null, + "planet": [["M", "S"]], + "planet's": null, + "planets": null, + "planetoid": [["S", "M"]], + "planetoids": null, + "planetoid's": null, + "plangency": [["S"]], + "plangencies": null, + "plangent": null, + "planking": [["M"]], + "planking's": null, + "plank": [["S", "J", "M", "D", "G"]], + "planks": null, + "plankings": null, + "plank's": null, + "planked": null, + "plankton": [["M", "S"]], + "plankton's": null, + "planktons": null, + "planned": [["U"]], + "unplanned": null, + "planner": [["S", "M"]], + "planners": null, + "planner's": null, + "planning": null, + "Plano": null, + "planoconcave": null, + "planoconvex": null, + "Plantagenet": [["M"]], + "Plantagenet's": null, + "plantain": [["M", "S"]], + "plantain's": null, + "plantains": null, + "plantar": null, + "plantation": [["M", "S"]], + "plantation's": null, + "plantations": null, + "planter": [["M", "S"]], + "planter's": null, + "planters": null, + "planting": [["S"]], + "plantings": null, + "plantlike": null, + "plant's": null, + "plant": [["S", "A", "D", "G"]], + "plants": null, + "replants": null, + "replant": null, + "replanted": null, + "replanting": null, + "planted": null, + "plaque": [["M", "S"]], + "plaque's": null, + "plaques": null, + "plash": [["G", "S", "D", "M"]], + "plashing": null, + "plashes": null, + "plashed": null, + "plash's": null, + "plasma": [["M", "S"]], + "plasma's": null, + "plasmas": null, + "plasmid": [["S"]], + "plasmids": null, + "plasm": [["M"]], + "plasm's": null, + "plasterboard": [["M", "S"]], + "plasterboard's": null, + "plasterboards": null, + "plasterer": [["M"]], + "plasterer's": null, + "plastering": [["M"]], + "plastering's": null, + "plaster": [["M", "D", "R", "S", "Z", "G"]], + "plaster's": null, + "plastered": null, + "plasters": null, + "plasterers": null, + "plasterwork": [["M"]], + "plasterwork's": null, + "plastically": null, + "plasticine": null, + "Plasticine": [["M"]], + "Plasticine's": null, + "plasticity": [["S", "M"]], + "plasticities": null, + "plasticity's": null, + "plasticize": [["G", "D", "S"]], + "plasticizing": null, + "plasticized": null, + "plasticizes": null, + "plastic": [["M", "Y", "S"]], + "plastic's": null, + "plasticly": null, + "plastics": null, + "plateau": [["G", "D", "M", "S"]], + "plateauing": null, + "plateaued": null, + "plateau's": null, + "plateaus": null, + "plateful": [["S"]], + "platefuls": null, + "platelet": [["S", "M"]], + "platelets": null, + "platelet's": null, + "platen": [["M"]], + "platen's": null, + "plater": [["M"]], + "plater's": null, + "plate": [["S", "M"]], + "plates": null, + "plate's": null, + "platform": [["S", "G", "D", "M"]], + "platforms": null, + "platforming": null, + "platformed": null, + "platform's": null, + "Plath": [["M"]], + "Plath's": null, + "plating": [["M"]], + "plating's": null, + "platinize": [["G", "S", "D"]], + "platinizing": null, + "platinizes": null, + "platinized": null, + "platinum": [["M", "S"]], + "platinum's": null, + "platinums": null, + "platitude": [["S", "M"]], + "platitudes": null, + "platitude's": null, + "platitudinous": [["Y"]], + "platitudinously": null, + "plat": [["J", "D", "N", "R", "S", "G", "X", "Z"]], + "platings": null, + "plated": null, + "plats": null, + "platens": null, + "platers": null, + "Plato": [["M"]], + "Plato's": null, + "platonic": null, + "Platonic": null, + "Platonism": [["M"]], + "Platonism's": null, + "Platonist": null, + "platoon": [["M", "D", "S", "G"]], + "platoon's": null, + "platooned": null, + "platoons": null, + "platooning": null, + "platted": null, + "Platte": [["M"]], + "Platte's": null, + "platter": [["M", "S"]], + "platter's": null, + "platters": null, + "Platteville": [["M"]], + "Platteville's": null, + "platting": null, + "platypus": [["M", "S"]], + "platypus's": null, + "platypuses": null, + "platys": null, + "platy": [["T", "R"]], + "platiest": null, + "platier": null, + "plaudit": [["M", "S"]], + "plaudit's": null, + "plaudits": null, + "plausibility": [["S"]], + "plausibilities": null, + "plausible": [["P"]], + "plausibleness": null, + "plausibly": null, + "Plautus": [["M"]], + "Plautus's": null, + "playability": [["U"]], + "unplayability": null, + "playable": [["U"]], + "unplayable": null, + "playacting": [["M"]], + "playacting's": null, + "playact": [["S", "J", "D", "G"]], + "playacts": null, + "playactings": null, + "playacted": null, + "playback": [["M", "S"]], + "playback's": null, + "playbacks": null, + "playbill": [["S", "M"]], + "playbills": null, + "playbill's": null, + "Playboy": [["M"]], + "Playboy's": null, + "playboy": [["S", "M"]], + "playboys": null, + "playboy's": null, + "play": [["D", "R", "S", "E", "B", "G"]], + "played": [["A"]], + "player": [["S", "M"]], + "displayer": null, + "plays": [["A"]], + "displayable": null, + "playing": [["S"]], + "replayed": null, + "player's": [["E"]], + "displayer's": null, + "players": null, + "playfellow": [["S"]], + "playfellows": null, + "playfulness": [["M", "S"]], + "playfulness's": null, + "playfulnesses": null, + "playful": [["P", "Y"]], + "playfully": null, + "playgirl": [["S", "M"]], + "playgirls": null, + "playgirl's": null, + "playgoer": [["M", "S"]], + "playgoer's": null, + "playgoers": null, + "playground": [["M", "S"]], + "playground's": null, + "playgrounds": null, + "playgroup": [["S"]], + "playgroups": null, + "playhouse": [["S", "M"]], + "playhouses": null, + "playhouse's": null, + "playings": null, + "playmate": [["M", "S"]], + "playmate's": null, + "playmates": null, + "playoff": [["S"]], + "playoffs": null, + "playpen": [["S", "M"]], + "playpens": null, + "playpen's": null, + "playroom": [["S", "M"]], + "playrooms": null, + "playroom's": null, + "replays": null, + "Playtex": [["M"]], + "Playtex's": null, + "plaything": [["M", "S"]], + "plaything's": null, + "playthings": null, + "playtime": [["S", "M"]], + "playtimes": null, + "playtime's": null, + "playwright": [["S", "M"]], + "playwrights": null, + "playwright's": null, + "playwriting": [["M"]], + "playwriting's": null, + "plaza": [["S", "M"]], + "plazas": null, + "plaza's": null, + "pleader": [["M", "A"]], + "pleader's": null, + "repleader's": null, + "repleader": null, + "pleading": [["M", "Y"]], + "pleading's": null, + "pleadingly": null, + "plead": [["Z", "G", "J", "R", "D", "S"]], + "pleaders": null, + "pleadings": null, + "pleaded": null, + "pleads": null, + "pleasanter": null, + "pleasantest": null, + "pleasantness": [["S", "M", "U"]], + "pleasantnesses": null, + "unpleasantnesses": null, + "pleasantness's": null, + "unpleasantness's": null, + "unpleasantness": null, + "pleasantry": [["M", "S"]], + "pleasantry's": null, + "pleasantries": null, + "pleasant": [["U", "Y", "P"]], + "unpleasant": null, + "unpleasantly": null, + "pleasantly": null, + "pleased": [["E", "U"]], + "unpleased": null, + "pleaser": [["M"]], + "pleaser's": null, + "pleases": [["E"]], + "displeases": null, + "please": [["Y"]], + "pleasely": null, + "pleasingness": [["M"]], + "pleasingness's": null, + "pleasing": [["Y", "P"]], + "pleasingly": null, + "plea": [["S", "M"]], + "pleas": [["R", "S", "D", "J", "G"]], + "plea's": null, + "pleasings": null, + "pleasurableness": [["M"]], + "pleasurableness's": null, + "pleasurable": [["P"]], + "pleasurably": null, + "pleasureful": null, + "pleasure": [["M", "G", "B", "D", "S"]], + "pleasure's": [["E"]], + "pleasuring": null, + "pleasured": null, + "pleasures": [["E"]], + "displeasure's": null, + "displeasures": null, + "pleater": [["M"]], + "pleater's": null, + "pleat": [["R", "D", "M", "G", "S"]], + "pleated": null, + "pleat's": null, + "pleating": null, + "pleats": null, + "plebeian": [["S", "Y"]], + "plebeians": null, + "plebeianly": null, + "plebe": [["M", "S"]], + "plebe's": null, + "plebes": null, + "plebiscite": [["S", "M"]], + "plebiscites": null, + "plebiscite's": null, + "plectra": null, + "plectrum": [["S", "M"]], + "plectrums": null, + "plectrum's": null, + "pledger": [["M"]], + "pledger's": null, + "pledge": [["R", "S", "D", "M", "G"]], + "pledges": null, + "pledged": null, + "pledge's": null, + "pledging": null, + "Pleiads": null, + "Pleistocene": null, + "plenary": [["S"]], + "plenaries": null, + "plenipotentiary": [["S"]], + "plenipotentiaries": null, + "plenitude": [["M", "S"]], + "plenitude's": null, + "plenitudes": null, + "plenteousness": [["M"]], + "plenteousness's": null, + "plenteous": [["P", "Y"]], + "plenteously": null, + "plentifulness": [["M"]], + "plentifulness's": null, + "plentiful": [["Y", "P"]], + "plentifully": null, + "plenty": [["S", "M"]], + "plenties": null, + "plenty's": null, + "plenum": [["M"]], + "plenum's": null, + "pleonasm": [["M", "S"]], + "pleonasm's": null, + "pleonasms": null, + "plethora": [["S", "M"]], + "plethoras": null, + "plethora's": null, + "pleurae": null, + "pleural": null, + "pleura": [["M"]], + "pleura's": null, + "pleurisy": [["S", "M"]], + "pleurisies": null, + "pleurisy's": null, + "Plexiglas": [["M", "S"]], + "Plexiglas's": null, + "Plexiglases": null, + "plexus": [["S", "M"]], + "plexuses": null, + "plexus's": null, + "pliability": [["M", "S"]], + "pliability's": null, + "pliabilities": null, + "pliableness": [["M"]], + "pliableness's": null, + "pliable": [["P"]], + "pliancy": [["M", "S"]], + "pliancy's": null, + "pliancies": null, + "pliantness": [["M"]], + "pliantness's": null, + "pliant": [["Y", "P"]], + "pliantly": null, + "plication": [["M", "A"]], + "plication's": null, + "replication's": null, + "replication": null, + "plier": [["M", "A"]], + "plier's": null, + "replier's": null, + "replier": null, + "plight": [["G", "M", "D", "R", "S"]], + "plighting": null, + "plight's": null, + "plighted": null, + "plighter": null, + "plights": null, + "plimsolls": null, + "plinker": [["M"]], + "plinker's": null, + "plink": [["G", "R", "D", "S"]], + "plinking": null, + "plinked": null, + "plinks": null, + "plinth": [["M"]], + "plinth's": null, + "plinths": null, + "Pliny": [["M"]], + "Pliny's": null, + "Pliocene": [["S"]], + "Pliocenes": null, + "PLO": null, + "plodded": null, + "plodder": [["S", "M"]], + "plodders": null, + "plodder's": null, + "plodding": [["S", "Y"]], + "ploddings": null, + "ploddingly": null, + "plod": [["S"]], + "plods": null, + "plopped": null, + "plopping": null, + "plop": [["S", "M"]], + "plops": null, + "plop's": null, + "plosive": null, + "plot": [["S", "M"]], + "plots": null, + "plot's": null, + "plotted": [["A"]], + "replotted": null, + "plotter": [["M", "D", "S", "G"]], + "plotter's": null, + "plottered": null, + "plotters": null, + "plottering": null, + "plotting": null, + "plover": [["M", "S"]], + "plover's": null, + "plovers": null, + "plowed": [["U"]], + "unplowed": null, + "plower": [["M"]], + "plower's": null, + "plowman": [["M"]], + "plowman's": null, + "plowmen": null, + "plow": [["S", "G", "Z", "D", "R", "M"]], + "plows": null, + "plowing": null, + "plowers": null, + "plow's": null, + "plowshare": [["M", "S"]], + "plowshare's": null, + "plowshares": null, + "ploy's": null, + "ploy": [["S", "C", "D", "G"]], + "ploys": null, + "ployed": null, + "ploying": null, + "plucker": [["M"]], + "plucker's": null, + "pluckily": null, + "pluckiness": [["S", "M"]], + "pluckinesses": null, + "pluckiness's": null, + "pluck": [["S", "G", "R", "D"]], + "plucks": null, + "plucking": null, + "plucked": null, + "plucky": [["T", "P", "R"]], + "pluckiest": null, + "pluckier": null, + "pluggable": null, + "plugged": [["U", "A"]], + "unplugged": null, + "replugged": null, + "plugging": [["A", "U"]], + "replugging": null, + "unplugging": null, + "plughole": null, + "plug's": null, + "plug": [["U", "S"]], + "unplug": null, + "unplugs": null, + "plugs": null, + "plumage": [["D", "S", "M"]], + "plumaged": null, + "plumages": null, + "plumage's": null, + "plumbago": [["M"]], + "plumbago's": null, + "plumbed": [["U"]], + "unplumbed": null, + "plumber": [["M"]], + "plumber's": null, + "plumbing": [["M"]], + "plumbing's": null, + "plumb": [["J", "S", "Z", "G", "M", "R", "D"]], + "plumbings": null, + "plumbs": null, + "plumbers": null, + "plumb's": null, + "plume": [["S", "M"]], + "plumes": null, + "plume's": null, + "plummer": null, + "plummest": null, + "plummet": [["D", "S", "G"]], + "plummeted": null, + "plummets": null, + "plummeting": null, + "plummy": null, + "plumper": [["M"]], + "plumper's": null, + "plumpness": [["S"]], + "plumpnesses": null, + "plump": [["R", "D", "N", "Y", "S", "T", "G", "P"]], + "plumped": null, + "plumpen": null, + "plumply": null, + "plumps": null, + "plumpest": null, + "plumping": null, + "plum": [["S", "M", "D", "G"]], + "plums": null, + "plum's": null, + "plumed": null, + "pluming": null, + "plumy": [["T", "R"]], + "plumiest": null, + "plumier": null, + "plunder": [["G", "D", "R", "S", "Z"]], + "plundering": null, + "plundered": null, + "plunderer": null, + "plunders": null, + "plunderers": null, + "plunger": [["M"]], + "plunger's": null, + "plunge": [["R", "S", "D", "Z", "G"]], + "plunges": null, + "plunged": null, + "plungers": null, + "plunging": null, + "plunker": [["M"]], + "plunker's": null, + "plunk": [["Z", "G", "S", "R", "D"]], + "plunkers": null, + "plunking": null, + "plunks": null, + "plunked": null, + "pluperfect": [["S"]], + "pluperfects": null, + "pluralism": [["M", "S"]], + "pluralism's": null, + "pluralisms": null, + "pluralistic": null, + "pluralist": [["S"]], + "pluralists": null, + "plurality": [["S", "M"]], + "pluralities": null, + "plurality's": null, + "pluralization": [["M", "S"]], + "pluralization's": null, + "pluralizations": null, + "pluralize": [["G", "Z", "R", "S", "D"]], + "pluralizing": null, + "pluralizers": null, + "pluralizer": [["M"]], + "pluralizes": null, + "pluralized": null, + "pluralizer's": null, + "plural": [["S", "Y"]], + "plurals": null, + "plurally": null, + "plushness": [["M", "S"]], + "plushness's": null, + "plushnesses": null, + "plush": [["R", "S", "Y", "M", "T", "P"]], + "plusher": null, + "plushes": null, + "plushly": null, + "plush's": null, + "plushest": null, + "plushy": [["R", "P", "T"]], + "plushier": null, + "plushiness": null, + "plushiest": null, + "plus": [["S"]], + "pluses": null, + "plussed": null, + "plussing": null, + "Plutarch": [["M"]], + "Plutarch's": null, + "plutocracy": [["M", "S"]], + "plutocracy's": null, + "plutocracies": null, + "plutocratic": null, + "plutocrat": [["S", "M"]], + "plutocrats": null, + "plutocrat's": null, + "Pluto": [["M"]], + "Pluto's": null, + "plutonium": [["S", "M"]], + "plutoniums": null, + "plutonium's": null, + "pluvial": [["S"]], + "pluvials": null, + "ply": [["A", "Z", "N", "G", "R", "S", "D"]], + "reply": [["X"]], + "repliers": null, + "replying": null, + "replies": null, + "replied": null, + "pliers": null, + "plying": null, + "plies": null, + "plied": null, + "Plymouth": [["M"]], + "Plymouth's": null, + "plywood": [["M", "S"]], + "plywood's": null, + "plywoods": null, + "pm": null, + "PM": null, + "Pm": [["M"]], + "Pm's": null, + "PMS": null, + "pneumatically": null, + "pneumatic": [["S"]], + "pneumatics": [["M"]], + "pneumatics's": null, + "pneumonia": [["M", "S"]], + "pneumonia's": null, + "pneumonias": null, + "PO": null, + "poacher": [["M"]], + "poacher's": null, + "poach": [["Z", "G", "S", "R", "D"]], + "poachers": null, + "poaching": null, + "poaches": null, + "poached": null, + "Pocahontas": [["M"]], + "Pocahontas's": null, + "pocketbook": [["S", "M"]], + "pocketbooks": null, + "pocketbook's": null, + "pocketful": [["S", "M"]], + "pocketfuls": null, + "pocketful's": null, + "pocketing": [["M"]], + "pocketing's": null, + "pocketknife": [["M"]], + "pocketknife's": null, + "pocketknives": null, + "pocket": [["M", "S", "R", "D", "G"]], + "pocket's": null, + "pockets": null, + "pocketer": null, + "pocketed": null, + "pock": [["G", "D", "M", "S"]], + "pocking": null, + "pocked": null, + "pock's": null, + "pocks": null, + "pockmark": [["M", "D", "S", "G"]], + "pockmark's": null, + "pockmarked": null, + "pockmarks": null, + "pockmarking": null, + "Pocono": [["M", "S"]], + "Pocono's": null, + "Poconos": null, + "podded": null, + "podding": null, + "podge": [["Z", "R"]], + "podgers": null, + "podger": null, + "Podgorica": [["M"]], + "Podgorica's": null, + "podiatrist": [["M", "S"]], + "podiatrist's": null, + "podiatrists": null, + "podiatry": [["M", "S"]], + "podiatry's": null, + "podiatries": null, + "podium": [["M", "S"]], + "podium's": null, + "podiums": null, + "pod": [["S", "M"]], + "pods": null, + "pod's": null, + "Podunk": [["M"]], + "Podunk's": null, + "Poe": [["M"]], + "Poe's": null, + "poem": [["M", "S"]], + "poem's": null, + "poems": null, + "poesy": [["G", "S", "D", "M"]], + "poesying": null, + "poesies": null, + "poesied": null, + "poesy's": null, + "poetaster": [["M", "S"]], + "poetaster's": null, + "poetasters": null, + "poetess": [["M", "S"]], + "poetess's": null, + "poetesses": null, + "poetically": null, + "poeticalness": null, + "poetical": [["U"]], + "unpoetical": null, + "poetic": [["S"]], + "poetics": [["M"]], + "poetics's": null, + "poet": [["M", "S"]], + "poet's": null, + "poets": null, + "poetry": [["S", "M"]], + "poetries": null, + "poetry's": null, + "pogo": null, + "Pogo": [["M"]], + "Pogo's": null, + "pogrom": [["G", "M", "D", "S"]], + "pogroming": null, + "pogrom's": null, + "pogromed": null, + "pogroms": null, + "poignancy": [["M", "S"]], + "poignancy's": null, + "poignancies": null, + "poignant": [["Y"]], + "poignantly": null, + "Poincar�": [["M"]], + "Poincar�'s": null, + "poinciana": [["S", "M"]], + "poincianas": null, + "poinciana's": null, + "Poindexter": [["M"]], + "Poindexter's": null, + "poinsettia": [["S", "M"]], + "poinsettias": null, + "poinsettia's": null, + "pointblank": null, + "pointedness": [["M"]], + "pointedness's": null, + "pointed": [["P", "Y"]], + "pointedly": null, + "pointer": [["M"]], + "pointer's": null, + "pointillism": [["S", "M"]], + "pointillisms": null, + "pointillism's": null, + "pointillist": [["S", "M"]], + "pointillists": null, + "pointillist's": null, + "pointing": [["M"]], + "pointing's": null, + "pointlessness": [["S", "M"]], + "pointlessnesses": null, + "pointlessness's": null, + "pointless": [["Y", "P"]], + "pointlessly": null, + "point": [["R", "D", "M", "Z", "G", "S"]], + "point's": null, + "pointers": null, + "points": null, + "pointy": [["T", "R"]], + "pointiest": null, + "pointier": null, + "poise": [["M"]], + "poise's": null, + "pois": [["G", "D", "S"]], + "poising": null, + "poised": null, + "poises": null, + "poi": [["S", "M"]], + "poi's": null, + "poisoner": [["M"]], + "poisoner's": null, + "poisoning": [["M"]], + "poisoning's": null, + "poisonous": [["P", "Y"]], + "poisonousness": null, + "poisonously": null, + "poison": [["R", "D", "M", "Z", "G", "S", "J"]], + "poisoned": null, + "poison's": null, + "poisoners": null, + "poisons": null, + "poisonings": null, + "Poisson": [["M"]], + "Poisson's": null, + "poke": [["D", "R", "S", "Z", "G"]], + "poked": null, + "poker": [["M"]], + "pokes": null, + "pokers": null, + "poking": null, + "Pokemon": [["M"]], + "Pokemon's": null, + "pokerface": [["D"]], + "pokerfaced": null, + "poker's": null, + "poky": [["S", "R", "T"]], + "pokies": null, + "pokier": null, + "pokiest": null, + "Poland": [["M"]], + "Poland's": null, + "Polanski": [["M"]], + "Polanski's": null, + "polarimeter": [["S", "M"]], + "polarimeters": null, + "polarimeter's": null, + "polarimetry": null, + "polariscope": [["M"]], + "polariscope's": null, + "Polaris": [["M"]], + "Polaris's": null, + "polarity": [["M", "S"]], + "polarity's": null, + "polarities": null, + "polarization": [["C", "M", "S"]], + "depolarization": null, + "depolarization's": null, + "depolarizations": null, + "polarization's": null, + "polarizations": null, + "polarized": [["U", "C"]], + "unpolarized": [["S", "M"]], + "depolarized": null, + "polarize": [["R", "S", "D", "Z", "G"]], + "polarizer": null, + "polarizes": [["C"]], + "polarizers": null, + "polarizing": [["C"]], + "depolarizes": null, + "depolarizing": null, + "polarogram": [["S", "M"]], + "polarograms": null, + "polarogram's": null, + "polarograph": null, + "polarography": [["M"]], + "polarography's": null, + "Polaroid": [["S", "M"]], + "Polaroids": null, + "Polaroid's": null, + "polar": [["S"]], + "polars": null, + "polecat": [["S", "M"]], + "polecats": null, + "polecat's": null, + "polemical": [["Y"]], + "polemically": null, + "polemicist": [["S"]], + "polemicists": null, + "polemic": [["S"]], + "polemics": [["M"]], + "polemics's": null, + "pole": [["M", "S"]], + "pole's": null, + "poles": null, + "Pole": [["M", "S"]], + "Pole's": null, + "Poles": null, + "poler": [["M"]], + "poler's": null, + "polestar": [["S"]], + "polestars": null, + "poleward": [["S"]], + "polewards": null, + "pol": [["G", "M", "D", "R", "S"]], + "poling": null, + "pol's": null, + "poled": null, + "pols": null, + "policeman": [["M"]], + "policeman's": null, + "policemen": [["M"]], + "policemen's": null, + "police": [["M", "S", "D", "G"]], + "police's": null, + "polices": null, + "policed": null, + "policing": null, + "policewoman": [["M"]], + "policewoman's": null, + "policewomen": null, + "policyholder": [["M", "S"]], + "policyholder's": null, + "policyholders": null, + "policymaker": [["S"]], + "policymakers": null, + "policymaking": null, + "policy": [["S", "M"]], + "policies": null, + "policy's": null, + "poliomyelitides": null, + "poliomyelitis": [["M"]], + "poliomyelitis's": null, + "polio": [["S", "M"]], + "polios": null, + "polio's": null, + "Polish": null, + "polished": [["U"]], + "unpolished": null, + "polisher": [["M"]], + "polisher's": null, + "polish": [["R", "S", "D", "Z", "G", "J"]], + "polishes": null, + "polishers": null, + "polishing": null, + "polishings": null, + "polis": [["M"]], + "polis's": null, + "Politburo": [["M"]], + "Politburo's": null, + "politburo": [["S"]], + "politburos": null, + "politeness": [["M", "S"]], + "politeness's": null, + "politenesses": null, + "polite": [["P", "R", "T", "Y"]], + "politer": null, + "politest": null, + "politely": null, + "politesse": [["S", "M"]], + "politesses": null, + "politesse's": null, + "politically": null, + "political": [["U"]], + "unpolitical": null, + "politician": [["M", "S"]], + "politician's": null, + "politicians": null, + "politicization": [["S"]], + "politicizations": null, + "politicize": [["C", "S", "D", "G"]], + "depoliticize": null, + "depoliticizes": null, + "depoliticized": null, + "depoliticizing": null, + "politicizes": null, + "politicized": null, + "politicizing": null, + "politicked": null, + "politicking": [["S", "M"]], + "politickings": null, + "politicking's": null, + "politico": [["S", "M"]], + "politicos": null, + "politico's": null, + "politic": [["S"]], + "politics": [["M"]], + "politics's": null, + "polity": [["M", "S"]], + "polity's": null, + "polities": null, + "polka": [["S", "D", "M", "G"]], + "polkas": null, + "polkaed": null, + "polka's": null, + "polkaing": null, + "Polk": [["M"]], + "Polk's": null, + "pollack": [["S", "M"]], + "pollacks": null, + "pollack's": null, + "Pollard": [["M"]], + "Pollard's": null, + "polled": [["U"]], + "unpolled": null, + "pollen": [["G", "D", "M"]], + "pollening": null, + "pollened": null, + "pollen's": null, + "pollinate": [["X", "S", "D", "G", "N"]], + "pollinations": null, + "pollinates": null, + "pollinated": null, + "pollinating": null, + "pollination": [["M"]], + "pollination's": null, + "pollinator": [["M", "S"]], + "pollinator's": null, + "pollinators": null, + "polliwog": [["S", "M"]], + "polliwogs": null, + "polliwog's": null, + "poll": [["M", "D", "N", "R", "S", "G", "X"]], + "poll's": null, + "poller": null, + "polls": null, + "polling": null, + "pollens": null, + "pollock's": null, + "Pollock": [["S", "M"]], + "Pollocks": null, + "Pollock's": null, + "pollster": [["M", "S"]], + "pollster's": null, + "pollsters": null, + "pollutant": [["M", "S"]], + "pollutant's": null, + "pollutants": null, + "polluted": [["U"]], + "unpolluted": null, + "polluter": [["M"]], + "polluter's": null, + "pollute": [["R", "S", "D", "X", "Z", "V", "N", "G"]], + "pollutes": null, + "pollutions": null, + "polluters": null, + "pollutive": null, + "pollution": [["M"]], + "polluting": null, + "pollution's": null, + "Pollux": [["M"]], + "Pollux's": null, + "Pollyanna": [["M"]], + "Pollyanna's": null, + "Polly": [["M"]], + "Polly's": null, + "pollywog's": null, + "Pol": [["M", "Y"]], + "Pol's": null, + "Polo": [["M"]], + "Polo's": null, + "polo": [["M", "S"]], + "polo's": null, + "polos": null, + "polonaise": [["M", "S"]], + "polonaise's": null, + "polonaises": null, + "polonium": [["M", "S"]], + "polonium's": null, + "poloniums": null, + "poltergeist": [["S", "M"]], + "poltergeists": null, + "poltergeist's": null, + "poltroon": [["M", "S"]], + "poltroon's": null, + "poltroons": null, + "polyandrous": null, + "polyandry": [["M", "S"]], + "polyandry's": null, + "polyandries": null, + "polyatomic": null, + "polybutene": [["M", "S"]], + "polybutene's": null, + "polybutenes": null, + "polycarbonate": null, + "polychemicals": null, + "polychrome": null, + "polyclinic": [["M", "S"]], + "polyclinic's": null, + "polyclinics": null, + "polycrystalline": null, + "polyelectrolytes": null, + "polyester": [["S", "M"]], + "polyesters": null, + "polyester's": null, + "polyether": [["S"]], + "polyethers": null, + "polyethylene": [["S", "M"]], + "polyethylenes": null, + "polyethylene's": null, + "polygamist": [["M", "S"]], + "polygamist's": null, + "polygamists": null, + "polygamous": [["Y"]], + "polygamously": null, + "polygamy": [["M", "S"]], + "polygamy's": null, + "polygamies": null, + "polyglot": [["S"]], + "polyglots": null, + "polygonal": [["Y"]], + "polygonally": null, + "polygon": [["M", "S"]], + "polygon's": null, + "polygons": null, + "polygraph": [["M", "D", "G"]], + "polygraph's": null, + "polygraphed": null, + "polygraphing": null, + "polygraphs": null, + "polygynous": null, + "polyhedral": null, + "polyhedron": [["M", "S"]], + "polyhedron's": null, + "polyhedrons": null, + "Polyhymnia": [["M"]], + "Polyhymnia's": null, + "polyisobutylene": null, + "polyisocyanates": null, + "polymath": [["M"]], + "polymath's": null, + "polymaths": null, + "polymerase": [["S"]], + "polymerases": null, + "polymeric": null, + "polymerization": [["S", "M"]], + "polymerizations": null, + "polymerization's": null, + "polymerize": [["S", "D", "G"]], + "polymerizes": null, + "polymerized": null, + "polymerizing": null, + "polymer": [["M", "S"]], + "polymer's": null, + "polymers": null, + "polymorphic": null, + "polymorphism": [["M", "S"]], + "polymorphism's": null, + "polymorphisms": null, + "polymorph": [["M"]], + "polymorph's": null, + "polymyositis": null, + "Polynesia": [["M"]], + "Polynesia's": null, + "Polynesian": [["S"]], + "Polynesians": null, + "polynomial": [["Y", "M", "S"]], + "polynomially": null, + "polynomial's": null, + "polynomials": null, + "Polyphemus": [["M"]], + "Polyphemus's": null, + "polyphonic": null, + "polyphony": [["M", "S"]], + "polyphony's": null, + "polyphonies": null, + "polyphosphate": [["S"]], + "polyphosphates": null, + "polyp": [["M", "S"]], + "polyp's": null, + "polyps": null, + "polypropylene": [["M", "S"]], + "polypropylene's": null, + "polypropylenes": null, + "polystyrene": [["S", "M"]], + "polystyrenes": null, + "polystyrene's": null, + "polysyllabic": null, + "polysyllable": [["S", "M"]], + "polysyllables": null, + "polysyllable's": null, + "polytechnic": [["M", "S"]], + "polytechnic's": null, + "polytechnics": null, + "polytheism": [["S", "M"]], + "polytheisms": null, + "polytheism's": null, + "polytheistic": null, + "polytheist": [["S", "M"]], + "polytheists": null, + "polytheist's": null, + "polythene": [["M"]], + "polythene's": null, + "polytonal": [["Y"]], + "polytonally": null, + "polytopes": null, + "polyunsaturated": null, + "polyurethane": [["S", "M"]], + "polyurethanes": null, + "polyurethane's": null, + "polyvinyl": [["M", "S"]], + "polyvinyl's": null, + "polyvinyls": null, + "Po": [["M"]], + "Po's": null, + "pomade": [["M", "G", "S", "D"]], + "pomade's": null, + "pomading": null, + "pomades": null, + "pomaded": null, + "pomander": [["M", "S"]], + "pomander's": null, + "pomanders": null, + "pomegranate": [["S", "M"]], + "pomegranates": null, + "pomegranate's": null, + "Pomerania": [["M"]], + "Pomerania's": null, + "Pomeranian": null, + "pommel": [["G", "S", "M", "D"]], + "pommeling": null, + "pommels": null, + "pommel's": null, + "pommeled": null, + "Pomona": [["M"]], + "Pomona's": null, + "Pompadour": [["M"]], + "Pompadour's": null, + "pompadour": [["M", "D", "S"]], + "pompadour's": null, + "pompadoured": null, + "pompadours": null, + "pompano": [["S", "M"]], + "pompanos": null, + "pompano's": null, + "Pompeian": [["S"]], + "Pompeians": null, + "Pompeii": [["M"]], + "Pompeii's": null, + "Pompey": [["M"]], + "Pompey's": null, + "pompom": [["S", "M"]], + "pompoms": null, + "pompom's": null, + "pompon's": null, + "pomposity": [["M", "S"]], + "pomposity's": null, + "pomposities": null, + "pompousness": [["S"]], + "pompousnesses": null, + "pompous": [["Y", "P"]], + "pompously": null, + "pomp": [["S", "M"]], + "pomps": null, + "pomp's": null, + "ponce": [["M"]], + "ponce's": null, + "Ponce": [["M"]], + "Ponce's": null, + "Ponchartrain": [["M"]], + "Ponchartrain's": null, + "poncho": [["M", "S"]], + "poncho's": null, + "ponchos": null, + "ponderer": [["M"]], + "ponderer's": null, + "ponderousness": [["M", "S"]], + "ponderousness's": null, + "ponderousnesses": null, + "ponderous": [["P", "Y"]], + "ponderously": null, + "ponder": [["Z", "G", "R", "D"]], + "ponderers": null, + "pondering": null, + "pondered": null, + "pond": [["S", "M", "D", "R", "G", "Z"]], + "ponds": null, + "pond's": null, + "ponded": null, + "ponding": null, + "ponders": null, + "pone": [["S", "M"]], + "pones": null, + "pone's": null, + "pongee": [["M", "S"]], + "pongee's": null, + "pongees": null, + "poniard": [["G", "S", "D", "M"]], + "poniarding": null, + "poniards": null, + "poniarded": null, + "poniard's": null, + "pons": [["M"]], + "pons's": null, + "Pontchartrain": [["M"]], + "Pontchartrain's": null, + "Pontiac": [["M"]], + "Pontiac's": null, + "Pontianak": [["M"]], + "Pontianak's": null, + "pontiff": [["M", "S"]], + "pontiff's": null, + "pontiffs": null, + "pontifical": [["Y", "S"]], + "pontifically": null, + "pontificals": null, + "pontificate": [["X", "G", "N", "D", "S"]], + "pontifications": null, + "pontificating": null, + "pontification": null, + "pontificated": null, + "pontificates": null, + "pontoon": [["S", "M", "D", "G"]], + "pontoons": null, + "pontoon's": null, + "pontooned": null, + "pontooning": null, + "pony": [["D", "S", "M", "G"]], + "ponied": null, + "ponies": null, + "pony's": null, + "ponying": null, + "ponytail": [["S", "M"]], + "ponytails": null, + "ponytail's": null, + "pooch": [["G", "S", "D", "M"]], + "pooching": null, + "pooches": null, + "pooched": null, + "pooch's": null, + "poodle": [["M", "S"]], + "poodle's": null, + "poodles": null, + "poof": [["M", "S"]], + "poof's": null, + "poofs": null, + "pooh": [["D", "G"]], + "poohed": null, + "poohing": null, + "Pooh": [["M"]], + "Pooh's": null, + "poohs": null, + "Poole": [["M"]], + "Poole's": null, + "pool": [["M", "D", "S", "G"]], + "pool's": null, + "pooled": null, + "pools": null, + "pooling": null, + "poolroom": [["M", "S"]], + "poolroom's": null, + "poolrooms": null, + "poolside": null, + "Poona": [["M"]], + "Poona's": null, + "poop": [["M", "D", "S", "G"]], + "poop's": null, + "pooped": null, + "poops": null, + "pooping": null, + "poorboy": null, + "poorhouse": [["M", "S"]], + "poorhouse's": null, + "poorhouses": null, + "poorness": [["M", "S"]], + "poorness's": null, + "poornesses": null, + "poor": [["T", "Y", "R", "P"]], + "poorest": null, + "poorly": null, + "poorer": null, + "popcorn": [["M", "S"]], + "popcorn's": null, + "popcorns": null, + "Popek": [["M", "S"]], + "Popek's": null, + "Popeks": null, + "pope": [["S", "M"]], + "popes": null, + "pope's": null, + "Pope": [["S", "M"]], + "Popes": null, + "Pope's": null, + "Popeye": [["M"]], + "Popeye's": null, + "popgun": [["S", "M"]], + "popguns": null, + "popgun's": null, + "popinjay": [["M", "S"]], + "popinjay's": null, + "popinjays": null, + "poplar": [["S", "M"]], + "poplars": null, + "poplar's": null, + "poplin": [["M", "S"]], + "poplin's": null, + "poplins": null, + "Popocatepetl": [["M"]], + "Popocatepetl's": null, + "popover": [["S", "M"]], + "popovers": null, + "popover's": null, + "poppa": [["M", "S"]], + "poppa's": null, + "poppas": null, + "popped": null, + "Popper": [["M"]], + "Popper's": null, + "popper": [["S", "M"]], + "poppers": null, + "popper's": null, + "poppet": [["M"]], + "poppet's": null, + "popping": null, + "Poppins": [["M"]], + "Poppins's": null, + "poppycock": [["M", "S"]], + "poppycock's": null, + "poppycocks": null, + "Poppy": [["M"]], + "Poppy's": null, + "poppy": [["S", "D", "M"]], + "poppies": null, + "poppied": null, + "poppy's": null, + "poppyseed": null, + "Popsicle": [["M", "S"]], + "Popsicle's": null, + "Popsicles": null, + "pop": [["S", "M"]], + "pops": null, + "pop's": null, + "populace": [["M", "S"]], + "populace's": null, + "populaces": null, + "popularism": null, + "popularity": [["U", "M", "S"]], + "unpopularity": null, + "unpopularity's": null, + "unpopularities": null, + "popularity's": null, + "popularities": null, + "popularization": [["S", "M"]], + "popularizations": null, + "popularization's": null, + "popularize": [["A"]], + "repopularize": null, + "popularized": null, + "popularizer": [["M", "S"]], + "popularizer's": null, + "popularizers": null, + "popularizes": [["U"]], + "unpopularizes": null, + "popularizing": null, + "popular": [["Y", "S"]], + "popularly": null, + "populars": null, + "populate": [["C", "X", "N", "G", "D", "S"]], + "depopulate": null, + "depopulations": null, + "depopulation": null, + "depopulating": null, + "depopulated": null, + "depopulates": null, + "populations": null, + "population": [["M", "C"]], + "populating": [["A"]], + "populated": [["U", "A"]], + "populates": [["A"]], + "unpopulated": null, + "repopulated": null, + "repopulates": null, + "repopulating": null, + "population's": null, + "depopulation's": null, + "populism": [["S"]], + "populisms": null, + "populist": [["S", "M"]], + "populists": null, + "populist's": null, + "populousness": [["M", "S"]], + "populousness's": null, + "populousnesses": null, + "populous": [["Y", "P"]], + "populously": null, + "porcelain": [["S", "M"]], + "porcelains": null, + "porcelain's": null, + "porch": [["S", "M"]], + "porches": null, + "porch's": null, + "porcine": null, + "porcupine": [["M", "S"]], + "porcupine's": null, + "porcupines": null, + "pore": [["Z", "G", "D", "R", "S"]], + "porers": null, + "poring": [["Y"]], + "pored": null, + "porer": null, + "pores": null, + "Porfirio": [["M"]], + "Porfirio's": null, + "porgy": [["S", "M"]], + "porgies": null, + "porgy's": null, + "poringly": null, + "porker": [["M"]], + "porker's": null, + "porky": [["T", "S", "R"]], + "porkiest": null, + "porkies": null, + "porkier": null, + "pork": [["Z", "R", "M", "S"]], + "porkers": null, + "pork's": null, + "porks": null, + "pornographer": [["S", "M"]], + "pornographers": null, + "pornographer's": null, + "pornographic": null, + "pornographically": null, + "pornography": [["S", "M"]], + "pornographies": null, + "pornography's": null, + "porno": [["S"]], + "pornos": null, + "porn": [["S"]], + "porns": null, + "porosity": [["S", "M"]], + "porosities": null, + "porosity's": null, + "porousness": [["M", "S"]], + "porousness's": null, + "porousnesses": null, + "porous": [["P", "Y"]], + "porously": null, + "porphyritic": null, + "porphyry": [["M", "S"]], + "porphyry's": null, + "porphyries": null, + "porpoise": [["D", "S", "G", "M"]], + "porpoised": null, + "porpoises": null, + "porpoising": null, + "porpoise's": null, + "porridge": [["M", "S"]], + "porridge's": null, + "porridges": null, + "Porrima": [["M"]], + "Porrima's": null, + "porringer": [["M", "S"]], + "porringer's": null, + "porringers": null, + "Porsche": [["M"]], + "Porsche's": null, + "portability": [["S"]], + "portabilities": null, + "portables": null, + "portable": [["U"]], + "unportable": null, + "portably": null, + "port": [["A", "B", "S", "G", "Z", "M", "R", "D"]], + "report": null, + "reportable": null, + "reports": null, + "reporting": null, + "reporters": null, + "report's": null, + "reporter": null, + "reported": [["Y"]], + "ports": [["C", "E"]], + "porting": [["E"]], + "porters": null, + "port's": null, + "porter": [["D", "M", "G"]], + "ported": [["C", "E"]], + "portage": [["A", "S", "M"]], + "reportage": null, + "reportages": null, + "reportage's": null, + "portages": null, + "portage's": null, + "portaged": null, + "portaging": null, + "portal": [["S", "M"]], + "portals": null, + "portal's": null, + "portamento": [["M"]], + "portamento's": null, + "portcullis": [["M", "S"]], + "portcullis's": null, + "portcullises": null, + "deported": null, + "disported": null, + "Porte": [["M"]], + "Porte's": null, + "portend": [["S", "D", "G"]], + "portends": null, + "portended": null, + "portending": null, + "portentousness": [["M"]], + "portentousness's": null, + "portentous": [["P", "Y"]], + "portentously": null, + "portent": [["S", "M"]], + "portents": null, + "portent's": null, + "porterage": [["M"]], + "porterage's": null, + "portered": null, + "porter's": [["A"]], + "portering": null, + "porterhouse": [["S", "M"]], + "porterhouses": null, + "porterhouse's": null, + "Porter": [["M"]], + "Porter's": null, + "reporter's": null, + "portfolio": [["M", "S"]], + "portfolio's": null, + "portfolios": null, + "porthole": [["S", "M"]], + "portholes": null, + "porthole's": null, + "Portia": [["M"]], + "Portia's": null, + "porticoes": null, + "portico": [["M"]], + "portico's": null, + "Portie": [["M"]], + "Portie's": null, + "porti�re": [["S", "M"]], + "porti�res": null, + "porti�re's": null, + "disporting": null, + "portion": [["K", "G", "S", "M", "D"]], + "proportion": [["E", "S", "G", "D", "M"]], + "proportioning": null, + "proportions": null, + "proportion's": null, + "proportioned": null, + "portioning": null, + "portions": null, + "portion's": null, + "portioned": null, + "Portland": [["M"]], + "Portland's": null, + "portliness": [["S", "M"]], + "portlinesses": null, + "portliness's": null, + "portly": [["P", "T", "R"]], + "portliest": null, + "portlier": null, + "portmanteau": [["S", "M"]], + "portmanteaus": null, + "portmanteau's": null, + "Port": [["M", "R"]], + "Port's": null, + "P�rto": [["M"]], + "P�rto's": null, + "portraitist": [["S", "M"]], + "portraitists": null, + "portraitist's": null, + "portrait": [["M", "S"]], + "portrait's": null, + "portraits": null, + "portraiture": [["M", "S"]], + "portraiture's": null, + "portraitures": null, + "portrayal": [["S", "M"]], + "portrayals": null, + "portrayal's": null, + "portrayer": [["M"]], + "portrayer's": null, + "portray": [["G", "D", "R", "S"]], + "portraying": null, + "portrayed": null, + "portrays": null, + "deports": null, + "disports": null, + "Portsmouth": [["M"]], + "Portsmouth's": null, + "Portugal": [["M"]], + "Portugal's": null, + "Portuguese": [["M"]], + "Portuguese's": null, + "portulaca": [["M", "S"]], + "portulaca's": null, + "portulacas": null, + "Porty": [["M"]], + "Porty's": null, + "posed": [["C", "A"]], + "deposed": null, + "reposed": null, + "Poseidon": [["M"]], + "Poseidon's": null, + "poser": [["K", "M", "E"]], + "proposer": null, + "proposer's": null, + "poser's": null, + "disposer's": null, + "disposer": null, + "poses": [["C", "A"]], + "deposes": null, + "reposes": null, + "poseur": [["M", "S"]], + "poseur's": null, + "poseurs": null, + "pose": [["Z", "G", "K", "D", "R", "S", "E"]], + "posers": null, + "proposers": null, + "disposers": null, + "posing": [["C", "A"]], + "proposing": null, + "propose": null, + "proposed": null, + "proposes": null, + "posh": [["D", "S", "R", "G", "T"]], + "poshed": null, + "poshes": null, + "posher": null, + "poshing": null, + "poshest": null, + "deposing": null, + "reposing": null, + "positifs": null, + "positionable": null, + "positional": [["K", "Y"]], + "propositional": null, + "propositionally": null, + "positionally": null, + "position": [["K", "G", "A", "S", "M", "D"]], + "proposition": null, + "propositioning": null, + "propositions": null, + "proposition's": null, + "propositioned": null, + "positioning": null, + "repositioning": null, + "reposition": null, + "repositions": null, + "reposition's": null, + "repositioned": null, + "positions": [["E", "C"]], + "position's": [["E", "C"]], + "positioned": null, + "deposition's": null, + "depositions": null, + "positiveness": [["S"]], + "positivenesses": null, + "positive": [["R", "S", "P", "Y", "T"]], + "positiver": null, + "positives": null, + "positively": null, + "positivest": null, + "positivism": [["M"]], + "positivism's": null, + "positivist": [["S"]], + "positivists": null, + "positivity": null, + "positron": [["S", "M"]], + "positrons": null, + "positron's": null, + "posit": [["S", "C", "G", "D"]], + "posits": null, + "positing": null, + "posited": null, + "Posner": [["M"]], + "Posner's": null, + "posse": [["M"]], + "posse's": null, + "possess": [["A", "G", "E", "D", "S"]], + "repossess": null, + "repossessing": null, + "repossessed": null, + "repossesses": null, + "possessing": null, + "dispossessing": null, + "dispossess": null, + "dispossessed": null, + "dispossesses": null, + "possessed": [["P", "Y"]], + "possesses": null, + "possessedness": null, + "possessedly": null, + "possession": [["A", "E", "M", "S"]], + "repossession": null, + "repossession's": null, + "repossessions": null, + "dispossession": null, + "dispossession's": null, + "dispossessions": null, + "possession's": null, + "possessions": null, + "possessional": null, + "possessiveness": [["M", "S"]], + "possessiveness's": null, + "possessivenesses": null, + "possessive": [["P", "S", "M", "Y"]], + "possessives": null, + "possessive's": null, + "possessively": null, + "possessor": [["M", "S"]], + "possessor's": null, + "possessors": null, + "possibility": [["S", "M"]], + "possibilities": null, + "possibility's": null, + "possible": [["T", "R", "S"]], + "possiblest": null, + "possibler": null, + "possibles": null, + "possibly": null, + "poss": [["S"]], + "posses": null, + "possum": [["M", "S"]], + "possum's": null, + "possums": null, + "postage": [["M", "S"]], + "postage's": null, + "postages": null, + "postal": [["S"]], + "postals": null, + "post": [["A", "S", "D", "R", "J", "G"]], + "repost": null, + "reposts": null, + "reposted": null, + "reposter": null, + "repostings": null, + "reposting": null, + "posts": null, + "posted": null, + "poster": [["M", "S"]], + "postings": null, + "posting": [["M"]], + "postbag": [["M"]], + "postbag's": null, + "postbox": [["S", "M"]], + "postboxes": null, + "postbox's": null, + "postcard": [["S", "M"]], + "postcards": null, + "postcard's": null, + "postcode": [["S", "M"]], + "postcodes": null, + "postcode's": null, + "postcondition": [["S"]], + "postconditions": null, + "postconsonantal": null, + "postdate": [["D", "S", "G"]], + "postdated": null, + "postdates": null, + "postdating": null, + "postdoctoral": null, + "posteriori": null, + "posterior": [["S", "Y"]], + "posteriors": null, + "posteriorly": null, + "posterity": [["S", "M"]], + "posterities": null, + "posterity's": null, + "poster's": null, + "posters": null, + "postfix": [["G", "D", "S"]], + "postfixing": null, + "postfixed": null, + "postfixes": null, + "postgraduate": [["S", "M"]], + "postgraduates": null, + "postgraduate's": null, + "posthaste": [["S"]], + "posthastes": null, + "posthumousness": [["M"]], + "posthumousness's": null, + "posthumous": [["Y", "P"]], + "posthumously": null, + "posthypnotic": null, + "postilion": [["M", "S"]], + "postilion's": null, + "postilions": null, + "postindustrial": null, + "posting's": null, + "postlude": [["M", "S"]], + "postlude's": null, + "postludes": null, + "Post": [["M"]], + "Post's": null, + "postman": [["M"]], + "postman's": null, + "postmarital": null, + "postmark": [["G", "S", "M", "D"]], + "postmarking": null, + "postmarks": null, + "postmark's": null, + "postmarked": null, + "postmaster": [["S", "M"]], + "postmasters": null, + "postmaster's": null, + "postmen": null, + "postmeridian": null, + "postmistress": [["M", "S"]], + "postmistress's": null, + "postmistresses": null, + "postmodern": null, + "postmodernist": null, + "postmortem": [["S"]], + "postmortems": null, + "postnasal": null, + "postnatal": null, + "postoperative": [["Y"]], + "postoperatively": null, + "postorder": null, + "postpaid": null, + "postpartum": null, + "postpone": [["G", "L", "D", "R", "S"]], + "postponing": null, + "postponement": [["S"]], + "postponed": null, + "postponer": null, + "postpones": null, + "postponements": null, + "postpositions": null, + "postprandial": null, + "post's": null, + "postscript": [["S", "M"]], + "postscripts": null, + "postscript's": null, + "postsecondary": null, + "postulate": [["X", "G", "N", "S", "D"]], + "postulations": null, + "postulating": null, + "postulation": [["M"]], + "postulates": null, + "postulated": null, + "postulation's": null, + "postural": null, + "posture": [["M", "G", "S", "R", "D"]], + "posture's": null, + "posturing": null, + "postures": null, + "posturer": [["M"]], + "postured": null, + "posturer's": null, + "postvocalic": null, + "postwar": null, + "posy": [["S", "M"]], + "posies": null, + "posy's": null, + "potability": [["S", "M"]], + "potabilities": null, + "potability's": null, + "potableness": [["M"]], + "potableness's": null, + "potable": [["S", "P"]], + "potables": null, + "potage": [["M"]], + "potage's": null, + "potash": [["M", "S"]], + "potash's": null, + "potashes": null, + "potassium": [["M", "S"]], + "potassium's": null, + "potassiums": null, + "potatoes": null, + "potato": [["M"]], + "potato's": null, + "potbelly": [["M", "S", "D"]], + "potbelly's": null, + "potbellies": null, + "potbellied": null, + "potboiler": [["M"]], + "potboiler's": null, + "potboil": [["Z", "R"]], + "potboilers": null, + "pot": [["C", "M", "S"]], + "depot": null, + "depot's": null, + "depots": null, + "pot's": null, + "pots": null, + "Potemkin": [["M"]], + "Potemkin's": null, + "potency": [["M", "S"]], + "potency's": null, + "potencies": null, + "potentate": [["S", "M"]], + "potentates": null, + "potentate's": null, + "potentiality": [["M", "S"]], + "potentiality's": null, + "potentialities": null, + "potential": [["S", "Y"]], + "potentials": null, + "potentially": null, + "potentiating": null, + "potentiometer": [["S", "M"]], + "potentiometers": null, + "potentiometer's": null, + "potent": [["Y", "S"]], + "potently": null, + "potents": null, + "potful": [["S", "M"]], + "potfuls": null, + "potful's": null, + "pothead": [["M", "S"]], + "pothead's": null, + "potheads": null, + "potherb": [["M", "S"]], + "potherb's": null, + "potherbs": null, + "pother": [["G", "D", "M", "S"]], + "pothering": null, + "pothered": null, + "pother's": null, + "pothers": null, + "potholder": [["M", "S"]], + "potholder's": null, + "potholders": null, + "pothole": [["S", "D", "M", "G"]], + "potholes": null, + "potholed": null, + "pothole's": null, + "potholing": [["M"]], + "potholing's": null, + "pothook": [["S", "M"]], + "pothooks": null, + "pothook's": null, + "potion": [["S", "M"]], + "potions": null, + "potion's": null, + "potlatch": [["S", "M"]], + "potlatches": null, + "potlatch's": null, + "potluck": [["M", "S"]], + "potluck's": null, + "potlucks": null, + "Potomac": [["M"]], + "Potomac's": null, + "potpie": [["S", "M"]], + "potpies": null, + "potpie's": null, + "potpourri": [["S", "M"]], + "potpourris": null, + "potpourri's": null, + "Potsdam": [["M"]], + "Potsdam's": null, + "potsherd": [["M", "S"]], + "potsherd's": null, + "potsherds": null, + "potshot": [["S"]], + "potshots": null, + "pottage": [["S", "M"]], + "pottages": null, + "pottage's": null, + "Pottawatomie": [["M"]], + "Pottawatomie's": null, + "potted": null, + "Potter": [["M"]], + "Potter's": null, + "potter": [["R", "D", "M", "S", "G"]], + "potterer": null, + "pottered": null, + "potter's": null, + "potters": null, + "pottering": null, + "pottery": [["M", "S"]], + "pottery's": null, + "potteries": null, + "potting": null, + "Potts": [["M"]], + "Potts's": null, + "potty": [["S", "R", "T"]], + "potties": null, + "pottier": null, + "pottiest": null, + "pouch": [["S", "D", "M", "G"]], + "pouches": null, + "pouched": null, + "pouch's": null, + "pouching": null, + "Poughkeepsie": [["M"]], + "Poughkeepsie's": null, + "Poul": [["M"]], + "Poul's": null, + "poulterer": [["M", "S"]], + "poulterer's": null, + "poulterers": null, + "poultice": [["D", "S", "M", "G"]], + "poulticed": null, + "poultices": null, + "poultice's": null, + "poulticing": null, + "poultry": [["M", "S"]], + "poultry's": null, + "poultries": null, + "pounce": [["S", "D", "G"]], + "pounces": null, + "pounced": null, + "pouncing": null, + "poundage": [["M", "S"]], + "poundage's": null, + "poundages": null, + "pounder": [["M", "S"]], + "pounder's": null, + "pounders": null, + "pound": [["K", "R", "D", "G", "S"]], + "propound": null, + "propounder": null, + "propounded": null, + "propounding": null, + "propounds": null, + "pounded": null, + "pounding": null, + "pounds": null, + "Pound": [["M"]], + "Pound's": null, + "pour": [["D", "S", "G"]], + "poured": null, + "pours": null, + "pouring": null, + "pourer's": null, + "Poussin": [["M", "S"]], + "Poussin's": null, + "Poussins": null, + "pouter": [["M"]], + "pouter's": null, + "pout": [["G", "Z", "D", "R", "S"]], + "pouting": null, + "pouters": null, + "pouted": null, + "pouts": null, + "poverty": [["M", "S"]], + "poverty's": null, + "poverties": null, + "POW": null, + "powderpuff": null, + "powder": [["R", "D", "G", "M", "S"]], + "powderer": null, + "powdered": null, + "powdering": null, + "powder's": null, + "powders": null, + "powdery": null, + "Powell": [["M"]], + "Powell's": null, + "powerboat": [["M", "S"]], + "powerboat's": null, + "powerboats": null, + "powerfulness": [["M"]], + "powerfulness's": null, + "powerful": [["Y", "P"]], + "powerfully": null, + "power": [["G", "M", "D"]], + "powering": null, + "power's": null, + "powered": null, + "powerhouse": [["M", "S"]], + "powerhouse's": null, + "powerhouses": null, + "powerlessness": [["S", "M"]], + "powerlessnesses": null, + "powerlessness's": null, + "powerless": [["Y", "P"]], + "powerlessly": null, + "Powers": null, + "Powhatan": [["M"]], + "Powhatan's": null, + "pow": [["R", "Z"]], + "powers": null, + "powwow": [["G", "D", "M", "S"]], + "powwowing": null, + "powwowed": null, + "powwow's": null, + "powwows": null, + "pox": [["G", "M", "D", "S"]], + "poxing": null, + "pox's": null, + "poxed": null, + "poxes": null, + "Poznan": [["M"]], + "Poznan's": null, + "pp": null, + "PP": null, + "ppm": null, + "ppr": null, + "PPS": null, + "pr": null, + "PR": null, + "practicability": [["S"]], + "practicabilities": null, + "practicable": [["P"]], + "practicableness": null, + "practicably": null, + "practicality": [["S", "M"]], + "practicalities": null, + "practicality's": null, + "practicalness": [["M"]], + "practicalness's": null, + "practical": [["Y", "P", "S"]], + "practically": null, + "practicals": null, + "practice": [["B", "D", "R", "S", "M", "G"]], + "practiced": [["U"]], + "practicer": [["M"]], + "practices": null, + "practice's": null, + "practicing": null, + "unpracticed": null, + "practicer's": null, + "practicum": [["S", "M"]], + "practicums": null, + "practicum's": null, + "practitioner": [["S", "M"]], + "practitioners": null, + "practitioner's": null, + "Pradesh": [["M"]], + "Pradesh's": null, + "Prado": [["M"]], + "Prado's": null, + "Praetorian": null, + "praetorian": [["S"]], + "praetorians": null, + "praetor": [["M", "S"]], + "praetor's": null, + "praetors": null, + "pragmatical": [["Y"]], + "pragmatically": null, + "pragmatic": [["S"]], + "pragmatics": [["M"]], + "pragmatics's": null, + "pragmatism": [["M", "S"]], + "pragmatism's": null, + "pragmatisms": null, + "pragmatist": [["M", "S"]], + "pragmatist's": null, + "pragmatists": null, + "Prague": [["M"]], + "Prague's": null, + "Praia": null, + "prairie": [["M", "S"]], + "prairie's": null, + "prairies": null, + "praise": [["E", "S", "D", "G"]], + "dispraise": null, + "dispraises": null, + "dispraised": null, + "dispraising": null, + "praises": null, + "praised": null, + "praising": [["Y"]], + "praiser": [["S"]], + "praisers": null, + "praise's": null, + "praiseworthiness": [["M", "S"]], + "praiseworthiness's": null, + "praiseworthinesses": null, + "praiseworthy": [["P"]], + "praisingly": null, + "Prakrit": [["M"]], + "Prakrit's": null, + "praline": [["M", "S"]], + "praline's": null, + "pralines": null, + "pram": [["M", "S"]], + "pram's": null, + "prams": null, + "prancer": [["M"]], + "prancer's": null, + "prance": [["Z", "G", "S", "R", "D"]], + "prancers": null, + "prancing": [["Y"]], + "prances": null, + "pranced": null, + "prancingly": null, + "prank": [["S", "M", "D", "G"]], + "pranks": null, + "prank's": null, + "pranked": null, + "pranking": null, + "prankster": [["S", "M"]], + "pranksters": null, + "prankster's": null, + "praseodymium": [["S", "M"]], + "praseodymiums": null, + "praseodymium's": null, + "Pratchett": [["M"]], + "Pratchett's": null, + "prate": [["D", "S", "R", "G", "Z"]], + "prated": null, + "prates": null, + "prater": [["M"]], + "prating": [["Y"]], + "praters": null, + "prater's": null, + "pratfall": [["M", "S"]], + "pratfall's": null, + "pratfalls": null, + "pratingly": null, + "prattle": [["D", "R", "S", "G", "Z"]], + "prattled": null, + "prattler": [["M"]], + "prattles": null, + "prattling": [["Y"]], + "prattlers": null, + "prattler's": null, + "prattlingly": null, + "Pratt": [["M"]], + "Pratt's": null, + "Prattville": [["M"]], + "Prattville's": null, + "Pravda": [["M"]], + "Pravda's": null, + "prawn": [["M", "D", "S", "G"]], + "prawn's": null, + "prawned": null, + "prawns": null, + "prawning": null, + "praxes": null, + "praxis": [["M"]], + "praxis's": null, + "Praxiteles": [["M"]], + "Praxiteles's": null, + "pray": [["D", "R", "G", "Z", "S"]], + "prayed": null, + "prayer": [["M"]], + "praying": null, + "prayers": null, + "prays": null, + "prayerbook": null, + "prayerfulness": [["M"]], + "prayerfulness's": null, + "prayerful": [["Y", "P"]], + "prayerfully": null, + "prayer's": null, + "PRC": null, + "preach": [["D", "R", "S", "G", "L", "Z", "J"]], + "preached": null, + "preacher": [["M"]], + "preaches": null, + "preaching": [["Y"]], + "preachment": [["M", "S"]], + "preachers": null, + "preachings": null, + "preacher's": null, + "preachingly": null, + "preachment's": null, + "preachments": null, + "preachy": [["R", "T"]], + "preachier": null, + "preachiest": null, + "preadolescence": [["S"]], + "preadolescences": null, + "Preakness": [["M"]], + "Preakness's": null, + "preallocate": [["X", "G", "N", "D", "S"]], + "preallocations": null, + "preallocating": null, + "preallocation": [["M"]], + "preallocated": null, + "preallocates": null, + "preallocation's": null, + "preallocator": [["S"]], + "preallocators": null, + "preamble": [["M", "G", "D", "S"]], + "preamble's": null, + "preambling": null, + "preambled": null, + "preambles": null, + "preamp": null, + "preamplifier": [["M"]], + "preamplifier's": null, + "prearrange": [["L", "S", "D", "G"]], + "prearrangement": [["S", "M"]], + "prearranges": null, + "prearranged": null, + "prearranging": null, + "prearrangements": null, + "prearrangement's": null, + "preassign": [["S", "D", "G"]], + "preassigns": null, + "preassigned": null, + "preassigning": null, + "preauthorize": null, + "prebendary": [["M"]], + "prebendary's": null, + "Precambrian": null, + "precancel": [["D", "G", "S"]], + "precanceled": null, + "precanceling": null, + "precancels": null, + "precancerous": null, + "precariousness": [["M", "S"]], + "precariousness's": null, + "precariousnesses": null, + "precarious": [["P", "Y"]], + "precariously": null, + "precautionary": null, + "precaution": [["S", "G", "D", "M"]], + "precautions": null, + "precautioning": null, + "precautioned": null, + "precaution's": null, + "precede": [["D", "S", "G"]], + "preceded": null, + "precedes": null, + "preceding": null, + "precedence": [["S", "M"]], + "precedences": null, + "precedence's": null, + "precedented": [["U"]], + "unprecedented": [["Y"]], + "precedent": [["S", "D", "M"]], + "precedents": null, + "precedent's": null, + "preceptive": [["Y"]], + "preceptively": null, + "preceptor": [["M", "S"]], + "preceptor's": null, + "preceptors": null, + "precept": [["S", "M", "V"]], + "precepts": null, + "precept's": null, + "precess": [["D", "S", "G"]], + "precessed": null, + "precesses": null, + "precessing": null, + "precession": [["M"]], + "precession's": null, + "precinct": [["M", "S"]], + "precinct's": null, + "precincts": null, + "preciosity": [["M", "S"]], + "preciosity's": null, + "preciosities": null, + "preciousness": [["S"]], + "preciousnesses": null, + "precious": [["P", "Y", "S"]], + "preciously": null, + "preciouses": null, + "precipice": [["M", "S"]], + "precipice's": null, + "precipices": null, + "precipitable": null, + "precipitant": [["S"]], + "precipitants": null, + "precipitateness": [["M"]], + "precipitateness's": null, + "precipitate": [["Y", "N", "G", "V", "P", "D", "S", "X"]], + "precipitately": null, + "precipitation": [["M"]], + "precipitating": null, + "precipitative": null, + "precipitated": null, + "precipitates": null, + "precipitations": null, + "precipitation's": null, + "precipitousness": [["M"]], + "precipitousness's": null, + "precipitous": [["Y", "P"]], + "precipitously": null, + "preciseness": [["S", "M"]], + "precisenesses": null, + "preciseness's": null, + "precise": [["X", "Y", "T", "R", "S", "P", "N"]], + "precisions": null, + "precisely": null, + "precisest": null, + "preciser": null, + "precises": null, + "precision": [["M"]], + "precision's": null, + "pr�cis": [["M", "D", "G"]], + "pr�cis's": null, + "pr�cised": null, + "pr�cising": null, + "preclude": [["G", "D", "S"]], + "precluding": null, + "precluded": null, + "precludes": null, + "preclusion": [["S"]], + "preclusions": null, + "precociousness": [["M", "S"]], + "precociousness's": null, + "precociousnesses": null, + "precocious": [["Y", "P"]], + "precociously": null, + "precocity": [["S", "M"]], + "precocities": null, + "precocity's": null, + "precode": [["D"]], + "precoded": null, + "precognition": [["S", "M"]], + "precognitions": null, + "precognition's": null, + "precognitive": null, + "precollege": [["M"]], + "precollege's": null, + "precolonial": null, + "precomputed": null, + "preconceive": [["G", "S", "D"]], + "preconceiving": null, + "preconceives": null, + "preconceived": null, + "preconception": [["S", "M"]], + "preconceptions": null, + "preconception's": null, + "precondition": [["G", "M", "D", "S"]], + "preconditioning": null, + "precondition's": null, + "preconditioned": null, + "preconditions": null, + "preconscious": null, + "precook": [["G", "D", "S"]], + "precooking": null, + "precooked": null, + "precooks": null, + "precursor": [["S", "M"]], + "precursors": null, + "precursor's": null, + "precursory": null, + "precut": null, + "predate": [["N", "G", "D", "S", "X"]], + "predation": [["C", "M", "S"]], + "predating": null, + "predated": null, + "predates": null, + "predations": null, + "depredation": null, + "depredation's": null, + "depredations": null, + "predation's": null, + "predator": [["S", "M"]], + "predators": null, + "predator's": null, + "predatory": null, + "predecease": [["S", "D", "G"]], + "predeceases": null, + "predeceased": null, + "predeceasing": null, + "predecessor": [["M", "S"]], + "predecessor's": null, + "predecessors": null, + "predeclared": null, + "predecline": null, + "predefine": [["G", "S", "D"]], + "predefining": null, + "predefines": null, + "predefined": null, + "predefinition": [["S", "M"]], + "predefinitions": null, + "predefinition's": null, + "predesignate": [["G", "D", "S"]], + "predesignating": null, + "predesignated": null, + "predesignates": null, + "predestination": [["S", "M"]], + "predestinations": null, + "predestination's": null, + "predestine": [["S", "D", "G"]], + "predestines": null, + "predestined": null, + "predestining": null, + "predetermination": [["M", "S"]], + "predetermination's": null, + "predeterminations": null, + "predeterminer": [["M"]], + "predeterminer's": null, + "predetermine": [["Z", "G", "S", "R", "D"]], + "predeterminers": null, + "predetermining": null, + "predetermines": null, + "predetermined": null, + "predicable": [["S"]], + "predicables": null, + "predicament": [["S", "M"]], + "predicaments": null, + "predicament's": null, + "predicate": [["V", "G", "N", "X", "S", "D"]], + "predicative": null, + "predicating": null, + "predication": [["M"]], + "predications": null, + "predicates": null, + "predicated": null, + "predication's": null, + "predicator": null, + "predictability": [["U", "M", "S"]], + "unpredictability": null, + "unpredictability's": null, + "unpredictabilities": null, + "predictability's": null, + "predictabilities": null, + "predictable": [["U"]], + "unpredictable": [["S"]], + "predictably": [["U"]], + "unpredictably": null, + "predict": [["B", "S", "D", "G", "V"]], + "predicts": null, + "predicted": [["U"]], + "predicting": null, + "predictive": [["Y"]], + "unpredicted": null, + "prediction": [["M", "S"]], + "prediction's": null, + "predictions": null, + "predictively": null, + "predictor": [["M", "S"]], + "predictor's": null, + "predictors": null, + "predigest": [["G", "D", "S"]], + "predigesting": null, + "predigested": null, + "predigests": null, + "predilect": null, + "predilection": [["S", "M"]], + "predilections": null, + "predilection's": null, + "predispose": [["S", "D", "G"]], + "predisposes": null, + "predisposed": null, + "predisposing": null, + "predisposition": [["M", "S"]], + "predisposition's": null, + "predispositions": null, + "predoctoral": null, + "predominance": [["S", "M"]], + "predominances": null, + "predominance's": null, + "predominant": [["Y"]], + "predominantly": null, + "predominate": [["Y", "S", "D", "G", "N"]], + "predominately": null, + "predominates": null, + "predominated": null, + "predominating": null, + "predomination": [["M"]], + "predomination's": null, + "preemie": [["M", "S"]], + "preemie's": null, + "preemies": null, + "preeminence": [["S", "M"]], + "preeminences": null, + "preeminence's": null, + "preeminent": [["Y"]], + "preeminently": null, + "preemployment": [["M"]], + "preemployment's": null, + "preempt": [["G", "V", "S", "D"]], + "preempting": null, + "preemptive": [["Y"]], + "preempts": null, + "preempted": null, + "preemption": [["S", "M"]], + "preemptions": null, + "preemption's": null, + "preemptively": null, + "preemptor": [["M"]], + "preemptor's": null, + "preener": [["M"]], + "preener's": null, + "preen": [["S", "R", "D", "G"]], + "preens": null, + "preened": null, + "preening": null, + "preexist": [["D", "S", "G"]], + "preexisted": null, + "preexists": null, + "preexisting": null, + "preexistence": [["S", "M"]], + "preexistences": null, + "preexistence's": null, + "preexistent": null, + "prefabbed": null, + "prefabbing": null, + "prefab": [["M", "S"]], + "prefab's": null, + "prefabs": null, + "prefabricate": [["X", "N", "G", "D", "S"]], + "prefabrications": null, + "prefabrication": [["M"]], + "prefabricating": null, + "prefabricated": null, + "prefabricates": null, + "prefabrication's": null, + "preface": [["D", "R", "S", "G", "M"]], + "prefaced": null, + "prefacer": [["M"]], + "prefaces": null, + "prefacing": null, + "preface's": null, + "prefacer's": null, + "prefatory": null, + "prefect": [["M", "S"]], + "prefect's": null, + "prefects": null, + "prefecture": [["M", "S"]], + "prefecture's": null, + "prefectures": null, + "preferableness": [["M"]], + "preferableness's": null, + "preferable": [["P"]], + "preferably": null, + "prefer": [["B", "L"]], + "preferment": [["S", "M"]], + "preference": [["M", "S"]], + "preference's": null, + "preferences": null, + "preferential": [["Y"]], + "preferentially": null, + "preferments": null, + "preferment's": null, + "preferred": null, + "preferring": null, + "prefiguration": [["M"]], + "prefiguration's": null, + "prefigure": [["S", "D", "G"]], + "prefigures": null, + "prefigured": null, + "prefiguring": null, + "prefix": [["M", "D", "S", "G"]], + "prefix's": null, + "prefixed": null, + "prefixes": null, + "prefixing": null, + "preflight": [["S", "G", "D", "M"]], + "preflights": null, + "preflighting": null, + "preflighted": null, + "preflight's": null, + "preform": [["D", "S", "G"]], + "preformed": null, + "preforms": null, + "preforming": null, + "pref": [["R", "Z"]], + "prefers": null, + "pregnancy": [["S", "M"]], + "pregnancies": null, + "pregnancy's": null, + "pregnant": [["Y"]], + "pregnantly": null, + "preheat": [["G", "D", "S"]], + "preheating": null, + "preheated": null, + "preheats": null, + "prehensile": null, + "prehistoric": null, + "prehistorical": [["Y"]], + "prehistorically": null, + "prehistory": [["S", "M"]], + "prehistories": null, + "prehistory's": null, + "preindustrial": null, + "preinitialize": [["S", "D", "G"]], + "preinitializes": null, + "preinitialized": null, + "preinitializing": null, + "preinterview": [["M"]], + "preinterview's": null, + "preisolated": null, + "prejudge": [["D", "R", "S", "G"]], + "prejudged": null, + "prejudger": [["M"]], + "prejudges": null, + "prejudging": null, + "prejudger's": null, + "prejudgment": [["S", "M"]], + "prejudgments": null, + "prejudgment's": null, + "prejudiced": [["U"]], + "unprejudiced": null, + "prejudice": [["M", "S", "D", "G"]], + "prejudice's": null, + "prejudices": null, + "prejudicing": null, + "prejudicial": [["P", "Y"]], + "prejudicialness": null, + "prejudicially": null, + "prekindergarten": [["M", "S"]], + "prekindergarten's": null, + "prekindergartens": null, + "prelacy": [["M", "S"]], + "prelacy's": null, + "prelacies": null, + "prelate": [["S", "M"]], + "prelates": null, + "prelate's": null, + "preliminarily": null, + "preliminary": [["S"]], + "preliminaries": null, + "preliterate": [["S"]], + "preliterates": null, + "preloaded": null, + "prelude": [["G", "M", "D", "R", "S"]], + "preluding": null, + "prelude's": null, + "preluded": null, + "preluder": [["M"]], + "preludes": null, + "preluder's": null, + "premarital": [["Y"]], + "premaritally": null, + "premarket": null, + "prematureness": [["M"]], + "prematureness's": null, + "premature": [["S", "P", "Y"]], + "prematures": null, + "prematurely": null, + "prematurity": [["M"]], + "prematurity's": null, + "premedical": null, + "premeditated": [["Y"]], + "premeditatedly": null, + "premeditate": [["X", "D", "S", "G", "N", "V"]], + "premeditations": null, + "premeditates": null, + "premeditating": null, + "premeditation": [["M"]], + "premeditative": null, + "premeditation's": null, + "premed": [["S"]], + "premeds": null, + "premenstrual": null, + "premiere": [["M", "S"]], + "premiere's": null, + "premieres": null, + "premier": [["G", "S", "D", "M"]], + "premiering": null, + "premiers": null, + "premiered": null, + "premier's": null, + "premiership": [["S", "M"]], + "premierships": null, + "premiership's": null, + "Preminger": [["M"]], + "Preminger's": null, + "premise": [["G", "M", "D", "S"]], + "premising": null, + "premise's": null, + "premised": null, + "premises": null, + "premiss's": null, + "premium": [["M", "S"]], + "premium's": null, + "premiums": null, + "premix": [["G", "D", "S"]], + "premixing": null, + "premixed": null, + "premixes": null, + "premolar": [["S"]], + "premolars": null, + "premonition": [["S", "M"]], + "premonitions": null, + "premonition's": null, + "premonitory": null, + "prenatal": [["Y"]], + "prenatally": null, + "Pren": [["M"]], + "Pren's": null, + "Prenticed": [["M"]], + "Prenticed's": null, + "Prentice": [["M", "G", "D"]], + "Prentice's": null, + "Prenticing": [["M"]], + "Prenticing's": null, + "Prentiss": [["M"]], + "Prentiss's": null, + "Prent": [["M"]], + "Prent's": null, + "prenuptial": null, + "preoccupation": [["M", "S"]], + "preoccupation's": null, + "preoccupations": null, + "preoccupy": [["D", "S", "G"]], + "preoccupied": null, + "preoccupies": null, + "preoccupying": null, + "preoperative": null, + "preordain": [["D", "S", "L", "G"]], + "preordained": null, + "preordains": null, + "preordainment": null, + "preordaining": null, + "prepackage": [["G", "S", "D"]], + "prepackaging": null, + "prepackages": null, + "prepackaged": null, + "prepaid": null, + "preparation": [["S", "M"]], + "preparations": null, + "preparation's": null, + "preparative": [["S", "Y", "M"]], + "preparatives": null, + "preparatively": null, + "preparative's": null, + "preparatory": null, + "preparedly": null, + "preparedness": [["U", "S", "M"]], + "unpreparedness": null, + "unpreparednesses": null, + "unpreparedness's": null, + "preparednesses": null, + "preparedness's": null, + "prepared": [["U", "P"]], + "unprepared": null, + "prepare": [["Z", "D", "R", "S", "G"]], + "preparers": null, + "preparer": null, + "prepares": null, + "preparing": null, + "prepay": [["G", "L", "S"]], + "prepaying": null, + "prepayment": [["S", "M"]], + "prepays": null, + "prepayments": null, + "prepayment's": null, + "prepender": [["S"]], + "prependers": null, + "prepends": null, + "preplanned": null, + "preponderance": [["S", "M"]], + "preponderances": null, + "preponderance's": null, + "preponderant": [["Y"]], + "preponderantly": null, + "preponderate": [["D", "S", "Y", "G", "N"]], + "preponderated": null, + "preponderates": null, + "preponderately": null, + "preponderating": null, + "preponderation": null, + "prepositional": [["Y"]], + "prepositionally": null, + "preposition": [["S", "D", "M", "G"]], + "prepositions": null, + "prepositioned": null, + "preposition's": null, + "prepositioning": null, + "prepossess": [["G", "S", "D"]], + "prepossessing": [["U"]], + "prepossesses": null, + "prepossessed": null, + "unprepossessing": null, + "prepossession": [["M", "S"]], + "prepossession's": null, + "prepossessions": null, + "preposterousness": [["M"]], + "preposterousness's": null, + "preposterous": [["P", "Y"]], + "preposterously": null, + "prepped": null, + "prepping": null, + "preppy": [["R", "S", "T"]], + "preppier": null, + "preppies": null, + "preppiest": null, + "preprepared": null, + "preprint": [["S", "G", "D", "M"]], + "preprints": null, + "preprinting": null, + "preprinted": null, + "preprint's": null, + "preprocessed": null, + "preprocessing": null, + "preprocessor": [["S"]], + "preprocessors": null, + "preproduction": null, + "preprogrammed": null, + "prep": [["S", "M"]], + "preps": null, + "prep's": null, + "prepubescence": [["S"]], + "prepubescences": null, + "prepubescent": [["S"]], + "prepubescents": null, + "prepublication": [["M"]], + "prepublication's": null, + "prepuce": [["S", "M"]], + "prepuces": null, + "prepuce's": null, + "prequel": [["S"]], + "prequels": null, + "preradiation": null, + "prerecord": [["D", "G", "S"]], + "prerecorded": null, + "prerecording": null, + "prerecords": null, + "preregister": [["D", "S", "G"]], + "preregistered": null, + "preregisters": null, + "preregistering": null, + "preregistration": [["M", "S"]], + "preregistration's": null, + "preregistrations": null, + "prerequisite": [["S", "M"]], + "prerequisites": null, + "prerequisite's": null, + "prerogative": [["S", "D", "M"]], + "prerogatives": null, + "prerogatived": null, + "prerogative's": null, + "Pres": null, + "presage": [["G", "M", "D", "R", "S"]], + "presaging": null, + "presage's": null, + "presaged": null, + "presager": [["M"]], + "presages": null, + "presager's": null, + "presbyopia": [["M", "S"]], + "presbyopia's": null, + "presbyopias": null, + "presbyterian": null, + "Presbyterianism": [["S"]], + "Presbyterianisms": null, + "Presbyterian": [["S"]], + "Presbyterians": null, + "presbyter": [["M", "S"]], + "presbyter's": null, + "presbyters": null, + "presbytery": [["M", "S"]], + "presbytery's": null, + "presbyteries": null, + "preschool": [["R", "S", "Z"]], + "preschooler": null, + "preschools": null, + "preschoolers": null, + "prescience": [["S", "M"]], + "presciences": null, + "prescience's": null, + "prescient": [["Y"]], + "presciently": null, + "Prescott": [["M"]], + "Prescott's": null, + "prescribed": [["U"]], + "unprescribed": null, + "prescriber": [["M"]], + "prescriber's": null, + "prescribe": [["R", "S", "D", "G"]], + "prescribes": null, + "prescribing": null, + "prescription": [["S", "M"]], + "prescriptions": null, + "prescription's": null, + "prescriptive": [["Y"]], + "prescriptively": null, + "prescript": [["S", "V", "M"]], + "prescripts": null, + "prescript's": null, + "preselect": [["S", "G", "D"]], + "preselects": null, + "preselecting": null, + "preselected": null, + "presence": [["S", "M"]], + "presences": null, + "presence's": null, + "presentableness": [["M"]], + "presentableness's": null, + "presentable": [["P"]], + "presentably": [["A"]], + "representably": null, + "presentational": [["A"]], + "representational": [["Y"]], + "presentation": [["A", "M", "S"]], + "representation": null, + "representation's": null, + "representations": null, + "presentation's": null, + "presentations": null, + "presented": [["A"]], + "represented": [["U"]], + "presenter": [["A"]], + "representer": null, + "presentiment": [["M", "S"]], + "presentiment's": null, + "presentiments": null, + "presentment": [["S", "M"]], + "presentments": null, + "presentment's": null, + "presents": [["A"]], + "represents": null, + "present": [["S", "L", "B", "D", "R", "Y", "Z", "G", "P"]], + "presently": null, + "presenters": null, + "presenting": null, + "presentness": null, + "preservationist": [["S"]], + "preservationists": null, + "preservation": [["S", "M"]], + "preservations": null, + "preservation's": null, + "preservative": [["S", "M"]], + "preservatives": null, + "preservative's": null, + "preserve": [["D", "R", "S", "B", "Z", "G"]], + "preserved": [["U"]], + "preserver": [["M"]], + "preserves": null, + "preservable": null, + "preservers": null, + "preserving": null, + "unpreserved": null, + "preserver's": null, + "preset": [["S"]], + "presets": null, + "presetting": null, + "preshrank": null, + "preshrink": [["S", "G"]], + "preshrinks": null, + "preshrinking": null, + "preshrunk": null, + "preside": [["D", "R", "S", "G"]], + "presided": null, + "presider": [["M"]], + "presides": null, + "presiding": null, + "presidency": [["M", "S"]], + "presidency's": null, + "presidencies": null, + "presidential": [["Y"]], + "presidentially": null, + "president": [["S", "M"]], + "presidents": null, + "president's": null, + "presider's": null, + "presidia": null, + "presidium": [["M"]], + "presidium's": null, + "Presley": [["M"]], + "Presley's": null, + "presoaks": null, + "presort": [["G", "D", "S"]], + "presorting": null, + "presorted": null, + "presorts": null, + "pres": [["S"]], + "preses": null, + "press": [["A", "C", "D", "S", "G"]], + "repress": [["V"]], + "repressed": null, + "represses": null, + "repressing": null, + "depressed": null, + "depresses": null, + "depressing": null, + "pressed": [["U"]], + "presses": null, + "pressing": [["Y", "S"]], + "unpressed": null, + "presser": [["M", "S"]], + "presser's": null, + "pressers": null, + "pressingly": [["C"]], + "depressingly": null, + "pressings": null, + "pressman": [["M"]], + "pressman's": null, + "pressmen": null, + "pressure": [["D", "S", "M", "G"]], + "pressured": null, + "pressures": null, + "pressure's": null, + "pressuring": null, + "pressurization": [["M", "S"]], + "pressurization's": null, + "pressurizations": null, + "pressurize": [["D", "S", "R", "G", "Z"]], + "pressurized": [["U"]], + "pressurizes": null, + "pressurizer": null, + "pressurizing": null, + "pressurizers": null, + "unpressurized": null, + "prestidigitate": [["N", "X"]], + "prestidigitation": [["M"]], + "prestidigitations": null, + "prestidigitation's": null, + "prestidigitatorial": null, + "prestidigitator": [["M"]], + "prestidigitator's": null, + "prestige": [["M", "S"]], + "prestige's": null, + "prestiges": null, + "prestigious": [["P", "Y"]], + "prestigiousness": null, + "prestigiously": null, + "Preston": [["M"]], + "Preston's": null, + "presto": [["S"]], + "prestos": null, + "presumably": null, + "presume": [["B", "G", "D", "R", "S"]], + "presumable": null, + "presuming": [["Y"]], + "presumed": null, + "presumer": [["M"]], + "presumes": null, + "presumer's": null, + "presumingly": null, + "presumption": [["M", "S"]], + "presumption's": null, + "presumptions": null, + "presumptive": [["Y"]], + "presumptively": null, + "presumptuousness": [["S", "M"]], + "presumptuousnesses": null, + "presumptuousness's": null, + "presumptuous": [["Y", "P"]], + "presumptuously": null, + "presuppose": [["G", "D", "S"]], + "presupposing": null, + "presupposed": null, + "presupposes": null, + "presupposition": [["S"]], + "presuppositions": null, + "pretax": null, + "preteen": [["S"]], + "preteens": null, + "pretended": [["Y"]], + "pretendedly": null, + "pretender": [["M"]], + "pretender's": null, + "pretending": [["U"]], + "unpretending": null, + "pretend": [["S", "D", "R", "Z", "G"]], + "pretends": null, + "pretenders": null, + "pretense": [["M", "N", "V", "S", "X"]], + "pretense's": null, + "pretension": [["G", "D", "M"]], + "pretensive": null, + "pretenses": null, + "pretensions": null, + "pretensioning": null, + "pretensioned": null, + "pretension's": null, + "pretentiousness": [["S"]], + "pretentiousnesses": null, + "pretentious": [["U", "Y", "P"]], + "unpretentious": null, + "unpretentiously": null, + "unpretentiousness": [["M"]], + "pretentiously": null, + "preterite's": null, + "preterit": [["S", "M"]], + "preterits": null, + "preterit's": null, + "preternatural": [["Y"]], + "preternaturally": null, + "pretest": [["S", "D", "G"]], + "pretests": null, + "pretested": null, + "pretesting": null, + "pretext": [["S", "M", "D", "G"]], + "pretexts": null, + "pretext's": null, + "pretexted": null, + "pretexting": null, + "Pretoria": [["M"]], + "Pretoria's": null, + "pretreated": null, + "pretreatment": [["S"]], + "pretreatments": null, + "pretrial": null, + "prettify": [["S", "D", "G"]], + "prettifies": null, + "prettified": null, + "prettifying": null, + "prettily": null, + "prettiness": [["S", "M"]], + "prettinesses": null, + "prettiness's": null, + "pretty": [["T", "G", "P", "D", "R", "S"]], + "prettiest": null, + "prettying": null, + "prettied": null, + "prettier": null, + "pretties": null, + "pretzel": [["S", "M"]], + "pretzels": null, + "pretzel's": null, + "prevailing": [["Y"]], + "prevailingly": null, + "prevail": [["S", "G", "D"]], + "prevails": null, + "prevailed": null, + "prevalence": [["M", "S"]], + "prevalence's": null, + "prevalences": null, + "prevalent": [["S", "Y"]], + "prevalents": null, + "prevalently": null, + "prevaricate": [["D", "S", "X", "N", "G"]], + "prevaricated": null, + "prevaricates": null, + "prevarications": null, + "prevarication": null, + "prevaricating": null, + "prevaricator": [["M", "S"]], + "prevaricator's": null, + "prevaricators": null, + "preventable": [["U"]], + "unpreventable": null, + "preventably": null, + "preventative": [["S"]], + "preventatives": null, + "prevent": [["B", "S", "D", "R", "G", "V"]], + "prevents": null, + "prevented": null, + "preventer": [["M"]], + "preventing": null, + "preventive": [["S", "P", "Y"]], + "preventer's": null, + "prevention": [["M", "S"]], + "prevention's": null, + "preventions": null, + "preventiveness": [["M"]], + "preventiveness's": null, + "preventives": null, + "preventively": null, + "preview": [["Z", "G", "S", "D", "R", "M"]], + "previewers": null, + "previewing": null, + "previews": null, + "previewed": null, + "previewer": null, + "preview's": null, + "previous": [["Y"]], + "previously": null, + "prevision": [["S", "G", "M", "D"]], + "previsions": null, + "previsioning": null, + "prevision's": null, + "previsioned": null, + "prewar": null, + "prexes": null, + "preyer's": null, + "prey": [["S", "M", "D", "G"]], + "preys": null, + "prey's": null, + "preyed": null, + "preying": null, + "Priam": [["M"]], + "Priam's": null, + "priapic": null, + "Pribilof": [["M"]], + "Pribilof's": null, + "price": [["A", "G", "S", "D"]], + "reprice": null, + "repricing": null, + "reprices": null, + "repriced": null, + "pricing": null, + "prices": null, + "priced": [["U"]], + "unpriced": null, + "priceless": null, + "Price": [["M"]], + "Price's": null, + "pricer": [["M", "S"]], + "pricer's": null, + "pricers": null, + "price's": null, + "pricey": null, + "pricier": null, + "priciest": null, + "pricker": [["M"]], + "pricker's": null, + "pricking": [["M"]], + "pricking's": null, + "prickle": [["G", "M", "D", "S"]], + "prickling": null, + "prickle's": null, + "prickled": null, + "prickles": null, + "prickliness": [["S"]], + "pricklinesses": null, + "prickly": [["R", "T", "P"]], + "pricklier": null, + "prickliest": null, + "prick": [["R", "D", "S", "Y", "Z", "G"]], + "pricked": null, + "pricks": null, + "prickers": null, + "prideful": [["Y"]], + "pridefully": null, + "pride": [["G", "M", "D", "S"]], + "priding": null, + "pride's": null, + "prided": null, + "prides": null, + "prier": [["M"]], + "prier's": null, + "priestess": [["M", "S"]], + "priestess's": null, + "priestesses": null, + "priesthood": [["S", "M"]], + "priesthoods": null, + "priesthood's": null, + "Priestley": [["M"]], + "Priestley's": null, + "priestliness": [["S", "M"]], + "priestlinesses": null, + "priestliness's": null, + "priestly": [["P", "T", "R"]], + "priestliest": null, + "priestlier": null, + "priest": [["S", "M", "Y", "D", "G"]], + "priests": null, + "priest's": null, + "priested": null, + "priesting": null, + "prigged": null, + "prigging": null, + "priggishness": [["S"]], + "priggishnesses": null, + "priggish": [["P", "Y", "M"]], + "priggishly": null, + "priggish's": null, + "prig": [["S", "M"]], + "prigs": null, + "prig's": null, + "primacy": [["M", "S"]], + "primacy's": null, + "primacies": null, + "primal": null, + "primarily": null, + "primary": [["M", "S"]], + "primary's": null, + "primaries": null, + "primate": [["M", "S"]], + "primate's": null, + "primates": null, + "primed": [["U"]], + "unprimed": null, + "primely": [["M"]], + "primely's": null, + "primeness": [["M"]], + "primeness's": null, + "prime": [["P", "Y", "S"]], + "primes": null, + "primer": [["M"]], + "primer's": null, + "Prime's": null, + "primeval": [["Y"]], + "primevally": null, + "priming": [["M"]], + "priming's": null, + "primitiveness": [["S", "M"]], + "primitivenesses": null, + "primitiveness's": null, + "primitive": [["Y", "P", "S"]], + "primitively": null, + "primitives": null, + "primitivism": [["M"]], + "primitivism's": null, + "primmed": null, + "primmer": null, + "primmest": null, + "primming": null, + "primness": [["M", "S"]], + "primness's": null, + "primnesses": null, + "primogenitor": [["M", "S"]], + "primogenitor's": null, + "primogenitors": null, + "primogeniture": [["M", "S"]], + "primogeniture's": null, + "primogenitures": null, + "primordial": [["Y", "S"]], + "primordially": null, + "primordials": null, + "primp": [["D", "G", "S"]], + "primped": null, + "primping": null, + "primps": null, + "primrose": [["M", "G", "S", "D"]], + "primrose's": null, + "primrosing": null, + "primroses": null, + "primrosed": null, + "prim": [["S", "P", "J", "G", "Z", "Y", "D", "R"]], + "prims": null, + "primings": null, + "primers": null, + "primly": null, + "princedom": [["M", "S"]], + "princedom's": null, + "princedoms": null, + "princeliness": [["S", "M"]], + "princelinesses": null, + "princeliness's": null, + "princely": [["P", "R", "T"]], + "princelier": null, + "princeliest": null, + "Prince": [["M"]], + "Prince's": null, + "prince": [["S", "M", "Y"]], + "princes": null, + "prince's": null, + "princess": [["M", "S"]], + "princess's": null, + "princesses": null, + "Princeton": [["M"]], + "Princeton's": null, + "principality": [["M", "S"]], + "principality's": null, + "principalities": null, + "principal": [["S", "Y"]], + "principals": null, + "principally": null, + "Principe": [["M"]], + "Principe's": null, + "Principia": [["M"]], + "Principia's": null, + "principled": [["U"]], + "unprincipled": [["P"]], + "principle": [["S", "D", "M", "G"]], + "principles": null, + "principle's": null, + "principling": null, + "printable": [["U"]], + "unprintable": null, + "printably": null, + "print": [["A", "G", "D", "R", "S"]], + "reprint": [["M"]], + "reprinting": null, + "reprinted": null, + "reprinter": null, + "reprints": null, + "printing": [["S", "M"]], + "printed": [["U"]], + "printer": [["A", "M"]], + "prints": null, + "unprinted": null, + "reprinter's": null, + "printer's": null, + "printers": null, + "printings": null, + "printing's": null, + "printmaker": [["M"]], + "printmaker's": null, + "printmake": [["Z", "G", "R"]], + "printmakers": null, + "printmaking": [["M"]], + "printmaking's": null, + "printout": [["S"]], + "printouts": null, + "Prinz": [["M"]], + "Prinz's": null, + "prioress": [["M", "S"]], + "prioress's": null, + "prioresses": null, + "priori": null, + "prioritize": [["D", "S", "R", "G", "Z", "J"]], + "prioritized": null, + "prioritizes": null, + "prioritizer": null, + "prioritizing": null, + "prioritizers": null, + "prioritizings": null, + "priority": [["M", "S"]], + "priority's": null, + "priorities": null, + "prior": [["Y", "S"]], + "priorly": null, + "priors": null, + "priory": [["S", "M"]], + "priories": null, + "priory's": null, + "Pris": null, + "Prisca": [["M"]], + "Prisca's": null, + "Priscella": [["M"]], + "Priscella's": null, + "Priscilla": [["M"]], + "Priscilla's": null, + "prised": null, + "prise": [["G", "M", "A", "S"]], + "prising": null, + "reprising": null, + "prise's": null, + "reprise's": null, + "reprise": null, + "reprises": null, + "prises": null, + "prismatic": null, + "prism": [["M", "S"]], + "prism's": null, + "prisms": null, + "prison": [["D", "R", "M", "S", "G", "Z"]], + "prisoned": null, + "prisoner": [["M"]], + "prison's": null, + "prisons": null, + "prisoning": null, + "prisoners": null, + "prisoner's": null, + "Prissie": [["M"]], + "Prissie's": null, + "prissily": null, + "prissiness": [["S", "M"]], + "prissinesses": null, + "prissiness's": null, + "prissy": [["R", "S", "P", "T"]], + "prissier": null, + "prissies": null, + "prissiest": null, + "pristine": [["Y"]], + "pristinely": null, + "prithee": [["S"]], + "prithees": null, + "privacy": [["M", "S"]], + "privacy's": null, + "privacies": null, + "privateer": [["S", "M", "D", "G"]], + "privateers": null, + "privateer's": null, + "privateered": null, + "privateering": null, + "privateness": [["M"]], + "privateness's": null, + "private": [["N", "V", "Y", "T", "R", "S", "X", "P"]], + "privation": [["M", "C", "S"]], + "privative": [["Y"]], + "privately": null, + "privatest": null, + "privater": null, + "privates": null, + "privations": null, + "privation's": null, + "deprivation's": null, + "deprivation": null, + "deprivations": null, + "privatively": null, + "privatization": [["S"]], + "privatizations": null, + "privatize": [["G", "S", "D"]], + "privatizing": null, + "privatizes": null, + "privatized": null, + "privet": [["S", "M"]], + "privets": null, + "privet's": null, + "privileged": [["U"]], + "unprivileged": null, + "privilege": [["S", "D", "M", "G"]], + "privileges": null, + "privilege's": null, + "privileging": null, + "privily": null, + "privy": [["S", "R", "M", "T"]], + "privies": null, + "privier": null, + "privy's": null, + "priviest": null, + "prized": [["A"]], + "reprized": null, + "prize": [["D", "S", "R", "G", "Z", "M"]], + "prizes": null, + "prizer": null, + "prizing": null, + "prizers": null, + "prize's": null, + "prizefighter": [["M"]], + "prizefighter's": null, + "prizefighting": [["M"]], + "prizefighting's": null, + "prizefight": [["S", "R", "M", "G", "J", "Z"]], + "prizefights": null, + "prizefight's": null, + "prizefightings": null, + "prizefighters": null, + "prizewinner": [["S"]], + "prizewinners": null, + "prizewinning": null, + "Pr": [["M", "N"]], + "Pr's": null, + "PRO": null, + "proactive": null, + "probabilist": null, + "probabilistic": null, + "probabilistically": null, + "probability": [["S", "M"]], + "probabilities": null, + "probability's": null, + "probable": [["S"]], + "probables": null, + "probably": null, + "reprobated": null, + "probation": [["M", "R", "Z"]], + "probative": [["A"]], + "probate's": null, + "probations": null, + "reprobates": null, + "reprobating": null, + "probational": null, + "probationary": [["S"]], + "probationaries": null, + "probationer": [["M"]], + "probationer's": null, + "probation's": [["A"]], + "probationers": null, + "reprobation's": null, + "reprobative": null, + "prober": [["M"]], + "prober's": null, + "probity": [["S", "M"]], + "probities": null, + "probity's": null, + "problematical": [["U", "Y"]], + "unproblematical": null, + "unproblematically": null, + "problematically": null, + "problematic": [["S"]], + "problematics": null, + "problem": [["S", "M"]], + "problems": null, + "problem's": null, + "proboscis": [["M", "S"]], + "proboscis's": null, + "proboscises": null, + "probings": null, + "procaine": [["M", "S"]], + "procaine's": null, + "procaines": null, + "procedural": [["S", "Y"]], + "procedurals": null, + "procedurally": null, + "procedure": [["M", "S"]], + "procedure's": null, + "procedures": null, + "proceeder": [["M"]], + "proceeder's": null, + "proceeding": [["M"]], + "proceeding's": null, + "proceed": [["J", "R", "D", "S", "G"]], + "proceedings": null, + "proceeded": null, + "proceeds": null, + "process": [["B", "S", "D", "M", "G"]], + "processable": null, + "processes": [["A"]], + "processed": [["U", "A"]], + "process's": null, + "processing": null, + "unprocessed": null, + "reprocessed": null, + "reprocesses": null, + "processional": [["Y", "S"]], + "processionally": null, + "processionals": null, + "processioning": null, + "processioned": null, + "processor": [["M", "S"]], + "processor's": null, + "processors": null, + "proclamation": [["M", "S"]], + "proclamation's": null, + "proclamations": null, + "proclivity": [["M", "S"]], + "proclivity's": null, + "proclivities": null, + "proconsular": null, + "procrastinate": [["X", "N", "G", "D", "S"]], + "procrastinations": null, + "procrastination": [["M"]], + "procrastinating": null, + "procrastinated": null, + "procrastinates": null, + "procrastination's": null, + "procrastinator": [["M", "S"]], + "procrastinator's": null, + "procrastinators": null, + "procreational": null, + "procreatory": null, + "procrustean": null, + "Procrustean": null, + "Procrustes": [["M"]], + "Procrustes's": null, + "proctor": [["G", "S", "D", "M"]], + "proctoring": null, + "proctors": null, + "proctored": null, + "proctor's": null, + "proctorial": null, + "unprocurable": null, + "procurement": [["M", "S"]], + "procurement's": null, + "procurements": null, + "Procyon": [["M"]], + "Procyon's": null, + "prodded": null, + "prodding": null, + "prodigality": [["S"]], + "prodigalities": null, + "prodigal": [["S", "Y"]], + "prodigals": null, + "prodigally": null, + "prodigiousness": [["M"]], + "prodigiousness's": null, + "prodigious": [["P", "Y"]], + "prodigiously": null, + "prodigy": [["M", "S"]], + "prodigy's": null, + "prodigies": null, + "prod": [["S"]], + "prods": null, + "reproduce": null, + "reproducers": null, + "reproducing": null, + "reproduced": null, + "reproducer": null, + "reproduces": null, + "producers": null, + "producing": null, + "produced": null, + "producer": [["A", "M"]], + "produces": null, + "reproducer's": null, + "producer's": null, + "producible": [["A"]], + "reproducible": [["S"]], + "production": [["A", "S", "M"]], + "reproduction": null, + "reproductions": null, + "reproduction's": null, + "productions": null, + "production's": null, + "productively": [["U", "A"]], + "unproductively": null, + "reproductively": null, + "productiveness": [["M", "S"]], + "productiveness's": null, + "productivenesses": null, + "productive": [["P", "Y"]], + "productivities": null, + "productivity": [["A"]], + "reproductivity": null, + "productivity's": null, + "productize": [["G", "Z", "R", "S", "D"]], + "productizing": null, + "productizers": null, + "productizer": null, + "productizes": null, + "productized": null, + "Prof": null, + "profanation": [["S"]], + "profanations": null, + "profaneness": [["M", "S"]], + "profaneness's": null, + "profanenesses": null, + "profane": [["Y", "P", "D", "R", "S", "G"]], + "profanely": null, + "profaned": null, + "profaner": null, + "profanes": null, + "profaning": null, + "profanity": [["M", "S"]], + "profanity's": null, + "profanities": null, + "professedly": null, + "professionalism": [["S", "M"]], + "professionalisms": null, + "professionalism's": null, + "professionalize": [["G", "S", "D"]], + "professionalizing": null, + "professionalizes": null, + "professionalized": null, + "professional": [["U", "S", "Y"]], + "unprofessional": null, + "unprofessionals": null, + "unprofessionally": null, + "professionals": null, + "professionally": null, + "profession": [["S", "M"]], + "professions": null, + "profession's": null, + "professorial": [["Y"]], + "professorially": null, + "professorship": [["S", "M"]], + "professorships": null, + "professorship's": null, + "professor": [["S", "M"]], + "professors": null, + "professor's": null, + "proffer": [["G", "S", "D"]], + "proffering": null, + "proffers": null, + "proffered": null, + "proficiency": [["S", "M"]], + "proficiencies": null, + "proficiency's": null, + "proficient": [["Y", "S"]], + "proficiently": null, + "proficients": null, + "profitability": [["M", "S"]], + "profitability's": null, + "profitabilities": null, + "profitableness": [["M", "U"]], + "profitableness's": null, + "unprofitableness's": null, + "unprofitableness": null, + "profitable": [["U", "P"]], + "unprofitable": null, + "profitably": [["U"]], + "unprofitably": null, + "profiteer": [["G", "S", "M", "D"]], + "profiteering": null, + "profiteers": null, + "profiteer's": null, + "profiteered": null, + "profiterole": [["M", "S"]], + "profiterole's": null, + "profiteroles": null, + "profit": [["G", "Z", "D", "R", "B"]], + "profiting": null, + "profiters": null, + "profited": null, + "profiter": null, + "profitless": null, + "profligacy": [["S"]], + "profligacies": null, + "profligate": [["Y", "S"]], + "profligately": null, + "profligates": null, + "proforma": [["S"]], + "proformas": null, + "profoundity": null, + "profoundness": [["S", "M"]], + "profoundnesses": null, + "profoundness's": null, + "profound": [["P", "T", "Y", "R"]], + "profoundest": null, + "profoundly": null, + "profounder": null, + "prof": [["S"]], + "profs": null, + "profundity": [["M", "S"]], + "profundity's": null, + "profundities": null, + "profuseness": [["M", "S"]], + "profuseness's": null, + "profusenesses": null, + "profuse": [["Y", "P"]], + "profusely": null, + "progenitor": [["S", "M"]], + "progenitors": null, + "progenitor's": null, + "progeny": [["M"]], + "progeny's": null, + "progesterone": [["S", "M"]], + "progesterones": null, + "progesterone's": null, + "prognathous": null, + "prognoses": null, + "prognosis": [["M"]], + "prognosis's": null, + "prognosticate": [["N", "G", "V", "X", "D", "S"]], + "prognostication": [["M"]], + "prognosticating": null, + "prognosticative": null, + "prognostications": null, + "prognosticated": null, + "prognosticates": null, + "prognostication's": null, + "prognosticator": [["S"]], + "prognosticators": null, + "prognostics": null, + "deprogram": null, + "deprograms": null, + "reprograms": null, + "reprogram": null, + "programed": null, + "programing": null, + "programmability": null, + "programmable": [["S"]], + "programmables": null, + "programmed": [["C", "A"]], + "deprogrammed": null, + "reprogrammed": null, + "programmer": [["A", "S", "M"]], + "reprogrammer": null, + "reprogrammers": null, + "reprogrammer's": null, + "programmers": null, + "programmer's": null, + "programming": [["C", "A"]], + "deprogramming": null, + "reprogramming": null, + "programmings": null, + "progression": [["S", "M"]], + "progressions": null, + "progression's": null, + "progressiveness": [["S", "M"]], + "progressivenesses": null, + "progressiveness's": null, + "progressive": [["S", "P", "Y"]], + "progressives": null, + "progressively": null, + "progressivism": null, + "progress": [["M", "S", "D", "V", "G"]], + "progress's": null, + "progresses": null, + "progressed": null, + "progressing": null, + "prohibiter": [["M"]], + "prohibiter's": null, + "prohibitionist": [["M", "S"]], + "prohibitionist's": null, + "prohibitionists": null, + "prohibition": [["M", "S"]], + "prohibition's": null, + "prohibitions": null, + "Prohibition": [["M", "S"]], + "Prohibition's": null, + "Prohibitions": null, + "prohibitiveness": [["M"]], + "prohibitiveness's": null, + "prohibitive": [["P", "Y"]], + "prohibitively": null, + "prohibitory": null, + "prohibit": [["V", "G", "S", "R", "D"]], + "prohibiting": null, + "prohibits": null, + "prohibited": null, + "projected": [["A", "U"]], + "reprojected": null, + "unprojected": null, + "projectile": [["M", "S"]], + "projectile's": null, + "projectiles": null, + "projectionist": [["M", "S"]], + "projectionist's": null, + "projectionists": null, + "projection": [["M", "S"]], + "projection's": null, + "projections": null, + "projective": [["Y"]], + "projectively": null, + "project": [["M", "D", "V", "G", "S"]], + "project's": null, + "projecting": null, + "projects": null, + "projector": [["S", "M"]], + "projectors": null, + "projector's": null, + "Prokofieff": [["M"]], + "Prokofieff's": null, + "Prokofiev": [["M"]], + "Prokofiev's": null, + "prolegomena": null, + "proletarianization": [["M"]], + "proletarianization's": null, + "proletarianized": null, + "proletarian": [["S"]], + "proletarians": null, + "proletariat": [["S", "M"]], + "proletariats": null, + "proletariat's": null, + "proliferate": [["G", "N", "V", "D", "S", "X"]], + "proliferating": null, + "proliferation": [["M"]], + "proliferative": null, + "proliferated": null, + "proliferates": null, + "proliferations": null, + "proliferation's": null, + "prolifically": null, + "prolific": [["P"]], + "prolificness": null, + "prolixity": [["M", "S"]], + "prolixity's": null, + "prolixities": null, + "prolix": [["Y"]], + "prolixly": null, + "prologize": null, + "prologue": [["M", "G", "S", "D"]], + "prologue's": null, + "prologuing": null, + "prologues": null, + "prologued": null, + "prologuize": null, + "prolongate": [["N", "G", "S", "D", "X"]], + "prolongation": [["M"]], + "prolongating": null, + "prolongates": null, + "prolongated": null, + "prolongations": null, + "prolongation's": null, + "prolonger's": null, + "prolong": [["G"]], + "prolonging": null, + "promenade": [["G", "Z", "M", "S", "R", "D"]], + "promenading": null, + "promenaders": null, + "promenade's": null, + "promenades": null, + "promenader": [["M"]], + "promenaded": null, + "promenader's": null, + "Promethean": null, + "Prometheus": [["M"]], + "Prometheus's": null, + "promethium": [["S", "M"]], + "promethiums": null, + "promethium's": null, + "prominence": [["M", "S"]], + "prominence's": null, + "prominences": null, + "prominent": [["Y"]], + "prominently": null, + "promiscuity": [["M", "S"]], + "promiscuity's": null, + "promiscuities": null, + "promiscuousness": [["M"]], + "promiscuousness's": null, + "promiscuous": [["P", "Y"]], + "promiscuously": null, + "promise": [["G", "D"]], + "promising": [["U", "Y"]], + "promised": null, + "unpromising": null, + "unpromisingly": null, + "promisingly": null, + "promissory": null, + "promontory": [["M", "S"]], + "promontory's": null, + "promontories": null, + "promoting": null, + "promotive": [["P"]], + "promoters": null, + "promotable": null, + "promoted": null, + "promoter": [["M"]], + "promoter's": null, + "promotiveness": [["M"]], + "promotiveness's": null, + "prompted": [["U"]], + "unprompted": null, + "prompter": [["M"]], + "prompter's": null, + "promptitude": [["S", "M"]], + "promptitudes": null, + "promptitude's": null, + "promptness": [["M", "S"]], + "promptness's": null, + "promptnesses": null, + "prompt": [["S", "G", "J", "T", "Z", "P", "Y", "D", "R"]], + "prompts": null, + "prompting": null, + "promptings": null, + "promptest": null, + "prompters": null, + "promptly": null, + "pro": [["M", "S"]], + "pro's": null, + "pros": [["D", "S", "R", "G"]], + "promulgate": [["N", "G", "S", "D", "X"]], + "promulgation": [["M"]], + "promulgating": null, + "promulgates": null, + "promulgated": null, + "promulgations": null, + "promulgation's": null, + "promulgator": [["M", "S"]], + "promulgator's": null, + "promulgators": null, + "pron": null, + "proneness": [["M", "S"]], + "proneness's": null, + "pronenesses": null, + "prone": [["P", "Y"]], + "pronely": null, + "pronghorn": [["S", "M"]], + "pronghorns": null, + "pronghorn's": null, + "prong": [["S", "G", "M", "D"]], + "prongs": null, + "pronging": null, + "prong's": null, + "pronged": null, + "pronominalization": null, + "pronominalize": null, + "pronounceable": [["U"]], + "unpronounceable": null, + "pronouncedly": null, + "pronounced": [["U"]], + "unpronounced": null, + "pronounce": [["G", "L", "S", "R", "D"]], + "pronouncing": null, + "pronouncement": [["S", "M"]], + "pronounces": null, + "pronouncer": [["M"]], + "pronouncements": null, + "pronouncement's": null, + "pronouncer's": null, + "pronto": null, + "pronunciation": [["S", "M"]], + "pronunciations": null, + "pronunciation's": null, + "proofed": [["A"]], + "reproofed": null, + "proofer": null, + "proofing": [["M"]], + "proofing's": null, + "proofreader": [["M"]], + "proofreader's": null, + "proofread": [["G", "Z", "S", "R"]], + "proofreading": null, + "proofreaders": null, + "proofreads": null, + "proofs": null, + "disproofs": null, + "reproofs": null, + "disproof": null, + "disproof's": null, + "reproof": [["G"]], + "reproof's": null, + "proof's": null, + "propaganda": [["S", "M"]], + "propagandas": null, + "propaganda's": null, + "propagandistic": null, + "propagandist": [["S", "M"]], + "propagandists": null, + "propagandist's": null, + "propagandize": [["D", "S", "G"]], + "propagandized": null, + "propagandizes": null, + "propagandizing": null, + "propagated": [["U"]], + "unpropagated": null, + "propagate": [["S", "D", "V", "N", "G", "X"]], + "propagates": null, + "propagative": null, + "propagation": [["M"]], + "propagating": null, + "propagations": null, + "propagation's": null, + "propagator": [["M", "S"]], + "propagator's": null, + "propagators": null, + "propellant": [["M", "S"]], + "propellant's": null, + "propellants": null, + "propelled": null, + "propeller": [["M", "S"]], + "propeller's": null, + "propellers": null, + "propelling": null, + "propel": [["S"]], + "propels": null, + "propensity": [["M", "S"]], + "propensity's": null, + "propensities": null, + "properness": [["M"]], + "properness's": null, + "properly": null, + "properer": null, + "properest": null, + "propertied": [["U"]], + "unpropertied": null, + "property": [["S", "D", "M"]], + "properties": null, + "property's": null, + "prophecy": [["S", "M"]], + "prophecies": null, + "prophecy's": null, + "prophesier": [["M"]], + "prophesier's": null, + "prophesy": [["G", "R", "S", "D", "Z"]], + "prophesying": null, + "prophesies": null, + "prophesied": null, + "prophesiers": null, + "prophetess": [["S"]], + "prophetesses": null, + "prophetic": null, + "prophetical": [["Y"]], + "prophetically": null, + "prophet": [["S", "M"]], + "prophets": null, + "prophet's": null, + "prophylactic": [["S"]], + "prophylactics": null, + "prophylaxes": null, + "prophylaxis": [["M"]], + "prophylaxis's": null, + "propinquity": [["M", "S"]], + "propinquity's": null, + "propinquities": null, + "propionate": [["M"]], + "propionate's": null, + "propitiate": [["G", "N", "X", "S", "D"]], + "propitiating": null, + "propitiation": null, + "propitiations": null, + "propitiates": null, + "propitiated": null, + "propitiatory": null, + "propitiousness": [["M"]], + "propitiousness's": null, + "propitious": [["Y", "P"]], + "propitiously": null, + "proponent": [["M", "S"]], + "proponent's": null, + "proponents": null, + "proportionality": [["M"]], + "proportionality's": null, + "proportional": [["S", "Y"]], + "proportionals": null, + "proportionally": null, + "proportionate": [["Y", "G", "E", "S", "D"]], + "proportionately": null, + "disproportionately": null, + "proportionating": null, + "disproportionating": null, + "disproportionates": null, + "disproportionated": null, + "proportionates": null, + "proportionated": null, + "proportioner": [["M"]], + "proportioner's": null, + "disproportion": null, + "disproportions": null, + "disproportioning": null, + "disproportioned": null, + "disproportion's": null, + "proportionment": [["M"]], + "proportionment's": null, + "proposal": [["S", "M"]], + "proposals": null, + "proposal's": null, + "propped": null, + "propping": null, + "proprietary": [["S"]], + "proprietaries": null, + "proprietorial": null, + "proprietorship": [["S", "M"]], + "proprietorships": null, + "proprietorship's": null, + "proprietor": [["S", "M"]], + "proprietors": null, + "proprietor's": null, + "proprietress": [["M", "S"]], + "proprietress's": null, + "proprietresses": null, + "propriety": [["M", "S"]], + "propriety's": null, + "proprieties": null, + "proprioception": null, + "proprioceptive": null, + "prop": [["S", "Z"]], + "props": null, + "propers": null, + "propulsion": [["M", "S"]], + "propulsion's": null, + "propulsions": null, + "propulsive": null, + "propylene": [["M"]], + "propylene's": null, + "prorogation": [["S", "M"]], + "prorogations": null, + "prorogation's": null, + "prorogue": null, + "prosaic": null, + "prosaically": null, + "proscenium": [["M", "S"]], + "proscenium's": null, + "prosceniums": null, + "prosciutti": null, + "prosciutto": [["S", "M"]], + "prosciuttos": null, + "prosciutto's": null, + "proscription": [["S", "M"]], + "proscriptions": null, + "proscription's": null, + "proscriptive": null, + "prosed": null, + "proses": null, + "proser": [["M"]], + "prosing": null, + "prosecute": [["S", "D", "B", "X", "N", "G"]], + "prosecutes": null, + "prosecuted": null, + "prosecutable": null, + "prosecutions": null, + "prosecution": [["M"]], + "prosecuting": null, + "prosecution's": null, + "prosecutor": [["M", "S"]], + "prosecutor's": null, + "prosecutors": null, + "proselyte": [["S", "D", "G", "M"]], + "proselytes": null, + "proselyted": null, + "proselyting": null, + "proselyte's": null, + "proselytism": [["M", "S"]], + "proselytism's": null, + "proselytisms": null, + "proselytize": [["Z", "G", "D", "S", "R"]], + "proselytizers": null, + "proselytizing": null, + "proselytized": null, + "proselytizes": null, + "proselytizer": null, + "prose": [["M"]], + "prose's": null, + "proser's": null, + "Proserpine": [["M"]], + "Proserpine's": null, + "prosodic": [["S"]], + "prosodics": null, + "prosody": [["M", "S"]], + "prosody's": null, + "prosodies": null, + "prospect": [["D", "M", "S", "V", "G"]], + "prospected": null, + "prospect's": null, + "prospects": null, + "prospective": [["S", "Y", "P"]], + "prospecting": null, + "prospection": [["S", "M"]], + "prospections": null, + "prospection's": null, + "prospectiveness": [["M"]], + "prospectiveness's": null, + "prospectives": null, + "prospectively": null, + "prospector": [["M", "S"]], + "prospector's": null, + "prospectors": null, + "prospectus": [["S", "M"]], + "prospectuses": null, + "prospectus's": null, + "prosper": [["G", "S", "D"]], + "prospering": null, + "prospers": null, + "prospered": null, + "prosperity": [["M", "S"]], + "prosperity's": null, + "prosperities": null, + "prosperousness": [["M"]], + "prosperousness's": null, + "prosperous": [["P", "Y"]], + "prosperously": null, + "prostate": null, + "prostheses": null, + "prosthesis": [["M"]], + "prosthesis's": null, + "prosthetic": [["S"]], + "prosthetics": [["M"]], + "prosthetics's": null, + "prostitute": [["D", "S", "X", "N", "G", "M"]], + "prostituted": null, + "prostitutes": null, + "prostitutions": null, + "prostitution": [["M"]], + "prostituting": null, + "prostitute's": null, + "prostitution's": null, + "prostrate": [["S", "D", "X", "N", "G"]], + "prostrates": null, + "prostrated": null, + "prostrations": null, + "prostration": [["M"]], + "prostrating": null, + "prostration's": null, + "prosy": [["R", "T"]], + "prosier": null, + "prosiest": null, + "protactinium": [["M", "S"]], + "protactinium's": null, + "protactiniums": null, + "protagonist": [["S", "M"]], + "protagonists": null, + "protagonist's": null, + "Protagoras": [["M"]], + "Protagoras's": null, + "protean": [["S"]], + "proteans": null, + "protease": [["M"]], + "protease's": null, + "protect": [["D", "V", "G", "S"]], + "protected": [["U", "Y"]], + "protective": [["Y", "P", "S"]], + "protecting": null, + "protects": null, + "unprotected": null, + "unprotectedly": null, + "protectedly": null, + "protectionism": [["M", "S"]], + "protectionism's": null, + "protectionisms": null, + "protectionist": [["M", "S"]], + "protectionist's": null, + "protectionists": null, + "protection": [["M", "S"]], + "protection's": null, + "protections": null, + "protectiveness": [["S"]], + "protectivenesses": null, + "protectively": null, + "protectives": null, + "protectorate": [["S", "M"]], + "protectorates": null, + "protectorate's": null, + "protector": [["M", "S"]], + "protector's": null, + "protectors": null, + "prot�g�es": null, + "prot�g�": [["S", "M"]], + "prot�g�s": null, + "prot�g�'s": null, + "protein": [["M", "S"]], + "protein's": null, + "proteins": null, + "proteolysis": [["M"]], + "proteolysis's": null, + "proteolytic": null, + "Proterozoic": [["M"]], + "Proterozoic's": null, + "protestantism": null, + "Protestantism": [["M", "S"]], + "Protestantism's": null, + "Protestantisms": null, + "protestant": [["S"]], + "protestants": null, + "Protestant": [["S", "M"]], + "Protestants": null, + "Protestant's": null, + "protestation": [["M", "S"]], + "protestation's": null, + "protestations": null, + "protest": [["G"]], + "protesting": [["Y"]], + "protestingly": null, + "Proteus": [["M"]], + "Proteus's": null, + "protocol": [["D", "M", "G", "S"]], + "protocoled": null, + "protocol's": null, + "protocoling": null, + "protocols": null, + "protoplasmic": null, + "protoplasm": [["M", "S"]], + "protoplasm's": null, + "protoplasms": null, + "prototype": [["S", "D", "G", "M"]], + "prototypes": null, + "prototyped": null, + "prototyping": null, + "prototype's": null, + "prototypic": null, + "prototypical": [["Y"]], + "prototypically": null, + "protozoa": null, + "protozoan": [["M", "S"]], + "protozoan's": null, + "protozoans": null, + "protozoic": null, + "protozoon's": null, + "protract": [["D", "G"]], + "protracted": null, + "protracting": null, + "protrude": [["S", "D", "G"]], + "protrudes": null, + "protruded": null, + "protruding": null, + "protrusile": null, + "protrusion": [["M", "S"]], + "protrusion's": null, + "protrusions": null, + "protrusive": [["P", "Y"]], + "protrusiveness": null, + "protrusively": null, + "protuberance": [["S"]], + "protuberances": null, + "protuberant": null, + "Proudhon": [["M"]], + "Proudhon's": null, + "proud": [["T", "R", "Y"]], + "proudest": null, + "prouder": null, + "proudly": null, + "Proust": [["M"]], + "Proust's": null, + "provabilities": null, + "provability's": null, + "provability": [["U"]], + "unprovability": null, + "provableness": [["M"]], + "provableness's": null, + "provable": [["P"]], + "provably": null, + "prov": [["D", "R", "G", "Z", "B"]], + "proved": [["U"]], + "prover": [["M"]], + "proving": null, + "provers": null, + "unproved": null, + "proven": [["U"]], + "unproven": null, + "prove": [["E", "S", "D", "A", "G"]], + "disproves": null, + "disproved": null, + "disproving": null, + "proves": null, + "reproves": null, + "reproved": null, + "reprove": [["R"]], + "reproving": [["Y"]], + "provenance": [["S", "M"]], + "provenances": null, + "provenance's": null, + "Proven�al": null, + "Provencals": null, + "Provence": [["M"]], + "Provence's": null, + "provender": [["S", "D", "G"]], + "provenders": null, + "provendered": null, + "provendering": null, + "provenience": [["S", "M"]], + "proveniences": null, + "provenience's": null, + "provenly": null, + "proverb": [["D", "G"]], + "proverbed": null, + "proverbing": null, + "proverbial": [["Y"]], + "proverbially": null, + "Proverbs": [["M"]], + "Proverbs's": null, + "prover's": null, + "provide": [["D", "R", "S", "B", "G", "Z"]], + "provided": [["U"]], + "provider": [["M"]], + "provides": null, + "providable": null, + "providing": null, + "providers": null, + "unprovided": null, + "providence": [["S", "M"]], + "providences": null, + "providence's": null, + "Providence": [["S", "M"]], + "Providences": null, + "Providence's": null, + "providential": [["Y"]], + "providentially": null, + "provident": [["Y"]], + "providently": null, + "provider's": null, + "province": [["S", "M"]], + "provinces": null, + "province's": null, + "provincialism": [["S", "M"]], + "provincialisms": null, + "provincialism's": null, + "provincial": [["S", "Y"]], + "provincials": null, + "provincially": null, + "provisional": [["Y", "S"]], + "provisionally": null, + "provisionals": null, + "provisioner": [["M"]], + "provisioner's": null, + "provision": [["R"]], + "proviso": [["M", "S"]], + "proviso's": null, + "provisos": null, + "provocateur": [["S"]], + "provocateurs": null, + "provocativeness": [["S", "M"]], + "provocativenesses": null, + "provocativeness's": null, + "provocative": [["P"]], + "provoked": [["U"]], + "unprovoked": null, + "provoke": [["G", "Z", "D", "R", "S"]], + "provoking": [["Y"]], + "provokers": null, + "provoker": null, + "provokes": null, + "provokingly": null, + "provolone": [["S", "M"]], + "provolones": null, + "provolone's": null, + "Provo": [["M"]], + "Provo's": null, + "provost": [["M", "S"]], + "provost's": null, + "provosts": null, + "prowess": [["S", "M"]], + "prowesses": null, + "prowess's": null, + "prowler": [["M"]], + "prowler's": null, + "prowl": [["R", "D", "S", "Z", "G"]], + "prowled": null, + "prowls": null, + "prowlers": null, + "prowling": null, + "prow": [["T", "R", "M", "S"]], + "prowest": null, + "prower": null, + "prow's": null, + "prows": null, + "proximal": [["Y"]], + "proximally": null, + "proximateness": [["M"]], + "proximateness's": null, + "proximate": [["P", "Y"]], + "proximately": null, + "proximity": [["M", "S"]], + "proximity's": null, + "proximities": null, + "Proxmire": [["M"]], + "Proxmire's": null, + "proxy": [["S", "M"]], + "proxies": null, + "proxy's": null, + "Prozac": null, + "prude": [["M", "S"]], + "prude's": null, + "prudes": null, + "Prudence": [["M"]], + "Prudence's": null, + "prudence": [["S", "M"]], + "prudences": null, + "prudence's": null, + "Prudential": [["M"]], + "Prudential's": null, + "prudential": [["S", "Y"]], + "prudentials": null, + "prudentially": null, + "prudent": [["Y"]], + "prudently": null, + "prudery": [["M", "S"]], + "prudery's": null, + "pruderies": null, + "Prudi": [["M"]], + "Prudi's": null, + "prudishness": [["S", "M"]], + "prudishnesses": null, + "prudishness's": null, + "prudish": [["Y", "P"]], + "prudishly": null, + "Prudy": [["M"]], + "Prudy's": null, + "Prue": [["M"]], + "Prue's": null, + "Pruitt": [["M"]], + "Pruitt's": null, + "Pru": [["M"]], + "Pru's": null, + "prune": [["D", "S", "R", "G", "Z", "M"]], + "pruned": null, + "prunes": null, + "pruner": [["M"]], + "pruning": null, + "pruners": null, + "prune's": null, + "pruner's": null, + "prurience": [["M", "S"]], + "prurience's": null, + "pruriences": null, + "prurient": [["Y"]], + "pruriently": null, + "Prussia": [["M"]], + "Prussia's": null, + "Prussian": [["S"]], + "Prussians": null, + "prussic": null, + "Prut": [["M"]], + "Prut's": null, + "Pryce": [["M"]], + "Pryce's": null, + "pry": [["D", "R", "S", "G", "T", "Z"]], + "pried": null, + "pries": null, + "prying": [["Y"]], + "priers": null, + "pryer's": null, + "pryingly": null, + "P's": null, + "PS": null, + "p's": [["A"]], + "rep's": null, + "psalmist": [["S", "M"]], + "psalmists": null, + "psalmist's": null, + "psalm": [["S", "G", "D", "M"]], + "psalms": null, + "psalming": null, + "psalmed": null, + "psalm's": null, + "Psalms": [["M"]], + "Psalms's": null, + "psalter": null, + "Psalter": [["S", "M"]], + "Psalters": null, + "Psalter's": null, + "psaltery": [["M", "S"]], + "psaltery's": null, + "psalteries": null, + "psephologist": [["M"]], + "psephologist's": null, + "pseudonymous": null, + "pseudonym": [["S", "M"]], + "pseudonyms": null, + "pseudonym's": null, + "pseudopod": null, + "pseudo": [["S"]], + "pseudos": null, + "pseudoscience": [["S"]], + "pseudosciences": null, + "pshaw": [["S", "D", "G"]], + "pshaws": null, + "pshawed": null, + "pshawing": null, + "psi": [["S"]], + "psis": null, + "psittacoses": null, + "psittacosis": [["M"]], + "psittacosis's": null, + "psoriases": null, + "psoriasis": [["M"]], + "psoriasis's": null, + "psst": [["S"]], + "pssts": null, + "PST": null, + "psychedelically": null, + "psychedelic": [["S"]], + "psychedelics": null, + "psyche": [["M"]], + "psyche's": null, + "Psyche": [["M"]], + "Psyche's": null, + "psychiatric": null, + "psychiatrist": [["S", "M"]], + "psychiatrists": null, + "psychiatrist's": null, + "psychiatry": [["M", "S"]], + "psychiatry's": null, + "psychiatries": null, + "psychical": [["Y"]], + "psychically": null, + "psychic": [["M", "S"]], + "psychic's": null, + "psychics": null, + "psychoacoustic": [["S"]], + "psychoacoustics": [["M"]], + "psychoacoustics's": null, + "psychoactive": null, + "psychoanalysis": [["M"]], + "psychoanalysis's": null, + "psychoanalyst": [["S"]], + "psychoanalysts": null, + "psychoanalytic": null, + "psychoanalytical": null, + "psychoanalyze": [["S", "D", "G"]], + "psychoanalyzes": null, + "psychoanalyzed": null, + "psychoanalyzing": null, + "psychobabble": [["S"]], + "psychobabbles": null, + "psychobiology": [["M"]], + "psychobiology's": null, + "psychocultural": null, + "psychodrama": [["M", "S"]], + "psychodrama's": null, + "psychodramas": null, + "psychogenic": null, + "psychokinesis": [["M"]], + "psychokinesis's": null, + "psycholinguistic": [["S"]], + "psycholinguistics": [["M"]], + "psycholinguistics's": null, + "psycholinguists": null, + "psychological": [["Y"]], + "psychologically": null, + "psychologist": [["M", "S"]], + "psychologist's": null, + "psychologists": null, + "psychology": [["M", "S"]], + "psychology's": null, + "psychologies": null, + "psychometric": [["S"]], + "psychometrics": [["M"]], + "psychometrics's": null, + "psychometry": [["M"]], + "psychometry's": null, + "psychoneuroses": null, + "psychoneurosis": [["M"]], + "psychoneurosis's": null, + "psychopathic": [["S"]], + "psychopathics": null, + "psychopath": [["M"]], + "psychopath's": null, + "psychopathology": [["M"]], + "psychopathology's": null, + "psychopaths": null, + "psychopathy": [["S", "M"]], + "psychopathies": null, + "psychopathy's": null, + "psychophysical": [["Y"]], + "psychophysically": null, + "psychophysic": [["S"]], + "psychophysics": [["M"]], + "psychophysics's": null, + "psychophysiology": [["M"]], + "psychophysiology's": null, + "psychosis": [["M"]], + "psychosis's": null, + "psycho": [["S", "M"]], + "psychos": [["S"]], + "psycho's": null, + "psychosocial": [["Y"]], + "psychosocially": null, + "psychosomatic": [["S"]], + "psychosomatics": [["M"]], + "psychosomatics's": null, + "psychoses": null, + "psychotherapeutic": [["S"]], + "psychotherapeutics": null, + "psychotherapist": [["M", "S"]], + "psychotherapist's": null, + "psychotherapists": null, + "psychotherapy": [["S", "M"]], + "psychotherapies": null, + "psychotherapy's": null, + "psychotically": null, + "psychotic": [["S"]], + "psychotics": null, + "psychotropic": [["S"]], + "psychotropics": null, + "psychs": null, + "psych": [["S", "D", "G"]], + "psyches": null, + "psyched": null, + "psyching": null, + "PT": null, + "PTA": null, + "Ptah": [["M"]], + "Ptah's": null, + "ptarmigan": [["M", "S"]], + "ptarmigan's": null, + "ptarmigans": null, + "pt": [["C"]], + "dept": null, + "pterodactyl": [["S", "M"]], + "pterodactyls": null, + "pterodactyl's": null, + "Pt": [["M"]], + "Pt's": null, + "PTO": null, + "Ptolemaic": null, + "Ptolemaists": null, + "Ptolemy": [["M", "S"]], + "Ptolemy's": null, + "Ptolemies": null, + "ptomaine": [["M", "S"]], + "ptomaine's": null, + "ptomaines": null, + "Pu": null, + "pubbed": null, + "pubbing": null, + "pubertal": null, + "puberty": [["M", "S"]], + "puberty's": null, + "puberties": null, + "pubes": null, + "pubescence": [["S"]], + "pubescences": null, + "pubescent": null, + "pubic": null, + "pubis": [["M"]], + "pubis's": null, + "publican": [["A", "M", "S"]], + "republican": null, + "republican's": null, + "republicans": null, + "publican's": null, + "publicans": null, + "publication": [["A", "M", "S"]], + "republication": null, + "republication's": null, + "republications": null, + "publication's": null, + "publications": null, + "publicist": [["S", "M"]], + "publicists": null, + "publicist's": null, + "publicity": [["S", "M"]], + "publicities": null, + "publicity's": null, + "publicized": [["U"]], + "unpublicized": null, + "publicize": [["S", "D", "G"]], + "publicizes": null, + "publicizing": null, + "publicness": [["M"]], + "publicness's": null, + "publics": [["A"]], + "republics": null, + "public": [["Y", "S", "P"]], + "publicly": null, + "publishable": [["U"]], + "unpublishable": null, + "published": [["U", "A"]], + "unpublished": null, + "republished": null, + "publisher": [["A", "S", "M"]], + "republisher": null, + "republishers": null, + "republisher's": null, + "publishers": null, + "publisher's": null, + "publishes": [["A"]], + "republishes": null, + "publishing": [["M"]], + "publishing's": null, + "publish": [["J", "D", "R", "S", "B", "Z", "G"]], + "publishings": null, + "pub": [["M", "S"]], + "pub's": null, + "pubs": null, + "Puccini": [["M"]], + "Puccini's": null, + "puce": [["S", "M"]], + "puces": null, + "puce's": null, + "pucker": [["D", "G"]], + "puckered": null, + "puckering": null, + "Puckett": [["M"]], + "Puckett's": null, + "puck": [["G", "Z", "S", "D", "R", "M"]], + "pucking": null, + "puckers": null, + "pucks": null, + "pucked": null, + "puck's": null, + "puckishness": [["S"]], + "puckishnesses": null, + "puckish": [["Y", "P"]], + "puckishly": null, + "Puck": [["M"]], + "Puck's": null, + "pudding": [["M", "S"]], + "pudding's": null, + "puddings": null, + "puddle": [["J", "M", "G", "R", "S", "D"]], + "puddlings": null, + "puddle's": null, + "puddling": [["M"]], + "puddler": [["M"]], + "puddles": null, + "puddled": null, + "puddler's": null, + "puddling's": null, + "puddly": null, + "pudenda": null, + "pudendum": [["M"]], + "pudendum's": null, + "pudginess": [["S", "M"]], + "pudginesses": null, + "pudginess's": null, + "pudgy": [["P", "R", "T"]], + "pudgier": null, + "pudgiest": null, + "Puebla": [["M"]], + "Puebla's": null, + "Pueblo": [["M", "S"]], + "Pueblo's": null, + "Pueblos": null, + "pueblo": [["S", "M"]], + "pueblos": null, + "pueblo's": null, + "puerile": [["Y"]], + "puerilely": null, + "puerility": [["S", "M"]], + "puerilities": null, + "puerility's": null, + "puerperal": null, + "puers": null, + "Puerto": [["M"]], + "Puerto's": null, + "puffball": [["S", "M"]], + "puffballs": null, + "puffball's": null, + "puffer": [["M"]], + "puffer's": null, + "puffery": [["M"]], + "puffery's": null, + "puffiness": [["S"]], + "puffinesses": null, + "puffin": [["S", "M"]], + "puffins": null, + "puffin's": null, + "Puff": [["M"]], + "Puff's": null, + "puff": [["S", "G", "Z", "D", "R", "M"]], + "puffs": null, + "puffing": null, + "puffers": null, + "puffed": null, + "puff's": null, + "puffy": [["P", "R", "T"]], + "puffier": null, + "puffiest": null, + "Puget": [["M"]], + "Puget's": null, + "pugged": null, + "pugging": null, + "Pugh": [["M"]], + "Pugh's": null, + "pugilism": [["S", "M"]], + "pugilisms": null, + "pugilism's": null, + "pugilistic": null, + "pugilist": [["S"]], + "pugilists": null, + "pug": [["M", "S"]], + "pug's": null, + "pugs": null, + "pugnaciousness": [["M", "S"]], + "pugnaciousness's": null, + "pugnaciousnesses": null, + "pugnacious": [["Y", "P"]], + "pugnaciously": null, + "pugnacity": [["S", "M"]], + "pugnacities": null, + "pugnacity's": null, + "puissant": [["Y"]], + "puissantly": null, + "puke": [["G", "D", "S"]], + "puking": null, + "puked": null, + "pukes": null, + "pukka": null, + "Pulaski": [["S", "M"]], + "Pulaskis": null, + "Pulaski's": null, + "pulchritude": [["S", "M"]], + "pulchritudes": null, + "pulchritude's": null, + "pulchritudinous": [["M"]], + "pulchritudinous's": null, + "pule": [["G", "D", "S"]], + "puling": null, + "puled": null, + "pules": null, + "Pulitzer": [["S", "M"]], + "Pulitzers": null, + "Pulitzer's": null, + "pullback": [["S"]], + "pullbacks": null, + "pull": [["D", "R", "G", "Z", "S", "J"]], + "pulled": null, + "puller": null, + "pulling": null, + "pullers": null, + "pulls": null, + "pullings": null, + "pullet": [["S", "M"]], + "pullets": null, + "pullet's": null, + "pulley": [["S", "M"]], + "pulleys": null, + "pulley's": null, + "Pullman": [["M", "S"]], + "Pullman's": null, + "Pullmans": null, + "pullout": [["S"]], + "pullouts": null, + "pullover": [["S", "M"]], + "pullovers": null, + "pullover's": null, + "pulmonary": null, + "pulpiness": [["S"]], + "pulpinesses": null, + "pulpit": [["M", "S"]], + "pulpit's": null, + "pulpits": null, + "pulp": [["M", "D", "R", "G", "S"]], + "pulp's": null, + "pulped": null, + "pulper": null, + "pulping": null, + "pulps": null, + "pulpwood": [["M", "S"]], + "pulpwood's": null, + "pulpwoods": null, + "pulpy": [["P", "T", "R"]], + "pulpiest": null, + "pulpier": null, + "pulsar": [["M", "S"]], + "pulsar's": null, + "pulsars": null, + "pulsate": [["N", "G", "S", "D", "X"]], + "pulsation": [["M"]], + "pulsating": null, + "pulsates": null, + "pulsated": null, + "pulsations": null, + "pulsation's": null, + "pulse": [["A", "D", "S", "G"]], + "repulse": [["V", "N", "X"]], + "repulsed": null, + "repulses": null, + "repulsing": null, + "pulsed": null, + "pulses": null, + "pulsing": null, + "pulser": null, + "pulse's": null, + "pulverable": null, + "pulverization": [["M", "S"]], + "pulverization's": null, + "pulverizations": null, + "pulverized": [["U"]], + "unpulverized": null, + "pulverize": [["G", "Z", "S", "R", "D"]], + "pulverizing": null, + "pulverizers": null, + "pulverizes": [["U", "A"]], + "pulverizer": [["M"]], + "pulverizer's": null, + "unpulverizes": null, + "repulverizes": null, + "puma": [["S", "M"]], + "pumas": null, + "puma's": null, + "pumice": [["S", "D", "M", "G"]], + "pumices": null, + "pumiced": null, + "pumice's": null, + "pumicing": null, + "pummel": [["S", "D", "G"]], + "pummels": null, + "pummeled": null, + "pummeling": null, + "pumpernickel": [["S", "M"]], + "pumpernickels": null, + "pumpernickel's": null, + "pump": [["G", "Z", "S", "M", "D", "R"]], + "pumping": [["M"]], + "pumpers": null, + "pumps": null, + "pump's": null, + "pumped": null, + "pumper": null, + "pumping's": null, + "pumpkin": [["M", "S"]], + "pumpkin's": null, + "pumpkins": null, + "punchbowl": [["M"]], + "punchbowl's": null, + "punched": [["U"]], + "unpunched": null, + "puncheon": [["M", "S"]], + "puncheon's": null, + "puncheons": null, + "puncher": [["M"]], + "puncher's": null, + "punch": [["G", "R", "S", "D", "J", "B", "Z"]], + "punching": null, + "punches": null, + "punchings": null, + "punchable": null, + "punchers": null, + "punchline": [["S"]], + "punchlines": null, + "Punch": [["M"]], + "Punch's": null, + "punchy": [["R", "T"]], + "punchier": null, + "punchiest": null, + "punctilio": [["S", "M"]], + "punctilios": null, + "punctilio's": null, + "punctiliousness": [["S", "M"]], + "punctiliousnesses": null, + "punctiliousness's": null, + "punctilious": [["P", "Y"]], + "punctiliously": null, + "punctualities": null, + "punctuality": [["U", "M"]], + "unpunctuality": null, + "unpunctuality's": null, + "punctuality's": null, + "punctualness": [["M"]], + "punctualness's": null, + "punctual": [["P", "Y"]], + "punctually": null, + "punctuate": [["S", "D", "X", "N", "G"]], + "punctuates": null, + "punctuated": null, + "punctuations": null, + "punctuation": [["M"]], + "punctuating": null, + "punctuational": null, + "punctuation's": null, + "puncture": [["S", "D", "M", "G"]], + "punctures": null, + "punctured": null, + "puncture's": null, + "puncturing": null, + "punditry": [["S"]], + "punditries": null, + "pundit": [["S", "M"]], + "pundits": null, + "pundit's": null, + "pungency": [["M", "S"]], + "pungency's": null, + "pungencies": null, + "pungent": [["Y"]], + "pungently": null, + "Punic": null, + "puniness": [["M", "S"]], + "puniness's": null, + "puninesses": null, + "punished": [["U"]], + "unpunished": null, + "punisher": [["M"]], + "punisher's": null, + "punishment": [["M", "S"]], + "punishment's": null, + "punishments": null, + "punish": [["R", "S", "D", "G", "B", "L"]], + "punishes": null, + "punishing": null, + "punishable": null, + "punitiveness": [["M"]], + "punitiveness's": null, + "punitive": [["Y", "P"]], + "punitively": null, + "Punjabi": [["M"]], + "Punjabi's": null, + "Punjab": [["M"]], + "Punjab's": null, + "punk": [["T", "R", "M", "S"]], + "punkest": null, + "punker": null, + "punk's": null, + "punks": null, + "punky": [["P", "R", "S"]], + "punkiness": null, + "punkier": null, + "punkies": null, + "pun": [["M", "S"]], + "pun's": null, + "puns": null, + "punned": null, + "punning": null, + "punster": [["S", "M"]], + "punsters": null, + "punster's": null, + "punter": [["M"]], + "punter's": null, + "punt": [["G", "Z", "M", "D", "R", "S"]], + "punting": null, + "punters": null, + "punt's": null, + "punted": null, + "punts": null, + "puny": [["P", "T", "R"]], + "puniest": null, + "punier": null, + "pupae": null, + "pupal": null, + "pupa": [["M"]], + "pupa's": null, + "pupate": [["N", "G", "S", "D"]], + "pupation": null, + "pupating": null, + "pupates": null, + "pupated": null, + "pupillage": [["M"]], + "pupillage's": null, + "pupil": [["S", "M"]], + "pupils": null, + "pupil's": null, + "pup": [["M", "S"]], + "pup's": null, + "pups": null, + "pupped": null, + "puppeteer": [["S", "M"]], + "puppeteers": null, + "puppeteer's": null, + "puppetry": [["M", "S"]], + "puppetry's": null, + "puppetries": null, + "puppet": [["S", "M"]], + "puppets": null, + "puppet's": null, + "pupping": null, + "puppy": [["G", "S", "D", "M"]], + "puppying": null, + "puppies": null, + "puppied": null, + "puppy's": null, + "puppyish": null, + "purblind": null, + "Purcell": [["M"]], + "Purcell's": null, + "purchasable": null, + "purchase": [["G", "A", "S", "D"]], + "purchasing": null, + "repurchasing": null, + "repurchase": null, + "repurchases": null, + "repurchased": null, + "purchases": null, + "purchased": null, + "purchaser": [["M", "S"]], + "purchaser's": null, + "purchasers": null, + "purdah": [["M"]], + "purdah's": null, + "purdahs": null, + "Purdue": [["M"]], + "Purdue's": null, + "purebred": [["S"]], + "purebreds": null, + "puree": [["D", "S", "M"]], + "pureed": null, + "purees": null, + "puree's": null, + "pureeing": null, + "pureness": [["M", "S"]], + "pureness's": null, + "purenesses": null, + "pure": [["P", "Y", "T", "G", "D", "R"]], + "purely": null, + "purest": null, + "puring": null, + "pured": null, + "purer": null, + "purgation": [["M"]], + "purgation's": null, + "purgative": [["M", "S"]], + "purgative's": null, + "purgatives": null, + "purgatorial": null, + "purgatory": [["S", "M"]], + "purgatories": null, + "purgatory's": null, + "purge": [["G", "Z", "D", "S", "R"]], + "purging": null, + "purgers": null, + "purged": null, + "purges": null, + "purger": [["M"]], + "purger's": null, + "purify": [["G", "S", "R", "D", "N", "X", "Z"]], + "purifying": null, + "purifies": null, + "purifier": null, + "purified": null, + "purification": null, + "purifications": null, + "purifiers": null, + "Purim": [["S", "M"]], + "Purims": null, + "Purim's": null, + "Purina": [["M"]], + "Purina's": null, + "purine": [["S", "M"]], + "purines": null, + "purine's": null, + "purism": [["M", "S"]], + "purism's": null, + "purisms": null, + "puristic": null, + "purist": [["M", "S"]], + "purist's": null, + "purists": null, + "puritanic": null, + "puritanical": [["Y"]], + "puritanically": null, + "Puritanism": [["M", "S"]], + "Puritanism's": null, + "Puritanisms": null, + "puritanism": [["S"]], + "puritanisms": null, + "puritan": [["S", "M"]], + "puritans": null, + "puritan's": null, + "Puritan": [["S", "M"]], + "Puritans": null, + "Puritan's": null, + "purity": [["S", "M"]], + "purities": null, + "purity's": null, + "purlieu": [["S", "M"]], + "purlieus": null, + "purlieu's": null, + "purl": [["M", "D", "G", "S"]], + "purl's": null, + "purled": null, + "purling": null, + "purls": null, + "purloin": [["D", "R", "G", "S"]], + "purloined": null, + "purloiner": [["M"]], + "purloining": null, + "purloins": null, + "purloiner's": null, + "purple": [["M", "T", "G", "R", "S", "D"]], + "purple's": null, + "purplest": null, + "purpling": null, + "purpler": null, + "purples": null, + "purpled": null, + "purplish": null, + "purport": [["D", "R", "S", "Z", "G"]], + "purported": [["Y"]], + "purporter": null, + "purports": null, + "purporters": null, + "purporting": null, + "purportedly": null, + "purposefulness": [["S"]], + "purposefulnesses": null, + "purposeful": [["Y", "P"]], + "purposefully": null, + "purposelessness": [["M"]], + "purposelessness's": null, + "purposeless": [["P", "Y"]], + "purposelessly": null, + "purpose": [["S", "D", "V", "G", "Y", "M"]], + "purposes": null, + "purposed": null, + "purposive": [["Y", "P"]], + "purposing": null, + "purposely": null, + "purpose's": null, + "purposiveness": [["M"]], + "purposiveness's": null, + "purposively": null, + "purr": [["D", "S", "G"]], + "purred": null, + "purrs": null, + "purring": [["Y"]], + "purringly": null, + "purse": [["D", "S", "R", "G", "Z", "M"]], + "pursed": null, + "purses": null, + "purser": [["M"]], + "pursing": null, + "pursers": null, + "purse's": null, + "purser's": null, + "pursuance": [["M", "S"]], + "pursuance's": null, + "pursuances": null, + "pursuant": null, + "pursuer": [["M"]], + "pursuer's": null, + "pursue": [["Z", "G", "R", "S", "D"]], + "pursuers": null, + "pursuing": null, + "pursues": null, + "pursued": null, + "pursuit": [["M", "S"]], + "pursuit's": null, + "pursuits": null, + "purulence": [["M", "S"]], + "purulence's": null, + "purulences": null, + "purulent": null, + "Purus": null, + "purveyance": [["M", "S"]], + "purveyance's": null, + "purveyances": null, + "purvey": [["D", "G", "S"]], + "purveyed": null, + "purveying": null, + "purveys": null, + "purveyor": [["M", "S"]], + "purveyor's": null, + "purveyors": null, + "purview": [["S", "M"]], + "purviews": null, + "purview's": null, + "Pusan": [["M"]], + "Pusan's": null, + "Pusey": [["M"]], + "Pusey's": null, + "pushbutton": [["S"]], + "pushbuttons": null, + "pushcart": [["S", "M"]], + "pushcarts": null, + "pushcart's": null, + "pushchair": [["S", "M"]], + "pushchairs": null, + "pushchair's": null, + "pushdown": null, + "push": [["D", "S", "R", "B", "G", "Z"]], + "pushed": null, + "pushes": null, + "pusher": [["M"]], + "pushable": null, + "pushing": null, + "pushers": null, + "pusher's": null, + "pushily": null, + "pushiness": [["M", "S"]], + "pushiness's": null, + "pushinesses": null, + "Pushkin": [["M"]], + "Pushkin's": null, + "pushover": [["S", "M"]], + "pushovers": null, + "pushover's": null, + "Pushtu": [["M"]], + "Pushtu's": null, + "pushy": [["P", "R", "T"]], + "pushier": null, + "pushiest": null, + "pusillanimity": [["M", "S"]], + "pusillanimity's": null, + "pusillanimities": null, + "pusillanimous": [["Y"]], + "pusillanimously": null, + "pus": [["S", "M"]], + "puses": null, + "pus's": null, + "puss": [["S"]], + "pusses": null, + "pussycat": [["S"]], + "pussycats": null, + "pussyfoot": [["D", "S", "G"]], + "pussyfooted": null, + "pussyfoots": null, + "pussyfooting": null, + "pussy": [["T", "R", "S", "M"]], + "pussiest": null, + "pussier": null, + "pussies": null, + "pussy's": null, + "pustular": null, + "pustule": [["M", "S"]], + "pustule's": null, + "pustules": null, + "putative": [["Y"]], + "putatively": null, + "Putin": [["M"]], + "Putin's": null, + "put": [["I", "S"]], + "inputs": null, + "puts": null, + "Putnam": [["M"]], + "Putnam's": null, + "Putnem": [["M"]], + "Putnem's": null, + "putout": [["S"]], + "putouts": null, + "putrefaction": [["S", "M"]], + "putrefactions": null, + "putrefaction's": null, + "putrefactive": null, + "putrefy": [["D", "S", "G"]], + "putrefied": null, + "putrefies": null, + "putrefying": null, + "putrescence": [["M", "S"]], + "putrescence's": null, + "putrescences": null, + "putrescent": null, + "putridity": [["M"]], + "putridity's": null, + "putridness": [["M"]], + "putridness's": null, + "putrid": [["Y", "P"]], + "putridly": null, + "putsch": [["S"]], + "putsches": null, + "putted": [["I"]], + "inputted": null, + "puttee": [["M", "S"]], + "puttee's": null, + "puttees": null, + "putter": [["R", "D", "M", "G", "Z"]], + "putterer": null, + "puttered": null, + "putter's": null, + "puttering": null, + "putterers": null, + "putting": [["I"]], + "inputting": null, + "putt": [["S", "G", "Z", "M", "D", "R"]], + "putts": null, + "putters": null, + "putt's": null, + "puttying": [["M"]], + "puttying's": null, + "putty": [["S", "D", "M", "G"]], + "putties": null, + "puttied": null, + "putty's": null, + "puzzle": [["J", "R", "S", "D", "Z", "L", "G"]], + "puzzlings": null, + "puzzler": [["M"]], + "puzzles": null, + "puzzled": null, + "puzzlers": null, + "puzzlement": [["M", "S"]], + "puzzling": null, + "puzzlement's": null, + "puzzlements": null, + "puzzler's": null, + "PVC": null, + "pvt": null, + "Pvt": [["M"]], + "Pvt's": null, + "PW": null, + "PX": null, + "p": [["X", "T", "G", "J"]], + "pings": null, + "Pygmalion": [["M"]], + "Pygmalion's": null, + "pygmy": [["S", "M"]], + "pygmies": null, + "pygmy's": null, + "Pygmy": [["S", "M"]], + "Pygmies": null, + "Pygmy's": null, + "Pyhrric": [["M"]], + "Pyhrric's": null, + "pyknotic": null, + "Pyle": [["M"]], + "Pyle's": null, + "pylon": [["S", "M"]], + "pylons": null, + "pylon's": null, + "pylori": null, + "pyloric": null, + "pylorus": [["M"]], + "pylorus's": null, + "Pym": [["M"]], + "Pym's": null, + "Pynchon": [["M"]], + "Pynchon's": null, + "Pyongyang": [["M"]], + "Pyongyang's": null, + "pyorrhea": [["S", "M"]], + "pyorrheas": null, + "pyorrhea's": null, + "Pyotr": [["M"]], + "Pyotr's": null, + "pyramidal": [["Y"]], + "pyramidally": null, + "pyramid": [["G", "M", "D", "S"]], + "pyramiding": null, + "pyramid's": null, + "pyramided": null, + "pyramids": null, + "pyre": [["M", "S"]], + "pyre's": null, + "pyres": null, + "Pyrenees": null, + "Pyrex": [["S", "M"]], + "Pyrexes": null, + "Pyrex's": null, + "pyridine": [["M"]], + "pyridine's": null, + "pyrimidine": [["S", "M"]], + "pyrimidines": null, + "pyrimidine's": null, + "pyrite": [["M", "S"]], + "pyrite's": null, + "pyrites": null, + "pyroelectric": null, + "pyroelectricity": [["S", "M"]], + "pyroelectricities": null, + "pyroelectricity's": null, + "pyrolysis": [["M"]], + "pyrolysis's": null, + "pyrolyze": [["R", "S", "M"]], + "pyrolyzer": null, + "pyrolyzes": null, + "pyrolyze's": null, + "pyromaniac": [["S", "M"]], + "pyromaniacs": null, + "pyromaniac's": null, + "pyromania": [["M", "S"]], + "pyromania's": null, + "pyromanias": null, + "pyrometer": [["M", "S"]], + "pyrometer's": null, + "pyrometers": null, + "pyrometry": [["M"]], + "pyrometry's": null, + "pyrophosphate": [["M"]], + "pyrophosphate's": null, + "pyrotechnical": null, + "pyrotechnic": [["S"]], + "pyrotechnics": [["M"]], + "pyrotechnics's": null, + "pyroxene": [["M"]], + "pyroxene's": null, + "pyroxenite": [["M"]], + "pyroxenite's": null, + "Pyrrhic": null, + "Pythagoras": [["M"]], + "Pythagoras's": null, + "Pythagorean": [["S"]], + "Pythagoreans": null, + "Pythias": null, + "Python": [["M"]], + "Python's": null, + "python": [["M", "S"]], + "python's": null, + "pythons": null, + "pyx": [["M", "D", "S", "G"]], + "pyx's": null, + "pyxed": null, + "pyxes": null, + "pyxing": null, + "q": null, + "Q": null, + "QA": null, + "Qaddafi": [["M"]], + "Qaddafi's": null, + "Qantas": [["M"]], + "Qantas's": null, + "Qatar": [["M"]], + "Qatar's": null, + "QB": null, + "QC": null, + "QED": null, + "Qingdao": null, + "Qiqihar": [["M"]], + "Qiqihar's": null, + "QM": null, + "Qom": [["M"]], + "Qom's": null, + "qr": null, + "q's": null, + "Q's": null, + "qt": null, + "qty": null, + "qua": null, + "Quaalude": [["M"]], + "Quaalude's": null, + "quackery": [["M", "S"]], + "quackery's": null, + "quackeries": null, + "quackish": null, + "quack": [["S", "D", "G"]], + "quacks": null, + "quacked": null, + "quacking": null, + "quadded": null, + "quadding": null, + "quadrangle": [["M", "S"]], + "quadrangle's": null, + "quadrangles": null, + "quadrangular": [["M"]], + "quadrangular's": null, + "quadrant": [["M", "S"]], + "quadrant's": null, + "quadrants": null, + "quadraphonic": [["S"]], + "quadraphonics": null, + "quadrapole": null, + "quadratical": [["Y"]], + "quadratically": null, + "quadratic": [["S", "M"]], + "quadratics": null, + "quadratic's": null, + "quadrature": [["M", "S"]], + "quadrature's": null, + "quadratures": null, + "quadrennial": [["S", "Y"]], + "quadrennials": null, + "quadrennially": null, + "quadrennium": [["M", "S"]], + "quadrennium's": null, + "quadrenniums": null, + "quadric": null, + "quadriceps": [["S", "M"]], + "quadricepses": null, + "quadriceps's": null, + "quadrilateral": [["S"]], + "quadrilaterals": null, + "quadrille": [["X", "M", "G", "N", "S", "D"]], + "quadrillions": null, + "quadrille's": null, + "quadrilling": null, + "quadrillion": [["M", "H"]], + "quadrilles": null, + "quadrilled": null, + "quadrillion's": null, + "quadrillionth": null, + "quadripartite": [["N", "Y"]], + "quadripartition": null, + "quadripartitely": null, + "quadriplegia": [["S", "M"]], + "quadriplegias": null, + "quadriplegia's": null, + "quadriplegic": [["S", "M"]], + "quadriplegics": null, + "quadriplegic's": null, + "quadrivia": null, + "quadrivium": [["M"]], + "quadrivium's": null, + "quadrupedal": null, + "quadruped": [["M", "S"]], + "quadruped's": null, + "quadrupeds": null, + "quadruple": [["G", "S", "D"]], + "quadrupling": null, + "quadruples": null, + "quadrupled": null, + "quadruplet": [["S", "M"]], + "quadruplets": null, + "quadruplet's": null, + "quadruplicate": [["G", "D", "S"]], + "quadruplicating": null, + "quadruplicated": null, + "quadruplicates": null, + "quadruply": [["N", "X"]], + "quadruplication": null, + "quadruplications": null, + "quadrupole": null, + "quad": [["S", "M"]], + "quads": null, + "quad's": null, + "quadword": [["M", "S"]], + "quadword's": null, + "quadwords": null, + "quaffer": [["M"]], + "quaffer's": null, + "quaff": [["S", "R", "D", "G"]], + "quaffs": null, + "quaffed": null, + "quaffing": null, + "quagmire": [["D", "S", "M", "G"]], + "quagmired": null, + "quagmires": null, + "quagmire's": null, + "quagmiring": null, + "quahog": [["M", "S"]], + "quahog's": null, + "quahogs": null, + "quail": [["G", "S", "D", "M"]], + "quailing": null, + "quails": null, + "quailed": null, + "quail's": null, + "quaintness": [["M", "S"]], + "quaintness's": null, + "quaintnesses": null, + "quaint": [["P", "T", "Y", "R"]], + "quaintest": null, + "quaintly": null, + "quainter": null, + "quake": [["G", "Z", "D", "S", "R"]], + "quaking": null, + "quakers": null, + "quaked": null, + "quakes": null, + "quaker": null, + "Quakeress": [["M"]], + "Quakeress's": null, + "Quakerism": [["S"]], + "Quakerisms": null, + "Quaker": [["S", "M"]], + "Quakers": null, + "Quaker's": null, + "quaky": [["R", "T"]], + "quakier": null, + "quakiest": null, + "qualification": [["M", "E"]], + "qualification's": null, + "disqualification's": null, + "disqualification": null, + "qualified": [["U", "Y"]], + "unqualified": null, + "unqualifiedly": null, + "qualifiedly": null, + "qualifier": [["S", "M"]], + "qualifiers": null, + "qualifier's": null, + "qualify": [["E", "G", "X", "S", "D", "N"]], + "disqualify": null, + "disqualifying": null, + "disqualifications": null, + "disqualifies": null, + "disqualified": null, + "qualifying": null, + "qualifications": null, + "qualifies": null, + "qualitative": [["Y"]], + "qualitatively": null, + "quality": [["M", "S"]], + "quality's": null, + "qualities": null, + "qualmish": null, + "qualm": [["S", "M"]], + "qualms": null, + "qualm's": null, + "quandary": [["M", "S"]], + "quandary's": null, + "quandaries": null, + "quangos": null, + "quanta": [["M"]], + "quanta's": null, + "Quantico": [["M"]], + "Quantico's": null, + "quantifiable": [["U"]], + "unquantifiable": null, + "quantified": [["U"]], + "unquantified": null, + "quantifier": [["M"]], + "quantifier's": null, + "quantify": [["G", "N", "S", "R", "D", "Z", "X"]], + "quantifying": null, + "quantification": null, + "quantifies": null, + "quantifiers": null, + "quantifications": null, + "quantile": [["S"]], + "quantiles": null, + "quantitativeness": [["M"]], + "quantitativeness's": null, + "quantitative": [["P", "Y"]], + "quantitatively": null, + "quantity": [["M", "S"]], + "quantity's": null, + "quantities": null, + "quantization": [["M", "S"]], + "quantization's": null, + "quantizations": null, + "quantizer": [["M"]], + "quantizer's": null, + "quantize": [["Z", "G", "D", "R", "S"]], + "quantizers": null, + "quantizing": null, + "quantized": null, + "quantizes": null, + "quantum": [["M"]], + "quantum's": null, + "quarantine": [["D", "S", "G", "M"]], + "quarantined": null, + "quarantines": null, + "quarantining": null, + "quarantine's": null, + "quark": [["S", "M"]], + "quarks": null, + "quark's": null, + "quarreler": [["M"]], + "quarreler's": null, + "quarrellings": null, + "quarrelsomeness": [["M", "S"]], + "quarrelsomeness's": null, + "quarrelsomenesses": null, + "quarrelsome": [["P", "Y"]], + "quarrelsomely": null, + "quarrel": [["S", "Z", "D", "R", "M", "G"]], + "quarrels": null, + "quarrelers": null, + "quarreled": null, + "quarrel's": null, + "quarreling": null, + "quarrier": [["M"]], + "quarrier's": null, + "quarryman": [["M"]], + "quarryman's": null, + "quarrymen": null, + "quarry": [["R", "S", "D", "G", "M"]], + "quarries": null, + "quarried": null, + "quarrying": null, + "quarry's": null, + "quarterback": [["S", "G", "M", "D"]], + "quarterbacks": null, + "quarterbacking": null, + "quarterback's": null, + "quarterbacked": null, + "quarterdeck": [["M", "S"]], + "quarterdeck's": null, + "quarterdecks": null, + "quarterer": [["M"]], + "quarterer's": null, + "quarterfinal": [["M", "S"]], + "quarterfinal's": null, + "quarterfinals": null, + "quartering": [["M"]], + "quartering's": null, + "quarterly": [["S"]], + "quarterlies": null, + "quartermaster": [["M", "S"]], + "quartermaster's": null, + "quartermasters": null, + "quarter": [["M", "D", "R", "Y", "G"]], + "quarter's": null, + "quartered": null, + "quarterstaff": [["M"]], + "quarterstaff's": null, + "quarterstaves": null, + "quartet": [["S", "M"]], + "quartets": null, + "quartet's": null, + "quartic": [["S"]], + "quartics": null, + "quartile": [["S", "M"]], + "quartiles": null, + "quartile's": null, + "quarto": [["S", "M"]], + "quartos": null, + "quarto's": null, + "quart": [["R", "M", "S", "Z"]], + "quart's": null, + "quarts": null, + "quarters": null, + "quartzite": [["M"]], + "quartzite's": null, + "quartz": [["S", "M"]], + "quartzes": null, + "quartz's": null, + "quasar": [["S", "M"]], + "quasars": null, + "quasar's": null, + "quash": [["G", "S", "D"]], + "quashing": null, + "quashes": null, + "quashed": null, + "quasi": null, + "quasilinear": null, + "Quasimodo": [["M"]], + "Quasimodo's": null, + "Quaternary": null, + "quaternary": [["S"]], + "quaternaries": null, + "quaternion": [["S", "M"]], + "quaternions": null, + "quaternion's": null, + "quatrain": [["S", "M"]], + "quatrains": null, + "quatrain's": null, + "quaver": [["G", "D", "S"]], + "quavering": [["Y"]], + "quavered": null, + "quavers": null, + "quaveringly": null, + "quavery": null, + "Quayle": [["M"]], + "Quayle's": null, + "quayside": [["M"]], + "quayside's": null, + "quay": [["S", "M"]], + "quays": null, + "quay's": null, + "queasily": null, + "queasiness": [["S", "M"]], + "queasinesses": null, + "queasiness's": null, + "queasy": [["T", "R", "P"]], + "queasiest": null, + "queasier": null, + "Quebec": [["M"]], + "Quebec's": null, + "Quechua": [["M"]], + "Quechua's": null, + "Queenie": [["M"]], + "Queenie's": null, + "queenly": [["R", "T"]], + "queenlier": null, + "queenliest": null, + "queen": [["S", "G", "M", "D", "Y"]], + "queens": null, + "queening": null, + "queen's": null, + "queened": null, + "Queensland": [["M"]], + "Queensland's": null, + "Queen": [["S", "M"]], + "Queens": null, + "Queen's": null, + "queerness": [["S"]], + "queernesses": null, + "queer": [["S", "T", "G", "R", "D", "Y", "P"]], + "queers": null, + "queerest": null, + "queering": null, + "queerer": null, + "queered": null, + "queerly": null, + "queller": [["M"]], + "queller's": null, + "quell": [["S", "R", "D", "G"]], + "quells": null, + "quelled": null, + "quelling": null, + "Que": [["M"]], + "Que's": null, + "quenchable": [["U"]], + "unquenchable": null, + "quenched": [["U"]], + "unquenched": null, + "quencher": [["M"]], + "quencher's": null, + "quench": [["G", "Z", "R", "S", "D", "B"]], + "quenching": null, + "quenchers": null, + "quenches": null, + "quenchless": null, + "Quentin": [["M"]], + "Quentin's": null, + "Quent": [["M"]], + "Quent's": null, + "Querida": [["M"]], + "Querida's": null, + "quern": [["M"]], + "quern's": null, + "querulousness": [["S"]], + "querulousnesses": null, + "querulous": [["Y", "P"]], + "querulously": null, + "query": [["M", "G", "R", "S", "D"]], + "query's": null, + "querying": null, + "querier": null, + "queries": null, + "queried": null, + "quested": [["A"]], + "requested": [["U"]], + "quester": [["A", "S"]], + "requester": null, + "requesters": null, + "questers": null, + "quester's": null, + "quest": [["F", "S", "I", "M"]], + "quests": [["A"]], + "inquests": null, + "inquest": null, + "inquest's": null, + "quest's": null, + "questing": null, + "questionableness": [["M"]], + "questionableness's": null, + "questionable": [["P"]], + "questionably": [["U"]], + "unquestionably": null, + "questioned": [["U", "A"]], + "unquestioned": null, + "requestioned": null, + "questioner": [["M"]], + "questioner's": null, + "questioning": [["U", "Y"]], + "unquestioning": null, + "unquestioningly": null, + "questioningly": null, + "questionnaire": [["M", "S"]], + "questionnaire's": null, + "questionnaires": null, + "question": [["S", "M", "R", "D", "G", "B", "Z", "J"]], + "questions": null, + "question's": null, + "questioners": null, + "questionings": null, + "requests": null, + "Quetzalcoatl": [["M"]], + "Quetzalcoatl's": null, + "queued": [["C"]], + "dequeued": null, + "queue": [["G", "Z", "M", "D", "S", "R"]], + "queuing": [["C"]], + "queuers": null, + "queue's": null, + "queues": [["C"]], + "queuer": [["M"]], + "queuer's": null, + "dequeues": null, + "dequeuing": null, + "Quezon": [["M"]], + "Quezon's": null, + "quibble": [["G", "Z", "R", "S", "D"]], + "quibbling": null, + "quibblers": null, + "quibbler": [["M"]], + "quibbles": null, + "quibbled": null, + "quibbler's": null, + "quiche": [["S", "M"]], + "quiches": null, + "quiche's": null, + "quicken": [["R", "D", "G"]], + "quickener": null, + "quickened": null, + "quickening": null, + "quickie": [["M", "S"]], + "quickie's": null, + "quickies": null, + "quicklime": [["S", "M"]], + "quicklimes": null, + "quicklime's": null, + "quickness": [["M", "S"]], + "quickness's": null, + "quicknesses": null, + "quick": [["R", "N", "Y", "T", "X", "P", "S"]], + "quicker": null, + "quickly": null, + "quickest": null, + "quickens": null, + "quicks": null, + "quicksand": [["M", "S"]], + "quicksand's": null, + "quicksands": null, + "quicksilver": [["G", "D", "M", "S"]], + "quicksilvering": null, + "quicksilvered": null, + "quicksilver's": null, + "quicksilvers": null, + "quickstep": [["S", "M"]], + "quicksteps": null, + "quickstep's": null, + "quid": [["S", "M"]], + "quids": null, + "quid's": null, + "quiesce": [["D"]], + "quiesced": null, + "quiescence": [["M", "S"]], + "quiescence's": null, + "quiescences": null, + "quiescent": [["Y", "P"]], + "quiescently": null, + "quiescentness": null, + "quieted": [["E"]], + "disquieted": null, + "quieten": [["S", "G", "D"]], + "quietens": null, + "quietening": null, + "quietened": null, + "quieter": [["E"]], + "disquieter": null, + "quieter's": null, + "quieting": [["E"]], + "quietly": [["E"]], + "disquietly": null, + "quietness": [["M", "S"]], + "quietness's": null, + "quietnesses": null, + "quiets": [["E"]], + "disquiets": null, + "quietude": [["I", "E", "M", "S"]], + "inquietude": null, + "inquietude's": null, + "inquietudes": null, + "disquietude": null, + "disquietude's": null, + "disquietudes": null, + "quietude's": null, + "quietudes": null, + "quietus": [["M", "S"]], + "quietus's": null, + "quietuses": null, + "quiet": [["U", "T", "G", "P", "S", "D", "R", "Y"]], + "unquiet": null, + "unquieting": null, + "unquietness": null, + "unquiets": null, + "unquieted": null, + "unquieter": null, + "unquietly": null, + "quietest": null, + "Quillan": [["M"]], + "Quillan's": null, + "quill": [["G", "S", "D", "M"]], + "quilling": null, + "quills": null, + "quilled": null, + "quill's": null, + "Quill": [["M"]], + "Quill's": null, + "quilter": [["M"]], + "quilter's": null, + "quilting": [["M"]], + "quilting's": null, + "quilt": [["S", "Z", "J", "G", "R", "D", "M"]], + "quilts": null, + "quilters": null, + "quiltings": null, + "quilted": null, + "quilt's": null, + "quincentenary": [["M"]], + "quincentenary's": null, + "quince": [["S", "M"]], + "quinces": null, + "quince's": null, + "Quincey": [["M"]], + "Quincey's": null, + "quincy": [["M"]], + "quincy's": null, + "Quincy": [["M"]], + "Quincy's": null, + "quinine": [["M", "S"]], + "quinine's": null, + "quinines": null, + "Quinlan": [["M"]], + "Quinlan's": null, + "Quinn": [["M"]], + "Quinn's": null, + "quinquennial": [["Y"]], + "quinquennially": null, + "quinsy": [["S", "M"]], + "quinsies": null, + "quinsy's": null, + "Quinta": [["M"]], + "Quinta's": null, + "Quintana": [["M"]], + "Quintana's": null, + "quintessence": [["S", "M"]], + "quintessences": null, + "quintessence's": null, + "quintessential": [["Y"]], + "quintessentially": null, + "quintet": [["S", "M"]], + "quintets": null, + "quintet's": null, + "quintic": null, + "quintile": [["S", "M"]], + "quintiles": null, + "quintile's": null, + "Quintilian": [["M"]], + "Quintilian's": null, + "Quintilla": [["M"]], + "Quintilla's": null, + "quintillion": [["M", "H"]], + "quintillion's": null, + "quintillionth": [["M"]], + "quintillionth's": null, + "Quintina": [["M"]], + "Quintina's": null, + "Quintin": [["M"]], + "Quintin's": null, + "Quint": [["M"]], + "Quint's": null, + "quint": [["M", "S"]], + "quint's": null, + "quints": null, + "Quinton": [["M"]], + "Quinton's": null, + "quintuple": [["S", "D", "G"]], + "quintuples": null, + "quintupled": null, + "quintupling": null, + "quintuplet": [["M", "S"]], + "quintuplet's": null, + "quintuplets": null, + "Quintus": [["M"]], + "Quintus's": null, + "quip": [["M", "S"]], + "quip's": null, + "quips": null, + "quipped": null, + "quipper": null, + "quipping": null, + "quipster": [["S", "M"]], + "quipsters": null, + "quipster's": null, + "quired": [["A", "I"]], + "required": null, + "inquired": null, + "quire": [["M", "D", "S", "G"]], + "quire's": null, + "quires": [["A", "I"]], + "quiring": [["I", "A"]], + "requires": null, + "inquires": null, + "Quirinal": [["M"]], + "Quirinal's": null, + "requiring": null, + "quirkiness": [["S", "M"]], + "quirkinesses": null, + "quirkiness's": null, + "quirk": [["S", "G", "M", "D"]], + "quirks": null, + "quirking": null, + "quirk's": null, + "quirked": null, + "quirky": [["P", "T", "R"]], + "quirkiest": null, + "quirkier": null, + "quirt": [["S", "D", "M", "G"]], + "quirts": null, + "quirted": null, + "quirt's": null, + "quirting": null, + "Quisling": [["M"]], + "Quisling's": null, + "quisling": [["S", "M"]], + "quislings": null, + "quisling's": null, + "quitclaim": [["G", "D", "M", "S"]], + "quitclaiming": null, + "quitclaimed": null, + "quitclaim's": null, + "quitclaims": null, + "quit": [["D", "G", "S"]], + "quited": null, + "quiting": null, + "quits": null, + "quite": [["S", "A", "D", "G"]], + "quites": null, + "requites": null, + "requite": [["R", "Z"]], + "requited": [["U"]], + "requiting": null, + "Quito": [["M"]], + "Quito's": null, + "quittance": [["S", "M"]], + "quittances": null, + "quittance's": null, + "quitter": [["S", "M"]], + "quitters": null, + "quitter's": null, + "quitting": null, + "quiver": [["G", "D", "S"]], + "quivering": [["Y"]], + "quivered": null, + "quivers": null, + "quiveringly": null, + "quivery": null, + "Quixote": [["M"]], + "Quixote's": null, + "quixotic": null, + "quixotically": null, + "Quixotism": [["M"]], + "Quixotism's": null, + "quiz": [["M"]], + "quiz's": null, + "quizzed": null, + "quizzer": [["S", "M"]], + "quizzers": null, + "quizzer's": null, + "quizzes": null, + "quizzical": [["Y"]], + "quizzically": null, + "quizzing": null, + "quo": [["H"]], + "quoth": null, + "quoin": [["S", "G", "M", "D"]], + "quoins": null, + "quoining": null, + "quoin's": null, + "quoined": null, + "quoit": [["G", "S", "D", "M"]], + "quoiting": null, + "quoits": null, + "quoited": null, + "quoit's": null, + "quondam": null, + "quonset": null, + "Quonset": null, + "quorate": [["I"]], + "inquorate": null, + "quorum": [["M", "S"]], + "quorum's": null, + "quorums": null, + "quotability": [["S"]], + "quotabilities": null, + "quota": [["M", "S"]], + "quota's": null, + "quotas": null, + "quotation": [["S", "M"]], + "quotations": null, + "quotation's": null, + "quoter": [["M"]], + "quoter's": null, + "quote": [["U", "G", "S", "D"]], + "unquote": null, + "unquoting": null, + "unquotes": null, + "unquoted": null, + "quoting": null, + "quotes": null, + "quoted": null, + "quot": [["G", "D", "R", "B"]], + "quotable": null, + "quotidian": [["S"]], + "quotidians": null, + "quotient": [["S", "M"]], + "quotients": null, + "quotient's": null, + "qwerty": null, + "qwertys": null, + "Rabat": [["M"]], + "Rabat's": null, + "rabbet": [["G", "S", "M", "D"]], + "rabbeting": null, + "rabbets": null, + "rabbet's": null, + "rabbeted": null, + "Rabbi": [["M"]], + "Rabbi's": null, + "rabbi": [["M", "S"]], + "rabbi's": null, + "rabbis": null, + "rabbinate": [["M", "S"]], + "rabbinate's": null, + "rabbinates": null, + "rabbinic": null, + "rabbinical": [["Y"]], + "rabbinically": null, + "rabbiter": [["M"]], + "rabbiter's": null, + "rabbit": [["M", "R", "D", "S", "G"]], + "rabbit's": null, + "rabbited": null, + "rabbits": null, + "rabbiting": null, + "rabble": [["G", "M", "R", "S", "D"]], + "rabbling": null, + "rabble's": null, + "rabbler": [["M"]], + "rabbles": null, + "rabbled": null, + "rabbler's": null, + "Rabelaisian": null, + "Rabelais": [["M"]], + "Rabelais's": null, + "rabidness": [["S", "M"]], + "rabidnesses": null, + "rabidness's": null, + "rabid": [["Y", "P"]], + "rabidly": null, + "rabies": null, + "Rabi": [["M"]], + "Rabi's": null, + "Rabin": [["M"]], + "Rabin's": null, + "rabis": null, + "Rab": [["M"]], + "Rab's": null, + "raccoon": [["S", "M"]], + "raccoons": null, + "raccoon's": null, + "racecourse": [["M", "S"]], + "racecourse's": null, + "racecourses": null, + "racegoers": null, + "racehorse": [["S", "M"]], + "racehorses": null, + "racehorse's": null, + "raceme": [["M", "S"]], + "raceme's": null, + "racemes": null, + "race": [["M", "Z", "G", "D", "R", "S", "J"]], + "race's": null, + "racers": null, + "racing": null, + "raced": null, + "racer": [["M"]], + "races": null, + "racings": null, + "racer's": null, + "racetrack": [["S", "M", "R"]], + "racetracks": null, + "racetrack's": null, + "racetracker": null, + "raceway": [["S", "M"]], + "raceways": null, + "raceway's": null, + "Rachael": [["M"]], + "Rachael's": null, + "Rachele": [["M"]], + "Rachele's": null, + "Rachelle": [["M"]], + "Rachelle's": null, + "Rachel": [["M"]], + "Rachel's": null, + "Rachmaninoff": [["M"]], + "Rachmaninoff's": null, + "racialism": [["M", "S"]], + "racialism's": null, + "racialisms": null, + "racialist": [["M", "S"]], + "racialist's": null, + "racialists": null, + "racial": [["Y"]], + "racially": null, + "racily": null, + "Racine": [["M"]], + "Racine's": null, + "raciness": [["M", "S"]], + "raciness's": null, + "racinesses": null, + "racism": [["S"]], + "racisms": null, + "racist": [["M", "S"]], + "racist's": null, + "racists": null, + "racketeer": [["M", "D", "S", "J", "G"]], + "racketeer's": null, + "racketeered": null, + "racketeers": null, + "racketeerings": null, + "racketeering": null, + "racket": [["S", "M", "D", "G"]], + "rackets": null, + "racket's": null, + "racketed": null, + "racketing": null, + "rackety": null, + "rack": [["G", "D", "R", "M", "S"]], + "racking": null, + "racked": null, + "racker": null, + "rack's": null, + "racks": null, + "raconteur": [["S", "M"]], + "raconteurs": null, + "raconteur's": null, + "racoon's": null, + "racquetball": [["S"]], + "racquetballs": null, + "racquet's": null, + "racy": [["R", "T", "P"]], + "racier": null, + "raciest": null, + "radarscope": [["M", "S"]], + "radarscope's": null, + "radarscopes": null, + "radar": [["S", "M"]], + "radars": null, + "radar's": null, + "Radcliffe": [["M"]], + "Radcliffe's": null, + "radded": null, + "radder": null, + "raddest": null, + "Raddie": [["M"]], + "Raddie's": null, + "radding": null, + "Raddy": [["M"]], + "Raddy's": null, + "radial": [["S", "Y"]], + "radials": null, + "radially": null, + "radiance": [["S", "M"]], + "radiances": null, + "radiance's": null, + "radian": [["S", "M"]], + "radians": null, + "radian's": null, + "radiant": [["Y", "S"]], + "radiantly": null, + "radiants": null, + "radiate": [["X", "S", "D", "Y", "V", "N", "G"]], + "radiations": null, + "radiates": null, + "radiated": null, + "radiately": null, + "radiative": [["Y"]], + "radiation": [["M"]], + "radiating": null, + "radiation's": null, + "radiatively": null, + "radiator": [["M", "S"]], + "radiator's": null, + "radiators": null, + "radicalism": [["M", "S"]], + "radicalism's": null, + "radicalisms": null, + "radicalization": [["S"]], + "radicalizations": null, + "radicalize": [["G", "S", "D"]], + "radicalizing": null, + "radicalizes": null, + "radicalized": null, + "radicalness": [["M"]], + "radicalness's": null, + "radical": [["S", "P", "Y"]], + "radicals": null, + "radically": null, + "radices's": null, + "radii": [["M"]], + "radii's": null, + "radioactive": [["Y"]], + "radioactively": null, + "radioactivity": [["M", "S"]], + "radioactivity's": null, + "radioactivities": null, + "radioastronomical": null, + "radioastronomy": null, + "radiocarbon": [["M", "S"]], + "radiocarbon's": null, + "radiocarbons": null, + "radiochemical": [["Y"]], + "radiochemically": null, + "radiochemistry": [["M"]], + "radiochemistry's": null, + "radiogalaxy": [["S"]], + "radiogalaxies": null, + "radiogram": [["S", "M"]], + "radiograms": null, + "radiogram's": null, + "radiographer": [["M", "S"]], + "radiographer's": null, + "radiographers": null, + "radiographic": null, + "radiography": [["M", "S"]], + "radiography's": null, + "radiographies": null, + "radioisotope": [["S", "M"]], + "radioisotopes": null, + "radioisotope's": null, + "radiologic": null, + "radiological": [["Y"]], + "radiologically": null, + "radiologist": [["M", "S"]], + "radiologist's": null, + "radiologists": null, + "radiology": [["M", "S"]], + "radiology's": null, + "radiologies": null, + "radioman": [["M"]], + "radioman's": null, + "radiomen": null, + "radiometer": [["S", "M"]], + "radiometers": null, + "radiometer's": null, + "radiometric": null, + "radiometry": [["M", "S"]], + "radiometry's": null, + "radiometries": null, + "radionics": null, + "radionuclide": [["M"]], + "radionuclide's": null, + "radiopasteurization": null, + "radiophone": [["M", "S"]], + "radiophone's": null, + "radiophones": null, + "radiophysics": null, + "radioscopy": [["S", "M"]], + "radioscopies": null, + "radioscopy's": null, + "radio": [["S", "M", "D", "G"]], + "radios": null, + "radio's": null, + "radioed": null, + "radioing": null, + "radiosonde": [["S", "M"]], + "radiosondes": null, + "radiosonde's": null, + "radiosterilization": null, + "radiosterilized": null, + "radiotelegraph": null, + "radiotelegraphs": null, + "radiotelegraphy": [["M", "S"]], + "radiotelegraphy's": null, + "radiotelegraphies": null, + "radiotelephone": [["S", "M"]], + "radiotelephones": null, + "radiotelephone's": null, + "radiotherapist": [["S", "M"]], + "radiotherapists": null, + "radiotherapist's": null, + "radiotherapy": [["S", "M"]], + "radiotherapies": null, + "radiotherapy's": null, + "radish": [["M", "S"]], + "radish's": null, + "radishes": null, + "radium": [["M", "S"]], + "radium's": null, + "radiums": null, + "radius": [["M"]], + "radius's": null, + "radix": [["S", "M"]], + "radixes": null, + "radix's": null, + "Rad": [["M"]], + "Rad's": null, + "radon": [["S", "M"]], + "radons": null, + "radon's": null, + "rad": [["S"]], + "rads": null, + "Raeann": [["M"]], + "Raeann's": null, + "Rae": [["M"]], + "Rae's": null, + "RAF": null, + "Rafaela": [["M"]], + "Rafaela's": null, + "Rafaelia": [["M"]], + "Rafaelia's": null, + "Rafaelita": [["M"]], + "Rafaelita's": null, + "Rafaellle": [["M"]], + "Rafaellle's": null, + "Rafaello": [["M"]], + "Rafaello's": null, + "Rafael": [["M"]], + "Rafael's": null, + "Rafa": [["M"]], + "Rafa's": null, + "Rafe": [["M"]], + "Rafe's": null, + "Raffaello": [["M"]], + "Raffaello's": null, + "Raffarty": [["M"]], + "Raffarty's": null, + "Rafferty": [["M"]], + "Rafferty's": null, + "raffia": [["S", "M"]], + "raffias": null, + "raffia's": null, + "raffishness": [["S", "M"]], + "raffishnesses": null, + "raffishness's": null, + "raffish": [["P", "Y"]], + "raffishly": null, + "raffle": [["M", "S", "D", "G"]], + "raffle's": null, + "raffles": null, + "raffled": null, + "raffling": null, + "Raff": [["M"]], + "Raff's": null, + "Rafi": [["M"]], + "Rafi's": null, + "Raf": [["M"]], + "Raf's": null, + "rafter": [["D", "M"]], + "raftered": null, + "rafter's": null, + "raft": [["G", "Z", "S", "M", "D", "R"]], + "rafting": null, + "rafters": null, + "rafts": null, + "raft's": null, + "rafted": null, + "raga": [["M", "S"]], + "raga's": null, + "ragas": null, + "ragamuffin": [["M", "S"]], + "ragamuffin's": null, + "ragamuffins": null, + "ragbag": [["S", "M"]], + "ragbags": null, + "ragbag's": null, + "rage": [["M", "S"]], + "rage's": null, + "rages": null, + "raggedness": [["S", "M"]], + "raggednesses": null, + "raggedness's": null, + "ragged": [["P", "R", "Y", "T"]], + "raggeder": null, + "raggedly": null, + "raggedest": null, + "raggedy": [["T", "R"]], + "raggediest": null, + "raggedier": null, + "ragging": null, + "rag": [["G", "S", "M", "D"]], + "raging": [["Y"]], + "rags": null, + "rag's": null, + "raged": null, + "ragingly": null, + "raglan": [["M", "S"]], + "raglan's": null, + "raglans": null, + "Ragnar": [["M"]], + "Ragnar's": null, + "Ragnar�k": null, + "ragout": [["S", "M", "D", "G"]], + "ragouts": null, + "ragout's": null, + "ragouted": null, + "ragouting": null, + "ragtag": [["M", "S"]], + "ragtag's": null, + "ragtags": null, + "ragtime": [["M", "S"]], + "ragtime's": null, + "ragtimes": null, + "ragweed": [["M", "S"]], + "ragweed's": null, + "ragweeds": null, + "ragwort": [["M"]], + "ragwort's": null, + "Rahal": [["M"]], + "Rahal's": null, + "rah": [["D", "G"]], + "rahed": null, + "rahing": null, + "Rahel": [["M"]], + "Rahel's": null, + "rahs": null, + "raider": [["M"]], + "raider's": null, + "raid": [["M", "D", "R", "S", "G", "Z"]], + "raid's": null, + "raided": null, + "raids": null, + "raiding": null, + "raiders": null, + "railbird": [["S"]], + "railbirds": null, + "rail": [["C", "D", "G", "S"]], + "derailed": null, + "derailing": null, + "derails": null, + "railed": null, + "railing": [["M", "S"]], + "rails": null, + "railer": [["S", "M"]], + "railers": null, + "railer's": null, + "railhead": [["S", "M"]], + "railheads": null, + "railhead's": null, + "railing's": null, + "railings": null, + "raillery": [["M", "S"]], + "raillery's": null, + "railleries": null, + "railroader": [["M"]], + "railroader's": null, + "railroading": [["M"]], + "railroading's": null, + "railroad": [["S", "Z", "R", "D", "M", "G", "J"]], + "railroads": null, + "railroaders": null, + "railroaded": null, + "railroad's": null, + "railroadings": null, + "rail's": null, + "railwaymen": null, + "railway": [["M", "S"]], + "railway's": null, + "railways": null, + "raiment": [["S", "M"]], + "raiments": null, + "raiment's": null, + "Raimondo": [["M"]], + "Raimondo's": null, + "Raimund": [["M"]], + "Raimund's": null, + "Raimundo": [["M"]], + "Raimundo's": null, + "Raina": [["M"]], + "Raina's": null, + "rainbow": [["M", "S"]], + "rainbow's": null, + "rainbows": null, + "raincloud": [["S"]], + "rainclouds": null, + "raincoat": [["S", "M"]], + "raincoats": null, + "raincoat's": null, + "raindrop": [["S", "M"]], + "raindrops": null, + "raindrop's": null, + "Raine": [["M", "R"]], + "Raine's": null, + "Rainer": [["M"]], + "Rainer's": null, + "rainfall": [["S", "M"]], + "rainfalls": null, + "rainfall's": null, + "rainforest's": null, + "rain": [["G", "S", "D", "M"]], + "raining": null, + "rains": null, + "rained": null, + "rain's": null, + "Rainier": [["M"]], + "Rainier's": null, + "rainless": null, + "rainmaker": [["S", "M"]], + "rainmakers": null, + "rainmaker's": null, + "rainmaking": [["M", "S"]], + "rainmaking's": null, + "rainmakings": null, + "rainproof": [["G", "S", "D"]], + "rainproofing": null, + "rainproofs": null, + "rainproofed": null, + "rainstorm": [["S", "M"]], + "rainstorms": null, + "rainstorm's": null, + "rainwater": [["M", "S"]], + "rainwater's": null, + "rainwaters": null, + "rainy": [["R", "T"]], + "rainier": null, + "rainiest": null, + "raise": [["D", "S", "R", "G", "Z"]], + "raised": null, + "raises": null, + "raiser": [["M"]], + "raising": [["M"]], + "raisers": null, + "raiser's": null, + "raising's": null, + "raisin": [["M", "S"]], + "raisin's": null, + "raisins": null, + "rajah": [["M"]], + "rajah's": null, + "rajahs": null, + "Rajive": [["M"]], + "Rajive's": null, + "raj": [["M"]], + "raj's": null, + "Rakel": [["M"]], + "Rakel's": null, + "rake": [["M", "G", "D", "R", "S"]], + "rake's": null, + "raking": null, + "raked": null, + "raker": [["M"]], + "rakes": null, + "raker's": null, + "rakishness": [["M", "S"]], + "rakishness's": null, + "rakishnesses": null, + "rakish": [["P", "Y"]], + "rakishly": null, + "Raleigh": [["M"]], + "Raleigh's": null, + "Ralf": [["M"]], + "Ralf's": null, + "Ralina": [["M"]], + "Ralina's": null, + "rally": [["G", "S", "D"]], + "rallying": null, + "rallies": null, + "rallied": null, + "Ralph": [["M"]], + "Ralph's": null, + "Ralston": [["M"]], + "Ralston's": null, + "Ra": [["M"]], + "Ra's": null, + "Ramada": [["M"]], + "Ramada's": null, + "Ramadan": [["S", "M"]], + "Ramadans": null, + "Ramadan's": null, + "Ramakrishna": [["M"]], + "Ramakrishna's": null, + "Rama": [["M"]], + "Rama's": null, + "Raman": [["M"]], + "Raman's": null, + "Ramayana": [["M"]], + "Ramayana's": null, + "ramble": [["J", "R", "S", "D", "G", "Z"]], + "ramblings": null, + "rambler": [["M"]], + "rambles": null, + "rambled": null, + "rambling": [["Y"]], + "ramblers": null, + "rambler's": null, + "ramblingly": null, + "Rambo": [["M"]], + "Rambo's": null, + "rambunctiousness": [["S"]], + "rambunctiousnesses": null, + "rambunctious": [["P", "Y"]], + "rambunctiously": null, + "ramekin": [["S", "M"]], + "ramekins": null, + "ramekin's": null, + "ramie": [["M", "S"]], + "ramie's": null, + "ramies": null, + "ramification": [["M"]], + "ramification's": null, + "ramify": [["X", "N", "G", "S", "D"]], + "ramifications": null, + "ramifying": null, + "ramifies": null, + "ramified": null, + "Ramirez": [["M"]], + "Ramirez's": null, + "Ramiro": [["M"]], + "Ramiro's": null, + "ramjet": [["S", "M"]], + "ramjets": null, + "ramjet's": null, + "Ram": [["M"]], + "Ram's": null, + "rammed": null, + "ramming": null, + "Ramo": [["M", "S"]], + "Ramo's": null, + "Ramos": null, + "Ramona": [["M"]], + "Ramona's": null, + "Ramonda": [["M"]], + "Ramonda's": null, + "Ramon": [["M"]], + "Ramon's": null, + "rampage": [["S", "D", "G"]], + "rampages": null, + "rampaged": null, + "rampaging": null, + "rampancy": [["S"]], + "rampancies": null, + "rampant": [["Y"]], + "rampantly": null, + "rampart": [["S", "G", "M", "D"]], + "ramparts": null, + "ramparting": null, + "rampart's": null, + "ramparted": null, + "ramp": [["G", "M", "D", "S"]], + "ramping": null, + "ramp's": null, + "ramped": null, + "ramps": null, + "ramrodded": null, + "ramrodding": null, + "ramrod": [["M", "S"]], + "ramrod's": null, + "ramrods": null, + "RAM": [["S"]], + "RAMs": null, + "Ramsay": [["M"]], + "Ramsay's": null, + "Ramses": [["M"]], + "Ramses's": null, + "Ramsey": [["M"]], + "Ramsey's": null, + "ramshackle": null, + "ram": [["S", "M"]], + "rams": [["S"]], + "ram's": null, + "ramses": null, + "ran": [["A"]], + "reran": null, + "Rana": [["M"]], + "Rana's": null, + "Rancell": [["M"]], + "Rancell's": null, + "Rance": [["M"]], + "Rance's": null, + "rancher": [["M"]], + "rancher's": null, + "rancho": [["S", "M"]], + "ranchos": null, + "rancho's": null, + "ranch": [["Z", "R", "S", "D", "M", "J", "G"]], + "ranchers": null, + "ranches": null, + "ranched": null, + "ranch's": null, + "ranchings": null, + "ranching": null, + "rancidity": [["M", "S"]], + "rancidity's": null, + "rancidities": null, + "rancidness": [["S", "M"]], + "rancidnesses": null, + "rancidness's": null, + "rancid": [["P"]], + "rancorous": [["Y"]], + "rancorously": null, + "rancor": [["S", "M"]], + "rancors": null, + "rancor's": null, + "Randall": [["M"]], + "Randall's": null, + "Randal": [["M"]], + "Randal's": null, + "Randa": [["M"]], + "Randa's": null, + "Randee": [["M"]], + "Randee's": null, + "Randell": [["M"]], + "Randell's": null, + "Randene": [["M"]], + "Randene's": null, + "Randie": [["M"]], + "Randie's": null, + "Randi": [["M"]], + "Randi's": null, + "randiness": [["S"]], + "randinesses": null, + "Rand": [["M"]], + "Rand's": null, + "rand": [["M", "D", "G", "S"]], + "rand's": null, + "randed": null, + "randing": null, + "rands": null, + "Randolf": [["M"]], + "Randolf's": null, + "Randolph": [["M"]], + "Randolph's": null, + "randomization": [["S", "M"]], + "randomizations": null, + "randomization's": null, + "randomize": [["S", "R", "D", "G"]], + "randomizes": null, + "randomizer": null, + "randomized": null, + "randomizing": null, + "randomness": [["S", "M"]], + "randomnesses": null, + "randomness's": null, + "random": [["P", "Y", "S"]], + "randomly": null, + "randoms": null, + "Randy": [["M"]], + "Randy's": null, + "randy": [["P", "R", "S", "T"]], + "randier": null, + "randies": null, + "randiest": null, + "Ranee": [["M"]], + "Ranee's": null, + "ranee": [["S", "M"]], + "ranees": null, + "ranee's": null, + "ranged": [["C"]], + "deranged": null, + "rangeland": [["S"]], + "rangelands": null, + "ranger": [["M"]], + "ranger's": null, + "ranges": [["C"]], + "deranges": null, + "range": [["S", "M"]], + "range's": null, + "rang": [["G", "Z", "D", "R"]], + "ranging": [["C"]], + "rangers": null, + "ranginess": [["S"]], + "ranginesses": null, + "deranging": null, + "Rangoon": [["M"]], + "Rangoon's": null, + "rangy": [["R", "P", "T"]], + "rangier": null, + "rangiest": null, + "Rania": [["M"]], + "Rania's": null, + "Ranice": [["M"]], + "Ranice's": null, + "Ranier": [["M"]], + "Ranier's": null, + "Rani": [["M", "R"]], + "Rani's": null, + "Ranique": [["M"]], + "Ranique's": null, + "rani's": null, + "ranked": [["U"]], + "unranked": null, + "ranker": [["M"]], + "ranker's": null, + "rank": [["G", "Z", "T", "Y", "D", "R", "M", "P", "J", "S"]], + "ranking": [["M"]], + "rankers": null, + "rankest": null, + "rankly": null, + "rank's": null, + "rankness": [["M", "S"]], + "rankings": null, + "ranks": null, + "Rankine": [["M"]], + "Rankine's": null, + "ranking's": null, + "Rankin": [["M"]], + "Rankin's": null, + "rankle": [["S", "D", "G"]], + "rankles": null, + "rankled": null, + "rankling": null, + "rankness's": null, + "ranknesses": null, + "Ranna": [["M"]], + "Ranna's": null, + "ransacker": [["M"]], + "ransacker's": null, + "ransack": [["G", "R", "D", "S"]], + "ransacking": null, + "ransacked": null, + "ransacks": null, + "Ransell": [["M"]], + "Ransell's": null, + "ransomer": [["M"]], + "ransomer's": null, + "Ransom": [["M"]], + "Ransom's": null, + "ransom": [["Z", "G", "M", "R", "D", "S"]], + "ransomers": null, + "ransoming": null, + "ransom's": null, + "ransomed": null, + "ransoms": null, + "ranter": [["M"]], + "ranter's": null, + "rant": [["G", "Z", "D", "R", "J", "S"]], + "ranting": [["Y"]], + "ranters": null, + "ranted": null, + "rantings": null, + "rants": null, + "rantingly": null, + "Raoul": [["M"]], + "Raoul's": null, + "rapaciousness": [["M", "S"]], + "rapaciousness's": null, + "rapaciousnesses": null, + "rapacious": [["Y", "P"]], + "rapaciously": null, + "rapacity": [["M", "S"]], + "rapacity's": null, + "rapacities": null, + "rapeseed": [["M"]], + "rapeseed's": null, + "rape": [["S", "M"]], + "rapes": null, + "rape's": null, + "Raphaela": [["M"]], + "Raphaela's": null, + "Raphael": [["M"]], + "Raphael's": null, + "rapidity": [["M", "S"]], + "rapidity's": null, + "rapidities": null, + "rapidness": [["S"]], + "rapidnesses": null, + "rapid": [["Y", "R", "P", "S", "T"]], + "rapidly": null, + "rapider": null, + "rapids": null, + "rapidest": null, + "rapier": [["S", "M"]], + "rapiers": null, + "rapier's": null, + "rapine": [["S", "M"]], + "rapines": null, + "rapine's": null, + "rapist": [["M", "S"]], + "rapist's": null, + "rapists": null, + "rap": [["M", "D", "R", "S", "Z", "G"]], + "rap's": null, + "raped": null, + "raper": null, + "raps": null, + "rapers": null, + "raping": null, + "rapped": null, + "rappelled": null, + "rappelling": null, + "rappel": [["S"]], + "rappels": null, + "rapper": [["S", "M"]], + "rappers": null, + "rapper's": null, + "rapping": [["M"]], + "rapping's": null, + "rapporteur": [["S", "M"]], + "rapporteurs": null, + "rapporteur's": null, + "rapport": [["S", "M"]], + "rapports": null, + "rapport's": null, + "rapprochement": [["S", "M"]], + "rapprochements": null, + "rapprochement's": null, + "rapscallion": [["M", "S"]], + "rapscallion's": null, + "rapscallions": null, + "raptness": [["S"]], + "raptnesses": null, + "rapture": [["M", "G", "S", "D"]], + "rapture's": null, + "rapturing": null, + "raptures": null, + "raptured": null, + "rapturousness": [["M"]], + "rapturousness's": null, + "rapturous": [["Y", "P"]], + "rapturously": null, + "rapt": [["Y", "P"]], + "raptly": null, + "Rapunzel": [["M"]], + "Rapunzel's": null, + "Raquela": [["M"]], + "Raquela's": null, + "Raquel": [["M"]], + "Raquel's": null, + "rarebit": [["M", "S"]], + "rarebit's": null, + "rarebits": null, + "rarefaction": [["M", "S"]], + "rarefaction's": null, + "rarefactions": null, + "rarefy": [["G", "S", "D"]], + "rarefying": null, + "rarefies": null, + "rarefied": null, + "rareness": [["M", "S"]], + "rareness's": null, + "rarenesses": null, + "rare": [["Y", "T", "P", "G", "D", "R", "S"]], + "rarely": null, + "rarest": null, + "raring": null, + "rared": null, + "rarer": null, + "rares": null, + "rarity": [["S", "M"]], + "rarities": null, + "rarity's": null, + "Rasalgethi": [["M"]], + "Rasalgethi's": null, + "Rasalhague": [["M"]], + "Rasalhague's": null, + "rascal": [["S", "M", "Y"]], + "rascals": null, + "rascal's": null, + "rascally": null, + "rasher": [["M"]], + "rasher's": null, + "rashness": [["S"]], + "rashnesses": null, + "rash": [["P", "Z", "T", "Y", "S", "R"]], + "rashers": null, + "rashest": null, + "rashly": null, + "rashes": null, + "Rasia": [["M"]], + "Rasia's": null, + "Rasla": [["M"]], + "Rasla's": null, + "Rasmussen": [["M"]], + "Rasmussen's": null, + "raspberry": [["S", "M"]], + "raspberries": null, + "raspberry's": null, + "rasper": [["M"]], + "rasper's": null, + "rasping": [["Y"]], + "raspingly": null, + "rasp": [["S", "G", "J", "M", "D", "R"]], + "rasps": null, + "raspings": null, + "rasp's": null, + "rasped": null, + "Rasputin": [["M"]], + "Rasputin's": null, + "raspy": [["R", "T"]], + "raspier": null, + "raspiest": null, + "Rastaban": [["M"]], + "Rastaban's": null, + "Rastafarian": [["M"]], + "Rastafarian's": null, + "raster": [["M", "S"]], + "raster's": null, + "rasters": null, + "Rastus": [["M"]], + "Rastus's": null, + "ratchet": [["M", "D", "S", "G"]], + "ratchet's": null, + "ratcheted": null, + "ratchets": null, + "ratcheting": null, + "rateable": null, + "rated": [["U"]], + "unrated": null, + "rate": [["K", "N", "G", "S", "D"]], + "prorate": null, + "proration": null, + "prorating": null, + "prorates": null, + "prorated": null, + "ration": [["D", "S", "M", "G"]], + "rating": [["M"]], + "rates": null, + "ratepayer": [["S", "M"]], + "ratepayers": null, + "ratepayer's": null, + "rater": [["M"]], + "rater's": null, + "rate's": null, + "Ratfor": [["M"]], + "Ratfor's": null, + "rather": null, + "Rather": [["M"]], + "Rather's": null, + "rathskeller": [["S", "M"]], + "rathskellers": null, + "rathskeller's": null, + "ratifier": [["M"]], + "ratifier's": null, + "ratify": [["Z", "S", "R", "D", "G", "X", "N"]], + "ratifiers": null, + "ratifies": null, + "ratified": null, + "ratifying": null, + "ratifications": null, + "ratification": null, + "rating's": null, + "ratiocinate": [["V", "N", "G", "S", "D", "X"]], + "ratiocinative": null, + "ratiocination": [["M"]], + "ratiocinating": null, + "ratiocinates": null, + "ratiocinated": null, + "ratiocinations": null, + "ratiocination's": null, + "ratio": [["M", "S"]], + "ratio's": null, + "ratios": null, + "rationale": [["S", "M"]], + "rationales": null, + "rationale's": null, + "rationalism": [["S", "M"]], + "rationalisms": null, + "rationalism's": null, + "rationalistic": null, + "rationalist": [["S"]], + "rationalists": null, + "rationality": [["M", "S"]], + "rationality's": null, + "rationalities": null, + "rationalization": [["S", "M"]], + "rationalizations": null, + "rationalization's": null, + "rationalizer": [["M"]], + "rationalizer's": null, + "rationalize": [["Z", "G", "S", "R", "D"]], + "rationalizers": null, + "rationalizing": null, + "rationalizes": null, + "rationalized": null, + "rationalness": [["M"]], + "rationalness's": null, + "rational": [["Y", "P", "S"]], + "rationally": null, + "rationals": null, + "rationed": null, + "rations": null, + "ration's": null, + "rationing": null, + "Ratliff": [["M"]], + "Ratliff's": null, + "ratlike": null, + "ratline": [["S", "M"]], + "ratlines": null, + "ratline's": null, + "rat": [["M", "D", "R", "S", "J", "Z", "G", "B"]], + "rat's": null, + "rats": null, + "ratings": null, + "raters": null, + "ratable": null, + "rattail": null, + "rattan": [["M", "S"]], + "rattan's": null, + "rattans": null, + "ratted": null, + "ratter": [["M", "S"]], + "ratter's": null, + "ratters": null, + "ratting": null, + "rattlebrain": [["D", "M", "S"]], + "rattlebrained": null, + "rattlebrain's": null, + "rattlebrains": null, + "rattle": [["R", "S", "D", "J", "G", "Z"]], + "rattler": null, + "rattles": null, + "rattled": null, + "rattlings": null, + "rattling": [["Y"]], + "rattlers": null, + "rattlesnake": [["M", "S"]], + "rattlesnake's": null, + "rattlesnakes": null, + "rattletrap": [["M", "S"]], + "rattletrap's": null, + "rattletraps": null, + "rattlingly": null, + "rattly": [["T", "R"]], + "rattliest": null, + "rattlier": null, + "rattrap": [["S", "M"]], + "rattraps": null, + "rattrap's": null, + "ratty": [["R", "T"]], + "rattier": null, + "rattiest": null, + "raucousness": [["S", "M"]], + "raucousnesses": null, + "raucousness's": null, + "raucous": [["Y", "P"]], + "raucously": null, + "Raul": [["M"]], + "Raul's": null, + "raunchily": null, + "raunchiness": [["S"]], + "raunchinesses": null, + "raunchy": [["R", "T", "P"]], + "raunchier": null, + "raunchiest": null, + "ravage": [["G", "Z", "R", "S", "D"]], + "ravaging": null, + "ravagers": null, + "ravager": [["M"]], + "ravages": null, + "ravaged": null, + "ravager's": null, + "raveling": [["S"]], + "ravelings": null, + "Ravel": [["M"]], + "Ravel's": null, + "ravel": [["U", "G", "D", "S"]], + "unravel": null, + "unraveling": null, + "unraveled": null, + "unravels": null, + "raveled": null, + "ravels": null, + "raven": [["J", "G", "M", "R", "D", "S"]], + "ravenings": null, + "ravening": null, + "raven's": null, + "ravener": null, + "ravened": null, + "ravens": null, + "Raven": [["M"]], + "Raven's": null, + "ravenous": [["Y", "P"]], + "ravenously": null, + "ravenousness": null, + "raver": [["M"]], + "raver's": null, + "rave": [["Z", "G", "D", "R", "S", "J"]], + "ravers": null, + "raving": null, + "raved": null, + "raves": null, + "ravings": null, + "Ravid": [["M"]], + "Ravid's": null, + "Ravi": [["M"]], + "Ravi's": null, + "ravine": [["S", "D", "G", "M"]], + "ravines": null, + "ravined": null, + "ravining": null, + "ravine's": null, + "ravioli": [["S", "M"]], + "raviolis": null, + "ravioli's": null, + "ravisher": [["M"]], + "ravisher's": null, + "ravishing": [["Y"]], + "ravishingly": null, + "ravish": [["L", "S", "R", "D", "Z", "G"]], + "ravishment": [["S", "M"]], + "ravishes": null, + "ravished": null, + "ravishers": null, + "ravishments": null, + "ravishment's": null, + "Raviv": [["M"]], + "Raviv's": null, + "Rawalpindi": [["M"]], + "Rawalpindi's": null, + "rawboned": null, + "rawhide": [["S", "D", "M", "G"]], + "rawhides": null, + "rawhided": null, + "rawhide's": null, + "rawhiding": null, + "Rawley": [["M"]], + "Rawley's": null, + "Rawlings": [["M"]], + "Rawlings's": null, + "Rawlins": [["M"]], + "Rawlins's": null, + "Rawlinson": [["M"]], + "Rawlinson's": null, + "rawness": [["S", "M"]], + "rawnesses": null, + "rawness's": null, + "raw": [["P", "S", "R", "Y", "T"]], + "raws": null, + "rawer": null, + "rawly": null, + "rawest": null, + "Rawson": [["M"]], + "Rawson's": null, + "Rayburn": [["M"]], + "Rayburn's": null, + "Raychel": [["M"]], + "Raychel's": null, + "Raye": [["M"]], + "Raye's": null, + "ray": [["G", "S", "M", "D"]], + "raying": null, + "rays": null, + "ray's": null, + "rayed": null, + "Rayleigh": [["M"]], + "Rayleigh's": null, + "Ray": [["M"]], + "Ray's": null, + "Raymond": [["M"]], + "Raymond's": null, + "Raymondville": [["M"]], + "Raymondville's": null, + "Raymund": [["M"]], + "Raymund's": null, + "Raymundo": [["M"]], + "Raymundo's": null, + "Rayna": [["M"]], + "Rayna's": null, + "Raynard": [["M"]], + "Raynard's": null, + "Raynell": [["M"]], + "Raynell's": null, + "Rayner": [["M"]], + "Rayner's": null, + "Raynor": [["M"]], + "Raynor's": null, + "rayon": [["S", "M"]], + "rayons": null, + "rayon's": null, + "Rayshell": [["M"]], + "Rayshell's": null, + "Raytheon": [["M"]], + "Raytheon's": null, + "raze": [["D", "R", "S", "G"]], + "razed": null, + "razer": [["M"]], + "razes": null, + "razing": null, + "razer's": null, + "razorback": [["S", "M"]], + "razorbacks": null, + "razorback's": null, + "razorblades": null, + "razor": [["M", "D", "G", "S"]], + "razor's": null, + "razored": null, + "razoring": null, + "razors": null, + "razz": [["G", "D", "S"]], + "razzing": null, + "razzed": null, + "razzes": null, + "razzmatazz": [["S"]], + "razzmatazzes": null, + "Rb": null, + "RBI": [["S"]], + "RBIs": null, + "RC": null, + "RCA": null, + "rcpt": null, + "RCS": null, + "rd": null, + "RD": null, + "RDA": null, + "Rd": [["M"]], + "Rd's": null, + "reabbreviate": null, + "reachability": null, + "reachable": [["U"]], + "unreachable": null, + "reachably": null, + "unreached": null, + "reacher": [["M"]], + "reacher's": null, + "reach": [["G", "R", "B"]], + "reaching": null, + "reacquisition": null, + "reactant": [["S", "M"]], + "reactants": null, + "reactant's": null, + "unreacted": null, + "reaction": null, + "reactionary": [["S", "M"]], + "reactionaries": null, + "reactionary's": null, + "reactivity": null, + "readability": [["M", "S"]], + "readability's": null, + "readabilities": null, + "readable": [["P"]], + "readableness": null, + "readably": null, + "readdress": [["G"]], + "readdressing": null, + "Reade": [["M"]], + "Reade's": null, + "reader": [["M"]], + "reader's": null, + "readership": [["M", "S"]], + "readership's": null, + "readerships": null, + "Read": [["G", "M"]], + "Reading": [["M"]], + "Read's": null, + "readied": null, + "readies": null, + "readily": null, + "readinesses": null, + "readiness": [["U", "M"]], + "unreadiness": null, + "unreadiness's": null, + "readiness's": null, + "reading": [["M"]], + "reading's": null, + "Reading's": null, + "readings": null, + "readers": null, + "readopt": [["G"]], + "readopting": null, + "readout": [["M", "S"]], + "readout's": null, + "readouts": null, + "rereads": null, + "readying": null, + "ready": [["T", "U", "P", "R"]], + "readiest": null, + "unready": null, + "unreadier": null, + "readier": null, + "Reagan": [["M"]], + "Reagan's": null, + "Reagen": [["M"]], + "Reagen's": null, + "realisms": null, + "realism's": null, + "realism": [["U"]], + "unrealism": null, + "realistically": [["U"]], + "unrealistically": null, + "realistic": [["U"]], + "unrealistic": null, + "realist": [["S", "M"]], + "realists": null, + "realist's": null, + "reality": [["U", "S", "M"]], + "unreality": null, + "unrealities": null, + "unreality's": null, + "realities": null, + "reality's": null, + "realizability": [["M", "S"]], + "realizability's": null, + "realizabilities": null, + "realizableness": [["M"]], + "realizableness's": null, + "realizable": [["S", "M", "P"]], + "realizables": null, + "realizable's": null, + "realizably": [["S"]], + "realizablies": null, + "realization": [["M", "S"]], + "realization's": null, + "realizations": null, + "realized": [["U"]], + "unrealized": null, + "realize": [["J", "R", "S", "D", "B", "Z", "G"]], + "realizings": null, + "realizer": [["M"]], + "realizes": [["U"]], + "realizers": null, + "realizing": [["M", "Y"]], + "realizer's": null, + "unrealizes": null, + "realizing's": null, + "realizingly": null, + "realm": [["M"]], + "realm's": null, + "realness": [["S"]], + "realnesses": null, + "realpolitik": [["S", "M"]], + "realpolitiks": null, + "realpolitik's": null, + "real": [["R", "S", "T", "P"]], + "realer": null, + "reals": null, + "realest": null, + "realtor's": null, + "Realtor": [["S"]], + "Realtors": null, + "realty": [["S", "M"]], + "realties": null, + "realty's": null, + "Rea": [["M"]], + "Rea's": null, + "reamer": [["M"]], + "reamer's": null, + "ream's": null, + "reamed": null, + "reaming": null, + "reamers": null, + "Reamonn": [["M"]], + "Reamonn's": null, + "reanimate": null, + "reaper's": null, + "reappraise": [["G"]], + "reappraising": null, + "reap": [["S", "G", "Z"]], + "reaps": null, + "reaping": null, + "reapers": null, + "rear": [["D", "R", "M", "S", "G"]], + "reared": null, + "rearer": null, + "rear's": null, + "rears": null, + "rearing": null, + "rearguard": [["M", "S"]], + "rearguard's": null, + "rearguards": null, + "rearmost": null, + "rearrange": [["L"]], + "rearward": [["S"]], + "rearwards": null, + "reasonableness": [["S", "M", "U"]], + "reasonablenesses": null, + "unreasonablenesses": null, + "reasonableness's": null, + "unreasonableness's": null, + "unreasonableness": null, + "reasonable": [["U", "P"]], + "unreasonable": null, + "reasonably": [["U"]], + "unreasonably": null, + "Reasoner": [["M"]], + "Reasoner's": null, + "reasoner": [["S", "M"]], + "reasoners": null, + "reasoner's": null, + "reasoning": [["M", "S"]], + "reasoning's": null, + "reasonings": null, + "reasonless": null, + "reasons": null, + "reason": [["U", "B", "D", "M", "G"]], + "unreason": null, + "unreasoned": null, + "unreason's": null, + "unreasoning": [["Y"]], + "reasoned": null, + "reason's": null, + "reassess": [["G", "L"]], + "reassessing": null, + "unreassuringly": null, + "reattach": [["G", "S", "L"]], + "reattaching": null, + "reattaches": null, + "reawakening's": null, + "Reba": [["M"]], + "Reba's": null, + "rebate's": null, + "Rebbecca": [["M"]], + "Rebbecca's": null, + "Rebeca": [["M"]], + "Rebeca's": null, + "Rebecca's": null, + "Rebecka": [["M"]], + "Rebecka's": null, + "Rebekah": [["M"]], + "Rebekah's": null, + "Rebeka": [["M"]], + "Rebeka's": null, + "Rebekkah": [["M"]], + "Rebekkah's": null, + "rebeller": null, + "rebellion": [["S", "M"]], + "rebellions": null, + "rebellion's": null, + "rebelliousness": [["M", "S"]], + "rebelliousness's": null, + "rebelliousnesses": null, + "rebellious": [["Y", "P"]], + "rebelliously": null, + "rebel": [["M", "S"]], + "rebel's": null, + "rebels": null, + "Rebe": [["M"]], + "Rebe's": null, + "rebid": null, + "rebidding": null, + "rebind": [["G"]], + "rebinding": null, + "rebirth": null, + "reboil": [["G"]], + "reboiling": null, + "rebook": null, + "rebooters": null, + "rebooter": null, + "rebounding": null, + "rebroadcast": [["M", "G"]], + "rebroadcast's": null, + "rebroadcasting": null, + "rebuke": [["R", "S", "D", "G"]], + "rebuker": null, + "rebukes": null, + "rebuked": null, + "rebuking": [["Y"]], + "rebukingly": null, + "rebus": null, + "rebuttal": [["S", "M"]], + "rebuttals": null, + "rebuttal's": null, + "rebutting": null, + "rec": null, + "recalcitrance": [["S", "M"]], + "recalcitrances": null, + "recalcitrance's": null, + "recalcitrant": [["S"]], + "recalcitrants": null, + "recalibrate": [["N"]], + "recalibration": null, + "recantation": [["S"]], + "recantations": null, + "recant": [["G"]], + "recanting": null, + "recap": null, + "recappable": null, + "recapping": null, + "recast": [["G"]], + "recasting": null, + "recd": null, + "rec'd": null, + "recede": null, + "receipt": [["S", "G", "D", "M"]], + "receipts": null, + "receipting": null, + "receipted": null, + "receipt's": null, + "receivable": [["S"]], + "receivables": null, + "received": [["U"]], + "unreceived": null, + "receiver": [["M"]], + "receiver's": null, + "receivership": [["S", "M"]], + "receiverships": null, + "receivership's": null, + "receive": [["Z", "G", "R", "S", "D", "B"]], + "receivers": null, + "receiving": null, + "receives": null, + "recency": [["M"]], + "recency's": null, + "recension": [["M"]], + "recension's": null, + "recentness": [["S", "M"]], + "recentnesses": null, + "recentness's": null, + "recent": [["Y", "P", "T"]], + "recently": null, + "recentest": null, + "receptacle": [["S", "M"]], + "receptacles": null, + "receptacle's": null, + "receptionist": [["M", "S"]], + "receptionist's": null, + "receptionists": null, + "reception": [["M", "S"]], + "reception's": null, + "receptions": null, + "receptiveness": [["S"]], + "receptivenesses": null, + "receptive": [["Y", "P"]], + "receptively": null, + "receptivity": [["S"]], + "receptivities": null, + "receptor": [["M", "S"]], + "receptor's": null, + "receptors": null, + "recessional": [["S"]], + "recessionals": null, + "recessionary": null, + "recessiveness": [["M"]], + "recessiveness's": null, + "recessive": [["Y", "P", "S"]], + "recessively": null, + "recessives": null, + "recess": [["S", "D", "M", "V", "G"]], + "recesses": null, + "recessed": null, + "recess's": null, + "recessing": null, + "rechargeable": null, + "recheck": [["G"]], + "rechecking": null, + "recherch�": null, + "recherches": null, + "recidivism": [["M", "S"]], + "recidivism's": null, + "recidivisms": null, + "recidivist": [["M", "S"]], + "recidivist's": null, + "recidivists": null, + "Recife": [["M"]], + "Recife's": null, + "recipe": [["M", "S"]], + "recipe's": null, + "recipes": null, + "recipiency": null, + "recipient": [["M", "S"]], + "recipient's": null, + "recipients": null, + "reciprocal": [["S", "Y"]], + "reciprocals": null, + "reciprocally": null, + "reciprocate": [["N", "G", "X", "V", "D", "S"]], + "reciprocation": [["M"]], + "reciprocating": null, + "reciprocations": null, + "reciprocative": null, + "reciprocated": null, + "reciprocates": null, + "reciprocation's": null, + "reciprocity": [["M", "S"]], + "reciprocity's": null, + "reciprocities": null, + "recitalist": [["S"]], + "recitalists": null, + "recital": [["M", "S"]], + "recital's": null, + "recitals": null, + "recitative": [["M", "S"]], + "recitative's": null, + "recitatives": null, + "reciter": [["M"]], + "reciter's": null, + "reciters": null, + "recked": null, + "recking": null, + "recklessness": [["S"]], + "recklessnesses": null, + "reckless": [["P", "Y"]], + "recklessly": null, + "reckoner": [["M"]], + "reckoner's": null, + "reckoning": [["M"]], + "reckoning's": null, + "reckon": [["S", "G", "R", "D", "J"]], + "reckons": null, + "reckoned": null, + "reckonings": null, + "reclaimable": null, + "reclamation": [["S", "M"]], + "reclamations": null, + "reclamation's": null, + "recliner": [["M"]], + "recliner's": null, + "recline": [["R", "S", "D", "Z", "G"]], + "reclines": null, + "reclined": null, + "recliners": null, + "reclining": null, + "recluse": [["M", "V", "N", "S"]], + "recluse's": null, + "reclusive": null, + "reclusion": [["M"]], + "recluses": null, + "reclusion's": null, + "recode": [["G"]], + "recoding": null, + "recognizability": null, + "recognizable": [["U"]], + "unrecognizable": null, + "recognizably": null, + "recognize": [["B", "Z", "G", "S", "R", "D"]], + "recognizers": null, + "recognizing": [["U", "Y"]], + "recognizes": null, + "recognizer": [["M"]], + "recognized": [["U"]], + "recognizedly": [["S"]], + "recognizedlies": null, + "unrecognized": null, + "recognizer's": null, + "recognizingly": [["S"]], + "recognizinglies": null, + "unrecognizing": null, + "unrecognizingly": null, + "recoilless": null, + "recoinage": null, + "recolor": [["G", "D"]], + "recoloring": null, + "recolored": null, + "recombinant": null, + "recombine": null, + "unrecommended": null, + "recompense": [["G", "D", "S"]], + "recompensing": null, + "recompensed": null, + "recompenses": null, + "recompute": [["B"]], + "recomputable": null, + "reconciled": [["U"]], + "unreconciled": null, + "reconciler": [["M"]], + "reconciler's": null, + "reconcile": [["S", "R", "D", "G", "B"]], + "reconciles": null, + "reconciling": null, + "reconcilable": null, + "reconditeness": [["M"]], + "reconditeness's": null, + "recondite": [["Y", "P"]], + "reconditely": null, + "reconfigurability": null, + "reconfigurer": null, + "reconnaissance": [["M", "S"]], + "reconnaissance's": null, + "reconnaissances": null, + "reconnecter": null, + "reconnoiter": [["G", "S", "D"]], + "reconnoitering": null, + "reconnoiters": null, + "reconnoitered": null, + "reconquer": [["G"]], + "reconquering": null, + "reconsecrate": null, + "reconstitute": null, + "unreconstructed": null, + "Reconstruction": [["M"]], + "Reconstruction's": null, + "reconsult": [["G"]], + "reconsulting": null, + "recontact": [["G"]], + "recontacting": null, + "recontaminate": [["N"]], + "recontamination": null, + "recontribute": null, + "recook": [["G"]], + "recooking": null, + "recopy": [["G"]], + "recopying": null, + "rerecorded": null, + "unrecorded": null, + "rerecords": null, + "recorders": null, + "recordings": null, + "recourse": null, + "recoverability": null, + "recoverable": [["U"]], + "unrecoverable": null, + "recovery": [["M", "S"]], + "recovery's": null, + "recoveries": null, + "recreant": [["S"]], + "recreants": null, + "recreational": null, + "recriminate": [["G", "N", "V", "X", "D", "S"]], + "recriminating": null, + "recrimination": [["M"]], + "recriminative": null, + "recriminations": null, + "recriminated": null, + "recriminates": null, + "recrimination's": null, + "recriminatory": null, + "recross": [["G"]], + "recrossing": null, + "recrudesce": [["G", "D", "S"]], + "recrudescing": null, + "recrudesced": null, + "recrudesces": null, + "recrudescence": [["M", "S"]], + "recrudescence's": null, + "recrudescences": null, + "recrudescent": null, + "recruiter": [["M"]], + "recruiter's": null, + "recruitment": [["M", "S"]], + "recruitment's": null, + "recruitments": null, + "recruit": [["Z", "S", "G", "D", "R", "M", "L"]], + "recruiters": null, + "recruits": null, + "recruiting": null, + "recruited": null, + "recruit's": null, + "recrystallize": null, + "rectal": [["Y"]], + "rectally": null, + "rectangle": [["S", "M"]], + "rectangles": null, + "rectangle's": null, + "rectangular": [["Y"]], + "rectangularly": null, + "recta's": null, + "rectifiable": null, + "rectification": [["M"]], + "rectification's": null, + "rectifier": [["M"]], + "rectifier's": null, + "rectify": [["D", "R", "S", "G", "X", "Z", "N"]], + "rectified": null, + "rectifies": null, + "rectifying": null, + "rectifications": null, + "rectifiers": null, + "rectilinear": [["Y"]], + "rectilinearly": null, + "rectitude": [["M", "S"]], + "rectitude's": null, + "rectitudes": null, + "recto": [["M", "S"]], + "recto's": null, + "rectos": null, + "rector": [["S", "M"]], + "rectors": null, + "rector's": null, + "rectory": [["M", "S"]], + "rectory's": null, + "rectories": null, + "rectum": [["S", "M"]], + "rectums": null, + "rectum's": null, + "recumbent": [["Y"]], + "recumbently": null, + "recuperate": [["V", "G", "N", "S", "D", "X"]], + "recuperative": null, + "recuperating": null, + "recuperation": [["M"]], + "recuperates": null, + "recuperated": null, + "recuperations": null, + "recuperation's": null, + "recur": null, + "recurrence": [["M", "S"]], + "recurrence's": null, + "recurrences": null, + "recurrent": null, + "recursion": [["M"]], + "recursions": null, + "recursion's": null, + "recusant": [["M"]], + "recusant's": null, + "recuse": null, + "recyclable": [["S"]], + "recyclables": null, + "recyclers": null, + "redact": [["D", "G", "S"]], + "redacted": null, + "redacting": null, + "redacts": null, + "redaction": [["S", "M"]], + "redactions": null, + "redaction's": null, + "redactor": [["M", "S"]], + "redactor's": null, + "redactors": null, + "redbird": [["S", "M"]], + "redbirds": null, + "redbird's": null, + "redbreast": [["S", "M"]], + "redbreasts": null, + "redbreast's": null, + "redbrick": [["M"]], + "redbrick's": null, + "redbud": [["M"]], + "redbud's": null, + "redcap": [["M", "S"]], + "redcap's": null, + "redcaps": null, + "redcoat": [["S", "M"]], + "redcoats": null, + "redcoat's": null, + "redcurrant": [["M"]], + "redcurrant's": null, + "redden": [["D", "G", "S"]], + "reddened": null, + "reddening": null, + "reddens": null, + "redder": null, + "reddest": null, + "redding": null, + "reddish": [["P"]], + "reddishness": null, + "Redd": [["M"]], + "Redd's": null, + "redeclaration": null, + "redecorate": null, + "redeemable": [["U"]], + "unredeemable": null, + "redeemer": [["M"]], + "redeemers": null, + "unredeemed": null, + "redeemer's": null, + "Redeemer": [["M"]], + "Redeemer's": null, + "redemptioner": [["M"]], + "redemptioner's": null, + "redemption": [["R", "M", "S"]], + "redemption's": null, + "redemptions": null, + "redemptive": null, + "redeposit's": null, + "redetermination": null, + "Redford": [["M"]], + "Redford's": null, + "Redgrave": [["M"]], + "Redgrave's": null, + "redhead": [["D", "R", "M", "S"]], + "redheaded": null, + "redheader": null, + "redhead's": null, + "redheads": null, + "Redhook": [["M"]], + "Redhook's": null, + "redial": [["G"]], + "redialing": null, + "redirect": [["G"]], + "redirecting": null, + "redirection": null, + "redlining": [["S"]], + "redlinings": null, + "Redmond": [["M"]], + "Redmond's": null, + "redneck": [["S", "M", "D"]], + "rednecks": null, + "redneck's": null, + "rednecked": null, + "redness": [["M", "S"]], + "redness's": null, + "rednesses": null, + "redo": [["G"]], + "redoing": null, + "redolence": [["M", "S"]], + "redolence's": null, + "redolences": null, + "redolent": null, + "Redondo": [["M"]], + "Redondo's": null, + "redouble": [["S"]], + "redoubles": null, + "redoubtably": null, + "redound": [["G", "D", "S"]], + "redounding": null, + "redounded": null, + "redounds": null, + "red": [["P", "Y", "S"]], + "redly": null, + "reds": null, + "redshift": [["S"]], + "redshifts": null, + "redskin": [["S", "M"]], + "redskins": null, + "redskin's": null, + "Redstone": [["M"]], + "Redstone's": null, + "reduced": [["U"]], + "unreduced": null, + "reducer": [["M"]], + "reducer's": null, + "reduces": null, + "reducing": null, + "reducers": null, + "reducibility": [["M"]], + "reducibility's": null, + "reducible": null, + "reducibly": null, + "reductionism": [["M"]], + "reductionism's": null, + "reductionist": [["S"]], + "reductionists": null, + "reduction": [["S", "M"]], + "reductions": null, + "reduction's": null, + "reduct": [["V"]], + "reductive": null, + "redundancy": [["S", "M"]], + "redundancies": null, + "redundancy's": null, + "redundant": [["Y"]], + "redundantly": null, + "redwood": [["S", "M"]], + "redwoods": null, + "redwood's": null, + "redye": null, + "redyeing": null, + "Reeba": [["M"]], + "Reeba's": null, + "Reebok": [["M"]], + "Reebok's": null, + "Reece": [["M"]], + "Reece's": null, + "reecho": [["G"]], + "reechoing": null, + "reeding": [["M"]], + "reed's": null, + "reeded": null, + "reeder": null, + "reediness": [["S", "M"]], + "reedinesses": null, + "reediness's": null, + "reeding's": null, + "Reed": [["M"]], + "Reed's": null, + "Reedville": [["M"]], + "Reedville's": null, + "reedy": [["P", "T", "R"]], + "reediest": null, + "reedier": null, + "reefer": [["M"]], + "reefer's": null, + "reef": [["G", "Z", "S", "D", "R", "M"]], + "reefing": null, + "reefers": null, + "reefs": null, + "reefed": null, + "reef's": null, + "reeker": [["M"]], + "reeker's": null, + "reek": [["G", "S", "R"]], + "reeking": null, + "reeks": null, + "reeler": [["M"]], + "reeler's": null, + "reel's": null, + "unreel": null, + "unreels": null, + "unreeled": null, + "unreeling": null, + "reeled": null, + "reeling": null, + "Ree": [["M", "D", "S"]], + "Ree's": null, + "Rees": null, + "Reena": [["M"]], + "Reena's": null, + "reenforcement": null, + "reentrant": null, + "Reese": [["M"]], + "Reese's": null, + "reestimate": [["M"]], + "reestimate's": null, + "Reeta": [["M"]], + "Reeta's": null, + "Reeva": [["M"]], + "Reeva's": null, + "reeve": [["G"]], + "reeving": null, + "Reeves": null, + "reexamine": null, + "refection": [["S", "M"]], + "refections": null, + "refection's": null, + "refectory": [["S", "M"]], + "refectories": null, + "refectory's": null, + "referable": null, + "refereed": [["U"]], + "unrefereed": null, + "refereeing": null, + "referee": [["M", "S", "D"]], + "referee's": null, + "referees": null, + "reference": [["C", "G", "S", "R", "D"]], + "dereferencing": null, + "dereferences": null, + "dereferencer": null, + "dereferenced": null, + "referencing": [["U"]], + "references": null, + "referencer": null, + "referenced": [["U"]], + "unreferenced": null, + "reference's": null, + "unreferencing": null, + "referendum": [["M", "S"]], + "referendum's": null, + "referendums": null, + "referentiality": null, + "referential": [["Y", "M"]], + "referentially": null, + "referential's": null, + "referent": [["S", "M"]], + "referents": null, + "referent's": null, + "referral": [["S", "M"]], + "referrals": null, + "referral's": null, + "referred": null, + "referrer": [["S"]], + "referrers": null, + "referring": null, + "reffed": null, + "reffing": null, + "refile": null, + "refinance": null, + "unrefined": null, + "refinement": [["M", "S"]], + "refiners": null, + "refinement's": null, + "refinements": null, + "refinish": [["G"]], + "refinishing": null, + "refit": null, + "reflectance": [["M"]], + "reflectance's": null, + "reflected": [["U"]], + "unreflected": null, + "reflectional": null, + "reflection": [["S", "M"]], + "reflections": null, + "reflection's": null, + "reflectiveness": [["M"]], + "reflectiveness's": null, + "reflective": [["Y", "P"]], + "reflectively": null, + "reflectivity": [["M"]], + "reflectivity's": null, + "reflector": [["M", "S"]], + "reflector's": null, + "reflectors": null, + "reflect": [["S", "D", "G", "V"]], + "reflects": null, + "reflecting": null, + "reflexion": [["M", "S"]], + "reflexion's": null, + "reflexions": null, + "reflexiveness": [["M"]], + "reflexiveness's": null, + "reflexive": [["P", "S", "Y"]], + "reflexives": null, + "reflexively": null, + "reflexivity": [["M"]], + "reflexivity's": null, + "reflexly": null, + "reflooring": null, + "refluent": null, + "reflux": [["G"]], + "refluxing": null, + "refocus": [["G"]], + "refocusing": null, + "refold": [["G"]], + "refolding": null, + "reforestation": null, + "reforge": [["G"]], + "reforging": null, + "reformatory": [["S", "M"]], + "reformatories": null, + "reformatory's": null, + "reformable": null, + "unreformed": null, + "reformer's": null, + "reformism": [["M"]], + "reformism's": null, + "reformist": [["S"]], + "reformists": null, + "refract": [["D", "G", "V", "S"]], + "refracted": null, + "refracting": null, + "refractive": [["P", "Y"]], + "refracts": null, + "refractiveness": [["M"]], + "refractiveness's": null, + "refractively": null, + "refractometer": [["M", "S"]], + "refractometer's": null, + "refractometers": null, + "refractoriness": [["M"]], + "refractoriness's": null, + "refractory": [["P", "S"]], + "refractories": null, + "refrain": [["D", "G", "S"]], + "refrained": null, + "refraining": null, + "refrains": null, + "unrefreshed": null, + "refreshingly": null, + "refreshment": [["M", "S"]], + "refreshable": null, + "refreshment's": null, + "refreshments": null, + "refrigerant": [["M", "S"]], + "refrigerant's": null, + "refrigerants": null, + "refrigerated": [["U"]], + "unrefrigerated": null, + "refrigerate": [["X", "D", "S", "G", "N"]], + "refrigerations": null, + "refrigerates": null, + "refrigerating": null, + "refrigeration": [["M"]], + "refrigeration's": null, + "refrigerator": [["M", "S"]], + "refrigerator's": null, + "refrigerators": null, + "refrozen": null, + "refry": [["G", "S"]], + "refrying": null, + "refries": null, + "refugee": [["M", "S"]], + "refugee's": null, + "refugees": null, + "refuge": [["S", "D", "G", "M"]], + "refuges": null, + "refuged": null, + "refuging": null, + "refuge's": null, + "Refugio": [["M"]], + "Refugio's": null, + "refulgence": [["S", "M"]], + "refulgences": null, + "refulgence's": null, + "refulgent": null, + "refundable": null, + "refunder's": null, + "refurbishment": [["S"]], + "refurbishments": null, + "refusal": [["S", "M"]], + "refusals": null, + "refusal's": null, + "refuser": [["M"]], + "refuser's": null, + "refutation": [["M", "S"]], + "refutation's": null, + "refutations": null, + "refute": [["G", "Z", "R", "S", "D", "B"]], + "refuting": null, + "refuters": null, + "refuter": [["M"]], + "refutes": null, + "refuted": null, + "refutable": null, + "refuter's": null, + "refers": null, + "refs": null, + "reg": null, + "regalement": [["S"]], + "regalements": null, + "regaling": null, + "regally": null, + "regaler": null, + "regaled": null, + "regalia": [["M"]], + "regalia's": null, + "Regan": [["M"]], + "Regan's": null, + "regard": [["E", "G", "D", "S"]], + "disregard": null, + "disregarding": null, + "disregarded": null, + "disregards": null, + "regarding": null, + "regarded": null, + "regards": null, + "regardless": [["P", "Y"]], + "regardlessness": null, + "regardlessly": null, + "regather": [["G"]], + "regathering": null, + "regatta": [["M", "S"]], + "regatta's": null, + "regattas": null, + "regency": [["M", "S"]], + "regency's": null, + "regencies": null, + "regeneracy": [["M", "S"]], + "regeneracy's": null, + "regeneracies": null, + "regenerately": null, + "regenerateness": [["M"]], + "regenerateness's": null, + "unregenerate": null, + "Regen": [["M"]], + "Regen's": null, + "reggae": [["S", "M"]], + "reggaes": null, + "reggae's": null, + "Reggie": [["M"]], + "Reggie's": null, + "Reggi": [["M", "S"]], + "Reggi's": null, + "Reggis": null, + "Reggy": [["M"]], + "Reggy's": null, + "regicide": [["S", "M"]], + "regicides": null, + "regicide's": null, + "regime": [["M", "S"]], + "regime's": null, + "regimes": null, + "regimen": [["M", "S"]], + "regimen's": null, + "regimens": null, + "regimental": [["S"]], + "regimentals": null, + "regimentation": [["M", "S"]], + "regimentation's": null, + "regimentations": null, + "regiment": [["S", "D", "M", "G"]], + "regiments": null, + "regimented": null, + "regiment's": null, + "regimenting": null, + "Reginae": null, + "Reginald": [["M"]], + "Reginald's": null, + "Regina": [["M"]], + "Regina's": null, + "Reginauld": [["M"]], + "Reginauld's": null, + "Regine": [["M"]], + "Regine's": null, + "regionalism": [["M", "S"]], + "regionalism's": null, + "regionalisms": null, + "regional": [["S", "Y"]], + "regionals": null, + "regionally": null, + "region": [["S", "M"]], + "regions": null, + "region's": null, + "Regis": [["M"]], + "Regis's": null, + "register's": null, + "register": [["U", "D", "S", "G"]], + "unregister": null, + "unregistered": null, + "unregisters": null, + "unregistering": null, + "registered": null, + "registers": null, + "registering": null, + "registrable": null, + "registrant": [["S", "M"]], + "registrants": null, + "registrant's": null, + "registrar": [["S", "M"]], + "registrars": null, + "registrar's": null, + "registration": [["A", "M"]], + "reregistration": null, + "reregistration's": null, + "registration's": null, + "registrations": null, + "registry": [["M", "S"]], + "registry's": null, + "registries": null, + "Reg": [["M", "N"]], + "Reg's": null, + "regnant": null, + "Regor": [["M"]], + "Regor's": null, + "regress": [["D", "S", "G", "V"]], + "regressed": null, + "regresses": null, + "regressing": null, + "regressive": [["P", "Y"]], + "regression": [["M", "S"]], + "regression's": null, + "regressions": null, + "regressiveness": [["M"]], + "regressiveness's": null, + "regressively": null, + "regressors": null, + "regretfulness": [["M"]], + "regretfulness's": null, + "regretful": [["P", "Y"]], + "regretfully": null, + "regret": [["S"]], + "regrets": null, + "regrettable": null, + "regrettably": null, + "regretted": null, + "regretting": null, + "reground": null, + "regroup": [["G"]], + "regrouping": null, + "regrow": [["G"]], + "regrowing": null, + "regularity": [["M", "S"]], + "regularity's": null, + "regularities": null, + "regularization": [["M", "S"]], + "regularization's": null, + "regularizations": null, + "regularize": [["S", "D", "G"]], + "regularizes": null, + "regularized": null, + "regularizing": null, + "regular": [["Y", "S"]], + "regularly": null, + "regulars": null, + "regulate": [["C", "S", "D", "X", "N", "G"]], + "deregulate": null, + "deregulates": null, + "deregulated": null, + "deregulations": null, + "deregulation": null, + "deregulating": null, + "regulates": null, + "regulated": [["U"]], + "regulations": null, + "regulation": [["M"]], + "regulating": null, + "unregulated": null, + "regulation's": null, + "regulative": null, + "regulator": [["S", "M"]], + "regulators": null, + "regulator's": null, + "regulatory": null, + "Regulus": [["M"]], + "Regulus's": null, + "regurgitate": [["X", "G", "N", "S", "D"]], + "regurgitations": null, + "regurgitating": null, + "regurgitation": [["M"]], + "regurgitates": null, + "regurgitated": null, + "regurgitation's": null, + "rehabbed": null, + "rehabbing": null, + "rehabilitate": [["S", "D", "X", "V", "G", "N"]], + "rehabilitates": null, + "rehabilitated": null, + "rehabilitations": null, + "rehabilitative": null, + "rehabilitating": null, + "rehabilitation": [["M"]], + "rehabilitation's": null, + "rehab": [["S"]], + "rehabs": null, + "rehang": [["G"]], + "rehanging": null, + "rehear": [["G", "J"]], + "rehearings": null, + "rehearsal": [["S", "M"]], + "rehearsals": null, + "rehearsal's": null, + "rehearse": null, + "unrehearsed": null, + "rehearser": [["M"]], + "rehearser's": null, + "reheat": [["G"]], + "reheating": [["M"]], + "reheating's": null, + "Rehnquist": null, + "rehydrate": null, + "Reichenberg": [["M"]], + "Reichenberg's": null, + "Reich": [["M"]], + "Reich's": null, + "Reichstags": null, + "Reichstag's": null, + "Reidar": [["M"]], + "Reidar's": null, + "Reider": [["M"]], + "Reider's": null, + "Reid": [["M", "R"]], + "Reid's": null, + "reign": [["M", "D", "S", "G"]], + "reign's": null, + "reigned": null, + "reigns": null, + "reigning": null, + "Reiko": [["M"]], + "Reiko's": null, + "Reilly": [["M"]], + "Reilly's": null, + "reimburse": [["G", "S", "D", "B", "L"]], + "reimbursing": null, + "reimburses": null, + "reimbursed": null, + "reimbursable": null, + "reimbursement": [["M", "S"]], + "reimbursement's": null, + "reimbursements": null, + "Reinald": [["M"]], + "Reinald's": null, + "Reinaldo": [["M", "S"]], + "Reinaldo's": null, + "Reinaldos": null, + "Reina": [["M"]], + "Reina's": null, + "reindeer": [["M"]], + "reindeer's": null, + "Reine": [["M"]], + "Reine's": null, + "reinforced": [["U"]], + "unreinforced": null, + "reinforce": [["G", "S", "R", "D", "L"]], + "reinforcing": null, + "reinforces": null, + "reinforcer": [["M"]], + "reinforcement": [["M", "S"]], + "reinforcement's": null, + "reinforcements": null, + "reinforcer's": null, + "reining": null, + "reined": null, + "rein's": null, + "Reinhard": [["M"]], + "Reinhard's": null, + "Reinhardt": [["M"]], + "Reinhardt's": null, + "Reinhold": [["M"]], + "Reinhold's": null, + "Reinold": [["M"]], + "Reinold's": null, + "reinstatement": [["M", "S"]], + "reinstatement's": null, + "reinstatements": null, + "reinsurance": null, + "Reinwald": [["M"]], + "Reinwald's": null, + "reissue": null, + "REIT": null, + "reiteratives": null, + "reiterativeness": null, + "rejecter": [["M"]], + "rejecter's": null, + "rejecting": [["Y"]], + "rejectingly": null, + "rejection": [["S", "M"]], + "rejections": null, + "rejection's": null, + "rejector": [["M", "S"]], + "rejector's": null, + "rejectors": null, + "reject": [["R", "D", "V", "G", "S"]], + "rejected": null, + "rejective": null, + "rejects": null, + "rejigger": null, + "rejoice": [["R", "S", "D", "J", "G"]], + "rejoicer": null, + "rejoices": null, + "rejoiced": null, + "rejoicings": null, + "rejoicing": [["Y"]], + "rejoicingly": null, + "rejoinder": [["S", "M"]], + "rejoinders": null, + "rejoinder's": null, + "rejuvenate": [["N", "G", "S", "D", "X"]], + "rejuvenation": null, + "rejuvenating": null, + "rejuvenates": null, + "rejuvenated": null, + "rejuvenations": null, + "rejuvenatory": null, + "relapse": null, + "relatedly": null, + "relatedness": [["M", "S"]], + "relatedness's": null, + "relatednesses": null, + "unrelated": null, + "relater's": null, + "relations": null, + "relative": [["S", "P", "Y"]], + "relation": [["M"]], + "relating": null, + "relates": null, + "relaters": null, + "relational": [["Y"]], + "relationally": null, + "relation's": null, + "relationship": [["M", "S"]], + "relationship's": null, + "relationships": null, + "relativeness": [["M"]], + "relativeness's": null, + "relatives": null, + "relatively": null, + "relativism": [["M"]], + "relativism's": null, + "relativistic": null, + "relativistically": null, + "relativist": [["M", "S"]], + "relativist's": null, + "relativists": null, + "relativity": [["M", "S"]], + "relativity's": null, + "relativities": null, + "relator's": null, + "relaxant": [["S", "M"]], + "relaxants": null, + "relaxant's": null, + "relaxation": [["M", "S"]], + "relaxation's": null, + "relaxations": null, + "relaxedness": [["M"]], + "relaxedness's": null, + "relaxed": [["Y", "P"]], + "relaxedly": null, + "relax": [["G", "Z", "D"]], + "relaxing": [["Y"]], + "relaxers": null, + "relaxingly": null, + "relay": [["G", "D", "M"]], + "relaying": null, + "relayed": null, + "relay's": null, + "relearn": [["G"]], + "relearning": null, + "releasable": [["U"]], + "unreleasable": null, + "unreleased": null, + "relenting": [["U"]], + "unrelenting": [["Y"]], + "relentlessness": [["S", "M"]], + "relentlessnesses": null, + "relentlessness's": null, + "relentless": [["P", "Y"]], + "relentlessly": null, + "relents": null, + "relented": null, + "relevance": [["S", "M"]], + "relevances": null, + "relevance's": null, + "relevancy": [["M", "S"]], + "relevancy's": null, + "relevancies": null, + "relevant": [["Y"]], + "relevantly": null, + "unreliability": null, + "unreliability's": null, + "unreliabilities": null, + "reliables": null, + "unreliable": null, + "reliably": [["U"]], + "unreliably": null, + "reliance": [["M", "S"]], + "reliance's": null, + "reliances": null, + "reliant": [["Y"]], + "reliantly": null, + "relicense": [["R"]], + "relicenser": null, + "relic": [["M", "S"]], + "relic's": null, + "relics": null, + "relict": [["C"]], + "relict's": null, + "relief": [["M"]], + "relief's": null, + "relievedly": null, + "relieved": [["U"]], + "unrelieved": null, + "reliever": [["M"]], + "reliever's": null, + "relieve": [["R", "S", "D", "Z", "G"]], + "relieves": null, + "relievers": null, + "relieving": null, + "religionists": null, + "religion": [["S", "M"]], + "religions": null, + "religion's": null, + "religiosity": [["M"]], + "religiosity's": null, + "religiousness": [["M", "S"]], + "religiousness's": null, + "religiousnesses": null, + "religious": [["P", "Y"]], + "religiously": null, + "relink": [["G"]], + "relinking": null, + "relinquish": [["G", "S", "D", "L"]], + "relinquishing": null, + "relinquishes": null, + "relinquished": null, + "relinquishment": [["S", "M"]], + "relinquishments": null, + "relinquishment's": null, + "reliquary": [["M", "S"]], + "reliquary's": null, + "reliquaries": null, + "relish": [["G", "S", "D"]], + "relishing": null, + "relishes": null, + "relished": null, + "relive": [["G", "B"]], + "reliving": null, + "relivable": null, + "reload": [["G", "R"]], + "reloading": null, + "reloader": null, + "relocatable": null, + "reluctance": [["M", "S"]], + "reluctance's": null, + "reluctances": null, + "reluctant": [["Y"]], + "reluctantly": null, + "rel": [["V"]], + "rely": [["D", "G"]], + "relied": null, + "relying": null, + "Re": [["M"]], + "Re's": null, + "remades": null, + "remainder": [["S", "G", "M", "D"]], + "remainders": null, + "remaindering": null, + "remainder's": null, + "remaindered": null, + "remaining": null, + "remained": null, + "remake's": null, + "remand": [["D", "G", "S"]], + "remanded": null, + "remanding": null, + "remands": null, + "remap": null, + "remapping": null, + "remarkableness": [["S"]], + "remarkablenesses": null, + "remarkable": [["U"]], + "unremarkable": null, + "remarkably": null, + "remark": [["B", "G"]], + "remarking": null, + "unremarked": null, + "Remarque": [["M"]], + "Remarque's": null, + "rematch": [["G"]], + "rematching": null, + "Rembrandt": [["M"]], + "Rembrandt's": null, + "remeasure": [["D"]], + "remeasured": null, + "remediableness": [["M"]], + "remediableness's": null, + "remediable": [["P"]], + "remedy": [["S", "D", "M", "G"]], + "remedies": null, + "remedied": null, + "remedy's": null, + "remedying": null, + "unremembered": null, + "rememberer": [["M"]], + "rememberer's": null, + "remember": [["G", "R"]], + "remembering": null, + "remembrance": [["M", "R", "S"]], + "remembrance's": null, + "remembrancer": [["M"]], + "remembrances": null, + "remembrancer's": null, + "Remington": [["M"]], + "Remington's": null, + "reminisce": [["G", "S", "D"]], + "reminiscing": null, + "reminisces": null, + "reminisced": null, + "reminiscence": [["S", "M"]], + "reminiscences": null, + "reminiscence's": null, + "reminiscent": [["Y"]], + "reminiscently": null, + "remissness": [["M", "S"]], + "remissness's": null, + "remissnesses": null, + "remiss": [["Y", "P"]], + "remissly": null, + "remit": [["S"]], + "remits": null, + "remittance": [["M", "S"]], + "remittance's": null, + "remittances": null, + "remitted": null, + "remitting": [["U"]], + "unremitting": [["Y"]], + "Rem": [["M"]], + "Rem's": null, + "remnant": [["M", "S"]], + "remnant's": null, + "remnants": null, + "remodel": [["G"]], + "remodeling": null, + "remolding": null, + "remonstrant": [["M", "S"]], + "remonstrant's": null, + "remonstrants": null, + "remonstrate": [["S", "D", "X", "V", "N", "G"]], + "remonstrates": null, + "remonstrated": null, + "remonstrations": null, + "remonstrative": [["Y"]], + "remonstration": [["M"]], + "remonstrating": null, + "remonstration's": null, + "remonstratively": null, + "remorsefulness": [["M"]], + "remorsefulness's": null, + "remorseful": [["P", "Y"]], + "remorsefully": null, + "remorselessness": [["M", "S"]], + "remorselessness's": null, + "remorselessnesses": null, + "remorseless": [["Y", "P"]], + "remorselessly": null, + "remorse": [["S", "M"]], + "remorses": null, + "remorse's": null, + "remoteness": [["M", "S"]], + "remoteness's": null, + "remotenesses": null, + "remoter": null, + "remotest": null, + "remotely": null, + "remoulds": null, + "removal": [["M", "S"]], + "removal's": null, + "removals": null, + "REM": [["S"]], + "REMs": null, + "remunerated": [["U"]], + "unremunerated": null, + "remunerate": [["V", "N", "G", "X", "S", "D"]], + "remunerative": [["Y", "P"]], + "remuneration": [["M"]], + "remunerating": null, + "remunerations": null, + "remunerates": null, + "remuneration's": null, + "remunerativeness": [["M"]], + "remunerativeness's": null, + "remuneratively": null, + "Remus": [["M"]], + "Remus's": null, + "Remy": [["M"]], + "Remy's": null, + "Renado": [["M"]], + "Renado's": null, + "Renae": [["M"]], + "Renae's": null, + "renaissance": [["S"]], + "renaissances": null, + "Renaissance": [["S", "M"]], + "Renaissances": null, + "Renaissance's": null, + "renal": null, + "Renaldo": [["M"]], + "Renaldo's": null, + "Rena": [["M"]], + "Rena's": null, + "Renard": [["M"]], + "Renard's": null, + "Renascence": [["S", "M"]], + "Renascences": null, + "Renascence's": null, + "Renata": [["M"]], + "Renata's": null, + "Renate": [["M"]], + "Renate's": null, + "Renato": [["M"]], + "Renato's": null, + "renaturation": null, + "Renaud": [["M"]], + "Renaud's": null, + "Renault": [["M", "S"]], + "Renault's": null, + "Renaults": null, + "rend": [["R", "G", "Z", "S"]], + "renderer": [["M"]], + "renderer's": null, + "render": [["G", "J", "R", "D"]], + "rendering": [["M"]], + "renderings": null, + "rendered": null, + "rendering's": null, + "rendezvous": [["D", "S", "M", "G"]], + "rendezvoused": null, + "rendezvouses": null, + "rendezvous's": null, + "rendezvousing": null, + "rendition": [["G", "S", "D", "M"]], + "renditioning": null, + "renditions": null, + "renditioned": null, + "rendition's": null, + "rending": null, + "renders": null, + "rends": null, + "Renee": [["M"]], + "Renee's": null, + "renegade": [["S", "D", "M", "G"]], + "renegades": null, + "renegaded": null, + "renegade's": null, + "renegading": null, + "renege": [["G", "Z", "R", "S", "D"]], + "reneging": null, + "renegers": null, + "reneger": [["M"]], + "reneges": null, + "reneged": null, + "reneger's": null, + "Renelle": [["M"]], + "Renelle's": null, + "Renell": [["M"]], + "Renell's": null, + "Rene": [["M"]], + "Rene's": null, + "renewal": [["M", "S"]], + "renewal's": null, + "renewals": null, + "renew": [["B", "G"]], + "renewable": null, + "renewing": null, + "renewer's": null, + "Renie": [["M"]], + "Renie's": null, + "rennet": [["M", "S"]], + "rennet's": null, + "rennets": null, + "Rennie": [["M"]], + "Rennie's": null, + "rennin": [["S", "M"]], + "rennins": null, + "rennin's": null, + "Renoir": [["M"]], + "Renoir's": null, + "Reno": [["M"]], + "Reno's": null, + "renounce": [["L", "G", "R", "S", "D"]], + "renouncement": [["M", "S"]], + "renouncing": null, + "renouncer": [["M"]], + "renounces": null, + "renounced": null, + "renouncement's": null, + "renouncements": null, + "renouncer's": null, + "renovate": [["N", "G", "X", "S", "D"]], + "renovation": [["M"]], + "renovating": null, + "renovations": null, + "renovates": null, + "renovated": null, + "renovation's": null, + "renovator": [["S", "M"]], + "renovators": null, + "renovator's": null, + "renown": [["S", "G", "D", "M"]], + "renowns": null, + "renowning": null, + "renowned": null, + "renown's": null, + "Rensselaer": [["M"]], + "Rensselaer's": null, + "rentaller": null, + "rental": [["S", "M"]], + "rentals": null, + "rental's": null, + "renter": [["M"]], + "renter's": null, + "rent": [["G", "Z", "M", "D", "R", "S"]], + "renting": null, + "renters": null, + "rent's": null, + "rented": null, + "rents": null, + "renumber": [["G"]], + "renumbering": null, + "renumeration": null, + "renunciate": [["V", "N", "X"]], + "renunciative": null, + "renunciation": [["M"]], + "renunciations": null, + "renunciation's": null, + "Renville": [["M"]], + "Renville's": null, + "reoccupy": [["G"]], + "reoccupying": null, + "reopen": [["G"]], + "reopening": null, + "unreorganized": null, + "repack": [["G"]], + "repacking": null, + "repairable": [["U"]], + "unrepairable": null, + "repair": [["B", "Z", "G", "R"]], + "repairers": null, + "repairing": null, + "repairer": [["M"]], + "repairer's": null, + "repairman": [["M"]], + "repairman's": null, + "repairmen": null, + "disrepairs": null, + "repaper": null, + "reparable": null, + "reparation": [["S", "M"]], + "reparations": null, + "reparation's": null, + "reparteeing": null, + "repartee": [["M", "D", "S"]], + "repartee's": null, + "reparteed": null, + "repartees": null, + "repartitioners": null, + "repast": [["G"]], + "repasting": null, + "repatriate": [["S", "D", "X", "N", "G"]], + "repatriates": null, + "repatriated": null, + "repatriations": null, + "repatriation": null, + "repatriating": null, + "repave": null, + "repealer": [["M"]], + "repealer's": null, + "repeal": [["G", "R"]], + "repealing": null, + "repeatability": [["M"]], + "repeatability's": null, + "repeatable": [["U"]], + "unrepeatable": null, + "repeatably": null, + "repeated": [["Y"]], + "repeatedly": null, + "repeater": [["M"]], + "repeater's": null, + "repeat": [["R", "D", "J", "B", "Z", "G"]], + "repeatings": null, + "repeaters": null, + "repeating": null, + "repelled": null, + "repellent": [["S", "Y"]], + "repellents": null, + "repellently": null, + "repelling": [["Y"]], + "repellingly": null, + "repel": [["S"]], + "repels": null, + "repentance": [["S", "M"]], + "repentances": null, + "repentance's": null, + "repentant": [["S", "Y"]], + "repentants": null, + "repentantly": null, + "repenter": null, + "repented": null, + "repenting": null, + "repertoire": [["S", "M"]], + "repertoires": null, + "repertoire's": null, + "repertory": [["S", "M"]], + "repertories": null, + "repertory's": null, + "repetition": null, + "repetitiousness": [["S"]], + "repetitiousnesses": null, + "repetitious": [["Y", "P"]], + "repetitiously": null, + "repetitiveness": [["M", "S"]], + "repetitiveness's": null, + "repetitivenesses": null, + "repetitive": [["P", "Y"]], + "repetitively": null, + "repine": [["R"]], + "repiner": [["M"]], + "repiner's": null, + "replace": [["R", "L"]], + "replacer": null, + "replay": [["G", "M"]], + "replaying": null, + "replay's": null, + "replenish": [["L", "R", "S", "D", "G"]], + "replenishment": [["S"]], + "replenisher": null, + "replenishes": null, + "replenished": null, + "replenishing": null, + "replenishments": null, + "repleteness": [["M", "S"]], + "repleteness's": null, + "repletenesses": null, + "replete": [["S", "D", "P", "X", "G", "N"]], + "repletes": null, + "repleted": null, + "repletions": null, + "repleting": null, + "repletion": [["M"]], + "repletion's": null, + "replica": [["S", "M"]], + "replicas": null, + "replica's": null, + "replicate": [["S", "D", "V", "G"]], + "replicates": null, + "replicated": null, + "replicative": null, + "replicating": null, + "replicator": [["S"]], + "replicators": null, + "replug": null, + "replications": null, + "Rep": [["M"]], + "Rep's": null, + "repopulate": null, + "reportedly": null, + "reportorial": [["Y"]], + "reportorially": null, + "reposeful": null, + "repose": [["M"]], + "repose's": null, + "repository": [["M", "S"]], + "repository's": null, + "repositories": null, + "reprehend": [["G", "D", "S"]], + "reprehending": null, + "reprehended": null, + "reprehends": null, + "reprehensibility": [["M", "S"]], + "reprehensibility's": null, + "reprehensibilities": null, + "reprehensibleness": [["M"]], + "reprehensibleness's": null, + "reprehensible": [["P"]], + "reprehensibly": null, + "reprehension": [["M", "S"]], + "reprehension's": null, + "reprehensions": null, + "representable": [["U"]], + "unrepresentable": null, + "representationally": null, + "representativeness": [["M"]], + "representativeness's": null, + "Representative": [["S"]], + "Representatives": null, + "representative": [["S", "Y", "M", "P"]], + "representatives": null, + "representatively": null, + "representative's": null, + "representativity": null, + "unrepresented": null, + "represent": [["G", "B"]], + "representing": null, + "repression": [["S", "M"]], + "repressions": null, + "repression's": null, + "repressiveness": [["M"]], + "repressiveness's": null, + "repressive": [["Y", "P"]], + "repressively": null, + "reprieve": [["G", "D", "S"]], + "reprieving": null, + "reprieved": null, + "reprieves": null, + "reprimand": [["S", "G", "M", "D"]], + "reprimands": null, + "reprimanding": null, + "reprimand's": null, + "reprimanded": null, + "reprint's": null, + "reprisal": [["M", "S"]], + "reprisal's": null, + "reprisals": null, + "reproacher": [["M"]], + "reproacher's": null, + "reproachfulness": [["M"]], + "reproachfulness's": null, + "reproachful": [["Y", "P"]], + "reproachfully": null, + "reproach": [["G", "R", "S", "D", "B"]], + "reproaching": [["Y"]], + "reproaches": null, + "reproached": null, + "reproachable": null, + "reproachingly": null, + "reprobate": [["N"]], + "reprobation": null, + "reprocess": [["G"]], + "reprocessing": null, + "reproducibility": [["M", "S"]], + "reproducibility's": null, + "reproducibilities": null, + "reproducibles": null, + "reproducibly": null, + "reproductive": [["S"]], + "reproductives": null, + "reproofing": null, + "reprover": null, + "reprovingly": null, + "rep": [["S"]], + "reps": null, + "reptile": [["S", "M"]], + "reptiles": null, + "reptile's": null, + "reptilian": [["S"]], + "reptilians": null, + "Republicanism": [["S"]], + "Republicanisms": null, + "republicanism": [["S", "M"]], + "republicanisms": null, + "republicanism's": null, + "Republican": [["S"]], + "Republicans": null, + "republic": [["M"]], + "republic's": null, + "republish": [["G"]], + "republishing": null, + "repudiate": [["X", "G", "N", "S", "D"]], + "repudiations": null, + "repudiating": null, + "repudiation": [["M"]], + "repudiates": null, + "repudiated": null, + "repudiation's": null, + "repudiator": [["S"]], + "repudiators": null, + "repugnance": [["M", "S"]], + "repugnance's": null, + "repugnances": null, + "repugnant": [["Y"]], + "repugnantly": null, + "repulsive": [["P", "Y"]], + "repulsion": [["M"]], + "repulsions": null, + "repulsion's": null, + "repulsiveness": [["M", "S"]], + "repulsiveness's": null, + "repulsivenesses": null, + "repulsively": null, + "reputability": [["S", "M"]], + "reputabilities": null, + "reputability's": null, + "reputably": [["E"]], + "disreputably": null, + "reputation": [["S", "M"]], + "reputations": null, + "reputation's": null, + "reputed": [["Y"]], + "reputedly": null, + "repute": [["E", "S", "B"]], + "disreputes": null, + "reputes": null, + "reputable": null, + "reputing": null, + "unrequested": null, + "request": [["G"]], + "requesting": null, + "Requiem": [["M", "S"]], + "Requiem's": null, + "Requiems": null, + "requiem": [["S", "M"]], + "requiems": null, + "requiem's": null, + "require": [["L", "R"]], + "requirement": [["M", "S"]], + "requirer": null, + "requirement's": null, + "requirements": null, + "requisiteness": [["M"]], + "requisiteness's": null, + "requisite": [["P", "N", "X", "S"]], + "requisition": [["G", "D", "R", "M"]], + "requisitions": null, + "requisites": null, + "requisitioner": [["M"]], + "requisitioner's": null, + "requisitioning": null, + "requisitioned": null, + "requisition's": null, + "requital": [["M", "S"]], + "requital's": null, + "requitals": null, + "unrequited": null, + "requiter": [["M"]], + "requiter's": null, + "requiters": null, + "reread": [["G"]], + "rereading": null, + "rerecord": [["G"]], + "rerecording": null, + "rerouteing": null, + "rerunning": null, + "res": [["C"]], + "deres": null, + "rescale": null, + "rescind": [["S", "D", "R", "G"]], + "rescinds": null, + "rescinded": null, + "rescinder": null, + "rescinding": null, + "rescission": [["S", "M"]], + "rescissions": null, + "rescission's": null, + "rescue": [["G", "Z", "R", "S", "D"]], + "rescuing": null, + "rescuers": null, + "rescuer": null, + "rescues": null, + "rescued": null, + "reseal": [["B", "G"]], + "resealable": null, + "resealing": null, + "research": [["M", "B"]], + "research's": null, + "researchable": null, + "reselect": [["G"]], + "reselecting": null, + "resemblant": null, + "resemble": [["D", "S", "G"]], + "resembled": null, + "resembles": null, + "resembling": null, + "resend": [["G"]], + "resending": null, + "resent": [["D", "S", "L", "G"]], + "resented": null, + "resents": null, + "resentment": [["M", "S"]], + "resenting": null, + "resentfulness": [["S", "M"]], + "resentfulnesses": null, + "resentfulness's": null, + "resentful": [["P", "Y"]], + "resentfully": null, + "resentment's": null, + "resentments": null, + "reserpine": [["M", "S"]], + "reserpine's": null, + "reserpines": null, + "reservation": [["M", "S"]], + "reservation's": null, + "reservations": null, + "reservednesses": null, + "reservedness": [["U", "M"]], + "unreservedness": null, + "unreservedness's": null, + "reservedness's": null, + "reserved": [["U", "Y", "P"]], + "unreserved": null, + "unreservedly": null, + "reservedly": null, + "reservist": [["S", "M"]], + "reservists": null, + "reservist's": null, + "reservoir": [["M", "S"]], + "reservoir's": null, + "reservoirs": null, + "reset": [["R", "D", "G"]], + "reseter": null, + "reseted": null, + "reseting": null, + "resettle": [["L"]], + "resettlement": null, + "reshipping": null, + "reshow": [["G"]], + "reshowing": null, + "reshuffle": [["M"]], + "reshuffle's": null, + "reside": [["G"]], + "residing": null, + "residence": [["M", "S"]], + "residence's": null, + "residences": null, + "residency": [["S", "M"]], + "residencies": null, + "residency's": null, + "residential": [["Y"]], + "residentially": null, + "resident": [["S", "M"]], + "residents": null, + "resident's": null, + "resider": [["M"]], + "resider's": null, + "residua": null, + "residual": [["Y", "S"]], + "residually": null, + "residuals": null, + "residuary": null, + "residue": [["S", "M"]], + "residues": null, + "residue's": null, + "residuum": [["M"]], + "residuum's": null, + "resignation": [["M", "S"]], + "resignation's": null, + "resignations": null, + "resigned": [["Y", "P"]], + "resignedly": null, + "resignedness": null, + "resilience": [["M", "S"]], + "resilience's": null, + "resiliences": null, + "resiliency": [["S"]], + "resiliencies": null, + "resilient": [["Y"]], + "resiliently": null, + "resin": [["D"]], + "resined": null, + "resinlike": null, + "resinous": null, + "resiny": null, + "resistance": [["S", "M"]], + "resistances": null, + "resistance's": null, + "Resistance": [["S", "M"]], + "Resistances": null, + "Resistance's": null, + "resistantly": null, + "resistants": null, + "resistant": [["U"]], + "unresistant": null, + "resisted": [["U"]], + "unresisted": null, + "resistible": null, + "resistibly": null, + "resisting": [["U"]], + "unresisting": null, + "resistiveness": [["M"]], + "resistiveness's": null, + "resistive": [["P", "Y"]], + "resistively": null, + "resistivity": [["M"]], + "resistivity's": null, + "resistless": null, + "resistor": [["M", "S"]], + "resistor's": null, + "resistors": null, + "resist": [["R", "D", "Z", "V", "G", "S"]], + "resister": null, + "resisters": null, + "resists": null, + "resize": [["G"]], + "resizing": null, + "resold": null, + "resole": [["G"]], + "resoling": null, + "resoluble": null, + "resoluteness": [["M", "S"]], + "resoluteness's": null, + "resolutenesses": null, + "resolute": [["P", "Y", "T", "R", "V"]], + "resolutely": null, + "resolutest": null, + "resoluter": null, + "resolutive": null, + "resolvability": [["M"]], + "resolvability's": null, + "resolvable": [["U"]], + "unresolvable": null, + "resolved": [["U"]], + "unresolved": null, + "resolvent": null, + "resonance": [["S", "M"]], + "resonances": null, + "resonance's": null, + "resonant": [["Y", "S"]], + "resonantly": null, + "resonants": null, + "resonate": [["D", "S", "G"]], + "resonated": null, + "resonates": null, + "resonating": null, + "resonator": [["M", "S"]], + "resonator's": null, + "resonators": null, + "resorption": [["M", "S"]], + "resorption's": null, + "resorptions": null, + "resort": [["R"]], + "resorter": null, + "resound": [["G"]], + "resounding": null, + "resourcefulness": [["S", "M"]], + "resourcefulnesses": null, + "resourcefulness's": null, + "resourceful": [["P", "Y"]], + "resourcefully": null, + "resp": null, + "respectability": [["S", "M"]], + "respectabilities": null, + "respectability's": null, + "respectable": [["S", "P"]], + "respectables": null, + "respectableness": null, + "respectably": null, + "respect": [["B", "S", "D", "R", "M", "Z", "G", "V"]], + "respects": [["E"]], + "respected": [["E"]], + "respecter": null, + "respect's": [["E"]], + "respecters": null, + "respecting": [["E"]], + "respective": [["P", "Y"]], + "disrespected": null, + "respectful": [["E", "Y"]], + "disrespectful": null, + "disrespectfully": null, + "respectfully": null, + "respectfulness": [["S", "M"]], + "respectfulnesses": null, + "respectfulness's": null, + "disrespecting": null, + "respectiveness": [["M"]], + "respectiveness's": null, + "respectively": null, + "disrespect's": null, + "disrespects": null, + "respell": [["G"]], + "respelling": null, + "respiration": [["M", "S"]], + "respiration's": null, + "respirations": null, + "respirator": [["S", "M"]], + "respirators": null, + "respirator's": null, + "respiratory": [["M"]], + "respiratory's": null, + "resplendence": [["M", "S"]], + "resplendence's": null, + "resplendences": null, + "resplendent": [["Y"]], + "resplendently": null, + "respondent": [["M", "S"]], + "respondent's": null, + "respondents": null, + "respond": [["S", "D", "R", "Z", "G"]], + "responds": null, + "responded": null, + "responder": null, + "responders": null, + "responding": null, + "responser": [["M"]], + "responser's": null, + "response": [["R", "S", "X", "M", "V"]], + "responses": null, + "responsions": null, + "response's": null, + "responsive": [["Y", "P", "U"]], + "responsibility": [["M", "S"]], + "responsibility's": null, + "responsibilities": null, + "responsibleness": [["M"]], + "responsibleness's": null, + "responsible": [["P"]], + "responsibly": null, + "responsiveness": [["M", "S", "U"]], + "responsiveness's": null, + "unresponsiveness's": null, + "responsivenesses": null, + "unresponsivenesses": null, + "unresponsiveness": null, + "responsively": null, + "unresponsively": null, + "unresponsive": null, + "respray": [["G"]], + "respraying": null, + "restart": [["B"]], + "restartable": null, + "restate": [["L"]], + "restatement": null, + "restaurant": [["S", "M"]], + "restaurants": null, + "restaurant's": null, + "restaurateur": [["S", "M"]], + "restaurateurs": null, + "restaurateur's": null, + "rest": [["D", "R", "S", "G", "V", "M"]], + "rested": [["U"]], + "rester": [["M"]], + "rests": [["U"]], + "resting": null, + "restive": [["P", "Y"]], + "rest's": [["U"]], + "unrested": null, + "rester's": null, + "restfuller": null, + "restfullest": null, + "restfulness": [["M", "S"]], + "restfulness's": null, + "restfulnesses": null, + "restful": [["Y", "P"]], + "restfully": null, + "restitution": [["S", "M"]], + "restitutions": null, + "restitution's": null, + "restiveness": [["S", "M"]], + "restivenesses": null, + "restiveness's": null, + "restively": null, + "restlessness": [["M", "S"]], + "restlessness's": null, + "restlessnesses": null, + "restless": [["Y", "P"]], + "restlessly": null, + "restorability": null, + "Restoration": [["M"]], + "Restoration's": null, + "restoration": [["M", "S"]], + "restoration's": null, + "restorations": null, + "restorative": [["P", "Y", "S"]], + "restorativeness": null, + "restoratively": null, + "restoratives": null, + "restorer": [["M"]], + "restorer's": null, + "restore": [["Z"]], + "restorers": null, + "restrained": [["U", "Y"]], + "unrestrained": [["P"]], + "unrestrainedly": null, + "restrainedly": null, + "restraint": [["M", "S"]], + "restraint's": null, + "restraints": null, + "restrict": [["D", "V", "G", "S"]], + "restricted": [["Y", "U"]], + "restrictive": [["U"]], + "restricting": null, + "restricts": null, + "restrictedly": null, + "unrestrictedly": null, + "unrestricted": null, + "restriction": [["S", "M"]], + "restrictions": null, + "restriction's": null, + "restrictively": null, + "restrictiveness": [["M", "S"]], + "restrictiveness's": null, + "restrictivenesses": null, + "restrictives": null, + "unrestrictive": null, + "restroom": [["S", "M"]], + "restrooms": null, + "restroom's": null, + "restructurability": null, + "restructure": null, + "unrest's": null, + "unrests": null, + "restudy": [["M"]], + "restudy's": null, + "restyle": null, + "resubstitute": null, + "resultant": [["Y", "S"]], + "resultantly": null, + "resultants": null, + "result": [["S", "G", "M", "D"]], + "results": null, + "resulting": null, + "result's": null, + "resulted": null, + "resume": [["S", "D", "B", "G"]], + "resumes": null, + "resumed": null, + "resumable": null, + "resuming": null, + "resumption": [["M", "S"]], + "resumption's": null, + "resumptions": null, + "resurface": null, + "resurgence": [["M", "S"]], + "resurgence's": null, + "resurgences": null, + "resurgent": null, + "resurrect": [["G", "S", "D"]], + "resurrecting": null, + "resurrects": null, + "resurrected": null, + "resurrection": [["S", "M"]], + "resurrections": null, + "resurrection's": null, + "resurvey": [["G"]], + "resurveying": null, + "resuscitate": [["X", "S", "D", "V", "N", "G"]], + "resuscitations": null, + "resuscitates": null, + "resuscitated": null, + "resuscitative": null, + "resuscitation": [["M"]], + "resuscitating": null, + "resuscitation's": null, + "resuscitator": [["M", "S"]], + "resuscitator's": null, + "resuscitators": null, + "retail": [["Z"]], + "retailers": null, + "retainer": [["M"]], + "retainer's": null, + "retain": [["L", "Z", "G", "S", "R", "D"]], + "retainment": null, + "retainers": null, + "retaining": null, + "retains": null, + "retained": null, + "retake": null, + "retaliate": [["V", "N", "G", "X", "S", "D"]], + "retaliative": null, + "retaliation": [["M"]], + "retaliating": null, + "retaliations": null, + "retaliates": null, + "retaliated": null, + "retaliation's": null, + "retaliatory": null, + "Reta": [["M"]], + "Reta's": null, + "retardant": [["S", "M"]], + "retardants": null, + "retardant's": null, + "retardation": [["S", "M"]], + "retardations": null, + "retardation's": null, + "retarder": [["M"]], + "retarder's": null, + "retard": [["Z", "G", "R", "D", "S"]], + "retarders": null, + "retarding": null, + "retarded": null, + "retards": null, + "retch": [["S", "D", "G"]], + "retches": null, + "retched": null, + "retching": null, + "retention": [["S", "M"]], + "retentions": null, + "retention's": null, + "retentiveness": [["S"]], + "retentivenesses": null, + "retentive": [["Y", "P"]], + "retentively": null, + "retentivity": [["M"]], + "retentivity's": null, + "retest": [["G"]], + "retesting": null, + "Retha": [["M"]], + "Retha's": null, + "rethought": null, + "reticence": [["S"]], + "reticences": null, + "reticent": [["Y"]], + "reticently": null, + "reticle": [["S", "M"]], + "reticles": null, + "reticle's": null, + "reticular": null, + "reticulate": [["G", "N", "Y", "X", "S", "D"]], + "reticulating": null, + "reticulation": [["M"]], + "reticulately": null, + "reticulations": null, + "reticulates": null, + "reticulated": null, + "reticulation's": null, + "reticule": [["M", "S"]], + "reticule's": null, + "reticules": null, + "reticulum": [["M"]], + "reticulum's": null, + "retinal": [["S"]], + "retinals": null, + "retina": [["S", "M"]], + "retinas": null, + "retina's": null, + "retinue": [["M", "S"]], + "retinue's": null, + "retinues": null, + "retiredness": [["M"]], + "retiredness's": null, + "retiree": [["M", "S"]], + "retiree's": null, + "retirees": null, + "retire": [["L"]], + "retirement": [["S", "M"]], + "retirements": null, + "retirement's": null, + "retiring": [["Y", "P"]], + "retiringly": null, + "retiringness": null, + "retort": [["G", "D"]], + "retorting": null, + "retorted": null, + "retract": [["D", "G"]], + "retracted": null, + "retracting": null, + "retractile": null, + "retrench": [["L"]], + "retrenchment": [["M", "S"]], + "retrenchment's": null, + "retrenchments": null, + "retributed": null, + "retribution": [["M", "S"]], + "retribution's": null, + "retributions": null, + "retributive": null, + "retrieval": [["S", "M"]], + "retrievals": null, + "retrieval's": null, + "retriever": [["M"]], + "retriever's": null, + "retrieve": [["Z", "G", "D", "R", "S", "B"]], + "retrievers": null, + "retrieving": null, + "retrieved": null, + "retrieves": null, + "retrievable": null, + "retroactive": [["Y"]], + "retroactively": null, + "retrofire": [["G", "M", "S", "D"]], + "retrofiring": null, + "retrofire's": null, + "retrofires": null, + "retrofired": null, + "retrofit": [["S"]], + "retrofits": null, + "retrofitted": null, + "retrofitting": null, + "retroflection": null, + "retroflex": [["D"]], + "retroflexed": null, + "retroflexion": [["M"]], + "retroflexion's": null, + "retrogradations": null, + "retrograde": [["G", "Y", "D", "S"]], + "retrograding": null, + "retrogradely": null, + "retrograded": null, + "retrogrades": null, + "retrogression": [["M", "S"]], + "retrogression's": null, + "retrogressions": null, + "retrogressive": [["Y"]], + "retrogressively": null, + "retrogress": [["S", "D", "V", "G"]], + "retrogresses": null, + "retrogressed": null, + "retrogressing": null, + "retrorocket": [["M", "S"]], + "retrorocket's": null, + "retrorockets": null, + "retro": [["S", "M"]], + "retros": null, + "retro's": null, + "retrospection": [["M", "S"]], + "retrospection's": null, + "retrospections": null, + "retrospective": [["S", "Y"]], + "retrospectives": null, + "retrospectively": null, + "retrospect": [["S", "V", "G", "M", "D"]], + "retrospects": null, + "retrospecting": null, + "retrospect's": null, + "retrospected": null, + "retrovirus": [["S"]], + "retroviruses": null, + "retrovision": null, + "retry": [["G"]], + "retrying": null, + "retsina": [["S", "M"]], + "retsinas": null, + "retsina's": null, + "returnable": [["S"]], + "returnables": null, + "returned": [["U"]], + "unreturned": null, + "returnee": [["S", "M"]], + "returnees": null, + "returnee's": null, + "retype": null, + "Reube": [["M"]], + "Reube's": null, + "Reuben": [["M"]], + "Reuben's": null, + "Reub": [["N", "M"]], + "Reub's": null, + "Reunion": [["M"]], + "Reunion's": null, + "reuse": [["B"]], + "reusable": null, + "Reuters": null, + "Reuther": [["M"]], + "Reuther's": null, + "reutilization": null, + "Reuven": [["M"]], + "Reuven's": null, + "Reva": [["M"]], + "Reva's": null, + "revanchist": null, + "revealed": [["U"]], + "unrevealed": null, + "revealingly": null, + "revealing": [["U"]], + "unrevealing": null, + "reveal": [["J", "B", "G"]], + "revealings": null, + "revealable": null, + "reveille": [["M", "S"]], + "reveille's": null, + "reveilles": null, + "revelation": [["M", "S"]], + "revelation's": null, + "revelations": null, + "Revelation": [["M", "S"]], + "Revelation's": null, + "Revelations": null, + "revelatory": null, + "revelry": [["M", "S"]], + "revelry's": null, + "revelries": null, + "revel": [["S", "J", "R", "D", "G", "Z"]], + "revels": null, + "revelings": null, + "reveler": null, + "reveled": null, + "reveling": null, + "revelers": null, + "revenge": [["M", "G", "S", "R", "D"]], + "revenge's": null, + "revenging": null, + "revenges": null, + "revenger": [["M"]], + "revenged": null, + "revenger's": null, + "revenuer": [["M"]], + "revenuer's": null, + "revenue": [["Z", "R"]], + "revenuers": null, + "reverberant": null, + "reverberate": [["X", "V", "N", "G", "S", "D"]], + "reverberations": null, + "reverberative": null, + "reverberation": [["M"]], + "reverberating": null, + "reverberates": null, + "reverberated": null, + "reverberation's": null, + "revere": [["G", "S", "D"]], + "revering": null, + "reveres": null, + "revered": null, + "Revere": [["M"]], + "Revere's": null, + "reverencer": [["M"]], + "reverencer's": null, + "reverence": [["S", "R", "D", "G", "M"]], + "reverences": null, + "reverenced": null, + "reverencing": null, + "reverence's": null, + "Reverend": null, + "reverend": [["S", "M"]], + "reverends": null, + "reverend's": null, + "reverential": [["Y"]], + "reverentially": null, + "reverent": [["Y"]], + "reverently": null, + "reverie": [["S", "M"]], + "reveries": null, + "reverie's": null, + "reversal": [["M", "S"]], + "reversal's": null, + "reversals": null, + "reverser": [["M"]], + "reverser's": null, + "reverse": [["Y"]], + "reversely": null, + "reversibility": [["M"]], + "reversibility's": null, + "reversible": [["S"]], + "reversibles": null, + "reversibly": null, + "reversioner": [["M"]], + "reversioner's": null, + "reversion": [["R"]], + "revers": [["M"]], + "revers's": null, + "reverter": [["M"]], + "reverter's": null, + "revertible": null, + "revert": [["R", "D", "V", "G", "S"]], + "reverted": null, + "revertive": null, + "reverting": null, + "reverts": null, + "revet": [["L"]], + "revetment": [["S", "M"]], + "revetments": null, + "revetment's": null, + "review": [["G"]], + "reviewing": null, + "revile": [["G", "Z", "S", "D", "L"]], + "reviling": null, + "revilers": null, + "reviles": null, + "reviled": null, + "revilement": [["M", "S"]], + "revilement's": null, + "revilements": null, + "reviler": [["M"]], + "reviler's": null, + "revise": [["B", "R", "Z"]], + "revisable": null, + "reviser": null, + "revisers": null, + "revised": [["U"]], + "unrevised": null, + "revisionary": null, + "revisionism": [["S", "M"]], + "revisionisms": null, + "revisionism's": null, + "revisionist": [["S", "M"]], + "revisionists": null, + "revisionist's": null, + "revitalize": [["Z", "R"]], + "revitalizers": null, + "revitalizer": null, + "revivalism": [["M", "S"]], + "revivalism's": null, + "revivalisms": null, + "revivalist": [["M", "S"]], + "revivalist's": null, + "revivalists": null, + "revival": [["S", "M"]], + "revivals": null, + "revival's": null, + "reviver": [["M"]], + "reviver's": null, + "revive": [["R", "S", "D", "G"]], + "revives": null, + "revived": null, + "reviving": null, + "revivification": [["M"]], + "revivification's": null, + "revivify": [["X"]], + "revivifications": null, + "Revkah": [["M"]], + "Revkah's": null, + "Revlon": [["M"]], + "Revlon's": null, + "Rev": [["M"]], + "Rev's": null, + "revocable": null, + "revoke": [["G", "Z", "R", "S", "D"]], + "revoking": null, + "revokers": null, + "revoker": null, + "revokes": null, + "revoked": null, + "revolter": [["M"]], + "revolter's": null, + "revolt": [["G", "R", "D"]], + "revolting": [["Y"]], + "revolted": null, + "revoltingly": null, + "revolutionariness": [["M"]], + "revolutionariness's": null, + "revolutionary": [["M", "S", "P"]], + "revolutionary's": null, + "revolutionaries": null, + "revolutionist": [["M", "S"]], + "revolutionist's": null, + "revolutionists": null, + "revolutionize": [["G", "D", "S", "R", "Z"]], + "revolutionizing": null, + "revolutionized": null, + "revolutionizes": null, + "revolutionizer": [["M"]], + "revolutionizers": null, + "revolutionizer's": null, + "revolution": [["S", "M"]], + "revolutions": null, + "revolution's": null, + "revolve": [["B", "S", "R", "D", "Z", "J", "G"]], + "revolvable": null, + "revolves": null, + "revolver": [["M"]], + "revolved": null, + "revolvers": null, + "revolvings": null, + "revolving": null, + "revolver's": null, + "revue": [["M", "S"]], + "revue's": null, + "revues": null, + "revulsion": [["M", "S"]], + "revulsion's": null, + "revulsions": null, + "revved": null, + "revving": null, + "rev": [["Z", "M"]], + "rev's": null, + "rewarded": [["U"]], + "unrewarded": null, + "rewarding": [["Y"]], + "rewardingly": null, + "rewarm": [["G"]], + "rewarming": null, + "reweave": null, + "rewedding": null, + "reweigh": [["G"]], + "reweighing": null, + "rewind": [["B", "G", "R"]], + "rewindable": null, + "rewinding": null, + "rewinder": null, + "rewire": [["G"]], + "rewiring": null, + "rework": [["G"]], + "reworking": null, + "rexes": null, + "Rex": [["M"]], + "Rex's": null, + "Reyes": null, + "Reykjavik": [["M"]], + "Reykjavik's": null, + "re": [["Y", "M"]], + "re's": null, + "Rey": [["M"]], + "Rey's": null, + "Reynaldo": [["M"]], + "Reynaldo's": null, + "Reyna": [["M"]], + "Reyna's": null, + "Reynard": [["M"]], + "Reynard's": null, + "Reynold": [["S", "M"]], + "Reynolds": null, + "Reynold's": null, + "rezone": null, + "Rf": null, + "RF": null, + "RFC": null, + "RFD": null, + "R": [["G"]], + "Ring": [["M"]], + "rhapsodic": null, + "rhapsodical": null, + "rhapsodize": [["G", "S", "D"]], + "rhapsodizing": null, + "rhapsodizes": null, + "rhapsodized": null, + "rhapsody": [["S", "M"]], + "rhapsodies": null, + "rhapsody's": null, + "Rhea": [["M"]], + "Rhea's": null, + "rhea": [["S", "M"]], + "rheas": null, + "rhea's": null, + "Rheba": [["M"]], + "Rheba's": null, + "Rhee": [["M"]], + "Rhee's": null, + "Rheims": [["M"]], + "Rheims's": null, + "Rheinholdt": [["M"]], + "Rheinholdt's": null, + "Rhenish": null, + "rhenium": [["M", "S"]], + "rhenium's": null, + "rheniums": null, + "rheology": [["M"]], + "rheology's": null, + "rheostat": [["M", "S"]], + "rheostat's": null, + "rheostats": null, + "rhesus": [["S"]], + "rhesuses": null, + "Rheta": [["M"]], + "Rheta's": null, + "rhetorical": [["Y", "P"]], + "rhetorically": null, + "rhetoricalness": null, + "rhetorician": [["M", "S"]], + "rhetorician's": null, + "rhetoricians": null, + "rhetoric": [["M", "S"]], + "rhetoric's": null, + "rhetorics": null, + "Rhetta": [["M"]], + "Rhetta's": null, + "Rhett": [["M"]], + "Rhett's": null, + "rheumatically": null, + "rheumatic": [["S"]], + "rheumatics": [["M"]], + "rheumatics's": null, + "rheumatism": [["S", "M"]], + "rheumatisms": null, + "rheumatism's": null, + "rheumatoid": null, + "rheum": [["M", "S"]], + "rheum's": null, + "rheums": null, + "rheumy": [["R", "T"]], + "rheumier": null, + "rheumiest": null, + "Rhiamon": [["M"]], + "Rhiamon's": null, + "Rhianna": [["M"]], + "Rhianna's": null, + "Rhiannon": [["M"]], + "Rhiannon's": null, + "Rhianon": [["M"]], + "Rhianon's": null, + "Rhinelander": [["M"]], + "Rhinelander's": null, + "Rhineland": [["R", "M"]], + "Rhineland's": null, + "Rhine": [["M"]], + "Rhine's": null, + "rhinestone": [["S", "M"]], + "rhinestones": null, + "rhinestone's": null, + "rhinitides": null, + "rhinitis": [["M"]], + "rhinitis's": null, + "rhinoceros": [["M", "S"]], + "rhinoceros's": null, + "rhinoceroses": null, + "rhino": [["M", "S"]], + "rhino's": null, + "rhinos": null, + "rhinotracheitis": null, + "rhizome": [["M", "S"]], + "rhizome's": null, + "rhizomes": null, + "Rh": [["M"]], + "Rh's": null, + "Rhoda": [["M"]], + "Rhoda's": null, + "Rhodes": null, + "Rhodesia": [["M"]], + "Rhodesia's": null, + "Rhodesian": [["S"]], + "Rhodesians": null, + "Rhodia": [["M"]], + "Rhodia's": null, + "Rhodie": [["M"]], + "Rhodie's": null, + "rhodium": [["M", "S"]], + "rhodium's": null, + "rhodiums": null, + "rhododendron": [["S", "M"]], + "rhododendrons": null, + "rhododendron's": null, + "rhodolite": [["M"]], + "rhodolite's": null, + "rhodonite": [["M"]], + "rhodonite's": null, + "Rhody": [["M"]], + "Rhody's": null, + "rhombic": null, + "rhomboidal": null, + "rhomboid": [["S", "M"]], + "rhomboids": null, + "rhomboid's": null, + "rhombus": [["S", "M"]], + "rhombuses": null, + "rhombus's": null, + "rho": [["M", "S"]], + "rho's": null, + "rhos": null, + "Rhona": [["M"]], + "Rhona's": null, + "Rhonda": [["M"]], + "Rhonda's": null, + "Rhone": null, + "rhubarb": [["M", "S"]], + "rhubarb's": null, + "rhubarbs": null, + "rhyme": [["D", "S", "R", "G", "Z", "M"]], + "rhymed": null, + "rhymes": null, + "rhymer": null, + "rhyming": null, + "rhymers": null, + "rhyme's": null, + "rhymester": [["M", "S"]], + "rhymester's": null, + "rhymesters": null, + "Rhys": [["M"]], + "Rhys's": null, + "rhythmical": [["Y"]], + "rhythmically": null, + "rhythmic": [["S"]], + "rhythmics": [["M"]], + "rhythmics's": null, + "rhythm": [["M", "S"]], + "rhythm's": null, + "rhythms": null, + "RI": null, + "rial": [["M", "S"]], + "rial's": null, + "rials": null, + "Riane": [["M"]], + "Riane's": null, + "Riannon": [["M"]], + "Riannon's": null, + "Rianon": [["M"]], + "Rianon's": null, + "ribaldry": [["M", "S"]], + "ribaldry's": null, + "ribaldries": null, + "ribald": [["S"]], + "ribalds": null, + "ribbed": null, + "Ribbentrop": [["M"]], + "Ribbentrop's": null, + "ribber": [["S"]], + "ribbers": null, + "ribbing": [["M"]], + "ribbing's": null, + "ribbon": [["D", "M", "S", "G"]], + "ribboned": null, + "ribbon's": null, + "ribbons": null, + "ribboning": null, + "ribcage": null, + "rib": [["M", "S"]], + "rib's": null, + "ribs": null, + "riboflavin": [["M", "S"]], + "riboflavin's": null, + "riboflavins": null, + "ribonucleic": null, + "ribosomal": null, + "ribosome": [["M", "S"]], + "ribosome's": null, + "ribosomes": null, + "Rica": [["M"]], + "Rica's": null, + "Rican": [["S", "M"]], + "Ricans": null, + "Rican's": null, + "Ricard": [["M"]], + "Ricard's": null, + "Ricardo": [["M"]], + "Ricardo's": null, + "Ricca": [["M"]], + "Ricca's": null, + "Riccardo": [["M"]], + "Riccardo's": null, + "rice": [["D", "R", "S", "M", "Z", "G"]], + "riced": null, + "ricer": [["M"]], + "rices": null, + "rice's": null, + "ricers": null, + "ricing": null, + "Rice": [["M"]], + "Rice's": null, + "ricer's": null, + "Richard": [["M", "S"]], + "Richard's": null, + "Richards": null, + "Richardo": [["M"]], + "Richardo's": null, + "Richardson": [["M"]], + "Richardson's": null, + "Richart": [["M"]], + "Richart's": null, + "Richelieu": [["M"]], + "Richelieu's": null, + "richen": [["D", "G"]], + "richened": null, + "richening": null, + "Richey": [["M"]], + "Richey's": null, + "Richfield": [["M"]], + "Richfield's": null, + "Richie": [["M"]], + "Richie's": null, + "Richland": [["M"]], + "Richland's": null, + "Rich": [["M"]], + "Rich's": null, + "Richmond": [["M"]], + "Richmond's": null, + "Richmound": [["M"]], + "Richmound's": null, + "richness": [["M", "S"]], + "richness's": null, + "richnesses": null, + "Richter": [["M"]], + "Richter's": null, + "Richthofen": [["M"]], + "Richthofen's": null, + "Richy": [["M"]], + "Richy's": null, + "rich": [["Y", "N", "S", "R", "P", "T"]], + "richly": null, + "riches": null, + "richer": null, + "richest": null, + "Rici": [["M"]], + "Rici's": null, + "Rickard": [["M"]], + "Rickard's": null, + "Rickenbacker": [["M"]], + "Rickenbacker's": null, + "Rickenbaugh": [["M"]], + "Rickenbaugh's": null, + "Rickert": [["M"]], + "Rickert's": null, + "rickets": [["M"]], + "rickets's": null, + "rickety": [["R", "T"]], + "ricketier": null, + "ricketiest": null, + "Rickey": [["M"]], + "Rickey's": null, + "rick": [["G", "S", "D", "M"]], + "ricking": null, + "ricks": null, + "ricked": null, + "rick's": null, + "Rickie": [["M"]], + "Rickie's": null, + "Ricki": [["M"]], + "Ricki's": null, + "Rick": [["M"]], + "Rick's": null, + "Rickover": [["M"]], + "Rickover's": null, + "rickrack": [["M", "S"]], + "rickrack's": null, + "rickracks": null, + "rickshaw": [["S", "M"]], + "rickshaws": null, + "rickshaw's": null, + "Ricky": [["M"]], + "Ricky's": null, + "Ric": [["M"]], + "Ric's": null, + "ricochet": [["G", "S", "D"]], + "ricocheting": null, + "ricochets": null, + "ricocheted": null, + "Rico": [["M"]], + "Rico's": null, + "Ricoriki": [["M"]], + "Ricoriki's": null, + "ricotta": [["M", "S"]], + "ricotta's": null, + "ricottas": null, + "riddance": [["S", "M"]], + "riddances": null, + "riddance's": null, + "ridden": null, + "ridding": null, + "riddle": [["G", "M", "R", "S", "D"]], + "riddling": null, + "riddle's": null, + "riddler": null, + "riddles": null, + "riddled": null, + "Riddle": [["M"]], + "Riddle's": null, + "ride": [["C", "Z", "S", "G", "R"]], + "deriders": null, + "derides": null, + "derider": null, + "riders": null, + "rides": null, + "riding": [["M"]], + "rider": [["C", "M"]], + "Ride": [["M"]], + "Ride's": null, + "derider's": null, + "rider's": null, + "riderless": null, + "ridership": [["S"]], + "riderships": null, + "ridge": [["D", "S", "G", "M"]], + "ridged": null, + "ridges": null, + "ridging": null, + "ridge's": null, + "Ridgefield": [["M"]], + "Ridgefield's": null, + "ridgepole": [["S", "M"]], + "ridgepoles": null, + "ridgepole's": null, + "Ridgway": [["M"]], + "Ridgway's": null, + "ridgy": [["R", "T"]], + "ridgier": null, + "ridgiest": null, + "ridicule": [["M", "G", "D", "R", "S"]], + "ridicule's": null, + "ridiculing": null, + "ridiculed": null, + "ridiculer": [["M"]], + "ridicules": null, + "ridiculer's": null, + "ridiculousness": [["M", "S"]], + "ridiculousness's": null, + "ridiculousnesses": null, + "ridiculous": [["P", "Y"]], + "ridiculously": null, + "riding's": null, + "rid": [["Z", "G", "R", "J", "S", "B"]], + "ridings": null, + "rids": null, + "ridable": null, + "Riemann": [["M"]], + "Riemann's": null, + "Riesling": [["S", "M"]], + "Rieslings": null, + "Riesling's": null, + "rife": [["R", "T"]], + "rifer": null, + "rifest": null, + "riff": [["G", "S", "D", "M"]], + "riffing": null, + "riffs": null, + "riffed": null, + "riff's": null, + "riffle": [["S", "D", "G"]], + "riffles": null, + "riffled": null, + "riffling": null, + "riffraff": [["S", "M"]], + "riffraffs": null, + "riffraff's": null, + "rifled": [["U"]], + "unrifled": null, + "rifle": [["G", "Z", "M", "D", "S", "R"]], + "rifling": [["M"]], + "riflers": null, + "rifle's": null, + "rifles": null, + "rifler": [["M"]], + "rifleman": [["M"]], + "rifleman's": null, + "riflemen": null, + "rifler's": null, + "rifling's": null, + "rift": [["G", "S", "M", "D"]], + "rifting": null, + "rifts": null, + "rift's": null, + "rifted": null, + "Riga": [["M"]], + "Riga's": null, + "rigamarole's": null, + "rigatoni": [["M"]], + "rigatoni's": null, + "Rigel": [["M"]], + "Rigel's": null, + "rigged": null, + "rigger": [["S", "M"]], + "riggers": null, + "rigger's": null, + "rigging": [["M", "S"]], + "rigging's": null, + "riggings": null, + "Riggs": [["M"]], + "Riggs's": null, + "righteousnesses": [["U"]], + "unrighteousnesses": null, + "righteousness": [["M", "S"]], + "righteousness's": null, + "righteous": [["P", "Y", "U"]], + "unrighteousness": null, + "righteously": null, + "unrighteously": null, + "unrighteous": null, + "rightfulness": [["M", "S"]], + "rightfulness's": null, + "rightfulnesses": null, + "rightful": [["P", "Y"]], + "rightfully": null, + "rightism": [["S", "M"]], + "rightisms": null, + "rightism's": null, + "rightist": [["S"]], + "rightists": null, + "rightmost": null, + "rightness": [["M", "S"]], + "rightness's": null, + "rightnesses": null, + "Right": [["S"]], + "Rights": null, + "right": [["S", "G", "T", "P", "Y", "R", "D", "N"]], + "rights": [["M"]], + "righting": null, + "rightest": null, + "rightly": null, + "righter": null, + "righted": null, + "righten": null, + "rightsize": [["S", "D", "G"]], + "rightsizes": null, + "rightsized": null, + "rightsizing": null, + "rights's": null, + "rightward": [["S"]], + "rightwards": null, + "rigidify": [["S"]], + "rigidifies": null, + "rigidity": [["S"]], + "rigidities": null, + "rigidness": [["S"]], + "rigidnesses": null, + "rigid": [["Y", "P"]], + "rigidly": null, + "rigmarole": [["M", "S"]], + "rigmarole's": null, + "rigmaroles": null, + "rig": [["M", "S"]], + "rig's": null, + "rigs": null, + "Rigoberto": [["M"]], + "Rigoberto's": null, + "Rigoletto": [["M"]], + "Rigoletto's": null, + "rigor": [["M", "S"]], + "rigor's": null, + "rigors": null, + "rigorousness": [["S"]], + "rigorousnesses": null, + "rigorous": [["Y", "P"]], + "rigorously": null, + "Riki": [["M"]], + "Riki's": null, + "Rikki": [["M"]], + "Rikki's": null, + "Rik": [["M"]], + "Rik's": null, + "rile": [["D", "S", "G"]], + "riled": null, + "riles": null, + "riling": null, + "Riley": [["M"]], + "Riley's": null, + "Rilke": [["M"]], + "Rilke's": null, + "rill": [["G", "S", "M", "D"]], + "rilling": null, + "rills": null, + "rill's": null, + "rilled": null, + "Rimbaud": [["M"]], + "Rimbaud's": null, + "rime": [["M", "S"]], + "rime's": null, + "rimes": null, + "rimer": [["M"]], + "rimer's": null, + "rim": [["G", "S", "M", "D", "R"]], + "riming": null, + "rims": null, + "rim's": null, + "rimed": null, + "rimless": null, + "rimmed": null, + "rimming": null, + "Rinaldo": [["M"]], + "Rinaldo's": null, + "Rina": [["M"]], + "Rina's": null, + "rind": [["M", "D", "G", "S"]], + "rind's": null, + "rinded": null, + "rinding": null, + "rinds": null, + "Rinehart": [["M"]], + "Rinehart's": null, + "ringer": [["M"]], + "ringer's": null, + "ring": [["G", "Z", "J", "D", "R", "M"]], + "ringing": [["Y"]], + "ringers": null, + "ringings": null, + "ringed": null, + "ring's": null, + "ringingly": null, + "ringleader": [["M", "S"]], + "ringleader's": null, + "ringleaders": null, + "ringlet": [["S", "M"]], + "ringlets": null, + "ringlet's": null, + "ringlike": null, + "Ringling": [["M"]], + "Ringling's": null, + "Ring's": null, + "ringmaster": [["M", "S"]], + "ringmaster's": null, + "ringmasters": null, + "Ringo": [["M"]], + "Ringo's": null, + "ringside": [["Z", "M", "R", "S"]], + "ringsiders": null, + "ringside's": null, + "ringsider": null, + "ringsides": null, + "ringworm": [["S", "M"]], + "ringworms": null, + "ringworm's": null, + "rink": [["G", "D", "R", "M", "S"]], + "rinking": null, + "rinked": null, + "rinker": null, + "rink's": null, + "rinks": null, + "rinse": [["D", "S", "R", "G"]], + "rinsed": null, + "rinses": null, + "rinser": null, + "rinsing": null, + "Riobard": [["M"]], + "Riobard's": null, + "Rio": [["M", "S"]], + "Rio's": null, + "Rios": null, + "Riordan": [["M"]], + "Riordan's": null, + "rioter": [["M"]], + "rioter's": null, + "riotousness": [["M"]], + "riotousness's": null, + "riotous": [["P", "Y"]], + "riotously": null, + "riot": [["S", "M", "D", "R", "G", "Z", "J"]], + "riots": null, + "riot's": null, + "rioted": null, + "rioting": null, + "rioters": null, + "riotings": null, + "RIP": null, + "riparian": [["S"]], + "riparians": null, + "ripcord": [["S", "M"]], + "ripcords": null, + "ripcord's": null, + "ripened": [["U"]], + "unripened": null, + "ripenesses": null, + "ripeness": [["U", "M"]], + "unripeness": null, + "unripeness's": null, + "ripeness's": null, + "ripen": [["R", "D", "G"]], + "ripener": null, + "ripening": null, + "ripe": [["P", "S", "Y"]], + "ripes": null, + "ripely": null, + "riper": [["U"]], + "unriper": null, + "ripest": [["U"]], + "unripest": null, + "Ripley": [["M"]], + "Ripley's": null, + "Rip": [["M"]], + "Rip's": null, + "rip": [["N", "D", "R", "S", "X", "T", "G"]], + "riped": null, + "rips": null, + "ripens": null, + "riping": null, + "ripoff": [["S"]], + "ripoffs": null, + "riposte": [["S", "D", "M", "G"]], + "ripostes": null, + "riposted": null, + "riposte's": null, + "riposting": null, + "ripped": null, + "ripper": [["S", "M"]], + "rippers": null, + "ripper's": null, + "ripping": null, + "rippler": [["M"]], + "rippler's": null, + "ripple": [["R", "S", "D", "G", "M"]], + "ripples": null, + "rippled": null, + "rippling": null, + "ripple's": null, + "ripply": [["T", "R"]], + "rippliest": null, + "ripplier": null, + "ripsaw": [["G", "D", "M", "S"]], + "ripsawing": null, + "ripsawed": null, + "ripsaw's": null, + "ripsaws": null, + "riptide": [["S", "M"]], + "riptides": null, + "riptide's": null, + "Risa": [["M"]], + "Risa's": null, + "RISC": null, + "risen": null, + "riser": [["M"]], + "riser's": null, + "rise": [["R", "S", "J", "Z", "G"]], + "rises": null, + "risings": null, + "risers": null, + "rising": [["M"]], + "risibility": [["S", "M"]], + "risibilities": null, + "risibility's": null, + "risible": [["S"]], + "risibles": null, + "rising's": null, + "risker": [["M"]], + "risker's": null, + "risk": [["G", "S", "D", "R", "M"]], + "risking": null, + "risks": null, + "risked": null, + "risk's": null, + "riskily": null, + "riskiness": [["M", "S"]], + "riskiness's": null, + "riskinesses": null, + "risky": [["R", "T", "P"]], + "riskier": null, + "riskiest": null, + "risotto": [["S", "M"]], + "risottos": null, + "risotto's": null, + "risqu�": null, + "rissole": [["M"]], + "rissole's": null, + "Ritalin": null, + "Rita": [["M"]], + "Rita's": null, + "Ritchie": [["M"]], + "Ritchie's": null, + "rite": [["D", "S", "M"]], + "rited": null, + "rites": null, + "rite's": null, + "Ritter": [["M"]], + "Ritter's": null, + "ritualism": [["S", "M"]], + "ritualisms": null, + "ritualism's": null, + "ritualistic": null, + "ritualistically": null, + "ritualized": null, + "ritual": [["M", "S", "Y"]], + "ritual's": null, + "rituals": null, + "ritually": null, + "Ritz": [["M"]], + "Ritz's": null, + "ritzy": [["T", "R"]], + "ritziest": null, + "ritzier": null, + "rivaled": [["U"]], + "unrivaled": null, + "Rivalee": [["M"]], + "Rivalee's": null, + "rivalry": [["M", "S"]], + "rivalry's": null, + "rivalries": null, + "rival": [["S", "G", "D", "M"]], + "rivals": null, + "rivaling": null, + "rival's": null, + "Riva": [["M", "S"]], + "Riva's": null, + "Rivas": null, + "rive": [["C", "S", "G", "R", "D"]], + "derives": null, + "deriving": null, + "deriver": null, + "rives": null, + "riving": null, + "river": [["C", "M"]], + "rived": null, + "Rivera": [["M"]], + "Rivera's": null, + "riverbank": [["S", "M"]], + "riverbanks": null, + "riverbank's": null, + "riverbed": [["S"]], + "riverbeds": null, + "riverboat": [["S"]], + "riverboats": null, + "deriver's": null, + "river's": null, + "riverfront": null, + "riverine": null, + "Rivers": null, + "Riverside": [["M"]], + "Riverside's": null, + "riverside": [["S"]], + "riversides": null, + "Riverview": [["M"]], + "Riverview's": null, + "riveter": [["M"]], + "riveter's": null, + "rivet": [["G", "Z", "S", "R", "D", "M"]], + "riveting": [["Y"]], + "riveters": null, + "rivets": null, + "riveted": null, + "rivet's": null, + "rivetingly": null, + "Riviera": [["M", "S"]], + "Riviera's": null, + "Rivieras": null, + "Rivi": [["M"]], + "Rivi's": null, + "Rivkah": [["M"]], + "Rivkah's": null, + "rivulet": [["S", "M"]], + "rivulets": null, + "rivulet's": null, + "Rivy": [["M"]], + "Rivy's": null, + "riv": [["Z", "G", "N", "D", "R"]], + "rivers": null, + "riven": null, + "Riyadh": [["M"]], + "Riyadh's": null, + "riyal": [["S", "M"]], + "riyals": null, + "riyal's": null, + "rm": null, + "RMS": null, + "RN": null, + "RNA": null, + "Rn": [["M"]], + "Rn's": null, + "roach": [["G", "S", "D", "M"]], + "roaching": null, + "roaches": null, + "roached": null, + "roach's": null, + "Roach": [["M"]], + "Roach's": null, + "roadbed": [["M", "S"]], + "roadbed's": null, + "roadbeds": null, + "roadblock": [["S", "M", "D", "G"]], + "roadblocks": null, + "roadblock's": null, + "roadblocked": null, + "roadblocking": null, + "roadhouse": [["S", "M"]], + "roadhouses": null, + "roadhouse's": null, + "roadie": [["S"]], + "roadies": null, + "roadkill": [["S"]], + "roadkills": null, + "road": [["M", "I", "S"]], + "road's": null, + "inroad's": null, + "inroad": null, + "inroads": null, + "roads": null, + "roadrunner": [["M", "S"]], + "roadrunner's": null, + "roadrunners": null, + "roadshow": [["S"]], + "roadshows": null, + "roadside": [["S"]], + "roadsides": null, + "roadsigns": null, + "roadster": [["S", "M"]], + "roadsters": null, + "roadster's": null, + "roadsweepers": null, + "roadway": [["S", "M"]], + "roadways": null, + "roadway's": null, + "roadwork": [["S", "M"]], + "roadworks": null, + "roadwork's": null, + "roadworthy": null, + "roam": [["D", "R", "G", "Z", "S"]], + "roamed": null, + "roamer": null, + "roaming": null, + "roamers": null, + "roams": null, + "Roana": [["M"]], + "Roana's": null, + "Roanna": [["M"]], + "Roanna's": null, + "Roanne": [["M"]], + "Roanne's": null, + "Roanoke": [["M"]], + "Roanoke's": null, + "roan": [["S"]], + "roans": null, + "roar": [["D", "R", "S", "J", "G", "Z"]], + "roared": null, + "roarer": [["M"]], + "roars": null, + "roarings": null, + "roaring": [["T"]], + "roarers": null, + "roarer's": null, + "roaringest": null, + "Roarke": [["M"]], + "Roarke's": null, + "roaster": [["M"]], + "roaster's": null, + "roast": [["S", "G", "J", "Z", "R", "D"]], + "roasts": null, + "roasting": null, + "roastings": null, + "roasters": null, + "roasted": null, + "robbed": null, + "robber": [["S", "M"]], + "robbers": null, + "robber's": null, + "Robbert": [["M"]], + "Robbert's": null, + "robbery": [["S", "M"]], + "robberies": null, + "robbery's": null, + "Robbie": [["M"]], + "Robbie's": null, + "Robbi": [["M"]], + "Robbi's": null, + "robbing": null, + "Robbin": [["M", "S"]], + "Robbin's": null, + "Robbins": null, + "Robb": [["M"]], + "Robb's": null, + "Robby": [["M"]], + "Robby's": null, + "Robbyn": [["M"]], + "Robbyn's": null, + "robe": [["E", "S", "D", "G"]], + "disrobe": null, + "disrobes": null, + "disrobed": null, + "disrobing": null, + "robes": null, + "robed": null, + "robing": null, + "Robena": [["M"]], + "Robena's": null, + "Robenia": [["M"]], + "Robenia's": null, + "Robers": [["M"]], + "Robers's": null, + "Roberson": [["M"]], + "Roberson's": null, + "Roberta": [["M"]], + "Roberta's": null, + "Robert": [["M", "S"]], + "Robert's": null, + "Roberts": null, + "Roberto": [["M"]], + "Roberto's": null, + "Robertson": [["S", "M"]], + "Robertsons": null, + "Robertson's": null, + "robe's": null, + "Robeson": [["M"]], + "Robeson's": null, + "Robespierre": [["M"]], + "Robespierre's": null, + "Robina": [["M"]], + "Robina's": null, + "Robinet": [["M"]], + "Robinet's": null, + "Robinetta": [["M"]], + "Robinetta's": null, + "Robinette": [["M"]], + "Robinette's": null, + "Robinett": [["M"]], + "Robinett's": null, + "Robinia": [["M"]], + "Robinia's": null, + "Robin": [["M"]], + "Robin's": null, + "robin": [["M", "S"]], + "robin's": null, + "robins": null, + "Robinson": [["M"]], + "Robinson's": null, + "Robinsonville": [["M"]], + "Robinsonville's": null, + "Robles": [["M"]], + "Robles's": null, + "Rob": [["M", "Z"]], + "Rob's": null, + "robotic": [["S"]], + "robotics": null, + "robotism": null, + "robotize": [["G", "D", "S"]], + "robotizing": null, + "robotized": null, + "robotizes": null, + "robot": [["M", "S"]], + "robot's": null, + "robots": null, + "rob": [["S", "D", "G"]], + "robs": null, + "Robson": [["M"]], + "Robson's": null, + "Robt": [["M"]], + "Robt's": null, + "robustness": [["S", "M"]], + "robustnesses": null, + "robustness's": null, + "robust": [["R", "Y", "P", "T"]], + "robuster": null, + "robustly": null, + "robustest": null, + "Roby": [["M"]], + "Roby's": null, + "Robyn": [["M"]], + "Robyn's": null, + "Rocco": [["M"]], + "Rocco's": null, + "Rocha": [["M"]], + "Rocha's": null, + "Rochambeau": [["M"]], + "Rochambeau's": null, + "Rochella": [["M"]], + "Rochella's": null, + "Rochelle": [["M"]], + "Rochelle's": null, + "Rochell": [["M"]], + "Rochell's": null, + "Roche": [["M"]], + "Roche's": null, + "Rochester": [["M"]], + "Rochester's": null, + "Rochette": [["M"]], + "Rochette's": null, + "Roch": [["M"]], + "Roch's": null, + "rockabilly": [["M", "S"]], + "rockabilly's": null, + "rockabillies": null, + "rockabye": null, + "Rockaway": [["M", "S"]], + "Rockaway's": null, + "Rockaways": null, + "rockbound": null, + "Rockefeller": [["M"]], + "Rockefeller's": null, + "rocker": [["M"]], + "rocker's": null, + "rocketry": [["M", "S"]], + "rocketry's": null, + "rocketries": null, + "rocket": [["S", "M", "D", "G"]], + "rockets": null, + "rocket's": null, + "rocketed": null, + "rocketing": null, + "Rockey": [["M"]], + "Rockey's": null, + "rockfall": [["S"]], + "rockfalls": null, + "Rockford": [["M"]], + "Rockford's": null, + "rock": [["G", "Z", "D", "R", "M", "S"]], + "rocking": null, + "rockers": null, + "rocked": null, + "rock's": null, + "rocks": null, + "Rockie": [["M"]], + "Rockie's": null, + "rockiness": [["M", "S"]], + "rockiness's": null, + "rockinesses": null, + "Rockland": [["M"]], + "Rockland's": null, + "Rock": [["M"]], + "Rock's": null, + "Rockne": [["M"]], + "Rockne's": null, + "Rockville": [["M"]], + "Rockville's": null, + "Rockwell": [["M"]], + "Rockwell's": null, + "Rocky": [["S", "M"]], + "Rockies": null, + "Rocky's": null, + "rocky": [["S", "R", "T", "P"]], + "rockies": null, + "rockier": null, + "rockiest": null, + "rococo": [["M", "S"]], + "rococo's": null, + "rococos": null, + "Roda": [["M"]], + "Roda's": null, + "rodded": null, + "Roddenberry": [["M"]], + "Roddenberry's": null, + "rodder": null, + "Roddie": [["M"]], + "Roddie's": null, + "rodding": null, + "Rodd": [["M"]], + "Rodd's": null, + "Roddy": [["M"]], + "Roddy's": null, + "rodent": [["M", "S"]], + "rodent's": null, + "rodents": null, + "rodeo": [["S", "M", "D", "G"]], + "rodeos": null, + "rodeo's": null, + "rodeoed": null, + "rodeoing": null, + "Roderich": [["M"]], + "Roderich's": null, + "Roderick": [["M"]], + "Roderick's": null, + "Roderic": [["M"]], + "Roderic's": null, + "Roderigo": [["M"]], + "Roderigo's": null, + "rode": [["S"]], + "rodes": null, + "Rodger": [["M"]], + "Rodger's": null, + "Rodge": [["Z", "M", "R"]], + "Rodgers": null, + "Rodge's": null, + "Rodie": [["M"]], + "Rodie's": null, + "Rodi": [["M"]], + "Rodi's": null, + "Rodina": [["M"]], + "Rodina's": null, + "Rodin": [["M"]], + "Rodin's": null, + "Rod": [["M"]], + "Rod's": null, + "Rodney": [["M"]], + "Rodney's": null, + "Rodolfo": [["M"]], + "Rodolfo's": null, + "Rodolphe": [["M"]], + "Rodolphe's": null, + "Rodolph": [["M"]], + "Rodolph's": null, + "Rodrick": [["M"]], + "Rodrick's": null, + "Rodrigo": [["M"]], + "Rodrigo's": null, + "Rodriguez": [["M"]], + "Rodriguez's": null, + "Rodrique": [["M"]], + "Rodrique's": null, + "Rodriquez": [["M"]], + "Rodriquez's": null, + "rod": [["S", "G", "M", "D"]], + "rods": null, + "roding": null, + "rod's": null, + "roded": null, + "roebuck": [["S", "M"]], + "roebucks": null, + "roebuck's": null, + "Roentgen's": null, + "roentgen": [["S", "M"]], + "roentgens": null, + "roentgen's": null, + "roe": [["S", "M"]], + "roes": null, + "roe's": null, + "ROFL": null, + "Rogelio": [["M"]], + "Rogelio's": null, + "roger": [["G", "S", "D"]], + "rogering": null, + "rogers": null, + "rogered": null, + "Rogerio": [["M"]], + "Rogerio's": null, + "Roger": [["M"]], + "Roger's": null, + "Roget": [["M"]], + "Roget's": null, + "Rog": [["M", "R", "Z"]], + "Rog's": null, + "Rogers": null, + "rogued": [["K"]], + "prorogued": null, + "rogue": [["G", "M", "D", "S"]], + "roguing": [["K"]], + "rogue's": null, + "rogues": [["K"]], + "roguery": [["M", "S"]], + "roguery's": null, + "rogueries": null, + "prorogues": null, + "proroguing": null, + "roguishness": [["S", "M"]], + "roguishnesses": null, + "roguishness's": null, + "roguish": [["P", "Y"]], + "roguishly": null, + "roil": [["S", "G", "D"]], + "roils": null, + "roiling": null, + "roiled": null, + "Roi": [["S", "M"]], + "Rois": null, + "Roi's": null, + "roisterer": [["M"]], + "roisterer's": null, + "roister": [["S", "Z", "G", "R", "D"]], + "roisters": null, + "roisterers": null, + "roistering": null, + "roistered": null, + "Rojas": [["M"]], + "Rojas's": null, + "Roland": [["M"]], + "Roland's": null, + "Rolando": [["M"]], + "Rolando's": null, + "Roldan": [["M"]], + "Roldan's": null, + "role": [["M", "S"]], + "role's": null, + "roles": null, + "Roley": [["M"]], + "Roley's": null, + "Rolfe": [["M"]], + "Rolfe's": null, + "Rolf": [["M"]], + "Rolf's": null, + "Rolland": [["M"]], + "Rolland's": null, + "rollback": [["S", "M"]], + "rollbacks": null, + "rollback's": null, + "rolled": [["A"]], + "rerolled": null, + "Rollerblade": [["S"]], + "Rollerblades": null, + "rollerskating": null, + "roller": [["S", "M"]], + "rollers": null, + "roller's": null, + "rollick": [["D", "G", "S"]], + "rollicked": null, + "rollicking": [["Y"]], + "rollicks": null, + "rollickingly": null, + "Rollie": [["M"]], + "Rollie's": null, + "rolling": [["S"]], + "rollings": null, + "Rollin": [["S", "M"]], + "Rollins": null, + "Rollin's": null, + "Rollo": [["M"]], + "Rollo's": null, + "rollover": [["S"]], + "rollovers": null, + "roll": [["U", "D", "S", "G"]], + "unroll": null, + "unrolled": null, + "unrolls": null, + "unrolling": null, + "rolls": null, + "Rolodex": null, + "Rolph": [["M"]], + "Rolph's": null, + "Rolvaag": [["M"]], + "Rolvaag's": null, + "ROM": null, + "romaine": [["M", "S"]], + "romaine's": null, + "romaines": null, + "Romain": [["M"]], + "Romain's": null, + "Roma": [["M"]], + "Roma's": null, + "romancer": [["M"]], + "romancer's": null, + "romance": [["R", "S", "D", "Z", "M", "G"]], + "romances": null, + "romanced": null, + "romancers": null, + "romance's": null, + "romancing": null, + "Romanesque": [["S"]], + "Romanesques": null, + "Romania": [["M"]], + "Romania's": null, + "Romanian": [["S", "M"]], + "Romanians": null, + "Romanian's": null, + "Romano": [["M", "S"]], + "Romano's": null, + "Romanos": null, + "Romanov": [["M"]], + "Romanov's": null, + "roman": [["S"]], + "romans": null, + "Romansh": [["M"]], + "Romansh's": null, + "Romans": [["M"]], + "Romans's": null, + "Roman": [["S", "M"]], + "Roman's": null, + "romantically": [["U"]], + "unromantically": null, + "romanticism": [["M", "S"]], + "romanticism's": null, + "romanticisms": null, + "Romanticism": [["S"]], + "Romanticisms": null, + "romanticist": [["S"]], + "romanticists": null, + "romanticize": [["S", "D", "G"]], + "romanticizes": null, + "romanticized": null, + "romanticizing": null, + "romantic": [["M", "S"]], + "romantic's": null, + "romantics": null, + "Romany": [["S", "M"]], + "Romanies": null, + "Romany's": null, + "Romeo": [["M", "S"]], + "Romeo's": null, + "Romeos": null, + "romeo": [["S"]], + "romeos": null, + "Romero": [["M"]], + "Romero's": null, + "Rome": [["S", "M"]], + "Romes": null, + "Rome's": null, + "Rommel": [["M"]], + "Rommel's": null, + "Romney": [["M"]], + "Romney's": null, + "Romola": [["M"]], + "Romola's": null, + "Romona": [["M"]], + "Romona's": null, + "Romonda": [["M"]], + "Romonda's": null, + "romper": [["M"]], + "romper's": null, + "romp": [["G", "S", "Z", "D", "R"]], + "romping": null, + "romps": null, + "rompers": null, + "romped": null, + "Rom": [["S", "M"]], + "Roms": null, + "Rom's": null, + "Romulus": [["M"]], + "Romulus's": null, + "Romy": [["M"]], + "Romy's": null, + "Ronalda": [["M"]], + "Ronalda's": null, + "Ronald": [["M"]], + "Ronald's": null, + "Rona": [["M"]], + "Rona's": null, + "Ronda": [["M"]], + "Ronda's": null, + "rondo": [["S", "M"]], + "rondos": null, + "rondo's": null, + "Ronica": [["M"]], + "Ronica's": null, + "Ron": [["M"]], + "Ron's": null, + "Ronna": [["M"]], + "Ronna's": null, + "Ronnica": [["M"]], + "Ronnica's": null, + "Ronnie": [["M"]], + "Ronnie's": null, + "Ronni": [["M"]], + "Ronni's": null, + "Ronny": [["M"]], + "Ronny's": null, + "Ronstadt": [["M"]], + "Ronstadt's": null, + "Rontgen": null, + "Roobbie": [["M"]], + "Roobbie's": null, + "rood": [["M", "S"]], + "rood's": null, + "roods": null, + "roof": [["D", "R", "M", "J", "G", "Z", "S"]], + "roofed": null, + "roofer": [["M"]], + "roof's": null, + "roofings": null, + "roofing": [["M"]], + "roofers": null, + "roofs": null, + "roofer's": null, + "roofgarden": null, + "roofing's": null, + "roofless": null, + "rooftop": [["S"]], + "rooftops": null, + "rookery": [["M", "S"]], + "rookery's": null, + "rookeries": null, + "rook": [["G", "D", "M", "S"]], + "rooking": null, + "rooked": null, + "rook's": null, + "rooks": null, + "rookie": [["S", "R", "M", "T"]], + "rookies": null, + "rookier": null, + "rookie's": null, + "rookiest": null, + "roomer": [["M"]], + "roomer's": null, + "roomette": [["S", "M"]], + "roomettes": null, + "roomette's": null, + "roomful": [["M", "S"]], + "roomful's": null, + "roomfuls": null, + "roominess": [["M", "S"]], + "roominess's": null, + "roominesses": null, + "roommate": [["S", "M"]], + "roommates": null, + "roommate's": null, + "room": [["M", "D", "R", "G", "Z", "S"]], + "room's": null, + "roomed": null, + "rooming": null, + "roomers": null, + "rooms": null, + "roomy": [["T", "P", "S", "R"]], + "roomiest": null, + "roomies": null, + "roomier": null, + "Rooney": [["M"]], + "Rooney's": null, + "Rooseveltian": null, + "Roosevelt": [["M"]], + "Roosevelt's": null, + "rooster": [["M"]], + "rooster's": null, + "roost": [["S", "G", "Z", "R", "D", "M"]], + "roosts": null, + "roosting": null, + "roosters": null, + "roosted": null, + "roost's": null, + "rooted": [["P"]], + "rootedness": null, + "rooter": [["M"]], + "rooter's": null, + "rootlessness": [["M"]], + "rootlessness's": null, + "rootless": [["P"]], + "rootlet": [["S", "M"]], + "rootlets": null, + "rootlet's": null, + "Root": [["M"]], + "Root's": null, + "root": [["M", "G", "D", "R", "Z", "S"]], + "root's": null, + "rooting": null, + "rooters": null, + "roots": null, + "rootstock": [["M"]], + "rootstock's": null, + "rope": [["D", "R", "S", "M", "Z", "G"]], + "roped": null, + "roper": [["M"]], + "ropes": null, + "rope's": null, + "ropers": null, + "roping": [["M"]], + "roper's": null, + "roping's": null, + "Roquefort": [["M", "S"]], + "Roquefort's": null, + "Roqueforts": null, + "Roquemore": [["M"]], + "Roquemore's": null, + "Rora": [["M"]], + "Rora's": null, + "Rorie": [["M"]], + "Rorie's": null, + "Rori": [["M"]], + "Rori's": null, + "Rorke": [["M"]], + "Rorke's": null, + "Rorschach": null, + "Rory": [["M"]], + "Rory's": null, + "Rosabella": [["M"]], + "Rosabella's": null, + "Rosabelle": [["M"]], + "Rosabelle's": null, + "Rosabel": [["M"]], + "Rosabel's": null, + "Rosaleen": [["M"]], + "Rosaleen's": null, + "Rosales": [["M"]], + "Rosales's": null, + "Rosalia": [["M"]], + "Rosalia's": null, + "Rosalie": [["M"]], + "Rosalie's": null, + "Rosalinda": [["M"]], + "Rosalinda's": null, + "Rosalinde": [["M"]], + "Rosalinde's": null, + "Rosalind": [["M"]], + "Rosalind's": null, + "Rosaline": [["M"]], + "Rosaline's": null, + "Rosalynd": [["M"]], + "Rosalynd's": null, + "Rosalyn": [["M"]], + "Rosalyn's": null, + "Rosa": [["M"]], + "Rosa's": null, + "Rosamond": [["M"]], + "Rosamond's": null, + "Rosamund": [["M"]], + "Rosamund's": null, + "Rosana": [["M"]], + "Rosana's": null, + "Rosanna": [["M"]], + "Rosanna's": null, + "Rosanne": [["M"]], + "Rosanne's": null, + "Rosario": [["M"]], + "Rosario's": null, + "rosary": [["S", "M"]], + "rosaries": null, + "rosary's": null, + "Roscoe": [["M"]], + "Roscoe's": null, + "Rosco": [["M"]], + "Rosco's": null, + "Roseanna": [["M"]], + "Roseanna's": null, + "Roseanne": [["M"]], + "Roseanne's": null, + "Roseann": [["M"]], + "Roseann's": null, + "roseate": [["Y"]], + "roseately": null, + "Roseau": null, + "rosebud": [["M", "S"]], + "rosebud's": null, + "rosebuds": null, + "rosebush": [["S", "M"]], + "rosebushes": null, + "rosebush's": null, + "Rosecrans": [["M"]], + "Rosecrans's": null, + "Roseland": [["M"]], + "Roseland's": null, + "Roselia": [["M"]], + "Roselia's": null, + "Roseline": [["M"]], + "Roseline's": null, + "Roselin": [["M"]], + "Roselin's": null, + "Rosella": [["M"]], + "Rosella's": null, + "Roselle": [["M"]], + "Roselle's": null, + "Rose": [["M"]], + "Rose's": null, + "Rosemaria": [["M"]], + "Rosemaria's": null, + "Rosemarie": [["M"]], + "Rosemarie's": null, + "Rosemary": [["M"]], + "Rosemary's": null, + "rosemary": [["M", "S"]], + "rosemary's": null, + "rosemaries": null, + "rose": [["M", "G", "D", "S"]], + "rose's": null, + "rosing": null, + "rosed": null, + "roses": null, + "Rosemonde": [["M"]], + "Rosemonde's": null, + "Rosenberg": [["M"]], + "Rosenberg's": null, + "Rosenblum": [["M"]], + "Rosenblum's": null, + "Rosendo": [["M"]], + "Rosendo's": null, + "Rosene": [["M"]], + "Rosene's": null, + "Rosen": [["M"]], + "Rosen's": null, + "Rosenthal": [["M"]], + "Rosenthal's": null, + "Rosenzweig": [["M"]], + "Rosenzweig's": null, + "Rosetta": [["M"]], + "Rosetta's": null, + "Rosette": [["M"]], + "Rosette's": null, + "rosette": [["S", "D", "M", "G"]], + "rosettes": null, + "rosetted": null, + "rosette's": null, + "rosetting": null, + "rosewater": null, + "rosewood": [["S", "M"]], + "rosewoods": null, + "rosewood's": null, + "Roshelle": [["M"]], + "Roshelle's": null, + "Rosicrucian": [["M"]], + "Rosicrucian's": null, + "Rosie": [["M"]], + "Rosie's": null, + "rosily": null, + "Rosina": [["M"]], + "Rosina's": null, + "rosiness": [["M", "S"]], + "rosiness's": null, + "rosinesses": null, + "rosin": [["S", "M", "D", "G"]], + "rosins": null, + "rosin's": null, + "rosined": null, + "rosining": null, + "Rosita": [["M"]], + "Rosita's": null, + "Roslyn": [["M"]], + "Roslyn's": null, + "Rosmunda": [["M"]], + "Rosmunda's": null, + "Ros": [["N"]], + "Ross": null, + "Rossetti": [["M"]], + "Rossetti's": null, + "Rossie": [["M"]], + "Rossie's": null, + "Rossi": [["M"]], + "Rossi's": null, + "Rossini": [["M"]], + "Rossini's": null, + "Rossy": [["M"]], + "Rossy's": null, + "Rostand": [["M"]], + "Rostand's": null, + "roster": [["D", "M", "G", "S"]], + "rostered": null, + "roster's": null, + "rostering": null, + "rosters": null, + "Rostov": [["M"]], + "Rostov's": null, + "rostra's": null, + "rostrum": [["S", "M"]], + "rostrums": null, + "rostrum's": null, + "Roswell": [["M"]], + "Roswell's": null, + "Rosy": [["M"]], + "Rosy's": null, + "rosy": [["R", "T", "P"]], + "rosier": null, + "rosiest": null, + "rota": [["M", "S"]], + "rota's": null, + "rotas": null, + "Rotarian": [["S", "M"]], + "Rotarians": null, + "Rotarian's": null, + "rotary": [["S"]], + "rotaries": null, + "rotated": [["U"]], + "unrotated": null, + "rotate": [["V", "G", "N", "X", "S", "D"]], + "rotative": [["Y"]], + "rotating": null, + "rotation": [["M"]], + "rotations": null, + "rotates": null, + "rotational": [["Y"]], + "rotationally": null, + "rotation's": null, + "rotatively": null, + "rotator": [["S", "M"]], + "rotators": null, + "rotator's": null, + "rotatory": null, + "ROTC": null, + "rote": [["M", "S"]], + "rote's": null, + "rotes": null, + "rotgut": [["M", "S"]], + "rotgut's": null, + "rotguts": null, + "Roth": [["M"]], + "Roth's": null, + "Rothschild": [["M"]], + "Rothschild's": null, + "rotisserie": [["M", "S"]], + "rotisserie's": null, + "rotisseries": null, + "rotogravure": [["S", "M"]], + "rotogravures": null, + "rotogravure's": null, + "rotor": [["M", "S"]], + "rotor's": null, + "rotors": null, + "rototill": [["R", "Z"]], + "rototiller": null, + "rototillers": null, + "rot": [["S", "D", "G"]], + "rots": null, + "roted": null, + "roting": null, + "rotted": null, + "rottenness": [["S"]], + "rottennesses": null, + "rotten": [["R", "Y", "S", "T", "P"]], + "rottener": null, + "rottenly": null, + "rottens": null, + "rottenest": null, + "Rotterdam": [["M"]], + "Rotterdam's": null, + "rotter": [["M"]], + "rotter's": null, + "rotting": null, + "rotunda": [["S", "M"]], + "rotundas": null, + "rotunda's": null, + "rotundity": [["S"]], + "rotundities": null, + "rotundness": [["S"]], + "rotundnesses": null, + "rotund": [["S", "D", "Y", "P", "G"]], + "rotunds": null, + "rotunded": null, + "rotundly": null, + "rotunding": null, + "Rouault": [["M"]], + "Rouault's": null, + "rou�": [["M", "S"]], + "rou�'s": null, + "rou�s": null, + "rouge": [["G", "M", "D", "S"]], + "rouging": null, + "rouge's": null, + "rouged": null, + "rouges": null, + "roughage": [["S", "M"]], + "roughages": null, + "roughage's": null, + "roughen": [["D", "G"]], + "roughened": null, + "roughening": null, + "rougher": [["M"]], + "rougher's": null, + "roughhouse": [["G", "D", "S", "M"]], + "roughhousing": null, + "roughhoused": null, + "roughhouses": null, + "roughhouse's": null, + "roughish": null, + "roughneck": [["M", "D", "S", "G"]], + "roughneck's": null, + "roughnecked": null, + "roughnecks": null, + "roughnecking": null, + "roughness": [["M", "S"]], + "roughness's": null, + "roughnesses": null, + "roughs": null, + "roughshod": null, + "rough": [["X", "P", "Y", "R", "D", "N", "G", "T"]], + "roughens": null, + "roughly": null, + "roughed": null, + "roughing": null, + "roughest": null, + "roulette": [["M", "G", "D", "S"]], + "roulette's": null, + "rouletting": null, + "rouletted": null, + "roulettes": null, + "roundabout": [["P", "S", "M"]], + "roundaboutness": null, + "roundabouts": null, + "roundabout's": null, + "roundedness": [["M"]], + "roundedness's": null, + "rounded": [["P"]], + "roundelay": [["S", "M"]], + "roundelays": null, + "roundelay's": null, + "roundels": null, + "rounder": [["M"]], + "rounder's": null, + "roundhead": [["D"]], + "roundheaded": [["P"]], + "roundheadedness": [["M"]], + "roundheadedness's": null, + "roundhouse": [["S", "M"]], + "roundhouses": null, + "roundhouse's": null, + "roundish": null, + "roundness": [["M", "S"]], + "roundness's": null, + "roundnesses": null, + "roundoff": null, + "roundup": [["M", "S"]], + "roundup's": null, + "roundups": null, + "roundworm": [["M", "S"]], + "roundworm's": null, + "roundworms": null, + "round": [["Y", "R", "D", "S", "G", "P", "Z", "T"]], + "roundly": null, + "rounds": null, + "rounding": null, + "rounders": null, + "roundest": null, + "Rourke": [["M"]], + "Rourke's": null, + "rouse": [["D", "S", "R", "G"]], + "roused": null, + "rouses": null, + "rouser": [["M"]], + "rousing": null, + "rouser's": null, + "Rousseau": [["M"]], + "Rousseau's": null, + "roustabout": [["S", "M"]], + "roustabouts": null, + "roustabout's": null, + "roust": [["S", "G", "D"]], + "rousts": null, + "rousting": null, + "rousted": null, + "route": [["A", "S", "R", "D", "Z", "G", "J"]], + "reroute": null, + "reroutes": null, + "rerouter": null, + "rerouted": null, + "rerouters": null, + "rerouting": null, + "reroutings": null, + "routes": null, + "router": [["M"]], + "routed": null, + "routers": null, + "routing": [["M"]], + "routings": null, + "router's": null, + "route's": null, + "rout": [["G", "Z", "J", "M", "D", "R", "S"]], + "rout's": null, + "routs": null, + "routine": [["S", "Y", "M"]], + "routines": null, + "routinely": null, + "routine's": null, + "routing's": null, + "routinize": [["G", "S", "D"]], + "routinizing": null, + "routinizes": null, + "routinized": null, + "Rouvin": [["M"]], + "Rouvin's": null, + "rover": [["M"]], + "rover's": null, + "Rover": [["M"]], + "Rover's": null, + "rove": [["Z", "G", "J", "D", "R", "S"]], + "rovers": null, + "roving": [["M"]], + "rovings": null, + "roved": null, + "roves": null, + "roving's": null, + "Rowan": [["M"]], + "Rowan's": null, + "rowboat": [["S", "M"]], + "rowboats": null, + "rowboat's": null, + "rowdily": null, + "rowdiness": [["M", "S"]], + "rowdiness's": null, + "rowdinesses": null, + "rowdyism": [["M", "S"]], + "rowdyism's": null, + "rowdyisms": null, + "rowdy": [["P", "T", "S", "R"]], + "rowdiest": null, + "rowdies": null, + "rowdier": null, + "rowel": [["D", "M", "S", "G"]], + "roweled": null, + "rowel's": null, + "rowels": null, + "roweling": null, + "Rowe": [["M"]], + "Rowe's": null, + "Rowena": [["M"]], + "Rowena's": null, + "rowen": [["M"]], + "rowen's": null, + "Rowen": [["M"]], + "Rowen's": null, + "rower": [["M"]], + "rower's": null, + "Rowland": [["M"]], + "Rowland's": null, + "Rowley": [["M"]], + "Rowley's": null, + "Row": [["M", "N"]], + "Row's": null, + "Rowney": [["M"]], + "Rowney's": null, + "row": [["S", "J", "Z", "M", "G", "N", "D", "R"]], + "rows": null, + "rowings": null, + "rowers": null, + "row's": null, + "rowing": null, + "rowed": null, + "Roxana": [["M"]], + "Roxana's": null, + "Roxane": [["M"]], + "Roxane's": null, + "Roxanna": [["M"]], + "Roxanna's": null, + "Roxanne": [["M"]], + "Roxanne's": null, + "Roxie": [["M"]], + "Roxie's": null, + "Roxi": [["M"]], + "Roxi's": null, + "Roxine": [["M"]], + "Roxine's": null, + "Roxy": [["M"]], + "Roxy's": null, + "royalist": [["S", "M"]], + "royalists": null, + "royalist's": null, + "Royall": [["M"]], + "Royall's": null, + "Royal": [["M"]], + "Royal's": null, + "royal": [["S", "Y"]], + "royals": null, + "royally": null, + "royalty": [["M", "S"]], + "royalty's": null, + "royalties": null, + "Royce": [["M"]], + "Royce's": null, + "Roy": [["M"]], + "Roy's": null, + "Rozalie": [["M"]], + "Rozalie's": null, + "Rozalin": [["M"]], + "Rozalin's": null, + "Rozamond": [["M"]], + "Rozamond's": null, + "Rozanna": [["M"]], + "Rozanna's": null, + "Rozanne": [["M"]], + "Rozanne's": null, + "Rozele": [["M"]], + "Rozele's": null, + "Rozella": [["M"]], + "Rozella's": null, + "Rozelle": [["M"]], + "Rozelle's": null, + "Roze": [["M"]], + "Roze's": null, + "Rozina": [["M"]], + "Rozina's": null, + "Roz": [["M"]], + "Roz's": null, + "RP": null, + "rpm": null, + "RPM": null, + "rps": null, + "RR": null, + "Rriocard": [["M"]], + "Rriocard's": null, + "rs": null, + "r's": null, + "R's": null, + "RSFSR": null, + "RSI": null, + "RSV": null, + "RSVP": null, + "RSX": null, + "rt": null, + "rte": null, + "Rte": null, + "RTFM": null, + "r": [["T", "G", "V", "J"]], + "rings": null, + "Rubaiyat": [["M"]], + "Rubaiyat's": null, + "rubato": [["M", "S"]], + "rubato's": null, + "rubatos": null, + "rubbed": null, + "rubberize": [["G", "S", "D"]], + "rubberizing": null, + "rubberizes": null, + "rubberized": null, + "rubberneck": [["D", "R", "M", "G", "S", "Z"]], + "rubbernecked": null, + "rubbernecker": null, + "rubberneck's": null, + "rubbernecking": null, + "rubbernecks": null, + "rubberneckers": null, + "rubber": [["S", "D", "M", "G"]], + "rubbers": null, + "rubbered": null, + "rubber's": null, + "rubbering": null, + "rubbery": [["T", "R"]], + "rubberiest": null, + "rubberier": null, + "rubbing": [["M"]], + "rubbing's": null, + "rubbish": [["D", "S", "M", "G"]], + "rubbished": null, + "rubbishes": null, + "rubbish's": null, + "rubbishing": null, + "rubbishy": null, + "rubble": [["G", "M", "S", "D"]], + "rubbling": null, + "rubble's": null, + "rubbles": null, + "rubbled": null, + "rubdown": [["M", "S"]], + "rubdown's": null, + "rubdowns": null, + "rubella": [["M", "S"]], + "rubella's": null, + "rubellas": null, + "Rube": [["M"]], + "Rube's": null, + "Ruben": [["M", "S"]], + "Ruben's": null, + "Rubens": null, + "rube": [["S", "M"]], + "rubes": null, + "rube's": null, + "Rubetta": [["M"]], + "Rubetta's": null, + "Rubia": [["M"]], + "Rubia's": null, + "Rubicon": [["S", "M"]], + "Rubicons": null, + "Rubicon's": null, + "rubicund": null, + "rubidium": [["S", "M"]], + "rubidiums": null, + "rubidium's": null, + "Rubie": [["M"]], + "Rubie's": null, + "Rubik": [["M"]], + "Rubik's": null, + "Rubi": [["M"]], + "Rubi's": null, + "Rubina": [["M"]], + "Rubina's": null, + "Rubin": [["M"]], + "Rubin's": null, + "Rubinstein": [["M"]], + "Rubinstein's": null, + "ruble": [["M", "S"]], + "ruble's": null, + "rubles": null, + "rubout": null, + "rubric": [["M", "S"]], + "rubric's": null, + "rubrics": null, + "rub": [["S"]], + "rubs": null, + "Ruby": [["M"]], + "Ruby's": null, + "ruby": [["M", "T", "G", "D", "S", "R"]], + "ruby's": null, + "rubiest": null, + "rubying": null, + "rubied": null, + "rubies": null, + "rubier": null, + "Ruchbah": [["M"]], + "Ruchbah's": null, + "ruck": [["M"]], + "ruck's": null, + "rucksack": [["S", "M"]], + "rucksacks": null, + "rucksack's": null, + "ruckus": [["S", "M"]], + "ruckuses": null, + "ruckus's": null, + "ruction": [["S", "M"]], + "ructions": null, + "ruction's": null, + "rudderless": null, + "rudder": [["M", "S"]], + "rudder's": null, + "rudders": null, + "Ruddie": [["M"]], + "Ruddie's": null, + "ruddiness": [["M", "S"]], + "ruddiness's": null, + "ruddinesses": null, + "Rudd": [["M"]], + "Rudd's": null, + "Ruddy": [["M"]], + "Ruddy's": null, + "ruddy": [["P", "T", "G", "R", "S", "D"]], + "ruddiest": null, + "ruddying": null, + "ruddier": null, + "ruddies": null, + "ruddied": null, + "rudeness": [["M", "S"]], + "rudeness's": null, + "rudenesses": null, + "rude": [["P", "Y", "T", "R"]], + "rudely": null, + "rudest": null, + "ruder": null, + "Rudie": [["M"]], + "Rudie's": null, + "Rudiger": [["M"]], + "Rudiger's": null, + "rudimentariness": [["M"]], + "rudimentariness's": null, + "rudimentary": [["P"]], + "rudiment": [["S", "M"]], + "rudiments": null, + "rudiment's": null, + "Rudolf": [["M"]], + "Rudolf's": null, + "Rudolfo": [["M"]], + "Rudolfo's": null, + "Rudolph": [["M"]], + "Rudolph's": null, + "Rudyard": [["M"]], + "Rudyard's": null, + "Rudy": [["M"]], + "Rudy's": null, + "ruefulness": [["S"]], + "ruefulnesses": null, + "rueful": [["P", "Y"]], + "ruefully": null, + "rue": [["G", "D", "S"]], + "ruing": null, + "rued": null, + "rues": null, + "Rufe": [["M"]], + "Rufe's": null, + "ruff": [["G", "S", "Y", "D", "M"]], + "ruffing": null, + "ruffs": null, + "ruffly": [["T", "R"]], + "ruffed": null, + "ruff's": null, + "ruffian": [["G", "S", "M", "D", "Y"]], + "ruffianing": null, + "ruffians": null, + "ruffian's": null, + "ruffianed": null, + "ruffianly": null, + "ruffled": [["U"]], + "unruffled": null, + "ruffler": [["M"]], + "ruffler's": null, + "ruffle": [["R", "S", "D", "G"]], + "ruffles": null, + "ruffling": null, + "ruffliest": null, + "rufflier": null, + "Rufus": [["M"]], + "Rufus's": null, + "Rugby's": null, + "rugby": [["S", "M"]], + "rugbies": null, + "rugby's": null, + "ruggedness": [["S"]], + "ruggednesses": null, + "rugged": [["P", "Y", "R", "T"]], + "ruggedly": null, + "ruggeder": null, + "ruggedest": null, + "Ruggiero": [["M"]], + "Ruggiero's": null, + "rugging": null, + "rug": [["M", "S"]], + "rug's": null, + "rugs": null, + "Ruhr": [["M"]], + "Ruhr's": null, + "ruination": [["M", "S"]], + "ruination's": null, + "ruinations": null, + "ruiner": [["M"]], + "ruiner's": null, + "ruin": [["M", "G", "S", "D", "R"]], + "ruin's": null, + "ruining": null, + "ruins": null, + "ruined": null, + "ruinousness": [["M"]], + "ruinousness's": null, + "ruinous": [["Y", "P"]], + "ruinously": null, + "Ruiz": [["M"]], + "Ruiz's": null, + "rulebook": [["S"]], + "rulebooks": null, + "ruled": [["U"]], + "unruled": null, + "rule": [["M", "Z", "G", "J", "D", "R", "S"]], + "rule's": null, + "rulers": null, + "ruling": [["M"]], + "rulings": null, + "ruler": [["G", "M", "D"]], + "rules": null, + "rulering": null, + "ruler's": null, + "rulered": null, + "ruling's": null, + "Rumanian's": null, + "Rumania's": null, + "rumba": [["G", "D", "M", "S"]], + "rumbaing": null, + "rumbaed": null, + "rumba's": null, + "rumbas": null, + "rumble": [["J", "R", "S", "D", "G"]], + "rumblings": null, + "rumbler": [["M"]], + "rumbles": null, + "rumbled": null, + "rumbling": null, + "rumbler's": null, + "rumbustious": null, + "rumen": [["M"]], + "rumen's": null, + "Rumford": [["M"]], + "Rumford's": null, + "Ru": [["M", "H"]], + "Ru's": null, + "Ruth": [["M"]], + "ruminant": [["Y", "M", "S"]], + "ruminantly": null, + "ruminant's": null, + "ruminants": null, + "ruminate": [["V", "N", "G", "X", "S", "D"]], + "ruminative": [["Y"]], + "rumination": null, + "ruminating": null, + "ruminations": null, + "ruminates": null, + "ruminated": null, + "ruminatively": null, + "rummage": [["G", "R", "S", "D"]], + "rummaging": null, + "rummager": [["M"]], + "rummages": null, + "rummaged": null, + "rummager's": null, + "Rummel": [["M"]], + "Rummel's": null, + "rummer": null, + "rummest": null, + "rummy": [["T", "R", "S", "M"]], + "rummiest": null, + "rummier": null, + "rummies": null, + "rummy's": null, + "rumored": [["U"]], + "unrumored": null, + "rumorer": [["M"]], + "rumorer's": null, + "rumormonger": [["S", "G", "M", "D"]], + "rumormongers": null, + "rumormongering": null, + "rumormonger's": null, + "rumormongered": null, + "rumor": [["Z", "M", "R", "D", "S", "G"]], + "rumorers": null, + "rumor's": null, + "rumors": null, + "rumoring": null, + "Rumpelstiltskin": [["M"]], + "Rumpelstiltskin's": null, + "rump": [["G", "M", "Y", "D", "S"]], + "rumping": null, + "rump's": null, + "rumply": [["T", "R"]], + "rumped": null, + "rumps": null, + "rumple": [["S", "D", "G"]], + "rumples": null, + "rumpled": null, + "rumpling": null, + "rumpliest": null, + "rumplier": null, + "rumpus": [["S", "M"]], + "rumpuses": null, + "rumpus's": null, + "rum": [["X", "S", "M", "N"]], + "rumens": null, + "rums": null, + "rum's": null, + "runabout": [["S", "M"]], + "runabouts": null, + "runabout's": null, + "runaround": [["S"]], + "runarounds": null, + "run": [["A", "S"]], + "rerun": null, + "reruns": null, + "runs": null, + "runaway": [["S"]], + "runaways": null, + "rundown": [["S", "M"]], + "rundowns": null, + "rundown's": null, + "rune": [["M", "S"]], + "rune's": null, + "runes": null, + "Runge": [["M"]], + "Runge's": null, + "rung": [["M", "S"]], + "rung's": null, + "rungs": null, + "runic": null, + "runlet": [["S", "M"]], + "runlets": null, + "runlet's": null, + "runnable": null, + "runnel": [["S", "M"]], + "runnels": null, + "runnel's": null, + "runner": [["M", "S"]], + "runner's": null, + "runners": null, + "running": [["S"]], + "runnings": null, + "Runnymede": [["M"]], + "Runnymede's": null, + "runny": [["R", "T"]], + "runnier": null, + "runniest": null, + "runoff": [["M", "S"]], + "runoff's": null, + "runoffs": null, + "runtime": null, + "runtiness": [["M"]], + "runtiness's": null, + "runt": [["M", "S"]], + "runt's": null, + "runts": null, + "runty": [["R", "P", "T"]], + "runtier": null, + "runtiest": null, + "runway": [["M", "S"]], + "runway's": null, + "runways": null, + "Runyon": [["M"]], + "Runyon's": null, + "rupee": [["M", "S"]], + "rupee's": null, + "rupees": null, + "Ruperta": [["M"]], + "Ruperta's": null, + "Rupert": [["M"]], + "Rupert's": null, + "Ruperto": [["M"]], + "Ruperto's": null, + "rupiah": [["M"]], + "rupiah's": null, + "rupiahs": null, + "Ruppert": [["M"]], + "Ruppert's": null, + "Ruprecht": [["M"]], + "Ruprecht's": null, + "rupture": [["G", "M", "S", "D"]], + "rupturing": null, + "rupture's": null, + "ruptures": null, + "ruptured": null, + "rurality": [["M"]], + "rurality's": null, + "rural": [["Y"]], + "rurally": null, + "Rurik": [["M"]], + "Rurik's": null, + "ruse": [["M", "S"]], + "ruse's": null, + "ruses": null, + "Rushdie": [["M"]], + "Rushdie's": null, + "rush": [["D", "S", "R", "G", "Z"]], + "rushed": null, + "rushes": [["I"]], + "rusher": [["M"]], + "rushing": [["M"]], + "rushers": null, + "rusher's": null, + "inrushes": null, + "rushing's": null, + "Rush": [["M"]], + "Rush's": null, + "Rushmore": [["M"]], + "Rushmore's": null, + "rushy": [["R", "T"]], + "rushier": null, + "rushiest": null, + "Ruskin": [["M"]], + "Ruskin's": null, + "rusk": [["M", "S"]], + "rusk's": null, + "rusks": null, + "Russell": [["M"]], + "Russell's": null, + "Russel": [["M"]], + "Russel's": null, + "russet": [["M", "D", "S"]], + "russet's": null, + "russeted": null, + "russets": null, + "russetting": null, + "Russia": [["M"]], + "Russia's": null, + "Russian": [["S", "M"]], + "Russians": null, + "Russian's": null, + "Russo": [["M"]], + "Russo's": null, + "Russ": [["S"]], + "Russes": null, + "Rustbelt": [["M"]], + "Rustbelt's": null, + "rustically": null, + "rusticate": [["G", "S", "D"]], + "rusticating": null, + "rusticates": null, + "rusticated": null, + "rustication": [["M"]], + "rustication's": null, + "rusticity": [["S"]], + "rusticities": null, + "rustic": [["S"]], + "rustics": null, + "Rustie": [["M"]], + "Rustie's": null, + "rustiness": [["M", "S"]], + "rustiness's": null, + "rustinesses": null, + "Rustin": [["M"]], + "Rustin's": null, + "rustler": [["M"]], + "rustler's": null, + "rustle": [["R", "S", "D", "G", "Z"]], + "rustles": null, + "rustled": null, + "rustling": null, + "rustlers": null, + "rust": [["M", "S", "D", "G"]], + "rust's": null, + "rusts": null, + "rusted": null, + "rusting": null, + "rustproof": [["D", "G", "S"]], + "rustproofed": null, + "rustproofing": null, + "rustproofs": null, + "Rusty": [["M"]], + "Rusty's": null, + "rusty": [["X", "N", "R", "T", "P"]], + "rustications": null, + "rustier": null, + "rustiest": null, + "rutabaga": [["S", "M"]], + "rutabagas": null, + "rutabaga's": null, + "Rutger": [["S", "M"]], + "Rutgers": null, + "Rutger's": null, + "Ruthanne": [["M"]], + "Ruthanne's": null, + "Ruthann": [["M"]], + "Ruthann's": null, + "Ruthe": [["M"]], + "Ruthe's": null, + "ruthenium": [["M", "S"]], + "ruthenium's": null, + "rutheniums": null, + "rutherfordium": [["S", "M"]], + "rutherfordiums": null, + "rutherfordium's": null, + "Rutherford": [["M"]], + "Rutherford's": null, + "Ruthie": [["M"]], + "Ruthie's": null, + "Ruthi": [["M"]], + "Ruthi's": null, + "ruthlessness": [["M", "S"]], + "ruthlessness's": null, + "ruthlessnesses": null, + "ruthless": [["Y", "P"]], + "ruthlessly": null, + "Ruth's": null, + "Ruthy": [["M"]], + "Ruthy's": null, + "Rutland": [["M"]], + "Rutland's": null, + "Rutledge": [["M"]], + "Rutledge's": null, + "rut": [["M", "S"]], + "rut's": null, + "ruts": null, + "rutted": null, + "Rutter": [["M"]], + "Rutter's": null, + "Ruttger": [["M"]], + "Ruttger's": null, + "rutting": null, + "rutty": [["R", "T"]], + "ruttier": null, + "ruttiest": null, + "Ruy": [["M"]], + "Ruy's": null, + "RV": null, + "RVs": null, + "Rwandan": [["S"]], + "Rwandans": null, + "Rwanda": [["S", "M"]], + "Rwandas": null, + "Rwanda's": null, + "Rwy": [["M"]], + "Rwy's": null, + "Rx": [["M"]], + "Rx's": null, + "Ryan": [["M"]], + "Ryan's": null, + "Ryann": [["M"]], + "Ryann's": null, + "Rycca": [["M"]], + "Rycca's": null, + "Rydberg": [["M"]], + "Rydberg's": null, + "Ryder": [["M"]], + "Ryder's": null, + "rye": [["M", "S"]], + "rye's": null, + "ryes": null, + "Ryley": [["M"]], + "Ryley's": null, + "Ry": [["M"]], + "Ry's": null, + "Ryon": [["M"]], + "Ryon's": null, + "Ryukyu": [["M"]], + "Ryukyu's": null, + "Ryun": [["M"]], + "Ryun's": null, + "S": null, + "SA": null, + "Saab": [["M"]], + "Saab's": null, + "Saar": [["M"]], + "Saar's": null, + "Saba": [["M"]], + "Saba's": null, + "sabbath": null, + "Sabbath": [["M"]], + "Sabbath's": null, + "Sabbaths": null, + "sabbatical": [["S"]], + "sabbaticals": null, + "sabered": [["U"]], + "unsabered": null, + "saber": [["G", "S", "M", "D"]], + "sabering": null, + "sabers": null, + "saber's": null, + "Sabik": [["M"]], + "Sabik's": null, + "Sabina": [["M"]], + "Sabina's": null, + "Sabine": [["M"]], + "Sabine's": null, + "Sabin": [["M"]], + "Sabin's": null, + "sable": [["G", "M", "D", "S"]], + "sabling": null, + "sable's": null, + "sabled": null, + "sables": null, + "sabotage": [["D", "S", "M", "G"]], + "sabotaged": null, + "sabotages": null, + "sabotage's": null, + "sabotaging": null, + "saboteur": [["S", "M"]], + "saboteurs": null, + "saboteur's": null, + "sabot": [["M", "S"]], + "sabot's": null, + "sabots": null, + "Sabra": [["M"]], + "Sabra's": null, + "sabra": [["M", "S"]], + "sabra's": null, + "sabras": null, + "Sabrina": [["M"]], + "Sabrina's": null, + "SAC": null, + "Sacajawea": [["M"]], + "Sacajawea's": null, + "saccharides": null, + "saccharine": null, + "saccharin": [["M", "S"]], + "saccharin's": null, + "saccharins": null, + "Sacco": [["M"]], + "Sacco's": null, + "sacerdotal": null, + "Sacha": [["M"]], + "Sacha's": null, + "sachem": [["M", "S"]], + "sachem's": null, + "sachems": null, + "sachet": [["S", "M"]], + "sachets": null, + "sachet's": null, + "Sachs": [["M"]], + "Sachs's": null, + "sackcloth": [["M"]], + "sackcloth's": null, + "sackcloths": null, + "sacker": [["M"]], + "sacker's": null, + "sackful": [["M", "S"]], + "sackful's": null, + "sackfuls": null, + "sack": [["G", "J", "D", "R", "M", "S"]], + "sacking": [["M"]], + "sackings": null, + "sacked": null, + "sack's": null, + "sacks": null, + "sacking's": null, + "sacral": null, + "sacra": [["L"]], + "sacrament": [["D", "M", "G", "S"]], + "sacramental": [["S"]], + "sacramentals": null, + "sacramented": null, + "sacrament's": null, + "sacramenting": null, + "sacraments": null, + "Sacramento": [["M"]], + "Sacramento's": null, + "sacredness": [["S"]], + "sacrednesses": null, + "sacred": [["P", "Y"]], + "sacredly": null, + "sacrificer": [["M"]], + "sacrificer's": null, + "sacrifice": [["R", "S", "D", "Z", "M", "G"]], + "sacrifices": null, + "sacrificed": null, + "sacrificers": null, + "sacrifice's": null, + "sacrificing": null, + "sacrificial": [["Y"]], + "sacrificially": null, + "sacrilege": [["M", "S"]], + "sacrilege's": null, + "sacrileges": null, + "sacrilegious": [["Y"]], + "sacrilegiously": null, + "sacristan": [["S", "M"]], + "sacristans": null, + "sacristan's": null, + "sacristy": [["M", "S"]], + "sacristy's": null, + "sacristies": null, + "sacroiliac": [["S"]], + "sacroiliacs": null, + "sacrosanctness": [["M", "S"]], + "sacrosanctness's": null, + "sacrosanctnesses": null, + "sacrosanct": [["P"]], + "sacrum": [["M"]], + "sacrum's": null, + "sac": [["S", "M"]], + "sacs": null, + "sac's": null, + "Sada": [["M"]], + "Sada's": null, + "Sadat": [["M"]], + "Sadat's": null, + "Saddam": [["M"]], + "Saddam's": null, + "sadden": [["D", "S", "G"]], + "saddened": null, + "saddens": null, + "saddening": null, + "sadder": null, + "saddest": null, + "saddlebag": [["S", "M"]], + "saddlebags": null, + "saddlebag's": null, + "saddler": [["M"]], + "saddler's": null, + "saddle's": null, + "saddle": [["U", "G", "D", "S"]], + "unsaddle": null, + "unsaddling": null, + "unsaddled": null, + "unsaddles": null, + "saddling": null, + "saddled": null, + "saddles": null, + "Sadducee": [["M"]], + "Sadducee's": null, + "Sadella": [["M"]], + "Sadella's": null, + "Sade": [["M"]], + "Sade's": null, + "sades": null, + "Sadie": [["M"]], + "Sadie's": null, + "sadism": [["M", "S"]], + "sadism's": null, + "sadisms": null, + "sadistic": null, + "sadistically": null, + "sadist": [["M", "S"]], + "sadist's": null, + "sadists": null, + "sadness": [["S", "M"]], + "sadnesses": null, + "sadness's": null, + "sadomasochism": [["M", "S"]], + "sadomasochism's": null, + "sadomasochisms": null, + "sadomasochistic": null, + "sadomasochist": [["S"]], + "sadomasochists": null, + "sad": [["P", "Y"]], + "sadly": null, + "Sadr": [["M"]], + "Sadr's": null, + "Sadye": [["M"]], + "Sadye's": null, + "safari": [["G", "M", "D", "S"]], + "safariing": null, + "safari's": null, + "safaried": null, + "safaris": null, + "safeguard": [["M", "D", "S", "G"]], + "safeguard's": null, + "safeguarded": null, + "safeguards": null, + "safeguarding": null, + "safekeeping": [["M", "S"]], + "safekeeping's": null, + "safekeepings": null, + "safeness": [["M", "S"]], + "safeness's": [["U"]], + "safenesses": null, + "unsafeness's": null, + "safes": null, + "safety": [["S", "D", "M", "G"]], + "safeties": null, + "safetied": null, + "safety's": null, + "safetying": null, + "safe": [["U", "R", "P", "T", "Y"]], + "unsafe": null, + "unsafer": null, + "unsafeness": null, + "unsafely": null, + "safer": null, + "safest": null, + "safely": null, + "safflower": [["S", "M"]], + "safflowers": null, + "safflower's": null, + "saffron": [["M", "S"]], + "saffron's": null, + "saffrons": null, + "sagaciousness": [["M"]], + "sagaciousness's": null, + "sagacious": [["Y", "P"]], + "sagaciously": null, + "sagacity": [["M", "S"]], + "sagacity's": null, + "sagacities": null, + "saga": [["M", "S"]], + "saga's": null, + "sagas": null, + "Sagan": [["M"]], + "Sagan's": null, + "sagebrush": [["S", "M"]], + "sagebrushes": null, + "sagebrush's": null, + "sage": [["M", "Y", "P", "S"]], + "sage's": null, + "sagely": null, + "sageness": null, + "sages": null, + "sagged": null, + "sagger": null, + "sagging": null, + "saggy": [["R", "T"]], + "saggier": null, + "saggiest": null, + "Saginaw": [["M"]], + "Saginaw's": null, + "Sagittarius": [["M", "S"]], + "Sagittarius's": null, + "Sagittariuses": null, + "sago": [["M", "S"]], + "sago's": null, + "sagos": null, + "sag": [["T", "S", "R"]], + "sagest": null, + "sags": null, + "sager": null, + "saguaro": [["S", "M"]], + "saguaros": null, + "saguaro's": null, + "Sahara": [["M"]], + "Sahara's": null, + "Saharan": [["M"]], + "Saharan's": null, + "Sahel": null, + "sahib": [["M", "S"]], + "sahib's": null, + "sahibs": null, + "Saidee": [["M"]], + "Saidee's": null, + "saids": null, + "said": [["U"]], + "unsaid": null, + "Saigon": [["M"]], + "Saigon's": null, + "sailboard": [["D", "G", "S"]], + "sailboarded": null, + "sailboarding": null, + "sailboards": null, + "sailboat": [["S", "R", "M", "Z", "G"]], + "sailboats": null, + "sailboater": null, + "sailboat's": null, + "sailboaters": null, + "sailboating": null, + "sailcloth": [["M"]], + "sailcloth's": null, + "sailcloths": null, + "sailer": [["M"]], + "sailer's": null, + "sailfish": [["S", "M"]], + "sailfishes": null, + "sailfish's": null, + "sail": [["G", "J", "M", "D", "R", "S"]], + "sailing": [["M"]], + "sailings": null, + "sail's": null, + "sailed": null, + "sails": null, + "sailing's": null, + "sailor": [["Y", "M", "S"]], + "sailorly": null, + "sailor's": null, + "sailors": null, + "sailplane": [["S", "D", "M", "G"]], + "sailplanes": null, + "sailplaned": null, + "sailplane's": null, + "sailplaning": null, + "sainthood": [["M", "S"]], + "sainthood's": null, + "sainthoods": null, + "saintlike": null, + "saintliness": [["M", "S"]], + "saintliness's": null, + "saintlinesses": null, + "saintly": [["R", "T", "P"]], + "saintlier": null, + "saintliest": null, + "saint": [["Y", "D", "M", "G", "S"]], + "sainted": null, + "saint's": null, + "sainting": null, + "saints": null, + "Saiph": [["M"]], + "Saiph's": null, + "saith": null, + "saiths": null, + "Sakai": [["M"]], + "Sakai's": null, + "sake": [["M", "R", "S"]], + "sake's": null, + "saker": [["M"]], + "sakes": null, + "saker's": null, + "Sakhalin": [["M"]], + "Sakhalin's": null, + "Sakharov": [["M"]], + "Sakharov's": null, + "Saki": [["M"]], + "Saki's": null, + "saki's": null, + "salaam": [["G", "M", "D", "S"]], + "salaaming": null, + "salaam's": null, + "salaamed": null, + "salaams": null, + "salable": [["U"]], + "unsalable": null, + "salaciousness": [["M", "S"]], + "salaciousness's": null, + "salaciousnesses": null, + "salacious": [["Y", "P"]], + "salaciously": null, + "salacity": [["M", "S"]], + "salacity's": null, + "salacities": null, + "Saladin": [["M"]], + "Saladin's": null, + "Salado": [["M"]], + "Salado's": null, + "salad": [["S", "M"]], + "salads": null, + "salad's": null, + "Salaidh": [["M"]], + "Salaidh's": null, + "salamander": [["M", "S"]], + "salamander's": null, + "salamanders": null, + "salami": [["M", "S"]], + "salami's": null, + "salamis": null, + "salary": [["S", "D", "M", "G"]], + "salaries": null, + "salaried": null, + "salary's": null, + "salarying": null, + "Salas": [["M"]], + "Salas's": null, + "Salazar": [["M"]], + "Salazar's": null, + "saleability": [["M"]], + "saleability's": null, + "sale": [["A", "B", "M", "S"]], + "resale": null, + "resalable": null, + "resale's": null, + "resales": null, + "sale's": null, + "sales": null, + "Saleem": [["M"]], + "Saleem's": null, + "Salem": [["M"]], + "Salem's": null, + "Salerno": [["M"]], + "Salerno's": null, + "salesclerk": [["S", "M"]], + "salesclerks": null, + "salesclerk's": null, + "salesgirl": [["S", "M"]], + "salesgirls": null, + "salesgirl's": null, + "saleslady": [["S"]], + "salesladies": null, + "salesman": [["M"]], + "salesman's": null, + "salesmanship": [["S", "M"]], + "salesmanships": null, + "salesmanship's": null, + "salesmen": null, + "salespeople": [["M"]], + "salespeople's": null, + "salesperson": [["M", "S"]], + "salesperson's": null, + "salespersons": null, + "salesroom": [["M"]], + "salesroom's": null, + "saleswoman": null, + "saleswomen": null, + "salience": [["M", "S"]], + "salience's": null, + "saliences": null, + "saliency": null, + "salient": [["S", "Y"]], + "salients": null, + "saliently": null, + "Salim": [["M"]], + "Salim's": null, + "Salina": [["M", "S"]], + "Salina's": null, + "Salinas": null, + "saline": [["S"]], + "salines": null, + "salinger": null, + "Salinger": [["M"]], + "Salinger's": null, + "salinity": [["M", "S"]], + "salinity's": null, + "salinities": null, + "Salisbury": [["M"]], + "Salisbury's": null, + "Salish": [["M"]], + "Salish's": null, + "saliva": [["M", "S"]], + "saliva's": null, + "salivas": null, + "salivary": null, + "salivate": [["X", "N", "G", "S", "D"]], + "salivations": null, + "salivation": [["M"]], + "salivating": null, + "salivates": null, + "salivated": null, + "salivation's": null, + "Salk": [["M"]], + "Salk's": null, + "Sallee": [["M"]], + "Sallee's": null, + "Salle": [["M"]], + "Salle's": null, + "Sallie": [["M"]], + "Sallie's": null, + "Salli": [["M"]], + "Salli's": null, + "sallowness": [["M", "S"]], + "sallowness's": null, + "sallownesses": null, + "sallow": [["T", "G", "R", "D", "S", "P"]], + "sallowest": null, + "sallowing": null, + "sallower": null, + "sallowed": null, + "sallows": null, + "Sallust": [["M"]], + "Sallust's": null, + "Sallyanne": [["M"]], + "Sallyanne's": null, + "Sallyann": [["M"]], + "Sallyann's": null, + "sally": [["G", "S", "D", "M"]], + "sallying": null, + "sallies": null, + "sallied": null, + "sally's": null, + "Sally": [["M"]], + "Sally's": null, + "salmonellae": null, + "salmonella": [["M"]], + "salmonella's": null, + "Salmon": [["M"]], + "Salmon's": null, + "salmon": [["S", "M"]], + "salmons": null, + "salmon's": null, + "Sal": [["M", "Y"]], + "Sal's": null, + "Saloma": [["M"]], + "Saloma's": null, + "Salome": [["M"]], + "Salome's": null, + "Salomi": [["M"]], + "Salomi's": null, + "Salomo": [["M"]], + "Salomo's": null, + "Salomone": [["M"]], + "Salomone's": null, + "Salomon": [["M"]], + "Salomon's": null, + "Salonika": [["M"]], + "Salonika's": null, + "salon": [["S", "M"]], + "salons": null, + "salon's": null, + "saloonkeeper": null, + "saloon": [["M", "S"]], + "saloon's": null, + "saloons": null, + "salsa": [["M", "S"]], + "salsa's": null, + "salsas": null, + "salsify": [["M"]], + "salsify's": null, + "SALT": null, + "saltcellar": [["S", "M"]], + "saltcellars": null, + "saltcellar's": null, + "salted": [["U", "C"]], + "unsalted": null, + "desalted": null, + "salter": [["M"]], + "salter's": null, + "salt": [["G", "Z", "T", "P", "M", "D", "R", "S"]], + "salting": null, + "salters": null, + "saltest": null, + "saltness": [["M"]], + "salt's": null, + "salts": [["C"]], + "saltine": [["M", "S"]], + "saltine's": null, + "saltines": null, + "saltiness": [["S", "M"]], + "saltinesses": null, + "saltiness's": null, + "saltness's": null, + "Salton": [["M"]], + "Salton's": null, + "saltpeter": [["S", "M"]], + "saltpeters": null, + "saltpeter's": null, + "desalts": null, + "saltshaker": [["S"]], + "saltshakers": null, + "saltwater": null, + "salty": [["R", "S", "P", "T"]], + "saltier": null, + "salties": null, + "saltiest": null, + "salubriousness": [["M"]], + "salubriousness's": null, + "salubrious": [["Y", "P"]], + "salubriously": null, + "salubrity": [["M"]], + "salubrity's": null, + "salutariness": [["M"]], + "salutariness's": null, + "salutary": [["P"]], + "salutation": [["S", "M"]], + "salutations": null, + "salutation's": null, + "salutatory": [["S"]], + "salutatories": null, + "saluter": [["M"]], + "saluter's": null, + "salute": [["R", "S", "D", "G"]], + "salutes": null, + "saluted": null, + "saluting": null, + "Salvadoran": [["S"]], + "Salvadorans": null, + "Salvadorian": [["S"]], + "Salvadorians": null, + "Salvador": [["M"]], + "Salvador's": null, + "salvageable": null, + "salvage": [["M", "G", "R", "S", "D"]], + "salvage's": null, + "salvaging": null, + "salvager": [["M"]], + "salvages": null, + "salvaged": null, + "salvager's": null, + "salvation": [["M", "S"]], + "salvation's": null, + "salvations": null, + "Salvatore": [["M"]], + "Salvatore's": null, + "salve": [["G", "Z", "M", "D", "S", "R"]], + "salving": null, + "salvers": null, + "salve's": null, + "salved": null, + "salves": null, + "salver": [["M"]], + "salver's": null, + "Salvidor": [["M"]], + "Salvidor's": null, + "salvo": [["G", "M", "D", "S"]], + "salvoing": null, + "salvo's": null, + "salvoed": null, + "salvos": null, + "Salween": [["M"]], + "Salween's": null, + "Salyut": [["M"]], + "Salyut's": null, + "Salz": [["M"]], + "Salz's": null, + "SAM": null, + "Samantha": [["M"]], + "Samantha's": null, + "Samara": [["M"]], + "Samara's": null, + "Samaria": [["M"]], + "Samaria's": null, + "Samaritan": [["M", "S"]], + "Samaritan's": null, + "Samaritans": null, + "samarium": [["M", "S"]], + "samarium's": null, + "samariums": null, + "Samarkand": [["M"]], + "Samarkand's": null, + "samba": [["G", "S", "D", "M"]], + "sambaing": null, + "sambas": null, + "sambaed": null, + "samba's": null, + "sameness": [["M", "S"]], + "sameness's": null, + "samenesses": null, + "same": [["S", "P"]], + "sames": null, + "Sam": [["M"]], + "Sam's": null, + "Sammie": [["M"]], + "Sammie's": null, + "Sammy": [["M"]], + "Sammy's": null, + "Samoa": null, + "Samoan": [["S"]], + "Samoans": null, + "Samoset": [["M"]], + "Samoset's": null, + "samovar": [["S", "M"]], + "samovars": null, + "samovar's": null, + "Samoyed": [["M"]], + "Samoyed's": null, + "sampan": [["M", "S"]], + "sampan's": null, + "sampans": null, + "sampler": [["M"]], + "sampler's": null, + "sample": [["R", "S", "D", "J", "G", "M", "Z"]], + "samples": null, + "sampled": null, + "samplings": null, + "sampling": [["M"]], + "sample's": null, + "samplers": null, + "sampling's": null, + "Sampson": [["M"]], + "Sampson's": null, + "Samsonite": [["M"]], + "Samsonite's": null, + "Samson": [["M"]], + "Samson's": null, + "Samuele": [["M"]], + "Samuele's": null, + "Samuel": [["S", "M"]], + "Samuels": null, + "Samuel's": null, + "Samuelson": [["M"]], + "Samuelson's": null, + "samurai": [["M"]], + "samurai's": null, + "San'a": null, + "Sana": [["M"]], + "Sana's": null, + "sanatorium": [["M", "S"]], + "sanatorium's": null, + "sanatoriums": null, + "Sanborn": [["M"]], + "Sanborn's": null, + "Sanchez": [["M"]], + "Sanchez's": null, + "Sancho": [["M"]], + "Sancho's": null, + "sanctification": [["M"]], + "sanctification's": null, + "sanctifier": [["M"]], + "sanctifier's": null, + "sanctify": [["R", "S", "D", "G", "N", "X"]], + "sanctifies": null, + "sanctified": null, + "sanctifying": null, + "sanctifications": null, + "sanctimoniousness": [["M", "S"]], + "sanctimoniousness's": null, + "sanctimoniousnesses": null, + "sanctimonious": [["P", "Y"]], + "sanctimoniously": null, + "sanctimony": [["M", "S"]], + "sanctimony's": null, + "sanctimonies": null, + "sanctioned": [["U"]], + "unsanctioned": null, + "sanction": [["S", "M", "D", "G"]], + "sanctions": null, + "sanction's": null, + "sanctioning": null, + "sanctity": [["S", "M"]], + "sanctities": null, + "sanctity's": null, + "sanctuary": [["M", "S"]], + "sanctuary's": null, + "sanctuaries": null, + "sanctum": [["S", "M"]], + "sanctums": null, + "sanctum's": null, + "sandal": [["M", "D", "G", "S"]], + "sandal's": null, + "sandaled": null, + "sandaling": null, + "sandals": null, + "sandalwood": [["S", "M"]], + "sandalwoods": null, + "sandalwood's": null, + "sandbagged": null, + "sandbagging": null, + "sandbag": [["M", "S"]], + "sandbag's": null, + "sandbags": null, + "sandbank": [["S", "M"]], + "sandbanks": null, + "sandbank's": null, + "sandbar": [["S"]], + "sandbars": null, + "sandblaster": [["M"]], + "sandblaster's": null, + "sandblast": [["G", "Z", "S", "M", "R", "D"]], + "sandblasting": null, + "sandblasters": null, + "sandblasts": null, + "sandblast's": null, + "sandblasted": null, + "sandbox": [["M", "S"]], + "sandbox's": null, + "sandboxes": null, + "Sandburg": [["M"]], + "Sandburg's": null, + "sandcastle": [["S"]], + "sandcastles": null, + "Sande": [["M"]], + "Sande's": null, + "Sanderling": [["M"]], + "Sanderling's": null, + "sander": [["M"]], + "sander's": null, + "Sander": [["M"]], + "Sander's": null, + "Sanderson": [["M"]], + "Sanderson's": null, + "sandhill": null, + "sandhog": [["S", "M"]], + "sandhogs": null, + "sandhog's": null, + "Sandia": [["M"]], + "Sandia's": null, + "Sandie": [["M"]], + "Sandie's": null, + "Sandi": [["M"]], + "Sandi's": null, + "sandiness": [["S"]], + "sandinesses": null, + "Sandinista": null, + "sandlot": [["S", "M"]], + "sandlots": null, + "sandlot's": null, + "sandlotter": [["S"]], + "sandlotters": null, + "sandman": [["M"]], + "sandman's": null, + "sandmen": null, + "Sand": [["M", "R", "Z"]], + "Sand's": null, + "Sanders": null, + "Sandor": [["M"]], + "Sandor's": null, + "Sandoval": [["M"]], + "Sandoval's": null, + "sandpaper": [["D", "M", "G", "S"]], + "sandpapered": null, + "sandpaper's": null, + "sandpapering": null, + "sandpapers": null, + "sandpile": null, + "sandpiper": [["M", "S"]], + "sandpiper's": null, + "sandpipers": null, + "sandpit": [["M"]], + "sandpit's": null, + "Sandra": [["M"]], + "Sandra's": null, + "Sandro": [["M"]], + "Sandro's": null, + "sand": [["S", "M", "D", "R", "G", "Z"]], + "sands": null, + "sand's": null, + "sanded": null, + "sanding": null, + "sanders": null, + "sandstone": [["M", "S"]], + "sandstone's": null, + "sandstones": null, + "sandstorm": [["S", "M"]], + "sandstorms": null, + "sandstorm's": null, + "Sandusky": [["M"]], + "Sandusky's": null, + "sandwich": [["S", "D", "M", "G"]], + "sandwiches": null, + "sandwiched": null, + "sandwich's": null, + "sandwiching": null, + "Sandye": [["M"]], + "Sandye's": null, + "Sandy": [["M"]], + "Sandy's": null, + "sandy": [["P", "R", "T"]], + "sandier": null, + "sandiest": null, + "saned": null, + "sane": [["I", "R", "Y", "T", "P"]], + "insane": null, + "insaner": null, + "insanely": null, + "insaneness": null, + "saner": null, + "sanely": null, + "sanest": null, + "saneness": [["M", "S"]], + "saneness's": [["I"]], + "sanenesses": null, + "insaneness's": null, + "sanes": null, + "Sanford": [["M"]], + "Sanford's": null, + "Sanforized": null, + "Sanger": [["M"]], + "Sanger's": null, + "sangfroid": [["S"]], + "sangfroids": null, + "sangria": [["S", "M"]], + "sangrias": null, + "sangria's": null, + "Sang": [["R", "M"]], + "Sang's": null, + "sang": [["S"]], + "sangs": null, + "sanguinary": null, + "sanguined": null, + "sanguine": [["F"]], + "consanguine": null, + "sanguinely": null, + "sanguineness": [["M"]], + "sanguineness's": null, + "sanguineous": [["F"]], + "sanguines": null, + "sanguining": null, + "Sanhedrin": [["M"]], + "Sanhedrin's": null, + "saning": null, + "sanitarian": [["S"]], + "sanitarians": null, + "sanitarium": [["S", "M"]], + "sanitariums": null, + "sanitarium's": null, + "sanitary": [["S"]], + "sanitaries": null, + "sanitate": [["N", "X"]], + "sanitation": [["M"]], + "sanitations": null, + "sanitation's": null, + "sanitizer": [["M"]], + "sanitizer's": null, + "sanitize": [["R", "S", "D", "Z", "G"]], + "sanitizes": null, + "sanitized": null, + "sanitizers": null, + "sanitizing": null, + "sanity": [["S", "I", "M"]], + "sanities": null, + "insanities": null, + "insanity": null, + "insanity's": null, + "sanity's": null, + "sank": null, + "Sankara": [["M"]], + "Sankara's": null, + "San": [["M"]], + "San's": null, + "sans": null, + "sanserif": null, + "Sanskritic": null, + "Sanskritize": [["M"]], + "Sanskritize's": null, + "Sanskrit": [["M"]], + "Sanskrit's": null, + "Sansone": [["M"]], + "Sansone's": null, + "Sanson": [["M"]], + "Sanson's": null, + "Santa": [["M"]], + "Santa's": null, + "Santana": [["M"]], + "Santana's": null, + "Santayana": [["M"]], + "Santayana's": null, + "Santeria": null, + "Santiago": [["M"]], + "Santiago's": null, + "Santo": [["M", "S"]], + "Santo's": null, + "Santos": null, + "sapience": [["M", "S"]], + "sapience's": null, + "sapiences": null, + "sapient": null, + "sapless": null, + "sapling": [["S", "M"]], + "saplings": null, + "sapling's": null, + "sap": [["M", "S"]], + "sap's": null, + "saps": null, + "sapped": null, + "sapper": [["S", "M"]], + "sappers": null, + "sapper's": null, + "Sapphira": [["M"]], + "Sapphira's": null, + "Sapphire": [["M"]], + "Sapphire's": null, + "sapphire": [["M", "S"]], + "sapphire's": null, + "sapphires": null, + "Sappho": [["M"]], + "Sappho's": null, + "sappiness": [["S", "M"]], + "sappinesses": null, + "sappiness's": null, + "sapping": null, + "Sapporo": [["M"]], + "Sapporo's": null, + "sappy": [["R", "P", "T"]], + "sappier": null, + "sappiest": null, + "saprophyte": [["M", "S"]], + "saprophyte's": null, + "saprophytes": null, + "saprophytic": null, + "sapsucker": [["S", "M"]], + "sapsuckers": null, + "sapsucker's": null, + "sapwood": [["S", "M"]], + "sapwoods": null, + "sapwood's": null, + "Saraann": [["M"]], + "Saraann's": null, + "Saracen": [["M", "S"]], + "Saracen's": null, + "Saracens": null, + "Saragossa": [["M"]], + "Saragossa's": null, + "Sarah": [["M"]], + "Sarah's": null, + "Sarajane": [["M"]], + "Sarajane's": null, + "Sarajevo": [["M"]], + "Sarajevo's": null, + "Sara": [["M"]], + "Sara's": null, + "Saran": [["M"]], + "Saran's": null, + "saran": [["S", "M"]], + "sarans": null, + "saran's": null, + "sarape's": null, + "Sarasota": [["M"]], + "Sarasota's": null, + "Saratoga": [["M"]], + "Saratoga's": null, + "Saratov": [["M"]], + "Saratov's": null, + "Sarawak": [["M"]], + "Sarawak's": null, + "sarcasm": [["M", "S"]], + "sarcasm's": null, + "sarcasms": null, + "sarcastic": null, + "sarcastically": null, + "sarcoma": [["M", "S"]], + "sarcoma's": null, + "sarcomas": null, + "sarcophagi": null, + "sarcophagus": [["M"]], + "sarcophagus's": null, + "sardine": [["S", "D", "M", "G"]], + "sardines": null, + "sardined": null, + "sardine's": null, + "sardining": null, + "Sardinia": [["M"]], + "Sardinia's": null, + "sardonic": null, + "sardonically": null, + "Saree": [["M"]], + "Saree's": null, + "Sarena": [["M"]], + "Sarena's": null, + "Sarene": [["M"]], + "Sarene's": null, + "Sarette": [["M"]], + "Sarette's": null, + "Sargasso": [["M"]], + "Sargasso's": null, + "Sarge": [["M"]], + "Sarge's": null, + "Sargent": [["M"]], + "Sargent's": null, + "sarge": [["S", "M"]], + "sarges": null, + "sarge's": null, + "Sargon": [["M"]], + "Sargon's": null, + "Sari": [["M"]], + "Sari's": null, + "sari": [["M", "S"]], + "sari's": null, + "saris": null, + "Sarina": [["M"]], + "Sarina's": null, + "Sarine": [["M"]], + "Sarine's": null, + "Sarita": [["M"]], + "Sarita's": null, + "Sarnoff": [["M"]], + "Sarnoff's": null, + "sarong": [["M", "S"]], + "sarong's": null, + "sarongs": null, + "Saroyan": [["M"]], + "Saroyan's": null, + "sarsaparilla": [["M", "S"]], + "sarsaparilla's": null, + "sarsaparillas": null, + "Sarto": [["M"]], + "Sarto's": null, + "sartorial": [["Y"]], + "sartorially": null, + "sartorius": [["M"]], + "sartorius's": null, + "Sartre": [["M"]], + "Sartre's": null, + "Sascha": [["M"]], + "Sascha's": null, + "SASE": null, + "Sasha": [["M"]], + "Sasha's": null, + "sashay": [["G", "D", "S"]], + "sashaying": null, + "sashayed": null, + "sashays": null, + "Sashenka": [["M"]], + "Sashenka's": null, + "sash": [["G", "M", "D", "S"]], + "sashing": null, + "sash's": null, + "sashed": null, + "sashes": null, + "Saskatchewan": [["M"]], + "Saskatchewan's": null, + "Saskatoon": [["M"]], + "Saskatoon's": null, + "Sask": [["M"]], + "Sask's": null, + "sassafras": [["M", "S"]], + "sassafras's": null, + "sassafrases": null, + "sass": [["G", "D", "S", "M"]], + "sassing": null, + "sassed": null, + "sasses": null, + "sass's": null, + "Sassoon": [["M"]], + "Sassoon's": null, + "sassy": [["T", "R", "S"]], + "sassiest": null, + "sassier": null, + "sassies": null, + "SAT": null, + "satanic": null, + "satanical": [["Y"]], + "satanically": null, + "Satanism": [["M"]], + "Satanism's": null, + "satanism": [["S"]], + "satanisms": null, + "Satanist": [["M"]], + "Satanist's": null, + "satanist": [["S"]], + "satanists": null, + "Satan": [["M"]], + "Satan's": null, + "satchel": [["S", "M"]], + "satchels": null, + "satchel's": null, + "sat": [["D", "G"]], + "sated": null, + "sating": null, + "sateen": [["M", "S"]], + "sateen's": null, + "sateens": null, + "satellite": [["G", "M", "S", "D"]], + "satelliting": null, + "satellite's": null, + "satellites": null, + "satellited": null, + "sate": [["S"]], + "sates": null, + "satiable": [["I"]], + "satiate": [["G", "N", "X", "S", "D"]], + "satiating": null, + "satiation": [["M"]], + "satiations": null, + "satiates": null, + "satiated": null, + "satiation's": null, + "satiety": [["M", "S"]], + "satiety's": null, + "satieties": null, + "satin": [["M", "D", "S", "G"]], + "satin's": null, + "satined": null, + "satins": null, + "satining": null, + "satinwood": [["M", "S"]], + "satinwood's": null, + "satinwoods": null, + "satiny": null, + "satire": [["S", "M"]], + "satires": null, + "satire's": null, + "satiric": null, + "satirical": [["Y"]], + "satirically": null, + "satirist": [["S", "M"]], + "satirists": null, + "satirist's": null, + "satirize": [["D", "S", "G"]], + "satirized": null, + "satirizes": [["U"]], + "satirizing": null, + "unsatirizes": null, + "satisfaction": [["E", "S", "M"]], + "dissatisfaction": null, + "dissatisfactions": null, + "dissatisfaction's": null, + "satisfactions": null, + "satisfaction's": null, + "satisfactorily": [["U"]], + "unsatisfactorily": null, + "satisfactoriness": [["M", "U"]], + "satisfactoriness's": null, + "unsatisfactoriness's": null, + "unsatisfactoriness": null, + "satisfactory": [["U", "P"]], + "unsatisfactory": null, + "satisfiability": [["U"]], + "unsatisfiability": null, + "satisfiable": [["U"]], + "unsatisfiable": null, + "satisfied": [["U", "E"]], + "unsatisfied": null, + "dissatisfied": null, + "satisfier": [["M"]], + "satisfier's": null, + "satisfies": [["E"]], + "dissatisfies": null, + "satisfy": [["G", "Z", "D", "R", "S"]], + "satisfying": [["E", "U"]], + "satisfiers": null, + "dissatisfying": null, + "unsatisfying": null, + "satisfyingly": null, + "Sat": [["M"]], + "Sat's": null, + "satori": [["S", "M"]], + "satoris": null, + "satori's": null, + "satrap": [["S", "M"]], + "satraps": null, + "satrap's": null, + "saturated": [["C", "U", "A"]], + "desaturated": null, + "unsaturated": null, + "resaturated": null, + "saturater": [["M"]], + "saturater's": null, + "saturates": [["A"]], + "resaturates": null, + "saturate": [["X", "D", "R", "S", "N", "G"]], + "saturations": null, + "saturation": [["M"]], + "saturating": null, + "saturation's": null, + "Saturday": [["M", "S"]], + "Saturday's": null, + "Saturdays": null, + "saturnalia": null, + "Saturnalia": [["M"]], + "Saturnalia's": null, + "saturnine": [["Y"]], + "saturninely": null, + "Saturn": [["M"]], + "Saturn's": null, + "Satyanarayanan": [["M"]], + "Satyanarayanan's": null, + "satyriases": null, + "satyriasis": [["M"]], + "satyriasis's": null, + "satyric": null, + "satyr": [["M", "S"]], + "satyr's": null, + "satyrs": null, + "sauce": [["D", "S", "R", "G", "Z", "M"]], + "sauced": null, + "sauces": null, + "saucer": [["M"]], + "saucing": null, + "saucers": null, + "sauce's": null, + "saucepan": [["S", "M"]], + "saucepans": null, + "saucepan's": null, + "saucer's": null, + "saucily": null, + "sauciness": [["S"]], + "saucinesses": null, + "saucy": [["T", "R", "P"]], + "sauciest": null, + "saucier": null, + "Saudi": [["S"]], + "Saudis": null, + "Saud": [["M"]], + "Saud's": null, + "Saudra": [["M"]], + "Saudra's": null, + "sauerkraut": [["S", "M"]], + "sauerkrauts": null, + "sauerkraut's": null, + "Saukville": [["M"]], + "Saukville's": null, + "Saul": [["M"]], + "Saul's": null, + "Sault": [["M"]], + "Sault's": null, + "sauna": [["D", "M", "S", "G"]], + "saunaed": null, + "sauna's": null, + "saunas": null, + "saunaing": null, + "Sauncho": [["M"]], + "Sauncho's": null, + "Saunder": [["S", "M"]], + "Saunders": null, + "Saunder's": null, + "Saunderson": [["M"]], + "Saunderson's": null, + "Saundra": [["M"]], + "Saundra's": null, + "saunter": [["D", "R", "S", "G"]], + "sauntered": null, + "saunterer": null, + "saunters": null, + "sauntering": null, + "saurian": [["S"]], + "saurians": null, + "sauropod": [["S", "M"]], + "sauropods": null, + "sauropod's": null, + "sausage": [["M", "S"]], + "sausage's": null, + "sausages": null, + "Saussure": [["M"]], + "Saussure's": null, + "saut�": [["D", "G", "S"]], + "saut�ed": null, + "saut�ing": null, + "saut�s": null, + "Sauternes": [["M"]], + "Sauternes's": null, + "Sauveur": [["M"]], + "Sauveur's": null, + "savage": [["G", "T", "Z", "Y", "P", "R", "S", "D"]], + "savaging": null, + "savagest": null, + "savagers": null, + "savagely": null, + "savageness": [["S", "M"]], + "savager": null, + "savages": null, + "savaged": null, + "Savage": [["M"]], + "Savage's": null, + "savagenesses": null, + "savageness's": null, + "savagery": [["M", "S"]], + "savagery's": null, + "savageries": null, + "Savannah": [["M"]], + "Savannah's": null, + "savanna": [["M", "S"]], + "savanna's": null, + "savannas": null, + "savant": [["S", "M"]], + "savants": null, + "savant's": null, + "saved": [["U"]], + "unsaved": null, + "saveloy": [["M"]], + "saveloy's": null, + "saver": [["M"]], + "saver's": null, + "save": [["Z", "G", "J", "D", "R", "S", "B"]], + "savers": null, + "saving": null, + "savings": null, + "saves": null, + "savable": null, + "Savina": [["M"]], + "Savina's": null, + "Savior": [["M"]], + "Savior's": null, + "savior": [["S", "M"]], + "saviors": null, + "savior's": null, + "Saviour": [["M"]], + "Saviour's": null, + "Savonarola": [["M"]], + "Savonarola's": null, + "savored": [["U"]], + "unsavored": [["Y", "P"]], + "savorer": [["M"]], + "savorer's": null, + "savorier": null, + "savoriest": null, + "savoriness": [["S"]], + "savorinesses": null, + "savoringly": [["S"]], + "savoringlies": null, + "savoring": [["Y"]], + "savor": [["S", "M", "R", "D", "G", "Z"]], + "savors": null, + "savor's": null, + "savorers": null, + "savory": [["U", "M", "P", "S"]], + "unsavory": null, + "unsavory's": null, + "unsavoriness": [["M"]], + "unsavories": null, + "savory's": null, + "savories": null, + "Savoyard": [["M"]], + "Savoyard's": null, + "Savoy": [["M"]], + "Savoy's": null, + "savoy": [["S", "M"]], + "savoys": null, + "savoy's": null, + "savvy": [["G", "T", "R", "S", "D"]], + "savvying": null, + "savviest": null, + "savvier": null, + "savvies": null, + "savvied": null, + "sawbones": [["M"]], + "sawbones's": null, + "sawbuck": [["S", "M"]], + "sawbucks": null, + "sawbuck's": null, + "sawdust": [["M", "D", "S", "G"]], + "sawdust's": null, + "sawdusted": null, + "sawdusts": null, + "sawdusting": null, + "sawer": [["M"]], + "sawer's": null, + "sawfly": [["S", "M"]], + "sawflies": null, + "sawfly's": null, + "sawhorse": [["M", "S"]], + "sawhorse's": null, + "sawhorses": null, + "Saw": [["M"]], + "Saw's": null, + "sawmill": [["S", "M"]], + "sawmills": null, + "sawmill's": null, + "saw": [["S", "M", "D", "R", "G"]], + "saws": null, + "saw's": null, + "sawed": null, + "sawing": null, + "sawtooth": null, + "Sawyere": [["M"]], + "Sawyere's": null, + "Sawyer": [["M"]], + "Sawyer's": null, + "sawyer": [["M", "S"]], + "sawyer's": null, + "sawyers": null, + "Saxe": [["M"]], + "Saxe's": null, + "saxifrage": [["S", "M"]], + "saxifrages": null, + "saxifrage's": null, + "Sax": [["M"]], + "Sax's": null, + "sax": [["M", "S"]], + "sax's": null, + "saxes": null, + "Saxon": [["S", "M"]], + "Saxons": null, + "Saxon's": null, + "Saxony": [["M"]], + "Saxony's": null, + "saxophone": [["M", "S"]], + "saxophone's": null, + "saxophones": null, + "saxophonist": [["S", "M"]], + "saxophonists": null, + "saxophonist's": null, + "Saxton": [["M"]], + "Saxton's": null, + "Sayer": [["M"]], + "Sayer's": null, + "sayer": [["S", "M"]], + "sayers": null, + "sayer's": null, + "sayest": null, + "saying": [["M", "S"]], + "saying's": null, + "sayings": null, + "Sayre": [["M", "S"]], + "Sayre's": null, + "Sayres": null, + "says": [["M"]], + "says's": null, + "say": [["U", "S", "G"]], + "unsay": null, + "unsays": null, + "unsaying": null, + "Say": [["Z", "M", "R"]], + "Sayers": null, + "Say's": null, + "SBA": null, + "Sb": [["M"]], + "Sb's": null, + "SC": null, + "scabbard": [["S", "G", "D", "M"]], + "scabbards": null, + "scabbarding": null, + "scabbarded": null, + "scabbard's": null, + "scabbed": null, + "scabbiness": [["S", "M"]], + "scabbinesses": null, + "scabbiness's": null, + "scabbing": null, + "scabby": [["R", "T", "P"]], + "scabbier": null, + "scabbiest": null, + "scabies": [["M"]], + "scabies's": null, + "scabrousness": [["M"]], + "scabrousness's": null, + "scabrous": [["Y", "P"]], + "scabrously": null, + "scab": [["S", "M"]], + "scabs": null, + "scab's": null, + "scad": [["S", "M"]], + "scads": null, + "scad's": null, + "scaffolding": [["M"]], + "scaffolding's": null, + "scaffold": [["J", "G", "D", "M", "S"]], + "scaffoldings": null, + "scaffolded": null, + "scaffold's": null, + "scaffolds": null, + "scalability": null, + "Scala": [["M"]], + "Scala's": null, + "scalar": [["S", "M"]], + "scalars": null, + "scalar's": null, + "scalawag": [["S", "M"]], + "scalawags": null, + "scalawag's": null, + "scald": [["G", "J", "R", "D", "S"]], + "scalding": null, + "scaldings": null, + "scalder": null, + "scalded": null, + "scalds": null, + "scaled": [["A", "U"]], + "rescaled": null, + "unscaled": null, + "scale": [["J", "G", "Z", "M", "B", "D", "S", "R"]], + "scalings": null, + "scaling": [["A"]], + "scalers": null, + "scale's": null, + "scalable": null, + "scales": [["A"]], + "scaler": [["M"]], + "scaleless": null, + "scalene": null, + "scaler's": null, + "rescales": null, + "scaliness": [["M", "S"]], + "scaliness's": null, + "scalinesses": null, + "rescaling": null, + "scallion": [["M", "S"]], + "scallion's": null, + "scallions": null, + "scalloper": [["M"]], + "scalloper's": null, + "scallop": [["G", "S", "M", "D", "R"]], + "scalloping": [["M"]], + "scallops": null, + "scallop's": null, + "scalloped": null, + "scalloping's": null, + "scalpel": [["S", "M"]], + "scalpels": null, + "scalpel's": null, + "scalper": [["M"]], + "scalper's": null, + "scalp": [["G", "Z", "R", "D", "M", "S"]], + "scalping": [["M"]], + "scalpers": null, + "scalped": null, + "scalp's": null, + "scalps": null, + "scalping's": null, + "scaly": [["T", "P", "R"]], + "scaliest": null, + "scalier": null, + "scammed": null, + "scamming": null, + "scamper": [["G", "D"]], + "scampering": null, + "scampered": null, + "scampi": [["M"]], + "scampi's": null, + "scamp": [["R", "D", "M", "G", "Z", "S"]], + "scamped": null, + "scamp's": null, + "scamping": null, + "scampers": null, + "scamps": null, + "scam": [["S", "M"]], + "scams": null, + "scam's": null, + "Scan": null, + "scan": [["A", "S"]], + "rescan": null, + "rescans": null, + "scans": null, + "scandal": [["G", "M", "D", "S"]], + "scandaling": null, + "scandal's": null, + "scandaled": null, + "scandals": null, + "scandalized": [["U"]], + "unscandalized": null, + "scandalize": [["G", "D", "S"]], + "scandalizing": null, + "scandalizes": null, + "scandalmonger": [["S", "M"]], + "scandalmongers": null, + "scandalmonger's": null, + "scandalousness": [["M"]], + "scandalousness's": null, + "scandalous": [["Y", "P"]], + "scandalously": null, + "Scandinavia": [["M"]], + "Scandinavia's": null, + "Scandinavian": [["S"]], + "Scandinavians": null, + "scandium": [["M", "S"]], + "scandium's": null, + "scandiums": null, + "scanned": [["A"]], + "rescanned": null, + "scanner": [["S", "M"]], + "scanners": null, + "scanner's": null, + "scanning": [["A"]], + "rescanning": null, + "scansion": [["S", "M"]], + "scansions": null, + "scansion's": null, + "scant": [["C", "D", "R", "S", "G"]], + "descanted": null, + "descanter": null, + "descants": null, + "descanting": null, + "scanted": null, + "scanter": null, + "scants": null, + "scanting": null, + "scantest": null, + "scantily": null, + "scantiness": [["M", "S"]], + "scantiness's": null, + "scantinesses": null, + "scantly": null, + "scantness": [["M", "S"]], + "scantness's": null, + "scantnesses": null, + "scanty": [["T", "P", "R", "S"]], + "scantiest": null, + "scantier": null, + "scanties": null, + "scapegoat": [["S", "G", "D", "M"]], + "scapegoats": null, + "scapegoating": null, + "scapegoated": null, + "scapegoat's": null, + "scapegrace": [["M", "S"]], + "scapegrace's": null, + "scapegraces": null, + "scape": [["M"]], + "scape's": null, + "scapulae": null, + "scapula": [["M"]], + "scapula's": null, + "scapular": [["S"]], + "scapulars": null, + "scarab": [["S", "M"]], + "scarabs": null, + "scarab's": null, + "Scaramouch": [["M"]], + "Scaramouch's": null, + "Scarborough": [["M"]], + "Scarborough's": null, + "scarceness": [["S", "M"]], + "scarcenesses": null, + "scarceness's": null, + "scarce": [["R", "T", "Y", "P"]], + "scarcer": null, + "scarcest": null, + "scarcely": null, + "scarcity": [["M", "S"]], + "scarcity's": null, + "scarcities": null, + "scar": [["D", "R", "M", "S", "G"]], + "scared": null, + "scarer": [["M"]], + "scar's": null, + "scars": null, + "scaring": null, + "scarecrow": [["M", "S"]], + "scarecrow's": null, + "scarecrows": null, + "scaremongering": [["M"]], + "scaremongering's": null, + "scaremonger": [["S", "G", "M"]], + "scaremongers": null, + "scaremonger's": null, + "scarer's": null, + "scare": [["S"]], + "scares": null, + "scarface": null, + "Scarface": [["M"]], + "Scarface's": null, + "scarf": [["S", "D", "G", "M"]], + "scarfs": null, + "scarfed": null, + "scarfing": null, + "scarf's": null, + "scarification": [["M"]], + "scarification's": null, + "scarify": [["D", "R", "S", "N", "G", "X"]], + "scarified": null, + "scarifier": null, + "scarifies": null, + "scarifying": null, + "scarifications": null, + "scarily": null, + "scariness": [["S"]], + "scarinesses": null, + "scarlatina": [["M", "S"]], + "scarlatina's": null, + "scarlatinas": null, + "Scarlatti": [["M"]], + "Scarlatti's": null, + "Scarlet": [["M"]], + "Scarlet's": null, + "scarlet": [["M", "D", "S", "G"]], + "scarlet's": null, + "scarleted": null, + "scarlets": null, + "scarleting": null, + "Scarlett": [["M"]], + "Scarlett's": null, + "scarp": [["S", "D", "M", "G"]], + "scarps": null, + "scarped": null, + "scarp's": null, + "scarping": null, + "scarred": null, + "scarring": null, + "scarves": [["M"]], + "scarves's": null, + "scary": [["P", "T", "R"]], + "scariest": null, + "scarier": null, + "scathe": [["D", "G"]], + "scathed": [["U"]], + "scathing": [["Y"]], + "unscathed": null, + "scathingly": null, + "scatological": null, + "scatology": [["S", "M"]], + "scatologies": null, + "scatology's": null, + "scat": [["S"]], + "scats": null, + "scatted": null, + "scatterbrain": [["M", "D", "S"]], + "scatterbrain's": null, + "scatterbrained": null, + "scatterbrains": null, + "scatter": [["D", "R", "J", "Z", "S", "G"]], + "scattered": null, + "scatterer": [["M"]], + "scatterings": null, + "scatterers": null, + "scatters": null, + "scattering": [["Y", "M"]], + "scatterer's": null, + "scattergun": null, + "scatteringly": null, + "scattering's": null, + "scatting": null, + "scavenge": [["G", "D", "R", "S", "Z"]], + "scavenging": null, + "scavenged": null, + "scavenger": [["M"]], + "scavenges": null, + "scavengers": null, + "scavenger's": null, + "SCCS": null, + "scenario": [["S", "M"]], + "scenarios": null, + "scenario's": null, + "scenarist": [["M", "S"]], + "scenarist's": null, + "scenarists": null, + "scene": [["G", "M", "D", "S"]], + "scening": null, + "scene's": null, + "scened": null, + "scenes": null, + "scenery": [["S", "M"]], + "sceneries": null, + "scenery's": null, + "scenically": null, + "scenic": [["S"]], + "scenics": null, + "scented": [["U"]], + "unscented": null, + "scent": [["G", "D", "M", "S"]], + "scenting": null, + "scent's": [["C"]], + "scents": [["C"]], + "scentless": null, + "descent's": null, + "descents": null, + "scepter": [["D", "M", "S", "G"]], + "sceptered": null, + "scepter's": null, + "scepters": [["U"]], + "sceptering": null, + "unscepters": null, + "sceptically": null, + "sch": null, + "Schaefer": [["M"]], + "Schaefer's": null, + "Schaeffer": [["M"]], + "Schaeffer's": null, + "Schafer": [["M"]], + "Schafer's": null, + "Schaffner": [["M"]], + "Schaffner's": null, + "Schantz": [["M"]], + "Schantz's": null, + "Schapiro": [["M"]], + "Schapiro's": null, + "Scheat": [["M"]], + "Scheat's": null, + "Schedar": [["M"]], + "Schedar's": null, + "schedule": [["A", "D", "S", "R", "G"]], + "reschedule": null, + "rescheduled": null, + "reschedules": null, + "rescheduler": null, + "rescheduling": null, + "scheduled": [["U"]], + "schedules": null, + "scheduler": [["M", "S"]], + "scheduling": null, + "unscheduled": null, + "scheduler's": null, + "schedulers": null, + "schedule's": null, + "Scheherazade": [["M"]], + "Scheherazade's": null, + "Scheherezade": [["M"]], + "Scheherezade's": null, + "Schelling": [["M"]], + "Schelling's": null, + "schema": [["M"]], + "schema's": null, + "schemata": null, + "schematically": null, + "schematic": [["S"]], + "schematics": null, + "scheme": [["J", "S", "R", "D", "G", "M", "Z"]], + "schemings": null, + "schemes": null, + "schemer": [["M"]], + "schemed": null, + "scheming": null, + "scheme's": null, + "schemers": null, + "schemer's": null, + "schemta": null, + "Schenectady": [["M"]], + "Schenectady's": null, + "scherzo": [["M", "S"]], + "scherzo's": null, + "scherzos": null, + "Schick": [["M"]], + "Schick's": null, + "Schiller": [["M"]], + "Schiller's": null, + "schilling": [["S", "M"]], + "schillings": null, + "schilling's": null, + "schismatic": [["S"]], + "schismatics": null, + "schism": [["S", "M"]], + "schisms": null, + "schism's": null, + "schist": [["S", "M"]], + "schists": null, + "schist's": null, + "schizoid": [["S"]], + "schizoids": null, + "schizomycetes": null, + "schizophrenia": [["S", "M"]], + "schizophrenias": null, + "schizophrenia's": null, + "schizophrenically": null, + "schizophrenic": [["S"]], + "schizophrenics": null, + "schizo": [["S"]], + "schizos": null, + "schlemiel": [["M", "S"]], + "schlemiel's": null, + "schlemiels": null, + "schlepped": null, + "schlepping": null, + "schlep": [["S"]], + "schleps": null, + "Schlesinger": [["M"]], + "Schlesinger's": null, + "Schliemann": [["M"]], + "Schliemann's": null, + "Schlitz": [["M"]], + "Schlitz's": null, + "schlock": [["S", "M"]], + "schlocks": null, + "schlock's": null, + "schlocky": [["T", "R"]], + "schlockiest": null, + "schlockier": null, + "Schloss": [["M"]], + "Schloss's": null, + "schmaltz": [["M", "S"]], + "schmaltz's": null, + "schmaltzes": null, + "schmaltzy": [["T", "R"]], + "schmaltziest": null, + "schmaltzier": null, + "Schmidt": [["M"]], + "Schmidt's": null, + "Schmitt": [["M"]], + "Schmitt's": null, + "schmoes": null, + "schmo": [["M"]], + "schmo's": null, + "schmooze": [["G", "S", "D"]], + "schmoozing": null, + "schmoozes": null, + "schmoozed": null, + "schmuck": [["M", "S"]], + "schmuck's": null, + "schmucks": null, + "Schnabel": [["M"]], + "Schnabel's": null, + "schnapps": [["M"]], + "schnapps's": null, + "schnauzer": [["M", "S"]], + "schnauzer's": null, + "schnauzers": null, + "Schneider": [["M"]], + "Schneider's": null, + "schnitzel": [["M", "S"]], + "schnitzel's": null, + "schnitzels": null, + "schnook": [["S", "M"]], + "schnooks": null, + "schnook's": null, + "schnoz": [["S"]], + "schnozes": null, + "schnozzle": [["M", "S"]], + "schnozzle's": null, + "schnozzles": null, + "Schoenberg": [["M"]], + "Schoenberg's": null, + "Schofield": [["M"]], + "Schofield's": null, + "scholarship": [["M", "S"]], + "scholarship's": null, + "scholarships": null, + "scholar": [["S", "Y", "M"]], + "scholars": null, + "scholarly": null, + "scholar's": null, + "scholastically": null, + "scholastic": [["S"]], + "scholastics": null, + "schoolbag": [["S", "M"]], + "schoolbags": null, + "schoolbag's": null, + "schoolbook": [["S", "M"]], + "schoolbooks": null, + "schoolbook's": null, + "schoolboy": [["M", "S"]], + "schoolboy's": null, + "schoolboys": null, + "schoolchild": [["M"]], + "schoolchild's": null, + "schoolchildren": null, + "schooldays": null, + "schooled": [["U"]], + "unschooled": null, + "schoolfellow": [["S"]], + "schoolfellows": null, + "schoolfriend": null, + "schoolgirlish": null, + "schoolgirl": [["M", "S"]], + "schoolgirl's": null, + "schoolgirls": null, + "schoolhouse": [["M", "S"]], + "schoolhouse's": null, + "schoolhouses": null, + "schooling": [["M"]], + "schooling's": null, + "schoolmarmish": null, + "schoolmarm": [["M", "S"]], + "schoolmarm's": null, + "schoolmarms": null, + "schoolmaster": [["S", "G", "D", "M"]], + "schoolmasters": null, + "schoolmastering": null, + "schoolmastered": null, + "schoolmaster's": null, + "schoolmate": [["M", "S"]], + "schoolmate's": null, + "schoolmates": null, + "schoolmistress": [["M", "S"]], + "schoolmistress's": null, + "schoolmistresses": null, + "schoolroom": [["S", "M"]], + "schoolrooms": null, + "schoolroom's": null, + "schoolteacher": [["M", "S"]], + "schoolteacher's": null, + "schoolteachers": null, + "schoolwork": [["S", "M"]], + "schoolworks": null, + "schoolwork's": null, + "schoolyard": [["S", "M"]], + "schoolyards": null, + "schoolyard's": null, + "school": [["Z", "G", "M", "R", "D", "J", "S"]], + "schoolers": null, + "school's": null, + "schooler": null, + "schoolings": null, + "schools": null, + "schooner": [["S", "M"]], + "schooners": null, + "schooner's": null, + "Schopenhauer": [["M"]], + "Schopenhauer's": null, + "Schottky": [["M"]], + "Schottky's": null, + "Schrieffer": [["M"]], + "Schrieffer's": null, + "Schr�dinger": [["M"]], + "Schr�dinger's": null, + "Schroeder": [["M"]], + "Schroeder's": null, + "Schroedinger": [["M"]], + "Schroedinger's": null, + "Schubert": [["M"]], + "Schubert's": null, + "Schultz": [["M"]], + "Schultz's": null, + "Schulz": [["M"]], + "Schulz's": null, + "Schumacher": [["M"]], + "Schumacher's": null, + "Schuman": [["M"]], + "Schuman's": null, + "Schumann": [["M"]], + "Schumann's": null, + "schussboomer": [["S"]], + "schussboomers": null, + "schuss": [["S", "D", "M", "G"]], + "schusses": null, + "schussed": null, + "schuss's": null, + "schussing": null, + "Schuster": [["M"]], + "Schuster's": null, + "Schuyler": [["M"]], + "Schuyler's": null, + "Schuylkill": [["M"]], + "Schuylkill's": null, + "Schwab": [["M"]], + "Schwab's": null, + "Schwartzkopf": [["M"]], + "Schwartzkopf's": null, + "Schwartz": [["M"]], + "Schwartz's": null, + "Schwarzenegger": [["M"]], + "Schwarzenegger's": null, + "schwa": [["S", "M"]], + "schwas": null, + "schwa's": null, + "Schweitzer": [["M"]], + "Schweitzer's": null, + "Schweppes": [["M"]], + "Schweppes's": null, + "Schwinger": [["M"]], + "Schwinger's": null, + "Schwinn": [["M"]], + "Schwinn's": null, + "sci": null, + "sciatica": [["S", "M"]], + "sciaticas": null, + "sciatica's": null, + "sciatic": [["S"]], + "sciatics": null, + "science": [["F", "M", "S"]], + "conscience": null, + "conscience's": null, + "consciences": null, + "science's": null, + "sciences": null, + "scientifically": [["U"]], + "unscientifically": null, + "scientific": [["U"]], + "unscientific": null, + "scientist": [["S", "M"]], + "scientists": null, + "scientist's": null, + "Scientology": [["M"]], + "Scientology's": null, + "scimitar": [["S", "M"]], + "scimitars": null, + "scimitar's": null, + "scintilla": [["M", "S"]], + "scintilla's": null, + "scintillas": null, + "scintillate": [["G", "N", "D", "S", "X"]], + "scintillating": null, + "scintillation": [["M"]], + "scintillated": null, + "scintillates": null, + "scintillations": null, + "scintillation's": null, + "scintillator": [["S", "M"]], + "scintillators": null, + "scintillator's": null, + "scion": [["S", "M"]], + "scions": null, + "scion's": null, + "Scipio": [["M"]], + "Scipio's": null, + "scissor": [["S", "G", "D"]], + "scissors": null, + "scissoring": null, + "scissored": null, + "scleroses": null, + "sclerosis": [["M"]], + "sclerosis's": null, + "sclerotic": [["S"]], + "sclerotics": null, + "Sc": [["M"]], + "Sc's": null, + "scoffer": [["M"]], + "scoffer's": null, + "scofflaw": [["M", "S"]], + "scofflaw's": null, + "scofflaws": null, + "scoff": [["R", "D", "G", "Z", "S"]], + "scoffed": null, + "scoffing": null, + "scoffers": null, + "scoffs": null, + "scolder": [["M"]], + "scolder's": null, + "scold": [["G", "S", "J", "R", "D"]], + "scolding": null, + "scolds": null, + "scoldings": null, + "scolded": null, + "scolioses": null, + "scoliosis": [["M"]], + "scoliosis's": null, + "scollop's": null, + "sconce": [["S", "D", "G", "M"]], + "sconces": null, + "sconced": null, + "sconcing": null, + "sconce's": null, + "scone": [["S", "M"]], + "scones": null, + "scone's": null, + "scooper": [["M"]], + "scooper's": null, + "scoop": [["S", "R", "D", "M", "G"]], + "scoops": null, + "scooped": null, + "scoop's": null, + "scooping": null, + "scooter": [["M"]], + "scooter's": null, + "scoot": [["S", "R", "D", "G", "Z"]], + "scoots": null, + "scooted": null, + "scooting": null, + "scooters": null, + "scope": [["D", "S", "G", "M"]], + "scoped": null, + "scopes": null, + "scoping": null, + "scope's": null, + "Scopes": [["M"]], + "Scopes's": null, + "scops": null, + "scorbutic": null, + "scorcher": [["M"]], + "scorcher's": null, + "scorching": [["Y"]], + "scorchingly": null, + "scorch": [["Z", "G", "R", "S", "D"]], + "scorchers": null, + "scorches": null, + "scorched": null, + "scoreboard": [["M", "S"]], + "scoreboard's": null, + "scoreboards": null, + "scorecard": [["M", "S"]], + "scorecard's": null, + "scorecards": null, + "scored": [["M"]], + "scored's": null, + "scorekeeper": [["S", "M"]], + "scorekeepers": null, + "scorekeeper's": null, + "scoreless": null, + "scoreline": null, + "score": [["Z", "M", "D", "S", "R", "J", "G"]], + "scorers": null, + "score's": null, + "scores": null, + "scorer": null, + "scorings": null, + "scoring": null, + "scorner": [["M"]], + "scorner's": null, + "scornfulness": [["M"]], + "scornfulness's": null, + "scornful": [["P", "Y"]], + "scornfully": null, + "scorn": [["S", "G", "Z", "M", "R", "D"]], + "scorns": null, + "scorning": null, + "scorners": null, + "scorn's": null, + "scorned": null, + "scorpion": [["S", "M"]], + "scorpions": null, + "scorpion's": null, + "Scorpio": [["S", "M"]], + "Scorpios": null, + "Scorpio's": null, + "Scorpius": [["M"]], + "Scorpius's": null, + "Scorsese": [["M"]], + "Scorsese's": null, + "Scotchgard": [["M"]], + "Scotchgard's": null, + "Scotchman": [["M"]], + "Scotchman's": null, + "Scotchmen": null, + "scotch": [["M", "S", "D", "G"]], + "scotch's": null, + "scotches": null, + "scotched": null, + "scotching": null, + "scotchs": null, + "Scotch": [["S"]], + "Scotches": null, + "Scotchwoman": null, + "Scotchwomen": null, + "Scotia": [["M"]], + "Scotia's": null, + "Scotian": [["M"]], + "Scotian's": null, + "Scotland": [["M"]], + "Scotland's": null, + "Scot": [["M", "S"]], + "Scot's": null, + "Scots": null, + "Scotsman": [["M"]], + "Scotsman's": null, + "Scotsmen": null, + "Scotswoman": null, + "Scotswomen": null, + "Scottie": [["S", "M"]], + "Scotties": null, + "Scottie's": null, + "Scotti": [["M"]], + "Scotti's": null, + "Scottish": null, + "Scott": [["M"]], + "Scott's": null, + "Scottsdale": [["M"]], + "Scottsdale's": null, + "Scotty's": null, + "scoundrel": [["Y", "M", "S"]], + "scoundrelly": null, + "scoundrel's": null, + "scoundrels": null, + "scourer": [["M"]], + "scourer's": null, + "scourge": [["M", "G", "R", "S", "D"]], + "scourge's": null, + "scourging": null, + "scourger": [["M"]], + "scourges": null, + "scourged": null, + "scourger's": null, + "scouring": [["M"]], + "scouring's": null, + "scour": [["S", "R", "D", "G", "Z"]], + "scours": null, + "scoured": null, + "scourers": null, + "scouter": [["M"]], + "scouter's": null, + "scouting": [["M"]], + "scouting's": null, + "scoutmaster": [["S", "M"]], + "scoutmasters": null, + "scoutmaster's": null, + "Scout's": null, + "scout": [["S", "R", "D", "M", "J", "G"]], + "scouts": null, + "scouted": null, + "scout's": null, + "scoutings": null, + "scow": [["D", "M", "G", "S"]], + "scowed": null, + "scow's": null, + "scowing": null, + "scows": null, + "scowler": [["M"]], + "scowler's": null, + "scowl": [["S", "R", "D", "G"]], + "scowls": null, + "scowled": null, + "scowling": null, + "scrabble": [["D", "R", "S", "Z", "G"]], + "scrabbled": null, + "scrabbler": [["M"]], + "scrabbles": null, + "scrabblers": null, + "scrabbling": null, + "scrabbler's": null, + "Scrabble": [["S", "M"]], + "Scrabbles": null, + "Scrabble's": null, + "scragged": null, + "scragging": null, + "scraggly": [["T", "R"]], + "scraggliest": null, + "scragglier": null, + "scraggy": [["T", "R"]], + "scraggiest": null, + "scraggier": null, + "scrag": [["S", "M"]], + "scrags": null, + "scrag's": null, + "scrambler": [["M", "S"]], + "scrambler's": [["U"]], + "scramblers": null, + "unscrambler's": null, + "scramble": [["U", "D", "S", "R", "G"]], + "unscramble": null, + "unscrambled": null, + "unscrambles": null, + "unscrambler": null, + "unscrambling": null, + "scrambled": null, + "scrambles": null, + "scrambling": null, + "scrammed": null, + "scramming": null, + "scram": [["S"]], + "scrams": null, + "Scranton": [["M"]], + "Scranton's": null, + "scrapbook": [["S", "M"]], + "scrapbooks": null, + "scrapbook's": null, + "scraper": [["M"]], + "scraper's": null, + "scrape": [["S"]], + "scrapes": null, + "scrapheap": [["S", "M"]], + "scrapheaps": null, + "scrapheap's": null, + "scrapped": null, + "scrapper": [["S", "M"]], + "scrappers": null, + "scrapper's": null, + "scrapping": null, + "scrappy": [["R", "T"]], + "scrappier": null, + "scrappiest": null, + "scrap": [["S", "G", "Z", "J", "R", "D", "M"]], + "scraps": null, + "scraping": null, + "scrapers": null, + "scrapings": null, + "scraped": null, + "scrap's": null, + "scrapyard": [["S"]], + "scrapyards": null, + "scratched": [["U"]], + "unscratched": null, + "scratcher": [["M"]], + "scratcher's": null, + "scratches": [["M"]], + "scratches's": null, + "scratchily": null, + "scratchiness": [["S"]], + "scratchinesses": null, + "scratch": [["J", "D", "R", "S", "Z", "G"]], + "scratchings": null, + "scratchers": null, + "scratching": null, + "scratchy": [["T", "R", "P"]], + "scratchiest": null, + "scratchier": null, + "scrawler": [["M"]], + "scrawler's": null, + "scrawl": [["G", "R", "D", "S"]], + "scrawling": null, + "scrawled": null, + "scrawls": null, + "scrawly": [["R", "T"]], + "scrawlier": null, + "scrawliest": null, + "scrawniness": [["M", "S"]], + "scrawniness's": null, + "scrawninesses": null, + "scrawny": [["T", "R", "P"]], + "scrawniest": null, + "scrawnier": null, + "screamer": [["M"]], + "screamer's": null, + "screaming": [["Y"]], + "screamingly": null, + "scream": [["Z", "G", "S", "R", "D"]], + "screamers": null, + "screams": null, + "screamed": null, + "screecher": [["M"]], + "screecher's": null, + "screech": [["G", "M", "D", "R", "S"]], + "screeching": null, + "screech's": null, + "screeched": null, + "screeches": null, + "screechy": [["T", "R"]], + "screechiest": null, + "screechier": null, + "screed": [["M", "S"]], + "screed's": null, + "screeds": null, + "scree": [["D", "S", "M"]], + "screes": null, + "scree's": null, + "screened": [["U"]], + "unscreened": null, + "screening": [["M"]], + "screening's": null, + "screenplay": [["M", "S"]], + "screenplay's": null, + "screenplays": null, + "screen": [["R", "D", "M", "J", "S", "G"]], + "screener": null, + "screen's": null, + "screenings": null, + "screens": null, + "screenwriter": [["M", "S"]], + "screenwriter's": null, + "screenwriters": null, + "screwball": [["S", "M"]], + "screwballs": null, + "screwball's": null, + "screwdriver": [["S", "M"]], + "screwdrivers": null, + "screwdriver's": null, + "screwer": [["M"]], + "screwer's": null, + "screw": [["G", "U", "S", "D"]], + "screwing": null, + "unscrewing": null, + "unscrew": null, + "unscrews": null, + "unscrewed": null, + "screws": null, + "screwed": null, + "screwiness": [["S"]], + "screwinesses": null, + "screw's": null, + "screwup": null, + "screwworm": [["M", "S"]], + "screwworm's": null, + "screwworms": null, + "screwy": [["R", "T", "P"]], + "screwier": null, + "screwiest": null, + "Scriabin": [["M"]], + "Scriabin's": null, + "scribal": null, + "scribble": [["J", "Z", "D", "R", "S", "G"]], + "scribblings": null, + "scribblers": null, + "scribbled": null, + "scribbler": [["M"]], + "scribbles": null, + "scribbling": null, + "scribbler's": null, + "scribe": [["C", "D", "R", "S", "G", "I", "K"]], + "described": null, + "describer": null, + "describes": null, + "describing": null, + "scribed": null, + "inscribed": null, + "proscribed": null, + "scriber": [["M", "K", "I", "C"]], + "inscriber": null, + "proscriber": null, + "scribes": null, + "inscribes": null, + "proscribes": null, + "scribing": null, + "inscribing": null, + "proscribing": null, + "proscribe": null, + "scriber's": null, + "proscriber's": null, + "inscriber's": null, + "describer's": null, + "scribe's": null, + "Scribner": [["M", "S"]], + "Scribner's": null, + "Scribners": null, + "scrimmager": [["M"]], + "scrimmager's": null, + "scrimmage": [["R", "S", "D", "M", "G"]], + "scrimmages": null, + "scrimmaged": null, + "scrimmage's": null, + "scrimmaging": null, + "scrimp": [["D", "G", "S"]], + "scrimped": null, + "scrimping": null, + "scrimps": null, + "scrimshaw": [["G", "S", "D", "M"]], + "scrimshawing": null, + "scrimshaws": null, + "scrimshawed": null, + "scrimshaw's": null, + "scrim": [["S", "M"]], + "scrims": null, + "scrim's": null, + "Scripps": [["M"]], + "Scripps's": null, + "scrip": [["S", "M"]], + "scrips": null, + "scrip's": null, + "scripted": [["U"]], + "unscripted": null, + "script": [["F", "G", "M", "D", "S"]], + "conscript": null, + "conscripting": null, + "conscript's": null, + "conscripted": null, + "conscripts": null, + "scripting": null, + "script's": null, + "scripts": null, + "scriptural": [["Y"]], + "scripturally": null, + "scripture": [["M", "S"]], + "scripture's": null, + "scriptures": null, + "Scripture": [["M", "S"]], + "Scripture's": null, + "Scriptures": null, + "scriptwriter": [["S", "M"]], + "scriptwriters": null, + "scriptwriter's": null, + "scriptwriting": [["M"]], + "scriptwriting's": null, + "scrivener": [["M"]], + "scrivener's": null, + "scriven": [["Z", "R"]], + "scriveners": null, + "scrod": [["M"]], + "scrod's": null, + "scrofula": [["M", "S"]], + "scrofula's": null, + "scrofulas": null, + "scrofulous": null, + "scrollbar": [["S", "M"]], + "scrollbars": null, + "scrollbar's": null, + "scroll": [["G", "M", "D", "S", "B"]], + "scrolling": null, + "scroll's": null, + "scrolled": null, + "scrolls": null, + "scrollable": null, + "Scrooge": [["M", "S"]], + "Scrooge's": null, + "Scrooges": null, + "scrooge": [["S", "D", "M", "G"]], + "scrooges": null, + "scrooged": null, + "scrooge's": null, + "scrooging": null, + "scrota": null, + "scrotal": null, + "scrotum": [["M"]], + "scrotum's": null, + "scrounge": [["Z", "G", "D", "R", "S"]], + "scroungers": null, + "scrounging": null, + "scrounged": null, + "scrounger": null, + "scrounges": null, + "scroungy": [["T", "R"]], + "scroungiest": null, + "scroungier": null, + "scrubbed": null, + "scrubber": [["M", "S"]], + "scrubber's": null, + "scrubbers": null, + "scrubbing": null, + "scrubby": [["T", "R"]], + "scrubbiest": null, + "scrubbier": null, + "scrub": [["S"]], + "scrubs": null, + "scruffily": null, + "scruffiness": [["S"]], + "scruffinesses": null, + "scruff": [["S", "M"]], + "scruffs": null, + "scruff's": null, + "scruffy": [["P", "R", "T"]], + "scruffier": null, + "scruffiest": null, + "Scruggs": [["M"]], + "Scruggs's": null, + "scrummage": [["M", "G"]], + "scrummage's": null, + "scrummaging": null, + "scrum": [["M", "S"]], + "scrum's": null, + "scrums": null, + "scrumptious": [["Y"]], + "scrumptiously": null, + "scrunch": [["D", "S", "G"]], + "scrunched": null, + "scrunches": null, + "scrunching": null, + "scrunchy": [["S"]], + "scrunchies": null, + "scruple": [["S", "D", "M", "G"]], + "scruples": null, + "scrupled": null, + "scruple's": null, + "scrupling": null, + "scrupulosity": [["S", "M"]], + "scrupulosities": null, + "scrupulosity's": null, + "scrupulousness's": null, + "scrupulousness": [["U", "S"]], + "unscrupulousness": null, + "unscrupulousnesses": null, + "scrupulousnesses": null, + "scrupulous": [["U", "P", "Y"]], + "unscrupulous": null, + "unscrupulously": null, + "scrupulously": null, + "scrutable": [["I"]], + "scrutinized": [["U"]], + "unscrutinized": null, + "scrutinizer": [["M"]], + "scrutinizer's": null, + "scrutinize": [["R", "S", "D", "G", "Z"]], + "scrutinizes": null, + "scrutinizing": [["U", "Y"]], + "scrutinizers": null, + "scrutinizingly": [["S"]], + "scrutinizinglies": null, + "unscrutinizing": null, + "unscrutinizingly": null, + "scrutiny": [["M", "S"]], + "scrutiny's": null, + "scrutinies": null, + "SCSI": null, + "scuba": [["S", "D", "M", "G"]], + "scubas": null, + "scubaed": null, + "scuba's": null, + "scubaing": null, + "scudded": null, + "scudding": null, + "Scud": [["M"]], + "Scud's": null, + "scud": [["S"]], + "scuds": null, + "scuff": [["G", "S", "D"]], + "scuffing": null, + "scuffs": null, + "scuffed": null, + "scuffle": [["S", "D", "G"]], + "scuffles": null, + "scuffled": null, + "scuffling": null, + "sculler": [["M"]], + "sculler's": null, + "scullery": [["M", "S"]], + "scullery's": null, + "sculleries": null, + "Sculley": [["M"]], + "Sculley's": null, + "scullion": [["M", "S"]], + "scullion's": null, + "scullions": null, + "scull": [["S", "R", "D", "M", "G", "Z"]], + "sculls": null, + "sculled": null, + "scull's": null, + "sculling": null, + "scullers": null, + "sculptor": [["M", "S"]], + "sculptor's": null, + "sculptors": null, + "sculptress": [["M", "S"]], + "sculptress's": null, + "sculptresses": null, + "sculpt": [["S", "D", "G"]], + "sculpts": null, + "sculpted": null, + "sculpting": null, + "sculptural": [["Y"]], + "sculpturally": null, + "sculpture": [["S", "D", "G", "M"]], + "sculptures": null, + "sculptured": null, + "sculpturing": null, + "sculpture's": null, + "scumbag": [["S"]], + "scumbags": null, + "scummed": null, + "scumming": null, + "scum": [["M", "S"]], + "scum's": null, + "scums": null, + "scummy": [["T", "R"]], + "scummiest": null, + "scummier": null, + "scupper": [["S", "D", "M", "G"]], + "scuppers": null, + "scuppered": null, + "scupper's": null, + "scuppering": null, + "scurf": [["M", "S"]], + "scurf's": null, + "scurfs": null, + "scurfy": [["T", "R"]], + "scurfiest": null, + "scurfier": null, + "scurrility": [["M", "S"]], + "scurrility's": null, + "scurrilities": null, + "scurrilousness": [["M", "S"]], + "scurrilousness's": null, + "scurrilousnesses": null, + "scurrilous": [["P", "Y"]], + "scurrilously": null, + "scurry": [["G", "J", "S", "D"]], + "scurrying": null, + "scurryings": null, + "scurries": null, + "scurried": null, + "scurvily": null, + "scurviness": [["M"]], + "scurviness's": null, + "scurvy": [["S", "R", "T", "P"]], + "scurvies": null, + "scurvier": null, + "scurviest": null, + "scutcheon": [["S", "M"]], + "scutcheons": null, + "scutcheon's": null, + "scuttlebutt": [["M", "S"]], + "scuttlebutt's": null, + "scuttlebutts": null, + "scuttle": [["M", "G", "S", "D"]], + "scuttle's": null, + "scuttling": null, + "scuttles": null, + "scuttled": null, + "scuzzy": [["R", "T"]], + "scuzzier": null, + "scuzziest": null, + "Scylla": [["M"]], + "Scylla's": null, + "scythe": [["S", "D", "G", "M"]], + "scythes": null, + "scythed": null, + "scything": null, + "scythe's": null, + "Scythia": [["M"]], + "Scythia's": null, + "SD": null, + "SDI": null, + "SE": null, + "seabed": [["S"]], + "seabeds": null, + "seabird": [["S"]], + "seabirds": null, + "seaboard": [["M", "S"]], + "seaboard's": null, + "seaboards": null, + "Seaborg": [["M"]], + "Seaborg's": null, + "seaborne": null, + "Seabrook": [["M"]], + "Seabrook's": null, + "seacoast": [["M", "S"]], + "seacoast's": null, + "seacoasts": null, + "seafare": [["J", "R", "Z", "G"]], + "seafarings": null, + "seafarer": [["M"]], + "seafarers": null, + "seafaring": null, + "seafarer's": null, + "seafood": [["M", "S"]], + "seafood's": null, + "seafoods": null, + "seafront": [["M", "S"]], + "seafront's": null, + "seafronts": null, + "Seagate": [["M"]], + "Seagate's": null, + "seagoing": null, + "Seagram": [["M"]], + "Seagram's": null, + "seagull": [["S"]], + "seagulls": null, + "seahorse": [["S"]], + "seahorses": null, + "sealant": [["M", "S"]], + "sealant's": null, + "sealants": null, + "sealed": [["A", "U"]], + "resealed": null, + "unsealed": null, + "sealer": [["M"]], + "sealer's": null, + "seal": [["M", "D", "R", "S", "G", "Z"]], + "seal's": null, + "seals": [["U", "A"]], + "sealing": null, + "sealers": null, + "sealskin": [["S", "M"]], + "sealskins": null, + "sealskin's": null, + "unseals": null, + "reseals": null, + "seamail": null, + "seamanship": [["S", "M"]], + "seamanships": null, + "seamanship's": null, + "seaman": [["Y", "M"]], + "seamanly": null, + "seaman's": null, + "seamer": [["M"]], + "seamer's": null, + "seaminess": [["M"]], + "seaminess's": null, + "seamlessness": [["M"]], + "seamlessness's": null, + "seamless": [["P", "Y"]], + "seamlessly": null, + "seam": [["M", "N", "D", "R", "G", "S"]], + "seam's": null, + "seamen": null, + "seamed": null, + "seaming": null, + "seams": [["I"]], + "inseams": null, + "seamstress": [["M", "S"]], + "seamstress's": null, + "seamstresses": null, + "Seamus": [["M"]], + "Seamus's": null, + "sea": [["M", "Y", "S"]], + "sea's": null, + "sealy": null, + "seas": null, + "seamy": [["T", "R", "P"]], + "seamiest": null, + "seamier": null, + "Seana": [["M"]], + "Seana's": null, + "s�ance": [["S", "M"]], + "s�ances": null, + "s�ance's": null, + "Sean": [["M"]], + "Sean's": null, + "seaplane": [["S", "M"]], + "seaplanes": null, + "seaplane's": null, + "seaport": [["S", "M"]], + "seaports": null, + "seaport's": null, + "seaquake": [["M"]], + "seaquake's": null, + "Seaquarium": [["M"]], + "Seaquarium's": null, + "searcher": [["A", "M"]], + "researcher": null, + "researcher's": null, + "searcher's": null, + "searching": [["Y", "S"]], + "searchingly": null, + "searchings": null, + "searchlight": [["S", "M"]], + "searchlights": null, + "searchlight's": null, + "search": [["R", "S", "D", "A", "G", "Z"]], + "searches": null, + "researches": null, + "searched": null, + "researched": null, + "researching": null, + "researchers": null, + "searchers": null, + "sear": [["D", "R", "S", "J", "G", "T"]], + "seared": null, + "searer": null, + "sears": null, + "searings": null, + "searing": [["Y"]], + "searest": null, + "searingly": null, + "Sears": [["M"]], + "Sears's": null, + "seascape": [["S", "M"]], + "seascapes": null, + "seascape's": null, + "seashell": [["M", "S"]], + "seashell's": null, + "seashells": null, + "seashore": [["S", "M"]], + "seashores": null, + "seashore's": null, + "seasickness": [["S", "M"]], + "seasicknesses": null, + "seasickness's": null, + "seasick": [["P"]], + "seaside": [["S", "M"]], + "seasides": null, + "seaside's": null, + "seasonableness": [["M"]], + "seasonableness's": null, + "seasonable": [["U", "P"]], + "unseasonable": null, + "unseasonableness": null, + "seasonably": [["U"]], + "unseasonably": null, + "seasonality": null, + "seasonal": [["Y"]], + "seasonally": null, + "seasoned": [["U"]], + "unseasoned": null, + "seasoner": [["M"]], + "seasoner's": null, + "seasoning": [["M"]], + "seasoning's": null, + "season": [["J", "R", "D", "Y", "M", "B", "Z", "S", "G"]], + "seasonings": null, + "seasonly": null, + "season's": null, + "seasoners": null, + "seasons": null, + "seatbelt": null, + "seated": [["A"]], + "reseated": null, + "seater": [["M"]], + "seater's": null, + "seating": [["S", "M"]], + "seatings": null, + "seating's": null, + "SEATO": null, + "seat's": null, + "Seattle": [["M"]], + "Seattle's": null, + "seat": [["U", "D", "S", "G"]], + "unseat": null, + "unseated": null, + "unseats": null, + "unseating": null, + "seats": null, + "seawall": [["S"]], + "seawalls": null, + "seaward": [["S"]], + "seawards": null, + "seawater": [["S"]], + "seawaters": null, + "seaway": [["M", "S"]], + "seaway's": null, + "seaways": null, + "seaweed": [["S", "M"]], + "seaweeds": null, + "seaweed's": null, + "seaworthinesses": null, + "seaworthiness": [["M", "U"]], + "seaworthiness's": null, + "unseaworthiness's": null, + "unseaworthiness": null, + "seaworthy": [["T", "R", "P"]], + "seaworthiest": null, + "seaworthier": null, + "sebaceous": null, + "Sebastian": [["M"]], + "Sebastian's": null, + "Sebastiano": [["M"]], + "Sebastiano's": null, + "Sebastien": [["M"]], + "Sebastien's": null, + "seborrhea": [["S", "M"]], + "seborrheas": null, + "seborrhea's": null, + "SEC": null, + "secant": [["S", "M"]], + "secants": null, + "secant's": null, + "secede": [["G", "R", "S", "D"]], + "seceding": null, + "seceder": null, + "secedes": null, + "seceded": null, + "secessionist": [["M", "S"]], + "secessionist's": null, + "secessionists": null, + "secession": [["M", "S"]], + "secession's": null, + "secessions": null, + "secludedness": [["M"]], + "secludedness's": null, + "secluded": [["Y", "P"]], + "secludedly": null, + "seclude": [["G", "S", "D"]], + "secluding": null, + "secludes": null, + "seclusion": [["S", "M"]], + "seclusions": null, + "seclusion's": null, + "seclusive": null, + "Seconal": null, + "secondarily": null, + "secondary": [["P", "S"]], + "secondariness": null, + "secondaries": null, + "seconder": [["M"]], + "seconder's": null, + "secondhand": null, + "second": [["R", "D", "Y", "Z", "G", "S", "L"]], + "seconded": null, + "secondly": null, + "seconders": null, + "seconding": null, + "seconds": null, + "secondment": null, + "secrecy": [["M", "S"]], + "secrecy's": null, + "secrecies": null, + "secretarial": null, + "secretariat": [["M", "S"]], + "secretariat's": null, + "secretariats": null, + "secretaryship": [["M", "S"]], + "secretaryship's": null, + "secretaryships": null, + "secretary": [["S", "M"]], + "secretaries": null, + "secretary's": null, + "secrete": [["X", "N", "S"]], + "secretions": null, + "secretion": [["M"]], + "secretes": null, + "secretion's": null, + "secretiveness": [["S"]], + "secretivenesses": null, + "secretive": [["P", "Y"]], + "secretively": null, + "secretory": null, + "secret": [["T", "V", "G", "R", "D", "Y", "S"]], + "secretest": null, + "secreting": null, + "secreter": null, + "secreted": null, + "secretly": null, + "secrets": null, + "sec": [["S"]], + "secs": null, + "sectarianism": [["M", "S"]], + "sectarianism's": null, + "sectarianisms": null, + "sectarian": [["S"]], + "sectarians": null, + "sectary": [["M", "S"]], + "sectary's": null, + "sectaries": null, + "sectionalism": [["M", "S"]], + "sectionalism's": null, + "sectionalisms": null, + "sectionalized": null, + "sectional": [["S", "Y"]], + "sectionals": null, + "sectionally": null, + "section": [["A", "S", "E", "M"]], + "resection": null, + "resections": null, + "resection's": null, + "sections": null, + "dissections": null, + "dissection": null, + "dissection's": null, + "section's": null, + "sectioned": null, + "sectioning": null, + "sect": [["I", "S", "M"]], + "insect": null, + "insects": null, + "insect's": null, + "sects": [["E"]], + "sect's": null, + "sectoral": null, + "sectored": null, + "sector": [["E", "M", "S"]], + "dissector": null, + "dissector's": null, + "dissectors": null, + "sector's": null, + "sectors": null, + "sectoring": null, + "dissects": null, + "secularism": [["M", "S"]], + "secularism's": null, + "secularisms": null, + "secularist": [["M", "S"]], + "secularist's": null, + "secularists": null, + "secularity": [["M"]], + "secularity's": null, + "secularization": [["M", "S"]], + "secularization's": null, + "secularizations": null, + "secularized": [["U"]], + "unsecularized": null, + "secularize": [["G", "S", "D"]], + "secularizing": null, + "secularizes": null, + "secular": [["S", "Y"]], + "seculars": null, + "secularly": null, + "secured": [["U"]], + "unsecured": null, + "securely": [["I"]], + "insecurely": null, + "secure": [["P", "G", "T", "Y", "R", "S", "D", "J"]], + "secureness": null, + "securing": null, + "securest": null, + "securer": null, + "secures": null, + "securings": null, + "security": [["M", "S", "I"]], + "security's": null, + "insecurity's": null, + "securities": null, + "insecurities": null, + "insecurity": null, + "secy": null, + "sec'y": null, + "sedan": [["S", "M"]], + "sedans": null, + "sedan's": null, + "sedateness": [["S", "M"]], + "sedatenesses": null, + "sedateness's": null, + "sedate": [["P", "X", "V", "N", "G", "T", "Y", "R", "S", "D"]], + "sedations": null, + "sedative": [["S"]], + "sedation": [["M"]], + "sedating": null, + "sedatest": null, + "sedately": null, + "sedater": null, + "sedates": null, + "sedated": null, + "sedation's": null, + "sedatives": null, + "sedentary": null, + "Seder": [["S", "M"]], + "Seders": null, + "Seder's": null, + "sedge": [["S", "M"]], + "sedges": null, + "sedge's": null, + "Sedgwick": [["M"]], + "Sedgwick's": null, + "sedgy": [["R", "T"]], + "sedgier": null, + "sedgiest": null, + "sedimentary": null, + "sedimentation": [["S", "M"]], + "sedimentations": null, + "sedimentation's": null, + "sediment": [["S", "G", "D", "M"]], + "sediments": null, + "sedimenting": null, + "sedimented": null, + "sediment's": null, + "sedition": [["S", "M"]], + "seditions": null, + "sedition's": null, + "seditiousness": [["M"]], + "seditiousness's": null, + "seditious": [["P", "Y"]], + "seditiously": null, + "seducer": [["M"]], + "seducer's": null, + "seduce": [["R", "S", "D", "G", "Z"]], + "seduces": null, + "seduced": null, + "seducing": null, + "seducers": null, + "seduction": [["M", "S"]], + "seduction's": null, + "seductions": null, + "seductiveness": [["M", "S"]], + "seductiveness's": null, + "seductivenesses": null, + "seductive": [["Y", "P"]], + "seductively": null, + "seductress": [["S", "M"]], + "seductresses": null, + "seductress's": null, + "sedulous": [["Y"]], + "sedulously": null, + "Seebeck": [["M"]], + "Seebeck's": null, + "seed": [["A", "D", "S", "G"]], + "reseed": null, + "reseeded": null, + "reseeds": null, + "reseeding": null, + "seeded": [["U"]], + "seeds": null, + "seeding": [["S"]], + "seedbed": [["M", "S"]], + "seedbed's": null, + "seedbeds": null, + "seedcase": [["S", "M"]], + "seedcases": null, + "seedcase's": null, + "unseeded": null, + "seeder": [["M", "S"]], + "seeder's": null, + "seeders": null, + "seediness": [["M", "S"]], + "seediness's": null, + "seedinesses": null, + "seedings": null, + "seedless": null, + "seedling": [["S", "M"]], + "seedlings": null, + "seedling's": null, + "seedpod": [["S"]], + "seedpods": null, + "seed's": null, + "seedy": [["T", "P", "R"]], + "seediest": null, + "seedier": null, + "seeings": null, + "seeing's": null, + "seeing": [["U"]], + "unseeing": [["Y"]], + "seeker": [["M"]], + "seeker's": null, + "seek": [["G", "Z", "S", "R"]], + "seeking": [["Y"]], + "seekers": null, + "seeks": null, + "seekingly": null, + "Seeley": [["M"]], + "Seeley's": null, + "See": [["M"]], + "See's": null, + "seem": [["G", "J", "S", "Y", "D"]], + "seeming": [["Y"]], + "seemings": null, + "seems": null, + "seemly": [["U", "T", "P", "R"]], + "seemed": null, + "seemingly": null, + "seemliness's": null, + "seemliness": [["U", "S"]], + "unseemliness": null, + "unseemlinesses": null, + "seemlinesses": null, + "unseemly": null, + "unseemlier": null, + "seemliest": null, + "seemlier": null, + "seen": [["U"]], + "unseen": [["S"]], + "seepage": [["M", "S"]], + "seepage's": null, + "seepages": null, + "seep": [["G", "S", "D"]], + "seeping": null, + "seeps": null, + "seeped": null, + "seer": [["S", "M"]], + "seers": null, + "seer's": null, + "seersucker": [["M", "S"]], + "seersucker's": null, + "seersuckers": null, + "sees": null, + "seesaw": [["D", "M", "S", "G"]], + "seesawed": null, + "seesaw's": null, + "seesaws": null, + "seesawing": null, + "seethe": [["S", "D", "G", "J"]], + "seethes": null, + "seethed": null, + "seething": null, + "seethings": null, + "see": [["U"]], + "unsee": null, + "segmental": [["Y"]], + "segmentally": null, + "segmentation": [["S", "M"]], + "segmentations": null, + "segmentation's": null, + "segmented": [["U"]], + "unsegmented": null, + "segment": [["S", "G", "D", "M"]], + "segments": null, + "segmenting": null, + "segment's": null, + "Segovia": [["M"]], + "Segovia's": null, + "segregant": null, + "segregated": [["U"]], + "unsegregated": null, + "segregate": [["X", "C", "N", "G", "S", "D"]], + "segregations": null, + "desegregations": null, + "desegregate": null, + "desegregation": null, + "desegregating": null, + "desegregates": null, + "desegregated": null, + "segregation": [["C", "M"]], + "segregating": null, + "segregates": null, + "desegregation's": null, + "segregation's": null, + "segregationist": [["S", "M"]], + "segregationists": null, + "segregationist's": null, + "segregative": null, + "Segre": [["M"]], + "Segre's": null, + "segue": [["D", "S"]], + "segued": null, + "segues": null, + "segueing": null, + "Segundo": [["M"]], + "Segundo's": null, + "Se": [["H"]], + "Seth": [["M"]], + "Seidel": [["M"]], + "Seidel's": null, + "seigneur": [["M", "S"]], + "seigneur's": null, + "seigneurs": null, + "seignior": [["S", "M"]], + "seigniors": null, + "seignior's": null, + "Seiko": [["M"]], + "Seiko's": null, + "seine": [["G", "Z", "M", "D", "S", "R"]], + "seining": null, + "seiners": null, + "seine's": null, + "seined": null, + "seines": null, + "seiner": [["M"]], + "Seine": [["M"]], + "Seine's": null, + "seiner's": null, + "Seinfeld": [["M"]], + "Seinfeld's": null, + "seismic": null, + "seismically": null, + "seismographer": [["M"]], + "seismographer's": null, + "seismographic": null, + "seismographs": null, + "seismography": [["S", "M"]], + "seismographies": null, + "seismography's": null, + "seismograph": [["Z", "M", "R"]], + "seismographers": null, + "seismograph's": null, + "seismologic": null, + "seismological": null, + "seismologist": [["M", "S"]], + "seismologist's": null, + "seismologists": null, + "seismology": [["S", "M"]], + "seismologies": null, + "seismology's": null, + "seismometer": [["S"]], + "seismometers": null, + "seize": [["B", "J", "G", "Z", "D", "S", "R"]], + "seizable": null, + "seizings": null, + "seizing": [["M"]], + "seizers": null, + "seized": null, + "seizes": null, + "seizer": [["M"]], + "seizer's": null, + "seizing's": null, + "seizin": [["M", "S"]], + "seizin's": null, + "seizins": null, + "seizor": [["M", "S"]], + "seizor's": null, + "seizors": null, + "seizure": [["M", "S"]], + "seizure's": null, + "seizures": null, + "Seka": [["M"]], + "Seka's": null, + "Sela": [["M"]], + "Sela's": null, + "Selassie": [["M"]], + "Selassie's": null, + "Selby": [["M"]], + "Selby's": null, + "seldom": null, + "selected": [["U", "A", "C"]], + "unselected": null, + "reselected": null, + "deselected": null, + "selectional": null, + "selection": [["M", "S"]], + "selection's": null, + "selections": null, + "selectiveness": [["M"]], + "selectiveness's": null, + "selective": [["Y", "P"]], + "selectively": null, + "selectivity": [["M", "S"]], + "selectivity's": null, + "selectivities": null, + "selectman": [["M"]], + "selectman's": null, + "selectmen": null, + "selectness": [["S", "M"]], + "selectnesses": null, + "selectness's": null, + "selector": [["S", "M"]], + "selectors": null, + "selector's": null, + "select": [["P", "D", "S", "V", "G", "B"]], + "selects": [["A"]], + "selecting": null, + "selectable": null, + "Selectric": [["M"]], + "Selectric's": null, + "reselects": null, + "Selena": [["M"]], + "Selena's": null, + "selenate": [["M"]], + "selenate's": null, + "Selene": [["M"]], + "Selene's": null, + "selenite": [["M"]], + "selenite's": null, + "selenium": [["M", "S"]], + "selenium's": null, + "seleniums": null, + "selenographer": [["S", "M"]], + "selenographers": null, + "selenographer's": null, + "selenography": [["M", "S"]], + "selenography's": null, + "selenographies": null, + "Selestina": [["M"]], + "Selestina's": null, + "Seleucid": [["M"]], + "Seleucid's": null, + "Seleucus": [["M"]], + "Seleucus's": null, + "self": [["G", "P", "D", "M", "S"]], + "selfing": null, + "selfness": [["M"]], + "selfed": null, + "self's": null, + "selfs": null, + "selfishness": [["S", "U"]], + "selfishnesses": null, + "unselfishnesses": null, + "unselfishness": [["M"]], + "selfish": [["P", "U", "Y"]], + "unselfish": null, + "unselfishly": null, + "selfishly": null, + "selflessness": [["M", "S"]], + "selflessness's": null, + "selflessnesses": null, + "selfless": [["Y", "P"]], + "selflessly": null, + "selfness's": null, + "Selfridge": [["M"]], + "Selfridge's": null, + "selfsameness": [["M"]], + "selfsameness's": null, + "selfsame": [["P"]], + "Selia": [["M"]], + "Selia's": null, + "Selie": [["M"]], + "Selie's": null, + "Selig": [["M"]], + "Selig's": null, + "Selim": [["M"]], + "Selim's": null, + "Selina": [["M"]], + "Selina's": null, + "Selinda": [["M"]], + "Selinda's": null, + "Seline": [["M"]], + "Seline's": null, + "Seljuk": [["M"]], + "Seljuk's": null, + "Selkirk": [["M"]], + "Selkirk's": null, + "Sella": [["M"]], + "Sella's": null, + "sell": [["A", "Z", "G", "S", "R"]], + "resell": null, + "resellers": null, + "reselling": null, + "resells": null, + "reseller": null, + "sellers": null, + "selling": null, + "sells": null, + "seller": [["A", "M"]], + "reseller's": null, + "seller's": null, + "Sellers": [["M"]], + "Sellers's": null, + "Selle": [["Z", "M"]], + "Selle's": null, + "sellout": [["M", "S"]], + "sellout's": null, + "sellouts": null, + "Selma": [["M"]], + "Selma's": null, + "seltzer": [["S"]], + "seltzers": null, + "selvage": [["M", "G", "S", "D"]], + "selvage's": null, + "selvaging": null, + "selvages": null, + "selvaged": null, + "selves": [["M"]], + "selves's": null, + "Selznick": [["M"]], + "Selznick's": null, + "semantical": [["Y"]], + "semantically": null, + "semanticist": [["S", "M"]], + "semanticists": null, + "semanticist's": null, + "semantic": [["S"]], + "semantics": [["M"]], + "semantics's": null, + "semaphore": [["G", "M", "S", "D"]], + "semaphoring": null, + "semaphore's": null, + "semaphores": null, + "semaphored": null, + "Semarang": [["M"]], + "Semarang's": null, + "semblance": [["A", "S", "M", "E"]], + "resemblance": null, + "resemblances": null, + "resemblance's": null, + "semblances": null, + "dissemblances": null, + "semblance's": null, + "dissemblance's": null, + "dissemblance": null, + "semen": [["S", "M"]], + "semens": null, + "semen's": null, + "semester": [["S", "M"]], + "semesters": null, + "semester's": null, + "semiannual": [["Y"]], + "semiannually": null, + "semiarid": null, + "semiautomated": null, + "semiautomatic": [["S"]], + "semiautomatics": null, + "semicircle": [["S", "M"]], + "semicircles": null, + "semicircle's": null, + "semicircular": null, + "semicolon": [["M", "S"]], + "semicolon's": null, + "semicolons": null, + "semiconductor": [["S", "M"]], + "semiconductors": null, + "semiconductor's": null, + "semiconscious": null, + "semidefinite": null, + "semidetached": null, + "semidrying": [["M"]], + "semidrying's": null, + "semifinalist": [["M", "S"]], + "semifinalist's": null, + "semifinalists": null, + "semifinal": [["M", "S"]], + "semifinal's": null, + "semifinals": null, + "semilogarithmic": null, + "semimonthly": [["S"]], + "semimonthlies": null, + "seminal": [["Y"]], + "seminally": null, + "seminarian": [["M", "S"]], + "seminarian's": null, + "seminarians": null, + "seminar": [["S", "M"]], + "seminars": null, + "seminar's": null, + "seminary": [["M", "S"]], + "seminary's": null, + "seminaries": null, + "Seminole": [["S", "M"]], + "Seminoles": null, + "Seminole's": null, + "semiofficial": null, + "semioticians": null, + "semiotic": [["S"]], + "semiotics": [["M"]], + "semiotics's": null, + "semipermanent": [["Y"]], + "semipermanently": null, + "semipermeable": null, + "semiprecious": null, + "semiprivate": null, + "semiprofessional": [["Y", "S"]], + "semiprofessionally": null, + "semiprofessionals": null, + "semipublic": null, + "semiquantitative": [["Y"]], + "semiquantitatively": null, + "Semiramis": [["M"]], + "Semiramis's": null, + "semiretired": null, + "semisecret": null, + "semiskilled": null, + "semi": [["S", "M"]], + "semis": null, + "semi's": null, + "semisolid": [["S"]], + "semisolids": null, + "semistructured": null, + "semisweet": null, + "Semite": [["S", "M"]], + "Semites": null, + "Semite's": null, + "Semitic": [["M", "S"]], + "Semitic's": null, + "Semitics": null, + "semitic": [["S"]], + "semitics": null, + "semitone": [["S", "M"]], + "semitones": null, + "semitone's": null, + "semitrailer": [["S", "M"]], + "semitrailers": null, + "semitrailer's": null, + "semitrance": null, + "semitransparent": null, + "semitropical": null, + "semivowel": [["M", "S"]], + "semivowel's": null, + "semivowels": null, + "semiweekly": [["S"]], + "semiweeklies": null, + "semiyearly": null, + "semolina": [["S", "M"]], + "semolinas": null, + "semolina's": null, + "sempiternal": null, + "sempstress": [["S", "M"]], + "sempstresses": null, + "sempstress's": null, + "Semtex": null, + "sen": null, + "Sen": null, + "Sena": [["M"]], + "Sena's": null, + "senate": [["M", "S"]], + "senate's": null, + "senates": null, + "Senate": [["M", "S"]], + "Senate's": null, + "Senates": null, + "senatorial": null, + "senator": [["M", "S"]], + "senator's": null, + "senators": null, + "Sendai": [["M"]], + "Sendai's": null, + "sender": [["M"]], + "sender's": null, + "sends": [["A"]], + "resends": null, + "send": [["S", "R", "G", "Z"]], + "sending": null, + "senders": null, + "Seneca": [["M", "S"]], + "Seneca's": null, + "Senecas": null, + "Senegalese": null, + "Senegal": [["M"]], + "Senegal's": null, + "senescence": [["S", "M"]], + "senescences": null, + "senescence's": null, + "senescent": null, + "senile": [["S", "Y"]], + "seniles": null, + "senilely": null, + "senility": [["M", "S"]], + "senility's": null, + "senilities": null, + "seniority": [["S", "M"]], + "seniorities": null, + "seniority's": null, + "senior": [["M", "S"]], + "senior's": null, + "seniors": null, + "Senior": [["S"]], + "Seniors": null, + "Sennacherib": [["M"]], + "Sennacherib's": null, + "senna": [["M", "S"]], + "senna's": null, + "sennas": null, + "Sennett": [["M"]], + "Sennett's": null, + "Se�ora": [["M"]], + "Se�ora's": null, + "senora": [["S"]], + "senoras": null, + "senorita": [["S"]], + "senoritas": null, + "senor": [["M", "S"]], + "senor's": null, + "senors": null, + "sensately": [["I"]], + "insensately": null, + "sensate": [["Y", "N", "X"]], + "sensation": [["M"]], + "sensations": null, + "sensationalism": [["M", "S"]], + "sensationalism's": null, + "sensationalisms": null, + "sensationalist": [["S"]], + "sensationalists": null, + "sensationalize": [["G", "S", "D"]], + "sensationalizing": null, + "sensationalizes": null, + "sensationalized": null, + "sensational": [["Y"]], + "sensationally": null, + "sensation's": null, + "sens": [["D", "S", "G"]], + "sensed": null, + "senses": null, + "sensing": null, + "senselessness": [["S", "M"]], + "senselessnesses": null, + "senselessness's": null, + "senseless": [["P", "Y"]], + "senselessly": null, + "sense": [["M"]], + "sense's": null, + "sensibility": [["I", "S", "M"]], + "insensibility": null, + "insensibilities": null, + "insensibility's": null, + "sensibilities": null, + "sensibility's": null, + "sensibleness": [["M", "S"]], + "sensibleness's": null, + "sensiblenesses": null, + "sensible": [["P", "R", "S", "T"]], + "sensibler": null, + "sensibles": null, + "sensiblest": null, + "sensibly": [["I"]], + "insensibly": null, + "sensitiveness": [["M", "S"]], + "sensitiveness's": [["I"]], + "sensitivenesses": null, + "insensitiveness's": null, + "sensitives": null, + "sensitive": [["Y", "I", "P"]], + "sensitively": null, + "insensitively": null, + "insensitive": null, + "insensitiveness": null, + "sensitivity": [["I", "S", "M"]], + "insensitivity": null, + "insensitivities": null, + "insensitivity's": null, + "sensitivities": null, + "sensitivity's": null, + "sensitization": [["C", "S", "M"]], + "desensitization": null, + "desensitizations": null, + "desensitization's": null, + "sensitizations": null, + "sensitization's": null, + "sensitized": [["U"]], + "unsensitized": null, + "sensitizers": null, + "sensitize": [["S", "D", "C", "G"]], + "sensitizes": null, + "desensitizes": null, + "desensitized": null, + "desensitize": null, + "desensitizing": null, + "sensitizing": null, + "sensor": [["M", "S"]], + "sensor's": null, + "sensors": null, + "sensory": null, + "sensualist": [["M", "S"]], + "sensualist's": null, + "sensualists": null, + "sensuality": [["M", "S"]], + "sensuality's": null, + "sensualities": null, + "sensual": [["Y", "F"]], + "sensually": null, + "consensually": null, + "consensual": null, + "sensuousness": [["S"]], + "sensuousnesses": null, + "sensuous": [["P", "Y"]], + "sensuously": null, + "Sensurround": [["M"]], + "Sensurround's": null, + "sentence": [["S", "D", "M", "G"]], + "sentences": null, + "sentenced": null, + "sentence's": null, + "sentencing": null, + "sentential": [["Y"]], + "sententially": null, + "sententious": [["Y"]], + "sententiously": null, + "sentience": [["I", "S", "M"]], + "insentience": null, + "insentiences": null, + "insentience's": null, + "sentiences": null, + "sentience's": null, + "sentient": [["Y", "S"]], + "sentiently": null, + "sentients": null, + "sentimentalism": [["S", "M"]], + "sentimentalisms": null, + "sentimentalism's": null, + "sentimentalist": [["S", "M"]], + "sentimentalists": null, + "sentimentalist's": null, + "sentimentality": [["S", "M"]], + "sentimentalities": null, + "sentimentality's": null, + "sentimentalization": [["S", "M"]], + "sentimentalizations": null, + "sentimentalization's": null, + "sentimentalize": [["R", "S", "D", "Z", "G"]], + "sentimentalizer": null, + "sentimentalizes": [["U"]], + "sentimentalized": null, + "sentimentalizers": null, + "sentimentalizing": null, + "unsentimentalizes": null, + "sentimental": [["Y"]], + "sentimentally": null, + "sentiment": [["M", "S"]], + "sentiment's": null, + "sentiments": null, + "sentinel": [["G", "D", "M", "S"]], + "sentineling": null, + "sentineled": null, + "sentinel's": null, + "sentinels": null, + "sentry": [["S", "M"]], + "sentries": null, + "sentry's": null, + "sent": [["U", "F", "E", "A"]], + "unsent": null, + "Seoul": [["M"]], + "Seoul's": null, + "sepal": [["S", "M"]], + "sepals": null, + "sepal's": null, + "separability": [["M", "S", "I"]], + "separability's": null, + "inseparability's": null, + "separabilities": null, + "inseparabilities": null, + "inseparability": null, + "separableness": [["M", "I"]], + "separableness's": null, + "inseparableness's": null, + "inseparableness": null, + "separable": [["P", "I"]], + "separably": [["I"]], + "inseparably": null, + "separateness": [["M", "S"]], + "separateness's": null, + "separatenesses": null, + "separates": [["M"]], + "separates's": null, + "separate": [["Y", "N", "G", "V", "D", "S", "X", "P"]], + "separately": null, + "separation": [["M"]], + "separating": null, + "separative": null, + "separated": null, + "separations": null, + "separation's": null, + "separatism": [["S", "M"]], + "separatisms": null, + "separatism's": null, + "separatist": [["S", "M"]], + "separatists": null, + "separatist's": null, + "separator": [["S", "M"]], + "separators": null, + "separator's": null, + "Sephardi": [["M"]], + "Sephardi's": null, + "Sephira": [["M"]], + "Sephira's": null, + "sepia": [["M", "S"]], + "sepia's": null, + "sepias": null, + "Sepoy": [["M"]], + "Sepoy's": null, + "sepses": null, + "sepsis": [["M"]], + "sepsis's": null, + "septa": [["M"]], + "septa's": null, + "septate": [["N"]], + "septation": null, + "September": [["M", "S"]], + "September's": null, + "Septembers": null, + "septennial": [["Y"]], + "septennially": null, + "septet": [["M", "S"]], + "septet's": null, + "septets": null, + "septicemia": [["S", "M"]], + "septicemias": null, + "septicemia's": null, + "septicemic": null, + "septic": [["S"]], + "septics": null, + "septillion": [["M"]], + "septillion's": null, + "sept": [["M"]], + "sept's": null, + "Sept": [["M"]], + "Sept's": null, + "septuagenarian": [["M", "S"]], + "septuagenarian's": null, + "septuagenarians": null, + "Septuagint": [["M", "S"]], + "Septuagint's": null, + "Septuagints": null, + "septum": [["M"]], + "septum's": null, + "sepulcher": [["M", "G", "S", "D"]], + "sepulcher's": null, + "sepulchering": null, + "sepulchers": [["U", "A"]], + "sepulchered": null, + "unsepulchers": null, + "resepulchers": null, + "sepulchral": [["Y"]], + "sepulchrally": null, + "seq": null, + "sequel": [["M", "S"]], + "sequel's": null, + "sequels": null, + "sequenced": [["A"]], + "resequenced": null, + "sequence": [["D", "R", "S", "J", "Z", "M", "G"]], + "sequencer": [["M"]], + "sequences": [["F"]], + "sequencings": null, + "sequencers": null, + "sequence's": [["F"]], + "sequencing": null, + "sequencer's": null, + "consequence's": null, + "consequences": null, + "sequent": [["F"]], + "sequentiality": [["F", "M"]], + "consequentiality's": null, + "sequentiality's": null, + "sequentialize": [["D", "S", "G"]], + "sequentialized": null, + "sequentializes": null, + "sequentializing": null, + "sequential": [["Y", "F"]], + "sequentially": null, + "sequester": [["S", "D", "G"]], + "sequesters": null, + "sequestered": null, + "sequestering": null, + "sequestrate": [["X", "G", "N", "D", "S"]], + "sequestrations": null, + "sequestrating": null, + "sequestration": [["M"]], + "sequestrated": null, + "sequestrates": null, + "sequestration's": null, + "sequin": [["S", "D", "M", "G"]], + "sequins": null, + "sequined": null, + "sequin's": null, + "sequining": null, + "sequitur": null, + "Sequoia": [["M"]], + "Sequoia's": null, + "sequoia": [["M", "S"]], + "sequoia's": null, + "sequoias": null, + "Sequoya": [["M"]], + "Sequoya's": null, + "Serafin": [["M"]], + "Serafin's": null, + "seraglio": [["S", "M"]], + "seraglios": null, + "seraglio's": null, + "serape": [["S"]], + "serapes": null, + "seraphic": null, + "seraphically": null, + "seraphim's": null, + "seraph": [["M"]], + "seraph's": null, + "seraphs": null, + "sera's": null, + "Serbia": [["M"]], + "Serbia's": null, + "Serbian": [["S"]], + "Serbians": null, + "Serb": [["M", "S"]], + "Serb's": null, + "Serbs": null, + "Serbo": [["M"]], + "Serbo's": null, + "serenade": [["M", "G", "D", "R", "S"]], + "serenade's": null, + "serenading": null, + "serenaded": null, + "serenader": [["M"]], + "serenades": null, + "serenader's": null, + "Serena": [["M"]], + "Serena's": null, + "serendipitous": [["Y"]], + "serendipitously": null, + "serendipity": [["M", "S"]], + "serendipity's": null, + "serendipities": null, + "serene": [["G", "T", "Y", "R", "S", "D", "P"]], + "serening": null, + "serenest": null, + "serenely": null, + "serener": null, + "serenes": null, + "serened": null, + "sereneness": [["S", "M"]], + "Serene": [["M"]], + "Serene's": null, + "serenenesses": null, + "sereneness's": null, + "Serengeti": [["M"]], + "Serengeti's": null, + "serenity": [["M", "S"]], + "serenity's": null, + "serenities": null, + "sere": [["T", "G", "D", "R", "S"]], + "serest": null, + "sering": null, + "sered": null, + "serer": null, + "seres": null, + "serfdom": [["M", "S"]], + "serfdom's": null, + "serfdoms": null, + "serf": [["M", "S"]], + "serf's": null, + "serfs": null, + "Sergeant": [["M"]], + "Sergeant's": null, + "sergeant": [["S", "M"]], + "sergeants": null, + "sergeant's": null, + "serge": [["D", "S", "G", "M"]], + "serged": null, + "serges": null, + "serging": null, + "serge's": null, + "Sergei": [["M"]], + "Sergei's": null, + "Serge": [["M"]], + "Serge's": null, + "Sergent": [["M"]], + "Sergent's": null, + "Sergio": [["M"]], + "Sergio's": null, + "serialization": [["M", "S"]], + "serialization's": null, + "serializations": null, + "serialize": [["G", "S", "D"]], + "serializing": null, + "serializes": null, + "serialized": null, + "serial": [["M", "Y", "S"]], + "serial's": null, + "serially": null, + "serials": null, + "series": [["M"]], + "series's": null, + "serif": [["S", "M", "D"]], + "serifs": null, + "serif's": null, + "serifed": null, + "serigraph": [["M"]], + "serigraph's": null, + "serigraphs": null, + "seriousness": [["S", "M"]], + "seriousnesses": null, + "seriousness's": null, + "serious": [["P", "Y"]], + "seriously": null, + "sermonize": [["G", "S", "D"]], + "sermonizing": null, + "sermonizes": null, + "sermonized": null, + "sermon": [["S", "G", "D", "M"]], + "sermons": null, + "sermoning": null, + "sermoned": null, + "sermon's": null, + "serological": [["Y"]], + "serologically": null, + "serology": [["M", "S"]], + "serology's": null, + "serologies": null, + "serons": null, + "serous": null, + "Serpens": [["M"]], + "Serpens's": null, + "serpent": [["G", "S", "D", "M"]], + "serpenting": null, + "serpents": null, + "serpented": null, + "serpent's": null, + "serpentine": [["G", "Y", "S"]], + "serpentining": null, + "serpentinely": null, + "serpentines": null, + "Serra": [["M"]], + "Serra's": null, + "Serrano": [["M"]], + "Serrano's": null, + "serrate": [["G", "N", "X", "S", "D"]], + "serrating": null, + "serration": [["M"]], + "serrations": null, + "serrates": null, + "serrated": null, + "serration's": null, + "serried": null, + "serum": [["M", "S"]], + "serum's": null, + "serums": null, + "servant": [["S", "D", "M", "G"]], + "servants": null, + "servanted": null, + "servant's": null, + "servanting": null, + "serve": [["A", "G", "C", "F", "D", "S", "R"]], + "reserve": null, + "reserving": null, + "reserves": null, + "reserver": null, + "serving": [["S", "M"]], + "conserving": null, + "deserves": null, + "deserver": null, + "conserve": null, + "conserved": null, + "conserves": null, + "conserver": null, + "served": [["U"]], + "serves": null, + "server": [["M", "C", "F"]], + "unserved": null, + "server's": null, + "deserver's": null, + "conserver's": null, + "servers": null, + "serviceability": [["S", "M"]], + "serviceabilities": null, + "serviceability's": null, + "serviceableness": [["M"]], + "serviceableness's": null, + "serviceable": [["P"]], + "serviced": [["U"]], + "unserviced": null, + "serviceman": [["M"]], + "serviceman's": null, + "servicemen": null, + "service": [["M", "G", "S", "R", "D"]], + "service's": [["E"]], + "servicing": null, + "services": [["E"]], + "servicer": null, + "disservice's": null, + "disservices": null, + "servicewoman": null, + "servicewomen": null, + "serviette": [["M", "S"]], + "serviette's": null, + "serviettes": null, + "servilely": null, + "servileness": [["M"]], + "servileness's": null, + "serviles": null, + "servile": [["U"]], + "unservile": null, + "servility": [["S", "M"]], + "servilities": null, + "servility's": null, + "servings": null, + "serving's": null, + "servitor": [["S", "M"]], + "servitors": null, + "servitor's": null, + "servitude": [["M", "S"]], + "servitude's": null, + "servitudes": null, + "servomechanism": [["M", "S"]], + "servomechanism's": null, + "servomechanisms": null, + "servomotor": [["M", "S"]], + "servomotor's": null, + "servomotors": null, + "servo": [["S"]], + "servos": null, + "sesame": [["M", "S"]], + "sesame's": null, + "sesames": null, + "sesquicentennial": [["S"]], + "sesquicentennials": null, + "sessile": null, + "session": [["S", "M"]], + "sessions": null, + "session's": null, + "setback": [["S"]], + "setbacks": null, + "Seth's": null, + "Set": [["M"]], + "Set's": null, + "Seton": [["M"]], + "Seton's": null, + "set's": null, + "setscrew": [["S", "M"]], + "setscrews": null, + "setscrew's": null, + "set": [["S", "I", "A"]], + "sets": null, + "insets": null, + "resets": null, + "inset": null, + "settable": [["A"]], + "resettable": null, + "sett": [["B", "J", "G", "Z", "S", "M", "R"]], + "settings": null, + "setting": [["A", "S"]], + "setters": null, + "setts": null, + "sett's": null, + "setter": [["M"]], + "settee": [["M", "S"]], + "settee's": null, + "settees": null, + "setter's": null, + "resetting": null, + "resettings": null, + "setting's": null, + "settle": [["A", "U", "D", "S", "G"]], + "resettled": null, + "resettles": null, + "resettling": null, + "unsettle": null, + "unsettled": [["P"]], + "unsettles": null, + "unsettling": [["Y"]], + "settled": null, + "settles": null, + "settling": [["S"]], + "settlement": [["A", "S", "M"]], + "resettlements": null, + "resettlement's": null, + "settlements": null, + "settlement's": null, + "settler": [["M", "S"]], + "settler's": null, + "settlers": null, + "settlings": null, + "setup": [["M", "S"]], + "setup's": null, + "setups": null, + "Seumas": [["M"]], + "Seumas's": null, + "Seurat": [["M"]], + "Seurat's": null, + "Seuss": [["M"]], + "Seuss's": null, + "Sevastopol": [["M"]], + "Sevastopol's": null, + "sevenfold": null, + "sevenpence": null, + "seven": [["S", "M", "H"]], + "sevens": null, + "seven's": null, + "seventh": null, + "seventeen": [["H", "M", "S"]], + "seventeenth": null, + "seventeen's": null, + "seventeens": null, + "seventeenths": null, + "sevenths": null, + "seventieths": null, + "seventy": [["M", "S", "H"]], + "seventy's": null, + "seventies": null, + "seventieth": null, + "severalfold": null, + "severalty": [["M"]], + "severalty's": null, + "several": [["Y", "S"]], + "severally": null, + "severals": null, + "severance": [["S", "M"]], + "severances": null, + "severance's": null, + "severed": [["E"]], + "dissevered": null, + "severeness": [["S", "M"]], + "severenesses": null, + "severeness's": null, + "severe": [["P", "Y"]], + "severely": null, + "severing": [["E"]], + "dissevering": null, + "severity": [["M", "S"]], + "severity's": null, + "severities": null, + "Severn": [["M"]], + "Severn's": null, + "severs": [["E"]], + "dissevers": null, + "sever": [["S", "G", "T", "R", "D"]], + "severest": null, + "severer": null, + "Severus": [["M"]], + "Severus's": null, + "Seville": [["M"]], + "Seville's": null, + "sewage": [["M", "S"]], + "sewage's": null, + "sewages": null, + "Seward": [["M"]], + "Seward's": null, + "sewerage": [["S", "M"]], + "sewerages": null, + "sewerage's": null, + "sewer": [["G", "S", "M", "D"]], + "sewering": null, + "sewers": null, + "sewer's": null, + "sewered": null, + "sewing": [["S", "M"]], + "sewings": null, + "sewing's": null, + "sewn": null, + "sew": [["S", "A", "G", "D"]], + "sews": null, + "resews": null, + "resew": null, + "resewing": null, + "resewed": null, + "sewed": null, + "sexagenarian": [["M", "S"]], + "sexagenarian's": null, + "sexagenarians": null, + "sex": [["G", "M", "D", "S"]], + "sexing": null, + "sex's": null, + "sexed": null, + "sexes": null, + "sexily": null, + "sexiness": [["M", "S"]], + "sexiness's": null, + "sexinesses": null, + "sexism": [["S", "M"]], + "sexisms": null, + "sexism's": null, + "sexist": [["S", "M"]], + "sexists": null, + "sexist's": null, + "sexless": null, + "sexologist": [["S", "M"]], + "sexologists": null, + "sexologist's": null, + "sexology": [["M", "S"]], + "sexology's": null, + "sexologies": null, + "sexpot": [["S", "M"]], + "sexpots": null, + "sexpot's": null, + "Sextans": [["M"]], + "Sextans's": null, + "sextant": [["S", "M"]], + "sextants": null, + "sextant's": null, + "sextet": [["S", "M"]], + "sextets": null, + "sextet's": null, + "sextillion": [["M"]], + "sextillion's": null, + "Sexton": [["M"]], + "Sexton's": null, + "sexton": [["M", "S"]], + "sexton's": null, + "sextons": null, + "sextuple": [["M", "D", "G"]], + "sextuple's": null, + "sextupled": null, + "sextupling": null, + "sextuplet": [["M", "S"]], + "sextuplet's": null, + "sextuplets": null, + "sexuality": [["M", "S"]], + "sexuality's": null, + "sexualities": null, + "sexualized": null, + "sexual": [["Y"]], + "sexually": null, + "sexy": [["R", "T", "P"]], + "sexier": null, + "sexiest": null, + "Seychelles": null, + "Seyfert": null, + "Seymour": [["M"]], + "Seymour's": null, + "sf": null, + "SF": null, + "Sgt": null, + "shabbily": null, + "shabbiness": [["S", "M"]], + "shabbinesses": null, + "shabbiness's": null, + "shabby": [["R", "T", "P"]], + "shabbier": null, + "shabbiest": null, + "shack": [["G", "M", "D", "S"]], + "shacking": null, + "shack's": null, + "shacked": null, + "shacks": null, + "shackler": [["M"]], + "shackler's": null, + "shackle's": null, + "Shackleton": [["M"]], + "Shackleton's": null, + "shackle": [["U", "G", "D", "S"]], + "unshackle": null, + "unshackling": null, + "unshackled": null, + "unshackles": null, + "shackling": null, + "shackled": null, + "shackles": null, + "shad": [["D", "R", "J", "G", "S", "M"]], + "shaded": [["U"]], + "shader": null, + "shadings": null, + "shading": [["M"]], + "shads": null, + "shad's": null, + "unshaded": null, + "shadeless": null, + "shade": [["S", "M"]], + "shades": null, + "shade's": null, + "shadily": null, + "shadiness": [["M", "S"]], + "shadiness's": null, + "shadinesses": null, + "shading's": null, + "shadowbox": [["S", "D", "G"]], + "shadowboxes": null, + "shadowboxed": null, + "shadowboxing": null, + "shadower": [["M"]], + "shadower's": null, + "shadow": [["G", "S", "D", "R", "M"]], + "shadowing": null, + "shadows": null, + "shadowed": null, + "shadow's": null, + "shadowiness": [["M"]], + "shadowiness's": null, + "Shadow": [["M"]], + "Shadow's": null, + "shadowy": [["T", "R", "P"]], + "shadowiest": null, + "shadowier": null, + "shady": [["T", "R", "P"]], + "shadiest": null, + "shadier": null, + "Shae": [["M"]], + "Shae's": null, + "Shafer": [["M"]], + "Shafer's": null, + "Shaffer": [["M"]], + "Shaffer's": null, + "shafting": [["M"]], + "shafting's": null, + "shaft": [["S", "D", "M", "G"]], + "shafts": null, + "shafted": null, + "shaft's": null, + "shagged": null, + "shagginess": [["S", "M"]], + "shagginesses": null, + "shagginess's": null, + "shagging": null, + "shaggy": [["T", "P", "R"]], + "shaggiest": null, + "shaggier": null, + "shag": [["M", "S"]], + "shag's": null, + "shags": null, + "shah": [["M"]], + "shah's": null, + "shahs": null, + "Shaina": [["M"]], + "Shaina's": null, + "Shaine": [["M"]], + "Shaine's": null, + "shakable": [["U"]], + "unshakable": null, + "shakably": [["U"]], + "unshakably": null, + "shakeable": null, + "shakedown": [["S"]], + "shakedowns": null, + "shaken": [["U"]], + "unshaken": null, + "shakeout": [["S", "M"]], + "shakeouts": null, + "shakeout's": null, + "shaker": [["M"]], + "shaker's": null, + "Shaker": [["S"]], + "Shakers": null, + "Shakespearean": [["S"]], + "Shakespeareans": null, + "Shakespeare": [["M"]], + "Shakespeare's": null, + "Shakespearian": null, + "shake": [["S", "R", "G", "Z", "B"]], + "shakes": null, + "shaking": [["M"]], + "shakers": null, + "shakeup": [["S"]], + "shakeups": null, + "shakily": null, + "shakiness": [["S"]], + "shakinesses": null, + "shaking's": null, + "shaky": [["T", "P", "R"]], + "shakiest": null, + "shakier": null, + "shale": [["S", "M"]], + "shales": null, + "shale's": null, + "shall": null, + "shallot": [["S", "M"]], + "shallots": null, + "shallot's": null, + "shallowness": [["S", "M"]], + "shallownesses": null, + "shallowness's": null, + "shallow": [["S", "T", "P", "G", "D", "R", "Y"]], + "shallows": null, + "shallowest": null, + "shallowing": null, + "shallowed": null, + "shallower": null, + "shallowly": null, + "Shalna": [["M"]], + "Shalna's": null, + "Shalne": [["M"]], + "Shalne's": null, + "shalom": null, + "Shalom": [["M"]], + "Shalom's": null, + "shalt": null, + "shamanic": null, + "shaman": [["S", "M"]], + "shamans": null, + "shaman's": null, + "shamble": [["D", "S", "G"]], + "shambled": null, + "shambles": [["M"]], + "shambling": null, + "shambles's": null, + "shamefaced": [["Y"]], + "shamefacedly": null, + "shamefulness": [["S"]], + "shamefulnesses": null, + "shameful": [["Y", "P"]], + "shamefully": null, + "shamelessness": [["S", "M"]], + "shamelessnesses": null, + "shamelessness's": null, + "shameless": [["P", "Y"]], + "shamelessly": null, + "shame": [["S", "M"]], + "shames": null, + "shame's": null, + "sham": [["M", "D", "S", "G"]], + "sham's": null, + "shamed": null, + "shams": null, + "shaming": null, + "shammed": null, + "shammer": null, + "shamming": null, + "shammy's": null, + "shampoo": [["D", "R", "S", "M", "Z", "G"]], + "shampooed": null, + "shampooer": [["M"]], + "shampoos": null, + "shampoo's": null, + "shampooers": null, + "shampooing": null, + "shampooer's": null, + "shamrock": [["S", "M"]], + "shamrocks": null, + "shamrock's": null, + "Shamus": [["M"]], + "Shamus's": null, + "Shana": [["M"]], + "Shana's": null, + "Shanan": [["M"]], + "Shanan's": null, + "Shanda": [["M"]], + "Shanda's": null, + "Shandee": [["M"]], + "Shandee's": null, + "Shandeigh": [["M"]], + "Shandeigh's": null, + "Shandie": [["M"]], + "Shandie's": null, + "Shandra": [["M"]], + "Shandra's": null, + "shandy": [["M"]], + "shandy's": null, + "Shandy": [["M"]], + "Shandy's": null, + "Shane": [["M"]], + "Shane's": null, + "Shanghai": [["G", "M"]], + "Shanghaiing": [["M"]], + "Shanghai's": null, + "Shanghaiing's": null, + "shanghai": [["S", "D", "G"]], + "shanghais": null, + "shanghaied": null, + "shanghaiing": null, + "Shanie": [["M"]], + "Shanie's": null, + "Shani": [["M"]], + "Shani's": null, + "shank": [["S", "M", "D", "G"]], + "shanks": null, + "shank's": null, + "shanked": null, + "shanking": null, + "Shannah": [["M"]], + "Shannah's": null, + "Shanna": [["M"]], + "Shanna's": null, + "Shannan": [["M"]], + "Shannan's": null, + "Shannen": [["M"]], + "Shannen's": null, + "Shannon": [["M"]], + "Shannon's": null, + "Shanon": [["M"]], + "Shanon's": null, + "shan't": null, + "Shanta": [["M"]], + "Shanta's": null, + "Shantee": [["M"]], + "Shantee's": null, + "shantis": null, + "Shantung": [["M"]], + "Shantung's": null, + "shantung": [["M", "S"]], + "shantung's": null, + "shantungs": null, + "shanty": [["S", "M"]], + "shanties": null, + "shanty's": null, + "shantytown": [["S", "M"]], + "shantytowns": null, + "shantytown's": null, + "shape": [["A", "G", "D", "S", "R"]], + "reshape": null, + "reshaping": null, + "reshaped": null, + "reshapes": null, + "reshaper": null, + "shaping": null, + "shaped": [["U"]], + "shapes": null, + "shaper": [["S"]], + "unshaped": null, + "shapelessness": [["S", "M"]], + "shapelessnesses": null, + "shapelessness's": null, + "shapeless": [["P", "Y"]], + "shapelessly": null, + "shapeliness": [["S"]], + "shapelinesses": null, + "shapely": [["R", "P", "T"]], + "shapelier": null, + "shapeliest": null, + "shapers": null, + "shape's": null, + "Shapiro": [["M"]], + "Shapiro's": null, + "sharable": [["U"]], + "unsharable": null, + "Sharai": [["M"]], + "Sharai's": null, + "Shara": [["M"]], + "Shara's": null, + "shard": [["S", "M"]], + "shards": null, + "shard's": null, + "shareable": null, + "sharecropped": null, + "sharecropper": [["M", "S"]], + "sharecropper's": null, + "sharecroppers": null, + "sharecropping": null, + "sharecrop": [["S"]], + "sharecrops": null, + "share": [["D", "S", "R", "G", "Z", "M", "B"]], + "shared": [["U"]], + "shares": null, + "sharer": [["M"]], + "sharing": null, + "sharers": null, + "share's": null, + "unshared": null, + "shareholder": [["M", "S"]], + "shareholder's": null, + "shareholders": null, + "shareholding": [["S"]], + "shareholdings": null, + "sharer's": null, + "shareware": [["S"]], + "sharewares": null, + "Shari'a": null, + "Sharia": [["M"]], + "Sharia's": null, + "sharia": [["S", "M"]], + "sharias": null, + "sharia's": null, + "Shari": [["M"]], + "Shari's": null, + "Sharity": [["M"]], + "Sharity's": null, + "shark": [["S", "G", "M", "D"]], + "sharks": null, + "sharking": null, + "shark's": null, + "sharked": null, + "sharkskin": [["S", "M"]], + "sharkskins": null, + "sharkskin's": null, + "Sharla": [["M"]], + "Sharla's": null, + "Sharleen": [["M"]], + "Sharleen's": null, + "Sharlene": [["M"]], + "Sharlene's": null, + "Sharline": [["M"]], + "Sharline's": null, + "Sharl": [["M"]], + "Sharl's": null, + "Sharona": [["M"]], + "Sharona's": null, + "Sharon": [["M"]], + "Sharon's": null, + "Sharpe": [["M"]], + "Sharpe's": null, + "sharpen": [["A", "S", "G", "D"]], + "resharpen": null, + "resharpens": null, + "resharpening": null, + "resharpened": null, + "sharpens": null, + "sharpening": null, + "sharpened": [["U"]], + "unsharpened": null, + "sharpener": [["S"]], + "sharpeners": null, + "sharper": [["M"]], + "sharper's": null, + "sharpie": [["S", "M"]], + "sharpies": null, + "sharpie's": null, + "Sharp": [["M"]], + "Sharp's": null, + "sharpness": [["M", "S"]], + "sharpness's": null, + "sharpnesses": null, + "sharp": [["S", "G", "T", "Z", "X", "P", "Y", "R", "D", "N"]], + "sharps": null, + "sharping": null, + "sharpest": null, + "sharpers": null, + "sharply": null, + "sharped": null, + "sharpshooter": [["M"]], + "sharpshooter's": null, + "sharpshooting": [["M"]], + "sharpshooting's": null, + "sharpshoot": [["J", "R", "G", "Z"]], + "sharpshootings": null, + "sharpshooters": null, + "sharpy's": null, + "Sharron": [["M"]], + "Sharron's": null, + "Sharyl": [["M"]], + "Sharyl's": null, + "Shasta": [["M"]], + "Shasta's": null, + "shat": null, + "shatter": [["D", "S", "G"]], + "shattered": null, + "shatters": null, + "shattering": [["Y"]], + "shatteringly": null, + "shatterproof": null, + "Shaughn": [["M"]], + "Shaughn's": null, + "Shaula": [["M"]], + "Shaula's": null, + "Shauna": [["M"]], + "Shauna's": null, + "Shaun": [["M"]], + "Shaun's": null, + "shave": [["D", "S", "R", "J", "G", "Z"]], + "shaved": [["U"]], + "shaves": null, + "shaver": [["M"]], + "shavings": null, + "shaving": [["M"]], + "shavers": null, + "unshaved": null, + "shaver's": null, + "Shavian": null, + "shaving's": null, + "Shavuot": [["M"]], + "Shavuot's": null, + "Shawano": [["M"]], + "Shawano's": null, + "shawl": [["S", "D", "M", "G"]], + "shawls": null, + "shawled": null, + "shawl's": null, + "shawling": null, + "shaw": [["M"]], + "shaw's": null, + "Shaw": [["M"]], + "Shaw's": null, + "Shawna": [["M"]], + "Shawna's": null, + "Shawnee": [["S", "M"]], + "Shawnees": null, + "Shawnee's": null, + "Shawn": [["M"]], + "Shawn's": null, + "Shaylah": [["M"]], + "Shaylah's": null, + "Shayla": [["M"]], + "Shayla's": null, + "Shaylyn": [["M"]], + "Shaylyn's": null, + "Shaylynn": [["M"]], + "Shaylynn's": null, + "Shay": [["M"]], + "Shay's": null, + "shay": [["M", "S"]], + "shay's": null, + "shays": null, + "Shayna": [["M"]], + "Shayna's": null, + "Shayne": [["M"]], + "Shayne's": null, + "Shcharansky": [["M"]], + "Shcharansky's": null, + "sh": [["D", "R", "S"]], + "shed": [["U"]], + "sher": null, + "shes": null, + "sheaf": [["M", "D", "G", "S"]], + "sheaf's": null, + "sheafed": null, + "sheafing": null, + "sheafs": null, + "Shea": [["M"]], + "Shea's": null, + "shearer": [["M"]], + "shearer's": null, + "shear": [["R", "D", "G", "Z", "S"]], + "sheared": null, + "shearing": null, + "shearers": null, + "shears": null, + "sheather": [["M"]], + "sheather's": null, + "sheathe": [["U", "G", "S", "D"]], + "unsheathe": null, + "unsheathing": null, + "unsheathes": null, + "unsheathed": null, + "sheathing": [["M"]], + "sheathes": null, + "sheathed": null, + "sheath": [["G", "J", "M", "D", "R", "S"]], + "sheathings": null, + "sheath's": null, + "sheathing's": null, + "sheaths": null, + "sheave": [["S", "D", "G"]], + "sheaves": [["M"]], + "sheaved": null, + "sheaving": null, + "sheaves's": null, + "Sheba": [["M"]], + "Sheba's": null, + "shebang": [["M", "S"]], + "shebang's": null, + "shebangs": null, + "Shebeli": [["M"]], + "Shebeli's": null, + "Sheboygan": [["M"]], + "Sheboygan's": null, + "she'd": null, + "shedding": null, + "Shedir": [["M"]], + "Shedir's": null, + "sheds": null, + "shed's": null, + "unshed": null, + "Sheelagh": [["M"]], + "Sheelagh's": null, + "Sheelah": [["M"]], + "Sheelah's": null, + "Sheela": [["M"]], + "Sheela's": null, + "Sheena": [["M"]], + "Sheena's": null, + "sheen": [["M", "D", "G", "S"]], + "sheen's": null, + "sheened": null, + "sheening": null, + "sheens": null, + "sheeny": [["T", "R", "S", "M"]], + "sheeniest": null, + "sheenier": null, + "sheenies": null, + "sheeny's": null, + "sheepdog": [["S", "M"]], + "sheepdogs": null, + "sheepdog's": null, + "sheepfold": [["M", "S"]], + "sheepfold's": null, + "sheepfolds": null, + "sheepherder": [["M", "S"]], + "sheepherder's": null, + "sheepherders": null, + "sheepishness": [["S", "M"]], + "sheepishnesses": null, + "sheepishness's": null, + "sheepish": [["Y", "P"]], + "sheepishly": null, + "sheep": [["M"]], + "sheep's": null, + "sheepskin": [["S", "M"]], + "sheepskins": null, + "sheepskin's": null, + "Sheeree": [["M"]], + "Sheeree's": null, + "sheerness": [["S"]], + "sheernesses": null, + "sheer": [["P", "G", "T", "Y", "R", "D", "S"]], + "sheering": null, + "sheerest": null, + "sheerly": null, + "sheerer": null, + "sheered": null, + "sheers": null, + "sheeting": [["M"]], + "sheeting's": null, + "sheetlike": null, + "sheet": [["R", "D", "M", "J", "S", "G"]], + "sheeter": null, + "sheeted": null, + "sheet's": null, + "sheetings": null, + "sheets": null, + "Sheetrock": null, + "Sheffielder": [["M"]], + "Sheffielder's": null, + "Sheffield": [["R", "M", "Z"]], + "Sheffield's": null, + "Sheffielders": null, + "Sheffie": [["M"]], + "Sheffie's": null, + "Sheff": [["M"]], + "Sheff's": null, + "Sheffy": [["M"]], + "Sheffy's": null, + "sheikdom": [["S", "M"]], + "sheikdoms": null, + "sheikdom's": null, + "sheikh's": null, + "sheik": [["S", "M"]], + "sheiks": null, + "sheik's": null, + "Sheilah": [["M"]], + "Sheilah's": null, + "Sheila": [["M"]], + "Sheila's": null, + "shekel": [["M", "S"]], + "shekel's": null, + "shekels": null, + "Shelagh": [["M"]], + "Shelagh's": null, + "Shela": [["M"]], + "Shela's": null, + "Shelba": [["M"]], + "Shelba's": null, + "Shelbi": [["M"]], + "Shelbi's": null, + "Shelby": [["M"]], + "Shelby's": null, + "Shelden": [["M"]], + "Shelden's": null, + "Sheldon": [["M"]], + "Sheldon's": null, + "shelf": [["M", "D", "G", "S"]], + "shelf's": null, + "shelfed": null, + "shelfing": null, + "shelfs": null, + "Shelia": [["M"]], + "Shelia's": null, + "she'll": null, + "shellacked": null, + "shellacking": [["M", "S"]], + "shellacking's": null, + "shellackings": null, + "shellac": [["S"]], + "shellacs": null, + "shelled": [["U"]], + "unshelled": null, + "Shelley": [["M"]], + "Shelley's": null, + "shellfire": [["S", "M"]], + "shellfires": null, + "shellfire's": null, + "shellfish": [["S", "M"]], + "shellfishes": null, + "shellfish's": null, + "Shellie": [["M"]], + "Shellie's": null, + "Shelli": [["M"]], + "Shelli's": null, + "Shell": [["M"]], + "Shell's": null, + "shell": [["R", "D", "M", "G", "S"]], + "sheller": null, + "shell's": null, + "shelling": null, + "shells": null, + "Shelly": [["M"]], + "Shelly's": null, + "Shel": [["M", "Y"]], + "Shel's": null, + "shelter": [["D", "R", "M", "G", "S"]], + "sheltered": [["U"]], + "shelterer": [["M"]], + "shelter's": null, + "sheltering": null, + "shelters": null, + "unsheltered": null, + "shelterer's": null, + "Shelton": [["M"]], + "Shelton's": null, + "shelve": [["J", "R", "S", "D", "G"]], + "shelvings": null, + "shelver": [["M"]], + "shelves": [["M"]], + "shelved": null, + "shelving": [["M"]], + "shelver's": null, + "shelves's": null, + "shelving's": null, + "she": [["M"]], + "she's": null, + "Shem": [["M"]], + "Shem's": null, + "Shena": [["M"]], + "Shena's": null, + "Shenandoah": [["M"]], + "Shenandoah's": null, + "shenanigan": [["S", "M"]], + "shenanigans": null, + "shenanigan's": null, + "Shenyang": [["M"]], + "Shenyang's": null, + "Sheol": [["M"]], + "Sheol's": null, + "Shepard": [["M"]], + "Shepard's": null, + "shepherd": [["D", "M", "S", "G"]], + "shepherded": null, + "shepherd's": null, + "shepherds": null, + "shepherding": null, + "shepherdess": [["S"]], + "shepherdesses": null, + "Shepherd": [["M"]], + "Shepherd's": null, + "Shep": [["M"]], + "Shep's": null, + "Sheppard": [["M"]], + "Sheppard's": null, + "Shepperd": [["M"]], + "Shepperd's": null, + "Sheratan": [["M"]], + "Sheratan's": null, + "Sheraton": [["M"]], + "Sheraton's": null, + "sherbet": [["M", "S"]], + "sherbet's": null, + "sherbets": null, + "sherd's": null, + "Sheree": [["M"]], + "Sheree's": null, + "Sheridan": [["M"]], + "Sheridan's": null, + "Sherie": [["M"]], + "Sherie's": null, + "sheriff": [["S", "M"]], + "sheriffs": null, + "sheriff's": null, + "Sherill": [["M"]], + "Sherill's": null, + "Sherilyn": [["M"]], + "Sherilyn's": null, + "Sheri": [["M"]], + "Sheri's": null, + "Sherline": [["M"]], + "Sherline's": null, + "Sherlocke": [["M"]], + "Sherlocke's": null, + "sherlock": [["M"]], + "sherlock's": null, + "Sherlock": [["M"]], + "Sherlock's": null, + "Sher": [["M"]], + "Sher's": null, + "Sherman": [["M"]], + "Sherman's": null, + "Shermie": [["M"]], + "Shermie's": null, + "Sherm": [["M"]], + "Sherm's": null, + "Shermy": [["M"]], + "Shermy's": null, + "Sherpa": [["S", "M"]], + "Sherpas": null, + "Sherpa's": null, + "Sherrie": [["M"]], + "Sherrie's": null, + "Sherri": [["M"]], + "Sherri's": null, + "Sherry": [["M"]], + "Sherry's": null, + "sherry": [["M", "S"]], + "sherry's": null, + "sherries": null, + "Sherwin": [["M"]], + "Sherwin's": null, + "Sherwood": [["M"]], + "Sherwood's": null, + "Sherwynd": [["M"]], + "Sherwynd's": null, + "Sherye": [["M"]], + "Sherye's": null, + "Sheryl": [["M"]], + "Sheryl's": null, + "Shetland": [["S"]], + "Shetlands": null, + "Shevardnadze": [["M"]], + "Shevardnadze's": null, + "shew": [["G", "S", "D"]], + "shewing": null, + "shews": null, + "shewed": null, + "shewn": null, + "shh": null, + "shiatsu": [["S"]], + "shiatsus": null, + "shibboleth": [["M"]], + "shibboleth's": null, + "shibboleths": null, + "shielded": [["U"]], + "unshielded": null, + "shielder": [["M"]], + "shielder's": null, + "shield": [["M", "D", "R", "S", "G"]], + "shield's": null, + "shields": null, + "shielding": null, + "Shields": [["M"]], + "Shields's": null, + "shiftily": null, + "shiftiness": [["S", "M"]], + "shiftinesses": null, + "shiftiness's": null, + "shiftlessness": [["S"]], + "shiftlessnesses": null, + "shiftless": [["P", "Y"]], + "shiftlessly": null, + "shift": [["R", "D", "G", "Z", "S"]], + "shifter": null, + "shifted": null, + "shifting": null, + "shifters": null, + "shifts": null, + "shifty": [["T", "R", "P"]], + "shiftiest": null, + "shiftier": null, + "Shi'ite": null, + "Shiite": [["S", "M"]], + "Shiites": null, + "Shiite's": null, + "Shijiazhuang": null, + "Shikoku": [["M"]], + "Shikoku's": null, + "shill": [["D", "J", "S", "G"]], + "shilled": null, + "shillings": null, + "shills": null, + "shilling": [["M"]], + "shillelagh": [["M"]], + "shillelagh's": null, + "shillelaghs": null, + "shilling's": null, + "Shillong": [["M"]], + "Shillong's": null, + "Shiloh": [["M"]], + "Shiloh's": null, + "shimmed": null, + "shimmer": [["D", "G", "S"]], + "shimmered": null, + "shimmering": null, + "shimmers": null, + "shimmery": null, + "shimming": null, + "shimmy": [["D", "S", "M", "G"]], + "shimmied": null, + "shimmies": null, + "shimmy's": null, + "shimmying": null, + "shim": [["S", "M"]], + "shims": null, + "shim's": null, + "Shina": [["M"]], + "Shina's": null, + "shinbone": [["S", "M"]], + "shinbones": null, + "shinbone's": null, + "shindig": [["M", "S"]], + "shindig's": null, + "shindigs": null, + "shiner": [["M"]], + "shiner's": null, + "shine": [["S"]], + "shines": null, + "shingle": [["M", "D", "R", "S", "G"]], + "shingle's": null, + "shingled": null, + "shingler": [["M"]], + "shingles": null, + "shingling": null, + "shingler's": null, + "shinguard": null, + "shininess": [["M", "S"]], + "shininess's": null, + "shininesses": null, + "shining": [["Y"]], + "shiningly": null, + "shinned": null, + "shinning": null, + "shinny": [["G", "D", "S", "M"]], + "shinnying": null, + "shinnied": null, + "shinnies": null, + "shinny's": null, + "shin": [["S", "G", "Z", "D", "R", "M"]], + "shins": null, + "shiners": null, + "shined": null, + "shin's": null, + "shinsplints": null, + "Shintoism": [["S"]], + "Shintoisms": null, + "Shintoist": [["M", "S"]], + "Shintoist's": null, + "Shintoists": null, + "Shinto": [["M", "S"]], + "Shinto's": null, + "Shintos": null, + "shiny": [["P", "R", "T"]], + "shinier": null, + "shiniest": null, + "shipboard": [["M", "S"]], + "shipboard's": null, + "shipboards": null, + "shipborne": null, + "shipbuilder": [["M"]], + "shipbuilder's": null, + "shipbuild": [["R", "G", "Z", "J"]], + "shipbuilding": null, + "shipbuilders": null, + "shipbuildings": null, + "shipload": [["S", "M"]], + "shiploads": null, + "shipload's": null, + "shipman": [["M"]], + "shipman's": null, + "shipmate": [["S", "M"]], + "shipmates": null, + "shipmate's": null, + "shipmen": null, + "shipment": [["A", "M", "S"]], + "reshipment": null, + "reshipment's": null, + "reshipments": null, + "shipment's": null, + "shipments": null, + "shipowner": [["M", "S"]], + "shipowner's": null, + "shipowners": null, + "shippable": null, + "shipped": [["A"]], + "reshipped": null, + "shipper": [["S", "M"]], + "shippers": null, + "shipper's": null, + "shipping": [["M", "S"]], + "shipping's": null, + "shippings": null, + "ship's": null, + "shipshape": null, + "ship": [["S", "L", "A"]], + "ships": null, + "reships": null, + "reship": null, + "shipwreck": [["G", "S", "M", "D"]], + "shipwrecking": null, + "shipwrecks": null, + "shipwreck's": null, + "shipwrecked": null, + "shipwright": [["M", "S"]], + "shipwright's": null, + "shipwrights": null, + "shipyard": [["M", "S"]], + "shipyard's": null, + "shipyards": null, + "Shiraz": [["M"]], + "Shiraz's": null, + "shire": [["M", "S"]], + "shire's": null, + "shires": null, + "shirker": [["M"]], + "shirker's": null, + "shirk": [["R", "D", "G", "Z", "S"]], + "shirked": null, + "shirking": null, + "shirkers": null, + "shirks": null, + "Shirlee": [["M"]], + "Shirlee's": null, + "Shirleen": [["M"]], + "Shirleen's": null, + "Shirlene": [["M"]], + "Shirlene's": null, + "Shirley": [["M"]], + "Shirley's": null, + "Shirline": [["M"]], + "Shirline's": null, + "Shirl": [["M"]], + "Shirl's": null, + "Shir": [["M"]], + "Shir's": null, + "shirr": [["G", "J", "D", "S"]], + "shirring": null, + "shirrings": null, + "shirred": null, + "shirrs": null, + "shirtfront": [["S"]], + "shirtfronts": null, + "shirting": [["M"]], + "shirting's": null, + "shirt": [["J", "D", "M", "S", "G"]], + "shirtings": null, + "shirted": null, + "shirt's": null, + "shirts": null, + "shirtless": null, + "shirtmake": [["R"]], + "shirtmaker": [["M"]], + "shirtmaker's": null, + "shirtsleeve": [["M", "S"]], + "shirtsleeve's": null, + "shirtsleeves": null, + "shirttail": [["S"]], + "shirttails": null, + "shirtwaist": [["S", "M"]], + "shirtwaists": null, + "shirtwaist's": null, + "shit": [["S", "!"]], + "shits": null, + "shitting": [["!"]], + "shitty": [["R", "T", "!"]], + "shittier": null, + "shittiest": null, + "Shiva": [["M"]], + "Shiva's": null, + "shiverer": [["M"]], + "shiverer's": null, + "shiver": [["G", "D", "R"]], + "shivering": null, + "shivered": null, + "shivery": null, + "shiv": [["S", "Z", "R", "M"]], + "shivs": null, + "shivers": null, + "shiv's": null, + "shivved": null, + "shivving": null, + "shlemiel's": null, + "Shmuel": [["M"]], + "Shmuel's": null, + "shoal": [["S", "R", "D", "M", "G", "T"]], + "shoals": null, + "shoaler": null, + "shoaled": null, + "shoal's": null, + "shoaling": null, + "shoalest": null, + "shoat": [["S", "M"]], + "shoats": null, + "shoat's": null, + "shocker": [["M"]], + "shocker's": null, + "shocking": [["Y"]], + "shockingly": null, + "Shockley": [["M"]], + "Shockley's": null, + "shockproof": null, + "shock": [["S", "G", "Z", "R", "D"]], + "shocks": null, + "shockers": null, + "shocked": null, + "shoddily": null, + "shoddiness": [["S", "M"]], + "shoddinesses": null, + "shoddiness's": null, + "shoddy": [["R", "S", "T", "P"]], + "shoddier": null, + "shoddies": null, + "shoddiest": null, + "shod": [["U"]], + "unshod": null, + "shoehorn": [["G", "S", "M", "D"]], + "shoehorning": null, + "shoehorns": null, + "shoehorn's": null, + "shoehorned": null, + "shoeing": null, + "shoelace": [["M", "S"]], + "shoelace's": null, + "shoelaces": null, + "shoemaker": [["M"]], + "shoemaker's": null, + "shoemake": [["R", "Z"]], + "shoemakers": null, + "shoe": [["M", "S"]], + "shoe's": null, + "shoes": null, + "shoer's": null, + "shoeshine": [["M", "S"]], + "shoeshine's": null, + "shoeshines": null, + "shoestring": [["M", "S"]], + "shoestring's": null, + "shoestrings": null, + "shoetree": [["M", "S"]], + "shoetree's": null, + "shoetrees": null, + "shogunate": [["S", "M"]], + "shogunates": null, + "shogunate's": null, + "shogun": [["M", "S"]], + "shogun's": null, + "shoguns": null, + "Shoji": [["M"]], + "Shoji's": null, + "Sholom": [["M"]], + "Sholom's": null, + "shone": null, + "shoo": [["D", "S", "G"]], + "shooed": null, + "shoos": null, + "shooing": null, + "shoofly": null, + "shook": [["S", "M"]], + "shooks": null, + "shook's": null, + "shooter": [["M"]], + "shooter's": null, + "shootout": [["M", "S"]], + "shootout's": null, + "shootouts": null, + "shoot": [["S", "J", "R", "G", "Z"]], + "shoots": null, + "shootings": null, + "shooting": null, + "shooters": null, + "shopkeeper": [["M"]], + "shopkeeper's": null, + "shopkeep": [["R", "G", "Z"]], + "shopkeeping": null, + "shopkeepers": null, + "shoplifter": [["M"]], + "shoplifter's": null, + "shoplifting": [["M"]], + "shoplifting's": null, + "shoplift": [["S", "R", "D", "G", "Z"]], + "shoplifts": null, + "shoplifted": null, + "shoplifters": null, + "shop": [["M", "S"]], + "shop's": null, + "shops": null, + "shopped": [["M"]], + "shopped's": null, + "shopper": [["M"]], + "shopper's": null, + "shoppe": [["R", "S", "D", "G", "Z", "J"]], + "shoppes": null, + "shopping": [["M"]], + "shoppers": null, + "shoppings": null, + "shopping's": null, + "shoptalk": [["S", "M"]], + "shoptalks": null, + "shoptalk's": null, + "shopworn": null, + "shorebird": [["S"]], + "shorebirds": null, + "shore": [["D", "S", "R", "G", "M", "J"]], + "shored": null, + "shores": null, + "shorer": null, + "shoring": [["M"]], + "shore's": null, + "shorings": null, + "shoreline": [["S", "M"]], + "shorelines": null, + "shoreline's": null, + "Shorewood": [["M"]], + "Shorewood's": null, + "shoring's": null, + "shortage": [["M", "S"]], + "shortage's": null, + "shortages": null, + "shortbread": [["M", "S"]], + "shortbread's": null, + "shortbreads": null, + "shortcake": [["S", "M"]], + "shortcakes": null, + "shortcake's": null, + "shortchange": [["D", "S", "G"]], + "shortchanged": null, + "shortchanges": null, + "shortchanging": null, + "shortcoming": [["M", "S"]], + "shortcoming's": null, + "shortcomings": null, + "shortcrust": null, + "shortcut": [["M", "S"]], + "shortcut's": null, + "shortcuts": null, + "shortcutting": null, + "shortener": [["M"]], + "shortener's": null, + "shortening": [["M"]], + "shortening's": null, + "shorten": [["R", "D", "G", "J"]], + "shortened": null, + "shortenings": null, + "shortfall": [["S", "M"]], + "shortfalls": null, + "shortfall's": null, + "shorthand": [["D", "M", "S"]], + "shorthanded": null, + "shorthand's": null, + "shorthands": null, + "Shorthorn": [["M"]], + "Shorthorn's": null, + "shorthorn": [["M", "S"]], + "shorthorn's": null, + "shorthorns": null, + "shortie's": null, + "shortish": null, + "shortlist": [["G", "D"]], + "shortlisting": null, + "shortlisted": null, + "Short": [["M"]], + "Short's": null, + "shortness": [["M", "S"]], + "shortness's": null, + "shortnesses": null, + "short": [["S", "G", "T", "X", "Y", "R", "D", "N", "P"]], + "shorts": null, + "shorting": null, + "shortest": null, + "shortens": null, + "shortly": null, + "shorter": null, + "shorted": null, + "shortsightedness": [["S"]], + "shortsightednesses": null, + "shortsighted": [["Y", "P"]], + "shortsightedly": null, + "shortstop": [["M", "S"]], + "shortstop's": null, + "shortstops": null, + "shortwave": [["S", "M"]], + "shortwaves": null, + "shortwave's": null, + "shorty": [["S", "M"]], + "shorties": null, + "shorty's": null, + "Shoshana": [["M"]], + "Shoshana's": null, + "Shoshanna": [["M"]], + "Shoshanna's": null, + "Shoshone": [["S", "M"]], + "Shoshones": null, + "Shoshone's": null, + "Shostakovitch": [["M"]], + "Shostakovitch's": null, + "shotgunned": null, + "shotgunner": null, + "shotgunning": null, + "shotgun": [["S", "M"]], + "shotguns": null, + "shotgun's": null, + "shot": [["M", "S"]], + "shot's": null, + "shots": null, + "shotted": null, + "shotting": null, + "shoulder": [["G", "M", "D"]], + "shouldering": null, + "shoulder's": null, + "shouldered": null, + "shouldn't": null, + "should": [["T", "Z", "R"]], + "shouldest": null, + "shoulders": null, + "shout": [["S", "G", "Z", "R", "D", "M"]], + "shouts": null, + "shouting": null, + "shouters": null, + "shouter": null, + "shouted": null, + "shout's": null, + "shove": [["D", "S", "R", "G"]], + "shoved": null, + "shoves": null, + "shover": [["M"]], + "shoving": null, + "shoveler": [["M"]], + "shoveler's": null, + "shovelful": [["M", "S"]], + "shovelful's": null, + "shovelfuls": null, + "shovel": [["M", "D", "R", "S", "Z", "G"]], + "shovel's": null, + "shoveled": null, + "shovels": null, + "shovelers": null, + "shoveling": null, + "shover's": null, + "showbiz": null, + "showbizzes": null, + "showboat": [["S", "G", "D", "M"]], + "showboats": null, + "showboating": null, + "showboated": null, + "showboat's": null, + "showcase": [["M", "G", "S", "D"]], + "showcase's": null, + "showcasing": null, + "showcases": null, + "showcased": null, + "showdown": [["M", "S"]], + "showdown's": null, + "showdowns": null, + "shower": [["G", "D", "M"]], + "showering": null, + "showered": null, + "shower's": null, + "showery": [["T", "R"]], + "showeriest": null, + "showerier": null, + "show": [["G", "D", "R", "Z", "J", "S"]], + "showing": [["M"]], + "showed": null, + "showers": null, + "showings": null, + "shows": null, + "showgirl": [["S", "M"]], + "showgirls": null, + "showgirl's": null, + "showily": null, + "showiness": [["M", "S"]], + "showiness's": null, + "showinesses": null, + "showing's": null, + "showman": [["M"]], + "showman's": null, + "showmanship": [["S", "M"]], + "showmanships": null, + "showmanship's": null, + "showmen": null, + "shown": null, + "showoff": [["S"]], + "showoffs": null, + "showpiece": [["S", "M"]], + "showpieces": null, + "showpiece's": null, + "showplace": [["S", "M"]], + "showplaces": null, + "showplace's": null, + "showroom": [["M", "S"]], + "showroom's": null, + "showrooms": null, + "showy": [["R", "T", "P"]], + "showier": null, + "showiest": null, + "shpt": null, + "shrank": null, + "shrapnel": [["S", "M"]], + "shrapnels": null, + "shrapnel's": null, + "shredded": null, + "shredder": [["M", "S"]], + "shredder's": null, + "shredders": null, + "shredding": null, + "shred": [["M", "S"]], + "shred's": null, + "shreds": null, + "Shreveport": [["M"]], + "Shreveport's": null, + "shrewdness": [["S", "M"]], + "shrewdnesses": null, + "shrewdness's": null, + "shrewd": [["R", "Y", "T", "P"]], + "shrewder": null, + "shrewdly": null, + "shrewdest": null, + "shrew": [["G", "S", "M", "D"]], + "shrewing": null, + "shrews": null, + "shrew's": null, + "shrewed": null, + "shrewishness": [["M"]], + "shrewishness's": null, + "shrewish": [["P", "Y"]], + "shrewishly": null, + "shrieker": [["M"]], + "shrieker's": null, + "shriek": [["S", "G", "D", "R", "M", "Z"]], + "shrieks": null, + "shrieking": null, + "shrieked": null, + "shriek's": null, + "shriekers": null, + "shrift": [["S", "M"]], + "shrifts": null, + "shrift's": null, + "shrike": [["S", "M"]], + "shrikes": null, + "shrike's": null, + "shrill": [["D", "R", "T", "G", "P", "S"]], + "shrilled": null, + "shriller": null, + "shrillest": null, + "shrilling": null, + "shrillness": [["M", "S"]], + "shrills": null, + "shrillness's": null, + "shrillnesses": null, + "shrilly": null, + "shrimp": [["M", "D", "G", "S"]], + "shrimp's": null, + "shrimped": null, + "shrimping": null, + "shrimps": null, + "shrine": [["S", "D", "G", "M"]], + "shrines": null, + "shrined": null, + "shrining": null, + "shrine's": null, + "shrinkage": [["S", "M"]], + "shrinkages": null, + "shrinkage's": null, + "shrinker": [["M"]], + "shrinker's": null, + "shrinking": [["U"]], + "unshrinking": null, + "shrink": [["S", "R", "B", "G"]], + "shrinks": null, + "shrinkable": null, + "shrivel": [["G", "S", "D"]], + "shriveling": null, + "shrivels": null, + "shriveled": null, + "shriven": null, + "shrive": [["R", "S", "D", "G"]], + "shriver": null, + "shrives": null, + "shrived": null, + "shriving": null, + "Shropshire": [["M"]], + "Shropshire's": null, + "shroud": [["G", "S", "M", "D"]], + "shrouding": null, + "shrouds": null, + "shroud's": null, + "shrouded": null, + "shrubbed": null, + "shrubbery": [["S", "M"]], + "shrubberies": null, + "shrubbery's": null, + "shrubbing": null, + "shrubby": [["T", "R"]], + "shrubbiest": null, + "shrubbier": null, + "shrub": [["S", "M"]], + "shrubs": null, + "shrub's": null, + "shrugged": null, + "shrugging": null, + "shrug": [["S"]], + "shrugs": null, + "shrunk": [["N"]], + "shrunken": null, + "shtick": [["S"]], + "shticks": null, + "shucker": [["M"]], + "shucker's": null, + "shuck": [["S", "G", "M", "R", "D"]], + "shucks": [["S"]], + "shucking": null, + "shuck's": null, + "shucked": null, + "shuckses": null, + "shudder": [["D", "S", "G"]], + "shuddered": null, + "shudders": null, + "shuddering": null, + "shuddery": null, + "shuffleboard": [["M", "S"]], + "shuffleboard's": null, + "shuffleboards": null, + "shuffled": [["A"]], + "reshuffled": null, + "shuffle": [["G", "D", "S", "R", "Z"]], + "shuffling": [["A"]], + "shuffles": [["A"]], + "shuffler": null, + "shufflers": null, + "reshuffles": null, + "reshuffling": null, + "Shulman": [["M"]], + "Shulman's": null, + "Shu": [["M"]], + "Shu's": null, + "shunned": null, + "shunning": null, + "shun": [["S"]], + "shuns": null, + "shunter": [["M"]], + "shunter's": null, + "shunt": [["G", "S", "R", "D"]], + "shunting": null, + "shunts": null, + "shunted": null, + "Shurlocke": [["M"]], + "Shurlocke's": null, + "Shurlock": [["M"]], + "Shurlock's": null, + "Shurwood": [["M"]], + "Shurwood's": null, + "shush": [["S", "D", "G"]], + "shushes": null, + "shushed": null, + "shushing": null, + "shutdown": [["M", "S"]], + "shutdown's": null, + "shutdowns": null, + "shuteye": [["S", "M"]], + "shuteyes": null, + "shuteye's": null, + "shutoff": [["M"]], + "shutoff's": null, + "shutout": [["S", "M"]], + "shutouts": null, + "shutout's": null, + "shut": [["S"]], + "shuts": null, + "shutterbug": [["S"]], + "shutterbugs": null, + "shutter": [["D", "M", "G", "S"]], + "shuttered": null, + "shutter's": null, + "shuttering": [["M"]], + "shutters": null, + "shuttering's": null, + "shutting": null, + "shuttlecock": [["M", "D", "S", "G"]], + "shuttlecock's": null, + "shuttlecocked": null, + "shuttlecocks": null, + "shuttlecocking": null, + "shuttle": [["M", "G", "D", "S"]], + "shuttle's": null, + "shuttling": null, + "shuttled": null, + "shuttles": null, + "shy": [["D", "R", "S", "G", "T", "Z", "Y"]], + "shied": null, + "shier": null, + "shies": null, + "shying": null, + "shiest": null, + "shiers": null, + "shyly": null, + "shyer": null, + "shyest": null, + "Shylockian": [["M"]], + "Shylockian's": null, + "Shylock": [["M"]], + "Shylock's": null, + "shyness": [["S", "M"]], + "shynesses": null, + "shyness's": null, + "shyster": [["S", "M"]], + "shysters": null, + "shyster's": null, + "Siamese": [["M"]], + "Siamese's": null, + "Siam": [["M"]], + "Siam's": null, + "Siana": [["M"]], + "Siana's": null, + "Sianna": [["M"]], + "Sianna's": null, + "Sian's": null, + "Sibbie": [["M"]], + "Sibbie's": null, + "Sibby": [["M"]], + "Sibby's": null, + "Sibeal": [["M"]], + "Sibeal's": null, + "Sibelius": [["M"]], + "Sibelius's": null, + "Sibella": [["M"]], + "Sibella's": null, + "Sibelle": [["M"]], + "Sibelle's": null, + "Sibel": [["M"]], + "Sibel's": null, + "Siberia": [["M"]], + "Siberia's": null, + "Siberian": [["S"]], + "Siberians": null, + "sibilance": [["M"]], + "sibilance's": null, + "sibilancy": [["M"]], + "sibilancy's": null, + "sibilant": [["S", "Y"]], + "sibilants": null, + "sibilantly": null, + "Sibilla": [["M"]], + "Sibilla's": null, + "Sibley": [["M"]], + "Sibley's": null, + "sibling": [["S", "M"]], + "siblings": null, + "sibling's": null, + "Sib": [["M"]], + "Sib's": null, + "Sibylla": [["M"]], + "Sibylla's": null, + "Sibylle": [["M"]], + "Sibylle's": null, + "sibylline": null, + "Sibyl": [["M"]], + "Sibyl's": null, + "sibyl": [["S", "M"]], + "sibyls": null, + "sibyl's": null, + "Siciliana": [["M"]], + "Siciliana's": null, + "Sicilian": [["S"]], + "Sicilians": null, + "Sicily": [["M"]], + "Sicily's": null, + "sickbay": [["M"]], + "sickbay's": null, + "sickbed": [["S"]], + "sickbeds": null, + "sickener": [["M"]], + "sickener's": null, + "sickening": [["Y"]], + "sickeningly": null, + "sicken": [["J", "R", "D", "G"]], + "sickenings": null, + "sickened": null, + "sicker": [["Y"]], + "sickerly": null, + "sick": [["G", "X", "T", "Y", "N", "D", "R", "S", "P"]], + "sicking": null, + "sickens": null, + "sickest": null, + "sickly": [["T", "R", "S", "D", "P", "G"]], + "sicked": null, + "sicks": null, + "sickness": [["M", "S"]], + "sickie": [["S", "M"]], + "sickies": null, + "sickie's": null, + "sickish": [["P", "Y"]], + "sickishness": null, + "sickishly": null, + "sickle": [["S", "D", "G", "M"]], + "sickles": null, + "sickled": null, + "sickling": null, + "sickle's": null, + "sickliness": [["M"]], + "sickliness's": null, + "sickliest": null, + "sicklier": null, + "sicklies": null, + "sicklied": null, + "sicklying": null, + "sickness's": null, + "sicknesses": null, + "sicko": [["S"]], + "sickos": null, + "sickout": [["S"]], + "sickouts": null, + "sickroom": [["S", "M"]], + "sickrooms": null, + "sickroom's": null, + "sic": [["S"]], + "sics": null, + "sidearm": [["S"]], + "sidearms": null, + "sideband": [["M", "S"]], + "sideband's": null, + "sidebands": null, + "sidebar": [["M", "S"]], + "sidebar's": null, + "sidebars": null, + "sideboard": [["S", "M"]], + "sideboards": null, + "sideboard's": null, + "sideburns": null, + "sidecar": [["M", "S"]], + "sidecar's": null, + "sidecars": null, + "sided": [["A"]], + "resided": null, + "sidedness": null, + "side": [["I", "S", "R", "M"]], + "insides": null, + "inside's": null, + "sides": [["A"]], + "sider": [["F", "A"]], + "side's": null, + "sidekick": [["M", "S"]], + "sidekick's": null, + "sidekicks": null, + "sidelight": [["S", "M"]], + "sidelights": null, + "sidelight's": null, + "sideline": [["M", "G", "D", "R", "S"]], + "sideline's": null, + "sidelining": null, + "sidelined": null, + "sideliner": null, + "sidelines": null, + "sidelong": null, + "sideman": [["M"]], + "sideman's": null, + "sidemen": null, + "sidepiece": [["S"]], + "sidepieces": null, + "sidereal": null, + "resides": null, + "sidesaddle": [["M", "S"]], + "sidesaddle's": null, + "sidesaddles": null, + "sideshow": [["M", "S"]], + "sideshow's": null, + "sideshows": null, + "sidesplitting": null, + "sidestepped": null, + "sidestepping": null, + "sidestep": [["S"]], + "sidesteps": null, + "sidestroke": [["G", "M", "S", "D"]], + "sidestroking": null, + "sidestroke's": null, + "sidestrokes": null, + "sidestroked": null, + "sideswipe": [["G", "S", "D", "M"]], + "sideswiping": null, + "sideswipes": null, + "sideswiped": null, + "sideswipe's": null, + "sidetrack": [["S", "D", "G"]], + "sidetracks": null, + "sidetracked": null, + "sidetracking": null, + "sidewalk": [["M", "S"]], + "sidewalk's": null, + "sidewalks": null, + "sidewall": [["M", "S"]], + "sidewall's": null, + "sidewalls": null, + "sidewards": null, + "sideway": [["S", "M"]], + "sideways": null, + "sideway's": null, + "sidewinder": [["S", "M"]], + "sidewinders": null, + "sidewinder's": null, + "siding": [["S", "M"]], + "sidings": null, + "siding's": null, + "sidle": [["D", "S", "G"]], + "sidled": null, + "sidles": null, + "sidling": null, + "Sid": [["M"]], + "Sid's": null, + "Sidnee": [["M"]], + "Sidnee's": null, + "Sidney": [["M"]], + "Sidney's": null, + "Sidoney": [["M"]], + "Sidoney's": null, + "Sidonia": [["M"]], + "Sidonia's": null, + "Sidonnie": [["M"]], + "Sidonnie's": null, + "SIDS": null, + "siege": [["G", "M", "D", "S"]], + "sieging": null, + "siege's": null, + "sieged": null, + "sieges": null, + "Siegel": [["M"]], + "Siegel's": null, + "Siegfried": [["M"]], + "Siegfried's": null, + "Sieglinda": [["M"]], + "Sieglinda's": null, + "Siegmund": [["M"]], + "Siegmund's": null, + "Siemens": [["M"]], + "Siemens's": null, + "Siena": [["M"]], + "Siena's": null, + "sienna": [["S", "M"]], + "siennas": null, + "sienna's": null, + "Sierpinski": [["M"]], + "Sierpinski's": null, + "sierra": [["S", "M"]], + "sierras": null, + "sierra's": null, + "siesta": [["M", "S"]], + "siesta's": null, + "siestas": null, + "sieve": [["G", "Z", "M", "D", "S"]], + "sieving": null, + "sievers": null, + "sieve's": null, + "sieved": null, + "sieves": null, + "Siffre": [["M"]], + "Siffre's": null, + "sifted": [["U", "A"]], + "unsifted": null, + "resifted": null, + "sifter": [["M"]], + "sifter's": null, + "sift": [["G", "Z", "J", "S", "D", "R"]], + "sifting": null, + "sifters": null, + "siftings": null, + "sifts": null, + "Sigfrid": [["M"]], + "Sigfrid's": null, + "Sigfried": [["M"]], + "Sigfried's": null, + "SIGGRAPH": [["M"]], + "SIGGRAPH's": null, + "sigh": [["D", "R", "G"]], + "sighed": null, + "sigher": [["M"]], + "sighing": null, + "sigher's": null, + "sighs": null, + "sighted": [["P"]], + "sightedness": null, + "sighter": [["M"]], + "sighter's": null, + "sighting": [["S"]], + "sightings": null, + "sight": [["I", "S", "M"]], + "insight": null, + "insights": null, + "insight's": null, + "sights": null, + "sight's": null, + "sightless": [["Y"]], + "sightlessly": null, + "sightliness": [["U", "M"]], + "unsightliness": [["S"]], + "unsightliness's": null, + "sightliness's": null, + "sightly": [["T", "U", "R", "P"]], + "sightliest": null, + "unsightly": null, + "unsightlier": null, + "sightlier": null, + "sightread": null, + "sightseeing": [["S"]], + "sightseeings": null, + "sightsee": [["R", "Z"]], + "sightseer": null, + "sightseers": null, + "Sigismond": [["M"]], + "Sigismond's": null, + "Sigismondo": [["M"]], + "Sigismondo's": null, + "Sigismund": [["M"]], + "Sigismund's": null, + "Sigismundo": [["M"]], + "Sigismundo's": null, + "Sig": [["M"]], + "Sig's": null, + "sigma": [["S", "M"]], + "sigmas": null, + "sigma's": null, + "sigmoid": null, + "Sigmund": [["M"]], + "Sigmund's": null, + "signal": [["A"]], + "resignal": null, + "signaled": null, + "signaler": [["S"]], + "signalers": null, + "signaling": null, + "signalization": [["S"]], + "signalizations": null, + "signalize": [["G", "S", "D"]], + "signalizing": null, + "signalizes": null, + "signalized": null, + "signally": null, + "signalman": [["M"]], + "signalman's": null, + "signalmen": null, + "signals": null, + "signal's": null, + "signatory": [["S", "M"]], + "signatories": null, + "signatory's": null, + "signature": [["M", "S"]], + "signature's": null, + "signatures": null, + "signboard": [["M", "S"]], + "signboard's": null, + "signboards": null, + "signed": [["F", "U"]], + "unsigned": null, + "signer": [["S", "C"]], + "signers": null, + "designers": null, + "signet": [["S", "G", "M", "D"]], + "signets": null, + "signeting": null, + "signet's": null, + "signeted": null, + "sign": [["G", "A", "R", "D", "C", "S"]], + "signing": [["S"]], + "resigning": null, + "resign": null, + "resigner": null, + "resigns": null, + "signs": [["F"]], + "significance": [["I", "M", "S"]], + "insignificance": null, + "insignificance's": null, + "insignificances": null, + "significance's": null, + "significances": null, + "significantly": [["I"]], + "insignificantly": null, + "significant": [["Y", "S"]], + "significants": null, + "signification": [["M"]], + "signification's": null, + "signify": [["D", "R", "S", "G", "N", "X"]], + "signified": null, + "signifier": null, + "signifies": null, + "signifying": null, + "significations": null, + "signings": null, + "Signora": [["M"]], + "Signora's": null, + "signora": [["S", "M"]], + "signoras": null, + "signora's": null, + "signore": [["M"]], + "signore's": null, + "signori": null, + "signories": null, + "signorina": [["S", "M"]], + "signorinas": null, + "signorina's": null, + "signorine": null, + "Signor": [["M"]], + "Signor's": null, + "signor": [["S", "F", "M"]], + "signors": null, + "consignors": null, + "consignor": null, + "consignor's": null, + "signor's": null, + "signpost": [["D", "M", "S", "G"]], + "signposted": null, + "signpost's": null, + "signposts": null, + "signposting": null, + "sign's": null, + "Sigrid": [["M"]], + "Sigrid's": null, + "Sigurd": [["M"]], + "Sigurd's": null, + "Sigvard": [["M"]], + "Sigvard's": null, + "Sihanouk": [["M"]], + "Sihanouk's": null, + "Sikhism": [["M", "S"]], + "Sikhism's": null, + "Sikhisms": null, + "Sikh": [["M", "S"]], + "Sikh's": null, + "Sikhes": null, + "Sikhs": null, + "Sikkimese": null, + "Sikkim": [["M"]], + "Sikkim's": null, + "Sikorsky": [["M"]], + "Sikorsky's": null, + "silage": [["G", "M", "S", "D"]], + "silaging": null, + "silage's": null, + "silages": null, + "silaged": null, + "Silas": [["M"]], + "Silas's": null, + "Sileas": [["M"]], + "Sileas's": null, + "siled": null, + "Sile": [["M"]], + "Sile's": null, + "silence": [["M", "Z", "G", "R", "S", "D"]], + "silence's": null, + "silencers": null, + "silencing": null, + "silencer": [["M"]], + "silences": null, + "silenced": null, + "silencer's": null, + "silentness": [["M"]], + "silentness's": null, + "silent": [["T", "S", "P", "R", "Y"]], + "silentest": null, + "silents": null, + "silenter": null, + "silently": null, + "Silesia": [["M"]], + "Silesia's": null, + "silhouette": [["G", "M", "S", "D"]], + "silhouetting": null, + "silhouette's": null, + "silhouettes": null, + "silhouetted": null, + "silica": [["S", "M"]], + "silicas": null, + "silica's": null, + "silicate": [["S", "M"]], + "silicates": null, + "silicate's": null, + "siliceous": null, + "silicide": [["M"]], + "silicide's": null, + "silicone": [["S", "M"]], + "silicones": null, + "silicone's": null, + "silicon": [["M", "S"]], + "silicon's": null, + "silicons": null, + "silicoses": null, + "silicosis": [["M"]], + "silicosis's": null, + "silken": [["D", "G"]], + "silkened": null, + "silkening": null, + "silk": [["G", "X", "N", "D", "M", "S"]], + "silking": null, + "silkens": null, + "silked": null, + "silk's": null, + "silks": null, + "silkily": null, + "silkiness": [["S", "M"]], + "silkinesses": null, + "silkiness's": null, + "silkscreen": [["S", "M"]], + "silkscreens": null, + "silkscreen's": null, + "silkworm": [["M", "S"]], + "silkworm's": null, + "silkworms": null, + "silky": [["R", "S", "P", "T"]], + "silkier": null, + "silkies": null, + "silkiest": null, + "silliness": [["S", "M"]], + "sillinesses": null, + "silliness's": null, + "sill": [["M", "S"]], + "sill's": null, + "sills": null, + "silly": [["P", "R", "S", "T"]], + "sillier": null, + "sillies": null, + "silliest": null, + "silo": [["G", "S", "M"]], + "siloing": null, + "silos": null, + "silo's": null, + "siltation": [["M"]], + "siltation's": null, + "silt": [["M", "D", "G", "S"]], + "silt's": null, + "silted": null, + "silting": null, + "silts": null, + "siltstone": [["M"]], + "siltstone's": null, + "silty": [["R", "T"]], + "siltier": null, + "siltiest": null, + "Silurian": [["S"]], + "Silurians": null, + "Silvain": [["M"]], + "Silvain's": null, + "Silva": [["M"]], + "Silva's": null, + "Silvana": [["M"]], + "Silvana's": null, + "Silvan": [["M"]], + "Silvan's": null, + "Silvano": [["M"]], + "Silvano's": null, + "Silvanus": [["M"]], + "Silvanus's": null, + "silverer": [["M"]], + "silverer's": null, + "silverfish": [["M", "S"]], + "silverfish's": null, + "silverfishes": null, + "Silverman": [["M"]], + "Silverman's": null, + "silver": [["R", "D", "Y", "M", "G", "S"]], + "silvered": null, + "silverly": null, + "silver's": null, + "silvering": null, + "silvers": null, + "silversmith": [["M"]], + "silversmith's": null, + "silversmiths": null, + "Silverstein": [["M"]], + "Silverstein's": null, + "silverware": [["S", "M"]], + "silverwares": null, + "silverware's": null, + "silvery": [["R", "T", "P"]], + "silverier": null, + "silveriest": null, + "silveriness": null, + "Silvester": [["M"]], + "Silvester's": null, + "Silvia": [["M"]], + "Silvia's": null, + "Silvie": [["M"]], + "Silvie's": null, + "Silvio": [["M"]], + "Silvio's": null, + "Si": [["M"]], + "Si's": null, + "SIMD": null, + "Simenon": [["M"]], + "Simenon's": null, + "Simeon": [["M"]], + "Simeon's": null, + "simian": [["S"]], + "simians": null, + "similar": [["E", "Y"]], + "dissimilarly": null, + "similarly": null, + "similarity": [["E", "M", "S"]], + "dissimilarity": null, + "dissimilarity's": null, + "dissimilarities": null, + "similarity's": null, + "similarities": null, + "simile": [["S", "M"]], + "similes": null, + "simile's": null, + "similitude": [["S", "M", "E"]], + "similitudes": null, + "dissimilitudes": null, + "similitude's": null, + "dissimilitude's": null, + "dissimilitude": null, + "Simla": [["M"]], + "Simla's": null, + "simmer": [["G", "S", "D"]], + "simmering": null, + "simmers": null, + "simmered": null, + "Simmonds": [["M"]], + "Simmonds's": null, + "Simmons": [["M"]], + "Simmons's": null, + "Simmonsville": [["M"]], + "Simmonsville's": null, + "Sim": [["M", "S"]], + "Sim's": null, + "Sims": null, + "Simms": [["M"]], + "Simms's": null, + "Simona": [["M"]], + "Simona's": null, + "Simone": [["M"]], + "Simone's": null, + "Simonette": [["M"]], + "Simonette's": null, + "simonize": [["S", "D", "G"]], + "simonizes": null, + "simonized": null, + "simonizing": null, + "Simon": [["M"]], + "Simon's": null, + "Simonne": [["M"]], + "Simonne's": null, + "simony": [["M", "S"]], + "simony's": null, + "simonies": null, + "simpatico": null, + "simper": [["G", "D", "S"]], + "simpering": null, + "simpered": null, + "simpers": null, + "simpleminded": [["Y", "P"]], + "simplemindedly": null, + "simplemindedness": null, + "simpleness": [["S"]], + "simplenesses": null, + "simple": [["R", "S", "D", "G", "T", "P"]], + "simpler": null, + "simples": null, + "simpled": null, + "simpling": null, + "simplest": null, + "simpleton": [["S", "M"]], + "simpletons": null, + "simpleton's": null, + "simplex": [["S"]], + "simplexes": null, + "simplicity": [["M", "S"]], + "simplicity's": null, + "simplicities": null, + "simplified": [["U"]], + "unsimplified": null, + "simplify": [["Z", "X", "R", "S", "D", "N", "G"]], + "simplifiers": null, + "simplifications": null, + "simplifier": null, + "simplifies": null, + "simplification": null, + "simplifying": null, + "simplistic": null, + "simplistically": null, + "simply": null, + "Simpson": [["M"]], + "Simpson's": null, + "simulacrum": [["M"]], + "simulacrum's": null, + "Simula": [["M"]], + "Simula's": null, + "SIMULA": [["M"]], + "SIMULA's": null, + "simulate": [["X", "E", "N", "G", "S", "D"]], + "simulations": null, + "dissimulations": null, + "dissimulate": null, + "dissimulation": null, + "dissimulating": null, + "dissimulates": null, + "dissimulated": null, + "simulation": [["M", "E"]], + "simulating": null, + "simulates": null, + "simulated": null, + "simulation's": null, + "dissimulation's": null, + "simulative": null, + "simulator": [["S", "E", "M"]], + "simulators": null, + "dissimulators": null, + "dissimulator": null, + "dissimulator's": null, + "simulator's": null, + "simulcast": [["G", "S", "D"]], + "simulcasting": null, + "simulcasts": null, + "simulcasted": null, + "simultaneity": [["S", "M"]], + "simultaneities": null, + "simultaneity's": null, + "simultaneousness": [["M"]], + "simultaneousness's": null, + "simultaneous": [["Y", "P"]], + "simultaneously": null, + "Sinai": [["M"]], + "Sinai's": null, + "Sinatra": [["M"]], + "Sinatra's": null, + "since": null, + "sincere": [["I", "Y"]], + "insincere": null, + "insincerely": null, + "sincerely": null, + "sincereness": [["M"]], + "sincereness's": null, + "sincerer": null, + "sincerest": null, + "sincerity": [["M", "I", "S"]], + "sincerity's": null, + "insincerity's": null, + "insincerity": null, + "insincerities": null, + "sincerities": null, + "Sinclair": [["M"]], + "Sinclair's": null, + "Sinclare": [["M"]], + "Sinclare's": null, + "Sindbad": [["M"]], + "Sindbad's": null, + "Sindee": [["M"]], + "Sindee's": null, + "Sindhi": [["M"]], + "Sindhi's": null, + "sinecure": [["M", "S"]], + "sinecure's": null, + "sinecures": null, + "sinecurist": [["M"]], + "sinecurist's": null, + "sine": [["S", "M"]], + "sines": null, + "sine's": null, + "sinew": [["S", "G", "M", "D"]], + "sinews": null, + "sinewing": null, + "sinew's": null, + "sinewed": null, + "sinewy": null, + "sinfulness": [["S", "M"]], + "sinfulnesses": null, + "sinfulness's": null, + "sinful": [["Y", "P"]], + "sinfully": null, + "Singaporean": [["S"]], + "Singaporeans": null, + "Singapore": [["M"]], + "Singapore's": null, + "sing": [["B", "G", "J", "Z", "Y", "D", "R"]], + "singable": null, + "singing": [["Y"]], + "singings": null, + "singers": null, + "singly": null, + "singed": null, + "singer": [["M"]], + "Singborg": [["M"]], + "Singborg's": null, + "singeing": null, + "singer's": null, + "Singer": [["M"]], + "Singer's": null, + "singe": [["S"]], + "singes": null, + "singingly": null, + "singlehanded": [["Y"]], + "singlehandedly": null, + "singleness": [["S", "M"]], + "singlenesses": null, + "singleness's": null, + "single": [["P", "S", "D", "G"]], + "singles": null, + "singled": null, + "singling": null, + "Singleton": [["M"]], + "Singleton's": null, + "singleton": [["S", "M"]], + "singletons": null, + "singleton's": null, + "singletree": [["S", "M"]], + "singletrees": null, + "singletree's": null, + "singlet": [["S", "M"]], + "singlets": null, + "singlet's": null, + "singsong": [["G", "S", "M", "D"]], + "singsonging": null, + "singsongs": null, + "singsong's": null, + "singsonged": null, + "singularity": [["S", "M"]], + "singularities": null, + "singularity's": null, + "singularization": [["M"]], + "singularization's": null, + "singular": [["S", "Y"]], + "singulars": null, + "singularly": null, + "Sinhalese": [["M"]], + "Sinhalese's": null, + "sinisterness": [["M"]], + "sinisterness's": null, + "sinister": [["Y", "P"]], + "sinisterly": null, + "sinistral": [["Y"]], + "sinistrally": null, + "sinkable": [["U"]], + "unsinkable": null, + "sinker": [["M"]], + "sinker's": null, + "sink": [["G", "Z", "S", "D", "R", "B"]], + "sinking": [["M"]], + "sinkers": null, + "sinks": null, + "sinked": null, + "sinkhole": [["S", "M"]], + "sinkholes": null, + "sinkhole's": null, + "Sinkiang": [["M"]], + "Sinkiang's": null, + "sinking's": null, + "sinlessness": [["M"]], + "sinlessness's": null, + "sinless": [["Y", "P"]], + "sinlessly": null, + "sin": [["M", "A", "G", "S"]], + "sin's": null, + "resin's": null, + "resining": null, + "resins": null, + "sining": null, + "sins": null, + "sinned": null, + "sinner": [["M", "S"]], + "sinner's": null, + "sinners": null, + "sinning": null, + "sinter": [["D", "M"]], + "sintered": null, + "sinter's": null, + "sinuosity": [["M", "S"]], + "sinuosity's": null, + "sinuosities": null, + "sinuousities": null, + "sinuousness": [["M"]], + "sinuousness's": null, + "sinuous": [["P", "Y"]], + "sinuously": null, + "sinusitis": [["S", "M"]], + "sinusitises": null, + "sinusitis's": null, + "sinus": [["M", "S"]], + "sinus's": null, + "sinuses": null, + "sinusoidal": [["Y"]], + "sinusoidally": null, + "sinusoid": [["M", "S"]], + "sinusoid's": null, + "sinusoids": null, + "Siobhan": [["M"]], + "Siobhan's": null, + "Siouxie": [["M"]], + "Siouxie's": null, + "Sioux": [["M"]], + "Sioux's": null, + "siphon": [["D", "M", "S", "G"]], + "siphoned": null, + "siphon's": null, + "siphons": [["U"]], + "siphoning": null, + "unsiphons": null, + "sipped": null, + "sipper": [["S", "M"]], + "sippers": null, + "sipper's": null, + "sipping": null, + "sip": [["S"]], + "sips": null, + "sired": [["C"]], + "sire": [["M", "S"]], + "sire's": null, + "sires": [["C"]], + "siren": [["M"]], + "siren's": null, + "desires": null, + "siring": [["C"]], + "desiring": null, + "Sirius": [["M"]], + "Sirius's": null, + "sirloin": [["M", "S"]], + "sirloin's": null, + "sirloins": null, + "Sir": [["M", "S"]], + "Sir's": null, + "Sirs": null, + "sirocco": [["M", "S"]], + "sirocco's": null, + "siroccos": null, + "sirred": null, + "sirring": null, + "sirup's": null, + "sir": [["X", "G", "M", "N", "D", "S"]], + "sirens": null, + "sir's": null, + "sirs": null, + "sisal": [["M", "S"]], + "sisal's": null, + "sisals": null, + "Sisely": [["M"]], + "Sisely's": null, + "Sisile": [["M"]], + "Sisile's": null, + "sis": [["S"]], + "sises": null, + "Sissie": [["M"]], + "Sissie's": null, + "sissified": null, + "Sissy": [["M"]], + "Sissy's": null, + "sissy": [["T", "R", "S", "M"]], + "sissiest": null, + "sissier": null, + "sissies": null, + "sissy's": null, + "sister": [["G", "D", "Y", "M", "S"]], + "sistering": null, + "sistered": null, + "sisterly": [["P"]], + "sister's": [["A"]], + "sisters": null, + "sisterhood": [["M", "S"]], + "sisterhood's": null, + "sisterhoods": null, + "sisterliness": [["M", "S"]], + "sisterliness's": null, + "sisterlinesses": null, + "resister's": null, + "Sistine": null, + "Sisyphean": null, + "Sisyphus": [["M"]], + "Sisyphus's": null, + "sit": [["A", "G"]], + "resit": null, + "resiting": null, + "siting": null, + "sitarist": [["S", "M"]], + "sitarists": null, + "sitarist's": null, + "sitar": [["S", "M"]], + "sitars": null, + "sitar's": null, + "sitcom": [["S", "M"]], + "sitcoms": null, + "sitcom's": null, + "site": [["D", "S", "J", "M"]], + "sited": null, + "sites": null, + "sitings": null, + "site's": null, + "sits": null, + "sitter": [["M", "S"]], + "sitter's": null, + "sitters": null, + "sitting": [["S", "M"]], + "sittings": null, + "sitting's": null, + "situate": [["G", "N", "S", "D", "X"]], + "situating": null, + "situation": [["M"]], + "situates": null, + "situated": null, + "situations": null, + "situational": [["Y"]], + "situationally": null, + "situationist": null, + "situation's": null, + "situ": [["S"]], + "situs": [["M"]], + "situs's": null, + "Siusan": [["M"]], + "Siusan's": null, + "Siva": [["M"]], + "Siva's": null, + "Siward": [["M"]], + "Siward's": null, + "sixfold": null, + "sixgun": null, + "six": [["M", "R", "S", "H"]], + "six's": null, + "sixer": null, + "sixes": null, + "sixth": [["Y"]], + "sixpence": [["M", "S"]], + "sixpence's": null, + "sixpences": null, + "sixpenny": null, + "sixshooter": null, + "sixteen": [["H", "R", "S", "M"]], + "sixteenth": null, + "sixteener": null, + "sixteens": null, + "sixteen's": null, + "sixteenths": null, + "sixths": null, + "sixthly": null, + "sixtieths": null, + "sixty": [["S", "M", "H"]], + "sixties": null, + "sixty's": null, + "sixtieth": null, + "sizableness": [["M"]], + "sizableness's": null, + "sizable": [["P"]], + "sized": [["U", "A"]], + "unsized": null, + "resized": null, + "size": [["G", "J", "D", "R", "S", "B", "M", "Z"]], + "sizing": [["M"]], + "sizings": null, + "sizer": [["M"]], + "sizes": [["A"]], + "size's": null, + "sizers": null, + "sizer's": null, + "resizes": null, + "sizing's": null, + "sizzler": [["M"]], + "sizzler's": null, + "sizzle": [["R", "S", "D", "G"]], + "sizzles": null, + "sizzled": null, + "sizzling": null, + "SJ": null, + "Sjaelland": [["M"]], + "Sjaelland's": null, + "SK": null, + "ska": [["S"]], + "skas": null, + "skateboard": [["S", "J", "G", "Z", "M", "D", "R"]], + "skateboards": null, + "skateboardings": null, + "skateboarding": null, + "skateboarders": null, + "skateboard's": null, + "skateboarded": null, + "skateboarder": null, + "skater": [["M"]], + "skater's": null, + "skate": [["S", "M"]], + "skates": null, + "skate's": null, + "skat": [["J", "M", "D", "R", "G", "Z"]], + "skatings": null, + "skat's": null, + "skated": null, + "skating": null, + "skaters": null, + "skedaddle": [["G", "S", "D"]], + "skedaddling": null, + "skedaddles": null, + "skedaddled": null, + "skeet": [["R", "M", "S"]], + "skeeter": null, + "skeet's": null, + "skeets": null, + "skein": [["M", "D", "G", "S"]], + "skein's": null, + "skeined": null, + "skeining": null, + "skeins": null, + "skeletal": [["Y"]], + "skeletally": null, + "skeleton": [["M", "S"]], + "skeleton's": null, + "skeletons": null, + "Skell": [["M"]], + "Skell's": null, + "Skelly": [["M"]], + "Skelly's": null, + "skeptical": [["Y"]], + "skeptically": null, + "skepticism": [["M", "S"]], + "skepticism's": null, + "skepticisms": null, + "skeptic": [["S", "M"]], + "skeptics": null, + "skeptic's": null, + "sketchbook": [["S", "M"]], + "sketchbooks": null, + "sketchbook's": null, + "sketcher": [["M"]], + "sketcher's": null, + "sketchily": null, + "sketchiness": [["M", "S"]], + "sketchiness's": null, + "sketchinesses": null, + "sketch": [["M", "R", "S", "D", "Z", "G"]], + "sketch's": null, + "sketches": null, + "sketched": null, + "sketchers": null, + "sketching": null, + "sketchpad": null, + "sketchy": [["P", "R", "T"]], + "sketchier": null, + "sketchiest": null, + "skew": [["D", "R", "S", "P", "G", "Z"]], + "skewed": null, + "skewer": [["G", "D", "M"]], + "skews": null, + "skewness": [["M"]], + "skewing": [["M"]], + "skewers": null, + "skewering": null, + "skewered": null, + "skewer's": null, + "skewing's": null, + "skewness's": null, + "skidded": null, + "skidding": null, + "skid": [["S"]], + "skids": null, + "skiff": [["G", "M", "D", "S"]], + "skiffing": null, + "skiff's": null, + "skiffed": null, + "skiffs": null, + "skiing": [["M"]], + "skiing's": null, + "skilfully": null, + "skill": [["D", "M", "S", "G"]], + "skilled": [["U"]], + "skill's": null, + "skills": null, + "skilling": [["M"]], + "unskilled": null, + "skillet": [["M", "S"]], + "skillet's": null, + "skillets": null, + "skillfulnesses": null, + "skillfulness": [["M", "U"]], + "skillfulness's": null, + "unskillfulness's": null, + "unskillfulness": null, + "skillful": [["Y", "U", "P"]], + "skillfully": null, + "unskillfully": null, + "unskillful": null, + "skilling's": null, + "skimmed": null, + "skimmer": [["M", "S"]], + "skimmer's": null, + "skimmers": null, + "skimming": [["S", "M"]], + "skimmings": null, + "skimming's": null, + "ski": [["M", "N", "J", "S", "G"]], + "ski's": null, + "skien": null, + "skiings": null, + "skis": null, + "skimp": [["G", "D", "S"]], + "skimping": null, + "skimped": null, + "skimps": null, + "skimpily": null, + "skimpiness": [["M", "S"]], + "skimpiness's": null, + "skimpinesses": null, + "skimpy": [["P", "R", "T"]], + "skimpier": null, + "skimpiest": null, + "skim": [["S", "M"]], + "skims": null, + "skim's": null, + "skincare": null, + "skindive": [["G"]], + "skindiving": null, + "skinflint": [["M", "S"]], + "skinflint's": null, + "skinflints": null, + "skinhead": [["S", "M"]], + "skinheads": null, + "skinhead's": null, + "skinless": null, + "skinned": null, + "Skinner": [["M"]], + "Skinner's": null, + "skinner": [["S", "M"]], + "skinners": null, + "skinner's": null, + "skinniness": [["M", "S"]], + "skinniness's": null, + "skinninesses": null, + "skinning": null, + "skinny": [["T", "R", "S", "P"]], + "skinniest": null, + "skinnier": null, + "skinnies": null, + "skin": [["S", "M"]], + "skins": null, + "skin's": null, + "skintight": null, + "Skip": [["M"]], + "Skip's": null, + "skipped": null, + "Skipper": [["M"]], + "Skipper's": null, + "skipper": [["S", "G", "D", "M"]], + "skippers": null, + "skippering": null, + "skippered": null, + "skipper's": null, + "Skippie": [["M"]], + "Skippie's": null, + "skipping": null, + "Skipp": [["R", "M"]], + "Skipp's": null, + "Skippy": [["M"]], + "Skippy's": null, + "skip": [["S"]], + "skips": null, + "Skipton": [["M"]], + "Skipton's": null, + "skirmisher": [["M"]], + "skirmisher's": null, + "skirmish": [["R", "S", "D", "M", "Z", "G"]], + "skirmishes": null, + "skirmished": null, + "skirmish's": null, + "skirmishers": null, + "skirmishing": null, + "skirter": [["M"]], + "skirter's": null, + "skirting": [["M"]], + "skirting's": null, + "skirt": [["R", "D", "M", "G", "S"]], + "skirted": null, + "skirt's": null, + "skirts": null, + "skit": [["G", "S", "M", "D"]], + "skiting": null, + "skits": null, + "skit's": null, + "skited": null, + "skitter": [["S", "D", "G"]], + "skitters": null, + "skittered": null, + "skittering": null, + "skittishness": [["S", "M"]], + "skittishnesses": null, + "skittishness's": null, + "skittish": [["Y", "P"]], + "skittishly": null, + "skittle": [["S", "M"]], + "skittles": null, + "skittle's": null, + "skivvy": [["G", "S", "D", "M"]], + "skivvying": null, + "skivvies": null, + "skivvied": null, + "skivvy's": null, + "skoal": [["S", "D", "G"]], + "skoals": null, + "skoaled": null, + "skoaling": null, + "Skopje": [["M"]], + "Skopje's": null, + "skulduggery": [["M", "S"]], + "skulduggery's": null, + "skulduggeries": null, + "skulker": [["M"]], + "skulker's": null, + "skulk": [["S", "R", "D", "G", "Z"]], + "skulks": null, + "skulked": null, + "skulking": null, + "skulkers": null, + "skullcap": [["M", "S"]], + "skullcap's": null, + "skullcaps": null, + "skullduggery's": null, + "skull": [["S", "D", "M"]], + "skulls": null, + "skulled": null, + "skull's": null, + "skunk": [["G", "M", "D", "S"]], + "skunking": null, + "skunk's": null, + "skunked": null, + "skunks": null, + "skycap": [["M", "S"]], + "skycap's": null, + "skycaps": null, + "skydiver": [["S", "M"]], + "skydivers": null, + "skydiver's": null, + "skydiving": [["M", "S"]], + "skydiving's": null, + "skydivings": null, + "Skye": [["M"]], + "Skye's": null, + "skyhook": null, + "skyjacker": [["M"]], + "skyjacker's": null, + "skyjack": [["Z", "S", "G", "R", "D", "J"]], + "skyjackers": null, + "skyjacks": null, + "skyjacking": null, + "skyjacked": null, + "skyjackings": null, + "Skylab": [["M"]], + "Skylab's": null, + "skylarker": [["M"]], + "skylarker's": null, + "skylark": [["S", "R", "D", "M", "G"]], + "skylarks": null, + "skylarked": null, + "skylark's": null, + "skylarking": null, + "Skylar": [["M"]], + "Skylar's": null, + "Skyler": [["M"]], + "Skyler's": null, + "skylight": [["M", "S"]], + "skylight's": null, + "skylights": null, + "skyline": [["M", "S"]], + "skyline's": null, + "skylines": null, + "Sky": [["M"]], + "Sky's": null, + "sky": [["M", "D", "R", "S", "G", "Z"]], + "sky's": null, + "skied": null, + "skier": null, + "skies": null, + "skying": null, + "skiers": null, + "skyrocket": [["G", "D", "M", "S"]], + "skyrocketing": null, + "skyrocketed": null, + "skyrocket's": null, + "skyrockets": null, + "skyscraper": [["M"]], + "skyscraper's": null, + "skyscrape": [["R", "Z"]], + "skyscrapers": null, + "skyward": [["S"]], + "skywards": null, + "skywave": null, + "skyway": [["M"]], + "skyway's": null, + "skywriter": [["M", "S"]], + "skywriter's": null, + "skywriters": null, + "skywriting": [["M", "S"]], + "skywriting's": null, + "skywritings": null, + "slabbed": null, + "slabbing": null, + "slab": [["M", "S"]], + "slab's": null, + "slabs": null, + "slacken": [["D", "G"]], + "slackened": null, + "slackening": null, + "slacker": [["M"]], + "slacker's": null, + "slackness": [["M", "S"]], + "slackness's": null, + "slacknesses": null, + "slack": [["S", "P", "G", "T", "Z", "X", "Y", "R", "D", "N"]], + "slacks": null, + "slacking": null, + "slackest": null, + "slackers": null, + "slackens": null, + "slackly": null, + "slacked": null, + "Slade": [["M"]], + "Slade's": null, + "slagged": null, + "slagging": null, + "slag": [["M", "S"]], + "slag's": null, + "slags": null, + "slain": null, + "slake": [["D", "S", "G"]], + "slaked": [["U"]], + "slakes": null, + "slaking": null, + "unslaked": null, + "slalom": [["S", "G", "M", "D"]], + "slaloms": null, + "slaloming": null, + "slalom's": null, + "slalomed": null, + "slammed": null, + "slammer": [["S"]], + "slammers": null, + "slamming": null, + "slam": [["S"]], + "slams": null, + "slander": [["M", "D", "R", "Z", "S", "G"]], + "slander's": null, + "slandered": null, + "slanderer": null, + "slanderers": null, + "slanders": null, + "slandering": null, + "slanderousness": [["M"]], + "slanderousness's": null, + "slanderous": [["P", "Y"]], + "slanderously": null, + "slang": [["S", "M", "G", "D"]], + "slangs": null, + "slang's": null, + "slanging": null, + "slanged": null, + "slangy": [["T", "R"]], + "slangiest": null, + "slangier": null, + "slanting": [["Y"]], + "slantingly": null, + "slant": [["S", "D", "G"]], + "slants": null, + "slanted": null, + "slantwise": null, + "slapdash": [["S"]], + "slapdashes": null, + "slaphappy": [["T", "R"]], + "slaphappiest": null, + "slaphappier": null, + "slap": [["M", "S"]], + "slap's": null, + "slaps": null, + "slapped": null, + "slapper": null, + "slapping": null, + "slapstick": [["M", "S"]], + "slapstick's": null, + "slapsticks": null, + "slash": [["G", "Z", "R", "S", "D"]], + "slashing": [["Y"]], + "slashers": null, + "slasher": null, + "slashes": null, + "slashed": null, + "slashingly": null, + "slater": [["M"]], + "slater's": null, + "Slater": [["M"]], + "Slater's": null, + "slate": [["S", "M"]], + "slates": null, + "slate's": null, + "slather": [["S", "M", "D", "G"]], + "slathers": null, + "slather's": null, + "slathered": null, + "slathering": null, + "slating": [["M"]], + "slating's": null, + "slat": [["M", "D", "R", "S", "G", "Z"]], + "slat's": null, + "slated": null, + "slats": null, + "slaters": null, + "slatted": null, + "slattern": [["M", "Y", "S"]], + "slattern's": null, + "slatternly": null, + "slatterns": null, + "slatting": null, + "slaughterer": [["M"]], + "slaughterer's": null, + "slaughterhouse": [["S", "M"]], + "slaughterhouses": null, + "slaughterhouse's": null, + "slaughter": [["S", "J", "M", "R", "D", "G", "Z"]], + "slaughters": null, + "slaughterings": null, + "slaughter's": null, + "slaughtered": null, + "slaughtering": null, + "slaughterers": null, + "slave": [["D", "S", "R", "G", "Z", "M"]], + "slaved": null, + "slaves": null, + "slaver": [["G", "D", "M"]], + "slaving": null, + "slavers": null, + "slave's": null, + "slaveholder": [["S", "M"]], + "slaveholders": null, + "slaveholder's": null, + "slavering": null, + "slavered": null, + "slaver's": null, + "slavery": [["S", "M"]], + "slaveries": null, + "slavery's": null, + "Slavic": [["M"]], + "Slavic's": null, + "slavishness": [["S", "M"]], + "slavishnesses": null, + "slavishness's": null, + "slavish": [["Y", "P"]], + "slavishly": null, + "Slav": [["M", "S"]], + "Slav's": null, + "Slavs": null, + "Slavonic": [["M"]], + "Slavonic's": null, + "slaw": [["M", "S"]], + "slaw's": null, + "slaws": null, + "slay": [["R", "G", "Z", "S"]], + "slayer": null, + "slaying": null, + "slayers": null, + "slays": null, + "sleaze": [["S"]], + "sleazes": null, + "sleazily": null, + "sleaziness": [["S", "M"]], + "sleazinesses": null, + "sleaziness's": null, + "sleazy": [["R", "T", "P"]], + "sleazier": null, + "sleaziest": null, + "sledded": null, + "sledder": [["S"]], + "sledders": null, + "sledding": null, + "sledgehammer": [["M", "D", "G", "S"]], + "sledgehammer's": null, + "sledgehammered": null, + "sledgehammering": null, + "sledgehammers": null, + "sledge": [["S", "D", "G", "M"]], + "sledges": null, + "sledged": null, + "sledging": null, + "sledge's": null, + "sled": [["S", "M"]], + "sleds": null, + "sled's": null, + "sleekness": [["S"]], + "sleeknesses": null, + "sleek": [["P", "Y", "R", "D", "G", "T", "S"]], + "sleekly": null, + "sleeker": null, + "sleeked": null, + "sleeking": null, + "sleekest": null, + "sleeks": null, + "sleeper": [["M"]], + "sleeper's": null, + "sleepily": null, + "sleepiness": [["S", "M"]], + "sleepinesses": null, + "sleepiness's": null, + "sleeping": [["M"]], + "sleeping's": null, + "sleeplessness": [["S", "M"]], + "sleeplessnesses": null, + "sleeplessness's": null, + "sleepless": [["Y", "P"]], + "sleeplessly": null, + "sleepover": [["S"]], + "sleepovers": null, + "sleep": [["R", "M", "G", "Z", "S"]], + "sleep's": null, + "sleepers": null, + "sleeps": null, + "sleepwalker": [["M"]], + "sleepwalker's": null, + "sleepwalk": [["J", "G", "R", "D", "Z", "S"]], + "sleepwalkings": null, + "sleepwalking": null, + "sleepwalked": null, + "sleepwalkers": null, + "sleepwalks": null, + "sleepwear": [["M"]], + "sleepwear's": null, + "sleepyhead": [["M", "S"]], + "sleepyhead's": null, + "sleepyheads": null, + "sleepy": [["P", "T", "R"]], + "sleepiest": null, + "sleepier": null, + "sleet": [["D", "M", "S", "G"]], + "sleeted": null, + "sleet's": null, + "sleets": null, + "sleeting": null, + "sleety": [["T", "R"]], + "sleetiest": null, + "sleetier": null, + "sleeveless": null, + "sleeve": [["S", "D", "G", "M"]], + "sleeves": null, + "sleeved": null, + "sleeving": [["M"]], + "sleeve's": null, + "sleeving's": null, + "sleigh": [["G", "M", "D"]], + "sleighing": null, + "sleigh's": null, + "sleighed": null, + "sleighs": null, + "sleight": [["S", "M"]], + "sleights": null, + "sleight's": null, + "sleken": [["D", "G"]], + "slekened": null, + "slekening": null, + "slenderize": [["D", "S", "G"]], + "slenderized": null, + "slenderizes": null, + "slenderizing": null, + "slenderness": [["M", "S"]], + "slenderness's": null, + "slendernesses": null, + "slender": [["R", "Y", "T", "P"]], + "slenderer": null, + "slenderly": null, + "slenderest": null, + "slept": null, + "Slesinger": [["M"]], + "Slesinger's": null, + "sleuth": [["G", "M", "D"]], + "sleuthing": null, + "sleuth's": null, + "sleuthed": null, + "sleuths": null, + "slew": [["D", "G", "S"]], + "slewed": null, + "slewing": null, + "slews": null, + "slice": [["D", "S", "R", "G", "Z", "M"]], + "sliced": [["U"]], + "slices": null, + "slicer": [["M"]], + "slicing": null, + "slicers": null, + "slice's": null, + "unsliced": null, + "slicer's": null, + "slicker": [["M"]], + "slicker's": null, + "slickness": [["M", "S"]], + "slickness's": null, + "slicknesses": null, + "slick": [["P", "S", "Y", "R", "D", "G", "T", "Z"]], + "slicks": null, + "slickly": null, + "slicked": null, + "slicking": null, + "slickest": null, + "slickers": null, + "slider": [["M"]], + "slider's": null, + "slide": [["S"]], + "slides": null, + "slid": [["G", "Z", "D", "R"]], + "sliding": null, + "sliders": null, + "slided": null, + "slight": [["D", "R", "Y", "P", "S", "T", "G"]], + "slighted": null, + "slighter": [["M"]], + "slightly": null, + "slightness": [["S"]], + "slights": null, + "slightest": null, + "slighting": [["Y"]], + "slighter's": null, + "slightingly": null, + "slightnesses": null, + "slime": [["S", "M"]], + "slimes": null, + "slime's": null, + "sliminess": [["S"]], + "sliminesses": null, + "slimline": null, + "slimmed": null, + "slimmer": [["S"]], + "slimmers": null, + "slimmest": null, + "slimming": [["S"]], + "slimmings": null, + "slimness": [["S"]], + "slimnesses": null, + "slim": [["S", "P", "G", "Y", "D"]], + "slims": null, + "sliming": null, + "slimly": null, + "slimed": null, + "slimy": [["P", "T", "R"]], + "slimiest": null, + "slimier": null, + "sling": [["G", "M", "R", "S"]], + "slinging": null, + "sling's": null, + "slinger": null, + "slings": [["U"]], + "slingshot": [["M", "S"]], + "slingshot's": null, + "slingshots": null, + "unslings": null, + "slink": [["G", "S"]], + "slinking": null, + "slinks": null, + "slinky": [["R", "T"]], + "slinkier": null, + "slinkiest": null, + "slipcase": [["M", "S"]], + "slipcase's": null, + "slipcases": null, + "slipcover": [["G", "M", "D", "S"]], + "slipcovering": null, + "slipcover's": null, + "slipcovered": null, + "slipcovers": null, + "slipknot": [["S", "M"]], + "slipknots": null, + "slipknot's": null, + "slippage": [["S", "M"]], + "slippages": null, + "slippage's": null, + "slipped": null, + "slipper": [["G", "S", "M", "D"]], + "slippering": null, + "slippers": null, + "slipper's": null, + "slippered": null, + "slipperiness": [["S"]], + "slipperinesses": null, + "slippery": [["P", "R", "T"]], + "slipperier": null, + "slipperiest": null, + "slipping": null, + "slipshod": null, + "slip": [["S", "M"]], + "slips": null, + "slip's": null, + "slipstream": [["M", "D", "G", "S"]], + "slipstream's": null, + "slipstreamed": null, + "slipstreaming": null, + "slipstreams": null, + "slipway": [["S", "M"]], + "slipways": null, + "slipway's": null, + "slither": [["D", "S", "G"]], + "slithered": null, + "slithers": null, + "slithering": null, + "slithery": null, + "slit": [["S", "M"]], + "slits": null, + "slit's": null, + "slitted": null, + "slitter": [["S"]], + "slitters": null, + "slitting": null, + "sliver": [["G", "S", "D", "M"]], + "slivering": null, + "slivers": null, + "slivered": null, + "sliver's": null, + "slivery": null, + "Sloane": [["M"]], + "Sloane's": null, + "Sloan": [["M"]], + "Sloan's": null, + "slobber": [["S", "D", "G"]], + "slobbers": null, + "slobbered": null, + "slobbering": null, + "slobbery": null, + "slob": [["M", "S"]], + "slob's": null, + "slobs": null, + "Slocum": [["M"]], + "Slocum's": null, + "sloe": [["M", "S"]], + "sloe's": null, + "sloes": null, + "sloganeer": [["M", "G"]], + "sloganeer's": null, + "sloganeering": null, + "slogan": [["M", "S"]], + "slogan's": null, + "slogans": null, + "slogged": null, + "slogging": null, + "slog": [["S"]], + "slogs": null, + "sloop": [["S", "M"]], + "sloops": null, + "sloop's": null, + "slop": [["D", "R", "S", "G", "Z"]], + "sloped": [["U"]], + "sloper": null, + "slops": null, + "sloping": null, + "slopers": null, + "unsloped": null, + "slope": [["S"]], + "slopes": null, + "slopped": null, + "sloppily": null, + "sloppiness": [["S", "M"]], + "sloppinesses": null, + "sloppiness's": null, + "slopping": null, + "sloppy": [["R", "T", "P"]], + "sloppier": null, + "sloppiest": null, + "slosh": [["G", "S", "D", "M"]], + "sloshing": null, + "sloshes": null, + "sloshed": null, + "slosh's": null, + "slothfulness": [["M", "S"]], + "slothfulness's": null, + "slothfulnesses": null, + "slothful": [["P", "Y"]], + "slothfully": null, + "sloth": [["G", "D", "M"]], + "slothing": null, + "slothed": null, + "sloth's": null, + "sloths": null, + "slot": [["M", "S"]], + "slot's": null, + "slots": null, + "slotted": null, + "slotting": null, + "slouch": [["D", "R", "S", "Z", "G"]], + "slouched": null, + "sloucher": [["M"]], + "slouches": null, + "slouchers": null, + "slouching": null, + "sloucher's": null, + "slouchy": [["R", "T"]], + "slouchier": null, + "slouchiest": null, + "slough": [["G", "M", "D"]], + "sloughing": null, + "slough's": null, + "sloughed": null, + "sloughs": null, + "Slovakia": [["M"]], + "Slovakia's": null, + "Slovakian": [["S"]], + "Slovakians": null, + "Slovak": [["S"]], + "Slovaks": null, + "Slovene": [["S"]], + "Slovenes": null, + "Slovenia": [["M"]], + "Slovenia's": null, + "Slovenian": [["S"]], + "Slovenians": null, + "slovenliness": [["S", "M"]], + "slovenlinesses": null, + "slovenliness's": null, + "slovenly": [["T", "R", "P"]], + "slovenliest": null, + "slovenlier": null, + "sloven": [["Y", "M", "S"]], + "sloven's": null, + "slovens": null, + "slowcoaches": null, + "slowdown": [["M", "S"]], + "slowdown's": null, + "slowdowns": null, + "slowish": null, + "slowness": [["M", "S"]], + "slowness's": null, + "slownesses": null, + "slow": [["P", "G", "T", "Y", "D", "R", "S"]], + "slowing": null, + "slowest": null, + "slowly": null, + "slowed": null, + "slower": null, + "slows": null, + "slowpoke": [["M", "S"]], + "slowpoke's": null, + "slowpokes": null, + "SLR": null, + "sludge": [["S", "D", "G", "M"]], + "sludges": null, + "sludged": null, + "sludging": null, + "sludge's": null, + "sludgy": [["T", "R"]], + "sludgiest": null, + "sludgier": null, + "slue": [["M", "G", "D", "S"]], + "slue's": null, + "sluing": null, + "slued": null, + "slues": null, + "sluggard": [["M", "S"]], + "sluggard's": null, + "sluggards": null, + "slugged": null, + "slugger": [["S", "M"]], + "sluggers": null, + "slugger's": null, + "slugging": null, + "sluggishness": [["S", "M"]], + "sluggishnesses": null, + "sluggishness's": null, + "sluggish": [["Y", "P"]], + "sluggishly": null, + "slug": [["M", "S"]], + "slug's": null, + "slugs": null, + "sluice": [["S", "D", "G", "M"]], + "sluices": null, + "sluiced": null, + "sluicing": null, + "sluice's": null, + "slumberer": [["M"]], + "slumberer's": null, + "slumber": [["M", "D", "R", "G", "S"]], + "slumber's": null, + "slumbered": null, + "slumbering": null, + "slumbers": null, + "slumberous": null, + "slumlord": [["M", "S"]], + "slumlord's": null, + "slumlords": null, + "slummed": null, + "slummer": null, + "slumming": null, + "slum": [["M", "S"]], + "slum's": null, + "slums": null, + "slummy": [["T", "R"]], + "slummiest": null, + "slummier": null, + "slump": [["D", "S", "G"]], + "slumped": null, + "slumps": null, + "slumping": null, + "slung": [["U"]], + "unslung": null, + "slunk": null, + "slur": [["M", "S"]], + "slur's": null, + "slurs": null, + "slurp": [["G", "S", "D"]], + "slurping": null, + "slurps": null, + "slurped": null, + "slurred": null, + "slurried": [["M"]], + "slurried's": null, + "slurring": null, + "slurrying": [["M"]], + "slurrying's": null, + "slurry": [["M", "G", "D", "S"]], + "slurry's": null, + "slurries": null, + "slushiness": [["S", "M"]], + "slushinesses": null, + "slushiness's": null, + "slush": [["S", "D", "M", "G"]], + "slushes": null, + "slushed": null, + "slush's": null, + "slushing": null, + "slushy": [["R", "T", "P"]], + "slushier": null, + "slushiest": null, + "slut": [["M", "S"]], + "slut's": null, + "sluts": null, + "sluttish": null, + "slutty": [["T", "R"]], + "sluttiest": null, + "sluttier": null, + "Sly": [["M"]], + "Sly's": null, + "slyness": [["M", "S"]], + "slyness's": null, + "slynesses": null, + "sly": [["R", "T", "Y"]], + "slier": null, + "sliest": null, + "slyly": null, + "smacker": [["M"]], + "smacker's": null, + "smack": [["S", "M", "R", "D", "G", "Z"]], + "smacks": null, + "smack's": null, + "smacked": null, + "smacking": null, + "smackers": null, + "smallholders": null, + "smallholding": [["M", "S"]], + "smallholding's": null, + "smallholdings": null, + "smallish": null, + "Small": [["M"]], + "Small's": null, + "smallness": [["S"]], + "smallnesses": null, + "smallpox": [["S", "M"]], + "smallpoxes": null, + "smallpox's": null, + "small": [["S", "G", "T", "R", "D", "P"]], + "smalls": null, + "smalling": null, + "smallest": null, + "smaller": null, + "smalled": null, + "smalltalk": null, + "smalltime": null, + "Smallwood": [["M"]], + "Smallwood's": null, + "smarmy": [["R", "T"]], + "smarmier": null, + "smarmiest": null, + "smarten": [["G", "D"]], + "smartening": null, + "smartened": null, + "smartness": [["S"]], + "smartnesses": null, + "smartypants": null, + "smart": [["Y", "R", "D", "N", "S", "G", "T", "X", "P"]], + "smartly": null, + "smarter": null, + "smarted": null, + "smarts": null, + "smarting": null, + "smartest": null, + "smartens": null, + "smasher": [["M"]], + "smasher's": null, + "smash": [["G", "Z", "R", "S", "D"]], + "smashing": [["Y"]], + "smashers": null, + "smashes": null, + "smashed": null, + "smashingly": null, + "smashup": [["S"]], + "smashups": null, + "smattering": [["S", "M"]], + "smatterings": null, + "smattering's": null, + "smearer": [["M"]], + "smearer's": null, + "smear": [["G", "R", "D", "S"]], + "smearing": null, + "smeared": null, + "smears": null, + "smeary": [["T", "R"]], + "smeariest": null, + "smearier": null, + "smeller": [["M"]], + "smeller's": null, + "smelliness": [["M", "S"]], + "smelliness's": null, + "smellinesses": null, + "smell": [["S", "B", "R", "D", "G"]], + "smells": null, + "smellable": null, + "smelled": null, + "smelling": null, + "smelly": [["T", "R", "P"]], + "smelliest": null, + "smellier": null, + "smelter": [["M"]], + "smelter's": null, + "smelt": [["S", "R", "D", "G", "Z"]], + "smelts": null, + "smelted": null, + "smelting": null, + "smelters": null, + "Smetana": [["M"]], + "Smetana's": null, + "smidgen": [["M", "S"]], + "smidgen's": null, + "smidgens": null, + "smilax": [["M", "S"]], + "smilax's": null, + "smilaxes": null, + "smile": [["G", "M", "D", "S", "R"]], + "smiling": [["U", "Y"]], + "smile's": null, + "smiled": null, + "smiles": null, + "smiler": null, + "smiley": [["M"]], + "smiley's": null, + "smilies": null, + "unsmiling": null, + "unsmilingly": null, + "smilingly": null, + "smirch": [["S", "D", "G"]], + "smirches": null, + "smirched": null, + "smirching": null, + "smirk": [["G", "S", "M", "D"]], + "smirking": null, + "smirks": null, + "smirk's": null, + "smirked": null, + "Smirnoff": [["M"]], + "Smirnoff's": null, + "smite": [["G", "S", "R"]], + "smiting": null, + "smites": null, + "smiter": [["M"]], + "smiter's": null, + "smith": [["D", "M", "G"]], + "smithed": null, + "smith's": null, + "smithing": null, + "smithereens": null, + "Smithfield": [["M"]], + "Smithfield's": null, + "Smith": [["M"]], + "Smith's": null, + "smiths": null, + "Smithsonian": [["M"]], + "Smithsonian's": null, + "Smithson": [["M"]], + "Smithson's": null, + "Smithtown": [["M"]], + "Smithtown's": null, + "smithy": [["S", "M"]], + "smithies": null, + "smithy's": null, + "smitten": null, + "Smitty": [["M"]], + "Smitty's": null, + "Sm": [["M"]], + "Sm's": null, + "smocking": [["M"]], + "smocking's": null, + "smock": [["S", "G", "M", "D", "J"]], + "smocks": null, + "smock's": null, + "smocked": null, + "smockings": null, + "smoggy": [["T", "R"]], + "smoggiest": null, + "smoggier": null, + "smog": [["S", "M"]], + "smogs": null, + "smog's": null, + "smoke": [["G", "Z", "M", "D", "S", "R", "B", "J"]], + "smoking": [["M"]], + "smokers": null, + "smoke's": null, + "smoked": null, + "smokes": null, + "smoker": [["M"]], + "smokable": null, + "smokings": null, + "smokehouse": [["M", "S"]], + "smokehouse's": null, + "smokehouses": null, + "smokeless": null, + "smoker's": null, + "smokescreen": [["S"]], + "smokescreens": null, + "smokestack": [["M", "S"]], + "smokestack's": null, + "smokestacks": null, + "Smokey": [["M"]], + "Smokey's": null, + "smokiness": [["S"]], + "smokinesses": null, + "smoking's": null, + "smoky": [["R", "S", "P", "T"]], + "smokier": null, + "smokies": null, + "smokiest": null, + "smoldering": [["Y"]], + "smolderingly": null, + "smolder": [["S", "G", "D"]], + "smolders": null, + "smoldered": null, + "Smolensk": [["M"]], + "Smolensk's": null, + "Smollett": [["M"]], + "Smollett's": null, + "smooch": [["S", "D", "G"]], + "smooches": null, + "smooched": null, + "smooching": null, + "smoothen": [["D", "G"]], + "smoothened": null, + "smoothening": null, + "smoother": [["M"]], + "smoother's": null, + "smoothie": [["S", "M"]], + "smoothies": null, + "smoothie's": null, + "smoothness": [["M", "S"]], + "smoothness's": null, + "smoothnesses": null, + "smooths": null, + "smooth": [["T", "Z", "G", "P", "R", "D", "N", "Y"]], + "smoothest": null, + "smoothers": null, + "smoothing": null, + "smoothed": null, + "smoothly": null, + "sm�rg�sbord": [["S", "M"]], + "sm�rg�sbords": null, + "sm�rg�sbord's": null, + "smote": null, + "smother": [["G", "S", "D"]], + "smothering": null, + "smothers": null, + "smothered": null, + "SMSA": [["M", "S"]], + "SMSA's": null, + "SMSAs": null, + "SMTP": null, + "Smucker": [["M"]], + "Smucker's": null, + "smudge": [["G", "S", "D"]], + "smudging": null, + "smudges": null, + "smudged": null, + "smudginess": [["M"]], + "smudginess's": null, + "smudgy": [["T", "R", "P"]], + "smudgiest": null, + "smudgier": null, + "smugged": null, + "smugger": null, + "smuggest": null, + "smugging": null, + "smuggle": [["J", "Z", "G", "S", "R", "D"]], + "smugglings": null, + "smugglers": null, + "smuggling": null, + "smuggles": null, + "smuggler": [["M"]], + "smuggled": null, + "smuggler's": null, + "smugness": [["M", "S"]], + "smugness's": null, + "smugnesses": null, + "smug": [["Y", "S", "P"]], + "smugly": null, + "smugs": null, + "smut": [["S", "M"]], + "smuts": null, + "smut's": null, + "Smuts": [["M"]], + "Smuts's": null, + "smutted": null, + "smuttiness": [["S", "M"]], + "smuttinesses": null, + "smuttiness's": null, + "smutting": null, + "smutty": [["T", "R", "P"]], + "smuttiest": null, + "smuttier": null, + "Smyrna": [["M"]], + "Smyrna's": null, + "snack": [["S", "G", "M", "D"]], + "snacks": null, + "snacking": null, + "snack's": null, + "snacked": null, + "snaffle": [["G", "D", "S", "M"]], + "snaffling": null, + "snaffled": null, + "snaffles": null, + "snaffle's": null, + "snafu": [["D", "M", "S", "G"]], + "snafued": null, + "snafu's": null, + "snafus": null, + "snafuing": null, + "snagged": null, + "snagging": null, + "snag": [["M", "S"]], + "snag's": null, + "snags": null, + "snail": [["G", "S", "D", "M"]], + "snailing": null, + "snails": null, + "snailed": null, + "snail's": null, + "Snake": null, + "snakebird": [["M"]], + "snakebird's": null, + "snakebite": [["M", "S"]], + "snakebite's": null, + "snakebites": null, + "snake": [["D", "S", "G", "M"]], + "snaked": null, + "snakes": null, + "snaking": null, + "snake's": null, + "snakelike": null, + "snakeroot": [["M"]], + "snakeroot's": null, + "snaky": [["T", "R"]], + "snakiest": null, + "snakier": null, + "snapback": [["M"]], + "snapback's": null, + "snapdragon": [["M", "S"]], + "snapdragon's": null, + "snapdragons": null, + "snapped": [["U"]], + "unsnapped": null, + "snapper": [["S", "M"]], + "snappers": null, + "snapper's": null, + "snappily": null, + "snappiness": [["S", "M"]], + "snappinesses": null, + "snappiness's": null, + "snapping": [["U"]], + "unsnapping": null, + "snappishness": [["S", "M"]], + "snappishnesses": null, + "snappishness's": null, + "snappish": [["P", "Y"]], + "snappishly": null, + "snappy": [["P", "T", "R"]], + "snappiest": null, + "snappier": null, + "snapshot": [["M", "S"]], + "snapshot's": null, + "snapshots": null, + "snapshotted": null, + "snapshotting": null, + "snap": [["U", "S"]], + "unsnap": null, + "unsnaps": null, + "snaps": null, + "snare": [["D", "S", "R", "G", "M"]], + "snared": null, + "snares": null, + "snarer": [["M"]], + "snaring": null, + "snare's": null, + "snarer's": null, + "snarf": [["J", "S", "G", "D"]], + "snarfings": null, + "snarfs": null, + "snarfing": null, + "snarfed": null, + "snarler": [["M"]], + "snarler's": null, + "snarling": [["Y"]], + "snarlingly": null, + "snarl": [["U", "G", "S", "D"]], + "unsnarl": null, + "unsnarling": null, + "unsnarls": null, + "unsnarled": null, + "snarls": null, + "snarled": null, + "snarly": [["R", "T"]], + "snarlier": null, + "snarliest": null, + "snatch": [["D", "R", "S", "Z", "G"]], + "snatched": null, + "snatcher": [["M"]], + "snatches": null, + "snatchers": null, + "snatching": null, + "snatcher's": null, + "snazzily": null, + "snazzy": [["T", "R"]], + "snazziest": null, + "snazzier": null, + "Snead": [["M"]], + "Snead's": null, + "sneaker": [["M", "D"]], + "sneaker's": null, + "sneakered": null, + "sneakily": null, + "sneakiness": [["S", "M"]], + "sneakinesses": null, + "sneakiness's": null, + "sneaking": [["Y"]], + "sneakingly": null, + "sneak": [["R", "D", "G", "Z", "S"]], + "sneaked": null, + "sneakers": null, + "sneaks": null, + "sneaky": [["P", "R", "T"]], + "sneakier": null, + "sneakiest": null, + "Sneed": [["M"]], + "Sneed's": null, + "sneerer": [["M"]], + "sneerer's": null, + "sneer": [["G", "M", "R", "D", "J", "S"]], + "sneering": [["Y"]], + "sneer's": null, + "sneered": null, + "sneerings": null, + "sneers": null, + "sneeringly": null, + "sneeze": [["S", "R", "D", "G"]], + "sneezes": null, + "sneezer": null, + "sneezed": null, + "sneezing": null, + "Snell": [["M"]], + "Snell's": null, + "snicker": [["G", "M", "R", "D"]], + "snickering": null, + "snicker's": null, + "snickerer": null, + "snickered": null, + "snick": [["M", "R", "Z"]], + "snick's": null, + "snickers": null, + "snideness": [["M"]], + "snideness's": null, + "Snider": [["M"]], + "Snider's": null, + "snide": [["Y", "T", "S", "R", "P"]], + "snidely": null, + "snidest": null, + "snides": null, + "snider": null, + "sniffer": [["M"]], + "sniffer's": null, + "sniff": [["G", "Z", "S", "R", "D"]], + "sniffing": null, + "sniffers": null, + "sniffs": null, + "sniffed": null, + "sniffle": [["G", "D", "R", "S"]], + "sniffling": null, + "sniffled": null, + "sniffler": [["M"]], + "sniffles": [["M"]], + "sniffler's": null, + "sniffles's": null, + "snifter": [["M", "D", "S", "G"]], + "snifter's": null, + "sniftered": null, + "snifters": null, + "sniftering": null, + "snigger's": null, + "sniper": [["M"]], + "sniper's": null, + "snipe": [["S", "M"]], + "snipes": null, + "snipe's": null, + "snipped": null, + "snipper": [["S", "M"]], + "snippers": null, + "snipper's": null, + "snippet": [["S", "M"]], + "snippets": null, + "snippet's": null, + "snipping": null, + "snippy": [["R", "T"]], + "snippier": null, + "snippiest": null, + "snip": [["S", "G", "D", "R", "Z"]], + "snips": null, + "sniping": null, + "sniped": null, + "snipers": null, + "snitch": [["G", "D", "S"]], + "snitching": null, + "snitched": null, + "snitches": null, + "snit": [["S", "M"]], + "snits": null, + "snit's": null, + "sniveler": [["M"]], + "sniveler's": null, + "snivel": [["J", "S", "Z", "G", "D", "R"]], + "snivelings": null, + "snivels": null, + "snivelers": null, + "sniveling": null, + "sniveled": null, + "Sn": [["M"]], + "Sn's": null, + "snobbery": [["S", "M"]], + "snobberies": null, + "snobbery's": null, + "snobbishness": [["S"]], + "snobbishnesses": null, + "snobbish": [["Y", "P"]], + "snobbishly": null, + "snobby": [["R", "T"]], + "snobbier": null, + "snobbiest": null, + "snob": [["M", "S"]], + "snob's": null, + "snobs": null, + "Snodgrass": [["M"]], + "Snodgrass's": null, + "snood": [["S", "G", "D", "M"]], + "snoods": null, + "snooding": null, + "snooded": null, + "snood's": null, + "snooker": [["G", "M", "D"]], + "snookering": null, + "snooker's": null, + "snookered": null, + "snook": [["S", "M", "R", "Z"]], + "snooks": null, + "snook's": null, + "snookers": null, + "snooper": [["M"]], + "snooper's": null, + "snoop": [["S", "R", "D", "G", "Z"]], + "snoops": null, + "snooped": null, + "snooping": null, + "snoopers": null, + "Snoopy": [["M"]], + "Snoopy's": null, + "snoopy": [["R", "T"]], + "snoopier": null, + "snoopiest": null, + "snootily": null, + "snootiness": [["M", "S"]], + "snootiness's": null, + "snootinesses": null, + "snoot": [["S", "D", "M", "G"]], + "snoots": null, + "snooted": null, + "snoot's": null, + "snooting": null, + "snooty": [["T", "R", "P"]], + "snootiest": null, + "snootier": null, + "snooze": [["G", "S", "D"]], + "snoozing": null, + "snoozes": null, + "snoozed": null, + "snore": [["D", "S", "R", "G", "Z"]], + "snored": null, + "snores": null, + "snorer": null, + "snoring": null, + "snorers": null, + "snorkel": [["Z", "G", "S", "R", "D", "M"]], + "snorkelers": null, + "snorkeling": null, + "snorkels": null, + "snorkeler": null, + "snorkeled": null, + "snorkel's": null, + "snorter": [["M"]], + "snorter's": null, + "snort": [["G", "S", "Z", "R", "D"]], + "snorting": null, + "snorts": null, + "snorters": null, + "snorted": null, + "snot": [["M", "S"]], + "snot's": null, + "snots": null, + "snotted": null, + "snottily": null, + "snottiness": [["S", "M"]], + "snottinesses": null, + "snottiness's": null, + "snotting": null, + "snotty": [["T", "R", "P"]], + "snottiest": null, + "snottier": null, + "snout": [["S", "G", "D", "M"]], + "snouts": null, + "snouting": null, + "snouted": null, + "snout's": null, + "snowball": [["S", "D", "M", "G"]], + "snowballs": null, + "snowballed": null, + "snowball's": null, + "snowballing": null, + "snowbank": [["S", "M"]], + "snowbanks": null, + "snowbank's": null, + "Snowbelt": [["S", "M"]], + "Snowbelts": null, + "Snowbelt's": null, + "snowbird": [["S", "M"]], + "snowbirds": null, + "snowbird's": null, + "snowblower": [["S"]], + "snowblowers": null, + "snowboard": [["G", "Z", "D", "R", "J", "S"]], + "snowboarding": null, + "snowboarders": null, + "snowboarded": null, + "snowboarder": null, + "snowboardings": null, + "snowboards": null, + "snowbound": null, + "snowcapped": null, + "snowdrift": [["M", "S"]], + "snowdrift's": null, + "snowdrifts": null, + "snowdrop": [["M", "S"]], + "snowdrop's": null, + "snowdrops": null, + "snowfall": [["M", "S"]], + "snowfall's": null, + "snowfalls": null, + "snowfield": [["M", "S"]], + "snowfield's": null, + "snowfields": null, + "snowflake": [["M", "S"]], + "snowflake's": null, + "snowflakes": null, + "snow": [["G", "D", "M", "S"]], + "snowing": null, + "snowed": null, + "snow's": null, + "snows": null, + "snowily": null, + "snowiness": [["M", "S"]], + "snowiness's": null, + "snowinesses": null, + "Snow": [["M"]], + "Snow's": null, + "snowman": [["M"]], + "snowman's": null, + "snowmen": null, + "snowmobile": [["G", "M", "D", "R", "S"]], + "snowmobiling": null, + "snowmobile's": null, + "snowmobiled": null, + "snowmobiler": null, + "snowmobiles": null, + "snowplough": [["M"]], + "snowplough's": null, + "snowploughs": null, + "snowplow": [["S", "M", "G", "D"]], + "snowplows": null, + "snowplow's": null, + "snowplowing": null, + "snowplowed": null, + "snowshed": null, + "snowshoeing": null, + "snowshoe": [["M", "R", "S"]], + "snowshoe's": null, + "snowshoer": [["M"]], + "snowshoes": null, + "snowshoer's": null, + "snowstorm": [["M", "S"]], + "snowstorm's": null, + "snowstorms": null, + "snowsuit": [["S"]], + "snowsuits": null, + "snowy": [["R", "T", "P"]], + "snowier": null, + "snowiest": null, + "snubbed": null, + "snubber": null, + "snubbing": null, + "snub": [["S", "P"]], + "snubs": null, + "snubness": null, + "snuffbox": [["S", "M"]], + "snuffboxes": null, + "snuffbox's": null, + "snuffer": [["M"]], + "snuffer's": null, + "snuff": [["G", "Z", "S", "Y", "R", "D"]], + "snuffing": null, + "snuffers": null, + "snuffs": null, + "snuffly": [["R", "T"]], + "snuffed": null, + "snuffle": [["G", "D", "S", "R"]], + "snuffling": null, + "snuffled": null, + "snuffles": null, + "snuffler": [["M"]], + "snuffler's": null, + "snufflier": null, + "snuffliest": null, + "snugged": null, + "snugger": null, + "snuggest": null, + "snugging": null, + "snuggle": [["G", "D", "S"]], + "snuggling": null, + "snuggled": null, + "snuggles": null, + "snuggly": null, + "snugness": [["M", "S"]], + "snugness's": null, + "snugnesses": null, + "snug": [["S", "Y", "P"]], + "snugs": null, + "snugly": null, + "Snyder": [["M"]], + "Snyder's": null, + "so": null, + "SO": null, + "soaker": [["M"]], + "soaker's": null, + "soak": [["G", "D", "R", "S", "J"]], + "soaking": null, + "soaked": null, + "soaks": null, + "soakings": null, + "soapbox": [["D", "S", "M", "G"]], + "soapboxed": null, + "soapboxes": null, + "soapbox's": null, + "soapboxing": null, + "soapiness": [["S"]], + "soapinesses": null, + "soap": [["M", "D", "R", "G", "S"]], + "soap's": null, + "soaped": null, + "soaper": null, + "soaping": null, + "soaps": null, + "soapstone": [["M", "S"]], + "soapstone's": null, + "soapstones": null, + "soapsud": [["S"]], + "soapsuds": null, + "soapy": [["R", "P", "T"]], + "soapier": null, + "soapiest": null, + "soar": [["D", "R", "J", "S", "G"]], + "soared": null, + "soarer": [["M"]], + "soarings": null, + "soars": null, + "soaring": [["Y"]], + "soarer's": null, + "soaringly": null, + "sobbed": null, + "sobbing": [["Y"]], + "sobbingly": null, + "soberer": [["M"]], + "soberer's": null, + "soberness": [["S", "M"]], + "sobernesses": null, + "soberness's": null, + "sober": [["P", "G", "T", "Y", "R", "D"]], + "sobering": null, + "soberest": null, + "soberly": null, + "sobered": null, + "sobriety": [["S", "I", "M"]], + "sobrieties": null, + "insobrieties": null, + "insobriety": null, + "insobriety's": null, + "sobriety's": null, + "sobriquet": [["M", "S"]], + "sobriquet's": null, + "sobriquets": null, + "sob": [["S", "Z", "R"]], + "sobs": null, + "sobers": null, + "Soc": null, + "soccer": [["M", "S"]], + "soccer's": null, + "soccers": null, + "sociabilities": null, + "sociability": [["I", "M"]], + "insociability": null, + "insociability's": null, + "sociability's": null, + "sociable": [["S"]], + "sociables": null, + "sociably": [["I", "U"]], + "insociably": null, + "unsociably": null, + "socialism": [["S", "M"]], + "socialisms": null, + "socialism's": null, + "socialistic": null, + "socialist": [["S", "M"]], + "socialists": null, + "socialist's": null, + "socialite": [["S", "M"]], + "socialites": null, + "socialite's": null, + "sociality": [["M"]], + "sociality's": null, + "socialization": [["S", "M"]], + "socializations": null, + "socialization's": null, + "socialized": [["U"]], + "unsocialized": null, + "socializer": [["M"]], + "socializer's": null, + "socialize": [["R", "S", "D", "G"]], + "socializes": null, + "socializing": null, + "socially": [["U"]], + "unsocially": null, + "social": [["S", "Y"]], + "socials": null, + "societal": [["Y"]], + "societally": null, + "society": [["M", "S"]], + "society's": null, + "societies": null, + "socio": null, + "sociobiology": [["M"]], + "sociobiology's": null, + "sociocultural": [["Y"]], + "socioculturally": null, + "sociodemographic": null, + "socioeconomically": null, + "socioeconomic": [["S"]], + "socioeconomics": null, + "sociolinguistics": [["M"]], + "sociolinguistics's": null, + "sociological": [["M", "Y"]], + "sociological's": null, + "sociologically": null, + "sociologist": [["S", "M"]], + "sociologists": null, + "sociologist's": null, + "sociology": [["S", "M"]], + "sociologies": null, + "sociology's": null, + "sociometric": null, + "sociometry": [["M"]], + "sociometry's": null, + "sociopath": [["M"]], + "sociopath's": null, + "sociopaths": null, + "socket": [["S", "M", "D", "G"]], + "sockets": null, + "socket's": null, + "socketed": null, + "socketing": null, + "sock": [["G", "D", "M", "S"]], + "socking": null, + "socked": null, + "sock's": null, + "socks": null, + "Socorro": [["M"]], + "Socorro's": null, + "Socrates": [["M"]], + "Socrates's": null, + "Socratic": [["S"]], + "Socratics": null, + "soc": [["S"]], + "socs": null, + "soda": [["S", "M"]], + "sodas": null, + "soda's": null, + "sodded": null, + "sodden": [["D", "Y", "P", "S", "G"]], + "soddened": null, + "soddenly": null, + "soddenness": [["M"]], + "soddens": null, + "soddening": null, + "soddenness's": null, + "sodding": null, + "Soddy": [["M"]], + "Soddy's": null, + "sodium": [["M", "S"]], + "sodium's": null, + "sodiums": null, + "sod": [["M", "S"]], + "sod's": null, + "sods": null, + "sodomite": [["M", "S"]], + "sodomite's": null, + "sodomites": null, + "sodomize": [["G", "D", "S"]], + "sodomizing": null, + "sodomized": null, + "sodomizes": null, + "Sodom": [["M"]], + "Sodom's": null, + "sodomy": [["S", "M"]], + "sodomies": null, + "sodomy's": null, + "soever": null, + "sofa": [["S", "M"]], + "sofas": null, + "sofa's": null, + "Sofia": [["M"]], + "Sofia's": null, + "Sofie": [["M"]], + "Sofie's": null, + "softball": [["M", "S"]], + "softball's": null, + "softballs": null, + "softbound": null, + "softener": [["M"]], + "softener's": null, + "soften": [["Z", "G", "R", "D"]], + "softeners": null, + "softening": null, + "softened": null, + "softhearted": null, + "softie's": null, + "softness": [["M", "S"]], + "softness's": null, + "softnesses": null, + "soft": [["S", "P", "X", "T", "Y", "N", "R"]], + "softs": null, + "softens": null, + "softest": null, + "softly": null, + "softer": null, + "software": [["M", "S"]], + "software's": null, + "softwares": null, + "softwood": [["S", "M"]], + "softwoods": null, + "softwood's": null, + "softy": [["S", "M"]], + "softies": null, + "softy's": null, + "soggily": null, + "sogginess": [["S"]], + "sogginesses": null, + "soggy": [["R", "P", "T"]], + "soggier": null, + "soggiest": null, + "Soho": [["M"]], + "Soho's": null, + "soign�": null, + "soiled": [["U"]], + "unsoiled": null, + "soil": [["S", "G", "M", "D"]], + "soils": null, + "soiling": null, + "soil's": null, + "soir�e": [["S", "M"]], + "soir�es": null, + "soir�e's": null, + "sojourn": [["R", "D", "Z", "G", "S", "M"]], + "sojourner": null, + "sojourned": null, + "sojourners": null, + "sojourning": null, + "sojourns": null, + "sojourn's": null, + "solace": [["G", "M", "S", "R", "D"]], + "solacing": null, + "solace's": null, + "solaces": null, + "solacer": [["M"]], + "solaced": null, + "solacer's": null, + "solaria": null, + "solarium": [["M"]], + "solarium's": null, + "solar": [["S"]], + "solars": null, + "solder": [["R", "D", "M", "S", "Z", "G"]], + "solderer": null, + "soldered": null, + "solder's": null, + "solders": null, + "solderers": null, + "soldering": null, + "soldier": [["M", "D", "Y", "S", "G"]], + "soldier's": null, + "soldiered": null, + "soldierly": null, + "soldiers": null, + "soldiering": null, + "soldiery": [["M", "S"]], + "soldiery's": null, + "soldieries": null, + "sold": [["R", "U"]], + "unsolder": null, + "unsold": null, + "solecism": [["M", "S"]], + "solecism's": null, + "solecisms": null, + "soled": [["F", "A"]], + "resoled": null, + "solemness": null, + "solemnify": [["G", "S", "D"]], + "solemnifying": null, + "solemnifies": null, + "solemnified": null, + "solemnity": [["M", "S"]], + "solemnity's": null, + "solemnities": null, + "solemnization": [["S", "M"]], + "solemnizations": null, + "solemnization's": null, + "solemnize": [["G", "S", "D"]], + "solemnizing": null, + "solemnizes": null, + "solemnized": null, + "solemnness": [["S", "M"]], + "solemnnesses": null, + "solemnness's": null, + "solemn": [["P", "T", "R", "Y"]], + "solemnest": null, + "solemner": null, + "solemnly": null, + "solenoid": [["M", "S"]], + "solenoid's": null, + "solenoids": null, + "soler": [["F"]], + "soles": [["I", "F", "A"]], + "insoles": null, + "consoles": null, + "resoles": null, + "sole": [["Y", "S", "P"]], + "solely": null, + "soleness": null, + "sol": [["G", "S", "M", "D", "R"]], + "soling": [["N", "M"]], + "sols": null, + "sol's": null, + "solicitation": [["S"]], + "solicitations": null, + "solicited": [["U"]], + "unsolicited": null, + "solicitor": [["M", "S"]], + "solicitor's": null, + "solicitors": null, + "solicitousness": [["S"]], + "solicitousnesses": null, + "solicitous": [["Y", "P"]], + "solicitously": null, + "solicit": [["S", "D", "G"]], + "solicits": null, + "soliciting": null, + "solicitude": [["M", "S"]], + "solicitude's": null, + "solicitudes": null, + "solidarity": [["M", "S"]], + "solidarity's": null, + "solidarities": null, + "solidi": null, + "solidification": [["M"]], + "solidification's": null, + "solidify": [["N", "X", "S", "D", "G"]], + "solidifications": null, + "solidifies": null, + "solidified": null, + "solidifying": null, + "solidity": [["S"]], + "solidities": null, + "solidness": [["S", "M"]], + "solidnesses": null, + "solidness's": null, + "solid": [["S", "T", "Y", "R", "P"]], + "solids": null, + "solidest": null, + "solidly": null, + "solider": null, + "solidus": [["M"]], + "solidus's": null, + "soliloquies": null, + "soliloquize": [["D", "S", "G"]], + "soliloquized": null, + "soliloquizes": null, + "soliloquizing": null, + "soliloquy": [["M"]], + "soliloquy's": null, + "solingen": null, + "soling's": null, + "solipsism": [["M", "S"]], + "solipsism's": null, + "solipsisms": null, + "solipsist": [["S"]], + "solipsists": null, + "Solis": [["M"]], + "Solis's": null, + "solitaire": [["S", "M"]], + "solitaires": null, + "solitaire's": null, + "solitary": [["S", "P"]], + "solitaries": null, + "solitariness": null, + "solitude": [["S", "M"]], + "solitudes": null, + "solitude's": null, + "Sollie": [["M"]], + "Sollie's": null, + "Solly": [["M"]], + "Solly's": null, + "Sol": [["M", "Y"]], + "Sol's": null, + "solo": [["D", "M", "S", "G"]], + "soloed": null, + "solo's": null, + "solos": null, + "soloing": null, + "soloist": [["S", "M"]], + "soloists": null, + "soloist's": null, + "Solomon": [["S", "M"]], + "Solomons": null, + "Solomon's": null, + "Solon": [["M"]], + "Solon's": null, + "Soloviev": [["M"]], + "Soloviev's": null, + "solstice": [["S", "M"]], + "solstices": null, + "solstice's": null, + "solubility": [["I", "M", "S"]], + "insolubility": null, + "insolubility's": null, + "insolubilities": null, + "solubility's": null, + "solubilities": null, + "soluble": [["S", "I"]], + "solubles": null, + "insolubles": null, + "solute": [["E", "N", "A", "X", "S"]], + "dissolution": null, + "dissolutions": null, + "dissolutes": null, + "solution": [["A", "M", "E"]], + "resolution": null, + "resolutions": null, + "resolutes": null, + "solutions": null, + "solutes": null, + "solute's": null, + "resolution's": null, + "solution's": null, + "dissolution's": null, + "solvable": [["U", "I"]], + "unsolvable": null, + "insolvable": null, + "solvating": null, + "solve": [["A", "B", "S", "R", "D", "Z", "G"]], + "resolve": null, + "resolves": null, + "resolver": null, + "resolvers": null, + "resolving": null, + "solves": [["E"]], + "solver": [["M", "E", "A"]], + "solved": [["E", "U"]], + "solvers": null, + "solving": [["E"]], + "unsolved": null, + "solvency": [["I", "M", "S"]], + "insolvency": null, + "insolvency's": null, + "insolvencies": null, + "solvency's": null, + "solvencies": null, + "solvent": [["I", "S"]], + "insolvent": null, + "insolvents": null, + "solvents": null, + "solvently": null, + "solvent's": null, + "solver's": null, + "dissolver's": null, + "resolver's": null, + "dissolver": null, + "Solzhenitsyn": [["M"]], + "Solzhenitsyn's": null, + "Somalia": [["M"]], + "Somalia's": null, + "Somalian": [["S"]], + "Somalians": null, + "Somali": [["M", "S"]], + "Somali's": null, + "Somalis": null, + "soma": [["M"]], + "soma's": null, + "somatic": null, + "somberness": [["S", "M"]], + "sombernesses": null, + "somberness's": null, + "somber": [["P", "Y"]], + "somberly": null, + "sombre": null, + "sombrero": [["S", "M"]], + "sombreros": null, + "sombrero's": null, + "somebody'll": null, + "somebody": [["S", "M"]], + "somebodies": null, + "somebody's": null, + "someday": null, + "somehow": null, + "someone'll": null, + "someone": [["S", "M"]], + "someones": null, + "someone's": null, + "someplace": [["M"]], + "someplace's": null, + "somersault": [["D", "S", "G", "M"]], + "somersaulted": null, + "somersaults": null, + "somersaulting": null, + "somersault's": null, + "Somerset": [["M"]], + "Somerset's": null, + "somerset": [["S"]], + "somersets": null, + "somersetted": null, + "somersetting": null, + "Somerville": [["M"]], + "Somerville's": null, + "something": [["S"]], + "somethings": null, + "sometime": [["S"]], + "sometimes": null, + "someway": [["S"]], + "someways": null, + "somewhat": [["S"]], + "somewhats": null, + "somewhere": [["S"]], + "somewheres": null, + "some": [["Z"]], + "somers": null, + "sommelier": [["S", "M"]], + "sommeliers": null, + "sommelier's": null, + "Somme": [["M"]], + "Somme's": null, + "somnambulism": [["S", "M"]], + "somnambulisms": null, + "somnambulism's": null, + "somnambulist": [["S", "M"]], + "somnambulists": null, + "somnambulist's": null, + "somnolence": [["M", "S"]], + "somnolence's": null, + "somnolences": null, + "somnolent": [["Y"]], + "somnolently": null, + "Somoza": [["M"]], + "Somoza's": null, + "sonar": [["S", "M"]], + "sonars": null, + "sonar's": null, + "sonata": [["M", "S"]], + "sonata's": null, + "sonatas": null, + "sonatina": [["S", "M"]], + "sonatinas": null, + "sonatina's": null, + "Sondheim": [["M"]], + "Sondheim's": null, + "Sondra": [["M"]], + "Sondra's": null, + "Sonenberg": [["M"]], + "Sonenberg's": null, + "songbag": null, + "songbird": [["S", "M"]], + "songbirds": null, + "songbird's": null, + "songbook": [["S"]], + "songbooks": null, + "songfest": [["M", "S"]], + "songfest's": null, + "songfests": null, + "songfulness": [["M"]], + "songfulness's": null, + "songful": [["Y", "P"]], + "songfully": null, + "Songhai": [["M"]], + "Songhai's": null, + "Songhua": [["M"]], + "Songhua's": null, + "song": [["M", "S"]], + "song's": null, + "songs": null, + "songster": [["M", "S"]], + "songster's": null, + "songsters": null, + "songstress": [["S", "M"]], + "songstresses": null, + "songstress's": null, + "songwriter": [["S", "M"]], + "songwriters": null, + "songwriter's": null, + "songwriting": null, + "Sonia": [["M"]], + "Sonia's": null, + "sonic": [["S"]], + "sonics": null, + "Sonja": [["M"]], + "Sonja's": null, + "Son": [["M"]], + "Son's": null, + "sonnet": [["M", "D", "S", "G"]], + "sonnet's": null, + "sonneted": null, + "sonnets": null, + "sonneting": null, + "Sonnie": [["M"]], + "Sonnie's": null, + "Sonni": [["M"]], + "Sonni's": null, + "Sonnnie": [["M"]], + "Sonnnie's": null, + "Sonny": [["M"]], + "Sonny's": null, + "sonny": [["S", "M"]], + "sonnies": null, + "sonny's": null, + "Sonoma": [["M"]], + "Sonoma's": null, + "Sonora": [["M"]], + "Sonora's": null, + "sonority": [["S"]], + "sonorities": null, + "sonorousness": [["S", "M"]], + "sonorousnesses": null, + "sonorousness's": null, + "sonorous": [["P", "Y"]], + "sonorously": null, + "son": [["S", "M", "Y"]], + "sons": null, + "son's": null, + "sonly": null, + "Sontag": [["M"]], + "Sontag's": null, + "sonuvabitch": null, + "Sonya": [["M"]], + "Sonya's": null, + "Sony": [["M"]], + "Sony's": null, + "soonish": null, + "soon": [["T", "R"]], + "soonest": null, + "sooner": null, + "soothe": null, + "soother": [["M"]], + "soother's": null, + "sooth": [["G", "Z", "T", "Y", "S", "R", "D", "M", "J"]], + "soothing": [["Y", "P"]], + "soothers": null, + "soothest": null, + "soothly": null, + "soothes": null, + "soothed": null, + "sooth's": null, + "soothings": null, + "soothingness": [["M"]], + "soothingness's": null, + "soothingly": null, + "sooths": null, + "soothsayer": [["M"]], + "soothsayer's": null, + "soothsay": [["J", "G", "Z", "R"]], + "soothsayings": null, + "soothsaying": null, + "soothsayers": null, + "soot": [["M", "G", "D", "S"]], + "soot's": null, + "sooting": null, + "sooted": null, + "soots": null, + "sooty": [["R", "T"]], + "sootier": null, + "sootiest": null, + "SOP": null, + "Sophey": [["M"]], + "Sophey's": null, + "Sophia": [["S", "M"]], + "Sophias": null, + "Sophia's": null, + "Sophie": [["M"]], + "Sophie's": null, + "Sophi": [["M"]], + "Sophi's": null, + "sophism": [["S", "M"]], + "sophisms": null, + "sophism's": null, + "sophister": [["M"]], + "sophister's": null, + "sophistical": null, + "sophisticatedly": null, + "sophisticated": [["U"]], + "unsophisticated": null, + "sophisticate": [["X", "N", "G", "D", "S"]], + "sophistications": null, + "sophistication": [["M", "U"]], + "sophisticating": null, + "sophisticates": null, + "sophistication's": null, + "unsophistication's": null, + "unsophistication": null, + "sophistic": [["S"]], + "sophistics": null, + "sophist": [["R", "M", "S"]], + "sophist's": null, + "sophists": null, + "sophistry": [["S", "M"]], + "sophistries": null, + "sophistry's": null, + "Sophoclean": null, + "Sophocles": [["M"]], + "Sophocles's": null, + "sophomore": [["S", "M"]], + "sophomores": null, + "sophomore's": null, + "sophomoric": null, + "Sophronia": [["M"]], + "Sophronia's": null, + "soporifically": null, + "soporific": [["S", "M"]], + "soporifics": null, + "soporific's": null, + "sopped": null, + "sopping": [["S"]], + "soppings": null, + "soppy": [["R", "T"]], + "soppier": null, + "soppiest": null, + "soprano": [["S", "M"]], + "sopranos": null, + "soprano's": null, + "sop": [["S", "M"]], + "sops": null, + "sop's": null, + "Sopwith": [["M"]], + "Sopwith's": null, + "sorbet": [["S", "M"]], + "sorbets": null, + "sorbet's": null, + "Sorbonne": [["M"]], + "Sorbonne's": null, + "sorcerer": [["M", "S"]], + "sorcerer's": null, + "sorcerers": null, + "sorceress": [["S"]], + "sorceresses": null, + "sorcery": [["M", "S"]], + "sorcery's": null, + "sorceries": null, + "Sorcha": [["M"]], + "Sorcha's": null, + "sordidness": [["S", "M"]], + "sordidnesses": null, + "sordidness's": null, + "sordid": [["P", "Y"]], + "sordidly": null, + "sorehead": [["S", "M"]], + "soreheads": null, + "sorehead's": null, + "soreness": [["S"]], + "sorenesses": null, + "Sorensen": [["M"]], + "Sorensen's": null, + "Sorenson": [["M"]], + "Sorenson's": null, + "sore": [["P", "Y", "T", "G", "D", "R", "S"]], + "sorely": null, + "sorest": null, + "soring": null, + "sored": null, + "sorer": null, + "sores": null, + "sorghum": [["M", "S"]], + "sorghum's": null, + "sorghums": null, + "sorority": [["M", "S"]], + "sorority's": null, + "sororities": null, + "sorrel": [["S", "M"]], + "sorrels": null, + "sorrel's": null, + "Sorrentine": [["M"]], + "Sorrentine's": null, + "sorrily": null, + "sorriness": [["S", "M"]], + "sorrinesses": null, + "sorriness's": null, + "sorrower": [["M"]], + "sorrower's": null, + "sorrowfulness": [["S", "M"]], + "sorrowfulnesses": null, + "sorrowfulness's": null, + "sorrowful": [["Y", "P"]], + "sorrowfully": null, + "sorrow": [["G", "R", "D", "M", "S"]], + "sorrowing": null, + "sorrowed": null, + "sorrow's": null, + "sorrows": null, + "sorry": [["P", "T", "S", "R"]], + "sorriest": null, + "sorries": null, + "sorrier": null, + "sorta": null, + "sortable": null, + "sorted": [["U"]], + "unsorted": null, + "sorter": [["M", "S"]], + "sorter's": null, + "sorters": null, + "sort": [["F", "S", "A", "G", "D"]], + "consort": null, + "consorts": null, + "consorting": null, + "consorted": null, + "sorts": null, + "resorts": null, + "resorting": null, + "resorted": null, + "sorting": null, + "sortieing": null, + "sortie": [["M", "S", "D"]], + "sortie's": null, + "sorties": null, + "sortied": null, + "sort's": null, + "sos": null, + "SOS": null, + "Sosa": [["M"]], + "Sosa's": null, + "Sosanna": [["M"]], + "Sosanna's": null, + "Soto": [["M"]], + "Soto's": null, + "sot": [["S", "M"]], + "sots": null, + "sot's": null, + "sottish": null, + "soubriquet's": null, + "souffl�": [["M", "S"]], + "souffl�'s": null, + "souffl�s": null, + "sough": [["D", "G"]], + "soughed": null, + "soughing": null, + "soughs": null, + "sought": [["U"]], + "unsought": null, + "soulfulness": [["M", "S"]], + "soulfulness's": null, + "soulfulnesses": null, + "soulful": [["Y", "P"]], + "soulfully": null, + "soulless": [["Y"]], + "soullessly": null, + "soul": [["M", "D", "S"]], + "soul's": null, + "souled": null, + "souls": null, + "sound": [["A", "U", "D"]], + "resounded": null, + "unsound": [["P", "T"]], + "unsounded": null, + "sounded": null, + "soundboard": [["M", "S"]], + "soundboard's": null, + "soundboards": null, + "sounders": null, + "sounder's": null, + "sounder": [["U"]], + "unsounder": null, + "soundest": null, + "sounding": [["A", "Y"]], + "resoundingly": null, + "soundingly": null, + "soundings": null, + "sounding's": null, + "soundless": [["Y"]], + "soundlessly": null, + "soundly": [["U"]], + "unsoundly": null, + "soundness": [["U", "M", "S"]], + "unsoundness": null, + "unsoundness's": null, + "unsoundnesses": null, + "soundness's": null, + "soundnesses": null, + "soundproof": [["G", "S", "D"]], + "soundproofing": [["M"]], + "soundproofs": null, + "soundproofed": null, + "soundproofing's": null, + "sound's": null, + "sounds": [["A"]], + "resounds": null, + "soundtrack": [["M", "S"]], + "soundtrack's": null, + "soundtracks": null, + "soup�on": [["S", "M"]], + "soup�ons": null, + "soup�on's": null, + "soup": [["G", "M", "D", "S"]], + "souping": null, + "soup's": null, + "souped": null, + "soups": null, + "Souphanouvong": [["M"]], + "Souphanouvong's": null, + "soupy": [["R", "T"]], + "soupier": null, + "soupiest": null, + "source": [["A", "S", "D", "M", "G"]], + "resource": null, + "resources": null, + "resourced": null, + "resource's": null, + "resourcing": null, + "sources": null, + "sourced": null, + "source's": null, + "sourcing": null, + "sourceless": null, + "sourdough": null, + "sourdoughs": null, + "sourish": null, + "sourness": [["M", "S"]], + "sourness's": null, + "sournesses": null, + "sourpuss": [["M", "S"]], + "sourpuss's": null, + "sourpusses": null, + "sour": [["T", "Y", "D", "R", "P", "S", "G"]], + "sourest": null, + "sourly": null, + "soured": null, + "sourer": null, + "sours": null, + "souring": null, + "Sousa": [["M"]], + "Sousa's": null, + "sousaphone": [["S", "M"]], + "sousaphones": null, + "sousaphone's": null, + "sous": [["D", "S", "G"]], + "soused": null, + "souses": null, + "sousing": null, + "souse": null, + "sou": [["S", "M", "H"]], + "sou's": null, + "south": [["R", "D", "M", "G"]], + "Southampton": [["M"]], + "Southampton's": null, + "southbound": null, + "southeastern": null, + "southeaster": [["Y", "M"]], + "southeasterly": null, + "southeaster's": null, + "Southeast": [["M", "S"]], + "Southeast's": null, + "Southeasts": null, + "southeast": [["R", "Z", "M", "S"]], + "southeasters": null, + "southeast's": null, + "southeasts": null, + "southeastward": [["S"]], + "southeastwards": null, + "southerly": [["S"]], + "southerlies": null, + "souther": [["M", "Y"]], + "souther's": null, + "southerner": [["M"]], + "southerner's": null, + "Southerner": [["M", "S"]], + "Southerner's": null, + "Southerners": null, + "southernisms": null, + "southernmost": null, + "southern": [["P", "Z", "S", "Y", "R"]], + "southernness": null, + "southerners": null, + "southerns": null, + "southernly": null, + "Southey": [["M"]], + "Southey's": null, + "Southfield": [["M"]], + "Southfield's": null, + "southing": [["M"]], + "southing's": null, + "southland": [["M"]], + "southland's": null, + "South": [["M"]], + "South's": null, + "southpaw": [["M", "S"]], + "southpaw's": null, + "southpaws": null, + "southed": null, + "south's": null, + "souths": null, + "Souths": null, + "southward": [["S"]], + "southwards": null, + "southwestern": null, + "southwester": [["Y", "M"]], + "southwesterly": null, + "southwester's": null, + "Southwest": [["M", "S"]], + "Southwest's": null, + "Southwests": null, + "southwest": [["R", "M", "S", "Z"]], + "southwest's": null, + "southwests": null, + "southwesters": null, + "southwestward": [["S"]], + "southwestwards": null, + "souvenir": [["S", "M"]], + "souvenirs": null, + "souvenir's": null, + "sou'wester": null, + "sovereignty": [["M", "S"]], + "sovereignty's": null, + "sovereignties": null, + "sovereign": [["Y", "M", "S"]], + "sovereignly": null, + "sovereign's": null, + "sovereigns": null, + "soviet": [["M", "S"]], + "soviet's": null, + "soviets": null, + "Soviet": [["S"]], + "Soviets": null, + "sow": [["A", "D", "G", "S"]], + "resow": null, + "resowed": null, + "resowing": null, + "resows": null, + "sowed": null, + "sowing": null, + "sows": null, + "sowbelly": [["M"]], + "sowbelly's": null, + "sowens": [["M"]], + "sowens's": null, + "sower": [["D", "S"]], + "sowered": null, + "sowers": null, + "Soweto": [["M"]], + "Soweto's": null, + "sown": [["A"]], + "resown": null, + "sox's": null, + "soybean": [["M", "S"]], + "soybean's": null, + "soybeans": null, + "Soyinka": [["M"]], + "Soyinka's": null, + "soy": [["M", "S"]], + "soy's": null, + "soys": null, + "Soyuz": [["M"]], + "Soyuz's": null, + "Spaatz": [["M"]], + "Spaatz's": null, + "spacecraft": [["M", "S"]], + "spacecraft's": null, + "spacecrafts": null, + "space": [["D", "S", "R", "G", "Z", "M", "J"]], + "spaced": null, + "spaces": null, + "spacer": [["M"]], + "spacing": [["M"]], + "spacers": null, + "space's": null, + "spacings": null, + "spaceflight": [["S"]], + "spaceflights": null, + "spaceman": [["M"]], + "spaceman's": null, + "spacemen": null, + "spaceport": [["S", "M"]], + "spaceports": null, + "spaceport's": null, + "spacer's": null, + "spaceship": [["M", "S"]], + "spaceship's": null, + "spaceships": null, + "spacesuit": [["M", "S"]], + "spacesuit's": null, + "spacesuits": null, + "spacewalk": [["G", "S", "M", "D"]], + "spacewalking": null, + "spacewalks": null, + "spacewalk's": null, + "spacewalked": null, + "Spacewar": [["M"]], + "Spacewar's": null, + "spacewoman": null, + "spacewomen": null, + "spacey": null, + "spacial": null, + "spacier": null, + "spaciest": null, + "spaciness": null, + "spacing's": null, + "spaciousness": [["S", "M"]], + "spaciousnesses": null, + "spaciousness's": null, + "spacious": [["P", "Y"]], + "spaciously": null, + "Spackle": null, + "spade": [["D", "S", "R", "G", "M"]], + "spaded": null, + "spades": null, + "spader": [["M"]], + "spading": null, + "spade's": null, + "spadeful": [["S", "M"]], + "spadefuls": null, + "spadeful's": null, + "spader's": null, + "spadework": [["S", "M"]], + "spadeworks": null, + "spadework's": null, + "spadices": null, + "spadix": [["M"]], + "spadix's": null, + "Spafford": [["M"]], + "Spafford's": null, + "spaghetti": [["S", "M"]], + "spaghettis": null, + "spaghetti's": null, + "Spahn": [["M"]], + "Spahn's": null, + "Spain": [["M"]], + "Spain's": null, + "spake": null, + "Spalding": [["M"]], + "Spalding's": null, + "Spam": [["M"]], + "Spam's": null, + "spa": [["M", "S"]], + "spa's": null, + "spas": null, + "Span": null, + "spandex": [["M", "S"]], + "spandex's": null, + "spandexes": null, + "spandrels": null, + "spangle": [["G", "M", "D", "S"]], + "spangling": null, + "spangle's": null, + "spangled": null, + "spangles": null, + "Spanglish": [["S"]], + "Spanglishes": null, + "Spaniard": [["S", "M"]], + "Spaniards": null, + "Spaniard's": null, + "spanielled": null, + "spanielling": null, + "spaniel": [["S", "M"]], + "spaniels": null, + "spaniel's": null, + "Spanish": [["M"]], + "Spanish's": null, + "spanker": [["M"]], + "spanker's": null, + "spanking": [["M"]], + "spanking's": null, + "spank": [["S", "R", "D", "J", "G"]], + "spanks": null, + "spanked": null, + "spankings": null, + "span": [["M", "S"]], + "span's": null, + "spans": null, + "spanned": [["U"]], + "unspanned": null, + "spanner": [["S", "M"]], + "spanners": null, + "spanner's": null, + "spanning": null, + "SPARC": [["M"]], + "SPARC's": null, + "SPARCstation": [["M"]], + "SPARCstation's": null, + "spar": [["D", "R", "M", "G", "T", "S"]], + "spared": null, + "sparer": [["M"]], + "spar's": null, + "sparing": [["U", "Y"]], + "sparest": null, + "spars": [["T", "R"]], + "spareness": [["M", "S"]], + "spareness's": null, + "sparenesses": null, + "spare": [["P", "S", "Y"]], + "spares": null, + "sparely": null, + "spareribs": null, + "sparer's": null, + "unsparing": null, + "unsparingly": null, + "sparingly": null, + "sparker": [["M"]], + "sparker's": null, + "sparkle": [["D", "R", "S", "G", "Z"]], + "sparkled": null, + "sparkler": [["M"]], + "sparkles": null, + "sparkling": null, + "sparklers": null, + "sparkler's": null, + "Sparkman": [["M"]], + "Sparkman's": null, + "Sparks": null, + "spark": [["S", "G", "M", "R", "D"]], + "sparks": null, + "sparking": null, + "spark's": null, + "sparked": null, + "sparky": [["R", "T"]], + "sparkier": null, + "sparkiest": null, + "sparling": [["S", "M"]], + "sparlings": null, + "sparling's": null, + "sparred": null, + "sparrer": null, + "sparring": [["U"]], + "unsparring": null, + "sparrow": [["M", "S"]], + "sparrow's": null, + "sparrows": null, + "sparseness": [["S"]], + "sparsenesses": null, + "sparse": [["Y", "P"]], + "sparsely": null, + "sparsity": [["S"]], + "sparsities": null, + "sparsest": null, + "sparser": null, + "Spartacus": [["M"]], + "Spartacus's": null, + "Sparta": [["M"]], + "Sparta's": null, + "spartan": null, + "Spartan": [["S"]], + "Spartans": null, + "spasm": [["G", "S", "D", "M"]], + "spasming": null, + "spasms": null, + "spasmed": null, + "spasm's": null, + "spasmodic": null, + "spasmodically": null, + "spastic": [["S"]], + "spastics": null, + "spate": [["S", "M"]], + "spates": null, + "spate's": null, + "spathe": [["M", "S"]], + "spathe's": null, + "spathes": null, + "spatiality": [["M"]], + "spatiality's": null, + "spatial": [["Y"]], + "spatially": null, + "spat": [["M", "S"]], + "spat's": null, + "spats": null, + "spatted": null, + "spatter": [["D", "G", "S"]], + "spattered": null, + "spattering": null, + "spatters": null, + "spatterdock": [["M"]], + "spatterdock's": null, + "spatting": null, + "spatula": [["S", "M"]], + "spatulas": null, + "spatula's": null, + "spavin": [["D", "M", "S"]], + "spavined": null, + "spavin's": null, + "spavins": null, + "spawner": [["M"]], + "spawner's": null, + "spawn": [["M", "R", "D", "S", "G"]], + "spawn's": null, + "spawned": null, + "spawns": null, + "spawning": null, + "spay": [["D", "G", "S"]], + "spayed": null, + "spaying": null, + "spays": null, + "SPCA": null, + "speakable": [["U"]], + "unspeakable": null, + "speakeasy": [["S", "M"]], + "speakeasies": null, + "speakeasy's": null, + "speaker": [["M"]], + "speaker's": null, + "Speaker's": null, + "speakership": [["M"]], + "speakership's": null, + "speaking": [["U"]], + "unspeaking": null, + "speak": [["R", "B", "G", "Z", "J", "S"]], + "speakers": null, + "speakings": null, + "speaks": null, + "spearer": [["M"]], + "spearer's": null, + "spearfish": [["S", "D", "M", "G"]], + "spearfishes": null, + "spearfished": null, + "spearfish's": null, + "spearfishing": null, + "spearhead": [["G", "S", "D", "M"]], + "spearheading": null, + "spearheads": null, + "spearheaded": null, + "spearhead's": null, + "spearmint": [["M", "S"]], + "spearmint's": null, + "spearmints": null, + "spear": [["M", "R", "D", "G", "S"]], + "spear's": null, + "speared": null, + "spearing": null, + "spears": null, + "Spears": null, + "spec'd": null, + "specialism": [["M", "S"]], + "specialism's": null, + "specialisms": null, + "specialist": [["M", "S"]], + "specialist's": null, + "specialists": null, + "specialization": [["S", "M"]], + "specializations": null, + "specialization's": null, + "specialized": [["U"]], + "unspecialized": null, + "specialize": [["G", "Z", "D", "S", "R"]], + "specializing": [["U"]], + "specializers": null, + "specializes": null, + "specializer": null, + "unspecializing": null, + "special": [["S", "R", "Y", "P"]], + "specials": null, + "specialer": null, + "specially": null, + "specialness": null, + "specialty": [["M", "S"]], + "specialty's": null, + "specialties": null, + "specie": [["M", "S"]], + "specie's": null, + "species": null, + "specif": null, + "specifiability": null, + "specifiable": null, + "specifiably": null, + "specifically": null, + "specification": [["S", "M"]], + "specifications": null, + "specification's": null, + "specificity": [["S"]], + "specificities": null, + "specific": [["S", "P"]], + "specifics": null, + "specificness": null, + "specified": [["U"]], + "unspecified": null, + "specifier": [["S", "M"]], + "specifiers": null, + "specifier's": null, + "specifies": null, + "specify": [["A", "D"]], + "respecify": null, + "respecified": null, + "specifying": null, + "specimen": [["S", "M"]], + "specimens": null, + "specimen's": null, + "spec'ing": null, + "speciousness": [["S", "M"]], + "speciousnesses": null, + "speciousness's": null, + "specious": [["Y", "P"]], + "speciously": null, + "speck": [["G", "M", "D", "S"]], + "specking": null, + "speck's": null, + "specked": null, + "specks": null, + "speckle": [["G", "M", "D", "S"]], + "speckling": null, + "speckle's": null, + "speckled": null, + "speckles": null, + "spec": [["S", "M"]], + "specs": null, + "spec's": null, + "spectacle": [["M", "S", "D"]], + "spectacle's": null, + "spectacles": null, + "spectacled": null, + "spectacular": [["S", "Y"]], + "spectaculars": null, + "spectacularly": null, + "spectator": [["S", "M"]], + "spectators": null, + "spectator's": null, + "specter": [["D", "M", "S"]], + "spectered": null, + "specter's": [["A"]], + "specters": null, + "respecter's": null, + "spectralness": [["M"]], + "spectralness's": null, + "spectral": [["Y", "P"]], + "spectrally": null, + "spectra": [["M"]], + "spectra's": null, + "spectrogram": [["M", "S"]], + "spectrogram's": null, + "spectrograms": null, + "spectrographically": null, + "spectrograph": [["M"]], + "spectrograph's": null, + "spectrography": [["M"]], + "spectrography's": null, + "spectrometer": [["M", "S"]], + "spectrometer's": null, + "spectrometers": null, + "spectrometric": null, + "spectrometry": [["M"]], + "spectrometry's": null, + "spectrophotometer": [["S", "M"]], + "spectrophotometers": null, + "spectrophotometer's": null, + "spectrophotometric": null, + "spectrophotometry": [["M"]], + "spectrophotometry's": null, + "spectroscope": [["S", "M"]], + "spectroscopes": null, + "spectroscope's": null, + "spectroscopic": null, + "spectroscopically": null, + "spectroscopy": [["S", "M"]], + "spectroscopies": null, + "spectroscopy's": null, + "spectrum": [["M"]], + "spectrum's": null, + "specularity": null, + "specular": [["Y"]], + "specularly": null, + "speculate": [["V", "N", "G", "S", "D", "X"]], + "speculative": [["Y"]], + "speculation": [["M"]], + "speculating": null, + "speculates": null, + "speculated": null, + "speculations": null, + "speculation's": null, + "speculatively": null, + "speculator": [["S", "M"]], + "speculators": null, + "speculator's": null, + "sped": null, + "speech": [["G", "M", "D", "S"]], + "speeching": null, + "speech's": null, + "speeched": null, + "speeches": null, + "speechlessness": [["S", "M"]], + "speechlessnesses": null, + "speechlessness's": null, + "speechless": [["Y", "P"]], + "speechlessly": null, + "speedboat": [["G", "S", "R", "M"]], + "speedboating": [["M"]], + "speedboats": null, + "speedboater": null, + "speedboat's": null, + "speedboating's": null, + "speeder": [["M"]], + "speeder's": null, + "speedily": null, + "speediness": [["S", "M"]], + "speedinesses": null, + "speediness's": null, + "speedometer": [["M", "S"]], + "speedometer's": null, + "speedometers": null, + "speed": [["R", "M", "J", "G", "Z", "S"]], + "speed's": null, + "speedings": null, + "speeding": null, + "speeders": null, + "speeds": null, + "speedster": [["S", "M"]], + "speedsters": null, + "speedster's": null, + "speedup": [["M", "S"]], + "speedup's": null, + "speedups": null, + "speedway": [["S", "M"]], + "speedways": null, + "speedway's": null, + "speedwell": [["M", "S"]], + "speedwell's": null, + "speedwells": null, + "speedy": [["P", "T", "R"]], + "speediest": null, + "speedier": null, + "speer": [["M"]], + "speer's": null, + "speleological": null, + "speleologist": [["S"]], + "speleologists": null, + "speleology": [["M", "S"]], + "speleology's": null, + "speleologies": null, + "spellbinder": [["M"]], + "spellbinder's": null, + "spellbind": [["S", "R", "G", "Z"]], + "spellbinds": null, + "spellbinding": null, + "spellbinders": null, + "spellbound": null, + "spelldown": [["M", "S"]], + "spelldown's": null, + "spelldowns": null, + "spelled": [["A"]], + "respelled": null, + "speller": [["M"]], + "speller's": null, + "spelling": [["M"]], + "spelling's": null, + "spell": [["R", "D", "S", "J", "G", "Z"]], + "spells": [["A"]], + "spellings": null, + "spellers": null, + "respells": null, + "spelunker": [["M", "S"]], + "spelunker's": null, + "spelunkers": null, + "spelunking": [["S"]], + "spelunkings": null, + "Spencerian": null, + "Spencer": [["M"]], + "Spencer's": null, + "Spence": [["R", "M"]], + "Spence's": null, + "spender": [["M"]], + "spender's": null, + "spend": [["S", "B", "J", "R", "G", "Z"]], + "spends": null, + "spendable": null, + "spendings": null, + "spending": null, + "spenders": null, + "spendthrift": [["M", "S"]], + "spendthrift's": null, + "spendthrifts": null, + "Spenglerian": null, + "Spengler": [["M"]], + "Spengler's": null, + "Spense": [["M", "R"]], + "Spense's": null, + "Spenser": [["M"]], + "Spenserian": null, + "Spenser's": null, + "spent": [["U"]], + "unspent": null, + "spermatophyte": [["M"]], + "spermatophyte's": null, + "spermatozoa": null, + "spermatozoon": [["M"]], + "spermatozoon's": null, + "spermicidal": null, + "spermicide": [["M", "S"]], + "spermicide's": null, + "spermicides": null, + "sperm": [["S", "M"]], + "sperms": null, + "sperm's": null, + "Sperry": [["M"]], + "Sperry's": null, + "spew": [["D", "R", "G", "Z", "J", "S"]], + "spewed": null, + "spewer": [["M"]], + "spewing": null, + "spewers": null, + "spewings": null, + "spews": null, + "spewer's": null, + "SPF": null, + "sphagnum": [["S", "M"]], + "sphagnums": null, + "sphagnum's": null, + "sphere": [["S", "D", "G", "M"]], + "spheres": null, + "sphered": null, + "sphering": null, + "sphere's": null, + "spherical": [["Y"]], + "spherically": null, + "spheric": [["S"]], + "spherics": [["M"]], + "spherics's": null, + "spheroidal": [["Y"]], + "spheroidally": null, + "spheroid": [["S", "M"]], + "spheroids": null, + "spheroid's": null, + "spherule": [["M", "S"]], + "spherule's": null, + "spherules": null, + "sphincter": [["S", "M"]], + "sphincters": null, + "sphincter's": null, + "Sphinx": [["M"]], + "Sphinx's": null, + "sphinx": [["M", "S"]], + "sphinx's": null, + "sphinxes": null, + "Spica": [["M"]], + "Spica's": null, + "spic": [["D", "G", "M"]], + "spiced": null, + "spicing": null, + "spic's": null, + "spicebush": [["M"]], + "spicebush's": null, + "spice": [["S", "M"]], + "spices": null, + "spice's": null, + "spicily": null, + "spiciness": [["S", "M"]], + "spicinesses": null, + "spiciness's": null, + "spicule": [["M", "S"]], + "spicule's": null, + "spicules": null, + "spicy": [["P", "T", "R"]], + "spiciest": null, + "spicier": null, + "spider": [["S", "M"]], + "spiders": null, + "spider's": null, + "spiderweb": [["S"]], + "spiderwebs": null, + "spiderwort": [["M"]], + "spiderwort's": null, + "spidery": [["T", "R"]], + "spideriest": null, + "spiderier": null, + "Spiegel": [["M"]], + "Spiegel's": null, + "Spielberg": [["M"]], + "Spielberg's": null, + "spiel": [["G", "D", "M", "S"]], + "spieling": null, + "spieled": null, + "spiel's": null, + "spiels": null, + "spier": [["M"]], + "spier's": null, + "spiffy": [["T", "D", "R", "S", "G"]], + "spiffiest": null, + "spiffied": null, + "spiffier": null, + "spiffies": null, + "spiffying": null, + "spigot": [["M", "S"]], + "spigot's": null, + "spigots": null, + "spike": [["G", "M", "D", "S", "R"]], + "spiking": null, + "spike's": null, + "spiked": null, + "spikes": null, + "spiker": [["M"]], + "Spike": [["M"]], + "Spike's": null, + "spiker's": null, + "spikiness": [["S", "M"]], + "spikinesses": null, + "spikiness's": null, + "spiky": [["P", "T", "R"]], + "spikiest": null, + "spikier": null, + "spillage": [["S", "M"]], + "spillages": null, + "spillage's": null, + "Spillane": [["M"]], + "Spillane's": null, + "spillover": [["S", "M"]], + "spillovers": null, + "spillover's": null, + "spill": [["R", "D", "S", "G"]], + "spiller": null, + "spilled": null, + "spills": null, + "spilling": null, + "spillway": [["S", "M"]], + "spillways": null, + "spillway's": null, + "spinach": [["M", "S"]], + "spinach's": null, + "spinaches": null, + "spinal": [["Y", "S"]], + "spinally": null, + "spinals": null, + "spindle": [["J", "G", "M", "D", "R", "S"]], + "spindlings": null, + "spindling": null, + "spindle's": null, + "spindled": null, + "spindler": null, + "spindles": null, + "spindly": [["R", "T"]], + "spindlier": null, + "spindliest": null, + "spinelessness": [["M"]], + "spinelessness's": null, + "spineless": [["Y", "P"]], + "spinelessly": null, + "spine": [["M", "S"]], + "spine's": null, + "spines": null, + "spinet": [["S", "M"]], + "spinets": null, + "spinet's": null, + "spininess": [["M"]], + "spininess's": null, + "spinnability": [["M"]], + "spinnability's": null, + "spinnaker": [["S", "M"]], + "spinnakers": null, + "spinnaker's": null, + "spinneret": [["M", "S"]], + "spinneret's": null, + "spinnerets": null, + "spinner": [["S", "M"]], + "spinners": null, + "spinner's": null, + "spinning": [["S", "M"]], + "spinnings": null, + "spinning's": null, + "Spinoza": [["M"]], + "Spinoza's": null, + "spin": [["S"]], + "spins": null, + "spinsterhood": [["S", "M"]], + "spinsterhoods": null, + "spinsterhood's": null, + "spinsterish": null, + "spinster": [["M", "S"]], + "spinster's": null, + "spinsters": null, + "spiny": [["P", "R", "T"]], + "spinier": null, + "spiniest": null, + "spiracle": [["S", "M"]], + "spiracles": null, + "spiracle's": null, + "spiraea's": null, + "spiral": [["Y", "D", "S", "G"]], + "spirally": null, + "spiraled": null, + "spirals": null, + "spiraling": null, + "spire": [["A", "I", "D", "S", "G", "F"]], + "respire": null, + "respired": null, + "respires": null, + "respiring": null, + "inspires": null, + "spired": null, + "conspired": null, + "spires": null, + "conspires": null, + "spiring": null, + "conspiring": null, + "conspire": null, + "spirea": [["M", "S"]], + "spirea's": null, + "spireas": null, + "spire's": null, + "spiritedness": [["M"]], + "spiritedness's": null, + "spirited": [["P", "Y"]], + "spiritedly": null, + "spirit": [["G", "M", "D", "S"]], + "spiriting": null, + "spirit's": null, + "spirits": [["I"]], + "spiritless": null, + "inspirits": null, + "spiritualism": [["S", "M"]], + "spiritualisms": null, + "spiritualism's": null, + "spiritualistic": null, + "spiritualist": [["S", "M"]], + "spiritualists": null, + "spiritualist's": null, + "spirituality": [["S", "M"]], + "spiritualities": null, + "spirituality's": null, + "spiritual": [["S", "Y", "P"]], + "spirituals": null, + "spiritually": null, + "spiritualness": null, + "spirituous": null, + "spirochete": [["S", "M"]], + "spirochetes": null, + "spirochete's": null, + "Spiro": [["M"]], + "Spiro's": null, + "spiry": [["T", "R"]], + "spiriest": null, + "spirier": null, + "spitball": [["S", "M"]], + "spitballs": null, + "spitball's": null, + "spite": [["C", "S", "D", "A", "G"]], + "despite": null, + "despites": null, + "despited": null, + "despiting": null, + "spites": null, + "respites": null, + "spited": null, + "respited": null, + "respite": null, + "respiting": null, + "spiting": null, + "spitefuller": null, + "spitefullest": null, + "spitefulness": [["M", "S"]], + "spitefulness's": null, + "spitefulnesses": null, + "spiteful": [["P", "Y"]], + "spitefully": null, + "spite's": [["A"]], + "respite's": null, + "spitfire": [["S", "M"]], + "spitfires": null, + "spitfire's": null, + "spit": [["S", "G", "D"]], + "spits": null, + "spitted": null, + "spitting": null, + "spittle": [["S", "M"]], + "spittles": null, + "spittle's": null, + "spittoon": [["S", "M"]], + "spittoons": null, + "spittoon's": null, + "Spitz": [["M"]], + "Spitz's": null, + "splashdown": [["M", "S"]], + "splashdown's": null, + "splashdowns": null, + "splasher": [["M"]], + "splasher's": null, + "splash": [["G", "Z", "D", "R", "S"]], + "splashing": null, + "splashers": null, + "splashed": null, + "splashes": null, + "splashily": null, + "splashiness": [["M", "S"]], + "splashiness's": null, + "splashinesses": null, + "splashy": [["R", "T", "P"]], + "splashier": null, + "splashiest": null, + "splat": [["S", "M"]], + "splats": null, + "splat's": null, + "splatted": null, + "splatter": [["D", "S", "G"]], + "splattered": null, + "splatters": null, + "splattering": null, + "splatting": null, + "splayfeet": null, + "splayfoot": [["M", "D"]], + "splayfoot's": null, + "splayfooted": null, + "splay": [["S", "D", "G"]], + "splays": null, + "splayed": null, + "splaying": null, + "spleen": [["S", "M"]], + "spleens": null, + "spleen's": null, + "splendidness": [["M"]], + "splendidness's": null, + "splendid": [["Y", "R", "P", "T"]], + "splendidly": null, + "splendider": null, + "splendidest": null, + "splendorous": null, + "splendor": [["S", "M"]], + "splendors": null, + "splendor's": null, + "splenetic": [["S"]], + "splenetics": null, + "splicer": [["M"]], + "splicer's": null, + "splice": [["R", "S", "D", "G", "Z", "J"]], + "splices": null, + "spliced": null, + "splicing": null, + "splicers": null, + "splicings": null, + "spline": [["M", "S", "D"]], + "spline's": null, + "splines": null, + "splined": null, + "splinter": [["G", "M", "D"]], + "splintering": null, + "splinter's": null, + "splintered": null, + "splintery": null, + "splint": [["S", "G", "Z", "M", "D", "R"]], + "splints": null, + "splinting": null, + "splinters": null, + "splint's": null, + "splinted": null, + "splits": [["M"]], + "splits's": null, + "split": [["S", "M"]], + "split's": null, + "splittable": null, + "splitter": [["M", "S"]], + "splitter's": null, + "splitters": null, + "splitting": [["S"]], + "splittings": null, + "splodge": [["S", "M"]], + "splodges": null, + "splodge's": null, + "splotch": [["M", "S", "D", "G"]], + "splotch's": null, + "splotches": null, + "splotched": null, + "splotching": null, + "splotchy": [["R", "T"]], + "splotchier": null, + "splotchiest": null, + "splurge": [["G", "M", "D", "S"]], + "splurging": null, + "splurge's": null, + "splurged": null, + "splurges": null, + "splutterer": [["M"]], + "splutterer's": null, + "splutter": [["R", "D", "S", "G"]], + "spluttered": null, + "splutters": null, + "spluttering": null, + "Sp": [["M"]], + "Sp's": null, + "Spock": [["M"]], + "Spock's": null, + "spoilables": null, + "spoilage": [["S", "M"]], + "spoilages": null, + "spoilage's": null, + "spoil": [["C", "S", "Z", "G", "D", "R"]], + "despoils": null, + "despoilers": null, + "despoiling": null, + "despoiled": null, + "despoiler": null, + "spoils": null, + "spoilers": null, + "spoiling": null, + "spoiled": [["U"]], + "spoiler": [["M", "C"]], + "unspoiled": null, + "spoiler's": null, + "despoiler's": null, + "spoilsport": [["S", "M"]], + "spoilsports": null, + "spoilsport's": null, + "Spokane": [["M"]], + "Spokane's": null, + "spoke": [["D", "S", "G"]], + "spoked": null, + "spokes": null, + "spoking": null, + "spoken": [["U"]], + "unspoken": null, + "spokeshave": [["M", "S"]], + "spokeshave's": null, + "spokeshaves": null, + "spokesman": [["M"]], + "spokesman's": null, + "spokesmen": null, + "spokespeople": null, + "spokesperson": [["S"]], + "spokespersons": null, + "spokeswoman": [["M"]], + "spokeswoman's": null, + "spokeswomen": null, + "spoliation": [["M", "C", "S"]], + "spoliation's": null, + "despoliation's": null, + "despoliation": null, + "despoliations": null, + "spoliations": null, + "spongecake": null, + "sponge": [["G", "M", "Z", "R", "S", "D"]], + "sponging": null, + "sponge's": null, + "spongers": null, + "sponger": [["M"]], + "sponges": null, + "sponged": null, + "sponger's": null, + "sponginess": [["S"]], + "sponginesses": null, + "spongy": [["T", "R", "P"]], + "spongiest": null, + "spongier": null, + "sponsor": [["D", "G", "M", "S"]], + "sponsored": null, + "sponsoring": null, + "sponsor's": null, + "sponsors": null, + "sponsorship": [["S"]], + "sponsorships": null, + "spontaneity": [["S", "M"]], + "spontaneities": null, + "spontaneity's": null, + "spontaneousness": [["M"]], + "spontaneousness's": null, + "spontaneous": [["P", "Y"]], + "spontaneously": null, + "spoof": [["S", "M", "D", "G"]], + "spoofs": null, + "spoof's": null, + "spoofed": null, + "spoofing": null, + "spookiness": [["M", "S"]], + "spookiness's": null, + "spookinesses": null, + "spook": [["S", "M", "D", "G"]], + "spooks": null, + "spook's": null, + "spooked": null, + "spooking": null, + "spooky": [["P", "R", "T"]], + "spookier": null, + "spookiest": null, + "spool": [["S", "R", "D", "M", "G", "Z"]], + "spools": null, + "spooler": null, + "spooled": null, + "spool's": null, + "spooling": null, + "spoolers": null, + "spoonbill": [["S", "M"]], + "spoonbills": null, + "spoonbill's": null, + "spoonerism": [["S", "M"]], + "spoonerisms": null, + "spoonerism's": null, + "spoonful": [["M", "S"]], + "spoonful's": null, + "spoonfuls": null, + "spoon": [["G", "S", "M", "D"]], + "spooning": null, + "spoons": null, + "spoon's": null, + "spooned": null, + "spoor": [["G", "S", "M", "D"]], + "spooring": null, + "spoors": null, + "spoor's": null, + "spoored": null, + "sporadically": null, + "sporadic": [["Y"]], + "sporadicly": null, + "spore": [["D", "S", "G", "M"]], + "spored": null, + "spores": null, + "sporing": null, + "spore's": null, + "sporran": [["M", "S"]], + "sporran's": null, + "sporrans": null, + "sportiness": [["S", "M"]], + "sportinesses": null, + "sportiness's": null, + "sporting": [["Y"]], + "sportingly": null, + "sportiveness": [["M"]], + "sportiveness's": null, + "sportive": [["P", "Y"]], + "sportively": null, + "sportscast": [["R", "S", "G", "Z", "M"]], + "sportscaster": null, + "sportscasts": null, + "sportscasting": null, + "sportscasters": null, + "sportscast's": null, + "sportsmanlike": [["U"]], + "unsportsmanlike": null, + "sportsman": [["M", "Y"]], + "sportsman's": null, + "sportsmanly": null, + "sportsmanship": [["M", "S"]], + "sportsmanship's": null, + "sportsmanships": null, + "sportsmen": null, + "sportswear": [["M"]], + "sportswear's": null, + "sportswoman": [["M"]], + "sportswoman's": null, + "sportswomen": null, + "sportswriter": [["S"]], + "sportswriters": null, + "sport": [["V", "G", "S", "R", "D", "M"]], + "sports": null, + "sporter": null, + "sported": null, + "sport's": null, + "sporty": [["P", "R", "T"]], + "sportier": null, + "sportiest": null, + "Sposato": [["M"]], + "Sposato's": null, + "spotlessness": [["M", "S"]], + "spotlessness's": null, + "spotlessnesses": null, + "spotless": [["Y", "P"]], + "spotlessly": null, + "spotlight": [["G", "D", "M", "S"]], + "spotlighting": null, + "spotlighted": null, + "spotlight's": null, + "spotlights": null, + "spotlit": null, + "spot": [["M", "S", "C"]], + "spot's": null, + "despot's": null, + "spots": null, + "despots": null, + "despot": null, + "spotted": [["U"]], + "unspotted": null, + "spotter": [["M", "S"]], + "spotter's": null, + "spotters": null, + "spottily": null, + "spottiness": [["S", "M"]], + "spottinesses": null, + "spottiness's": null, + "spotting": [["M"]], + "spotting's": null, + "spotty": [["R", "T", "P"]], + "spottier": null, + "spottiest": null, + "spousal": [["M", "S"]], + "spousal's": null, + "spousals": null, + "spouse": [["G", "M", "S", "D"]], + "spousing": null, + "spouse's": null, + "spouses": null, + "spoused": null, + "spouter": [["M"]], + "spouter's": null, + "spout": [["S", "G", "R", "D"]], + "spouts": null, + "spouting": null, + "spouted": null, + "sprain": [["S", "G", "D"]], + "sprains": null, + "spraining": null, + "sprained": null, + "sprang": [["S"]], + "sprangs": null, + "sprat": [["S", "M"]], + "sprats": null, + "sprat's": null, + "sprawl": [["G", "S", "D"]], + "sprawling": null, + "sprawls": null, + "sprawled": null, + "sprayed": [["U", "A"]], + "unsprayed": null, + "resprayed": null, + "sprayer": [["M"]], + "sprayer's": null, + "spray": [["G", "Z", "S", "R", "D", "M"]], + "spraying": null, + "sprayers": null, + "sprays": [["A"]], + "spray's": null, + "resprays": null, + "spreadeagled": null, + "spreader": [["M"]], + "spreader's": null, + "spread": [["R", "S", "J", "G", "Z", "B"]], + "spreads": null, + "spreadings": null, + "spreading": null, + "spreaders": null, + "spreadable": null, + "spreadsheet": [["S"]], + "spreadsheets": null, + "spreeing": null, + "spree": [["M", "D", "S"]], + "spree's": null, + "spreed": null, + "sprees": null, + "sprigged": null, + "sprigging": null, + "sprightliness": [["M", "S"]], + "sprightliness's": null, + "sprightlinesses": null, + "sprightly": [["P", "R", "T"]], + "sprightlier": null, + "sprightliest": null, + "sprig": [["M", "S"]], + "sprig's": null, + "sprigs": null, + "springboard": [["M", "S"]], + "springboard's": null, + "springboards": null, + "springbok": [["M", "S"]], + "springbok's": null, + "springboks": null, + "springeing": null, + "springer": [["M"]], + "springer's": null, + "Springfield": [["M"]], + "Springfield's": null, + "springily": null, + "springiness": [["S", "M"]], + "springinesses": null, + "springiness's": null, + "springing": [["M"]], + "springing's": null, + "springlike": null, + "spring": [["S", "G", "Z", "R"]], + "springs": null, + "springers": null, + "Springsteen": [["M"]], + "Springsteen's": null, + "springtime": [["M", "S"]], + "springtime's": null, + "springtimes": null, + "springy": [["T", "R", "P"]], + "springiest": null, + "springier": null, + "sprinkle": [["D", "R", "S", "J", "Z", "G"]], + "sprinkled": null, + "sprinkler": [["D", "M"]], + "sprinkles": null, + "sprinklings": null, + "sprinklers": null, + "sprinkling": [["M"]], + "sprinklered": null, + "sprinkler's": null, + "sprinkling's": null, + "Sprint": [["M"]], + "Sprint's": null, + "sprint": [["S", "G", "Z", "M", "D", "R"]], + "sprints": null, + "sprinting": null, + "sprinters": null, + "sprint's": null, + "sprinted": null, + "sprinter": null, + "sprite": [["S", "M"]], + "sprites": null, + "sprite's": null, + "spritz": [["G", "Z", "D", "S", "R"]], + "spritzing": null, + "spritzers": null, + "spritzed": null, + "spritzes": null, + "spritzer": null, + "sprocket": [["D", "M", "G", "S"]], + "sprocketed": [["U"]], + "sprocket's": null, + "sprocketing": null, + "sprockets": null, + "unsprocketed": null, + "Sproul": [["M"]], + "Sproul's": null, + "sprout": [["G", "S", "D"]], + "sprouting": null, + "sprouts": null, + "sprouted": null, + "spruce": [["G", "M", "T", "Y", "R", "S", "D", "P"]], + "sprucing": null, + "spruce's": null, + "sprucest": null, + "sprucely": null, + "sprucer": null, + "spruces": null, + "spruced": null, + "spruceness": [["S", "M"]], + "sprucenesses": null, + "spruceness's": null, + "sprue": [["M"]], + "sprue's": null, + "sprung": [["U"]], + "unsprung": null, + "spryness": [["S"]], + "sprynesses": null, + "spry": [["T", "R", "Y"]], + "spriest": null, + "sprier": null, + "spryly": null, + "SPSS": null, + "spudded": null, + "spudding": null, + "spud": [["M", "S"]], + "spud's": null, + "spuds": null, + "Spuds": [["M"]], + "Spuds's": null, + "spume": [["D", "S", "G", "M"]], + "spumed": null, + "spumes": null, + "spuming": null, + "spume's": null, + "spumone's": null, + "spumoni": [["S"]], + "spumonis": null, + "spumy": [["T", "R"]], + "spumiest": null, + "spumier": null, + "spun": null, + "spunk": [["G", "S", "M", "D"]], + "spunking": null, + "spunks": null, + "spunk's": null, + "spunked": null, + "spunky": [["S", "R", "T"]], + "spunkies": null, + "spunkier": null, + "spunkiest": null, + "spurge": [["M", "S"]], + "spurge's": null, + "spurges": null, + "spuriousness": [["S", "M"]], + "spuriousnesses": null, + "spuriousness's": null, + "spurious": [["P", "Y"]], + "spuriously": null, + "spur": [["M", "S"]], + "spur's": null, + "spurs": null, + "spurn": [["R", "D", "S", "G"]], + "spurner": null, + "spurned": null, + "spurns": null, + "spurning": null, + "spurred": null, + "spurring": null, + "spurt": [["S", "G", "D"]], + "spurts": null, + "spurting": null, + "spurted": null, + "sputa": null, + "Sputnik": null, + "sputnik": [["M", "S"]], + "sputnik's": null, + "sputniks": null, + "sputter": [["D", "R", "G", "S"]], + "sputtered": null, + "sputterer": null, + "sputtering": null, + "sputters": null, + "sputum": [["M"]], + "sputum's": null, + "spy": [["D", "R", "S", "G", "M"]], + "spied": null, + "spies": null, + "spying": null, + "spy's": null, + "spyglass": [["M", "S"]], + "spyglass's": null, + "spyglasses": null, + "sq": null, + "sqq": null, + "sqrt": null, + "squabbed": null, + "squabber": null, + "squabbest": null, + "squabbing": null, + "squabbler": [["M"]], + "squabbler's": null, + "squabble": [["Z", "G", "D", "R", "S"]], + "squabblers": null, + "squabbling": null, + "squabbled": null, + "squabbles": null, + "squab": [["S", "M"]], + "squabs": null, + "squab's": null, + "squadded": null, + "squadding": null, + "squadron": [["M", "D", "G", "S"]], + "squadron's": null, + "squadroned": null, + "squadroning": null, + "squadrons": null, + "squad": [["S", "M"]], + "squads": null, + "squad's": null, + "squalidness": [["S", "M"]], + "squalidnesses": null, + "squalidness's": null, + "squalid": [["P", "R", "Y", "T"]], + "squalider": null, + "squalidly": null, + "squalidest": null, + "squaller": [["M"]], + "squaller's": null, + "squall": [["G", "M", "R", "D", "S"]], + "squalling": null, + "squall's": null, + "squalled": null, + "squalls": null, + "squally": [["R", "T"]], + "squallier": null, + "squalliest": null, + "squalor": [["S", "M"]], + "squalors": null, + "squalor's": null, + "squamous": [["Y"]], + "squamously": null, + "squander": [["G", "S", "R", "D"]], + "squandering": null, + "squanders": null, + "squanderer": null, + "squandered": null, + "Squanto": null, + "square": [["G", "M", "T", "Y", "R", "S", "D", "P"]], + "squaring": null, + "square's": null, + "squarest": null, + "squarely": null, + "squarer": [["M"]], + "squares": null, + "squared": null, + "squareness": [["S", "M"]], + "squarenesses": null, + "squareness's": null, + "squarer's": null, + "Squaresville": [["M"]], + "Squaresville's": null, + "squarish": null, + "squash": [["G", "S", "R", "D"]], + "squashing": null, + "squashes": null, + "squasher": null, + "squashed": null, + "squashiness": [["M"]], + "squashiness's": null, + "squashy": [["R", "T", "P"]], + "squashier": null, + "squashiest": null, + "squatness": [["M", "S"]], + "squatness's": null, + "squatnesses": null, + "squat": [["S", "P", "Y"]], + "squats": null, + "squatly": null, + "squatted": null, + "squatter": [["S", "M", "D", "G"]], + "squatters": null, + "squatter's": null, + "squattered": null, + "squattering": null, + "squattest": null, + "squatting": null, + "squawker": [["M"]], + "squawker's": null, + "squawk": [["G", "R", "D", "M", "Z", "S"]], + "squawking": null, + "squawked": null, + "squawk's": null, + "squawkers": null, + "squawks": null, + "squaw": [["S", "M"]], + "squaws": null, + "squaw's": null, + "squeaker": [["M"]], + "squeaker's": null, + "squeakily": null, + "squeakiness": [["S"]], + "squeakinesses": null, + "squeak": [["R", "D", "M", "G", "Z", "S"]], + "squeaked": null, + "squeak's": null, + "squeaking": null, + "squeakers": null, + "squeaks": null, + "squeaky": [["R", "P", "T"]], + "squeakier": null, + "squeakiest": null, + "squealer": [["M"]], + "squealer's": null, + "squeal": [["M", "R", "D", "S", "G", "Z"]], + "squeal's": null, + "squealed": null, + "squeals": null, + "squealing": null, + "squealers": null, + "squeamishness": [["S", "M"]], + "squeamishnesses": null, + "squeamishness's": null, + "squeamish": [["Y", "P"]], + "squeamishly": null, + "squeegee": [["D", "S", "M"]], + "squeegeed": null, + "squeegees": null, + "squeegee's": null, + "squeegeeing": null, + "squeeze": [["G", "Z", "S", "R", "D", "B"]], + "squeezing": null, + "squeezers": null, + "squeezes": null, + "squeezer": [["M"]], + "squeezed": null, + "squeezable": null, + "squeezer's": null, + "squelcher": [["M"]], + "squelcher's": null, + "squelch": [["G", "D", "R", "S"]], + "squelching": null, + "squelched": null, + "squelches": null, + "squelchy": [["R", "T"]], + "squelchier": null, + "squelchiest": null, + "squibbed": null, + "Squibb": [["G", "M"]], + "Squibbing": [["M"]], + "Squibb's": null, + "squibbing": null, + "Squibbing's": null, + "squib": [["S", "M"]], + "squibs": null, + "squib's": null, + "squidded": null, + "squidding": null, + "squid": [["S", "M"]], + "squids": null, + "squid's": null, + "squiggle": [["M", "G", "D", "S"]], + "squiggle's": null, + "squiggling": null, + "squiggled": null, + "squiggles": null, + "squiggly": [["R", "T"]], + "squigglier": null, + "squiggliest": null, + "squinter": [["M"]], + "squinter's": null, + "squint": [["G", "T", "S", "R", "D"]], + "squinting": [["Y"]], + "squintest": null, + "squints": null, + "squinted": null, + "squintingly": null, + "squirehood": null, + "squire": [["S", "D", "G", "M"]], + "squires": null, + "squired": null, + "squiring": null, + "squire's": null, + "squirm": [["S", "G", "D"]], + "squirms": null, + "squirming": null, + "squirmed": null, + "squirmy": [["T", "R"]], + "squirmiest": null, + "squirmier": null, + "squirrel": [["S", "G", "Y", "D", "M"]], + "squirrels": null, + "squirreling": null, + "squirrelly": null, + "squirreled": null, + "squirrel's": null, + "squirter": [["M"]], + "squirter's": null, + "squirt": [["G", "S", "R", "D"]], + "squirting": null, + "squirts": null, + "squirted": null, + "squish": [["G", "S", "D"]], + "squishing": null, + "squishes": null, + "squished": null, + "squishy": [["R", "T", "P"]], + "squishier": null, + "squishiest": null, + "squishiness": null, + "Sr": null, + "Srinagar": [["M"]], + "Srinagar's": null, + "SRO": null, + "S's": null, + "SS": null, + "SSA": null, + "SSE": null, + "ssh": null, + "s's": [["K", "I"]], + "pros's": null, + "ins's": null, + "SSS": null, + "SST": null, + "SSW": null, + "ST": null, + "stabbed": null, + "stabber": [["S"]], + "stabbers": null, + "stabbing": [["S"]], + "stabbings": null, + "stability": [["I", "S", "M"]], + "instability": null, + "instabilities": null, + "instability's": null, + "stabilities": null, + "stability's": null, + "stabilizability": null, + "stabilization": [["C", "S"]], + "destabilization": null, + "destabilizations": null, + "stabilizations": null, + "stabilization's": null, + "stabilize": [["C", "G", "S", "D"]], + "destabilize": null, + "destabilizing": null, + "destabilizes": null, + "destabilized": null, + "stabilizing": null, + "stabilizes": null, + "stabilized": null, + "stabilizer": [["M", "S"]], + "stabilizer's": null, + "stabilizers": null, + "stableman": [["M"]], + "stableman's": null, + "stablemate": null, + "stablemen": null, + "stableness": [["U", "M"]], + "unstableness": null, + "unstableness's": null, + "stableness's": null, + "stable": [["R", "S", "D", "G", "M", "T", "P"]], + "stabler": [["U"]], + "stables": [["F"]], + "stabled": null, + "stabling": [["M"]], + "stable's": [["F"]], + "stablest": [["U"]], + "unstabler": null, + "constable's": null, + "constables": null, + "unstablest": null, + "stabling's": null, + "stably": [["U"]], + "unstably": null, + "stab": [["Y", "S"]], + "stabs": null, + "staccato": [["S"]], + "staccatos": null, + "Stacee": [["M"]], + "Stacee's": null, + "Stace": [["M"]], + "Stace's": null, + "Stacey": [["M"]], + "Stacey's": null, + "Stacia": [["M"]], + "Stacia's": null, + "Stacie": [["M"]], + "Stacie's": null, + "Staci": [["M"]], + "Staci's": null, + "stackable": null, + "stacker": [["M"]], + "stacker's": null, + "stack's": null, + "stack": [["U", "S", "D", "G"]], + "unstack": null, + "unstacks": null, + "unstacked": null, + "unstacking": null, + "stacks": null, + "stacked": null, + "stacking": null, + "Stacy": [["M"]], + "Stacy's": null, + "stadias": null, + "stadia's": null, + "stadium": [["M", "S"]], + "stadium's": null, + "stadiums": null, + "Stael": [["M"]], + "Stael's": null, + "Stafani": [["M"]], + "Stafani's": null, + "staff": [["A", "D", "S", "G"]], + "restaff": null, + "restaffed": null, + "restaffs": null, + "restaffing": null, + "staffed": null, + "staffs": null, + "staffing": null, + "Staffard": [["M"]], + "Staffard's": null, + "staffer": [["M", "S"]], + "staffer's": null, + "staffers": null, + "Stafford": [["M"]], + "Stafford's": null, + "Staffordshire": [["M"]], + "Staffordshire's": null, + "staffroom": null, + "staff's": null, + "Staford": [["M"]], + "Staford's": null, + "stag": [["D", "R", "M", "J", "S", "G", "Z"]], + "staged": null, + "stager": [["M"]], + "stag's": null, + "stagings": null, + "stags": null, + "staging": [["M"]], + "stagers": null, + "stagecoach": [["M", "S"]], + "stagecoach's": null, + "stagecoaches": null, + "stagecraft": [["M", "S"]], + "stagecraft's": null, + "stagecrafts": null, + "stagehand": [["M", "S"]], + "stagehand's": null, + "stagehands": null, + "stager's": null, + "stage": [["S", "M"]], + "stages": null, + "stage's": null, + "stagestruck": null, + "stagflation": [["S", "M"]], + "stagflations": null, + "stagflation's": null, + "stagged": null, + "staggerer": [["M"]], + "staggerer's": null, + "stagger": [["G", "S", "J", "D", "R"]], + "staggering": [["Y"]], + "staggers": [["M"]], + "staggerings": null, + "staggered": null, + "staggeringly": null, + "staggers's": null, + "stagging": null, + "staginess": [["M"]], + "staginess's": null, + "staging's": null, + "stagnancy": [["S", "M"]], + "stagnancies": null, + "stagnancy's": null, + "stagnant": [["Y"]], + "stagnantly": null, + "stagnate": [["N", "G", "D", "S", "X"]], + "stagnation": [["M"]], + "stagnating": null, + "stagnated": null, + "stagnates": null, + "stagnations": null, + "stagnation's": null, + "stagy": [["P", "T", "R"]], + "stagiest": null, + "stagier": null, + "Stahl": [["M"]], + "Stahl's": null, + "staidness": [["M", "S"]], + "staidness's": null, + "staidnesses": null, + "staid": [["Y", "R", "T", "P"]], + "staidly": null, + "staider": null, + "staidest": null, + "stained": [["U"]], + "unstained": null, + "stainer": [["M"]], + "stainer's": null, + "stainless": [["Y", "S"]], + "stainlessly": null, + "stainlesses": null, + "stain": [["S", "G", "R", "D"]], + "stains": null, + "staining": null, + "staircase": [["S", "M"]], + "staircases": null, + "staircase's": null, + "stair": [["M", "S"]], + "stair's": null, + "stairs": null, + "stairway": [["S", "M"]], + "stairways": null, + "stairway's": null, + "stairwell": [["M", "S"]], + "stairwell's": null, + "stairwells": null, + "stake": [["D", "S", "G", "M"]], + "staked": null, + "stakes": null, + "staking": null, + "stake's": null, + "stakeholder": [["S"]], + "stakeholders": null, + "stakeout": [["S", "M"]], + "stakeouts": null, + "stakeout's": null, + "stalactite": [["S", "M"]], + "stalactites": null, + "stalactite's": null, + "stalag": [["M"]], + "stalag's": null, + "stalagmite": [["S", "M"]], + "stalagmites": null, + "stalagmite's": null, + "stalemate": [["S", "D", "M", "G"]], + "stalemates": null, + "stalemated": null, + "stalemate's": null, + "stalemating": null, + "staleness": [["M", "S"]], + "staleness's": null, + "stalenesses": null, + "stale": [["P", "G", "Y", "T", "D", "S", "R"]], + "staling": null, + "stalely": null, + "stalest": null, + "staled": null, + "stales": null, + "staler": null, + "Staley": [["M"]], + "Staley's": null, + "Stalingrad": [["M"]], + "Stalingrad's": null, + "Stalinist": null, + "Stalin": [["S", "M"]], + "Stalins": null, + "Stalin's": null, + "stalker": [["M"]], + "stalker's": null, + "stalk": [["M", "R", "D", "S", "G", "Z", "J"]], + "stalk's": null, + "stalked": null, + "stalks": null, + "stalking": null, + "stalkers": null, + "stalkings": null, + "stall": [["D", "M", "S", "J", "G"]], + "stalled": [["I"]], + "stall's": null, + "stalls": [["I"]], + "stallings": null, + "stalling": null, + "stallholders": null, + "stallion": [["S", "M"]], + "stallions": null, + "stallion's": null, + "Stallone": [["M"]], + "Stallone's": null, + "stalwartness": [["M"]], + "stalwartness's": null, + "stalwart": [["P", "Y", "S"]], + "stalwartly": null, + "stalwarts": null, + "Sta": [["M"]], + "Sta's": null, + "stamen": [["M", "S"]], + "stamen's": null, + "stamens": null, + "Stamford": [["M"]], + "Stamford's": null, + "stamina": [["S", "M"]], + "staminas": null, + "stamina's": null, + "staminate": null, + "stammer": [["D", "R", "S", "Z", "G"]], + "stammered": null, + "stammerer": [["M"]], + "stammers": null, + "stammerers": null, + "stammering": [["Y"]], + "stammerer's": null, + "stammeringly": null, + "stampede": [["M", "G", "D", "R", "S"]], + "stampede's": null, + "stampeding": null, + "stampeded": null, + "stampeder": [["M"]], + "stampedes": null, + "stampeder's": null, + "stamped": [["U"]], + "unstamped": null, + "stamper": [["M"]], + "stamper's": null, + "stamp": [["R", "D", "S", "G", "Z", "J"]], + "stamps": null, + "stamping": null, + "stampers": null, + "stampings": null, + "stance": [["M", "I", "S"]], + "stance's": null, + "instance's": null, + "instances": null, + "stances": null, + "stancher": [["M"]], + "stancher's": null, + "stanch": [["G", "D", "R", "S", "T"]], + "stanching": null, + "stanched": null, + "stanches": null, + "stanchest": null, + "stanchion": [["S", "G", "M", "D"]], + "stanchions": null, + "stanchioning": null, + "stanchion's": null, + "stanchioned": null, + "standalone": null, + "standardization": [["A", "M", "S"]], + "restandardization": null, + "restandardization's": null, + "restandardizations": null, + "standardization's": null, + "standardizations": null, + "standardized": [["U"]], + "unstandardized": null, + "standardize": [["G", "Z", "D", "S", "R"]], + "standardizing": null, + "standardizers": null, + "standardizes": [["A"]], + "standardizer": [["M"]], + "standardizer's": null, + "restandardizes": null, + "standard": [["Y", "M", "S"]], + "standardly": null, + "standard's": null, + "standards": null, + "standby": null, + "standbys": null, + "standee": [["M", "S"]], + "standee's": null, + "standees": null, + "Standford": [["M"]], + "Standford's": null, + "standing": [["M"]], + "standing's": null, + "Standish": [["M"]], + "Standish's": null, + "standoffish": null, + "standoff": [["S", "M"]], + "standoffs": null, + "standoff's": null, + "standout": [["M", "S"]], + "standout's": null, + "standouts": null, + "standpipe": [["M", "S"]], + "standpipe's": null, + "standpipes": null, + "standpoint": [["S", "M"]], + "standpoints": null, + "standpoint's": null, + "stand": [["S", "J", "G", "Z", "R"]], + "stands": null, + "standings": null, + "standers": null, + "stander": null, + "standstill": [["S", "M"]], + "standstills": null, + "standstill's": null, + "Stanfield": [["M"]], + "Stanfield's": null, + "Stanford": [["M"]], + "Stanford's": null, + "Stanislas": [["M"]], + "Stanislas's": null, + "Stanislaus": [["M"]], + "Stanislaus's": null, + "Stanislavsky": [["M"]], + "Stanislavsky's": null, + "Stanislaw": [["M"]], + "Stanislaw's": null, + "stank": [["S"]], + "stanks": null, + "Stanleigh": [["M"]], + "Stanleigh's": null, + "Stanley": [["M"]], + "Stanley's": null, + "Stanly": [["M"]], + "Stanly's": null, + "stannic": null, + "stannous": null, + "Stanton": [["M"]], + "Stanton's": null, + "Stanwood": [["M"]], + "Stanwood's": null, + "Stan": [["Y", "M", "S"]], + "Stan's": null, + "Stans": null, + "stanza": [["M", "S"]], + "stanza's": null, + "stanzas": null, + "staph": [["M"]], + "staph's": null, + "staphs": null, + "staphylococcal": null, + "staphylococci": null, + "staphylococcus": [["M"]], + "staphylococcus's": null, + "stapled": [["U"]], + "unstapled": null, + "stapler": [["M"]], + "stapler's": null, + "Stapleton": [["M"]], + "Stapleton's": null, + "staple": [["Z", "R", "S", "D", "G", "M"]], + "staplers": null, + "staples": null, + "stapling": null, + "staple's": null, + "starboard": [["S", "D", "M", "G"]], + "starboards": null, + "starboarded": null, + "starboard's": null, + "starboarding": null, + "starchily": null, + "starchiness": [["M", "S"]], + "starchiness's": null, + "starchinesses": null, + "starch": [["M", "D", "S", "G"]], + "starch's": null, + "starched": null, + "starches": null, + "starching": null, + "starchy": [["T", "R", "P"]], + "starchiest": null, + "starchier": null, + "stardom": [["M", "S"]], + "stardom's": null, + "stardoms": null, + "star": [["D", "R", "M", "G", "Z", "S"]], + "stared": null, + "starer": null, + "star's": null, + "staring": [["U"]], + "starers": null, + "stars": null, + "stardust": [["M", "S"]], + "stardust's": null, + "stardusts": null, + "stare": [["S"]], + "stares": null, + "starfish": [["S", "M"]], + "starfishes": null, + "starfish's": null, + "Stargate": [["M"]], + "Stargate's": null, + "stargaze": [["Z", "G", "D", "R", "S"]], + "stargazers": null, + "stargazing": null, + "stargazed": null, + "stargazer": null, + "stargazes": null, + "unstaring": null, + "Starkey": [["M"]], + "Starkey's": null, + "Stark": [["M"]], + "Stark's": null, + "starkness": [["M", "S"]], + "starkness's": null, + "starknesses": null, + "stark": [["S", "P", "G", "T", "Y", "R", "D"]], + "starks": null, + "starking": null, + "starkest": null, + "starkly": null, + "starker": null, + "starked": null, + "Starla": [["M"]], + "Starla's": null, + "Starlene": [["M"]], + "Starlene's": null, + "starless": null, + "starlet": [["M", "S"]], + "starlet's": null, + "starlets": null, + "starlight": [["M", "S"]], + "starlight's": null, + "starlights": null, + "starling": [["M", "S"]], + "starling's": null, + "starlings": null, + "Starlin": [["M"]], + "Starlin's": null, + "starlit": null, + "Star": [["M"]], + "Star's": null, + "starred": null, + "starring": null, + "Starr": [["M"]], + "Starr's": null, + "starry": [["T", "R"]], + "starriest": null, + "starrier": null, + "starship": null, + "starstruck": null, + "start": [["A", "S", "G", "D", "R"]], + "restarts": null, + "restarting": null, + "restarted": null, + "restarter": null, + "starts": null, + "starting": null, + "started": null, + "starter": [["M", "S"]], + "starter's": null, + "starters": null, + "startle": [["G", "D", "S"]], + "startling": [["P", "Y"]], + "startled": null, + "startles": null, + "startlingness": null, + "startlingly": null, + "startup": [["S", "M"]], + "startups": null, + "startup's": null, + "starvation": [["M", "S"]], + "starvation's": null, + "starvations": null, + "starveling": [["M"]], + "starveling's": null, + "starver": [["M"]], + "starver's": null, + "starve": [["R", "S", "D", "G"]], + "starves": null, + "starved": null, + "starving": null, + "stash": [["G", "S", "D"]], + "stashing": null, + "stashes": null, + "stashed": null, + "stasis": [["M"]], + "stasis's": null, + "stat": [["D", "R", "S", "G", "V"]], + "stated": [["U"]], + "stater": [["M"]], + "stats": null, + "stating": null, + "stative": null, + "statecraft": [["M", "S"]], + "statecraft's": null, + "statecrafts": null, + "unstated": null, + "statehood": [["M", "S"]], + "statehood's": null, + "statehoods": null, + "statehouse": [["S"]], + "statehouses": null, + "Statehouse's": null, + "state": [["I", "G", "A", "S", "D"]], + "restating": null, + "restates": null, + "restated": null, + "states": [["K"]], + "statelessness": [["M", "S"]], + "statelessness's": null, + "statelessnesses": null, + "stateless": [["P"]], + "stateliness": [["M", "S"]], + "stateliness's": null, + "statelinesses": null, + "stately": [["P", "R", "T"]], + "statelier": null, + "stateliest": null, + "statement": [["M", "S", "A"]], + "statement's": null, + "restatement's": null, + "statements": null, + "restatements": null, + "Staten": [["M"]], + "Staten's": null, + "stater's": null, + "stateroom": [["S", "M"]], + "staterooms": null, + "stateroom's": null, + "stateside": null, + "state's": [["K"]], + "prostate's": null, + "prostates": null, + "statesmanlike": null, + "statesman": [["M", "Y"]], + "statesman's": null, + "statesmanly": null, + "statesmanship": [["S", "M"]], + "statesmanships": null, + "statesmanship's": null, + "statesmen": null, + "stateswoman": null, + "stateswomen": null, + "statewide": null, + "statical": [["Y"]], + "statically": null, + "static": [["S"]], + "statics": [["M"]], + "statics's": null, + "stationarity": null, + "stationary": [["S"]], + "stationaries": null, + "stationer": [["M"]], + "stationer's": null, + "stationery": [["M", "S"]], + "stationery's": null, + "stationeries": null, + "stationmaster": [["M"]], + "stationmaster's": null, + "station": [["S", "Z", "G", "M", "D", "R"]], + "stations": null, + "stationers": null, + "stationing": null, + "station's": null, + "stationed": null, + "statistical": [["Y"]], + "statistically": null, + "statistician": [["M", "S"]], + "statistician's": null, + "statisticians": null, + "statistic": [["M", "S"]], + "statistic's": null, + "statistics": null, + "Statler": [["M"]], + "Statler's": null, + "stator": [["S", "M"]], + "stators": null, + "stator's": null, + "statuary": [["S", "M"]], + "statuaries": null, + "statuary's": null, + "statue": [["M", "S", "D"]], + "statue's": null, + "statues": null, + "statued": null, + "statuesque": [["Y", "P"]], + "statuesquely": null, + "statuesqueness": null, + "statuette": [["M", "S"]], + "statuette's": null, + "statuettes": null, + "stature": [["M", "S"]], + "stature's": null, + "statures": null, + "status": [["S", "M"]], + "statuses": null, + "status's": null, + "statute": [["S", "M"]], + "statutes": null, + "statute's": null, + "statutorily": null, + "statutory": [["P"]], + "statutoriness": null, + "Stauffer": [["M"]], + "Stauffer's": null, + "staunchness": [["S"]], + "staunchnesses": null, + "staunch": [["P", "D", "R", "S", "Y", "T", "G"]], + "staunched": null, + "stauncher": null, + "staunches": null, + "staunchly": null, + "staunchest": null, + "staunching": null, + "stave": [["D", "G", "M"]], + "staved": null, + "staving": null, + "stave's": null, + "Stavro": [["M", "S"]], + "Stavro's": null, + "Stavros": null, + "stay": [["D", "R", "G", "Z", "S"]], + "stayed": null, + "stayer": [["M"]], + "staying": null, + "stayers": null, + "stays": null, + "stayer's": null, + "std": null, + "STD": null, + "stdio": null, + "steadfastness": [["M", "S"]], + "steadfastness's": null, + "steadfastnesses": null, + "steadfast": [["P", "Y"]], + "steadfastly": null, + "steadily": [["U"]], + "unsteadily": null, + "steadiness's": null, + "steadiness": [["U", "S"]], + "unsteadiness": null, + "unsteadinesses": null, + "steadinesses": null, + "steading": [["M"]], + "steading's": null, + "stead": [["S", "G", "D", "M"]], + "steads": null, + "steaded": null, + "stead's": null, + "steady": [["D", "R", "S", "U", "T", "G", "P"]], + "steadied": null, + "unsteadied": null, + "steadier": null, + "unsteadier": null, + "steadies": null, + "unsteadies": null, + "unsteady": null, + "unsteadying": null, + "steadiest": null, + "steadying": null, + "steakhouse": [["S", "M"]], + "steakhouses": null, + "steakhouse's": null, + "steak": [["S", "M"]], + "steaks": null, + "steak's": null, + "stealer": [["M"]], + "stealer's": null, + "stealing": [["M"]], + "stealing's": null, + "steal": [["S", "R", "H", "G"]], + "steals": null, + "stealth": [["M"]], + "stealthily": null, + "stealthiness": [["M", "S"]], + "stealthiness's": null, + "stealthinesses": null, + "stealth's": null, + "stealths": null, + "stealthy": [["P", "T", "R"]], + "stealthiest": null, + "stealthier": null, + "steamboat": [["M", "S"]], + "steamboat's": null, + "steamboats": null, + "steamer": [["M", "D", "G"]], + "steamer's": null, + "steamered": null, + "steamering": null, + "steamfitter": [["S"]], + "steamfitters": null, + "steamfitting": [["S"]], + "steamfittings": null, + "steamily": null, + "steaminess": [["S", "M"]], + "steaminesses": null, + "steaminess's": null, + "steamroller": [["D", "M", "G"]], + "steamrollered": null, + "steamroller's": null, + "steamrollering": null, + "steamroll": [["G", "Z", "R", "D", "S"]], + "steamrolling": null, + "steamrollers": null, + "steamrolled": null, + "steamrolls": null, + "steam": [["S", "G", "Z", "R", "D", "M", "J"]], + "steams": null, + "steaming": null, + "steamers": null, + "steamed": null, + "steam's": null, + "steamings": null, + "steamship": [["S", "M"]], + "steamships": null, + "steamship's": null, + "steamy": [["R", "S", "T", "P"]], + "steamier": null, + "steamies": null, + "steamiest": null, + "Stearne": [["M"]], + "Stearne's": null, + "Stearn": [["S", "M"]], + "Stearns": null, + "Stearn's": null, + "steed": [["S", "M"]], + "steeds": null, + "steed's": null, + "Steele": [["M"]], + "Steele's": null, + "steeliness": [["S", "M"]], + "steelinesses": null, + "steeliness's": null, + "steelmaker": [["M"]], + "steelmaker's": null, + "steel": [["S", "D", "M", "G", "Z"]], + "steels": null, + "steeled": null, + "steel's": null, + "steeling": null, + "steelers": null, + "steelworker": [["M"]], + "steelworker's": null, + "steelwork": [["Z", "S", "M", "R"]], + "steelworkers": null, + "steelworks": null, + "steelwork's": null, + "steelyard": [["M", "S"]], + "steelyard's": null, + "steelyards": null, + "steely": [["T", "P", "R", "S"]], + "steeliest": null, + "steelier": null, + "steelies": null, + "Steen": [["M"]], + "Steen's": null, + "steepen": [["G", "D"]], + "steepening": null, + "steepened": null, + "steeper": [["M"]], + "steeper's": null, + "steeplebush": [["M"]], + "steeplebush's": null, + "steeplechase": [["G", "M", "S", "D"]], + "steeplechasing": null, + "steeplechase's": null, + "steeplechases": null, + "steeplechased": null, + "steeplejack": [["M", "S"]], + "steeplejack's": null, + "steeplejacks": null, + "steeple": [["M", "S"]], + "steeple's": null, + "steeples": null, + "steepness": [["S"]], + "steepnesses": null, + "steep": [["S", "Y", "R", "N", "D", "P", "G", "T", "X"]], + "steeps": null, + "steeply": null, + "steeped": null, + "steeping": null, + "steepest": null, + "steepens": null, + "steerage": [["M", "S"]], + "steerage's": null, + "steerages": null, + "steerer": [["M"]], + "steerer's": null, + "steer": [["S", "G", "B", "R", "D", "J"]], + "steers": null, + "steering": null, + "steerable": null, + "steered": null, + "steerings": null, + "steersman": [["M"]], + "steersman's": null, + "steersmen": null, + "steeves": null, + "Stefa": [["M"]], + "Stefa's": null, + "Stefania": [["M"]], + "Stefania's": null, + "Stefanie": [["M"]], + "Stefanie's": null, + "Stefan": [["M"]], + "Stefan's": null, + "Stefano": [["M"]], + "Stefano's": null, + "Steffane": [["M"]], + "Steffane's": null, + "Steffen": [["M"]], + "Steffen's": null, + "Steffie": [["M"]], + "Steffie's": null, + "Steffi": [["M"]], + "Steffi's": null, + "stegosauri": null, + "stegosaurus": [["S"]], + "stegosauruses": null, + "Steinbeck": [["S", "M"]], + "Steinbecks": null, + "Steinbeck's": null, + "Steinberg": [["M"]], + "Steinberg's": null, + "Steinem": [["M"]], + "Steinem's": null, + "Steiner": [["M"]], + "Steiner's": null, + "Steinmetz": [["M"]], + "Steinmetz's": null, + "Stein": [["R", "M"]], + "Stein's": null, + "stein": [["S", "G", "Z", "M", "R", "D"]], + "steins": null, + "steining": null, + "steiners": null, + "stein's": null, + "steiner": null, + "steined": null, + "Steinway": [["M"]], + "Steinway's": null, + "Stella": [["M"]], + "Stella's": null, + "stellar": null, + "stellated": null, + "Ste": [["M"]], + "Ste's": null, + "stemless": null, + "stemmed": [["U"]], + "unstemmed": null, + "stemming": null, + "stem": [["M", "S"]], + "stem's": null, + "stems": null, + "stemware": [["M", "S"]], + "stemware's": null, + "stemwares": null, + "stench": [["G", "M", "D", "S"]], + "stenching": null, + "stench's": null, + "stenched": null, + "stenches": null, + "stenciler": [["M"]], + "stenciler's": null, + "stencil": [["G", "D", "R", "M", "S", "Z"]], + "stenciling": null, + "stenciled": null, + "stencil's": null, + "stencils": null, + "stencilers": null, + "stencillings": null, + "Stendhal": [["M"]], + "Stendhal's": null, + "Stendler": [["M"]], + "Stendler's": null, + "Stengel": [["M"]], + "Stengel's": null, + "stenographer": [["S", "M"]], + "stenographers": null, + "stenographer's": null, + "stenographic": null, + "stenography": [["S", "M"]], + "stenographies": null, + "stenography's": null, + "steno": [["S", "M"]], + "stenos": null, + "steno's": null, + "stenotype": [["M"]], + "stenotype's": null, + "stentorian": null, + "stepbrother": [["M", "S"]], + "stepbrother's": null, + "stepbrothers": null, + "stepchild": [["M"]], + "stepchild's": null, + "stepchildren": null, + "stepdaughter": [["M", "S"]], + "stepdaughter's": null, + "stepdaughters": null, + "stepfather": [["S", "M"]], + "stepfathers": null, + "stepfather's": null, + "Stepha": [["M"]], + "Stepha's": null, + "Stephana": [["M"]], + "Stephana's": null, + "Stephanie": [["M"]], + "Stephanie's": null, + "Stephani": [["M"]], + "Stephani's": null, + "Stephan": [["M"]], + "Stephan's": null, + "Stephannie": [["M"]], + "Stephannie's": null, + "Stephanus": [["M"]], + "Stephanus's": null, + "Stephenie": [["M"]], + "Stephenie's": null, + "Stephen": [["M", "S"]], + "Stephen's": null, + "Stephens": null, + "Stephenson": [["M"]], + "Stephenson's": null, + "Stephie": [["M"]], + "Stephie's": null, + "Stephi": [["M"]], + "Stephi's": null, + "Stephine": [["M"]], + "Stephine's": null, + "stepladder": [["S", "M"]], + "stepladders": null, + "stepladder's": null, + "step": [["M", "I", "S"]], + "step's": null, + "instep's": null, + "instep": null, + "insteps": null, + "steps": null, + "stepmother": [["S", "M"]], + "stepmothers": null, + "stepmother's": null, + "stepparent": [["S", "M"]], + "stepparents": null, + "stepparent's": null, + "stepper": [["M"]], + "stepper's": null, + "steppe": [["R", "S", "D", "G", "M", "Z"]], + "steppes": null, + "stepped": null, + "stepping": null, + "steppe's": null, + "steppers": null, + "steppingstone": [["S"]], + "steppingstones": null, + "stepsister": [["S", "M"]], + "stepsisters": null, + "stepsister's": null, + "stepson": [["S", "M"]], + "stepsons": null, + "stepson's": null, + "stepwise": null, + "stereographic": null, + "stereography": [["M"]], + "stereography's": null, + "stereo": [["G", "S", "D", "M"]], + "stereoing": null, + "stereos": null, + "stereoed": null, + "stereo's": null, + "stereophonic": null, + "stereoscope": [["M", "S"]], + "stereoscope's": null, + "stereoscopes": null, + "stereoscopic": null, + "stereoscopically": null, + "stereoscopy": [["M"]], + "stereoscopy's": null, + "stereotype": [["G", "M", "Z", "D", "R", "S"]], + "stereotyping": null, + "stereotype's": null, + "stereotypers": null, + "stereotyped": null, + "stereotyper": null, + "stereotypes": null, + "stereotypic": null, + "stereotypical": [["Y"]], + "stereotypically": null, + "sterile": null, + "sterility": [["S", "M"]], + "sterilities": null, + "sterility's": null, + "sterilization": [["S", "M"]], + "sterilizations": null, + "sterilization's": null, + "sterilized": [["U"]], + "unsterilized": null, + "sterilize": [["R", "S", "D", "G", "Z"]], + "sterilizer": null, + "sterilizes": [["A"]], + "sterilizing": null, + "sterilizers": null, + "resterilizes": null, + "Sterling": [["M"]], + "Sterling's": null, + "sterling": [["M", "P", "Y", "S"]], + "sterling's": null, + "sterlingness": [["M"]], + "sterlingly": null, + "sterlings": null, + "sterlingness's": null, + "sternal": null, + "Sternberg": [["M"]], + "Sternberg's": null, + "Sterne": [["M"]], + "Sterne's": null, + "Stern": [["M"]], + "Stern's": null, + "sternness": [["S"]], + "sternnesses": null, + "Sterno": null, + "stern": [["S", "Y", "R", "D", "P", "G", "T"]], + "sterns": null, + "sternly": null, + "sterner": null, + "sterned": null, + "sterning": null, + "sternest": null, + "sternum": [["S", "M"]], + "sternums": null, + "sternum's": null, + "steroidal": null, + "steroid": [["M", "S"]], + "steroid's": null, + "steroids": null, + "stertorous": null, + "Stesha": [["M"]], + "Stesha's": null, + "stethoscope": [["S", "M"]], + "stethoscopes": null, + "stethoscope's": null, + "stet": [["M", "S"]], + "stet's": null, + "stets": null, + "stetson": [["M", "S"]], + "stetson's": null, + "stetsons": null, + "Stetson": [["S", "M"]], + "Stetsons": null, + "Stetson's": null, + "stetted": null, + "stetting": null, + "Steuben": [["M"]], + "Steuben's": null, + "Stevana": [["M"]], + "Stevana's": null, + "stevedore": [["G", "M", "S", "D"]], + "stevedoring": null, + "stevedore's": null, + "stevedores": null, + "stevedored": null, + "Steve": [["M"]], + "Steve's": null, + "Stevena": [["M"]], + "Stevena's": null, + "Steven": [["M", "S"]], + "Steven's": null, + "Stevens": null, + "Stevenson": [["M"]], + "Stevenson's": null, + "Stevie": [["M"]], + "Stevie's": null, + "Stevy": [["M"]], + "Stevy's": null, + "steward": [["D", "M", "S", "G"]], + "stewarded": null, + "steward's": null, + "stewards": null, + "stewarding": null, + "stewardess": [["S", "M"]], + "stewardesses": null, + "stewardess's": null, + "Steward": [["M"]], + "Steward's": null, + "stewardship": [["M", "S"]], + "stewardship's": null, + "stewardships": null, + "Stewart": [["M"]], + "Stewart's": null, + "stew": [["G", "D", "M", "S"]], + "stewing": null, + "stewed": null, + "stew's": null, + "stews": null, + "st": [["G", "B", "J"]], + "sting": [["G", "Z", "R"]], + "stings": null, + "sticker": [["M"]], + "sticker's": null, + "stickily": null, + "stickiness": [["S", "M"]], + "stickinesses": null, + "stickiness's": null, + "stickleback": [["M", "S"]], + "stickleback's": null, + "sticklebacks": null, + "stickle": [["G", "Z", "D", "R"]], + "stickling": null, + "sticklers": null, + "stickled": null, + "stickler": [["M"]], + "stickler's": null, + "stick": [["M", "R", "D", "S", "G", "Z"]], + "stick's": null, + "sticked": null, + "sticks": null, + "sticking": null, + "stickers": null, + "stickpin": [["S", "M"]], + "stickpins": null, + "stickpin's": null, + "stickup": [["S", "M"]], + "stickups": null, + "stickup's": null, + "sticky": [["G", "P", "T", "D", "R", "S"]], + "stickying": null, + "stickiest": null, + "stickied": null, + "stickier": null, + "stickies": null, + "Stieglitz": [["M"]], + "Stieglitz's": null, + "stiffen": [["J", "Z", "R", "D", "G"]], + "stiffenings": null, + "stiffeners": null, + "stiffener": null, + "stiffened": null, + "stiffening": null, + "stiff": [["G", "T", "X", "P", "S", "Y", "R", "N", "D"]], + "stiffing": null, + "stiffest": null, + "stiffens": null, + "stiffness": [["M", "S"]], + "stiffs": null, + "stiffly": null, + "stiffer": null, + "stiffed": null, + "stiffness's": null, + "stiffnesses": null, + "stifle": [["G", "J", "R", "S", "D"]], + "stifling": [["Y"]], + "stiflings": null, + "stifler": [["M"]], + "stifles": null, + "stifled": null, + "stifler's": null, + "stiflingly": null, + "stigma": [["M", "S"]], + "stigma's": null, + "stigmas": null, + "stigmata": null, + "stigmatic": [["S"]], + "stigmatics": null, + "stigmatization": [["C"]], + "destigmatization": null, + "stigmatizations": null, + "stigmatization's": null, + "stigmatize": [["D", "S", "G"]], + "stigmatized": [["U"]], + "stigmatizes": null, + "stigmatizing": null, + "unstigmatized": [["S", "M"]], + "stile": [["G", "M", "D", "S"]], + "stiling": null, + "stile's": null, + "stiled": null, + "stiles": null, + "stiletto": [["M", "D", "S", "G"]], + "stiletto's": null, + "stilettoed": null, + "stilettos": null, + "stilettoing": null, + "stillbirth": [["M"]], + "stillbirth's": null, + "stillbirths": null, + "stillborn": [["S"]], + "stillborns": null, + "stiller": [["M", "I"]], + "stiller's": null, + "instiller's": null, + "instiller": null, + "stillest": null, + "Stillman": [["M"]], + "Stillman's": null, + "Stillmann": [["M"]], + "Stillmann's": null, + "stillness": [["M", "S"]], + "stillness's": null, + "stillnesses": null, + "still": [["R", "D", "I", "G", "S"]], + "stilled": null, + "instilled": null, + "instill": null, + "instilling": null, + "instills": null, + "stilling": null, + "stills": null, + "Stillwell": [["M"]], + "Stillwell's": null, + "stilted": [["P", "Y"]], + "stiltedness": null, + "stiltedly": null, + "stilt": [["G", "D", "M", "S"]], + "stilting": null, + "stilt's": null, + "stilts": null, + "Stilton": [["M", "S"]], + "Stilton's": null, + "Stiltons": null, + "Stimson": [["M"]], + "Stimson's": null, + "stimulant": [["M", "S"]], + "stimulant's": null, + "stimulants": null, + "stimulated": [["U"]], + "unstimulated": null, + "stimulate": [["S", "D", "V", "G", "N", "X"]], + "stimulates": null, + "stimulative": [["S"]], + "stimulating": null, + "stimulation": [["M"]], + "stimulations": null, + "stimulation's": null, + "stimulatives": null, + "stimulator": [["M"]], + "stimulator's": null, + "stimulatory": null, + "stimuli": [["M"]], + "stimuli's": null, + "stimulus": [["M", "S"]], + "stimulus's": null, + "stimuluses": null, + "Stine": [["M"]], + "Stine's": null, + "stinger": [["M"]], + "stinger's": null, + "stinging": [["Y"]], + "stingers": null, + "stingily": null, + "stinginess": [["M", "S"]], + "stinginess's": null, + "stinginesses": null, + "stingingly": null, + "stingray": [["M", "S"]], + "stingray's": null, + "stingrays": null, + "stingy": [["R", "T", "P"]], + "stingier": null, + "stingiest": null, + "stinkbug": [["S"]], + "stinkbugs": null, + "stinker": [["M"]], + "stinker's": null, + "stink": [["G", "Z", "R", "J", "S"]], + "stinking": [["Y"]], + "stinkers": null, + "stinkings": null, + "stinks": null, + "stinkingly": null, + "stinkpot": [["M"]], + "stinkpot's": null, + "Stinky": [["M"]], + "Stinky's": null, + "stinky": [["R", "T"]], + "stinkier": null, + "stinkiest": null, + "stinter": [["M"]], + "stinter's": null, + "stinting": [["U"]], + "unstinting": [["Y"]], + "stint": [["J", "G", "R", "D", "M", "S"]], + "stintings": null, + "stinted": null, + "stint's": null, + "stints": null, + "stipendiary": null, + "stipend": [["M", "S"]], + "stipend's": null, + "stipends": null, + "stipple": [["J", "D", "R", "S", "G"]], + "stipplings": null, + "stippled": null, + "stippler": [["M"]], + "stipples": null, + "stippling": null, + "stippler's": null, + "stipulate": [["X", "N", "G", "S", "D"]], + "stipulations": null, + "stipulation": [["M"]], + "stipulating": null, + "stipulates": null, + "stipulated": null, + "stipulation's": null, + "Stirling": [["M"]], + "Stirling's": null, + "stirred": [["U"]], + "unstirred": null, + "stirrer": [["S", "M"]], + "stirrers": null, + "stirrer's": null, + "stirring": [["Y", "S"]], + "stirringly": null, + "stirrings": null, + "stirrup": [["S", "M"]], + "stirrups": null, + "stirrup's": null, + "stir": [["S"]], + "stirs": null, + "stitch": [["A", "S", "D", "G"]], + "restitch": null, + "restitches": null, + "restitched": null, + "restitching": null, + "stitches": null, + "stitched": null, + "stitching": [["M", "S"]], + "stitcher": [["M"]], + "stitcher's": null, + "stitchery": [["S"]], + "stitcheries": null, + "stitching's": null, + "stitchings": null, + "stitch's": null, + "St": [["M"]], + "St's": null, + "stoat": [["S", "M"]], + "stoats": null, + "stoat's": null, + "stochastic": null, + "stochastically": null, + "stochasticity": null, + "stockade": [["S", "D", "M", "G"]], + "stockades": null, + "stockaded": null, + "stockade's": null, + "stockading": null, + "stockbreeder": [["S", "M"]], + "stockbreeders": null, + "stockbreeder's": null, + "stockbroker": [["M", "S"]], + "stockbroker's": null, + "stockbrokers": null, + "stockbroking": [["S"]], + "stockbrokings": null, + "stocker": [["S", "M"]], + "stockers": null, + "stocker's": null, + "Stockhausen": [["M"]], + "Stockhausen's": null, + "stockholder": [["S", "M"]], + "stockholders": null, + "stockholder's": null, + "Stockholm": [["M"]], + "Stockholm's": null, + "stockily": null, + "stockiness": [["S", "M"]], + "stockinesses": null, + "stockiness's": null, + "stockinet's": null, + "stockinette": [["S"]], + "stockinettes": null, + "stocking": [["M", "D", "S"]], + "stocking's": null, + "stockinged": null, + "stockings": null, + "stockist": [["M", "S"]], + "stockist's": null, + "stockists": null, + "stockpile": [["G", "R", "S", "D"]], + "stockpiling": null, + "stockpiler": [["M"]], + "stockpiles": null, + "stockpiled": null, + "stockpiler's": null, + "stockpot": [["M", "S"]], + "stockpot's": null, + "stockpots": null, + "stockroom": [["M", "S"]], + "stockroom's": null, + "stockrooms": null, + "stock's": null, + "stock": [["S", "G", "A", "D"]], + "stocks": null, + "restocks": null, + "restocking": null, + "restock": null, + "restocked": null, + "stocked": null, + "stocktaking": [["M", "S"]], + "stocktaking's": null, + "stocktakings": null, + "Stockton": [["M"]], + "Stockton's": null, + "stockyard": [["S", "M"]], + "stockyards": null, + "stockyard's": null, + "stocky": [["P", "R", "T"]], + "stockier": null, + "stockiest": null, + "Stoddard": [["M"]], + "Stoddard's": null, + "stodge": [["M"]], + "stodge's": null, + "stodgily": null, + "stodginess": [["S"]], + "stodginesses": null, + "stodgy": [["T", "R", "P"]], + "stodgiest": null, + "stodgier": null, + "stogy": [["S", "M"]], + "stogies": null, + "stogy's": null, + "stoical": [["Y"]], + "stoically": null, + "stoichiometric": null, + "stoichiometry": [["M"]], + "stoichiometry's": null, + "stoicism": [["S", "M"]], + "stoicisms": null, + "stoicism's": null, + "Stoicism": [["S", "M"]], + "Stoicisms": null, + "Stoicism's": null, + "stoic": [["M", "S"]], + "stoic's": null, + "stoics": null, + "Stoic": [["M", "S"]], + "Stoic's": null, + "Stoics": null, + "stoke": [["D", "S", "R", "G", "Z"]], + "stoked": null, + "stokes": [["M"]], + "stoker": [["M"]], + "stoking": null, + "stokers": null, + "stoker's": null, + "stokes's": null, + "Stokes": [["M"]], + "Stokes's": null, + "STOL": null, + "stole": [["M", "D", "S"]], + "stole's": null, + "stoled": null, + "stoles": null, + "stolen": null, + "stolidity": [["S"]], + "stolidities": null, + "stolidness": [["S"]], + "stolidnesses": null, + "stolid": [["P", "T", "Y", "R"]], + "stolidest": null, + "stolidly": null, + "stolider": null, + "stolon": [["S", "M"]], + "stolons": null, + "stolon's": null, + "stomachache": [["M", "S"]], + "stomachache's": null, + "stomachaches": null, + "stomacher": [["M"]], + "stomacher's": null, + "stomach": [["R", "S", "D", "M", "Z", "G"]], + "stomaches": null, + "stomached": null, + "stomach's": null, + "stomachers": null, + "stomaching": null, + "stomachs": null, + "stomp": [["D", "S", "G"]], + "stomped": null, + "stomps": null, + "stomping": null, + "stonecutter": [["S", "M"]], + "stonecutters": null, + "stonecutter's": null, + "stone": [["D", "S", "R", "G", "M"]], + "stoned": null, + "stones": null, + "stoner": [["M"]], + "stoning": null, + "stone's": null, + "Stonehenge": [["M"]], + "Stonehenge's": null, + "stoneless": null, + "Stone": [["M"]], + "Stone's": null, + "stonemason": [["M", "S"]], + "stonemason's": null, + "stonemasons": null, + "stoner's": null, + "stonewall": [["G", "D", "S"]], + "stonewalling": null, + "stonewalled": null, + "stonewalls": null, + "stoneware": [["M", "S"]], + "stoneware's": null, + "stonewares": null, + "stonewashed": null, + "stonework": [["S", "M"]], + "stoneworks": null, + "stonework's": null, + "stonewort": [["M"]], + "stonewort's": null, + "stonily": null, + "stoniness": [["M", "S"]], + "stoniness's": null, + "stoninesses": null, + "stony": [["T", "P", "R"]], + "stoniest": null, + "stonier": null, + "stood": null, + "stooge": [["S", "D", "G", "M"]], + "stooges": null, + "stooged": null, + "stooging": null, + "stooge's": null, + "stool": [["S", "D", "M", "G"]], + "stools": null, + "stooled": null, + "stool's": null, + "stooling": null, + "stoop": [["S", "D", "G"]], + "stoops": null, + "stooped": null, + "stooping": null, + "stopcock": [["M", "S"]], + "stopcock's": null, + "stopcocks": null, + "stopgap": [["S", "M"]], + "stopgaps": null, + "stopgap's": null, + "stoplight": [["S", "M"]], + "stoplights": null, + "stoplight's": null, + "stopover": [["M", "S"]], + "stopover's": null, + "stopovers": null, + "stoppable": [["U"]], + "unstoppable": null, + "stoppage": [["M", "S"]], + "stoppage's": null, + "stoppages": null, + "Stoppard": [["M"]], + "Stoppard's": null, + "stopped": [["U"]], + "unstopped": null, + "stopper": [["G", "M", "D", "S"]], + "stoppering": null, + "stopper's": null, + "stoppered": null, + "stoppers": null, + "stopping": [["M"]], + "stopping's": null, + "stopple": [["G", "D", "S", "M"]], + "stoppling": null, + "stoppled": null, + "stopples": null, + "stopple's": null, + "stop's": null, + "stops": [["M"]], + "stops's": null, + "stop": [["U", "S"]], + "unstop": null, + "unstops": null, + "stopwatch": [["S", "M"]], + "stopwatches": null, + "stopwatch's": null, + "storage": [["S", "M"]], + "storages": null, + "storage's": null, + "store": [["A", "D", "S", "R", "G"]], + "restored": null, + "restores": null, + "restoring": null, + "stored": null, + "stores": null, + "storer": null, + "storing": null, + "storefront": [["S", "M"]], + "storefronts": null, + "storefront's": null, + "storehouse": [["M", "S"]], + "storehouse's": null, + "storehouses": null, + "storekeeper": [["M"]], + "storekeeper's": null, + "storekeep": [["Z", "R"]], + "storekeepers": null, + "storeroom": [["S", "M"]], + "storerooms": null, + "storeroom's": null, + "store's": null, + "stork": [["S", "M"]], + "storks": null, + "stork's": null, + "stormbound": null, + "stormer": [["M"]], + "stormer's": null, + "Stormie": [["M"]], + "Stormie's": null, + "stormily": null, + "Stormi": [["M"]], + "Stormi's": null, + "storminess": [["S"]], + "storminesses": null, + "Storm": [["M"]], + "Storm's": null, + "storm": [["S", "R", "D", "M", "G", "Z"]], + "storms": null, + "stormed": null, + "storm's": null, + "storming": null, + "stormers": null, + "stormtroopers": null, + "Stormy": [["M"]], + "Stormy's": null, + "stormy": [["P", "T", "R"]], + "stormiest": null, + "stormier": null, + "storyboard": [["M", "D", "S", "G"]], + "storyboard's": null, + "storyboarded": null, + "storyboards": null, + "storyboarding": null, + "storybook": [["M", "S"]], + "storybook's": null, + "storybooks": null, + "story": [["G", "S", "D", "M"]], + "storying": null, + "stories": null, + "storied": null, + "story's": null, + "storyline": null, + "storyteller": [["S", "M"]], + "storytellers": null, + "storyteller's": null, + "storytelling": [["M", "S"]], + "storytelling's": null, + "storytellings": null, + "Stouffer": [["M"]], + "Stouffer's": null, + "stoup": [["S", "M"]], + "stoups": null, + "stoup's": null, + "stouten": [["D", "G"]], + "stoutened": null, + "stoutening": null, + "stouthearted": null, + "Stout": [["M"]], + "Stout's": null, + "stoutness": [["M", "S"]], + "stoutness's": null, + "stoutnesses": null, + "stout": [["S", "T", "Y", "R", "N", "P"]], + "stouts": null, + "stoutest": null, + "stoutly": null, + "stouter": null, + "stove": [["D", "S", "R", "G", "M"]], + "stoved": null, + "stoves": null, + "stover": [["M"]], + "stoving": null, + "stove's": null, + "stovepipe": [["S", "M"]], + "stovepipes": null, + "stovepipe's": null, + "stover's": null, + "stowage": [["S", "M"]], + "stowages": null, + "stowage's": null, + "stowaway": [["M", "S"]], + "stowaway's": null, + "stowaways": null, + "Stowe": [["M"]], + "Stowe's": null, + "stow": [["G", "D", "S"]], + "stowing": null, + "stowed": null, + "stows": null, + "Strabo": [["M"]], + "Strabo's": null, + "straddler": [["M"]], + "straddler's": null, + "straddle": [["Z", "D", "R", "S", "G"]], + "straddlers": null, + "straddled": null, + "straddles": null, + "straddling": null, + "Stradivari": [["S", "M"]], + "Stradivaris": null, + "Stradivari's": null, + "Stradivarius": [["M"]], + "Stradivarius's": null, + "strafe": [["G", "R", "S", "D"]], + "strafing": null, + "strafer": [["M"]], + "strafes": null, + "strafed": null, + "strafer's": null, + "straggle": [["G", "D", "R", "S", "Z"]], + "straggling": null, + "straggled": null, + "straggler": null, + "straggles": null, + "stragglers": null, + "straggly": [["R", "T"]], + "stragglier": null, + "straggliest": null, + "straightaway": [["S"]], + "straightaways": null, + "straightedge": [["M", "S"]], + "straightedge's": null, + "straightedges": null, + "straightener": [["M"]], + "straightener's": null, + "straighten": [["Z", "G", "D", "R"]], + "straighteners": null, + "straightening": null, + "straightened": null, + "straightforwardness": [["M", "S"]], + "straightforwardness's": null, + "straightforwardnesses": null, + "straightforward": [["S", "Y", "P"]], + "straightforwards": null, + "straightforwardly": null, + "straightjacket's": null, + "straightness": [["M", "S"]], + "straightness's": null, + "straightnesses": null, + "straight": [["R", "N", "D", "Y", "S", "T", "X", "G", "P"]], + "straighter": null, + "straighted": null, + "straightly": null, + "straights": null, + "straightest": null, + "straightens": null, + "straighting": null, + "straightway": [["S"]], + "straightways": null, + "strain": [["A", "S", "G", "Z", "D", "R"]], + "restrain": null, + "restrains": null, + "restraining": null, + "restrainers": null, + "restrainer": null, + "strains": [["F"]], + "straining": [["F"]], + "strainers": null, + "strained": [["U", "F"]], + "strainer": [["M", "A"]], + "unstrained": null, + "strainer's": null, + "restrainer's": null, + "constraining": null, + "constrains": null, + "straiten": [["D", "G"]], + "straitened": null, + "straitening": null, + "straitjacket": [["G", "D", "M", "S"]], + "straitjacketing": null, + "straitjacketed": null, + "straitjacket's": null, + "straitjackets": null, + "straitlaced": null, + "straitness": [["M"]], + "straitness's": null, + "strait": [["X", "T", "P", "S", "M", "G", "Y", "D", "N", "R"]], + "straitens": null, + "straitest": null, + "straits": null, + "strait's": null, + "straiting": null, + "straitly": null, + "straited": null, + "straiter": null, + "stranded": [["P"]], + "strandedness": null, + "strand": [["S", "D", "R", "G"]], + "strands": null, + "strander": null, + "stranding": null, + "strangeness": [["S", "M"]], + "strangenesses": null, + "strangeness's": null, + "strange": [["P", "Y", "Z", "T", "R"]], + "strangely": null, + "strangers": null, + "strangest": null, + "stranger": [["G", "M", "D"]], + "strangering": null, + "stranger's": null, + "strangered": null, + "stranglehold": [["M", "S"]], + "stranglehold's": null, + "strangleholds": null, + "strangle": [["J", "D", "R", "S", "Z", "G"]], + "stranglings": null, + "strangled": null, + "strangler": null, + "strangles": [["M"]], + "stranglers": null, + "strangling": null, + "strangles's": null, + "strangulate": [["N", "G", "S", "D", "X"]], + "strangulation": [["M"]], + "strangulating": null, + "strangulates": null, + "strangulated": null, + "strangulations": null, + "strangulation's": null, + "strapless": [["S"]], + "straplesses": null, + "strapped": [["U"]], + "unstrapped": null, + "strapping": [["S"]], + "strappings": null, + "strap's": null, + "strap": [["U", "S"]], + "unstrap": null, + "unstraps": null, + "straps": null, + "Strasbourg": [["M"]], + "Strasbourg's": null, + "stratagem": [["S", "M"]], + "stratagems": null, + "stratagem's": null, + "strata": [["M", "S"]], + "strata's": null, + "stratas": null, + "strategical": [["Y"]], + "strategically": null, + "strategic": [["S"]], + "strategics": [["M"]], + "strategics's": null, + "strategist": [["S", "M"]], + "strategists": null, + "strategist's": null, + "strategy": [["S", "M"]], + "strategies": null, + "strategy's": null, + "Stratford": [["M"]], + "Stratford's": null, + "strati": null, + "stratification": [["M"]], + "stratification's": null, + "stratified": [["U"]], + "unstratified": null, + "stratify": [["N", "S", "D", "G", "X"]], + "stratifies": null, + "stratifying": null, + "stratifications": null, + "stratigraphic": null, + "stratigraphical": null, + "stratigraphy": [["M"]], + "stratigraphy's": null, + "stratosphere": [["S", "M"]], + "stratospheres": null, + "stratosphere's": null, + "stratospheric": null, + "stratospherically": null, + "stratum": [["M"]], + "stratum's": null, + "stratus": [["M"]], + "stratus's": null, + "Strauss": null, + "Stravinsky": [["M"]], + "Stravinsky's": null, + "strawberry": [["S", "M"]], + "strawberries": null, + "strawberry's": null, + "strawflower": [["S", "M"]], + "strawflowers": null, + "strawflower's": null, + "straw": [["S", "M", "D", "G"]], + "straws": null, + "straw's": null, + "strawed": null, + "strawing": null, + "strayer": [["M"]], + "strayer's": null, + "stray": [["G", "S", "R", "D", "M"]], + "straying": null, + "strays": null, + "strayed": null, + "stray's": null, + "streak": [["D", "R", "M", "S", "G", "Z"]], + "streaked": null, + "streaker": [["M"]], + "streak's": null, + "streaks": null, + "streaking": null, + "streakers": null, + "streaker's": null, + "streaky": [["T", "R"]], + "streakiest": null, + "streakier": null, + "streamed": [["U"]], + "unstreamed": null, + "streamer": [["M"]], + "streamer's": null, + "stream": [["G", "Z", "S", "M", "D", "R"]], + "streaming": [["M"]], + "streamers": null, + "streams": null, + "stream's": null, + "streaming's": null, + "streamline": [["S", "R", "D", "G", "M"]], + "streamlines": null, + "streamliner": null, + "streamlined": null, + "streamlining": null, + "streamline's": null, + "streetcar": [["M", "S"]], + "streetcar's": null, + "streetcars": null, + "streetlight": [["S", "M"]], + "streetlights": null, + "streetlight's": null, + "street": [["S", "M", "Z"]], + "streets": null, + "street's": null, + "streeters": null, + "streetwalker": [["M", "S"]], + "streetwalker's": null, + "streetwalkers": null, + "streetwise": null, + "Streisand": [["M"]], + "Streisand's": null, + "strengthen": [["A", "G", "D", "S"]], + "restrengthen": null, + "restrengthening": null, + "restrengthened": null, + "restrengthens": null, + "strengthening": null, + "strengthened": null, + "strengthens": null, + "strengthener": [["M", "S"]], + "strengthener's": null, + "strengtheners": null, + "strength": [["N", "M", "X"]], + "strength's": null, + "strengths": null, + "strenuousness": [["S", "M"]], + "strenuousnesses": null, + "strenuousness's": null, + "strenuous": [["P", "Y"]], + "strenuously": null, + "strep": [["M", "S"]], + "strep's": null, + "streps": null, + "streptococcal": null, + "streptococci": null, + "streptococcus": [["M"]], + "streptococcus's": null, + "streptomycin": [["S", "M"]], + "streptomycins": null, + "streptomycin's": null, + "stress": [["D", "S", "M", "G"]], + "stressed": [["U"]], + "stresses": null, + "stress's": null, + "stressing": null, + "unstressed": null, + "stressful": [["Y", "P"]], + "stressfully": null, + "stressfulness": null, + "stretchability": [["M"]], + "stretchability's": null, + "stretchable": [["U"]], + "unstretchable": null, + "stretch": [["B", "D", "R", "S", "Z", "G"]], + "stretched": null, + "stretcher": [["D", "M", "G"]], + "stretches": null, + "stretchers": null, + "stretching": null, + "stretchered": null, + "stretcher's": null, + "stretchering": null, + "stretchy": [["T", "R", "P"]], + "stretchiest": null, + "stretchier": null, + "stretchiness": null, + "strew": [["G", "D", "H", "S"]], + "strewing": null, + "strewed": null, + "strewth": null, + "strews": null, + "strewn": null, + "striae": null, + "stria": [["M"]], + "stria's": null, + "striate": [["D", "S", "X", "G", "N"]], + "striated": [["U"]], + "striates": null, + "striations": null, + "striating": null, + "striation": [["M"]], + "unstriated": null, + "striation's": null, + "stricken": null, + "Strickland": [["M"]], + "Strickland's": null, + "strict": [["A", "F"]], + "stricter": null, + "strictest": null, + "strictly": null, + "strictness": [["S"]], + "strictnesses": null, + "stricture": [["S", "M"]], + "strictures": null, + "stricture's": null, + "stridden": null, + "stridency": [["S"]], + "stridencies": null, + "strident": [["Y"]], + "stridently": null, + "strider": [["M"]], + "strider's": null, + "stride": [["R", "S", "G", "M"]], + "strides": null, + "striding": null, + "stride's": null, + "strife": [["S", "M"]], + "strifes": null, + "strife's": null, + "strikebreaker": [["M"]], + "strikebreaker's": null, + "strikebreaking": [["M"]], + "strikebreaking's": null, + "strikebreak": [["Z", "G", "R"]], + "strikebreakers": null, + "strikeout": [["S"]], + "strikeouts": null, + "striker": [["M"]], + "striker's": null, + "strike": [["R", "S", "G", "Z", "J"]], + "strikes": null, + "striking": [["Y"]], + "strikers": null, + "strikings": null, + "strikingly": null, + "Strindberg": [["M"]], + "Strindberg's": null, + "stringed": null, + "stringency": [["S"]], + "stringencies": null, + "stringent": [["Y"]], + "stringently": null, + "stringer": [["M", "S"]], + "stringer's": null, + "stringers": null, + "stringiness": [["S", "M"]], + "stringinesses": null, + "stringiness's": null, + "stringing": [["M"]], + "stringing's": null, + "string's": null, + "string": [["S", "A", "G"]], + "strings": null, + "restrings": null, + "restring": null, + "restringing": null, + "stringy": [["R", "T", "P"]], + "stringier": null, + "stringiest": null, + "striper": [["M"]], + "striper's": null, + "stripe": [["S", "M"]], + "stripes": null, + "stripe's": null, + "strip": [["G", "R", "D", "M", "S"]], + "striping": null, + "striped": null, + "strip's": null, + "strips": null, + "stripling": [["M"]], + "stripling's": null, + "stripped": [["U"]], + "unstripped": null, + "stripper": [["M", "S"]], + "stripper's": null, + "strippers": null, + "stripping": null, + "stripteaser": [["M"]], + "stripteaser's": null, + "striptease": [["S", "R", "D", "G", "Z", "M"]], + "stripteases": null, + "stripteased": null, + "stripteasing": null, + "stripteasers": null, + "striptease's": null, + "stripy": [["R", "T"]], + "stripier": null, + "stripiest": null, + "strive": [["J", "R", "S", "G"]], + "strivings": null, + "striver": [["M"]], + "strives": null, + "striving": null, + "striven": null, + "striver's": null, + "strobe": [["S", "D", "G", "M"]], + "strobes": null, + "strobed": null, + "strobing": null, + "strobe's": null, + "stroboscope": [["S", "M"]], + "stroboscopes": null, + "stroboscope's": null, + "stroboscopic": null, + "strode": null, + "stroke": [["Z", "R", "S", "D", "G", "M"]], + "strokers": null, + "stroker": null, + "strokes": null, + "stroked": null, + "stroking": [["M"]], + "stroke's": null, + "stroking's": null, + "stroller": [["M"]], + "stroller's": null, + "stroll": [["G", "Z", "S", "D", "R"]], + "strolling": null, + "strollers": null, + "strolls": null, + "strolled": null, + "Stromberg": [["M"]], + "Stromberg's": null, + "Stromboli": [["M"]], + "Stromboli's": null, + "Strom": [["M"]], + "Strom's": null, + "strongbow": null, + "strongbox": [["M", "S"]], + "strongbox's": null, + "strongboxes": null, + "Strongheart": [["M"]], + "Strongheart's": null, + "stronghold": [["S", "M"]], + "strongholds": null, + "stronghold's": null, + "strongish": null, + "Strong": [["M"]], + "Strong's": null, + "strongman": [["M"]], + "strongman's": null, + "strongmen": null, + "strongroom": [["M", "S"]], + "strongroom's": null, + "strongrooms": null, + "strong": [["Y", "R", "T"]], + "strongly": null, + "stronger": null, + "strongest": null, + "strontium": [["S", "M"]], + "strontiums": null, + "strontium's": null, + "strophe": [["M", "S"]], + "strophe's": null, + "strophes": null, + "strophic": null, + "stropped": null, + "stropping": null, + "strop": [["S", "M"]], + "strops": null, + "strop's": null, + "strove": null, + "struck": null, + "structuralism": [["M"]], + "structuralism's": null, + "structuralist": [["S", "M"]], + "structuralists": null, + "structuralist's": null, + "structural": [["Y"]], + "structurally": null, + "structured": [["A", "U"]], + "restructured": null, + "unstructured": null, + "structureless": null, + "structures": [["A"]], + "restructures": null, + "structure": [["S", "R", "D", "M", "G"]], + "structurer": null, + "structure's": null, + "structuring": [["A"]], + "restructuring": null, + "strudel": [["M", "S"]], + "strudel's": null, + "strudels": null, + "struggle": [["G", "D", "R", "S"]], + "struggling": null, + "struggled": null, + "struggler": [["M"]], + "struggles": null, + "struggler's": null, + "strummed": null, + "strumming": null, + "strumpet": [["G", "S", "D", "M"]], + "strumpeting": null, + "strumpets": null, + "strumpeted": null, + "strumpet's": null, + "strum": [["S"]], + "strums": null, + "strung": [["U", "A"]], + "unstrung": null, + "restrung": null, + "strut": [["S"]], + "struts": null, + "strutted": null, + "strutter": [["M"]], + "strutter's": null, + "strutting": null, + "strychnine": [["M", "S"]], + "strychnine's": null, + "strychnines": null, + "Stuart": [["M", "S"]], + "Stuart's": null, + "Stuarts": null, + "stubbed": [["M"]], + "stubbed's": null, + "stubbing": null, + "Stubblefield": [["M", "S"]], + "Stubblefield's": null, + "Stubblefields": null, + "stubble": [["S", "M"]], + "stubbles": null, + "stubble's": null, + "stubbly": [["R", "T"]], + "stubblier": null, + "stubbliest": null, + "stubbornness": [["S", "M"]], + "stubbornnesses": null, + "stubbornness's": null, + "stubborn": [["S", "G", "T", "Y", "R", "D", "P"]], + "stubborns": null, + "stubborning": null, + "stubbornest": null, + "stubbornly": null, + "stubborner": null, + "stubborned": null, + "stubby": [["S", "R", "T"]], + "stubbies": null, + "stubbier": null, + "stubbiest": null, + "stub": [["M", "S"]], + "stub's": null, + "stubs": null, + "stuccoes": null, + "stucco": [["G", "D", "M"]], + "stuccoing": null, + "stuccoed": null, + "stucco's": null, + "stuck": [["U"]], + "unstuck": null, + "studbook": [["S", "M"]], + "studbooks": null, + "studbook's": null, + "studded": null, + "studding": [["S", "M"]], + "studdings": null, + "studding's": null, + "Studebaker": [["M"]], + "Studebaker's": null, + "studentship": [["M", "S"]], + "studentship's": null, + "studentships": null, + "student": [["S", "M"]], + "students": null, + "student's": null, + "studiedness": [["M"]], + "studiedness's": null, + "studied": [["P", "Y"]], + "studiedly": null, + "studier": [["S", "M"]], + "studiers": null, + "studier's": null, + "studio": [["M", "S"]], + "studio's": null, + "studios": null, + "studiousness": [["S", "M"]], + "studiousnesses": null, + "studiousness's": null, + "studious": [["P", "Y"]], + "studiously": null, + "stud": [["M", "S"]], + "stud's": null, + "studs": null, + "study": [["A", "G", "D", "S"]], + "restudying": null, + "restudied": null, + "restudies": null, + "studying": null, + "studies": null, + "stuffily": null, + "stuffiness": [["S", "M"]], + "stuffinesses": null, + "stuffiness's": null, + "stuffing": [["M"]], + "stuffing's": null, + "stuff": [["J", "G", "S", "R", "D"]], + "stuffings": null, + "stuffs": null, + "stuffer": null, + "stuffed": null, + "stuffy": [["T", "R", "P"]], + "stuffiest": null, + "stuffier": null, + "stultify": [["N", "X", "G", "S", "D"]], + "stultification": null, + "stultifications": null, + "stultifying": null, + "stultifies": null, + "stultified": null, + "Stu": [["M"]], + "Stu's": null, + "stumble": [["G", "Z", "D", "S", "R"]], + "stumbling": [["Y"]], + "stumblers": null, + "stumbled": null, + "stumbles": null, + "stumbler": null, + "stumblingly": null, + "stumpage": [["M"]], + "stumpage's": null, + "stumper": [["M"]], + "stumper's": null, + "stump": [["R", "D", "M", "S", "G"]], + "stumped": null, + "stump's": null, + "stumps": null, + "stumping": null, + "stumpy": [["R", "T"]], + "stumpier": null, + "stumpiest": null, + "stung": null, + "stunk": null, + "stunned": null, + "stunner": [["M"]], + "stunner's": null, + "stunning": [["Y"]], + "stunningly": null, + "stun": [["S"]], + "stuns": null, + "stunted": [["P"]], + "stuntedness": null, + "stunt": [["G", "S", "D", "M"]], + "stunting": null, + "stunts": null, + "stunt's": null, + "stupefaction": [["S", "M"]], + "stupefactions": null, + "stupefaction's": null, + "stupefy": [["D", "S", "G"]], + "stupefied": null, + "stupefies": null, + "stupefying": null, + "stupendousness": [["M"]], + "stupendousness's": null, + "stupendous": [["P", "Y"]], + "stupendously": null, + "stupidity": [["S", "M"]], + "stupidities": null, + "stupidity's": null, + "stupidness": [["M"]], + "stupidness's": null, + "stupid": [["P", "T", "Y", "R", "S"]], + "stupidest": null, + "stupidly": null, + "stupider": null, + "stupids": null, + "stupor": [["M", "S"]], + "stupor's": null, + "stupors": null, + "sturdily": null, + "sturdiness": [["S", "M"]], + "sturdinesses": null, + "sturdiness's": null, + "sturdy": [["S", "R", "P", "T"]], + "sturdies": null, + "sturdier": null, + "sturdiest": null, + "sturgeon": [["S", "M"]], + "sturgeons": null, + "sturgeon's": null, + "Sturm": [["M"]], + "Sturm's": null, + "stutter": [["D", "R", "S", "Z", "G"]], + "stuttered": null, + "stutterer": null, + "stutters": null, + "stutterers": null, + "stuttering": null, + "Stuttgart": [["M"]], + "Stuttgart's": null, + "Stuyvesant": [["M"]], + "Stuyvesant's": null, + "sty": [["D", "S", "G", "M"]], + "stied": null, + "sties": null, + "stying": null, + "sty's": null, + "Stygian": null, + "styled": [["A"]], + "restyled": null, + "style": [["G", "Z", "M", "D", "S", "R"]], + "styling": [["A"]], + "stylers": null, + "style's": null, + "styles": [["A"]], + "styler": null, + "restyles": null, + "styli": null, + "restyling": null, + "stylishness": [["S"]], + "stylishnesses": null, + "stylish": [["P", "Y"]], + "stylishly": null, + "stylistically": null, + "stylistic": [["S"]], + "stylistics": null, + "stylist": [["M", "S"]], + "stylist's": null, + "stylists": null, + "stylites": null, + "stylization": [["M", "S"]], + "stylization's": null, + "stylizations": null, + "stylize": [["D", "S", "G"]], + "stylized": null, + "stylizes": null, + "stylizing": null, + "stylos": null, + "stylus": [["S", "M"]], + "styluses": null, + "stylus's": null, + "stymieing": null, + "stymie": [["S", "D"]], + "stymies": null, + "stymied": null, + "stymy's": null, + "styptic": [["S"]], + "styptics": null, + "styrene": [["M", "S"]], + "styrene's": null, + "styrenes": null, + "Styrofoam": [["S"]], + "Styrofoams": null, + "Styx": [["M"]], + "Styx's": null, + "suable": null, + "Suarez": [["M"]], + "Suarez's": null, + "suasion": [["E", "M", "S"]], + "dissuasion": null, + "dissuasion's": null, + "dissuasions": null, + "suasion's": null, + "suasions": null, + "suaveness": [["S"]], + "suavenesses": null, + "suave": [["P", "R", "Y", "T"]], + "suaver": null, + "suavely": null, + "suavest": null, + "suavity": [["S", "M"]], + "suavities": null, + "suavity's": null, + "subaltern": [["S", "M"]], + "subalterns": null, + "subaltern's": null, + "subarctic": [["S"]], + "subarctics": null, + "subareas": null, + "Subaru": [["M"]], + "Subaru's": null, + "subassembly": [["M"]], + "subassembly's": null, + "subatomic": [["S"]], + "subatomics": null, + "subbasement": [["S", "M"]], + "subbasements": null, + "subbasement's": null, + "subbed": null, + "subbing": null, + "subbranch": [["S"]], + "subbranches": null, + "subcaste": [["M"]], + "subcaste's": null, + "subcategorizing": null, + "subcategory": [["S", "M"]], + "subcategories": null, + "subcategory's": null, + "subchain": null, + "subclassifications": null, + "subclass": [["M", "S"]], + "subclass's": null, + "subclasses": null, + "subclauses": null, + "subcommand": [["S"]], + "subcommands": null, + "subcommittee": [["S", "M"]], + "subcommittees": null, + "subcommittee's": null, + "subcompact": [["S"]], + "subcompacts": null, + "subcomponent": [["M", "S"]], + "subcomponent's": null, + "subcomponents": null, + "subcomputation": [["M", "S"]], + "subcomputation's": null, + "subcomputations": null, + "subconcept": null, + "subconsciousness": [["S", "M"]], + "subconsciousnesses": null, + "subconsciousness's": null, + "subconscious": [["P", "S", "Y"]], + "subconsciouses": null, + "subconsciously": null, + "subconstituent": null, + "subcontinental": null, + "subcontinent": [["M", "S"]], + "subcontinent's": null, + "subcontinents": null, + "subcontractor": [["S", "M"]], + "subcontractors": null, + "subcontractor's": null, + "subcontract": [["S", "M", "D", "G"]], + "subcontracts": null, + "subcontract's": null, + "subcontracted": null, + "subcontracting": null, + "subcultural": null, + "subculture": [["G", "M", "D", "S"]], + "subculturing": null, + "subculture's": null, + "subcultured": null, + "subcultures": null, + "subcutaneous": [["Y"]], + "subcutaneously": null, + "subdirectory": [["S"]], + "subdirectories": null, + "subdistrict": [["M"]], + "subdistrict's": null, + "subdivide": [["S", "R", "D", "G"]], + "subdivides": null, + "subdivider": null, + "subdivided": null, + "subdividing": null, + "subdivision": [["S", "M"]], + "subdivisions": null, + "subdivision's": null, + "subdued": [["Y"]], + "subduedly": null, + "subdue": [["G", "R", "S", "D"]], + "subduing": null, + "subduer": [["M"]], + "subdues": null, + "subduer's": null, + "subexpression": [["M", "S"]], + "subexpression's": null, + "subexpressions": null, + "subfamily": [["S", "M"]], + "subfamilies": null, + "subfamily's": null, + "subfield": [["M", "S"]], + "subfield's": null, + "subfields": null, + "subfile": [["S", "M"]], + "subfiles": null, + "subfile's": null, + "subfreezing": null, + "subgoal": [["S", "M"]], + "subgoals": null, + "subgoal's": null, + "subgraph": null, + "subgraphs": null, + "subgroup": [["S", "G", "M"]], + "subgroups": null, + "subgrouping": null, + "subgroup's": null, + "subharmonic": [["S"]], + "subharmonics": null, + "subheading": [["M"]], + "subheading's": null, + "subhead": [["M", "G", "J", "S"]], + "subhead's": null, + "subheadings": null, + "subheads": null, + "subhuman": [["S"]], + "subhumans": null, + "subindex": [["M"]], + "subindex's": null, + "subinterval": [["M", "S"]], + "subinterval's": null, + "subintervals": null, + "subj": null, + "subject": [["G", "V", "D", "M", "S"]], + "subjecting": null, + "subjective": [["P", "S", "Y"]], + "subjected": null, + "subject's": null, + "subjects": null, + "subjection": [["S", "M"]], + "subjections": null, + "subjection's": null, + "subjectiveness": [["M"]], + "subjectiveness's": null, + "subjectives": null, + "subjectively": null, + "subjectivist": [["S"]], + "subjectivists": null, + "subjectivity": [["S", "M"]], + "subjectivities": null, + "subjectivity's": null, + "subjoin": [["D", "S", "G"]], + "subjoined": null, + "subjoins": null, + "subjoining": null, + "subjugate": [["N", "G", "X", "S", "D"]], + "subjugation": [["M"]], + "subjugating": null, + "subjugations": null, + "subjugates": null, + "subjugated": null, + "subjugation's": null, + "subjunctive": [["S"]], + "subjunctives": null, + "sublayer": null, + "sublease": [["D", "S", "M", "G"]], + "subleased": null, + "subleases": null, + "sublease's": null, + "subleasing": null, + "sublet": [["S"]], + "sublets": null, + "subletting": null, + "sublimate": [["G", "N", "S", "D", "X"]], + "sublimating": null, + "sublimation": [["M"]], + "sublimates": null, + "sublimated": null, + "sublimations": null, + "sublimation's": null, + "sublime": [["G", "R", "S", "D", "T", "Y", "P"]], + "subliming": null, + "sublimer": [["M"]], + "sublimes": null, + "sublimed": null, + "sublimest": null, + "sublimely": null, + "sublimeness": [["M"]], + "sublimeness's": null, + "sublimer's": null, + "subliminal": [["Y"]], + "subliminally": null, + "sublimity": [["S", "M"]], + "sublimities": null, + "sublimity's": null, + "sublist": [["S", "M"]], + "sublists": null, + "sublist's": null, + "subliterary": null, + "sublunary": null, + "submachine": null, + "submarginal": null, + "submarine": [["M", "Z", "G", "S", "R", "D"]], + "submarine's": null, + "submariners": null, + "submarining": null, + "submarines": null, + "submariner": [["M"]], + "submarined": null, + "submariner's": null, + "submerge": [["D", "S", "G"]], + "submerged": null, + "submerges": null, + "submerging": null, + "submergence": [["S", "M"]], + "submergences": null, + "submergence's": null, + "submerse": [["X", "N", "G", "D", "S"]], + "submersions": null, + "submersion": [["M"]], + "submersing": null, + "submersed": null, + "submerses": null, + "submersible": [["S"]], + "submersibles": null, + "submersion's": null, + "submicroscopic": null, + "submission": [["S", "A", "M"]], + "submissions": null, + "resubmissions": null, + "resubmission": null, + "resubmission's": null, + "submission's": null, + "submissiveness": [["M", "S"]], + "submissiveness's": null, + "submissivenesses": null, + "submissive": [["P", "Y"]], + "submissively": null, + "submit": [["S", "A"]], + "submits": null, + "resubmits": null, + "resubmit": null, + "submittable": null, + "submittal": null, + "submitted": [["A"]], + "resubmitted": null, + "submitter": [["S"]], + "submitters": null, + "submitting": [["A"]], + "resubmitting": null, + "submode": [["S"]], + "submodes": null, + "submodule": [["M", "S"]], + "submodule's": null, + "submodules": null, + "sub": [["M", "S"]], + "sub's": null, + "subs": null, + "subnational": null, + "subnet": [["S", "M"]], + "subnets": null, + "subnet's": null, + "subnetwork": [["S", "M"]], + "subnetworks": null, + "subnetwork's": null, + "subnormal": [["S", "Y"]], + "subnormals": null, + "subnormally": null, + "suboptimal": null, + "suborbital": null, + "suborder": [["M", "S"]], + "suborder's": null, + "suborders": null, + "subordinately": [["I"]], + "insubordinately": null, + "subordinates": [["I"]], + "insubordinates": null, + "subordinate": [["Y", "V", "N", "G", "X", "P", "S", "D"]], + "subordinative": null, + "subordination": [["I", "M", "S"]], + "subordinating": null, + "subordinations": null, + "subordinateness": null, + "subordinated": null, + "insubordination": null, + "insubordination's": null, + "insubordinations": null, + "subordination's": null, + "subordinator": null, + "subornation": [["S", "M"]], + "subornations": null, + "subornation's": null, + "suborn": [["G", "S", "D"]], + "suborning": null, + "suborns": null, + "suborned": null, + "subpage": null, + "subparagraph": [["M"]], + "subparagraph's": null, + "subpart": [["M", "S"]], + "subpart's": null, + "subparts": null, + "subplot": [["M", "S"]], + "subplot's": null, + "subplots": null, + "subpoena": [["G", "S", "D", "M"]], + "subpoenaing": null, + "subpoenas": null, + "subpoenaed": null, + "subpoena's": null, + "subpopulation": [["M", "S"]], + "subpopulation's": null, + "subpopulations": null, + "subproblem": [["S", "M"]], + "subproblems": null, + "subproblem's": null, + "subprocess": [["S", "M"]], + "subprocesses": null, + "subprocess's": null, + "subprofessional": [["S"]], + "subprofessionals": null, + "subprogram": [["S", "M"]], + "subprograms": null, + "subprogram's": null, + "subproject": null, + "subproof": [["S", "M"]], + "subproofs": null, + "subproof's": null, + "subquestion": [["M", "S"]], + "subquestion's": null, + "subquestions": null, + "subrange": [["S", "M"]], + "subranges": null, + "subrange's": null, + "subregional": [["Y"]], + "subregionally": null, + "subregion": [["M", "S"]], + "subregion's": null, + "subregions": null, + "subrogation": [["M"]], + "subrogation's": null, + "subroutine": [["S", "M"]], + "subroutines": null, + "subroutine's": null, + "subsample": [["M", "S"]], + "subsample's": null, + "subsamples": null, + "subschema": [["M", "S"]], + "subschema's": null, + "subschemas": null, + "subscribe": [["A", "S", "D", "G"]], + "resubscribe": null, + "resubscribes": null, + "resubscribed": null, + "resubscribing": null, + "subscribes": null, + "subscribed": null, + "subscribing": null, + "subscriber": [["S", "M"]], + "subscribers": null, + "subscriber's": null, + "subscripted": [["U"]], + "unsubscripted": null, + "subscription": [["M", "S"]], + "subscription's": null, + "subscriptions": null, + "subscript": [["S", "G", "D"]], + "subscripts": null, + "subscripting": null, + "subsection": [["S", "M"]], + "subsections": null, + "subsection's": null, + "subsegment": [["S", "M"]], + "subsegments": null, + "subsegment's": null, + "subsentence": null, + "subsequence": [["M", "S"]], + "subsequence's": null, + "subsequences": null, + "subsequent": [["S", "Y", "P"]], + "subsequents": null, + "subsequently": null, + "subsequentness": null, + "subservience": [["S", "M"]], + "subserviences": null, + "subservience's": null, + "subservient": [["S", "Y"]], + "subservients": null, + "subserviently": null, + "subset": [["M", "S"]], + "subset's": null, + "subsets": null, + "subsidence": [["M", "S"]], + "subsidence's": null, + "subsidences": null, + "subside": [["S", "D", "G"]], + "subsides": null, + "subsided": null, + "subsiding": null, + "subsidiarity": null, + "subsidiary": [["M", "S"]], + "subsidiary's": null, + "subsidiaries": null, + "subsidization": [["M", "S"]], + "subsidization's": null, + "subsidizations": null, + "subsidized": [["U"]], + "unsubsidized": null, + "subsidizer": [["M"]], + "subsidizer's": null, + "subsidize": [["Z", "R", "S", "D", "G"]], + "subsidizers": null, + "subsidizes": null, + "subsidizing": null, + "subsidy": [["M", "S"]], + "subsidy's": null, + "subsidies": null, + "subsistence": [["M", "S"]], + "subsistence's": null, + "subsistences": null, + "subsistent": null, + "subsist": [["S", "G", "D"]], + "subsists": null, + "subsisting": null, + "subsisted": null, + "subsocietal": null, + "subsoil": [["D", "R", "M", "S", "G"]], + "subsoiled": null, + "subsoiler": null, + "subsoil's": null, + "subsoils": null, + "subsoiling": null, + "subsonic": null, + "subspace": [["M", "S"]], + "subspace's": null, + "subspaces": null, + "subspecies": [["M"]], + "subspecies's": null, + "substance": [["M", "S"]], + "substance's": null, + "substances": null, + "substandard": null, + "substantially": [["I", "U"]], + "insubstantially": null, + "unsubstantially": null, + "substantialness": [["M"]], + "substantialness's": null, + "substantial": [["P", "Y", "S"]], + "substantials": null, + "substantiated": [["U"]], + "unsubstantiated": null, + "substantiate": [["V", "G", "N", "S", "D", "X"]], + "substantiative": null, + "substantiating": null, + "substantiation": [["M", "F", "S"]], + "substantiates": null, + "substantiations": null, + "substantiation's": null, + "consubstantiation's": null, + "consubstantiation": null, + "consubstantiations": null, + "substantiveness": [["M"]], + "substantiveness's": null, + "substantive": [["P", "S", "Y", "M"]], + "substantives": null, + "substantively": null, + "substantive's": null, + "substantivity": null, + "substation": [["M", "S"]], + "substation's": null, + "substations": null, + "substerilization": null, + "substitutability": null, + "substituted": [["U"]], + "unsubstituted": null, + "substitute": [["N", "G", "V", "B", "X", "D", "R", "S"]], + "substitution": [["M"]], + "substituting": null, + "substitutive": [["Y"]], + "substitutable": null, + "substitutions": null, + "substituter": null, + "substitutes": null, + "substitutionary": null, + "substitution's": null, + "substitutively": null, + "substrata": null, + "substrate": [["M", "S"]], + "substrate's": null, + "substrates": null, + "substratum": [["M"]], + "substratum's": null, + "substring": [["S"]], + "substrings": null, + "substructure": [["S", "M"]], + "substructures": null, + "substructure's": null, + "subsume": [["S", "D", "G"]], + "subsumes": null, + "subsumed": null, + "subsuming": null, + "subsurface": [["S"]], + "subsurfaces": null, + "subsystem": [["M", "S"]], + "subsystem's": null, + "subsystems": null, + "subtable": [["S"]], + "subtables": null, + "subtask": [["S", "M"]], + "subtasks": null, + "subtask's": null, + "subteen": [["S", "M"]], + "subteens": null, + "subteen's": null, + "subtenancy": [["M", "S"]], + "subtenancy's": null, + "subtenancies": null, + "subtenant": [["S", "M"]], + "subtenants": null, + "subtenant's": null, + "subtend": [["D", "S"]], + "subtended": null, + "subtends": null, + "subterfuge": [["S", "M"]], + "subterfuges": null, + "subterfuge's": null, + "subterranean": [["S", "Y"]], + "subterraneans": null, + "subterraneanly": null, + "subtest": null, + "subtext": [["S", "M"]], + "subtexts": null, + "subtext's": null, + "subtitle": [["D", "S", "M", "G"]], + "subtitled": null, + "subtitles": null, + "subtitle's": null, + "subtitling": null, + "subtleness": [["M"]], + "subtleness's": null, + "subtle": [["R", "P", "T"]], + "subtler": null, + "subtlest": null, + "subtlety": [["M", "S"]], + "subtlety's": null, + "subtleties": null, + "subtly": [["U"]], + "unsubtly": null, + "subtopic": [["S", "M"]], + "subtopics": null, + "subtopic's": null, + "subtotal": [["G", "S", "D", "M"]], + "subtotaling": null, + "subtotals": null, + "subtotaled": null, + "subtotal's": null, + "subtracter": [["M"]], + "subtracter's": null, + "subtraction": [["M", "S"]], + "subtraction's": null, + "subtractions": null, + "subtract": [["S", "R", "D", "Z", "V", "G"]], + "subtracts": null, + "subtracted": null, + "subtracters": null, + "subtractive": null, + "subtracting": null, + "subtrahend": [["S", "M"]], + "subtrahends": null, + "subtrahend's": null, + "subtree": [["S", "M"]], + "subtrees": null, + "subtree's": null, + "subtropical": null, + "subtropic": [["S"]], + "subtropics": null, + "subtype": [["M", "S"]], + "subtype's": null, + "subtypes": null, + "subunit": [["S", "M"]], + "subunits": null, + "subunit's": null, + "suburbanite": [["M", "S"]], + "suburbanite's": null, + "suburbanites": null, + "suburbanization": [["M", "S"]], + "suburbanization's": null, + "suburbanizations": null, + "suburbanized": null, + "suburbanizing": null, + "suburban": [["S"]], + "suburbans": null, + "suburbia": [["S", "M"]], + "suburbias": null, + "suburbia's": null, + "suburb": [["M", "S"]], + "suburb's": null, + "suburbs": null, + "subvention": [["M", "S"]], + "subvention's": null, + "subventions": null, + "subversion": [["S", "M"]], + "subversions": null, + "subversion's": null, + "subversiveness": [["M", "S"]], + "subversiveness's": null, + "subversivenesses": null, + "subversive": [["S", "P", "Y"]], + "subversives": null, + "subversively": null, + "subverter": [["M"]], + "subverter's": null, + "subvert": [["S", "G", "D", "R"]], + "subverts": null, + "subverting": null, + "subverted": null, + "subway": [["M", "D", "G", "S"]], + "subway's": null, + "subwayed": null, + "subwaying": null, + "subways": null, + "subzero": null, + "succeeder": [["M"]], + "succeeder's": null, + "succeed": [["G", "D", "R", "S"]], + "succeeding": null, + "succeeded": null, + "succeeds": null, + "successfulness": [["M"]], + "successfulness's": null, + "successful": [["U", "Y"]], + "unsuccessful": null, + "unsuccessfully": null, + "successfully": null, + "succession": [["S", "M"]], + "successions": null, + "succession's": null, + "successiveness": [["M"]], + "successiveness's": null, + "successive": [["Y", "P"]], + "successively": null, + "success": [["M", "S", "V"]], + "success's": null, + "successes": null, + "successor": [["M", "S"]], + "successor's": null, + "successors": null, + "successorship": null, + "succinctness": [["S", "M"]], + "succinctnesses": null, + "succinctness's": null, + "succinct": [["R", "Y", "P", "T"]], + "succincter": null, + "succinctly": null, + "succinctest": null, + "succored": [["U"]], + "unsuccored": null, + "succorer": [["M"]], + "succorer's": null, + "succor": [["S", "G", "Z", "R", "D", "M"]], + "succors": null, + "succoring": null, + "succorers": null, + "succor's": null, + "succotash": [["S", "M"]], + "succotashes": null, + "succotash's": null, + "succubus": [["M"]], + "succubus's": null, + "succulence": [["S", "M"]], + "succulences": null, + "succulence's": null, + "succulency": [["M", "S"]], + "succulency's": null, + "succulencies": null, + "succulent": [["S"]], + "succulents": null, + "succumb": [["S", "D", "G"]], + "succumbs": null, + "succumbed": null, + "succumbing": null, + "such": null, + "suchlike": null, + "sucker": [["D", "M", "G"]], + "suckered": null, + "sucker's": null, + "suckering": null, + "suck": [["G", "Z", "S", "D", "R", "B"]], + "sucking": null, + "suckers": null, + "sucks": null, + "sucked": null, + "suckable": null, + "suckle": [["S", "D", "J", "G"]], + "suckles": null, + "suckled": null, + "sucklings": null, + "suckling": [["M"]], + "suckling's": null, + "Sucre": [["M"]], + "Sucre's": null, + "sucrose": [["M", "S"]], + "sucrose's": null, + "sucroses": null, + "suction": [["S", "M", "G", "D"]], + "suctions": null, + "suction's": null, + "suctioning": null, + "suctioned": null, + "Sudanese": [["M"]], + "Sudanese's": null, + "Sudanic": [["M"]], + "Sudanic's": null, + "Sudan": [["M"]], + "Sudan's": null, + "suddenness": [["S", "M"]], + "suddennesses": null, + "suddenness's": null, + "sudden": [["Y", "P", "S"]], + "suddenly": null, + "suddens": null, + "Sudetenland": [["M"]], + "Sudetenland's": null, + "sud": [["S"]], + "suds": [["D", "S", "R", "G"]], + "sudsed": null, + "sudses": null, + "sudser": null, + "sudsing": null, + "sudsy": [["T", "R"]], + "sudsiest": null, + "sudsier": null, + "sued": [["D", "G"]], + "sueded": null, + "sueding": null, + "suede": [["S", "M"]], + "suedes": null, + "suede's": null, + "Suellen": [["M"]], + "Suellen's": null, + "Sue": [["M"]], + "Sue's": null, + "suer": [["M"]], + "suer's": null, + "suet": [["M", "S"]], + "suet's": null, + "suets": null, + "Suetonius": [["M"]], + "Suetonius's": null, + "suety": null, + "sue": [["Z", "G", "D", "R", "S"]], + "suers": null, + "suing": null, + "sues": null, + "Suez": [["M"]], + "Suez's": null, + "sufferance": [["S", "M"]], + "sufferances": null, + "sufferance's": null, + "sufferer": [["M"]], + "sufferer's": null, + "suffering": [["M"]], + "suffering's": null, + "suffer": [["S", "J", "R", "D", "G", "Z"]], + "suffers": null, + "sufferings": null, + "suffered": null, + "sufferers": null, + "suffice": [["G", "R", "S", "D"]], + "sufficing": null, + "sufficer": null, + "suffices": null, + "sufficed": null, + "sufficiency": [["S", "I", "M"]], + "sufficiencies": null, + "insufficiencies": null, + "insufficiency": null, + "insufficiency's": null, + "sufficiency's": null, + "sufficient": [["I", "Y"]], + "insufficient": null, + "insufficiently": null, + "sufficiently": null, + "suffixation": [["S"]], + "suffixations": null, + "suffixed": [["U"]], + "unsuffixed": null, + "suffix": [["G", "M", "R", "S", "D"]], + "suffixing": null, + "suffix's": null, + "suffixer": null, + "suffixes": null, + "suffocate": [["X", "S", "D", "V", "G", "N"]], + "suffocations": null, + "suffocates": null, + "suffocated": null, + "suffocative": null, + "suffocating": [["Y"]], + "suffocation": null, + "suffocatingly": null, + "Suffolk": [["M"]], + "Suffolk's": null, + "suffragan": [["S"]], + "suffragans": null, + "suffrage": [["M", "S"]], + "suffrage's": null, + "suffrages": null, + "suffragette": [["M", "S"]], + "suffragette's": null, + "suffragettes": null, + "suffragist": [["S", "M"]], + "suffragists": null, + "suffragist's": null, + "suffuse": [["V", "N", "G", "S", "D", "X"]], + "suffusive": null, + "suffusion": [["M"]], + "suffusing": null, + "suffuses": null, + "suffused": null, + "suffusions": null, + "suffusion's": null, + "Sufi": [["M"]], + "Sufi's": null, + "Sufism": [["M"]], + "Sufism's": null, + "sugarcane": [["S"]], + "sugarcanes": null, + "sugarcoat": [["G", "D", "S"]], + "sugarcoating": null, + "sugarcoated": null, + "sugarcoats": null, + "sugarless": null, + "sugarplum": [["M", "S"]], + "sugarplum's": null, + "sugarplums": null, + "sugar": [["S", "J", "G", "M", "D"]], + "sugars": null, + "sugarings": null, + "sugaring": null, + "sugar's": null, + "sugared": null, + "sugary": [["T", "R"]], + "sugariest": null, + "sugarier": null, + "suggest": [["D", "R", "Z", "G", "V", "S"]], + "suggested": null, + "suggester": [["M"]], + "suggesters": null, + "suggesting": null, + "suggestive": [["P", "Y"]], + "suggests": null, + "suggester's": null, + "suggestibility": [["S", "M"]], + "suggestibilities": null, + "suggestibility's": null, + "suggestible": null, + "suggestion": [["M", "S"]], + "suggestion's": null, + "suggestions": null, + "suggestiveness": [["M", "S"]], + "suggestiveness's": null, + "suggestivenesses": null, + "suggestively": null, + "sugillate": null, + "Suharto": [["M"]], + "Suharto's": null, + "suicidal": [["Y"]], + "suicidally": null, + "suicide": [["G", "S", "D", "M"]], + "suiciding": null, + "suicides": null, + "suicided": null, + "suicide's": null, + "Sui": [["M"]], + "Sui's": null, + "suitability": [["S", "U"]], + "suitabilities": null, + "unsuitabilities": null, + "unsuitability": null, + "suitableness": [["S"]], + "suitablenesses": null, + "suitable": [["P"]], + "suitably": [["U"]], + "unsuitably": null, + "suitcase": [["M", "S"]], + "suitcase's": null, + "suitcases": null, + "suited": [["U"]], + "unsuited": null, + "suite": [["S", "M"]], + "suites": null, + "suite's": null, + "suiting": [["M"]], + "suiting's": null, + "suit": [["M", "D", "G", "Z", "B", "J", "S"]], + "suit's": null, + "suiters": null, + "suitings": null, + "suits": null, + "suitor": [["S", "M"]], + "suitors": null, + "suitor's": null, + "Sukarno": [["M"]], + "Sukarno's": null, + "Sukey": [["M"]], + "Sukey's": null, + "Suki": [["M"]], + "Suki's": null, + "sukiyaki": [["S", "M"]], + "sukiyakis": null, + "sukiyaki's": null, + "Sukkoth's": null, + "Sukkot": [["S"]], + "Sukkots": null, + "Sula": [["M"]], + "Sula's": null, + "Sulawesi": [["M"]], + "Sulawesi's": null, + "Suleiman": [["M"]], + "Suleiman's": null, + "sulfaquinoxaline": null, + "sulfa": [["S"]], + "sulfas": null, + "sulfate": [["M", "S", "D", "G"]], + "sulfate's": null, + "sulfates": null, + "sulfated": null, + "sulfating": null, + "sulfide": [["S"]], + "sulfides": null, + "sulfite": [["M"]], + "sulfite's": null, + "sulfonamide": [["S", "M"]], + "sulfonamides": null, + "sulfonamide's": null, + "sulfur": [["D", "M", "S", "G"]], + "sulfured": null, + "sulfur's": null, + "sulfurs": null, + "sulfuring": null, + "sulfuric": null, + "sulfurousness": [["M"]], + "sulfurousness's": null, + "sulfurous": [["Y", "P"]], + "sulfurously": null, + "sulk": [["G", "D", "S"]], + "sulking": null, + "sulked": null, + "sulks": null, + "sulkily": null, + "sulkiness": [["S"]], + "sulkinesses": null, + "sulky": [["R", "S", "P", "T"]], + "sulkier": null, + "sulkies": null, + "sulkiest": null, + "Sulla": [["M"]], + "Sulla's": null, + "sullenness": [["M", "S"]], + "sullenness's": null, + "sullennesses": null, + "sullen": [["T", "Y", "R", "P"]], + "sullenest": null, + "sullenly": null, + "sullener": null, + "sullied": [["U"]], + "unsullied": null, + "Sullivan": [["M"]], + "Sullivan's": null, + "sully": [["G", "S", "D"]], + "sullying": null, + "sullies": null, + "Sully": [["M"]], + "Sully's": null, + "sulphate": [["S", "M"]], + "sulphates": null, + "sulphate's": null, + "sulphide": [["M", "S"]], + "sulphide's": null, + "sulphides": null, + "sulphuric": null, + "sultana": [["S", "M"]], + "sultanas": null, + "sultana's": null, + "sultanate": [["M", "S"]], + "sultanate's": null, + "sultanates": null, + "sultan": [["S", "M"]], + "sultans": null, + "sultan's": null, + "sultrily": null, + "sultriness": [["S", "M"]], + "sultrinesses": null, + "sultriness's": null, + "sultry": [["P", "R", "T"]], + "sultrier": null, + "sultriest": null, + "Sulzberger": [["M"]], + "Sulzberger's": null, + "sumach's": null, + "sumac": [["S", "M"]], + "sumacs": null, + "sumac's": null, + "Sumatra": [["M"]], + "Sumatra's": null, + "Sumatran": [["S"]], + "Sumatrans": null, + "sumer": [["F"]], + "Sumeria": [["M"]], + "Sumeria's": null, + "Sumerian": [["M"]], + "Sumerian's": null, + "summability": [["M"]], + "summability's": null, + "summable": null, + "summand": [["M", "S"]], + "summand's": null, + "summands": null, + "summarily": null, + "summarization": [["M", "S"]], + "summarization's": null, + "summarizations": null, + "summarized": [["U"]], + "unsummarized": null, + "summarize": [["G", "S", "R", "D", "Z"]], + "summarizing": null, + "summarizes": null, + "summarizer": [["M"]], + "summarizers": null, + "summarizer's": null, + "summary": [["M", "S"]], + "summary's": null, + "summaries": null, + "summation": [["F", "M", "S"]], + "consummation": null, + "consummation's": null, + "consummations": null, + "summation's": null, + "summations": null, + "summed": null, + "Summerdale": [["M"]], + "Summerdale's": null, + "summerhouse": [["M", "S"]], + "summerhouse's": null, + "summerhouses": null, + "summer": [["S", "G", "D", "M"]], + "summers": null, + "summering": null, + "summered": null, + "summer's": null, + "Summer": [["S", "M"]], + "Summers": null, + "Summer's": null, + "summertime": [["M", "S"]], + "summertime's": null, + "summertimes": null, + "summery": [["T", "R"]], + "summeriest": null, + "summerier": null, + "summing": null, + "summit": [["G", "M", "D", "S"]], + "summiting": null, + "summit's": null, + "summited": null, + "summits": null, + "summitry": [["M", "S"]], + "summitry's": null, + "summitries": null, + "summoner": [["M"]], + "summoner's": null, + "summon": [["J", "S", "R", "D", "G", "Z"]], + "summonings": null, + "summons": [["M", "S", "D", "G"]], + "summoned": null, + "summoning": null, + "summoners": null, + "summons's": null, + "summonses": null, + "summonsed": null, + "summonsing": null, + "sum": [["M", "R", "S"]], + "sum's": null, + "sums": null, + "Sumner": [["M"]], + "Sumner's": null, + "sumo": [["S", "M"]], + "sumos": null, + "sumo's": null, + "sump": [["S", "M"]], + "sumps": null, + "sump's": null, + "sumptuousness": [["S", "M"]], + "sumptuousnesses": null, + "sumptuousness's": null, + "sumptuous": [["P", "Y"]], + "sumptuously": null, + "Sumter": [["M"]], + "Sumter's": null, + "Sun": null, + "sunbaked": null, + "sunbathe": null, + "sunbather": [["M"]], + "sunbather's": null, + "sunbathing": [["M"]], + "sunbathing's": null, + "sunbaths": null, + "sunbath": [["Z", "R", "S", "D", "G"]], + "sunbathers": null, + "sunbathes": null, + "sunbathed": null, + "sunbeam": [["M", "S"]], + "sunbeam's": null, + "sunbeams": null, + "Sunbelt": [["M"]], + "Sunbelt's": null, + "sunblock": [["S"]], + "sunblocks": null, + "sunbonnet": [["M", "S"]], + "sunbonnet's": null, + "sunbonnets": null, + "sunburn": [["G", "S", "M", "D"]], + "sunburning": null, + "sunburns": null, + "sunburn's": null, + "sunburned": null, + "sunburst": [["M", "S"]], + "sunburst's": null, + "sunbursts": null, + "suncream": null, + "sundae": [["M", "S"]], + "sundae's": null, + "sundaes": null, + "Sundanese": [["M"]], + "Sundanese's": null, + "Sundas": null, + "Sunday": [["M", "S"]], + "Sunday's": null, + "Sundays": null, + "sunder": [["S", "D", "G"]], + "sunders": null, + "sundered": null, + "sundering": null, + "sundial": [["M", "S"]], + "sundial's": null, + "sundials": null, + "sundowner": [["M"]], + "sundowner's": null, + "sundown": [["M", "R", "D", "S", "Z", "G"]], + "sundown's": null, + "sundowned": null, + "sundowns": null, + "sundowners": null, + "sundowning": null, + "sundris": null, + "sundry": [["S"]], + "sundries": null, + "sunfish": [["S", "M"]], + "sunfishes": null, + "sunfish's": null, + "sunflower": [["M", "S"]], + "sunflower's": null, + "sunflowers": null, + "sunglass": [["M", "S"]], + "sunglass's": null, + "sunglasses": null, + "Sung": [["M"]], + "Sung's": null, + "sung": [["U"]], + "unsung": null, + "sunk": [["S", "N"]], + "sunks": null, + "sunken": null, + "sunlamp": [["S"]], + "sunlamps": null, + "sunless": null, + "sunlight": [["M", "S"]], + "sunlight's": null, + "sunlights": null, + "sunlit": null, + "sun": [["M", "S"]], + "sun's": null, + "suns": null, + "sunned": null, + "Sunni": [["M", "S"]], + "Sunni's": null, + "Sunnis": null, + "sunniness": [["S", "M"]], + "sunninesses": null, + "sunniness's": null, + "sunning": null, + "Sunnite": [["S", "M"]], + "Sunnites": null, + "Sunnite's": null, + "Sunny": [["M"]], + "Sunny's": null, + "sunny": [["R", "S", "T", "P"]], + "sunnier": null, + "sunnies": null, + "sunniest": null, + "Sunnyvale": [["M"]], + "Sunnyvale's": null, + "sunrise": [["G", "M", "S"]], + "sunrising": null, + "sunrise's": null, + "sunrises": null, + "sunroof": [["S"]], + "sunroofs": null, + "sunscreen": [["S"]], + "sunscreens": null, + "sunset": [["M", "S"]], + "sunset's": null, + "sunsets": null, + "sunsetting": null, + "sunshade": [["M", "S"]], + "sunshade's": null, + "sunshades": null, + "Sunshine": [["M"]], + "Sunshine's": null, + "sunshine": [["M", "S"]], + "sunshine's": null, + "sunshines": null, + "sunshiny": null, + "sunspot": [["S", "M"]], + "sunspots": null, + "sunspot's": null, + "sunstroke": [["M", "S"]], + "sunstroke's": null, + "sunstrokes": null, + "suntanned": null, + "suntanning": null, + "suntan": [["S", "M"]], + "suntans": null, + "suntan's": null, + "sunup": [["M", "S"]], + "sunup's": null, + "sunups": null, + "superabundance": [["M", "S"]], + "superabundance's": null, + "superabundances": null, + "superabundant": null, + "superannuate": [["G", "N", "X", "S", "D"]], + "superannuating": null, + "superannuation": [["M"]], + "superannuations": null, + "superannuates": null, + "superannuated": null, + "superannuation's": null, + "superbness": [["M"]], + "superbness's": null, + "superb": [["Y", "R", "P", "T"]], + "superbly": null, + "superber": null, + "superbest": null, + "supercargoes": null, + "supercargo": [["M"]], + "supercargo's": null, + "supercharger": [["M"]], + "supercharger's": null, + "supercharge": [["S", "R", "D", "Z", "G"]], + "supercharges": null, + "supercharged": null, + "superchargers": null, + "supercharging": null, + "superciliousness": [["S", "M"]], + "superciliousnesses": null, + "superciliousness's": null, + "supercilious": [["P", "Y"]], + "superciliously": null, + "supercity": [["S"]], + "supercities": null, + "superclass": [["M"]], + "superclass's": null, + "supercomputer": [["M", "S"]], + "supercomputer's": null, + "supercomputers": null, + "supercomputing": null, + "superconcept": null, + "superconducting": null, + "superconductivity": [["S", "M"]], + "superconductivities": null, + "superconductivity's": null, + "superconductor": [["S", "M"]], + "superconductors": null, + "superconductor's": null, + "supercooled": null, + "supercooling": null, + "supercritical": null, + "superdense": null, + "super": [["D", "G"]], + "supered": null, + "supering": null, + "superego": [["S", "M"]], + "superegos": null, + "superego's": null, + "supererogation": [["M", "S"]], + "supererogation's": null, + "supererogations": null, + "supererogatory": null, + "superficiality": [["S"]], + "superficialities": null, + "superficial": [["S", "P", "Y"]], + "superficials": null, + "superficialness": null, + "superficially": null, + "superfine": null, + "superfix": [["M"]], + "superfix's": null, + "superfluity": [["M", "S"]], + "superfluity's": null, + "superfluities": null, + "superfluousness": [["S"]], + "superfluousnesses": null, + "superfluous": [["Y", "P"]], + "superfluously": null, + "superheat": [["D"]], + "superheated": null, + "superheroes": null, + "superhero": [["S", "M"]], + "superheros": null, + "superhero's": null, + "superhighway": [["M", "S"]], + "superhighway's": null, + "superhighways": null, + "superhumanness": [["M"]], + "superhumanness's": null, + "superhuman": [["Y", "P"]], + "superhumanly": null, + "superimpose": [["S", "D", "G"]], + "superimposes": null, + "superimposed": null, + "superimposing": null, + "superimposition": [["M", "S"]], + "superimposition's": null, + "superimpositions": null, + "superintendence": [["S"]], + "superintendences": null, + "superintendency": [["S", "M"]], + "superintendencies": null, + "superintendency's": null, + "superintendent": [["S", "M"]], + "superintendents": null, + "superintendent's": null, + "superintend": [["G", "S", "D"]], + "superintending": null, + "superintends": null, + "superintended": null, + "superiority": [["M", "S"]], + "superiority's": null, + "superiorities": null, + "Superior": [["M"]], + "Superior's": null, + "superior": [["S", "M", "Y"]], + "superiors": null, + "superior's": null, + "superiorly": null, + "superlativeness": [["M"]], + "superlativeness's": null, + "superlative": [["P", "Y", "S"]], + "superlatively": null, + "superlatives": null, + "superlunary": null, + "supermachine": null, + "superman": [["M"]], + "superman's": null, + "Superman": [["M"]], + "Superman's": null, + "supermarket": [["S", "M"]], + "supermarkets": null, + "supermarket's": null, + "supermen": null, + "supermodel": null, + "supermom": [["S"]], + "supermoms": null, + "supernal": null, + "supernatant": null, + "supernaturalism": [["M"]], + "supernaturalism's": null, + "supernaturalness": [["M"]], + "supernaturalness's": null, + "supernatural": [["S", "P", "Y"]], + "supernaturals": null, + "supernaturally": null, + "supernormal": [["Y"]], + "supernormally": null, + "supernovae": null, + "supernova": [["M", "S"]], + "supernova's": null, + "supernovas": null, + "supernumerary": [["S"]], + "supernumeraries": null, + "superordinate": null, + "superpose": [["B", "S", "D", "G"]], + "superposable": null, + "superposes": null, + "superposed": null, + "superposing": null, + "superposition": [["M", "S"]], + "superposition's": null, + "superpositions": null, + "superpower": [["M", "S"]], + "superpower's": null, + "superpowers": null, + "superpredicate": null, + "supersaturate": [["X", "N", "G", "D", "S"]], + "supersaturations": null, + "supersaturation": [["M"]], + "supersaturating": null, + "supersaturated": null, + "supersaturates": null, + "supersaturation's": null, + "superscribe": [["G", "S", "D"]], + "superscribing": null, + "superscribes": null, + "superscribed": null, + "superscript": [["D", "G", "S"]], + "superscripted": null, + "superscripting": null, + "superscripts": null, + "superscription": [["S", "M"]], + "superscriptions": null, + "superscription's": null, + "superseder": [["M"]], + "superseder's": null, + "supersede": [["S", "R", "D", "G"]], + "supersedes": null, + "superseded": null, + "superseding": null, + "supersensitiveness": [["M"]], + "supersensitiveness's": null, + "supersensitive": [["P"]], + "superset": [["M", "S"]], + "superset's": null, + "supersets": null, + "supersonically": null, + "supersonic": [["S"]], + "supersonics": [["M"]], + "supersonics's": null, + "superstar": [["S", "M"]], + "superstars": null, + "superstar's": null, + "superstition": [["S", "M"]], + "superstitions": null, + "superstition's": null, + "superstitious": [["Y", "P"]], + "superstitiously": null, + "superstitiousness": null, + "superstore": [["S"]], + "superstores": null, + "superstructural": null, + "superstructure": [["S", "M"]], + "superstructures": null, + "superstructure's": null, + "supertanker": [["S", "M"]], + "supertankers": null, + "supertanker's": null, + "supertitle": [["M", "S", "D", "G"]], + "supertitle's": null, + "supertitles": null, + "supertitled": null, + "supertitling": null, + "superuser": [["M", "S"]], + "superuser's": null, + "superusers": null, + "supervene": [["G", "S", "D"]], + "supervening": null, + "supervenes": null, + "supervened": null, + "supervention": [["S"]], + "superventions": null, + "supervised": [["U"]], + "unsupervised": null, + "supervise": [["S", "D", "G", "N", "X"]], + "supervises": null, + "supervising": null, + "supervision": [["M"]], + "supervisions": null, + "supervision's": null, + "supervisor": [["S", "M"]], + "supervisors": null, + "supervisor's": null, + "supervisory": null, + "superwoman": [["M"]], + "superwoman's": null, + "superwomen": null, + "supineness": [["M"]], + "supineness's": null, + "supine": [["P", "S", "Y"]], + "supines": null, + "supinely": null, + "supper": [["D", "M", "G"]], + "suppered": null, + "supper's": null, + "suppering": null, + "supplanter": [["M"]], + "supplanter's": null, + "supplant": [["S", "G", "R", "D"]], + "supplants": null, + "supplanting": null, + "supplanted": null, + "supplemental": [["S"]], + "supplementals": null, + "supplementary": [["S"]], + "supplementaries": null, + "supplementation": [["S"]], + "supplementations": null, + "supplementer": [["M"]], + "supplementer's": null, + "supplement": [["S", "M", "D", "R", "G"]], + "supplements": null, + "supplement's": null, + "supplemented": null, + "supplementing": null, + "suppleness": [["S", "M"]], + "supplenesses": null, + "suppleness's": null, + "supple": [["S", "P", "L", "Y"]], + "supples": null, + "supplely": null, + "suppliant": [["S"]], + "suppliants": null, + "supplicant": [["M", "S"]], + "supplicant's": null, + "supplicants": null, + "supplicate": [["N", "G", "X", "S", "D"]], + "supplication": [["M"]], + "supplicating": null, + "supplications": null, + "supplicates": null, + "supplicated": null, + "supplication's": null, + "supplier": [["A", "M"]], + "resupplier": null, + "resupplier's": null, + "supplier's": null, + "suppl": [["R", "D", "G", "T"]], + "suppler": null, + "suppled": null, + "suppling": null, + "supplest": null, + "supply": [["M", "A", "Z", "G", "S", "R", "D"]], + "supply's": null, + "resupply's": null, + "resupply": null, + "resuppliers": null, + "resupplying": null, + "resupplies": null, + "resupplied": null, + "suppliers": null, + "supplying": null, + "supplies": null, + "supplied": null, + "supportability": [["M"]], + "supportability's": null, + "supportable": [["U", "I"]], + "unsupportable": null, + "supported": [["U"]], + "unsupported": null, + "supporter": [["M"]], + "supporter's": null, + "supporting": [["Y"]], + "supportingly": null, + "supportive": [["Y"]], + "supportively": null, + "support": [["Z", "G", "V", "S", "B", "D", "R"]], + "supporters": null, + "supports": null, + "supposed": [["Y"]], + "supposedly": null, + "suppose": [["S", "R", "D", "B", "J", "G"]], + "supposes": null, + "supposer": null, + "supposable": null, + "supposings": null, + "supposing": null, + "supposition": [["M", "S"]], + "supposition's": null, + "suppositions": null, + "suppository": [["M", "S"]], + "suppository's": null, + "suppositories": null, + "suppressant": [["S"]], + "suppressants": null, + "suppressed": [["U"]], + "unsuppressed": null, + "suppressible": [["I"]], + "insuppressible": null, + "suppression": [["S", "M"]], + "suppressions": null, + "suppression's": null, + "suppressive": [["P"]], + "suppressiveness": null, + "suppressor": [["S"]], + "suppressors": null, + "suppress": [["V", "G", "S", "D"]], + "suppressing": null, + "suppresses": null, + "suppurate": [["N", "G", "X", "S", "D"]], + "suppuration": [["M"]], + "suppurating": null, + "suppurations": null, + "suppurates": null, + "suppurated": null, + "suppuration's": null, + "supp": [["Y", "D", "R", "G", "Z"]], + "supped": null, + "supping": null, + "suppers": null, + "supra": null, + "supranational": null, + "supranationalism": [["M"]], + "supranationalism's": null, + "suprasegmental": null, + "supremacist": [["S", "M"]], + "supremacists": null, + "supremacist's": null, + "supremacy": [["S", "M"]], + "supremacies": null, + "supremacy's": null, + "supremal": null, + "supremeness": [["M"]], + "supremeness's": null, + "supreme": [["P", "S", "R", "T", "Y"]], + "supremes": null, + "supremer": null, + "supremest": null, + "supremely": null, + "supremo": [["M"]], + "supremo's": null, + "sup": [["R", "S", "Z"]], + "sups": null, + "supers": null, + "supt": null, + "Supt": [["M"]], + "Supt's": null, + "Surabaya": [["M"]], + "Surabaya's": null, + "Surat": [["M"]], + "Surat's": null, + "surcease": [["D", "S", "M", "G"]], + "surceased": null, + "surceases": null, + "surcease's": null, + "surceasing": null, + "surcharge": [["M", "G", "S", "D"]], + "surcharge's": null, + "surcharging": null, + "surcharges": null, + "surcharged": null, + "surcingle": [["M", "G", "S", "D"]], + "surcingle's": null, + "surcingling": null, + "surcingles": null, + "surcingled": null, + "surd": [["M"]], + "surd's": null, + "sured": [["I"]], + "surefire": null, + "surefooted": null, + "surely": null, + "sureness": [["M", "S"]], + "sureness's": [["U"]], + "surenesses": null, + "unsureness's": null, + "sure": [["P", "U"]], + "unsureness": null, + "unsure": null, + "surer": [["I"]], + "surest": null, + "surety": [["S", "M"]], + "sureties": null, + "surety's": null, + "surfaced": [["U", "A"]], + "unsurfaced": null, + "resurfaced": null, + "surface": [["G", "S", "R", "D", "P", "Z", "M"]], + "surfacing": [["A"]], + "surfaces": [["A"]], + "surfacer": [["A", "M", "S"]], + "surfaceness": null, + "surfacers": null, + "surface's": null, + "resurfacer": null, + "resurfacer's": null, + "resurfacers": null, + "surfacer's": null, + "resurfaces": null, + "resurfacing": null, + "surfactant": [["S", "M"]], + "surfactants": null, + "surfactant's": null, + "surfboard": [["M", "D", "S", "G"]], + "surfboard's": null, + "surfboarded": null, + "surfboards": null, + "surfboarding": null, + "surfeit": [["S", "D", "R", "M", "G"]], + "surfeits": null, + "surfeited": null, + "surfeiter": null, + "surfeit's": null, + "surfeiting": null, + "surfer": [["M"]], + "surfer's": null, + "surfing": [["M"]], + "surfing's": null, + "surf": [["S", "J", "D", "R", "G", "M", "Z"]], + "surfs": null, + "surfings": null, + "surfed": null, + "surf's": null, + "surfers": null, + "surged": [["A"]], + "resurged": null, + "surge": [["G", "Y", "M", "D", "S"]], + "surging": null, + "surgely": null, + "surge's": null, + "surges": [["A"]], + "surgeon": [["M", "S"]], + "surgeon's": null, + "surgeons": null, + "surgery": [["M", "S"]], + "surgery's": null, + "surgeries": null, + "resurges": null, + "surgical": [["Y"]], + "surgically": null, + "Suriname": null, + "Surinamese": null, + "Surinam's": null, + "surliness": [["S", "M"]], + "surlinesses": null, + "surliness's": null, + "surly": [["T", "P", "R"]], + "surliest": null, + "surlier": null, + "surmiser": [["M"]], + "surmiser's": null, + "surmise": [["S", "R", "D", "G"]], + "surmises": null, + "surmised": null, + "surmising": null, + "surmountable": [["I", "U"]], + "insurmountable": null, + "unsurmountable": null, + "surmount": [["D", "B", "S", "G"]], + "surmounted": null, + "surmounts": null, + "surmounting": null, + "surname": [["G", "S", "D", "M"]], + "surnaming": null, + "surnames": null, + "surnamed": null, + "surname's": null, + "surpassed": [["U"]], + "unsurpassed": null, + "surpass": [["G", "D", "S"]], + "surpassing": [["Y"]], + "surpasses": null, + "surpassingly": null, + "surplice": [["S", "M"]], + "surplices": null, + "surplice's": null, + "surplus": [["M", "S"]], + "surplus's": null, + "surpluses": null, + "surplussed": null, + "surplussing": null, + "surprised": [["U"]], + "unsurprised": null, + "surprise": [["M", "G", "D", "R", "S", "J"]], + "surprise's": null, + "surprising": [["Y", "U"]], + "surpriser": [["M"]], + "surprises": null, + "surprisings": null, + "surpriser's": null, + "surprisingly": null, + "unsurprisingly": null, + "unsurprising": null, + "surrealism": [["M", "S"]], + "surrealism's": null, + "surrealisms": null, + "surrealistic": null, + "surrealistically": null, + "surrealist": [["S"]], + "surrealists": null, + "surreality": null, + "surreal": [["S"]], + "surreals": null, + "surrender": [["D", "R", "S", "G"]], + "surrendered": null, + "surrenderer": [["M"]], + "surrenders": null, + "surrendering": null, + "surrenderer's": null, + "surreptitiousness": [["S"]], + "surreptitiousnesses": null, + "surreptitious": [["P", "Y"]], + "surreptitiously": null, + "surrey": [["S", "M"]], + "surreys": null, + "surrey's": null, + "surrogacy": [["S"]], + "surrogacies": null, + "surrogate": [["S", "D", "M", "N", "G"]], + "surrogates": null, + "surrogated": null, + "surrogate's": null, + "surrogation": [["M"]], + "surrogating": null, + "surrogation's": null, + "surrounding": [["M"]], + "surrounding's": null, + "surround": [["J", "G", "S", "D"]], + "surroundings": null, + "surrounds": null, + "surrounded": null, + "surtax": [["S", "D", "G", "M"]], + "surtaxes": null, + "surtaxed": null, + "surtaxing": null, + "surtax's": null, + "surveillance": [["S", "M"]], + "surveillances": null, + "surveillance's": null, + "surveillant": null, + "surveyed": [["A"]], + "resurveyed": null, + "surveying": [["M"]], + "surveying's": null, + "survey": [["J", "D", "S", "G"]], + "surveyings": null, + "surveys": [["A"]], + "surveyor": [["M", "S"]], + "surveyor's": null, + "surveyors": null, + "resurveys": null, + "survivability": [["M"]], + "survivability's": null, + "survivable": [["U"]], + "unsurvivable": null, + "survivalist": [["S"]], + "survivalists": null, + "survival": [["M", "S"]], + "survival's": null, + "survivals": null, + "survive": [["S", "R", "D", "B", "G"]], + "survives": null, + "surviver": null, + "survived": null, + "surviving": null, + "survivor": [["M", "S"]], + "survivor's": null, + "survivors": null, + "survivorship": [["M"]], + "survivorship's": null, + "Surya": [["M"]], + "Surya's": null, + "Sus": null, + "Susana": [["M"]], + "Susana's": null, + "Susanetta": [["M"]], + "Susanetta's": null, + "Susan": [["M"]], + "Susan's": null, + "Susannah": [["M"]], + "Susannah's": null, + "Susanna": [["M"]], + "Susanna's": null, + "Susanne": [["M"]], + "Susanne's": null, + "Susann": [["M"]], + "Susann's": null, + "susceptibilities": null, + "susceptibility": [["I", "M"]], + "insusceptibility": null, + "insusceptibility's": null, + "susceptibility's": null, + "susceptible": [["I"]], + "insusceptible": null, + "Susette": [["M"]], + "Susette's": null, + "sushi": [["S", "M"]], + "sushis": null, + "sushi's": null, + "Susie": [["M"]], + "Susie's": null, + "Susi": [["M"]], + "Susi's": null, + "suspected": [["U"]], + "unsuspected": null, + "suspecter": [["M"]], + "suspecter's": null, + "suspect": [["G", "S", "D", "R"]], + "suspecting": [["U"]], + "suspects": null, + "unsuspecting": [["Y"]], + "suspend": [["D", "R", "Z", "G", "S"]], + "suspended": [["U", "A"]], + "suspender": [["M"]], + "suspenders": null, + "suspending": null, + "suspends": null, + "unsuspended": null, + "resuspended": null, + "suspender's": null, + "suspenseful": null, + "suspense": [["M", "X", "N", "V", "S"]], + "suspense's": null, + "suspensions": null, + "suspension": [["A", "M"]], + "suspensive": [["Y"]], + "suspenses": null, + "resuspension": null, + "resuspension's": null, + "suspension's": null, + "suspensively": null, + "suspensor": [["M"]], + "suspensor's": null, + "suspicion": [["G", "S", "M", "D"]], + "suspicioning": null, + "suspicions": null, + "suspicion's": null, + "suspicioned": null, + "suspiciousness": [["M"]], + "suspiciousness's": null, + "suspicious": [["Y", "P"]], + "suspiciously": null, + "Susquehanna": [["M"]], + "Susquehanna's": null, + "Sussex": [["M"]], + "Sussex's": null, + "sustainability": null, + "sustainable": [["U"]], + "unsustainable": null, + "sustain": [["D", "R", "G", "L", "B", "S"]], + "sustained": null, + "sustainer": [["M"]], + "sustaining": null, + "sustainment": [["M"]], + "sustains": null, + "sustainer's": null, + "sustainment's": null, + "sustenance": [["M", "S"]], + "sustenance's": null, + "sustenances": null, + "Susy": [["M"]], + "Susy's": null, + "Sutherland": [["M"]], + "Sutherland's": null, + "Sutherlan": [["M"]], + "Sutherlan's": null, + "sutler": [["M", "S"]], + "sutler's": null, + "sutlers": null, + "Sutton": [["M"]], + "Sutton's": null, + "suture": [["G", "M", "S", "D"]], + "suturing": null, + "suture's": null, + "sutures": null, + "sutured": null, + "SUV": null, + "Suva": [["M"]], + "Suva's": null, + "Suwanee": [["M"]], + "Suwanee's": null, + "Suzanna": [["M"]], + "Suzanna's": null, + "Suzanne": [["M"]], + "Suzanne's": null, + "Suzann": [["M"]], + "Suzann's": null, + "suzerain": [["S", "M"]], + "suzerains": null, + "suzerain's": null, + "suzerainty": [["M", "S"]], + "suzerainty's": null, + "suzerainties": null, + "Suzette": [["M"]], + "Suzette's": null, + "Suzhou": [["M"]], + "Suzhou's": null, + "Suzie": [["M"]], + "Suzie's": null, + "Suzi": [["M"]], + "Suzi's": null, + "Suzuki": [["M"]], + "Suzuki's": null, + "Suzy": [["M"]], + "Suzy's": null, + "Svalbard": [["M"]], + "Svalbard's": null, + "svelte": [["R", "P", "T", "Y"]], + "svelter": null, + "svelteness": null, + "sveltest": null, + "sveltely": null, + "Svend": [["M"]], + "Svend's": null, + "Svengali": null, + "Sven": [["M"]], + "Sven's": null, + "Sverdlovsk": [["M"]], + "Sverdlovsk's": null, + "Svetlana": [["M"]], + "Svetlana's": null, + "SW": null, + "swabbed": null, + "swabbing": null, + "swabby": [["S"]], + "swabbies": null, + "Swabian": [["S", "M"]], + "Swabians": null, + "Swabian's": null, + "swab": [["M", "S"]], + "swab's": null, + "swabs": null, + "swaddle": [["S", "D", "G"]], + "swaddles": null, + "swaddled": null, + "swaddling": null, + "swagged": null, + "swagger": [["G", "S", "D", "R"]], + "swaggering": null, + "swaggers": null, + "swaggered": null, + "swaggerer": null, + "swagging": null, + "swag": [["G", "M", "S"]], + "swaging": null, + "swag's": null, + "swags": null, + "Swahili": [["M", "S"]], + "Swahili's": null, + "Swahilis": null, + "swain": [["S", "M"]], + "swains": null, + "swain's": null, + "SWAK": null, + "swallower": [["M"]], + "swallower's": null, + "swallow": [["G", "D", "R", "S"]], + "swallowing": null, + "swallowed": null, + "swallows": null, + "swallowtail": [["S", "M"]], + "swallowtails": null, + "swallowtail's": null, + "swam": null, + "swami": [["S", "M"]], + "swamis": null, + "swami's": null, + "swamper": [["M"]], + "swamper's": null, + "swampland": [["M", "S"]], + "swampland's": null, + "swamplands": null, + "swamp": [["S", "R", "D", "M", "G"]], + "swamps": null, + "swamped": null, + "swamp's": null, + "swamping": null, + "swampy": [["R", "P", "T"]], + "swampier": null, + "swampiness": null, + "swampiest": null, + "Swanee": [["M"]], + "Swanee's": null, + "swankily": null, + "swankiness": [["M", "S"]], + "swankiness's": null, + "swankinesses": null, + "swank": [["R", "D", "S", "G", "T"]], + "swanker": null, + "swanked": null, + "swanks": null, + "swanking": null, + "swankest": null, + "swanky": [["P", "T", "R", "S"]], + "swankiest": null, + "swankier": null, + "swankies": null, + "swanlike": null, + "swan": [["M", "S"]], + "swan's": null, + "swans": null, + "swanned": null, + "swanning": null, + "Swansea": [["M"]], + "Swansea's": null, + "Swanson": [["M"]], + "Swanson's": null, + "swappable": [["U"]], + "unswappable": null, + "swapped": null, + "swapper": [["S", "M"]], + "swappers": null, + "swapper's": null, + "swapping": null, + "swap": [["S"]], + "swaps": null, + "sward": [["M", "S", "G", "D"]], + "sward's": null, + "swards": null, + "swarding": null, + "swarded": null, + "swarmer": [["M"]], + "swarmer's": null, + "swarm": [["G", "S", "R", "D", "M"]], + "swarming": null, + "swarms": null, + "swarmed": null, + "swarm's": null, + "swarthiness": [["M"]], + "swarthiness's": null, + "Swarthmore": [["M"]], + "Swarthmore's": null, + "swarthy": [["R", "T", "P"]], + "swarthier": null, + "swarthiest": null, + "swart": [["P"]], + "swartness": null, + "Swartz": [["M"]], + "Swartz's": null, + "swashbuckler": [["S", "M"]], + "swashbucklers": null, + "swashbuckler's": null, + "swashbuckling": [["S"]], + "swashbucklings": null, + "swash": [["G", "S", "R", "D"]], + "swashing": null, + "swashes": null, + "swasher": null, + "swashed": null, + "swastika": [["S", "M"]], + "swastikas": null, + "swastika's": null, + "SWAT": null, + "swatch": [["M", "S"]], + "swatch's": null, + "swatches": null, + "swathe": null, + "swather": [["M"]], + "swather's": null, + "swaths": null, + "swath": [["S", "R", "D", "M", "G", "J"]], + "swathes": null, + "swathed": null, + "swath's": null, + "swathing": null, + "swathings": null, + "swat": [["S"]], + "swats": null, + "swatted": null, + "swatter": [["M", "D", "S", "G"]], + "swatter's": null, + "swattered": null, + "swatters": null, + "swattering": null, + "swatting": null, + "swayback": [["S", "D"]], + "swaybacks": null, + "swaybacked": null, + "sway": [["D", "R", "G", "S"]], + "swayed": null, + "swayer": [["M"]], + "swaying": null, + "sways": null, + "swayer's": null, + "Swaziland": [["M"]], + "Swaziland's": null, + "Swazi": [["S", "M"]], + "Swazis": null, + "Swazi's": null, + "swearer": [["M"]], + "swearer's": null, + "swear": [["S", "G", "Z", "R"]], + "swears": null, + "swearing": null, + "swearers": null, + "swearword": [["S", "M"]], + "swearwords": null, + "swearword's": null, + "sweatband": [["M", "S"]], + "sweatband's": null, + "sweatbands": null, + "sweater": [["M"]], + "sweater's": null, + "sweatily": null, + "sweatiness": [["M"]], + "sweatiness's": null, + "sweatpants": null, + "sweat": [["S", "G", "Z", "R", "M"]], + "sweats": null, + "sweating": null, + "sweaters": null, + "sweat's": null, + "sweatshirt": [["S"]], + "sweatshirts": null, + "sweatshop": [["M", "S"]], + "sweatshop's": null, + "sweatshops": null, + "sweaty": [["T", "R", "P"]], + "sweatiest": null, + "sweatier": null, + "Swedenborg": [["M"]], + "Swedenborg's": null, + "Sweden": [["M"]], + "Sweden's": null, + "swede": [["S", "M"]], + "swedes": null, + "swede's": null, + "Swede": [["S", "M"]], + "Swedes": null, + "Swede's": null, + "Swedish": null, + "Swed": [["M", "N"]], + "Swed's": null, + "Sweeney": [["S", "M"]], + "Sweeneys": null, + "Sweeney's": null, + "sweeper": [["M"]], + "sweeper's": null, + "sweepingness": [["M"]], + "sweepingness's": null, + "sweeping": [["P", "Y"]], + "sweepingly": null, + "sweep": [["S", "B", "R", "J", "G", "Z"]], + "sweeps": [["M"]], + "sweepable": null, + "sweepings": null, + "sweepers": null, + "sweeps's": null, + "sweepstakes": null, + "sweepstake's": null, + "sweetbread": [["S", "M"]], + "sweetbreads": null, + "sweetbread's": null, + "sweetbrier": [["S", "M"]], + "sweetbriers": null, + "sweetbrier's": null, + "sweetcorn": null, + "sweetened": [["U"]], + "unsweetened": null, + "sweetener": [["M"]], + "sweetener's": null, + "sweetening": [["M"]], + "sweetening's": null, + "sweeten": [["Z", "D", "R", "G", "J"]], + "sweeteners": null, + "sweetenings": null, + "sweetheart": [["M", "S"]], + "sweetheart's": null, + "sweethearts": null, + "sweetie": [["M", "S"]], + "sweetie's": null, + "sweeties": null, + "sweeting": [["M"]], + "sweeting's": null, + "sweetish": [["Y"]], + "sweetishly": null, + "Sweet": [["M"]], + "Sweet's": null, + "sweetmeat": [["M", "S"]], + "sweetmeat's": null, + "sweetmeats": null, + "sweetness": [["M", "S"]], + "sweetness's": null, + "sweetnesses": null, + "sweetshop": null, + "sweet": [["T", "X", "S", "Y", "R", "N", "P", "G"]], + "sweetest": null, + "sweetens": null, + "sweets": null, + "sweetly": null, + "sweeter": null, + "swellhead": [["D", "S"]], + "swellheaded": null, + "swellheads": null, + "swelling": [["M"]], + "swelling's": null, + "swell": [["S", "J", "R", "D", "G", "T"]], + "swells": null, + "swellings": null, + "sweller": null, + "swelled": null, + "swellest": null, + "swelter": [["D", "J", "G", "S"]], + "sweltered": null, + "swelterings": null, + "sweltering": [["Y"]], + "swelters": null, + "swelteringly": null, + "Swen": [["M"]], + "Swen's": null, + "Swenson": [["M"]], + "Swenson's": null, + "swept": null, + "sweptback": null, + "swerve": [["G", "S", "D"]], + "swerving": [["U"]], + "swerves": null, + "swerved": null, + "unswerving": [["Y"]], + "swifter": [["M"]], + "swifter's": null, + "swift": [["G", "T", "Y", "R", "D", "P", "S"]], + "swifting": null, + "swiftest": null, + "swiftly": null, + "swifted": null, + "swiftness": [["M", "S"]], + "swifts": null, + "Swift": [["M"]], + "Swift's": null, + "swiftness's": null, + "swiftnesses": null, + "swigged": null, + "swigging": null, + "swig": [["S", "M"]], + "swigs": null, + "swig's": null, + "swill": [["S", "D", "G"]], + "swills": null, + "swilled": null, + "swilling": null, + "swimmer": [["M", "S"]], + "swimmer's": null, + "swimmers": null, + "swimming": [["M", "Y", "S"]], + "swimming's": null, + "swimmingly": null, + "swimmings": null, + "swim": [["S"]], + "swims": null, + "swimsuit": [["M", "S"]], + "swimsuit's": null, + "swimsuits": null, + "Swinburne": [["M"]], + "Swinburne's": null, + "swindle": [["G", "Z", "R", "S", "D"]], + "swindling": null, + "swindlers": null, + "swindler": [["M"]], + "swindles": null, + "swindled": null, + "swindler's": null, + "swineherd": [["M", "S"]], + "swineherd's": null, + "swineherds": null, + "swine": [["S", "M"]], + "swines": null, + "swine's": null, + "swingeing": null, + "swinger": [["M"]], + "swinger's": null, + "swinging": [["Y"]], + "swingingly": null, + "swing": [["S", "G", "R", "Z", "J", "B"]], + "swings": null, + "swingers": null, + "swingings": null, + "swingable": null, + "swingy": [["R"]], + "swingier": null, + "swinishness": [["M"]], + "swinishness's": null, + "swinish": [["P", "Y"]], + "swinishly": null, + "Swink": [["M"]], + "Swink's": null, + "swipe": [["D", "S", "G"]], + "swiped": null, + "swipes": null, + "swiping": null, + "swirling": [["Y"]], + "swirlingly": null, + "swirl": [["S", "G", "R", "D"]], + "swirls": null, + "swirler": null, + "swirled": null, + "swirly": [["T", "R"]], + "swirliest": null, + "swirlier": null, + "swish": [["G", "S", "R", "D"]], + "swishing": null, + "swishes": null, + "swisher": null, + "swished": null, + "swishy": [["R"]], + "swishier": null, + "swiss": null, + "Swiss": [["S"]], + "Swisses": null, + "switchback": [["G", "D", "M", "S"]], + "switchbacking": null, + "switchbacked": null, + "switchback's": null, + "switchbacks": null, + "switchblade": [["S", "M"]], + "switchblades": null, + "switchblade's": null, + "switchboard": [["M", "S"]], + "switchboard's": null, + "switchboards": null, + "switcher": [["M"]], + "switcher's": null, + "switch": [["G", "B", "Z", "M", "R", "S", "D", "J"]], + "switching": null, + "switchable": null, + "switchers": null, + "switch's": null, + "switches": null, + "switched": null, + "switchings": null, + "switchgear": null, + "switchman": [["M"]], + "switchman's": null, + "switchmen": [["M"]], + "switchmen's": null, + "switchover": [["M"]], + "switchover's": null, + "Switzerland": [["M"]], + "Switzerland's": null, + "Switzer": [["M"]], + "Switzer's": null, + "Switz": [["M", "R"]], + "Switz's": null, + "swivel": [["G", "M", "D", "S"]], + "swiveling": null, + "swivel's": null, + "swiveled": null, + "swivels": null, + "swizzle": [["R", "D", "G", "M"]], + "swizzler": null, + "swizzled": null, + "swizzling": null, + "swizzle's": null, + "swob's": null, + "swollen": null, + "swoon": [["G", "S", "R", "D"]], + "swooning": [["Y"]], + "swoons": null, + "swooner": null, + "swooned": null, + "swooningly": null, + "swoop": [["R", "D", "S", "G"]], + "swooper": null, + "swooped": null, + "swoops": null, + "swooping": null, + "swoosh": [["G", "S", "D"]], + "swooshing": null, + "swooshes": null, + "swooshed": null, + "swop's": null, + "sword": [["D", "M", "S", "G"]], + "sworded": null, + "sword's": null, + "swords": null, + "swording": null, + "swordfish": [["S", "M"]], + "swordfishes": null, + "swordfish's": null, + "swordplayer": [["M"]], + "swordplayer's": null, + "swordplay": [["R", "M", "S"]], + "swordplay's": null, + "swordplays": null, + "swordsman": [["M"]], + "swordsman's": null, + "swordsmanship": [["S", "M"]], + "swordsmanships": null, + "swordsmanship's": null, + "swordsmen": null, + "swordtail": [["M"]], + "swordtail's": null, + "swore": null, + "sworn": null, + "swot": [["S"]], + "swots": null, + "swum": null, + "swung": null, + "s": [["X", "J", "B", "G"]], + "sings": null, + "sybarite": [["M", "S"]], + "sybarite's": null, + "sybarites": null, + "sybaritic": null, + "Sybila": [["M"]], + "Sybila's": null, + "Sybilla": [["M"]], + "Sybilla's": null, + "Sybille": [["M"]], + "Sybille's": null, + "Sybil": [["M"]], + "Sybil's": null, + "Sybyl": [["M"]], + "Sybyl's": null, + "sycamore": [["S", "M"]], + "sycamores": null, + "sycamore's": null, + "sycophancy": [["S"]], + "sycophancies": null, + "sycophantic": null, + "sycophantically": null, + "sycophant": [["S", "Y", "M"]], + "sycophants": null, + "sycophantly": null, + "sycophant's": null, + "Sydelle": [["M"]], + "Sydelle's": null, + "Sydel": [["M"]], + "Sydel's": null, + "Syd": [["M"]], + "Syd's": null, + "Sydney": [["M"]], + "Sydney's": null, + "Sykes": [["M"]], + "Sykes's": null, + "Sylas": [["M"]], + "Sylas's": null, + "syllabicate": [["G", "N", "D", "S", "X"]], + "syllabicating": null, + "syllabication": [["M"]], + "syllabicated": null, + "syllabicates": null, + "syllabications": null, + "syllabication's": null, + "syllabicity": null, + "syllabic": [["S"]], + "syllabics": null, + "syllabification": [["M"]], + "syllabification's": null, + "syllabify": [["G", "S", "D", "X", "N"]], + "syllabifying": null, + "syllabifies": null, + "syllabified": null, + "syllabifications": null, + "syllabi's": null, + "syllable": [["S", "D", "M", "G"]], + "syllables": null, + "syllabled": null, + "syllable's": null, + "syllabling": null, + "syllabub": [["M"]], + "syllabub's": null, + "syllabus": [["M", "S"]], + "syllabus's": null, + "syllabuses": null, + "syllabusss": null, + "syllogism": [["M", "S"]], + "syllogism's": null, + "syllogisms": null, + "syllogistic": null, + "Sylow": [["M"]], + "Sylow's": null, + "sylphic": null, + "sylphlike": null, + "sylph": [["M"]], + "sylph's": null, + "sylphs": null, + "Sylvania": [["M"]], + "Sylvania's": null, + "Sylvan": [["M"]], + "Sylvan's": null, + "sylvan": [["S"]], + "sylvans": null, + "Sylvester": [["M"]], + "Sylvester's": null, + "Sylvia": [["M"]], + "Sylvia's": null, + "Sylvie": [["M"]], + "Sylvie's": null, + "Syman": [["M"]], + "Syman's": null, + "symbiont": [["M"]], + "symbiont's": null, + "symbioses": null, + "symbiosis": [["M"]], + "symbiosis's": null, + "symbiotic": null, + "symbol": [["G", "M", "D", "S"]], + "symboling": null, + "symbol's": null, + "symboled": null, + "symbols": null, + "symbolical": [["Y"]], + "symbolically": null, + "symbolics": [["M"]], + "symbolics's": null, + "symbolic": [["S", "M"]], + "symbolic's": null, + "symbolism": [["M", "S"]], + "symbolism's": null, + "symbolisms": null, + "symbolist": [["M", "S"]], + "symbolist's": null, + "symbolists": null, + "symbolization": [["M", "A", "S"]], + "symbolization's": null, + "resymbolization's": null, + "resymbolization": null, + "resymbolizations": null, + "symbolizations": null, + "symbolized": [["U"]], + "unsymbolized": null, + "symbolize": [["G", "Z", "R", "S", "D"]], + "symbolizing": null, + "symbolizers": null, + "symbolizer": null, + "symbolizes": [["A"]], + "resymbolizes": null, + "Symington": [["M"]], + "Symington's": null, + "symmetric": null, + "symmetrically": [["U"]], + "unsymmetrically": null, + "symmetricalness": [["M"]], + "symmetricalness's": null, + "symmetrical": [["P", "Y"]], + "symmetrization": [["M"]], + "symmetrization's": null, + "symmetrizing": null, + "symmetry": [["M", "S"]], + "symmetry's": null, + "symmetries": null, + "Symon": [["M"]], + "Symon's": null, + "sympathetically": [["U"]], + "unsympathetically": null, + "sympathetic": [["S"]], + "sympathetics": null, + "sympathized": [["U"]], + "unsympathized": null, + "sympathizer": [["M"]], + "sympathizer's": null, + "sympathize": [["S", "R", "D", "J", "G", "Z"]], + "sympathizes": null, + "sympathizings": null, + "sympathizing": [["M", "Y", "U", "S"]], + "sympathizers": null, + "sympathizing's": null, + "unsympathizing's": null, + "sympathizingly": null, + "unsympathizingly": null, + "unsympathizing": null, + "unsympathizings": null, + "sympathy": [["M", "S"]], + "sympathy's": null, + "sympathies": null, + "symphonic": null, + "symphonists": null, + "symphony": [["M", "S"]], + "symphony's": null, + "symphonies": null, + "symposium": [["M", "S"]], + "symposium's": null, + "symposiums": null, + "symptomatic": null, + "symptomatically": null, + "symptomatology": [["M"]], + "symptomatology's": null, + "symptom": [["M", "S"]], + "symptom's": null, + "symptoms": null, + "syn": null, + "synagogal": null, + "synagogue": [["S", "M"]], + "synagogues": null, + "synagogue's": null, + "synapse": [["S", "D", "G", "M"]], + "synapses": null, + "synapsed": null, + "synapsing": null, + "synapse's": null, + "synaptic": null, + "synchronism": [["M"]], + "synchronism's": null, + "synchronization's": null, + "synchronization": [["S", "A"]], + "synchronizations": null, + "resynchronizations": null, + "resynchronization": null, + "synchronize": [["A", "G", "C", "D", "S"]], + "resynchronize": null, + "resynchronizing": null, + "resynchronized": null, + "resynchronizes": null, + "synchronizing": null, + "desynchronizing": null, + "desynchronize": null, + "desynchronized": null, + "desynchronizes": null, + "synchronized": [["U"]], + "synchronizes": null, + "unsynchronized": null, + "synchronizer": [["M", "S"]], + "synchronizer's": null, + "synchronizers": null, + "synchronousness": [["M"]], + "synchronousness's": null, + "synchronous": [["Y", "P"]], + "synchronously": null, + "synchrony": null, + "synchrotron": [["M"]], + "synchrotron's": null, + "syncopate": [["V", "N", "G", "X", "S", "D"]], + "syncopative": null, + "syncopation": [["M"]], + "syncopating": null, + "syncopations": null, + "syncopates": null, + "syncopated": null, + "syncopation's": null, + "syncope": [["M", "S"]], + "syncope's": null, + "syncopes": null, + "sync": [["S", "G", "D"]], + "syncs": null, + "syncing": null, + "synced": null, + "syndicalist": null, + "syndicate": [["X", "S", "D", "G", "N", "M"]], + "syndications": null, + "syndicates": null, + "syndicated": null, + "syndicating": null, + "syndication": null, + "syndicate's": null, + "syndic": [["S", "M"]], + "syndics": null, + "syndic's": null, + "syndrome": [["S", "M"]], + "syndromes": null, + "syndrome's": null, + "synergism": [["S", "M"]], + "synergisms": null, + "synergism's": null, + "synergistic": null, + "synergy": [["M", "S"]], + "synergy's": null, + "synergies": null, + "synfuel": [["S"]], + "synfuels": null, + "Synge": [["M"]], + "Synge's": null, + "synod": [["S", "M"]], + "synods": null, + "synod's": null, + "synonymic": null, + "synonymous": [["Y"]], + "synonymously": null, + "synonym": [["S", "M"]], + "synonyms": null, + "synonym's": null, + "synonymy": [["M", "S"]], + "synonymy's": null, + "synonymies": null, + "synopses": null, + "synopsis": [["M"]], + "synopsis's": null, + "synopsized": null, + "synopsizes": null, + "synopsizing": null, + "synoptic": [["S"]], + "synoptics": null, + "syntactical": [["Y"]], + "syntactically": null, + "syntactics": [["M"]], + "syntactics's": null, + "syntactic": [["S", "Y"]], + "syntacticly": null, + "syntax": [["M", "S"]], + "syntax's": null, + "syntaxes": null, + "syntheses": null, + "synthesis": [["M"]], + "synthesis's": null, + "synthesized": [["U"]], + "unsynthesized": null, + "synthesize": [["G", "Z", "S", "R", "D"]], + "synthesizing": null, + "synthesizers": null, + "synthesizes": [["A"]], + "synthesizer": [["M"]], + "synthesizer's": null, + "resynthesizes": null, + "synthetically": null, + "synthetic": [["S"]], + "synthetics": null, + "syphilis": [["M", "S"]], + "syphilis's": null, + "syphilises": null, + "syphilitic": [["S"]], + "syphilitics": null, + "syphilized": null, + "syphilizing": null, + "Syracuse": [["M"]], + "Syracuse's": null, + "Syriac": [["M"]], + "Syriac's": null, + "Syria": [["M"]], + "Syria's": null, + "Syrian": [["S", "M"]], + "Syrians": null, + "Syrian's": null, + "syringe": [["G", "M", "S", "D"]], + "syringing": null, + "syringe's": null, + "syringes": null, + "syringed": null, + "syrup": [["D", "M", "S", "G"]], + "syruped": null, + "syrup's": null, + "syrups": null, + "syruping": null, + "syrupy": null, + "sys": null, + "systematical": [["Y"]], + "systematically": null, + "systematics": [["M"]], + "systematics's": null, + "systematic": [["S", "P"]], + "systematicness": null, + "systematization": [["S", "M"]], + "systematizations": null, + "systematization's": null, + "systematized": [["U"]], + "unsystematized": [["Y"]], + "systematizer": [["M"]], + "systematizer's": null, + "systematize": [["Z", "D", "R", "S", "G"]], + "systematizers": null, + "systematizes": null, + "systematizing": [["U"]], + "unsystematizing": null, + "systemically": null, + "systemic": [["S"]], + "systemics": null, + "systemization": [["S", "M"]], + "systemizations": null, + "systemization's": null, + "system": [["M", "S"]], + "system's": null, + "systems": null, + "systole": [["M", "S"]], + "systole's": null, + "systoles": null, + "systolic": null, + "Szilard": [["M"]], + "Szilard's": null, + "Szymborska": [["M"]], + "Szymborska's": null, + "TA": null, + "Tabasco": [["M", "S"]], + "Tabasco's": null, + "Tabascos": null, + "Tabatha": [["M"]], + "Tabatha's": null, + "Tabbatha": [["M"]], + "Tabbatha's": null, + "tabbed": null, + "Tabbie": [["M"]], + "Tabbie's": null, + "Tabbi": [["M"]], + "Tabbi's": null, + "tabbing": null, + "Tabbitha": [["M"]], + "Tabbitha's": null, + "Tabb": [["M"]], + "Tabb's": null, + "tabbouleh": null, + "tabboulehs": null, + "tabby": [["G", "S", "D"]], + "tabbying": null, + "tabbies": null, + "tabbied": null, + "Tabby": [["M"]], + "Tabby's": null, + "Taber": [["M"]], + "Taber's": null, + "Tabernacle": [["S"]], + "Tabernacles": null, + "tabernacle": [["S", "D", "G", "M"]], + "tabernacles": null, + "tabernacled": null, + "tabernacling": null, + "tabernacle's": null, + "Tabina": [["M"]], + "Tabina's": null, + "Tabitha": [["M"]], + "Tabitha's": null, + "tabla": [["M", "S"]], + "tabla's": null, + "tablas": null, + "tableau": [["M"]], + "tableau's": null, + "tableaux": null, + "tablecloth": [["M"]], + "tablecloth's": null, + "tablecloths": null, + "table": [["G", "M", "S", "D"]], + "tabling": [["M"]], + "table's": null, + "tables": null, + "tabled": null, + "tableland": [["S", "M"]], + "tablelands": null, + "tableland's": null, + "tablespoonful": [["M", "S"]], + "tablespoonful's": null, + "tablespoonfuls": null, + "tablespoon": [["S", "M"]], + "tablespoons": null, + "tablespoon's": null, + "tablet": [["M", "D", "G", "S"]], + "tablet's": null, + "tableted": null, + "tableting": null, + "tablets": null, + "tabletop": [["M", "S"]], + "tabletop's": null, + "tabletops": null, + "tableware": [["S", "M"]], + "tablewares": null, + "tableware's": null, + "tabling's": null, + "tabloid": [["M", "S"]], + "tabloid's": null, + "tabloids": null, + "Tab": [["M", "R"]], + "Tab's": null, + "taboo": [["G", "S", "M", "D"]], + "tabooing": null, + "taboos": null, + "taboo's": null, + "tabooed": null, + "Tabor": [["M"]], + "Tabor's": null, + "tabor": [["M", "D", "G", "S"]], + "tabor's": null, + "tabored": null, + "taboring": null, + "tabors": null, + "Tabriz": [["S", "M"]], + "Tabrizes": null, + "Tabriz's": null, + "tab": [["S", "M"]], + "tabs": null, + "tab's": null, + "tabula": null, + "tabular": [["Y"]], + "tabularly": null, + "tabulate": [["X", "N", "G", "D", "S"]], + "tabulations": null, + "tabulation": [["M"]], + "tabulating": null, + "tabulated": null, + "tabulates": null, + "tabulation's": null, + "tabulator": [["M", "S"]], + "tabulator's": null, + "tabulators": null, + "tachometer": [["S", "M"]], + "tachometers": null, + "tachometer's": null, + "tachometry": null, + "tachycardia": [["M", "S"]], + "tachycardia's": null, + "tachycardias": null, + "tachyon": [["S", "M"]], + "tachyons": null, + "tachyon's": null, + "tacitness": [["M", "S"]], + "tacitness's": null, + "tacitnesses": null, + "taciturnity": [["M", "S"]], + "taciturnity's": null, + "taciturnities": null, + "taciturn": [["Y"]], + "taciturnly": null, + "Tacitus": [["M"]], + "Tacitus's": null, + "tacit": [["Y", "P"]], + "tacitly": null, + "tacker": [["M"]], + "tacker's": null, + "tack": [["G", "Z", "R", "D", "M", "S"]], + "tacking": null, + "tackers": null, + "tacked": null, + "tack's": null, + "tacks": null, + "tackiness": [["M", "S"]], + "tackiness's": null, + "tackinesses": null, + "tackler": [["M"]], + "tackler's": null, + "tackle": [["R", "S", "D", "M", "Z", "G"]], + "tackles": null, + "tackled": null, + "tackle's": null, + "tacklers": null, + "tackling": [["M"]], + "tackling's": null, + "tacky": [["R", "S", "T", "P"]], + "tackier": null, + "tackies": null, + "tackiest": null, + "Tacoma": [["M"]], + "Tacoma's": null, + "taco": [["M", "S"]], + "taco's": null, + "tacos": null, + "tact": [["F", "S", "M"]], + "tacts": null, + "tact's": null, + "tactfulness": [["S"]], + "tactfulnesses": null, + "tactful": [["Y", "P"]], + "tactfully": null, + "tactical": [["Y"]], + "tactically": null, + "tactician": [["M", "S"]], + "tactician's": null, + "tacticians": null, + "tactic": [["S", "M"]], + "tactics": null, + "tactic's": null, + "tactile": [["Y"]], + "tactilely": null, + "tactility": [["S"]], + "tactilities": null, + "tactlessness": [["S", "M"]], + "tactlessnesses": null, + "tactlessness's": null, + "tactless": [["P", "Y"]], + "tactlessly": null, + "tactual": [["Y"]], + "tactually": null, + "Taddeo": [["M"]], + "Taddeo's": null, + "Taddeusz": [["M"]], + "Taddeusz's": null, + "Tadd": [["M"]], + "Tadd's": null, + "Tadeas": [["M"]], + "Tadeas's": null, + "Tadeo": [["M"]], + "Tadeo's": null, + "Tades": null, + "Tadio": [["M"]], + "Tadio's": null, + "Tad": [["M"]], + "Tad's": null, + "tadpole": [["M", "S"]], + "tadpole's": null, + "tadpoles": null, + "tad": [["S", "M"]], + "tads": null, + "tad's": null, + "Tadzhikistan's": null, + "Tadzhikstan": [["M"]], + "Tadzhikstan's": null, + "Taegu": [["M"]], + "Taegu's": null, + "Taejon": [["M"]], + "Taejon's": null, + "taffeta": [["M", "S"]], + "taffeta's": null, + "taffetas": null, + "taffrail": [["S", "M"]], + "taffrails": null, + "taffrail's": null, + "Taffy": [["M"]], + "Taffy's": null, + "taffy": [["S", "M"]], + "taffies": null, + "taffy's": null, + "Taft": [["M"]], + "Taft's": null, + "Tagalog": [["S", "M"]], + "Tagalogs": null, + "Tagalog's": null, + "tagged": [["U"]], + "untagged": null, + "tagger": [["S"]], + "taggers": null, + "tagging": null, + "Tagore": [["M"]], + "Tagore's": null, + "tag": [["S", "M"]], + "tags": null, + "tag's": null, + "Tagus": [["M"]], + "Tagus's": null, + "Tahitian": [["S"]], + "Tahitians": null, + "Tahiti": [["M"]], + "Tahiti's": null, + "Tahoe": [["M"]], + "Tahoe's": null, + "Taichung": [["M"]], + "Taichung's": null, + "taiga": [["M", "S"]], + "taiga's": null, + "taigas": null, + "tailback": [["M", "S"]], + "tailback's": null, + "tailbacks": null, + "tail": [["C", "M", "R", "D", "G", "A", "S"]], + "detail": null, + "detail's": null, + "detailer": null, + "detailing": null, + "details": null, + "tail's": null, + "retail's": null, + "tailer": [["A", "M"]], + "retailer": null, + "tailed": null, + "retailed": null, + "tailing": [["M", "S"]], + "retailing": null, + "retails": null, + "tails": null, + "tailcoat": [["S"]], + "tailcoats": null, + "retailer's": null, + "tailer's": null, + "tailgate": [["M", "G", "R", "S", "D"]], + "tailgate's": null, + "tailgating": null, + "tailgater": [["M"]], + "tailgates": null, + "tailgated": null, + "tailgater's": null, + "tailing's": null, + "tailings": null, + "taillessness": [["M"]], + "taillessness's": null, + "tailless": [["P"]], + "taillight": [["M", "S"]], + "taillight's": null, + "taillights": null, + "tailor": [["D", "M", "J", "S", "G", "B"]], + "tailored": null, + "tailor's": null, + "tailorings": null, + "tailors": null, + "tailoring": null, + "tailorable": null, + "Tailor": [["M"]], + "Tailor's": null, + "tailpipe": [["S", "M"]], + "tailpipes": null, + "tailpipe's": null, + "tailspin": [["M", "S"]], + "tailspin's": null, + "tailspins": null, + "tailwind": [["S", "M"]], + "tailwinds": null, + "tailwind's": null, + "Tainan": [["M"]], + "Tainan's": null, + "Taine": [["M"]], + "Taine's": null, + "taint": [["D", "G", "S"]], + "tainted": [["U"]], + "tainting": null, + "taints": null, + "untainted": null, + "Taipei": [["M"]], + "Taipei's": null, + "Taite": [["M"]], + "Taite's": null, + "Tait": [["M"]], + "Tait's": null, + "Taiwanese": null, + "Taiwan": [["M"]], + "Taiwan's": null, + "Taiyuan": [["M"]], + "Taiyuan's": null, + "Tajikistan": null, + "takeaway": [["S"]], + "takeaways": null, + "taken": [["A"]], + "retaken": null, + "takeoff": [["S", "M"]], + "takeoffs": null, + "takeoff's": null, + "takeout": [["S"]], + "takeouts": null, + "takeover": [["S", "M"]], + "takeovers": null, + "takeover's": null, + "taker": [["M"]], + "taker's": null, + "take": [["R", "S", "H", "Z", "G", "J"]], + "takes": [["I", "A"]], + "taketh": null, + "takers": null, + "taking": [["I", "A"]], + "takings": null, + "intakes": null, + "retakes": null, + "intaking": null, + "retaking": null, + "Taklamakan": [["M"]], + "Taklamakan's": null, + "Talbert": [["M"]], + "Talbert's": null, + "Talbot": [["M"]], + "Talbot's": null, + "talcked": null, + "talcking": null, + "talc": [["S", "M"]], + "talcs": null, + "talc's": null, + "talcum": [["S"]], + "talcums": null, + "talebearer": [["S", "M"]], + "talebearers": null, + "talebearer's": null, + "talented": [["M"]], + "talented's": null, + "talentless": null, + "talent": [["S", "M", "D"]], + "talents": null, + "talent's": null, + "taler": [["M"]], + "taler's": null, + "tale": [["R", "S", "M", "N"]], + "tales": null, + "tale's": null, + "talion": [["M"]], + "tali": null, + "Talia": [["M"]], + "Talia's": null, + "Taliesin": [["M"]], + "Taliesin's": null, + "talion's": null, + "talismanic": null, + "talisman": [["S", "M"]], + "talismans": null, + "talisman's": null, + "talkativeness": [["M", "S"]], + "talkativeness's": null, + "talkativenesses": null, + "talkative": [["Y", "P"]], + "talkatively": null, + "talker": [["M"]], + "talker's": null, + "talk": [["G", "Z", "S", "R", "D"]], + "talking": null, + "talkers": null, + "talks": null, + "talked": null, + "talkie": [["M"]], + "talkie's": null, + "talky": [["R", "S", "T"]], + "talkier": null, + "talkies": null, + "talkiest": null, + "Talladega": [["M"]], + "Talladega's": null, + "Tallahassee": [["M"]], + "Tallahassee's": null, + "Tallahatchie": [["M"]], + "Tallahatchie's": null, + "Tallahoosa": [["M"]], + "Tallahoosa's": null, + "tallboy": [["M", "S"]], + "tallboy's": null, + "tallboys": null, + "Tallchief": [["M"]], + "Tallchief's": null, + "Talley": [["M"]], + "Talley's": null, + "Talleyrand": [["M"]], + "Talleyrand's": null, + "Tallia": [["M"]], + "Tallia's": null, + "Tallie": [["M"]], + "Tallie's": null, + "Tallinn": [["M"]], + "Tallinn's": null, + "tallish": null, + "tallness": [["M", "S"]], + "tallness's": null, + "tallnesses": null, + "Tallou": [["M"]], + "Tallou's": null, + "tallow": [["D", "M", "S", "G"]], + "tallowed": null, + "tallow's": null, + "tallows": null, + "tallowing": null, + "tallowy": null, + "tall": [["T", "P", "R"]], + "tallest": null, + "taller": null, + "Tallulah": [["M"]], + "Tallulah's": null, + "tally": [["G", "R", "S", "D", "Z"]], + "tallying": null, + "tallier": null, + "tallies": null, + "tallied": null, + "talliers": null, + "tallyho": [["D", "M", "S", "G"]], + "tallyhoed": null, + "tallyho's": null, + "tallyhos": null, + "tallyhoing": null, + "Tally": [["M"]], + "Tally's": null, + "Talmudic": null, + "Talmudist": [["M", "S"]], + "Talmudist's": null, + "Talmudists": null, + "Talmud": [["M", "S"]], + "Talmud's": null, + "Talmuds": null, + "talon": [["S", "M", "D"]], + "talons": null, + "talon's": null, + "taloned": null, + "talus": [["M", "S"]], + "talus's": null, + "taluses": null, + "Talyah": [["M"]], + "Talyah's": null, + "Talya": [["M"]], + "Talya's": null, + "Ta": [["M"]], + "Ta's": null, + "tamable": [["M"]], + "tamable's": null, + "tamale": [["S", "M"]], + "tamales": null, + "tamale's": null, + "tamarack": [["S", "M"]], + "tamaracks": null, + "tamarack's": null, + "Tamarah": [["M"]], + "Tamarah's": null, + "Tamara": [["M"]], + "Tamara's": null, + "tamarind": [["M", "S"]], + "tamarind's": null, + "tamarinds": null, + "Tamar": [["M"]], + "Tamar's": null, + "Tamarra": [["M"]], + "Tamarra's": null, + "Tamas": null, + "tambourine": [["M", "S"]], + "tambourine's": null, + "tambourines": null, + "tamed": [["U"]], + "untamed": null, + "Tameka": [["M"]], + "Tameka's": null, + "tameness": [["S"]], + "tamenesses": null, + "Tamera": [["M"]], + "Tamera's": null, + "Tamerlane": [["M"]], + "Tamerlane's": null, + "tame": [["S", "Y", "P"]], + "tames": null, + "tamely": null, + "Tamika": [["M"]], + "Tamika's": null, + "Tamiko": [["M"]], + "Tamiko's": null, + "Tamil": [["M", "S"]], + "Tamil's": null, + "Tamils": null, + "Tami": [["M"]], + "Tami's": null, + "Tam": [["M"]], + "Tam's": null, + "Tamma": [["M"]], + "Tamma's": null, + "Tammany": [["M"]], + "Tammany's": null, + "Tammara": [["M"]], + "Tammara's": null, + "tam": [["M", "D", "R", "S", "T", "Z", "G", "B"]], + "tam's": null, + "tamer": null, + "tams": null, + "tamest": null, + "tamers": null, + "taming": null, + "Tammie": [["M"]], + "Tammie's": null, + "Tammi": [["M"]], + "Tammi's": null, + "Tammy": [["M"]], + "Tammy's": null, + "Tampa": [["M"]], + "Tampa's": null, + "Tampax": [["M"]], + "Tampax's": null, + "tampered": [["U"]], + "untampered": null, + "tamperer": [["M"]], + "tamperer's": null, + "tamper": [["Z", "G", "R", "D"]], + "tamperers": null, + "tampering": null, + "tampon": [["D", "M", "S", "G"]], + "tamponed": null, + "tampon's": null, + "tampons": null, + "tamponing": null, + "tamp": [["S", "G", "Z", "R", "D"]], + "tamps": null, + "tamping": null, + "tampers": null, + "tamped": null, + "Tamqrah": [["M"]], + "Tamqrah's": null, + "Tamra": [["M"]], + "Tamra's": null, + "tanager": [["M", "S"]], + "tanager's": null, + "tanagers": null, + "Tanaka": [["M"]], + "Tanaka's": null, + "Tana": [["M"]], + "Tana's": null, + "Tananarive": [["M"]], + "Tananarive's": null, + "tanbark": [["S", "M"]], + "tanbarks": null, + "tanbark's": null, + "Tancred": [["M"]], + "Tancred's": null, + "tandem": [["S", "M"]], + "tandems": null, + "tandem's": null, + "Tandie": [["M"]], + "Tandie's": null, + "Tandi": [["M"]], + "Tandi's": null, + "tandoori": [["S"]], + "tandooris": null, + "Tandy": [["M"]], + "Tandy's": null, + "Taney": [["M"]], + "Taney's": null, + "T'ang": null, + "Tanganyika": [["M"]], + "Tanganyika's": null, + "tangelo": [["S", "M"]], + "tangelos": null, + "tangelo's": null, + "tangency": [["M"]], + "tangency's": null, + "tangential": [["Y"]], + "tangentially": null, + "tangent": [["S", "M"]], + "tangents": null, + "tangent's": null, + "tangerine": [["M", "S"]], + "tangerine's": null, + "tangerines": null, + "tang": [["G", "S", "Y", "D", "M"]], + "tanging": null, + "tangs": null, + "tangly": null, + "tanged": null, + "tang's": null, + "tangibility": [["M", "I", "S"]], + "tangibility's": null, + "intangibility's": null, + "intangibility": null, + "intangibilities": null, + "tangibilities": null, + "tangible": [["I", "P", "S"]], + "intangibleness": null, + "intangibles": null, + "tangibleness": [["S", "M"]], + "tangibles": null, + "tangibleness's": [["I"]], + "intangibleness's": null, + "tangiblenesses": null, + "tangibly": [["I"]], + "intangibly": null, + "Tangier": [["M"]], + "Tangier's": null, + "tangle's": null, + "tangle": [["U", "D", "S", "G"]], + "untangle": null, + "untangled": null, + "untangles": null, + "untangling": null, + "tangled": null, + "tangles": null, + "tangling": null, + "tango": [["M", "D", "S", "G"]], + "tango's": null, + "tangoed": null, + "tangos": null, + "tangoing": null, + "Tangshan": [["M"]], + "Tangshan's": null, + "tangy": [["R", "S", "T"]], + "tangier": null, + "tangies": null, + "tangiest": null, + "Tanhya": [["M"]], + "Tanhya's": null, + "Tania": [["M"]], + "Tania's": null, + "Tani": [["M"]], + "Tani's": null, + "Tanisha": [["M"]], + "Tanisha's": null, + "Tanitansy": [["M"]], + "Tanitansy's": null, + "tankard": [["M", "S"]], + "tankard's": null, + "tankards": null, + "tanker": [["M"]], + "tanker's": null, + "tankful": [["M", "S"]], + "tankful's": null, + "tankfuls": null, + "tank": [["G", "Z", "S", "R", "D", "M"]], + "tanking": null, + "tankers": null, + "tanks": null, + "tanked": null, + "tank's": null, + "Tan": [["M"]], + "Tan's": null, + "tan": [["M", "S"]], + "tan's": null, + "tans": null, + "tanned": [["U"]], + "untanned": null, + "Tannenbaum": [["M"]], + "Tannenbaum's": null, + "Tanner": [["M"]], + "Tanner's": null, + "tanner": [["S", "M"]], + "tanners": null, + "tanner's": null, + "tannery": [["M", "S"]], + "tannery's": null, + "tanneries": null, + "tannest": null, + "Tanney": [["M"]], + "Tanney's": null, + "Tannh�user": [["M"]], + "Tannh�user's": null, + "Tannie": [["M"]], + "Tannie's": null, + "tanning": [["S", "M"]], + "tannings": null, + "tanning's": null, + "tannin": [["S", "M"]], + "tannins": null, + "tannin's": null, + "Tann": [["R", "M"]], + "Tann's": null, + "Tanny": [["M"]], + "Tanny's": null, + "Tansy": [["M"]], + "Tansy's": null, + "tansy": [["S", "M"]], + "tansies": null, + "tansy's": null, + "tantalization": [["S", "M"]], + "tantalizations": null, + "tantalization's": null, + "tantalized": [["U"]], + "untantalized": null, + "tantalize": [["G", "Z", "S", "R", "D"]], + "tantalizing": [["Y", "P"]], + "tantalizers": null, + "tantalizes": null, + "tantalizer": null, + "tantalizingly": [["S"]], + "tantalizinglies": null, + "tantalizingness": [["S"]], + "tantalizingnesses": null, + "tantalum": [["M", "S"]], + "tantalum's": null, + "tantalums": null, + "Tantalus": [["M"]], + "Tantalus's": null, + "tantamount": null, + "tantra": [["S"]], + "tantras": null, + "tantrum": [["S", "M"]], + "tantrums": null, + "tantrum's": null, + "Tanya": [["M"]], + "Tanya's": null, + "Tanzania": [["M"]], + "Tanzania's": null, + "Tanzanian": [["S"]], + "Tanzanians": null, + "taoism": null, + "Taoism": [["M", "S"]], + "Taoism's": null, + "Taoisms": null, + "Taoist": [["M", "S"]], + "Taoist's": null, + "Taoists": null, + "taoist": [["S"]], + "taoists": null, + "Tao": [["M"]], + "Tao's": null, + "tao": [["S"]], + "taos": null, + "Tapdance": [["M"]], + "Tapdance's": null, + "taped": [["U"]], + "untaped": null, + "tapeline": [["S"]], + "tapelines": null, + "taperer": [["M"]], + "taperer's": null, + "taper": [["G", "R", "D"]], + "tapering": null, + "tapered": null, + "tape": [["S", "M"]], + "tapes": null, + "tape's": null, + "tapestry": [["G", "M", "S", "D"]], + "tapestrying": null, + "tapestry's": null, + "tapestries": null, + "tapestried": null, + "tapeworm": [["M", "S"]], + "tapeworm's": null, + "tapeworms": null, + "tapioca": [["M", "S"]], + "tapioca's": null, + "tapiocas": null, + "tapir": [["M", "S"]], + "tapir's": null, + "tapirs": null, + "tap": [["M", "S", "D", "R", "J", "Z", "G"]], + "tap's": null, + "taps": [["M"]], + "tapings": null, + "tapers": null, + "taping": null, + "tapped": [["U"]], + "untapped": null, + "tapper": [["M", "S"]], + "tapper's": null, + "tappers": null, + "tappet": [["M", "S"]], + "tappet's": null, + "tappets": null, + "tapping": [["M"]], + "tapping's": null, + "taproom": [["M", "S"]], + "taproom's": null, + "taprooms": null, + "taproot": [["S", "M"]], + "taproots": null, + "taproot's": null, + "taps's": null, + "Tarah": [["M"]], + "Tarah's": null, + "Tara": [["M"]], + "Tara's": null, + "tarantella": [["M", "S"]], + "tarantella's": null, + "tarantellas": null, + "tarantula": [["M", "S"]], + "tarantula's": null, + "tarantulas": null, + "Tarawa": [["M"]], + "Tarawa's": null, + "Tarazed": [["M"]], + "Tarazed's": null, + "Tarbell": [["M"]], + "Tarbell's": null, + "tardily": null, + "tardiness": [["S"]], + "tardinesses": null, + "tardy": [["T", "P", "R", "S"]], + "tardiest": null, + "tardier": null, + "tardies": null, + "tare": [["M", "S"]], + "tare's": null, + "tares": null, + "target": [["G", "S", "M", "D"]], + "targeting": null, + "targets": null, + "target's": null, + "targeted": null, + "tar": [["G", "S", "M", "D"]], + "taring": null, + "tars": null, + "tar's": null, + "tared": null, + "tariff": [["D", "M", "S", "G"]], + "tariffed": null, + "tariff's": null, + "tariffs": null, + "tariffing": null, + "Tarim": [["M"]], + "Tarim's": null, + "Tarkington": [["M"]], + "Tarkington's": null, + "tarmacked": null, + "tarmacking": null, + "tarmac": [["S"]], + "tarmacs": null, + "tarnished": [["U"]], + "untarnished": null, + "tarnish": [["G", "D", "S"]], + "tarnishing": null, + "tarnishes": null, + "tarn": [["M", "S"]], + "tarn's": null, + "tarns": null, + "taro": [["M", "S"]], + "taro's": null, + "taros": null, + "tarot": [["M", "S"]], + "tarot's": null, + "tarots": null, + "tarpapered": null, + "tarpaulin": [["M", "S"]], + "tarpaulin's": null, + "tarpaulins": null, + "tarp": [["M", "S"]], + "tarp's": null, + "tarps": null, + "tarpon": [["M", "S"]], + "tarpon's": null, + "tarpons": null, + "tarragon": [["S", "M"]], + "tarragons": null, + "tarragon's": null, + "Tarrah": [["M"]], + "Tarrah's": null, + "Tarra": [["M"]], + "Tarra's": null, + "Tarrance": [["M"]], + "Tarrance's": null, + "tarred": [["M"]], + "tarred's": null, + "tarring": [["M"]], + "tarring's": null, + "tarry": [["T", "G", "R", "S", "D"]], + "tarriest": null, + "tarrying": null, + "tarrier": null, + "tarries": null, + "tarried": null, + "Tarrytown": [["M"]], + "Tarrytown's": null, + "tarsal": [["S"]], + "tarsals": null, + "tarsi": null, + "tarsus": [["M"]], + "tarsus's": null, + "tartan": [["M", "S"]], + "tartan's": null, + "tartans": null, + "tartaric": null, + "Tartar's": null, + "tartar": [["S", "M"]], + "tartars": null, + "tartar's": null, + "Tartary": [["M"]], + "Tartary's": null, + "tartness": [["M", "S"]], + "tartness's": null, + "tartnesses": null, + "tart": [["P", "M", "Y", "R", "D", "G", "T", "S"]], + "tart's": null, + "tartly": null, + "tarter": null, + "tarted": null, + "tarting": null, + "tartest": null, + "tarts": null, + "Tartuffe": [["M"]], + "Tartuffe's": null, + "Taryn": [["M"]], + "Taryn's": null, + "Tarzan": [["M"]], + "Tarzan's": null, + "Tasha": [["M"]], + "Tasha's": null, + "Tashkent": [["M"]], + "Tashkent's": null, + "Tasia": [["M"]], + "Tasia's": null, + "task": [["G", "S", "D", "M"]], + "tasking": null, + "tasks": null, + "tasked": null, + "task's": null, + "taskmaster": [["S", "M"]], + "taskmasters": null, + "taskmaster's": null, + "taskmistress": [["M", "S"]], + "taskmistress's": null, + "taskmistresses": null, + "Tasmania": [["M"]], + "Tasmania's": null, + "Tasmanian": [["S"]], + "Tasmanians": null, + "tassellings": null, + "tassel": [["M", "D", "G", "S"]], + "tassel's": null, + "tasseled": null, + "tasseling": null, + "tassels": null, + "Tass": [["M"]], + "Tass's": null, + "tasted": [["E", "U"]], + "distasted": null, + "untasted": null, + "tastefulness": [["S", "M", "E"]], + "tastefulnesses": null, + "distastefulnesses": null, + "tastefulness's": null, + "distastefulness's": null, + "distastefulness": null, + "tasteful": [["P", "E", "Y"]], + "distasteful": null, + "distastefully": null, + "tastefully": null, + "taste": [["G", "Z", "M", "J", "S", "R", "D"]], + "tasting": [["E"]], + "tasters": null, + "taste's": [["E"]], + "tastings": null, + "tastes": [["E"]], + "taster": [["M"]], + "tastelessness": [["S", "M"]], + "tastelessnesses": null, + "tastelessness's": null, + "tasteless": [["Y", "P"]], + "tastelessly": null, + "taster's": null, + "distaste's": null, + "distastes": null, + "tastily": null, + "tastiness": [["M", "S"]], + "tastiness's": null, + "tastinesses": null, + "distasting": null, + "tasty": [["R", "T", "P"]], + "tastier": null, + "tastiest": null, + "tatami": [["M", "S"]], + "tatami's": null, + "tatamis": null, + "Tatar": [["S", "M"]], + "Tatars": null, + "Tatar's": null, + "Tate": [["M"]], + "Tate's": null, + "tater": [["M"]], + "tater's": null, + "Tatiana": [["M"]], + "Tatiana's": null, + "Tatiania": [["M"]], + "Tatiania's": null, + "tat": [["S", "R", "Z"]], + "tats": null, + "taters": null, + "tatted": null, + "tatterdemalion": [["S", "M"]], + "tatterdemalions": null, + "tatterdemalion's": null, + "tattered": [["M"]], + "tattered's": null, + "tatter": [["G", "D", "S"]], + "tattering": null, + "tatters": null, + "tatting": [["S", "M"]], + "tattings": null, + "tatting's": null, + "tattler": [["M"]], + "tattler's": null, + "tattle": [["R", "S", "D", "Z", "G"]], + "tattles": null, + "tattled": null, + "tattlers": null, + "tattling": null, + "tattletale": [["S", "M"]], + "tattletales": null, + "tattletale's": null, + "tattooer": [["M"]], + "tattooer's": null, + "tattooist": [["M", "S"]], + "tattooist's": null, + "tattooists": null, + "tattoo": [["Z", "R", "D", "M", "G", "S"]], + "tattooers": null, + "tattooed": null, + "tattoo's": null, + "tattooing": null, + "tattoos": null, + "tatty": [["R"]], + "tattier": null, + "Tatum": [["M"]], + "Tatum's": null, + "taught": [["A", "U"]], + "retaught": null, + "untaught": null, + "taunter": [["M"]], + "taunter's": null, + "taunting": [["Y"]], + "tauntingly": null, + "taunt": [["Z", "G", "R", "D", "S"]], + "taunters": null, + "taunted": null, + "taunts": null, + "taupe": [["S", "M"]], + "taupes": null, + "taupe's": null, + "Taurus": [["S", "M"]], + "Tauruses": null, + "Taurus's": null, + "tau": [["S", "M"]], + "taus": null, + "tau's": null, + "tauten": [["G", "D"]], + "tautening": null, + "tautened": null, + "tautness": [["S"]], + "tautnesses": null, + "tautological": [["Y"]], + "tautologically": null, + "tautologous": null, + "tautology": [["S", "M"]], + "tautologies": null, + "tautology's": null, + "taut": [["P", "G", "T", "X", "Y", "R", "D", "N", "S"]], + "tauting": null, + "tautest": null, + "tautens": null, + "tautly": null, + "tauter": null, + "tauted": null, + "tauts": null, + "taverner": [["M"]], + "taverner's": null, + "tavern": [["R", "M", "S"]], + "tavern's": null, + "taverns": null, + "tawdrily": null, + "tawdriness": [["S", "M"]], + "tawdrinesses": null, + "tawdriness's": null, + "tawdry": [["S", "R", "T", "P"]], + "tawdries": null, + "tawdrier": null, + "tawdriest": null, + "Tawney": [["M"]], + "Tawney's": null, + "Tawnya": [["M"]], + "Tawnya's": null, + "tawny": [["R", "S", "M", "P", "T"]], + "tawnier": null, + "tawnies": null, + "tawny's": null, + "tawniness": null, + "tawniest": null, + "Tawsha": [["M"]], + "Tawsha's": null, + "taxable": [["S"]], + "taxables": null, + "taxably": null, + "taxation": [["M", "S"]], + "taxation's": null, + "taxations": null, + "taxed": [["U"]], + "untaxed": null, + "taxicab": [["M", "S"]], + "taxicab's": null, + "taxicabs": null, + "taxidermist": [["S", "M"]], + "taxidermists": null, + "taxidermist's": null, + "taxidermy": [["M", "S"]], + "taxidermy's": null, + "taxidermies": null, + "taxi": [["M", "D", "G", "S"]], + "taxi's": null, + "taxied": null, + "taxiing": null, + "taxis": null, + "taximeter": [["S", "M"]], + "taximeters": null, + "taximeter's": null, + "taxing": [["Y"]], + "taxingly": null, + "taxiway": [["M", "S"]], + "taxiway's": null, + "taxiways": null, + "taxonomic": null, + "taxonomically": null, + "taxonomist": [["S", "M"]], + "taxonomists": null, + "taxonomist's": null, + "taxonomy": [["S", "M"]], + "taxonomies": null, + "taxonomy's": null, + "taxpayer": [["M", "S"]], + "taxpayer's": null, + "taxpayers": null, + "taxpaying": [["M"]], + "taxpaying's": null, + "tax": [["Z", "G", "J", "M", "D", "R", "S", "B"]], + "taxers": null, + "taxings": null, + "tax's": null, + "taxer": null, + "taxes": null, + "Taylor": [["S", "M"]], + "Taylors": null, + "Taylor's": null, + "Tb": null, + "TB": null, + "TBA": null, + "Tbilisi": [["M"]], + "Tbilisi's": null, + "tbs": null, + "tbsp": null, + "Tchaikovsky": [["M"]], + "Tchaikovsky's": null, + "Tc": [["M"]], + "Tc's": null, + "TCP": null, + "TD": null, + "TDD": null, + "Te": null, + "teabag": [["S"]], + "teabags": null, + "teacake": [["M", "S"]], + "teacake's": null, + "teacakes": null, + "teacart": [["M"]], + "teacart's": null, + "teachable": [["P"]], + "teachableness": null, + "teach": [["A", "G", "S"]], + "reteach": null, + "reteaching": null, + "reteaches": null, + "teaching": [["S", "M"]], + "teaches": null, + "teacher": [["M", "S"]], + "teacher's": null, + "teachers": null, + "teachings": null, + "teaching's": null, + "teacloth": null, + "teacupful": [["M", "S"]], + "teacupful's": null, + "teacupfuls": null, + "teacup": [["M", "S"]], + "teacup's": null, + "teacups": null, + "Teador": [["M"]], + "Teador's": null, + "teahouse": [["S", "M"]], + "teahouses": null, + "teahouse's": null, + "teakettle": [["S", "M"]], + "teakettles": null, + "teakettle's": null, + "teak": [["S", "M"]], + "teaks": null, + "teak's": null, + "teakwood": [["M"]], + "teakwood's": null, + "tealeaves": null, + "teal": [["M", "S"]], + "teal's": null, + "teals": null, + "tea": [["M", "D", "G", "S"]], + "tea's": null, + "teaed": null, + "teaing": null, + "teas": [["S", "R", "D", "G", "Z"]], + "teammate": [["M", "S"]], + "teammate's": null, + "teammates": null, + "team": [["M", "R", "D", "G", "S"]], + "team's": null, + "teamer": null, + "teamed": null, + "teaming": null, + "teams": null, + "teamster": [["M", "S"]], + "teamster's": null, + "teamsters": null, + "teamwork": [["S", "M"]], + "teamworks": null, + "teamwork's": null, + "teapot": [["M", "S"]], + "teapot's": null, + "teapots": null, + "tearaway": null, + "teardrop": [["M", "S"]], + "teardrop's": null, + "teardrops": null, + "tearer": [["M"]], + "tearer's": null, + "tearfulness": [["M"]], + "tearfulness's": null, + "tearful": [["Y", "P"]], + "tearfully": null, + "teargas": [["S"]], + "teargases": null, + "teargassed": null, + "teargassing": null, + "tearjerker": [["S"]], + "tearjerkers": null, + "tearoom": [["M", "S"]], + "tearoom's": null, + "tearooms": null, + "tear": [["R", "D", "M", "S", "G"]], + "teared": null, + "tear's": null, + "tears": null, + "tearing": null, + "teary": [["R", "T"]], + "tearier": null, + "teariest": null, + "Teasdale": [["M"]], + "Teasdale's": null, + "tease": [["K", "S"]], + "proteases": null, + "teases": null, + "teasel": [["D", "G", "S", "M"]], + "teaseled": null, + "teaseling": null, + "teasels": null, + "teasel's": null, + "teaser": [["M"]], + "teaser's": null, + "teashop": [["S", "M"]], + "teashops": null, + "teashop's": null, + "teasing": [["Y"]], + "teasingly": null, + "teaspoonful": [["M", "S"]], + "teaspoonful's": null, + "teaspoonfuls": null, + "teaspoon": [["M", "S"]], + "teaspoon's": null, + "teaspoons": null, + "teased": null, + "teasers": null, + "teatime": [["M", "S"]], + "teatime's": null, + "teatimes": null, + "teat": [["M", "D", "S"]], + "teat's": null, + "teated": null, + "teats": null, + "tech": [["D"]], + "teched": null, + "technetium": [["S", "M"]], + "technetiums": null, + "technetium's": null, + "technicality": [["M", "S"]], + "technicality's": null, + "technicalities": null, + "technicalness": [["M"]], + "technicalness's": null, + "technical": [["Y", "S", "P"]], + "technically": null, + "technicals": null, + "technician": [["M", "S"]], + "technician's": null, + "technicians": null, + "Technicolor": [["M", "S"]], + "Technicolor's": null, + "Technicolors": null, + "Technion": [["M"]], + "Technion's": null, + "technique": [["S", "M"]], + "techniques": null, + "technique's": null, + "technocracy": [["M", "S"]], + "technocracy's": null, + "technocracies": null, + "technocratic": null, + "technocrat": [["S"]], + "technocrats": null, + "technological": [["Y"]], + "technologically": null, + "technologist": [["M", "S"]], + "technologist's": null, + "technologists": null, + "technology": [["M", "S"]], + "technology's": null, + "technologies": null, + "technophobia": null, + "technophobic": null, + "techs": null, + "tectonically": null, + "tectonic": [["S"]], + "tectonics": [["M"]], + "tectonics's": null, + "Tecumseh": [["M"]], + "Tecumseh's": null, + "Tedda": [["M"]], + "Tedda's": null, + "Teddie": [["M"]], + "Teddie's": null, + "Teddi": [["M"]], + "Teddi's": null, + "Tedd": [["M"]], + "Tedd's": null, + "Teddy": [["M"]], + "Teddy's": null, + "teddy": [["S", "M"]], + "teddies": null, + "teddy's": null, + "Tedie": [["M"]], + "Tedie's": null, + "Tedi": [["M"]], + "Tedi's": null, + "tediousness": [["S", "M"]], + "tediousnesses": null, + "tediousness's": null, + "tedious": [["Y", "P"]], + "tediously": null, + "tedium": [["M", "S"]], + "tedium's": null, + "tediums": null, + "Ted": [["M"]], + "Ted's": null, + "Tedman": [["M"]], + "Tedman's": null, + "Tedmund": [["M"]], + "Tedmund's": null, + "Tedra": [["M"]], + "Tedra's": null, + "tee": [["D", "R", "S", "M", "H"]], + "teed": null, + "teer": null, + "tees": null, + "tee's": null, + "teeth": [["R", "S", "D", "J", "M", "G"]], + "teeing": null, + "teem": [["G", "S", "D"]], + "teeming": [["P", "Y"]], + "teems": null, + "teemed": null, + "teemingness": [["M"]], + "teemingness's": null, + "teemingly": null, + "teenager": [["M"]], + "teenager's": null, + "teenage": [["R", "Z"]], + "teenagers": null, + "Teena": [["M"]], + "Teena's": null, + "teen": [["S", "R"]], + "teens": null, + "teener": null, + "teenybopper": [["S", "M"]], + "teenyboppers": null, + "teenybopper's": null, + "teeny": [["R", "T"]], + "teenier": null, + "teeniest": null, + "teepee's": null, + "teeshirt": [["S"]], + "teeshirts": null, + "teeter": [["G", "D", "S"]], + "teetering": null, + "teetered": null, + "teeters": null, + "teethe": null, + "teether": [["M"]], + "teether's": null, + "teething": [["M"]], + "teething's": null, + "teethmarks": null, + "teethes": null, + "teethed": null, + "teethings": null, + "teeth's": null, + "teetotaler": [["M"]], + "teetotaler's": null, + "teetotalism": [["M", "S"]], + "teetotalism's": null, + "teetotalisms": null, + "teetotal": [["S", "R", "D", "G", "Z"]], + "teetotals": null, + "teetotaled": null, + "teetotaling": null, + "teetotalers": null, + "TEFL": null, + "Teflon": [["M", "S"]], + "Teflon's": null, + "Teflons": null, + "Tegucigalpa": [["M"]], + "Tegucigalpa's": null, + "Teheran's": null, + "Tehran": null, + "TEirtza": [["M"]], + "TEirtza's": null, + "tektite": [["S", "M"]], + "tektites": null, + "tektite's": null, + "Tektronix": [["M"]], + "Tektronix's": null, + "telecast": [["S", "R", "G", "Z"]], + "telecasts": null, + "telecaster": null, + "telecasting": null, + "telecasters": null, + "telecommunicate": [["N", "X"]], + "telecommunication": [["M"]], + "telecommunications": null, + "telecommunication's": null, + "telecommute": [["S", "R", "D", "Z", "G", "J"]], + "telecommutes": null, + "telecommuter": null, + "telecommuted": null, + "telecommuters": null, + "telecommuting": null, + "telecommutings": null, + "telecoms": null, + "teleconference": [["G", "M", "J", "S", "D"]], + "teleconferencing": null, + "teleconference's": null, + "teleconferencings": null, + "teleconferences": null, + "teleconferenced": null, + "Teledyne": [["M"]], + "Teledyne's": null, + "Telefunken": [["M"]], + "Telefunken's": null, + "telegenic": null, + "telegrammed": null, + "telegramming": null, + "telegram": [["M", "S"]], + "telegram's": null, + "telegrams": null, + "telegraphic": null, + "telegraphically": null, + "telegraphist": [["M", "S"]], + "telegraphist's": null, + "telegraphists": null, + "telegraph": [["M", "R", "D", "G", "Z"]], + "telegraph's": null, + "telegrapher": null, + "telegraphed": null, + "telegraphing": null, + "telegraphers": null, + "telegraphs": null, + "telegraphy": [["M", "S"]], + "telegraphy's": null, + "telegraphies": null, + "telekineses": null, + "telekinesis": [["M"]], + "telekinesis's": null, + "telekinetic": null, + "Telemachus": [["M"]], + "Telemachus's": null, + "Telemann": [["M"]], + "Telemann's": null, + "telemarketer": [["S"]], + "telemarketers": null, + "telemarketing": [["S"]], + "telemarketings": null, + "telemeter": [["D", "M", "S", "G"]], + "telemetered": null, + "telemeter's": null, + "telemeters": null, + "telemetering": null, + "telemetric": null, + "telemetry": [["M", "S"]], + "telemetry's": null, + "telemetries": null, + "teleological": [["Y"]], + "teleologically": null, + "teleology": [["M"]], + "teleology's": null, + "telepathic": null, + "telepathically": null, + "telepathy": [["S", "M"]], + "telepathies": null, + "telepathy's": null, + "telephone": [["S", "R", "D", "G", "M", "Z"]], + "telephones": null, + "telephoner": null, + "telephoned": null, + "telephoning": null, + "telephone's": null, + "telephoners": null, + "telephonic": null, + "telephonist": [["S", "M"]], + "telephonists": null, + "telephonist's": null, + "telephony": [["M", "S"]], + "telephony's": null, + "telephonies": null, + "telephotography": [["M", "S"]], + "telephotography's": null, + "telephotographies": null, + "telephoto": [["S"]], + "telephotos": null, + "teleprinter": [["M", "S"]], + "teleprinter's": null, + "teleprinters": null, + "teleprocessing": [["S"]], + "teleprocessings": null, + "teleprompter": null, + "TelePrompter": [["M"]], + "TelePrompter's": null, + "TelePrompTer": [["S"]], + "TelePrompTers": null, + "telescope": [["G", "S", "D", "M"]], + "telescoping": null, + "telescopes": null, + "telescoped": null, + "telescope's": null, + "telescopic": null, + "telescopically": null, + "teletext": [["S"]], + "teletexts": null, + "telethon": [["M", "S"]], + "telethon's": null, + "telethons": null, + "teletype": [["S", "M"]], + "teletypes": null, + "teletype's": null, + "Teletype": [["S", "M"]], + "Teletypes": null, + "Teletype's": null, + "teletypewriter": [["S", "M"]], + "teletypewriters": null, + "teletypewriter's": null, + "televangelism": [["S"]], + "televangelisms": null, + "televangelist": [["S"]], + "televangelists": null, + "televise": [["S", "D", "X", "N", "G"]], + "televises": null, + "televised": null, + "televisions": null, + "television": [["M"]], + "televising": null, + "television's": null, + "televisor": [["M", "S"]], + "televisor's": null, + "televisors": null, + "televisual": null, + "telex": [["G", "S", "D", "M"]], + "telexing": null, + "telexes": null, + "telexed": null, + "telex's": null, + "Telex": [["M"]], + "Telex's": null, + "tell": [["A", "G", "S"]], + "retell": null, + "retelling": null, + "retells": null, + "telling": [["Y", "S"]], + "tells": null, + "Teller": [["M"]], + "Teller's": null, + "teller": [["S", "D", "M", "G"]], + "tellers": null, + "tellered": null, + "teller's": null, + "tellering": null, + "tellingly": null, + "tellings": null, + "Tell": [["M", "R"]], + "Tell's": null, + "telltale": [["M", "S"]], + "telltale's": null, + "telltales": null, + "tellurium": [["S", "M"]], + "telluriums": null, + "tellurium's": null, + "telly": [["S", "M"]], + "tellies": null, + "telly's": null, + "Telnet": [["M"]], + "Telnet's": null, + "TELNET": [["M"]], + "TELNET's": null, + "telnet": [["S"]], + "telnets": null, + "telomeric": null, + "tel": [["S", "Y"]], + "tels": null, + "Telugu": [["M"]], + "Telugu's": null, + "temblor": [["S", "M"]], + "temblors": null, + "temblor's": null, + "temerity": [["M", "S"]], + "temerity's": null, + "temerities": null, + "Tempe": [["M"]], + "Tempe's": null, + "temperamental": [["Y"]], + "temperamentally": null, + "temperament": [["S", "M"]], + "temperaments": null, + "temperament's": null, + "temperance": [["I", "M", "S"]], + "intemperance": null, + "intemperance's": null, + "intemperances": null, + "temperance's": null, + "temperances": null, + "tempera": [["S", "L", "M"]], + "temperas": null, + "tempera's": null, + "temperately": [["I"]], + "intemperately": null, + "temperateness's": [["I"]], + "intemperateness's": null, + "temperateness": [["S", "M"]], + "temperatenesses": null, + "temperate": [["S", "D", "G", "P", "Y"]], + "temperates": null, + "temperated": null, + "temperating": null, + "temperature": [["M", "S"]], + "temperature's": null, + "temperatures": null, + "tempered": [["U", "E"]], + "untempered": null, + "distempered": null, + "temper": [["G", "R", "D", "M"]], + "tempering": [["E"]], + "temperer": null, + "temper's": [["E"]], + "distempering": null, + "distemper's": null, + "tempers": [["E"]], + "distempers": null, + "tempest": [["D", "M", "S", "G"]], + "tempested": null, + "tempest's": null, + "tempests": null, + "tempesting": null, + "tempestuousness": [["S", "M"]], + "tempestuousnesses": null, + "tempestuousness's": null, + "tempestuous": [["P", "Y"]], + "tempestuously": null, + "template": [["F", "S"]], + "contemplates": null, + "templates": null, + "template's": null, + "Temple": [["M"]], + "Temple's": null, + "Templeman": [["M"]], + "Templeman's": null, + "temple": [["S", "D", "M"]], + "temples": null, + "templed": null, + "temple's": null, + "Templeton": [["M"]], + "Templeton's": null, + "Temp": [["M"]], + "Temp's": null, + "tempoes": null, + "tempo": [["M", "S"]], + "tempo's": null, + "tempos": null, + "temporal": [["Y", "S"]], + "temporally": null, + "temporals": null, + "temporarily": null, + "temporarinesses": null, + "temporariness": [["F", "M"]], + "contemporariness": null, + "contemporariness's": null, + "temporariness's": null, + "temporary": [["S", "F", "P"]], + "temporaries": null, + "contemporaries": null, + "contemporary": null, + "temporize": [["G", "J", "Z", "R", "S", "D"]], + "temporizing": [["Y", "M"]], + "temporizings": [["U"]], + "temporizers": null, + "temporizer": [["M"]], + "temporizes": null, + "temporized": null, + "temporizer's": null, + "untemporizings": null, + "temporizingly": null, + "temporizing's": null, + "temp": [["S", "G", "Z", "T", "M", "R", "D"]], + "temps": null, + "temping": null, + "temp's": null, + "temped": null, + "temptation": [["M", "S"]], + "temptation's": null, + "temptations": null, + "tempted": null, + "tempter": [["S"]], + "tempters": null, + "tempt": [["F", "S"]], + "contempts": null, + "tempts": null, + "tempting": [["Y", "S"]], + "temptingly": null, + "temptings": null, + "temptress": [["M", "S"]], + "temptress's": null, + "temptresses": null, + "tempura": [["S", "M"]], + "tempuras": null, + "tempura's": null, + "tenabilities": null, + "tenability": [["U", "M"]], + "untenability": null, + "untenability's": null, + "tenability's": null, + "tenableness": [["M"]], + "tenableness's": null, + "tenable": [["P"]], + "tenably": null, + "tenaciousness": [["S"]], + "tenaciousnesses": null, + "tenacious": [["Y", "P"]], + "tenaciously": null, + "tenacity": [["S"]], + "tenacities": null, + "tenancy": [["M", "S"]], + "tenancy's": null, + "tenancies": null, + "tenanted": [["U"]], + "untenanted": null, + "tenant": [["M", "D", "S", "G"]], + "tenant's": null, + "tenants": null, + "tenanting": null, + "tenantry": [["M", "S"]], + "tenantry's": null, + "tenantries": null, + "tench": [["M"]], + "tench's": null, + "tended": [["U", "E"]], + "untended": null, + "distended": null, + "tendency": [["M", "S"]], + "tendency's": null, + "tendencies": null, + "tendentiousness": [["S", "M"]], + "tendentiousnesses": null, + "tendentiousness's": null, + "tendentious": [["P", "Y"]], + "tendentiously": null, + "tendered": null, + "tenderer": null, + "tenderest": null, + "tenderfoot": [["M", "S"]], + "tenderfoot's": null, + "tenderfoots": null, + "tender": [["F", "S"]], + "contender": null, + "contenders": null, + "tenders": null, + "tenderheartedness": [["M", "S"]], + "tenderheartedness's": null, + "tenderheartednesses": null, + "tenderhearted": [["Y", "P"]], + "tenderheartedly": null, + "tendering": null, + "tenderizer": [["M"]], + "tenderizer's": null, + "tenderize": [["S", "R", "D", "G", "Z"]], + "tenderizes": null, + "tenderized": null, + "tenderizing": null, + "tenderizers": null, + "tenderloin": [["S", "M"]], + "tenderloins": null, + "tenderloin's": null, + "tenderly": null, + "tenderness": [["S", "M"]], + "tendernesses": null, + "tenderness's": null, + "tending": [["E"]], + "distending": null, + "tendinitis": [["S"]], + "tendinitises": null, + "tend": [["I", "S", "F", "R", "D", "G"]], + "intend": null, + "intends": null, + "intending": null, + "tends": [["E"]], + "contends": null, + "contend": null, + "contended": null, + "contending": null, + "tendon": [["M", "S"]], + "tendon's": null, + "tendons": null, + "tendril": [["S", "M"]], + "tendrils": null, + "tendril's": null, + "distends": null, + "tenebrous": null, + "tenement": [["M", "S"]], + "tenement's": null, + "tenements": null, + "tenet": [["S", "M"]], + "tenets": null, + "tenet's": null, + "Tenex": [["M"]], + "Tenex's": null, + "TENEX": [["M"]], + "TENEX's": null, + "tenfold": [["S"]], + "tenfolds": null, + "ten": [["M", "H", "B"]], + "ten's": null, + "tenth": [["S", "Y"]], + "Tenneco": [["M"]], + "Tenneco's": null, + "tenner": null, + "Tennessean": [["S"]], + "Tennesseans": null, + "Tennessee": [["M"]], + "Tennessee's": null, + "Tenney": [["M"]], + "Tenney's": null, + "tennis": [["S", "M"]], + "tennises": null, + "tennis's": null, + "Tenn": [["M"]], + "Tenn's": null, + "Tennyson": [["M"]], + "Tennyson's": null, + "Tenochtitlan": [["M"]], + "Tenochtitlan's": null, + "tenon": [["G", "S", "M", "D"]], + "tenoning": null, + "tenons": null, + "tenon's": null, + "tenoned": null, + "tenor": [["M", "S"]], + "tenor's": null, + "tenors": null, + "tenpin": [["S", "M"]], + "tenpins": null, + "tenpin's": null, + "tense": [["I", "P", "Y", "T", "N", "V", "R"]], + "intense": null, + "intenseness": null, + "intensely": null, + "intension": null, + "intenser": null, + "tenseness": [["S", "M"]], + "tensely": null, + "tensest": null, + "tension": [["G", "M", "R", "D", "S"]], + "tensive": null, + "tenser": null, + "tenseness's": [["I"]], + "intenseness's": null, + "tensenesses": null, + "tensile": null, + "tensional": [["I"]], + "tensioning": null, + "tension's": [["I"]], + "tensioner": null, + "tensioned": null, + "tensions": [["E"]], + "tensionless": null, + "distensions": null, + "intension's": null, + "tensity": [["I", "M", "S"]], + "intensity": null, + "intensity's": null, + "intensities": null, + "tensity's": null, + "tensities": null, + "tensorial": null, + "tensor": [["M", "S"]], + "tensor's": null, + "tensors": null, + "tenspot": null, + "tens": [["S", "R", "D", "V", "G", "T"]], + "tenses": null, + "tensed": null, + "tensing": null, + "tentacle": [["M", "S", "D"]], + "tentacle's": null, + "tentacles": null, + "tentacled": null, + "tentativeness": [["S"]], + "tentativenesses": null, + "tentative": [["S", "P", "Y"]], + "tentatives": null, + "tentatively": null, + "tented": [["U", "F"]], + "untented": null, + "tenterhook": [["M", "S"]], + "tenterhook's": null, + "tenterhooks": null, + "tenter": [["M"]], + "tenter's": null, + "tent": [["F", "S", "I", "M"]], + "tents": null, + "intents": null, + "intent's": null, + "tent's": null, + "tenths": null, + "tenthes": null, + "tenthly": null, + "tenting": [["F"]], + "tenuity": [["S"]], + "tenuities": null, + "tenuousness": [["S", "M"]], + "tenuousnesses": null, + "tenuousness's": null, + "tenuous": [["Y", "P"]], + "tenuously": null, + "tenure": [["S", "D", "M"]], + "tenures": null, + "tenured": null, + "tenure's": null, + "Teodoor": [["M"]], + "Teodoor's": null, + "Teodora": [["M"]], + "Teodora's": null, + "Teodorico": [["M"]], + "Teodorico's": null, + "Teodor": [["M"]], + "Teodor's": null, + "Teodoro": [["M"]], + "Teodoro's": null, + "tepee": [["M", "S"]], + "tepee's": null, + "tepees": null, + "tepidity": [["S"]], + "tepidities": null, + "tepidness": [["S"]], + "tepidnesses": null, + "tepid": [["Y", "P"]], + "tepidly": null, + "tequila": [["S", "M"]], + "tequilas": null, + "tequila's": null, + "Tera": [["M"]], + "Tera's": null, + "teratogenic": null, + "teratology": [["M", "S"]], + "teratology's": null, + "teratologies": null, + "terbium": [["S", "M"]], + "terbiums": null, + "terbium's": null, + "tercel": [["M"]], + "tercel's": null, + "tercentenary": [["S"]], + "tercentenaries": null, + "tercentennial": [["S"]], + "tercentennials": null, + "Terence": [["M"]], + "Terence's": null, + "Terencio": [["M"]], + "Terencio's": null, + "Teresa": [["M"]], + "Teresa's": null, + "Terese": [["M"]], + "Terese's": null, + "Tereshkova": [["M"]], + "Tereshkova's": null, + "Teresina": [["M"]], + "Teresina's": null, + "Teresita": [["M"]], + "Teresita's": null, + "Teressa": [["M"]], + "Teressa's": null, + "Teriann": [["M"]], + "Teriann's": null, + "Teri": [["M"]], + "Teri's": null, + "Terkel": [["M"]], + "Terkel's": null, + "termagant": [["S", "M"]], + "termagants": null, + "termagant's": null, + "termcap": null, + "termer": [["M"]], + "termer's": null, + "terminable": [["C", "P", "I"]], + "terminableness": [["I", "M", "C"]], + "interminableness": null, + "interminable": null, + "interminableness's": null, + "terminableness's": null, + "terminal": [["S", "Y", "M"]], + "terminals": null, + "terminally": null, + "terminal's": null, + "terminate": [["C", "X", "N", "V"]], + "determinations": null, + "terminations": null, + "termination": [["M", "C"]], + "terminative": [["Y", "C"]], + "terminated": [["U"]], + "unterminated": null, + "terminates": null, + "terminating": null, + "termination's": null, + "terminatively": null, + "determinatively": null, + "terminator": [["S", "M"]], + "terminators": null, + "terminator's": null, + "termini": null, + "terminological": [["Y"]], + "terminologically": null, + "terminology": [["M", "S"]], + "terminology's": null, + "terminologies": null, + "terminus": [["M"]], + "terminus's": null, + "termite": [["S", "M"]], + "termites": null, + "termite's": null, + "term": [["M", "Y", "R", "D", "G", "S"]], + "term's": null, + "termly": null, + "termed": null, + "terming": null, + "terms": null, + "ternary": [["S"]], + "ternaries": null, + "tern": [["G", "I", "D", "S"]], + "terning": null, + "interning": null, + "interned": null, + "interns": null, + "terned": null, + "terns": null, + "tern's": null, + "terpsichorean": null, + "Terpsichore": [["M"]], + "Terpsichore's": null, + "terrace": [["M", "G", "S", "D"]], + "terrace's": null, + "terracing": [["M"]], + "terraces": null, + "terraced": null, + "terracing's": null, + "terracotta": null, + "terrain": [["M", "S"]], + "terrain's": null, + "terrains": null, + "Terra": [["M"]], + "Terra's": null, + "terramycin": null, + "Terrance": [["M"]], + "Terrance's": null, + "Terran": [["M"]], + "Terran's": null, + "terrapin": [["M", "S"]], + "terrapin's": null, + "terrapins": null, + "terrarium": [["M", "S"]], + "terrarium's": null, + "terrariums": null, + "terrazzo": [["S", "M"]], + "terrazzos": null, + "terrazzo's": null, + "Terrell": [["M"]], + "Terrell's": null, + "Terrel": [["M"]], + "Terrel's": null, + "Terre": [["M"]], + "Terre's": null, + "Terrence": [["M"]], + "Terrence's": null, + "terrestrial": [["Y", "M", "S"]], + "terrestrially": null, + "terrestrial's": null, + "terrestrials": null, + "terribleness": [["S", "M"]], + "terriblenesses": null, + "terribleness's": null, + "terrible": [["P"]], + "terribly": null, + "Terrie": [["M"]], + "Terrie's": null, + "terrier": [["M"]], + "terrier's": null, + "terrifically": null, + "terrific": [["Y"]], + "terrificly": null, + "terrify": [["G", "D", "S"]], + "terrifying": [["Y"]], + "terrified": null, + "terrifies": null, + "terrifyingly": null, + "Terrijo": [["M"]], + "Terrijo's": null, + "Terrill": [["M"]], + "Terrill's": null, + "Terri": [["M"]], + "Terri's": null, + "terrine": [["M"]], + "terrine's": null, + "territoriality": [["M"]], + "territoriality's": null, + "Territorial": [["S", "M"]], + "Territorials": null, + "Territorial's": null, + "territorial": [["S", "Y"]], + "territorials": null, + "territorially": null, + "Territory's": null, + "territory": [["S", "M"]], + "territories": null, + "territory's": null, + "terrorism": [["M", "S"]], + "terrorism's": null, + "terrorisms": null, + "terroristic": null, + "terrorist": [["M", "S"]], + "terrorist's": null, + "terrorists": null, + "terrorized": [["U"]], + "unterrorized": null, + "terrorizer": [["M"]], + "terrorizer's": null, + "terrorize": [["R", "S", "D", "Z", "G"]], + "terrorizes": null, + "terrorizers": null, + "terrorizing": null, + "terror": [["M", "S"]], + "terror's": null, + "terrors": null, + "terr": [["S"]], + "terrs": null, + "terrycloth": null, + "Terrye": [["M"]], + "Terrye's": null, + "Terry": [["M"]], + "Terry's": null, + "terry": [["Z", "M", "R", "S"]], + "terriers": null, + "terry's": null, + "terries": null, + "terseness": [["S", "M"]], + "tersenesses": null, + "terseness's": null, + "terse": [["R", "T", "Y", "P"]], + "terser": null, + "tersest": null, + "tersely": null, + "Tersina": [["M"]], + "Tersina's": null, + "tertian": null, + "Tertiary": null, + "tertiary": [["S"]], + "tertiaries": null, + "Terza": [["M"]], + "Terza's": null, + "TESL": null, + "Tesla": [["M"]], + "Tesla's": null, + "TESOL": null, + "Tessa": [["M"]], + "Tessa's": null, + "tessellate": [["X", "D", "S", "N", "G"]], + "tessellations": null, + "tessellated": null, + "tessellates": null, + "tessellation": [["M"]], + "tessellating": null, + "tessellation's": null, + "tesseral": null, + "Tessie": [["M"]], + "Tessie's": null, + "Tessi": [["M"]], + "Tessi's": null, + "Tess": [["M"]], + "Tess's": null, + "Tessy": [["M"]], + "Tessy's": null, + "testability": [["M"]], + "testability's": null, + "testable": [["U"]], + "untestable": null, + "testamentary": null, + "testament": [["S", "M"]], + "testaments": null, + "testament's": null, + "testate": [["I", "S"]], + "intestate": null, + "intestates": null, + "testates": null, + "testator": [["M", "S"]], + "testator's": null, + "testators": null, + "testatrices": null, + "testatrix": null, + "testbed": [["S"]], + "testbeds": null, + "testcard": null, + "tested": [["A", "K", "U"]], + "retested": null, + "protested": null, + "untested": null, + "tester": [["M", "F", "C", "K", "S"]], + "tester's": null, + "contester's": null, + "detester's": null, + "protester's": null, + "contester": null, + "contesters": null, + "detester": null, + "detesters": null, + "protester": null, + "protesters": null, + "testers": null, + "testes": [["M"]], + "testes's": null, + "testicle": [["S", "M"]], + "testicles": null, + "testicle's": null, + "testicular": null, + "testifier": [["M"]], + "testifier's": null, + "testify": [["G", "Z", "D", "R", "S"]], + "testifying": null, + "testifiers": null, + "testified": null, + "testifies": null, + "testily": null, + "testimonial": [["S", "M"]], + "testimonials": null, + "testimonial's": null, + "testimony": [["S", "M"]], + "testimonies": null, + "testimony's": null, + "testiness": [["S"]], + "testinesses": null, + "testing": [["S"]], + "testings": null, + "testis": [["M"]], + "testis's": null, + "testosterone": [["S", "M"]], + "testosterones": null, + "testosterone's": null, + "test": [["R", "D", "B", "F", "Z", "G", "S", "C"]], + "detested": null, + "contest": null, + "contesting": null, + "contests": null, + "detesting": null, + "tests": [["A", "K"]], + "detests": null, + "detest": null, + "retests": null, + "protests": null, + "test's": [["A", "K", "F"]], + "retest's": null, + "protest's": null, + "contest's": null, + "testy": [["R", "T", "P"]], + "testier": null, + "testiest": null, + "tetanus": [["M", "S"]], + "tetanus's": null, + "tetanuses": null, + "tetchy": [["T", "R"]], + "tetchiest": null, + "tetchier": null, + "tether": [["D", "M", "S", "G"]], + "tethered": [["U"]], + "tether's": null, + "tethers": null, + "tethering": null, + "untethered": null, + "Tethys": [["M"]], + "Tethys's": null, + "Tetons": null, + "tetrachloride": [["M"]], + "tetrachloride's": null, + "tetracycline": [["S", "M"]], + "tetracyclines": null, + "tetracycline's": null, + "tetrafluoride": null, + "tetragonal": [["Y"]], + "tetragonally": null, + "tetrahalides": null, + "tetrahedral": [["Y"]], + "tetrahedrally": null, + "tetrahedron": [["S", "M"]], + "tetrahedrons": null, + "tetrahedron's": null, + "tetrameron": null, + "tetrameter": [["S", "M"]], + "tetrameters": null, + "tetrameter's": null, + "tetra": [["M", "S"]], + "tetra's": null, + "tetras": null, + "tetrasodium": null, + "tetravalent": null, + "Teutonic": null, + "Teuton": [["S", "M"]], + "Teutons": null, + "Teuton's": null, + "Texaco": [["M"]], + "Texaco's": null, + "Texan": [["S"]], + "Texans": null, + "Texas": [["M", "S"]], + "Texas's": null, + "Texases": null, + "Tex": [["M"]], + "Tex's": null, + "TeX": [["M"]], + "TeX's": null, + "textbook": [["S", "M"]], + "textbooks": null, + "textbook's": null, + "text": [["F", "S", "M"]], + "context": null, + "contexts": null, + "context's": null, + "texts": null, + "text's": null, + "textile": [["S", "M"]], + "textiles": null, + "textile's": null, + "Textron": [["M"]], + "Textron's": null, + "textual": [["F", "Y"]], + "contextual": null, + "contextually": null, + "textually": null, + "textural": [["Y"]], + "texturally": null, + "textured": [["U"]], + "untextured": null, + "texture": [["M", "G", "S", "D"]], + "texture's": null, + "texturing": null, + "textures": null, + "T": [["G"]], + "Ting": [["M"]], + "Thacher": [["M"]], + "Thacher's": null, + "Thackeray": [["M"]], + "Thackeray's": null, + "Thaddeus": [["M"]], + "Thaddeus's": null, + "Thaddus": [["M"]], + "Thaddus's": null, + "Thadeus": [["M"]], + "Thadeus's": null, + "Thad": [["M"]], + "Thad's": null, + "Thailand": [["M"]], + "Thailand's": null, + "Thaine": [["M"]], + "Thaine's": null, + "Thain": [["M"]], + "Thain's": null, + "Thai": [["S"]], + "Thais": null, + "thalami": null, + "thalamus": [["M"]], + "thalamus's": null, + "Thales": [["M"]], + "Thales's": null, + "Thalia": [["M"]], + "Thalia's": null, + "thalidomide": [["M", "S"]], + "thalidomide's": null, + "thalidomides": null, + "thallium": [["S", "M"]], + "thalliums": null, + "thallium's": null, + "thallophyte": [["M"]], + "thallophyte's": null, + "Thames": null, + "than": null, + "Thane": [["M"]], + "Thane's": null, + "thane": [["S", "M"]], + "thanes": null, + "thane's": null, + "Thanh": [["M"]], + "Thanh's": null, + "thanker": [["M"]], + "thanker's": null, + "thankfuller": null, + "thankfullest": null, + "thankfulness": [["S", "M"]], + "thankfulnesses": null, + "thankfulness's": null, + "thankful": [["Y", "P"]], + "thankfully": null, + "thanklessness": [["S", "M"]], + "thanklessnesses": null, + "thanklessness's": null, + "thankless": [["P", "Y"]], + "thanklessly": null, + "thanksgiving": [["M", "S"]], + "thanksgiving's": null, + "thanksgivings": null, + "Thanksgiving": [["S"]], + "Thanksgivings": null, + "thank": [["S", "R", "D", "G"]], + "thanks": null, + "thanked": null, + "thanking": null, + "Thant": [["M"]], + "Thant's": null, + "Thar": [["M"]], + "Thar's": null, + "Thatcher": [["M"]], + "Thatcher's": null, + "thatching": [["M"]], + "thatching's": null, + "thatch": [["J", "M", "D", "R", "S", "Z", "G"]], + "thatchings": null, + "thatch's": null, + "thatched": null, + "thatcher": null, + "thatches": null, + "thatchers": null, + "Thatch": [["M", "R"]], + "Thatch's": null, + "that'd": null, + "that'll": null, + "that": [["M", "S"]], + "that's": null, + "thats": null, + "thaumaturge": [["M"]], + "thaumaturge's": null, + "thaw": [["D", "G", "S"]], + "thawed": null, + "thawing": null, + "thaws": null, + "Thaxter": [["M"]], + "Thaxter's": null, + "Thayer": [["M"]], + "Thayer's": null, + "Thayne": [["M"]], + "Thayne's": null, + "THC": null, + "the": null, + "Theadora": [["M"]], + "Theadora's": null, + "Thea": [["M"]], + "Thea's": null, + "theatergoer": [["M", "S"]], + "theatergoer's": null, + "theatergoers": null, + "theatergoing": [["M", "S"]], + "theatergoing's": null, + "theatergoings": null, + "theater": [["S", "M"]], + "theaters": null, + "theater's": null, + "theatricality": [["S", "M"]], + "theatricalities": null, + "theatricality's": null, + "theatrical": [["Y", "S"]], + "theatrically": null, + "theatricals": null, + "theatric": [["S"]], + "theatrics": [["M"]], + "theatrics's": null, + "Thebault": [["M"]], + "Thebault's": null, + "Thebes": null, + "Theda": [["M"]], + "Theda's": null, + "Thedrick": [["M"]], + "Thedrick's": null, + "Thedric": [["M"]], + "Thedric's": null, + "thee": [["D", "S"]], + "theed": null, + "thees": null, + "theeing": null, + "theft": [["M", "S"]], + "theft's": null, + "thefts": null, + "Theiler": [["M"]], + "Theiler's": null, + "their": [["M", "S"]], + "their's": null, + "theirs": null, + "theism": [["S", "M"]], + "theisms": null, + "theism's": null, + "theistic": null, + "theist": [["S", "M"]], + "theists": null, + "theist's": null, + "Thekla": [["M"]], + "Thekla's": null, + "Thelma": [["M"]], + "Thelma's": null, + "themas": null, + "thematically": null, + "thematics": null, + "thematic": [["U"]], + "unthematic": null, + "theme": [["M", "S"]], + "theme's": null, + "themes": null, + "them": [["G", "D"]], + "theming": null, + "themed": null, + "Themistocles": [["M"]], + "Themistocles's": null, + "themselves": null, + "thence": null, + "thenceforth": null, + "thenceforward": [["S"]], + "thenceforwards": null, + "Theobald": [["M"]], + "Theobald's": null, + "theocracy": [["S", "M"]], + "theocracies": null, + "theocracy's": null, + "theocratic": null, + "Theocritus": [["M"]], + "Theocritus's": null, + "theodolite": [["M", "S"]], + "theodolite's": null, + "theodolites": null, + "Theodora": [["M"]], + "Theodora's": null, + "Theodore": [["M"]], + "Theodore's": null, + "Theodoric": [["M"]], + "Theodoric's": null, + "Theodor": [["M"]], + "Theodor's": null, + "Theodosia": [["M"]], + "Theodosia's": null, + "Theodosian": null, + "Theodosius": [["M"]], + "Theodosius's": null, + "theologian": [["S", "M"]], + "theologians": null, + "theologian's": null, + "theological": [["Y"]], + "theologically": null, + "theologists": null, + "theology": [["M", "S"]], + "theology's": null, + "theologies": null, + "Theo": [["M"]], + "Theo's": null, + "theorem": [["M", "S"]], + "theorem's": null, + "theorems": null, + "theoretical": [["Y"]], + "theoretically": null, + "theoretician": [["M", "S"]], + "theoretician's": null, + "theoreticians": null, + "theoretic": [["S"]], + "theoretics": [["M"]], + "theoretics's": null, + "theorist": [["S", "M"]], + "theorists": null, + "theorist's": null, + "theorization": [["S", "M"]], + "theorizations": null, + "theorization's": null, + "theorize": [["Z", "G", "D", "R", "S"]], + "theorizers": null, + "theorizing": null, + "theorized": null, + "theorizer": null, + "theorizes": null, + "theory": [["M", "S"]], + "theory's": null, + "theories": null, + "theosophic": null, + "theosophical": null, + "theosophist": [["M", "S"]], + "theosophist's": null, + "theosophists": null, + "Theosophy": null, + "theosophy": [["S", "M"]], + "theosophies": null, + "theosophy's": null, + "therapeutically": null, + "therapeutic": [["S"]], + "therapeutics": [["M"]], + "therapeutics's": null, + "therapist": [["M", "S"]], + "therapist's": null, + "therapists": null, + "therapy": [["M", "S"]], + "therapy's": null, + "therapies": null, + "Theravada": [["M"]], + "Theravada's": null, + "thereabout": [["S"]], + "thereabouts": null, + "thereafter": null, + "thereat": null, + "thereby": null, + "there'd": null, + "therefor": null, + "therefore": null, + "therefrom": null, + "therein": null, + "there'll": null, + "there": [["M", "S"]], + "there's": null, + "theres": null, + "thereof": null, + "thereon": null, + "Theresa": [["M"]], + "Theresa's": null, + "Therese": [["M"]], + "Therese's": null, + "Theresina": [["M"]], + "Theresina's": null, + "Theresita": [["M"]], + "Theresita's": null, + "Theressa": [["M"]], + "Theressa's": null, + "thereto": null, + "theretofore": null, + "thereunder": null, + "thereunto": null, + "thereupon": null, + "therewith": null, + "Therine": [["M"]], + "Therine's": null, + "thermal": [["Y", "S"]], + "thermally": null, + "thermals": null, + "thermionic": [["S"]], + "thermionics": [["M"]], + "thermionics's": null, + "thermistor": [["M", "S"]], + "thermistor's": null, + "thermistors": null, + "therm": [["M", "S"]], + "therm's": null, + "therms": null, + "thermocouple": [["M", "S"]], + "thermocouple's": null, + "thermocouples": null, + "thermodynamical": [["Y"]], + "thermodynamically": null, + "thermodynamic": [["S"]], + "thermodynamics": [["M"]], + "thermodynamics's": null, + "thermoelastic": null, + "thermoelectric": null, + "thermoformed": null, + "thermoforming": null, + "thermogravimetric": null, + "thermoluminescence": [["M"]], + "thermoluminescence's": null, + "thermometer": [["M", "S"]], + "thermometer's": null, + "thermometers": null, + "thermometric": null, + "thermometry": [["M"]], + "thermometry's": null, + "thermonuclear": null, + "thermopile": [["M"]], + "thermopile's": null, + "thermoplastic": [["S"]], + "thermoplastics": null, + "thermopower": null, + "thermo": [["S"]], + "thermos": [["S"]], + "thermosetting": null, + "thermoses": null, + "Thermos": [["S", "M"]], + "Thermoses": null, + "Thermos's": null, + "thermostable": null, + "thermostatically": null, + "thermostatic": [["S"]], + "thermostatics": [["M"]], + "thermostatics's": null, + "thermostat": [["S", "M"]], + "thermostats": null, + "thermostat's": null, + "thermostatted": null, + "thermostatting": null, + "Theron": [["M"]], + "Theron's": null, + "thesauri": null, + "thesaurus": [["M", "S"]], + "thesaurus's": null, + "thesauruses": null, + "these": [["S"]], + "theses": null, + "Theseus": [["M"]], + "Theseus's": null, + "thesis": [["M"]], + "thesis's": null, + "thespian": [["S"]], + "thespians": null, + "Thespian": [["S"]], + "Thespians": null, + "Thespis": [["M"]], + "Thespis's": null, + "Thessalonian": null, + "Thessalon�ki": [["M"]], + "Thessalon�ki's": null, + "Thessaly": [["M"]], + "Thessaly's": null, + "theta": [["M", "S"]], + "theta's": null, + "thetas": null, + "thew": [["S", "M"]], + "thews": null, + "thew's": null, + "they": null, + "they'd": null, + "they'll": null, + "they're": null, + "they've": null, + "th": [["G", "N", "J", "X"]], + "thing": [["M", "P"]], + "then": null, + "things": null, + "thens": null, + "Thia": [["M"]], + "Thia's": null, + "thiamine": [["M", "S"]], + "thiamine's": null, + "thiamines": null, + "Thibaud": [["M"]], + "Thibaud's": null, + "Thibaut": [["M"]], + "Thibaut's": null, + "thickener": [["M"]], + "thickener's": null, + "thickening": [["M"]], + "thickening's": null, + "thicken": [["R", "D", "J", "Z", "G"]], + "thickened": null, + "thickenings": null, + "thickeners": null, + "thicket": [["S", "M", "D"]], + "thickets": null, + "thicket's": null, + "thicketed": null, + "thickheaded": [["M"]], + "thickheaded's": null, + "thickish": null, + "thickness": [["M", "S"]], + "thickness's": null, + "thicknesses": null, + "thickset": [["S"]], + "thicksets": null, + "thick": [["T", "X", "P", "S", "R", "N", "Y"]], + "thickest": null, + "thickens": null, + "thicks": null, + "thicker": null, + "thickly": null, + "thief": [["M"]], + "thief's": null, + "Thiensville": [["M"]], + "Thiensville's": null, + "Thieu": [["M"]], + "Thieu's": null, + "thievery": [["M", "S"]], + "thievery's": null, + "thieveries": null, + "thieve": [["S", "D", "J", "G"]], + "thieves": null, + "thieved": null, + "thievings": null, + "thieving": null, + "thievishness": [["M"]], + "thievishness's": null, + "thievish": [["P"]], + "thighbone": [["S", "M"]], + "thighbones": null, + "thighbone's": null, + "thigh": [["D", "M"]], + "thighed": null, + "thigh's": null, + "thighs": null, + "thimble": [["D", "S", "M", "G"]], + "thimbled": null, + "thimbles": null, + "thimble's": null, + "thimbling": null, + "thimbleful": [["M", "S"]], + "thimbleful's": null, + "thimblefuls": null, + "Thimbu": [["M"]], + "Thimbu's": null, + "Thimphu": null, + "thine": null, + "thingamabob": [["M", "S"]], + "thingamabob's": null, + "thingamabobs": null, + "thingamajig": [["S", "M"]], + "thingamajigs": null, + "thingamajig's": null, + "thing's": null, + "thingness": null, + "thinkableness": [["M"]], + "thinkableness's": null, + "thinkable": [["U"]], + "unthinkable": null, + "thinkably": [["U"]], + "unthinkably": null, + "think": [["A", "G", "R", "S"]], + "rethink": null, + "rethinking": null, + "rethinker": null, + "rethinks": null, + "thinking": [["S", "M", "Y", "P"]], + "thinker": [["M", "S"]], + "thinks": null, + "thinker's": null, + "thinkers": null, + "thinkingly": [["U"]], + "unthinkingly": null, + "thinkings": null, + "thinking's": null, + "thinkingness": null, + "thinned": null, + "thinner": [["M", "S"]], + "thinner's": null, + "thinners": null, + "thinness": [["M", "S"]], + "thinness's": null, + "thinnesses": null, + "thinnest": null, + "thinning": null, + "thinnish": null, + "thin": [["S", "T", "P", "Y", "R"]], + "thins": null, + "thinest": null, + "thinly": null, + "thiner": null, + "thiocyanate": [["M"]], + "thiocyanate's": null, + "thiouracil": [["M"]], + "thiouracil's": null, + "third": [["D", "Y", "G", "S"]], + "thirded": null, + "thirdly": null, + "thirding": null, + "thirds": null, + "thirster": [["M"]], + "thirster's": null, + "thirst": [["G", "S", "M", "D", "R"]], + "thirsting": null, + "thirsts": null, + "thirst's": null, + "thirsted": null, + "thirstily": null, + "thirstiness": [["S"]], + "thirstinesses": null, + "thirsty": [["T", "P", "R"]], + "thirstiest": null, + "thirstier": null, + "thirteen": [["M", "H", "S"]], + "thirteen's": null, + "thirteenth": null, + "thirteens": null, + "thirteenths": null, + "thirtieths": null, + "thirty": [["H", "M", "S"]], + "thirtieth": null, + "thirty's": null, + "thirties": null, + "this": null, + "this'll": null, + "thistledown": [["M", "S"]], + "thistledown's": null, + "thistledowns": null, + "thistle": [["S", "M"]], + "thistles": null, + "thistle's": null, + "thither": null, + "Th": [["M"]], + "Th's": null, + "tho": null, + "thole": [["G", "M", "S", "D"]], + "tholing": null, + "thole's": null, + "tholes": null, + "tholed": null, + "Thomasa": [["M"]], + "Thomasa's": null, + "Thomasina": [["M"]], + "Thomasina's": null, + "Thomasine": [["M"]], + "Thomasine's": null, + "Thomasin": [["M"]], + "Thomasin's": null, + "Thoma": [["S", "M"]], + "Thomas": null, + "Thoma's": null, + "Thomism": [["M"]], + "Thomism's": null, + "Thomistic": null, + "Thom": [["M"]], + "Thom's": null, + "Thompson": [["M"]], + "Thompson's": null, + "Thomson": [["M"]], + "Thomson's": null, + "thong": [["S", "M", "D"]], + "thongs": null, + "thong's": null, + "thonged": null, + "thoracic": null, + "thorax": [["M", "S"]], + "thorax's": null, + "thoraxes": null, + "Thorazine": null, + "Thoreau": [["M"]], + "Thoreau's": null, + "thoriate": [["D"]], + "thoriated": null, + "Thorin": [["M"]], + "Thorin's": null, + "thorium": [["M", "S"]], + "thorium's": null, + "thoriums": null, + "Thor": [["M"]], + "Thor's": null, + "Thornburg": [["M"]], + "Thornburg's": null, + "Thorndike": [["M"]], + "Thorndike's": null, + "Thornie": [["M"]], + "Thornie's": null, + "thorniness": [["S"]], + "thorninesses": null, + "Thorn": [["M"]], + "Thorn's": null, + "thorn": [["S", "M", "D", "G"]], + "thorns": null, + "thorn's": null, + "thorned": null, + "thorning": null, + "Thornton": [["M"]], + "Thornton's": null, + "Thorny": [["M"]], + "Thorny's": null, + "thorny": [["P", "T", "R"]], + "thorniest": null, + "thornier": null, + "thoroughbred": [["S"]], + "thoroughbreds": null, + "thoroughfare": [["M", "S"]], + "thoroughfare's": null, + "thoroughfares": null, + "thoroughgoing": null, + "thoroughness": [["S", "M"]], + "thoroughnesses": null, + "thoroughness's": null, + "thorough": [["P", "T", "Y", "R"]], + "thoroughest": null, + "thoroughly": null, + "thorougher": null, + "Thorpe": [["M"]], + "Thorpe's": null, + "Thorstein": [["M"]], + "Thorstein's": null, + "Thorsten": [["M"]], + "Thorsten's": null, + "Thorvald": [["M"]], + "Thorvald's": null, + "those": null, + "Thoth": [["M"]], + "Thoth's": null, + "thou": [["D", "S", "G"]], + "thoued": null, + "thous": null, + "thouing": null, + "though": null, + "thoughtfully": null, + "thoughtfulness": [["S"]], + "thoughtfulnesses": null, + "thoughtful": [["U"]], + "unthoughtful": null, + "thoughtlessness": [["M", "S"]], + "thoughtlessness's": null, + "thoughtlessnesses": null, + "thoughtless": [["Y", "P"]], + "thoughtlessly": null, + "thought": [["M", "S"]], + "thought's": null, + "thoughts": null, + "thousandfold": null, + "thousand": [["S", "H", "M"]], + "thousands": null, + "thousandth": null, + "thousand's": null, + "thousandths": null, + "Thrace": [["M"]], + "Thrace's": null, + "Thracian": [["M"]], + "Thracian's": null, + "thralldom": [["S"]], + "thralldoms": null, + "thrall": [["G", "S", "M", "D"]], + "thralling": null, + "thralls": null, + "thrall's": null, + "thralled": null, + "thrash": [["D", "S", "R", "Z", "G", "J"]], + "thrashed": null, + "thrashes": null, + "thrasher": [["M"]], + "thrashers": null, + "thrashing": [["M"]], + "thrashings": null, + "thrasher's": null, + "thrashing's": null, + "threadbare": [["P"]], + "threadbareness": null, + "threader": [["M"]], + "threader's": null, + "threading": [["A"]], + "rethreading": null, + "threadlike": null, + "thread": [["M", "Z", "D", "R", "G", "S"]], + "thread's": null, + "threaders": null, + "threaded": null, + "threads": null, + "thready": [["R", "T"]], + "threadier": null, + "threadiest": null, + "threatener": [["M"]], + "threatener's": null, + "threaten": [["G", "J", "R", "D"]], + "threatening": [["Y"]], + "threatenings": null, + "threatened": null, + "threateningly": null, + "threat": [["M", "D", "N", "S", "X", "G"]], + "threat's": null, + "threated": null, + "threats": null, + "threatens": null, + "threating": null, + "threefold": null, + "three": [["M", "S"]], + "three's": null, + "threes": null, + "threepence": [["M"]], + "threepence's": null, + "threepenny": null, + "threescore": [["S"]], + "threescores": null, + "threesome": [["S", "M"]], + "threesomes": null, + "threesome's": null, + "threnody": [["S", "M"]], + "threnodies": null, + "threnody's": null, + "thresh": [["D", "S", "R", "Z", "G"]], + "threshed": null, + "threshes": null, + "thresher": [["M"]], + "threshers": null, + "threshing": null, + "thresher's": null, + "threshold": [["M", "D", "G", "S"]], + "threshold's": null, + "thresholded": null, + "thresholding": null, + "thresholds": null, + "threw": null, + "thrice": null, + "thriftily": null, + "thriftiness": [["S"]], + "thriftinesses": null, + "thriftless": null, + "thrift": [["S", "M"]], + "thrifts": null, + "thrift's": null, + "thrifty": [["P", "T", "R"]], + "thriftiest": null, + "thriftier": null, + "thriller": [["M"]], + "thriller's": null, + "thrilling": [["Y"]], + "thrillingly": null, + "thrill": [["Z", "M", "G", "D", "R", "S"]], + "thrillers": null, + "thrill's": null, + "thrilled": null, + "thrills": null, + "thriver": [["M"]], + "thriver's": null, + "thrive": [["R", "S", "D", "J", "G"]], + "thrives": null, + "thrived": null, + "thrivings": null, + "thriving": [["Y"]], + "thrivingly": null, + "throatily": null, + "throatiness": [["M", "S"]], + "throatiness's": null, + "throatinesses": null, + "throat": [["M", "D", "S", "G"]], + "throat's": null, + "throated": null, + "throats": null, + "throating": null, + "throaty": [["P", "R", "T"]], + "throatier": null, + "throatiest": null, + "throbbed": null, + "throbbing": null, + "throb": [["S"]], + "throbs": null, + "throeing": null, + "throe": [["S", "D", "M"]], + "throes": null, + "throed": null, + "throe's": null, + "thrombi": null, + "thromboses": null, + "thrombosis": [["M"]], + "thrombosis's": null, + "thrombotic": null, + "thrombus": [["M"]], + "thrombus's": null, + "Throneberry": [["M"]], + "Throneberry's": null, + "throne": [["C", "G", "S", "D"]], + "dethroning": null, + "dethrones": null, + "dethroned": null, + "throning": null, + "thrones": null, + "throned": null, + "throne's": null, + "throng": [["G", "D", "S", "M"]], + "thronging": null, + "thronged": null, + "throngs": null, + "throng's": null, + "throttle": [["D", "R", "S", "Z", "M", "G"]], + "throttled": null, + "throttler": [["M"]], + "throttles": null, + "throttlers": null, + "throttle's": null, + "throttling": null, + "throttler's": null, + "throughout": null, + "throughput": [["S", "M"]], + "throughputs": null, + "throughput's": null, + "throughway's": null, + "through": [["Y"]], + "throughly": null, + "throwaway": [["S", "M"]], + "throwaways": null, + "throwaway's": null, + "throwback": [["M", "S"]], + "throwback's": null, + "throwbacks": null, + "thrower": [["M"]], + "thrower's": null, + "thrown": null, + "throwout": null, + "throw": [["S", "Z", "G", "R"]], + "throws": null, + "throwers": null, + "throwing": null, + "thrummed": null, + "thrumming": null, + "thrum": [["S"]], + "thrums": null, + "thrush": [["M", "S"]], + "thrush's": null, + "thrushes": null, + "thruster": [["M"]], + "thruster's": null, + "thrust": [["Z", "G", "S", "R"]], + "thrusters": null, + "thrusting": null, + "thrusts": null, + "Thruway": [["M", "S"]], + "Thruway's": null, + "Thruways": null, + "thruway": [["S", "M"]], + "thruways": null, + "thruway's": null, + "Thunderbird": [["M"]], + "Thunderbird's": null, + "Thu": null, + "Thucydides": [["M"]], + "Thucydides's": null, + "thudded": null, + "thudding": null, + "thud": [["M", "S"]], + "thud's": null, + "thuds": null, + "thuggee": [["M"]], + "thuggee's": null, + "thuggery": [["S", "M"]], + "thuggeries": null, + "thuggery's": null, + "thuggish": null, + "thug": [["M", "S"]], + "thug's": null, + "thugs": null, + "Thule": [["M"]], + "Thule's": null, + "thulium": [["S", "M"]], + "thuliums": null, + "thulium's": null, + "thumbnail": [["M", "S"]], + "thumbnail's": null, + "thumbnails": null, + "thumbscrew": [["S", "M"]], + "thumbscrews": null, + "thumbscrew's": null, + "thumb": [["S", "M", "D", "G"]], + "thumbs": null, + "thumb's": null, + "thumbed": null, + "thumbing": null, + "thumbtack": [["G", "M", "D", "S"]], + "thumbtacking": null, + "thumbtack's": null, + "thumbtacked": null, + "thumbtacks": null, + "thump": [["R", "D", "M", "S", "G"]], + "thumper": null, + "thumped": null, + "thump's": null, + "thumps": null, + "thumping": null, + "thunderbolt": [["M", "S"]], + "thunderbolt's": null, + "thunderbolts": null, + "thunderclap": [["S", "M"]], + "thunderclaps": null, + "thunderclap's": null, + "thundercloud": [["S", "M"]], + "thunderclouds": null, + "thundercloud's": null, + "thunderer": [["M"]], + "thunderer's": null, + "thunderhead": [["S", "M"]], + "thunderheads": null, + "thunderhead's": null, + "thundering": [["Y"]], + "thunderingly": null, + "thunderous": [["Y"]], + "thunderously": null, + "thundershower": [["M", "S"]], + "thundershower's": null, + "thundershowers": null, + "thunderstorm": [["M", "S"]], + "thunderstorm's": null, + "thunderstorms": null, + "thunderstruck": null, + "thundery": null, + "thunder": [["Z", "G", "J", "D", "R", "M", "S"]], + "thunderers": null, + "thunderings": null, + "thundered": null, + "thunder's": null, + "thunders": null, + "thunk": null, + "Thurber": [["M"]], + "Thurber's": null, + "Thurman": [["M"]], + "Thurman's": null, + "Thur": [["M", "S"]], + "Thur's": null, + "Thurs": null, + "Thursday": [["S", "M"]], + "Thursdays": null, + "Thursday's": null, + "Thurstan": [["M"]], + "Thurstan's": null, + "Thurston": [["M"]], + "Thurston's": null, + "thus": [["Y"]], + "thusly": null, + "thwack": [["D", "R", "S", "Z", "G"]], + "thwacked": null, + "thwacker": [["M"]], + "thwacks": null, + "thwackers": null, + "thwacking": null, + "thwacker's": null, + "thwarter": [["M"]], + "thwarter's": null, + "thwart": [["G", "S", "D", "R", "Y"]], + "thwarting": null, + "thwarts": null, + "thwarted": null, + "thwartly": null, + "thy": null, + "thyme": [["S", "M"]], + "thymes": null, + "thyme's": null, + "thymine": [["M", "S"]], + "thymine's": null, + "thymines": null, + "thymus": [["S", "M"]], + "thymuses": null, + "thymus's": null, + "thyratron": [["M"]], + "thyratron's": null, + "thyristor": [["M", "S"]], + "thyristor's": null, + "thyristors": null, + "thyroglobulin": null, + "thyroidal": null, + "thyroid": [["S"]], + "thyroids": null, + "thyronine": null, + "thyrotoxic": null, + "thyrotrophic": null, + "thyrotrophin": null, + "thyrotropic": null, + "thyrotropin": [["M"]], + "thyrotropin's": null, + "thyroxine": [["M"]], + "thyroxine's": null, + "thyself": null, + "Tia": [["M"]], + "Tia's": null, + "Tianjin": null, + "tiara": [["M", "S"]], + "tiara's": null, + "tiaras": null, + "Tiberius": [["M"]], + "Tiberius's": null, + "Tiber": [["M"]], + "Tiber's": null, + "Tibetan": [["S"]], + "Tibetans": null, + "Tibet": [["M"]], + "Tibet's": null, + "tibiae": null, + "tibial": null, + "tibia": [["M"]], + "tibia's": null, + "Tibold": [["M"]], + "Tibold's": null, + "Tiburon": [["M"]], + "Tiburon's": null, + "ticker": [["M"]], + "ticker's": null, + "ticket": [["S", "G", "M", "D"]], + "tickets": null, + "ticketing": null, + "ticket's": null, + "ticketed": null, + "tick": [["G", "Z", "J", "R", "D", "M", "S"]], + "ticking": [["M"]], + "tickers": null, + "tickings": null, + "ticked": null, + "tick's": null, + "ticks": null, + "ticking's": null, + "tickler": [["M"]], + "tickler's": null, + "tickle": [["R", "S", "D", "Z", "G"]], + "tickles": null, + "tickled": null, + "ticklers": null, + "tickling": null, + "ticklishness": [["M", "S"]], + "ticklishness's": null, + "ticklishnesses": null, + "ticklish": [["P", "Y"]], + "ticklishly": null, + "ticktacktoe": [["S"]], + "ticktacktoes": null, + "ticktock": [["S", "M", "D", "G"]], + "ticktocks": null, + "ticktock's": null, + "ticktocked": null, + "ticktocking": null, + "tic": [["M", "S"]], + "tic's": null, + "tics": null, + "Ticonderoga": [["M"]], + "Ticonderoga's": null, + "tidal": [["Y"]], + "tidally": null, + "tidbit": [["M", "S"]], + "tidbit's": null, + "tidbits": null, + "tiddlywinks": [["M"]], + "tiddlywinks's": null, + "tide": [["G", "J", "D", "S"]], + "tiding": null, + "tidings": null, + "tided": null, + "tides": null, + "tideland": [["M", "S"]], + "tideland's": null, + "tidelands": null, + "tidewater": [["S", "M"]], + "tidewaters": null, + "tidewater's": null, + "tideway": [["S", "M"]], + "tideways": null, + "tideway's": null, + "tidily": [["U"]], + "untidily": null, + "tidiness": [["U", "S", "M"]], + "untidiness": null, + "untidinesses": null, + "untidiness's": null, + "tidinesses": null, + "tidiness's": null, + "tidying": [["M"]], + "tidying's": null, + "tidy": [["U", "G", "D", "S", "R", "P", "T"]], + "untidy": null, + "untidying": null, + "untidied": null, + "untidies": null, + "untidier": null, + "tidied": null, + "tidies": null, + "tidier": null, + "tidiest": null, + "tie": [["A", "U", "D", "S"]], + "retie": null, + "retied": null, + "reties": null, + "untie": null, + "untied": null, + "unties": null, + "tied": null, + "ties": null, + "tieback": [["M", "S"]], + "tieback's": null, + "tiebacks": null, + "Tiebold": [["M"]], + "Tiebold's": null, + "Tiebout": [["M"]], + "Tiebout's": null, + "tiebreaker": [["S", "M"]], + "tiebreakers": null, + "tiebreaker's": null, + "Tieck": [["M"]], + "Tieck's": null, + "Tiena": [["M"]], + "Tiena's": null, + "Tienanmen": [["M"]], + "Tienanmen's": null, + "Tientsin's": null, + "tier": [["D", "G", "M"]], + "tiered": null, + "tiering": null, + "tier's": null, + "Tierney": [["M"]], + "Tierney's": null, + "Tiertza": [["M"]], + "Tiertza's": null, + "Tiffanie": [["M"]], + "Tiffanie's": null, + "Tiffani": [["M"]], + "Tiffani's": null, + "tiffany": [["M"]], + "tiffany's": null, + "Tiffany": [["M"]], + "Tiffany's": null, + "tiff": [["G", "D", "M", "S"]], + "tiffing": null, + "tiffed": null, + "tiff's": null, + "tiffs": null, + "Tiffie": [["M"]], + "Tiffie's": null, + "Tiffi": [["M"]], + "Tiffi's": null, + "Tiff": [["M"]], + "Tiff's": null, + "Tiffy": [["M"]], + "Tiffy's": null, + "tigerish": null, + "tiger": [["S", "M"]], + "tigers": null, + "tiger's": null, + "tightener": [["M"]], + "tightener's": null, + "tighten": [["J", "Z", "G", "D", "R"]], + "tightenings": null, + "tighteners": null, + "tightening": null, + "tightened": null, + "tightfisted": null, + "tightness": [["M", "S"]], + "tightness's": null, + "tightnesses": null, + "tightrope": [["S", "M"]], + "tightropes": null, + "tightrope's": null, + "tight": [["S", "T", "X", "P", "R", "N", "Y"]], + "tights": null, + "tightest": null, + "tightens": null, + "tighter": null, + "tightly": null, + "tightwad": [["M", "S"]], + "tightwad's": null, + "tightwads": null, + "tigress": [["S", "M"]], + "tigresses": null, + "tigress's": null, + "Tigris": [["M"]], + "Tigris's": null, + "Tijuana": [["M"]], + "Tijuana's": null, + "tike's": null, + "Tilda": [["M"]], + "Tilda's": null, + "tilde": [["M", "S"]], + "tilde's": null, + "tildes": null, + "Tildie": [["M"]], + "Tildie's": null, + "Tildi": [["M"]], + "Tildi's": null, + "Tildy": [["M"]], + "Tildy's": null, + "tile": [["D", "R", "S", "J", "M", "Z", "G"]], + "tiled": [["U", "E"]], + "tiler": null, + "tiles": [["U"]], + "tilings": null, + "tile's": null, + "tilers": null, + "tiling": [["M"]], + "untiled": null, + "distiled": null, + "Tiler": [["M"]], + "Tiler's": null, + "untiles": null, + "tiling's": null, + "tillable": null, + "tillage": [["S", "M"]], + "tillages": null, + "tillage's": null, + "till": [["E", "G", "S", "Z", "D", "R"]], + "distill": null, + "distilling": null, + "distills": null, + "distillers": null, + "distilled": null, + "distiller": null, + "tilling": null, + "tills": null, + "tillers": null, + "tilled": null, + "tiller": [["G", "D", "M"]], + "tillering": null, + "tillered": null, + "tiller's": [["E"]], + "distiller's": null, + "Tillich": [["M"]], + "Tillich's": null, + "Tillie": [["M"]], + "Tillie's": null, + "Tillman": [["M"]], + "Tillman's": null, + "Tilly": [["M"]], + "Tilly's": null, + "tilth": [["M"]], + "tilth's": null, + "tilt": [["R", "D", "S", "G", "Z"]], + "tilter": null, + "tilted": null, + "tilts": null, + "tilting": null, + "tilters": null, + "Ti": [["M"]], + "Ti's": null, + "timber": [["D", "M", "S", "G"]], + "timbered": null, + "timber's": null, + "timbers": null, + "timbering": [["M"]], + "timbering's": null, + "timberland": [["S", "M"]], + "timberlands": null, + "timberland's": null, + "timberline": [["S"]], + "timberlines": null, + "timbrel": [["S", "M"]], + "timbrels": null, + "timbrel's": null, + "timbre": [["M", "S"]], + "timbre's": null, + "timbres": null, + "Timbuktu": [["M"]], + "Timbuktu's": null, + "ti": [["M", "D", "R", "Z"]], + "ti's": null, + "tiers": null, + "timebase": null, + "time": [["D", "R", "S", "J", "M", "Y", "Z", "G"]], + "timed": null, + "timer": [["M"]], + "times": null, + "timings": null, + "time's": null, + "timely": [["U", "T", "R", "P"]], + "timers": null, + "timing": [["M"]], + "timekeeper": [["M", "S"]], + "timekeeper's": null, + "timekeepers": null, + "timekeeping": [["S", "M"]], + "timekeepings": null, + "timekeeping's": null, + "timelessness": [["S"]], + "timelessnesses": null, + "timeless": [["P", "Y"]], + "timelessly": null, + "timeliness": [["S", "M", "U"]], + "timelinesses": null, + "untimelinesses": null, + "timeliness's": null, + "untimeliness's": null, + "untimeliness": null, + "untimely": null, + "untimelier": null, + "timeliest": null, + "timelier": null, + "timeout": [["S"]], + "timeouts": null, + "timepiece": [["M", "S"]], + "timepiece's": null, + "timepieces": null, + "timer's": null, + "timescale": [["S"]], + "timescales": null, + "timeserver": [["M", "S"]], + "timeserver's": null, + "timeservers": null, + "timeserving": [["S"]], + "timeservings": null, + "timeshare": [["S", "D", "G"]], + "timeshares": null, + "timeshared": null, + "timesharing": null, + "timespan": null, + "timestamped": null, + "timestamps": null, + "timetable": [["G", "M", "S", "D"]], + "timetabling": null, + "timetable's": null, + "timetables": null, + "timetabled": null, + "timeworn": null, + "Timex": [["M"]], + "Timex's": null, + "timezone": [["S"]], + "timezones": null, + "timidity": [["S", "M"]], + "timidities": null, + "timidity's": null, + "timidness": [["M", "S"]], + "timidness's": null, + "timidnesses": null, + "timid": [["R", "Y", "T", "P"]], + "timider": null, + "timidly": null, + "timidest": null, + "Timi": [["M"]], + "Timi's": null, + "timing's": null, + "Timmie": [["M"]], + "Timmie's": null, + "Timmi": [["M"]], + "Timmi's": null, + "Tim": [["M", "S"]], + "Tim's": null, + "Tims": null, + "Timmy": [["M"]], + "Timmy's": null, + "Timofei": [["M"]], + "Timofei's": null, + "Timon": [["M"]], + "Timon's": null, + "timorousness": [["M", "S"]], + "timorousness's": null, + "timorousnesses": null, + "timorous": [["Y", "P"]], + "timorously": null, + "Timoteo": [["M"]], + "Timoteo's": null, + "Timothea": [["M"]], + "Timothea's": null, + "Timothee": [["M"]], + "Timothee's": null, + "Timotheus": [["M"]], + "Timotheus's": null, + "Timothy": [["M"]], + "Timothy's": null, + "timothy": [["M", "S"]], + "timothy's": null, + "timothies": null, + "timpani": null, + "timpanist": [["S"]], + "timpanists": null, + "Timur": [["M"]], + "Timur's": null, + "Tina": [["M"]], + "Tina's": null, + "tincture": [["S", "D", "M", "G"]], + "tinctures": null, + "tinctured": null, + "tincture's": null, + "tincturing": null, + "tinderbox": [["M", "S"]], + "tinderbox's": null, + "tinderboxes": null, + "tinder": [["M", "S"]], + "tinder's": null, + "tinders": null, + "Tine": [["M"]], + "Tine's": null, + "tine": [["S", "M"]], + "tines": null, + "tine's": null, + "tinfoil": [["M", "S"]], + "tinfoil's": null, + "tinfoils": null, + "tingeing": null, + "tinge": [["S"]], + "tinges": null, + "ting": [["G", "Y", "D", "M"]], + "tinging": null, + "tingly": [["T", "R"]], + "tinged": null, + "ting's": null, + "tingle": [["S", "D", "G"]], + "tingles": null, + "tingled": null, + "tingling": [["Y"]], + "tinglingly": null, + "tingliest": null, + "tinglier": null, + "Ting's": null, + "tinily": null, + "tininess": [["M", "S"]], + "tininess's": null, + "tininesses": null, + "tinker": [["S", "R", "D", "M", "Z", "G"]], + "tinkers": null, + "tinkerer": null, + "tinkered": null, + "tinker's": null, + "tinkerers": null, + "tinkering": null, + "Tinkertoy": null, + "tinkle": [["S", "D", "G"]], + "tinkles": null, + "tinkled": null, + "tinkling": [["M"]], + "tinkling's": null, + "tinkly": null, + "tin": [["M", "D", "G", "S"]], + "tin's": null, + "tined": null, + "tining": null, + "tins": null, + "tinned": null, + "tinner": [["M"]], + "tinner's": null, + "tinnily": null, + "tinniness": [["S", "M"]], + "tinninesses": null, + "tinniness's": null, + "tinning": [["M"]], + "tinning's": null, + "tinnitus": [["M", "S"]], + "tinnitus's": null, + "tinnituses": null, + "tinny": [["R", "S", "T", "P"]], + "tinnier": null, + "tinnies": null, + "tinniest": null, + "tinplate": [["S"]], + "tinplates": null, + "tinsel": [["G", "M", "D", "Y", "S"]], + "tinseling": null, + "tinsel's": null, + "tinseled": null, + "tinselly": null, + "tinsels": null, + "Tinseltown": [["M"]], + "Tinseltown's": null, + "tinsmith": [["M"]], + "tinsmith's": null, + "tinsmiths": null, + "tinter": [["M"]], + "tinter's": null, + "tintinnabulation": [["M", "S"]], + "tintinnabulation's": null, + "tintinnabulations": null, + "Tintoretto": [["M"]], + "Tintoretto's": null, + "tint": [["S", "G", "M", "R", "D", "B"]], + "tints": null, + "tinting": null, + "tint's": null, + "tinted": null, + "tintable": null, + "tintype": [["S", "M"]], + "tintypes": null, + "tintype's": null, + "tinware": [["M", "S"]], + "tinware's": null, + "tinwares": null, + "tiny": [["R", "P", "T"]], + "tinier": null, + "tiniest": null, + "Tioga": [["M"]], + "Tioga's": null, + "Tiphanie": [["M"]], + "Tiphanie's": null, + "Tiphani": [["M"]], + "Tiphani's": null, + "Tiphany": [["M"]], + "Tiphany's": null, + "tipi's": null, + "tip": [["M", "S"]], + "tip's": null, + "tips": null, + "tipoff": null, + "Tippecanoe": [["M"]], + "Tippecanoe's": null, + "tipped": null, + "Tipperary": [["M"]], + "Tipperary's": null, + "tipper": [["M", "S"]], + "tipper's": null, + "tippers": null, + "tippet": [["M", "S"]], + "tippet's": null, + "tippets": null, + "tipping": null, + "tippler": [["M"]], + "tippler's": null, + "tipple": [["Z", "G", "R", "S", "D"]], + "tipplers": null, + "tippling": null, + "tipples": null, + "tippled": null, + "tippy": [["R"]], + "tippier": null, + "tipsily": null, + "tipsiness": [["S", "M"]], + "tipsinesses": null, + "tipsiness's": null, + "tipster": [["S", "M"]], + "tipsters": null, + "tipster's": null, + "tipsy": [["T", "P", "R"]], + "tipsiest": null, + "tipsier": null, + "tiptoeing": null, + "tiptoe": [["S", "D"]], + "tiptoes": null, + "tiptoed": null, + "tiptop": [["S"]], + "tiptops": null, + "tirade": [["S", "M"]], + "tirades": null, + "tirade's": null, + "Tirana's": null, + "Tirane": null, + "tired": [["A", "Y", "P"]], + "retired": null, + "retiredly": null, + "tiredly": null, + "tiredness": [["S"]], + "tireder": null, + "tiredest": null, + "tirednesses": null, + "tirelessness": [["S", "M"]], + "tirelessnesses": null, + "tirelessness's": null, + "tireless": [["P", "Y"]], + "tirelessly": null, + "tire": [["M", "G", "D", "S", "J"]], + "tire's": null, + "tiring": [["A", "U"]], + "tires": [["A"]], + "tirings": null, + "retires": null, + "Tiresias": [["M"]], + "Tiresias's": null, + "tiresomeness": [["S"]], + "tiresomenesses": null, + "tiresome": [["P", "Y"]], + "tiresomely": null, + "untiring": [["Y"]], + "Tirolean": [["S"]], + "Tiroleans": null, + "Tirol": [["M"]], + "Tirol's": null, + "tiro's": null, + "Tirrell": [["M"]], + "Tirrell's": null, + "tis": null, + "Tisha": [["M"]], + "Tisha's": null, + "Tish": [["M"]], + "Tish's": null, + "tissue": [["M", "G", "S", "D"]], + "tissue's": null, + "tissuing": null, + "tissues": null, + "tissued": null, + "titanate": [["M"]], + "titanate's": null, + "Titania": [["M"]], + "Titania's": null, + "titanic": null, + "titanically": null, + "Titanic": [["M"]], + "Titanic's": null, + "titanium": [["S", "M"]], + "titaniums": null, + "titanium's": null, + "titan": [["S", "M"]], + "titans": null, + "titan's": null, + "Titan": [["S", "M"]], + "Titans": null, + "Titan's": null, + "titbit's": null, + "titer": [["M"]], + "titer's": null, + "tither": [["M"]], + "tither's": null, + "tithe": [["S", "R", "D", "G", "Z", "M"]], + "tithes": null, + "tithed": null, + "tithing": [["M"]], + "tithers": null, + "tithe's": null, + "tithing's": null, + "Titian": [["M"]], + "Titian's": null, + "titian": [["S"]], + "titians": null, + "Titicaca": [["M"]], + "Titicaca's": null, + "titillate": [["X", "S", "D", "V", "N", "G"]], + "titillations": null, + "titillates": null, + "titillated": null, + "titillative": null, + "titillation": [["M"]], + "titillating": [["Y"]], + "titillatingly": null, + "titillation's": null, + "titivate": [["N", "G", "D", "S", "X"]], + "titivation": [["M"]], + "titivating": null, + "titivated": null, + "titivates": null, + "titivations": null, + "titivation's": null, + "titled": [["A", "U"]], + "retitled": null, + "untitled": null, + "title": [["G", "M", "S", "R", "D"]], + "titling": [["A"]], + "title's": null, + "titles": null, + "titler": null, + "titleholder": [["S", "M"]], + "titleholders": null, + "titleholder's": null, + "retitling": null, + "titmice": null, + "titmouse": [["M"]], + "titmouse's": null, + "tit": [["M", "R", "Z", "S"]], + "tit's": null, + "titers": null, + "tits": null, + "Tito": [["S", "M"]], + "Titos": null, + "Tito's": null, + "titrate": [["S", "D", "G", "N"]], + "titrates": null, + "titrated": null, + "titrating": null, + "titration": [["M"]], + "titration's": null, + "titted": null, + "titter": [["G", "D", "S"]], + "tittering": null, + "tittered": null, + "titters": null, + "titting": null, + "tittle": [["S", "D", "M", "G"]], + "tittles": null, + "tittled": null, + "tittle's": null, + "tittling": null, + "titular": [["S", "Y"]], + "titulars": null, + "titularly": null, + "Titus": [["M"]], + "Titus's": null, + "tizzy": [["S", "M"]], + "tizzies": null, + "tizzy's": null, + "TKO": null, + "Tlaloc": [["M"]], + "Tlaloc's": null, + "TLC": null, + "Tlingit": [["M"]], + "Tlingit's": null, + "Tl": [["M"]], + "Tl's": null, + "TM": null, + "Tm": [["M"]], + "Tm's": null, + "tn": null, + "TN": null, + "tnpk": null, + "TNT": null, + "toad": [["S", "M"]], + "toads": null, + "toad's": null, + "toadstool": [["S", "M"]], + "toadstools": null, + "toadstool's": null, + "toady": [["G", "S", "D", "M"]], + "toadying": null, + "toadies": null, + "toadied": null, + "toady's": null, + "toadyism": [["M"]], + "toadyism's": null, + "toaster": [["M"]], + "toaster's": null, + "toastmaster": [["M", "S"]], + "toastmaster's": null, + "toastmasters": null, + "toastmistress": [["S"]], + "toastmistresses": null, + "toast": [["S", "Z", "G", "R", "D", "M"]], + "toasts": null, + "toasters": null, + "toasting": null, + "toasted": null, + "toast's": null, + "toasty": [["T", "R", "S"]], + "toastiest": null, + "toastier": null, + "toasties": null, + "tobacconist": [["S", "M"]], + "tobacconists": null, + "tobacconist's": null, + "tobacco": [["S", "M"]], + "tobaccos": null, + "tobacco's": null, + "tobaggon": [["S", "M"]], + "tobaggons": null, + "tobaggon's": null, + "Tobago": [["M"]], + "Tobago's": null, + "Tobe": [["M"]], + "Tobe's": null, + "Tobey": [["M"]], + "Tobey's": null, + "Tobiah": [["M"]], + "Tobiah's": null, + "Tobias": [["M"]], + "Tobias's": null, + "Tobie": [["M"]], + "Tobie's": null, + "Tobi": [["M"]], + "Tobi's": null, + "Tobin": [["M"]], + "Tobin's": null, + "Tobit": [["M"]], + "Tobit's": null, + "toboggan": [["M", "R", "D", "S", "Z", "G"]], + "toboggan's": null, + "tobogganer": null, + "tobogganed": null, + "toboggans": null, + "tobogganers": null, + "tobogganing": null, + "Tobye": [["M"]], + "Tobye's": null, + "Toby": [["M"]], + "Toby's": null, + "Tocantins": [["M"]], + "Tocantins's": null, + "toccata": [["M"]], + "toccata's": null, + "Tocqueville": null, + "tocsin": [["M", "S"]], + "tocsin's": null, + "tocsins": null, + "to": [["D"]], + "toed": null, + "today'll": null, + "today": [["S", "M"]], + "todays": null, + "today's": null, + "Toddie": [["M"]], + "Toddie's": null, + "toddler": [["M"]], + "toddler's": null, + "toddle": [["Z", "G", "S", "R", "D"]], + "toddlers": null, + "toddling": null, + "toddles": null, + "toddled": null, + "Todd": [["M"]], + "Todd's": null, + "Toddy": [["M"]], + "Toddy's": null, + "toddy": [["S", "M"]], + "toddies": null, + "toddy's": null, + "Tod": [["M"]], + "Tod's": null, + "toecap": [["S", "M"]], + "toecaps": null, + "toecap's": null, + "toeclip": [["S"]], + "toeclips": null, + "TOEFL": null, + "toehold": [["M", "S"]], + "toehold's": null, + "toeholds": null, + "toeing": null, + "toe": [["M", "S"]], + "toe's": null, + "toes": null, + "toenail": [["D", "M", "G", "S"]], + "toenailed": null, + "toenail's": null, + "toenailing": null, + "toenails": null, + "toffee": [["S", "M"]], + "toffees": null, + "toffee's": null, + "tofu": [["S"]], + "tofus": null, + "toga": [["S", "M", "D"]], + "togas": null, + "toga's": null, + "togaed": null, + "toge": null, + "togetherness": [["M", "S"]], + "togetherness's": null, + "togethernesses": null, + "together": [["P"]], + "togged": null, + "togging": null, + "toggle": [["S", "D", "M", "G"]], + "toggles": null, + "toggled": null, + "toggle's": null, + "toggling": null, + "Togolese": [["M"]], + "Togolese's": null, + "Togo": [["M"]], + "Togo's": null, + "tog": [["S", "M", "G"]], + "togs": null, + "tog's": null, + "toging": null, + "Toiboid": [["M"]], + "Toiboid's": null, + "toilet": [["G", "M", "D", "S"]], + "toileting": null, + "toilet's": null, + "toileted": null, + "toilets": null, + "toiletry": [["M", "S"]], + "toiletry's": null, + "toiletries": null, + "toilette": [["S", "M"]], + "toilettes": null, + "toilette's": null, + "toil": [["S", "G", "Z", "M", "R", "D"]], + "toils": null, + "toiling": null, + "toilers": null, + "toil's": null, + "toiler": null, + "toiled": null, + "toilsomeness": [["M"]], + "toilsomeness's": null, + "toilsome": [["P", "Y"]], + "toilsomely": null, + "Toinette": [["M"]], + "Toinette's": null, + "Tojo": [["M"]], + "Tojo's": null, + "tokamak": null, + "Tokay": [["M"]], + "Tokay's": null, + "toke": [["G", "D", "S"]], + "toking": null, + "toked": null, + "tokes": null, + "tokenism": [["S", "M"]], + "tokenisms": null, + "tokenism's": null, + "tokenized": null, + "token": [["S", "M", "D", "G"]], + "tokens": null, + "token's": null, + "tokened": null, + "tokening": null, + "Tokugawa": [["M"]], + "Tokugawa's": null, + "Tokyoite": [["M", "S"]], + "Tokyoite's": null, + "Tokyoites": null, + "Tokyo": [["M"]], + "Tokyo's": null, + "Toland": [["M"]], + "Toland's": null, + "told": [["A", "U"]], + "retold": null, + "untold": null, + "Toledo": [["S", "M"]], + "Toledos": null, + "Toledo's": null, + "tole": [["M", "G", "D", "S"]], + "tole's": null, + "toling": null, + "toled": null, + "toles": null, + "tolerability": [["I", "M"]], + "intolerability": null, + "intolerability's": null, + "tolerability's": null, + "tolerable": [["I"]], + "tolerably": [["I"]], + "intolerably": null, + "tolerance": [["S", "I", "M"]], + "tolerances": null, + "intolerances": null, + "intolerance": null, + "intolerance's": null, + "tolerance's": null, + "tolerant": [["I", "Y"]], + "intolerantly": null, + "tolerantly": null, + "tolerate": [["X", "V", "N", "G", "S", "D"]], + "tolerations": null, + "tolerative": null, + "toleration": [["M"]], + "tolerating": null, + "tolerates": null, + "tolerated": null, + "toleration's": null, + "Tolkien": null, + "tollbooth": [["M"]], + "tollbooth's": null, + "tollbooths": null, + "toll": [["D", "G", "S"]], + "tolled": null, + "tolling": null, + "tolls": null, + "Tolley": [["M"]], + "Tolley's": null, + "tollgate": [["M", "S"]], + "tollgate's": null, + "tollgates": null, + "tollhouse": [["M"]], + "tollhouse's": null, + "tollway": [["S"]], + "tollways": null, + "Tolstoy": [["M"]], + "Tolstoy's": null, + "toluene": [["M", "S"]], + "toluene's": null, + "toluenes": null, + "Tolyatti": [["M"]], + "Tolyatti's": null, + "tomahawk": [["S", "G", "M", "D"]], + "tomahawks": null, + "tomahawking": null, + "tomahawk's": null, + "tomahawked": null, + "Tomasina": [["M"]], + "Tomasina's": null, + "Tomasine": [["M"]], + "Tomasine's": null, + "Toma": [["S", "M"]], + "Tomas": null, + "Toma's": null, + "Tomaso": [["M"]], + "Tomaso's": null, + "tomatoes": null, + "tomato": [["M"]], + "tomato's": null, + "Tombaugh": [["M"]], + "Tombaugh's": null, + "tomb": [["G", "S", "D", "M"]], + "tombing": null, + "tombs": null, + "tombed": null, + "tomb's": null, + "Tombigbee": [["M"]], + "Tombigbee's": null, + "tomblike": null, + "tombola": [["M"]], + "tombola's": null, + "tomboyish": null, + "tomboy": [["M", "S"]], + "tomboy's": null, + "tomboys": null, + "tombstone": [["M", "S"]], + "tombstone's": null, + "tombstones": null, + "tomcat": [["S", "M"]], + "tomcats": null, + "tomcat's": null, + "tomcatted": null, + "tomcatting": null, + "Tome": [["M"]], + "Tome's": null, + "tome": [["S", "M"]], + "tomes": null, + "tome's": null, + "tomfoolery": [["M", "S"]], + "tomfoolery's": null, + "tomfooleries": null, + "tomfool": [["M"]], + "tomfool's": null, + "Tomi": [["M"]], + "Tomi's": null, + "Tomkin": [["M"]], + "Tomkin's": null, + "Tomlin": [["M"]], + "Tomlin's": null, + "Tom": [["M"]], + "Tom's": null, + "tommed": null, + "Tommie": [["M"]], + "Tommie's": null, + "Tommi": [["M"]], + "Tommi's": null, + "tomming": null, + "tommy": [["M"]], + "tommy's": null, + "Tommy": [["M"]], + "Tommy's": null, + "tomographic": null, + "tomography": [["M", "S"]], + "tomography's": null, + "tomographies": null, + "tomorrow": [["M", "S"]], + "tomorrow's": null, + "tomorrows": null, + "Tompkins": [["M"]], + "Tompkins's": null, + "Tomsk": [["M"]], + "Tomsk's": null, + "tom": [["S", "M"]], + "toms": null, + "tom's": null, + "tomtit": [["S", "M"]], + "tomtits": null, + "tomtit's": null, + "tonality": [["M", "S"]], + "tonality's": null, + "tonalities": null, + "tonal": [["Y"]], + "tonally": null, + "tonearm": [["S"]], + "tonearms": null, + "tone": [["I", "S", "R", "D", "Z", "G"]], + "intone": null, + "intones": null, + "intoner": null, + "intoned": null, + "intoners": null, + "intoning": null, + "tones": null, + "toner": [["I", "M"]], + "toned": null, + "toners": null, + "toning": null, + "tonelessness": [["M"]], + "tonelessness's": null, + "toneless": [["Y", "P"]], + "tonelessly": null, + "intoner's": null, + "toner's": null, + "tone's": null, + "Tonga": [["M"]], + "Tonga's": null, + "Tongan": [["S", "M"]], + "Tongans": null, + "Tongan's": null, + "tong": [["G", "R", "D", "S"]], + "tonging": null, + "tonger": null, + "tonged": null, + "tongs": null, + "tongueless": null, + "tongue": [["S", "D", "M", "G"]], + "tongues": null, + "tongued": null, + "tongue's": null, + "tonguing": [["M"]], + "tonguing's": null, + "Tonia": [["M"]], + "Tonia's": null, + "tonic": [["S", "M"]], + "tonics": null, + "tonic's": null, + "Tonie": [["M"]], + "Tonie's": null, + "tonight": [["M", "S"]], + "tonight's": null, + "tonights": null, + "Toni": [["M"]], + "Toni's": null, + "Tonio": [["M"]], + "Tonio's": null, + "tonk": [["M", "S"]], + "tonk's": null, + "tonks": null, + "tonnage": [["S", "M"]], + "tonnages": null, + "tonnage's": null, + "tonne": [["M", "S"]], + "tonne's": null, + "tonnes": null, + "Tonnie": [["M"]], + "Tonnie's": null, + "tonsillectomy": [["M", "S"]], + "tonsillectomy's": null, + "tonsillectomies": null, + "tonsillitis": [["S", "M"]], + "tonsillitises": null, + "tonsillitis's": null, + "tonsil": [["S", "M"]], + "tonsils": null, + "tonsil's": null, + "ton": [["S", "K", "M"]], + "tons": null, + "protons": null, + "proton": null, + "proton's": null, + "ton's": null, + "tonsorial": null, + "tonsure": [["S", "D", "G", "M"]], + "tonsures": null, + "tonsured": null, + "tonsuring": null, + "tonsure's": null, + "Tonto": [["M"]], + "Tonto's": null, + "Tonya": [["M"]], + "Tonya's": null, + "Tonye": [["M"]], + "Tonye's": null, + "Tony": [["M"]], + "Tony's": null, + "tony": [["R", "T"]], + "tonier": null, + "toniest": null, + "toodle": null, + "too": [["H"]], + "tooth": [["D", "M", "G"]], + "took": [["A"]], + "retook": null, + "tool": [["A", "G", "D", "S"]], + "retool": null, + "retooling": null, + "retooled": null, + "retools": null, + "tooling": [["M"]], + "tooled": null, + "tools": null, + "toolbox": [["S", "M"]], + "toolboxes": null, + "toolbox's": null, + "tooler": [["S", "M"]], + "toolers": null, + "tooler's": null, + "tooling's": null, + "toolkit": [["S", "M"]], + "toolkits": null, + "toolkit's": null, + "toolmaker": [["M"]], + "toolmaker's": null, + "toolmake": [["Z", "R", "G"]], + "toolmakers": null, + "toolmaking": [["M"]], + "toolmaking's": null, + "tool's": null, + "toolsmith": null, + "Toomey": [["M"]], + "Toomey's": null, + "tooter": [["M"]], + "tooter's": null, + "toot": [["G", "R", "D", "Z", "S"]], + "tooting": null, + "tooted": null, + "tooters": null, + "toots": [["M"]], + "toothache": [["S", "M"]], + "toothaches": null, + "toothache's": null, + "toothbrush": [["M", "S", "G"]], + "toothbrush's": null, + "toothbrushes": null, + "toothbrushing": null, + "toothed": null, + "tooth's": null, + "toothing": null, + "toothily": null, + "toothless": null, + "toothmarks": null, + "toothpaste": [["S", "M"]], + "toothpastes": null, + "toothpaste's": null, + "toothpick": [["M", "S"]], + "toothpick's": null, + "toothpicks": null, + "tooths": null, + "toothsome": null, + "toothy": [["T", "R"]], + "toothiest": null, + "toothier": null, + "tootle": [["S", "R", "D", "G"]], + "tootles": null, + "tootler": null, + "tootled": null, + "tootling": null, + "tootsie": null, + "Tootsie": [["M"]], + "Tootsie's": null, + "toots's": null, + "tootsy": [["M", "S"]], + "tootsy's": null, + "tootsies": null, + "topaz": [["M", "S"]], + "topaz's": null, + "topazes": null, + "topcoat": [["M", "S"]], + "topcoat's": null, + "topcoats": null, + "topdressing": [["S"]], + "topdressings": null, + "Topeka": [["M"]], + "Topeka's": null, + "toper": [["M"]], + "toper's": null, + "topflight": null, + "topgallant": [["M"]], + "topgallant's": null, + "topiary": [["S"]], + "topiaries": null, + "topicality": [["M", "S"]], + "topicality's": null, + "topicalities": null, + "topical": [["Y"]], + "topically": null, + "topic": [["M", "S"]], + "topic's": null, + "topics": null, + "topknot": [["M", "S"]], + "topknot's": null, + "topknots": null, + "topless": null, + "topmast": [["M", "S"]], + "topmast's": null, + "topmasts": null, + "topmost": null, + "topnotch": [["R"]], + "topnotcher": null, + "topocentric": null, + "topographer": [["S", "M"]], + "topographers": null, + "topographer's": null, + "topographic": null, + "topographical": [["Y"]], + "topographically": null, + "topography": [["M", "S"]], + "topography's": null, + "topographies": null, + "topological": [["Y"]], + "topologically": null, + "topologist": [["M", "S"]], + "topologist's": null, + "topologists": null, + "topology": [["M", "S"]], + "topology's": null, + "topologies": null, + "topped": null, + "topper": [["M", "S"]], + "topper's": null, + "toppers": null, + "topping": [["M", "S"]], + "topping's": null, + "toppings": null, + "topple": [["G", "S", "D"]], + "toppling": null, + "topples": null, + "toppled": null, + "topsail": [["M", "S"]], + "topsail's": null, + "topsails": null, + "topside": [["S", "R", "M"]], + "topsides": null, + "topsider": null, + "topside's": null, + "top": [["S", "M", "D", "R", "G"]], + "tops": null, + "top's": null, + "toped": null, + "toping": null, + "topsoil": [["G", "D", "M", "S"]], + "topsoiling": null, + "topsoiled": null, + "topsoil's": null, + "topsoils": null, + "topspin": [["M", "S"]], + "topspin's": null, + "topspins": null, + "Topsy": [["M"]], + "Topsy's": null, + "toque": [["M", "S"]], + "toque's": null, + "toques": null, + "Torah": [["M"]], + "Torah's": null, + "Torahs": null, + "torchbearer": [["S", "M"]], + "torchbearers": null, + "torchbearer's": null, + "torchlight": [["S"]], + "torchlights": null, + "torch": [["S", "D", "M", "G"]], + "torches": null, + "torched": null, + "torch's": null, + "torching": null, + "toreador": [["S", "M"]], + "toreadors": null, + "toreador's": null, + "Tore": [["M"]], + "Tore's": null, + "tore": [["S"]], + "tores": null, + "Torey": [["M"]], + "Torey's": null, + "Torie": [["M"]], + "Torie's": null, + "tori": [["M"]], + "tori's": null, + "Tori": [["M"]], + "Tori's": null, + "Torin": [["M"]], + "Torin's": null, + "torment": [["G", "S", "D"]], + "tormenting": [["Y"]], + "torments": null, + "tormented": null, + "tormentingly": null, + "tormentor": [["M", "S"]], + "tormentor's": null, + "tormentors": null, + "torn": null, + "tornadoes": null, + "tornado": [["M"]], + "tornado's": null, + "toroidal": [["Y"]], + "toroidally": null, + "toroid": [["M", "S"]], + "toroid's": null, + "toroids": null, + "Toronto": [["M"]], + "Toronto's": null, + "torpedoes": null, + "torpedo": [["G", "M", "D"]], + "torpedoing": null, + "torpedo's": null, + "torpedoed": null, + "torpidity": [["S"]], + "torpidities": null, + "torpid": [["S", "Y"]], + "torpids": null, + "torpidly": null, + "torpor": [["M", "S"]], + "torpor's": null, + "torpors": null, + "Torquemada": [["M"]], + "Torquemada's": null, + "torque": [["M", "Z", "G", "S", "R", "D"]], + "torque's": null, + "torquers": null, + "torquing": null, + "torques": null, + "torquer": null, + "torqued": null, + "Torrance": [["M"]], + "Torrance's": null, + "Torre": [["M", "S"]], + "Torre's": null, + "Torres": null, + "torrence": null, + "Torrence": [["M"]], + "Torrence's": null, + "Torrens": [["M"]], + "Torrens's": null, + "torrential": null, + "torrent": [["M", "S"]], + "torrent's": null, + "torrents": null, + "Torrey": [["M"]], + "Torrey's": null, + "Torricelli": [["M"]], + "Torricelli's": null, + "torridity": [["S", "M"]], + "torridities": null, + "torridity's": null, + "torridness": [["S", "M"]], + "torridnesses": null, + "torridness's": null, + "torrid": [["R", "Y", "T", "P"]], + "torrider": null, + "torridly": null, + "torridest": null, + "Torrie": [["M"]], + "Torrie's": null, + "Torrin": [["M"]], + "Torrin's": null, + "Torr": [["X", "M"]], + "Torr's": null, + "Torry": [["M"]], + "Torry's": null, + "torsional": [["Y"]], + "torsionally": null, + "torsion": [["I", "A", "M"]], + "intorsion": null, + "intorsion's": null, + "retorsion": null, + "retorsion's": null, + "torsion's": null, + "torsions": null, + "torsi's": null, + "tor": [["S", "L", "M"]], + "tors": [["S"]], + "tor's": null, + "torso": [["S", "M"]], + "torsos": null, + "torso's": null, + "torses": null, + "tort": [["A", "S", "F", "E"]], + "retorts": null, + "torts": null, + "contorts": null, + "distorts": null, + "tortellini": [["M", "S"]], + "tortellini's": null, + "tortellinis": null, + "torte": [["M", "S"]], + "torte's": null, + "tortes": null, + "torten": null, + "tortilla": [["M", "S"]], + "tortilla's": null, + "tortillas": null, + "tortoiseshell": [["S", "M"]], + "tortoiseshells": null, + "tortoiseshell's": null, + "tortoise": [["S", "M"]], + "tortoises": null, + "tortoise's": null, + "Tortola": [["M"]], + "Tortola's": null, + "tortoni": [["M", "S"]], + "tortoni's": null, + "tortonis": null, + "tort's": null, + "Tortuga": [["M"]], + "Tortuga's": null, + "tortuousness": [["M", "S"]], + "tortuousness's": null, + "tortuousnesses": null, + "tortuous": [["P", "Y"]], + "tortuously": null, + "torture": [["Z", "G", "S", "R", "D"]], + "torturers": null, + "torturing": null, + "tortures": null, + "torturer": null, + "tortured": null, + "torturous": null, + "torus": [["M", "S"]], + "torus's": null, + "toruses": null, + "Tory": [["S", "M"]], + "Tories": null, + "Tory's": null, + "Tosca": [["M"]], + "Tosca's": null, + "Toscanini": [["M"]], + "Toscanini's": null, + "Toshiba": [["M"]], + "Toshiba's": null, + "toss": [["S", "R", "D", "G", "Z"]], + "tosses": null, + "tosser": null, + "tossed": null, + "tossing": null, + "tossers": null, + "tossup": [["M", "S"]], + "tossup's": null, + "tossups": null, + "totaler": [["M"]], + "totaler's": null, + "totalistic": null, + "totalitarianism": [["S", "M"]], + "totalitarianisms": null, + "totalitarianism's": null, + "totalitarian": [["S"]], + "totalitarians": null, + "totality": [["M", "S"]], + "totality's": null, + "totalities": null, + "totalizator": [["S"]], + "totalizators": null, + "totalizing": null, + "total": [["Z", "G", "S", "R", "D", "Y", "M"]], + "totalers": null, + "totaling": null, + "totals": null, + "totaled": null, + "totally": null, + "total's": null, + "totemic": null, + "totem": [["M", "S"]], + "totem's": null, + "totems": null, + "toter": [["M"]], + "toter's": null, + "tote": [["S"]], + "totes": null, + "toting": [["M"]], + "toting's": null, + "tot": [["M", "D", "R", "S", "G"]], + "tot's": null, + "toted": null, + "tots": null, + "Toto": [["M"]], + "Toto's": null, + "totted": null, + "totterer": [["M"]], + "totterer's": null, + "tottering": [["Y"]], + "totteringly": null, + "totter": [["Z", "G", "R", "D", "S"]], + "totterers": null, + "tottered": null, + "totters": null, + "totting": null, + "toucan": [["M", "S"]], + "toucan's": null, + "toucans": null, + "touchable": [["U"]], + "untouchable": [["M", "S"]], + "touch": [["A", "S", "D", "G"]], + "retouch": null, + "retouches": null, + "retouched": null, + "retouching": null, + "touches": null, + "touched": [["U"]], + "touching": [["S", "Y"]], + "touchdown": [["S", "M"]], + "touchdowns": null, + "touchdown's": null, + "touch�": null, + "untouched": null, + "toucher": [["M"]], + "toucher's": null, + "touchily": null, + "touchiness": [["S", "M"]], + "touchinesses": null, + "touchiness's": null, + "touchings": null, + "touchingly": null, + "touchline": [["M"]], + "touchline's": null, + "touchscreen": null, + "touchstone": [["S", "M"]], + "touchstones": null, + "touchstone's": null, + "touchy": [["T", "P", "R"]], + "touchiest": null, + "touchier": null, + "toughen": [["D", "R", "Z", "G"]], + "toughened": null, + "toughener": [["M"]], + "tougheners": null, + "toughening": null, + "toughener's": null, + "toughness": [["S", "M"]], + "toughnesses": null, + "toughness's": null, + "toughs": null, + "tough": [["T", "X", "G", "R", "D", "N", "Y", "P"]], + "toughest": null, + "toughens": null, + "toughing": null, + "tougher": null, + "toughed": null, + "toughly": null, + "Toulouse": [["M"]], + "Toulouse's": null, + "toupee": [["S", "M"]], + "toupees": null, + "toupee's": null, + "toured": [["C", "F"]], + "detoured": null, + "contoured": null, + "tourer": [["M"]], + "tourer's": null, + "tour": [["G", "Z", "S", "R", "D", "M"]], + "touring": [["F"]], + "tourers": null, + "tours": [["C", "F"]], + "tour's": [["C", "F"]], + "contouring": null, + "tourism": [["S", "M"]], + "tourisms": null, + "tourism's": null, + "touristic": null, + "tourist": [["S", "M"]], + "tourists": null, + "tourist's": null, + "touristy": null, + "tourmaline": [["S", "M"]], + "tourmalines": null, + "tourmaline's": null, + "tournament": [["M", "S"]], + "tournament's": null, + "tournaments": null, + "tourney": [["G", "D", "M", "S"]], + "tourneying": null, + "tourneyed": null, + "tourney's": null, + "tourneys": null, + "tourniquet": [["M", "S"]], + "tourniquet's": null, + "tourniquets": null, + "detour's": null, + "contour's": null, + "detours": null, + "contours": null, + "tousle": [["G", "S", "D"]], + "tousling": null, + "tousles": null, + "tousled": null, + "touter": [["M"]], + "touter's": null, + "tout": [["S", "G", "R", "D"]], + "touts": null, + "touting": null, + "touted": null, + "Tova": [["M"]], + "Tova's": null, + "Tove": [["M"]], + "Tove's": null, + "towardliness": [["M"]], + "towardliness's": null, + "towardly": [["P"]], + "towards": null, + "toward": [["Y", "U"]], + "untowardly": null, + "untoward": [["P"]], + "towboat": [["M", "S"]], + "towboat's": null, + "towboats": null, + "tow": [["D", "R", "S", "Z", "G"]], + "towed": null, + "tower": [["G", "M", "D"]], + "tows": null, + "towers": null, + "towing": null, + "towelette": [["S"]], + "towelettes": null, + "towel": [["G", "J", "D", "M", "S"]], + "toweling": [["M"]], + "towelings": null, + "toweled": null, + "towel's": null, + "towels": null, + "toweling's": null, + "towering": [["Y"]], + "tower's": null, + "towered": null, + "toweringly": null, + "towhead": [["M", "S", "D"]], + "towhead's": null, + "towheads": null, + "towheaded": null, + "towhee": [["S", "M"]], + "towhees": null, + "towhee's": null, + "towline": [["M", "S"]], + "towline's": null, + "towlines": null, + "towner": [["M"]], + "towner's": null, + "Townes": null, + "Towney": [["M"]], + "Towney's": null, + "townhouse": [["S"]], + "townhouses": null, + "Townie": [["M"]], + "Townie's": null, + "townie": [["S"]], + "townies": null, + "Townley": [["M"]], + "Townley's": null, + "Town": [["M"]], + "Town's": null, + "Townsend": [["M"]], + "Townsend's": null, + "townsfolk": null, + "township": [["M", "S"]], + "township's": null, + "townships": null, + "townsman": [["M"]], + "townsman's": null, + "townsmen": null, + "townspeople": [["M"]], + "townspeople's": null, + "town": [["S", "R", "M"]], + "towns": null, + "town's": null, + "townswoman": [["M"]], + "townswoman's": null, + "townswomen": null, + "Towny": [["M"]], + "Towny's": null, + "towpath": [["M"]], + "towpath's": null, + "towpaths": null, + "towrope": [["M", "S"]], + "towrope's": null, + "towropes": null, + "Towsley": [["M"]], + "Towsley's": null, + "toxemia": [["M", "S"]], + "toxemia's": null, + "toxemias": null, + "toxicity": [["M", "S"]], + "toxicity's": null, + "toxicities": null, + "toxicological": null, + "toxicologist": [["S", "M"]], + "toxicologists": null, + "toxicologist's": null, + "toxicology": [["M", "S"]], + "toxicology's": null, + "toxicologies": null, + "toxic": [["S"]], + "toxics": null, + "toxin": [["M", "S"]], + "toxin's": null, + "toxins": null, + "toyer": [["M"]], + "toyer's": null, + "toymaker": null, + "toy": [["M", "D", "R", "S", "G"]], + "toy's": null, + "toyed": null, + "toys": null, + "toying": null, + "Toynbee": [["M"]], + "Toynbee's": null, + "Toyoda": [["M"]], + "Toyoda's": null, + "Toyota": [["M"]], + "Toyota's": null, + "toyshop": null, + "tr": null, + "traceability": [["M"]], + "traceability's": null, + "traceableness": [["M"]], + "traceableness's": null, + "traceable": [["P"]], + "trace": [["A", "S", "D", "G"]], + "retrace": null, + "retraces": null, + "retraced": null, + "retracing": null, + "traces": null, + "traced": [["U"]], + "tracing": [["S", "M"]], + "traceback": [["M", "S"]], + "traceback's": null, + "tracebacks": null, + "untraced": null, + "Tracee": [["M"]], + "Tracee's": null, + "traceless": [["Y"]], + "tracelessly": null, + "Trace": [["M"]], + "Trace's": null, + "tracepoint": [["S", "M"]], + "tracepoints": null, + "tracepoint's": null, + "tracer": [["M", "S"]], + "tracer's": null, + "tracers": null, + "tracery": [["M", "D", "S"]], + "tracery's": null, + "traceried": null, + "traceries": null, + "trace's": null, + "Tracey": [["M"]], + "Tracey's": null, + "tracheae": null, + "tracheal": [["M"]], + "tracheal's": null, + "trachea": [["M"]], + "trachea's": null, + "tracheotomy": [["S", "M"]], + "tracheotomies": null, + "tracheotomy's": null, + "Tracie": [["M"]], + "Tracie's": null, + "Traci": [["M"]], + "Traci's": null, + "tracings": null, + "tracing's": null, + "trackage": null, + "trackball": [["S"]], + "trackballs": null, + "trackbed": null, + "tracked": [["U"]], + "untracked": null, + "tracker": [["M"]], + "tracker's": null, + "trackless": null, + "tracksuit": [["S", "M"]], + "tracksuits": null, + "tracksuit's": null, + "track": [["S", "Z", "G", "M", "R", "D"]], + "tracks": null, + "trackers": null, + "tracking": null, + "track's": null, + "tractability": [["S", "I"]], + "tractabilities": null, + "intractabilities": null, + "tractable": [["I"]], + "tractably": [["I"]], + "intractably": null, + "tract": [["A", "B", "S"]], + "retractable": null, + "retracts": null, + "tracts": [["C", "E", "F", "K"]], + "Tractarians": null, + "traction": [["K", "S", "C", "E", "M", "A", "F"]], + "protraction": null, + "protractions": null, + "protraction's": null, + "tractions": null, + "detractions": null, + "distractions": null, + "retractions": null, + "contractions": null, + "detraction": null, + "detraction's": null, + "distraction": null, + "distraction's": null, + "traction's": null, + "retraction's": null, + "contraction's": null, + "retraction": null, + "contraction": null, + "tractive": [["K", "F", "E"]], + "protractive": null, + "contractive": null, + "distractive": null, + "tractor": [["F", "K", "M", "A", "S", "C"]], + "contractor": null, + "contractor's": null, + "contractors": null, + "protractor": null, + "protractor's": null, + "protractors": null, + "tractor's": null, + "retractor's": null, + "detractor's": null, + "retractor": null, + "retractors": null, + "tractors": null, + "detractors": null, + "detractor": null, + "tract's": null, + "detracts": null, + "distracts": null, + "contracts": null, + "protracts": null, + "Tracy": [["M"]], + "Tracy's": null, + "trademark": [["G", "S", "M", "D"]], + "trademarking": null, + "trademarks": null, + "trademark's": null, + "trademarked": null, + "trader": [["M"]], + "trader's": null, + "tradesman": [["M"]], + "tradesman's": null, + "tradesmen": null, + "tradespeople": null, + "tradespersons": null, + "trade": [["S", "R", "D", "G", "Z", "M"]], + "trades": null, + "traded": null, + "trading": null, + "traders": null, + "trade's": null, + "tradeswoman": [["M"]], + "tradeswoman's": null, + "tradeswomen": null, + "traditionalism": [["M", "S"]], + "traditionalism's": null, + "traditionalisms": null, + "traditionalistic": null, + "traditionalist": [["M", "S"]], + "traditionalist's": null, + "traditionalists": null, + "traditionalized": null, + "traditionally": null, + "traditional": [["U"]], + "untraditional": null, + "tradition": [["S", "M"]], + "traditions": null, + "tradition's": null, + "traduce": [["D", "R", "S", "G", "Z"]], + "traduced": null, + "traducer": null, + "traduces": null, + "traducing": null, + "traducers": null, + "Trafalgar": [["M"]], + "Trafalgar's": null, + "trafficked": null, + "trafficker": [["M", "S"]], + "trafficker's": null, + "traffickers": null, + "trafficking": [["S"]], + "traffickings": null, + "traffic": [["S", "M"]], + "traffics": null, + "traffic's": null, + "tragedian": [["S", "M"]], + "tragedians": null, + "tragedian's": null, + "tragedienne": [["M", "S"]], + "tragedienne's": null, + "tragediennes": null, + "tragedy": [["M", "S"]], + "tragedy's": null, + "tragedies": null, + "tragically": null, + "tragicomedy": [["S", "M"]], + "tragicomedies": null, + "tragicomedy's": null, + "tragicomic": null, + "tragic": [["S"]], + "tragics": null, + "trailblazer": [["M", "S"]], + "trailblazer's": null, + "trailblazers": null, + "trailblazing": [["S"]], + "trailblazings": null, + "trailer": [["G", "D", "M"]], + "trailering": null, + "trailered": null, + "trailer's": null, + "trails": [["F"]], + "contrails": null, + "trailside": null, + "trail": [["S", "Z", "G", "J", "R", "D"]], + "trailers": null, + "trailing": null, + "trailings": null, + "trailed": null, + "trainable": null, + "train": [["A", "S", "D", "G"]], + "retrain": null, + "retrains": null, + "retrained": null, + "retraining": null, + "trains": null, + "trained": [["U"]], + "training": [["S", "M"]], + "untrained": null, + "trainee": [["M", "S"]], + "trainee's": null, + "trainees": null, + "traineeships": null, + "trainer": [["M", "S"]], + "trainer's": null, + "trainers": null, + "trainings": null, + "training's": null, + "trainman": [["M"]], + "trainman's": null, + "trainmen": null, + "trainspotter": [["S"]], + "trainspotters": null, + "traipse": [["D", "S", "G"]], + "traipsed": null, + "traipses": null, + "traipsing": null, + "trait": [["M", "S"]], + "trait's": null, + "traits": null, + "traitorous": [["Y"]], + "traitorously": null, + "traitor": [["S", "M"]], + "traitors": null, + "traitor's": null, + "Trajan": [["M"]], + "Trajan's": null, + "trajectory": [["M", "S"]], + "trajectory's": null, + "trajectories": null, + "trammed": null, + "trammeled": [["U"]], + "untrammeled": null, + "trammel": [["G", "S", "D"]], + "trammeling": null, + "trammels": null, + "tramming": null, + "tram": [["M", "S"]], + "tram's": null, + "trams": null, + "trample": [["D", "G", "R", "S", "Z"]], + "trampled": null, + "trampling": null, + "trampler": [["M"]], + "tramples": null, + "tramplers": null, + "trampler's": null, + "trampoline": [["G", "M", "S", "D"]], + "trampolining": null, + "trampoline's": null, + "trampolines": null, + "trampolined": null, + "tramp": [["R", "D", "S", "Z", "G"]], + "tramper": null, + "tramped": null, + "tramps": null, + "trampers": null, + "tramping": null, + "tramway": [["M"]], + "tramway's": null, + "trance": [["M", "G", "S", "D"]], + "trance's": null, + "trancing": null, + "trances": null, + "tranced": null, + "tranche": [["S", "M"]], + "tranches": null, + "tranche's": null, + "Tran": [["M"]], + "Tran's": null, + "tranquility": [["S"]], + "tranquilities": null, + "tranquilized": [["U"]], + "untranquilized": null, + "tranquilize": [["J", "G", "Z", "D", "S", "R"]], + "tranquilizings": null, + "tranquilizing": [["Y", "M"]], + "tranquilizers": null, + "tranquilizes": [["A"]], + "tranquilizer": [["M"]], + "tranquilizer's": null, + "retranquilizes": null, + "tranquilizingly": null, + "tranquilizing's": null, + "tranquillize": [["G", "R", "S", "D", "Z"]], + "tranquillizing": null, + "tranquillizer": [["M"]], + "tranquillizes": null, + "tranquillized": null, + "tranquillizers": null, + "tranquillizer's": null, + "tranquilness": [["M"]], + "tranquilness's": null, + "tranquil": [["P", "T", "R", "Y"]], + "tranquilest": null, + "tranquiler": null, + "tranquilly": null, + "transact": [["G", "S", "D"]], + "transacting": null, + "transacts": null, + "transacted": null, + "transactional": null, + "transaction": [["M", "S"]], + "transaction's": null, + "transactions": null, + "transactor": [["S", "M"]], + "transactors": null, + "transactor's": null, + "transalpine": null, + "transaminase": null, + "transatlantic": null, + "Transcaucasia": [["M"]], + "Transcaucasia's": null, + "transceiver": [["S", "M"]], + "transceivers": null, + "transceiver's": null, + "transcendence": [["M", "S"]], + "transcendence's": null, + "transcendences": null, + "transcendentalism": [["S", "M"]], + "transcendentalisms": null, + "transcendentalism's": null, + "transcendentalist": [["S", "M"]], + "transcendentalists": null, + "transcendentalist's": null, + "transcendental": [["Y", "S"]], + "transcendentally": null, + "transcendentals": null, + "transcendent": [["Y"]], + "transcendently": null, + "transcend": [["S", "D", "G"]], + "transcends": null, + "transcended": null, + "transcending": null, + "transconductance": null, + "transcontinental": null, + "transcribe": [["D", "S", "R", "G", "Z"]], + "transcribed": null, + "transcribes": null, + "transcriber": [["M"]], + "transcribing": null, + "transcribers": null, + "transcriber's": null, + "transcription": [["S", "M"]], + "transcriptions": null, + "transcription's": null, + "transcript": [["S", "M"]], + "transcripts": null, + "transcript's": null, + "transcultural": null, + "transducer": [["S", "M"]], + "transducers": null, + "transducer's": null, + "transduction": [["M"]], + "transduction's": null, + "transect": [["D", "S", "G"]], + "transected": null, + "transects": null, + "transecting": null, + "transept": [["S", "M"]], + "transepts": null, + "transept's": null, + "transferability": [["M"]], + "transferability's": null, + "transferal": [["M", "S"]], + "transferal's": null, + "transferals": null, + "transfer": [["B", "S", "M", "D"]], + "transferable": null, + "transfers": null, + "transfer's": null, + "transfered": null, + "transferee": [["M"]], + "transferee's": null, + "transference": [["S", "M"]], + "transferences": null, + "transference's": null, + "transferor": [["M", "S"]], + "transferor's": null, + "transferors": null, + "transferral": [["S", "M"]], + "transferrals": null, + "transferral's": null, + "transferred": null, + "transferrer": [["S", "M"]], + "transferrers": null, + "transferrer's": null, + "transferring": null, + "transfiguration": [["S", "M"]], + "transfigurations": null, + "transfiguration's": null, + "transfigure": [["S", "D", "G"]], + "transfigures": null, + "transfigured": null, + "transfiguring": null, + "transfinite": [["Y"]], + "transfinitely": null, + "transfix": [["S", "D", "G"]], + "transfixes": null, + "transfixed": null, + "transfixing": null, + "transformational": null, + "transformation": [["M", "S"]], + "transformation's": null, + "transformations": null, + "transform": [["D", "R", "Z", "B", "S", "G"]], + "transformed": [["U"]], + "transformer": [["M"]], + "transformers": null, + "transformable": null, + "transforms": null, + "transforming": null, + "untransformed": null, + "transformer's": null, + "transfuse": [["X", "S", "D", "G", "N", "B"]], + "transfusions": null, + "transfuses": null, + "transfused": null, + "transfusing": null, + "transfusion": [["M"]], + "transfusable": null, + "transfusion's": null, + "transgression": [["S", "M"]], + "transgressions": null, + "transgression's": null, + "transgressor": [["S"]], + "transgressors": null, + "transgress": [["V", "G", "S", "D"]], + "transgressive": null, + "transgressing": null, + "transgresses": null, + "transgressed": null, + "trans": [["I"]], + "intrans": null, + "transience": [["S", "M"]], + "transiences": null, + "transience's": null, + "transiency": [["S"]], + "transiencies": null, + "transient": [["Y", "S"]], + "transiently": null, + "transients": null, + "transistorize": [["G", "D", "S"]], + "transistorizing": null, + "transistorized": null, + "transistorizes": null, + "transistor": [["S", "M"]], + "transistors": null, + "transistor's": null, + "Transite": [["M"]], + "Transite's": null, + "transitional": [["Y"]], + "transitionally": null, + "transition": [["M", "D", "G", "S"]], + "transition's": null, + "transitioned": null, + "transitioning": null, + "transitions": null, + "transitivenesses": null, + "transitiveness": [["I", "M"]], + "intransitiveness": null, + "intransitiveness's": null, + "transitiveness's": null, + "transitive": [["P", "I", "Y"]], + "intransitively": null, + "transitively": null, + "transitivity": [["M", "S"]], + "transitivity's": null, + "transitivities": null, + "transitoriness": [["M"]], + "transitoriness's": null, + "transitory": [["P"]], + "transit": [["S", "G", "V", "M", "D"]], + "transits": null, + "transiting": null, + "transit's": null, + "transited": null, + "transl": null, + "translatability": [["M"]], + "translatability's": null, + "translatable": [["U"]], + "untranslatable": null, + "translated": [["A", "U"]], + "retranslated": null, + "untranslated": null, + "translate": [["V", "G", "N", "X", "S", "D", "B"]], + "translative": null, + "translating": null, + "translation": [["M"]], + "translations": null, + "translates": null, + "translational": null, + "translation's": null, + "translator": [["S", "M"]], + "translators": null, + "translator's": null, + "transliterate": [["X", "N", "G", "S", "D"]], + "transliterations": null, + "transliteration": null, + "transliterating": null, + "transliterates": null, + "transliterated": null, + "translucence": [["S", "M"]], + "translucences": null, + "translucence's": null, + "translucency": [["M", "S"]], + "translucency's": null, + "translucencies": null, + "translucent": [["Y"]], + "translucently": null, + "transmigrate": [["X", "N", "G", "S", "D"]], + "transmigrations": null, + "transmigration": null, + "transmigrating": null, + "transmigrates": null, + "transmigrated": null, + "transmissible": null, + "transmission": [["M", "S", "A"]], + "transmission's": null, + "retransmission's": null, + "transmissions": null, + "retransmissions": null, + "retransmission": null, + "transmissive": null, + "transmit": [["A", "S"]], + "retransmit": null, + "retransmits": null, + "transmits": null, + "transmittable": null, + "transmittal": [["S", "M"]], + "transmittals": null, + "transmittal's": null, + "transmittance": [["M", "S"]], + "transmittance's": null, + "transmittances": null, + "transmitted": [["A"]], + "retransmitted": null, + "transmitter": [["S", "M"]], + "transmitters": null, + "transmitter's": null, + "transmitting": [["A"]], + "retransmitting": null, + "transmogrification": [["M"]], + "transmogrification's": null, + "transmogrify": [["G", "X", "D", "S", "N"]], + "transmogrifying": null, + "transmogrifications": null, + "transmogrified": null, + "transmogrifies": null, + "transmutation": [["S", "M"]], + "transmutations": null, + "transmutation's": null, + "transmute": [["G", "B", "S", "D"]], + "transmuting": null, + "transmutable": null, + "transmutes": null, + "transmuted": null, + "transnational": [["S"]], + "transnationals": null, + "transoceanic": null, + "transom": [["S", "M"]], + "transoms": null, + "transom's": null, + "transonic": null, + "transpacific": null, + "transparency": [["M", "S"]], + "transparency's": null, + "transparencies": null, + "transparentness": [["M"]], + "transparentness's": null, + "transparent": [["Y", "P"]], + "transparently": null, + "transpiration": [["S", "M"]], + "transpirations": null, + "transpiration's": null, + "transpire": [["G", "S", "D"]], + "transpiring": null, + "transpires": null, + "transpired": null, + "transplantation": [["S"]], + "transplantations": null, + "transplant": [["G", "R", "D", "B", "S"]], + "transplanting": null, + "transplanter": null, + "transplanted": null, + "transplantable": null, + "transplants": null, + "transpolar": null, + "transponder": [["M", "S"]], + "transponder's": null, + "transponders": null, + "transportability": null, + "transportable": [["U"]], + "untransportable": null, + "transportation": [["S", "M"]], + "transportations": null, + "transportation's": null, + "transport": [["B", "G", "Z", "S", "D", "R"]], + "transporting": null, + "transporters": null, + "transports": null, + "transported": null, + "transporter": null, + "transpose": [["B", "G", "S", "D"]], + "transposable": null, + "transposing": null, + "transposes": null, + "transposed": [["U"]], + "untransposed": null, + "transposition": [["S", "M"]], + "transpositions": null, + "transposition's": null, + "Transputer": [["M"]], + "Transputer's": null, + "transsexualism": [["M", "S"]], + "transsexualism's": null, + "transsexualisms": null, + "transsexual": [["S", "M"]], + "transsexuals": null, + "transsexual's": null, + "transship": [["L", "S"]], + "transshipment": [["S", "M"]], + "transships": null, + "transshipments": null, + "transshipment's": null, + "transshipped": null, + "transshipping": null, + "transubstantiation": [["M", "S"]], + "transubstantiation's": null, + "transubstantiations": null, + "Transvaal": [["M"]], + "Transvaal's": null, + "transversal": [["Y", "M"]], + "transversally": null, + "transversal's": null, + "transverse": [["G", "Y", "D", "S"]], + "transversing": null, + "transversely": null, + "transversed": null, + "transverses": null, + "transvestism": [["S", "M"]], + "transvestisms": null, + "transvestism's": null, + "transvestite": [["S", "M"]], + "transvestites": null, + "transvestite's": null, + "transvestitism": null, + "Transylvania": [["M"]], + "Transylvania's": null, + "trapdoor": [["S"]], + "trapdoors": null, + "trapeze": [["D", "S", "G", "M"]], + "trapezed": null, + "trapezes": null, + "trapezing": null, + "trapeze's": null, + "trapezium": [["M", "S"]], + "trapezium's": null, + "trapeziums": null, + "trapezoidal": null, + "trapezoid": [["M", "S"]], + "trapezoid's": null, + "trapezoids": null, + "trap": [["M", "S"]], + "trap's": null, + "traps": null, + "trappable": [["U"]], + "untrappable": null, + "trapped": null, + "trapper": [["S", "M"]], + "trappers": null, + "trapper's": null, + "trapping": [["S"]], + "trappings": null, + "Trappist": [["M", "S"]], + "Trappist's": null, + "Trappists": null, + "trapshooting": [["S", "M"]], + "trapshootings": null, + "trapshooting's": null, + "trashcan": [["S", "M"]], + "trashcans": null, + "trashcan's": null, + "trashiness": [["S", "M"]], + "trashinesses": null, + "trashiness's": null, + "trash": [["S", "R", "D", "M", "G"]], + "trashes": null, + "trasher": null, + "trashed": null, + "trash's": null, + "trashing": null, + "trashy": [["T", "R", "P"]], + "trashiest": null, + "trashier": null, + "Trastevere": [["M"]], + "Trastevere's": null, + "trauma": [["M", "S"]], + "trauma's": null, + "traumas": null, + "traumatic": null, + "traumatically": null, + "traumatize": [["S", "D", "G"]], + "traumatizes": null, + "traumatized": null, + "traumatizing": null, + "travail": [["S", "M", "D", "G"]], + "travails": null, + "travail's": null, + "travailed": null, + "travailing": null, + "traveled": [["U"]], + "untraveled": null, + "traveler": [["M"]], + "traveler's": null, + "travelog's": null, + "travelogue": [["S"]], + "travelogues": null, + "travel": [["S", "D", "R", "G", "Z", "J"]], + "travels": null, + "traveling": null, + "travelers": null, + "travelings": null, + "Traver": [["M", "S"]], + "Traver's": null, + "Travers": null, + "traversal": [["S", "M"]], + "traversals": null, + "traversal's": null, + "traverse": [["G", "B", "D", "R", "S"]], + "traversing": null, + "traversable": null, + "traversed": null, + "traverser": [["M"]], + "traverses": null, + "traverser's": null, + "travertine": [["M"]], + "travertine's": null, + "travesty": [["S", "D", "G", "M"]], + "travesties": null, + "travestied": null, + "travestying": null, + "travesty's": null, + "Travis": [["M"]], + "Travis's": null, + "Travus": [["M"]], + "Travus's": null, + "trawler": [["M"]], + "trawler's": null, + "trawl": [["R", "D", "M", "S", "Z", "G"]], + "trawled": null, + "trawl's": null, + "trawls": null, + "trawlers": null, + "trawling": null, + "tray": [["S", "M"]], + "trays": null, + "tray's": null, + "treacherousness": [["S", "M"]], + "treacherousnesses": null, + "treacherousness's": null, + "treacherous": [["P", "Y"]], + "treacherously": null, + "treachery": [["S", "M"]], + "treacheries": null, + "treachery's": null, + "treacle": [["D", "S", "G", "M"]], + "treacled": null, + "treacles": null, + "treacling": null, + "treacle's": null, + "treacly": null, + "treader": [["M"]], + "treader's": null, + "treadle": [["G", "D", "S", "M"]], + "treadling": null, + "treadled": null, + "treadles": null, + "treadle's": null, + "treadmill": [["M", "S"]], + "treadmill's": null, + "treadmills": null, + "tread": [["S", "A", "G", "D"]], + "treads": null, + "retreads": null, + "retread": null, + "retreading": null, + "retreaded": null, + "treading": null, + "treaded": null, + "Treadwell": [["M"]], + "Treadwell's": null, + "treas": null, + "treason": [["B", "M", "S"]], + "treasonable": null, + "treason's": null, + "treasons": null, + "treasonous": null, + "treasure": [["D", "R", "S", "Z", "M", "G"]], + "treasured": null, + "treasurer": [["M"]], + "treasures": null, + "treasurers": null, + "treasure's": null, + "treasuring": null, + "treasurer's": null, + "treasurership": null, + "treasury": [["S", "M"]], + "treasuries": null, + "treasury's": null, + "Treasury": [["S", "M"]], + "Treasuries": null, + "Treasury's": null, + "treatable": null, + "treated": [["U"]], + "untreated": null, + "treater": [["S"]], + "treaters": null, + "treatise": [["M", "S"]], + "treatise's": null, + "treatises": null, + "treatment": [["M", "S"]], + "treatment's": null, + "treatments": null, + "treat's": null, + "treat": [["S", "A", "G", "D", "R"]], + "treats": null, + "retreats": null, + "retreat": null, + "retreating": null, + "retreated": null, + "retreater": null, + "treating": null, + "treaty": [["M", "S"]], + "treaty's": null, + "treaties": null, + "treble": [["S", "D", "G"]], + "trebles": null, + "trebled": null, + "trebling": null, + "Treblinka": [["M"]], + "Treblinka's": null, + "treeing": null, + "treeless": null, + "treelike": null, + "tree": [["M", "D", "S"]], + "tree's": null, + "treed": null, + "trees": null, + "treetop": [["S", "M"]], + "treetops": null, + "treetop's": null, + "trefoil": [["S", "M"]], + "trefoils": null, + "trefoil's": null, + "Trefor": [["M"]], + "Trefor's": null, + "trekked": null, + "trekker": [["M", "S"]], + "trekker's": null, + "trekkers": null, + "Trekkie": [["M"]], + "Trekkie's": null, + "trekking": null, + "trek": [["M", "S"]], + "trek's": null, + "treks": null, + "trellis": [["G", "D", "S", "M"]], + "trellising": null, + "trellised": null, + "trellises": null, + "trellis's": null, + "Tremaine": [["M"]], + "Tremaine's": null, + "Tremain": [["M"]], + "Tremain's": null, + "trematode": [["S", "M"]], + "trematodes": null, + "trematode's": null, + "Tremayne": [["M"]], + "Tremayne's": null, + "tremble": [["J", "D", "R", "S", "G"]], + "tremblings": null, + "trembled": null, + "trembler": [["M"]], + "trembles": [["M"]], + "trembling": null, + "trembler's": null, + "trembles's": null, + "trembly": null, + "tremendousness": [["M"]], + "tremendousness's": null, + "tremendous": [["Y", "P"]], + "tremendously": null, + "tremolo": [["M", "S"]], + "tremolo's": null, + "tremolos": null, + "tremor": [["M", "S"]], + "tremor's": null, + "tremors": null, + "tremulousness": [["S", "M"]], + "tremulousnesses": null, + "tremulousness's": null, + "tremulous": [["Y", "P"]], + "tremulously": null, + "trenchancy": [["M", "S"]], + "trenchancy's": null, + "trenchancies": null, + "trenchant": [["Y"]], + "trenchantly": null, + "trencherman": [["M"]], + "trencherman's": null, + "trenchermen": null, + "trencher": [["S", "M"]], + "trenchers": null, + "trencher's": null, + "trench": [["G", "A", "S", "D"]], + "trenching": null, + "retrenching": null, + "retrenches": null, + "retrenched": null, + "trenches": null, + "trenched": null, + "trench's": null, + "trendily": null, + "trendiness": [["S"]], + "trendinesses": null, + "trend": [["S", "D", "M", "G"]], + "trends": null, + "trended": null, + "trend's": null, + "trending": null, + "trendy": [["P", "T", "R", "S"]], + "trendiest": null, + "trendier": null, + "trendies": null, + "Trenna": [["M"]], + "Trenna's": null, + "Trent": [["M"]], + "Trent's": null, + "Trenton": [["M"]], + "Trenton's": null, + "trepanned": null, + "trepidation": [["M", "S"]], + "trepidation's": null, + "trepidations": null, + "Tresa": [["M"]], + "Tresa's": null, + "Trescha": [["M"]], + "Trescha's": null, + "trespasser": [["M"]], + "trespasser's": null, + "trespass": [["Z", "R", "S", "D", "G"]], + "trespassers": null, + "trespasses": null, + "trespassed": null, + "trespassing": null, + "Tressa": [["M"]], + "Tressa's": null, + "tressed": [["E"]], + "distressed": null, + "tresses": [["E"]], + "distresses": null, + "tressing": [["E"]], + "tress": [["M", "S", "D", "G"]], + "tress's": null, + "trestle": [["M", "S"]], + "trestle's": null, + "trestles": null, + "Trevar": [["M"]], + "Trevar's": null, + "Trevelyan": [["M"]], + "Trevelyan's": null, + "Trever": [["M"]], + "Trever's": null, + "Trevino": [["M"]], + "Trevino's": null, + "Trevor": [["M"]], + "Trevor's": null, + "Trev": [["R", "M"]], + "Trev's": null, + "Trey": [["M"]], + "Trey's": null, + "trey": [["M", "S"]], + "trey's": null, + "treys": null, + "triableness": [["M"]], + "triableness's": null, + "triable": [["P"]], + "triadic": null, + "triad": [["M", "S"]], + "triad's": null, + "triads": null, + "triage": [["S", "D", "M", "G"]], + "triages": null, + "triaged": null, + "triage's": null, + "triaging": null, + "trial": [["A", "S", "M"]], + "retrial": null, + "retrials": null, + "retrial's": null, + "trials": null, + "trial's": null, + "trialization": null, + "trialled": null, + "trialling": null, + "triamcinolone": null, + "triangle": [["S", "M"]], + "triangles": null, + "triangle's": null, + "triangulable": null, + "triangularization": [["S"]], + "triangularizations": null, + "triangular": [["Y"]], + "triangularly": null, + "triangulate": [["Y", "G", "N", "X", "S", "D"]], + "triangulately": null, + "triangulating": null, + "triangulation": [["M"]], + "triangulations": null, + "triangulates": null, + "triangulated": null, + "triangulation's": null, + "Triangulum": [["M"]], + "Triangulum's": null, + "Trianon": [["M"]], + "Trianon's": null, + "Triassic": null, + "triathlon": [["S"]], + "triathlons": null, + "triatomic": null, + "tribalism": [["M", "S"]], + "tribalism's": null, + "tribalisms": null, + "tribal": [["Y"]], + "tribally": null, + "tribe": [["M", "S"]], + "tribe's": null, + "tribes": null, + "tribesman": [["M"]], + "tribesman's": null, + "tribesmen": null, + "tribeswoman": null, + "tribeswomen": null, + "tribulate": [["N", "X"]], + "tribulation": [["M"]], + "tribulations": null, + "tribulation's": null, + "tribunal": [["M", "S"]], + "tribunal's": null, + "tribunals": null, + "tribune": [["S", "M"]], + "tribunes": null, + "tribune's": null, + "tributary": [["M", "S"]], + "tributary's": null, + "tributaries": null, + "tribute": [["E", "G", "S", "F"]], + "tributing": null, + "contributing": null, + "tributes": null, + "contributes": null, + "tribute's": null, + "trice": [["G", "S", "D", "M"]], + "tricing": null, + "trices": null, + "triced": null, + "trice's": null, + "tricentennial": [["S"]], + "tricentennials": null, + "triceps": [["S", "M"]], + "tricepses": null, + "triceps's": null, + "triceratops": [["M"]], + "triceratops's": null, + "trichinae": null, + "trichina": [["M"]], + "trichina's": null, + "trichinoses": null, + "trichinosis": [["M"]], + "trichinosis's": null, + "trichloroacetic": null, + "trichloroethane": null, + "trichotomy": [["M"]], + "trichotomy's": null, + "trichromatic": null, + "Tricia": [["M"]], + "Tricia's": null, + "trickery": [["M", "S"]], + "trickery's": null, + "trickeries": null, + "trick": [["G", "M", "S", "R", "D"]], + "tricking": null, + "trick's": null, + "tricks": null, + "tricker": null, + "tricked": null, + "trickily": null, + "trickiness": [["S", "M"]], + "trickinesses": null, + "trickiness's": null, + "trickle": [["D", "S", "G"]], + "trickled": null, + "trickles": null, + "trickling": null, + "trickster": [["M", "S"]], + "trickster's": null, + "tricksters": null, + "tricky": [["R", "P", "T"]], + "trickier": null, + "trickiest": null, + "tricolor": [["S", "M", "D"]], + "tricolors": null, + "tricolor's": null, + "tricolored": null, + "tricycle": [["S", "D", "M", "G"]], + "tricycles": null, + "tricycled": null, + "tricycle's": null, + "tricycling": null, + "trident": [["S", "M"]], + "tridents": null, + "trident's": null, + "tridiagonal": null, + "tried": [["U", "A"]], + "untried": null, + "retried": null, + "triennial": [["S", "Y"]], + "triennials": null, + "triennially": null, + "trier": [["A", "S"]], + "retrier": null, + "retriers": null, + "triers": null, + "trier's": null, + "tries": [["A"]], + "retries": null, + "Trieste": [["M"]], + "Trieste's": null, + "triffid": [["S"]], + "triffids": null, + "trifle": [["M", "Z", "G", "J", "S", "R", "D"]], + "trifle's": null, + "triflers": null, + "trifling": null, + "triflings": null, + "trifles": null, + "trifler": [["M"]], + "trifled": null, + "trifler's": null, + "trifluoride": [["M"]], + "trifluoride's": null, + "trifocals": null, + "trigged": null, + "trigger": [["G", "S", "D", "M"]], + "triggering": null, + "triggers": null, + "triggered": null, + "trigger's": null, + "triggest": null, + "trigging": null, + "triglyceride": [["M", "S"]], + "triglyceride's": null, + "triglycerides": null, + "trigonal": [["Y"]], + "trigonally": null, + "trigonometric": null, + "trigonometrical": null, + "trigonometry": [["M", "S"]], + "trigonometry's": null, + "trigonometries": null, + "trigram": [["S"]], + "trigrams": null, + "trig": [["S"]], + "trigs": null, + "trihedral": null, + "trike": [["G", "M", "S", "D"]], + "triking": null, + "trike's": null, + "trikes": null, + "triked": null, + "trilateral": [["S"]], + "trilaterals": null, + "trilby": [["S", "M"]], + "trilbies": null, + "trilby's": null, + "trilingual": null, + "trillion": [["S", "M", "H"]], + "trillions": null, + "trillion's": null, + "trillionth": [["M"]], + "trillionth's": null, + "trillionths": null, + "trillium": [["S", "M"]], + "trilliums": null, + "trillium's": null, + "trill": [["R", "D", "M", "G", "S"]], + "triller": null, + "trilled": null, + "trill's": null, + "trilling": null, + "trills": null, + "trilobite": [["M", "S"]], + "trilobite's": null, + "trilobites": null, + "trilogy": [["M", "S"]], + "trilogy's": null, + "trilogies": null, + "trimaran": [["M", "S"]], + "trimaran's": null, + "trimarans": null, + "Trimble": [["M"]], + "Trimble's": null, + "trimer": [["M"]], + "trimer's": null, + "trimester": [["M", "S"]], + "trimester's": null, + "trimesters": null, + "trimmed": [["U"]], + "untrimmed": null, + "trimmer": [["M", "S"]], + "trimmer's": null, + "trimmers": null, + "trimmest": null, + "trimming": [["M", "S"]], + "trimming's": null, + "trimmings": null, + "trimness": [["S"]], + "trimnesses": null, + "trimodal": null, + "trimonthly": null, + "trim": [["P", "S", "Y", "R"]], + "trims": null, + "trimly": null, + "Trimurti": [["M"]], + "Trimurti's": null, + "Trina": [["M"]], + "Trina's": null, + "Trinidad": [["M"]], + "Trinidad's": null, + "trinitarian": [["S"]], + "trinitarians": null, + "trinitrotoluene": [["S", "M"]], + "trinitrotoluenes": null, + "trinitrotoluene's": null, + "trinity": [["M", "S"]], + "trinity's": null, + "trinities": null, + "Trinity": [["M", "S"]], + "Trinity's": null, + "Trinities": null, + "trinketer": [["M"]], + "trinketer's": null, + "trinket": [["M", "R", "D", "S", "G"]], + "trinket's": null, + "trinketed": null, + "trinkets": null, + "trinketing": null, + "triode": [["M", "S"]], + "triode's": null, + "triodes": null, + "trio": [["S", "M"]], + "trios": null, + "trio's": null, + "trioxide": [["M"]], + "trioxide's": null, + "tripartite": [["N"]], + "tripartition": [["M"]], + "tripartition's": null, + "tripe": [["M", "S"]], + "tripe's": null, + "tripes": null, + "triphenylarsine": null, + "triphenylphosphine": null, + "triphenylstibine": null, + "triphosphopyridine": null, + "triple": [["G", "S", "D"]], + "tripling": null, + "triples": null, + "tripled": null, + "triplet": [["S", "M"]], + "triplets": null, + "triplet's": null, + "triplex": [["S"]], + "triplexes": null, + "triplicate": [["S", "D", "G"]], + "triplicates": null, + "triplicated": null, + "triplicating": null, + "triplication": [["M"]], + "triplication's": null, + "triply": [["G", "D", "S", "N"]], + "triplying": null, + "triplied": null, + "triplies": null, + "Trip": [["M"]], + "Trip's": null, + "tripodal": null, + "tripod": [["M", "S"]], + "tripod's": null, + "tripods": null, + "tripoli": [["M"]], + "tripoli's": null, + "Tripoli": [["M"]], + "Tripoli's": null, + "tripolyphosphate": null, + "tripos": [["S", "M"]], + "triposes": null, + "tripos's": null, + "tripped": null, + "Trippe": [["M"]], + "Trippe's": null, + "tripper": [["M", "S"]], + "tripper's": null, + "trippers": null, + "tripping": [["Y"]], + "trippingly": null, + "Tripp": [["M"]], + "Tripp's": null, + "trip": [["S", "M", "Y"]], + "trips": null, + "trip's": null, + "triptych": [["M"]], + "triptych's": null, + "triptychs": null, + "tripwire": [["M", "S"]], + "tripwire's": null, + "tripwires": null, + "trireme": [["S", "M"]], + "triremes": null, + "trireme's": null, + "Tris": null, + "trisect": [["G", "S", "D"]], + "trisecting": null, + "trisects": null, + "trisected": null, + "trisection": [["S"]], + "trisections": null, + "trisector": null, + "Trisha": [["M"]], + "Trisha's": null, + "Trish": [["M"]], + "Trish's": null, + "trisodium": null, + "Trista": [["M"]], + "Trista's": null, + "Tristam": [["M"]], + "Tristam's": null, + "Tristan": [["M"]], + "Tristan's": null, + "tristate": null, + "trisyllable": [["M"]], + "trisyllable's": null, + "tritely": [["F"]], + "contritely": null, + "triteness": [["S", "F"]], + "tritenesses": null, + "contritenesses": null, + "trite": [["S", "R", "P", "T", "Y"]], + "trites": null, + "triter": null, + "tritest": null, + "tritium": [["M", "S"]], + "tritium's": null, + "tritiums": null, + "triton": [["M"]], + "triton's": null, + "Triton": [["M"]], + "Triton's": null, + "triumphal": null, + "triumphalism": null, + "triumphant": [["Y"]], + "triumphantly": null, + "triumph": [["G", "M", "D"]], + "triumphing": null, + "triumph's": null, + "triumphed": null, + "triumphs": null, + "triumvirate": [["M", "S"]], + "triumvirate's": null, + "triumvirates": null, + "triumvir": [["M", "S"]], + "triumvir's": null, + "triumvirs": null, + "triune": null, + "trivalent": null, + "trivet": [["S", "M"]], + "trivets": null, + "trivet's": null, + "trivia": null, + "triviality": [["M", "S"]], + "triviality's": null, + "trivialities": null, + "trivialization": [["M", "S"]], + "trivialization's": null, + "trivializations": null, + "trivialize": [["D", "S", "G"]], + "trivialized": null, + "trivializes": null, + "trivializing": null, + "trivial": [["Y"]], + "trivially": null, + "trivium": [["M"]], + "trivium's": null, + "Trixie": [["M"]], + "Trixie's": null, + "Trixi": [["M"]], + "Trixi's": null, + "Trix": [["M"]], + "Trix's": null, + "Trixy": [["M"]], + "Trixy's": null, + "Trobriand": [["M"]], + "Trobriand's": null, + "trochaic": [["S"]], + "trochaics": null, + "trochee": [["S", "M"]], + "trochees": null, + "trochee's": null, + "trod": [["A", "U"]], + "retrod": null, + "untrod": null, + "trodden": [["U", "A"]], + "untrodden": null, + "retrodden": null, + "trodes": null, + "troff": [["M", "R"]], + "troff's": null, + "troffer": null, + "troglodyte": [["M", "S"]], + "troglodyte's": null, + "troglodytes": null, + "troika": [["S", "M"]], + "troikas": null, + "troika's": null, + "Trojan": [["M", "S"]], + "Trojan's": null, + "Trojans": null, + "troll": [["D", "M", "S", "G"]], + "trolled": [["F"]], + "troll's": null, + "trolls": null, + "trolling": [["F"]], + "trolleybus": [["S"]], + "trolleybuses": null, + "trolley": [["S", "G", "M", "D"]], + "trolleys": null, + "trolleying": null, + "trolley's": null, + "trolleyed": null, + "trollish": null, + "Trollope": [["M"]], + "Trollope's": null, + "trollop": [["G", "S", "M", "D"]], + "trolloping": null, + "trollops": null, + "trollop's": null, + "trolloped": null, + "trolly's": null, + "trombone": [["M", "S"]], + "trombone's": null, + "trombones": null, + "trombonist": [["S", "M"]], + "trombonists": null, + "trombonist's": null, + "tromp": [["D", "S", "G"]], + "tromped": null, + "tromps": null, + "tromping": null, + "Trondheim": [["M"]], + "Trondheim's": null, + "trooper": [["M"]], + "trooper's": null, + "troopship": [["S", "M"]], + "troopships": null, + "troopship's": null, + "troop": [["S", "R", "D", "M", "Z", "G"]], + "troops": null, + "trooped": null, + "troop's": null, + "troopers": null, + "trooping": null, + "trope": [["S", "M"]], + "tropes": null, + "trope's": null, + "Tropez": [["M"]], + "Tropez's": null, + "trophic": null, + "trophy": [["M", "G", "D", "S"]], + "trophy's": null, + "trophying": null, + "trophied": null, + "trophies": null, + "tropical": [["S", "Y"]], + "tropicals": null, + "tropically": null, + "tropic": [["M", "S"]], + "tropic's": null, + "tropics": null, + "tropism": [["S", "M"]], + "tropisms": null, + "tropism's": null, + "tropocollagen": null, + "troposphere": [["M", "S"]], + "troposphere's": null, + "tropospheres": null, + "tropospheric": null, + "troth": [["G", "D", "M"]], + "trothing": null, + "trothed": null, + "troth's": null, + "troths": null, + "trot": [["S"]], + "trots": null, + "Trotsky": [["M"]], + "Trotsky's": null, + "trotted": null, + "trotter": [["S", "M"]], + "trotters": null, + "trotter's": null, + "trotting": null, + "troubadour": [["S", "M"]], + "troubadours": null, + "troubadour's": null, + "troubled": [["U"]], + "untroubled": null, + "trouble": [["G", "D", "R", "S", "M"]], + "troubling": null, + "troubler": [["M"]], + "troubles": null, + "trouble's": null, + "troublemaker": [["M", "S"]], + "troublemaker's": null, + "troublemakers": null, + "troubler's": null, + "troubleshooter": [["M"]], + "troubleshooter's": null, + "troubleshoot": [["S", "R", "D", "Z", "G"]], + "troubleshoots": null, + "troubleshooted": null, + "troubleshooters": null, + "troubleshooting": null, + "troubleshot": null, + "troublesomeness": [["M"]], + "troublesomeness's": null, + "troublesome": [["Y", "P"]], + "troublesomely": null, + "trough": [["M"]], + "trough's": null, + "troughs": null, + "trounce": [["G", "Z", "D", "R", "S"]], + "trouncing": null, + "trouncers": null, + "trounced": null, + "trouncer": [["M"]], + "trounces": null, + "trouncer's": null, + "troupe": [["M", "Z", "G", "S", "R", "D"]], + "troupe's": null, + "troupers": null, + "trouping": null, + "troupes": null, + "trouper": [["M"]], + "trouped": null, + "trouper's": null, + "trouser": [["D", "M", "G", "S"]], + "trousered": null, + "trouser's": null, + "trousering": null, + "trousers": null, + "trousseau": [["M"]], + "trousseau's": null, + "trousseaux": null, + "Troutman": [["M"]], + "Troutman's": null, + "trout": [["S", "M"]], + "trouts": null, + "trout's": null, + "trove": [["S", "M"]], + "troves": null, + "trove's": null, + "troweler": [["M"]], + "troweler's": null, + "trowel": [["S", "M", "D", "R", "G", "Z"]], + "trowels": null, + "trowel's": null, + "troweled": null, + "troweling": null, + "trowelers": null, + "trow": [["S", "G", "D"]], + "trows": null, + "trowing": null, + "trowed": null, + "Troyes": null, + "Troy": [["M"]], + "Troy's": null, + "troy": [["S"]], + "troys": null, + "Trstram": [["M"]], + "Trstram's": null, + "truancy": [["M", "S"]], + "truancy's": null, + "truancies": null, + "truant": [["S", "M", "D", "G"]], + "truants": null, + "truant's": null, + "truanted": null, + "truanting": null, + "truce": [["S", "D", "G", "M"]], + "truces": null, + "truced": null, + "trucing": null, + "truce's": null, + "Truckee": [["M"]], + "Truckee's": null, + "trucker": [["M"]], + "trucker's": null, + "trucking": [["M"]], + "trucking's": null, + "truckle": [["G", "D", "S"]], + "truckling": null, + "truckled": null, + "truckles": null, + "truckload": [["M", "S"]], + "truckload's": null, + "truckloads": null, + "truck": [["S", "Z", "G", "M", "R", "D", "J"]], + "trucks": null, + "truckers": null, + "truck's": null, + "trucked": null, + "truckings": null, + "truculence": [["S", "M"]], + "truculences": null, + "truculence's": null, + "truculent": [["Y"]], + "truculently": null, + "Truda": [["M"]], + "Truda's": null, + "Trudeau": [["M"]], + "Trudeau's": null, + "Trude": [["M"]], + "Trude's": null, + "Trudey": [["M"]], + "Trudey's": null, + "trudge": [["S", "R", "D", "G"]], + "trudges": null, + "trudger": null, + "trudged": null, + "trudging": null, + "Trudie": [["M"]], + "Trudie's": null, + "Trudi": [["M"]], + "Trudi's": null, + "Trudy": [["M"]], + "Trudy's": null, + "true": [["D", "R", "S", "P", "T", "G"]], + "trued": null, + "truer": [["U"]], + "trues": null, + "trueness": [["M"]], + "truest": [["U"]], + "truing": null, + "truelove": [["M", "S"]], + "truelove's": null, + "trueloves": null, + "Trueman": [["M"]], + "Trueman's": null, + "trueness's": null, + "untruer": null, + "untruest": null, + "truffle": [["M", "S"]], + "truffle's": null, + "truffles": null, + "truism": [["S", "M"]], + "truisms": null, + "truism's": null, + "Trujillo": [["M"]], + "Trujillo's": null, + "Trula": [["M"]], + "Trula's": null, + "truly": [["U"]], + "untruly": null, + "Trumaine": [["M"]], + "Trumaine's": null, + "Truman": [["M"]], + "Truman's": null, + "Trumann": [["M"]], + "Trumann's": null, + "Trumbull": [["M"]], + "Trumbull's": null, + "trump": [["D", "M", "S", "G"]], + "trumped": null, + "trump's": null, + "trumps": null, + "trumping": null, + "trumpery": [["S", "M"]], + "trumperies": null, + "trumpery's": null, + "trumpeter": [["M"]], + "trumpeter's": null, + "trumpet": [["M", "D", "R", "Z", "G", "S"]], + "trumpet's": null, + "trumpeted": null, + "trumpeters": null, + "trumpeting": null, + "trumpets": null, + "Trump": [["M"]], + "Trump's": null, + "truncate": [["N", "G", "D", "S", "X"]], + "truncation": [["M"]], + "truncating": null, + "truncated": null, + "truncates": null, + "truncations": null, + "truncation's": null, + "truncheon": [["M", "D", "S", "G"]], + "truncheon's": null, + "truncheoned": null, + "truncheons": null, + "truncheoning": null, + "trundle": [["G", "Z", "D", "S", "R"]], + "trundling": null, + "trundlers": null, + "trundled": null, + "trundles": null, + "trundler": [["M"]], + "trundler's": null, + "trunk": [["G", "S", "M", "D"]], + "trunking": null, + "trunks": null, + "trunk's": null, + "trunked": null, + "trunnion": [["S", "M"]], + "trunnions": null, + "trunnion's": null, + "trusser": [["M"]], + "trusser's": null, + "trussing": [["M"]], + "trussing's": null, + "truss": [["S", "R", "D", "G"]], + "trusses": null, + "trussed": null, + "trusted": [["E", "U"]], + "distrusted": null, + "untrusted": null, + "trusteeing": null, + "trustee": [["M", "D", "S"]], + "trustee's": null, + "trusteed": null, + "trustees": null, + "trusteeship": [["S", "M"]], + "trusteeships": null, + "trusteeship's": null, + "truster": [["M"]], + "truster's": null, + "trustful": [["E", "Y"]], + "distrustful": null, + "distrustfully": null, + "trustfully": null, + "trustfulness": [["S", "M"]], + "trustfulnesses": null, + "trustfulness's": null, + "trustiness": [["M"]], + "trustiness's": null, + "trusting": [["Y"]], + "trustingly": null, + "trust": [["R", "D", "M", "S", "G"]], + "trust's": null, + "trusts": [["E"]], + "distrusts": null, + "trustworthier": null, + "trustworthiest": null, + "trustworthiness": [["M", "S"]], + "trustworthiness's": null, + "trustworthinesses": null, + "trustworthy": [["U", "P"]], + "untrustworthy": null, + "untrustworthiness": null, + "trusty": [["P", "T", "M", "S", "R"]], + "trustiest": null, + "trusty's": null, + "trusties": null, + "trustier": null, + "Truth": null, + "truthfulness": [["U", "S"]], + "untruthfulness": [["M"]], + "untruthfulnesses": null, + "truthfulnesses": null, + "truthful": [["U", "Y", "P"]], + "untruthful": null, + "untruthfully": null, + "truthfully": null, + "truths": [["U"]], + "untruths": null, + "truth": [["U", "M"]], + "untruth": null, + "untruth's": null, + "truth's": null, + "TRW": null, + "trying": [["Y"]], + "tryingly": null, + "try": [["J", "G", "D", "R", "S", "Z"]], + "tryings": null, + "tryout": [["M", "S"]], + "tryout's": null, + "tryouts": null, + "trypsin": [["M"]], + "trypsin's": null, + "tryst": [["G", "D", "M", "S"]], + "trysting": null, + "trysted": null, + "tryst's": null, + "trysts": null, + "ts": null, + "T's": null, + "tsarevich": null, + "tsarina's": null, + "tsarism": [["M"]], + "tsarism's": null, + "tsarist": null, + "tsetse": [["S"]], + "tsetses": null, + "Tsimshian": [["M"]], + "Tsimshian's": null, + "Tsiolkovsky": [["M"]], + "Tsiolkovsky's": null, + "Tsitsihar": [["M"]], + "Tsitsihar's": null, + "tsp": null, + "tsunami": [["M", "S"]], + "tsunami's": null, + "tsunamis": null, + "Tsunematsu": [["M"]], + "Tsunematsu's": null, + "Tswana": [["M"]], + "Tswana's": null, + "TTL": null, + "tty": [["M"]], + "tty's": null, + "ttys": null, + "Tuamotu": [["M"]], + "Tuamotu's": null, + "Tuareg": [["M"]], + "Tuareg's": null, + "tubae": null, + "tubal": null, + "tuba": [["S", "M"]], + "tubas": null, + "tuba's": null, + "tubbed": null, + "tubbing": null, + "tubby": [["T", "R"]], + "tubbiest": null, + "tubbier": null, + "tubeless": null, + "tubercle": [["M", "S"]], + "tubercle's": null, + "tubercles": null, + "tubercular": [["S"]], + "tuberculars": null, + "tuberculin": [["M", "S"]], + "tuberculin's": null, + "tuberculins": null, + "tuberculoses": null, + "tuberculosis": [["M"]], + "tuberculosis's": null, + "tuberculous": null, + "tuber": [["M"]], + "tuber's": null, + "tuberose": [["S", "M"]], + "tuberoses": null, + "tuberose's": null, + "tuberous": null, + "tube": [["S", "M"]], + "tubes": null, + "tube's": null, + "tubing": [["M"]], + "tubing's": null, + "tub": [["J", "M", "D", "R", "S", "Z", "G"]], + "tubings": null, + "tub's": null, + "tubed": null, + "tubs": null, + "tubers": null, + "Tubman": [["M"]], + "Tubman's": null, + "tubular": [["Y"]], + "tubularly": null, + "tubule": [["S", "M"]], + "tubules": null, + "tubule's": null, + "tucker": [["G", "D", "M"]], + "tuckering": null, + "tuckered": null, + "tucker's": null, + "Tucker": [["M"]], + "Tucker's": null, + "tuck": [["G", "Z", "S", "R", "D"]], + "tucking": null, + "tuckers": null, + "tucks": null, + "tucked": null, + "Tuckie": [["M"]], + "Tuckie's": null, + "Tuck": [["R", "M"]], + "Tuck's": null, + "Tucky": [["M"]], + "Tucky's": null, + "Tucson": [["M"]], + "Tucson's": null, + "Tucuman": [["M"]], + "Tucuman's": null, + "Tudor": [["M", "S"]], + "Tudor's": null, + "Tudors": null, + "Tue": [["S"]], + "Tues": null, + "Tuesday": [["S", "M"]], + "Tuesdays": null, + "Tuesday's": null, + "tufter": [["M"]], + "tufter's": null, + "tuft": [["G", "Z", "S", "M", "R", "D"]], + "tufting": [["M"]], + "tufters": null, + "tufts": null, + "tuft's": null, + "tufted": null, + "tufting's": null, + "tugboat": [["M", "S"]], + "tugboat's": null, + "tugboats": null, + "tugged": null, + "tugging": null, + "tug": [["S"]], + "tugs": null, + "tuition": [["I", "S", "M"]], + "intuition": null, + "intuitions": null, + "intuition's": null, + "tuitions": null, + "tuition's": null, + "Tulane": [["M"]], + "Tulane's": null, + "tularemia": [["S"]], + "tularemias": null, + "tulip": [["S", "M"]], + "tulips": null, + "tulip's": null, + "tulle": [["S", "M"]], + "tulles": null, + "tulle's": null, + "Tulley": [["M"]], + "Tulley's": null, + "Tull": [["M"]], + "Tull's": null, + "Tully": [["M"]], + "Tully's": null, + "Tulsa": [["M"]], + "Tulsa's": null, + "tum": null, + "tumbledown": null, + "tumbler": [["M"]], + "tumbler's": null, + "tumbleweed": [["M", "S"]], + "tumbleweed's": null, + "tumbleweeds": null, + "tumble": [["Z", "G", "R", "S", "D", "J"]], + "tumblers": null, + "tumbling": null, + "tumbles": null, + "tumbled": null, + "tumblings": null, + "tumbrel": [["S", "M"]], + "tumbrels": null, + "tumbrel's": null, + "tumescence": [["S"]], + "tumescences": null, + "tumescent": null, + "tumidity": [["M", "S"]], + "tumidity's": null, + "tumidities": null, + "tumid": [["Y"]], + "tumidly": null, + "tummy": [["S", "M"]], + "tummies": null, + "tummy's": null, + "tumor": [["M", "D", "S"]], + "tumor's": null, + "tumored": null, + "tumors": null, + "tumorous": null, + "Tums": [["M"]], + "Tums's": null, + "tumult": [["S", "G", "M", "D"]], + "tumults": null, + "tumulting": null, + "tumult's": null, + "tumulted": null, + "tumultuousness": [["M"]], + "tumultuousness's": null, + "tumultuous": [["P", "Y"]], + "tumultuously": null, + "tumulus": [["M"]], + "tumulus's": null, + "tunableness": [["M"]], + "tunableness's": null, + "tunable": [["P"]], + "tuna": [["S", "M"]], + "tunas": null, + "tuna's": null, + "tundra": [["S", "M"]], + "tundras": null, + "tundra's": null, + "tun": [["D", "R", "J", "Z", "G", "B", "S"]], + "tuned": null, + "tuner": [["M"]], + "tunings": null, + "tuners": null, + "tuning": [["A"]], + "tuns": null, + "tune": [["C", "S", "D", "G"]], + "detune": null, + "detunes": null, + "detuned": null, + "detuning": null, + "tunes": null, + "tunefulness": [["M", "S"]], + "tunefulness's": null, + "tunefulnesses": null, + "tuneful": [["Y", "P"]], + "tunefully": null, + "tuneless": [["Y"]], + "tunelessly": null, + "tuner's": null, + "tune's": null, + "tuneup": [["S"]], + "tuneups": null, + "tung": null, + "tungstate": [["M"]], + "tungstate's": null, + "tungsten": [["S", "M"]], + "tungstens": null, + "tungsten's": null, + "Tunguska": [["M"]], + "Tunguska's": null, + "Tungus": [["M"]], + "Tungus's": null, + "tunic": [["M", "S"]], + "tunic's": null, + "tunics": null, + "retuning": null, + "tuning's": null, + "Tunisia": [["M"]], + "Tunisia's": null, + "Tunisian": [["S"]], + "Tunisians": null, + "Tunis": [["M"]], + "Tunis's": null, + "tunned": null, + "tunneler": [["M"]], + "tunneler's": null, + "tunnel": [["M", "R", "D", "S", "J", "G", "Z"]], + "tunnel's": null, + "tunneled": null, + "tunnels": null, + "tunnelings": null, + "tunneling": null, + "tunnelers": null, + "tunning": null, + "tunny": [["S", "M"]], + "tunnies": null, + "tunny's": null, + "tupelo": [["M"]], + "tupelo's": null, + "Tupi": [["M"]], + "Tupi's": null, + "tuple": [["S", "M"]], + "tuples": null, + "tuple's": null, + "tuppence": [["M"]], + "tuppence's": null, + "Tupperware": null, + "Tupungato": [["M"]], + "Tupungato's": null, + "turban": [["S", "D", "M"]], + "turbans": null, + "turbaned": null, + "turban's": null, + "turbid": null, + "turbidity": [["S", "M"]], + "turbidities": null, + "turbidity's": null, + "turbinate": [["S", "D"]], + "turbinates": null, + "turbinated": null, + "turbine": [["S", "M"]], + "turbines": null, + "turbine's": null, + "turbocharged": null, + "turbocharger": [["S", "M"]], + "turbochargers": null, + "turbocharger's": null, + "turbofan": [["M", "S"]], + "turbofan's": null, + "turbofans": null, + "turbojet": [["M", "S"]], + "turbojet's": null, + "turbojets": null, + "turboprop": [["M", "S"]], + "turboprop's": null, + "turboprops": null, + "turbo": [["S", "M"]], + "turbos": null, + "turbo's": null, + "turbot": [["M", "S"]], + "turbot's": null, + "turbots": null, + "turbulence": [["S", "M"]], + "turbulences": null, + "turbulence's": null, + "turbulent": [["Y"]], + "turbulently": null, + "turd": [["M", "S"]], + "turd's": null, + "turds": null, + "tureen": [["M", "S"]], + "tureen's": null, + "tureens": null, + "turf": [["D", "G", "S", "M"]], + "turfed": null, + "turfing": null, + "turfs": null, + "turf's": null, + "turfy": [["R", "T"]], + "turfier": null, + "turfiest": null, + "Turgenev": [["M"]], + "Turgenev's": null, + "turgidity": [["S", "M"]], + "turgidities": null, + "turgidity's": null, + "turgidness": [["M"]], + "turgidness's": null, + "turgid": [["P", "Y"]], + "turgidly": null, + "Turing": [["M"]], + "Turing's": null, + "Turin": [["M"]], + "Turin's": null, + "Turkestan": [["M"]], + "Turkestan's": null, + "Turkey": [["M"]], + "Turkey's": null, + "turkey": [["S", "M"]], + "turkeys": null, + "turkey's": null, + "Turkic": [["S", "M"]], + "Turkics": null, + "Turkic's": null, + "Turkish": null, + "Turkmenistan": [["M"]], + "Turkmenistan's": null, + "turk": [["S"]], + "turks": null, + "Turk": [["S", "M"]], + "Turks": null, + "Turk's": null, + "turmeric": [["M", "S"]], + "turmeric's": null, + "turmerics": null, + "turmoil": [["S", "D", "M", "G"]], + "turmoils": null, + "turmoiled": null, + "turmoil's": null, + "turmoiling": null, + "turnabout": [["S", "M"]], + "turnabouts": null, + "turnabout's": null, + "turnaround": [["M", "S"]], + "turnaround's": null, + "turnarounds": null, + "turn": [["A", "Z", "G", "R", "D", "B", "S"]], + "return": null, + "returners": null, + "returning": null, + "returner": null, + "returns": null, + "turners": null, + "turning": [["M", "S"]], + "turner": [["M"]], + "turned": [["U"]], + "turnable": null, + "turns": null, + "turnbuckle": [["S", "M"]], + "turnbuckles": null, + "turnbuckle's": null, + "turncoat": [["S", "M"]], + "turncoats": null, + "turncoat's": null, + "unturned": null, + "turner's": null, + "Turner": [["M"]], + "Turner's": null, + "turning's": null, + "turnings": null, + "turnip": [["S", "M", "D", "G"]], + "turnips": null, + "turnip's": null, + "turniped": null, + "turniping": null, + "turnkey": [["M", "S"]], + "turnkey's": null, + "turnkeys": null, + "turnoff": [["M", "S"]], + "turnoff's": null, + "turnoffs": null, + "turnout": [["M", "S"]], + "turnout's": null, + "turnouts": null, + "turnover": [["S", "M"]], + "turnovers": null, + "turnover's": null, + "turnpike": [["M", "S"]], + "turnpike's": null, + "turnpikes": null, + "turnround": [["M", "S"]], + "turnround's": null, + "turnrounds": null, + "turnstile": [["S", "M"]], + "turnstiles": null, + "turnstile's": null, + "turnstone": [["M"]], + "turnstone's": null, + "turntable": [["S", "M"]], + "turntables": null, + "turntable's": null, + "turpentine": [["G", "M", "S", "D"]], + "turpentining": null, + "turpentine's": null, + "turpentines": null, + "turpentined": null, + "Turpin": [["M"]], + "Turpin's": null, + "turpitude": [["S", "M"]], + "turpitudes": null, + "turpitude's": null, + "turquoise": [["S", "M"]], + "turquoises": null, + "turquoise's": null, + "turret": [["S", "M", "D"]], + "turrets": null, + "turret's": null, + "turreted": null, + "turtleback": [["M", "S"]], + "turtleback's": null, + "turtlebacks": null, + "turtledove": [["M", "S"]], + "turtledove's": null, + "turtledoves": null, + "turtleneck": [["S", "D", "M"]], + "turtlenecks": null, + "turtlenecked": null, + "turtleneck's": null, + "turtle": [["S", "D", "M", "G"]], + "turtles": null, + "turtled": null, + "turtle's": null, + "turtling": null, + "turves's": null, + "turvy": null, + "Tuscaloosa": [["M"]], + "Tuscaloosa's": null, + "Tuscan": null, + "Tuscany": [["M"]], + "Tuscany's": null, + "Tuscarora": [["M"]], + "Tuscarora's": null, + "Tuscon": [["M"]], + "Tuscon's": null, + "tush": [["S", "D", "G"]], + "tushes": null, + "tushed": null, + "tushing": null, + "Tuskegee": [["M"]], + "Tuskegee's": null, + "tusker": [["M"]], + "tusker's": null, + "tusk": [["G", "Z", "R", "D", "M", "S"]], + "tusking": null, + "tuskers": null, + "tusked": null, + "tusk's": null, + "tusks": null, + "tussle": [["G", "S", "D"]], + "tussling": null, + "tussles": null, + "tussled": null, + "tussock": [["M", "S"]], + "tussock's": null, + "tussocks": null, + "tussocky": null, + "Tussuad": [["M"]], + "Tussuad's": null, + "Tutankhamen": [["M"]], + "Tutankhamen's": null, + "tutelage": [["M", "S"]], + "tutelage's": null, + "tutelages": null, + "tutelary": [["S"]], + "tutelaries": null, + "Tut": [["M"]], + "Tut's": null, + "tutored": [["U"]], + "untutored": null, + "tutorial": [["M", "S"]], + "tutorial's": null, + "tutorials": null, + "tutor": [["M", "D", "G", "S"]], + "tutor's": null, + "tutoring": null, + "tutors": null, + "tutorship": [["S"]], + "tutorships": null, + "tut": [["S"]], + "tuts": null, + "Tutsi": null, + "tutted": null, + "tutting": null, + "tutti": [["S"]], + "tuttis": null, + "Tuttle": [["M"]], + "Tuttle's": null, + "tutu": [["S", "M"]], + "tutus": null, + "tutu's": null, + "Tuvalu": null, + "tuxedo": [["S", "D", "M"]], + "tuxedos": null, + "tuxedoed": null, + "tuxedo's": null, + "tux": [["S"]], + "tuxes": null, + "TVA": null, + "TV": [["M"]], + "TV's": null, + "TVs": null, + "twaddle": [["G", "Z", "M", "R", "S", "D"]], + "twaddling": null, + "twaddlers": null, + "twaddle's": null, + "twaddler": [["M"]], + "twaddles": null, + "twaddled": null, + "twaddler's": null, + "Twain": [["M"]], + "Twain's": null, + "twain": [["S"]], + "twains": null, + "TWA": [["M"]], + "TWA's": null, + "twang": [["M", "D", "S", "G"]], + "twang's": null, + "twanged": null, + "twangs": null, + "twanging": null, + "twangy": [["T", "R"]], + "twangiest": null, + "twangier": null, + "twas": null, + "tweak": [["S", "G", "R", "D"]], + "tweaks": null, + "tweaking": null, + "tweaker": null, + "tweaked": null, + "tweediness": [["M"]], + "tweediness's": null, + "Tweedledee": [["M"]], + "Tweedledee's": null, + "Tweedledum": [["M"]], + "Tweedledum's": null, + "Tweed": [["M"]], + "Tweed's": null, + "twee": [["D", "P"]], + "tweed": [["S", "M"]], + "tweeness": null, + "tweeds": null, + "tweed's": null, + "tweedy": [["P", "T", "R"]], + "tweediest": null, + "tweedier": null, + "tween": null, + "tweeter": [["M"]], + "tweeter's": null, + "tweet": [["Z", "S", "G", "R", "D"]], + "tweeters": null, + "tweets": null, + "tweeting": null, + "tweeted": null, + "tweezer": [["M"]], + "tweezer's": null, + "tweeze": [["Z", "G", "R", "D"]], + "tweezers": null, + "tweezing": null, + "tweezed": null, + "twelfth": null, + "twelfths": null, + "twelvemonth": [["M"]], + "twelvemonth's": null, + "twelvemonths": null, + "twelve": [["M", "S"]], + "twelve's": null, + "twelves": null, + "twentieths": null, + "twenty": [["M", "S", "H"]], + "twenty's": null, + "twenties": null, + "twentieth": null, + "twerp": [["M", "S"]], + "twerp's": null, + "twerps": null, + "twice": [["R"]], + "twicer": null, + "twiddle": [["G", "R", "S", "D"]], + "twiddling": null, + "twiddler": [["M"]], + "twiddles": null, + "twiddled": null, + "twiddler's": null, + "twiddly": [["R", "T"]], + "twiddlier": null, + "twiddliest": null, + "twigged": null, + "twigging": null, + "twiggy": [["R", "T"]], + "twiggier": null, + "twiggiest": null, + "twig": [["S", "M"]], + "twigs": null, + "twig's": null, + "Twila": [["M"]], + "Twila's": null, + "twilight": [["M", "S"]], + "twilight's": null, + "twilights": null, + "twilit": null, + "twill": [["S", "G", "D"]], + "twills": null, + "twilling": null, + "twilled": null, + "twiner": [["M"]], + "twiner's": null, + "twine": [["S", "M"]], + "twines": null, + "twine's": null, + "twinge": [["S", "D", "M", "G"]], + "twinges": null, + "twinged": null, + "twinge's": null, + "twinging": null, + "Twinkie": null, + "twinkler": [["M"]], + "twinkler's": null, + "twinkle": [["R", "S", "D", "G"]], + "twinkles": null, + "twinkled": null, + "twinkling": [["M"]], + "twinkling's": null, + "twinkly": null, + "twinned": null, + "twinning": null, + "twin": [["R", "D", "M", "G", "Z", "S"]], + "twined": null, + "twin's": null, + "twining": null, + "twiners": null, + "twins": null, + "twirler": [["M"]], + "twirler's": null, + "twirling": [["Y"]], + "twirlingly": null, + "twirl": [["S", "Z", "G", "R", "D"]], + "twirls": null, + "twirlers": null, + "twirled": null, + "twirly": [["T", "R"]], + "twirliest": null, + "twirlier": null, + "twisted": [["U"]], + "untwisted": null, + "twister": [["M"]], + "twister's": null, + "twists": [["U"]], + "untwists": null, + "twist": [["S", "Z", "G", "R", "D"]], + "twisters": null, + "twisting": null, + "twisty": null, + "twitch": [["G", "R", "S", "D"]], + "twitching": null, + "twitcher": null, + "twitches": null, + "twitched": null, + "twitchy": [["T", "R"]], + "twitchiest": null, + "twitchier": null, + "twit": [["S"]], + "twits": null, + "twitted": null, + "twitterer": [["M"]], + "twitterer's": null, + "twitter": [["S", "G", "R", "D"]], + "twitters": null, + "twittering": null, + "twittered": null, + "twittery": null, + "twitting": null, + "twixt": null, + "twofer": [["M", "S"]], + "twofer's": null, + "twofers": null, + "twofold": [["S"]], + "twofolds": null, + "two": [["M", "S"]], + "two's": null, + "twos": null, + "twopence": [["S", "M"]], + "twopences": null, + "twopence's": null, + "twopenny": [["S"]], + "twopennies": null, + "twosome": [["M", "S"]], + "twosome's": null, + "twosomes": null, + "twp": null, + "Twp": null, + "TWX": null, + "Twyla": [["M"]], + "Twyla's": null, + "TX": null, + "t": [["X", "T", "J", "B", "G"]], + "tings": null, + "Tybalt": [["M"]], + "Tybalt's": null, + "Tybie": [["M"]], + "Tybie's": null, + "Tybi": [["M"]], + "Tybi's": null, + "tycoon": [["M", "S"]], + "tycoon's": null, + "tycoons": null, + "tyeing": null, + "Tye": [["M"]], + "Tye's": null, + "tying": [["U", "A"]], + "untying": null, + "retying": null, + "tyke": [["S", "M"]], + "tykes": null, + "tyke's": null, + "Tylenol": [["M"]], + "Tylenol's": null, + "Tyler": [["M"]], + "Tyler's": null, + "Ty": [["M"]], + "Ty's": null, + "Tymon": [["M"]], + "Tymon's": null, + "Tymothy": [["M"]], + "Tymothy's": null, + "tympani": null, + "tympanist": [["S", "M"]], + "tympanists": null, + "tympanist's": null, + "tympanum": [["S", "M"]], + "tympanums": null, + "tympanum's": null, + "Tynan": [["M"]], + "Tynan's": null, + "Tyndale": [["M"]], + "Tyndale's": null, + "Tyndall": [["M"]], + "Tyndall's": null, + "Tyne": [["M"]], + "Tyne's": null, + "typeahead": null, + "typecast": [["S", "G"]], + "typecasts": null, + "typecasting": null, + "typed": [["A", "U"]], + "retyped": null, + "untyped": null, + "typedef": [["S"]], + "typedefs": null, + "typeface": [["M", "S"]], + "typeface's": null, + "typefaces": null, + "typeless": null, + "type": [["M", "G", "D", "R", "S", "J"]], + "type's": null, + "typing": [["A"]], + "typer": null, + "types": [["A"]], + "typings": null, + "retypes": null, + "typescript": [["S", "M"]], + "typescripts": null, + "typescript's": null, + "typeset": [["S"]], + "typesets": null, + "typesetter": [["M", "S"]], + "typesetter's": null, + "typesetters": null, + "typesetting": [["S", "M"]], + "typesettings": null, + "typesetting's": null, + "typewriter": [["M"]], + "typewriter's": null, + "typewrite": [["S", "R", "J", "Z", "G"]], + "typewrites": null, + "typewritings": null, + "typewriters": null, + "typewriting": [["M"]], + "typewriting's": null, + "typewritten": null, + "typewrote": null, + "typhoid": [["S", "M"]], + "typhoids": null, + "typhoid's": null, + "Typhon": [["M"]], + "Typhon's": null, + "typhoon": [["S", "M"]], + "typhoons": null, + "typhoon's": null, + "typhus": [["S", "M"]], + "typhuses": null, + "typhus's": null, + "typicality": [["M", "S"]], + "typicality's": null, + "typicalities": null, + "typically": null, + "typicalness": [["M"]], + "typicalness's": null, + "typical": [["U"]], + "untypical": null, + "typification": [["M"]], + "typification's": null, + "typify": [["S", "D", "N", "X", "G"]], + "typifies": null, + "typified": null, + "typifications": null, + "typifying": null, + "retyping": null, + "typist": [["M", "S"]], + "typist's": null, + "typists": null, + "typographer": [["S", "M"]], + "typographers": null, + "typographer's": null, + "typographic": null, + "typographical": [["Y"]], + "typographically": null, + "typography": [["M", "S"]], + "typography's": null, + "typographies": null, + "typological": [["Y"]], + "typologically": null, + "typology": [["M", "S"]], + "typology's": null, + "typologies": null, + "typo": [["M", "S"]], + "typo's": null, + "typos": null, + "tyrannic": null, + "tyrannicalness": [["M"]], + "tyrannicalness's": null, + "tyrannical": [["P", "Y"]], + "tyrannically": null, + "tyrannicide": [["M"]], + "tyrannicide's": null, + "tyrannizer": [["M"]], + "tyrannizer's": null, + "tyrannize": [["Z", "G", "J", "R", "S", "D"]], + "tyrannizers": null, + "tyrannizing": [["Y", "M"]], + "tyrannizings": null, + "tyrannizes": null, + "tyrannized": null, + "tyrannizingly": null, + "tyrannizing's": null, + "tyrannosaur": [["M", "S"]], + "tyrannosaur's": null, + "tyrannosaurs": null, + "tyrannosaurus": [["S"]], + "tyrannosauruses": null, + "tyrannous": null, + "tyranny": [["M", "S"]], + "tyranny's": null, + "tyrannies": null, + "tyrant": [["M", "S"]], + "tyrant's": null, + "tyrants": null, + "Tyree": [["M"]], + "Tyree's": null, + "tyreo": null, + "Tyrolean": [["S"]], + "Tyroleans": null, + "Tyrol's": null, + "Tyrone": [["M"]], + "Tyrone's": null, + "tyrosine": [["M"]], + "tyrosine's": null, + "tyro": [["S", "M"]], + "tyros": null, + "tyro's": null, + "Tyrus": [["M"]], + "Tyrus's": null, + "Tyson": [["M"]], + "Tyson's": null, + "tzarina's": null, + "tzar's": null, + "Tzeltal": [["M"]], + "Tzeltal's": null, + "u": null, + "U": null, + "UAR": null, + "UART": null, + "UAW": null, + "Ubangi": [["M"]], + "Ubangi's": null, + "ubiquitous": [["Y", "P"]], + "ubiquitously": null, + "ubiquitousness": null, + "ubiquity": [["S"]], + "ubiquities": null, + "Ucayali": [["M"]], + "Ucayali's": null, + "Uccello": [["M"]], + "Uccello's": null, + "UCLA": [["M"]], + "UCLA's": null, + "Udale": [["M"]], + "Udale's": null, + "Udall": [["M"]], + "Udall's": null, + "udder": [["S", "M"]], + "udders": null, + "udder's": null, + "Udell": [["M"]], + "Udell's": null, + "Ufa": [["M"]], + "Ufa's": null, + "ufologist": [["S"]], + "ufologists": null, + "ufology": [["M", "S"]], + "ufology's": null, + "ufologies": null, + "UFO": [["S"]], + "UFOs": null, + "Uganda": [["M"]], + "Uganda's": null, + "Ugandan": [["S"]], + "Ugandans": null, + "ugh": null, + "ughs": null, + "uglification": null, + "ugliness": [["M", "S"]], + "ugliness's": null, + "uglinesses": null, + "uglis": null, + "ugly": [["P", "T", "G", "S", "R", "D"]], + "ugliest": null, + "uglying": null, + "uglies": null, + "uglier": null, + "uglied": null, + "Ugo": [["M"]], + "Ugo's": null, + "uh": null, + "UHF": null, + "Uighur": null, + "Ujungpandang": [["M"]], + "Ujungpandang's": null, + "UK": null, + "ukase": [["S", "M"]], + "ukases": null, + "ukase's": null, + "Ukraine": [["M"]], + "Ukraine's": null, + "Ukrainian": [["S"]], + "Ukrainians": null, + "ukulele": [["S", "M"]], + "ukuleles": null, + "ukulele's": null, + "UL": null, + "Ula": [["M"]], + "Ula's": null, + "Ulberto": [["M"]], + "Ulberto's": null, + "ulcerate": [["N", "G", "V", "X", "D", "S"]], + "ulceration": [["M"]], + "ulcerating": null, + "ulcerative": null, + "ulcerations": null, + "ulcerated": null, + "ulcerates": null, + "ulceration's": null, + "ulcer": [["M", "D", "G", "S"]], + "ulcer's": null, + "ulcered": null, + "ulcering": null, + "ulcers": null, + "ulcerous": null, + "Ulick": [["M"]], + "Ulick's": null, + "Ulises": [["M"]], + "Ulises's": null, + "Ulla": [["M"]], + "Ulla's": null, + "Ullman": [["M"]], + "Ullman's": null, + "ulnae": null, + "ulna": [["M"]], + "ulna's": null, + "ulnar": null, + "Ulrica": [["M"]], + "Ulrica's": null, + "Ulrich": [["M"]], + "Ulrich's": null, + "Ulrick": [["M"]], + "Ulrick's": null, + "Ulric": [["M"]], + "Ulric's": null, + "Ulrika": [["M"]], + "Ulrika's": null, + "Ulrikaumeko": [["M"]], + "Ulrikaumeko's": null, + "Ulrike": [["M"]], + "Ulrike's": null, + "Ulster": [["M"]], + "Ulster's": null, + "ulster": [["M", "S"]], + "ulster's": null, + "ulsters": null, + "ult": null, + "ulterior": [["Y"]], + "ulteriorly": null, + "ultimas": null, + "ultimate": [["D", "S", "Y", "P", "G"]], + "ultimated": null, + "ultimates": null, + "ultimately": null, + "ultimateness": [["M"]], + "ultimating": null, + "ultimateness's": null, + "ultimatum": [["M", "S"]], + "ultimatum's": null, + "ultimatums": null, + "ultimo": null, + "ultracentrifugally": null, + "ultracentrifugation": null, + "ultracentrifuge": [["M"]], + "ultracentrifuge's": null, + "ultraconservative": [["S"]], + "ultraconservatives": null, + "ultrafast": null, + "ultrahigh": null, + "ultralight": [["S"]], + "ultralights": null, + "ultramarine": [["S", "M"]], + "ultramarines": null, + "ultramarine's": null, + "ultramodern": null, + "ultramontane": null, + "ultra": [["S"]], + "ultras": null, + "ultrashort": null, + "ultrasonically": null, + "ultrasonic": [["S"]], + "ultrasonics": [["M"]], + "ultrasonics's": null, + "ultrasound": [["S", "M"]], + "ultrasounds": null, + "ultrasound's": null, + "ultrastructure": [["M"]], + "ultrastructure's": null, + "Ultrasuede": null, + "ultraviolet": [["S", "M"]], + "ultraviolets": null, + "ultraviolet's": null, + "Ultrix": [["M"]], + "Ultrix's": null, + "ULTRIX": [["M"]], + "ULTRIX's": null, + "ululate": [["D", "S", "X", "G", "N"]], + "ululated": null, + "ululates": null, + "ululations": null, + "ululating": null, + "ululation": [["M"]], + "ululation's": null, + "Ulyanovsk": [["M"]], + "Ulyanovsk's": null, + "Ulysses": [["M"]], + "Ulysses's": null, + "um": null, + "umbel": [["M", "S"]], + "umbel's": null, + "umbels": null, + "umber": [["G", "M", "D", "S"]], + "umbering": null, + "umber's": null, + "umbered": null, + "umbers": null, + "Umberto": [["M"]], + "Umberto's": null, + "umbilical": [["S"]], + "umbilicals": null, + "umbilici": null, + "umbilicus": [["M"]], + "umbilicus's": null, + "umbrage": [["M", "G", "S", "D"]], + "umbrage's": null, + "umbraging": null, + "umbrages": null, + "umbraged": null, + "umbrageous": null, + "umbra": [["M", "S"]], + "umbra's": null, + "umbras": null, + "umbrella": [["G", "D", "M", "S"]], + "umbrellaing": null, + "umbrellaed": null, + "umbrella's": null, + "umbrellas": null, + "Umbriel": [["M"]], + "Umbriel's": null, + "Umeko": [["M"]], + "Umeko's": null, + "umiak": [["M", "S"]], + "umiak's": null, + "umiaks": null, + "umlaut": [["G", "M", "D", "S"]], + "umlauting": null, + "umlaut's": null, + "umlauted": null, + "umlauts": null, + "umpire": [["M", "G", "S", "D"]], + "umpire's": null, + "umpiring": null, + "umpires": null, + "umpired": null, + "ump": [["M", "D", "S", "G"]], + "ump's": null, + "umped": null, + "umps": null, + "umping": null, + "umpteen": [["H"]], + "umpteenth": null, + "UN": null, + "unabatedly": null, + "unabridgeds": null, + "unacceptability": null, + "unacceptable": null, + "unaccepted": null, + "unaccommodating": null, + "unaccountability": null, + "unaccustomed": [["Y"]], + "unaccustomedly": null, + "unadapted": null, + "unadulteratedly": null, + "unadventurous": null, + "unalienability": null, + "unalterableness": [["M"]], + "unalterableness's": null, + "unalterably": null, + "Una": [["M"]], + "Una's": null, + "unambiguity": null, + "unambiguous": null, + "unambitious": null, + "unamused": null, + "unanimity": [["S", "M"]], + "unanimities": null, + "unanimity's": null, + "unanimous": [["Y"]], + "unanimously": null, + "unanticipatedly": null, + "unapologetic": null, + "unapologizing's": null, + "unappeasable": null, + "unappeasably": null, + "unappreciative": null, + "unary": null, + "unassailableness": [["M"]], + "unassailableness's": null, + "unassertive": null, + "unassumingness": [["M"]], + "unassumingness's": null, + "unassumingly": null, + "unauthorizedness": null, + "unauthorizedly": null, + "unavailingness": null, + "unavailingly": null, + "unaware": [["S", "P", "Y"]], + "unawares": null, + "unawarely": null, + "unbalancedness": null, + "unbar": null, + "unbarring": null, + "unbecomingness": null, + "unbeknown": null, + "unbelievingly": null, + "unbiasedness": null, + "unbid": null, + "unbind": [["G"]], + "unbinding": null, + "unblessed": null, + "unblinkingly": null, + "unbodied": null, + "unbolt": [["G"]], + "unbolting": null, + "unbreakability": null, + "unbred": null, + "unbroken": null, + "unbuckle": null, + "unbudgingly": null, + "unburnt": null, + "uncap": null, + "uncapping": null, + "uncatalogued": null, + "uncauterized's": null, + "uncauterizeds": null, + "unceasingly": null, + "uncelebrated": null, + "uncertainness": null, + "unchallengeable": null, + "unchangingness": [["M"]], + "unchangingness's": null, + "unchangingly": null, + "uncharacteristic": null, + "uncharismatic": null, + "unchastity": null, + "unchristian": null, + "uncial": [["S"]], + "uncials": null, + "uncivilizedly": null, + "unclassified": null, + "uncle": [["M", "S", "D"]], + "uncle's": null, + "uncles": null, + "uncled": null, + "uncloudedly": null, + "uncodable": null, + "uncollected": null, + "uncoloredness": [["M"]], + "uncoloredness's": null, + "uncoloredly": null, + "uncombable": null, + "uncommunicative": null, + "uncompetitive": null, + "uncomplicated": null, + "uncomprehendingly": null, + "uncompromisable": null, + "unconcernedness": null, + "unconcern's": null, + "unconfirmed": null, + "unconfused": null, + "unconscionableness": [["M"]], + "unconscionableness's": null, + "unconscionably": null, + "unconstitutional": null, + "unconsumed": null, + "uncontentious": null, + "uncontrollability": null, + "unconvertible": null, + "uncool": null, + "uncooperative": null, + "uncork": [["G"]], + "uncorking": null, + "uncoupling": null, + "uncouthness": [["M"]], + "uncouthness's": null, + "uncouth": [["Y", "P"]], + "uncouthly": null, + "uncreate": [["V"]], + "uncreative": null, + "uncritical": null, + "uncross": [["G", "B"]], + "uncrossing": null, + "uncrossable": null, + "uncrowded": null, + "unction": [["I", "M"]], + "inunction": null, + "inunction's": null, + "unction's": null, + "unctions": null, + "unctuousness": [["M", "S"]], + "unctuousness's": null, + "unctuousnesses": null, + "unctuous": [["P", "Y"]], + "unctuously": null, + "uncustomary": null, + "uncut": null, + "inundated": null, + "undauntedly": null, + "undeceive": null, + "undecided": [["S"]], + "undecideds": null, + "undedicated": null, + "undefinability": null, + "undefinedness": [["M"]], + "undefinedness's": null, + "undelete": null, + "undeliverability": null, + "undeniableness": [["M"]], + "undeniableness's": null, + "undeniably": null, + "undependable": null, + "underachiever": [["M"]], + "underachiever's": null, + "underachieve": [["S", "R", "D", "G", "Z"]], + "underachieves": null, + "underachieved": null, + "underachieving": null, + "underachievers": null, + "underact": [["G", "D", "S"]], + "underacting": null, + "underacted": null, + "underacts": null, + "underadjusting": null, + "underage": [["S"]], + "underages": null, + "underarm": [["D", "G", "S"]], + "underarmed": null, + "underarming": null, + "underarms": null, + "underbedding": null, + "underbelly": [["M", "S"]], + "underbelly's": null, + "underbellies": null, + "underbidding": null, + "underbid": [["S"]], + "underbids": null, + "underbracing": null, + "underbrush": [["M", "S", "D", "G"]], + "underbrush's": null, + "underbrushes": null, + "underbrushed": null, + "underbrushing": null, + "undercarriage": [["M", "S"]], + "undercarriage's": null, + "undercarriages": null, + "undercharge": [["G", "S", "D"]], + "undercharging": null, + "undercharges": null, + "undercharged": null, + "underclassman": null, + "underclassmen": null, + "underclass": [["S"]], + "underclasses": null, + "underclothes": null, + "underclothing": [["M", "S"]], + "underclothing's": null, + "underclothings": null, + "undercoating": [["M"]], + "undercoating's": null, + "undercoat": [["J", "M", "D", "G", "S"]], + "undercoatings": null, + "undercoat's": null, + "undercoated": null, + "undercoats": null, + "underconsumption": [["M"]], + "underconsumption's": null, + "undercooked": null, + "undercount": [["S"]], + "undercounts": null, + "undercover": null, + "undercurrent": [["S", "M"]], + "undercurrents": null, + "undercurrent's": null, + "undercut": [["S"]], + "undercuts": null, + "undercutting": null, + "underdeveloped": null, + "underdevelopment": [["M", "S"]], + "underdevelopment's": null, + "underdevelopments": null, + "underdog": [["M", "S"]], + "underdog's": null, + "underdogs": null, + "underdone": null, + "undereducated": null, + "underemphasis": null, + "underemployed": null, + "underemployment": [["S", "M"]], + "underemployments": null, + "underemployment's": null, + "underenumerated": null, + "underenumeration": null, + "underestimate": [["N", "G", "X", "S", "D"]], + "underestimation": null, + "underestimating": null, + "underestimations": null, + "underestimates": null, + "underestimated": null, + "underexploited": null, + "underexpose": [["S", "D", "G"]], + "underexposes": null, + "underexposed": null, + "underexposing": null, + "underexposure": [["S", "M"]], + "underexposures": null, + "underexposure's": null, + "underfed": null, + "underfeed": [["S", "G"]], + "underfeeds": null, + "underfeeding": null, + "underfloor": null, + "underflow": [["G", "D", "M", "S"]], + "underflowing": null, + "underflowed": null, + "underflow's": null, + "underflows": null, + "underfoot": null, + "underfund": [["D", "G"]], + "underfunded": null, + "underfunding": null, + "underfur": [["M", "S"]], + "underfur's": null, + "underfurs": null, + "undergarment": [["S", "M"]], + "undergarments": null, + "undergarment's": null, + "undergirding": null, + "undergoes": null, + "undergo": [["G"]], + "undergoing": null, + "undergone": null, + "undergrad": [["M", "S"]], + "undergrad's": null, + "undergrads": null, + "undergraduate": [["M", "S"]], + "undergraduate's": null, + "undergraduates": null, + "underground": [["R", "M", "S"]], + "undergrounder": null, + "underground's": null, + "undergrounds": null, + "undergrowth": [["M"]], + "undergrowth's": null, + "undergrowths": null, + "underhand": [["D"]], + "underhanded": [["Y", "P"]], + "underhandedness": [["M", "S"]], + "underhandedness's": null, + "underhandednesses": null, + "underhandedly": null, + "underheat": null, + "underinvestment": null, + "underlaid": null, + "underlain": [["S"]], + "underlains": null, + "underlay": [["G", "S"]], + "underlaying": null, + "underlays": null, + "underlie": null, + "underline": [["G", "S", "D", "J"]], + "underlining": null, + "underlines": null, + "underlined": null, + "underlinings": null, + "underling": [["M", "S"]], + "underling's": null, + "underlings": null, + "underlip": [["S", "M"]], + "underlips": null, + "underlip's": null, + "underloaded": null, + "underly": [["G", "S"]], + "underlying": null, + "underlies": null, + "undermanned": null, + "undermentioned": null, + "undermine": [["S", "D", "G"]], + "undermines": null, + "undermined": null, + "undermining": null, + "undermost": null, + "underneath": null, + "underneaths": null, + "undernourished": null, + "undernourishment": [["S", "M"]], + "undernourishments": null, + "undernourishment's": null, + "underpaid": null, + "underpants": null, + "underpart": [["M", "S"]], + "underpart's": null, + "underparts": null, + "underpass": [["S", "M"]], + "underpasses": null, + "underpass's": null, + "underpay": [["G", "S", "L"]], + "underpaying": null, + "underpays": null, + "underpayment": [["S", "M"]], + "underpayments": null, + "underpayment's": null, + "underperformed": null, + "underpinned": null, + "underpinning": [["M", "S"]], + "underpinning's": null, + "underpinnings": null, + "underpin": [["S"]], + "underpins": null, + "underplay": [["S", "G", "D"]], + "underplays": null, + "underplaying": null, + "underplayed": null, + "underpopulated": null, + "underpopulation": [["M"]], + "underpopulation's": null, + "underpowered": null, + "underpricing": null, + "underprivileged": null, + "underproduction": [["M", "S"]], + "underproduction's": null, + "underproductions": null, + "underrate": [["G", "S", "D"]], + "underrating": null, + "underrates": null, + "underrated": null, + "underregistration": [["M"]], + "underregistration's": null, + "underreported": null, + "underreporting": null, + "underrepresentation": [["M"]], + "underrepresentation's": null, + "underrepresented": null, + "underscore": [["S", "D", "G"]], + "underscores": null, + "underscored": null, + "underscoring": null, + "undersealed": null, + "undersea": [["S"]], + "underseas": null, + "undersecretary": [["S", "M"]], + "undersecretaries": null, + "undersecretary's": null, + "undersell": [["S", "G"]], + "undersells": null, + "underselling": null, + "undersexed": null, + "undershirt": [["S", "M"]], + "undershirts": null, + "undershirt's": null, + "undershoot": [["S", "G"]], + "undershoots": null, + "undershooting": null, + "undershorts": null, + "undershot": null, + "underside": [["S", "M"]], + "undersides": null, + "underside's": null, + "undersigned": [["M"]], + "undersigned's": null, + "undersign": [["S", "G", "D"]], + "undersigns": null, + "undersigning": null, + "undersized": null, + "undersizes": null, + "undersizing": null, + "underskirt": [["M", "S"]], + "underskirt's": null, + "underskirts": null, + "undersold": null, + "underspecification": null, + "underspecified": null, + "underspend": [["G"]], + "underspending": null, + "understaffed": null, + "understandability": [["M"]], + "understandability's": null, + "understandably": null, + "understanding": [["Y", "M"]], + "understandingly": null, + "understanding's": null, + "understand": [["R", "G", "S", "J", "B"]], + "understander": null, + "understands": null, + "understandings": null, + "understandable": null, + "understate": [["G", "S", "D", "L"]], + "understating": null, + "understates": null, + "understated": null, + "understatement": [["M", "S"]], + "understatement's": null, + "understatements": null, + "understocked": null, + "understood": null, + "understrength": null, + "understructure": [["S", "M"]], + "understructures": null, + "understructure's": null, + "understudy": [["G", "M", "S", "D"]], + "understudying": null, + "understudy's": null, + "understudies": null, + "understudied": null, + "undertaken": null, + "undertaker": [["M"]], + "undertaker's": null, + "undertake": [["S", "R", "G", "Z", "J"]], + "undertakes": null, + "undertaking": [["M"]], + "undertakers": null, + "undertakings": null, + "undertaking's": null, + "underthings": null, + "undertone": [["S", "M"]], + "undertones": null, + "undertone's": null, + "undertook": null, + "undertow": [["M", "S"]], + "undertow's": null, + "undertows": null, + "underused": null, + "underusing": null, + "underutilization": [["M"]], + "underutilization's": null, + "underutilized": null, + "undervaluation": [["S"]], + "undervaluations": null, + "undervalue": [["S", "D", "G"]], + "undervalues": null, + "undervalued": null, + "undervaluing": null, + "underwater": [["S"]], + "underwaters": null, + "underway": null, + "underwear": [["M"]], + "underwear's": null, + "underweight": [["S"]], + "underweights": null, + "underwent": null, + "underwhelm": [["D", "G", "S"]], + "underwhelmed": null, + "underwhelming": null, + "underwhelms": null, + "underwood": [["M"]], + "underwood's": null, + "Underwood": [["M"]], + "Underwood's": null, + "underworld": [["M", "S"]], + "underworld's": null, + "underworlds": null, + "underwrite": [["G", "Z", "S", "R"]], + "underwriting": null, + "underwriters": null, + "underwrites": null, + "underwriter": [["M"]], + "underwriter's": null, + "underwritten": null, + "underwrote": null, + "under": [["Y"]], + "undeserving": null, + "undesigned": null, + "undeviatingly": null, + "undialyzeds": null, + "undialyzed's": null, + "undiplomatic": null, + "undiscerning": null, + "undiscriminating": null, + "undo": [["G", "J"]], + "undoings": null, + "undoubtedly": null, + "undramatic": null, + "undramatizeds": null, + "undramatized's": null, + "undress": [["G"]], + "undressing": null, + "undrinkability": null, + "undrinkable": null, + "undroppable": null, + "undue": null, + "undulant": null, + "undulate": [["X", "D", "S", "N", "G"]], + "undulations": null, + "undulated": null, + "undulates": null, + "undulation": [["M"]], + "undulating": null, + "undulation's": null, + "unearthliness": [["S"]], + "unearthlinesses": null, + "unearthly": [["P"]], + "unearth": [["Y", "G"]], + "unearthing": null, + "unease": null, + "uneconomic": null, + "uneducated": null, + "unemployeds": null, + "unencroachable": null, + "unending": [["Y"]], + "unendingly": null, + "unendurableness": null, + "unenergized's": null, + "unenergizeds": null, + "unenforced": null, + "unenterprising": null, + "UNESCO": null, + "unethical": null, + "uneulogizeds": null, + "uneulogized's": null, + "unexacting": null, + "unexceptionably": null, + "unexcited": null, + "unexpectedness's": null, + "unexpectednesses": null, + "unfadingly": null, + "unfailingness": [["M"]], + "unfailingness's": null, + "unfamiliar": null, + "unfashionable": null, + "unfathomably": null, + "unfavored": null, + "unfeeling": null, + "unfeignedly": null, + "unfelt": null, + "unfeminine": null, + "unfertile": null, + "unfetchable": null, + "unflagging": null, + "unflappability": [["S"]], + "unflappabilities": null, + "unflappable": null, + "unflappably": null, + "unflinchingly": null, + "unfold": [["L", "G"]], + "unfoldment": [["M"]], + "unfolding": null, + "unfoldment's": null, + "unforced": null, + "unforgeable": null, + "unfossilized's": null, + "unfossilizeds": null, + "unfraternizings": null, + "unfraternizing's": null, + "unfrozen": null, + "unfulfillable": null, + "unfunny": null, + "unfussy": null, + "ungainliness": [["M", "S"]], + "ungainliness's": null, + "ungainlinesses": null, + "ungainlier": null, + "ungainliest": null, + "Ungava": [["M"]], + "Ungava's": null, + "ungenerous": null, + "ungentle": null, + "unglamorous": null, + "ungrammaticality": null, + "ungrudging": null, + "unguent": [["M", "S"]], + "unguent's": null, + "unguents": null, + "ungulate": [["M", "S"]], + "ungulate's": null, + "ungulates": null, + "unharmonious": null, + "unharness": [["G"]], + "unharnessing": null, + "unhistorical": null, + "unholy": [["T", "P"]], + "unholiest": null, + "unhook": [["D", "G"]], + "unhooked": null, + "unhooking": null, + "unhydrolyzeds": null, + "unhydrolyzed's": null, + "unhygienic": null, + "Unibus": [["M"]], + "Unibus's": null, + "unicameral": null, + "UNICEF": null, + "unicellular": null, + "Unicode": [["M"]], + "Unicode's": null, + "unicorn": [["S", "M"]], + "unicorns": null, + "unicorn's": null, + "unicycle": [["M", "G", "S", "D"]], + "unicycle's": null, + "unicycling": null, + "unicycles": null, + "unicycled": null, + "unicyclist": [["M", "S"]], + "unicyclist's": null, + "unicyclists": null, + "unideal": null, + "unidimensional": null, + "unidiomatic": null, + "unidirectionality": null, + "unidirectional": [["Y"]], + "unidirectionally": null, + "unidolized's": null, + "unidolizeds": null, + "unifiable": null, + "unification": [["M", "A"]], + "unification's": null, + "reunification's": null, + "reunification": null, + "unifier": [["M", "S"]], + "unifier's": null, + "unifiers": null, + "unifilar": null, + "uniformity": [["M", "S"]], + "uniformity's": null, + "uniformities": null, + "uniformness": [["M"]], + "uniformness's": null, + "uniform": [["T", "G", "S", "R", "D", "Y", "M", "P"]], + "uniformest": null, + "uniforming": null, + "uniforms": null, + "uniformer": null, + "uniformed": null, + "uniformly": null, + "uniform's": null, + "unify": [["A", "X", "D", "S", "N", "G"]], + "reunify": null, + "reunifications": null, + "reunified": null, + "reunifies": null, + "reunifying": null, + "unifications": null, + "unified": null, + "unifies": null, + "unifying": null, + "unilateralism": [["M"]], + "unilateralism's": null, + "unilateralist": null, + "unilateral": [["Y"]], + "unilaterally": null, + "unimodal": null, + "unimpeachably": null, + "unimportance": null, + "unimportant": null, + "unimpressive": null, + "unindustrialized's": null, + "unindustrializeds": null, + "uninhibitedly": null, + "uninhibitedness": null, + "uninominal": null, + "uninsured": null, + "unintellectual": null, + "unintended": null, + "uninteresting": null, + "uninterruptedness": [["M"]], + "uninterruptedness's": null, + "uninterruptedly": null, + "unintuitive": null, + "uninviting": null, + "reunion": null, + "reunion's": null, + "reunions": null, + "disunion": null, + "disunion's": null, + "disunions": null, + "unionism": [["S", "M"]], + "unionisms": null, + "unionism's": null, + "unionist": [["S", "M"]], + "unionists": null, + "unionist's": null, + "Unionist": [["S", "M"]], + "Unionists": null, + "Unionist's": null, + "unionize": null, + "Union": [["M", "S"]], + "Union's": null, + "Unions": null, + "UniPlus": [["M"]], + "UniPlus's": null, + "unipolar": null, + "uniprocessor": [["S", "M"]], + "uniprocessors": null, + "uniprocessor's": null, + "uniqueness": [["S"]], + "uniquenesses": null, + "unique": [["T", "Y", "S", "R", "P"]], + "uniquest": null, + "uniquely": null, + "uniques": null, + "uniquer": null, + "Uniroyal": [["M"]], + "Uniroyal's": null, + "unisex": [["S"]], + "unisexes": null, + "UniSoft": [["M"]], + "UniSoft's": null, + "unison": [["M", "S"]], + "unison's": null, + "unisons": null, + "Unisys": [["M"]], + "Unisys's": null, + "unitarianism": [["M"]], + "unitarianism's": null, + "Unitarianism": [["S", "M"]], + "Unitarianisms": null, + "Unitarianism's": null, + "unitarian": [["M", "S"]], + "unitarian's": null, + "unitarians": null, + "Unitarian": [["M", "S"]], + "Unitarian's": null, + "Unitarians": null, + "unitary": null, + "unite": [["A", "E", "D", "S", "G"]], + "reunite": null, + "reunited": null, + "reunites": null, + "reuniting": null, + "disunite": null, + "disunited": null, + "disunites": null, + "disuniting": null, + "united": [["Y"]], + "unites": null, + "uniting": null, + "unitedly": null, + "uniter": [["M"]], + "uniter's": null, + "unitize": [["G", "D", "S"]], + "unitizing": null, + "unitized": null, + "unitizes": null, + "unitive": null, + "unity": [["S", "E", "M"]], + "unities": null, + "disunities": null, + "disunity": null, + "disunity's": null, + "unity's": null, + "univ": null, + "Univac": [["M"]], + "Univac's": null, + "univalent": [["S"]], + "univalents": null, + "univalve": [["M", "S"]], + "univalve's": null, + "univalves": null, + "univariate": null, + "universalism": [["M"]], + "universalism's": null, + "universalistic": null, + "universality": [["S", "M"]], + "universalities": null, + "universality's": null, + "universalize": [["D", "S", "R", "Z", "G"]], + "universalized": null, + "universalizes": null, + "universalizer": [["M"]], + "universalizers": null, + "universalizing": null, + "universalizer's": null, + "universal": [["Y", "S", "P"]], + "universally": null, + "universals": null, + "universalness": null, + "universe": [["M", "S"]], + "universe's": null, + "universes": null, + "university": [["M", "S"]], + "university's": null, + "universities": null, + "Unix": [["M"]], + "Unix's": null, + "UNIX": [["M"]], + "UNIX's": null, + "unjam": null, + "unkempt": null, + "unkind": [["T", "P"]], + "unkindest": null, + "unkink": null, + "unknightly": null, + "unknowables": null, + "unknowing": null, + "unlabored": null, + "unlace": [["G"]], + "unlacing": null, + "unlearn": [["G"]], + "unlearning": null, + "unlikeable": null, + "unlikelinesses": null, + "unlimber": [["G"]], + "unlimbering": null, + "unlimited": null, + "unlit": null, + "unliterary": null, + "unloose": [["G"]], + "unloosing": null, + "unlucky": [["T", "P"]], + "unluckiest": null, + "unmagnetized's": null, + "unmagnetizeds": null, + "unmanageably": null, + "unmanneredly": null, + "unmask": [["G"]], + "unmasking": null, + "unmeaning": null, + "unmeasured": null, + "unmeetable": null, + "unmelodious": null, + "unmemorable": null, + "unmemorialized's": null, + "unmemorializeds": null, + "unmentionables": null, + "unmerciful": null, + "unmeritorious": null, + "unmethodical": null, + "unmineralized's": null, + "unmineralizeds": null, + "unmissable": null, + "unmistakably": null, + "unmitigatedly": null, + "unmitigatedness": null, + "unmnemonic": null, + "unmobilizeds": null, + "unmobilized's": null, + "unmoral": null, + "unmount": [["B"]], + "unmountable": null, + "unmovable": null, + "unmoving": null, + "unnaturalness's": null, + "unnavigable": null, + "unnervingly": null, + "unobliging": null, + "unoffensive": null, + "unofficial": null, + "unorganizedly": null, + "unorganizedness": null, + "unorthodox": null, + "unpack": [["G"]], + "unpacking": null, + "unpaintable": null, + "unpalatability": null, + "unpalatable": null, + "unpartizan": null, + "unpatronizing": null, + "unpeople": null, + "unperceptive": null, + "unperson": null, + "unperturbedly": null, + "unphysical": null, + "unpick": [["G"]], + "unpicking": null, + "unpicturesque": null, + "unpinning": null, + "unpleasing": null, + "unploughed": null, + "unpolarizeds": null, + "unpolarized's": null, + "unpopular": null, + "unpractical": null, + "unprecedentedly": null, + "unpredictables": null, + "unpreemphasized": null, + "unpremeditated": null, + "unpretentiousness's": null, + "unprincipledness": null, + "unproblematic": null, + "unproductive": null, + "unpropitious": null, + "unprovable": null, + "unprovocative": null, + "unpunctual": null, + "unquestionable": null, + "unraisable": null, + "unravellings": null, + "unreadability": null, + "unread": [["B"]], + "unreadable": null, + "unreal": null, + "unrealizable": null, + "unreasoningly": null, + "unreceptive": null, + "unrecordable": null, + "unreflective": null, + "unrelentingly": null, + "unremittingly": null, + "unrepeatability": null, + "unrepeated": null, + "unrepentant": null, + "unreported": null, + "unrepresentative": null, + "unreproducible": null, + "unrest": [["G"]], + "unresting": null, + "unrestrainedness": null, + "unrewarding": null, + "unriddle": null, + "unripe": [["P"]], + "unromantic": null, + "unruliness": [["S", "M"]], + "unrulinesses": null, + "unruliness's": null, + "unruly": [["P", "T", "R"]], + "unruliest": null, + "unrulier": null, + "unsaleable": null, + "unsanitary": null, + "unsavoredly": null, + "unsavoredness": null, + "unsavoriness's": null, + "unseal": [["G", "B"]], + "unsealing": null, + "unsealable": null, + "unsearchable": null, + "unseasonal": null, + "unseeingly": null, + "unseens": null, + "unselfconsciousness": [["M"]], + "unselfconsciousness's": null, + "unselfconscious": [["P"]], + "unselfishness's": null, + "unsellable": null, + "unsentimental": null, + "unset": null, + "unsettledness": [["M"]], + "unsettledness's": null, + "unsettlingly": null, + "unshapely": null, + "unshaven": null, + "unshorn": null, + "unsighted": null, + "unsightlinesses": null, + "unskilful": null, + "unsociability": null, + "unsociable": [["P"]], + "unsociableness": null, + "unsocial": null, + "unsoundest": null, + "unspeakably": null, + "unspecific": null, + "unspectacular": null, + "unspoilt": null, + "unspoke": null, + "unsporting": null, + "unstable": [["P"]], + "unstigmatizeds": null, + "unstigmatized's": null, + "unstilted": null, + "unstintingly": null, + "unstopping": null, + "unstrapping": null, + "unstudied": null, + "unstuffy": null, + "unsubdued": null, + "unsubstantial": null, + "unsubtle": null, + "unsuitable": null, + "unsuspectingly": null, + "unswervingly": null, + "unsymmetrical": null, + "unsympathetic": null, + "unsystematic": null, + "unsystematizedly": null, + "untactful": null, + "untalented": null, + "untaxing": null, + "unteach": [["B"]], + "unteachable": null, + "untellable": null, + "untenable": null, + "unthinking": null, + "until": [["G"]], + "untiling": null, + "untiringly": null, + "unto": null, + "untouchable's": null, + "untouchables": null, + "untowardness": [["M"]], + "untowardness's": null, + "untraceable": null, + "untrue": null, + "untruthfulness's": null, + "untwist": [["G"]], + "untwisting": null, + "Unukalhai": [["M"]], + "Unukalhai's": null, + "unusualness": [["M"]], + "unusualness's": null, + "unutterable": null, + "unutterably": null, + "unvocalized": [["M", "S"]], + "unvocalized's": null, + "unvocalizeds": null, + "unvulcanized": [["S", "M"]], + "unvulcanizeds": null, + "unvulcanized's": null, + "unwaivering": null, + "unwarrantable": null, + "unwarrantably": null, + "unwashed": [["P", "S"]], + "unwashedness": null, + "unwasheds": null, + "unwearable": null, + "unwearied": [["Y"]], + "unweariedly": null, + "unwed": null, + "unwedge": null, + "unwelcome": null, + "unwell": [["M"]], + "unwell's": null, + "unwieldiness": [["M", "S"]], + "unwieldiness's": null, + "unwieldinesses": null, + "unwieldy": [["T", "P", "R"]], + "unwieldiest": null, + "unwieldier": null, + "unwind": [["B"]], + "unwindable": null, + "unwomanly": null, + "unworkable": [["S"]], + "unworkables": null, + "unworried": null, + "unwrap": null, + "unwrapping": null, + "unyielding": [["Y"]], + "unyieldingly": null, + "unyoke": null, + "unzip": null, + "up": null, + "Upanishads": null, + "uparrow": null, + "upbeat": [["S", "M"]], + "upbeats": null, + "upbeat's": null, + "upbraid": [["G", "D", "R", "S"]], + "upbraiding": null, + "upbraided": null, + "upbraider": null, + "upbraids": null, + "upbringing": [["M"]], + "upbringing's": null, + "upbring": [["J", "G"]], + "upbringings": null, + "UPC": null, + "upchuck": [["S", "D", "G"]], + "upchucks": null, + "upchucked": null, + "upchucking": null, + "upcome": [["G"]], + "upcoming": null, + "upcountry": [["S"]], + "upcountries": null, + "updatability": null, + "updater": [["M"]], + "updater's": null, + "update": [["R", "S", "D", "G"]], + "updates": null, + "updated": null, + "updating": null, + "Updike": [["M"]], + "Updike's": null, + "updraft": [["S", "M"]], + "updrafts": null, + "updraft's": null, + "upend": [["S", "D", "G"]], + "upends": null, + "upended": null, + "upending": null, + "upfield": null, + "upfront": null, + "upgradeable": null, + "upgrade": [["D", "S", "J", "G"]], + "upgraded": null, + "upgrades": null, + "upgradings": null, + "upgrading": null, + "upheaval": [["M", "S"]], + "upheaval's": null, + "upheavals": null, + "upheld": null, + "uphill": [["S"]], + "uphills": null, + "upholder": [["M"]], + "upholder's": null, + "uphold": [["R", "S", "G", "Z"]], + "upholds": null, + "upholding": null, + "upholders": null, + "upholster": [["A", "D", "G", "S"]], + "reupholster": null, + "reupholstered": null, + "reupholstering": null, + "reupholsters": null, + "upholstered": null, + "upholstering": null, + "upholsters": null, + "upholsterer": [["S", "M"]], + "upholsterers": null, + "upholsterer's": null, + "upholstery": [["M", "S"]], + "upholstery's": null, + "upholsteries": null, + "UPI": null, + "upkeep": [["S", "M"]], + "upkeeps": null, + "upkeep's": null, + "uplander": [["M"]], + "uplander's": null, + "upland": [["M", "R", "S"]], + "upland's": null, + "uplands": null, + "uplifter": [["M"]], + "uplifter's": null, + "uplift": [["S", "J", "D", "R", "G"]], + "uplifts": null, + "upliftings": null, + "uplifted": null, + "uplifting": null, + "upload": [["G", "S", "D"]], + "uploading": null, + "uploads": null, + "uploaded": null, + "upmarket": null, + "upon": null, + "upped": null, + "uppercase": [["G", "S", "D"]], + "uppercasing": null, + "uppercases": null, + "uppercased": null, + "upperclassman": [["M"]], + "upperclassman's": null, + "upperclassmen": null, + "uppercut": [["S"]], + "uppercuts": null, + "uppercutting": null, + "uppermost": null, + "upper": [["S"]], + "uppers": null, + "upping": null, + "uppish": null, + "uppity": null, + "upraise": [["G", "D", "S"]], + "upraising": null, + "upraised": null, + "upraises": null, + "uprated": null, + "uprating": null, + "uprear": [["D", "S", "G"]], + "upreared": null, + "uprears": null, + "uprearing": null, + "upright": [["D", "Y", "G", "S", "P"]], + "uprighted": null, + "uprightly": null, + "uprighting": null, + "uprights": null, + "uprightness": [["S"]], + "uprightnesses": null, + "uprise": [["R", "G", "J"]], + "upriser": null, + "uprising": [["M"]], + "uprisings": null, + "uprising's": null, + "upriver": [["S"]], + "uprivers": null, + "uproariousness": [["M"]], + "uproariousness's": null, + "uproarious": [["P", "Y"]], + "uproariously": null, + "uproar": [["M", "S"]], + "uproar's": null, + "uproars": null, + "uproot": [["D", "R", "G", "S"]], + "uprooted": null, + "uprooter": [["M"]], + "uprooting": null, + "uproots": null, + "uprooter's": null, + "ups": null, + "UPS": null, + "upscale": [["G", "D", "S"]], + "upscaling": null, + "upscaled": null, + "upscales": null, + "upset": [["S"]], + "upsets": null, + "upsetting": [["M", "S"]], + "upsetting's": null, + "upsettings": null, + "upshot": [["S", "M"]], + "upshots": null, + "upshot's": null, + "upside": [["M", "S"]], + "upside's": null, + "upsides": null, + "upsilon": [["M", "S"]], + "upsilon's": null, + "upsilons": null, + "upslope": null, + "upstage": [["D", "S", "R", "G"]], + "upstaged": null, + "upstages": null, + "upstager": null, + "upstaging": null, + "upstairs": null, + "upstandingness": [["M"]], + "upstandingness's": null, + "upstanding": [["P"]], + "upstart": [["M", "D", "G", "S"]], + "upstart's": null, + "upstarted": null, + "upstarting": null, + "upstarts": null, + "upstate": [["S", "R"]], + "upstates": null, + "upstater": null, + "upstream": [["D", "S", "G"]], + "upstreamed": null, + "upstreams": null, + "upstreaming": null, + "upstroke": [["M", "S"]], + "upstroke's": null, + "upstrokes": null, + "upsurge": [["D", "S", "G"]], + "upsurged": null, + "upsurges": null, + "upsurging": null, + "upswing": [["G", "M", "S"]], + "upswinging": null, + "upswing's": null, + "upswings": null, + "upswung": null, + "uptake": [["S", "M"]], + "uptakes": null, + "uptake's": null, + "upthrust": [["G", "M", "S"]], + "upthrusting": null, + "upthrust's": null, + "upthrusts": null, + "uptight": null, + "uptime": null, + "Upton": [["M"]], + "Upton's": null, + "uptown": [["R", "S"]], + "uptowner": null, + "uptowns": null, + "uptrend": [["M"]], + "uptrend's": null, + "upturn": [["G", "D", "S"]], + "upturning": null, + "upturned": null, + "upturns": null, + "upwardness": [["M"]], + "upwardness's": null, + "upward": [["S", "Y", "P"]], + "upwards": null, + "upwardly": null, + "upwelling": null, + "upwind": [["S"]], + "upwinds": null, + "uracil": [["M", "S"]], + "uracil's": null, + "uracils": null, + "Ural": [["M", "S"]], + "Ural's": null, + "Urals": null, + "Urania": [["M"]], + "Urania's": null, + "uranium": [["M", "S"]], + "uranium's": null, + "uraniums": null, + "Uranus": [["M"]], + "Uranus's": null, + "uranyl": [["M"]], + "uranyl's": null, + "Urbain": [["M"]], + "Urbain's": null, + "Urbana": [["M"]], + "Urbana's": null, + "urbane": [["Y"]], + "urbanely": null, + "urbanism": [["M"]], + "urbanism's": null, + "urbanite": [["S", "M"]], + "urbanites": null, + "urbanite's": null, + "urbanity": [["S", "M"]], + "urbanities": null, + "urbanity's": null, + "urbanization": [["M", "S"]], + "urbanization's": null, + "urbanizations": null, + "urbanize": [["D", "S", "G"]], + "urbanized": null, + "urbanizes": null, + "urbanizing": null, + "Urban": [["M"]], + "Urban's": null, + "urbanologist": [["S"]], + "urbanologists": null, + "urbanology": [["S"]], + "urbanologies": null, + "Urbano": [["M"]], + "Urbano's": null, + "urban": [["R", "T"]], + "urbaner": null, + "urbanest": null, + "Urbanus": [["M"]], + "Urbanus's": null, + "urchin": [["S", "M"]], + "urchins": null, + "urchin's": null, + "Urdu": [["M"]], + "Urdu's": null, + "urea": [["S", "M"]], + "ureas": null, + "urea's": null, + "uremia": [["M", "S"]], + "uremia's": null, + "uremias": null, + "uremic": null, + "ureter": [["M", "S"]], + "ureter's": null, + "ureters": null, + "urethane": [["M", "S"]], + "urethane's": null, + "urethanes": null, + "urethrae": null, + "urethral": null, + "urethra": [["M"]], + "urethra's": null, + "urethritis": [["M"]], + "urethritis's": null, + "Urey": [["M"]], + "Urey's": null, + "urge": [["G", "D", "R", "S", "J"]], + "urging": null, + "urged": null, + "urger": [["M"]], + "urges": null, + "urgings": null, + "urgency": [["S", "M"]], + "urgencies": null, + "urgency's": null, + "urgent": [["Y"]], + "urgently": null, + "urger's": null, + "Uriah": [["M"]], + "Uriah's": null, + "uric": null, + "Uriel": [["M"]], + "Uriel's": null, + "urinal": [["M", "S"]], + "urinal's": null, + "urinals": null, + "urinalyses": null, + "urinalysis": [["M"]], + "urinalysis's": null, + "urinary": [["M", "S"]], + "urinary's": null, + "urinaries": null, + "urinate": [["X", "D", "S", "N", "G"]], + "urinations": null, + "urinated": null, + "urinates": null, + "urination": [["M"]], + "urinating": null, + "urination's": null, + "urine": [["M", "S"]], + "urine's": null, + "urines": null, + "Uri": [["S", "M"]], + "Uris": null, + "Uri's": null, + "URL": null, + "Ur": [["M"]], + "Ur's": null, + "urning": [["M"]], + "urning's": null, + "urn": [["M", "D", "G", "S"]], + "urn's": null, + "urned": null, + "urns": null, + "urogenital": null, + "urological": null, + "urologist": [["S"]], + "urologists": null, + "urology": [["M", "S"]], + "urology's": null, + "urologies": null, + "Urquhart": [["M"]], + "Urquhart's": null, + "Ursala": [["M"]], + "Ursala's": null, + "Ursa": [["M"]], + "Ursa's": null, + "ursine": null, + "Ursola": [["M"]], + "Ursola's": null, + "Urson": [["M"]], + "Urson's": null, + "Ursula": [["M"]], + "Ursula's": null, + "Ursulina": [["M"]], + "Ursulina's": null, + "Ursuline": [["M"]], + "Ursuline's": null, + "urticaria": [["M", "S"]], + "urticaria's": null, + "urticarias": null, + "Uruguayan": [["S"]], + "Uruguayans": null, + "Uruguay": [["M"]], + "Uruguay's": null, + "Urumqi": null, + "US": null, + "USA": null, + "usability": [["S"]], + "usabilities": null, + "usable": [["U"]], + "unusable": null, + "usably": [["U"]], + "unusably": null, + "USAF": null, + "usage": [["S", "M"]], + "usages": null, + "usage's": null, + "USART": null, + "USCG": null, + "USC": [["M"]], + "USC's": null, + "USDA": null, + "us": [["D", "R", "S", "B", "Z", "G"]], + "used": [["U"]], + "user": [["M"]], + "uses": null, + "users": null, + "using": null, + "unused": null, + "use": [["E", "S", "D", "A", "G"]], + "disuses": null, + "disused": null, + "disusing": null, + "reuses": null, + "reused": null, + "reusing": null, + "usefulness": [["S", "M"]], + "usefulnesses": null, + "usefulness's": null, + "useful": [["Y", "P"]], + "usefully": null, + "uselessness": [["M", "S"]], + "uselessness's": null, + "uselessnesses": null, + "useless": [["P", "Y"]], + "uselessly": null, + "Usenet": [["M"]], + "Usenet's": null, + "Usenix": [["M"]], + "Usenix's": null, + "user's": null, + "USG": [["M"]], + "USG's": null, + "usherette": [["S", "M"]], + "usherettes": null, + "usherette's": null, + "usher": [["S", "G", "M", "D"]], + "ushers": null, + "ushering": null, + "usher's": null, + "ushered": null, + "USIA": null, + "USMC": null, + "USN": null, + "USO": null, + "USP": null, + "USPS": null, + "USS": null, + "USSR": null, + "Ustinov": [["M"]], + "Ustinov's": null, + "usu": null, + "usuals": null, + "usual": [["U", "P", "Y"]], + "unusual": null, + "unusually": null, + "usualness": null, + "usually": null, + "usurer": [["S", "M"]], + "usurers": null, + "usurer's": null, + "usuriousness": [["M"]], + "usuriousness's": null, + "usurious": [["P", "Y"]], + "usuriously": null, + "usurpation": [["M", "S"]], + "usurpation's": null, + "usurpations": null, + "usurper": [["M"]], + "usurper's": null, + "usurp": [["R", "D", "Z", "S", "G"]], + "usurped": null, + "usurpers": null, + "usurps": null, + "usurping": null, + "usury": [["S", "M"]], + "usuries": null, + "usury's": null, + "UT": null, + "Utahan": [["S", "M"]], + "Utahans": null, + "Utahan's": null, + "Utah": [["M"]], + "Utah's": null, + "Uta": [["M"]], + "Uta's": null, + "Ute": [["M"]], + "Ute's": null, + "utensil": [["S", "M"]], + "utensils": null, + "utensil's": null, + "uteri": null, + "uterine": null, + "uterus": [["M"]], + "uterus's": null, + "Utica": [["M"]], + "Utica's": null, + "utile": [["I"]], + "inutile": null, + "utilitarianism": [["M", "S"]], + "utilitarianism's": null, + "utilitarianisms": null, + "utilitarian": [["S"]], + "utilitarians": null, + "utility": [["M", "S"]], + "utility's": null, + "utilities": null, + "utilization": [["M", "S"]], + "utilization's": [["A"]], + "utilizations": null, + "reutilization's": null, + "utilize": [["G", "Z", "D", "R", "S"]], + "utilizing": null, + "utilizers": null, + "utilized": null, + "utilizer": [["M"]], + "utilizes": [["A"]], + "utilizer's": null, + "reutilizes": null, + "utmost": [["S"]], + "utmosts": null, + "Utopia": [["M", "S"]], + "Utopia's": null, + "Utopias": null, + "utopianism": [["M"]], + "utopianism's": null, + "utopian's": null, + "Utopian": [["S"]], + "Utopians": null, + "utopia": [["S"]], + "utopias": null, + "Utrecht": [["M"]], + "Utrecht's": null, + "Utrillo": [["M"]], + "Utrillo's": null, + "utterance": [["M", "S"]], + "utterance's": null, + "utterances": null, + "uttered": [["U"]], + "unuttered": null, + "utterer": [["M"]], + "utterer's": null, + "uttermost": [["S"]], + "uttermosts": null, + "utter": [["T", "R", "D", "Y", "G", "S"]], + "utterest": null, + "utterly": null, + "uttering": null, + "utters": null, + "uucp": [["M"]], + "uucp's": null, + "UV": null, + "uvula": [["M", "S"]], + "uvula's": null, + "uvulas": null, + "uvular": [["S"]], + "uvulars": null, + "uxorious": null, + "Uzbekistan": null, + "Uzbek": [["M"]], + "Uzbek's": null, + "Uzi": [["M"]], + "Uzi's": null, + "V": null, + "VA": null, + "vacancy": [["M", "S"]], + "vacancy's": null, + "vacancies": null, + "vacantness": [["M"]], + "vacantness's": null, + "vacant": [["P", "Y"]], + "vacantly": null, + "vacate": [["N", "G", "X", "S", "D"]], + "vacation": [["M", "R", "D", "Z", "G"]], + "vacating": null, + "vacations": null, + "vacates": null, + "vacated": null, + "vacationist": [["S", "M"]], + "vacationists": null, + "vacationist's": null, + "vacationland": null, + "vacation's": null, + "vacationer": null, + "vacationed": null, + "vacationers": null, + "vacationing": null, + "vaccinate": [["N", "G", "S", "D", "X"]], + "vaccination": [["M"]], + "vaccinating": null, + "vaccinates": null, + "vaccinated": null, + "vaccinations": null, + "vaccination's": null, + "vaccine": [["S", "M"]], + "vaccines": null, + "vaccine's": null, + "vaccinial": null, + "vaccinia": [["M"]], + "vaccinia's": null, + "Vachel": [["M"]], + "Vachel's": null, + "vacillate": [["X", "N", "G", "S", "D"]], + "vacillations": null, + "vacillation": [["M"]], + "vacillating": [["Y"]], + "vacillates": null, + "vacillated": null, + "vacillatingly": null, + "vacillation's": null, + "vacillator": [["S", "M"]], + "vacillators": null, + "vacillator's": null, + "Vaclav": [["M"]], + "Vaclav's": null, + "vacua's": null, + "vacuity": [["M", "S"]], + "vacuity's": null, + "vacuities": null, + "vacuo": null, + "vacuolated": [["U"]], + "unvacuolated": null, + "vacuolate": [["S", "D", "G", "N"]], + "vacuolates": null, + "vacuolating": null, + "vacuolation": null, + "vacuole": [["S", "M"]], + "vacuoles": null, + "vacuole's": null, + "vacuolization": [["S", "M"]], + "vacuolizations": null, + "vacuolization's": null, + "vacuousness": [["M", "S"]], + "vacuousness's": null, + "vacuousnesses": null, + "vacuous": [["P", "Y"]], + "vacuously": null, + "vacuum": [["G", "S", "M", "D"]], + "vacuuming": null, + "vacuums": null, + "vacuum's": null, + "vacuumed": null, + "Vader": [["M"]], + "Vader's": null, + "Vaduz": [["M"]], + "Vaduz's": null, + "vagabondage": [["M", "S"]], + "vagabondage's": null, + "vagabondages": null, + "vagabond": [["D", "M", "S", "G"]], + "vagabonded": null, + "vagabond's": null, + "vagabonds": null, + "vagabonding": null, + "vagarious": null, + "vagary": [["M", "S"]], + "vagary's": null, + "vagaries": null, + "vaginae": null, + "vaginal": [["Y"]], + "vaginally": null, + "vagina": [["M"]], + "vagina's": null, + "vagrancy": [["M", "S"]], + "vagrancy's": null, + "vagrancies": null, + "vagrant": [["S", "M", "Y"]], + "vagrants": null, + "vagrant's": null, + "vagrantly": null, + "vagueing": null, + "vagueness": [["M", "S"]], + "vagueness's": null, + "vaguenesses": null, + "vague": [["T", "Y", "S", "R", "D", "P"]], + "vaguest": null, + "vaguely": null, + "vagues": null, + "vaguer": null, + "vagued": null, + "Vail": [["M"]], + "Vail's": null, + "vaingloriousness": [["M"]], + "vaingloriousness's": null, + "vainglorious": [["Y", "P"]], + "vaingloriously": null, + "vainglory": [["M", "S"]], + "vainglory's": null, + "vainglories": null, + "vain": [["T", "Y", "R", "P"]], + "vainest": null, + "vainly": null, + "vainer": null, + "vainness": null, + "val": null, + "valance": [["S", "D", "M", "G"]], + "valances": null, + "valanced": null, + "valance's": null, + "valancing": null, + "Valaree": [["M"]], + "Valaree's": null, + "Valaria": [["M"]], + "Valaria's": null, + "Valarie": [["M"]], + "Valarie's": null, + "Valdemar": [["M"]], + "Valdemar's": null, + "Valdez": [["M"]], + "Valdez's": null, + "Valeda": [["M"]], + "Valeda's": null, + "valediction": [["M", "S"]], + "valediction's": null, + "valedictions": null, + "valedictorian": [["M", "S"]], + "valedictorian's": null, + "valedictorians": null, + "valedictory": [["M", "S"]], + "valedictory's": null, + "valedictories": null, + "Vale": [["M"]], + "Vale's": null, + "valence": [["S", "M"]], + "valences": null, + "valence's": null, + "Valencia": [["M", "S"]], + "Valencia's": null, + "Valencias": null, + "valency": [["M", "S"]], + "valency's": null, + "valencies": null, + "Valene": [["M"]], + "Valene's": null, + "Valenka": [["M"]], + "Valenka's": null, + "Valentia": [["M"]], + "Valentia's": null, + "Valentijn": [["M"]], + "Valentijn's": null, + "Valentina": [["M"]], + "Valentina's": null, + "Valentine": [["M"]], + "Valentine's": null, + "valentine": [["S", "M"]], + "valentines": null, + "valentine's": null, + "Valentin": [["M"]], + "Valentin's": null, + "Valentino": [["M"]], + "Valentino's": null, + "Valenzuela": [["M"]], + "Valenzuela's": null, + "Valera": [["M"]], + "Valera's": null, + "Valeria": [["M"]], + "Valeria's": null, + "Valerian": [["M"]], + "Valerian's": null, + "Valerie": [["M"]], + "Valerie's": null, + "Valerye": [["M"]], + "Valerye's": null, + "Val�ry": [["M"]], + "Val�ry's": null, + "vale": [["S", "M"]], + "vales": null, + "vale's": null, + "valet": [["G", "D", "M", "S"]], + "valeting": null, + "valeted": null, + "valet's": null, + "valets": null, + "valetudinarianism": [["M", "S"]], + "valetudinarianism's": null, + "valetudinarianisms": null, + "valetudinarian": [["M", "S"]], + "valetudinarian's": null, + "valetudinarians": null, + "Valhalla": [["M"]], + "Valhalla's": null, + "valiance": [["S"]], + "valiances": null, + "valiantness": [["M"]], + "valiantness's": null, + "valiant": [["S", "P", "Y"]], + "valiants": null, + "valiantly": null, + "Valida": [["M"]], + "Valida's": null, + "validated": [["A", "U"]], + "revalidated": null, + "unvalidated": null, + "validate": [["I", "N", "G", "S", "D", "X"]], + "invalidate": null, + "invalidation": null, + "invalidating": null, + "invalidates": null, + "invalidated": null, + "invalidations": null, + "validation": [["A", "M", "I"]], + "validating": null, + "validates": [["A"]], + "validations": null, + "revalidates": null, + "revalidation": null, + "revalidation's": null, + "validation's": null, + "invalidation's": null, + "validity": [["I", "M", "S"]], + "invalidity": null, + "invalidity's": null, + "invalidities": null, + "validity's": null, + "validities": null, + "validnesses": null, + "validness": [["M", "I"]], + "validness's": null, + "invalidness's": null, + "invalidness": null, + "valid": [["P", "I", "Y"]], + "invalidly": null, + "validly": null, + "Valina": [["M"]], + "Valina's": null, + "valise": [["M", "S"]], + "valise's": null, + "valises": null, + "Valium": [["S"]], + "Valiums": null, + "Valkyrie": [["S", "M"]], + "Valkyries": null, + "Valkyrie's": null, + "Vallejo": null, + "Valle": [["M"]], + "Valle's": null, + "Valletta": [["M"]], + "Valletta's": null, + "valley": [["S", "M"]], + "valleys": null, + "valley's": null, + "Vallie": [["M"]], + "Vallie's": null, + "Valli": [["M"]], + "Valli's": null, + "Vally": [["M"]], + "Vally's": null, + "Valma": [["M"]], + "Valma's": null, + "Val": [["M", "Y"]], + "Val's": null, + "Valois": [["M"]], + "Valois's": null, + "valor": [["M", "S"]], + "valor's": null, + "valors": null, + "valorous": [["Y"]], + "valorously": null, + "Valparaiso": [["M"]], + "Valparaiso's": null, + "Valry": [["M"]], + "Valry's": null, + "valuable": [["I", "P"]], + "invaluable": null, + "invaluableness": null, + "valuableness": [["I", "M"]], + "invaluableness's": null, + "valuableness's": null, + "valuables": null, + "valuably": [["I"]], + "invaluably": null, + "valuate": [["N", "G", "X", "S", "D"]], + "valuation": [["C", "S", "A", "M"]], + "valuating": null, + "valuations": null, + "valuates": null, + "valuated": null, + "devaluation": null, + "devaluations": null, + "devaluation's": null, + "revaluations": null, + "revaluation": null, + "revaluation's": null, + "valuation's": null, + "valuator": [["S", "M"]], + "valuators": null, + "valuator's": null, + "value": [["C", "G", "A", "S", "D"]], + "devalue": null, + "devaluing": null, + "devalues": null, + "devalued": null, + "valuing": null, + "revaluing": null, + "revalue": null, + "revalues": null, + "revalued": null, + "values": [["E"]], + "valued": [["U"]], + "unvalued": null, + "valuelessness": [["M"]], + "valuelessness's": null, + "valueless": [["P"]], + "valuer": [["S", "M"]], + "valuers": null, + "valuer's": null, + "value's": null, + "disvalues": null, + "valve": [["G", "M", "S", "D"]], + "valving": null, + "valve's": null, + "valves": null, + "valved": null, + "valveless": null, + "valvular": null, + "Va": [["M"]], + "Va's": null, + "vamoose": [["G", "S", "D"]], + "vamoosing": null, + "vamooses": null, + "vamoosed": null, + "vamp": [["A", "D", "S", "G"]], + "revamp": null, + "revamped": null, + "revamps": null, + "revamping": null, + "vamped": null, + "vamps": null, + "vamping": null, + "vamper": null, + "vampire": [["M", "G", "S", "D"]], + "vampire's": null, + "vampiring": null, + "vampires": null, + "vampired": null, + "vamp's": null, + "vanadium": [["M", "S"]], + "vanadium's": null, + "vanadiums": null, + "Vance": [["M"]], + "Vance's": null, + "Vancouver": [["M"]], + "Vancouver's": null, + "vandalism": [["M", "S"]], + "vandalism's": null, + "vandalisms": null, + "vandalize": [["G", "S", "D"]], + "vandalizing": null, + "vandalizes": null, + "vandalized": null, + "vandal": [["M", "S"]], + "vandal's": null, + "vandals": null, + "Vandal": [["M", "S"]], + "Vandal's": null, + "Vandals": null, + "Vanda": [["M"]], + "Vanda's": null, + "Vandenberg": [["M"]], + "Vandenberg's": null, + "Vanderbilt": [["M"]], + "Vanderbilt's": null, + "Vanderburgh": [["M"]], + "Vanderburgh's": null, + "Vanderpoel": [["M"]], + "Vanderpoel's": null, + "Vandyke": [["S", "M"]], + "Vandykes": null, + "Vandyke's": null, + "vane": [["M", "S"]], + "vane's": null, + "vanes": null, + "Vanessa": [["M"]], + "Vanessa's": null, + "Vang": [["M"]], + "Vang's": null, + "vanguard": [["M", "S"]], + "vanguard's": null, + "vanguards": null, + "Vania": [["M"]], + "Vania's": null, + "vanilla": [["M", "S"]], + "vanilla's": null, + "vanillas": null, + "vanisher": [["M"]], + "vanisher's": null, + "vanish": [["G", "R", "S", "D", "J"]], + "vanishing": [["Y"]], + "vanishes": null, + "vanished": null, + "vanishings": null, + "vanishingly": null, + "vanity": [["S", "M"]], + "vanities": null, + "vanity's": null, + "Van": [["M"]], + "Van's": null, + "Vanna": [["M"]], + "Vanna's": null, + "vanned": null, + "Vannie": [["M"]], + "Vannie's": null, + "Vanni": [["M"]], + "Vanni's": null, + "vanning": null, + "Vanny": [["M"]], + "Vanny's": null, + "vanquisher": [["M"]], + "vanquisher's": null, + "vanquish": [["R", "S", "D", "G", "Z"]], + "vanquishes": null, + "vanquished": null, + "vanquishing": null, + "vanquishers": null, + "van": [["S", "M", "D"]], + "vans": null, + "van's": null, + "vaned": null, + "vantage": [["M", "S"]], + "vantage's": null, + "vantages": null, + "Vanuatu": null, + "Vanya": [["M"]], + "Vanya's": null, + "Vanzetti": [["M"]], + "Vanzetti's": null, + "vapidity": [["M", "S"]], + "vapidity's": null, + "vapidities": null, + "vapidness": [["S", "M"]], + "vapidnesses": null, + "vapidness's": null, + "vapid": [["P", "Y"]], + "vapidly": null, + "vaporer": [["M"]], + "vaporer's": null, + "vaporing": [["M", "Y"]], + "vaporing's": null, + "vaporingly": null, + "vaporisation": null, + "vaporise": [["D", "S", "G"]], + "vaporised": null, + "vaporises": null, + "vaporising": null, + "vaporization": [["A", "M", "S"]], + "revaporization": null, + "revaporization's": null, + "revaporizations": null, + "vaporization's": null, + "vaporizations": null, + "vaporize": [["D", "R", "S", "Z", "G"]], + "vaporized": null, + "vaporizer": [["M"]], + "vaporizes": null, + "vaporizers": null, + "vaporizing": null, + "vaporizer's": null, + "vapor": [["M", "R", "D", "J", "G", "Z", "S"]], + "vapor's": null, + "vapored": null, + "vaporings": null, + "vaporers": null, + "vapors": null, + "vaporous": null, + "vapory": null, + "vaquero": [["S", "M"]], + "vaqueros": null, + "vaquero's": null, + "VAR": null, + "Varanasi": [["M"]], + "Varanasi's": null, + "Varese": [["M"]], + "Varese's": null, + "Vargas": [["M"]], + "Vargas's": null, + "variability": [["I", "M", "S"]], + "invariability": null, + "invariability's": null, + "invariabilities": null, + "variability's": null, + "variabilities": null, + "variableness": [["I", "M"]], + "invariableness's": null, + "variableness's": null, + "variable": [["P", "M", "S"]], + "variable's": null, + "variables": [["I"]], + "invariables": null, + "variably": [["I"]], + "invariably": null, + "variance": [["I"]], + "invariance": null, + "variances": null, + "variance's": null, + "Varian": [["M"]], + "Varian's": null, + "variant": [["I", "S", "Y"]], + "invariants": null, + "invariantly": null, + "variants": null, + "variantly": null, + "variate": [["M", "G", "N", "S", "D", "X"]], + "variate's": null, + "variating": null, + "variation": [["M"]], + "variates": null, + "variated": null, + "variations": null, + "variational": null, + "variation's": null, + "varicolored": [["M", "S"]], + "varicolored's": null, + "varicoloreds": null, + "varicose": [["S"]], + "varicoses": null, + "variedly": null, + "varied": [["U"]], + "unvaried": null, + "variegate": [["N", "G", "X", "S", "D"]], + "variegation": [["M"]], + "variegating": null, + "variegations": null, + "variegates": null, + "variegated": null, + "variegation's": null, + "varier": [["M"]], + "varier's": null, + "varietal": [["S"]], + "varietals": null, + "variety": [["M", "S"]], + "variety's": null, + "varieties": null, + "various": [["P", "Y"]], + "variousness": null, + "variously": null, + "varistor": [["M"]], + "varistor's": null, + "Varityping": [["M"]], + "Varityping's": null, + "varlet": [["M", "S"]], + "varlet's": null, + "varlets": null, + "varmint": [["S", "M"]], + "varmints": null, + "varmint's": null, + "varnished": [["U"]], + "unvarnished": null, + "varnisher": [["M"]], + "varnisher's": null, + "varnish": [["Z", "G", "M", "D", "R", "S"]], + "varnishers": null, + "varnishing": null, + "varnish's": null, + "varnishes": null, + "var": [["S"]], + "vars": null, + "varsity": [["M", "S"]], + "varsity's": null, + "varsities": null, + "varying": [["U", "Y"]], + "unvarying": null, + "unvaryingly": null, + "varyingly": null, + "vary": [["S", "R", "D", "J", "G"]], + "varies": null, + "varyings": null, + "vascular": null, + "vasectomy": [["S", "M"]], + "vasectomies": null, + "vasectomy's": null, + "Vaseline": [["D", "S", "M", "G"]], + "Vaselined": null, + "Vaselines": null, + "Vaseline's": null, + "Vaselining": null, + "vase": [["S", "M"]], + "vases": null, + "vase's": null, + "Vasili": [["M", "S"]], + "Vasili's": null, + "Vasilis": null, + "Vasily": [["M"]], + "Vasily's": null, + "vasomotor": null, + "Vasquez": [["M"]], + "Vasquez's": null, + "vassalage": [["M", "S"]], + "vassalage's": null, + "vassalages": null, + "vassal": [["G", "S", "M", "D"]], + "vassaling": null, + "vassals": null, + "vassal's": null, + "vassaled": null, + "Vassar": [["M"]], + "Vassar's": null, + "Vassili": [["M"]], + "Vassili's": null, + "Vassily": [["M"]], + "Vassily's": null, + "vastness": [["M", "S"]], + "vastness's": null, + "vastnesses": null, + "vast": [["P", "T", "S", "Y", "R"]], + "vastest": null, + "vasts": null, + "vastly": null, + "vaster": null, + "v": [["A", "S", "V"]], + "revs": null, + "vs": null, + "vive": [["Z"]], + "VAT": null, + "Vatican": [["M"]], + "Vatican's": null, + "vat": [["S", "M"]], + "vats": null, + "vat's": null, + "vatted": null, + "vatting": null, + "vaudeville": [["S", "M"]], + "vaudevilles": null, + "vaudeville's": null, + "vaudevillian": [["S", "M"]], + "vaudevillians": null, + "vaudevillian's": null, + "Vaudois": null, + "Vaughan": [["M"]], + "Vaughan's": null, + "Vaughn": [["M"]], + "Vaughn's": null, + "vaulter": [["M"]], + "vaulter's": null, + "vaulting": [["M"]], + "vaulting's": null, + "vault": [["Z", "S", "R", "D", "M", "G", "J"]], + "vaulters": null, + "vaults": null, + "vaulted": null, + "vault's": null, + "vaultings": null, + "vaunter": [["M"]], + "vaunter's": null, + "vaunt": [["G", "R", "D", "S"]], + "vaunting": null, + "vaunted": null, + "vaunts": null, + "VAXes": null, + "Vax": [["M"]], + "Vax's": null, + "VAX": [["M"]], + "VAX's": null, + "Vazquez": [["M"]], + "Vazquez's": null, + "vb": null, + "VCR": null, + "VD": null, + "VDT": null, + "VDU": null, + "vealed": [["A"]], + "vealer": [["M", "A"]], + "vealer's": null, + "revealer's": null, + "revealer": null, + "veal": [["M", "R", "D", "G", "S"]], + "veal's": null, + "vealing": null, + "veals": [["A"]], + "reveals": null, + "Veblen": [["M"]], + "Veblen's": null, + "vectorial": null, + "vectorization": null, + "vectorized": null, + "vectorizing": null, + "vector's": [["F"]], + "convector's": null, + "vector": [["S", "G", "D", "M"]], + "vectors": null, + "vectoring": null, + "vectored": null, + "Veda": [["M", "S"]], + "Veda's": null, + "Vedas": null, + "Vedanta": [["M"]], + "Vedanta's": null, + "veejay": [["S"]], + "veejays": null, + "veep": [["S"]], + "veeps": null, + "veer": [["D", "S", "G"]], + "veered": null, + "veers": null, + "veering": [["Y"]], + "veeringly": null, + "vegan": [["S", "M"]], + "vegans": null, + "vegan's": null, + "Vega": [["S", "M"]], + "Vegas": null, + "Vega's": null, + "Vegemite": [["M"]], + "Vegemite's": null, + "veges": null, + "vegetable": [["M", "S"]], + "vegetable's": null, + "vegetables": null, + "vegetarianism": [["M", "S"]], + "vegetarianism's": null, + "vegetarianisms": null, + "vegetarian": [["S", "M"]], + "vegetarians": null, + "vegetarian's": null, + "vegetate": [["D", "S", "N", "G", "V", "X"]], + "vegetated": null, + "vegetates": null, + "vegetation": [["M"]], + "vegetating": null, + "vegetative": [["P", "Y"]], + "vegetations": null, + "vegetation's": null, + "vegetativeness": null, + "vegetatively": null, + "vegged": null, + "veggie": [["S"]], + "veggies": null, + "vegging": null, + "veg": [["M"]], + "veg's": null, + "vehemence": [["M", "S"]], + "vehemence's": null, + "vehemences": null, + "vehemency": [["S"]], + "vehemencies": null, + "vehement": [["Y"]], + "vehemently": null, + "vehicle": [["S", "M"]], + "vehicles": null, + "vehicle's": null, + "vehicular": null, + "veiling": [["M", "U"]], + "veiling's": null, + "unveiling's": null, + "unveiling": null, + "veil's": null, + "veil": [["U", "G", "S", "D"]], + "unveil": null, + "unveils": null, + "unveiled": null, + "veils": null, + "veiled": null, + "vein": [["G", "S", "R", "D", "M"]], + "veining": [["M"]], + "veins": null, + "veiner": null, + "veined": null, + "vein's": null, + "veining's": null, + "vela": [["M"]], + "vela's": null, + "Vela": [["M"]], + "Vela's": null, + "velarize": [["S", "D", "G"]], + "velarizes": null, + "velarized": null, + "velarizing": null, + "velar": [["S"]], + "velars": null, + "Vel�squez": [["M"]], + "Vel�squez's": null, + "Vel�zquez": null, + "Velcro": [["S", "M"]], + "Velcros": null, + "Velcro's": null, + "veld": [["S", "M"]], + "velds": null, + "veld's": null, + "veldt's": null, + "Velez": [["M"]], + "Velez's": null, + "Vella": [["M"]], + "Vella's": null, + "vellum": [["M", "S"]], + "vellum's": null, + "vellums": null, + "Velma": [["M"]], + "Velma's": null, + "velocipede": [["S", "M"]], + "velocipedes": null, + "velocipede's": null, + "velocity": [["S", "M"]], + "velocities": null, + "velocity's": null, + "velor": [["S"]], + "velors": null, + "velour's": null, + "velum": [["M"]], + "velum's": null, + "Velveeta": [["M"]], + "Velveeta's": null, + "velveteen": [["M", "S"]], + "velveteen's": null, + "velveteens": null, + "velvet": [["G", "S", "M", "D"]], + "velveting": null, + "velvets": null, + "velvet's": null, + "velveted": null, + "Velvet": [["M"]], + "Velvet's": null, + "velvety": [["R", "T"]], + "velvetier": null, + "velvetiest": null, + "venality": [["M", "S"]], + "venality's": null, + "venalities": null, + "venal": [["Y"]], + "venally": null, + "venation": [["S", "M"]], + "venations": null, + "venation's": null, + "vend": [["D", "S", "G"]], + "vended": null, + "vends": null, + "vending": null, + "vender's": [["K"]], + "provender's": null, + "vendetta": [["M", "S"]], + "vendetta's": null, + "vendettas": null, + "vendible": [["S"]], + "vendibles": null, + "vendor": [["M", "S"]], + "vendor's": null, + "vendors": null, + "veneerer": [["M"]], + "veneerer's": null, + "veneer": [["G", "S", "R", "D", "M"]], + "veneering": [["M"]], + "veneers": null, + "veneered": null, + "veneer's": null, + "veneering's": null, + "venerability": [["S"]], + "venerabilities": null, + "venerable": [["P"]], + "venerableness": null, + "venerate": [["X", "N", "G", "S", "D"]], + "venerations": null, + "veneration": [["M"]], + "venerating": null, + "venerates": null, + "venerated": null, + "veneration's": null, + "venereal": null, + "venetian": null, + "Venetian": [["S", "M"]], + "Venetians": null, + "Venetian's": null, + "Venezuela": [["M"]], + "Venezuela's": null, + "Venezuelan": [["S"]], + "Venezuelans": null, + "vengeance": [["M", "S"]], + "vengeance's": null, + "vengeances": null, + "vengeful": [["A", "P", "Y"]], + "revengeful": null, + "revengefulness": null, + "revengefully": null, + "vengefulness": [["A", "M"]], + "vengefully": null, + "revengefulness's": null, + "vengefulness's": null, + "venialness": [["M"]], + "venialness's": null, + "venial": [["Y", "P"]], + "venially": null, + "Venice": [["M"]], + "Venice's": null, + "venireman": [["M"]], + "venireman's": null, + "veniremen": null, + "venison": [["S", "M"]], + "venisons": null, + "venison's": null, + "Venita": [["M"]], + "Venita's": null, + "Venn": [["M"]], + "Venn's": null, + "venomousness": [["M"]], + "venomousness's": null, + "venomous": [["Y", "P"]], + "venomously": null, + "venom": [["S", "G", "D", "M"]], + "venoms": null, + "venoming": null, + "venomed": null, + "venom's": null, + "venous": [["Y"]], + "venously": null, + "venter": [["M"]], + "venter's": null, + "ventilated": [["U"]], + "unventilated": null, + "ventilate": [["X", "S", "D", "V", "G", "N"]], + "ventilations": null, + "ventilates": null, + "ventilative": null, + "ventilating": null, + "ventilation": [["M"]], + "ventilation's": null, + "ventilator": [["M", "S"]], + "ventilator's": null, + "ventilators": null, + "vent": [["I", "S", "G", "F", "D"]], + "vents": null, + "convents": null, + "venting": null, + "conventing": null, + "convent": null, + "convented": null, + "vented": null, + "ventral": [["Y", "S"]], + "ventrally": null, + "ventrals": null, + "ventricle": [["M", "S"]], + "ventricle's": null, + "ventricles": null, + "ventricular": null, + "ventriloquies": null, + "ventriloquism": [["M", "S"]], + "ventriloquism's": null, + "ventriloquisms": null, + "ventriloquist": [["M", "S"]], + "ventriloquist's": null, + "ventriloquists": null, + "ventriloquy": null, + "vent's": [["F"]], + "convent's": null, + "Ventura": [["M"]], + "Ventura's": null, + "venture": [["R", "S", "D", "J", "Z", "G"]], + "venturer": null, + "ventures": null, + "ventured": null, + "venturings": null, + "venturers": null, + "venturing": null, + "venturesomeness": [["S", "M"]], + "venturesomenesses": null, + "venturesomeness's": null, + "venturesome": [["Y", "P"]], + "venturesomely": null, + "venturi": [["S"]], + "venturis": null, + "venturousness": [["M", "S"]], + "venturousness's": null, + "venturousnesses": null, + "venturous": [["Y", "P"]], + "venturously": null, + "venue": [["M", "A", "S"]], + "venue's": null, + "revenue's": null, + "revenues": null, + "venues": null, + "Venusian": [["S"]], + "Venusians": null, + "Venus": [["S"]], + "Venuses": null, + "veraciousness": [["M"]], + "veraciousness's": null, + "veracious": [["Y", "P"]], + "veraciously": null, + "veracities": null, + "veracity": [["I", "M"]], + "inveracity": null, + "inveracity's": null, + "veracity's": null, + "Veracruz": [["M"]], + "Veracruz's": null, + "Veradis": null, + "Vera": [["M"]], + "Vera's": null, + "verandahed": null, + "veranda": [["S", "D", "M"]], + "verandas": null, + "verandaed": null, + "veranda's": null, + "verbalization": [["M", "S"]], + "verbalization's": null, + "verbalizations": null, + "verbalized": [["U"]], + "unverbalized": null, + "verbalizer": [["M"]], + "verbalizer's": null, + "verbalize": [["Z", "G", "R", "S", "D"]], + "verbalizers": null, + "verbalizing": null, + "verbalizes": null, + "verballed": null, + "verballing": null, + "verbal": [["S", "Y"]], + "verbals": null, + "verbally": null, + "verbatim": null, + "verbena": [["M", "S"]], + "verbena's": null, + "verbenas": null, + "verbiage": [["S", "M"]], + "verbiages": null, + "verbiage's": null, + "verb": [["K", "S", "M"]], + "proverbs": null, + "proverb's": null, + "verbs": null, + "verb's": null, + "verbose": [["Y", "P"]], + "verbosely": null, + "verboseness": null, + "verbosity": [["S", "M"]], + "verbosities": null, + "verbosity's": null, + "verboten": null, + "verdant": [["Y"]], + "verdantly": null, + "Verde": [["M"]], + "Verde's": null, + "Verderer": [["M"]], + "Verderer's": null, + "verdict": [["S", "M"]], + "verdicts": null, + "verdict's": null, + "verdigris": [["G", "S", "D", "M"]], + "verdigrising": null, + "verdigrises": null, + "verdigrised": null, + "verdigris's": null, + "Verdi": [["M"]], + "Verdi's": null, + "verdure": [["S", "D", "M"]], + "verdures": null, + "verdured": null, + "verdure's": null, + "Vere": [["M"]], + "Vere's": null, + "Verena": [["M"]], + "Verena's": null, + "Verene": [["M"]], + "Verene's": null, + "verge": [["F", "G", "S", "D"]], + "converge": null, + "converging": null, + "converges": null, + "converged": null, + "verging": null, + "verges": null, + "verged": null, + "Verge": [["M"]], + "Verge's": null, + "verger": [["S", "M"]], + "vergers": null, + "verger's": null, + "verge's": null, + "Vergil's": null, + "veridical": [["Y"]], + "veridically": null, + "Veriee": [["M"]], + "Veriee's": null, + "verifiability": [["M"]], + "verifiability's": null, + "verifiableness": [["M"]], + "verifiableness's": null, + "verifiable": [["U"]], + "unverifiable": null, + "verification": [["S"]], + "verifications": null, + "verified": [["U"]], + "unverified": null, + "verifier": [["M", "S"]], + "verifier's": null, + "verifiers": null, + "verify": [["G", "A", "S", "D"]], + "verifying": null, + "reverifying": null, + "reverify": null, + "reverifies": null, + "reverified": null, + "verifies": null, + "Verile": [["M"]], + "Verile's": null, + "verily": null, + "Verina": [["M"]], + "Verina's": null, + "Verine": [["M"]], + "Verine's": null, + "verisimilitude": [["S", "M"]], + "verisimilitudes": null, + "verisimilitude's": null, + "veritableness": [["M"]], + "veritableness's": null, + "veritable": [["P"]], + "veritably": null, + "verity": [["M", "S"]], + "verity's": null, + "verities": null, + "Verlag": [["M"]], + "Verlag's": null, + "Verlaine": [["M"]], + "Verlaine's": null, + "Verla": [["M"]], + "Verla's": null, + "Vermeer": [["M"]], + "Vermeer's": null, + "vermicelli": [["M", "S"]], + "vermicelli's": null, + "vermicellis": null, + "vermiculite": [["M", "S"]], + "vermiculite's": null, + "vermiculites": null, + "vermiform": null, + "vermilion": [["M", "S"]], + "vermilion's": null, + "vermilions": null, + "vermin": [["M"]], + "vermin's": null, + "verminous": null, + "Vermonter": [["M"]], + "Vermonter's": null, + "Vermont": [["Z", "R", "M"]], + "Vermonters": null, + "Vermont's": null, + "vermouth": [["M"]], + "vermouth's": null, + "vermouths": null, + "vernacular": [["Y", "S"]], + "vernacularly": null, + "vernaculars": null, + "vernal": [["Y"]], + "vernally": null, + "Verna": [["M"]], + "Verna's": null, + "Verne": [["M"]], + "Verne's": null, + "Vernen": [["M"]], + "Vernen's": null, + "Verney": [["M"]], + "Verney's": null, + "Vernice": [["M"]], + "Vernice's": null, + "vernier": [["S", "M"]], + "verniers": null, + "vernier's": null, + "Vern": [["N", "M"]], + "Vern's": null, + "Vernon": [["M"]], + "Vernon's": null, + "Vernor": [["M"]], + "Vernor's": null, + "Verona": [["M"]], + "Verona's": null, + "Veronese": [["M"]], + "Veronese's": null, + "Veronica": [["M"]], + "Veronica's": null, + "veronica": [["S", "M"]], + "veronicas": null, + "veronica's": null, + "Veronika": [["M"]], + "Veronika's": null, + "Veronike": [["M"]], + "Veronike's": null, + "Veronique": [["M"]], + "Veronique's": null, + "verrucae": null, + "verruca": [["M", "S"]], + "verruca's": null, + "verrucas": null, + "versa": null, + "Versailles": [["M"]], + "Versailles's": null, + "Versatec": [["M"]], + "Versatec's": null, + "versatileness": [["M"]], + "versatileness's": null, + "versatile": [["Y", "P"]], + "versatilely": null, + "versatility": [["S", "M"]], + "versatilities": null, + "versatility's": null, + "versed": [["U", "I"]], + "unversed": null, + "inversed": null, + "verse's": null, + "verses": [["I"]], + "inverses": null, + "verse": [["X", "S", "R", "D", "A", "G", "N", "F"]], + "versions": null, + "reversions": null, + "conversions": null, + "reverses": null, + "converses": null, + "verser": null, + "converser": null, + "reversed": null, + "conversed": null, + "reversing": null, + "versing": [["I"]], + "conversing": null, + "version": [["M", "F", "I", "S", "A"]], + "versicle": [["M"]], + "versicle's": null, + "versification": [["M"]], + "versification's": null, + "versifier": [["M"]], + "versifier's": null, + "versify": [["G", "D", "R", "S", "Z", "X", "N"]], + "versifying": null, + "versified": null, + "versifies": null, + "versifiers": null, + "versifications": null, + "inversing": null, + "version's": null, + "inversion's": null, + "reversion's": null, + "inversion": null, + "inversions": null, + "verso": [["S", "M"]], + "versos": null, + "verso's": null, + "versus": null, + "vertebrae": null, + "vertebral": [["Y"]], + "vertebrally": null, + "vertebra": [["M"]], + "vertebra's": null, + "vertebrate": [["I", "M", "S"]], + "invertebrate": null, + "invertebrate's": null, + "invertebrates": null, + "vertebrate's": null, + "vertebrates": null, + "vertebration": [["M"]], + "vertebration's": null, + "vertex": [["S", "M"]], + "vertexes": null, + "vertex's": null, + "vertical": [["Y", "P", "S"]], + "vertically": null, + "verticalness": null, + "verticals": null, + "vertices's": null, + "vertiginous": null, + "vertigoes": null, + "vertigo": [["M"]], + "vertigo's": null, + "verve": [["S", "M"]], + "verves": null, + "verve's": null, + "very": [["R", "T"]], + "verier": null, + "veriest": null, + "Vesalius": [["M"]], + "Vesalius's": null, + "vesicle": [["S", "M"]], + "vesicles": null, + "vesicle's": null, + "vesicular": [["Y"]], + "vesicularly": null, + "vesiculate": [["G", "S", "D"]], + "vesiculating": null, + "vesiculates": null, + "vesiculated": null, + "Vespasian": [["M"]], + "Vespasian's": null, + "vesper": [["S", "M"]], + "vespers": null, + "vesper's": null, + "Vespucci": [["M"]], + "Vespucci's": null, + "vessel": [["M", "S"]], + "vessel's": null, + "vessels": null, + "vestal": [["Y", "S"]], + "vestally": null, + "vestals": null, + "Vesta": [["M"]], + "Vesta's": null, + "vest": [["D", "I", "G", "S", "L"]], + "vested": null, + "vesting": [["S", "M"]], + "vests": null, + "vestment": [["I", "S", "M"]], + "vestibular": null, + "vestibule": [["S", "D", "M"]], + "vestibules": null, + "vestibuled": null, + "vestibule's": null, + "vestige": [["S", "M"]], + "vestiges": null, + "vestige's": null, + "vestigial": [["Y"]], + "vestigially": null, + "vestings": null, + "vesting's": null, + "vestments": null, + "vestment's": null, + "vestryman": [["M"]], + "vestryman's": null, + "vestrymen": null, + "vestry": [["M", "S"]], + "vestry's": null, + "vestries": null, + "vest's": null, + "vesture": [["S", "D", "M", "G"]], + "vestures": null, + "vestured": null, + "vesture's": null, + "vesturing": null, + "Vesuvius": [["M"]], + "Vesuvius's": null, + "vetch": [["S", "M"]], + "vetches": null, + "vetch's": null, + "veteran": [["S", "M"]], + "veterans": null, + "veteran's": null, + "veterinarian": [["M", "S"]], + "veterinarian's": null, + "veterinarians": null, + "veterinary": [["S"]], + "veterinaries": null, + "veter": [["M"]], + "veter's": null, + "veto": [["D", "M", "G"]], + "vetoed": null, + "veto's": null, + "vetoing": null, + "vetoes": null, + "vet": [["S", "M", "R"]], + "vets": null, + "vet's": null, + "vetted": null, + "vetting": [["A"]], + "revetting": null, + "Vevay": [["M"]], + "Vevay's": null, + "vexation": [["S", "M"]], + "vexations": null, + "vexation's": null, + "vexatiousness": [["M"]], + "vexatiousness's": null, + "vexatious": [["P", "Y"]], + "vexatiously": null, + "vexed": [["Y"]], + "vexedly": null, + "vex": [["G", "F", "S", "D"]], + "vexing": null, + "convexing": null, + "convexes": null, + "convexed": null, + "vexes": null, + "VF": null, + "VFW": null, + "VG": null, + "VGA": null, + "vhf": null, + "VHF": null, + "VHS": null, + "VI": null, + "via": null, + "viability": [["S", "M"]], + "viabilities": null, + "viability's": null, + "viable": [["I"]], + "inviable": null, + "viably": null, + "viaduct": [["M", "S"]], + "viaduct's": null, + "viaducts": null, + "Viagra": [["M"]], + "Viagra's": null, + "vial": [["M", "D", "G", "S"]], + "vial's": null, + "vialed": null, + "vialing": null, + "vials": null, + "viand": [["S", "M"]], + "viands": null, + "viand's": null, + "vibe": [["S"]], + "vibes": null, + "vibraharp": [["M", "S"]], + "vibraharp's": null, + "vibraharps": null, + "vibrancy": [["M", "S"]], + "vibrancy's": null, + "vibrancies": null, + "vibrant": [["Y", "S"]], + "vibrantly": null, + "vibrants": null, + "vibraphone": [["M", "S"]], + "vibraphone's": null, + "vibraphones": null, + "vibraphonist": [["S", "M"]], + "vibraphonists": null, + "vibraphonist's": null, + "vibrate": [["X", "N", "G", "S", "D"]], + "vibrations": null, + "vibration": [["M"]], + "vibrating": null, + "vibrates": null, + "vibrated": null, + "vibrational": [["Y"]], + "vibrationally": null, + "vibration's": null, + "vibrato": [["M", "S"]], + "vibrato's": null, + "vibratos": null, + "vibrator": [["S", "M"]], + "vibrators": null, + "vibrator's": null, + "vibratory": null, + "vibrio": [["M"]], + "vibrio's": null, + "vibrionic": null, + "viburnum": [["S", "M"]], + "viburnums": null, + "viburnum's": null, + "vicarage": [["S", "M"]], + "vicarages": null, + "vicarage's": null, + "vicariousness": [["M", "S"]], + "vicariousness's": null, + "vicariousnesses": null, + "vicarious": [["Y", "P"]], + "vicariously": null, + "vicar": [["S", "M"]], + "vicars": null, + "vicar's": null, + "vice": [["C", "M", "S"]], + "device": null, + "device's": null, + "devices": null, + "vice's": null, + "vices": null, + "viced": null, + "vicegerent": [["M", "S"]], + "vicegerent's": null, + "vicegerents": null, + "vicennial": null, + "Vicente": [["M"]], + "Vicente's": null, + "viceregal": null, + "viceroy": [["S", "M"]], + "viceroys": null, + "viceroy's": null, + "Vichy": [["M"]], + "Vichy's": null, + "vichyssoise": [["M", "S"]], + "vichyssoise's": null, + "vichyssoises": null, + "vicing": null, + "vicinity": [["M", "S"]], + "vicinity's": null, + "vicinities": null, + "viciousness": [["S"]], + "viciousnesses": null, + "vicious": [["Y", "P"]], + "viciously": null, + "vicissitude": [["M", "S"]], + "vicissitude's": null, + "vicissitudes": null, + "Vickers": [["M"]], + "Vickers's": null, + "Vickie": [["M"]], + "Vickie's": null, + "Vicki": [["M"]], + "Vicki's": null, + "Vicksburg": [["M"]], + "Vicksburg's": null, + "Vicky": [["M"]], + "Vicky's": null, + "Vick": [["Z", "M"]], + "Vick's": null, + "Vic": [["M"]], + "Vic's": null, + "victimization": [["S", "M"]], + "victimizations": null, + "victimization's": null, + "victimized": [["U"]], + "unvictimized": null, + "victimizer": [["M"]], + "victimizer's": null, + "victimize": [["S", "R", "D", "Z", "G"]], + "victimizes": null, + "victimizers": null, + "victimizing": null, + "victim": [["S", "M"]], + "victims": null, + "victim's": null, + "Victoir": [["M"]], + "Victoir's": null, + "Victoria": [["M"]], + "Victoria's": null, + "Victorianism": [["S"]], + "Victorianisms": null, + "Victorian": [["S"]], + "Victorians": null, + "victoriousness": [["M"]], + "victoriousness's": null, + "victorious": [["Y", "P"]], + "victoriously": null, + "Victor": [["M"]], + "Victor's": null, + "victor": [["S", "M"]], + "victors": null, + "victor's": null, + "victory": [["M", "S"]], + "victory's": null, + "victories": null, + "Victrola": [["S", "M"]], + "Victrolas": null, + "Victrola's": null, + "victualer": [["M"]], + "victualer's": null, + "victual": [["Z", "G", "S", "D", "R"]], + "victualers": null, + "victualing": null, + "victuals": null, + "victualed": null, + "vicu�a": [["S"]], + "vicu�as": null, + "Vidal": [["M"]], + "Vidal's": null, + "Vida": [["M"]], + "Vida's": null, + "videlicet": null, + "videocassette": [["S"]], + "videocassettes": null, + "videoconferencing": null, + "videodisc": [["S"]], + "videodiscs": null, + "videodisk": [["S", "M"]], + "videodisks": null, + "videodisk's": null, + "video": [["G", "S", "M", "D"]], + "videoing": null, + "videos": null, + "video's": null, + "videoed": null, + "videophone": [["S", "M"]], + "videophones": null, + "videophone's": null, + "videotape": [["S", "D", "G", "M"]], + "videotapes": null, + "videotaped": null, + "videotaping": null, + "videotape's": null, + "Vidovic": [["M"]], + "Vidovic's": null, + "Vidovik": [["M"]], + "Vidovik's": null, + "Vienna": [["M"]], + "Vienna's": null, + "Viennese": [["M"]], + "Viennese's": null, + "Vientiane": [["M"]], + "Vientiane's": null, + "vier": [["M"]], + "vier's": null, + "vie": [["S"]], + "vies": null, + "Vietcong": [["M"]], + "Vietcong's": null, + "Viet": [["M"]], + "Viet's": null, + "Vietminh": [["M"]], + "Vietminh's": null, + "Vietnamese": [["M"]], + "Vietnamese's": null, + "Vietnam": [["M"]], + "Vietnam's": null, + "viewed": [["A"]], + "reviewed": null, + "viewer": [["A", "S"]], + "reviewer": null, + "reviewers": null, + "viewers": null, + "viewer's": null, + "viewfinder": [["M", "S"]], + "viewfinder's": null, + "viewfinders": null, + "viewgraph": [["S", "M"]], + "viewgraphes": null, + "viewgraph's": null, + "viewing": [["M"]], + "viewing's": null, + "viewless": [["Y"]], + "viewlessly": null, + "view": [["M", "B", "G", "Z", "J", "S", "R", "D"]], + "view's": null, + "viewable": null, + "viewings": null, + "views": [["A"]], + "viewpoint": [["S", "M"]], + "viewpoints": null, + "viewpoint's": null, + "reviews": null, + "vigesimal": null, + "vigilance": [["M", "S"]], + "vigilance's": null, + "vigilances": null, + "vigilante": [["S", "M"]], + "vigilantes": null, + "vigilante's": null, + "vigilantism": [["M", "S"]], + "vigilantism's": null, + "vigilantisms": null, + "vigilantist": null, + "vigilant": [["Y"]], + "vigilantly": null, + "vigil": [["S", "M"]], + "vigils": null, + "vigil's": null, + "vignette": [["M", "G", "D", "R", "S"]], + "vignette's": null, + "vignetting": [["M"]], + "vignetted": null, + "vignetter": [["M"]], + "vignettes": null, + "vignetter's": null, + "vignetting's": null, + "vignettist": [["M", "S"]], + "vignettist's": null, + "vignettists": null, + "vigor": [["M", "S"]], + "vigor's": null, + "vigors": null, + "vigorousness": [["M"]], + "vigorousness's": null, + "vigorous": [["Y", "P"]], + "vigorously": null, + "vii": null, + "viii": null, + "Vijayawada": [["M"]], + "Vijayawada's": null, + "Viki": [["M"]], + "Viki's": null, + "Viking": [["M", "S"]], + "Viking's": null, + "Vikings": null, + "viking": [["S"]], + "vikings": null, + "Vikki": [["M"]], + "Vikki's": null, + "Vikky": [["M"]], + "Vikky's": null, + "Vikram": [["M"]], + "Vikram's": null, + "Vila": null, + "vile": [["A", "R"]], + "viler": null, + "vilely": null, + "vileness": [["M", "S"]], + "vileness's": null, + "vilenesses": null, + "vilest": null, + "Vilhelmina": [["M"]], + "Vilhelmina's": null, + "vilification": [["M"]], + "vilification's": null, + "vilifier": [["M"]], + "vilifier's": null, + "vilify": [["G", "N", "X", "R", "S", "D"]], + "vilifying": null, + "vilifications": null, + "vilifies": null, + "vilified": null, + "villager": [["M"]], + "villager's": null, + "village": [["R", "S", "M", "Z"]], + "villages": null, + "village's": null, + "villagers": null, + "villainousness": [["M"]], + "villainousness's": null, + "villainous": [["Y", "P"]], + "villainously": null, + "villain": [["S", "M"]], + "villains": null, + "villain's": null, + "villainy": [["M", "S"]], + "villainy's": null, + "villainies": null, + "Villa": [["M"]], + "Villa's": null, + "villa": [["M", "S"]], + "villa's": null, + "villas": null, + "Villarreal": [["M"]], + "Villarreal's": null, + "ville": null, + "villeinage": [["S", "M"]], + "villeinages": null, + "villeinage's": null, + "villein": [["M", "S"]], + "villein's": null, + "villeins": null, + "villi": null, + "Villon": [["M"]], + "Villon's": null, + "villus": [["M"]], + "villus's": null, + "Vilma": [["M"]], + "Vilma's": null, + "Vilnius": [["M"]], + "Vilnius's": null, + "Vilyui": [["M"]], + "Vilyui's": null, + "Vi": [["M"]], + "Vi's": null, + "vi": [["M", "D", "R"]], + "vi's": null, + "vied": null, + "vim": [["M", "S"]], + "vim's": null, + "vims": null, + "vinaigrette": [["M", "S"]], + "vinaigrette's": null, + "vinaigrettes": null, + "Vina": [["M"]], + "Vina's": null, + "Vince": [["M"]], + "Vince's": null, + "Vincent": [["M", "S"]], + "Vincent's": null, + "Vincents": null, + "Vincenty": [["M"]], + "Vincenty's": null, + "Vincenz": [["M"]], + "Vincenz's": null, + "vincible": [["I"]], + "Vinci": [["M"]], + "Vinci's": null, + "Vindemiatrix": [["M"]], + "Vindemiatrix's": null, + "vindicate": [["X", "S", "D", "V", "G", "N"]], + "vindications": null, + "vindicates": null, + "vindicated": null, + "vindicative": null, + "vindicating": null, + "vindication": [["M"]], + "vindication's": null, + "vindicator": [["S", "M"]], + "vindicators": null, + "vindicator's": null, + "vindictiveness": [["M", "S"]], + "vindictiveness's": null, + "vindictivenesses": null, + "vindictive": [["P", "Y"]], + "vindictively": null, + "vinegar": [["D", "M", "S", "G"]], + "vinegared": null, + "vinegar's": null, + "vinegars": null, + "vinegaring": null, + "vinegary": null, + "vine": [["M", "G", "D", "S"]], + "vine's": null, + "vining": null, + "vined": null, + "vines": null, + "vineyard": [["S", "M"]], + "vineyards": null, + "vineyard's": null, + "Vinita": [["M"]], + "Vinita's": null, + "Vin": [["M"]], + "Vin's": null, + "Vinnie": [["M"]], + "Vinnie's": null, + "Vinni": [["M"]], + "Vinni's": null, + "Vinny": [["M"]], + "Vinny's": null, + "vino": [["M", "S"]], + "vino's": null, + "vinos": null, + "vinous": null, + "Vinson": [["M"]], + "Vinson's": null, + "vintage": [["M", "R", "S", "D", "G"]], + "vintage's": null, + "vintager": [["M"]], + "vintages": null, + "vintaged": null, + "vintaging": null, + "vintager's": null, + "vintner": [["M", "S"]], + "vintner's": null, + "vintners": null, + "vinyl": [["S", "M"]], + "vinyls": null, + "vinyl's": null, + "violable": [["I"]], + "inviolable": null, + "Viola": [["M"]], + "Viola's": null, + "Violante": [["M"]], + "Violante's": null, + "viola": [["S", "M"]], + "violas": null, + "viola's": null, + "violate": [["V", "N", "G", "X", "S", "D"]], + "violative": null, + "violation": null, + "violating": null, + "violations": null, + "violates": null, + "violated": null, + "violator": [["M", "S"]], + "violator's": null, + "violators": null, + "Viole": [["M"]], + "Viole's": null, + "violence": [["S", "M"]], + "violences": null, + "violence's": null, + "violent": [["Y"]], + "violently": null, + "Violet": [["M"]], + "Violet's": null, + "violet": [["S", "M"]], + "violets": null, + "violet's": null, + "Violetta": [["M"]], + "Violetta's": null, + "Violette": [["M"]], + "Violette's": null, + "violinist": [["S", "M"]], + "violinists": null, + "violinist's": null, + "violin": [["M", "S"]], + "violin's": null, + "violins": null, + "violist": [["M", "S"]], + "violist's": null, + "violists": null, + "viol": [["M", "S", "B"]], + "viol's": null, + "viols": null, + "violoncellist": [["S"]], + "violoncellists": null, + "violoncello": [["M", "S"]], + "violoncello's": null, + "violoncellos": null, + "viper": [["M", "S"]], + "viper's": null, + "vipers": null, + "viperous": null, + "VIP": [["S"]], + "VIPs": null, + "viragoes": null, + "virago": [["M"]], + "virago's": null, + "viral": [["Y"]], + "virally": null, + "vireo": [["S", "M"]], + "vireos": null, + "vireo's": null, + "Virge": [["M"]], + "Virge's": null, + "Virgie": [["M"]], + "Virgie's": null, + "Virgilio": [["M"]], + "Virgilio's": null, + "Virgil": [["M"]], + "Virgil's": null, + "virginal": [["Y", "S"]], + "virginally": null, + "virginals": null, + "Virgina": [["M"]], + "Virgina's": null, + "Virginia": [["M"]], + "Virginia's": null, + "Virginian": [["S"]], + "Virginians": null, + "Virginie": [["M"]], + "Virginie's": null, + "virginity": [["S", "M"]], + "virginities": null, + "virginity's": null, + "virgin": [["S", "M"]], + "virgins": null, + "virgin's": null, + "Virgo": [["M", "S"]], + "Virgo's": null, + "Virgos": null, + "virgule": [["M", "S"]], + "virgule's": null, + "virgules": null, + "virile": null, + "virility": [["M", "S"]], + "virility's": null, + "virilities": null, + "virologist": [["S"]], + "virologists": null, + "virology": [["S", "M"]], + "virologies": null, + "virology's": null, + "virtual": [["Y"]], + "virtually": null, + "virtue": [["S", "M"]], + "virtues": null, + "virtue's": null, + "virtuosity": [["M", "S"]], + "virtuosity's": null, + "virtuosities": null, + "virtuosoes": null, + "virtuoso": [["M", "S"]], + "virtuoso's": null, + "virtuosos": null, + "virtuousness": [["S", "M"]], + "virtuousnesses": null, + "virtuousness's": null, + "virtuous": [["P", "Y"]], + "virtuously": null, + "virulence": [["S", "M"]], + "virulences": null, + "virulence's": null, + "virulent": [["Y"]], + "virulently": null, + "virus": [["M", "S"]], + "virus's": null, + "viruses": null, + "visage": [["M", "S", "D"]], + "visage's": null, + "visages": null, + "visaged": null, + "Visakhapatnam's": null, + "Visa": [["M"]], + "Visa's": null, + "visa": [["S", "G", "M", "D"]], + "visas": null, + "visaing": null, + "visa's": null, + "visaed": null, + "Visayans": null, + "viscera": null, + "visceral": [["Y"]], + "viscerally": null, + "viscid": [["Y"]], + "viscidly": null, + "viscoelastic": null, + "viscoelasticity": null, + "viscometer": [["S", "M"]], + "viscometers": null, + "viscometer's": null, + "viscose": [["M", "S"]], + "viscose's": null, + "viscoses": null, + "viscosity": [["M", "S"]], + "viscosity's": null, + "viscosities": null, + "viscountcy": [["M", "S"]], + "viscountcy's": null, + "viscountcies": null, + "viscountess": [["S", "M"]], + "viscountesses": null, + "viscountess's": null, + "viscount": [["M", "S"]], + "viscount's": null, + "viscounts": null, + "viscousness": [["M"]], + "viscousness's": null, + "viscous": [["P", "Y"]], + "viscously": null, + "viscus": [["M"]], + "viscus's": null, + "vise": [["C", "A", "X", "N", "G", "S", "D"]], + "devisions": null, + "devision": null, + "devising": null, + "devises": null, + "devised": null, + "revisions": null, + "revision": null, + "revising": null, + "revises": null, + "visions": null, + "vision": [["K", "M", "D", "G", "S"]], + "vising": null, + "vises": null, + "vised": null, + "viselike": null, + "vise's": null, + "Vishnu": [["M"]], + "Vishnu's": null, + "visibility": [["I", "S", "M"]], + "invisibility": null, + "invisibilities": null, + "invisibility's": null, + "visibilities": null, + "visibility's": null, + "visible": [["P", "I"]], + "visibleness": null, + "visibly": [["I"]], + "invisibly": null, + "Visigoth": [["M"]], + "Visigoth's": null, + "Visigoths": null, + "visionariness": [["M"]], + "visionariness's": null, + "visionary": [["P", "S"]], + "visionaries": null, + "provision's": null, + "provisioned": null, + "provisioning": null, + "provisions": null, + "vision's": [["A"]], + "visioned": null, + "visioning": null, + "revision's": null, + "visitable": [["U"]], + "unvisitable": null, + "visitant": [["S", "M"]], + "visitants": null, + "visitant's": null, + "visitation": [["S", "M"]], + "visitations": null, + "visitation's": null, + "visited": [["U"]], + "unvisited": null, + "visit": [["G", "A", "S", "D"]], + "visiting": null, + "revisiting": null, + "revisit": null, + "revisits": null, + "revisited": null, + "visits": null, + "visitor": [["M", "S"]], + "visitor's": null, + "visitors": null, + "vis": [["M", "D", "S", "G", "V"]], + "vis's": null, + "visive": null, + "visor": [["S", "M", "D", "G"]], + "visors": null, + "visor's": null, + "visored": null, + "visoring": null, + "VISTA": null, + "vista": [["G", "S", "D", "M"]], + "vistaing": null, + "vistas": null, + "vistaed": null, + "vista's": null, + "Vistula": [["M"]], + "Vistula's": null, + "visualization": [["A", "M", "S"]], + "revisualization": null, + "revisualization's": null, + "revisualizations": null, + "visualization's": null, + "visualizations": null, + "visualized": [["U"]], + "unvisualized": null, + "visualizer": [["M"]], + "visualizer's": null, + "visualizes": [["A"]], + "revisualizes": null, + "visualize": [["S", "R", "D", "Z", "G"]], + "visualizers": null, + "visualizing": null, + "visual": [["S", "Y"]], + "visuals": null, + "visually": null, + "vitae": null, + "vitality": [["M", "S"]], + "vitality's": null, + "vitalities": null, + "vitalization": [["A", "M", "S"]], + "revitalization": null, + "revitalization's": null, + "revitalizations": null, + "vitalization's": null, + "vitalizations": null, + "vitalize": [["A", "S", "D", "G", "C"]], + "revitalizes": null, + "revitalized": null, + "revitalizing": null, + "vitalizes": null, + "devitalizes": null, + "vitalized": null, + "devitalized": null, + "vitalizing": null, + "devitalizing": null, + "devitalize": null, + "vital": [["S", "Y"]], + "vitals": null, + "vitally": null, + "vita": [["M"]], + "vita's": null, + "Vita": [["M"]], + "Vita's": null, + "vitamin": [["S", "M"]], + "vitamins": null, + "vitamin's": null, + "Vite": [["M"]], + "Vite's": null, + "Vitia": [["M"]], + "Vitia's": null, + "vitiate": [["X", "G", "N", "S", "D"]], + "vitiations": null, + "vitiating": null, + "vitiation": [["M"]], + "vitiates": null, + "vitiated": null, + "vitiation's": null, + "viticulture": [["S", "M"]], + "viticultures": null, + "viticulture's": null, + "viticulturist": [["S"]], + "viticulturists": null, + "Vitim": [["M"]], + "Vitim's": null, + "Vito": [["M"]], + "Vito's": null, + "Vitoria": [["M"]], + "Vitoria's": null, + "vitreous": [["Y", "S", "P"]], + "vitreously": null, + "vitreouses": null, + "vitreousness": null, + "vitrifaction": [["S"]], + "vitrifactions": null, + "vitrification": [["M"]], + "vitrification's": null, + "vitrify": [["X", "D", "S", "N", "G"]], + "vitrifications": null, + "vitrified": null, + "vitrifies": null, + "vitrifying": null, + "vitrine": [["S", "M"]], + "vitrines": null, + "vitrine's": null, + "vitriolic": null, + "vitriol": [["M", "D", "S", "G"]], + "vitriol's": null, + "vitrioled": null, + "vitriols": null, + "vitrioling": null, + "vitro": null, + "vittles": null, + "Vittoria": [["M"]], + "Vittoria's": null, + "Vittorio": [["M"]], + "Vittorio's": null, + "vituperate": [["S", "D", "X", "V", "G", "N"]], + "vituperates": null, + "vituperated": null, + "vituperations": null, + "vituperative": [["Y"]], + "vituperating": null, + "vituperation": [["M"]], + "vituperation's": null, + "vituperatively": null, + "Vitus": [["M"]], + "Vitus's": null, + "vivace": [["S"]], + "vivaces": null, + "vivaciousness": [["M", "S"]], + "vivaciousness's": null, + "vivaciousnesses": null, + "vivacious": [["Y", "P"]], + "vivaciously": null, + "vivacity": [["S", "M"]], + "vivacities": null, + "vivacity's": null, + "viva": [["D", "G", "S"]], + "vivaed": null, + "vivaing": null, + "vivas": null, + "Vivaldi": null, + "Viva": [["M"]], + "Viva's": null, + "vivaria": null, + "vivarium": [["M", "S"]], + "vivarium's": null, + "vivariums": null, + "vivaxes": null, + "Vivekananda": [["M"]], + "Vivekananda's": null, + "vivers": null, + "Vivia": [["M"]], + "Vivia's": null, + "Viviana": [["M"]], + "Viviana's": null, + "Vivian": [["M"]], + "Vivian's": null, + "Vivianna": [["M"]], + "Vivianna's": null, + "Vivianne": [["M"]], + "Vivianne's": null, + "vividness": [["S", "M"]], + "vividnesses": null, + "vividness's": null, + "vivid": [["P", "T", "Y", "R"]], + "vividest": null, + "vividly": null, + "vivider": null, + "Vivie": [["M"]], + "Vivie's": null, + "Viviene": [["M"]], + "Viviene's": null, + "Vivien": [["M"]], + "Vivien's": null, + "Vivienne": [["M"]], + "Vivienne's": null, + "vivifier": null, + "vivify": [["N", "G", "A", "S", "D"]], + "vivification": null, + "vivifying": null, + "revivifying": null, + "revivifies": null, + "revivified": null, + "vivifies": null, + "vivified": null, + "Vivi": [["M", "N"]], + "Vivi's": null, + "viviparous": null, + "vivisect": [["D", "G", "S"]], + "vivisected": null, + "vivisecting": null, + "vivisects": null, + "vivisectional": null, + "vivisectionist": [["S", "M"]], + "vivisectionists": null, + "vivisectionist's": null, + "vivisection": [["M", "S"]], + "vivisection's": null, + "vivisections": null, + "Viviyan": [["M"]], + "Viviyan's": null, + "Viv": [["M"]], + "Viv's": null, + "vivo": null, + "Vivyan": [["M"]], + "Vivyan's": null, + "Vivyanne": [["M"]], + "Vivyanne's": null, + "vixenish": [["Y"]], + "vixenishly": null, + "vixen": [["S", "M"]], + "vixens": null, + "vixen's": null, + "viz": null, + "vizier": [["M", "S"]], + "vizier's": null, + "viziers": null, + "vizor's": null, + "VJ": null, + "Vladamir": [["M"]], + "Vladamir's": null, + "Vladimir": [["M"]], + "Vladimir's": null, + "Vladivostok": [["M"]], + "Vladivostok's": null, + "Vlad": [["M"]], + "Vlad's": null, + "VLF": null, + "VLSI": null, + "VMS": [["M"]], + "VMS's": null, + "VOA": null, + "vocable": [["S", "M"]], + "vocables": null, + "vocable's": null, + "vocab": [["S"]], + "vocabs": null, + "vocabularian": null, + "vocabularianism": null, + "vocabulary": [["M", "S"]], + "vocabulary's": null, + "vocabularies": null, + "vocalic": [["S"]], + "vocalics": null, + "vocalise's": null, + "vocalism": [["M"]], + "vocalism's": null, + "vocalist": [["M", "S"]], + "vocalist's": null, + "vocalists": null, + "vocalization": [["S", "M"]], + "vocalizations": null, + "vocalization's": null, + "vocalized": [["U"]], + "vocalizer": [["M"]], + "vocalizer's": null, + "vocalize": [["Z", "G", "D", "R", "S"]], + "vocalizers": null, + "vocalizing": null, + "vocalizes": null, + "vocal": [["S", "Y"]], + "vocals": null, + "vocally": null, + "vocation": [["A", "K", "M", "I", "S", "F"]], + "revocation": null, + "revocation's": null, + "revocations": null, + "provocation": null, + "provocation's": null, + "provocations": null, + "vocation's": null, + "invocation's": null, + "convocation's": null, + "invocation": null, + "invocations": null, + "vocations": null, + "convocations": null, + "convocation": null, + "vocational": [["Y"]], + "vocationally": null, + "vocative": [["K", "Y", "S"]], + "provocatively": null, + "provocatives": null, + "vocatively": null, + "vocatives": null, + "vociferate": [["N", "G", "X", "S", "D"]], + "vociferation": [["M"]], + "vociferating": null, + "vociferations": null, + "vociferates": null, + "vociferated": null, + "vociferation's": null, + "vociferousness": [["M", "S"]], + "vociferousness's": null, + "vociferousnesses": null, + "vociferous": [["Y", "P"]], + "vociferously": null, + "vocoded": null, + "vocoder": null, + "vodka": [["M", "S"]], + "vodka's": null, + "vodkas": null, + "voe": [["S"]], + "voes": null, + "Vogel": [["M"]], + "Vogel's": null, + "vogue": [["G", "M", "S", "R", "D"]], + "voguing": null, + "vogue's": null, + "vogues": null, + "voguer": null, + "vogued": null, + "vogueing": null, + "voguish": null, + "voiceband": null, + "voiced": [["C", "U"]], + "devoiced": null, + "unvoiced": null, + "voice": [["I", "M", "G", "D", "S"]], + "invoice": null, + "invoice's": null, + "invoicing": null, + "invoiced": null, + "invoices": null, + "voice's": null, + "voicing": [["C"]], + "voices": [["C"]], + "voicelessness": [["S", "M"]], + "voicelessnesses": null, + "voicelessness's": null, + "voiceless": [["Y", "P"]], + "voicelessly": null, + "voicer": [["S"]], + "voicers": null, + "devoices": null, + "devoicing": null, + "voidable": null, + "void": [["C"]], + "devoid": null, + "voided": null, + "voider": [["M"]], + "voider's": null, + "voiding": null, + "voidness": [["M"]], + "voidness's": null, + "voids": null, + "voil�": null, + "voile": [["M", "S"]], + "voile's": null, + "voiles": null, + "volar": null, + "volatileness": [["M"]], + "volatileness's": null, + "volatile": [["P", "S"]], + "volatiles": null, + "volatility": [["M", "S"]], + "volatility's": null, + "volatilities": null, + "volatilization": [["M", "S"]], + "volatilization's": null, + "volatilizations": null, + "volatilize": [["S", "D", "G"]], + "volatilizes": null, + "volatilized": null, + "volatilizing": null, + "volcanically": null, + "volcanic": [["S"]], + "volcanics": null, + "volcanism": [["M"]], + "volcanism's": null, + "volcanoes": null, + "volcano": [["M"]], + "volcano's": null, + "vole": [["M", "S"]], + "vole's": null, + "voles": null, + "Volga": [["M"]], + "Volga's": null, + "Volgograd": [["M"]], + "Volgograd's": null, + "vol": [["G", "S", "D"]], + "voling": null, + "vols": null, + "voled": null, + "volitionality": null, + "volitional": [["Y"]], + "volitionally": null, + "volition": [["M", "S"]], + "volition's": null, + "volitions": null, + "Volkswagen": [["S", "M"]], + "Volkswagens": null, + "Volkswagen's": null, + "volleyball": [["M", "S"]], + "volleyball's": null, + "volleyballs": null, + "volleyer": [["M"]], + "volleyer's": null, + "volley": [["S", "M", "R", "D", "G"]], + "volleys": null, + "volley's": null, + "volleyed": null, + "volleying": null, + "Vol": [["M"]], + "Vol's": null, + "Volstead": [["M"]], + "Volstead's": null, + "voltage": [["S", "M"]], + "voltages": null, + "voltage's": null, + "voltaic": null, + "Voltaire": [["M"]], + "Voltaire's": null, + "Volta": [["M"]], + "Volta's": null, + "volt": [["A", "M", "S"]], + "revolt's": null, + "revolts": null, + "volt's": null, + "volts": null, + "Volterra": [["M"]], + "Volterra's": null, + "voltmeter": [["M", "S"]], + "voltmeter's": null, + "voltmeters": null, + "volubility": [["S"]], + "volubilities": null, + "voluble": [["P"]], + "volubleness": null, + "volubly": null, + "volume": [["S", "D", "G", "M"]], + "volumes": null, + "volumed": null, + "voluming": null, + "volume's": null, + "volumetric": null, + "volumetrically": null, + "voluminousness": [["M", "S"]], + "voluminousness's": null, + "voluminousnesses": null, + "voluminous": [["P", "Y"]], + "voluminously": null, + "voluntarily": [["I"]], + "involuntarily": null, + "voluntariness": [["M", "I"]], + "voluntariness's": null, + "involuntariness's": null, + "voluntarism": [["M", "S"]], + "voluntarism's": null, + "voluntarisms": null, + "voluntary": [["P", "S"]], + "voluntaries": null, + "volunteer": [["D", "M", "S", "G"]], + "volunteered": null, + "volunteer's": null, + "volunteers": null, + "volunteering": null, + "voluptuary": [["S", "M"]], + "voluptuaries": null, + "voluptuary's": null, + "voluptuousness": [["S"]], + "voluptuousnesses": null, + "voluptuous": [["Y", "P"]], + "voluptuously": null, + "volute": [["S"]], + "volutes": null, + "Volvo": [["M"]], + "Volvo's": null, + "vomit": [["G", "R", "D", "S"]], + "vomiting": null, + "vomiter": null, + "vomited": null, + "vomits": null, + "Vonda": [["M"]], + "Vonda's": null, + "Von": [["M"]], + "Von's": null, + "Vonnegut": [["M"]], + "Vonnegut's": null, + "Vonnie": [["M"]], + "Vonnie's": null, + "Vonni": [["M"]], + "Vonni's": null, + "Vonny": [["M"]], + "Vonny's": null, + "voodoo": [["G", "D", "M", "S"]], + "voodooing": null, + "voodooed": null, + "voodoo's": null, + "voodoos": null, + "voodooism": [["S"]], + "voodooisms": null, + "voraciousness": [["M", "S"]], + "voraciousness's": null, + "voraciousnesses": null, + "voracious": [["Y", "P"]], + "voraciously": null, + "voracity": [["M", "S"]], + "voracity's": null, + "voracities": null, + "Voronezh": [["M"]], + "Voronezh's": null, + "Vorster": [["M"]], + "Vorster's": null, + "vortex": [["S", "M"]], + "vortexes": null, + "vortex's": null, + "vortices's": null, + "vorticity": [["M"]], + "vorticity's": null, + "votary": [["M", "S"]], + "votary's": null, + "votaries": null, + "vote": [["C", "S", "D", "G"]], + "devotes": null, + "devoting": null, + "votes": null, + "voted": null, + "voting": null, + "voter": [["S", "M"]], + "voters": null, + "voter's": null, + "vote's": null, + "votive": [["Y", "P"]], + "votively": null, + "votiveness": null, + "voucher": [["G", "M", "D"]], + "vouchering": null, + "voucher's": null, + "vouchered": null, + "vouchsafe": [["S", "D", "G"]], + "vouchsafes": null, + "vouchsafed": null, + "vouchsafing": null, + "vouch": [["S", "R", "D", "G", "Z"]], + "vouches": null, + "vouched": null, + "vouching": null, + "vouchers": null, + "vowelled": null, + "vowelling": null, + "vowel": [["M", "S"]], + "vowel's": null, + "vowels": null, + "vower": [["M"]], + "vower's": null, + "vow": [["S", "M", "D", "R", "G"]], + "vows": null, + "vow's": null, + "vowed": null, + "vowing": null, + "voyage": [["G", "M", "Z", "J", "S", "R", "D"]], + "voyaging": null, + "voyage's": null, + "voyagers": null, + "voyagings": null, + "voyages": null, + "voyager": [["M"]], + "voyaged": null, + "voyager's": null, + "voyageur": [["S", "M"]], + "voyageurs": null, + "voyageur's": null, + "voyeurism": [["M", "S"]], + "voyeurism's": null, + "voyeurisms": null, + "voyeuristic": null, + "voyeur": [["M", "S"]], + "voyeur's": null, + "voyeurs": null, + "VP": null, + "V's": null, + "VT": null, + "Vt": [["M"]], + "Vt's": null, + "VTOL": null, + "vulcanization": [["S", "M"]], + "vulcanizations": null, + "vulcanization's": null, + "vulcanized": [["U"]], + "vulcanize": [["S", "D", "G"]], + "vulcanizes": null, + "vulcanizing": null, + "Vulcan": [["M"]], + "Vulcan's": null, + "vulgarian": [["M", "S"]], + "vulgarian's": null, + "vulgarians": null, + "vulgarism": [["M", "S"]], + "vulgarism's": null, + "vulgarisms": null, + "vulgarity": [["M", "S"]], + "vulgarity's": null, + "vulgarities": null, + "vulgarization": [["S"]], + "vulgarizations": null, + "vulgarize": [["G", "Z", "S", "R", "D"]], + "vulgarizing": null, + "vulgarizers": null, + "vulgarizes": null, + "vulgarizer": null, + "vulgarized": null, + "vulgar": [["T", "S", "Y", "R"]], + "vulgarest": null, + "vulgars": null, + "vulgarly": null, + "vulgarer": null, + "Vulgate": [["S", "M"]], + "Vulgates": null, + "Vulgate's": null, + "Vulg": [["M"]], + "Vulg's": null, + "vulnerability": [["S", "I"]], + "vulnerabilities": null, + "invulnerabilities": null, + "vulnerable": [["I", "P"]], + "invulnerable": null, + "vulnerableness": null, + "vulnerably": [["I"]], + "invulnerably": null, + "vulpine": null, + "vulturelike": null, + "vulture": [["S", "M"]], + "vultures": null, + "vulture's": null, + "vulturous": null, + "vulvae": null, + "vulva": [["M"]], + "vulva's": null, + "vying": null, + "Vyky": [["M"]], + "Vyky's": null, + "WA": null, + "Waals": null, + "Wabash": [["M"]], + "Wabash's": null, + "WAC": null, + "Wacke": [["M"]], + "Wacke's": null, + "wackes": null, + "wackiness": [["M", "S"]], + "wackiness's": null, + "wackinesses": null, + "wacko": [["M", "S"]], + "wacko's": null, + "wackos": null, + "wacky": [["R", "T", "P"]], + "wackier": null, + "wackiest": null, + "Waco": [["M"]], + "Waco's": null, + "Wac": [["S"]], + "Wacs": null, + "wadded": null, + "wadding": [["S", "M"]], + "waddings": null, + "wadding's": null, + "waddle": [["G", "R", "S", "D"]], + "waddling": null, + "waddler": null, + "waddles": null, + "waddled": null, + "Wade": [["M"]], + "Wade's": null, + "wader": [["M"]], + "wader's": null, + "wade": [["S"]], + "wades": null, + "wadi": [["S", "M"]], + "wadis": null, + "wadi's": null, + "wad": [["M", "D", "R", "Z", "G", "S"]], + "wad's": null, + "waded": null, + "waders": null, + "wading": null, + "wads": null, + "Wadsworth": [["M"]], + "Wadsworth's": null, + "wafer": [["G", "S", "M", "D"]], + "wafering": null, + "wafers": null, + "wafer's": null, + "wafered": null, + "waffle": [["G", "M", "Z", "R", "S", "D"]], + "waffling": null, + "waffle's": null, + "wafflers": null, + "waffler": null, + "waffles": null, + "waffled": null, + "Wafs": null, + "wafter": [["M"]], + "wafter's": null, + "waft": [["S", "G", "R", "D"]], + "wafts": null, + "wafting": null, + "wafted": null, + "wag": [["D", "R", "Z", "G", "S"]], + "waged": [["U"]], + "wager": [["G", "Z", "M", "R", "D"]], + "wagers": null, + "waging": null, + "wags": null, + "unwaged": null, + "wagering": null, + "wagerers": null, + "wager's": null, + "wagerer": null, + "wagered": null, + "wage": [["S", "M"]], + "wages": null, + "wage's": null, + "wagged": null, + "waggery": [["M", "S"]], + "waggery's": null, + "waggeries": null, + "wagging": null, + "waggishness": [["S", "M"]], + "waggishnesses": null, + "waggishness's": null, + "waggish": [["Y", "P"]], + "waggishly": null, + "waggle": [["S", "D", "G"]], + "waggles": null, + "waggled": null, + "waggling": null, + "waggly": null, + "Wagnerian": null, + "Wagner": [["M"]], + "Wagner's": null, + "wagoner": [["M"]], + "wagoner's": null, + "wagon": [["S", "G", "Z", "M", "R", "D"]], + "wagons": null, + "wagoning": null, + "wagoners": null, + "wagon's": null, + "wagoned": null, + "wagtail": [["S", "M"]], + "wagtails": null, + "wagtail's": null, + "Wahl": [["M"]], + "Wahl's": null, + "waif": [["S", "G", "D", "M"]], + "waifs": null, + "waifing": null, + "waifed": null, + "waif's": null, + "Waikiki": [["M"]], + "Waikiki's": null, + "wailer": [["M"]], + "wailer's": null, + "wail": [["S", "G", "Z", "R", "D"]], + "wails": null, + "wailing": null, + "wailers": null, + "wailed": null, + "wain": [["G", "S", "D", "M"]], + "waining": null, + "wains": null, + "wained": null, + "wain's": null, + "Wain": [["M"]], + "Wain's": null, + "wainscot": [["S", "G", "J", "D"]], + "wainscots": null, + "wainscoting": null, + "wainscotings": null, + "wainscoted": null, + "Wainwright": [["M"]], + "Wainwright's": null, + "wainwright": [["S", "M"]], + "wainwrights": null, + "wainwright's": null, + "waistband": [["M", "S"]], + "waistband's": null, + "waistbands": null, + "waistcoat": [["G", "D", "M", "S"]], + "waistcoating": null, + "waistcoated": null, + "waistcoat's": null, + "waistcoats": null, + "waister": [["M"]], + "waister's": null, + "waist": [["G", "S", "R", "D", "M"]], + "waisting": null, + "waists": null, + "waisted": null, + "waist's": null, + "waistline": [["M", "S"]], + "waistline's": null, + "waistlines": null, + "Waite": [["M"]], + "Waite's": null, + "waiter": [["D", "M", "G"]], + "waitered": null, + "waiter's": null, + "waitering": null, + "Waiter": [["M"]], + "Waiter's": null, + "wait": [["G", "S", "Z", "J", "R", "D"]], + "waiting": null, + "waits": null, + "waiters": null, + "waitings": null, + "waited": null, + "Wait": [["M", "R"]], + "Wait's": null, + "waitpeople": null, + "waitperson": [["S"]], + "waitpersons": null, + "waitress": [["G", "M", "S", "D"]], + "waitressing": null, + "waitress's": null, + "waitresses": null, + "waitressed": null, + "waiver": [["M", "B"]], + "waiver's": null, + "waiverable": null, + "waive": [["S", "R", "D", "G", "Z"]], + "waives": null, + "waived": null, + "waiving": null, + "waivers": null, + "Wakefield": [["M"]], + "Wakefield's": null, + "wakefulness": [["M", "S"]], + "wakefulness's": null, + "wakefulnesses": null, + "wakeful": [["P", "Y"]], + "wakefully": null, + "Wake": [["M"]], + "Wake's": null, + "wake": [["M", "G", "D", "R", "S", "J"]], + "wake's": null, + "waking": null, + "waked": null, + "waker": [["M"]], + "wakes": null, + "wakings": null, + "waken": [["S", "M", "R", "D", "G"]], + "wakens": null, + "waken's": null, + "wakener": null, + "wakened": null, + "wakening": null, + "waker's": null, + "wakeup": null, + "Waksman": [["M"]], + "Waksman's": null, + "Walbridge": [["M"]], + "Walbridge's": null, + "Walcott": [["M"]], + "Walcott's": null, + "Waldemar": [["M"]], + "Waldemar's": null, + "Walden": [["M"]], + "Walden's": null, + "Waldensian": null, + "Waldheim": [["M"]], + "Waldheim's": null, + "Wald": [["M", "N"]], + "Wald's": null, + "Waldo": [["M"]], + "Waldo's": null, + "Waldon": [["M"]], + "Waldon's": null, + "Waldorf": [["M"]], + "Waldorf's": null, + "wale": [["D", "R", "S", "M", "G"]], + "waled": null, + "waler": null, + "wales": null, + "wale's": null, + "waling": [["M"]], + "Wales": null, + "Walesa": [["M"]], + "Walesa's": null, + "Walford": [["M"]], + "Walford's": null, + "Walgreen": [["M"]], + "Walgreen's": null, + "waling's": null, + "walkabout": [["M"]], + "walkabout's": null, + "walkaway": [["S", "M"]], + "walkaways": null, + "walkaway's": null, + "walker": [["M"]], + "walker's": null, + "Walker": [["M"]], + "Walker's": null, + "walk": [["G", "Z", "S", "B", "J", "R", "D"]], + "walking": null, + "walkers": null, + "walks": null, + "walkable": null, + "walkings": null, + "walked": null, + "walkie": null, + "Walkman": [["S"]], + "Walkmans": null, + "walkout": [["S", "M"]], + "walkouts": null, + "walkout's": null, + "walkover": [["S", "M"]], + "walkovers": null, + "walkover's": null, + "walkway": [["M", "S"]], + "walkway's": null, + "walkways": null, + "wallaby": [["M", "S"]], + "wallaby's": null, + "wallabies": null, + "Wallace": [["M"]], + "Wallace's": null, + "Wallache": [["M"]], + "Wallache's": null, + "wallah": [["M"]], + "wallah's": null, + "Wallas": [["M"]], + "Wallas's": null, + "wallboard": [["M", "S"]], + "wallboard's": null, + "wallboards": null, + "Wallenstein": [["M"]], + "Wallenstein's": null, + "Waller": [["M"]], + "Waller's": null, + "wallet": [["S", "M"]], + "wallets": null, + "wallet's": null, + "walleye": [["M", "S", "D"]], + "walleye's": null, + "walleyes": null, + "walleyed": null, + "wallflower": [["M", "S"]], + "wallflower's": null, + "wallflowers": null, + "Wallie": [["M"]], + "Wallie's": null, + "Wallis": null, + "Walliw": [["M"]], + "Walliw's": null, + "Walloon": [["S", "M"]], + "Walloons": null, + "Walloon's": null, + "walloper": [["M"]], + "walloper's": null, + "walloping": [["M"]], + "walloping's": null, + "wallop": [["R", "D", "S", "J", "G"]], + "walloped": null, + "wallops": null, + "wallopings": null, + "wallower": [["M"]], + "wallower's": null, + "wallow": [["R", "D", "S", "G"]], + "wallowed": null, + "wallows": null, + "wallowing": null, + "wallpaper": [["D", "M", "G", "S"]], + "wallpapered": null, + "wallpaper's": null, + "wallpapering": null, + "wallpapers": null, + "wall": [["S", "G", "M", "R", "D"]], + "walls": null, + "walling": null, + "wall's": null, + "waller": null, + "walled": null, + "Wall": [["S", "M", "R"]], + "Walls": null, + "Wall's": null, + "Wally": [["M"]], + "Wally's": null, + "wally": [["S"]], + "wallies": null, + "walnut": [["S", "M"]], + "walnuts": null, + "walnut's": null, + "Walpole": [["M"]], + "Walpole's": null, + "Walpurgisnacht": null, + "walrus": [["S", "M"]], + "walruses": null, + "walrus's": null, + "Walsh": [["M"]], + "Walsh's": null, + "Walter": [["M"]], + "Walter's": null, + "Walther": [["M"]], + "Walther's": null, + "Walton": [["M"]], + "Walton's": null, + "waltzer": [["M"]], + "waltzer's": null, + "Walt": [["Z", "M", "R"]], + "Walters": null, + "Walt's": null, + "waltz": [["M", "R", "S", "D", "G", "Z"]], + "waltz's": null, + "waltzes": null, + "waltzed": null, + "waltzing": null, + "waltzers": null, + "Walworth": [["M"]], + "Walworth's": null, + "Waly": [["M"]], + "Waly's": null, + "wampum": [["S", "M"]], + "wampums": null, + "wampum's": null, + "Wanamaker": [["M"]], + "Wanamaker's": null, + "Wanda": [["M"]], + "Wanda's": null, + "wanderer": [["M"]], + "wanderer's": null, + "wander": [["J", "Z", "G", "R", "D"]], + "wanderings": null, + "wanderers": null, + "wandering": null, + "wandered": null, + "wanderlust": [["S", "M"]], + "wanderlusts": null, + "wanderlust's": null, + "Wandie": [["M"]], + "Wandie's": null, + "Wandis": [["M"]], + "Wandis's": null, + "wand": [["M", "R", "S", "Z"]], + "wand's": null, + "wands": null, + "wanders": null, + "wane": [["S"]], + "wanes": null, + "Waneta": [["M"]], + "Waneta's": null, + "wangler": [["M"]], + "wangler's": null, + "wangle": [["R", "S", "D", "G", "Z"]], + "wangles": null, + "wangled": null, + "wangling": null, + "wanglers": null, + "Wang": [["M"]], + "Wang's": null, + "Wanids": [["M"]], + "Wanids's": null, + "Wankel": [["M"]], + "Wankel's": null, + "wanna": null, + "wannabe": [["S"]], + "wannabes": null, + "wanned": null, + "wanner": null, + "wanness": [["S"]], + "wannesses": null, + "wannest": null, + "wanning": null, + "wan": [["P", "G", "S", "D", "Y"]], + "waning": null, + "wans": null, + "waned": null, + "wanly": null, + "Wansee": [["M"]], + "Wansee's": null, + "Wansley": [["M"]], + "Wansley's": null, + "wanted": [["U"]], + "unwanted": null, + "wanter": [["M"]], + "wanter's": null, + "want": [["G", "R", "D", "S", "J"]], + "wanting": null, + "wants": null, + "wantings": null, + "wantonness": [["S"]], + "wantonnesses": null, + "wanton": [["P", "G", "S", "R", "D", "Y"]], + "wantoning": null, + "wantons": null, + "wantoner": null, + "wantoned": null, + "wantonly": null, + "wapiti": [["M", "S"]], + "wapiti's": null, + "wapitis": null, + "warble": [["G", "Z", "R", "S", "D"]], + "warbling": null, + "warblers": null, + "warbler": [["M"]], + "warbles": null, + "warbled": null, + "warbler's": null, + "warbonnet": [["S"]], + "warbonnets": null, + "ward": [["A", "G", "M", "R", "D", "S"]], + "reward": null, + "reward's": null, + "rewarder": null, + "rewards": null, + "warding": null, + "ward's": null, + "warder": [["D", "M", "G", "S"]], + "warded": null, + "wards": [["I"]], + "Warde": [["M"]], + "Warde's": null, + "warden": [["D", "M", "G", "S"]], + "wardened": null, + "warden's": null, + "wardening": null, + "wardens": null, + "Warden": [["M"]], + "Warden's": null, + "wardered": null, + "warder's": null, + "wardering": null, + "warders": null, + "Ward": [["M", "N"]], + "Ward's": null, + "wardrobe": [["M", "D", "S", "G"]], + "wardrobe's": null, + "wardrobed": null, + "wardrobes": null, + "wardrobing": null, + "wardroom": [["M", "S"]], + "wardroom's": null, + "wardrooms": null, + "wardship": [["M"]], + "wardship's": null, + "inwards": null, + "warehouseman": [["M"]], + "warehouseman's": null, + "warehouse": [["M", "G", "S", "R", "D"]], + "warehouse's": null, + "warehousing": null, + "warehouses": null, + "warehouser": null, + "warehoused": null, + "Ware": [["M", "G"]], + "Ware's": null, + "Waring": [["M"]], + "ware": [["M", "S"]], + "ware's": null, + "wares": null, + "warfare": [["S", "M"]], + "warfares": null, + "warfare's": null, + "Warfield": [["M"]], + "Warfield's": null, + "war": [["G", "S", "M", "D"]], + "waring": null, + "wars": [["C"]], + "war's": null, + "wared": null, + "warhead": [["M", "S"]], + "warhead's": null, + "warheads": null, + "Warhol": [["M"]], + "Warhol's": null, + "warhorse": [["S", "M"]], + "warhorses": null, + "warhorse's": null, + "warily": [["U"]], + "unwarily": null, + "warinesses": [["U"]], + "unwarinesses": null, + "wariness": [["M", "S"]], + "wariness's": null, + "Waring's": null, + "warless": null, + "warlike": null, + "warlock": [["S", "M"]], + "warlocks": null, + "warlock's": null, + "warlord": [["M", "S"]], + "warlord's": null, + "warlords": null, + "warmblooded": null, + "warmed": [["A"]], + "rewarmed": null, + "warmer": [["M"]], + "warmer's": null, + "warmheartedness": [["S", "M"]], + "warmheartednesses": null, + "warmheartedness's": null, + "warmhearted": [["P", "Y"]], + "warmheartedly": null, + "warmish": null, + "warmness": [["M", "S"]], + "warmness's": null, + "warmnesses": null, + "warmongering": [["M"]], + "warmongering's": null, + "warmonger": [["J", "G", "S", "M"]], + "warmongerings": null, + "warmongers": null, + "warmonger's": null, + "warms": [["A"]], + "rewarms": null, + "warmth": [["M"]], + "warmth's": null, + "warmths": null, + "warm": [["Y", "R", "D", "H", "P", "G", "Z", "T", "S"]], + "warmly": null, + "warming": null, + "warmers": null, + "warmest": null, + "warned": [["U"]], + "unwarned": null, + "warner": [["M"]], + "warner's": null, + "Warner": [["M"]], + "Warner's": null, + "warn": [["G", "R", "D", "J", "S"]], + "warning": [["Y", "M"]], + "warnings": null, + "warns": null, + "warningly": null, + "warning's": null, + "Warnock": [["M"]], + "Warnock's": null, + "warpaint": null, + "warpath": [["M"]], + "warpath's": null, + "warpaths": null, + "warper": [["M"]], + "warper's": null, + "warplane": [["M", "S"]], + "warplane's": null, + "warplanes": null, + "warp": [["M", "R", "D", "G", "S"]], + "warp's": null, + "warped": null, + "warping": null, + "warps": null, + "warranted": [["U"]], + "unwarranted": null, + "warranter": [["M"]], + "warranter's": null, + "warrant": [["G", "S", "M", "D", "R"]], + "warranting": null, + "warrants": null, + "warrant's": null, + "warranty": [["S", "D", "G", "M"]], + "warranties": null, + "warrantied": null, + "warrantying": null, + "warranty's": null, + "warred": [["M"]], + "warred's": null, + "warrener": [["M"]], + "warrener's": null, + "Warren": [["M"]], + "Warren's": null, + "warren": [["S", "Z", "R", "M"]], + "warrens": null, + "warreners": null, + "warren's": null, + "warring": [["M"]], + "warring's": null, + "warrior": [["M", "S"]], + "warrior's": null, + "warriors": null, + "Warsaw": [["M"]], + "Warsaw's": null, + "dewars": null, + "warship": [["M", "S"]], + "warship's": null, + "warships": null, + "warthog": [["S"]], + "warthogs": null, + "wartime": [["S", "M"]], + "wartimes": null, + "wartime's": null, + "wart": [["M", "D", "S"]], + "wart's": null, + "warted": null, + "warts": null, + "warty": [["R", "T"]], + "wartier": null, + "wartiest": null, + "Warwick": [["M"]], + "Warwick's": null, + "wary": [["U", "R", "P", "T"]], + "unwary": null, + "unwarier": null, + "unwariness": null, + "warier": null, + "wariest": null, + "Wasatch": [["M"]], + "Wasatch's": null, + "washable": [["S"]], + "washables": null, + "wash": [["A", "G", "S", "D"]], + "rewash": null, + "rewashing": null, + "rewashes": null, + "rewashed": null, + "washing": [["S", "M"]], + "washes": null, + "washed": [["U"]], + "washbasin": [["S", "M"]], + "washbasins": null, + "washbasin's": null, + "washboard": [["S", "M"]], + "washboards": null, + "washboard's": null, + "washbowl": [["S", "M"]], + "washbowls": null, + "washbowl's": null, + "Washburn": [["M"]], + "Washburn's": null, + "washcloth": [["M"]], + "washcloth's": null, + "washcloths": null, + "washday": [["M"]], + "washday's": null, + "washer": [["G", "D", "M", "S"]], + "washering": null, + "washered": null, + "washer's": null, + "washers": null, + "washerwoman": [["M"]], + "washerwoman's": null, + "washerwomen": null, + "washings": null, + "washing's": null, + "Washingtonian": [["S"]], + "Washingtonians": null, + "Washington": [["M"]], + "Washington's": null, + "Wash": [["M"]], + "Wash's": null, + "Washoe": [["M"]], + "Washoe's": null, + "washout": [["S", "M"]], + "washouts": null, + "washout's": null, + "washrag": [["S", "M"]], + "washrags": null, + "washrag's": null, + "washroom": [["M", "S"]], + "washroom's": null, + "washrooms": null, + "washstand": [["S", "M"]], + "washstands": null, + "washstand's": null, + "washtub": [["M", "S"]], + "washtub's": null, + "washtubs": null, + "washy": [["R", "T"]], + "washier": null, + "washiest": null, + "wasn't": null, + "WASP": null, + "waspishness": [["S", "M"]], + "waspishnesses": null, + "waspishness's": null, + "waspish": [["P", "Y"]], + "waspishly": null, + "Wasp's": null, + "wasp": [["S", "M"]], + "wasps": null, + "wasp's": null, + "was": [["S"]], + "wases": null, + "wassail": [["G", "M", "D", "S"]], + "wassailing": null, + "wassail's": null, + "wassailed": null, + "wassails": null, + "Wasserman": [["M"]], + "Wasserman's": null, + "Wassermann": [["M"]], + "Wassermann's": null, + "wastage": [["S", "M"]], + "wastages": null, + "wastage's": null, + "wastebasket": [["S", "M"]], + "wastebaskets": null, + "wastebasket's": null, + "wastefulness": [["S"]], + "wastefulnesses": null, + "wasteful": [["Y", "P"]], + "wastefully": null, + "wasteland": [["M", "S"]], + "wasteland's": null, + "wastelands": null, + "wastepaper": [["M", "S"]], + "wastepaper's": null, + "wastepapers": null, + "waster": [["D", "G"]], + "wastered": null, + "wastering": null, + "waste": [["S"]], + "wastes": null, + "wastewater": null, + "wast": [["G", "Z", "S", "R", "D"]], + "wasting": [["Y"]], + "wasters": null, + "wasts": null, + "wasted": null, + "wastingly": null, + "wastrel": [["M", "S"]], + "wastrel's": null, + "wastrels": null, + "Watanabe": [["M"]], + "Watanabe's": null, + "watchable": [["U"]], + "unwatchable": null, + "watchband": [["S", "M"]], + "watchbands": null, + "watchband's": null, + "watchdogged": null, + "watchdogging": null, + "watchdog": [["S", "M"]], + "watchdogs": null, + "watchdog's": null, + "watched": [["U"]], + "unwatched": null, + "watcher": [["M"]], + "watcher's": null, + "watchfulness": [["M", "S"]], + "watchfulness's": null, + "watchfulnesses": null, + "watchful": [["P", "Y"]], + "watchfully": null, + "watch": [["J", "R", "S", "D", "G", "Z", "B"]], + "watchings": null, + "watches": null, + "watching": null, + "watchers": null, + "watchmake": [["J", "R", "G", "Z"]], + "watchmakings": null, + "watchmaker": [["M"]], + "watchmaking": null, + "watchmakers": null, + "watchmaker's": null, + "watchman": [["M"]], + "watchman's": null, + "watchmen": null, + "watchpoints": null, + "watchtower": [["M", "S"]], + "watchtower's": null, + "watchtowers": null, + "watchword": [["M", "S"]], + "watchword's": null, + "watchwords": null, + "waterbird": [["S"]], + "waterbirds": null, + "waterborne": null, + "Waterbury": [["M"]], + "Waterbury's": null, + "watercolor": [["D", "M", "G", "S"]], + "watercolored": null, + "watercolor's": null, + "watercoloring": null, + "watercolors": null, + "watercolorist": [["S", "M"]], + "watercolorists": null, + "watercolorist's": null, + "watercourse": [["S", "M"]], + "watercourses": null, + "watercourse's": null, + "watercraft": [["M"]], + "watercraft's": null, + "watercress": [["S", "M"]], + "watercresses": null, + "watercress's": null, + "waterer": [["M"]], + "waterer's": null, + "waterfall": [["S", "M"]], + "waterfalls": null, + "waterfall's": null, + "waterfowl": [["M"]], + "waterfowl's": null, + "waterfront": [["S", "M"]], + "waterfronts": null, + "waterfront's": null, + "Watergate": [["M"]], + "Watergate's": null, + "waterhole": [["S"]], + "waterholes": null, + "Waterhouse": [["M"]], + "Waterhouse's": null, + "wateriness": [["S", "M"]], + "waterinesses": null, + "wateriness's": null, + "watering": [["M"]], + "watering's": null, + "water": [["J", "G", "S", "M", "R", "D"]], + "waterings": null, + "waters": null, + "water's": null, + "watered": null, + "waterless": null, + "waterlily": [["S"]], + "waterlilies": null, + "waterline": [["S"]], + "waterlines": null, + "waterlogged": null, + "waterloo": null, + "Waterloo": [["S", "M"]], + "Waterloos": null, + "Waterloo's": null, + "waterman": [["M"]], + "waterman's": null, + "watermark": [["G", "S", "D", "M"]], + "watermarking": null, + "watermarks": null, + "watermarked": null, + "watermark's": null, + "watermelon": [["S", "M"]], + "watermelons": null, + "watermelon's": null, + "watermill": [["S"]], + "watermills": null, + "waterproof": [["P", "G", "R", "D", "S", "J"]], + "waterproofness": null, + "waterproofing": null, + "waterproofer": null, + "waterproofed": null, + "waterproofs": null, + "waterproofings": null, + "watershed": [["S", "M"]], + "watersheds": null, + "watershed's": null, + "waterside": [["M", "S", "R"]], + "waterside's": null, + "watersides": null, + "watersider": [["M"]], + "watersider's": null, + "Waters": [["M"]], + "Waters's": null, + "waterspout": [["M", "S"]], + "waterspout's": null, + "waterspouts": null, + "watertightness": [["M"]], + "watertightness's": null, + "watertight": [["P"]], + "Watertown": [["M"]], + "Watertown's": null, + "waterway": [["M", "S"]], + "waterway's": null, + "waterways": null, + "waterwheel": [["S"]], + "waterwheels": null, + "waterworks": [["M"]], + "waterworks's": null, + "watery": [["P", "R", "T"]], + "waterier": null, + "wateriest": null, + "Watkins": null, + "WATS": null, + "Watson": [["M"]], + "Watson's": null, + "wattage": [["S", "M"]], + "wattages": null, + "wattage's": null, + "Watteau": [["M"]], + "Watteau's": null, + "Wattenberg": [["M"]], + "Wattenberg's": null, + "Watterson": [["M"]], + "Watterson's": null, + "wattle": [["S", "D", "G", "M"]], + "wattles": null, + "wattled": null, + "wattling": null, + "wattle's": null, + "Watt": [["M", "S"]], + "Watt's": null, + "Watts": null, + "watt": [["T", "M", "R", "S"]], + "wattest": null, + "watt's": null, + "watter": null, + "watts": null, + "Watusi": [["M"]], + "Watusi's": null, + "Wat": [["Z", "M"]], + "Wat's": null, + "Waugh": [["M"]], + "Waugh's": null, + "Waukesha": [["M"]], + "Waukesha's": null, + "Waunona": [["M"]], + "Waunona's": null, + "Waupaca": [["M"]], + "Waupaca's": null, + "Waupun": [["M"]], + "Waupun's": null, + "Wausau": [["M"]], + "Wausau's": null, + "Wauwatosa": [["M"]], + "Wauwatosa's": null, + "waveband": [["M", "S"]], + "waveband's": null, + "wavebands": null, + "waveform": [["S", "M"]], + "waveforms": null, + "waveform's": null, + "wavefront": [["M", "S"]], + "wavefront's": null, + "wavefronts": null, + "waveguide": [["M", "S"]], + "waveguide's": null, + "waveguides": null, + "Waveland": [["M"]], + "Waveland's": null, + "wavelength": [["M"]], + "wavelength's": null, + "wavelengths": null, + "wavelet": [["S", "M"]], + "wavelets": null, + "wavelet's": null, + "wavelike": null, + "wavenumber": null, + "waver": [["G", "Z", "R", "D"]], + "wavering": [["Y", "U"]], + "waverers": null, + "waverer": null, + "wavered": null, + "waveringly": null, + "unwaveringly": null, + "unwavering": null, + "Waverley": [["M"]], + "Waverley's": null, + "Waverly": [["M"]], + "Waverly's": null, + "Wave": [["S"]], + "Waves": null, + "wave": [["Z", "G", "D", "R", "S"]], + "wavers": null, + "waving": null, + "waved": null, + "waves": null, + "wavily": null, + "waviness": [["M", "S"]], + "waviness's": null, + "wavinesses": null, + "wavy": [["S", "R", "T", "P"]], + "wavies": null, + "wavier": null, + "waviest": null, + "waxer": [["M"]], + "waxer's": null, + "waxiness": [["M", "S"]], + "waxiness's": null, + "waxinesses": null, + "wax": [["M", "N", "D", "R", "S", "Z", "G"]], + "wax's": null, + "waxen": null, + "waxed": null, + "waxes": null, + "waxers": null, + "waxing": null, + "waxwing": [["M", "S"]], + "waxwing's": null, + "waxwings": null, + "waxwork": [["M", "S"]], + "waxwork's": null, + "waxworks": null, + "waxy": [["P", "R", "T"]], + "waxier": null, + "waxiest": null, + "wayfarer": [["M", "S"]], + "wayfarer's": null, + "wayfarers": null, + "wayfaring": [["S"]], + "wayfarings": null, + "waylaid": null, + "Wayland": [["M"]], + "Wayland's": null, + "Waylan": [["M"]], + "Waylan's": null, + "waylayer": [["M"]], + "waylayer's": null, + "waylay": [["G", "R", "S", "Z"]], + "waylaying": null, + "waylays": null, + "waylayers": null, + "wayleave": [["M", "S"]], + "wayleave's": null, + "wayleaves": null, + "Waylen": [["M"]], + "Waylen's": null, + "Waylin": [["M"]], + "Waylin's": null, + "Waylon": [["M"]], + "Waylon's": null, + "Way": [["M"]], + "Way's": null, + "waymarked": null, + "way": [["M", "S"]], + "way's": null, + "ways": null, + "Wayne": [["M"]], + "Wayne's": null, + "Waynesboro": [["M"]], + "Waynesboro's": null, + "wayside": [["M", "S"]], + "wayside's": null, + "waysides": null, + "waywardness": [["S"]], + "waywardnesses": null, + "wayward": [["Y", "P"]], + "waywardly": null, + "WC": null, + "we": null, + "weakener": [["M"]], + "weakener's": null, + "weaken": [["Z", "G", "R", "D"]], + "weakeners": null, + "weakening": null, + "weakened": null, + "weakfish": [["S", "M"]], + "weakfishes": null, + "weakfish's": null, + "weakish": null, + "weakliness": [["M"]], + "weakliness's": null, + "weakling": [["S", "M"]], + "weaklings": null, + "weakling's": null, + "weakly": [["R", "T", "P"]], + "weaklier": null, + "weakliest": null, + "weakness": [["M", "S"]], + "weakness's": null, + "weaknesses": null, + "weak": [["T", "X", "P", "Y", "R", "N"]], + "weakest": null, + "weakens": null, + "weaker": null, + "weal": [["M", "H", "S"]], + "weal's": null, + "wealth": [["M"]], + "weals": null, + "wealthiness": [["M", "S"]], + "wealthiness's": null, + "wealthinesses": null, + "wealth's": null, + "wealths": null, + "wealthy": [["P", "T", "R"]], + "wealthiest": null, + "wealthier": null, + "weaner": [["M"]], + "weaner's": null, + "weanling": [["M"]], + "weanling's": null, + "wean": [["R", "D", "G", "S"]], + "weaned": null, + "weaning": null, + "weans": null, + "weapon": [["G", "D", "M", "S"]], + "weaponing": null, + "weaponed": null, + "weapon's": null, + "weapons": null, + "weaponless": null, + "weaponry": [["M", "S"]], + "weaponry's": null, + "weaponries": null, + "wearable": [["S"]], + "wearables": null, + "wearer": [["M"]], + "wearer's": null, + "wearied": [["U"]], + "wearily": null, + "weariness": [["M", "S"]], + "weariness's": null, + "wearinesses": null, + "wearing": [["Y"]], + "wearingly": null, + "wearisomeness": [["M"]], + "wearisomeness's": null, + "wearisome": [["Y", "P"]], + "wearisomely": null, + "wear": [["R", "B", "S", "J", "G", "Z"]], + "wears": null, + "wearings": null, + "wearers": null, + "wearying": [["Y"]], + "wearyingly": null, + "weary": [["T", "G", "P", "R", "S", "D"]], + "weariest": null, + "wearier": null, + "wearies": null, + "weasel": [["S", "G", "M", "D", "Y"]], + "weasels": null, + "weaseling": null, + "weasel's": null, + "weaseled": null, + "weaselly": null, + "weatherbeaten": null, + "weathercock": [["S", "D", "M", "G"]], + "weathercocks": null, + "weathercocked": null, + "weathercock's": null, + "weathercocking": null, + "weatherer": [["M"]], + "weatherer's": null, + "Weatherford": [["M"]], + "Weatherford's": null, + "weathering": [["M"]], + "weathering's": null, + "weatherize": [["G", "S", "D"]], + "weatherizing": null, + "weatherizes": null, + "weatherized": null, + "weatherman": [["M"]], + "weatherman's": null, + "weather": [["M", "D", "R", "Y", "J", "G", "S"]], + "weather's": null, + "weathered": null, + "weatherly": null, + "weatherings": null, + "weathers": null, + "weathermen": null, + "weatherperson": [["S"]], + "weatherpersons": null, + "weatherproof": [["S", "G", "P", "D"]], + "weatherproofs": null, + "weatherproofing": null, + "weatherproofness": null, + "weatherproofed": null, + "weatherstripped": null, + "weatherstripping": [["S"]], + "weatherstrippings": null, + "weatherstrip": [["S"]], + "weatherstrips": null, + "weaver": [["M"]], + "weaver's": null, + "Weaver": [["M"]], + "Weaver's": null, + "weaves": [["A"]], + "reweaves": null, + "weave": [["S", "R", "D", "G", "Z"]], + "weaved": null, + "weaving": [["A"]], + "weavers": null, + "reweaving": null, + "webbed": null, + "Webber": [["M"]], + "Webber's": null, + "webbing": [["M", "S"]], + "webbing's": null, + "webbings": null, + "Webb": [["R", "M"]], + "Webb's": null, + "weber": [["M"]], + "weber's": null, + "Weber": [["M"]], + "Weber's": null, + "Webern": [["M"]], + "Webern's": null, + "webfeet": null, + "webfoot": [["M"]], + "webfoot's": null, + "Web": [["M", "R"]], + "Web's": null, + "website": [["S"]], + "websites": null, + "web": [["S", "M", "R"]], + "webs": null, + "web's": null, + "Webster": [["M", "S"]], + "Webster's": null, + "Websters": null, + "Websterville": [["M"]], + "Websterville's": null, + "we'd": null, + "wedded": [["A"]], + "rewedded": null, + "Weddell": [["M"]], + "Weddell's": null, + "wedder": null, + "wedding": [["S", "M"]], + "weddings": null, + "wedding's": null, + "wedge": [["S", "D", "G", "M"]], + "wedges": null, + "wedged": null, + "wedging": null, + "wedge's": null, + "wedgie": [["R", "S", "T"]], + "wedgier": null, + "wedgies": null, + "wedgiest": null, + "Wedgwood": [["M"]], + "Wedgwood's": null, + "wedlock": [["S", "M"]], + "wedlocks": null, + "wedlock's": null, + "Wed": [["M"]], + "Wed's": null, + "Wednesday": [["S", "M"]], + "Wednesdays": null, + "Wednesday's": null, + "wed": [["S", "A"]], + "weds": null, + "reweds": null, + "rewed": null, + "weeder": [["M"]], + "weeder's": null, + "weediness": [["M"]], + "weediness's": null, + "weedkiller": [["M"]], + "weedkiller's": null, + "weedless": null, + "wee": [["D", "R", "S", "T"]], + "weed": [["S", "G", "M", "R", "D", "Z"]], + "weer": null, + "wees": null, + "weest": null, + "weeds": null, + "weeding": null, + "weed's": null, + "weeded": null, + "weeders": null, + "weedy": [["T", "R", "P"]], + "weediest": null, + "weedier": null, + "weeing": null, + "weekday": [["M", "S"]], + "weekday's": null, + "weekdays": null, + "weekender": [["M"]], + "weekender's": null, + "weekend": [["S", "D", "R", "M", "G"]], + "weekends": null, + "weekended": null, + "weekend's": null, + "weekending": null, + "weekly": [["S"]], + "weeklies": null, + "weeknight": [["S", "M"]], + "weeknights": null, + "weeknight's": null, + "Weeks": [["M"]], + "Weeks's": null, + "week": [["S", "Y", "M"]], + "weeks": null, + "week's": null, + "weenie": [["M"]], + "weenie's": null, + "ween": [["S", "G", "D"]], + "weens": null, + "weening": null, + "weened": null, + "weeny": [["R", "S", "M", "T"]], + "weenier": null, + "weenies": null, + "weeny's": null, + "weeniest": null, + "weeper": [["M"]], + "weeper's": null, + "weep": [["S", "G", "Z", "J", "R", "D"]], + "weeps": null, + "weeping": null, + "weepers": null, + "weepings": null, + "weeped": null, + "weepy": [["R", "S", "T"]], + "weepier": null, + "weepies": null, + "weepiest": null, + "weevil": [["M", "S"]], + "weevil's": null, + "weevils": null, + "weft": [["S", "G", "M", "D"]], + "wefts": null, + "wefting": null, + "weft's": null, + "wefted": null, + "Wehr": [["M"]], + "Wehr's": null, + "Weibull": [["M"]], + "Weibull's": null, + "Weidar": [["M"]], + "Weidar's": null, + "Weider": [["M"]], + "Weider's": null, + "Weidman": [["M"]], + "Weidman's": null, + "Weierstrass": [["M"]], + "Weierstrass's": null, + "weighed": [["U", "A"]], + "unweighed": null, + "reweighed": null, + "weigher": [["M"]], + "weigher's": null, + "weigh": [["R", "D", "J", "G"]], + "weighings": null, + "weighing": null, + "weighs": [["A"]], + "reweighs": null, + "weighted": [["U"]], + "unweighted": null, + "weighter": [["M"]], + "weighter's": null, + "weightily": null, + "weightiness": [["S", "M"]], + "weightinesses": null, + "weightiness's": null, + "weighting": [["M"]], + "weighting's": null, + "weight": [["J", "M", "S", "R", "D", "G"]], + "weightings": null, + "weight's": null, + "weights": null, + "weightlessness": [["S", "M"]], + "weightlessnesses": null, + "weightlessness's": null, + "weightless": [["Y", "P"]], + "weightlessly": null, + "weightlifter": [["S"]], + "weightlifters": null, + "weightlifting": [["M", "S"]], + "weightlifting's": null, + "weightliftings": null, + "weighty": [["T", "P", "R"]], + "weightiest": null, + "weightier": null, + "Weill": [["M"]], + "Weill's": null, + "Wei": [["M"]], + "Wei's": null, + "Weinberg": [["M"]], + "Weinberg's": null, + "Weiner": [["M"]], + "Weiner's": null, + "Weinstein": [["M"]], + "Weinstein's": null, + "weirdie": [["S", "M"]], + "weirdies": null, + "weirdie's": null, + "weirdness": [["M", "S"]], + "weirdness's": null, + "weirdnesses": null, + "weirdo": [["S", "M"]], + "weirdos": null, + "weirdo's": null, + "weird": [["Y", "R", "D", "P", "G", "T", "S"]], + "weirdly": null, + "weirder": null, + "weirded": null, + "weirding": null, + "weirdest": null, + "weirds": null, + "weir": [["S", "D", "M", "G"]], + "weirs": null, + "weired": null, + "weir's": null, + "weiring": null, + "Weisenheimer": [["M"]], + "Weisenheimer's": null, + "Weiss": [["M"]], + "Weiss's": null, + "Weissman": [["M"]], + "Weissman's": null, + "Weissmuller": [["M"]], + "Weissmuller's": null, + "Weizmann": [["M"]], + "Weizmann's": null, + "Welbie": [["M"]], + "Welbie's": null, + "Welby": [["M"]], + "Welby's": null, + "Welcher": [["M"]], + "Welcher's": null, + "Welches": null, + "welcomeness": [["M"]], + "welcomeness's": null, + "welcome": [["P", "R", "S", "D", "Y", "G"]], + "welcomer": null, + "welcomes": null, + "welcomed": null, + "welcomely": null, + "welcoming": [["U"]], + "unwelcoming": null, + "welder": [["M"]], + "welder's": null, + "Weldon": [["M"]], + "Weldon's": null, + "weld": [["S", "B", "J", "G", "Z", "R", "D"]], + "welds": null, + "weldable": null, + "weldings": null, + "welding": null, + "welders": null, + "welded": null, + "Weldwood": [["M"]], + "Weldwood's": null, + "welfare": [["S", "M"]], + "welfares": null, + "welfare's": null, + "welkin": [["S", "M"]], + "welkins": null, + "welkin's": null, + "we'll": null, + "Welland": [["M"]], + "Welland's": null, + "wellbeing": [["M"]], + "wellbeing's": null, + "Weller": [["M"]], + "Weller's": null, + "Wellesley": [["M"]], + "Wellesley's": null, + "Welles": [["M"]], + "Welles's": null, + "wellhead": [["S", "M"]], + "wellheads": null, + "wellhead's": null, + "Wellington": [["M", "S"]], + "Wellington's": null, + "Wellingtons": null, + "wellington": [["S"]], + "wellingtons": null, + "Wellman": [["M"]], + "Wellman's": null, + "wellness": [["M", "S"]], + "wellness's": null, + "wellnesses": null, + "well": [["S", "G", "P", "D"]], + "wells": null, + "welling": null, + "welled": null, + "Wells": [["M"]], + "Wells's": null, + "wellspring": [["S", "M"]], + "wellsprings": null, + "wellspring's": null, + "Wellsville": [["M"]], + "Wellsville's": null, + "Welmers": [["M"]], + "Welmers's": null, + "Welsh": null, + "welsher": [["M"]], + "welsher's": null, + "Welshman": [["M"]], + "Welshman's": null, + "Welshmen": null, + "welsh": [["R", "S", "D", "G", "Z"]], + "welshes": null, + "welshed": null, + "welshing": null, + "welshers": null, + "Welshwoman": [["M"]], + "Welshwoman's": null, + "Welshwomen": null, + "welter": [["G", "D"]], + "weltering": null, + "weltered": null, + "welterweight": [["M", "S"]], + "welterweight's": null, + "welterweights": null, + "welt": [["G", "Z", "S", "M", "R", "D"]], + "welting": null, + "welters": null, + "welts": null, + "welt's": null, + "welted": null, + "wencher": [["M"]], + "wencher's": null, + "wench": [["G", "R", "S", "D", "M"]], + "wenching": null, + "wenches": null, + "wenched": null, + "wench's": null, + "Wendall": [["M"]], + "Wendall's": null, + "Wenda": [["M"]], + "Wenda's": null, + "wend": [["D", "S", "G"]], + "wended": null, + "wends": null, + "wending": null, + "Wendeline": [["M"]], + "Wendeline's": null, + "Wendell": [["M"]], + "Wendell's": null, + "Wendel": [["M"]], + "Wendel's": null, + "Wendie": [["M"]], + "Wendie's": null, + "Wendi": [["M"]], + "Wendi's": null, + "Wendye": [["M"]], + "Wendye's": null, + "Wendy": [["M"]], + "Wendy's": null, + "wen": [["M"]], + "wen's": null, + "Wenonah": [["M"]], + "Wenonah's": null, + "Wenona": [["M"]], + "Wenona's": null, + "went": null, + "Wentworth": [["M"]], + "Wentworth's": null, + "wept": [["U"]], + "unwept": null, + "were": null, + "we're": null, + "weren't": null, + "werewolf": [["M"]], + "werewolf's": null, + "werewolves": null, + "Werner": [["M"]], + "Werner's": null, + "Wernher": [["M"]], + "Wernher's": null, + "Werther": [["M"]], + "Werther's": null, + "werwolf's": null, + "Wes": null, + "Wesleyan": null, + "Wesley": [["M"]], + "Wesley's": null, + "Wessex": [["M"]], + "Wessex's": null, + "Wesson": [["M"]], + "Wesson's": null, + "westbound": null, + "Westbrooke": [["M"]], + "Westbrooke's": null, + "Westbrook": [["M"]], + "Westbrook's": null, + "Westchester": [["M"]], + "Westchester's": null, + "wester": [["D", "Y", "G"]], + "westered": null, + "westerly": [["S"]], + "westering": null, + "westerlies": null, + "westerner": [["M"]], + "westerner's": null, + "westernization": [["M", "S"]], + "westernization's": null, + "westernizations": null, + "westernize": [["G", "S", "D"]], + "westernizing": null, + "westernizes": null, + "westernized": null, + "westernmost": null, + "Western": [["Z", "R", "S"]], + "Westerners": null, + "Westerner": null, + "Westerns": null, + "western": [["Z", "S", "R"]], + "westerners": null, + "westerns": null, + "Westfield": [["M"]], + "Westfield's": null, + "Westhampton": [["M"]], + "Westhampton's": null, + "Westinghouse": [["M"]], + "Westinghouse's": null, + "westing": [["M"]], + "westing's": null, + "Westleigh": [["M"]], + "Westleigh's": null, + "Westley": [["M"]], + "Westley's": null, + "Westminster": [["M"]], + "Westminster's": null, + "Westmore": [["M"]], + "Westmore's": null, + "West": [["M", "S"]], + "West's": null, + "Wests": null, + "Weston": [["M"]], + "Weston's": null, + "Westphalia": [["M"]], + "Westphalia's": null, + "Westport": [["M"]], + "Westport's": null, + "west": [["R", "D", "G", "S", "M"]], + "wested": null, + "wests": null, + "west's": null, + "westward": [["S"]], + "westwards": null, + "Westwood": [["M"]], + "Westwood's": null, + "wetback": [["M", "S"]], + "wetback's": null, + "wetbacks": null, + "wetland": [["S"]], + "wetlands": null, + "wetness": [["M", "S"]], + "wetness's": null, + "wetnesses": null, + "wet": [["S", "P", "Y"]], + "wets": null, + "wetly": null, + "wettable": null, + "wetter": [["S"]], + "wetters": null, + "wettest": null, + "wetting": null, + "we've": null, + "Weyden": [["M"]], + "Weyden's": null, + "Weyerhauser": [["M"]], + "Weyerhauser's": null, + "Weylin": [["M"]], + "Weylin's": null, + "Wezen": [["M"]], + "Wezen's": null, + "WFF": null, + "whacker": [["M"]], + "whacker's": null, + "whack": [["G", "Z", "R", "D", "S"]], + "whacking": null, + "whackers": null, + "whacked": null, + "whacks": null, + "whaleboat": [["M", "S"]], + "whaleboat's": null, + "whaleboats": null, + "whalebone": [["S", "M"]], + "whalebones": null, + "whalebone's": null, + "whale": [["G", "S", "R", "D", "Z", "M"]], + "whaling": [["M"]], + "whales": null, + "whaler": [["M"]], + "whaled": null, + "whalers": null, + "whale's": null, + "Whalen": [["M"]], + "Whalen's": null, + "whaler's": null, + "whaling's": null, + "whammed": null, + "whamming": [["M"]], + "whamming's": null, + "wham": [["M", "S"]], + "wham's": null, + "whams": null, + "whammy": [["S"]], + "whammies": null, + "wharf": [["S", "G", "M", "D"]], + "wharfs": null, + "wharfing": null, + "wharf's": null, + "wharfed": null, + "Wharton": [["M"]], + "Wharton's": null, + "wharves": null, + "whatchamacallit": [["M", "S"]], + "whatchamacallit's": null, + "whatchamacallits": null, + "what'd": null, + "whatever": null, + "what": [["M", "S"]], + "what's": null, + "whats": null, + "whatnot": [["M", "S"]], + "whatnot's": null, + "whatnots": null, + "what're": null, + "whatsoever": null, + "wheal": [["M", "S"]], + "wheal's": null, + "wheals": null, + "wheatgerm": null, + "Wheaties": [["M"]], + "Wheaties's": null, + "Wheatland": [["M"]], + "Wheatland's": null, + "wheat": [["N", "M", "X", "S"]], + "wheaten": null, + "wheat's": null, + "wheatens": null, + "wheats": null, + "Wheaton": [["M"]], + "Wheaton's": null, + "Wheatstone": [["M"]], + "Wheatstone's": null, + "wheedle": [["Z", "D", "R", "S", "G"]], + "wheedlers": null, + "wheedled": null, + "wheedler": null, + "wheedles": null, + "wheedling": null, + "wheelbarrow": [["G", "S", "D", "M"]], + "wheelbarrowing": null, + "wheelbarrows": null, + "wheelbarrowed": null, + "wheelbarrow's": null, + "wheelbase": [["M", "S"]], + "wheelbase's": null, + "wheelbases": null, + "wheelchair": [["M", "S"]], + "wheelchair's": null, + "wheelchairs": null, + "wheeler": [["M"]], + "wheeler's": null, + "Wheeler": [["M"]], + "Wheeler's": null, + "wheelhouse": [["S", "M"]], + "wheelhouses": null, + "wheelhouse's": null, + "wheelie": [["M", "S"]], + "wheelie's": null, + "wheelies": null, + "wheeling": [["M"]], + "wheeling's": null, + "Wheeling": [["M"]], + "Wheeling's": null, + "Wheelock": [["M"]], + "Wheelock's": null, + "wheel": [["R", "D", "M", "J", "S", "G", "Z"]], + "wheeled": null, + "wheel's": null, + "wheelings": null, + "wheels": null, + "wheelers": null, + "wheelwright": [["M", "S"]], + "wheelwright's": null, + "wheelwrights": null, + "whee": [["S"]], + "whees": null, + "wheeze": [["S", "D", "G"]], + "wheezes": null, + "wheezed": null, + "wheezing": null, + "wheezily": null, + "wheeziness": [["S", "M"]], + "wheezinesses": null, + "wheeziness's": null, + "wheezy": [["P", "R", "T"]], + "wheezier": null, + "wheeziest": null, + "Whelan": [["M"]], + "Whelan's": null, + "whelk": [["M", "D", "S"]], + "whelk's": null, + "whelked": null, + "whelks": null, + "Wheller": [["M"]], + "Wheller's": null, + "whelm": [["D", "G", "S"]], + "whelmed": null, + "whelming": null, + "whelms": null, + "whelp": [["D", "M", "G", "S"]], + "whelped": null, + "whelp's": null, + "whelping": null, + "whelps": null, + "whence": [["S"]], + "whences": null, + "whenever": null, + "when": [["S"]], + "whens": null, + "whensoever": null, + "whereabout": [["S"]], + "whereabouts": null, + "whereas": [["S"]], + "whereases": null, + "whereat": null, + "whereby": null, + "where'd": null, + "wherefore": [["M", "S"]], + "wherefore's": null, + "wherefores": null, + "wherein": null, + "where": [["M", "S"]], + "where's": null, + "wheres": null, + "whereof": null, + "whereon": null, + "where're": null, + "wheresoever": null, + "whereto": null, + "whereupon": null, + "wherever": null, + "wherewith": null, + "wherewithal": [["S", "M"]], + "wherewithals": null, + "wherewithal's": null, + "wherry": [["D", "S", "G", "M"]], + "wherried": null, + "wherries": null, + "wherrying": null, + "wherry's": null, + "whether": null, + "whet": [["S"]], + "whets": null, + "whetstone": [["M", "S"]], + "whetstone's": null, + "whetstones": null, + "whetted": null, + "whetting": null, + "whew": [["G", "S", "D"]], + "whewing": null, + "whews": null, + "whewed": null, + "whey": [["M", "S"]], + "whey's": null, + "wheys": null, + "which": null, + "whichever": null, + "whiff": [["G", "S", "M", "D"]], + "whiffing": null, + "whiffs": null, + "whiff's": null, + "whiffed": null, + "whiffle": [["D", "R", "S", "G"]], + "whiffled": null, + "whiffler": [["M"]], + "whiffles": null, + "whiffling": null, + "whiffler's": null, + "whiffletree": [["S", "M"]], + "whiffletrees": null, + "whiffletree's": null, + "whig": [["S"]], + "whigs": null, + "Whig": [["S", "M"]], + "Whigs": null, + "Whig's": null, + "while": [["G", "S", "D"]], + "whiling": null, + "whiles": null, + "whiled": null, + "whilom": null, + "whilst": null, + "whimmed": null, + "whimming": null, + "whimper": [["D", "S", "G"]], + "whimpered": null, + "whimpers": null, + "whimpering": null, + "whimsey's": null, + "whimsicality": [["M", "S"]], + "whimsicality's": null, + "whimsicalities": null, + "whimsical": [["Y", "P"]], + "whimsically": null, + "whimsicalness": null, + "whim": [["S", "M"]], + "whims": null, + "whim's": null, + "whimsy": [["T", "M", "D", "R", "S"]], + "whimsiest": null, + "whimsy's": null, + "whimsied": null, + "whimsier": null, + "whimsies": null, + "whine": [["G", "Z", "M", "S", "R", "D"]], + "whining": [["Y"]], + "whiners": null, + "whine's": null, + "whines": null, + "whiner": null, + "whined": null, + "whiningly": null, + "whinny": [["G", "T", "D", "R", "S"]], + "whinnying": null, + "whinniest": null, + "whinnied": null, + "whinnier": null, + "whinnies": null, + "whiny": [["R", "T"]], + "whinier": null, + "whiniest": null, + "whipcord": [["S", "M"]], + "whipcords": null, + "whipcord's": null, + "whiplash": [["S", "D", "M", "G"]], + "whiplashes": null, + "whiplashed": null, + "whiplash's": null, + "whiplashing": null, + "Whippany": [["M"]], + "Whippany's": null, + "whipped": null, + "whipper": [["M", "S"]], + "whipper's": null, + "whippers": null, + "whippersnapper": [["M", "S"]], + "whippersnapper's": null, + "whippersnappers": null, + "whippet": [["M", "S"]], + "whippet's": null, + "whippets": null, + "whipping": [["S", "M"]], + "whippings": null, + "whipping's": null, + "Whipple": [["M"]], + "Whipple's": null, + "whippletree": [["S", "M"]], + "whippletrees": null, + "whippletree's": null, + "whippoorwill": [["S", "M"]], + "whippoorwills": null, + "whippoorwill's": null, + "whipsaw": [["G", "D", "M", "S"]], + "whipsawing": null, + "whipsawed": null, + "whipsaw's": null, + "whipsaws": null, + "whips": [["M"]], + "whips's": null, + "whip": [["S", "M"]], + "whip's": null, + "whirligig": [["M", "S"]], + "whirligig's": null, + "whirligigs": null, + "whirlpool": [["M", "S"]], + "whirlpool's": null, + "whirlpools": null, + "whirl": [["R", "D", "G", "S"]], + "whirler": null, + "whirled": null, + "whirling": null, + "whirls": null, + "whirlwind": [["M", "S"]], + "whirlwind's": null, + "whirlwinds": null, + "whirlybird": [["M", "S"]], + "whirlybird's": null, + "whirlybirds": null, + "whirly": [["M", "S"]], + "whirly's": null, + "whirlies": null, + "whirred": null, + "whirring": null, + "whir": [["S", "Y"]], + "whirs": null, + "whisker": [["D", "M"]], + "whiskered": null, + "whisker's": null, + "whiskery": null, + "whiskey": [["S", "M"]], + "whiskeys": null, + "whiskey's": null, + "whisk": [["G", "Z", "R", "D", "S"]], + "whisking": null, + "whiskers": null, + "whisked": null, + "whisks": null, + "whisperer": [["M"]], + "whisperer's": null, + "whisper": [["G", "R", "D", "J", "Z", "S"]], + "whispering": [["Y", "M"]], + "whispered": null, + "whisperings": null, + "whisperers": null, + "whispers": null, + "whisperingly": null, + "whispering's": null, + "whist": [["G", "D", "M", "S"]], + "whisting": null, + "whisted": null, + "whist's": null, + "whists": null, + "whistleable": null, + "whistle": [["D", "R", "S", "Z", "G"]], + "whistled": null, + "whistler": [["M"]], + "whistles": null, + "whistlers": null, + "whistling": [["M"]], + "whistler's": null, + "Whistler": [["M"]], + "Whistler's": null, + "whistling's": null, + "Whitaker": [["M"]], + "Whitaker's": null, + "Whitby": [["M"]], + "Whitby's": null, + "Whitcomb": [["M"]], + "Whitcomb's": null, + "whitebait": [["M"]], + "whitebait's": null, + "whitecap": [["M", "S"]], + "whitecap's": null, + "whitecaps": null, + "whiteface": [["M"]], + "whiteface's": null, + "Whitefield": [["M"]], + "Whitefield's": null, + "whitefish": [["S", "M"]], + "whitefishes": null, + "whitefish's": null, + "Whitehall": [["M"]], + "Whitehall's": null, + "Whitehead": [["M"]], + "Whitehead's": null, + "whitehead": [["S"]], + "whiteheads": null, + "Whitehorse": [["M"]], + "Whitehorse's": null, + "Whiteleaf": [["M"]], + "Whiteleaf's": null, + "Whiteley": [["M"]], + "Whiteley's": null, + "White": [["M", "S"]], + "White's": null, + "Whites": null, + "whitener": [["M"]], + "whitener's": null, + "whiteness": [["M", "S"]], + "whiteness's": null, + "whitenesses": null, + "whitening": [["M"]], + "whitening's": null, + "whiten": [["J", "Z", "D", "R", "G"]], + "whitenings": null, + "whiteners": null, + "whitened": null, + "whiteout": [["S"]], + "whiteouts": null, + "white": [["P", "Y", "S"]], + "whitely": null, + "whites": null, + "whitespace": null, + "whitetail": [["S"]], + "whitetails": null, + "whitewall": [["S", "M"]], + "whitewalls": null, + "whitewall's": null, + "whitewash": [["G", "R", "S", "D", "M"]], + "whitewashing": null, + "whitewasher": null, + "whitewashes": null, + "whitewashed": null, + "whitewash's": null, + "whitewater": null, + "Whitewater": [["M"]], + "Whitewater's": null, + "whitey": [["M", "S"]], + "whitey's": null, + "whiteys": null, + "Whitfield": [["M"]], + "Whitfield's": null, + "whither": [["D", "G", "S"]], + "whithered": null, + "whithering": null, + "whithers": null, + "whitier": null, + "whitiest": null, + "whiting": [["M"]], + "whiting's": null, + "whitish": null, + "Whitley": [["M"]], + "Whitley's": null, + "Whitlock": [["M"]], + "Whitlock's": null, + "Whit": [["M"]], + "Whit's": null, + "Whitman": [["M"]], + "Whitman's": null, + "Whitney": [["M"]], + "Whitney's": null, + "whit": [["S", "J", "G", "T", "X", "M", "R", "N", "D"]], + "whits": null, + "whitings": null, + "whitest": null, + "whitens": null, + "whit's": null, + "whiter": null, + "whited": null, + "Whitsunday": [["M", "S"]], + "Whitsunday's": null, + "Whitsundays": null, + "Whittaker": [["M"]], + "Whittaker's": null, + "whitter": null, + "Whittier": null, + "whittle": [["J", "D", "R", "S", "Z", "G"]], + "whittlings": null, + "whittled": null, + "whittler": [["M"]], + "whittles": null, + "whittlers": null, + "whittling": null, + "whittler's": null, + "whiz": null, + "whizkid": null, + "whizzbang": [["S"]], + "whizzbangs": null, + "whizzed": null, + "whizzes": null, + "whizzing": null, + "WHO": null, + "whoa": [["S"]], + "whoas": null, + "who'd": null, + "whodunit": [["S", "M"]], + "whodunits": null, + "whodunit's": null, + "whoever": null, + "wholegrain": null, + "wholeheartedness": [["M", "S"]], + "wholeheartedness's": null, + "wholeheartednesses": null, + "wholehearted": [["P", "Y"]], + "wholeheartedly": null, + "wholemeal": null, + "wholeness": [["S"]], + "wholenesses": null, + "wholesale": [["G", "Z", "M", "S", "R", "D"]], + "wholesaling": null, + "wholesalers": null, + "wholesale's": null, + "wholesales": null, + "wholesaler": [["M"]], + "wholesaled": null, + "wholesaler's": null, + "wholesomeness": [["U", "S", "M"]], + "unwholesomeness": null, + "unwholesomenesses": null, + "unwholesomeness's": null, + "wholesomenesses": null, + "wholesomeness's": null, + "wholesome": [["U", "Y", "P"]], + "unwholesome": null, + "unwholesomely": null, + "wholesomely": null, + "whole": [["S", "P"]], + "wholes": null, + "wholewheat": null, + "who'll": null, + "wholly": null, + "whom": null, + "who": [["M"]], + "who's": null, + "whomever": null, + "whomsoever": null, + "whoopee": [["S"]], + "whoopees": null, + "whooper": [["M"]], + "whooper's": null, + "whoop": [["S", "R", "D", "G", "Z"]], + "whoops": null, + "whooped": null, + "whooping": null, + "whoopers": null, + "whoosh": [["D", "S", "G", "M"]], + "whooshed": null, + "whooshes": null, + "whooshing": null, + "whoosh's": null, + "whop": null, + "whopper": [["M", "S"]], + "whopper's": null, + "whoppers": null, + "whopping": [["S"]], + "whoppings": null, + "who're": null, + "whorehouse": [["S", "M"]], + "whorehouses": null, + "whorehouse's": null, + "whoreish": null, + "whore": [["S", "D", "G", "M"]], + "whores": null, + "whored": null, + "whoring": null, + "whore's": null, + "whorish": null, + "whorl": [["S", "D", "M"]], + "whorls": null, + "whorled": null, + "whorl's": null, + "whose": null, + "whoso": null, + "whosoever": null, + "who've": null, + "why": null, + "whys": null, + "WI": null, + "Wiatt": [["M"]], + "Wiatt's": null, + "Wichita": [["M"]], + "Wichita's": null, + "wickedness": [["M", "S"]], + "wickedness's": null, + "wickednesses": null, + "wicked": [["R", "Y", "P", "T"]], + "wickeder": null, + "wickedly": null, + "wickedest": null, + "wicker": [["M"]], + "wicker's": null, + "wickerwork": [["M", "S"]], + "wickerwork's": null, + "wickerworks": null, + "wicketkeeper": [["S", "M"]], + "wicketkeepers": null, + "wicketkeeper's": null, + "wicket": [["S", "M"]], + "wickets": null, + "wicket's": null, + "wick": [["G", "Z", "R", "D", "M", "S"]], + "wicking": [["M"]], + "wickers": null, + "wick's": null, + "wicks": null, + "wicking's": null, + "widemouthed": null, + "widener": [["M"]], + "widener's": null, + "wideness": [["S"]], + "widenesses": null, + "widen": [["S", "G", "Z", "R", "D"]], + "widens": null, + "widening": null, + "wideners": null, + "widened": null, + "wide": [["R", "S", "Y", "T", "P"]], + "wider": null, + "wides": null, + "widely": null, + "widest": null, + "widespread": null, + "widgeon's": null, + "widget": [["S", "M"]], + "widgets": null, + "widget's": null, + "widower": [["M"]], + "widower's": null, + "widowhood": [["S"]], + "widowhoods": null, + "widow": [["M", "R", "D", "S", "G", "Z"]], + "widow's": null, + "widowed": null, + "widows": null, + "widowing": null, + "widowers": null, + "width": [["M"]], + "width's": null, + "widths": null, + "widthwise": null, + "Wieland": [["M"]], + "Wieland's": null, + "wielder": [["M"]], + "wielder's": null, + "wield": [["G", "Z", "R", "D", "S"]], + "wielding": null, + "wielders": null, + "wielded": null, + "wields": null, + "Wiemar": [["M"]], + "Wiemar's": null, + "wiener": [["S", "M"]], + "wieners": null, + "wiener's": null, + "wienie": [["S", "M"]], + "wienies": null, + "wienie's": null, + "Wier": [["M"]], + "Wier's": null, + "Wiesel": [["M"]], + "Wiesel's": null, + "wife": [["D", "S", "M", "Y", "G"]], + "wifed": null, + "wifes": null, + "wife's": null, + "wifely": [["R", "P", "T"]], + "wifing": null, + "wifeless": null, + "wifelier": null, + "wifeliness": null, + "wifeliest": null, + "wigeon": [["M", "S"]], + "wigeon's": null, + "wigeons": null, + "wigged": null, + "wigging": [["M"]], + "wigging's": null, + "Wiggins": null, + "wiggler": [["M"]], + "wiggler's": null, + "wiggle": [["R", "S", "D", "G", "Z"]], + "wiggles": null, + "wiggled": null, + "wiggling": null, + "wigglers": null, + "wiggly": [["R", "T"]], + "wigglier": null, + "wiggliest": null, + "wight": [["S", "G", "D", "M"]], + "wights": null, + "wighting": null, + "wighted": null, + "wight's": null, + "wiglet": [["S"]], + "wiglets": null, + "wigmaker": null, + "wig": [["M", "S"]], + "wig's": null, + "wigs": null, + "Wigner": [["M"]], + "Wigner's": null, + "wigwagged": null, + "wigwagging": null, + "wigwag": [["S"]], + "wigwags": null, + "wigwam": [["M", "S"]], + "wigwam's": null, + "wigwams": null, + "Wilberforce": [["M"]], + "Wilberforce's": null, + "Wilbert": [["M"]], + "Wilbert's": null, + "Wilbur": [["M"]], + "Wilbur's": null, + "Wilburn": [["M"]], + "Wilburn's": null, + "Wilburt": [["M"]], + "Wilburt's": null, + "Wilcox": [["M"]], + "Wilcox's": null, + "Wilda": [["M"]], + "Wilda's": null, + "wildcat": [["S", "M"]], + "wildcats": null, + "wildcat's": null, + "wildcatted": null, + "wildcatter": [["M", "S"]], + "wildcatter's": null, + "wildcatters": null, + "wildcatting": null, + "wildebeest": [["S", "M"]], + "wildebeests": null, + "wildebeest's": null, + "Wilde": [["M", "R"]], + "Wilde's": null, + "Wilder": [["M"]], + "Wilden": [["M"]], + "Wilden's": null, + "Wilder's": null, + "wilderness": [["S", "M"]], + "wildernesses": null, + "wilderness's": null, + "wilder": [["P"]], + "wildfire": [["M", "S"]], + "wildfire's": null, + "wildfires": null, + "wildflower": [["S"]], + "wildflowers": null, + "wildfowl": [["M"]], + "wildfowl's": null, + "wilding": [["M"]], + "wilding's": null, + "wildlife": [["M"]], + "wildlife's": null, + "wildness": [["M", "S"]], + "wildness's": null, + "wildnesses": null, + "Wildon": [["M"]], + "Wildon's": null, + "wild": [["S", "P", "G", "T", "Y", "R", "D"]], + "wilds": null, + "wildest": null, + "wildly": null, + "wilded": null, + "wile": [["D", "S", "M", "G"]], + "wiled": null, + "wiles": null, + "wile's": null, + "wiling": null, + "Wileen": [["M"]], + "Wileen's": null, + "Wilek": [["M"]], + "Wilek's": null, + "Wiley": [["M"]], + "Wiley's": null, + "Wilford": [["M"]], + "Wilford's": null, + "Wilfred": [["M"]], + "Wilfred's": null, + "Wilfredo": [["M"]], + "Wilfredo's": null, + "Wilfrid": [["M"]], + "Wilfrid's": null, + "wilfulness's": null, + "Wilhelmina": [["M"]], + "Wilhelmina's": null, + "Wilhelmine": [["M"]], + "Wilhelmine's": null, + "Wilhelm": [["M"]], + "Wilhelm's": null, + "Wilie": [["M"]], + "Wilie's": null, + "wilily": null, + "wiliness": [["M", "S"]], + "wiliness's": null, + "wilinesses": null, + "Wilkerson": [["M"]], + "Wilkerson's": null, + "Wilkes": [["M"]], + "Wilkes's": null, + "Wilkins": [["M"]], + "Wilkins's": null, + "Wilkinson": [["M"]], + "Wilkinson's": null, + "Willabella": [["M"]], + "Willabella's": null, + "Willa": [["M"]], + "Willa's": null, + "Willamette": [["M"]], + "Willamette's": null, + "Willamina": [["M"]], + "Willamina's": null, + "Willard": [["M"]], + "Willard's": null, + "Willcox": [["M"]], + "Willcox's": null, + "Willdon": [["M"]], + "Willdon's": null, + "willed": [["U"]], + "unwilled": null, + "Willem": [["M"]], + "Willem's": null, + "Willemstad": [["M"]], + "Willemstad's": null, + "willer": [["M"]], + "willer's": null, + "Willetta": [["M"]], + "Willetta's": null, + "Willette": [["M"]], + "Willette's": null, + "Willey": [["M"]], + "Willey's": null, + "willfulness": [["S"]], + "willfulnesses": null, + "willful": [["Y", "P"]], + "willfully": null, + "Williamsburg": [["M"]], + "Williamsburg's": null, + "William": [["S", "M"]], + "Williams": null, + "William's": null, + "Williamson": [["M"]], + "Williamson's": null, + "Willied": [["M"]], + "Willied's": null, + "Willie": [["M"]], + "Willie's": null, + "willies": null, + "Willi": [["M", "S"]], + "Willi's": null, + "Willis": null, + "willinger": null, + "willingest": null, + "willingness's": null, + "willingness": [["U", "S"]], + "unwillingness": null, + "unwillingnesses": null, + "willingnesses": null, + "willing": [["U", "Y", "P"]], + "unwilling": null, + "unwillingly": null, + "willingly": null, + "Willisson": [["M"]], + "Willisson's": null, + "williwaw": [["M", "S"]], + "williwaw's": null, + "williwaws": null, + "Will": [["M"]], + "Will's": null, + "Willoughby": [["M"]], + "Willoughby's": null, + "willower": [["M"]], + "willower's": null, + "Willow": [["M"]], + "Willow's": null, + "willow": [["R", "D", "M", "S", "G"]], + "willowed": null, + "willow's": null, + "willows": null, + "willowing": null, + "willowy": [["T", "R"]], + "willowiest": null, + "willowier": null, + "willpower": [["M", "S"]], + "willpower's": null, + "willpowers": null, + "will": [["S", "G", "J", "R", "D"]], + "wills": null, + "willings": null, + "Willy": [["S", "D", "M"]], + "Willies": null, + "Willy's": null, + "Willyt": [["M"]], + "Willyt's": null, + "Wilma": [["M"]], + "Wilma's": null, + "Wilmar": [["M"]], + "Wilmar's": null, + "Wilmer": [["M"]], + "Wilmer's": null, + "Wilmette": [["M"]], + "Wilmette's": null, + "Wilmington": [["M"]], + "Wilmington's": null, + "Wilona": [["M"]], + "Wilona's": null, + "Wilone": [["M"]], + "Wilone's": null, + "Wilow": [["M"]], + "Wilow's": null, + "Wilshire": [["M"]], + "Wilshire's": null, + "Wilsonian": null, + "Wilson": [["M"]], + "Wilson's": null, + "wilt": [["D", "G", "S"]], + "wilted": null, + "wilting": null, + "wilts": null, + "Wilt": [["M"]], + "Wilt's": null, + "Wilton": [["M"]], + "Wilton's": null, + "wily": [["P", "T", "R"]], + "wiliest": null, + "wilier": null, + "Wimbledon": [["M"]], + "Wimbledon's": null, + "wimp": [["G", "S", "M", "D"]], + "wimping": null, + "wimps": null, + "wimp's": null, + "wimped": null, + "wimpish": null, + "wimple": [["S", "D", "G", "M"]], + "wimples": null, + "wimpled": null, + "wimpling": null, + "wimple's": null, + "wimpy": [["R", "T"]], + "wimpier": null, + "wimpiest": null, + "wince": [["S", "D", "G"]], + "winces": null, + "winced": null, + "wincing": null, + "Winchell": [["M"]], + "Winchell's": null, + "wincher": [["M"]], + "wincher's": null, + "winchester": [["M"]], + "winchester's": null, + "Winchester": [["M", "S"]], + "Winchester's": null, + "Winchesters": null, + "winch": [["G", "R", "S", "D", "M"]], + "winching": null, + "winches": null, + "winched": null, + "winch's": null, + "windbag": [["S", "M"]], + "windbags": null, + "windbag's": null, + "windblown": null, + "windbreak": [["M", "Z", "S", "R"]], + "windbreak's": null, + "windbreakers": null, + "windbreaks": null, + "windbreaker": null, + "windburn": [["G", "S", "M", "D"]], + "windburning": null, + "windburns": null, + "windburn's": null, + "windburned": null, + "winded": null, + "winder": [["U", "M"]], + "unwinder": null, + "unwinder's": null, + "winder's": null, + "windfall": [["S", "M"]], + "windfalls": null, + "windfall's": null, + "windflower": [["M", "S"]], + "windflower's": null, + "windflowers": null, + "Windham": [["M"]], + "Windham's": null, + "Windhoek": [["M"]], + "Windhoek's": null, + "windily": null, + "windiness": [["S", "M"]], + "windinesses": null, + "windiness's": null, + "winding": [["M", "S"]], + "winding's": null, + "windings": null, + "windjammer": [["S", "M"]], + "windjammers": null, + "windjammer's": null, + "windlass": [["G", "M", "S", "D"]], + "windlassing": null, + "windlass's": null, + "windlasses": null, + "windlassed": null, + "windless": [["Y", "P"]], + "windlessly": null, + "windlessness": null, + "windmill": [["G", "D", "M", "S"]], + "windmilling": null, + "windmilled": null, + "windmill's": null, + "windmills": null, + "window": [["D", "M", "G", "S"]], + "windowed": null, + "window's": null, + "windowing": null, + "windows": null, + "windowless": null, + "windowpane": [["S", "M"]], + "windowpanes": null, + "windowpane's": null, + "Windows": null, + "windowsill": [["S", "M"]], + "windowsills": null, + "windowsill's": null, + "windpipe": [["S", "M"]], + "windpipes": null, + "windpipe's": null, + "windproof": null, + "windrow": [["G", "D", "M", "S"]], + "windrowing": null, + "windrowed": null, + "windrow's": null, + "windrows": null, + "wind's": null, + "winds": [["A"]], + "rewinds": null, + "windscreen": [["M", "S"]], + "windscreen's": null, + "windscreens": null, + "windshield": [["S", "M"]], + "windshields": null, + "windshield's": null, + "windsock": [["M", "S"]], + "windsock's": null, + "windsocks": null, + "Windsor": [["M", "S"]], + "Windsor's": null, + "Windsors": null, + "windstorm": [["M", "S"]], + "windstorm's": null, + "windstorms": null, + "windsurf": [["G", "Z", "J", "S", "R", "D"]], + "windsurfing": null, + "windsurfers": null, + "windsurfings": null, + "windsurfs": null, + "windsurfer": null, + "windsurfed": null, + "windswept": null, + "windup": [["M", "S"]], + "windup's": null, + "windups": null, + "wind": [["U", "S", "R", "Z", "G"]], + "unwinds": null, + "unwinders": null, + "unwinding": null, + "winders": null, + "Windward": [["M"]], + "Windward's": null, + "windward": [["S", "Y"]], + "windwards": null, + "windwardly": null, + "Windy": [["M"]], + "Windy's": null, + "windy": [["T", "P", "R"]], + "windiest": null, + "windier": null, + "wineglass": [["S", "M"]], + "wineglasses": null, + "wineglass's": null, + "winegrower": [["S", "M"]], + "winegrowers": null, + "winegrower's": null, + "Winehead": [["M"]], + "Winehead's": null, + "winemake": null, + "winemaster": null, + "wine": [["M", "S"]], + "wine's": null, + "wines": null, + "winery": [["M", "S"]], + "winery's": null, + "wineries": null, + "Winesap": [["M"]], + "Winesap's": null, + "wineskin": [["M"]], + "wineskin's": null, + "Winfield": [["M"]], + "Winfield's": null, + "Winfred": [["M"]], + "Winfred's": null, + "Winfrey": [["M"]], + "Winfrey's": null, + "wingback": [["M"]], + "wingback's": null, + "wingding": [["M", "S"]], + "wingding's": null, + "wingdings": null, + "wingeing": null, + "winger": [["M"]], + "winger's": null, + "wing": [["G", "Z", "R", "D", "M"]], + "winging": null, + "wingers": null, + "winged": null, + "wing's": null, + "wingless": null, + "winglike": null, + "wingman": null, + "wingmen": null, + "wingspan": [["S", "M"]], + "wingspans": null, + "wingspan's": null, + "wingspread": [["M", "S"]], + "wingspread's": null, + "wingspreads": null, + "wingtip": [["S"]], + "wingtips": null, + "Winifield": [["M"]], + "Winifield's": null, + "Winifred": [["M"]], + "Winifred's": null, + "Wini": [["M"]], + "Wini's": null, + "winker": [["M"]], + "winker's": null, + "wink": [["G", "Z", "R", "D", "S"]], + "winking": [["U"]], + "winkers": null, + "winked": null, + "winks": null, + "unwinking": null, + "Winkle": [["M"]], + "Winkle's": null, + "winkle": [["S", "D", "G", "M"]], + "winkles": null, + "winkled": null, + "winkling": null, + "winkle's": null, + "winless": null, + "Win": [["M"]], + "Win's": null, + "winnable": null, + "Winnah": [["M"]], + "Winnah's": null, + "Winna": [["M"]], + "Winna's": null, + "Winnebago": [["M"]], + "Winnebago's": null, + "Winne": [["M"]], + "Winne's": null, + "winner": [["M", "S"]], + "winner's": null, + "winners": null, + "Winnetka": [["M"]], + "Winnetka's": null, + "Winnie": [["M"]], + "Winnie's": null, + "Winnifred": [["M"]], + "Winnifred's": null, + "Winni": [["M"]], + "Winni's": null, + "winning": [["S", "Y"]], + "winnings": null, + "winningly": null, + "Winnipeg": [["M"]], + "Winnipeg's": null, + "Winn": [["M"]], + "Winn's": null, + "winnow": [["S", "Z", "G", "R", "D"]], + "winnows": null, + "winnowers": null, + "winnowing": null, + "winnower": null, + "winnowed": null, + "Winny": [["M"]], + "Winny's": null, + "Winograd": [["M"]], + "Winograd's": null, + "wino": [["M", "S"]], + "wino's": null, + "winos": null, + "Winonah": [["M"]], + "Winonah's": null, + "Winona": [["M"]], + "Winona's": null, + "Winooski": [["M"]], + "Winooski's": null, + "Winsborough": [["M"]], + "Winsborough's": null, + "Winsett": [["M"]], + "Winsett's": null, + "Winslow": [["M"]], + "Winslow's": null, + "winsomeness": [["S", "M"]], + "winsomenesses": null, + "winsomeness's": null, + "winsome": [["P", "R", "T", "Y"]], + "winsomer": null, + "winsomest": null, + "winsomely": null, + "Winston": [["M"]], + "Winston's": null, + "winterer": [["M"]], + "winterer's": null, + "wintergreen": [["S", "M"]], + "wintergreens": null, + "wintergreen's": null, + "winterize": [["G", "S", "D"]], + "winterizing": null, + "winterizes": null, + "winterized": null, + "Winters": null, + "winter": [["S", "G", "R", "D", "Y", "M"]], + "winters": null, + "wintering": null, + "wintered": null, + "winterly": null, + "winter's": null, + "wintertime": [["M", "S"]], + "wintertime's": null, + "wintertimes": null, + "Winthrop": [["M"]], + "Winthrop's": null, + "wintriness": [["M"]], + "wintriness's": null, + "wintry": [["T", "P", "R"]], + "wintriest": null, + "wintrier": null, + "winy": [["R", "T"]], + "winier": null, + "winiest": null, + "win": [["Z", "G", "D", "R", "S"]], + "winers": null, + "wining": null, + "wined": null, + "winer": null, + "wins": null, + "wipe": [["D", "R", "S", "Z", "G"]], + "wiped": null, + "wiper": [["M"]], + "wipes": null, + "wipers": null, + "wiping": null, + "wiper's": null, + "wirehair": [["M", "S"]], + "wirehair's": null, + "wirehairs": null, + "wireless": [["M", "S", "D", "G"]], + "wireless's": null, + "wirelesses": null, + "wirelessed": null, + "wirelessing": null, + "wireman": [["M"]], + "wireman's": null, + "wiremen": null, + "wirer": [["M"]], + "wirer's": null, + "wire's": null, + "wires": [["A"]], + "rewires": null, + "wiretap": [["M", "S"]], + "wiretap's": null, + "wiretaps": null, + "wiretapped": null, + "wiretapper": [["S", "M"]], + "wiretappers": null, + "wiretapper's": null, + "wiretapping": null, + "wire": [["U", "D", "A"]], + "unwire": null, + "unwired": null, + "wired": null, + "rewired": null, + "wiriness": [["S"]], + "wirinesses": null, + "wiring": [["S", "M"]], + "wirings": null, + "wiring's": null, + "wiry": [["R", "T", "P"]], + "wirier": null, + "wiriest": null, + "Wisc": null, + "Wisconsinite": [["S", "M"]], + "Wisconsinites": null, + "Wisconsinite's": null, + "Wisconsin": [["M"]], + "Wisconsin's": null, + "wisdoms": null, + "wisdom": [["U", "M"]], + "unwisdom": null, + "unwisdom's": null, + "wisdom's": null, + "wiseacre": [["M", "S"]], + "wiseacre's": null, + "wiseacres": null, + "wisecrack": [["G", "M", "R", "D", "S"]], + "wisecracking": null, + "wisecrack's": null, + "wisecracker": null, + "wisecracked": null, + "wisecracks": null, + "wised": null, + "wisely": [["T", "R"]], + "wiseliest": null, + "wiselier": null, + "Wise": [["M"]], + "Wise's": null, + "wiseness": null, + "wisenheimer": [["M"]], + "wisenheimer's": null, + "Wisenheimer": [["M"]], + "Wisenheimer's": null, + "wises": null, + "wise": [["U", "R", "T", "Y"]], + "unwise": null, + "unwiser": null, + "unwisely": null, + "wiser": null, + "wisest": null, + "wishbone": [["M", "S"]], + "wishbone's": null, + "wishbones": null, + "wishfulness": [["M"]], + "wishfulness's": null, + "wishful": [["P", "Y"]], + "wishfully": null, + "wish": [["G", "Z", "S", "R", "D"]], + "wishing": null, + "wishers": null, + "wishes": null, + "wisher": null, + "wished": null, + "wishy": null, + "wising": null, + "Wis": [["M"]], + "Wis's": null, + "wisp": [["M", "D", "G", "S"]], + "wisp's": null, + "wisped": null, + "wisping": null, + "wisps": null, + "wispy": [["R", "T"]], + "wispier": null, + "wispiest": null, + "wist": [["D", "G", "S"]], + "wisted": null, + "wisting": null, + "wists": null, + "wisteria": [["S", "M"]], + "wisterias": null, + "wisteria's": null, + "wistfulness": [["M", "S"]], + "wistfulness's": null, + "wistfulnesses": null, + "wistful": [["P", "Y"]], + "wistfully": null, + "witchcraft": [["S", "M"]], + "witchcrafts": null, + "witchcraft's": null, + "witchdoctor": [["S"]], + "witchdoctors": null, + "witchery": [["M", "S"]], + "witchery's": null, + "witcheries": null, + "witch": [["S", "D", "M", "G"]], + "witches": null, + "witched": null, + "witch's": null, + "witching": null, + "withal": null, + "withdrawal": [["M", "S"]], + "withdrawal's": null, + "withdrawals": null, + "withdrawer": [["M"]], + "withdrawer's": null, + "withdrawnness": [["M"]], + "withdrawnness's": null, + "withdrawn": [["P"]], + "withdraw": [["R", "G", "S"]], + "withdrawing": null, + "withdraws": null, + "withdrew": null, + "withe": [["M"]], + "withe's": null, + "wither": [["G", "D", "J"]], + "withering": [["Y"]], + "withered": null, + "witherings": null, + "witheringly": null, + "Witherspoon": [["M"]], + "Witherspoon's": null, + "with": [["G", "S", "R", "D", "Z"]], + "withing": null, + "withes": null, + "withed": null, + "withers": null, + "withheld": null, + "withholder": [["M"]], + "withholder's": null, + "withhold": [["S", "J", "G", "Z", "R"]], + "withholds": null, + "withholdings": null, + "withholding": null, + "withholders": null, + "within": [["S"]], + "withins": null, + "without": [["S"]], + "withouts": null, + "withs": null, + "withstand": [["S", "G"]], + "withstands": null, + "withstanding": null, + "withstood": null, + "witlessness": [["M", "S"]], + "witlessness's": null, + "witlessnesses": null, + "witless": [["P", "Y"]], + "witlessly": null, + "Wit": [["M"]], + "Wit's": null, + "witness": [["D", "S", "M", "G"]], + "witnessed": [["U"]], + "witnesses": null, + "witness's": null, + "witnessing": null, + "unwitnessed": null, + "wit": [["P", "S", "M"]], + "wits": null, + "wit's": null, + "witted": null, + "witter": [["G"]], + "wittering": null, + "Wittgenstein": [["M"]], + "Wittgenstein's": null, + "witticism": [["M", "S"]], + "witticism's": null, + "witticisms": null, + "Wittie": [["M"]], + "Wittie's": null, + "wittily": null, + "wittiness": [["S", "M"]], + "wittinesses": null, + "wittiness's": null, + "wittings": null, + "witting": [["U", "Y"]], + "unwitting": null, + "unwittingly": null, + "wittingly": null, + "Witt": [["M"]], + "Witt's": null, + "Witty": [["M"]], + "Witty's": null, + "witty": [["R", "T", "P"]], + "wittier": null, + "wittiest": null, + "Witwatersrand": [["M"]], + "Witwatersrand's": null, + "wive": [["G", "D", "S"]], + "wiving": null, + "wived": null, + "wives": [["M"]], + "wives's": null, + "wizard": [["M", "Y", "S"]], + "wizard's": null, + "wizardly": null, + "wizards": null, + "wizardry": [["M", "S"]], + "wizardry's": null, + "wizardries": null, + "wizen": [["D"]], + "wizened": null, + "wiz's": null, + "wk": [["Y"]], + "wkly": null, + "Wm": [["M"]], + "Wm's": null, + "WNW": null, + "woad": [["M", "S"]], + "woad's": null, + "woads": null, + "wobble": [["G", "S", "R", "D"]], + "wobbling": null, + "wobbles": null, + "wobbler": [["M"]], + "wobbled": null, + "wobbler's": null, + "wobbliness": [["S"]], + "wobblinesses": null, + "wobbly": [["P", "R", "S", "T"]], + "wobblier": null, + "wobblies": null, + "wobbliest": null, + "Wodehouse": [["M"]], + "Wodehouse's": null, + "woebegone": [["P"]], + "woebegoneness": null, + "woefuller": null, + "woefullest": null, + "woefulness": [["S", "M"]], + "woefulnesses": null, + "woefulness's": null, + "woeful": [["P", "Y"]], + "woefully": null, + "woe": [["P", "S", "M"]], + "woeness": null, + "woes": null, + "woe's": null, + "woke": null, + "wok": [["S", "M", "N"]], + "woks": null, + "wok's": null, + "woken": null, + "Wolcott": [["M"]], + "Wolcott's": null, + "wold": [["M", "S"]], + "wold's": null, + "wolds": null, + "Wolfe": [["M"]], + "Wolfe's": null, + "wolfer": [["M"]], + "wolfer's": null, + "Wolff": [["M"]], + "Wolff's": null, + "Wolfgang": [["M"]], + "Wolfgang's": null, + "wolfhound": [["M", "S"]], + "wolfhound's": null, + "wolfhounds": null, + "Wolfie": [["M"]], + "Wolfie's": null, + "wolfishness": [["M"]], + "wolfishness's": null, + "wolfish": [["Y", "P"]], + "wolfishly": null, + "Wolf": [["M"]], + "Wolf's": null, + "wolfram": [["M", "S"]], + "wolfram's": null, + "wolframs": null, + "wolf": [["R", "D", "M", "G", "S"]], + "wolfed": null, + "wolf's": null, + "wolfing": null, + "wolfs": null, + "Wolfy": [["M"]], + "Wolfy's": null, + "Wollongong": [["M"]], + "Wollongong's": null, + "Wollstonecraft": [["M"]], + "Wollstonecraft's": null, + "Wolsey": [["M"]], + "Wolsey's": null, + "Wolverhampton": [["M"]], + "Wolverhampton's": null, + "wolverine": [["S", "M"]], + "wolverines": null, + "wolverine's": null, + "Wolverton": [["M"]], + "Wolverton's": null, + "wolves": [["M"]], + "wolves's": null, + "woman": [["G", "S", "M", "Y", "D"]], + "womaning": null, + "womans": null, + "woman's": null, + "womanly": [["P", "R", "T"]], + "womaned": null, + "womanhood": [["M", "S"]], + "womanhood's": null, + "womanhoods": null, + "womanish": null, + "womanized": [["U"]], + "unwomanized": null, + "womanizer": [["M"]], + "womanizer's": null, + "womanize": [["R", "S", "D", "Z", "G"]], + "womanizes": [["U"]], + "womanizers": null, + "womanizing": null, + "unwomanizes": null, + "womankind": [["M"]], + "womankind's": null, + "womanlike": null, + "womanliness": [["S", "M"]], + "womanlinesses": null, + "womanliness's": null, + "womanlier": null, + "womanliest": null, + "wombat": [["M", "S"]], + "wombat's": null, + "wombats": null, + "womb": [["S", "D", "M"]], + "wombs": null, + "wombed": null, + "womb's": null, + "womenfolk": [["M", "S"]], + "womenfolk's": null, + "womenfolks": null, + "women": [["M", "S"]], + "women's": null, + "womens": null, + "wonderer": [["M"]], + "wonderer's": null, + "wonderfulness": [["S", "M"]], + "wonderfulnesses": null, + "wonderfulness's": null, + "wonderful": [["P", "Y"]], + "wonderfully": null, + "wonder": [["G", "L", "R", "D", "M", "S"]], + "wondering": [["Y"]], + "wonderment": [["S", "M"]], + "wondered": null, + "wonder's": null, + "wonders": null, + "wonderingly": null, + "wonderland": [["S", "M"]], + "wonderlands": null, + "wonderland's": null, + "wonderments": null, + "wonderment's": null, + "wondrousness": [["M"]], + "wondrousness's": null, + "wondrous": [["Y", "P"]], + "wondrously": null, + "Wong": [["M"]], + "Wong's": null, + "wonk": [["S"]], + "wonks": null, + "wonky": [["R", "T"]], + "wonkier": null, + "wonkiest": null, + "wonned": null, + "wonning": null, + "won": [["S", "G"]], + "wons": null, + "woning": null, + "won't": null, + "wontedness": [["M", "U"]], + "wontedness's": null, + "unwontedness's": null, + "unwontedness": null, + "wonted": [["P", "U", "Y"]], + "unwonted": null, + "unwontedly": null, + "wontedly": null, + "wont": [["S", "G", "M", "D"]], + "wonts": null, + "wonting": null, + "wont's": null, + "Woodard": [["M"]], + "Woodard's": null, + "Woodberry": [["M"]], + "Woodberry's": null, + "woodbine": [["S", "M"]], + "woodbines": null, + "woodbine's": null, + "woodblock": [["S"]], + "woodblocks": null, + "Woodbury": [["M"]], + "Woodbury's": null, + "woodcarver": [["S"]], + "woodcarvers": null, + "woodcarving": [["M", "S"]], + "woodcarving's": null, + "woodcarvings": null, + "woodchopper": [["S", "M"]], + "woodchoppers": null, + "woodchopper's": null, + "woodchuck": [["M", "S"]], + "woodchuck's": null, + "woodchucks": null, + "woodcock": [["M", "S"]], + "woodcock's": null, + "woodcocks": null, + "woodcraft": [["M", "S"]], + "woodcraft's": null, + "woodcrafts": null, + "woodcut": [["S", "M"]], + "woodcuts": null, + "woodcut's": null, + "woodcutter": [["M", "S"]], + "woodcutter's": null, + "woodcutters": null, + "woodcutting": [["M", "S"]], + "woodcutting's": null, + "woodcuttings": null, + "woodenness": [["S", "M"]], + "woodennesses": null, + "woodenness's": null, + "wooden": [["T", "P", "R", "Y"]], + "woodenest": null, + "woodener": null, + "woodenly": null, + "woodgrain": [["G"]], + "woodgraining": null, + "woodhen": null, + "Woodhull": [["M"]], + "Woodhull's": null, + "Woodie": [["M"]], + "Woodie's": null, + "woodiness": [["M", "S"]], + "woodiness's": null, + "woodinesses": null, + "woodland": [["S", "R", "M"]], + "woodlands": null, + "woodlander": null, + "woodland's": null, + "Woodlawn": [["M"]], + "Woodlawn's": null, + "woodlice": null, + "woodlot": [["S"]], + "woodlots": null, + "woodlouse": [["M"]], + "woodlouse's": null, + "woodman": [["M"]], + "woodman's": null, + "Woodman": [["M"]], + "Woodman's": null, + "woodmen": null, + "woodpecker": [["S", "M"]], + "woodpeckers": null, + "woodpecker's": null, + "woodpile": [["S", "M"]], + "woodpiles": null, + "woodpile's": null, + "Woodrow": [["M"]], + "Woodrow's": null, + "woodruff": [["M"]], + "woodruff's": null, + "woo": [["D", "R", "Z", "G", "S"]], + "wooed": null, + "wooer": null, + "wooers": null, + "wooing": null, + "woos": null, + "woodshedded": null, + "woodshedding": null, + "woodshed": [["S", "M"]], + "woodsheds": null, + "woodshed's": null, + "woodside": null, + "Wood": [["S", "M"]], + "Woods": null, + "Wood's": null, + "woodsman": [["M"]], + "woodsman's": null, + "woodsmen": null, + "wood": [["S", "M", "N", "D", "G"]], + "woods": [["R"]], + "wood's": null, + "wooded": null, + "wooding": null, + "woodsmoke": null, + "woodser": null, + "Woodstock": [["M"]], + "Woodstock's": null, + "woodsy": [["T", "R", "P"]], + "woodsiest": null, + "woodsier": null, + "woodsiness": null, + "Woodward": [["M", "S"]], + "Woodward's": null, + "Woodwards": null, + "woodwind": [["S"]], + "woodwinds": null, + "woodworker": [["M"]], + "woodworker's": null, + "woodworking": [["M"]], + "woodworking's": null, + "woodwork": [["S", "M", "R", "G", "Z", "J"]], + "woodworks": null, + "woodwork's": null, + "woodworkers": null, + "woodworkings": null, + "woodworm": [["M"]], + "woodworm's": null, + "woodyard": null, + "Woody": [["M"]], + "Woody's": null, + "woody": [["T", "P", "S", "R"]], + "woodiest": null, + "woodies": null, + "woodier": null, + "woofer": [["M"]], + "woofer's": null, + "woof": [["S", "R", "D", "M", "G", "Z"]], + "woofs": null, + "woofed": null, + "woof's": null, + "woofing": null, + "woofers": null, + "Woolf": [["M"]], + "Woolf's": null, + "woolgatherer": [["M"]], + "woolgatherer's": null, + "woolgathering": [["M"]], + "woolgathering's": null, + "woolgather": [["R", "G", "J"]], + "woolgatherings": null, + "woolliness": [["M", "S"]], + "woolliness's": null, + "woollinesses": null, + "woolly": [["R", "S", "P", "T"]], + "woollier": null, + "woollies": null, + "woolliest": null, + "Woolongong": [["M"]], + "Woolongong's": null, + "wool": [["S", "M", "Y", "N", "D", "X"]], + "wools": null, + "wool's": null, + "woolen": null, + "wooled": null, + "woolens": null, + "Woolworth": [["M"]], + "Woolworth's": null, + "Woonsocket": [["M"]], + "Woonsocket's": null, + "Wooster": [["M"]], + "Wooster's": null, + "Wooten": [["M"]], + "Wooten's": null, + "woozily": null, + "wooziness": [["M", "S"]], + "wooziness's": null, + "woozinesses": null, + "woozy": [["R", "T", "P"]], + "woozier": null, + "wooziest": null, + "wop": [["M", "S", "!"]], + "wop's": null, + "wops": null, + "Worcestershire": [["M"]], + "Worcestershire's": null, + "Worcester": [["S", "M"]], + "Worcesters": null, + "Worcester's": null, + "wordage": [["S", "M"]], + "wordages": null, + "wordage's": null, + "word": [["A", "G", "S", "J", "D"]], + "reword": null, + "rewording": null, + "rewords": null, + "rewordings": null, + "reworded": null, + "wording": [["A", "M"]], + "words": null, + "wordings": null, + "worded": null, + "wordbook": [["M", "S"]], + "wordbook's": null, + "wordbooks": null, + "Worden": [["M"]], + "Worden's": null, + "wordily": null, + "wordiness": [["S", "M"]], + "wordinesses": null, + "wordiness's": null, + "rewording's": null, + "wording's": null, + "wordless": [["Y"]], + "wordlessly": null, + "wordplay": [["S", "M"]], + "wordplays": null, + "wordplay's": null, + "word's": null, + "Wordsworth": [["M"]], + "Wordsworth's": null, + "wordy": [["T", "P", "R"]], + "wordiest": null, + "wordier": null, + "wore": null, + "workability's": null, + "workability": [["U"]], + "unworkability": null, + "workableness": [["M"]], + "workableness's": null, + "workable": [["U"]], + "workably": null, + "workaday": null, + "workaholic": [["S"]], + "workaholics": null, + "workaround": [["S", "M"]], + "workarounds": null, + "workaround's": null, + "workbench": [["M", "S"]], + "workbench's": null, + "workbenches": null, + "workbook": [["S", "M"]], + "workbooks": null, + "workbook's": null, + "workday": [["S", "M"]], + "workdays": null, + "workday's": null, + "worked": [["A"]], + "reworked": null, + "worker": [["M"]], + "worker's": null, + "workfare": [["S"]], + "workfares": null, + "workforce": [["S"]], + "workforces": null, + "work": [["G", "Z", "J", "S", "R", "D", "M", "B"]], + "working": [["M"]], + "workers": null, + "workings": null, + "works": [["A"]], + "work's": null, + "workhorse": [["M", "S"]], + "workhorse's": null, + "workhorses": null, + "workhouse": [["S", "M"]], + "workhouses": null, + "workhouse's": null, + "working's": null, + "workingman": [["M"]], + "workingman's": null, + "workingmen": null, + "workingwoman": [["M"]], + "workingwoman's": null, + "workingwomen": null, + "workload": [["S", "M"]], + "workloads": null, + "workload's": null, + "workmanlike": null, + "Workman": [["M"]], + "Workman's": null, + "workman": [["M", "Y"]], + "workman's": null, + "workmanly": null, + "workmanship": [["M", "S"]], + "workmanship's": null, + "workmanships": null, + "workmate": [["S"]], + "workmates": null, + "workmen": [["M"]], + "workmen's": null, + "workout": [["S", "M"]], + "workouts": null, + "workout's": null, + "workpiece": [["S", "M"]], + "workpieces": null, + "workpiece's": null, + "workplace": [["S", "M"]], + "workplaces": null, + "workplace's": null, + "workroom": [["M", "S"]], + "workroom's": null, + "workrooms": null, + "reworks": null, + "worksheet": [["S"]], + "worksheets": null, + "workshop": [["M", "S"]], + "workshop's": null, + "workshops": null, + "workspace": [["S"]], + "workspaces": null, + "workstation": [["M", "S"]], + "workstation's": null, + "workstations": null, + "worktable": [["S", "M"]], + "worktables": null, + "worktable's": null, + "worktop": [["S"]], + "worktops": null, + "workup": [["S"]], + "workups": null, + "workweek": [["S", "M"]], + "workweeks": null, + "workweek's": null, + "worldlier": null, + "worldliest": null, + "worldliness": [["U", "S", "M"]], + "unworldliness": null, + "unworldlinesses": null, + "unworldliness's": null, + "worldlinesses": null, + "worldliness's": null, + "worldly": [["U", "P"]], + "unworldly": null, + "worldwide": null, + "world": [["Z", "S", "Y", "M"]], + "worlders": null, + "worlds": null, + "world's": null, + "wormer": [["M"]], + "wormer's": null, + "wormhole": [["S", "M"]], + "wormholes": null, + "wormhole's": null, + "worm": [["S", "G", "M", "R", "D"]], + "worms": null, + "worming": null, + "worm's": null, + "wormed": null, + "Worms": [["M"]], + "Worms's": null, + "wormwood": [["S", "M"]], + "wormwoods": null, + "wormwood's": null, + "wormy": [["R", "T"]], + "wormier": null, + "wormiest": null, + "worn": [["U"]], + "unworn": null, + "worried": [["Y"]], + "worriedly": null, + "worrier": [["M"]], + "worrier's": null, + "worriment": [["M", "S"]], + "worriment's": null, + "worriments": null, + "worrisome": [["Y", "P"]], + "worrisomely": null, + "worrisomeness": null, + "worrying": [["Y"]], + "worryingly": null, + "worrywart": [["S", "M"]], + "worrywarts": null, + "worrywart's": null, + "worry": [["Z", "G", "S", "R", "D"]], + "worriers": null, + "worries": null, + "worsen": [["G", "S", "D"]], + "worsening": null, + "worsens": null, + "worsened": null, + "worse": [["S", "R"]], + "worses": null, + "worser": null, + "worshiper": [["M"]], + "worshiper's": null, + "worshipfulness": [["M"]], + "worshipfulness's": null, + "worshipful": [["Y", "P"]], + "worshipfully": null, + "worship": [["Z", "D", "R", "G", "S"]], + "worshipers": null, + "worshiped": null, + "worshiping": null, + "worships": null, + "worsted": [["M", "S"]], + "worsted's": null, + "worsteds": null, + "worst": [["S", "G", "D"]], + "worsts": null, + "worsting": null, + "worth": [["D", "G"]], + "worthed": null, + "worthing": null, + "worthily": [["U"]], + "unworthily": null, + "worthinesses": [["U"]], + "unworthinesses": null, + "worthiness": [["S", "M"]], + "worthiness's": null, + "Worthington": [["M"]], + "Worthington's": null, + "worthlessness": [["S", "M"]], + "worthlessnesses": null, + "worthlessness's": null, + "worthless": [["P", "Y"]], + "worthlessly": null, + "Worth": [["M"]], + "Worth's": null, + "worths": null, + "worthwhile": [["P"]], + "worthwhileness": null, + "Worthy": [["M"]], + "Worthy's": null, + "worthy": [["U", "T", "S", "R", "P"]], + "unworthy": null, + "unworthies": null, + "unworthier": null, + "unworthiness": null, + "worthiest": null, + "worthies": null, + "worthier": null, + "wort": [["S", "M"]], + "worts": null, + "wort's": null, + "wost": null, + "wot": null, + "Wotan": [["M"]], + "Wotan's": null, + "wouldn't": null, + "would": [["S"]], + "woulds": null, + "wouldst": null, + "would've": null, + "wound": [["A", "U"]], + "rewound": null, + "unwound": null, + "wounded": [["U"]], + "unwounded": null, + "wounder": null, + "wounding": null, + "wounds": null, + "wound's": null, + "wove": [["A"]], + "rewove": null, + "woven": [["A", "U"]], + "rewoven": null, + "unwoven": null, + "wovens": null, + "wow": [["S", "D", "G"]], + "wows": null, + "wowed": null, + "wowing": null, + "Wozniak": [["M"]], + "Wozniak's": null, + "WP": null, + "wpm": null, + "wrack": [["S", "G", "M", "D"]], + "wracks": null, + "wracking": null, + "wrack's": null, + "wracked": null, + "wraith": [["M"]], + "wraith's": null, + "wraiths": null, + "Wrangell": [["M"]], + "Wrangell's": null, + "wrangle": [["G", "Z", "D", "R", "S"]], + "wrangling": null, + "wranglers": null, + "wrangled": null, + "wrangler": [["M"]], + "wrangles": null, + "wrangler's": null, + "wraparound": [["S"]], + "wraparounds": null, + "wrap": [["M", "S"]], + "wrap's": null, + "wraps": [["U"]], + "wrapped": [["U"]], + "unwrapped": null, + "wrapper": [["M", "S"]], + "wrapper's": null, + "wrappers": null, + "wrapping": [["S", "M"]], + "wrappings": null, + "wrapping's": null, + "unwraps": null, + "wrasse": [["S", "M"]], + "wrasses": null, + "wrasse's": null, + "wrathful": [["Y", "P"]], + "wrathfully": null, + "wrathfulness": null, + "wrath": [["G", "D", "M"]], + "wrathing": null, + "wrathed": null, + "wrath's": null, + "wraths": null, + "wreak": [["S", "D", "G"]], + "wreaks": null, + "wreaked": null, + "wreaking": null, + "wreathe": null, + "wreath": [["G", "M", "D", "S"]], + "wreathing": null, + "wreath's": null, + "wreathed": null, + "wreathes": null, + "wreaths": null, + "wreckage": [["M", "S"]], + "wreckage's": null, + "wreckages": null, + "wrecker": [["M"]], + "wrecker's": null, + "wreck": [["G", "Z", "R", "D", "S"]], + "wrecking": null, + "wreckers": null, + "wrecked": null, + "wrecks": null, + "wrenching": [["Y"]], + "wrenchingly": null, + "wrench": [["M", "D", "S", "G"]], + "wrench's": null, + "wrenched": null, + "wrenches": null, + "wren": [["M", "S"]], + "wren's": null, + "wrens": null, + "Wren": [["M", "S"]], + "Wren's": null, + "Wrens": null, + "Wrennie": [["M"]], + "Wrennie's": null, + "wrester": [["M"]], + "wrester's": null, + "wrestle": [["J", "G", "Z", "D", "R", "S"]], + "wrestlings": null, + "wrestling": [["M"]], + "wrestlers": null, + "wrestled": null, + "wrestler": [["M"]], + "wrestles": null, + "wrestler's": null, + "wrestling's": null, + "wrest": [["S", "R", "D", "G"]], + "wrests": null, + "wrested": null, + "wresting": null, + "wretchedness": [["S", "M"]], + "wretchednesses": null, + "wretchedness's": null, + "wretched": [["T", "P", "Y", "R"]], + "wretchedest": null, + "wretchedly": null, + "wretcheder": null, + "wretch": [["M", "D", "S"]], + "wretch's": null, + "wretches": null, + "wriggle": [["D", "R", "S", "G", "Z"]], + "wriggled": null, + "wriggler": [["M"]], + "wriggles": null, + "wriggling": null, + "wrigglers": null, + "wriggler's": null, + "wriggly": [["R", "T"]], + "wrigglier": null, + "wriggliest": null, + "Wright": [["M"]], + "Wright's": null, + "wright": [["M", "S"]], + "wright's": null, + "wrights": null, + "Wrigley": [["M"]], + "Wrigley's": null, + "wringer": [["M"]], + "wringer's": null, + "wring": [["G", "Z", "R", "S"]], + "wringing": null, + "wringers": null, + "wrings": null, + "wrinkled": [["U"]], + "unwrinkled": null, + "wrinkle": [["G", "M", "D", "S"]], + "wrinkling": null, + "wrinkle's": null, + "wrinkles": null, + "wrinkly": [["R", "S", "T"]], + "wrinklier": null, + "wrinklies": null, + "wrinkliest": null, + "wristband": [["S", "M"]], + "wristbands": null, + "wristband's": null, + "wrist": [["M", "S"]], + "wrist's": null, + "wrists": null, + "wristwatch": [["M", "S"]], + "wristwatch's": null, + "wristwatches": null, + "writable": [["U"]], + "unwritable": null, + "write": [["A", "S", "B", "R", "J", "G"]], + "rewrite": null, + "rewrites": null, + "rewritable": null, + "rewriter": null, + "rewritings": null, + "rewriting": null, + "writes": null, + "writer": [["M", "A"]], + "writings": null, + "writing": [["M"]], + "writer's": null, + "rewriter's": null, + "writeup": null, + "writhe": [["S", "D", "G"]], + "writhes": null, + "writhed": null, + "writhing": null, + "writing's": null, + "writ": [["M", "R", "S", "B", "J", "G", "Z"]], + "writ's": null, + "writs": null, + "writers": null, + "written": [["U", "A"]], + "unwritten": null, + "rewritten": null, + "Wroclaw": null, + "wrongdoer": [["M", "S"]], + "wrongdoer's": null, + "wrongdoers": null, + "wrongdoing": [["M", "S"]], + "wrongdoing's": null, + "wrongdoings": null, + "wronger": [["M"]], + "wronger's": null, + "wrongfulness": [["M", "S"]], + "wrongfulness's": null, + "wrongfulnesses": null, + "wrongful": [["P", "Y"]], + "wrongfully": null, + "wrongheadedness": [["M", "S"]], + "wrongheadedness's": null, + "wrongheadednesses": null, + "wrongheaded": [["P", "Y"]], + "wrongheadedly": null, + "wrongness": [["M", "S"]], + "wrongness's": null, + "wrongnesses": null, + "wrong": [["P", "S", "G", "T", "Y", "R", "D"]], + "wrongs": null, + "wronging": null, + "wrongest": null, + "wrongly": null, + "wronged": null, + "Wronskian": [["M"]], + "Wronskian's": null, + "wrote": [["A"]], + "rewrote": null, + "wroth": null, + "wrought": [["I"]], + "inwrought": null, + "wrung": null, + "wry": [["D", "S", "G", "Y"]], + "wried": null, + "wries": null, + "wrying": null, + "wryly": null, + "wryer": null, + "wryest": null, + "wryness": [["S", "M"]], + "wrynesses": null, + "wryness's": null, + "W's": null, + "WSW": null, + "wt": null, + "W": [["T"]], + "Wuhan": [["M"]], + "Wuhan's": null, + "Wu": [["M"]], + "Wu's": null, + "Wurlitzer": [["M"]], + "Wurlitzer's": null, + "wurst": [["S", "M"]], + "wursts": null, + "wurst's": null, + "wuss": [["S"]], + "wusses": null, + "wussy": [["T", "R", "S"]], + "wussiest": null, + "wussier": null, + "wussies": null, + "WV": null, + "WW": null, + "WWI": null, + "WWII": null, + "WWW": null, + "w": [["X", "T", "J", "G", "V"]], + "wens": null, + "wings": null, + "WY": null, + "Wyatan": [["M"]], + "Wyatan's": null, + "Wyatt": [["M"]], + "Wyatt's": null, + "Wycherley": [["M"]], + "Wycherley's": null, + "Wycliffe": [["M"]], + "Wycliffe's": null, + "Wye": [["M", "H"]], + "Wye's": null, + "Wyeth": [["M"]], + "Wyeth's": null, + "Wylie": [["M"]], + "Wylie's": null, + "Wylma": [["M"]], + "Wylma's": null, + "Wyman": [["M"]], + "Wyman's": null, + "Wyndham": [["M"]], + "Wyndham's": null, + "Wyn": [["M"]], + "Wyn's": null, + "Wynne": [["M"]], + "Wynne's": null, + "Wynnie": [["M"]], + "Wynnie's": null, + "Wynn": [["M"]], + "Wynn's": null, + "Wynny": [["M"]], + "Wynny's": null, + "Wyo": [["M"]], + "Wyo's": null, + "Wyomingite": [["S", "M"]], + "Wyomingites": null, + "Wyomingite's": null, + "Wyoming": [["M"]], + "Wyoming's": null, + "WYSIWYG": null, + "x": null, + "X": null, + "Xanadu": null, + "Xanthippe": [["M"]], + "Xanthippe's": null, + "Xanthus": [["M"]], + "Xanthus's": null, + "Xaviera": [["M"]], + "Xaviera's": null, + "Xavier": [["M"]], + "Xavier's": null, + "Xebec": [["M"]], + "Xebec's": null, + "Xe": [["M"]], + "Xe's": null, + "XEmacs": [["M"]], + "XEmacs's": null, + "Xenakis": [["M"]], + "Xenakis's": null, + "Xena": [["M"]], + "Xena's": null, + "Xenia": [["M"]], + "Xenia's": null, + "Xenix": [["M"]], + "Xenix's": null, + "xenon": [["S", "M"]], + "xenons": null, + "xenon's": null, + "xenophobe": [["M", "S"]], + "xenophobe's": null, + "xenophobes": null, + "xenophobia": [["S", "M"]], + "xenophobias": null, + "xenophobia's": null, + "xenophobic": null, + "Xenophon": [["M"]], + "Xenophon's": null, + "Xenos": null, + "xerographic": null, + "xerography": [["M", "S"]], + "xerography's": null, + "xerographies": null, + "xerox": [["G", "S", "D"]], + "xeroxing": null, + "xeroxes": null, + "xeroxed": null, + "Xerox": [["M", "G", "S", "D"]], + "Xerox's": null, + "Xeroxing": null, + "Xeroxes": null, + "Xeroxed": null, + "Xerxes": [["M"]], + "Xerxes's": null, + "Xever": [["M"]], + "Xever's": null, + "Xhosa": [["M"]], + "Xhosa's": null, + "Xi'an": null, + "Xian": [["S"]], + "Xians": null, + "Xiaoping": [["M"]], + "Xiaoping's": null, + "xii": null, + "xiii": null, + "xi": [["M"]], + "xi's": null, + "Ximenes": [["M"]], + "Ximenes's": null, + "Ximenez": [["M"]], + "Ximenez's": null, + "Ximian": [["S", "M"]], + "Ximians": null, + "Ximian's": null, + "Xingu": [["M"]], + "Xingu's": null, + "xis": null, + "xiv": null, + "xix": null, + "XL": null, + "Xmas": [["S", "M"]], + "Xmases": null, + "Xmas's": null, + "XML": null, + "Xochipilli": [["M"]], + "Xochipilli's": null, + "XOR": null, + "X's": null, + "XS": null, + "xterm": [["M"]], + "xterm's": null, + "Xuzhou": [["M"]], + "Xuzhou's": null, + "xv": null, + "xvi": null, + "xvii": null, + "xviii": null, + "xx": null, + "XXL": null, + "xylem": [["S", "M"]], + "xylems": null, + "xylem's": null, + "xylene": [["M"]], + "xylene's": null, + "Xylia": [["M"]], + "Xylia's": null, + "Xylina": [["M"]], + "Xylina's": null, + "xylophone": [["M", "S"]], + "xylophone's": null, + "xylophones": null, + "xylophonist": [["S"]], + "xylophonists": null, + "Xymenes": [["M"]], + "Xymenes's": null, + "Y": null, + "ya": null, + "yacc": [["M"]], + "yacc's": null, + "Yacc": [["M"]], + "Yacc's": null, + "yachting": [["M"]], + "yachting's": null, + "yachtsman": null, + "yachtsmen": null, + "yachtswoman": [["M"]], + "yachtswoman's": null, + "yachtswomen": null, + "yacht": [["Z", "G", "J", "S", "D", "M"]], + "yachters": null, + "yachtings": null, + "yachts": null, + "yachted": null, + "yacht's": null, + "yack's": null, + "Yagi": [["M"]], + "Yagi's": null, + "yahoo": [["M", "S"]], + "yahoo's": null, + "yahoos": null, + "Yahweh": [["M"]], + "Yahweh's": null, + "Yakima": [["M"]], + "Yakima's": null, + "yakked": null, + "yakking": null, + "yak": [["S", "M"]], + "yaks": null, + "yak's": null, + "Yakut": [["M"]], + "Yakut's": null, + "Yakutsk": [["M"]], + "Yakutsk's": null, + "Yale": [["M"]], + "Yale's": null, + "Yalies": [["M"]], + "Yalies's": null, + "y'all": null, + "Yalonda": [["M"]], + "Yalonda's": null, + "Yalow": [["M"]], + "Yalow's": null, + "Yalta": [["M"]], + "Yalta's": null, + "Yalu": [["M"]], + "Yalu's": null, + "Yamaha": [["M"]], + "Yamaha's": null, + "yammer": [["R", "D", "Z", "G", "S"]], + "yammerer": null, + "yammered": null, + "yammerers": null, + "yammering": null, + "yammers": null, + "Yamoussoukro": null, + "yam": [["S", "M"]], + "yams": null, + "yam's": null, + "Yanaton": [["M"]], + "Yanaton's": null, + "Yance": [["M"]], + "Yance's": null, + "Yancey": [["M"]], + "Yancey's": null, + "Yancy": [["M"]], + "Yancy's": null, + "Yang": [["M"]], + "Yang's": null, + "Yangon": null, + "yang": [["S"]], + "yangs": null, + "Yangtze": [["M"]], + "Yangtze's": null, + "Yankee": [["S", "M"]], + "Yankees": null, + "Yankee's": null, + "yank": [["G", "D", "S"]], + "yanking": null, + "yanked": null, + "yanks": null, + "Yank": [["M", "S"]], + "Yank's": null, + "Yanks": null, + "Yaounde": [["M"]], + "Yaounde's": null, + "yapped": null, + "yapping": null, + "yap": [["S"]], + "yaps": null, + "Yaqui": [["M"]], + "Yaqui's": null, + "yardage": [["S", "M"]], + "yardages": null, + "yardage's": null, + "yardarm": [["S", "M"]], + "yardarms": null, + "yardarm's": null, + "Yardley": [["M"]], + "Yardley's": null, + "Yard": [["M"]], + "Yard's": null, + "yardman": [["M"]], + "yardman's": null, + "yardmaster": [["S"]], + "yardmasters": null, + "yardmen": null, + "yard": [["S", "M", "D", "G"]], + "yards": null, + "yard's": null, + "yarded": null, + "yarding": null, + "yardstick": [["S", "M"]], + "yardsticks": null, + "yardstick's": null, + "yarmulke": [["S", "M"]], + "yarmulkes": null, + "yarmulke's": null, + "yarn": [["S", "G", "D", "M"]], + "yarns": null, + "yarning": null, + "yarned": null, + "yarn's": null, + "Yaroslavl": [["M"]], + "Yaroslavl's": null, + "yarrow": [["M", "S"]], + "yarrow's": null, + "yarrows": null, + "Yasmeen": [["M"]], + "Yasmeen's": null, + "Yasmin": [["M"]], + "Yasmin's": null, + "Yates": null, + "yaw": [["D", "S", "G"]], + "yawed": null, + "yaws": null, + "yawing": null, + "yawl": [["S", "G", "M", "D"]], + "yawls": null, + "yawling": null, + "yawl's": null, + "yawled": null, + "yawner": [["M"]], + "yawner's": null, + "yawn": [["G", "Z", "S", "D", "R"]], + "yawning": [["Y"]], + "yawners": null, + "yawns": null, + "yawned": null, + "yawningly": null, + "Yb": [["M"]], + "Yb's": null, + "yd": null, + "Yeager": [["M"]], + "Yeager's": null, + "yeah": null, + "yeahs": null, + "yearbook": [["S", "M"]], + "yearbooks": null, + "yearbook's": null, + "yearling": [["M"]], + "yearling's": null, + "yearlong": null, + "yearly": [["S"]], + "yearlies": null, + "yearner": [["M"]], + "yearner's": null, + "yearning": [["M", "Y"]], + "yearning's": null, + "yearningly": null, + "yearn": [["J", "S", "G", "R", "D"]], + "yearnings": null, + "yearns": null, + "yearned": null, + "year": [["Y", "M", "S"]], + "year's": null, + "years": null, + "yea": [["S"]], + "yeas": null, + "yeastiness": [["M"]], + "yeastiness's": null, + "yeast": [["S", "G", "D", "M"]], + "yeasts": null, + "yeasting": null, + "yeasted": null, + "yeast's": null, + "yeasty": [["P", "T", "R"]], + "yeastiest": null, + "yeastier": null, + "Yeats": [["M"]], + "Yeats's": null, + "yecch": null, + "yegg": [["M", "S"]], + "yegg's": null, + "yeggs": null, + "Yehudi": [["M"]], + "Yehudi's": null, + "Yehudit": [["M"]], + "Yehudit's": null, + "Yekaterinburg": [["M"]], + "Yekaterinburg's": null, + "Yelena": [["M"]], + "Yelena's": null, + "yell": [["G", "S", "D", "R"]], + "yelling": null, + "yells": null, + "yelled": null, + "yeller": null, + "yellowhammers": null, + "yellowish": null, + "Yellowknife": [["M"]], + "Yellowknife's": null, + "yellowness": [["M", "S"]], + "yellowness's": null, + "yellownesses": null, + "Yellowstone": [["M"]], + "Yellowstone's": null, + "yellow": [["T", "G", "P", "S", "R", "D", "M"]], + "yellowest": null, + "yellowing": null, + "yellows": null, + "yellower": null, + "yellowed": null, + "yellow's": null, + "yellowy": null, + "yelper": [["M"]], + "yelper's": null, + "yelp": [["G", "S", "D", "R"]], + "yelping": null, + "yelps": null, + "yelped": null, + "Yeltsin": null, + "Yemeni": [["S"]], + "Yemenis": null, + "Yemenite": [["S", "M"]], + "Yemenites": null, + "Yemenite's": null, + "Yemen": [["M"]], + "Yemen's": null, + "Yenisei": [["M"]], + "Yenisei's": null, + "yenned": null, + "yenning": null, + "yen": [["S", "M"]], + "yens": null, + "yen's": null, + "Yentl": [["M"]], + "Yentl's": null, + "yeomanry": [["M", "S"]], + "yeomanry's": null, + "yeomanries": null, + "yeoman": [["Y", "M"]], + "yeomanly": null, + "yeoman's": null, + "yeomen": null, + "yep": [["S"]], + "yeps": null, + "Yerevan": [["M"]], + "Yerevan's": null, + "Yerkes": [["M"]], + "Yerkes's": null, + "Yesenia": [["M"]], + "Yesenia's": null, + "yeshiva": [["S", "M"]], + "yeshivas": null, + "yeshiva's": null, + "yes": [["S"]], + "yeses": null, + "yessed": null, + "yessing": null, + "yesterday": [["M", "S"]], + "yesterday's": null, + "yesterdays": null, + "yesteryear": [["S", "M"]], + "yesteryears": null, + "yesteryear's": null, + "yet": null, + "ye": [["T"]], + "yest": null, + "yeti": [["S", "M"]], + "yetis": null, + "yeti's": null, + "Yetta": [["M"]], + "Yetta's": null, + "Yettie": [["M"]], + "Yettie's": null, + "Yetty": [["M"]], + "Yetty's": null, + "Yevette": [["M"]], + "Yevette's": null, + "Yevtushenko": [["M"]], + "Yevtushenko's": null, + "yew": [["S", "M"]], + "yews": null, + "yew's": null, + "y": [["F"]], + "Yggdrasil": [["M"]], + "Yggdrasil's": null, + "Yiddish": [["M"]], + "Yiddish's": null, + "yielded": [["U"]], + "unyielded": null, + "yielding": [["U"]], + "yield": [["J", "G", "R", "D", "S"]], + "yieldings": null, + "yielder": null, + "yields": null, + "yikes": null, + "yin": [["S"]], + "yins": null, + "yipe": [["S"]], + "yipes": null, + "yipped": null, + "yippee": [["S"]], + "yippees": null, + "yipping": null, + "yip": [["S"]], + "yips": null, + "YMCA": null, + "YMHA": null, + "Ymir": [["M"]], + "Ymir's": null, + "YMMV": null, + "Ynes": [["M"]], + "Ynes's": null, + "Ynez": [["M"]], + "Ynez's": null, + "yo": null, + "Yoda": [["M"]], + "Yoda's": null, + "yodeler": [["M"]], + "yodeler's": null, + "yodel": [["S", "Z", "R", "D", "G"]], + "yodels": null, + "yodelers": null, + "yodeled": null, + "yodeling": null, + "Yoder": [["M"]], + "Yoder's": null, + "yoga": [["M", "S"]], + "yoga's": null, + "yogas": null, + "yoghurt's": null, + "yogi": [["M", "S"]], + "yogi's": null, + "yogis": null, + "yogurt": [["S", "M"]], + "yogurts": null, + "yogurt's": null, + "yoke": [["D", "S", "M", "G"]], + "yoked": [["U"]], + "yokes": [["U"]], + "yoke's": null, + "yoking": [["U"]], + "unyoked": null, + "yokel": [["S", "M"]], + "yokels": null, + "yokel's": null, + "unyokes": null, + "unyoking": null, + "Yoknapatawpha": [["M"]], + "Yoknapatawpha's": null, + "Yokohama": [["M"]], + "Yokohama's": null, + "Yoko": [["M"]], + "Yoko's": null, + "Yolanda": [["M"]], + "Yolanda's": null, + "Yolande": [["M"]], + "Yolande's": null, + "Yolane": [["M"]], + "Yolane's": null, + "Yolanthe": [["M"]], + "Yolanthe's": null, + "yolk": [["D", "M", "S"]], + "yolked": null, + "yolk's": null, + "yolks": null, + "yon": null, + "yonder": null, + "Yong": [["M"]], + "Yong's": null, + "Yonkers": [["M"]], + "Yonkers's": null, + "yore": [["M", "S"]], + "yore's": null, + "yores": null, + "Yorgo": [["M", "S"]], + "Yorgo's": null, + "Yorgos": null, + "Yorick": [["M"]], + "Yorick's": null, + "Yorke": [["M"]], + "Yorke's": null, + "Yorker": [["M"]], + "Yorker's": null, + "yorker": [["S", "M"]], + "yorkers": null, + "yorker's": null, + "Yorkshire": [["M", "S"]], + "Yorkshire's": null, + "Yorkshires": null, + "Yorktown": [["M"]], + "Yorktown's": null, + "York": [["Z", "R", "M", "S"]], + "Yorkers": null, + "York's": null, + "Yorks": null, + "Yoruba": [["M"]], + "Yoruba's": null, + "Yosemite": [["M"]], + "Yosemite's": null, + "Yoshiko": [["M"]], + "Yoshiko's": null, + "Yoshi": [["M"]], + "Yoshi's": null, + "Yost": [["M"]], + "Yost's": null, + "you'd": null, + "you'll": null, + "youngish": null, + "Young": [["M"]], + "Young's": null, + "youngster": [["M", "S"]], + "youngster's": null, + "youngsters": null, + "Youngstown": [["M"]], + "Youngstown's": null, + "young": [["T", "R", "Y", "P"]], + "youngest": null, + "younger": null, + "youngly": null, + "youngness": null, + "you're": null, + "your": [["M", "S"]], + "your's": null, + "yours": null, + "yourself": null, + "yourselves": null, + "you": [["S", "H"]], + "yous": null, + "youth": [["S", "M"]], + "youthfulness": [["S", "M"]], + "youthfulnesses": null, + "youthfulness's": null, + "youthful": [["Y", "P"]], + "youthfully": null, + "youths": null, + "youthes": null, + "youth's": null, + "you've": null, + "Yovonnda": [["M"]], + "Yovonnda's": null, + "yow": null, + "yowl": [["G", "S", "D"]], + "yowling": null, + "yowls": null, + "yowled": null, + "Ypres": [["M"]], + "Ypres's": null, + "Ypsilanti": [["M"]], + "Ypsilanti's": null, + "yr": null, + "yrs": null, + "Y's": null, + "Ysabel": [["M"]], + "Ysabel's": null, + "YT": null, + "ytterbium": [["M", "S"]], + "ytterbium's": null, + "ytterbiums": null, + "yttrium": [["S", "M"]], + "yttriums": null, + "yttrium's": null, + "yuan": [["M"]], + "yuan's": null, + "Yuba": [["M"]], + "Yuba's": null, + "Yucatan": null, + "yucca": [["M", "S"]], + "yucca's": null, + "yuccas": null, + "yuck": [["G", "S", "D"]], + "yucking": null, + "yucks": null, + "yucked": null, + "yucky": [["R", "T"]], + "yuckier": null, + "yuckiest": null, + "Yugo": [["M"]], + "Yugo's": null, + "Yugoslavia": [["M"]], + "Yugoslavia's": null, + "Yugoslavian": [["S"]], + "Yugoslavians": null, + "Yugoslav": [["M"]], + "Yugoslav's": null, + "Yuh": [["M"]], + "Yuh's": null, + "Yuki": [["M"]], + "Yuki's": null, + "yukked": null, + "yukking": null, + "Yukon": [["M"]], + "Yukon's": null, + "yuk": [["S"]], + "yuks": null, + "yule": [["M", "S"]], + "yule's": null, + "yules": null, + "Yule": [["M", "S"]], + "Yule's": null, + "Yules": null, + "yuletide": [["M", "S"]], + "yuletide's": null, + "yuletides": null, + "Yuletide": [["S"]], + "Yuletides": null, + "Yul": [["M"]], + "Yul's": null, + "Yulma": [["M"]], + "Yulma's": null, + "yum": null, + "Yuma": [["M"]], + "Yuma's": null, + "yummy": [["T", "R", "S"]], + "yummiest": null, + "yummier": null, + "yummies": null, + "Yunnan": [["M"]], + "Yunnan's": null, + "yuppie": [["S", "M"]], + "yuppies": null, + "yuppie's": null, + "yup": [["S"]], + "yups": null, + "Yurik": [["M"]], + "Yurik's": null, + "Yuri": [["M"]], + "Yuri's": null, + "yurt": [["S", "M"]], + "yurts": null, + "yurt's": null, + "Yves": [["M"]], + "Yves's": null, + "Yvette": [["M"]], + "Yvette's": null, + "Yvon": [["M"]], + "Yvon's": null, + "Yvonne": [["M"]], + "Yvonne's": null, + "Yvor": [["M"]], + "Yvor's": null, + "YWCA": null, + "YWHA": null, + "Zabrina": [["M"]], + "Zabrina's": null, + "Zaccaria": [["M"]], + "Zaccaria's": null, + "Zachariah": [["M"]], + "Zachariah's": null, + "Zacharia": [["S", "M"]], + "Zacharias": null, + "Zacharia's": null, + "Zacharie": [["M"]], + "Zacharie's": null, + "Zachary": [["M"]], + "Zachary's": null, + "Zacherie": [["M"]], + "Zacherie's": null, + "Zachery": [["M"]], + "Zachery's": null, + "Zach": [["M"]], + "Zach's": null, + "Zackariah": [["M"]], + "Zackariah's": null, + "Zack": [["M"]], + "Zack's": null, + "zagging": null, + "Zagreb": [["M"]], + "Zagreb's": null, + "zag": [["S"]], + "zags": null, + "Zahara": [["M"]], + "Zahara's": null, + "Zaire": [["M"]], + "Zaire's": null, + "Zairian": [["S"]], + "Zairians": null, + "Zak": [["M"]], + "Zak's": null, + "Zambezi": [["M"]], + "Zambezi's": null, + "Zambia": [["M"]], + "Zambia's": null, + "Zambian": [["S"]], + "Zambians": null, + "Zamboni": null, + "Zamenhof": [["M"]], + "Zamenhof's": null, + "Zamora": [["M"]], + "Zamora's": null, + "Zandra": [["M"]], + "Zandra's": null, + "Zane": [["M"]], + "Zane's": null, + "Zaneta": [["M"]], + "Zaneta's": null, + "zaniness": [["M", "S"]], + "zaniness's": null, + "zaninesses": null, + "Zan": [["M"]], + "Zan's": null, + "Zanuck": [["M"]], + "Zanuck's": null, + "zany": [["P", "D", "S", "R", "T", "G"]], + "zanied": null, + "zanies": null, + "zanier": null, + "zaniest": null, + "zanying": null, + "Zanzibar": [["M"]], + "Zanzibar's": null, + "Zapata": [["M"]], + "Zapata's": null, + "Zaporozhye": [["M"]], + "Zaporozhye's": null, + "Zappa": [["M"]], + "Zappa's": null, + "zapped": null, + "zapper": [["S"]], + "zappers": null, + "zapping": null, + "zap": [["S"]], + "zaps": null, + "Zarah": [["M"]], + "Zarah's": null, + "Zara": [["M"]], + "Zara's": null, + "Zared": [["M"]], + "Zared's": null, + "Zaria": [["M"]], + "Zaria's": null, + "Zarla": [["M"]], + "Zarla's": null, + "Zealand": [["M"]], + "Zealand's": null, + "zeal": [["M", "S"]], + "zeal's": null, + "zeals": null, + "zealot": [["M", "S"]], + "zealot's": null, + "zealots": null, + "zealotry": [["M", "S"]], + "zealotry's": null, + "zealotries": null, + "zealousness": [["S", "M"]], + "zealousnesses": null, + "zealousness's": null, + "zealous": [["Y", "P"]], + "zealously": null, + "Zea": [["M"]], + "Zea's": null, + "Zebadiah": [["M"]], + "Zebadiah's": null, + "Zebedee": [["M"]], + "Zebedee's": null, + "Zeb": [["M"]], + "Zeb's": null, + "zebra": [["M", "S"]], + "zebra's": null, + "zebras": null, + "Zebulen": [["M"]], + "Zebulen's": null, + "Zebulon": [["M"]], + "Zebulon's": null, + "zebu": [["S", "M"]], + "zebus": null, + "zebu's": null, + "Zechariah": [["M"]], + "Zechariah's": null, + "Zedekiah": [["M"]], + "Zedekiah's": null, + "Zed": [["M"]], + "Zed's": null, + "Zedong": [["M"]], + "Zedong's": null, + "zed": [["S", "M"]], + "zeds": null, + "zed's": null, + "Zeffirelli": [["M"]], + "Zeffirelli's": null, + "Zeiss": [["M"]], + "Zeiss's": null, + "zeitgeist": [["S"]], + "zeitgeists": null, + "Zeke": [["M"]], + "Zeke's": null, + "Zelda": [["M"]], + "Zelda's": null, + "Zelig": [["M"]], + "Zelig's": null, + "Zellerbach": [["M"]], + "Zellerbach's": null, + "Zelma": [["M"]], + "Zelma's": null, + "Zena": [["M"]], + "Zena's": null, + "Zenger": [["M"]], + "Zenger's": null, + "Zenia": [["M"]], + "Zenia's": null, + "zenith": [["M"]], + "zenith's": null, + "zeniths": null, + "Zen": [["M"]], + "Zen's": null, + "Zennist": [["M"]], + "Zennist's": null, + "Zeno": [["M"]], + "Zeno's": null, + "Zephaniah": [["M"]], + "Zephaniah's": null, + "zephyr": [["M", "S"]], + "zephyr's": null, + "zephyrs": null, + "Zephyrus": [["M"]], + "Zephyrus's": null, + "Zeppelin's": null, + "zeppelin": [["S", "M"]], + "zeppelins": null, + "zeppelin's": null, + "Zerk": [["M"]], + "Zerk's": null, + "zeroed": [["M"]], + "zeroed's": null, + "zeroing": [["M"]], + "zeroing's": null, + "zero": [["S", "D", "H", "M", "G"]], + "zeros": null, + "zeroth": null, + "zero's": null, + "zestfulness": [["M", "S"]], + "zestfulness's": null, + "zestfulnesses": null, + "zestful": [["Y", "P"]], + "zestfully": null, + "zest": [["M", "D", "S", "G"]], + "zest's": null, + "zested": null, + "zests": null, + "zesting": null, + "zesty": [["R", "T"]], + "zestier": null, + "zestiest": null, + "zeta": [["S", "M"]], + "zetas": null, + "zeta's": null, + "zeugma": [["M"]], + "zeugma's": null, + "Zeus": [["M"]], + "Zeus's": null, + "Zhdanov": [["M"]], + "Zhdanov's": null, + "Zhengzhou": null, + "Zhivago": [["M"]], + "Zhivago's": null, + "Zhukov": [["M"]], + "Zhukov's": null, + "Zia": [["M"]], + "Zia's": null, + "Zibo": [["M"]], + "Zibo's": null, + "Ziegfeld": [["M", "S"]], + "Ziegfeld's": null, + "Ziegfelds": null, + "Ziegler": [["M"]], + "Ziegler's": null, + "zig": null, + "zigged": null, + "zigging": null, + "Ziggy": [["M"]], + "Ziggy's": null, + "zigzagged": null, + "zigzagger": null, + "zigzagging": null, + "zigzag": [["M", "S"]], + "zigzag's": null, + "zigzags": null, + "zilch": [["S"]], + "zilches": null, + "zillion": [["M", "S"]], + "zillion's": null, + "zillions": null, + "Zilvia": [["M"]], + "Zilvia's": null, + "Zimbabwean": [["S"]], + "Zimbabweans": null, + "Zimbabwe": [["M"]], + "Zimbabwe's": null, + "Zimmerman": [["M"]], + "Zimmerman's": null, + "zincked": null, + "zincking": null, + "zinc": [["M", "S"]], + "zinc's": null, + "zincs": null, + "zing": [["G", "Z", "D", "R", "M"]], + "zinging": null, + "zingers": null, + "zinged": null, + "zinger": null, + "zing's": null, + "zingy": [["R", "T"]], + "zingier": null, + "zingiest": null, + "zinnia": [["S", "M"]], + "zinnias": null, + "zinnia's": null, + "Zionism": [["M", "S"]], + "Zionism's": null, + "Zionisms": null, + "Zionist": [["M", "S"]], + "Zionist's": null, + "Zionists": null, + "Zion": [["S", "M"]], + "Zions": null, + "Zion's": null, + "zip": [["M", "S"]], + "zip's": null, + "zips": [["U"]], + "zipped": [["U"]], + "unzipped": null, + "zipper": [["G", "S", "D", "M"]], + "zippering": null, + "zippers": null, + "zippered": null, + "zipper's": null, + "zipping": [["U"]], + "unzipping": null, + "zippy": [["R", "T"]], + "zippier": null, + "zippiest": null, + "unzips": null, + "zirconium": [["M", "S"]], + "zirconium's": null, + "zirconiums": null, + "zircon": [["S", "M"]], + "zircons": null, + "zircon's": null, + "Zita": [["M"]], + "Zita's": null, + "Zitella": [["M"]], + "Zitella's": null, + "zither": [["S", "M"]], + "zithers": null, + "zither's": null, + "zit": [["S"]], + "zits": null, + "zloty": [["S", "M"]], + "zloties": null, + "zloty's": null, + "Zn": [["M"]], + "Zn's": null, + "zodiacal": null, + "zodiac": [["S", "M"]], + "zodiacs": null, + "zodiac's": null, + "Zoe": [["M"]], + "Zoe's": null, + "Zola": [["M"]], + "Zola's": null, + "Zollie": [["M"]], + "Zollie's": null, + "Zolly": [["M"]], + "Zolly's": null, + "Zomba": [["M"]], + "Zomba's": null, + "zombie": [["S", "M"]], + "zombies": null, + "zombie's": null, + "zombi's": null, + "zonal": [["Y"]], + "zonally": null, + "Zonda": [["M"]], + "Zonda's": null, + "Zondra": [["M"]], + "Zondra's": null, + "zoned": [["A"]], + "rezoned": null, + "zone": [["M", "Y", "D", "S", "R", "J", "G"]], + "zone's": null, + "zonely": null, + "zones": [["A"]], + "zoner": null, + "zonings": null, + "zoning": [["A"]], + "rezones": null, + "rezoning": null, + "zonked": null, + "Zonnya": [["M"]], + "Zonnya's": null, + "zookeepers": null, + "zoological": [["Y"]], + "zoologically": null, + "zoologist": [["S", "M"]], + "zoologists": null, + "zoologist's": null, + "zoology": [["M", "S"]], + "zoology's": null, + "zoologies": null, + "zoom": [["D", "G", "S"]], + "zoomed": null, + "zooming": null, + "zooms": null, + "zoophyte": [["S", "M"]], + "zoophytes": null, + "zoophyte's": null, + "zoophytic": null, + "zoo": [["S", "M"]], + "zoos": null, + "zoo's": null, + "Zorah": [["M"]], + "Zorah's": null, + "Zora": [["M"]], + "Zora's": null, + "Zorana": [["M"]], + "Zorana's": null, + "Zorina": [["M"]], + "Zorina's": null, + "Zorine": [["M"]], + "Zorine's": null, + "Zorn": [["M"]], + "Zorn's": null, + "Zoroaster": [["M"]], + "Zoroaster's": null, + "Zoroastrianism": [["M", "S"]], + "Zoroastrianism's": null, + "Zoroastrianisms": null, + "Zoroastrian": [["S"]], + "Zoroastrians": null, + "Zorro": [["M"]], + "Zorro's": null, + "Zosma": [["M"]], + "Zosma's": null, + "zounds": [["S"]], + "zoundses": null, + "Zr": [["M"]], + "Zr's": null, + "Zs": null, + "Zsazsa": [["M"]], + "Zsazsa's": null, + "Zsigmondy": [["M"]], + "Zsigmondy's": null, + "z": [["T", "G", "J"]], + "zings": null, + "Zubenelgenubi": [["M"]], + "Zubenelgenubi's": null, + "Zubeneschamali": [["M"]], + "Zubeneschamali's": null, + "zucchini": [["S", "M"]], + "zucchinis": null, + "zucchini's": null, + "Zukor": [["M"]], + "Zukor's": null, + "Zulema": [["M"]], + "Zulema's": null, + "Zululand": [["M"]], + "Zululand's": null, + "Zulu": [["M", "S"]], + "Zulu's": null, + "Zulus": null, + "Zuni": [["S"]], + "Zunis": null, + "Z�rich": [["M"]], + "Z�rich's": null, + "Zuzana": [["M"]], + "Zuzana's": null, + "zwieback": [["M", "S"]], + "zwieback's": null, + "zwiebacks": null, + "Zwingli": [["M"]], + "Zwingli's": null, + "Zworykin": [["M"]], + "Zworykin's": null, + "Z": [["X"]], + "Zens": null, + "zydeco": [["S"]], + "zydecos": null, + "zygote": [["S", "M"]], + "zygotes": null, + "zygote's": null, + "zygotic": null, + "zymurgy": [["S"]], + "zymurgies": null, + "": null + }, + "compoundRules": [{}, {}], + "compoundRuleCodes": { + "1": ["1"], + "n": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], + "t": ["0th", "1th", "2th", "3th", "4th", "5th", "6th", "7th", "8th", "9th"], + "m": ["0", "2", "3", "4", "5", "6", "7", "8", "9"], + "p": ["0th", "1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th", "9th"], + "c": ["1th", "2th", "3th"] + }, + "replacementTable": [ + ["a", "ei"], + ["ei", "a"], + ["a", "ey"], + ["ey", "a"], + ["ai", "ie"], + ["ie", "ai"], + ["are", "air"], + ["are", "ear"], + ["are", "eir"], + ["air", "are"], + ["air", "ere"], + ["ere", "air"], + ["ere", "ear"], + ["ere", "eir"], + ["ear", "are"], + ["ear", "air"], + ["ear", "ere"], + ["eir", "are"], + ["eir", "ere"], + ["ch", "te"], + ["te", "ch"], + ["ch", "ti"], + ["ti", "ch"], + ["ch", "tu"], + ["tu", "ch"], + ["ch", "s"], + ["s", "ch"], + ["ch", "k"], + ["k", "ch"], + ["f", "ph"], + ["ph", "f"], + ["gh", "f"], + ["f", "gh"], + ["i", "igh"], + ["igh", "i"], + ["i", "uy"], + ["uy", "i"], + ["i", "ee"], + ["ee", "i"], + ["j", "di"], + ["di", "j"], + ["j", "gg"], + ["gg", "j"], + ["j", "ge"], + ["ge", "j"], + ["s", "ti"], + ["ti", "s"], + ["s", "ci"], + ["ci", "s"], + ["k", "cc"], + ["cc", "k"], + ["k", "qu"], + ["qu", "k"], + ["kw", "qu"], + ["o", "eau"], + ["eau", "o"], + ["o", "ew"], + ["ew", "o"], + ["oo", "ew"], + ["ew", "oo"], + ["ew", "ui"], + ["ui", "ew"], + ["oo", "ui"], + ["ui", "oo"], + ["ew", "u"], + ["u", "ew"], + ["oo", "u"], + ["u", "oo"], + ["u", "oe"], + ["oe", "u"], + ["u", "ieu"], + ["ieu", "u"], + ["ue", "ew"], + ["ew", "ue"], + ["uff", "ough"], + ["oo", "ieu"], + ["ieu", "oo"], + ["ier", "ear"], + ["ear", "ier"], + ["ear", "air"], + ["air", "ear"], + ["w", "qu"], + ["qu", "w"], + ["z", "ss"], + ["ss", "z"], + ["shun", "tion"], + ["shun", "sion"], + ["shun", "cion"] + ], + "flags": { + "SET": "ISO8859-1", + "TRY": "esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ'", + "NOSUGGEST": "!", + "COMPOUNDMIN": "1", + "ONLYINCOMPOUND": "c", + "WORDCHARS": "0123456789" + } +} diff --git a/__tests__/english.test.ts b/__tests__/english.test.ts new file mode 100644 index 0000000..9e3e50f --- /dev/null +++ b/__tests__/english.test.ts @@ -0,0 +1,158 @@ +import * as fs from "fs"; +import * as path from "path"; +import {createTypo, ITypo} from "../src/typo"; + +let typo: ITypo; + +beforeAll(() => { + const testDir = path.dirname(require.main.filename); + const dictData = JSON.parse(fs.readFileSync(`${testDir}/dictionaries/en_US.json`).toString()); + typo = createTypo( + dictData.dictionaryTable, + dictData.compoundRules, + dictData.replacementTable, + dictData.flags, + ); +}); + +test("correct words return true to check", () => { + expect(typo.check("I")).toBe(true); + expect(typo.check("is")).toBe(true); + expect(typo.check("makes")).toBe(true); + expect(typo.check("example")).toBe(true); + expect(typo.check("a")).toBe(true); + expect(typo.check("aback")).toBe(true); + expect(typo.check("juicily")).toBe(true); + expect(typo.check("palmate")).toBe(true); + expect(typo.check("palpable")).toBe(true); +}); + +test("Words not in the dictionary in any form are marked as misspelled.", () => { + expect(typo.check("aaraara")).toBe(false); + expect(typo.check("aaraara")).toBe(false); + expect(typo.check("aaraara")).toBe(false); + expect(typo.check("aaraara")).toBe(false); + expect(typo.check("aaraara")).toBe(false); +}); + +test("Leading and trailing whitespace is ignored.", () => { + expect(typo.check("concept ")).toBe(true); + expect(typo.check(" concept")).toBe(true); + expect(typo.check(" concept")).toBe(true); + expect(typo.check("concept ")).toBe(true); + expect(typo.check(" concept ")).toBe(true); +}); + +test("Possessives are properly checked.", () => { + expect(typo.check("concept's")).toBe(true); + // acceptability's is in the dictionary including the 's + expect(typo.check("acceptability's's")).toBe(false); +}); + +test("Correct checking of root words with single affixes (affixes not used)", () => { + expect(typo.check("paling")).toBe(true); + expect(typo.check("arrangeable")).toBe(true); + expect(typo.check("arrant")).toBe(true); + expect(typo.check("swabby")).toBe(true); +}); + +test("Correct checking of root words with single affixes (affixes used)", () => { + expect(typo.check("palmer's")).toBe(true); + expect(typo.check("uncritically")).toBe(true); + expect(typo.check("hypersensitiveness")).toBe(true); + expect(typo.check("illusive")).toBe(true); +}); + +test("Capitalization is respected.", () => { + expect(typo.check("A")).toBe(true); + expect(typo.check("a")).toBe(true); + expect(typo.check("AA")).toBe(true); + expect(typo.check("ABANDONER")).toBe(true); + expect(typo.check("abandonER")).toBe(true); + expect(typo.check("Abandoner")).toBe(true); + expect(typo.check("Abbe")).toBe(true); + expect(typo.check("Abbott's")).toBe(true); + expect(typo.check("abbott's")).toBe(false); + expect(typo.check("Abba")).toBe(true); + expect(typo.check("ABBA")).toBe(true); + expect(typo.check("Abba's")).toBe(true); + expect(typo.check("Yum")).toBe(true); + expect(typo.check("yum")).toBe(true); + expect(typo.check("YUM")).toBe(true); + expect(typo.check("aa")).toBe(false); + expect(typo.check("aaron")).toBe(false); + expect(typo.check("abigael")).toBe(false); + expect(typo.check("YVES")).toBe(true); + expect(typo.check("yves")).toBe(false); + expect(typo.check("Yves")).toBe(true); + expect(typo.check("MACARTHUR")).toBe(true); + expect(typo.check("MacArthur")).toBe(true); + expect(typo.check("Alex")).toBe(true); + expect(typo.check("alex")).toBe(false); +}); + +test("Contractions", () => { + expect(typo.check("aren't")).toBe(true); + expect(typo.check("I'm")).toBe(true); + expect(typo.check("we're")).toBe(true); + expect(typo.check("didn't")).toBe(true); + expect(typo.check("didn'ts")).toBe(false); + expect(typo.check("he're")).toBe(false); +}); + +test("ONLYINCOMPOUND flag is respected", () => { + expect(typo.check("1th")).toBe(false); + expect(typo.check("2th")).toBe(false); + expect(typo.check("3th")).toBe(false); +}); + +test("Compound words", () => { + expect(typo.check("1st")).toBe(true); + expect(typo.check("2nd")).toBe(true); + expect(typo.check("3rd")).toBe(true); + expect(typo.check("4th")).toBe(true); + expect(typo.check("5th")).toBe(true); + expect(typo.check("6th")).toBe(true); + expect(typo.check("7th")).toBe(true); + expect(typo.check("8th")).toBe(true); + expect(typo.check("9th")).toBe(true); + expect(typo.check("10th")).toBe(true); + expect(typo.check("11th")).toBe(true); + expect(typo.check("12th")).toBe(true); + expect(typo.check("13th")).toBe(true); + expect(typo.check("2rd")).toBe(false); + expect(typo.check("4rd")).toBe(false); + expect(typo.check("100st")).toBe(false); +}); + +test("Suggestions", () => { + expect(typo.suggest("speling", 3)).toEqual([ "spelling", "spieling", "spewing" ]); + + // Repeated calls function properly. + expect(typo.suggest("speling", 1)).toEqual([ "spelling" ]); + expect(typo.suggest("speling")).toEqual([ "spelling", "spieling", "spewing", "selling", "peeling" ]); + expect(typo.suggest("speling", 2)).toEqual([ "spelling", "spieling" ]); + expect(typo.suggest("speling")).toEqual([ "spelling", "spieling", "spewing", "selling", "peeling" ]); + + // Requesting more suggestions than will be returned doesn't break anything. + expect(typo.suggest("spartang", 50)).toEqual([ + "spartan", + "sparing", + "starting", + "sprang", + "sporting", "spurting", "smarting", "sparking", "sparling", "sparring", "parting", "spatting", + ]); + expect(typo.suggest("spartang", 30)).toEqual([ + "spartan", + "sparing", + "starting", + "sprang", "sporting", "spurting", "smarting", "sparking", "sparling", "sparring", "parting", "spatting" ]); + expect(typo.suggest("spartang", 1)).toEqual([ "spartan" ]); + + expect(typo.suggest("spitting")).toEqual([ ]); + expect(typo.suggest("spitting")).toEqual([ ]); + + // Words that are object properties don't break anything. + expect(typo.suggest("length")).toEqual([ ]); + expect(typo.suggest("length")).toEqual([ ]); +}); diff --git a/package.json b/package.json index 8788e2f..d8d8644 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,9 @@ "./node_modules/.bin/tsc && node concatenate.js build/ts/require-entry.js build/typo.js", "build": "./node_modules/.bin/tsc", "precommit": "lint-staged", - "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}" + "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}", + "test": "jest", + "inspect": "node --inspect-brk node_modules/.bin/jest --runInBand" }, "lint-staged": { "*.{js,json,css,md}": ["prettier --write", "git add"] @@ -26,8 +28,19 @@ "typescript": "2.4.1" }, "devDependencies": { + "@types/jest": "^22.2.0", + "@types/node": "^9.4.6", "husky": "^0.14.3", + "jest": "^22.4.2", "lint-staged": "^6.0.1", - "prettier": "1.10.2" + "prettier": "1.10.2", + "ts-jest": "^22.4.1" + }, + "jest": { + "transform": { + "^.+\\.tsx?$": "ts-jest" + }, + "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", + "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"] } } diff --git a/src/typo.ts b/src/typo.ts index 85ea814..9e1035c 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -1,821 +1,318 @@ export interface ITypo { - check(word: string): boolean; - suggest(word: string, limit?: number): string[]; + check(word: string): boolean; + suggest(word: string, limit?: number): string[]; } -export function createTypo(affData: string, wordsData: string): ITypo { - return new Typo(affData, wordsData, {}); +export function createTypo( + dictionaryTable: {[key: string]: string[]}, + compoundRules: any[], + replacementTable: string[][], + flags: {[key: string]: string}, +): ITypo { + return new Typo( + dictionaryTable, compoundRules, replacementTable, flags, + ); } -let Typo; - -(() => { - "use strict"; - - /** - * Typo constructor. - * - * @param {String} [dictionary] The locale code of the dictionary being used. e.g., - * "en_US". This is only used to auto-load dictionaries. - * @param {String} [affData] The data from the dictionary's .aff file. If omitted - * and Typo.js is being used in a Chrome extension, the .aff - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].aff - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].aff - * @param {String} [wordsData] The data from the dictionary's .dic file. If omitted - * and Typo.js is being used in a Chrome extension, the .dic - * file will be loaded automatically from - * lib/typo/dictionaries/[dictionary]/[dictionary].dic - * In other environments, it will be loaded from - * [settings.dictionaryPath]/dictionaries/[dictionary]/[dictionary].dic - * @param {Object} [settings] Constructor settings. Available properties are: - * {String} [dictionaryPath]: path to load dictionary from in non-chrome - * environment. - * {Object} [flags]: flag information. - * {Boolean} [asyncLoad]: If true, affData and wordsData will be loaded - * asynchronously. - * {Function} [loadedCallback]: Called when both affData and wordsData - * have been loaded. Only used if asyncLoad is set to true. The parameter - * is the instantiated Typo object. - * - * @returns {Typo} A Typo object. - */ - - Typo = function(affData, wordsData, settings: any = {}) { - - this.rules = {}; - this.dictionaryTable = {}; - - this.compoundRules = []; - this.compoundRuleCodes = {}; - - this.replacementTable = []; - - this.flags = settings.flags || {}; - - this.memoized = {}; - - const self = this; - - // Loop-control variables. - let i; - let j; - let len; - let jlen; - - setup(); - - function setup() { - self.rules = self._parseAFF(affData); - - // Save the rule codes that are used in compound rules. - self.compoundRuleCodes = {}; - - for (i = 0, len = self.compoundRules.length; i < len; i++) { - const rule = self.compoundRules[i]; - - for (j = 0, jlen = rule.length; j < jlen; j++) { - self.compoundRuleCodes[rule[j]] = []; - } - } - - // If we add this ONLYINCOMPOUND flag to self.compoundRuleCodes, then _parseDIC - // will do the work of saving the list of words that are compound-only. - if ("ONLYINCOMPOUND" in self.flags) { - self.compoundRuleCodes[self.flags.ONLYINCOMPOUND] = []; - } - - self.dictionaryTable = self._parseDIC(wordsData); - - // Get rid of any codes from the compound rule codes that are never used - // (or that were special regex characters). Not especially necessary... - for (i in self.compoundRuleCodes) { - if (self.compoundRuleCodes[i].length === 0) { - delete self.compoundRuleCodes[i]; - } - } - - // Build the full regular expressions for each compound rule. - // I have a feeling (but no confirmation yet) that this method of - // testing for compound words is probably slow. - for (i = 0, len = self.compoundRules.length; i < len; i++) { - const ruleText = self.compoundRules[i]; - - let expressionText = ""; - - for (j = 0, jlen = ruleText.length; j < jlen; j++) { - const character = ruleText[j]; - - if (character in self.compoundRuleCodes) { - expressionText += "(" + self.compoundRuleCodes[character].join("|") + ")"; - } else { - expressionText += character; - } - } +export interface IMemo { + limit: number; + suggestions: string[]; +} - self.compoundRules[i] = new RegExp(expressionText, "i"); - } +export interface IReplacementEntry { + oldAffix: string; + newAffix: string; +} +class Typo implements ITypo { + private alphabet: string = ""; + private memoized: {[word: string]: IMemo} = {}; + private replacementTable: IReplacementEntry[]; + + constructor( + private dictionaryTable: {[key: string]: string[]}, + private compoundRules: RegExp[], + replacementTable: string[][], + private flags: {[key: string]: string}, + ) { + this.replacementTable = replacementTable.map((entry: string[]) => { + return {oldAffix: entry[0], newAffix: entry[1]}; + }); + debugger; + } + + public check(aWord) { + // Remove leading and trailing whitespace + const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + + if (this.checkExact(trimmedWord)) { + return true; + } + + // The exact word is not in the dictionary. + if (trimmedWord.toUpperCase() === trimmedWord) { + // The word was supplied in all uppercase. + // Check for a capitalized form of the word. + const capitalizedWord = trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); + + if (this.hasFlag(capitalizedWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + if (this.checkExact(capitalizedWord)) { + return true; + } + } + + const lowercaseWord = trimmedWord.toLowerCase(); + + if (lowercaseWord !== trimmedWord) { + if (this.hasFlag(lowercaseWord, "KEEPCASE")) { + // Capitalization variants are not allowed for this word. + return false; + } + + // Check for a lowercase form + if (this.checkExact(lowercaseWord)) { + return true; + } + } + + return false; + } + + public suggest(word, limit = 5) { + + if (this.memoized.hasOwnProperty(word)) { + const memoizedLimit = this.memoized[word].limit; + + // Only return the cached list if it's big enough or if there weren't enough suggestions + // to fill a smaller limit. + if (limit <= memoizedLimit || this.memoized[word].suggestions.length < memoizedLimit) { + return this.memoized[word].suggestions.slice(0, limit); + } + } + + if (this.check(word)) { return []; } + + // Check the replacement table. + for (const replacementEntry of this.replacementTable) { + if (word.indexOf(replacementEntry[0]) !== -1) { + const correctedWord = word.replace(replacementEntry.oldAffix, replacementEntry.newAffix); + + if (this.check(correctedWord)) { + return [ correctedWord ]; } + } + } - return this; - }; + this.alphabet = "abcdefghijklmnopqrstuvwxyz"; - Typo.prototype = { - /** - * Loads a Typo instance from a hash of all of the Typo properties. - * - * @param object obj A hash of Typo properties, - * probably gotten from a JSON.parse(JSON.stringify(typo_instance)). - */ - - load(obj) { - for (const i in obj) { - if (obj.hasOwnProperty(i)) { - this[i] = obj[i]; - } - } + function edits1(words, knownOnly?) { + const rv = {}; - return this; - }, + let i; + let j; + let len; + let jlen; + let edit; - /** - * Parse the rules out from a .aff file. - * - * @param {String} data The contents of the affix file. - * @returns object The rules from the file. - */ + if (typeof words === "string") { + const word = words; + words = {}; + words[word] = true; + } - _parseAFF(data) { - const rules = {}; - - let line; - let subline; - let numEntries; - let lineParts; - let i; - let j; - let len; - let jlen; - - // Remove comment lines - data = this._removeAffixComments(data); - - const lines = data.split("\n"); - - for (i = 0, len = lines.length; i < len; i++) { - line = lines[i]; - - const definitionParts = line.split(/\s+/); - - const ruleType = definitionParts[0]; - - if (ruleType === "PFX" || ruleType === "SFX") { - const ruleCode = definitionParts[1]; - const combineable = definitionParts[2]; - numEntries = parseInt(definitionParts[3], 10); - - const entries = []; - - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - subline = lines[j]; - - lineParts = subline.split(/\s+/); - const charactersToRemove = lineParts[2]; - - const additionParts = lineParts[3].split("/"); - - let charactersToAdd = additionParts[0]; - if (charactersToAdd === "0") { charactersToAdd = ""; } - - const continuationClasses = this.parseRuleCodes(additionParts[1]); - - const regexToMatch = lineParts[4]; - - const entry: any = {}; - entry.add = charactersToAdd; - - if (continuationClasses.length > 0) { entry.continuationClasses = continuationClasses; } - - if (regexToMatch !== ".") { - if (ruleType === "SFX") { - entry.match = new RegExp(regexToMatch + "$"); - } else { - entry.match = new RegExp("^" + regexToMatch); - } - } - - if (charactersToRemove !== "0") { - if (ruleType === "SFX") { - entry.remove = new RegExp(charactersToRemove + "$"); - } else { - entry.remove = charactersToRemove; - } - } - - entries.push(entry); - } + for (const word in words) { + if (words.hasOwnProperty(word)) { + for (i = 0, len = word.length + 1; i < len; i++) { + const s = [ word.substring(0, i), word.substring(i) ]; - rules[ruleCode] = { type : ruleType, combineable : (combineable === "Y"), entries }; + if (s[1]) { + edit = s[0] + s[1].substring(1); - i += numEntries; - } else if (ruleType === "COMPOUNDRULE") { - numEntries = parseInt(definitionParts[1], 10); - - for (j = i + 1, jlen = i + 1 + numEntries; j < jlen; j++) { - line = lines[j]; - - lineParts = line.split(/\s+/); - this.compoundRules.push(lineParts[1]); - } - - i += numEntries; - } else if (ruleType === "REP") { - lineParts = line.split(/\s+/); - - if (lineParts.length === 3) { - this.replacementTable.push([ lineParts[1], lineParts[2] ]); - } + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; } else { - // ONLYINCOMPOUND - // COMPOUNDMIN - // FLAG - // KEEPCASE - // NEEDAFFIX - - this.flags[ruleType] = definitionParts[1]; + rv[edit] += 1; } + } } - return rules; - }, - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from an affix file. - * @return {String} The cleaned-up data. - */ - - _removeAffixComments(data) { - // Remove comments - // This used to remove any string starting with '#' up to the end of the line, - // but some COMPOUNDRULE definitions include '#' as part of the rule. - // I haven't seen any affix files that use comments on the same line as real data, - // so I don't think this will break anything. - data = data.replace(/^\s*#.*$/mg, ""); - - // Trim each line - data = data.replace(/^\s\s*/m, "").replace(/\s\s*$/m, ""); - - // Remove blank lines. - data = data.replace(/\n{2,}/g, "\n"); - - // Trim the entire string - data = data.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - - return data; - }, - - /** - * Parses the words out from the .dic file. - * - * @param {String} data The data from the dictionary file. - * @returns object The lookup table containing all of the words and - * word forms from the dictionary. - */ - - _parseDIC(data) { - data = this._removeDicComments(data); - - const lines = data.split("\n"); - const dictionaryTable = {}; - - function addWord(word, rules) { - // Some dictionaries will list the same word multiple times with different rule sets. - if (!dictionaryTable.hasOwnProperty(word)) { - dictionaryTable[word] = null; - } - - if (rules.length > 0) { - if (dictionaryTable[word] === null) { - dictionaryTable[word] = []; - } + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - dictionaryTable[word].push(rules); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; } + } } - // The first line is the number of words in the dictionary. - for (let i = 1, len = lines.length; i < len; i++) { - const line = lines[i]; - - if (!line) { - // Ignore empty lines. - continue; - } - - const parts = line.split("/", 2); - - const word = parts[0]; - - // Now for each affix rule, generate that form of the word. - if (parts.length > 1) { - const ruleCodesArray = this.parseRuleCodes(parts[1]); - - // Save the ruleCodes for compound word situations. - if (!("NEEDAFFIX" in this.flags) || ruleCodesArray.indexOf(this.flags.NEEDAFFIX) === -1) { - addWord(word, ruleCodesArray); - } - - for (let j = 0, jlen = ruleCodesArray.length; j < jlen; j++) { - const code = ruleCodesArray[j]; - - const rule = this.rules[code]; + if (s[1]) { + for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + // Eliminate replacement of a letter by itself + if (this.alphabet[j] !== s[1].substring(0, 1)) { + edit = s[0] + this.alphabet[j] + s[1].substring(1); - if (rule) { - const newWords = this._applyRule(word, rule); - - for (const newWord of newWords) { - - addWord(newWord, []); - - if (rule.combineable) { - for (let k = j + 1; k < jlen; k++) { - const combineCode = ruleCodesArray[k]; - - const combineRule = this.rules[combineCode]; - - if (combineRule) { - if (combineRule.combineable && (rule.type !== combineRule.type)) { - const otherNewWords = this._applyRule(newWord, combineRule); - - for (let iii = 0, iiilen = otherNewWords.length; iii < iiilen; iii++) { - const otherNewWord = otherNewWords[iii]; - addWord(otherNewWord, []); - } - } - } - } - } - } - } - - if (code in this.compoundRuleCodes) { - this.compoundRuleCodes[code].push(word); - } + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; } - } else { - addWord(word.trim(), []); + } } + } } - return dictionaryTable; - }, - - /** - * Removes comment lines and then cleans up blank lines and trailing whitespace. - * - * @param {String} data The data from a .dic file. - * @return {String} The cleaned-up data. - */ + if (s[1]) { + for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + edit = s[0] + this.alphabet[j] + s[1]; - _removeDicComments(data) { - // I can't find any official documentation on it, but at least the de_DE - // dictionary uses tab-indented lines as comments. - - // Remove comments - data = data.replace(/^\t.*$/mg, ""); - - return data; - }, - - parseRuleCodes(textCodes) { - if (!textCodes) { - return []; - } else if (!("FLAG" in this.flags)) { - return textCodes.split(""); - } else if (this.flags.FLAG === "long") { - const flags = []; - - for (let i = 0, len = textCodes.length; i < len; i += 2) { - flags.push(textCodes.substr(i, 2)); + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } } - - return flags; - } else if (this.flags.FLAG === "num") { - return textCodes.split(","); + } } - }, - - /** - * Applies an affix rule to a word. - * - * @param {String} word The base word. - * @param {Object} rule The affix rule. - * @returns {String[]} The new words generated by the rule. - */ - - _applyRule(word, rule) { - const entries = rule.entries; - let newWords = []; - - for (let i = 0, len = entries.length; i < len; i++) { - const entry = entries[i]; - - if (!entry.match || word.match(entry.match)) { - let newWord = word; + } + } + } - if (entry.remove) { - newWord = newWord.replace(entry.remove, ""); - } + return rv; + } - if (rule.type === "SFX") { - newWord = newWord + entry.add; - } else { - newWord = entry.add + newWord; - } + function correct(word) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + const ed1 = edits1(word); + const ed2 = edits1(ed1, true); - newWords.push(newWord); - - if ("continuationClasses" in entry) { - for (let j = 0, jlen = entry.continuationClasses.length; j < jlen; j++) { - const continuationRule = this.rules[entry.continuationClasses[j]]; - - if (continuationRule) { - newWords = newWords.concat(this._applyRule(newWord, continuationRule)); - } - /* - else { - // This shouldn't happen, but it does, at least in the de_DE dictionary. - // I think the author mistakenly supplied lower-case rule codes instead - // of upper-case. - } - */ - } - } - } - } + // Sort the edits based on how many different ways they were created. + const weightedCorrections = ed2; - return newWords; - }, - - /** - * Checks whether a word or a capitalization variant exists in the current dictionary. - * The word is trimmed and several variations of capitalizations are checked. - * If you want to check a word without any changes made to it, call checkExact() - * - * @see http://blog.stevenlevithan.com/archives/faster-trim-javascript re:trimming function - * - * @param {String} aWord The word to check. - * @returns {Boolean} - */ - - check(aWord) { - // Remove leading and trailing whitespace - const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); - - if (this.checkExact(trimmedWord)) { - return true; + for (const ed1word in ed1) { + if (!this.check(ed1word)) { + continue; } - // The exact word is not in the dictionary. - if (trimmedWord.toUpperCase() === trimmedWord) { - // The word was supplied in all uppercase. - // Check for a capitalized form of the word. - const capitalizedWord = trimmedWord[0] + trimmedWord.substring(1).toLowerCase(); - - if (this.hasFlag(capitalizedWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } - - if (this.checkExact(capitalizedWord)) { - return true; - } + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; } + } - const lowercaseWord = trimmedWord.toLowerCase(); + let i; - if (lowercaseWord !== trimmedWord) { - if (this.hasFlag(lowercaseWord, "KEEPCASE")) { - // Capitalization variants are not allowed for this word. - return false; - } + const sortedCorrections = []; - // Check for a lowercase form - if (this.checkExact(lowercaseWord)) { - return true; - } + for (i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([ i, weightedCorrections[i] ]); } + } - return false; - }, - - /** - * Checks whether a word exists in the current dictionary. - * - * @param {String} word The word to check. - * @returns {Boolean} - */ - - checkExact(word) { - const ruleCodes = this.dictionaryTable[word]; - - let i; - let len; - - if (typeof ruleCodes === "undefined") { - // Check if this might be a compound word. - if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { - for (i = 0, len = this.compoundRules.length; i < len; i++) { - if (word.match(this.compoundRules[i])) { - return true; - } - } - } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. - for (i = 0, len = ruleCodes.length; i < len; i++) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes[i])) { - return true; - } - } - } - - return false; - }, - - /** - * Looks up whether a given word is flagged with a given flag. - * - * @param {String} word The word in question. - * @param {String} flag The flag in question. - * @return {Boolean} - */ - - hasFlag(word, flag, wordFlags) { - if (flag in this.flags) { - if (typeof wordFlags === "undefined") { - wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); - } - - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } - } - - return false; - }, - - /** - * Returns a list of suggestions for a misspelled word. - * - * @see http://www.norvig.com/spell-correct.html for the basis of this suggestor. - * This suggestor is primitive, but it works. - * - * @param {String} word The misspelling. - * @param {Number} [limit=5] The maximum number of suggestions to return. - * @returns {String[]} The array of suggestions. - */ - - alphabet : "", - - suggest(word, limit) { - limit = limit || 5; - - if (this.memoized.hasOwnProperty(word)) { - const memoizedLimit = this.memoized[word].limit; - - // Only return the cached list if it's big enough or if there weren't enough suggestions - // to fill a smaller limit. - if (limit <= memoizedLimit || this.memoized[word].suggestions.length < memoizedLimit) { - return this.memoized[word].suggestions.slice(0, limit); - } - } - - if (this.check(word)) { return []; } - - // Check the replacement table. - for (let i = 0, len = this.replacementTable.length; i < len; i++) { - const replacementEntry = this.replacementTable[i]; - - if (word.indexOf(replacementEntry[0]) !== -1) { - const correctedWord = word.replace(replacementEntry[0], replacementEntry[1]); - - if (this.check(correctedWord)) { - return [ correctedWord ]; - } - } - } - - const self = this; - self.alphabet = "abcdefghijklmnopqrstuvwxyz"; - - /* - if (!self.alphabet) { - // Use the alphabet as implicitly defined by the words in the dictionary. - var alphaHash = {}; - - for (var i in self.dictionaryTable) { - for (var j = 0, len = i.length; j < len; j++) { - alphaHash[i[j]] = true; - } - } - - for (var i in alphaHash) { - self.alphabet += i; - } - - var alphaArray = self.alphabet.split(""); - alphaArray.sort(); - self.alphabet = alphaArray.join(""); - } - */ - - /** - * Returns a hash keyed by all of the strings that - * can be made by making a single edit to the word (or words in) `words` - * The value of each entry is the number of unique ways that the resulting word can be made. - * - * @arg mixed words Either a hash keyed by words or a string word to operate on. - * @arg bool knownOnly Whether this function should ignore strings that are not in the dictionary. - */ - function edits1(words, knownOnly?) { - const rv = {}; - - let i; - let j; - let len; - let jlen; - let edit; - - if (typeof words === "string") { - const word = words; - words = {}; - words[word] = true; - } - - for (const word in words) { - if (words.hasOwnProperty(word)) { - for (i = 0, len = word.length + 1; i < len; i++) { - const s = [ word.substring(0, i), word.substring(i) ]; - - if (s[1]) { - edit = s[0] + s[1].substring(1); - - if (!knownOnly || self.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); - - if (!knownOnly || self.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - - if (s[1]) { - for (j = 0, jlen = self.alphabet.length; j < jlen; j++) { - // Eliminate replacement of a letter by itself - if (self.alphabet[j] !== s[1].substring(0, 1)) { - edit = s[0] + self.alphabet[j] + s[1].substring(1); - - if (!knownOnly || self.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - } - } - - if (s[1]) { - for (j = 0, jlen = self.alphabet.length; j < jlen; j++) { - edit = s[0] + self.alphabet[j] + s[1]; - - if (!knownOnly || self.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } - } - } - } - } - - return rv; - } - - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - const ed1 = edits1(word); - const ed2 = edits1(ed1, true); - - // Sort the edits based on how many different ways they were created. - const weightedCorrections = ed2; - - for (const ed1word in ed1) { - if (!self.check(ed1word)) { - continue; - } - - if (ed1word in weightedCorrections) { - weightedCorrections[ed1word] += ed1[ed1word]; - } else { - weightedCorrections[ed1word] = ed1[ed1word]; - } - } + function sorter(a, b) { + if (a[1] < b[1]) { + return -1; + } - let i; + // @todo If a and b are equally weighted, add our own weight + // based on something like the key locations on this language's default keyboard. - const sortedCorrections = []; + return 1; + } - for (i in weightedCorrections) { - if (weightedCorrections.hasOwnProperty(i)) { - sortedCorrections.push([ i, weightedCorrections[i] ]); - } - } - - function sorter(a, b) { - if (a[1] < b[1]) { - return -1; - } + sortedCorrections.sort(sorter).reverse(); - // @todo If a and b are equally weighted, add our own weight - // based on something like the key locations on this language's default keyboard. + const rv = []; - return 1; - } + let capitalizationScheme = "lowercase"; - sortedCorrections.sort(sorter).reverse(); + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { + capitalizationScheme = "capitalized"; + } - const rv = []; + let workingLimit = limit; - let capitalizationScheme = "lowercase"; + for (i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); + } - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { - capitalizationScheme = "capitalized"; - } + if ( + !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") + && rv.indexOf(sortedCorrections[i][0]) === -1) { + rv.push(sortedCorrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion, + // make sure we still return the right number of suggestions. + workingLimit++; + } + } - let workingLimit = limit; + return rv; + } - for (i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { - if ("uppercase" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); - } else if ("capitalized" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[i][0].substr(0, 1).toUpperCase() - + sortedCorrections[i][0].substr(1); - } + this.memoized[word] = { + limit, + suggestions: correct(word), + }; - if ( - !self.hasFlag(sortedCorrections[i][0], "NOSUGGEST") - && rv.indexOf(sortedCorrections[i][0]) === -1) { - rv.push(sortedCorrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion, - // make sure we still return the right number of suggestions. - workingLimit++; - } - } + return this.memoized[word].suggestions; + } - return rv; - } + private checkExact(word) { + const ruleCodes = this.dictionaryTable[word]; + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { + for (const rule of this.compoundRules) { + if (word.match(rule)) { + return true; + } + } + } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. + for (const code of ruleCodes) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", code)) { + return true; + } + } + } - this.memoized[word] = { - limit, - suggestions: correct(word), - }; + return false; + } - return this.memoized[word].suggestions; - }, - }; -})(); + private hasFlag(word, flag, wordFlags?) { + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); + } -declare function define(deps: string[], factory: () => any): void; + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } + } -define([], () => { - return { createTypo }; -}); + return false; + } +} diff --git a/yarn.lock b/yarn.lock index 682c7e9..198edbf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,32 +2,46 @@ # yarn lockfile v1 -"@types/node@^9.3.0": - version "9.3.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-9.3.0.tgz#3a129cda7c4e5df2409702626892cb4b96546dd5" +"@babel/code-frame@^7.0.0-beta.35": + version "7.0.0-beta.40" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.40.tgz#37e2b0cf7c56026b4b21d3927cadf81adec32ac6" + dependencies: + "@babel/highlight" "7.0.0-beta.40" + +"@babel/highlight@7.0.0-beta.40": + version "7.0.0-beta.40" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.40.tgz#b43d67d76bf46e1d10d227f68cddcd263786b255" + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + +"@types/jest@^22.2.0": + version "22.2.0" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-22.2.0.tgz#55ce83139f7ad1b48b414c3927746614c6963c0f" + +"@types/node@^9.4.6": + version "9.4.6" + resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.6.tgz#d8176d864ee48753d053783e4e463aec86b8d82e" + +abab@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" -acorn-dynamic-import@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" +acorn-globals@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" dependencies: - acorn "^4.0.3" - -acorn@^4.0.3: - version "4.0.13" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" + acorn "^5.0.0" -acorn@^5.0.0: +acorn@^5.0.0, acorn@^5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" -ajv-keywords@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" - ajv@^4.9.1: version "4.11.8" resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" @@ -35,7 +49,7 @@ ajv@^4.9.1: co "^4.6.0" json-stable-stringify "^1.0.1" -ajv@^5.1.5: +ajv@^5.1.0: version "5.5.2" resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" dependencies: @@ -52,10 +66,18 @@ align-text@^0.1.1, align-text@^0.1.3: longest "^1.0.1" repeat-string "^1.5.2" +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + ansi-escapes@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" +ansi-escapes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" + ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" @@ -89,6 +111,12 @@ app-root-path@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" +append-transform@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" + dependencies: + default-require-extensions "^1.0.0" + aproba@^1.0.3: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -124,6 +152,22 @@ arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + array-unique@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" @@ -132,13 +176,9 @@ array-unique@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" -asn1.js@^4.0.0: - version "4.9.2" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" asn1@~0.2.3: version "0.2.3" @@ -152,21 +192,27 @@ assert-plus@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" -assert@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - dependencies: - util "0.10.3" - assign-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + async-each@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" -async@^2.1.2, async@^2.5.0: +async-limiter@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + +async@^1.4.0: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + +async@^2.1.4: version "2.6.0" resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" dependencies: @@ -180,35 +226,182 @@ atob@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" -awesome-typescript-loader@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/awesome-typescript-loader/-/awesome-typescript-loader-3.4.1.tgz#22fa49800f0619ec18ab15383aef93b95378dea9" - dependencies: - colors "^1.1.2" - enhanced-resolve "3.3.0" - loader-utils "^1.1.0" - lodash "^4.17.4" - micromatch "^3.0.3" - mkdirp "^0.5.1" - object-assign "^4.1.1" - source-map-support "^0.4.15" - aws-sign2@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" -aws4@^1.2.1: +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + +aws4@^1.2.1, aws4@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" +babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@^6.0.0, babel-core@^6.24.1, babel-core@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.0" + debug "^2.6.8" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.7" + slash "^1.0.0" + source-map "^0.5.6" + +babel-generator@^6.18.0, babel-generator@^6.26.0: + version "6.26.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.7" + trim-right "^1.0.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-jest@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.1.tgz#ff53ebca45957347f27ff4666a31499fbb4c4ddd" + dependencies: + babel-plugin-istanbul "^4.1.5" + babel-preset-jest "^22.4.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-istanbul@^4.1.4, babel-plugin-istanbul@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" + dependencies: + find-up "^2.1.0" + istanbul-lib-instrument "^1.7.5" + test-exclude "^4.1.1" + +babel-plugin-jest-hoist@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.1.tgz#d712fe5da8b6965f3191dacddbefdbdf4fb66d63" + +babel-plugin-syntax-object-rest-spread@^6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + +babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-preset-jest@^22.4.0, babel-preset-jest@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.1.tgz#efa2e5f5334242a9457a068452d7d09735db172a" + dependencies: + babel-plugin-jest-hoist "^22.4.1" + babel-plugin-syntax-object-rest-spread "^6.13.0" + +babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.2: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.18.0, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" -base64-js@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" - base@^0.11.1: version "0.11.2" resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" @@ -227,10 +420,6 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -big.js@^3.1.3: - version "3.2.0" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" - binary-extensions@^1.0.0: version "1.11.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" @@ -241,16 +430,24 @@ block-stream@*: dependencies: inherits "~2.0.0" -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - boom@2.x.x: version "2.10.1" resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" dependencies: hoek "2.x.x" +boom@4.x.x: + version "4.3.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" + dependencies: + hoek "4.x.x" + +boom@5.x.x: + version "5.2.0" + resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" + dependencies: + hoek "4.x.x" + brace-expansion@^1.1.7: version "1.1.8" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" @@ -266,9 +463,9 @@ braces@^1.8.2: preserve "^0.2.0" repeat-element "^1.1.2" -braces@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.0.tgz#a46941cb5fb492156b3d6a656e06c35364e3e66e" +braces@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" dependencies: arr-flatten "^1.1.0" array-unique "^0.3.2" @@ -276,88 +473,33 @@ braces@^2.3.0: extend-shallow "^2.0.1" fill-range "^4.0.0" isobject "^3.0.1" + kind-of "^6.0.2" repeat-element "^1.1.2" snapdragon "^0.8.1" snapdragon-node "^2.0.1" split-string "^3.0.2" to-regex "^3.0.1" -brorand@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - -browserify-rsa@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - dependencies: - bn.js "^4.1.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" - dependencies: - bn.js "^4.1.1" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.2" - elliptic "^6.0.0" - inherits "^2.0.1" - parse-asn1 "^5.0.0" +browser-process-hrtime@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" +browser-resolve@^1.11.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" dependencies: - pako "~1.0.5" - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + resolve "1.1.7" -buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" +bser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" + node-int64 "^0.4.0" builtin-modules@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - cache-base@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" @@ -372,6 +514,10 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + camelcase@^1.0.2: version "1.2.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" @@ -401,7 +547,7 @@ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.1, chalk@^2.1.0: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: version "2.3.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" dependencies: @@ -409,7 +555,7 @@ chalk@^2.0.1, chalk@^2.1.0: escape-string-regexp "^1.0.5" supports-color "^4.0.0" -chokidar@^1.7.0: +chokidar@^1.6.0: version "1.7.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" dependencies: @@ -428,13 +574,6 @@ ci-info@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - class-utils@^0.3.5: version "0.3.6" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" @@ -469,14 +608,34 @@ cliui@^2.1.0: right-align "^0.1.1" wordwrap "0.0.2" -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" +cliui@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" + string-width "^2.1.1" + strip-ansi "^4.0.0" wrap-ansi "^2.0.0" +clone-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" + +clone-stats@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" + +clone@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" + +cloneable-readable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" + dependencies: + inherits "^2.0.1" + process-nextick-args "^1.0.6" + through2 "^2.0.1" + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -502,11 +661,13 @@ color-name@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" -colors@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" +combined-stream@1.0.6, combined-stream@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" + dependencies: + delayed-stream "~1.0.0" -combined-stream@^1.0.5, combined-stream@~1.0.5: +combined-stream@~1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" dependencies: @@ -516,6 +677,10 @@ commander@^2.11.0, commander@^2.9.0: version "2.13.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" +compare-versions@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.1.0.tgz#43310256a5c555aaed4193c04d8f154cf9c6efd5" + component-emitter@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" @@ -524,24 +689,26 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - dependencies: - date-now "^0.1.4" - console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" +content-type-parser@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" + +convert-source-map@^1.4.0, convert-source-map@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" +core-js@^2.4.0, core-js@^2.5.0: + version "2.5.3" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" + core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -555,32 +722,21 @@ cosmiconfig@^4.0.0: parse-json "^4.0.0" require-from-string "^2.0.1" -create-ecdh@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" - dependencies: - bn.js "^4.1.0" - elliptic "^6.0.0" - -create-hash@^1.1.0, create-hash@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - ripemd160 "^2.0.0" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: - version "1.1.6" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" +cpx@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" + babel-runtime "^6.9.2" + chokidar "^1.6.0" + duplexer "^0.1.1" + glob "^7.0.5" + glob2base "^0.0.12" + minimatch "^3.0.2" + mkdirp "^0.5.1" + resolve "^1.1.7" safe-buffer "^5.0.1" - sha.js "^2.4.8" + shell-quote "^1.6.1" + subarg "^1.0.0" cross-spawn@^5.0.1: version "5.1.0" @@ -596,27 +752,21 @@ cryptiles@2.x.x: dependencies: boom "2.x.x" -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" +cryptiles@3.x.x: + version "3.1.2" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" + boom "5.x.x" -d@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": + version "0.3.2" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" + +"cssstyle@>= 0.2.37 < 0.3.0": + version "0.2.37" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" dependencies: - es5-ext "^0.10.9" + cssom "0.3.x" dashdash@^1.12.0: version "1.14.1" @@ -628,11 +778,7 @@ date-fns@^1.27.2: version "1.29.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - -debug@^2.2.0, debug@^2.3.3: +debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" dependencies: @@ -660,6 +806,23 @@ deep-extend@~0.4.0: version "0.4.2" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +default-require-extensions@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" + dependencies: + strip-bom "^2.0.0" + +define-properties@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" @@ -672,6 +835,13 @@ define-property@^1.0.0: dependencies: is-descriptor "^1.0.0" +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -680,28 +850,33 @@ delegates@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" -des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" + repeating "^2.0.0" detect-libc@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" -diffie-hellman@^5.0.0: - version "5.0.2" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + +diff@^3.2.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + +domexception@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" + webidl-conversions "^4.0.2" -domain-browser@^1.1.1: - version "1.1.7" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" ecc-jsbn@~0.1.1: version "0.1.1" @@ -713,149 +888,66 @@ elegant-spinner@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" -elliptic@^6.0.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" - dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" - hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" - -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - -enhanced-resolve@3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz#950964ecc7f0332a42321b673b38dc8ff15535b3" - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.4.0" - object-assign "^4.0.1" - tapable "^0.2.5" - -enhanced-resolve@^3.4.0: - version "3.4.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.4.0" - object-assign "^4.0.1" - tapable "^0.2.7" - -errno@^0.1.3: - version "0.1.6" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" - dependencies: - prr "~1.0.1" - error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" dependencies: is-arrayish "^0.2.1" -es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.38" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.38.tgz#fa7d40d65bbc9bb8a67e1d3f9cc656a00530eed3" - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.1" - -es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-map@^0.1.3: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-set "~0.1.5" - es6-symbol "~3.1.1" - event-emitter "~0.3.5" - -es6-set@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-symbol "3.1.1" - event-emitter "~0.3.5" - -es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" +es-abstract@^1.5.1: + version "1.10.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" dependencies: - d "1" - es5-ext "~0.10.14" + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" -es6-weak-map@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" dependencies: - d "1" - es5-ext "^0.10.14" - es6-iterator "^2.0.1" - es6-symbol "^3.1.1" + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" -escope@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" +escodegen@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" dependencies: - es6-map "^0.1.3" - es6-weak-map "^2.0.1" - esrecurse "^4.1.0" - estraverse "^4.1.1" + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +esprima@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" esprima@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" -esrecurse@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" - dependencies: - estraverse "^4.1.0" - object-assign "^4.0.1" - -estraverse@^4.1.0, estraverse@^4.1.1: +estraverse@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" -event-emitter@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - dependencies: - d "1" - es5-ext "~0.10.14" - -events@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" +exec-sh@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" + merge "^1.1.3" execa@^0.7.0: version "0.7.0" @@ -885,6 +977,10 @@ exit-hook@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + expand-brackets@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" @@ -909,20 +1005,31 @@ expand-range@^1.8.1: dependencies: fill-range "^2.1.0" +expect@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.0.tgz#371edf1ae15b83b5bf5ec34b42f1584660a36c16" + dependencies: + ansi-styles "^3.2.0" + jest-diff "^22.4.0" + jest-get-type "^22.1.0" + jest-matcher-utils "^22.4.0" + jest-message-util "^22.4.0" + jest-regex-util "^22.1.0" + extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" dependencies: is-extendable "^0.1.0" -extend-shallow@^3.0.0: +extend-shallow@^3.0.0, extend-shallow@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" dependencies: assign-symbols "^1.0.0" is-extendable "^1.0.1" -extend@~3.0.0: +extend@~3.0.0, extend@~3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" @@ -932,7 +1039,7 @@ extglob@^0.3.1: dependencies: is-extglob "^1.0.0" -extglob@^2.0.2: +extglob@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" dependencies: @@ -957,6 +1064,16 @@ fast-json-stable-stringify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +fb-watchman@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + dependencies: + bser "^2.0.0" + figures@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" @@ -968,6 +1085,13 @@ filename-regex@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" +fileset@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" + dependencies: + glob "^7.0.3" + minimatch "^3.0.3" + fill-range@^2.1.0: version "2.2.3" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" @@ -987,11 +1111,22 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" +find-index@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" + find-parent-dir@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" -find-up@^2.0.0: +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" dependencies: @@ -1007,6 +1142,10 @@ for-own@^0.1.4: dependencies: for-in "^1.0.1" +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -1019,17 +1158,33 @@ form-data@~2.1.1: combined-stream "^1.0.5" mime-types "^2.1.12" +form-data@~2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" + dependencies: + asynckit "^0.4.0" + combined-stream "1.0.6" + mime-types "^2.1.12" + fragment-cache@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" dependencies: map-cache "^0.2.2" +fs-extra@4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" -fsevents@^1.0.0: +fsevents@^1.0.0, fsevents@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" dependencies: @@ -1053,6 +1208,10 @@ fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: mkdirp ">=0.5 0" rimraf "2" +function-bind@^1.0.2, function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + gauge@~2.7.3: version "2.7.4" resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" @@ -1101,7 +1260,13 @@ glob-parent@^2.0.0: dependencies: is-glob "^2.0.0" -glob@^7.0.5: +glob2base@^0.0.12: + version "0.0.12" + resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" + dependencies: + find-index "^0.1.1" + +glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" dependencies: @@ -1112,14 +1277,44 @@ glob@^7.0.5: once "^1.3.0" path-is-absolute "^1.0.0" -graceful-fs@^4.1.2: +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + +google-closure-compiler@20180101.0.0: + version "20180101.0.0" + resolved "https://registry.yarnpkg.com/google-closure-compiler/-/google-closure-compiler-20180101.0.0.tgz#d1d817dc60e008be94b61be7073aa63e92978e64" + dependencies: + chalk "^1.0.0" + vinyl "^2.0.1" + vinyl-sourcemaps-apply "^0.2.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + +handlebars@^4.0.3: + version "4.0.11" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" + dependencies: + async "^1.4.0" + optimist "^0.6.1" + source-map "^0.4.4" + optionalDependencies: + uglify-js "^2.6" + har-schema@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + har-validator@~4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" @@ -1127,12 +1322,23 @@ har-validator@~4.2.1: ajv "^4.9.1" har-schema "^1.0.5" +har-validator@~5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" + dependencies: + ajv "^5.1.0" + har-schema "^2.0.0" + has-ansi@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" dependencies: ansi-regex "^2.0.0" +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + has-flag@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" @@ -1168,25 +1374,11 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -hash-base@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" - dependencies: - inherits "^2.0.1" - -hash-base@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.0" + function-bind "^1.0.2" hawk@3.1.3, hawk@~3.1.3: version "3.1.3" @@ -1197,22 +1389,40 @@ hawk@3.1.3, hawk@~3.1.3: hoek "2.x.x" sntp "1.x.x" -hmac-drbg@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" +hawk@~6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" + boom "4.x.x" + cryptiles "3.x.x" + hoek "4.x.x" + sntp "2.x.x" hoek@2.x.x: version "2.16.3" resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" +hoek@4.x.x: + version "4.2.1" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + hosted-git-info@^2.1.4: version "2.5.0" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + dependencies: + whatwg-encoding "^1.0.1" + http-signature@~1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" @@ -1221,9 +1431,13 @@ http-signature@~1.1.0: jsprim "^1.2.2" sshpk "^1.7.0" -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" husky@^0.14.3: version "0.14.3" @@ -1233,9 +1447,20 @@ husky@^0.14.3: normalize-path "^1.0.0" strip-indent "^2.0.0" -ieee754@^1.1.4: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" +iconv-lite@0.4.19: + version "0.4.19" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" + +import-local@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" + dependencies: + pkg-dir "^2.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" indent-string@^2.1.0: version "2.1.0" @@ -1247,10 +1472,6 @@ indent-string@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" -indexof@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -1258,21 +1479,19 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: +inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" -interpret@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" +invariant@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688" + dependencies: + loose-envify "^1.0.0" invert-kv@^1.0.0: version "1.0.0" @@ -1310,6 +1529,10 @@ is-builtin-module@^1.0.0: dependencies: builtin-modules "^1.0.0" +is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + is-ci@^1.0.10: version "1.1.0" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" @@ -1328,6 +1551,10 @@ is-data-descriptor@^1.0.0: dependencies: kind-of "^6.0.0" +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + is-descriptor@^0.1.0: version "0.1.6" resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" @@ -1336,7 +1563,7 @@ is-descriptor@^0.1.0: is-data-descriptor "^0.1.4" kind-of "^5.0.0" -is-descriptor@^1.0.0: +is-descriptor@^1.0.0, is-descriptor@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" dependencies: @@ -1392,6 +1619,10 @@ is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" +is-generator-fn@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" + is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" @@ -1416,6 +1647,10 @@ is-number@^3.0.0: dependencies: kind-of "^3.0.2" +is-number@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + is-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" @@ -1426,11 +1661,11 @@ is-observable@^0.2.0: dependencies: symbol-observable "^0.2.2" -is-odd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-1.0.0.tgz#3b8a932eb028b3775c39bb09e91767accdb69088" +is-odd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" dependencies: - is-number "^3.0.0" + is-number "^4.0.0" is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" @@ -1450,6 +1685,12 @@ is-promise@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + is-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" @@ -1458,11 +1699,23 @@ is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + +isarray@1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -1484,10 +1737,310 @@ isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" +istanbul-api@^1.1.14: + version "1.3.0" + resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.0.tgz#5018c1141bb9a2a326d1a15a089f4ef54b9c4d4a" + dependencies: + async "^2.1.4" + compare-versions "^3.1.0" + fileset "^2.0.2" + istanbul-lib-coverage "^1.2.0" + istanbul-lib-hook "^1.2.0" + istanbul-lib-instrument "^1.10.0" + istanbul-lib-report "^1.1.4" + istanbul-lib-source-maps "^1.2.4" + istanbul-reports "^1.2.0" + js-yaml "^3.7.0" + mkdirp "^0.5.1" + once "^1.4.0" + +istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" + +istanbul-lib-hook@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" + dependencies: + append-transform "^0.4.0" + +istanbul-lib-instrument@^1.10.0, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.0.tgz#47f20bfed9b9cbbc45417d3c9aff37bfbacbd281" + dependencies: + babel-generator "^6.18.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.18.0" + istanbul-lib-coverage "^1.2.0" + semver "^5.3.0" + +istanbul-lib-report@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" + dependencies: + istanbul-lib-coverage "^1.2.0" + mkdirp "^0.5.1" + path-parse "^1.0.5" + supports-color "^3.1.2" + +istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" + dependencies: + debug "^3.1.0" + istanbul-lib-coverage "^1.2.0" + mkdirp "^0.5.1" + rimraf "^2.6.1" + source-map "^0.5.3" + +istanbul-reports@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.2.0.tgz#59a72413daf809b9c3203241c31abb9a48ab1bf5" + dependencies: + handlebars "^4.0.3" + +jest-changed-files@^22.2.0: + version "22.2.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.2.0.tgz#517610c4a8ca0925bdc88b0ca53bd678aa8d019e" + dependencies: + throat "^4.0.0" + +jest-cli@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.2.tgz#e6546dc651e13d164481aa3e76e53ac4f4edab06" + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + graceful-fs "^4.1.11" + import-local "^1.0.0" + is-ci "^1.0.10" + istanbul-api "^1.1.14" + istanbul-lib-coverage "^1.1.1" + istanbul-lib-instrument "^1.8.0" + istanbul-lib-source-maps "^1.2.1" + jest-changed-files "^22.2.0" + jest-config "^22.4.2" + jest-environment-jsdom "^22.4.1" + jest-get-type "^22.1.0" + jest-haste-map "^22.4.2" + jest-message-util "^22.4.0" + jest-regex-util "^22.1.0" + jest-resolve-dependencies "^22.1.0" + jest-runner "^22.4.2" + jest-runtime "^22.4.2" + jest-snapshot "^22.4.0" + jest-util "^22.4.1" + jest-validate "^22.4.2" + jest-worker "^22.2.2" + micromatch "^2.3.11" + node-notifier "^5.2.1" + realpath-native "^1.0.0" + rimraf "^2.5.4" + slash "^1.0.0" + string-length "^2.0.0" + strip-ansi "^4.0.0" + which "^1.2.12" + yargs "^10.0.3" + +jest-config@^22.4.0, jest-config@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.2.tgz#580ba5819bf81a5e48f4fd470e8b81834f45c855" + dependencies: + chalk "^2.0.1" + glob "^7.1.1" + jest-environment-jsdom "^22.4.1" + jest-environment-node "^22.4.1" + jest-get-type "^22.1.0" + jest-jasmine2 "^22.4.2" + jest-regex-util "^22.1.0" + jest-resolve "^22.4.2" + jest-util "^22.4.1" + jest-validate "^22.4.2" + pretty-format "^22.4.0" + +jest-diff@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.0.tgz#384c2b78519ca44ca126382df53f134289232525" + dependencies: + chalk "^2.0.1" + diff "^3.2.0" + jest-get-type "^22.1.0" + pretty-format "^22.4.0" + +jest-docblock@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.0.tgz#dbf1877e2550070cfc4d9b07a55775a0483159b8" + dependencies: + detect-newline "^2.1.0" + +jest-environment-jsdom@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.1.tgz#754f408872441740100d3917e5ec40c74de6447f" + dependencies: + jest-mock "^22.2.0" + jest-util "^22.4.1" + jsdom "^11.5.1" + +jest-environment-node@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.1.tgz#418850eb654596b8d6e36c2021cbedbc23df8e16" + dependencies: + jest-mock "^22.2.0" + jest-util "^22.4.1" + jest-get-type@^21.2.0: version "21.2.0" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" +jest-get-type@^22.1.0: + version "22.1.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.1.0.tgz#4e90af298ed6181edc85d2da500dbd2753e0d5a9" + +jest-haste-map@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.2.tgz#a90178e66146d4378bb076345a949071f3b015b4" + dependencies: + fb-watchman "^2.0.0" + graceful-fs "^4.1.11" + jest-docblock "^22.4.0" + jest-serializer "^22.4.0" + jest-worker "^22.2.2" + micromatch "^2.3.11" + sane "^2.0.0" + +jest-jasmine2@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.2.tgz#dfd3d259579ed6f52510d8f1ab692808f0d40691" + dependencies: + chalk "^2.0.1" + co "^4.6.0" + expect "^22.4.0" + graceful-fs "^4.1.11" + is-generator-fn "^1.0.0" + jest-diff "^22.4.0" + jest-matcher-utils "^22.4.0" + jest-message-util "^22.4.0" + jest-snapshot "^22.4.0" + jest-util "^22.4.1" + source-map-support "^0.5.0" + +jest-leak-detector@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.0.tgz#64da77f05b001c96d2062226e079f89989c4aa2f" + dependencies: + pretty-format "^22.4.0" + +jest-matcher-utils@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.0.tgz#d55f5faf2270462736bdf7c7485ee931c9d4b6a1" + dependencies: + chalk "^2.0.1" + jest-get-type "^22.1.0" + pretty-format "^22.4.0" + +jest-message-util@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.0.tgz#e3d861df16d2fee60cb2bc8feac2188a42579642" + dependencies: + "@babel/code-frame" "^7.0.0-beta.35" + chalk "^2.0.1" + micromatch "^2.3.11" + slash "^1.0.0" + stack-utils "^1.0.1" + +jest-mock@^22.2.0: + version "22.2.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.2.0.tgz#444b3f9488a7473adae09bc8a77294afded397a7" + +jest-regex-util@^22.1.0: + version "22.1.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.1.0.tgz#5daf2fe270074b6da63e5d85f1c9acc866768f53" + +jest-resolve-dependencies@^22.1.0: + version "22.1.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.1.0.tgz#340e4139fb13315cd43abc054e6c06136be51e31" + dependencies: + jest-regex-util "^22.1.0" + +jest-resolve@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.2.tgz#25d88aa4147462c9c1c6a1ba16250d3794c24d00" + dependencies: + browser-resolve "^1.11.2" + chalk "^2.0.1" + +jest-runner@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.2.tgz#19390ea9d99f768973e16f95a1efa351c0017e87" + dependencies: + exit "^0.1.2" + jest-config "^22.4.2" + jest-docblock "^22.4.0" + jest-haste-map "^22.4.2" + jest-jasmine2 "^22.4.2" + jest-leak-detector "^22.4.0" + jest-message-util "^22.4.0" + jest-runtime "^22.4.2" + jest-util "^22.4.1" + jest-worker "^22.2.2" + throat "^4.0.0" + +jest-runtime@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.2.tgz#0de0444f65ce15ee4f2e0055133fc7c17b9168f3" + dependencies: + babel-core "^6.0.0" + babel-jest "^22.4.1" + babel-plugin-istanbul "^4.1.5" + chalk "^2.0.1" + convert-source-map "^1.4.0" + exit "^0.1.2" + graceful-fs "^4.1.11" + jest-config "^22.4.2" + jest-haste-map "^22.4.2" + jest-regex-util "^22.1.0" + jest-resolve "^22.4.2" + jest-util "^22.4.1" + jest-validate "^22.4.2" + json-stable-stringify "^1.0.1" + micromatch "^2.3.11" + realpath-native "^1.0.0" + slash "^1.0.0" + strip-bom "3.0.0" + write-file-atomic "^2.1.0" + yargs "^10.0.3" + +jest-serializer@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.0.tgz#b5d145b98c4b0d2c20ab686609adbb81fe23b566" + +jest-snapshot@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.0.tgz#03d3ce63f8fa7352388afc6a3c8b5ccc3a180ed7" + dependencies: + chalk "^2.0.1" + jest-diff "^22.4.0" + jest-matcher-utils "^22.4.0" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^22.4.0" + +jest-util@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.1.tgz#dd17c3bdb067f8e90591563ec0c42bf847dc249f" + dependencies: + callsites "^2.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.11" + is-ci "^1.0.10" + jest-message-util "^22.4.0" + mkdirp "^0.5.1" + source-map "^0.6.0" + jest-validate@^21.1.0: version "21.2.1" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" @@ -1497,7 +2050,34 @@ jest-validate@^21.1.0: leven "^2.1.0" pretty-format "^21.2.1" -js-yaml@^3.9.0: +jest-validate@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.2.tgz#e789a4e056173bf97fe797a2df2d52105c57d4f4" + dependencies: + chalk "^2.0.1" + jest-config "^22.4.2" + jest-get-type "^22.1.0" + leven "^2.1.0" + pretty-format "^22.4.0" + +jest-worker@^22.2.2: + version "22.2.2" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.2.tgz#c1f5dc39976884b81f68ec50cb8532b2cbab3390" + dependencies: + merge-stream "^1.0.1" + +jest@^22.4.2: + version "22.4.2" + resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.2.tgz#34012834a49bf1bdd3bc783850ab44e4499afc20" + dependencies: + import-local "^1.0.0" + jest-cli "^22.4.2" + +js-tokens@^3.0.0, js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + +js-yaml@^3.7.0, js-yaml@^3.9.0: version "3.10.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" dependencies: @@ -1508,9 +2088,40 @@ jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" -json-loader@^0.5.4: - version "0.5.7" - resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" +jsdom@^11.5.1: + version "11.6.2" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.2.tgz#25d1ef332d48adf77fc5221fe2619967923f16bb" + dependencies: + abab "^1.0.4" + acorn "^5.3.0" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + browser-process-hrtime "^0.1.2" + content-type-parser "^1.0.2" + cssom ">= 0.3.2 < 0.4.0" + cssstyle ">= 0.2.37 < 0.3.0" + domexception "^1.0.0" + escodegen "^1.9.0" + html-encoding-sniffer "^1.0.2" + left-pad "^1.2.0" + nwmatcher "^1.4.3" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.83.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.3" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-url "^6.4.0" + ws "^4.0.0" + xml-name-validator "^3.0.0" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" json-parse-better-errors@^1.0.1: version "1.0.1" @@ -1534,10 +2145,16 @@ json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" -json5@^0.5.0, json5@^0.5.1: +json5@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + optionalDependencies: + graceful-fs "^4.1.6" + jsonify@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" @@ -1563,7 +2180,7 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0, kind-of@^5.0.2: +kind-of@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" @@ -1587,10 +2204,21 @@ lcid@^1.0.0: dependencies: invert-kv "^1.0.0" +left-pad@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" + leven@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + lint-staged@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-6.0.1.tgz#855f2993ab4a265430e2fd9828427e648d65e6b4" @@ -1664,35 +2292,15 @@ listr@^0.13.0: stream-to-observable "^0.2.0" strip-ansi "^3.0.1" -load-json-file@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" dependencies: graceful-fs "^4.1.2" parse-json "^2.2.0" pify "^2.0.0" - strip-bom "^3.0.0" - -loader-runner@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" - -loader-utils@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" - dependencies: - big.js "^3.1.3" - emojis-list "^2.0.0" - json5 "^0.5.0" - -loader-utils@~0.2.2: - version "0.2.17" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" - dependencies: - big.js "^3.1.3" - emojis-list "^2.0.0" - json5 "^0.5.0" - object-assign "^4.0.1" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" locate-path@^2.0.0: version "2.0.0" @@ -1701,7 +2309,11 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" -lodash@^4.14.0, lodash@^4.17.4: +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + +lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4: version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" @@ -1728,6 +2340,12 @@ longest@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" +loose-envify@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + dependencies: + js-tokens "^3.0.0" + lru-cache@^4.0.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" @@ -1735,6 +2353,12 @@ lru-cache@^4.0.1: pseudomap "^1.0.2" yallist "^2.1.2" +makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + dependencies: + tmpl "1.0.x" + map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" @@ -1745,27 +2369,23 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -md5.js@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - mem@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" dependencies: mimic-fn "^1.0.0" -memory-fs@^0.4.0, memory-fs@~0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" +merge-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" dependencies: - errno "^0.1.3" readable-stream "^2.0.1" -micromatch@^2.1.5: +merge@^1.1.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" + +micromatch@^2.1.5, micromatch@^2.3.11: version "2.3.11" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" dependencies: @@ -1783,36 +2403,29 @@ micromatch@^2.1.5: parse-glob "^3.0.4" regex-cache "^0.4.2" -micromatch@^3.0.3: - version "3.1.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.5.tgz#d05e168c206472dfbca985bfef4f57797b4cd4ba" +micromatch@^3.1.8: + version "3.1.9" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" - braces "^2.3.0" - define-property "^1.0.0" - extend-shallow "^2.0.1" - extglob "^2.0.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" fragment-cache "^0.2.1" - kind-of "^6.0.0" - nanomatch "^1.2.5" + kind-of "^6.0.2" + nanomatch "^1.2.9" object.pick "^1.3.0" regex-not "^1.0.0" snapdragon "^0.8.1" - to-regex "^3.0.1" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" + to-regex "^3.0.1" mime-db@~1.30.0: version "1.30.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" -mime-types@^2.1.12, mime-types@~2.1.7: +mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: version "2.1.17" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" dependencies: @@ -1822,25 +2435,17 @@ mimic-fn@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" -minimalistic-assert@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" - -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - -minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: brace-expansion "^1.1.7" -minimist@0.0.8: +minimist@0.0.8, minimist@~0.0.1: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" -minimist@^1.2.0: +minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" @@ -1851,7 +2456,7 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" -"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: +"mkdirp@>=0.5 0", mkdirp@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: @@ -1865,49 +2470,39 @@ nan@^2.3.0: version "2.8.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" -nanomatch@^1.2.5: - version "1.2.7" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.7.tgz#53cd4aa109ff68b7f869591fdc9d10daeeea3e79" +nanomatch@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" - define-property "^1.0.0" - extend-shallow "^2.0.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" fragment-cache "^0.2.1" - is-odd "^1.0.0" - kind-of "^5.0.2" + is-odd "^2.0.0" + is-windows "^1.0.2" + kind-of "^6.0.2" object.pick "^1.3.0" regex-not "^1.0.0" snapdragon "^0.8.1" to-regex "^3.0.1" -node-libs-browser@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" - dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^1.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.0" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.10.3" - vm-browserify "0.0.4" +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + +node-notifier@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" + dependencies: + growly "^1.3.0" + semver "^5.4.1" + shellwords "^0.1.1" + which "^1.3.0" node-pre-gyp@^0.6.39: version "0.6.39" @@ -1984,11 +2579,15 @@ number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" -oauth-sign@~0.8.1: +nwmatcher@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" + +oauth-sign@~0.8.1, oauth-sign@~0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" -object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -2000,12 +2599,23 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" +object-keys@^1.0.8: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" dependencies: isobject "^3.0.0" +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + object.omit@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -2019,7 +2629,7 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -once@^1.3.0, once@^1.3.3: +once@^1.3.0, once@^1.3.3, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: @@ -2029,6 +2639,24 @@ onetime@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + ora@^0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" @@ -2038,10 +2666,6 @@ ora@^0.2.3: cli-spinners "^0.1.2" object-assign "^4.0.1" -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -2054,7 +2678,7 @@ os-locale@^2.0.0: lcid "^1.0.0" mem "^1.1.0" -os-tmpdir@^1.0.0: +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -2089,20 +2713,6 @@ p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" -pako@~1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" - -parse-asn1@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" - dependencies: - asn1.js "^4.0.0" - browserify-aes "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" @@ -2125,19 +2735,25 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" -path-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" -path-is-absolute@^1.0.0: +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -2149,26 +2765,26 @@ path-key@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" -path-type@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" - dependencies: - pify "^2.0.0" +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" -pbkdf2@^3.0.3: - version "3.0.14" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" performance-now@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + pify@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -2177,10 +2793,34 @@ pify@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + dependencies: + find-up "^2.1.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + posix-character-classes@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + preserve@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" @@ -2196,51 +2836,40 @@ pretty-format@^21.2.1: ansi-regex "^3.0.0" ansi-styles "^3.2.0" -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" +pretty-format@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.0.tgz#237b1f7e1c50ed03bc65c03ccc29d7c8bb7beb94" + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" +private@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" -prr@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" +process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" -public-encrypt@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - -punycode@^1.2.4, punycode@^1.4.1: +punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" +punycode@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" + qs@~6.4.0: version "6.4.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" +qs@~6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" randomatic@^1.1.3: version "1.1.7" @@ -2249,19 +2878,6 @@ randomatic@^1.1.3: is-number "^3.0.0" kind-of "^4.0.0" -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - rc@^1.1.7: version "1.2.4" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3" @@ -2271,22 +2887,22 @@ rc@^1.1.7: minimist "^1.2.0" strip-json-comments "~2.0.1" -read-pkg-up@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" dependencies: - find-up "^2.0.0" - read-pkg "^2.0.0" + find-up "^1.0.0" + read-pkg "^1.0.0" -read-pkg@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" dependencies: - load-json-file "^2.0.0" + load-json-file "^1.0.0" normalize-package-data "^2.3.2" - path-type "^2.0.0" + path-type "^1.0.0" -readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.3.3: +readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: version "2.3.3" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" dependencies: @@ -2307,6 +2923,16 @@ readdirp@^2.0.0: readable-stream "^2.0.2" set-immediate-shim "^1.0.1" +realpath-native@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" + dependencies: + util.promisify "^1.0.0" + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + regex-cache@^0.4.2: version "0.4.4" resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" @@ -2337,6 +2963,24 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" +replace-ext@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" + +request-promise-core@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" + dependencies: + lodash "^4.13.1" + +request-promise-native@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" + dependencies: + request-promise-core "1.1.1" + stealthy-require "^1.1.0" + tough-cookie ">=2.3.3" + request@2.81.0: version "2.81.0" resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" @@ -2364,6 +3008,33 @@ request@2.81.0: tunnel-agent "^0.6.0" uuid "^3.0.0" +request@^2.83.0: + version "2.83.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.6.0" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.1" + forever-agent "~0.6.1" + form-data "~2.3.1" + har-validator "~5.0.3" + hawk "~6.0.2" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.17" + oauth-sign "~0.8.2" + performance-now "^2.1.0" + qs "~6.5.1" + safe-buffer "^5.1.1" + stringstream "~0.0.5" + tough-cookie "~2.3.3" + tunnel-agent "^0.6.0" + uuid "^3.1.0" + require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -2376,10 +3047,30 @@ require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + dependencies: + resolve-from "^3.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + +resolve@^1.1.7: + version "1.5.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" + dependencies: + path-parse "^1.0.5" + restore-cursor@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" @@ -2393,30 +3084,41 @@ right-align@^0.1.1: dependencies: align-text "^0.1.1" -rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: +rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: version "2.6.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" dependencies: glob "^7.0.5" -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" - dependencies: - hash-base "^2.0.0" - inherits "^2.0.1" - rxjs@^5.4.2: version "5.5.6" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.6.tgz#e31fb96d6fd2ff1fd84bcea8ae9c02d007179c02" dependencies: symbol-observable "1.0.1" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" -"semver@2 || 3 || 4 || 5", semver@^5.3.0: +sane@^2.0.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/sane/-/sane-2.4.1.tgz#29f991208cf28636720efdc584293e7fd66663a5" + dependencies: + anymatch "^1.3.0" + exec-sh "^0.2.0" + fb-watchman "^2.0.0" + minimatch "^3.0.2" + minimist "^1.1.1" + walker "~1.0.5" + watch "~0.18.0" + optionalDependencies: + fsevents "^1.1.1" + +sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: version "5.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" @@ -2452,17 +3154,6 @@ set-value@^2.0.0: is-plain-object "^2.0.3" split-string "^3.0.1" -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.10" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz#b1fde5cd7d11a5626638a07c604ab909cfa31f9b" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -2473,10 +3164,27 @@ shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" -signal-exit@^3.0.0: +shell-quote@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + +signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + slice-ansi@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" @@ -2514,17 +3222,11 @@ sntp@1.x.x: dependencies: hoek "2.x.x" -source-list-map@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" - -source-map-loader@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.2.3.tgz#d4b0c8cd47d54edce3e6bfa0f523f452b5b0e521" +sntp@2.x.x: + version "2.1.0" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" dependencies: - async "^2.5.0" - loader-utils "~0.2.2" - source-map "~0.6.1" + hoek "4.x.x" source-map-resolve@^0.5.0: version "0.5.1" @@ -2542,15 +3244,27 @@ source-map-support@^0.4.15: dependencies: source-map "^0.5.6" +source-map-support@^0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76" + dependencies: + source-map "^0.6.0" + source-map-url@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" -source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: +source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" -source-map@~0.6.1: +source-map@^0.6.0, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" @@ -2592,6 +3306,10 @@ sshpk@^1.7.0: jsbn "~0.1.0" tweetnacl "~0.14.0" +stack-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" + staged-git-files@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" @@ -2603,22 +3321,9 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" -stream-browserify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-http@^2.7.2: - version "2.8.0" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.0.tgz#fd86546dac9b1c91aff8fc5d287b98fafb41bc10" - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.3.3" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" +stealthy-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" stream-to-observable@^0.2.0: version "0.2.0" @@ -2626,6 +3331,13 @@ stream-to-observable@^0.2.0: dependencies: any-observable "^0.2.0" +string-length@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" + dependencies: + astral-regex "^1.0.0" + strip-ansi "^4.0.0" + string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" @@ -2634,14 +3346,14 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -string-width@^2.0.0: +string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" dependencies: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string_decoder@^1.0.0, string_decoder@~1.0.3: +string_decoder@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" dependencies: @@ -2655,7 +3367,7 @@ stringify-object@^3.2.0: is-obj "^1.0.1" is-regexp "^1.0.0" -stringstream@~0.0.4: +stringstream@~0.0.4, stringstream@~0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" @@ -2671,10 +3383,16 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-bom@^3.0.0: +strip-bom@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" @@ -2687,11 +3405,23 @@ strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" +subarg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + dependencies: + minimist "^1.1.0" + supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" -supports-color@^4.0.0, supports-color@^4.2.1: +supports-color@^3.1.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + dependencies: + has-flag "^1.0.0" + +supports-color@^4.0.0: version "4.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" dependencies: @@ -2705,9 +3435,9 @@ symbol-observable@^0.2.2: version "0.2.4" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" -tapable@^0.2.5, tapable@^0.2.7: - version "0.2.8" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" +symbol-tree@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" tar-pack@^3.4.0: version "3.4.1" @@ -2730,15 +3460,34 @@ tar@^2.2.1: fstream "^1.0.2" inherits "2" -timers-browserify@^2.0.4: - version "2.0.5" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.5.tgz#04878fb12a155a159c9d1e59faa1f77bf4ecc44c" +test-exclude@^4.1.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" dependencies: - setimmediate "^1.0.4" + arrify "^1.0.1" + micromatch "^3.1.8" + object-assign "^4.1.0" + read-pkg-up "^1.0.1" + require-main-filename "^1.0.1" -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" +throat@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" + +through2@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" + dependencies: + readable-stream "^2.1.5" + xtend "~4.0.1" + +tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" to-object-path@^0.3.0: version "0.3.0" @@ -2761,15 +3510,35 @@ to-regex@^3.0.1: extend-shallow "^2.0.1" regex-not "^1.0.0" -tough-cookie@~2.3.0: +tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" dependencies: punycode "^1.4.1" -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" +tr46@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + dependencies: + punycode "^2.1.0" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +ts-jest@^22.4.1: + version "22.4.1" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-22.4.1.tgz#69defb2042d689cff9b4244365ef638ecd35f706" + dependencies: + babel-core "^6.24.1" + babel-plugin-istanbul "^4.1.4" + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-preset-jest "^22.4.0" + cpx "^1.5.0" + fs-extra "4.0.3" + jest-config "^22.4.0" + pkg-dir "^2.0.0" + yargs "^11.0.0" tunnel-agent@^0.6.0: version "0.6.0" @@ -2781,11 +3550,17 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" -typescript@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" -uglify-js@^2.8.29: +typescript@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.4.1.tgz#c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc" + +uglify-js@^2.6: version "2.8.29" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" dependencies: @@ -2798,14 +3573,6 @@ uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" -uglifyjs-webpack-plugin@^0.4.6: - version "0.4.6" - resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" - dependencies: - source-map "^0.5.6" - uglify-js "^2.8.29" - webpack-sources "^1.0.1" - uid-number@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" @@ -2819,6 +3586,10 @@ union-value@^1.0.0: is-extendable "^0.1.1" set-value "^0.4.3" +universalify@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" + unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" @@ -2830,13 +3601,6 @@ urix@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - dependencies: - punycode "1.3.2" - querystring "0.2.0" - use@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8" @@ -2849,13 +3613,14 @@ util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" -util@0.10.3, util@^0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" +util.promisify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" dependencies: - inherits "2.0.1" + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" -uuid@^3.0.0: +uuid@^3.0.0, uuid@^3.1.0: version "3.2.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" @@ -2874,59 +3639,65 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vm-browserify@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" +vinyl-sourcemaps-apply@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" dependencies: - indexof "0.0.1" + source-map "^0.5.1" -watchpack@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" +vinyl@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" dependencies: - async "^2.1.2" - chokidar "^1.7.0" - graceful-fs "^4.1.2" + clone "^2.1.1" + clone-buffer "^1.0.0" + clone-stats "^1.0.0" + cloneable-readable "^1.0.0" + remove-trailing-separator "^1.0.1" + replace-ext "^1.0.0" -webpack-sources@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" +w3c-hr-time@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" + browser-process-hrtime "^0.1.2" -webpack@^3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725" +walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" dependencies: - acorn "^5.0.0" - acorn-dynamic-import "^2.0.0" - ajv "^5.1.5" - ajv-keywords "^2.0.0" - async "^2.1.2" - enhanced-resolve "^3.4.0" - escope "^3.6.0" - interpret "^1.0.0" - json-loader "^0.5.4" - json5 "^0.5.1" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - mkdirp "~0.5.0" - node-libs-browser "^2.0.0" - source-map "^0.5.3" - supports-color "^4.2.1" - tapable "^0.2.7" - uglifyjs-webpack-plugin "^0.4.6" - watchpack "^1.4.0" - webpack-sources "^1.0.1" - yargs "^8.0.2" + makeerror "1.0.x" + +watch@~0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" + dependencies: + exec-sh "^0.2.0" + minimist "^1.2.0" + +webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" + dependencies: + iconv-lite "0.4.19" + +whatwg-url@^6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.0" + webidl-conversions "^4.0.1" which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" -which@^1.2.10, which@^1.2.9: +which@^1.2.10, which@^1.2.12, which@^1.2.9, which@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" dependencies: @@ -2946,6 +3717,14 @@ wordwrap@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + wrap-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" @@ -2957,7 +3736,26 @@ wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" -xtend@^4.0.0: +write-file-atomic@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +ws@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" + dependencies: + async-limiter "~1.0.0" + safe-buffer "~5.1.0" + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + +xtend@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" @@ -2969,29 +3767,51 @@ yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" -yargs-parser@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" +yargs-parser@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" dependencies: camelcase "^4.1.0" -yargs@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" +yargs-parser@^9.0.2: + version "9.0.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" dependencies: camelcase "^4.1.0" - cliui "^3.2.0" + +yargs@^10.0.3: + version "10.1.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" + dependencies: + cliui "^4.0.0" + decamelize "^1.1.1" + find-up "^2.1.0" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^8.1.0" + +yargs@^11.0.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" + dependencies: + cliui "^4.0.0" decamelize "^1.1.1" + find-up "^2.1.0" get-caller-file "^1.0.1" os-locale "^2.0.0" - read-pkg-up "^2.0.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" string-width "^2.0.0" which-module "^2.0.0" y18n "^3.2.1" - yargs-parser "^7.0.0" + yargs-parser "^9.0.2" yargs@~3.10.0: version "3.10.0" From 1096061c2a45ebd7581f6a79857e3c23c3c64c0f Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Tue, 6 Mar 2018 13:27:35 +0100 Subject: [PATCH 20/27] change typo to support single json object --- src/typo.ts | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 9e1035c..2f2597a 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -3,15 +3,15 @@ export interface ITypo { suggest(word: string, limit?: number): string[]; } -export function createTypo( - dictionaryTable: {[key: string]: string[]}, - compoundRules: any[], - replacementTable: string[][], - flags: {[key: string]: string}, -): ITypo { - return new Typo( - dictionaryTable, compoundRules, replacementTable, flags, - ); +export function createTypo(dictData: IDictData): ITypo { + return new Typo(dictData); +} + +export interface IDictData { + compoundRules: RegExp[]; + dictionaryTable: {[key: string]: string[]}; + flags: {[key: string]: string}; + replacementTable: string[][]; } export interface IMemo { @@ -26,19 +26,19 @@ export interface IReplacementEntry { class Typo implements ITypo { private alphabet: string = ""; + private compoundRules: RegExp[]; + private dictionaryTable: {[key: string]: string[]}; + private flags: {[key: string]: string}; private memoized: {[word: string]: IMemo} = {}; private replacementTable: IReplacementEntry[]; - constructor( - private dictionaryTable: {[key: string]: string[]}, - private compoundRules: RegExp[], - replacementTable: string[][], - private flags: {[key: string]: string}, - ) { - this.replacementTable = replacementTable.map((entry: string[]) => { + constructor(dictData: IDictData) { + this.compoundRules = dictData.compoundRules; + this.dictionaryTable = dictData.dictionaryTable; + this.flags = dictData.flags; + this.replacementTable = dictData.replacementTable.map((entry: string[]) => { return {oldAffix: entry[0], newAffix: entry[1]}; }); - debugger; } public check(aWord) { From 76256995c361f15442708258f5d1aa5deb1f8b57 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Tue, 6 Mar 2018 13:41:18 +0100 Subject: [PATCH 21/27] remove inner functions --- src/typo.ts | 306 ++++++++++++++++++++++++++-------------------------- 1 file changed, 153 insertions(+), 153 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 2f2597a..fba935d 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -109,71 +109,104 @@ class Typo implements ITypo { this.alphabet = "abcdefghijklmnopqrstuvwxyz"; - function edits1(words, knownOnly?) { - const rv = {}; - - let i; - let j; - let len; - let jlen; - let edit; - - if (typeof words === "string") { - const word = words; - words = {}; - words[word] = true; + this.memoized[word] = { + limit, + suggestions: this.correct(word, limit), + }; + + return this.memoized[word].suggestions; + } + + private checkExact(word) { + const ruleCodes = this.dictionaryTable[word]; + if (typeof ruleCodes === "undefined") { + // Check if this might be a compound word. + if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { + for (const rule of this.compoundRules) { + if (word.match(rule)) { + return true; + } + } } + } else if (ruleCodes === null) { + // a null (but not undefined) value for an entry in the dictionary table + // means that the word is in the dictionary but has no flags. + return true; + } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. + for (const code of ruleCodes) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", code)) { + return true; + } + } + } - for (const word in words) { - if (words.hasOwnProperty(word)) { - for (i = 0, len = word.length + 1; i < len; i++) { - const s = [ word.substring(0, i), word.substring(i) ]; + return false; + } - if (s[1]) { - edit = s[0] + s[1].substring(1); + private hasFlag(word, flag, wordFlags?) { + if (flag in this.flags) { + if (typeof wordFlags === "undefined") { + wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); + } - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } + if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { + return true; + } + } - // Eliminate transpositions of identical letters - if (s[1].length > 1 && s[1][1] !== s[1][0]) { - edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + return false; + } - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } + private edits1(words, knownOnly?) { + const rv = {}; + + let i; + let j; + let len; + let jlen; + let edit; + + if (typeof words === "string") { + const word = words; + words = {}; + words[word] = true; + } + + for (const word in words) { + if (words.hasOwnProperty(word)) { + for (i = 0, len = word.length + 1; i < len; i++) { + const s = [ word.substring(0, i), word.substring(i) ]; + + if (s[1]) { + edit = s[0] + s[1].substring(1); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; } } + } - if (s[1]) { - for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { - // Eliminate replacement of a letter by itself - if (this.alphabet[j] !== s[1].substring(0, 1)) { - edit = s[0] + this.alphabet[j] + s[1].substring(1); - - if (!knownOnly || this.check(edit)) { - if (!(edit in rv)) { - rv[edit] = 1; - } else { - rv[edit] += 1; - } - } - } + // Eliminate transpositions of identical letters + if (s[1].length > 1 && s[1][1] !== s[1][0]) { + edit = s[0] + s[1][1] + s[1][0] + s[1].substring(2); + + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; } } + } - if (s[1]) { - for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { - edit = s[0] + this.alphabet[j] + s[1]; + if (s[1]) { + for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + // Eliminate replacement of a letter by itself + if (this.alphabet[j] !== s[1].substring(0, 1)) { + edit = s[0] + this.alphabet[j] + s[1].substring(1); if (!knownOnly || this.check(edit)) { if (!(edit in rv)) { @@ -185,134 +218,101 @@ class Typo implements ITypo { } } } - } - } - - return rv; - } - function correct(word) { - // Get the edit-distance-1 and edit-distance-2 forms of this word. - const ed1 = edits1(word); - const ed2 = edits1(ed1, true); + if (s[1]) { + for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + edit = s[0] + this.alphabet[j] + s[1]; - // Sort the edits based on how many different ways they were created. - const weightedCorrections = ed2; - - for (const ed1word in ed1) { - if (!this.check(ed1word)) { - continue; - } - - if (ed1word in weightedCorrections) { - weightedCorrections[ed1word] += ed1[ed1word]; - } else { - weightedCorrections[ed1word] = ed1[ed1word]; + if (!knownOnly || this.check(edit)) { + if (!(edit in rv)) { + rv[edit] = 1; + } else { + rv[edit] += 1; + } + } + } + } } } + } - let i; - - const sortedCorrections = []; - - for (i in weightedCorrections) { - if (weightedCorrections.hasOwnProperty(i)) { - sortedCorrections.push([ i, weightedCorrections[i] ]); - } - } + return rv; + } - function sorter(a, b) { - if (a[1] < b[1]) { - return -1; - } + private correct(word: string, limit: number) { + // Get the edit-distance-1 and edit-distance-2 forms of this word. + const ed1 = this.edits1(word); + const ed2 = this.edits1(ed1, true); - // @todo If a and b are equally weighted, add our own weight - // based on something like the key locations on this language's default keyboard. + // Sort the edits based on how many different ways they were created. + const weightedCorrections = ed2; - return 1; + for (const ed1word in ed1) { + if (!this.check(ed1word)) { + continue; } - sortedCorrections.sort(sorter).reverse(); + if (ed1word in weightedCorrections) { + weightedCorrections[ed1word] += ed1[ed1word]; + } else { + weightedCorrections[ed1word] = ed1[ed1word]; + } + } - const rv = []; + let i; - let capitalizationScheme = "lowercase"; + const sortedCorrections = []; - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { - capitalizationScheme = "capitalized"; + for (i in weightedCorrections) { + if (weightedCorrections.hasOwnProperty(i)) { + sortedCorrections.push([ i, weightedCorrections[i] ]); } + } - let workingLimit = limit; + sortedCorrections.sort(this.sorter).reverse(); - for (i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { - if ("uppercase" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); - } else if ("capitalized" === capitalizationScheme) { - sortedCorrections[i][0] = sortedCorrections[i][0].substr(0, 1).toUpperCase() - + sortedCorrections[i][0].substr(1); - } + const rv = []; - if ( - !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") - && rv.indexOf(sortedCorrections[i][0]) === -1) { - rv.push(sortedCorrections[i][0]); - } else { - // If one of the corrections is not eligible as a suggestion, - // make sure we still return the right number of suggestions. - workingLimit++; - } - } + let capitalizationScheme = "lowercase"; - return rv; + if (word.toUpperCase() === word) { + capitalizationScheme = "uppercase"; + } else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { + capitalizationScheme = "capitalized"; } - this.memoized[word] = { - limit, - suggestions: correct(word), - }; - - return this.memoized[word].suggestions; - } + let workingLimit = limit; - private checkExact(word) { - const ruleCodes = this.dictionaryTable[word]; - if (typeof ruleCodes === "undefined") { - // Check if this might be a compound word. - if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { - for (const rule of this.compoundRules) { - if (word.match(rule)) { - return true; - } - } + for (i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { + if ("uppercase" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); + } else if ("capitalized" === capitalizationScheme) { + sortedCorrections[i][0] = sortedCorrections[i][0].substr(0, 1).toUpperCase() + + sortedCorrections[i][0].substr(1); } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table - // means that the word is in the dictionary but has no flags. - return true; - } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. - for (const code of ruleCodes) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", code)) { - return true; - } + + if ( + !this.hasFlag(sortedCorrections[i][0], "NOSUGGEST") + && rv.indexOf(sortedCorrections[i][0]) === -1) { + rv.push(sortedCorrections[i][0]); + } else { + // If one of the corrections is not eligible as a suggestion, + // make sure we still return the right number of suggestions. + workingLimit++; } } - return false; + return rv; } - private hasFlag(word, flag, wordFlags?) { - if (flag in this.flags) { - if (typeof wordFlags === "undefined") { - wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); - } - - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } + private sorter(a, b) { + if (a[1] < b[1]) { + return -1; } - return false; + // @todo If a and b are equally weighted, add our own weight + // based on something like the key locations on this language's default keyboard. + + return 1; } } From d8a50ab4e337b229ac30f8fdf004e2c45da64437 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Tue, 6 Mar 2018 14:23:12 +0100 Subject: [PATCH 22/27] cleanup --- src/typo.ts | 62 +++++++++++++++++++++-------------------------------- 1 file changed, 25 insertions(+), 37 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index fba935d..8f7ed65 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -41,7 +41,7 @@ class Typo implements ITypo { }); } - public check(aWord) { + public check(aWord: string): boolean { // Remove leading and trailing whitespace const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); @@ -82,7 +82,7 @@ class Typo implements ITypo { return false; } - public suggest(word, limit = 5) { + public suggest(word: string, limit = 5): string[] { if (this.memoized.hasOwnProperty(word)) { const memoizedLimit = this.memoized[word].limit; @@ -94,7 +94,9 @@ class Typo implements ITypo { } } - if (this.check(word)) { return []; } + if (this.check(word)) { + return []; + } // Check the replacement table. for (const replacementEntry of this.replacementTable) { @@ -102,7 +104,7 @@ class Typo implements ITypo { const correctedWord = word.replace(replacementEntry.oldAffix, replacementEntry.newAffix); if (this.check(correctedWord)) { - return [ correctedWord ]; + return [correctedWord]; } } } @@ -117,11 +119,11 @@ class Typo implements ITypo { return this.memoized[word].suggestions; } - private checkExact(word) { + private checkExact(word: string): boolean { const ruleCodes = this.dictionaryTable[word]; if (typeof ruleCodes === "undefined") { // Check if this might be a compound word. - if ("COMPOUNDMIN" in this.flags && word.length >= this.flags.COMPOUNDMIN) { + if ("COMPOUNDMIN" in this.flags && word.length >= parseInt(this.flags.COMPOUNDMIN, 10)) { for (const rule of this.compoundRules) { if (word.match(rule)) { return true; @@ -143,7 +145,7 @@ class Typo implements ITypo { return false; } - private hasFlag(word, flag, wordFlags?) { + private hasFlag(word: string, flag: string, wordFlags?: string | string[]) { if (flag in this.flags) { if (typeof wordFlags === "undefined") { wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); @@ -160,12 +162,6 @@ class Typo implements ITypo { private edits1(words, knownOnly?) { const rv = {}; - let i; - let j; - let len; - let jlen; - let edit; - if (typeof words === "string") { const word = words; words = {}; @@ -174,7 +170,8 @@ class Typo implements ITypo { for (const word in words) { if (words.hasOwnProperty(word)) { - for (i = 0, len = word.length + 1; i < len; i++) { + for (let i = 0; i < word.length + 1; i++) { + let edit; const s = [ word.substring(0, i), word.substring(i) ]; if (s[1]) { @@ -203,10 +200,10 @@ class Typo implements ITypo { } if (s[1]) { - for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { + for (const letter of this.alphabet) { // Eliminate replacement of a letter by itself - if (this.alphabet[j] !== s[1].substring(0, 1)) { - edit = s[0] + this.alphabet[j] + s[1].substring(1); + if (letter !== s[1].substring(0, 1)) { + edit = s[0] + letter + s[0].substring(1); if (!knownOnly || this.check(edit)) { if (!(edit in rv)) { @@ -220,9 +217,8 @@ class Typo implements ITypo { } if (s[1]) { - for (j = 0, jlen = this.alphabet.length; j < jlen; j++) { - edit = s[0] + this.alphabet[j] + s[1]; - + for (const letter of this.alphabet) { + edit = s[0] + letter + s[1]; if (!knownOnly || this.check(edit)) { if (!(edit in rv)) { rv[edit] = 1; @@ -239,7 +235,7 @@ class Typo implements ITypo { return rv; } - private correct(word: string, limit: number) { + private correct(word: string, limit: number): string[] { // Get the edit-distance-1 and edit-distance-2 forms of this word. const ed1 = this.edits1(word); const ed2 = this.edits1(ed1, true); @@ -259,11 +255,9 @@ class Typo implements ITypo { } } - let i; - const sortedCorrections = []; - for (i in weightedCorrections) { + for (const i in weightedCorrections) { if (weightedCorrections.hasOwnProperty(i)) { sortedCorrections.push([ i, weightedCorrections[i] ]); } @@ -271,19 +265,17 @@ class Typo implements ITypo { sortedCorrections.sort(this.sorter).reverse(); - const rv = []; + const rv: string[] = []; - let capitalizationScheme = "lowercase"; - - if (word.toUpperCase() === word) { - capitalizationScheme = "uppercase"; - } else if (word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word) { - capitalizationScheme = "capitalized"; - } + const capitalizationScheme = word.toUpperCase() === word + ? "uppercase" + : word.substr(0, 1).toUpperCase() + word.substr(1).toLowerCase() === word + ? "capitalized" + : "lowercase"; let workingLimit = limit; - for (i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { + for (let i = 0; i < Math.min(workingLimit, sortedCorrections.length); i++) { if ("uppercase" === capitalizationScheme) { sortedCorrections[i][0] = sortedCorrections[i][0].toUpperCase(); } else if ("capitalized" === capitalizationScheme) { @@ -309,10 +301,6 @@ class Typo implements ITypo { if (a[1] < b[1]) { return -1; } - - // @todo If a and b are equally weighted, add our own weight - // based on something like the key locations on this language's default keyboard. - return 1; } } From 18dade215441bd0cd2486e41301f8be487e3c14b Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 9 Mar 2018 14:08:53 +0100 Subject: [PATCH 23/27] check for empty arrays on dictionary tables --- src/typo.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index 8f7ed65..5d7e264 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -135,13 +135,16 @@ class Typo implements ITypo { // means that the word is in the dictionary but has no flags. return true; } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. - for (const code of ruleCodes) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", code)) { - return true; + if (ruleCodes.length > 0) { + for (const code of ruleCodes) { + if (!this.hasFlag(word, "ONLYINCOMPOUND", code)) { + return true; + } } + } else { + return !this.hasFlag(word, "ONLYINCOMPOUND", []); } } - return false; } From e23b9effb046cb855499d979053f7181c7e9073e Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Fri, 9 Mar 2018 14:48:04 +0100 Subject: [PATCH 24/27] fix replacement entry access --- src/typo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typo.ts b/src/typo.ts index 5d7e264..f510569 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -100,7 +100,7 @@ class Typo implements ITypo { // Check the replacement table. for (const replacementEntry of this.replacementTable) { - if (word.indexOf(replacementEntry[0]) !== -1) { + if (word.indexOf(replacementEntry.oldAffix) !== -1) { const correctedWord = word.replace(replacementEntry.oldAffix, replacementEntry.newAffix); if (this.check(correctedWord)) { From 6d6cd2595a2d32169ebee15e125c6bc4668bde00 Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Sat, 10 Mar 2018 12:05:29 +0100 Subject: [PATCH 25/27] update has flag function for new dictionary format --- src/typo.ts | 32 +++++++------------------------- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/src/typo.ts b/src/typo.ts index f510569..35bc8f9 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -121,7 +121,7 @@ class Typo implements ITypo { private checkExact(word: string): boolean { const ruleCodes = this.dictionaryTable[word]; - if (typeof ruleCodes === "undefined") { + if (ruleCodes == null) { // Check if this might be a compound word. if ("COMPOUNDMIN" in this.flags && word.length >= parseInt(this.flags.COMPOUNDMIN, 10)) { for (const rule of this.compoundRules) { @@ -130,36 +130,18 @@ class Typo implements ITypo { } } } - } else if (ruleCodes === null) { - // a null (but not undefined) value for an entry in the dictionary table + } else if (ruleCodes.length === 0) { + // an empty value for an entry in the dictionary table // means that the word is in the dictionary but has no flags. return true; - } else if (typeof ruleCodes === "object") { // this.dictionary['hasOwnProperty'] will be a function. - if (ruleCodes.length > 0) { - for (const code of ruleCodes) { - if (!this.hasFlag(word, "ONLYINCOMPOUND", code)) { - return true; - } - } - } else { - return !this.hasFlag(word, "ONLYINCOMPOUND", []); - } + } else { + return !this.hasFlag(word, "ONLYINCOMPOUND", ruleCodes); } return false; } - private hasFlag(word: string, flag: string, wordFlags?: string | string[]) { - if (flag in this.flags) { - if (typeof wordFlags === "undefined") { - wordFlags = Array.prototype.concat.apply([], this.dictionaryTable[word]); - } - - if (wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1) { - return true; - } - } - - return false; + private hasFlag(word: string, flag: string, wordFlags: string[] = this.dictionaryTable[word]) { + return wordFlags && wordFlags.indexOf(this.flags[flag]) !== -1; } private edits1(words, knownOnly?) { From 02372498c30bccf443e4e98c64d674f19a72abfb Mon Sep 17 00:00:00 2001 From: Marcelo Risoli Date: Sat, 10 Mar 2018 13:37:26 +0100 Subject: [PATCH 26/27] remove old tests folder and fix regex check --- .../dictionaries/{en_US.json => en.json} | 304573 +++++++-------- __tests__/english.test.ts | 14 +- dictionaries/en_US/README.md | 7 - dictionaries/en_US/en_US.aff | 201 - dictionaries/en_US/en_US.dic | 62120 --- examples/node/index.js | 19 - src/typo.ts | 8 +- tests/README.md | 4 - tests/british.html | 19 - tests/british.js | 25 - tests/dictionaries/de_DE/LICENSE | 342 - tests/dictionaries/de_DE/de_DE.aff | 501 - tests/dictionaries/de_DE/de_DE.dic | 80471 ---- tests/dictionaries/en_GB/LICENSE | 282 - tests/dictionaries/en_GB/en_GB.aff | 1176 - tests/dictionaries/en_GB/en_GB.dic | 62171 --- tests/dictionaries/fr_FR/fr_FR.aff | 10767 - tests/dictionaries/fr_FR/fr_FR.dic | 63063 --- tests/dictionaries/la/README_la.txt | 380 - tests/dictionaries/la/la.aff | 4824 - tests/dictionaries/la/la.dic | 11620 - tests/english.html | 19 - tests/english.js | 176 - tests/french.html | 19 - tests/french.js | 61 - tests/general.html | 19 - tests/general.js | 74 - tests/german.html | 19 - tests/german.js | 38 - tests/index.html | 18 - tests/latin.html | 19 - tests/latin.js | 68 - tests/lib/jquery-1.9.1.js | 9597 - tests/lib/qunit.css | 231 - tests/lib/qunit.js | 1934 - tests/tests.css | 3 - 36 files changed, 151903 insertions(+), 462979 deletions(-) rename __tests__/dictionaries/{en_US.json => en.json} (50%) delete mode 100644 dictionaries/en_US/README.md delete mode 100644 dictionaries/en_US/en_US.aff delete mode 100644 dictionaries/en_US/en_US.dic delete mode 100644 examples/node/index.js delete mode 100644 tests/README.md delete mode 100644 tests/british.html delete mode 100644 tests/british.js delete mode 100644 tests/dictionaries/de_DE/LICENSE delete mode 100644 tests/dictionaries/de_DE/de_DE.aff delete mode 100644 tests/dictionaries/de_DE/de_DE.dic delete mode 100644 tests/dictionaries/en_GB/LICENSE delete mode 100644 tests/dictionaries/en_GB/en_GB.aff delete mode 100644 tests/dictionaries/en_GB/en_GB.dic delete mode 100644 tests/dictionaries/fr_FR/fr_FR.aff delete mode 100644 tests/dictionaries/fr_FR/fr_FR.dic delete mode 100755 tests/dictionaries/la/README_la.txt delete mode 100755 tests/dictionaries/la/la.aff delete mode 100755 tests/dictionaries/la/la.dic delete mode 100644 tests/english.html delete mode 100644 tests/english.js delete mode 100644 tests/french.html delete mode 100644 tests/french.js delete mode 100644 tests/general.html delete mode 100644 tests/general.js delete mode 100644 tests/german.html delete mode 100644 tests/german.js delete mode 100644 tests/index.html delete mode 100644 tests/latin.html delete mode 100644 tests/latin.js delete mode 100644 tests/lib/jquery-1.9.1.js delete mode 100644 tests/lib/qunit.css delete mode 100644 tests/lib/qunit.js delete mode 100644 tests/tests.css diff --git a/__tests__/dictionaries/en_US.json b/__tests__/dictionaries/en.json similarity index 50% rename from __tests__/dictionaries/en_US.json rename to __tests__/dictionaries/en.json index 2d0d065..0236e7f 100644 --- a/__tests__/dictionaries/en_US.json +++ b/__tests__/dictionaries/en.json @@ -1,152681 +1,4 @@ { - "rules": { - "A": { "type": "PFX", "combineable": true, "entries": [{ "add": "re" }] }, - "I": { "type": "PFX", "combineable": true, "entries": [{ "add": "in" }] }, - "U": { "type": "PFX", "combineable": true, "entries": [{ "add": "un" }] }, - "C": { "type": "PFX", "combineable": true, "entries": [{ "add": "de" }] }, - "E": { "type": "PFX", "combineable": true, "entries": [{ "add": "dis" }] }, - "F": { "type": "PFX", "combineable": true, "entries": [{ "add": "con" }] }, - "K": { "type": "PFX", "combineable": true, "entries": [{ "add": "pro" }] }, - "V": { - "type": "SFX", - "combineable": false, - "entries": [ - { "add": "ive", "match": {}, "remove": {} }, - { "add": "ive", "match": {} } - ] - }, - "N": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "ion", "match": {}, "remove": {} }, - { "add": "ication", "match": {}, "remove": {} }, - { "add": "en", "match": {} } - ] - }, - "X": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "ions", "match": {}, "remove": {} }, - { "add": "ications", "match": {}, "remove": {} }, - { "add": "ens", "match": {} } - ] - }, - "H": { - "type": "SFX", - "combineable": false, - "entries": [ - { "add": "ieth", "match": {}, "remove": {} }, - { "add": "th", "match": {} } - ] - }, - "Y": { "type": "SFX", "combineable": true, "entries": [{ "add": "ly" }] }, - "G": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "ing", "match": {}, "remove": {} }, - { "add": "ing", "match": {} } - ] - }, - "J": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "ings", "match": {}, "remove": {} }, - { "add": "ings", "match": {} } - ] - }, - "D": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "d", "match": {} }, - { "add": "ied", "match": {}, "remove": {} }, - { "add": "ed", "match": {} }, - { "add": "ed", "match": {} } - ] - }, - "T": { - "type": "SFX", - "combineable": false, - "entries": [ - { "add": "st", "match": {} }, - { "add": "iest", "match": {}, "remove": {} }, - { "add": "est", "match": {} }, - { "add": "est", "match": {} } - ] - }, - "R": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "r", "match": {} }, - { "add": "ier", "match": {}, "remove": {} }, - { "add": "er", "match": {} }, - { "add": "er", "match": {} } - ] - }, - "Z": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "rs", "match": {} }, - { "add": "iers", "match": {}, "remove": {} }, - { "add": "ers", "match": {} }, - { "add": "ers", "match": {} } - ] - }, - "S": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "ies", "match": {}, "remove": {} }, - { "add": "s", "match": {} }, - { "add": "es", "match": {} }, - { "add": "s", "match": {} } - ] - }, - "P": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "iness", "match": {}, "remove": {} }, - { "add": "ness", "match": {} }, - { "add": "ness", "match": {} } - ] - }, - "M": { "type": "SFX", "combineable": true, "entries": [{ "add": "'s" }] }, - "B": { - "type": "SFX", - "combineable": true, - "entries": [ - { "add": "able", "match": {} }, - { "add": "able", "match": {} }, - { "add": "able", "match": {}, "remove": {} } - ] - }, - "L": { "type": "SFX", "combineable": true, "entries": [{ "add": "ment" }] } - }, - "dictionaryTable": { - "0": [["n", "m"]], - "1": [["n", "1"]], - "2": [["n", "m"]], - "3": [["n", "m"]], - "4": [["n", "m"]], - "5": [["n", "m"]], - "6": [["n", "m"]], - "7": [["n", "m"]], - "8": [["n", "m"]], - "9": [["n", "m"]], - "0th": [["p", "t"]], - "1st": [["p"]], - "1th": [["t", "c"]], - "2nd": [["p"]], - "2th": [["t", "c"]], - "3rd": [["p"]], - "3th": [["t", "c"]], - "4th": [["p", "t"]], - "5th": [["p", "t"]], - "6th": [["p", "t"]], - "7th": [["p", "t"]], - "8th": [["p", "t"]], - "9th": [["p", "t"]], - "a": null, - "A": null, - "AA": null, - "AAA": null, - "Aachen": [["M"]], - "Aachen's": null, - "aardvark": [["S", "M"]], - "aardvarks": null, - "aardvark's": null, - "Aaren": [["M"]], - "Aaren's": null, - "Aarhus": [["M"]], - "Aarhus's": null, - "Aarika": [["M"]], - "Aarika's": null, - "Aaron": [["M"]], - "Aaron's": null, - "AB": null, - "aback": null, - "abacus": [["S", "M"]], - "abacuses": null, - "abacus's": null, - "abaft": null, - "Abagael": [["M"]], - "Abagael's": null, - "Abagail": [["M"]], - "Abagail's": null, - "abalone": [["S", "M"]], - "abalones": null, - "abalone's": null, - "abandoner": [["M"]], - "abandoner's": null, - "abandon": [["L", "G", "D", "R", "S"]], - "abandonment": [["S", "M"]], - "abandoning": null, - "abandoned": null, - "abandons": null, - "abandonments": null, - "abandonment's": null, - "abase": [["L", "G", "D", "S", "R"]], - "abasement": [["S"]], - "abasing": null, - "abased": null, - "abases": null, - "abaser": [["M"]], - "abasements": null, - "abaser's": null, - "abashed": [["U", "Y"]], - "unabashed": null, - "unabashedly": null, - "abashedly": null, - "abashment": [["M", "S"]], - "abashment's": null, - "abashments": null, - "abash": [["S", "D", "L", "G"]], - "abashes": null, - "abashing": null, - "abate": [["D", "S", "R", "L", "G"]], - "abated": [["U"]], - "abates": null, - "abater": [["M"]], - "abatement": [["M", "S"]], - "abating": null, - "unabated": [["Y"]], - "abatement's": null, - "abatements": null, - "abater's": null, - "abattoir": [["S", "M"]], - "abattoirs": null, - "abattoir's": null, - "Abba": [["M"]], - "Abba's": null, - "Abbe": [["M"]], - "Abbe's": null, - "abb�": [["S"]], - "abb�s": null, - "abbess": [["S", "M"]], - "abbesses": null, - "abbess's": null, - "Abbey": [["M"]], - "Abbey's": null, - "abbey": [["M", "S"]], - "abbey's": null, - "abbeys": null, - "Abbie": [["M"]], - "Abbie's": null, - "Abbi": [["M"]], - "Abbi's": null, - "Abbot": [["M"]], - "Abbot's": null, - "abbot": [["M", "S"]], - "abbot's": null, - "abbots": null, - "Abbott": [["M"]], - "Abbott's": null, - "abbr": null, - "abbrev": null, - "abbreviated": [["U", "A"]], - "unabbreviated": null, - "reabbreviated": null, - "abbreviates": [["A"]], - "reabbreviates": null, - "abbreviate": [["X", "D", "S", "N", "G"]], - "abbreviations": null, - "abbreviation": [["M"]], - "abbreviating": [["A"]], - "reabbreviating": null, - "abbreviation's": null, - "Abbye": [["M"]], - "Abbye's": null, - "Abby": [["M"]], - "Abby's": null, - "ABC": [["M"]], - "ABC's": null, - "Abdel": [["M"]], - "Abdel's": null, - "abdicate": [["N", "G", "D", "S", "X"]], - "abdication": [["M"]], - "abdicating": null, - "abdicated": null, - "abdicates": null, - "abdications": null, - "abdication's": null, - "abdomen": [["S", "M"]], - "abdomens": null, - "abdomen's": null, - "abdominal": [["Y", "S"]], - "abdominally": null, - "abdominals": null, - "abduct": [["D", "G", "S"]], - "abducted": null, - "abducting": null, - "abducts": null, - "abduction": [["S", "M"]], - "abductions": null, - "abduction's": null, - "abductor": [["S", "M"]], - "abductors": null, - "abductor's": null, - "Abdul": [["M"]], - "Abdul's": null, - "ab": [["D", "Y"]], - "abed": null, - "ably": null, - "abeam": null, - "Abelard": [["M"]], - "Abelard's": null, - "Abel": [["M"]], - "Abel's": null, - "Abelson": [["M"]], - "Abelson's": null, - "Abe": [["M"]], - "Abe's": null, - "Aberdeen": [["M"]], - "Aberdeen's": null, - "Abernathy": [["M"]], - "Abernathy's": null, - "aberrant": [["Y", "S"]], - "aberrantly": null, - "aberrants": null, - "aberrational": null, - "aberration": [["S", "M"]], - "aberrations": null, - "aberration's": null, - "abet": [["S"]], - "abets": null, - "abetted": null, - "abetting": null, - "abettor": [["S", "M"]], - "abettors": null, - "abettor's": null, - "Abeu": [["M"]], - "Abeu's": null, - "abeyance": [["M", "S"]], - "abeyance's": null, - "abeyances": null, - "abeyant": null, - "Abey": [["M"]], - "Abey's": null, - "abhorred": null, - "abhorrence": [["M", "S"]], - "abhorrence's": null, - "abhorrences": null, - "abhorrent": [["Y"]], - "abhorrently": null, - "abhorrer": [["M"]], - "abhorrer's": null, - "abhorring": null, - "abhor": [["S"]], - "abhors": null, - "abidance": [["M", "S"]], - "abidance's": null, - "abidances": null, - "abide": [["J", "G", "S", "R"]], - "abidings": null, - "abiding": [["Y"]], - "abides": null, - "abider": [["M"]], - "abider's": null, - "abidingly": null, - "Abidjan": [["M"]], - "Abidjan's": null, - "Abie": [["M"]], - "Abie's": null, - "Abigael": [["M"]], - "Abigael's": null, - "Abigail": [["M"]], - "Abigail's": null, - "Abigale": [["M"]], - "Abigale's": null, - "Abilene": [["M"]], - "Abilene's": null, - "ability": [["I", "M", "E", "S"]], - "inability": null, - "inability's": null, - "inabilities": null, - "ability's": null, - "disability's": null, - "disability": null, - "disabilities": null, - "abilities": null, - "abjection": [["M", "S"]], - "abjection's": null, - "abjections": null, - "abjectness": [["S", "M"]], - "abjectnesses": null, - "abjectness's": null, - "abject": [["S", "G", "P", "D", "Y"]], - "abjects": null, - "abjecting": null, - "abjected": null, - "abjectly": null, - "abjuration": [["S", "M"]], - "abjurations": null, - "abjuration's": null, - "abjuratory": null, - "abjurer": [["M"]], - "abjurer's": null, - "abjure": [["Z", "G", "S", "R", "D"]], - "abjurers": null, - "abjuring": null, - "abjures": null, - "abjured": null, - "ablate": [["V", "G", "N", "S", "D", "X"]], - "ablative": [["S", "Y"]], - "ablating": null, - "ablation": [["M"]], - "ablates": null, - "ablated": null, - "ablations": null, - "ablation's": null, - "ablatives": null, - "ablatively": null, - "ablaze": null, - "abler": [["E"]], - "disabler": [["M"]], - "ables": [["E"]], - "disables": null, - "ablest": null, - "able": [["U"]], - "unable": null, - "abloom": null, - "ablution": [["M", "S"]], - "ablution's": null, - "ablutions": null, - "Ab": [["M"]], - "Ab's": null, - "ABM": [["S"]], - "ABMs": null, - "abnegate": [["N", "G", "S", "D", "X"]], - "abnegation": [["M"]], - "abnegating": null, - "abnegates": null, - "abnegated": null, - "abnegations": null, - "abnegation's": null, - "Abner": [["M"]], - "Abner's": null, - "abnormality": [["S", "M"]], - "abnormalities": null, - "abnormality's": null, - "abnormal": [["S", "Y"]], - "abnormals": null, - "abnormally": null, - "aboard": null, - "abode": [["G", "M", "D", "S"]], - "aboding": null, - "abode's": null, - "aboded": null, - "abodes": null, - "abolisher": [["M"]], - "abolisher's": null, - "abolish": [["L", "Z", "R", "S", "D", "G"]], - "abolishment": [["M", "S"]], - "abolishers": null, - "abolishes": null, - "abolished": null, - "abolishing": null, - "abolishment's": null, - "abolishments": null, - "abolitionism": [["S", "M"]], - "abolitionisms": null, - "abolitionism's": null, - "abolitionist": [["S", "M"]], - "abolitionists": null, - "abolitionist's": null, - "abolition": [["S", "M"]], - "abolitions": null, - "abolition's": null, - "abominable": null, - "abominably": null, - "abominate": [["X", "S", "D", "G", "N"]], - "abominations": null, - "abominates": null, - "abominated": null, - "abominating": null, - "abomination": [["M"]], - "abomination's": null, - "aboriginal": [["Y", "S"]], - "aboriginally": null, - "aboriginals": null, - "aborigine": [["S", "M"]], - "aborigines": null, - "aborigine's": null, - "Aborigine": [["S", "M"]], - "Aborigines": null, - "Aborigine's": null, - "aborning": null, - "abortionist": [["M", "S"]], - "abortionist's": null, - "abortionists": null, - "abortion": [["M", "S"]], - "abortion's": null, - "abortions": null, - "abortiveness": [["M"]], - "abortiveness's": null, - "abortive": [["P", "Y"]], - "abortively": null, - "abort": [["S", "R", "D", "V", "G"]], - "aborts": null, - "aborter": null, - "aborted": null, - "aborting": null, - "Abo": [["S", "M", "!"]], - "Abos": null, - "Abo's": null, - "abound": [["G", "D", "S"]], - "abounding": null, - "abounded": null, - "abounds": null, - "about": [["S"]], - "abouts": null, - "aboveboard": null, - "aboveground": null, - "above": [["S"]], - "aboves": null, - "abracadabra": [["S"]], - "abracadabras": null, - "abrader": [["M"]], - "abrader's": null, - "abrade": [["S", "R", "D", "G"]], - "abrades": null, - "abraded": null, - "abrading": null, - "Abraham": [["M"]], - "Abraham's": null, - "Abrahan": [["M"]], - "Abrahan's": null, - "Abra": [["M"]], - "Abra's": null, - "Abramo": [["M"]], - "Abramo's": null, - "Abram": [["S", "M"]], - "Abrams": null, - "Abram's": null, - "Abramson": [["M"]], - "Abramson's": null, - "Abran": [["M"]], - "Abran's": null, - "abrasion": [["M", "S"]], - "abrasion's": null, - "abrasions": null, - "abrasiveness": [["S"]], - "abrasivenesses": null, - "abrasive": [["S", "Y", "M", "P"]], - "abrasives": null, - "abrasively": null, - "abrasive's": null, - "abreaction": [["M", "S"]], - "abreaction's": null, - "abreactions": null, - "abreast": null, - "abridge": [["D", "S", "R", "G"]], - "abridged": [["U"]], - "abridges": null, - "abridger": [["M"]], - "abridging": null, - "unabridged": [["S"]], - "abridger's": null, - "abridgment": [["S", "M"]], - "abridgments": null, - "abridgment's": null, - "abroad": null, - "abrogate": [["X", "D", "S", "N", "G"]], - "abrogations": null, - "abrogated": null, - "abrogates": null, - "abrogation": [["M"]], - "abrogating": null, - "abrogation's": null, - "abrogator": [["S", "M"]], - "abrogators": null, - "abrogator's": null, - "abruptness": [["S", "M"]], - "abruptnesses": null, - "abruptness's": null, - "abrupt": [["T", "R", "Y", "P"]], - "abruptest": null, - "abrupter": null, - "abruptly": null, - "ABS": null, - "abscess": [["G", "D", "S", "M"]], - "abscessing": null, - "abscessed": null, - "abscesses": null, - "abscess's": null, - "abscissa": [["S", "M"]], - "abscissas": null, - "abscissa's": null, - "abscission": [["S", "M"]], - "abscissions": null, - "abscission's": null, - "absconder": [["M"]], - "absconder's": null, - "abscond": [["S", "D", "R", "Z", "G"]], - "absconds": null, - "absconded": null, - "absconders": null, - "absconding": null, - "abseil": [["S", "G", "D", "R"]], - "abseils": null, - "abseiling": null, - "abseiled": null, - "abseiler": null, - "absence": [["S", "M"]], - "absences": null, - "absence's": null, - "absenteeism": [["S", "M"]], - "absenteeisms": null, - "absenteeism's": null, - "absentee": [["M", "S"]], - "absentee's": null, - "absentees": null, - "absentia": [["M"]], - "absentia's": null, - "absentmindedness": [["S"]], - "absentmindednesses": null, - "absentminded": [["P", "Y"]], - "absentmindedly": null, - "absent": [["S", "G", "D", "R", "Y"]], - "absents": null, - "absenting": null, - "absented": null, - "absenter": null, - "absently": null, - "absinthe": [["S", "M"]], - "absinthes": null, - "absinthe's": null, - "abs": [["M"]], - "abs's": null, - "absoluteness": [["S", "M"]], - "absolutenesses": null, - "absoluteness's": null, - "absolute": [["N", "P", "R", "S", "Y", "T", "X"]], - "absolution": [["M"]], - "absoluter": null, - "absolutes": null, - "absolutely": null, - "absolutest": null, - "absolutions": null, - "absolution's": null, - "absolutism": [["M", "S"]], - "absolutism's": null, - "absolutisms": null, - "absolutist": [["S", "M"]], - "absolutists": null, - "absolutist's": null, - "absolve": [["G", "D", "S", "R"]], - "absolving": null, - "absolved": null, - "absolves": null, - "absolver": [["M"]], - "absolver's": null, - "absorb": [["A", "S", "G", "D"]], - "reabsorb": null, - "reabsorbs": null, - "reabsorbing": null, - "reabsorbed": null, - "absorbs": null, - "absorbing": [["Y"]], - "absorbed": [["U"]], - "unabsorbed": null, - "absorbency": [["M", "S"]], - "absorbency's": null, - "absorbencies": null, - "absorbent": [["M", "S"]], - "absorbent's": null, - "absorbents": null, - "absorber": [["S", "M"]], - "absorbers": null, - "absorber's": null, - "absorbingly": null, - "absorption": [["M", "S"]], - "absorption's": null, - "absorptions": null, - "absorptive": null, - "absorptivity": [["M"]], - "absorptivity's": null, - "abstainer": [["M"]], - "abstainer's": null, - "abstain": [["G", "S", "D", "R", "Z"]], - "abstaining": null, - "abstains": null, - "abstained": null, - "abstainers": null, - "abstemiousness": [["M", "S"]], - "abstemiousness's": null, - "abstemiousnesses": null, - "abstemious": [["Y", "P"]], - "abstemiously": null, - "abstention": [["S", "M"]], - "abstentions": null, - "abstention's": null, - "abstinence": [["M", "S"]], - "abstinence's": null, - "abstinences": null, - "abstinent": [["Y"]], - "abstinently": null, - "abstractedness": [["S", "M"]], - "abstractednesses": null, - "abstractedness's": null, - "abstracted": [["Y", "P"]], - "abstractedly": null, - "abstracter": [["M"]], - "abstracter's": null, - "abstractionism": [["M"]], - "abstractionism's": null, - "abstractionist": [["S", "M"]], - "abstractionists": null, - "abstractionist's": null, - "abstraction": [["S", "M"]], - "abstractions": null, - "abstraction's": null, - "abstractness": [["S", "M"]], - "abstractnesses": null, - "abstractness's": null, - "abstractor": [["M", "S"]], - "abstractor's": null, - "abstractors": null, - "abstract": [["P", "T", "V", "G", "R", "D", "Y", "S"]], - "abstractest": null, - "abstractive": null, - "abstracting": null, - "abstractly": null, - "abstracts": null, - "abstruseness": [["S", "M"]], - "abstrusenesses": null, - "abstruseness's": null, - "abstruse": [["P", "R", "Y", "T"]], - "abstruser": null, - "abstrusely": null, - "abstrusest": null, - "absurdity": [["S", "M"]], - "absurdities": null, - "absurdity's": null, - "absurdness": [["S", "M"]], - "absurdnesses": null, - "absurdness's": null, - "absurd": [["P", "R", "Y", "S", "T"]], - "absurder": null, - "absurdly": null, - "absurds": null, - "absurdest": null, - "Abuja": null, - "abundance": [["S", "M"]], - "abundances": null, - "abundance's": null, - "abundant": [["Y"]], - "abundantly": null, - "abused": [["E"]], - "disabused": null, - "abuse": [["G", "V", "Z", "D", "S", "R", "B"]], - "abusing": [["E"]], - "abusive": [["Y", "P"]], - "abusers": null, - "abuses": [["E"]], - "abuser": [["M"]], - "abusable": null, - "abuser's": null, - "disabuses": null, - "disabusing": null, - "abusiveness": [["S", "M"]], - "abusivenesses": null, - "abusiveness's": null, - "abusively": null, - "abut": [["L", "S"]], - "abutment": [["S", "M"]], - "abuts": null, - "abutments": null, - "abutment's": null, - "abutted": null, - "abutter": [["M", "S"]], - "abutter's": null, - "abutters": null, - "abutting": null, - "abuzz": null, - "abysmal": [["Y"]], - "abysmally": null, - "abyssal": null, - "Abyssinia": [["M"]], - "Abyssinia's": null, - "Abyssinian": null, - "abyss": [["S", "M"]], - "abysses": null, - "abyss's": null, - "AC": null, - "acacia": [["S", "M"]], - "acacias": null, - "acacia's": null, - "academe": [["M", "S"]], - "academe's": null, - "academes": null, - "academia": [["S", "M"]], - "academias": null, - "academia's": null, - "academical": [["Y"]], - "academically": null, - "academicianship": null, - "academician": [["S", "M"]], - "academicians": null, - "academician's": null, - "academic": [["S"]], - "academics": null, - "academy": [["S", "M"]], - "academies": null, - "academy's": null, - "Acadia": [["M"]], - "Acadia's": null, - "acanthus": [["M", "S"]], - "acanthus's": null, - "acanthuses": null, - "Acapulco": [["M"]], - "Acapulco's": null, - "accede": [["S", "D", "G"]], - "accedes": null, - "acceded": null, - "acceding": null, - "accelerated": [["U"]], - "unaccelerated": null, - "accelerate": [["N", "G", "S", "D", "X", "V"]], - "acceleration": [["M"]], - "accelerating": [["Y"]], - "accelerates": null, - "accelerations": null, - "accelerative": null, - "acceleratingly": null, - "acceleration's": null, - "accelerator": [["S", "M"]], - "accelerators": null, - "accelerator's": null, - "accelerometer": [["S", "M"]], - "accelerometers": null, - "accelerometer's": null, - "accented": [["U"]], - "unaccented": null, - "accent": [["S", "G", "M", "D"]], - "accents": null, - "accenting": null, - "accent's": null, - "accentual": [["Y"]], - "accentually": null, - "accentuate": [["X", "N", "G", "S", "D"]], - "accentuations": null, - "accentuation": [["M"]], - "accentuating": null, - "accentuates": null, - "accentuated": null, - "accentuation's": null, - "acceptability": [["S", "M"]], - "acceptabilities": null, - "acceptability's": [["U"]], - "unacceptability's": null, - "acceptableness": [["S", "M"]], - "acceptablenesses": null, - "acceptableness's": null, - "acceptable": [["P"]], - "acceptably": [["U"]], - "unacceptably": null, - "acceptance": [["S", "M"]], - "acceptances": null, - "acceptance's": null, - "acceptant": null, - "acceptation": [["S", "M"]], - "acceptations": null, - "acceptation's": null, - "accepted": [["Y"]], - "acceptedly": null, - "accepter": [["M"]], - "accepter's": null, - "accepting": [["P", "Y"]], - "acceptingness": null, - "acceptingly": null, - "acceptor": [["M", "S"]], - "acceptor's": null, - "acceptors": null, - "accept": [["R", "D", "B", "S", "Z", "V", "G"]], - "accepts": null, - "accepters": null, - "acceptive": null, - "accessed": [["A"]], - "reaccessed": null, - "accessibility": [["I", "M", "S"]], - "inaccessibility": null, - "inaccessibility's": null, - "inaccessibilities": null, - "accessibility's": null, - "accessibilities": null, - "accessible": [["I", "U"]], - "inaccessible": null, - "unaccessible": null, - "accessibly": [["I"]], - "inaccessibly": null, - "accession": [["S", "M", "D", "G"]], - "accessions": null, - "accession's": null, - "accessioned": null, - "accessioning": null, - "accessors": null, - "accessory": [["S", "M"]], - "accessories": null, - "accessory's": null, - "access": [["S", "D", "M", "G"]], - "accesses": null, - "access's": null, - "accessing": null, - "accidence": [["M"]], - "accidence's": null, - "accidentalness": [["M"]], - "accidentalness's": null, - "accidental": [["S", "P", "Y"]], - "accidentals": null, - "accidentally": null, - "accident": [["M", "S"]], - "accident's": null, - "accidents": null, - "acclaimer": [["M"]], - "acclaimer's": null, - "acclaim": [["S", "D", "R", "G"]], - "acclaims": null, - "acclaimed": null, - "acclaiming": null, - "acclamation": [["M", "S"]], - "acclamation's": null, - "acclamations": null, - "acclimate": [["X", "S", "D", "G", "N"]], - "acclimations": null, - "acclimates": null, - "acclimated": null, - "acclimating": null, - "acclimation": [["M"]], - "acclimation's": null, - "acclimatisation": null, - "acclimatise": [["D", "G"]], - "acclimatised": null, - "acclimatising": null, - "acclimatization": [["A", "M", "S"]], - "reacclimatization": null, - "reacclimatization's": null, - "reacclimatizations": null, - "acclimatization's": null, - "acclimatizations": null, - "acclimatized": [["U"]], - "unacclimatized": null, - "acclimatize": [["R", "S", "D", "G", "Z"]], - "acclimatizer": null, - "acclimatizes": [["A"]], - "acclimatizing": null, - "acclimatizers": null, - "reacclimatizes": null, - "acclivity": [["S", "M"]], - "acclivities": null, - "acclivity's": null, - "accolade": [["G", "D", "S", "M"]], - "accolading": null, - "accoladed": null, - "accolades": null, - "accolade's": null, - "accommodated": [["U"]], - "unaccommodated": null, - "accommodate": [["X", "V", "N", "G", "S", "D"]], - "accommodations": null, - "accommodative": [["P"]], - "accommodation": [["M"]], - "accommodating": [["Y"]], - "accommodates": null, - "accommodatingly": null, - "accommodation's": null, - "accommodativeness": [["M"]], - "accommodativeness's": null, - "accompanied": [["U"]], - "unaccompanied": null, - "accompanier": [["M"]], - "accompanier's": null, - "accompaniment": [["M", "S"]], - "accompaniment's": null, - "accompaniments": null, - "accompanist": [["S", "M"]], - "accompanists": null, - "accompanist's": null, - "accompany": [["D", "R", "S", "G"]], - "accompanies": null, - "accompanying": null, - "accomplice": [["M", "S"]], - "accomplice's": null, - "accomplices": null, - "accomplished": [["U"]], - "unaccomplished": null, - "accomplisher": [["M"]], - "accomplisher's": null, - "accomplishment": [["S", "M"]], - "accomplishments": null, - "accomplishment's": null, - "accomplish": [["S", "R", "D", "L", "Z", "G"]], - "accomplishes": null, - "accomplishers": null, - "accomplishing": null, - "accordance": [["S", "M"]], - "accordances": null, - "accordance's": null, - "accordant": [["Y"]], - "accordantly": null, - "accorder": [["M"]], - "accorder's": null, - "according": [["Y"]], - "accordingly": null, - "accordionist": [["S", "M"]], - "accordionists": null, - "accordionist's": null, - "accordion": [["M", "S"]], - "accordion's": null, - "accordions": null, - "accord": [["S", "Z", "G", "M", "R", "D"]], - "accords": null, - "accorders": null, - "accord's": null, - "accorded": null, - "accost": [["S", "G", "D"]], - "accosts": null, - "accosting": null, - "accosted": null, - "accountability": [["M", "S"]], - "accountability's": [["U"]], - "accountabilities": null, - "unaccountability's": null, - "accountableness": [["M"]], - "accountableness's": null, - "accountable": [["U"]], - "unaccountable": null, - "accountably": [["U"]], - "unaccountably": null, - "accountancy": [["S", "M"]], - "accountancies": null, - "accountancy's": null, - "accountant": [["M", "S"]], - "accountant's": null, - "accountants": null, - "account": [["B", "M", "D", "S", "G", "J"]], - "account's": null, - "accounted": [["U"]], - "accounts": null, - "accounting": [["M"]], - "accountings": null, - "unaccounted": null, - "accounting's": null, - "accouter": [["G", "S", "D"]], - "accoutering": null, - "accouters": null, - "accoutered": null, - "accouterments": null, - "accouterment's": null, - "accoutrement": [["M"]], - "accoutrement's": null, - "Accra": [["M"]], - "Accra's": null, - "accreditation": [["S", "M"]], - "accreditations": null, - "accreditation's": null, - "accredited": [["U"]], - "unaccredited": null, - "accredit": [["S", "G", "D"]], - "accredits": null, - "accrediting": null, - "accretion": [["S", "M"]], - "accretions": null, - "accretion's": null, - "accrual": [["M", "S"]], - "accrual's": null, - "accruals": null, - "accrue": [["S", "D", "G"]], - "accrues": null, - "accrued": null, - "accruing": null, - "acct": null, - "acculturate": [["X", "S", "D", "V", "N", "G"]], - "acculturations": null, - "acculturates": null, - "acculturated": null, - "acculturative": null, - "acculturation": [["M"]], - "acculturating": null, - "acculturation's": null, - "accumulate": [["V", "N", "G", "S", "D", "X"]], - "accumulative": [["Y", "P"]], - "accumulation": [["M"]], - "accumulating": null, - "accumulates": null, - "accumulated": null, - "accumulations": null, - "accumulation's": null, - "accumulativeness": [["M"]], - "accumulativeness's": null, - "accumulatively": null, - "accumulator": [["M", "S"]], - "accumulator's": null, - "accumulators": null, - "accuracy": [["I", "M", "S"]], - "inaccuracy": null, - "inaccuracy's": null, - "inaccuracies": null, - "accuracy's": null, - "accuracies": null, - "accurate": [["I", "Y"]], - "inaccurate": null, - "inaccurately": null, - "accurately": null, - "accurateness": [["S", "M"]], - "accuratenesses": null, - "accurateness's": null, - "accursedness": [["S", "M"]], - "accursednesses": null, - "accursedness's": null, - "accursed": [["Y", "P"]], - "accursedly": null, - "accusal": [["M"]], - "accusal's": null, - "accusation": [["S", "M"]], - "accusations": null, - "accusation's": null, - "accusative": [["S"]], - "accusatives": null, - "accusatory": null, - "accused": [["M"]], - "accused's": null, - "accuser": [["M"]], - "accuser's": null, - "accuse": [["S", "R", "D", "Z", "G"]], - "accuses": null, - "accusers": null, - "accusing": [["Y"]], - "accusingly": null, - "accustomedness": [["M"]], - "accustomedness's": null, - "accustomed": [["P"]], - "accustom": [["S", "G", "D"]], - "accustoms": null, - "accustoming": null, - "ac": [["D", "R", "G"]], - "aced": [["M"]], - "acer": null, - "acing": [["M"]], - "aced's": null, - "acerbate": [["D", "S", "G"]], - "acerbated": null, - "acerbates": null, - "acerbating": null, - "acerbic": null, - "acerbically": null, - "acerbity": [["M", "S"]], - "acerbity's": null, - "acerbities": null, - "ace": [["S", "M"]], - "aces": null, - "ace's": null, - "acetaminophen": [["S"]], - "acetaminophens": null, - "acetate": [["M", "S"]], - "acetate's": null, - "acetates": null, - "acetic": null, - "acetone": [["S", "M"]], - "acetones": null, - "acetone's": null, - "acetonic": null, - "acetylene": [["M", "S"]], - "acetylene's": null, - "acetylenes": null, - "Acevedo": [["M"]], - "Acevedo's": null, - "Achaean": [["M"]], - "Achaean's": null, - "Achebe": [["M"]], - "Achebe's": null, - "ached": [["A"]], - "reached": [["U"]], - "ache": [["D", "S", "G"]], - "aches": [["A"]], - "aching": [["Y"]], - "achene": [["S", "M"]], - "achenes": null, - "achene's": null, - "Achernar": [["M"]], - "Achernar's": null, - "reaches": null, - "Acheson": [["M"]], - "Acheson's": null, - "achievable": [["U"]], - "unachievable": null, - "achieved": [["U", "A"]], - "unachieved": null, - "reachieved": null, - "achieve": [["L", "Z", "G", "R", "S", "D", "B"]], - "achievement": [["S", "M"]], - "achievers": null, - "achieving": null, - "achiever": [["M"]], - "achieves": null, - "achievements": null, - "achievement's": null, - "achiever's": null, - "Achilles": null, - "achingly": null, - "achoo": null, - "achromatic": null, - "achy": [["T", "R"]], - "achiest": null, - "achier": null, - "acidic": null, - "acidification": [["M"]], - "acidification's": null, - "acidify": [["N", "S", "D", "G"]], - "acidifies": null, - "acidified": null, - "acidifying": null, - "acidity": [["S", "M"]], - "acidities": null, - "acidity's": null, - "acidness": [["M"]], - "acidness's": null, - "acidoses": null, - "acidosis": [["M"]], - "acidosis's": null, - "acid": [["S", "M", "Y", "P"]], - "acids": null, - "acid's": null, - "acidly": null, - "acidulous": null, - "acing's": null, - "Ackerman": [["M"]], - "Ackerman's": null, - "acknowledgeable": null, - "acknowledgedly": null, - "acknowledged": [["U"]], - "unacknowledged": null, - "acknowledge": [["G", "Z", "D", "R", "S"]], - "acknowledging": null, - "acknowledgers": null, - "acknowledger": [["M"]], - "acknowledges": null, - "acknowledger's": null, - "acknowledgment": [["S", "A", "M"]], - "acknowledgments": null, - "reacknowledgments": null, - "reacknowledgment": null, - "reacknowledgment's": null, - "acknowledgment's": null, - "ACLU": null, - "Ac": [["M"]], - "Ac's": null, - "ACM": null, - "acme": [["S", "M"]], - "acmes": null, - "acme's": null, - "acne": [["M", "D", "S"]], - "acne's": null, - "acned": null, - "acnes": null, - "acolyte": [["M", "S"]], - "acolyte's": null, - "acolytes": null, - "Aconcagua": [["M"]], - "Aconcagua's": null, - "aconite": [["M", "S"]], - "aconite's": null, - "aconites": null, - "acorn": [["S", "M"]], - "acorns": null, - "acorn's": null, - "Acosta": [["M"]], - "Acosta's": null, - "acoustical": [["Y"]], - "acoustically": null, - "acoustician": [["M"]], - "acoustician's": null, - "acoustic": [["S"]], - "acoustics": [["M"]], - "acoustics's": null, - "acquaintance": [["M", "S"]], - "acquaintance's": null, - "acquaintances": null, - "acquaintanceship": [["S"]], - "acquaintanceships": null, - "acquainted": [["U"]], - "unacquainted": null, - "acquaint": [["G", "A", "S", "D"]], - "acquainting": null, - "reacquainting": null, - "reacquaint": null, - "reacquaints": null, - "reacquainted": null, - "acquaints": null, - "acquiesce": [["G", "S", "D"]], - "acquiescing": null, - "acquiesces": null, - "acquiesced": null, - "acquiescence": [["S", "M"]], - "acquiescences": null, - "acquiescence's": null, - "acquiescent": [["Y"]], - "acquiescently": null, - "acquirable": null, - "acquire": [["A", "S", "D", "G"]], - "reacquire": null, - "reacquires": null, - "reacquired": null, - "reacquiring": null, - "acquires": null, - "acquired": null, - "acquiring": null, - "acquirement": [["S", "M"]], - "acquirements": null, - "acquirement's": null, - "acquisition's": [["A"]], - "reacquisition's": null, - "acquisition": [["S", "M"]], - "acquisitions": null, - "acquisitiveness": [["M", "S"]], - "acquisitiveness's": null, - "acquisitivenesses": null, - "acquisitive": [["P", "Y"]], - "acquisitively": null, - "acquit": [["S"]], - "acquits": null, - "acquittal": [["M", "S"]], - "acquittal's": null, - "acquittals": null, - "acquittance": [["M"]], - "acquittance's": null, - "acquitted": null, - "acquitter": [["M"]], - "acquitter's": null, - "acquitting": null, - "acreage": [["M", "S"]], - "acreage's": null, - "acreages": null, - "acre": [["M", "S"]], - "acre's": null, - "acres": null, - "acridity": [["M", "S"]], - "acridity's": null, - "acridities": null, - "acridness": [["S", "M"]], - "acridnesses": null, - "acridness's": null, - "acrid": [["T", "P", "R", "Y"]], - "acridest": null, - "acrider": null, - "acridly": null, - "acrimoniousness": [["M", "S"]], - "acrimoniousness's": null, - "acrimoniousnesses": null, - "acrimonious": [["Y", "P"]], - "acrimoniously": null, - "acrimony": [["M", "S"]], - "acrimony's": null, - "acrimonies": null, - "acrobatically": null, - "acrobatic": [["S"]], - "acrobatics": [["M"]], - "acrobatics's": null, - "acrobat": [["S", "M"]], - "acrobats": null, - "acrobat's": null, - "acronym": [["S", "M"]], - "acronyms": null, - "acronym's": null, - "acrophobia": [["S", "M"]], - "acrophobias": null, - "acrophobia's": null, - "Acropolis": [["M"]], - "Acropolis's": null, - "acropolis": [["S", "M"]], - "acropolises": null, - "acropolis's": null, - "across": null, - "acrostic": [["S", "M"]], - "acrostics": null, - "acrostic's": null, - "Acrux": [["M"]], - "Acrux's": null, - "acrylate": [["M"]], - "acrylate's": null, - "acrylic": [["S"]], - "acrylics": null, - "ACT": null, - "Actaeon": [["M"]], - "Actaeon's": null, - "Acta": [["M"]], - "Acta's": null, - "ACTH": null, - "acting": [["S"]], - "actings": null, - "actinic": null, - "actinide": [["S", "M"]], - "actinides": null, - "actinide's": null, - "actinium": [["M", "S"]], - "actinium's": null, - "actiniums": null, - "actinometer": [["M", "S"]], - "actinometer's": null, - "actinometers": null, - "action": [["D", "M", "S", "G", "B"]], - "actioned": null, - "action's": [["I", "A"]], - "actions": [["A", "I"]], - "actioning": null, - "actionable": null, - "reactions": null, - "inactions": null, - "inaction's": null, - "reaction's": null, - "activate": [["A", "X", "C", "D", "S", "N", "G", "I"]], - "reactivate": null, - "reactivations": null, - "reactivated": null, - "reactivates": null, - "reactivation": null, - "reactivating": null, - "activations": null, - "deactivations": null, - "inactivations": null, - "deactivate": null, - "deactivated": null, - "deactivates": null, - "deactivation": null, - "deactivating": null, - "activated": [["U"]], - "inactivated": null, - "activates": null, - "inactivates": null, - "activation": [["A", "M", "C", "I"]], - "inactivation": null, - "activating": null, - "inactivating": null, - "inactivate": null, - "unactivated": null, - "reactivation's": null, - "activation's": null, - "deactivation's": null, - "inactivation's": null, - "activator": [["S", "M"]], - "activators": null, - "activator's": null, - "active": [["A", "P", "Y"]], - "reactive": null, - "reactiveness": null, - "reactively": null, - "activeness": [["M", "S"]], - "actively": [["I"]], - "inactively": null, - "activeness's": null, - "activenesses": null, - "actives": null, - "activism": [["M", "S"]], - "activism's": null, - "activisms": null, - "activist": [["M", "S"]], - "activist's": null, - "activists": null, - "activities": [["A"]], - "reactivities": null, - "activity": [["M", "S", "I"]], - "activity's": null, - "inactivity's": null, - "inactivities": null, - "inactivity": null, - "Acton": [["M"]], - "Acton's": null, - "actor": [["M", "A", "S"]], - "actor's": null, - "reactor's": null, - "reactor": null, - "reactors": null, - "actors": null, - "actress": [["S", "M"]], - "actresses": null, - "actress's": null, - "act's": null, - "Acts": null, - "act": [["S", "A", "D", "V", "G"]], - "acts": null, - "reacts": null, - "react": null, - "reacted": [["U"]], - "reacting": null, - "acted": null, - "actuality": [["S", "M"]], - "actualities": null, - "actuality's": null, - "actualization": [["M", "A", "S"]], - "actualization's": null, - "reactualization's": null, - "reactualization": null, - "reactualizations": null, - "actualizations": null, - "actualize": [["G", "S", "D"]], - "actualizing": null, - "actualizes": [["A"]], - "actualized": null, - "reactualizes": null, - "actual": [["S", "Y"]], - "actuals": null, - "actually": null, - "actuarial": [["Y"]], - "actuarially": null, - "actuary": [["M", "S"]], - "actuary's": null, - "actuaries": null, - "actuate": [["G", "N", "X", "S", "D"]], - "actuating": null, - "actuation": [["M"]], - "actuations": null, - "actuates": null, - "actuated": null, - "actuation's": null, - "actuator": [["S", "M"]], - "actuators": null, - "actuator's": null, - "acuity": [["M", "S"]], - "acuity's": null, - "acuities": null, - "acumen": [["S", "M"]], - "acumens": null, - "acumen's": null, - "acupressure": [["S"]], - "acupressures": null, - "acupuncture": [["S", "M"]], - "acupunctures": null, - "acupuncture's": null, - "acupuncturist": [["S"]], - "acupuncturists": null, - "acuteness": [["M", "S"]], - "acuteness's": null, - "acutenesses": null, - "acute": [["Y", "T", "S", "R", "P"]], - "acutely": null, - "acutest": null, - "acutes": null, - "acuter": null, - "acyclic": null, - "acyclically": null, - "acyclovir": [["S"]], - "acyclovirs": null, - "AD": null, - "adage": [["M", "S"]], - "adage's": null, - "adages": null, - "adagio": [["S"]], - "adagios": null, - "Adah": [["M"]], - "Adah's": null, - "Adair": [["M"]], - "Adair's": null, - "Adaline": [["M"]], - "Adaline's": null, - "Ada": [["M"]], - "Ada's": null, - "adamant": [["S", "Y"]], - "adamants": null, - "adamantly": null, - "Adamo": [["M"]], - "Adamo's": null, - "Adam": [["S", "M"]], - "Adams": null, - "Adam's": null, - "Adamson": [["M"]], - "Adamson's": null, - "Adana": [["M"]], - "Adana's": null, - "Adan": [["M"]], - "Adan's": null, - "adaptability": [["M", "S"]], - "adaptability's": null, - "adaptabilities": null, - "adaptable": [["U"]], - "unadaptable": null, - "adaptation": [["M", "S"]], - "adaptation's": null, - "adaptations": null, - "adaptedness": [["M"]], - "adaptedness's": null, - "adapted": [["P"]], - "adapter": [["M"]], - "adapter's": null, - "adapting": [["A"]], - "readapting": null, - "adaption": null, - "adaptively": null, - "adaptiveness": [["M"]], - "adaptiveness's": null, - "adaptive": [["U"]], - "unadaptive": null, - "adaptivity": null, - "adapt": [["S", "R", "D", "B", "Z", "V", "G"]], - "adapts": null, - "adapters": null, - "Adara": [["M"]], - "Adara's": null, - "ad": [["A", "S"]], - "read": [["J", "G", "Z", "B", "R"]], - "reads": [["A"]], - "ads": null, - "ADC": null, - "Adda": [["M"]], - "Adda's": null, - "Addams": null, - "addenda": null, - "addend": [["S", "M"]], - "addends": null, - "addend's": null, - "addendum": [["M"]], - "addendum's": null, - "adder": [["M"]], - "adder's": null, - "Addia": [["M"]], - "Addia's": null, - "addiction": [["M", "S"]], - "addiction's": null, - "addictions": null, - "addictive": [["P"]], - "addictiveness": null, - "addict": [["S", "G", "V", "D"]], - "addicts": null, - "addicting": null, - "addicted": null, - "Addie": [["M"]], - "Addie's": null, - "Addi": [["M"]], - "Addi's": null, - "Addison": [["M"]], - "Addison's": null, - "additional": [["Y"]], - "additionally": null, - "addition": [["M", "S"]], - "addition's": null, - "additions": null, - "additive": [["Y", "M", "S"]], - "additively": null, - "additive's": null, - "additives": null, - "additivity": null, - "addle": [["G", "D", "S"]], - "addling": null, - "addled": null, - "addles": null, - "addressability": null, - "addressable": [["U"]], - "unaddressable": null, - "addressed": [["A"]], - "readdressed": null, - "addressee": [["S", "M"]], - "addressees": null, - "addressee's": null, - "addresser": [["M"]], - "addresser's": null, - "addresses": [["A"]], - "readdresses": null, - "address": [["M", "D", "R", "S", "Z", "G", "B"]], - "address's": null, - "addressers": null, - "addressing": null, - "Addressograph": [["M"]], - "Addressograph's": null, - "adduce": [["G", "R", "S", "D"]], - "adducing": null, - "adducer": [["M"]], - "adduces": null, - "adduced": null, - "adducer's": null, - "adduct": [["D", "G", "V", "S"]], - "adducted": null, - "adducting": null, - "adductive": null, - "adducts": null, - "adduction": [["M"]], - "adduction's": null, - "adductor": [["M"]], - "adductor's": null, - "Addy": [["M"]], - "Addy's": null, - "add": [["Z", "G", "B", "S", "D", "R"]], - "adders": null, - "adding": null, - "addable": null, - "adds": null, - "added": null, - "Adelaida": [["M"]], - "Adelaida's": null, - "Adelaide": [["M"]], - "Adelaide's": null, - "Adela": [["M"]], - "Adela's": null, - "Adelbert": [["M"]], - "Adelbert's": null, - "Adele": [["M"]], - "Adele's": null, - "Adelheid": [["M"]], - "Adelheid's": null, - "Adelice": [["M"]], - "Adelice's": null, - "Adelina": [["M"]], - "Adelina's": null, - "Adelind": [["M"]], - "Adelind's": null, - "Adeline": [["M"]], - "Adeline's": null, - "Adella": [["M"]], - "Adella's": null, - "Adelle": [["M"]], - "Adelle's": null, - "Adel": [["M"]], - "Adel's": null, - "Ade": [["M"]], - "Ade's": null, - "Adena": [["M"]], - "Adena's": null, - "Adenauer": [["M"]], - "Adenauer's": null, - "adenine": [["S", "M"]], - "adenines": null, - "adenine's": null, - "Aden": [["M"]], - "Aden's": null, - "adenoidal": null, - "adenoid": [["S"]], - "adenoids": null, - "adeptness": [["M", "S"]], - "adeptness's": null, - "adeptnesses": null, - "adept": [["R", "Y", "P", "T", "S"]], - "adepter": null, - "adeptly": null, - "adeptest": null, - "adepts": null, - "adequacy": [["I", "M", "S"]], - "inadequacy": null, - "inadequacy's": null, - "inadequacies": null, - "adequacy's": null, - "adequacies": null, - "adequate": [["I", "P", "Y"]], - "inadequate": [["S"]], - "inadequateness": null, - "inadequately": null, - "adequateness": [["S", "M"]], - "adequately": null, - "adequateness's": [["I"]], - "inadequateness's": null, - "adequatenesses": null, - "Adey": [["M"]], - "Adey's": null, - "Adham": [["M"]], - "Adham's": null, - "Adhara": [["M"]], - "Adhara's": null, - "adherence": [["S", "M"]], - "adherences": null, - "adherence's": null, - "adherent": [["Y", "M", "S"]], - "adherently": null, - "adherent's": null, - "adherents": null, - "adherer": [["M"]], - "adherer's": null, - "adhere": [["Z", "G", "R", "S", "D"]], - "adherers": null, - "adhering": null, - "adheres": null, - "adhered": null, - "adhesion": [["M", "S"]], - "adhesion's": null, - "adhesions": null, - "adhesiveness": [["M", "S"]], - "adhesiveness's": null, - "adhesivenesses": null, - "adhesive": [["P", "Y", "M", "S"]], - "adhesively": null, - "adhesive's": null, - "adhesives": null, - "adiabatic": null, - "adiabatically": null, - "Adiana": [["M"]], - "Adiana's": null, - "Adidas": [["M"]], - "Adidas's": null, - "adieu": [["S"]], - "adieus": null, - "Adi": [["M"]], - "Adi's": null, - "Adina": [["M"]], - "Adina's": null, - "adi�s": null, - "adipose": [["S"]], - "adiposes": null, - "Adirondack": [["S", "M"]], - "Adirondacks": null, - "Adirondack's": null, - "adj": null, - "adjacency": [["M", "S"]], - "adjacency's": null, - "adjacencies": null, - "adjacent": [["Y"]], - "adjacently": null, - "adjectival": [["Y"]], - "adjectivally": null, - "adjective": [["M", "Y", "S"]], - "adjective's": null, - "adjectively": null, - "adjectives": null, - "adjoin": [["S", "D", "G"]], - "adjoins": null, - "adjoined": null, - "adjoining": null, - "adjoint": [["M"]], - "adjoint's": null, - "adjourn": [["D", "G", "L", "S"]], - "adjourned": null, - "adjourning": null, - "adjournment": [["S", "M"]], - "adjourns": null, - "adjournments": null, - "adjournment's": null, - "adjudge": [["D", "S", "G"]], - "adjudged": null, - "adjudges": null, - "adjudging": null, - "adjudicate": [["V", "N", "G", "X", "S", "D"]], - "adjudicative": null, - "adjudication": [["M"]], - "adjudicating": null, - "adjudications": null, - "adjudicates": null, - "adjudicated": null, - "adjudication's": null, - "adjudicator": [["S", "M"]], - "adjudicators": null, - "adjudicator's": null, - "adjudicatory": null, - "adjunct": [["V", "S", "Y", "M"]], - "adjunctive": null, - "adjuncts": null, - "adjunctly": null, - "adjunct's": null, - "adjuration": [["S", "M"]], - "adjurations": null, - "adjuration's": null, - "adjure": [["G", "S", "D"]], - "adjuring": null, - "adjures": null, - "adjured": null, - "adjustable": [["U"]], - "unadjustable": null, - "adjustably": null, - "adjust": [["D", "R", "A", "L", "G", "S", "B"]], - "adjusted": [["U"]], - "readjusted": null, - "adjuster": [["S", "M"]], - "readjuster": null, - "readjust": null, - "readjustment": null, - "readjusting": null, - "readjusts": null, - "readjustable": null, - "adjustment": [["M", "A", "S"]], - "adjusting": null, - "adjusts": null, - "unadjusted": null, - "adjuster's": [["A"]], - "readjuster's": null, - "adjusters": null, - "adjustive": null, - "adjustment's": null, - "readjustment's": null, - "readjustments": null, - "adjustments": null, - "adjustor's": null, - "adjutant": [["S", "M"]], - "adjutants": null, - "adjutant's": null, - "Adkins": [["M"]], - "Adkins's": null, - "Adlai": [["M"]], - "Adlai's": null, - "Adler": [["M"]], - "Adler's": null, - "adman": [["M"]], - "adman's": null, - "admen": null, - "administer": [["G", "D", "J", "S"]], - "administering": null, - "administered": null, - "administerings": null, - "administers": null, - "administrable": null, - "administrate": [["X", "S", "D", "V", "N", "G"]], - "administrations": null, - "administrates": null, - "administrated": null, - "administrative": [["Y"]], - "administration": [["M"]], - "administrating": null, - "administration's": null, - "administratively": null, - "administrator": [["M", "S"]], - "administrator's": null, - "administrators": null, - "administratrix": [["M"]], - "administratrix's": null, - "admirableness": [["M"]], - "admirableness's": null, - "admirable": [["P"]], - "admirably": null, - "admiral": [["S", "M"]], - "admirals": null, - "admiral's": null, - "admiralty": [["M", "S"]], - "admiralty's": null, - "admiralties": null, - "Admiralty": [["S"]], - "Admiralties": null, - "admiration": [["M", "S"]], - "admiration's": null, - "admirations": null, - "admirer": [["M"]], - "admirer's": null, - "admire": [["R", "S", "D", "Z", "B", "G"]], - "admires": null, - "admired": null, - "admirers": null, - "admiring": [["Y"]], - "admiringly": null, - "admissibility": [["I", "S", "M"]], - "inadmissibility": null, - "inadmissibilities": null, - "inadmissibility's": null, - "admissibilities": null, - "admissibility's": null, - "admissible": [["I"]], - "inadmissible": null, - "admissibly": null, - "admission": [["A", "M", "S"]], - "readmission": null, - "readmission's": null, - "readmissions": null, - "admission's": null, - "admissions": null, - "admit": [["A", "S"]], - "readmit": null, - "readmits": null, - "admits": null, - "admittance": [["M", "S"]], - "admittance's": null, - "admittances": null, - "admitted": [["A"]], - "readmitted": null, - "admittedly": null, - "admitting": [["A"]], - "readmitting": null, - "admix": [["S", "D", "G"]], - "admixes": null, - "admixed": null, - "admixing": null, - "admixture": [["S", "M"]], - "admixtures": null, - "admixture's": null, - "Adm": [["M"]], - "Adm's": null, - "Ad": [["M", "N"]], - "Ad's": null, - "admonisher": [["M"]], - "admonisher's": null, - "admonish": [["G", "L", "S", "R", "D"]], - "admonishing": [["Y"]], - "admonishment": [["S", "M"]], - "admonishes": null, - "admonished": null, - "admonishingly": null, - "admonishments": null, - "admonishment's": null, - "admonition": [["M", "S"]], - "admonition's": null, - "admonitions": null, - "admonitory": null, - "adobe": [["M", "S"]], - "adobe's": null, - "adobes": null, - "adolescence": [["M", "S"]], - "adolescence's": null, - "adolescences": null, - "adolescent": [["S", "Y", "M"]], - "adolescents": null, - "adolescently": null, - "adolescent's": null, - "Adolf": [["M"]], - "Adolf's": null, - "Adolfo": [["M"]], - "Adolfo's": null, - "Adolphe": [["M"]], - "Adolphe's": null, - "Adolph": [["M"]], - "Adolph's": null, - "Adolpho": [["M"]], - "Adolpho's": null, - "Adolphus": [["M"]], - "Adolphus's": null, - "Ado": [["M"]], - "Ado's": null, - "ado": [["M", "S"]], - "ado's": null, - "ados": null, - "Adonis": [["S", "M"]], - "Adonises": null, - "Adonis's": null, - "adopted": [["A", "U"]], - "readopted": null, - "unadopted": null, - "adopter": [["M"]], - "adopter's": null, - "adoption": [["M", "S"]], - "adoption's": null, - "adoptions": null, - "adoptive": [["Y"]], - "adoptively": null, - "adopt": [["R", "D", "S", "B", "Z", "V", "G"]], - "adopts": [["A"]], - "adoptable": null, - "adopters": null, - "adopting": null, - "readopts": null, - "adorableness": [["S", "M"]], - "adorablenesses": null, - "adorableness's": null, - "adorable": [["P"]], - "adorably": null, - "Adora": [["M"]], - "Adora's": null, - "adoration": [["S", "M"]], - "adorations": null, - "adoration's": null, - "adore": [["D", "S", "R", "G", "Z", "B"]], - "adored": null, - "adores": null, - "adorer": [["M"]], - "adoring": [["Y"]], - "adorers": null, - "Adoree": [["M"]], - "Adoree's": null, - "Adore": [["M"]], - "Adore's": null, - "adorer's": null, - "adoringly": null, - "adorned": [["U"]], - "unadorned": null, - "Adorne": [["M"]], - "Adorne's": null, - "adornment": [["S", "M"]], - "adornments": null, - "adornment's": null, - "adorn": [["S", "G", "L", "D"]], - "adorns": null, - "adorning": null, - "ADP": null, - "Adrea": [["M"]], - "Adrea's": null, - "adrenalin": null, - "adrenaline": [["M", "S"]], - "adrenaline's": null, - "adrenalines": null, - "Adrenalin": [["M", "S"]], - "Adrenalin's": null, - "Adrenalins": null, - "adrenal": [["Y", "S"]], - "adrenally": null, - "adrenals": null, - "Adria": [["M", "X"]], - "Adria's": null, - "Adriaens": null, - "Adriana": [["M"]], - "Adriana's": null, - "Adriane": [["M"]], - "Adriane's": null, - "Adrian": [["M"]], - "Adrian's": null, - "Adrianna": [["M"]], - "Adrianna's": null, - "Adrianne": [["M"]], - "Adrianne's": null, - "Adriano": [["M"]], - "Adriano's": null, - "Adriatic": null, - "Adriena": [["M"]], - "Adriena's": null, - "Adrien": [["M"]], - "Adrien's": null, - "Adrienne": [["M"]], - "Adrienne's": null, - "adrift": null, - "adroitness": [["M", "S"]], - "adroitness's": null, - "adroitnesses": null, - "adroit": [["R", "T", "Y", "P"]], - "adroiter": null, - "adroitest": null, - "adroitly": null, - "ad's": null, - "adsorbate": [["M"]], - "adsorbate's": null, - "adsorbent": [["S"]], - "adsorbents": null, - "adsorb": [["G", "S", "D"]], - "adsorbing": null, - "adsorbs": null, - "adsorbed": null, - "adsorption": [["M", "S"]], - "adsorption's": null, - "adsorptions": null, - "adsorptive": [["Y"]], - "adsorptively": null, - "adulate": [["G", "N", "D", "S", "X"]], - "adulating": null, - "adulation": [["M"]], - "adulated": null, - "adulates": null, - "adulations": null, - "adulation's": null, - "adulator": [["S", "M"]], - "adulators": null, - "adulator's": null, - "adulatory": null, - "adulterant": [["S", "M"]], - "adulterants": null, - "adulterant's": null, - "adulterated": [["U"]], - "unadulterated": [["Y"]], - "adulterate": [["N", "G", "S", "D", "X"]], - "adulteration": [["M"]], - "adulterating": null, - "adulterates": null, - "adulterations": null, - "adulteration's": null, - "adulterer": [["S", "M"]], - "adulterers": null, - "adulterer's": null, - "adulteress": [["M", "S"]], - "adulteress's": null, - "adulteresses": null, - "adulterous": [["Y"]], - "adulterously": null, - "adultery": [["S", "M"]], - "adulteries": null, - "adultery's": null, - "adulthood": [["M", "S"]], - "adulthood's": null, - "adulthoods": null, - "adult": [["M", "Y", "P", "S"]], - "adult's": null, - "adultly": null, - "adultness": [["M"]], - "adults": null, - "adultness's": null, - "adumbrate": [["X", "S", "D", "V", "G", "N"]], - "adumbrations": null, - "adumbrates": null, - "adumbrated": null, - "adumbrative": [["Y"]], - "adumbrating": null, - "adumbration": [["M"]], - "adumbration's": null, - "adumbratively": null, - "adv": null, - "advance": [["D", "S", "R", "L", "Z", "G"]], - "advanced": null, - "advances": null, - "advancer": [["M"]], - "advancement": [["M", "S"]], - "advancers": null, - "advancing": null, - "advancement's": null, - "advancements": null, - "advancer's": null, - "advantage": [["G", "M", "E", "D", "S"]], - "advantaging": null, - "disadvantaging": null, - "advantage's": null, - "disadvantage's": null, - "disadvantage": null, - "disadvantaged": [["P"]], - "disadvantages": null, - "advantaged": null, - "advantages": null, - "advantageous": [["E", "Y"]], - "disadvantageous": null, - "disadvantageously": null, - "advantageously": null, - "advantageousness": [["M"]], - "advantageousness's": null, - "Adventist": [["M"]], - "Adventist's": null, - "adventist": [["S"]], - "adventists": null, - "adventitiousness": [["M"]], - "adventitiousness's": null, - "adventitious": [["P", "Y"]], - "adventitiously": null, - "adventive": [["Y"]], - "adventively": null, - "Advent": [["S", "M"]], - "Advents": null, - "Advent's": null, - "advent": [["S", "V", "M"]], - "advents": null, - "advent's": null, - "adventurer": [["M"]], - "adventurer's": null, - "adventuresome": null, - "adventure": [["S", "R", "D", "G", "M", "Z"]], - "adventures": null, - "adventured": null, - "adventuring": null, - "adventure's": null, - "adventurers": null, - "adventuress": [["S", "M"]], - "adventuresses": null, - "adventuress's": null, - "adventurousness": [["S", "M"]], - "adventurousnesses": null, - "adventurousness's": null, - "adventurous": [["Y", "P"]], - "adventurously": null, - "adverbial": [["M", "Y", "S"]], - "adverbial's": null, - "adverbially": null, - "adverbials": null, - "adverb": [["S", "M"]], - "adverbs": null, - "adverb's": null, - "adversarial": null, - "adversary": [["S", "M"]], - "adversaries": null, - "adversary's": null, - "adverse": [["D", "S", "R", "P", "Y", "T", "G"]], - "adversed": null, - "adverses": null, - "adverser": null, - "adverseness": [["M", "S"]], - "adversely": null, - "adversest": null, - "adversing": null, - "adverseness's": null, - "adversenesses": null, - "adversity": [["S", "M"]], - "adversities": null, - "adversity's": null, - "advert": [["G", "S", "D"]], - "adverting": null, - "adverts": null, - "adverted": null, - "advertised": [["U"]], - "unadvertised": null, - "advertise": [["J", "G", "Z", "S", "R", "D", "L"]], - "advertisings": null, - "advertising": [["M"]], - "advertisers": null, - "advertises": null, - "advertiser": [["M"]], - "advertisement": [["S", "M"]], - "advertisements": null, - "advertisement's": null, - "advertiser's": null, - "advertising's": null, - "advertorial": [["S"]], - "advertorials": null, - "advice": [["S", "M"]], - "advices": null, - "advice's": null, - "Advil": [["M"]], - "Advil's": null, - "advisability": [["S", "I", "M"]], - "advisabilities": null, - "inadvisabilities": null, - "inadvisability": null, - "inadvisability's": null, - "advisability's": null, - "advisable": [["I"]], - "inadvisable": null, - "advisableness": [["M"]], - "advisableness's": null, - "advisably": null, - "advisedly": [["I"]], - "inadvisedly": null, - "advised": [["Y", "U"]], - "unadvisedly": null, - "unadvised": null, - "advisee": [["M", "S"]], - "advisee's": null, - "advisees": null, - "advisement": [["M", "S"]], - "advisement's": null, - "advisements": null, - "adviser": [["M"]], - "adviser's": null, - "advise": [["Z", "R", "S", "D", "G", "L", "B"]], - "advisers": null, - "advises": null, - "advising": null, - "advisor": [["S"]], - "advisors": null, - "advisor's": null, - "advisory": [["S"]], - "advisories": null, - "advocacy": [["S", "M"]], - "advocacies": null, - "advocacy's": null, - "advocate": [["N", "G", "V", "D", "S"]], - "advocation": [["M"]], - "advocating": null, - "advocative": null, - "advocated": null, - "advocates": null, - "advocation's": null, - "advt": null, - "adze's": null, - "adz": [["M", "D", "S", "G"]], - "adz's": null, - "adzed": null, - "adzes": null, - "adzing": null, - "Aegean": null, - "aegis": [["S", "M"]], - "aegises": null, - "aegis's": null, - "Aelfric": [["M"]], - "Aelfric's": null, - "Aeneas": null, - "Aeneid": [["M"]], - "Aeneid's": null, - "aeolian": null, - "Aeolus": [["M"]], - "Aeolus's": null, - "aeon's": null, - "aerate": [["X", "N", "G", "S", "D"]], - "aerations": null, - "aeration": [["M"]], - "aerating": null, - "aerates": null, - "aerated": null, - "aeration's": null, - "aerator": [["M", "S"]], - "aerator's": null, - "aerators": null, - "aerialist": [["M", "S"]], - "aerialist's": null, - "aerialists": null, - "aerial": [["S", "M", "Y"]], - "aerials": null, - "aerial's": null, - "aerially": null, - "Aeriela": [["M"]], - "Aeriela's": null, - "Aeriell": [["M"]], - "Aeriell's": null, - "Aeriel": [["M"]], - "Aeriel's": null, - "aerie": [["S", "R", "M", "T"]], - "aeries": null, - "aerier": null, - "aerie's": null, - "aeriest": null, - "aeroacoustic": null, - "aerobatic": [["S"]], - "aerobatics": null, - "aerobically": null, - "aerobic": [["S"]], - "aerobics": null, - "aerodrome": [["S", "M"]], - "aerodromes": null, - "aerodrome's": null, - "aerodynamically": null, - "aerodynamic": [["S"]], - "aerodynamics": [["M"]], - "aerodynamics's": null, - "aeronautical": [["Y"]], - "aeronautically": null, - "aeronautic": [["S"]], - "aeronautics": [["M"]], - "aeronautics's": null, - "aerosolize": [["D"]], - "aerosolized": null, - "aerosol": [["M", "S"]], - "aerosol's": null, - "aerosols": null, - "aerospace": [["S", "M"]], - "aerospaces": null, - "aerospace's": null, - "Aeschylus": [["M"]], - "Aeschylus's": null, - "Aesculapius": [["M"]], - "Aesculapius's": null, - "Aesop": [["M"]], - "Aesop's": null, - "aesthete": [["S"]], - "aesthetes": null, - "aesthetically": null, - "aestheticism": [["M", "S"]], - "aestheticism's": null, - "aestheticisms": null, - "aesthetics": [["M"]], - "aesthetics's": null, - "aesthetic": [["U"]], - "unaesthetic": null, - "aether": [["M"]], - "aether's": null, - "aetiology": [["M"]], - "aetiology's": null, - "AF": null, - "AFAIK": null, - "afar": [["S"]], - "afars": null, - "AFB": null, - "AFC": null, - "AFDC": null, - "affability": [["M", "S"]], - "affability's": null, - "affabilities": null, - "affable": [["T", "R"]], - "affablest": null, - "affabler": null, - "affably": null, - "affair": [["S", "M"]], - "affairs": null, - "affair's": null, - "affectation": [["M", "S"]], - "affectation's": null, - "affectations": null, - "affectedness": [["E", "M"]], - "disaffectedness": null, - "disaffectedness's": null, - "affectedness's": null, - "affected": [["U", "E", "Y", "P"]], - "unaffected": null, - "unaffectedly": null, - "unaffectedness": null, - "disaffected": null, - "disaffectedly": null, - "affectedly": null, - "affect": [["E", "G", "S", "D"]], - "disaffect": null, - "disaffecting": null, - "disaffects": null, - "affecting": [["Y"]], - "affects": null, - "affecter": [["M"]], - "affecter's": null, - "affectingly": null, - "affectionate": [["U", "Y"]], - "unaffectionate": null, - "unaffectionately": null, - "affectionately": null, - "affectioned": null, - "affection": [["E", "M", "S"]], - "disaffection": null, - "disaffection's": null, - "disaffections": null, - "affection's": null, - "affections": null, - "affectioning": null, - "affective": [["M", "Y"]], - "affective's": null, - "affectively": null, - "afferent": [["Y", "S"]], - "afferently": null, - "afferents": null, - "affiance": [["G", "D", "S"]], - "affiancing": null, - "affianced": null, - "affiances": null, - "affidavit": [["S", "M"]], - "affidavits": null, - "affidavit's": null, - "affiliated": [["U"]], - "unaffiliated": null, - "affiliate": [["E", "X", "S", "D", "N", "G"]], - "disaffiliate": null, - "disaffiliations": null, - "disaffiliates": null, - "disaffiliated": null, - "disaffiliation": null, - "disaffiliating": null, - "affiliations": null, - "affiliates": null, - "affiliation": [["E", "M"]], - "affiliating": null, - "disaffiliation's": null, - "affiliation's": null, - "affine": null, - "affinity": [["S", "M"]], - "affinities": null, - "affinity's": null, - "affirm": [["A", "S", "D", "G"]], - "reaffirm": null, - "reaffirms": null, - "reaffirmed": null, - "reaffirming": null, - "affirms": null, - "affirmed": null, - "affirming": null, - "affirmation": [["S", "A", "M"]], - "affirmations": null, - "reaffirmations": null, - "reaffirmation": null, - "reaffirmation's": null, - "affirmation's": null, - "affirmative": [["S", "Y"]], - "affirmatives": null, - "affirmatively": null, - "affix": [["S", "D", "G"]], - "affixes": null, - "affixed": null, - "affixing": null, - "afflatus": [["M", "S"]], - "afflatus's": null, - "afflatuses": null, - "afflict": [["G", "V", "D", "S"]], - "afflicting": null, - "afflictive": [["Y"]], - "afflicted": null, - "afflicts": null, - "affliction": [["S", "M"]], - "afflictions": null, - "affliction's": null, - "afflictively": null, - "affluence": [["S", "M"]], - "affluences": null, - "affluence's": null, - "affluent": [["Y", "S"]], - "affluently": null, - "affluents": null, - "afford": [["D", "S", "B", "G"]], - "afforded": null, - "affords": null, - "affordable": null, - "affording": null, - "afforest": [["A"]], - "reafforest": null, - "afforestation": [["S", "M"]], - "afforestations": null, - "afforestation's": null, - "afforested": null, - "afforesting": null, - "afforests": null, - "affray": [["M", "D", "S", "G"]], - "affray's": null, - "affrayed": null, - "affrays": null, - "affraying": null, - "affricate": [["V", "N", "M", "S"]], - "affricative": [["M"]], - "affrication": [["M"]], - "affricate's": null, - "affricates": null, - "affrication's": null, - "affricative's": null, - "affright": null, - "affront": [["G", "S", "D", "M"]], - "affronting": null, - "affronts": null, - "affronted": null, - "affront's": null, - "Afghani": [["S", "M"]], - "Afghanis": null, - "Afghani's": null, - "Afghanistan": [["M"]], - "Afghanistan's": null, - "afghan": [["M", "S"]], - "afghan's": null, - "afghans": null, - "Afghan": [["S", "M"]], - "Afghans": null, - "Afghan's": null, - "aficionado": [["M", "S"]], - "aficionado's": null, - "aficionados": null, - "afield": null, - "afire": null, - "aflame": null, - "afloat": null, - "aflutter": null, - "afoot": null, - "afore": null, - "aforementioned": null, - "aforesaid": null, - "aforethought": [["S"]], - "aforethoughts": null, - "afoul": null, - "Afr": null, - "afraid": [["U"]], - "unafraid": null, - "afresh": null, - "Africa": [["M"]], - "Africa's": null, - "African": [["M", "S"]], - "African's": null, - "Africans": null, - "Afrikaans": [["M"]], - "Afrikaans's": null, - "Afrikaner": [["S", "M"]], - "Afrikaners": null, - "Afrikaner's": null, - "afro": null, - "Afrocentric": null, - "Afrocentrism": [["S"]], - "Afrocentrisms": null, - "Afro": [["M", "S"]], - "Afro's": null, - "Afros": null, - "afterbirth": [["M"]], - "afterbirth's": null, - "afterbirths": null, - "afterburner": [["M", "S"]], - "afterburner's": null, - "afterburners": null, - "aftercare": [["S", "M"]], - "aftercares": null, - "aftercare's": null, - "aftereffect": [["M", "S"]], - "aftereffect's": null, - "aftereffects": null, - "afterglow": [["M", "S"]], - "afterglow's": null, - "afterglows": null, - "afterimage": [["M", "S"]], - "afterimage's": null, - "afterimages": null, - "afterlife": [["M"]], - "afterlife's": null, - "afterlives": null, - "aftermath": [["M"]], - "aftermath's": null, - "aftermaths": null, - "aftermost": null, - "afternoon": [["S", "M"]], - "afternoons": null, - "afternoon's": null, - "aftershave": [["S"]], - "aftershaves": null, - "aftershock": [["S", "M"]], - "aftershocks": null, - "aftershock's": null, - "afters": [["M"]], - "afters's": null, - "aftertaste": [["S", "M"]], - "aftertastes": null, - "aftertaste's": null, - "afterthought": [["M", "S"]], - "afterthought's": null, - "afterthoughts": null, - "afterward": [["S"]], - "afterwards": null, - "afterworld": [["M", "S"]], - "afterworld's": null, - "afterworlds": null, - "Afton": [["M"]], - "Afton's": null, - "aft": [["Z", "R"]], - "after": null, - "Agace": [["M"]], - "Agace's": null, - "again": null, - "against": null, - "Agamemnon": [["M"]], - "Agamemnon's": null, - "agapae": null, - "agape": [["S"]], - "agapes": null, - "agar": [["M", "S"]], - "agar's": null, - "agars": null, - "Agassiz": [["M"]], - "Agassiz's": null, - "Agata": [["M"]], - "Agata's": null, - "agate": [["S", "M"]], - "agates": null, - "agate's": null, - "Agatha": [["M"]], - "Agatha's": null, - "Agathe": [["M"]], - "Agathe's": null, - "agave": [["S", "M"]], - "agaves": null, - "agave's": null, - "agedness": [["M"]], - "agedness's": null, - "aged": [["P", "Y"]], - "agedly": null, - "age": [["G", "J", "D", "R", "S", "M", "Z"]], - "aging": null, - "agings": null, - "ager": null, - "ages": null, - "age's": null, - "agers": null, - "ageism": [["S"]], - "ageisms": null, - "ageist": [["S"]], - "ageists": null, - "agelessness": [["M", "S"]], - "agelessness's": null, - "agelessnesses": null, - "ageless": [["Y", "P"]], - "agelessly": null, - "agency": [["S", "M"]], - "agencies": null, - "agency's": null, - "agenda": [["M", "S"]], - "agenda's": null, - "agendas": null, - "agent": [["A", "M", "S"]], - "reagent": null, - "reagent's": null, - "reagents": null, - "agent's": null, - "agents": null, - "agented": null, - "agenting": null, - "agentive": null, - "ageratum": [["M"]], - "ageratum's": null, - "Aggie": [["M"]], - "Aggie's": null, - "Aggi": [["M"]], - "Aggi's": null, - "agglomerate": [["X", "N", "G", "V", "D", "S"]], - "agglomerations": null, - "agglomeration": [["M"]], - "agglomerating": null, - "agglomerative": null, - "agglomerated": null, - "agglomerates": null, - "agglomeration's": null, - "agglutinate": [["V", "N", "G", "X", "S", "D"]], - "agglutinative": null, - "agglutination": [["M"]], - "agglutinating": null, - "agglutinations": null, - "agglutinates": null, - "agglutinated": null, - "agglutination's": null, - "agglutinin": [["M", "S"]], - "agglutinin's": null, - "agglutinins": null, - "aggrandize": [["L", "D", "S", "G"]], - "aggrandizement": [["S", "M"]], - "aggrandized": null, - "aggrandizes": null, - "aggrandizing": null, - "aggrandizements": null, - "aggrandizement's": null, - "aggravate": [["S", "D", "N", "G", "X"]], - "aggravates": null, - "aggravated": null, - "aggravation": [["M"]], - "aggravating": [["Y"]], - "aggravations": null, - "aggravatingly": null, - "aggravation's": null, - "aggregated": [["U"]], - "unaggregated": null, - "aggregate": [["E", "G", "N", "V", "D"]], - "disaggregate": null, - "disaggregating": null, - "disaggregation": null, - "disaggregated": null, - "aggregating": null, - "aggregation": [["S", "M"]], - "aggregative": [["Y"]], - "aggregately": null, - "aggregateness": [["M"]], - "aggregateness's": null, - "aggregates": null, - "aggregations": null, - "aggregation's": null, - "aggregatively": null, - "aggression": [["S", "M"]], - "aggressions": null, - "aggression's": null, - "aggressively": null, - "aggressiveness": [["S"]], - "aggressivenesses": null, - "aggressive": [["U"]], - "unaggressive": null, - "aggressor": [["M", "S"]], - "aggressor's": null, - "aggressors": null, - "aggrieved": [["Y"]], - "aggrievedly": null, - "aggrieve": [["G", "D", "S"]], - "aggrieving": null, - "aggrieves": null, - "Aggy": [["S", "M"]], - "Aggies": null, - "Aggy's": null, - "aghast": null, - "agile": [["Y", "T", "R"]], - "agilely": null, - "agilest": null, - "agiler": null, - "agility": [["M", "S"]], - "agility's": null, - "agilities": null, - "agitated": [["Y"]], - "agitatedly": null, - "agitate": [["X", "V", "N", "G", "S", "D"]], - "agitations": null, - "agitative": null, - "agitation": [["M"]], - "agitating": null, - "agitates": null, - "agitation's": null, - "agitator": [["S", "M"]], - "agitators": null, - "agitator's": null, - "agitprop": [["M", "S"]], - "agitprop's": null, - "agitprops": null, - "Aglaia": [["M"]], - "Aglaia's": null, - "agleam": null, - "aglitter": null, - "aglow": null, - "Ag": [["M"]], - "Ag's": null, - "Agna": [["M"]], - "Agna's": null, - "Agnella": [["M"]], - "Agnella's": null, - "Agnese": [["M"]], - "Agnese's": null, - "Agnes": [["M"]], - "Agnes's": null, - "Agnesse": [["M"]], - "Agnesse's": null, - "Agneta": [["M"]], - "Agneta's": null, - "Agnew": [["M"]], - "Agnew's": null, - "Agni": [["M"]], - "Agni's": null, - "Agnola": [["M"]], - "Agnola's": null, - "agnosticism": [["M", "S"]], - "agnosticism's": null, - "agnosticisms": null, - "agnostic": [["S", "M"]], - "agnostics": null, - "agnostic's": null, - "ago": null, - "agog": null, - "agonizedly": [["S"]], - "agonizedlies": null, - "agonized": [["Y"]], - "agonize": [["Z", "G", "R", "S", "D"]], - "agonizers": null, - "agonizing": [["Y"]], - "agonizer": null, - "agonizes": null, - "agonizingly": null, - "agony": [["S", "M"]], - "agonies": null, - "agony's": null, - "agoraphobia": [["M", "S"]], - "agoraphobia's": null, - "agoraphobias": null, - "agoraphobic": [["S"]], - "agoraphobics": null, - "Agosto": [["M"]], - "Agosto's": null, - "Agra": [["M"]], - "Agra's": null, - "agrarianism": [["M", "S"]], - "agrarianism's": null, - "agrarianisms": null, - "agrarian": [["S"]], - "agrarians": null, - "agreeable": [["E", "P"]], - "disagreeable": [["S"]], - "disagreeableness": null, - "agreeableness": [["S", "M", "E"]], - "agreeablenesses": null, - "disagreeablenesses": null, - "agreeableness's": null, - "disagreeableness's": null, - "agreeably": [["E"]], - "disagreeably": null, - "agreeing": [["E"]], - "disagreeing": null, - "agree": [["L", "E", "B", "D", "S"]], - "agreement": [["E", "S", "M"]], - "disagreement": null, - "disagree": null, - "disagreed": null, - "disagrees": null, - "agreed": null, - "agrees": null, - "disagreements": null, - "disagreement's": null, - "agreements": null, - "agreement's": null, - "agreer": [["S"]], - "agreers": null, - "Agretha": [["M"]], - "Agretha's": null, - "agribusiness": [["S", "M"]], - "agribusinesses": null, - "agribusiness's": null, - "Agricola": [["M"]], - "Agricola's": null, - "agriculturalist": [["S"]], - "agriculturalists": null, - "agricultural": [["Y"]], - "agriculturally": null, - "agriculture": [["M", "S"]], - "agriculture's": null, - "agricultures": null, - "agriculturist": [["S", "M"]], - "agriculturists": null, - "agriculturist's": null, - "Agrippa": [["M"]], - "Agrippa's": null, - "Agrippina": [["M"]], - "Agrippina's": null, - "agrochemicals": null, - "agronomic": [["S"]], - "agronomics": null, - "agronomist": [["S", "M"]], - "agronomists": null, - "agronomist's": null, - "agronomy": [["M", "S"]], - "agronomy's": null, - "agronomies": null, - "aground": null, - "Aguascalientes": [["M"]], - "Aguascalientes's": null, - "ague": [["M", "S"]], - "ague's": null, - "agues": null, - "Aguie": [["M"]], - "Aguie's": null, - "Aguilar": [["M"]], - "Aguilar's": null, - "Aguinaldo": [["M"]], - "Aguinaldo's": null, - "Aguirre": [["M"]], - "Aguirre's": null, - "Aguistin": [["M"]], - "Aguistin's": null, - "Aguste": [["M"]], - "Aguste's": null, - "Agustin": [["M"]], - "Agustin's": null, - "ah": null, - "Ahab": [["M"]], - "Ahab's": null, - "Aharon": [["M"]], - "Aharon's": null, - "aha": [["S"]], - "ahas": null, - "ahead": null, - "ahem": [["S"]], - "ahems": null, - "Ahmadabad": null, - "Ahmad": [["M"]], - "Ahmad's": null, - "Ahmed": [["M"]], - "Ahmed's": null, - "ahoy": [["S"]], - "ahoys": null, - "Ahriman": [["M"]], - "Ahriman's": null, - "AI": null, - "Aida": [["M"]], - "Aida's": null, - "Aidan": [["M"]], - "Aidan's": null, - "aided": [["U"]], - "unaided": null, - "aide": [["M", "S"]], - "aide's": null, - "aides": null, - "aider": [["M"]], - "aider's": null, - "AIDS": null, - "aid": [["Z", "G", "D", "R", "S"]], - "aiders": null, - "aiding": null, - "aids": null, - "Aigneis": [["M"]], - "Aigneis's": null, - "aigrette": [["S", "M"]], - "aigrettes": null, - "aigrette's": null, - "Aiken": [["M"]], - "Aiken's": null, - "Aila": [["M"]], - "Aila's": null, - "Ailbert": [["M"]], - "Ailbert's": null, - "Ailee": [["M"]], - "Ailee's": null, - "Aileen": [["M"]], - "Aileen's": null, - "Aile": [["M"]], - "Aile's": null, - "Ailene": [["M"]], - "Ailene's": null, - "aileron": [["M", "S"]], - "aileron's": null, - "ailerons": null, - "Ailey": [["M"]], - "Ailey's": null, - "Ailina": [["M"]], - "Ailina's": null, - "Aili": [["S", "M"]], - "Ailis": null, - "Aili's": null, - "ail": [["L", "S", "D", "G"]], - "ailment": [["S", "M"]], - "ails": null, - "ailed": null, - "ailing": null, - "ailments": null, - "ailment's": null, - "Ailsun": [["M"]], - "Ailsun's": null, - "Ailyn": [["M"]], - "Ailyn's": null, - "Aimee": [["M"]], - "Aimee's": null, - "Aime": [["M"]], - "Aime's": null, - "aimer": [["M"]], - "aimer's": null, - "Aimil": [["M"]], - "Aimil's": null, - "aimlessness": [["M", "S"]], - "aimlessness's": null, - "aimlessnesses": null, - "aimless": [["Y", "P"]], - "aimlessly": null, - "aim": [["Z", "S", "G", "D", "R"]], - "aimers": null, - "aims": null, - "aiming": null, - "aimed": null, - "Aindrea": [["M"]], - "Aindrea's": null, - "Ainslee": [["M"]], - "Ainslee's": null, - "Ainsley": [["M"]], - "Ainsley's": null, - "Ainslie": [["M"]], - "Ainslie's": null, - "ain't": null, - "Ainu": [["M"]], - "Ainu's": null, - "airbag": [["M", "S"]], - "airbag's": null, - "airbags": null, - "airbase": [["S"]], - "airbases": null, - "airborne": null, - "airbrush": [["S", "D", "M", "G"]], - "airbrushes": null, - "airbrushed": null, - "airbrush's": null, - "airbrushing": null, - "Airbus": [["M"]], - "Airbus's": null, - "airbus": [["S", "M"]], - "airbuses": null, - "airbus's": null, - "aircraft": [["M", "S"]], - "aircraft's": null, - "aircrafts": null, - "aircrew": [["M"]], - "aircrew's": null, - "airdrop": [["M", "S"]], - "airdrop's": null, - "airdrops": null, - "airdropped": null, - "airdropping": null, - "Airedale": [["S", "M"]], - "Airedales": null, - "Airedale's": null, - "Aires": null, - "airfare": [["S"]], - "airfares": null, - "airfield": [["M", "S"]], - "airfield's": null, - "airfields": null, - "airflow": [["S", "M"]], - "airflows": null, - "airflow's": null, - "airfoil": [["M", "S"]], - "airfoil's": null, - "airfoils": null, - "airframe": [["M", "S"]], - "airframe's": null, - "airframes": null, - "airfreight": [["S", "G", "D"]], - "airfreights": null, - "airfreighting": null, - "airfreighted": null, - "airhead": [["M", "S"]], - "airhead's": null, - "airheads": null, - "airily": null, - "airiness": [["M", "S"]], - "airiness's": null, - "airinesses": null, - "airing": [["M"]], - "airing's": null, - "airlessness": [["S"]], - "airlessnesses": null, - "airless": [["P"]], - "airlift": [["M", "D", "S", "G"]], - "airlift's": null, - "airlifted": null, - "airlifts": null, - "airlifting": null, - "airliner": [["M"]], - "airliner's": null, - "airline": [["S", "R", "M", "Z"]], - "airlines": null, - "airline's": null, - "airliners": null, - "airlock": [["M", "S"]], - "airlock's": null, - "airlocks": null, - "airmail": [["D", "S", "G"]], - "airmailed": null, - "airmails": null, - "airmailing": null, - "airman": [["M"]], - "airman's": null, - "airmass": null, - "air": [["M", "D", "R", "T", "Z", "G", "J", "S"]], - "air's": null, - "aired": null, - "airer": null, - "airest": null, - "airers": null, - "airings": null, - "airs": null, - "airmen": null, - "airpark": null, - "airplane": [["S", "M"]], - "airplanes": null, - "airplane's": null, - "airplay": [["S"]], - "airplays": null, - "airport": [["M", "S"]], - "airport's": null, - "airports": null, - "airship": [["M", "S"]], - "airship's": null, - "airships": null, - "airsickness": [["S", "M"]], - "airsicknesses": null, - "airsickness's": null, - "airsick": [["P"]], - "airspace": [["S", "M"]], - "airspaces": null, - "airspace's": null, - "airspeed": [["S", "M"]], - "airspeeds": null, - "airspeed's": null, - "airstrip": [["M", "S"]], - "airstrip's": null, - "airstrips": null, - "airtightness": [["M"]], - "airtightness's": null, - "airtight": [["P"]], - "airtime": null, - "airwaves": null, - "airway": [["S", "M"]], - "airways": null, - "airway's": null, - "airworthiness": [["S", "M"]], - "airworthinesses": null, - "airworthiness's": null, - "airworthy": [["P", "T", "R"]], - "airworthiest": null, - "airworthier": null, - "airy": [["P", "R", "T"]], - "airier": null, - "airiest": null, - "Aisha": [["M"]], - "Aisha's": null, - "aisle": [["D", "S", "G", "M"]], - "aisled": null, - "aisles": null, - "aisling": null, - "aisle's": null, - "aitch": [["M", "S"]], - "aitch's": null, - "aitches": null, - "ajar": null, - "Ajax": [["M"]], - "Ajax's": null, - "Ajay": [["M"]], - "Ajay's": null, - "AK": null, - "aka": null, - "Akbar": [["M"]], - "Akbar's": null, - "Akihito": [["M"]], - "Akihito's": null, - "akimbo": null, - "Akim": [["M"]], - "Akim's": null, - "akin": null, - "Akita": [["M"]], - "Akita's": null, - "Akkad": [["M"]], - "Akkad's": null, - "Akron": [["M"]], - "Akron's": null, - "Aksel": [["M"]], - "Aksel's": null, - "AL": null, - "Alabama": [["M"]], - "Alabama's": null, - "Alabaman": [["S"]], - "Alabamans": null, - "Alabamian": [["M", "S"]], - "Alabamian's": null, - "Alabamians": null, - "alabaster": [["M", "S"]], - "alabaster's": null, - "alabasters": null, - "alack": [["S"]], - "alacks": null, - "alacrity": [["S", "M"]], - "alacrities": null, - "alacrity's": null, - "Aladdin": [["M"]], - "Aladdin's": null, - "Alaine": [["M"]], - "Alaine's": null, - "Alain": [["M"]], - "Alain's": null, - "Alair": [["M"]], - "Alair's": null, - "Alameda": [["M"]], - "Alameda's": null, - "Alamogordo": [["M"]], - "Alamogordo's": null, - "Alamo": [["S", "M"]], - "Alamos": null, - "Alamo's": null, - "ala": [["M", "S"]], - "ala's": null, - "alas": [["S"]], - "Ala": [["M", "S"]], - "Ala's": null, - "Alas": null, - "Alanah": [["M"]], - "Alanah's": null, - "Alana": [["M"]], - "Alana's": null, - "Aland": [["M"]], - "Aland's": null, - "Alane": [["M"]], - "Alane's": null, - "alanine": [["M"]], - "alanine's": null, - "Alan": [["M"]], - "Alan's": null, - "Alanna": [["M"]], - "Alanna's": null, - "Alano": [["M"]], - "Alano's": null, - "Alanson": [["M"]], - "Alanson's": null, - "Alard": [["M"]], - "Alard's": null, - "Alaric": [["M"]], - "Alaric's": null, - "Alar": [["M"]], - "Alar's": null, - "alarming": [["Y"]], - "alarmingly": null, - "alarmist": [["M", "S"]], - "alarmist's": null, - "alarmists": null, - "alarm": [["S", "D", "G"]], - "alarms": null, - "alarmed": null, - "Alasdair": [["M"]], - "Alasdair's": null, - "Alaska": [["M"]], - "Alaska's": null, - "Alaskan": [["S"]], - "Alaskans": null, - "alases": null, - "Alastair": [["M"]], - "Alastair's": null, - "Alasteir": [["M"]], - "Alasteir's": null, - "Alaster": [["M"]], - "Alaster's": null, - "Alayne": [["M"]], - "Alayne's": null, - "albacore": [["S", "M"]], - "albacores": null, - "albacore's": null, - "alba": [["M"]], - "alba's": null, - "Alba": [["M"]], - "Alba's": null, - "Albania": [["M"]], - "Albania's": null, - "Albanian": [["S", "M"]], - "Albanians": null, - "Albanian's": null, - "Albany": [["M"]], - "Albany's": null, - "albatross": [["S", "M"]], - "albatrosses": null, - "albatross's": null, - "albedo": [["M"]], - "albedo's": null, - "Albee": [["M"]], - "Albee's": null, - "albeit": null, - "Alberich": [["M"]], - "Alberich's": null, - "Alberik": [["M"]], - "Alberik's": null, - "Alberio": [["M"]], - "Alberio's": null, - "Alberta": [["M"]], - "Alberta's": null, - "Albertan": [["S"]], - "Albertans": null, - "Albertina": [["M"]], - "Albertina's": null, - "Albertine": [["M"]], - "Albertine's": null, - "Albert": [["M"]], - "Albert's": null, - "Alberto": [["M"]], - "Alberto's": null, - "Albie": [["M"]], - "Albie's": null, - "Albigensian": null, - "Albina": [["M"]], - "Albina's": null, - "albinism": [["S", "M"]], - "albinisms": null, - "albinism's": null, - "albino": [["M", "S"]], - "albino's": null, - "albinos": null, - "Albion": [["M"]], - "Albion's": null, - "Albireo": [["M"]], - "Albireo's": null, - "alb": [["M", "S"]], - "alb's": null, - "albs": null, - "Albrecht": [["M"]], - "Albrecht's": null, - "albumen": [["M"]], - "albumen's": null, - "albumin": [["M", "S"]], - "albumin's": null, - "albumins": null, - "albuminous": null, - "album": [["M", "N", "X", "S"]], - "album's": null, - "albumens": null, - "albums": null, - "Albuquerque": [["M"]], - "Albuquerque's": null, - "Alcatraz": [["M"]], - "Alcatraz's": null, - "Alcestis": [["M"]], - "Alcestis's": null, - "alchemical": null, - "alchemist": [["S", "M"]], - "alchemists": null, - "alchemist's": null, - "alchemy": [["M", "S"]], - "alchemy's": null, - "alchemies": null, - "Alcibiades": [["M"]], - "Alcibiades's": null, - "Alcmena": [["M"]], - "Alcmena's": null, - "Alcoa": [["M"]], - "Alcoa's": null, - "alcoholically": null, - "alcoholic": [["M", "S"]], - "alcoholic's": null, - "alcoholics": null, - "alcoholism": [["S", "M"]], - "alcoholisms": null, - "alcoholism's": null, - "alcohol": [["M", "S"]], - "alcohol's": null, - "alcohols": null, - "Alcott": [["M"]], - "Alcott's": null, - "alcove": [["M", "S", "D"]], - "alcove's": null, - "alcoves": null, - "alcoved": null, - "Alcuin": [["M"]], - "Alcuin's": null, - "Alcyone": [["M"]], - "Alcyone's": null, - "Aldan": [["M"]], - "Aldan's": null, - "Aldebaran": [["M"]], - "Aldebaran's": null, - "aldehyde": [["M"]], - "aldehyde's": null, - "Alden": [["M"]], - "Alden's": null, - "Alderamin": [["M"]], - "Alderamin's": null, - "alderman": [["M"]], - "alderman's": null, - "aldermen": null, - "alder": [["S", "M"]], - "alders": null, - "alder's": null, - "alderwoman": null, - "alderwomen": null, - "Aldin": [["M"]], - "Aldin's": null, - "Aldis": [["M"]], - "Aldis's": null, - "Aldo": [["M"]], - "Aldo's": null, - "Aldon": [["M"]], - "Aldon's": null, - "Aldous": [["M"]], - "Aldous's": null, - "Aldrich": [["M"]], - "Aldrich's": null, - "Aldric": [["M"]], - "Aldric's": null, - "Aldridge": [["M"]], - "Aldridge's": null, - "Aldrin": [["M"]], - "Aldrin's": null, - "Aldus": [["M"]], - "Aldus's": null, - "Aldwin": [["M"]], - "Aldwin's": null, - "aleatory": null, - "Alecia": [["M"]], - "Alecia's": null, - "Aleck": [["M"]], - "Aleck's": null, - "Alec": [["M"]], - "Alec's": null, - "Aleda": [["M"]], - "Aleda's": null, - "alee": null, - "Aleece": [["M"]], - "Aleece's": null, - "Aleen": [["M"]], - "Aleen's": null, - "alehouse": [["M", "S"]], - "alehouse's": null, - "alehouses": null, - "Aleichem": [["M"]], - "Aleichem's": null, - "Alejandra": [["M"]], - "Alejandra's": null, - "Alejandrina": [["M"]], - "Alejandrina's": null, - "Alejandro": [["M"]], - "Alejandro's": null, - "Alejoa": [["M"]], - "Alejoa's": null, - "Aleksandr": [["M"]], - "Aleksandr's": null, - "Alembert": [["M"]], - "Alembert's": null, - "alembic": [["S", "M"]], - "alembics": null, - "alembic's": null, - "ale": [["M", "V", "S"]], - "ale's": null, - "alive": [["P"]], - "ales": null, - "Alena": [["M"]], - "Alena's": null, - "Alene": [["M"]], - "Alene's": null, - "aleph": [["M"]], - "aleph's": null, - "Aleppo": [["M"]], - "Aleppo's": null, - "Aler": [["M"]], - "Aler's": null, - "alerted": [["Y"]], - "alertedly": null, - "alertness": [["M", "S"]], - "alertness's": null, - "alertnesses": null, - "alert": [["S", "T", "Z", "G", "P", "R", "D", "Y"]], - "alerts": null, - "alertest": null, - "alerters": null, - "alerting": null, - "alerter": null, - "alertly": null, - "Alessandra": [["M"]], - "Alessandra's": null, - "Alessandro": [["M"]], - "Alessandro's": null, - "Aleta": [["M"]], - "Aleta's": null, - "Alethea": [["M"]], - "Alethea's": null, - "Aleutian": [["S"]], - "Aleutians": null, - "Aleut": [["S", "M"]], - "Aleuts": null, - "Aleut's": null, - "alewife": [["M"]], - "alewife's": null, - "alewives": null, - "Alexa": [["M"]], - "Alexa's": null, - "Alexander": [["S", "M"]], - "Alexanders": null, - "Alexander's": null, - "Alexandra": [["M"]], - "Alexandra's": null, - "Alexandre": [["M"]], - "Alexandre's": null, - "Alexandria": [["M"]], - "Alexandria's": null, - "Alexandrian": [["S"]], - "Alexandrians": null, - "Alexandrina": [["M"]], - "Alexandrina's": null, - "Alexandr": [["M"]], - "Alexandr's": null, - "Alexandro": [["M", "S"]], - "Alexandro's": null, - "Alexandros": null, - "Alexei": [["M"]], - "Alexei's": null, - "Alexia": [["M"]], - "Alexia's": null, - "Alexina": [["M"]], - "Alexina's": null, - "Alexine": [["M"]], - "Alexine's": null, - "Alexio": [["M"]], - "Alexio's": null, - "Alexi": [["S", "M"]], - "Alexis": null, - "Alexi's": null, - "Alex": [["M"]], - "Alex's": null, - "alfalfa": [["M", "S"]], - "alfalfa's": null, - "alfalfas": null, - "Alfa": [["M"]], - "Alfa's": null, - "Alfie": [["M"]], - "Alfie's": null, - "Alfi": [["M"]], - "Alfi's": null, - "Alf": [["M"]], - "Alf's": null, - "Alfonse": [["M"]], - "Alfonse's": null, - "Alfons": [["M"]], - "Alfons's": null, - "Alfonso": [["M"]], - "Alfonso's": null, - "Alfonzo": [["M"]], - "Alfonzo's": null, - "Alford": [["M"]], - "Alford's": null, - "Alfreda": [["M"]], - "Alfreda's": null, - "Alfred": [["M"]], - "Alfred's": null, - "Alfredo": [["M"]], - "Alfredo's": null, - "alfresco": null, - "Alfy": [["M"]], - "Alfy's": null, - "algae": null, - "algaecide": null, - "algal": null, - "alga": [["M"]], - "alga's": null, - "algebraic": null, - "algebraical": [["Y"]], - "algebraically": null, - "algebraist": [["M"]], - "algebraist's": null, - "algebra": [["M", "S"]], - "algebra's": null, - "algebras": null, - "Algenib": [["M"]], - "Algenib's": null, - "Algeria": [["M"]], - "Algeria's": null, - "Algerian": [["M", "S"]], - "Algerian's": null, - "Algerians": null, - "Alger": [["M"]], - "Alger's": null, - "Algernon": [["M"]], - "Algernon's": null, - "Algieba": [["M"]], - "Algieba's": null, - "Algiers": [["M"]], - "Algiers's": null, - "alginate": [["S", "M"]], - "alginates": null, - "alginate's": null, - "ALGOL": null, - "Algol": [["M"]], - "Algol's": null, - "Algonquian": [["S", "M"]], - "Algonquians": null, - "Algonquian's": null, - "Algonquin": [["S", "M"]], - "Algonquins": null, - "Algonquin's": null, - "algorithmic": null, - "algorithmically": null, - "algorithm": [["M", "S"]], - "algorithm's": null, - "algorithms": null, - "Alhambra": [["M"]], - "Alhambra's": null, - "Alhena": [["M"]], - "Alhena's": null, - "Alia": [["M"]], - "Alia's": null, - "alias": [["G", "S", "D"]], - "aliasing": null, - "aliases": null, - "aliased": null, - "alibi": [["M", "D", "S", "G"]], - "alibi's": null, - "alibied": null, - "alibis": null, - "alibiing": null, - "Alica": [["M"]], - "Alica's": null, - "Alicea": [["M"]], - "Alicea's": null, - "Alice": [["M"]], - "Alice's": null, - "Alicia": [["M"]], - "Alicia's": null, - "Alick": [["M"]], - "Alick's": null, - "Alic": [["M"]], - "Alic's": null, - "Alida": [["M"]], - "Alida's": null, - "Alidia": [["M"]], - "Alidia's": null, - "Alie": [["M"]], - "Alie's": null, - "alienable": [["I", "U"]], - "inalienable": null, - "unalienable": null, - "alienate": [["S", "D", "N", "G", "X"]], - "alienates": null, - "alienated": null, - "alienation": [["M"]], - "alienating": null, - "alienations": null, - "alienation's": null, - "alienist": [["M", "S"]], - "alienist's": null, - "alienists": null, - "alien": [["R", "D", "G", "M", "B", "S"]], - "aliener": null, - "aliened": null, - "aliening": null, - "alien's": null, - "aliens": null, - "Alighieri": [["M"]], - "Alighieri's": null, - "alight": [["D", "S", "G"]], - "alighted": null, - "alights": null, - "alighting": null, - "aligned": [["U"]], - "unaligned": null, - "aligner": [["S", "M"]], - "aligners": null, - "aligner's": null, - "align": [["L", "A", "S", "D", "G"]], - "alignment": [["S", "A", "M"]], - "realignment": null, - "realign": null, - "realigns": null, - "realigned": null, - "realigning": null, - "aligns": null, - "aligning": null, - "alignments": null, - "realignments": null, - "realignment's": null, - "alignment's": null, - "Alika": [["M"]], - "Alika's": null, - "Alikee": [["M"]], - "Alikee's": null, - "alikeness": [["M"]], - "alikeness's": null, - "alike": [["U"]], - "unalike": null, - "alimentary": null, - "aliment": [["S", "D", "M", "G"]], - "aliments": null, - "alimented": null, - "aliment's": null, - "alimenting": null, - "alimony": [["M", "S"]], - "alimony's": null, - "alimonies": null, - "Ali": [["M", "S"]], - "Ali's": null, - "Alis": null, - "Alina": [["M"]], - "Alina's": null, - "Aline": [["M"]], - "Aline's": null, - "alinement's": null, - "Alioth": [["M"]], - "Alioth's": null, - "aliquot": [["S"]], - "aliquots": null, - "Alisa": [["M"]], - "Alisa's": null, - "Alisander": [["M"]], - "Alisander's": null, - "Alisha": [["M"]], - "Alisha's": null, - "Alison": [["M"]], - "Alison's": null, - "Alissa": [["M"]], - "Alissa's": null, - "Alistair": [["M"]], - "Alistair's": null, - "Alister": [["M"]], - "Alister's": null, - "Alisun": [["M"]], - "Alisun's": null, - "aliveness": [["M", "S"]], - "aliveness's": null, - "alivenesses": null, - "Alix": [["M"]], - "Alix's": null, - "aliyah": [["M"]], - "aliyah's": null, - "aliyahs": null, - "Aliza": [["M"]], - "Aliza's": null, - "Alkaid": [["M"]], - "Alkaid's": null, - "alkalies": null, - "alkali": [["M"]], - "alkali's": null, - "alkaline": null, - "alkalinity": [["M", "S"]], - "alkalinity's": null, - "alkalinities": null, - "alkalize": [["S", "D", "G"]], - "alkalizes": null, - "alkalized": null, - "alkalizing": null, - "alkaloid": [["M", "S"]], - "alkaloid's": null, - "alkaloids": null, - "alkyd": [["S"]], - "alkyds": null, - "alkyl": [["M"]], - "alkyl's": null, - "Allahabad": [["M"]], - "Allahabad's": null, - "Allah": [["M"]], - "Allah's": null, - "Alla": [["M"]], - "Alla's": null, - "Allan": [["M"]], - "Allan's": null, - "Allard": [["M"]], - "Allard's": null, - "allay": [["G", "D", "S"]], - "allaying": null, - "allayed": null, - "allays": null, - "Allayne": [["M"]], - "Allayne's": null, - "Alleen": [["M"]], - "Alleen's": null, - "allegation": [["S", "M"]], - "allegations": null, - "allegation's": null, - "alleged": [["Y"]], - "allegedly": null, - "allege": [["S", "D", "G"]], - "alleges": null, - "alleging": null, - "Allegheny": [["M", "S"]], - "Allegheny's": null, - "Alleghenies": null, - "allegiance": [["S", "M"]], - "allegiances": null, - "allegiance's": null, - "allegiant": null, - "allegoric": null, - "allegoricalness": [["M"]], - "allegoricalness's": null, - "allegorical": [["Y", "P"]], - "allegorically": null, - "allegorist": [["M", "S"]], - "allegorist's": null, - "allegorists": null, - "allegory": [["S", "M"]], - "allegories": null, - "allegory's": null, - "Allegra": [["M"]], - "Allegra's": null, - "allegretto": [["M", "S"]], - "allegretto's": null, - "allegrettos": null, - "allegri": null, - "allegro": [["M", "S"]], - "allegro's": null, - "allegros": null, - "allele": [["S", "M"]], - "alleles": null, - "allele's": null, - "alleluia": [["S"]], - "alleluias": null, - "allemande": [["M"]], - "allemande's": null, - "Allendale": [["M"]], - "Allendale's": null, - "Allende": [["M"]], - "Allende's": null, - "Allene": [["M"]], - "Allene's": null, - "Allen": [["M"]], - "Allen's": null, - "Allentown": [["M"]], - "Allentown's": null, - "allergenic": null, - "allergen": [["M", "S"]], - "allergen's": null, - "allergens": null, - "allergic": null, - "allergically": null, - "allergist": [["M", "S"]], - "allergist's": null, - "allergists": null, - "allergy": [["M", "S"]], - "allergy's": null, - "allergies": null, - "alleviate": [["S", "D", "V", "G", "N", "X"]], - "alleviates": null, - "alleviated": null, - "alleviative": null, - "alleviating": null, - "alleviation": [["M"]], - "alleviations": null, - "alleviation's": null, - "alleviator": [["M", "S"]], - "alleviator's": null, - "alleviators": null, - "Alley": [["M"]], - "Alley's": null, - "alley": [["M", "S"]], - "alley's": null, - "alleys": null, - "Alleyn": [["M"]], - "Alleyn's": null, - "alleyway": [["M", "S"]], - "alleyway's": null, - "alleyways": null, - "Allhallows": null, - "alliance": [["M", "S"]], - "alliance's": null, - "alliances": null, - "Allianora": [["M"]], - "Allianora's": null, - "Allie": [["M"]], - "Allie's": null, - "allier": null, - "allies": [["M"]], - "allies's": null, - "alligator": [["D", "M", "G", "S"]], - "alligatored": null, - "alligator's": null, - "alligatoring": null, - "alligators": null, - "Alli": [["M", "S"]], - "Alli's": null, - "Allis": null, - "Allina": [["M"]], - "Allina's": null, - "Allin": [["M"]], - "Allin's": null, - "Allison": [["M"]], - "Allison's": null, - "Allissa": [["M"]], - "Allissa's": null, - "Allister": [["M"]], - "Allister's": null, - "Allistir": [["M"]], - "Allistir's": null, - "alliterate": [["X", "V", "N", "G", "S", "D"]], - "alliterations": null, - "alliterative": [["Y"]], - "alliteration": [["M"]], - "alliterating": null, - "alliterates": null, - "alliterated": null, - "alliteration's": null, - "alliteratively": null, - "Allix": [["M"]], - "Allix's": null, - "allocable": [["U"]], - "unallocable": null, - "allocatable": null, - "allocate": [["A", "C", "S", "D", "N", "G", "X"]], - "reallocate": null, - "reallocates": null, - "reallocated": null, - "reallocation": null, - "reallocating": null, - "reallocations": null, - "deallocate": null, - "deallocates": null, - "deallocated": null, - "deallocation": null, - "deallocating": null, - "deallocations": null, - "allocates": null, - "allocated": [["U"]], - "allocation": [["A", "M", "C"]], - "allocating": null, - "allocations": null, - "unallocated": null, - "reallocation's": null, - "allocation's": null, - "deallocation's": null, - "allocative": null, - "allocator": [["A", "M", "S"]], - "reallocator": null, - "reallocator's": null, - "reallocators": null, - "allocator's": null, - "allocators": null, - "allophone": [["M", "S"]], - "allophone's": null, - "allophones": null, - "allophonic": null, - "allotment": [["M", "S"]], - "allotment's": null, - "allotments": [["A"]], - "reallotments": null, - "allotrope": [["M"]], - "allotrope's": null, - "allotropic": null, - "allots": [["A"]], - "reallots": null, - "allot": [["S", "D", "L"]], - "alloted": null, - "allotted": [["A"]], - "reallotted": null, - "allotter": [["M"]], - "allotter's": null, - "allotting": [["A"]], - "reallotting": null, - "allover": [["S"]], - "allovers": null, - "allowableness": [["M"]], - "allowableness's": null, - "allowable": [["P"]], - "allowably": null, - "allowance": [["G", "S", "D", "M"]], - "allowancing": null, - "allowances": null, - "allowanced": null, - "allowance's": null, - "allowed": [["Y"]], - "allowedly": null, - "allowing": [["E"]], - "disallowing": null, - "allow": [["S", "B", "G", "D"]], - "allows": [["E"]], - "disallows": null, - "alloyed": [["U"]], - "unalloyed": null, - "alloy": [["S", "G", "M", "D"]], - "alloys": null, - "alloying": null, - "alloy's": null, - "all": [["S"]], - "alls": null, - "allspice": [["M", "S"]], - "allspice's": null, - "allspices": null, - "Allstate": [["M"]], - "Allstate's": null, - "Allsun": [["M"]], - "Allsun's": null, - "allude": [["G", "S", "D"]], - "alluding": null, - "alludes": null, - "alluded": null, - "allure": [["G", "L", "S", "D"]], - "alluring": [["Y"]], - "allurement": [["S", "M"]], - "allures": null, - "allured": null, - "allurements": null, - "allurement's": null, - "alluringly": null, - "allusion": [["M", "S"]], - "allusion's": null, - "allusions": null, - "allusiveness": [["M", "S"]], - "allusiveness's": null, - "allusivenesses": null, - "allusive": [["P", "Y"]], - "allusively": null, - "alluvial": [["S"]], - "alluvials": null, - "alluvions": null, - "alluvium": [["M", "S"]], - "alluvium's": null, - "alluviums": null, - "Allx": [["M"]], - "Allx's": null, - "ally": [["A", "S", "D", "G"]], - "really": null, - "reallies": null, - "reallied": null, - "reallying": null, - "allied": null, - "allying": null, - "Allyce": [["M"]], - "Allyce's": null, - "Ally": [["M", "S"]], - "Ally's": null, - "Allies": null, - "Allyn": [["M"]], - "Allyn's": null, - "Allys": null, - "Allyson": [["M"]], - "Allyson's": null, - "alma": null, - "Almach": [["M"]], - "Almach's": null, - "Almaden": [["M"]], - "Almaden's": null, - "almagest": null, - "Alma": [["M"]], - "Alma's": null, - "almanac": [["M", "S"]], - "almanac's": null, - "almanacs": null, - "Almaty": [["M"]], - "Almaty's": null, - "Almeda": [["M"]], - "Almeda's": null, - "Almeria": [["M"]], - "Almeria's": null, - "Almeta": [["M"]], - "Almeta's": null, - "almightiness": [["M"]], - "almightiness's": null, - "Almighty": [["M"]], - "Almighty's": null, - "almighty": [["P"]], - "Almira": [["M"]], - "Almira's": null, - "Almire": [["M"]], - "Almire's": null, - "almond": [["S", "M"]], - "almonds": null, - "almond's": null, - "almoner": [["M", "S"]], - "almoner's": null, - "almoners": null, - "almost": null, - "Al": [["M", "R", "Y"]], - "Al's": null, - "alms": [["A"]], - "realms": null, - "almshouse": [["S", "M"]], - "almshouses": null, - "almshouse's": null, - "almsman": [["M"]], - "almsman's": null, - "alnico": null, - "Alnilam": [["M"]], - "Alnilam's": null, - "Alnitak": [["M"]], - "Alnitak's": null, - "aloe": [["M", "S"]], - "aloe's": null, - "aloes": null, - "aloft": null, - "aloha": [["S", "M"]], - "alohas": null, - "aloha's": null, - "Aloin": [["M"]], - "Aloin's": null, - "Aloise": [["M"]], - "Aloise's": null, - "Aloisia": [["M"]], - "Aloisia's": null, - "aloneness": [["M"]], - "aloneness's": null, - "alone": [["P"]], - "along": null, - "alongshore": null, - "alongside": null, - "Alon": [["M"]], - "Alon's": null, - "Alonso": [["M"]], - "Alonso's": null, - "Alonzo": [["M"]], - "Alonzo's": null, - "aloofness": [["M", "S"]], - "aloofness's": null, - "aloofnesses": null, - "aloof": [["Y", "P"]], - "aloofly": null, - "aloud": null, - "Aloysia": [["M"]], - "Aloysia's": null, - "Aloysius": [["M"]], - "Aloysius's": null, - "alpaca": [["S", "M"]], - "alpacas": null, - "alpaca's": null, - "Alpert": [["M"]], - "Alpert's": null, - "alphabetical": [["Y"]], - "alphabetically": null, - "alphabetic": [["S"]], - "alphabetics": null, - "alphabetization": [["S", "M"]], - "alphabetizations": null, - "alphabetization's": null, - "alphabetizer": [["M"]], - "alphabetizer's": null, - "alphabetize": [["S", "R", "D", "G", "Z"]], - "alphabetizes": null, - "alphabetized": null, - "alphabetizing": null, - "alphabetizers": null, - "alphabet": [["S", "G", "D", "M"]], - "alphabets": null, - "alphabeting": null, - "alphabeted": null, - "alphabet's": null, - "alpha": [["M", "S"]], - "alpha's": null, - "alphas": null, - "alphanumerical": [["Y"]], - "alphanumerically": null, - "alphanumeric": [["S"]], - "alphanumerics": null, - "Alphard": [["M"]], - "Alphard's": null, - "Alphecca": [["M"]], - "Alphecca's": null, - "Alpheratz": [["M"]], - "Alpheratz's": null, - "Alphonse": [["M"]], - "Alphonse's": null, - "Alphonso": [["M"]], - "Alphonso's": null, - "Alpine": null, - "alpine": [["S"]], - "alpines": null, - "alp": [["M", "S"]], - "alp's": null, - "alps": null, - "Alps": null, - "already": null, - "Alric": [["M"]], - "Alric's": null, - "alright": null, - "Alsace": [["M"]], - "Alsace's": null, - "Alsatian": [["M", "S"]], - "Alsatian's": null, - "Alsatians": null, - "also": null, - "Alsop": [["M"]], - "Alsop's": null, - "Alston": [["M"]], - "Alston's": null, - "Altaic": [["M"]], - "Altaic's": null, - "Altai": [["M"]], - "Altai's": null, - "Altair": [["M"]], - "Altair's": null, - "Alta": [["M"]], - "Alta's": null, - "altar": [["M", "S"]], - "altar's": null, - "altars": null, - "altarpiece": [["S", "M"]], - "altarpieces": null, - "altarpiece's": null, - "alterable": [["U", "I"]], - "unalterable": [["P"]], - "inalterable": [["P"]], - "alteration": [["M", "S"]], - "alteration's": null, - "alterations": null, - "altercate": [["N", "X"]], - "altercation": [["M"]], - "altercations": null, - "altercation's": null, - "altered": [["U"]], - "unaltered": null, - "alternate": [["S", "D", "V", "G", "N", "Y", "X"]], - "alternates": null, - "alternated": null, - "alternative": [["Y", "M", "S", "P"]], - "alternating": null, - "alternation": [["M"]], - "alternately": null, - "alternations": null, - "alternation's": null, - "alternativeness": [["M"]], - "alternativeness's": null, - "alternatively": null, - "alternative's": null, - "alternatives": null, - "alternator": [["M", "S"]], - "alternator's": null, - "alternators": null, - "alter": [["R", "D", "Z", "B", "G"]], - "alterer": null, - "alterers": null, - "altering": null, - "Althea": [["M"]], - "Althea's": null, - "although": null, - "altimeter": [["S", "M"]], - "altimeters": null, - "altimeter's": null, - "Altiplano": [["M"]], - "Altiplano's": null, - "altitude": [["S", "M"]], - "altitudes": null, - "altitude's": null, - "altogether": [["S"]], - "altogethers": null, - "Alton": [["M"]], - "Alton's": null, - "alto": [["S", "M"]], - "altos": null, - "alto's": null, - "Altos": [["M"]], - "Altos's": null, - "altruism": [["S", "M"]], - "altruisms": null, - "altruism's": null, - "altruistic": null, - "altruistically": null, - "altruist": [["S", "M"]], - "altruists": null, - "altruist's": null, - "alt": [["R", "Z", "S"]], - "alters": null, - "alts": null, - "ALU": null, - "Aludra": [["M"]], - "Aludra's": null, - "Aluin": [["M"]], - "Aluin's": null, - "Aluino": [["M"]], - "Aluino's": null, - "alumina": [["S", "M"]], - "aluminas": null, - "alumina's": null, - "aluminum": [["M", "S"]], - "aluminum's": null, - "aluminums": null, - "alumnae": null, - "alumna": [["M"]], - "alumna's": null, - "alumni": null, - "alumnus": [["M", "S"]], - "alumnus's": null, - "alumnuses": null, - "alum": [["S", "M"]], - "alums": null, - "alum's": null, - "alundum": null, - "Alva": [["M"]], - "Alva's": null, - "Alvan": [["M"]], - "Alvan's": null, - "Alvarado": [["M"]], - "Alvarado's": null, - "Alvarez": [["M"]], - "Alvarez's": null, - "Alvaro": [["M"]], - "Alvaro's": null, - "alveolar": [["Y"]], - "alveolarly": null, - "alveoli": null, - "alveolus": [["M"]], - "alveolus's": null, - "Alvera": [["M"]], - "Alvera's": null, - "Alverta": [["M"]], - "Alverta's": null, - "Alvie": [["M"]], - "Alvie's": null, - "Alvina": [["M"]], - "Alvina's": null, - "Alvinia": [["M"]], - "Alvinia's": null, - "Alvin": [["M"]], - "Alvin's": null, - "Alvira": [["M"]], - "Alvira's": null, - "Alvis": [["M"]], - "Alvis's": null, - "Alvy": [["M"]], - "Alvy's": null, - "alway": [["S"]], - "always": null, - "Alwin": [["M"]], - "Alwin's": null, - "Alwyn": [["M"]], - "Alwyn's": null, - "Alyce": [["M"]], - "Alyce's": null, - "Alyda": [["M"]], - "Alyda's": null, - "Alyosha": [["M"]], - "Alyosha's": null, - "Alysa": [["M"]], - "Alysa's": null, - "Alyse": [["M"]], - "Alyse's": null, - "Alysia": [["M"]], - "Alysia's": null, - "Alys": [["M"]], - "Alys's": null, - "Alyson": [["M"]], - "Alyson's": null, - "Alyss": null, - "Alyssa": [["M"]], - "Alyssa's": null, - "Alzheimer": [["M"]], - "Alzheimer's": null, - "AM": null, - "AMA": null, - "Amabelle": [["M"]], - "Amabelle's": null, - "Amabel": [["M"]], - "Amabel's": null, - "Amadeus": [["M"]], - "Amadeus's": null, - "Amado": [["M"]], - "Amado's": null, - "amain": null, - "Amalea": [["M"]], - "Amalea's": null, - "Amalee": [["M"]], - "Amalee's": null, - "Amaleta": [["M"]], - "Amaleta's": null, - "amalgamate": [["V", "N", "G", "X", "S", "D"]], - "amalgamative": null, - "amalgamation": [["M"]], - "amalgamating": null, - "amalgamations": null, - "amalgamates": null, - "amalgamated": null, - "amalgamation's": null, - "amalgam": [["M", "S"]], - "amalgam's": null, - "amalgams": null, - "Amalia": [["M"]], - "Amalia's": null, - "Amalie": [["M"]], - "Amalie's": null, - "Amalita": [["M"]], - "Amalita's": null, - "Amalle": [["M"]], - "Amalle's": null, - "Amanda": [["M"]], - "Amanda's": null, - "Amandie": [["M"]], - "Amandie's": null, - "Amandi": [["M"]], - "Amandi's": null, - "Amandy": [["M"]], - "Amandy's": null, - "amanuenses": null, - "amanuensis": [["M"]], - "amanuensis's": null, - "Amara": [["M"]], - "Amara's": null, - "amaranth": [["M"]], - "amaranth's": null, - "amaranths": null, - "amaretto": [["S"]], - "amarettos": null, - "Amargo": [["M"]], - "Amargo's": null, - "Amarillo": [["M"]], - "Amarillo's": null, - "amaryllis": [["M", "S"]], - "amaryllis's": null, - "amaryllises": null, - "am": [["A", "S"]], - "ream": [["M", "D", "R", "G", "Z"]], - "reams": null, - "ams": null, - "amasser": [["M"]], - "amasser's": null, - "amass": [["G", "R", "S", "D"]], - "amassing": null, - "amasses": null, - "amassed": null, - "Amata": [["M"]], - "Amata's": null, - "amateurishness": [["M", "S"]], - "amateurishness's": null, - "amateurishnesses": null, - "amateurish": [["Y", "P"]], - "amateurishly": null, - "amateurism": [["M", "S"]], - "amateurism's": null, - "amateurisms": null, - "amateur": [["S", "M"]], - "amateurs": null, - "amateur's": null, - "Amati": [["M"]], - "Amati's": null, - "amatory": null, - "amazed": [["Y"]], - "amazedly": null, - "amaze": [["L", "D", "S", "R", "G", "Z"]], - "amazement": [["M", "S"]], - "amazes": null, - "amazer": null, - "amazing": [["Y"]], - "amazers": null, - "amazement's": null, - "amazements": null, - "amazingly": null, - "amazonian": null, - "Amazonian": null, - "amazon": [["M", "S"]], - "amazon's": null, - "amazons": null, - "Amazon": [["S", "M"]], - "Amazons": null, - "Amazon's": null, - "ambassadorial": null, - "ambassador": [["M", "S"]], - "ambassador's": null, - "ambassadors": null, - "ambassadorship": [["M", "S"]], - "ambassadorship's": null, - "ambassadorships": null, - "ambassadress": [["S", "M"]], - "ambassadresses": null, - "ambassadress's": null, - "ambergris": [["S", "M"]], - "ambergrises": null, - "ambergris's": null, - "Amberly": [["M"]], - "Amberly's": null, - "amber": [["M", "S"]], - "amber's": null, - "ambers": null, - "Amber": [["Y", "M"]], - "Amber's": null, - "ambiance": [["M", "S"]], - "ambiance's": null, - "ambiances": null, - "ambidexterity": [["M", "S"]], - "ambidexterity's": null, - "ambidexterities": null, - "ambidextrous": [["Y"]], - "ambidextrously": null, - "ambience's": null, - "ambient": [["S"]], - "ambients": null, - "ambiguity": [["M", "S"]], - "ambiguity's": null, - "ambiguities": null, - "ambiguously": [["U"]], - "unambiguously": null, - "ambiguousness": [["M"]], - "ambiguousness's": null, - "ambiguous": [["Y", "P"]], - "ambition": [["G", "M", "D", "S"]], - "ambitioning": null, - "ambition's": null, - "ambitioned": null, - "ambitions": null, - "ambitiousness": [["M", "S"]], - "ambitiousness's": null, - "ambitiousnesses": null, - "ambitious": [["P", "Y"]], - "ambitiously": null, - "ambit": [["M"]], - "ambit's": null, - "ambivalence": [["S", "M"]], - "ambivalences": null, - "ambivalence's": null, - "ambivalent": [["Y"]], - "ambivalently": null, - "amble": [["G", "Z", "D", "S", "R"]], - "ambling": null, - "amblers": null, - "ambled": null, - "ambles": null, - "ambler": [["M"]], - "Amble": [["M"]], - "Amble's": null, - "ambler's": null, - "ambrose": null, - "Ambrose": [["M"]], - "Ambrose's": null, - "ambrosial": [["Y"]], - "ambrosially": null, - "ambrosia": [["S", "M"]], - "ambrosias": null, - "ambrosia's": null, - "Ambrosi": [["M"]], - "Ambrosi's": null, - "Ambrosio": [["M"]], - "Ambrosio's": null, - "Ambrosius": [["M"]], - "Ambrosius's": null, - "Ambros": [["M"]], - "Ambros's": null, - "ambulance": [["M", "S"]], - "ambulance's": null, - "ambulances": null, - "ambulant": [["S"]], - "ambulants": null, - "ambulate": [["D", "S", "N", "G", "X"]], - "ambulated": null, - "ambulates": null, - "ambulation": [["M"]], - "ambulating": null, - "ambulations": null, - "ambulation's": null, - "ambulatory": [["S"]], - "ambulatories": null, - "Ambur": [["M"]], - "Ambur's": null, - "ambuscade": [["M", "G", "S", "R", "D"]], - "ambuscade's": null, - "ambuscading": null, - "ambuscades": null, - "ambuscader": [["M"]], - "ambuscaded": null, - "ambuscader's": null, - "ambusher": [["M"]], - "ambusher's": null, - "ambush": [["M", "Z", "R", "S", "D", "G"]], - "ambush's": null, - "ambushers": null, - "ambushes": null, - "ambushed": null, - "ambushing": null, - "Amby": [["M"]], - "Amby's": null, - "Amdahl": [["M"]], - "Amdahl's": null, - "ameba's": null, - "Amelia": [["M"]], - "Amelia's": null, - "Amelie": [["M"]], - "Amelie's": null, - "Amelina": [["M"]], - "Amelina's": null, - "Ameline": [["M"]], - "Ameline's": null, - "ameliorate": [["X", "V", "G", "N", "S", "D"]], - "ameliorations": null, - "ameliorative": null, - "ameliorating": null, - "amelioration": [["M"]], - "ameliorates": null, - "ameliorated": null, - "amelioration's": null, - "Amelita": [["M"]], - "Amelita's": null, - "amenability": [["S", "M"]], - "amenabilities": null, - "amenability's": null, - "amenably": null, - "amended": [["U"]], - "unamended": null, - "amender": [["M"]], - "amender's": null, - "amendment": [["S", "M"]], - "amendments": null, - "amendment's": null, - "amen": [["D", "R", "G", "T", "S", "B"]], - "amened": null, - "amener": null, - "amening": null, - "amenest": null, - "amens": null, - "amenable": null, - "amend": [["S", "B", "R", "D", "G", "L"]], - "amends": [["M"]], - "amendable": null, - "amending": null, - "amends's": null, - "Amenhotep": [["M"]], - "Amenhotep's": null, - "amenity": [["M", "S"]], - "amenity's": null, - "amenities": null, - "amenorrhea": [["M"]], - "amenorrhea's": null, - "Amerada": [["M"]], - "Amerada's": null, - "Amerasian": [["S"]], - "Amerasians": null, - "amercement": [["M", "S"]], - "amercement's": null, - "amercements": null, - "amerce": [["S", "D", "L", "G"]], - "amerces": null, - "amerced": null, - "amercing": null, - "Americana": [["M"]], - "Americana's": null, - "Americanism": [["S", "M"]], - "Americanisms": null, - "Americanism's": null, - "Americanization": [["S", "M"]], - "Americanizations": null, - "Americanization's": null, - "americanized": null, - "Americanize": [["S", "D", "G"]], - "Americanizes": null, - "Americanized": null, - "Americanizing": null, - "American": [["M", "S"]], - "American's": null, - "Americans": null, - "America": [["S", "M"]], - "Americas": null, - "America's": null, - "americium": [["M", "S"]], - "americium's": null, - "americiums": null, - "Amerigo": [["M"]], - "Amerigo's": null, - "Amerindian": [["M", "S"]], - "Amerindian's": null, - "Amerindians": null, - "Amerind": [["M", "S"]], - "Amerind's": null, - "Amerinds": null, - "Amer": [["M"]], - "Amer's": null, - "Amery": [["M"]], - "Amery's": null, - "Ameslan": [["M"]], - "Ameslan's": null, - "Ame": [["S", "M"]], - "Ames": null, - "Ame's": null, - "amethystine": null, - "amethyst": [["M", "S"]], - "amethyst's": null, - "amethysts": null, - "Amharic": [["M"]], - "Amharic's": null, - "Amherst": [["M"]], - "Amherst's": null, - "amiability": [["M", "S"]], - "amiability's": null, - "amiabilities": null, - "amiableness": [["M"]], - "amiableness's": null, - "amiable": [["R", "P", "T"]], - "amiabler": null, - "amiablest": null, - "amiably": null, - "amicability": [["S", "M"]], - "amicabilities": null, - "amicability's": null, - "amicableness": [["M"]], - "amicableness's": null, - "amicable": [["P"]], - "amicably": null, - "amide": [["S", "M"]], - "amides": null, - "amide's": null, - "amid": [["S"]], - "amids": null, - "amidships": null, - "amidst": null, - "Amie": [["M"]], - "Amie's": null, - "Amiga": [["M"]], - "Amiga's": null, - "amigo": [["M", "S"]], - "amigo's": null, - "amigos": null, - "Amii": [["M"]], - "Amii's": null, - "Amil": [["M"]], - "Amil's": null, - "Ami": [["M"]], - "Ami's": null, - "amines": null, - "aminobenzoic": null, - "amino": [["M"]], - "amino's": null, - "amir's": null, - "Amish": null, - "amiss": null, - "Amitie": [["M"]], - "Amitie's": null, - "Amity": [["M"]], - "Amity's": null, - "amity": [["S", "M"]], - "amities": null, - "amity's": null, - "Ammamaria": [["M"]], - "Ammamaria's": null, - "Amman": [["M"]], - "Amman's": null, - "Ammerman": [["M"]], - "Ammerman's": null, - "ammeter": [["M", "S"]], - "ammeter's": null, - "ammeters": null, - "ammo": [["M", "S"]], - "ammo's": null, - "ammos": null, - "ammoniac": null, - "ammonia": [["M", "S"]], - "ammonia's": null, - "ammonias": null, - "ammonium": [["M"]], - "ammonium's": null, - "Am": [["M", "R"]], - "Am's": null, - "ammunition": [["M", "S"]], - "ammunition's": null, - "ammunitions": null, - "amnesiac": [["M", "S"]], - "amnesiac's": null, - "amnesiacs": null, - "amnesia": [["S", "M"]], - "amnesias": null, - "amnesia's": null, - "amnesic": [["S"]], - "amnesics": null, - "amnesty": [["G", "M", "S", "D"]], - "amnestying": null, - "amnesty's": null, - "amnesties": null, - "amnestied": null, - "amniocenteses": null, - "amniocentesis": [["M"]], - "amniocentesis's": null, - "amnion": [["S", "M"]], - "amnions": null, - "amnion's": null, - "amniotic": null, - "Amoco": [["M"]], - "Amoco's": null, - "amoeba": [["S", "M"]], - "amoebas": null, - "amoeba's": null, - "amoebic": null, - "amoeboid": null, - "amok": [["M", "S"]], - "amok's": null, - "amoks": null, - "among": null, - "amongst": null, - "Amontillado": [["M"]], - "Amontillado's": null, - "amontillado": [["M", "S"]], - "amontillado's": null, - "amontillados": null, - "amorality": [["M", "S"]], - "amorality's": null, - "amoralities": null, - "amoral": [["Y"]], - "amorally": null, - "amorousness": [["S", "M"]], - "amorousnesses": null, - "amorousness's": null, - "amorous": [["P", "Y"]], - "amorously": null, - "amorphousness": [["M", "S"]], - "amorphousness's": null, - "amorphousnesses": null, - "amorphous": [["P", "Y"]], - "amorphously": null, - "amortization": [["S", "U", "M"]], - "amortizations": null, - "unamortizations": null, - "unamortization": null, - "unamortization's": null, - "amortization's": null, - "amortized": [["U"]], - "unamortized": null, - "amortize": [["S", "D", "G"]], - "amortizes": null, - "amortizing": null, - "Amory": [["M"]], - "Amory's": null, - "Amos": null, - "amount": [["S", "M", "R", "D", "Z", "G"]], - "amounts": null, - "amount's": null, - "amounter": null, - "amounted": null, - "amounters": null, - "amounting": null, - "amour": [["M", "S"]], - "amour's": null, - "amours": null, - "Amparo": [["M"]], - "Amparo's": null, - "amperage": [["S", "M"]], - "amperages": null, - "amperage's": null, - "Ampere": [["M"]], - "Ampere's": null, - "ampere": [["M", "S"]], - "ampere's": null, - "amperes": null, - "ampersand": [["M", "S"]], - "ampersand's": null, - "ampersands": null, - "Ampex": [["M"]], - "Ampex's": null, - "amphetamine": [["M", "S"]], - "amphetamine's": null, - "amphetamines": null, - "amphibian": [["S", "M"]], - "amphibians": null, - "amphibian's": null, - "amphibiousness": [["M"]], - "amphibiousness's": null, - "amphibious": [["P", "Y"]], - "amphibiously": null, - "amphibology": [["M"]], - "amphibology's": null, - "amphitheater": [["S", "M"]], - "amphitheaters": null, - "amphitheater's": null, - "amphorae": null, - "amphora": [["M"]], - "amphora's": null, - "ampleness": [["M"]], - "ampleness's": null, - "ample": [["P", "T", "R"]], - "amplest": null, - "ampler": null, - "amplification": [["M"]], - "amplification's": null, - "amplifier": [["M"]], - "amplifier's": null, - "amplify": [["D", "R", "S", "X", "G", "N", "Z"]], - "amplified": null, - "amplifies": null, - "amplifications": null, - "amplifying": null, - "amplifiers": null, - "amplitude": [["M", "S"]], - "amplitude's": null, - "amplitudes": null, - "ampoule's": null, - "amp": [["S", "G", "M", "D", "Y"]], - "amps": null, - "amping": null, - "amp's": null, - "amped": null, - "amply": null, - "ampule": [["S", "M"]], - "ampules": null, - "ampule's": null, - "amputate": [["D", "S", "N", "G", "X"]], - "amputated": null, - "amputates": null, - "amputation": [["M"]], - "amputating": null, - "amputations": null, - "amputation's": null, - "amputee": [["S", "M"]], - "amputees": null, - "amputee's": null, - "Amritsar": [["M"]], - "Amritsar's": null, - "Amsterdam": [["M"]], - "Amsterdam's": null, - "amt": null, - "Amtrak": [["M"]], - "Amtrak's": null, - "amuck's": null, - "amulet": [["S", "M"]], - "amulets": null, - "amulet's": null, - "Amundsen": [["M"]], - "Amundsen's": null, - "Amur": [["M"]], - "Amur's": null, - "amused": [["Y"]], - "amusedly": null, - "amuse": [["L", "D", "S", "R", "G", "V", "Z"]], - "amusement": [["S", "M"]], - "amuses": null, - "amuser": [["M"]], - "amusing": [["Y", "P"]], - "amusive": null, - "amusers": null, - "amusements": null, - "amusement's": null, - "amuser's": null, - "amusingness": [["M"]], - "amusingness's": null, - "amusingly": null, - "Amway": [["M"]], - "Amway's": null, - "Amye": [["M"]], - "Amye's": null, - "amylase": [["M", "S"]], - "amylase's": null, - "amylases": null, - "amyl": [["M"]], - "amyl's": null, - "Amy": [["M"]], - "Amy's": null, - "Anabal": [["M"]], - "Anabal's": null, - "Anabaptist": [["S", "M"]], - "Anabaptists": null, - "Anabaptist's": null, - "Anabella": [["M"]], - "Anabella's": null, - "Anabelle": [["M"]], - "Anabelle's": null, - "Anabel": [["M"]], - "Anabel's": null, - "anabolic": null, - "anabolism": [["M", "S"]], - "anabolism's": null, - "anabolisms": null, - "anachronism": [["S", "M"]], - "anachronisms": null, - "anachronism's": null, - "anachronistic": null, - "anachronistically": null, - "Anacin": [["M"]], - "Anacin's": null, - "anaconda": [["M", "S"]], - "anaconda's": null, - "anacondas": null, - "Anacreon": [["M"]], - "Anacreon's": null, - "anaerobe": [["S", "M"]], - "anaerobes": null, - "anaerobe's": null, - "anaerobic": null, - "anaerobically": null, - "anaglyph": [["M"]], - "anaglyph's": null, - "anagrammatic": null, - "anagrammatically": null, - "anagrammed": null, - "anagramming": null, - "anagram": [["M", "S"]], - "anagram's": null, - "anagrams": null, - "Anaheim": [["M"]], - "Anaheim's": null, - "Analects": [["M"]], - "Analects's": null, - "analgesia": [["M", "S"]], - "analgesia's": null, - "analgesias": null, - "analgesic": [["S"]], - "analgesics": null, - "Analiese": [["M"]], - "Analiese's": null, - "Analise": [["M"]], - "Analise's": null, - "Anallese": [["M"]], - "Anallese's": null, - "Anallise": [["M"]], - "Anallise's": null, - "analogical": [["Y"]], - "analogically": null, - "analogize": [["S", "D", "G"]], - "analogizes": null, - "analogized": null, - "analogizing": null, - "analogousness": [["M", "S"]], - "analogousness's": null, - "analogousnesses": null, - "analogous": [["Y", "P"]], - "analogously": null, - "analog": [["S", "M"]], - "analogs": null, - "analog's": null, - "analogue": [["S", "M"]], - "analogues": null, - "analogue's": null, - "analogy": [["M", "S"]], - "analogy's": null, - "analogies": null, - "anal": [["Y"]], - "anally": null, - "analysand": [["M", "S"]], - "analysand's": null, - "analysands": null, - "analyses": null, - "analysis": [["A", "M"]], - "reanalysis": null, - "reanalysis's": null, - "analysis's": null, - "analyst": [["S", "M"]], - "analysts": null, - "analyst's": null, - "analytical": [["Y"]], - "analytically": null, - "analyticity": [["S"]], - "analyticities": null, - "analytic": [["S"]], - "analytics": [["M"]], - "analytics's": null, - "analyzable": [["U"]], - "unanalyzable": null, - "analyze": [["D", "R", "S", "Z", "G", "A"]], - "analyzed": [["U"]], - "reanalyzed": null, - "analyzer": [["M"]], - "reanalyzer": null, - "analyzes": null, - "reanalyzes": null, - "analyzers": null, - "reanalyzers": null, - "analyzing": null, - "reanalyzing": null, - "reanalyze": null, - "unanalyzed": null, - "analyzer's": null, - "Ana": [["M"]], - "Ana's": null, - "anamorphic": null, - "Ananias": [["M"]], - "Ananias's": null, - "anapaest's": null, - "anapestic": [["S"]], - "anapestics": null, - "anapest": [["S", "M"]], - "anapests": null, - "anapest's": null, - "anaphora": [["M"]], - "anaphora's": null, - "anaphoric": null, - "anaphorically": null, - "anaplasmosis": [["M"]], - "anaplasmosis's": null, - "anarchic": null, - "anarchical": [["Y"]], - "anarchically": null, - "anarchism": [["M", "S"]], - "anarchism's": null, - "anarchisms": null, - "anarchistic": null, - "anarchist": [["M", "S"]], - "anarchist's": null, - "anarchists": null, - "anarchy": [["M", "S"]], - "anarchy's": null, - "anarchies": null, - "Anastasia": [["M"]], - "Anastasia's": null, - "Anastasie": [["M"]], - "Anastasie's": null, - "Anastassia": [["M"]], - "Anastassia's": null, - "anastigmatic": null, - "anastomoses": null, - "anastomosis": [["M"]], - "anastomosis's": null, - "anastomotic": null, - "anathema": [["M", "S"]], - "anathema's": null, - "anathemas": null, - "anathematize": [["G", "S", "D"]], - "anathematizing": null, - "anathematizes": null, - "anathematized": null, - "Anatola": [["M"]], - "Anatola's": null, - "Anatole": [["M"]], - "Anatole's": null, - "Anatolia": [["M"]], - "Anatolia's": null, - "Anatolian": null, - "Anatollo": [["M"]], - "Anatollo's": null, - "Anatol": [["M"]], - "Anatol's": null, - "anatomic": null, - "anatomical": [["Y", "S"]], - "anatomically": null, - "anatomicals": null, - "anatomist": [["M", "S"]], - "anatomist's": null, - "anatomists": null, - "anatomize": [["G", "S", "D"]], - "anatomizing": null, - "anatomizes": null, - "anatomized": null, - "anatomy": [["M", "S"]], - "anatomy's": null, - "anatomies": null, - "Anaxagoras": [["M"]], - "Anaxagoras's": null, - "Ancell": [["M"]], - "Ancell's": null, - "ancestor": [["S", "M", "D", "G"]], - "ancestors": null, - "ancestor's": null, - "ancestored": null, - "ancestoring": null, - "ancestral": [["Y"]], - "ancestrally": null, - "ancestress": [["S", "M"]], - "ancestresses": null, - "ancestress's": null, - "ancestry": [["S", "M"]], - "ancestries": null, - "ancestry's": null, - "Anchorage": [["M"]], - "Anchorage's": null, - "anchorage": [["S", "M"]], - "anchorages": null, - "anchorage's": null, - "anchored": [["U"]], - "unanchored": null, - "anchorite": [["M", "S"]], - "anchorite's": null, - "anchorites": null, - "anchoritism": [["M"]], - "anchoritism's": null, - "anchorman": [["M"]], - "anchorman's": null, - "anchormen": null, - "anchorpeople": null, - "anchorperson": [["S"]], - "anchorpersons": null, - "anchor": [["S", "G", "D", "M"]], - "anchors": null, - "anchoring": null, - "anchor's": null, - "anchorwoman": null, - "anchorwomen": null, - "anchovy": [["M", "S"]], - "anchovy's": null, - "anchovies": null, - "ancientness": [["M", "S"]], - "ancientness's": null, - "ancientnesses": null, - "ancient": [["S", "R", "Y", "T", "P"]], - "ancients": null, - "ancienter": null, - "anciently": null, - "ancientest": null, - "ancillary": [["S"]], - "ancillaries": null, - "an": [["C", "S"]], - "dean": [["D", "M", "G"]], - "deans": null, - "ans": [["M"]], - "Andalusia": [["M"]], - "Andalusia's": null, - "Andalusian": null, - "Andaman": null, - "andante": [["S"]], - "andantes": null, - "and": [["D", "Z", "G", "S"]], - "anded": null, - "anders": null, - "anding": null, - "ands": null, - "Andean": [["M"]], - "Andean's": null, - "Andeee": [["M"]], - "Andeee's": null, - "Andee": [["M"]], - "Andee's": null, - "Anderea": [["M"]], - "Anderea's": null, - "Andersen": [["M"]], - "Andersen's": null, - "Anders": [["N"]], - "Anderson": [["M"]], - "Anderson's": null, - "Andes": null, - "Andie": [["M"]], - "Andie's": null, - "Andi": [["M"]], - "Andi's": null, - "andiron": [["M", "S"]], - "andiron's": null, - "andirons": null, - "Andonis": [["M"]], - "Andonis's": null, - "Andorra": [["M"]], - "Andorra's": null, - "Andover": [["M"]], - "Andover's": null, - "Andra": [["S", "M"]], - "Andras": null, - "Andra's": null, - "Andrea": [["M", "S"]], - "Andrea's": null, - "Andreas": null, - "Andreana": [["M"]], - "Andreana's": null, - "Andree": [["M"]], - "Andree's": null, - "Andrei": [["M"]], - "Andrei's": null, - "Andrej": [["M"]], - "Andrej's": null, - "Andre": [["S", "M"]], - "Andres": null, - "Andre's": null, - "Andrew": [["M", "S"]], - "Andrew's": null, - "Andrews": null, - "Andrey": [["M"]], - "Andrey's": null, - "Andria": [["M"]], - "Andria's": null, - "Andriana": [["M"]], - "Andriana's": null, - "Andriette": [["M"]], - "Andriette's": null, - "Andris": null, - "androgenic": null, - "androgen": [["S", "M"]], - "androgens": null, - "androgen's": null, - "androgynous": null, - "androgyny": [["S", "M"]], - "androgynies": null, - "androgyny's": null, - "android": [["M", "S"]], - "android's": null, - "androids": null, - "Andromache": [["M"]], - "Andromache's": null, - "Andromeda": [["M"]], - "Andromeda's": null, - "Andropov": [["M"]], - "Andropov's": null, - "Andros": [["M"]], - "Andros's": null, - "Andrus": [["M"]], - "Andrus's": null, - "Andy": [["M"]], - "Andy's": null, - "anecdotal": [["Y"]], - "anecdotally": null, - "anecdote": [["S", "M"]], - "anecdotes": null, - "anecdote's": null, - "anechoic": null, - "anemia": [["S", "M"]], - "anemias": null, - "anemia's": null, - "anemically": null, - "anemic": [["S"]], - "anemics": null, - "anemometer": [["M", "S"]], - "anemometer's": null, - "anemometers": null, - "anemometry": [["M"]], - "anemometry's": null, - "anemone": [["S", "M"]], - "anemones": null, - "anemone's": null, - "anent": null, - "aneroid": null, - "Anestassia": [["M"]], - "Anestassia's": null, - "anesthesia": [["M", "S"]], - "anesthesia's": null, - "anesthesias": null, - "anesthesiologist": [["M", "S"]], - "anesthesiologist's": null, - "anesthesiologists": null, - "anesthesiology": [["S", "M"]], - "anesthesiologies": null, - "anesthesiology's": null, - "anesthetically": null, - "anesthetic": [["S", "M"]], - "anesthetics": null, - "anesthetic's": null, - "anesthetist": [["M", "S"]], - "anesthetist's": null, - "anesthetists": null, - "anesthetization": [["S", "M"]], - "anesthetizations": null, - "anesthetization's": null, - "anesthetizer": [["M"]], - "anesthetizer's": null, - "anesthetize": [["Z", "S", "R", "D", "G"]], - "anesthetizers": null, - "anesthetizes": null, - "anesthetized": null, - "anesthetizing": null, - "Anet": [["M"]], - "Anet's": null, - "Anetta": [["M"]], - "Anetta's": null, - "Anette": [["M"]], - "Anette's": null, - "Anett": [["M"]], - "Anett's": null, - "aneurysm": [["M", "S"]], - "aneurysm's": null, - "aneurysms": null, - "anew": null, - "Angara": [["M"]], - "Angara's": null, - "Angela": [["M"]], - "Angela's": null, - "Angeleno": [["S", "M"]], - "Angelenos": null, - "Angeleno's": null, - "Angele": [["S", "M"]], - "Angeles": null, - "Angele's": null, - "angelfish": [["S", "M"]], - "angelfishes": null, - "angelfish's": null, - "Angelia": [["M"]], - "Angelia's": null, - "angelic": null, - "angelical": [["Y"]], - "angelically": null, - "Angelica": [["M"]], - "Angelica's": null, - "angelica": [["M", "S"]], - "angelica's": null, - "angelicas": null, - "Angelico": [["M"]], - "Angelico's": null, - "Angelika": [["M"]], - "Angelika's": null, - "Angeli": [["M"]], - "Angeli's": null, - "Angelina": [["M"]], - "Angelina's": null, - "Angeline": [["M"]], - "Angeline's": null, - "Angelique": [["M"]], - "Angelique's": null, - "Angelita": [["M"]], - "Angelita's": null, - "Angelle": [["M"]], - "Angelle's": null, - "Angel": [["M"]], - "Angel's": null, - "angel": [["M", "D", "S", "G"]], - "angel's": null, - "angeled": null, - "angels": null, - "angeling": null, - "Angelo": [["M"]], - "Angelo's": null, - "Angelou": [["M"]], - "Angelou's": null, - "Ange": [["M"]], - "Ange's": null, - "anger": [["G", "D", "M", "S"]], - "angering": null, - "angered": null, - "anger's": null, - "angers": null, - "Angevin": [["M"]], - "Angevin's": null, - "Angie": [["M"]], - "Angie's": null, - "Angil": [["M"]], - "Angil's": null, - "angina": [["M", "S"]], - "angina's": null, - "anginas": null, - "angiography": null, - "angioplasty": [["S"]], - "angioplasties": null, - "angiosperm": [["M", "S"]], - "angiosperm's": null, - "angiosperms": null, - "Angkor": [["M"]], - "Angkor's": null, - "angle": [["G", "M", "Z", "D", "S", "R", "J"]], - "angling": [["M"]], - "angle's": null, - "anglers": null, - "angled": null, - "angles": null, - "angler": [["M"]], - "anglings": null, - "angler's": null, - "Angles": null, - "angleworm": [["M", "S"]], - "angleworm's": null, - "angleworms": null, - "Anglia": [["M"]], - "Anglia's": null, - "Anglicanism": [["M", "S"]], - "Anglicanism's": null, - "Anglicanisms": null, - "Anglican": [["M", "S"]], - "Anglican's": null, - "Anglicans": null, - "Anglicism": [["S", "M"]], - "Anglicisms": null, - "Anglicism's": null, - "Anglicization": [["M", "S"]], - "Anglicization's": null, - "Anglicizations": null, - "anglicize": [["S", "D", "G"]], - "anglicizes": null, - "anglicized": null, - "anglicizing": null, - "Anglicize": [["S", "D", "G"]], - "Anglicizes": null, - "Anglicized": null, - "Anglicizing": null, - "angling's": null, - "Anglo": [["M", "S"]], - "Anglo's": null, - "Anglos": null, - "Anglophile": [["S", "M"]], - "Anglophiles": null, - "Anglophile's": null, - "Anglophilia": [["M"]], - "Anglophilia's": null, - "Anglophobe": [["M", "S"]], - "Anglophobe's": null, - "Anglophobes": null, - "Anglophobia": [["M"]], - "Anglophobia's": null, - "Angola": [["M"]], - "Angola's": null, - "Angolan": [["S"]], - "Angolans": null, - "angora": [["M", "S"]], - "angora's": null, - "angoras": null, - "Angora": [["M", "S"]], - "Angora's": null, - "Angoras": null, - "angrily": null, - "angriness": [["M"]], - "angriness's": null, - "angry": [["R", "T", "P"]], - "angrier": null, - "angriest": null, - "angst": [["M", "S"]], - "angst's": null, - "angsts": null, - "�ngstr�m": [["M"]], - "�ngstr�m's": null, - "angstrom": [["M", "S"]], - "angstrom's": null, - "angstroms": null, - "Anguilla": [["M"]], - "Anguilla's": null, - "anguish": [["D", "S", "M", "G"]], - "anguished": null, - "anguishes": null, - "anguish's": null, - "anguishing": null, - "angularity": [["M", "S"]], - "angularity's": null, - "angularities": null, - "angular": [["Y"]], - "angularly": null, - "Angus": [["M"]], - "Angus's": null, - "Angy": [["M"]], - "Angy's": null, - "Anheuser": [["M"]], - "Anheuser's": null, - "anhydride": [["M"]], - "anhydride's": null, - "anhydrite": [["M"]], - "anhydrite's": null, - "anhydrous": [["Y"]], - "anhydrously": null, - "Aniakchak": [["M"]], - "Aniakchak's": null, - "Ania": [["M"]], - "Ania's": null, - "Anibal": [["M"]], - "Anibal's": null, - "Anica": [["M"]], - "Anica's": null, - "aniline": [["S", "M"]], - "anilines": null, - "aniline's": null, - "animadversion": [["S", "M"]], - "animadversions": null, - "animadversion's": null, - "animadvert": [["D", "S", "G"]], - "animadverted": null, - "animadverts": null, - "animadverting": null, - "animalcule": [["M", "S"]], - "animalcule's": null, - "animalcules": null, - "animal": [["M", "Y", "P", "S"]], - "animal's": null, - "animally": null, - "animalness": null, - "animals": null, - "animated": [["A"]], - "reanimated": null, - "animatedly": null, - "animately": [["I"]], - "inanimately": null, - "animateness": [["M", "I"]], - "animateness's": null, - "inanimateness's": null, - "inanimateness": [["S"]], - "animates": [["A"]], - "reanimates": null, - "animate": [["Y", "N", "G", "X", "D", "S", "P"]], - "animation": [["A", "M", "S"]], - "animating": [["A"]], - "animations": null, - "reanimating": null, - "reanimation": null, - "reanimation's": null, - "reanimations": null, - "animation's": null, - "animator": [["S", "M"]], - "animators": null, - "animator's": null, - "animism": [["S", "M"]], - "animisms": null, - "animism's": null, - "animistic": null, - "animist": [["S"]], - "animists": null, - "animized": null, - "animosity": [["M", "S"]], - "animosity's": null, - "animosities": null, - "animus": [["S", "M"]], - "animuses": null, - "animus's": null, - "anionic": [["S"]], - "anionics": null, - "anion": [["M", "S"]], - "anion's": null, - "anions": null, - "aniseed": [["M", "S"]], - "aniseed's": null, - "aniseeds": null, - "aniseikonic": null, - "anise": [["M", "S"]], - "anise's": null, - "anises": null, - "anisette": [["S", "M"]], - "anisettes": null, - "anisette's": null, - "anisotropic": null, - "anisotropy": [["M", "S"]], - "anisotropy's": null, - "anisotropies": null, - "Anissa": [["M"]], - "Anissa's": null, - "Anita": [["M"]], - "Anita's": null, - "Anitra": [["M"]], - "Anitra's": null, - "Anjanette": [["M"]], - "Anjanette's": null, - "Anjela": [["M"]], - "Anjela's": null, - "Ankara": [["M"]], - "Ankara's": null, - "ankh": [["M"]], - "ankh's": null, - "ankhs": null, - "anklebone": [["S", "M"]], - "anklebones": null, - "anklebone's": null, - "ankle": [["G", "M", "D", "S"]], - "ankling": null, - "ankle's": null, - "ankled": null, - "ankles": null, - "anklet": [["M", "S"]], - "anklet's": null, - "anklets": null, - "Annabal": [["M"]], - "Annabal's": null, - "Annabela": [["M"]], - "Annabela's": null, - "Annabella": [["M"]], - "Annabella's": null, - "Annabelle": [["M"]], - "Annabelle's": null, - "Annabell": [["M"]], - "Annabell's": null, - "Annabel": [["M"]], - "Annabel's": null, - "Annadiana": [["M"]], - "Annadiana's": null, - "Annadiane": [["M"]], - "Annadiane's": null, - "Annalee": [["M"]], - "Annalee's": null, - "Annaliese": [["M"]], - "Annaliese's": null, - "Annalise": [["M"]], - "Annalise's": null, - "annalist": [["M", "S"]], - "annalist's": null, - "annalists": null, - "annal": [["M", "N", "S"]], - "annal's": null, - "annalen": null, - "annals": null, - "Anna": [["M"]], - "Anna's": null, - "Annamaria": [["M"]], - "Annamaria's": null, - "Annamarie": [["M"]], - "Annamarie's": null, - "Annapolis": [["M"]], - "Annapolis's": null, - "Annapurna": [["M"]], - "Annapurna's": null, - "anneal": [["D", "R", "S", "Z", "G"]], - "annealed": null, - "annealer": [["M"]], - "anneals": null, - "annealers": null, - "annealing": null, - "annealer's": null, - "Annecorinne": [["M"]], - "Annecorinne's": null, - "annelid": [["M", "S"]], - "annelid's": null, - "annelids": null, - "Anneliese": [["M"]], - "Anneliese's": null, - "Annelise": [["M"]], - "Annelise's": null, - "Anne": [["M"]], - "Anne's": null, - "Annemarie": [["M"]], - "Annemarie's": null, - "Annetta": [["M"]], - "Annetta's": null, - "Annette": [["M"]], - "Annette's": null, - "annexation": [["S", "M"]], - "annexations": null, - "annexation's": null, - "annexe": [["M"]], - "annexe's": null, - "annex": [["G", "S", "D"]], - "annexing": null, - "annexes": null, - "annexed": null, - "Annice": [["M"]], - "Annice's": null, - "Annie": [["M"]], - "Annie's": null, - "annihilate": [["X", "S", "D", "V", "G", "N"]], - "annihilations": null, - "annihilates": null, - "annihilated": null, - "annihilative": null, - "annihilating": null, - "annihilation": [["M"]], - "annihilation's": null, - "annihilator": [["M", "S"]], - "annihilator's": null, - "annihilators": null, - "Anni": [["M", "S"]], - "Anni's": null, - "Annis": null, - "Annissa": [["M"]], - "Annissa's": null, - "anniversary": [["M", "S"]], - "anniversary's": null, - "anniversaries": null, - "Ann": [["M"]], - "Ann's": null, - "Annmaria": [["M"]], - "Annmaria's": null, - "Annmarie": [["M"]], - "Annmarie's": null, - "Annnora": [["M"]], - "Annnora's": null, - "Annora": [["M"]], - "Annora's": null, - "annotated": [["U"]], - "unannotated": null, - "annotate": [["V", "N", "G", "X", "S", "D"]], - "annotative": null, - "annotation": [["M"]], - "annotating": null, - "annotations": null, - "annotates": null, - "annotation's": null, - "annotator": [["M", "S"]], - "annotator's": null, - "annotators": null, - "announced": [["U"]], - "unannounced": null, - "announcement": [["S", "M"]], - "announcements": null, - "announcement's": null, - "announcer": [["M"]], - "announcer's": null, - "announce": [["Z", "G", "L", "R", "S", "D"]], - "announcers": null, - "announcing": null, - "announces": null, - "annoyance": [["M", "S"]], - "annoyance's": null, - "annoyances": null, - "annoyer": [["M"]], - "annoyer's": null, - "annoying": [["Y"]], - "annoyingly": null, - "annoy": [["Z", "G", "S", "R", "D"]], - "annoyers": null, - "annoys": null, - "annoyed": null, - "annualized": null, - "annual": [["Y", "S"]], - "annually": null, - "annuals": null, - "annuitant": [["M", "S"]], - "annuitant's": null, - "annuitants": null, - "annuity": [["M", "S"]], - "annuity's": null, - "annuities": null, - "annular": [["Y", "S"]], - "annularly": null, - "annulars": null, - "annuli": null, - "annulled": null, - "annulling": null, - "annulment": [["M", "S"]], - "annulment's": null, - "annulments": null, - "annul": [["S", "L"]], - "annuls": null, - "annulus": [["M"]], - "annulus's": null, - "annum": null, - "annunciate": [["X", "N", "G", "S", "D"]], - "annunciations": null, - "annunciation": [["M"]], - "annunciating": null, - "annunciates": null, - "annunciated": null, - "annunciation's": null, - "Annunciation": [["S"]], - "Annunciations": null, - "annunciator": [["S", "M"]], - "annunciators": null, - "annunciator's": null, - "Anny": [["M"]], - "Anny's": null, - "anode": [["S", "M"]], - "anodes": null, - "anode's": null, - "anodic": null, - "anodize": [["G", "D", "S"]], - "anodizing": null, - "anodized": null, - "anodizes": null, - "anodyne": [["S", "M"]], - "anodynes": null, - "anodyne's": null, - "anoint": [["D", "R", "L", "G", "S"]], - "anointed": null, - "anointer": [["M"]], - "anointment": [["S", "M"]], - "anointing": null, - "anoints": null, - "anointer's": null, - "anointments": null, - "anointment's": null, - "anomalousness": [["M"]], - "anomalousness's": null, - "anomalous": [["Y", "P"]], - "anomalously": null, - "anomaly": [["M", "S"]], - "anomaly's": null, - "anomalies": null, - "anomic": null, - "anomie": [["M"]], - "anomie's": null, - "anon": [["S"]], - "anons": null, - "anonymity": [["M", "S"]], - "anonymity's": null, - "anonymities": null, - "anonymousness": [["M"]], - "anonymousness's": null, - "anonymous": [["Y", "P"]], - "anonymously": null, - "anopheles": [["M"]], - "anopheles's": null, - "anorak": [["S", "M"]], - "anoraks": null, - "anorak's": null, - "anorectic": [["S"]], - "anorectics": null, - "anorexia": [["S", "M"]], - "anorexias": null, - "anorexia's": null, - "anorexic": [["S"]], - "anorexics": null, - "another": [["M"]], - "another's": null, - "Anouilh": [["M"]], - "Anouilh's": null, - "Ansell": [["M"]], - "Ansell's": null, - "Ansel": [["M"]], - "Ansel's": null, - "Anselma": [["M"]], - "Anselma's": null, - "Anselm": [["M"]], - "Anselm's": null, - "Anselmo": [["M"]], - "Anselmo's": null, - "Anshan": [["M"]], - "Anshan's": null, - "ANSI": [["M"]], - "ANSI's": null, - "Ansley": [["M"]], - "Ansley's": null, - "ans's": null, - "Anson": [["M"]], - "Anson's": null, - "Anstice": [["M"]], - "Anstice's": null, - "answerable": [["U"]], - "unanswerable": null, - "answered": [["U"]], - "unanswered": null, - "answerer": [["M"]], - "answerer's": null, - "answer": [["M", "Z", "G", "B", "S", "D", "R"]], - "answer's": null, - "answerers": null, - "answering": null, - "answers": null, - "antacid": [["M", "S"]], - "antacid's": null, - "antacids": null, - "Antaeus": [["M"]], - "Antaeus's": null, - "antagonism": [["M", "S"]], - "antagonism's": null, - "antagonisms": null, - "antagonistic": null, - "antagonistically": null, - "antagonist": [["M", "S"]], - "antagonist's": null, - "antagonists": null, - "antagonized": [["U"]], - "unantagonized": null, - "antagonize": [["G", "Z", "R", "S", "D"]], - "antagonizing": [["U"]], - "antagonizers": null, - "antagonizer": null, - "antagonizes": null, - "unantagonizing": null, - "Antananarivo": [["M"]], - "Antananarivo's": null, - "antarctic": null, - "Antarctica": [["M"]], - "Antarctica's": null, - "Antarctic": [["M"]], - "Antarctic's": null, - "Antares": null, - "anteater": [["M", "S"]], - "anteater's": null, - "anteaters": null, - "antebellum": null, - "antecedence": [["M", "S"]], - "antecedence's": null, - "antecedences": null, - "antecedent": [["S", "M", "Y"]], - "antecedents": null, - "antecedent's": null, - "antecedently": null, - "antechamber": [["S", "M"]], - "antechambers": null, - "antechamber's": null, - "antedate": [["G", "D", "S"]], - "antedating": null, - "antedated": null, - "antedates": null, - "antediluvian": [["S"]], - "antediluvians": null, - "anteing": null, - "antelope": [["M", "S"]], - "antelope's": null, - "antelopes": null, - "ante": [["M", "S"]], - "ante's": null, - "antes": null, - "antenatal": null, - "antennae": null, - "antenna": [["M", "S"]], - "antenna's": null, - "antennas": null, - "anterior": [["S", "Y"]], - "anteriors": null, - "anteriorly": null, - "anteroom": [["S", "M"]], - "anterooms": null, - "anteroom's": null, - "ant": [["G", "S", "M", "D"]], - "anting": [["M"]], - "ants": null, - "ant's": null, - "anted": null, - "Anthea": [["M"]], - "Anthea's": null, - "Anthe": [["M"]], - "Anthe's": null, - "anthem": [["M", "G", "D", "S"]], - "anthem's": null, - "antheming": null, - "anthemed": null, - "anthems": null, - "anther": [["M", "S"]], - "anther's": null, - "anthers": null, - "Anthia": [["M"]], - "Anthia's": null, - "Anthiathia": [["M"]], - "Anthiathia's": null, - "anthill": [["S"]], - "anthills": null, - "anthologist": [["M", "S"]], - "anthologist's": null, - "anthologists": null, - "anthologize": [["G", "D", "S"]], - "anthologizing": null, - "anthologized": null, - "anthologizes": null, - "anthology": [["S", "M"]], - "anthologies": null, - "anthology's": null, - "Anthony": [["M"]], - "Anthony's": null, - "anthraces": null, - "anthracite": [["M", "S"]], - "anthracite's": null, - "anthracites": null, - "anthrax": [["M"]], - "anthrax's": null, - "anthropic": null, - "anthropocentric": null, - "anthropogenic": null, - "anthropoid": [["S"]], - "anthropoids": null, - "anthropological": [["Y"]], - "anthropologically": null, - "anthropologist": [["M", "S"]], - "anthropologist's": null, - "anthropologists": null, - "anthropology": [["S", "M"]], - "anthropologies": null, - "anthropology's": null, - "anthropometric": [["S"]], - "anthropometrics": null, - "anthropometry": [["M"]], - "anthropometry's": null, - "anthropomorphic": null, - "anthropomorphically": null, - "anthropomorphism": [["S", "M"]], - "anthropomorphisms": null, - "anthropomorphism's": null, - "anthropomorphizing": null, - "anthropomorphous": null, - "antiabortion": null, - "antiabortionist": [["S"]], - "antiabortionists": null, - "antiaircraft": null, - "antibacterial": [["S"]], - "antibacterials": null, - "antibiotic": [["S", "M"]], - "antibiotics": null, - "antibiotic's": null, - "antibody": [["M", "S"]], - "antibody's": null, - "antibodies": null, - "anticancer": null, - "Antichrist": [["M", "S"]], - "Antichrist's": null, - "Antichrists": null, - "anticipated": [["U"]], - "unanticipated": [["Y"]], - "anticipate": [["X", "V", "G", "N", "S", "D"]], - "anticipations": null, - "anticipative": [["Y"]], - "anticipating": null, - "anticipation": [["M"]], - "anticipates": null, - "anticipation's": null, - "anticipatively": null, - "anticipatory": null, - "anticked": null, - "anticking": null, - "anticlerical": [["S"]], - "anticlericals": null, - "anticlimactic": null, - "anticlimactically": null, - "anticlimax": [["S", "M"]], - "anticlimaxes": null, - "anticlimax's": null, - "anticline": [["S", "M"]], - "anticlines": null, - "anticline's": null, - "anticlockwise": null, - "antic": [["M", "S"]], - "antic's": null, - "antics": null, - "anticoagulant": [["S"]], - "anticoagulants": null, - "anticoagulation": [["M"]], - "anticoagulation's": null, - "anticommunism": [["S", "M"]], - "anticommunisms": null, - "anticommunism's": null, - "anticommunist": [["S", "M"]], - "anticommunists": null, - "anticommunist's": null, - "anticompetitive": null, - "anticyclone": [["M", "S"]], - "anticyclone's": null, - "anticyclones": null, - "anticyclonic": null, - "antidemocratic": null, - "antidepressant": [["S", "M"]], - "antidepressants": null, - "antidepressant's": null, - "antidisestablishmentarianism": [["M"]], - "antidisestablishmentarianism's": null, - "antidote": [["D", "S", "M", "G"]], - "antidoted": null, - "antidotes": null, - "antidote's": null, - "antidoting": null, - "Antietam": [["M"]], - "Antietam's": null, - "antifascist": [["S", "M"]], - "antifascists": null, - "antifascist's": null, - "antiformant": null, - "antifreeze": [["S", "M"]], - "antifreezes": null, - "antifreeze's": null, - "antifundamentalist": [["M"]], - "antifundamentalist's": null, - "antigenic": null, - "antigenicity": [["S", "M"]], - "antigenicities": null, - "antigenicity's": null, - "antigen": [["M", "S"]], - "antigen's": null, - "antigens": null, - "antigone": null, - "Antigone": [["M"]], - "Antigone's": null, - "Antigua": [["M"]], - "Antigua's": null, - "antiheroes": null, - "antihero": [["M"]], - "antihero's": null, - "antihistamine": [["M", "S"]], - "antihistamine's": null, - "antihistamines": null, - "antihistorical": null, - "antiknock": [["M", "S"]], - "antiknock's": null, - "antiknocks": null, - "antilabor": null, - "Antillean": null, - "Antilles": null, - "antilogarithm": [["S", "M"]], - "antilogarithms": null, - "antilogarithm's": null, - "antilogs": null, - "antimacassar": [["S", "M"]], - "antimacassars": null, - "antimacassar's": null, - "antimalarial": [["S"]], - "antimalarials": null, - "antimatter": [["S", "M"]], - "antimatters": null, - "antimatter's": null, - "antimicrobial": [["S"]], - "antimicrobials": null, - "antimissile": [["S"]], - "antimissiles": null, - "antimony": [["S", "M"]], - "antimonies": null, - "antimony's": null, - "anting's": null, - "Antin": [["M"]], - "Antin's": null, - "antinomian": null, - "antinomy": [["M"]], - "antinomy's": null, - "antinuclear": null, - "Antioch": [["M"]], - "Antioch's": null, - "antioxidant": [["M", "S"]], - "antioxidant's": null, - "antioxidants": null, - "antiparticle": [["S", "M"]], - "antiparticles": null, - "antiparticle's": null, - "Antipas": [["M"]], - "Antipas's": null, - "antipasti": null, - "antipasto": [["M", "S"]], - "antipasto's": null, - "antipastos": null, - "antipathetic": null, - "antipathy": [["S", "M"]], - "antipathies": null, - "antipathy's": null, - "antipersonnel": null, - "antiperspirant": [["M", "S"]], - "antiperspirant's": null, - "antiperspirants": null, - "antiphonal": [["S", "Y"]], - "antiphonals": null, - "antiphonally": null, - "antiphon": [["S", "M"]], - "antiphons": null, - "antiphon's": null, - "antipodal": [["S"]], - "antipodals": null, - "antipodean": [["S"]], - "antipodeans": null, - "antipode": [["M", "S"]], - "antipode's": null, - "antipodes": null, - "Antipodes": null, - "antipollution": [["S"]], - "antipollutions": null, - "antipoverty": null, - "antiquarianism": [["M", "S"]], - "antiquarianism's": null, - "antiquarianisms": null, - "antiquarian": [["M", "S"]], - "antiquarian's": null, - "antiquarians": null, - "antiquary": [["S", "M"]], - "antiquaries": null, - "antiquary's": null, - "antiquate": [["N", "G", "S", "D"]], - "antiquation": [["M"]], - "antiquating": null, - "antiquates": null, - "antiquated": null, - "antiquation's": null, - "antique": [["M", "G", "D", "S"]], - "antique's": null, - "antiquing": null, - "antiqued": null, - "antiques": null, - "antiquity": [["S", "M"]], - "antiquities": null, - "antiquity's": null, - "antiredeposition": null, - "antiresonance": [["M"]], - "antiresonance's": null, - "antiresonator": null, - "anti": [["S"]], - "antis": null, - "antisemitic": null, - "antisemitism": [["M"]], - "antisemitism's": null, - "antisepses": null, - "antisepsis": [["M"]], - "antisepsis's": null, - "antiseptically": null, - "antiseptic": [["S"]], - "antiseptics": null, - "antiserum": [["S", "M"]], - "antiserums": null, - "antiserum's": null, - "antislavery": [["S"]], - "antislaveries": null, - "antisocial": [["Y"]], - "antisocially": null, - "antispasmodic": [["S"]], - "antispasmodics": null, - "antisubmarine": null, - "antisymmetric": null, - "antisymmetry": null, - "antitank": null, - "antitheses": null, - "antithesis": [["M"]], - "antithesis's": null, - "antithetic": null, - "antithetical": [["Y"]], - "antithetically": null, - "antithyroid": null, - "antitoxin": [["M", "S"]], - "antitoxin's": null, - "antitoxins": null, - "antitrust": [["M", "R"]], - "antitrust's": null, - "antitruster": null, - "antivenin": [["M", "S"]], - "antivenin's": null, - "antivenins": null, - "antiviral": [["S"]], - "antivirals": null, - "antivivisectionist": [["S"]], - "antivivisectionists": null, - "antiwar": null, - "antler": [["S", "D", "M"]], - "antlers": null, - "antlered": null, - "antler's": null, - "Antofagasta": [["M"]], - "Antofagasta's": null, - "Antoine": [["M"]], - "Antoine's": null, - "Antoinette": [["M"]], - "Antoinette's": null, - "Antonella": [["M"]], - "Antonella's": null, - "Antone": [["M"]], - "Antone's": null, - "Antonetta": [["M"]], - "Antonetta's": null, - "Antonia": [["M"]], - "Antonia's": null, - "Antonie": [["M"]], - "Antonie's": null, - "Antonietta": [["M"]], - "Antonietta's": null, - "Antoni": [["M"]], - "Antoni's": null, - "Antonina": [["M"]], - "Antonina's": null, - "Antonin": [["M"]], - "Antonin's": null, - "Antonino": [["M"]], - "Antonino's": null, - "Antoninus": [["M"]], - "Antoninus's": null, - "Antonio": [["M"]], - "Antonio's": null, - "Antonius": [["M"]], - "Antonius's": null, - "Anton": [["M", "S"]], - "Anton's": null, - "Antons": null, - "Antonovics": [["M"]], - "Antonovics's": null, - "Antony": [["M"]], - "Antony's": null, - "antonymous": null, - "antonym": [["S", "M"]], - "antonyms": null, - "antonym's": null, - "antral": null, - "antsy": [["R", "T"]], - "antsier": null, - "antsiest": null, - "Antwan": [["M"]], - "Antwan's": null, - "Antwerp": [["M"]], - "Antwerp's": null, - "Anubis": [["M"]], - "Anubis's": null, - "anus": [["S", "M"]], - "anuses": null, - "anus's": null, - "anvil": [["M", "D", "S", "G"]], - "anvil's": null, - "anviled": null, - "anvils": null, - "anviling": null, - "anxiety": [["M", "S"]], - "anxiety's": null, - "anxieties": null, - "anxiousness": [["S", "M"]], - "anxiousnesses": null, - "anxiousness's": null, - "anxious": [["P", "Y"]], - "anxiously": null, - "any": null, - "Anya": [["M"]], - "Anya's": null, - "anybody": [["S"]], - "anybodies": null, - "anyhow": null, - "Any": [["M"]], - "Any's": null, - "anymore": null, - "anyone": [["M", "S"]], - "anyone's": null, - "anyones": null, - "anyplace": null, - "anything": [["S"]], - "anythings": null, - "anytime": null, - "anyway": [["S"]], - "anyways": null, - "anywhere": [["S"]], - "anywheres": null, - "anywise": null, - "AOL": [["M"]], - "AOL's": null, - "aorta": [["M", "S"]], - "aorta's": null, - "aortas": null, - "aortic": null, - "AP": null, - "apace": null, - "apache": [["M", "S"]], - "apache's": null, - "apaches": null, - "Apache": [["M", "S"]], - "Apache's": null, - "Apaches": null, - "Apalachicola": [["M"]], - "Apalachicola's": null, - "apartheid": [["S", "M"]], - "apartheids": null, - "apartheid's": null, - "apart": [["L", "P"]], - "apartment": [["M", "S"]], - "apartness": [["M"]], - "apartment's": null, - "apartments": null, - "apartness's": null, - "apathetic": null, - "apathetically": null, - "apathy": [["S", "M"]], - "apathies": null, - "apathy's": null, - "apatite": [["M", "S"]], - "apatite's": null, - "apatites": null, - "APB": null, - "aped": [["A"]], - "reaped": null, - "apelike": null, - "ape": [["M", "D", "R", "S", "G"]], - "ape's": null, - "aper": [["A"]], - "apes": null, - "aping": null, - "Apennines": null, - "reaper": [["M"]], - "aperiodic": null, - "aperiodically": null, - "aperiodicity": [["M"]], - "aperiodicity's": null, - "aperitif": [["S"]], - "aperitifs": null, - "aperture": [["M", "D", "S"]], - "aperture's": null, - "apertured": null, - "apertures": null, - "apex": [["M", "S"]], - "apex's": null, - "apexes": null, - "aphasia": [["S", "M"]], - "aphasias": null, - "aphasia's": null, - "aphasic": [["S"]], - "aphasics": null, - "aphelia": null, - "aphelion": [["S", "M"]], - "aphelions": null, - "aphelion's": null, - "aphid": [["M", "S"]], - "aphid's": null, - "aphids": null, - "aphonic": null, - "aphorism": [["M", "S"]], - "aphorism's": null, - "aphorisms": null, - "aphoristic": null, - "aphoristically": null, - "aphrodisiac": [["S", "M"]], - "aphrodisiacs": null, - "aphrodisiac's": null, - "Aphrodite": [["M"]], - "Aphrodite's": null, - "Apia": [["M"]], - "Apia's": null, - "apiarist": [["S", "M"]], - "apiarists": null, - "apiarist's": null, - "apiary": [["S", "M"]], - "apiaries": null, - "apiary's": null, - "apical": [["Y", "S"]], - "apically": null, - "apicals": null, - "apices's": null, - "apiece": null, - "apishness": [["M"]], - "apishness's": null, - "apish": [["Y", "P"]], - "apishly": null, - "aplenty": null, - "aplomb": [["S", "M"]], - "aplombs": null, - "aplomb's": null, - "APO": null, - "Apocalypse": [["M"]], - "Apocalypse's": null, - "apocalypse": [["M", "S"]], - "apocalypse's": null, - "apocalypses": null, - "apocalyptic": null, - "apocryphalness": [["M"]], - "apocryphalness's": null, - "apocryphal": [["Y", "P"]], - "apocryphally": null, - "apocrypha": [["M"]], - "apocrypha's": null, - "Apocrypha": [["M"]], - "Apocrypha's": null, - "apogee": [["M", "S"]], - "apogee's": null, - "apogees": null, - "apolar": null, - "apolitical": [["Y"]], - "apolitically": null, - "Apollinaire": [["M"]], - "Apollinaire's": null, - "Apollonian": null, - "Apollo": [["S", "M"]], - "Apollos": null, - "Apollo's": null, - "apologetically": [["U"]], - "unapologetically": null, - "apologetic": [["S"]], - "apologetics": [["M"]], - "apologetics's": null, - "apologia": [["S", "M"]], - "apologias": null, - "apologia's": null, - "apologist": [["M", "S"]], - "apologist's": null, - "apologists": null, - "apologize": [["G", "Z", "S", "R", "D"]], - "apologizing": [["U"]], - "apologizers": null, - "apologizes": [["A"]], - "apologizer": [["M"]], - "apologized": null, - "apologizer's": null, - "reapologizes": null, - "unapologizing": [["M"]], - "apology": [["M", "S"]], - "apology's": null, - "apologies": null, - "apoplectic": null, - "apoplexy": [["S", "M"]], - "apoplexies": null, - "apoplexy's": null, - "apostasy": [["S", "M"]], - "apostasies": null, - "apostasy's": null, - "apostate": [["S", "M"]], - "apostates": null, - "apostate's": null, - "apostatize": [["D", "S", "G"]], - "apostatized": null, - "apostatizes": null, - "apostatizing": null, - "apostleship": [["S", "M"]], - "apostleships": null, - "apostleship's": null, - "apostle": [["S", "M"]], - "apostles": null, - "apostle's": null, - "apostolic": null, - "apostrophe": [["S", "M"]], - "apostrophes": null, - "apostrophe's": null, - "apostrophized": null, - "apothecary": [["M", "S"]], - "apothecary's": null, - "apothecaries": null, - "apothegm": [["M", "S"]], - "apothegm's": null, - "apothegms": null, - "apotheoses": null, - "apotheosis": [["M"]], - "apotheosis's": null, - "apotheosized": null, - "apotheosizes": null, - "apotheosizing": null, - "Appalachia": [["M"]], - "Appalachia's": null, - "Appalachian": [["M", "S"]], - "Appalachian's": null, - "Appalachians": null, - "appalling": [["Y"]], - "appallingly": null, - "appall": [["S", "D", "G"]], - "appalls": null, - "appalled": null, - "Appaloosa": [["M", "S"]], - "Appaloosa's": null, - "Appaloosas": null, - "appaloosa": [["S"]], - "appaloosas": null, - "appanage": [["M"]], - "appanage's": null, - "apparatus": [["S", "M"]], - "apparatuses": null, - "apparatus's": null, - "apparel": [["S", "G", "M", "D"]], - "apparels": null, - "appareling": null, - "apparel's": null, - "appareled": null, - "apparency": null, - "apparently": [["I"]], - "inapparently": null, - "apparentness": [["M"]], - "apparentness's": null, - "apparent": [["U"]], - "unapparent": null, - "apparition": [["S", "M"]], - "apparitions": null, - "apparition's": null, - "appealer": [["M"]], - "appealer's": null, - "appealing": [["U", "Y"]], - "unappealing": null, - "unappealingly": null, - "appealingly": null, - "appeal": [["S", "G", "M", "D", "R", "Z"]], - "appeals": null, - "appeal's": null, - "appealed": null, - "appealers": null, - "appear": [["A", "E", "G", "D", "S"]], - "reappear": null, - "reappearing": null, - "reappeared": null, - "reappears": null, - "disappear": null, - "disappearing": null, - "disappeared": null, - "disappears": null, - "appearing": null, - "appeared": null, - "appears": null, - "appearance": [["A", "M", "E", "S"]], - "reappearance": null, - "reappearance's": null, - "reappearances": null, - "appearance's": null, - "disappearance's": null, - "disappearance": null, - "disappearances": null, - "appearances": null, - "appearer": [["S"]], - "appearers": null, - "appease": [["D", "S", "R", "G", "Z", "L"]], - "appeased": [["U"]], - "appeases": null, - "appeaser": [["M"]], - "appeasing": null, - "appeasers": null, - "appeasement": [["M", "S"]], - "unappeased": null, - "appeasement's": null, - "appeasements": null, - "appeaser's": null, - "appellant": [["M", "S"]], - "appellant's": null, - "appellants": null, - "appellate": [["V", "N", "X"]], - "appellative": [["M", "Y"]], - "appellation": [["M"]], - "appellations": null, - "appellation's": null, - "appellative's": null, - "appellatively": null, - "appendage": [["M", "S"]], - "appendage's": null, - "appendages": null, - "appendectomy": [["S", "M"]], - "appendectomies": null, - "appendectomy's": null, - "appendices": null, - "appendicitis": [["S", "M"]], - "appendicitises": null, - "appendicitis's": null, - "appendix": [["S", "M"]], - "appendixes": null, - "appendix's": null, - "append": [["S", "G", "Z", "D", "R"]], - "appends": null, - "appending": null, - "appenders": null, - "appended": null, - "appender": null, - "appertain": [["D", "S", "G"]], - "appertained": null, - "appertains": null, - "appertaining": null, - "appetite": [["M", "V", "S"]], - "appetite's": null, - "appetitive": null, - "appetites": null, - "appetizer": [["S", "M"]], - "appetizers": null, - "appetizer's": null, - "appetizing": [["Y", "U"]], - "appetizingly": null, - "unappetizingly": null, - "unappetizing": null, - "Appia": [["M"]], - "Appia's": null, - "Appian": [["M"]], - "Appian's": null, - "applauder": [["M"]], - "applauder's": null, - "applaud": [["Z", "G", "S", "D", "R"]], - "applauders": null, - "applauding": null, - "applauds": null, - "applauded": null, - "applause": [["M", "S"]], - "applause's": null, - "applauses": null, - "applecart": [["M"]], - "applecart's": null, - "applejack": [["M", "S"]], - "applejack's": null, - "applejacks": null, - "Apple": [["M"]], - "Apple's": null, - "apple": [["M", "S"]], - "apple's": null, - "apples": null, - "applesauce": [["S", "M"]], - "applesauces": null, - "applesauce's": null, - "Appleseed": [["M"]], - "Appleseed's": null, - "Appleton": [["M"]], - "Appleton's": null, - "applet": [["S"]], - "applets": null, - "appliance": [["S", "M"]], - "appliances": null, - "appliance's": null, - "applicabilities": null, - "applicability": [["I", "M"]], - "inapplicability": null, - "inapplicability's": null, - "applicability's": null, - "applicable": [["I"]], - "inapplicable": null, - "applicably": null, - "applicant": [["M", "S"]], - "applicant's": null, - "applicants": null, - "applicate": [["V"]], - "applicative": [["Y"]], - "application": [["M", "A"]], - "application's": null, - "reapplication's": null, - "reapplication": null, - "applicatively": null, - "applicator": [["M", "S"]], - "applicator's": null, - "applicators": null, - "applier": [["S", "M"]], - "appliers": null, - "applier's": null, - "appliqu�d": null, - "appliqu�": [["M", "S", "G"]], - "appliqu�'s": null, - "appliqu�s": null, - "appliqu�ing": null, - "apply": [["A", "G", "S", "D", "X", "N"]], - "reapply": null, - "reapplying": null, - "reapplies": null, - "reapplied": null, - "reapplications": null, - "applying": null, - "applies": null, - "applied": null, - "applications": null, - "appointee": [["S", "M"]], - "appointees": null, - "appointee's": null, - "appoint": [["E", "L", "S", "A", "D", "G"]], - "disappoint": null, - "disappointment": null, - "disappoints": null, - "disappointed": [["Y"]], - "disappointing": [["Y"]], - "appointment": [["A", "S", "E", "M"]], - "reappointment": null, - "appoints": null, - "reappoints": null, - "reappoint": null, - "reappointed": null, - "reappointing": null, - "appointed": null, - "appointing": null, - "appointer": [["M", "S"]], - "appointer's": null, - "appointers": null, - "appointive": null, - "reappointments": null, - "reappointment's": null, - "appointments": null, - "disappointments": null, - "disappointment's": null, - "appointment's": null, - "Appolonia": [["M"]], - "Appolonia's": null, - "Appomattox": [["M"]], - "Appomattox's": null, - "apportion": [["G", "A", "D", "L", "S"]], - "apportioning": null, - "reapportioning": null, - "reapportion": null, - "reapportioned": null, - "reapportionment": null, - "reapportions": null, - "apportioned": null, - "apportionment": [["S", "A", "M"]], - "apportions": null, - "apportionments": null, - "reapportionments": null, - "reapportionment's": null, - "apportionment's": null, - "appose": [["S", "D", "G"]], - "apposes": null, - "apposed": null, - "apposing": null, - "appositeness": [["M", "S"]], - "appositeness's": null, - "appositenesses": null, - "apposite": [["X", "Y", "N", "V", "P"]], - "appositions": null, - "appositely": null, - "apposition": [["M"]], - "appositive": [["S", "Y"]], - "apposition's": null, - "appositives": null, - "appositively": null, - "appraisal": [["S", "A", "M"]], - "appraisals": null, - "reappraisals": null, - "reappraisal": null, - "reappraisal's": null, - "appraisal's": null, - "appraised": [["A"]], - "reappraised": null, - "appraisees": null, - "appraiser": [["M"]], - "appraiser's": null, - "appraises": [["A"]], - "reappraises": null, - "appraise": [["Z", "G", "D", "R", "S"]], - "appraisers": null, - "appraising": [["Y"]], - "appraisingly": null, - "appreciable": [["I"]], - "inappreciable": null, - "appreciably": [["I"]], - "inappreciably": null, - "appreciated": [["U"]], - "unappreciated": null, - "appreciate": [["X", "D", "S", "N", "G", "V"]], - "appreciations": null, - "appreciates": null, - "appreciation": [["M"]], - "appreciating": null, - "appreciative": [["P", "I", "Y"]], - "appreciation's": null, - "appreciativeness": [["M", "I"]], - "appreciativeness's": null, - "inappreciativeness's": null, - "inappreciativeness": null, - "inappreciative": null, - "inappreciatively": null, - "appreciatively": null, - "appreciator": [["M", "S"]], - "appreciator's": null, - "appreciators": null, - "appreciatory": null, - "apprehend": [["D", "R", "S", "G"]], - "apprehended": null, - "apprehender": [["M"]], - "apprehends": null, - "apprehending": null, - "apprehender's": null, - "apprehensible": null, - "apprehension": [["S", "M"]], - "apprehensions": null, - "apprehension's": null, - "apprehensiveness": [["S", "M"]], - "apprehensivenesses": null, - "apprehensiveness's": null, - "apprehensive": [["Y", "P"]], - "apprehensively": null, - "apprentice": [["D", "S", "G", "M"]], - "apprenticed": null, - "apprentices": null, - "apprenticing": null, - "apprentice's": null, - "apprenticeship": [["S", "M"]], - "apprenticeships": null, - "apprenticeship's": null, - "apprise": [["D", "S", "G"]], - "apprised": null, - "apprises": null, - "apprising": null, - "apprizer": [["S", "M"]], - "apprizers": null, - "apprizer's": null, - "apprizingly": null, - "apprizings": null, - "approachability": [["U", "M"]], - "unapproachability": null, - "unapproachability's": null, - "approachability's": null, - "approachable": [["U", "I"]], - "unapproachable": null, - "inapproachable": null, - "approach": [["B", "R", "S", "D", "Z", "G"]], - "approacher": [["M"]], - "approaches": null, - "approached": null, - "approachers": null, - "approaching": null, - "approacher's": null, - "approbate": [["N", "X"]], - "approbation": [["E", "M", "S"]], - "approbations": null, - "disapprobation": null, - "disapprobation's": null, - "disapprobations": null, - "approbation's": null, - "appropriable": null, - "appropriated": [["U"]], - "unappropriated": null, - "appropriately": [["I"]], - "inappropriately": null, - "appropriateness": [["S", "M", "I"]], - "appropriatenesses": null, - "inappropriatenesses": null, - "appropriateness's": null, - "inappropriateness's": null, - "inappropriateness": null, - "appropriate": [["X", "D", "S", "G", "N", "V", "Y", "T", "P"]], - "appropriations": null, - "appropriates": null, - "appropriating": null, - "appropriation": [["M"]], - "appropriative": null, - "appropriatest": null, - "appropriation's": null, - "appropriator": [["S", "M"]], - "appropriators": null, - "appropriator's": null, - "approval": [["E", "S", "M"]], - "disapproval": null, - "disapprovals": null, - "disapproval's": null, - "approvals": null, - "approval's": null, - "approve": [["D", "S", "R", "E", "G"]], - "approved": [["U"]], - "disapproved": null, - "approves": null, - "disapproves": null, - "approver": [["S", "M"]], - "disapprover": null, - "disapprove": null, - "disapproving": null, - "approving": [["Y", "E"]], - "unapproved": null, - "approver's": [["E"]], - "disapprover's": null, - "approvers": null, - "approvingly": null, - "disapprovingly": null, - "approx": null, - "approximate": [["X", "G", "N", "V", "Y", "D", "S"]], - "approximations": null, - "approximating": null, - "approximation": [["M"]], - "approximative": [["Y"]], - "approximately": null, - "approximated": null, - "approximates": null, - "approximation's": null, - "approximatively": null, - "appurtenance": [["M", "S"]], - "appurtenance's": null, - "appurtenances": null, - "appurtenant": [["S"]], - "appurtenants": null, - "APR": null, - "apricot": [["M", "S"]], - "apricot's": null, - "apricots": null, - "Aprilette": [["M"]], - "Aprilette's": null, - "April": [["M", "S"]], - "April's": null, - "Aprils": null, - "Apr": [["M"]], - "Apr's": null, - "apron": [["S", "D", "M", "G"]], - "aprons": null, - "aproned": null, - "apron's": null, - "aproning": null, - "apropos": null, - "apse": [["M", "S"]], - "apse's": null, - "apses": null, - "apsis": [["M"]], - "apsis's": null, - "apter": null, - "aptest": null, - "aptitude": [["S", "M"]], - "aptitudes": null, - "aptitude's": null, - "aptness": [["S", "M", "I"]], - "aptnesses": null, - "inaptnesses": null, - "aptness's": [["U"]], - "inaptness's": null, - "inaptness": null, - "unaptness's": null, - "apt": [["U", "P", "Y", "I"]], - "unapt": null, - "unaptness": null, - "unaptly": null, - "aptly": null, - "inaptly": null, - "inapt": null, - "Apuleius": [["M"]], - "Apuleius's": null, - "aquaculture": [["M", "S"]], - "aquaculture's": null, - "aquacultures": null, - "aqualung": [["S", "M"]], - "aqualungs": null, - "aqualung's": null, - "aquamarine": [["S", "M"]], - "aquamarines": null, - "aquamarine's": null, - "aquanaut": [["S", "M"]], - "aquanauts": null, - "aquanaut's": null, - "aquaplane": [["G", "S", "D", "M"]], - "aquaplaning": null, - "aquaplanes": null, - "aquaplaned": null, - "aquaplane's": null, - "aquarium": [["M", "S"]], - "aquarium's": null, - "aquariums": null, - "Aquarius": [["M", "S"]], - "Aquarius's": null, - "Aquariuses": null, - "aqua": [["S", "M"]], - "aquas": null, - "aqua's": null, - "aquatically": null, - "aquatic": [["S"]], - "aquatics": null, - "aquavit": [["S", "M"]], - "aquavits": null, - "aquavit's": null, - "aqueduct": [["M", "S"]], - "aqueduct's": null, - "aqueducts": null, - "aqueous": [["Y"]], - "aqueously": null, - "aquiculture's": null, - "aquifer": [["S", "M"]], - "aquifers": null, - "aquifer's": null, - "Aquila": [["M"]], - "Aquila's": null, - "aquiline": null, - "Aquinas": [["M"]], - "Aquinas's": null, - "Aquino": [["M"]], - "Aquino's": null, - "Aquitaine": [["M"]], - "Aquitaine's": null, - "AR": null, - "Arabela": [["M"]], - "Arabela's": null, - "Arabele": [["M"]], - "Arabele's": null, - "Arabella": [["M"]], - "Arabella's": null, - "Arabelle": [["M"]], - "Arabelle's": null, - "Arabel": [["M"]], - "Arabel's": null, - "arabesque": [["S", "M"]], - "arabesques": null, - "arabesque's": null, - "Arabia": [["M"]], - "Arabia's": null, - "Arabian": [["M", "S"]], - "Arabian's": null, - "Arabians": null, - "Arabic": [["M"]], - "Arabic's": null, - "arability": [["M", "S"]], - "arability's": null, - "arabilities": null, - "Arabist": [["M", "S"]], - "Arabist's": null, - "Arabists": null, - "arable": [["S"]], - "arables": null, - "Arab": [["M", "S"]], - "Arab's": null, - "Arabs": null, - "Araby": [["M"]], - "Araby's": null, - "Araceli": [["M"]], - "Araceli's": null, - "arachnid": [["M", "S"]], - "arachnid's": null, - "arachnids": null, - "arachnoid": [["M"]], - "arachnoid's": null, - "arachnophobia": null, - "Arafat": [["M"]], - "Arafat's": null, - "Araguaya": [["M"]], - "Araguaya's": null, - "Araldo": [["M"]], - "Araldo's": null, - "Aral": [["M"]], - "Aral's": null, - "Ara": [["M"]], - "Ara's": null, - "Aramaic": [["M"]], - "Aramaic's": null, - "Aramco": [["M"]], - "Aramco's": null, - "Arapahoes": null, - "Arapahoe's": null, - "Arapaho": [["M", "S"]], - "Arapaho's": null, - "Arapahos": null, - "Ararat": [["M"]], - "Ararat's": null, - "Araucanian": [["M"]], - "Araucanian's": null, - "Arawakan": [["M"]], - "Arawakan's": null, - "Arawak": [["M"]], - "Arawak's": null, - "arbiter": [["M", "S"]], - "arbiter's": null, - "arbiters": null, - "arbitrage": [["G", "M", "Z", "R", "S", "D"]], - "arbitraging": null, - "arbitrage's": null, - "arbitragers": null, - "arbitrager": [["M"]], - "arbitrages": null, - "arbitraged": null, - "arbitrager's": null, - "arbitrageur": [["S"]], - "arbitrageurs": null, - "arbitrament": [["M", "S"]], - "arbitrament's": null, - "arbitraments": null, - "arbitrarily": null, - "arbitrariness": [["M", "S"]], - "arbitrariness's": null, - "arbitrarinesses": null, - "arbitrary": [["P"]], - "arbitrate": [["S", "D", "X", "V", "N", "G"]], - "arbitrates": null, - "arbitrated": null, - "arbitrations": null, - "arbitrative": null, - "arbitration": [["M"]], - "arbitrating": null, - "arbitration's": null, - "arbitrator": [["S", "M"]], - "arbitrators": null, - "arbitrator's": null, - "arbor": [["D", "M", "S"]], - "arbored": null, - "arbor's": null, - "arbors": null, - "arboreal": [["Y"]], - "arboreally": null, - "arbores": null, - "arboretum": [["M", "S"]], - "arboretum's": null, - "arboretums": null, - "arborvitae": [["M", "S"]], - "arborvitae's": null, - "arborvitaes": null, - "arbutus": [["S", "M"]], - "arbutuses": null, - "arbutus's": null, - "ARC": null, - "arcade": [["S", "D", "M", "G"]], - "arcades": null, - "arcaded": null, - "arcade's": null, - "arcading": null, - "Arcadia": [["M"]], - "Arcadia's": null, - "Arcadian": null, - "arcana": [["M"]], - "arcana's": null, - "arcane": [["P"]], - "arcaneness": null, - "arc": [["D", "S", "G", "M"]], - "arced": null, - "arcs": null, - "arcing": null, - "arc's": null, - "archaeological": [["Y"]], - "archaeologically": null, - "archaeologist": [["S", "M"]], - "archaeologists": null, - "archaeologist's": null, - "archaically": null, - "archaic": [["P"]], - "archaicness": null, - "Archaimbaud": [["M"]], - "Archaimbaud's": null, - "archaism": [["S", "M"]], - "archaisms": null, - "archaism's": null, - "archaist": [["M", "S"]], - "archaist's": null, - "archaists": null, - "archaize": [["G", "D", "R", "S", "Z"]], - "archaizing": null, - "archaized": null, - "archaizer": [["M"]], - "archaizes": null, - "archaizers": null, - "archaizer's": null, - "Archambault": [["M"]], - "Archambault's": null, - "archangel": [["S", "M"]], - "archangels": null, - "archangel's": null, - "archbishopric": [["S", "M"]], - "archbishoprics": null, - "archbishopric's": null, - "archbishop": [["S", "M"]], - "archbishops": null, - "archbishop's": null, - "archdeacon": [["M", "S"]], - "archdeacon's": null, - "archdeacons": null, - "archdiocesan": null, - "archdiocese": [["S", "M"]], - "archdioceses": null, - "archdiocese's": null, - "archduchess": [["M", "S"]], - "archduchess's": null, - "archduchesses": null, - "archduke": [["M", "S"]], - "archduke's": null, - "archdukes": null, - "Archean": null, - "archenemy": [["S", "M"]], - "archenemies": null, - "archenemy's": null, - "archeologist's": null, - "archeology": [["M", "S"]], - "archeology's": null, - "archeologies": null, - "archer": [["M"]], - "archer's": null, - "Archer": [["M"]], - "Archer's": null, - "archery": [["M", "S"]], - "archery's": null, - "archeries": null, - "archetypal": null, - "archetype": [["S", "M"]], - "archetypes": null, - "archetype's": null, - "archfiend": [["S", "M"]], - "archfiends": null, - "archfiend's": null, - "archfool": null, - "Archibald": [["M"]], - "Archibald's": null, - "Archibaldo": [["M"]], - "Archibaldo's": null, - "Archibold": [["M"]], - "Archibold's": null, - "Archie": [["M"]], - "Archie's": null, - "archiepiscopal": null, - "Archimedes": [["M"]], - "Archimedes's": null, - "arching": [["M"]], - "arching's": null, - "archipelago": [["S", "M"]], - "archipelagos": null, - "archipelago's": null, - "architect": [["M", "S"]], - "architect's": null, - "architects": null, - "architectonic": [["S"]], - "architectonics": [["M"]], - "architectonics's": null, - "architectural": [["Y"]], - "architecturally": null, - "architecture": [["S", "M"]], - "architectures": null, - "architecture's": null, - "architrave": [["M", "S"]], - "architrave's": null, - "architraves": null, - "archival": null, - "archive": [["D", "R", "S", "G", "M", "Z"]], - "archived": [["U"]], - "archiver": null, - "archives": null, - "archiving": null, - "archive's": null, - "archivers": null, - "unarchived": null, - "archivist": [["M", "S"]], - "archivist's": null, - "archivists": null, - "Arch": [["M", "R"]], - "Arch's": null, - "archness": [["M", "S"]], - "archness's": null, - "archnesses": null, - "arch": [["P", "G", "V", "Z", "T", "M", "Y", "D", "S", "R"]], - "archers": null, - "archest": null, - "arch's": null, - "archly": null, - "arched": null, - "arches": null, - "archway": [["S", "M"]], - "archways": null, - "archway's": null, - "Archy": [["M"]], - "Archy's": null, - "arclike": null, - "ARCO": [["M"]], - "ARCO's": null, - "arcsine": null, - "arctangent": null, - "Arctic": [["M"]], - "Arctic's": null, - "arctic": [["S"]], - "arctics": null, - "Arcturus": [["M"]], - "Arcturus's": null, - "Ardabil": null, - "Arda": [["M", "H"]], - "Arda's": null, - "Ardath": [["M"]], - "Ardath's": null, - "Ardeen": [["M"]], - "Ardeen's": null, - "Ardelia": [["M"]], - "Ardelia's": null, - "Ardelis": [["M"]], - "Ardelis's": null, - "Ardella": [["M"]], - "Ardella's": null, - "Ardelle": [["M"]], - "Ardelle's": null, - "ardency": [["M"]], - "ardency's": null, - "Ardene": [["M"]], - "Ardene's": null, - "Ardenia": [["M"]], - "Ardenia's": null, - "Arden": [["M"]], - "Arden's": null, - "ardent": [["Y"]], - "ardently": null, - "Ardine": [["M"]], - "Ardine's": null, - "Ardisj": [["M"]], - "Ardisj's": null, - "Ardis": [["M"]], - "Ardis's": null, - "Ardith": [["M"]], - "Ardith's": null, - "ardor": [["S", "M"]], - "ardors": null, - "ardor's": null, - "Ardra": [["M"]], - "Ardra's": null, - "arduousness": [["S", "M"]], - "arduousnesses": null, - "arduousness's": null, - "arduous": [["Y", "P"]], - "arduously": null, - "Ardyce": [["M"]], - "Ardyce's": null, - "Ardys": null, - "Ardyth": [["M"]], - "Ardyth's": null, - "areal": null, - "area": [["S", "M"]], - "areas": null, - "area's": null, - "areawide": null, - "are": [["B", "S"]], - "ares": null, - "Arel": [["M"]], - "Arel's": null, - "arenaceous": null, - "arena": [["S", "M"]], - "arenas": null, - "arena's": null, - "aren't": null, - "Arequipa": [["M"]], - "Arequipa's": null, - "Ares": null, - "Aretha": [["M"]], - "Aretha's": null, - "Argentina": [["M"]], - "Argentina's": null, - "Argentinean": [["S"]], - "Argentineans": null, - "Argentine": [["S", "M"]], - "Argentines": null, - "Argentine's": null, - "Argentinian": [["S"]], - "Argentinians": null, - "argent": [["M", "S"]], - "argent's": null, - "argents": null, - "arginine": [["M", "S"]], - "arginine's": null, - "arginines": null, - "Argonaut": [["M", "S"]], - "Argonaut's": null, - "Argonauts": null, - "argonaut": [["S"]], - "argonauts": null, - "argon": [["M", "S"]], - "argon's": null, - "argons": null, - "Argonne": [["M"]], - "Argonne's": null, - "Argo": [["S", "M"]], - "Argos": null, - "Argo's": null, - "argosy": [["S", "M"]], - "argosies": null, - "argosy's": null, - "argot": [["S", "M"]], - "argots": null, - "argot's": null, - "arguable": [["I", "U"]], - "inarguable": null, - "unarguable": null, - "arguably": [["I", "U"]], - "inarguably": null, - "unarguably": null, - "argue": [["D", "S", "R", "G", "Z"]], - "argued": null, - "argues": null, - "arguer": [["M"]], - "arguing": null, - "arguers": null, - "arguer's": null, - "argumentation": [["S", "M"]], - "argumentations": null, - "argumentation's": null, - "argumentativeness": [["M", "S"]], - "argumentativeness's": null, - "argumentativenesses": null, - "argumentative": [["Y", "P"]], - "argumentatively": null, - "argument": [["S", "M"]], - "arguments": null, - "argument's": null, - "Argus": [["M"]], - "Argus's": null, - "argyle": [["S"]], - "argyles": null, - "Ariadne": [["M"]], - "Ariadne's": null, - "Ariana": [["M"]], - "Ariana's": null, - "Arianism": [["M"]], - "Arianism's": null, - "Arianist": [["S", "M"]], - "Arianists": null, - "Arianist's": null, - "aria": [["S", "M"]], - "arias": null, - "aria's": null, - "Aridatha": [["M"]], - "Aridatha's": null, - "aridity": [["S", "M"]], - "aridities": null, - "aridity's": null, - "aridness": [["M"]], - "aridness's": null, - "arid": [["T", "Y", "R", "P"]], - "aridest": null, - "aridly": null, - "arider": null, - "Ariela": [["M"]], - "Ariela's": null, - "Ariella": [["M"]], - "Ariella's": null, - "Arielle": [["M"]], - "Arielle's": null, - "Ariel": [["M"]], - "Ariel's": null, - "Arie": [["S", "M"]], - "Aries": [["S"]], - "Arie's": null, - "Arieses": null, - "aright": null, - "Ari": [["M"]], - "Ari's": null, - "Arin": [["M"]], - "Arin's": null, - "Ario": [["M"]], - "Ario's": null, - "Ariosto": [["M"]], - "Ariosto's": null, - "arise": [["G", "J", "S", "R"]], - "arising": null, - "arisings": null, - "arises": null, - "ariser": null, - "arisen": null, - "Aristarchus": [["M"]], - "Aristarchus's": null, - "Aristides": null, - "aristocracy": [["S", "M"]], - "aristocracies": null, - "aristocracy's": null, - "aristocratic": null, - "aristocratically": null, - "aristocrat": [["M", "S"]], - "aristocrat's": null, - "aristocrats": null, - "Aristophanes": [["M"]], - "Aristophanes's": null, - "Aristotelean": null, - "Aristotelian": [["M"]], - "Aristotelian's": null, - "Aristotle": [["M"]], - "Aristotle's": null, - "arithmetical": [["Y"]], - "arithmetically": null, - "arithmetician": [["S", "M"]], - "arithmeticians": null, - "arithmetician's": null, - "arithmetic": [["M", "S"]], - "arithmetic's": null, - "arithmetics": null, - "arithmetize": [["S", "D"]], - "arithmetizes": null, - "arithmetized": null, - "Arius": [["M"]], - "Arius's": null, - "Ariz": [["M"]], - "Ariz's": null, - "Arizona": [["M"]], - "Arizona's": null, - "Arizonan": [["S"]], - "Arizonans": null, - "Arizonian": [["S"]], - "Arizonians": null, - "Arjuna": [["M"]], - "Arjuna's": null, - "Arkansan": [["M", "S"]], - "Arkansan's": null, - "Arkansans": null, - "Arkansas": [["M"]], - "Arkansas's": null, - "Arkhangelsk": [["M"]], - "Arkhangelsk's": null, - "Ark": [["M"]], - "Ark's": null, - "ark": [["M", "S"]], - "ark's": null, - "arks": null, - "Arkwright": [["M"]], - "Arkwright's": null, - "Arlana": [["M"]], - "Arlana's": null, - "Arlan": [["M"]], - "Arlan's": null, - "Arlee": [["M"]], - "Arlee's": null, - "Arleen": [["M"]], - "Arleen's": null, - "Arlena": [["M"]], - "Arlena's": null, - "Arlene": [["M"]], - "Arlene's": null, - "Arlen": [["M"]], - "Arlen's": null, - "Arleta": [["M"]], - "Arleta's": null, - "Arlette": [["M"]], - "Arlette's": null, - "Arley": [["M"]], - "Arley's": null, - "Arleyne": [["M"]], - "Arleyne's": null, - "Arlie": [["M"]], - "Arlie's": null, - "Arliene": [["M"]], - "Arliene's": null, - "Arlina": [["M"]], - "Arlina's": null, - "Arlinda": [["M"]], - "Arlinda's": null, - "Arline": [["M"]], - "Arline's": null, - "Arlington": [["M"]], - "Arlington's": null, - "Arlin": [["M"]], - "Arlin's": null, - "Arluene": [["M"]], - "Arluene's": null, - "Arly": [["M"]], - "Arly's": null, - "Arlyne": [["M"]], - "Arlyne's": null, - "Arlyn": [["M"]], - "Arlyn's": null, - "Armada": [["M"]], - "Armada's": null, - "armada": [["S", "M"]], - "armadas": null, - "armada's": null, - "armadillo": [["M", "S"]], - "armadillo's": null, - "armadillos": null, - "Armageddon": [["S", "M"]], - "Armageddons": null, - "Armageddon's": null, - "Armagnac": [["M"]], - "Armagnac's": null, - "armament": [["E", "A", "S"]], - "disarmament": null, - "disarmaments": null, - "rearmament": null, - "rearmaments": null, - "armaments": null, - "armament's": [["E"]], - "disarmament's": null, - "Armand": [["M"]], - "Armand's": null, - "Armando": [["M"]], - "Armando's": null, - "Arman": [["M"]], - "Arman's": null, - "arm": [["A", "S", "E", "D", "G"]], - "rearm": null, - "rearms": null, - "rearmed": null, - "rearming": null, - "arms": null, - "disarms": null, - "disarm": null, - "disarmed": null, - "disarming": [["Y"]], - "armed": [["U"]], - "arming": [["M"]], - "Armata": [["M"]], - "Armata's": null, - "armature": [["M", "G", "S", "D"]], - "armature's": null, - "armaturing": null, - "armatures": null, - "armatured": null, - "armband": [["S", "M"]], - "armbands": null, - "armband's": null, - "armchair": [["M", "S"]], - "armchair's": null, - "armchairs": null, - "Armco": [["M"]], - "Armco's": null, - "unarmed": null, - "Armenia": [["M"]], - "Armenia's": null, - "Armenian": [["M", "S"]], - "Armenian's": null, - "Armenians": null, - "armer": [["M", "E", "S"]], - "armer's": null, - "disarmer's": null, - "disarmer": null, - "disarmers": null, - "armers": null, - "armful": [["S", "M"]], - "armfuls": null, - "armful's": null, - "armhole": [["M", "S"]], - "armhole's": null, - "armholes": null, - "arming's": null, - "Arminius": [["M"]], - "Arminius's": null, - "Armin": [["M"]], - "Armin's": null, - "armistice": [["M", "S"]], - "armistice's": null, - "armistices": null, - "armless": null, - "armlet": [["S", "M"]], - "armlets": null, - "armlet's": null, - "armload": [["M"]], - "armload's": null, - "Armonk": [["M"]], - "Armonk's": null, - "armored": [["U"]], - "unarmored": null, - "armorer": [["M"]], - "armorer's": null, - "armorial": [["S"]], - "armorials": null, - "armory": [["D", "S", "M"]], - "armoried": null, - "armories": null, - "armory's": null, - "armor": [["Z", "R", "D", "M", "G", "S"]], - "armorers": null, - "armor's": null, - "armoring": null, - "armors": null, - "Armour": [["M"]], - "Armour's": null, - "armpit": [["M", "S"]], - "armpit's": null, - "armpits": null, - "armrest": [["M", "S"]], - "armrest's": null, - "armrests": null, - "arm's": null, - "Armstrong": [["M"]], - "Armstrong's": null, - "Ar": [["M", "Y"]], - "Ar's": null, - "army": [["S", "M"]], - "armies": null, - "army's": null, - "Arnaldo": [["M"]], - "Arnaldo's": null, - "Arneb": [["M"]], - "Arneb's": null, - "Arne": [["M"]], - "Arne's": null, - "Arney": [["M"]], - "Arney's": null, - "Arnhem": [["M"]], - "Arnhem's": null, - "Arnie": [["M"]], - "Arnie's": null, - "Arni": [["M"]], - "Arni's": null, - "Arnold": [["M"]], - "Arnold's": null, - "Arnoldo": [["M"]], - "Arnoldo's": null, - "Arno": [["M"]], - "Arno's": null, - "Arnuad": [["M"]], - "Arnuad's": null, - "Arnulfo": [["M"]], - "Arnulfo's": null, - "Arny": [["M"]], - "Arny's": null, - "aroma": [["S", "M"]], - "aromas": null, - "aroma's": null, - "aromatherapist": [["S"]], - "aromatherapists": null, - "aromatherapy": [["S"]], - "aromatherapies": null, - "aromatically": null, - "aromaticity": [["M"]], - "aromaticity's": null, - "aromaticness": [["M"]], - "aromaticness's": null, - "aromatic": [["S", "P"]], - "aromatics": null, - "Aron": [["M"]], - "Aron's": null, - "arose": null, - "around": null, - "arousal": [["M", "S"]], - "arousal's": null, - "arousals": null, - "aroused": [["U"]], - "unaroused": null, - "arouse": [["G", "S", "D"]], - "arousing": null, - "arouses": null, - "ARPA": [["M"]], - "ARPA's": null, - "Arpanet": [["M"]], - "Arpanet's": null, - "ARPANET": [["M"]], - "ARPANET's": null, - "arpeggio": [["S", "M"]], - "arpeggios": null, - "arpeggio's": null, - "arrack": [["M"]], - "arrack's": null, - "Arragon": [["M"]], - "Arragon's": null, - "arraignment": [["M", "S"]], - "arraignment's": null, - "arraignments": null, - "arraign": [["S", "D", "G", "L"]], - "arraigns": null, - "arraigned": null, - "arraigning": null, - "arrangeable": [["A"]], - "rearrangeable": null, - "arranged": [["E", "A"]], - "disarranged": null, - "rearranged": null, - "arrangement": [["A", "M", "S", "E"]], - "rearrangement": null, - "rearrangement's": null, - "rearrangements": null, - "arrangement's": null, - "disarrangement's": null, - "arrangements": null, - "disarrangements": null, - "disarrangement": null, - "arranger": [["M"]], - "arranger's": null, - "arranges": [["E", "A"]], - "disarranges": null, - "rearranges": null, - "arrange": [["Z", "D", "S", "R", "L", "G"]], - "arrangers": null, - "arranging": [["E", "A"]], - "disarranging": null, - "rearranging": null, - "arrant": [["Y"]], - "arrantly": null, - "arras": [["S", "M"]], - "arrases": null, - "arras's": null, - "arrayer": null, - "array": [["E", "S", "G", "M", "D"]], - "disarray": null, - "disarrays": null, - "disarraying": null, - "disarray's": null, - "disarrayed": null, - "arrays": null, - "arraying": null, - "array's": null, - "arrayed": null, - "arrear": [["S", "M"]], - "arrears": null, - "arrear's": null, - "arrest": [["A", "D", "S", "G"]], - "rearrest": null, - "rearrested": null, - "rearrests": null, - "rearresting": null, - "arrested": null, - "arrests": null, - "arresting": [["Y"]], - "arrestee": [["M", "S"]], - "arrestee's": null, - "arrestees": null, - "arrester": [["M", "S"]], - "arrester's": null, - "arresters": null, - "arrestingly": null, - "arrestor": [["M", "S"]], - "arrestor's": null, - "arrestors": null, - "Arrhenius": [["M"]], - "Arrhenius's": null, - "arrhythmia": [["S", "M"]], - "arrhythmias": null, - "arrhythmia's": null, - "arrhythmic": null, - "arrhythmical": null, - "Arri": [["M"]], - "Arri's": null, - "arrival": [["M", "S"]], - "arrival's": null, - "arrivals": null, - "arriver": [["M"]], - "arriver's": null, - "arrive": [["S", "R", "D", "G"]], - "arrives": null, - "arrived": null, - "arriving": null, - "arrogance": [["M", "S"]], - "arrogance's": null, - "arrogances": null, - "arrogant": [["Y"]], - "arrogantly": null, - "arrogate": [["X", "N", "G", "D", "S"]], - "arrogations": null, - "arrogation": [["M"]], - "arrogating": null, - "arrogated": null, - "arrogates": null, - "arrogation's": null, - "Arron": [["M"]], - "Arron's": null, - "arrowhead": [["S", "M"]], - "arrowheads": null, - "arrowhead's": null, - "arrowroot": [["M", "S"]], - "arrowroot's": null, - "arrowroots": null, - "arrow": [["S", "D", "M", "G"]], - "arrows": null, - "arrowed": null, - "arrow's": null, - "arrowing": null, - "arroyo": [["M", "S"]], - "arroyo's": null, - "arroyos": null, - "arr": [["T", "V"]], - "arsenal": [["M", "S"]], - "arsenal's": null, - "arsenals": null, - "arsenate": [["M"]], - "arsenate's": null, - "arsenic": [["M", "S"]], - "arsenic's": null, - "arsenics": null, - "arsenide": [["M"]], - "arsenide's": null, - "arsine": [["M", "S"]], - "arsine's": null, - "arsines": null, - "arsonist": [["M", "S"]], - "arsonist's": null, - "arsonists": null, - "arson": [["S", "M"]], - "arsons": null, - "arson's": null, - "Artair": [["M"]], - "Artair's": null, - "Artaxerxes": [["M"]], - "Artaxerxes's": null, - "artefact's": null, - "Arte": [["M"]], - "Arte's": null, - "Artemas": null, - "Artemis": [["M"]], - "Artemis's": null, - "Artemus": [["M"]], - "Artemus's": null, - "arterial": [["S", "Y"]], - "arterials": null, - "arterially": null, - "arteriolar": null, - "arteriole": [["S", "M"]], - "arterioles": null, - "arteriole's": null, - "arterioscleroses": null, - "arteriosclerosis": [["M"]], - "arteriosclerosis's": null, - "artery": [["S", "M"]], - "arteries": null, - "artery's": null, - "artesian": null, - "artfulness": [["S", "M"]], - "artfulnesses": null, - "artfulness's": null, - "artful": [["Y", "P"]], - "artfully": null, - "Arther": [["M"]], - "Arther's": null, - "arthritic": [["S"]], - "arthritics": null, - "arthritides": null, - "arthritis": [["M"]], - "arthritis's": null, - "arthrogram": [["M", "S"]], - "arthrogram's": null, - "arthrograms": null, - "arthropod": [["S", "M"]], - "arthropods": null, - "arthropod's": null, - "arthroscope": [["S"]], - "arthroscopes": null, - "arthroscopic": null, - "Arthurian": null, - "Arthur": [["M"]], - "Arthur's": null, - "artichoke": [["S", "M"]], - "artichokes": null, - "artichoke's": null, - "article": [["G", "M", "D", "S"]], - "articling": null, - "article's": null, - "articled": null, - "articles": null, - "articulable": [["I"]], - "inarticulable": null, - "articular": null, - "articulated": [["E", "U"]], - "disarticulated": null, - "unarticulated": null, - "articulately": [["I"]], - "inarticulately": null, - "articulateness": [["I", "M", "S"]], - "inarticulateness": null, - "inarticulateness's": null, - "inarticulatenesses": null, - "articulateness's": null, - "articulatenesses": null, - "articulates": [["I"]], - "inarticulates": null, - "articulate": [["V", "G", "N", "Y", "X", "P", "S", "D"]], - "articulative": null, - "articulating": null, - "articulation": [["M"]], - "articulations": null, - "articulation's": null, - "articulator": [["S", "M"]], - "articulators": null, - "articulator's": null, - "articulatory": null, - "Artie": [["M"]], - "Artie's": null, - "artifact": [["M", "S"]], - "artifact's": null, - "artifacts": null, - "artificer": [["M"]], - "artificer's": null, - "artifice": [["Z", "R", "S", "M"]], - "artificers": null, - "artifices": null, - "artifice's": null, - "artificiality": [["M", "S"]], - "artificiality's": null, - "artificialities": null, - "artificialness": [["M"]], - "artificialness's": null, - "artificial": [["P", "Y"]], - "artificially": null, - "artillerist": null, - "artilleryman": [["M"]], - "artilleryman's": null, - "artillerymen": null, - "artillery": [["S", "M"]], - "artilleries": null, - "artillery's": null, - "artiness": [["M", "S"]], - "artiness's": null, - "artinesses": null, - "artisan": [["S", "M"]], - "artisans": null, - "artisan's": null, - "artiste": [["S", "M"]], - "artistes": null, - "artiste's": null, - "artistically": [["I"]], - "inartistically": null, - "artistic": [["I"]], - "inartistic": null, - "artist": [["M", "S"]], - "artist's": null, - "artists": null, - "artistry": [["S", "M"]], - "artistries": null, - "artistry's": null, - "artlessness": [["M", "S"]], - "artlessness's": null, - "artlessnesses": null, - "artless": [["Y", "P"]], - "artlessly": null, - "Art": [["M"]], - "Art's": null, - "art": [["S", "M"]], - "arts": null, - "art's": null, - "artsy": [["R", "T"]], - "artsier": null, - "artsiest": null, - "Artur": [["M"]], - "Artur's": null, - "Arturo": [["M"]], - "Arturo's": null, - "Artus": [["M"]], - "Artus's": null, - "artwork": [["M", "S"]], - "artwork's": null, - "artworks": null, - "Arty": [["M"]], - "Arty's": null, - "arty": [["T", "P", "R"]], - "artiest": null, - "artier": null, - "Aruba": [["M"]], - "Aruba's": null, - "arum": [["M", "S"]], - "arum's": null, - "arums": null, - "Arvie": [["M"]], - "Arvie's": null, - "Arvin": [["M"]], - "Arvin's": null, - "Arv": [["M"]], - "Arv's": null, - "Arvy": [["M"]], - "Arvy's": null, - "Aryan": [["M", "S"]], - "Aryan's": null, - "Aryans": null, - "Aryn": [["M"]], - "Aryn's": null, - "as": null, - "As": null, - "A's": null, - "Asa": [["M"]], - "Asa's": null, - "Asama": [["M"]], - "Asama's": null, - "asap": null, - "ASAP": null, - "asbestos": [["M", "S"]], - "asbestos's": null, - "asbestoses": null, - "Ascella": [["M"]], - "Ascella's": null, - "ascend": [["A", "D", "G", "S"]], - "reascend": null, - "reascended": null, - "reascending": null, - "reascends": null, - "ascended": null, - "ascending": null, - "ascends": null, - "ascendancy": [["M", "S"]], - "ascendancy's": null, - "ascendancies": null, - "ascendant": [["S", "Y"]], - "ascendants": null, - "ascendantly": null, - "ascender": [["S", "M"]], - "ascenders": null, - "ascender's": null, - "Ascension": [["M"]], - "Ascension's": null, - "ascension": [["S", "M"]], - "ascensions": null, - "ascension's": null, - "ascent": [["S", "M"]], - "ascents": null, - "ascent's": null, - "ascertain": [["D", "S", "B", "L", "G"]], - "ascertained": null, - "ascertains": null, - "ascertainable": null, - "ascertainment": [["M", "S"]], - "ascertaining": null, - "ascertainment's": null, - "ascertainments": null, - "ascetically": null, - "asceticism": [["M", "S"]], - "asceticism's": null, - "asceticisms": null, - "ascetic": [["S", "M"]], - "ascetics": null, - "ascetic's": null, - "ASCII": null, - "ascot": [["M", "S"]], - "ascot's": null, - "ascots": null, - "ascribe": [["G", "S", "D", "B"]], - "ascribing": null, - "ascribes": null, - "ascribed": null, - "ascribable": null, - "ascription": [["M", "S"]], - "ascription's": null, - "ascriptions": null, - "ascriptive": null, - "Ase": [["M"]], - "Ase's": null, - "aseptically": null, - "aseptic": [["S"]], - "aseptics": null, - "asexuality": [["M", "S"]], - "asexuality's": null, - "asexualities": null, - "asexual": [["Y"]], - "asexually": null, - "Asgard": [["M"]], - "Asgard's": null, - "ashame": [["D"]], - "ashamed": [["U", "Y"]], - "unashamed": null, - "unashamedly": null, - "ashamedly": null, - "Ashanti": [["M"]], - "Ashanti's": null, - "Ashbey": [["M"]], - "Ashbey's": null, - "Ashby": [["M"]], - "Ashby's": null, - "ashcan": [["S", "M"]], - "ashcans": null, - "ashcan's": null, - "Ashely": [["M"]], - "Ashely's": null, - "Asher": [["M"]], - "Asher's": null, - "Asheville": [["M"]], - "Asheville's": null, - "Ashia": [["M"]], - "Ashia's": null, - "Ashien": [["M"]], - "Ashien's": null, - "Ashil": [["M"]], - "Ashil's": null, - "Ashkenazim": null, - "Ashkhabad": [["M"]], - "Ashkhabad's": null, - "Ashla": [["M"]], - "Ashla's": null, - "Ashland": [["M"]], - "Ashland's": null, - "Ashlan": [["M"]], - "Ashlan's": null, - "ashlar": [["G", "S", "D", "M"]], - "ashlaring": null, - "ashlars": null, - "ashlared": null, - "ashlar's": null, - "Ashlee": [["M"]], - "Ashlee's": null, - "Ashleigh": [["M"]], - "Ashleigh's": null, - "Ashlen": [["M"]], - "Ashlen's": null, - "Ashley": [["M"]], - "Ashley's": null, - "Ashlie": [["M"]], - "Ashlie's": null, - "Ashli": [["M"]], - "Ashli's": null, - "Ashlin": [["M"]], - "Ashlin's": null, - "Ashly": [["M"]], - "Ashly's": null, - "ashman": [["M"]], - "ashman's": null, - "ash": [["M", "N", "D", "R", "S", "G"]], - "ash's": null, - "ashen": null, - "ashed": null, - "asher": null, - "ashes": null, - "ashing": null, - "Ashmolean": [["M"]], - "Ashmolean's": null, - "Ash": [["M", "R", "Y"]], - "Ash's": null, - "ashore": null, - "ashram": [["S", "M"]], - "ashrams": null, - "ashram's": null, - "Ashton": [["M"]], - "Ashton's": null, - "ashtray": [["M", "S"]], - "ashtray's": null, - "ashtrays": null, - "Ashurbanipal": [["M"]], - "Ashurbanipal's": null, - "ashy": [["R", "T"]], - "ashier": null, - "ashiest": null, - "Asia": [["M"]], - "Asia's": null, - "Asian": [["M", "S"]], - "Asian's": null, - "Asians": null, - "Asiatic": [["S", "M"]], - "Asiatics": null, - "Asiatic's": null, - "aside": [["S"]], - "asides": null, - "Asilomar": [["M"]], - "Asilomar's": null, - "Asimov": null, - "asinine": [["Y"]], - "asininely": null, - "asininity": [["M", "S"]], - "asininity's": null, - "asininities": null, - "askance": null, - "ask": [["D", "R", "Z", "G", "S"]], - "asked": [["U"]], - "asker": [["M"]], - "askers": null, - "asking": null, - "asks": null, - "unasked": null, - "asker's": null, - "askew": [["P"]], - "askewness": null, - "ASL": null, - "aslant": null, - "asleep": null, - "Asmara": [["M"]], - "Asmara's": null, - "asocial": [["S"]], - "asocials": null, - "Asoka": [["M"]], - "Asoka's": null, - "asparagus": [["M", "S"]], - "asparagus's": null, - "asparaguses": null, - "aspartame": [["S"]], - "aspartames": null, - "ASPCA": null, - "aspect": [["S", "M"]], - "aspects": null, - "aspect's": null, - "Aspell": [["M"]], - "Aspell's": null, - "aspen": [["M"]], - "aspen's": null, - "Aspen": [["M"]], - "Aspen's": null, - "asperity": [["S", "M"]], - "asperities": null, - "asperity's": null, - "asper": [["M"]], - "asper's": null, - "aspersion": [["S", "M"]], - "aspersions": null, - "aspersion's": null, - "asphalt": [["M", "D", "R", "S", "G"]], - "asphalt's": null, - "asphalted": null, - "asphalter": null, - "asphalts": null, - "asphalting": null, - "asphodel": [["M", "S"]], - "asphodel's": null, - "asphodels": null, - "asphyxia": [["M", "S"]], - "asphyxia's": null, - "asphyxias": null, - "asphyxiate": [["G", "N", "X", "S", "D"]], - "asphyxiating": null, - "asphyxiation": [["M"]], - "asphyxiations": null, - "asphyxiates": null, - "asphyxiated": null, - "asphyxiation's": null, - "aspic": [["M", "S"]], - "aspic's": null, - "aspics": null, - "Aspidiske": [["M"]], - "Aspidiske's": null, - "aspidistra": [["M", "S"]], - "aspidistra's": null, - "aspidistras": null, - "aspirant": [["M", "S"]], - "aspirant's": null, - "aspirants": null, - "aspirate": [["N", "G", "D", "S", "X"]], - "aspiration": [["M"]], - "aspirating": null, - "aspirated": null, - "aspirates": null, - "aspirations": null, - "aspirational": null, - "aspiration's": null, - "aspirator": [["S", "M"]], - "aspirators": null, - "aspirator's": null, - "aspire": [["G", "S", "R", "D"]], - "aspiring": null, - "aspires": null, - "aspirer": [["M"]], - "aspired": null, - "aspirer's": null, - "aspirin": [["S", "M"]], - "aspirins": null, - "aspirin's": null, - "asplenium": null, - "asp": [["M", "N", "R", "X", "S"]], - "asp's": null, - "aspens": null, - "asps": null, - "Asquith": [["M"]], - "Asquith's": null, - "Assad": [["M"]], - "Assad's": null, - "assailable": [["U"]], - "unassailable": [["P"]], - "assailant": [["S", "M"]], - "assailants": null, - "assailant's": null, - "assail": [["B", "G", "D", "S"]], - "assailing": null, - "assailed": null, - "assails": null, - "Assamese": [["M"]], - "Assamese's": null, - "Assam": [["M"]], - "Assam's": null, - "assassinate": [["D", "S", "G", "N", "X"]], - "assassinated": null, - "assassinates": null, - "assassinating": null, - "assassination": [["M"]], - "assassinations": null, - "assassination's": null, - "assassin": [["M", "S"]], - "assassin's": null, - "assassins": null, - "assaulter": [["M"]], - "assaulter's": null, - "assaultive": [["Y", "P"]], - "assaultively": null, - "assaultiveness": null, - "assault": [["S", "G", "V", "M", "D", "R"]], - "assaults": null, - "assaulting": null, - "assault's": null, - "assaulted": null, - "assayer": [["M"]], - "assayer's": null, - "assay": [["S", "Z", "G", "R", "D"]], - "assays": null, - "assayers": null, - "assaying": null, - "assayed": null, - "assemblage": [["M", "S"]], - "assemblage's": null, - "assemblages": null, - "assemble": [["A", "D", "S", "R", "E", "G"]], - "reassemble": null, - "reassembled": null, - "reassembles": null, - "reassembler": null, - "reassembling": null, - "assembled": [["U"]], - "disassembled": null, - "assembles": null, - "disassembles": null, - "assembler": [["E", "M", "S"]], - "disassembler": null, - "disassemble": null, - "disassembling": null, - "assembling": null, - "unassembled": null, - "disassembler's": null, - "disassemblers": null, - "assembler's": null, - "assemblers": null, - "assemblies": [["A"]], - "reassemblies": null, - "assembly": [["E", "A", "M"]], - "disassembly": null, - "disassembly's": null, - "reassembly": null, - "reassembly's": null, - "assembly's": null, - "assemblyman": [["M"]], - "assemblyman's": null, - "assemblymen": null, - "Assembly": [["M", "S"]], - "Assembly's": null, - "Assemblies": null, - "assemblywoman": null, - "assemblywomen": null, - "assent": [["S", "G", "M", "R", "D"]], - "assents": null, - "assenting": null, - "assent's": null, - "assenter": null, - "assented": null, - "assert": [["A", "D", "G", "S"]], - "reassert": null, - "reasserted": null, - "reasserting": null, - "reasserts": null, - "asserted": null, - "asserting": null, - "asserts": null, - "asserter": [["M", "S"]], - "asserter's": null, - "asserters": null, - "assertional": null, - "assertion": [["A", "M", "S"]], - "reassertion": null, - "reassertion's": null, - "reassertions": null, - "assertion's": null, - "assertions": null, - "assertiveness": [["S", "M"]], - "assertivenesses": null, - "assertiveness's": null, - "assertive": [["P", "Y"]], - "assertively": null, - "assess": [["B", "L", "S", "D", "G"]], - "assessable": null, - "assessment": [["S", "A", "M"]], - "assesses": [["A"]], - "assessed": [["A"]], - "assessing": null, - "reassessed": null, - "reassesses": null, - "assessments": null, - "reassessments": null, - "reassessment": null, - "reassessment's": null, - "assessment's": null, - "assessor": [["M", "S"]], - "assessor's": null, - "assessors": null, - "asset": [["S", "M"]], - "assets": null, - "asset's": null, - "asseverate": [["X", "S", "D", "N", "G"]], - "asseverations": null, - "asseverates": null, - "asseverated": null, - "asseveration": [["M"]], - "asseverating": null, - "asseveration's": null, - "asshole": [["M", "S", "!"]], - "asshole's": null, - "assholes": null, - "assiduity": [["S", "M"]], - "assiduities": null, - "assiduity's": null, - "assiduousness": [["S", "M"]], - "assiduousnesses": null, - "assiduousness's": null, - "assiduous": [["P", "Y"]], - "assiduously": null, - "assign": [["A", "L", "B", "S", "G", "D"]], - "reassign": null, - "reassignment": null, - "reassignable": null, - "reassigns": null, - "reassigning": null, - "reassigned": null, - "assignment": [["M", "A", "S"]], - "assignable": null, - "assigns": [["C", "U"]], - "assigning": null, - "assigned": [["U"]], - "assignation": [["M", "S"]], - "assignation's": null, - "assignations": null, - "unassigned": null, - "assignee": [["M", "S"]], - "assignee's": null, - "assignees": null, - "assigner": [["M", "S"]], - "assigner's": null, - "assigners": null, - "assignment's": null, - "reassignment's": null, - "reassignments": null, - "assignments": null, - "assignor": [["M", "S"]], - "assignor's": null, - "assignors": null, - "deassigns": null, - "unassigns": null, - "assimilate": [["V", "N", "G", "X", "S", "D"]], - "assimilative": null, - "assimilation": [["M"]], - "assimilating": null, - "assimilations": null, - "assimilates": null, - "assimilated": null, - "assimilationist": [["M"]], - "assimilationist's": null, - "assimilation's": null, - "Assisi": [["M"]], - "Assisi's": null, - "assistance": [["S", "M"]], - "assistances": null, - "assistance's": null, - "assistantship": [["S", "M"]], - "assistantships": null, - "assistantship's": null, - "assistant": [["S", "M"]], - "assistants": null, - "assistant's": null, - "assisted": [["U"]], - "unassisted": null, - "assister": [["M"]], - "assister's": null, - "assist": [["R", "D", "G", "S"]], - "assisting": null, - "assists": null, - "assize": [["M", "G", "S", "D"]], - "assize's": null, - "assizing": null, - "assizes": null, - "assized": null, - "ass": [["M", "N", "S"]], - "ass's": null, - "assen": null, - "asses": null, - "assn": null, - "assoc": null, - "associable": null, - "associated": [["U"]], - "unassociated": null, - "associate": [["S", "D", "E", "X", "N", "G"]], - "associates": null, - "disassociates": null, - "disassociated": null, - "disassociate": null, - "disassociations": null, - "disassociation": null, - "disassociating": null, - "associations": null, - "association": [["M", "E"]], - "associating": null, - "associateship": null, - "associational": null, - "association's": null, - "disassociation's": null, - "associative": [["Y"]], - "associatively": null, - "associativity": [["S"]], - "associativities": null, - "associator": [["M", "S"]], - "associator's": null, - "associators": null, - "assonance": [["S", "M"]], - "assonances": null, - "assonance's": null, - "assonant": [["S"]], - "assonants": null, - "assorter": [["M"]], - "assorter's": null, - "assort": [["L", "R", "D", "S", "G"]], - "assortment": [["S", "M"]], - "assorted": null, - "assorts": null, - "assorting": null, - "assortments": null, - "assortment's": null, - "asst": null, - "assuaged": [["U"]], - "unassuaged": null, - "assuage": [["S", "D", "G"]], - "assuages": null, - "assuaging": null, - "assumability": null, - "assumer": [["M"]], - "assumer's": null, - "assume": [["S", "R", "D", "B", "J", "G"]], - "assumes": null, - "assumed": null, - "assumable": null, - "assumings": null, - "assuming": [["U", "A"]], - "unassuming": [["P", "Y"]], - "reassuming": null, - "assumption": [["S", "M"]], - "assumptions": null, - "assumption's": null, - "assumptive": null, - "assurance": [["A", "M", "S"]], - "reassurance": null, - "reassurance's": null, - "reassurances": null, - "assurance's": null, - "assurances": null, - "assure": [["A", "G", "S", "D"]], - "reassure": null, - "reassuring": null, - "reassures": null, - "reassured": null, - "assuring": [["Y", "A"]], - "assures": null, - "assured": [["P", "Y", "S"]], - "assuredness": [["M"]], - "assuredness's": null, - "assuredly": null, - "assureds": null, - "assurer": [["S", "M"]], - "assurers": null, - "assurer's": null, - "assuringly": null, - "reassuringly": [["U"]], - "Assyria": [["M"]], - "Assyria's": null, - "Assyrian": [["S", "M"]], - "Assyrians": null, - "Assyrian's": null, - "Assyriology": [["M"]], - "Assyriology's": null, - "Astaire": [["S", "M"]], - "Astaires": null, - "Astaire's": null, - "Astarte": [["M"]], - "Astarte's": null, - "astatine": [["M", "S"]], - "astatine's": null, - "astatines": null, - "aster": [["E", "S", "M"]], - "disaster": null, - "disasters": null, - "disaster's": null, - "asters": null, - "aster's": null, - "asteria": null, - "asterisked": [["U"]], - "unasterisked": null, - "asterisk": [["S", "G", "M", "D"]], - "asterisks": null, - "asterisking": null, - "asterisk's": null, - "astern": null, - "asteroidal": null, - "asteroid": [["S", "M"]], - "asteroids": null, - "asteroid's": null, - "asthma": [["M", "S"]], - "asthma's": null, - "asthmas": null, - "asthmatic": [["S"]], - "asthmatics": null, - "astigmatic": [["S"]], - "astigmatics": null, - "astigmatism": [["S", "M"]], - "astigmatisms": null, - "astigmatism's": null, - "astir": null, - "astonish": [["G", "S", "D", "L"]], - "astonishing": [["Y"]], - "astonishes": null, - "astonished": null, - "astonishment": [["S", "M"]], - "astonishingly": null, - "astonishments": null, - "astonishment's": null, - "Aston": [["M"]], - "Aston's": null, - "Astoria": [["M"]], - "Astoria's": null, - "Astor": [["M"]], - "Astor's": null, - "astounding": [["Y"]], - "astoundingly": null, - "astound": [["S", "D", "G"]], - "astounds": null, - "astounded": null, - "astraddle": null, - "Astrakhan": [["M"]], - "Astrakhan's": null, - "astrakhan": [["S", "M"]], - "astrakhans": null, - "astrakhan's": null, - "astral": [["S", "Y"]], - "astrals": null, - "astrally": null, - "Astra": [["M"]], - "Astra's": null, - "astray": null, - "astride": null, - "Astrid": [["M"]], - "Astrid's": null, - "astringency": [["S", "M"]], - "astringencies": null, - "astringency's": null, - "astringent": [["Y", "S"]], - "astringently": null, - "astringents": null, - "Astrix": [["M"]], - "Astrix's": null, - "astrolabe": [["M", "S"]], - "astrolabe's": null, - "astrolabes": null, - "astrologer": [["M", "S"]], - "astrologer's": null, - "astrologers": null, - "astrological": [["Y"]], - "astrologically": null, - "astrologist": [["M"]], - "astrologist's": null, - "astrology": [["S", "M"]], - "astrologies": null, - "astrology's": null, - "astronautical": null, - "astronautic": [["S"]], - "astronautics": [["M"]], - "astronautics's": null, - "astronaut": [["S", "M"]], - "astronauts": null, - "astronaut's": null, - "astronomer": [["M", "S"]], - "astronomer's": null, - "astronomers": null, - "astronomic": null, - "astronomical": [["Y"]], - "astronomically": null, - "astronomy": [["S", "M"]], - "astronomies": null, - "astronomy's": null, - "astrophysical": null, - "astrophysicist": [["S", "M"]], - "astrophysicists": null, - "astrophysicist's": null, - "astrophysics": [["M"]], - "astrophysics's": null, - "Astroturf": [["M"]], - "Astroturf's": null, - "AstroTurf": [["S"]], - "AstroTurfs": null, - "Asturias": [["M"]], - "Asturias's": null, - "astuteness": [["M", "S"]], - "astuteness's": null, - "astutenesses": null, - "astute": [["R", "T", "Y", "P"]], - "astuter": null, - "astutest": null, - "astutely": null, - "Asunci�n": [["M"]], - "Asunci�n's": null, - "asunder": null, - "Aswan": [["M"]], - "Aswan's": null, - "asylum": [["M", "S"]], - "asylum's": null, - "asylums": null, - "asymmetric": null, - "asymmetrical": [["Y"]], - "asymmetrically": null, - "asymmetry": [["M", "S"]], - "asymmetry's": null, - "asymmetries": null, - "asymptomatic": null, - "asymptomatically": null, - "asymptote": [["M", "S"]], - "asymptote's": null, - "asymptotes": null, - "asymptotically": null, - "asymptotic": [["Y"]], - "asymptoticly": null, - "asynchronism": [["M"]], - "asynchronism's": null, - "asynchronous": [["Y"]], - "asynchronously": null, - "asynchrony": null, - "at": null, - "Atacama": [["M"]], - "Atacama's": null, - "Atahualpa": [["M"]], - "Atahualpa's": null, - "Atalanta": [["M"]], - "Atalanta's": null, - "Atari": [["M"]], - "Atari's": null, - "Atat�rk": [["M"]], - "Atat�rk's": null, - "atavism": [["M", "S"]], - "atavism's": null, - "atavisms": null, - "atavistic": null, - "atavist": [["M", "S"]], - "atavist's": null, - "atavists": null, - "ataxia": [["M", "S"]], - "ataxia's": null, - "ataxias": null, - "ataxic": [["S"]], - "ataxics": null, - "atelier": [["S", "M"]], - "ateliers": null, - "atelier's": null, - "atemporal": null, - "ate": [["S"]], - "ates": null, - "Athabasca": [["M"]], - "Athabasca's": null, - "Athabascan's": null, - "Athabaskan": [["M", "S"]], - "Athabaskan's": null, - "Athabaskans": null, - "Athabaska's": null, - "atheism": [["S", "M"]], - "atheisms": null, - "atheism's": null, - "atheistic": null, - "atheist": [["S", "M"]], - "atheists": null, - "atheist's": null, - "Athena": [["M"]], - "Athena's": null, - "Athene": [["M"]], - "Athene's": null, - "Athenian": [["S", "M"]], - "Athenians": null, - "Athenian's": null, - "Athens": [["M"]], - "Athens's": null, - "atheroscleroses": null, - "atherosclerosis": [["M"]], - "atherosclerosis's": null, - "athirst": null, - "athlete": [["M", "S"]], - "athlete's": null, - "athletes": null, - "athletically": null, - "athleticism": [["M"]], - "athleticism's": null, - "athletic": [["S"]], - "athletics": [["M"]], - "athletics's": null, - "athwart": null, - "atilt": null, - "Atkins": [["M"]], - "Atkins's": null, - "Atkinson": [["M"]], - "Atkinson's": null, - "Atlanta": [["M"]], - "Atlanta's": null, - "Atlante": [["M", "S"]], - "Atlante's": null, - "Atlantes": null, - "atlantes": null, - "Atlantic": [["M"]], - "Atlantic's": null, - "Atlantis": [["M"]], - "Atlantis's": null, - "atlas": [["S", "M"]], - "atlases": null, - "atlas's": null, - "Atlas": [["S", "M"]], - "Atlases": null, - "Atlas's": null, - "At": [["M"]], - "At's": null, - "Atman": null, - "ATM": [["M"]], - "ATM's": null, - "atmosphere": [["D", "S", "M"]], - "atmosphered": null, - "atmospheres": null, - "atmosphere's": null, - "atmospherically": null, - "atmospheric": [["S"]], - "atmospherics": null, - "atoll": [["M", "S"]], - "atoll's": null, - "atolls": null, - "atomically": null, - "atomicity": [["M"]], - "atomicity's": null, - "atomic": [["S"]], - "atomics": [["M"]], - "atomics's": null, - "atomistic": null, - "atomization": [["S", "M"]], - "atomizations": null, - "atomization's": null, - "atomize": [["G", "Z", "D", "R", "S"]], - "atomizing": null, - "atomizers": null, - "atomized": null, - "atomizer": [["M"]], - "atomizes": null, - "atomizer's": null, - "atom": [["S", "M"]], - "atoms": null, - "atom's": null, - "atonality": [["M", "S"]], - "atonality's": null, - "atonalities": null, - "atonal": [["Y"]], - "atonally": null, - "atone": [["L", "D", "S", "G"]], - "atonement": [["S", "M"]], - "atoned": null, - "atones": null, - "atoning": null, - "atonements": null, - "atonement's": null, - "atop": null, - "ATP": null, - "Atreus": [["M"]], - "Atreus's": null, - "atria": null, - "atrial": null, - "Atria": [["M"]], - "Atria's": null, - "atrium": [["M"]], - "atrium's": null, - "atrociousness": [["S", "M"]], - "atrociousnesses": null, - "atrociousness's": null, - "atrocious": [["Y", "P"]], - "atrociously": null, - "atrocity": [["S", "M"]], - "atrocities": null, - "atrocity's": null, - "atrophic": null, - "atrophy": [["D", "S", "G", "M"]], - "atrophied": null, - "atrophies": null, - "atrophying": null, - "atrophy's": null, - "atropine": [["S", "M"]], - "atropines": null, - "atropine's": null, - "Atropos": [["M"]], - "Atropos's": null, - "Ats": null, - "attach": [["B", "L", "G", "Z", "M", "D", "R", "S"]], - "attachable": null, - "attachment": [["A", "S", "M"]], - "attaching": null, - "attachers": null, - "attach's": null, - "attached": [["U", "A"]], - "attacher": [["M"]], - "attaches": null, - "unattached": null, - "reattached": null, - "attacher's": null, - "attach�": [["S"]], - "attach�s": null, - "reattachment": null, - "reattachments": null, - "reattachment's": null, - "attachments": null, - "attachment's": null, - "attacker": [["M"]], - "attacker's": null, - "attack": [["G", "B", "Z", "S", "D", "R"]], - "attacking": null, - "attackable": null, - "attackers": null, - "attacks": null, - "attacked": null, - "attainabilities": null, - "attainability": [["U", "M"]], - "unattainability": null, - "unattainability's": null, - "attainability's": null, - "attainableness": [["M"]], - "attainableness's": null, - "attainable": [["U"]], - "unattainable": null, - "attainably": [["U"]], - "unattainably": null, - "attain": [["A", "G", "S", "D"]], - "reattain": null, - "reattaining": null, - "reattains": null, - "reattained": null, - "attaining": null, - "attains": null, - "attained": [["U"]], - "attainder": [["M", "S"]], - "attainder's": null, - "attainders": null, - "unattained": null, - "attainer": [["M", "S"]], - "attainer's": null, - "attainers": null, - "attainment": [["M", "S"]], - "attainment's": null, - "attainments": null, - "attar": [["M", "S"]], - "attar's": null, - "attars": null, - "attempt": [["A", "D", "S", "G"]], - "reattempt": null, - "reattempted": null, - "reattempts": null, - "reattempting": null, - "attempted": null, - "attempts": null, - "attempting": null, - "attempter": [["M", "S"]], - "attempter's": null, - "attempters": null, - "attendance": [["M", "S"]], - "attendance's": null, - "attendances": null, - "attendant": [["S", "M"]], - "attendants": null, - "attendant's": null, - "attended": [["U"]], - "unattended": null, - "attendee": [["S", "M"]], - "attendees": null, - "attendee's": null, - "attender": [["M"]], - "attender's": null, - "attend": [["S", "G", "Z", "D", "R"]], - "attends": null, - "attending": null, - "attenders": null, - "attentional": null, - "attentionality": null, - "attention": [["I", "M", "S"]], - "inattention": null, - "inattention's": null, - "inattentions": null, - "attention's": null, - "attentions": null, - "attentiveness": [["I", "M", "S"]], - "inattentiveness": null, - "inattentiveness's": null, - "inattentivenesses": null, - "attentiveness's": null, - "attentivenesses": null, - "attentive": [["Y", "I", "P"]], - "attentively": null, - "inattentively": null, - "inattentive": null, - "attenuated": [["U"]], - "unattenuated": null, - "attenuate": [["S", "D", "X", "G", "N"]], - "attenuates": null, - "attenuations": null, - "attenuating": null, - "attenuation": [["M"]], - "attenuation's": null, - "attenuator": [["M", "S"]], - "attenuator's": null, - "attenuators": null, - "attestation": [["S", "M"]], - "attestations": null, - "attestation's": null, - "attested": [["U"]], - "unattested": null, - "attester": [["M"]], - "attester's": null, - "attest": [["G", "S", "D", "R"]], - "attesting": null, - "attests": null, - "Attic": null, - "Attica": [["M"]], - "Attica's": null, - "attic": [["M", "S"]], - "attic's": null, - "attics": null, - "Attila": [["M"]], - "Attila's": null, - "attire": [["S", "D", "G"]], - "attires": null, - "attired": null, - "attiring": null, - "attitude": [["M", "S"]], - "attitude's": null, - "attitudes": null, - "attitudinal": [["Y"]], - "attitudinally": null, - "attitudinize": [["S", "D", "G"]], - "attitudinizes": null, - "attitudinized": null, - "attitudinizing": null, - "Attlee": [["M"]], - "Attlee's": null, - "attn": null, - "Attn": null, - "attorney": [["S", "M"]], - "attorneys": null, - "attorney's": null, - "attractant": [["S", "M"]], - "attractants": null, - "attractant's": null, - "attract": [["B", "S", "D", "G", "V"]], - "attractable": null, - "attracts": null, - "attracted": null, - "attracting": null, - "attractive": [["U", "Y", "P"]], - "attraction": [["M", "S"]], - "attraction's": null, - "attractions": null, - "attractivenesses": null, - "attractiveness": [["U", "M"]], - "unattractiveness": null, - "unattractiveness's": null, - "attractiveness's": null, - "unattractive": null, - "unattractively": null, - "attractively": null, - "attractor": [["M", "S"]], - "attractor's": null, - "attractors": null, - "attributable": [["U"]], - "unattributable": null, - "attribute": [["B", "V", "N", "G", "R", "S", "D", "X"]], - "attributive": [["S", "Y"]], - "attribution": [["M"]], - "attributing": null, - "attributer": [["M"]], - "attributes": null, - "attributed": [["U"]], - "attributions": null, - "unattributed": null, - "attributer's": null, - "attributional": null, - "attribution's": null, - "attributives": null, - "attributively": null, - "attrition": [["M", "S"]], - "attrition's": null, - "attritions": null, - "Attucks": null, - "attune": [["S", "D", "G"]], - "attunes": null, - "attuned": null, - "attuning": null, - "atty": null, - "ATV": [["S"]], - "ATVs": null, - "atwitter": null, - "Atwood": [["M"]], - "Atwood's": null, - "atypical": [["Y"]], - "atypically": null, - "Aube": [["M"]], - "Aube's": null, - "Auberge": [["M"]], - "Auberge's": null, - "aubergine": [["M", "S"]], - "aubergine's": null, - "aubergines": null, - "Auberon": [["M"]], - "Auberon's": null, - "Auberta": [["M"]], - "Auberta's": null, - "Aubert": [["M"]], - "Aubert's": null, - "Aubine": [["M"]], - "Aubine's": null, - "Aubree": [["M"]], - "Aubree's": null, - "Aubrette": [["M"]], - "Aubrette's": null, - "Aubrey": [["M"]], - "Aubrey's": null, - "Aubrie": [["M"]], - "Aubrie's": null, - "Aubry": [["M"]], - "Aubry's": null, - "auburn": [["S", "M"]], - "auburns": null, - "auburn's": null, - "Auckland": [["M"]], - "Auckland's": null, - "auctioneer": [["S", "D", "M", "G"]], - "auctioneers": null, - "auctioneered": null, - "auctioneer's": null, - "auctioneering": null, - "auction": [["M", "D", "S", "G"]], - "auction's": null, - "auctioned": null, - "auctions": null, - "auctioning": null, - "audaciousness": [["S", "M"]], - "audaciousnesses": null, - "audaciousness's": null, - "audacious": [["P", "Y"]], - "audaciously": null, - "audacity": [["M", "S"]], - "audacity's": null, - "audacities": null, - "Auden": [["M"]], - "Auden's": null, - "audibility": [["M", "S", "I"]], - "audibility's": null, - "inaudibility's": null, - "audibilities": null, - "inaudibilities": null, - "inaudibility": null, - "audible": [["I"]], - "inaudible": null, - "audibles": null, - "audibly": [["I"]], - "inaudibly": null, - "Audie": [["M"]], - "Audie's": null, - "audience": [["M", "S"]], - "audience's": null, - "audiences": null, - "Audi": [["M"]], - "Audi's": null, - "audiogram": [["S", "M"]], - "audiograms": null, - "audiogram's": null, - "audiological": null, - "audiologist": [["M", "S"]], - "audiologist's": null, - "audiologists": null, - "audiology": [["S", "M"]], - "audiologies": null, - "audiology's": null, - "audiometer": [["M", "S"]], - "audiometer's": null, - "audiometers": null, - "audiometric": null, - "audiometry": [["M"]], - "audiometry's": null, - "audiophile": [["S", "M"]], - "audiophiles": null, - "audiophile's": null, - "audio": [["S", "M"]], - "audios": null, - "audio's": null, - "audiotape": [["S"]], - "audiotapes": null, - "audiovisual": [["S"]], - "audiovisuals": null, - "audited": [["U"]], - "unaudited": null, - "audition": [["M", "D", "S", "G"]], - "audition's": null, - "auditioned": null, - "auditions": null, - "auditioning": null, - "auditorium": [["M", "S"]], - "auditorium's": null, - "auditoriums": null, - "auditor": [["M", "S"]], - "auditor's": null, - "auditors": null, - "auditory": [["S"]], - "auditories": null, - "audit": [["S", "M", "D", "V", "G"]], - "audits": null, - "audit's": null, - "auditive": null, - "auditing": null, - "Audra": [["M"]], - "Audra's": null, - "Audre": [["M"]], - "Audre's": null, - "Audrey": [["M"]], - "Audrey's": null, - "Audrie": [["M"]], - "Audrie's": null, - "Audrye": [["M"]], - "Audrye's": null, - "Audry": [["M"]], - "Audry's": null, - "Audubon": [["M"]], - "Audubon's": null, - "Audy": [["M"]], - "Audy's": null, - "Auerbach": [["M"]], - "Auerbach's": null, - "Augean": null, - "auger": [["S", "M"]], - "augers": null, - "auger's": null, - "aught": [["S"]], - "aughts": null, - "Augie": [["M"]], - "Augie's": null, - "Aug": [["M"]], - "Aug's": null, - "augmentation": [["S", "M"]], - "augmentations": null, - "augmentation's": null, - "augmentative": [["S"]], - "augmentatives": null, - "augment": [["D", "R", "Z", "G", "S"]], - "augmented": null, - "augmenter": [["M"]], - "augmenters": null, - "augmenting": null, - "augments": null, - "augmenter's": null, - "augur": [["G", "D", "M", "S"]], - "auguring": null, - "augured": null, - "augur's": null, - "augurs": null, - "augury": [["S", "M"]], - "auguries": null, - "augury's": null, - "Augusta": [["M"]], - "Augusta's": null, - "Augustan": [["S"]], - "Augustans": null, - "Auguste": [["M"]], - "Auguste's": null, - "Augustina": [["M"]], - "Augustina's": null, - "Augustine": [["M"]], - "Augustine's": null, - "Augustinian": [["S"]], - "Augustinians": null, - "Augustin": [["M"]], - "Augustin's": null, - "augustness": [["S", "M"]], - "augustnesses": null, - "augustness's": null, - "Augusto": [["M"]], - "Augusto's": null, - "August": [["S", "M"]], - "Augusts": null, - "August's": null, - "august": [["S", "T", "P", "Y", "R"]], - "augusts": null, - "augustest": null, - "augustly": null, - "auguster": null, - "Augustus": [["M"]], - "Augustus's": null, - "Augy": [["M"]], - "Augy's": null, - "auk": [["M", "S"]], - "auk's": null, - "auks": null, - "Au": [["M"]], - "Au's": null, - "Aundrea": [["M"]], - "Aundrea's": null, - "auntie": [["M", "S"]], - "auntie's": null, - "aunties": null, - "aunt": [["M", "Y", "S"]], - "aunt's": null, - "auntly": null, - "aunts": null, - "aunty's": null, - "aural": [["Y"]], - "aurally": null, - "Aura": [["M"]], - "Aura's": null, - "aura": [["S", "M"]], - "auras": null, - "aura's": null, - "Aurea": [["M"]], - "Aurea's": null, - "Aurelea": [["M"]], - "Aurelea's": null, - "Aurelia": [["M"]], - "Aurelia's": null, - "Aurelie": [["M"]], - "Aurelie's": null, - "Aurelio": [["M"]], - "Aurelio's": null, - "Aurelius": [["M"]], - "Aurelius's": null, - "Aurel": [["M"]], - "Aurel's": null, - "aureole": [["G", "M", "S", "D"]], - "aureoling": null, - "aureole's": null, - "aureoles": null, - "aureoled": null, - "aureomycin": null, - "Aureomycin": [["M"]], - "Aureomycin's": null, - "Auria": [["M"]], - "Auria's": null, - "auric": null, - "auricle": [["S", "M"]], - "auricles": null, - "auricle's": null, - "auricular": null, - "Aurie": [["M"]], - "Aurie's": null, - "Auriga": [["M"]], - "Auriga's": null, - "Aurilia": [["M"]], - "Aurilia's": null, - "Aurlie": [["M"]], - "Aurlie's": null, - "Auroora": [["M"]], - "Auroora's": null, - "auroral": null, - "Aurora": [["M"]], - "Aurora's": null, - "aurora": [["S", "M"]], - "auroras": null, - "aurora's": null, - "Aurore": [["M"]], - "Aurore's": null, - "Aurthur": [["M"]], - "Aurthur's": null, - "Auschwitz": [["M"]], - "Auschwitz's": null, - "auscultate": [["X", "D", "S", "N", "G"]], - "auscultations": null, - "auscultated": null, - "auscultates": null, - "auscultation": [["M"]], - "auscultating": null, - "auscultation's": null, - "auspice": [["S", "M"]], - "auspices": null, - "auspice's": null, - "auspicious": [["I", "P", "Y"]], - "inauspicious": null, - "inauspiciousness": null, - "inauspiciously": null, - "auspiciousness": [["I", "M"]], - "auspiciously": null, - "auspiciousnesses": null, - "inauspiciousness's": null, - "auspiciousness's": null, - "Aussie": [["M", "S"]], - "Aussie's": null, - "Aussies": null, - "Austen": [["M"]], - "Austen's": null, - "austereness": [["M"]], - "austereness's": null, - "austere": [["T", "Y", "R", "P"]], - "austerest": null, - "austerely": null, - "austerer": null, - "austerity": [["S", "M"]], - "austerities": null, - "austerity's": null, - "Austina": [["M"]], - "Austina's": null, - "Austine": [["M"]], - "Austine's": null, - "Austin": [["S", "M"]], - "Austins": null, - "Austin's": null, - "austral": null, - "Australasia": [["M"]], - "Australasia's": null, - "Australasian": [["S"]], - "Australasians": null, - "australes": null, - "Australia": [["M"]], - "Australia's": null, - "Australian": [["M", "S"]], - "Australian's": null, - "Australians": null, - "Australis": [["M"]], - "Australis's": null, - "australites": null, - "Australoid": null, - "Australopithecus": [["M"]], - "Australopithecus's": null, - "Austria": [["M"]], - "Austria's": null, - "Austrian": [["S", "M"]], - "Austrians": null, - "Austrian's": null, - "Austronesian": null, - "authentically": null, - "authenticated": [["U"]], - "unauthenticated": null, - "authenticate": [["G", "N", "D", "S", "X"]], - "authenticating": null, - "authentication": [["M"]], - "authenticates": null, - "authentications": null, - "authentication's": null, - "authenticator": [["M", "S"]], - "authenticator's": null, - "authenticators": null, - "authenticity": [["M", "S"]], - "authenticity's": null, - "authenticities": null, - "authentic": [["U", "I"]], - "unauthentic": null, - "inauthentic": null, - "author": [["D", "M", "G", "S"]], - "authored": null, - "author's": null, - "authoring": null, - "authors": null, - "authoress": [["S"]], - "authoresses": null, - "authorial": null, - "authoritarianism": [["M", "S"]], - "authoritarianism's": null, - "authoritarianisms": null, - "authoritarian": [["S"]], - "authoritarians": null, - "authoritativeness": [["S", "M"]], - "authoritativenesses": null, - "authoritativeness's": null, - "authoritative": [["P", "Y"]], - "authoritatively": null, - "authority": [["S", "M"]], - "authorities": null, - "authority's": null, - "authorization": [["M", "A", "S"]], - "authorization's": null, - "reauthorization's": null, - "reauthorization": null, - "reauthorizations": null, - "authorizations": null, - "authorize": [["A", "G", "D", "S"]], - "reauthorize": null, - "reauthorizing": null, - "reauthorized": null, - "reauthorizes": null, - "authorizing": null, - "authorized": [["U"]], - "authorizes": [["U"]], - "unauthorized": [["P", "Y"]], - "authorizer": [["S", "M"]], - "authorizers": null, - "authorizer's": null, - "unauthorizes": null, - "authorship": [["M", "S"]], - "authorship's": null, - "authorships": null, - "autism": [["M", "S"]], - "autism's": null, - "autisms": null, - "autistic": [["S"]], - "autistics": null, - "autobahn": [["M", "S"]], - "autobahn's": null, - "autobahns": null, - "autobiographer": [["M", "S"]], - "autobiographer's": null, - "autobiographers": null, - "autobiographic": null, - "autobiographical": [["Y"]], - "autobiographically": null, - "autobiography": [["M", "S"]], - "autobiography's": null, - "autobiographies": null, - "autoclave": [["S", "D", "G", "M"]], - "autoclaves": null, - "autoclaved": null, - "autoclaving": null, - "autoclave's": null, - "autocollimator": [["M"]], - "autocollimator's": null, - "autocorrelate": [["G", "N", "S", "D", "X"]], - "autocorrelating": null, - "autocorrelation": [["M"]], - "autocorrelates": null, - "autocorrelated": null, - "autocorrelations": null, - "autocorrelation's": null, - "autocracy": [["S", "M"]], - "autocracies": null, - "autocracy's": null, - "autocratic": null, - "autocratically": null, - "autocrat": [["S", "M"]], - "autocrats": null, - "autocrat's": null, - "autodial": [["R"]], - "autodialer": null, - "autodidact": [["M", "S"]], - "autodidact's": null, - "autodidacts": null, - "autofluorescence": null, - "autograph": [["M", "D", "G"]], - "autograph's": null, - "autographed": null, - "autographing": null, - "autographs": null, - "autoignition": [["M"]], - "autoignition's": null, - "autoimmune": null, - "autoimmunity": [["S"]], - "autoimmunities": null, - "autoloader": null, - "automaker": [["S"]], - "automakers": null, - "automata's": null, - "automate": [["N", "G", "D", "S", "X"]], - "automation": [["M"]], - "automating": null, - "automated": null, - "automates": null, - "automations": null, - "automatically": null, - "automatic": [["S"]], - "automatics": null, - "automation's": null, - "automatism": [["S", "M"]], - "automatisms": null, - "automatism's": null, - "automatize": [["D", "S", "G"]], - "automatized": null, - "automatizes": null, - "automatizing": null, - "automaton": [["S", "M"]], - "automatons": null, - "automaton's": null, - "automobile": [["G", "D", "S", "M"]], - "automobiling": null, - "automobiled": null, - "automobiles": null, - "automobile's": null, - "automorphism": [["S", "M"]], - "automorphisms": null, - "automorphism's": null, - "automotive": null, - "autonavigator": [["S", "M"]], - "autonavigators": null, - "autonavigator's": null, - "autonomic": [["S"]], - "autonomics": null, - "autonomous": [["Y"]], - "autonomously": null, - "autonomy": [["M", "S"]], - "autonomy's": null, - "autonomies": null, - "autopilot": [["S", "M"]], - "autopilots": null, - "autopilot's": null, - "autopsy": [["M", "D", "S", "G"]], - "autopsy's": null, - "autopsied": null, - "autopsies": null, - "autopsying": null, - "autoregressive": null, - "autorepeat": [["G", "S"]], - "autorepeating": null, - "autorepeats": null, - "auto": [["S", "D", "M", "G"]], - "autos": null, - "autoed": null, - "auto's": null, - "autoing": null, - "autostart": null, - "autosuggestibility": [["M"]], - "autosuggestibility's": null, - "autotransformer": [["M"]], - "autotransformer's": null, - "autoworker": [["S"]], - "autoworkers": null, - "autumnal": [["Y"]], - "autumnally": null, - "Autumn": [["M"]], - "Autumn's": null, - "autumn": [["M", "S"]], - "autumn's": null, - "autumns": null, - "aux": null, - "auxiliary": [["S"]], - "auxiliaries": null, - "auxin": [["M", "S"]], - "auxin's": null, - "auxins": null, - "AV": null, - "availability": [["U", "S", "M"]], - "unavailability": null, - "unavailabilities": null, - "unavailability's": null, - "availabilities": null, - "availability's": null, - "availableness": [["M"]], - "availableness's": null, - "available": [["U"]], - "unavailable": null, - "availably": null, - "avail": [["B", "S", "Z", "G", "R", "D"]], - "avails": null, - "availers": null, - "availing": [["U"]], - "availer": null, - "availed": null, - "unavailing": [["P", "Y"]], - "avalanche": [["M", "G", "S", "D"]], - "avalanche's": null, - "avalanching": null, - "avalanches": null, - "avalanched": null, - "Avalon": [["M"]], - "Avalon's": null, - "Ava": [["M"]], - "Ava's": null, - "avant": null, - "avarice": [["S", "M"]], - "avarices": null, - "avarice's": null, - "avariciousness": [["M"]], - "avariciousness's": null, - "avaricious": [["P", "Y"]], - "avariciously": null, - "avast": [["S"]], - "avasts": null, - "avatar": [["M", "S"]], - "avatar's": null, - "avatars": null, - "avaunt": [["S"]], - "avaunts": null, - "avdp": null, - "Aveline": [["M"]], - "Aveline's": null, - "Ave": [["M", "S"]], - "Ave's": null, - "Aves": null, - "avenged": [["U"]], - "unavenged": null, - "avenger": [["M"]], - "avenger's": null, - "avenge": [["Z", "G", "S", "R", "D"]], - "avengers": null, - "avenging": null, - "avenges": null, - "Aventine": [["M"]], - "Aventine's": null, - "Aventino": [["M"]], - "Aventino's": null, - "avenue": [["M", "S"]], - "avenue's": null, - "avenues": null, - "average": [["D", "S", "P", "G", "Y", "M"]], - "averaged": null, - "averages": null, - "averageness": null, - "averaging": null, - "averagely": null, - "average's": null, - "Averell": [["M"]], - "Averell's": null, - "Averill": [["M"]], - "Averill's": null, - "Averil": [["M"]], - "Averil's": null, - "Avernus": [["M"]], - "Avernus's": null, - "averred": null, - "averrer": null, - "averring": null, - "Averroes": [["M"]], - "Averroes's": null, - "averseness": [["M"]], - "averseness's": null, - "averse": [["Y", "N", "X", "P"]], - "aversely": null, - "aversion": [["M"]], - "aversions": null, - "aversion's": null, - "avers": [["V"]], - "aversive": null, - "avert": [["G", "S", "D"]], - "averting": null, - "averts": null, - "averted": null, - "Averyl": [["M"]], - "Averyl's": null, - "Avery": [["M"]], - "Avery's": null, - "ave": [["S"]], - "aves": [["C"]], - "deaves": null, - "Avesta": [["M"]], - "Avesta's": null, - "avg": null, - "avian": [["S"]], - "avians": null, - "aviary": [["S", "M"]], - "aviaries": null, - "aviary's": null, - "aviate": [["N", "X"]], - "aviation": [["M"]], - "aviations": null, - "aviation's": null, - "aviator": [["S", "M"]], - "aviators": null, - "aviator's": null, - "aviatrices": null, - "aviatrix": [["S", "M"]], - "aviatrixes": null, - "aviatrix's": null, - "Avicenna": [["M"]], - "Avicenna's": null, - "Avictor": [["M"]], - "Avictor's": null, - "avidity": [["M", "S"]], - "avidity's": null, - "avidities": null, - "avid": [["T", "P", "Y", "R"]], - "avidest": null, - "avidness": null, - "avidly": null, - "avider": null, - "Avie": [["M"]], - "Avie's": null, - "Avigdor": [["M"]], - "Avigdor's": null, - "Avignon": [["M"]], - "Avignon's": null, - "Avila": [["M"]], - "Avila's": null, - "avionic": [["S"]], - "avionics": [["M"]], - "avionics's": null, - "Avior": [["M"]], - "Avior's": null, - "Avis": null, - "avitaminoses": null, - "avitaminosis": [["M"]], - "avitaminosis's": null, - "Avivah": [["M"]], - "Avivah's": null, - "Aviva": [["M"]], - "Aviva's": null, - "Aviv": [["M"]], - "Aviv's": null, - "avocado": [["M", "S"]], - "avocado's": null, - "avocados": null, - "avocational": null, - "avocation": [["S", "M"]], - "avocations": null, - "avocation's": null, - "Avogadro": [["M"]], - "Avogadro's": null, - "avoidable": [["U"]], - "unavoidable": null, - "avoidably": [["U"]], - "unavoidably": null, - "avoidance": [["S", "M"]], - "avoidances": null, - "avoidance's": null, - "avoider": [["M"]], - "avoider's": null, - "avoid": [["Z", "R", "D", "B", "G", "S"]], - "avoiders": null, - "avoided": null, - "avoiding": null, - "avoids": null, - "avoirdupois": [["M", "S"]], - "avoirdupois's": null, - "avoirdupoises": null, - "Avon": [["M"]], - "Avon's": null, - "avouch": [["G", "D", "S"]], - "avouching": null, - "avouched": null, - "avouches": null, - "avowal": [["E", "M", "S"]], - "disavowal": null, - "disavowal's": null, - "disavowals": null, - "avowal's": null, - "avowals": null, - "avowed": [["Y"]], - "avowedly": null, - "avower": [["M"]], - "avower's": null, - "avow": [["G", "E", "D", "S"]], - "avowing": null, - "disavowing": null, - "disavow": null, - "disavowed": null, - "disavows": null, - "avows": null, - "Avram": [["M"]], - "Avram's": null, - "Avril": [["M"]], - "Avril's": null, - "Avrit": [["M"]], - "Avrit's": null, - "Avrom": [["M"]], - "Avrom's": null, - "avuncular": null, - "av": [["Z", "R"]], - "aver": null, - "AWACS": null, - "await": [["S", "D", "G"]], - "awaits": null, - "awaited": null, - "awaiting": null, - "awake": [["G", "S"]], - "awaking": null, - "awakes": null, - "awakened": [["U"]], - "unawakened": null, - "awakener": [["M"]], - "awakener's": null, - "awakening": [["S"]], - "awakenings": null, - "awaken": [["S", "A", "D", "G"]], - "awakens": null, - "reawakens": null, - "reawaken": null, - "reawakened": null, - "reawakening": [["M"]], - "awarder": [["M"]], - "awarder's": null, - "award": [["R", "D", "S", "Z", "G"]], - "awarded": null, - "awards": null, - "awarders": null, - "awarding": null, - "awareness": [["M", "S", "U"]], - "awareness's": null, - "unawareness's": null, - "awarenesses": null, - "unawarenesses": null, - "unawareness": null, - "aware": [["T", "R", "P"]], - "awarest": null, - "awarer": null, - "awash": null, - "away": [["P", "S"]], - "awayness": null, - "aways": null, - "aweigh": null, - "awe": [["S", "M"]], - "awes": null, - "awe's": null, - "awesomeness": [["S", "M"]], - "awesomenesses": null, - "awesomeness's": null, - "awesome": [["P", "Y"]], - "awesomely": null, - "awestruck": null, - "awfuller": null, - "awfullest": null, - "awfulness": [["S", "M"]], - "awfulnesses": null, - "awfulness's": null, - "awful": [["Y", "P"]], - "awfully": null, - "aw": [["G", "D"]], - "awing": null, - "awed": null, - "awhile": [["S"]], - "awhiles": null, - "awkwardness": [["M", "S"]], - "awkwardness's": null, - "awkwardnesses": null, - "awkward": [["P", "R", "Y", "T"]], - "awkwarder": null, - "awkwardly": null, - "awkwardest": null, - "awl": [["M", "S"]], - "awl's": null, - "awls": null, - "awning": [["D", "M"]], - "awninged": null, - "awning's": null, - "awn": [["M", "D", "J", "G", "S"]], - "awn's": null, - "awned": null, - "awnings": null, - "awns": null, - "awoke": null, - "awoken": null, - "AWOL": null, - "awry": [["R", "T"]], - "awrier": null, - "awriest": null, - "ax": [["D", "R", "S", "Z", "G", "M"]], - "axed": null, - "axer": null, - "axes": null, - "axers": null, - "axing": null, - "ax's": null, - "axehead": [["S"]], - "axeheads": null, - "Axel": [["M"]], - "Axel's": null, - "Axe": [["M"]], - "Axe's": null, - "axeman": null, - "axial": [["Y"]], - "axially": null, - "axillary": null, - "axiological": [["Y"]], - "axiologically": null, - "axiology": [["M"]], - "axiology's": null, - "axiomatically": null, - "axiomatic": [["S"]], - "axiomatics": null, - "axiomatization": [["M", "S"]], - "axiomatization's": null, - "axiomatizations": null, - "axiomatize": [["G", "D", "S"]], - "axiomatizing": null, - "axiomatized": null, - "axiomatizes": null, - "axiom": [["S", "M"]], - "axioms": null, - "axiom's": null, - "axion": [["S", "M"]], - "axions": null, - "axion's": null, - "axis": [["S", "M"]], - "axises": null, - "axis's": null, - "axle": [["M", "S"]], - "axle's": null, - "axles": null, - "axletree": [["M", "S"]], - "axletree's": null, - "axletrees": null, - "Ax": [["M"]], - "Ax's": null, - "axolotl": [["S", "M"]], - "axolotls": null, - "axolotl's": null, - "axon": [["S", "M"]], - "axons": null, - "axon's": null, - "ayah": [["M"]], - "ayah's": null, - "ayahs": null, - "Ayala": [["M"]], - "Ayala's": null, - "ayatollah": null, - "ayatollahs": null, - "aye": [["M", "Z", "R", "S"]], - "aye's": null, - "ayers": null, - "ayer": null, - "ayes": null, - "Ayers": null, - "Aylmar": [["M"]], - "Aylmar's": null, - "Aylmer": [["M"]], - "Aylmer's": null, - "Aymara": [["M"]], - "Aymara's": null, - "Aymer": [["M"]], - "Aymer's": null, - "Ayn": [["M"]], - "Ayn's": null, - "AZ": null, - "azalea": [["S", "M"]], - "azaleas": null, - "azalea's": null, - "Azania": [["M"]], - "Azania's": null, - "Azazel": [["M"]], - "Azazel's": null, - "Azerbaijan": [["M"]], - "Azerbaijan's": null, - "azimuthal": [["Y"]], - "azimuthally": null, - "azimuth": [["M"]], - "azimuth's": null, - "azimuths": null, - "Azores": null, - "Azov": [["M"]], - "Azov's": null, - "AZT": null, - "Aztecan": null, - "Aztec": [["M", "S"]], - "Aztec's": null, - "Aztecs": null, - "azure": [["M", "S"]], - "azure's": null, - "azures": null, - "BA": null, - "Baal": [["S", "M"]], - "Baals": null, - "Baal's": null, - "baa": [["S", "D", "G"]], - "baas": null, - "baaed": null, - "baaing": null, - "Babara": [["M"]], - "Babara's": null, - "Babar's": null, - "Babbage": [["M"]], - "Babbage's": null, - "Babbette": [["M"]], - "Babbette's": null, - "Babbie": [["M"]], - "Babbie's": null, - "babbitt": [["G", "D", "S"]], - "babbitting": null, - "babbitted": null, - "babbitts": null, - "Babbitt": [["M"]], - "Babbitt's": null, - "babbler": [["M"]], - "babbler's": null, - "babble": [["R", "S", "D", "G", "Z"]], - "babbles": null, - "babbled": null, - "babbling": null, - "babblers": null, - "Babb": [["M"]], - "Babb's": null, - "Babcock": [["M"]], - "Babcock's": null, - "Babel": [["M", "S"]], - "Babel's": null, - "Babels": null, - "babel": [["S"]], - "babels": null, - "babe": [["S", "M"]], - "babes": null, - "babe's": null, - "Babette": [["M"]], - "Babette's": null, - "Babita": [["M"]], - "Babita's": null, - "Babka": [["M"]], - "Babka's": null, - "baboon": [["M", "S"]], - "baboon's": null, - "baboons": null, - "Bab": [["S", "M"]], - "Babs": null, - "Bab's": null, - "babushka": [["M", "S"]], - "babushka's": null, - "babushkas": null, - "babyhood": [["M", "S"]], - "babyhood's": null, - "babyhoods": null, - "babyish": null, - "Babylonia": [["M"]], - "Babylonia's": null, - "Babylonian": [["S", "M"]], - "Babylonians": null, - "Babylonian's": null, - "Babylon": [["M", "S"]], - "Babylon's": null, - "Babylons": null, - "babysat": null, - "babysit": [["S"]], - "babysits": null, - "babysitter": [["S"]], - "babysitters": null, - "babysitting": null, - "baby": [["T", "D", "S", "R", "M", "G"]], - "babiest": null, - "babied": null, - "babies": null, - "babier": null, - "baby's": null, - "babying": null, - "Bacall": [["M"]], - "Bacall's": null, - "Bacardi": [["M"]], - "Bacardi's": null, - "baccalaureate": [["M", "S"]], - "baccalaureate's": null, - "baccalaureates": null, - "baccarat": [["S", "M"]], - "baccarats": null, - "baccarat's": null, - "bacchanalia": null, - "Bacchanalia": [["M"]], - "Bacchanalia's": null, - "bacchanalian": [["S"]], - "bacchanalians": null, - "bacchanal": [["S", "M"]], - "bacchanals": null, - "bacchanal's": null, - "Bacchic": null, - "Bacchus": [["M"]], - "Bacchus's": null, - "bachelorhood": [["S", "M"]], - "bachelorhoods": null, - "bachelorhood's": null, - "bachelor": [["S", "M"]], - "bachelors": null, - "bachelor's": null, - "Bach": [["M"]], - "Bach's": null, - "bacillary": null, - "bacilli": null, - "bacillus": [["M", "S"]], - "bacillus's": null, - "bacilluses": null, - "backache": [["S", "M"]], - "backaches": null, - "backache's": null, - "backarrow": null, - "backbencher": [["M"]], - "backbencher's": null, - "backbench": [["Z", "R"]], - "backbenchers": null, - "backbiter": [["M"]], - "backbiter's": null, - "backbite": [["S"]], - "backbites": null, - "backbitten": null, - "backbit": [["Z", "G", "J", "R"]], - "backbiters": null, - "backbiting": null, - "backbitings": null, - "backboard": [["S", "M"]], - "backboards": null, - "backboard's": null, - "backbone": [["S", "M"]], - "backbones": null, - "backbone's": null, - "backbreaking": null, - "backchaining": null, - "backcloth": [["M"]], - "backcloth's": null, - "backdate": [["G", "D", "S"]], - "backdating": null, - "backdated": null, - "backdates": null, - "backdrop": [["M", "S"]], - "backdrop's": null, - "backdrops": null, - "backdropped": null, - "backdropping": null, - "backed": [["U"]], - "unbacked": null, - "backer": [["M"]], - "backer's": null, - "backfield": [["S", "M"]], - "backfields": null, - "backfield's": null, - "backfill": [["S", "D", "G"]], - "backfills": null, - "backfilled": null, - "backfilling": null, - "backfire": [["G", "D", "S"]], - "backfiring": null, - "backfired": null, - "backfires": null, - "backgammon": [["M", "S"]], - "backgammon's": null, - "backgammons": null, - "background": [["S", "D", "R", "M", "Z", "G"]], - "backgrounds": null, - "backgrounded": null, - "backgrounder": null, - "background's": null, - "backgrounders": null, - "backgrounding": null, - "back": [["G", "Z", "D", "R", "M", "S", "J"]], - "backing": [["M"]], - "backers": null, - "back's": null, - "backs": null, - "backings": null, - "backhanded": [["Y"]], - "backhandedly": null, - "backhander": [["M"]], - "backhander's": null, - "backhand": [["R", "D", "M", "S", "Z", "G"]], - "backhand's": null, - "backhands": null, - "backhanders": null, - "backhanding": null, - "backhoe": [["S"]], - "backhoes": null, - "backing's": null, - "backlash": [["G", "R", "S", "D", "M"]], - "backlashing": null, - "backlasher": null, - "backlashes": null, - "backlashed": null, - "backlash's": null, - "backless": null, - "backlogged": null, - "backlogging": null, - "backlog": [["M", "S"]], - "backlog's": null, - "backlogs": null, - "backorder": null, - "backpacker": [["M"]], - "backpacker's": null, - "backpack": [["Z", "G", "S", "M", "R", "D"]], - "backpackers": null, - "backpacking": null, - "backpacks": null, - "backpack's": null, - "backpacked": null, - "backpedal": [["D", "G", "S"]], - "backpedaled": null, - "backpedaling": null, - "backpedals": null, - "backplane": [["M", "S"]], - "backplane's": null, - "backplanes": null, - "backplate": [["S", "M"]], - "backplates": null, - "backplate's": null, - "backrest": [["M", "S"]], - "backrest's": null, - "backrests": null, - "backscatter": [["S", "M", "D", "G"]], - "backscatters": null, - "backscatter's": null, - "backscattered": null, - "backscattering": null, - "backseat": [["S"]], - "backseats": null, - "backside": [["S", "M"]], - "backsides": null, - "backside's": null, - "backslapper": [["M", "S"]], - "backslapper's": null, - "backslappers": null, - "backslapping": [["M"]], - "backslapping's": null, - "backslash": [["D", "S", "G"]], - "backslashed": null, - "backslashes": null, - "backslashing": null, - "backslider": [["M"]], - "backslider's": null, - "backslide": [["S"]], - "backslides": null, - "backslid": [["R", "Z", "G"]], - "backsliders": null, - "backsliding": null, - "backspace": [["G", "S", "D"]], - "backspacing": null, - "backspaces": null, - "backspaced": null, - "backspin": [["S", "M"]], - "backspins": null, - "backspin's": null, - "backstabber": [["M"]], - "backstabber's": null, - "backstabbing": null, - "backstage": null, - "backstair": [["S"]], - "backstairs": null, - "backstitch": [["G", "D", "S", "M"]], - "backstitching": null, - "backstitched": null, - "backstitches": null, - "backstitch's": null, - "backstop": [["M", "S"]], - "backstop's": null, - "backstops": null, - "backstopped": null, - "backstopping": null, - "backstreet": [["M"]], - "backstreet's": null, - "backstretch": [["S", "M"]], - "backstretches": null, - "backstretch's": null, - "backstroke": [["G", "M", "D", "S"]], - "backstroking": null, - "backstroke's": null, - "backstroked": null, - "backstrokes": null, - "backtalk": [["S"]], - "backtalks": null, - "backtrack": [["S", "D", "R", "G", "Z"]], - "backtracks": null, - "backtracked": null, - "backtracker": null, - "backtracking": null, - "backtrackers": null, - "backup": [["S", "M"]], - "backups": null, - "backup's": null, - "Backus": [["M"]], - "Backus's": null, - "backwardness": [["M", "S"]], - "backwardness's": null, - "backwardnesses": null, - "backward": [["Y", "S", "P"]], - "backwardly": null, - "backwards": null, - "backwash": [["S", "D", "M", "G"]], - "backwashes": null, - "backwashed": null, - "backwash's": null, - "backwashing": null, - "backwater": [["S", "M"]], - "backwaters": null, - "backwater's": null, - "backwood": [["S"]], - "backwoods": null, - "backwoodsman": [["M"]], - "backwoodsman's": null, - "backwoodsmen": null, - "backyard": [["M", "S"]], - "backyard's": null, - "backyards": null, - "baconer": [["M"]], - "baconer's": null, - "Bacon": [["M"]], - "Bacon's": null, - "bacon": [["S", "R", "M"]], - "bacons": null, - "bacon's": null, - "bacterial": [["Y"]], - "bacterially": null, - "bacteria": [["M", "S"]], - "bacteria's": null, - "bacterias": null, - "bactericidal": null, - "bactericide": [["S", "M"]], - "bactericides": null, - "bactericide's": null, - "bacteriologic": null, - "bacteriological": null, - "bacteriologist": [["M", "S"]], - "bacteriologist's": null, - "bacteriologists": null, - "bacteriology": [["S", "M"]], - "bacteriologies": null, - "bacteriology's": null, - "bacterium": [["M"]], - "bacterium's": null, - "Bactria": [["M"]], - "Bactria's": null, - "badder": null, - "baddest": null, - "baddie": [["M", "S"]], - "baddie's": null, - "baddies": null, - "bade": null, - "Baden": [["M"]], - "Baden's": null, - "badge": [["D", "S", "R", "G", "M", "Z"]], - "badged": null, - "badges": null, - "badger": [["D", "M", "G"]], - "badging": null, - "badge's": null, - "badgers": null, - "badgered": null, - "badger's": null, - "badgering": null, - "badinage": [["D", "S", "M", "G"]], - "badinaged": null, - "badinages": null, - "badinage's": null, - "badinaging": null, - "badland": [["S"]], - "badlands": null, - "Badlands": [["M"]], - "Badlands's": null, - "badman": [["M"]], - "badman's": null, - "badmen": null, - "badminton": [["M", "S"]], - "badminton's": null, - "badmintons": null, - "badmouth": [["D", "G"]], - "badmouthed": null, - "badmouthing": null, - "badmouths": null, - "badness": [["S", "M"]], - "badnesses": null, - "badness's": null, - "bad": [["P", "S", "N", "Y"]], - "bads": null, - "baden": null, - "badly": null, - "Baedeker": [["S", "M"]], - "Baedekers": null, - "Baedeker's": null, - "Baez": [["M"]], - "Baez's": null, - "Baffin": [["M"]], - "Baffin's": null, - "bafflement": [["M", "S"]], - "bafflement's": null, - "bafflements": null, - "baffler": [["M"]], - "baffler's": null, - "baffle": [["R", "S", "D", "G", "Z", "L"]], - "baffles": null, - "baffled": null, - "baffling": [["Y"]], - "bafflers": null, - "bafflingly": null, - "bagatelle": [["M", "S"]], - "bagatelle's": null, - "bagatelles": null, - "bagel": [["S", "M"]], - "bagels": null, - "bagel's": null, - "bagful": [["M", "S"]], - "bagful's": null, - "bagfuls": null, - "baggageman": null, - "baggagemen": null, - "baggage": [["S", "M"]], - "baggages": null, - "baggage's": null, - "bagged": [["M"]], - "bagged's": null, - "bagger": [["S", "M"]], - "baggers": null, - "bagger's": null, - "baggily": null, - "bagginess": [["M", "S"]], - "bagginess's": null, - "bagginesses": null, - "bagging": [["M"]], - "bagging's": null, - "baggy": [["P", "R", "S", "T"]], - "baggier": null, - "baggies": null, - "baggiest": null, - "Baghdad": [["M"]], - "Baghdad's": null, - "bagpiper": [["M"]], - "bagpiper's": null, - "bagpipe": [["R", "S", "M", "Z"]], - "bagpipes": null, - "bagpipe's": null, - "bagpipers": null, - "Bagrodia": [["M", "S"]], - "Bagrodia's": null, - "Bagrodias": null, - "bag": [["S", "M"]], - "bags": null, - "bag's": null, - "baguette": [["S", "M"]], - "baguettes": null, - "baguette's": null, - "Baguio": [["M"]], - "Baguio's": null, - "bah": null, - "Baha'i": null, - "Bahama": [["M", "S"]], - "Bahama's": null, - "Bahamas": null, - "Bahamanian": [["S"]], - "Bahamanians": null, - "Bahamian": [["M", "S"]], - "Bahamian's": null, - "Bahamians": null, - "Baha'ullah": null, - "Bahia": [["M"]], - "Bahia's": null, - "Bahrain": [["M"]], - "Bahrain's": null, - "bahs": null, - "Baikal": [["M"]], - "Baikal's": null, - "Bailey": [["S", "M"]], - "Baileys": null, - "Bailey's": null, - "bail": [["G", "S", "M", "Y", "D", "R", "B"]], - "bailing": null, - "bails": null, - "bail's": null, - "bailly": null, - "bailed": null, - "bailer": null, - "bailable": null, - "Bailie": [["M"]], - "Bailie's": null, - "bailiff": [["S", "M"]], - "bailiffs": null, - "bailiff's": null, - "bailiwick": [["M", "S"]], - "bailiwick's": null, - "bailiwicks": null, - "Baillie": [["M"]], - "Baillie's": null, - "Bail": [["M"]], - "Bail's": null, - "bailout": [["M", "S"]], - "bailout's": null, - "bailouts": null, - "bailsman": [["M"]], - "bailsman's": null, - "bailsmen": null, - "Baily": [["M"]], - "Baily's": null, - "Baird": [["M"]], - "Baird's": null, - "bairn": [["S", "M"]], - "bairns": null, - "bairn's": null, - "baiter": [["M"]], - "baiter's": null, - "bait": [["G", "S", "M", "D", "R"]], - "baiting": null, - "baits": null, - "bait's": null, - "baited": null, - "baize": [["G", "M", "D", "S"]], - "baizing": null, - "baize's": null, - "baized": null, - "baizes": null, - "Baja": [["M"]], - "Baja's": null, - "baked": [["U"]], - "unbaked": null, - "bakehouse": [["M"]], - "bakehouse's": null, - "Bakelite": [["M"]], - "Bakelite's": null, - "baker": [["M"]], - "baker's": null, - "Baker": [["M"]], - "Baker's": null, - "Bakersfield": [["M"]], - "Bakersfield's": null, - "bakery": [["S", "M"]], - "bakeries": null, - "bakery's": null, - "bakeshop": [["S"]], - "bakeshops": null, - "bake": [["Z", "G", "J", "D", "R", "S"]], - "bakers": null, - "baking": [["M"]], - "bakings": null, - "bakes": null, - "baking's": null, - "baklava": [["M"]], - "baklava's": null, - "baksheesh": [["S", "M"]], - "baksheeshes": null, - "baksheesh's": null, - "Baku": [["M"]], - "Baku's": null, - "Bakunin": [["M"]], - "Bakunin's": null, - "balaclava": [["M", "S"]], - "balaclava's": null, - "balaclavas": null, - "balalaika": [["M", "S"]], - "balalaika's": null, - "balalaikas": null, - "balanced": [["A"]], - "rebalanced": null, - "balancedness": null, - "balancer": [["M", "S"]], - "balancer's": null, - "balancers": null, - "balance's": null, - "balance": [["U", "S", "D", "G"]], - "unbalance": null, - "unbalances": null, - "unbalanced": [["P"]], - "unbalancing": null, - "balances": null, - "balancing": null, - "Balanchine": [["M"]], - "Balanchine's": null, - "Balboa": [["M"]], - "Balboa's": null, - "balboa": [["S", "M"]], - "balboas": null, - "balboa's": null, - "balcony": [["M", "S", "D"]], - "balcony's": null, - "balconies": null, - "balconied": null, - "balderdash": [["M", "S"]], - "balderdash's": null, - "balderdashes": null, - "Balder": [["M"]], - "Balder's": null, - "baldfaced": null, - "Bald": [["M", "R"]], - "Bald's": null, - "baldness": [["M", "S"]], - "baldness's": null, - "baldnesses": null, - "bald": [["P", "Y", "D", "R", "G", "S", "T"]], - "baldly": null, - "balded": null, - "balder": null, - "balding": null, - "balds": null, - "baldest": null, - "baldric": [["S", "M"]], - "baldrics": null, - "baldric's": null, - "Balduin": [["M"]], - "Balduin's": null, - "Baldwin": [["M"]], - "Baldwin's": null, - "baldy": null, - "Balearic": [["M"]], - "Balearic's": null, - "baleen": [["M", "S"]], - "baleen's": null, - "baleens": null, - "balefuller": null, - "balefullest": null, - "balefulness": [["M", "S"]], - "balefulness's": null, - "balefulnesses": null, - "baleful": [["Y", "P"]], - "balefully": null, - "Bale": [["M"]], - "Bale's": null, - "bale": [["M", "Z", "G", "D", "R", "S"]], - "bale's": null, - "balers": null, - "baling": null, - "baled": null, - "baler": [["M"]], - "bales": null, - "baler's": null, - "Balfour": [["M"]], - "Balfour's": null, - "Bali": [["M"]], - "Bali's": null, - "Balinese": null, - "balkanization": null, - "balkanize": [["D", "G"]], - "balkanized": null, - "balkanizing": null, - "Balkan": [["S", "M"]], - "Balkans": null, - "Balkan's": null, - "balker": [["M"]], - "balker's": null, - "balk": [["G", "D", "R", "S"]], - "balking": null, - "balked": null, - "balks": null, - "Balkhash": [["M"]], - "Balkhash's": null, - "balkiness": [["M"]], - "balkiness's": null, - "balky": [["P", "R", "T"]], - "balkier": null, - "balkiest": null, - "balladeer": [["M", "S"]], - "balladeer's": null, - "balladeers": null, - "ballade": [["M", "S"]], - "ballade's": null, - "ballades": null, - "balladry": [["M", "S"]], - "balladry's": null, - "balladries": null, - "ballad": [["S", "M"]], - "ballads": null, - "ballad's": null, - "Ballard": [["S", "M"]], - "Ballards": null, - "Ballard's": null, - "ballast": [["S", "G", "M", "D"]], - "ballasts": null, - "ballasting": null, - "ballast's": null, - "ballasted": null, - "ballcock": [["S"]], - "ballcocks": null, - "ballerina": [["M", "S"]], - "ballerina's": null, - "ballerinas": null, - "baller": [["M"]], - "baller's": null, - "balletic": null, - "ballet": [["M", "S"]], - "ballet's": null, - "ballets": null, - "ballfields": null, - "ballgame": [["S"]], - "ballgames": null, - "ball": [["G", "Z", "M", "S", "D", "R"]], - "balling": null, - "ballers": null, - "ball's": null, - "balls": null, - "balled": null, - "ballistic": [["S"]], - "ballistics": [["M"]], - "ballistics's": null, - "Ball": [["M"]], - "Ball's": null, - "balloonist": [["S"]], - "balloonists": null, - "balloon": [["R", "D", "M", "Z", "G", "S"]], - "ballooner": null, - "ballooned": null, - "balloon's": null, - "ballooners": null, - "ballooning": null, - "balloons": null, - "balloter": [["M"]], - "balloter's": null, - "ballot": [["M", "R", "D", "G", "S"]], - "ballot's": null, - "balloted": null, - "balloting": null, - "ballots": null, - "ballpark": [["S", "M"]], - "ballparks": null, - "ballpark's": null, - "ballplayer": [["S", "M"]], - "ballplayers": null, - "ballplayer's": null, - "ballpoint": [["S", "M"]], - "ballpoints": null, - "ballpoint's": null, - "ballroom": [["S", "M"]], - "ballrooms": null, - "ballroom's": null, - "ballsy": [["T", "R"]], - "ballsiest": null, - "ballsier": null, - "ballyhoo": [["S", "G", "M", "D"]], - "ballyhoos": null, - "ballyhooing": null, - "ballyhoo's": null, - "ballyhooed": null, - "balminess": [["S", "M"]], - "balminesses": null, - "balminess's": null, - "balm": [["M", "S"]], - "balm's": null, - "balms": null, - "balmy": [["P", "R", "T"]], - "balmier": null, - "balmiest": null, - "baloney": [["S", "M"]], - "baloneys": null, - "baloney's": null, - "balsam": [["G", "M", "D", "S"]], - "balsaming": null, - "balsam's": null, - "balsamed": null, - "balsams": null, - "balsamic": null, - "balsa": [["M", "S"]], - "balsa's": null, - "balsas": null, - "Balthazar": [["M"]], - "Balthazar's": null, - "Baltic": [["M"]], - "Baltic's": null, - "Baltimore": [["M"]], - "Baltimore's": null, - "Baluchistan": [["M"]], - "Baluchistan's": null, - "baluster": [["M", "S"]], - "baluster's": null, - "balusters": null, - "balustrade": [["S", "M"]], - "balustrades": null, - "balustrade's": null, - "Balzac": [["M"]], - "Balzac's": null, - "Ba": [["M"]], - "Ba's": null, - "Bamako": [["M"]], - "Bamako's": null, - "Bamberger": [["M"]], - "Bamberger's": null, - "Bambie": [["M"]], - "Bambie's": null, - "Bambi": [["M"]], - "Bambi's": null, - "bamboo": [["S", "M"]], - "bamboos": null, - "bamboo's": null, - "bamboozle": [["G", "S", "D"]], - "bamboozling": null, - "bamboozles": null, - "bamboozled": null, - "Bamby": [["M"]], - "Bamby's": null, - "Banach": [["M"]], - "Banach's": null, - "banality": [["M", "S"]], - "banality's": null, - "banalities": null, - "banal": [["T", "Y", "R"]], - "banalest": null, - "banally": null, - "banaler": null, - "banana": [["S", "M"]], - "bananas": null, - "banana's": null, - "Bancroft": [["M"]], - "Bancroft's": null, - "bandager": [["M"]], - "bandager's": null, - "bandage": [["R", "S", "D", "M", "G"]], - "bandages": null, - "bandaged": null, - "bandage's": null, - "bandaging": null, - "bandanna": [["S", "M"]], - "bandannas": null, - "bandanna's": null, - "bandbox": [["M", "S"]], - "bandbox's": null, - "bandboxes": null, - "bandeau": [["M"]], - "bandeau's": null, - "bandeaux": null, - "band": [["E", "D", "G", "S"]], - "disband": [["L"]], - "disbanded": null, - "disbanding": null, - "disbands": null, - "banded": null, - "banding": [["M"]], - "bands": null, - "bander": [["M"]], - "bander's": null, - "banding's": null, - "bandit": [["M", "S"]], - "bandit's": null, - "bandits": null, - "banditry": [["M", "S"]], - "banditry's": null, - "banditries": null, - "bandmaster": [["M", "S"]], - "bandmaster's": null, - "bandmasters": null, - "bandoleer": [["S", "M"]], - "bandoleers": null, - "bandoleer's": null, - "bandpass": null, - "band's": null, - "bandsman": [["M"]], - "bandsman's": null, - "bandsmen": null, - "bandstand": [["S", "M"]], - "bandstands": null, - "bandstand's": null, - "bandstop": null, - "Bandung": [["M"]], - "Bandung's": null, - "bandwagon": [["M", "S"]], - "bandwagon's": null, - "bandwagons": null, - "bandwidth": [["M"]], - "bandwidth's": null, - "bandwidths": null, - "bandy": [["T", "G", "R", "S", "D"]], - "bandiest": null, - "bandying": null, - "bandier": null, - "bandies": null, - "bandied": null, - "banefuller": null, - "banefullest": null, - "baneful": [["Y"]], - "banefully": null, - "bane": [["M", "S"]], - "bane's": null, - "banes": null, - "Bangalore": [["M"]], - "Bangalore's": null, - "banger": [["M"]], - "banger's": null, - "bang": [["G", "D", "R", "Z", "M", "S"]], - "banging": null, - "banged": null, - "bangers": null, - "bang's": null, - "bangs": null, - "bangkok": null, - "Bangkok": [["M"]], - "Bangkok's": null, - "Bangladeshi": [["S"]], - "Bangladeshis": null, - "Bangladesh": [["M"]], - "Bangladesh's": null, - "bangle": [["M", "S"]], - "bangle's": null, - "bangles": null, - "Bangor": [["M"]], - "Bangor's": null, - "Bangui": [["M"]], - "Bangui's": null, - "bani": null, - "banisher": [["M"]], - "banisher's": null, - "banishment": [["M", "S"]], - "banishment's": null, - "banishments": null, - "banish": [["R", "S", "D", "G", "L"]], - "banishes": null, - "banished": null, - "banishing": null, - "banister": [["M", "S"]], - "banister's": null, - "banisters": null, - "Banjarmasin": [["M"]], - "Banjarmasin's": null, - "banjoist": [["S", "M"]], - "banjoists": null, - "banjoist's": null, - "banjo": [["M", "S"]], - "banjo's": null, - "banjos": null, - "Banjul": [["M"]], - "Banjul's": null, - "bankbook": [["S", "M"]], - "bankbooks": null, - "bankbook's": null, - "bankcard": [["S"]], - "bankcards": null, - "banker": [["M"]], - "banker's": null, - "bank": [["G", "Z", "J", "D", "R", "M", "B", "S"]], - "banking": [["M"]], - "bankers": null, - "bankings": null, - "banked": null, - "bank's": null, - "bankable": null, - "banks": null, - "banking's": null, - "Bank": [["M", "S"]], - "Bank's": null, - "Banks": null, - "banknote": [["S"]], - "banknotes": null, - "bankroll": [["D", "M", "S", "G"]], - "bankrolled": null, - "bankroll's": null, - "bankrolls": null, - "bankrolling": null, - "bankruptcy": [["M", "S"]], - "bankruptcy's": null, - "bankruptcies": null, - "bankrupt": [["D", "M", "G", "S"]], - "bankrupted": null, - "bankrupt's": null, - "bankrupting": null, - "bankrupts": null, - "Banky": [["M"]], - "Banky's": null, - "Ban": [["M"]], - "Ban's": null, - "banned": [["U"]], - "unbanned": null, - "Banneker": [["M"]], - "Banneker's": null, - "banner": [["S", "D", "M", "G"]], - "banners": null, - "bannered": null, - "banner's": null, - "bannering": null, - "banning": [["U"]], - "unbanning": null, - "Bannister": [["M"]], - "Bannister's": null, - "bannister's": null, - "bannock": [["S", "M"]], - "bannocks": null, - "bannock's": null, - "banns": null, - "banqueter": [["M"]], - "banqueter's": null, - "banquet": [["S", "Z", "G", "J", "M", "R", "D"]], - "banquets": null, - "banqueters": null, - "banqueting": null, - "banquetings": null, - "banquet's": null, - "banqueted": null, - "banquette": [["M", "S"]], - "banquette's": null, - "banquettes": null, - "ban": [["S", "G", "M", "D"]], - "bans": [["U"]], - "baning": null, - "ban's": null, - "baned": null, - "banshee": [["M", "S"]], - "banshee's": null, - "banshees": null, - "unbans": null, - "bantam": [["M", "S"]], - "bantam's": null, - "bantams": null, - "bantamweight": [["M", "S"]], - "bantamweight's": null, - "bantamweights": null, - "banterer": [["M"]], - "banterer's": null, - "bantering": [["Y"]], - "banteringly": null, - "banter": [["R", "D", "S", "G"]], - "bantered": null, - "banters": null, - "Banting": [["M"]], - "Banting's": null, - "Bantu": [["S", "M"]], - "Bantus": null, - "Bantu's": null, - "banyan": [["M", "S"]], - "banyan's": null, - "banyans": null, - "banzai": [["S"]], - "banzais": null, - "baobab": [["S", "M"]], - "baobabs": null, - "baobab's": null, - "Baotou": [["M"]], - "Baotou's": null, - "baptismal": [["Y"]], - "baptismally": null, - "baptism": [["S", "M"]], - "baptisms": null, - "baptism's": null, - "Baptiste": [["M"]], - "Baptiste's": null, - "baptistery": [["M", "S"]], - "baptistery's": null, - "baptisteries": null, - "baptist": [["M", "S"]], - "baptist's": null, - "baptists": null, - "Baptist": [["M", "S"]], - "Baptist's": null, - "Baptists": null, - "baptistry's": null, - "baptized": [["U"]], - "unbaptized": null, - "baptizer": [["M"]], - "baptizer's": null, - "baptize": [["S", "R", "D", "Z", "G"]], - "baptizes": [["U"]], - "baptizers": null, - "baptizing": null, - "unbaptizes": null, - "Barabbas": [["M"]], - "Barabbas's": null, - "Barbabas": [["M"]], - "Barbabas's": null, - "Barbabra": [["M"]], - "Barbabra's": null, - "Barbadian": [["S"]], - "Barbadians": null, - "Barbados": [["M"]], - "Barbados's": null, - "Barbaraanne": [["M"]], - "Barbaraanne's": null, - "Barbara": [["M"]], - "Barbara's": null, - "Barbarella": [["M"]], - "Barbarella's": null, - "barbarianism": [["M", "S"]], - "barbarianism's": null, - "barbarianisms": null, - "barbarian": [["M", "S"]], - "barbarian's": null, - "barbarians": null, - "barbaric": null, - "barbarically": null, - "barbarism": [["M", "S"]], - "barbarism's": null, - "barbarisms": null, - "barbarity": [["S", "M"]], - "barbarities": null, - "barbarity's": null, - "barbarize": [["S", "D", "G"]], - "barbarizes": null, - "barbarized": null, - "barbarizing": null, - "Barbarossa": [["M"]], - "Barbarossa's": null, - "barbarousness": [["M"]], - "barbarousness's": null, - "barbarous": [["P", "Y"]], - "barbarously": null, - "Barbary": [["M"]], - "Barbary's": null, - "barb": [["D", "R", "M", "S", "G", "Z"]], - "barbed": [["P"]], - "barber": [["D", "M", "G"]], - "barb's": null, - "barbs": null, - "barbing": null, - "barbers": null, - "barbecue": [["D", "R", "S", "M", "G"]], - "barbecued": null, - "barbecuer": null, - "barbecues": null, - "barbecue's": null, - "barbecuing": null, - "barbedness": null, - "Barbee": [["M"]], - "Barbee's": null, - "barbell": [["S", "M"]], - "barbells": null, - "barbell's": null, - "barbel": [["M", "S"]], - "barbel's": null, - "barbels": null, - "Barbe": [["M"]], - "Barbe's": null, - "barbeque's": null, - "barbered": [["U"]], - "barber's": null, - "barbering": null, - "unbarbered": null, - "Barber": [["M"]], - "Barber's": null, - "barberry": [["M", "S"]], - "barberry's": null, - "barberries": null, - "barbershop": [["M", "S"]], - "barbershop's": null, - "barbershops": null, - "Barbette": [["M"]], - "Barbette's": null, - "Barbey": [["M"]], - "Barbey's": null, - "Barbie": [["M"]], - "Barbie's": null, - "Barbi": [["M"]], - "Barbi's": null, - "barbital": [["M"]], - "barbital's": null, - "barbiturate": [["M", "S"]], - "barbiturate's": null, - "barbiturates": null, - "Barbour": [["M"]], - "Barbour's": null, - "Barbra": [["M"]], - "Barbra's": null, - "Barb": [["R", "M"]], - "Barb's": null, - "Barbuda": [["M"]], - "Barbuda's": null, - "barbwire": [["S", "M"]], - "barbwires": null, - "barbwire's": null, - "Barby": [["M"]], - "Barby's": null, - "barcarole": [["S", "M"]], - "barcaroles": null, - "barcarole's": null, - "Barcelona": [["M"]], - "Barcelona's": null, - "Barclay": [["M"]], - "Barclay's": null, - "Bardeen": [["M"]], - "Bardeen's": null, - "Barde": [["M"]], - "Barde's": null, - "bardic": null, - "Bard": [["M"]], - "Bard's": null, - "bard": [["M", "D", "S", "G"]], - "bard's": null, - "barded": null, - "bards": null, - "barding": null, - "bareback": [["D"]], - "barebacked": null, - "barefacedness": [["M"]], - "barefacedness's": null, - "barefaced": [["Y", "P"]], - "barefacedly": null, - "barefoot": [["D"]], - "barefooted": null, - "barehanded": null, - "bareheaded": null, - "barelegged": null, - "bareness": [["M", "S"]], - "bareness's": null, - "barenesses": null, - "Barents": [["M"]], - "Barents's": null, - "bare": [["Y", "S", "P"]], - "barely": null, - "bares": null, - "barfly": [["S", "M"]], - "barflies": null, - "barfly's": null, - "barf": [["Y", "D", "S", "G"]], - "barfed": null, - "barfs": null, - "barfing": null, - "bargainer": [["M"]], - "bargainer's": null, - "bargain": [["Z", "G", "S", "D", "R", "M"]], - "bargainers": null, - "bargaining": null, - "bargains": null, - "bargained": null, - "bargain's": null, - "barge": [["D", "S", "G", "M"]], - "barged": null, - "barges": null, - "barging": null, - "barge's": null, - "bargeman": [["M"]], - "bargeman's": null, - "bargemen": null, - "bargepole": [["M"]], - "bargepole's": null, - "barhopped": null, - "barhopping": null, - "barhop": [["S"]], - "barhops": null, - "Bari": [["M"]], - "Bari's": null, - "baritone": [["M", "S"]], - "baritone's": null, - "baritones": null, - "barium": [["M", "S"]], - "barium's": null, - "bariums": null, - "barked": [["C"]], - "debarked": null, - "barkeeper": [["M"]], - "barkeeper's": null, - "barkeep": [["S", "R", "Z"]], - "barkeeps": null, - "barkeepers": null, - "barker": [["M"]], - "barker's": null, - "Barker": [["M"]], - "Barker's": null, - "bark": [["G", "Z", "D", "R", "M", "S"]], - "barking": null, - "barkers": null, - "bark's": null, - "barks": [["C"]], - "Barkley": [["M"]], - "Barkley's": null, - "debarks": null, - "barleycorn": [["M", "S"]], - "barleycorn's": null, - "barleycorns": null, - "barley": [["M", "S"]], - "barley's": null, - "barleys": null, - "Barlow": [["M"]], - "Barlow's": null, - "barmaid": [["S", "M"]], - "barmaids": null, - "barmaid's": null, - "barman": [["M"]], - "barman's": null, - "barmen": null, - "Bar": [["M", "H"]], - "Bar's": null, - "Barth": [["M"]], - "Barnabas": null, - "Barnabe": [["M"]], - "Barnabe's": null, - "Barnaby": [["M"]], - "Barnaby's": null, - "barnacle": [["M", "D", "S"]], - "barnacle's": null, - "barnacled": null, - "barnacles": null, - "Barnard": [["M"]], - "Barnard's": null, - "Barnaul": [["M"]], - "Barnaul's": null, - "Barnebas": [["M"]], - "Barnebas's": null, - "Barnes": null, - "Barnett": [["M"]], - "Barnett's": null, - "Barney": [["M"]], - "Barney's": null, - "barnful": null, - "barn": [["G", "D", "S", "M"]], - "barning": null, - "barned": null, - "barns": null, - "barn's": null, - "Barnhard": [["M"]], - "Barnhard's": null, - "Barnie": [["M"]], - "Barnie's": null, - "Barn": [["M"]], - "Barn's": null, - "barnsful": null, - "barnstorm": [["D", "R", "G", "Z", "S"]], - "barnstormed": null, - "barnstormer": [["M"]], - "barnstorming": null, - "barnstormers": null, - "barnstorms": null, - "barnstormer's": null, - "Barnum": [["M"]], - "Barnum's": null, - "barnyard": [["M", "S"]], - "barnyard's": null, - "barnyards": null, - "Barny": [["M"]], - "Barny's": null, - "Baroda": [["M"]], - "Baroda's": null, - "barometer": [["M", "S"]], - "barometer's": null, - "barometers": null, - "barometric": null, - "barometrically": null, - "baronage": [["M", "S"]], - "baronage's": null, - "baronages": null, - "baroness": [["M", "S"]], - "baroness's": null, - "baronesses": null, - "baronetcy": [["S", "M"]], - "baronetcies": null, - "baronetcy's": null, - "baronet": [["M", "S"]], - "baronet's": null, - "baronets": null, - "baronial": null, - "Baron": [["M"]], - "Baron's": null, - "baron": [["S", "M"]], - "barons": null, - "baron's": null, - "barony": [["S", "M"]], - "baronies": null, - "barony's": null, - "baroque": [["S", "P", "M", "Y"]], - "baroques": null, - "baroqueness": null, - "baroque's": null, - "baroquely": null, - "barque's": null, - "Barquisimeto": [["M"]], - "Barquisimeto's": null, - "barracker": [["M"]], - "barracker's": null, - "barrack": [["S", "D", "R", "G"]], - "barracks": null, - "barracked": null, - "barracking": null, - "barracuda": [["M", "S"]], - "barracuda's": null, - "barracudas": null, - "barrage": [["M", "G", "S", "D"]], - "barrage's": null, - "barraging": null, - "barrages": null, - "barraged": null, - "Barranquilla": [["M"]], - "Barranquilla's": null, - "barred": [["E", "C", "U"]], - "disbarred": null, - "debarred": null, - "unbarred": null, - "barre": [["G", "M", "D", "S", "J"]], - "barring": [["R"]], - "barre's": null, - "barres": null, - "barrings": null, - "barrel": [["S", "G", "M", "D"]], - "barrels": null, - "barreling": null, - "barrel's": null, - "barreled": null, - "barrenness": [["S", "M"]], - "barrennesses": null, - "barrenness's": null, - "barren": [["S", "P", "R", "T"]], - "barrens": null, - "barrener": null, - "barrenest": null, - "Barrera": [["M"]], - "Barrera's": null, - "Barret": [["M"]], - "Barret's": null, - "barrette": [["S", "M"]], - "barrettes": null, - "barrette's": null, - "Barrett": [["M"]], - "Barrett's": null, - "barricade": [["S", "D", "M", "G"]], - "barricades": null, - "barricaded": null, - "barricade's": null, - "barricading": null, - "Barrie": [["M"]], - "Barrie's": null, - "barrier": [["M", "S"]], - "barrier's": null, - "barriers": null, - "barringer": null, - "barrio": [["S", "M"]], - "barrios": null, - "barrio's": null, - "Barri": [["S", "M"]], - "Barris": null, - "Barri's": null, - "barrister": [["M", "S"]], - "barrister's": null, - "barristers": null, - "Barr": [["M"]], - "Barr's": null, - "Barron": [["M"]], - "Barron's": null, - "barroom": [["S", "M"]], - "barrooms": null, - "barroom's": null, - "barrow": [["M", "S"]], - "barrow's": null, - "barrows": null, - "Barry": [["M"]], - "Barry's": null, - "Barrymore": [["M", "S"]], - "Barrymore's": null, - "Barrymores": null, - "bars": [["E", "C", "U"]], - "disbars": null, - "debars": null, - "unbars": null, - "barstool": [["S", "M"]], - "barstools": null, - "barstool's": null, - "Barstow": [["M"]], - "Barstow's": null, - "Bartel": [["M"]], - "Bartel's": null, - "bartender": [["M"]], - "bartender's": null, - "bartend": [["Z", "R"]], - "bartenders": null, - "barterer": [["M"]], - "barterer's": null, - "barter": [["S", "R", "D", "Z", "G"]], - "barters": null, - "bartered": null, - "barterers": null, - "bartering": null, - "bar": [["T", "G", "M", "D", "R", "S"]], - "barest": null, - "baring": null, - "bar's": null, - "bared": null, - "barer": null, - "Barthel": [["M"]], - "Barthel's": null, - "Barth's": null, - "Bartholdi": [["M"]], - "Bartholdi's": null, - "Bartholemy": [["M"]], - "Bartholemy's": null, - "Bartholomeo": [["M"]], - "Bartholomeo's": null, - "Bartholomeus": [["M"]], - "Bartholomeus's": null, - "Bartholomew": [["M"]], - "Bartholomew's": null, - "Bartie": [["M"]], - "Bartie's": null, - "Bartlet": [["M"]], - "Bartlet's": null, - "Bartlett": [["M"]], - "Bartlett's": null, - "Bart": [["M"]], - "Bart's": null, - "Bart�k": [["M"]], - "Bart�k's": null, - "Bartolemo": [["M"]], - "Bartolemo's": null, - "Bartolomeo": [["M"]], - "Bartolomeo's": null, - "Barton": [["M"]], - "Barton's": null, - "Bartram": [["M"]], - "Bartram's": null, - "Barty": [["M"]], - "Barty's": null, - "barycenter": null, - "barycentre's": null, - "barycentric": null, - "Bary": [["M"]], - "Bary's": null, - "baryon": [["S", "M"]], - "baryons": null, - "baryon's": null, - "Baryram": [["M"]], - "Baryram's": null, - "Baryshnikov": [["M"]], - "Baryshnikov's": null, - "basaltic": null, - "basalt": [["S", "M"]], - "basalts": null, - "basalt's": null, - "basal": [["Y"]], - "basally": null, - "Bascom": [["M"]], - "Bascom's": null, - "bas": [["D", "R", "S", "T", "G"]], - "based": null, - "baser": null, - "bases": null, - "basest": null, - "basing": null, - "baseball": [["M", "S"]], - "baseball's": null, - "baseballs": null, - "baseband": null, - "baseboard": [["M", "S"]], - "baseboard's": null, - "baseboards": null, - "base": [["C", "G", "R", "S", "D", "L"]], - "debase": null, - "debasing": null, - "debaser": [["M"]], - "debases": null, - "debased": null, - "debasement": null, - "basement": [["C", "S", "M"]], - "baseless": null, - "baseline": [["S", "M"]], - "baselines": null, - "baseline's": null, - "Basel": [["M"]], - "Basel's": null, - "basely": null, - "Base": [["M"]], - "Base's": null, - "baseman": [["M"]], - "baseman's": null, - "basemen": null, - "debasements": null, - "debasement's": null, - "basements": null, - "basement's": null, - "baseness": [["M", "S"]], - "baseness's": null, - "basenesses": null, - "baseplate": [["M"]], - "baseplate's": null, - "base's": null, - "basetting": null, - "bashfulness": [["M", "S"]], - "bashfulness's": null, - "bashfulnesses": null, - "bashful": [["P", "Y"]], - "bashfully": null, - "bash": [["J", "G", "D", "S", "R"]], - "bashings": null, - "bashing": null, - "bashed": null, - "bashes": null, - "basher": null, - "Basho": [["M"]], - "Basho's": null, - "Basia": [["M"]], - "Basia's": null, - "BASIC": null, - "basically": null, - "basic": [["S"]], - "basics": null, - "Basie": [["M"]], - "Basie's": null, - "basilar": null, - "Basile": [["M"]], - "Basile's": null, - "basilica": [["S", "M"]], - "basilicas": null, - "basilica's": null, - "Basilio": [["M"]], - "Basilio's": null, - "basilisk": [["S", "M"]], - "basilisks": null, - "basilisk's": null, - "Basilius": [["M"]], - "Basilius's": null, - "Basil": [["M"]], - "Basil's": null, - "basil": [["M", "S"]], - "basil's": null, - "basils": null, - "basin": [["D", "M", "S"]], - "basined": null, - "basin's": null, - "basins": null, - "basinful": [["S"]], - "basinfuls": null, - "basis": [["M"]], - "basis's": null, - "basketball": [["M", "S"]], - "basketball's": null, - "basketballs": null, - "basketry": [["M", "S"]], - "basketry's": null, - "basketries": null, - "basket": [["S", "M"]], - "baskets": null, - "basket's": null, - "basketwork": [["S", "M"]], - "basketworks": null, - "basketwork's": null, - "bask": [["G", "S", "D"]], - "basking": null, - "basks": null, - "basked": null, - "basophilic": null, - "Basque": [["S", "M"]], - "Basques": null, - "Basque's": null, - "Basra": [["M"]], - "Basra's": null, - "Basseterre": [["M"]], - "Basseterre's": null, - "basset": [["G", "M", "D", "S"]], - "basseting": null, - "basset's": null, - "basseted": null, - "bassets": null, - "Bassett": [["M"]], - "Bassett's": null, - "bassinet": [["S", "M"]], - "bassinets": null, - "bassinet's": null, - "bassist": [["M", "S"]], - "bassist's": null, - "bassists": null, - "Bass": [["M"]], - "Bass's": null, - "basso": [["M", "S"]], - "basso's": null, - "bassos": null, - "bassoonist": [["M", "S"]], - "bassoonist's": null, - "bassoonists": null, - "bassoon": [["M", "S"]], - "bassoon's": null, - "bassoons": null, - "bass": [["S", "M"]], - "basses": null, - "bass's": null, - "basswood": [["S", "M"]], - "basswoods": null, - "basswood's": null, - "bastardization": [["M", "S"]], - "bastardization's": null, - "bastardizations": null, - "bastardized": [["U"]], - "unbastardized": null, - "bastardize": [["S", "D", "G"]], - "bastardizes": null, - "bastardizing": null, - "bastard": [["M", "Y", "S"]], - "bastard's": null, - "bastardly": null, - "bastards": null, - "bastardy": [["M", "S"]], - "bastardy's": null, - "bastardies": null, - "baste": [["N", "X", "S"]], - "bastion": [["D", "M"]], - "bastions": null, - "bastes": null, - "baster": [["M"]], - "baster's": null, - "Bastian": [["M"]], - "Bastian's": null, - "Bastien": [["M"]], - "Bastien's": null, - "Bastille": [["M"]], - "Bastille's": null, - "basting": [["M"]], - "basting's": null, - "bastioned": null, - "bastion's": null, - "bast": [["S", "G", "Z", "M", "D", "R"]], - "basts": null, - "basters": null, - "bast's": null, - "basted": null, - "Basutoland": [["M"]], - "Basutoland's": null, - "Bataan": [["M"]], - "Bataan's": null, - "Batavia": [["M"]], - "Batavia's": null, - "batch": [["M", "R", "S", "D", "G"]], - "batch's": null, - "batcher": null, - "batches": null, - "batched": null, - "batching": null, - "bated": [["U"]], - "unbated": null, - "bate": [["K", "G", "S", "A", "D", "C"]], - "probate": [["N", "V", "M", "X"]], - "probating": [["A"]], - "probates": [["A"]], - "probated": [["A"]], - "bating": null, - "rebating": null, - "debating": null, - "bates": null, - "rebates": null, - "debates": null, - "rebate": [["M"]], - "rebated": null, - "debated": null, - "debate": [["B", "M", "Z"]], - "bater": [["A", "C"]], - "rebater": null, - "debater": [["M"]], - "Bates": null, - "bathe": null, - "bather": [["M"]], - "bather's": null, - "bathetic": null, - "bathhouse": [["S", "M"]], - "bathhouses": null, - "bathhouse's": null, - "bath": [["J", "M", "D", "S", "R", "G", "Z"]], - "bathings": null, - "bath's": null, - "bathed": null, - "bathes": null, - "bathing": null, - "bathers": null, - "bathmat": [["S"]], - "bathmats": null, - "Batholomew": [["M"]], - "Batholomew's": null, - "bathos": [["S", "M"]], - "bathoses": null, - "bathos's": null, - "bathrobe": [["M", "S"]], - "bathrobe's": null, - "bathrobes": null, - "bathroom": [["S", "D", "M"]], - "bathrooms": null, - "bathroomed": null, - "bathroom's": null, - "baths": null, - "Bathsheba": [["M"]], - "Bathsheba's": null, - "bathtub": [["M", "S"]], - "bathtub's": null, - "bathtubs": null, - "bathwater": null, - "bathyscaphe's": null, - "bathysphere": [["M", "S"]], - "bathysphere's": null, - "bathyspheres": null, - "batik": [["D", "M", "S", "G"]], - "batiked": null, - "batik's": null, - "batiks": null, - "batiking": null, - "Batista": [["M"]], - "Batista's": null, - "batiste": [["S", "M"]], - "batistes": null, - "batiste's": null, - "Bat": [["M"]], - "Bat's": null, - "batman": [["M"]], - "batman's": null, - "Batman": [["M"]], - "Batman's": null, - "batmen": null, - "baton": [["S", "M"]], - "batons": null, - "baton's": null, - "Batsheva": [["M"]], - "Batsheva's": null, - "batsman": [["M"]], - "batsman's": null, - "bat": [["S", "M", "D", "R", "G"]], - "bats": null, - "bat's": null, - "batsmen": null, - "battalion": [["M", "S"]], - "battalion's": null, - "battalions": null, - "batted": null, - "batten": [["S", "D", "M", "G"]], - "battens": null, - "battened": null, - "batten's": null, - "battening": null, - "batter": [["S", "R", "D", "Z", "G"]], - "batters": null, - "batterer": null, - "battered": null, - "batterers": null, - "battering": null, - "battery": [["M", "S"]], - "battery's": null, - "batteries": null, - "batting": [["M", "S"]], - "batting's": null, - "battings": null, - "battledore": [["M", "S"]], - "battledore's": null, - "battledores": null, - "battledress": null, - "battlefield": [["S", "M"]], - "battlefields": null, - "battlefield's": null, - "battlefront": [["S", "M"]], - "battlefronts": null, - "battlefront's": null, - "battle": [["G", "M", "Z", "R", "S", "D", "L"]], - "battling": null, - "battle's": null, - "battlers": null, - "battler": [["M"]], - "battles": null, - "battled": null, - "battlement": [["S", "M", "D"]], - "battleground": [["S", "M"]], - "battlegrounds": null, - "battleground's": null, - "Battle": [["M"]], - "Battle's": null, - "battlements": null, - "battlement's": null, - "battlemented": null, - "battler's": null, - "battleship": [["M", "S"]], - "battleship's": null, - "battleships": null, - "batty": [["R", "T"]], - "battier": null, - "battiest": null, - "Batu": [["M"]], - "Batu's": null, - "batwings": null, - "bauble": [["S", "M"]], - "baubles": null, - "bauble's": null, - "Baudelaire": [["M"]], - "Baudelaire's": null, - "baud": [["M"]], - "baud's": null, - "Baudoin": [["M"]], - "Baudoin's": null, - "Baudouin": [["M"]], - "Baudouin's": null, - "Bauer": [["M"]], - "Bauer's": null, - "Bauhaus": [["M"]], - "Bauhaus's": null, - "baulk": [["G", "S", "D", "M"]], - "baulking": null, - "baulks": null, - "baulked": null, - "baulk's": null, - "Bausch": [["M"]], - "Bausch's": null, - "bauxite": [["S", "M"]], - "bauxites": null, - "bauxite's": null, - "Bavaria": [["M"]], - "Bavaria's": null, - "Bavarian": [["S"]], - "Bavarians": null, - "bawdily": null, - "bawdiness": [["M", "S"]], - "bawdiness's": null, - "bawdinesses": null, - "bawd": [["S", "M"]], - "bawds": null, - "bawd's": null, - "bawdy": [["P", "R", "S", "T"]], - "bawdier": null, - "bawdies": null, - "bawdiest": null, - "bawler": [["M"]], - "bawler's": null, - "bawl": [["S", "G", "D", "R"]], - "bawls": null, - "bawling": null, - "bawled": null, - "Baxie": [["M"]], - "Baxie's": null, - "Bax": [["M"]], - "Bax's": null, - "Baxter": [["M"]], - "Baxter's": null, - "Baxy": [["M"]], - "Baxy's": null, - "Bayamon": null, - "Bayard": [["M"]], - "Bayard's": null, - "bayberry": [["M", "S"]], - "bayberry's": null, - "bayberries": null, - "Bayda": [["M"]], - "Bayda's": null, - "Bayer": [["M"]], - "Bayer's": null, - "Bayes": null, - "Bayesian": null, - "bay": [["G", "S", "M", "D", "Y"]], - "baying": null, - "bays": null, - "bay's": null, - "bayed": null, - "bayly": null, - "Baylor": [["M"]], - "Baylor's": null, - "Bay": [["M", "R"]], - "Bay's": null, - "bayonet": [["S", "G", "M", "D"]], - "bayonets": null, - "bayoneting": null, - "bayonet's": null, - "bayoneted": null, - "Bayonne": [["M"]], - "Bayonne's": null, - "bayou": [["M", "S"]], - "bayou's": null, - "bayous": null, - "Bayreuth": [["M"]], - "Bayreuth's": null, - "bazaar": [["M", "S"]], - "bazaar's": null, - "bazaars": null, - "bazillion": [["S"]], - "bazillions": null, - "bazooka": [["M", "S"]], - "bazooka's": null, - "bazookas": null, - "BB": null, - "BBB": null, - "BBC": null, - "bbl": null, - "BBQ": null, - "BBS": null, - "BC": null, - "BCD": null, - "bdrm": null, - "beachcomber": [["S", "M"]], - "beachcombers": null, - "beachcomber's": null, - "beachhead": [["S", "M"]], - "beachheads": null, - "beachhead's": null, - "Beach": [["M"]], - "Beach's": null, - "beach": [["M", "S", "D", "G"]], - "beach's": null, - "beaches": null, - "beached": null, - "beaching": null, - "beachwear": [["M"]], - "beachwear's": null, - "beacon": [["D", "M", "S", "G"]], - "beaconed": null, - "beacon's": null, - "beacons": null, - "beaconing": null, - "beading": [["M"]], - "beading's": null, - "Beadle": [["M"]], - "Beadle's": null, - "beadle": [["S", "M"]], - "beadles": null, - "beadle's": null, - "bead": [["S", "J", "G", "M", "D"]], - "beads": null, - "beadings": null, - "bead's": null, - "beaded": null, - "beadsman": [["M"]], - "beadsman's": null, - "beadworker": null, - "beady": [["T", "R"]], - "beadiest": null, - "beadier": null, - "beagle": [["S", "D", "G", "M"]], - "beagles": null, - "beagled": null, - "beagling": null, - "beagle's": null, - "beaker": [["M"]], - "beaker's": null, - "beak": [["Z", "S", "D", "R", "M"]], - "beakers": null, - "beaks": null, - "beaked": null, - "beak's": null, - "Beale": [["M"]], - "Beale's": null, - "Bealle": [["M"]], - "Bealle's": null, - "Bea": [["M"]], - "Bea's": null, - "beam": [["M", "D", "R", "S", "G", "Z"]], - "beam's": null, - "beamed": null, - "beamer": null, - "beams": null, - "beaming": null, - "beamers": null, - "beanbag": [["S", "M"]], - "beanbags": null, - "beanbag's": null, - "bean": [["D", "R", "M", "G", "Z", "S"]], - "beaned": null, - "beaner": null, - "bean's": null, - "beaning": null, - "beaners": null, - "beans": null, - "beanie": [["S", "M"]], - "beanies": null, - "beanie's": null, - "Bean": [["M"]], - "Bean's": null, - "beanpole": [["M", "S"]], - "beanpole's": null, - "beanpoles": null, - "beanstalk": [["S", "M"]], - "beanstalks": null, - "beanstalk's": null, - "bearable": [["U"]], - "unbearable": null, - "bearably": [["U"]], - "unbearably": null, - "beard": [["D", "S", "G", "M"]], - "bearded": [["P"]], - "beards": null, - "bearding": null, - "beard's": null, - "beardedness": null, - "beardless": null, - "Beard": [["M"]], - "Beard's": null, - "Beardmore": [["M"]], - "Beardmore's": null, - "Beardsley": [["M"]], - "Beardsley's": null, - "bearer": [["M"]], - "bearer's": null, - "bearing": [["M"]], - "bearing's": null, - "bearishness": [["S", "M"]], - "bearishnesses": null, - "bearishness's": null, - "bearish": [["P", "Y"]], - "bearishly": null, - "bearlike": null, - "Bear": [["M"]], - "Bear's": null, - "Bearnaise": [["M"]], - "Bearnaise's": null, - "Bearnard": [["M"]], - "Bearnard's": null, - "bearskin": [["M", "S"]], - "bearskin's": null, - "bearskins": null, - "bear": [["Z", "B", "R", "S", "J", "G"]], - "bearers": null, - "bears": null, - "bearings": null, - "Beasley": [["M"]], - "Beasley's": null, - "beasties": null, - "beastings": [["M"]], - "beastings's": null, - "beastliness": [["M", "S"]], - "beastliness's": null, - "beastlinesses": null, - "beastly": [["P", "T", "R"]], - "beastliest": null, - "beastlier": null, - "beast": [["S", "J", "M", "Y"]], - "beasts": null, - "beast's": null, - "beatable": [["U"]], - "unbeatable": null, - "beatably": [["U"]], - "unbeatably": null, - "beaten": [["U"]], - "unbeaten": null, - "beater": [["M"]], - "beater's": null, - "beatific": null, - "beatifically": null, - "beatification": [["M"]], - "beatification's": null, - "beatify": [["G", "N", "X", "D", "S"]], - "beatifying": null, - "beatifications": null, - "beatified": null, - "beatifies": null, - "beating": [["M"]], - "beating's": null, - "beatitude": [["M", "S"]], - "beatitude's": null, - "beatitudes": null, - "Beatlemania": [["M"]], - "Beatlemania's": null, - "Beatles": [["M"]], - "Beatles's": null, - "beatnik": [["S", "M"]], - "beatniks": null, - "beatnik's": null, - "beat": [["N", "R", "G", "S", "B", "Z", "J"]], - "beats": null, - "beaters": null, - "beatings": null, - "Beatrice": [["M"]], - "Beatrice's": null, - "Beatrisa": [["M"]], - "Beatrisa's": null, - "Beatrix": [["M"]], - "Beatrix's": null, - "Beatriz": [["M"]], - "Beatriz's": null, - "Beauchamps": null, - "Beaufort": [["M"]], - "Beaufort's": null, - "Beaujolais": [["M"]], - "Beaujolais's": null, - "Beau": [["M"]], - "Beau's": null, - "Beaumarchais": [["M"]], - "Beaumarchais's": null, - "Beaumont": [["M"]], - "Beaumont's": null, - "beau": [["M", "S"]], - "beau's": null, - "beaus": null, - "Beauregard": [["M"]], - "Beauregard's": null, - "beauteousness": [["M"]], - "beauteousness's": null, - "beauteous": [["Y", "P"]], - "beauteously": null, - "beautician": [["M", "S"]], - "beautician's": null, - "beauticians": null, - "beautification": [["M"]], - "beautification's": null, - "beautifier": [["M"]], - "beautifier's": null, - "beautifully": [["U"]], - "unbeautifully": null, - "beautifulness": [["M"]], - "beautifulness's": null, - "beautiful": [["P", "T", "Y", "R"]], - "beautifulest": null, - "beautifuler": null, - "beautify": [["S", "R", "D", "N", "G", "X", "Z"]], - "beautifies": null, - "beautified": null, - "beautifying": null, - "beautifications": null, - "beautifiers": null, - "beaut": [["S", "M"]], - "beauts": null, - "beaut's": null, - "beauty": [["S", "M"]], - "beauties": null, - "beauty's": null, - "Beauvoir": [["M"]], - "Beauvoir's": null, - "beaux's": null, - "beaver": [["D", "M", "S", "G"]], - "beavered": null, - "beaver's": null, - "beavers": null, - "beavering": null, - "Beaverton": [["M"]], - "Beaverton's": null, - "Bebe": [["M"]], - "Bebe's": null, - "bebop": [["M", "S"]], - "bebop's": null, - "bebops": null, - "becalm": [["G", "D", "S"]], - "becalming": null, - "becalmed": null, - "becalms": null, - "became": null, - "because": null, - "Becca": [["M"]], - "Becca's": null, - "Bechtel": [["M"]], - "Bechtel's": null, - "Becka": [["M"]], - "Becka's": null, - "Becker": [["M"]], - "Becker's": null, - "Becket": [["M"]], - "Becket's": null, - "Beckett": [["M"]], - "Beckett's": null, - "beck": [["G", "S", "D", "M"]], - "becking": null, - "becks": null, - "becked": null, - "beck's": null, - "Beckie": [["M"]], - "Beckie's": null, - "Becki": [["M"]], - "Becki's": null, - "beckon": [["S", "D", "G"]], - "beckons": null, - "beckoned": null, - "beckoning": null, - "Beck": [["R", "M"]], - "Beck's": null, - "Becky": [["M"]], - "Becky's": null, - "becloud": [["S", "G", "D"]], - "beclouds": null, - "beclouding": null, - "beclouded": null, - "become": [["G", "J", "S"]], - "becoming": [["U", "Y"]], - "becomings": null, - "becomes": null, - "unbecoming": [["P"]], - "unbecomingly": null, - "becomingly": null, - "Becquerel": [["M"]], - "Becquerel's": null, - "bedaub": [["G", "D", "S"]], - "bedaubing": null, - "bedaubed": null, - "bedaubs": null, - "bedazzle": [["G", "L", "D", "S"]], - "bedazzling": null, - "bedazzlement": [["S", "M"]], - "bedazzled": null, - "bedazzles": null, - "bedazzlements": null, - "bedazzlement's": null, - "bedbug": [["S", "M"]], - "bedbugs": null, - "bedbug's": null, - "bedchamber": [["M"]], - "bedchamber's": null, - "bedclothes": null, - "bedded": null, - "bedder": [["M", "S"]], - "bedder's": null, - "bedders": null, - "bedding": [["M", "S"]], - "bedding's": null, - "beddings": null, - "bedeck": [["D", "G", "S"]], - "bedecked": null, - "bedecking": null, - "bedecks": null, - "Bede": [["M"]], - "Bede's": null, - "bedevil": [["D", "G", "L", "S"]], - "bedeviled": null, - "bedeviling": null, - "bedevilment": [["S", "M"]], - "bedevils": null, - "bedevilments": null, - "bedevilment's": null, - "bedfast": null, - "bedfellow": [["M", "S"]], - "bedfellow's": null, - "bedfellows": null, - "Bedford": [["M"]], - "Bedford's": null, - "bedimmed": null, - "bedimming": null, - "bedim": [["S"]], - "bedims": null, - "bedizen": [["D", "G", "S"]], - "bedizened": null, - "bedizening": null, - "bedizens": null, - "bedlam": [["M", "S"]], - "bedlam's": null, - "bedlams": null, - "bedlinen": null, - "bedmaker": [["S", "M"]], - "bedmakers": null, - "bedmaker's": null, - "bedmate": [["M", "S"]], - "bedmate's": null, - "bedmates": null, - "bed": [["M", "S"]], - "bed's": null, - "beds": null, - "Bedouin": [["S", "M"]], - "Bedouins": null, - "Bedouin's": null, - "bedpan": [["S", "M"]], - "bedpans": null, - "bedpan's": null, - "bedpost": [["S", "M"]], - "bedposts": null, - "bedpost's": null, - "bedraggle": [["G", "S", "D"]], - "bedraggling": null, - "bedraggles": null, - "bedraggled": null, - "bedridden": null, - "bedrock": [["S", "M"]], - "bedrocks": null, - "bedrock's": null, - "bedroll": [["S", "M"]], - "bedrolls": null, - "bedroll's": null, - "bedroom": [["D", "M", "S"]], - "bedroomed": null, - "bedroom's": null, - "bedrooms": null, - "bedsheets": null, - "bedside": [["M", "S"]], - "bedside's": null, - "bedsides": null, - "bedsit": null, - "bedsitter": [["M"]], - "bedsitter's": null, - "bedsore": [["M", "S"]], - "bedsore's": null, - "bedsores": null, - "bedspread": [["S", "M"]], - "bedspreads": null, - "bedspread's": null, - "bedspring": [["S", "M"]], - "bedsprings": null, - "bedspring's": null, - "bedstead": [["S", "M"]], - "bedsteads": null, - "bedstead's": null, - "bedstraw": [["M"]], - "bedstraw's": null, - "bedtime": [["S", "M"]], - "bedtimes": null, - "bedtime's": null, - "Beebe": [["M"]], - "Beebe's": null, - "beebread": [["M", "S"]], - "beebread's": null, - "beebreads": null, - "Beecher": [["M"]], - "Beecher's": null, - "beech": [["M", "R", "S", "N"]], - "beech's": null, - "beecher": null, - "beeches": null, - "beechen": null, - "beechnut": [["M", "S"]], - "beechnut's": null, - "beechnuts": null, - "beechwood": null, - "beefburger": [["S", "M"]], - "beefburgers": null, - "beefburger's": null, - "beefcake": [["M", "S"]], - "beefcake's": null, - "beefcakes": null, - "beef": [["G", "Z", "S", "D", "R", "M"]], - "beefing": null, - "beefers": null, - "beefs": null, - "beefed": null, - "beefer": null, - "beef's": null, - "beefiness": [["M", "S"]], - "beefiness's": null, - "beefinesses": null, - "beefsteak": [["M", "S"]], - "beefsteak's": null, - "beefsteaks": null, - "beefy": [["T", "R", "P"]], - "beefiest": null, - "beefier": null, - "beehive": [["M", "S"]], - "beehive's": null, - "beehives": null, - "beekeeper": [["M", "S"]], - "beekeeper's": null, - "beekeepers": null, - "beekeeping": [["S", "M"]], - "beekeepings": null, - "beekeeping's": null, - "beeline": [["M", "G", "S", "D"]], - "beeline's": null, - "beelining": null, - "beelines": null, - "beelined": null, - "Beelzebub": [["M"]], - "Beelzebub's": null, - "Bee": [["M"]], - "Bee's": null, - "bee": [["M", "Z", "G", "J", "R", "S"]], - "bee's": null, - "beers": null, - "being": [["M"]], - "beings": null, - "beer": [["M"]], - "bees": null, - "been": [["S"]], - "beens": null, - "beeper": [["M"]], - "beeper's": null, - "beep": [["G", "Z", "S", "M", "D", "R"]], - "beeping": null, - "beepers": null, - "beeps": null, - "beep's": null, - "beeped": null, - "Beerbohm": [["M"]], - "Beerbohm's": null, - "beer's": null, - "beermat": [["S"]], - "beermats": null, - "beery": [["T", "R"]], - "beeriest": null, - "beerier": null, - "beeswax": [["D", "S", "M", "G"]], - "beeswaxed": null, - "beeswaxes": null, - "beeswax's": null, - "beeswaxing": null, - "Beethoven": [["M"]], - "Beethoven's": null, - "beetle": [["G", "M", "R", "S", "D"]], - "beetling": null, - "beetle's": null, - "beetler": null, - "beetles": null, - "beetled": null, - "Beeton": [["M"]], - "Beeton's": null, - "beetroot": [["M"]], - "beetroot's": null, - "beet": [["S", "M"]], - "beets": null, - "beet's": null, - "beeves": [["M"]], - "beeves's": null, - "befall": [["S", "G", "N"]], - "befalls": null, - "befalling": null, - "befallen": null, - "befell": null, - "befit": [["S", "M"]], - "befits": null, - "befit's": null, - "befitted": null, - "befitting": [["Y"]], - "befittingly": null, - "befogged": null, - "befogging": null, - "befog": [["S"]], - "befogs": null, - "before": null, - "beforehand": null, - "befoul": [["G", "S", "D"]], - "befouling": null, - "befouls": null, - "befouled": null, - "befriend": [["D", "G", "S"]], - "befriended": null, - "befriending": null, - "befriends": null, - "befuddle": [["G", "L", "D", "S"]], - "befuddling": null, - "befuddlement": [["S", "M"]], - "befuddled": null, - "befuddles": null, - "befuddlements": null, - "befuddlement's": null, - "began": null, - "beget": [["S"]], - "begets": null, - "begetting": null, - "beggar": [["D", "Y", "M", "S", "G"]], - "beggared": null, - "beggarly": [["P"]], - "beggar's": null, - "beggars": null, - "beggaring": null, - "beggarliness": [["M"]], - "beggarliness's": null, - "beggary": [["M", "S"]], - "beggary's": null, - "beggaries": null, - "begged": null, - "begging": null, - "Begin": [["M"]], - "Begin's": null, - "beginner": [["M", "S"]], - "beginner's": null, - "beginners": null, - "beginning": [["M", "S"]], - "beginning's": null, - "beginnings": null, - "begin": [["S"]], - "begins": null, - "begone": [["S"]], - "begones": null, - "begonia": [["S", "M"]], - "begonias": null, - "begonia's": null, - "begot": null, - "begotten": null, - "begrime": [["S", "D", "G"]], - "begrimes": null, - "begrimed": null, - "begriming": null, - "begrudge": [["G", "D", "R", "S"]], - "begrudging": [["Y"]], - "begrudged": null, - "begrudger": null, - "begrudges": null, - "begrudgingly": null, - "beg": [["S"]], - "begs": null, - "beguilement": [["S", "M"]], - "beguilements": null, - "beguilement's": null, - "beguiler": [["M"]], - "beguiler's": null, - "beguile": [["R", "S", "D", "L", "Z", "G"]], - "beguiles": null, - "beguiled": null, - "beguilers": null, - "beguiling": [["Y"]], - "beguilingly": null, - "beguine": [["S", "M"]], - "beguines": null, - "beguine's": null, - "begum": [["M", "S"]], - "begum's": null, - "begums": null, - "begun": null, - "behalf": [["M"]], - "behalf's": null, - "behalves": null, - "Behan": [["M"]], - "Behan's": null, - "behave": [["G", "R", "S", "D"]], - "behaving": null, - "behaver": null, - "behaves": null, - "behaved": null, - "behavioral": [["Y"]], - "behaviorally": null, - "behaviorism": [["M", "S"]], - "behaviorism's": null, - "behaviorisms": null, - "behavioristic": [["S"]], - "behavioristics": null, - "behaviorist": [["S"]], - "behaviorists": null, - "behavior": [["S", "M", "D"]], - "behaviors": null, - "behavior's": null, - "behaviored": null, - "behead": [["G", "S", "D"]], - "beheading": null, - "beheads": null, - "beheaded": null, - "beheld": null, - "behemoth": [["M"]], - "behemoth's": null, - "behemoths": null, - "behest": [["S", "M"]], - "behests": null, - "behest's": null, - "behindhand": null, - "behind": [["S"]], - "behinds": null, - "beholder": [["M"]], - "beholder's": null, - "behold": [["Z", "G", "R", "N", "S"]], - "beholders": null, - "beholding": null, - "beholden": null, - "beholds": null, - "behoofs": null, - "behoove": [["S", "D", "J", "M", "G"]], - "behooves": null, - "behooved": null, - "behoovings": null, - "behoove's": null, - "behooving": [["Y", "M"]], - "behoovingly": null, - "behooving's": null, - "Behring": [["M"]], - "Behring's": null, - "Beiderbecke": [["M"]], - "Beiderbecke's": null, - "beige": [["M", "S"]], - "beige's": null, - "beiges": null, - "Beijing": null, - "Beilul": [["M"]], - "Beilul's": null, - "being's": null, - "Beirut": [["M"]], - "Beirut's": null, - "Beitris": [["M"]], - "Beitris's": null, - "bejewel": [["S", "D", "G"]], - "bejewels": null, - "bejeweled": null, - "bejeweling": null, - "Bekesy": [["M"]], - "Bekesy's": null, - "Bekki": [["M"]], - "Bekki's": null, - "be": [["K", "S"]], - "probe": null, - "probes": null, - "bes": null, - "belabor": [["M", "D", "S", "G"]], - "belabor's": null, - "belabored": null, - "belabors": null, - "belaboring": null, - "Bela": [["M"]], - "Bela's": null, - "Belarus": null, - "belate": [["D"]], - "belated": [["P", "Y"]], - "belatedness": [["M"]], - "belatedness's": null, - "belatedly": null, - "Belau": [["M"]], - "Belau's": null, - "belay": [["G", "S", "D"]], - "belaying": null, - "belays": null, - "belayed": null, - "belch": [["G", "S", "D"]], - "belching": null, - "belches": null, - "belched": null, - "beleaguer": [["G", "D", "S"]], - "beleaguering": null, - "beleaguered": null, - "beleaguers": null, - "Belem": [["M"]], - "Belem's": null, - "Belfast": [["M"]], - "Belfast's": null, - "belfry": [["S", "M"]], - "belfries": null, - "belfry's": null, - "Belgian": [["M", "S"]], - "Belgian's": null, - "Belgians": null, - "Belgium": [["M"]], - "Belgium's": null, - "Belg": [["M"]], - "Belg's": null, - "Belgrade": [["M"]], - "Belgrade's": null, - "Belia": [["M"]], - "Belia's": null, - "Belicia": [["M"]], - "Belicia's": null, - "belie": null, - "belief": [["E", "S", "U", "M"]], - "disbelief": null, - "disbeliefs": null, - "disbelief's": null, - "beliefs": null, - "unbeliefs": null, - "unbelief": null, - "unbelief's": null, - "belief's": null, - "belier": [["M"]], - "belier's": null, - "believability's": null, - "believability": [["U"]], - "unbelievability": null, - "believable": [["U"]], - "unbelievable": null, - "believably": [["U"]], - "unbelievably": null, - "believed": [["U"]], - "unbelieved": null, - "believe": [["E", "Z", "G", "D", "R", "S"]], - "disbelieve": null, - "disbelievers": null, - "disbelieving": [["Y"]], - "disbelieved": null, - "disbeliever": null, - "disbelieves": null, - "believers": null, - "believing": [["U"]], - "believer": [["M", "U", "S", "E"]], - "believes": null, - "believer's": null, - "unbeliever's": null, - "disbeliever's": null, - "unbeliever": null, - "unbelievers": null, - "unbelieving": [["Y"]], - "Belinda": [["M"]], - "Belinda's": null, - "Belita": [["M"]], - "Belita's": null, - "belittlement": [["M", "S"]], - "belittlement's": null, - "belittlements": null, - "belittler": [["M"]], - "belittler's": null, - "belittle": [["R", "S", "D", "G", "L"]], - "belittles": null, - "belittled": null, - "belittling": null, - "Belize": [["M"]], - "Belize's": null, - "belladonna": [["M", "S"]], - "belladonna's": null, - "belladonnas": null, - "Bella": [["M"]], - "Bella's": null, - "Bellamy": [["M"]], - "Bellamy's": null, - "Bellanca": [["M"]], - "Bellanca's": null, - "Bellatrix": [["M"]], - "Bellatrix's": null, - "bellboy": [["M", "S"]], - "bellboy's": null, - "bellboys": null, - "belled": [["A"]], - "rebelled": null, - "Belle": [["M"]], - "Belle's": null, - "belle": [["M", "S"]], - "belle's": null, - "belles": null, - "belletristic": null, - "belletrist": [["S", "M"]], - "belletrists": null, - "belletrist's": null, - "Belleville": [["M"]], - "Belleville's": null, - "bellflower": [["M"]], - "bellflower's": null, - "bell": [["G", "S", "M", "D"]], - "belling": [["A"]], - "bells": [["A"]], - "bell's": null, - "bellhop": [["M", "S"]], - "bellhop's": null, - "bellhops": null, - "bellicoseness": [["M"]], - "bellicoseness's": null, - "bellicose": [["Y", "P"]], - "bellicosely": null, - "bellicosity": [["M", "S"]], - "bellicosity's": null, - "bellicosities": null, - "belligerence": [["S", "M"]], - "belligerences": null, - "belligerence's": null, - "belligerency": [["M", "S"]], - "belligerency's": null, - "belligerencies": null, - "belligerent": [["S", "M", "Y"]], - "belligerents": null, - "belligerent's": null, - "belligerently": null, - "Bellina": [["M"]], - "Bellina's": null, - "rebelling": null, - "Bellini": [["M"]], - "Bellini's": null, - "Bell": [["M"]], - "Bell's": null, - "bellman": [["M"]], - "bellman's": null, - "bellmen": null, - "Bellovin": [["M"]], - "Bellovin's": null, - "bellow": [["D", "G", "S"]], - "bellowed": null, - "bellowing": null, - "bellows": [["M"]], - "Bellow": [["M"]], - "Bellow's": null, - "bellows's": null, - "rebells": null, - "bellwether": [["M", "S"]], - "bellwether's": null, - "bellwethers": null, - "Bellwood": [["M"]], - "Bellwood's": null, - "bellyacher": [["M"]], - "bellyacher's": null, - "bellyache": [["S", "R", "D", "G", "M"]], - "bellyaches": null, - "bellyached": null, - "bellyaching": null, - "bellyache's": null, - "bellybutton": [["M", "S"]], - "bellybutton's": null, - "bellybuttons": null, - "bellyfull": null, - "bellyful": [["M", "S"]], - "bellyful's": null, - "bellyfuls": null, - "belly": [["S", "D", "G", "M"]], - "bellies": null, - "bellied": null, - "bellying": null, - "belly's": null, - "Bel": [["M"]], - "Bel's": null, - "Belmont": [["M"]], - "Belmont's": null, - "Belmopan": [["M"]], - "Belmopan's": null, - "Beloit": [["M"]], - "Beloit's": null, - "belong": [["D", "G", "J", "S"]], - "belonged": null, - "belonging": [["M", "P"]], - "belongings": null, - "belongs": null, - "belonging's": null, - "belongingness": null, - "Belorussian": [["S"]], - "Belorussians": null, - "Belorussia's": null, - "belove": [["D"]], - "beloved": [["S"]], - "beloveds": null, - "below": [["S"]], - "belows": null, - "Belshazzar": [["M"]], - "Belshazzar's": null, - "belted": [["U"]], - "unbelted": null, - "belt": [["G", "S", "M", "D"]], - "belting": [["M"]], - "belts": null, - "belt's": null, - "belting's": null, - "Belton": [["M"]], - "Belton's": null, - "Beltran": [["M"]], - "Beltran's": null, - "Beltsville": [["M"]], - "Beltsville's": null, - "beltway": [["S", "M"]], - "beltways": null, - "beltway's": null, - "beluga": [["S", "M"]], - "belugas": null, - "beluga's": null, - "Belushi": [["M"]], - "Belushi's": null, - "Belva": [["M"]], - "Belva's": null, - "belvedere": [["M"]], - "belvedere's": null, - "Belvia": [["M"]], - "Belvia's": null, - "bely": [["D", "S", "R", "G"]], - "belied": null, - "belies": null, - "belying": null, - "beman": null, - "Be": [["M", "H"]], - "Be's": null, - "Beth": [["M"]], - "bemire": [["S", "D", "G"]], - "bemires": null, - "bemired": null, - "bemiring": null, - "bemoan": [["G", "D", "S"]], - "bemoaning": null, - "bemoaned": null, - "bemoans": null, - "bemused": [["Y"]], - "bemusedly": null, - "bemuse": [["G", "S", "D", "L"]], - "bemusing": null, - "bemuses": null, - "bemusement": [["S", "M"]], - "bemusements": null, - "bemusement's": null, - "Benacerraf": [["M"]], - "Benacerraf's": null, - "Benares's": null, - "bencher": [["M"]], - "bencher's": null, - "benchmark": [["G", "D", "M", "S"]], - "benchmarking": null, - "benchmarked": null, - "benchmark's": null, - "benchmarks": null, - "bench": [["M", "R", "S", "D", "G"]], - "bench's": null, - "benches": null, - "benched": null, - "benching": null, - "bend": [["B", "U", "S", "G"]], - "bendable": null, - "unbendable": null, - "unbend": null, - "unbends": null, - "unbending": null, - "bends": null, - "bending": null, - "bended": null, - "Bender": [["M"]], - "Bender's": null, - "bender": [["M", "S"]], - "bender's": null, - "benders": null, - "Bendick": [["M"]], - "Bendick's": null, - "Bendicty": [["M"]], - "Bendicty's": null, - "Bendite": [["M"]], - "Bendite's": null, - "Bendix": [["M"]], - "Bendix's": null, - "beneath": null, - "Benedetta": [["M"]], - "Benedetta's": null, - "Benedetto": [["M"]], - "Benedetto's": null, - "Benedick": [["M"]], - "Benedick's": null, - "Benedicta": [["M"]], - "Benedicta's": null, - "Benedictine": [["M", "S"]], - "Benedictine's": null, - "Benedictines": null, - "benediction": [["M", "S"]], - "benediction's": null, - "benedictions": null, - "Benedict": [["M"]], - "Benedict's": null, - "Benedicto": [["M"]], - "Benedicto's": null, - "benedictory": null, - "Benedikta": [["M"]], - "Benedikta's": null, - "Benedikt": [["M"]], - "Benedikt's": null, - "benefaction": [["M", "S"]], - "benefaction's": null, - "benefactions": null, - "benefactor": [["M", "S"]], - "benefactor's": null, - "benefactors": null, - "benefactress": [["S"]], - "benefactresses": null, - "benefice": [["M", "G", "S", "D"]], - "benefice's": null, - "beneficing": null, - "benefices": null, - "beneficed": null, - "beneficence": [["S", "M"]], - "beneficences": null, - "beneficence's": null, - "beneficent": [["Y"]], - "beneficently": null, - "beneficialness": [["M"]], - "beneficialness's": null, - "beneficial": [["P", "Y"]], - "beneficially": null, - "beneficiary": [["M", "S"]], - "beneficiary's": null, - "beneficiaries": null, - "benefiter": [["M"]], - "benefiter's": null, - "benefit": [["S", "R", "D", "M", "Z", "G"]], - "benefits": null, - "benefited": null, - "benefit's": null, - "benefiters": null, - "benefiting": null, - "Benelux": [["M"]], - "Benelux's": null, - "Benet": [["M"]], - "Benet's": null, - "Benetta": [["M"]], - "Benetta's": null, - "Benetton": [["M"]], - "Benetton's": null, - "benevolence": [["S", "M"]], - "benevolences": null, - "benevolence's": null, - "benevolentness": [["M"]], - "benevolentness's": null, - "benevolent": [["Y", "P"]], - "benevolently": null, - "Bengali": [["M"]], - "Bengali's": null, - "Bengal": [["S", "M"]], - "Bengals": null, - "Bengal's": null, - "Benghazi": [["M"]], - "Benghazi's": null, - "Bengt": [["M"]], - "Bengt's": null, - "Beniamino": [["M"]], - "Beniamino's": null, - "benightedness": [["M"]], - "benightedness's": null, - "benighted": [["Y", "P"]], - "benightedly": null, - "benignant": null, - "benignity": [["M", "S"]], - "benignity's": null, - "benignities": null, - "benign": [["Y"]], - "benignly": null, - "Beninese": null, - "Benin": [["M"]], - "Benin's": null, - "Benita": [["M"]], - "Benita's": null, - "Benito": [["M"]], - "Benito's": null, - "Benjamen": [["M"]], - "Benjamen's": null, - "Benjamin": [["M"]], - "Benjamin's": null, - "Benjie": [["M"]], - "Benjie's": null, - "Benji": [["M"]], - "Benji's": null, - "Benjy": [["M"]], - "Benjy's": null, - "Ben": [["M"]], - "Ben's": null, - "Bennett": [["M"]], - "Bennett's": null, - "Bennie": [["M"]], - "Bennie's": null, - "Benni": [["M"]], - "Benni's": null, - "Bennington": [["M"]], - "Bennington's": null, - "Benn": [["M"]], - "Benn's": null, - "Benny": [["M"]], - "Benny's": null, - "Benoite": [["M"]], - "Benoite's": null, - "Benoit": [["M"]], - "Benoit's": null, - "Benson": [["M"]], - "Benson's": null, - "Bentham": [["M"]], - "Bentham's": null, - "Bentlee": [["M"]], - "Bentlee's": null, - "Bentley": [["M", "S"]], - "Bentley's": null, - "Bentleys": null, - "Bent": [["M"]], - "Bent's": null, - "Benton": [["M"]], - "Benton's": null, - "bents": null, - "bent": [["U"]], - "unbent": null, - "bentwood": [["S", "M"]], - "bentwoods": null, - "bentwood's": null, - "benumb": [["S", "G", "D"]], - "benumbs": null, - "benumbing": null, - "benumbed": null, - "Benyamin": [["M"]], - "Benyamin's": null, - "Benzedrine": [["M"]], - "Benzedrine's": null, - "benzene": [["M", "S"]], - "benzene's": null, - "benzenes": null, - "benzine": [["S", "M"]], - "benzines": null, - "benzine's": null, - "Benz": [["M"]], - "Benz's": null, - "Beograd's": null, - "Beowulf": [["M"]], - "Beowulf's": null, - "bequeath": [["G", "S", "D"]], - "bequeathing": null, - "bequeathes": null, - "bequeathed": null, - "bequeaths": null, - "bequest": [["M", "S"]], - "bequest's": null, - "bequests": null, - "berate": [["G", "S", "D"]], - "berating": null, - "berates": null, - "berated": null, - "Berber": [["M", "S"]], - "Berber's": null, - "Berbers": null, - "bereave": [["G", "L", "S", "D"]], - "bereaving": null, - "bereavement": [["M", "S"]], - "bereaves": null, - "bereaved": null, - "bereavement's": null, - "bereavements": null, - "bereft": null, - "Berenice": [["M"]], - "Berenice's": null, - "Beret": [["M"]], - "Beret's": null, - "beret": [["S", "M"]], - "berets": null, - "beret's": null, - "Bergen": [["M"]], - "Bergen's": null, - "Bergerac": [["M"]], - "Bergerac's": null, - "Berger": [["M"]], - "Berger's": null, - "Berget": [["M"]], - "Berget's": null, - "Berglund": [["M"]], - "Berglund's": null, - "Bergman": [["M"]], - "Bergman's": null, - "Berg": [["N", "R", "M"]], - "Berg's": null, - "berg": [["N", "R", "S", "M"]], - "bergen": null, - "berger": null, - "bergs": null, - "berg's": null, - "Bergson": [["M"]], - "Bergson's": null, - "Bergsten": [["M"]], - "Bergsten's": null, - "Bergstrom": [["M"]], - "Bergstrom's": null, - "beribbon": [["D"]], - "beribboned": null, - "beriberi": [["S", "M"]], - "beriberis": null, - "beriberi's": null, - "Beringer": [["M"]], - "Beringer's": null, - "Bering": [["R", "M"]], - "Bering's": null, - "Berkeley": [["M"]], - "Berkeley's": null, - "berkelium": [["S", "M"]], - "berkeliums": null, - "berkelium's": null, - "Berke": [["M"]], - "Berke's": null, - "Berkie": [["M"]], - "Berkie's": null, - "Berkley": [["M"]], - "Berkley's": null, - "Berkly": [["M"]], - "Berkly's": null, - "Berkowitz": [["M"]], - "Berkowitz's": null, - "Berkshire": [["S", "M"]], - "Berkshires": null, - "Berkshire's": null, - "Berky": [["M"]], - "Berky's": null, - "Berk": [["Y", "M"]], - "Berk's": null, - "Berle": [["M"]], - "Berle's": null, - "Berliner": [["M"]], - "Berliner's": null, - "Berlin": [["S", "Z", "R", "M"]], - "Berlins": null, - "Berliners": null, - "Berlin's": null, - "Berlioz": [["M"]], - "Berlioz's": null, - "Berlitz": [["M"]], - "Berlitz's": null, - "Berman": [["M"]], - "Berman's": null, - "Ber": [["M", "G"]], - "Ber's": null, - "berm": [["S", "M"]], - "berms": null, - "berm's": null, - "Bermuda": [["M", "S"]], - "Bermuda's": null, - "Bermudas": null, - "Bermudan": [["S"]], - "Bermudans": null, - "Bermudian": [["S"]], - "Bermudians": null, - "Bernadene": [["M"]], - "Bernadene's": null, - "Bernadette": [["M"]], - "Bernadette's": null, - "Bernadina": [["M"]], - "Bernadina's": null, - "Bernadine": [["M"]], - "Bernadine's": null, - "Berna": [["M"]], - "Berna's": null, - "Bernardina": [["M"]], - "Bernardina's": null, - "Bernardine": [["M"]], - "Bernardine's": null, - "Bernardino": [["M"]], - "Bernardino's": null, - "Bernard": [["M"]], - "Bernard's": null, - "Bernardo": [["M"]], - "Bernardo's": null, - "Bernarr": [["M"]], - "Bernarr's": null, - "Bernays": [["M"]], - "Bernays's": null, - "Bernbach": [["M"]], - "Bernbach's": null, - "Bernelle": [["M"]], - "Bernelle's": null, - "Berne's": null, - "Bernese": null, - "Bernete": [["M"]], - "Bernete's": null, - "Bernetta": [["M"]], - "Bernetta's": null, - "Bernette": [["M"]], - "Bernette's": null, - "Bernhard": [["M"]], - "Bernhard's": null, - "Bernhardt": [["M"]], - "Bernhardt's": null, - "Bernice": [["M"]], - "Bernice's": null, - "Berniece": [["M"]], - "Berniece's": null, - "Bernie": [["M"]], - "Bernie's": null, - "Berni": [["M"]], - "Berni's": null, - "Bernini": [["M"]], - "Bernini's": null, - "Bernita": [["M"]], - "Bernita's": null, - "Bern": [["M"]], - "Bern's": null, - "Bernoulli": [["M"]], - "Bernoulli's": null, - "Bernstein": [["M"]], - "Bernstein's": null, - "Berny": [["M"]], - "Berny's": null, - "Berra": [["M"]], - "Berra's": null, - "Berrie": [["M"]], - "Berrie's": null, - "Berri": [["M"]], - "Berri's": null, - "berrylike": null, - "Berry": [["M"]], - "Berry's": null, - "berry": [["S", "D", "M", "G"]], - "berries": null, - "berried": null, - "berry's": null, - "berrying": null, - "berserker": [["M"]], - "berserker's": null, - "berserk": [["S", "R"]], - "berserks": null, - "Berta": [["M"]], - "Berta's": null, - "Berte": [["M"]], - "Berte's": null, - "Bertha": [["M"]], - "Bertha's": null, - "Berthe": [["M"]], - "Berthe's": null, - "berth": [["M", "D", "G", "J"]], - "berth's": null, - "berthed": null, - "berthing": null, - "berthings": null, - "berths": null, - "Bertie": [["M"]], - "Bertie's": null, - "Bertillon": [["M"]], - "Bertillon's": null, - "Berti": [["M"]], - "Berti's": null, - "Bertina": [["M"]], - "Bertina's": null, - "Bertine": [["M"]], - "Bertine's": null, - "Bert": [["M"]], - "Bert's": null, - "Berton": [["M"]], - "Berton's": null, - "Bertram": [["M"]], - "Bertram's": null, - "Bertrand": [["M"]], - "Bertrand's": null, - "Bertrando": [["M"]], - "Bertrando's": null, - "Berty": [["M"]], - "Berty's": null, - "Beryle": [["M"]], - "Beryle's": null, - "beryllium": [["M", "S"]], - "beryllium's": null, - "berylliums": null, - "Beryl": [["M"]], - "Beryl's": null, - "beryl": [["S", "M"]], - "beryls": null, - "beryl's": null, - "Berzelius": [["M"]], - "Berzelius's": null, - "beseecher": [["M"]], - "beseecher's": null, - "beseeching": [["Y"]], - "beseechingly": null, - "beseech": [["R", "S", "J", "Z", "G"]], - "beseeches": null, - "beseechings": null, - "beseechers": null, - "beseem": [["G", "D", "S"]], - "beseeming": null, - "beseemed": null, - "beseems": null, - "beset": [["S"]], - "besets": null, - "besetting": null, - "beside": [["S"]], - "besides": null, - "besieger": [["M"]], - "besieger's": null, - "besiege": [["S", "R", "D", "Z", "G"]], - "besieges": null, - "besieged": null, - "besiegers": null, - "besieging": null, - "besmear": [["G", "S", "D"]], - "besmearing": null, - "besmears": null, - "besmeared": null, - "besmirch": [["G", "S", "D"]], - "besmirching": null, - "besmirches": null, - "besmirched": null, - "besom": [["G", "M", "D", "S"]], - "besoming": null, - "besom's": null, - "besomed": null, - "besoms": null, - "besot": [["S"]], - "besots": null, - "besotted": null, - "besotting": null, - "besought": null, - "bespangle": [["G", "S", "D"]], - "bespangling": null, - "bespangles": null, - "bespangled": null, - "bespatter": [["S", "G", "D"]], - "bespatters": null, - "bespattering": null, - "bespattered": null, - "bespeak": [["S", "G"]], - "bespeaks": null, - "bespeaking": null, - "bespectacled": null, - "bespoke": null, - "bespoken": null, - "Bess": null, - "Bessel": [["M"]], - "Bessel's": null, - "Bessemer": [["M"]], - "Bessemer's": null, - "Bessie": [["M"]], - "Bessie's": null, - "Bessy": [["M"]], - "Bessy's": null, - "best": [["D", "R", "S", "G"]], - "bested": null, - "bester": null, - "bests": null, - "besting": null, - "bestiality": [["M", "S"]], - "bestiality's": null, - "bestialities": null, - "bestial": [["Y"]], - "bestially": null, - "bestiary": [["M", "S"]], - "bestiary's": null, - "bestiaries": null, - "bestirred": null, - "bestirring": null, - "bestir": [["S"]], - "bestirs": null, - "Best": [["M"]], - "Best's": null, - "bestowal": [["S", "M"]], - "bestowals": null, - "bestowal's": null, - "bestow": [["S", "G", "D"]], - "bestows": null, - "bestowing": null, - "bestowed": null, - "bestrew": [["D", "G", "S"]], - "bestrewed": null, - "bestrewing": null, - "bestrews": null, - "bestrewn": null, - "bestridden": null, - "bestride": [["S", "G"]], - "bestrides": null, - "bestriding": null, - "bestrode": null, - "bestseller": [["M", "S"]], - "bestseller's": null, - "bestsellers": null, - "bestselling": null, - "bestubble": [["D"]], - "bestubbled": null, - "betaken": null, - "betake": [["S", "G"]], - "betakes": null, - "betaking": null, - "beta": [["S", "M"]], - "betas": null, - "beta's": null, - "betatron": [["M"]], - "betatron's": null, - "betcha": null, - "Betelgeuse": [["M"]], - "Betelgeuse's": null, - "betel": [["M", "S"]], - "betel's": null, - "betels": null, - "Bethanne": [["M"]], - "Bethanne's": null, - "Bethany": [["M"]], - "Bethany's": null, - "bethel": [["M"]], - "bethel's": null, - "Bethe": [["M"]], - "Bethe's": null, - "Bethena": [["M"]], - "Bethena's": null, - "Bethesda": [["M"]], - "Bethesda's": null, - "Bethina": [["M"]], - "Bethina's": null, - "bethink": [["G", "S"]], - "bethinking": null, - "bethinks": null, - "Bethlehem": [["M"]], - "Bethlehem's": null, - "beth": [["M"]], - "beth's": null, - "Beth's": null, - "bethought": null, - "Bethune": null, - "betide": [["G", "S", "D"]], - "betiding": null, - "betides": null, - "betided": null, - "betimes": null, - "bet": [["M", "S"]], - "bet's": null, - "bets": null, - "betoken": [["G", "S", "D"]], - "betokening": null, - "betokens": null, - "betokened": null, - "betook": null, - "betrayal": [["S", "M"]], - "betrayals": null, - "betrayal's": null, - "betrayer": [["M"]], - "betrayer's": null, - "betray": [["S", "R", "D", "Z", "G"]], - "betrays": null, - "betrayed": null, - "betrayers": null, - "betraying": null, - "betrothal": [["S", "M"]], - "betrothals": null, - "betrothal's": null, - "betrothed": [["U"]], - "unbetrothed": null, - "betroth": [["G", "D"]], - "betrothing": null, - "betroths": null, - "Betsey": [["M"]], - "Betsey's": null, - "Betsy": [["M"]], - "Betsy's": null, - "Betta": [["M"]], - "Betta's": null, - "Betteanne": [["M"]], - "Betteanne's": null, - "Betteann": [["M"]], - "Betteann's": null, - "Bette": [["M"]], - "Bette's": null, - "betterment": [["M", "S"]], - "betterment's": null, - "betterments": null, - "better": [["S", "D", "L", "G"]], - "betters": null, - "bettered": null, - "bettering": null, - "Bettie": [["M"]], - "Bettie's": null, - "Betti": [["M"]], - "Betti's": null, - "Bettina": [["M"]], - "Bettina's": null, - "Bettine": [["M"]], - "Bettine's": null, - "betting": null, - "bettor": [["S", "M"]], - "bettors": null, - "bettor's": null, - "Bettye": [["M"]], - "Bettye's": null, - "Betty": [["S", "M"]], - "Betties": null, - "Betty's": null, - "betweenness": [["M"]], - "betweenness's": null, - "between": [["S", "P"]], - "betweens": null, - "betwixt": null, - "Beulah": [["M"]], - "Beulah's": null, - "Bevan": [["M"]], - "Bevan's": null, - "bevel": [["S", "J", "G", "M", "R", "D"]], - "bevels": null, - "bevelings": null, - "beveling": null, - "bevel's": null, - "beveler": null, - "beveled": null, - "beverage": [["M", "S"]], - "beverage's": null, - "beverages": null, - "Beverie": [["M"]], - "Beverie's": null, - "Beverlee": [["M"]], - "Beverlee's": null, - "Beverley": [["M"]], - "Beverley's": null, - "Beverlie": [["M"]], - "Beverlie's": null, - "Beverly": [["M"]], - "Beverly's": null, - "Bevin": [["M"]], - "Bevin's": null, - "Bevon": [["M"]], - "Bevon's": null, - "Bev's": null, - "Bevvy": [["M"]], - "Bevvy's": null, - "bevy": [["S", "M"]], - "bevies": null, - "bevy's": null, - "bewail": [["G", "D", "S"]], - "bewailing": null, - "bewailed": null, - "bewails": null, - "beware": [["G", "S", "D"]], - "bewaring": null, - "bewares": null, - "bewared": null, - "bewhisker": [["D"]], - "bewhiskered": null, - "bewigged": null, - "bewildered": [["P", "Y"]], - "bewilderedness": null, - "bewilderedly": null, - "bewildering": [["Y"]], - "bewilderingly": null, - "bewilder": [["L", "D", "S", "G"]], - "bewilderment": [["S", "M"]], - "bewilders": null, - "bewilderments": null, - "bewilderment's": null, - "bewitching": [["Y"]], - "bewitchingly": null, - "bewitch": [["L", "G", "D", "S"]], - "bewitchment": [["S", "M"]], - "bewitched": null, - "bewitches": null, - "bewitchments": null, - "bewitchment's": null, - "bey": [["M", "S"]], - "bey's": null, - "beys": null, - "beyond": [["S"]], - "beyonds": null, - "bezel": [["M", "S"]], - "bezel's": null, - "bezels": null, - "bf": null, - "B": [["G", "T"]], - "Bing": [["M"]], - "Bhopal": [["M"]], - "Bhopal's": null, - "Bhutanese": null, - "Bhutan": [["M"]], - "Bhutan's": null, - "Bhutto": [["M"]], - "Bhutto's": null, - "Bialystok": [["M"]], - "Bialystok's": null, - "Bianca": [["M"]], - "Bianca's": null, - "Bianco": [["M"]], - "Bianco's": null, - "Bianka": [["M"]], - "Bianka's": null, - "biannual": [["Y"]], - "biannually": null, - "bias": [["D", "S", "M", "P", "G"]], - "biased": [["U"]], - "biases": null, - "bias's": null, - "biasness": null, - "biasing": null, - "unbiased": [["P"]], - "biathlon": [["M", "S"]], - "biathlon's": null, - "biathlons": null, - "biaxial": [["Y"]], - "biaxially": null, - "bibbed": null, - "Bibbie": [["M"]], - "Bibbie's": null, - "bibbing": null, - "Bibbye": [["M"]], - "Bibbye's": null, - "Bibby": [["M"]], - "Bibby's": null, - "Bibi": [["M"]], - "Bibi's": null, - "bible": [["M", "S"]], - "bible's": null, - "bibles": null, - "Bible": [["M", "S"]], - "Bible's": null, - "Bibles": null, - "biblical": [["Y"]], - "biblically": null, - "biblicists": null, - "bibliographer": [["M", "S"]], - "bibliographer's": null, - "bibliographers": null, - "bibliographical": [["Y"]], - "bibliographically": null, - "bibliographic": [["S"]], - "bibliographics": null, - "bibliography": [["M", "S"]], - "bibliography's": null, - "bibliographies": null, - "bibliophile": [["M", "S"]], - "bibliophile's": null, - "bibliophiles": null, - "Bib": [["M"]], - "Bib's": null, - "bib": [["M", "S"]], - "bib's": null, - "bibs": null, - "bibulous": null, - "bicameral": null, - "bicameralism": [["M", "S"]], - "bicameralism's": null, - "bicameralisms": null, - "bicarb": [["M", "S"]], - "bicarb's": null, - "bicarbs": null, - "bicarbonate": [["M", "S"]], - "bicarbonate's": null, - "bicarbonates": null, - "bicentenary": [["S"]], - "bicentenaries": null, - "bicentennial": [["S"]], - "bicentennials": null, - "bicep": [["S"]], - "biceps": [["M"]], - "biceps's": null, - "bichromate": [["D", "M"]], - "bichromated": null, - "bichromate's": null, - "bickerer": [["M"]], - "bickerer's": null, - "bickering": [["M"]], - "bickering's": null, - "bicker": [["S", "R", "D", "Z", "G"]], - "bickers": null, - "bickered": null, - "bickerers": null, - "biconcave": null, - "biconnected": null, - "biconvex": null, - "bicuspid": [["S"]], - "bicuspids": null, - "bicycler": [["M"]], - "bicycler's": null, - "bicycle": [["R", "S", "D", "M", "Z", "G"]], - "bicycles": null, - "bicycled": null, - "bicycle's": null, - "bicyclers": null, - "bicycling": null, - "bicyclist": [["S", "M"]], - "bicyclists": null, - "bicyclist's": null, - "biddable": null, - "bidden": [["U"]], - "unbidden": null, - "bidder": [["M", "S"]], - "bidder's": null, - "bidders": null, - "Biddie": [["M"]], - "Biddie's": null, - "bidding": [["M", "S"]], - "bidding's": null, - "biddings": null, - "Biddle": [["M"]], - "Biddle's": null, - "Biddy": [["M"]], - "Biddy's": null, - "biddy": [["S", "M"]], - "biddies": null, - "biddy's": null, - "bider": [["M"]], - "bider's": null, - "bide": [["S"]], - "bides": null, - "bidet": [["S", "M"]], - "bidets": null, - "bidet's": null, - "Bidget": [["M"]], - "Bidget's": null, - "bid": [["G", "M", "R", "S"]], - "biding": null, - "bid's": null, - "bids": [["A"]], - "bidiagonal": null, - "bidirectional": [["Y"]], - "bidirectionally": null, - "rebids": null, - "biennial": [["S", "Y"]], - "biennials": null, - "biennially": null, - "biennium": [["S", "M"]], - "bienniums": null, - "biennium's": null, - "Bienville": [["M"]], - "Bienville's": null, - "Bierce": [["M"]], - "Bierce's": null, - "bier": [["M"]], - "bier's": null, - "bifocal": [["S"]], - "bifocals": null, - "bifurcate": [["S", "D", "X", "G", "N", "Y"]], - "bifurcates": null, - "bifurcated": null, - "bifurcations": null, - "bifurcating": null, - "bifurcation": [["M"]], - "bifurcately": null, - "bifurcation's": null, - "bigamist": [["S", "M"]], - "bigamists": null, - "bigamist's": null, - "bigamous": null, - "bigamy": [["S", "M"]], - "bigamies": null, - "bigamy's": null, - "Bigelow": [["M"]], - "Bigelow's": null, - "Bigfoot": null, - "bigged": null, - "bigger": null, - "biggest": null, - "biggie": [["S", "M"]], - "biggies": null, - "biggie's": null, - "bigging": null, - "biggish": null, - "bighead": [["M", "S"]], - "bighead's": null, - "bigheads": null, - "bigheartedness": [["S"]], - "bigheartednesses": null, - "bighearted": [["P"]], - "bighorn": [["M", "S"]], - "bighorn's": null, - "bighorns": null, - "bight": [["S", "M", "D", "G"]], - "bights": null, - "bight's": null, - "bighted": null, - "bighting": null, - "bigmouth": [["M"]], - "bigmouth's": null, - "bigmouths": null, - "bigness": [["S", "M"]], - "bignesses": null, - "bigness's": null, - "bigoted": [["Y"]], - "bigotedly": null, - "bigot": [["M", "D", "S", "G"]], - "bigot's": null, - "bigots": null, - "bigoting": null, - "bigotry": [["M", "S"]], - "bigotry's": null, - "bigotries": null, - "big": [["P", "Y", "S"]], - "bigly": null, - "bigs": null, - "bigwig": [["M", "S"]], - "bigwig's": null, - "bigwigs": null, - "biharmonic": null, - "bijection": [["M", "S"]], - "bijection's": null, - "bijections": null, - "bijective": [["Y"]], - "bijectively": null, - "bijou": [["M"]], - "bijou's": null, - "bijoux": null, - "bike": [["M", "Z", "G", "D", "R", "S"]], - "bike's": null, - "bikers": null, - "biking": null, - "biked": null, - "biker": [["M"]], - "bikes": null, - "biker's": null, - "bikini": [["S", "M", "D"]], - "bikinis": null, - "bikini's": null, - "bikinied": null, - "Biko": [["M"]], - "Biko's": null, - "bilabial": [["S"]], - "bilabials": null, - "bilateralness": [["M"]], - "bilateralness's": null, - "bilateral": [["P", "Y"]], - "bilaterally": null, - "bilayer": [["S"]], - "bilayers": null, - "Bilbao": [["M"]], - "Bilbao's": null, - "bilberry": [["M", "S"]], - "bilberry's": null, - "bilberries": null, - "Bilbo": [["M"]], - "Bilbo's": null, - "bile": [["S", "M"]], - "biles": null, - "bile's": null, - "bilge": [["G", "M", "D", "S"]], - "bilging": null, - "bilge's": null, - "bilged": null, - "bilges": null, - "biliary": null, - "Bili": [["M"]], - "Bili's": null, - "bilinear": null, - "bilingualism": [["S", "M"]], - "bilingualisms": null, - "bilingualism's": null, - "bilingual": [["S", "Y"]], - "bilinguals": null, - "bilingually": null, - "biliousness": [["S", "M"]], - "biliousnesses": null, - "biliousness's": null, - "bilious": [["P"]], - "bilker": [["M"]], - "bilker's": null, - "bilk": [["G", "Z", "S", "D", "R"]], - "bilking": null, - "bilkers": null, - "bilks": null, - "bilked": null, - "billboard": [["M", "D", "G", "S"]], - "billboard's": null, - "billboarded": null, - "billboarding": null, - "billboards": null, - "biller": [["M"]], - "biller's": null, - "billet": [["M", "D", "G", "S"]], - "billet's": null, - "billeted": null, - "billeting": null, - "billets": null, - "billfold": [["M", "S"]], - "billfold's": null, - "billfolds": null, - "billiard": [["S", "M"]], - "billiards": null, - "billiard's": null, - "Billie": [["M"]], - "Billie's": null, - "Billi": [["M"]], - "Billi's": null, - "billing": [["M"]], - "billing's": null, - "billingsgate": [["S", "M"]], - "billingsgates": null, - "billingsgate's": null, - "Billings": [["M"]], - "Billings's": null, - "billionaire": [["M", "S"]], - "billionaire's": null, - "billionaires": null, - "billion": [["S", "H", "M"]], - "billions": null, - "billionth": null, - "billion's": null, - "billionths": null, - "bill": [["J", "G", "Z", "S", "B", "M", "D", "R"]], - "billings": null, - "billers": null, - "bills": null, - "billable": null, - "bill's": null, - "billed": null, - "Bill": [["J", "M"]], - "Bill's": null, - "billow": [["D", "M", "G", "S"]], - "billowed": null, - "billow's": null, - "billowing": null, - "billows": null, - "billowy": [["R", "T"]], - "billowier": null, - "billowiest": null, - "billposters": null, - "Billye": [["M"]], - "Billye's": null, - "Billy": [["M"]], - "Billy's": null, - "billy": [["S", "M"]], - "billies": null, - "billy's": null, - "Bil": [["M", "Y"]], - "Bil's": null, - "bi": [["M"]], - "bi's": null, - "Bi": [["M"]], - "Bi's": null, - "bimbo": [["M", "S"]], - "bimbo's": null, - "bimbos": null, - "bimetallic": [["S"]], - "bimetallics": null, - "bimetallism": [["M", "S"]], - "bimetallism's": null, - "bimetallisms": null, - "Bimini": [["M"]], - "Bimini's": null, - "bimodal": null, - "bimolecular": [["Y"]], - "bimolecularly": null, - "bimonthly": [["S"]], - "bimonthlies": null, - "binary": [["S"]], - "binaries": null, - "binaural": [["Y"]], - "binaurally": null, - "binder": [["M"]], - "binder's": null, - "bindery": [["M", "S"]], - "bindery's": null, - "binderies": null, - "binding": [["M", "P", "Y"]], - "binding's": null, - "bindingness": [["M"]], - "bindingly": null, - "bindingness's": null, - "bind": [["J", "D", "R", "G", "Z", "S"]], - "bindings": null, - "binded": null, - "binders": null, - "binds": [["A", "U"]], - "bindle": [["M"]], - "bindle's": null, - "rebinds": null, - "unbinds": null, - "bindweed": [["M", "S"]], - "bindweed's": null, - "bindweeds": null, - "binge": [["M", "S"]], - "binge's": null, - "binges": null, - "bing": [["G", "N", "D", "M"]], - "binging": null, - "bingen": null, - "binged": null, - "bing's": null, - "Bingham": [["M"]], - "Bingham's": null, - "Binghamton": [["M"]], - "Binghamton's": null, - "Bing's": null, - "bingo": [["M", "S"]], - "bingo's": null, - "bingos": null, - "Bini": [["M"]], - "Bini's": null, - "Bink": [["M"]], - "Bink's": null, - "Binky": [["M"]], - "Binky's": null, - "binnacle": [["M", "S"]], - "binnacle's": null, - "binnacles": null, - "binned": null, - "Binnie": [["M"]], - "Binnie's": null, - "Binni": [["M"]], - "Binni's": null, - "binning": null, - "Binny": [["M"]], - "Binny's": null, - "binocular": [["S", "Y"]], - "binoculars": null, - "binocularly": null, - "binodal": null, - "binomial": [["S", "Y", "M"]], - "binomials": null, - "binomially": null, - "binomial's": null, - "bin": [["S", "M"]], - "bins": null, - "bin's": null, - "binuclear": null, - "biochemical": [["S", "Y"]], - "biochemicals": null, - "biochemically": null, - "biochemist": [["M", "S"]], - "biochemist's": null, - "biochemists": null, - "biochemistry": [["M", "S"]], - "biochemistry's": null, - "biochemistries": null, - "biodegradability": [["S"]], - "biodegradabilities": null, - "biodegradable": null, - "biodiversity": [["S"]], - "biodiversities": null, - "bioengineering": [["M"]], - "bioengineering's": null, - "bioethics": null, - "biofeedback": [["S", "M"]], - "biofeedbacks": null, - "biofeedback's": null, - "biographer": [["M"]], - "biographer's": null, - "biographic": null, - "biographical": [["Y"]], - "biographically": null, - "biograph": [["R", "Z"]], - "biographers": null, - "biography": [["M", "S"]], - "biography's": null, - "biographies": null, - "biog": [["S"]], - "biogs": null, - "Bioko": [["M"]], - "Bioko's": null, - "biol": null, - "biological": [["S", "Y"]], - "biologicals": null, - "biologically": null, - "biologic": [["S"]], - "biologics": null, - "biologist": [["S", "M"]], - "biologists": null, - "biologist's": null, - "biology": [["M", "S"]], - "biology's": null, - "biologies": null, - "biomass": [["S", "M"]], - "biomasses": null, - "biomass's": null, - "biomedical": null, - "biomedicine": [["M"]], - "biomedicine's": null, - "biometric": [["S"]], - "biometrics": [["M"]], - "biometrics's": null, - "biometry": [["M"]], - "biometry's": null, - "biomolecule": [["S"]], - "biomolecules": null, - "biomorph": null, - "bionically": null, - "bionic": [["S"]], - "bionics": [["M"]], - "bionics's": null, - "biophysical": [["Y"]], - "biophysically": null, - "biophysicist": [["S", "M"]], - "biophysicists": null, - "biophysicist's": null, - "biophysic": [["S"]], - "biophysics": [["M"]], - "biophysics's": null, - "biopic": [["S"]], - "biopics": null, - "biopsy": [["S", "D", "G", "M"]], - "biopsies": null, - "biopsied": null, - "biopsying": null, - "biopsy's": null, - "biorhythm": [["S"]], - "biorhythms": null, - "BIOS": null, - "bioscience": [["S"]], - "biosciences": null, - "biosphere": [["M", "S"]], - "biosphere's": null, - "biospheres": null, - "biostatistic": [["S"]], - "biostatistics": null, - "biosynthesized": null, - "biotechnological": null, - "biotechnologist": null, - "biotechnology": [["S", "M"]], - "biotechnologies": null, - "biotechnology's": null, - "biotic": null, - "biotin": [["S", "M"]], - "biotins": null, - "biotin's": null, - "bipartisan": null, - "bipartisanship": [["M", "S"]], - "bipartisanship's": null, - "bipartisanships": null, - "bipartite": [["Y", "N"]], - "bipartitely": null, - "bipartition": [["M"]], - "bipartition's": null, - "bipedal": null, - "biped": [["M", "S"]], - "biped's": null, - "bipeds": null, - "biplane": [["M", "S"]], - "biplane's": null, - "biplanes": null, - "bipolar": null, - "bipolarity": [["M", "S"]], - "bipolarity's": null, - "bipolarities": null, - "biracial": null, - "Birch": [["M"]], - "Birch's": null, - "birch": [["M", "R", "S", "D", "N", "G"]], - "birch's": null, - "bircher": null, - "birches": null, - "birched": null, - "birchen": null, - "birching": null, - "birdbath": [["M"]], - "birdbath's": null, - "birdbaths": null, - "birdbrain": [["S", "D", "M"]], - "birdbrains": null, - "birdbrained": null, - "birdbrain's": null, - "birdcage": [["S", "M"]], - "birdcages": null, - "birdcage's": null, - "birder": [["M"]], - "birder's": null, - "birdhouse": [["M", "S"]], - "birdhouse's": null, - "birdhouses": null, - "birdieing": null, - "Birdie": [["M"]], - "Birdie's": null, - "birdie": [["M", "S", "D"]], - "birdie's": null, - "birdies": null, - "birdied": null, - "birdlike": null, - "birdlime": [["M", "G", "D", "S"]], - "birdlime's": null, - "birdliming": null, - "birdlimed": null, - "birdlimes": null, - "Bird": [["M"]], - "Bird's": null, - "birdseed": [["M", "S"]], - "birdseed's": null, - "birdseeds": null, - "Birdseye": [["M"]], - "Birdseye's": null, - "bird": [["S", "M", "D", "R", "G", "Z"]], - "birds": null, - "bird's": null, - "birded": null, - "birding": null, - "birders": null, - "birdsong": null, - "birdtables": null, - "birdwatch": [["G", "Z", "R"]], - "birdwatching": null, - "birdwatchers": null, - "birdwatcher": null, - "birefringence": [["M"]], - "birefringence's": null, - "birefringent": null, - "biretta": [["S", "M"]], - "birettas": null, - "biretta's": null, - "Birgit": [["M"]], - "Birgit's": null, - "Birgitta": [["M"]], - "Birgitta's": null, - "Birkenstock": [["M"]], - "Birkenstock's": null, - "Birk": [["M"]], - "Birk's": null, - "Birmingham": [["M"]], - "Birmingham's": null, - "Biro": [["M"]], - "Biro's": null, - "Biron": [["M"]], - "Biron's": null, - "birthday": [["S", "M"]], - "birthdays": null, - "birthday's": null, - "birthmark": [["M", "S"]], - "birthmark's": null, - "birthmarks": null, - "birth": [["M", "D", "G"]], - "birth's": [["A"]], - "birthed": null, - "birthing": null, - "birthplace": [["S", "M"]], - "birthplaces": null, - "birthplace's": null, - "birthrate": [["M", "S"]], - "birthrate's": null, - "birthrates": null, - "birthright": [["M", "S"]], - "birthright's": null, - "birthrights": null, - "rebirth's": null, - "births": [["A"]], - "rebirths": null, - "birthstone": [["S", "M"]], - "birthstones": null, - "birthstone's": null, - "bis": null, - "Biscay": [["M"]], - "Biscay's": null, - "Biscayne": [["M"]], - "Biscayne's": null, - "biscuit": [["M", "S"]], - "biscuit's": null, - "biscuits": null, - "bisect": [["D", "S", "G"]], - "bisected": null, - "bisects": null, - "bisecting": null, - "bisection": [["M", "S"]], - "bisection's": null, - "bisections": null, - "bisector": [["M", "S"]], - "bisector's": null, - "bisectors": null, - "biserial": null, - "bisexuality": [["M", "S"]], - "bisexuality's": null, - "bisexualities": null, - "bisexual": [["Y", "M", "S"]], - "bisexually": null, - "bisexual's": null, - "bisexuals": null, - "Bishkek": null, - "bishop": [["D", "G", "S", "M"]], - "bishoped": null, - "bishoping": null, - "bishops": null, - "bishop's": null, - "Bishop": [["M"]], - "Bishop's": null, - "bishopric": [["S", "M"]], - "bishoprics": null, - "bishopric's": null, - "Bismarck": [["M"]], - "Bismarck's": null, - "Bismark": [["M"]], - "Bismark's": null, - "bismuth": [["M"]], - "bismuth's": null, - "bismuths": null, - "bison": [["M"]], - "bison's": null, - "bisque": [["S", "M"]], - "bisques": null, - "bisque's": null, - "Bissau": [["M"]], - "Bissau's": null, - "bistable": null, - "bistate": null, - "bistro": [["S", "M"]], - "bistros": null, - "bistro's": null, - "bisyllabic": null, - "bitblt": [["S"]], - "bitblts": null, - "bitchily": null, - "bitchiness": [["M", "S"]], - "bitchiness's": null, - "bitchinesses": null, - "bitch": [["M", "S", "D", "G"]], - "bitch's": null, - "bitches": null, - "bitched": null, - "bitching": null, - "bitchy": [["P", "T", "R"]], - "bitchiest": null, - "bitchier": null, - "biter": [["M"]], - "biter's": null, - "bite": [["S"]], - "bites": null, - "biting": [["Y"]], - "bitingly": null, - "bitmap": [["S", "M"]], - "bitmaps": null, - "bitmap's": null, - "bit": [["M", "R", "J", "S", "Z", "G"]], - "bit's": [["C"]], - "bitings": null, - "bits": [["C"]], - "biters": null, - "BITNET": [["M"]], - "BITNET's": null, - "debit's": null, - "debits": null, - "bitser": [["M"]], - "bitser's": null, - "bitted": null, - "bitten": null, - "bitterness": [["S", "M"]], - "bitternesses": null, - "bitterness's": null, - "bittern": [["S", "M"]], - "bitterns": null, - "bittern's": null, - "bitternut": [["M"]], - "bitternut's": null, - "bitter": [["P", "S", "R", "D", "Y", "T", "G"]], - "bitters": null, - "bitterer": null, - "bittered": null, - "bitterly": null, - "bitterest": null, - "bittering": null, - "bitterroot": [["M"]], - "bitterroot's": null, - "bittersweet": [["Y", "M", "S", "P"]], - "bittersweetly": null, - "bittersweet's": null, - "bittersweets": null, - "bittersweetness": null, - "bitting": null, - "bitty": [["P", "R", "T"]], - "bittiness": null, - "bittier": null, - "bittiest": null, - "bitumen": [["M", "S"]], - "bitumen's": null, - "bitumens": null, - "bituminous": null, - "bitwise": null, - "bivalent": [["S"]], - "bivalents": null, - "bivalve": [["M", "S", "D"]], - "bivalve's": null, - "bivalves": null, - "bivalved": null, - "bivariate": null, - "bivouacked": null, - "bivouacking": null, - "bivouac": [["M", "S"]], - "bivouac's": null, - "bivouacs": null, - "biweekly": [["S"]], - "biweeklies": null, - "biyearly": null, - "bizarreness": [["M"]], - "bizarreness's": null, - "bizarre": [["Y", "S", "P"]], - "bizarrely": null, - "bizarres": null, - "Bizet": [["M"]], - "Bizet's": null, - "biz": [["M"]], - "biz's": null, - "bizzes": null, - "Bjorn": [["M"]], - "Bjorn's": null, - "bk": null, - "b": [["K", "G", "D"]], - "prob": [["R", "B", "J"]], - "probing": null, - "probed": null, - "Bk": [["M"]], - "Bk's": null, - "blabbed": null, - "blabber": [["G", "M", "D", "S"]], - "blabbering": null, - "blabber's": null, - "blabbered": null, - "blabbers": null, - "blabbermouth": [["M"]], - "blabbermouth's": null, - "blabbermouths": null, - "blabbing": null, - "blab": [["S"]], - "blabs": null, - "blackamoor": [["S", "M"]], - "blackamoors": null, - "blackamoor's": null, - "blackball": [["S", "D", "M", "G"]], - "blackballs": null, - "blackballed": null, - "blackball's": null, - "blackballing": null, - "blackberry": [["G", "M", "S"]], - "blackberrying": null, - "blackberry's": null, - "blackberries": null, - "blackbirder": [["M"]], - "blackbirder's": null, - "blackbird": [["S", "G", "D", "R", "M"]], - "blackbirds": null, - "blackbirding": null, - "blackbirded": null, - "blackbird's": null, - "blackboard": [["S", "M"]], - "blackboards": null, - "blackboard's": null, - "blackbody": [["S"]], - "blackbodies": null, - "Blackburn": [["M"]], - "Blackburn's": null, - "blackcurrant": [["M"]], - "blackcurrant's": null, - "blackener": [["M"]], - "blackener's": null, - "blacken": [["G", "D", "R"]], - "blackening": null, - "blackened": null, - "Blackfeet": null, - "Blackfoot": [["M"]], - "Blackfoot's": null, - "blackguard": [["M", "D", "S", "G"]], - "blackguard's": null, - "blackguarded": null, - "blackguards": null, - "blackguarding": null, - "blackhead": [["S", "M"]], - "blackheads": null, - "blackhead's": null, - "blacking": [["M"]], - "blacking's": null, - "blackish": null, - "blackjack": [["S", "G", "M", "D"]], - "blackjacks": null, - "blackjacking": null, - "blackjack's": null, - "blackjacked": null, - "blackleg": [["M"]], - "blackleg's": null, - "blacklist": [["D", "R", "M", "S", "G"]], - "blacklisted": null, - "blacklister": null, - "blacklist's": null, - "blacklists": null, - "blacklisting": null, - "blackmail": [["D", "R", "M", "G", "Z", "S"]], - "blackmailed": null, - "blackmailer": [["M"]], - "blackmail's": null, - "blackmailing": null, - "blackmailers": null, - "blackmails": null, - "blackmailer's": null, - "Blackman": [["M"]], - "Blackman's": null, - "Blackmer": [["M"]], - "Blackmer's": null, - "blackness": [["M", "S"]], - "blackness's": null, - "blacknesses": null, - "blackout": [["S", "M"]], - "blackouts": null, - "blackout's": null, - "Blackpool": [["M"]], - "Blackpool's": null, - "Black's": null, - "black": [["S", "J", "T", "X", "P", "Y", "R", "D", "N", "G"]], - "blacks": null, - "blackings": null, - "blackest": null, - "blackens": null, - "blackly": null, - "blacker": null, - "blacked": null, - "blacksmith": [["M", "G"]], - "blacksmith's": null, - "blacksmithing": null, - "blacksmiths": null, - "blacksnake": [["M", "S"]], - "blacksnake's": null, - "blacksnakes": null, - "blackspot": null, - "Blackstone": [["M"]], - "Blackstone's": null, - "blackthorn": [["M", "S"]], - "blackthorn's": null, - "blackthorns": null, - "blacktop": [["M", "S"]], - "blacktop's": null, - "blacktops": null, - "blacktopped": null, - "blacktopping": null, - "Blackwell": [["M", "S"]], - "Blackwell's": null, - "Blackwells": null, - "bladder": [["M", "S"]], - "bladder's": null, - "bladders": null, - "bladdernut": [["M"]], - "bladdernut's": null, - "bladderwort": [["M"]], - "bladderwort's": null, - "blade": [["D", "S", "G", "M"]], - "bladed": null, - "blades": null, - "blading": null, - "blade's": null, - "blah": [["M", "D", "G"]], - "blah's": null, - "blahed": null, - "blahing": null, - "blahs": null, - "Blaine": [["M"]], - "Blaine's": null, - "Blaire": [["M"]], - "Blaire's": null, - "Blair": [["M"]], - "Blair's": null, - "Blakelee": [["M"]], - "Blakelee's": null, - "Blakeley": [["M"]], - "Blakeley's": null, - "Blake": [["M"]], - "Blake's": null, - "Blakey": [["M"]], - "Blakey's": null, - "blame": [["D", "S", "R", "B", "G", "M", "Z"]], - "blamed": null, - "blames": null, - "blamer": [["M"]], - "blamable": null, - "blaming": null, - "blame's": null, - "blamers": null, - "blamelessness": [["S", "M"]], - "blamelessnesses": null, - "blamelessness's": null, - "blameless": [["Y", "P"]], - "blamelessly": null, - "blamer's": null, - "blameworthiness": [["S", "M"]], - "blameworthinesses": null, - "blameworthiness's": null, - "blameworthy": [["P"]], - "Blanca": [["M"]], - "Blanca's": null, - "Blancha": [["M"]], - "Blancha's": null, - "Blanchard": [["M"]], - "Blanchard's": null, - "blanch": [["D", "R", "S", "G"]], - "blanched": null, - "blancher": [["M"]], - "blanches": null, - "blanching": null, - "Blanche": [["M"]], - "Blanche's": null, - "blancher's": null, - "Blanch": [["M"]], - "Blanch's": null, - "blanc": [["M"]], - "blanc's": null, - "blancmange": [["S", "M"]], - "blancmanges": null, - "blancmange's": null, - "blandishment": [["M", "S"]], - "blandishment's": null, - "blandishments": null, - "blandish": [["S", "D", "G", "L"]], - "blandishes": null, - "blandished": null, - "blandishing": null, - "blandness": [["M", "S"]], - "blandness's": null, - "blandnesses": null, - "bland": [["P", "Y", "R", "T"]], - "blandly": null, - "blander": null, - "blandest": null, - "Blane": [["M"]], - "Blane's": null, - "Blankenship": [["M"]], - "Blankenship's": null, - "blanketing": [["M"]], - "blanketing's": null, - "blanket": [["S", "D", "R", "M", "Z", "G"]], - "blankets": null, - "blanketed": null, - "blanketer": null, - "blanket's": null, - "blanketers": null, - "blankness": [["M", "S"]], - "blankness's": null, - "blanknesses": null, - "blank": [["S", "P", "G", "T", "Y", "R", "D"]], - "blanks": null, - "blanking": null, - "blankest": null, - "blankly": null, - "blanker": null, - "blanked": null, - "Blanton": [["M"]], - "Blanton's": null, - "Blantyre": [["M"]], - "Blantyre's": null, - "blare": [["D", "S", "G"]], - "blared": null, - "blares": null, - "blaring": null, - "blarney": [["D", "M", "G", "S"]], - "blarneyed": null, - "blarney's": null, - "blarneying": null, - "blarneys": null, - "blas�": null, - "blasphemer": [["M"]], - "blasphemer's": null, - "blaspheme": [["R", "S", "D", "Z", "G"]], - "blasphemes": null, - "blasphemed": null, - "blasphemers": null, - "blaspheming": null, - "blasphemousness": [["M"]], - "blasphemousness's": null, - "blasphemous": [["P", "Y"]], - "blasphemously": null, - "blasphemy": [["S", "M"]], - "blasphemies": null, - "blasphemy's": null, - "blaster": [["M"]], - "blaster's": null, - "blasting": [["M"]], - "blasting's": null, - "blastoff": [["S", "M"]], - "blastoffs": null, - "blastoff's": null, - "blast": [["S", "M", "R", "D", "G", "Z"]], - "blasts": null, - "blast's": null, - "blasted": null, - "blasters": null, - "blatancy": [["S", "M"]], - "blatancies": null, - "blatancy's": null, - "blatant": [["Y", "P"]], - "blatantly": null, - "blatantness": null, - "blather": [["D", "R", "G", "S"]], - "blathered": null, - "blatherer": null, - "blathering": null, - "blathers": null, - "blatting": null, - "Blatz": [["M"]], - "Blatz's": null, - "Blavatsky": [["M"]], - "Blavatsky's": null, - "Blayne": [["M"]], - "Blayne's": null, - "blaze": [["D", "S", "R", "G", "M", "Z"]], - "blazed": null, - "blazes": null, - "blazer": [["M"]], - "blazing": [["Y"]], - "blaze's": null, - "blazers": null, - "blazer's": null, - "blazingly": null, - "blazoner": [["M"]], - "blazoner's": null, - "blazon": [["S", "G", "D", "R"]], - "blazons": null, - "blazoning": null, - "blazoned": null, - "bl": [["D"]], - "bled": null, - "bldg": null, - "bleach": [["D", "R", "S", "Z", "G"]], - "bleached": [["U"]], - "bleacher": [["M"]], - "bleaches": null, - "bleachers": null, - "bleaching": null, - "unbleached": null, - "bleacher's": null, - "bleakness": [["M", "S"]], - "bleakness's": null, - "bleaknesses": null, - "bleak": [["T", "P", "Y", "R", "S"]], - "bleakest": null, - "bleakly": null, - "bleaker": null, - "bleaks": null, - "blear": [["G", "D", "S"]], - "blearing": null, - "bleared": null, - "blears": null, - "blearily": null, - "bleariness": [["S", "M"]], - "blearinesses": null, - "bleariness's": null, - "bleary": [["P", "R", "T"]], - "blearier": null, - "bleariest": null, - "bleater": [["M"]], - "bleater's": null, - "bleat": [["R", "D", "G", "S"]], - "bleated": null, - "bleating": null, - "bleats": null, - "bleeder": [["M"]], - "bleeder's": null, - "bleed": [["Z", "R", "J", "S", "G"]], - "bleeders": null, - "bleedings": null, - "bleeds": null, - "bleeding": null, - "Bleeker": [["M"]], - "Bleeker's": null, - "bleep": [["G", "M", "R", "D", "Z", "S"]], - "bleeping": null, - "bleep's": null, - "bleeper": null, - "bleeped": null, - "bleepers": null, - "bleeps": null, - "blemish": [["D", "S", "M", "G"]], - "blemished": [["U"]], - "blemishes": null, - "blemish's": null, - "blemishing": null, - "unblemished": null, - "blench": [["D", "S", "G"]], - "blenched": null, - "blenches": null, - "blenching": null, - "blender": [["M"]], - "blender's": null, - "blend": [["G", "Z", "R", "D", "S"]], - "blending": null, - "blenders": null, - "blended": null, - "blends": null, - "Blenheim": [["M"]], - "Blenheim's": null, - "blessedness": [["M", "S"]], - "blessedness's": null, - "blessednesses": null, - "blessed": [["P", "R", "Y", "T"]], - "blesseder": null, - "blessedly": null, - "blessedest": null, - "blessing": [["M"]], - "blessing's": null, - "bless": [["J", "G", "S", "D"]], - "blessings": null, - "blesses": null, - "Blevins": [["M"]], - "Blevins's": null, - "blew": null, - "Bligh": [["M"]], - "Bligh's": null, - "blighter": [["M"]], - "blighter's": null, - "blight": [["G", "S", "M", "D", "R"]], - "blighting": null, - "blights": null, - "blight's": null, - "blighted": null, - "blimey": [["S"]], - "blimeys": null, - "blimp": [["M", "S"]], - "blimp's": null, - "blimps": null, - "blinded": [["U"]], - "unblinded": null, - "blinder": [["M"]], - "blinder's": null, - "blindfold": [["S", "D", "G"]], - "blindfolds": null, - "blindfolded": null, - "blindfolding": null, - "blinding": [["M", "Y"]], - "blinding's": null, - "blindingly": null, - "blind": [["J", "G", "T", "Z", "P", "Y", "R", "D", "S"]], - "blindings": null, - "blindest": null, - "blinders": null, - "blindness": [["M", "S"]], - "blindly": null, - "blinds": null, - "blindness's": null, - "blindnesses": null, - "blindside": [["S", "D", "G"]], - "blindsides": null, - "blindsided": null, - "blindsiding": null, - "blinker": [["M", "D", "G"]], - "blinker's": null, - "blinkered": null, - "blinkering": null, - "blinking": [["U"]], - "unblinking": [["Y"]], - "blink": [["R", "D", "G", "S", "Z"]], - "blinked": null, - "blinks": [["M"]], - "blinkers": null, - "blinks's": null, - "Blinnie": [["M"]], - "Blinnie's": null, - "Blinni": [["M"]], - "Blinni's": null, - "Blinny": [["M"]], - "Blinny's": null, - "blintze": [["M"]], - "blintze's": null, - "blintz": [["S", "M"]], - "blintzes": null, - "blintz's": null, - "blip": [["M", "S"]], - "blip's": null, - "blips": null, - "blipped": null, - "blipping": null, - "Blisse": [["M"]], - "Blisse's": null, - "blissfulness": [["M", "S"]], - "blissfulness's": null, - "blissfulnesses": null, - "blissful": [["P", "Y"]], - "blissfully": null, - "Bliss": [["M"]], - "Bliss's": null, - "bliss": [["S", "D", "M", "G"]], - "blisses": null, - "blissed": null, - "bliss's": null, - "blissing": null, - "blistering": [["Y"]], - "blisteringly": null, - "blister": [["S", "M", "D", "G"]], - "blisters": null, - "blister's": null, - "blistered": null, - "blistery": null, - "Blithe": [["M"]], - "Blithe's": null, - "blitheness": [["S", "M"]], - "blithenesses": null, - "blitheness's": null, - "blither": [["G"]], - "blithering": null, - "blithesome": null, - "blithe": [["T", "Y", "P", "R"]], - "blithest": null, - "blithely": null, - "blitz": [["G", "S", "D", "M"]], - "blitzing": null, - "blitzes": null, - "blitzed": null, - "blitz's": null, - "blitzkrieg": [["S", "M"]], - "blitzkriegs": null, - "blitzkrieg's": null, - "blizzard": [["M", "S"]], - "blizzard's": null, - "blizzards": null, - "bloater": [["M"]], - "bloater's": null, - "bloat": [["S", "R", "D", "G", "Z"]], - "bloats": null, - "bloated": null, - "bloating": null, - "bloaters": null, - "blobbed": null, - "blobbing": null, - "blob": [["M", "S"]], - "blob's": null, - "blobs": null, - "Bloch": [["M"]], - "Bloch's": null, - "blockader": [["M"]], - "blockader's": null, - "blockade": [["Z", "M", "G", "R", "S", "D"]], - "blockaders": null, - "blockade's": null, - "blockading": null, - "blockades": null, - "blockaded": null, - "blockage": [["M", "S"]], - "blockage's": null, - "blockages": null, - "blockbuster": [["S", "M"]], - "blockbusters": null, - "blockbuster's": null, - "blockbusting": [["M", "S"]], - "blockbusting's": null, - "blockbustings": null, - "blocker": [["M", "S"]], - "blocker's": null, - "blockers": null, - "blockhead": [["M", "S"]], - "blockhead's": null, - "blockheads": null, - "blockhouse": [["S", "M"]], - "blockhouses": null, - "blockhouse's": null, - "block's": null, - "block": [["U", "S", "D", "G"]], - "unblock": null, - "unblocks": null, - "unblocked": null, - "unblocking": null, - "blocks": null, - "blocked": null, - "blocking": null, - "blocky": [["R"]], - "blockier": null, - "bloc": [["M", "S"]], - "bloc's": null, - "blocs": null, - "Bloemfontein": [["M"]], - "Bloemfontein's": null, - "bloke": [["S", "M"]], - "blokes": null, - "bloke's": null, - "Blomberg": [["M"]], - "Blomberg's": null, - "Blomquist": [["M"]], - "Blomquist's": null, - "Blondelle": [["M"]], - "Blondelle's": null, - "Blondell": [["M"]], - "Blondell's": null, - "blonde's": null, - "Blondie": [["M"]], - "Blondie's": null, - "blondish": null, - "blondness": [["M", "S"]], - "blondness's": null, - "blondnesses": null, - "blond": [["S", "P", "M", "R", "T"]], - "blonds": null, - "blond's": null, - "blonder": null, - "blondest": null, - "Blondy": [["M"]], - "Blondy's": null, - "bloodbath": null, - "bloodbaths": null, - "bloodcurdling": null, - "bloodhound": [["S", "M"]], - "bloodhounds": null, - "bloodhound's": null, - "bloodied": [["U"]], - "unbloodied": null, - "bloodiness": [["M", "S"]], - "bloodiness's": null, - "bloodinesses": null, - "bloodlessness": [["S", "M"]], - "bloodlessnesses": null, - "bloodlessness's": null, - "bloodless": [["P", "Y"]], - "bloodlessly": null, - "bloodletting": [["M", "S"]], - "bloodletting's": null, - "bloodlettings": null, - "bloodline": [["S", "M"]], - "bloodlines": null, - "bloodline's": null, - "bloodmobile": [["M", "S"]], - "bloodmobile's": null, - "bloodmobiles": null, - "bloodroot": [["M"]], - "bloodroot's": null, - "bloodshed": [["S", "M"]], - "bloodsheds": null, - "bloodshed's": null, - "bloodshot": null, - "blood": [["S", "M", "D", "G"]], - "bloods": null, - "blood's": null, - "blooded": null, - "blooding": null, - "bloodsport": [["S"]], - "bloodsports": null, - "bloodstain": [["M", "D", "S"]], - "bloodstain's": null, - "bloodstained": null, - "bloodstains": null, - "bloodstock": [["S", "M"]], - "bloodstocks": null, - "bloodstock's": null, - "bloodstone": [["M"]], - "bloodstone's": null, - "bloodstream": [["S", "M"]], - "bloodstreams": null, - "bloodstream's": null, - "bloodsucker": [["S", "M"]], - "bloodsuckers": null, - "bloodsucker's": null, - "bloodsucking": [["S"]], - "bloodsuckings": null, - "bloodthirstily": null, - "bloodthirstiness": [["M", "S"]], - "bloodthirstiness's": null, - "bloodthirstinesses": null, - "bloodthirsty": [["R", "T", "P"]], - "bloodthirstier": null, - "bloodthirstiest": null, - "bloodworm": [["M"]], - "bloodworm's": null, - "bloodymindedness": null, - "bloody": [["T", "P", "G", "D", "R", "S"]], - "bloodiest": null, - "bloodying": null, - "bloodier": null, - "bloodies": null, - "bloomer": [["M"]], - "bloomer's": null, - "Bloomer": [["M"]], - "Bloomer's": null, - "Bloomfield": [["M"]], - "Bloomfield's": null, - "Bloomington": [["M"]], - "Bloomington's": null, - "Bloom": [["M", "R"]], - "Bloom's": null, - "bloom": [["S", "M", "R", "D", "G", "Z"]], - "blooms": null, - "bloom's": null, - "bloomed": null, - "blooming": null, - "bloomers": null, - "blooper": [["M"]], - "blooper's": null, - "bloop": [["G", "S", "Z", "R", "D"]], - "blooping": null, - "bloops": null, - "bloopers": null, - "blooped": null, - "blossom": [["D", "M", "G", "S"]], - "blossomed": null, - "blossom's": null, - "blossoming": null, - "blossoms": null, - "blossomy": null, - "blotch": [["G", "M", "D", "S"]], - "blotching": null, - "blotch's": null, - "blotched": null, - "blotches": null, - "blotchy": [["R", "T"]], - "blotchier": null, - "blotchiest": null, - "blot": [["M", "S"]], - "blot's": null, - "blots": null, - "blotted": null, - "blotter": [["M", "S"]], - "blotter's": null, - "blotters": null, - "blotting": null, - "blotto": null, - "blouse": [["G", "M", "S", "D"]], - "blousing": null, - "blouse's": null, - "blouses": null, - "bloused": null, - "blower": [["M"]], - "blower's": null, - "blowfish": [["M"]], - "blowfish's": null, - "blowfly": [["M", "S"]], - "blowfly's": null, - "blowflies": null, - "blowgun": [["S", "M"]], - "blowguns": null, - "blowgun's": null, - "blow": [["G", "Z", "R", "S"]], - "blowing": [["M"]], - "blowers": null, - "blows": null, - "blowing's": null, - "blown": [["U"]], - "unblown": null, - "blowout": [["M", "S"]], - "blowout's": null, - "blowouts": null, - "blowpipe": [["S", "M"]], - "blowpipes": null, - "blowpipe's": null, - "blowtorch": [["S", "M"]], - "blowtorches": null, - "blowtorch's": null, - "blowup": [["M", "S"]], - "blowup's": null, - "blowups": null, - "blowy": [["R", "S", "T"]], - "blowier": null, - "blowies": null, - "blowiest": null, - "blowzy": [["R", "T"]], - "blowzier": null, - "blowziest": null, - "BLT": null, - "blubber": [["G", "S", "D", "R"]], - "blubbering": null, - "blubbers": null, - "blubbered": null, - "blubberer": null, - "blubbery": null, - "Blucher": [["M"]], - "Blucher's": null, - "bludgeon": [["G", "S", "M", "D"]], - "bludgeoning": null, - "bludgeons": null, - "bludgeon's": null, - "bludgeoned": null, - "blueback": null, - "Bluebeard": [["M"]], - "Bluebeard's": null, - "bluebell": [["M", "S"]], - "bluebell's": null, - "bluebells": null, - "blueberry": [["S", "M"]], - "blueberries": null, - "blueberry's": null, - "bluebill": [["M"]], - "bluebill's": null, - "bluebird": [["M", "S"]], - "bluebird's": null, - "bluebirds": null, - "bluebonnet": [["S", "M"]], - "bluebonnets": null, - "bluebonnet's": null, - "bluebook": [["M"]], - "bluebook's": null, - "bluebottle": [["M", "S"]], - "bluebottle's": null, - "bluebottles": null, - "bluebush": null, - "bluefish": [["S", "M"]], - "bluefishes": null, - "bluefish's": null, - "bluegill": [["S", "M"]], - "bluegills": null, - "bluegill's": null, - "bluegrass": [["M", "S"]], - "bluegrass's": null, - "bluegrasses": null, - "blueing's": null, - "blueish": null, - "bluejacket": [["M", "S"]], - "bluejacket's": null, - "bluejackets": null, - "bluejeans": null, - "blue": [["J", "M", "Y", "T", "G", "D", "R", "S", "P"]], - "bluings": null, - "blue's": null, - "bluely": null, - "bluest": [["M"]], - "bluing": [["M"]], - "blued": null, - "bluer": [["M"]], - "blues": null, - "blueness": [["M", "S"]], - "blueness's": null, - "bluenesses": null, - "bluenose": [["M", "S"]], - "bluenose's": null, - "bluenoses": null, - "bluepoint": [["S", "M"]], - "bluepoints": null, - "bluepoint's": null, - "blueprint": [["G", "D", "M", "S"]], - "blueprinting": null, - "blueprinted": null, - "blueprint's": null, - "blueprints": null, - "bluer's": null, - "bluest's": null, - "bluestocking": [["S", "M"]], - "bluestockings": null, - "bluestocking's": null, - "bluesy": [["T", "R"]], - "bluesiest": null, - "bluesier": null, - "bluet": [["M", "S"]], - "bluet's": null, - "bluets": null, - "bluffer": [["M"]], - "bluffer's": null, - "bluffness": [["M", "S"]], - "bluffness's": null, - "bluffnesses": null, - "bluff": [["S", "P", "G", "T", "Z", "Y", "R", "D"]], - "bluffs": null, - "bluffing": null, - "bluffest": null, - "bluffers": null, - "bluffly": null, - "bluffed": null, - "bluing's": null, - "bluishness": [["M"]], - "bluishness's": null, - "bluish": [["P"]], - "Blumenthal": [["M"]], - "Blumenthal's": null, - "Blum": [["M"]], - "Blum's": null, - "blunderbuss": [["M", "S"]], - "blunderbuss's": null, - "blunderbusses": null, - "blunderer": [["M"]], - "blunderer's": null, - "blunder": [["G", "S", "M", "D", "R", "J", "Z"]], - "blundering": [["Y"]], - "blunders": null, - "blunder's": null, - "blundered": null, - "blunderings": null, - "blunderers": null, - "blunderingly": null, - "bluntness": [["M", "S"]], - "bluntness's": null, - "bluntnesses": null, - "blunt": [["P", "S", "G", "T", "Y", "R", "D"]], - "blunts": null, - "blunting": null, - "bluntest": null, - "bluntly": null, - "blunter": null, - "blunted": null, - "blurb": [["G", "S", "D", "M"]], - "blurbing": null, - "blurbs": null, - "blurbed": null, - "blurb's": null, - "blur": [["M", "S"]], - "blur's": null, - "blurs": null, - "blurred": [["Y"]], - "blurredly": null, - "blurriness": [["S"]], - "blurrinesses": null, - "blurring": [["Y"]], - "blurringly": null, - "blurry": [["R", "P", "T"]], - "blurrier": null, - "blurriest": null, - "blurt": [["G", "S", "R", "D"]], - "blurting": null, - "blurts": null, - "blurter": null, - "blurted": null, - "blusher": [["M"]], - "blusher's": null, - "blushing": [["U", "Y"]], - "unblushing": null, - "unblushingly": null, - "blushingly": null, - "blush": [["R", "S", "D", "G", "Z"]], - "blushes": null, - "blushed": null, - "blushers": null, - "blusterer": [["M"]], - "blusterer's": null, - "blustering": [["Y"]], - "blusteringly": null, - "blusterous": null, - "bluster": [["S", "D", "R", "Z", "G"]], - "blusters": null, - "blustered": null, - "blusterers": null, - "blustery": null, - "blvd": null, - "Blvd": null, - "Blythe": [["M"]], - "Blythe's": null, - "BM": null, - "BMW": [["M"]], - "BMW's": null, - "BO": null, - "boarded": null, - "boarder": [["S", "M"]], - "boarders": null, - "boarder's": null, - "boardgames": null, - "boardinghouse": [["S", "M"]], - "boardinghouses": null, - "boardinghouse's": null, - "boarding": [["S", "M"]], - "boardings": null, - "boarding's": null, - "board": [["I", "S"]], - "inboard": null, - "inboards": null, - "boards": null, - "boardroom": [["M", "S"]], - "boardroom's": null, - "boardrooms": null, - "board's": null, - "boardwalk": [["S", "M"]], - "boardwalks": null, - "boardwalk's": null, - "boar": [["M", "S"]], - "boar's": null, - "boars": null, - "boa": [["S", "M"]], - "boas": null, - "boa's": null, - "boaster": [["M"]], - "boaster's": null, - "boastfulness": [["M", "S"]], - "boastfulness's": null, - "boastfulnesses": null, - "boastful": [["Y", "P"]], - "boastfully": null, - "boast": [["S", "J", "R", "D", "G", "Z"]], - "boasts": null, - "boastings": null, - "boasted": null, - "boasting": null, - "boasters": null, - "boatclubs": null, - "boater": [["M"]], - "boater's": null, - "boathouse": [["S", "M"]], - "boathouses": null, - "boathouse's": null, - "boating": [["M"]], - "boating's": null, - "boatload": [["S", "M"]], - "boatloads": null, - "boatload's": null, - "boatman": [["M"]], - "boatman's": null, - "boat": [["M", "D", "R", "G", "Z", "J", "S"]], - "boat's": null, - "boated": null, - "boaters": null, - "boatings": null, - "boats": null, - "boatmen": null, - "boatswain": [["S", "M"]], - "boatswains": null, - "boatswain's": null, - "boatyard": [["S", "M"]], - "boatyards": null, - "boatyard's": null, - "bobbed": null, - "Bobbee": [["M"]], - "Bobbee's": null, - "Bobbe": [["M"]], - "Bobbe's": null, - "Bobbette": [["M"]], - "Bobbette's": null, - "Bobbie": [["M"]], - "Bobbie's": null, - "Bobbi": [["M"]], - "Bobbi's": null, - "bobbing": [["M"]], - "bobbing's": null, - "bobbin": [["M", "S"]], - "bobbin's": null, - "bobbins": null, - "Bobbitt": [["M"]], - "Bobbitt's": null, - "bobble": [["S", "D", "G", "M"]], - "bobbles": null, - "bobbled": null, - "bobbling": null, - "bobble's": null, - "Bobbsey": [["M"]], - "Bobbsey's": null, - "Bobbye": [["M"]], - "Bobbye's": null, - "Bobby": [["M"]], - "Bobby's": null, - "bobby": [["S", "M"]], - "bobbies": null, - "bobby's": null, - "bobbysoxer's": null, - "bobcat": [["M", "S"]], - "bobcat's": null, - "bobcats": null, - "Bobette": [["M"]], - "Bobette's": null, - "Bobina": [["M"]], - "Bobina's": null, - "Bobine": [["M"]], - "Bobine's": null, - "Bobinette": [["M"]], - "Bobinette's": null, - "Bob": [["M"]], - "Bob's": null, - "bobolink": [["S", "M"]], - "bobolinks": null, - "bobolink's": null, - "Bobrow": [["M"]], - "Bobrow's": null, - "bobsledded": null, - "bobsledder": [["M", "S"]], - "bobsledder's": null, - "bobsledders": null, - "bobsledding": [["M"]], - "bobsledding's": null, - "bobsled": [["M", "S"]], - "bobsled's": null, - "bobsleds": null, - "bobsleigh": [["M"]], - "bobsleigh's": null, - "bobsleighs": null, - "bobs": [["M"]], - "bobs's": null, - "bob": [["S", "M"]], - "bob's": null, - "bobtail": [["S", "G", "D", "M"]], - "bobtails": null, - "bobtailing": null, - "bobtailed": null, - "bobtail's": null, - "bobwhite": [["S", "M"]], - "bobwhites": null, - "bobwhite's": null, - "Boca": [["M"]], - "Boca's": null, - "Boccaccio": [["M"]], - "Boccaccio's": null, - "boccie": [["S", "M"]], - "boccies": null, - "boccie's": null, - "bock": [["G", "D", "S"]], - "bocking": null, - "bocked": null, - "bocks": null, - "bockwurst": null, - "bodega": [["M", "S"]], - "bodega's": null, - "bodegas": null, - "Bodenheim": [["M"]], - "Bodenheim's": null, - "bode": [["S"]], - "bodes": null, - "Bodhidharma": [["M"]], - "Bodhidharma's": null, - "bodhisattva": null, - "Bodhisattva": [["M"]], - "Bodhisattva's": null, - "bodice": [["S", "M"]], - "bodices": null, - "bodice's": null, - "bodied": [["M"]], - "bodied's": null, - "bodiless": null, - "bodily": null, - "boding": [["M"]], - "boding's": null, - "bodkin": [["S", "M"]], - "bodkins": null, - "bodkin's": null, - "bod": [["S", "G", "M", "D"]], - "bods": null, - "bod's": null, - "boded": null, - "bodybuilder": [["S", "M"]], - "bodybuilders": null, - "bodybuilder's": null, - "bodybuilding": [["S"]], - "bodybuildings": null, - "body": [["D", "S", "M", "G"]], - "bodies": null, - "body's": null, - "bodying": [["M"]], - "bodyguard": [["M", "S"]], - "bodyguard's": null, - "bodyguards": null, - "bodying's": null, - "bodysuit": [["S"]], - "bodysuits": null, - "bodyweight": null, - "bodywork": [["S", "M"]], - "bodyworks": null, - "bodywork's": null, - "Boeing": [["M"]], - "Boeing's": null, - "Boeotia": [["M"]], - "Boeotia's": null, - "Boeotian": null, - "Boer": [["M"]], - "Boer's": null, - "Bogartian": [["M"]], - "Bogartian's": null, - "Bogart": [["M"]], - "Bogart's": null, - "Bogey": [["M"]], - "Bogey's": null, - "bogeyman": [["M"]], - "bogeyman's": null, - "bogeymen": null, - "bogey": [["S", "G", "M", "D"]], - "bogeys": null, - "bogeying": null, - "bogey's": null, - "bogeyed": null, - "bogged": null, - "bogging": null, - "boggle": [["S", "D", "G"]], - "boggles": null, - "boggled": null, - "boggling": [["Y"]], - "bogglingly": null, - "boggy": [["R", "T"]], - "boggier": null, - "boggiest": null, - "bogie's": null, - "bog": [["M", "S"]], - "bog's": null, - "bogs": null, - "Bogot�": [["M"]], - "Bogot�'s": null, - "bogus": null, - "bogyman": null, - "bogymen": null, - "bogy's": null, - "Boheme": [["M"]], - "Boheme's": null, - "bohemianism": [["S"]], - "bohemianisms": null, - "bohemian": [["S"]], - "bohemians": null, - "Bohemian": [["S", "M"]], - "Bohemians": null, - "Bohemian's": null, - "Bohemia": [["S", "M"]], - "Bohemias": null, - "Bohemia's": null, - "Bohr": [["M"]], - "Bohr's": null, - "Boigie": [["M"]], - "Boigie's": null, - "boiled": [["A", "U"]], - "reboiled": null, - "unboiled": null, - "boiler": [["M"]], - "boiler's": null, - "boilermaker": [["M", "S"]], - "boilermaker's": null, - "boilermakers": null, - "boilerplate": [["S", "M"]], - "boilerplates": null, - "boilerplate's": null, - "boil": [["J", "S", "G", "Z", "D", "R"]], - "boilings": null, - "boils": [["A"]], - "boiling": null, - "boilers": null, - "reboils": null, - "Boise": [["M"]], - "Boise's": null, - "Bois": [["M"]], - "Bois's": null, - "boisterousness": [["M", "S"]], - "boisterousness's": null, - "boisterousnesses": null, - "boisterous": [["Y", "P"]], - "boisterously": null, - "bola": [["S", "M"]], - "bolas": null, - "bola's": null, - "boldface": [["S", "D", "M", "G"]], - "boldfaces": null, - "boldfaced": null, - "boldface's": null, - "boldfacing": null, - "boldness": [["M", "S"]], - "boldness's": null, - "boldnesses": null, - "bold": [["Y", "R", "P", "S", "T"]], - "boldly": null, - "bolder": null, - "bolds": null, - "boldest": null, - "bole": [["M", "S"]], - "bole's": null, - "boles": null, - "bolero": [["M", "S"]], - "bolero's": null, - "boleros": null, - "Boleyn": [["M"]], - "Boleyn's": null, - "bolivares": null, - "Bolivar": [["M"]], - "Bolivar's": null, - "bolivar": [["M", "S"]], - "bolivar's": null, - "bolivars": null, - "Bolivia": [["M"]], - "Bolivia's": null, - "Bolivian": [["S"]], - "Bolivians": null, - "bollard": [["S", "M"]], - "bollards": null, - "bollard's": null, - "bollix": [["G", "S", "D"]], - "bollixing": null, - "bollixes": null, - "bollixed": null, - "boll": [["M", "D", "S", "G"]], - "boll's": null, - "bolled": null, - "bolls": null, - "bolling": null, - "Bologna": [["M"]], - "Bologna's": null, - "bologna": [["M", "S"]], - "bologna's": null, - "bolognas": null, - "bolometer": [["M", "S"]], - "bolometer's": null, - "bolometers": null, - "bolo": [["M", "S"]], - "bolo's": null, - "bolos": null, - "boloney's": null, - "Bolshevik": [["M", "S"]], - "Bolshevik's": null, - "Bolsheviks": null, - "Bolshevism": [["M", "S"]], - "Bolshevism's": null, - "Bolshevisms": null, - "Bolshevistic": [["M"]], - "Bolshevistic's": null, - "Bolshevist": [["M", "S"]], - "Bolshevist's": null, - "Bolshevists": null, - "Bolshoi": [["M"]], - "Bolshoi's": null, - "bolsterer": [["M"]], - "bolsterer's": null, - "bolster": [["S", "R", "D", "G"]], - "bolsters": null, - "bolstered": null, - "bolstering": null, - "bolted": [["U"]], - "unbolted": null, - "bolter": [["M"]], - "bolter's": null, - "bolt": [["M", "D", "R", "G", "S"]], - "bolt's": null, - "bolting": null, - "bolts": [["U"]], - "Bolton": [["M"]], - "Bolton's": null, - "unbolts": null, - "Boltzmann": [["M"]], - "Boltzmann's": null, - "bolus": [["S", "M"]], - "boluses": null, - "bolus's": null, - "bombardier": [["M", "S"]], - "bombardier's": null, - "bombardiers": null, - "bombard": [["L", "D", "S", "G"]], - "bombardment": [["S", "M"]], - "bombarded": null, - "bombards": null, - "bombarding": null, - "bombardments": null, - "bombardment's": null, - "bombastic": null, - "bombastically": null, - "bombast": [["R", "M", "S"]], - "bombaster": null, - "bombast's": null, - "bombasts": null, - "Bombay": [["M"]], - "Bombay's": null, - "bomber": [["M"]], - "bomber's": null, - "bombproof": null, - "bomb": [["S", "G", "Z", "D", "R", "J"]], - "bombs": null, - "bombing": null, - "bombers": null, - "bombed": null, - "bombings": null, - "bombshell": [["S", "M"]], - "bombshells": null, - "bombshell's": null, - "Bo": [["M", "R", "Z"]], - "Bo's": null, - "Boers": null, - "bona": null, - "bonanza": [["M", "S"]], - "bonanza's": null, - "bonanzas": null, - "Bonaparte": [["M"]], - "Bonaparte's": null, - "Bonaventure": [["M"]], - "Bonaventure's": null, - "bonbon": [["S", "M"]], - "bonbons": null, - "bonbon's": null, - "bondage": [["S", "M"]], - "bondages": null, - "bondage's": null, - "bonder": [["M"]], - "bonder's": null, - "bondholder": [["S", "M"]], - "bondholders": null, - "bondholder's": null, - "Bondie": [["M"]], - "Bondie's": null, - "bond": [["J", "M", "D", "R", "S", "G", "Z"]], - "bondings": null, - "bond's": null, - "bonded": null, - "bonds": [["A"]], - "bonding": null, - "bonders": null, - "Bond": [["M"]], - "Bond's": null, - "bondman": [["M"]], - "bondman's": null, - "bondmen": null, - "Bondon": [["M"]], - "Bondon's": null, - "rebonds": null, - "bondsman": [["M"]], - "bondsman's": null, - "bondsmen": null, - "bondwoman": [["M"]], - "bondwoman's": null, - "bondwomen": null, - "Bondy": [["M"]], - "Bondy's": null, - "boned": [["U"]], - "unboned": null, - "bonehead": [["S", "D", "M"]], - "boneheads": null, - "boneheaded": null, - "bonehead's": null, - "boneless": null, - "Bone": [["M"]], - "Bone's": null, - "bone": [["M", "Z", "D", "R", "S", "G"]], - "bone's": null, - "boners": null, - "boner": [["M"]], - "bones": null, - "boning": null, - "boner's": null, - "bonfire": [["M", "S"]], - "bonfire's": null, - "bonfires": null, - "bong": [["G", "D", "M", "S"]], - "bonging": null, - "bonged": null, - "bong's": null, - "bongs": null, - "bongo": [["M", "S"]], - "bongo's": null, - "bongos": null, - "Bonham": [["M"]], - "Bonham's": null, - "bonhomie": [["M", "S"]], - "bonhomie's": null, - "bonhomies": null, - "Boniface": [["M"]], - "Boniface's": null, - "boniness": [["M", "S"]], - "boniness's": null, - "boninesses": null, - "Bonita": [["M"]], - "Bonita's": null, - "bonito": [["M", "S"]], - "bonito's": null, - "bonitos": null, - "bonjour": null, - "bonkers": null, - "Bonnee": [["M"]], - "Bonnee's": null, - "Bonner": [["M"]], - "Bonner's": null, - "bonneted": [["U"]], - "unbonneted": null, - "bonnet": [["S", "G", "M", "D"]], - "bonnets": null, - "bonneting": null, - "bonnet's": null, - "Bonneville": [["M"]], - "Bonneville's": null, - "Bonnibelle": [["M"]], - "Bonnibelle's": null, - "bonnie": null, - "Bonnie": [["M"]], - "Bonnie's": null, - "Bonni": [["M"]], - "Bonni's": null, - "Bonn": [["R", "M"]], - "Bonn's": null, - "Bonny": [["M"]], - "Bonny's": null, - "bonny": [["R", "T"]], - "bonnier": null, - "bonniest": null, - "bonsai": [["S", "M"]], - "bonsais": null, - "bonsai's": null, - "Bontempo": [["M"]], - "Bontempo's": null, - "bonus": [["S", "M"]], - "bonuses": null, - "bonus's": null, - "bony": [["R", "T", "P"]], - "bonier": null, - "boniest": null, - "bonzes": null, - "boob": [["D", "M", "S", "G"]], - "boobed": null, - "boob's": null, - "boobs": null, - "boobing": null, - "booby": [["S", "M"]], - "boobies": null, - "booby's": null, - "boodle": [["G", "M", "S", "D"]], - "boodling": null, - "boodle's": null, - "boodles": null, - "boodled": null, - "boogeyman's": null, - "boogieing": null, - "boogie": [["S", "D"]], - "boogies": null, - "boogied": null, - "boo": [["G", "S", "D", "H"]], - "booing": null, - "boos": null, - "booed": null, - "booth": [["M"]], - "boohoo": [["G", "D", "S"]], - "boohooing": null, - "boohooed": null, - "boohoos": null, - "bookbinder": [["M"]], - "bookbinder's": null, - "bookbindery": [["S", "M"]], - "bookbinderies": null, - "bookbindery's": null, - "bookbinding": [["M"]], - "bookbinding's": null, - "bookbind": [["J", "R", "G", "Z"]], - "bookbindings": null, - "bookbinders": null, - "bookcase": [["M", "S"]], - "bookcase's": null, - "bookcases": null, - "booked": [["U"]], - "unbooked": null, - "bookend": [["S", "G", "D"]], - "bookends": null, - "bookending": null, - "bookended": null, - "Booker": [["M"]], - "Booker's": null, - "book": [["G", "Z", "D", "R", "M", "J", "S", "B"]], - "booking": [["M"]], - "bookers": null, - "booker": null, - "book's": null, - "bookings": null, - "books": null, - "bookable": null, - "bookie": [["S", "M"]], - "bookies": null, - "bookie's": null, - "booking's": null, - "bookishness": [["M"]], - "bookishness's": null, - "bookish": [["P", "Y"]], - "bookishly": null, - "bookkeeper": [["M"]], - "bookkeeper's": null, - "bookkeep": [["G", "Z", "J", "R"]], - "bookkeeping": [["M"]], - "bookkeepers": null, - "bookkeepings": null, - "bookkeeping's": null, - "booklet": [["M", "S"]], - "booklet's": null, - "booklets": null, - "bookmaker": [["M", "S"]], - "bookmaker's": null, - "bookmakers": null, - "bookmaking": [["M", "S"]], - "bookmaking's": null, - "bookmakings": null, - "bookmark": [["M", "D", "G", "S"]], - "bookmark's": null, - "bookmarked": null, - "bookmarking": null, - "bookmarks": null, - "bookmobile": [["M", "S"]], - "bookmobile's": null, - "bookmobiles": null, - "bookplate": [["S", "M"]], - "bookplates": null, - "bookplate's": null, - "bookseller": [["S", "M"]], - "booksellers": null, - "bookseller's": null, - "bookshelf": [["M"]], - "bookshelf's": null, - "bookshelves": null, - "bookshop": [["M", "S"]], - "bookshop's": null, - "bookshops": null, - "bookstall": [["M", "S"]], - "bookstall's": null, - "bookstalls": null, - "bookstore": [["S", "M"]], - "bookstores": null, - "bookstore's": null, - "bookwork": [["M"]], - "bookwork's": null, - "bookworm": [["M", "S"]], - "bookworm's": null, - "bookworms": null, - "Boolean": null, - "boolean": [["S"]], - "booleans": null, - "Boole": [["M"]], - "Boole's": null, - "boom": [["D", "R", "G", "J", "S"]], - "boomed": null, - "boomer": [["M"]], - "booming": null, - "boomings": null, - "booms": null, - "boomerang": [["M", "D", "S", "G"]], - "boomerang's": null, - "boomeranged": null, - "boomerangs": null, - "boomeranging": null, - "boomer's": null, - "boomtown": [["S"]], - "boomtowns": null, - "boondocks": null, - "boondoggle": [["D", "R", "S", "G", "Z"]], - "boondoggled": null, - "boondoggler": [["M"]], - "boondoggles": null, - "boondoggling": null, - "boondogglers": null, - "boondoggler's": null, - "Boone": [["M"]], - "Boone's": null, - "Boonie": [["M"]], - "Boonie's": null, - "boonies": null, - "boon": [["M", "S"]], - "boon's": null, - "boons": null, - "Boony": [["M"]], - "Boony's": null, - "boorishness": [["S", "M"]], - "boorishnesses": null, - "boorishness's": null, - "boorish": [["P", "Y"]], - "boorishly": null, - "boor": [["M", "S"]], - "boor's": null, - "boors": null, - "boosterism": null, - "booster": [["M"]], - "booster's": null, - "boost": [["S", "G", "Z", "M", "R", "D"]], - "boosts": null, - "boosting": null, - "boosters": null, - "boost's": null, - "boosted": null, - "boot": [["A", "G", "D", "S"]], - "reboot": [["Z", "R"]], - "rebooting": null, - "rebooted": null, - "reboots": null, - "booting": null, - "booted": null, - "boots": null, - "bootblack": [["M", "S"]], - "bootblack's": null, - "bootblacks": null, - "bootee": [["M", "S"]], - "bootee's": null, - "bootees": null, - "Boote": [["M"]], - "Boote's": null, - "Bo�tes": null, - "Boothe": [["M"]], - "Boothe's": null, - "booth's": null, - "Booth": [["M"]], - "Booth's": null, - "booths": null, - "bootie's": null, - "bootlaces": null, - "bootlegged": [["M"]], - "bootlegged's": null, - "bootlegger": [["S", "M"]], - "bootleggers": null, - "bootlegger's": null, - "bootlegging": [["M"]], - "bootlegging's": null, - "bootleg": [["S"]], - "bootlegs": null, - "Bootle": [["M"]], - "Bootle's": null, - "bootless": null, - "Boot": [["M"]], - "Boot's": null, - "bootprints": null, - "boot's": null, - "bootstrapped": null, - "bootstrapping": null, - "bootstrap": [["S", "M"]], - "bootstraps": null, - "bootstrap's": null, - "booty": [["S", "M"]], - "booties": null, - "booty's": null, - "booze": [["D", "S", "R", "G", "M", "Z"]], - "boozed": null, - "boozes": null, - "boozer": [["M"]], - "boozing": null, - "booze's": null, - "boozers": null, - "boozer's": null, - "boozy": [["T", "R"]], - "booziest": null, - "boozier": null, - "bopped": null, - "bopping": null, - "bop": [["S"]], - "bops": null, - "borate": [["M", "S", "D"]], - "borate's": null, - "borates": null, - "borated": null, - "borax": [["M", "S"]], - "borax's": null, - "boraxes": null, - "Bordeaux": [["M"]], - "Bordeaux's": null, - "bordello": [["M", "S"]], - "bordello's": null, - "bordellos": null, - "Borden": [["M"]], - "Borden's": null, - "borderer": [["M"]], - "borderer's": null, - "border": [["J", "R", "D", "M", "G", "S"]], - "borderings": null, - "bordered": null, - "border's": null, - "bordering": null, - "borders": null, - "borderland": [["S", "M"]], - "borderlands": null, - "borderland's": null, - "borderline": [["M", "S"]], - "borderline's": null, - "borderlines": null, - "Bordie": [["M"]], - "Bordie's": null, - "Bord": [["M", "N"]], - "Bord's": null, - "Bordon": [["M"]], - "Bordon's": null, - "Bordy": [["M"]], - "Bordy's": null, - "Borealis": [["M"]], - "Borealis's": null, - "Boreas": [["M"]], - "Boreas's": null, - "boredom": [["M", "S"]], - "boredom's": null, - "boredoms": null, - "boreholes": null, - "borer": [["M"]], - "borer's": null, - "bore": [["Z", "G", "J", "D", "R", "S"]], - "borers": null, - "boring": [["Y", "M", "P"]], - "borings": null, - "bored": null, - "bores": null, - "Borges": null, - "Borgia": [["M"]], - "Borgia's": null, - "Borg": [["M"]], - "Borg's": null, - "boric": null, - "boringly": null, - "boring's": null, - "boringness": null, - "Boris": null, - "Bork": [["M"]], - "Bork's": null, - "born": [["A", "I", "U"]], - "reborn": null, - "inborn": null, - "unborn": null, - "Borneo": [["M"]], - "Borneo's": null, - "borne": [["U"]], - "unborne": null, - "Born": [["M"]], - "Born's": null, - "Borodin": [["M"]], - "Borodin's": null, - "boron": [["S", "M"]], - "borons": null, - "boron's": null, - "borosilicate": [["M"]], - "borosilicate's": null, - "borough": [["M"]], - "borough's": null, - "boroughs": null, - "Borroughs": [["M"]], - "Borroughs's": null, - "borrower": [["M"]], - "borrower's": null, - "borrowing": [["M"]], - "borrowing's": null, - "borrow": [["J", "Z", "R", "D", "G", "B", "S"]], - "borrowings": null, - "borrowers": null, - "borrowed": null, - "borrowable": null, - "borrows": null, - "borscht": [["S", "M"]], - "borschts": null, - "borscht's": null, - "borstal": [["M", "S"]], - "borstal's": null, - "borstals": null, - "Boru": [["M"]], - "Boru's": null, - "borzoi": [["M", "S"]], - "borzoi's": null, - "borzois": null, - "Bosch": [["M"]], - "Bosch's": null, - "Bose": [["M"]], - "Bose's": null, - "bosh": [["M", "S"]], - "bosh's": null, - "boshes": null, - "Bosnia": [["M"]], - "Bosnia's": null, - "Bosnian": [["S"]], - "Bosnians": null, - "bosom's": null, - "bosom": [["S", "G", "U", "D"]], - "bosoms": null, - "unbosoms": null, - "bosoming": null, - "unbosoming": null, - "unbosom": null, - "unbosomed": null, - "bosomed": null, - "bosomy": [["R", "T"]], - "bosomier": null, - "bosomiest": null, - "boson": [["S", "M"]], - "bosons": null, - "boson's": null, - "Bosporus": [["M"]], - "Bosporus's": null, - "boss": [["D", "S", "R", "M", "G"]], - "bossed": null, - "bosses": null, - "bosser": null, - "boss's": null, - "bossing": null, - "bossily": null, - "bossiness": [["M", "S"]], - "bossiness's": null, - "bossinesses": null, - "bossism": [["M", "S"]], - "bossism's": null, - "bossisms": null, - "bossy": [["P", "T", "S", "R"]], - "bossiest": null, - "bossies": null, - "bossier": null, - "Bostitch": [["M"]], - "Bostitch's": null, - "Bostonian": [["S", "M"]], - "Bostonians": null, - "Bostonian's": null, - "Boston": [["M", "S"]], - "Boston's": null, - "Bostons": null, - "bosun's": null, - "Boswell": [["M", "S"]], - "Boswell's": null, - "Boswells": null, - "botanical": [["S", "Y"]], - "botanicals": null, - "botanically": null, - "botanic": [["S"]], - "botanics": null, - "botanist": [["S", "M"]], - "botanists": null, - "botanist's": null, - "botany": [["S", "M"]], - "botanies": null, - "botany's": null, - "botcher": [["M"]], - "botcher's": null, - "botch": [["S", "R", "D", "G", "Z"]], - "botches": null, - "botched": null, - "botching": null, - "botchers": null, - "botfly": [["M"]], - "botfly's": null, - "bother": [["D", "G"]], - "bothered": null, - "bothering": null, - "bothersome": null, - "bothy": [["M"]], - "bothy's": null, - "both": [["Z", "R"]], - "bothers": null, - "bot": [["S"]], - "bots": null, - "Botswana": [["M"]], - "Botswana's": null, - "Botticelli": [["M"]], - "Botticelli's": null, - "bottle": [["G", "M", "Z", "S", "R", "D"]], - "bottling": null, - "bottle's": null, - "bottlers": null, - "bottles": null, - "bottler": [["M"]], - "bottled": null, - "bottleneck": [["G", "S", "D", "M"]], - "bottlenecking": null, - "bottlenecks": null, - "bottlenecked": null, - "bottleneck's": null, - "bottler's": null, - "bottomlessness": [["M"]], - "bottomlessness's": null, - "bottomless": [["Y", "P"]], - "bottomlessly": null, - "bottommost": null, - "bottom": [["S", "M", "R", "D", "G"]], - "bottoms": null, - "bottom's": null, - "bottomer": null, - "bottomed": null, - "bottoming": null, - "botulin": [["M"]], - "botulin's": null, - "botulinus": [["M"]], - "botulinus's": null, - "botulism": [["S", "M"]], - "botulisms": null, - "botulism's": null, - "Boucher": [["M"]], - "Boucher's": null, - "boudoir": [["M", "S"]], - "boudoir's": null, - "boudoirs": null, - "bouffant": [["S"]], - "bouffants": null, - "bougainvillea": [["S", "M"]], - "bougainvilleas": null, - "bougainvillea's": null, - "bough": [["M", "D"]], - "bough's": null, - "boughed": null, - "boughs": null, - "bought": [["N"]], - "boughten": null, - "bouillabaisse": [["M", "S"]], - "bouillabaisse's": null, - "bouillabaisses": null, - "bouillon": [["M", "S"]], - "bouillon's": null, - "bouillons": null, - "boulder": [["G", "M", "D", "S"]], - "bouldering": null, - "boulder's": null, - "bouldered": null, - "boulders": null, - "Boulder": [["M"]], - "Boulder's": null, - "boulevard": [["M", "S"]], - "boulevard's": null, - "boulevards": null, - "bouncer": [["M"]], - "bouncer's": null, - "bounce": [["S", "R", "D", "G", "Z"]], - "bounces": null, - "bounced": null, - "bouncing": [["Y"]], - "bouncers": null, - "bouncily": null, - "bouncingly": null, - "bouncy": [["T", "R", "P"]], - "bounciest": null, - "bouncier": null, - "bounciness": null, - "boundary": [["M", "S"]], - "boundary's": null, - "boundaries": null, - "bound": [["A", "U", "D", "I"]], - "rebound": [["G"]], - "rebounded": null, - "unbound": null, - "unbounded": null, - "bounded": [["U", "P"]], - "inbounded": null, - "inbound": [["G"]], - "boundedness": [["M", "U"]], - "boundedness's": null, - "unboundedness's": null, - "unboundedness": null, - "bounden": null, - "bounder": [["A", "M"]], - "rebounder": null, - "rebounder's": null, - "bounder's": null, - "bounders": null, - "bounding": null, - "boundlessness": [["S", "M"]], - "boundlessnesses": null, - "boundlessness's": null, - "boundless": [["Y", "P"]], - "boundlessly": null, - "bounds": [["I", "A"]], - "inbounds": null, - "rebounds": null, - "bounteousness": [["M", "S"]], - "bounteousness's": null, - "bounteousnesses": null, - "bounteous": [["P", "Y"]], - "bounteously": null, - "bountifulness": [["S", "M"]], - "bountifulnesses": null, - "bountifulness's": null, - "bountiful": [["P", "Y"]], - "bountifully": null, - "bounty": [["S", "D", "M"]], - "bounties": null, - "bountied": null, - "bounty's": null, - "bouquet": [["S", "M"]], - "bouquets": null, - "bouquet's": null, - "Bourbaki": [["M"]], - "Bourbaki's": null, - "bourbon": [["S", "M"]], - "bourbons": null, - "bourbon's": null, - "Bourbon": [["S", "M"]], - "Bourbons": null, - "Bourbon's": null, - "bourgeoisie": [["S", "M"]], - "bourgeoisies": null, - "bourgeoisie's": null, - "bourgeois": [["M"]], - "bourgeois's": null, - "Bourke": [["M"]], - "Bourke's": null, - "Bourne": [["M"]], - "Bourne's": null, - "Bournemouth": [["M"]], - "Bournemouth's": null, - "boutique": [["M", "S"]], - "boutique's": null, - "boutiques": null, - "bout": [["M", "S"]], - "bout's": null, - "bouts": null, - "boutonni�re": [["M", "S"]], - "boutonni�re's": null, - "boutonni�res": null, - "Bouvier": null, - "Bovary": [["M"]], - "Bovary's": null, - "bovine": [["Y", "S"]], - "bovinely": null, - "bovines": null, - "Bowditch": [["M"]], - "Bowditch's": null, - "bowdlerization": [["M", "S"]], - "bowdlerization's": null, - "bowdlerizations": null, - "bowdlerize": [["G", "R", "S", "D"]], - "bowdlerizing": null, - "bowdlerizer": null, - "bowdlerizes": null, - "bowdlerized": null, - "bowed": [["U"]], - "unbowed": null, - "bowel": [["G", "M", "D", "S"]], - "boweling": null, - "bowel's": null, - "boweled": null, - "bowels": null, - "Bowell": [["M"]], - "Bowell's": null, - "Bowen": [["M"]], - "Bowen's": null, - "bower": [["D", "M", "G"]], - "bowered": null, - "bower's": null, - "bowering": null, - "Bowers": null, - "Bowery": [["M"]], - "Bowery's": null, - "Bowes": null, - "bowie": null, - "Bowie": [["M"]], - "Bowie's": null, - "bowing": [["M"]], - "bowing's": null, - "bowlder's": null, - "bowlegged": null, - "bowleg": [["S", "M"]], - "bowlegs": null, - "bowleg's": null, - "bowler": [["M"]], - "bowler's": null, - "bowlful": [["S"]], - "bowlfuls": null, - "bowl": [["G", "Z", "S", "M", "D", "R"]], - "bowling": [["M"]], - "bowlers": null, - "bowls": null, - "bowl's": null, - "bowled": null, - "bowline": [["M", "S"]], - "bowline's": null, - "bowlines": null, - "bowling's": null, - "bowman": [["M"]], - "bowman's": null, - "Bowman": [["M"]], - "Bowman's": null, - "bowmen": null, - "bowser": [["M"]], - "bowser's": null, - "bowsprit": [["S", "M"]], - "bowsprits": null, - "bowsprit's": null, - "bows": [["R"]], - "bowstring": [["G", "S", "M", "D"]], - "bowstringing": null, - "bowstrings": null, - "bowstring's": null, - "bowstringed": null, - "bow": [["S", "Z", "G", "N", "D", "R"]], - "bowers": null, - "bowen": null, - "bowwow": [["D", "M", "G", "S"]], - "bowwowed": null, - "bowwow's": null, - "bowwowing": null, - "bowwows": null, - "boxcar": [["S", "M"]], - "boxcars": null, - "boxcar's": null, - "box": [["D", "R", "S", "J", "Z", "G", "M"]], - "boxed": null, - "boxer": [["M"]], - "boxes": null, - "boxings": null, - "boxers": null, - "boxing": [["M"]], - "box's": null, - "boxer's": null, - "boxful": [["M"]], - "boxful's": null, - "boxing's": null, - "boxlike": null, - "boxtops": null, - "boxwood": [["S", "M"]], - "boxwoods": null, - "boxwood's": null, - "boxy": [["T", "P", "R"]], - "boxiest": null, - "boxiness": null, - "boxier": null, - "Boyce": [["M"]], - "Boyce's": null, - "Boycey": [["M"]], - "Boycey's": null, - "Boycie": [["M"]], - "Boycie's": null, - "boycotter": [["M"]], - "boycotter's": null, - "boycott": [["R", "D", "G", "S"]], - "boycotted": null, - "boycotting": null, - "boycotts": null, - "Boyd": [["M"]], - "Boyd's": null, - "Boyer": [["M"]], - "Boyer's": null, - "boyfriend": [["M", "S"]], - "boyfriend's": null, - "boyfriends": null, - "boyhood": [["S", "M"]], - "boyhoods": null, - "boyhood's": null, - "boyishness": [["M", "S"]], - "boyishness's": null, - "boyishnesses": null, - "boyish": [["P", "Y"]], - "boyishly": null, - "Boyle": [["M"]], - "Boyle's": null, - "Boy": [["M", "R"]], - "Boy's": null, - "boy": [["M", "R", "S"]], - "boy's": null, - "boyer": null, - "boys": null, - "boyscout": null, - "boysenberry": [["S", "M"]], - "boysenberries": null, - "boysenberry's": null, - "bozo": [["S", "M"]], - "bozos": null, - "bozo's": null, - "bpi": null, - "bps": null, - "BR": null, - "brace": [["D", "S", "R", "J", "G", "M"]], - "braced": [["U"]], - "braces": null, - "bracer": [["M"]], - "bracings": null, - "bracing": null, - "brace's": null, - "unbraced": null, - "bracelet": [["M", "S"]], - "bracelet's": null, - "bracelets": null, - "bracer's": null, - "brachia": null, - "brachium": [["M"]], - "brachium's": null, - "bracken": [["S", "M"]], - "brackens": null, - "bracken's": null, - "bracketed": [["U"]], - "unbracketed": null, - "bracketing": [["M"]], - "bracketing's": null, - "bracket": [["S", "G", "M", "D"]], - "brackets": null, - "bracket's": null, - "brackishness": [["S", "M"]], - "brackishnesses": null, - "brackishness's": null, - "brackish": [["P"]], - "bract": [["S", "M"]], - "bracts": null, - "bract's": null, - "Bradan": [["M"]], - "Bradan's": null, - "bradawl": [["M"]], - "bradawl's": null, - "Bradbury": [["M"]], - "Bradbury's": null, - "Bradburys": null, - "bradded": null, - "bradding": null, - "Braddock": [["M"]], - "Braddock's": null, - "Brade": [["M"]], - "Brade's": null, - "Braden": [["M"]], - "Braden's": null, - "Bradford": [["M"]], - "Bradford's": null, - "Bradley": [["M"]], - "Bradley's": null, - "Bradly": [["M"]], - "Bradly's": null, - "Brad": [["M", "Y", "N"]], - "Brad's": null, - "Bradney": [["M"]], - "Bradney's": null, - "Bradshaw": [["M"]], - "Bradshaw's": null, - "brad": [["S", "M"]], - "brads": null, - "brad's": null, - "Bradstreet": [["M"]], - "Bradstreet's": null, - "Brady": [["M"]], - "Brady's": null, - "brae": [["S", "M"]], - "braes": null, - "brae's": null, - "braggadocio": [["S", "M"]], - "braggadocios": null, - "braggadocio's": null, - "braggart": [["S", "M"]], - "braggarts": null, - "braggart's": null, - "bragged": null, - "bragger": [["M", "S"]], - "bragger's": null, - "braggers": null, - "braggest": null, - "bragging": null, - "Bragg": [["M"]], - "Bragg's": null, - "brag": [["S"]], - "brags": null, - "Brahe": [["M"]], - "Brahe's": null, - "Brahma": [["M", "S"]], - "Brahma's": null, - "Brahmas": null, - "Brahmanism": [["M", "S"]], - "Brahmanism's": null, - "Brahmanisms": null, - "Brahman": [["S", "M"]], - "Brahmans": null, - "Brahman's": null, - "Brahmaputra": [["M"]], - "Brahmaputra's": null, - "Brahmin's": null, - "Brahms": null, - "braider": [["M"]], - "braider's": null, - "braiding": [["M"]], - "braiding's": null, - "braid": [["R", "D", "S", "J", "G"]], - "braided": null, - "braids": null, - "braidings": null, - "braille": [["D", "S", "G"]], - "brailled": null, - "brailles": null, - "brailling": null, - "Braille": [["G", "D", "S", "M"]], - "Brailling": null, - "Brailled": null, - "Brailles": null, - "Braille's": null, - "Brainard": [["S", "M"]], - "Brainards": null, - "Brainard's": null, - "braincell": [["S"]], - "braincells": null, - "brainchild": [["M"]], - "brainchild's": null, - "brainchildren": null, - "brain": [["G", "S", "D", "M"]], - "braining": null, - "brains": null, - "brained": null, - "brain's": null, - "braininess": [["M", "S"]], - "braininess's": null, - "braininesses": null, - "brainlessness": [["M"]], - "brainlessness's": null, - "brainless": [["Y", "P"]], - "brainlessly": null, - "Brain": [["M"]], - "Brain's": null, - "brainpower": [["M"]], - "brainpower's": null, - "brainstorm": [["D", "R", "M", "G", "J", "S"]], - "brainstormed": null, - "brainstormer": null, - "brainstorm's": null, - "brainstorming": [["M"]], - "brainstormings": null, - "brainstorms": null, - "brainstorming's": null, - "brainteaser": [["S"]], - "brainteasers": null, - "brainteasing": null, - "brainwasher": [["M"]], - "brainwasher's": null, - "brainwashing": [["M"]], - "brainwashing's": null, - "brainwash": [["J", "G", "R", "S", "D"]], - "brainwashings": null, - "brainwashes": null, - "brainwashed": null, - "brainwave": [["S"]], - "brainwaves": null, - "brainy": [["R", "P", "T"]], - "brainier": null, - "brainiest": null, - "braise": [["S", "D", "G"]], - "braises": null, - "braised": null, - "braising": null, - "brake": [["D", "S", "G", "M"]], - "braked": null, - "brakes": null, - "braking": null, - "brake's": null, - "brakeman": [["M"]], - "brakeman's": null, - "brakemen": [["M"]], - "brakemen's": null, - "bramble": [["D", "S", "G", "M"]], - "brambled": null, - "brambles": null, - "brambling": [["M"]], - "bramble's": null, - "brambling's": null, - "brambly": [["R", "T"]], - "bramblier": null, - "brambliest": null, - "Bram": [["M"]], - "Bram's": null, - "Brampton": [["M"]], - "Brampton's": null, - "bra": [["M", "S"]], - "bra's": null, - "bras": null, - "Brana": [["M"]], - "Brana's": null, - "branched": [["U"]], - "unbranched": null, - "branching": [["M"]], - "branching's": null, - "branchlike": null, - "Branch": [["M"]], - "Branch's": null, - "branch": [["M", "D", "S", "J", "G"]], - "branch's": null, - "branches": null, - "branchings": null, - "Branchville": [["M"]], - "Branchville's": null, - "Brandais": [["M"]], - "Brandais's": null, - "Brandea": [["M"]], - "Brandea's": null, - "branded": [["U"]], - "unbranded": null, - "Brandeis": [["M"]], - "Brandeis's": null, - "Brandel": [["M"]], - "Brandel's": null, - "Brande": [["M"]], - "Brande's": null, - "Brandenburg": [["M"]], - "Brandenburg's": null, - "Branden": [["M"]], - "Branden's": null, - "brander": [["G", "D", "M"]], - "brandering": null, - "brandered": null, - "brander's": null, - "Brander": [["M"]], - "Brander's": null, - "Brandice": [["M"]], - "Brandice's": null, - "Brandie": [["M"]], - "Brandie's": null, - "Brandi": [["M"]], - "Brandi's": null, - "Brandise": [["M"]], - "Brandise's": null, - "brandish": [["G", "S", "D"]], - "brandishing": null, - "brandishes": null, - "brandished": null, - "Brand": [["M", "R", "N"]], - "Brand's": null, - "Brando": [["M"]], - "Brando's": null, - "Brandon": [["M"]], - "Brandon's": null, - "brand": [["S", "M", "R", "D", "G", "Z"]], - "brands": null, - "brand's": null, - "branding": null, - "branders": null, - "Brandt": [["M"]], - "Brandt's": null, - "Brandtr": [["M"]], - "Brandtr's": null, - "brandy": [["G", "D", "S", "M"]], - "brandying": null, - "brandied": null, - "brandies": null, - "brandy's": null, - "Brandy": [["M"]], - "Brandy's": null, - "Brandyn": [["M"]], - "Brandyn's": null, - "brandywine": null, - "Braniff": [["M"]], - "Braniff's": null, - "Bran": [["M"]], - "Bran's": null, - "branned": null, - "branning": null, - "Brannon": [["M"]], - "Brannon's": null, - "bran": [["S", "M"]], - "brans": null, - "bran's": null, - "Brantley": [["M"]], - "Brantley's": null, - "Brant": [["M"]], - "Brant's": null, - "Braque": [["M"]], - "Braque's": null, - "brashness": [["M", "S"]], - "brashness's": null, - "brashnesses": null, - "brash": [["P", "Y", "S", "R", "T"]], - "brashly": null, - "brashes": null, - "brasher": null, - "brashest": null, - "Brasilia": null, - "brasserie": [["S", "M"]], - "brasseries": null, - "brasserie's": null, - "brass": [["G", "S", "D", "M"]], - "brassing": null, - "brasses": null, - "brassed": null, - "brass's": null, - "brassiere": [["M", "S"]], - "brassiere's": null, - "brassieres": null, - "brassily": null, - "brassiness": [["S", "M"]], - "brassinesses": null, - "brassiness's": null, - "brassy": [["R", "S", "P", "T"]], - "brassier": null, - "brassies": null, - "brassiest": null, - "Bratislava": [["M"]], - "Bratislava's": null, - "brat": [["S", "M"]], - "brats": null, - "brat's": null, - "Brattain": [["M"]], - "Brattain's": null, - "bratty": [["R", "T"]], - "brattier": null, - "brattiest": null, - "bratwurst": [["M", "S"]], - "bratwurst's": null, - "bratwursts": null, - "Braun": [["M"]], - "Braun's": null, - "bravadoes": null, - "bravado": [["M"]], - "bravado's": null, - "brave": [["D", "S", "R", "G", "Y", "T", "P"]], - "braved": null, - "braves": null, - "braver": null, - "braving": null, - "bravely": null, - "bravest": [["M"]], - "braveness": [["M", "S"]], - "braveness's": null, - "bravenesses": null, - "bravery": [["M", "S"]], - "bravery's": null, - "braveries": null, - "bravest's": null, - "bravo": [["S", "D", "G"]], - "bravos": null, - "bravoed": null, - "bravoing": null, - "bravura": [["S", "M"]], - "bravuras": null, - "bravura's": null, - "brawler": [["M"]], - "brawler's": null, - "brawl": [["M", "R", "D", "S", "G", "Z"]], - "brawl's": null, - "brawled": null, - "brawls": null, - "brawling": null, - "brawlers": null, - "brawniness": [["S", "M"]], - "brawninesses": null, - "brawniness's": null, - "brawn": [["M", "S"]], - "brawn's": null, - "brawns": null, - "brawny": [["T", "R", "P"]], - "brawniest": null, - "brawnier": null, - "brayer": [["M"]], - "brayer's": null, - "Bray": [["M"]], - "Bray's": null, - "bray": [["S", "D", "R", "G"]], - "brays": null, - "brayed": null, - "braying": null, - "braze": [["G", "Z", "D", "S", "R"]], - "brazing": null, - "brazers": null, - "brazed": null, - "brazes": null, - "brazer": [["M"]], - "brazenness": [["M", "S"]], - "brazenness's": null, - "brazennesses": null, - "brazen": [["P", "Y", "D", "S", "G"]], - "brazenly": null, - "brazened": null, - "brazens": null, - "brazening": null, - "brazer's": null, - "brazier": [["S", "M"]], - "braziers": null, - "brazier's": null, - "Brazilian": [["M", "S"]], - "Brazilian's": null, - "Brazilians": null, - "Brazil": [["M"]], - "Brazil's": null, - "Brazos": [["M"]], - "Brazos's": null, - "Brazzaville": [["M"]], - "Brazzaville's": null, - "breacher": [["M"]], - "breacher's": null, - "breach": [["M", "D", "R", "S", "G", "Z"]], - "breach's": null, - "breached": null, - "breaches": null, - "breaching": null, - "breachers": null, - "breadbasket": [["S", "M"]], - "breadbaskets": null, - "breadbasket's": null, - "breadboard": [["S", "M", "D", "G"]], - "breadboards": null, - "breadboard's": null, - "breadboarded": null, - "breadboarding": null, - "breadbox": [["S"]], - "breadboxes": null, - "breadcrumb": [["S"]], - "breadcrumbs": null, - "breadfruit": [["M", "S"]], - "breadfruit's": null, - "breadfruits": null, - "breadline": [["M", "S"]], - "breadline's": null, - "breadlines": null, - "bread": [["S", "M", "D", "H", "G"]], - "breads": null, - "bread's": null, - "breaded": null, - "breadth": [["M"]], - "breading": null, - "breadth's": null, - "breadths": null, - "breadwinner": [["M", "S"]], - "breadwinner's": null, - "breadwinners": null, - "breakables": null, - "breakable": [["U"]], - "unbreakable": null, - "breakage": [["M", "S"]], - "breakage's": null, - "breakages": null, - "breakaway": [["M", "S"]], - "breakaway's": null, - "breakaways": null, - "breakdown": [["M", "S"]], - "breakdown's": null, - "breakdowns": null, - "breaker": [["M"]], - "breaker's": null, - "breakfaster": [["M"]], - "breakfaster's": null, - "breakfast": [["R", "D", "M", "G", "Z", "S"]], - "breakfasted": null, - "breakfast's": null, - "breakfasting": null, - "breakfasters": null, - "breakfasts": null, - "breakfront": [["S"]], - "breakfronts": null, - "breaking": [["M"]], - "breaking's": null, - "breakneck": null, - "breakout": [["M", "S"]], - "breakout's": null, - "breakouts": null, - "breakpoint": [["S", "M", "D", "G"]], - "breakpoints": null, - "breakpoint's": null, - "breakpointed": null, - "breakpointing": null, - "break": [["S", "Z", "R", "B", "G"]], - "breaks": null, - "breakers": null, - "breakthroughs": null, - "breakthrough": [["S", "M"]], - "breakthroughes": null, - "breakthrough's": null, - "breakup": [["S", "M"]], - "breakups": null, - "breakup's": null, - "breakwater": [["S", "M"]], - "breakwaters": null, - "breakwater's": null, - "bream": [["S", "D", "G"]], - "breams": null, - "breamed": null, - "breaming": null, - "Breanne": [["M"]], - "Breanne's": null, - "Brear": [["M"]], - "Brear's": null, - "breastbone": [["M", "S"]], - "breastbone's": null, - "breastbones": null, - "breastfed": null, - "breastfeed": [["G"]], - "breastfeeding": null, - "breasting": [["M"]], - "breasting's": null, - "breast": [["M", "D", "S", "G"]], - "breast's": null, - "breasted": null, - "breasts": null, - "breastplate": [["S", "M"]], - "breastplates": null, - "breastplate's": null, - "breaststroke": [["S", "M"]], - "breaststrokes": null, - "breaststroke's": null, - "breastwork": [["M", "S"]], - "breastwork's": null, - "breastworks": null, - "breathable": [["U"]], - "unbreathable": null, - "breathalyser": [["S"]], - "breathalysers": null, - "Breathalyzer": [["S", "M"]], - "Breathalyzers": null, - "Breathalyzer's": null, - "breathe": null, - "breather": [["M"]], - "breather's": null, - "breathing": [["M"]], - "breathing's": null, - "breathlessness": [["S", "M"]], - "breathlessnesses": null, - "breathlessness's": null, - "breathless": [["P", "Y"]], - "breathlessly": null, - "breaths": null, - "breathtaking": [["Y"]], - "breathtakingly": null, - "breathy": [["T", "R"]], - "breathiest": null, - "breathier": null, - "breath": [["Z", "B", "J", "M", "D", "R", "S", "G"]], - "breathers": null, - "breathings": null, - "breath's": null, - "breathed": null, - "breathes": null, - "Brecht": [["M"]], - "Brecht's": null, - "Breckenridge": [["M"]], - "Breckenridge's": null, - "bred": [["D", "G"]], - "breded": null, - "breding": null, - "bredes": null, - "breeching": [["M"]], - "breeching's": null, - "breech": [["M", "D", "S", "G"]], - "breech's": null, - "breeched": null, - "breeches": null, - "breeder": [["I"]], - "inbreeder": null, - "breeder's": null, - "breeding": [["I", "M"]], - "inbreeding": null, - "inbreeding's": null, - "breeding's": null, - "breeds": [["I"]], - "inbreeds": null, - "breed": [["S", "Z", "J", "R", "G"]], - "breeders": null, - "breedings": null, - "Bree": [["M"]], - "Bree's": null, - "Breena": [["M"]], - "Breena's": null, - "breeze": [["G", "M", "S", "D"]], - "breezing": null, - "breeze's": null, - "breezes": null, - "breezed": null, - "breezeway": [["S", "M"]], - "breezeways": null, - "breezeway's": null, - "breezily": null, - "breeziness": [["S", "M"]], - "breezinesses": null, - "breeziness's": null, - "breezy": [["R", "P", "T"]], - "breezier": null, - "breeziest": null, - "Bremen": [["M"]], - "Bremen's": null, - "bremsstrahlung": [["M"]], - "bremsstrahlung's": null, - "Brena": [["M"]], - "Brena's": null, - "Brenda": [["M"]], - "Brenda's": null, - "Brendan": [["M"]], - "Brendan's": null, - "Brenden": [["M"]], - "Brenden's": null, - "Brendin": [["M"]], - "Brendin's": null, - "Brendis": [["M"]], - "Brendis's": null, - "Brendon": [["M"]], - "Brendon's": null, - "Bren": [["M"]], - "Bren's": null, - "Brenna": [["M"]], - "Brenna's": null, - "Brennan": [["M"]], - "Brennan's": null, - "Brennen": [["M"]], - "Brennen's": null, - "Brenner": [["M"]], - "Brenner's": null, - "Brenn": [["R", "N", "M"]], - "Brenn's": null, - "Brent": [["M"]], - "Brent's": null, - "Brenton": [["M"]], - "Brenton's": null, - "Bresenham": [["M"]], - "Bresenham's": null, - "Brest": [["M"]], - "Brest's": null, - "brethren": null, - "Bret": [["M"]], - "Bret's": null, - "Breton": null, - "Brett": [["M"]], - "Brett's": null, - "breve": [["S", "M"]], - "breves": null, - "breve's": null, - "brevet": [["M", "S"]], - "brevet's": null, - "brevets": null, - "brevetted": null, - "brevetting": null, - "breviary": [["S", "M"]], - "breviaries": null, - "breviary's": null, - "brevity": [["M", "S"]], - "brevity's": null, - "brevities": null, - "brew": [["D", "R", "G", "Z", "S"]], - "brewed": null, - "brewer": [["M"]], - "brewing": [["M"]], - "brewers": null, - "brews": null, - "brewer's": null, - "Brewer": [["M"]], - "Brewer's": null, - "brewery": [["M", "S"]], - "brewery's": null, - "breweries": null, - "brewing's": null, - "brewpub": [["S"]], - "brewpubs": null, - "Brew": [["R", "M"]], - "Brew's": null, - "Brewster": [["M"]], - "Brewster's": null, - "Brezhnev": [["M"]], - "Brezhnev's": null, - "Bria": [["M"]], - "Bria's": null, - "Briana": [["M"]], - "Briana's": null, - "Brian": [["M"]], - "Brian's": null, - "Brianna": [["M"]], - "Brianna's": null, - "Brianne": [["M"]], - "Brianne's": null, - "Briano": [["M"]], - "Briano's": null, - "Briant": [["M"]], - "Briant's": null, - "briar's": null, - "bribe": [["G", "Z", "D", "S", "R"]], - "bribing": null, - "bribers": null, - "bribed": null, - "bribes": null, - "briber": [["M"]], - "briber's": null, - "bribery": [["M", "S"]], - "bribery's": null, - "briberies": null, - "Brice": [["M"]], - "Brice's": null, - "brickbat": [["S", "M"]], - "brickbats": null, - "brickbat's": null, - "brick": [["G", "R", "D", "S", "M"]], - "bricking": null, - "bricker": null, - "bricked": null, - "bricks": null, - "brick's": null, - "bricklayer": [["M", "S"]], - "bricklayer's": null, - "bricklayers": null, - "bricklaying": [["S", "M"]], - "bricklayings": null, - "bricklaying's": null, - "brickmason": [["S"]], - "brickmasons": null, - "brickwork": [["S", "M"]], - "brickworks": null, - "brickwork's": null, - "brickyard": [["M"]], - "brickyard's": null, - "bridal": [["S"]], - "bridals": null, - "Bridalveil": [["M"]], - "Bridalveil's": null, - "bridegroom": [["M", "S"]], - "bridegroom's": null, - "bridegrooms": null, - "Bride": [["M"]], - "Bride's": null, - "bride": [["M", "S"]], - "bride's": null, - "brides": null, - "bridesmaid": [["M", "S"]], - "bridesmaid's": null, - "bridesmaids": null, - "Bridewell": [["M"]], - "Bridewell's": null, - "bridgeable": [["U"]], - "unbridgeable": null, - "bridged": [["U"]], - "unbridged": null, - "bridgehead": [["M", "S"]], - "bridgehead's": null, - "bridgeheads": null, - "Bridgeport": [["M"]], - "Bridgeport's": null, - "Bridger": [["M"]], - "Bridger's": null, - "Bridges": null, - "bridge": [["S", "D", "G", "M"]], - "bridges": null, - "bridging": [["M"]], - "bridge's": null, - "Bridget": [["M"]], - "Bridget's": null, - "Bridgetown": [["M"]], - "Bridgetown's": null, - "Bridgette": [["M"]], - "Bridgette's": null, - "Bridgett": [["M"]], - "Bridgett's": null, - "Bridgewater": [["M"]], - "Bridgewater's": null, - "bridgework": [["M", "S"]], - "bridgework's": null, - "bridgeworks": null, - "bridging's": null, - "Bridgman": [["M"]], - "Bridgman's": null, - "Bridie": [["M"]], - "Bridie's": null, - "bridled": [["U"]], - "unbridled": null, - "bridle": [["S", "D", "G", "M"]], - "bridles": null, - "bridling": null, - "bridle's": null, - "bridleway": [["S"]], - "bridleways": null, - "briefcase": [["S", "M"]], - "briefcases": null, - "briefcase's": null, - "briefed": [["C"]], - "debriefed": null, - "briefing": [["M"]], - "briefing's": null, - "briefness": [["M", "S"]], - "briefness's": null, - "briefnesses": null, - "briefs": [["C"]], - "debriefs": null, - "brief": [["Y", "R", "D", "J", "P", "G", "T", "S"]], - "briefly": null, - "briefer": null, - "briefings": null, - "briefest": null, - "Brien": [["M"]], - "Brien's": null, - "Brier": [["M"]], - "Brier's": null, - "brier": [["M", "S"]], - "brier's": null, - "briers": null, - "Brie": [["R", "S", "M"]], - "Bries": null, - "Brie's": null, - "Brietta": [["M"]], - "Brietta's": null, - "brigade": [["G", "D", "S", "M"]], - "brigading": null, - "brigaded": null, - "brigades": null, - "brigade's": null, - "brigadier": [["M", "S"]], - "brigadier's": null, - "brigadiers": null, - "Brigadoon": null, - "brigandage": [["M", "S"]], - "brigandage's": null, - "brigandages": null, - "brigand": [["M", "S"]], - "brigand's": null, - "brigands": null, - "brigantine": [["M", "S"]], - "brigantine's": null, - "brigantines": null, - "Brigg": [["M", "S"]], - "Brigg's": null, - "Briggs": null, - "Brigham": [["M"]], - "Brigham's": null, - "brightener": [["M"]], - "brightener's": null, - "brighten": [["R", "D", "Z", "G"]], - "brightened": null, - "brighteners": null, - "brightening": null, - "bright": [["G", "X", "T", "P", "S", "Y", "N", "R"]], - "brighting": null, - "brightens": null, - "brightest": null, - "brightness": [["S", "M"]], - "brights": null, - "brightly": null, - "brighter": null, - "Bright": [["M"]], - "Bright's": null, - "brightnesses": null, - "brightness's": null, - "Brighton": [["M"]], - "Brighton's": null, - "Brigida": [["M"]], - "Brigida's": null, - "Brigid": [["M"]], - "Brigid's": null, - "Brigit": [["M"]], - "Brigit's": null, - "Brigitta": [["M"]], - "Brigitta's": null, - "Brigitte": [["M"]], - "Brigitte's": null, - "Brig": [["M"]], - "Brig's": null, - "brig": [["S", "M"]], - "brigs": null, - "brig's": null, - "brilliance": [["M", "S"]], - "brilliance's": null, - "brilliances": null, - "brilliancy": [["M", "S"]], - "brilliancy's": null, - "brilliancies": null, - "brilliantine": [["M", "S"]], - "brilliantine's": null, - "brilliantines": null, - "brilliantness": [["M"]], - "brilliantness's": null, - "brilliant": [["P", "S", "Y"]], - "brilliants": null, - "brilliantly": null, - "Brillo": null, - "Brillouin": [["M"]], - "Brillouin's": null, - "brimful": null, - "brimless": null, - "brimmed": null, - "brimming": null, - "brim": [["S", "M"]], - "brims": null, - "brim's": null, - "brimstone": [["M", "S"]], - "brimstone's": null, - "brimstones": null, - "Brina": [["M"]], - "Brina's": null, - "Brindisi": [["M"]], - "Brindisi's": null, - "brindle": [["D", "S", "M"]], - "brindled": null, - "brindles": null, - "brindle's": null, - "brine": [["G", "M", "D", "S", "R"]], - "brining": null, - "brine's": null, - "brined": null, - "brines": null, - "briner": [["M"]], - "briner's": null, - "Briney": [["M"]], - "Briney's": null, - "bringer": [["M"]], - "bringer's": null, - "bring": [["R", "G", "Z", "S"]], - "bringing": null, - "bringers": null, - "brings": null, - "brininess": [["M", "S"]], - "brininess's": null, - "brininesses": null, - "Brinkley": [["M"]], - "Brinkley's": null, - "brinkmanship": [["S", "M"]], - "brinkmanships": null, - "brinkmanship's": null, - "brink": [["M", "S"]], - "brink's": null, - "brinks": null, - "Brinna": [["M"]], - "Brinna's": null, - "Brinn": [["M"]], - "Brinn's": null, - "Briny": [["M"]], - "Briny's": null, - "briny": [["P", "T", "S", "R"]], - "briniest": null, - "brinies": null, - "brinier": null, - "brioche": [["S", "M"]], - "brioches": null, - "brioche's": null, - "Brion": [["M"]], - "Brion's": null, - "briquet's": null, - "briquette": [["M", "G", "S", "D"]], - "briquette's": null, - "briquetting": null, - "briquettes": null, - "briquetted": null, - "Brisbane": [["M"]], - "Brisbane's": null, - "brisket": [["S", "M"]], - "briskets": null, - "brisket's": null, - "briskness": [["M", "S"]], - "briskness's": null, - "brisknesses": null, - "brisk": [["Y", "R", "D", "P", "G", "T", "S"]], - "briskly": null, - "brisker": null, - "brisked": null, - "brisking": null, - "briskest": null, - "brisks": null, - "bristle": [["D", "S", "G", "M"]], - "bristled": null, - "bristles": null, - "bristling": null, - "bristle's": null, - "bristly": [["T", "R"]], - "bristliest": null, - "bristlier": null, - "Bristol": [["M"]], - "Bristol's": null, - "bristol": [["S"]], - "bristols": null, - "Britain": [["M"]], - "Britain's": null, - "Brita": [["M"]], - "Brita's": null, - "Britannia": [["M"]], - "Britannia's": null, - "Britannic": null, - "Britannica": [["M"]], - "Britannica's": null, - "britches": null, - "Briticism": [["M", "S"]], - "Briticism's": null, - "Briticisms": null, - "Britisher": [["M"]], - "Britisher's": null, - "Britishly": [["M"]], - "Britishly's": null, - "British": [["R", "Y", "Z"]], - "Britishers": null, - "Brit": [["M", "S"]], - "Brit's": null, - "Brits": null, - "Britney": [["M"]], - "Britney's": null, - "Britni": [["M"]], - "Britni's": null, - "Briton": [["M", "S"]], - "Briton's": null, - "Britons": null, - "Britta": [["M"]], - "Britta's": null, - "Brittaney": [["M"]], - "Brittaney's": null, - "Brittani": [["M"]], - "Brittani's": null, - "Brittan": [["M"]], - "Brittan's": null, - "Brittany": [["M", "S"]], - "Brittany's": null, - "Brittanies": null, - "Britte": [["M"]], - "Britte's": null, - "Britten": [["M"]], - "Britten's": null, - "Britteny": [["M"]], - "Britteny's": null, - "brittleness": [["M", "S"]], - "brittleness's": null, - "brittlenesses": null, - "brittle": [["Y", "T", "P", "D", "R", "S", "G"]], - "brittlely": null, - "brittlest": null, - "brittled": null, - "brittler": null, - "brittles": null, - "brittling": null, - "Britt": [["M", "N"]], - "Britt's": null, - "Brittne": [["M"]], - "Brittne's": null, - "Brittney": [["M"]], - "Brittney's": null, - "Brittni": [["M"]], - "Brittni's": null, - "Brnaba": [["M"]], - "Brnaba's": null, - "Brnaby": [["M"]], - "Brnaby's": null, - "Brno": [["M"]], - "Brno's": null, - "broach": [["D", "R", "S", "G"]], - "broached": null, - "broacher": [["M"]], - "broaches": null, - "broaching": null, - "broacher's": null, - "broadband": null, - "broadcaster": [["M"]], - "broadcaster's": null, - "broadcast": [["R", "S", "G", "Z", "J"]], - "broadcasts": [["A"]], - "broadcasting": null, - "broadcasters": null, - "broadcastings": null, - "rebroadcasts": null, - "broadcloth": [["M"]], - "broadcloth's": null, - "broadcloths": null, - "broaden": [["J", "G", "R", "D", "Z"]], - "broadenings": null, - "broadening": null, - "broadener": null, - "broadened": null, - "broadeners": null, - "broadleaved": null, - "broadloom": [["S", "M"]], - "broadlooms": null, - "broadloom's": null, - "broadminded": [["P"]], - "broadmindedness": null, - "broadness": [["S"]], - "broadnesses": null, - "broadsheet": [["M", "S"]], - "broadsheet's": null, - "broadsheets": null, - "broadside": [["S", "D", "G", "M"]], - "broadsides": null, - "broadsided": null, - "broadsiding": null, - "broadside's": null, - "broadsword": [["M", "S"]], - "broadsword's": null, - "broadswords": null, - "broad": [["T", "X", "S", "Y", "R", "N", "P"]], - "broadest": null, - "broadens": null, - "broads": null, - "broadly": null, - "broader": null, - "Broadway": [["S", "M"]], - "Broadways": null, - "Broadway's": null, - "Brobdingnagian": null, - "Brobdingnag": [["M"]], - "Brobdingnag's": null, - "brocade": [["D", "S", "G", "M"]], - "brocaded": null, - "brocades": null, - "brocading": null, - "brocade's": null, - "broccoli": [["M", "S"]], - "broccoli's": null, - "broccolis": null, - "brochette": [["S", "M"]], - "brochettes": null, - "brochette's": null, - "brochure": [["S", "M"]], - "brochures": null, - "brochure's": null, - "Brockie": [["M"]], - "Brockie's": null, - "Brock": [["M"]], - "Brock's": null, - "Brocky": [["M"]], - "Brocky's": null, - "Broddie": [["M"]], - "Broddie's": null, - "Broddy": [["M"]], - "Broddy's": null, - "Broderick": [["M"]], - "Broderick's": null, - "Broderic": [["M"]], - "Broderic's": null, - "Brodie": [["M"]], - "Brodie's": null, - "Brod": [["M"]], - "Brod's": null, - "Brody": [["M"]], - "Brody's": null, - "brogan": [["M", "S"]], - "brogan's": null, - "brogans": null, - "Broglie": [["M"]], - "Broglie's": null, - "brogue": [["M", "S"]], - "brogue's": null, - "brogues": null, - "broiler": [["M"]], - "broiler's": null, - "broil": [["R", "D", "S", "G", "Z"]], - "broiled": null, - "broils": null, - "broiling": null, - "broilers": null, - "brokenhearted": [["Y"]], - "brokenheartedly": null, - "brokenness": [["M", "S"]], - "brokenness's": null, - "brokennesses": null, - "broken": [["Y", "P"]], - "brokenly": null, - "brokerage": [["M", "S"]], - "brokerage's": null, - "brokerages": null, - "broker": [["D", "M", "G"]], - "brokered": null, - "broker's": null, - "brokering": null, - "broke": [["R", "G", "Z"]], - "broking": null, - "brokers": null, - "Brok": [["M"]], - "Brok's": null, - "bromide": [["M", "S"]], - "bromide's": null, - "bromides": null, - "bromidic": null, - "bromine": [["M", "S"]], - "bromine's": null, - "bromines": null, - "bronchial": null, - "bronchi": [["M"]], - "bronchi's": null, - "bronchiolar": null, - "bronchiole": [["M", "S"]], - "bronchiole's": null, - "bronchioles": null, - "bronchiolitis": null, - "bronchitic": [["S"]], - "bronchitics": null, - "bronchitis": [["M", "S"]], - "bronchitis's": null, - "bronchitises": null, - "broncho's": null, - "bronchus": [["M"]], - "bronchus's": null, - "broncobuster": [["S", "M"]], - "broncobusters": null, - "broncobuster's": null, - "bronco": [["S", "M"]], - "broncos": null, - "bronco's": null, - "bronc": [["S"]], - "broncs": null, - "Bron": [["M"]], - "Bron's": null, - "Bronnie": [["M"]], - "Bronnie's": null, - "Bronny": [["M"]], - "Bronny's": null, - "Bronson": [["M"]], - "Bronson's": null, - "Bronte": null, - "brontosaur": [["S", "M"]], - "brontosaurs": null, - "brontosaur's": null, - "brontosaurus": [["S", "M"]], - "brontosauruses": null, - "brontosaurus's": null, - "Bronx": [["M"]], - "Bronx's": null, - "bronzed": [["M"]], - "bronzed's": null, - "bronze": [["S", "R", "D", "G", "M"]], - "bronzes": null, - "bronzer": null, - "bronzing": [["M"]], - "bronze's": null, - "bronzing's": null, - "brooch": [["M", "S"]], - "brooch's": null, - "brooches": null, - "brooder": [["M"]], - "brooder's": null, - "broodiness": [["M"]], - "broodiness's": null, - "brooding": [["Y"]], - "broodingly": null, - "broodmare": [["S", "M"]], - "broodmares": null, - "broodmare's": null, - "brood": [["S", "M", "R", "D", "G", "Z"]], - "broods": null, - "brood's": null, - "brooded": null, - "brooders": null, - "broody": [["P", "T", "R"]], - "broodiest": null, - "broodier": null, - "Brookdale": [["M"]], - "Brookdale's": null, - "Brooke": [["M"]], - "Brooke's": null, - "Brookfield": [["M"]], - "Brookfield's": null, - "Brookhaven": [["M"]], - "Brookhaven's": null, - "brooklet": [["M", "S"]], - "brooklet's": null, - "brooklets": null, - "Brooklyn": [["M"]], - "Brooklyn's": null, - "Brookmont": [["M"]], - "Brookmont's": null, - "brook": [["S", "G", "D", "M"]], - "brooks": null, - "brooking": null, - "brooked": null, - "brook's": null, - "brookside": null, - "Brook": [["S", "M"]], - "Brooks": null, - "Brook's": null, - "broom": [["S", "M", "D", "G"]], - "brooms": null, - "broom's": null, - "broomed": null, - "brooming": null, - "broomstick": [["M", "S"]], - "broomstick's": null, - "broomsticks": null, - "Bros": null, - "Brose": [["M"]], - "Brose's": null, - "bro": [["S", "H"]], - "bros": [["S"]], - "broth": [["Z", "M", "R"]], - "broses": null, - "brothel": [["M", "S"]], - "brothel's": null, - "brothels": null, - "brother": [["D", "Y", "M", "G"]], - "brothered": null, - "brotherly": [["P"]], - "brother's": null, - "brothering": null, - "brotherhood": [["S", "M"]], - "brotherhoods": null, - "brotherhood's": null, - "brotherliness": [["M", "S"]], - "brotherliness's": null, - "brotherlinesses": null, - "broths": null, - "brothers": null, - "broth's": null, - "brougham": [["M", "S"]], - "brougham's": null, - "broughams": null, - "brought": null, - "brouhaha": [["M", "S"]], - "brouhaha's": null, - "brouhahas": null, - "browbeat": [["N", "S", "G"]], - "browbeaten": null, - "browbeats": null, - "browbeating": null, - "brow": [["M", "S"]], - "brow's": null, - "brows": [["S", "R", "D", "G", "Z"]], - "Brownell": [["M"]], - "Brownell's": null, - "Browne": [["M"]], - "Browne's": null, - "Brownian": [["M"]], - "Brownian's": null, - "Brownie": [["M", "S"]], - "Brownie's": null, - "Brownies": null, - "brownie": [["M", "T", "R", "S"]], - "brownie's": null, - "browniest": null, - "brownier": null, - "brownies": null, - "browning": [["M"]], - "browning's": null, - "Browning": [["M"]], - "Browning's": null, - "brownish": null, - "Brown": [["M", "G"]], - "Brown's": null, - "brownness": [["M", "S"]], - "brownness's": null, - "brownnesses": null, - "brownout": [["M", "S"]], - "brownout's": null, - "brownouts": null, - "brownstone": [["M", "S"]], - "brownstone's": null, - "brownstones": null, - "Brownsville": [["M"]], - "Brownsville's": null, - "brown": [["Y", "R", "D", "M", "S", "J", "G", "T", "P"]], - "brownly": null, - "browner": null, - "browned": null, - "brown's": null, - "browns": null, - "brownings": null, - "brownest": null, - "browse": null, - "browser": [["M"]], - "browser's": null, - "browses": null, - "browsed": null, - "browsing": null, - "browsers": null, - "brr": null, - "Br": [["T", "M", "N"]], - "Br's": null, - "Brubeck": [["M"]], - "Brubeck's": null, - "brucellosis": [["M"]], - "brucellosis's": null, - "Bruce": [["M"]], - "Bruce's": null, - "Brucie": [["M"]], - "Brucie's": null, - "Bruckner": [["M"]], - "Bruckner's": null, - "Bruegel": [["M"]], - "Bruegel's": null, - "Brueghel's": null, - "bruin": [["M", "S"]], - "bruin's": null, - "bruins": null, - "bruised": [["U"]], - "unbruised": null, - "bruise": [["J", "G", "S", "R", "D", "Z"]], - "bruisings": null, - "bruising": null, - "bruises": null, - "bruiser": [["M"]], - "bruisers": null, - "bruiser's": null, - "Bruis": [["M"]], - "Bruis's": null, - "bruit": [["D", "S", "G"]], - "bruited": null, - "bruits": null, - "bruiting": null, - "Brumidi": [["M"]], - "Brumidi's": null, - "Brummel": [["M"]], - "Brummel's": null, - "brunch": [["M", "D", "S", "G"]], - "brunch's": null, - "brunched": null, - "brunches": null, - "brunching": null, - "Brunei": [["M"]], - "Brunei's": null, - "Brunelleschi": [["M"]], - "Brunelleschi's": null, - "brunet": [["S"]], - "brunets": null, - "brunette": [["S", "M"]], - "brunettes": null, - "brunette's": null, - "Brunhilda": [["M"]], - "Brunhilda's": null, - "Brunhilde": [["M"]], - "Brunhilde's": null, - "Bruno": [["M"]], - "Bruno's": null, - "Brunswick": [["M"]], - "Brunswick's": null, - "brunt": [["G", "S", "M", "D"]], - "brunting": null, - "brunts": null, - "brunt's": null, - "brunted": null, - "brusher": [["M"]], - "brusher's": null, - "brushfire": [["M", "S"]], - "brushfire's": null, - "brushfires": null, - "brushlike": null, - "brush": [["M", "S", "R", "D", "G"]], - "brush's": null, - "brushes": null, - "brushed": null, - "brushing": null, - "brushoff": [["S"]], - "brushoffs": null, - "brushwood": [["S", "M"]], - "brushwoods": null, - "brushwood's": null, - "brushwork": [["M", "S"]], - "brushwork's": null, - "brushworks": null, - "brushy": [["R"]], - "brushier": null, - "brusqueness": [["M", "S"]], - "brusqueness's": null, - "brusquenesses": null, - "brusque": [["P", "Y", "T", "R"]], - "brusquely": null, - "brusquest": null, - "brusquer": null, - "Brussels": null, - "brutality": [["S", "M"]], - "brutalities": null, - "brutality's": null, - "brutalization": [["S", "M"]], - "brutalizations": null, - "brutalization's": null, - "brutalized": [["U"]], - "unbrutalized": null, - "brutalizes": [["A", "U"]], - "rebrutalizes": null, - "unbrutalizes": null, - "brutalize": [["S", "D", "G"]], - "brutalizing": null, - "brutal": [["Y"]], - "brutally": null, - "brute": [["D", "S", "R", "G", "M"]], - "bruted": null, - "brutes": null, - "bruter": null, - "bruting": null, - "brute's": null, - "brutishness": [["S", "M"]], - "brutishnesses": null, - "brutishness's": null, - "brutish": [["Y", "P"]], - "brutishly": null, - "Brutus": [["M"]], - "Brutus's": null, - "Bruxelles": [["M"]], - "Bruxelles's": null, - "Bryana": [["M"]], - "Bryana's": null, - "Bryan": [["M"]], - "Bryan's": null, - "Bryant": [["M"]], - "Bryant's": null, - "Bryanty": [["M"]], - "Bryanty's": null, - "Bryce": [["M"]], - "Bryce's": null, - "Bryna": [["M"]], - "Bryna's": null, - "Bryn": [["M"]], - "Bryn's": null, - "Brynna": [["M"]], - "Brynna's": null, - "Brynne": [["M"]], - "Brynne's": null, - "Brynner": [["M"]], - "Brynner's": null, - "Brynn": [["R", "M"]], - "Brynn's": null, - "Bryon": [["M"]], - "Bryon's": null, - "Brzezinski": [["M"]], - "Brzezinski's": null, - "B's": null, - "BS": null, - "BSA": null, - "BSD": null, - "Btu": null, - "BTU": null, - "BTW": null, - "bu": null, - "bubblegum": [["S"]], - "bubblegums": null, - "bubbler": [["M"]], - "bubbler's": null, - "bubble": [["R", "S", "D", "G", "M"]], - "bubbles": null, - "bubbled": null, - "bubbling": null, - "bubble's": null, - "bubbly": [["T", "R", "S"]], - "bubbliest": null, - "bubblier": null, - "bubblies": null, - "Buber": [["M"]], - "Buber's": null, - "bub": [["M", "S"]], - "bub's": null, - "bubs": null, - "buboes": null, - "bubo": [["M"]], - "bubo's": null, - "bubonic": null, - "buccaneer": [["G", "M", "D", "S"]], - "buccaneering": null, - "buccaneer's": null, - "buccaneered": null, - "buccaneers": null, - "Buchanan": [["M"]], - "Buchanan's": null, - "Bucharest": [["M"]], - "Bucharest's": null, - "Buchenwald": [["M"]], - "Buchenwald's": null, - "Buchwald": [["M"]], - "Buchwald's": null, - "buckaroo": [["S", "M"]], - "buckaroos": null, - "buckaroo's": null, - "buckboard": [["S", "M"]], - "buckboards": null, - "buckboard's": null, - "bucker": [["M"]], - "bucker's": null, - "bucketful": [["M", "S"]], - "bucketful's": null, - "bucketfuls": null, - "bucket": [["S", "G", "M", "D"]], - "buckets": null, - "bucketing": null, - "bucket's": null, - "bucketed": null, - "buckeye": [["S", "M"]], - "buckeyes": null, - "buckeye's": null, - "buck": [["G", "S", "D", "R", "M"]], - "bucking": null, - "bucks": null, - "bucked": null, - "buck's": null, - "buckhorn": [["M"]], - "buckhorn's": null, - "Buckie": [["M"]], - "Buckie's": null, - "Buckingham": [["M"]], - "Buckingham's": null, - "buckled": [["U"]], - "unbuckled": null, - "buckler": [["M", "D", "G"]], - "buckler's": null, - "bucklered": null, - "bucklering": null, - "buckle": [["R", "S", "D", "G", "M", "Z"]], - "buckles": [["U"]], - "buckling": [["U"]], - "buckle's": null, - "bucklers": null, - "unbuckles": null, - "Buckley": [["M"]], - "Buckley's": null, - "buckling's": null, - "unbuckling": null, - "Buck": [["M"]], - "Buck's": null, - "Buckner": [["M"]], - "Buckner's": null, - "buckram": [["G", "S", "D", "M"]], - "buckraming": null, - "buckrams": null, - "buckramed": null, - "buckram's": null, - "bucksaw": [["S", "M"]], - "bucksaws": null, - "bucksaw's": null, - "buckshot": [["M", "S"]], - "buckshot's": null, - "buckshots": null, - "buckskin": [["S", "M"]], - "buckskins": null, - "buckskin's": null, - "buckteeth": null, - "bucktooth": [["D", "M"]], - "bucktoothed": null, - "bucktooth's": null, - "buckwheat": [["S", "M"]], - "buckwheats": null, - "buckwheat's": null, - "Bucky": [["M"]], - "Bucky's": null, - "bucolically": null, - "bucolic": [["S"]], - "bucolics": null, - "Budapest": [["M"]], - "Budapest's": null, - "budded": null, - "Buddha": [["M", "S"]], - "Buddha's": null, - "Buddhas": null, - "Buddhism": [["S", "M"]], - "Buddhisms": null, - "Buddhism's": null, - "Buddhist": [["S", "M"]], - "Buddhists": null, - "Buddhist's": null, - "Buddie": [["M"]], - "Buddie's": null, - "budding": [["S"]], - "buddings": null, - "Budd": [["M"]], - "Budd's": null, - "buddy": [["G", "S", "D", "M"]], - "buddying": null, - "buddies": null, - "buddied": null, - "buddy's": null, - "Buddy": [["M"]], - "Buddy's": null, - "budge": [["G", "D", "S"]], - "budging": [["U"]], - "budged": null, - "budges": null, - "budgerigar": [["M", "S"]], - "budgerigar's": null, - "budgerigars": null, - "budgetary": null, - "budgeter": [["M"]], - "budgeter's": null, - "budget": [["G", "M", "R", "D", "Z", "S"]], - "budgeting": null, - "budget's": null, - "budgeted": null, - "budgeters": null, - "budgets": null, - "budgie": [["M", "S"]], - "budgie's": null, - "budgies": null, - "unbudging": [["Y"]], - "Bud": [["M"]], - "Bud's": null, - "bud": [["M", "S"]], - "bud's": null, - "buds": null, - "Budweiser": [["M", "S"]], - "Budweiser's": null, - "Budweisers": null, - "Buehring": [["M"]], - "Buehring's": null, - "Buena": [["M"]], - "Buena's": null, - "buffaloes": null, - "Buffalo": [["M"]], - "Buffalo's": null, - "buffalo": [["M", "D", "G"]], - "buffalo's": null, - "buffaloed": null, - "buffaloing": null, - "buff": [["A", "S", "G", "D"]], - "rebuff": null, - "rebuffs": null, - "rebuffing": null, - "rebuffed": null, - "buffs": null, - "buffing": null, - "buffed": null, - "buffered": [["U"]], - "unbuffered": null, - "bufferer": [["M"]], - "bufferer's": null, - "buffer": [["R", "D", "M", "S", "G", "Z"]], - "buffer's": null, - "buffers": null, - "buffering": null, - "bufferers": null, - "buffet": [["G", "M", "D", "J", "S"]], - "buffeting": null, - "buffet's": null, - "buffeted": null, - "buffetings": null, - "buffets": null, - "bufflehead": [["M"]], - "bufflehead's": null, - "buffoonery": [["M", "S"]], - "buffoonery's": null, - "buffooneries": null, - "buffoonish": null, - "buffoon": [["S", "M"]], - "buffoons": null, - "buffoon's": null, - "buff's": null, - "Buffy": [["M"]], - "Buffy's": null, - "Buford": [["M"]], - "Buford's": null, - "bugaboo": [["S", "M"]], - "bugaboos": null, - "bugaboo's": null, - "Bugatti": [["M"]], - "Bugatti's": null, - "bugbear": [["S", "M"]], - "bugbears": null, - "bugbear's": null, - "bug": [["C", "S"]], - "debug": null, - "debugs": null, - "bugs": null, - "bugeyed": null, - "bugged": [["C"]], - "debugged": null, - "buggered": null, - "buggering": null, - "bugger": [["S", "C", "M", "!"]], - "buggers": null, - "debuggers": null, - "debugger": null, - "debugger's": null, - "bugger's": null, - "buggery": [["M"]], - "buggery's": null, - "bugging": [["C"]], - "debugging": null, - "buggy": [["R", "S", "M", "T"]], - "buggier": null, - "buggies": null, - "buggy's": null, - "buggiest": null, - "bugle": [["G", "M", "D", "S", "R", "Z"]], - "bugling": null, - "bugle's": null, - "bugled": null, - "bugles": null, - "bugler": [["M"]], - "buglers": null, - "bugler's": null, - "bug's": null, - "Buick": [["M"]], - "Buick's": null, - "builder": [["S", "M"]], - "builders": null, - "builder's": null, - "building": [["S", "M"]], - "buildings": null, - "building's": null, - "build": [["S", "A", "G"]], - "builds": null, - "rebuilds": null, - "rebuild": null, - "rebuilding": null, - "buildup": [["M", "S"]], - "buildup's": null, - "buildups": null, - "built": [["A", "U", "I"]], - "rebuilt": null, - "unbuilt": null, - "inbuilt": null, - "Buiron": [["M"]], - "Buiron's": null, - "Bujumbura": [["M"]], - "Bujumbura's": null, - "Bukhara": [["M"]], - "Bukhara's": null, - "Bukharin": [["M"]], - "Bukharin's": null, - "Bulawayo": [["M"]], - "Bulawayo's": null, - "Bulba": [["M"]], - "Bulba's": null, - "bulb": [["D", "M", "G", "S"]], - "bulbed": null, - "bulb's": null, - "bulbing": null, - "bulbs": null, - "bulblet": null, - "bulbous": null, - "Bulfinch": [["M"]], - "Bulfinch's": null, - "Bulganin": [["M"]], - "Bulganin's": null, - "Bulgaria": [["M"]], - "Bulgaria's": null, - "Bulgarian": [["S"]], - "Bulgarians": null, - "bulge": [["D", "S", "G", "M"]], - "bulged": null, - "bulges": null, - "bulging": null, - "bulge's": null, - "bulgy": [["R", "T"]], - "bulgier": null, - "bulgiest": null, - "bulimarexia": [["S"]], - "bulimarexias": null, - "bulimia": [["M", "S"]], - "bulimia's": null, - "bulimias": null, - "bulimic": [["S"]], - "bulimics": null, - "bulk": [["G", "D", "R", "M", "S"]], - "bulking": null, - "bulked": null, - "bulker": null, - "bulk's": null, - "bulks": null, - "bulkhead": [["S", "D", "M"]], - "bulkheads": null, - "bulkheaded": null, - "bulkhead's": null, - "bulkiness": [["S", "M"]], - "bulkinesses": null, - "bulkiness's": null, - "bulky": [["R", "P", "T"]], - "bulkier": null, - "bulkiest": null, - "bulldogged": null, - "bulldogger": null, - "bulldogging": null, - "bulldog": [["S", "M"]], - "bulldogs": null, - "bulldog's": null, - "bulldoze": [["G", "R", "S", "D", "Z"]], - "bulldozing": null, - "bulldozer": [["M"]], - "bulldozes": null, - "bulldozed": null, - "bulldozers": null, - "bulldozer's": null, - "bullet": [["G", "M", "D", "S"]], - "bulleting": null, - "bullet's": null, - "bulleted": null, - "bullets": null, - "bulletin": [["S", "G", "M", "D"]], - "bulletins": null, - "bulletining": null, - "bulletin's": null, - "bulletined": null, - "bulletproof": [["S", "G", "D"]], - "bulletproofs": null, - "bulletproofing": null, - "bulletproofed": null, - "bullfighter": [["M"]], - "bullfighter's": null, - "bullfighting": [["M"]], - "bullfighting's": null, - "bullfight": [["S", "J", "G", "Z", "M", "R"]], - "bullfights": null, - "bullfightings": null, - "bullfighters": null, - "bullfight's": null, - "bullfinch": [["M", "S"]], - "bullfinch's": null, - "bullfinches": null, - "bullfrog": [["S", "M"]], - "bullfrogs": null, - "bullfrog's": null, - "bullhead": [["D", "M", "S"]], - "bullheaded": [["Y", "P"]], - "bullhead's": null, - "bullheads": null, - "bullheadedness": [["S", "M"]], - "bullheadednesses": null, - "bullheadedness's": null, - "bullheadedly": null, - "bullhide": null, - "bullhorn": [["S", "M"]], - "bullhorns": null, - "bullhorn's": null, - "bullied": [["M"]], - "bullied's": null, - "bullion": [["S", "M"]], - "bullions": null, - "bullion's": null, - "bullishness": [["S", "M"]], - "bullishnesses": null, - "bullishness's": null, - "bullish": [["P", "Y"]], - "bullishly": null, - "bull": [["M", "D", "G", "S"]], - "bull's": null, - "bulled": null, - "bulling": null, - "bulls": null, - "Bullock": [["M"]], - "Bullock's": null, - "bullock": [["M", "S"]], - "bullock's": null, - "bullocks": null, - "bullpen": [["M", "S"]], - "bullpen's": null, - "bullpens": null, - "bullring": [["S", "M"]], - "bullrings": null, - "bullring's": null, - "bullseye": null, - "bullshit": [["M", "S", "!"]], - "bullshit's": null, - "bullshits": null, - "bullshitted": [["!"]], - "bullshitter": [["S", "!"]], - "bullshitters": null, - "bullshitting": [["!"]], - "bullwhackers": null, - "Bullwinkle": [["M"]], - "Bullwinkle's": null, - "bullyboy": [["M", "S"]], - "bullyboy's": null, - "bullyboys": null, - "bullying": [["M"]], - "bullying's": null, - "bully": [["T", "R", "S", "D", "G", "M"]], - "bulliest": null, - "bullier": null, - "bullies": null, - "bully's": null, - "bulrush": [["S", "M"]], - "bulrushes": null, - "bulrush's": null, - "Bultmann": [["M"]], - "Bultmann's": null, - "bulwark": [["G", "M", "D", "S"]], - "bulwarking": null, - "bulwark's": null, - "bulwarked": null, - "bulwarks": null, - "bumblebee": [["M", "S"]], - "bumblebee's": null, - "bumblebees": null, - "bumble": [["J", "G", "Z", "R", "S", "D"]], - "bumblings": null, - "bumbling": [["Y"]], - "bumblers": null, - "bumbler": [["M"]], - "bumbles": null, - "bumbled": null, - "bumbler's": null, - "bumblingly": null, - "Bumbry": [["M"]], - "Bumbry's": null, - "bummed": [["M"]], - "bummed's": null, - "bummer": [["M", "S"]], - "bummer's": null, - "bummers": null, - "bummest": null, - "bumming": [["M"]], - "bumming's": null, - "bumper": [["D", "M", "G"]], - "bumpered": null, - "bumper's": null, - "bumpering": null, - "bump": [["G", "Z", "D", "R", "S"]], - "bumping": null, - "bumpers": null, - "bumped": null, - "bumps": null, - "bumpiness": [["M", "S"]], - "bumpiness's": null, - "bumpinesses": null, - "bumpkin": [["M", "S"]], - "bumpkin's": null, - "bumpkins": null, - "Bumppo": [["M"]], - "Bumppo's": null, - "bumptiousness": [["S", "M"]], - "bumptiousnesses": null, - "bumptiousness's": null, - "bumptious": [["P", "Y"]], - "bumptiously": null, - "bumpy": [["P", "R", "T"]], - "bumpier": null, - "bumpiest": null, - "bum": [["S", "M"]], - "bums": null, - "bum's": null, - "Bunche": [["M"]], - "Bunche's": null, - "bunch": [["M", "S", "D", "G"]], - "bunch's": null, - "bunches": null, - "bunched": null, - "bunching": null, - "bunchy": [["R", "T"]], - "bunchier": null, - "bunchiest": null, - "buncombe's": null, - "bunco's": null, - "Bundestag": [["M"]], - "Bundestag's": null, - "bundled": [["U"]], - "unbundled": null, - "bundle": [["G", "M", "R", "S", "D"]], - "bundling": null, - "bundle's": null, - "bundler": [["M"]], - "bundles": null, - "bundler's": null, - "Bundy": [["M"]], - "Bundy's": null, - "bungalow": [["M", "S"]], - "bungalow's": null, - "bungalows": null, - "bungee": [["S", "M"]], - "bungees": null, - "bungee's": null, - "bung": [["G", "D", "M", "S"]], - "bunging": null, - "bunged": null, - "bung's": null, - "bungs": null, - "bunghole": [["M", "S"]], - "bunghole's": null, - "bungholes": null, - "bungle": [["G", "Z", "R", "S", "D"]], - "bungling": [["Y"]], - "bunglers": null, - "bungler": [["M"]], - "bungles": null, - "bungled": null, - "bungler's": null, - "bunglingly": null, - "Bunin": [["M"]], - "Bunin's": null, - "bunion": [["S", "M"]], - "bunions": null, - "bunion's": null, - "bunk": [["C", "S", "G", "D", "R"]], - "debunk": null, - "debunks": null, - "debunking": null, - "debunked": null, - "debunker": null, - "bunks": null, - "bunking": null, - "bunked": null, - "bunker": [["S", "D", "M", "G"]], - "Bunker": [["M"]], - "Bunker's": null, - "bunker's": [["C"]], - "debunker's": null, - "bunkers": null, - "bunkered": null, - "bunkering": null, - "bunkhouse": [["S", "M"]], - "bunkhouses": null, - "bunkhouse's": null, - "bunkmate": [["M", "S"]], - "bunkmate's": null, - "bunkmates": null, - "bunko's": null, - "bunk's": null, - "bunkum": [["S", "M"]], - "bunkums": null, - "bunkum's": null, - "Bunnie": [["M"]], - "Bunnie's": null, - "Bunni": [["M"]], - "Bunni's": null, - "Bunny": [["M"]], - "Bunny's": null, - "bunny": [["S", "M"]], - "bunnies": null, - "bunny's": null, - "Bunsen": [["S", "M"]], - "Bunsens": null, - "Bunsen's": null, - "bun": [["S", "M"]], - "buns": null, - "bun's": null, - "bunt": [["G", "J", "Z", "D", "R", "S"]], - "bunting": [["M"]], - "buntings": null, - "bunters": null, - "bunted": null, - "bunter": null, - "bunts": null, - "bunting's": null, - "Bu�uel": [["M"]], - "Bu�uel's": null, - "Bunyan": [["M"]], - "Bunyan's": null, - "buoyancy": [["M", "S"]], - "buoyancy's": null, - "buoyancies": null, - "buoyant": [["Y"]], - "buoyantly": null, - "buoy": [["S", "M", "D", "G"]], - "buoys": null, - "buoy's": null, - "buoyed": null, - "buoying": null, - "Burbank": [["M"]], - "Burbank's": null, - "burbler": [["M"]], - "burbler's": null, - "burble": [["R", "S", "D", "G"]], - "burbles": null, - "burbled": null, - "burbling": null, - "burbs": null, - "Burch": [["M"]], - "Burch's": null, - "burden's": null, - "burdensomeness": [["M"]], - "burdensomeness's": null, - "burdensome": [["P", "Y"]], - "burdensomely": null, - "burden": [["U", "G", "D", "S"]], - "unburden": null, - "unburdening": null, - "unburdened": null, - "unburdens": null, - "burdening": null, - "burdened": null, - "burdens": null, - "burdock": [["S", "M"]], - "burdocks": null, - "burdock's": null, - "bureaucracy": [["M", "S"]], - "bureaucracy's": null, - "bureaucracies": null, - "bureaucratically": null, - "bureaucratic": [["U"]], - "unbureaucratic": null, - "bureaucratization": [["M", "S"]], - "bureaucratization's": null, - "bureaucratizations": null, - "bureaucratize": [["S", "D", "G"]], - "bureaucratizes": null, - "bureaucratized": null, - "bureaucratizing": null, - "bureaucrat": [["M", "S"]], - "bureaucrat's": null, - "bureaucrats": null, - "bureau": [["M", "S"]], - "bureau's": null, - "bureaus": null, - "burgeon": [["G", "D", "S"]], - "burgeoning": null, - "burgeoned": null, - "burgeons": null, - "burger": [["M"]], - "burger's": null, - "Burger": [["M"]], - "Burger's": null, - "Burgess": [["M"]], - "Burgess's": null, - "burgess": [["M", "S"]], - "burgess's": null, - "burgesses": null, - "burgher": [["M"]], - "burgher's": null, - "burgh": [["M", "R", "Z"]], - "burgh's": null, - "burghers": null, - "burghs": null, - "burglarize": [["G", "D", "S"]], - "burglarizing": null, - "burglarized": null, - "burglarizes": null, - "burglarproof": [["D", "G", "S"]], - "burglarproofed": null, - "burglarproofing": null, - "burglarproofs": null, - "burglar": [["S", "M"]], - "burglars": null, - "burglar's": null, - "burglary": [["M", "S"]], - "burglary's": null, - "burglaries": null, - "burgle": [["S", "D", "G"]], - "burgles": null, - "burgled": null, - "burgling": null, - "burgomaster": [["S", "M"]], - "burgomasters": null, - "burgomaster's": null, - "Burgoyne": [["M"]], - "Burgoyne's": null, - "Burg": [["R", "M"]], - "Burg's": null, - "burg": [["S", "Z", "R", "M"]], - "burgs": null, - "burgers": null, - "burg's": null, - "Burgundian": [["S"]], - "Burgundians": null, - "Burgundy": [["M", "S"]], - "Burgundy's": null, - "Burgundies": null, - "burgundy": [["S"]], - "burgundies": null, - "burial": [["A", "S", "M"]], - "reburial": null, - "reburials": null, - "reburial's": null, - "burials": null, - "burial's": null, - "buried": [["U"]], - "unburied": null, - "burier": [["M"]], - "burier's": null, - "Burke": [["M"]], - "Burke's": null, - "Burk": [["S", "M"]], - "Burks": null, - "Burk's": null, - "burlap": [["M", "S"]], - "burlap's": null, - "burlaps": null, - "burler": [["M"]], - "burler's": null, - "burlesquer": [["M"]], - "burlesquer's": null, - "burlesque": [["S", "R", "D", "M", "Y", "G"]], - "burlesques": null, - "burlesqued": null, - "burlesque's": null, - "burlesquely": null, - "burlesquing": null, - "burley": [["M"]], - "burley's": null, - "Burlie": [["M"]], - "Burlie's": null, - "burliness": [["S", "M"]], - "burlinesses": null, - "burliness's": null, - "Burlingame": [["M"]], - "Burlingame's": null, - "Burlington": [["M"]], - "Burlington's": null, - "Burl": [["M"]], - "Burl's": null, - "burl": [["S", "M", "D", "R", "G"]], - "burls": null, - "burl's": null, - "burled": null, - "burling": null, - "burly": [["P", "R", "T"]], - "burlier": null, - "burliest": null, - "Burma": [["M"]], - "Burma's": null, - "Burmese": null, - "bur": [["M", "Y", "S"]], - "bur's": null, - "burs": null, - "burnable": [["S"]], - "burnables": null, - "Burnaby": [["M"]], - "Burnaby's": null, - "Burnard": [["M"]], - "Burnard's": null, - "burned": [["U"]], - "unburned": null, - "Burne": [["M", "S"]], - "Burne's": null, - "Burnes": null, - "burner": [["M"]], - "burner's": null, - "Burnett": [["M"]], - "Burnett's": null, - "burn": [["G", "Z", "S", "D", "R", "B", "J"]], - "burning": [["Y"]], - "burners": null, - "burns": null, - "burnings": null, - "burningly": null, - "burnisher": [["M"]], - "burnisher's": null, - "burnish": [["G", "D", "R", "S", "Z"]], - "burnishing": null, - "burnished": null, - "burnishes": null, - "burnishers": null, - "burnoose": [["M", "S"]], - "burnoose's": null, - "burnooses": null, - "burnout": [["M", "S"]], - "burnout's": null, - "burnouts": null, - "Burns": null, - "Burnside": [["M", "S"]], - "Burnside's": null, - "Burnsides": null, - "burnt": [["Y", "P"]], - "burntly": null, - "burntness": null, - "burp": [["S", "G", "M", "D"]], - "burps": null, - "burping": null, - "burp's": null, - "burped": null, - "burr": [["G", "S", "D", "R", "M"]], - "burring": null, - "burrs": null, - "burred": null, - "burrer": null, - "burr's": null, - "Burris": [["M"]], - "Burris's": null, - "burrito": [["S"]], - "burritos": null, - "Burr": [["M"]], - "Burr's": null, - "burro": [["S", "M"]], - "burros": null, - "burro's": null, - "Burroughs": [["M"]], - "Burroughs's": null, - "burrower": [["M"]], - "burrower's": null, - "burrow": [["G", "R", "D", "M", "Z", "S"]], - "burrowing": null, - "burrowed": null, - "burrow's": null, - "burrowers": null, - "burrows": null, - "bursae": null, - "bursa": [["M"]], - "bursa's": null, - "Bursa": [["M"]], - "Bursa's": null, - "bursar": [["M", "S"]], - "bursar's": null, - "bursars": null, - "bursary": [["M", "S"]], - "bursary's": null, - "bursaries": null, - "bursitis": [["M", "S"]], - "bursitis's": null, - "bursitises": null, - "burster": [["M"]], - "burster's": null, - "burst": [["S", "R", "G"]], - "bursts": null, - "bursting": null, - "Burtie": [["M"]], - "Burtie's": null, - "Burt": [["M"]], - "Burt's": null, - "Burton": [["M"]], - "Burton's": null, - "Burty": [["M"]], - "Burty's": null, - "Burundian": [["S"]], - "Burundians": null, - "Burundi": [["M"]], - "Burundi's": null, - "bury": [["A", "S", "D", "G"]], - "rebury": null, - "reburies": null, - "reburied": null, - "reburying": null, - "buries": null, - "burying": null, - "busboy": [["M", "S"]], - "busboy's": null, - "busboys": null, - "busby": [["S", "M"]], - "busbies": null, - "busby's": null, - "Busch": [["M"]], - "Busch's": null, - "buses": [["A"]], - "rebuses": null, - "busgirl": [["S"]], - "busgirls": null, - "bus": [["G", "M", "D", "S", "J"]], - "busing": null, - "bus's": [["A"]], - "bused": null, - "busings": null, - "bushel": [["M", "D", "J", "S", "G"]], - "bushel's": null, - "busheled": null, - "bushelings": null, - "bushels": null, - "busheling": null, - "Bushido": [["M"]], - "Bushido's": null, - "bushiness": [["M", "S"]], - "bushiness's": null, - "bushinesses": null, - "bushing": [["M"]], - "bushing's": null, - "bush": [["J", "M", "D", "S", "R", "G"]], - "bushings": null, - "bush's": null, - "bushed": null, - "bushes": null, - "busher": null, - "bushland": null, - "Bush": [["M"]], - "Bush's": null, - "bushman": [["M"]], - "bushman's": null, - "bushmaster": [["S", "M"]], - "bushmasters": null, - "bushmaster's": null, - "bushmen": null, - "Bushnell": [["M"]], - "Bushnell's": null, - "bushwhacker": [["M"]], - "bushwhacker's": null, - "bushwhacking": [["M"]], - "bushwhacking's": null, - "bushwhack": [["R", "D", "G", "S", "Z"]], - "bushwhacked": null, - "bushwhacks": null, - "bushwhackers": null, - "bushy": [["P", "T", "R"]], - "bushiest": null, - "bushier": null, - "busily": null, - "businesslike": null, - "businessman": [["M"]], - "businessman's": null, - "businessmen": null, - "business": [["M", "S"]], - "business's": null, - "businesses": null, - "businesspeople": null, - "businessperson": [["S"]], - "businesspersons": null, - "businesswoman": [["M"]], - "businesswoman's": null, - "businesswomen": null, - "busker": [["M"]], - "busker's": null, - "busk": [["G", "R", "M"]], - "busking": null, - "busk's": null, - "buskin": [["S", "M"]], - "buskins": null, - "buskin's": null, - "rebus's": null, - "buss": [["D"]], - "bussed": null, - "bustard": [["M", "S"]], - "bustard's": null, - "bustards": null, - "buster": [["M"]], - "buster's": null, - "bustle": [["G", "S", "D"]], - "bustling": [["Y"]], - "bustles": null, - "bustled": null, - "bustlingly": null, - "bust": [["M", "S", "D", "R", "G", "Z"]], - "bust's": null, - "busts": null, - "busted": null, - "busting": null, - "busters": null, - "busty": [["R", "T"]], - "bustier": null, - "bustiest": null, - "busybody": [["M", "S"]], - "busybody's": null, - "busybodies": null, - "busy": [["D", "S", "R", "P", "T", "G"]], - "busied": null, - "busies": null, - "busier": null, - "busiest": null, - "busying": null, - "busyness": [["M", "S"]], - "busyness's": null, - "busynesses": null, - "busywork": [["S", "M"]], - "busyworks": null, - "busywork's": null, - "but": [["A", "C", "S"]], - "rebut": null, - "rebuts": null, - "debut": [["M", "D", "G"]], - "debuts": null, - "buts": null, - "butane": [["M", "S"]], - "butane's": null, - "butanes": null, - "butcherer": [["M"]], - "butcherer's": null, - "butcher": [["M", "D", "R", "Y", "G"]], - "butcher's": null, - "butchered": null, - "butcherly": null, - "butchering": null, - "butchery": [["M", "S"]], - "butchery's": null, - "butcheries": null, - "Butch": [["M"]], - "Butch's": null, - "butch": [["R", "S", "Z"]], - "butches": null, - "butchers": null, - "butene": [["M"]], - "butene's": null, - "Butler": [["M"]], - "Butler's": null, - "butler": [["S", "D", "M", "G"]], - "butlers": null, - "butlered": null, - "butler's": null, - "butlering": null, - "butted": [["A"]], - "rebutted": null, - "butte": [["M", "S"]], - "butte's": null, - "buttes": null, - "butterball": [["M", "S"]], - "butterball's": null, - "butterballs": null, - "buttercup": [["S", "M"]], - "buttercups": null, - "buttercup's": null, - "buttered": [["U"]], - "unbuttered": null, - "butterfat": [["M", "S"]], - "butterfat's": null, - "butterfats": null, - "Butterfield": [["M"]], - "Butterfield's": null, - "butterfingered": null, - "butterfingers": [["M"]], - "butterfingers's": null, - "butterfly": [["M", "G", "S", "D"]], - "butterfly's": null, - "butterflying": null, - "butterflies": null, - "butterflied": null, - "buttermilk": [["M", "S"]], - "buttermilk's": null, - "buttermilks": null, - "butternut": [["M", "S"]], - "butternut's": null, - "butternuts": null, - "butter": [["R", "D", "M", "G", "Z"]], - "butterer": null, - "butter's": null, - "buttering": null, - "butterers": null, - "butterscotch": [["S", "M"]], - "butterscotches": null, - "butterscotch's": null, - "buttery": [["T", "R", "S"]], - "butteriest": null, - "butterier": null, - "butteries": null, - "butting": [["M"]], - "butting's": null, - "buttock": [["S", "G", "M", "D"]], - "buttocks": null, - "buttocking": null, - "buttock's": null, - "buttocked": null, - "buttoner": [["M"]], - "buttoner's": null, - "buttonhole": [["G", "M", "R", "S", "D"]], - "buttonholing": null, - "buttonhole's": null, - "buttonholer": [["M"]], - "buttonholes": null, - "buttonholed": null, - "buttonholer's": null, - "button's": null, - "button": [["S", "U", "D", "G"]], - "buttons": null, - "unbuttons": null, - "unbutton": null, - "unbuttoned": null, - "unbuttoning": null, - "buttoned": null, - "buttoning": null, - "buttonweed": null, - "buttonwood": [["S", "M"]], - "buttonwoods": null, - "buttonwood's": null, - "buttress": [["M", "S", "D", "G"]], - "buttress's": null, - "buttresses": null, - "buttressed": null, - "buttressing": null, - "butt": [["S", "G", "Z", "M", "D", "R"]], - "butts": null, - "butters": null, - "butt's": null, - "butyl": [["M"]], - "butyl's": null, - "butyrate": [["M"]], - "butyrate's": null, - "buxomness": [["M"]], - "buxomness's": null, - "buxom": [["T", "P", "Y", "R"]], - "buxomest": null, - "buxomly": null, - "buxomer": null, - "Buxtehude": [["M"]], - "Buxtehude's": null, - "buyback": [["S"]], - "buybacks": null, - "buyer": [["M"]], - "buyer's": null, - "buyout": [["S"]], - "buyouts": null, - "buy": [["Z", "G", "R", "S"]], - "buyers": null, - "buying": null, - "buys": null, - "buzzard": [["M", "S"]], - "buzzard's": null, - "buzzards": null, - "buzz": [["D", "S", "R", "M", "G", "Z"]], - "buzzed": null, - "buzzes": null, - "buzzer": [["M"]], - "buzz's": null, - "buzzing": null, - "buzzers": null, - "buzzer's": null, - "buzzword": [["S", "M"]], - "buzzwords": null, - "buzzword's": null, - "buzzy": null, - "bx": null, - "bxs": null, - "byelaw's": null, - "Byelorussia's": null, - "bye": [["M", "Z", "S"]], - "bye's": null, - "byers": null, - "byes": null, - "Byers": [["M"]], - "Byers's": null, - "bygone": [["S"]], - "bygones": null, - "bylaw": [["S", "M"]], - "bylaws": null, - "bylaw's": null, - "byliner": [["M"]], - "byliner's": null, - "byline": [["R", "S", "D", "G", "M"]], - "bylines": null, - "bylined": null, - "bylining": null, - "byline's": null, - "BYOB": null, - "bypass": [["G", "S", "D", "M"]], - "bypassing": null, - "bypasses": null, - "bypassed": null, - "bypass's": null, - "bypath": [["M"]], - "bypath's": null, - "bypaths": null, - "byplay": [["S"]], - "byplays": null, - "byproduct": [["S", "M"]], - "byproducts": null, - "byproduct's": null, - "Byram": [["M"]], - "Byram's": null, - "Byran": [["M"]], - "Byran's": null, - "Byrann": [["M"]], - "Byrann's": null, - "Byrd": [["M"]], - "Byrd's": null, - "byre": [["S", "M"]], - "byres": null, - "byre's": null, - "Byrle": [["M"]], - "Byrle's": null, - "Byrne": [["M"]], - "Byrne's": null, - "byroad": [["M", "S"]], - "byroad's": null, - "byroads": null, - "Byrom": [["M"]], - "Byrom's": null, - "Byronic": null, - "Byronism": [["M"]], - "Byronism's": null, - "Byron": [["M"]], - "Byron's": null, - "bystander": [["S", "M"]], - "bystanders": null, - "bystander's": null, - "byte": [["S", "M"]], - "bytes": null, - "byte's": null, - "byway": [["S", "M"]], - "byways": null, - "byway's": null, - "byword": [["S", "M"]], - "bywords": null, - "byword's": null, - "byzantine": null, - "Byzantine": [["S"]], - "Byzantines": null, - "Byzantium": [["M"]], - "Byzantium's": null, - "by": [["Z", "R"]], - "biers": null, - "C": null, - "ca": null, - "CA": null, - "cabala": [["M", "S"]], - "cabala's": null, - "cabalas": null, - "caballed": null, - "caballero": [["S", "M"]], - "caballeros": null, - "caballero's": null, - "caballing": null, - "cabal": [["S", "M"]], - "cabals": null, - "cabal's": null, - "cabana": [["M", "S"]], - "cabana's": null, - "cabanas": null, - "cabaret": [["S", "M"]], - "cabarets": null, - "cabaret's": null, - "cabbage": [["M", "G", "S", "D"]], - "cabbage's": null, - "cabbaging": null, - "cabbages": null, - "cabbaged": null, - "cabbed": null, - "cabbing": null, - "cabby's": null, - "cabdriver": [["S", "M"]], - "cabdrivers": null, - "cabdriver's": null, - "caber": [["M"]], - "caber's": null, - "Cabernet": [["M"]], - "Cabernet's": null, - "cabinetmaker": [["S", "M"]], - "cabinetmakers": null, - "cabinetmaker's": null, - "cabinetmaking": [["M", "S"]], - "cabinetmaking's": null, - "cabinetmakings": null, - "cabinet": [["M", "S"]], - "cabinet's": null, - "cabinets": null, - "cabinetry": [["S", "M"]], - "cabinetries": null, - "cabinetry's": null, - "cabinetwork": [["M", "S"]], - "cabinetwork's": null, - "cabinetworks": null, - "cabin": [["G", "D", "M", "S"]], - "cabining": null, - "cabined": null, - "cabin's": null, - "cabins": null, - "cablecast": [["S", "G"]], - "cablecasts": null, - "cablecasting": null, - "cable": [["G", "M", "D", "S"]], - "cabling": null, - "cable's": null, - "cabled": null, - "cables": null, - "cablegram": [["S", "M"]], - "cablegrams": null, - "cablegram's": null, - "cabochon": [["M", "S"]], - "cabochon's": null, - "cabochons": null, - "caboodle": [["S", "M"]], - "caboodles": null, - "caboodle's": null, - "caboose": [["M", "S"]], - "caboose's": null, - "cabooses": null, - "Cabot": [["M"]], - "Cabot's": null, - "Cabrera": [["M"]], - "Cabrera's": null, - "Cabrini": [["M"]], - "Cabrini's": null, - "cabriolet": [["M", "S"]], - "cabriolet's": null, - "cabriolets": null, - "cab": [["S", "M", "R"]], - "cabs": null, - "cab's": null, - "cabstand": [["M", "S"]], - "cabstand's": null, - "cabstands": null, - "cacao": [["S", "M"]], - "cacaos": null, - "cacao's": null, - "cacciatore": null, - "cache": [["D", "S", "R", "G", "M"]], - "cached": null, - "caches": null, - "cacher": null, - "caching": null, - "cache's": null, - "cachepot": [["M", "S"]], - "cachepot's": null, - "cachepots": null, - "cachet": [["M", "D", "G", "S"]], - "cachet's": null, - "cacheted": null, - "cacheting": null, - "cachets": null, - "Cacilia": [["M"]], - "Cacilia's": null, - "Cacilie": [["M"]], - "Cacilie's": null, - "cackler": [["M"]], - "cackler's": null, - "cackle": [["R", "S", "D", "G", "Z"]], - "cackles": null, - "cackled": null, - "cackling": null, - "cacklers": null, - "cackly": null, - "CACM": null, - "cacophonist": null, - "cacophonous": null, - "cacophony": [["S", "M"]], - "cacophonies": null, - "cacophony's": null, - "cacti": null, - "cactus": [["M"]], - "cactus's": null, - "CAD": null, - "cadaverous": [["Y"]], - "cadaverously": null, - "cadaver": [["S", "M"]], - "cadavers": null, - "cadaver's": null, - "caddishness": [["S", "M"]], - "caddishnesses": null, - "caddishness's": null, - "caddish": [["P", "Y"]], - "caddishly": null, - "Caddric": [["M"]], - "Caddric's": null, - "caddy": [["G", "S", "D", "M"]], - "caddying": null, - "caddies": null, - "caddied": null, - "caddy's": null, - "cadence": [["C", "S", "M"]], - "decadence": null, - "decadences": null, - "decadence's": null, - "cadences": null, - "cadence's": null, - "cadenced": null, - "cadencing": null, - "cadent": [["C"]], - "decadent": [["Y", "S"]], - "cadenza": [["M", "S"]], - "cadenza's": null, - "cadenzas": null, - "cadet": [["S", "M"]], - "cadets": null, - "cadet's": null, - "Cadette": [["S"]], - "Cadettes": null, - "cadge": [["D", "S", "R", "G", "Z"]], - "cadged": null, - "cadges": null, - "cadger": [["M"]], - "cadging": null, - "cadgers": null, - "cadger's": null, - "Cadillac": [["M", "S"]], - "Cadillac's": null, - "Cadillacs": null, - "Cadiz": [["M"]], - "Cadiz's": null, - "Cad": [["M"]], - "Cad's": null, - "cadmium": [["M", "S"]], - "cadmium's": null, - "cadmiums": null, - "cadre": [["S", "M"]], - "cadres": null, - "cadre's": null, - "cad": [["S", "M"]], - "cads": null, - "cad's": null, - "caducei": null, - "caduceus": [["M"]], - "caduceus's": null, - "Caedmon": [["M"]], - "Caedmon's": null, - "Caesar": [["M", "S"]], - "Caesar's": null, - "Caesars": null, - "caesura": [["S", "M"]], - "caesuras": null, - "caesura's": null, - "caf�": [["M", "S"]], - "caf�'s": null, - "caf�s": null, - "cafeteria": [["S", "M"]], - "cafeterias": null, - "cafeteria's": null, - "caffeine": [["S", "M"]], - "caffeines": null, - "caffeine's": null, - "caftan": [["S", "M"]], - "caftans": null, - "caftan's": null, - "caged": [["U"]], - "uncaged": null, - "Cage": [["M"]], - "Cage's": null, - "cage": [["M", "Z", "G", "D", "R", "S"]], - "cage's": null, - "cagers": null, - "caging": null, - "cager": [["M"]], - "cages": null, - "cager's": null, - "cagey": [["P"]], - "cageyness": null, - "cagier": null, - "cagiest": null, - "cagily": null, - "caginess": [["M", "S"]], - "caginess's": null, - "caginesses": null, - "Cagney": [["M"]], - "Cagney's": null, - "Cahokia": [["M"]], - "Cahokia's": null, - "cahoot": [["M", "S"]], - "cahoot's": null, - "cahoots": null, - "Cahra": [["M"]], - "Cahra's": null, - "CAI": null, - "Caiaphas": [["M"]], - "Caiaphas's": null, - "caiman's": null, - "Caine": [["M"]], - "Caine's": null, - "Cain": [["M", "S"]], - "Cain's": null, - "Cains": null, - "Cairistiona": [["M"]], - "Cairistiona's": null, - "cairn": [["S", "D", "M"]], - "cairns": null, - "cairned": null, - "cairn's": null, - "Cairo": [["M"]], - "Cairo's": null, - "caisson": [["S", "M"]], - "caissons": null, - "caisson's": null, - "caitiff": [["M", "S"]], - "caitiff's": null, - "caitiffs": null, - "Caitlin": [["M"]], - "Caitlin's": null, - "Caitrin": [["M"]], - "Caitrin's": null, - "cajole": [["L", "G", "Z", "R", "S", "D"]], - "cajolement": [["M", "S"]], - "cajoling": null, - "cajolers": null, - "cajoler": [["M"]], - "cajoles": null, - "cajoled": null, - "cajolement's": null, - "cajolements": null, - "cajoler's": null, - "cajolery": [["S", "M"]], - "cajoleries": null, - "cajolery's": null, - "Cajun": [["M", "S"]], - "Cajun's": null, - "Cajuns": null, - "cake": [["M", "G", "D", "S"]], - "cake's": null, - "caking": null, - "caked": null, - "cakes": null, - "cakewalk": [["S", "M", "D", "G"]], - "cakewalks": null, - "cakewalk's": null, - "cakewalked": null, - "cakewalking": null, - "calabash": [["S", "M"]], - "calabashes": null, - "calabash's": null, - "calaboose": [["M", "S"]], - "calaboose's": null, - "calabooses": null, - "Calais": [["M"]], - "Calais's": null, - "calamari": [["S"]], - "calamaris": null, - "calamine": [["G", "S", "D", "M"]], - "calamining": null, - "calamines": null, - "calamined": null, - "calamine's": null, - "calamitousness": [["M"]], - "calamitousness's": null, - "calamitous": [["Y", "P"]], - "calamitously": null, - "calamity": [["M", "S"]], - "calamity's": null, - "calamities": null, - "cal": [["C"]], - "decal": [["S", "M"]], - "calcareousness": [["M"]], - "calcareousness's": null, - "calcareous": [["P", "Y"]], - "calcareously": null, - "calciferous": null, - "calcification": [["M"]], - "calcification's": null, - "calcify": [["X", "G", "N", "S", "D"]], - "calcifications": null, - "calcifying": null, - "calcifies": null, - "calcified": null, - "calcimine": [["G", "M", "S", "D"]], - "calcimining": null, - "calcimine's": null, - "calcimines": null, - "calcimined": null, - "calcine": [["S", "D", "G"]], - "calcines": null, - "calcined": null, - "calcining": null, - "calcite": [["S", "M"]], - "calcites": null, - "calcite's": null, - "calcium": [["S", "M"]], - "calciums": null, - "calcium's": null, - "Calcomp": [["M"]], - "Calcomp's": null, - "CalComp": [["M"]], - "CalComp's": null, - "CALCOMP": [["M"]], - "CALCOMP's": null, - "calculability": [["I", "M"]], - "incalculability": null, - "incalculability's": null, - "calculability's": null, - "calculable": [["I", "P"]], - "incalculable": null, - "incalculableness": [["M"]], - "calculableness": null, - "calculate": [["A", "X", "N", "G", "D", "S"]], - "recalculate": null, - "recalculations": null, - "recalculation": null, - "recalculating": null, - "recalculated": null, - "recalculates": null, - "calculations": null, - "calculation": [["A", "M"]], - "calculating": [["U"]], - "calculated": [["P", "Y"]], - "calculates": null, - "calculatedness": null, - "calculatedly": null, - "calculatingly": null, - "uncalculating": null, - "recalculation's": null, - "calculation's": null, - "calculative": null, - "calculator": [["S", "M"]], - "calculators": null, - "calculator's": null, - "calculi": null, - "calculus": [["M"]], - "calculus's": null, - "Calcutta": [["M"]], - "Calcutta's": null, - "caldera": [["S", "M"]], - "calderas": null, - "caldera's": null, - "Calder": [["M"]], - "Calder's": null, - "Calderon": [["M"]], - "Calderon's": null, - "caldron's": null, - "Caldwell": [["M"]], - "Caldwell's": null, - "Caleb": [["M"]], - "Caleb's": null, - "Caledonia": [["M"]], - "Caledonia's": null, - "Cale": [["M"]], - "Cale's": null, - "calendar": [["M", "D", "G", "S"]], - "calendar's": null, - "calendared": null, - "calendaring": null, - "calendars": null, - "calender": [["M", "D", "G", "S"]], - "calender's": null, - "calendered": null, - "calendering": null, - "calenders": null, - "calf": [["M"]], - "calf's": null, - "calfskin": [["S", "M"]], - "calfskins": null, - "calfskin's": null, - "Calgary": [["M"]], - "Calgary's": null, - "Calhoun": [["M"]], - "Calhoun's": null, - "Caliban": [["M"]], - "Caliban's": null, - "caliber": [["S", "M"]], - "calibers": null, - "caliber's": null, - "calibrated": [["U"]], - "uncalibrated": null, - "calibrater's": null, - "calibrate": [["X", "N", "G", "S", "D"]], - "calibrations": null, - "calibration": [["M"]], - "calibrating": [["A"]], - "calibrates": null, - "recalibrating": null, - "calibration's": null, - "calibrator": [["M", "S"]], - "calibrator's": null, - "calibrators": null, - "calicoes": null, - "calico": [["M"]], - "calico's": null, - "Calida": [["M"]], - "Calida's": null, - "Calif": [["M"]], - "Calif's": null, - "California": [["M"]], - "California's": null, - "Californian": [["M", "S"]], - "Californian's": null, - "Californians": null, - "californium": [["S", "M"]], - "californiums": null, - "californium's": null, - "calif's": null, - "Caligula": [["M"]], - "Caligula's": null, - "Cali": [["M"]], - "Cali's": null, - "caliper": [["S", "D", "M", "G"]], - "calipers": null, - "calipered": null, - "caliper's": null, - "calipering": null, - "caliphate": [["S", "M"]], - "caliphates": null, - "caliphate's": null, - "caliph": [["M"]], - "caliph's": null, - "caliphs": null, - "calisthenic": [["S"]], - "calisthenics": [["M"]], - "calisthenics's": null, - "Callaghan": [["M"]], - "Callaghan's": null, - "call": [["A", "G", "R", "D", "B", "S"]], - "recall": null, - "recalling": null, - "recaller": null, - "recalled": null, - "recallable": null, - "recalls": null, - "calling": [["S", "M"]], - "caller": [["M", "S"]], - "called": [["U"]], - "callable": null, - "calls": null, - "Callahan": [["M"]], - "Callahan's": null, - "calla": [["M", "S"]], - "calla's": null, - "callas": null, - "Calla": [["M", "S"]], - "Calla's": null, - "Callas": null, - "Callao": [["M"]], - "Callao's": null, - "callback": [["S"]], - "callbacks": null, - "Callean": [["M"]], - "Callean's": null, - "uncalled": null, - "callee": [["M"]], - "callee's": null, - "caller's": null, - "callers": null, - "Calley": [["M"]], - "Calley's": null, - "Callida": [["M"]], - "Callida's": null, - "Callie": [["M"]], - "Callie's": null, - "calligrapher": [["M"]], - "calligrapher's": null, - "calligraphic": null, - "calligraphist": [["M", "S"]], - "calligraphist's": null, - "calligraphists": null, - "calligraph": [["R", "Z"]], - "calligraphers": null, - "calligraphy": [["M", "S"]], - "calligraphy's": null, - "calligraphies": null, - "Calli": [["M"]], - "Calli's": null, - "callings": null, - "calling's": null, - "Calliope": [["M"]], - "Calliope's": null, - "calliope": [["S", "M"]], - "calliopes": null, - "calliope's": null, - "callisthenics's": null, - "Callisto": [["M"]], - "Callisto's": null, - "callosity": [["M", "S"]], - "callosity's": null, - "callosities": null, - "callousness": [["S", "M"]], - "callousnesses": null, - "callousness's": null, - "callous": [["P", "G", "S", "D", "Y"]], - "callousing": null, - "callouses": null, - "calloused": null, - "callously": null, - "callowness": [["M", "S"]], - "callowness's": null, - "callownesses": null, - "callow": [["R", "T", "S", "P"]], - "callower": null, - "callowest": null, - "callows": null, - "callus": [["S", "D", "M", "G"]], - "calluses": null, - "callused": null, - "callus's": null, - "callusing": null, - "Cally": [["M"]], - "Cally's": null, - "calming": [["Y"]], - "calmingly": null, - "calmness": [["M", "S"]], - "calmness's": null, - "calmnesses": null, - "calm": [["P", "G", "T", "Y", "D", "R", "S"]], - "calmest": null, - "calmly": null, - "calmed": null, - "calmer": null, - "calms": null, - "Cal": [["M", "Y"]], - "Cal's": null, - "Caloocan": [["M"]], - "Caloocan's": null, - "caloric": [["S"]], - "calorics": null, - "calorie": [["S", "M"]], - "calories": null, - "calorie's": null, - "calorific": null, - "calorimeter": [["M", "S"]], - "calorimeter's": null, - "calorimeters": null, - "calorimetric": null, - "calorimetry": [["M"]], - "calorimetry's": null, - "Caltech": [["M"]], - "Caltech's": null, - "Calumet": [["M"]], - "Calumet's": null, - "calumet": [["M", "S"]], - "calumet's": null, - "calumets": null, - "calumniate": [["N", "G", "S", "D", "X"]], - "calumniation": [["M"]], - "calumniating": null, - "calumniates": null, - "calumniated": null, - "calumniations": null, - "calumniation's": null, - "calumniator": [["S", "M"]], - "calumniators": null, - "calumniator's": null, - "calumnious": null, - "calumny": [["M", "S"]], - "calumny's": null, - "calumnies": null, - "calvary": [["M"]], - "calvary's": null, - "Calvary": [["M"]], - "Calvary's": null, - "calve": [["G", "D", "S"]], - "calving": null, - "calved": null, - "calves": [["M"]], - "Calvert": [["M"]], - "Calvert's": null, - "calves's": null, - "Calvinism": [["M", "S"]], - "Calvinism's": null, - "Calvinisms": null, - "Calvinistic": null, - "Calvinist": [["M", "S"]], - "Calvinist's": null, - "Calvinists": null, - "Calvin": [["M"]], - "Calvin's": null, - "Calv": [["M"]], - "Calv's": null, - "calyces's": null, - "Calypso": [["M"]], - "Calypso's": null, - "calypso": [["S", "M"]], - "calypsos": null, - "calypso's": null, - "calyx": [["M", "S"]], - "calyx's": null, - "calyxes": null, - "Ca": [["M"]], - "Ca's": null, - "CAM": null, - "Camacho": [["M"]], - "Camacho's": null, - "Camala": [["M"]], - "Camala's": null, - "camaraderie": [["S", "M"]], - "camaraderies": null, - "camaraderie's": null, - "camber": [["D", "M", "S", "G"]], - "cambered": null, - "camber's": null, - "cambers": null, - "cambering": null, - "cambial": null, - "cambium": [["S", "M"]], - "cambiums": null, - "cambium's": null, - "Cambodia": [["M"]], - "Cambodia's": null, - "Cambodian": [["S"]], - "Cambodians": null, - "Cambrian": [["S"]], - "Cambrians": null, - "cambric": [["M", "S"]], - "cambric's": null, - "cambrics": null, - "Cambridge": [["M"]], - "Cambridge's": null, - "camcorder": [["S"]], - "camcorders": null, - "Camden": [["M"]], - "Camden's": null, - "camelhair's": null, - "Camella": [["M"]], - "Camella's": null, - "Camellia": [["M"]], - "Camellia's": null, - "camellia": [["M", "S"]], - "camellia's": null, - "camellias": null, - "Camel": [["M"]], - "Camel's": null, - "Camelopardalis": [["M"]], - "Camelopardalis's": null, - "Camelot": [["M"]], - "Camelot's": null, - "camel": [["S", "M"]], - "camels": null, - "camel's": null, - "Camembert": [["M", "S"]], - "Camembert's": null, - "Camemberts": null, - "cameo": [["G", "S", "D", "M"]], - "cameoing": null, - "cameos": null, - "cameoed": null, - "cameo's": null, - "camerae": null, - "cameraman": [["M"]], - "cameraman's": null, - "cameramen": null, - "camera": [["M", "S"]], - "camera's": null, - "cameras": null, - "camerawoman": null, - "camerawomen": null, - "Cameron": [["M"]], - "Cameron's": null, - "Cameroonian": [["S"]], - "Cameroonians": null, - "Cameroon": [["S", "M"]], - "Cameroons": null, - "Cameroon's": null, - "came": [["N"]], - "camion": [["M"]], - "Camey": [["M"]], - "Camey's": null, - "Camila": [["M"]], - "Camila's": null, - "Camile": [["M"]], - "Camile's": null, - "Camilla": [["M"]], - "Camilla's": null, - "Camille": [["M"]], - "Camille's": null, - "Cami": [["M"]], - "Cami's": null, - "Camino": [["M"]], - "Camino's": null, - "camion's": null, - "camisole": [["M", "S"]], - "camisole's": null, - "camisoles": null, - "Cam": [["M"]], - "Cam's": null, - "cammed": null, - "Cammie": [["M"]], - "Cammie's": null, - "Cammi": [["M"]], - "Cammi's": null, - "cam": [["M", "S"]], - "cam's": null, - "cams": null, - "Cammy": [["M"]], - "Cammy's": null, - "Camoens": [["M"]], - "Camoens's": null, - "camomile's": null, - "camouflage": [["D", "R", "S", "G", "Z", "M"]], - "camouflaged": null, - "camouflager": [["M"]], - "camouflages": null, - "camouflaging": null, - "camouflagers": null, - "camouflage's": null, - "camouflager's": null, - "campaigner": [["M"]], - "campaigner's": null, - "campaign": [["Z", "M", "R", "D", "S", "G"]], - "campaigners": null, - "campaign's": null, - "campaigned": null, - "campaigns": null, - "campaigning": null, - "campanile": [["S", "M"]], - "campaniles": null, - "campanile's": null, - "campanological": null, - "campanologist": [["S", "M"]], - "campanologists": null, - "campanologist's": null, - "campanology": [["M", "S"]], - "campanology's": null, - "campanologies": null, - "Campbell": [["M"]], - "Campbell's": null, - "Campbellsport": [["M"]], - "Campbellsport's": null, - "camper": [["S", "M"]], - "campers": null, - "camper's": null, - "campesinos": null, - "campest": null, - "campfire": [["S", "M"]], - "campfires": null, - "campfire's": null, - "campground": [["M", "S"]], - "campground's": null, - "campgrounds": null, - "camphor": [["M", "S"]], - "camphor's": null, - "camphors": null, - "Campinas": [["M"]], - "Campinas's": null, - "camping": [["S"]], - "campings": null, - "Campos": null, - "camp's": null, - "camp": [["S", "C", "G", "D"]], - "camps": null, - "decamps": null, - "decamp": [["L"]], - "decamping": null, - "decamped": null, - "camped": null, - "campsite": [["M", "S"]], - "campsite's": null, - "campsites": null, - "campus": [["G", "S", "D", "M"]], - "campusing": null, - "campuses": null, - "campused": null, - "campus's": null, - "campy": [["R", "T"]], - "campier": null, - "campiest": null, - "Camry": [["M"]], - "Camry's": null, - "camshaft": [["S", "M"]], - "camshafts": null, - "camshaft's": null, - "Camus": [["M"]], - "Camus's": null, - "Canaanite": [["S", "M"]], - "Canaanites": null, - "Canaanite's": null, - "Canaan": [["M"]], - "Canaan's": null, - "Canada": [["M"]], - "Canada's": null, - "Canadianism": [["S", "M"]], - "Canadianisms": null, - "Canadianism's": null, - "Canadian": [["S"]], - "Canadians": null, - "Canad": [["M"]], - "Canad's": null, - "Canaletto": [["M"]], - "Canaletto's": null, - "canalization": [["M", "S"]], - "canalization's": null, - "canalizations": null, - "canalize": [["G", "S", "D"]], - "canalizing": null, - "canalizes": null, - "canalized": null, - "canal": [["S", "G", "M", "D"]], - "canals": null, - "canaling": null, - "canal's": null, - "canaled": null, - "canap�": [["S"]], - "canap�s": null, - "canard": [["M", "S"]], - "canard's": null, - "canards": null, - "Canaries": null, - "canary": [["S", "M"]], - "canaries": null, - "canary's": null, - "canasta": [["S", "M"]], - "canastas": null, - "canasta's": null, - "Canaveral": [["M"]], - "Canaveral's": null, - "Canberra": [["M"]], - "Canberra's": null, - "cancan": [["S", "M"]], - "cancans": null, - "cancan's": null, - "cancelate": [["D"]], - "cancelated": null, - "canceled": [["U"]], - "uncanceled": null, - "canceler": [["M"]], - "canceler's": null, - "cancellation": [["M", "S"]], - "cancellation's": null, - "cancellations": null, - "cancel": [["R", "D", "Z", "G", "S"]], - "cancelers": null, - "canceling": null, - "cancels": null, - "cancer": [["M", "S"]], - "cancer's": null, - "cancers": null, - "Cancer": [["M", "S"]], - "Cancer's": null, - "Cancers": null, - "cancerous": [["Y"]], - "cancerously": null, - "Cancun": [["M"]], - "Cancun's": null, - "Candace": [["M"]], - "Candace's": null, - "candelabra": [["S"]], - "candelabras": null, - "candelabrum": [["M"]], - "candelabrum's": null, - "Candice": [["M"]], - "Candice's": null, - "candidacy": [["M", "S"]], - "candidacy's": null, - "candidacies": null, - "Candida": [["M"]], - "Candida's": null, - "candidate": [["S", "M"]], - "candidates": null, - "candidate's": null, - "candidature": [["S"]], - "candidatures": null, - "Candide": [["M"]], - "Candide's": null, - "candidly": [["U"]], - "uncandidly": null, - "candidness": [["S", "M"]], - "candidnesses": null, - "candidness's": null, - "candid": [["T", "R", "Y", "P", "S"]], - "candidest": null, - "candider": null, - "candids": null, - "Candie": [["M"]], - "Candie's": null, - "Candi": [["S", "M"]], - "Candis": null, - "Candi's": null, - "candle": [["G", "M", "Z", "R", "S", "D"]], - "candling": null, - "candle's": null, - "candlers": null, - "candler": [["M"]], - "candles": null, - "candled": null, - "candlelight": [["S", "M", "R"]], - "candlelights": null, - "candlelight's": null, - "candlelighter": null, - "candlelit": null, - "candlepower": [["S", "M"]], - "candlepowers": null, - "candlepower's": null, - "candler's": null, - "candlestick": [["S", "M"]], - "candlesticks": null, - "candlestick's": null, - "Candlewick": [["M"]], - "Candlewick's": null, - "candlewick": [["M", "S"]], - "candlewick's": null, - "candlewicks": null, - "candor": [["M", "S"]], - "candor's": null, - "candors": null, - "Candra": [["M"]], - "Candra's": null, - "candy": [["G", "S", "D", "M"]], - "candying": null, - "candies": null, - "candied": null, - "candy's": null, - "Candy": [["M"]], - "Candy's": null, - "canebrake": [["S", "M"]], - "canebrakes": null, - "canebrake's": null, - "caner": [["M"]], - "caner's": null, - "cane": [["S", "M"]], - "canes": null, - "cane's": null, - "canine": [["S"]], - "canines": null, - "caning": [["M"]], - "caning's": null, - "Canis": [["M"]], - "Canis's": null, - "canister": [["S", "G", "M", "D"]], - "canisters": null, - "canistering": null, - "canister's": null, - "canistered": null, - "cankerous": null, - "canker": [["S", "D", "M", "G"]], - "cankers": null, - "cankered": null, - "canker's": null, - "cankering": null, - "Can": [["M"]], - "Can's": null, - "can": [["M", "D", "R", "S", "Z", "G", "J"]], - "can's": null, - "caned": null, - "cans": null, - "caners": null, - "canings": null, - "cannabis": [["M", "S"]], - "cannabis's": null, - "cannabises": null, - "canned": null, - "cannelloni": null, - "canner": [["S", "M"]], - "canners": null, - "canner's": null, - "cannery": [["M", "S"]], - "cannery's": null, - "canneries": null, - "Cannes": null, - "cannibalism": [["M", "S"]], - "cannibalism's": null, - "cannibalisms": null, - "cannibalistic": null, - "cannibalization": [["S", "M"]], - "cannibalizations": null, - "cannibalization's": null, - "cannibalize": [["G", "S", "D"]], - "cannibalizing": null, - "cannibalizes": null, - "cannibalized": null, - "cannibal": [["S", "M"]], - "cannibals": null, - "cannibal's": null, - "cannily": [["U"]], - "uncannily": null, - "canninesses": null, - "canniness": [["U", "M"]], - "uncanniness": null, - "uncanniness's": null, - "canniness's": null, - "canning": [["M"]], - "canning's": null, - "cannister": [["S", "M"]], - "cannisters": null, - "cannister's": null, - "cannonade": [["S", "D", "G", "M"]], - "cannonades": null, - "cannonaded": null, - "cannonading": null, - "cannonade's": null, - "cannonball": [["S", "G", "D", "M"]], - "cannonballs": null, - "cannonballing": null, - "cannonballed": null, - "cannonball's": null, - "Cannon": [["M"]], - "Cannon's": null, - "cannon": [["S", "D", "M", "G"]], - "cannons": null, - "cannoned": null, - "cannon's": null, - "cannoning": null, - "cannot": null, - "canny": [["R", "P", "U", "T"]], - "cannier": null, - "uncannier": null, - "uncanny": null, - "canniest": null, - "canoe": [["D", "S", "G", "M"]], - "canoed": null, - "canoes": null, - "canoing": null, - "canoe's": null, - "canoeist": [["S", "M"]], - "canoeists": null, - "canoeist's": null, - "Canoga": [["M"]], - "Canoga's": null, - "canonic": null, - "canonicalization": null, - "canonicalize": [["G", "S", "D"]], - "canonicalizing": null, - "canonicalizes": null, - "canonicalized": null, - "canonical": [["S", "Y"]], - "canonicals": null, - "canonically": null, - "canonist": [["M"]], - "canonist's": null, - "canonization": [["M", "S"]], - "canonization's": null, - "canonizations": null, - "canonized": [["U"]], - "uncanonized": null, - "canonize": [["S", "D", "G"]], - "canonizes": null, - "canonizing": null, - "canon": [["S", "M"]], - "canons": null, - "canon's": null, - "Canopus": [["M"]], - "Canopus's": null, - "canopy": [["G", "S", "D", "M"]], - "canopying": null, - "canopies": null, - "canopied": null, - "canopy's": null, - "canst": null, - "can't": null, - "cantabile": [["S"]], - "cantabiles": null, - "Cantabrigian": null, - "cantaloupe": [["M", "S"]], - "cantaloupe's": null, - "cantaloupes": null, - "cantankerousness": [["S", "M"]], - "cantankerousnesses": null, - "cantankerousness's": null, - "cantankerous": [["P", "Y"]], - "cantankerously": null, - "cantata": [["S", "M"]], - "cantatas": null, - "cantata's": null, - "cant": [["C", "Z", "G", "S", "R", "D"]], - "decant": null, - "decanters": null, - "decanting": null, - "decants": null, - "decanter": null, - "decanted": null, - "canters": null, - "canting": null, - "cants": [["A"]], - "canter": [["C", "M"]], - "canted": [["I", "A"]], - "incanted": null, - "recanted": null, - "canteen": [["M", "S"]], - "canteen's": null, - "canteens": null, - "Canterbury": [["M"]], - "Canterbury's": null, - "decanter's": null, - "canter's": null, - "cantered": null, - "cantering": null, - "canticle": [["S", "M"]], - "canticles": null, - "canticle's": null, - "cantilever": [["S", "D", "M", "G"]], - "cantilevers": null, - "cantilevered": null, - "cantilever's": null, - "cantilevering": null, - "canto": [["M", "S"]], - "canto's": null, - "cantos": null, - "cantonal": null, - "Cantonese": [["M"]], - "Cantonese's": null, - "Canton": [["M"]], - "Canton's": null, - "cantonment": [["S", "M"]], - "cantonments": null, - "cantonment's": null, - "canton": [["M", "G", "S", "L", "D"]], - "canton's": null, - "cantoning": null, - "cantons": null, - "cantoned": null, - "Cantor": [["M"]], - "Cantor's": null, - "cantor": [["M", "S"]], - "cantor's": null, - "cantors": null, - "Cantrell": [["M"]], - "Cantrell's": null, - "cant's": null, - "recants": null, - "Cantu": [["M"]], - "Cantu's": null, - "Canute": [["M"]], - "Canute's": null, - "canvasback": [["M", "S"]], - "canvasback's": null, - "canvasbacks": null, - "canvas": [["R", "S", "D", "M", "G"]], - "canvaser": null, - "canvases": null, - "canvased": null, - "canvas's": null, - "canvasing": null, - "canvasser": [["M"]], - "canvasser's": null, - "canvass": [["R", "S", "D", "Z", "G"]], - "canvasses": null, - "canvassed": null, - "canvassers": null, - "canvassing": null, - "canyon": [["M", "S"]], - "canyon's": null, - "canyons": null, - "CAP": null, - "capability": [["I", "S", "M"]], - "incapability": null, - "incapabilities": null, - "incapability's": null, - "capabilities": null, - "capability's": null, - "capableness": [["I", "M"]], - "incapableness": null, - "incapableness's": null, - "capableness's": null, - "capable": [["P", "I"]], - "incapable": [["S"]], - "capabler": null, - "capablest": null, - "capably": [["I"]], - "incapably": null, - "capaciousness": [["M", "S"]], - "capaciousness's": null, - "capaciousnesses": null, - "capacious": [["P", "Y"]], - "capaciously": null, - "capacitance": [["S", "M"]], - "capacitances": null, - "capacitance's": null, - "capacitate": [["V"]], - "capacitative": null, - "capacitive": [["Y"]], - "capacitively": null, - "capacitor": [["M", "S"]], - "capacitor's": null, - "capacitors": null, - "capacity": [["I", "M", "S"]], - "incapacity": null, - "incapacity's": null, - "incapacities": null, - "capacity's": null, - "capacities": null, - "caparison": [["S", "D", "M", "G"]], - "caparisons": null, - "caparisoned": null, - "caparison's": null, - "caparisoning": null, - "Capek": [["M"]], - "Capek's": null, - "Capella": [["M"]], - "Capella's": null, - "caper": [["G", "D", "M"]], - "capering": null, - "capered": null, - "caper's": null, - "capeskin": [["S", "M"]], - "capeskins": null, - "capeskin's": null, - "cape": [["S", "M"]], - "capes": null, - "cape's": null, - "Capet": [["M"]], - "Capet's": null, - "Capetown": [["M"]], - "Capetown's": null, - "Caph": [["M"]], - "Caph's": null, - "capillarity": [["M", "S"]], - "capillarity's": null, - "capillarities": null, - "capillary": [["S"]], - "capillaries": null, - "Capistrano": [["M"]], - "Capistrano's": null, - "capitalism": [["S", "M"]], - "capitalisms": null, - "capitalism's": null, - "capitalistic": null, - "capitalistically": null, - "capitalist": [["S", "M"]], - "capitalists": null, - "capitalist's": null, - "capitalization": [["S", "M", "A"]], - "capitalizations": null, - "recapitalizations": null, - "capitalization's": null, - "recapitalization's": null, - "recapitalization": null, - "capitalized": [["A", "U"]], - "recapitalized": null, - "uncapitalized": null, - "capitalizer": [["M"]], - "capitalizer's": null, - "capitalize": [["R", "S", "D", "G", "Z"]], - "capitalizes": [["A"]], - "capitalizing": null, - "capitalizers": null, - "recapitalizes": null, - "capital": [["S", "M", "Y"]], - "capitals": null, - "capital's": null, - "capitally": null, - "capita": [["M"]], - "capita's": null, - "Capitan": [["M"]], - "Capitan's": null, - "capitation": [["C", "S", "M"]], - "decapitation": null, - "decapitations": null, - "decapitation's": null, - "capitations": null, - "capitation's": null, - "Capitoline": [["M"]], - "Capitoline's": null, - "Capitol": [["M", "S"]], - "Capitol's": null, - "Capitols": null, - "capitol": [["S", "M"]], - "capitols": null, - "capitol's": null, - "capitulate": [["A", "X", "N", "G", "S", "D"]], - "recapitulate": null, - "recapitulations": null, - "recapitulation": null, - "recapitulating": null, - "recapitulates": null, - "recapitulated": null, - "capitulations": null, - "capitulation": [["M", "A"]], - "capitulating": null, - "capitulates": null, - "capitulated": null, - "capitulation's": null, - "recapitulation's": null, - "caplet": [["S"]], - "caplets": null, - "cap": [["M", "D", "R", "S", "Z", "B"]], - "cap's": null, - "caped": null, - "caps": [["A", "U"]], - "capers": null, - "Capone": [["M"]], - "Capone's": null, - "capon": [["S", "M"]], - "capons": null, - "capon's": null, - "capo": [["S", "M"]], - "capos": null, - "capo's": null, - "Capote": [["M"]], - "Capote's": null, - "capped": [["U", "A"]], - "uncapped": null, - "recapped": null, - "capping": [["M"]], - "capping's": null, - "cappuccino": [["M", "S"]], - "cappuccino's": null, - "cappuccinos": null, - "Cappy": [["M"]], - "Cappy's": null, - "Capra": [["M"]], - "Capra's": null, - "Caprice": [["M"]], - "Caprice's": null, - "caprice": [["M", "S"]], - "caprice's": null, - "caprices": null, - "capriciousness": [["M", "S"]], - "capriciousness's": null, - "capriciousnesses": null, - "capricious": [["P", "Y"]], - "capriciously": null, - "Capricorn": [["M", "S"]], - "Capricorn's": null, - "Capricorns": null, - "Capri": [["M"]], - "Capri's": null, - "recaps": null, - "uncaps": null, - "capsicum": [["M", "S"]], - "capsicum's": null, - "capsicums": null, - "capsize": [["S", "D", "G"]], - "capsizes": null, - "capsized": null, - "capsizing": null, - "capstan": [["M", "S"]], - "capstan's": null, - "capstans": null, - "capstone": [["M", "S"]], - "capstone's": null, - "capstones": null, - "capsular": null, - "capsule": [["M", "G", "S", "D"]], - "capsule's": null, - "capsuling": null, - "capsules": null, - "capsuled": null, - "capsulize": [["G", "S", "D"]], - "capsulizing": null, - "capsulizes": null, - "capsulized": null, - "captaincy": [["M", "S"]], - "captaincy's": null, - "captaincies": null, - "captain": [["S", "G", "D", "M"]], - "captains": null, - "captaining": null, - "captained": null, - "captain's": null, - "caption": [["G", "S", "D", "R", "M"]], - "captioning": null, - "captions": null, - "captioned": null, - "captioner": null, - "caption's": null, - "captiousness": [["S", "M"]], - "captiousnesses": null, - "captiousness's": null, - "captious": [["P", "Y"]], - "captiously": null, - "captivate": [["X", "G", "N", "S", "D"]], - "captivations": null, - "captivating": null, - "captivation": [["M"]], - "captivates": null, - "captivated": null, - "captivation's": null, - "captivator": [["S", "M"]], - "captivators": null, - "captivator's": null, - "captive": [["M", "S"]], - "captive's": null, - "captives": null, - "captivity": [["S", "M"]], - "captivities": null, - "captivity's": null, - "Capt": [["M"]], - "Capt's": null, - "captor": [["S", "M"]], - "captors": null, - "captor's": null, - "capture": [["A", "G", "S", "D"]], - "recapture": null, - "recapturing": null, - "recaptures": null, - "recaptured": null, - "capturing": null, - "captures": null, - "captured": null, - "capturer": [["M", "S"]], - "capturer's": null, - "capturers": null, - "capt": [["V"]], - "Capulet": [["M"]], - "Capulet's": null, - "Caputo": [["M"]], - "Caputo's": null, - "Caracalla": [["M"]], - "Caracalla's": null, - "Caracas": [["M"]], - "Caracas's": null, - "caracul's": null, - "carafe": [["S", "M"]], - "carafes": null, - "carafe's": null, - "Caralie": [["M"]], - "Caralie's": null, - "Cara": [["M"]], - "Cara's": null, - "caramelize": [["S", "D", "G"]], - "caramelizes": null, - "caramelized": null, - "caramelizing": null, - "caramel": [["M", "S"]], - "caramel's": null, - "caramels": null, - "carapace": [["S", "M"]], - "carapaces": null, - "carapace's": null, - "carapaxes": null, - "carat": [["S", "M"]], - "carats": null, - "carat's": null, - "Caravaggio": [["M"]], - "Caravaggio's": null, - "caravan": [["D", "R", "M", "G", "S"]], - "caravaned": null, - "caravaner": [["M"]], - "caravan's": null, - "caravaning": null, - "caravans": null, - "caravaner's": null, - "caravansary": [["M", "S"]], - "caravansary's": null, - "caravansaries": null, - "caravanserai's": null, - "caravel": [["M", "S"]], - "caravel's": null, - "caravels": null, - "caraway": [["M", "S"]], - "caraway's": null, - "caraways": null, - "carbide": [["M", "S"]], - "carbide's": null, - "carbides": null, - "carbine": [["M", "S"]], - "carbine's": null, - "carbines": null, - "carbohydrate": [["M", "S"]], - "carbohydrate's": null, - "carbohydrates": null, - "carbolic": null, - "Carboloy": [["M"]], - "Carboloy's": null, - "carbonaceous": null, - "carbonate": [["S", "D", "X", "M", "N", "G"]], - "carbonates": null, - "carbonated": null, - "carbonations": null, - "carbonate's": null, - "carbonation": [["M"]], - "carbonating": null, - "carbonation's": null, - "Carbondale": [["M"]], - "Carbondale's": null, - "Carbone": [["M", "S"]], - "Carbone's": null, - "Carbones": null, - "carbonic": null, - "carboniferous": null, - "Carboniferous": null, - "carbonization": [["S", "A", "M"]], - "carbonizations": null, - "recarbonizations": null, - "recarbonization": null, - "recarbonization's": null, - "carbonization's": null, - "carbonizer": [["A", "S"]], - "recarbonizer": null, - "recarbonizers": null, - "carbonizers": null, - "carbonizer's": null, - "carbonizes": [["A"]], - "recarbonizes": null, - "carbonize": [["Z", "G", "R", "S", "D"]], - "carbonizing": null, - "carbonized": null, - "carbon": [["M", "S"]], - "carbon's": null, - "carbons": null, - "carbonyl": [["M"]], - "carbonyl's": null, - "carborundum": null, - "Carborundum": [["M", "S"]], - "Carborundum's": null, - "Carborundums": null, - "carboy": [["M", "S"]], - "carboy's": null, - "carboys": null, - "carbuncle": [["S", "D", "M"]], - "carbuncles": null, - "carbuncled": null, - "carbuncle's": null, - "carbuncular": null, - "carburetor": [["M", "S"]], - "carburetor's": null, - "carburetors": null, - "carburetter": [["S"]], - "carburetters": null, - "carburettor": [["S", "M"]], - "carburettors": null, - "carburettor's": null, - "carcase": [["M", "S"]], - "carcase's": null, - "carcases": null, - "carcass": [["S", "M"]], - "carcasses": null, - "carcass's": null, - "Carce": [["M"]], - "Carce's": null, - "carcinogenic": null, - "carcinogenicity": [["M", "S"]], - "carcinogenicity's": null, - "carcinogenicities": null, - "carcinogen": [["S", "M"]], - "carcinogens": null, - "carcinogen's": null, - "carcinoma": [["S", "M"]], - "carcinomas": null, - "carcinoma's": null, - "cardamom": [["M", "S"]], - "cardamom's": null, - "cardamoms": null, - "cardboard": [["M", "S"]], - "cardboard's": null, - "cardboards": null, - "card": [["E", "D", "R", "S", "G"]], - "discard": null, - "discarded": null, - "discarder": null, - "discards": null, - "discarding": null, - "carded": null, - "carder": [["M", "S"]], - "cards": null, - "carding": [["M"]], - "Cardenas": [["M"]], - "Cardenas's": null, - "carder's": [["E"]], - "carders": null, - "discarder's": null, - "cardholders": null, - "cardiac": [["S"]], - "cardiacs": null, - "Cardiff": [["M"]], - "Cardiff's": null, - "cardigan": [["S", "M"]], - "cardigans": null, - "cardigan's": null, - "cardinality": [["S", "M"]], - "cardinalities": null, - "cardinality's": null, - "cardinal": [["S", "Y", "M"]], - "cardinals": null, - "cardinally": null, - "cardinal's": null, - "carding's": null, - "Cardin": [["M"]], - "Cardin's": null, - "Cardiod": [["M"]], - "Cardiod's": null, - "cardiogram": [["M", "S"]], - "cardiogram's": null, - "cardiograms": null, - "cardiograph": [["M"]], - "cardiograph's": null, - "cardiographs": null, - "cardioid": [["M"]], - "cardioid's": null, - "cardiologist": [["S", "M"]], - "cardiologists": null, - "cardiologist's": null, - "cardiology": [["M", "S"]], - "cardiology's": null, - "cardiologies": null, - "cardiomegaly": [["M"]], - "cardiomegaly's": null, - "cardiopulmonary": null, - "cardiovascular": null, - "card's": null, - "cardsharp": [["Z", "S", "M", "R"]], - "cardsharpers": null, - "cardsharps": null, - "cardsharp's": null, - "cardsharper": null, - "CARE": null, - "cared": [["U"]], - "uncared": null, - "careen": [["D", "S", "G"]], - "careened": null, - "careens": null, - "careening": null, - "careerism": [["M"]], - "careerism's": null, - "careerist": [["M", "S"]], - "careerist's": null, - "careerists": null, - "career": [["S", "G", "R", "D", "M"]], - "careers": null, - "careering": null, - "careerer": null, - "careered": null, - "career's": null, - "carefree": null, - "carefuller": null, - "carefullest": null, - "carefulness": [["M", "S"]], - "carefulness's": null, - "carefulnesses": null, - "careful": [["P", "Y"]], - "carefully": null, - "caregiver": [["S"]], - "caregivers": null, - "carelessness": [["M", "S"]], - "carelessness's": null, - "carelessnesses": null, - "careless": [["Y", "P"]], - "carelessly": null, - "Care": [["M"]], - "Care's": null, - "Carena": [["M"]], - "Carena's": null, - "Caren": [["M"]], - "Caren's": null, - "carer": [["M"]], - "carer's": null, - "care": [["S"]], - "cares": null, - "Caresa": [["M"]], - "Caresa's": null, - "Caressa": [["M"]], - "Caressa's": null, - "Caresse": [["M"]], - "Caresse's": null, - "caresser": [["M"]], - "caresser's": null, - "caressing": [["Y"]], - "caressingly": null, - "caressive": [["Y"]], - "caressively": null, - "caress": [["S", "R", "D", "M", "V", "G"]], - "caresses": null, - "caressed": null, - "caress's": null, - "caretaker": [["S", "M"]], - "caretakers": null, - "caretaker's": null, - "caret": [["S", "M"]], - "carets": null, - "caret's": null, - "careworn": null, - "Carey": [["M"]], - "Carey's": null, - "carfare": [["M", "S"]], - "carfare's": null, - "carfares": null, - "cargoes": null, - "cargo": [["M"]], - "cargo's": null, - "carhopped": null, - "carhopping": null, - "carhop": [["S", "M"]], - "carhops": null, - "carhop's": null, - "Caria": [["M"]], - "Caria's": null, - "Caribbean": [["S"]], - "Caribbeans": null, - "Carib": [["M"]], - "Carib's": null, - "caribou": [["M", "S"]], - "caribou's": null, - "caribous": null, - "caricature": [["G", "M", "S", "D"]], - "caricaturing": null, - "caricature's": null, - "caricatures": null, - "caricatured": null, - "caricaturisation": null, - "caricaturist": [["M", "S"]], - "caricaturist's": null, - "caricaturists": null, - "caricaturization": null, - "Carie": [["M"]], - "Carie's": null, - "caries": [["M"]], - "caries's": null, - "carillonned": null, - "carillonning": null, - "carillon": [["S", "M"]], - "carillons": null, - "carillon's": null, - "Caril": [["M"]], - "Caril's": null, - "Carilyn": [["M"]], - "Carilyn's": null, - "Cari": [["M"]], - "Cari's": null, - "Carina": [["M"]], - "Carina's": null, - "Carine": [["M"]], - "Carine's": null, - "caring": [["U"]], - "uncaring": null, - "Carin": [["M"]], - "Carin's": null, - "Cariotta": [["M"]], - "Cariotta's": null, - "carious": null, - "Carissa": [["M"]], - "Carissa's": null, - "Carita": [["M"]], - "Carita's": null, - "Caritta": [["M"]], - "Caritta's": null, - "carjack": [["G", "S", "J", "D", "R", "Z"]], - "carjacking": null, - "carjacks": null, - "carjackings": null, - "carjacked": null, - "carjacker": null, - "carjackers": null, - "Carla": [["M"]], - "Carla's": null, - "Carlee": [["M"]], - "Carlee's": null, - "Carleen": [["M"]], - "Carleen's": null, - "Carlene": [["M"]], - "Carlene's": null, - "Carlen": [["M"]], - "Carlen's": null, - "Carletonian": [["M"]], - "Carletonian's": null, - "Carleton": [["M"]], - "Carleton's": null, - "Carley": [["M"]], - "Carley's": null, - "Carlie": [["M"]], - "Carlie's": null, - "Carlina": [["M"]], - "Carlina's": null, - "Carline": [["M"]], - "Carline's": null, - "Carling": [["M"]], - "Carling's": null, - "Carlin": [["M"]], - "Carlin's": null, - "Carlita": [["M"]], - "Carlita's": null, - "Carl": [["M", "N", "G"]], - "Carl's": null, - "carload": [["M", "S", "G"]], - "carload's": null, - "carloads": null, - "carloading": null, - "Carlo": [["S", "M"]], - "Carlos": null, - "Carlo's": null, - "Carlota": [["M"]], - "Carlota's": null, - "Carlotta": [["M"]], - "Carlotta's": null, - "Carlsbad": [["M"]], - "Carlsbad's": null, - "Carlson": [["M"]], - "Carlson's": null, - "Carlton": [["M"]], - "Carlton's": null, - "Carlye": [["M"]], - "Carlye's": null, - "Carlyle": [["M"]], - "Carlyle's": null, - "Carly": [["M"]], - "Carly's": null, - "Carlyn": [["M"]], - "Carlyn's": null, - "Carlynne": [["M"]], - "Carlynne's": null, - "Carlynn": [["M"]], - "Carlynn's": null, - "Carma": [["M"]], - "Carma's": null, - "Carmela": [["M"]], - "Carmela's": null, - "Carmelia": [["M"]], - "Carmelia's": null, - "Carmelina": [["M"]], - "Carmelina's": null, - "Carmelita": [["M"]], - "Carmelita's": null, - "Carmella": [["M"]], - "Carmella's": null, - "Carmelle": [["M"]], - "Carmelle's": null, - "Carmel": [["M"]], - "Carmel's": null, - "Carmelo": [["M"]], - "Carmelo's": null, - "Carmencita": [["M"]], - "Carmencita's": null, - "Carmen": [["M"]], - "Carmen's": null, - "Carmichael": [["M"]], - "Carmichael's": null, - "Carmina": [["M"]], - "Carmina's": null, - "Carmine": [["M"]], - "Carmine's": null, - "carmine": [["M", "S"]], - "carmine's": null, - "carmines": null, - "Carmita": [["M"]], - "Carmita's": null, - "Car": [["M", "N", "Y"]], - "Car's": null, - "Carmon": [["M"]], - "Carmon's": null, - "carnage": [["M", "S"]], - "carnage's": null, - "carnages": null, - "carnality": [["S", "M"]], - "carnalities": null, - "carnality's": null, - "carnal": [["Y"]], - "carnally": null, - "Carnap": [["M"]], - "Carnap's": null, - "carnation": [["I", "M", "S"]], - "incarnation": [["A", "M"]], - "incarnation's": null, - "incarnations": null, - "carnation's": null, - "carnations": null, - "Carnegie": [["M"]], - "Carnegie's": null, - "carnelian": [["S", "M"]], - "carnelians": null, - "carnelian's": null, - "Carney": [["M"]], - "Carney's": null, - "carney's": null, - "carnival": [["M", "S"]], - "carnival's": null, - "carnivals": null, - "carnivore": [["S", "M"]], - "carnivores": null, - "carnivore's": null, - "carnivorousness": [["M", "S"]], - "carnivorousness's": null, - "carnivorousnesses": null, - "carnivorous": [["Y", "P"]], - "carnivorously": null, - "Carnot": [["M"]], - "Carnot's": null, - "Carny": [["M"]], - "Carny's": null, - "carny": [["S", "D", "G"]], - "carnies": null, - "carnied": null, - "carnying": null, - "carob": [["S", "M"]], - "carobs": null, - "carob's": null, - "Carola": [["M"]], - "Carola's": null, - "Carolan": [["M"]], - "Carolan's": null, - "Carolann": [["M"]], - "Carolann's": null, - "Carolee": [["M"]], - "Carolee's": null, - "Carole": [["M"]], - "Carole's": null, - "caroler": [["M"]], - "caroler's": null, - "Carolina": [["M", "S"]], - "Carolina's": null, - "Carolinas": null, - "Caroline": [["M"]], - "Caroline's": null, - "Carolingian": null, - "Carolinian": [["S"]], - "Carolinians": null, - "Carolin": [["M"]], - "Carolin's": null, - "Caroljean": [["M"]], - "Caroljean's": null, - "Carol": [["M"]], - "Carol's": null, - "carol": [["S", "G", "Z", "M", "R", "D"]], - "carols": null, - "caroling": null, - "carolers": null, - "carol's": null, - "caroled": null, - "Carolus": [["M"]], - "Carolus's": null, - "Carolyne": [["M"]], - "Carolyne's": null, - "Carolyn": [["M"]], - "Carolyn's": null, - "Carolynn": [["M"]], - "Carolynn's": null, - "Caro": [["M"]], - "Caro's": null, - "carom": [["G", "S", "M", "D"]], - "caroming": null, - "caroms": null, - "carom's": null, - "caromed": null, - "Caron": [["M"]], - "Caron's": null, - "carotene": [["M", "S"]], - "carotene's": null, - "carotenes": null, - "carotid": [["M", "S"]], - "carotid's": null, - "carotids": null, - "carousal": [["M", "S"]], - "carousal's": null, - "carousals": null, - "carousel": [["M", "S"]], - "carousel's": null, - "carousels": null, - "carouser": [["M"]], - "carouser's": null, - "carouse": [["S", "R", "D", "Z", "G"]], - "carouses": null, - "caroused": null, - "carousers": null, - "carousing": null, - "carpal": [["S", "M"]], - "carpals": null, - "carpal's": null, - "Carpathian": [["M", "S"]], - "Carpathian's": null, - "Carpathians": null, - "carpel": [["S", "M"]], - "carpels": null, - "carpel's": null, - "carpenter": [["D", "S", "M", "G"]], - "carpentered": null, - "carpenters": null, - "carpenter's": null, - "carpentering": [["M"]], - "carpentering's": null, - "Carpenter": [["M"]], - "Carpenter's": null, - "carpentry": [["M", "S"]], - "carpentry's": null, - "carpentries": null, - "carper": [["M"]], - "carper's": null, - "carpetbagged": null, - "carpetbagger": [["M", "S"]], - "carpetbagger's": null, - "carpetbaggers": null, - "carpetbagging": null, - "carpetbag": [["M", "S"]], - "carpetbag's": null, - "carpetbags": null, - "carpeting": [["M"]], - "carpeting's": null, - "carpet": [["M", "D", "J", "G", "S"]], - "carpet's": null, - "carpeted": null, - "carpetings": null, - "carpets": null, - "carpi": [["M"]], - "carpi's": null, - "carping": [["Y"]], - "carpingly": null, - "carp": [["M", "D", "R", "S", "G", "Z"]], - "carp's": null, - "carped": null, - "carps": null, - "carpers": null, - "carpool": [["D", "G", "S"]], - "carpooled": null, - "carpooling": null, - "carpools": null, - "carport": [["M", "S"]], - "carport's": null, - "carports": null, - "carpus": [["M"]], - "carpus's": null, - "carrageen": [["M"]], - "carrageen's": null, - "Carree": [["M"]], - "Carree's": null, - "carrel": [["S", "M"]], - "carrels": null, - "carrel's": null, - "carriage": [["S", "M"]], - "carriages": null, - "carriage's": null, - "carriageway": [["S", "M"]], - "carriageways": null, - "carriageway's": null, - "Carrie": [["M"]], - "Carrie's": null, - "carrier": [["M"]], - "carrier's": null, - "Carrier": [["M"]], - "Carrier's": null, - "Carrillo": [["M"]], - "Carrillo's": null, - "Carri": [["M"]], - "Carri's": null, - "carrion": [["S", "M"]], - "carrions": null, - "carrion's": null, - "Carrissa": [["M"]], - "Carrissa's": null, - "Carr": [["M"]], - "Carr's": null, - "Carroll": [["M"]], - "Carroll's": null, - "Carrol": [["M"]], - "Carrol's": null, - "carrot": [["M", "S"]], - "carrot's": null, - "carrots": null, - "carroty": [["R", "T"]], - "carrotier": null, - "carrotiest": null, - "carrousel's": null, - "carryall": [["M", "S"]], - "carryall's": null, - "carryalls": null, - "Carry": [["M", "R"]], - "Carry's": null, - "carryout": [["S"]], - "carryouts": null, - "carryover": [["S"]], - "carryovers": null, - "carry": [["R", "S", "D", "Z", "G"]], - "carries": null, - "carried": null, - "carriers": null, - "carrying": null, - "carsickness": [["S", "M"]], - "carsicknesses": null, - "carsickness's": null, - "carsick": [["P"]], - "Carson": [["M"]], - "Carson's": null, - "cartage": [["M", "S"]], - "cartage's": null, - "cartages": null, - "cartel": [["S", "M"]], - "cartels": null, - "cartel's": null, - "carte": [["M"]], - "carte's": null, - "carter": [["M"]], - "carter's": null, - "Carter": [["M"]], - "Carter's": null, - "Cartesian": null, - "Carthage": [["M"]], - "Carthage's": null, - "Carthaginian": [["S"]], - "Carthaginians": null, - "carthorse": [["M", "S"]], - "carthorse's": null, - "carthorses": null, - "Cartier": [["M"]], - "Cartier's": null, - "cartilage": [["M", "S"]], - "cartilage's": null, - "cartilages": null, - "cartilaginous": null, - "cartload": [["M", "S"]], - "cartload's": null, - "cartloads": null, - "cart": [["M", "D", "R", "G", "S", "Z"]], - "cart's": null, - "carted": null, - "carting": null, - "carts": null, - "carters": null, - "Cart": [["M", "R"]], - "Cart's": null, - "cartographer": [["M", "S"]], - "cartographer's": null, - "cartographers": null, - "cartographic": null, - "cartography": [["M", "S"]], - "cartography's": null, - "cartographies": null, - "carton": [["G", "S", "D", "M"]], - "cartoning": null, - "cartons": null, - "cartoned": null, - "carton's": null, - "cartoon": [["G", "S", "D", "M"]], - "cartooning": null, - "cartoons": null, - "cartooned": null, - "cartoon's": null, - "cartoonist": [["M", "S"]], - "cartoonist's": null, - "cartoonists": null, - "cartridge": [["S", "M"]], - "cartridges": null, - "cartridge's": null, - "cartwheel": [["M", "R", "D", "G", "S"]], - "cartwheel's": null, - "cartwheeler": null, - "cartwheeled": null, - "cartwheeling": null, - "cartwheels": null, - "Cartwright": [["M"]], - "Cartwright's": null, - "Carty": [["R", "M"]], - "Carty's": null, - "Caruso": [["M"]], - "Caruso's": null, - "carve": [["D", "S", "R", "J", "G", "Z"]], - "carved": null, - "carves": null, - "carver": [["M"]], - "carvings": null, - "carving": [["M"]], - "carvers": null, - "carven": null, - "carver's": null, - "Carver": [["M"]], - "Carver's": null, - "carving's": null, - "caryatid": [["M", "S"]], - "caryatid's": null, - "caryatids": null, - "Caryl": [["M"]], - "Caryl's": null, - "Cary": [["M"]], - "Cary's": null, - "Caryn": [["M"]], - "Caryn's": null, - "car": [["Z", "G", "S", "M", "D", "R"]], - "carers": null, - "cars": null, - "car's": null, - "casaba": [["S", "M"]], - "casabas": null, - "casaba's": null, - "Casablanca": [["M"]], - "Casablanca's": null, - "Casals": [["M"]], - "Casals's": null, - "Casandra": [["M"]], - "Casandra's": null, - "Casanova": [["S", "M"]], - "Casanovas": null, - "Casanova's": null, - "Casar": [["M"]], - "Casar's": null, - "casbah": [["M"]], - "casbah's": null, - "cascade": [["M", "S", "D", "G"]], - "cascade's": null, - "cascades": null, - "cascaded": null, - "cascading": null, - "Cascades": [["M"]], - "Cascades's": null, - "cascara": [["M", "S"]], - "cascara's": null, - "cascaras": null, - "casebook": [["S", "M"]], - "casebooks": null, - "casebook's": null, - "case": [["D", "S", "J", "M", "G", "L"]], - "cased": [["U"]], - "cases": null, - "casings": null, - "case's": null, - "casing": [["M"]], - "casement": [["S", "M"]], - "uncased": null, - "caseharden": [["S", "G", "D"]], - "casehardens": null, - "casehardening": null, - "casehardened": null, - "casein": [["S", "M"]], - "caseins": null, - "casein's": null, - "caseload": [["M", "S"]], - "caseload's": null, - "caseloads": null, - "Case": [["M"]], - "Case's": null, - "casements": null, - "casement's": null, - "caseworker": [["M"]], - "caseworker's": null, - "casework": [["Z", "M", "R", "S"]], - "caseworkers": null, - "casework's": null, - "caseworks": null, - "Casey": [["M"]], - "Casey's": null, - "cashbook": [["S", "M"]], - "cashbooks": null, - "cashbook's": null, - "cashew": [["M", "S"]], - "cashew's": null, - "cashews": null, - "cash": [["G", "Z", "M", "D", "S", "R"]], - "cashing": null, - "cashers": null, - "cash's": null, - "cashed": null, - "cashes": null, - "casher": null, - "cashier": [["S", "D", "M", "G"]], - "cashiers": null, - "cashiered": null, - "cashier's": null, - "cashiering": null, - "cashless": null, - "Cash": [["M"]], - "Cash's": null, - "cashmere": [["M", "S"]], - "cashmere's": null, - "cashmeres": null, - "Casie": [["M"]], - "Casie's": null, - "Casi": [["M"]], - "Casi's": null, - "casing's": null, - "casino": [["M", "S"]], - "casino's": null, - "casinos": null, - "casket": [["S", "G", "M", "D"]], - "caskets": null, - "casketing": null, - "casket's": null, - "casketed": null, - "cask": [["G", "S", "D", "M"]], - "casking": null, - "casks": null, - "casked": null, - "cask's": null, - "Caspar": [["M"]], - "Caspar's": null, - "Casper": [["M"]], - "Casper's": null, - "Caspian": null, - "Cass": null, - "Cassandra": [["S", "M"]], - "Cassandras": null, - "Cassandra's": null, - "Cassandre": [["M"]], - "Cassandre's": null, - "Cassandry": [["M"]], - "Cassandry's": null, - "Cassatt": [["M"]], - "Cassatt's": null, - "Cassaundra": [["M"]], - "Cassaundra's": null, - "cassava": [["M", "S"]], - "cassava's": null, - "cassavas": null, - "casserole": [["M", "G", "S", "D"]], - "casserole's": null, - "casseroling": null, - "casseroles": null, - "casseroled": null, - "cassette": [["S", "M"]], - "cassettes": null, - "cassette's": null, - "Cassey": [["M"]], - "Cassey's": null, - "cassia": [["M", "S"]], - "cassia's": null, - "cassias": null, - "Cassie": [["M"]], - "Cassie's": null, - "Cassi": [["M"]], - "Cassi's": null, - "cassino's": null, - "Cassiopeia": [["M"]], - "Cassiopeia's": null, - "Cassite": [["M"]], - "Cassite's": null, - "Cassius": [["M"]], - "Cassius's": null, - "cassock": [["S", "D", "M"]], - "cassocks": null, - "cassocked": null, - "cassock's": null, - "Cassondra": [["M"]], - "Cassondra's": null, - "cassowary": [["S", "M"]], - "cassowaries": null, - "cassowary's": null, - "Cassy": [["M"]], - "Cassy's": null, - "Castaneda": [["M"]], - "Castaneda's": null, - "castanet": [["S", "M"]], - "castanets": null, - "castanet's": null, - "castaway": [["S", "M"]], - "castaways": null, - "castaway's": null, - "castellated": null, - "caste": [["M", "H", "S"]], - "caste's": null, - "casteth": null, - "castes": null, - "caster": [["M"]], - "caster's": null, - "cast": [["G", "Z", "S", "J", "M", "D", "R"]], - "casting": [["M"]], - "casters": null, - "casts": [["A"]], - "castings": null, - "cast's": null, - "casted": null, - "castigate": [["X", "G", "N", "S", "D"]], - "castigations": null, - "castigating": null, - "castigation": [["M"]], - "castigates": null, - "castigated": null, - "castigation's": null, - "castigator": [["S", "M"]], - "castigators": null, - "castigator's": null, - "Castile's": null, - "Castillo": [["M"]], - "Castillo's": null, - "casting's": null, - "castle": [["G", "M", "S", "D"]], - "castling": null, - "castle's": null, - "castles": null, - "castled": null, - "castoff": [["S"]], - "castoffs": null, - "Castor": [["M"]], - "Castor's": null, - "castor's": null, - "castrate": [["D", "S", "N", "G", "X"]], - "castrated": null, - "castrates": null, - "castration": [["M"]], - "castrating": null, - "castrations": null, - "castration's": null, - "Castries": [["M"]], - "Castries's": null, - "Castro": [["M"]], - "Castro's": null, - "recasts": null, - "casualness": [["S", "M"]], - "casualnesses": null, - "casualness's": null, - "casual": [["S", "Y", "P"]], - "casuals": null, - "casually": null, - "casualty": [["S", "M"]], - "casualties": null, - "casualty's": null, - "casuistic": null, - "casuist": [["M", "S"]], - "casuist's": null, - "casuists": null, - "casuistry": [["S", "M"]], - "casuistries": null, - "casuistry's": null, - "cataclysmal": null, - "cataclysmic": null, - "cataclysm": [["M", "S"]], - "cataclysm's": null, - "cataclysms": null, - "catacomb": [["M", "S"]], - "catacomb's": null, - "catacombs": null, - "catafalque": [["S", "M"]], - "catafalques": null, - "catafalque's": null, - "Catalan": [["M", "S"]], - "Catalan's": null, - "Catalans": null, - "catalepsy": [["M", "S"]], - "catalepsy's": null, - "catalepsies": null, - "cataleptic": [["S"]], - "cataleptics": null, - "Catalina": [["M"]], - "Catalina's": null, - "cataloger": [["M"]], - "cataloger's": null, - "catalog": [["S", "D", "R", "M", "Z", "G"]], - "catalogs": null, - "cataloged": null, - "catalog's": null, - "catalogers": null, - "cataloging": null, - "Catalonia": [["M"]], - "Catalonia's": null, - "catalpa": [["S", "M"]], - "catalpas": null, - "catalpa's": null, - "catalysis": [["M"]], - "catalysis's": null, - "catalyst": [["S", "M"]], - "catalysts": null, - "catalyst's": null, - "catalytic": null, - "catalytically": null, - "catalyze": [["D", "S", "G"]], - "catalyzed": null, - "catalyzes": null, - "catalyzing": null, - "catamaran": [["M", "S"]], - "catamaran's": null, - "catamarans": null, - "catapult": [["M", "G", "S", "D"]], - "catapult's": null, - "catapulting": null, - "catapults": null, - "catapulted": null, - "cataract": [["M", "S"]], - "cataract's": null, - "cataracts": null, - "Catarina": [["M"]], - "Catarina's": null, - "catarrh": [["M"]], - "catarrh's": null, - "catarrhs": null, - "catastrophe": [["S", "M"]], - "catastrophes": null, - "catastrophe's": null, - "catastrophic": null, - "catastrophically": null, - "catatonia": [["M", "S"]], - "catatonia's": null, - "catatonias": null, - "catatonic": [["S"]], - "catatonics": null, - "Catawba": [["M"]], - "Catawba's": null, - "catbird": [["M", "S"]], - "catbird's": null, - "catbirds": null, - "catboat": [["S", "M"]], - "catboats": null, - "catboat's": null, - "catcall": [["S", "M", "D", "G"]], - "catcalls": null, - "catcall's": null, - "catcalled": null, - "catcalling": null, - "catchable": [["U"]], - "uncatchable": null, - "catchall": [["M", "S"]], - "catchall's": null, - "catchalls": null, - "catch": [["B", "R", "S", "J", "L", "G", "Z"]], - "catcher": [["M"]], - "catches": null, - "catchings": null, - "catchment": [["S", "M"]], - "catching": null, - "catchers": null, - "catcher's": null, - "catchments": null, - "catchment's": null, - "catchpenny": [["S"]], - "catchpennies": null, - "catchphrase": [["S"]], - "catchphrases": null, - "catchup": [["M", "S"]], - "catchup's": null, - "catchups": null, - "catchword": [["M", "S"]], - "catchword's": null, - "catchwords": null, - "catchy": [["T", "R"]], - "catchiest": null, - "catchier": null, - "catechism": [["M", "S"]], - "catechism's": null, - "catechisms": null, - "catechist": [["S", "M"]], - "catechists": null, - "catechist's": null, - "catechize": [["S", "D", "G"]], - "catechizes": null, - "catechized": null, - "catechizing": null, - "catecholamine": [["M", "S"]], - "catecholamine's": null, - "catecholamines": null, - "categoric": null, - "categorical": [["Y"]], - "categorically": null, - "categorization": [["M", "S"]], - "categorization's": null, - "categorizations": null, - "categorized": [["A", "U"]], - "recategorized": null, - "uncategorized": null, - "categorize": [["R", "S", "D", "G", "Z"]], - "categorizer": null, - "categorizes": null, - "categorizing": null, - "categorizers": null, - "category": [["M", "S"]], - "category's": null, - "categories": null, - "Cate": [["M"]], - "Cate's": null, - "catenate": [["N", "F"]], - "catenation": [["M", "F"]], - "concatenation": null, - "concatenate": [["X", "S", "D", "G"]], - "catenation's": null, - "concatenation's": null, - "catercorner": null, - "caterer": [["M"]], - "caterer's": null, - "cater": [["G", "R", "D", "Z"]], - "catering": [["M"]], - "catered": null, - "caterers": null, - "Caterina": [["M"]], - "Caterina's": null, - "catering's": null, - "Caterpillar": null, - "caterpillar": [["S", "M"]], - "caterpillars": null, - "caterpillar's": null, - "caterwaul": [["D", "S", "G"]], - "caterwauled": null, - "caterwauls": null, - "caterwauling": null, - "catfish": [["M", "S"]], - "catfish's": null, - "catfishes": null, - "catgut": [["S", "M"]], - "catguts": null, - "catgut's": null, - "Catha": [["M"]], - "Catha's": null, - "Catharina": [["M"]], - "Catharina's": null, - "Catharine": [["M"]], - "Catharine's": null, - "catharses": null, - "catharsis": [["M"]], - "catharsis's": null, - "cathartic": [["S"]], - "cathartics": null, - "Cathay": [["M"]], - "Cathay's": null, - "cathedral": [["S", "M"]], - "cathedrals": null, - "cathedral's": null, - "Cathee": [["M"]], - "Cathee's": null, - "Catherina": [["M"]], - "Catherina's": null, - "Catherine": [["M"]], - "Catherine's": null, - "Catherin": [["M"]], - "Catherin's": null, - "Cather": [["M"]], - "Cather's": null, - "Cathe": [["R", "M"]], - "Cathe's": null, - "catheterize": [["G", "S", "D"]], - "catheterizing": null, - "catheterizes": null, - "catheterized": null, - "catheter": [["S", "M"]], - "catheters": null, - "catheter's": null, - "Cathie": [["M"]], - "Cathie's": null, - "Cathi": [["M"]], - "Cathi's": null, - "Cathleen": [["M"]], - "Cathleen's": null, - "Cathlene": [["M"]], - "Cathlene's": null, - "cathode": [["M", "S"]], - "cathode's": null, - "cathodes": null, - "cathodic": null, - "catholicism": null, - "Catholicism": [["S", "M"]], - "Catholicisms": null, - "Catholicism's": null, - "catholicity": [["M", "S"]], - "catholicity's": null, - "catholicities": null, - "catholic": [["M", "S"]], - "catholic's": null, - "catholics": null, - "Catholic": [["S"]], - "Catholics": null, - "Cathrine": [["M"]], - "Cathrine's": null, - "Cathrin": [["M"]], - "Cathrin's": null, - "Cathryn": [["M"]], - "Cathryn's": null, - "Cathyleen": [["M"]], - "Cathyleen's": null, - "Cathy": [["M"]], - "Cathy's": null, - "Catie": [["M"]], - "Catie's": null, - "Catiline": [["M"]], - "Catiline's": null, - "Cati": [["M"]], - "Cati's": null, - "Catina": [["M"]], - "Catina's": null, - "cationic": null, - "cation": [["M", "S"]], - "cation's": null, - "cations": null, - "catkin": [["S", "M"]], - "catkins": null, - "catkin's": null, - "Catlaina": [["M"]], - "Catlaina's": null, - "Catlee": [["M"]], - "Catlee's": null, - "catlike": null, - "Catlin": [["M"]], - "Catlin's": null, - "catnapped": null, - "catnapping": null, - "catnap": [["S", "M"]], - "catnaps": null, - "catnap's": null, - "catnip": [["M", "S"]], - "catnip's": null, - "catnips": null, - "Cato": [["M"]], - "Cato's": null, - "Catrina": [["M"]], - "Catrina's": null, - "Catriona": [["M"]], - "Catriona's": null, - "Catskill": [["S", "M"]], - "Catskills": null, - "Catskill's": null, - "cat": [["S", "M", "R", "Z"]], - "cats": null, - "cat's": null, - "caters": null, - "catsup's": null, - "cattail": [["S", "M"]], - "cattails": null, - "cattail's": null, - "catted": null, - "cattery": [["M"]], - "cattery's": null, - "cattily": null, - "cattiness": [["S", "M"]], - "cattinesses": null, - "cattiness's": null, - "catting": null, - "cattle": [["M"]], - "cattle's": null, - "cattleman": [["M"]], - "cattleman's": null, - "cattlemen": null, - "Catt": [["M"]], - "Catt's": null, - "catty": [["P", "R", "S", "T"]], - "cattier": null, - "catties": null, - "cattiest": null, - "Catullus": [["M"]], - "Catullus's": null, - "CATV": null, - "catwalk": [["M", "S"]], - "catwalk's": null, - "catwalks": null, - "Caty": [["M"]], - "Caty's": null, - "Caucasian": [["S"]], - "Caucasians": null, - "Caucasoid": [["S"]], - "Caucasoids": null, - "Caucasus": [["M"]], - "Caucasus's": null, - "Cauchy": [["M"]], - "Cauchy's": null, - "caucus": [["S", "D", "M", "G"]], - "caucuses": null, - "caucused": null, - "caucus's": null, - "caucusing": null, - "caudal": [["Y"]], - "caudally": null, - "caught": [["U"]], - "uncaught": null, - "cauldron": [["M", "S"]], - "cauldron's": null, - "cauldrons": null, - "cauliflower": [["M", "S"]], - "cauliflower's": null, - "cauliflowers": null, - "caulker": [["M"]], - "caulker's": null, - "caulk": [["J", "S", "G", "Z", "R", "D"]], - "caulkings": null, - "caulks": null, - "caulking": null, - "caulkers": null, - "caulked": null, - "causality": [["S", "M"]], - "causalities": null, - "causality's": null, - "causal": [["Y", "S"]], - "causally": null, - "causals": null, - "causate": [["X", "V", "N"]], - "causations": null, - "causative": [["S", "Y"]], - "causation": [["M"]], - "causation's": null, - "causatives": null, - "causatively": null, - "cause": [["D", "S", "R", "G", "M", "Z"]], - "caused": [["U"]], - "causes": null, - "causer": [["M"]], - "causing": null, - "cause's": null, - "causers": null, - "uncaused": null, - "causeless": null, - "causerie": [["M", "S"]], - "causerie's": null, - "causeries": null, - "causer's": null, - "causeway": [["S", "G", "D", "M"]], - "causeways": null, - "causewaying": null, - "causewayed": null, - "causeway's": null, - "caustically": null, - "causticity": [["M", "S"]], - "causticity's": null, - "causticities": null, - "caustic": [["Y", "S"]], - "causticly": null, - "caustics": null, - "cauterization": [["S", "M"]], - "cauterizations": null, - "cauterization's": null, - "cauterized": [["U"]], - "uncauterized": [["M", "S"]], - "cauterize": [["G", "S", "D"]], - "cauterizing": null, - "cauterizes": null, - "cautionary": null, - "cautioner": [["M"]], - "cautioner's": null, - "caution": [["G", "J", "D", "R", "M", "S", "Z"]], - "cautioning": null, - "cautionings": null, - "cautioned": null, - "caution's": null, - "cautions": null, - "cautioners": null, - "cautiousness's": [["I"]], - "incautiousness's": null, - "cautiousness": [["S", "M"]], - "cautiousnesses": null, - "cautious": [["P", "I", "Y"]], - "incautiousness": null, - "incautious": null, - "incautiously": null, - "cautiously": null, - "cavalcade": [["M", "S"]], - "cavalcade's": null, - "cavalcades": null, - "cavalierness": [["M"]], - "cavalierness's": null, - "cavalier": [["S", "G", "Y", "D", "P"]], - "cavaliers": null, - "cavaliering": null, - "cavalierly": null, - "cavaliered": null, - "cavalryman": [["M"]], - "cavalryman's": null, - "cavalrymen": null, - "cavalry": [["M", "S"]], - "cavalry's": null, - "cavalries": null, - "caveat": [["S", "M"]], - "caveats": null, - "caveat's": null, - "caveatted": null, - "caveatting": null, - "cave": [["G", "F", "R", "S", "D"]], - "caving": [["M", "S"]], - "concaving": null, - "concave": [["Y", "P"]], - "concaver": null, - "concaves": null, - "concaved": null, - "caver": [["M"]], - "caves": null, - "caved": null, - "caveman": [["M"]], - "caveman's": null, - "cavemen": null, - "Cavendish": [["M"]], - "Cavendish's": null, - "caver's": null, - "cavern": [["G", "S", "D", "M"]], - "caverning": null, - "caverns": null, - "caverned": null, - "cavern's": null, - "cavernous": [["Y"]], - "cavernously": null, - "cave's": null, - "caviar": [["M", "S"]], - "caviar's": null, - "caviars": null, - "caviler": [["M"]], - "caviler's": null, - "cavil": [["S", "J", "R", "D", "G", "Z"]], - "cavils": null, - "cavilings": null, - "caviled": null, - "caviling": null, - "cavilers": null, - "caving's": null, - "cavings": null, - "cavity": [["M", "F", "S"]], - "cavity's": null, - "concavity's": null, - "concavity": null, - "concavities": null, - "cavities": null, - "cavort": [["S", "D", "G"]], - "cavorts": null, - "cavorted": null, - "cavorting": null, - "Cavour": [["M"]], - "Cavour's": null, - "caw": [["S", "M", "D", "G"]], - "caws": null, - "caw's": null, - "cawed": null, - "cawing": null, - "Caxton": [["M"]], - "Caxton's": null, - "Caye": [["M"]], - "Caye's": null, - "Cayenne": [["M"]], - "Cayenne's": null, - "cayenne": [["S", "M"]], - "cayennes": null, - "cayenne's": null, - "Cayla": [["M"]], - "Cayla's": null, - "Cayman": [["M"]], - "Cayman's": null, - "cayman": [["S", "M"]], - "caymans": null, - "cayman's": null, - "cay's": null, - "cay": [["S", "C"]], - "cays": null, - "decays": null, - "decay": [["G", "R", "D"]], - "Cayuga": [["M"]], - "Cayuga's": null, - "cayuse": [["S", "M"]], - "cayuses": null, - "cayuse's": null, - "Caz": [["M"]], - "Caz's": null, - "Cazzie": [["M"]], - "Cazzie's": null, - "c": [["B"]], - "CB": null, - "CBC": null, - "Cb": [["M"]], - "Cb's": null, - "CBS": null, - "cc": null, - "Cchaddie": [["M"]], - "Cchaddie's": null, - "CCTV": null, - "CCU": null, - "CD": null, - "CDC": [["M"]], - "CDC's": null, - "Cd": [["M"]], - "Cd's": null, - "CDT": null, - "Ce": null, - "cease": [["D", "S", "C", "G"]], - "ceased": null, - "deceased": null, - "ceases": null, - "deceases": null, - "decease": [["M"]], - "deceasing": null, - "ceasing": [["U"]], - "ceasefire": [["S"]], - "ceasefires": null, - "ceaselessness": [["S", "M"]], - "ceaselessnesses": null, - "ceaselessness's": null, - "ceaseless": [["Y", "P"]], - "ceaselessly": null, - "unceasing": [["Y"]], - "Ceausescu": [["M"]], - "Ceausescu's": null, - "Cebuano": [["M"]], - "Cebuano's": null, - "Cebu": [["M"]], - "Cebu's": null, - "ceca": null, - "cecal": null, - "Cecelia": [["M"]], - "Cecelia's": null, - "Cece": [["M"]], - "Cece's": null, - "Cecile": [["M"]], - "Cecile's": null, - "Ceciley": [["M"]], - "Ceciley's": null, - "Cecilia": [["M"]], - "Cecilia's": null, - "Cecilio": [["M"]], - "Cecilio's": null, - "Cecilius": [["M"]], - "Cecilius's": null, - "Cecilla": [["M"]], - "Cecilla's": null, - "Cecil": [["M"]], - "Cecil's": null, - "Cecily": [["M"]], - "Cecily's": null, - "cecum": [["M"]], - "cecum's": null, - "cedar": [["S", "M"]], - "cedars": null, - "cedar's": null, - "ceded": [["A"]], - "receded": null, - "cede": [["F", "R", "S", "D", "G"]], - "concede": null, - "conceder": null, - "concedes": null, - "conceded": [["Y"]], - "conceding": null, - "ceder": [["S", "M"]], - "cedes": [["A"]], - "ceding": [["A"]], - "ceder's": [["F"]], - "conceder's": null, - "ceders": null, - "recedes": null, - "cedilla": [["S", "M"]], - "cedillas": null, - "cedilla's": null, - "receding": null, - "Ced": [["M"]], - "Ced's": null, - "Cedric": [["M"]], - "Cedric's": null, - "ceilidh": [["M"]], - "ceilidh's": null, - "ceiling": [["M", "D", "S"]], - "ceiling's": null, - "ceilinged": null, - "ceilings": null, - "Ceil": [["M"]], - "Ceil's": null, - "celandine": [["M", "S"]], - "celandine's": null, - "celandines": null, - "Celanese": [["M"]], - "Celanese's": null, - "Celebes's": null, - "celebrant": [["M", "S"]], - "celebrant's": null, - "celebrants": null, - "celebratedness": [["M"]], - "celebratedness's": null, - "celebrated": [["P"]], - "celebrate": [["X", "S", "D", "G", "N"]], - "celebrations": null, - "celebrates": null, - "celebrating": null, - "celebration": [["M"]], - "celebration's": null, - "celebrator": [["M", "S"]], - "celebrator's": null, - "celebrators": null, - "celebratory": null, - "celebrity": [["M", "S"]], - "celebrity's": null, - "celebrities": null, - "Cele": [["M"]], - "Cele's": null, - "Celene": [["M"]], - "Celene's": null, - "celerity": [["S", "M"]], - "celerities": null, - "celerity's": null, - "celery": [["S", "M"]], - "celeries": null, - "celery's": null, - "Celesta": [["M"]], - "Celesta's": null, - "celesta": [["S", "M"]], - "celestas": null, - "celesta's": null, - "Celeste": [["M"]], - "Celeste's": null, - "celestial": [["Y", "S"]], - "celestially": null, - "celestials": null, - "Celestia": [["M"]], - "Celestia's": null, - "Celestina": [["M"]], - "Celestina's": null, - "Celestine": [["M"]], - "Celestine's": null, - "Celestyna": [["M"]], - "Celestyna's": null, - "Celestyn": [["M"]], - "Celestyn's": null, - "Celia": [["M"]], - "Celia's": null, - "celibacy": [["M", "S"]], - "celibacy's": null, - "celibacies": null, - "celibate": [["S", "M"]], - "celibates": null, - "celibate's": null, - "Celie": [["M"]], - "Celie's": null, - "Celina": [["M"]], - "Celina's": null, - "Celinda": [["M"]], - "Celinda's": null, - "Celine": [["M"]], - "Celine's": null, - "Celinka": [["M"]], - "Celinka's": null, - "Celisse": [["M"]], - "Celisse's": null, - "Celka": [["M"]], - "Celka's": null, - "cellarer": [["M"]], - "cellarer's": null, - "cellar": [["R", "D", "M", "G", "S"]], - "cellared": null, - "cellar's": null, - "cellaring": null, - "cellars": null, - "Celle": [["M"]], - "Celle's": null, - "cell": [["G", "M", "D", "S"]], - "celling": null, - "cell's": null, - "celled": null, - "cells": null, - "Cellini": [["M"]], - "Cellini's": null, - "cellist": [["S", "M"]], - "cellists": null, - "cellist's": null, - "Cello": [["M"]], - "Cello's": null, - "cello": [["M", "S"]], - "cello's": null, - "cellos": null, - "cellophane": [["S", "M"]], - "cellophanes": null, - "cellophane's": null, - "cellphone": [["S"]], - "cellphones": null, - "cellular": [["S", "Y"]], - "cellulars": null, - "cellularly": null, - "cellulite": [["S"]], - "cellulites": null, - "celluloid": [["S", "M"]], - "celluloids": null, - "celluloid's": null, - "cellulose": [["S", "M"]], - "celluloses": null, - "cellulose's": null, - "Celsius": [["S"]], - "Celsiuses": null, - "Celtic": [["S", "M"]], - "Celtics": null, - "Celtic's": null, - "Celt": [["M", "S"]], - "Celt's": null, - "Celts": null, - "cementa": null, - "cementer": [["M"]], - "cementer's": null, - "cementum": [["S", "M"]], - "cementums": null, - "cementum's": null, - "cement": [["Z", "G", "M", "R", "D", "S"]], - "cementers": null, - "cementing": null, - "cement's": null, - "cemented": null, - "cements": null, - "cemetery": [["M", "S"]], - "cemetery's": null, - "cemeteries": null, - "cenobite": [["M", "S"]], - "cenobite's": null, - "cenobites": null, - "cenobitic": null, - "cenotaph": [["M"]], - "cenotaph's": null, - "cenotaphs": null, - "Cenozoic": null, - "censer": [["M", "S"]], - "censer's": null, - "censers": null, - "censored": [["U"]], - "uncensored": null, - "censor": [["G", "D", "M", "S"]], - "censoring": null, - "censor's": null, - "censors": null, - "censorial": null, - "censoriousness": [["M", "S"]], - "censoriousness's": null, - "censoriousnesses": null, - "censorious": [["Y", "P"]], - "censoriously": null, - "censorship": [["M", "S"]], - "censorship's": null, - "censorships": null, - "censure": [["B", "R", "S", "D", "Z", "M", "G"]], - "censurable": null, - "censurer": [["M"]], - "censures": null, - "censured": null, - "censurers": null, - "censure's": null, - "censuring": null, - "censurer's": null, - "census": [["S", "D", "M", "G"]], - "censuses": null, - "censused": null, - "census's": null, - "censusing": null, - "centaur": [["S", "M"]], - "centaurs": null, - "centaur's": null, - "Centaurus": [["M"]], - "Centaurus's": null, - "centavo": [["S", "M"]], - "centavos": null, - "centavo's": null, - "centenarian": [["M", "S"]], - "centenarian's": null, - "centenarians": null, - "centenary": [["S"]], - "centenaries": null, - "centennial": [["Y", "S"]], - "centennially": null, - "centennials": null, - "center": [["A", "C"]], - "recenter": null, - "decenter": null, - "centerboard": [["S", "M"]], - "centerboards": null, - "centerboard's": null, - "centered": null, - "centerer": [["S"]], - "centerers": null, - "centerfold": [["S"]], - "centerfolds": null, - "centering": [["S", "M"]], - "centerings": null, - "centering's": null, - "centerline": [["S", "M"]], - "centerlines": null, - "centerline's": null, - "centerpiece": [["S", "M"]], - "centerpieces": null, - "centerpiece's": null, - "center's": null, - "Centigrade": null, - "centigrade": [["S"]], - "centigrades": null, - "centigram": [["S", "M"]], - "centigrams": null, - "centigram's": null, - "centiliter": [["M", "S"]], - "centiliter's": null, - "centiliters": null, - "centime": [["S", "M"]], - "centimes": null, - "centime's": null, - "centimeter": [["S", "M"]], - "centimeters": null, - "centimeter's": null, - "centipede": [["M", "S"]], - "centipede's": null, - "centipedes": null, - "Centralia": [["M"]], - "Centralia's": null, - "centralism": [["M"]], - "centralism's": null, - "centralist": [["M"]], - "centralist's": null, - "centrality": [["M", "S"]], - "centrality's": null, - "centralities": null, - "centralization": [["C", "A", "M", "S"]], - "decentralization": null, - "decentralization's": null, - "decentralizations": null, - "recentralization": null, - "recentralization's": null, - "recentralizations": null, - "centralization's": null, - "centralizations": null, - "centralize": [["C", "G", "S", "D"]], - "decentralize": null, - "decentralizing": null, - "decentralizes": null, - "decentralized": null, - "centralizing": null, - "centralizes": [["A"]], - "centralized": null, - "centralizer": [["S", "M"]], - "centralizers": null, - "centralizer's": null, - "recentralizes": null, - "central": [["S", "T", "R", "Y"]], - "centrals": null, - "centralest": null, - "centraler": null, - "centrally": null, - "centrefold's": null, - "Centrex": null, - "CENTREX": [["M"]], - "CENTREX's": null, - "centric": [["F"]], - "concentric": null, - "centrifugal": [["S", "Y"]], - "centrifugals": null, - "centrifugally": null, - "centrifugate": [["N", "M"]], - "centrifugation": [["M"]], - "centrifugate's": null, - "centrifugation's": null, - "centrifuge": [["G", "M", "S", "D"]], - "centrifuging": null, - "centrifuge's": null, - "centrifuges": null, - "centrifuged": null, - "centripetal": [["Y"]], - "centripetally": null, - "centrist": [["M", "S"]], - "centrist's": null, - "centrists": null, - "centroid": [["M", "S"]], - "centroid's": null, - "centroids": null, - "cent": [["S", "Z", "M", "R"]], - "cents": null, - "centers": null, - "cent's": null, - "centurion": [["M", "S"]], - "centurion's": null, - "centurions": null, - "century": [["M", "S"]], - "century's": null, - "centuries": null, - "CEO": null, - "cephalic": [["S"]], - "cephalics": null, - "Cepheid": null, - "Cepheus": [["M"]], - "Cepheus's": null, - "ceramicist": [["S"]], - "ceramicists": null, - "ceramic": [["M", "S"]], - "ceramic's": null, - "ceramics": null, - "ceramist": [["M", "S"]], - "ceramist's": null, - "ceramists": null, - "cerate": [["M", "D"]], - "cerate's": null, - "cerated": null, - "Cerberus": [["M"]], - "Cerberus's": null, - "cereal": [["M", "S"]], - "cereal's": null, - "cereals": null, - "cerebellar": null, - "cerebellum": [["M", "S"]], - "cerebellum's": null, - "cerebellums": null, - "cerebra": null, - "cerebral": [["S", "Y"]], - "cerebrals": null, - "cerebrally": null, - "cerebrate": [["X", "S", "D", "G", "N"]], - "cerebrations": null, - "cerebrates": null, - "cerebrated": null, - "cerebrating": null, - "cerebration": [["M"]], - "cerebration's": null, - "cerebrum": [["M", "S"]], - "cerebrum's": null, - "cerebrums": null, - "cerement": [["S", "M"]], - "cerements": null, - "cerement's": null, - "ceremonial": [["Y", "S", "P"]], - "ceremonially": null, - "ceremonials": null, - "ceremonialness": null, - "ceremoniousness": [["M", "S"]], - "ceremoniousness's": [["U"]], - "ceremoniousnesses": null, - "unceremoniousness's": null, - "ceremonious": [["Y", "U", "P"]], - "ceremoniously": null, - "unceremoniously": null, - "unceremonious": null, - "unceremoniousness": null, - "ceremony": [["M", "S"]], - "ceremony's": null, - "ceremonies": null, - "Cerenkov": [["M"]], - "Cerenkov's": null, - "Ceres": [["M"]], - "Ceres's": null, - "Cerf": [["M"]], - "Cerf's": null, - "cerise": [["S", "M"]], - "cerises": null, - "cerise's": null, - "cerium": [["M", "S"]], - "cerium's": null, - "ceriums": null, - "cermet": [["S", "M"]], - "cermets": null, - "cermet's": null, - "CERN": [["M"]], - "CERN's": null, - "certainer": null, - "certainest": null, - "certainty": [["U", "M", "S"]], - "uncertainty": null, - "uncertainty's": null, - "uncertainties": null, - "certainty's": null, - "certainties": null, - "certain": [["U", "Y"]], - "uncertain": [["P"]], - "uncertainly": null, - "certainly": null, - "cert": [["F", "S"]], - "concert": [["E", "D", "S", "G"]], - "concerts": null, - "certs": null, - "certifiable": null, - "certifiably": null, - "certificate": [["S", "D", "G", "M"]], - "certificates": null, - "certificated": null, - "certificating": null, - "certificate's": null, - "certification": [["A", "M", "C"]], - "recertification": null, - "recertification's": null, - "certification's": null, - "decertification's": null, - "decertification": null, - "certified": [["U"]], - "uncertified": null, - "certifier": [["M"]], - "certifier's": null, - "certify": [["D", "R", "S", "Z", "G", "N", "X"]], - "certifies": null, - "certifiers": null, - "certifying": null, - "certifications": null, - "certiorari": [["M"]], - "certiorari's": null, - "certitude": [["I", "S", "M"]], - "incertitude": null, - "incertitudes": null, - "incertitude's": null, - "certitudes": null, - "certitude's": null, - "cerulean": [["M", "S"]], - "cerulean's": null, - "ceruleans": null, - "Cervantes": [["M"]], - "Cervantes's": null, - "cervical": null, - "cervices": [["M"]], - "cervices's": null, - "cervix": [["M"]], - "cervix's": null, - "Cesarean": null, - "cesarean": [["S"]], - "cesareans": null, - "Cesare": [["M"]], - "Cesare's": null, - "Cesar": [["M"]], - "Cesar's": null, - "Cesaro": [["M"]], - "Cesaro's": null, - "cesium": [["M", "S"]], - "cesium's": null, - "cesiums": null, - "cessation": [["S", "M"]], - "cessations": null, - "cessation's": null, - "cession": [["F", "A", "M", "S", "K"]], - "concession": [["R"]], - "concession's": null, - "concessions": null, - "recession": null, - "recession's": null, - "recessions": null, - "cession's": null, - "procession's": null, - "cessions": null, - "processions": null, - "procession": [["G", "D"]], - "Cessna": [["M"]], - "Cessna's": null, - "cesspit": [["M"]], - "cesspit's": null, - "cesspool": [["S", "M"]], - "cesspools": null, - "cesspool's": null, - "Cesya": [["M"]], - "Cesya's": null, - "cetacean": [["S"]], - "cetaceans": null, - "cetera": [["S"]], - "ceteras": null, - "Cetus": [["M"]], - "Cetus's": null, - "Ceylonese": null, - "Ceylon": [["M"]], - "Ceylon's": null, - "Cezanne": [["S"]], - "Cezannes": null, - "cf": null, - "CF": null, - "CFC": null, - "Cf": [["M"]], - "Cf's": null, - "CFO": null, - "cg": null, - "Chablis": [["S", "M"]], - "Chablises": null, - "Chablis's": null, - "Chaddie": [["M"]], - "Chaddie's": null, - "Chadd": [["M"]], - "Chadd's": null, - "Chaddy": [["M"]], - "Chaddy's": null, - "Chadian": [["S"]], - "Chadians": null, - "Chad": [["M"]], - "Chad's": null, - "Chadwick": [["M"]], - "Chadwick's": null, - "chafe": [["G", "D", "S", "R"]], - "chafing": null, - "chafed": null, - "chafes": null, - "chafer": [["M"]], - "chafer's": null, - "chaffer": [["D", "R", "G"]], - "chaffered": null, - "chafferer": [["M"]], - "chaffering": null, - "chafferer's": null, - "Chaffey": [["M"]], - "Chaffey's": null, - "chaff": [["G", "R", "D", "M", "S"]], - "chaffing": null, - "chaffed": null, - "chaff's": null, - "chaffs": null, - "chaffinch": [["S", "M"]], - "chaffinches": null, - "chaffinch's": null, - "Chagall": [["M"]], - "Chagall's": null, - "chagrin": [["D", "G", "M", "S"]], - "chagrined": null, - "chagrining": null, - "chagrin's": null, - "chagrins": null, - "Chaim": [["M"]], - "Chaim's": null, - "chainlike": null, - "chain's": null, - "chainsaw": [["S", "G", "D"]], - "chainsaws": null, - "chainsawing": null, - "chainsawed": null, - "chain": [["S", "G", "U", "D"]], - "chains": null, - "unchains": null, - "chaining": null, - "unchaining": null, - "unchain": null, - "unchained": null, - "chained": null, - "chairlady": [["M"]], - "chairlady's": null, - "chairlift": [["M", "S"]], - "chairlift's": null, - "chairlifts": null, - "chairman": [["M", "D", "G", "S"]], - "chairman's": null, - "chairmaned": null, - "chairmaning": null, - "chairmans": null, - "chairmanship": [["M", "S"]], - "chairmanship's": null, - "chairmanships": null, - "chairmen": null, - "chairperson": [["M", "S"]], - "chairperson's": null, - "chairpersons": null, - "chair": [["S", "G", "D", "M"]], - "chairs": null, - "chairing": null, - "chaired": null, - "chair's": null, - "chairwoman": [["M"]], - "chairwoman's": null, - "chairwomen": null, - "chaise": [["S", "M"]], - "chaises": null, - "chaise's": null, - "chalcedony": [["M", "S"]], - "chalcedony's": null, - "chalcedonies": null, - "Chaldea": [["M"]], - "Chaldea's": null, - "Chaldean": [["M"]], - "Chaldean's": null, - "chalet": [["S", "M"]], - "chalets": null, - "chalet's": null, - "chalice": [["D", "S", "M"]], - "chaliced": null, - "chalices": null, - "chalice's": null, - "chalkboard": [["S", "M"]], - "chalkboards": null, - "chalkboard's": null, - "chalk": [["D", "S", "M", "G"]], - "chalked": null, - "chalks": null, - "chalk's": null, - "chalking": null, - "chalkiness": [["S"]], - "chalkinesses": null, - "chalkline": null, - "chalky": [["R", "P", "T"]], - "chalkier": null, - "chalkiest": null, - "challenged": [["U"]], - "unchallenged": null, - "challenger": [["M"]], - "challenger's": null, - "challenge": [["Z", "G", "S", "R", "D"]], - "challengers": null, - "challenging": [["Y"]], - "challenges": null, - "challengingly": null, - "challis": [["S", "M"]], - "challises": null, - "challis's": null, - "Chalmers": null, - "chamberer": [["M"]], - "chamberer's": null, - "Chamberlain": [["M"]], - "Chamberlain's": null, - "chamberlain": [["M", "S"]], - "chamberlain's": null, - "chamberlains": null, - "chambermaid": [["M", "S"]], - "chambermaid's": null, - "chambermaids": null, - "chamberpot": [["S"]], - "chamberpots": null, - "Chambers": [["M"]], - "Chambers's": null, - "chamber": [["S", "Z", "G", "D", "R", "M"]], - "chambers": null, - "chamberers": null, - "chambering": null, - "chambered": null, - "chamber's": null, - "chambray": [["M", "S"]], - "chambray's": null, - "chambrays": null, - "chameleon": [["S", "M"]], - "chameleons": null, - "chameleon's": null, - "chamfer": [["D", "M", "G", "S"]], - "chamfered": null, - "chamfer's": null, - "chamfering": null, - "chamfers": null, - "chammy's": null, - "chamois": [["D", "S", "M", "G"]], - "chamoised": null, - "chamoises": null, - "chamois's": null, - "chamoising": null, - "chamomile": [["M", "S"]], - "chamomile's": null, - "chamomiles": null, - "champagne": [["M", "S"]], - "champagne's": null, - "champagnes": null, - "champaign": [["M"]], - "champaign's": null, - "champ": [["D", "G", "S", "Z"]], - "champed": null, - "champing": null, - "champs": null, - "champers": null, - "champion": [["M", "D", "G", "S"]], - "champion's": null, - "championed": null, - "championing": null, - "champions": null, - "championship": [["M", "S"]], - "championship's": null, - "championships": null, - "Champlain": [["M"]], - "Champlain's": null, - "chanced": [["M"]], - "chanced's": null, - "chance": [["G", "M", "R", "S", "D"]], - "chancing": [["M"]], - "chance's": null, - "chancer": null, - "chances": null, - "chancellery": [["S", "M"]], - "chancelleries": null, - "chancellery's": null, - "chancellorship": [["S", "M"]], - "chancellorships": null, - "chancellorship's": null, - "chancellor": [["S", "M"]], - "chancellors": null, - "chancellor's": null, - "Chancellorsville": [["M"]], - "Chancellorsville's": null, - "chancel": [["S", "M"]], - "chancels": null, - "chancel's": null, - "Chance": [["M"]], - "Chance's": null, - "chancery": [["S", "M"]], - "chanceries": null, - "chancery's": null, - "Chancey": [["M"]], - "Chancey's": null, - "chanciness": [["S"]], - "chancinesses": null, - "chancing's": null, - "chancre": [["S", "M"]], - "chancres": null, - "chancre's": null, - "chancy": [["R", "P", "T"]], - "chancier": null, - "chanciest": null, - "Chandal": [["M"]], - "Chandal's": null, - "Chanda": [["M"]], - "Chanda's": null, - "chandelier": [["S", "M"]], - "chandeliers": null, - "chandelier's": null, - "Chandigarh": [["M"]], - "Chandigarh's": null, - "Chandler": [["M"]], - "Chandler's": null, - "chandler": [["M", "S"]], - "chandler's": null, - "chandlers": null, - "Chandragupta": [["M"]], - "Chandragupta's": null, - "Chandra": [["M"]], - "Chandra's": null, - "Chandrasekhar": [["M"]], - "Chandrasekhar's": null, - "Chandy": [["M"]], - "Chandy's": null, - "Chanel": [["M"]], - "Chanel's": null, - "Chane": [["M"]], - "Chane's": null, - "Chaney": [["M"]], - "Chaney's": null, - "Changchun": [["M"]], - "Changchun's": null, - "changeabilities": null, - "changeability": [["U", "M"]], - "unchangeability": null, - "unchangeability's": null, - "changeability's": null, - "changeableness": [["S", "M"]], - "changeablenesses": null, - "changeableness's": null, - "changeable": [["U"]], - "unchangeable": null, - "changeably": [["U"]], - "unchangeably": null, - "changed": [["U"]], - "unchanged": null, - "change": [["G", "Z", "R", "S", "D"]], - "changing": [["U"]], - "changers": null, - "changer": [["M"]], - "changes": null, - "changeless": null, - "changeling": [["M"]], - "changeling's": null, - "changeover": [["S", "M"]], - "changeovers": null, - "changeover's": null, - "changer's": null, - "unchanging": [["P", "Y"]], - "Chang": [["M"]], - "Chang's": null, - "Changsha": [["M"]], - "Changsha's": null, - "Chan": [["M"]], - "Chan's": null, - "Channa": [["M"]], - "Channa's": null, - "channeler": [["M"]], - "channeler's": null, - "channeling": [["M"]], - "channeling's": null, - "channelization": [["S", "M"]], - "channelizations": null, - "channelization's": null, - "channelize": [["G", "D", "S"]], - "channelizing": null, - "channelized": null, - "channelizes": null, - "channellings": null, - "channel": [["M", "D", "R", "Z", "S", "G"]], - "channel's": null, - "channeled": null, - "channelers": null, - "channels": null, - "Channing": [["M"]], - "Channing's": null, - "chanson": [["S", "M"]], - "chansons": null, - "chanson's": null, - "Chantalle": [["M"]], - "Chantalle's": null, - "Chantal": [["M"]], - "Chantal's": null, - "chanter": [["M"]], - "chanter's": null, - "chanteuse": [["M", "S"]], - "chanteuse's": null, - "chanteuses": null, - "chantey": [["S", "M"]], - "chanteys": null, - "chantey's": null, - "chanticleer": [["S", "M"]], - "chanticleers": null, - "chanticleer's": null, - "Chantilly": [["M"]], - "Chantilly's": null, - "chantry": [["M", "S"]], - "chantry's": null, - "chantries": null, - "chant": [["S", "J", "G", "Z", "M", "R", "D"]], - "chants": null, - "chantings": null, - "chanting": null, - "chanters": null, - "chant's": null, - "chanted": null, - "chanty's": null, - "Chanukah's": null, - "Chao": [["M"]], - "Chao's": null, - "chaos": [["S", "M"]], - "chaoses": null, - "chaos's": null, - "chaotic": null, - "chaotically": null, - "chaparral": [["M", "S"]], - "chaparral's": null, - "chaparrals": null, - "chapbook": [["S", "M"]], - "chapbooks": null, - "chapbook's": null, - "chapeau": [["M", "S"]], - "chapeau's": null, - "chapeaus": null, - "chapel": [["M", "S"]], - "chapel's": null, - "chapels": null, - "chaperonage": [["M", "S"]], - "chaperonage's": null, - "chaperonages": null, - "chaperoned": [["U"]], - "unchaperoned": null, - "chaperone's": null, - "chaperon": [["G", "M", "D", "S"]], - "chaperoning": null, - "chaperon's": null, - "chaperons": null, - "chaplaincy": [["M", "S"]], - "chaplaincy's": null, - "chaplaincies": null, - "chaplain": [["M", "S"]], - "chaplain's": null, - "chaplains": null, - "chaplet": [["S", "M"]], - "chaplets": null, - "chaplet's": null, - "Chaplin": [["M"]], - "Chaplin's": null, - "Chapman": [["M"]], - "Chapman's": null, - "chap": [["M", "S"]], - "chap's": null, - "chaps": null, - "Chappaquiddick": [["M"]], - "Chappaquiddick's": null, - "chapped": null, - "chapping": null, - "chapter": [["S", "G", "D", "M"]], - "chapters": null, - "chaptering": null, - "chaptered": null, - "chapter's": null, - "Chara": null, - "charabanc": [["M", "S"]], - "charabanc's": null, - "charabancs": null, - "characterful": null, - "characteristically": [["U"]], - "uncharacteristically": null, - "characteristic": [["S", "M"]], - "characteristics": null, - "characteristic's": null, - "characterizable": [["M", "S"]], - "characterizable's": null, - "characterizables": null, - "characterization": [["M", "S"]], - "characterization's": null, - "characterizations": null, - "characterize": [["D", "R", "S", "B", "Z", "G"]], - "characterized": [["U"]], - "characterizer": [["M"]], - "characterizes": null, - "characterizers": null, - "characterizing": null, - "uncharacterized": null, - "characterizer's": null, - "characterless": null, - "character": [["M", "D", "S", "G"]], - "character's": null, - "charactered": null, - "characters": null, - "charactering": null, - "charade": [["S", "M"]], - "charades": null, - "charade's": null, - "charbroil": [["S", "D", "G"]], - "charbroils": null, - "charbroiled": null, - "charbroiling": null, - "charcoal": [["M", "G", "S", "D"]], - "charcoal's": null, - "charcoaling": null, - "charcoals": null, - "charcoaled": null, - "Chardonnay": null, - "chardonnay": [["S"]], - "chardonnays": null, - "chard": [["S", "M"]], - "chards": null, - "chard's": null, - "chargeableness": [["M"]], - "chargeableness's": null, - "chargeable": [["P"]], - "charged": [["U"]], - "uncharged": null, - "charge": [["E", "G", "R", "S", "D", "A"]], - "discharge": null, - "discharging": null, - "discharger": null, - "discharges": null, - "discharged": [["U"]], - "charging": null, - "recharging": null, - "charger": [["A", "M", "E"]], - "recharger": null, - "charges": null, - "recharges": null, - "recharged": null, - "recharge": null, - "recharger's": null, - "charger's": null, - "discharger's": null, - "chargers": null, - "char": [["G", "S"]], - "charing": null, - "chars": null, - "Charil": [["M"]], - "Charil's": null, - "charily": null, - "chariness": [["M", "S"]], - "chariness's": null, - "charinesses": null, - "Charin": [["M"]], - "Charin's": null, - "charioteer": [["G", "S", "D", "M"]], - "charioteering": null, - "charioteers": null, - "charioteered": null, - "charioteer's": null, - "Chariot": [["M"]], - "Chariot's": null, - "chariot": [["S", "M", "D", "G"]], - "chariots": null, - "chariot's": null, - "charioted": null, - "charioting": null, - "Charis": null, - "charisma": [["M"]], - "charisma's": null, - "charismata": null, - "charismatically": null, - "charismatic": [["S"]], - "charismatics": null, - "Charissa": [["M"]], - "Charissa's": null, - "Charisse": [["M"]], - "Charisse's": null, - "charitablenesses": null, - "charitableness": [["U", "M"]], - "uncharitableness": null, - "uncharitableness's": null, - "charitableness's": null, - "charitable": [["U", "P"]], - "uncharitable": null, - "charitably": [["U"]], - "uncharitably": null, - "Charita": [["M"]], - "Charita's": null, - "Charity": [["M"]], - "Charity's": null, - "charity": [["M", "S"]], - "charity's": null, - "charities": null, - "charlady": [["M"]], - "charlady's": null, - "Charla": [["M"]], - "Charla's": null, - "charlatanism": [["M", "S"]], - "charlatanism's": null, - "charlatanisms": null, - "charlatanry": [["S", "M"]], - "charlatanries": null, - "charlatanry's": null, - "charlatan": [["S", "M"]], - "charlatans": null, - "charlatan's": null, - "Charlean": [["M"]], - "Charlean's": null, - "Charleen": [["M"]], - "Charleen's": null, - "Charlemagne": [["M"]], - "Charlemagne's": null, - "Charlena": [["M"]], - "Charlena's": null, - "Charlene": [["M"]], - "Charlene's": null, - "Charles": [["M"]], - "Charles's": null, - "Charleston": [["S", "M"]], - "Charlestons": null, - "Charleston's": null, - "Charley": [["M"]], - "Charley's": null, - "Charlie": [["M"]], - "Charlie's": null, - "Charline": [["M"]], - "Charline's": null, - "Charlot": [["M"]], - "Charlot's": null, - "Charlotta": [["M"]], - "Charlotta's": null, - "Charlotte": [["M"]], - "Charlotte's": null, - "Charlottesville": [["M"]], - "Charlottesville's": null, - "Charlottetown": [["M"]], - "Charlottetown's": null, - "Charlton": [["M"]], - "Charlton's": null, - "Charmaine": [["M"]], - "Charmaine's": null, - "Charmain": [["M"]], - "Charmain's": null, - "Charmane": [["M"]], - "Charmane's": null, - "charmer": [["M"]], - "charmer's": null, - "Charmian": [["M"]], - "Charmian's": null, - "Charmine": [["M"]], - "Charmine's": null, - "charming": [["R", "Y", "T"]], - "charminger": null, - "charmingly": null, - "charmingest": null, - "Charmin": [["M"]], - "Charmin's": null, - "Charmion": [["M"]], - "Charmion's": null, - "charmless": null, - "charm": [["S", "G", "M", "Z", "R", "D"]], - "charms": null, - "charm's": null, - "charmers": null, - "charmed": null, - "Charolais": null, - "Charo": [["M"]], - "Charo's": null, - "Charon": [["M"]], - "Charon's": null, - "charred": null, - "charring": null, - "charted": [["U"]], - "uncharted": null, - "charter": [["A", "G", "D", "S"]], - "recharter": null, - "rechartering": null, - "rechartered": null, - "recharters": null, - "chartering": null, - "chartered": [["U"]], - "charters": null, - "unchartered": null, - "charterer": [["S", "M"]], - "charterers": null, - "charterer's": null, - "charter's": null, - "chartist": [["S", "M"]], - "chartists": null, - "chartist's": null, - "Chartres": [["M"]], - "Chartres's": null, - "chartreuse": [["M", "S"]], - "chartreuse's": null, - "chartreuses": null, - "chartroom": [["S"]], - "chartrooms": null, - "chart": [["S", "J", "M", "R", "D", "G", "B", "Z"]], - "charts": null, - "chartings": null, - "chart's": null, - "charting": null, - "chartable": null, - "charwoman": [["M"]], - "charwoman's": null, - "charwomen": null, - "Charybdis": [["M"]], - "Charybdis's": null, - "Charyl": [["M"]], - "Charyl's": null, - "chary": [["P", "T", "R"]], - "chariest": null, - "charier": null, - "Chas": null, - "chase": [["D", "S", "R", "G", "Z"]], - "chased": null, - "chases": null, - "chaser": [["M"]], - "chasing": [["M"]], - "chasers": null, - "Chase": [["M"]], - "Chase's": null, - "chaser's": null, - "chasing's": null, - "Chasity": [["M"]], - "Chasity's": null, - "chasm": [["S", "M"]], - "chasms": null, - "chasm's": null, - "chassis": [["M"]], - "chassis's": null, - "chastely": null, - "chasteness": [["S", "M"]], - "chastenesses": null, - "chasteness's": null, - "chasten": [["G", "S", "D"]], - "chastening": null, - "chastens": null, - "chastened": null, - "chaste": [["U", "T", "R"]], - "unchaste": null, - "unchaster": null, - "chastest": null, - "chaster": null, - "chastisement": [["S", "M"]], - "chastisements": null, - "chastisement's": null, - "chastiser": [["M"]], - "chastiser's": null, - "chastise": [["Z", "G", "L", "D", "R", "S"]], - "chastisers": null, - "chastising": null, - "chastised": null, - "chastises": null, - "Chastity": [["M"]], - "Chastity's": null, - "chastity": [["S", "M"]], - "chastities": null, - "chastity's": [["U"]], - "unchastity's": null, - "chasuble": [["S", "M"]], - "chasubles": null, - "chasuble's": null, - "Chateaubriand": null, - "ch�teau": [["M"]], - "ch�teau's": null, - "chateaus": null, - "ch�teaux": null, - "ch�telaine": [["S", "M"]], - "ch�telaines": null, - "ch�telaine's": null, - "chat": [["M", "S"]], - "chat's": null, - "chats": null, - "Chattahoochee": [["M"]], - "Chattahoochee's": null, - "Chattanooga": [["M"]], - "Chattanooga's": null, - "chatted": null, - "chattel": [["M", "S"]], - "chattel's": null, - "chattels": null, - "chatterbox": [["M", "S"]], - "chatterbox's": null, - "chatterboxes": null, - "chatterer": [["M"]], - "chatterer's": null, - "Chatterley": [["M"]], - "Chatterley's": null, - "chatter": [["S", "Z", "G", "D", "R", "Y"]], - "chatters": null, - "chatterers": null, - "chattering": null, - "chattered": null, - "chatterly": null, - "Chatterton": [["M"]], - "Chatterton's": null, - "chattily": null, - "chattiness": [["S", "M"]], - "chattinesses": null, - "chattiness's": null, - "chatting": null, - "chatty": [["R", "T", "P"]], - "chattier": null, - "chattiest": null, - "Chaucer": [["M"]], - "Chaucer's": null, - "chauffeur": [["G", "S", "M", "D"]], - "chauffeuring": null, - "chauffeurs": null, - "chauffeur's": null, - "chauffeured": null, - "Chaunce": [["M"]], - "Chaunce's": null, - "Chauncey": [["M"]], - "Chauncey's": null, - "Chautauqua": [["M"]], - "Chautauqua's": null, - "chauvinism": [["M", "S"]], - "chauvinism's": null, - "chauvinisms": null, - "chauvinistic": null, - "chauvinistically": null, - "chauvinist": [["M", "S"]], - "chauvinist's": null, - "chauvinists": null, - "Chavez": [["M"]], - "Chavez's": null, - "chaw": null, - "Chayefsky": [["M"]], - "Chayefsky's": null, - "cheapen": [["D", "G"]], - "cheapened": null, - "cheapening": null, - "cheapish": null, - "cheapness": [["M", "S"]], - "cheapness's": null, - "cheapnesses": null, - "cheapskate": [["M", "S"]], - "cheapskate's": null, - "cheapskates": null, - "cheap": [["Y", "R", "N", "T", "X", "S", "P"]], - "cheaply": null, - "cheaper": null, - "cheapest": null, - "cheapens": null, - "cheaps": null, - "cheater": [["M"]], - "cheater's": null, - "cheat": [["R", "D", "S", "G", "Z"]], - "cheated": null, - "cheats": null, - "cheating": null, - "cheaters": null, - "Chechen": [["M"]], - "Chechen's": null, - "Chechnya": [["M"]], - "Chechnya's": null, - "checkable": [["U"]], - "uncheckable": null, - "checkbook": [["M", "S"]], - "checkbook's": null, - "checkbooks": null, - "checked": [["U", "A"]], - "unchecked": null, - "rechecked": null, - "checkerboard": [["M", "S"]], - "checkerboard's": null, - "checkerboards": null, - "checker": [["D", "M", "G"]], - "checkered": null, - "checker's": null, - "checkering": null, - "check": [["G", "Z", "B", "S", "R", "D", "M"]], - "checking": null, - "checkers": null, - "checks": [["A"]], - "check's": [["A"]], - "checklist": [["S"]], - "checklists": null, - "checkmate": [["M", "S", "D", "G"]], - "checkmate's": null, - "checkmates": null, - "checkmated": null, - "checkmating": null, - "checkoff": [["S", "M"]], - "checkoffs": null, - "checkoff's": null, - "checkout": [["S"]], - "checkouts": null, - "checkpoint": [["M", "S"]], - "checkpoint's": null, - "checkpoints": null, - "checkroom": [["M", "S"]], - "checkroom's": null, - "checkrooms": null, - "recheck's": null, - "rechecks": null, - "checksummed": null, - "checksumming": null, - "checksum": [["S", "M"]], - "checksums": null, - "checksum's": null, - "checkup": [["M", "S"]], - "checkup's": null, - "checkups": null, - "Cheddar": [["M", "S"]], - "Cheddar's": null, - "Cheddars": null, - "cheddar": [["S"]], - "cheddars": null, - "cheekbone": [["S", "M"]], - "cheekbones": null, - "cheekbone's": null, - "cheek": [["D", "M", "G", "S"]], - "cheeked": null, - "cheek's": null, - "cheeking": null, - "cheeks": null, - "cheekily": null, - "cheekiness": [["S", "M"]], - "cheekinesses": null, - "cheekiness's": null, - "cheeky": [["P", "R", "T"]], - "cheekier": null, - "cheekiest": null, - "cheep": [["G", "M", "D", "S"]], - "cheeping": null, - "cheep's": null, - "cheeped": null, - "cheeps": null, - "cheerer": [["M"]], - "cheerer's": null, - "cheerfuller": null, - "cheerfullest": null, - "cheerfulness": [["M", "S"]], - "cheerfulness's": null, - "cheerfulnesses": null, - "cheerful": [["Y", "P"]], - "cheerfully": null, - "cheerily": null, - "cheeriness": [["S", "M"]], - "cheerinesses": null, - "cheeriness's": null, - "cheerio": [["S"]], - "cheerios": null, - "Cheerios": [["M"]], - "Cheerios's": null, - "cheerleader": [["S", "M"]], - "cheerleaders": null, - "cheerleader's": null, - "cheerlessness": [["S", "M"]], - "cheerlessnesses": null, - "cheerlessness's": null, - "cheerless": [["P", "Y"]], - "cheerlessly": null, - "cheers": [["S"]], - "cheerses": null, - "cheery": [["P", "T", "R"]], - "cheeriest": null, - "cheerier": null, - "cheer": [["Y", "R", "D", "G", "Z", "S"]], - "cheerly": null, - "cheered": null, - "cheering": null, - "cheerers": null, - "cheeseburger": [["S", "M"]], - "cheeseburgers": null, - "cheeseburger's": null, - "cheesecake": [["S", "M"]], - "cheesecakes": null, - "cheesecake's": null, - "cheesecloth": [["M"]], - "cheesecloth's": null, - "cheesecloths": null, - "cheeseparing": [["S"]], - "cheeseparings": null, - "cheese": [["S", "D", "G", "M"]], - "cheeses": null, - "cheesed": null, - "cheesing": null, - "cheese's": null, - "cheesiness": [["S", "M"]], - "cheesinesses": null, - "cheesiness's": null, - "cheesy": [["P", "R", "T"]], - "cheesier": null, - "cheesiest": null, - "cheetah": [["M"]], - "cheetah's": null, - "cheetahs": null, - "Cheeto": [["M"]], - "Cheeto's": null, - "Cheever": [["M"]], - "Cheever's": null, - "cheffed": null, - "cheffing": null, - "chef": [["S", "M"]], - "chefs": null, - "chef's": null, - "Chekhov": [["M"]], - "Chekhov's": null, - "chelate": [["X", "D", "M", "N", "G"]], - "chelations": null, - "chelated": null, - "chelate's": null, - "chelation": [["M"]], - "chelating": null, - "chelation's": null, - "Chelsae": [["M"]], - "Chelsae's": null, - "Chelsea": [["M"]], - "Chelsea's": null, - "Chelsey": [["M"]], - "Chelsey's": null, - "Chelsie": [["M"]], - "Chelsie's": null, - "Chelsy": [["M"]], - "Chelsy's": null, - "Chelyabinsk": [["M"]], - "Chelyabinsk's": null, - "chem": null, - "Che": [["M"]], - "Che's": null, - "chemic": null, - "chemical": [["S", "Y", "M"]], - "chemicals": null, - "chemically": null, - "chemical's": null, - "chemiluminescence": [["M"]], - "chemiluminescence's": null, - "chemiluminescent": null, - "chemise": [["S", "M"]], - "chemises": null, - "chemise's": null, - "chemistry": [["S", "M"]], - "chemistries": null, - "chemistry's": null, - "chemist": [["S", "M"]], - "chemists": null, - "chemist's": null, - "chemotherapeutic": [["S"]], - "chemotherapeutics": null, - "chemotherapy": [["S", "M"]], - "chemotherapies": null, - "chemotherapy's": null, - "chemurgy": [["S", "M"]], - "chemurgies": null, - "chemurgy's": null, - "Chengdu": null, - "Cheng": [["M"]], - "Cheng's": null, - "chenille": [["S", "M"]], - "chenilles": null, - "chenille's": null, - "Chen": [["M"]], - "Chen's": null, - "Cheops": [["M"]], - "Cheops's": null, - "Chere": [["M"]], - "Chere's": null, - "Cherey": [["M"]], - "Cherey's": null, - "Cherianne": [["M"]], - "Cherianne's": null, - "Cherice": [["M"]], - "Cherice's": null, - "Cherida": [["M"]], - "Cherida's": null, - "Cherie": [["M"]], - "Cherie's": null, - "Cherilyn": [["M"]], - "Cherilyn's": null, - "Cherilynn": [["M"]], - "Cherilynn's": null, - "Cheri": [["M"]], - "Cheri's": null, - "Cherin": [["M"]], - "Cherin's": null, - "Cherise": [["M"]], - "Cherise's": null, - "cherisher": [["M"]], - "cherisher's": null, - "cherish": [["G", "D", "R", "S"]], - "cherishing": null, - "cherished": null, - "cherishes": null, - "Cherish": [["M"]], - "Cherish's": null, - "Cheriton": [["M"]], - "Cheriton's": null, - "Cherlyn": [["M"]], - "Cherlyn's": null, - "Cher": [["M"]], - "Cher's": null, - "Chernenko": [["M"]], - "Chernenko's": null, - "Chernobyl": [["M"]], - "Chernobyl's": null, - "Cherokee": [["M", "S"]], - "Cherokee's": null, - "Cherokees": null, - "cheroot": [["M", "S"]], - "cheroot's": null, - "cheroots": null, - "Cherri": [["M"]], - "Cherri's": null, - "Cherrita": [["M"]], - "Cherrita's": null, - "Cherry": [["M"]], - "Cherry's": null, - "cherry": [["S", "M"]], - "cherries": null, - "cherry's": null, - "chert": [["M", "S"]], - "chert's": null, - "cherts": null, - "cherubic": null, - "cherubim": [["S"]], - "cherubims": null, - "cherub": [["S", "M"]], - "cherubs": null, - "cherub's": null, - "chervil": [["M", "S"]], - "chervil's": null, - "chervils": null, - "Cherye": [["M"]], - "Cherye's": null, - "Cheryl": [["M"]], - "Cheryl's": null, - "Chery": [["M"]], - "Chery's": null, - "Chesapeake": [["M"]], - "Chesapeake's": null, - "Cheshire": [["M"]], - "Cheshire's": null, - "Cheslie": [["M"]], - "Cheslie's": null, - "chessboard": [["S", "M"]], - "chessboards": null, - "chessboard's": null, - "chessman": [["M"]], - "chessman's": null, - "chessmen": null, - "chess": [["S", "M"]], - "chesses": null, - "chess's": null, - "Chesterfield": [["M"]], - "Chesterfield's": null, - "chesterfield": [["M", "S"]], - "chesterfield's": null, - "chesterfields": null, - "Chester": [["M"]], - "Chester's": null, - "Chesterton": [["M"]], - "Chesterton's": null, - "chestful": [["S"]], - "chestfuls": null, - "chest": [["M", "R", "D", "S"]], - "chest's": null, - "chester": null, - "chested": null, - "chests": null, - "chestnut": [["S", "M"]], - "chestnuts": null, - "chestnut's": null, - "Cheston": [["M"]], - "Cheston's": null, - "chesty": [["T", "R"]], - "chestiest": null, - "chestier": null, - "Chet": [["M"]], - "Chet's": null, - "Chevalier": [["M"]], - "Chevalier's": null, - "chevalier": [["S", "M"]], - "chevaliers": null, - "chevalier's": null, - "Cheviot": [["M"]], - "Cheviot's": null, - "cheviot": [["S"]], - "cheviots": null, - "Chev": [["M"]], - "Chev's": null, - "Chevrolet": [["M"]], - "Chevrolet's": null, - "chevron": [["D", "M", "S"]], - "chevroned": null, - "chevron's": null, - "chevrons": null, - "Chevy": [["M"]], - "Chevy's": null, - "chewer": [["M"]], - "chewer's": null, - "chew": [["G", "Z", "S", "D", "R"]], - "chewing": null, - "chewers": null, - "chews": null, - "chewed": null, - "chewiness": [["S"]], - "chewinesses": null, - "chewy": [["R", "T", "P"]], - "chewier": null, - "chewiest": null, - "Cheyenne": [["S", "M"]], - "Cheyennes": null, - "Cheyenne's": null, - "chg": null, - "chge": null, - "Chiang": [["M"]], - "Chiang's": null, - "chianti": [["M"]], - "chianti's": null, - "Chianti": [["S"]], - "Chiantis": null, - "chiaroscuro": [["S", "M"]], - "chiaroscuros": null, - "chiaroscuro's": null, - "Chiarra": [["M"]], - "Chiarra's": null, - "Chiba": [["M"]], - "Chiba's": null, - "Chicagoan": [["S", "M"]], - "Chicagoans": null, - "Chicagoan's": null, - "Chicago": [["M"]], - "Chicago's": null, - "Chicana": [["M", "S"]], - "Chicana's": null, - "Chicanas": null, - "chicane": [["M", "G", "D", "S"]], - "chicane's": null, - "chicaning": null, - "chicaned": null, - "chicanes": null, - "chicanery": [["M", "S"]], - "chicanery's": null, - "chicaneries": null, - "Chicano": [["M", "S"]], - "Chicano's": null, - "Chicanos": null, - "chichi": [["R", "T", "S"]], - "chichier": null, - "chichiest": null, - "chichis": null, - "chickadee": [["S", "M"]], - "chickadees": null, - "chickadee's": null, - "Chickasaw": [["S", "M"]], - "Chickasaws": null, - "Chickasaw's": null, - "chickenfeed": null, - "chicken": [["G", "D", "M"]], - "chickening": null, - "chickened": null, - "chicken's": null, - "chickenhearted": null, - "chickenpox": [["M", "S"]], - "chickenpox's": null, - "chickenpoxes": null, - "Chickie": [["M"]], - "Chickie's": null, - "Chick": [["M"]], - "Chick's": null, - "chickpea": [["M", "S"]], - "chickpea's": null, - "chickpeas": null, - "chickweed": [["M", "S"]], - "chickweed's": null, - "chickweeds": null, - "chick": [["X", "S", "N", "M"]], - "chickens": null, - "chicks": null, - "chick's": null, - "Chicky": [["M"]], - "Chicky's": null, - "chicle": [["M", "S"]], - "chicle's": null, - "chicles": null, - "Chic": [["M"]], - "Chic's": null, - "chicness": [["S"]], - "chicnesses": null, - "Chico": [["M"]], - "Chico's": null, - "chicory": [["M", "S"]], - "chicory's": null, - "chicories": null, - "chic": [["S", "Y", "R", "P", "T"]], - "chics": null, - "chicly": null, - "chicer": null, - "chicest": null, - "chide": [["G", "D", "S"]], - "chiding": [["Y"]], - "chided": null, - "chides": null, - "chidingly": null, - "chiefdom": [["M", "S"]], - "chiefdom's": null, - "chiefdoms": null, - "chieftain": [["S", "M"]], - "chieftains": null, - "chieftain's": null, - "chief": [["Y", "R", "M", "S", "T"]], - "chiefly": null, - "chiefer": null, - "chief's": null, - "chiefs": null, - "chiefest": null, - "chiffonier": [["M", "S"]], - "chiffonier's": null, - "chiffoniers": null, - "chiffon": [["M", "S"]], - "chiffon's": null, - "chiffons": null, - "chigger": [["M", "S"]], - "chigger's": null, - "chiggers": null, - "chignon": [["M", "S"]], - "chignon's": null, - "chignons": null, - "Chihuahua": [["M", "S"]], - "Chihuahua's": null, - "Chihuahuas": null, - "chihuahua": [["S"]], - "chihuahuas": null, - "chilblain": [["M", "S"]], - "chilblain's": null, - "chilblains": null, - "childbearing": [["M", "S"]], - "childbearing's": null, - "childbearings": null, - "childbirth": [["M"]], - "childbirth's": null, - "childbirths": null, - "childcare": [["S"]], - "childcares": null, - "childes": null, - "child": [["G", "M", "Y", "D"]], - "childing": null, - "child's": null, - "childly": null, - "childed": null, - "childhood": [["M", "S"]], - "childhood's": null, - "childhoods": null, - "childishness": [["S", "M"]], - "childishnesses": null, - "childishness's": null, - "childish": [["Y", "P"]], - "childishly": null, - "childlessness": [["S", "M"]], - "childlessnesses": null, - "childlessness's": null, - "childless": [["P"]], - "childlikeness": [["M"]], - "childlikeness's": null, - "childlike": [["P"]], - "childminders": null, - "childproof": [["G", "S", "D"]], - "childproofing": null, - "childproofs": null, - "childproofed": null, - "childrearing": null, - "children": [["M"]], - "children's": null, - "Chilean": [["S"]], - "Chileans": null, - "Chile": [["M", "S"]], - "Chile's": null, - "Chiles": null, - "chile's": null, - "chilies": null, - "chili": [["M"]], - "chili's": null, - "chiller": [["M"]], - "chiller's": null, - "chilliness": [["M", "S"]], - "chilliness's": null, - "chillinesses": null, - "chilling": [["Y"]], - "chillingly": null, - "chilli's": null, - "chill": [["M", "R", "D", "J", "G", "T", "Z", "P", "S"]], - "chill's": null, - "chilled": null, - "chillings": null, - "chillest": null, - "chillers": null, - "chillness": [["M", "S"]], - "chills": null, - "chillness's": null, - "chillnesses": null, - "chilly": [["T", "P", "R", "S"]], - "chilliest": null, - "chillier": null, - "chillies": null, - "Chilton": [["M"]], - "Chilton's": null, - "Chi": [["M"]], - "Chi's": null, - "chimaera's": null, - "chimaerical": null, - "Chimborazo": [["M"]], - "Chimborazo's": null, - "chime": [["D", "S", "R", "G", "M", "Z"]], - "chimed": null, - "chimes": null, - "chimer": [["M"]], - "chiming": null, - "chime's": null, - "chimers": null, - "Chimera": [["S"]], - "Chimeras": null, - "chimera": [["S", "M"]], - "chimeras": null, - "chimera's": null, - "chimeric": null, - "chimerical": null, - "chimer's": null, - "Chimiques": null, - "chimney": [["S", "M", "D"]], - "chimneys": null, - "chimney's": null, - "chimneyed": null, - "chimpanzee": [["S", "M"]], - "chimpanzees": null, - "chimpanzee's": null, - "chimp": [["M", "S"]], - "chimp's": null, - "chimps": null, - "chi": [["M", "S"]], - "chi's": null, - "chis": null, - "Chimu": [["M"]], - "Chimu's": null, - "Ch'in": null, - "China": [["M"]], - "China's": null, - "Chinaman": [["M"]], - "Chinaman's": null, - "Chinamen": null, - "china": [["M", "S"]], - "china's": null, - "chinas": null, - "Chinatown": [["S", "M"]], - "Chinatowns": null, - "Chinatown's": null, - "chinchilla": [["S", "M"]], - "chinchillas": null, - "chinchilla's": null, - "chine": [["M", "S"]], - "chine's": null, - "chines": null, - "Chinese": [["M"]], - "Chinese's": null, - "Ching": [["M"]], - "Ching's": null, - "chink": [["D", "M", "S", "G"]], - "chinked": null, - "chink's": null, - "chinks": null, - "chinking": null, - "chinless": null, - "Chin": [["M"]], - "Chin's": null, - "chinned": null, - "chinner": [["S"]], - "chinners": null, - "chinning": null, - "chino": [["M", "S"]], - "chino's": null, - "chinos": null, - "Chinook": [["M", "S"]], - "Chinook's": null, - "Chinooks": null, - "chin": [["S", "G", "D", "M"]], - "chins": null, - "chining": null, - "chined": null, - "chin's": null, - "chinstrap": [["S"]], - "chinstraps": null, - "chintz": [["S", "M"]], - "chintzes": null, - "chintz's": null, - "chintzy": [["T", "R"]], - "chintziest": null, - "chintzier": null, - "chipboard": [["M"]], - "chipboard's": null, - "Chipewyan": [["M"]], - "Chipewyan's": null, - "Chip": [["M"]], - "Chip's": null, - "chipmunk": [["S", "M"]], - "chipmunks": null, - "chipmunk's": null, - "chipped": null, - "Chippendale": [["M"]], - "Chippendale's": null, - "chipper": [["D", "G", "S"]], - "chippered": null, - "chippering": null, - "chippers": null, - "Chippewa": [["M", "S"]], - "Chippewa's": null, - "Chippewas": null, - "chipping": [["M", "S"]], - "chipping's": null, - "chippings": null, - "chip": [["S", "M"]], - "chips": null, - "chip's": null, - "Chiquia": [["M"]], - "Chiquia's": null, - "Chiquita": [["M"]], - "Chiquita's": null, - "chiral": null, - "Chirico": [["M"]], - "Chirico's": null, - "chirography": [["S", "M"]], - "chirographies": null, - "chirography's": null, - "chiropodist": [["S", "M"]], - "chiropodists": null, - "chiropodist's": null, - "chiropody": [["M", "S"]], - "chiropody's": null, - "chiropodies": null, - "chiropractic": [["M", "S"]], - "chiropractic's": null, - "chiropractics": null, - "chiropractor": [["S", "M"]], - "chiropractors": null, - "chiropractor's": null, - "chirp": [["G", "D", "S"]], - "chirping": null, - "chirped": null, - "chirps": null, - "chirpy": [["R", "T"]], - "chirpier": null, - "chirpiest": null, - "chirrup": [["D", "G", "S"]], - "chirruped": null, - "chirruping": null, - "chirrups": null, - "chiseler": [["M"]], - "chiseler's": null, - "chisel": [["Z", "G", "S", "J", "M", "D", "R"]], - "chiselers": null, - "chiseling": null, - "chisels": null, - "chiselings": null, - "chisel's": null, - "chiseled": null, - "Chisholm": [["M"]], - "Chisholm's": null, - "Chisinau": [["M"]], - "Chisinau's": null, - "chitchat": [["S", "M"]], - "chitchats": null, - "chitchat's": null, - "chitchatted": null, - "chitchatting": null, - "chitinous": null, - "chitin": [["S", "M"]], - "chitins": null, - "chitin's": null, - "chit": [["S", "M"]], - "chits": null, - "chit's": null, - "Chittagong": [["M"]], - "Chittagong's": null, - "chitterlings": null, - "chivalric": null, - "chivalrously": [["U"]], - "unchivalrously": null, - "chivalrousness": [["M", "S"]], - "chivalrousness's": null, - "chivalrousnesses": null, - "chivalrous": [["Y", "P"]], - "chivalry": [["S", "M"]], - "chivalries": null, - "chivalry's": null, - "chive": [["G", "M", "D", "S"]], - "chiving": null, - "chive's": null, - "chived": null, - "chives": null, - "chivvy": [["D"]], - "chivvied": null, - "chivying": null, - "chlamydiae": null, - "chlamydia": [["S"]], - "chlamydias": null, - "Chloe": [["M"]], - "Chloe's": null, - "Chloette": [["M"]], - "Chloette's": null, - "Chlo": [["M"]], - "Chlo's": null, - "chloral": [["M", "S"]], - "chloral's": null, - "chlorals": null, - "chlorate": [["M"]], - "chlorate's": null, - "chlordane": [["M", "S"]], - "chlordane's": null, - "chlordanes": null, - "chloride": [["M", "S"]], - "chloride's": null, - "chlorides": null, - "chlorinated": [["C"]], - "dechlorinated": null, - "chlorinates": [["C"]], - "dechlorinates": null, - "chlorinate": [["X", "D", "S", "G", "N"]], - "chlorinations": null, - "chlorinating": null, - "chlorination": [["M"]], - "chlorination's": null, - "chlorine": [["M", "S"]], - "chlorine's": null, - "chlorines": null, - "Chloris": null, - "chlorofluorocarbon": [["S"]], - "chlorofluorocarbons": null, - "chloroform": [["D", "M", "S", "G"]], - "chloroformed": null, - "chloroform's": null, - "chloroforms": null, - "chloroforming": null, - "chlorophyll": [["S", "M"]], - "chlorophylls": null, - "chlorophyll's": null, - "chloroplast": [["M", "S"]], - "chloroplast's": null, - "chloroplasts": null, - "chloroquine": [["M"]], - "chloroquine's": null, - "chm": null, - "Ch": [["M", "G", "N", "R", "S"]], - "Ch's": null, - "Ches": null, - "chockablock": null, - "chock": [["S", "G", "R", "D", "M"]], - "chocks": null, - "chocking": null, - "chocker": null, - "chocked": null, - "chock's": null, - "chocoholic": [["S"]], - "chocoholics": null, - "chocolate": [["M", "S"]], - "chocolate's": null, - "chocolates": null, - "chocolaty": null, - "Choctaw": [["M", "S"]], - "Choctaw's": null, - "Choctaws": null, - "choiceness": [["M"]], - "choiceness's": null, - "choice": [["R", "S", "M", "T", "Y", "P"]], - "choicer": null, - "choices": null, - "choice's": null, - "choicest": null, - "choicely": null, - "choirboy": [["M", "S"]], - "choirboy's": null, - "choirboys": null, - "choirmaster": [["S", "M"]], - "choirmasters": null, - "choirmaster's": null, - "choir": [["S", "D", "M", "G"]], - "choirs": null, - "choired": null, - "choir's": null, - "choiring": null, - "chokeberry": [["M"]], - "chokeberry's": null, - "chokecherry": [["S", "M"]], - "chokecherries": null, - "chokecherry's": null, - "choke": [["D", "S", "R", "G", "Z"]], - "choked": null, - "chokes": [["M"]], - "choker": [["M"]], - "choking": [["Y"]], - "chokers": null, - "choker's": null, - "chokes's": null, - "chokingly": null, - "cholera": [["S", "M"]], - "choleras": null, - "cholera's": null, - "choleric": null, - "choler": [["S", "M"]], - "cholers": null, - "choler's": null, - "cholesterol": [["S", "M"]], - "cholesterols": null, - "cholesterol's": null, - "choline": [["M"]], - "choline's": null, - "cholinesterase": [["M"]], - "cholinesterase's": null, - "chomp": [["D", "S", "G"]], - "chomped": null, - "chomps": null, - "chomping": null, - "Chomsky": [["M"]], - "Chomsky's": null, - "Chongqing": null, - "choose": [["G", "Z", "R", "S"]], - "choosing": null, - "choosers": null, - "chooser": [["M"]], - "chooses": null, - "chooser's": null, - "choosiness": [["S"]], - "choosinesses": null, - "choosy": [["R", "P", "T"]], - "choosier": null, - "choosiest": null, - "chophouse": [["S", "M"]], - "chophouses": null, - "chophouse's": null, - "Chopin": [["M"]], - "Chopin's": null, - "chopped": null, - "chopper": [["S", "D", "M", "G"]], - "choppers": null, - "choppered": null, - "chopper's": null, - "choppering": null, - "choppily": null, - "choppiness": [["M", "S"]], - "choppiness's": null, - "choppinesses": null, - "chopping": null, - "choppy": [["R", "P", "T"]], - "choppier": null, - "choppiest": null, - "chop": [["S"]], - "chops": null, - "chopstick": [["S", "M"]], - "chopsticks": null, - "chopstick's": null, - "chorale": [["M", "S"]], - "chorale's": null, - "chorales": null, - "choral": [["S", "Y"]], - "chorals": null, - "chorally": null, - "chordal": null, - "chordata": null, - "chordate": [["M", "S"]], - "chordate's": null, - "chordates": null, - "chording": [["M"]], - "chording's": null, - "chord": [["S", "G", "M", "D"]], - "chords": null, - "chord's": null, - "chorded": null, - "chorea": [["M", "S"]], - "chorea's": null, - "choreas": null, - "chore": [["D", "S", "G", "N", "M"]], - "chored": null, - "chores": null, - "choring": null, - "chorion": [["M"]], - "chore's": null, - "choreographer": [["M"]], - "choreographer's": null, - "choreographic": null, - "choreographically": null, - "choreographs": null, - "choreography": [["M", "S"]], - "choreography's": null, - "choreographies": null, - "choreograph": [["Z", "G", "D", "R"]], - "choreographers": null, - "choreographing": null, - "choreographed": null, - "chorines": null, - "chorion's": null, - "chorister": [["S", "M"]], - "choristers": null, - "chorister's": null, - "choroid": [["S"]], - "choroids": null, - "chortler": [["M"]], - "chortler's": null, - "chortle": [["Z", "G", "D", "R", "S"]], - "chortlers": null, - "chortling": null, - "chortled": null, - "chortles": null, - "chorus": [["G", "D", "S", "M"]], - "chorusing": null, - "chorused": null, - "choruses": null, - "chorus's": null, - "chosen": [["U"]], - "unchosen": null, - "chose": [["S"]], - "choses": null, - "Chou": [["M"]], - "Chou's": null, - "chowder": [["S", "G", "D", "M"]], - "chowders": null, - "chowdering": null, - "chowdered": null, - "chowder's": null, - "chow": [["D", "G", "M", "S"]], - "chowed": null, - "chowing": null, - "chow's": null, - "chows": null, - "Chretien": [["M"]], - "Chretien's": null, - "Chris": [["M"]], - "Chris's": null, - "chrism": [["S", "M"]], - "chrisms": null, - "chrism's": null, - "chrissake": null, - "Chrisse": [["M"]], - "Chrisse's": null, - "Chrissie": [["M"]], - "Chrissie's": null, - "Chrissy": [["M"]], - "Chrissy's": null, - "Christabella": [["M"]], - "Christabella's": null, - "Christabel": [["M"]], - "Christabel's": null, - "Christalle": [["M"]], - "Christalle's": null, - "Christal": [["M"]], - "Christal's": null, - "Christa": [["M"]], - "Christa's": null, - "Christan": [["M"]], - "Christan's": null, - "Christchurch": [["M"]], - "Christchurch's": null, - "Christean": [["M"]], - "Christean's": null, - "Christel": [["M"]], - "Christel's": null, - "Christendom": [["M", "S"]], - "Christendom's": null, - "Christendoms": null, - "christened": [["U"]], - "unchristened": null, - "christening": [["S", "M"]], - "christenings": null, - "christening's": null, - "Christen": [["M"]], - "Christen's": null, - "christen": [["S", "A", "G", "D"]], - "christens": null, - "rechristens": null, - "rechristen": null, - "rechristening": null, - "rechristened": null, - "Christensen": [["M"]], - "Christensen's": null, - "Christenson": [["M"]], - "Christenson's": null, - "Christiana": [["M"]], - "Christiana's": null, - "Christiane": [["M"]], - "Christiane's": null, - "Christianity": [["S", "M"]], - "Christianities": null, - "Christianity's": null, - "Christianize": [["G", "S", "D"]], - "Christianizing": null, - "Christianizes": null, - "Christianized": null, - "Christian": [["M", "S"]], - "Christian's": null, - "Christians": [["N"]], - "Christiano": [["M"]], - "Christiano's": null, - "Christiansen": [["M"]], - "Christiansen's": null, - "Christie": [["S", "M"]], - "Christies": null, - "Christie's": null, - "Christi": [["M"]], - "Christi's": null, - "Christina": [["M"]], - "Christina's": null, - "Christine": [["M"]], - "Christine's": null, - "Christin": [["M"]], - "Christin's": null, - "Christlike": null, - "Christmas": [["S", "M"]], - "Christmases": null, - "Christmas's": null, - "Christmastide": [["S", "M"]], - "Christmastides": null, - "Christmastide's": null, - "Christmastime": [["S"]], - "Christmastimes": null, - "Christoffel": [["M"]], - "Christoffel's": null, - "Christoffer": [["M"]], - "Christoffer's": null, - "Christoforo": [["M"]], - "Christoforo's": null, - "Christoper": [["M"]], - "Christoper's": null, - "Christophe": [["M"]], - "Christophe's": null, - "Christopher": [["M"]], - "Christopher's": null, - "Christoph": [["M", "R"]], - "Christoph's": null, - "Christophorus": [["M"]], - "Christophorus's": null, - "Christos": [["M"]], - "Christos's": null, - "Christ": [["S", "M", "N"]], - "Christs": null, - "Christ's": null, - "Christye": [["M"]], - "Christye's": null, - "Christyna": [["M"]], - "Christyna's": null, - "Christy's": null, - "Chrisy": [["M"]], - "Chrisy's": null, - "chroma": [["M"]], - "chroma's": null, - "chromate": [["M"]], - "chromate's": null, - "chromatically": null, - "chromaticism": [["M"]], - "chromaticism's": null, - "chromaticness": [["M"]], - "chromaticness's": null, - "chromatic": [["P", "S"]], - "chromatics": [["M"]], - "chromatics's": null, - "chromatin": [["M", "S"]], - "chromatin's": null, - "chromatins": null, - "chromatogram": [["M", "S"]], - "chromatogram's": null, - "chromatograms": null, - "chromatograph": null, - "chromatographic": null, - "chromatography": [["M"]], - "chromatography's": null, - "chrome": [["G", "M", "S", "D"]], - "chroming": null, - "chrome's": null, - "chromes": null, - "chromed": null, - "chromic": null, - "chromite": [["M"]], - "chromite's": null, - "chromium": [["S", "M"]], - "chromiums": null, - "chromium's": null, - "chromosomal": null, - "chromosome": [["M", "S"]], - "chromosome's": null, - "chromosomes": null, - "chromosphere": [["M"]], - "chromosphere's": null, - "chronically": null, - "chronicled": [["U"]], - "unchronicled": null, - "chronicler": [["M"]], - "chronicler's": null, - "chronicle": [["S", "R", "D", "M", "Z", "G"]], - "chronicles": null, - "chronicle's": null, - "chroniclers": null, - "chronicling": null, - "chronic": [["S"]], - "chronics": null, - "chronograph": [["M"]], - "chronograph's": null, - "chronographs": null, - "chronography": null, - "chronological": [["Y"]], - "chronologically": null, - "chronologist": [["M", "S"]], - "chronologist's": null, - "chronologists": null, - "chronology": [["M", "S"]], - "chronology's": null, - "chronologies": null, - "chronometer": [["M", "S"]], - "chronometer's": null, - "chronometers": null, - "chronometric": null, - "Chrotoem": [["M"]], - "Chrotoem's": null, - "chrysalids": null, - "chrysalis": [["S", "M"]], - "chrysalises": null, - "chrysalis's": null, - "Chrysa": [["M"]], - "Chrysa's": null, - "chrysanthemum": [["M", "S"]], - "chrysanthemum's": null, - "chrysanthemums": null, - "Chrysler": [["M"]], - "Chrysler's": null, - "Chrysostom": [["M"]], - "Chrysostom's": null, - "Chrystal": [["M"]], - "Chrystal's": null, - "Chrystel": [["M"]], - "Chrystel's": null, - "Chryste": [["M"]], - "Chryste's": null, - "chubbiness": [["S", "M"]], - "chubbinesses": null, - "chubbiness's": null, - "chubby": [["R", "T", "P"]], - "chubbier": null, - "chubbiest": null, - "chub": [["M", "S"]], - "chub's": null, - "chubs": null, - "Chucho": [["M"]], - "Chucho's": null, - "chuck": [["G", "S", "D", "M"]], - "chucking": null, - "chucks": null, - "chucked": null, - "chuck's": null, - "chuckhole": [["S", "M"]], - "chuckholes": null, - "chuckhole's": null, - "chuckle": [["D", "S", "G"]], - "chuckled": null, - "chuckles": null, - "chuckling": [["Y"]], - "chucklingly": null, - "Chuck": [["M"]], - "Chuck's": null, - "chuff": [["D", "M"]], - "chuffed": null, - "chuff's": null, - "chugged": null, - "chugging": null, - "chug": [["M", "S"]], - "chug's": null, - "chugs": null, - "Chukchi": [["M"]], - "Chukchi's": null, - "chukka": [["S"]], - "chukkas": null, - "Chumash": [["M"]], - "Chumash's": null, - "chummed": null, - "chummily": null, - "chumminess": [["M", "S"]], - "chumminess's": null, - "chumminesses": null, - "chumming": null, - "chum": [["M", "S"]], - "chum's": null, - "chums": null, - "chummy": [["S", "R", "T", "P"]], - "chummies": null, - "chummier": null, - "chummiest": null, - "chumping": [["M"]], - "chumping's": null, - "chump": [["M", "D", "G", "S"]], - "chump's": null, - "chumped": null, - "chumps": null, - "Chungking's": null, - "Chung": [["M"]], - "Chung's": null, - "chunkiness": [["M", "S"]], - "chunkiness's": null, - "chunkinesses": null, - "chunk": [["S", "G", "D", "M"]], - "chunks": null, - "chunking": null, - "chunked": null, - "chunk's": null, - "chunky": [["R", "P", "T"]], - "chunkier": null, - "chunkiest": null, - "chuntering": null, - "churchgoer": [["S", "M"]], - "churchgoers": null, - "churchgoer's": null, - "churchgoing": [["S", "M"]], - "churchgoings": null, - "churchgoing's": null, - "Churchillian": null, - "Churchill": [["M"]], - "Churchill's": null, - "churchliness": [["M"]], - "churchliness's": null, - "churchly": [["P"]], - "churchman": [["M"]], - "churchman's": null, - "church": [["M", "D", "S", "Y", "G"]], - "church's": null, - "churched": null, - "churches": null, - "churching": null, - "churchmen": null, - "Church": [["M", "S"]], - "Church's": null, - "Churches": null, - "churchwarden": [["S", "M"]], - "churchwardens": null, - "churchwarden's": null, - "churchwoman": [["M"]], - "churchwoman's": null, - "churchwomen": null, - "churchyard": [["S", "M"]], - "churchyards": null, - "churchyard's": null, - "churlishness": [["S", "M"]], - "churlishnesses": null, - "churlishness's": null, - "churlish": [["Y", "P"]], - "churlishly": null, - "churl": [["S", "M"]], - "churls": null, - "churl's": null, - "churner": [["M"]], - "churner's": null, - "churning": [["M"]], - "churning's": null, - "churn": [["S", "G", "Z", "R", "D", "M"]], - "churns": null, - "churners": null, - "churned": null, - "churn's": null, - "chute": [["D", "S", "G", "M"]], - "chuted": null, - "chutes": null, - "chuting": null, - "chute's": null, - "chutney": [["M", "S"]], - "chutney's": null, - "chutneys": null, - "chutzpah": [["M"]], - "chutzpah's": null, - "chutzpahs": null, - "chutzpa": [["S", "M"]], - "chutzpas": null, - "chutzpa's": null, - "Chuvash": [["M"]], - "Chuvash's": null, - "ch": [["V", "T"]], - "chyme": [["S", "M"]], - "chymes": null, - "chyme's": null, - "Ci": null, - "CIA": null, - "ciao": [["S"]], - "ciaos": null, - "cicada": [["M", "S"]], - "cicada's": null, - "cicadas": null, - "cicatrice": [["S"]], - "cicatrices": null, - "cicatrix's": null, - "Cicely": [["M"]], - "Cicely's": null, - "Cicero": [["M"]], - "Cicero's": null, - "cicerone": [["M", "S"]], - "cicerone's": null, - "cicerones": null, - "ciceroni": null, - "Ciceronian": null, - "Cicily": [["M"]], - "Cicily's": null, - "CID": null, - "cider's": [["C"]], - "decider's": null, - "cider": [["S", "M"]], - "ciders": null, - "Cid": [["M"]], - "Cid's": null, - "Ciel": [["M"]], - "Ciel's": null, - "cigarette": [["M", "S"]], - "cigarette's": null, - "cigarettes": null, - "cigarillo": [["M", "S"]], - "cigarillo's": null, - "cigarillos": null, - "cigar": [["S", "M"]], - "cigars": null, - "cigar's": null, - "cilantro": [["S"]], - "cilantros": null, - "cilia": [["M"]], - "cilia's": null, - "ciliate": [["F", "D", "S"]], - "conciliate": [["G", "N", "V", "X"]], - "conciliated": null, - "conciliates": null, - "ciliated": null, - "ciliates": null, - "ciliately": null, - "cilium": [["M"]], - "cilium's": null, - "Cilka": [["M"]], - "Cilka's": null, - "cinch": [["M", "S", "D", "G"]], - "cinch's": null, - "cinches": null, - "cinched": null, - "cinching": null, - "cinchona": [["S", "M"]], - "cinchonas": null, - "cinchona's": null, - "Cincinnati": [["M"]], - "Cincinnati's": null, - "cincture": [["M", "G", "S", "D"]], - "cincture's": null, - "cincturing": null, - "cinctures": null, - "cinctured": null, - "Cinda": [["M"]], - "Cinda's": null, - "Cindee": [["M"]], - "Cindee's": null, - "Cindelyn": [["M"]], - "Cindelyn's": null, - "cinder": [["D", "M", "G", "S"]], - "cindered": null, - "cinder's": null, - "cindering": null, - "cinders": null, - "Cinderella": [["M", "S"]], - "Cinderella's": null, - "Cinderellas": null, - "Cindie": [["M"]], - "Cindie's": null, - "Cindi": [["M"]], - "Cindi's": null, - "Cindra": [["M"]], - "Cindra's": null, - "Cindy": [["M"]], - "Cindy's": null, - "cine": [["M"]], - "cine's": null, - "cinema": [["S", "M"]], - "cinemas": null, - "cinema's": null, - "cinematic": null, - "cinematographer": [["M", "S"]], - "cinematographer's": null, - "cinematographers": null, - "cinematographic": null, - "cinematography": [["M", "S"]], - "cinematography's": null, - "cinematographies": null, - "Cinerama": [["M"]], - "Cinerama's": null, - "cinnabar": [["M", "S"]], - "cinnabar's": null, - "cinnabars": null, - "Cinnamon": [["M"]], - "Cinnamon's": null, - "cinnamon": [["M", "S"]], - "cinnamon's": null, - "cinnamons": null, - "ciphered": [["C"]], - "deciphered": null, - "cipher": [["M", "S", "G", "D"]], - "cipher's": null, - "ciphers": [["C"]], - "ciphering": null, - "deciphers": null, - "cir": null, - "circa": null, - "circadian": null, - "Circe": [["M"]], - "Circe's": null, - "circler": [["M"]], - "circler's": null, - "circle": [["R", "S", "D", "G", "M"]], - "circles": null, - "circled": null, - "circling": null, - "circle's": null, - "circlet": [["M", "S"]], - "circlet's": null, - "circlets": null, - "circuital": null, - "circuit": [["G", "S", "M", "D"]], - "circuiting": null, - "circuits": null, - "circuit's": null, - "circuited": null, - "circuitousness": [["M", "S"]], - "circuitousness's": null, - "circuitousnesses": null, - "circuitous": [["Y", "P"]], - "circuitously": null, - "circuitry": [["S", "M"]], - "circuitries": null, - "circuitry's": null, - "circuity": [["M", "S"]], - "circuity's": null, - "circuities": null, - "circulant": null, - "circularity": [["S", "M"]], - "circularities": null, - "circularity's": null, - "circularize": [["G", "S", "D"]], - "circularizing": null, - "circularizes": null, - "circularized": null, - "circularness": [["M"]], - "circularness's": null, - "circular": [["P", "S", "M", "Y"]], - "circulars": null, - "circular's": null, - "circularly": null, - "circulate": [["A", "S", "D", "N", "G"]], - "recirculate": null, - "recirculates": null, - "recirculated": null, - "recirculation": null, - "recirculating": null, - "circulates": null, - "circulated": null, - "circulation": [["M", "A"]], - "circulating": null, - "circulation's": null, - "recirculation's": null, - "circulations": null, - "circulative": null, - "circulatory": null, - "circumcise": [["D", "R", "S", "X", "N", "G"]], - "circumcised": [["U"]], - "circumciser": [["M"]], - "circumcises": null, - "circumcisions": null, - "circumcision": [["M"]], - "circumcising": null, - "uncircumcised": null, - "circumciser's": null, - "circumcision's": null, - "circumference": [["S", "M"]], - "circumferences": null, - "circumference's": null, - "circumferential": [["Y"]], - "circumferentially": null, - "circumflex": [["M", "S", "D", "G"]], - "circumflex's": null, - "circumflexes": null, - "circumflexed": null, - "circumflexing": null, - "circumlocution": [["M", "S"]], - "circumlocution's": null, - "circumlocutions": null, - "circumlocutory": null, - "circumnavigate": [["D", "S", "N", "G", "X"]], - "circumnavigated": null, - "circumnavigates": null, - "circumnavigation": [["M"]], - "circumnavigating": null, - "circumnavigations": null, - "circumnavigational": null, - "circumnavigation's": null, - "circumpolar": null, - "circumscribe": [["G", "S", "D"]], - "circumscribing": null, - "circumscribes": null, - "circumscribed": null, - "circumscription": [["S", "M"]], - "circumscriptions": null, - "circumscription's": null, - "circumspection": [["S", "M"]], - "circumspections": null, - "circumspection's": null, - "circumspect": [["Y"]], - "circumspectly": null, - "circumsphere": null, - "circumstance": [["S", "D", "M", "G"]], - "circumstances": null, - "circumstanced": null, - "circumstance's": null, - "circumstancing": null, - "circumstantial": [["Y", "S"]], - "circumstantially": null, - "circumstantials": null, - "circumvention": [["M", "S"]], - "circumvention's": null, - "circumventions": null, - "circumvent": [["S", "B", "G", "D"]], - "circumvents": null, - "circumventable": null, - "circumventing": null, - "circumvented": null, - "circus": [["S", "M"]], - "circuses": null, - "circus's": null, - "Cirillo": [["M"]], - "Cirillo's": null, - "Cirilo": [["M"]], - "Cirilo's": null, - "Ciro": [["M"]], - "Ciro's": null, - "cirque": [["S", "M"]], - "cirques": null, - "cirque's": null, - "cirrhoses": null, - "cirrhosis": [["M"]], - "cirrhosis's": null, - "cirrhotic": [["S"]], - "cirrhotics": null, - "cirri": [["M"]], - "cirri's": null, - "cirrus": [["M"]], - "cirrus's": null, - "Cissiee": [["M"]], - "Cissiee's": null, - "Cissy": [["M"]], - "Cissy's": null, - "cistern": [["S", "M"]], - "cisterns": null, - "cistern's": null, - "citadel": [["S", "M"]], - "citadels": null, - "citadel's": null, - "citations": [["I"]], - "incitations": null, - "citation": [["S", "M", "A"]], - "recitations": null, - "citation's": null, - "recitation's": null, - "recitation": null, - "cit": [["D", "S", "G"]], - "cited": null, - "cits": null, - "citing": null, - "cite": [["I", "S", "D", "A", "G"]], - "incite": [["R", "Z", "L"]], - "incites": null, - "incited": null, - "inciting": null, - "cites": null, - "recites": null, - "recited": null, - "recite": [["Z", "R"]], - "reciting": null, - "Citibank": [["M"]], - "Citibank's": null, - "citified": null, - "citizenry": [["S", "M"]], - "citizenries": null, - "citizenry's": null, - "citizenship": [["M", "S"]], - "citizenship's": null, - "citizenships": null, - "citizen": [["S", "Y", "M"]], - "citizens": null, - "citizenly": null, - "citizen's": null, - "citrate": [["D", "M"]], - "citrated": null, - "citrate's": null, - "citric": null, - "Citroen": [["M"]], - "Citroen's": null, - "citronella": [["M", "S"]], - "citronella's": null, - "citronellas": null, - "citron": [["M", "S"]], - "citron's": null, - "citrons": null, - "citrus": [["S", "M"]], - "citruses": null, - "citrus's": null, - "city": [["D", "S", "M"]], - "citied": null, - "cities": null, - "city's": null, - "cityscape": [["M", "S"]], - "cityscape's": null, - "cityscapes": null, - "citywide": null, - "civet": [["S", "M"]], - "civets": null, - "civet's": null, - "civic": [["S"]], - "civics": [["M"]], - "civics's": null, - "civilian": [["S", "M"]], - "civilians": null, - "civilian's": null, - "civility": [["I", "M", "S"]], - "incivility": null, - "incivility's": null, - "incivilities": null, - "civility's": null, - "civilities": null, - "civilizational": [["M", "S"]], - "civilizational's": null, - "civilizationals": null, - "civilization": [["A", "M", "S"]], - "recivilization": null, - "recivilization's": null, - "recivilizations": null, - "civilization's": null, - "civilizations": null, - "civilizedness": [["M"]], - "civilizedness's": null, - "civilized": [["P", "U"]], - "uncivilizedness": null, - "uncivilized": [["Y"]], - "civilize": [["D", "R", "S", "Z", "G"]], - "civilizer": [["M"]], - "civilizes": [["A", "U"]], - "civilizers": null, - "civilizing": null, - "civilizer's": null, - "recivilizes": null, - "uncivilizes": null, - "civil": [["U", "Y"]], - "uncivil": null, - "uncivilly": null, - "civilly": null, - "civvies": null, - "ck": [["C"]], - "deck": [["G", "R", "D", "M", "S", "J"]], - "clack": [["S", "D", "G"]], - "clacks": null, - "clacked": null, - "clacking": null, - "cladding": [["S", "M"]], - "claddings": null, - "cladding's": null, - "clads": null, - "clad": [["U"]], - "unclad": null, - "Claiborne": [["M"]], - "Claiborne's": null, - "Claiborn": [["M"]], - "Claiborn's": null, - "claimable": null, - "claimant": [["M", "S"]], - "claimant's": null, - "claimants": null, - "claim": [["C", "D", "R", "S", "K", "A", "E", "G", "Z"]], - "declaim": null, - "declaimed": null, - "declaimer": null, - "declaims": null, - "declaiming": null, - "declaimers": null, - "claimed": [["U"]], - "proclaimed": null, - "reclaimed": null, - "disclaimed": null, - "claimer": [["K", "M", "A", "C", "E"]], - "proclaimer": null, - "reclaimer": null, - "disclaimer": null, - "claims": null, - "proclaims": null, - "reclaims": null, - "disclaims": null, - "proclaim": null, - "proclaiming": null, - "proclaimers": null, - "reclaim": [["B"]], - "reclaiming": null, - "reclaimers": null, - "disclaim": null, - "disclaiming": null, - "disclaimers": null, - "claiming": null, - "claimers": null, - "unclaimed": null, - "proclaimer's": null, - "claimer's": null, - "reclaimer's": null, - "declaimer's": null, - "disclaimer's": null, - "Claire": [["M"]], - "Claire's": null, - "Clair": [["M"]], - "Clair's": null, - "Clairol": [["M"]], - "Clairol's": null, - "clairvoyance": [["M", "S"]], - "clairvoyance's": null, - "clairvoyances": null, - "clairvoyant": [["Y", "S"]], - "clairvoyantly": null, - "clairvoyants": null, - "clambake": [["M", "S"]], - "clambake's": null, - "clambakes": null, - "clamberer": [["M"]], - "clamberer's": null, - "clamber": [["S", "D", "R", "Z", "G"]], - "clambers": null, - "clambered": null, - "clamberers": null, - "clambering": null, - "clammed": null, - "clammily": null, - "clamminess": [["M", "S"]], - "clamminess's": null, - "clamminesses": null, - "clamming": null, - "clam": [["M", "S"]], - "clam's": null, - "clams": null, - "clammy": [["T", "P", "R"]], - "clammiest": null, - "clammier": null, - "clamorer": [["M"]], - "clamorer's": null, - "clamor": [["G", "D", "R", "M", "S", "Z"]], - "clamoring": null, - "clamored": null, - "clamor's": null, - "clamors": null, - "clamorers": null, - "clamorousness": [["U", "M"]], - "unclamorousness": null, - "unclamorousness's": null, - "clamorousness's": null, - "clamorous": [["P", "U", "Y"]], - "unclamorous": null, - "unclamorously": null, - "clamorously": null, - "clampdown": [["S", "M"]], - "clampdowns": null, - "clampdown's": null, - "clamper": [["M"]], - "clamper's": null, - "clamp": [["M", "R", "D", "G", "S"]], - "clamp's": null, - "clamped": null, - "clamping": null, - "clamps": null, - "clamshell": [["M", "S"]], - "clamshell's": null, - "clamshells": null, - "Clancy": [["M"]], - "Clancy's": null, - "clandestineness": [["M"]], - "clandestineness's": null, - "clandestine": [["Y", "P"]], - "clandestinely": null, - "clanger": [["M"]], - "clanger's": null, - "clangor": [["M", "D", "S", "G"]], - "clangor's": null, - "clangored": null, - "clangors": null, - "clangoring": null, - "clangorous": [["Y"]], - "clangorously": null, - "clang": [["S", "G", "Z", "R", "D"]], - "clangs": null, - "clanging": null, - "clangers": null, - "clanged": null, - "clanking": [["Y"]], - "clankingly": null, - "clank": [["S", "G", "D", "M"]], - "clanks": null, - "clanked": null, - "clank's": null, - "clan": [["M", "S"]], - "clan's": null, - "clans": null, - "clannishness": [["S", "M"]], - "clannishnesses": null, - "clannishness's": null, - "clannish": [["P", "Y"]], - "clannishly": null, - "clansman": [["M"]], - "clansman's": null, - "clansmen": null, - "clapboard": [["S", "D", "G", "M"]], - "clapboards": null, - "clapboarded": null, - "clapboarding": null, - "clapboard's": null, - "Clapeyron": [["M"]], - "Clapeyron's": null, - "clapped": null, - "clapper": [["G", "M", "D", "S"]], - "clappering": null, - "clapper's": null, - "clappered": null, - "clappers": null, - "clapping": null, - "clap": [["S"]], - "claps": null, - "Clapton": [["M"]], - "Clapton's": null, - "claptrap": [["S", "M"]], - "claptraps": null, - "claptrap's": null, - "claque": [["M", "S"]], - "claque's": null, - "claques": null, - "Clarabelle": [["M"]], - "Clarabelle's": null, - "Clara": [["M"]], - "Clara's": null, - "Clarance": [["M"]], - "Clarance's": null, - "Clare": [["M"]], - "Clare's": null, - "Claremont": [["M"]], - "Claremont's": null, - "Clarence": [["M"]], - "Clarence's": null, - "Clarendon": [["M"]], - "Clarendon's": null, - "Claresta": [["M"]], - "Claresta's": null, - "Clareta": [["M"]], - "Clareta's": null, - "claret": [["M", "D", "G", "S"]], - "claret's": null, - "clareted": null, - "clareting": null, - "clarets": null, - "Claretta": [["M"]], - "Claretta's": null, - "Clarette": [["M"]], - "Clarette's": null, - "Clarey": [["M"]], - "Clarey's": null, - "Claribel": [["M"]], - "Claribel's": null, - "Clarice": [["M"]], - "Clarice's": null, - "Clarie": [["M"]], - "Clarie's": null, - "clarification": [["M"]], - "clarification's": null, - "clarifier": [["M"]], - "clarifier's": null, - "clarify": [["N", "G", "X", "D", "R", "S"]], - "clarifying": null, - "clarifications": null, - "clarified": null, - "clarifies": null, - "Clari": [["M"]], - "Clari's": null, - "Clarinda": [["M"]], - "Clarinda's": null, - "Clarine": [["M"]], - "Clarine's": null, - "clarinetist": [["S", "M"]], - "clarinetists": null, - "clarinetist's": null, - "clarinet": [["S", "M"]], - "clarinets": null, - "clarinet's": null, - "clarinettist's": null, - "clarion": [["G", "S", "M", "D"]], - "clarioning": null, - "clarions": null, - "clarion's": null, - "clarioned": null, - "Clarissa": [["M"]], - "Clarissa's": null, - "Clarisse": [["M"]], - "Clarisse's": null, - "Clarita": [["M"]], - "Clarita's": null, - "clarities": null, - "clarity": [["U", "M"]], - "unclarity": null, - "unclarity's": null, - "clarity's": null, - "Clarke": [["M"]], - "Clarke's": null, - "Clark": [["M"]], - "Clark's": null, - "Clarridge": [["M"]], - "Clarridge's": null, - "Clary": [["M"]], - "Clary's": null, - "clasher": [["M"]], - "clasher's": null, - "clash": [["R", "S", "D", "G"]], - "clashes": null, - "clashed": null, - "clashing": null, - "clasped": [["M"]], - "clasped's": null, - "clasper": [["M"]], - "clasper's": null, - "clasp's": null, - "clasp": [["U", "G", "S", "D"]], - "unclasp": null, - "unclasping": null, - "unclasps": null, - "unclasped": null, - "clasping": null, - "clasps": null, - "classer": [["M"]], - "classer's": null, - "class": [["G", "R", "S", "D", "M"]], - "classing": null, - "classes": null, - "classed": null, - "class's": null, - "classical": [["Y"]], - "classically": null, - "classicism": [["S", "M"]], - "classicisms": null, - "classicism's": null, - "classicist": [["S", "M"]], - "classicists": null, - "classicist's": null, - "classic": [["S"]], - "classics": [["M"]], - "classics's": null, - "classifiable": [["U"]], - "unclassifiable": null, - "classification": [["A", "M", "C"]], - "reclassification": null, - "reclassification's": null, - "classification's": null, - "declassification's": null, - "declassification": null, - "classificatory": null, - "classified": [["S"]], - "classifieds": null, - "classifier": [["S", "M"]], - "classifiers": null, - "classifier's": null, - "classify": [["C", "N", "X", "A", "S", "D", "G"]], - "declassify": null, - "declassifications": null, - "declassifies": null, - "declassified": null, - "declassifying": null, - "classifications": null, - "reclassifications": null, - "reclassify": null, - "reclassifies": null, - "reclassified": null, - "reclassifying": null, - "classifies": null, - "classifying": null, - "classiness": [["S", "M"]], - "classinesses": null, - "classiness's": null, - "classless": [["P"]], - "classlessness": null, - "classmate": [["M", "S"]], - "classmate's": null, - "classmates": null, - "classroom": [["M", "S"]], - "classroom's": null, - "classrooms": null, - "classwork": [["M"]], - "classwork's": null, - "classy": [["P", "R", "T"]], - "classier": null, - "classiest": null, - "clatterer": [["M"]], - "clatterer's": null, - "clattering": [["Y"]], - "clatteringly": null, - "clatter": [["S", "G", "D", "R"]], - "clatters": null, - "clattered": null, - "clattery": null, - "Claudelle": [["M"]], - "Claudelle's": null, - "Claudell": [["M"]], - "Claudell's": null, - "Claude": [["M"]], - "Claude's": null, - "Claudetta": [["M"]], - "Claudetta's": null, - "Claudette": [["M"]], - "Claudette's": null, - "Claudia": [["M"]], - "Claudia's": null, - "Claudian": [["M"]], - "Claudian's": null, - "Claudianus": [["M"]], - "Claudianus's": null, - "Claudie": [["M"]], - "Claudie's": null, - "Claudina": [["M"]], - "Claudina's": null, - "Claudine": [["M"]], - "Claudine's": null, - "Claudio": [["M"]], - "Claudio's": null, - "Claudius": [["M"]], - "Claudius's": null, - "clausal": null, - "clause": [["M", "S"]], - "clause's": null, - "clauses": null, - "Clausen": [["M"]], - "Clausen's": null, - "Clausewitz": [["M"]], - "Clausewitz's": null, - "Clausius": [["M"]], - "Clausius's": null, - "Claus": [["N", "M"]], - "Claus's": null, - "claustrophobia": [["S", "M"]], - "claustrophobias": null, - "claustrophobia's": null, - "claustrophobic": null, - "clave": [["R", "M"]], - "claver": null, - "clave's": [["F"]], - "conclave's": null, - "clavichord": [["S", "M"]], - "clavichords": null, - "clavichord's": null, - "clavicle": [["M", "S"]], - "clavicle's": null, - "clavicles": null, - "clavier": [["M", "S"]], - "clavier's": null, - "claviers": null, - "clawer": [["M"]], - "clawer's": null, - "claw": [["G", "D", "R", "M", "S"]], - "clawing": null, - "clawed": null, - "claw's": null, - "claws": null, - "Clayborne": [["M"]], - "Clayborne's": null, - "Clayborn": [["M"]], - "Clayborn's": null, - "Claybourne": [["M"]], - "Claybourne's": null, - "clayey": null, - "clayier": null, - "clayiest": null, - "Clay": [["M"]], - "Clay's": null, - "clay": [["M", "D", "G", "S"]], - "clay's": null, - "clayed": null, - "claying": null, - "clays": null, - "claymore": [["M", "S"]], - "claymore's": null, - "claymores": null, - "Clayson": [["M"]], - "Clayson's": null, - "Clayton": [["M"]], - "Clayton's": null, - "Clea": [["M"]], - "Clea's": null, - "cleanable": null, - "cleaner": [["M", "S"]], - "cleaner's": null, - "cleaners": null, - "cleaning": [["S", "M"]], - "cleanings": null, - "cleaning's": null, - "cleanliness": [["U", "M", "S"]], - "uncleanliness": null, - "uncleanliness's": null, - "uncleanlinesses": null, - "cleanliness's": null, - "cleanlinesses": null, - "cleanly": [["P", "R", "T", "U"]], - "cleanlier": null, - "uncleanlier": null, - "cleanliest": null, - "uncleanly": null, - "cleanness": [["M", "S", "U"]], - "cleanness's": null, - "uncleanness's": null, - "cleannesses": null, - "uncleannesses": null, - "uncleanness": null, - "cleanse": null, - "cleanser": [["M"]], - "cleanser's": null, - "cleans": [["G", "D", "R", "S", "Z"]], - "cleansing": null, - "cleansed": null, - "cleanses": null, - "cleansers": null, - "cleanup": [["M", "S"]], - "cleanup's": null, - "cleanups": null, - "clean": [["U", "Y", "R", "D", "P", "T"]], - "unclean": null, - "uncleaner": null, - "uncleaned": null, - "cleaned": null, - "cleanest": null, - "clearance": [["M", "S"]], - "clearance's": null, - "clearances": null, - "clearcut": null, - "clearer": [["M"]], - "clearer's": null, - "clearheadedness": [["M"]], - "clearheadedness's": null, - "clearheaded": [["P", "Y"]], - "clearheadedly": null, - "clearinghouse": [["S"]], - "clearinghouses": null, - "clearing": [["M", "S"]], - "clearing's": null, - "clearings": null, - "clearly": null, - "clearness": [["M", "S"]], - "clearness's": null, - "clearnesses": null, - "clears": null, - "clear": [["U", "T", "R", "D"]], - "unclear": null, - "unclearer": null, - "uncleared": null, - "clearest": null, - "cleared": null, - "Clearwater": [["M"]], - "Clearwater's": null, - "clearway": [["M"]], - "clearway's": null, - "cleat": [["M", "D", "S", "G"]], - "cleat's": null, - "cleated": null, - "cleats": null, - "cleating": null, - "cleavage": [["M", "S"]], - "cleavage's": null, - "cleavages": null, - "cleaver": [["M"]], - "cleaver's": null, - "cleave": [["R", "S", "D", "G", "Z"]], - "cleaves": null, - "cleaved": null, - "cleaving": null, - "cleavers": null, - "Cleavland": [["M"]], - "Cleavland's": null, - "clef": [["S", "M"]], - "clefs": null, - "clef's": null, - "cleft": [["M", "D", "G", "S"]], - "cleft's": null, - "clefted": null, - "clefting": null, - "clefts": null, - "clematis": [["M", "S"]], - "clematis's": null, - "clematises": null, - "clemence": null, - "Clemenceau": [["M"]], - "Clemenceau's": null, - "Clemence": [["M"]], - "Clemence's": null, - "clemency": [["I", "S", "M"]], - "inclemency": null, - "inclemencies": null, - "inclemency's": null, - "clemencies": null, - "clemency's": null, - "Clemente": [["M"]], - "Clemente's": null, - "Clementia": [["M"]], - "Clementia's": null, - "Clementina": [["M"]], - "Clementina's": null, - "Clementine": [["M"]], - "Clementine's": null, - "Clementius": [["M"]], - "Clementius's": null, - "clement": [["I", "Y"]], - "inclement": null, - "inclemently": null, - "clemently": null, - "Clement": [["M", "S"]], - "Clement's": null, - "Clements": null, - "clements": null, - "Clemmie": [["M"]], - "Clemmie's": null, - "Clemmy": [["M"]], - "Clemmy's": null, - "Clemons": null, - "Clemson": [["M"]], - "Clemson's": null, - "Clem": [["X", "M"]], - "Clemens": null, - "Clem's": null, - "clenches": null, - "clenching": null, - "clench": [["U", "D"]], - "unclench": null, - "unclenched": null, - "clenched": null, - "Cleo": [["M"]], - "Cleo's": null, - "Cleon": [["M"]], - "Cleon's": null, - "Cleopatra": [["M"]], - "Cleopatra's": null, - "Clerc": [["M"]], - "Clerc's": null, - "clerestory": [["M", "S"]], - "clerestory's": null, - "clerestories": null, - "clergyman": [["M"]], - "clergyman's": null, - "clergymen": null, - "clergy": [["M", "S"]], - "clergy's": null, - "clergies": null, - "clergywoman": null, - "clergywomen": null, - "clericalism": [["S", "M"]], - "clericalisms": null, - "clericalism's": null, - "clerical": [["Y", "S"]], - "clerically": null, - "clericals": null, - "cleric": [["S", "M"]], - "clerics": null, - "cleric's": null, - "Clerissa": [["M"]], - "Clerissa's": null, - "clerk": [["S", "G", "Y", "D", "M"]], - "clerks": null, - "clerking": null, - "clerkly": null, - "clerked": null, - "clerk's": null, - "clerkship": [["M", "S"]], - "clerkship's": null, - "clerkships": null, - "Cletis": null, - "Cletus": [["M"]], - "Cletus's": null, - "Cleveland": [["M"]], - "Cleveland's": null, - "Cleve": [["M"]], - "Cleve's": null, - "cleverness": [["S", "M"]], - "clevernesses": null, - "cleverness's": null, - "clever": [["R", "Y", "P", "T"]], - "cleverer": null, - "cleverly": null, - "cleverest": null, - "Clevey": [["M"]], - "Clevey's": null, - "Clevie": [["M"]], - "Clevie's": null, - "clevis": [["S", "M"]], - "clevises": null, - "clevis's": null, - "clew": [["D", "M", "G", "S"]], - "clewed": null, - "clew's": null, - "clewing": null, - "clews": null, - "cl": [["G", "J"]], - "cling": [["U"]], - "clings": null, - "Cliburn": [["M"]], - "Cliburn's": null, - "clich�d": null, - "clich�": [["S", "M"]], - "clich�s": null, - "clich�'s": null, - "clicker": [["M"]], - "clicker's": null, - "click": [["G", "Z", "S", "R", "D", "M"]], - "clicking": null, - "clickers": null, - "clicks": null, - "clicked": null, - "click's": null, - "client�le": [["S", "M"]], - "client�les": null, - "client�le's": null, - "client": [["S", "M"]], - "clients": null, - "client's": null, - "cliffhanger": [["M", "S"]], - "cliffhanger's": null, - "cliffhangers": null, - "cliffhanging": null, - "Cliff": [["M"]], - "Cliff's": null, - "Clifford": [["M"]], - "Clifford's": null, - "cliff": [["S", "M"]], - "cliffs": null, - "cliff's": null, - "Clifton": [["M"]], - "Clifton's": null, - "climacteric": [["S", "M"]], - "climacterics": null, - "climacteric's": null, - "climactic": null, - "climate": [["M", "S"]], - "climate's": null, - "climates": null, - "climatic": null, - "climatically": null, - "climatological": [["Y"]], - "climatologically": null, - "climatologist": [["S", "M"]], - "climatologists": null, - "climatologist's": null, - "climatology": [["M", "S"]], - "climatology's": null, - "climatologies": null, - "climax": [["M", "D", "S", "G"]], - "climax's": null, - "climaxed": null, - "climaxes": null, - "climaxing": null, - "climbable": [["U"]], - "unclimbable": null, - "climb": [["B", "G", "Z", "S", "J", "R", "D"]], - "climbing": null, - "climbers": null, - "climbs": null, - "climbings": null, - "climber": [["M"]], - "climbed": [["U"]], - "climbdown": null, - "unclimbed": null, - "climber's": null, - "clime": [["S", "M"]], - "climes": null, - "clime's": null, - "Clim": [["M"]], - "Clim's": null, - "clinch": [["D", "R", "S", "Z", "G"]], - "clinched": null, - "clincher": [["M"]], - "clinches": null, - "clinchers": null, - "clinching": [["Y"]], - "clincher's": null, - "clinchingly": null, - "Cline": [["M"]], - "Cline's": null, - "clinger": [["M", "S"]], - "clinger's": null, - "clingers": null, - "clinging": null, - "uncling": null, - "clingy": [["T", "R"]], - "clingiest": null, - "clingier": null, - "clinical": [["Y"]], - "clinically": null, - "clinician": [["M", "S"]], - "clinician's": null, - "clinicians": null, - "clinic": [["M", "S"]], - "clinic's": null, - "clinics": null, - "clinker": [["G", "M", "D"]], - "clinkering": null, - "clinker's": null, - "clinkered": null, - "clink": [["R", "D", "G", "S", "Z"]], - "clinked": null, - "clinking": null, - "clinks": null, - "clinkers": null, - "clinometer": [["M", "I", "S"]], - "clinometer's": null, - "inclinometer's": null, - "inclinometer": null, - "inclinometers": null, - "clinometers": null, - "Clint": [["M"]], - "Clint's": null, - "Clinton": [["M"]], - "Clinton's": null, - "Clio": [["M"]], - "Clio's": null, - "cliometrician": [["S"]], - "cliometricians": null, - "cliometric": [["S"]], - "cliometrics": null, - "clipboard": [["S", "M"]], - "clipboards": null, - "clipboard's": null, - "clipped": [["U"]], - "unclipped": null, - "clipper": [["M", "S"]], - "clipper's": null, - "clippers": null, - "clipping": [["S", "M"]], - "clippings": null, - "clipping's": null, - "clip": [["S", "M"]], - "clips": null, - "clip's": null, - "clique": [["S", "D", "G", "M"]], - "cliques": null, - "cliqued": null, - "cliquing": null, - "clique's": null, - "cliquey": null, - "cliquier": null, - "cliquiest": null, - "cliquishness": [["S", "M"]], - "cliquishnesses": null, - "cliquishness's": null, - "cliquish": [["Y", "P"]], - "cliquishly": null, - "clitoral": null, - "clitorides": null, - "clitoris": [["M", "S"]], - "clitoris's": null, - "clitorises": null, - "Clive": [["M"]], - "Clive's": null, - "cloacae": null, - "cloaca": [["M"]], - "cloaca's": null, - "cloakroom": [["M", "S"]], - "cloakroom's": null, - "cloakrooms": null, - "cloak's": null, - "cloak": [["U", "S", "D", "G"]], - "uncloak": null, - "uncloaks": null, - "uncloaked": null, - "uncloaking": null, - "cloaks": null, - "cloaked": null, - "cloaking": null, - "clobber": [["D", "G", "S"]], - "clobbered": null, - "clobbering": null, - "clobbers": null, - "cloche": [["M", "S"]], - "cloche's": null, - "cloches": null, - "clocker": [["M"]], - "clocker's": null, - "clockmaker": [["M"]], - "clockmaker's": null, - "clock": [["S", "G", "Z", "R", "D", "M", "J"]], - "clocks": null, - "clocking": null, - "clockers": null, - "clocked": null, - "clock's": null, - "clockings": null, - "clockwatcher": null, - "clockwise": null, - "clockwork": [["M", "S"]], - "clockwork's": null, - "clockworks": null, - "clodded": null, - "clodding": null, - "cloddishness": [["M"]], - "cloddishness's": null, - "cloddish": [["P"]], - "clodhopper": [["S", "M"]], - "clodhoppers": null, - "clodhopper's": null, - "clod": [["M", "S"]], - "clod's": null, - "clods": null, - "Cloe": [["M"]], - "Cloe's": null, - "clogged": [["U"]], - "unclogged": null, - "clogging": [["U"]], - "unclogging": null, - "clog's": null, - "clog": [["U", "S"]], - "unclog": null, - "unclogs": null, - "clogs": null, - "cloisonn�": null, - "cloisonnes": null, - "cloister": [["M", "D", "G", "S"]], - "cloister's": null, - "cloistered": null, - "cloistering": null, - "cloisters": null, - "cloistral": null, - "Clo": [["M"]], - "Clo's": null, - "clomp": [["M", "D", "S", "G"]], - "clomp's": null, - "clomped": null, - "clomps": null, - "clomping": null, - "clonal": null, - "clone": [["D", "S", "R", "G", "M", "Z"]], - "cloned": null, - "clones": null, - "cloner": null, - "cloning": null, - "clone's": null, - "cloners": null, - "clonk": [["S", "G", "D"]], - "clonks": null, - "clonking": null, - "clonked": null, - "clopped": null, - "clopping": null, - "clop": [["S"]], - "clops": null, - "Cloris": [["M"]], - "Cloris's": null, - "closed": [["U"]], - "unclosed": null, - "close": [["E", "D", "S", "R", "G"]], - "disclose": null, - "disclosed": [["U"]], - "discloses": null, - "discloser": null, - "disclosing": null, - "closes": null, - "closer": [["E", "M"]], - "closing": [["S"]], - "closefisted": null, - "closely": null, - "closemouthed": null, - "closeness": [["M", "S"]], - "closeness's": null, - "closenesses": null, - "closeout": [["M", "S"]], - "closeout's": null, - "closeouts": null, - "discloser's": null, - "closer's": null, - "closers": null, - "closest": null, - "closet": [["M", "D", "S", "G"]], - "closet's": null, - "closeted": null, - "closets": null, - "closeting": null, - "closeup": [["S"]], - "closeups": null, - "closings": null, - "closured": null, - "closure": [["E", "M", "S"]], - "disclosure": null, - "disclosure's": null, - "disclosures": null, - "closure's": [["I"]], - "closures": null, - "inclosure's": null, - "closuring": null, - "clothbound": null, - "clothesbrush": null, - "clotheshorse": [["M", "S"]], - "clotheshorse's": null, - "clotheshorses": null, - "clothesline": [["S", "D", "G", "M"]], - "clotheslines": null, - "clotheslined": null, - "clotheslining": null, - "clothesline's": null, - "clothesman": null, - "clothesmen": null, - "clothespin": [["M", "S"]], - "clothespin's": null, - "clothespins": null, - "clothe": [["U", "D", "S", "G"]], - "unclothe": null, - "unclothed": null, - "unclothes": null, - "unclothing": null, - "clothed": null, - "clothes": null, - "clothing": [["M"]], - "cloth": [["G", "J", "M", "S", "D"]], - "clothings": null, - "cloth's": null, - "clothier": [["M", "S"]], - "clothier's": null, - "clothiers": null, - "clothing's": null, - "Clotho": [["M"]], - "Clotho's": null, - "cloths": null, - "Clotilda": [["M"]], - "Clotilda's": null, - "clot": [["M", "S"]], - "clot's": null, - "clots": null, - "clotted": null, - "clotting": null, - "cloture": [["M", "D", "S", "G"]], - "cloture's": null, - "clotured": null, - "clotures": null, - "cloturing": null, - "cloudburst": [["M", "S"]], - "cloudburst's": null, - "cloudbursts": null, - "clouded": [["U"]], - "unclouded": [["Y"]], - "cloudiness": [["S", "M"]], - "cloudinesses": null, - "cloudiness's": null, - "cloudlessness": [["M"]], - "cloudlessness's": null, - "cloudless": [["Y", "P"]], - "cloudlessly": null, - "cloudscape": [["S", "M"]], - "cloudscapes": null, - "cloudscape's": null, - "cloud": [["S", "G", "M", "D"]], - "clouds": null, - "clouding": null, - "cloud's": null, - "cloudy": [["T", "P", "R"]], - "cloudiest": null, - "cloudier": null, - "clout": [["G", "S", "M", "D"]], - "clouting": null, - "clouts": null, - "clout's": null, - "clouted": null, - "cloven": null, - "cloverleaf": [["M", "S"]], - "cloverleaf's": null, - "cloverleafs": null, - "clover": [["M"]], - "clover's": null, - "clove": [["S", "R", "M", "Z"]], - "cloves": null, - "clove's": null, - "clovers": null, - "Clovis": [["M"]], - "Clovis's": null, - "clown": [["D", "M", "S", "G"]], - "clowned": null, - "clown's": null, - "clowns": null, - "clowning": null, - "clownishness": [["S", "M"]], - "clownishnesses": null, - "clownishness's": null, - "clownish": [["P", "Y"]], - "clownishly": null, - "cloy": [["D", "S", "G"]], - "cloyed": null, - "cloys": null, - "cloying": [["Y"]], - "cloyingly": null, - "clubbed": [["M"]], - "clubbed's": null, - "clubbing": [["M"]], - "clubbing's": null, - "clubfeet": null, - "clubfoot": [["D", "M"]], - "clubfooted": null, - "clubfoot's": null, - "clubhouse": [["S", "M"]], - "clubhouses": null, - "clubhouse's": null, - "club": [["M", "S"]], - "club's": null, - "clubs": null, - "clubroom": [["S", "M"]], - "clubrooms": null, - "clubroom's": null, - "cluck": [["G", "S", "D", "M"]], - "clucking": null, - "clucks": null, - "clucked": null, - "cluck's": null, - "clueless": null, - "clue": [["M", "G", "D", "S"]], - "clue's": null, - "cluing": null, - "clued": null, - "clues": null, - "Cluj": [["M"]], - "Cluj's": null, - "clump": [["M", "D", "G", "S"]], - "clump's": null, - "clumped": null, - "clumping": null, - "clumps": null, - "clumpy": [["R", "T"]], - "clumpier": null, - "clumpiest": null, - "clumsily": null, - "clumsiness": [["M", "S"]], - "clumsiness's": null, - "clumsinesses": null, - "clumsy": [["P", "R", "T"]], - "clumsier": null, - "clumsiest": null, - "clung": null, - "clunk": [["S", "G", "Z", "R", "D", "M"]], - "clunks": null, - "clunking": null, - "clunkers": null, - "clunker": null, - "clunked": null, - "clunk's": null, - "clunky": [["P", "R", "Y", "T"]], - "clunkiness": null, - "clunkier": null, - "clunkyly": null, - "clunkiest": null, - "clustered": [["A", "U"]], - "reclustered": null, - "unclustered": null, - "clusters": [["A"]], - "reclusters": null, - "cluster": [["S", "G", "J", "M", "D"]], - "clustering": null, - "clusterings": null, - "cluster's": null, - "clutch": [["D", "S", "G"]], - "clutched": null, - "clutches": null, - "clutching": null, - "cluttered": [["U"]], - "uncluttered": null, - "clutter": [["G", "S", "D"]], - "cluttering": null, - "clutters": null, - "Cl": [["V", "M"]], - "Cl's": null, - "Clyde": [["M"]], - "Clyde's": null, - "Clydesdale": [["M"]], - "Clydesdale's": null, - "Cly": [["M"]], - "Cly's": null, - "Clytemnestra": [["M"]], - "Clytemnestra's": null, - "Clyve": [["M"]], - "Clyve's": null, - "Clywd": [["M"]], - "Clywd's": null, - "cm": null, - "Cm": [["M"]], - "Cm's": null, - "CMOS": null, - "cnidarian": [["M", "S"]], - "cnidarian's": null, - "cnidarians": null, - "CNN": null, - "CNS": null, - "CO": null, - "coacher": [["M"]], - "coacher's": null, - "coachman": [["M"]], - "coachman's": null, - "coachmen": null, - "coach": [["M", "S", "R", "D", "G"]], - "coach's": null, - "coaches": null, - "coached": null, - "coaching": null, - "coachwork": [["M"]], - "coachwork's": null, - "coadjutor": [["M", "S"]], - "coadjutor's": null, - "coadjutors": null, - "coagulable": null, - "coagulant": [["S", "M"]], - "coagulants": null, - "coagulant's": null, - "coagulate": [["G", "N", "X", "S", "D"]], - "coagulating": null, - "coagulation": [["M"]], - "coagulations": null, - "coagulates": null, - "coagulated": null, - "coagulation's": null, - "coagulator": [["S"]], - "coagulators": null, - "coaler": [["M"]], - "coaler's": null, - "coalesce": [["G", "D", "S"]], - "coalescing": null, - "coalesced": null, - "coalesces": null, - "coalescence": [["S", "M"]], - "coalescences": null, - "coalescence's": null, - "coalescent": null, - "coalface": [["S", "M"]], - "coalfaces": null, - "coalface's": null, - "coalfield": [["M", "S"]], - "coalfield's": null, - "coalfields": null, - "coalitionist": [["S", "M"]], - "coalitionists": null, - "coalitionist's": null, - "coalition": [["M", "S"]], - "coalition's": null, - "coalitions": null, - "coal": [["M", "D", "R", "G", "S"]], - "coal's": null, - "coaled": null, - "coaling": null, - "coals": null, - "coalminers": null, - "coarseness": [["S", "M"]], - "coarsenesses": null, - "coarseness's": null, - "coarsen": [["S", "G", "D"]], - "coarsens": null, - "coarsening": null, - "coarsened": null, - "coarse": [["T", "Y", "R", "P"]], - "coarsest": null, - "coarsely": null, - "coarser": null, - "coastal": null, - "coaster": [["M"]], - "coaster's": null, - "coastguard": [["M", "S"]], - "coastguard's": null, - "coastguards": null, - "coastline": [["S", "M"]], - "coastlines": null, - "coastline's": null, - "coast": [["S", "M", "R", "D", "G", "Z"]], - "coasts": null, - "coast's": null, - "coasted": null, - "coasting": null, - "coasters": null, - "coated": [["U"]], - "uncoated": null, - "Coates": [["M"]], - "Coates's": null, - "coating": [["M"]], - "coating's": null, - "coat": [["M", "D", "R", "G", "Z", "J", "S"]], - "coat's": null, - "coater": null, - "coaters": null, - "coatings": null, - "coats": null, - "coattail": [["S"]], - "coattails": null, - "coattest": null, - "coauthor": [["M", "D", "G", "S"]], - "coauthor's": null, - "coauthored": null, - "coauthoring": null, - "coauthors": null, - "coaxer": [["M"]], - "coaxer's": null, - "coax": [["G", "Z", "D", "S", "R"]], - "coaxing": [["Y"]], - "coaxers": null, - "coaxed": null, - "coaxes": null, - "coaxial": [["Y"]], - "coaxially": null, - "coaxingly": null, - "Cobain": [["M"]], - "Cobain's": null, - "cobalt": [["M", "S"]], - "cobalt's": null, - "cobalts": null, - "cobbed": null, - "Cobbie": [["M"]], - "Cobbie's": null, - "cobbing": null, - "cobbler": [["M"]], - "cobbler's": null, - "cobble": [["S", "R", "D", "G", "M", "Z"]], - "cobbles": null, - "cobbled": null, - "cobbling": null, - "cobble's": null, - "cobblers": null, - "cobblestone": [["M", "S", "D"]], - "cobblestone's": null, - "cobblestones": null, - "cobblestoned": null, - "Cobb": [["M"]], - "Cobb's": null, - "Cobby": [["M"]], - "Cobby's": null, - "coble": [["M"]], - "coble's": null, - "Cob": [["M"]], - "Cob's": null, - "COBOL": null, - "Cobol": [["M"]], - "Cobol's": null, - "cobra": [["M", "S"]], - "cobra's": null, - "cobras": null, - "cob": [["S", "M"]], - "cobs": null, - "cob's": null, - "cobwebbed": null, - "cobwebbing": null, - "cobwebby": [["R", "T"]], - "cobwebbier": null, - "cobwebbiest": null, - "cobweb": [["S", "M"]], - "cobwebs": null, - "cobweb's": null, - "cocaine": [["M", "S"]], - "cocaine's": null, - "cocaines": null, - "coca": [["M", "S"]], - "coca's": null, - "cocas": null, - "cocci": [["M", "S"]], - "cocci's": null, - "coccis": null, - "coccus": [["M"]], - "coccus's": null, - "coccyges": null, - "coccyx": [["M"]], - "coccyx's": null, - "Cochabamba": [["M"]], - "Cochabamba's": null, - "cochineal": [["S", "M"]], - "cochineals": null, - "cochineal's": null, - "Cochin": [["M"]], - "Cochin's": null, - "Cochise": [["M"]], - "Cochise's": null, - "cochleae": null, - "cochlear": null, - "cochlea": [["S", "M"]], - "cochleas": null, - "cochlea's": null, - "Cochran": [["M"]], - "Cochran's": null, - "cockade": [["S", "M"]], - "cockades": null, - "cockade's": null, - "cockamamie": null, - "cockatoo": [["S", "M"]], - "cockatoos": null, - "cockatoo's": null, - "cockatrice": [["M", "S"]], - "cockatrice's": null, - "cockatrices": null, - "cockcrow": [["M", "S"]], - "cockcrow's": null, - "cockcrows": null, - "cockerel": [["M", "S"]], - "cockerel's": null, - "cockerels": null, - "cocker": [["M"]], - "cocker's": null, - "cockeye": [["D", "M"]], - "cockeyed": [["P", "Y"]], - "cockeye's": null, - "cockeyedness": null, - "cockeyedly": null, - "cockfighting": [["M"]], - "cockfighting's": null, - "cockfight": [["M", "J", "S", "G"]], - "cockfight's": null, - "cockfightings": null, - "cockfights": null, - "cock": [["G", "D", "R", "M", "S"]], - "cocking": null, - "cocked": null, - "cock's": null, - "cocks": null, - "cockily": null, - "cockiness": [["M", "S"]], - "cockiness's": null, - "cockinesses": null, - "cocklebur": [["M"]], - "cocklebur's": null, - "cockle": [["S", "D", "G", "M"]], - "cockles": null, - "cockled": null, - "cockling": null, - "cockle's": null, - "cockleshell": [["S", "M"]], - "cockleshells": null, - "cockleshell's": null, - "Cockney": null, - "cockney": [["M", "S"]], - "cockney's": null, - "cockneys": null, - "cockpit": [["M", "S"]], - "cockpit's": null, - "cockpits": null, - "cockroach": [["S", "M"]], - "cockroaches": null, - "cockroach's": null, - "cockscomb": [["S", "M"]], - "cockscombs": null, - "cockscomb's": null, - "cockshies": null, - "cocksucker": [["S", "!"]], - "cocksuckers": null, - "cocksure": null, - "cocktail": [["G", "D", "M", "S"]], - "cocktailing": null, - "cocktailed": null, - "cocktail's": null, - "cocktails": null, - "cocky": [["R", "P", "T"]], - "cockier": null, - "cockiest": null, - "cocoa": [["S", "M"]], - "cocoas": null, - "cocoa's": null, - "coco": [["M", "S"]], - "coco's": null, - "cocos": null, - "coconut": [["S", "M"]], - "coconuts": null, - "coconut's": null, - "cocoon": [["G", "D", "M", "S"]], - "cocooning": null, - "cocooned": null, - "cocoon's": null, - "cocoons": null, - "Cocteau": [["M"]], - "Cocteau's": null, - "COD": null, - "coda": [["S", "M"]], - "codas": null, - "coda's": null, - "codded": null, - "codding": null, - "coddle": [["G", "S", "R", "D"]], - "coddling": null, - "coddles": null, - "coddler": [["M"]], - "coddled": null, - "coddler's": null, - "codebook": [["S"]], - "codebooks": null, - "codebreak": [["R"]], - "codebreaker": null, - "coded": [["U", "A"]], - "uncoded": null, - "recoded": null, - "Codee": [["M"]], - "Codee's": null, - "codeine": [["M", "S"]], - "codeine's": null, - "codeines": null, - "codename": [["D"]], - "codenamed": null, - "codependency": [["S"]], - "codependencies": null, - "codependent": [["S"]], - "codependents": null, - "coder": [["C", "M"]], - "decoder": null, - "decoder's": null, - "coder's": null, - "code's": null, - "co": [["D", "E", "S"]], - "coed": [["S", "M"]], - "discoed": null, - "disco": [["M", "G"]], - "discos": null, - "cos": [["G", "D", "S"]], - "codes": [["A"]], - "recodes": null, - "code": [["S", "C", "Z", "G", "J", "R", "D"]], - "decodes": null, - "decode": null, - "decoders": null, - "decoding": null, - "decodings": null, - "decoded": null, - "coders": null, - "coding": [["M"]], - "codings": null, - "codetermine": [["S"]], - "codetermines": null, - "codeword": [["S", "M"]], - "codewords": null, - "codeword's": null, - "codex": [["M"]], - "codex's": null, - "codfish": [["S", "M"]], - "codfishes": null, - "codfish's": null, - "codger": [["M", "S"]], - "codger's": null, - "codgers": null, - "codices": [["M"]], - "codices's": null, - "codicil": [["S", "M"]], - "codicils": null, - "codicil's": null, - "Codie": [["M"]], - "Codie's": null, - "codification": [["M"]], - "codification's": null, - "codifier": [["M"]], - "codifier's": null, - "codify": [["N", "Z", "X", "G", "R", "S", "D"]], - "codifiers": null, - "codifications": null, - "codifying": null, - "codifies": null, - "codified": null, - "Codi": [["M"]], - "Codi's": null, - "coding's": null, - "codling": [["M"]], - "codling's": null, - "Cod": [["M"]], - "Cod's": null, - "cod": [["M", "D", "R", "S", "Z", "G", "J"]], - "cod's": null, - "cods": null, - "codpiece": [["M", "S"]], - "codpiece's": null, - "codpieces": null, - "Cody": [["M"]], - "Cody's": null, - "coedited": null, - "coediting": null, - "coeditor": [["M", "S"]], - "coeditor's": null, - "coeditors": null, - "coedits": null, - "coeds": null, - "coed's": null, - "coeducational": null, - "coeducation": [["S", "M"]], - "coeducations": null, - "coeducation's": null, - "coefficient": [["S", "Y", "M"]], - "coefficients": null, - "coefficiently": null, - "coefficient's": null, - "coelenterate": [["M", "S"]], - "coelenterate's": null, - "coelenterates": null, - "coequal": [["S", "Y"]], - "coequals": null, - "coequally": null, - "coercer": [["M"]], - "coercer's": null, - "coerce": [["S", "R", "D", "X", "V", "G", "N", "Z"]], - "coerces": null, - "coerced": null, - "coercions": null, - "coercive": [["P", "Y"]], - "coercing": null, - "coercion": [["M"]], - "coercers": null, - "coercible": [["I"]], - "incoercible": null, - "coercion's": null, - "coerciveness": [["M"]], - "coerciveness's": null, - "coercively": null, - "coeval": [["Y", "S"]], - "coevally": null, - "coevals": null, - "coexistence": [["M", "S"]], - "coexistence's": null, - "coexistences": null, - "coexistent": null, - "coexist": [["G", "D", "S"]], - "coexisting": null, - "coexisted": null, - "coexists": null, - "coextensive": [["Y"]], - "coextensively": null, - "cofactor": [["M", "S"]], - "cofactor's": null, - "cofactors": null, - "coffeecake": [["S", "M"]], - "coffeecakes": null, - "coffeecake's": null, - "coffeecup": null, - "coffeehouse": [["S", "M"]], - "coffeehouses": null, - "coffeehouse's": null, - "coffeemaker": [["S"]], - "coffeemakers": null, - "coffeepot": [["M", "S"]], - "coffeepot's": null, - "coffeepots": null, - "coffee": [["S", "M"]], - "coffees": null, - "coffee's": null, - "cofferdam": [["S", "M"]], - "cofferdams": null, - "cofferdam's": null, - "coffer": [["D", "M", "S", "G"]], - "coffered": null, - "coffer's": null, - "coffers": null, - "coffering": null, - "Coffey": [["M"]], - "Coffey's": null, - "coffin": [["D", "M", "G", "S"]], - "coffined": null, - "coffin's": null, - "coffining": null, - "coffins": null, - "Coffman": [["M"]], - "Coffman's": null, - "cogency": [["M", "S"]], - "cogency's": null, - "cogencies": null, - "cogent": [["Y"]], - "cogently": null, - "cogged": null, - "cogging": null, - "cogitate": [["D", "S", "X", "N", "G", "V"]], - "cogitated": null, - "cogitates": null, - "cogitations": null, - "cogitation": [["M"]], - "cogitating": null, - "cogitative": null, - "cogitation's": null, - "cogitator": [["M", "S"]], - "cogitator's": null, - "cogitators": null, - "cog": [["M", "S"]], - "cog's": null, - "cogs": null, - "Cognac": [["M"]], - "Cognac's": null, - "cognac": [["S", "M"]], - "cognacs": null, - "cognac's": null, - "cognate": [["S", "X", "Y", "N"]], - "cognates": null, - "cognations": null, - "cognately": null, - "cognation": [["M"]], - "cognation's": null, - "cognitional": null, - "cognition": [["S", "A", "M"]], - "cognitions": null, - "recognitions": null, - "recognition": null, - "recognition's": null, - "cognition's": null, - "cognitive": [["S", "Y"]], - "cognitives": null, - "cognitively": null, - "cognizable": null, - "cognizance": [["M", "A", "I"]], - "cognizance's": null, - "recognizance's": null, - "incognizance's": null, - "recognizance": null, - "incognizance": null, - "cognizances": [["A"]], - "recognizances": null, - "cognizant": [["I"]], - "incognizant": null, - "cognomen": [["S", "M"]], - "cognomens": null, - "cognomen's": null, - "cognoscente": null, - "cognoscenti": null, - "cogwheel": [["S", "M"]], - "cogwheels": null, - "cogwheel's": null, - "cohabitant": [["M", "S"]], - "cohabitant's": null, - "cohabitants": null, - "cohabitational": null, - "cohabitation": [["S", "M"]], - "cohabitations": null, - "cohabitation's": null, - "cohabit": [["S", "D", "G"]], - "cohabits": null, - "cohabited": null, - "cohabiting": null, - "Cohan": [["M"]], - "Cohan's": null, - "coheir": [["M", "S"]], - "coheir's": null, - "coheirs": null, - "Cohen": [["M"]], - "Cohen's": null, - "cohere": [["G", "S", "R", "D"]], - "cohering": null, - "coheres": null, - "coherer": [["M"]], - "cohered": null, - "coherence": [["S", "I", "M"]], - "coherences": null, - "incoherences": null, - "incoherence": null, - "incoherence's": null, - "coherence's": null, - "coherencies": null, - "coherency": [["I"]], - "incoherency": [["M"]], - "coherent": [["I", "Y"]], - "incoherent": null, - "incoherently": null, - "coherently": null, - "coherer's": null, - "cohesion": [["M", "S"]], - "cohesion's": null, - "cohesions": null, - "cohesiveness": [["S", "M"]], - "cohesivenesses": null, - "cohesiveness's": null, - "cohesive": [["P", "Y"]], - "cohesively": null, - "Cohn": [["M"]], - "Cohn's": null, - "cohoes": null, - "coho": [["M", "S"]], - "coho's": null, - "cohos": null, - "cohort": [["S", "M"]], - "cohorts": null, - "cohort's": null, - "coiffed": null, - "coiffing": null, - "coiffure": [["M", "G", "S", "D"]], - "coiffure's": null, - "coiffuring": null, - "coiffures": null, - "coiffured": null, - "coif": [["S", "M"]], - "coifs": null, - "coif's": null, - "coil": [["U", "G", "S", "A", "D"]], - "uncoil": null, - "uncoiling": null, - "uncoils": null, - "uncoiled": null, - "coiling": null, - "recoiling": null, - "coils": null, - "recoils": null, - "recoil": null, - "recoiled": null, - "coiled": null, - "Coimbatore": [["M"]], - "Coimbatore's": null, - "coinage's": [["A"]], - "recoinage's": null, - "coinage": [["S", "M"]], - "coinages": null, - "coincide": [["G", "S", "D"]], - "coinciding": null, - "coincides": null, - "coincided": null, - "coincidence": [["M", "S"]], - "coincidence's": null, - "coincidences": null, - "coincidental": [["Y"]], - "coincidentally": null, - "coincident": [["Y"]], - "coincidently": null, - "coined": [["U"]], - "uncoined": null, - "coiner": [["M"]], - "coiner's": null, - "coin": [["G", "Z", "S", "D", "R", "M"]], - "coining": null, - "coiners": null, - "coins": null, - "coin's": null, - "coinsurance": [["S", "M"]], - "coinsurances": null, - "coinsurance's": null, - "Cointon": [["M"]], - "Cointon's": null, - "cointreau": null, - "coital": [["Y"]], - "coitally": null, - "coitus": [["S", "M"]], - "coituses": null, - "coitus's": null, - "coke": [["M", "G", "D", "S"]], - "coke's": null, - "coking": null, - "coked": null, - "cokes": null, - "Coke": [["M", "S"]], - "Coke's": null, - "Cokes": null, - "COL": null, - "COLA": null, - "colander": [["S", "M"]], - "colanders": null, - "colander's": null, - "Colan": [["M"]], - "Colan's": null, - "Colas": null, - "cola": [["S", "M"]], - "colas": null, - "cola's": null, - "colatitude": [["M", "S"]], - "colatitude's": null, - "colatitudes": null, - "Colbert": [["M"]], - "Colbert's": null, - "Colby": [["M"]], - "Colby's": null, - "coldblooded": null, - "coldish": null, - "coldness": [["M", "S"]], - "coldness's": null, - "coldnesses": null, - "cold": [["Y", "R", "P", "S", "T"]], - "coldly": null, - "colder": null, - "colds": null, - "coldest": null, - "Coleen": [["M"]], - "Coleen's": null, - "Cole": [["M"]], - "Cole's": null, - "Coleman": [["M"]], - "Coleman's": null, - "Colene": [["M"]], - "Colene's": null, - "Coleridge": [["M"]], - "Coleridge's": null, - "coleslaw": [["S", "M"]], - "coleslaws": null, - "coleslaw's": null, - "Colet": [["M"]], - "Colet's": null, - "Coletta": [["M"]], - "Coletta's": null, - "Colette": [["M"]], - "Colette's": null, - "coleus": [["S", "M"]], - "coleuses": null, - "coleus's": null, - "Colfax": [["M"]], - "Colfax's": null, - "Colgate": [["M"]], - "Colgate's": null, - "colicky": null, - "colic": [["S", "M"]], - "colics": null, - "colic's": null, - "coliform": null, - "Colin": [["M"]], - "Colin's": null, - "coliseum": [["S", "M"]], - "coliseums": null, - "coliseum's": null, - "colitis": [["M", "S"]], - "colitis's": null, - "colitises": null, - "collaborate": [["V", "G", "N", "X", "S", "D"]], - "collaborative": [["S", "Y"]], - "collaborating": null, - "collaboration": [["M"]], - "collaborations": null, - "collaborates": null, - "collaborated": null, - "collaboration's": null, - "collaboratives": null, - "collaboratively": null, - "collaborator": [["S", "M"]], - "collaborators": null, - "collaborator's": null, - "collage": [["M", "G", "S", "D"]], - "collage's": null, - "collaging": null, - "collages": null, - "collaged": null, - "collagen": [["M"]], - "collagen's": null, - "collapse": [["S", "D", "G"]], - "collapses": null, - "collapsed": null, - "collapsing": null, - "collapsibility": [["M"]], - "collapsibility's": null, - "collapsible": null, - "collarbone": [["M", "S"]], - "collarbone's": null, - "collarbones": null, - "collar": [["D", "M", "G", "S"]], - "collared": null, - "collar's": null, - "collaring": null, - "collars": null, - "collard": [["S", "M"]], - "collards": null, - "collard's": null, - "collarless": null, - "collated": [["U"]], - "uncollated": null, - "collateral": [["S", "Y", "M"]], - "collaterals": null, - "collaterally": null, - "collateral's": null, - "collate": [["S", "D", "V", "N", "G", "X"]], - "collates": null, - "collative": null, - "collation": [["M"]], - "collating": null, - "collations": null, - "collation's": null, - "collator": [["M", "S"]], - "collator's": null, - "collators": null, - "colleague": [["S", "D", "G", "M"]], - "colleagues": null, - "colleagued": null, - "colleaguing": null, - "colleague's": null, - "collectedness": [["M"]], - "collectedness's": null, - "collected": [["P", "Y"]], - "collectedly": null, - "collectible": [["S"]], - "collectibles": null, - "collection": [["A", "M", "S"]], - "recollection": null, - "recollection's": null, - "recollections": null, - "collection's": null, - "collections": null, - "collective": [["S", "Y"]], - "collectives": null, - "collectively": null, - "collectivism": [["S", "M"]], - "collectivisms": null, - "collectivism's": null, - "collectivist": [["M", "S"]], - "collectivist's": null, - "collectivists": null, - "collectivity": [["M", "S"]], - "collectivity's": null, - "collectivities": null, - "collectivization": [["M", "S"]], - "collectivization's": null, - "collectivizations": null, - "collectivize": [["D", "S", "G"]], - "collectivized": null, - "collectivizes": null, - "collectivizing": null, - "collector": [["M", "S"]], - "collector's": null, - "collectors": null, - "collect": [["S", "A", "G", "D"]], - "collects": null, - "recollects": null, - "recollect": null, - "recollecting": null, - "recollected": null, - "collecting": null, - "Colleen": [["M"]], - "Colleen's": null, - "colleen": [["S", "M"]], - "colleens": null, - "colleen's": null, - "college": [["S", "M"]], - "colleges": null, - "college's": null, - "collegiality": [["S"]], - "collegialities": null, - "collegian": [["S", "M"]], - "collegians": null, - "collegian's": null, - "collegiate": [["Y"]], - "collegiately": null, - "Collen": [["M"]], - "Collen's": null, - "Collete": [["M"]], - "Collete's": null, - "Collette": [["M"]], - "Collette's": null, - "coll": [["G"]], - "colling": null, - "collide": [["S", "D", "G"]], - "collides": null, - "collided": null, - "colliding": null, - "Collie": [["M"]], - "Collie's": null, - "collie": [["M", "Z", "S", "R", "D"]], - "collie's": null, - "colliers": null, - "collies": null, - "collier": [["M"]], - "collied": null, - "collier's": null, - "Collier": [["M"]], - "Collier's": null, - "colliery": [["M", "S"]], - "colliery's": null, - "collieries": null, - "collimate": [["C"]], - "decollimate": null, - "collimated": [["U"]], - "uncollimated": null, - "collimates": null, - "collimating": null, - "collimation": [["M"]], - "collimation's": null, - "collimator": [["M"]], - "collimator's": null, - "collinear": null, - "collinearity": [["M"]], - "collinearity's": null, - "Colline": [["M"]], - "Colline's": null, - "Collin": [["M", "S"]], - "Collin's": null, - "Collins": null, - "collisional": null, - "collision": [["S", "M"]], - "collisions": null, - "collision's": null, - "collocate": [["X", "S", "D", "G", "N"]], - "collocations": null, - "collocates": null, - "collocated": null, - "collocating": null, - "collocation": [["M"]], - "collocation's": null, - "colloidal": [["Y"]], - "colloidally": null, - "colloid": [["M", "S"]], - "colloid's": null, - "colloids": null, - "colloq": null, - "colloquialism": [["M", "S"]], - "colloquialism's": null, - "colloquialisms": null, - "colloquial": [["S", "Y"]], - "colloquials": null, - "colloquially": null, - "colloquies": null, - "colloquium": [["S", "M"]], - "colloquiums": null, - "colloquium's": null, - "colloquy": [["M"]], - "colloquy's": null, - "collude": [["S", "D", "G"]], - "colludes": null, - "colluded": null, - "colluding": null, - "collusion": [["S", "M"]], - "collusions": null, - "collusion's": null, - "collusive": null, - "collying": null, - "Colly": [["R", "M"]], - "Colly's": null, - "Colman": [["M"]], - "Colman's": null, - "Col": [["M", "Y"]], - "Col's": null, - "Cologne": [["M"]], - "Cologne's": null, - "cologne": [["M", "S", "D"]], - "cologne's": null, - "colognes": null, - "cologned": null, - "Colo": [["M"]], - "Colo's": null, - "Colombia": [["M"]], - "Colombia's": null, - "Colombian": [["S"]], - "Colombians": null, - "Colombo": [["M"]], - "Colombo's": null, - "colonelcy": [["M", "S"]], - "colonelcy's": null, - "colonelcies": null, - "colonel": [["M", "S"]], - "colonel's": null, - "colonels": null, - "colonialism": [["M", "S"]], - "colonialism's": null, - "colonialisms": null, - "colonialist": [["M", "S"]], - "colonialist's": null, - "colonialists": null, - "colonial": [["S", "P", "Y"]], - "colonials": null, - "colonialness": null, - "colonially": null, - "colonist": [["S", "M"]], - "colonists": null, - "colonist's": null, - "colonization": [["A", "C", "S", "M"]], - "recolonization": null, - "recolonizations": null, - "recolonization's": null, - "decolonization": null, - "decolonizations": null, - "decolonization's": null, - "colonizations": null, - "colonization's": null, - "colonize": [["A", "C", "S", "D", "G"]], - "recolonize": null, - "recolonizes": null, - "recolonized": null, - "recolonizing": null, - "decolonize": null, - "decolonizes": null, - "decolonized": null, - "decolonizing": null, - "colonizes": [["U"]], - "colonized": [["U"]], - "colonizing": null, - "uncolonized": null, - "colonizer": [["M", "S"]], - "colonizer's": null, - "colonizers": null, - "uncolonizes": null, - "Colon": [["M"]], - "Colon's": null, - "colonnade": [["M", "S", "D"]], - "colonnade's": null, - "colonnades": null, - "colonnaded": null, - "colon": [["S", "M"]], - "colons": null, - "colon's": null, - "colony": [["S", "M"]], - "colonies": null, - "colony's": null, - "colophon": [["S", "M"]], - "colophons": null, - "colophon's": null, - "Coloradan": [["S"]], - "Coloradans": null, - "Coloradoan": [["S"]], - "Coloradoans": null, - "Colorado": [["M"]], - "Colorado's": null, - "colorant": [["S", "M"]], - "colorants": null, - "colorant's": null, - "coloration": [["E", "M", "S"]], - "discoloration": null, - "discoloration's": null, - "discolorations": null, - "coloration's": null, - "colorations": null, - "coloratura": [["S", "M"]], - "coloraturas": null, - "coloratura's": null, - "colorblindness": [["S"]], - "colorblindnesses": null, - "colorblind": [["P"]], - "colored": [["U", "S", "E"]], - "uncolored": [["P", "Y"]], - "uncoloreds": null, - "coloreds": null, - "discoloreds": [["U"]], - "discolored": [["M", "P"]], - "colorer": [["M"]], - "colorer's": null, - "colorfastness": [["S", "M"]], - "colorfastnesses": null, - "colorfastness's": null, - "colorfast": [["P"]], - "colorfulness": [["M", "S"]], - "colorfulness's": null, - "colorfulnesses": null, - "colorful": [["P", "Y"]], - "colorfully": null, - "colorimeter": [["S", "M"]], - "colorimeters": null, - "colorimeter's": null, - "colorimetry": null, - "coloring": [["M"]], - "coloring's": null, - "colorization": [["S"]], - "colorizations": null, - "colorize": [["G", "S", "D"]], - "colorizing": [["C"]], - "colorizes": null, - "colorized": null, - "decolorizing": null, - "colorlessness": [["S", "M"]], - "colorlessnesses": null, - "colorlessness's": null, - "colorless": [["P", "Y"]], - "colorlessly": null, - "colors": [["E", "A"]], - "discolors": null, - "recolors": null, - "color": [["S", "R", "D", "M", "G", "Z", "J"]], - "color's": null, - "colorers": null, - "colorings": null, - "colossal": [["Y"]], - "colossally": null, - "Colosseum": [["M"]], - "Colosseum's": null, - "colossi": null, - "colossus": [["M"]], - "colossus's": null, - "colostomy": [["S", "M"]], - "colostomies": null, - "colostomy's": null, - "colostrum": [["S", "M"]], - "colostrums": null, - "colostrum's": null, - "col": [["S", "D"]], - "cols": null, - "coled": null, - "colter": [["M"]], - "colter's": null, - "coltishness": [["M"]], - "coltishness's": null, - "coltish": [["P", "Y"]], - "coltishly": null, - "Colt": [["M"]], - "Colt's": null, - "colt": [["M", "R", "S"]], - "colt's": null, - "colts": null, - "Coltrane": [["M"]], - "Coltrane's": null, - "Columbia": [["M"]], - "Columbia's": null, - "Columbian": null, - "Columbine": [["M"]], - "Columbine's": null, - "columbine": [["S", "M"]], - "columbines": null, - "columbine's": null, - "Columbus": [["M"]], - "Columbus's": null, - "columnar": null, - "columnist": [["M", "S"]], - "columnist's": null, - "columnists": null, - "columnize": [["G", "S", "D"]], - "columnizing": null, - "columnizes": null, - "columnized": null, - "column": [["S", "D", "M"]], - "columns": null, - "columned": null, - "column's": null, - "Colver": [["M"]], - "Colver's": null, - "Co": [["M"]], - "Co's": null, - "comae": null, - "comaker": [["S", "M"]], - "comakers": null, - "comaker's": null, - "Comanche": [["M", "S"]], - "Comanche's": null, - "Comanches": null, - "coma": [["S", "M"]], - "comas": null, - "coma's": null, - "comatose": null, - "combatant": [["S", "M"]], - "combatants": null, - "combatant's": null, - "combativeness": [["M", "S"]], - "combativeness's": null, - "combativenesses": null, - "combative": [["P", "Y"]], - "combatively": null, - "combat": [["S", "V", "G", "M", "D"]], - "combats": null, - "combating": null, - "combat's": null, - "combated": null, - "combed": [["U"]], - "uncombed": null, - "comber": [["M"]], - "comber's": null, - "combinational": [["A"]], - "recombinational": null, - "combination": [["A", "S", "M"]], - "recombination": null, - "recombinations": null, - "recombination's": null, - "combinations": null, - "combination's": null, - "combinatorial": [["Y"]], - "combinatorially": null, - "combinatoric": [["S"]], - "combinatorics": null, - "combinator": [["S", "M"]], - "combinators": null, - "combinator's": null, - "combined": [["A", "U"]], - "recombined": null, - "uncombined": null, - "combiner": [["M"]], - "combiner's": null, - "combines": [["A"]], - "recombines": null, - "combine": [["Z", "G", "B", "R", "S", "D"]], - "combiners": null, - "combining": [["A"]], - "combinable": null, - "recombining": null, - "combo": [["M", "S"]], - "combo's": null, - "combos": null, - "comb": [["S", "G", "Z", "D", "R", "M", "J"]], - "combs": null, - "combing": null, - "combers": null, - "comb's": null, - "combings": null, - "Combs": [["M"]], - "Combs's": null, - "combusted": null, - "combustibility": [["S", "M"]], - "combustibilities": null, - "combustibility's": null, - "combustible": [["S", "I"]], - "combustibles": null, - "incombustibles": null, - "incombustible": null, - "combustion": [["M", "S"]], - "combustion's": null, - "combustions": null, - "combustive": null, - "Comdex": [["M"]], - "Comdex's": null, - "Comdr": [["M"]], - "Comdr's": null, - "comeback": [["S", "M"]], - "comebacks": null, - "comeback's": null, - "comedian": [["S", "M"]], - "comedians": null, - "comedian's": null, - "comedic": null, - "comedienne": [["S", "M"]], - "comediennes": null, - "comedienne's": null, - "comedown": [["M", "S"]], - "comedown's": null, - "comedowns": null, - "comedy": [["S", "M"]], - "comedies": null, - "comedy's": null, - "come": [["I", "Z", "S", "R", "G", "J"]], - "income": [["M"]], - "incomers": null, - "incomes": null, - "incomer": null, - "incoming": null, - "incomings": null, - "comers": null, - "comes": [["M"]], - "comer": [["I", "M"]], - "coming": null, - "comings": null, - "comeliness": [["S", "M"]], - "comelinesses": null, - "comeliness's": null, - "comely": [["T", "P", "R"]], - "comeliest": null, - "comelier": null, - "incomer's": null, - "comer's": null, - "comes's": null, - "comestible": [["M", "S"]], - "comestible's": null, - "comestibles": null, - "cometary": null, - "cometh": null, - "comet": [["S", "M"]], - "comets": null, - "comet's": null, - "comeuppance": [["S", "M"]], - "comeuppances": null, - "comeuppance's": null, - "comfit's": null, - "comfit": [["S", "E"]], - "comfits": null, - "discomfits": null, - "discomfit": [["D", "G"]], - "comfortability": [["S"]], - "comfortabilities": null, - "comfortableness": [["M", "S"]], - "comfortableness's": null, - "comfortablenesses": null, - "comfortable": [["U"]], - "uncomfortable": null, - "comfortably": [["U"]], - "uncomfortably": null, - "comforted": [["U"]], - "uncomforted": null, - "comforter": [["M", "S"]], - "comforter's": null, - "comforters": null, - "comfort": [["E", "S", "M", "D", "G"]], - "discomfort": null, - "discomforts": null, - "discomfort's": null, - "discomforted": null, - "discomforting": null, - "comforts": null, - "comfort's": null, - "comforting": [["Y", "E"]], - "comfortingly": null, - "discomfortingly": null, - "comfy": [["R", "T"]], - "comfier": null, - "comfiest": null, - "comicality": [["M", "S"]], - "comicality's": null, - "comicalities": null, - "comical": [["Y"]], - "comically": null, - "comic": [["M", "S"]], - "comic's": null, - "comics": null, - "Cominform": [["M"]], - "Cominform's": null, - "comity": [["S", "M"]], - "comities": null, - "comity's": null, - "com": [["L", "J", "R", "T", "Z", "G"]], - "comment": [["S", "U", "G", "D"]], - "comest": null, - "comm": null, - "Com": [["M"]], - "Com's": null, - "comma": [["M", "S"]], - "comma's": null, - "commas": null, - "commandant": [["M", "S"]], - "commandant's": null, - "commandants": null, - "commandeer": [["S", "D", "G"]], - "commandeers": null, - "commandeered": null, - "commandeering": null, - "commander": [["M"]], - "commander's": null, - "commanding": [["Y"]], - "commandingly": null, - "commandment": [["S", "M"]], - "commandments": null, - "commandment's": null, - "commando": [["S", "M"]], - "commandos": null, - "commando's": null, - "command": [["S", "Z", "R", "D", "M", "G", "L"]], - "commands": null, - "commanders": null, - "commanded": null, - "command's": null, - "commemorate": [["S", "D", "V", "N", "G", "X"]], - "commemorates": null, - "commemorated": null, - "commemorative": [["Y", "S"]], - "commemoration": [["M"]], - "commemorating": null, - "commemorations": null, - "commemoration's": null, - "commemoratively": null, - "commemoratives": null, - "commemorator": [["S"]], - "commemorators": null, - "commence": [["A", "L", "D", "S", "G"]], - "recommence": null, - "recommencement": null, - "recommenced": null, - "recommences": null, - "recommencing": null, - "commencement": [["A", "M", "S"]], - "commenced": null, - "commences": null, - "commencing": null, - "recommencement's": null, - "recommencements": null, - "commencement's": null, - "commencements": null, - "commencer": [["M"]], - "commencer's": null, - "commendably": null, - "commendation": [["A", "S", "M"]], - "recommendation": null, - "recommendations": null, - "recommendation's": null, - "commendations": null, - "commendation's": null, - "commendatory": [["A"]], - "recommendatory": null, - "commender": [["A", "M"]], - "recommender": null, - "recommender's": null, - "commender's": null, - "commend": [["G", "S", "A", "D", "R", "B"]], - "commending": null, - "recommending": null, - "commends": null, - "recommends": null, - "recommend": null, - "recommended": [["U"]], - "recommendable": null, - "commended": null, - "commendable": null, - "commensurable": [["I"]], - "incommensurable": null, - "commensurate": [["I", "Y"]], - "incommensurate": null, - "incommensurately": null, - "commensurately": null, - "commensurates": null, - "commensuration": [["S", "M"]], - "commensurations": null, - "commensuration's": null, - "commentary": [["M", "S"]], - "commentary's": null, - "commentaries": null, - "commentate": [["G", "S", "D"]], - "commentating": null, - "commentates": null, - "commentated": null, - "commentator": [["S", "M"]], - "commentators": null, - "commentator's": null, - "commenter": [["M"]], - "commenter's": null, - "comment's": null, - "comments": null, - "uncomments": null, - "uncomment": null, - "uncommenting": null, - "uncommented": null, - "commenting": null, - "commented": null, - "commerce": [["M", "G", "S", "D"]], - "commerce's": null, - "commercing": null, - "commerces": null, - "commerced": null, - "commercialism": [["M", "S"]], - "commercialism's": null, - "commercialisms": null, - "commercialization": [["S", "M"]], - "commercializations": null, - "commercialization's": null, - "commercialize": [["G", "S", "D"]], - "commercializing": null, - "commercializes": null, - "commercialized": null, - "commercial": [["P", "Y", "S"]], - "commercialness": null, - "commercially": null, - "commercials": null, - "Commie": null, - "commie": [["S", "M"]], - "commies": null, - "commie's": null, - "commingle": [["G", "S", "D"]], - "commingling": null, - "commingles": null, - "commingled": null, - "commiserate": [["V", "G", "N", "X", "S", "D"]], - "commiserative": null, - "commiserating": null, - "commiseration": [["M"]], - "commiserations": null, - "commiserates": null, - "commiserated": null, - "commiseration's": null, - "commissariat": [["M", "S"]], - "commissariat's": null, - "commissariats": null, - "commissar": [["M", "S"]], - "commissar's": null, - "commissars": null, - "commissary": [["M", "S"]], - "commissary's": null, - "commissaries": null, - "commission": [["A", "S", "C", "G", "D"]], - "recommission": null, - "recommissions": null, - "recommissioning": null, - "recommissioned": null, - "commissions": null, - "decommissions": null, - "decommission": null, - "decommissioning": null, - "decommissioned": null, - "commissioning": null, - "commissioned": null, - "commissioner": [["S", "M"]], - "commissioners": null, - "commissioner's": null, - "commission's": [["A"]], - "recommission's": null, - "commitment": [["S", "M"]], - "commitments": null, - "commitment's": null, - "commit": [["S", "A"]], - "commits": null, - "recommits": null, - "recommit": null, - "committable": null, - "committal": [["M", "A"]], - "committal's": null, - "recommittal's": null, - "recommittal": null, - "committals": null, - "committed": [["U", "A"]], - "uncommitted": null, - "recommitted": null, - "committeeman": [["M"]], - "committeeman's": null, - "committeemen": null, - "committee": [["M", "S"]], - "committee's": null, - "committees": null, - "committeewoman": [["M"]], - "committeewoman's": null, - "committeewomen": null, - "committing": [["A"]], - "recommitting": null, - "commode": [["M", "S"]], - "commode's": null, - "commodes": [["I", "E"]], - "incommodes": null, - "discommodes": null, - "commodiousness": [["M", "I"]], - "commodiousness's": null, - "incommodiousness's": null, - "incommodiousness": null, - "commodious": [["Y", "I", "P"]], - "commodiously": null, - "incommodiously": null, - "incommodious": null, - "commodity": [["M", "S"]], - "commodity's": null, - "commodities": null, - "commodore": [["S", "M"]], - "commodores": null, - "commodore's": null, - "commonality": [["M", "S"]], - "commonality's": null, - "commonalities": null, - "commonalty": [["M", "S"]], - "commonalty's": null, - "commonalties": null, - "commoner": [["M", "S"]], - "commoner's": null, - "commoners": null, - "commonness": [["M", "S", "U"]], - "commonness's": null, - "uncommonness's": null, - "commonnesses": null, - "uncommonnesses": null, - "uncommonness": null, - "commonplaceness": [["M"]], - "commonplaceness's": null, - "commonplace": [["S", "P"]], - "commonplaces": null, - "common": [["R", "Y", "U", "P", "T"]], - "uncommoner": null, - "commonly": null, - "uncommonly": null, - "uncommon": null, - "commonest": null, - "commonsense": null, - "commons": [["M"]], - "commons's": null, - "Commons": [["M"]], - "Commons's": null, - "commonweal": [["S", "H", "M"]], - "commonweals": null, - "commonwealth": [["M"]], - "commonweal's": null, - "commonwealth's": null, - "Commonwealth": [["M"]], - "Commonwealth's": null, - "commonwealths": null, - "Commonwealths": null, - "commotion": [["M", "S"]], - "commotion's": null, - "commotions": null, - "communality": [["M"]], - "communality's": null, - "communal": [["Y"]], - "communally": null, - "commune": [["X", "S", "D", "N", "G"]], - "communions": null, - "communes": null, - "communed": null, - "communion": [["M"]], - "communing": null, - "communicability": [["M", "S"]], - "communicability's": null, - "communicabilities": null, - "communicable": [["I", "U"]], - "incommunicable": null, - "uncommunicable": null, - "communicably": null, - "communicant": [["M", "S"]], - "communicant's": null, - "communicants": null, - "communicate": [["V", "N", "G", "X", "S", "D"]], - "communicative": [["P", "Y"]], - "communication": [["M"]], - "communicating": null, - "communications": null, - "communicates": null, - "communicated": null, - "communicational": null, - "communication's": null, - "communicativeness": [["M"]], - "communicativeness's": null, - "communicatively": null, - "communicator": [["S", "M"]], - "communicators": null, - "communicator's": null, - "communion's": null, - "Communion": [["S", "M"]], - "Communions": null, - "Communion's": null, - "communique": [["S"]], - "communiques": null, - "communism": [["M", "S"]], - "communism's": null, - "communisms": null, - "Communism": [["S"]], - "Communisms": null, - "communistic": null, - "communist": [["M", "S"]], - "communist's": null, - "communists": null, - "Communist": [["S"]], - "Communists": null, - "communitarian": [["M"]], - "communitarian's": null, - "community": [["M", "S"]], - "community's": null, - "communities": null, - "communize": [["S", "D", "G"]], - "communizes": null, - "communized": null, - "communizing": null, - "commutable": [["I"]], - "incommutable": null, - "commutate": [["X", "V", "G", "N", "S", "D"]], - "commutations": null, - "commutative": [["Y"]], - "commutating": null, - "commutation": [["M"]], - "commutates": null, - "commutated": null, - "commutation's": null, - "commutatively": null, - "commutativity": null, - "commutator": [["M", "S"]], - "commutator's": null, - "commutators": null, - "commute": [["B", "Z", "G", "R", "S", "D"]], - "commuters": null, - "commuting": null, - "commuter": [["M"]], - "commutes": null, - "commuted": null, - "commuter's": null, - "Comoros": null, - "compaction": [["M"]], - "compaction's": null, - "compactness": [["M", "S"]], - "compactness's": null, - "compactnesses": null, - "compactor": [["M", "S"]], - "compactor's": null, - "compactors": null, - "compact": [["T", "Z", "G", "S", "P", "R", "D", "Y"]], - "compactest": null, - "compacters": null, - "compacting": null, - "compacts": null, - "compacter": null, - "compacted": null, - "compactly": null, - "companionableness": [["M"]], - "companionableness's": null, - "companionable": [["P"]], - "companionably": null, - "companion": [["G", "B", "S", "M", "D"]], - "companioning": null, - "companions": null, - "companion's": null, - "companioned": null, - "companionship": [["M", "S"]], - "companionship's": null, - "companionships": null, - "companionway": [["M", "S"]], - "companionway's": null, - "companionways": null, - "company": [["M", "S", "D", "G"]], - "company's": null, - "companies": null, - "companied": null, - "companying": null, - "Compaq": [["M"]], - "Compaq's": null, - "comparabilities": null, - "comparability": [["I", "M"]], - "incomparability": null, - "incomparability's": null, - "comparability's": null, - "comparableness": [["M"]], - "comparableness's": null, - "comparable": [["P"]], - "comparably": [["I"]], - "incomparably": null, - "comparativeness": [["M"]], - "comparativeness's": null, - "comparative": [["P", "Y", "S"]], - "comparatively": null, - "comparatives": null, - "comparator": [["S", "M"]], - "comparators": null, - "comparator's": null, - "compare": [["G", "R", "S", "D", "B"]], - "comparing": null, - "comparer": [["M"]], - "compares": null, - "compared": null, - "comparer's": null, - "comparison": [["M", "S"]], - "comparison's": null, - "comparisons": null, - "compartmental": null, - "compartmentalization": [["S", "M"]], - "compartmentalizations": null, - "compartmentalization's": null, - "compartmentalize": [["D", "S", "G"]], - "compartmentalized": null, - "compartmentalizes": null, - "compartmentalizing": null, - "compartment": [["S", "D", "M", "G"]], - "compartments": null, - "compartmented": null, - "compartment's": null, - "compartmenting": null, - "compassionateness": [["M"]], - "compassionateness's": null, - "compassionate": [["P", "S", "D", "G", "Y"]], - "compassionates": null, - "compassionated": null, - "compassionating": null, - "compassionately": null, - "compassion": [["M", "S"]], - "compassion's": null, - "compassions": null, - "compass": [["M", "S", "D", "G"]], - "compass's": null, - "compasses": null, - "compassed": null, - "compassing": null, - "compatibility": [["I", "M", "S"]], - "incompatibility": null, - "incompatibility's": null, - "incompatibilities": null, - "compatibility's": null, - "compatibilities": null, - "compatibleness": [["M"]], - "compatibleness's": null, - "compatible": [["S", "I"]], - "compatibles": null, - "incompatibles": null, - "incompatible": null, - "compatibly": [["I"]], - "incompatibly": null, - "compatriot": [["S", "M"]], - "compatriots": null, - "compatriot's": null, - "compeer": [["D", "S", "G", "M"]], - "compeered": null, - "compeers": null, - "compeering": null, - "compeer's": null, - "compellable": null, - "compelled": null, - "compelling": [["Y", "M"]], - "compellingly": null, - "compelling's": null, - "compel": [["S"]], - "compels": null, - "compendious": null, - "compendium": [["M", "S"]], - "compendium's": null, - "compendiums": null, - "compensable": null, - "compensated": [["U"]], - "uncompensated": null, - "compensate": [["X", "V", "N", "G", "S", "D"]], - "compensations": null, - "compensative": null, - "compensation": [["M"]], - "compensating": null, - "compensates": null, - "compensation's": null, - "compensator": [["M"]], - "compensator's": null, - "compensatory": null, - "compete": [["G", "S", "D"]], - "competing": null, - "competes": null, - "competed": null, - "competence": [["I", "S", "M"]], - "incompetence": null, - "incompetences": null, - "incompetence's": null, - "competences": null, - "competence's": null, - "competency": [["I", "S"]], - "incompetency": null, - "incompetencies": null, - "competencies": null, - "competency's": null, - "competent": [["I", "Y"]], - "incompetent": [["M", "S"]], - "incompetently": null, - "competently": null, - "competition": [["S", "M"]], - "competitions": null, - "competition's": null, - "competitiveness": [["S", "M"]], - "competitivenesses": null, - "competitiveness's": null, - "competitive": [["Y", "P"]], - "competitively": null, - "competitor": [["M", "S"]], - "competitor's": null, - "competitors": null, - "comp": [["G", "S", "Y", "D"]], - "comping": null, - "comps": null, - "comply": [["Z", "X", "R", "S", "D", "N", "G"]], - "comped": null, - "compilable": [["U"]], - "uncompilable": null, - "compilation": [["S", "A", "M"]], - "compilations": null, - "recompilations": null, - "recompilation": null, - "recompilation's": null, - "compilation's": null, - "compile": [["A", "S", "D", "C", "G"]], - "recompile": null, - "recompiles": null, - "recompiled": null, - "recompiling": null, - "compiles": null, - "decompiles": null, - "compiled": null, - "decompiled": null, - "decompile": null, - "decompiling": null, - "compiling": null, - "compiler": [["C", "S"]], - "decompiler": null, - "decompilers": null, - "compilers": null, - "compiler's": null, - "complacence": [["S"]], - "complacences": null, - "complacency": [["S", "M"]], - "complacencies": null, - "complacency's": null, - "complacent": [["Y"]], - "complacently": null, - "complainant": [["M", "S"]], - "complainant's": null, - "complainants": null, - "complainer": [["M"]], - "complainer's": null, - "complain": [["G", "Z", "R", "D", "S"]], - "complaining": [["Y", "U"]], - "complainers": null, - "complained": null, - "complains": null, - "complainingly": null, - "uncomplainingly": null, - "uncomplaining": null, - "complaint": [["M", "S"]], - "complaint's": null, - "complaints": null, - "complaisance": [["S", "M"]], - "complaisances": null, - "complaisance's": null, - "complaisant": [["Y"]], - "complaisantly": null, - "complected": null, - "complementariness": [["M"]], - "complementariness's": null, - "complementarity": null, - "complementary": [["S", "P"]], - "complementaries": null, - "complementation": [["M"]], - "complementation's": null, - "complementer": [["M"]], - "complementer's": null, - "complement": [["Z", "S", "M", "R", "D", "G"]], - "complementers": null, - "complements": null, - "complement's": null, - "complemented": null, - "complementing": null, - "complete": [["B", "T", "Y", "V", "N", "G", "P", "R", "S", "D", "X"]], - "completable": null, - "completest": null, - "completely": [["I"]], - "completive": null, - "completion": [["M", "I"]], - "completing": null, - "completeness": [["I", "S", "M"]], - "completer": [["M"]], - "completes": null, - "completed": [["U"]], - "completions": null, - "uncompleted": null, - "incompletely": null, - "incompleteness": null, - "incompletenesses": null, - "incompleteness's": null, - "completenesses": null, - "completeness's": null, - "completer's": null, - "completion's": null, - "incompletion's": null, - "incompletion": null, - "complexional": null, - "complexion": [["D", "M", "S"]], - "complexioned": null, - "complexion's": null, - "complexions": null, - "complexity": [["M", "S"]], - "complexity's": null, - "complexities": null, - "complexness": [["M"]], - "complexness's": null, - "complex": [["T", "G", "P", "R", "S", "D", "Y"]], - "complexest": null, - "complexing": null, - "complexer": null, - "complexes": null, - "complexed": null, - "complexly": null, - "compliance": [["S", "M"]], - "compliances": null, - "compliance's": null, - "compliant": [["Y"]], - "compliantly": null, - "complicatedness": [["M"]], - "complicatedness's": null, - "complicated": [["Y", "P"]], - "complicatedly": null, - "complicate": [["S", "D", "G"]], - "complicates": null, - "complicating": null, - "complication": [["M"]], - "complication's": null, - "complicator": [["S", "M"]], - "complicators": null, - "complicator's": null, - "complicit": null, - "complicity": [["M", "S"]], - "complicity's": null, - "complicities": null, - "complier": [["M"]], - "complier's": null, - "complimentary": [["U"]], - "uncomplimentary": null, - "complimenter": [["M"]], - "complimenter's": null, - "compliment": [["Z", "S", "M", "R", "D", "G"]], - "complimenters": null, - "compliments": null, - "compliment's": null, - "complimented": null, - "complimenting": null, - "compliers": null, - "complications": null, - "complies": null, - "complied": null, - "complying": null, - "component": [["S", "M"]], - "components": null, - "component's": null, - "comport": [["G", "L", "S", "D"]], - "comporting": null, - "comportment": [["S", "M"]], - "comports": null, - "comported": null, - "comportments": null, - "comportment's": null, - "compose": [["C", "G", "A", "S", "D", "E"]], - "decompose": [["B"]], - "decomposing": null, - "decomposes": null, - "decomposed": null, - "composing": null, - "recomposing": null, - "discomposing": null, - "recompose": null, - "recomposes": null, - "recomposed": null, - "composes": null, - "discomposes": null, - "composed": [["P", "Y"]], - "discomposed": null, - "discompose": null, - "composedness": [["M"]], - "composedness's": null, - "composedly": null, - "composer": [["C", "M"]], - "decomposer": null, - "decomposer's": null, - "composer's": null, - "composers": null, - "composite": [["Y", "S", "D", "X", "N", "G"]], - "compositely": null, - "composites": null, - "composited": null, - "compositions": [["C"]], - "composition": [["C", "M", "A"]], - "compositing": null, - "compositional": [["Y"]], - "compositionally": null, - "decomposition": null, - "decomposition's": null, - "composition's": null, - "recomposition's": null, - "recomposition": null, - "decompositions": null, - "compositor": [["M", "S"]], - "compositor's": null, - "compositors": null, - "compost": [["D", "M", "G", "S"]], - "composted": null, - "compost's": null, - "composting": null, - "composts": null, - "composure": [["E", "S", "M"]], - "discomposure": null, - "discomposures": null, - "discomposure's": null, - "composures": null, - "composure's": null, - "compote": [["M", "S"]], - "compote's": null, - "compotes": null, - "compounded": [["U"]], - "uncompounded": null, - "compounder": [["M"]], - "compounder's": null, - "compound": [["R", "D", "M", "B", "G", "S"]], - "compound's": null, - "compoundable": null, - "compounding": null, - "compounds": null, - "comprehend": [["D", "G", "S"]], - "comprehended": null, - "comprehending": [["U"]], - "comprehends": null, - "uncomprehending": [["Y"]], - "comprehensibility": [["S", "I", "M"]], - "comprehensibilities": null, - "incomprehensibilities": null, - "incomprehensibility": null, - "incomprehensibility's": null, - "comprehensibility's": null, - "comprehensibleness": [["I", "M"]], - "incomprehensibleness": null, - "incomprehensibleness's": null, - "comprehensibleness's": null, - "comprehensible": [["P", "I"]], - "incomprehensible": null, - "comprehensibly": [["I"]], - "incomprehensibly": null, - "comprehension": [["I", "M", "S"]], - "incomprehension": null, - "incomprehension's": null, - "incomprehensions": null, - "comprehension's": null, - "comprehensions": null, - "comprehensiveness": [["S", "M"]], - "comprehensivenesses": null, - "comprehensiveness's": null, - "comprehensive": [["Y", "P", "S"]], - "comprehensively": null, - "comprehensives": null, - "compressed": [["Y"]], - "compressedly": null, - "compressibility": [["I", "M"]], - "incompressibility": null, - "incompressibility's": null, - "compressibility's": null, - "compressible": [["I"]], - "incompressible": null, - "compressional": null, - "compression": [["C", "S", "M"]], - "decompression": null, - "decompressions": null, - "decompression's": null, - "compressions": null, - "compression's": null, - "compressive": [["Y"]], - "compressively": null, - "compressor": [["M", "S"]], - "compressor's": null, - "compressors": null, - "compress": [["S", "D", "U", "G", "C"]], - "compresses": null, - "uncompresses": null, - "decompresses": null, - "uncompressed": null, - "decompressed": null, - "uncompress": null, - "uncompressing": null, - "compressing": null, - "decompressing": null, - "decompress": [["R"]], - "comprise": [["G", "S", "D"]], - "comprising": null, - "comprises": null, - "comprised": null, - "compromiser": [["M"]], - "compromiser's": null, - "compromise": [["S", "R", "D", "G", "M", "Z"]], - "compromises": null, - "compromised": null, - "compromising": [["U", "Y"]], - "compromise's": null, - "compromisers": null, - "uncompromising": null, - "uncompromisingly": null, - "compromisingly": null, - "Compton": [["M"]], - "Compton's": null, - "comptroller": [["S", "M"]], - "comptrollers": null, - "comptroller's": null, - "compulsion": [["S", "M"]], - "compulsions": null, - "compulsion's": null, - "compulsiveness": [["M", "S"]], - "compulsiveness's": null, - "compulsivenesses": null, - "compulsive": [["P", "Y", "S"]], - "compulsively": null, - "compulsives": null, - "compulsivity": null, - "compulsorily": null, - "compulsory": [["S"]], - "compulsories": null, - "compunction": [["M", "S"]], - "compunction's": null, - "compunctions": null, - "Compuserve": [["M"]], - "Compuserve's": null, - "CompuServe": [["M"]], - "CompuServe's": null, - "computability": [["M"]], - "computability's": null, - "computable": [["U", "I"]], - "uncomputable": null, - "incomputable": null, - "computably": null, - "computational": [["Y"]], - "computationally": null, - "computation": [["S", "M"]], - "computations": null, - "computation's": null, - "computed": [["A"]], - "recomputed": null, - "computerese": null, - "computerization": [["M", "S"]], - "computerization's": null, - "computerizations": null, - "computerize": [["S", "D", "G"]], - "computerizes": null, - "computerized": null, - "computerizing": null, - "computer": [["M"]], - "computer's": null, - "compute": [["R", "S", "D", "Z", "B", "G"]], - "computes": [["A"]], - "computers": null, - "computing": [["A"]], - "recomputes": null, - "recomputing": null, - "comradely": [["P"]], - "comradeliness": null, - "comradeship": [["M", "S"]], - "comradeship's": null, - "comradeships": null, - "comrade": [["Y", "M", "S"]], - "comrade's": null, - "comrades": null, - "Comte": [["M"]], - "Comte's": null, - "Conakry": [["M"]], - "Conakry's": null, - "Conan": [["M"]], - "Conan's": null, - "Conant": [["M"]], - "Conant's": null, - "concatenations": null, - "concatenates": null, - "concatenated": null, - "concatenating": null, - "concaveness": [["M", "S"]], - "concaveness's": null, - "concavenesses": null, - "concavely": null, - "conceal": [["B", "S", "Z", "G", "R", "D", "L"]], - "concealable": null, - "conceals": null, - "concealers": null, - "concealing": [["Y"]], - "concealer": [["M"]], - "concealed": [["U"]], - "concealment": [["M", "S"]], - "unconcealed": null, - "concealer's": null, - "concealingly": null, - "concealment's": null, - "concealments": null, - "concededly": null, - "conceitedness": [["S", "M"]], - "conceitednesses": null, - "conceitedness's": null, - "conceited": [["Y", "P"]], - "conceitedly": null, - "conceit": [["S", "G", "D", "M"]], - "conceits": null, - "conceiting": null, - "conceit's": null, - "conceivable": [["I", "U"]], - "inconceivable": [["P"]], - "unconceivable": null, - "conceivably": [["I"]], - "inconceivably": null, - "conceive": [["B", "G", "R", "S", "D"]], - "conceiving": null, - "conceiver": [["M"]], - "conceives": null, - "conceived": null, - "conceiver's": null, - "concentrate": [["V", "N", "G", "S", "D", "X"]], - "concentrative": null, - "concentration": [["M"]], - "concentrating": null, - "concentrates": null, - "concentrated": null, - "concentrations": null, - "concentration's": null, - "concentrator": [["M", "S"]], - "concentrator's": null, - "concentrators": null, - "concentrically": null, - "Concepci�n": [["M"]], - "Concepci�n's": null, - "conceptional": null, - "conception": [["M", "S"]], - "conception's": null, - "conceptions": null, - "concept": [["S", "V", "M"]], - "concepts": null, - "conceptive": null, - "concept's": null, - "conceptuality": [["M"]], - "conceptuality's": null, - "conceptualization": [["A"]], - "reconceptualization": null, - "conceptualizations": null, - "conceptualization's": null, - "conceptualize": [["D", "R", "S", "G"]], - "conceptualized": null, - "conceptualizer": null, - "conceptualizes": null, - "conceptualizing": [["A"]], - "reconceptualizing": null, - "conceptual": [["Y"]], - "conceptually": null, - "concerned": [["Y", "U"]], - "concernedly": null, - "unconcernedly": null, - "unconcerned": [["P"]], - "concern": [["U", "S", "G", "D"]], - "unconcern": [["M"]], - "unconcerns": null, - "unconcerning": null, - "concerns": null, - "concerning": null, - "concerted": [["P", "Y"]], - "concertedness": null, - "concertedly": null, - "disconcert": null, - "disconcerted": null, - "disconcerts": null, - "disconcerting": [["Y"]], - "concerting": null, - "concertina": [["M", "D", "G", "S"]], - "concertina's": null, - "concertinaed": null, - "concertinaing": null, - "concertinas": null, - "concertize": [["G", "D", "S"]], - "concertizing": null, - "concertized": null, - "concertizes": null, - "concertmaster": [["M", "S"]], - "concertmaster's": null, - "concertmasters": null, - "concerto": [["S", "M"]], - "concertos": null, - "concerto's": null, - "concert's": null, - "concessionaire": [["S", "M"]], - "concessionaires": null, - "concessionaire's": null, - "concessional": null, - "concessionary": null, - "concessioner": null, - "Concetta": [["M"]], - "Concetta's": null, - "Concettina": [["M"]], - "Concettina's": null, - "Conchita": [["M"]], - "Conchita's": null, - "conch": [["M", "D", "G"]], - "conch's": null, - "conched": null, - "conching": null, - "conchs": null, - "concierge": [["S", "M"]], - "concierges": null, - "concierge's": null, - "conciliar": null, - "conciliating": null, - "conciliation": [["A", "S", "M"]], - "conciliative": null, - "conciliations": null, - "reconciliation": null, - "reconciliations": null, - "reconciliation's": null, - "conciliation's": null, - "conciliator": [["M", "S"]], - "conciliator's": null, - "conciliators": null, - "conciliatory": [["A"]], - "reconciliatory": null, - "conciseness": [["S", "M"]], - "concisenesses": null, - "conciseness's": null, - "concise": [["T", "Y", "R", "N", "P", "X"]], - "concisest": null, - "concisely": null, - "conciser": null, - "concision": [["M"]], - "concisions": null, - "concision's": null, - "conclave": [["S"]], - "conclaves": null, - "concluder": [["M"]], - "concluder's": null, - "conclude": [["R", "S", "D", "G"]], - "concludes": null, - "concluded": null, - "concluding": null, - "conclusion": [["S", "M"]], - "conclusions": null, - "conclusion's": null, - "conclusive": [["I", "P", "Y"]], - "inconclusive": null, - "inconclusiveness": null, - "inconclusively": null, - "conclusiveness": [["I", "S", "M"]], - "conclusively": null, - "inconclusivenesses": null, - "inconclusiveness's": null, - "conclusivenesses": null, - "conclusiveness's": null, - "concocter": [["M"]], - "concocter's": null, - "concoction": [["S", "M"]], - "concoctions": null, - "concoction's": null, - "concoct": [["R", "D", "V", "G", "S"]], - "concocted": null, - "concoctive": null, - "concocting": null, - "concocts": null, - "concomitant": [["Y", "S"]], - "concomitantly": null, - "concomitants": null, - "concordance": [["M", "S"]], - "concordance's": null, - "concordances": null, - "concordant": [["Y"]], - "concordantly": null, - "concordat": [["S", "M"]], - "concordats": null, - "concordat's": null, - "Concorde": [["M"]], - "Concorde's": null, - "Concordia": [["M"]], - "Concordia's": null, - "Concord": [["M", "S"]], - "Concord's": null, - "Concords": null, - "concourse": null, - "concreteness": [["M", "S"]], - "concreteness's": null, - "concretenesses": null, - "concrete": [["N", "G", "X", "R", "S", "D", "P", "Y", "M"]], - "concretion": [["M"]], - "concreting": null, - "concretions": null, - "concreter": null, - "concretes": null, - "concreted": null, - "concretely": null, - "concrete's": null, - "concretion's": null, - "concubinage": [["S", "M"]], - "concubinages": null, - "concubinage's": null, - "concubine": [["S", "M"]], - "concubines": null, - "concubine's": null, - "concupiscence": [["S", "M"]], - "concupiscences": null, - "concupiscence's": null, - "concupiscent": null, - "concurrence": [["M", "S"]], - "concurrence's": null, - "concurrences": null, - "concur": [["S"]], - "concurs": null, - "concussion": [["M", "S"]], - "concussion's": null, - "concussions": null, - "concuss": [["V", "D"]], - "concussive": null, - "concussed": null, - "condemnate": [["X", "N"]], - "condemnations": null, - "condemnation": [["M"]], - "condemnation's": null, - "condemnatory": null, - "condemner": [["M"]], - "condemner's": null, - "condemn": [["Z", "S", "G", "R", "D", "B"]], - "condemners": null, - "condemns": null, - "condemning": null, - "condemned": null, - "condemnable": null, - "condensate": [["N", "M", "X", "S"]], - "condensation": [["M"]], - "condensate's": null, - "condensations": null, - "condensates": null, - "condensation's": null, - "condenser": [["M"]], - "condenser's": null, - "condense": [["Z", "G", "S", "D"]], - "condensers": null, - "condensing": null, - "condenses": null, - "condensed": null, - "condensible": null, - "condescend": null, - "condescending": [["Y"]], - "condescendingly": null, - "condescension": [["M", "S"]], - "condescension's": null, - "condescensions": null, - "condign": null, - "condiment": [["S", "M"]], - "condiments": null, - "condiment's": null, - "condition": [["A", "G", "S", "J", "D"]], - "recondition": null, - "reconditioning": null, - "reconditions": null, - "reconditionings": null, - "reconditioned": null, - "conditioning": [["M"]], - "conditions": null, - "conditionings": null, - "conditioned": [["U"]], - "conditionals": null, - "conditional": [["U", "Y"]], - "unconditional": null, - "unconditionally": null, - "conditionally": null, - "unconditioned": null, - "conditioner": [["M", "S"]], - "conditioner's": null, - "conditioners": null, - "conditioning's": null, - "condition's": null, - "condole": null, - "condolence": [["M", "S"]], - "condolence's": null, - "condolences": null, - "condominium": [["M", "S"]], - "condominium's": null, - "condominiums": null, - "condom": [["S", "M"]], - "condoms": null, - "condom's": null, - "condone": [["G", "R", "S", "D"]], - "condoning": null, - "condoner": [["M"]], - "condones": null, - "condoned": null, - "condoner's": null, - "Condorcet": [["M"]], - "Condorcet's": null, - "condor": [["M", "S"]], - "condor's": null, - "condors": null, - "condo": [["S", "M"]], - "condos": null, - "condo's": null, - "conduce": [["V", "G", "S", "D"]], - "conducive": [["P"]], - "conducing": null, - "conduces": null, - "conduced": null, - "conduciveness": [["M"]], - "conduciveness's": null, - "conductance": [["S", "M"]], - "conductances": null, - "conductance's": null, - "conductibility": [["S", "M"]], - "conductibilities": null, - "conductibility's": null, - "conductible": null, - "conduction": [["M", "S"]], - "conduction's": null, - "conductions": null, - "conductive": [["Y"]], - "conductively": null, - "conductivity": [["M", "S"]], - "conductivity's": null, - "conductivities": null, - "conductor": [["M", "S"]], - "conductor's": null, - "conductors": null, - "conductress": [["M", "S"]], - "conductress's": null, - "conductresses": null, - "conduct": [["V"]], - "conduit": [["M", "S"]], - "conduit's": null, - "conduits": null, - "coneflower": [["M"]], - "coneflower's": null, - "Conestoga": null, - "coney's": null, - "confabbed": null, - "confabbing": null, - "confab": [["M", "S"]], - "confab's": null, - "confabs": null, - "confabulate": [["X", "S", "D", "G", "N"]], - "confabulations": null, - "confabulates": null, - "confabulated": null, - "confabulating": null, - "confabulation": [["M"]], - "confabulation's": null, - "confectioner": [["M"]], - "confectioner's": null, - "confectionery": [["S", "M"]], - "confectioneries": null, - "confectionery's": null, - "confectionist": null, - "confection": [["R", "D", "M", "G", "Z", "S"]], - "confectioned": null, - "confection's": null, - "confectioning": null, - "confectioners": null, - "confections": null, - "confect": [["S"]], - "confects": null, - "Confederacy": [["M"]], - "Confederacy's": null, - "confederacy": [["M", "S"]], - "confederacy's": null, - "confederacies": null, - "confederate": [["M"]], - "confederate's": null, - "Confederate": [["S"]], - "Confederates": null, - "conferee": [["M", "S"]], - "conferee's": null, - "conferees": null, - "conference": [["D", "S", "G", "M"]], - "conferenced": null, - "conferences": null, - "conferencing": null, - "conference's": null, - "conferrable": null, - "conferral": [["S", "M"]], - "conferrals": null, - "conferral's": null, - "conferred": null, - "conferrer": [["S", "M"]], - "conferrers": null, - "conferrer's": null, - "conferring": null, - "confer": [["S", "B"]], - "confers": null, - "conferable": null, - "confessed": [["Y"]], - "confessedly": null, - "confessional": [["S", "Y"]], - "confessionals": null, - "confessionally": null, - "confession": [["M", "S"]], - "confession's": null, - "confessions": null, - "confessor": [["S", "M"]], - "confessors": null, - "confessor's": null, - "confetti": [["M"]], - "confetti's": null, - "confidante": [["S", "M"]], - "confidantes": null, - "confidante's": null, - "confidant": [["S", "M"]], - "confidants": null, - "confidant's": null, - "confidence": [["S", "M"]], - "confidences": null, - "confidence's": null, - "confidentiality": [["M", "S"]], - "confidentiality's": null, - "confidentialities": null, - "confidentialness": [["M"]], - "confidentialness's": null, - "confidential": [["P", "Y"]], - "confidentially": null, - "confident": [["Y"]], - "confidently": null, - "confider": [["M"]], - "confider's": null, - "confide": [["Z", "G", "R", "S", "D"]], - "confiders": null, - "confiding": [["P", "Y"]], - "confides": null, - "confided": null, - "confidingness": null, - "confidingly": null, - "configuration": [["A", "S", "M"]], - "reconfiguration": null, - "reconfigurations": null, - "reconfiguration's": null, - "configurations": null, - "configuration's": null, - "configure": [["A", "G", "S", "D", "B"]], - "reconfigure": [["R"]], - "reconfiguring": null, - "reconfigures": null, - "reconfigured": null, - "reconfigurable": null, - "configuring": null, - "configures": null, - "configured": null, - "configurable": null, - "confined": [["U"]], - "unconfined": null, - "confine": [["L"]], - "confinement": [["M", "S"]], - "confinement's": null, - "confinements": null, - "confiner": [["M"]], - "confiner's": null, - "confirm": [["A", "G", "D", "S"]], - "reconfirm": null, - "reconfirming": null, - "reconfirmed": null, - "reconfirms": null, - "confirming": null, - "confirmed": [["Y", "P"]], - "confirms": null, - "confirmation": [["A", "S", "M"]], - "reconfirmation": null, - "reconfirmations": null, - "reconfirmation's": null, - "confirmations": null, - "confirmation's": null, - "confirmatory": null, - "confirmedness": [["M"]], - "confirmedness's": null, - "confirmedly": null, - "confiscate": [["D", "S", "G", "N", "X"]], - "confiscated": null, - "confiscates": null, - "confiscating": null, - "confiscation": [["M"]], - "confiscations": null, - "confiscation's": null, - "confiscator": [["M", "S"]], - "confiscator's": null, - "confiscators": null, - "confiscatory": null, - "conflagration": [["M", "S"]], - "conflagration's": null, - "conflagrations": null, - "conflate": [["N", "G", "S", "D", "X"]], - "conflation": [["M"]], - "conflating": null, - "conflates": null, - "conflated": null, - "conflations": null, - "conflation's": null, - "conflicting": [["Y"]], - "conflictingly": null, - "conflict": [["S", "V", "G", "D", "M"]], - "conflicts": null, - "conflictive": null, - "conflicted": null, - "conflict's": null, - "confluence": [["M", "S"]], - "confluence's": null, - "confluences": null, - "conformable": [["U"]], - "unconformable": null, - "conformal": null, - "conformance": [["S", "M"]], - "conformances": null, - "conformance's": null, - "conformational": [["Y"]], - "conformationally": null, - "conform": [["B"]], - "conformer": [["M"]], - "conformer's": null, - "conformism": [["S", "M"]], - "conformisms": null, - "conformism's": null, - "conformist": [["S", "M"]], - "conformists": null, - "conformist's": null, - "conformities": null, - "conformity": [["M", "U", "I"]], - "conformity's": null, - "unconformity's": null, - "inconformity's": null, - "unconformity": null, - "inconformity": null, - "confounded": [["Y"]], - "confoundedly": null, - "confound": [["R"]], - "confounder": null, - "confr�re": [["M", "S"]], - "confr�re's": null, - "confr�res": null, - "confrontational": null, - "confrontation": [["S", "M"]], - "confrontations": null, - "confrontation's": null, - "confronter": [["M"]], - "confronter's": null, - "confront": [["Z"]], - "confronters": null, - "Confucianism": [["S", "M"]], - "Confucianisms": null, - "Confucianism's": null, - "Confucian": [["S"]], - "Confucians": null, - "Confucius": [["M"]], - "Confucius's": null, - "confusedness": [["M"]], - "confusedness's": null, - "confused": [["P", "Y"]], - "confusedly": null, - "confuse": [["R", "B", "Z"]], - "confuser": null, - "confusable": null, - "confusers": null, - "confusing": [["Y"]], - "confusingly": null, - "confutation": [["M", "S"]], - "confutation's": null, - "confutations": null, - "confute": [["G", "R", "S", "D"]], - "confuting": null, - "confuter": [["M"]], - "confutes": null, - "confuted": null, - "confuter's": null, - "conga": [["M", "D", "G"]], - "conga's": null, - "congaed": null, - "congaing": null, - "congeal": [["G", "S", "D", "L"]], - "congealing": null, - "congeals": null, - "congealed": null, - "congealment": [["M", "S"]], - "congealment's": null, - "congealments": null, - "congeniality": [["U", "M"]], - "uncongeniality": null, - "uncongeniality's": null, - "congeniality's": null, - "congenial": [["U"]], - "uncongenial": null, - "congeries": [["M"]], - "congeries's": null, - "conger": [["S", "M"]], - "congers": null, - "conger's": null, - "congestion": [["M", "S"]], - "congestion's": null, - "congestions": null, - "congest": [["V", "G", "S", "D"]], - "congestive": null, - "congesting": null, - "congests": null, - "congested": null, - "conglomerate": [["X", "D", "S", "N", "G", "V", "M"]], - "conglomerations": null, - "conglomerated": null, - "conglomerates": null, - "conglomeration": [["M"]], - "conglomerating": null, - "conglomerative": null, - "conglomerate's": null, - "conglomeration's": null, - "Cong": [["M"]], - "Cong's": null, - "Congolese": null, - "Congo": [["M"]], - "Congo's": null, - "congrats": null, - "congratulate": [["N", "G", "X", "S", "D"]], - "congratulation": [["M"]], - "congratulating": null, - "congratulations": null, - "congratulates": null, - "congratulated": null, - "congratulation's": null, - "congratulatory": null, - "congregate": [["D", "S", "X", "G", "N"]], - "congregated": null, - "congregates": null, - "congregations": null, - "congregating": null, - "congregation": [["M"]], - "congregational": null, - "Congregational": null, - "congregationalism": [["M", "S"]], - "congregationalism's": null, - "congregationalisms": null, - "congregationalist": [["M", "S"]], - "congregationalist's": null, - "congregationalists": null, - "Congregationalist": [["S"]], - "Congregationalists": null, - "congregation's": null, - "congressional": [["Y"]], - "congressionally": null, - "congressman": [["M"]], - "congressman's": null, - "congressmen": null, - "Congress": [["M", "S"]], - "Congress's": null, - "Congresses": null, - "congress": [["M", "S", "D", "G"]], - "congress's": null, - "congresses": null, - "congressed": null, - "congressing": null, - "congresspeople": null, - "congressperson": [["S"]], - "congresspersons": null, - "congresswoman": [["M"]], - "congresswoman's": null, - "congresswomen": null, - "Congreve": [["M"]], - "Congreve's": null, - "congruence": [["I", "M"]], - "incongruence": null, - "incongruence's": null, - "congruence's": null, - "congruences": null, - "congruency": [["M"]], - "congruency's": null, - "congruential": null, - "congruent": [["Y", "I"]], - "congruently": null, - "incongruently": null, - "incongruent": null, - "congruity": [["M", "S", "I"]], - "congruity's": null, - "incongruity's": null, - "congruities": null, - "incongruities": null, - "incongruity": null, - "congruousness": [["I", "M"]], - "incongruousness": [["S"]], - "incongruousness's": null, - "congruousness's": null, - "congruous": [["Y", "I", "P"]], - "congruously": null, - "incongruously": null, - "incongruous": null, - "conicalness": [["M"]], - "conicalness's": null, - "conical": [["P", "S", "Y"]], - "conicals": null, - "conically": null, - "conic": [["S"]], - "conics": [["M"]], - "conics's": null, - "conifer": [["M", "S"]], - "conifer's": null, - "conifers": null, - "coniferous": null, - "conjectural": [["Y"]], - "conjecturally": null, - "conjecture": [["G", "M", "D", "R", "S"]], - "conjecturing": null, - "conjecture's": null, - "conjectured": null, - "conjecturer": [["M"]], - "conjectures": null, - "conjecturer's": null, - "conjoint": null, - "conjugacy": null, - "conjugal": [["Y"]], - "conjugally": null, - "conjugate": [["X", "V", "N", "G", "Y", "S", "D", "P"]], - "conjugations": null, - "conjugative": null, - "conjugation": [["M"]], - "conjugating": null, - "conjugately": null, - "conjugates": null, - "conjugated": null, - "conjugateness": null, - "conjugation's": null, - "conjunct": [["D", "S", "V"]], - "conjuncted": null, - "conjuncts": null, - "conjunctive": [["Y", "S"]], - "conjunctiva": [["M", "S"]], - "conjunctiva's": null, - "conjunctivas": null, - "conjunctively": null, - "conjunctives": null, - "conjunctivitis": [["S", "M"]], - "conjunctivitises": null, - "conjunctivitis's": null, - "conjuration": [["M", "S"]], - "conjuration's": null, - "conjurations": null, - "conjurer": [["M"]], - "conjurer's": null, - "conjure": [["R", "S", "D", "Z", "G"]], - "conjures": null, - "conjured": null, - "conjurers": null, - "conjuring": [["M"]], - "conjuring's": null, - "conker": [["M"]], - "conker's": null, - "conk": [["Z", "D", "R"]], - "conkers": null, - "conked": null, - "Conley": [["M"]], - "Conley's": null, - "Con": [["M"]], - "Con's": null, - "conman": null, - "connect": [["A", "D", "G", "E", "S"]], - "reconnect": [["R"]], - "reconnected": null, - "reconnecting": null, - "reconnects": null, - "connected": [["U"]], - "disconnected": [["P"]], - "connecting": null, - "disconnecting": null, - "disconnect": [["R"]], - "disconnects": null, - "connects": null, - "connectedly": [["E"]], - "disconnectedly": null, - "connectedness": [["M", "E"]], - "connectedness's": null, - "disconnectedness's": null, - "disconnectedness": [["S"]], - "unconnected": null, - "connectible": null, - "Connecticut": [["M"]], - "Connecticut's": null, - "connection": [["A", "M", "E"]], - "reconnection": null, - "reconnection's": null, - "connection's": null, - "disconnection's": null, - "disconnection": null, - "connectionless": null, - "connections": [["E"]], - "disconnections": null, - "connective": [["S", "Y", "M"]], - "connectives": null, - "connectively": null, - "connective's": null, - "connectivity": [["M", "S"]], - "connectivity's": null, - "connectivities": null, - "connector": [["M", "S"]], - "connector's": null, - "connectors": null, - "Connelly": [["M"]], - "Connelly's": null, - "Conner": [["M"]], - "Conner's": null, - "Connery": [["M"]], - "Connery's": null, - "connexion": [["M", "S"]], - "connexion's": null, - "connexions": null, - "Conney": [["M"]], - "Conney's": null, - "conn": [["G", "V", "D", "R"]], - "conning": null, - "connive": [["Z", "G", "R", "S", "D"]], - "conned": null, - "conner": null, - "Connie": [["M"]], - "Connie's": null, - "Conni": [["M"]], - "Conni's": null, - "conniption": [["M", "S"]], - "conniption's": null, - "conniptions": null, - "connivance": [["M", "S"]], - "connivance's": null, - "connivances": null, - "conniver": [["M"]], - "conniver's": null, - "connivers": null, - "conniving": null, - "connives": null, - "connived": null, - "connoisseur": [["M", "S"]], - "connoisseur's": null, - "connoisseurs": null, - "Connor": [["S", "M"]], - "Connors": null, - "Connor's": null, - "connotative": [["Y"]], - "connotatively": null, - "Conn": [["R", "M"]], - "Conn's": null, - "connubial": [["Y"]], - "connubially": null, - "Conny": [["M"]], - "Conny's": null, - "conquerable": [["U"]], - "unconquerable": null, - "conquered": [["A", "U"]], - "reconquered": null, - "unconquered": null, - "conqueror": [["M", "S"]], - "conqueror's": null, - "conquerors": null, - "conquer": [["R", "D", "S", "B", "Z", "G"]], - "conquerer": null, - "conquers": [["A"]], - "conquerers": null, - "conquering": null, - "reconquers": null, - "conquest": [["A", "S", "M"]], - "reconquest": null, - "reconquests": null, - "reconquest's": null, - "conquests": null, - "conquest's": null, - "conquistador": [["M", "S"]], - "conquistador's": null, - "conquistadors": null, - "Conrade": [["M"]], - "Conrade's": null, - "Conrad": [["M"]], - "Conrad's": null, - "Conrado": [["M"]], - "Conrado's": null, - "Conrail": [["M"]], - "Conrail's": null, - "Conroy": [["M"]], - "Conroy's": null, - "Consalve": [["M"]], - "Consalve's": null, - "consanguineous": [["Y"]], - "consanguineously": null, - "consanguinity": [["S", "M"]], - "consanguinities": null, - "consanguinity's": null, - "conscienceless": null, - "conscientiousness": [["M", "S"]], - "conscientiousness's": null, - "conscientiousnesses": null, - "conscientious": [["Y", "P"]], - "conscientiously": null, - "conscionable": [["U"]], - "unconscionable": [["P"]], - "consciousness": [["M", "U", "S"]], - "consciousness's": null, - "unconsciousness's": null, - "unconsciousness": null, - "unconsciousnesses": null, - "consciousnesses": null, - "conscious": [["U", "Y", "S", "P"]], - "unconscious": null, - "unconsciously": null, - "unconsciouses": null, - "consciously": null, - "consciouses": null, - "conscription": [["S", "M"]], - "conscriptions": null, - "conscription's": null, - "consecrated": [["A", "U"]], - "reconsecrated": null, - "unconsecrated": null, - "consecrates": [["A"]], - "reconsecrates": null, - "consecrate": [["X", "D", "S", "N", "G", "V"]], - "consecrations": null, - "consecration": [["A", "M", "S"]], - "consecrating": [["A"]], - "consecrative": null, - "reconsecrating": null, - "reconsecration": null, - "reconsecration's": null, - "reconsecrations": null, - "consecration's": null, - "consecutiveness": [["M"]], - "consecutiveness's": null, - "consecutive": [["Y", "P"]], - "consecutively": null, - "consensus": [["S", "M"]], - "consensuses": null, - "consensus's": null, - "consenter": [["M"]], - "consenter's": null, - "consenting": [["Y"]], - "consentingly": null, - "consent": [["S", "Z", "G", "R", "D"]], - "consents": null, - "consenters": null, - "consented": null, - "consequence": null, - "consequentiality": [["S"]], - "consequentialities": null, - "consequential": [["I", "Y"]], - "inconsequential": null, - "inconsequentially": null, - "consequentially": null, - "consequentialness": [["M"]], - "consequentialness's": null, - "consequently": [["I"]], - "inconsequently": null, - "consequent": [["P", "S", "Y"]], - "consequentness": null, - "consequents": null, - "conservancy": [["S", "M"]], - "conservancies": null, - "conservancy's": null, - "conservationism": null, - "conservationist": [["S", "M"]], - "conservationists": null, - "conservationist's": null, - "conservation": [["S", "M"]], - "conservations": null, - "conservation's": null, - "conservatism": [["S", "M"]], - "conservatisms": null, - "conservatism's": null, - "conservativeness": [["M"]], - "conservativeness's": null, - "Conservative": [["S"]], - "Conservatives": null, - "conservative": [["S", "Y", "P"]], - "conservatives": null, - "conservatively": null, - "conservator": [["M", "S"]], - "conservator's": null, - "conservators": null, - "conservatory": [["M", "S"]], - "conservatory's": null, - "conservatories": null, - "con": [["S", "G", "M"]], - "cons": null, - "coning": null, - "con's": null, - "considerable": [["I"]], - "inconsiderable": [["P"]], - "considerables": null, - "considerably": [["I"]], - "inconsiderably": null, - "considerateness": [["M", "S", "I"]], - "considerateness's": null, - "inconsiderateness's": null, - "consideratenesses": null, - "inconsideratenesses": null, - "inconsiderateness": null, - "considerate": [["X", "I", "P", "N", "Y"]], - "considerations": null, - "inconsiderations": null, - "inconsiderate": null, - "inconsideration": null, - "inconsiderately": null, - "consideration": [["A", "S", "M", "I"]], - "considerately": null, - "reconsideration": null, - "reconsiderations": null, - "reconsideration's": null, - "consideration's": null, - "inconsideration's": null, - "considered": [["U"]], - "unconsidered": null, - "considerer": [["M"]], - "considerer's": null, - "consider": [["G", "A", "S", "D"]], - "considering": [["S"]], - "reconsidering": null, - "reconsider": null, - "reconsiders": null, - "reconsidered": null, - "considers": null, - "considerings": null, - "consign": [["A", "S", "G", "D"]], - "reconsign": null, - "reconsigns": null, - "reconsigning": null, - "reconsigned": null, - "consigns": null, - "consigning": null, - "consigned": null, - "consignee": [["S", "M"]], - "consignees": null, - "consignee's": null, - "consignment": [["S", "M"]], - "consignments": null, - "consignment's": null, - "consist": [["D", "S", "G"]], - "consisted": null, - "consists": null, - "consisting": null, - "consistence": [["S"]], - "consistences": null, - "consistency": [["I", "M", "S"]], - "inconsistency": null, - "inconsistency's": null, - "inconsistencies": null, - "consistency's": null, - "consistencies": null, - "consistent": [["I", "Y"]], - "inconsistent": null, - "inconsistently": null, - "consistently": null, - "consistory": [["M", "S"]], - "consistory's": null, - "consistories": null, - "consolable": [["I"]], - "inconsolable": [["P"]], - "Consolata": [["M"]], - "Consolata's": null, - "consolation": [["M", "S"]], - "consolation's": [["E"]], - "consolations": null, - "disconsolation's": null, - "consolatory": null, - "consoled": [["U"]], - "unconsoled": null, - "consoler": [["M"]], - "consoler's": null, - "console": [["Z", "B", "G"]], - "consolers": null, - "consoling": [["Y"]], - "consolidated": [["A", "U"]], - "reconsolidated": null, - "unconsolidated": null, - "consolidate": [["N", "G", "D", "S", "X"]], - "consolidation": [["M"]], - "consolidating": null, - "consolidates": [["A"]], - "consolidations": null, - "reconsolidates": null, - "consolidation's": null, - "consolidator": [["S", "M"]], - "consolidators": null, - "consolidator's": null, - "consolingly": null, - "consomm�": [["S"]], - "consomm�s": null, - "consonance": [["I", "M"]], - "inconsonance": null, - "inconsonance's": null, - "consonance's": null, - "consonances": null, - "consonantal": null, - "consonant": [["M", "Y", "S"]], - "consonant's": null, - "consonantly": null, - "consonants": null, - "consortia": null, - "consortium": [["M"]], - "consortium's": null, - "conspectus": [["M", "S"]], - "conspectus's": null, - "conspectuses": null, - "conspicuousness": [["I", "M", "S"]], - "inconspicuousness": null, - "inconspicuousness's": null, - "inconspicuousnesses": null, - "conspicuousness's": null, - "conspicuousnesses": null, - "conspicuous": [["Y", "I", "P"]], - "conspicuously": null, - "inconspicuously": null, - "inconspicuous": null, - "conspiracy": [["M", "S"]], - "conspiracy's": null, - "conspiracies": null, - "conspiratorial": [["Y"]], - "conspiratorially": null, - "conspirator": [["S", "M"]], - "conspirators": null, - "conspirator's": null, - "constable": null, - "Constable": [["M"]], - "Constable's": null, - "constabulary": [["M", "S"]], - "constabulary's": null, - "constabularies": null, - "constance": null, - "Constance": [["M"]], - "Constance's": null, - "Constancia": [["M"]], - "Constancia's": null, - "constancy": [["I", "M", "S"]], - "inconstancy": null, - "inconstancy's": null, - "inconstancies": null, - "constancy's": null, - "constancies": null, - "Constancy": [["M"]], - "Constancy's": null, - "Constanta": [["M"]], - "Constanta's": null, - "Constantia": [["M"]], - "Constantia's": null, - "Constantina": [["M"]], - "Constantina's": null, - "Constantine": [["M"]], - "Constantine's": null, - "Constantin": [["M"]], - "Constantin's": null, - "Constantino": [["M"]], - "Constantino's": null, - "Constantinople": [["M"]], - "Constantinople's": null, - "constant": [["I", "Y"]], - "inconstant": null, - "inconstantly": null, - "constantly": null, - "constants": null, - "constellation": [["S", "M"]], - "constellations": null, - "constellation's": null, - "consternate": [["X", "N", "G", "S", "D"]], - "consternations": null, - "consternation": [["M"]], - "consternating": null, - "consternates": null, - "consternated": null, - "consternation's": null, - "constipate": [["X", "D", "S", "N", "G"]], - "constipations": null, - "constipated": null, - "constipates": null, - "constipation": [["M"]], - "constipating": null, - "constipation's": null, - "constituency": [["M", "S"]], - "constituency's": null, - "constituencies": null, - "constituent": [["S", "Y", "M"]], - "constituents": null, - "constituently": null, - "constituent's": null, - "constituted": [["A"]], - "reconstituted": null, - "constitute": [["N", "G", "V", "X", "D", "S"]], - "constitution": [["A", "M", "S"]], - "constituting": [["A"]], - "constitutive": [["Y"]], - "constitutions": null, - "constitutes": [["A"]], - "reconstitutes": null, - "reconstituting": null, - "Constitution": null, - "constitutionality's": null, - "constitutionality": [["U", "S"]], - "unconstitutionality": null, - "unconstitutionalities": null, - "constitutionalities": null, - "constitutionally": [["U"]], - "unconstitutionally": null, - "constitutional": [["S", "Y"]], - "constitutionals": null, - "reconstitution": null, - "reconstitution's": null, - "reconstitutions": null, - "constitution's": null, - "constitutively": null, - "constrain": null, - "constrainedly": null, - "constrained": [["U"]], - "unconstrained": null, - "constraint": [["M", "S"]], - "constraint's": null, - "constraints": null, - "constriction": [["M", "S"]], - "constriction's": null, - "constrictions": null, - "constrictor": [["M", "S"]], - "constrictor's": null, - "constrictors": null, - "constrict": [["S", "D", "G", "V"]], - "constricts": null, - "constricted": null, - "constricting": null, - "constrictive": null, - "construable": null, - "construct": [["A", "S", "D", "G", "V"]], - "reconstruct": null, - "reconstructs": null, - "reconstructed": [["U"]], - "reconstructing": null, - "constructs": null, - "constructed": null, - "constructing": null, - "constructive": [["Y", "P"]], - "constructibility": null, - "constructible": [["A"]], - "reconstructible": null, - "constructional": [["Y"]], - "constructionally": null, - "constructionist": [["M", "S"]], - "constructionist's": null, - "constructionists": null, - "construction": [["M", "A", "S"]], - "construction's": null, - "reconstruction's": null, - "reconstruction": null, - "reconstructions": null, - "constructions": [["C"]], - "deconstructions": null, - "constructiveness": [["S", "M"]], - "constructivenesses": null, - "constructiveness's": null, - "constructively": null, - "constructor": [["M", "S"]], - "constructor's": null, - "constructors": null, - "construe": [["G", "S", "D"]], - "construing": null, - "construes": null, - "construed": null, - "Consuela": [["M"]], - "Consuela's": null, - "Consuelo": [["M"]], - "Consuelo's": null, - "consular": [["S"]], - "consulars": null, - "consulate": [["M", "S"]], - "consulate's": null, - "consulates": null, - "consul": [["K", "M", "S"]], - "proconsul": null, - "proconsul's": null, - "proconsuls": null, - "consul's": null, - "consuls": null, - "consulship": [["M", "S"]], - "consulship's": null, - "consulships": null, - "consultancy": [["S"]], - "consultancies": null, - "consultant": [["M", "S"]], - "consultant's": null, - "consultants": null, - "consultation": [["S", "M"]], - "consultations": null, - "consultation's": null, - "consultative": null, - "consulted": [["A"]], - "reconsulted": null, - "consulter": [["M"]], - "consulter's": null, - "consult": [["R", "D", "V", "G", "S"]], - "consultive": null, - "consulting": null, - "consults": null, - "consumable": [["S"]], - "consumables": null, - "consumed": [["Y"]], - "consumedly": null, - "consume": [["J", "Z", "G", "S", "D", "B"]], - "consumings": null, - "consumers": null, - "consuming": [["Y"]], - "consumes": null, - "consumerism": [["M", "S"]], - "consumerism's": null, - "consumerisms": null, - "consumerist": [["S"]], - "consumerists": null, - "consumer": [["M"]], - "consumer's": null, - "consumingly": null, - "consummate": [["D", "S", "G", "V", "Y"]], - "consummated": [["U"]], - "consummates": null, - "consummating": null, - "consummative": null, - "consummately": null, - "unconsummated": null, - "consumption": [["S", "M"]], - "consumptions": null, - "consumption's": null, - "consumptive": [["Y", "S"]], - "consumptively": null, - "consumptives": null, - "cont": null, - "contact": [["B", "G", "D"]], - "contactable": null, - "contacting": null, - "contacted": [["A"]], - "recontacted": null, - "contact's": [["A"]], - "recontact's": null, - "contacts": [["A"]], - "recontacts": null, - "contagion": [["S", "M"]], - "contagions": null, - "contagion's": null, - "contagiousness": [["M", "S"]], - "contagiousness's": null, - "contagiousnesses": null, - "contagious": [["Y", "P"]], - "contagiously": null, - "containerization": [["S", "M"]], - "containerizations": null, - "containerization's": null, - "containerize": [["G", "S", "D"]], - "containerizing": null, - "containerizes": null, - "containerized": null, - "container": [["M"]], - "container's": null, - "containment": [["S", "M"]], - "containments": null, - "containment's": null, - "contain": [["S", "L", "Z", "G", "B", "R", "D"]], - "contains": null, - "containers": null, - "containing": null, - "containable": null, - "contained": null, - "contaminant": [["S", "M"]], - "contaminants": null, - "contaminant's": null, - "contaminated": [["A", "U"]], - "recontaminated": null, - "uncontaminated": null, - "contaminates": [["A"]], - "recontaminates": null, - "contaminate": [["S", "D", "C", "X", "N", "G"]], - "decontaminates": null, - "decontaminated": null, - "decontaminate": null, - "decontaminations": null, - "decontamination": null, - "decontaminating": null, - "contaminations": null, - "contamination": [["C", "M"]], - "contaminating": [["A"]], - "recontaminating": null, - "decontamination's": null, - "contamination's": null, - "contaminative": null, - "contaminator": [["M", "S"]], - "contaminator's": null, - "contaminators": null, - "contd": null, - "cont'd": null, - "contemn": [["S", "G", "D"]], - "contemns": null, - "contemning": null, - "contemned": null, - "contemplate": [["D", "V", "N", "G", "X"]], - "contemplated": null, - "contemplative": [["P", "S", "Y"]], - "contemplation": [["M"]], - "contemplating": null, - "contemplations": null, - "contemplation's": null, - "contemplativeness": [["M"]], - "contemplativeness's": null, - "contemplatives": null, - "contemplatively": null, - "contemporaneity": [["M", "S"]], - "contemporaneity's": null, - "contemporaneities": null, - "contemporaneousness": [["M"]], - "contemporaneousness's": null, - "contemporaneous": [["P", "Y"]], - "contemporaneously": null, - "contemptibleness": [["M"]], - "contemptibleness's": null, - "contemptible": [["P"]], - "contemptibly": null, - "contempt": [["M"]], - "contempt's": null, - "contemptuousness": [["S", "M"]], - "contemptuousnesses": null, - "contemptuousness's": null, - "contemptuous": [["P", "Y"]], - "contemptuously": null, - "contentedly": [["E"]], - "discontentedly": null, - "contentedness": [["S", "M"]], - "contentednesses": null, - "contentedness's": null, - "contented": [["Y", "P"]], - "content": [["E", "M", "D", "L", "S", "G"]], - "discontent": null, - "discontent's": null, - "discontented": null, - "discontentment": null, - "discontents": null, - "discontenting": null, - "content's": null, - "contentment": [["E", "S"]], - "contents": null, - "contenting": null, - "contention": [["M", "S"]], - "contention's": null, - "contentions": null, - "contentiousness": [["S", "M"]], - "contentiousnesses": null, - "contentiousness's": null, - "contentious": [["P", "Y"]], - "contentiously": null, - "contently": null, - "discontentments": null, - "contentments": null, - "contentment's": null, - "conterminous": [["Y"]], - "conterminously": null, - "contestable": [["I"]], - "incontestable": null, - "contestant": [["S", "M"]], - "contestants": null, - "contestant's": null, - "contested": [["U"]], - "uncontested": null, - "contextualize": [["G", "D", "S"]], - "contextualizing": null, - "contextualized": null, - "contextualizes": null, - "contiguity": [["M", "S"]], - "contiguity's": null, - "contiguities": null, - "contiguousness": [["M"]], - "contiguousness's": null, - "contiguous": [["Y", "P"]], - "contiguously": null, - "continence": [["I", "S", "M"]], - "incontinence": null, - "incontinences": null, - "incontinence's": null, - "continences": null, - "continence's": null, - "Continental": [["S"]], - "Continentals": null, - "continental": [["S", "Y"]], - "continentals": null, - "continentally": null, - "continent": [["I", "Y"]], - "incontinent": null, - "incontinently": null, - "continently": null, - "Continent": [["M"]], - "Continent's": null, - "continents": null, - "continent's": null, - "contingency": [["S", "M"]], - "contingencies": null, - "contingency's": null, - "contingent": [["S", "M", "Y"]], - "contingents": null, - "contingent's": null, - "contingently": null, - "continua": null, - "continuable": null, - "continual": [["Y"]], - "continually": null, - "continuance": [["E", "S", "M"]], - "discontinuance": null, - "discontinuances": null, - "discontinuance's": null, - "continuances": null, - "continuance's": null, - "continuant": [["M"]], - "continuant's": null, - "continuation": [["E", "S", "M"]], - "discontinuation": null, - "discontinuations": null, - "discontinuation's": null, - "continuations": null, - "continuation's": null, - "continue": [["E", "S", "D", "G"]], - "discontinue": null, - "discontinues": null, - "discontinued": null, - "discontinuing": null, - "continues": null, - "continued": null, - "continuing": null, - "continuer": [["M"]], - "continuer's": null, - "continuity": [["S", "E", "M"]], - "continuities": null, - "discontinuities": null, - "discontinuity": null, - "discontinuity's": null, - "continuity's": null, - "continuousness": [["M"]], - "continuousness's": null, - "continuous": [["Y", "E"]], - "continuously": null, - "discontinuously": null, - "discontinuous": null, - "continuum": [["M"]], - "continuum's": null, - "contortionist": [["S", "M"]], - "contortionists": null, - "contortionist's": null, - "contortion": [["M", "S"]], - "contortion's": null, - "contortions": null, - "contort": [["V", "G", "D"]], - "contortive": null, - "contorting": null, - "contorted": null, - "contour": null, - "contraband": [["S", "M"]], - "contrabands": null, - "contraband's": null, - "contrabass": [["M"]], - "contrabass's": null, - "contraception": [["S", "M"]], - "contraceptions": null, - "contraception's": null, - "contraceptive": [["S"]], - "contraceptives": null, - "contract": [["D", "G"]], - "contracted": null, - "contracting": null, - "contractible": null, - "contractile": null, - "contractual": [["Y"]], - "contractually": null, - "contradict": [["G", "D", "S"]], - "contradicting": null, - "contradicted": null, - "contradicts": null, - "contradiction": [["M", "S"]], - "contradiction's": null, - "contradictions": null, - "contradictorily": null, - "contradictoriness": [["M"]], - "contradictoriness's": null, - "contradictory": [["P", "S"]], - "contradictories": null, - "contradistinction": [["M", "S"]], - "contradistinction's": null, - "contradistinctions": null, - "contraflow": [["S"]], - "contraflows": null, - "contrail": [["M"]], - "contrail's": null, - "contraindicate": [["S", "D", "V", "N", "G", "X"]], - "contraindicates": null, - "contraindicated": null, - "contraindicative": null, - "contraindication": [["M"]], - "contraindicating": null, - "contraindications": null, - "contraindication's": null, - "contralto": [["S", "M"]], - "contraltos": null, - "contralto's": null, - "contrapositive": [["S"]], - "contrapositives": null, - "contraption": [["M", "S"]], - "contraption's": null, - "contraptions": null, - "contrapuntal": [["Y"]], - "contrapuntally": null, - "contrariety": [["M", "S"]], - "contrariety's": null, - "contrarieties": null, - "contrarily": null, - "contrariness": [["M", "S"]], - "contrariness's": null, - "contrarinesses": null, - "contrariwise": null, - "contrary": [["P", "S"]], - "contraries": null, - "contra": [["S"]], - "contras": null, - "contrasting": [["Y"]], - "contrastingly": null, - "contrastive": [["Y"]], - "contrastively": null, - "contrast": [["S", "R", "D", "V", "G", "Z"]], - "contrasts": null, - "contraster": null, - "contrasted": null, - "contrasters": null, - "contravene": [["G", "S", "R", "D"]], - "contravening": null, - "contravenes": null, - "contravener": [["M"]], - "contravened": null, - "contravener's": null, - "contravention": [["M", "S"]], - "contravention's": null, - "contraventions": null, - "Contreras": [["M"]], - "Contreras's": null, - "contretemps": [["M"]], - "contretemps's": null, - "contribute": [["X", "V", "N", "Z", "R", "D"]], - "contributions": null, - "contributive": [["Y"]], - "contribution": [["M"]], - "contributers": null, - "contributer": null, - "contributed": null, - "contribution's": null, - "contributively": null, - "contributorily": null, - "contributor": [["S", "M"]], - "contributors": null, - "contributor's": null, - "contributory": [["S"]], - "contributories": null, - "contriteness": [["M"]], - "contriteness's": null, - "contrite": [["N", "X", "P"]], - "contrition": [["M"]], - "contritions": null, - "contrition's": null, - "contrivance": [["S", "M"]], - "contrivances": null, - "contrivance's": null, - "contriver": [["M"]], - "contriver's": null, - "contrive": [["Z", "G", "R", "S", "D"]], - "contrivers": null, - "contriving": null, - "contrives": null, - "contrived": null, - "control": [["C", "S"]], - "decontrol": null, - "decontrols": null, - "controls": null, - "controllability": [["M"]], - "controllability's": null, - "controllable": [["I", "U"]], - "incontrollable": null, - "uncontrollable": null, - "controllably": [["U"]], - "uncontrollably": null, - "controlled": [["C", "U"]], - "decontrolled": null, - "uncontrolled": null, - "controller": [["S", "M"]], - "controllers": null, - "controller's": null, - "controlling": [["C"]], - "decontrolling": null, - "control's": null, - "controversialists": null, - "controversial": [["U", "Y"]], - "uncontroversial": null, - "uncontroversially": null, - "controversially": null, - "controversy": [["M", "S"]], - "controversy's": null, - "controversies": null, - "controvert": [["D", "G", "S"]], - "controverted": null, - "controverting": null, - "controverts": null, - "controvertible": [["I"]], - "incontrovertible": null, - "contumacious": [["Y"]], - "contumaciously": null, - "contumacy": [["M", "S"]], - "contumacy's": null, - "contumacies": null, - "contumelious": null, - "contumely": [["M", "S"]], - "contumely's": null, - "contumelies": null, - "contuse": [["N", "G", "X", "S", "D"]], - "contusion": [["M"]], - "contusing": null, - "contusions": null, - "contuses": null, - "contused": null, - "contusion's": null, - "conundrum": [["S", "M"]], - "conundrums": null, - "conundrum's": null, - "conurbation": [["M", "S"]], - "conurbation's": null, - "conurbations": null, - "convalesce": [["G", "D", "S"]], - "convalescing": null, - "convalesced": null, - "convalesces": null, - "convalescence": [["S", "M"]], - "convalescences": null, - "convalescence's": null, - "convalescent": [["S"]], - "convalescents": null, - "convect": [["D", "S", "V", "G"]], - "convected": null, - "convects": null, - "convective": null, - "convecting": null, - "convectional": null, - "convection": [["M", "S"]], - "convection's": null, - "convections": null, - "convector": null, - "convene": [["A", "S", "D", "G"]], - "reconvene": null, - "reconvenes": null, - "reconvened": null, - "reconvening": null, - "convenes": null, - "convened": null, - "convening": null, - "convener": [["M", "S"]], - "convener's": null, - "conveners": null, - "convenience": [["I", "S", "M"]], - "inconvenience": [["D", "G"]], - "inconveniences": null, - "inconvenience's": null, - "conveniences": null, - "convenience's": null, - "convenient": [["I", "Y"]], - "inconvenient": null, - "inconveniently": null, - "conveniently": null, - "conventicle": [["S", "M"]], - "conventicles": null, - "conventicle's": null, - "conventionalism": [["M"]], - "conventionalism's": null, - "conventionalist": [["M"]], - "conventionalist's": null, - "conventionality": [["S", "U", "M"]], - "conventionalities": null, - "unconventionalities": null, - "unconventionality": null, - "unconventionality's": null, - "conventionality's": null, - "conventionalize": [["G", "D", "S"]], - "conventionalizing": null, - "conventionalized": null, - "conventionalizes": null, - "conventional": [["U", "Y"]], - "unconventional": null, - "unconventionally": null, - "conventionally": null, - "convention": [["M", "A"]], - "convention's": null, - "reconvention's": null, - "reconvention": null, - "conventions": null, - "convergence": [["M", "S"]], - "convergence's": null, - "convergences": null, - "convergent": null, - "conversant": [["Y"]], - "conversantly": null, - "conversationalist": [["S", "M"]], - "conversationalists": null, - "conversationalist's": null, - "conversational": [["Y"]], - "conversationally": null, - "conversation": [["S", "M"]], - "conversations": null, - "conversation's": null, - "conversazione": [["M"]], - "conversazione's": null, - "converse": [["Y"]], - "conversely": null, - "conversion": [["A", "M"]], - "reconversion": null, - "reconversion's": null, - "conversion's": null, - "conversioning": null, - "converted": [["U"]], - "unconverted": null, - "converter": [["M", "S"]], - "converter's": null, - "converters": null, - "convert": [["G", "A", "D", "S"]], - "converting": null, - "reconverting": null, - "reconvert": null, - "reconverted": null, - "reconverts": null, - "converts": null, - "convertibility's": [["I"]], - "inconvertibility's": null, - "convertibility": [["S", "M"]], - "convertibilities": null, - "convertibleness": [["M"]], - "convertibleness's": null, - "convertible": [["P", "S"]], - "convertibles": null, - "convexity": [["M", "S"]], - "convexity's": null, - "convexities": null, - "convex": [["Y"]], - "convexly": null, - "conveyance": [["D", "R", "S", "G", "M", "Z"]], - "conveyanced": null, - "conveyancer": [["M"]], - "conveyances": null, - "conveyancing": [["M"]], - "conveyance's": null, - "conveyancers": null, - "conveyancer's": null, - "conveyancing's": null, - "convey": [["B", "D", "G", "S"]], - "conveyable": null, - "conveyed": null, - "conveying": null, - "conveys": null, - "conveyor": [["M", "S"]], - "conveyor's": null, - "conveyors": null, - "conviction": [["M", "S"]], - "conviction's": null, - "convictions": null, - "convict": [["S", "V", "G", "D"]], - "convicts": null, - "convictive": null, - "convicting": null, - "convicted": null, - "convinced": [["U"]], - "unconvinced": null, - "convincer": [["M"]], - "convincer's": null, - "convince": [["R", "S", "D", "Z", "G"]], - "convinces": null, - "convincers": null, - "convincing": [["P", "U", "Y"]], - "convincingness": [["M"]], - "convincingness's": null, - "unconvincingness": null, - "unconvincing": null, - "unconvincingly": null, - "convincingly": null, - "conviviality": [["M", "S"]], - "conviviality's": null, - "convivialities": null, - "convivial": [["Y"]], - "convivially": null, - "convoke": [["G", "S", "D"]], - "convoking": null, - "convokes": null, - "convoked": null, - "convolute": [["X", "D", "N", "Y"]], - "convolutions": null, - "convoluted": null, - "convolution": [["M"]], - "convolutely": null, - "convolution's": null, - "convolve": [["C"]], - "deconvolve": null, - "convolved": null, - "convolves": null, - "convolving": null, - "convoy": [["G", "M", "D", "S"]], - "convoying": null, - "convoy's": null, - "convoyed": null, - "convoys": null, - "convulse": [["S", "D", "X", "V", "N", "G"]], - "convulses": null, - "convulsed": null, - "convulsions": null, - "convulsive": [["Y", "P"]], - "convulsion": [["M"]], - "convulsing": null, - "convulsion's": null, - "convulsiveness": [["M"]], - "convulsiveness's": null, - "convulsively": null, - "Conway": [["M"]], - "Conway's": null, - "cony": [["S", "M"]], - "conies": null, - "cony's": null, - "coo": [["G", "S", "D"]], - "cooing": null, - "coos": null, - "cooed": null, - "cookbook": [["S", "M"]], - "cookbooks": null, - "cookbook's": null, - "cooked": [["A", "U"]], - "recooked": null, - "uncooked": null, - "Cooke": [["M"]], - "Cooke's": null, - "cooker": [["M"]], - "cooker's": null, - "cookery": [["M", "S"]], - "cookery's": null, - "cookeries": null, - "cook": [["G", "Z", "D", "R", "M", "J", "S"]], - "cooking": [["M"]], - "cookers": null, - "cook's": null, - "cookings": null, - "cooks": [["A"]], - "Cookie": [["M"]], - "Cookie's": null, - "cookie": [["S", "M"]], - "cookies": null, - "cookie's": null, - "cooking's": null, - "Cook": [["M"]], - "Cook's": null, - "cookout": [["S", "M"]], - "cookouts": null, - "cookout's": null, - "recooks": null, - "cookware": [["S", "M"]], - "cookwares": null, - "cookware's": null, - "cooky's": null, - "coolant": [["S", "M"]], - "coolants": null, - "coolant's": null, - "cooled": [["U"]], - "uncooled": null, - "cooler": [["M"]], - "cooler's": null, - "Cooley": [["M"]], - "Cooley's": null, - "coolheaded": null, - "Coolidge": [["M"]], - "Coolidge's": null, - "coolie": [["M", "S"]], - "coolie's": null, - "coolies": null, - "coolness": [["M", "S"]], - "coolness's": null, - "coolnesses": null, - "cool": [["Y", "D", "R", "P", "J", "G", "Z", "T", "S"]], - "coolly": null, - "coolings": null, - "cooling": null, - "coolers": null, - "coolest": null, - "cools": null, - "coon": [["M", "S", "!"]], - "coon's": null, - "coons": null, - "coonskin": [["M", "S"]], - "coonskin's": null, - "coonskins": null, - "cooperage": [["M", "S"]], - "cooperage's": null, - "cooperages": null, - "cooperate": [["V", "N", "G", "X", "S", "D"]], - "cooperative": [["P", "S", "Y"]], - "cooperation": [["M"]], - "cooperating": null, - "cooperations": null, - "cooperates": null, - "cooperated": null, - "cooperation's": null, - "cooperativeness": [["S", "M"]], - "cooperativenesses": null, - "cooperativeness's": null, - "cooperatives": null, - "cooperatively": null, - "cooperator": [["M", "S"]], - "cooperator's": null, - "cooperators": null, - "cooper": [["G", "D", "M"]], - "coopering": null, - "coopered": null, - "cooper's": null, - "Cooper": [["M"]], - "Cooper's": null, - "coop": [["M", "D", "R", "G", "Z", "S"]], - "coop's": null, - "cooped": null, - "cooping": null, - "coopers": null, - "coops": null, - "Coop": [["M", "R"]], - "Coop's": null, - "coordinated": [["U"]], - "uncoordinated": null, - "coordinateness": [["M"]], - "coordinateness's": null, - "coordinate": [["X", "N", "G", "V", "Y", "P", "D", "S"]], - "coordinations": null, - "coordination": [["M"]], - "coordinating": null, - "coordinative": null, - "coordinately": null, - "coordinates": null, - "coordination's": null, - "coordinator": [["M", "S"]], - "coordinator's": null, - "coordinators": null, - "Coors": [["M"]], - "Coors's": null, - "cootie": [["S", "M"]], - "cooties": null, - "cootie's": null, - "coot": [["M", "S"]], - "coot's": null, - "coots": null, - "copay": [["S"]], - "copays": null, - "Copeland": [["M"]], - "Copeland's": null, - "Copenhagen": [["M"]], - "Copenhagen's": null, - "coper": [["M"]], - "coper's": null, - "Copernican": null, - "Copernicus": [["M"]], - "Copernicus's": null, - "cope": [["S"]], - "copes": null, - "copied": [["A"]], - "recopied": null, - "copier": [["M"]], - "copier's": null, - "copies": [["A"]], - "recopies": null, - "copilot": [["S", "M"]], - "copilots": null, - "copilot's": null, - "coping": [["M"]], - "coping's": null, - "copiousness": [["S", "M"]], - "copiousnesses": null, - "copiousness's": null, - "copious": [["Y", "P"]], - "copiously": null, - "coplanar": null, - "Copland": [["M"]], - "Copland's": null, - "Copley": [["M"]], - "Copley's": null, - "copolymer": [["M", "S"]], - "copolymer's": null, - "copolymers": null, - "copora": null, - "copped": null, - "Copperfield": [["M"]], - "Copperfield's": null, - "copperhead": [["M", "S"]], - "copperhead's": null, - "copperheads": null, - "copper": [["M", "S", "G", "D"]], - "copper's": null, - "coppers": null, - "coppering": null, - "coppered": null, - "copperplate": [["M", "S"]], - "copperplate's": null, - "copperplates": null, - "coppersmith": [["M"]], - "coppersmith's": null, - "coppersmiths": null, - "coppery": null, - "coppice's": null, - "copping": null, - "Coppola": [["M"]], - "Coppola's": null, - "copra": [["M", "S"]], - "copra's": null, - "copras": null, - "coprolite": [["M"]], - "coprolite's": null, - "coprophagous": null, - "copse": [["M"]], - "copse's": null, - "cops": [["G", "D", "S"]], - "copsing": null, - "copsed": null, - "copses": null, - "cop": [["S", "J", "M", "D", "R", "G"]], - "copings": null, - "cop's": null, - "coped": null, - "copter": [["S", "M"]], - "copters": null, - "copter's": null, - "Coptic": [["M"]], - "Coptic's": null, - "copula": [["M", "S"]], - "copula's": null, - "copulas": null, - "copulate": [["X", "D", "S", "N", "G", "V"]], - "copulations": null, - "copulated": null, - "copulates": null, - "copulation": [["M"]], - "copulating": null, - "copulative": [["S"]], - "copulation's": null, - "copulatives": null, - "copybook": [["M", "S"]], - "copybook's": null, - "copybooks": null, - "copycat": [["S", "M"]], - "copycats": null, - "copycat's": null, - "copycatted": null, - "copycatting": null, - "copyist": [["S", "M"]], - "copyists": null, - "copyist's": null, - "copy": [["M", "Z", "B", "D", "S", "R", "G"]], - "copy's": null, - "copiers": null, - "copyable": null, - "copying": null, - "copyrighter": [["M"]], - "copyrighter's": null, - "copyright": [["M", "S", "R", "D", "G", "Z"]], - "copyright's": null, - "copyrights": null, - "copyrighted": null, - "copyrighting": null, - "copyrighters": null, - "copywriter": [["M", "S"]], - "copywriter's": null, - "copywriters": null, - "coquetry": [["M", "S"]], - "coquetry's": null, - "coquetries": null, - "coquette": [["D", "S", "M", "G"]], - "coquetted": null, - "coquettes": null, - "coquette's": null, - "coquetting": null, - "coquettish": [["Y"]], - "coquettishly": null, - "Corabella": [["M"]], - "Corabella's": null, - "Corabelle": [["M"]], - "Corabelle's": null, - "Corabel": [["M"]], - "Corabel's": null, - "coracle": [["S", "M"]], - "coracles": null, - "coracle's": null, - "Coralie": [["M"]], - "Coralie's": null, - "Coraline": [["M"]], - "Coraline's": null, - "coralline": null, - "Coral": [["M"]], - "Coral's": null, - "coral": [["S", "M"]], - "corals": null, - "coral's": null, - "Coralyn": [["M"]], - "Coralyn's": null, - "Cora": [["M"]], - "Cora's": null, - "corbel": [["G", "M", "D", "J", "S"]], - "corbeling": null, - "corbel's": null, - "corbeled": null, - "corbelings": null, - "corbels": null, - "Corbet": [["M"]], - "Corbet's": null, - "Corbett": [["M"]], - "Corbett's": null, - "Corbie": [["M"]], - "Corbie's": null, - "Corbin": [["M"]], - "Corbin's": null, - "Corby": [["M"]], - "Corby's": null, - "cordage": [["M", "S"]], - "cordage's": null, - "cordages": null, - "corded": [["A", "E"]], - "recorded": [["A", "U"]], - "discorded": null, - "Cordelia": [["M"]], - "Cordelia's": null, - "Cordelie": [["M"]], - "Cordelie's": null, - "Cordell": [["M"]], - "Cordell's": null, - "corder": [["A", "M"]], - "recorder": null, - "recorder's": null, - "corder's": null, - "Cordey": [["M"]], - "Cordey's": null, - "cord": [["F", "S", "A", "E", "M"]], - "concord": null, - "concords": null, - "concord's": null, - "cords": null, - "records": [["A"]], - "discords": null, - "record": [["Z", "G", "J"]], - "record's": null, - "discord": [["G"]], - "discord's": null, - "cord's": null, - "cordiality": [["M", "S"]], - "cordiality's": null, - "cordialities": null, - "cordialness": [["M"]], - "cordialness's": null, - "cordial": [["P", "Y", "S"]], - "cordially": null, - "cordials": null, - "Cordie": [["M"]], - "Cordie's": null, - "cordillera": [["M", "S"]], - "cordillera's": null, - "cordilleras": null, - "Cordilleras": null, - "Cordi": [["M"]], - "Cordi's": null, - "cording": [["M", "A"]], - "cording's": null, - "recording's": null, - "recording": null, - "cordite": [["M", "S"]], - "cordite's": null, - "cordites": null, - "cordless": null, - "Cord": [["M"]], - "Cord's": null, - "Cordoba": null, - "cordon": [["D", "M", "S", "G"]], - "cordoned": null, - "cordon's": null, - "cordons": null, - "cordoning": null, - "cordovan": [["S", "M"]], - "cordovans": null, - "cordovan's": null, - "Cordula": [["M"]], - "Cordula's": null, - "corduroy": [["G", "D", "M", "S"]], - "corduroying": null, - "corduroyed": null, - "corduroy's": null, - "corduroys": null, - "Cordy": [["M"]], - "Cordy's": null, - "cored": [["A"]], - "recored": null, - "Coreen": [["M"]], - "Coreen's": null, - "Corella": [["M"]], - "Corella's": null, - "core": [["M", "Z", "G", "D", "R", "S"]], - "core's": null, - "corers": null, - "coring": [["M"]], - "corer": [["M"]], - "cores": null, - "Corenda": [["M"]], - "Corenda's": null, - "Corene": [["M"]], - "Corene's": null, - "corer's": null, - "corespondent": [["M", "S"]], - "corespondent's": null, - "corespondents": null, - "Coretta": [["M"]], - "Coretta's": null, - "Corette": [["M"]], - "Corette's": null, - "Corey": [["M"]], - "Corey's": null, - "Corfu": [["M"]], - "Corfu's": null, - "corgi": [["M", "S"]], - "corgi's": null, - "corgis": null, - "coriander": [["S", "M"]], - "corianders": null, - "coriander's": null, - "Corie": [["M"]], - "Corie's": null, - "Corilla": [["M"]], - "Corilla's": null, - "Cori": [["M"]], - "Cori's": null, - "Corina": [["M"]], - "Corina's": null, - "Corine": [["M"]], - "Corine's": null, - "coring's": null, - "Corinna": [["M"]], - "Corinna's": null, - "Corinne": [["M"]], - "Corinne's": null, - "Corinthian": [["S"]], - "Corinthians": [["M"]], - "Corinthians's": null, - "Corinth": [["M"]], - "Corinth's": null, - "Coriolanus": [["M"]], - "Coriolanus's": null, - "Coriolis": [["M"]], - "Coriolis's": null, - "Corissa": [["M"]], - "Corissa's": null, - "Coriss": [["M"]], - "Coriss's": null, - "corked": [["U"]], - "uncorked": null, - "corker": [["M"]], - "corker's": null, - "cork": [["G", "Z", "D", "R", "M", "S"]], - "corking": null, - "corkers": null, - "cork's": null, - "corks": [["U"]], - "Cork": [["M"]], - "Cork's": null, - "corkscrew": [["D", "M", "G", "S"]], - "corkscrewed": null, - "corkscrew's": null, - "corkscrewing": null, - "corkscrews": null, - "uncorks": null, - "Corliss": [["M"]], - "Corliss's": null, - "Corly": [["M"]], - "Corly's": null, - "Cormack": [["M"]], - "Cormack's": null, - "corm": [["M", "S"]], - "corm's": null, - "corms": null, - "cormorant": [["M", "S"]], - "cormorant's": null, - "cormorants": null, - "Cornall": [["M"]], - "Cornall's": null, - "cornball": [["S", "M"]], - "cornballs": null, - "cornball's": null, - "cornbread": [["S"]], - "cornbreads": null, - "corncob": [["S", "M"]], - "corncobs": null, - "corncob's": null, - "corncrake": [["M"]], - "corncrake's": null, - "corneal": null, - "cornea": [["S", "M"]], - "corneas": null, - "cornea's": null, - "Corneille": [["M"]], - "Corneille's": null, - "Cornela": [["M"]], - "Cornela's": null, - "Cornelia": [["M"]], - "Cornelia's": null, - "Cornelius": [["M"]], - "Cornelius's": null, - "Cornelle": [["M"]], - "Cornelle's": null, - "Cornell": [["M"]], - "Cornell's": null, - "corner": [["G", "D", "M"]], - "cornering": null, - "cornered": null, - "corner's": null, - "cornerstone": [["M", "S"]], - "cornerstone's": null, - "cornerstones": null, - "cornet": [["S", "M"]], - "cornets": null, - "cornet's": null, - "Corney": [["M"]], - "Corney's": null, - "cornfield": [["S", "M"]], - "cornfields": null, - "cornfield's": null, - "cornflake": [["S"]], - "cornflakes": null, - "cornflour": [["M"]], - "cornflour's": null, - "cornflower": [["S", "M"]], - "cornflowers": null, - "cornflower's": null, - "corn": [["G", "Z", "D", "R", "M", "S"]], - "corning": null, - "corners": null, - "corned": null, - "corn's": null, - "corns": null, - "cornice": [["G", "S", "D", "M"]], - "cornicing": null, - "cornices": null, - "corniced": null, - "cornice's": null, - "Cornie": [["M"]], - "Cornie's": null, - "cornily": null, - "corniness": [["S"]], - "corninesses": null, - "Cornish": [["S"]], - "Cornishes": null, - "cornmeal": [["S"]], - "cornmeals": null, - "cornrow": [["G", "D", "S"]], - "cornrowing": null, - "cornrowed": null, - "cornrows": null, - "cornstalk": [["M", "S"]], - "cornstalk's": null, - "cornstalks": null, - "cornstarch": [["S", "M"]], - "cornstarches": null, - "cornstarch's": null, - "cornucopia": [["M", "S"]], - "cornucopia's": null, - "cornucopias": null, - "Cornwallis": [["M"]], - "Cornwallis's": null, - "Cornwall": [["M"]], - "Cornwall's": null, - "Corny": [["M"]], - "Corny's": null, - "corny": [["R", "P", "T"]], - "cornier": null, - "corniest": null, - "corolla": [["M", "S"]], - "corolla's": null, - "corollas": null, - "corollary": [["S", "M"]], - "corollaries": null, - "corollary's": null, - "Coronado": [["M"]], - "Coronado's": null, - "coronal": [["M", "S"]], - "coronal's": null, - "coronals": null, - "coronary": [["S"]], - "coronaries": null, - "corona": [["S", "M"]], - "coronas": null, - "corona's": null, - "coronate": [["N", "X"]], - "coronation": [["M"]], - "coronations": null, - "coronation's": null, - "coroner": [["M", "S"]], - "coroner's": null, - "coroners": null, - "coronet": [["D", "M", "S"]], - "coroneted": null, - "coronet's": null, - "coronets": null, - "Corot": [["M"]], - "Corot's": null, - "coroutine": [["S", "M"]], - "coroutines": null, - "coroutine's": null, - "Corp": null, - "corporal": [["S", "Y", "M"]], - "corporals": null, - "corporally": null, - "corporal's": null, - "corpora": [["M", "S"]], - "corpora's": null, - "corporas": null, - "corporate": [["I", "N", "V", "X", "S"]], - "incorporate": [["G", "A", "S", "D", "X", "N"]], - "incorporation": null, - "incorporations": null, - "incorporates": null, - "corporation": [["M", "I"]], - "corporative": null, - "corporations": null, - "corporates": null, - "corporately": null, - "corporation's": null, - "incorporation's": null, - "corporatism": [["M"]], - "corporatism's": null, - "corporatist": null, - "corporeality": [["M", "S"]], - "corporeality's": null, - "corporealities": null, - "corporeal": [["I", "Y"]], - "incorporeal": null, - "incorporeally": null, - "corporeally": null, - "corporealness": [["M"]], - "corporealness's": null, - "corp": [["S"]], - "corps": [["S", "M"]], - "corpse": [["M"]], - "corpse's": null, - "corpsman": [["M"]], - "corpsman's": null, - "corpsmen": null, - "corpses": null, - "corps's": null, - "corpulence": [["M", "S"]], - "corpulence's": null, - "corpulences": null, - "corpulentness": [["S"]], - "corpulentnesses": null, - "corpulent": [["Y", "P"]], - "corpulently": null, - "corpuscle": [["S", "M"]], - "corpuscles": null, - "corpuscle's": null, - "corpuscular": null, - "corpus": [["M"]], - "corpus's": null, - "corr": null, - "corralled": null, - "corralling": null, - "corral": [["M", "S"]], - "corral's": null, - "corrals": null, - "correctable": [["U"]], - "uncorrectable": null, - "correct": [["B", "P", "S", "D", "R", "Y", "T", "G", "V"]], - "correctness": [["M", "S", "I"]], - "corrects": null, - "corrected": [["U"]], - "correcter": null, - "correctly": [["I"]], - "correctest": null, - "correcting": null, - "corrective": [["Y", "P", "S"]], - "uncorrected": null, - "correctional": null, - "correction": [["M", "S"]], - "correction's": null, - "corrections": null, - "correctively": null, - "correctiveness": null, - "correctives": null, - "incorrectly": null, - "correctness's": null, - "incorrectness's": null, - "correctnesses": null, - "incorrectnesses": null, - "incorrectness": null, - "corrector": [["M", "S"]], - "corrector's": null, - "correctors": null, - "Correggio": [["M"]], - "Correggio's": null, - "correlated": [["U"]], - "uncorrelated": null, - "correlate": [["S", "D", "X", "V", "N", "G"]], - "correlates": null, - "correlations": null, - "correlative": [["Y", "S"]], - "correlation": [["M"]], - "correlating": null, - "correlation's": null, - "correlatively": null, - "correlatives": null, - "Correna": [["M"]], - "Correna's": null, - "correspond": [["D", "S", "G"]], - "corresponded": null, - "corresponds": null, - "corresponding": [["Y"]], - "correspondence": [["M", "S"]], - "correspondence's": null, - "correspondences": null, - "correspondent": [["S", "M"]], - "correspondents": null, - "correspondent's": null, - "correspondingly": null, - "Correy": [["M"]], - "Correy's": null, - "Corrianne": [["M"]], - "Corrianne's": null, - "corridor": [["S", "M"]], - "corridors": null, - "corridor's": null, - "Corrie": [["M"]], - "Corrie's": null, - "corrigenda": null, - "corrigendum": [["M"]], - "corrigendum's": null, - "corrigible": [["I"]], - "incorrigible": [["S", "P"]], - "Corri": [["M"]], - "Corri's": null, - "Corrina": [["M"]], - "Corrina's": null, - "Corrine": [["M"]], - "Corrine's": null, - "Corrinne": [["M"]], - "Corrinne's": null, - "corroborated": [["U"]], - "uncorroborated": null, - "corroborate": [["G", "N", "V", "X", "D", "S"]], - "corroborating": null, - "corroboration": [["M"]], - "corroborative": [["Y"]], - "corroborations": null, - "corroborates": null, - "corroboration's": null, - "corroboratively": null, - "corroborator": [["M", "S"]], - "corroborator's": null, - "corroborators": null, - "corroboratory": null, - "corrode": [["S", "D", "G"]], - "corrodes": null, - "corroded": null, - "corroding": null, - "corrodible": null, - "corrosion": [["S", "M"]], - "corrosions": null, - "corrosion's": null, - "corrosiveness": [["M"]], - "corrosiveness's": null, - "corrosive": [["Y", "P", "S"]], - "corrosively": null, - "corrosives": null, - "corrugate": [["N", "G", "X", "S", "D"]], - "corrugation": [["M"]], - "corrugating": null, - "corrugations": null, - "corrugates": null, - "corrugated": null, - "corrugation's": null, - "corrupt": [["D", "R", "Y", "P", "T", "S", "G", "V"]], - "corrupted": [["U"]], - "corrupter": [["M"]], - "corruptly": null, - "corruptness": [["M", "S"]], - "corruptest": null, - "corrupts": null, - "corrupting": null, - "corruptive": [["Y"]], - "uncorrupted": null, - "corrupter's": null, - "corruptibility": [["S", "M", "I"]], - "corruptibilities": null, - "incorruptibilities": null, - "corruptibility's": null, - "incorruptibility's": null, - "incorruptibility": null, - "corruptible": [["I"]], - "incorruptible": [["S"]], - "corruption": [["I", "M"]], - "incorruption": null, - "incorruption's": null, - "corruption's": null, - "corruptions": null, - "corruptively": null, - "corruptness's": null, - "corruptnesses": null, - "Corry": [["M"]], - "Corry's": null, - "corsage": [["M", "S"]], - "corsage's": null, - "corsages": null, - "corsair": [["S", "M"]], - "corsairs": null, - "corsair's": null, - "corset": [["G", "M", "D", "S"]], - "corseting": null, - "corset's": null, - "corseted": null, - "corsets": null, - "Corsica": [["M"]], - "Corsica's": null, - "Corsican": [["S"]], - "Corsicans": null, - "cort�ge": [["M", "S"]], - "cort�ge's": null, - "cort�ges": null, - "Cortes": [["S"]], - "Corteses": null, - "cortex": [["M"]], - "cortex's": null, - "Cortez's": null, - "cortical": [["Y"]], - "cortically": null, - "cortices": null, - "corticosteroid": [["S", "M"]], - "corticosteroids": null, - "corticosteroid's": null, - "Cortie": [["M"]], - "Cortie's": null, - "cortisone": [["S", "M"]], - "cortisones": null, - "cortisone's": null, - "Cortland": [["M"]], - "Cortland's": null, - "Cort": [["M"]], - "Cort's": null, - "Cortney": [["M"]], - "Cortney's": null, - "Corty": [["M"]], - "Corty's": null, - "corundum": [["M", "S"]], - "corundum's": null, - "corundums": null, - "coruscate": [["X", "S", "D", "G", "N"]], - "coruscations": null, - "coruscates": null, - "coruscated": null, - "coruscating": null, - "coruscation": [["M"]], - "coruscation's": null, - "Corvallis": [["M"]], - "Corvallis's": null, - "corvette": [["M", "S"]], - "corvette's": null, - "corvettes": null, - "Corvus": [["M"]], - "Corvus's": null, - "Cory": [["M"]], - "Cory's": null, - "Cos": null, - "Cosby": [["M"]], - "Cosby's": null, - "Cosetta": [["M"]], - "Cosetta's": null, - "Cosette": [["M"]], - "Cosette's": null, - "cosing": null, - "cosed": null, - "coses": null, - "cosignatory": [["M", "S"]], - "cosignatory's": null, - "cosignatories": null, - "cosign": [["S", "R", "D", "Z", "G"]], - "cosigns": null, - "cosigner": null, - "cosigned": null, - "cosigners": null, - "cosigning": null, - "cosily": null, - "Cosimo": [["M"]], - "Cosimo's": null, - "cosine": [["M", "S"]], - "cosine's": null, - "cosines": null, - "cosiness": [["M", "S"]], - "cosiness's": null, - "cosinesses": null, - "Cosme": [["M"]], - "Cosme's": null, - "cosmetically": null, - "cosmetician": [["M", "S"]], - "cosmetician's": null, - "cosmeticians": null, - "cosmetic": [["S", "M"]], - "cosmetics": null, - "cosmetic's": null, - "cosmetologist": [["M", "S"]], - "cosmetologist's": null, - "cosmetologists": null, - "cosmetology": [["M", "S"]], - "cosmetology's": null, - "cosmetologies": null, - "cosmic": null, - "cosmical": [["Y"]], - "cosmically": null, - "cosmogonist": [["M", "S"]], - "cosmogonist's": null, - "cosmogonists": null, - "cosmogony": [["S", "M"]], - "cosmogonies": null, - "cosmogony's": null, - "cosmological": [["Y"]], - "cosmologically": null, - "cosmologist": [["M", "S"]], - "cosmologist's": null, - "cosmologists": null, - "cosmology": [["S", "M"]], - "cosmologies": null, - "cosmology's": null, - "Cosmo": [["M"]], - "Cosmo's": null, - "cosmonaut": [["M", "S"]], - "cosmonaut's": null, - "cosmonauts": null, - "cosmopolitanism": [["M", "S"]], - "cosmopolitanism's": null, - "cosmopolitanisms": null, - "cosmopolitan": [["S", "M"]], - "cosmopolitans": null, - "cosmopolitan's": null, - "cosmos": [["S", "M"]], - "cosmoses": null, - "cosmos's": null, - "cosponsor": [["D", "S", "G"]], - "cosponsored": null, - "cosponsors": null, - "cosponsoring": null, - "cossack": [["S"]], - "cossacks": null, - "Cossack": [["S", "M"]], - "Cossacks": null, - "Cossack's": null, - "cosset": [["G", "D", "S"]], - "cosseting": null, - "cosseted": null, - "cossets": null, - "Costa": [["M"]], - "Costa's": null, - "Costanza": [["M"]], - "Costanza's": null, - "costarred": null, - "costarring": null, - "costar": [["S"]], - "costars": null, - "Costello": [["M"]], - "Costello's": null, - "costiveness": [["M"]], - "costiveness's": null, - "costive": [["P", "Y"]], - "costively": null, - "costless": null, - "costliness": [["S", "M"]], - "costlinesses": null, - "costliness's": null, - "costly": [["R", "T", "P"]], - "costlier": null, - "costliest": null, - "cost": [["M", "Y", "G", "V", "J", "S"]], - "cost's": null, - "costing": null, - "costings": null, - "costs": null, - "Costner": [["M"]], - "Costner's": null, - "costumer": [["M"]], - "costumer's": null, - "costume": [["Z", "M", "G", "S", "R", "D"]], - "costumers": null, - "costume's": null, - "costuming": null, - "costumes": null, - "costumed": null, - "cotangent": [["S", "M"]], - "cotangents": null, - "cotangent's": null, - "Cote": [["M"]], - "Cote's": null, - "cote": [["M", "S"]], - "cote's": null, - "cotes": null, - "coterie": [["M", "S"]], - "coterie's": null, - "coteries": null, - "coterminous": [["Y"]], - "coterminously": null, - "cotillion": [["S", "M"]], - "cotillions": null, - "cotillion's": null, - "Cotonou": [["M"]], - "Cotonou's": null, - "Cotopaxi": [["M"]], - "Cotopaxi's": null, - "cot": [["S", "G", "M", "D"]], - "cots": null, - "coting": null, - "cot's": null, - "coted": null, - "cottager": [["M"]], - "cottager's": null, - "cottage": [["Z", "M", "G", "S", "R", "D"]], - "cottagers": null, - "cottage's": null, - "cottaging": null, - "cottages": null, - "cottaged": null, - "cottar's": null, - "cotted": null, - "cotter": [["S", "D", "M"]], - "cotters": null, - "cottered": null, - "cotter's": null, - "cotton": [["G", "S", "D", "M"]], - "cottoning": null, - "cottons": null, - "cottoned": null, - "cotton's": null, - "Cotton": [["M"]], - "Cotton's": null, - "cottonmouth": [["M"]], - "cottonmouth's": null, - "cottonmouths": null, - "cottonseed": [["M", "S"]], - "cottonseed's": null, - "cottonseeds": null, - "cottontail": [["S", "M"]], - "cottontails": null, - "cottontail's": null, - "cottonwood": [["S", "M"]], - "cottonwoods": null, - "cottonwood's": null, - "cottony": null, - "cotyledon": [["M", "S"]], - "cotyledon's": null, - "cotyledons": null, - "couching": [["M"]], - "couching's": null, - "couch": [["M", "S", "D", "G"]], - "couch's": null, - "couches": null, - "couched": null, - "cougar": [["M", "S"]], - "cougar's": null, - "cougars": null, - "cougher": [["M"]], - "cougher's": null, - "cough": [["R", "D", "G"]], - "coughed": null, - "coughing": null, - "coughs": null, - "couldn't": null, - "could": [["T"]], - "couldest": null, - "could've": null, - "coul�e": [["M", "S"]], - "coul�e's": null, - "coul�es": null, - "Coulomb": [["M"]], - "Coulomb's": null, - "coulomb": [["S", "M"]], - "coulombs": null, - "coulomb's": null, - "councilman": [["M"]], - "councilman's": null, - "councilmen": null, - "councilor": [["M", "S"]], - "councilor's": null, - "councilors": null, - "councilperson": [["S"]], - "councilpersons": null, - "council": [["S", "M"]], - "councils": null, - "council's": null, - "councilwoman": [["M"]], - "councilwoman's": null, - "councilwomen": null, - "counsel": [["G", "S", "D", "M"]], - "counseling": null, - "counsels": null, - "counseled": null, - "counsel's": null, - "counsellings": null, - "counselor": [["M", "S"]], - "counselor's": null, - "counselors": null, - "countability": [["E"]], - "discountability": null, - "countable": [["U"]], - "uncountable": null, - "countably": [["U"]], - "uncountably": null, - "countdown": [["S", "M"]], - "countdowns": null, - "countdown's": null, - "counted": [["U"]], - "uncounted": null, - "count": [["E", "G", "A", "R", "D", "S"]], - "discount": [["B"]], - "discounting": null, - "discounter": null, - "discounted": null, - "discounts": null, - "counting": null, - "recounting": null, - "recount": null, - "recounter": null, - "recounted": null, - "recounts": null, - "counter": [["G", "S", "M", "D"]], - "counts": null, - "countenance": [["E", "G", "D", "S"]], - "discountenance": null, - "discountenancing": null, - "discountenanced": null, - "discountenances": null, - "countenancing": null, - "countenanced": null, - "countenances": null, - "countenancer": [["M"]], - "countenancer's": null, - "countenance's": null, - "counteract": [["D", "S", "V", "G"]], - "counteracted": null, - "counteracts": null, - "counteractive": null, - "counteracting": null, - "counteraction": [["S", "M"]], - "counteractions": null, - "counteraction's": null, - "counterargument": [["S", "M"]], - "counterarguments": null, - "counterargument's": null, - "counterattack": [["D", "R", "M", "G", "S"]], - "counterattacked": null, - "counterattacker": null, - "counterattack's": null, - "counterattacking": null, - "counterattacks": null, - "counterbalance": [["M", "S", "D", "G"]], - "counterbalance's": null, - "counterbalances": null, - "counterbalanced": null, - "counterbalancing": null, - "counterclaim": [["G", "S", "D", "M"]], - "counterclaiming": null, - "counterclaims": null, - "counterclaimed": null, - "counterclaim's": null, - "counterclockwise": null, - "counterculture": [["M", "S"]], - "counterculture's": null, - "countercultures": null, - "countercyclical": null, - "counterespionage": [["M", "S"]], - "counterespionage's": null, - "counterespionages": null, - "counterexample": [["S"]], - "counterexamples": null, - "counterfeiter": [["M"]], - "counterfeiter's": null, - "counterfeit": [["Z", "S", "G", "R", "D"]], - "counterfeiters": null, - "counterfeits": null, - "counterfeiting": null, - "counterfeited": null, - "counterflow": null, - "counterfoil": [["M", "S"]], - "counterfoil's": null, - "counterfoils": null, - "counterforce": [["M"]], - "counterforce's": null, - "countering": null, - "counters": [["E"]], - "counter's": [["E"]], - "countered": null, - "counterinsurgency": [["M", "S"]], - "counterinsurgency's": null, - "counterinsurgencies": null, - "counterintelligence": [["M", "S"]], - "counterintelligence's": null, - "counterintelligences": null, - "counterintuitive": null, - "countermand": [["D", "S", "G"]], - "countermanded": null, - "countermands": null, - "countermanding": null, - "counterman": [["M"]], - "counterman's": null, - "countermeasure": [["S", "M"]], - "countermeasures": null, - "countermeasure's": null, - "countermen": null, - "counteroffensive": [["S", "M"]], - "counteroffensives": null, - "counteroffensive's": null, - "counteroffer": [["S", "M"]], - "counteroffers": null, - "counteroffer's": null, - "counterpane": [["S", "M"]], - "counterpanes": null, - "counterpane's": null, - "counterpart": [["S", "M"]], - "counterparts": null, - "counterpart's": null, - "counterpoint": [["G", "S", "D", "M"]], - "counterpointing": null, - "counterpoints": null, - "counterpointed": null, - "counterpoint's": null, - "counterpoise": [["G", "M", "S", "D"]], - "counterpoising": null, - "counterpoise's": null, - "counterpoises": null, - "counterpoised": null, - "counterproductive": null, - "counterproposal": [["M"]], - "counterproposal's": null, - "counterrevolutionary": [["M", "S"]], - "counterrevolutionary's": null, - "counterrevolutionaries": null, - "counterrevolution": [["M", "S"]], - "counterrevolution's": null, - "counterrevolutions": null, - "discounter's": null, - "discounters": null, - "countersignature": [["M", "S"]], - "countersignature's": null, - "countersignatures": null, - "countersign": [["S", "D", "G"]], - "countersigns": null, - "countersigned": null, - "countersigning": null, - "countersink": [["S", "G"]], - "countersinks": null, - "countersinking": null, - "counterspy": [["M", "S"]], - "counterspy's": null, - "counterspies": null, - "counterstrike": null, - "countersunk": null, - "countertenor": [["S", "M"]], - "countertenors": null, - "countertenor's": null, - "countervail": [["D", "S", "G"]], - "countervailed": null, - "countervails": null, - "countervailing": null, - "counterweight": [["G", "M", "D", "S"]], - "counterweighting": null, - "counterweight's": null, - "counterweighted": null, - "counterweights": null, - "countess": [["M", "S"]], - "countess's": null, - "countesses": null, - "countless": [["Y"]], - "countlessly": null, - "countrify": [["D"]], - "countrified": null, - "countryman": [["M"]], - "countryman's": null, - "countrymen": null, - "country": [["M", "S"]], - "country's": null, - "countries": null, - "countryside": [["M", "S"]], - "countryside's": null, - "countrysides": null, - "countrywide": null, - "countrywoman": [["M"]], - "countrywoman's": null, - "countrywomen": null, - "county": [["S", "M"]], - "counties": null, - "county's": null, - "coup": [["A", "S", "D", "G"]], - "recoup": null, - "recoups": null, - "recouped": null, - "recouping": null, - "coups": null, - "couped": null, - "couping": null, - "coupe": [["M", "S"]], - "coupe's": null, - "coupes": null, - "Couperin": [["M"]], - "Couperin's": null, - "couple": [["A", "C", "U"]], - "recouple": null, - "decouple": [["G"]], - "uncouple": [["G"]], - "coupled": [["C", "U"]], - "decoupled": null, - "uncoupled": null, - "coupler": [["C"]], - "decoupler": null, - "couplers": null, - "coupler's": null, - "couple's": null, - "couples": [["C", "U"]], - "decouples": null, - "uncouples": null, - "couplet": [["S", "M"]], - "couplets": null, - "couplet's": null, - "coupling's": [["C"]], - "decoupling's": null, - "coupling": [["S", "M"]], - "couplings": null, - "coupon": [["S", "M"]], - "coupons": null, - "coupon's": null, - "coup's": null, - "courage": [["M", "S"]], - "courage's": null, - "courages": [["E"]], - "courageously": null, - "courageousness": [["M", "S"]], - "courageousness's": null, - "courageousnesses": null, - "courageous": [["U"]], - "uncourageous": null, - "discourages": null, - "Courbet": [["M"]], - "Courbet's": null, - "courgette": [["M", "S"]], - "courgette's": null, - "courgettes": null, - "courier": [["G", "M", "D", "S"]], - "couriering": null, - "courier's": null, - "couriered": null, - "couriers": null, - "course": [["E", "G", "S", "R", "D", "M"]], - "discourse": null, - "discoursing": null, - "discourses": null, - "discourser": null, - "discoursed": null, - "discourse's": null, - "coursing": [["M"]], - "courses": [["F", "A"]], - "courser": [["S", "M"]], - "coursed": null, - "course's": [["A", "F"]], - "courser's": [["E"]], - "discourser's": null, - "coursers": null, - "recourse's": null, - "concourse's": null, - "concourses": null, - "recourses": null, - "coursework": null, - "coursing's": null, - "Courtenay": [["M"]], - "Courtenay's": null, - "courteousness": [["E", "M"]], - "discourteousness": null, - "discourteousness's": null, - "courteousness's": null, - "courteousnesses": null, - "courteous": [["P", "E", "Y"]], - "discourteous": null, - "discourteously": null, - "courteously": null, - "courtesan": [["M", "S"]], - "courtesan's": null, - "courtesans": null, - "courtesied": null, - "courtesy": [["E", "S", "M"]], - "discourtesy": null, - "discourtesies": null, - "discourtesy's": null, - "courtesies": null, - "courtesy's": null, - "courtesying": null, - "court": [["G", "Z", "M", "Y", "R", "D", "S"]], - "courting": null, - "courters": null, - "court's": null, - "courtly": [["R", "T", "P"]], - "courter": null, - "courted": null, - "courts": null, - "courthouse": [["M", "S"]], - "courthouse's": null, - "courthouses": null, - "courtier": [["S", "M"]], - "courtiers": null, - "courtier's": null, - "courtliness": [["M", "S"]], - "courtliness's": null, - "courtlinesses": null, - "courtlier": null, - "courtliest": null, - "Court": [["M"]], - "Court's": null, - "Courtnay": [["M"]], - "Courtnay's": null, - "Courtney": [["M"]], - "Courtney's": null, - "courtroom": [["M", "S"]], - "courtroom's": null, - "courtrooms": null, - "courtship": [["S", "M"]], - "courtships": null, - "courtship's": null, - "courtyard": [["S", "M"]], - "courtyards": null, - "courtyard's": null, - "couscous": [["M", "S"]], - "couscous's": null, - "couscouses": null, - "cousinly": [["U"]], - "uncousinly": null, - "cousin": [["Y", "M", "S"]], - "cousin's": null, - "cousins": null, - "Cousteau": [["M"]], - "Cousteau's": null, - "couture": [["S", "M"]], - "coutures": null, - "couture's": null, - "couturier": [["S", "M"]], - "couturiers": null, - "couturier's": null, - "covalent": [["Y"]], - "covalently": null, - "covariance": [["S", "M"]], - "covariances": null, - "covariance's": null, - "covariant": [["S"]], - "covariants": null, - "covariate": [["S", "N"]], - "covariates": null, - "covariation": null, - "covary": null, - "cove": [["D", "R", "S", "M", "Z", "G"]], - "coved": null, - "cover": [["A", "E", "G", "U", "D", "S"]], - "coves": null, - "cove's": null, - "covers": [["M"]], - "coving": null, - "covenanted": [["U"]], - "uncovenanted": null, - "covenanter": [["M"]], - "covenanter's": null, - "covenant": [["S", "G", "R", "D", "M"]], - "covenants": null, - "covenanting": null, - "covenant's": null, - "coven": [["S", "M"]], - "covens": null, - "coven's": null, - "Covent": [["M"]], - "Covent's": null, - "Coventry": [["M", "S"]], - "Coventry's": null, - "Coventries": null, - "coverable": [["E"]], - "discoverable": [["I"]], - "recover": [["B"]], - "recovering": null, - "recovered": null, - "recovers": null, - "discover": [["A", "D", "G", "S"]], - "discovering": null, - "discovered": [["U"]], - "discovers": null, - "covering": [["M", "S"]], - "uncovering": null, - "uncover": null, - "uncovered": null, - "uncovers": null, - "covered": null, - "coverage": [["M", "S"]], - "coverage's": null, - "coverages": null, - "coverall": [["D", "M", "S"]], - "coveralled": null, - "coverall's": null, - "coveralls": null, - "coverer": [["A", "M", "E"]], - "recoverer": null, - "recoverer's": null, - "coverer's": null, - "discoverer's": null, - "discoverer": [["S"]], - "covering's": null, - "coverings": null, - "coverlet": [["M", "S"]], - "coverlet's": null, - "coverlets": null, - "coversheet": null, - "covers's": null, - "covertness": [["S", "M"]], - "covertnesses": null, - "covertness's": null, - "covert": [["Y", "P", "S"]], - "covertly": null, - "coverts": null, - "coveter": [["M"]], - "coveter's": null, - "coveting": [["Y"]], - "covetingly": null, - "covetousness": [["S", "M"]], - "covetousnesses": null, - "covetousness's": null, - "covetous": [["P", "Y"]], - "covetously": null, - "covet": [["S", "G", "R", "D"]], - "covets": null, - "coveted": null, - "covey": [["S", "M"]], - "coveys": null, - "covey's": null, - "covington": null, - "cowardice": [["M", "S"]], - "cowardice's": null, - "cowardices": null, - "cowardliness": [["M", "S"]], - "cowardliness's": null, - "cowardlinesses": null, - "cowardly": [["P"]], - "Coward": [["M"]], - "Coward's": null, - "coward": [["M", "Y", "S"]], - "coward's": null, - "cowards": null, - "cowbell": [["M", "S"]], - "cowbell's": null, - "cowbells": null, - "cowbird": [["M", "S"]], - "cowbird's": null, - "cowbirds": null, - "cowboy": [["M", "S"]], - "cowboy's": null, - "cowboys": null, - "cowcatcher": [["S", "M"]], - "cowcatchers": null, - "cowcatcher's": null, - "cowed": [["Y"]], - "cowedly": null, - "cowering": [["Y"]], - "coweringly": null, - "cower": [["R", "D", "G", "Z"]], - "cowerer": null, - "cowered": null, - "cowerers": null, - "cowgirl": [["M", "S"]], - "cowgirl's": null, - "cowgirls": null, - "cowhand": [["S"]], - "cowhands": null, - "cowherd": [["S", "M"]], - "cowherds": null, - "cowherd's": null, - "cowhide": [["M", "G", "S", "D"]], - "cowhide's": null, - "cowhiding": null, - "cowhides": null, - "cowhided": null, - "Cowley": [["M"]], - "Cowley's": null, - "cowlick": [["M", "S"]], - "cowlick's": null, - "cowlicks": null, - "cowling": [["M"]], - "cowling's": null, - "cowl": [["S", "G", "M", "D"]], - "cowls": null, - "cowl's": null, - "cowled": null, - "cowman": [["M"]], - "cowman's": null, - "cow": [["M", "D", "R", "S", "Z", "G"]], - "cow's": null, - "cows": null, - "cowers": null, - "cowing": null, - "cowmen": null, - "coworker": [["M", "S"]], - "coworker's": null, - "coworkers": null, - "Cowper": [["M"]], - "Cowper's": null, - "cowpoke": [["M", "S"]], - "cowpoke's": null, - "cowpokes": null, - "cowpony": null, - "cowpox": [["M", "S"]], - "cowpox's": null, - "cowpoxes": null, - "cowpuncher": [["M"]], - "cowpuncher's": null, - "cowpunch": [["R", "Z"]], - "cowpunchers": null, - "cowrie": [["S", "M"]], - "cowries": null, - "cowrie's": null, - "cowshed": [["S", "M"]], - "cowsheds": null, - "cowshed's": null, - "cowslip": [["M", "S"]], - "cowslip's": null, - "cowslips": null, - "coxcomb": [["M", "S"]], - "coxcomb's": null, - "coxcombs": null, - "Cox": [["M"]], - "Cox's": null, - "cox": [["M", "D", "S", "G"]], - "cox's": null, - "coxed": null, - "coxes": null, - "coxing": null, - "coxswain": [["G", "S", "M", "D"]], - "coxswaining": null, - "coxswains": null, - "coxswain's": null, - "coxswained": null, - "coy": [["C", "D", "S", "G"]], - "decoy": [["M"]], - "decoyed": null, - "decoys": null, - "decoying": null, - "coyed": null, - "coys": null, - "coying": null, - "coyer": null, - "coyest": null, - "coyly": null, - "Coy": [["M"]], - "Coy's": null, - "coyness": [["M", "S"]], - "coyness's": null, - "coynesses": null, - "coyote": [["S", "M"]], - "coyotes": null, - "coyote's": null, - "coypu": [["S", "M"]], - "coypus": null, - "coypu's": null, - "cozenage": [["M", "S"]], - "cozenage's": null, - "cozenages": null, - "cozen": [["S", "G", "D"]], - "cozens": null, - "cozening": null, - "cozened": null, - "cozily": null, - "coziness": [["M", "S"]], - "coziness's": null, - "cozinesses": null, - "Cozmo": [["M"]], - "Cozmo's": null, - "Cozumel": [["M"]], - "Cozumel's": null, - "cozy": [["D", "S", "R", "T", "P", "G"]], - "cozied": null, - "cozies": null, - "cozier": null, - "coziest": null, - "cozying": null, - "CPA": null, - "cpd": null, - "CPI": null, - "cpl": null, - "Cpl": null, - "CPO": null, - "CPR": null, - "cps": null, - "CPU": [["S", "M"]], - "CPUs": null, - "CPU's": null, - "crabapple": null, - "crabbedness": [["M"]], - "crabbedness's": null, - "crabbed": [["Y", "P"]], - "crabbedly": null, - "Crabbe": [["M"]], - "Crabbe's": null, - "crabber": [["M", "S"]], - "crabber's": null, - "crabbers": null, - "crabbily": null, - "crabbiness": [["S"]], - "crabbinesses": null, - "crabbing": [["M"]], - "crabbing's": null, - "crabby": [["P", "R", "T"]], - "crabbier": null, - "crabbiest": null, - "crabgrass": [["S"]], - "crabgrasses": null, - "crablike": null, - "crab": [["M", "S"]], - "crab's": null, - "crabs": null, - "crackable": [["U"]], - "uncrackable": null, - "crackdown": [["M", "S"]], - "crackdown's": null, - "crackdowns": null, - "crackerjack": [["S"]], - "crackerjacks": null, - "cracker": [["M"]], - "cracker's": null, - "crackle": [["G", "J", "D", "S"]], - "crackling": [["M"]], - "cracklings": null, - "crackled": null, - "crackles": null, - "crackling's": null, - "crackly": [["R", "T"]], - "cracklier": null, - "crackliest": null, - "crackpot": [["S", "M"]], - "crackpots": null, - "crackpot's": null, - "crackup": [["S"]], - "crackups": null, - "crack": [["Z", "S", "B", "Y", "R", "D", "G"]], - "crackers": null, - "cracks": null, - "cracked": null, - "cracking": null, - "cradler": [["M"]], - "cradler's": null, - "cradle": [["S", "R", "D", "G", "M"]], - "cradles": null, - "cradled": null, - "cradling": [["M"]], - "cradle's": null, - "cradling's": null, - "craftily": null, - "craftiness": [["S", "M"]], - "craftinesses": null, - "craftiness's": null, - "Craft": [["M"]], - "Craft's": null, - "craft": [["M", "R", "D", "S", "G"]], - "craft's": null, - "crafter": null, - "crafted": null, - "crafts": null, - "crafting": null, - "craftsman": [["M"]], - "craftsman's": null, - "craftsmanship": [["S", "M"]], - "craftsmanships": null, - "craftsmanship's": null, - "craftsmen": null, - "craftspeople": null, - "craftspersons": null, - "craftswoman": null, - "craftswomen": null, - "crafty": [["T", "R", "P"]], - "craftiest": null, - "craftier": null, - "Craggie": [["M"]], - "Craggie's": null, - "cragginess": [["S", "M"]], - "cragginesses": null, - "cragginess's": null, - "Craggy": [["M"]], - "Craggy's": null, - "craggy": [["R", "T", "P"]], - "craggier": null, - "craggiest": null, - "crag": [["S", "M"]], - "crags": null, - "crag's": null, - "Craig": [["M"]], - "Craig's": null, - "Cramer": [["M"]], - "Cramer's": null, - "crammed": null, - "crammer": [["M"]], - "crammer's": null, - "cramming": null, - "cramper": [["M"]], - "cramper's": null, - "cramp": [["M", "R", "D", "G", "S"]], - "cramp's": null, - "cramped": null, - "cramping": null, - "cramps": null, - "crampon": [["S", "M"]], - "crampons": null, - "crampon's": null, - "cram": [["S"]], - "crams": null, - "Cranach": [["M"]], - "Cranach's": null, - "cranberry": [["S", "M"]], - "cranberries": null, - "cranberry's": null, - "Crandall": [["M"]], - "Crandall's": null, - "crane": [["D", "S", "G", "M"]], - "craned": null, - "cranes": null, - "craning": null, - "crane's": null, - "cranelike": null, - "Crane": [["M"]], - "Crane's": null, - "Cranford": [["M"]], - "Cranford's": null, - "cranial": null, - "cranium": [["M", "S"]], - "cranium's": null, - "craniums": null, - "crankcase": [["M", "S"]], - "crankcase's": null, - "crankcases": null, - "crankily": null, - "crankiness": [["M", "S"]], - "crankiness's": null, - "crankinesses": null, - "crank": [["S", "G", "T", "R", "D", "M"]], - "cranks": null, - "cranking": null, - "crankest": null, - "cranker": null, - "cranked": null, - "crank's": null, - "crankshaft": [["M", "S"]], - "crankshaft's": null, - "crankshafts": null, - "cranky": [["T", "R", "P"]], - "crankiest": null, - "crankier": null, - "Cranmer": [["M"]], - "Cranmer's": null, - "cranny": [["D", "S", "G", "M"]], - "crannied": null, - "crannies": null, - "crannying": null, - "cranny's": null, - "Cranston": [["M"]], - "Cranston's": null, - "crape": [["S", "M"]], - "crapes": null, - "crape's": null, - "crapped": null, - "crappie": [["M"]], - "crappie's": null, - "crapping": null, - "crappy": [["R", "S", "T"]], - "crappier": null, - "crappies": null, - "crappiest": null, - "crapshooter": [["S", "M"]], - "crapshooters": null, - "crapshooter's": null, - "crap": [["S", "M", "D", "G", "!"]], - "craps": null, - "crap's": null, - "craped": null, - "craping": null, - "crasher": [["M"]], - "crasher's": null, - "crashing": [["Y"]], - "crashingly": null, - "crash": [["S", "R", "D", "G", "Z"]], - "crashes": null, - "crashed": null, - "crashers": null, - "crassness": [["M", "S"]], - "crassness's": null, - "crassnesses": null, - "crass": [["T", "Y", "R", "P"]], - "crassest": null, - "crassly": null, - "crasser": null, - "crate": [["D", "S", "R", "G", "M", "Z"]], - "crated": null, - "crates": null, - "crater": [["D", "M", "G"]], - "crating": null, - "crate's": null, - "craters": null, - "cratered": null, - "crater's": null, - "cratering": null, - "Crater": [["M"]], - "Crater's": null, - "cravat": [["S", "M"]], - "cravats": null, - "cravat's": null, - "cravatted": null, - "cravatting": null, - "crave": [["D", "S", "R", "G", "J"]], - "craved": null, - "craves": null, - "craver": [["M"]], - "craving": [["M"]], - "cravings": null, - "cravenness": [["S", "M"]], - "cravennesses": null, - "cravenness's": null, - "craven": [["S", "P", "Y", "D", "G"]], - "cravens": null, - "cravenly": null, - "cravened": null, - "cravening": null, - "craver's": null, - "craving's": null, - "crawdad": [["S"]], - "crawdads": null, - "crawfish's": null, - "Crawford": [["M"]], - "Crawford's": null, - "crawler": [["M"]], - "crawler's": null, - "crawl": [["R", "D", "S", "G", "Z"]], - "crawled": null, - "crawls": null, - "crawling": null, - "crawlers": null, - "crawlspace": [["S"]], - "crawlspaces": null, - "crawlway": null, - "crawly": [["T", "R", "S"]], - "crawliest": null, - "crawlier": null, - "crawlies": null, - "craw": [["S", "Y", "M"]], - "craws": null, - "craw's": null, - "crayfish": [["G", "S", "D", "M"]], - "crayfishing": null, - "crayfishes": null, - "crayfished": null, - "crayfish's": null, - "Crayola": [["M"]], - "Crayola's": null, - "crayon": [["G", "S", "D", "M"]], - "crayoning": null, - "crayons": null, - "crayoned": null, - "crayon's": null, - "Cray": [["S", "M"]], - "Crays": null, - "Cray's": null, - "craze": [["G", "M", "D", "S"]], - "crazing": null, - "craze's": null, - "crazed": null, - "crazes": null, - "crazily": null, - "craziness": [["M", "S"]], - "craziness's": null, - "crazinesses": null, - "crazy": [["S", "R", "T", "P"]], - "crazies": null, - "crazier": null, - "craziest": null, - "creakily": null, - "creakiness": [["S", "M"]], - "creakinesses": null, - "creakiness's": null, - "creak": [["S", "D", "G"]], - "creaks": null, - "creaked": null, - "creaking": null, - "creaky": [["P", "T", "R"]], - "creakiest": null, - "creakier": null, - "creamer": [["M"]], - "creamer's": null, - "creamery": [["M", "S"]], - "creamery's": null, - "creameries": null, - "creamily": null, - "creaminess": [["S", "M"]], - "creaminesses": null, - "creaminess's": null, - "cream": [["S", "M", "R", "D", "G", "Z"]], - "creams": null, - "cream's": null, - "creamed": null, - "creaming": null, - "creamers": null, - "creamy": [["T", "R", "P"]], - "creamiest": null, - "creamier": null, - "creased": [["C", "U"]], - "decreased": null, - "uncreased": null, - "crease": [["I", "D", "R", "S", "G"]], - "increase": [["J", "B"]], - "increased": null, - "increaser": [["M"]], - "increases": null, - "increasing": [["Y"]], - "creaser": null, - "creases": [["C"]], - "creasing": [["C"]], - "crease's": null, - "decreases": null, - "decreasing": [["Y"]], - "created": [["U"]], - "uncreated": null, - "create": [["X", "K", "V", "N", "G", "A", "D", "S"]], - "creations": null, - "procreations": null, - "recreations": null, - "procreate": null, - "procreation": null, - "procreating": null, - "procreated": null, - "procreates": null, - "creative": [["Y", "P"]], - "creation": [["M", "A", "K"]], - "recreation": null, - "creating": null, - "recreating": null, - "recreate": null, - "recreated": null, - "recreates": null, - "creates": null, - "creationism": [["M", "S"]], - "creationism's": null, - "creationisms": null, - "creationist": [["M", "S"]], - "creationist's": null, - "creationists": null, - "Creation": [["M"]], - "Creation's": null, - "creation's": null, - "recreation's": null, - "procreation's": null, - "creativeness": [["S", "M"]], - "creativenesses": null, - "creativeness's": null, - "creatively": null, - "creativities": null, - "creativity": [["K"]], - "procreativity": null, - "creativity's": null, - "Creator": [["M"]], - "Creator's": null, - "creator": [["M", "S"]], - "creator's": null, - "creators": null, - "creatureliness": [["M"]], - "creatureliness's": null, - "creaturely": [["P"]], - "creature": [["Y", "M", "S"]], - "creature's": null, - "creatures": null, - "cr�che": [["S", "M"]], - "cr�ches": null, - "cr�che's": null, - "credence": [["M", "S"]], - "credence's": null, - "credences": null, - "credent": null, - "credential": [["S", "G", "M", "D"]], - "credentials": null, - "credentialing": null, - "credential's": null, - "credentialed": null, - "credenza": [["S", "M"]], - "credenzas": null, - "credenza's": null, - "credibility": [["I", "M", "S"]], - "incredibility": null, - "incredibility's": null, - "incredibilities": null, - "credibility's": null, - "credibilities": null, - "credible": [["I"]], - "incredible": [["P"]], - "credibly": [["I"]], - "incredibly": null, - "creditability": [["M"]], - "creditability's": null, - "creditableness": [["M"]], - "creditableness's": null, - "creditable": [["P"]], - "creditably": [["E"]], - "discreditably": null, - "credited": [["U"]], - "uncredited": null, - "credit": [["E", "G", "B", "S", "D"]], - "discredit": null, - "discrediting": null, - "discreditable": null, - "discredits": null, - "discredited": null, - "crediting": null, - "credits": null, - "creditor": [["M", "S"]], - "creditor's": null, - "creditors": null, - "credit's": null, - "creditworthiness": null, - "credo": [["S", "M"]], - "credos": null, - "credo's": null, - "credulity": [["I", "S", "M"]], - "incredulity": null, - "incredulities": null, - "incredulity's": null, - "credulities": null, - "credulity's": null, - "credulous": [["I", "Y"]], - "incredulous": null, - "incredulously": null, - "credulously": null, - "credulousness": [["S", "M"]], - "credulousnesses": null, - "credulousness's": null, - "creedal": null, - "creed": [["C"]], - "decreed": null, - "creeds": null, - "creed's": null, - "creekside": null, - "creek": [["S", "M"]], - "creeks": null, - "creek's": null, - "Creek": [["S", "M"]], - "Creeks": null, - "Creek's": null, - "creel": [["S", "M", "D", "G"]], - "creels": null, - "creel's": null, - "creeled": null, - "creeling": null, - "Cree": [["M", "D", "S"]], - "Cree's": null, - "Creed": null, - "Crees": null, - "creeper": [["M"]], - "creeper's": null, - "creepily": null, - "creepiness": [["S", "M"]], - "creepinesses": null, - "creepiness's": null, - "creep": [["S", "G", "Z", "R"]], - "creeps": null, - "creeping": null, - "creepers": null, - "creepy": [["P", "R", "S", "T"]], - "creepier": null, - "creepies": null, - "creepiest": null, - "Creigh": [["M"]], - "Creigh's": null, - "Creight": [["M"]], - "Creight's": null, - "Creighton": [["M"]], - "Creighton's": null, - "cremate": [["X", "D", "S", "N", "G"]], - "cremations": null, - "cremated": null, - "cremates": null, - "cremation": [["M"]], - "cremating": null, - "cremation's": null, - "crematoria": null, - "crematorium": [["M", "S"]], - "crematorium's": null, - "crematoriums": null, - "crematory": [["S"]], - "crematories": null, - "creme": [["S"]], - "cremes": null, - "crenelate": [["X", "G", "N", "S", "D"]], - "crenelations": null, - "crenelating": null, - "crenelation": [["M"]], - "crenelates": null, - "crenelated": null, - "crenelation's": null, - "Creole": [["M", "S"]], - "Creole's": null, - "Creoles": null, - "creole": [["S", "M"]], - "creoles": null, - "creole's": null, - "Creon": [["M"]], - "Creon's": null, - "creosote": [["M", "G", "D", "S"]], - "creosote's": null, - "creosoting": null, - "creosoted": null, - "creosotes": null, - "crepe": [["D", "S", "G", "M"]], - "creped": null, - "crepes": null, - "creping": null, - "crepe's": null, - "crept": null, - "crescendoed": null, - "crescendoing": null, - "crescendo": [["S", "C", "M"]], - "crescendos": null, - "decrescendos": null, - "decrescendo": null, - "decrescendo's": null, - "crescendo's": null, - "crescent": [["M", "S"]], - "crescent's": null, - "crescents": null, - "cress": [["S"]], - "cresses": null, - "crestfallenness": [["M"]], - "crestfallenness's": null, - "crestfallen": [["P", "Y"]], - "crestfallenly": null, - "cresting": [["M"]], - "cresting's": null, - "crestless": null, - "crest": [["S", "G", "M", "D"]], - "crests": null, - "crest's": null, - "crested": null, - "Crestview": [["M"]], - "Crestview's": null, - "cretaceous": null, - "Cretaceously": [["M"]], - "Cretaceously's": null, - "Cretaceous": [["Y"]], - "Cretan": [["S"]], - "Cretans": null, - "Crete": [["M"]], - "Crete's": null, - "cretinism": [["M", "S"]], - "cretinism's": null, - "cretinisms": null, - "cretin": [["M", "S"]], - "cretin's": null, - "cretins": null, - "cretinous": null, - "cretonne": [["S", "M"]], - "cretonnes": null, - "cretonne's": null, - "crevasse": [["D", "S", "M", "G"]], - "crevassed": null, - "crevasses": null, - "crevasse's": null, - "crevassing": null, - "crevice": [["S", "M"]], - "crevices": null, - "crevice's": null, - "crew": [["D", "M", "G", "S"]], - "crewed": null, - "crew's": null, - "crewing": null, - "crews": null, - "crewel": [["S", "M"]], - "crewels": null, - "crewel's": null, - "crewelwork": [["S", "M"]], - "crewelworks": null, - "crewelwork's": null, - "crewman": [["M"]], - "crewman's": null, - "crewmen": null, - "cribbage": [["S", "M"]], - "cribbages": null, - "cribbage's": null, - "cribbed": null, - "cribber": [["S", "M"]], - "cribbers": null, - "cribber's": null, - "cribbing": [["M"]], - "cribbing's": null, - "crib": [["S", "M"]], - "cribs": null, - "crib's": null, - "Crichton": [["M"]], - "Crichton's": null, - "cricketer": [["M"]], - "cricketer's": null, - "cricket": [["S", "M", "Z", "R", "D", "G"]], - "crickets": null, - "cricket's": null, - "cricketers": null, - "cricketed": null, - "cricketing": null, - "crick": [["G", "D", "S", "M"]], - "cricking": null, - "cricked": null, - "cricks": null, - "crick's": null, - "Crick": [["M"]], - "Crick's": null, - "cried": [["C"]], - "decried": null, - "crier": [["C", "M"]], - "decrier": null, - "decrier's": null, - "crier's": null, - "cries": [["C"]], - "decries": null, - "Crimea": [["M"]], - "Crimea's": null, - "Crimean": null, - "crime": [["G", "M", "D", "S"]], - "criming": null, - "crime's": null, - "crimed": null, - "crimes": null, - "criminality": [["M", "S"]], - "criminality's": null, - "criminalities": null, - "criminalization": [["C"]], - "decriminalization": [["S"]], - "criminalize": [["G", "C"]], - "criminalizing": null, - "decriminalizing": null, - "decriminalize": [["D", "S"]], - "criminal": [["S", "Y", "M"]], - "criminals": null, - "criminally": null, - "criminal's": null, - "criminologist": [["S", "M"]], - "criminologists": null, - "criminologist's": null, - "criminology": [["M", "S"]], - "criminology's": null, - "criminologies": null, - "crimper": [["M"]], - "crimper's": null, - "crimp": [["R", "D", "G", "S"]], - "crimped": null, - "crimping": null, - "crimps": null, - "crimson": [["D", "M", "S", "G"]], - "crimsoned": null, - "crimson's": null, - "crimsons": null, - "crimsoning": null, - "cringer": [["M"]], - "cringer's": null, - "cringe": [["S", "R", "D", "G"]], - "cringes": null, - "cringed": null, - "cringing": null, - "crinkle": [["D", "S", "G"]], - "crinkled": null, - "crinkles": null, - "crinkling": null, - "crinkly": [["T", "R", "S"]], - "crinkliest": null, - "crinklier": null, - "crinklies": null, - "Crin": [["M"]], - "Crin's": null, - "crinoline": [["S", "M"]], - "crinolines": null, - "crinoline's": null, - "cripple": [["G", "M", "Z", "D", "R", "S"]], - "crippling": [["Y"]], - "cripple's": null, - "cripplers": null, - "crippled": null, - "crippler": [["M"]], - "cripples": null, - "crippler's": null, - "cripplingly": null, - "Crisco": [["M"]], - "Crisco's": null, - "crises": null, - "crisis": [["M"]], - "crisis's": null, - "Cris": [["M"]], - "Cris's": null, - "crisper": [["M"]], - "crisper's": null, - "crispiness": [["S", "M"]], - "crispinesses": null, - "crispiness's": null, - "crispness": [["M", "S"]], - "crispness's": null, - "crispnesses": null, - "crisp": [["P", "G", "T", "Y", "R", "D", "S"]], - "crisping": null, - "crispest": null, - "crisply": null, - "crisped": null, - "crisps": null, - "crispy": [["R", "P", "T"]], - "crispier": null, - "crispiest": null, - "criss": null, - "crisscross": [["G", "D", "S"]], - "crisscrossing": null, - "crisscrossed": null, - "crisscrosses": null, - "Crissie": [["M"]], - "Crissie's": null, - "Crissy": [["M"]], - "Crissy's": null, - "Cristabel": [["M"]], - "Cristabel's": null, - "Cristal": [["M"]], - "Cristal's": null, - "Crista": [["M"]], - "Crista's": null, - "Cristen": [["M"]], - "Cristen's": null, - "Cristian": [["M"]], - "Cristian's": null, - "Cristiano": [["M"]], - "Cristiano's": null, - "Cristie": [["M"]], - "Cristie's": null, - "Cristi": [["M"]], - "Cristi's": null, - "Cristina": [["M"]], - "Cristina's": null, - "Cristine": [["M"]], - "Cristine's": null, - "Cristin": [["M"]], - "Cristin's": null, - "Cristionna": [["M"]], - "Cristionna's": null, - "Cristobal": [["M"]], - "Cristobal's": null, - "Cristy": [["M"]], - "Cristy's": null, - "criteria": null, - "criterion": [["M"]], - "criterion's": null, - "criticality": null, - "critically": [["U"]], - "uncritically": null, - "criticalness": [["M"]], - "criticalness's": null, - "critical": [["Y", "P"]], - "criticism": [["M", "S"]], - "criticism's": null, - "criticisms": null, - "criticized": [["U"]], - "uncriticized": null, - "criticize": [["G", "S", "R", "D", "Z"]], - "criticizing": [["U", "Y"]], - "criticizes": [["A"]], - "criticizer": [["M"]], - "criticizers": null, - "criticizer's": null, - "recriticizes": null, - "criticizingly": [["S"]], - "criticizinglies": null, - "uncriticizing": null, - "uncriticizingly": null, - "critic": [["M", "S"]], - "critic's": null, - "critics": null, - "critique": [["M", "G", "S", "D"]], - "critique's": null, - "critiquing": null, - "critiques": null, - "critiqued": null, - "critter": [["S", "M"]], - "critters": null, - "critter's": null, - "Cr": [["M"]], - "Cr's": null, - "croaker": [["M"]], - "croaker's": null, - "croak": [["S", "R", "D", "G", "Z"]], - "croaks": null, - "croaked": null, - "croaking": null, - "croakers": null, - "croaky": [["R", "T"]], - "croakier": null, - "croakiest": null, - "Croatia": [["M"]], - "Croatia's": null, - "Croatian": [["S"]], - "Croatians": null, - "Croat": [["S", "M"]], - "Croats": null, - "Croat's": null, - "Croce": [["M"]], - "Croce's": null, - "crocheter": [["M"]], - "crocheter's": null, - "crochet": [["R", "D", "S", "Z", "J", "G"]], - "crocheted": null, - "crochets": null, - "crocheters": null, - "crochetings": null, - "crocheting": null, - "crockery": [["S", "M"]], - "crockeries": null, - "crockery's": null, - "Crockett": [["M"]], - "Crockett's": null, - "Crockpot": [["M"]], - "Crockpot's": null, - "crock": [["S", "G", "R", "D", "M"]], - "crocks": null, - "crocking": null, - "crocker": null, - "crocked": null, - "crock's": null, - "crocodile": [["M", "S"]], - "crocodile's": null, - "crocodiles": null, - "crocus": [["S", "M"]], - "crocuses": null, - "crocus's": null, - "Croesus": [["S", "M"]], - "Croesuses": null, - "Croesus's": null, - "crofter": [["M"]], - "crofter's": null, - "croft": [["M", "R", "G", "Z", "S"]], - "croft's": null, - "crofting": null, - "crofters": null, - "crofts": null, - "croissant": [["M", "S"]], - "croissant's": null, - "croissants": null, - "Croix": [["M"]], - "Croix's": null, - "Cromwellian": null, - "Cromwell": [["M"]], - "Cromwell's": null, - "crone": [["S", "M"]], - "crones": null, - "crone's": null, - "Cronin": [["M"]], - "Cronin's": null, - "Cronkite": [["M"]], - "Cronkite's": null, - "Cronus": [["M"]], - "Cronus's": null, - "crony": [["S", "M"]], - "cronies": null, - "crony's": null, - "crookedness": [["S", "M"]], - "crookednesses": null, - "crookedness's": null, - "crooked": [["T", "P", "R", "Y"]], - "crookedest": null, - "crookeder": null, - "crookedly": null, - "Crookes": [["M"]], - "Crookes's": null, - "crookneck": [["M", "S"]], - "crookneck's": null, - "crooknecks": null, - "crook": [["S", "G", "D", "M"]], - "crooks": null, - "crooking": null, - "crook's": null, - "crooner": [["M"]], - "crooner's": null, - "croon": [["S", "R", "D", "G", "Z"]], - "croons": null, - "crooned": null, - "crooning": null, - "crooners": null, - "cropland": [["M", "S"]], - "cropland's": null, - "croplands": null, - "crop": [["M", "S"]], - "crop's": null, - "crops": null, - "cropped": null, - "cropper": [["S", "M"]], - "croppers": null, - "cropper's": null, - "cropping": null, - "croquet": [["M", "D", "S", "G"]], - "croquet's": null, - "croqueted": null, - "croquets": null, - "croqueting": null, - "croquette": [["S", "M"]], - "croquettes": null, - "croquette's": null, - "Crosby": [["M"]], - "Crosby's": null, - "crosier": [["S", "M"]], - "crosiers": null, - "crosier's": null, - "crossarm": null, - "crossbarred": null, - "crossbarring": null, - "crossbar": [["S", "M"]], - "crossbars": null, - "crossbar's": null, - "crossbeam": [["M", "S"]], - "crossbeam's": null, - "crossbeams": null, - "crossbones": null, - "crossbowman": [["M"]], - "crossbowman's": null, - "crossbowmen": null, - "crossbow": [["S", "M"]], - "crossbows": null, - "crossbow's": null, - "crossbred": [["S"]], - "crossbreds": null, - "crossbreed": [["S", "G"]], - "crossbreeds": null, - "crossbreeding": null, - "crosscheck": [["S", "G", "D"]], - "crosschecks": null, - "crosschecking": null, - "crosschecked": null, - "crosscurrent": [["S", "M"]], - "crosscurrents": null, - "crosscurrent's": null, - "crosscut": [["S", "M"]], - "crosscuts": null, - "crosscut's": null, - "crosscutting": null, - "crossed": [["U", "A"]], - "uncrossed": null, - "recrossed": null, - "crosses": [["U", "A"]], - "uncrosses": null, - "recrosses": null, - "crossfire": [["S", "M"]], - "crossfires": null, - "crossfire's": null, - "crosshatch": [["G", "D", "S"]], - "crosshatching": null, - "crosshatched": null, - "crosshatches": null, - "crossing": [["M"]], - "crossing's": null, - "Cross": [["M"]], - "Cross's": null, - "crossness": [["M", "S"]], - "crossness's": null, - "crossnesses": null, - "crossover": [["M", "S"]], - "crossover's": null, - "crossovers": null, - "crosspatch": [["M", "S"]], - "crosspatch's": null, - "crosspatches": null, - "crosspiece": [["S", "M"]], - "crosspieces": null, - "crosspiece's": null, - "crosspoint": null, - "crossproduct": [["S"]], - "crossproducts": null, - "crossroad": [["G", "S", "M"]], - "crossroading": null, - "crossroads": [["M"]], - "crossroad's": null, - "crossroads's": null, - "crosstalk": [["M"]], - "crosstalk's": null, - "crosstown": null, - "crosswalk": [["M", "S"]], - "crosswalk's": null, - "crosswalks": null, - "crossway": [["M"]], - "crossway's": null, - "crosswind": [["S", "M"]], - "crosswinds": null, - "crosswind's": null, - "crosswise": null, - "crossword": [["M", "S"]], - "crossword's": null, - "crosswords": null, - "cross": [["Z", "T", "Y", "S", "R", "D", "M", "P", "B", "J", "G"]], - "crossers": null, - "crossest": null, - "crossly": null, - "crosser": null, - "cross's": null, - "crossable": null, - "crossings": null, - "crotchetiness": [["M"]], - "crotchetiness's": null, - "crotchet": [["M", "S"]], - "crotchet's": null, - "crotchets": null, - "crotchety": [["P"]], - "crotchless": null, - "crotch": [["M", "D", "S"]], - "crotch's": null, - "crotched": null, - "crotches": null, - "crouch": [["D", "S", "G"]], - "crouched": null, - "crouches": null, - "crouching": null, - "croupier": [["M"]], - "croupier's": null, - "croup": [["S", "M", "D", "G"]], - "croups": null, - "croup's": null, - "crouped": null, - "crouping": null, - "croupy": [["T", "Z", "R"]], - "croupiest": null, - "croupiers": null, - "cro�ton": [["M", "S"]], - "cro�ton's": null, - "cro�tons": null, - "crowbait": null, - "crowbarred": null, - "crowbarring": null, - "crowbar": [["S", "M"]], - "crowbars": null, - "crowbar's": null, - "crowdedness": [["M"]], - "crowdedness's": null, - "crowded": [["P"]], - "crowd": [["M", "R", "D", "S", "G"]], - "crowd's": null, - "crowder": null, - "crowds": null, - "crowding": null, - "crowfeet": null, - "crowfoot": [["M"]], - "crowfoot's": null, - "crow": [["G", "D", "M", "S"]], - "crowing": null, - "crowed": null, - "crow's": null, - "crows": null, - "Crowley": [["M"]], - "Crowley's": null, - "crowned": [["U"]], - "uncrowned": null, - "crowner": [["M"]], - "crowner's": null, - "crown": [["R", "D", "M", "S", "J", "G"]], - "crown's": null, - "crowns": null, - "crownings": null, - "crowning": null, - "crozier's": null, - "CRT": [["S"]], - "CRTs": null, - "crucial": [["Y"]], - "crucially": null, - "crucible": [["M", "S"]], - "crucible's": null, - "crucibles": null, - "crucifiable": null, - "crucifixion": [["M", "S"]], - "crucifixion's": null, - "crucifixions": null, - "Crucifixion": [["M", "S"]], - "Crucifixion's": null, - "Crucifixions": null, - "crucifix": [["S", "M"]], - "crucifixes": null, - "crucifix's": null, - "cruciform": [["S"]], - "cruciforms": null, - "crucify": [["N", "G", "D", "S"]], - "crucification": null, - "crucifying": null, - "crucified": null, - "crucifies": null, - "crudded": null, - "crudding": null, - "cruddy": [["T", "R"]], - "cruddiest": null, - "cruddier": null, - "crudeness": [["M", "S"]], - "crudeness's": null, - "crudenesses": null, - "crude": [["Y", "S", "P"]], - "crudely": null, - "crudes": null, - "crudit�s": null, - "crudity": [["M", "S"]], - "crudity's": null, - "crudities": null, - "crud": [["S", "T", "M", "R"]], - "cruds": null, - "crudest": null, - "crud's": null, - "cruder": null, - "cruelness": [["M", "S"]], - "cruelness's": null, - "cruelnesses": null, - "cruelty": [["S", "M"]], - "cruelties": null, - "cruelty's": null, - "cruel": [["Y", "R", "T", "S", "P"]], - "cruelly": null, - "crueler": null, - "cruelest": null, - "cruels": null, - "cruet": [["M", "S"]], - "cruet's": null, - "cruets": null, - "cruft": null, - "crufty": null, - "Cruikshank": [["M"]], - "Cruikshank's": null, - "cruise": [["G", "Z", "S", "R", "D"]], - "cruising": null, - "cruisers": null, - "cruises": null, - "cruiser": [["M"]], - "cruised": null, - "cruiser's": null, - "cruller": [["S", "M"]], - "crullers": null, - "cruller's": null, - "crumb": [["G", "S", "Y", "D", "M"]], - "crumbing": null, - "crumbs": null, - "crumbly": [["P", "T", "R", "S"]], - "crumbed": null, - "crumb's": null, - "crumble": [["D", "S", "J", "G"]], - "crumbled": null, - "crumbles": null, - "crumblings": null, - "crumbling": null, - "crumbliness": [["M", "S"]], - "crumbliness's": null, - "crumblinesses": null, - "crumbliest": null, - "crumblier": null, - "crumblies": null, - "crumby": [["R", "T"]], - "crumbier": null, - "crumbiest": null, - "crumminess": [["S"]], - "crumminesses": null, - "crummy": [["S", "R", "T", "P"]], - "crummies": null, - "crummier": null, - "crummiest": null, - "crump": null, - "crumpet": [["S", "M"]], - "crumpets": null, - "crumpet's": null, - "crumple": [["D", "S", "G"]], - "crumpled": null, - "crumples": null, - "crumpling": null, - "crunch": [["D", "S", "R", "G", "Z"]], - "crunched": null, - "crunches": null, - "cruncher": null, - "crunching": null, - "crunchers": null, - "crunchiness": [["M", "S"]], - "crunchiness's": null, - "crunchinesses": null, - "crunchy": [["T", "R", "P"]], - "crunchiest": null, - "crunchier": null, - "crupper": [["M", "S"]], - "crupper's": null, - "cruppers": null, - "crusade": [["G", "D", "S", "R", "M", "Z"]], - "crusading": null, - "crusaded": null, - "crusades": null, - "crusader": [["M"]], - "crusade's": null, - "crusaders": null, - "crusader's": null, - "cruse": [["M", "S"]], - "cruse's": null, - "cruses": null, - "crushable": [["U"]], - "uncrushable": null, - "crusher": [["M"]], - "crusher's": null, - "crushing": [["Y"]], - "crushingly": null, - "crushproof": null, - "crush": [["S", "R", "D", "B", "G", "Z"]], - "crushes": null, - "crushed": null, - "crushers": null, - "Crusoe": [["M"]], - "Crusoe's": null, - "crustacean": [["M", "S"]], - "crustacean's": null, - "crustaceans": null, - "crustal": null, - "crust": [["G", "M", "D", "S"]], - "crusting": null, - "crust's": null, - "crusted": null, - "crusts": null, - "crustily": null, - "crustiness": [["S", "M"]], - "crustinesses": null, - "crustiness's": null, - "crusty": [["S", "R", "T", "P"]], - "crusties": null, - "crustier": null, - "crustiest": null, - "crutch": [["M", "D", "S", "G"]], - "crutch's": null, - "crutched": null, - "crutches": null, - "crutching": null, - "Crux": [["M"]], - "Crux's": null, - "crux": [["M", "S"]], - "crux's": null, - "cruxes": null, - "Cruz": [["M"]], - "Cruz's": null, - "crybaby": [["M", "S"]], - "crybaby's": null, - "crybabies": null, - "cry": [["J", "G", "D", "R", "S", "Z"]], - "cryings": null, - "crying": null, - "criers": null, - "cryogenic": [["S"]], - "cryogenics": [["M"]], - "cryogenics's": null, - "cryostat": [["M"]], - "cryostat's": null, - "cryosurgery": [["S", "M"]], - "cryosurgeries": null, - "cryosurgery's": null, - "cryptanalysis": [["M"]], - "cryptanalysis's": null, - "cryptanalyst": [["M"]], - "cryptanalyst's": null, - "cryptanalytic": null, - "crypt": [["C", "S"]], - "decrypt": [["G", "D"]], - "decrypts": null, - "crypts": null, - "cryptic": null, - "cryptically": null, - "cryptogram": [["M", "S"]], - "cryptogram's": null, - "cryptograms": null, - "cryptographer": [["M", "S"]], - "cryptographer's": null, - "cryptographers": null, - "cryptographic": null, - "cryptographically": null, - "cryptography": [["M", "S"]], - "cryptography's": null, - "cryptographies": null, - "cryptologic": null, - "cryptological": null, - "cryptologist": [["M"]], - "cryptologist's": null, - "cryptology": [["M"]], - "cryptology's": null, - "Cryptozoic": [["M"]], - "Cryptozoic's": null, - "crypt's": null, - "crystalline": [["S"]], - "crystallines": null, - "crystallite": [["S", "M"]], - "crystallites": null, - "crystallite's": null, - "crystallization": [["A", "M", "S"]], - "recrystallization": null, - "recrystallization's": null, - "recrystallizations": null, - "crystallization's": null, - "crystallizations": null, - "crystallized": [["U", "A"]], - "uncrystallized": null, - "recrystallized": null, - "crystallizes": [["A"]], - "recrystallizes": null, - "crystallize": [["S", "R", "D", "Z", "G"]], - "crystallizer": null, - "crystallizers": null, - "crystallizing": [["A"]], - "recrystallizing": null, - "crystallographer": [["M", "S"]], - "crystallographer's": null, - "crystallographers": null, - "crystallographic": null, - "crystallography": [["M"]], - "crystallography's": null, - "Crystal": [["M"]], - "Crystal's": null, - "crystal": [["S", "M"]], - "crystals": null, - "crystal's": null, - "Crysta": [["M"]], - "Crysta's": null, - "Crystie": [["M"]], - "Crystie's": null, - "Cs": null, - "C's": null, - "cs": [["E", "A"]], - "discs": null, - "recs": null, - "cs's": null, - "CST": null, - "ct": null, - "CT": null, - "Cthrine": [["M"]], - "Cthrine's": null, - "Ct": [["M"]], - "Ct's": null, - "ctn": null, - "ctr": null, - "Cuba": [["M"]], - "Cuba's": null, - "Cuban": [["S"]], - "Cubans": null, - "cubbed": null, - "cubbing": null, - "cubbyhole": [["M", "S"]], - "cubbyhole's": null, - "cubbyholes": null, - "cuber": [["M"]], - "cuber's": null, - "cube": [["S", "M"]], - "cubes": null, - "cube's": null, - "cubical": [["Y"]], - "cubically": null, - "cubicle": [["S", "M"]], - "cubicles": null, - "cubicle's": null, - "cubic": [["Y", "S"]], - "cubicly": null, - "cubics": null, - "cubism": [["S", "M"]], - "cubisms": null, - "cubism's": null, - "cubist": [["M", "S"]], - "cubist's": null, - "cubists": null, - "cubit": [["M", "S"]], - "cubit's": null, - "cubits": null, - "cub": [["M", "D", "R", "S", "Z", "G"]], - "cub's": null, - "cubed": null, - "cubs": null, - "cubers": null, - "cubing": null, - "cuboid": null, - "Cuchulain": [["M"]], - "Cuchulain's": null, - "cuckold": [["G", "S", "D", "M"]], - "cuckolding": null, - "cuckolds": null, - "cuckolded": null, - "cuckold's": null, - "cuckoldry": [["M", "S"]], - "cuckoldry's": null, - "cuckoldries": null, - "cuckoo": [["S", "G", "D", "M"]], - "cuckoos": null, - "cuckooing": null, - "cuckooed": null, - "cuckoo's": null, - "cucumber": [["M", "S"]], - "cucumber's": null, - "cucumbers": null, - "cuddle": [["G", "S", "D"]], - "cuddling": null, - "cuddles": null, - "cuddled": null, - "cuddly": [["T", "R", "P"]], - "cuddliest": null, - "cuddlier": null, - "cuddliness": null, - "cu": [["D", "G"]], - "cued": null, - "cuing": null, - "cudgel": [["G", "S", "J", "M", "D"]], - "cudgeling": null, - "cudgels": null, - "cudgelings": null, - "cudgel's": null, - "cudgeled": null, - "cud": [["M", "S"]], - "cud's": null, - "cuds": null, - "cue": [["M", "S"]], - "cue's": null, - "cues": null, - "cuff": [["G", "S", "D", "M"]], - "cuffing": null, - "cuffs": null, - "cuffed": null, - "cuff's": null, - "Cuisinart": [["M"]], - "Cuisinart's": null, - "cuisine": [["M", "S"]], - "cuisine's": null, - "cuisines": null, - "Culbertson": [["M"]], - "Culbertson's": null, - "culinary": null, - "Cullan": [["M"]], - "Cullan's": null, - "cull": [["D", "R", "G", "S"]], - "culled": null, - "culler": [["M"]], - "culling": null, - "culls": null, - "cullender's": null, - "Cullen": [["M"]], - "Cullen's": null, - "culler's": null, - "Culley": [["M"]], - "Culley's": null, - "Cullie": [["M"]], - "Cullie's": null, - "Cullin": [["M"]], - "Cullin's": null, - "Cull": [["M", "N"]], - "Cull's": null, - "Cully": [["M"]], - "Cully's": null, - "culminate": [["X", "S", "D", "G", "N"]], - "culminations": null, - "culminates": null, - "culminated": null, - "culminating": null, - "culmination": [["M"]], - "culmination's": null, - "culotte": [["S"]], - "culottes": null, - "culpability": [["M", "S"]], - "culpability's": null, - "culpabilities": null, - "culpable": [["I"]], - "inculpable": null, - "culpableness": [["M"]], - "culpableness's": null, - "culpably": null, - "culpa": [["S", "M"]], - "culpas": null, - "culpa's": null, - "culprit": [["S", "M"]], - "culprits": null, - "culprit's": null, - "cultism": [["S", "M"]], - "cultisms": null, - "cultism's": null, - "cultist": [["S", "M"]], - "cultists": null, - "cultist's": null, - "cultivable": null, - "cultivated": [["U"]], - "uncultivated": null, - "cultivate": [["X", "B", "S", "D", "G", "N"]], - "cultivations": null, - "cultivatable": null, - "cultivates": null, - "cultivating": null, - "cultivation": [["M"]], - "cultivation's": null, - "cultivator": [["S", "M"]], - "cultivators": null, - "cultivator's": null, - "cult": [["M", "S"]], - "cult's": null, - "cults": null, - "cultural": [["Y"]], - "culturally": null, - "cultured": [["U"]], - "uncultured": null, - "culture": [["S", "D", "G", "M"]], - "cultures": null, - "culturing": null, - "culture's": null, - "Culver": [["M", "S"]], - "Culver's": null, - "Culvers": null, - "culvert": [["S", "M"]], - "culverts": null, - "culvert's": null, - "Cu": [["M"]], - "Cu's": null, - "cumber": [["D", "S", "G"]], - "cumbered": null, - "cumbers": null, - "cumbering": null, - "Cumberland": [["M"]], - "Cumberland's": null, - "cumbersomeness": [["M", "S"]], - "cumbersomeness's": null, - "cumbersomenesses": null, - "cumbersome": [["Y", "P"]], - "cumbersomely": null, - "cumbrous": null, - "cumin": [["M", "S"]], - "cumin's": null, - "cumins": null, - "cummerbund": [["M", "S"]], - "cummerbund's": null, - "cummerbunds": null, - "Cummings": null, - "cumquat's": null, - "cum": [["S"]], - "cums": null, - "cumulate": [["X", "V", "N", "G", "S", "D"]], - "cumulations": null, - "cumulative": [["Y"]], - "cumulation": [["M"]], - "cumulating": null, - "cumulates": null, - "cumulated": null, - "cumulation's": null, - "cumulatively": null, - "cumuli": null, - "cumulonimbi": null, - "cumulonimbus": [["M"]], - "cumulonimbus's": null, - "cumulus": [["M"]], - "cumulus's": null, - "Cunard": [["M"]], - "Cunard's": null, - "cuneiform": [["S"]], - "cuneiforms": null, - "cunnilingus": [["S", "M"]], - "cunnilinguses": null, - "cunnilingus's": null, - "Cunningham": [["M"]], - "Cunningham's": null, - "cunningness": [["M"]], - "cunningness's": null, - "cunning": [["R", "Y", "S", "P", "T"]], - "cunninger": null, - "cunningly": null, - "cunnings": null, - "cunningest": null, - "cunt": [["S", "M", "!"]], - "cunts": null, - "cunt's": null, - "cupboard": [["S", "M"]], - "cupboards": null, - "cupboard's": null, - "cupcake": [["S", "M"]], - "cupcakes": null, - "cupcake's": null, - "Cupertino": [["M"]], - "Cupertino's": null, - "cupful": [["S", "M"]], - "cupfuls": null, - "cupful's": null, - "cupidinously": null, - "cupidity": [["M", "S"]], - "cupidity's": null, - "cupidities": null, - "Cupid": [["M"]], - "Cupid's": null, - "cupid": [["S"]], - "cupids": null, - "cup": [["M", "S"]], - "cup's": null, - "cups": null, - "cupola": [["M", "D", "G", "S"]], - "cupola's": null, - "cupolaed": null, - "cupolaing": null, - "cupolas": null, - "cupped": null, - "cupping": [["M"]], - "cupping's": null, - "cupric": null, - "cuprous": null, - "curability": [["M", "S"]], - "curability's": null, - "curabilities": null, - "curable": [["I", "P"]], - "incurable": [["S"]], - "incurableness": null, - "curableness": [["M", "I"]], - "curableness's": null, - "incurableness's": null, - "curably": [["I"]], - "incurably": null, - "Curacao": [["M"]], - "Curacao's": null, - "curacy": [["S", "M"]], - "curacies": null, - "curacy's": null, - "curare": [["M", "S"]], - "curare's": null, - "curares": null, - "curate": [["V", "G", "M", "S", "D"]], - "curative": [["Y", "S"]], - "curating": null, - "curate's": null, - "curates": null, - "curated": null, - "curatively": null, - "curatives": null, - "curatorial": null, - "curator": [["K", "M", "S"]], - "procurator": null, - "procurator's": null, - "procurators": null, - "curator's": null, - "curators": null, - "curbing": [["M"]], - "curbing's": null, - "curbside": null, - "curb": [["S", "J", "D", "M", "G"]], - "curbs": null, - "curbings": null, - "curbed": null, - "curb's": null, - "curbstone": [["M", "S"]], - "curbstone's": null, - "curbstones": null, - "Curcio": [["M"]], - "Curcio's": null, - "curdle": [["S", "D", "G"]], - "curdles": null, - "curdled": null, - "curdling": null, - "curd": [["S", "M", "D", "G"]], - "curds": null, - "curd's": null, - "curded": null, - "curding": null, - "cured": [["U"]], - "uncured": null, - "cure": [["K", "B", "D", "R", "S", "G", "Z"]], - "procure": [["L"]], - "procurable": [["U"]], - "procured": null, - "procurer": null, - "procures": null, - "procuring": null, - "procurers": null, - "curer": [["M", "K"]], - "cures": null, - "curing": null, - "curers": null, - "curer's": null, - "procurer's": null, - "curettage": [["S", "M"]], - "curettages": null, - "curettage's": null, - "curfew": [["S", "M"]], - "curfews": null, - "curfew's": null, - "curfs": null, - "curiae": null, - "curia": [["M"]], - "curia's": null, - "cur": [["I", "B", "S"]], - "incur": null, - "incurs": null, - "curs": [["A", "S", "D", "V", "G"]], - "Curie": [["M"]], - "Curie's": null, - "curie": [["S", "M"]], - "curies": null, - "curie's": null, - "curiosity": [["S", "M"]], - "curiosities": null, - "curiosity's": null, - "curio": [["S", "M"]], - "curios": null, - "curio's": null, - "curiousness": [["S", "M"]], - "curiousnesses": null, - "curiousness's": null, - "curious": [["T", "P", "R", "Y"]], - "curiousest": null, - "curiouser": null, - "curiously": null, - "Curitiba": [["M"]], - "Curitiba's": null, - "curium": [["M", "S"]], - "curium's": null, - "curiums": null, - "curler": [["S", "M"]], - "curlers": null, - "curler's": null, - "curlew": [["M", "S"]], - "curlew's": null, - "curlews": null, - "curlicue": [["M", "G", "D", "S"]], - "curlicue's": null, - "curlicuing": null, - "curlicued": null, - "curlicues": null, - "curliness": [["S", "M"]], - "curlinesses": null, - "curliness's": null, - "curling": [["M"]], - "curling's": null, - "curl": [["U", "D", "S", "G"]], - "uncurl": null, - "uncurled": null, - "uncurls": null, - "uncurling": null, - "curled": null, - "curls": null, - "curlycue's": null, - "curly": [["P", "R", "T"]], - "curlier": null, - "curliest": null, - "curmudgeon": [["M", "Y", "S"]], - "curmudgeon's": null, - "curmudgeonly": null, - "curmudgeons": null, - "Curran": [["M"]], - "Curran's": null, - "currant": [["S", "M"]], - "currants": null, - "currant's": null, - "curred": [["A", "F", "I"]], - "recurred": null, - "concurred": null, - "incurred": null, - "currency's": null, - "currency": [["S", "F"]], - "currencies": null, - "concurrencies": null, - "concurrency": null, - "current": [["F", "S", "Y"]], - "concurrent": null, - "concurrents": null, - "concurrently": null, - "currents": null, - "currently": [["A"]], - "recurrently": null, - "currentness": [["M"]], - "currentness's": null, - "Currey": [["M"]], - "Currey's": null, - "curricle": [["M"]], - "curricle's": null, - "curricula": null, - "curricular": null, - "curriculum": [["M"]], - "curriculum's": null, - "Currie": [["M"]], - "Currie's": null, - "currier": [["M"]], - "currier's": null, - "Currier": [["M"]], - "Currier's": null, - "curring": [["F", "A", "I"]], - "concurring": null, - "recurring": null, - "incurring": null, - "Curr": [["M"]], - "Curr's": null, - "currycomb": [["D", "M", "G", "S"]], - "currycombed": null, - "currycomb's": null, - "currycombing": null, - "currycombs": null, - "Curry": [["M", "R"]], - "Curry's": null, - "curry": [["R", "S", "D", "M", "G"]], - "curries": null, - "curried": null, - "curry's": null, - "currying": null, - "cur's": null, - "recurs": null, - "recurses": null, - "recursed": null, - "recursing": null, - "curses": null, - "cursed": [["Y", "R", "P", "T"]], - "cursive": [["E", "P", "Y", "A"]], - "cursing": null, - "curse": [["A"]], - "recurse": [["N", "X"]], - "cursedness": [["M"]], - "cursedness's": null, - "cursedly": null, - "curseder": null, - "cursedest": null, - "curse's": null, - "discursive": null, - "discursiveness": [["S"]], - "discursively": null, - "cursiveness": [["E", "M"]], - "recursiveness": null, - "cursively": null, - "recursively": null, - "recursive": null, - "discursiveness's": null, - "cursiveness's": null, - "cursives": null, - "cursor": [["D", "M", "S", "G"]], - "cursored": null, - "cursor's": null, - "cursors": null, - "cursoring": null, - "cursorily": null, - "cursoriness": [["S", "M"]], - "cursorinesses": null, - "cursoriness's": null, - "cursory": [["P"]], - "curtailer": [["M"]], - "curtailer's": null, - "curtail": [["L", "S", "G", "D", "R"]], - "curtailment": [["S", "M"]], - "curtails": null, - "curtailing": null, - "curtailed": null, - "curtailments": null, - "curtailment's": null, - "curtain": [["G", "S", "M", "D"]], - "curtaining": null, - "curtains": null, - "curtain's": null, - "curtained": null, - "Curtice": [["M"]], - "Curtice's": null, - "Curtis": [["M"]], - "Curtis's": null, - "Curt": [["M"]], - "Curt's": null, - "curtness": [["M", "S"]], - "curtness's": null, - "curtnesses": null, - "curtsey's": null, - "curtsy": [["S", "D", "M", "G"]], - "curtsies": null, - "curtsied": null, - "curtsy's": null, - "curtsying": null, - "curt": [["T", "Y", "R", "P"]], - "curtest": null, - "curtly": null, - "curter": null, - "curvaceousness": [["S"]], - "curvaceousnesses": null, - "curvaceous": [["Y", "P"]], - "curvaceously": null, - "curvature": [["M", "S"]], - "curvature's": null, - "curvatures": null, - "curved": [["A"]], - "recurved": null, - "curved's": null, - "curve": [["D", "S", "G", "M"]], - "curves": null, - "curving": [["M"]], - "curve's": null, - "curvilinearity": [["M"]], - "curvilinearity's": null, - "curvilinear": [["Y"]], - "curvilinearly": null, - "curving's": null, - "curvy": [["R", "T"]], - "curvier": null, - "curviest": null, - "cushion": [["S", "M", "D", "G"]], - "cushions": null, - "cushion's": null, - "cushioned": null, - "cushioning": null, - "Cushman": [["M"]], - "Cushman's": null, - "cushy": [["T", "R"]], - "cushiest": null, - "cushier": null, - "cuspid": [["M", "S"]], - "cuspid's": null, - "cuspids": null, - "cuspidor": [["M", "S"]], - "cuspidor's": null, - "cuspidors": null, - "cusp": [["M", "S"]], - "cusp's": null, - "cusps": null, - "cussedness": [["M"]], - "cussedness's": null, - "cussed": [["Y", "P"]], - "cussedly": null, - "cuss": [["E", "G", "D", "S", "R"]], - "discuss": null, - "discussing": null, - "discussed": [["U", "A"]], - "discusses": null, - "discusser": [["M"]], - "cussing": [["F"]], - "cusses": [["F"]], - "cusser": null, - "concusses": null, - "concussing": null, - "cuss's": null, - "custard": [["M", "S"]], - "custard's": null, - "custards": null, - "Custer": [["M"]], - "Custer's": null, - "custodial": null, - "custodianship": [["M", "S"]], - "custodianship's": null, - "custodianships": null, - "custodian": [["S", "M"]], - "custodians": null, - "custodian's": null, - "custody": [["M", "S"]], - "custody's": null, - "custodies": null, - "customarily": null, - "customariness": [["M"]], - "customariness's": null, - "customary": [["P", "S"]], - "customaries": null, - "customer": [["M"]], - "customer's": null, - "customhouse": [["S"]], - "customhouses": null, - "customization": [["S", "M"]], - "customizations": null, - "customization's": null, - "customize": [["Z", "G", "B", "S", "R", "D"]], - "customizers": null, - "customizing": null, - "customizable": null, - "customizes": null, - "customizer": null, - "customized": null, - "custom": [["S", "M", "R", "Z"]], - "customs": null, - "custom's": null, - "customers": null, - "cutaneous": [["Y"]], - "cutaneously": null, - "cutaway": [["S", "M"]], - "cutaways": null, - "cutaway's": null, - "cutback": [["S", "M"]], - "cutbacks": null, - "cutback's": null, - "cuteness": [["M", "S"]], - "cuteness's": null, - "cutenesses": null, - "cute": [["S", "P", "Y"]], - "cutes": null, - "cutely": null, - "cutesy": [["R", "T"]], - "cutesier": null, - "cutesiest": null, - "cuticle": [["S", "M"]], - "cuticles": null, - "cuticle's": null, - "cutlass": [["M", "S"]], - "cutlass's": null, - "cutlasses": null, - "cutler": [["S", "M"]], - "cutlers": null, - "cutler's": null, - "cutlery": [["M", "S"]], - "cutlery's": null, - "cutleries": null, - "cutlet": [["S", "M"]], - "cutlets": null, - "cutlet's": null, - "cut": [["M", "R", "S", "T"]], - "cut's": null, - "cuter": null, - "cuts": null, - "cutest": null, - "cutoff": [["M", "S"]], - "cutoff's": null, - "cutoffs": null, - "cutout": [["S", "M"]], - "cutouts": null, - "cutout's": null, - "cutter": [["S", "M"]], - "cutters": null, - "cutter's": null, - "cutthroat": [["S", "M"]], - "cutthroats": null, - "cutthroat's": null, - "cutting": [["M", "Y", "S"]], - "cutting's": null, - "cuttingly": null, - "cuttings": null, - "cuttlebone": [["S", "M"]], - "cuttlebones": null, - "cuttlebone's": null, - "cuttlefish": [["M", "S"]], - "cuttlefish's": null, - "cuttlefishes": null, - "cuttle": [["M"]], - "cuttle's": null, - "cutup": [["M", "S"]], - "cutup's": null, - "cutups": null, - "cutworm": [["M", "S"]], - "cutworm's": null, - "cutworms": null, - "Cuvier": [["M"]], - "Cuvier's": null, - "Cuzco": [["M"]], - "Cuzco's": null, - "CV": null, - "cw": null, - "cwt": null, - "Cyanamid": [["M"]], - "Cyanamid's": null, - "cyanate": [["M"]], - "cyanate's": null, - "cyanic": null, - "cyanide": [["G", "M", "S", "D"]], - "cyaniding": null, - "cyanide's": null, - "cyanides": null, - "cyanided": null, - "cyan": [["M", "S"]], - "cyan's": null, - "cyans": null, - "cyanogen": [["M"]], - "cyanogen's": null, - "Cybele": [["M"]], - "Cybele's": null, - "cybernetic": [["S"]], - "cybernetics": [["M"]], - "cybernetics's": null, - "cyberpunk": [["S"]], - "cyberpunks": null, - "cyberspace": [["S"]], - "cyberspaces": null, - "Cybill": [["M"]], - "Cybill's": null, - "Cybil": [["M"]], - "Cybil's": null, - "Cyb": [["M"]], - "Cyb's": null, - "cyborg": [["S"]], - "cyborgs": null, - "Cyclades": null, - "cyclamen": [["M", "S"]], - "cyclamen's": null, - "cyclamens": null, - "cycle": [["A", "S", "D", "G"]], - "recycle": [["B", "Z"]], - "recycles": null, - "recycled": null, - "recycling": null, - "cycles": null, - "cycled": null, - "cycling": [["M"]], - "cycler": null, - "cycle's": null, - "cycleway": [["S"]], - "cycleways": null, - "cyclic": null, - "cyclical": [["S", "Y"]], - "cyclicals": null, - "cyclically": null, - "cycling's": null, - "cyclist": [["M", "S"]], - "cyclist's": null, - "cyclists": null, - "cyclohexanol": null, - "cycloidal": null, - "cycloid": [["S", "M"]], - "cycloids": null, - "cycloid's": null, - "cyclometer": [["M", "S"]], - "cyclometer's": null, - "cyclometers": null, - "cyclone": [["S", "M"]], - "cyclones": null, - "cyclone's": null, - "cyclonic": null, - "cyclopean": null, - "cyclopedia": [["M", "S"]], - "cyclopedia's": null, - "cyclopedias": null, - "cyclopes": null, - "Cyclopes": null, - "cyclops": null, - "Cyclops": [["M"]], - "Cyclops's": null, - "cyclotron": [["M", "S"]], - "cyclotron's": null, - "cyclotrons": null, - "cyder": [["S", "M"]], - "cyders": null, - "cyder's": null, - "cygnet": [["M", "S"]], - "cygnet's": null, - "cygnets": null, - "Cygnus": [["M"]], - "Cygnus's": null, - "cylinder": [["G", "M", "D", "S"]], - "cylindering": null, - "cylinder's": null, - "cylindered": null, - "cylinders": null, - "cylindric": null, - "cylindrical": [["Y"]], - "cylindrically": null, - "Cy": [["M"]], - "Cy's": null, - "cymbalist": [["M", "S"]], - "cymbalist's": null, - "cymbalists": null, - "cymbal": [["S", "M"]], - "cymbals": null, - "cymbal's": null, - "Cymbre": [["M"]], - "Cymbre's": null, - "Cynde": [["M"]], - "Cynde's": null, - "Cyndia": [["M"]], - "Cyndia's": null, - "Cyndie": [["M"]], - "Cyndie's": null, - "Cyndi": [["M"]], - "Cyndi's": null, - "Cyndy": [["M"]], - "Cyndy's": null, - "cynical": [["U", "Y"]], - "uncynical": null, - "uncynically": null, - "cynically": null, - "cynicism": [["M", "S"]], - "cynicism's": null, - "cynicisms": null, - "cynic": [["M", "S"]], - "cynic's": null, - "cynics": null, - "cynosure": [["S", "M"]], - "cynosures": null, - "cynosure's": null, - "Cynthea": [["M"]], - "Cynthea's": null, - "Cynthia": [["M"]], - "Cynthia's": null, - "Cynthie": [["M"]], - "Cynthie's": null, - "Cynthy": [["M"]], - "Cynthy's": null, - "cypher": [["M", "G", "S", "D"]], - "cypher's": null, - "cyphering": null, - "cyphers": null, - "cyphered": null, - "cypreses": null, - "cypress": [["S", "M"]], - "cypresses": null, - "cypress's": null, - "Cyprian": null, - "Cypriot": [["S", "M"]], - "Cypriots": null, - "Cypriot's": null, - "Cyprus": [["M"]], - "Cyprus's": null, - "Cyrano": [["M"]], - "Cyrano's": null, - "Cyrille": [["M"]], - "Cyrille's": null, - "Cyrillic": null, - "Cyrill": [["M"]], - "Cyrill's": null, - "Cyrillus": [["M"]], - "Cyrillus's": null, - "Cyril": [["M"]], - "Cyril's": null, - "Cyrus": [["M"]], - "Cyrus's": null, - "cystic": null, - "cyst": [["M", "S"]], - "cyst's": null, - "cysts": null, - "cytochemistry": [["M"]], - "cytochemistry's": null, - "cytochrome": [["M"]], - "cytochrome's": null, - "cytologist": [["M", "S"]], - "cytologist's": null, - "cytologists": null, - "cytology": [["M", "S"]], - "cytology's": null, - "cytologies": null, - "cytolysis": [["M"]], - "cytolysis's": null, - "cytoplasmic": null, - "cytoplasm": [["S", "M"]], - "cytoplasms": null, - "cytoplasm's": null, - "cytosine": [["M", "S"]], - "cytosine's": null, - "cytosines": null, - "cytotoxic": null, - "CZ": null, - "czarevitch": [["M"]], - "czarevitch's": null, - "czarina": [["S", "M"]], - "czarinas": null, - "czarina's": null, - "czarism": [["M"]], - "czarism's": null, - "czarist": [["S"]], - "czarists": null, - "czarship": null, - "czar": [["S", "M"]], - "czars": null, - "czar's": null, - "Czech": null, - "Czechoslovakia": [["M"]], - "Czechoslovakia's": null, - "Czechoslovakian": [["S"]], - "Czechoslovakians": null, - "Czechoslovak": [["S"]], - "Czechoslovaks": null, - "Czechs": null, - "Czerniak": [["M"]], - "Czerniak's": null, - "Czerny": [["M"]], - "Czerny's": null, - "D": null, - "DA": null, - "dabbed": null, - "dabber": [["M", "S"]], - "dabber's": null, - "dabbers": null, - "dabbing": null, - "dabbler": [["M"]], - "dabbler's": null, - "dabble": [["R", "S", "D", "Z", "G"]], - "dabbles": null, - "dabbled": null, - "dabblers": null, - "dabbling": null, - "dab": [["S"]], - "dabs": null, - "Dacca's": null, - "dace": [["M", "S"]], - "dace's": null, - "daces": null, - "Dacey": [["M"]], - "Dacey's": null, - "dacha": [["S", "M"]], - "dachas": null, - "dacha's": null, - "Dachau": [["M"]], - "Dachau's": null, - "dachshund": [["S", "M"]], - "dachshunds": null, - "dachshund's": null, - "Dacia": [["M"]], - "Dacia's": null, - "Dacie": [["M"]], - "Dacie's": null, - "Dacron": [["M", "S"]], - "Dacron's": null, - "Dacrons": null, - "dactylic": [["S"]], - "dactylics": null, - "dactyl": [["M", "S"]], - "dactyl's": null, - "dactyls": null, - "Dacy": [["M"]], - "Dacy's": null, - "Dadaism": [["M"]], - "Dadaism's": null, - "dadaism": [["S"]], - "dadaisms": null, - "Dadaist": [["M"]], - "Dadaist's": null, - "dadaist": [["S"]], - "dadaists": null, - "Dada": [["M"]], - "Dada's": null, - "daddy": [["S", "M"]], - "daddies": null, - "daddy's": null, - "Dade": [["M"]], - "Dade's": null, - "dado": [["D", "M", "G"]], - "dadoed": null, - "dado's": null, - "dadoing": null, - "dadoes": null, - "dad": [["S", "M"]], - "dads": null, - "dad's": null, - "Daedalus": [["M"]], - "Daedalus's": null, - "Dael": [["M"]], - "Dael's": null, - "daemonic": null, - "daemon": [["S", "M"]], - "daemons": null, - "daemon's": null, - "Daffie": [["M"]], - "Daffie's": null, - "Daffi": [["M"]], - "Daffi's": null, - "daffiness": [["S"]], - "daffinesses": null, - "daffodil": [["M", "S"]], - "daffodil's": null, - "daffodils": null, - "Daffy": [["M"]], - "Daffy's": null, - "daffy": [["P", "T", "R"]], - "daffiest": null, - "daffier": null, - "daftness": [["M", "S"]], - "daftness's": null, - "daftnesses": null, - "daft": [["T", "Y", "R", "P"]], - "daftest": null, - "daftly": null, - "dafter": null, - "DAG": null, - "dagger": [["D", "M", "S", "G"]], - "daggered": null, - "dagger's": null, - "daggers": null, - "daggering": null, - "Dag": [["M"]], - "Dag's": null, - "Dagmar": [["M"]], - "Dagmar's": null, - "Dagny": [["M"]], - "Dagny's": null, - "Daguerre": [["M"]], - "Daguerre's": null, - "daguerreotype": [["M", "G", "D", "S"]], - "daguerreotype's": null, - "daguerreotyping": null, - "daguerreotyped": null, - "daguerreotypes": null, - "Dagwood": [["M"]], - "Dagwood's": null, - "Dahlia": [["M"]], - "Dahlia's": null, - "dahlia": [["M", "S"]], - "dahlia's": null, - "dahlias": null, - "Dahl": [["M"]], - "Dahl's": null, - "Dahomey": [["M"]], - "Dahomey's": null, - "Daile": [["M"]], - "Daile's": null, - "dailiness": [["M", "S"]], - "dailiness's": null, - "dailinesses": null, - "daily": [["P", "S"]], - "dailies": null, - "Daimler": [["M"]], - "Daimler's": null, - "daintily": null, - "daintiness": [["M", "S"]], - "daintiness's": null, - "daintinesses": null, - "dainty": [["T", "P", "R", "S"]], - "daintiest": null, - "daintier": null, - "dainties": null, - "daiquiri": [["S", "M"]], - "daiquiris": null, - "daiquiri's": null, - "dairying": [["M"]], - "dairying's": null, - "dairyland": null, - "dairymaid": [["S", "M"]], - "dairymaids": null, - "dairymaid's": null, - "dairyman": [["M"]], - "dairyman's": null, - "dairymen": null, - "dairy": [["M", "J", "G", "S"]], - "dairy's": null, - "dairyings": null, - "dairies": null, - "dairywoman": [["M"]], - "dairywoman's": null, - "dairywomen": null, - "Daisey": [["M"]], - "Daisey's": null, - "Daisie": [["M"]], - "Daisie's": null, - "Daisi": [["M"]], - "Daisi's": null, - "dais": [["S", "M"]], - "daises": null, - "dais's": null, - "Daisy": [["M"]], - "Daisy's": null, - "daisy": [["S", "M"]], - "daisies": null, - "daisy's": null, - "Dakar": [["M"]], - "Dakar's": null, - "Dakotan": null, - "Dakota": [["S", "M"]], - "Dakotas": null, - "Dakota's": null, - "Dale": [["M"]], - "Dale's": null, - "Dalenna": [["M"]], - "Dalenna's": null, - "dale": [["S", "M", "H"]], - "dales": null, - "dale's": null, - "daleth": [["M"]], - "daleth's": null, - "Daley": [["M"]], - "Daley's": null, - "Dalhousie": [["M"]], - "Dalhousie's": null, - "Dalia": [["M"]], - "Dalia's": null, - "Dalian": [["M"]], - "Dalian's": null, - "Dalila": [["M"]], - "Dalila's": null, - "Dali": [["S", "M"]], - "Dalis": null, - "Dali's": null, - "Dallas": [["M"]], - "Dallas's": null, - "dalliance": [["S", "M"]], - "dalliances": null, - "dalliance's": null, - "dallier": [["M"]], - "dallier's": null, - "Dalli": [["M", "S"]], - "Dalli's": null, - "Dallis": null, - "Dall": [["M"]], - "Dall's": null, - "Dallon": [["M"]], - "Dallon's": null, - "dally": [["Z", "R", "S", "D", "G"]], - "dalliers": null, - "dallies": null, - "dallied": null, - "dallying": null, - "Dal": [["M"]], - "Dal's": null, - "Dalmatia": [["M"]], - "Dalmatia's": null, - "dalmatian": [["S"]], - "dalmatians": null, - "Dalmatian": [["S", "M"]], - "Dalmatians": null, - "Dalmatian's": null, - "Daloris": [["M"]], - "Daloris's": null, - "Dalston": [["M"]], - "Dalston's": null, - "Dalt": [["M"]], - "Dalt's": null, - "Dalton": [["M"]], - "Dalton's": null, - "Daly": [["M"]], - "Daly's": null, - "damageable": null, - "damaged": [["U"]], - "undamaged": null, - "damage": [["M", "Z", "G", "R", "S", "D"]], - "damage's": null, - "damagers": null, - "damaging": [["Y"]], - "damager": [["M"]], - "damages": null, - "damager's": null, - "damagingly": null, - "Damara": [["M"]], - "Damara's": null, - "Damaris": [["M"]], - "Damaris's": null, - "Damascus": [["M"]], - "Damascus's": null, - "damask": [["D", "M", "G", "S"]], - "damasked": null, - "damask's": null, - "damasking": null, - "damasks": null, - "dame": [["S", "M"]], - "dames": null, - "dame's": null, - "Dame": [["S", "M", "N"]], - "Dames": null, - "Dame's": null, - "Damion": [["M"]], - "Damian": [["M"]], - "Damian's": null, - "Damiano": [["M"]], - "Damiano's": null, - "Damien": [["M"]], - "Damien's": null, - "Damion's": null, - "Damita": [["M"]], - "Damita's": null, - "dam": [["M", "D", "S"]], - "dam's": null, - "damed": null, - "dams": null, - "dammed": null, - "damming": null, - "dammit": [["S"]], - "dammits": null, - "damnably": null, - "damnation": [["M", "S"]], - "damnation's": null, - "damnations": null, - "damnedest": [["M", "S"]], - "damnedest's": null, - "damnedests": null, - "damned": [["T", "R"]], - "damneder": null, - "damn": [["G", "S", "B", "R", "D"]], - "damning": [["Y"]], - "damns": null, - "damnable": null, - "damner": null, - "damningly": null, - "Damocles": [["M"]], - "Damocles's": null, - "Damon": [["M"]], - "Damon's": null, - "damped": [["U"]], - "undamped": null, - "dampener": [["M"]], - "dampener's": null, - "dampen": [["R", "D", "Z", "G"]], - "dampened": null, - "dampeners": null, - "dampening": null, - "damper": [["M"]], - "damper's": null, - "dampness": [["M", "S"]], - "dampness's": null, - "dampnesses": null, - "damp": [["S", "G", "Z", "T", "X", "Y", "R", "D", "N", "P"]], - "damps": null, - "damping": null, - "dampers": null, - "dampest": null, - "dampens": null, - "damply": null, - "damselfly": [["M", "S"]], - "damselfly's": null, - "damselflies": null, - "damsel": [["M", "S"]], - "damsel's": null, - "damsels": null, - "damson": [["M", "S"]], - "damson's": null, - "damsons": null, - "Dana�": null, - "Dana": [["M"]], - "Dana's": null, - "Danbury": [["M"]], - "Danbury's": null, - "dancelike": null, - "dancer": [["M"]], - "dancer's": null, - "dance": [["S", "R", "D", "J", "G", "Z"]], - "dances": null, - "danced": null, - "dancings": null, - "dancing": null, - "dancers": null, - "dandelion": [["M", "S"]], - "dandelion's": null, - "dandelions": null, - "dander": [["D", "M", "G", "S"]], - "dandered": null, - "dander's": null, - "dandering": null, - "danders": null, - "dandify": [["S", "D", "G"]], - "dandifies": null, - "dandified": null, - "dandifying": null, - "dandily": null, - "dandle": [["G", "S", "D"]], - "dandling": null, - "dandles": null, - "dandled": null, - "dandruff": [["M", "S"]], - "dandruff's": null, - "dandruffs": null, - "dandy": [["T", "R", "S", "M"]], - "dandiest": null, - "dandier": null, - "dandies": null, - "dandy's": null, - "Danelaw": [["M"]], - "Danelaw's": null, - "Danella": [["M"]], - "Danella's": null, - "Danell": [["M"]], - "Danell's": null, - "Dane": [["S", "M"]], - "Danes": null, - "Dane's": null, - "Danette": [["M"]], - "Danette's": null, - "danger": [["D", "M", "G"]], - "dangered": null, - "danger's": null, - "dangering": null, - "Dangerfield": [["M"]], - "Dangerfield's": null, - "dangerousness": [["M"]], - "dangerousness's": null, - "dangerous": [["Y", "P"]], - "dangerously": null, - "dangler": [["M"]], - "dangler's": null, - "dangle": [["Z", "G", "R", "S", "D"]], - "danglers": null, - "dangling": [["Y"]], - "dangles": null, - "dangled": null, - "danglingly": null, - "dang": [["S", "G", "Z", "R", "D"]], - "dangs": null, - "danging": null, - "dangers": null, - "danged": null, - "Danial": [["M"]], - "Danial's": null, - "Dania": [["M"]], - "Dania's": null, - "Danica": [["M"]], - "Danica's": null, - "Danice": [["M"]], - "Danice's": null, - "Daniela": [["M"]], - "Daniela's": null, - "Daniele": [["M"]], - "Daniele's": null, - "Daniella": [["M"]], - "Daniella's": null, - "Danielle": [["M"]], - "Danielle's": null, - "Daniel": [["S", "M"]], - "Daniels": null, - "Daniel's": null, - "Danielson": [["M"]], - "Danielson's": null, - "Danie": [["M"]], - "Danie's": null, - "Danika": [["M"]], - "Danika's": null, - "Danila": [["M"]], - "Danila's": null, - "Dani": [["M"]], - "Dani's": null, - "Danish": null, - "danish": [["S"]], - "danishes": null, - "Danita": [["M"]], - "Danita's": null, - "Danit": [["M"]], - "Danit's": null, - "dankness": [["M", "S"]], - "dankness's": null, - "danknesses": null, - "dank": [["T", "P", "Y", "R"]], - "dankest": null, - "dankly": null, - "danker": null, - "Danna": [["M"]], - "Danna's": null, - "Dannel": [["M"]], - "Dannel's": null, - "Dannie": [["M"]], - "Dannie's": null, - "Danni": [["M"]], - "Danni's": null, - "Dannye": [["M"]], - "Dannye's": null, - "Danny": [["M"]], - "Danny's": null, - "danseuse": [["S", "M"]], - "danseuses": null, - "danseuse's": null, - "Dan": [["S", "M"]], - "Dans": null, - "Dan's": null, - "Dante": [["M"]], - "Dante's": null, - "Danton": [["M"]], - "Danton's": null, - "Danube": [["M"]], - "Danube's": null, - "Danubian": null, - "Danville": [["M"]], - "Danville's": null, - "Danya": [["M"]], - "Danya's": null, - "Danyelle": [["M"]], - "Danyelle's": null, - "Danyette": [["M"]], - "Danyette's": null, - "Danzig": [["M"]], - "Danzig's": null, - "Daphene": [["M"]], - "Daphene's": null, - "Daphna": [["M"]], - "Daphna's": null, - "Daphne": [["M"]], - "Daphne's": null, - "dapperness": [["M"]], - "dapperness's": null, - "dapper": [["P", "S", "T", "R", "Y"]], - "dappers": null, - "dapperest": null, - "dapperer": null, - "dapperly": null, - "dapple": [["S", "D", "G"]], - "dapples": null, - "dappled": null, - "dappling": null, - "Dara": [["M"]], - "Dara's": null, - "Darbee": [["M"]], - "Darbee's": null, - "Darbie": [["M"]], - "Darbie's": null, - "Darb": [["M"]], - "Darb's": null, - "Darby": [["M"]], - "Darby's": null, - "Darcee": [["M"]], - "Darcee's": null, - "Darcey": [["M"]], - "Darcey's": null, - "Darcie": [["M"]], - "Darcie's": null, - "Darci": [["M"]], - "Darci's": null, - "D'Arcy": null, - "Darcy": [["M"]], - "Darcy's": null, - "Darda": [["M"]], - "Darda's": null, - "Dardanelles": null, - "daredevil": [["M", "S"]], - "daredevil's": null, - "daredevils": null, - "daredevilry": [["S"]], - "daredevilries": null, - "Dareen": [["M"]], - "Dareen's": null, - "Darelle": [["M"]], - "Darelle's": null, - "Darell": [["M"]], - "Darell's": null, - "Dare": [["M"]], - "Dare's": null, - "Daren": [["M"]], - "Daren's": null, - "darer": [["M"]], - "darer's": null, - "daresay": null, - "dare": [["Z", "G", "D", "R", "S", "J"]], - "darers": null, - "daring": [["P", "Y"]], - "dared": null, - "dares": null, - "darings": null, - "d'Arezzo": null, - "Daria": [["M"]], - "Daria's": null, - "Darice": [["M"]], - "Darice's": null, - "Darill": [["M"]], - "Darill's": null, - "Dari": [["M"]], - "Dari's": null, - "daringness": [["M"]], - "daringness's": null, - "daringly": null, - "Darin": [["M"]], - "Darin's": null, - "Dario": [["M"]], - "Dario's": null, - "Darius": [["M"]], - "Darius's": null, - "Darjeeling": [["M"]], - "Darjeeling's": null, - "darkener": [["M"]], - "darkener's": null, - "darken": [["R", "D", "Z", "G"]], - "darkened": null, - "darkeners": null, - "darkening": null, - "dark": [["G", "T", "X", "Y", "R", "D", "N", "S", "P"]], - "darking": null, - "darkest": null, - "darkens": null, - "darkly": [["T", "R"]], - "darker": null, - "darked": null, - "darks": null, - "darkness": [["M", "S"]], - "darkish": null, - "darkliest": null, - "darklier": null, - "darkness's": null, - "darknesses": null, - "darkroom": [["S", "M"]], - "darkrooms": null, - "darkroom's": null, - "Darla": [["M"]], - "Darla's": null, - "Darleen": [["M"]], - "Darleen's": null, - "Darlene": [["M"]], - "Darlene's": null, - "Darline": [["M"]], - "Darline's": null, - "Darling": [["M"]], - "Darling's": null, - "darlingness": [["M"]], - "darlingness's": null, - "Darlington": [["M"]], - "Darlington's": null, - "darling": [["Y", "M", "S", "P"]], - "darlingly": null, - "darling's": null, - "darlings": null, - "Darlleen": [["M"]], - "Darlleen's": null, - "Dar": [["M", "N", "H"]], - "Dar's": null, - "Darth": [["M"]], - "Darnall": [["M"]], - "Darnall's": null, - "darned": [["T", "R"]], - "darnedest": null, - "darneder": null, - "Darnell": [["M"]], - "Darnell's": null, - "darner": [["M"]], - "darner's": null, - "darn": [["G", "R", "D", "Z", "S"]], - "darning": [["M"]], - "darners": null, - "darns": null, - "darning's": null, - "Darn": [["M"]], - "Darn's": null, - "Daron": [["M"]], - "Daron's": null, - "DARPA": [["M"]], - "DARPA's": null, - "Darrelle": [["M"]], - "Darrelle's": null, - "Darrell": [["M"]], - "Darrell's": null, - "Darrel": [["M"]], - "Darrel's": null, - "Darren": [["M"]], - "Darren's": null, - "Darrick": [["M"]], - "Darrick's": null, - "Darrin": [["M"]], - "Darrin's": null, - "Darrow": [["M"]], - "Darrow's": null, - "Darryl": [["M"]], - "Darryl's": null, - "Darsey": [["M"]], - "Darsey's": null, - "Darsie": [["M"]], - "Darsie's": null, - "d'art": null, - "dartboard": [["S", "M"]], - "dartboards": null, - "dartboard's": null, - "darter": [["M"]], - "darter's": null, - "Darth's": null, - "Dartmouth": [["M"]], - "Dartmouth's": null, - "dart": [["M", "R", "D", "G", "Z", "S"]], - "dart's": null, - "darted": null, - "darting": null, - "darters": null, - "darts": null, - "Darvon": [["M"]], - "Darvon's": null, - "Darwinian": [["S"]], - "Darwinians": null, - "Darwinism": [["M", "S"]], - "Darwinism's": null, - "Darwinisms": null, - "Darwinist": [["M", "S"]], - "Darwinist's": null, - "Darwinists": null, - "Darwin": [["M"]], - "Darwin's": null, - "Darya": [["M"]], - "Darya's": null, - "Daryle": [["M"]], - "Daryle's": null, - "Daryl": [["M"]], - "Daryl's": null, - "Daryn": [["M"]], - "Daryn's": null, - "Dasha": [["M"]], - "Dasha's": null, - "dashboard": [["S", "M"]], - "dashboards": null, - "dashboard's": null, - "dasher": [["M"]], - "dasher's": null, - "dash": [["G", "Z", "S", "R", "D"]], - "dashing": [["Y"]], - "dashers": null, - "dashes": null, - "dashed": null, - "dashiki": [["S", "M"]], - "dashikis": null, - "dashiki's": null, - "dashingly": null, - "Dasie": [["M"]], - "Dasie's": null, - "Dasi": [["M"]], - "Dasi's": null, - "dastardliness": [["S", "M"]], - "dastardlinesses": null, - "dastardliness's": null, - "dastardly": [["P"]], - "dastard": [["M", "Y", "S"]], - "dastard's": null, - "dastards": null, - "Dasya": [["M"]], - "Dasya's": null, - "DAT": null, - "database": [["D", "S", "M", "G"]], - "databased": null, - "databases": null, - "database's": null, - "databasing": null, - "datafile": null, - "datagram": [["M", "S"]], - "datagram's": null, - "datagrams": null, - "data": [["M"]], - "data's": null, - "Datamation": [["M"]], - "Datamation's": null, - "Datamedia": [["M"]], - "Datamedia's": null, - "dataset": [["S"]], - "datasets": null, - "datedly": null, - "datedness": null, - "date": [["D", "R", "S", "M", "Z", "G", "V"]], - "dated": [["U"]], - "dater": [["M"]], - "dates": null, - "date's": null, - "daters": null, - "dating": null, - "dative": [["S"]], - "undated": [["I"]], - "dateless": null, - "dateline": [["D", "S", "M", "G"]], - "datelined": null, - "datelines": null, - "dateline's": null, - "datelining": null, - "dater's": null, - "Datha": [["M"]], - "Datha's": null, - "datives": null, - "Datsun": [["M"]], - "Datsun's": null, - "datum": [["M", "S"]], - "datum's": null, - "datums": null, - "dauber": [["M"]], - "dauber's": null, - "daub": [["R", "D", "S", "G", "Z"]], - "daubed": null, - "daubs": null, - "daubing": null, - "daubers": null, - "Daugherty": [["M"]], - "Daugherty's": null, - "daughter": [["M", "Y", "S"]], - "daughter's": null, - "daughterly": null, - "daughters": null, - "Daumier": [["M"]], - "Daumier's": null, - "Daune": [["M"]], - "Daune's": null, - "daunt": [["D", "S", "G"]], - "daunted": [["U"]], - "daunts": null, - "daunting": [["Y"]], - "undaunted": [["Y"]], - "dauntingly": null, - "dauntlessness": [["S", "M"]], - "dauntlessnesses": null, - "dauntlessness's": null, - "dauntless": [["P", "Y"]], - "dauntlessly": null, - "dauphin": [["S", "M"]], - "dauphins": null, - "dauphin's": null, - "Davao": [["M"]], - "Davao's": null, - "Daveen": [["M"]], - "Daveen's": null, - "Dave": [["M"]], - "Dave's": null, - "Daven": [["M"]], - "Daven's": null, - "Davenport": [["M"]], - "Davenport's": null, - "davenport": [["M", "S"]], - "davenport's": null, - "davenports": null, - "Daveta": [["M"]], - "Daveta's": null, - "Davey": [["M"]], - "Davey's": null, - "Davida": [["M"]], - "Davida's": null, - "Davidde": [["M"]], - "Davidde's": null, - "Davide": [["M"]], - "Davide's": null, - "David": [["S", "M"]], - "Davids": null, - "David's": null, - "Davidson": [["M"]], - "Davidson's": null, - "Davie": [["M"]], - "Davie's": null, - "Davina": [["M"]], - "Davina's": null, - "Davine": [["M"]], - "Davine's": null, - "Davinich": [["M"]], - "Davinich's": null, - "Davin": [["M"]], - "Davin's": null, - "Davis": [["M"]], - "Davis's": null, - "Davita": [["M"]], - "Davita's": null, - "davit": [["S", "M"]], - "davits": null, - "davit's": null, - "Dav": [["M", "N"]], - "Dav's": null, - "Davon": [["M"]], - "Davon's": null, - "Davy": [["S", "M"]], - "Davies": null, - "Davy's": null, - "dawdler": [["M"]], - "dawdler's": null, - "dawdle": [["Z", "G", "R", "S", "D"]], - "dawdlers": null, - "dawdling": null, - "dawdles": null, - "dawdled": null, - "Dawes": [["M"]], - "Dawes's": null, - "Dawna": [["M"]], - "Dawna's": null, - "dawn": [["G", "S", "D", "M"]], - "dawning": null, - "dawns": null, - "dawned": null, - "dawn's": null, - "Dawn": [["M"]], - "Dawn's": null, - "Dawson": [["M"]], - "Dawson's": null, - "daybed": [["S"]], - "daybeds": null, - "daybreak": [["S", "M"]], - "daybreaks": null, - "daybreak's": null, - "daycare": [["S"]], - "daycares": null, - "daydreamer": [["M"]], - "daydreamer's": null, - "daydream": [["R", "D", "M", "S", "Z", "G"]], - "daydreamed": null, - "daydream's": null, - "daydreams": null, - "daydreamers": null, - "daydreaming": null, - "Dayle": [["M"]], - "Dayle's": null, - "daylight": [["G", "S", "D", "M"]], - "daylighting": null, - "daylights": null, - "daylighted": null, - "daylight's": null, - "Day": [["M"]], - "Day's": null, - "Dayna": [["M"]], - "Dayna's": null, - "daysack": null, - "day": [["S", "M"]], - "days": null, - "day's": null, - "daytime": [["S", "M"]], - "daytimes": null, - "daytime's": null, - "Dayton": [["M"]], - "Dayton's": null, - "dazed": [["P", "Y"]], - "dazedness": null, - "dazedly": null, - "daze": [["D", "S", "G"]], - "dazes": null, - "dazing": null, - "dazzler": [["M"]], - "dazzler's": null, - "dazzle": [["Z", "G", "J", "R", "S", "D"]], - "dazzlers": null, - "dazzling": [["Y"]], - "dazzlings": null, - "dazzles": null, - "dazzled": null, - "dazzlingly": null, - "db": null, - "DB": null, - "dbl": null, - "dB": [["M"]], - "dB's": null, - "DBMS": null, - "DC": null, - "DD": null, - "Ddene": [["M"]], - "Ddene's": null, - "DDS": null, - "DDT": null, - "DE": null, - "deacon": [["D", "S", "M", "G"]], - "deaconed": null, - "deacons": null, - "deacon's": null, - "deaconing": null, - "deaconess": [["M", "S"]], - "deaconess's": null, - "deaconesses": null, - "deadbeat": [["S", "M"]], - "deadbeats": null, - "deadbeat's": null, - "deadbolt": [["S"]], - "deadbolts": null, - "deadener": [["M"]], - "deadener's": null, - "deadening": [["M", "Y"]], - "deadening's": null, - "deadeningly": null, - "deaden": [["R", "D", "G"]], - "deadened": null, - "deadhead": [["M", "S"]], - "deadhead's": null, - "deadheads": null, - "deadline": [["M", "G", "D", "S"]], - "deadline's": null, - "deadlining": null, - "deadlined": null, - "deadlines": null, - "deadliness": [["S", "M"]], - "deadlinesses": null, - "deadliness's": null, - "deadlock": [["M", "G", "D", "S"]], - "deadlock's": null, - "deadlocking": null, - "deadlocked": null, - "deadlocks": null, - "deadly": [["R", "P", "T"]], - "deadlier": null, - "deadliest": null, - "deadness": [["M"]], - "deadness's": null, - "deadpanned": null, - "deadpanner": null, - "deadpanning": null, - "deadpan": [["S"]], - "deadpans": null, - "dead": [["P", "T", "X", "Y", "R", "N"]], - "deadest": null, - "deadens": null, - "deader": null, - "deadwood": [["S", "M"]], - "deadwoods": null, - "deadwood's": null, - "deafening": [["M", "Y"]], - "deafening's": null, - "deafeningly": null, - "deafen": [["J", "G", "D"]], - "deafenings": null, - "deafened": null, - "deafness": [["M", "S"]], - "deafness's": null, - "deafnesses": null, - "deaf": [["T", "X", "P", "Y", "R", "N"]], - "deafest": null, - "deafens": null, - "deafly": null, - "deafer": null, - "dealer": [["M"]], - "dealer's": null, - "dealership": [["M", "S"]], - "dealership's": null, - "dealerships": null, - "dealing": [["M"]], - "dealing's": null, - "deallocator": null, - "deal": [["R", "S", "G", "Z", "J"]], - "deals": null, - "dealers": null, - "dealings": null, - "dealt": null, - "Deana": [["M"]], - "Deana's": null, - "deaned": null, - "dean's": null, - "deaning": null, - "Deandre": [["M"]], - "Deandre's": null, - "Deane": [["M"]], - "Deane's": null, - "deanery": [["M", "S"]], - "deanery's": null, - "deaneries": null, - "Dean": [["M"]], - "Dean's": null, - "Deanna": [["M"]], - "Deanna's": null, - "Deanne": [["M"]], - "Deanne's": null, - "Deann": [["M"]], - "Deann's": null, - "deanship": [["S", "M"]], - "deanships": null, - "deanship's": null, - "Dearborn": [["M"]], - "Dearborn's": null, - "dearness": [["M", "S"]], - "dearness's": null, - "dearnesses": null, - "dearth": [["M"]], - "dearth's": null, - "dearths": null, - "dear": [["T", "Y", "R", "H", "P", "S"]], - "dearest": null, - "dearly": null, - "dearer": null, - "dears": null, - "deary": [["M", "S"]], - "deary's": null, - "dearies": null, - "deassign": null, - "deathbed": [["M", "S"]], - "deathbed's": null, - "deathbeds": null, - "deathblow": [["S", "M"]], - "deathblows": null, - "deathblow's": null, - "deathless": [["Y"]], - "deathlessly": null, - "deathlike": null, - "deathly": [["T", "R"]], - "deathliest": null, - "deathlier": null, - "death": [["M", "Y"]], - "death's": null, - "deaths": null, - "deathtrap": [["S", "M"]], - "deathtraps": null, - "deathtrap's": null, - "deathward": null, - "deathwatch": [["M", "S"]], - "deathwatch's": null, - "deathwatches": null, - "debacle": [["S", "M"]], - "debacles": null, - "debacle's": null, - "debarkation": [["S", "M"]], - "debarkations": null, - "debarkation's": null, - "debark": [["G"]], - "debarking": null, - "debar": [["L"]], - "debarment": [["S", "M"]], - "debarments": null, - "debarment's": null, - "debarring": null, - "debaser's": null, - "debatable": [["U"]], - "undebatable": null, - "debate's": null, - "debaters": null, - "debater's": null, - "debauchedness": [["M"]], - "debauchedness's": null, - "debauched": [["P", "Y"]], - "debauchedly": null, - "debauchee": [["S", "M"]], - "debauchees": null, - "debauchee's": null, - "debaucher": [["M"]], - "debaucher's": null, - "debauchery": [["S", "M"]], - "debaucheries": null, - "debauchery's": null, - "debauch": [["G", "D", "R", "S"]], - "debauching": null, - "debauches": null, - "Debbie": [["M"]], - "Debbie's": null, - "Debbi": [["M"]], - "Debbi's": null, - "Debby": [["M"]], - "Debby's": null, - "Debee": [["M"]], - "Debee's": null, - "debenture": [["M", "S"]], - "debenture's": null, - "debentures": null, - "Debera": [["M"]], - "Debera's": null, - "debilitate": [["N", "G", "X", "S", "D"]], - "debilitation": [["M"]], - "debilitating": null, - "debilitations": null, - "debilitates": null, - "debilitated": null, - "debilitation's": null, - "debility": [["M", "S"]], - "debility's": null, - "debilities": null, - "Debi": [["M"]], - "Debi's": null, - "debit": [["D", "G"]], - "debited": null, - "debiting": null, - "deb": [["M", "S"]], - "deb's": null, - "debs": null, - "Deb": [["M", "S"]], - "Deb's": null, - "Debs": null, - "debonairness": [["S", "M"]], - "debonairnesses": null, - "debonairness's": null, - "debonair": [["P", "Y"]], - "debonairly": null, - "Deborah": [["M"]], - "Deborah's": null, - "Debora": [["M"]], - "Debora's": null, - "Debor": [["M"]], - "Debor's": null, - "debouch": [["D", "S", "G"]], - "debouched": null, - "debouches": null, - "debouching": null, - "Debra": [["M"]], - "Debra's": null, - "debrief": [["G", "J"]], - "debriefing": null, - "debriefings": null, - "debris": [["M"]], - "debris's": null, - "debtor": [["S", "M"]], - "debtors": null, - "debtor's": null, - "debt": [["S", "M"]], - "debts": null, - "debt's": null, - "Debussy": [["M"]], - "Debussy's": null, - "d�butante": [["S", "M"]], - "d�butantes": null, - "d�butante's": null, - "debut's": null, - "debuted": null, - "debuting": null, - "decade": [["M", "S"]], - "decade's": null, - "decades": null, - "decadency": [["S"]], - "decadencies": null, - "decadently": null, - "decadents": null, - "decaffeinate": [["D", "S", "G"]], - "decaffeinated": null, - "decaffeinates": null, - "decaffeinating": null, - "decaf": [["S"]], - "decafs": null, - "decagon": [["M", "S"]], - "decagon's": null, - "decagons": null, - "Decalogue": [["M"]], - "Decalogue's": null, - "decals": null, - "decal's": null, - "decampment": [["M", "S"]], - "decampment's": null, - "decampments": null, - "decapitate": [["G", "S", "D"]], - "decapitating": null, - "decapitates": null, - "decapitated": null, - "decapitator": [["S", "M"]], - "decapitators": null, - "decapitator's": null, - "decathlon": [["S", "M"]], - "decathlons": null, - "decathlon's": null, - "Decatur": [["M"]], - "Decatur's": null, - "decaying": null, - "decayer": null, - "decayed": null, - "Decca": [["M"]], - "Decca's": null, - "Deccan": [["M"]], - "Deccan's": null, - "decease's": null, - "decedent": [["M", "S"]], - "decedent's": null, - "decedents": null, - "deceitfulness": [["S", "M"]], - "deceitfulnesses": null, - "deceitfulness's": null, - "deceitful": [["P", "Y"]], - "deceitfully": null, - "deceit": [["S", "M"]], - "deceits": null, - "deceit's": null, - "deceived": [["U"]], - "undeceived": null, - "deceiver": [["M"]], - "deceiver's": null, - "deceives": [["U"]], - "undeceives": null, - "deceive": [["Z", "G", "R", "S", "D"]], - "deceivers": null, - "deceiving": [["U"]], - "deceivingly": null, - "undeceiving": null, - "decelerate": [["X", "N", "G", "S", "D"]], - "decelerations": null, - "deceleration": [["M"]], - "decelerating": null, - "decelerates": null, - "decelerated": null, - "deceleration's": null, - "decelerator": [["S", "M"]], - "decelerators": null, - "decelerator's": null, - "December": [["S", "M"]], - "Decembers": null, - "December's": null, - "decency": [["I", "S", "M"]], - "indecency": null, - "indecencies": null, - "indecency's": null, - "decencies": null, - "decency's": null, - "decennial": [["S", "Y"]], - "decennials": null, - "decennially": null, - "decent": [["T", "I", "Y", "R"]], - "decentest": null, - "indecent": null, - "indecently": null, - "indecenter": null, - "decently": null, - "deception": [["S", "M"]], - "deceptions": null, - "deception's": null, - "deceptiveness": [["S", "M"]], - "deceptivenesses": null, - "deceptiveness's": null, - "deceptive": [["Y", "P"]], - "deceptively": null, - "decertify": [["N"]], - "dechlorinate": [["N"]], - "dechlorination": null, - "decibel": [["M", "S"]], - "decibel's": null, - "decibels": null, - "decidability": [["U"]], - "undecidability": null, - "decidable": [["U"]], - "undecidable": null, - "decidedness": [["M"]], - "decidedness's": null, - "decided": [["P", "Y"]], - "decidedly": null, - "decide": [["G", "R", "S", "D", "B"]], - "deciding": null, - "decider": null, - "decides": null, - "deciduousness": [["M"]], - "deciduousness's": null, - "deciduous": [["Y", "P"]], - "deciduously": null, - "decile": [["S", "M"]], - "deciles": null, - "decile's": null, - "deciliter": [["S", "M"]], - "deciliters": null, - "deciliter's": null, - "decimal": [["S", "Y", "M"]], - "decimals": null, - "decimally": null, - "decimal's": null, - "decimate": [["X", "N", "G", "D", "S"]], - "decimations": null, - "decimation": [["M"]], - "decimating": null, - "decimated": null, - "decimates": null, - "decimation's": null, - "decimeter": [["M", "S"]], - "decimeter's": null, - "decimeters": null, - "decipherable": [["I", "U"]], - "indecipherable": null, - "undecipherable": null, - "decipher": [["B", "R", "Z", "G"]], - "decipherer": [["M"]], - "decipherers": null, - "deciphering": null, - "decipherer's": null, - "decisional": null, - "decisioned": null, - "decisioning": null, - "decision": [["I", "S", "M"]], - "indecision": null, - "indecisions": null, - "indecision's": null, - "decisions": null, - "decision's": null, - "decisive": [["I", "P", "Y"]], - "indecisive": null, - "indecisiveness": null, - "indecisively": null, - "decisiveness": [["M", "S", "I"]], - "decisively": null, - "decisiveness's": null, - "indecisiveness's": null, - "decisivenesses": null, - "indecisivenesses": null, - "deckchair": null, - "decker": [["M"]], - "decker's": null, - "Decker": [["M"]], - "Decker's": null, - "decking": [["M"]], - "decked": null, - "deck's": null, - "decks": null, - "deckings": null, - "deckhand": [["S"]], - "deckhands": null, - "decking's": null, - "Deck": [["R", "M"]], - "Deck's": null, - "declamation": [["S", "M"]], - "declamations": null, - "declamation's": null, - "declamatory": null, - "declarable": null, - "declaration": [["M", "S"]], - "declaration's": [["A"]], - "declarations": null, - "redeclaration's": null, - "declarative": [["S", "Y"]], - "declaratives": null, - "declaratively": null, - "declarator": [["M", "S"]], - "declarator's": null, - "declarators": null, - "declaratory": null, - "declare": [["A", "G", "S", "D"]], - "redeclare": null, - "redeclaring": null, - "redeclares": null, - "redeclared": null, - "declaring": null, - "declares": null, - "declared": [["U"]], - "undeclared": null, - "declarer": [["M", "S"]], - "declarer's": null, - "declarers": null, - "declension": [["S", "M"]], - "declensions": null, - "declension's": null, - "declination": [["M", "S"]], - "declination's": null, - "declinations": null, - "decliner": [["M"]], - "decliner's": null, - "decline": [["Z", "G", "R", "S", "D"]], - "decliners": null, - "declining": null, - "declines": null, - "declined": null, - "declivity": [["S", "M"]], - "declivities": null, - "declivity's": null, - "Dec": [["M"]], - "Dec's": null, - "DEC": [["M"]], - "DEC's": null, - "DECNET": null, - "DECnet": [["M"]], - "DECnet's": null, - "deco": null, - "d�colletage": [["S"]], - "d�colletages": null, - "d�collet�": null, - "decolletes": null, - "decolorising": null, - "decomposability": [["M"]], - "decomposability's": null, - "decomposable": [["I", "U"]], - "indecomposable": null, - "undecomposable": null, - "decompresser": null, - "decongestant": [["S"]], - "decongestants": null, - "deconstruction": null, - "deconvolution": null, - "decorated": [["A", "U"]], - "redecorated": null, - "undecorated": null, - "decorate": [["N", "G", "V", "D", "S", "X"]], - "decoration": [["A", "S", "M"]], - "decorating": [["A"]], - "decorative": [["Y", "P"]], - "decorates": [["A"]], - "decorations": null, - "redecorates": null, - "redecorating": null, - "redecoration": null, - "redecorations": null, - "redecoration's": null, - "decoration's": null, - "decorativeness": [["M"]], - "decorativeness's": null, - "decoratively": null, - "decorator": [["S", "M"]], - "decorators": null, - "decorator's": null, - "decorousness": [["M", "S"]], - "decorousness's": [["I"]], - "decorousnesses": null, - "indecorousness's": null, - "decorous": [["P", "I", "Y"]], - "indecorousness": null, - "indecorous": null, - "indecorously": null, - "decorously": null, - "decor": [["S"]], - "decors": null, - "decorticate": [["G", "N", "D", "S"]], - "decorticating": null, - "decortication": [["M"]], - "decorticated": null, - "decorticates": null, - "decortication's": null, - "decorum": [["M", "S"]], - "decorum's": null, - "decorums": null, - "decoupage": [["M", "G", "S", "D"]], - "decoupage's": null, - "decoupaging": null, - "decoupages": null, - "decoupaged": null, - "decoupling": null, - "decoy's": null, - "decrease": null, - "decreasingly": null, - "decreeing": null, - "decree": [["R", "S", "M"]], - "decreer": null, - "decrees": null, - "decree's": null, - "decremental": null, - "decrement": [["D", "M", "G", "S"]], - "decremented": null, - "decrement's": null, - "decrementing": null, - "decrements": null, - "decrepit": null, - "decrepitude": [["S", "M"]], - "decrepitudes": null, - "decrepitude's": null, - "decriminalizations": null, - "decriminalized": null, - "decriminalizes": null, - "decry": [["G"]], - "decrying": null, - "decrypting": null, - "decrypted": null, - "decryption": null, - "DECstation": [["M"]], - "DECstation's": null, - "DECsystem": [["M"]], - "DECsystem's": null, - "DECtape": [["M"]], - "DECtape's": null, - "decustomised": null, - "Dedekind": [["M"]], - "Dedekind's": null, - "Dede": [["M"]], - "Dede's": null, - "dedicate": [["A", "G", "D", "S"]], - "rededicate": null, - "rededicating": null, - "rededicated": null, - "rededicates": null, - "dedicating": null, - "dedicated": [["Y"]], - "dedicates": null, - "dedicatedly": null, - "dedication": [["M", "S"]], - "dedication's": null, - "dedications": null, - "dedicative": null, - "dedicator": [["M", "S"]], - "dedicator's": null, - "dedicators": null, - "dedicatory": null, - "Dedie": [["M"]], - "Dedie's": null, - "Dedra": [["M"]], - "Dedra's": null, - "deduce": [["R", "S", "D", "G"]], - "deducer": null, - "deduces": null, - "deduced": null, - "deducing": null, - "deducible": null, - "deductibility": [["M"]], - "deductibility's": null, - "deductible": [["S"]], - "deductibles": null, - "deduction": [["S", "M"]], - "deductions": null, - "deduction's": null, - "deductive": [["Y"]], - "deductively": null, - "deduct": [["V", "G"]], - "deducting": null, - "Deeanne": [["M"]], - "Deeanne's": null, - "Deeann": [["M"]], - "Deeann's": null, - "deeded": null, - "Deedee": [["M"]], - "Deedee's": null, - "deeding": null, - "deed": [["I", "S"]], - "indeed": null, - "indeeds": null, - "deeds": null, - "deed's": null, - "deejay": [["M", "D", "S", "G"]], - "deejay's": null, - "deejayed": null, - "deejays": null, - "deejaying": null, - "Dee": [["M"]], - "Dee's": null, - "deem": [["A", "D", "G", "S"]], - "redeem": [["B", "R", "Z"]], - "redeemed": [["U"]], - "redeeming": null, - "redeems": null, - "deemed": null, - "deeming": null, - "deems": null, - "deemphasis": null, - "Deena": [["M"]], - "Deena's": null, - "deepen": [["D", "G"]], - "deepened": null, - "deepening": null, - "deepish": null, - "deepness": [["M", "S"]], - "deepness's": null, - "deepnesses": null, - "deep": [["P", "T", "X", "S", "Y", "R", "N"]], - "deepest": null, - "deepens": null, - "deeps": null, - "deeply": null, - "deeper": null, - "Deerdre": [["M"]], - "Deerdre's": null, - "Deere": [["M"]], - "Deere's": null, - "deerskin": [["M", "S"]], - "deerskin's": null, - "deerskins": null, - "deer": [["S", "M"]], - "deers": null, - "deer's": null, - "deerstalker": [["S", "M"]], - "deerstalkers": null, - "deerstalker's": null, - "deerstalking": [["M"]], - "deerstalking's": null, - "Deeyn": [["M"]], - "Deeyn's": null, - "deface": [["L", "Z"]], - "defacement": [["S", "M"]], - "defacers": null, - "defacements": null, - "defacement's": null, - "defaecate": null, - "defalcate": [["N", "G", "X", "S", "D"]], - "defalcation": [["M"]], - "defalcating": null, - "defalcations": null, - "defalcates": null, - "defalcated": null, - "defalcation's": null, - "defamation": [["S", "M"]], - "defamations": null, - "defamation's": null, - "defamatory": null, - "defamer": [["M"]], - "defamer's": null, - "defame": [["Z", "R"]], - "defamers": null, - "defaulter": [["M"]], - "defaulter's": null, - "default": [["Z", "R"]], - "defaulters": null, - "defeated": [["U"]], - "undefeated": null, - "defeater": [["M"]], - "defeater's": null, - "defeatism": [["S", "M"]], - "defeatisms": null, - "defeatism's": null, - "defeatist": [["S", "M"]], - "defeatists": null, - "defeatist's": null, - "defeat": [["Z", "G", "D"]], - "defeaters": null, - "defeating": null, - "defecate": [["D", "S", "N", "G", "X"]], - "defecated": null, - "defecates": null, - "defecation": [["M"]], - "defecating": null, - "defecations": null, - "defecation's": null, - "defection": [["S", "M"]], - "defections": null, - "defection's": null, - "defectiveness": [["M", "S"]], - "defectiveness's": null, - "defectivenesses": null, - "defective": [["P", "Y", "S"]], - "defectively": null, - "defectives": null, - "defect": [["M", "D", "S", "V", "G"]], - "defect's": null, - "defected": null, - "defects": null, - "defecting": null, - "defector": [["M", "S"]], - "defector's": null, - "defectors": null, - "defendant": [["S", "M"]], - "defendants": null, - "defendant's": null, - "defended": [["U"]], - "undefended": null, - "defenestrate": [["G", "S", "D"]], - "defenestrating": null, - "defenestrates": null, - "defenestrated": null, - "defenselessness": [["M", "S"]], - "defenselessness's": null, - "defenselessnesses": null, - "defenseless": [["P", "Y"]], - "defenselessly": null, - "defenses": [["U"]], - "undefenses": null, - "defense": [["V", "G", "S", "D", "M"]], - "defensive": [["P", "S", "Y"]], - "defensing": null, - "defensed": null, - "defense's": null, - "defensibility": [["M"]], - "defensibility's": null, - "defensible": [["I"]], - "indefensible": null, - "defensibly": [["I"]], - "indefensibly": null, - "defensiveness": [["M", "S"]], - "defensiveness's": null, - "defensivenesses": null, - "defensives": null, - "defensively": null, - "deference": [["M", "S"]], - "deference's": null, - "deferences": null, - "deferential": [["Y"]], - "deferentially": null, - "deferent": [["S"]], - "deferents": null, - "deferrable": null, - "deferral": [["S", "M"]], - "deferrals": null, - "deferral's": null, - "deferred": null, - "deferrer": [["M", "S"]], - "deferrer's": null, - "deferrers": null, - "deferring": null, - "deffer": null, - "defiance": [["M", "S"]], - "defiance's": null, - "defiances": null, - "defiant": [["Y"]], - "defiantly": null, - "defibrillator": [["M"]], - "defibrillator's": null, - "deficiency": [["M", "S"]], - "deficiency's": null, - "deficiencies": null, - "deficient": [["S", "Y"]], - "deficients": null, - "deficiently": null, - "deficit": [["M", "S"]], - "deficit's": null, - "deficits": null, - "defier": [["M"]], - "defier's": null, - "defile": [["L"]], - "defilement": [["M", "S"]], - "defilement's": null, - "defilements": null, - "definable": [["U", "I"]], - "undefinable": null, - "indefinable": [["P", "S"]], - "definably": [["I"]], - "indefinably": null, - "define": [["A", "G", "D", "R", "S"]], - "redefine": null, - "redefining": null, - "redefined": null, - "redefiner": null, - "redefines": null, - "defining": null, - "defined": [["U"]], - "definer": [["S", "M"]], - "defines": null, - "undefined": [["P"]], - "definers": null, - "definer's": null, - "definite": [["I", "P", "Y"]], - "indefinite": [["S"]], - "indefiniteness": null, - "indefinitely": null, - "definiteness": [["I", "M", "S"]], - "definitely": null, - "indefiniteness's": null, - "indefinitenesses": null, - "definiteness's": null, - "definitenesses": null, - "definitional": null, - "definition": [["A", "S", "M"]], - "redefinition": null, - "redefinitions": null, - "redefinition's": null, - "definitions": null, - "definition's": null, - "definitiveness": [["M"]], - "definitiveness's": null, - "definitive": [["S", "Y", "P"]], - "definitives": null, - "definitively": null, - "defis": null, - "deflate": [["X", "N", "G", "R", "S", "D", "B"]], - "deflations": null, - "deflation": [["M"]], - "deflating": null, - "deflater": null, - "deflates": null, - "deflated": null, - "deflatable": null, - "deflationary": null, - "deflation's": null, - "deflect": [["D", "S", "G", "V"]], - "deflected": [["U"]], - "deflects": null, - "deflecting": null, - "deflective": null, - "undeflected": null, - "deflection": [["M", "S"]], - "deflection's": null, - "deflections": null, - "deflector": [["M", "S"]], - "deflector's": null, - "deflectors": null, - "defocus": null, - "defocussing": null, - "Defoe": [["M"]], - "Defoe's": null, - "defog": null, - "defogger": [["S"]], - "defoggers": null, - "defoliant": [["S", "M"]], - "defoliants": null, - "defoliant's": null, - "defoliator": [["S", "M"]], - "defoliators": null, - "defoliator's": null, - "deformational": null, - "deform": [["B"]], - "deformable": null, - "deformed": [["U"]], - "undeformed": null, - "deformity": [["S", "M"]], - "deformities": null, - "deformity's": null, - "defrauder": [["M"]], - "defrauder's": null, - "defraud": [["Z", "G", "D", "R"]], - "defrauders": null, - "defrauding": null, - "defrauded": null, - "defrayal": [["S", "M"]], - "defrayals": null, - "defrayal's": null, - "defroster": [["M"]], - "defroster's": null, - "defrost": [["R", "Z"]], - "defrosters": null, - "deftness": [["M", "S"]], - "deftness's": null, - "deftnesses": null, - "deft": [["T", "Y", "R", "P"]], - "deftest": null, - "deftly": null, - "defter": null, - "defunct": [["S"]], - "defuncts": null, - "defying": [["Y"]], - "defyingly": null, - "defy": [["R", "D", "G"]], - "defied": null, - "def": [["Z"]], - "defers": null, - "deg": null, - "Degas": [["M"]], - "Degas's": null, - "degassing": null, - "degauss": [["G", "D"]], - "degaussing": null, - "degaussed": null, - "degeneracy": [["M", "S"]], - "degeneracy's": null, - "degeneracies": null, - "degenerateness": [["M"]], - "degenerateness's": null, - "degenerate": [["P", "Y"]], - "degenerately": null, - "degrade": [["B"]], - "degradable": null, - "degradedness": [["M"]], - "degradedness's": null, - "degraded": [["Y", "P"]], - "degradedly": null, - "degrading": [["Y"]], - "degradingly": null, - "degrease": null, - "degree": [["S", "M"]], - "degrees": null, - "degree's": null, - "degum": null, - "Dehlia": [["M"]], - "Dehlia's": null, - "dehumanize": null, - "dehydrator": [["M", "S"]], - "dehydrator's": null, - "dehydrators": null, - "deicer": [["M"]], - "deicer's": null, - "deice": [["Z", "R"]], - "deicers": null, - "deictic": null, - "Deidre": [["M"]], - "Deidre's": null, - "deification": [["M"]], - "deification's": null, - "deify": [["S", "D", "X", "G", "N"]], - "deifies": null, - "deified": null, - "deifications": null, - "deifying": null, - "deign": [["D", "G", "S"]], - "deigned": null, - "deigning": null, - "deigns": null, - "Deimos": [["M"]], - "Deimos's": null, - "Deina": [["M"]], - "Deina's": null, - "Deirdre": [["M", "S"]], - "Deirdre's": null, - "Deirdres": null, - "deistic": null, - "deist": [["S", "M"]], - "deists": null, - "deist's": null, - "Deity": [["M"]], - "Deity's": null, - "deity": [["S", "M"]], - "deities": null, - "deity's": null, - "deja": null, - "deject": [["D", "S", "G"]], - "dejected": [["P", "Y"]], - "dejects": null, - "dejecting": null, - "dejectedness": [["M"]], - "dejectedness's": null, - "dejectedly": null, - "dejection": [["S", "M"]], - "dejections": null, - "dejection's": null, - "Dejesus": [["M"]], - "Dejesus's": null, - "DeKalb": [["M"]], - "DeKalb's": null, - "DeKastere": [["M"]], - "DeKastere's": null, - "Delacroix": [["M"]], - "Delacroix's": null, - "Delacruz": [["M"]], - "Delacruz's": null, - "Delainey": [["M"]], - "Delainey's": null, - "Dela": [["M"]], - "Dela's": null, - "Delaney": [["M"]], - "Delaney's": null, - "Delano": [["M"]], - "Delano's": null, - "Delawarean": [["S", "M"]], - "Delawareans": null, - "Delawarean's": null, - "Delaware": [["M", "S"]], - "Delaware's": null, - "Delawares": null, - "delay": [["D"]], - "delayed": null, - "delayer": [["G"]], - "delayering": null, - "Delbert": [["M"]], - "Delbert's": null, - "Delcina": [["M"]], - "Delcina's": null, - "Delcine": [["M"]], - "Delcine's": null, - "delectableness": [["M"]], - "delectableness's": null, - "delectable": [["S", "P"]], - "delectables": null, - "delectably": null, - "delectation": [["M", "S"]], - "delectation's": null, - "delectations": null, - "delegable": null, - "Deleon": [["M"]], - "Deleon's": null, - "deleted": [["U"]], - "undeleted": null, - "deleteriousness": [["M"]], - "deleteriousness's": null, - "deleterious": [["P", "Y"]], - "deleteriously": null, - "delete": [["X", "B", "R", "S", "D", "N", "G"]], - "deletions": null, - "deletable": null, - "deleter": null, - "deletes": null, - "deletion": [["M"]], - "deleting": null, - "deletion's": null, - "delfs": null, - "Delft": [["M"]], - "Delft's": null, - "delft": [["M", "S"]], - "delft's": null, - "delfts": null, - "delftware": [["S"]], - "delftwares": null, - "Delgado": [["M"]], - "Delgado's": null, - "Delhi": [["M"]], - "Delhi's": null, - "Delia": [["M"]], - "Delia's": null, - "deliberateness": [["S", "M"]], - "deliberatenesses": null, - "deliberateness's": null, - "deliberate": [["P", "V", "Y"]], - "deliberative": [["P", "Y"]], - "deliberately": null, - "deliberativeness": [["M"]], - "deliberativeness's": null, - "deliberatively": null, - "Delibes": [["M"]], - "Delibes's": null, - "delicacy": [["I", "M", "S"]], - "indelicacy": null, - "indelicacy's": null, - "indelicacies": null, - "delicacy's": null, - "delicacies": null, - "delicate": [["I", "Y", "P"]], - "indelicate": null, - "indelicately": null, - "indelicateness": null, - "delicately": null, - "delicateness": [["I", "M"]], - "delicatenesses": null, - "indelicateness's": null, - "delicateness's": null, - "delicates": null, - "delicatessen": [["M", "S"]], - "delicatessen's": null, - "delicatessens": null, - "deliciousness": [["M", "S"]], - "deliciousness's": null, - "deliciousnesses": null, - "delicious": [["Y", "S", "P"]], - "deliciously": null, - "deliciouses": null, - "delicti": null, - "delightedness": [["M"]], - "delightedness's": null, - "delighted": [["Y", "P"]], - "delightedly": null, - "delightfulness": [["M"]], - "delightfulness's": null, - "delightful": [["Y", "P"]], - "delightfully": null, - "Delilah": [["M"]], - "Delilah's": null, - "Delilahs": null, - "Delila": [["M"]], - "Delila's": null, - "Delinda": [["M"]], - "Delinda's": null, - "delineate": [["S", "D", "X", "V", "N", "G"]], - "delineates": null, - "delineated": null, - "delineations": null, - "delineative": null, - "delineation": [["M"]], - "delineating": null, - "delineation's": null, - "delinquency": [["M", "S"]], - "delinquency's": null, - "delinquencies": null, - "delinquent": [["S", "Y", "M"]], - "delinquents": null, - "delinquently": null, - "delinquent's": null, - "deliquesce": [["G", "S", "D"]], - "deliquescing": null, - "deliquesces": null, - "deliquesced": null, - "deliquescent": null, - "deliriousness": [["M", "S"]], - "deliriousness's": null, - "deliriousnesses": null, - "delirious": [["P", "Y"]], - "deliriously": null, - "delirium": [["S", "M"]], - "deliriums": null, - "delirium's": null, - "deli": [["S", "M"]], - "delis": null, - "deli's": null, - "Delius": [["M"]], - "Delius's": null, - "deliverables": null, - "deliverable": [["U"]], - "undeliverable": null, - "deliver": [["A", "G", "S", "D"]], - "redeliver": null, - "redelivering": null, - "redelivers": null, - "redelivered": null, - "delivering": null, - "delivers": null, - "delivered": [["U"]], - "deliverance": [["S", "M"]], - "deliverances": null, - "deliverance's": null, - "undelivered": null, - "deliverer": [["S", "M"]], - "deliverers": null, - "deliverer's": null, - "delivery": [["A", "M"]], - "redelivery": null, - "redelivery's": null, - "delivery's": null, - "deliverymen": [["M"]], - "deliverymen's": null, - "Della": [["M"]], - "Della's": null, - "Dell": [["M"]], - "Dell's": null, - "dell": [["S", "M"]], - "dells": null, - "dell's": null, - "Dellwood": [["M"]], - "Dellwood's": null, - "Delly": [["M"]], - "Delly's": null, - "Delmar": [["M"]], - "Delmar's": null, - "Delmarva": [["M"]], - "Delmarva's": null, - "Delmer": [["M"]], - "Delmer's": null, - "Delmonico": null, - "Delmore": [["M"]], - "Delmore's": null, - "Delmor": [["M"]], - "Delmor's": null, - "Del": [["M", "Y"]], - "Del's": null, - "Delora": [["M"]], - "Delora's": null, - "Delores": [["M"]], - "Delores's": null, - "Deloria": [["M"]], - "Deloria's": null, - "Deloris": [["M"]], - "Deloris's": null, - "Delphic": null, - "Delphi": [["M"]], - "Delphi's": null, - "Delphine": [["M"]], - "Delphine's": null, - "Delphinia": [["M"]], - "Delphinia's": null, - "delphinium": [["S", "M"]], - "delphiniums": null, - "delphinium's": null, - "Delphinus": [["M"]], - "Delphinus's": null, - "Delta": [["M"]], - "Delta's": null, - "delta": [["M", "S"]], - "delta's": null, - "deltas": null, - "deltoid": [["S", "M"]], - "deltoids": null, - "deltoid's": null, - "deluder": [["M"]], - "deluder's": null, - "delude": [["R", "S", "D", "G"]], - "deludes": null, - "deluded": null, - "deluding": [["Y"]], - "deludingly": null, - "deluge": [["S", "D", "G"]], - "deluges": null, - "deluged": null, - "deluging": null, - "delusional": null, - "delusion": [["S", "M"]], - "delusions": null, - "delusion's": null, - "delusiveness": [["M"]], - "delusiveness's": null, - "delusive": [["P", "Y"]], - "delusively": null, - "deluxe": null, - "delve": [["G", "Z", "S", "R", "D"]], - "delving": null, - "delvers": null, - "delves": null, - "delver": [["M"]], - "delved": null, - "delver's": null, - "demagnify": [["N"]], - "demagnification": null, - "demagogic": null, - "demagogue": [["G", "S", "D", "M"]], - "demagoguing": null, - "demagogues": null, - "demagogued": null, - "demagogue's": null, - "demagoguery": [["S", "M"]], - "demagogueries": null, - "demagoguery's": null, - "demagogy": [["M", "S"]], - "demagogy's": null, - "demagogies": null, - "demander": [["M"]], - "demander's": null, - "demand": [["G", "S", "R", "D"]], - "demanding": [["U"]], - "demands": null, - "demanded": null, - "demandingly": null, - "undemanding": null, - "demarcate": [["S", "D", "N", "G", "X"]], - "demarcates": null, - "demarcated": null, - "demarcation": [["M"]], - "demarcating": null, - "demarcations": null, - "demarcation's": null, - "Demavend": [["M"]], - "Demavend's": null, - "demean": [["G", "D", "S"]], - "demeaning": null, - "demeaned": null, - "demeans": null, - "demeanor": [["S", "M"]], - "demeanors": null, - "demeanor's": null, - "dementedness": [["M"]], - "dementedness's": null, - "demented": [["Y", "P"]], - "dementedly": null, - "dementia": [["M", "S"]], - "dementia's": null, - "dementias": null, - "Demerol": [["M"]], - "Demerol's": null, - "demesne": [["S", "M"]], - "demesnes": null, - "demesne's": null, - "Demeter": [["M"]], - "Demeter's": null, - "Demetra": [["M"]], - "Demetra's": null, - "Demetre": [["M"]], - "Demetre's": null, - "Demetria": [["M"]], - "Demetria's": null, - "Demetri": [["M", "S"]], - "Demetri's": null, - "Demetris": null, - "Demetrius": [["M"]], - "Demetrius's": null, - "demigod": [["M", "S"]], - "demigod's": null, - "demigods": null, - "demijohn": [["M", "S"]], - "demijohn's": null, - "demijohns": null, - "demimondaine": [["S", "M"]], - "demimondaines": null, - "demimondaine's": null, - "demimonde": [["S", "M"]], - "demimondes": null, - "demimonde's": null, - "demineralization": [["S", "M"]], - "demineralizations": null, - "demineralization's": null, - "Deming": [["M"]], - "Deming's": null, - "demise": [["D", "M", "G"]], - "demised": null, - "demise's": null, - "demising": null, - "demit": null, - "demitasse": [["M", "S"]], - "demitasse's": null, - "demitasses": null, - "demitted": null, - "demitting": null, - "Dem": [["M", "G"]], - "Dem's": null, - "democracy": [["M", "S"]], - "democracy's": null, - "democracies": null, - "Democratic": null, - "democratically": [["U"]], - "undemocratically": null, - "democratic": [["U"]], - "undemocratic": null, - "democratization": [["M", "S"]], - "democratization's": null, - "democratizations": null, - "democratize": [["D", "R", "S", "G"]], - "democratized": null, - "democratizer": null, - "democratizes": [["U"]], - "democratizing": null, - "undemocratizes": null, - "Democrat": [["M", "S"]], - "Democrat's": null, - "Democrats": null, - "democrat": [["S", "M"]], - "democrats": null, - "democrat's": null, - "Democritus": [["M"]], - "Democritus's": null, - "d�mod�": null, - "demo": [["D", "M", "P", "G"]], - "demoed": null, - "demo's": null, - "demoness": null, - "demoing": null, - "demographer": [["M", "S"]], - "demographer's": null, - "demographers": null, - "demographical": [["Y"]], - "demographically": null, - "demographic": [["S"]], - "demographics": null, - "demography": [["M", "S"]], - "demography's": null, - "demographies": null, - "demolisher": [["M"]], - "demolisher's": null, - "demolish": [["G", "S", "R", "D"]], - "demolishing": null, - "demolishes": null, - "demolished": null, - "demolition": [["M", "S"]], - "demolition's": null, - "demolitions": null, - "demonetization": [["S"]], - "demonetizations": null, - "demoniacal": [["Y"]], - "demoniacally": null, - "demoniac": [["S"]], - "demoniacs": null, - "demonic": null, - "demonology": [["M"]], - "demonology's": null, - "demon": [["S", "M"]], - "demons": null, - "demon's": null, - "demonstrable": [["I"]], - "indemonstrable": null, - "demonstrableness": [["M"]], - "demonstrableness's": null, - "demonstrably": [["I"]], - "indemonstrably": null, - "demonstrate": [["X", "D", "S", "N", "G", "V"]], - "demonstrations": null, - "demonstrated": null, - "demonstrates": null, - "demonstration": [["M"]], - "demonstrating": null, - "demonstrative": [["Y", "U", "P"]], - "demonstration's": null, - "demonstrativenesses": null, - "demonstrativeness": [["U", "M"]], - "undemonstrativeness": null, - "undemonstrativeness's": null, - "demonstrativeness's": null, - "demonstratives": null, - "demonstratively": null, - "undemonstratively": null, - "undemonstrative": null, - "demonstrator": [["M", "S"]], - "demonstrator's": null, - "demonstrators": null, - "demoralization": [["M"]], - "demoralization's": null, - "demoralizer": [["M"]], - "demoralizer's": null, - "demoralizing": [["Y"]], - "demoralizingly": null, - "DeMorgan": [["M"]], - "DeMorgan's": null, - "Demosthenes": [["M"]], - "Demosthenes's": null, - "demote": [["D", "G", "X"]], - "demoted": null, - "demoting": null, - "demotions": null, - "demotic": [["S"]], - "demotics": null, - "Demott": [["M"]], - "Demott's": null, - "demount": [["B"]], - "demountable": null, - "Dempsey": [["M"]], - "Dempsey's": null, - "demulcent": [["S"]], - "demulcents": null, - "demultiplex": null, - "demureness": [["S", "M"]], - "demurenesses": null, - "demureness's": null, - "demure": [["Y", "P"]], - "demurely": null, - "demurral": [["M", "S"]], - "demurral's": null, - "demurrals": null, - "demurred": null, - "demurrer": [["M", "S"]], - "demurrer's": null, - "demurrers": null, - "demurring": null, - "demur": [["R", "T", "S"]], - "demurer": null, - "demurest": null, - "demurs": null, - "demythologization": [["M"]], - "demythologization's": null, - "demythologize": [["R"]], - "demythologizer": null, - "den": null, - "Dena": [["M"]], - "Dena's": null, - "dendrite": [["M", "S"]], - "dendrite's": null, - "dendrites": null, - "Deneb": [["M"]], - "Deneb's": null, - "Denebola": [["M"]], - "Denebola's": null, - "Deneen": [["M"]], - "Deneen's": null, - "Dene": [["M"]], - "Dene's": null, - "Deng": [["M"]], - "Deng's": null, - "dengue": [["M", "S"]], - "dengue's": null, - "dengues": null, - "deniable": [["U"]], - "undeniable": [["P"]], - "denial": [["S", "M"]], - "denials": null, - "denial's": null, - "Denice": [["M"]], - "Denice's": null, - "denier": [["M"]], - "denier's": null, - "denigrate": [["V", "N", "G", "X", "S", "D"]], - "denigrative": null, - "denigration": [["M"]], - "denigrating": null, - "denigrations": null, - "denigrates": null, - "denigrated": null, - "denigration's": null, - "denim": [["S", "M"]], - "denims": null, - "denim's": null, - "Denise": [["M"]], - "Denise's": null, - "Deni": [["S", "M"]], - "Denis": null, - "Deni's": null, - "denizen": [["S", "M", "D", "G"]], - "denizens": null, - "denizen's": null, - "denizened": null, - "denizening": null, - "Den": [["M"]], - "Den's": null, - "De": [["N", "M"]], - "Dion": [["M"]], - "De's": null, - "Denmark": [["M"]], - "Denmark's": null, - "Denna": [["M"]], - "Denna's": null, - "denned": null, - "Dennet": [["M"]], - "Dennet's": null, - "Denney": [["M"]], - "Denney's": null, - "Dennie": [["M"]], - "Dennie's": null, - "Denni": [["M", "S"]], - "Denni's": null, - "Dennis": null, - "denning": null, - "Dennison": [["M"]], - "Dennison's": null, - "Denny": [["M"]], - "Denny's": null, - "denominate": [["V"]], - "denominative": null, - "denominational": [["Y"]], - "denominationally": null, - "denote": [["B"]], - "denotable": null, - "denouement": [["M", "S"]], - "denouement's": null, - "denouements": null, - "denounce": [["L", "Z", "R", "S", "D", "G"]], - "denouncement": [["S", "M"]], - "denouncers": null, - "denouncer": [["M"]], - "denounces": null, - "denounced": null, - "denouncing": null, - "denouncements": null, - "denouncement's": null, - "denouncer's": null, - "dense": [["F", "R"]], - "denser": null, - "densely": null, - "denseness": [["S", "M"]], - "densenesses": null, - "denseness's": null, - "densitometer": [["M", "S"]], - "densitometer's": null, - "densitometers": null, - "densitometric": null, - "densitometry": [["M"]], - "densitometry's": null, - "density": [["M", "S"]], - "density's": null, - "densities": null, - "dens": [["R", "T"]], - "densest": null, - "dental": [["Y", "S"]], - "dentally": null, - "dentals": null, - "dentifrice": [["S", "M"]], - "dentifrices": null, - "dentifrice's": null, - "dentine's": null, - "dentin": [["S", "M"]], - "dentins": null, - "dentin's": null, - "dent": [["I", "S", "G", "D"]], - "indent": [["R"]], - "indents": null, - "indenting": null, - "indented": [["U"]], - "dents": null, - "denting": null, - "dented": null, - "dentistry": [["M", "S"]], - "dentistry's": null, - "dentistries": null, - "dentist": [["S", "M"]], - "dentists": null, - "dentist's": null, - "dentition": [["M", "S"]], - "dentition's": null, - "dentitions": null, - "dent's": null, - "denture": [["I", "M", "S"]], - "indenture": [["D", "G"]], - "indenture's": null, - "indentures": null, - "denture's": null, - "dentures": null, - "denuclearize": [["G", "S", "D"]], - "denuclearizing": null, - "denuclearizes": null, - "denuclearized": null, - "denudation": [["S", "M"]], - "denudations": null, - "denudation's": null, - "denude": [["D", "G"]], - "denuded": null, - "denuding": null, - "denuder": [["M"]], - "denuder's": null, - "denunciate": [["V", "N", "G", "S", "D", "X"]], - "denunciative": null, - "denunciation": [["M"]], - "denunciating": null, - "denunciates": null, - "denunciated": null, - "denunciations": null, - "denunciation's": null, - "Denver": [["M"]], - "Denver's": null, - "denying": [["Y"]], - "denyingly": null, - "Deny": [["M"]], - "Deny's": null, - "Denys": null, - "Denyse": [["M"]], - "Denyse's": null, - "deny": [["S", "R", "D", "Z", "G"]], - "denies": null, - "denied": null, - "deniers": null, - "deodorant": [["S", "M"]], - "deodorants": null, - "deodorant's": null, - "deodorization": [["S", "M"]], - "deodorizations": null, - "deodorization's": null, - "deodorize": [["G", "Z", "S", "R", "D"]], - "deodorizing": null, - "deodorizers": null, - "deodorizes": null, - "deodorizer": [["M"]], - "deodorized": null, - "deodorizer's": null, - "Deon": [["M"]], - "Deon's": null, - "Deonne": [["M"]], - "Deonne's": null, - "deoxyribonucleic": null, - "depart": [["L"]], - "department": [["M", "S"]], - "departmentalization": [["S", "M"]], - "departmentalizations": null, - "departmentalization's": null, - "departmentalize": [["D", "S", "G"]], - "departmentalized": null, - "departmentalizes": null, - "departmentalizing": null, - "departmental": [["Y"]], - "departmentally": null, - "department's": null, - "departments": null, - "departure": [["M", "S"]], - "departure's": null, - "departures": null, - "dependability": [["M", "S"]], - "dependability's": null, - "dependabilities": null, - "dependableness": [["M"]], - "dependableness's": null, - "dependable": [["P"]], - "dependably": null, - "Dependant": [["M", "S"]], - "Dependant's": null, - "Dependants": null, - "depend": [["B"]], - "dependence": [["I", "S", "M"]], - "independence": null, - "independences": null, - "independence's": null, - "dependences": null, - "dependence's": null, - "dependency": [["M", "S"]], - "dependency's": null, - "dependencies": null, - "dependent": [["I", "Y", "S"]], - "independent": null, - "independently": null, - "independents": null, - "dependently": null, - "dependents": null, - "dependent's": null, - "depicted": [["U"]], - "undepicted": null, - "depicter": [["M"]], - "depicter's": null, - "depiction": [["S", "M"]], - "depictions": null, - "depiction's": null, - "depict": [["R", "D", "S", "G"]], - "depicts": null, - "depicting": null, - "depilatory": [["S"]], - "depilatories": null, - "deplete": [["V", "G", "N", "S", "D", "X"]], - "depletive": null, - "depleting": null, - "depletion": [["M"]], - "depletes": null, - "depleted": null, - "depletions": null, - "depletion's": null, - "deplorableness": [["M"]], - "deplorableness's": null, - "deplorable": [["P"]], - "deplorably": null, - "deplorer": [["M"]], - "deplorer's": null, - "deplore": [["S", "R", "D", "B", "G"]], - "deplores": null, - "deplored": null, - "deploring": [["Y"]], - "deploringly": null, - "deployable": null, - "deploy": [["A", "G", "D", "L", "S"]], - "redeploy": null, - "redeploying": null, - "redeployed": null, - "redeployment": null, - "redeploys": null, - "deploying": null, - "deployed": null, - "deployment": [["S", "A", "M"]], - "deploys": null, - "deployments": null, - "redeployments": null, - "redeployment's": null, - "deployment's": null, - "depolarize": null, - "deponent": [["S"]], - "deponents": null, - "deportation": [["M", "S"]], - "deportation's": null, - "deportations": null, - "deportee": [["S", "M"]], - "deportees": null, - "deportee's": null, - "deport": [["L", "G"]], - "deportment": [["M", "S"]], - "deporting": null, - "deportment's": null, - "deportments": null, - "depose": null, - "deposit": [["A", "D", "G", "S"]], - "redeposit": [["M"]], - "redeposited": null, - "redepositing": null, - "redeposits": null, - "deposited": null, - "depositing": null, - "deposits": null, - "depositary": [["M"]], - "depositary's": null, - "deposition": [["A"]], - "redeposition": null, - "depositor": [["S", "A", "M"]], - "depositors": null, - "redepositors": null, - "redepositor": null, - "redepositor's": null, - "depositor's": null, - "depository": [["M", "S"]], - "depository's": null, - "depositories": null, - "depravedness": [["M"]], - "depravedness's": null, - "depraved": [["P", "Y"]], - "depravedly": null, - "deprave": [["G", "S", "R", "D"]], - "depraving": null, - "depraves": null, - "depraver": [["M"]], - "depraver's": null, - "depravity": [["S", "M"]], - "depravities": null, - "depravity's": null, - "deprecate": [["X", "S", "D", "N", "G"]], - "deprecations": null, - "deprecates": null, - "deprecated": null, - "deprecation": [["M"]], - "deprecating": [["Y"]], - "deprecatingly": null, - "deprecation's": null, - "deprecatory": null, - "depreciable": null, - "depreciate": [["X", "D", "S", "N", "G", "V"]], - "depreciations": null, - "depreciated": null, - "depreciates": null, - "depreciation": [["M"]], - "depreciating": [["Y"]], - "depreciative": [["Y"]], - "depreciatingly": null, - "depreciation's": null, - "depreciatively": null, - "depressant": [["S"]], - "depressants": null, - "depressible": null, - "depression": [["M", "S"]], - "depression's": null, - "depressions": null, - "depressive": [["Y", "S"]], - "depressively": null, - "depressives": null, - "depressor": [["M", "S"]], - "depressor's": null, - "depressors": null, - "depress": [["V"]], - "deprive": [["G", "S", "D"]], - "depriving": null, - "deprives": null, - "deprived": null, - "depth": [["M"]], - "depth's": null, - "depths": null, - "Dept": [["M"]], - "Dept's": null, - "deputation": [["S", "M"]], - "deputations": null, - "deputation's": null, - "depute": [["S", "D", "G"]], - "deputes": null, - "deputed": null, - "deputing": null, - "deputize": [["D", "S", "G"]], - "deputized": null, - "deputizes": null, - "deputizing": null, - "deputy": [["M", "S"]], - "deputy's": null, - "deputies": null, - "dequeue": null, - "derail": [["L"]], - "derailment": [["M", "S"]], - "d�railleur": [["M", "S"]], - "d�railleur's": null, - "d�railleurs": null, - "derailment's": null, - "derailments": null, - "derange": [["L"]], - "derangement": [["M", "S"]], - "derangement's": null, - "derangements": null, - "Derbyshire": [["M"]], - "Derbyshire's": null, - "derby": [["S", "M"]], - "derbies": null, - "derby's": null, - "Derby": [["S", "M"]], - "Derbies": null, - "Derby's": null, - "dereference": [["Z"]], - "dereferencers": null, - "Derek": [["M"]], - "Derek's": null, - "dereliction": [["S", "M"]], - "derelictions": null, - "dereliction's": null, - "derelict": [["S"]], - "derelicts": null, - "Derick": [["M"]], - "Derick's": null, - "deride": [["D"]], - "derided": null, - "deriding": [["Y"]], - "deridingly": null, - "derision": [["S", "M"]], - "derisions": null, - "derision's": null, - "derisiveness": [["M", "S"]], - "derisiveness's": null, - "derisivenesses": null, - "derisive": [["P", "Y"]], - "derisively": null, - "derisory": null, - "derivable": [["U"]], - "underivable": null, - "derivate": [["X", "N", "V"]], - "derivations": null, - "derivation": [["M"]], - "derivative": [["S", "P", "Y", "M"]], - "derivation's": null, - "derivativeness": [["M"]], - "derivativeness's": null, - "derivatives": null, - "derivatively": null, - "derivative's": null, - "derive": [["B"]], - "derived": [["U"]], - "underived": null, - "Derk": [["M"]], - "Derk's": null, - "Der": [["M"]], - "Der's": null, - "dermal": null, - "dermatitides": null, - "dermatitis": [["M", "S"]], - "dermatitis's": null, - "dermatitises": null, - "dermatological": null, - "dermatologist": [["M", "S"]], - "dermatologist's": null, - "dermatologists": null, - "dermatology": [["M", "S"]], - "dermatology's": null, - "dermatologies": null, - "dermis": [["S", "M"]], - "dermises": null, - "dermis's": null, - "Dermot": [["M"]], - "Dermot's": null, - "derogate": [["X", "D", "S", "N", "G", "V"]], - "derogations": null, - "derogated": null, - "derogates": null, - "derogation": [["M"]], - "derogating": null, - "derogative": null, - "derogation's": null, - "derogatorily": null, - "derogatory": null, - "Derrek": [["M"]], - "Derrek's": null, - "Derrick": [["M"]], - "Derrick's": null, - "derrick": [["S", "M", "D", "G"]], - "derricks": null, - "derrick's": null, - "derricked": null, - "derricking": null, - "Derrida": [["M"]], - "Derrida's": null, - "derri�re": [["S"]], - "derri�res": null, - "Derrik": [["M"]], - "Derrik's": null, - "Derril": [["M"]], - "Derril's": null, - "derringer": [["S", "M"]], - "derringers": null, - "derringer's": null, - "Derron": [["M"]], - "Derron's": null, - "Derry": [["M"]], - "Derry's": null, - "dervish": [["S", "M"]], - "dervishes": null, - "dervish's": null, - "Derward": [["M"]], - "Derward's": null, - "Derwin": [["M"]], - "Derwin's": null, - "Des": null, - "desalinate": [["N", "G", "S", "D", "X"]], - "desalination": [["M"]], - "desalinating": null, - "desalinates": null, - "desalinated": null, - "desalinations": null, - "desalination's": null, - "desalinization": [["M", "S"]], - "desalinization's": null, - "desalinizations": null, - "desalinize": [["G", "S", "D"]], - "desalinizing": null, - "desalinizes": null, - "desalinized": null, - "desalt": [["G"]], - "desalting": null, - "descant": [["M"]], - "descant's": null, - "Descartes": [["M"]], - "Descartes's": null, - "descendant": [["S", "M"]], - "descendants": null, - "descendant's": null, - "descended": [["F", "U"]], - "condescended": null, - "undescended": null, - "descendent's": null, - "descender": [["M"]], - "descender's": null, - "descending": [["F"]], - "descends": [["F"]], - "condescends": null, - "descend": [["Z", "G", "S", "D", "R"]], - "descenders": null, - "descent": null, - "describable": [["I"]], - "indescribable": [["P", "S"]], - "describe": [["Z", "B"]], - "describers": null, - "description": [["M", "S"]], - "description's": null, - "descriptions": null, - "descriptiveness": [["M", "S"]], - "descriptiveness's": null, - "descriptivenesses": null, - "descriptive": [["S", "Y", "P"]], - "descriptives": null, - "descriptively": null, - "descriptor": [["S", "M"]], - "descriptors": null, - "descriptor's": null, - "descry": [["S", "D", "G"]], - "descries": null, - "descried": null, - "descrying": null, - "Desdemona": [["M"]], - "Desdemona's": null, - "desecrater": [["M"]], - "desecrater's": null, - "desecrate": [["S", "R", "D", "G", "N", "X"]], - "desecrates": null, - "desecrated": null, - "desecrating": null, - "desecration": [["M"]], - "desecrations": null, - "desecration's": null, - "deserter": [["M"]], - "deserter's": null, - "desertification": null, - "desertion": [["M", "S"]], - "desertion's": null, - "desertions": null, - "desert": [["Z", "G", "M", "R", "D", "S"]], - "deserters": null, - "deserting": null, - "desert's": null, - "deserted": null, - "deserts": null, - "deservedness": [["M"]], - "deservedness's": null, - "deserved": [["Y", "U"]], - "deservedly": null, - "undeservedly": null, - "undeserved": null, - "deserve": [["J"]], - "deservings": null, - "deserving": [["Y"]], - "deservingly": null, - "d�shabill�'s": null, - "desiccant": [["S"]], - "desiccants": null, - "desiccate": [["X", "N", "G", "S", "D"]], - "desiccations": null, - "desiccation": [["M"]], - "desiccating": null, - "desiccates": null, - "desiccated": null, - "desiccation's": null, - "desiccator": [["S", "M"]], - "desiccators": null, - "desiccator's": null, - "desiderata": null, - "desideratum": [["M"]], - "desideratum's": null, - "designable": null, - "design": [["A", "D", "G", "S"]], - "redesign": null, - "redesigned": null, - "redesigning": null, - "redesigns": null, - "designed": [["Y"]], - "designing": [["U"]], - "designs": null, - "designate": [["V", "N", "G", "S", "D", "X"]], - "designative": null, - "designation": [["M"]], - "designating": null, - "designates": null, - "designated": null, - "designations": null, - "designational": null, - "designation's": null, - "designator": [["S", "M"]], - "designators": null, - "designator's": null, - "designedly": null, - "designer": [["M"]], - "designer's": null, - "undesigning": null, - "Desi": [["M"]], - "Desi's": null, - "desirabilia": null, - "desirability's": null, - "desirability": [["U", "S"]], - "undesirability": null, - "undesirabilities": null, - "desirabilities": null, - "desirableness": [["S", "M"]], - "desirablenesses": null, - "desirableness's": [["U"]], - "undesirableness's": null, - "desirable": [["U", "P", "S"]], - "undesirable": null, - "undesirableness": null, - "undesirables": null, - "desirables": null, - "desirably": [["U"]], - "undesirably": null, - "Desirae": [["M"]], - "Desirae's": null, - "desire": [["B", "R"]], - "desirer": [["M"]], - "desired": [["U"]], - "undesired": null, - "Desiree": [["M"]], - "Desiree's": null, - "desirer's": null, - "Desiri": [["M"]], - "Desiri's": null, - "desirousness": [["M"]], - "desirousness's": null, - "desirous": [["P", "Y"]], - "desirously": null, - "desist": [["D", "S", "G"]], - "desisted": null, - "desists": null, - "desisting": null, - "desk": [["S", "M"]], - "desks": null, - "desk's": null, - "desktop": [["S"]], - "desktops": null, - "Desmond": [["M"]], - "Desmond's": null, - "Desmund": [["M"]], - "Desmund's": null, - "desolateness": [["S", "M"]], - "desolatenesses": null, - "desolateness's": null, - "desolate": [["P", "X", "D", "R", "S", "Y", "N", "G"]], - "desolations": null, - "desolated": null, - "desolater": [["M"]], - "desolates": null, - "desolately": null, - "desolation": [["M"]], - "desolating": [["Y"]], - "desolater's": null, - "desolatingly": null, - "desolation's": null, - "desorption": [["M"]], - "desorption's": null, - "despairer": [["M"]], - "despairer's": null, - "despairing": [["Y"]], - "despairingly": null, - "despair": [["S", "G", "D", "R"]], - "despairs": null, - "despaired": null, - "desperadoes": null, - "desperado": [["M"]], - "desperado's": null, - "desperateness": [["S", "M"]], - "desperatenesses": null, - "desperateness's": null, - "desperate": [["Y", "N", "X", "P"]], - "desperately": null, - "desperation": [["M"]], - "desperations": null, - "desperation's": null, - "despicable": null, - "despicably": null, - "despiser": [["M"]], - "despiser's": null, - "despise": [["S", "R", "D", "G"]], - "despises": null, - "despised": null, - "despising": null, - "despoil": [["L"]], - "despoilment": [["M", "S"]], - "despoilment's": null, - "despoilments": null, - "despond": null, - "despondence": [["S"]], - "despondences": null, - "despondency": [["M", "S"]], - "despondency's": null, - "despondencies": null, - "despondent": [["Y"]], - "despondently": null, - "despotic": null, - "despotically": null, - "despotism": [["S", "M"]], - "despotisms": null, - "despotism's": null, - "dessert": [["S", "M"]], - "desserts": null, - "dessert's": null, - "dessicate": [["D", "N"]], - "dessicated": null, - "dessication": null, - "d'Estaing": null, - "destinate": [["N", "X"]], - "destination": [["M"]], - "destinations": null, - "destination's": null, - "destine": [["G", "S", "D"]], - "destining": null, - "destines": null, - "destined": null, - "destiny": [["M", "S"]], - "destiny's": null, - "destinies": null, - "destituteness": [["M"]], - "destituteness's": null, - "destitute": [["N", "X", "P"]], - "destitution": [["M"]], - "destitutions": null, - "destitution's": null, - "destroy": [["B", "Z", "G", "D", "R", "S"]], - "destroyable": null, - "destroyers": null, - "destroying": null, - "destroyed": null, - "destroyer": [["M"]], - "destroys": null, - "destroyer's": null, - "destructibility": [["S", "M", "I"]], - "destructibilities": null, - "indestructibilities": null, - "destructibility's": null, - "indestructibility's": null, - "indestructibility": null, - "destructible": [["I"]], - "indestructible": [["P"]], - "destruction": [["S", "M"]], - "destructions": null, - "destruction's": null, - "destructiveness": [["M", "S"]], - "destructiveness's": null, - "destructivenesses": null, - "destructive": [["Y", "P"]], - "destructively": null, - "destructor": [["M"]], - "destructor's": null, - "destruct": [["V", "G", "S", "D"]], - "destructing": null, - "destructs": null, - "destructed": null, - "desuetude": [["M", "S"]], - "desuetude's": null, - "desuetudes": null, - "desultorily": null, - "desultoriness": [["M"]], - "desultoriness's": null, - "desultory": [["P"]], - "detachedness": [["M"]], - "detachedness's": null, - "detached": [["Y", "P"]], - "detachedly": null, - "detacher": [["M"]], - "detacher's": null, - "detach": [["L", "S", "R", "D", "B", "G"]], - "detachment": [["S", "M"]], - "detaches": null, - "detachable": null, - "detaching": null, - "detachments": null, - "detachment's": null, - "detailedness": [["M"]], - "detailedness's": null, - "detailed": [["Y", "P"]], - "detailedly": null, - "detainee": [["S"]], - "detainees": null, - "detainer": [["M"]], - "detainer's": null, - "detain": [["L", "G", "R", "D", "S"]], - "detainment": [["M", "S"]], - "detaining": null, - "detained": null, - "detains": null, - "detainment's": null, - "detainments": null, - "d'etat": null, - "detectability": [["U"]], - "undetectability": null, - "detectable": [["U"]], - "undetectable": null, - "detectably": [["U"]], - "undetectably": null, - "detect": [["D", "B", "S", "V", "G"]], - "detected": [["U"]], - "detects": null, - "detective": [["M", "S"]], - "detecting": null, - "undetected": null, - "detection": [["S", "M"]], - "detections": null, - "detection's": null, - "detective's": null, - "detectives": null, - "detector": [["M", "S"]], - "detector's": null, - "detectors": null, - "d�tente": null, - "detentes": null, - "detention": [["S", "M"]], - "detentions": null, - "detention's": null, - "detergency": [["M"]], - "detergency's": null, - "detergent": [["S", "M"]], - "detergents": null, - "detergent's": null, - "deteriorate": [["X", "D", "S", "N", "G", "V"]], - "deteriorations": null, - "deteriorated": null, - "deteriorates": null, - "deterioration": [["M"]], - "deteriorating": null, - "deteriorative": null, - "deterioration's": null, - "determent": [["S", "M"]], - "determents": null, - "determent's": null, - "determinability": [["M"]], - "determinability's": null, - "determinable": [["I", "P"]], - "indeterminable": null, - "indeterminableness": null, - "determinableness": [["I", "M"]], - "indeterminableness's": null, - "determinableness's": null, - "determinacy": [["I"]], - "indeterminacy": [["M", "S"]], - "determinant": [["M", "S"]], - "determinant's": null, - "determinants": null, - "determinateness": [["I", "M"]], - "indeterminateness": null, - "indeterminateness's": null, - "determinateness's": null, - "determinate": [["P", "Y", "I", "N"]], - "determinately": null, - "indeterminately": null, - "indeterminate": null, - "indetermination": null, - "determination": [["I", "M"]], - "indetermination's": null, - "determination's": null, - "determinativeness": [["M"]], - "determinativeness's": null, - "determinative": [["P"]], - "determinedly": null, - "determinedness": [["M"]], - "determinedness's": null, - "determined": [["U"]], - "undetermined": null, - "determine": [["G", "A", "S", "D"]], - "determining": null, - "redetermining": null, - "redetermine": null, - "redetermines": null, - "redetermined": null, - "determines": null, - "determiner": [["S", "M"]], - "determiners": null, - "determiner's": null, - "determinism": [["M", "S"]], - "determinism's": [["I"]], - "determinisms": null, - "indeterminism's": null, - "deterministically": null, - "deterministic": [["I"]], - "indeterministic": null, - "deterred": [["U"]], - "undeterred": null, - "deterrence": [["S", "M"]], - "deterrences": null, - "deterrence's": null, - "deterrent": [["S", "M", "Y"]], - "deterrents": null, - "deterrent's": null, - "deterrently": null, - "deterring": null, - "detersive": [["S"]], - "detersives": null, - "deter": [["S", "L"]], - "deters": [["V"]], - "detestableness": [["M"]], - "detestableness's": null, - "detestable": [["P"]], - "detestably": null, - "detestation": [["S", "M"]], - "detestations": null, - "detestation's": null, - "dethrone": [["L"]], - "dethronement": [["S", "M"]], - "dethronements": null, - "dethronement's": null, - "detonable": null, - "detonated": [["U"]], - "undetonated": null, - "detonate": [["X", "D", "S", "N", "G", "V"]], - "detonations": null, - "detonates": null, - "detonation": [["M"]], - "detonating": null, - "detonative": null, - "detonation's": null, - "detonator": [["M", "S"]], - "detonator's": null, - "detonators": null, - "detour": [["G"]], - "detouring": null, - "detoxification": [["M"]], - "detoxification's": null, - "detoxify": [["N", "X", "G", "S", "D"]], - "detoxifications": null, - "detoxifying": null, - "detoxifies": null, - "detoxified": null, - "detox": [["S", "D", "G"]], - "detoxes": null, - "detoxed": null, - "detoxing": null, - "detract": [["G", "V", "D"]], - "detracting": null, - "detractive": [["Y"]], - "detracted": null, - "detractively": null, - "d'etre": null, - "detribalize": [["G", "S", "D"]], - "detribalizing": null, - "detribalizes": null, - "detribalized": null, - "detrimental": [["S", "Y"]], - "detrimentals": null, - "detrimentally": null, - "detriment": [["S", "M"]], - "detriments": null, - "detriment's": null, - "detritus": [["M"]], - "detritus's": null, - "Detroit": [["M"]], - "Detroit's": null, - "deuced": [["Y"]], - "deucedly": null, - "deuce": [["S", "D", "G", "M"]], - "deuces": null, - "deucing": null, - "deuce's": null, - "deus": null, - "deuterium": [["M", "S"]], - "deuterium's": null, - "deuteriums": null, - "deuteron": [["M"]], - "deuteron's": null, - "Deuteronomy": [["M"]], - "Deuteronomy's": null, - "Deutsch": [["M"]], - "Deutsch's": null, - "Deva": [["M"]], - "Deva's": null, - "Devanagari": [["M"]], - "Devanagari's": null, - "Devan": [["M"]], - "Devan's": null, - "devastate": [["X", "V", "N", "G", "S", "D"]], - "devastations": null, - "devastative": null, - "devastation": [["M"]], - "devastating": [["Y"]], - "devastates": null, - "devastated": null, - "devastatingly": null, - "devastation's": null, - "devastator": [["S", "M"]], - "devastators": null, - "devastator's": null, - "develop": [["A", "L", "Z", "S", "G", "D", "R"]], - "redevelop": null, - "redevelopment": null, - "redevelopers": null, - "redevelops": null, - "redeveloping": null, - "redeveloped": null, - "redeveloper": null, - "development": [["A", "S", "M"]], - "developers": null, - "develops": null, - "developing": null, - "developed": [["U"]], - "developer": [["M", "A"]], - "undeveloped": null, - "developer's": null, - "redeveloper's": null, - "developmental": [["Y"]], - "developmentally": null, - "redevelopments": null, - "redevelopment's": null, - "developments": null, - "development's": null, - "deviance": [["M", "S"]], - "deviance's": null, - "deviances": null, - "deviancy": [["S"]], - "deviancies": null, - "deviant": [["Y", "M", "S"]], - "deviantly": null, - "deviant's": null, - "deviants": null, - "deviated": [["U"]], - "undeviated": null, - "deviate": [["X", "S", "D", "G", "N"]], - "deviations": null, - "deviates": null, - "deviating": [["U"]], - "deviation": [["M"]], - "undeviating": [["Y"]], - "deviation's": null, - "devilishness": [["M", "S"]], - "devilishness's": null, - "devilishnesses": null, - "devilish": [["P", "Y"]], - "devilishly": null, - "devilment": [["S", "M"]], - "devilments": null, - "devilment's": null, - "devilry": [["M", "S"]], - "devilry's": null, - "devilries": null, - "devil": [["S", "L", "M", "D", "G"]], - "devils": null, - "devil's": null, - "deviled": null, - "deviling": null, - "deviltry": [["M", "S"]], - "deviltry's": null, - "deviltries": null, - "Devi": [["M"]], - "Devi's": null, - "Devina": [["M"]], - "Devina's": null, - "Devin": [["M"]], - "Devin's": null, - "Devinne": [["M"]], - "Devinne's": null, - "deviousness": [["S", "M"]], - "deviousnesses": null, - "deviousness's": null, - "devious": [["Y", "P"]], - "deviously": null, - "devise": [["J", "R"]], - "devisings": null, - "deviser": [["M"]], - "deviser's": null, - "Devland": [["M"]], - "Devland's": null, - "Devlen": [["M"]], - "Devlen's": null, - "Devlin": [["M"]], - "Devlin's": null, - "Dev": [["M"]], - "Dev's": null, - "devoice": null, - "devolution": [["M", "S"]], - "devolution's": null, - "devolutions": null, - "devolve": [["G", "S", "D"]], - "devolving": null, - "devolves": null, - "devolved": null, - "Devondra": [["M"]], - "Devondra's": null, - "Devonian": null, - "Devon": [["M"]], - "Devon's": null, - "Devonna": [["M"]], - "Devonna's": null, - "Devonne": [["M"]], - "Devonne's": null, - "Devonshire": [["M"]], - "Devonshire's": null, - "Devora": [["M"]], - "Devora's": null, - "devoted": [["Y"]], - "devotedly": null, - "devotee": [["M", "S"]], - "devotee's": null, - "devotees": null, - "devote": [["X", "N"]], - "devotions": null, - "devotion": [["M"]], - "devotional": [["Y", "S"]], - "devotionally": null, - "devotionals": null, - "devotion's": null, - "devourer": [["M"]], - "devourer's": null, - "devour": [["S", "R", "D", "Z", "G"]], - "devours": null, - "devoured": null, - "devourers": null, - "devouring": null, - "devoutness": [["M", "S"]], - "devoutness's": null, - "devoutnesses": null, - "devout": [["P", "R", "Y", "T"]], - "devouter": null, - "devoutly": null, - "devoutest": null, - "Devy": [["M"]], - "Devy's": null, - "Dewain": [["M"]], - "Dewain's": null, - "dewar": null, - "Dewar": [["M"]], - "Dewar's": null, - "Dewayne": [["M"]], - "Dewayne's": null, - "dewberry": [["M", "S"]], - "dewberry's": null, - "dewberries": null, - "dewclaw": [["S", "M"]], - "dewclaws": null, - "dewclaw's": null, - "dewdrop": [["M", "S"]], - "dewdrop's": null, - "dewdrops": null, - "Dewey": [["M"]], - "Dewey's": null, - "Dewie": [["M"]], - "Dewie's": null, - "dewiness": [["M", "S"]], - "dewiness's": null, - "dewinesses": null, - "Dewitt": [["M"]], - "Dewitt's": null, - "dewlap": [["M", "S"]], - "dewlap's": null, - "dewlaps": null, - "Dew": [["M"]], - "Dew's": null, - "dew": [["M", "D", "G", "S"]], - "dew's": null, - "dewed": null, - "dewing": null, - "dews": null, - "dewy": [["T", "P", "R"]], - "dewiest": null, - "dewier": null, - "Dexedrine": [["M"]], - "Dexedrine's": null, - "dexes": [["I"]], - "indexes": null, - "Dex": [["M"]], - "Dex's": null, - "dexter": null, - "dexterity": [["M", "S"]], - "dexterity's": null, - "dexterities": null, - "Dexter": [["M"]], - "Dexter's": null, - "dexterousness": [["M", "S"]], - "dexterousness's": null, - "dexterousnesses": null, - "dexterous": [["P", "Y"]], - "dexterously": null, - "dextrose": [["S", "M"]], - "dextroses": null, - "dextrose's": null, - "DH": null, - "Dhaka": null, - "Dhaulagiri": [["M"]], - "Dhaulagiri's": null, - "dhoti": [["S", "M"]], - "dhotis": null, - "dhoti's": null, - "dhow": [["M", "S"]], - "dhow's": null, - "dhows": null, - "DI": null, - "diabase": [["M"]], - "diabase's": null, - "diabetes": [["M"]], - "diabetes's": null, - "diabetic": [["S"]], - "diabetics": null, - "diabolic": null, - "diabolicalness": [["M"]], - "diabolicalness's": null, - "diabolical": [["Y", "P"]], - "diabolically": null, - "diabolism": [["M"]], - "diabolism's": null, - "diachronic": [["P"]], - "diachronicness": null, - "diacritical": [["Y", "S"]], - "diacritically": null, - "diacriticals": null, - "diacritic": [["M", "S"]], - "diacritic's": null, - "diacritics": null, - "diadem": [["G", "M", "D", "S"]], - "diademing": null, - "diadem's": null, - "diademed": null, - "diadems": null, - "diaereses": null, - "diaeresis": [["M"]], - "diaeresis's": null, - "Diaghilev": [["M"]], - "Diaghilev's": null, - "diagnometer": [["S", "M"]], - "diagnometers": null, - "diagnometer's": null, - "diagnosable": [["U"]], - "undiagnosable": null, - "diagnose": [["B", "G", "D", "S"]], - "diagnosing": null, - "diagnosed": [["U"]], - "diagnoses": null, - "undiagnosed": null, - "diagnosis": [["M"]], - "diagnosis's": null, - "diagnostically": null, - "diagnostician": [["S", "M"]], - "diagnosticians": null, - "diagnostician's": null, - "diagnostic": [["M", "S"]], - "diagnostic's": null, - "diagnostics": [["M"]], - "diagnostics's": null, - "diagonalize": [["G", "D", "S", "B"]], - "diagonalizing": null, - "diagonalized": null, - "diagonalizes": null, - "diagonalizable": null, - "diagonal": [["Y", "S"]], - "diagonally": null, - "diagonals": null, - "diagrammable": null, - "diagrammatic": null, - "diagrammaticality": null, - "diagrammatically": null, - "diagrammed": null, - "diagrammer": [["S", "M"]], - "diagrammers": null, - "diagrammer's": null, - "diagramming": null, - "diagram": [["M", "S"]], - "diagram's": null, - "diagrams": null, - "Diahann": [["M"]], - "Diahann's": null, - "dialectal": [["Y"]], - "dialectally": null, - "dialectical": [["Y"]], - "dialectically": null, - "dialectic": [["M", "S"]], - "dialectic's": null, - "dialectics": null, - "dialect": [["M", "S"]], - "dialect's": null, - "dialects": null, - "dialed": [["A"]], - "redialed": null, - "dialer": [["M"]], - "dialer's": null, - "dialing": [["M"]], - "dialing's": null, - "dial": [["M", "R", "D", "S", "G", "Z", "J"]], - "dial's": null, - "dials": [["A"]], - "dialers": null, - "dialings": null, - "dialogged": null, - "dialogging": null, - "dialog": [["M", "S"]], - "dialog's": null, - "dialogs": null, - "redials": null, - "dialysis": [["M"]], - "dialysis's": null, - "dialyzed": [["U"]], - "undialyzed": [["S", "M"]], - "dialyzes": null, - "diam": null, - "diamagnetic": null, - "diameter": [["M", "S"]], - "diameter's": null, - "diameters": null, - "diametric": null, - "diametrical": [["Y"]], - "diametrically": null, - "diamondback": [["S", "M"]], - "diamondbacks": null, - "diamondback's": null, - "diamond": [["G", "S", "M", "D"]], - "diamonding": null, - "diamonds": null, - "diamond's": null, - "diamonded": null, - "Diana": [["M"]], - "Diana's": null, - "Diandra": [["M"]], - "Diandra's": null, - "Diane": [["M"]], - "Diane's": null, - "Dianemarie": [["M"]], - "Dianemarie's": null, - "Dian": [["M"]], - "Dian's": null, - "Dianna": [["M"]], - "Dianna's": null, - "Dianne": [["M"]], - "Dianne's": null, - "Diann": [["M"]], - "Diann's": null, - "Diannne": [["M"]], - "Diannne's": null, - "diapason": [["M", "S"]], - "diapason's": null, - "diapasons": null, - "diaper": [["S", "G", "D", "M"]], - "diapers": null, - "diapering": null, - "diapered": null, - "diaper's": null, - "diaphanousness": [["M"]], - "diaphanousness's": null, - "diaphanous": [["Y", "P"]], - "diaphanously": null, - "diaphragmatic": null, - "diaphragm": [["S", "M"]], - "diaphragms": null, - "diaphragm's": null, - "diarist": [["S", "M"]], - "diarists": null, - "diarist's": null, - "Diarmid": [["M"]], - "Diarmid's": null, - "diarrheal": null, - "diarrhea": [["M", "S"]], - "diarrhea's": null, - "diarrheas": null, - "diary": [["M", "S"]], - "diary's": null, - "diaries": null, - "diaspora": null, - "Diaspora": [["S", "M"]], - "Diasporas": null, - "Diaspora's": null, - "diastase": [["S", "M"]], - "diastases": null, - "diastase's": null, - "diastole": [["M", "S"]], - "diastole's": null, - "diastoles": null, - "diastolic": null, - "diathermy": [["S", "M"]], - "diathermies": null, - "diathermy's": null, - "diathesis": [["M"]], - "diathesis's": null, - "diatomic": null, - "diatom": [["S", "M"]], - "diatoms": null, - "diatom's": null, - "diatonic": null, - "diatribe": [["M", "S"]], - "diatribe's": null, - "diatribes": null, - "Diaz's": null, - "dibble": [["S", "D", "M", "G"]], - "dibbles": null, - "dibbled": null, - "dibble's": null, - "dibbling": null, - "dibs": null, - "DiCaprio": [["M"]], - "DiCaprio's": null, - "dice": [["G", "D", "R", "S"]], - "dicing": [["M"]], - "diced": null, - "dicer": [["M"]], - "dices": null, - "dicer's": null, - "dicey": null, - "dichloride": [["M"]], - "dichloride's": null, - "dichotomization": [["M"]], - "dichotomization's": null, - "dichotomize": [["D", "S", "G"]], - "dichotomized": null, - "dichotomizes": null, - "dichotomizing": null, - "dichotomous": [["P", "Y"]], - "dichotomousness": null, - "dichotomously": null, - "dichotomy": [["S", "M"]], - "dichotomies": null, - "dichotomy's": null, - "dicier": null, - "diciest": null, - "dicing's": null, - "Dickensian": [["S"]], - "Dickensians": null, - "dickens": [["M"]], - "dickens's": null, - "Dickens": [["M"]], - "Dickens's": null, - "dicker": [["D", "G"]], - "dickered": null, - "dickering": null, - "Dickerson": [["M"]], - "Dickerson's": null, - "dickey": [["S", "M"]], - "dickeys": null, - "dickey's": null, - "dick": [["G", "Z", "X", "R", "D", "M", "S", "!"]], - "dicking": null, - "dickers": null, - "dicked": null, - "dick's": null, - "dicks": null, - "Dickie": [["M"]], - "Dickie's": null, - "dickier": null, - "dickiest": null, - "Dickinson": [["M"]], - "Dickinson's": null, - "Dickson": [["M"]], - "Dickson's": null, - "Dick": [["X", "M"]], - "Dick's": null, - "Dicky": [["M"]], - "Dicky's": null, - "dicky's": null, - "dicotyledonous": null, - "dicotyledon": [["S", "M"]], - "dicotyledons": null, - "dicotyledon's": null, - "dicta": [["M"]], - "dicta's": null, - "Dictaphone": [["S", "M"]], - "Dictaphones": null, - "Dictaphone's": null, - "dictate": [["S", "D", "N", "G", "X"]], - "dictates": null, - "dictated": null, - "dictation": [["M"]], - "dictating": null, - "dictations": null, - "dictation's": null, - "dictatorialness": [["M"]], - "dictatorialness's": null, - "dictatorial": [["Y", "P"]], - "dictatorially": null, - "dictator": [["M", "S"]], - "dictator's": null, - "dictators": null, - "dictatorship": [["S", "M"]], - "dictatorships": null, - "dictatorship's": null, - "dictionary": [["S", "M"]], - "dictionaries": null, - "dictionary's": null, - "diction": [["M", "S"]], - "diction's": null, - "dictions": null, - "dictum": [["M"]], - "dictum's": null, - "didactically": null, - "didactic": [["S"]], - "didactics": [["M"]], - "didactics's": null, - "did": [["A", "U"]], - "redid": null, - "undid": null, - "diddler": [["M"]], - "diddler's": null, - "diddle": [["Z", "G", "R", "S", "D"]], - "diddlers": null, - "diddling": null, - "diddles": null, - "diddled": null, - "Diderot": [["M"]], - "Diderot's": null, - "Didi": [["M"]], - "Didi's": null, - "didn't": null, - "didoes": null, - "dido": [["M"]], - "dido's": null, - "Dido": [["M"]], - "Dido's": null, - "didst": null, - "die": [["D", "S"]], - "died": null, - "dies": [["U"]], - "Diefenbaker": [["M"]], - "Diefenbaker's": null, - "Diego": [["M"]], - "Diego's": null, - "dieing": null, - "dielectric": [["M", "S"]], - "dielectric's": null, - "dielectrics": null, - "diem": null, - "Diem": [["M"]], - "Diem's": null, - "Diena": [["M"]], - "Diena's": null, - "Dierdre": [["M"]], - "Dierdre's": null, - "diereses": null, - "dieresis": [["M"]], - "dieresis's": null, - "diesel": [["G", "M", "D", "S"]], - "dieseling": null, - "diesel's": null, - "dieseled": null, - "diesels": null, - "Diesel's": null, - "dies's": null, - "undies": null, - "dietary": [["S"]], - "dietaries": null, - "dieter": [["M"]], - "dieter's": null, - "Dieter": [["M"]], - "Dieter's": null, - "dietetic": [["S"]], - "dietetics": [["M"]], - "dietetics's": null, - "diethylaminoethyl": null, - "diethylstilbestrol": [["M"]], - "diethylstilbestrol's": null, - "dietitian": [["M", "S"]], - "dietitian's": null, - "dietitians": null, - "diet": [["R", "D", "G", "Z", "S", "M"]], - "dieted": null, - "dieting": null, - "dieters": null, - "diets": null, - "diet's": null, - "Dietrich": [["M"]], - "Dietrich's": null, - "Dietz": [["M"]], - "Dietz's": null, - "difference": [["D", "S", "G", "M"]], - "differenced": null, - "differences": [["I"]], - "differencing": null, - "difference's": [["I"]], - "indifference's": null, - "indifferences": null, - "differentiability": null, - "differentiable": null, - "differential": [["S", "M", "Y"]], - "differentials": null, - "differential's": null, - "differentially": null, - "differentiated": [["U"]], - "undifferentiated": null, - "differentiate": [["X", "S", "D", "N", "G"]], - "differentiations": null, - "differentiates": null, - "differentiation": [["M"]], - "differentiating": null, - "differentiation's": null, - "differentiator": [["S", "M"]], - "differentiators": null, - "differentiator's": null, - "differentness": null, - "different": [["Y", "I"]], - "differently": null, - "indifferently": null, - "indifferent": null, - "differ": [["S", "Z", "G", "R", "D"]], - "differs": null, - "differers": null, - "differing": null, - "differer": null, - "differed": null, - "difficile": null, - "difficult": [["Y"]], - "difficultly": null, - "difficulty": [["S", "M"]], - "difficulties": null, - "difficulty's": null, - "diffidence": [["M", "S"]], - "diffidence's": null, - "diffidences": null, - "diffident": [["Y"]], - "diffidently": null, - "diffract": [["G", "S", "D"]], - "diffracting": null, - "diffracts": null, - "diffracted": null, - "diffraction": [["S", "M"]], - "diffractions": null, - "diffraction's": null, - "diffractometer": [["S", "M"]], - "diffractometers": null, - "diffractometer's": null, - "diffuseness": [["M", "S"]], - "diffuseness's": null, - "diffusenesses": null, - "diffuse": [["P", "R", "S", "D", "Z", "Y", "V", "X", "N", "G"]], - "diffuser": [["M"]], - "diffuses": null, - "diffused": null, - "diffusers": null, - "diffusely": null, - "diffusive": [["Y", "P"]], - "diffusions": null, - "diffusion": [["M"]], - "diffusing": null, - "diffuser's": null, - "diffusible": null, - "diffusional": null, - "diffusion's": null, - "diffusiveness": [["M"]], - "diffusiveness's": null, - "diffusively": null, - "diffusivity": [["M"]], - "diffusivity's": null, - "digerati": null, - "digested": [["I", "U"]], - "indigested": null, - "undigested": null, - "digester": [["M"]], - "digester's": null, - "digestibility": [["M", "S"]], - "digestibility's": null, - "digestibilities": null, - "digestible": [["I"]], - "indigestible": [["S"]], - "digestifs": null, - "digestion": [["I", "S", "M"]], - "indigestion": null, - "indigestions": null, - "indigestion's": null, - "digestions": null, - "digestion's": null, - "digestive": [["Y", "S", "P"]], - "digestively": null, - "digestives": null, - "digestiveness": null, - "digest": [["R", "D", "V", "G", "S"]], - "digesting": null, - "digests": null, - "digger": [["M", "S"]], - "digger's": null, - "diggers": null, - "digging": [["S"]], - "diggings": null, - "digitalis": [["M"]], - "digitalis's": null, - "digitalization": [["M", "S"]], - "digitalization's": null, - "digitalizations": null, - "digitalized": null, - "digitalizes": null, - "digitalizing": null, - "digital": [["S", "Y"]], - "digitals": null, - "digitally": null, - "digitization": [["M"]], - "digitization's": null, - "digitizer": [["M"]], - "digitizer's": null, - "digitize": [["Z", "G", "D", "R", "S"]], - "digitizers": null, - "digitizing": null, - "digitized": null, - "digitizes": null, - "digit": [["S", "M"]], - "digits": null, - "digit's": null, - "dignified": [["U"]], - "undignified": null, - "dignify": [["D", "S", "G"]], - "dignifies": null, - "dignifying": null, - "dignitary": [["S", "M"]], - "dignitaries": null, - "dignitary's": null, - "dignity": [["I", "S", "M"]], - "indignity": null, - "indignities": null, - "indignity's": null, - "dignities": null, - "dignity's": null, - "digram": null, - "digraph": [["M"]], - "digraph's": null, - "digraphs": null, - "digress": [["G", "V", "D", "S"]], - "digressing": null, - "digressive": [["P", "Y"]], - "digressed": null, - "digresses": null, - "digression": [["S", "M"]], - "digressions": null, - "digression's": null, - "digressiveness": [["M"]], - "digressiveness's": null, - "digressively": null, - "dig": [["T", "S"]], - "digs": null, - "dihedral": null, - "Dijkstra": [["M"]], - "Dijkstra's": null, - "Dijon": [["M"]], - "Dijon's": null, - "dike": [["D", "R", "S", "M", "G"]], - "diked": null, - "diker": [["M"]], - "dikes": null, - "dike's": null, - "diking": null, - "diker's": null, - "diktat": [["S", "M"]], - "diktats": null, - "diktat's": null, - "Dilan": [["M"]], - "Dilan's": null, - "dilapidate": [["X", "G", "N", "S", "D"]], - "dilapidations": null, - "dilapidating": null, - "dilapidation": [["M"]], - "dilapidates": null, - "dilapidated": null, - "dilapidation's": null, - "dilatation": [["S", "M"]], - "dilatations": null, - "dilatation's": null, - "dilated": [["Y", "P"]], - "dilatedly": null, - "dilatedness": null, - "dilate": [["X", "V", "N", "G", "S", "D"]], - "dilations": null, - "dilative": null, - "dilation": [["M"]], - "dilating": null, - "dilates": null, - "dilation's": null, - "dilatoriness": [["M"]], - "dilatoriness's": null, - "dilator": [["S", "M"]], - "dilators": null, - "dilator's": null, - "dilatory": [["P"]], - "Dilbert": [["M"]], - "Dilbert's": null, - "dilemma": [["M", "S"]], - "dilemma's": null, - "dilemmas": null, - "dilettante": [["M", "S"]], - "dilettante's": null, - "dilettantes": null, - "dilettantish": null, - "dilettantism": [["M", "S"]], - "dilettantism's": null, - "dilettantisms": null, - "diligence": [["S", "M"]], - "diligences": null, - "diligence's": null, - "diligentness": [["M"]], - "diligentness's": null, - "diligent": [["Y", "P"]], - "diligently": null, - "dilithium": null, - "Dillard": [["M"]], - "Dillard's": null, - "Dillie": [["M"]], - "Dillie's": null, - "Dillinger": [["M"]], - "Dillinger's": null, - "dilling": [["R"]], - "dillinger": null, - "dillis": null, - "Dill": [["M"]], - "Dill's": null, - "Dillon": [["M"]], - "Dillon's": null, - "dill": [["S", "G", "M", "D"]], - "dills": null, - "dill's": null, - "dilled": null, - "dillydally": [["G", "S", "D"]], - "dillydallying": null, - "dillydallies": null, - "dillydallied": null, - "Dilly": [["M"]], - "Dilly's": null, - "dilly": [["S", "M"]], - "dillies": null, - "dilly's": null, - "dilogarithm": null, - "diluent": null, - "diluted": [["U"]], - "undiluted": null, - "diluteness": [["M"]], - "diluteness's": null, - "dilute": [["R", "S", "D", "P", "X", "Y", "V", "N", "G"]], - "diluter": null, - "dilutes": null, - "dilutions": null, - "dilutely": null, - "dilutive": null, - "dilution": [["M"]], - "diluting": null, - "dilution's": null, - "Di": [["M"]], - "Di's": null, - "DiMaggio": [["M"]], - "DiMaggio's": null, - "dimensionality": [["M"]], - "dimensionality's": null, - "dimensional": [["Y"]], - "dimensionally": null, - "dimensionless": null, - "dimension": [["M", "D", "G", "S"]], - "dimension's": null, - "dimensioned": null, - "dimensioning": null, - "dimensions": null, - "dimer": [["M"]], - "dimer's": null, - "dime": [["S", "M"]], - "dimes": null, - "dime's": null, - "dimethylglyoxime": null, - "dimethyl": [["M"]], - "dimethyl's": null, - "diminished": [["U"]], - "undiminished": null, - "diminish": [["S", "D", "G", "B", "J"]], - "diminishes": null, - "diminishing": null, - "diminishable": null, - "diminishings": null, - "diminuendo": [["S", "M"]], - "diminuendos": null, - "diminuendo's": null, - "diminution": [["S", "M"]], - "diminutions": null, - "diminution's": null, - "diminutiveness": [["M"]], - "diminutiveness's": null, - "diminutive": [["S", "Y", "P"]], - "diminutives": null, - "diminutively": null, - "Dimitri": [["M"]], - "Dimitri's": null, - "Dimitry": [["M"]], - "Dimitry's": null, - "dimity": [["M", "S"]], - "dimity's": null, - "dimities": null, - "dimmed": [["U"]], - "undimmed": null, - "dimmer": [["M", "S"]], - "dimmer's": null, - "dimmers": null, - "dimmest": null, - "dimming": null, - "dimness": [["S", "M"]], - "dimnesses": null, - "dimness's": null, - "dimorphism": [["M"]], - "dimorphism's": null, - "dimple": [["M", "G", "S", "D"]], - "dimple's": null, - "dimpling": null, - "dimples": null, - "dimpled": null, - "dimply": [["R", "T"]], - "dimplier": null, - "dimpliest": null, - "dim": [["R", "Y", "P", "Z", "S"]], - "dimly": null, - "dimers": null, - "dims": null, - "dimwit": [["M", "S"]], - "dimwit's": null, - "dimwits": null, - "dimwitted": null, - "Dinah": [["M"]], - "Dinah's": null, - "Dina": [["M"]], - "Dina's": null, - "dinar": [["S", "M"]], - "dinars": null, - "dinar's": null, - "diner": [["M"]], - "diner's": null, - "dine": [["S"]], - "dines": null, - "dinette": [["M", "S"]], - "dinette's": null, - "dinettes": null, - "dingbat": [["M", "S"]], - "dingbat's": null, - "dingbats": null, - "ding": [["G", "D"]], - "dinging": null, - "dinged": null, - "dinghy": [["S", "M"]], - "dinghies": null, - "dinghy's": null, - "dingily": null, - "dinginess": [["S", "M"]], - "dinginesses": null, - "dinginess's": null, - "dingle": [["M", "S"]], - "dingle's": null, - "dingles": null, - "dingoes": null, - "dingo": [["M", "S"]], - "dingo's": null, - "dingos": null, - "dingus": [["S", "M"]], - "dinguses": null, - "dingus's": null, - "dingy": [["P", "R", "S", "T"]], - "dingier": null, - "dingies": null, - "dingiest": null, - "dinky": [["R", "S", "T"]], - "dinkier": null, - "dinkies": null, - "dinkiest": null, - "din": [["M", "D", "R", "Z", "G", "S"]], - "din's": null, - "dined": null, - "diners": null, - "dining": null, - "dins": null, - "dinned": null, - "dinner": [["S", "M"]], - "dinners": null, - "dinner's": null, - "dinnertime": [["S"]], - "dinnertimes": null, - "dinnerware": [["M", "S"]], - "dinnerware's": null, - "dinnerwares": null, - "Dinnie": [["M"]], - "Dinnie's": null, - "dinning": null, - "Dinny": [["M"]], - "Dinny's": null, - "Dino": [["M"]], - "Dino's": null, - "dinosaur": [["M", "S"]], - "dinosaur's": null, - "dinosaurs": null, - "dint": [["S", "G", "M", "D"]], - "dints": null, - "dinting": null, - "dint's": null, - "dinted": null, - "diocesan": [["S"]], - "diocesans": null, - "diocese": [["S", "M"]], - "dioceses": null, - "diocese's": null, - "Diocletian": [["M"]], - "Diocletian's": null, - "diode": [["S", "M"]], - "diodes": null, - "diode's": null, - "Diogenes": [["M"]], - "Diogenes's": null, - "Dione": [["M"]], - "Dione's": null, - "Dionisio": [["M"]], - "Dionisio's": null, - "Dionis": [["M"]], - "Dionis's": null, - "Dion's": null, - "Dionne": [["M"]], - "Dionne's": null, - "Dionysian": null, - "Dionysus": [["M"]], - "Dionysus's": null, - "Diophantine": [["M"]], - "Diophantine's": null, - "diopter": [["M", "S"]], - "diopter's": null, - "diopters": null, - "diorama": [["S", "M"]], - "dioramas": null, - "diorama's": null, - "Dior": [["M"]], - "Dior's": null, - "dioxalate": null, - "dioxide": [["M", "S"]], - "dioxide's": null, - "dioxides": null, - "dioxin": [["S"]], - "dioxins": null, - "diphtheria": [["S", "M"]], - "diphtherias": null, - "diphtheria's": null, - "diphthong": [["S", "M"]], - "diphthongs": null, - "diphthong's": null, - "diplexers": null, - "diploid": [["S"]], - "diploids": null, - "diplomacy": [["S", "M"]], - "diplomacies": null, - "diplomacy's": null, - "diploma": [["S", "M", "D", "G"]], - "diplomas": null, - "diploma's": null, - "diplomaed": null, - "diplomaing": null, - "diplomata": null, - "diplomatically": null, - "diplomatic": [["S"]], - "diplomatics": [["M"]], - "diplomatics's": null, - "diplomatist": [["S", "M"]], - "diplomatists": null, - "diplomatist's": null, - "diplomat": [["M", "S"]], - "diplomat's": null, - "diplomats": null, - "dipodic": null, - "dipody": [["M"]], - "dipody's": null, - "dipole": [["M", "S"]], - "dipole's": null, - "dipoles": null, - "dipped": null, - "Dipper": [["M"]], - "Dipper's": null, - "dipper": [["S", "M"]], - "dippers": null, - "dipper's": null, - "dipping": [["S"]], - "dippings": null, - "dippy": [["T", "R"]], - "dippiest": null, - "dippier": null, - "dip": [["S"]], - "dips": null, - "dipsomaniac": [["M", "S"]], - "dipsomaniac's": null, - "dipsomaniacs": null, - "dipsomania": [["S", "M"]], - "dipsomanias": null, - "dipsomania's": null, - "dipstick": [["M", "S"]], - "dipstick's": null, - "dipsticks": null, - "dipterous": null, - "diptych": [["M"]], - "diptych's": null, - "diptychs": null, - "Dir": null, - "Dirac": [["M"]], - "Dirac's": null, - "directed": [["I", "U", "A"]], - "indirected": null, - "undirected": null, - "redirected": null, - "directionality": null, - "directional": [["S", "Y"]], - "directionals": null, - "directionally": null, - "direction": [["M", "I", "S"]], - "direction's": null, - "indirection's": null, - "indirection": null, - "indirections": null, - "directions": [["A"]], - "redirections": null, - "directive": [["S", "M"]], - "directives": null, - "directive's": null, - "directivity": [["M"]], - "directivity's": null, - "directly": [["I"]], - "indirectly": null, - "directness": [["I", "S", "M"]], - "indirectness": null, - "indirectnesses": null, - "indirectness's": null, - "directnesses": null, - "directness's": null, - "director": [["A", "M", "S"]], - "redirector": null, - "redirector's": null, - "redirectors": null, - "director's": null, - "directors": null, - "directorate": [["S", "M"]], - "directorates": null, - "directorate's": null, - "directorial": null, - "directorship": [["S", "M"]], - "directorships": null, - "directorship's": null, - "directory": [["S", "M"]], - "directories": null, - "directory's": null, - "direct": [["R", "D", "Y", "P", "T", "S", "V", "G"]], - "directer": null, - "directest": null, - "directs": [["I", "A"]], - "directing": null, - "directrix": [["M", "S"]], - "directrix's": null, - "directrixes": null, - "indirects": null, - "redirects": null, - "direful": [["Y"]], - "direfully": null, - "direness": [["M"]], - "direness's": null, - "dire": [["Y", "T", "R", "P"]], - "direly": null, - "direst": null, - "direr": null, - "dirge": [["G", "S", "D", "M"]], - "dirging": null, - "dirges": null, - "dirged": null, - "dirge's": null, - "Dirichlet": [["M"]], - "Dirichlet's": null, - "dirigible": [["S"]], - "dirigibles": null, - "dirk": [["G", "D", "M", "S"]], - "dirking": null, - "dirked": null, - "dirk's": null, - "dirks": null, - "Dirk": [["M"]], - "Dirk's": null, - "dirndl": [["M", "S"]], - "dirndl's": null, - "dirndls": null, - "dirtily": null, - "dirtiness": [["S", "M"]], - "dirtinesses": null, - "dirtiness's": null, - "dirt": [["M", "S"]], - "dirt's": null, - "dirts": null, - "dirty": [["G", "P", "R", "S", "D", "T"]], - "dirtying": null, - "dirtier": null, - "dirties": null, - "dirtied": null, - "dirtiest": null, - "Dis": null, - "disable": [["L", "Z", "G", "D"]], - "disablement": [["M", "S"]], - "disablers": null, - "disabling": null, - "disabled": null, - "disablement's": null, - "disablements": null, - "disabler's": null, - "disabuse": null, - "disadvantagedness": null, - "disagreeables": null, - "disallow": [["D"]], - "disallowed": null, - "disambiguate": [["D", "S", "G", "N", "X"]], - "disambiguated": null, - "disambiguates": null, - "disambiguating": null, - "disambiguation": null, - "disambiguations": null, - "disappointedly": null, - "disappointingly": null, - "disarmingly": null, - "disarrange": [["L"]], - "disastrous": [["Y"]], - "disastrously": null, - "disbandment": [["S", "M"]], - "disbandments": null, - "disbandment's": null, - "disbar": [["L"]], - "disbarment": [["M", "S"]], - "disbarment's": null, - "disbarments": null, - "disbarring": null, - "disbelievingly": null, - "disbursal": [["S"]], - "disbursals": null, - "disburse": [["G", "D", "R", "S", "L"]], - "disbursing": null, - "disbursed": null, - "disburser": [["M"]], - "disburses": null, - "disbursement": [["M", "S"]], - "disbursement's": null, - "disbursements": null, - "disburser's": null, - "discerner": [["M"]], - "discerner's": null, - "discernibility": null, - "discernible": [["I"]], - "indiscernible": null, - "discernibly": null, - "discerning": [["Y"]], - "discerningly": null, - "discernment": [["M", "S"]], - "discernment's": null, - "discernments": null, - "discern": [["S", "D", "R", "G", "L"]], - "discerns": null, - "discerned": null, - "disc": [["G", "D", "M"]], - "discing": null, - "disced": null, - "disc's": null, - "undischarged": null, - "disciple": [["D", "S", "M", "G"]], - "discipled": null, - "disciples": null, - "disciple's": null, - "discipling": null, - "discipleship": [["S", "M"]], - "discipleships": null, - "discipleship's": null, - "disciplinarian": [["S", "M"]], - "disciplinarians": null, - "disciplinarian's": null, - "disciplinary": null, - "disciplined": [["U"]], - "undisciplined": null, - "discipline": [["I", "D", "M"]], - "indiscipline": null, - "indisciplined": null, - "indiscipline's": null, - "discipline's": null, - "discipliner": [["M"]], - "discipliner's": null, - "disciplines": null, - "disciplining": null, - "undisclosed": null, - "discography": [["M", "S"]], - "discography's": null, - "discographies": null, - "discolored's": null, - "discoloredness": null, - "undiscoloreds": null, - "discolor": [["G"]], - "discoloring": null, - "discombobulate": [["S", "D", "G", "N", "X"]], - "discombobulates": null, - "discombobulated": null, - "discombobulating": null, - "discombobulation": null, - "discombobulations": null, - "discomfited": null, - "discomfiting": null, - "discomfiture": [["M", "S"]], - "discomfiture's": null, - "discomfitures": null, - "disco's": null, - "discoing": null, - "discommode": [["D", "G"]], - "discommoded": null, - "discommoding": null, - "disconcertingly": null, - "disconnectednesses": null, - "disconnecter": [["M"]], - "disconnecter's": null, - "disconsolate": [["Y", "N"]], - "disconsolately": null, - "disconsolation": null, - "discordance": [["S", "M"]], - "discordances": null, - "discordance's": null, - "discordant": [["Y"]], - "discordantly": null, - "discording": null, - "discorporate": [["D"]], - "discorporated": null, - "discotheque": [["M", "S"]], - "discotheque's": null, - "discotheques": null, - "discountable": null, - "discourage": [["L", "G", "D", "R"]], - "discouragement": [["M", "S"]], - "discouraging": [["Y"]], - "discouraged": null, - "discourager": null, - "discouragement's": null, - "discouragements": null, - "discouragingly": null, - "indiscoverable": null, - "rediscover": null, - "rediscovered": null, - "rediscovering": null, - "rediscovers": null, - "undiscovered": null, - "discoverers": null, - "discovery": [["S", "A", "M"]], - "discoveries": null, - "rediscoveries": null, - "rediscovery": null, - "rediscovery's": null, - "discovery's": null, - "discreetly": [["I"]], - "indiscreetly": null, - "discreetness's": [["I"]], - "indiscreetness's": null, - "discreetness": [["S", "M"]], - "discreetnesses": null, - "discreet": [["T", "R", "Y", "P"]], - "discreetest": null, - "discreeter": null, - "discrepancy": [["S", "M"]], - "discrepancies": null, - "discrepancy's": null, - "discrepant": [["Y"]], - "discrepantly": null, - "discreteness": [["S", "M"]], - "discretenesses": null, - "discreteness's": null, - "discrete": [["Y", "P", "N", "X"]], - "discretely": null, - "discretion": [["I", "M", "S"]], - "discretions": null, - "discretionary": null, - "indiscretion": null, - "indiscretion's": null, - "indiscretions": null, - "discretion's": null, - "discretization": null, - "discretized": null, - "discriminable": null, - "discriminant": [["M", "S"]], - "discriminant's": null, - "discriminants": null, - "discriminated": [["U"]], - "undiscriminated": null, - "discriminate": [["S", "D", "V", "N", "G", "X"]], - "discriminates": null, - "discriminative": null, - "discrimination": [["M", "I"]], - "discriminating": [["Y", "I"]], - "discriminations": null, - "discriminatingly": null, - "indiscriminatingly": null, - "indiscriminating": null, - "discrimination's": null, - "indiscrimination's": null, - "indiscrimination": null, - "discriminator": [["M", "S"]], - "discriminator's": null, - "discriminators": null, - "discriminatory": null, - "discursivenesses": null, - "discussant": [["M", "S"]], - "discussant's": null, - "discussants": null, - "undiscussed": null, - "rediscussed": null, - "discusser's": null, - "discussion": [["S", "M"]], - "discussions": null, - "discussion's": null, - "discus": [["S", "M"]], - "discuses": null, - "discus's": null, - "disdainfulness": [["M"]], - "disdainfulness's": null, - "disdainful": [["Y", "P"]], - "disdainfully": null, - "disdain": [["M", "G", "S", "D"]], - "disdain's": null, - "disdaining": null, - "disdains": null, - "disdained": null, - "disease": [["G"]], - "diseasing": null, - "disembowelment": [["S", "M"]], - "disembowelments": null, - "disembowelment's": null, - "disembowel": [["S", "L", "G", "D"]], - "disembowels": null, - "disemboweling": null, - "disemboweled": null, - "disengage": [["L"]], - "disengagement": null, - "disfigure": [["L"]], - "disfigurement": [["M", "S"]], - "disfigurement's": null, - "disfigurements": null, - "disfranchise": [["L"]], - "disfranchisement": [["M", "S"]], - "disfranchisement's": null, - "disfranchisements": null, - "disgorge": null, - "disgrace": [["R"]], - "disgracer": [["M"]], - "disgracer's": null, - "disgruntle": [["D", "S", "L", "G"]], - "disgruntled": null, - "disgruntles": null, - "disgruntlement": [["M", "S"]], - "disgruntling": null, - "disgruntlement's": null, - "disgruntlements": null, - "disguised": [["U", "Y"]], - "undisguised": null, - "undisguisedly": null, - "disguisedly": null, - "disguise": [["R"]], - "disguiser": [["M"]], - "disguiser's": null, - "disgust": null, - "disgusted": [["Y"]], - "disgustedly": null, - "disgustful": [["Y"]], - "disgustfully": null, - "disgusting": [["Y"]], - "disgustingly": null, - "dishabille": [["S", "M"]], - "dishabilles": null, - "dishabille's": null, - "disharmonious": null, - "dishcloth": [["M"]], - "dishcloth's": null, - "dishcloths": null, - "dishevel": [["L", "D", "G", "S"]], - "dishevelment": [["M", "S"]], - "disheveled": null, - "disheveling": null, - "dishevels": null, - "dishevelment's": null, - "dishevelments": null, - "dish": [["G", "D"]], - "dishing": null, - "dished": null, - "dishonest": null, - "dishonored": [["U"]], - "undishonored": null, - "dishpan": [["M", "S"]], - "dishpan's": null, - "dishpans": null, - "dishrag": [["S", "M"]], - "dishrags": null, - "dishrag's": null, - "dishtowel": [["S", "M"]], - "dishtowels": null, - "dishtowel's": null, - "dishwasher": [["M", "S"]], - "dishwasher's": null, - "dishwashers": null, - "dishwater": [["S", "M"]], - "dishwaters": null, - "dishwater's": null, - "disillusion": [["L", "G", "D"]], - "disillusionment": [["S", "M"]], - "disillusioning": null, - "disillusioned": null, - "disillusionments": null, - "disillusionment's": null, - "disinfectant": [["M", "S"]], - "disinfectant's": null, - "disinfectants": null, - "disinherit": null, - "disinterestedness": [["S", "M"]], - "disinterestednesses": null, - "disinterestedness's": null, - "disinterested": [["P"]], - "disinvest": [["L"]], - "disinvestment": null, - "disjoin": null, - "disjointedness": [["S"]], - "disjointednesses": null, - "disjunctive": [["Y", "S"]], - "disjunctively": null, - "disjunctives": null, - "disjunct": [["V", "S"]], - "disjuncts": null, - "disk": [["D"]], - "disked": null, - "diskette": [["S"]], - "diskettes": null, - "dislike": [["G"]], - "disliking": null, - "dislodge": [["L", "G"]], - "dislodgement": [["M"]], - "dislodging": null, - "dislodgement's": null, - "dismalness": [["M"]], - "dismalness's": null, - "dismal": [["P", "S", "T", "R", "Y"]], - "dismals": null, - "dismalest": null, - "dismaler": null, - "dismally": null, - "dismantle": [["L"]], - "dismantlement": [["S", "M"]], - "dismantlements": null, - "dismantlement's": null, - "dismay": [["D"]], - "dismayed": [["U"]], - "undismayed": null, - "dismaying": [["Y"]], - "dismayingly": null, - "dis": [["M", "B"]], - "dis's": null, - "dismember": [["L", "G"]], - "dismemberment": [["M", "S"]], - "dismembering": null, - "dismemberment's": null, - "dismemberments": null, - "dismissive": [["Y"]], - "dismissively": null, - "dismiss": [["R", "Z"]], - "dismisser": null, - "dismissers": null, - "Disneyland": [["M"]], - "Disneyland's": null, - "Disney": [["M"]], - "Disney's": null, - "disoblige": [["G"]], - "disobliging": null, - "disorderedness": [["M"]], - "disorderedness's": null, - "disordered": [["Y", "P"]], - "disorderedly": null, - "disorderliness": [["M"]], - "disorderliness's": null, - "disorderly": [["P"]], - "disorder": [["Y"]], - "disorganize": null, - "disorganized": [["U"]], - "undisorganized": null, - "disparagement": [["M", "S"]], - "disparagement's": null, - "disparagements": null, - "disparager": [["M"]], - "disparager's": null, - "disparage": [["R", "S", "D", "L", "G"]], - "disparages": null, - "disparaged": null, - "disparaging": [["Y"]], - "disparagingly": null, - "disparateness": [["M"]], - "disparateness's": null, - "disparate": [["P", "S", "Y"]], - "disparates": null, - "disparately": null, - "dispatch": [["Z"]], - "dispatchers": null, - "dispelled": null, - "dispelling": null, - "dispel": [["S"]], - "dispels": null, - "dispensable": [["I"]], - "indispensable": [["S", "P"]], - "dispensary": [["M", "S"]], - "dispensary's": null, - "dispensaries": null, - "dispensate": [["N", "X"]], - "dispensation": [["M"]], - "dispensations": null, - "dispensation's": null, - "dispenser": [["M"]], - "dispenser's": null, - "dispense": [["Z", "G", "D", "R", "S", "B"]], - "dispensers": null, - "dispensing": null, - "dispensed": null, - "dispenses": null, - "dispersal": [["M", "S"]], - "dispersal's": null, - "dispersals": null, - "dispersant": [["M"]], - "dispersant's": null, - "dispersed": [["Y"]], - "dispersedly": null, - "disperser": [["M"]], - "disperser's": null, - "disperse": [["X", "D", "R", "S", "Z", "L", "N", "G", "V"]], - "dispersions": null, - "disperses": null, - "dispersers": null, - "dispersement": null, - "dispersion": [["M"]], - "dispersing": null, - "dispersive": [["P", "Y"]], - "dispersible": null, - "dispersion's": null, - "dispersiveness": [["M"]], - "dispersiveness's": null, - "dispersively": null, - "dispirit": [["D", "S", "G"]], - "dispirited": null, - "dispirits": null, - "dispiriting": null, - "displace": [["L"]], - "displacement": null, - "display": [["A", "G", "D", "S"]], - "redisplay": null, - "redisplaying": null, - "redisplayed": null, - "redisplays": null, - "displaying": null, - "displayed": [["U"]], - "displays": null, - "undisplayed": null, - "displeased": [["Y"]], - "displeasedly": null, - "displease": [["G"]], - "displeasing": null, - "displeasure": null, - "disport": null, - "disposable": [["S"]], - "disposables": null, - "disposal": [["S", "M"]], - "disposals": null, - "disposal's": null, - "dispose": [["I", "G", "S", "D"]], - "indispose": null, - "indisposing": null, - "indisposes": null, - "indisposed": null, - "disposing": null, - "disposes": null, - "disposed": null, - "dispositional": null, - "disposition": [["I", "S", "M"]], - "indisposition": null, - "indispositions": null, - "indisposition's": null, - "dispositions": null, - "disposition's": null, - "disproportional": null, - "disproportionate": [["N"]], - "disproportionation": [["M"]], - "disproportionation's": null, - "disprove": [["B"]], - "disprovable": null, - "disputable": [["I"]], - "indisputable": [["P"]], - "disputably": [["I"]], - "indisputably": null, - "disputant": [["S", "M"]], - "disputants": null, - "disputant's": null, - "disputation": [["S", "M"]], - "disputations": null, - "disputation's": null, - "disputatious": [["Y"]], - "disputatiously": null, - "disputed": [["U"]], - "undisputed": null, - "disputer": [["M"]], - "disputer's": null, - "dispute": [["Z", "B", "G", "S", "R", "D"]], - "disputers": null, - "disputing": null, - "disputes": null, - "disquieting": [["Y"]], - "disquietingly": null, - "disquiet": [["M"]], - "disquiet's": null, - "disquisition": [["S", "M"]], - "disquisitions": null, - "disquisition's": null, - "Disraeli": [["M"]], - "Disraeli's": null, - "disregardful": null, - "disrepair": [["M"]], - "disrepair's": null, - "disreputableness": [["M"]], - "disreputableness's": null, - "disreputable": [["P"]], - "disrepute": [["M"]], - "disrepute's": null, - "disrespect": null, - "disrupted": [["U"]], - "undisrupted": null, - "disrupter": [["M"]], - "disrupter's": null, - "disrupt": [["G", "V", "D", "R", "S"]], - "disrupting": null, - "disruptive": [["Y", "P"]], - "disrupts": null, - "disruption": [["M", "S"]], - "disruption's": null, - "disruptions": null, - "disruptively": null, - "disruptiveness": null, - "disruptor": [["M"]], - "disruptor's": null, - "dissatisfy": null, - "dissect": [["D", "G"]], - "dissected": null, - "dissecting": null, - "dissed": null, - "dissembler": [["M"]], - "dissembler's": null, - "dissemble": [["Z", "G", "R", "S", "D"]], - "dissemblers": null, - "dissembling": null, - "dissembles": null, - "dissembled": null, - "disseminate": [["X", "G", "N", "S", "D"]], - "disseminations": null, - "disseminating": null, - "dissemination": [["M"]], - "disseminates": null, - "disseminated": null, - "dissemination's": null, - "dissension": [["S", "M"]], - "dissensions": null, - "dissension's": null, - "dissenter": [["M"]], - "dissenter's": null, - "dissent": [["Z", "G", "S", "D", "R"]], - "dissenters": null, - "dissenting": null, - "dissents": null, - "dissented": null, - "dissertation": [["S", "M"]], - "dissertations": null, - "dissertation's": null, - "disservice": null, - "disses": null, - "dissever": null, - "dissidence": [["S", "M"]], - "dissidences": null, - "dissidence's": null, - "dissident": [["M", "S"]], - "dissident's": null, - "dissidents": null, - "dissimilar": [["S"]], - "dissimilars": null, - "dissing": null, - "dissipatedly": null, - "dissipatedness": [["M"]], - "dissipatedness's": null, - "dissipated": [["U"]], - "undissipated": null, - "dissipater": [["M"]], - "dissipater's": null, - "dissipate": [["X", "R", "S", "D", "V", "N", "G"]], - "dissipations": null, - "dissipates": null, - "dissipative": null, - "dissipation": [["M"]], - "dissipating": null, - "dissipation's": null, - "dissociable": [["I"]], - "indissociable": null, - "dissociate": [["D", "S", "X", "N", "G", "V"]], - "dissociated": [["U"]], - "dissociates": null, - "dissociations": null, - "dissociation": [["M"]], - "dissociating": null, - "dissociative": [["Y"]], - "undissociated": null, - "dissociation's": null, - "dissociatively": null, - "dissoluble": [["I"]], - "indissoluble": [["P"]], - "dissoluteness": [["S", "M"]], - "dissolutenesses": null, - "dissoluteness's": null, - "dissolute": [["P", "Y"]], - "dissolutely": null, - "dissolve": [["A", "S", "D", "G"]], - "redissolve": null, - "redissolves": null, - "redissolved": null, - "redissolving": null, - "dissolves": null, - "dissolved": [["U"]], - "dissolving": null, - "undissolved": null, - "dissonance": [["S", "M"]], - "dissonances": null, - "dissonance's": null, - "dissonant": [["Y"]], - "dissonantly": null, - "dissuade": [["G", "D", "R", "S"]], - "dissuading": null, - "dissuaded": null, - "dissuader": [["M"]], - "dissuades": null, - "dissuader's": null, - "dissuasive": null, - "dist": null, - "distaff": [["S", "M"]], - "distaffs": null, - "distaff's": null, - "distal": [["Y"]], - "distally": null, - "distance": [["D", "S", "M", "G"]], - "distanced": null, - "distances": null, - "distance's": null, - "distancing": null, - "distantness": [["M"]], - "distantness's": null, - "distant": [["Y", "P"]], - "distantly": null, - "distaste": null, - "distemper": null, - "distend": null, - "distension": null, - "distention": [["S", "M"]], - "distentions": null, - "distention's": null, - "distillate": [["X", "N", "M", "S"]], - "distillations": null, - "distillation": [["M"]], - "distillate's": null, - "distillates": null, - "distillation's": null, - "distillery": [["M", "S"]], - "distillery's": null, - "distilleries": null, - "distincter": null, - "distinctest": null, - "distinction": [["M", "S"]], - "distinction's": null, - "distinctions": null, - "distinctiveness": [["M", "S"]], - "distinctiveness's": null, - "distinctivenesses": null, - "distinctive": [["Y", "P"]], - "distinctively": null, - "distinct": [["I", "Y", "V", "P"]], - "indistinct": null, - "indistinctly": null, - "indistinctness": null, - "distinctly": null, - "distinctness": [["M", "S", "I"]], - "distinctness's": null, - "indistinctness's": null, - "distinctnesses": null, - "indistinctnesses": null, - "distinguishable": [["I"]], - "indistinguishable": [["P"]], - "distinguishably": [["I"]], - "indistinguishably": null, - "distinguish": [["B", "D", "R", "S", "G"]], - "distinguished": [["U"]], - "distinguisher": [["M"]], - "distinguishes": null, - "distinguishing": null, - "undistinguished": null, - "distinguisher's": null, - "distort": [["B", "G", "D", "R"]], - "distortable": null, - "distorting": null, - "distorted": [["U"]], - "distorter": [["M"]], - "undistorted": null, - "distorter's": null, - "distortion": [["M", "S"]], - "distortion's": null, - "distortions": null, - "distract": [["D", "G"]], - "distracted": [["Y", "P"]], - "distracting": [["Y"]], - "distractedness": [["M"]], - "distractedness's": null, - "distractedly": null, - "distractingly": null, - "distrait": null, - "distraught": [["Y"]], - "distraughtly": null, - "distress": null, - "distressful": null, - "distressing": [["Y"]], - "distressingly": null, - "distribute": [["A", "D", "X", "S", "V", "N", "G", "B"]], - "redistribute": null, - "redistributed": null, - "redistributions": null, - "redistributes": null, - "redistribution": null, - "redistributing": null, - "redistributable": null, - "distributed": [["U"]], - "distributions": null, - "distributes": null, - "distributive": [["S", "P", "Y"]], - "distribution": [["A", "M"]], - "distributing": null, - "distributable": null, - "undistributed": null, - "distributer": null, - "distributional": null, - "redistribution's": null, - "distribution's": null, - "distributiveness": [["M"]], - "distributiveness's": null, - "distributives": null, - "distributively": null, - "distributivity": null, - "distributorship": [["M"]], - "distributorship's": null, - "distributor": [["S", "M"]], - "distributors": null, - "distributor's": null, - "district": [["G", "S", "A", "D"]], - "districting": null, - "redistricting": null, - "districts": null, - "redistricts": null, - "redistrict": null, - "redistricted": null, - "districted": null, - "district's": null, - "distrust": [["G"]], - "distrusting": null, - "disturbance": [["S", "M"]], - "disturbances": null, - "disturbance's": null, - "disturbed": [["U"]], - "undisturbed": null, - "disturber": [["M"]], - "disturber's": null, - "disturbing": [["Y"]], - "disturbingly": null, - "disturb": [["Z", "G", "D", "R", "S"]], - "disturbers": null, - "disturbs": null, - "disulfide": [["M"]], - "disulfide's": null, - "disuse": [["M"]], - "disuse's": null, - "disyllable": [["M"]], - "disyllable's": null, - "Dita": [["M"]], - "Dita's": null, - "ditcher": [["M"]], - "ditcher's": null, - "ditch": [["M", "R", "S", "D", "G"]], - "ditch's": null, - "ditches": null, - "ditched": null, - "ditching": null, - "dither": [["R", "D", "Z", "S", "G"]], - "ditherer": null, - "dithered": null, - "ditherers": null, - "dithers": null, - "dithering": null, - "ditsy": [["T", "R"]], - "ditsiest": null, - "ditsier": null, - "ditto": [["D", "M", "G", "S"]], - "dittoed": null, - "ditto's": null, - "dittoing": null, - "dittos": null, - "ditty": [["S", "D", "G", "M"]], - "ditties": null, - "dittied": null, - "dittying": null, - "ditty's": null, - "Ditzel": [["M"]], - "Ditzel's": null, - "ditz": [["S"]], - "ditzes": null, - "diuresis": [["M"]], - "diuresis's": null, - "diuretic": [["S"]], - "diuretics": null, - "diurnal": [["S", "Y"]], - "diurnals": null, - "diurnally": null, - "divalent": [["S"]], - "divalents": null, - "diva": [["M", "S"]], - "diva's": null, - "divas": null, - "divan": [["S", "M"]], - "divans": null, - "divan's": null, - "dived": [["M"]], - "dived's": null, - "divergence": [["S", "M"]], - "divergences": null, - "divergence's": null, - "divergent": [["Y"]], - "divergently": null, - "diverge": [["S", "D", "G"]], - "diverges": null, - "diverged": null, - "diverging": null, - "diver": [["M"]], - "diver's": null, - "diverseness": [["M", "S"]], - "diverseness's": null, - "diversenesses": null, - "diverse": [["X", "Y", "N", "P"]], - "diversions": null, - "diversely": null, - "diversion": [["M"]], - "diversification": [["M"]], - "diversification's": null, - "diversifier": [["M"]], - "diversifier's": null, - "diversify": [["G", "S", "R", "D", "N", "X"]], - "diversifying": null, - "diversifies": null, - "diversified": null, - "diversifications": null, - "diversionary": null, - "diversion's": null, - "diversity": [["S", "M"]], - "diversities": null, - "diversity's": null, - "divert": [["G", "S", "D"]], - "diverting": null, - "diverts": null, - "diverted": null, - "diverticulitis": [["S", "M"]], - "diverticulitises": null, - "diverticulitis's": null, - "divertimento": [["M"]], - "divertimento's": null, - "dive": [["S"]], - "dives": null, - "divestiture": [["M", "S"]], - "divestiture's": null, - "divestitures": null, - "divest": [["L", "D", "G", "S"]], - "divestment": [["S"]], - "divested": null, - "divesting": null, - "divests": null, - "divestments": null, - "dividable": null, - "divide": [["A", "G", "D", "S"]], - "redivide": null, - "redividing": null, - "redivided": null, - "redivides": null, - "dividing": null, - "divided": [["U"]], - "divides": null, - "undivided": null, - "dividend": [["M", "S"]], - "dividend's": null, - "dividends": null, - "divider": [["M", "S"]], - "divider's": null, - "dividers": null, - "divination": [["S", "M"]], - "divinations": null, - "divination's": null, - "diviner": [["M"]], - "diviner's": null, - "divine": [["R", "S", "D", "T", "Z", "Y", "G"]], - "divines": null, - "divined": null, - "divinest": null, - "diviners": null, - "divinely": null, - "divining": null, - "divinity": [["M", "S"]], - "divinity's": null, - "divinities": null, - "divisibility": [["I", "M", "S"]], - "indivisibility": null, - "indivisibility's": null, - "indivisibilities": null, - "divisibility's": null, - "divisibilities": null, - "divisible": [["I"]], - "indivisible": [["S", "P"]], - "divisional": null, - "division": [["S", "M"]], - "divisions": null, - "division's": null, - "divisiveness": [["M", "S"]], - "divisiveness's": null, - "divisivenesses": null, - "divisive": [["P", "Y"]], - "divisively": null, - "divisor": [["S", "M"]], - "divisors": null, - "divisor's": null, - "divorc�e": [["M", "S"]], - "divorc�e's": null, - "divorc�es": null, - "divorce": [["G", "S", "D", "L", "M"]], - "divorcing": null, - "divorces": null, - "divorced": null, - "divorcement": [["M", "S"]], - "divorce's": null, - "divorcement's": null, - "divorcements": null, - "divot": [["M", "S"]], - "divot's": null, - "divots": null, - "div": [["T", "Z", "G", "J", "D", "R", "S"]], - "divers": null, - "diving": null, - "divings": null, - "divs": null, - "divulge": [["G", "S", "D"]], - "divulging": null, - "divulges": null, - "divulged": null, - "divvy": [["G", "S", "D", "M"]], - "divvying": null, - "divvies": null, - "divvied": null, - "divvy's": null, - "Dixiecrat": [["M", "S"]], - "Dixiecrat's": null, - "Dixiecrats": null, - "dixieland": null, - "Dixieland": [["M", "S"]], - "Dixieland's": null, - "Dixielands": null, - "Dixie": [["M"]], - "Dixie's": null, - "Dix": [["M"]], - "Dix's": null, - "Dixon": [["M"]], - "Dixon's": null, - "dizzily": null, - "dizziness": [["S", "M"]], - "dizzinesses": null, - "dizziness's": null, - "dizzying": [["Y"]], - "dizzyingly": null, - "dizzy": [["P", "G", "R", "S", "D", "T"]], - "dizzier": null, - "dizzies": null, - "dizzied": null, - "dizziest": null, - "DJ": null, - "Djakarta's": null, - "djellabah's": null, - "djellaba": [["S"]], - "djellabas": null, - "d": [["J", "G", "V", "X"]], - "dings": null, - "Djibouti": [["M"]], - "Djibouti's": null, - "DMD": null, - "Dmitri": [["M"]], - "Dmitri's": null, - "DMZ": null, - "DNA": null, - "Dnepropetrovsk": [["M"]], - "Dnepropetrovsk's": null, - "Dnepr's": null, - "Dnieper's": null, - "Dniester": [["M"]], - "Dniester's": null, - "Dniren": [["M"]], - "Dniren's": null, - "DOA": null, - "doable": null, - "DOB": null, - "Dobbin": [["M"]], - "Dobbin's": null, - "dobbin": [["M", "S"]], - "dobbin's": null, - "dobbins": null, - "Doberman": null, - "Dobro": [["M"]], - "Dobro's": null, - "docent": [["S", "M"]], - "docents": null, - "docent's": null, - "docile": [["Y"]], - "docilely": null, - "docility": [["M", "S"]], - "docility's": null, - "docilities": null, - "docker": [["M"]], - "docker's": null, - "docket": [["G", "S", "M", "D"]], - "docketing": null, - "dockets": null, - "docket's": null, - "docketed": null, - "dock": [["G", "Z", "S", "R", "D", "M"]], - "docking": null, - "dockers": null, - "docks": null, - "docked": null, - "dock's": null, - "dockland": [["M", "S"]], - "dockland's": null, - "docklands": null, - "dockside": [["M"]], - "dockside's": null, - "dockworker": [["S"]], - "dockworkers": null, - "dockyard": [["S", "M"]], - "dockyards": null, - "dockyard's": null, - "doc": [["M", "S"]], - "doc's": null, - "docs": null, - "Doctor": null, - "doctoral": null, - "doctorate": [["S", "M"]], - "doctorates": null, - "doctorate's": null, - "doctor": [["G", "S", "D", "M"]], - "doctoring": null, - "doctors": null, - "doctored": null, - "doctor's": null, - "Doctorow": [["M"]], - "Doctorow's": null, - "doctrinaire": [["S"]], - "doctrinaires": null, - "doctrinal": [["Y"]], - "doctrinally": null, - "doctrine": [["S", "M"]], - "doctrines": null, - "doctrine's": null, - "docudrama": [["S"]], - "docudramas": null, - "documentary": [["M", "S"]], - "documentary's": null, - "documentaries": null, - "documentation": [["M", "S"]], - "documentation's": null, - "documentations": null, - "documented": [["U"]], - "undocumented": null, - "document": [["R", "D", "M", "Z", "G", "S"]], - "documenter": null, - "document's": null, - "documenters": null, - "documenting": null, - "documents": null, - "DOD": null, - "dodder": [["D", "G", "S"]], - "doddered": null, - "doddering": null, - "dodders": null, - "dodecahedra": null, - "dodecahedral": null, - "dodecahedron": [["M"]], - "dodecahedron's": null, - "Dode": [["M"]], - "Dode's": null, - "dodge": [["G", "Z", "S", "R", "D"]], - "dodging": null, - "dodgers": null, - "dodges": null, - "dodger": [["M"]], - "dodged": null, - "Dodge": [["M"]], - "Dodge's": null, - "dodgem": [["S"]], - "dodgems": null, - "dodger's": null, - "Dodgson": [["M"]], - "Dodgson's": null, - "Dodie": [["M"]], - "Dodie's": null, - "Dodi": [["M"]], - "Dodi's": null, - "Dodington": [["M"]], - "Dodington's": null, - "Dodoma": [["M"]], - "Dodoma's": null, - "dodo": [["S", "M"]], - "dodos": null, - "dodo's": null, - "Dodson": [["M"]], - "Dodson's": null, - "Dody": [["M"]], - "Dody's": null, - "DOE": null, - "Doe": [["M"]], - "Doe's": null, - "doe": [["M", "S"]], - "doe's": null, - "does": [["A", "U"]], - "doer": [["M", "U"]], - "doer's": null, - "undoer's": null, - "undoer": null, - "redoes": null, - "undoes": null, - "doeskin": [["M", "S"]], - "doeskin's": null, - "doeskins": null, - "doesn't": null, - "d'oeuvre": null, - "doff": [["S", "G", "D"]], - "doffs": null, - "doffing": null, - "doffed": null, - "dogcart": [["S", "M"]], - "dogcarts": null, - "dogcart's": null, - "dogcatcher": [["M", "S"]], - "dogcatcher's": null, - "dogcatchers": null, - "dogeared": null, - "Doge": [["M"]], - "Doge's": null, - "doge": [["S", "M"]], - "doges": null, - "doge's": null, - "dogfight": [["G", "M", "S"]], - "dogfighting": null, - "dogfight's": null, - "dogfights": null, - "dogfish": [["S", "M"]], - "dogfishes": null, - "dogfish's": null, - "dogfought": null, - "doggedness": [["S", "M"]], - "doggednesses": null, - "doggedness's": null, - "dogged": [["P", "Y"]], - "doggedly": null, - "doggerel": [["S", "M"]], - "doggerels": null, - "doggerel's": null, - "dogging": null, - "doggone": [["R", "S", "D", "T", "G"]], - "doggoner": null, - "doggones": null, - "doggoned": null, - "doggonest": null, - "doggoning": null, - "doggy": [["S", "R", "M", "T"]], - "doggies": null, - "doggier": null, - "doggy's": null, - "doggiest": null, - "doghouse": [["S", "M"]], - "doghouses": null, - "doghouse's": null, - "dogie": [["S", "M"]], - "dogies": null, - "dogie's": null, - "doglegged": null, - "doglegging": null, - "dogleg": [["S", "M"]], - "doglegs": null, - "dogleg's": null, - "dogma": [["M", "S"]], - "dogma's": null, - "dogmas": null, - "dogmatically": [["U"]], - "undogmatically": null, - "dogmatic": [["S"]], - "dogmatics": [["M"]], - "dogmatics's": null, - "dogmatism": [["S", "M"]], - "dogmatisms": null, - "dogmatism's": null, - "dogmatist": [["S", "M"]], - "dogmatists": null, - "dogmatist's": null, - "dogsbody": [["M"]], - "dogsbody's": null, - "dog": [["S", "M"]], - "dogs": null, - "dog's": null, - "dogtooth": [["M"]], - "dogtooth's": null, - "Dogtown": [["M"]], - "Dogtown's": null, - "dogtrot": [["M", "S"]], - "dogtrot's": null, - "dogtrots": null, - "dogtrotted": null, - "dogtrotting": null, - "dogwood": [["S", "M"]], - "dogwoods": null, - "dogwood's": null, - "dogy's": null, - "Doha": [["M"]], - "Doha's": null, - "doh's": null, - "doily": [["S", "M"]], - "doilies": null, - "doily's": null, - "doing": [["M", "U"]], - "doing's": null, - "undoing's": null, - "undoing": null, - "Dolby": [["S", "M"]], - "Dolbies": null, - "Dolby's": null, - "doldrum": [["S"]], - "doldrums": [["M"]], - "doldrums's": null, - "doled": [["F"]], - "condoled": null, - "dolefuller": null, - "dolefullest": null, - "dolefulness": [["M", "S"]], - "dolefulness's": null, - "dolefulnesses": null, - "doleful": [["P", "Y"]], - "dolefully": null, - "Dole": [["M"]], - "Dole's": null, - "dole": [["M", "G", "D", "S"]], - "dole's": null, - "doling": [["F"]], - "doles": [["F"]], - "condoles": null, - "Dolf": [["M"]], - "Dolf's": null, - "condoling": null, - "dollar": [["S", "M"]], - "dollars": null, - "dollar's": null, - "Dolley": [["M"]], - "Dolley's": null, - "Dollie": [["M"]], - "Dollie's": null, - "Dolli": [["M"]], - "Dolli's": null, - "Doll": [["M"]], - "Doll's": null, - "doll": [["M", "D", "G", "S"]], - "doll's": null, - "dolled": null, - "dolling": null, - "dolls": null, - "dollop": [["G", "S", "M", "D"]], - "dolloping": null, - "dollops": null, - "dollop's": null, - "dolloped": null, - "Dolly": [["M"]], - "Dolly's": null, - "dolly": [["S", "D", "M", "G"]], - "dollies": null, - "dollied": null, - "dolly's": null, - "dollying": null, - "dolmen": [["M", "S"]], - "dolmen's": null, - "dolmens": null, - "dolomite": [["S", "M"]], - "dolomites": null, - "dolomite's": null, - "dolomitic": null, - "Dolores": [["M"]], - "Dolores's": null, - "Dolorita": [["S", "M"]], - "Doloritas": null, - "Dolorita's": null, - "dolorous": [["Y"]], - "dolorously": null, - "dolor": [["S", "M"]], - "dolors": null, - "dolor's": null, - "dolphin": [["S", "M"]], - "dolphins": null, - "dolphin's": null, - "Dolph": [["M"]], - "Dolph's": null, - "doltishness": [["S", "M"]], - "doltishnesses": null, - "doltishness's": null, - "doltish": [["Y", "P"]], - "doltishly": null, - "dolt": [["M", "S"]], - "dolt's": null, - "dolts": null, - "domain": [["M", "S"]], - "domain's": null, - "domains": null, - "dome": [["D", "S", "M", "G"]], - "domed": null, - "domes": null, - "dome's": null, - "doming": null, - "Domenic": [["M"]], - "Domenic's": null, - "Domenico": [["M"]], - "Domenico's": null, - "Domeniga": [["M"]], - "Domeniga's": null, - "Domesday": [["M"]], - "Domesday's": null, - "domestically": null, - "domesticate": [["D", "S", "X", "G", "N"]], - "domesticated": [["U"]], - "domesticates": null, - "domestications": null, - "domesticating": null, - "domestication": [["M"]], - "undomesticated": null, - "domestication's": null, - "domesticity": [["M", "S"]], - "domesticity's": null, - "domesticities": null, - "domestic": [["S"]], - "domestics": null, - "domicile": [["S", "D", "M", "G"]], - "domiciles": null, - "domiciled": null, - "domicile's": null, - "domiciling": null, - "domiciliary": null, - "dominance": [["M", "S"]], - "dominance's": null, - "dominances": null, - "dominant": [["Y", "S"]], - "dominantly": null, - "dominants": null, - "dominate": [["V", "N", "G", "X", "S", "D"]], - "dominative": null, - "domination": [["M"]], - "dominating": null, - "dominations": null, - "dominates": null, - "dominated": null, - "domination's": null, - "dominator": [["M"]], - "dominator's": null, - "dominatrices": null, - "dominatrix": null, - "domineer": [["D", "S", "G"]], - "domineered": null, - "domineers": null, - "domineering": [["Y", "P"]], - "domineeringness": [["M"]], - "domineeringness's": null, - "domineeringly": null, - "Dominga": [["M"]], - "Dominga's": null, - "Domingo": [["M"]], - "Domingo's": null, - "Dominguez": [["M"]], - "Dominguez's": null, - "Dominica": [["M"]], - "Dominica's": null, - "Dominican": [["M", "S"]], - "Dominican's": null, - "Dominicans": null, - "Dominick": [["M"]], - "Dominick's": null, - "Dominic": [["M"]], - "Dominic's": null, - "Dominik": [["M"]], - "Dominik's": null, - "Domini": [["M"]], - "Domini's": null, - "dominion": [["M", "S"]], - "dominion's": null, - "dominions": null, - "Dominique": [["M"]], - "Dominique's": null, - "dominoes": null, - "domino": [["M"]], - "domino's": null, - "Domitian": [["M"]], - "Domitian's": null, - "Dom": [["M"]], - "Dom's": null, - "Donahue": [["M"]], - "Donahue's": null, - "Donald": [["M"]], - "Donald's": null, - "Donaldson": [["M"]], - "Donaldson's": null, - "Donall": [["M"]], - "Donall's": null, - "Donal": [["M"]], - "Donal's": null, - "Donalt": [["M"]], - "Donalt's": null, - "Dona": [["M"]], - "Dona's": null, - "dona": [["M", "S"]], - "dona's": null, - "donas": null, - "Donatello": [["M"]], - "Donatello's": null, - "donate": [["X", "V", "G", "N", "S", "D"]], - "donations": null, - "donative": [["M"]], - "donating": null, - "donation": [["M"]], - "donates": null, - "donated": null, - "donation's": null, - "donative's": null, - "Donaugh": [["M"]], - "Donaugh's": null, - "Donavon": [["M"]], - "Donavon's": null, - "done": [["A", "U", "F"]], - "redone": null, - "undone": null, - "Donella": [["M"]], - "Donella's": null, - "Donelle": [["M"]], - "Donelle's": null, - "Donetsk": [["M"]], - "Donetsk's": null, - "Donetta": [["M"]], - "Donetta's": null, - "dong": [["G", "D", "M", "S"]], - "donging": null, - "donged": null, - "dong's": null, - "dongs": null, - "dongle": [["S"]], - "dongles": null, - "Donia": [["M"]], - "Donia's": null, - "Donica": [["M"]], - "Donica's": null, - "Donielle": [["M"]], - "Donielle's": null, - "Donizetti": [["M"]], - "Donizetti's": null, - "donkey": [["M", "S"]], - "donkey's": null, - "donkeys": null, - "Donna": [["M"]], - "Donna's": null, - "Donnamarie": [["M"]], - "Donnamarie's": null, - "donned": null, - "Donnell": [["M"]], - "Donnell's": null, - "Donnelly": [["M"]], - "Donnelly's": null, - "Donne": [["M"]], - "Donne's": null, - "Donner": [["M"]], - "Donner's": null, - "Donnie": [["M"]], - "Donnie's": null, - "Donni": [["M"]], - "Donni's": null, - "donning": null, - "donnishness": [["M"]], - "donnishness's": null, - "donnish": [["Y", "P"]], - "donnishly": null, - "Donn": [["R", "M"]], - "Donn's": null, - "donnybrook": [["M", "S"]], - "donnybrook's": null, - "donnybrooks": null, - "Donny": [["M"]], - "Donny's": null, - "donor": [["M", "S"]], - "donor's": null, - "donors": null, - "Donovan": [["M"]], - "Donovan's": null, - "don": [["S"]], - "dons": null, - "Don": [["S", "M"]], - "Dons": null, - "Don's": null, - "don't": null, - "donut": [["M", "S"]], - "donut's": null, - "donuts": null, - "donutted": null, - "donutting": null, - "doodad": [["M", "S"]], - "doodad's": null, - "doodads": null, - "doodlebug": [["M", "S"]], - "doodlebug's": null, - "doodlebugs": null, - "doodler": [["M"]], - "doodler's": null, - "doodle": [["S", "R", "D", "Z", "G"]], - "doodles": null, - "doodled": null, - "doodlers": null, - "doodling": null, - "doohickey": [["M", "S"]], - "doohickey's": null, - "doohickeys": null, - "Dooley": [["M"]], - "Dooley's": null, - "Doolittle": [["M"]], - "Doolittle's": null, - "doom": [["M", "D", "G", "S"]], - "doom's": null, - "doomed": null, - "dooming": null, - "dooms": null, - "doomsday": [["S", "M"]], - "doomsdays": null, - "doomsday's": null, - "Doonesbury": [["M"]], - "Doonesbury's": null, - "doorbell": [["S", "M"]], - "doorbells": null, - "doorbell's": null, - "door": [["G", "D", "M", "S"]], - "dooring": null, - "doored": null, - "door's": null, - "doors": [["I"]], - "doorhandles": null, - "doorkeeper": [["M"]], - "doorkeeper's": null, - "doorkeep": [["R", "Z"]], - "doorkeepers": null, - "doorknob": [["S", "M"]], - "doorknobs": null, - "doorknob's": null, - "doorman": [["M"]], - "doorman's": null, - "doormat": [["S", "M"]], - "doormats": null, - "doormat's": null, - "doormen": null, - "doornail": [["M"]], - "doornail's": null, - "doorplate": [["S", "M"]], - "doorplates": null, - "doorplate's": null, - "indoors": null, - "doorstep": [["M", "S"]], - "doorstep's": null, - "doorsteps": null, - "doorstepped": null, - "doorstepping": null, - "doorstop": [["M", "S"]], - "doorstop's": null, - "doorstops": null, - "doorway": [["M", "S"]], - "doorway's": null, - "doorways": null, - "dooryard": [["S", "M"]], - "dooryards": null, - "dooryard's": null, - "dopamine": null, - "dopant": [["M"]], - "dopant's": null, - "dopa": [["S", "M"]], - "dopas": null, - "dopa's": null, - "dope": [["D", "R", "S", "M", "Z", "G"]], - "doped": null, - "doper": [["M"]], - "dopes": null, - "dope's": null, - "dopers": null, - "doping": null, - "doper's": null, - "dopey": null, - "dopier": null, - "dopiest": null, - "dopiness": [["S"]], - "dopinesses": null, - "Doppler": [["M"]], - "Doppler's": null, - "Dorado": [["M"]], - "Dorado's": null, - "Doralia": [["M"]], - "Doralia's": null, - "Doralin": [["M"]], - "Doralin's": null, - "Doralyn": [["M"]], - "Doralyn's": null, - "Doralynne": [["M"]], - "Doralynne's": null, - "Doralynn": [["M"]], - "Doralynn's": null, - "Dora": [["M"]], - "Dora's": null, - "Dorcas": null, - "Dorchester": [["M"]], - "Dorchester's": null, - "Doreen": [["M"]], - "Doreen's": null, - "Dorelia": [["M"]], - "Dorelia's": null, - "Dorella": [["M"]], - "Dorella's": null, - "Dorelle": [["M"]], - "Dorelle's": null, - "Dor�": [["M"]], - "Dor�'s": null, - "Dorena": [["M"]], - "Dorena's": null, - "Dorene": [["M"]], - "Dorene's": null, - "Doretta": [["M"]], - "Doretta's": null, - "Dorette": [["M"]], - "Dorette's": null, - "Dorey": [["M"]], - "Dorey's": null, - "Doria": [["M"]], - "Doria's": null, - "Dorian": [["M"]], - "Dorian's": null, - "Doric": null, - "Dorice": [["M"]], - "Dorice's": null, - "Dorie": [["M"]], - "Dorie's": null, - "Dori": [["M", "S"]], - "Dori's": null, - "Doris": null, - "Dorine": [["M"]], - "Dorine's": null, - "Dorisa": [["M"]], - "Dorisa's": null, - "Dorise": [["M"]], - "Dorise's": null, - "Dorita": [["M"]], - "Dorita's": null, - "dork": [["S"]], - "dorks": null, - "dorky": [["R", "T"]], - "dorkier": null, - "dorkiest": null, - "dormancy": [["M", "S"]], - "dormancy's": null, - "dormancies": null, - "dormant": [["S"]], - "dormants": null, - "dormer": [["M"]], - "dormer's": null, - "dormice": null, - "dormitory": [["S", "M"]], - "dormitories": null, - "dormitory's": null, - "dorm": [["M", "R", "Z", "S"]], - "dorm's": null, - "dormers": null, - "dorms": null, - "dormouse": [["M"]], - "dormouse's": null, - "Dorolice": [["M"]], - "Dorolice's": null, - "Dorolisa": [["M"]], - "Dorolisa's": null, - "Doro": [["M"]], - "Doro's": null, - "Dorotea": [["M"]], - "Dorotea's": null, - "Doroteya": [["M"]], - "Doroteya's": null, - "Dorothea": [["M"]], - "Dorothea's": null, - "Dorothee": [["M"]], - "Dorothee's": null, - "Dorothy": [["M"]], - "Dorothy's": null, - "Dorree": [["M"]], - "Dorree's": null, - "Dorrie": [["M"]], - "Dorrie's": null, - "Dorri": [["S", "M"]], - "Dorris": null, - "Dorri's": null, - "Dorry": [["M"]], - "Dorry's": null, - "dorsal": [["Y", "S"]], - "dorsally": null, - "dorsals": null, - "Dorsey": [["M"]], - "Dorsey's": null, - "Dorthea": [["M"]], - "Dorthea's": null, - "Dorthy": [["M"]], - "Dorthy's": null, - "Dortmund": [["M"]], - "Dortmund's": null, - "Dory": [["M"]], - "Dory's": null, - "dory": [["S", "M"]], - "dories": null, - "dory's": null, - "DOS": null, - "dosage": [["S", "M"]], - "dosages": null, - "dosage's": null, - "dose": [["M"]], - "dose's": null, - "dos": [["G", "D", "S"]], - "dosing": null, - "dosed": null, - "doses": null, - "Dosi": [["M"]], - "Dosi's": null, - "dosimeter": [["M", "S"]], - "dosimeter's": null, - "dosimeters": null, - "dosimetry": [["M"]], - "dosimetry's": null, - "dossier": [["M", "S"]], - "dossier's": null, - "dossiers": null, - "dost": null, - "Dostoevsky": [["M"]], - "Dostoevsky's": null, - "DOT": null, - "dotage": [["S", "M"]], - "dotages": null, - "dotage's": null, - "dotard": [["M", "S"]], - "dotard's": null, - "dotards": null, - "doter": [["M"]], - "doter's": null, - "dote": [["S"]], - "dotes": null, - "Doti": [["M"]], - "Doti's": null, - "doting": [["Y"]], - "dotingly": null, - "Dot": [["M"]], - "Dot's": null, - "dot": [["M", "D", "R", "S", "J", "Z", "G"]], - "dot's": null, - "doted": null, - "dots": null, - "dotings": null, - "doters": null, - "Dotson": [["M"]], - "Dotson's": null, - "dotted": null, - "Dottie": [["M"]], - "Dottie's": null, - "Dotti": [["M"]], - "Dotti's": null, - "dottiness": [["M"]], - "dottiness's": null, - "dotting": null, - "Dotty": [["M"]], - "Dotty's": null, - "dotty": [["P", "R", "T"]], - "dottier": null, - "dottiest": null, - "do": [["T", "Z", "R", "H", "G", "J"]], - "doest": null, - "doers": null, - "doth": null, - "doings": null, - "Douala": [["M"]], - "Douala's": null, - "Douay": [["M"]], - "Douay's": null, - "Doubleday": [["M"]], - "Doubleday's": null, - "doubled": [["U", "A"]], - "undoubled": null, - "redoubled": null, - "double": [["G", "P", "S", "R", "D", "Z"]], - "doubling": [["A"]], - "doubleness": [["M"]], - "doubles": [["M"]], - "doubler": [["M"]], - "doublers": null, - "doubleheader": [["M", "S"]], - "doubleheader's": null, - "doubleheaders": null, - "doubleness's": null, - "doubler's": null, - "doubles's": null, - "doublespeak": [["S"]], - "doublespeaks": null, - "doublethink": [["M"]], - "doublethink's": null, - "doublet": [["M", "S"]], - "doublet's": null, - "doublets": null, - "doubleton": [["M"]], - "doubleton's": null, - "redoubling": null, - "doubloon": [["M", "S"]], - "doubloon's": null, - "doubloons": null, - "doubly": null, - "doubt": [["A", "G", "S", "D", "M", "B"]], - "redoubt": null, - "redoubting": null, - "redoubts": null, - "redoubted": null, - "redoubt's": null, - "redoubtable": null, - "doubting": [["Y"]], - "doubts": null, - "doubted": [["U"]], - "doubt's": null, - "doubtable": null, - "undoubted": [["Y"]], - "doubter": [["S", "M"]], - "doubters": null, - "doubter's": null, - "doubtfulness": [["S", "M"]], - "doubtfulnesses": null, - "doubtfulness's": null, - "doubtful": [["Y", "P"]], - "doubtfully": null, - "doubtingly": null, - "doubtlessness": [["M"]], - "doubtlessness's": null, - "doubtless": [["Y", "P"]], - "doubtlessly": null, - "douche": [["G", "S", "D", "M"]], - "douching": null, - "douches": null, - "douched": null, - "douche's": null, - "Dougherty": [["M"]], - "Dougherty's": null, - "dough": [["M"]], - "dough's": null, - "doughs": null, - "doughty": [["R", "T"]], - "doughtier": null, - "doughtiest": null, - "doughy": [["R", "T"]], - "doughier": null, - "doughiest": null, - "Dougie": [["M"]], - "Dougie's": null, - "Douglas": [["M"]], - "Douglas's": null, - "Douglass": null, - "Doug": [["M"]], - "Doug's": null, - "Dougy": [["M"]], - "Dougy's": null, - "dourness": [["M", "S"]], - "dourness's": null, - "dournesses": null, - "Douro": [["M"]], - "Douro's": null, - "dour": [["T", "Y", "R", "P"]], - "dourest": null, - "dourly": null, - "dourer": null, - "douser": [["M"]], - "douser's": null, - "douse": [["S", "R", "D", "G"]], - "douses": null, - "doused": null, - "dousing": null, - "dovecote": [["M", "S"]], - "dovecote's": null, - "dovecotes": null, - "Dover": [["M"]], - "Dover's": null, - "dove": [["R", "S", "M"]], - "dover": null, - "doves": null, - "dove's": null, - "dovetail": [["G", "S", "D", "M"]], - "dovetailing": null, - "dovetails": null, - "dovetailed": null, - "dovetail's": null, - "dovish": null, - "Dov": [["M", "R"]], - "Dov's": null, - "dowager": [["S", "M"]], - "dowagers": null, - "dowager's": null, - "dowdily": null, - "dowdiness": [["M", "S"]], - "dowdiness's": null, - "dowdinesses": null, - "dowdy": [["T", "P", "S", "R"]], - "dowdiest": null, - "dowdies": null, - "dowdier": null, - "dowel": [["G", "M", "D", "S"]], - "doweling": null, - "dowel's": null, - "doweled": null, - "dowels": null, - "dower": [["G", "D", "M", "S"]], - "dowering": null, - "dowered": null, - "dower's": null, - "dowers": null, - "Dow": [["M"]], - "Dow's": null, - "downbeat": [["S", "M"]], - "downbeats": null, - "downbeat's": null, - "downcast": [["S"]], - "downcasts": null, - "downdraft": [["M"]], - "downdraft's": null, - "downer": [["M"]], - "downer's": null, - "Downey": [["M"]], - "Downey's": null, - "downfall": [["N", "M", "S"]], - "downfallen": null, - "downfall's": null, - "downfalls": null, - "downgrade": [["G", "S", "D"]], - "downgrading": null, - "downgrades": null, - "downgraded": null, - "down": [["G", "Z", "S", "R", "D"]], - "downing": null, - "downers": null, - "downs": null, - "downed": null, - "downheartedness": [["M", "S"]], - "downheartedness's": null, - "downheartednesses": null, - "downhearted": [["P", "Y"]], - "downheartedly": null, - "downhill": [["R", "S"]], - "downhiller": null, - "downhills": null, - "downland": null, - "download": [["D", "G", "S"]], - "downloaded": null, - "downloading": null, - "downloads": null, - "downpipes": null, - "downplay": [["G", "D", "S"]], - "downplaying": null, - "downplayed": null, - "downplays": null, - "downpour": [["M", "S"]], - "downpour's": null, - "downpours": null, - "downrange": null, - "downrightness": [["M"]], - "downrightness's": null, - "downright": [["Y", "P"]], - "downrightly": null, - "downriver": null, - "Downs": null, - "downscale": [["G", "S", "D"]], - "downscaling": null, - "downscales": null, - "downscaled": null, - "downside": [["S"]], - "downsides": null, - "downsize": [["D", "S", "G"]], - "downsized": null, - "downsizes": null, - "downsizing": null, - "downslope": null, - "downspout": [["S", "M"]], - "downspouts": null, - "downspout's": null, - "downstage": [["S"]], - "downstages": null, - "downstairs": null, - "downstate": [["S", "R"]], - "downstates": null, - "downstater": null, - "downstream": null, - "downswing": [["M", "S"]], - "downswing's": null, - "downswings": null, - "downtime": [["S", "M"]], - "downtimes": null, - "downtime's": null, - "downtowner": [["M"]], - "downtowner's": null, - "downtown": [["M", "R", "S"]], - "downtown's": null, - "downtowns": null, - "downtrend": [["M"]], - "downtrend's": null, - "downtrodden": null, - "downturn": [["M", "S"]], - "downturn's": null, - "downturns": null, - "downwardness": [["M"]], - "downwardness's": null, - "downward": [["Y", "P", "S"]], - "downwardly": null, - "downwards": null, - "downwind": null, - "downy": [["R", "T"]], - "downier": null, - "downiest": null, - "dowry": [["S", "M"]], - "dowries": null, - "dowry's": null, - "dowse": [["G", "Z", "S", "R", "D"]], - "dowsing": null, - "dowsers": null, - "dowses": null, - "dowser": [["M"]], - "dowsed": null, - "dowser's": null, - "doxology": [["M", "S"]], - "doxology's": null, - "doxologies": null, - "doyenne": [["S", "M"]], - "doyennes": null, - "doyenne's": null, - "doyen": [["S", "M"]], - "doyens": null, - "doyen's": null, - "Doyle": [["M"]], - "Doyle's": null, - "Doy": [["M"]], - "Doy's": null, - "doze": null, - "dozen": [["G", "H", "D"]], - "dozening": null, - "dozenth": null, - "dozened": null, - "dozenths": null, - "dozer": [["M"]], - "dozer's": null, - "doz": [["X", "G", "N", "D", "R", "S"]], - "dozens": null, - "dozing": null, - "dozed": null, - "dozes": null, - "dozy": null, - "DP": null, - "DPs": null, - "dpt": null, - "DPT": null, - "drabbed": null, - "drabber": null, - "drabbest": null, - "drabbing": null, - "drabness": [["M", "S"]], - "drabness's": null, - "drabnesses": null, - "drab": [["Y", "S", "P"]], - "drably": null, - "drabs": null, - "drachma": [["M", "S"]], - "drachma's": null, - "drachmas": null, - "Draco": [["M"]], - "Draco's": null, - "draconian": null, - "Draconian": null, - "Dracula": [["M"]], - "Dracula's": null, - "draft": [["A", "M", "D", "G", "S"]], - "redraft": null, - "redraft's": null, - "redrafted": null, - "redrafting": null, - "redrafts": null, - "draft's": null, - "drafted": null, - "drafting": [["S"]], - "drafts": null, - "draftee": [["S", "M"]], - "draftees": null, - "draftee's": null, - "drafter": [["M", "S"]], - "drafter's": null, - "drafters": null, - "draftily": null, - "draftiness": [["S", "M"]], - "draftinesses": null, - "draftiness's": null, - "draftings": null, - "draftsman": [["M"]], - "draftsman's": null, - "draftsmanship": [["S", "M"]], - "draftsmanships": null, - "draftsmanship's": null, - "draftsmen": null, - "draftsperson": null, - "draftswoman": null, - "draftswomen": null, - "drafty": [["P", "T", "R"]], - "draftiest": null, - "draftier": null, - "dragged": null, - "dragger": [["M"]], - "dragger's": null, - "dragging": [["Y"]], - "draggingly": null, - "draggy": [["R", "T"]], - "draggier": null, - "draggiest": null, - "drag": [["M", "S"]], - "drag's": null, - "drags": null, - "dragnet": [["M", "S"]], - "dragnet's": null, - "dragnets": null, - "dragonfly": [["S", "M"]], - "dragonflies": null, - "dragonfly's": null, - "dragonhead": [["M"]], - "dragonhead's": null, - "dragon": [["S", "M"]], - "dragons": null, - "dragon's": null, - "dragoon": [["D", "M", "G", "S"]], - "dragooned": null, - "dragoon's": null, - "dragooning": null, - "dragoons": null, - "drainage": [["M", "S"]], - "drainage's": null, - "drainages": null, - "drainboard": [["S", "M"]], - "drainboards": null, - "drainboard's": null, - "drained": [["U"]], - "undrained": null, - "drainer": [["M"]], - "drainer's": null, - "drainpipe": [["M", "S"]], - "drainpipe's": null, - "drainpipes": null, - "drain": [["S", "Z", "G", "R", "D", "M"]], - "drains": null, - "drainers": null, - "draining": null, - "drain's": null, - "Drake": [["M"]], - "Drake's": null, - "drake": [["S", "M"]], - "drakes": null, - "drake's": null, - "Dramamine": [["M", "S"]], - "Dramamine's": null, - "Dramamines": null, - "drama": [["S", "M"]], - "dramas": null, - "drama's": null, - "dramatically": [["U"]], - "undramatically": null, - "dramatical": [["Y"]], - "dramatic": [["S"]], - "dramatics": [["M"]], - "dramatics's": null, - "dramatist": [["M", "S"]], - "dramatist's": null, - "dramatists": null, - "dramatization": [["M", "S"]], - "dramatization's": null, - "dramatizations": null, - "dramatized": [["U"]], - "undramatized": [["S", "M"]], - "dramatizer": [["M"]], - "dramatizer's": null, - "dramatize": [["S", "R", "D", "Z", "G"]], - "dramatizes": null, - "dramatizers": null, - "dramatizing": null, - "dramaturgy": [["M"]], - "dramaturgy's": null, - "Drambuie": [["M"]], - "Drambuie's": null, - "drammed": null, - "dramming": null, - "dram": [["M", "S"]], - "dram's": null, - "drams": null, - "drank": null, - "Drano": [["M"]], - "Drano's": null, - "draper": [["M"]], - "draper's": null, - "drapery": [["M", "S"]], - "drapery's": null, - "draperies": null, - "drape": [["S", "R", "D", "G", "Z"]], - "drapes": null, - "draped": null, - "draping": null, - "drapers": null, - "drastic": null, - "drastically": null, - "drat": [["S"]], - "drats": null, - "dratted": null, - "dratting": null, - "Dravidian": [["M"]], - "Dravidian's": null, - "drawable": null, - "draw": [["A", "S", "G"]], - "redraw": null, - "redraws": null, - "redrawing": null, - "draws": null, - "drawing": [["S", "M"]], - "drawback": [["M", "S"]], - "drawback's": null, - "drawbacks": null, - "drawbridge": [["S", "M"]], - "drawbridges": null, - "drawbridge's": null, - "drawer": [["S", "M"]], - "drawers": null, - "drawer's": null, - "drawings": null, - "drawing's": null, - "drawler": [["M"]], - "drawler's": null, - "drawling": [["Y"]], - "drawlingly": null, - "drawl": [["R", "D", "S", "G"]], - "drawled": null, - "drawls": null, - "drawly": null, - "drawn": [["A", "I"]], - "redrawn": null, - "indrawn": null, - "drawnly": null, - "drawnness": null, - "drawstring": [["M", "S"]], - "drawstring's": null, - "drawstrings": null, - "dray": [["S", "M", "D", "G"]], - "drays": null, - "dray's": null, - "drayed": null, - "draying": null, - "dreadfulness": [["S", "M"]], - "dreadfulnesses": null, - "dreadfulness's": null, - "dreadful": [["Y", "P", "S"]], - "dreadfully": null, - "dreadfuls": null, - "dreadlocks": null, - "dreadnought": [["S", "M"]], - "dreadnoughts": null, - "dreadnought's": null, - "dread": [["S", "R", "D", "G"]], - "dreads": null, - "dreader": null, - "dreaded": null, - "dreading": null, - "dreamboat": [["S", "M"]], - "dreamboats": null, - "dreamboat's": null, - "dreamed": [["U"]], - "undreamed": null, - "dreamer": [["M"]], - "dreamer's": null, - "dreamily": null, - "dreaminess": [["S", "M"]], - "dreaminesses": null, - "dreaminess's": null, - "dreaming": [["Y"]], - "dreamingly": null, - "dreamland": [["S", "M"]], - "dreamlands": null, - "dreamland's": null, - "dreamlessness": [["M"]], - "dreamlessness's": null, - "dreamless": [["P", "Y"]], - "dreamlessly": null, - "dreamlike": null, - "dream": [["S", "M", "R", "D", "Z", "G"]], - "dreams": null, - "dream's": null, - "dreamers": null, - "dreamworld": [["S"]], - "dreamworlds": null, - "dreamy": [["P", "T", "R"]], - "dreamiest": null, - "dreamier": null, - "drearily": null, - "dreariness": [["S", "M"]], - "drearinesses": null, - "dreariness's": null, - "drear": [["S"]], - "drears": null, - "dreary": [["T", "R", "S", "P"]], - "dreariest": null, - "drearier": null, - "drearies": null, - "Dreddy": [["M"]], - "Dreddy's": null, - "dredge": [["M", "Z", "G", "S", "R", "D"]], - "dredge's": null, - "dredgers": null, - "dredging": null, - "dredges": null, - "dredger": [["M"]], - "dredged": null, - "dredger's": null, - "Dredi": [["M"]], - "Dredi's": null, - "dreg": [["M", "S"]], - "dreg's": null, - "dregs": null, - "Dreiser": [["M"]], - "Dreiser's": null, - "Dre": [["M"]], - "Dre's": null, - "drencher": [["M"]], - "drencher's": null, - "drench": [["G", "D", "R", "S"]], - "drenching": null, - "drenched": null, - "drenches": null, - "Dresden": [["M"]], - "Dresden's": null, - "dress": [["A", "D", "R", "S", "G"]], - "redress": null, - "redressed": null, - "redresser": null, - "redresses": null, - "redressing": null, - "dressed": [["U"]], - "dresser": [["M", "S"]], - "dresses": [["U"]], - "dressing": [["M", "S"]], - "dressage": [["M", "S"]], - "dressage's": null, - "dressages": null, - "undressed": null, - "dresser's": [["A"]], - "dressers": null, - "redresser's": null, - "undresses": null, - "dressiness": [["S", "M"]], - "dressinesses": null, - "dressiness's": null, - "dressing's": null, - "dressings": null, - "dressmaker": [["M", "S"]], - "dressmaker's": null, - "dressmakers": null, - "dressmaking": [["S", "M"]], - "dressmakings": null, - "dressmaking's": null, - "dressy": [["P", "T", "R"]], - "dressiest": null, - "dressier": null, - "drew": [["A"]], - "redrew": null, - "Drew": [["M"]], - "Drew's": null, - "Drexel": [["M"]], - "Drexel's": null, - "Dreyfus": [["M"]], - "Dreyfus's": null, - "Dreyfuss": null, - "dribble": [["D", "R", "S", "G", "Z"]], - "dribbled": null, - "dribbler": [["M"]], - "dribbles": null, - "dribbling": null, - "dribblers": null, - "dribbler's": null, - "driblet": [["S", "M"]], - "driblets": null, - "driblet's": null, - "drib": [["S", "M"]], - "dribs": null, - "drib's": null, - "dried": [["U"]], - "undried": null, - "drier": [["M"]], - "drier's": null, - "drifter": [["M"]], - "drifter's": null, - "drifting": [["Y"]], - "driftingly": null, - "drift": [["R", "D", "Z", "S", "G"]], - "drifted": null, - "drifters": null, - "drifts": null, - "driftwood": [["S", "M"]], - "driftwoods": null, - "driftwood's": null, - "driller": [["M"]], - "driller's": null, - "drilling": [["M"]], - "drilling's": null, - "drillmaster": [["S", "M"]], - "drillmasters": null, - "drillmaster's": null, - "drill": [["M", "R", "D", "Z", "G", "S"]], - "drill's": null, - "drilled": null, - "drillers": null, - "drills": null, - "drinkable": [["S"]], - "drinkables": null, - "drink": [["B", "R", "S", "Z", "G"]], - "drinker": [["M"]], - "drinks": null, - "drinkers": null, - "drinking": null, - "drinker's": null, - "dripped": null, - "dripping": [["M", "S"]], - "dripping's": null, - "drippings": null, - "drippy": [["R", "T"]], - "drippier": null, - "drippiest": null, - "drip": [["S", "M"]], - "drips": null, - "drip's": null, - "driveler": [["M"]], - "driveler's": null, - "drivel": [["G", "Z", "D", "R", "S"]], - "driveling": null, - "drivelers": null, - "driveled": null, - "drivels": null, - "driven": [["P"]], - "drivenness": null, - "driver": [["M"]], - "driver's": null, - "drive": [["S", "R", "B", "G", "Z", "J"]], - "drives": null, - "drivable": null, - "driving": null, - "drivers": null, - "drivings": null, - "driveway": [["M", "S"]], - "driveway's": null, - "driveways": null, - "drizzle": [["D", "S", "G", "M"]], - "drizzled": null, - "drizzles": null, - "drizzling": [["Y"]], - "drizzle's": null, - "drizzlingly": null, - "drizzly": [["T", "R"]], - "drizzliest": null, - "drizzlier": null, - "Dr": [["M"]], - "Dr's": null, - "drogue": [["M", "S"]], - "drogue's": null, - "drogues": null, - "drollery": [["S", "M"]], - "drolleries": null, - "drollery's": null, - "drollness": [["M", "S"]], - "drollness's": null, - "drollnesses": null, - "droll": [["R", "D", "S", "P", "T", "G"]], - "droller": null, - "drolled": null, - "drolls": null, - "drollest": null, - "drolling": null, - "drolly": null, - "dromedary": [["M", "S"]], - "dromedary's": null, - "dromedaries": null, - "Drona": [["M"]], - "Drona's": null, - "drone": [["S", "R", "D", "G", "M"]], - "drones": null, - "droner": null, - "droned": null, - "droning": [["Y"]], - "drone's": null, - "droningly": null, - "drool": [["G", "S", "R", "D"]], - "drooling": null, - "drools": null, - "drooler": null, - "drooled": null, - "droopiness": [["M", "S"]], - "droopiness's": null, - "droopinesses": null, - "drooping": [["Y"]], - "droopingly": null, - "droop": [["S", "G", "D"]], - "droops": null, - "drooped": null, - "droopy": [["P", "R", "T"]], - "droopier": null, - "droopiest": null, - "drophead": null, - "dropkick": [["S"]], - "dropkicks": null, - "droplet": [["S", "M"]], - "droplets": null, - "droplet's": null, - "dropout": [["M", "S"]], - "dropout's": null, - "dropouts": null, - "dropped": null, - "dropper": [["S", "M"]], - "droppers": null, - "dropper's": null, - "dropping": [["M", "S"]], - "dropping's": null, - "droppings": null, - "dropsical": null, - "drop": [["S", "M"]], - "drops": null, - "drop's": null, - "dropsy": [["M", "S"]], - "dropsy's": null, - "dropsies": null, - "drosophila": [["M"]], - "drosophila's": null, - "dross": [["S", "M"]], - "drosses": null, - "dross's": null, - "drought": [["S", "M"]], - "droughts": null, - "drought's": null, - "drover": [["M"]], - "drover's": null, - "drove": [["S", "R", "D", "G", "Z"]], - "droves": null, - "droved": null, - "droving": null, - "drovers": null, - "drowner": [["M"]], - "drowner's": null, - "drown": [["R", "D", "S", "J", "G"]], - "drowned": null, - "drowns": null, - "drownings": null, - "drowning": null, - "drowse": [["S", "D", "G"]], - "drowses": null, - "drowsed": null, - "drowsing": null, - "drowsily": null, - "drowsiness": [["S", "M"]], - "drowsinesses": null, - "drowsiness's": null, - "drowsy": [["P", "T", "R"]], - "drowsiest": null, - "drowsier": null, - "drubbed": null, - "drubber": [["M", "S"]], - "drubber's": null, - "drubbers": null, - "drubbing": [["S", "M"]], - "drubbings": null, - "drubbing's": null, - "drub": [["S"]], - "drubs": null, - "Drucie": [["M"]], - "Drucie's": null, - "Drucill": [["M"]], - "Drucill's": null, - "Druci": [["M"]], - "Druci's": null, - "Drucy": [["M"]], - "Drucy's": null, - "drudge": [["M", "G", "S", "R", "D"]], - "drudge's": null, - "drudging": [["Y"]], - "drudges": null, - "drudger": [["M"]], - "drudged": null, - "drudger's": null, - "drudgery": [["S", "M"]], - "drudgeries": null, - "drudgery's": null, - "drudgingly": null, - "Drud": [["M"]], - "Drud's": null, - "drugged": null, - "druggie": [["S", "R", "T"]], - "druggies": null, - "druggier": null, - "druggiest": null, - "drugging": null, - "druggist": [["S", "M"]], - "druggists": null, - "druggist's": null, - "Drugi": [["M"]], - "Drugi's": null, - "drugless": null, - "drug": [["S", "M"]], - "drugs": null, - "drug's": null, - "drugstore": [["S", "M"]], - "drugstores": null, - "drugstore's": null, - "druidism": [["M", "S"]], - "druidism's": null, - "druidisms": null, - "druid": [["M", "S"]], - "druid's": null, - "druids": null, - "Druid's": null, - "Dru": [["M"]], - "Dru's": null, - "drumbeat": [["S", "G", "M"]], - "drumbeats": null, - "drumbeating": null, - "drumbeat's": null, - "drumhead": [["M"]], - "drumhead's": null, - "drumlin": [["M", "S"]], - "drumlin's": null, - "drumlins": null, - "drummed": null, - "drummer": [["S", "M"]], - "drummers": null, - "drummer's": null, - "drumming": null, - "Drummond": [["M"]], - "Drummond's": null, - "drum": [["S", "M"]], - "drums": null, - "drum's": null, - "drumstick": [["S", "M"]], - "drumsticks": null, - "drumstick's": null, - "drunkard": [["S", "M"]], - "drunkards": null, - "drunkard's": null, - "drunkenness": [["S", "M"]], - "drunkennesses": null, - "drunkenness's": null, - "drunken": [["Y", "P"]], - "drunkenly": null, - "drunk": [["S", "R", "N", "Y", "M", "T"]], - "drunks": null, - "drunker": null, - "drunkly": null, - "drunk's": null, - "drunkest": null, - "drupe": [["S", "M"]], - "drupes": null, - "drupe's": null, - "Drury": [["M"]], - "Drury's": null, - "Drusie": [["M"]], - "Drusie's": null, - "Drusilla": [["M"]], - "Drusilla's": null, - "Drusi": [["M"]], - "Drusi's": null, - "Drusy": [["M"]], - "Drusy's": null, - "druthers": null, - "dryad": [["M", "S"]], - "dryad's": null, - "dryads": null, - "Dryden": [["M"]], - "Dryden's": null, - "dryer": [["M", "S"]], - "dryer's": null, - "dryers": null, - "dry": [["G", "Y", "D", "R", "S", "T", "Z"]], - "drying": null, - "dryly": null, - "dries": null, - "driest": null, - "driers": null, - "dryish": null, - "dryness": [["S", "M"]], - "drynesses": null, - "dryness's": null, - "drys": null, - "drystone": null, - "drywall": [["G", "S", "D"]], - "drywalling": null, - "drywalls": null, - "drywalled": null, - "D's": null, - "d's": [["A"]], - "red's": null, - "Dshubba": [["M"]], - "Dshubba's": null, - "DST": null, - "DTP": null, - "dualism": [["M", "S"]], - "dualism's": null, - "dualisms": null, - "dualistic": null, - "dualist": [["M"]], - "dualist's": null, - "duality": [["M", "S"]], - "duality's": null, - "dualities": null, - "dual": [["Y", "S"]], - "dually": null, - "duals": null, - "Duane": [["M"]], - "Duane's": null, - "Dubai": [["M"]], - "Dubai's": null, - "dubbed": null, - "dubber": [["S"]], - "dubbers": null, - "dubbing": [["M"]], - "dubbing's": null, - "dubbin": [["M", "S"]], - "dubbin's": null, - "dubbins": null, - "Dubcek": [["M"]], - "Dubcek's": null, - "Dubhe": [["M"]], - "Dubhe's": null, - "dubiety": [["M", "S"]], - "dubiety's": null, - "dubieties": null, - "dubiousness": [["S", "M"]], - "dubiousnesses": null, - "dubiousness's": null, - "dubious": [["Y", "P"]], - "dubiously": null, - "Dublin": [["M"]], - "Dublin's": null, - "Dubrovnik": [["M"]], - "Dubrovnik's": null, - "dub": [["S"]], - "dubs": null, - "Dubuque": [["M"]], - "Dubuque's": null, - "ducal": null, - "ducat": [["S", "M"]], - "ducats": null, - "ducat's": null, - "duce": [["C", "A", "I", "K", "F"]], - "reduce": [["R", "S", "D", "G", "Z"]], - "induce": [["Z", "G", "L", "S", "R", "D"]], - "produce": [["A", "Z", "G", "D", "R", "S"]], - "duce's": null, - "Duchamp": [["M"]], - "Duchamp's": null, - "duchess": [["M", "S"]], - "duchess's": null, - "duchesses": null, - "duchy": [["S", "M"]], - "duchies": null, - "duchy's": null, - "duckbill": [["S", "M"]], - "duckbills": null, - "duckbill's": null, - "ducker": [["M"]], - "ducker's": null, - "duck": [["G", "S", "R", "D", "M"]], - "ducking": null, - "ducks": null, - "ducked": null, - "duck's": null, - "duckling": [["S", "M"]], - "ducklings": null, - "duckling's": null, - "duckpins": null, - "duckpond": null, - "duckweed": [["M", "S"]], - "duckweed's": null, - "duckweeds": null, - "ducky": [["R", "S", "M", "T"]], - "duckier": null, - "duckies": null, - "ducky's": null, - "duckiest": null, - "ducted": [["C", "F", "I"]], - "deducted": null, - "conducted": null, - "inducted": null, - "ductile": [["I"]], - "inductile": null, - "ductility": [["S", "M"]], - "ductilities": null, - "ductility's": null, - "ducting": [["F"]], - "conducting": null, - "duct": [["K", "M", "S", "F"]], - "product": [["V"]], - "product's": null, - "products": null, - "duct's": [["A"]], - "conduct's": null, - "ducts": [["C", "I"]], - "conducts": null, - "ductless": null, - "reduct's": null, - "deducts": null, - "inducts": null, - "ductwork": [["M"]], - "ductwork's": null, - "dudder": null, - "dude": [["M", "S"]], - "dude's": null, - "dudes": null, - "dudgeon": [["S", "M"]], - "dudgeons": null, - "dudgeon's": null, - "dud": [["G", "M", "D", "S"]], - "duding": null, - "dud's": null, - "duded": null, - "duds": null, - "Dudley": [["M"]], - "Dudley's": null, - "Dud": [["M"]], - "Dud's": null, - "duelist": [["M", "S"]], - "duelist's": null, - "duelists": null, - "duel": [["M", "R", "D", "G", "Z", "S", "J"]], - "duel's": null, - "dueler": null, - "dueled": null, - "dueling": null, - "duelers": null, - "duels": null, - "duelings": null, - "dueness": [["M"]], - "dueness's": null, - "duenna": [["M", "S"]], - "duenna's": null, - "duennas": null, - "due": [["P", "M", "S"]], - "due's": null, - "dues": null, - "duet": [["M", "S"]], - "duet's": null, - "duets": null, - "duetted": null, - "duetting": null, - "duffel": [["M"]], - "duffel's": null, - "duffer": [["M"]], - "duffer's": null, - "duff": [["G", "Z", "S", "R", "D", "M"]], - "duffing": null, - "duffers": null, - "duffs": null, - "duffed": null, - "duff's": null, - "Duffie": [["M"]], - "Duffie's": null, - "Duff": [["M"]], - "Duff's": null, - "Duffy": [["M"]], - "Duffy's": null, - "Dugald": [["M"]], - "Dugald's": null, - "dugout": [["S", "M"]], - "dugouts": null, - "dugout's": null, - "dug": [["S"]], - "dugs": null, - "duh": null, - "DUI": null, - "Duisburg": [["M"]], - "Duisburg's": null, - "dukedom": [["S", "M"]], - "dukedoms": null, - "dukedom's": null, - "duke": [["D", "S", "M", "G"]], - "duked": null, - "dukes": null, - "duke's": null, - "duking": null, - "Duke": [["M"]], - "Duke's": null, - "Dukey": [["M"]], - "Dukey's": null, - "Dukie": [["M"]], - "Dukie's": null, - "Duky": [["M"]], - "Duky's": null, - "Dulcea": [["M"]], - "Dulcea's": null, - "Dulce": [["M"]], - "Dulce's": null, - "dulcet": [["S", "Y"]], - "dulcets": null, - "dulcetly": null, - "Dulcia": [["M"]], - "Dulcia's": null, - "Dulciana": [["M"]], - "Dulciana's": null, - "Dulcie": [["M"]], - "Dulcie's": null, - "dulcify": null, - "Dulci": [["M"]], - "Dulci's": null, - "dulcimer": [["M", "S"]], - "dulcimer's": null, - "dulcimers": null, - "Dulcinea": [["M"]], - "Dulcinea's": null, - "Dulcine": [["M"]], - "Dulcine's": null, - "Dulcy": [["M"]], - "Dulcy's": null, - "dullard": [["M", "S"]], - "dullard's": null, - "dullards": null, - "Dulles": [["M"]], - "Dulles's": null, - "dullness": [["M", "S"]], - "dullness's": null, - "dullnesses": null, - "dull": [["S", "R", "D", "P", "G", "T"]], - "dulls": null, - "duller": null, - "dulled": null, - "dulling": null, - "dullest": null, - "dully": null, - "dulness's": null, - "Dulsea": [["M"]], - "Dulsea's": null, - "Duluth": [["M"]], - "Duluth's": null, - "duly": [["U"]], - "unduly": null, - "Du": [["M"]], - "Du's": null, - "Dumas": null, - "dumbbell": [["M", "S"]], - "dumbbell's": null, - "dumbbells": null, - "dumbfound": [["G", "S", "D", "R"]], - "dumbfounding": null, - "dumbfounds": null, - "dumbfounded": null, - "dumbfounder": null, - "dumbness": [["M", "S"]], - "dumbness's": null, - "dumbnesses": null, - "Dumbo": [["M"]], - "Dumbo's": null, - "dumb": [["P", "S", "G", "T", "Y", "R", "D"]], - "dumbs": null, - "dumbing": null, - "dumbest": null, - "dumbly": null, - "dumber": null, - "dumbed": null, - "dumbstruck": null, - "dumbwaiter": [["S", "M"]], - "dumbwaiters": null, - "dumbwaiter's": null, - "dumdum": [["M", "S"]], - "dumdum's": null, - "dumdums": null, - "dummy": [["S", "D", "M", "G"]], - "dummies": null, - "dummied": null, - "dummy's": null, - "dummying": null, - "Dumont": [["M"]], - "Dumont's": null, - "dumper": [["U", "M"]], - "undumper": null, - "undumper's": null, - "dumper's": null, - "dumpiness": [["M", "S"]], - "dumpiness's": null, - "dumpinesses": null, - "dumpling": [["M", "S"]], - "dumpling's": null, - "dumplings": null, - "dump": [["S", "G", "Z", "R", "D"]], - "dumps": null, - "dumping": null, - "dumpers": null, - "dumped": null, - "dumpster": [["S"]], - "dumpsters": null, - "Dumpster": [["S"]], - "Dumpsters": null, - "Dumpty": [["M"]], - "Dumpty's": null, - "dumpy": [["P", "R", "S", "T"]], - "dumpier": null, - "dumpies": null, - "dumpiest": null, - "Dunant": [["M"]], - "Dunant's": null, - "Dunbar": [["M"]], - "Dunbar's": null, - "Duncan": [["M"]], - "Duncan's": null, - "dunce": [["M", "S"]], - "dunce's": null, - "dunces": null, - "Dunc": [["M"]], - "Dunc's": null, - "Dundee": [["M"]], - "Dundee's": null, - "dunderhead": [["M", "S"]], - "dunderhead's": null, - "dunderheads": null, - "Dunedin": [["M"]], - "Dunedin's": null, - "dune": [["S", "M"]], - "dunes": null, - "dune's": null, - "dungaree": [["S", "M"]], - "dungarees": null, - "dungaree's": null, - "dungeon": [["G", "S", "M", "D"]], - "dungeoning": null, - "dungeons": null, - "dungeon's": null, - "dungeoned": null, - "dunghill": [["M", "S"]], - "dunghill's": null, - "dunghills": null, - "dung": [["S", "G", "D", "M"]], - "dungs": null, - "dunging": null, - "dunged": null, - "dung's": null, - "Dunham": [["M"]], - "Dunham's": null, - "dunker": [["M"]], - "dunker's": null, - "dunk": [["G", "S", "R", "D"]], - "dunking": null, - "dunks": null, - "dunked": null, - "Dunkirk": [["M"]], - "Dunkirk's": null, - "Dunlap": [["M"]], - "Dunlap's": null, - "Dun": [["M"]], - "Dun's": null, - "dunned": null, - "Dunne": [["M"]], - "Dunne's": null, - "dunner": null, - "dunnest": null, - "dunning": null, - "Dunn": [["M"]], - "Dunn's": null, - "dunno": [["M"]], - "dunno's": null, - "dun": [["S"]], - "duns": null, - "Dunstan": [["M"]], - "Dunstan's": null, - "duodecimal": [["S"]], - "duodecimals": null, - "duodena": null, - "duodenal": null, - "duodenum": [["M"]], - "duodenum's": null, - "duologue": [["M"]], - "duologue's": null, - "duo": [["M", "S"]], - "duo's": null, - "duos": null, - "duopolist": null, - "duopoly": [["M"]], - "duopoly's": null, - "dupe": [["N", "G", "D", "R", "S", "M", "Z"]], - "dupion": [["M"]], - "duping": null, - "duped": null, - "duper": [["M"]], - "dupes": null, - "dupe's": null, - "dupers": null, - "duper's": null, - "dupion's": null, - "duple": null, - "duplexer": [["M"]], - "duplexer's": null, - "duplex": [["M", "S", "R", "D", "G"]], - "duplex's": null, - "duplexes": null, - "duplexed": null, - "duplexing": null, - "duplicability": [["M"]], - "duplicability's": null, - "duplicable": null, - "duplicate": [["A", "D", "S", "G", "N", "X"]], - "reduplicate": null, - "reduplicated": null, - "reduplicates": null, - "reduplicating": null, - "reduplication": null, - "reduplications": null, - "duplicated": null, - "duplicates": null, - "duplicating": null, - "duplication": [["A", "M"]], - "duplications": null, - "reduplication's": null, - "duplication's": null, - "duplicative": null, - "duplicator": [["M", "S"]], - "duplicator's": null, - "duplicators": null, - "duplicitous": null, - "duplicity": [["S", "M"]], - "duplicities": null, - "duplicity's": null, - "Dupont": [["M", "S"]], - "Dupont's": null, - "Duponts": null, - "DuPont": [["M", "S"]], - "DuPont's": null, - "DuPonts": null, - "durability": [["M", "S"]], - "durability's": null, - "durabilities": null, - "durableness": [["M"]], - "durableness's": null, - "durable": [["P", "S"]], - "durables": null, - "durably": null, - "Duracell": [["M"]], - "Duracell's": null, - "durance": [["S", "M"]], - "durances": null, - "durance's": null, - "Durand": [["M"]], - "Durand's": null, - "Duran": [["M"]], - "Duran's": null, - "Durante": [["M"]], - "Durante's": null, - "Durant": [["M"]], - "Durant's": null, - "durational": null, - "duration": [["M", "S"]], - "duration's": null, - "durations": null, - "Durban": [["M"]], - "Durban's": null, - "D�rer": [["M"]], - "D�rer's": null, - "duress": [["S", "M"]], - "duresses": null, - "duress's": null, - "Durex": [["M"]], - "Durex's": null, - "Durham": [["M", "S"]], - "Durham's": null, - "Durhams": null, - "during": null, - "Durkee": [["M"]], - "Durkee's": null, - "Durkheim": [["M"]], - "Durkheim's": null, - "Dur": [["M"]], - "Dur's": null, - "Durocher": [["M"]], - "Durocher's": null, - "durst": null, - "durum": [["M", "S"]], - "durum's": null, - "durums": null, - "Durward": [["M"]], - "Durward's": null, - "Duse": [["M"]], - "Duse's": null, - "Dusenberg": [["M"]], - "Dusenberg's": null, - "Dusenbury": [["M"]], - "Dusenbury's": null, - "Dushanbe": [["M"]], - "Dushanbe's": null, - "dusk": [["G", "D", "M", "S"]], - "dusking": null, - "dusked": null, - "dusk's": null, - "dusks": null, - "duskiness": [["M", "S"]], - "duskiness's": null, - "duskinesses": null, - "dusky": [["R", "P", "T"]], - "duskier": null, - "duskiest": null, - "D�sseldorf": null, - "dustbin": [["M", "S"]], - "dustbin's": null, - "dustbins": null, - "dustcart": [["M"]], - "dustcart's": null, - "dustcover": null, - "duster": [["M"]], - "duster's": null, - "dustily": null, - "dustiness": [["M", "S"]], - "dustiness's": null, - "dustinesses": null, - "dusting": [["M"]], - "dusting's": null, - "Dustin": [["M"]], - "Dustin's": null, - "dustless": null, - "dustman": [["M"]], - "dustman's": null, - "dustmen": null, - "dust": [["M", "R", "D", "G", "Z", "S"]], - "dust's": null, - "dusted": null, - "dusters": null, - "dusts": null, - "dustpan": [["S", "M"]], - "dustpans": null, - "dustpan's": null, - "Dusty": [["M"]], - "Dusty's": null, - "dusty": [["R", "P", "T"]], - "dustier": null, - "dustiest": null, - "Dutch": [["M"]], - "Dutch's": null, - "Dutchman": [["M"]], - "Dutchman's": null, - "Dutchmen": null, - "dutch": [["M", "S"]], - "dutch's": null, - "dutches": null, - "Dutchwoman": null, - "Dutchwomen": null, - "duteous": [["Y"]], - "duteously": null, - "dutiable": null, - "dutifulness": [["S"]], - "dutifulnesses": null, - "dutiful": [["U", "P", "Y"]], - "undutiful": null, - "undutifulness": null, - "undutifully": null, - "dutifully": null, - "duty": [["S", "M"]], - "duties": null, - "duty's": null, - "Duvalier": [["M"]], - "Duvalier's": null, - "duvet": [["S", "M"]], - "duvets": null, - "duvet's": null, - "duxes": null, - "Dvina": [["M"]], - "Dvina's": null, - "Dvor�k": [["M"]], - "Dvor�k's": null, - "Dwain": [["M"]], - "Dwain's": null, - "dwarfish": null, - "dwarfism": [["M", "S"]], - "dwarfism's": null, - "dwarfisms": null, - "dwarf": [["M", "T", "G", "S", "P", "R", "D"]], - "dwarf's": null, - "dwarfest": null, - "dwarfing": null, - "dwarfs": null, - "dwarfness": null, - "dwarfer": null, - "dwarfed": null, - "Dwayne": [["M"]], - "Dwayne's": null, - "dweeb": [["S"]], - "dweebs": null, - "dweller": [["S", "M"]], - "dwellers": null, - "dweller's": null, - "dwell": [["I", "G", "S"]], - "indwell": null, - "indwelling": null, - "indwells": null, - "dwelling": [["M", "S"]], - "dwells": null, - "dwelling's": null, - "dwellings": null, - "dwelt": [["I"]], - "indwelt": null, - "DWI": null, - "Dwight": [["M"]], - "Dwight's": null, - "dwindle": [["G", "S", "D"]], - "dwindling": null, - "dwindles": null, - "dwindled": null, - "dyadic": null, - "dyad": [["M", "S"]], - "dyad's": null, - "dyads": null, - "Dyana": [["M"]], - "Dyana's": null, - "Dyane": [["M"]], - "Dyane's": null, - "Dyan": [["M"]], - "Dyan's": null, - "Dyanna": [["M"]], - "Dyanna's": null, - "Dyanne": [["M"]], - "Dyanne's": null, - "Dyann": [["M"]], - "Dyann's": null, - "dybbukim": null, - "dybbuk": [["S", "M"]], - "dybbuks": null, - "dybbuk's": null, - "dyed": [["A"]], - "redyed": null, - "dyeing": [["M"]], - "dyeing's": null, - "dye": [["J", "D", "R", "S", "M", "Z", "G"]], - "dyings": null, - "dyer": [["M"]], - "dyes": [["A"]], - "dye's": null, - "dyers": null, - "dying": [["U", "A"]], - "dyer's": null, - "Dyer": [["M"]], - "Dyer's": null, - "redyes": null, - "dyestuff": [["S", "M"]], - "dyestuffs": null, - "dyestuff's": null, - "undying": null, - "redying": null, - "Dyke": [["M"]], - "Dyke's": null, - "dyke's": null, - "Dylan": [["M"]], - "Dylan's": null, - "Dy": [["M"]], - "Dy's": null, - "Dynah": [["M"]], - "Dynah's": null, - "Dyna": [["M"]], - "Dyna's": null, - "dynamical": [["Y"]], - "dynamically": null, - "dynamic": [["S"]], - "dynamics": [["M"]], - "dynamics's": null, - "dynamism": [["S", "M"]], - "dynamisms": null, - "dynamism's": null, - "dynamiter": [["M"]], - "dynamiter's": null, - "dynamite": [["R", "S", "D", "Z", "M", "G"]], - "dynamites": null, - "dynamited": null, - "dynamiters": null, - "dynamite's": null, - "dynamiting": null, - "dynamized": null, - "dynamo": [["M", "S"]], - "dynamo's": null, - "dynamos": null, - "dynastic": null, - "dynasty": [["M", "S"]], - "dynasty's": null, - "dynasties": null, - "dyne": [["M"]], - "dyne's": null, - "dysentery": [["S", "M"]], - "dysenteries": null, - "dysentery's": null, - "dysfunctional": null, - "dysfunction": [["M", "S"]], - "dysfunction's": null, - "dysfunctions": null, - "dyslectic": [["S"]], - "dyslectics": null, - "dyslexia": [["M", "S"]], - "dyslexia's": null, - "dyslexias": null, - "dyslexically": null, - "dyslexic": [["S"]], - "dyslexics": null, - "dyspepsia": [["M", "S"]], - "dyspepsia's": null, - "dyspepsias": null, - "dyspeptic": [["S"]], - "dyspeptics": null, - "dysprosium": [["M", "S"]], - "dysprosium's": null, - "dysprosiums": null, - "dystopia": [["M"]], - "dystopia's": null, - "dystrophy": [["M"]], - "dystrophy's": null, - "dz": null, - "Dzerzhinsky": [["M"]], - "Dzerzhinsky's": null, - "E": null, - "ea": null, - "each": null, - "Eachelle": [["M"]], - "Eachelle's": null, - "Eada": [["M"]], - "Eada's": null, - "Eadie": [["M"]], - "Eadie's": null, - "Eadith": [["M"]], - "Eadith's": null, - "Eadmund": [["M"]], - "Eadmund's": null, - "eagerness": [["M", "S"]], - "eagerness's": null, - "eagernesses": null, - "eager": [["T", "S", "P", "R", "Y", "M"]], - "eagerest": null, - "eagers": null, - "eagerer": null, - "eagerly": null, - "eager's": null, - "eagle": [["S", "D", "G", "M"]], - "eagles": null, - "eagled": null, - "eagling": null, - "eagle's": null, - "eaglet": [["S", "M"]], - "eaglets": null, - "eaglet's": null, - "Eakins": [["M"]], - "Eakins's": null, - "Ealasaid": [["M"]], - "Ealasaid's": null, - "Eal": [["M"]], - "Eal's": null, - "Eamon": [["M"]], - "Eamon's": null, - "earache": [["S", "M"]], - "earaches": null, - "earache's": null, - "eardrum": [["S", "M"]], - "eardrums": null, - "eardrum's": null, - "earful": [["M", "S"]], - "earful's": null, - "earfuls": null, - "ear": [["G", "S", "M", "D", "Y", "H"]], - "earing": [["M"]], - "ears": null, - "ear's": null, - "eared": null, - "early": [["P", "R", "S", "T"]], - "earth": [["M", "D", "N", "Y", "G"]], - "Earhart": [["M"]], - "Earhart's": null, - "earing's": null, - "earldom": [["M", "S"]], - "earldom's": null, - "earldoms": null, - "Earle": [["M"]], - "Earle's": null, - "Earlene": [["M"]], - "Earlene's": null, - "Earlie": [["M"]], - "Earlie's": null, - "Earline": [["M"]], - "Earline's": null, - "earliness": [["S", "M"]], - "earlinesses": null, - "earliness's": null, - "Earl": [["M"]], - "Earl's": null, - "earl": [["M", "S"]], - "earl's": null, - "earls": null, - "earlobe": [["S"]], - "earlobes": null, - "Early": [["M"]], - "Early's": null, - "earlier": null, - "earlies": null, - "earliest": null, - "earmark": [["D", "G", "S", "J"]], - "earmarked": null, - "earmarking": null, - "earmarks": null, - "earmarkings": null, - "earmuff": [["S", "M"]], - "earmuffs": null, - "earmuff's": null, - "earned": [["U"]], - "unearned": null, - "earner": [["M"]], - "earner's": null, - "Earnestine": [["M"]], - "Earnestine's": null, - "Earnest": [["M"]], - "Earnest's": null, - "earnestness": [["M", "S"]], - "earnestness's": null, - "earnestnesses": null, - "earnest": [["P", "Y", "S"]], - "earnestly": null, - "earnests": null, - "earn": [["G", "R", "D", "Z", "T", "S", "J"]], - "earning": [["M"]], - "earners": null, - "earns": null, - "earnings": null, - "earning's": null, - "earphone": [["M", "S"]], - "earphone's": null, - "earphones": null, - "earpieces": null, - "earplug": [["M", "S"]], - "earplug's": null, - "earplugs": null, - "Earp": [["M"]], - "Earp's": null, - "earring": [["M", "S"]], - "earring's": null, - "earrings": null, - "earshot": [["M", "S"]], - "earshot's": null, - "earshots": null, - "earsplitting": null, - "Eartha": [["M"]], - "Eartha's": null, - "earthbound": null, - "earthed": [["U"]], - "unearthed": null, - "earthenware": [["M", "S"]], - "earthenware's": null, - "earthenwares": null, - "earthiness": [["S", "M"]], - "earthinesses": null, - "earthiness's": null, - "earthliness": [["M"]], - "earthliness's": null, - "earthling": [["M", "S"]], - "earthling's": null, - "earthlings": null, - "earthly": [["T", "P", "R"]], - "earthliest": null, - "earthlier": null, - "earth's": null, - "earthen": null, - "earthing": null, - "earthmen": null, - "earthmover": [["M"]], - "earthmover's": null, - "earthmoving": null, - "earthquake": [["S", "D", "G", "M"]], - "earthquakes": null, - "earthquaked": null, - "earthquaking": null, - "earthquake's": null, - "earthshaking": null, - "earths": [["U"]], - "unearths": null, - "earthward": [["S"]], - "earthwards": null, - "earthwork": [["M", "S"]], - "earthwork's": null, - "earthworks": null, - "earthworm": [["M", "S"]], - "earthworm's": null, - "earthworms": null, - "earthy": [["P", "T", "R"]], - "earthiest": null, - "earthier": null, - "Earvin": [["M"]], - "Earvin's": null, - "earwax": [["M", "S"]], - "earwax's": null, - "earwaxes": null, - "earwigged": null, - "earwigging": null, - "earwig": [["M", "S"]], - "earwig's": null, - "earwigs": null, - "eased": [["E"]], - "diseased": null, - "ease": [["L", "D", "R", "S", "M", "G"]], - "easement": [["M", "S"]], - "easer": [["M"]], - "eases": [["U", "E"]], - "ease's": [["E", "U"]], - "easing": [["M"]], - "easel": [["M", "S"]], - "easel's": null, - "easels": null, - "easement's": null, - "easements": null, - "easer's": null, - "disease's": null, - "unease's": null, - "uneases": null, - "diseases": null, - "easies": null, - "easily": [["U"]], - "uneasily": null, - "easiness": [["M", "S", "U"]], - "easiness's": null, - "uneasiness's": null, - "easinesses": null, - "uneasinesses": null, - "uneasiness": null, - "easing's": null, - "eastbound": null, - "easterly": [["S"]], - "easterlies": null, - "Easter": [["M"]], - "Easter's": null, - "easterner": [["M"]], - "easterner's": null, - "Easterner": [["M"]], - "Easterner's": null, - "easternmost": null, - "Eastern": [["R", "Z"]], - "Easterners": null, - "eastern": [["Z", "R"]], - "easterners": null, - "easter": [["Y"]], - "east": [["G", "S", "M", "R"]], - "easting": [["M"]], - "easts": null, - "east's": null, - "Easthampton": [["M"]], - "Easthampton's": null, - "easting's": null, - "Eastland": [["M"]], - "Eastland's": null, - "Eastman": [["M"]], - "Eastman's": null, - "eastward": [["S"]], - "eastwards": null, - "Eastwick": [["M"]], - "Eastwick's": null, - "Eastwood": [["M"]], - "Eastwood's": null, - "East": [["Z", "S", "M", "R"]], - "Easters": null, - "Easts": null, - "East's": null, - "easygoingness": [["M"]], - "easygoingness's": null, - "easygoing": [["P"]], - "easy": [["P", "U", "T", "R"]], - "uneasy": null, - "uneasier": null, - "easiest": null, - "easier": null, - "eatables": null, - "eatable": [["U"]], - "uneatable": null, - "eaten": [["U"]], - "uneaten": null, - "eater": [["M"]], - "eater's": null, - "eatery": [["M", "S"]], - "eatery's": null, - "eateries": null, - "eating": [["M"]], - "eating's": null, - "Eaton": [["M"]], - "Eaton's": null, - "eat": [["S", "J", "Z", "G", "N", "R", "B"]], - "eats": null, - "eatings": null, - "eaters": null, - "eavesdropped": null, - "eavesdropper": [["M", "S"]], - "eavesdropper's": null, - "eavesdroppers": null, - "eavesdropping": null, - "eavesdrop": [["S"]], - "eavesdrops": null, - "eave": [["S", "M"]], - "eaves": null, - "eave's": null, - "Eba": [["M"]], - "Eba's": null, - "Ebba": [["M"]], - "Ebba's": null, - "ebb": [["D", "S", "G"]], - "ebbed": null, - "ebbs": null, - "ebbing": null, - "EBCDIC": null, - "Ebeneezer": [["M"]], - "Ebeneezer's": null, - "Ebeneser": [["M"]], - "Ebeneser's": null, - "Ebenezer": [["M"]], - "Ebenezer's": null, - "Eben": [["M"]], - "Eben's": null, - "Eberhard": [["M"]], - "Eberhard's": null, - "Eberto": [["M"]], - "Eberto's": null, - "Eb": [["M", "N"]], - "Eb's": null, - "Ebola": null, - "Ebonee": [["M"]], - "Ebonee's": null, - "Ebonics": null, - "Ebony": [["M"]], - "Ebony's": null, - "ebony": [["S", "M"]], - "ebonies": null, - "ebony's": null, - "Ebro": [["M"]], - "Ebro's": null, - "ebullience": [["S", "M"]], - "ebulliences": null, - "ebullience's": null, - "ebullient": [["Y"]], - "ebulliently": null, - "ebullition": [["S", "M"]], - "ebullitions": null, - "ebullition's": null, - "EC": null, - "eccentrically": null, - "eccentricity": [["S", "M"]], - "eccentricities": null, - "eccentricity's": null, - "eccentric": [["M", "S"]], - "eccentric's": null, - "eccentrics": null, - "eccl": null, - "Eccles": null, - "Ecclesiastes": [["M"]], - "Ecclesiastes's": null, - "ecclesiastical": [["Y"]], - "ecclesiastically": null, - "ecclesiastic": [["M", "S"]], - "ecclesiastic's": null, - "ecclesiastics": null, - "ECG": null, - "echelon": [["S", "G", "D", "M"]], - "echelons": null, - "echeloning": null, - "echeloned": null, - "echelon's": null, - "echinoderm": [["S", "M"]], - "echinoderms": null, - "echinoderm's": null, - "echo": [["D", "M", "G"]], - "echoed": [["A"]], - "echo's": null, - "echoing": null, - "reechoed": null, - "echoes": [["A"]], - "reechoes": null, - "echoic": null, - "echolocation": [["S", "M"]], - "echolocations": null, - "echolocation's": null, - "�clair": [["M", "S"]], - "�clair's": null, - "�clairs": null, - "�clat": [["M", "S"]], - "�clat's": null, - "�clats": null, - "eclectically": null, - "eclecticism": [["M", "S"]], - "eclecticism's": null, - "eclecticisms": null, - "eclectic": [["S"]], - "eclectics": null, - "eclipse": [["M", "G", "S", "D"]], - "eclipse's": null, - "eclipsing": null, - "eclipses": null, - "eclipsed": null, - "ecliptic": [["M", "S"]], - "ecliptic's": null, - "ecliptics": null, - "eclogue": [["M", "S"]], - "eclogue's": null, - "eclogues": null, - "ecocide": [["S", "M"]], - "ecocides": null, - "ecocide's": null, - "ecol": null, - "Ecole": [["M"]], - "Ecole's": null, - "ecologic": null, - "ecological": [["Y"]], - "ecologically": null, - "ecologist": [["M", "S"]], - "ecologist's": null, - "ecologists": null, - "ecology": [["M", "S"]], - "ecology's": null, - "ecologies": null, - "Eco": [["M"]], - "Eco's": null, - "econ": null, - "Econometrica": [["M"]], - "Econometrica's": null, - "econometricians": null, - "econometric": [["S"]], - "econometrics": [["M"]], - "econometrics's": null, - "economical": [["Y", "U"]], - "economically": null, - "uneconomically": null, - "uneconomical": null, - "economic": [["S"]], - "economics": [["M"]], - "economics's": null, - "economist": [["M", "S"]], - "economist's": null, - "economists": null, - "economization": null, - "economize": [["G", "Z", "S", "R", "D"]], - "economizing": [["U"]], - "economizers": null, - "economizes": null, - "economizer": [["M"]], - "economized": null, - "economizer's": null, - "uneconomizing": null, - "economy": [["M", "S"]], - "economy's": null, - "economies": null, - "ecosystem": [["M", "S"]], - "ecosystem's": null, - "ecosystems": null, - "ecru": [["S", "M"]], - "ecrus": null, - "ecru's": null, - "ecstasy": [["M", "S"]], - "ecstasy's": null, - "ecstasies": null, - "Ecstasy": [["S"]], - "Ecstasies": null, - "ecstatically": null, - "ecstatic": [["S"]], - "ecstatics": null, - "ectoplasm": [["M"]], - "ectoplasm's": null, - "Ecuadoran": [["S"]], - "Ecuadorans": null, - "Ecuadorean": [["S"]], - "Ecuadoreans": null, - "Ecuadorian": [["S"]], - "Ecuadorians": null, - "Ecuador": [["M"]], - "Ecuador's": null, - "ecumenical": [["Y"]], - "ecumenically": null, - "ecumenicism": [["S", "M"]], - "ecumenicisms": null, - "ecumenicism's": null, - "ecumenicist": [["M", "S"]], - "ecumenicist's": null, - "ecumenicists": null, - "ecumenic": [["M", "S"]], - "ecumenic's": null, - "ecumenics": [["M"]], - "ecumenics's": null, - "ecumenism": [["S", "M"]], - "ecumenisms": null, - "ecumenism's": null, - "ecumenist": [["M", "S"]], - "ecumenist's": null, - "ecumenists": null, - "eczema": [["M", "S"]], - "eczema's": null, - "eczemas": null, - "Eda": [["M"]], - "Eda's": null, - "Edam": [["S", "M"]], - "Edams": null, - "Edam's": null, - "Edan": [["M"]], - "Edan's": null, - "ed": [["A", "S", "C"]], - "reed": [["G", "M", "D", "R"]], - "reeds": null, - "eds": null, - "Edda": [["M"]], - "Edda's": null, - "Eddie": [["M"]], - "Eddie's": null, - "Eddi": [["M"]], - "Eddi's": null, - "Edd": [["M"]], - "Edd's": null, - "Eddy": [["M"]], - "Eddy's": null, - "eddy": [["S", "D", "M", "G"]], - "eddies": null, - "eddied": null, - "eddy's": null, - "eddying": null, - "Edee": [["M"]], - "Edee's": null, - "Edeline": [["M"]], - "Edeline's": null, - "edelweiss": [["M", "S"]], - "edelweiss's": null, - "edelweisses": null, - "Ede": [["M"]], - "Ede's": null, - "edema": [["S", "M"]], - "edemas": null, - "edema's": null, - "edematous": null, - "eden": null, - "Eden": [["M"]], - "Eden's": null, - "Edgard": [["M"]], - "Edgard's": null, - "Edgardo": [["M"]], - "Edgardo's": null, - "Edgar": [["M"]], - "Edgar's": null, - "edge": [["D", "R", "S", "M", "Z", "G", "J"]], - "edged": null, - "edger": [["M"]], - "edges": null, - "edge's": null, - "edgers": null, - "edging": [["M"]], - "edgings": null, - "edgeless": null, - "edger's": null, - "Edgerton": [["M"]], - "Edgerton's": null, - "Edgewater": [["M"]], - "Edgewater's": null, - "edgewise": null, - "Edgewood": [["M"]], - "Edgewood's": null, - "edgily": null, - "edginess": [["M", "S"]], - "edginess's": null, - "edginesses": null, - "edging's": null, - "edgy": [["T", "R", "P"]], - "edgiest": null, - "edgier": null, - "edibility": [["M", "S"]], - "edibility's": null, - "edibilities": null, - "edibleness": [["S", "M"]], - "ediblenesses": null, - "edibleness's": null, - "edible": [["S", "P"]], - "edibles": null, - "edict": [["S", "M"]], - "edicts": null, - "edict's": null, - "Edie": [["M"]], - "Edie's": null, - "edification": [["M"]], - "edification's": null, - "edifice": [["S", "M"]], - "edifices": null, - "edifice's": null, - "edifier": [["M"]], - "edifier's": null, - "edifying": [["U"]], - "unedifying": null, - "edify": [["Z", "N", "X", "G", "R", "S", "D"]], - "edifiers": null, - "edifications": null, - "edifies": null, - "edified": null, - "Edik": [["M"]], - "Edik's": null, - "Edi": [["M", "H"]], - "Edi's": null, - "Edith": [["M"]], - "Edinburgh": [["M"]], - "Edinburgh's": null, - "Edin": [["M"]], - "Edin's": null, - "Edison": [["M"]], - "Edison's": null, - "editable": null, - "Edita": [["M"]], - "Edita's": null, - "edited": [["I", "U"]], - "inedited": null, - "unedited": null, - "Editha": [["M"]], - "Editha's": null, - "Edithe": [["M"]], - "Edithe's": null, - "Edith's": null, - "edition": [["S", "M"]], - "editions": null, - "edition's": null, - "editorialist": [["M"]], - "editorialist's": null, - "editorialize": [["D", "R", "S", "G"]], - "editorialized": null, - "editorializer": [["M"]], - "editorializes": null, - "editorializing": null, - "editorializer's": null, - "editorial": [["Y", "S"]], - "editorially": null, - "editorials": null, - "editor": [["M", "S"]], - "editor's": null, - "editors": null, - "editorship": [["M", "S"]], - "editorship's": null, - "editorships": null, - "edit": [["S", "A", "D", "G"]], - "edits": null, - "reedits": null, - "reedit": null, - "reedited": null, - "reediting": null, - "editing": null, - "Ediva": [["M"]], - "Ediva's": null, - "Edlin": [["M"]], - "Edlin's": null, - "Edmond": [["M"]], - "Edmond's": null, - "Edmon": [["M"]], - "Edmon's": null, - "Edmonton": [["M"]], - "Edmonton's": null, - "Edmund": [["M"]], - "Edmund's": null, - "Edna": [["M"]], - "Edna's": null, - "Edouard": [["M"]], - "Edouard's": null, - "EDP": null, - "Edsel": [["M"]], - "Edsel's": null, - "Edsger": [["M"]], - "Edsger's": null, - "EDT": null, - "Eduard": [["M"]], - "Eduard's": null, - "Eduardo": [["M"]], - "Eduardo's": null, - "educability": [["S", "M"]], - "educabilities": null, - "educability's": null, - "educable": [["S"]], - "educables": null, - "educated": [["Y", "P"]], - "educatedly": null, - "educatedness": null, - "educate": [["X", "A", "S", "D", "G", "N"]], - "educations": null, - "reeducations": null, - "reeducate": null, - "reeducates": null, - "reeducated": null, - "reeducating": null, - "reeducation": null, - "educates": null, - "educating": null, - "education": [["A", "M"]], - "educationalists": null, - "educational": [["Y"]], - "educationally": null, - "reeducation's": null, - "education's": null, - "educationists": null, - "educative": null, - "educator": [["M", "S"]], - "educator's": null, - "educators": null, - "educ": [["D", "B", "G"]], - "educed": null, - "educing": null, - "educe": [["S"]], - "educes": null, - "eduction": [["M"]], - "eduction's": null, - "Eduino": [["M"]], - "Eduino's": null, - "edutainment": [["S"]], - "edutainments": null, - "Edvard": [["M"]], - "Edvard's": null, - "Edwardian": null, - "Edwardo": [["M"]], - "Edwardo's": null, - "Edward": [["S", "M"]], - "Edwards": null, - "Edward's": null, - "Edwina": [["M"]], - "Edwina's": null, - "Edwin": [["M"]], - "Edwin's": null, - "Ed": [["X", "M", "N"]], - "Edens": null, - "Ed's": null, - "Edy": [["M"]], - "Edy's": null, - "Edythe": [["M"]], - "Edythe's": null, - "Edyth": [["M"]], - "Edyth's": null, - "EEC": null, - "EEG": null, - "eek": [["S"]], - "eeks": null, - "eelgrass": [["M"]], - "eelgrass's": null, - "eel": [["M", "S"]], - "eel's": null, - "eels": null, - "e'en": null, - "EEO": null, - "EEOC": null, - "e'er": null, - "eerie": [["R", "T"]], - "eerier": null, - "eeriest": null, - "eerily": null, - "eeriness": [["M", "S"]], - "eeriness's": null, - "eerinesses": null, - "Eeyore": [["M"]], - "Eeyore's": null, - "effaceable": [["I"]], - "ineffaceable": null, - "effacement": [["M", "S"]], - "effacement's": null, - "effacements": null, - "effacer": [["M"]], - "effacer's": null, - "efface": [["S", "R", "D", "L", "G"]], - "effaces": null, - "effaced": null, - "effacing": null, - "effectiveness": [["I", "S", "M"]], - "ineffectiveness": null, - "ineffectivenesses": null, - "ineffectiveness's": null, - "effectivenesses": null, - "effectiveness's": null, - "effectives": null, - "effective": [["Y", "I", "P"]], - "effectively": null, - "ineffectively": null, - "ineffective": null, - "effector": [["M", "S"]], - "effector's": null, - "effectors": null, - "effect": [["S", "M", "D", "G", "V"]], - "effects": null, - "effect's": null, - "effected": null, - "effecting": null, - "effectual": [["I", "Y", "P"]], - "ineffectual": null, - "ineffectually": null, - "ineffectualness": null, - "effectually": null, - "effectualness": [["M", "I"]], - "effectualness's": null, - "ineffectualness's": null, - "effectuate": [["S", "D", "G", "N"]], - "effectuates": null, - "effectuated": null, - "effectuating": null, - "effectuation": [["M"]], - "effectuation's": null, - "effeminacy": [["M", "S"]], - "effeminacy's": null, - "effeminacies": null, - "effeminate": [["S", "Y"]], - "effeminates": null, - "effeminately": null, - "effendi": [["M", "S"]], - "effendi's": null, - "effendis": null, - "efferent": [["S", "Y"]], - "efferents": null, - "efferently": null, - "effervesce": [["G", "S", "D"]], - "effervescing": null, - "effervesces": null, - "effervesced": null, - "effervescence": [["S", "M"]], - "effervescences": null, - "effervescence's": null, - "effervescent": [["Y"]], - "effervescently": null, - "effeteness": [["S", "M"]], - "effetenesses": null, - "effeteness's": null, - "effete": [["Y", "P"]], - "effetely": null, - "efficacious": [["I", "P", "Y"]], - "inefficacious": null, - "inefficaciousness": null, - "inefficaciously": null, - "efficaciousness": [["M", "I"]], - "efficaciously": null, - "efficaciousness's": null, - "inefficaciousness's": null, - "efficacy": [["I", "M", "S"]], - "inefficacy": null, - "inefficacy's": null, - "inefficacies": null, - "efficacy's": null, - "efficacies": null, - "efficiency": [["M", "I", "S"]], - "efficiency's": null, - "inefficiency's": null, - "inefficiency": null, - "inefficiencies": null, - "efficiencies": null, - "efficient": [["I", "S", "Y"]], - "inefficient": null, - "inefficients": null, - "inefficiently": null, - "efficients": null, - "efficiently": null, - "Effie": [["M"]], - "Effie's": null, - "effigy": [["S", "M"]], - "effigies": null, - "effigy's": null, - "effloresce": null, - "efflorescence": [["S", "M"]], - "efflorescences": null, - "efflorescence's": null, - "efflorescent": null, - "effluence": [["S", "M"]], - "effluences": null, - "effluence's": null, - "effluent": [["M", "S"]], - "effluent's": null, - "effluents": null, - "effluvia": null, - "effluvium": [["M"]], - "effluvium's": null, - "effluxion": null, - "efflux": [["M"]], - "efflux's": null, - "effortlessness": [["S", "M"]], - "effortlessnesses": null, - "effortlessness's": null, - "effortless": [["P", "Y"]], - "effortlessly": null, - "effort": [["M", "S"]], - "effort's": null, - "efforts": null, - "effrontery": [["M", "S"]], - "effrontery's": null, - "effronteries": null, - "effulgence": [["S", "M"]], - "effulgences": null, - "effulgence's": null, - "effulgent": null, - "effuse": [["X", "S", "D", "V", "G", "N"]], - "effusions": null, - "effuses": null, - "effused": null, - "effusive": [["Y", "P"]], - "effusing": null, - "effusion": [["M"]], - "effusion's": null, - "effusiveness": [["M", "S"]], - "effusiveness's": null, - "effusivenesses": null, - "effusively": null, - "EFL": null, - "e": [["F", "M", "D", "S"]], - "cone": null, - "cone's": null, - "coned": null, - "cones": null, - "e's": null, - "es": null, - "Efrain": [["M"]], - "Efrain's": null, - "Efrem": [["M"]], - "Efrem's": null, - "Efren": [["M"]], - "Efren's": null, - "EFT": null, - "egad": null, - "egalitarian": [["I"]], - "inegalitarian": null, - "egalitarianism": [["M", "S"]], - "egalitarianism's": null, - "egalitarianisms": null, - "egalitarians": null, - "EGA": [["M"]], - "EGA's": null, - "Egan": [["M"]], - "Egan's": null, - "Egbert": [["M"]], - "Egbert's": null, - "Egerton": [["M"]], - "Egerton's": null, - "eggbeater": [["S", "M"]], - "eggbeaters": null, - "eggbeater's": null, - "eggcup": [["M", "S"]], - "eggcup's": null, - "eggcups": null, - "egger": [["M"]], - "egger's": null, - "egg": [["G", "M", "D", "R", "S"]], - "egging": null, - "egg's": null, - "egged": null, - "eggs": null, - "eggheaded": [["P"]], - "eggheadedness": null, - "egghead": [["S", "D", "M"]], - "eggheads": null, - "egghead's": null, - "eggnog": [["S", "M"]], - "eggnogs": null, - "eggnog's": null, - "eggplant": [["M", "S"]], - "eggplant's": null, - "eggplants": null, - "eggshell": [["S", "M"]], - "eggshells": null, - "eggshell's": null, - "egis's": null, - "eglantine": [["M", "S"]], - "eglantine's": null, - "eglantines": null, - "egocentrically": null, - "egocentricity": [["S", "M"]], - "egocentricities": null, - "egocentricity's": null, - "egocentric": [["S"]], - "egocentrics": null, - "egoism": [["S", "M"]], - "egoisms": null, - "egoism's": null, - "egoistic": null, - "egoistical": [["Y"]], - "egoistically": null, - "egoist": [["S", "M"]], - "egoists": null, - "egoist's": null, - "egomaniac": [["M", "S"]], - "egomaniac's": null, - "egomaniacs": null, - "egomania": [["M", "S"]], - "egomania's": null, - "egomanias": null, - "Egon": [["M"]], - "Egon's": null, - "Egor": [["M"]], - "Egor's": null, - "ego": [["S", "M"]], - "egos": null, - "ego's": null, - "egotism": [["S", "M"]], - "egotisms": null, - "egotism's": null, - "egotistic": null, - "egotistical": [["Y"]], - "egotistically": null, - "egotist": [["M", "S"]], - "egotist's": null, - "egotists": null, - "egregiousness": [["M", "S"]], - "egregiousness's": null, - "egregiousnesses": null, - "egregious": [["P", "Y"]], - "egregiously": null, - "egress": [["S", "D", "M", "G"]], - "egresses": null, - "egressed": null, - "egress's": null, - "egressing": null, - "egret": [["S", "M"]], - "egrets": null, - "egret's": null, - "Egyptian": [["S"]], - "Egyptians": null, - "Egypt": [["M"]], - "Egypt's": null, - "Egyptology": [["M"]], - "Egyptology's": null, - "eh": null, - "Ehrlich": [["M"]], - "Ehrlich's": null, - "Eichmann": [["M"]], - "Eichmann's": null, - "eiderdown": [["S", "M"]], - "eiderdowns": null, - "eiderdown's": null, - "eider": [["S", "M"]], - "eiders": null, - "eider's": null, - "eidetic": null, - "Eiffel": [["M"]], - "Eiffel's": null, - "eigenfunction": [["M", "S"]], - "eigenfunction's": null, - "eigenfunctions": null, - "eigenstate": [["S"]], - "eigenstates": null, - "eigenvalue": [["S", "M"]], - "eigenvalues": null, - "eigenvalue's": null, - "eigenvector": [["M", "S"]], - "eigenvector's": null, - "eigenvectors": null, - "eighteen": [["M", "H", "S"]], - "eighteen's": null, - "eighteenth": null, - "eighteens": null, - "eighteenths": null, - "eightfold": null, - "eighth": [["M", "S"]], - "eighth's": null, - "eighthes": null, - "eighths": null, - "eightieths": null, - "eightpence": null, - "eight": [["S", "M"]], - "eights": null, - "eight's": null, - "eighty": [["S", "H", "M"]], - "eighties": null, - "eightieth": null, - "eighty's": null, - "Eileen": [["M"]], - "Eileen's": null, - "Eilis": [["M"]], - "Eilis's": null, - "Eimile": [["M"]], - "Eimile's": null, - "Einsteinian": null, - "einsteinium": [["M", "S"]], - "einsteinium's": null, - "einsteiniums": null, - "Einstein": [["S", "M"]], - "Einsteins": null, - "Einstein's": null, - "Eire": [["M"]], - "Eire's": null, - "Eirena": [["M"]], - "Eirena's": null, - "Eisenhower": [["M"]], - "Eisenhower's": null, - "Eisenstein": [["M"]], - "Eisenstein's": null, - "Eisner": [["M"]], - "Eisner's": null, - "eisteddfod": [["M"]], - "eisteddfod's": null, - "either": null, - "ejaculate": [["S", "D", "X", "N", "G"]], - "ejaculates": null, - "ejaculated": null, - "ejaculations": null, - "ejaculation": [["M"]], - "ejaculating": null, - "ejaculation's": null, - "ejaculatory": null, - "ejecta": null, - "ejection": [["S", "M"]], - "ejections": null, - "ejection's": null, - "ejector": [["S", "M"]], - "ejectors": null, - "ejector's": null, - "eject": [["V", "G", "S", "D"]], - "ejective": null, - "ejecting": null, - "ejects": null, - "ejected": null, - "Ekaterina": [["M"]], - "Ekaterina's": null, - "Ekberg": [["M"]], - "Ekberg's": null, - "eked": [["A"]], - "reeked": null, - "eke": [["D", "S", "G"]], - "ekes": null, - "eking": null, - "EKG": null, - "Ekstrom": [["M"]], - "Ekstrom's": null, - "Ektachrome": [["M"]], - "Ektachrome's": null, - "elaborateness": [["S", "M"]], - "elaboratenesses": null, - "elaborateness's": null, - "elaborate": [["S", "D", "Y", "P", "V", "N", "G", "X"]], - "elaborates": null, - "elaborated": null, - "elaborately": null, - "elaborative": null, - "elaboration": [["M"]], - "elaborating": null, - "elaborations": null, - "elaboration's": null, - "elaborators": null, - "Elaina": [["M"]], - "Elaina's": null, - "Elaine": [["M"]], - "Elaine's": null, - "Elana": [["M"]], - "Elana's": null, - "eland": [["S", "M"]], - "elands": null, - "eland's": null, - "Elane": [["M"]], - "Elane's": null, - "�lan": [["M"]], - "�lan's": null, - "Elanor": [["M"]], - "Elanor's": null, - "elans": null, - "elapse": [["S", "D", "G"]], - "elapses": null, - "elapsed": null, - "elapsing": null, - "el": [["A", "S"]], - "reel": [["U", "S", "D", "G"]], - "reels": null, - "els": null, - "elastically": [["I"]], - "inelastically": null, - "elasticated": null, - "elasticity": [["S", "M"]], - "elasticities": null, - "elasticity's": null, - "elasticize": [["G", "D", "S"]], - "elasticizing": null, - "elasticized": null, - "elasticizes": null, - "elastic": [["S"]], - "elastics": null, - "elastodynamics": null, - "elastomer": [["M"]], - "elastomer's": null, - "elatedness": [["M"]], - "elatedness's": null, - "elated": [["P", "Y"]], - "elatedly": null, - "elater": [["M"]], - "elater's": null, - "elate": [["S", "R", "D", "X", "G", "N"]], - "elates": null, - "elations": null, - "elating": null, - "elation": [["M"]], - "elation's": null, - "Elayne": [["M"]], - "Elayne's": null, - "Elba": [["M", "S"]], - "Elba's": null, - "Elbas": null, - "Elbe": [["M"]], - "Elbe's": null, - "Elberta": [["M"]], - "Elberta's": null, - "Elbertina": [["M"]], - "Elbertina's": null, - "Elbertine": [["M"]], - "Elbertine's": null, - "Elbert": [["M"]], - "Elbert's": null, - "elbow": [["G", "D", "M", "S"]], - "elbowing": null, - "elbowed": null, - "elbow's": null, - "elbows": null, - "elbowroom": [["S", "M"]], - "elbowrooms": null, - "elbowroom's": null, - "Elbrus": [["M"]], - "Elbrus's": null, - "Elden": [["M"]], - "Elden's": null, - "elderberry": [["M", "S"]], - "elderberry's": null, - "elderberries": null, - "elderflower": null, - "elderliness": [["M"]], - "elderliness's": null, - "elderly": [["P", "S"]], - "elderlies": null, - "elder": [["S", "Y"]], - "elders": null, - "eldest": null, - "Eldin": [["M"]], - "Eldin's": null, - "Eldon": [["M"]], - "Eldon's": null, - "Eldorado's": null, - "Eldredge": [["M"]], - "Eldredge's": null, - "Eldridge": [["M"]], - "Eldridge's": null, - "Eleanora": [["M"]], - "Eleanora's": null, - "Eleanore": [["M"]], - "Eleanore's": null, - "Eleanor": [["M"]], - "Eleanor's": null, - "Eleazar": [["M"]], - "Eleazar's": null, - "electable": [["U"]], - "unelectable": null, - "elect": [["A", "S", "G", "D"]], - "reelect": null, - "reelects": null, - "reelecting": null, - "reelected": null, - "elects": null, - "electing": null, - "elected": [["U"]], - "unelected": null, - "electioneer": [["G", "S", "D"]], - "electioneering": null, - "electioneers": null, - "electioneered": null, - "election": [["S", "A", "M"]], - "elections": null, - "reelections": null, - "reelection": null, - "reelection's": null, - "election's": null, - "electiveness": [["M"]], - "electiveness's": null, - "elective": [["S", "P", "Y"]], - "electives": null, - "electively": null, - "electoral": [["Y"]], - "electorally": null, - "electorate": [["S", "M"]], - "electorates": null, - "electorate's": null, - "elector": [["S", "M"]], - "electors": null, - "elector's": null, - "Electra": [["M"]], - "Electra's": null, - "electress": [["M"]], - "electress's": null, - "electricalness": [["M"]], - "electricalness's": null, - "electrical": [["P", "Y"]], - "electrically": null, - "electrician": [["S", "M"]], - "electricians": null, - "electrician's": null, - "electricity": [["S", "M"]], - "electricities": null, - "electricity's": null, - "electric": [["S"]], - "electrics": null, - "electrification": [["M"]], - "electrification's": null, - "electrifier": [["M"]], - "electrifier's": null, - "electrify": [["Z", "X", "G", "N", "D", "R", "S"]], - "electrifiers": null, - "electrifications": null, - "electrifying": null, - "electrified": null, - "electrifies": null, - "electrocardiogram": [["M", "S"]], - "electrocardiogram's": null, - "electrocardiograms": null, - "electrocardiograph": [["M"]], - "electrocardiograph's": null, - "electrocardiographs": null, - "electrocardiography": [["M", "S"]], - "electrocardiography's": null, - "electrocardiographies": null, - "electrochemical": [["Y"]], - "electrochemically": null, - "electrocute": [["G", "N", "X", "S", "D"]], - "electrocuting": null, - "electrocution": [["M"]], - "electrocutions": null, - "electrocutes": null, - "electrocuted": null, - "electrocution's": null, - "electrode": [["S", "M"]], - "electrodes": null, - "electrode's": null, - "electrodynamics": [["M"]], - "electrodynamics's": null, - "electrodynamic": [["Y", "S"]], - "electrodynamicly": null, - "electroencephalogram": [["S", "M"]], - "electroencephalograms": null, - "electroencephalogram's": null, - "electroencephalographic": null, - "electroencephalograph": [["M"]], - "electroencephalograph's": null, - "electroencephalographs": null, - "electroencephalography": [["M", "S"]], - "electroencephalography's": null, - "electroencephalographies": null, - "electrologist": [["M", "S"]], - "electrologist's": null, - "electrologists": null, - "electroluminescent": null, - "electrolysis": [["M"]], - "electrolysis's": null, - "electrolyte": [["S", "M"]], - "electrolytes": null, - "electrolyte's": null, - "electrolytic": null, - "electrolytically": null, - "electrolyze": [["S", "D", "G"]], - "electrolyzes": null, - "electrolyzed": null, - "electrolyzing": null, - "electro": [["M"]], - "electro's": null, - "electromagnetic": null, - "electromagnetically": null, - "electromagnetism": [["S", "M"]], - "electromagnetisms": null, - "electromagnetism's": null, - "electromagnet": [["S", "M"]], - "electromagnets": null, - "electromagnet's": null, - "electromechanical": null, - "electromechanics": null, - "electromotive": null, - "electromyograph": null, - "electromyographic": null, - "electromyographically": null, - "electromyography": [["M"]], - "electromyography's": null, - "electronegative": null, - "electronically": null, - "electronic": [["S"]], - "electronics": [["M"]], - "electronics's": null, - "electron": [["M", "S"]], - "electron's": null, - "electrons": null, - "electrophoresis": [["M"]], - "electrophoresis's": null, - "electrophorus": [["M"]], - "electrophorus's": null, - "electroplate": [["D", "S", "G"]], - "electroplated": null, - "electroplates": null, - "electroplating": null, - "electroscope": [["M", "S"]], - "electroscope's": null, - "electroscopes": null, - "electroscopic": null, - "electroshock": [["G", "D", "M", "S"]], - "electroshocking": null, - "electroshocked": null, - "electroshock's": null, - "electroshocks": null, - "electrostatic": [["S"]], - "electrostatics": [["M"]], - "electrostatics's": null, - "electrotherapist": [["M"]], - "electrotherapist's": null, - "electrotype": [["G", "S", "D", "Z", "M"]], - "electrotyping": null, - "electrotypes": null, - "electrotyped": null, - "electrotypers": null, - "electrotype's": null, - "electroweak": null, - "eleemosynary": null, - "Eleen": [["M"]], - "Eleen's": null, - "elegance": [["I", "S", "M"]], - "inelegance": null, - "inelegances": null, - "inelegance's": null, - "elegances": null, - "elegance's": null, - "elegant": [["Y", "I"]], - "elegantly": null, - "inelegantly": null, - "inelegant": null, - "elegiacal": null, - "elegiac": [["S"]], - "elegiacs": null, - "elegy": [["S", "M"]], - "elegies": null, - "elegy's": null, - "elem": null, - "elemental": [["Y", "S"]], - "elementally": null, - "elementals": null, - "elementarily": null, - "elementariness": [["M"]], - "elementariness's": null, - "elementary": [["P"]], - "element": [["M", "S"]], - "element's": null, - "elements": null, - "Elena": [["M"]], - "Elena's": null, - "Elene": [["M"]], - "Elene's": null, - "Eleni": [["M"]], - "Eleni's": null, - "Elenore": [["M"]], - "Elenore's": null, - "Eleonora": [["M"]], - "Eleonora's": null, - "Eleonore": [["M"]], - "Eleonore's": null, - "elephantiases": null, - "elephantiasis": [["M"]], - "elephantiasis's": null, - "elephantine": null, - "elephant": [["S", "M"]], - "elephants": null, - "elephant's": null, - "elevated": [["S"]], - "elevateds": null, - "elevate": [["X", "D", "S", "N", "G"]], - "elevations": null, - "elevates": null, - "elevation": [["M"]], - "elevating": null, - "elevation's": null, - "elevator": [["S", "M"]], - "elevators": null, - "elevator's": null, - "eleven": [["H", "M"]], - "eleventh": null, - "eleven's": null, - "elevens": [["S"]], - "elevenses": null, - "elevenths": null, - "elev": [["N", "X"]], - "Elfie": [["M"]], - "Elfie's": null, - "elfin": [["S"]], - "elfins": null, - "elfish": null, - "elf": [["M"]], - "elf's": null, - "Elfreda": [["M"]], - "Elfreda's": null, - "Elfrida": [["M"]], - "Elfrida's": null, - "Elfrieda": [["M"]], - "Elfrieda's": null, - "Elga": [["M"]], - "Elga's": null, - "Elgar": [["M"]], - "Elgar's": null, - "Elianora": [["M"]], - "Elianora's": null, - "Elianore": [["M"]], - "Elianore's": null, - "Elia": [["S", "M"]], - "Elias": null, - "Elia's": null, - "Elicia": [["M"]], - "Elicia's": null, - "elicitation": [["M", "S"]], - "elicitation's": null, - "elicitations": null, - "elicit": [["G", "S", "D"]], - "eliciting": null, - "elicits": null, - "elicited": null, - "elide": [["G", "S", "D"]], - "eliding": null, - "elides": null, - "elided": null, - "Elie": [["M"]], - "Elie's": null, - "eligibility": [["I", "S", "M"]], - "ineligibility": null, - "ineligibilities": null, - "ineligibility's": null, - "eligibilities": null, - "eligibility's": null, - "eligible": [["S", "I"]], - "eligibles": null, - "ineligibles": null, - "ineligible": null, - "Elihu": [["M"]], - "Elihu's": null, - "Elijah": [["M"]], - "Elijah's": null, - "Eli": [["M"]], - "Eli's": null, - "eliminate": [["X", "S", "D", "Y", "V", "G", "N"]], - "eliminations": null, - "eliminates": null, - "eliminated": null, - "eliminately": null, - "eliminative": null, - "eliminating": null, - "elimination": [["M"]], - "elimination's": null, - "eliminator": [["S", "M"]], - "eliminators": null, - "eliminator's": null, - "Elinore": [["M"]], - "Elinore's": null, - "Elinor": [["M"]], - "Elinor's": null, - "Eliot": [["M"]], - "Eliot's": null, - "Elisabeth": [["M"]], - "Elisabeth's": null, - "Elisabet": [["M"]], - "Elisabet's": null, - "Elisabetta": [["M"]], - "Elisabetta's": null, - "Elisa": [["M"]], - "Elisa's": null, - "Elise": [["M"]], - "Elise's": null, - "Eliseo": [["M"]], - "Eliseo's": null, - "Elisha": [["M"]], - "Elisha's": null, - "elision": [["S", "M"]], - "elisions": null, - "elision's": null, - "Elissa": [["M"]], - "Elissa's": null, - "Elita": [["M"]], - "Elita's": null, - "elite": [["M", "P", "S"]], - "elite's": null, - "eliteness": null, - "elites": null, - "elitism": [["S", "M"]], - "elitisms": null, - "elitism's": null, - "elitist": [["S", "M"]], - "elitists": null, - "elitist's": null, - "elixir": [["M", "S"]], - "elixir's": null, - "elixirs": null, - "Elizabethan": [["S"]], - "Elizabethans": null, - "Elizabeth": [["M"]], - "Elizabeth's": null, - "Elizabet": [["M"]], - "Elizabet's": null, - "Eliza": [["M"]], - "Eliza's": null, - "Elka": [["M"]], - "Elka's": null, - "Elke": [["M"]], - "Elke's": null, - "Elkhart": [["M"]], - "Elkhart's": null, - "elk": [["M", "S"]], - "elk's": null, - "elks": null, - "Elladine": [["M"]], - "Elladine's": null, - "Ella": [["M"]], - "Ella's": null, - "Ellary": [["M"]], - "Ellary's": null, - "Elle": [["M"]], - "Elle's": null, - "Ellene": [["M"]], - "Ellene's": null, - "Ellen": [["M"]], - "Ellen's": null, - "Ellerey": [["M"]], - "Ellerey's": null, - "Ellery": [["M"]], - "Ellery's": null, - "Ellesmere": [["M"]], - "Ellesmere's": null, - "Ellette": [["M"]], - "Ellette's": null, - "Ellie": [["M"]], - "Ellie's": null, - "Ellington": [["M"]], - "Ellington's": null, - "Elliot": [["M"]], - "Elliot's": null, - "Elliott": [["M"]], - "Elliott's": null, - "ellipse": [["M", "S"]], - "ellipse's": null, - "ellipses": null, - "ellipsis": [["M"]], - "ellipsis's": null, - "ellipsoidal": null, - "ellipsoid": [["M", "S"]], - "ellipsoid's": null, - "ellipsoids": null, - "ellipsometer": [["M", "S"]], - "ellipsometer's": null, - "ellipsometers": null, - "ellipsometry": null, - "elliptic": null, - "elliptical": [["Y", "S"]], - "elliptically": null, - "ellipticals": null, - "ellipticity": [["M"]], - "ellipticity's": null, - "Elli": [["S", "M"]], - "Ellis": null, - "Elli's": null, - "Ellison": [["M"]], - "Ellison's": null, - "Ellissa": [["M"]], - "Ellissa's": null, - "ell": [["M", "S"]], - "ell's": null, - "ells": null, - "Ellswerth": [["M"]], - "Ellswerth's": null, - "Ellsworth": [["M"]], - "Ellsworth's": null, - "Ellwood": [["M"]], - "Ellwood's": null, - "Elly": [["M"]], - "Elly's": null, - "Ellyn": [["M"]], - "Ellyn's": null, - "Ellynn": [["M"]], - "Ellynn's": null, - "Elma": [["M"]], - "Elma's": null, - "Elmer": [["M"]], - "Elmer's": null, - "Elmhurst": [["M"]], - "Elmhurst's": null, - "Elmira": [["M"]], - "Elmira's": null, - "elm": [["M", "R", "S"]], - "elm's": null, - "elmer": null, - "elms": null, - "Elmo": [["M"]], - "Elmo's": null, - "Elmore": [["M"]], - "Elmore's": null, - "Elmsford": [["M"]], - "Elmsford's": null, - "El": [["M", "Y"]], - "El's": null, - "Elna": [["M", "H"]], - "Elna's": null, - "Elnath": [["M"]], - "Elnar": [["M"]], - "Elnar's": null, - "Elnath's": null, - "Elnora": [["M"]], - "Elnora's": null, - "Elnore": [["M"]], - "Elnore's": null, - "elocutionary": null, - "elocutionist": [["M", "S"]], - "elocutionist's": null, - "elocutionists": null, - "elocution": [["S", "M"]], - "elocutions": null, - "elocution's": null, - "elodea": [["S"]], - "elodeas": null, - "Elohim": [["M"]], - "Elohim's": null, - "Eloisa": [["M"]], - "Eloisa's": null, - "Eloise": [["M"]], - "Eloise's": null, - "elongate": [["N", "G", "X", "S", "D"]], - "elongation": [["M"]], - "elongating": null, - "elongations": null, - "elongates": null, - "elongated": null, - "elongation's": null, - "Elonore": [["M"]], - "Elonore's": null, - "elopement": [["M", "S"]], - "elopement's": null, - "elopements": null, - "eloper": [["M"]], - "eloper's": null, - "elope": [["S", "R", "D", "L", "G"]], - "elopes": null, - "eloped": null, - "eloping": null, - "eloquence": [["S", "M"]], - "eloquences": null, - "eloquence's": null, - "eloquent": [["I", "Y"]], - "ineloquent": null, - "ineloquently": null, - "eloquently": null, - "Elora": [["M"]], - "Elora's": null, - "Eloy": [["M"]], - "Eloy's": null, - "Elroy": [["M"]], - "Elroy's": null, - "Elsa": [["M"]], - "Elsa's": null, - "Elsbeth": [["M"]], - "Elsbeth's": null, - "else": [["M"]], - "else's": null, - "Else": [["M"]], - "Else's": null, - "Elset": [["M"]], - "Elset's": null, - "elsewhere": null, - "Elsey": [["M"]], - "Elsey's": null, - "Elsie": [["M"]], - "Elsie's": null, - "Elsi": [["M"]], - "Elsi's": null, - "Elsinore": [["M"]], - "Elsinore's": null, - "Elspeth": [["M"]], - "Elspeth's": null, - "Elston": [["M"]], - "Elston's": null, - "Elsworth": [["M"]], - "Elsworth's": null, - "Elsy": [["M"]], - "Elsy's": null, - "Eltanin": [["M"]], - "Eltanin's": null, - "Elton": [["M"]], - "Elton's": null, - "eluate": [["S", "M"]], - "eluates": null, - "eluate's": null, - "elucidate": [["S", "D", "V", "N", "G", "X"]], - "elucidates": null, - "elucidated": null, - "elucidative": null, - "elucidation": [["M"]], - "elucidating": null, - "elucidations": null, - "elucidation's": null, - "elude": [["G", "S", "D"]], - "eluding": null, - "eludes": null, - "eluded": null, - "elusiveness": [["S", "M"]], - "elusivenesses": null, - "elusiveness's": null, - "elusive": [["Y", "P"]], - "elusively": null, - "elute": [["D", "G", "N"]], - "eluted": null, - "eluting": null, - "elution": [["M"]], - "elution's": null, - "Elva": [["M"]], - "Elva's": null, - "elven": null, - "Elvera": [["M"]], - "Elvera's": null, - "elver": [["S", "M"]], - "elvers": null, - "elver's": null, - "elves": [["M"]], - "elves's": null, - "Elvia": [["M"]], - "Elvia's": null, - "Elvina": [["M"]], - "Elvina's": null, - "Elvin": [["M"]], - "Elvin's": null, - "Elvira": [["M"]], - "Elvira's": null, - "elvish": null, - "Elvis": [["M"]], - "Elvis's": null, - "Elvyn": [["M"]], - "Elvyn's": null, - "Elwin": [["M"]], - "Elwin's": null, - "Elwira": [["M"]], - "Elwira's": null, - "Elwood": [["M"]], - "Elwood's": null, - "Elwyn": [["M"]], - "Elwyn's": null, - "Ely": [["M"]], - "Ely's": null, - "Elyn": [["M"]], - "Elyn's": null, - "Elys�e": [["M"]], - "Elys�e's": null, - "Elysees": null, - "Elyse": [["M"]], - "Elyse's": null, - "Elysha": [["M"]], - "Elysha's": null, - "Elysia": [["M"]], - "Elysia's": null, - "elysian": null, - "Elysian": null, - "Elysium": [["S", "M"]], - "Elysiums": null, - "Elysium's": null, - "Elyssa": [["M"]], - "Elyssa's": null, - "EM": null, - "emaciate": [["N", "G", "X", "D", "S"]], - "emaciation": [["M"]], - "emaciating": null, - "emaciations": null, - "emaciated": null, - "emaciates": null, - "emaciation's": null, - "emacs": [["M"]], - "emacs's": null, - "Emacs": [["M"]], - "Emacs's": null, - "email": [["S", "M", "D", "G"]], - "emails": null, - "email's": null, - "emailed": null, - "emailing": null, - "Emalee": [["M"]], - "Emalee's": null, - "Emalia": [["M"]], - "Emalia's": null, - "Ema": [["M"]], - "Ema's": null, - "emanate": [["X", "S", "D", "V", "N", "G"]], - "emanations": null, - "emanates": null, - "emanated": null, - "emanative": null, - "emanation": [["M"]], - "emanating": null, - "emanation's": null, - "emancipate": [["D", "S", "X", "G", "N"]], - "emancipated": null, - "emancipates": null, - "emancipations": null, - "emancipating": null, - "emancipation": [["M"]], - "emancipation's": null, - "emancipator": [["M", "S"]], - "emancipator's": null, - "emancipators": null, - "Emanuele": [["M"]], - "Emanuele's": null, - "Emanuel": [["M"]], - "Emanuel's": null, - "emasculate": [["G", "N", "D", "S", "X"]], - "emasculating": null, - "emasculation": [["M"]], - "emasculated": null, - "emasculates": null, - "emasculations": null, - "emasculation's": null, - "embalmer": [["M"]], - "embalmer's": null, - "embalm": [["Z", "G", "R", "D", "S"]], - "embalmers": null, - "embalming": null, - "embalmed": null, - "embalms": null, - "embank": [["G", "L", "D", "S"]], - "embanking": null, - "embankment": [["M", "S"]], - "embanked": null, - "embanks": null, - "embankment's": null, - "embankments": null, - "embarcadero": null, - "embargoes": null, - "embargo": [["G", "M", "D"]], - "embargoing": null, - "embargo's": null, - "embargoed": null, - "embark": [["A", "D", "E", "S", "G"]], - "reembark": null, - "reembarked": null, - "reembarks": null, - "reembarking": null, - "embarked": null, - "disembarked": null, - "disembark": null, - "disembarks": null, - "disembarking": null, - "embarks": null, - "embarking": null, - "embarkation": [["E", "M", "S"]], - "disembarkation": null, - "disembarkation's": null, - "disembarkations": null, - "embarkation's": null, - "embarkations": null, - "embarrassedly": null, - "embarrassed": [["U"]], - "unembarrassed": null, - "embarrassing": [["Y"]], - "embarrassingly": null, - "embarrassment": [["M", "S"]], - "embarrassment's": null, - "embarrassments": null, - "embarrass": [["S", "D", "L", "G"]], - "embarrasses": null, - "embassy": [["M", "S"]], - "embassy's": null, - "embassies": null, - "embattle": [["D", "S", "G"]], - "embattled": null, - "embattles": null, - "embattling": null, - "embeddable": null, - "embedded": null, - "embedder": null, - "embedding": [["M", "S"]], - "embedding's": null, - "embeddings": null, - "embed": [["S"]], - "embeds": null, - "embellished": [["U"]], - "unembellished": null, - "embellisher": [["M"]], - "embellisher's": null, - "embellish": [["L", "G", "R", "S", "D"]], - "embellishment": [["M", "S"]], - "embellishing": null, - "embellishes": null, - "embellishment's": null, - "embellishments": null, - "ember": [["M", "S"]], - "ember's": null, - "embers": null, - "embezzle": [["L", "Z", "G", "D", "R", "S"]], - "embezzlement": [["M", "S"]], - "embezzlers": null, - "embezzling": null, - "embezzled": null, - "embezzler": [["M"]], - "embezzles": null, - "embezzlement's": null, - "embezzlements": null, - "embezzler's": null, - "embitter": [["L", "G", "D", "S"]], - "embitterment": [["S", "M"]], - "embittering": null, - "embittered": null, - "embitters": null, - "embitterments": null, - "embitterment's": null, - "emblazon": [["D", "L", "G", "S"]], - "emblazoned": null, - "emblazonment": [["S", "M"]], - "emblazoning": null, - "emblazons": null, - "emblazonments": null, - "emblazonment's": null, - "emblematic": null, - "emblem": [["G", "S", "M", "D"]], - "embleming": null, - "emblems": null, - "emblem's": null, - "emblemed": null, - "embodier": [["M"]], - "embodier's": null, - "embodiment": [["E", "S", "M"]], - "disembodiment": null, - "disembodiments": null, - "disembodiment's": null, - "embodiments": null, - "embodiment's": null, - "embody": [["E", "S", "D", "G", "A"]], - "disembody": null, - "disembodies": null, - "disembodied": null, - "disembodying": null, - "embodies": null, - "reembodies": null, - "embodied": null, - "reembodied": null, - "embodying": null, - "reembodying": null, - "reembody": null, - "embolden": [["D", "S", "G"]], - "emboldened": null, - "emboldens": null, - "emboldening": null, - "embolism": [["S", "M"]], - "embolisms": null, - "embolism's": null, - "embosom": null, - "embosser": [["M"]], - "embosser's": null, - "emboss": [["Z", "G", "R", "S", "D"]], - "embossers": null, - "embossing": null, - "embosses": null, - "embossed": null, - "embouchure": [["S", "M"]], - "embouchures": null, - "embouchure's": null, - "embower": [["G", "S", "D"]], - "embowering": null, - "embowers": null, - "embowered": null, - "embraceable": null, - "embracer": [["M"]], - "embracer's": null, - "embrace": [["R", "S", "D", "V", "G"]], - "embraces": null, - "embraced": null, - "embracive": null, - "embracing": [["Y"]], - "embracingly": null, - "embrasure": [["M", "S"]], - "embrasure's": null, - "embrasures": null, - "embrittle": null, - "embrocation": [["S", "M"]], - "embrocations": null, - "embrocation's": null, - "embroiderer": [["M"]], - "embroiderer's": null, - "embroider": [["S", "G", "Z", "D", "R"]], - "embroiders": null, - "embroidering": null, - "embroiderers": null, - "embroidered": null, - "embroidery": [["M", "S"]], - "embroidery's": null, - "embroideries": null, - "embroilment": [["M", "S"]], - "embroilment's": null, - "embroilments": null, - "embroil": [["S", "L", "D", "G"]], - "embroils": null, - "embroiled": null, - "embroiling": null, - "embryologist": [["S", "M"]], - "embryologists": null, - "embryologist's": null, - "embryology": [["M", "S"]], - "embryology's": null, - "embryologies": null, - "embryonic": null, - "embryo": [["S", "M"]], - "embryos": null, - "embryo's": null, - "emceeing": null, - "emcee": [["S", "D", "M"]], - "emcees": null, - "emceed": null, - "emcee's": null, - "Emelda": [["M"]], - "Emelda's": null, - "Emelen": [["M"]], - "Emelen's": null, - "Emelia": [["M"]], - "Emelia's": null, - "Emelina": [["M"]], - "Emelina's": null, - "Emeline": [["M"]], - "Emeline's": null, - "Emelita": [["M"]], - "Emelita's": null, - "Emelyne": [["M"]], - "Emelyne's": null, - "emendation": [["M", "S"]], - "emendation's": null, - "emendations": null, - "emend": [["S", "R", "D", "G", "B"]], - "emends": null, - "emender": null, - "emended": null, - "emending": null, - "emendable": null, - "emerald": [["S", "M"]], - "emeralds": null, - "emerald's": null, - "Emera": [["M"]], - "Emera's": null, - "emerge": [["A", "D", "S", "G"]], - "reemerge": null, - "reemerged": null, - "reemerges": null, - "reemerging": null, - "emerged": null, - "emerges": null, - "emerging": null, - "emergence": [["M", "A", "S"]], - "emergence's": null, - "reemergence's": null, - "reemergence": null, - "reemergences": null, - "emergences": null, - "emergency": [["S", "M"]], - "emergencies": null, - "emergency's": null, - "emergent": [["S"]], - "emergents": null, - "emerita": null, - "emeritae": null, - "emeriti": null, - "emeritus": null, - "Emerson": [["M"]], - "Emerson's": null, - "Emery": [["M"]], - "Emery's": null, - "emery": [["M", "G", "S", "D"]], - "emery's": null, - "emerying": null, - "emeries": null, - "emeried": null, - "emetic": [["S"]], - "emetics": null, - "emf": [["S"]], - "emfs": null, - "emigrant": [["M", "S"]], - "emigrant's": null, - "emigrants": null, - "emigrate": [["S", "D", "X", "N", "G"]], - "emigrates": null, - "emigrated": null, - "emigrations": null, - "emigration": [["M"]], - "emigrating": null, - "emigration's": null, - "�migr�": [["S"]], - "�migr�s": null, - "Emilee": [["M"]], - "Emilee's": null, - "Emile": [["M"]], - "Emile's": null, - "Emilia": [["M"]], - "Emilia's": null, - "Emilie": [["M"]], - "Emilie's": null, - "Emili": [["M"]], - "Emili's": null, - "Emiline": [["M"]], - "Emiline's": null, - "Emilio": [["M"]], - "Emilio's": null, - "Emil": [["M"]], - "Emil's": null, - "Emily": [["M"]], - "Emily's": null, - "eminence": [["M", "S"]], - "eminence's": null, - "eminences": null, - "Eminence": [["M", "S"]], - "Eminence's": null, - "Eminences": null, - "eminent": [["Y"]], - "eminently": null, - "emirate": [["S", "M"]], - "emirates": null, - "emirate's": null, - "emir": [["S", "M"]], - "emirs": null, - "emir's": null, - "emissary": [["S", "M"]], - "emissaries": null, - "emissary's": null, - "emission": [["A", "M", "S"]], - "reemission": null, - "reemission's": null, - "reemissions": null, - "emission's": null, - "emissions": null, - "emissivity": [["M", "S"]], - "emissivity's": null, - "emissivities": null, - "emit": [["S"]], - "emits": null, - "emittance": [["M"]], - "emittance's": null, - "emitted": null, - "emitter": [["S", "M"]], - "emitters": null, - "emitter's": null, - "emitting": null, - "Emlen": [["M"]], - "Emlen's": null, - "Emlyn": [["M"]], - "Emlyn's": null, - "Emlynne": [["M"]], - "Emlynne's": null, - "Emlynn": [["M"]], - "Emlynn's": null, - "em": [["M"]], - "em's": null, - "Em": [["M"]], - "Em's": null, - "Emmalee": [["M"]], - "Emmalee's": null, - "Emmaline": [["M"]], - "Emmaline's": null, - "Emmalyn": [["M"]], - "Emmalyn's": null, - "Emmalynne": [["M"]], - "Emmalynne's": null, - "Emmalynn": [["M"]], - "Emmalynn's": null, - "Emma": [["M"]], - "Emma's": null, - "Emmanuel": [["M"]], - "Emmanuel's": null, - "Emmeline": [["M"]], - "Emmeline's": null, - "Emmerich": [["M"]], - "Emmerich's": null, - "Emmery": [["M"]], - "Emmery's": null, - "Emmet": [["M"]], - "Emmet's": null, - "Emmett": [["M"]], - "Emmett's": null, - "Emmey": [["M"]], - "Emmey's": null, - "Emmie": [["M"]], - "Emmie's": null, - "Emmi": [["M"]], - "Emmi's": null, - "Emmit": [["M"]], - "Emmit's": null, - "Emmott": [["M"]], - "Emmott's": null, - "Emmye": [["M"]], - "Emmye's": null, - "Emmy": [["S", "M"]], - "Emmies": null, - "Emmy's": null, - "Emogene": [["M"]], - "Emogene's": null, - "emollient": [["S"]], - "emollients": null, - "emolument": [["S", "M"]], - "emoluments": null, - "emolument's": null, - "Emory": [["M"]], - "Emory's": null, - "emote": [["S", "D", "V", "G", "N", "X"]], - "emotes": null, - "emoted": null, - "emotive": [["Y"]], - "emoting": null, - "emotion": [["M"]], - "emotions": null, - "emotionalism": [["M", "S"]], - "emotionalism's": null, - "emotionalisms": null, - "emotionality": [["M"]], - "emotionality's": null, - "emotionalize": [["G", "D", "S"]], - "emotionalizing": null, - "emotionalized": null, - "emotionalizes": null, - "emotional": [["U", "Y"]], - "unemotional": null, - "unemotionally": null, - "emotionally": null, - "emotionless": null, - "emotion's": null, - "emotively": null, - "empaneled": null, - "empaneling": null, - "empath": null, - "empathetic": null, - "empathetical": [["Y"]], - "empathetically": null, - "empathic": null, - "empathize": [["S", "D", "G"]], - "empathizes": null, - "empathized": null, - "empathizing": null, - "empathy": [["M", "S"]], - "empathy's": null, - "empathies": null, - "emperor": [["M", "S"]], - "emperor's": null, - "emperors": null, - "emphases": null, - "emphasis": [["M"]], - "emphasis's": null, - "emphasize": [["Z", "G", "C", "R", "S", "D", "A"]], - "emphasizers": null, - "deemphasizers": null, - "reemphasizers": null, - "emphasizing": null, - "deemphasizing": null, - "reemphasizing": null, - "deemphasize": null, - "deemphasizer": null, - "deemphasizes": null, - "deemphasized": null, - "emphasizer": null, - "reemphasizer": null, - "emphasizes": null, - "reemphasizes": null, - "emphasized": null, - "reemphasized": null, - "reemphasize": null, - "emphatically": [["U"]], - "unemphatically": null, - "emphatic": [["U"]], - "unemphatic": null, - "emphysema": [["S", "M"]], - "emphysemas": null, - "emphysema's": null, - "emphysematous": null, - "empire": [["M", "S"]], - "empire's": null, - "empires": null, - "empirical": [["Y"]], - "empirically": null, - "empiricism": [["S", "M"]], - "empiricisms": null, - "empiricism's": null, - "empiricist": [["S", "M"]], - "empiricists": null, - "empiricist's": null, - "empiric": [["S", "M"]], - "empirics": null, - "empiric's": null, - "emplace": [["L"]], - "emplacement": [["M", "S"]], - "emplacement's": null, - "emplacements": null, - "employability": [["U", "M"]], - "unemployability": null, - "unemployability's": null, - "employability's": null, - "employable": [["U", "S"]], - "unemployable": null, - "unemployables": null, - "employables": null, - "employed": [["U"]], - "unemployed": [["S"]], - "employee": [["S", "M"]], - "employees": null, - "employee's": null, - "employer": [["S", "M"]], - "employers": null, - "employer's": null, - "employ": [["L", "A", "G", "D", "S"]], - "employment": [["U", "M", "A", "S"]], - "reemployment": null, - "reemploy": null, - "reemploying": null, - "reemployed": null, - "reemploys": null, - "employing": null, - "employs": null, - "unemployment": null, - "unemployment's": null, - "unemployments": null, - "employment's": null, - "reemployment's": null, - "reemployments": null, - "employments": null, - "emporium": [["M", "S"]], - "emporium's": null, - "emporiums": null, - "empower": [["G", "L", "S", "D"]], - "empowering": null, - "empowerment": [["M", "S"]], - "empowers": null, - "empowered": null, - "empowerment's": null, - "empowerments": null, - "empress": [["M", "S"]], - "empress's": null, - "empresses": null, - "emptier": [["M"]], - "emptier's": null, - "emptily": null, - "emptiness": [["S", "M"]], - "emptinesses": null, - "emptiness's": null, - "empty": [["G", "R", "S", "D", "P", "T"]], - "emptying": null, - "empties": null, - "emptied": null, - "emptiest": null, - "empyrean": [["S", "M"]], - "empyreans": null, - "empyrean's": null, - "ems": [["C"]], - "EMT": null, - "emulate": [["S", "D", "V", "G", "N", "X"]], - "emulates": null, - "emulated": null, - "emulative": [["Y"]], - "emulating": null, - "emulation": [["M"]], - "emulations": null, - "emulation's": null, - "emulatively": null, - "emulator": [["M", "S"]], - "emulator's": null, - "emulators": null, - "emulsification": [["M"]], - "emulsification's": null, - "emulsifier": [["M"]], - "emulsifier's": null, - "emulsify": [["N", "Z", "S", "R", "D", "X", "G"]], - "emulsifiers": null, - "emulsifies": null, - "emulsified": null, - "emulsifications": null, - "emulsifying": null, - "emulsion": [["S", "M"]], - "emulsions": null, - "emulsion's": null, - "emu": [["S", "M"]], - "emus": null, - "emu's": null, - "Emylee": [["M"]], - "Emylee's": null, - "Emyle": [["M"]], - "Emyle's": null, - "enabler": [["M"]], - "enabler's": null, - "enable": [["S", "R", "D", "Z", "G"]], - "enables": null, - "enabled": null, - "enablers": null, - "enabling": null, - "enactment": [["A", "S", "M"]], - "reenactment": null, - "reenactments": null, - "reenactment's": null, - "enactments": null, - "enactment's": null, - "enact": [["S", "G", "A", "L", "D"]], - "enacts": null, - "reenacts": null, - "enacting": null, - "reenacting": null, - "reenact": null, - "reenacted": null, - "enacted": null, - "enameler": [["M"]], - "enameler's": null, - "enamelware": [["S", "M"]], - "enamelwares": null, - "enamelware's": null, - "enamel": [["Z", "G", "J", "M", "D", "R", "S"]], - "enamelers": null, - "enameling": null, - "enamelings": null, - "enamel's": null, - "enameled": null, - "enamels": null, - "enamor": [["D", "S", "G"]], - "enamored": null, - "enamors": null, - "enamoring": null, - "en": [["B", "M"]], - "en's": null, - "enc": null, - "encamp": [["L", "S", "D", "G"]], - "encampment": [["M", "S"]], - "encamps": null, - "encamped": null, - "encamping": null, - "encampment's": null, - "encampments": null, - "encapsulate": [["S", "D", "G", "N", "X"]], - "encapsulates": null, - "encapsulated": null, - "encapsulating": null, - "encapsulation": [["M"]], - "encapsulations": null, - "encapsulation's": null, - "encase": [["G", "S", "D", "L"]], - "encasing": null, - "encases": null, - "encased": null, - "encasement": [["S", "M"]], - "encasements": null, - "encasement's": null, - "encephalitic": null, - "encephalitides": null, - "encephalitis": [["M"]], - "encephalitis's": null, - "encephalographic": null, - "encephalopathy": [["M"]], - "encephalopathy's": null, - "enchain": [["S", "G", "D"]], - "enchains": null, - "enchaining": null, - "enchained": null, - "enchanter": [["M", "S"]], - "enchanter's": null, - "enchanters": null, - "enchant": [["E", "S", "L", "D", "G"]], - "disenchant": null, - "disenchants": null, - "disenchantment": null, - "disenchanted": null, - "disenchanting": null, - "enchants": null, - "enchantment": [["M", "S", "E"]], - "enchanted": null, - "enchanting": [["Y"]], - "enchantingly": null, - "enchantment's": null, - "disenchantment's": null, - "enchantments": null, - "disenchantments": null, - "enchantress": [["M", "S"]], - "enchantress's": null, - "enchantresses": null, - "enchilada": [["S", "M"]], - "enchiladas": null, - "enchilada's": null, - "encipherer": [["M"]], - "encipherer's": null, - "encipher": [["S", "R", "D", "G"]], - "enciphers": null, - "enciphered": null, - "enciphering": null, - "encircle": [["G", "L", "D", "S"]], - "encircling": null, - "encirclement": [["S", "M"]], - "encircled": null, - "encircles": null, - "encirclements": null, - "encirclement's": null, - "encl": null, - "enclave": [["M", "G", "D", "S"]], - "enclave's": null, - "enclaving": null, - "enclaved": null, - "enclaves": null, - "enclosed": [["U"]], - "unenclosed": null, - "enclose": [["G", "D", "S"]], - "enclosing": null, - "encloses": null, - "enclosure": [["S", "M"]], - "enclosures": null, - "enclosure's": null, - "encoder": [["M"]], - "encoder's": null, - "encode": [["Z", "J", "G", "S", "R", "D"]], - "encoders": null, - "encodings": null, - "encoding": null, - "encodes": null, - "encoded": null, - "encomium": [["S", "M"]], - "encomiums": null, - "encomium's": null, - "encompass": [["G", "D", "S"]], - "encompassing": null, - "encompassed": null, - "encompasses": null, - "encore": [["G", "S", "D"]], - "encoring": null, - "encores": null, - "encored": null, - "encounter": [["G", "S", "D"]], - "encountering": null, - "encounters": null, - "encountered": null, - "encouragement": [["S", "M"]], - "encouragements": null, - "encouragement's": null, - "encourager": [["M"]], - "encourager's": null, - "encourage": [["S", "R", "D", "G", "L"]], - "encourages": null, - "encouraged": null, - "encouraging": [["Y"]], - "encouragingly": null, - "encroacher": [["M"]], - "encroacher's": null, - "encroach": [["L", "G", "R", "S", "D"]], - "encroachment": [["M", "S"]], - "encroaching": null, - "encroaches": null, - "encroached": null, - "encroachment's": null, - "encroachments": null, - "encrustation": [["M", "S"]], - "encrustation's": null, - "encrustations": null, - "encrust": [["D", "S", "G"]], - "encrusted": null, - "encrusts": null, - "encrusting": null, - "encrypt": [["D", "G", "S"]], - "encrypted": [["U"]], - "encrypting": null, - "encrypts": null, - "unencrypted": null, - "encryption": [["S", "M"]], - "encryptions": null, - "encryption's": null, - "encumbered": [["U"]], - "unencumbered": null, - "encumber": [["S", "E", "D", "G"]], - "encumbers": null, - "disencumbers": null, - "disencumber": null, - "disencumbered": null, - "disencumbering": null, - "encumbering": null, - "encumbrancer": [["M"]], - "encumbrancer's": null, - "encumbrance": [["S", "R", "M"]], - "encumbrances": null, - "encumbrance's": null, - "ency": null, - "encyclical": [["S", "M"]], - "encyclicals": null, - "encyclical's": null, - "encyclopaedia's": null, - "encyclopedia": [["S", "M"]], - "encyclopedias": null, - "encyclopedia's": null, - "encyclopedic": null, - "encyst": [["G", "S", "L", "D"]], - "encysting": null, - "encysts": null, - "encystment": [["M", "S"]], - "encysted": null, - "encystment's": null, - "encystments": null, - "endanger": [["D", "G", "S", "L"]], - "endangered": null, - "endangering": null, - "endangers": null, - "endangerment": [["S", "M"]], - "endangerments": null, - "endangerment's": null, - "endear": [["G", "S", "L", "D"]], - "endearing": [["Y"]], - "endears": null, - "endearment": [["M", "S"]], - "endeared": null, - "endearingly": null, - "endearment's": null, - "endearments": null, - "endeavored": [["U"]], - "unendeavored": null, - "endeavorer": [["M"]], - "endeavorer's": null, - "endeavor": [["G", "Z", "S", "M", "R", "D"]], - "endeavoring": null, - "endeavorers": null, - "endeavors": null, - "endeavor's": null, - "endemically": null, - "endemicity": null, - "endemic": [["S"]], - "endemics": null, - "ender": [["M"]], - "ender's": null, - "endgame": [["M"]], - "endgame's": null, - "Endicott": [["M"]], - "Endicott's": null, - "ending": [["M"]], - "ending's": null, - "endive": [["S", "M"]], - "endives": null, - "endive's": null, - "endlessness": [["M", "S"]], - "endlessness's": null, - "endlessnesses": null, - "endless": [["P", "Y"]], - "endlessly": null, - "endmost": null, - "endnote": [["M", "S"]], - "endnote's": null, - "endnotes": null, - "endocrine": [["S"]], - "endocrines": null, - "endocrinologist": [["S", "M"]], - "endocrinologists": null, - "endocrinologist's": null, - "endocrinology": [["S", "M"]], - "endocrinologies": null, - "endocrinology's": null, - "endogamous": null, - "endogamy": [["M"]], - "endogamy's": null, - "endogenous": [["Y"]], - "endogenously": null, - "endomorphism": [["S", "M"]], - "endomorphisms": null, - "endomorphism's": null, - "endorse": [["D", "R", "S", "Z", "G", "L"]], - "endorsed": null, - "endorser": [["M"]], - "endorses": null, - "endorsers": null, - "endorsing": null, - "endorsement": [["M", "S"]], - "endorsement's": null, - "endorsements": null, - "endorser's": null, - "endoscope": [["M", "S"]], - "endoscope's": null, - "endoscopes": null, - "endoscopic": null, - "endoscopy": [["S", "M"]], - "endoscopies": null, - "endoscopy's": null, - "endosperm": [["M"]], - "endosperm's": null, - "endothelial": null, - "endothermic": null, - "endow": [["G", "S", "D", "L"]], - "endowing": null, - "endows": null, - "endowed": null, - "endowment": [["S", "M"]], - "endowments": null, - "endowment's": null, - "endpoint": [["M", "S"]], - "endpoint's": null, - "endpoints": null, - "endue": [["S", "D", "G"]], - "endues": null, - "endued": null, - "enduing": null, - "endungeoned": null, - "endurable": [["U"]], - "unendurable": [["P"]], - "endurably": [["U"]], - "unendurably": null, - "endurance": [["S", "M"]], - "endurances": null, - "endurance's": null, - "endure": [["B", "S", "D", "G"]], - "endures": null, - "endured": null, - "enduring": [["Y", "P"]], - "enduringness": [["M"]], - "enduringness's": null, - "enduringly": null, - "endways": null, - "Endymion": [["M"]], - "Endymion's": null, - "end": [["Z", "G", "V", "M", "D", "R", "S", "J"]], - "enders": null, - "end's": null, - "ended": null, - "ends": null, - "endings": null, - "ENE": null, - "enema": [["S", "M"]], - "enemas": null, - "enema's": null, - "enemy": [["S", "M"]], - "enemies": null, - "enemy's": null, - "energetically": null, - "energetic": [["S"]], - "energetics": [["M"]], - "energetics's": null, - "energized": [["U"]], - "unenergized": [["M", "S"]], - "energizer": [["M"]], - "energizer's": null, - "energize": [["Z", "G", "D", "R", "S"]], - "energizers": null, - "energizing": null, - "energizes": null, - "energy": [["M", "S"]], - "energy's": null, - "energies": null, - "enervate": [["X", "N", "G", "V", "D", "S"]], - "enervations": null, - "enervation": [["M"]], - "enervating": null, - "enervative": null, - "enervated": null, - "enervates": null, - "enervation's": null, - "enfeeble": [["G", "L", "D", "S"]], - "enfeebling": null, - "enfeeblement": [["S", "M"]], - "enfeebled": null, - "enfeebles": null, - "enfeeblements": null, - "enfeeblement's": null, - "enfilade": [["M", "G", "D", "S"]], - "enfilade's": null, - "enfilading": null, - "enfiladed": null, - "enfilades": null, - "enfold": [["S", "G", "D"]], - "enfolds": null, - "enfolding": null, - "enfolded": null, - "enforceability": [["M"]], - "enforceability's": null, - "enforceable": [["U"]], - "unenforceable": null, - "enforced": [["Y"]], - "enforcedly": null, - "enforce": [["L", "D", "R", "S", "Z", "G"]], - "enforcement": [["S", "M"]], - "enforcer": [["M"]], - "enforces": null, - "enforcers": null, - "enforcing": null, - "enforcements": null, - "enforcement's": null, - "enforcer's": null, - "enforcible": [["U"]], - "unenforcible": null, - "enfranchise": [["E", "L", "D", "R", "S", "G"]], - "disenfranchise": null, - "disenfranchisement": null, - "disenfranchised": null, - "disenfranchiser": null, - "disenfranchises": null, - "disenfranchising": null, - "enfranchisement": [["E", "M", "S"]], - "enfranchised": null, - "enfranchiser": [["M"]], - "enfranchises": null, - "enfranchising": null, - "disenfranchisement's": null, - "disenfranchisements": null, - "enfranchisement's": null, - "enfranchisements": null, - "enfranchiser's": null, - "engage": [["A", "D", "S", "G", "E"]], - "reengage": null, - "reengaged": null, - "reengages": null, - "reengaging": null, - "engaged": null, - "disengaged": null, - "engages": null, - "disengages": null, - "engaging": [["Y"]], - "disengaging": null, - "engagement": [["S", "E", "M"]], - "engagements": null, - "disengagements": null, - "disengagement's": null, - "engagement's": null, - "engagingly": null, - "Engelbert": [["M"]], - "Engelbert's": null, - "Engel": [["M", "S"]], - "Engel's": null, - "Engels": null, - "engender": [["D", "G", "S"]], - "engendered": null, - "engendering": null, - "engenders": null, - "engineer": [["G", "S", "M", "D", "J"]], - "engineering": [["M", "Y"]], - "engineers": null, - "engineer's": null, - "engineered": null, - "engineerings": null, - "engineering's": null, - "engineeringly": null, - "engine": [["M", "G", "S", "D"]], - "engine's": null, - "engining": null, - "engines": null, - "engined": null, - "England": [["M"]], - "England's": null, - "england": [["Z", "R"]], - "englanders": null, - "englander": null, - "Englebert": [["M"]], - "Englebert's": null, - "Englewood": [["M"]], - "Englewood's": null, - "English": [["G", "D", "R", "S", "M"]], - "Englishing": null, - "Englished": null, - "Englisher": null, - "Englishes": null, - "English's": null, - "Englishman": [["M"]], - "Englishman's": null, - "Englishmen": null, - "Englishwoman": [["M"]], - "Englishwoman's": null, - "Englishwomen": null, - "Eng": [["M"]], - "Eng's": null, - "engorge": [["L", "G", "D", "S"]], - "engorgement": [["M", "S"]], - "engorging": null, - "engorged": null, - "engorges": null, - "engorgement's": null, - "engorgements": null, - "Engracia": [["M"]], - "Engracia's": null, - "engram": [["M", "S"]], - "engram's": null, - "engrams": null, - "engraver": [["M"]], - "engraver's": null, - "engrave": [["Z", "G", "D", "R", "S", "J"]], - "engravers": null, - "engraving": [["M"]], - "engraved": null, - "engraves": null, - "engravings": null, - "engraving's": null, - "engrossed": [["Y"]], - "engrossedly": null, - "engrosser": [["M"]], - "engrosser's": null, - "engross": [["G", "L", "D", "R", "S"]], - "engrossing": [["Y"]], - "engrossment": [["S", "M"]], - "engrosses": null, - "engrossingly": null, - "engrossments": null, - "engrossment's": null, - "engulf": [["G", "D", "S", "L"]], - "engulfing": null, - "engulfed": null, - "engulfs": null, - "engulfment": [["S", "M"]], - "engulfments": null, - "engulfment's": null, - "enhanceable": null, - "enhance": [["L", "Z", "G", "D", "R", "S"]], - "enhancement": [["M", "S"]], - "enhancers": null, - "enhancing": null, - "enhanced": null, - "enhancer": [["M"]], - "enhances": null, - "enhancement's": null, - "enhancements": null, - "enhancer's": null, - "enharmonic": null, - "Enid": [["M"]], - "Enid's": null, - "Enif": [["M"]], - "Enif's": null, - "enigma": [["M", "S"]], - "enigma's": null, - "enigmas": null, - "enigmatic": null, - "enigmatically": null, - "Eniwetok": [["M"]], - "Eniwetok's": null, - "enjambement's": null, - "enjambment": [["M", "S"]], - "enjambment's": null, - "enjambments": null, - "enjoinder": null, - "enjoin": [["G", "S", "D"]], - "enjoining": null, - "enjoins": null, - "enjoined": null, - "enjoyability": null, - "enjoyableness": [["M"]], - "enjoyableness's": null, - "enjoyable": [["P"]], - "enjoyably": null, - "enjoy": [["G", "B", "D", "S", "L"]], - "enjoying": null, - "enjoyed": null, - "enjoys": null, - "enjoyment": [["S", "M"]], - "enjoyments": null, - "enjoyment's": null, - "Enkidu": [["M"]], - "Enkidu's": null, - "enlargeable": null, - "enlarge": [["L", "D", "R", "S", "Z", "G"]], - "enlargement": [["M", "S"]], - "enlarged": null, - "enlarger": [["M"]], - "enlarges": null, - "enlargers": null, - "enlarging": null, - "enlargement's": null, - "enlargements": null, - "enlarger's": null, - "enlightened": [["U"]], - "unenlightened": null, - "enlighten": [["G", "D", "S", "L"]], - "enlightening": [["U"]], - "enlightens": null, - "enlightenment": [["S", "M"]], - "unenlightening": null, - "enlightenments": null, - "enlightenment's": null, - "enlistee": [["M", "S"]], - "enlistee's": null, - "enlistees": null, - "enlister": [["M"]], - "enlister's": null, - "enlistment": [["S", "A", "M"]], - "enlistments": null, - "reenlistments": null, - "reenlistment": null, - "reenlistment's": null, - "enlistment's": null, - "enlist": [["S", "A", "G", "D", "L"]], - "enlists": null, - "reenlists": null, - "reenlist": null, - "reenlisting": null, - "reenlisted": null, - "enlisting": null, - "enlisted": null, - "enliven": [["L", "D", "G", "S"]], - "enlivenment": [["S", "M"]], - "enlivened": null, - "enlivening": null, - "enlivens": null, - "enlivenments": null, - "enlivenment's": null, - "enmesh": [["D", "S", "L", "G"]], - "enmeshed": null, - "enmeshes": null, - "enmeshment": [["S", "M"]], - "enmeshing": null, - "enmeshments": null, - "enmeshment's": null, - "enmity": [["M", "S"]], - "enmity's": null, - "enmities": null, - "Ennis": [["M"]], - "Ennis's": null, - "ennoble": [["L", "D", "R", "S", "G"]], - "ennoblement": [["S", "M"]], - "ennobled": null, - "ennobler": [["M"]], - "ennobles": null, - "ennobling": null, - "ennoblements": null, - "ennoblement's": null, - "ennobler's": null, - "ennui": [["S", "M"]], - "ennuis": null, - "ennui's": null, - "Enoch": [["M"]], - "Enoch's": null, - "enormity": [["S", "M"]], - "enormities": null, - "enormity's": null, - "enormousness": [["M", "S"]], - "enormousness's": null, - "enormousnesses": null, - "enormous": [["Y", "P"]], - "enormously": null, - "Enos": null, - "enough": null, - "enoughs": null, - "enplane": [["D", "S", "G"]], - "enplaned": null, - "enplanes": null, - "enplaning": null, - "enqueue": [["D", "S"]], - "enqueued": null, - "enqueues": null, - "enquirer": [["S"]], - "enquirers": null, - "enquiringly": null, - "enrage": [["S", "D", "G"]], - "enrages": null, - "enraged": null, - "enraging": null, - "enrapture": [["G", "S", "D"]], - "enrapturing": null, - "enraptures": null, - "enraptured": null, - "Enrica": [["M"]], - "Enrica's": null, - "enricher": [["M"]], - "enricher's": null, - "Enrichetta": [["M"]], - "Enrichetta's": null, - "enrich": [["L", "D", "S", "R", "G"]], - "enrichment": [["S", "M"]], - "enriched": null, - "enriches": null, - "enriching": null, - "enrichments": null, - "enrichment's": null, - "Enrico": [["M"]], - "Enrico's": null, - "Enrika": [["M"]], - "Enrika's": null, - "Enrique": [["M"]], - "Enrique's": null, - "Enriqueta": [["M"]], - "Enriqueta's": null, - "enrobed": null, - "enrollee": [["S", "M"]], - "enrollees": null, - "enrollee's": null, - "enroll": [["L", "G", "S", "D"]], - "enrollment": [["S", "M"]], - "enrolling": null, - "enrolls": null, - "enrolled": null, - "enrollments": null, - "enrollment's": null, - "ens": null, - "ensconce": [["D", "S", "G"]], - "ensconced": null, - "ensconces": null, - "ensconcing": null, - "ensemble": [["M", "S"]], - "ensemble's": null, - "ensembles": null, - "enshrine": [["D", "S", "L", "G"]], - "enshrined": null, - "enshrines": null, - "enshrinement": [["S", "M"]], - "enshrining": null, - "enshrinements": null, - "enshrinement's": null, - "enshroud": [["D", "G", "S"]], - "enshrouded": null, - "enshrouding": null, - "enshrouds": null, - "ensign": [["S", "M"]], - "ensigns": null, - "ensign's": null, - "ensilage": [["D", "S", "M", "G"]], - "ensilaged": null, - "ensilages": null, - "ensilage's": null, - "ensilaging": null, - "enslavement": [["M", "S"]], - "enslavement's": null, - "enslavements": null, - "enslaver": [["M"]], - "enslaver's": null, - "enslave": [["Z", "G", "L", "D", "S", "R"]], - "enslavers": null, - "enslaving": null, - "enslaved": null, - "enslaves": null, - "ensnare": [["G", "L", "D", "S"]], - "ensnaring": null, - "ensnarement": [["S", "M"]], - "ensnared": null, - "ensnares": null, - "ensnarements": null, - "ensnarement's": null, - "Ensolite": [["M"]], - "Ensolite's": null, - "ensue": [["S", "D", "G"]], - "ensues": null, - "ensued": null, - "ensuing": null, - "ensurer": [["M"]], - "ensurer's": null, - "ensure": [["S", "R", "D", "Z", "G"]], - "ensures": null, - "ensured": null, - "ensurers": null, - "ensuring": null, - "entailer": [["M"]], - "entailer's": null, - "entailment": [["M", "S"]], - "entailment's": null, - "entailments": null, - "entail": [["S", "D", "R", "L", "G"]], - "entails": null, - "entailed": null, - "entailing": null, - "entangle": [["E", "G", "D", "R", "S", "L"]], - "disentangle": null, - "disentangling": null, - "disentangled": null, - "disentangler": null, - "disentangles": null, - "disentanglement": null, - "entangling": null, - "entangled": null, - "entangler": [["E", "M"]], - "entangles": null, - "entanglement": [["E", "S", "M"]], - "disentanglements": null, - "disentanglement's": null, - "entanglements": null, - "entanglement's": null, - "disentangler's": null, - "entangler's": null, - "entente": [["M", "S"]], - "entente's": null, - "ententes": null, - "enter": [["A", "S", "D", "G"]], - "reenter": null, - "reenters": null, - "reentered": null, - "reentering": null, - "enters": null, - "entered": [["U"]], - "entering": null, - "unentered": null, - "enterer": [["M"]], - "enterer's": null, - "enteritides": null, - "enteritis": [["S", "M"]], - "enteritises": null, - "enteritis's": null, - "enterprise": [["G", "M", "S", "R"]], - "enterprising": [["Y"]], - "enterprise's": null, - "enterprises": null, - "enterpriser": [["M"]], - "Enterprise": [["M"]], - "Enterprise's": null, - "enterpriser's": null, - "enterprisingly": null, - "entertainer": [["M"]], - "entertainer's": null, - "entertaining": [["Y"]], - "entertainingly": null, - "entertainment": [["S", "M"]], - "entertainments": null, - "entertainment's": null, - "entertain": [["S", "G", "Z", "R", "D", "L"]], - "entertains": null, - "entertainers": null, - "entertained": null, - "enthalpy": [["S", "M"]], - "enthalpies": null, - "enthalpy's": null, - "enthrall": [["G", "D", "S", "L"]], - "enthralling": null, - "enthralled": null, - "enthralls": null, - "enthrallment": [["S", "M"]], - "enthrallments": null, - "enthrallment's": null, - "enthrone": [["G", "D", "S", "L"]], - "enthroning": null, - "enthroned": null, - "enthrones": null, - "enthronement": [["M", "S"]], - "enthronement's": null, - "enthronements": null, - "enthuse": [["D", "S", "G"]], - "enthused": null, - "enthuses": null, - "enthusing": null, - "enthusiasm": [["S", "M"]], - "enthusiasms": null, - "enthusiasm's": null, - "enthusiastically": [["U"]], - "unenthusiastically": null, - "enthusiastic": [["U"]], - "unenthusiastic": null, - "enthusiast": [["M", "S"]], - "enthusiast's": null, - "enthusiasts": null, - "enticement": [["S", "M"]], - "enticements": null, - "enticement's": null, - "entice": [["S", "R", "D", "J", "L", "Z", "G"]], - "entices": null, - "enticer": null, - "enticed": null, - "enticings": null, - "enticers": null, - "enticing": [["Y"]], - "enticingly": null, - "entire": [["S", "Y"]], - "entires": null, - "entirely": null, - "entirety": [["S", "M"]], - "entireties": null, - "entirety's": null, - "entitle": [["G", "L", "D", "S"]], - "entitling": null, - "entitlement": [["M", "S"]], - "entitled": null, - "entitles": null, - "entitlement's": null, - "entitlements": null, - "entity": [["S", "M"]], - "entities": null, - "entity's": null, - "entomb": [["G", "D", "S", "L"]], - "entombing": null, - "entombed": null, - "entombs": null, - "entombment": [["M", "S"]], - "entombment's": null, - "entombments": null, - "entomological": null, - "entomologist": [["S"]], - "entomologists": null, - "entomology": [["M", "S"]], - "entomology's": null, - "entomologies": null, - "entourage": [["S", "M"]], - "entourages": null, - "entourage's": null, - "entr'acte": [["S"]], - "entr'actes": null, - "entrails": null, - "entrainer": [["M"]], - "entrainer's": null, - "entrain": [["G", "S", "L", "D", "R"]], - "entraining": null, - "entrains": null, - "entrainment": null, - "entrained": null, - "entrancement": [["M", "S"]], - "entrancement's": null, - "entrancements": null, - "entrance": [["M", "G", "D", "S", "L"]], - "entrance's": null, - "entrancing": [["Y"]], - "entranced": null, - "entrances": null, - "entranceway": [["M"]], - "entranceway's": null, - "entrancingly": null, - "entrant": [["M", "S"]], - "entrant's": null, - "entrants": null, - "entrapment": [["S", "M"]], - "entrapments": null, - "entrapment's": null, - "entrapped": null, - "entrapping": null, - "entrap": [["S", "L"]], - "entraps": null, - "entreating": [["Y"]], - "entreatingly": null, - "entreat": [["S", "G", "D"]], - "entreats": null, - "entreated": null, - "entreaty": [["S", "M"]], - "entreaties": null, - "entreaty's": null, - "entr�e": [["S"]], - "entr�es": null, - "entrench": [["L", "S", "D", "G"]], - "entrenchment": [["M", "S"]], - "entrenches": null, - "entrenched": null, - "entrenching": null, - "entrenchment's": null, - "entrenchments": null, - "entrepreneurial": null, - "entrepreneur": [["M", "S"]], - "entrepreneur's": null, - "entrepreneurs": null, - "entrepreneurship": [["M"]], - "entrepreneurship's": null, - "entropic": null, - "entropy": [["M", "S"]], - "entropy's": null, - "entropies": null, - "entrust": [["D", "S", "G"]], - "entrusted": null, - "entrusts": null, - "entrusting": null, - "entry": [["A", "S", "M"]], - "reentry": null, - "reentries": null, - "reentry's": null, - "entries": null, - "entry's": null, - "entryway": [["S", "M"]], - "entryways": null, - "entryway's": null, - "entwine": [["D", "S", "G"]], - "entwined": null, - "entwines": null, - "entwining": null, - "enumerable": null, - "enumerate": [["A", "N"]], - "reenumerate": null, - "reenumeration": null, - "enumeration": [["S", "M"]], - "enumerated": [["U"]], - "unenumerated": null, - "enumerates": null, - "enumerating": null, - "enumeration's": [["A"]], - "reenumeration's": null, - "enumerations": null, - "enumerative": null, - "enumerator": [["S", "M"]], - "enumerators": null, - "enumerator's": null, - "enunciable": null, - "enunciated": [["U"]], - "unenunciated": null, - "enunciate": [["X", "G", "N", "S", "D"]], - "enunciations": null, - "enunciating": null, - "enunciation": [["M"]], - "enunciates": null, - "enunciation's": null, - "enureses": null, - "enuresis": [["M"]], - "enuresis's": null, - "envelope": [["M", "S"]], - "envelope's": null, - "envelopes": null, - "enveloper": [["M"]], - "enveloper's": null, - "envelopment": [["M", "S"]], - "envelopment's": null, - "envelopments": null, - "envelop": [["Z", "G", "L", "S", "D", "R"]], - "envelopers": null, - "enveloping": null, - "envelops": null, - "enveloped": null, - "envenom": [["S", "D", "G"]], - "envenoms": null, - "envenomed": null, - "envenoming": null, - "enviableness": [["M"]], - "enviableness's": null, - "enviable": [["U"]], - "unenviable": null, - "enviably": null, - "envied": [["U"]], - "unenvied": null, - "envier": [["M"]], - "envier's": null, - "enviousness": [["S", "M"]], - "enviousnesses": null, - "enviousness's": null, - "envious": [["P", "Y"]], - "enviously": null, - "environ": [["L", "G", "S", "D"]], - "environment": [["M", "S"]], - "environing": null, - "environs": null, - "environed": null, - "environmentalism": [["S", "M"]], - "environmentalisms": null, - "environmentalism's": null, - "environmentalist": [["S", "M"]], - "environmentalists": null, - "environmentalist's": null, - "environmental": [["Y"]], - "environmentally": null, - "environment's": null, - "environments": null, - "envisage": [["D", "S", "G"]], - "envisaged": null, - "envisages": null, - "envisaging": null, - "envision": [["G", "S", "D"]], - "envisioning": null, - "envisions": null, - "envisioned": null, - "envoy": [["S", "M"]], - "envoys": null, - "envoy's": null, - "envying": [["Y"]], - "envyingly": null, - "envy": [["S", "R", "D", "M", "G"]], - "envies": null, - "envy's": null, - "enzymatic": null, - "enzymatically": null, - "enzyme": [["S", "M"]], - "enzymes": null, - "enzyme's": null, - "enzymology": [["M"]], - "enzymology's": null, - "Eocene": null, - "EOE": null, - "eohippus": [["M"]], - "eohippus's": null, - "Eolanda": [["M"]], - "Eolanda's": null, - "Eolande": [["M"]], - "Eolande's": null, - "eolian": null, - "eon": [["S", "M"]], - "eons": null, - "eon's": null, - "EPA": null, - "epaulet": [["S", "M"]], - "epaulets": null, - "epaulet's": null, - "�p�e": [["S"]], - "�p�es": null, - "ephedrine": [["M", "S"]], - "ephedrine's": null, - "ephedrines": null, - "ephemeral": [["S", "Y"]], - "ephemerals": null, - "ephemerally": null, - "ephemera": [["M", "S"]], - "ephemera's": null, - "ephemeras": null, - "ephemerids": null, - "ephemeris": [["M"]], - "ephemeris's": null, - "Ephesian": [["S"]], - "Ephesians": [["M"]], - "Ephesians's": null, - "Ephesus": [["M"]], - "Ephesus's": null, - "Ephraim": [["M"]], - "Ephraim's": null, - "Ephrayim": [["M"]], - "Ephrayim's": null, - "Ephrem": [["M"]], - "Ephrem's": null, - "epically": null, - "epicenter": [["S", "M"]], - "epicenters": null, - "epicenter's": null, - "epic": [["S", "M"]], - "epics": null, - "epic's": null, - "Epictetus": [["M"]], - "Epictetus's": null, - "Epicurean": null, - "epicurean": [["S"]], - "epicureans": null, - "epicure": [["S", "M"]], - "epicures": null, - "epicure's": null, - "Epicurus": [["M"]], - "Epicurus's": null, - "epicycle": [["M", "S"]], - "epicycle's": null, - "epicycles": null, - "epicyclic": null, - "epicyclical": [["Y"]], - "epicyclically": null, - "epicycloid": [["M"]], - "epicycloid's": null, - "epidemically": null, - "epidemic": [["M", "S"]], - "epidemic's": null, - "epidemics": null, - "epidemiological": [["Y"]], - "epidemiologically": null, - "epidemiologist": [["M", "S"]], - "epidemiologist's": null, - "epidemiologists": null, - "epidemiology": [["M", "S"]], - "epidemiology's": null, - "epidemiologies": null, - "epidermal": null, - "epidermic": null, - "epidermis": [["M", "S"]], - "epidermis's": null, - "epidermises": null, - "epidural": null, - "epigenetic": null, - "epiglottis": [["S", "M"]], - "epiglottises": null, - "epiglottis's": null, - "epigrammatic": null, - "epigram": [["M", "S"]], - "epigram's": null, - "epigrams": null, - "epigrapher": [["M"]], - "epigrapher's": null, - "epigraph": [["R", "M"]], - "epigraph's": null, - "epigraphs": null, - "epigraphy": [["M", "S"]], - "epigraphy's": null, - "epigraphies": null, - "epilepsy": [["S", "M"]], - "epilepsies": null, - "epilepsy's": null, - "epileptic": [["S"]], - "epileptics": null, - "epilogue": [["S", "D", "M", "G"]], - "epilogues": null, - "epilogued": null, - "epilogue's": null, - "epiloguing": null, - "Epimethius": [["M"]], - "Epimethius's": null, - "epinephrine": [["S", "M"]], - "epinephrines": null, - "epinephrine's": null, - "epiphany": [["S", "M"]], - "epiphanies": null, - "epiphany's": null, - "Epiphany": [["S", "M"]], - "Epiphanies": null, - "Epiphany's": null, - "epiphenomena": null, - "episcopacy": [["M", "S"]], - "episcopacy's": null, - "episcopacies": null, - "episcopalian": null, - "Episcopalian": [["S"]], - "Episcopalians": null, - "Episcopal": [["S"]], - "Episcopals": null, - "episcopal": [["Y"]], - "episcopally": null, - "episcopate": [["M", "S"]], - "episcopate's": null, - "episcopates": null, - "episode": [["S", "M"]], - "episodes": null, - "episode's": null, - "episodic": null, - "episodically": null, - "epistemic": null, - "epistemological": [["Y"]], - "epistemologically": null, - "epistemology": [["M"]], - "epistemology's": null, - "epistle": [["M", "R", "S"]], - "epistle's": null, - "epistler": null, - "epistles": null, - "Epistle": [["S", "M"]], - "Epistles": null, - "Epistle's": null, - "epistolary": [["S"]], - "epistolaries": null, - "epistolatory": null, - "epitaph": [["G", "M", "D"]], - "epitaphing": null, - "epitaph's": null, - "epitaphed": null, - "epitaphs": null, - "epitaxial": [["Y"]], - "epitaxially": null, - "epitaxy": [["M"]], - "epitaxy's": null, - "epithelial": null, - "epithelium": [["M", "S"]], - "epithelium's": null, - "epitheliums": null, - "epithet": [["M", "S"]], - "epithet's": null, - "epithets": null, - "epitome": [["M", "S"]], - "epitome's": null, - "epitomes": null, - "epitomized": [["U"]], - "unepitomized": null, - "epitomizer": [["M"]], - "epitomizer's": null, - "epitomize": [["S", "R", "D", "Z", "G"]], - "epitomizes": null, - "epitomizers": null, - "epitomizing": null, - "epochal": [["Y"]], - "epochally": null, - "epoch": [["M"]], - "epoch's": null, - "epochs": null, - "eponymous": null, - "epoxy": [["G", "S", "D"]], - "epoxying": null, - "epoxies": null, - "epoxied": null, - "epsilon": [["S", "M"]], - "epsilons": null, - "epsilon's": null, - "Epsom": [["M"]], - "Epsom's": null, - "Epstein": [["M"]], - "Epstein's": null, - "equability": [["M", "S"]], - "equability's": null, - "equabilities": null, - "equableness": [["M"]], - "equableness's": null, - "equable": [["P"]], - "equably": null, - "equaling": null, - "equality": [["I", "S", "M"]], - "inequality": null, - "inequalities": null, - "inequality's": null, - "equalities": null, - "equality's": null, - "equalization": [["M", "S"]], - "equalization's": null, - "equalizations": null, - "equalize": [["D", "R", "S", "G", "J", "Z"]], - "equalized": [["U"]], - "equalizer": [["M"]], - "equalizes": [["U"]], - "equalizing": null, - "equalizings": null, - "equalizers": null, - "unequalized": null, - "equalizer's": null, - "unequalizes": null, - "equal": [["U", "S", "D", "Y"]], - "unequal": null, - "unequals": null, - "unequaled": null, - "unequally": null, - "equals": null, - "equaled": null, - "equally": null, - "equanimity": [["M", "S"]], - "equanimity's": null, - "equanimities": null, - "equate": [["N", "G", "X", "B", "S", "D"]], - "equation": [["M"]], - "equating": null, - "equations": null, - "equatable": null, - "equates": null, - "equated": null, - "equation's": null, - "equatorial": [["S"]], - "equatorials": null, - "equator": [["S", "M"]], - "equators": null, - "equator's": null, - "equerry": [["M", "S"]], - "equerry's": null, - "equerries": null, - "equestrianism": [["S", "M"]], - "equestrianisms": null, - "equestrianism's": null, - "equestrian": [["S"]], - "equestrians": null, - "equestrienne": [["S", "M"]], - "equestriennes": null, - "equestrienne's": null, - "equiangular": null, - "equidistant": [["Y"]], - "equidistantly": null, - "equilateral": [["S"]], - "equilaterals": null, - "equilibrate": [["G", "N", "S", "D"]], - "equilibrating": null, - "equilibration": [["M"]], - "equilibrates": null, - "equilibrated": null, - "equilibration's": null, - "equilibrium": [["M", "S", "E"]], - "equilibrium's": null, - "disequilibrium's": null, - "equilibriums": null, - "disequilibriums": null, - "disequilibrium": null, - "equine": [["S"]], - "equines": null, - "equinoctial": [["S"]], - "equinoctials": null, - "equinox": [["M", "S"]], - "equinox's": null, - "equinoxes": null, - "equipage": [["S", "M"]], - "equipages": null, - "equipage's": null, - "equipartition": [["M"]], - "equipartition's": null, - "equip": [["A", "S"]], - "reequip": null, - "reequips": null, - "equips": null, - "equipment": [["S", "M"]], - "equipments": null, - "equipment's": null, - "equipoise": [["G", "M", "S", "D"]], - "equipoising": null, - "equipoise's": null, - "equipoises": null, - "equipoised": null, - "equipotent": null, - "equipped": [["A", "U"]], - "reequipped": null, - "unequipped": null, - "equipping": [["A"]], - "reequipping": null, - "equiproportional": null, - "equiproportionality": null, - "equiproportionate": null, - "equitable": [["I"]], - "inequitable": null, - "equitableness": [["M"]], - "equitableness's": null, - "equitably": [["I"]], - "inequitably": null, - "equitation": [["S", "M"]], - "equitations": null, - "equitation's": null, - "equity": [["I", "M", "S"]], - "inequity": null, - "inequity's": null, - "inequities": null, - "equity's": null, - "equities": null, - "equiv": null, - "equivalence": [["D", "S", "M", "G"]], - "equivalenced": null, - "equivalences": null, - "equivalence's": null, - "equivalencing": null, - "equivalent": [["S", "Y"]], - "equivalents": null, - "equivalently": null, - "equivocalness": [["M", "S"]], - "equivocalness's": null, - "equivocalnesses": null, - "equivocal": [["U", "Y"]], - "unequivocal": null, - "unequivocally": null, - "equivocally": null, - "equivocate": [["N", "G", "S", "D", "X"]], - "equivocation": [["M"]], - "equivocating": null, - "equivocates": null, - "equivocated": null, - "equivocations": null, - "equivocation's": null, - "equivocator": [["S", "M"]], - "equivocators": null, - "equivocator's": null, - "Equuleus": [["M"]], - "Equuleus's": null, - "ER": null, - "ERA": null, - "eradicable": [["I"]], - "ineradicable": null, - "eradicate": [["S", "D", "X", "V", "G", "N"]], - "eradicates": null, - "eradicated": null, - "eradications": null, - "eradicative": null, - "eradicating": null, - "eradication": [["M"]], - "eradication's": null, - "eradicator": [["S", "M"]], - "eradicators": null, - "eradicator's": null, - "era": [["M", "S"]], - "era's": null, - "eras": [["S", "R", "D", "B", "G", "Z"]], - "Eran": [["M"]], - "Eran's": null, - "erase": [["N"]], - "erasion": [["M"]], - "eraser": [["M"]], - "eraser's": null, - "erasion's": null, - "Erasmus": [["M"]], - "Erasmus's": null, - "erases": null, - "erased": null, - "erasable": null, - "erasing": null, - "erasers": null, - "Erastus": [["M"]], - "Erastus's": null, - "erasure": [["M", "S"]], - "erasure's": null, - "erasures": null, - "Erato": [["M"]], - "Erato's": null, - "Eratosthenes": [["M"]], - "Eratosthenes's": null, - "erbium": [["S", "M"]], - "erbiums": null, - "erbium's": null, - "Erda": [["M"]], - "Erda's": null, - "ere": null, - "Erebus": [["M"]], - "Erebus's": null, - "erect": [["G", "P", "S", "R", "D", "Y"]], - "erecting": null, - "erectness": [["M", "S"]], - "erects": null, - "erecter": null, - "erected": null, - "erectly": null, - "erectile": null, - "erection": [["S", "M"]], - "erections": null, - "erection's": null, - "erectness's": null, - "erectnesses": null, - "erector": [["S", "M"]], - "erectors": null, - "erector's": null, - "Erek": [["M"]], - "Erek's": null, - "erelong": null, - "eremite": [["M", "S"]], - "eremite's": null, - "eremites": null, - "Erena": [["M"]], - "Erena's": null, - "ergo": null, - "ergodic": null, - "ergodicity": [["M"]], - "ergodicity's": null, - "ergonomically": null, - "ergonomics": [["M"]], - "ergonomics's": null, - "ergonomic": [["U"]], - "unergonomic": null, - "ergophobia": null, - "ergosterol": [["S", "M"]], - "ergosterols": null, - "ergosterol's": null, - "ergot": [["S", "M"]], - "ergots": null, - "ergot's": null, - "erg": [["S", "M"]], - "ergs": null, - "erg's": null, - "Erhard": [["M"]], - "Erhard's": null, - "Erhart": [["M"]], - "Erhart's": null, - "Erica": [["M"]], - "Erica's": null, - "Ericha": [["M"]], - "Ericha's": null, - "Erich": [["M"]], - "Erich's": null, - "Ericka": [["M"]], - "Ericka's": null, - "Erick": [["M"]], - "Erick's": null, - "Erickson": [["M"]], - "Erickson's": null, - "Eric": [["M"]], - "Eric's": null, - "Ericson's": null, - "Ericsson's": null, - "Eridanus": [["M"]], - "Eridanus's": null, - "Erie": [["S", "M"]], - "Eries": null, - "Erie's": null, - "Erika": [["M"]], - "Erika's": null, - "Erik": [["M"]], - "Erik's": null, - "Erikson": [["M"]], - "Erikson's": null, - "Erina": [["M"]], - "Erina's": null, - "Erin": [["M"]], - "Erin's": null, - "Erinna": [["M"]], - "Erinna's": null, - "Erinn": [["M"]], - "Erinn's": null, - "eris": null, - "Eris": null, - "Eritrea": [["M"]], - "Eritrea's": null, - "Erlang": [["M"]], - "Erlang's": null, - "Erlenmeyer": [["M"]], - "Erlenmeyer's": null, - "Erl": [["M"]], - "Erl's": null, - "Er": [["M"]], - "Er's": null, - "Erma": [["M"]], - "Erma's": null, - "Ermanno": [["M"]], - "Ermanno's": null, - "Ermengarde": [["M"]], - "Ermengarde's": null, - "Ermentrude": [["M"]], - "Ermentrude's": null, - "Ermina": [["M"]], - "Ermina's": null, - "ermine": [["M", "S", "D"]], - "ermine's": null, - "ermines": null, - "ermined": null, - "Erminia": [["M"]], - "Erminia's": null, - "Erminie": [["M"]], - "Erminie's": null, - "Ermin": [["M"]], - "Ermin's": null, - "Ernaline": [["M"]], - "Ernaline's": null, - "Erna": [["M"]], - "Erna's": null, - "Ernesta": [["M"]], - "Ernesta's": null, - "Ernestine": [["M"]], - "Ernestine's": null, - "Ernest": [["M"]], - "Ernest's": null, - "Ernesto": [["M"]], - "Ernesto's": null, - "Ernestus": [["M"]], - "Ernestus's": null, - "Ernie": [["M"]], - "Ernie's": null, - "Ernst": [["M"]], - "Ernst's": null, - "Erny": [["M"]], - "Erny's": null, - "erode": [["S", "D", "G"]], - "erodes": null, - "eroded": null, - "eroding": null, - "erodible": null, - "erogenous": null, - "erosible": null, - "erosional": null, - "erosion": [["S", "M"]], - "erosions": null, - "erosion's": null, - "erosiveness": [["M"]], - "erosiveness's": null, - "erosive": [["P"]], - "Eros": [["S", "M"]], - "Eroses": null, - "Eros's": null, - "erotically": null, - "erotica": [["M"]], - "erotica's": null, - "eroticism": [["M", "S"]], - "eroticism's": null, - "eroticisms": null, - "erotic": [["S"]], - "erotics": null, - "errancy": [["M", "S"]], - "errancy's": null, - "errancies": null, - "errand": [["M", "S"]], - "errand's": null, - "errands": null, - "errantry": [["M"]], - "errantry's": null, - "errant": [["Y", "S"]], - "errantly": null, - "errants": null, - "errata": [["S", "M"]], - "erratas": null, - "errata's": null, - "erratically": null, - "erratic": [["S"]], - "erratics": null, - "erratum": [["M", "S"]], - "erratum's": null, - "erratums": null, - "err": [["D", "G", "S"]], - "erred": null, - "erring": [["U", "Y"]], - "errs": null, - "Errick": [["M"]], - "Errick's": null, - "unerring": null, - "unerringly": null, - "erringly": null, - "Erroll": [["M"]], - "Erroll's": null, - "Errol": [["M"]], - "Errol's": null, - "erroneousness": [["M"]], - "erroneousness's": null, - "erroneous": [["Y", "P"]], - "erroneously": null, - "error": [["S", "M"]], - "errors": null, - "error's": null, - "ersatz": [["S"]], - "ersatzes": null, - "Erse": [["M"]], - "Erse's": null, - "Erskine": [["M"]], - "Erskine's": null, - "erst": null, - "erstwhile": null, - "Ertha": [["M"]], - "Ertha's": null, - "eructation": [["M", "S"]], - "eructation's": null, - "eructations": null, - "eruct": [["D", "G", "S"]], - "eructed": null, - "eructing": null, - "eructs": null, - "erudite": [["N", "Y", "X"]], - "erudition": [["M"]], - "eruditely": null, - "eruditions": null, - "erudition's": null, - "erupt": [["D", "S", "V", "G"]], - "erupted": null, - "erupts": null, - "eruptive": [["S", "Y"]], - "erupting": null, - "eruption": [["S", "M"]], - "eruptions": null, - "eruption's": null, - "eruptives": null, - "eruptively": null, - "Ervin": [["M"]], - "Ervin's": null, - "ErvIn": [["M"]], - "ErvIn's": null, - "Erv": [["M"]], - "Erv's": null, - "Erwin": [["M"]], - "Erwin's": null, - "Eryn": [["M"]], - "Eryn's": null, - "erysipelas": [["S", "M"]], - "erysipelases": null, - "erysipelas's": null, - "erythrocyte": [["S", "M"]], - "erythrocytes": null, - "erythrocyte's": null, - "Es": null, - "E's": null, - "Esau": [["M"]], - "Esau's": null, - "escadrille": [["M"]], - "escadrille's": null, - "escalate": [["C", "D", "S", "X", "G", "N"]], - "deescalate": null, - "deescalated": null, - "deescalates": null, - "deescalations": null, - "deescalating": null, - "deescalation": null, - "escalated": null, - "escalates": null, - "escalations": null, - "escalating": null, - "escalation": [["M", "C"]], - "escalation's": null, - "deescalation's": null, - "escalator": [["S", "M"]], - "escalators": null, - "escalator's": null, - "escallop": [["S", "G", "D", "M"]], - "escallops": null, - "escalloping": null, - "escalloped": null, - "escallop's": null, - "escapable": [["I"]], - "inescapable": null, - "escapade": [["S", "M"]], - "escapades": null, - "escapade's": null, - "escapee": [["M", "S"]], - "escapee's": null, - "escapees": null, - "escape": [["L", "G", "S", "R", "D", "B"]], - "escapement": [["M", "S"]], - "escaping": null, - "escapes": null, - "escaper": [["M"]], - "escaped": null, - "escapement's": null, - "escapements": null, - "escaper's": null, - "escapism": [["S", "M"]], - "escapisms": null, - "escapism's": null, - "escapist": [["S"]], - "escapists": null, - "escapology": null, - "escarole": [["M", "S"]], - "escarole's": null, - "escaroles": null, - "escarpment": [["M", "S"]], - "escarpment's": null, - "escarpments": null, - "eschatology": [["M"]], - "eschatology's": null, - "Escherichia": [["M"]], - "Escherichia's": null, - "Escher": [["M"]], - "Escher's": null, - "eschew": [["S", "G", "D"]], - "eschews": null, - "eschewing": null, - "eschewed": null, - "Escondido": [["M"]], - "Escondido's": null, - "escort": [["S", "G", "M", "D"]], - "escorts": null, - "escorting": null, - "escort's": null, - "escorted": null, - "escritoire": [["S", "M"]], - "escritoires": null, - "escritoire's": null, - "escrow": [["D", "M", "G", "S"]], - "escrowed": null, - "escrow's": null, - "escrowing": null, - "escrows": null, - "escudo": [["M", "S"]], - "escudo's": null, - "escudos": null, - "escutcheon": [["S", "M"]], - "escutcheons": null, - "escutcheon's": null, - "Esdras": [["M"]], - "Esdras's": null, - "ESE": null, - "Eskimo": [["S", "M"]], - "Eskimos": null, - "Eskimo's": null, - "ESL": null, - "Esma": [["M"]], - "Esma's": null, - "Esmaria": [["M"]], - "Esmaria's": null, - "Esmark": [["M"]], - "Esmark's": null, - "Esme": [["M"]], - "Esme's": null, - "Esmeralda": [["M"]], - "Esmeralda's": null, - "esophageal": null, - "esophagi": null, - "esophagus": [["M"]], - "esophagus's": null, - "esoteric": null, - "esoterica": null, - "esoterically": null, - "esp": null, - "ESP": null, - "espadrille": [["M", "S"]], - "espadrille's": null, - "espadrilles": null, - "Espagnol": [["M"]], - "Espagnol's": null, - "espalier": [["S", "M", "D", "G"]], - "espaliers": null, - "espalier's": null, - "espaliered": null, - "espaliering": null, - "especial": [["Y"]], - "especially": null, - "Esperanto": [["M"]], - "Esperanto's": null, - "Esperanza": [["M"]], - "Esperanza's": null, - "Espinoza": [["M"]], - "Espinoza's": null, - "espionage": [["S", "M"]], - "espionages": null, - "espionage's": null, - "esplanade": [["S", "M"]], - "esplanades": null, - "esplanade's": null, - "Esp": [["M"]], - "Esp's": null, - "Esposito": [["M"]], - "Esposito's": null, - "espousal": [["M", "S"]], - "espousal's": null, - "espousals": null, - "espouser": [["M"]], - "espouser's": null, - "espouse": [["S", "R", "D", "G"]], - "espouses": null, - "espoused": null, - "espousing": null, - "espresso": [["S", "M"]], - "espressos": null, - "espresso's": null, - "esprit": [["S", "M"]], - "esprits": null, - "esprit's": null, - "espy": [["G", "S", "D"]], - "espying": null, - "espies": null, - "espied": null, - "Esq": [["M"]], - "Esq's": null, - "esquire": [["G", "M", "S", "D"]], - "esquiring": null, - "esquire's": null, - "esquires": null, - "esquired": null, - "Esquire": [["S"]], - "Esquires": null, - "Esra": [["M"]], - "Esra's": null, - "Essa": [["M"]], - "Essa's": null, - "essayer": [["M"]], - "essayer's": null, - "essayist": [["S", "M"]], - "essayists": null, - "essayist's": null, - "essay": [["S", "Z", "M", "G", "R", "D"]], - "essays": null, - "essayers": null, - "essay's": null, - "essaying": null, - "essayed": null, - "essence": [["M", "S"]], - "essence's": null, - "essences": null, - "Essene": [["S", "M"]], - "Essenes": null, - "Essene's": null, - "Essen": [["M"]], - "Essen's": null, - "essentialist": [["M"]], - "essentialist's": null, - "essentially": null, - "essentialness": [["M"]], - "essentialness's": null, - "essential": [["U", "S", "I"]], - "unessential": null, - "unessentials": null, - "essentials": null, - "inessentials": null, - "inessential": null, - "Essequibo": [["M"]], - "Essequibo's": null, - "Essex": [["M"]], - "Essex's": null, - "Essie": [["M"]], - "Essie's": null, - "Essy": [["M"]], - "Essy's": null, - "EST": null, - "established": [["U"]], - "unestablished": null, - "establisher": [["M"]], - "establisher's": null, - "establish": [["L", "A", "E", "G", "S", "D"]], - "establishment": [["E", "M", "A", "S"]], - "reestablishment": null, - "disestablishment": null, - "reestablish": null, - "reestablishing": null, - "reestablishes": null, - "reestablished": null, - "disestablish": null, - "disestablishing": null, - "disestablishes": null, - "disestablished": null, - "establishing": null, - "establishes": null, - "disestablishment's": null, - "disestablishments": null, - "establishment's": null, - "reestablishment's": null, - "reestablishments": null, - "establishments": null, - "Establishment": [["M", "S"]], - "Establishment's": null, - "Establishments": null, - "Esta": [["M"]], - "Esta's": null, - "estate": [["G", "S", "D", "M"]], - "estating": null, - "estates": null, - "estated": null, - "estate's": null, - "Esteban": [["M"]], - "Esteban's": null, - "esteem": [["E", "G", "D", "S"]], - "disesteem": null, - "disesteeming": null, - "disesteemed": null, - "disesteems": null, - "esteeming": null, - "esteemed": null, - "esteems": null, - "Estela": [["M"]], - "Estela's": null, - "Estele": [["M"]], - "Estele's": null, - "Estella": [["M"]], - "Estella's": null, - "Estelle": [["M"]], - "Estelle's": null, - "Estell": [["M"]], - "Estell's": null, - "Estel": [["M"]], - "Estel's": null, - "Esterh�zy": [["M"]], - "Esterh�zy's": null, - "ester": [["M"]], - "ester's": null, - "Ester": [["M"]], - "Ester's": null, - "Estes": null, - "Estevan": [["M"]], - "Estevan's": null, - "Esther": [["M"]], - "Esther's": null, - "esthete's": null, - "esthetically": null, - "esthetic's": null, - "esthetics's": null, - "estimable": [["I"]], - "inestimable": null, - "estimableness": [["M"]], - "estimableness's": null, - "estimate": [["X", "D", "S", "N", "G", "V"]], - "estimations": null, - "estimated": null, - "estimates": null, - "estimation": [["M"]], - "estimating": [["A"]], - "estimative": null, - "reestimating": null, - "estimation's": null, - "estimator": [["S", "M"]], - "estimators": null, - "estimator's": null, - "Estonia": [["M"]], - "Estonia's": null, - "Estonian": [["S"]], - "Estonians": null, - "estoppal": null, - "Estrada": [["M"]], - "Estrada's": null, - "estrange": [["D", "R", "S", "L", "G"]], - "estranged": null, - "estranger": [["M"]], - "estranges": null, - "estrangement": [["S", "M"]], - "estranging": null, - "estrangements": null, - "estrangement's": null, - "estranger's": null, - "Estrella": [["M"]], - "Estrella's": null, - "Estrellita": [["M"]], - "Estrellita's": null, - "estrogen": [["S", "M"]], - "estrogens": null, - "estrogen's": null, - "estrous": null, - "estrus": [["S", "M"]], - "estruses": null, - "estrus's": null, - "est": [["R", "Z"]], - "esters": null, - "estuarine": null, - "estuary": [["S", "M"]], - "estuaries": null, - "estuary's": null, - "et": null, - "ET": null, - "ETA": null, - "Etan": [["M"]], - "Etan's": null, - "eta": [["S", "M"]], - "etas": null, - "eta's": null, - "etc": null, - "etcetera": [["S", "M"]], - "etceteras": null, - "etcetera's": null, - "etcher": [["M"]], - "etcher's": null, - "etch": [["G", "Z", "J", "S", "R", "D"]], - "etching": [["M"]], - "etchers": null, - "etchings": null, - "etches": null, - "etched": null, - "etching's": null, - "ETD": null, - "eternalness": [["S", "M"]], - "eternalnesses": null, - "eternalness's": null, - "eternal": [["P", "S", "Y"]], - "eternals": null, - "eternally": null, - "eternity": [["S", "M"]], - "eternities": null, - "eternity's": null, - "ethane": [["S", "M"]], - "ethanes": null, - "ethane's": null, - "Ethan": [["M"]], - "Ethan's": null, - "ethanol": [["M", "S"]], - "ethanol's": null, - "ethanols": null, - "Ethelbert": [["M"]], - "Ethelbert's": null, - "Ethelda": [["M"]], - "Ethelda's": null, - "Ethelind": [["M"]], - "Ethelind's": null, - "Etheline": [["M"]], - "Etheline's": null, - "Ethelin": [["M"]], - "Ethelin's": null, - "Ethel": [["M"]], - "Ethel's": null, - "Ethelred": [["M"]], - "Ethelred's": null, - "Ethelyn": [["M"]], - "Ethelyn's": null, - "Ethe": [["M"]], - "Ethe's": null, - "etherealness": [["M"]], - "etherealness's": null, - "ethereal": [["P", "Y"]], - "ethereally": null, - "etherized": null, - "Ethernet": [["M", "S"]], - "Ethernet's": null, - "Ethernets": null, - "ether": [["S", "M"]], - "ethers": null, - "ether's": null, - "ethically": [["U"]], - "unethically": null, - "ethicalness": [["M"]], - "ethicalness's": null, - "ethical": [["P", "Y", "S"]], - "ethicals": null, - "ethicist": [["S"]], - "ethicists": null, - "ethic": [["M", "S"]], - "ethic's": null, - "ethics": null, - "Ethiopia": [["M"]], - "Ethiopia's": null, - "Ethiopian": [["S"]], - "Ethiopians": null, - "ethnically": null, - "ethnicity": [["M", "S"]], - "ethnicity's": null, - "ethnicities": null, - "ethnic": [["S"]], - "ethnics": null, - "ethnocentric": null, - "ethnocentrism": [["M", "S"]], - "ethnocentrism's": null, - "ethnocentrisms": null, - "ethnographers": null, - "ethnographic": null, - "ethnography": [["M"]], - "ethnography's": null, - "ethnological": null, - "ethnologist": [["S", "M"]], - "ethnologists": null, - "ethnologist's": null, - "ethnology": [["S", "M"]], - "ethnologies": null, - "ethnology's": null, - "ethnomethodology": null, - "ethological": null, - "ethologist": [["M", "S"]], - "ethologist's": null, - "ethologists": null, - "ethology": [["S", "M"]], - "ethologies": null, - "ethology's": null, - "ethos": [["S", "M"]], - "ethoses": null, - "ethos's": null, - "ethylene": [["M", "S"]], - "ethylene's": null, - "ethylenes": null, - "Ethyl": [["M"]], - "Ethyl's": null, - "ethyl": [["S", "M"]], - "ethyls": null, - "ethyl's": null, - "Etienne": [["M"]], - "Etienne's": null, - "etiologic": null, - "etiological": null, - "etiology": [["S", "M"]], - "etiologies": null, - "etiology's": null, - "etiquette": [["S", "M"]], - "etiquettes": null, - "etiquette's": null, - "Etna": [["M"]], - "Etna's": null, - "Etruria": [["M"]], - "Etruria's": null, - "Etruscan": [["M", "S"]], - "Etruscan's": null, - "Etruscans": null, - "Etta": [["M"]], - "Etta's": null, - "Ettie": [["M"]], - "Ettie's": null, - "Etti": [["M"]], - "Etti's": null, - "Ettore": [["M"]], - "Ettore's": null, - "Etty": [["M"]], - "Etty's": null, - "�tude": [["M", "S"]], - "�tude's": null, - "�tudes": null, - "etymological": [["Y"]], - "etymologically": null, - "etymologist": [["S", "M"]], - "etymologists": null, - "etymologist's": null, - "etymology": [["M", "S"]], - "etymology's": null, - "etymologies": null, - "EU": null, - "eucalypti": null, - "eucalyptus": [["S", "M"]], - "eucalyptuses": null, - "eucalyptus's": null, - "Eucharistic": null, - "Eucharist": [["S", "M"]], - "Eucharists": null, - "Eucharist's": null, - "euchre": [["M", "G", "S", "D"]], - "euchre's": null, - "euchring": null, - "euchres": null, - "euchred": null, - "euclidean": null, - "Euclid": [["M"]], - "Euclid's": null, - "Eudora": [["M"]], - "Eudora's": null, - "Euell": [["M"]], - "Euell's": null, - "Eugene": [["M"]], - "Eugene's": null, - "Eugenia": [["M"]], - "Eugenia's": null, - "eugenically": null, - "eugenicist": [["S", "M"]], - "eugenicists": null, - "eugenicist's": null, - "eugenic": [["S"]], - "eugenics": [["M"]], - "eugenics's": null, - "Eugenie": [["M"]], - "Eugenie's": null, - "Eugenio": [["M"]], - "Eugenio's": null, - "Eugenius": [["M"]], - "Eugenius's": null, - "Eugen": [["M"]], - "Eugen's": null, - "Eugine": [["M"]], - "Eugine's": null, - "Eulalie": [["M"]], - "Eulalie's": null, - "Eula": [["M"]], - "Eula's": null, - "Eulerian": [["M"]], - "Eulerian's": null, - "Euler": [["M"]], - "Euler's": null, - "eulogistic": null, - "eulogist": [["M", "S"]], - "eulogist's": null, - "eulogists": null, - "eulogized": [["U"]], - "uneulogized": [["S", "M"]], - "eulogize": [["G", "R", "S", "D", "Z"]], - "eulogizing": null, - "eulogizer": [["M"]], - "eulogizes": null, - "eulogizers": null, - "eulogizer's": null, - "eulogy": [["M", "S"]], - "eulogy's": null, - "eulogies": null, - "Eu": [["M"]], - "Eu's": null, - "Eumenides": null, - "Eunice": [["M"]], - "Eunice's": null, - "eunuch": [["M"]], - "eunuch's": null, - "eunuchs": null, - "Euphemia": [["M"]], - "Euphemia's": null, - "euphemism": [["M", "S"]], - "euphemism's": null, - "euphemisms": null, - "euphemistic": null, - "euphemistically": null, - "euphemist": [["M"]], - "euphemist's": null, - "euphonious": [["Y"]], - "euphoniously": null, - "euphonium": [["M"]], - "euphonium's": null, - "euphony": [["S", "M"]], - "euphonies": null, - "euphony's": null, - "euphoria": [["S", "M"]], - "euphorias": null, - "euphoria's": null, - "euphoric": null, - "euphorically": null, - "Euphrates": [["M"]], - "Euphrates's": null, - "Eurasia": [["M"]], - "Eurasia's": null, - "Eurasian": [["S"]], - "Eurasians": null, - "eureka": [["S"]], - "eurekas": null, - "Euripides": [["M"]], - "Euripides's": null, - "Eur": [["M"]], - "Eur's": null, - "Eurodollar": [["S", "M"]], - "Eurodollars": null, - "Eurodollar's": null, - "Europa": [["M"]], - "Europa's": null, - "Europeanization": [["S", "M"]], - "Europeanizations": null, - "Europeanization's": null, - "Europeanized": null, - "European": [["M", "S"]], - "European's": null, - "Europeans": null, - "Europe": [["M"]], - "Europe's": null, - "europium": [["M", "S"]], - "europium's": null, - "europiums": null, - "Eurydice": [["M"]], - "Eurydice's": null, - "Eustace": [["M"]], - "Eustace's": null, - "Eustachian": [["M"]], - "Eustachian's": null, - "Eustacia": [["M"]], - "Eustacia's": null, - "eutectic": null, - "Euterpe": [["M"]], - "Euterpe's": null, - "euthanasia": [["S", "M"]], - "euthanasias": null, - "euthanasia's": null, - "euthenics": [["M"]], - "euthenics's": null, - "evacuate": [["D", "S", "X", "N", "G", "V"]], - "evacuated": null, - "evacuates": null, - "evacuations": null, - "evacuation": [["M"]], - "evacuating": null, - "evacuative": null, - "evacuation's": null, - "evacuee": [["M", "S"]], - "evacuee's": null, - "evacuees": null, - "evader": [["M"]], - "evader's": null, - "evade": [["S", "R", "D", "B", "G", "Z"]], - "evades": null, - "evaded": null, - "evadable": null, - "evading": null, - "evaders": null, - "Evaleen": [["M"]], - "Evaleen's": null, - "evaluable": null, - "evaluate": [["A", "D", "S", "G", "N", "X"]], - "reevaluate": null, - "reevaluated": null, - "reevaluates": null, - "reevaluating": null, - "reevaluation": null, - "reevaluations": null, - "evaluated": [["U"]], - "evaluates": null, - "evaluating": null, - "evaluation": [["M", "A"]], - "evaluations": null, - "unevaluated": null, - "evaluational": null, - "evaluation's": null, - "reevaluation's": null, - "evaluative": null, - "evaluator": [["M", "S"]], - "evaluator's": null, - "evaluators": null, - "Eva": [["M"]], - "Eva's": null, - "evanescence": [["M", "S"]], - "evanescence's": null, - "evanescences": null, - "evanescent": null, - "Evangelia": [["M"]], - "Evangelia's": null, - "evangelic": null, - "evangelicalism": [["S", "M"]], - "evangelicalisms": null, - "evangelicalism's": null, - "Evangelical": [["S"]], - "Evangelicals": null, - "evangelical": [["Y", "S"]], - "evangelically": null, - "evangelicals": null, - "Evangelina": [["M"]], - "Evangelina's": null, - "Evangeline": [["M"]], - "Evangeline's": null, - "Evangelin": [["M"]], - "Evangelin's": null, - "evangelism": [["S", "M"]], - "evangelisms": null, - "evangelism's": null, - "evangelistic": null, - "evangelist": [["M", "S"]], - "evangelist's": null, - "evangelists": null, - "Evangelist": [["M", "S"]], - "Evangelist's": null, - "Evangelists": null, - "evangelize": [["G", "D", "S"]], - "evangelizing": null, - "evangelized": null, - "evangelizes": null, - "Evania": [["M"]], - "Evania's": null, - "Evan": [["M", "S"]], - "Evan's": null, - "Evans": null, - "Evanne": [["M"]], - "Evanne's": null, - "Evanston": [["M"]], - "Evanston's": null, - "Evansville": [["M"]], - "Evansville's": null, - "evaporate": [["V", "N", "G", "S", "D", "X"]], - "evaporative": [["Y"]], - "evaporation": [["M"]], - "evaporating": null, - "evaporates": null, - "evaporated": null, - "evaporations": null, - "evaporation's": null, - "evaporatively": null, - "evaporator": [["M", "S"]], - "evaporator's": null, - "evaporators": null, - "evasion": [["S", "M"]], - "evasions": null, - "evasion's": null, - "evasiveness": [["S", "M"]], - "evasivenesses": null, - "evasiveness's": null, - "evasive": [["P", "Y"]], - "evasively": null, - "Eveleen": [["M"]], - "Eveleen's": null, - "Evelina": [["M"]], - "Evelina's": null, - "Eveline": [["M"]], - "Eveline's": null, - "Evelin": [["M"]], - "Evelin's": null, - "Evelyn": [["M"]], - "Evelyn's": null, - "Eve": [["M"]], - "Eve's": null, - "evened": null, - "evener": [["M"]], - "evener's": null, - "evenhanded": [["Y", "P"]], - "evenhandedly": null, - "evenhandedness": null, - "evening": [["S", "M"]], - "evenings": null, - "evening's": null, - "Evenki": [["M"]], - "Evenki's": null, - "Even": [["M"]], - "Even's": null, - "evenness": [["M", "S", "U"]], - "evenness's": null, - "unevenness's": null, - "evennesses": null, - "unevennesses": null, - "unevenness": null, - "even": [["P", "U", "Y", "R", "T"]], - "uneven": null, - "unevenly": null, - "unevener": null, - "evenly": null, - "evenest": null, - "evens": null, - "evensong": [["M", "S"]], - "evensong's": null, - "evensongs": null, - "eventfulness": [["S", "M"]], - "eventfulnesses": null, - "eventfulness's": null, - "eventful": [["Y", "U"]], - "eventfully": null, - "uneventfully": null, - "uneventful": null, - "eventide": [["S", "M"]], - "eventides": null, - "eventide's": null, - "event": [["S", "G", "M"]], - "events": null, - "eventing": null, - "event's": null, - "eventuality": [["M", "S"]], - "eventuality's": null, - "eventualities": null, - "eventual": [["Y"]], - "eventually": null, - "eventuate": [["G", "S", "D"]], - "eventuating": null, - "eventuates": null, - "eventuated": null, - "Everard": [["M"]], - "Everard's": null, - "Eveready": [["M"]], - "Eveready's": null, - "Evered": [["M"]], - "Evered's": null, - "Everest": [["M"]], - "Everest's": null, - "Everette": [["M"]], - "Everette's": null, - "Everett": [["M"]], - "Everett's": null, - "everglade": [["M", "S"]], - "everglade's": null, - "everglades": null, - "Everglades": null, - "evergreen": [["S"]], - "evergreens": null, - "Everhart": [["M"]], - "Everhart's": null, - "everlastingness": [["M"]], - "everlastingness's": null, - "everlasting": [["P", "Y", "S"]], - "everlastingly": null, - "everlastings": null, - "everliving": null, - "evermore": null, - "EverReady": [["M"]], - "EverReady's": null, - "eve": [["R", "S", "M"]], - "ever": [["T"]], - "eves": [["A"]], - "eve's": [["A"]], - "everest": null, - "every": null, - "everybody": [["M"]], - "everybody's": null, - "everydayness": [["M"]], - "everydayness's": null, - "everyday": [["P"]], - "everyman": null, - "everyone": [["M", "S"]], - "everyone's": null, - "everyones": null, - "everyplace": null, - "everything": null, - "everywhere": null, - "reeve's": null, - "reeves": null, - "Evey": [["M"]], - "Evey's": null, - "evict": [["D", "G", "S"]], - "evicted": null, - "evicting": null, - "evicts": null, - "eviction": [["S", "M"]], - "evictions": null, - "eviction's": null, - "evidence": [["M", "G", "S", "D"]], - "evidence's": null, - "evidencing": null, - "evidences": null, - "evidenced": null, - "evidential": [["Y"]], - "evidentially": null, - "evident": [["Y", "S"]], - "evidently": null, - "evidents": null, - "Evie": [["M"]], - "Evie's": null, - "evildoer": [["S", "M"]], - "evildoers": null, - "evildoer's": null, - "evildoing": [["M", "S"]], - "evildoing's": null, - "evildoings": null, - "evilness": [["M", "S"]], - "evilness's": null, - "evilnesses": null, - "evil": [["Y", "R", "P", "T", "S"]], - "evilly": null, - "eviler": null, - "evilest": null, - "evils": null, - "evince": [["S", "D", "G"]], - "evinces": null, - "evinced": null, - "evincing": null, - "Evin": [["M"]], - "Evin's": null, - "eviscerate": [["G", "N", "X", "D", "S"]], - "eviscerating": null, - "evisceration": [["M"]], - "eviscerations": null, - "eviscerated": null, - "eviscerates": null, - "evisceration's": null, - "Evita": [["M"]], - "Evita's": null, - "Ev": [["M", "N"]], - "Ev's": null, - "evocable": null, - "evocate": [["N", "V", "X"]], - "evocation": [["M"]], - "evocative": [["Y", "P"]], - "evocations": null, - "evocation's": null, - "evocativeness": [["M"]], - "evocativeness's": null, - "evocatively": null, - "evoke": [["S", "D", "G"]], - "evokes": null, - "evoked": null, - "evoking": null, - "evolute": [["N", "M", "X", "S"]], - "evolution": [["M"]], - "evolute's": null, - "evolutions": null, - "evolutes": null, - "evolutionarily": null, - "evolutionary": null, - "evolutionist": [["M", "S"]], - "evolutionist's": null, - "evolutionists": null, - "evolution's": null, - "evolve": [["S", "D", "G"]], - "evolves": null, - "evolved": null, - "evolving": null, - "Evonne": [["M"]], - "Evonne's": null, - "Evvie": [["M"]], - "Evvie's": null, - "Evvy": [["M"]], - "Evvy's": null, - "Evy": [["M"]], - "Evy's": null, - "Evyn": [["M"]], - "Evyn's": null, - "Ewan": [["M"]], - "Ewan's": null, - "Eward": [["M"]], - "Eward's": null, - "Ewart": [["M"]], - "Ewart's": null, - "Ewell": [["M"]], - "Ewell's": null, - "ewe": [["M", "Z", "R", "S"]], - "ewe's": null, - "ewers": null, - "ewer": [["M"]], - "ewes": null, - "Ewen": [["M"]], - "Ewen's": null, - "ewer's": null, - "Ewing": [["M"]], - "Ewing's": null, - "exacerbate": [["N", "G", "X", "D", "S"]], - "exacerbation": [["M"]], - "exacerbating": null, - "exacerbations": null, - "exacerbated": null, - "exacerbates": null, - "exacerbation's": null, - "exacter": [["M"]], - "exacter's": null, - "exactingness": [["M"]], - "exactingness's": null, - "exacting": [["Y", "P"]], - "exactingly": null, - "exaction": [["S", "M"]], - "exactions": null, - "exaction's": null, - "exactitude": [["I", "S", "M"]], - "inexactitude": null, - "inexactitudes": null, - "inexactitude's": null, - "exactitudes": null, - "exactitude's": null, - "exactly": [["I"]], - "inexactly": null, - "exactness": [["M", "S", "I"]], - "exactness's": null, - "inexactness's": null, - "exactnesses": null, - "inexactnesses": null, - "inexactness": null, - "exact": [["T", "G", "S", "P", "R", "D", "Y"]], - "exactest": null, - "exacts": null, - "exacted": null, - "exaggerate": [["D", "S", "X", "N", "G", "V"]], - "exaggerated": [["Y", "P"]], - "exaggerates": null, - "exaggerations": null, - "exaggeration": [["M"]], - "exaggerating": null, - "exaggerative": [["Y"]], - "exaggeratedly": null, - "exaggeratedness": null, - "exaggeration's": null, - "exaggeratively": null, - "exaggerator": [["M", "S"]], - "exaggerator's": null, - "exaggerators": null, - "exaltation": [["S", "M"]], - "exaltations": null, - "exaltation's": null, - "exalted": [["Y"]], - "exaltedly": null, - "exalter": [["M"]], - "exalter's": null, - "exalt": [["Z", "R", "D", "G", "S"]], - "exalters": null, - "exalting": null, - "exalts": null, - "examen": [["M"]], - "examen's": null, - "examination": [["A", "S"]], - "reexamination": null, - "reexaminations": null, - "examinations": null, - "examination's": null, - "examine": [["B", "G", "Z", "D", "R", "S"]], - "examinable": null, - "examining": [["A"]], - "examiners": null, - "examined": [["A", "U"]], - "examiner": [["M"]], - "examines": [["A"]], - "reexamined": null, - "unexamined": null, - "examinees": null, - "examiner's": null, - "reexamines": null, - "reexamining": null, - "exam": [["M", "N", "S"]], - "exam's": null, - "exams": null, - "example": [["D", "S", "G", "M"]], - "exampled": [["U"]], - "examples": null, - "exampling": null, - "example's": null, - "unexampled": null, - "exasperate": [["D", "S", "X", "G", "N"]], - "exasperated": [["Y"]], - "exasperates": null, - "exasperations": null, - "exasperating": [["Y"]], - "exasperation": [["M"]], - "exasperatedly": null, - "exasperatingly": null, - "exasperation's": null, - "Excalibur": [["M"]], - "Excalibur's": null, - "excavate": [["N", "G", "D", "S", "X"]], - "excavation": [["M"]], - "excavating": null, - "excavated": null, - "excavates": null, - "excavations": null, - "excavation's": null, - "excavator": [["S", "M"]], - "excavators": null, - "excavator's": null, - "Excedrin": [["M"]], - "Excedrin's": null, - "exceeder": [["M"]], - "exceeder's": null, - "exceeding": [["Y"]], - "exceedingly": null, - "exceed": [["S", "G", "D", "R"]], - "exceeds": null, - "exceeded": null, - "excelled": null, - "excellence": [["S", "M"]], - "excellences": null, - "excellence's": null, - "excellency": [["M", "S"]], - "excellency's": null, - "excellencies": null, - "Excellency": [["M", "S"]], - "Excellency's": null, - "Excellencies": null, - "excellent": [["Y"]], - "excellently": null, - "excelling": null, - "excel": [["S"]], - "excels": null, - "excelsior": [["S"]], - "excelsiors": null, - "except": [["D", "S", "G", "V"]], - "excepted": null, - "excepts": null, - "excepting": null, - "exceptive": null, - "exceptionable": [["U"]], - "unexceptionable": null, - "exceptionalness": [["M"]], - "exceptionalness's": null, - "exceptional": [["Y", "U"]], - "exceptionally": null, - "unexceptionally": null, - "unexceptional": null, - "exception": [["B", "M", "S"]], - "exception's": null, - "exceptions": null, - "excerpter": [["M"]], - "excerpter's": null, - "excerpt": [["G", "M", "D", "R", "S"]], - "excerpting": null, - "excerpt's": null, - "excerpted": null, - "excerpts": null, - "excess": [["G", "V", "D", "S", "M"]], - "excessing": null, - "excessive": [["P", "Y"]], - "excessed": null, - "excesses": null, - "excess's": null, - "excessiveness": [["M"]], - "excessiveness's": null, - "excessively": null, - "exchangeable": null, - "exchange": [["G", "D", "R", "S", "Z"]], - "exchanging": null, - "exchanged": null, - "exchanger": [["M"]], - "exchanges": null, - "exchangers": null, - "exchanger's": null, - "exchequer": [["S", "M"]], - "exchequers": null, - "exchequer's": null, - "Exchequer": [["S", "M"]], - "Exchequers": null, - "Exchequer's": null, - "excise": [["X", "M", "S", "D", "N", "G", "B"]], - "excisions": null, - "excise's": null, - "excises": null, - "excised": null, - "excision": [["M"]], - "excising": null, - "excisable": null, - "excision's": null, - "excitability": [["M", "S"]], - "excitability's": null, - "excitabilities": null, - "excitableness": [["M"]], - "excitableness's": null, - "excitable": [["P"]], - "excitably": null, - "excitation": [["S", "M"]], - "excitations": null, - "excitation's": null, - "excitatory": null, - "excited": [["Y"]], - "excitedly": null, - "excitement": [["M", "S"]], - "excitement's": null, - "excitements": null, - "exciter": [["M"]], - "exciter's": null, - "excite": [["R", "S", "D", "L", "B", "Z", "G"]], - "excites": null, - "exciters": null, - "exciting": [["U"]], - "excitingly": null, - "unexciting": null, - "exciton": [["M"]], - "exciton's": null, - "exclaimer": [["M"]], - "exclaimer's": null, - "exclaim": [["S", "Z", "D", "R", "G"]], - "exclaims": null, - "exclaimers": null, - "exclaimed": null, - "exclaiming": null, - "exclamation": [["M", "S"]], - "exclamation's": null, - "exclamations": null, - "exclamatory": null, - "exclude": [["D", "R", "S", "G"]], - "excluded": null, - "excluder": [["M"]], - "excludes": null, - "excluding": null, - "excluder's": null, - "exclusionary": null, - "exclusioner": [["M"]], - "exclusioner's": null, - "exclusion": [["S", "Z", "M", "R"]], - "exclusions": null, - "exclusioners": null, - "exclusion's": null, - "exclusiveness": [["S", "M"]], - "exclusivenesses": null, - "exclusiveness's": null, - "exclusive": [["S", "P", "Y"]], - "exclusives": null, - "exclusively": null, - "exclusivity": [["M", "S"]], - "exclusivity's": null, - "exclusivities": null, - "excommunicate": [["X", "V", "N", "G", "S", "D"]], - "excommunications": null, - "excommunicative": null, - "excommunication": [["M"]], - "excommunicating": null, - "excommunicates": null, - "excommunicated": null, - "excommunication's": null, - "excoriate": [["G", "N", "X", "S", "D"]], - "excoriating": null, - "excoriation": [["M"]], - "excoriations": null, - "excoriates": null, - "excoriated": null, - "excoriation's": null, - "excremental": null, - "excrement": [["S", "M"]], - "excrements": null, - "excrement's": null, - "excrescence": [["M", "S"]], - "excrescence's": null, - "excrescences": null, - "excrescent": null, - "excreta": null, - "excrete": [["N", "G", "D", "R", "S", "X"]], - "excretion": [["M"]], - "excreting": null, - "excreted": null, - "excreter": [["M"]], - "excretes": null, - "excretions": null, - "excreter's": null, - "excretion's": null, - "excretory": [["S"]], - "excretories": null, - "excruciate": [["N", "G", "D", "S"]], - "excruciation": [["M"]], - "excruciating": [["Y"]], - "excruciated": null, - "excruciates": null, - "excruciatingly": null, - "excruciation's": null, - "exculpate": [["X", "S", "D", "G", "N"]], - "exculpations": null, - "exculpates": null, - "exculpated": null, - "exculpating": null, - "exculpation": [["M"]], - "exculpation's": null, - "exculpatory": null, - "excursionist": [["S", "M"]], - "excursionists": null, - "excursionist's": null, - "excursion": [["M", "S"]], - "excursion's": null, - "excursions": null, - "excursiveness": [["S", "M"]], - "excursivenesses": null, - "excursiveness's": null, - "excursive": [["P", "Y"]], - "excursively": null, - "excursus": [["M", "S"]], - "excursus's": null, - "excursuses": null, - "excusable": [["I", "P"]], - "inexcusable": null, - "inexcusableness": null, - "excusableness": [["I", "M"]], - "inexcusableness's": null, - "excusableness's": null, - "excusably": [["I"]], - "inexcusably": null, - "excuse": [["B", "G", "R", "S", "D"]], - "excusing": null, - "excuser": [["M"]], - "excuses": null, - "excused": [["U"]], - "unexcused": null, - "excuser's": null, - "exec": [["M", "S"]], - "exec's": null, - "execs": null, - "execrableness": [["M"]], - "execrableness's": null, - "execrable": [["P"]], - "execrably": null, - "execrate": [["D", "S", "X", "N", "G", "V"]], - "execrated": null, - "execrates": null, - "execrations": null, - "execration": [["M"]], - "execrating": null, - "execrative": null, - "execration's": null, - "executable": [["M", "S"]], - "executable's": null, - "executables": null, - "execute": [["N", "G", "V", "Z", "B", "X", "D", "R", "S"]], - "execution": [["Z", "M", "R"]], - "executing": null, - "executive": [["S", "M"]], - "executers": null, - "executions": null, - "executed": null, - "executer": [["M"]], - "executes": null, - "executer's": null, - "executional": null, - "executioner": [["M"]], - "executioner's": null, - "executioners": null, - "execution's": null, - "executives": null, - "executive's": null, - "executor": [["S", "M"]], - "executors": null, - "executor's": null, - "executrices": null, - "executrix": [["M"]], - "executrix's": null, - "exegeses": null, - "exegesis": [["M"]], - "exegesis's": null, - "exegete": [["M"]], - "exegete's": null, - "exegetical": null, - "exegetic": [["S"]], - "exegetics": null, - "exemplariness": [["M"]], - "exemplariness's": null, - "exemplar": [["M", "S"]], - "exemplar's": null, - "exemplars": null, - "exemplary": [["P"]], - "exemplification": [["M"]], - "exemplification's": null, - "exemplifier": [["M"]], - "exemplifier's": null, - "exemplify": [["Z", "X", "N", "S", "R", "D", "G"]], - "exemplifiers": null, - "exemplifications": null, - "exemplifies": null, - "exemplified": null, - "exemplifying": null, - "exemption": [["M", "S"]], - "exemption's": null, - "exemptions": null, - "exempt": [["S", "D", "G"]], - "exempts": null, - "exempted": null, - "exempting": null, - "exerciser": [["M"]], - "exerciser's": null, - "exercise": [["Z", "D", "R", "S", "G", "B"]], - "exercisers": null, - "exercised": null, - "exercises": null, - "exercising": null, - "exercisable": null, - "exertion": [["M", "S"]], - "exertion's": null, - "exertions": null, - "exert": [["S", "G", "D"]], - "exerts": null, - "exerting": null, - "exerted": null, - "Exeter": [["M"]], - "Exeter's": null, - "exeunt": null, - "exhalation": [["S", "M"]], - "exhalations": null, - "exhalation's": null, - "exhale": [["G", "S", "D"]], - "exhaling": null, - "exhales": null, - "exhaled": null, - "exhausted": [["Y"]], - "exhaustedly": null, - "exhauster": [["M"]], - "exhauster's": null, - "exhaustible": [["I"]], - "inexhaustible": [["P"]], - "exhausting": [["Y"]], - "exhaustingly": null, - "exhaustion": [["S", "M"]], - "exhaustions": null, - "exhaustion's": null, - "exhaustiveness": [["M", "S"]], - "exhaustiveness's": null, - "exhaustivenesses": null, - "exhaustive": [["Y", "P"]], - "exhaustively": null, - "exhaust": [["V", "G", "R", "D", "S"]], - "exhausts": null, - "exhibitioner": [["M"]], - "exhibitioner's": null, - "exhibitionism": [["M", "S"]], - "exhibitionism's": null, - "exhibitionisms": null, - "exhibitionist": [["M", "S"]], - "exhibitionist's": null, - "exhibitionists": null, - "exhibition": [["Z", "M", "R", "S"]], - "exhibitioners": null, - "exhibition's": null, - "exhibitions": null, - "exhibitor": [["S", "M"]], - "exhibitors": null, - "exhibitor's": null, - "exhibit": [["V", "G", "S", "D"]], - "exhibitive": null, - "exhibiting": null, - "exhibits": null, - "exhibited": null, - "exhilarate": [["X", "S", "D", "V", "N", "G"]], - "exhilarations": null, - "exhilarates": null, - "exhilarated": null, - "exhilarative": null, - "exhilaration": [["M"]], - "exhilarating": [["Y"]], - "exhilaratingly": null, - "exhilaration's": null, - "exhortation": [["S", "M"]], - "exhortations": null, - "exhortation's": null, - "exhort": [["D", "R", "S", "G"]], - "exhorted": null, - "exhorter": [["M"]], - "exhorts": null, - "exhorting": null, - "exhorter's": null, - "exhumation": [["S", "M"]], - "exhumations": null, - "exhumation's": null, - "exhume": [["G", "R", "S", "D"]], - "exhuming": null, - "exhumer": [["M"]], - "exhumes": null, - "exhumed": null, - "exhumer's": null, - "exigence": [["S"]], - "exigences": null, - "exigency": [["S", "M"]], - "exigencies": null, - "exigency's": null, - "exigent": [["S", "Y"]], - "exigents": null, - "exigently": null, - "exiguity": [["S", "M"]], - "exiguities": null, - "exiguity's": null, - "exiguous": null, - "exile": [["S", "D", "G", "M"]], - "exiles": null, - "exiled": null, - "exiling": null, - "exile's": null, - "existence": [["M", "S"]], - "existence's": null, - "existences": null, - "existent": [["I"]], - "inexistent": null, - "existentialism": [["M", "S"]], - "existentialism's": null, - "existentialisms": null, - "existentialistic": null, - "existentialist": [["M", "S"]], - "existentialist's": null, - "existentialists": null, - "existential": [["Y"]], - "existentially": null, - "existents": null, - "exist": [["S", "D", "G"]], - "exists": null, - "existed": null, - "existing": null, - "exit": [["M", "D", "S", "G"]], - "exit's": null, - "exited": null, - "exits": null, - "exiting": null, - "exobiology": [["M", "S"]], - "exobiology's": null, - "exobiologies": null, - "exocrine": null, - "Exodus": [["M"]], - "Exodus's": null, - "exodus": [["S", "M"]], - "exoduses": null, - "exodus's": null, - "exogamous": null, - "exogamy": [["M"]], - "exogamy's": null, - "exogenous": [["Y"]], - "exogenously": null, - "exonerate": [["S", "D", "V", "G", "N", "X"]], - "exonerates": null, - "exonerated": null, - "exonerative": null, - "exonerating": null, - "exoneration": [["M"]], - "exonerations": null, - "exoneration's": null, - "exorbitance": [["M", "S"]], - "exorbitance's": null, - "exorbitances": null, - "exorbitant": [["Y"]], - "exorbitantly": null, - "exorcise": [["S", "D", "G"]], - "exorcises": null, - "exorcised": null, - "exorcising": null, - "exorcism": [["S", "M"]], - "exorcisms": null, - "exorcism's": null, - "exorcist": [["S", "M"]], - "exorcists": null, - "exorcist's": null, - "exorcizer": [["M"]], - "exorcizer's": null, - "exoskeleton": [["M", "S"]], - "exoskeleton's": null, - "exoskeletons": null, - "exosphere": [["S", "M"]], - "exospheres": null, - "exosphere's": null, - "exothermic": null, - "exothermically": null, - "exotica": null, - "exotically": null, - "exoticism": [["S", "M"]], - "exoticisms": null, - "exoticism's": null, - "exoticness": [["M"]], - "exoticness's": null, - "exotic": [["P", "S"]], - "exotics": null, - "exp": null, - "expandability": [["M"]], - "expandability's": null, - "expand": [["D", "R", "S", "G", "Z", "B"]], - "expanded": [["U"]], - "expander": [["M"]], - "expands": null, - "expanding": null, - "expanders": null, - "expandable": null, - "unexpanded": null, - "expander's": null, - "expanse": [["D", "S", "X", "G", "N", "V", "M"]], - "expansed": null, - "expanses": null, - "expansions": null, - "expansing": null, - "expansion": [["M"]], - "expansive": [["Y", "P"]], - "expanse's": null, - "expansible": null, - "expansionary": null, - "expansionism": [["M", "S"]], - "expansionism's": null, - "expansionisms": null, - "expansionist": [["M", "S"]], - "expansionist's": null, - "expansionists": null, - "expansion's": null, - "expansiveness": [["S"]], - "expansivenesses": null, - "expansively": null, - "expatiate": [["X", "S", "D", "N", "G"]], - "expatiations": null, - "expatiates": null, - "expatiated": null, - "expatiation": [["M"]], - "expatiating": null, - "expatiation's": null, - "expatriate": [["S", "D", "N", "G", "X"]], - "expatriates": null, - "expatriated": null, - "expatriation": [["M"]], - "expatriating": null, - "expatriations": null, - "expatriation's": null, - "expectancy": [["M", "S"]], - "expectancy's": null, - "expectancies": null, - "expectant": [["Y", "S"]], - "expectantly": null, - "expectants": null, - "expectational": null, - "expectation": [["M", "S"]], - "expectation's": null, - "expectations": null, - "expected": [["U", "P", "Y"]], - "unexpected": null, - "unexpectedness": [["M", "S"]], - "unexpectedly": null, - "expectedness": null, - "expectedly": null, - "expecting": [["Y"]], - "expectingly": null, - "expectorant": [["S"]], - "expectorants": null, - "expectorate": [["N", "G", "X", "D", "S"]], - "expectoration": [["M"]], - "expectorating": null, - "expectorations": null, - "expectorated": null, - "expectorates": null, - "expectoration's": null, - "expect": [["S", "B", "G", "D"]], - "expects": null, - "expectable": null, - "expedience": [["I", "S"]], - "inexpedience": [["M"]], - "inexpediences": null, - "expediences": null, - "expediency": [["I", "M", "S"]], - "inexpediency": null, - "inexpediency's": null, - "inexpediencies": null, - "expediency's": null, - "expediencies": null, - "expedients": null, - "expedient": [["Y", "I"]], - "expediently": null, - "inexpediently": null, - "inexpedient": null, - "expediter": [["M"]], - "expediter's": null, - "expedite": [["Z", "D", "R", "S", "N", "G", "X"]], - "expediters": null, - "expedited": null, - "expedites": null, - "expedition": [["M"]], - "expediting": null, - "expeditions": null, - "expeditionary": null, - "expedition's": null, - "expeditiousness": [["M", "S"]], - "expeditiousness's": null, - "expeditiousnesses": null, - "expeditious": [["Y", "P"]], - "expeditiously": null, - "expeditor's": null, - "expellable": null, - "expelled": null, - "expelling": null, - "expel": [["S"]], - "expels": null, - "expendable": [["S"]], - "expendables": null, - "expended": [["U"]], - "unexpended": null, - "expender": [["M"]], - "expender's": null, - "expenditure": [["S", "M"]], - "expenditures": null, - "expenditure's": null, - "expend": [["S", "D", "R", "G", "B"]], - "expends": null, - "expending": null, - "expense": [["D", "S", "G", "V", "M"]], - "expensed": null, - "expenses": null, - "expensing": null, - "expensive": [["I", "Y", "P"]], - "expense's": null, - "inexpensive": null, - "inexpensively": null, - "inexpensiveness": null, - "expensively": null, - "expensiveness": [["S", "M", "I"]], - "expensivenesses": null, - "inexpensivenesses": null, - "expensiveness's": null, - "inexpensiveness's": null, - "experienced": [["U"]], - "unexperienced": null, - "experience": [["I", "S", "D", "M"]], - "inexperience": null, - "inexperiences": null, - "inexperienced": null, - "inexperience's": null, - "experiences": null, - "experience's": null, - "experiencing": null, - "experiential": [["Y"]], - "experientially": null, - "experimentalism": [["M"]], - "experimentalism's": null, - "experimentalist": [["S", "M"]], - "experimentalists": null, - "experimentalist's": null, - "experimental": [["Y"]], - "experimentally": null, - "experimentation": [["S", "M"]], - "experimentations": null, - "experimentation's": null, - "experimenter": [["M"]], - "experimenter's": null, - "experiment": [["G", "S", "M", "D", "R", "Z"]], - "experimenting": null, - "experiments": null, - "experiment's": null, - "experimented": null, - "experimenters": null, - "experted": null, - "experting": null, - "expertise": [["S", "M"]], - "expertises": null, - "expertise's": null, - "expertize": [["G", "D"]], - "expertizing": null, - "expertized": null, - "expertnesses": null, - "expertness": [["I", "M"]], - "inexpertness": null, - "inexpertness's": null, - "expertness's": null, - "expert": [["P", "I", "S", "Y"]], - "inexpert": null, - "inexperts": null, - "inexpertly": null, - "experts": null, - "expertly": null, - "expert's": null, - "expiable": [["I"]], - "inexpiable": null, - "expiate": [["X", "G", "N", "D", "S"]], - "expiations": null, - "expiating": null, - "expiation": [["M"]], - "expiated": null, - "expiates": null, - "expiation's": null, - "expiatory": null, - "expiration": [["M", "S"]], - "expiration's": null, - "expirations": null, - "expired": [["U"]], - "unexpired": null, - "expire": [["S", "D", "G"]], - "expires": null, - "expiring": null, - "expiry": [["M", "S"]], - "expiry's": null, - "expiries": null, - "explainable": [["U", "I"]], - "unexplainable": null, - "inexplainable": null, - "explain": [["A", "D", "S", "G"]], - "reexplain": null, - "reexplained": null, - "reexplains": null, - "reexplaining": null, - "explained": [["U"]], - "explains": null, - "explaining": null, - "unexplained": null, - "explainer": [["S", "M"]], - "explainers": null, - "explainer's": null, - "explanation": [["M", "S"]], - "explanation's": null, - "explanations": null, - "explanatory": null, - "expletive": [["S", "M"]], - "expletives": null, - "expletive's": null, - "explicable": [["I"]], - "inexplicable": [["P"]], - "explicate": [["V", "G", "N", "S", "D", "X"]], - "explicative": [["Y"]], - "explicating": null, - "explication": [["M"]], - "explicates": null, - "explicated": null, - "explications": null, - "explication's": null, - "explicatively": null, - "explicitness": [["S", "M"]], - "explicitnesses": null, - "explicitness's": null, - "explicit": [["P", "S", "Y"]], - "explicits": null, - "explicitly": null, - "explode": [["D", "S", "R", "G", "Z"]], - "exploded": [["U"]], - "explodes": null, - "exploder": [["M"]], - "exploding": null, - "exploders": null, - "unexploded": null, - "exploder's": null, - "exploitation": [["M", "S"]], - "exploitation's": null, - "exploitations": null, - "exploitative": null, - "exploited": [["U"]], - "unexploited": null, - "exploiter": [["M"]], - "exploiter's": null, - "exploit": [["Z", "G", "V", "S", "M", "D", "R", "B"]], - "exploiters": null, - "exploiting": null, - "exploitive": null, - "exploits": null, - "exploit's": null, - "exploitable": null, - "exploration": [["M", "S"]], - "exploration's": null, - "explorations": null, - "exploratory": null, - "explore": [["D", "S", "R", "B", "G", "Z"]], - "explored": [["U"]], - "explores": null, - "explorer": [["M"]], - "explorable": null, - "exploring": null, - "explorers": null, - "unexplored": null, - "explorer's": null, - "explosion": [["M", "S"]], - "explosion's": null, - "explosions": null, - "explosiveness": [["S", "M"]], - "explosivenesses": null, - "explosiveness's": null, - "explosive": [["Y", "P", "S"]], - "explosively": null, - "explosives": null, - "expo": [["M", "S"]], - "expo's": null, - "expos": [["R", "S", "D", "Z", "G"]], - "exponential": [["S", "Y"]], - "exponentials": null, - "exponentially": null, - "exponentiate": [["X", "S", "D", "N", "G"]], - "exponentiations": null, - "exponentiates": null, - "exponentiated": null, - "exponentiation": [["M"]], - "exponentiating": null, - "exponentiation's": null, - "exponent": [["M", "S"]], - "exponent's": null, - "exponents": null, - "exportability": null, - "exportable": null, - "export": [["A", "G", "S", "D"]], - "reexport": null, - "reexporting": null, - "reexports": null, - "reexported": null, - "exporting": null, - "exports": null, - "exported": null, - "exportation": [["S", "M"]], - "exportations": null, - "exportation's": null, - "exporter": [["M", "S"]], - "exporter's": null, - "exporters": null, - "export's": null, - "expose": null, - "exposed": [["U"]], - "unexposed": null, - "exposer": [["M"]], - "exposer's": null, - "exposit": [["D"]], - "exposited": null, - "exposition": [["S", "M"]], - "expositions": null, - "exposition's": null, - "expositor": [["M", "S"]], - "expositor's": null, - "expositors": null, - "expository": null, - "exposes": null, - "exposers": null, - "exposing": null, - "expostulate": [["D", "S", "X", "N", "G"]], - "expostulated": null, - "expostulates": null, - "expostulations": null, - "expostulation": [["M"]], - "expostulating": null, - "expostulation's": null, - "exposure": [["S", "M"]], - "exposures": null, - "exposure's": null, - "expounder": [["M"]], - "expounder's": null, - "expound": [["Z", "G", "S", "D", "R"]], - "expounders": null, - "expounding": null, - "expounds": null, - "expounded": null, - "expressed": [["U"]], - "unexpressed": null, - "expresser": [["M"]], - "expresser's": null, - "express": [["G", "V", "D", "R", "S", "Y"]], - "expressing": null, - "expressive": [["I", "Y", "P"]], - "expresses": null, - "expressly": null, - "expressibility": [["I"]], - "inexpressibility": [["M"]], - "expressible": [["I"]], - "inexpressible": [["P", "S"]], - "expressibly": [["I"]], - "inexpressibly": null, - "expressionism": [["S", "M"]], - "expressionisms": null, - "expressionism's": null, - "expressionistic": null, - "expressionist": [["S"]], - "expressionists": null, - "expressionless": [["Y", "P"]], - "expressionlessly": null, - "expressionlessness": null, - "expression": [["M", "S"]], - "expression's": null, - "expressions": null, - "inexpressive": null, - "inexpressively": null, - "inexpressiveness": null, - "expressively": null, - "expressiveness": [["M", "S"]], - "expressiveness's": [["I"]], - "expressivenesses": null, - "inexpressiveness's": null, - "expressway": [["S", "M"]], - "expressways": null, - "expressway's": null, - "expropriate": [["X", "D", "S", "G", "N"]], - "expropriations": null, - "expropriated": null, - "expropriates": null, - "expropriating": null, - "expropriation": [["M"]], - "expropriation's": null, - "expropriator": [["S", "M"]], - "expropriators": null, - "expropriator's": null, - "expulsion": [["M", "S"]], - "expulsion's": null, - "expulsions": null, - "expunge": [["G", "D", "S", "R"]], - "expunging": null, - "expunged": null, - "expunges": null, - "expunger": [["M"]], - "expunger's": null, - "expurgated": [["U"]], - "unexpurgated": null, - "expurgate": [["S", "D", "G", "N", "X"]], - "expurgates": null, - "expurgating": null, - "expurgation": [["M"]], - "expurgations": null, - "expurgation's": null, - "exquisiteness": [["S", "M"]], - "exquisitenesses": null, - "exquisiteness's": null, - "exquisite": [["Y", "P", "S"]], - "exquisitely": null, - "exquisites": null, - "ex": [["S"]], - "exes": null, - "ext": null, - "extant": null, - "extemporaneousness": [["M", "S"]], - "extemporaneousness's": null, - "extemporaneousnesses": null, - "extemporaneous": [["Y", "P"]], - "extemporaneously": null, - "extempore": [["S"]], - "extempores": null, - "extemporization": [["S", "M"]], - "extemporizations": null, - "extemporization's": null, - "extemporizer": [["M"]], - "extemporizer's": null, - "extemporize": [["Z", "G", "S", "R", "D"]], - "extemporizers": null, - "extemporizing": null, - "extemporizes": null, - "extemporized": null, - "extendability": [["M"]], - "extendability's": null, - "extendedly": null, - "extendedness": [["M"]], - "extendedness's": null, - "extended": [["U"]], - "unextended": null, - "extender": [["M"]], - "extender's": null, - "extendibility": [["M"]], - "extendibility's": null, - "extendibles": null, - "extend": [["S", "G", "Z", "D", "R"]], - "extends": null, - "extending": null, - "extenders": null, - "extensibility": [["M"]], - "extensibility's": null, - "extensible": [["I"]], - "inextensible": null, - "extensional": [["Y"]], - "extensionally": null, - "extension": [["S", "M"]], - "extensions": null, - "extension's": null, - "extensiveness": [["S", "M"]], - "extensivenesses": null, - "extensiveness's": null, - "extensive": [["P", "Y"]], - "extensively": null, - "extensor": [["M", "S"]], - "extensor's": null, - "extensors": null, - "extent": [["S", "M"]], - "extents": null, - "extent's": null, - "extenuate": [["X", "S", "D", "G", "N"]], - "extenuations": null, - "extenuates": null, - "extenuated": null, - "extenuating": null, - "extenuation": [["M"]], - "extenuation's": null, - "exterior": [["M", "Y", "S"]], - "exterior's": null, - "exteriorly": null, - "exteriors": null, - "exterminate": [["X", "N", "G", "D", "S"]], - "exterminations": null, - "extermination": [["M"]], - "exterminating": null, - "exterminated": null, - "exterminates": null, - "extermination's": null, - "exterminator": [["S", "M"]], - "exterminators": null, - "exterminator's": null, - "externalities": null, - "externalization": [["S", "M"]], - "externalizations": null, - "externalization's": null, - "externalize": [["G", "D", "S"]], - "externalizing": null, - "externalized": null, - "externalizes": null, - "external": [["Y", "S"]], - "externally": null, - "externals": null, - "extern": [["M"]], - "extern's": null, - "extinct": [["D", "G", "V", "S"]], - "extincted": null, - "extincting": null, - "extinctive": null, - "extincts": null, - "extinction": [["M", "S"]], - "extinction's": null, - "extinctions": null, - "extinguishable": [["I"]], - "inextinguishable": null, - "extinguish": [["B", "Z", "G", "D", "R", "S"]], - "extinguishers": null, - "extinguishing": null, - "extinguished": null, - "extinguisher": [["M"]], - "extinguishes": null, - "extinguisher's": null, - "extirpate": [["X", "S", "D", "V", "N", "G"]], - "extirpations": null, - "extirpates": null, - "extirpated": null, - "extirpative": null, - "extirpation": [["M"]], - "extirpating": null, - "extirpation's": null, - "extolled": null, - "extoller": [["M"]], - "extoller's": null, - "extolling": null, - "extol": [["S"]], - "extols": null, - "extort": [["D", "R", "S", "G", "V"]], - "extorted": null, - "extorter": [["M"]], - "extorts": null, - "extorting": null, - "extortive": null, - "extorter's": null, - "extortionate": [["Y"]], - "extortionately": null, - "extortioner": [["M"]], - "extortioner's": null, - "extortionist": [["S", "M"]], - "extortionists": null, - "extortionist's": null, - "extortion": [["Z", "S", "R", "M"]], - "extortioners": null, - "extortions": null, - "extortion's": null, - "extracellular": [["Y"]], - "extracellularly": null, - "extract": [["G", "V", "S", "B", "D"]], - "extracting": null, - "extractive": [["Y"]], - "extracts": null, - "extractable": null, - "extracted": null, - "extraction": [["S", "M"]], - "extractions": null, - "extraction's": null, - "extractively": null, - "extractor": [["S", "M"]], - "extractors": null, - "extractor's": null, - "extracurricular": [["S"]], - "extracurriculars": null, - "extradite": [["X", "N", "G", "S", "D", "B"]], - "extraditions": null, - "extradition": [["M"]], - "extraditing": null, - "extradites": null, - "extradited": null, - "extraditable": null, - "extradition's": null, - "extragalactic": null, - "extralegal": [["Y"]], - "extralegally": null, - "extramarital": null, - "extramural": null, - "extraneousness": [["M"]], - "extraneousness's": null, - "extraneous": [["Y", "P"]], - "extraneously": null, - "extraordinarily": null, - "extraordinariness": [["M"]], - "extraordinariness's": null, - "extraordinary": [["P", "S"]], - "extraordinaries": null, - "extrapolate": [["X", "V", "G", "N", "S", "D"]], - "extrapolations": null, - "extrapolative": null, - "extrapolating": null, - "extrapolation": [["M"]], - "extrapolates": null, - "extrapolated": null, - "extrapolation's": null, - "extra": [["S"]], - "extras": null, - "extrasensory": null, - "extraterrestrial": [["S"]], - "extraterrestrials": null, - "extraterritorial": null, - "extraterritoriality": [["M", "S"]], - "extraterritoriality's": null, - "extraterritorialities": null, - "extravagance": [["M", "S"]], - "extravagance's": null, - "extravagances": null, - "extravagant": [["Y"]], - "extravagantly": null, - "extravaganza": [["S", "M"]], - "extravaganzas": null, - "extravaganza's": null, - "extravehicular": null, - "extravert's": null, - "extrema": null, - "extremal": null, - "extreme": [["D", "S", "R", "Y", "T", "P"]], - "extremed": null, - "extremes": null, - "extremer": null, - "extremely": null, - "extremest": null, - "extremeness": [["M", "S"]], - "extremeness's": null, - "extremenesses": null, - "extremism": [["S", "M"]], - "extremisms": null, - "extremism's": null, - "extremist": [["M", "S"]], - "extremist's": null, - "extremists": null, - "extremity": [["S", "M"]], - "extremities": null, - "extremity's": null, - "extricable": [["I"]], - "inextricable": null, - "extricate": [["X", "S", "D", "N", "G"]], - "extrications": null, - "extricates": null, - "extricated": null, - "extrication": [["M"]], - "extricating": null, - "extrication's": null, - "extrinsic": null, - "extrinsically": null, - "extroversion": [["S", "M"]], - "extroversions": null, - "extroversion's": null, - "extrovert": [["G", "M", "D", "S"]], - "extroverting": null, - "extrovert's": null, - "extroverted": null, - "extroverts": null, - "extrude": [["G", "D", "S", "R"]], - "extruding": null, - "extruded": null, - "extrudes": null, - "extruder": [["M"]], - "extruder's": null, - "extrusion": [["M", "S"]], - "extrusion's": null, - "extrusions": null, - "extrusive": null, - "exuberance": [["M", "S"]], - "exuberance's": null, - "exuberances": null, - "exuberant": [["Y"]], - "exuberantly": null, - "exudate": [["X", "N", "M"]], - "exudations": null, - "exudation": [["M"]], - "exudate's": null, - "exudation's": null, - "exude": [["G", "S", "D"]], - "exuding": null, - "exudes": null, - "exuded": null, - "exultant": [["Y"]], - "exultantly": null, - "exultation": [["S", "M"]], - "exultations": null, - "exultation's": null, - "exult": [["D", "G", "S"]], - "exulted": null, - "exulting": [["Y"]], - "exults": null, - "exultingly": null, - "exurban": null, - "exurbanite": [["S", "M"]], - "exurbanites": null, - "exurbanite's": null, - "exurbia": [["M", "S"]], - "exurbia's": null, - "exurbias": null, - "exurb": [["M", "S"]], - "exurb's": null, - "exurbs": null, - "Exxon": [["M"]], - "Exxon's": null, - "Eyck": [["M"]], - "Eyck's": null, - "Eyde": [["M"]], - "Eyde's": null, - "Eydie": [["M"]], - "Eydie's": null, - "eyeball": [["G", "S", "M", "D"]], - "eyeballing": null, - "eyeballs": null, - "eyeball's": null, - "eyeballed": null, - "eyebrow": [["M", "S"]], - "eyebrow's": null, - "eyebrows": null, - "eyed": [["P"]], - "eyedness": null, - "eyedropper": [["M", "S"]], - "eyedropper's": null, - "eyedroppers": null, - "eyeful": [["M", "S"]], - "eyeful's": null, - "eyefuls": null, - "eye": [["G", "D", "R", "S", "M", "Z"]], - "eying": null, - "eyer": [["M"]], - "eyes": null, - "eye's": null, - "eyers": null, - "eyeglass": [["M", "S"]], - "eyeglass's": null, - "eyeglasses": null, - "eyelash": [["M", "S"]], - "eyelash's": null, - "eyelashes": null, - "eyeless": null, - "eyelet": [["G", "S", "M", "D"]], - "eyeleting": null, - "eyelets": null, - "eyelet's": null, - "eyeleted": null, - "eyelid": [["S", "M"]], - "eyelids": null, - "eyelid's": null, - "eyeliner": [["M", "S"]], - "eyeliner's": null, - "eyeliners": null, - "eyeopener": [["M", "S"]], - "eyeopener's": null, - "eyeopeners": null, - "eyeopening": null, - "eyepiece": [["S", "M"]], - "eyepieces": null, - "eyepiece's": null, - "eyer's": null, - "eyeshadow": null, - "eyesight": [["M", "S"]], - "eyesight's": null, - "eyesights": null, - "eyesore": [["S", "M"]], - "eyesores": null, - "eyesore's": null, - "eyestrain": [["M", "S"]], - "eyestrain's": null, - "eyestrains": null, - "eyeteeth": null, - "eyetooth": [["M"]], - "eyetooth's": null, - "eyewash": [["M", "S"]], - "eyewash's": null, - "eyewashes": null, - "eyewitness": [["S", "M"]], - "eyewitnesses": null, - "eyewitness's": null, - "Eyre": [["M"]], - "Eyre's": null, - "eyrie's": null, - "Eysenck": [["M"]], - "Eysenck's": null, - "Ezechiel": [["M"]], - "Ezechiel's": null, - "Ezekiel": [["M"]], - "Ezekiel's": null, - "Ezequiel": [["M"]], - "Ezequiel's": null, - "Eziechiele": [["M"]], - "Eziechiele's": null, - "Ezmeralda": [["M"]], - "Ezmeralda's": null, - "Ezra": [["M"]], - "Ezra's": null, - "Ezri": [["M"]], - "Ezri's": null, - "F": null, - "FAA": null, - "Fabe": [["M", "R"]], - "Fabe's": null, - "Faber": [["M"]], - "Faberg�": [["M"]], - "Faberg�'s": null, - "Faber's": null, - "Fabiano": [["M"]], - "Fabiano's": null, - "Fabian": [["S"]], - "Fabians": null, - "Fabien": [["M"]], - "Fabien's": null, - "Fabio": [["M"]], - "Fabio's": null, - "fable": [["G", "M", "S", "R", "D"]], - "fabling": null, - "fable's": null, - "fables": null, - "fabler": [["M"]], - "fabled": null, - "fabler's": null, - "fabricate": [["S", "D", "X", "N", "G"]], - "fabricates": null, - "fabricated": null, - "fabrications": null, - "fabrication": [["M"]], - "fabricating": null, - "fabrication's": null, - "fabricator": [["M", "S"]], - "fabricator's": null, - "fabricators": null, - "fabric": [["M", "S"]], - "fabric's": null, - "fabrics": null, - "fabulists": null, - "fabulousness": [["M"]], - "fabulousness's": null, - "fabulous": [["Y", "P"]], - "fabulously": null, - "facade": [["G", "M", "S", "D"]], - "facading": null, - "facade's": null, - "facades": null, - "facaded": null, - "face": [["A", "G", "C", "S", "D"]], - "reface": null, - "refacing": null, - "refaces": null, - "refaced": null, - "facing": [["M", "S"]], - "defacing": null, - "defaces": null, - "defaced": null, - "faces": null, - "faced": null, - "facecloth": null, - "facecloths": null, - "faceless": [["P"]], - "facelessness": null, - "faceplate": [["M"]], - "faceplate's": null, - "facer": [["C", "M"]], - "defacer": null, - "defacer's": null, - "facer's": null, - "face's": null, - "facetiousness": [["M", "S"]], - "facetiousness's": null, - "facetiousnesses": null, - "facetious": [["Y", "P"]], - "facetiously": null, - "facet": [["S", "G", "M", "D"]], - "facets": null, - "faceting": null, - "facet's": null, - "faceted": null, - "facial": [["Y", "S"]], - "facially": null, - "facials": null, - "facileness": [["M"]], - "facileness's": null, - "facile": [["Y", "P"]], - "facilely": null, - "facilitate": [["V", "N", "G", "X", "S", "D"]], - "facilitative": null, - "facilitation": [["M"]], - "facilitating": null, - "facilitations": null, - "facilitates": null, - "facilitated": null, - "facilitation's": null, - "facilitator": [["S", "M"]], - "facilitators": null, - "facilitator's": null, - "facilitatory": null, - "facility": [["M", "S"]], - "facility's": null, - "facilities": null, - "facing's": null, - "facings": null, - "facsimileing": null, - "facsimile": [["M", "S", "D"]], - "facsimile's": null, - "facsimiles": null, - "facsimiled": null, - "factional": null, - "factionalism": [["S", "M"]], - "factionalisms": null, - "factionalism's": null, - "faction": [["S", "M"]], - "factions": null, - "faction's": null, - "factiousness": [["M"]], - "factiousness's": null, - "factious": [["P", "Y"]], - "factiously": null, - "factitious": null, - "fact": [["M", "S"]], - "fact's": null, - "facts": null, - "facto": null, - "factoid": [["S"]], - "factoids": null, - "factorial": [["M", "S"]], - "factorial's": null, - "factorials": null, - "factoring": [["A"]], - "refactoring": null, - "factoring's": null, - "factorisable": null, - "factorization": [["S", "M"]], - "factorizations": null, - "factorization's": null, - "factorize": [["G", "S", "D"]], - "factorizing": null, - "factorizes": null, - "factorized": null, - "factor": [["S", "D", "M", "J", "G"]], - "factors": null, - "factored": null, - "factor's": null, - "factorings": null, - "factory": [["M", "S"]], - "factory's": null, - "factories": null, - "factotum": [["M", "S"]], - "factotum's": null, - "factotums": null, - "factuality": [["M"]], - "factuality's": null, - "factualness": [["M"]], - "factualness's": null, - "factual": [["P", "Y"]], - "factually": null, - "faculty": [["M", "S"]], - "faculty's": null, - "faculties": null, - "faddish": null, - "faddist": [["S", "M"]], - "faddists": null, - "faddist's": null, - "fadedly": null, - "faded": [["U"]], - "unfaded": null, - "fadeout": null, - "fader": [["M"]], - "fader's": null, - "fade": [["S"]], - "fades": null, - "fading's": null, - "fading": [["U"]], - "unfading": [["Y"]], - "fad": [["Z", "G", "S", "M", "D", "R"]], - "faders": null, - "fads": null, - "fad's": null, - "Fae": [["M"]], - "Fae's": null, - "faerie": [["M", "S"]], - "faerie's": null, - "faeries": null, - "Faeroe": [["M"]], - "Faeroe's": null, - "faery's": null, - "Fafnir": [["M"]], - "Fafnir's": null, - "fagged": null, - "fagging": null, - "faggoting's": null, - "Fagin": [["M"]], - "Fagin's": null, - "fag": [["M", "S"]], - "fag's": null, - "fags": null, - "fagoting": [["M"]], - "fagoting's": null, - "fagot": [["M", "D", "S", "J", "G"]], - "fagot's": null, - "fagoted": null, - "fagots": null, - "fagotings": null, - "Fahd": [["M"]], - "Fahd's": null, - "Fahrenheit": [["S"]], - "Fahrenheits": null, - "fa�ence": [["S"]], - "fa�ences": null, - "failing's": null, - "failing": [["U", "Y"]], - "unfailing": [["P"]], - "unfailingly": null, - "failingly": null, - "fail": [["J", "S", "G", "D"]], - "failings": null, - "fails": null, - "failed": null, - "faille": [["M", "S"]], - "faille's": null, - "failles": null, - "failsafe": null, - "failure": [["S", "M"]], - "failures": null, - "failure's": null, - "Faina": [["M"]], - "Faina's": null, - "fain": [["G", "T", "S", "R", "D"]], - "faining": null, - "fainest": null, - "fains": null, - "fainer": null, - "fained": null, - "fainter": [["M"]], - "fainter's": null, - "fainthearted": null, - "faintness": [["M", "S"]], - "faintness's": null, - "faintnesses": null, - "faint": [["Y", "R", "D", "S", "G", "P", "T"]], - "faintly": null, - "fainted": null, - "faints": null, - "fainting": null, - "faintest": null, - "Fairbanks": null, - "Fairchild": [["M"]], - "Fairchild's": null, - "faired": null, - "Fairfax": [["M"]], - "Fairfax's": null, - "Fairfield": [["M"]], - "Fairfield's": null, - "fairgoer": [["S"]], - "fairgoers": null, - "fairground": [["M", "S"]], - "fairground's": null, - "fairgrounds": null, - "fairing": [["M", "S"]], - "fairing's": null, - "fairings": null, - "fairish": null, - "Fairleigh": [["M"]], - "Fairleigh's": null, - "fairless": null, - "Fairlie": [["M"]], - "Fairlie's": null, - "Fair": [["M"]], - "Fair's": null, - "Fairmont": [["M"]], - "Fairmont's": null, - "fairness's": null, - "fairness": [["U", "S"]], - "unfairness": null, - "unfairnesses": null, - "fairnesses": null, - "Fairport": [["M"]], - "Fairport's": null, - "fairs": null, - "fair": [["T", "U", "R", "Y", "P"]], - "fairest": null, - "unfair": null, - "unfairer": null, - "unfairly": null, - "fairer": null, - "fairly": null, - "Fairview": [["M"]], - "Fairview's": null, - "fairway": [["M", "S"]], - "fairway's": null, - "fairways": null, - "fairyland": [["M", "S"]], - "fairyland's": null, - "fairylands": null, - "fairy": [["M", "S"]], - "fairy's": null, - "fairies": null, - "fairytale": null, - "Faisalabad": null, - "Faisal": [["M"]], - "Faisal's": null, - "faithed": null, - "faithfulness": [["M", "S", "U"]], - "faithfulness's": null, - "unfaithfulness's": null, - "faithfulnesses": null, - "unfaithfulnesses": null, - "unfaithfulness": null, - "faithfuls": null, - "faithful": [["U", "Y", "P"]], - "unfaithful": null, - "unfaithfully": null, - "faithfully": null, - "faithing": null, - "faithlessness": [["S", "M"]], - "faithlessnesses": null, - "faithlessness's": null, - "faithless": [["Y", "P"]], - "faithlessly": null, - "Faith": [["M"]], - "Faith's": null, - "faiths": null, - "faith's": null, - "faith": [["U"]], - "unfaith": null, - "fajitas": null, - "faker": [["M"]], - "faker's": null, - "fake": [["Z", "G", "D", "R", "S"]], - "fakers": null, - "faking": null, - "faked": null, - "fakes": null, - "fakir": [["S", "M"]], - "fakirs": null, - "fakir's": null, - "falafel": null, - "falconer": [["M"]], - "falconer's": null, - "falconry": [["M", "S"]], - "falconry's": null, - "falconries": null, - "falcon": [["Z", "S", "R", "M"]], - "falconers": null, - "falcons": null, - "falcon's": null, - "Falito": [["M"]], - "Falito's": null, - "Falkland": [["M", "S"]], - "Falkland's": null, - "Falklands": null, - "Falk": [["M"]], - "Falk's": null, - "Falkner": [["M"]], - "Falkner's": null, - "fallaciousness": [["M"]], - "fallaciousness's": null, - "fallacious": [["P", "Y"]], - "fallaciously": null, - "fallacy": [["M", "S"]], - "fallacy's": null, - "fallacies": null, - "faller": [["M"]], - "faller's": null, - "fallibility": [["M", "S", "I"]], - "fallibility's": null, - "infallibility's": null, - "fallibilities": null, - "infallibilities": null, - "infallibility": null, - "fallible": [["I"]], - "infallible": null, - "fallibleness": [["M", "S"]], - "fallibleness's": null, - "falliblenesses": null, - "fallibly": [["I"]], - "infallibly": null, - "falloff": [["S"]], - "falloffs": null, - "Fallon": [["M"]], - "Fallon's": null, - "fallopian": null, - "Fallopian": [["M"]], - "Fallopian's": null, - "fallout": [["M", "S"]], - "fallout's": null, - "fallouts": null, - "fallowness": [["M"]], - "fallowness's": null, - "fallow": [["P", "S", "G", "D"]], - "fallows": null, - "fallowing": null, - "fallowed": null, - "fall": [["S", "G", "Z", "M", "R", "N"]], - "falls": null, - "falling": null, - "fallers": null, - "fall's": null, - "fallen": null, - "falsehood": [["S", "M"]], - "falsehoods": null, - "falsehood's": null, - "falseness": [["S", "M"]], - "falsenesses": null, - "falseness's": null, - "false": [["P", "T", "Y", "R"]], - "falsest": null, - "falsely": null, - "falser": null, - "falsetto": [["S", "M"]], - "falsettos": null, - "falsetto's": null, - "falsie": [["M", "S"]], - "falsie's": null, - "falsies": null, - "falsifiability": [["M"]], - "falsifiability's": null, - "falsifiable": [["U"]], - "unfalsifiable": null, - "falsification": [["M"]], - "falsification's": null, - "falsifier": [["M"]], - "falsifier's": null, - "falsify": [["Z", "R", "S", "D", "N", "X", "G"]], - "falsifiers": null, - "falsifies": null, - "falsified": null, - "falsifications": null, - "falsifying": null, - "falsity": [["M", "S"]], - "falsity's": null, - "falsities": null, - "Falstaff": [["M"]], - "Falstaff's": null, - "falterer": [["M"]], - "falterer's": null, - "faltering": [["U", "Y"]], - "unfaltering": null, - "unfalteringly": null, - "falteringly": null, - "falter": [["R", "D", "S", "G", "J"]], - "faltered": null, - "falters": null, - "falterings": null, - "Falwell": [["M"]], - "Falwell's": null, - "fa": [["M"]], - "fa's": null, - "famed": [["C"]], - "defamed": null, - "fame": [["D", "S", "M", "G"]], - "fames": [["C"]], - "fame's": null, - "faming": [["C"]], - "defames": null, - "familial": null, - "familiarity": [["M", "U", "S"]], - "familiarity's": null, - "unfamiliarity's": null, - "unfamiliarity": null, - "unfamiliarities": null, - "familiarities": null, - "familiarization": [["M", "S"]], - "familiarization's": null, - "familiarizations": null, - "familiarized": [["U"]], - "unfamiliarized": null, - "familiarizer": [["M"]], - "familiarizer's": null, - "familiarize": [["Z", "G", "R", "S", "D"]], - "familiarizers": null, - "familiarizing": [["Y"]], - "familiarizes": null, - "familiarizingly": null, - "familiarly": [["U"]], - "unfamiliarly": null, - "familiarness": [["M"]], - "familiarness's": null, - "familiar": [["Y", "P", "S"]], - "familiars": null, - "family": [["M", "S"]], - "family's": null, - "families": null, - "famine": [["S", "M"]], - "famines": null, - "famine's": null, - "defaming": null, - "famish": [["G", "S", "D"]], - "famishing": null, - "famishes": null, - "famished": null, - "famously": [["I"]], - "infamously": null, - "famousness": [["M"]], - "famousness's": null, - "famous": [["P", "Y"]], - "fanaticalness": [["M"]], - "fanaticalness's": null, - "fanatical": [["Y", "P"]], - "fanatically": null, - "fanaticism": [["M", "S"]], - "fanaticism's": null, - "fanaticisms": null, - "fanatic": [["S", "M"]], - "fanatics": null, - "fanatic's": null, - "Fanchette": [["M"]], - "Fanchette's": null, - "Fanchon": [["M"]], - "Fanchon's": null, - "fancied": null, - "Fancie": [["M"]], - "Fancie's": null, - "fancier": [["S", "M"]], - "fanciers": null, - "fancier's": null, - "fanciest": null, - "fancifulness": [["M", "S"]], - "fancifulness's": null, - "fancifulnesses": null, - "fanciful": [["Y", "P"]], - "fancifully": null, - "fancily": null, - "fanciness": [["S", "M"]], - "fancinesses": null, - "fanciness's": null, - "fancying": null, - "fancy": [["I", "S"]], - "infancy": [["M"]], - "infancies": null, - "fancies": null, - "Fancy": [["M"]], - "Fancy's": null, - "fancywork": [["S", "M"]], - "fancyworks": null, - "fancywork's": null, - "fandango": [["S", "M"]], - "fandangos": null, - "fandango's": null, - "Fanechka": [["M"]], - "Fanechka's": null, - "fanfare": [["S", "M"]], - "fanfares": null, - "fanfare's": null, - "fanfold": [["M"]], - "fanfold's": null, - "fang": [["D", "M", "S"]], - "fanged": null, - "fang's": null, - "fangs": null, - "fangled": null, - "Fania": [["M"]], - "Fania's": null, - "fanlight": [["S", "M"]], - "fanlights": null, - "fanlight's": null, - "Fan": [["M"]], - "Fan's": null, - "fanned": null, - "Fannie": [["M"]], - "Fannie's": null, - "Fanni": [["M"]], - "Fanni's": null, - "fanning": null, - "fanny": [["S", "M"]], - "fannies": null, - "fanny's": null, - "Fanny": [["S", "M"]], - "Fannies": null, - "Fanny's": null, - "fanout": null, - "fan": [["S", "M"]], - "fans": null, - "fan's": null, - "fantail": [["S", "M"]], - "fantails": null, - "fantail's": null, - "fantasia": [["S", "M"]], - "fantasias": null, - "fantasia's": null, - "fantasist": [["M"]], - "fantasist's": null, - "fantasize": [["S", "R", "D", "G"]], - "fantasizes": null, - "fantasizer": null, - "fantasized": null, - "fantasizing": null, - "fantastical": [["Y"]], - "fantastically": null, - "fantastic": [["S"]], - "fantastics": null, - "fantasy": [["G", "M", "S", "D"]], - "fantasying": null, - "fantasy's": null, - "fantasies": null, - "fantasied": null, - "Fanya": [["M"]], - "Fanya's": null, - "fanzine": [["S"]], - "fanzines": null, - "FAQ": [["S", "M"]], - "FAQs": null, - "FAQ's": null, - "Faraday": [["M"]], - "Faraday's": null, - "farad": [["S", "M"]], - "farads": null, - "farad's": null, - "Farah": [["M"]], - "Farah's": null, - "Fara": [["M"]], - "Fara's": null, - "Farand": [["M"]], - "Farand's": null, - "faraway": null, - "Farber": [["M"]], - "Farber's": null, - "farce": [["S", "D", "G", "M"]], - "farces": null, - "farced": null, - "farcing": null, - "farce's": null, - "farcical": [["Y"]], - "farcically": null, - "fare": [["M", "S"]], - "fare's": null, - "fares": null, - "farer": [["M"]], - "farer's": null, - "farewell": [["D", "G", "M", "S"]], - "farewelled": null, - "farewelling": null, - "farewell's": null, - "farewells": null, - "farfetchedness": [["M"]], - "farfetchedness's": null, - "far": [["G", "D", "R"]], - "faring": null, - "fared": null, - "Fargo": [["M"]], - "Fargo's": null, - "Farica": [["M"]], - "Farica's": null, - "farinaceous": null, - "farina": [["M", "S"]], - "farina's": null, - "farinas": null, - "Farkas": [["M"]], - "Farkas's": null, - "Farlay": [["M"]], - "Farlay's": null, - "Farlee": [["M"]], - "Farlee's": null, - "Farleigh": [["M"]], - "Farleigh's": null, - "Farley": [["M"]], - "Farley's": null, - "Farlie": [["M"]], - "Farlie's": null, - "Farly": [["M"]], - "Farly's": null, - "farmer": [["M"]], - "farmer's": null, - "Farmer": [["M"]], - "Farmer's": null, - "farmhand": [["S"]], - "farmhands": null, - "farmhouse": [["S", "M"]], - "farmhouses": null, - "farmhouse's": null, - "farming": [["M"]], - "farming's": null, - "Farmington": [["M"]], - "Farmington's": null, - "farmland": [["S", "M"]], - "farmlands": null, - "farmland's": null, - "farm": [["M", "R", "D", "G", "Z", "S", "J"]], - "farm's": null, - "farmed": null, - "farmers": null, - "farms": null, - "farmings": null, - "farmstead": [["S", "M"]], - "farmsteads": null, - "farmstead's": null, - "farmworker": [["S"]], - "farmworkers": null, - "Far": [["M", "Y"]], - "Far's": null, - "farmyard": [["M", "S"]], - "farmyard's": null, - "farmyards": null, - "faro": [["M", "S"]], - "faro's": null, - "faros": null, - "farragoes": null, - "farrago": [["M"]], - "farrago's": null, - "Farragut": [["M"]], - "Farragut's": null, - "Farrah": [["M"]], - "Farrah's": null, - "Farrakhan": [["M"]], - "Farrakhan's": null, - "Farra": [["M"]], - "Farra's": null, - "Farrand": [["M"]], - "Farrand's": null, - "Farrell": [["M"]], - "Farrell's": null, - "Farrel": [["M"]], - "Farrel's": null, - "farrier": [["S", "M"]], - "farriers": null, - "farrier's": null, - "Farris": [["M"]], - "Farris's": null, - "Farr": [["M"]], - "Farr's": null, - "farrow": [["D", "M", "G", "S"]], - "farrowed": null, - "farrow's": null, - "farrowing": null, - "farrows": null, - "farseeing": null, - "farsightedness": [["S", "M"]], - "farsightednesses": null, - "farsightedness's": null, - "farsighted": [["Y", "P"]], - "farsightedly": null, - "farther": null, - "farthermost": null, - "farthest": null, - "farthing": [["S", "M"]], - "farthings": null, - "farthing's": null, - "fart": [["M", "D", "G", "S", "!"]], - "fart's": null, - "farted": null, - "farting": null, - "farts": null, - "fas": null, - "fascia": [["S", "M"]], - "fascias": null, - "fascia's": null, - "fascicle": [["D", "S", "M"]], - "fascicled": null, - "fascicles": null, - "fascicle's": null, - "fasciculate": [["D", "N", "X"]], - "fasciculated": null, - "fasciculation": [["M"]], - "fasciculations": null, - "fasciculation's": null, - "fascinate": [["S", "D", "N", "G", "X"]], - "fascinates": null, - "fascinated": null, - "fascination": [["M"]], - "fascinating": [["Y"]], - "fascinations": null, - "fascinatingly": null, - "fascination's": null, - "fascism": [["M", "S"]], - "fascism's": null, - "fascisms": null, - "Fascism's": null, - "fascistic": null, - "Fascist's": null, - "fascist": [["S", "M"]], - "fascists": null, - "fascist's": null, - "fashionableness": [["M"]], - "fashionableness's": null, - "fashionable": [["P", "S"]], - "fashionables": null, - "fashionably": [["U"]], - "unfashionably": null, - "fashion": [["A", "D", "S", "G"]], - "refashion": null, - "refashioned": null, - "refashions": null, - "refashioning": null, - "fashioned": null, - "fashions": null, - "fashioning": null, - "fashioner": [["S", "M"]], - "fashioners": null, - "fashioner's": null, - "fashion's": null, - "Fassbinder": [["M"]], - "Fassbinder's": null, - "fastback": [["M", "S"]], - "fastback's": null, - "fastbacks": null, - "fastball": [["S"]], - "fastballs": null, - "fasten": [["A", "G", "U", "D", "S"]], - "refasten": null, - "refastening": null, - "refastened": null, - "refastens": null, - "fastening": [["S", "M"]], - "unfastening": null, - "unfasten": null, - "unfastened": null, - "unfastens": null, - "fastened": null, - "fastens": null, - "fastener": [["M", "S"]], - "fastener's": null, - "fasteners": null, - "fastenings": null, - "fastening's": null, - "fast": [["G", "T", "X", "S", "P", "R", "N", "D"]], - "fasting": null, - "fastest": null, - "fasts": null, - "fastness": [["M", "S"]], - "faster": null, - "fasted": null, - "fastidiousness": [["M", "S"]], - "fastidiousness's": null, - "fastidiousnesses": null, - "fastidious": [["P", "Y"]], - "fastidiously": null, - "fastness's": null, - "fastnesses": null, - "fatalism": [["M", "S"]], - "fatalism's": null, - "fatalisms": null, - "fatalistic": null, - "fatalistically": null, - "fatalist": [["M", "S"]], - "fatalist's": null, - "fatalists": null, - "fatality": [["M", "S"]], - "fatality's": null, - "fatalities": null, - "fatal": [["S", "Y"]], - "fatals": null, - "fatally": null, - "fatback": [["S", "M"]], - "fatbacks": null, - "fatback's": null, - "fatefulness": [["M", "S"]], - "fatefulness's": null, - "fatefulnesses": null, - "fateful": [["Y", "P"]], - "fatefully": null, - "fate": [["M", "S"]], - "fate's": null, - "fates": null, - "Fates": null, - "fatheaded": [["P"]], - "fatheadedness": null, - "fathead": [["S", "M", "D"]], - "fatheads": null, - "fathead's": null, - "father": [["D", "Y", "M", "G", "S"]], - "fathered": [["U"]], - "fatherly": [["P"]], - "father's": null, - "fathering": null, - "fathers": null, - "unfathered": null, - "fatherhood": [["M", "S"]], - "fatherhood's": null, - "fatherhoods": null, - "fatherland": [["S", "M"]], - "fatherlands": null, - "fatherland's": null, - "fatherless": null, - "fatherliness": [["M"]], - "fatherliness's": null, - "Father": [["S", "M"]], - "Fathers": null, - "Father's": null, - "fathomable": [["U"]], - "unfathomable": null, - "fathomless": null, - "fathom": [["M", "D", "S", "B", "G"]], - "fathom's": null, - "fathomed": null, - "fathoms": null, - "fathoming": null, - "fatigued": [["U"]], - "unfatigued": null, - "fatigue": [["M", "G", "S", "D"]], - "fatigue's": null, - "fatiguing": [["Y"]], - "fatigues": null, - "fatiguingly": null, - "Fatima": [["M"]], - "Fatima's": null, - "fatness": [["S", "M"]], - "fatnesses": null, - "fatness's": null, - "fat": [["P", "S", "G", "M", "D", "Y"]], - "fats": null, - "fating": null, - "fat's": null, - "fated": null, - "fatly": null, - "fatso": [["M"]], - "fatso's": null, - "fatted": null, - "fattener": [["M"]], - "fattener's": null, - "fatten": [["J", "Z", "G", "S", "R", "D"]], - "fattenings": null, - "fatteners": null, - "fattening": null, - "fattens": null, - "fattened": null, - "fatter": null, - "fattest": [["M"]], - "fattest's": null, - "fattiness": [["S", "M"]], - "fattinesses": null, - "fattiness's": null, - "fatting": null, - "fatty": [["R", "S", "P", "T"]], - "fattier": null, - "fatties": null, - "fattiest": null, - "fatuity": [["M", "S"]], - "fatuity's": null, - "fatuities": null, - "fatuousness": [["S", "M"]], - "fatuousnesses": null, - "fatuousness's": null, - "fatuous": [["Y", "P"]], - "fatuously": null, - "fatwa": [["S", "M"]], - "fatwas": null, - "fatwa's": null, - "faucet": [["S", "M"]], - "faucets": null, - "faucet's": null, - "Faulknerian": null, - "Faulkner": [["M"]], - "Faulkner's": null, - "fault": [["C", "G", "S", "M", "D"]], - "defaulting": null, - "defaults": null, - "default's": null, - "defaulted": null, - "faulting": null, - "faults": null, - "fault's": null, - "faulted": null, - "faultfinder": [["M", "S"]], - "faultfinder's": null, - "faultfinders": null, - "faultfinding": [["M", "S"]], - "faultfinding's": null, - "faultfindings": null, - "faultily": null, - "faultiness": [["M", "S"]], - "faultiness's": null, - "faultinesses": null, - "faultlessness": [["S", "M"]], - "faultlessnesses": null, - "faultlessness's": null, - "faultless": [["P", "Y"]], - "faultlessly": null, - "faulty": [["R", "T", "P"]], - "faultier": null, - "faultiest": null, - "fauna": [["M", "S"]], - "fauna's": null, - "faunas": null, - "Faunie": [["M"]], - "Faunie's": null, - "Faun": [["M"]], - "Faun's": null, - "faun": [["M", "S"]], - "faun's": null, - "fauns": null, - "Fauntleroy": [["M"]], - "Fauntleroy's": null, - "Faustian": null, - "Faustina": [["M"]], - "Faustina's": null, - "Faustine": [["M"]], - "Faustine's": null, - "Faustino": [["M"]], - "Faustino's": null, - "Faust": [["M"]], - "Faust's": null, - "Faustus": [["M"]], - "Faustus's": null, - "fauvism": [["S"]], - "fauvisms": null, - "favorableness": [["M", "U"]], - "favorableness's": null, - "unfavorableness's": null, - "unfavorableness": null, - "favorable": [["U", "M", "P", "S"]], - "unfavorable": null, - "unfavorable's": null, - "unfavorables": null, - "favorable's": null, - "favorables": null, - "favorably": [["U"]], - "unfavorably": null, - "favoredness": [["M"]], - "favoredness's": null, - "favored's": [["U"]], - "unfavored's": null, - "favored": [["Y", "P", "S", "M"]], - "favoredly": null, - "favoreds": null, - "favorer": [["E", "M"]], - "disfavorer": null, - "disfavorer's": null, - "favorer's": null, - "favor": [["E", "S", "M", "R", "D", "G", "Z"]], - "disfavor": null, - "disfavors": null, - "disfavor's": null, - "disfavored": null, - "disfavoring": null, - "disfavorers": null, - "favors": [["A"]], - "favor's": null, - "favoring": [["M", "Y", "S"]], - "favorers": null, - "favoring's": null, - "favoringly": null, - "favorings": [["U"]], - "unfavorings": null, - "favorite": [["S", "M", "U"]], - "favorites": null, - "unfavorites": null, - "favorite's": null, - "unfavorite's": null, - "unfavorite": null, - "favoritism": [["M", "S"]], - "favoritism's": null, - "favoritisms": null, - "refavors": null, - "Fawkes": [["M"]], - "Fawkes's": null, - "Fawne": [["M"]], - "Fawne's": null, - "fawner": [["M"]], - "fawner's": null, - "fawn": [["G", "Z", "R", "D", "M", "S"]], - "fawning": [["Y"]], - "fawners": null, - "fawned": null, - "fawn's": null, - "fawns": null, - "Fawnia": [["M"]], - "Fawnia's": null, - "fawningly": null, - "Fawn": [["M"]], - "Fawn's": null, - "fax": [["G", "M", "D", "S"]], - "faxing": null, - "fax's": null, - "faxed": null, - "faxes": null, - "Fax": [["M"]], - "Fax's": null, - "Faydra": [["M"]], - "Faydra's": null, - "Faye": [["M"]], - "Faye's": null, - "Fayette": [["M"]], - "Fayette's": null, - "Fayetteville": [["M"]], - "Fayetteville's": null, - "Fayina": [["M"]], - "Fayina's": null, - "Fay": [["M"]], - "Fay's": null, - "fay": [["M", "D", "R", "G", "S"]], - "fay's": null, - "fayed": null, - "fayer": null, - "faying": null, - "fays": null, - "Fayre": [["M"]], - "Fayre's": null, - "Faythe": [["M"]], - "Faythe's": null, - "Fayth": [["M"]], - "Fayth's": null, - "faze": [["D", "S", "G"]], - "fazed": null, - "fazes": null, - "fazing": null, - "FBI": null, - "FCC": null, - "FD": null, - "FDA": null, - "FDIC": null, - "FDR": [["M"]], - "FDR's": null, - "fealty": [["M", "S"]], - "fealty's": null, - "fealties": null, - "fearfuller": null, - "fearfullest": null, - "fearfulness": [["M", "S"]], - "fearfulness's": null, - "fearfulnesses": null, - "fearful": [["Y", "P"]], - "fearfully": null, - "fearlessness": [["M", "S"]], - "fearlessness's": null, - "fearlessnesses": null, - "fearless": [["P", "Y"]], - "fearlessly": null, - "fear": [["R", "D", "M", "S", "G"]], - "fearer": null, - "feared": null, - "fear's": null, - "fears": null, - "fearing": null, - "fearsomeness": [["M"]], - "fearsomeness's": null, - "fearsome": [["P", "Y"]], - "fearsomely": null, - "feasibility": [["S", "M"]], - "feasibilities": null, - "feasibility's": null, - "feasibleness": [["M"]], - "feasibleness's": null, - "feasible": [["U", "I"]], - "unfeasible": null, - "infeasible": null, - "feasibly": [["U"]], - "unfeasibly": null, - "feaster": [["M"]], - "feaster's": null, - "feast": [["G", "S", "M", "R", "D"]], - "feasting": null, - "feasts": null, - "feast's": null, - "feasted": null, - "feater": [["C"]], - "featherbed": null, - "featherbedding": [["S", "M"]], - "featherbeddings": null, - "featherbedding's": null, - "featherbrain": [["M", "D"]], - "featherbrain's": null, - "featherbrained": null, - "feathered": [["U"]], - "unfeathered": null, - "feathering": [["M"]], - "feathering's": null, - "featherless": null, - "featherlight": null, - "Featherman": [["M"]], - "Featherman's": null, - "feathertop": null, - "featherweight": [["S", "M"]], - "featherweights": null, - "featherweight's": null, - "feathery": [["T", "R"]], - "featheriest": null, - "featherier": null, - "feather": [["Z", "M", "D", "R", "G", "S"]], - "featherers": null, - "feather's": null, - "featherer": null, - "feathers": null, - "feat": [["M", "Y", "R", "G", "T", "S"]], - "feat's": null, - "featly": null, - "feating": null, - "featest": null, - "feats": [["C"]], - "defeats": null, - "featureless": null, - "feature": [["M", "G", "S", "D"]], - "feature's": null, - "featuring": null, - "features": null, - "featured": null, - "Feb": [["M"]], - "Feb's": null, - "febrile": null, - "February": [["M", "S"]], - "February's": null, - "Februaries": null, - "fecal": null, - "feces": null, - "fecklessness": [["M"]], - "fecklessness's": null, - "feckless": [["P", "Y"]], - "fecklessly": null, - "fecundability": null, - "fecundate": [["X", "S", "D", "G", "N"]], - "fecundations": null, - "fecundates": null, - "fecundated": null, - "fecundating": null, - "fecundation": [["M"]], - "fecundation's": null, - "fecund": [["I"]], - "infecund": null, - "fecundity": [["S", "M"]], - "fecundities": null, - "fecundity's": null, - "federalism": [["S", "M"]], - "federalisms": null, - "federalism's": null, - "Federalist": null, - "federalist": [["M", "S"]], - "federalist's": null, - "federalists": null, - "federalization": [["M", "S"]], - "federalization's": null, - "federalizations": null, - "federalize": [["G", "S", "D"]], - "federalizing": null, - "federalizes": null, - "federalized": null, - "Federal": [["S"]], - "Federals": null, - "federal": [["Y", "S"]], - "federally": null, - "federals": null, - "federated": [["U"]], - "unfederated": null, - "federate": [["F", "S", "D", "X", "V", "N", "G"]], - "confederates": null, - "confederated": null, - "confederations": null, - "confederation": null, - "confederating": null, - "federates": null, - "federations": null, - "federative": [["Y"]], - "federation": [["F", "M"]], - "federating": null, - "confederation's": null, - "federation's": null, - "federatively": null, - "Federica": [["M"]], - "Federica's": null, - "Federico": [["M"]], - "Federico's": null, - "FedEx": [["M"]], - "FedEx's": null, - "Fedora": [["M"]], - "Fedora's": null, - "fedora": [["S", "M"]], - "fedoras": null, - "fedora's": null, - "feds": null, - "Fed": [["S", "M"]], - "Feds": null, - "Fed's": null, - "fed": [["U"]], - "unfed": null, - "feebleness": [["S", "M"]], - "feeblenesses": null, - "feebleness's": null, - "feeble": [["T", "P", "R"]], - "feeblest": null, - "feebler": null, - "feebly": null, - "feedback": [["S", "M"]], - "feedbacks": null, - "feedback's": null, - "feedbag": [["M", "S"]], - "feedbag's": null, - "feedbags": null, - "feeder": [["M"]], - "feeder's": null, - "feed": [["G", "R", "Z", "J", "S"]], - "feeding": [["M"]], - "feeders": null, - "feedings": null, - "feeds": null, - "feeding's": null, - "feedlot": [["S", "M"]], - "feedlots": null, - "feedlot's": null, - "feedstock": null, - "feedstuffs": null, - "feeing": null, - "feeler": [["M"]], - "feeler's": null, - "feel": [["G", "Z", "J", "R", "S"]], - "feeling": [["M", "Y", "P"]], - "feelers": null, - "feelings": null, - "feels": null, - "feelingly": [["U"]], - "unfeelingly": null, - "feeling's": null, - "feelingness": [["M"]], - "feelingness's": null, - "Fee": [["M"]], - "Fee's": null, - "fee": [["M", "D", "S"]], - "fee's": null, - "fees": null, - "feet": [["M"]], - "feet's": null, - "feigned": [["U"]], - "unfeigned": [["Y"]], - "feigner": [["M"]], - "feigner's": null, - "feign": [["R", "D", "G", "S"]], - "feigning": null, - "feigns": null, - "feint": [["M", "D", "S", "G"]], - "feint's": null, - "feinted": null, - "feints": null, - "feinting": null, - "feisty": [["R", "T"]], - "feistier": null, - "feistiest": null, - "Felder": [["M"]], - "Felder's": null, - "Feldman": [["M"]], - "Feldman's": null, - "feldspar": [["M", "S"]], - "feldspar's": null, - "feldspars": null, - "Felecia": [["M"]], - "Felecia's": null, - "Felicdad": [["M"]], - "Felicdad's": null, - "Felice": [["M"]], - "Felice's": null, - "Felicia": [["M"]], - "Felicia's": null, - "Felicio": [["M"]], - "Felicio's": null, - "felicitate": [["X", "G", "N", "S", "D"]], - "felicitations": null, - "felicitating": null, - "felicitation": [["M"]], - "felicitates": null, - "felicitated": null, - "felicitation's": null, - "felicitous": [["I", "Y"]], - "infelicitous": null, - "infelicitously": null, - "felicitously": null, - "felicitousness": [["M"]], - "felicitousness's": null, - "felicity": [["I", "M", "S"]], - "infelicity": null, - "infelicity's": null, - "infelicities": null, - "felicity's": null, - "felicities": null, - "Felicity": [["M"]], - "Felicity's": null, - "Felicle": [["M"]], - "Felicle's": null, - "Felic": [["M"]], - "Felic's": null, - "Felike": [["M"]], - "Felike's": null, - "Feliks": [["M"]], - "Feliks's": null, - "feline": [["S", "Y"]], - "felines": null, - "felinely": null, - "Felipa": [["M"]], - "Felipa's": null, - "Felipe": [["M"]], - "Felipe's": null, - "Felisha": [["M"]], - "Felisha's": null, - "Felita": [["M"]], - "Felita's": null, - "Felix": [["M"]], - "Felix's": null, - "Feliza": [["M"]], - "Feliza's": null, - "Felizio": [["M"]], - "Felizio's": null, - "fella": [["S"]], - "fellas": null, - "fellatio": [["S", "M"]], - "fellatios": null, - "fellatio's": null, - "felled": [["A"]], - "refelled": null, - "feller": [["M"]], - "feller's": null, - "felling": [["A"]], - "refelling": null, - "Fellini": [["M"]], - "Fellini's": null, - "fellness": [["M"]], - "fellness's": null, - "fellowman": null, - "fellowmen": null, - "fellow": [["S", "G", "D", "Y", "M"]], - "fellows": null, - "fellowing": null, - "fellowed": null, - "fellowly": null, - "fellow's": null, - "fellowshipped": null, - "fellowshipping": null, - "fellowship": [["S", "M"]], - "fellowships": null, - "fellowship's": null, - "fell": [["P", "S", "G", "Z", "T", "R", "D"]], - "fells": null, - "fellers": null, - "fellest": null, - "feloniousness": [["M"]], - "feloniousness's": null, - "felonious": [["P", "Y"]], - "feloniously": null, - "felon": [["M", "S"]], - "felon's": null, - "felons": null, - "felony": [["M", "S"]], - "felony's": null, - "felonies": null, - "felt": [["G", "S", "D"]], - "felting": [["M"]], - "felts": null, - "felted": null, - "felting's": null, - "Fe": [["M"]], - "Fe's": null, - "female": [["M", "P", "S"]], - "female's": null, - "femaleness": [["S", "M"]], - "females": null, - "femalenesses": null, - "femaleness's": null, - "feminineness": [["M"]], - "feminineness's": null, - "feminine": [["P", "Y", "S"]], - "femininely": null, - "feminines": null, - "femininity": [["M", "S"]], - "femininity's": null, - "femininities": null, - "feminism": [["M", "S"]], - "feminism's": null, - "feminisms": null, - "feminist": [["M", "S"]], - "feminist's": null, - "feminists": null, - "femme": [["M", "S"]], - "femme's": null, - "femmes": null, - "femoral": null, - "fem": [["S"]], - "fems": null, - "femur": [["M", "S"]], - "femur's": null, - "femurs": null, - "fenced": [["U"]], - "unfenced": null, - "fencepost": [["M"]], - "fencepost's": null, - "fencer": [["M"]], - "fencer's": null, - "fence": [["S", "R", "D", "J", "G", "M", "Z"]], - "fences": null, - "fencings": null, - "fencing": [["M"]], - "fence's": null, - "fencers": null, - "fencing's": null, - "fender": [["C", "M"]], - "defender": null, - "defender's": null, - "fender's": null, - "fend": [["R", "D", "S", "C", "Z", "G"]], - "fended": null, - "fends": null, - "defends": null, - "defend": null, - "defenders": null, - "defending": null, - "fenders": null, - "fending": null, - "Fenelia": [["M"]], - "Fenelia's": null, - "fenestration": [["C", "S", "M"]], - "defenestration": null, - "defenestrations": null, - "defenestration's": null, - "fenestrations": null, - "fenestration's": null, - "Fenian": [["M"]], - "Fenian's": null, - "fenland": [["M"]], - "fenland's": null, - "fen": [["M", "S"]], - "fen's": null, - "fens": null, - "fennel": [["S", "M"]], - "fennels": null, - "fennel's": null, - "Fenwick": [["M"]], - "Fenwick's": null, - "Feodora": [["M"]], - "Feodora's": null, - "Feodor": [["M"]], - "Feodor's": null, - "feral": null, - "Ferber": [["M"]], - "Ferber's": null, - "Ferdie": [["M"]], - "Ferdie's": null, - "Ferdinanda": [["M"]], - "Ferdinanda's": null, - "Ferdinande": [["M"]], - "Ferdinande's": null, - "Ferdinand": [["M"]], - "Ferdinand's": null, - "Ferdinando": [["M"]], - "Ferdinando's": null, - "Ferd": [["M"]], - "Ferd's": null, - "Ferdy": [["M"]], - "Ferdy's": null, - "fer": [["F", "L", "C"]], - "conferment": null, - "ferment": [["F", "S", "C", "M"]], - "deferment": null, - "defer": null, - "Fergus": [["M"]], - "Fergus's": null, - "Ferguson": [["M"]], - "Ferguson's": null, - "Ferlinghetti": [["M"]], - "Ferlinghetti's": null, - "Fermat": [["M"]], - "Fermat's": null, - "fermentation": [["M", "S"]], - "fermentation's": null, - "fermentations": null, - "fermented": null, - "fermenter": null, - "conferments": null, - "conferment's": null, - "ferments": null, - "deferments": null, - "deferment's": null, - "ferment's": null, - "fermenting": null, - "Fermi": [["M"]], - "Fermi's": null, - "fermion": [["M", "S"]], - "fermion's": null, - "fermions": null, - "fermium": [["M", "S"]], - "fermium's": null, - "fermiums": null, - "Fernanda": [["M"]], - "Fernanda's": null, - "Fernande": [["M"]], - "Fernande's": null, - "Fernandez": [["M"]], - "Fernandez's": null, - "Fernandina": [["M"]], - "Fernandina's": null, - "Fernando": [["M"]], - "Fernando's": null, - "Ferne": [["M"]], - "Ferne's": null, - "fernery": [["M"]], - "fernery's": null, - "Fern": [["M"]], - "Fern's": null, - "fern": [["M", "S"]], - "fern's": null, - "ferns": null, - "ferny": [["T", "R"]], - "ferniest": null, - "fernier": null, - "ferociousness": [["M", "S"]], - "ferociousness's": null, - "ferociousnesses": null, - "ferocious": [["Y", "P"]], - "ferociously": null, - "ferocity": [["M", "S"]], - "ferocity's": null, - "ferocities": null, - "Ferrari": [["M"]], - "Ferrari's": null, - "Ferraro": [["M"]], - "Ferraro's": null, - "Ferreira": [["M"]], - "Ferreira's": null, - "Ferrell": [["M"]], - "Ferrell's": null, - "Ferrel": [["M"]], - "Ferrel's": null, - "Ferrer": [["M"]], - "Ferrer's": null, - "ferreter": [["M"]], - "ferreter's": null, - "ferret": [["S", "M", "R", "D", "G"]], - "ferrets": null, - "ferret's": null, - "ferreted": null, - "ferreting": null, - "ferric": null, - "ferris": null, - "Ferris": null, - "ferrite": [["M"]], - "ferrite's": null, - "ferro": null, - "ferroelectric": null, - "ferromagnetic": null, - "ferromagnet": [["M"]], - "ferromagnet's": null, - "ferrous": null, - "ferrule": [["M", "G", "S", "D"]], - "ferrule's": null, - "ferruling": null, - "ferrules": null, - "ferruled": null, - "ferryboat": [["M", "S"]], - "ferryboat's": null, - "ferryboats": null, - "ferryman": [["M"]], - "ferryman's": null, - "ferrymen": null, - "ferry": [["S", "D", "M", "G"]], - "ferries": null, - "ferried": null, - "ferry's": null, - "ferrying": null, - "fertileness": [["M"]], - "fertileness's": null, - "fertile": [["Y", "P"]], - "fertilely": null, - "fertility": [["I", "M", "S"]], - "infertility": null, - "infertility's": null, - "infertilities": null, - "fertility's": null, - "fertilities": null, - "fertilization": [["A", "S", "M"]], - "refertilization": null, - "refertilizations": null, - "refertilization's": null, - "fertilizations": null, - "fertilization's": null, - "fertilized": [["U"]], - "unfertilized": null, - "fertilizer": [["M"]], - "fertilizer's": null, - "fertilizes": [["A"]], - "refertilizes": null, - "fertilize": [["S", "R", "D", "Z", "G"]], - "fertilizers": null, - "fertilizing": null, - "ferule": [["S", "D", "G", "M"]], - "ferules": null, - "feruled": null, - "feruling": null, - "ferule's": null, - "fervency": [["M", "S"]], - "fervency's": null, - "fervencies": null, - "fervent": [["Y"]], - "fervently": null, - "fervidness": [["M"]], - "fervidness's": null, - "fervid": [["Y", "P"]], - "fervidly": null, - "fervor": [["M", "S"]], - "fervor's": null, - "fervors": null, - "fess": [["K", "G", "F", "S", "D"]], - "profess": null, - "professing": null, - "professes": null, - "professed": [["Y"]], - "fessing": null, - "confessing": null, - "confess": null, - "confesses": null, - "fesses": null, - "fessed": null, - "Fess": [["M"]], - "Fess's": null, - "fess's": null, - "festal": [["S"]], - "festals": null, - "fester": [["G", "D"]], - "festering": null, - "festered": null, - "festival": [["S", "M"]], - "festivals": null, - "festival's": null, - "festiveness": [["S", "M"]], - "festivenesses": null, - "festiveness's": null, - "festive": [["P", "Y"]], - "festively": null, - "festivity": [["S", "M"]], - "festivities": null, - "festivity's": null, - "festoon": [["S", "M", "D", "G"]], - "festoons": null, - "festoon's": null, - "festooned": null, - "festooning": null, - "fest": [["R", "V", "Z"]], - "festers": null, - "fetal": null, - "feta": [["M", "S"]], - "feta's": null, - "fetas": null, - "fetcher": [["M"]], - "fetcher's": null, - "fetching": [["Y"]], - "fetchingly": null, - "fetch": [["R", "S", "D", "G", "Z"]], - "fetches": null, - "fetched": null, - "fetchers": null, - "feted": null, - "f�te": [["M", "S"]], - "f�te's": null, - "f�tes": null, - "fetich's": null, - "fetidness": [["S", "M"]], - "fetidnesses": null, - "fetidness's": null, - "fetid": [["Y", "P"]], - "fetidly": null, - "feting": null, - "fetishism": [["S", "M"]], - "fetishisms": null, - "fetishism's": null, - "fetishistic": null, - "fetishist": [["S", "M"]], - "fetishists": null, - "fetishist's": null, - "fetish": [["M", "S"]], - "fetish's": null, - "fetishes": null, - "fetlock": [["M", "S"]], - "fetlock's": null, - "fetlocks": null, - "fetter's": null, - "fetter": [["U", "G", "S", "D"]], - "unfetter": null, - "unfettering": null, - "unfetters": null, - "unfettered": null, - "fettering": null, - "fetters": null, - "fettered": null, - "fettle": [["G", "S", "D"]], - "fettling": [["M"]], - "fettles": null, - "fettled": null, - "fettling's": null, - "fettuccine": [["S"]], - "fettuccines": null, - "fetus": [["S", "M"]], - "fetuses": null, - "fetus's": null, - "feudalism": [["M", "S"]], - "feudalism's": null, - "feudalisms": null, - "feudalistic": null, - "feudal": [["Y"]], - "feudally": null, - "feudatory": [["M"]], - "feudatory's": null, - "feud": [["M", "D", "S", "G"]], - "feud's": null, - "feuded": null, - "feuds": null, - "feuding": null, - "feverishness": [["S", "M"]], - "feverishnesses": null, - "feverishness's": null, - "feverish": [["P", "Y"]], - "feverishly": null, - "fever": [["S", "D", "M", "G"]], - "fevers": null, - "fevered": null, - "fever's": null, - "fevering": null, - "fewness": [["M", "S"]], - "fewness's": null, - "fewnesses": null, - "few": [["P", "T", "R", "S"]], - "fewest": null, - "fewer": null, - "fews": null, - "Fey": [["M"]], - "Fey's": null, - "Feynman": [["M"]], - "Feynman's": null, - "fey": [["R", "T"]], - "feyer": null, - "feyest": null, - "fez": [["M"]], - "fez's": null, - "Fez": [["M"]], - "Fez's": null, - "fezzes": null, - "ff": null, - "FHA": null, - "fianc�e": [["S"]], - "fianc�es": null, - "fianc�": [["M", "S"]], - "fianc�'s": null, - "fianc�s": null, - "Fianna": [["M"]], - "Fianna's": null, - "Fiann": [["M"]], - "Fiann's": null, - "fiascoes": null, - "fiasco": [["M"]], - "fiasco's": null, - "Fiat": [["M"]], - "Fiat's": null, - "fiat": [["M", "S"]], - "fiat's": null, - "fiats": null, - "fibbed": null, - "fibber": [["M", "S"]], - "fibber's": null, - "fibbers": null, - "fibbing": null, - "fiberboard": [["M", "S"]], - "fiberboard's": null, - "fiberboards": null, - "fiber": [["D", "M"]], - "fibered": null, - "fiber's": null, - "fiberfill": [["S"]], - "fiberfills": null, - "Fiberglas": [["M"]], - "Fiberglas's": null, - "fiberglass": [["D", "S", "M", "G"]], - "fiberglassed": null, - "fiberglasses": null, - "fiberglass's": null, - "fiberglassing": null, - "Fibonacci": [["M"]], - "Fibonacci's": null, - "fibrillate": [["X", "G", "N", "D", "S"]], - "fibrillations": null, - "fibrillating": null, - "fibrillation": [["M"]], - "fibrillated": null, - "fibrillates": null, - "fibrillation's": null, - "fibril": [["M", "S"]], - "fibril's": null, - "fibrils": null, - "fibrin": [["M", "S"]], - "fibrin's": null, - "fibrins": null, - "fibroblast": [["M", "S"]], - "fibroblast's": null, - "fibroblasts": null, - "fibroid": [["S"]], - "fibroids": null, - "fibroses": null, - "fibrosis": [["M"]], - "fibrosis's": null, - "fibrousness": [["M"]], - "fibrousness's": null, - "fibrous": [["Y", "P"]], - "fibrously": null, - "fib": [["S", "Z", "M", "R"]], - "fibs": null, - "fibers": null, - "fib's": null, - "fibulae": null, - "fibula": [["M"]], - "fibula's": null, - "fibular": null, - "FICA": null, - "fices": null, - "fiche": [["S", "M"]], - "fiches": null, - "fiche's": null, - "Fichte": [["M"]], - "Fichte's": null, - "fichu": [["S", "M"]], - "fichus": null, - "fichu's": null, - "fickleness": [["M", "S"]], - "fickleness's": null, - "ficklenesses": null, - "fickle": [["R", "T", "P"]], - "fickler": null, - "ficklest": null, - "ficos": null, - "fictionalization": [["M", "S"]], - "fictionalization's": null, - "fictionalizations": null, - "fictionalize": [["D", "S", "G"]], - "fictionalized": null, - "fictionalizes": null, - "fictionalizing": null, - "fictional": [["Y"]], - "fictionally": null, - "fiction": [["S", "M"]], - "fictions": null, - "fiction's": null, - "fictitiousness": [["M"]], - "fictitiousness's": null, - "fictitious": [["P", "Y"]], - "fictitiously": null, - "fictive": [["Y"]], - "fictively": null, - "ficus": null, - "fiddle": [["G", "M", "Z", "J", "R", "S", "D"]], - "fiddling": null, - "fiddle's": null, - "fiddlers": null, - "fiddlings": null, - "fiddler": [["M"]], - "fiddles": null, - "fiddled": null, - "fiddler's": null, - "fiddlestick": [["S", "M"]], - "fiddlesticks": null, - "fiddlestick's": null, - "fiddly": null, - "fide": [["F"]], - "Fidela": [["M"]], - "Fidela's": null, - "Fidelia": [["M"]], - "Fidelia's": null, - "Fidelio": [["M"]], - "Fidelio's": null, - "fidelity": [["I", "M", "S"]], - "infidelity": null, - "infidelity's": null, - "infidelities": null, - "fidelity's": null, - "fidelities": null, - "Fidelity": [["M"]], - "Fidelity's": null, - "Fidel": [["M"]], - "Fidel's": null, - "fidget": [["D", "S", "G"]], - "fidgeted": null, - "fidgets": null, - "fidgeting": null, - "fidgety": null, - "Fidole": [["M"]], - "Fidole's": null, - "Fido": [["M"]], - "Fido's": null, - "fiducial": [["Y"]], - "fiducially": null, - "fiduciary": [["M", "S"]], - "fiduciary's": null, - "fiduciaries": null, - "fiefdom": [["S"]], - "fiefdoms": null, - "fief": [["M", "S"]], - "fief's": null, - "fiefs": null, - "fielded": null, - "fielder": [["I", "M"]], - "infielder": null, - "infielder's": null, - "fielder's": null, - "fielding": null, - "Fielding": [["M"]], - "Fielding's": null, - "Field": [["M", "G", "S"]], - "Field's": null, - "Fields": null, - "fieldstone": [["M"]], - "fieldstone's": null, - "fieldworker": [["M"]], - "fieldworker's": null, - "fieldwork": [["Z", "M", "R", "S"]], - "fieldworkers": null, - "fieldwork's": null, - "fieldworks": null, - "field": [["Z", "I", "S", "M", "R"]], - "fielders": null, - "infielders": null, - "infield": null, - "infields": null, - "infield's": null, - "fields": null, - "field's": null, - "fiendishness": [["M"]], - "fiendishness's": null, - "fiendish": [["Y", "P"]], - "fiendishly": null, - "fiend": [["M", "S"]], - "fiend's": null, - "fiends": null, - "fierceness": [["S", "M"]], - "fiercenesses": null, - "fierceness's": null, - "fierce": [["R", "P", "T", "Y"]], - "fiercer": null, - "fiercest": null, - "fiercely": null, - "fierily": null, - "fieriness": [["M", "S"]], - "fieriness's": null, - "fierinesses": null, - "fiery": [["P", "T", "R"]], - "fieriest": null, - "fierier": null, - "fie": [["S"]], - "fies": [["C"]], - "defies": null, - "fiesta": [["M", "S"]], - "fiesta's": null, - "fiestas": null, - "fife": [["D", "R", "S", "M", "Z", "G"]], - "fifed": null, - "fifer": [["M"]], - "fifes": null, - "fife's": null, - "fifers": null, - "fifing": null, - "fifer's": null, - "Fifi": [["M"]], - "Fifi's": null, - "Fifine": [["M"]], - "Fifine's": null, - "FIFO": null, - "fifteen": [["H", "R", "M", "S"]], - "fifteenth": null, - "fifteener": null, - "fifteen's": null, - "fifteens": null, - "fifteenths": null, - "fifths": null, - "fifth": [["Y"]], - "fifthly": null, - "fiftieths": null, - "fifty": [["H", "S", "M"]], - "fiftieth": null, - "fifties": null, - "fifty's": null, - "Figaro": [["M"]], - "Figaro's": null, - "figged": null, - "figging": null, - "fightback": null, - "fighter": [["M", "I", "S"]], - "fighter's": null, - "infighter's": null, - "infighter": null, - "infighters": null, - "fighters": null, - "fighting": [["I", "S"]], - "infighting": [["M"]], - "infightings": null, - "fightings": null, - "fight": [["Z", "S", "J", "R", "G"]], - "fights": null, - "figment": [["M", "S"]], - "figment's": null, - "figments": null, - "fig": [["M", "L", "S"]], - "fig's": null, - "figs": null, - "Figueroa": [["M"]], - "Figueroa's": null, - "figural": null, - "figuration": [["F", "S", "M"]], - "figurations": null, - "figuration's": null, - "figurativeness": [["M"]], - "figurativeness's": null, - "figurative": [["Y", "P"]], - "figuratively": null, - "figure": [["G", "F", "E", "S", "D"]], - "figuring": [["S"]], - "disfiguring": null, - "disfigures": null, - "disfigured": null, - "figures": null, - "figured": null, - "figurehead": [["S", "M"]], - "figureheads": null, - "figurehead's": null, - "figurer": [["S", "M"]], - "figurers": null, - "figurer's": null, - "figure's": null, - "figurine": [["S", "M"]], - "figurines": null, - "figurine's": null, - "figurings": null, - "Fijian": [["S", "M"]], - "Fijians": null, - "Fijian's": null, - "Fiji": [["M"]], - "Fiji's": null, - "filamentary": null, - "filament": [["M", "S"]], - "filament's": null, - "filaments": null, - "filamentous": null, - "Filberte": [["M"]], - "Filberte's": null, - "Filbert": [["M"]], - "Filbert's": null, - "filbert": [["M", "S"]], - "filbert's": null, - "filberts": null, - "Filberto": [["M"]], - "Filberto's": null, - "filch": [["S", "D", "G"]], - "filches": null, - "filched": null, - "filching": null, - "filed": [["A", "C"]], - "refiled": null, - "defiled": null, - "file": [["K", "D", "R", "S", "G", "M", "Z"]], - "profile": null, - "profiled": null, - "profiler": null, - "profiles": null, - "profiling": null, - "profile's": null, - "profilers": null, - "filer": [["K", "M", "C", "S"]], - "files": [["A", "C"]], - "filing": [["A", "C"]], - "file's": null, - "filers": null, - "filename": [["S", "M"]], - "filenames": null, - "filename's": null, - "profiler's": null, - "filer's": null, - "defiler's": null, - "defiler": null, - "defilers": null, - "refiles": null, - "defiles": null, - "filet's": null, - "filial": [["U", "Y"]], - "unfilial": null, - "unfilially": null, - "filially": null, - "Filia": [["M"]], - "Filia's": null, - "filibusterer": [["M"]], - "filibusterer's": null, - "filibuster": [["M", "D", "R", "S", "Z", "G"]], - "filibuster's": null, - "filibustered": null, - "filibusters": null, - "filibusterers": null, - "filibustering": null, - "Filide": [["M"]], - "Filide's": null, - "filigreeing": null, - "filigree": [["M", "S", "D"]], - "filigree's": null, - "filigrees": null, - "filigreed": null, - "refiling": null, - "defiling": null, - "filings": null, - "Filipino": [["S", "M"]], - "Filipinos": null, - "Filipino's": null, - "Filip": [["M"]], - "Filip's": null, - "Filippa": [["M"]], - "Filippa's": null, - "Filippo": [["M"]], - "Filippo's": null, - "fill": [["B", "A", "J", "G", "S", "D"]], - "fillable": null, - "refillable": null, - "refill": null, - "refillings": null, - "refilling": null, - "refills": null, - "refilled": null, - "fillings": null, - "filling": [["M"]], - "fills": null, - "filled": [["U"]], - "unfilled": null, - "filler": [["M", "S"]], - "filler's": null, - "fillers": null, - "filleting": [["M"]], - "filleting's": null, - "fillet": [["M", "D", "S", "G"]], - "fillet's": null, - "filleted": null, - "fillets": null, - "filling's": null, - "fillip": [["M", "D", "G", "S"]], - "fillip's": null, - "filliped": null, - "filliping": null, - "fillips": null, - "Fillmore": [["M"]], - "Fillmore's": null, - "filly": [["S", "M"]], - "fillies": null, - "filly's": null, - "filmdom": [["M"]], - "filmdom's": null, - "Filmer": [["M"]], - "Filmer's": null, - "filminess": [["S", "M"]], - "filminesses": null, - "filminess's": null, - "filming": [["M"]], - "filming's": null, - "filmmaker": [["S"]], - "filmmakers": null, - "Filmore": [["M"]], - "Filmore's": null, - "film": [["S", "G", "M", "D"]], - "films": null, - "film's": null, - "filmed": null, - "filmstrip": [["S", "M"]], - "filmstrips": null, - "filmstrip's": null, - "filmy": [["R", "T", "P"]], - "filmier": null, - "filmiest": null, - "Filofax": [["S"]], - "Filofaxes": null, - "filtered": [["U"]], - "unfiltered": null, - "filterer": [["M"]], - "filterer's": null, - "filter": [["R", "D", "M", "S", "Z", "G", "B"]], - "filter's": null, - "filters": null, - "filterers": null, - "filtering": null, - "filterable": null, - "filthily": null, - "filthiness": [["S", "M"]], - "filthinesses": null, - "filthiness's": null, - "filth": [["M"]], - "filth's": null, - "filths": null, - "filthy": [["T", "R", "S", "D", "G", "P"]], - "filthiest": null, - "filthier": null, - "filthies": null, - "filthied": null, - "filthying": null, - "filtrated": [["I"]], - "infiltrated": null, - "filtrate": [["S", "D", "X", "M", "N", "G"]], - "filtrates": [["I"]], - "filtrations": null, - "filtrate's": null, - "filtration": [["I", "M", "S"]], - "filtrating": [["I"]], - "infiltrates": null, - "infiltrating": null, - "infiltration": null, - "infiltration's": null, - "infiltrations": null, - "filtration's": null, - "finagler": [["M"]], - "finagler's": null, - "finagle": [["R", "S", "D", "Z", "G"]], - "finagles": null, - "finagled": null, - "finaglers": null, - "finagling": null, - "finale": [["M", "S"]], - "finale's": null, - "finales": null, - "finalist": [["M", "S"]], - "finalist's": null, - "finalists": null, - "finality": [["M", "S"]], - "finality's": null, - "finalities": null, - "finalization": [["S", "M"]], - "finalizations": null, - "finalization's": null, - "finalize": [["G", "S", "D"]], - "finalizing": null, - "finalizes": null, - "finalized": null, - "final": [["S", "Y"]], - "finals": null, - "finally": null, - "Fina": [["M"]], - "Fina's": null, - "financed": [["A"]], - "refinanced": null, - "finance": [["M", "G", "S", "D", "J"]], - "finance's": null, - "financing": [["A"]], - "finances": [["A"]], - "financings": null, - "refinances": null, - "financial": [["Y"]], - "financially": null, - "financier": [["D", "M", "G", "S"]], - "financiered": null, - "financier's": null, - "financiering": null, - "financiers": null, - "refinancing": null, - "Finch": [["M"]], - "Finch's": null, - "finch": [["M", "S"]], - "finch's": null, - "finches": null, - "findable": [["U"]], - "unfindable": null, - "find": [["B", "R", "J", "S", "G", "Z"]], - "finder": [["M"]], - "findings": null, - "finds": null, - "finding": [["M"]], - "finders": null, - "finder's": null, - "finding's": null, - "Findlay": [["M"]], - "Findlay's": null, - "Findley": [["M"]], - "Findley's": null, - "fine": [["F", "G", "S", "C", "R", "D", "A"]], - "confining": null, - "confines": null, - "fining": [["M"]], - "refining": null, - "fines": null, - "refines": null, - "finer": null, - "refiner": null, - "fined": null, - "refined": [["U"]], - "refine": [["L", "Z"]], - "finely": null, - "fineness": [["M", "S"]], - "fineness's": null, - "finenesses": null, - "finery": [["M", "A", "S"]], - "finery's": null, - "refinery's": null, - "refinery": null, - "refineries": null, - "fineries": null, - "fine's": null, - "finespun": null, - "finesse": [["S", "D", "M", "G"]], - "finesses": null, - "finessed": null, - "finesse's": null, - "finessing": null, - "fingerboard": [["S", "M"]], - "fingerboards": null, - "fingerboard's": null, - "fingerer": [["M"]], - "fingerer's": null, - "fingering": [["M"]], - "fingering's": null, - "fingerless": null, - "fingerling": [["M"]], - "fingerling's": null, - "fingernail": [["M", "S"]], - "fingernail's": null, - "fingernails": null, - "fingerprint": [["S", "G", "D", "M"]], - "fingerprints": null, - "fingerprinting": null, - "fingerprinted": null, - "fingerprint's": null, - "finger": [["S", "G", "R", "D", "M", "J"]], - "fingers": null, - "fingered": null, - "finger's": null, - "fingerings": null, - "fingertip": [["M", "S"]], - "fingertip's": null, - "fingertips": null, - "finial": [["S", "M"]], - "finials": null, - "finial's": null, - "finical": null, - "finickiness": [["S"]], - "finickinesses": null, - "finicky": [["R", "P", "T"]], - "finickier": null, - "finickiest": null, - "fining's": null, - "finished": [["U", "A"]], - "unfinished": null, - "refinished": null, - "finisher": [["M"]], - "finisher's": null, - "finishes": [["A"]], - "refinishes": null, - "finish": [["J", "Z", "G", "R", "S", "D"]], - "finishings": null, - "finishers": null, - "finishing": null, - "finis": [["S", "M"]], - "finises": null, - "finis's": null, - "finite": [["I", "S", "P", "Y"]], - "infinite": [["V"]], - "infinites": null, - "infiniteness": null, - "infinitely": null, - "finites": null, - "finiteness": [["M", "I", "C"]], - "finitely": [["C"]], - "finiteness's": null, - "infiniteness's": null, - "fink": [["G", "D", "M", "S"]], - "finking": null, - "finked": null, - "fink's": null, - "finks": null, - "Finland": [["M"]], - "Finland's": null, - "Finlay": [["M"]], - "Finlay's": null, - "Finley": [["M"]], - "Finley's": null, - "Fin": [["M"]], - "Fin's": null, - "Finnbogadottir": [["M"]], - "Finnbogadottir's": null, - "finned": null, - "Finnegan": [["M"]], - "Finnegan's": null, - "finner": null, - "finning": null, - "Finnish": null, - "Finn": [["M", "S"]], - "Finn's": null, - "Finns": null, - "finny": [["R", "T"]], - "finnier": null, - "finniest": null, - "fin": [["T", "G", "M", "D", "R", "S"]], - "finest": null, - "fin's": null, - "fins": null, - "Fiona": [["M"]], - "Fiona's": null, - "Fionna": [["M"]], - "Fionna's": null, - "Fionnula": [["M"]], - "Fionnula's": null, - "fiord's": null, - "Fiorello": [["M"]], - "Fiorello's": null, - "Fiorenze": [["M"]], - "Fiorenze's": null, - "Fiori": [["M"]], - "Fiori's": null, - "f": [["I", "R", "A", "C"]], - "inf": [["Z", "T"]], - "infer": [["B"]], - "refer": [["B"]], - "ref": [["Z", "S"]], - "firearm": [["S", "M"]], - "firearms": null, - "firearm's": null, - "fireball": [["S", "M"]], - "fireballs": null, - "fireball's": null, - "fireboat": [["M"]], - "fireboat's": null, - "firebomb": [["M", "D", "S", "G"]], - "firebomb's": null, - "firebombed": null, - "firebombs": null, - "firebombing": null, - "firebox": [["M", "S"]], - "firebox's": null, - "fireboxes": null, - "firebrand": [["M", "S"]], - "firebrand's": null, - "firebrands": null, - "firebreak": [["S", "M"]], - "firebreaks": null, - "firebreak's": null, - "firebrick": [["S", "M"]], - "firebricks": null, - "firebrick's": null, - "firebug": [["S", "M"]], - "firebugs": null, - "firebug's": null, - "firecracker": [["S", "M"]], - "firecrackers": null, - "firecracker's": null, - "firedamp": [["S", "M"]], - "firedamps": null, - "firedamp's": null, - "fired": [["U"]], - "unfired": null, - "firefight": [["J", "R", "G", "Z", "S"]], - "firefightings": null, - "firefighter": null, - "firefighting": null, - "firefighters": null, - "firefights": null, - "firefly": [["M", "S"]], - "firefly's": null, - "fireflies": null, - "Firefox": [["M"]], - "Firefox's": null, - "fireguard": [["M"]], - "fireguard's": null, - "firehouse": [["M", "S"]], - "firehouse's": null, - "firehouses": null, - "firelight": [["G", "Z", "S", "M"]], - "firelighting": null, - "firelighters": null, - "firelights": null, - "firelight's": null, - "fireman": [["M"]], - "fireman's": null, - "firemen": null, - "fire": [["M", "S"]], - "fire's": null, - "fires": null, - "fireplace": [["M", "S"]], - "fireplace's": null, - "fireplaces": null, - "fireplug": [["M", "S"]], - "fireplug's": null, - "fireplugs": null, - "firepower": [["S", "M"]], - "firepowers": null, - "firepower's": null, - "fireproof": [["S", "G", "D"]], - "fireproofs": null, - "fireproofing": null, - "fireproofed": null, - "firer": [["M"]], - "firer's": null, - "firesafe": null, - "fireside": [["S", "M"]], - "firesides": null, - "fireside's": null, - "Firestone": [["M"]], - "Firestone's": null, - "firestorm": [["S", "M"]], - "firestorms": null, - "firestorm's": null, - "firetrap": [["S", "M"]], - "firetraps": null, - "firetrap's": null, - "firetruck": [["S"]], - "firetrucks": null, - "firewall": [["S"]], - "firewalls": null, - "firewater": [["S", "M"]], - "firewaters": null, - "firewater's": null, - "firewood": [["M", "S"]], - "firewood's": null, - "firewoods": null, - "firework": [["M", "S"]], - "firework's": null, - "fireworks": null, - "firing": [["M"]], - "firing's": null, - "firkin": [["M"]], - "firkin's": null, - "firmament": [["M", "S"]], - "firmament's": null, - "firmaments": null, - "firmer": null, - "firmest": null, - "firm": [["I", "S", "F", "D", "G"]], - "infirm": null, - "infirms": null, - "infirmed": null, - "infirming": null, - "firms": null, - "firmed": null, - "firming": null, - "firmly": [["I"]], - "infirmly": null, - "firmness": [["M", "S"]], - "firmness's": null, - "firmnesses": null, - "firm's": null, - "firmware": [["M", "S"]], - "firmware's": null, - "firmwares": null, - "firring": null, - "firstborn": [["S"]], - "firstborns": null, - "firsthand": null, - "first": [["S", "Y"]], - "firsts": null, - "firstly": null, - "firth": [["M"]], - "firth's": null, - "firths": null, - "fir": [["Z", "G", "J", "M", "D", "R", "H", "S"]], - "firers": null, - "firings": null, - "fir's": null, - "firs": null, - "fiscal": [["Y", "S"]], - "fiscally": null, - "fiscals": null, - "Fischbein": [["M"]], - "Fischbein's": null, - "Fischer": [["M"]], - "Fischer's": null, - "fishbowl": [["M", "S"]], - "fishbowl's": null, - "fishbowls": null, - "fishcake": [["S"]], - "fishcakes": null, - "fisher": [["M"]], - "fisher's": null, - "Fisher": [["M"]], - "Fisher's": null, - "fisherman": [["M"]], - "fisherman's": null, - "fishermen": [["M"]], - "fishermen's": null, - "fishery": [["M", "S"]], - "fishery's": null, - "fisheries": null, - "fishhook": [["M", "S"]], - "fishhook's": null, - "fishhooks": null, - "fishily": null, - "fishiness": [["M", "S"]], - "fishiness's": null, - "fishinesses": null, - "fishing": [["M"]], - "fishing's": null, - "fish": [["J", "G", "Z", "M", "S", "R", "D"]], - "fishings": null, - "fishers": null, - "fish's": null, - "fishes": null, - "fished": null, - "Fishkill": [["M"]], - "Fishkill's": null, - "fishmeal": null, - "fishmonger": [["M", "S"]], - "fishmonger's": null, - "fishmongers": null, - "fishnet": [["S", "M"]], - "fishnets": null, - "fishnet's": null, - "fishpond": [["S", "M"]], - "fishponds": null, - "fishpond's": null, - "fishtail": [["D", "M", "G", "S"]], - "fishtailed": null, - "fishtail's": null, - "fishtailing": null, - "fishtails": null, - "fishtanks": null, - "fishwife": [["M"]], - "fishwife's": null, - "fishwives": null, - "fishy": [["T", "P", "R"]], - "fishiest": null, - "fishier": null, - "Fiske": [["M"]], - "Fiske's": null, - "Fisk": [["M"]], - "Fisk's": null, - "fissile": null, - "fissionable": [["S"]], - "fissionables": null, - "fission": [["B", "S", "D", "M", "G"]], - "fissions": null, - "fissioned": null, - "fission's": null, - "fissioning": null, - "fissure": [["M", "G", "S", "D"]], - "fissure's": null, - "fissuring": null, - "fissures": null, - "fissured": null, - "fistfight": [["S", "M"]], - "fistfights": null, - "fistfight's": null, - "fistful": [["M", "S"]], - "fistful's": null, - "fistfuls": null, - "fisticuff": [["S", "M"]], - "fisticuffs": null, - "fisticuff's": null, - "fist": [["M", "D", "G", "S"]], - "fist's": null, - "fisted": null, - "fisting": null, - "fists": null, - "fistula": [["S", "M"]], - "fistulas": null, - "fistula's": null, - "fistulous": null, - "Fitchburg": [["M"]], - "Fitchburg's": null, - "Fitch": [["M"]], - "Fitch's": null, - "fitfulness": [["S", "M"]], - "fitfulnesses": null, - "fitfulness's": null, - "fitful": [["P", "Y"]], - "fitfully": null, - "fitments": null, - "fitness": [["U", "S", "M"]], - "unfitness": null, - "unfitnesses": null, - "unfitness's": null, - "fitnesses": null, - "fitness's": null, - "fits": [["A", "K"]], - "refits": null, - "profits": null, - "fit's": [["K"]], - "profit's": null, - "fitted": [["U", "A"]], - "unfitted": null, - "refitted": null, - "fitter": [["S", "M"]], - "fitters": null, - "fitter's": null, - "fittest": null, - "fitting": [["A", "U"]], - "refitting": null, - "unfitting": null, - "fittingly": null, - "fittingness": [["M"]], - "fittingness's": null, - "fittings": null, - "fit": [["U", "Y", "P", "S"]], - "unfit": null, - "unfitly": null, - "unfits": null, - "fitly": null, - "Fitzgerald": [["M"]], - "Fitzgerald's": null, - "Fitz": [["M"]], - "Fitz's": null, - "Fitzpatrick": [["M"]], - "Fitzpatrick's": null, - "Fitzroy": [["M"]], - "Fitzroy's": null, - "fivefold": null, - "five": [["M", "R", "S"]], - "five's": null, - "fiver": [["M"]], - "fives": null, - "fiver's": null, - "fixable": null, - "fixate": [["V", "N", "G", "X", "S", "D"]], - "fixative": [["S"]], - "fixation": [["M"]], - "fixating": null, - "fixations": null, - "fixates": null, - "fixated": null, - "fixatifs": null, - "fixation's": null, - "fixatives": null, - "fixedness": [["M"]], - "fixedness's": null, - "fixed": [["Y", "P"]], - "fixedly": null, - "fixer": [["S", "M"]], - "fixers": null, - "fixer's": null, - "fixes": [["I"]], - "infixes": null, - "fixing": [["S", "M"]], - "fixings": null, - "fixing's": null, - "fixity": [["M", "S"]], - "fixity's": null, - "fixities": null, - "fixture": [["S", "M"]], - "fixtures": null, - "fixture's": null, - "fix": [["U", "S", "D", "G"]], - "unfix": null, - "unfixes": null, - "unfixed": null, - "unfixing": null, - "Fizeau": [["M"]], - "Fizeau's": null, - "fizzer": [["M"]], - "fizzer's": null, - "fizzle": [["G", "S", "D"]], - "fizzling": null, - "fizzles": null, - "fizzled": null, - "fizz": [["S", "R", "D", "G"]], - "fizzes": null, - "fizzed": null, - "fizzing": null, - "fizzy": [["R", "T"]], - "fizzier": null, - "fizziest": null, - "fjord": [["S", "M"]], - "fjords": null, - "fjord's": null, - "FL": null, - "flabbergast": [["G", "S", "D"]], - "flabbergasting": [["Y"]], - "flabbergasts": null, - "flabbergasted": null, - "flabbergastingly": null, - "flabbily": null, - "flabbiness": [["S", "M"]], - "flabbinesses": null, - "flabbiness's": null, - "flabby": [["T", "P", "R"]], - "flabbiest": null, - "flabbier": null, - "flab": [["M", "S"]], - "flab's": null, - "flabs": null, - "flaccidity": [["M", "S"]], - "flaccidity's": null, - "flaccidities": null, - "flaccid": [["Y"]], - "flaccidly": null, - "flack": [["S", "G", "D", "M"]], - "flacks": null, - "flacking": null, - "flacked": null, - "flack's": null, - "flagella": [["M"]], - "flagella's": null, - "flagellate": [["D", "S", "N", "G", "X"]], - "flagellated": null, - "flagellates": null, - "flagellation": [["M"]], - "flagellating": null, - "flagellations": null, - "flagellation's": null, - "flagellum": [["M"]], - "flagellum's": null, - "flagged": null, - "flaggingly": [["U"]], - "unflaggingly": null, - "flagging": [["S", "M", "Y"]], - "flaggings": null, - "flagging's": null, - "flagman": [["M"]], - "flagman's": null, - "flagmen": null, - "flag": [["M", "S"]], - "flag's": null, - "flags": null, - "flagon": [["S", "M"]], - "flagons": null, - "flagon's": null, - "flagpole": [["S", "M"]], - "flagpoles": null, - "flagpole's": null, - "flagrance": [["M", "S"]], - "flagrance's": null, - "flagrances": null, - "flagrancy": [["S", "M"]], - "flagrancies": null, - "flagrancy's": null, - "flagrant": [["Y"]], - "flagrantly": null, - "flagship": [["M", "S"]], - "flagship's": null, - "flagships": null, - "flagstaff": [["M", "S"]], - "flagstaff's": null, - "flagstaffs": null, - "flagstone": [["S", "M"]], - "flagstones": null, - "flagstone's": null, - "flail": [["S", "G", "M", "D"]], - "flails": null, - "flailing": null, - "flail's": null, - "flailed": null, - "flair": [["S", "M"]], - "flairs": null, - "flair's": null, - "flaker": [["M"]], - "flaker's": null, - "flake": [["S", "M"]], - "flakes": null, - "flake's": null, - "flakiness": [["M", "S"]], - "flakiness's": null, - "flakinesses": null, - "flak": [["R", "D", "M", "G", "S"]], - "flaked": null, - "flak's": null, - "flaking": null, - "flaks": null, - "flaky": [["P", "R", "T"]], - "flakier": null, - "flakiest": null, - "Fla": [["M"]], - "Fla's": null, - "flamb�": [["D"]], - "flamb�ed": null, - "flambeing": null, - "flambes": null, - "flamboyance": [["M", "S"]], - "flamboyance's": null, - "flamboyances": null, - "flamboyancy": [["M", "S"]], - "flamboyancy's": null, - "flamboyancies": null, - "flamboyant": [["Y", "S"]], - "flamboyantly": null, - "flamboyants": null, - "flamenco": [["S", "M"]], - "flamencos": null, - "flamenco's": null, - "flamen": [["M"]], - "flamen's": null, - "flameproof": [["D", "G", "S"]], - "flameproofed": null, - "flameproofing": null, - "flameproofs": null, - "flamer": [["I", "M"]], - "inflamer": null, - "inflamer's": null, - "flamer's": null, - "flame's": null, - "flame": [["S", "I", "G", "D", "R"]], - "flames": null, - "inflames": null, - "inflame": null, - "inflaming": null, - "inflamed": null, - "flaming": [["Y"]], - "flamed": null, - "flamethrower": [["S", "M"]], - "flamethrowers": null, - "flamethrower's": null, - "flamingo": [["S", "M"]], - "flamingos": null, - "flamingo's": null, - "flamingly": null, - "flammability": [["I", "S", "M"]], - "inflammability": null, - "inflammabilities": null, - "inflammability's": null, - "flammabilities": null, - "flammability's": null, - "flammable": [["S", "I"]], - "flammables": null, - "inflammables": null, - "inflammable": [["P"]], - "flam": [["M", "R", "N", "D", "J", "G", "Z"]], - "flam's": null, - "flamings": null, - "flamers": null, - "Flanagan": [["M"]], - "Flanagan's": null, - "Flanders": [["M"]], - "Flanders's": null, - "flange": [["G", "M", "S", "D"]], - "flanging": null, - "flange's": null, - "flanges": null, - "flanged": null, - "flanker": [["M"]], - "flanker's": null, - "flank": [["S", "G", "Z", "R", "D", "M"]], - "flanks": null, - "flanking": null, - "flankers": null, - "flanked": null, - "flank's": null, - "flan": [["M", "S"]], - "flan's": null, - "flans": null, - "flannel": [["D", "M", "G", "S"]], - "flanneled": null, - "flannel's": null, - "flanneling": null, - "flannels": null, - "flannelet": [["M", "S"]], - "flannelet's": null, - "flannelets": null, - "flannelette's": null, - "flapjack": [["S", "M"]], - "flapjacks": null, - "flapjack's": null, - "flap": [["M", "S"]], - "flap's": null, - "flaps": [["M"]], - "flapped": null, - "flapper": [["S", "M"]], - "flappers": null, - "flapper's": null, - "flapping": null, - "flaps's": null, - "flare": [["S", "D", "G"]], - "flares": null, - "flared": null, - "flaring": [["Y"]], - "flareup": [["S"]], - "flareups": null, - "flaringly": null, - "flashback": [["S", "M"]], - "flashbacks": null, - "flashback's": null, - "flashbulb": [["S", "M"]], - "flashbulbs": null, - "flashbulb's": null, - "flashcard": [["S"]], - "flashcards": null, - "flashcube": [["M", "S"]], - "flashcube's": null, - "flashcubes": null, - "flasher": [["M"]], - "flasher's": null, - "flashgun": [["S"]], - "flashguns": null, - "flashily": null, - "flashiness": [["S", "M"]], - "flashinesses": null, - "flashiness's": null, - "flashing": [["M"]], - "flashing's": null, - "flash": [["J", "M", "R", "S", "D", "G", "Z"]], - "flashings": null, - "flash's": null, - "flashes": null, - "flashed": null, - "flashers": null, - "flashlight": [["M", "S"]], - "flashlight's": null, - "flashlights": null, - "flashy": [["T", "P", "R"]], - "flashiest": null, - "flashier": null, - "flask": [["S", "M"]], - "flasks": null, - "flask's": null, - "flatbed": [["S"]], - "flatbeds": null, - "flatboat": [["M", "S"]], - "flatboat's": null, - "flatboats": null, - "flatcar": [["M", "S"]], - "flatcar's": null, - "flatcars": null, - "flatfeet": null, - "flatfish": [["S", "M"]], - "flatfishes": null, - "flatfish's": null, - "flatfoot": [["S", "G", "D", "M"]], - "flatfoots": null, - "flatfooting": null, - "flatfooted": null, - "flatfoot's": null, - "flathead": [["M"]], - "flathead's": null, - "flatiron": [["S", "M"]], - "flatirons": null, - "flatiron's": null, - "flatland": [["R", "S"]], - "flatlander": null, - "flatlands": null, - "flatmate": [["M"]], - "flatmate's": null, - "flat": [["M", "Y", "P", "S"]], - "flat's": null, - "flatly": null, - "flatness": [["M", "S"]], - "flats": null, - "flatness's": null, - "flatnesses": null, - "flatted": null, - "flattener": [["M"]], - "flattener's": null, - "flatten": [["S", "D", "R", "G"]], - "flattens": null, - "flattened": null, - "flattening": null, - "flatter": [["D", "R", "S", "Z", "G"]], - "flattered": null, - "flatterer": [["M"]], - "flatters": null, - "flatterers": null, - "flattering": [["Y", "U"]], - "flatterer's": null, - "flatteringly": null, - "unflatteringly": null, - "unflattering": null, - "flattery": [["S", "M"]], - "flatteries": null, - "flattery's": null, - "flattest": [["M"]], - "flattest's": null, - "flatting": null, - "flattish": null, - "Flatt": [["M"]], - "Flatt's": null, - "flattop": [["M", "S"]], - "flattop's": null, - "flattops": null, - "flatulence": [["S", "M"]], - "flatulences": null, - "flatulence's": null, - "flatulent": [["Y"]], - "flatulently": null, - "flatus": [["S", "M"]], - "flatuses": null, - "flatus's": null, - "flatware": [["M", "S"]], - "flatware's": null, - "flatwares": null, - "flatworm": [["S", "M"]], - "flatworms": null, - "flatworm's": null, - "Flaubert": [["M"]], - "Flaubert's": null, - "flaunting": [["Y"]], - "flauntingly": null, - "flaunt": [["S", "D", "G"]], - "flaunts": null, - "flaunted": null, - "flautist": [["S", "M"]], - "flautists": null, - "flautist's": null, - "flavored": [["U"]], - "unflavored": null, - "flavorer": [["M"]], - "flavorer's": null, - "flavorful": null, - "flavoring": [["M"]], - "flavoring's": null, - "flavorless": null, - "flavor": [["S", "J", "D", "R", "M", "Z", "G"]], - "flavors": null, - "flavorings": null, - "flavor's": null, - "flavorers": null, - "flavorsome": null, - "flaw": [["G", "D", "M", "S"]], - "flawing": null, - "flawed": null, - "flaw's": null, - "flaws": null, - "flawlessness": [["M", "S"]], - "flawlessness's": null, - "flawlessnesses": null, - "flawless": [["P", "Y"]], - "flawlessly": null, - "flax": [["M", "S", "N"]], - "flax's": null, - "flaxes": null, - "flaxen": null, - "flaxseed": [["M"]], - "flaxseed's": null, - "flayer": [["M"]], - "flayer's": null, - "flay": [["R", "D", "G", "Z", "S"]], - "flayed": null, - "flaying": null, - "flayers": null, - "flays": null, - "fleabag": [["M", "S"]], - "fleabag's": null, - "fleabags": null, - "fleabites": null, - "flea": [["S", "M"]], - "fleas": null, - "flea's": null, - "fleawort": [["M"]], - "fleawort's": null, - "fleck": [["G", "R", "D", "M", "S"]], - "flecking": null, - "flecker": null, - "flecked": null, - "fleck's": null, - "flecks": null, - "Fledermaus": [["M"]], - "Fledermaus's": null, - "fledged": [["U"]], - "unfledged": null, - "fledge": [["G", "S", "D"]], - "fledging": null, - "fledges": null, - "fledgling": [["S", "M"]], - "fledglings": null, - "fledgling's": null, - "fleecer": [["M"]], - "fleecer's": null, - "fleece": [["R", "S", "D", "G", "M", "Z"]], - "fleeces": null, - "fleeced": null, - "fleecing": null, - "fleece's": null, - "fleecers": null, - "fleeciness": [["S", "M"]], - "fleecinesses": null, - "fleeciness's": null, - "fleecy": [["R", "T", "P"]], - "fleecier": null, - "fleeciest": null, - "fleeing": null, - "flee": [["R", "S"]], - "fleer": null, - "flees": null, - "fleetingly": [["M"]], - "fleetingly's": null, - "fleetingness": [["S", "M"]], - "fleetingnesses": null, - "fleetingness's": null, - "fleeting": [["Y", "P"]], - "fleet": [["M", "Y", "R", "D", "G", "T", "P", "S"]], - "fleet's": null, - "fleetly": null, - "fleeter": null, - "fleeted": null, - "fleetest": null, - "fleetness": [["M", "S"]], - "fleets": null, - "fleetness's": null, - "fleetnesses": null, - "Fleischer": [["M"]], - "Fleischer's": null, - "Fleischman": [["M"]], - "Fleischman's": null, - "Fleisher": [["M"]], - "Fleisher's": null, - "Fleming": [["M"]], - "Fleming's": null, - "Flemished": [["M"]], - "Flemished's": null, - "Flemish": [["G", "D", "S", "M"]], - "Flemishing": [["M"]], - "Flemishes": null, - "Flemish's": null, - "Flemishing's": null, - "Flem": [["J", "G", "M"]], - "Flemings": null, - "Flem's": null, - "Flemming": [["M"]], - "Flemming's": null, - "flesher": [["M"]], - "flesher's": null, - "fleshiness": [["M"]], - "fleshiness's": null, - "flesh": [["J", "M", "Y", "R", "S", "D", "G"]], - "fleshings": null, - "flesh's": null, - "fleshly": [["T", "R"]], - "fleshes": null, - "fleshed": null, - "fleshing": null, - "fleshless": null, - "fleshliest": null, - "fleshlier": null, - "fleshpot": [["S", "M"]], - "fleshpots": null, - "fleshpot's": null, - "fleshy": [["T", "P", "R"]], - "fleshiest": null, - "fleshier": null, - "fletch": [["D", "R", "S", "G", "J"]], - "fletched": null, - "fletcher": [["M"]], - "fletches": null, - "fletching": [["M"]], - "fletchings": null, - "fletcher's": null, - "Fletcher": [["M"]], - "Fletcher's": null, - "fletching's": null, - "Fletch": [["M", "R"]], - "Fletch's": null, - "Fleurette": [["M"]], - "Fleurette's": null, - "Fleur": [["M"]], - "Fleur's": null, - "flew": [["S"]], - "flews": [["M"]], - "flews's": null, - "flexed": [["I"]], - "inflexed": null, - "flexibility": [["M", "S", "I"]], - "flexibility's": null, - "inflexibility's": null, - "flexibilities": null, - "inflexibilities": null, - "inflexibility": null, - "flexible": [["I"]], - "inflexible": [["P"]], - "flexibly": [["I"]], - "inflexibly": null, - "flexitime's": null, - "flex": [["M", "S", "D", "A", "G"]], - "flex's": null, - "reflex's": null, - "flexes": null, - "reflexes": null, - "reflexed": null, - "reflex": [["Y", "V"]], - "reflexing": null, - "flexing": null, - "flextime": [["S"]], - "flextimes": null, - "flexural": null, - "flexure": [["M"]], - "flexure's": null, - "fl": [["G", "J", "D"]], - "fling": [["R", "M", "G"]], - "flings": null, - "fled": null, - "flibbertigibbet": [["M", "S"]], - "flibbertigibbet's": null, - "flibbertigibbets": null, - "flicker": [["G", "D"]], - "flickering": [["Y"]], - "flickered": null, - "flickeringly": null, - "flickery": null, - "flick": [["G", "Z", "S", "R", "D"]], - "flicking": null, - "flickers": null, - "flicks": null, - "flicked": null, - "flier": [["M"]], - "flier's": null, - "flight": [["G", "M", "D", "S"]], - "flighting": null, - "flight's": null, - "flighted": null, - "flights": null, - "flightiness": [["S", "M"]], - "flightinesses": null, - "flightiness's": null, - "flightless": null, - "flightpath": null, - "flighty": [["R", "T", "P"]], - "flightier": null, - "flightiest": null, - "flimflammed": null, - "flimflamming": null, - "flimflam": [["M", "S"]], - "flimflam's": null, - "flimflams": null, - "flimsily": null, - "flimsiness": [["M", "S"]], - "flimsiness's": null, - "flimsinesses": null, - "flimsy": [["P", "T", "R", "S"]], - "flimsiest": null, - "flimsier": null, - "flimsies": null, - "flincher": [["M"]], - "flincher's": null, - "flinch": [["G", "D", "R", "S"]], - "flinching": [["U"]], - "flinched": null, - "flinches": null, - "unflinching": [["Y"]], - "flinger": [["M"]], - "flinger's": null, - "fling's": null, - "flinging": null, - "Flin": [["M"]], - "Flin's": null, - "Flinn": [["M"]], - "Flinn's": null, - "flintiness": [["M"]], - "flintiness's": null, - "flintless": null, - "flintlock": [["M", "S"]], - "flintlock's": null, - "flintlocks": null, - "Flint": [["M"]], - "Flint's": null, - "flint": [["M", "D", "S", "G"]], - "flint's": null, - "flinted": null, - "flints": null, - "flinting": null, - "Flintstones": null, - "flinty": [["T", "R", "P"]], - "flintiest": null, - "flintier": null, - "flipflop": null, - "flippable": null, - "flippancy": [["M", "S"]], - "flippancy's": null, - "flippancies": null, - "flippant": [["Y"]], - "flippantly": null, - "flipped": null, - "flipper": [["S", "M"]], - "flippers": null, - "flipper's": null, - "flippest": null, - "flipping": null, - "flip": [["S"]], - "flips": null, - "flirtation": [["S", "M"]], - "flirtations": null, - "flirtation's": null, - "flirtatiousness": [["M", "S"]], - "flirtatiousness's": null, - "flirtatiousnesses": null, - "flirtatious": [["P", "Y"]], - "flirtatiously": null, - "flirt": [["G", "R", "D", "S"]], - "flirting": null, - "flirter": null, - "flirted": null, - "flirts": null, - "flit": [["S"]], - "flits": null, - "flitted": null, - "flitting": null, - "floater": [["M"]], - "floater's": null, - "float": [["S", "R", "D", "G", "J", "Z"]], - "floats": null, - "floated": null, - "floating": null, - "floatings": null, - "floaters": null, - "floaty": null, - "flocculate": [["G", "N", "D", "S"]], - "flocculating": null, - "flocculation": [["M"]], - "flocculated": null, - "flocculates": null, - "flocculation's": null, - "flock": [["S", "J", "D", "M", "G"]], - "flocks": null, - "flockings": null, - "flocked": null, - "flock's": null, - "flocking": null, - "floe": [["M", "S"]], - "floe's": null, - "floes": null, - "flogged": null, - "flogger": [["S", "M"]], - "floggers": null, - "flogger's": null, - "flogging": [["S", "M"]], - "floggings": null, - "flogging's": null, - "flog": [["S"]], - "flogs": null, - "Flo": [["M"]], - "Flo's": null, - "floodgate": [["M", "S"]], - "floodgate's": null, - "floodgates": null, - "floodlight": [["D", "G", "M", "S"]], - "floodlighted": null, - "floodlighting": null, - "floodlight's": null, - "floodlights": null, - "floodlit": null, - "floodplain": [["S"]], - "floodplains": null, - "flood": [["S", "M", "R", "D", "G"]], - "floods": null, - "flood's": null, - "flooder": null, - "flooded": null, - "flooding": null, - "floodwater": [["S", "M"]], - "floodwaters": null, - "floodwater's": null, - "floorboard": [["M", "S"]], - "floorboard's": null, - "floorboards": null, - "floorer": [["M"]], - "floorer's": null, - "flooring": [["M"]], - "flooring's": null, - "floor": [["S", "J", "R", "D", "M", "G"]], - "floors": null, - "floorings": null, - "floored": null, - "floor's": null, - "floorspace": null, - "floorwalker": [["S", "M"]], - "floorwalkers": null, - "floorwalker's": null, - "floozy": [["S", "M"]], - "floozies": null, - "floozy's": null, - "flophouse": [["S", "M"]], - "flophouses": null, - "flophouse's": null, - "flop": [["M", "S"]], - "flop's": null, - "flops": null, - "flopped": null, - "flopper": [["M"]], - "flopper's": null, - "floppily": null, - "floppiness": [["S", "M"]], - "floppinesses": null, - "floppiness's": null, - "flopping": null, - "floppy": [["T", "M", "R", "S", "P"]], - "floppiest": null, - "floppy's": null, - "floppier": null, - "floppies": null, - "floral": [["S", "Y"]], - "florals": null, - "florally": null, - "Flora": [["M"]], - "Flora's": null, - "Florance": [["M"]], - "Florance's": null, - "flora": [["S", "M"]], - "floras": null, - "flora's": null, - "Florella": [["M"]], - "Florella's": null, - "Florence": [["M"]], - "Florence's": null, - "Florencia": [["M"]], - "Florencia's": null, - "Florentia": [["M"]], - "Florentia's": null, - "Florentine": [["S"]], - "Florentines": null, - "Florenza": [["M"]], - "Florenza's": null, - "florescence": [["M", "I", "S"]], - "florescence's": null, - "inflorescence's": null, - "inflorescence": null, - "inflorescences": null, - "florescences": null, - "florescent": [["I"]], - "inflorescent": null, - "Flore": [["S", "M"]], - "Flores": null, - "Flore's": null, - "floret": [["M", "S"]], - "floret's": null, - "florets": null, - "Florette": [["M"]], - "Florette's": null, - "Floria": [["M"]], - "Floria's": null, - "Florian": [["M"]], - "Florian's": null, - "Florida": [["M"]], - "Florida's": null, - "Floridan": [["S"]], - "Floridans": null, - "Floridian": [["S"]], - "Floridians": null, - "floridness": [["S", "M"]], - "floridnesses": null, - "floridness's": null, - "florid": [["Y", "P"]], - "floridly": null, - "Florie": [["M"]], - "Florie's": null, - "Florina": [["M"]], - "Florina's": null, - "Florinda": [["M"]], - "Florinda's": null, - "Florine": [["M"]], - "Florine's": null, - "florin": [["M", "S"]], - "florin's": null, - "florins": null, - "Flori": [["S", "M"]], - "Floris": null, - "Flori's": null, - "florist": [["M", "S"]], - "florist's": null, - "florists": null, - "Flor": [["M"]], - "Flor's": null, - "Florrie": [["M"]], - "Florrie's": null, - "Florri": [["M"]], - "Florri's": null, - "Florry": [["M"]], - "Florry's": null, - "Flory": [["M"]], - "Flory's": null, - "floss": [["G", "S", "D", "M"]], - "flossing": null, - "flosses": null, - "flossed": null, - "floss's": null, - "Flossie": [["M"]], - "Flossie's": null, - "Flossi": [["M"]], - "Flossi's": null, - "Flossy": [["M"]], - "Flossy's": null, - "flossy": [["R", "S", "T"]], - "flossier": null, - "flossies": null, - "flossiest": null, - "flotation": [["S", "M"]], - "flotations": null, - "flotation's": null, - "flotilla": [["S", "M"]], - "flotillas": null, - "flotilla's": null, - "flotsam": [["S", "M"]], - "flotsams": null, - "flotsam's": null, - "flounce": [["G", "D", "S"]], - "flouncing": [["M"]], - "flounced": null, - "flounces": null, - "flouncing's": null, - "flouncy": [["R", "T"]], - "flouncier": null, - "flounciest": null, - "flounder": [["S", "D", "G"]], - "flounders": null, - "floundered": null, - "floundering": null, - "flourisher": [["M"]], - "flourisher's": null, - "flourish": [["G", "S", "R", "D"]], - "flourishing": [["Y"]], - "flourishes": null, - "flourished": null, - "flourishingly": null, - "flour": [["S", "G", "D", "M"]], - "flours": null, - "flouring": null, - "floured": null, - "flour's": null, - "floury": [["T", "R"]], - "flouriest": null, - "flourier": null, - "flouter": [["M"]], - "flouter's": null, - "flout": [["G", "Z", "S", "R", "D"]], - "flouting": null, - "flouters": null, - "flouts": null, - "flouted": null, - "flowchart": [["S", "G"]], - "flowcharts": null, - "flowcharting": null, - "flowed": null, - "flowerbed": [["S", "M"]], - "flowerbeds": null, - "flowerbed's": null, - "flower": [["C", "S", "G", "D"]], - "deflower": null, - "deflowers": null, - "deflowering": null, - "deflowered": null, - "flowers": null, - "flowering": null, - "flowered": null, - "flowerer": [["M"]], - "flowerer's": null, - "floweriness": [["S", "M"]], - "flowerinesses": null, - "floweriness's": null, - "flowerless": null, - "flowerpot": [["M", "S"]], - "flowerpot's": null, - "flowerpots": null, - "flower's": null, - "Flowers": null, - "flowery": [["T", "R", "P"]], - "floweriest": null, - "flowerier": null, - "flowing": [["Y"]], - "flowingly": null, - "flow": [["I", "S", "G"]], - "inflow": [["M"]], - "inflows": null, - "inflowing": null, - "flows": null, - "flown": null, - "flowstone": null, - "Floyd": [["M"]], - "Floyd's": null, - "Flss": [["M"]], - "Flss's": null, - "flt": null, - "flubbed": null, - "flubbing": null, - "flub": [["S"]], - "flubs": null, - "fluctuate": [["X", "S", "D", "N", "G"]], - "fluctuations": null, - "fluctuates": null, - "fluctuated": null, - "fluctuation": [["M"]], - "fluctuating": null, - "fluctuation's": null, - "fluency": [["M", "S"]], - "fluency's": null, - "fluencies": null, - "fluently": null, - "fluent": [["S", "F"]], - "fluents": null, - "confluents": null, - "confluent": null, - "flue": [["S", "M"]], - "flues": null, - "flue's": null, - "fluffiness": [["S", "M"]], - "fluffinesses": null, - "fluffiness's": null, - "fluff": [["S", "G", "D", "M"]], - "fluffs": null, - "fluffing": null, - "fluffed": null, - "fluff's": null, - "fluffy": [["P", "R", "T"]], - "fluffier": null, - "fluffiest": null, - "fluidity": [["S", "M"]], - "fluidities": null, - "fluidity's": null, - "fluidized": null, - "fluid": [["M", "Y", "S", "P"]], - "fluid's": null, - "fluidly": null, - "fluids": null, - "fluidness": [["M"]], - "fluidness's": null, - "fluke": [["S", "D", "G", "M"]], - "flukes": null, - "fluked": null, - "fluking": null, - "fluke's": null, - "fluky": [["R", "T"]], - "flukier": null, - "flukiest": null, - "flume": [["S", "D", "G", "M"]], - "flumes": null, - "flumed": null, - "fluming": null, - "flume's": null, - "flummox": [["D", "S", "G"]], - "flummoxed": null, - "flummoxes": null, - "flummoxing": null, - "flu": [["M", "S"]], - "flu's": null, - "flus": null, - "flung": null, - "flunkey's": null, - "flunk": [["S", "R", "D", "G"]], - "flunks": null, - "flunker": null, - "flunked": null, - "flunking": null, - "flunky": [["M", "S"]], - "flunky's": null, - "flunkies": null, - "fluoresce": [["G", "S", "R", "D"]], - "fluorescing": null, - "fluoresces": null, - "fluorescer": null, - "fluoresced": null, - "fluorescence": [["M", "S"]], - "fluorescence's": null, - "fluorescences": null, - "fluorescent": [["S"]], - "fluorescents": null, - "fluoridate": [["X", "D", "S", "G", "N"]], - "fluoridations": null, - "fluoridated": null, - "fluoridates": null, - "fluoridating": null, - "fluoridation": [["M"]], - "fluoridation's": null, - "fluoride": [["S", "M"]], - "fluorides": null, - "fluoride's": null, - "fluorimetric": null, - "fluorinated": null, - "fluorine": [["S", "M"]], - "fluorines": null, - "fluorine's": null, - "fluorite": [["M", "S"]], - "fluorite's": null, - "fluorites": null, - "fluorocarbon": [["M", "S"]], - "fluorocarbon's": null, - "fluorocarbons": null, - "fluoroscope": [["M", "G", "D", "S"]], - "fluoroscope's": null, - "fluoroscoping": null, - "fluoroscoped": null, - "fluoroscopes": null, - "fluoroscopic": null, - "flurry": [["G", "M", "D", "S"]], - "flurrying": null, - "flurry's": null, - "flurried": null, - "flurries": null, - "flushness": [["M"]], - "flushness's": null, - "flush": [["T", "R", "S", "D", "P", "B", "G"]], - "flushest": null, - "flusher": null, - "flushes": null, - "flushed": null, - "flushable": null, - "flushing": null, - "fluster": [["D", "S", "G"]], - "flustered": null, - "flusters": null, - "flustering": null, - "fluter": [["M"]], - "fluter's": null, - "flute": [["S", "R", "D", "G", "M", "J"]], - "flutes": null, - "fluted": null, - "fluting": [["M"]], - "flute's": null, - "flutings": null, - "fluting's": null, - "flutist": [["M", "S"]], - "flutist's": null, - "flutists": null, - "flutter": [["D", "R", "S", "G"]], - "fluttered": null, - "flutterer": [["M"]], - "flutters": null, - "fluttering": null, - "flutterer's": null, - "fluttery": null, - "fluxed": [["A"]], - "refluxed": null, - "fluxes": [["A"]], - "refluxes": null, - "flux": [["I", "M", "S"]], - "influx": null, - "influx's": null, - "influxes": null, - "flux's": null, - "fluxing": null, - "flyaway": null, - "flyblown": null, - "flyby": [["M"]], - "flyby's": null, - "flybys": null, - "flycatcher": [["M", "S"]], - "flycatcher's": null, - "flycatchers": null, - "flyer's": null, - "fly": [["J", "G", "B", "D", "R", "S", "T", "Z"]], - "flyings": null, - "flying": null, - "flyable": null, - "flied": null, - "flies": null, - "fliest": null, - "fliers": null, - "flyleaf": [["M"]], - "flyleaf's": null, - "flyleaves": null, - "Flynn": [["M"]], - "Flynn's": null, - "flyover": [["M", "S"]], - "flyover's": null, - "flyovers": null, - "flypaper": [["M", "S"]], - "flypaper's": null, - "flypapers": null, - "flysheet": [["S"]], - "flysheets": null, - "flyspeck": [["M", "D", "G", "S"]], - "flyspeck's": null, - "flyspecked": null, - "flyspecking": null, - "flyspecks": null, - "flyswatter": [["S"]], - "flyswatters": null, - "flyway": [["M", "S"]], - "flyway's": null, - "flyways": null, - "flyweight": [["M", "S"]], - "flyweight's": null, - "flyweights": null, - "flywheel": [["M", "S"]], - "flywheel's": null, - "flywheels": null, - "FM": null, - "Fm": [["M"]], - "Fm's": null, - "FNMA": [["M"]], - "FNMA's": null, - "foal": [["M", "D", "S", "G"]], - "foal's": null, - "foaled": null, - "foals": null, - "foaling": null, - "foaminess": [["M", "S"]], - "foaminess's": null, - "foaminesses": null, - "foam": [["M", "R", "D", "S", "G"]], - "foam's": null, - "foamer": null, - "foamed": null, - "foams": null, - "foaming": null, - "foamy": [["R", "P", "T"]], - "foamier": null, - "foamiest": null, - "fobbed": null, - "fobbing": null, - "fob": [["S", "M"]], - "fobs": null, - "fob's": null, - "focal": [["F"]], - "confocal": null, - "focally": null, - "Foch": [["M"]], - "Foch's": null, - "foci's": null, - "focused": [["A", "U"]], - "refocused": null, - "unfocused": null, - "focuser": [["M"]], - "focuser's": null, - "focuses": [["A"]], - "refocuses": null, - "focus": [["S", "R", "D", "M", "B", "G"]], - "focus's": null, - "focusable": null, - "focusing": null, - "fodder": [["G", "D", "M", "S"]], - "foddering": null, - "foddered": null, - "fodder's": null, - "fodders": null, - "foe": [["S", "M"]], - "foes": null, - "foe's": null, - "foetid": null, - "FOFL": null, - "fogbound": null, - "fogged": [["C"]], - "defogged": null, - "foggily": null, - "fogginess": [["M", "S"]], - "fogginess's": null, - "fogginesses": null, - "fogging": [["C"]], - "defogging": null, - "foggy": [["R", "P", "T"]], - "foggier": null, - "foggiest": null, - "foghorn": [["S", "M"]], - "foghorns": null, - "foghorn's": null, - "fogs": [["C"]], - "defogs": null, - "fog": [["S", "M"]], - "fog's": null, - "fogyish": null, - "fogy": [["S", "M"]], - "fogies": null, - "fogy's": null, - "foible": [["M", "S"]], - "foible's": null, - "foibles": null, - "foil": [["G", "S", "D"]], - "foiling": null, - "foils": null, - "foiled": null, - "foist": [["G", "D", "S"]], - "foisting": null, - "foisted": null, - "foists": null, - "Fokker": [["M"]], - "Fokker's": null, - "foldaway": [["S"]], - "foldaways": null, - "folded": [["A", "U"]], - "refolded": null, - "unfolded": null, - "folder": [["M"]], - "folder's": null, - "foldout": [["M", "S"]], - "foldout's": null, - "foldouts": null, - "fold": [["R", "D", "J", "S", "G", "Z"]], - "foldings": null, - "folds": [["U", "A"]], - "folding": null, - "folders": null, - "unfolds": null, - "refolds": null, - "Foley": [["M"]], - "Foley's": null, - "foliage": [["M", "S", "D"]], - "foliage's": null, - "foliages": null, - "foliaged": null, - "foliate": [["C", "S", "D", "X", "G", "N"]], - "defoliate": null, - "defoliates": null, - "defoliated": null, - "defoliations": null, - "defoliating": null, - "defoliation": null, - "foliates": null, - "foliated": null, - "foliations": null, - "foliating": null, - "foliation": [["C", "M"]], - "defoliation's": null, - "foliation's": null, - "folio": [["S", "D", "M", "G"]], - "folios": null, - "folioed": null, - "folio's": null, - "folioing": null, - "folklike": null, - "folklore": [["M", "S"]], - "folklore's": null, - "folklores": null, - "folkloric": null, - "folklorist": [["S", "M"]], - "folklorists": null, - "folklorist's": null, - "folk": [["M", "S"]], - "folk's": null, - "folks": null, - "folksiness": [["M", "S"]], - "folksiness's": null, - "folksinesses": null, - "folksinger": [["S"]], - "folksingers": null, - "folksinging": [["S"]], - "folksingings": null, - "folksong": [["S"]], - "folksongs": null, - "folksy": [["T", "P", "R"]], - "folksiest": null, - "folksier": null, - "folktale": [["S"]], - "folktales": null, - "folkway": [["S"]], - "folkways": null, - "foll": null, - "follicle": [["S", "M"]], - "follicles": null, - "follicle's": null, - "follicular": null, - "follower": [["M"]], - "follower's": null, - "follow": [["J", "S", "Z", "B", "G", "R", "D"]], - "followings": null, - "follows": null, - "followers": null, - "followable": null, - "following": null, - "followed": null, - "followup's": null, - "folly": [["S", "M"]], - "follies": null, - "folly's": null, - "Folsom": null, - "fol": [["Y"]], - "Fomalhaut": [["M"]], - "Fomalhaut's": null, - "fomentation": [["S", "M"]], - "fomentations": null, - "fomentation's": null, - "fomenter": [["M"]], - "fomenter's": null, - "foment": [["R", "D", "S", "G"]], - "fomented": null, - "foments": null, - "fomenting": null, - "Fonda": [["M"]], - "Fonda's": null, - "fondant": [["S", "M"]], - "fondants": null, - "fondant's": null, - "fondle": [["G", "S", "R", "D"]], - "fondling": null, - "fondles": null, - "fondler": [["M"]], - "fondled": null, - "fondler's": null, - "fondness": [["M", "S"]], - "fondness's": null, - "fondnesses": null, - "fond": [["P", "M", "Y", "R", "D", "G", "T", "S"]], - "fond's": null, - "fondly": null, - "fonder": null, - "fonded": null, - "fonding": null, - "fondest": null, - "fonds": null, - "fondue": [["M", "S"]], - "fondue's": null, - "fondues": null, - "Fons": null, - "Fonsie": [["M"]], - "Fonsie's": null, - "Fontainebleau": [["M"]], - "Fontainebleau's": null, - "Fontaine": [["M"]], - "Fontaine's": null, - "Fontana": [["M"]], - "Fontana's": null, - "fontanelle's": null, - "fontanel": [["M", "S"]], - "fontanel's": null, - "fontanels": null, - "font": [["M", "S"]], - "font's": null, - "fonts": null, - "Fonzie": [["M"]], - "Fonzie's": null, - "Fonz": [["M"]], - "Fonz's": null, - "foodie": [["S"]], - "foodies": null, - "food": [["M", "S"]], - "food's": null, - "foods": null, - "foodstuff": [["M", "S"]], - "foodstuff's": null, - "foodstuffs": null, - "foolery": [["M", "S"]], - "foolery's": null, - "fooleries": null, - "foolhardily": null, - "foolhardiness": [["S", "M"]], - "foolhardinesses": null, - "foolhardiness's": null, - "foolhardy": [["P", "T", "R"]], - "foolhardiest": null, - "foolhardier": null, - "foolishness": [["S", "M"]], - "foolishnesses": null, - "foolishness's": null, - "foolish": [["P", "R", "Y", "T"]], - "foolisher": null, - "foolishly": null, - "foolishest": null, - "fool": [["M", "D", "G", "S"]], - "fool's": null, - "fooled": null, - "fooling": null, - "fools": null, - "foolproof": null, - "foolscap": [["M", "S"]], - "foolscap's": null, - "foolscaps": null, - "footage": [["S", "M"]], - "footages": null, - "footage's": null, - "football": [["S", "R", "D", "M", "G", "Z"]], - "footballs": null, - "footballer": null, - "footballed": null, - "football's": null, - "footballing": null, - "footballers": null, - "footbridge": [["S", "M"]], - "footbridges": null, - "footbridge's": null, - "Foote": [["M"]], - "Foote's": null, - "footer": [["M"]], - "footer's": null, - "footfall": [["S", "M"]], - "footfalls": null, - "footfall's": null, - "foothill": [["S", "M"]], - "foothills": null, - "foothill's": null, - "foothold": [["M", "S"]], - "foothold's": null, - "footholds": null, - "footing": [["M"]], - "footing's": null, - "footless": null, - "footlights": null, - "footling": null, - "footlocker": [["S", "M"]], - "footlockers": null, - "footlocker's": null, - "footloose": null, - "footman": [["M"]], - "footman's": null, - "footmarks": null, - "footmen": null, - "footnote": [["M", "S", "D", "G"]], - "footnote's": null, - "footnotes": null, - "footnoted": null, - "footnoting": null, - "footpad": [["S", "M"]], - "footpads": null, - "footpad's": null, - "footpath": [["M"]], - "footpath's": null, - "footpaths": null, - "footplate": [["M"]], - "footplate's": null, - "footprint": [["M", "S"]], - "footprint's": null, - "footprints": null, - "footrace": [["S"]], - "footraces": null, - "footrest": [["M", "S"]], - "footrest's": null, - "footrests": null, - "footsie": [["S", "M"]], - "footsies": null, - "footsie's": null, - "foot": [["S", "M", "R", "D", "G", "Z", "J"]], - "foots": null, - "foot's": null, - "footed": null, - "footers": null, - "footings": null, - "footsore": null, - "footstep": [["S", "M"]], - "footsteps": null, - "footstep's": null, - "footstool": [["S", "M"]], - "footstools": null, - "footstool's": null, - "footwear": [["M"]], - "footwear's": null, - "footwork": [["S", "M"]], - "footworks": null, - "footwork's": null, - "fop": [["M", "S"]], - "fop's": null, - "fops": null, - "fopped": null, - "foppery": [["M", "S"]], - "foppery's": null, - "fopperies": null, - "fopping": null, - "foppishness": [["S", "M"]], - "foppishnesses": null, - "foppishness's": null, - "foppish": [["Y", "P"]], - "foppishly": null, - "forage": [["G", "S", "R", "D", "M", "Z"]], - "foraging": null, - "forages": null, - "forager": [["M"]], - "foraged": null, - "forage's": null, - "foragers": null, - "forager's": null, - "forayer": [["M"]], - "forayer's": null, - "foray": [["S", "G", "M", "R", "D"]], - "forays": null, - "foraying": null, - "foray's": null, - "forayed": null, - "forbade": null, - "forbearance": [["S", "M"]], - "forbearances": null, - "forbearance's": null, - "forbearer": [["M"]], - "forbearer's": null, - "forbear": [["M", "R", "S", "G"]], - "forbear's": null, - "forbears": null, - "forbearing": null, - "Forbes": [["M"]], - "Forbes's": null, - "forbidden": null, - "forbiddingness": [["M"]], - "forbiddingness's": null, - "forbidding": [["Y", "P", "S"]], - "forbiddingly": null, - "forbiddings": null, - "forbid": [["S"]], - "forbids": null, - "forbore": null, - "forborne": null, - "forced": [["Y"]], - "forcedly": null, - "forcefield": [["M", "S"]], - "forcefield's": null, - "forcefields": null, - "forcefulness": [["M", "S"]], - "forcefulness's": null, - "forcefulnesses": null, - "forceful": [["P", "Y"]], - "forcefully": null, - "forceps": [["M"]], - "forceps's": null, - "forcer": [["M"]], - "forcer's": null, - "force": [["S", "R", "D", "G", "M"]], - "forces": null, - "forcing": null, - "force's": null, - "forcibleness": [["M"]], - "forcibleness's": null, - "forcible": [["P"]], - "forcibly": null, - "fordable": [["U"]], - "unfordable": null, - "Fordham": [["M"]], - "Fordham's": null, - "Ford": [["M"]], - "Ford's": null, - "ford": [["S", "M", "D", "B", "G"]], - "fords": null, - "ford's": null, - "forded": null, - "fording": null, - "forearm": [["G", "S", "D", "M"]], - "forearming": null, - "forearms": null, - "forearmed": null, - "forearm's": null, - "forebear": [["M", "S"]], - "forebear's": null, - "forebears": null, - "forebode": [["G", "J", "D", "S"]], - "foreboding": [["P", "Y", "M"]], - "forebodings": null, - "foreboded": null, - "forebodes": null, - "forebodingness": [["M"]], - "forebodingness's": null, - "forebodingly": null, - "foreboding's": null, - "forecaster": [["M"]], - "forecaster's": null, - "forecastle": [["M", "S"]], - "forecastle's": null, - "forecastles": null, - "forecast": [["S", "Z", "G", "R"]], - "forecasts": null, - "forecasters": null, - "forecasting": null, - "foreclose": [["G", "S", "D"]], - "foreclosing": null, - "forecloses": null, - "foreclosed": null, - "foreclosure": [["M", "S"]], - "foreclosure's": null, - "foreclosures": null, - "forecourt": [["S", "M"]], - "forecourts": null, - "forecourt's": null, - "foredoom": [["S", "D", "G"]], - "foredooms": null, - "foredoomed": null, - "foredooming": null, - "forefather": [["S", "M"]], - "forefathers": null, - "forefather's": null, - "forefeet": null, - "forefinger": [["M", "S"]], - "forefinger's": null, - "forefingers": null, - "forefoot": [["M"]], - "forefoot's": null, - "forefront": [["S", "M"]], - "forefronts": null, - "forefront's": null, - "foregoer": [["M"]], - "foregoer's": null, - "foregoing": [["S"]], - "foregoings": null, - "foregone": null, - "foregos": null, - "foreground": [["M", "G", "D", "S"]], - "foreground's": null, - "foregrounding": null, - "foregrounded": null, - "foregrounds": null, - "forehand": [["S"]], - "forehands": null, - "forehead": [["M", "S"]], - "forehead's": null, - "foreheads": null, - "foreigner": [["M"]], - "foreigner's": null, - "foreignness": [["S", "M"]], - "foreignnesses": null, - "foreignness's": null, - "foreign": [["P", "R", "Y", "Z", "S"]], - "foreignly": null, - "foreigners": null, - "foreigns": null, - "foreknew": null, - "foreknow": [["G", "S"]], - "foreknowing": null, - "foreknows": null, - "foreknowledge": [["M", "S"]], - "foreknowledge's": null, - "foreknowledges": null, - "foreknown": null, - "foreleg": [["M", "S"]], - "foreleg's": null, - "forelegs": null, - "forelimb": [["M", "S"]], - "forelimb's": null, - "forelimbs": null, - "forelock": [["M", "D", "S", "G"]], - "forelock's": null, - "forelocked": null, - "forelocks": null, - "forelocking": null, - "foreman": [["M"]], - "foreman's": null, - "Foreman": [["M"]], - "Foreman's": null, - "foremast": [["S", "M"]], - "foremasts": null, - "foremast's": null, - "foremen": null, - "foremost": null, - "forename": [["D", "S", "M"]], - "forenamed": null, - "forenames": null, - "forename's": null, - "forenoon": [["S", "M"]], - "forenoons": null, - "forenoon's": null, - "forensically": null, - "forensic": [["S"]], - "forensics": [["M"]], - "forensics's": null, - "foreordain": [["D", "S", "G"]], - "foreordained": null, - "foreordains": null, - "foreordaining": null, - "forepart": [["M", "S"]], - "forepart's": null, - "foreparts": null, - "forepaws": null, - "forepeople": null, - "foreperson": [["S"]], - "forepersons": null, - "foreplay": [["M", "S"]], - "foreplay's": null, - "foreplays": null, - "forequarter": [["S", "M"]], - "forequarters": null, - "forequarter's": null, - "forerunner": [["M", "S"]], - "forerunner's": null, - "forerunners": null, - "fore": [["S"]], - "fores": null, - "foresail": [["S", "M"]], - "foresails": null, - "foresail's": null, - "foresaw": null, - "foreseeable": [["U"]], - "unforeseeable": null, - "foreseeing": null, - "foreseen": [["U"]], - "unforeseen": null, - "foreseer": [["M"]], - "foreseer's": null, - "foresee": [["Z", "S", "R", "B"]], - "foreseers": null, - "foresees": null, - "foreshadow": [["S", "G", "D"]], - "foreshadows": null, - "foreshadowing": null, - "foreshadowed": null, - "foreshore": [["M"]], - "foreshore's": null, - "foreshorten": [["D", "S", "G"]], - "foreshortened": null, - "foreshortens": null, - "foreshortening": null, - "foresightedness": [["S", "M"]], - "foresightednesses": null, - "foresightedness's": null, - "foresighted": [["P", "Y"]], - "foresightedly": null, - "foresight": [["S", "M", "D"]], - "foresights": null, - "foresight's": null, - "foreskin": [["S", "M"]], - "foreskins": null, - "foreskin's": null, - "forestaller": [["M"]], - "forestaller's": null, - "forestall": [["L", "G", "S", "R", "D"]], - "forestallment": [["M"]], - "forestalling": null, - "forestalls": null, - "forestalled": null, - "forestallment's": null, - "forestation": [["M", "C", "S"]], - "forestation's": null, - "deforestation's": null, - "deforestation": null, - "deforestations": null, - "forestations": [["A"]], - "reforestations": null, - "forest": [["C", "S", "A", "G", "D"]], - "deforest": null, - "deforests": null, - "deforesting": null, - "deforested": null, - "forests": null, - "reforests": null, - "reforest": null, - "reforesting": null, - "reforested": null, - "foresting": null, - "forested": null, - "Forester": [["M"]], - "Forester's": null, - "forester": [["S", "M"]], - "foresters": null, - "forester's": null, - "forestland": [["S"]], - "forestlands": null, - "Forest": [["M", "R"]], - "Forest's": null, - "forestry": [["M", "S"]], - "forestry's": null, - "forestries": null, - "forest's": null, - "foretaste": [["M", "G", "S", "D"]], - "foretaste's": null, - "foretasting": null, - "foretastes": null, - "foretasted": null, - "foreteller": [["M"]], - "foreteller's": null, - "foretell": [["R", "G", "S"]], - "foretelling": null, - "foretells": null, - "forethought": [["M", "S"]], - "forethought's": null, - "forethoughts": null, - "foretold": null, - "forevermore": null, - "forever": [["P", "S"]], - "foreverness": null, - "forevers": null, - "forewarner": [["M"]], - "forewarner's": null, - "forewarn": [["G", "S", "J", "R", "D"]], - "forewarning": null, - "forewarns": null, - "forewarnings": null, - "forewarned": null, - "forewent": null, - "forewoman": [["M"]], - "forewoman's": null, - "forewomen": null, - "foreword": [["S", "M"]], - "forewords": null, - "foreword's": null, - "forfeiter": [["M"]], - "forfeiter's": null, - "forfeiture": [["M", "S"]], - "forfeiture's": null, - "forfeitures": null, - "forfeit": [["Z", "G", "D", "R", "M", "S"]], - "forfeiters": null, - "forfeiting": null, - "forfeited": null, - "forfeit's": null, - "forfeits": null, - "forfend": [["G", "S", "D"]], - "forfending": null, - "forfends": null, - "forfended": null, - "forgather": [["G", "S", "D"]], - "forgathering": null, - "forgathers": null, - "forgathered": null, - "forgave": null, - "forged": [["A"]], - "reforged": null, - "forge": [["J", "V", "G", "M", "Z", "S", "R", "D"]], - "forgings": null, - "forgive": [["S", "R", "P", "B", "Z", "G"]], - "forging": [["M"]], - "forge's": null, - "forgers": null, - "forges": [["A"]], - "forger": [["M"]], - "forger's": null, - "forgery": [["M", "S"]], - "forgery's": null, - "forgeries": null, - "reforges": null, - "forgetfulness": [["S", "M"]], - "forgetfulnesses": null, - "forgetfulness's": null, - "forgetful": [["P", "Y"]], - "forgetfully": null, - "forget": [["S", "V"]], - "forgets": null, - "forgetive": null, - "forgettable": [["U"]], - "unforgettable": null, - "forgettably": [["U"]], - "unforgettably": null, - "forgetting": null, - "forging's": null, - "forgivable": [["U"]], - "unforgivable": null, - "forgivably": [["U"]], - "unforgivably": null, - "forgiven": null, - "forgiveness": [["S", "M"]], - "forgivenesses": null, - "forgiveness's": null, - "forgiver": [["M"]], - "forgiver's": null, - "forgives": null, - "forgivers": null, - "forgiving": [["U", "P"]], - "forgivingly": null, - "forgivingness": [["M"]], - "forgivingness's": null, - "unforgiving": null, - "unforgivingness": null, - "forgoer": [["M"]], - "forgoer's": null, - "forgoes": null, - "forgone": null, - "forgo": [["R", "S", "G", "Z"]], - "forgos": null, - "forgoing": null, - "forgoers": null, - "forgot": null, - "forgotten": [["U"]], - "unforgotten": null, - "for": [["H", "T"]], - "forth": null, - "forkful": [["S"]], - "forkfuls": null, - "fork": [["G", "S", "R", "D", "M"]], - "forking": null, - "forks": null, - "forker": null, - "forked": null, - "fork's": null, - "forklift": [["D", "M", "S", "G"]], - "forklifted": null, - "forklift's": null, - "forklifts": null, - "forklifting": null, - "forlornness": [["M"]], - "forlornness's": null, - "forlorn": [["P", "T", "R", "Y"]], - "forlornest": null, - "forlorner": null, - "forlornly": null, - "formability": [["A", "M"]], - "reformability": null, - "reformability's": null, - "formability's": null, - "formaldehyde": [["S", "M"]], - "formaldehydes": null, - "formaldehyde's": null, - "formalin": [["M"]], - "formalin's": null, - "formalism": [["S", "M"]], - "formalisms": null, - "formalism's": null, - "formalistic": null, - "formalist": [["S", "M"]], - "formalists": null, - "formalist's": null, - "formality": [["S", "M", "I"]], - "formalities": null, - "informalities": null, - "formality's": null, - "informality's": null, - "informality": null, - "formal": [["I", "Y"]], - "informal": null, - "informally": null, - "formally": null, - "formalization": [["S", "M"]], - "formalizations": null, - "formalization's": null, - "formalized": [["U"]], - "unformalized": null, - "formalizer": [["M"]], - "formalizer's": null, - "formalizes": [["I"]], - "informalizes": null, - "formalize": [["Z", "G", "S", "R", "D"]], - "formalizers": null, - "formalizing": null, - "formalness": [["M"]], - "formalness's": null, - "formals": null, - "formant": [["M", "I", "S"]], - "formant's": null, - "informant's": null, - "informant": null, - "informants": null, - "formants": null, - "format": [["A", "V", "S"]], - "reformat": null, - "reformats": null, - "formative": [["S", "Y", "P"]], - "formats": null, - "formate": [["M", "X", "G", "N", "S", "D"]], - "formate's": null, - "formations": null, - "formating": null, - "formation": [["A", "F", "S", "C", "I", "M"]], - "formates": null, - "formated": null, - "reformation": null, - "reformations": null, - "reformation's": null, - "conformation": null, - "conformations": null, - "conformation's": null, - "deformations": null, - "informations": null, - "deformation": null, - "deformation's": null, - "information": [["E", "S"]], - "information's": null, - "formation's": null, - "formatively": [["I"]], - "informatively": null, - "formativeness": [["I", "M"]], - "informativeness": [["S"]], - "informativeness's": null, - "formativeness's": null, - "formatives": null, - "format's": null, - "formatted": [["U", "A"]], - "unformatted": null, - "reformatted": null, - "formatter": [["A"]], - "reformatter": null, - "formatters": null, - "formatter's": null, - "formatting": [["A"]], - "reformatting": null, - "form": [["C", "G", "S", "A", "F", "D", "I"]], - "deforming": null, - "deforms": null, - "forming": null, - "reforming": null, - "conforming": null, - "informing": null, - "forms": null, - "reforms": null, - "conforms": null, - "informs": null, - "reform": [["B"]], - "reformed": [["U"]], - "conformed": null, - "formed": [["U"]], - "informed": [["U"]], - "inform": null, - "unformed": null, - "former": [["F", "S", "A", "I"]], - "conformers": null, - "formers": null, - "reformers": null, - "informers": null, - "reformer": [["M"]], - "informer": [["M"]], - "formerly": null, - "formfitting": null, - "formic": null, - "Formica": [["M", "S"]], - "Formica's": null, - "Formicas": null, - "formidableness": [["M"]], - "formidableness's": null, - "formidable": [["P"]], - "formidably": null, - "formlessness": [["M", "S"]], - "formlessness's": null, - "formlessnesses": null, - "formless": [["P", "Y"]], - "formlessly": null, - "Formosa": [["M"]], - "Formosa's": null, - "Formosan": null, - "form's": null, - "formulaic": null, - "formula": [["S", "M"]], - "formulas": null, - "formula's": null, - "formulate": [["A", "G", "N", "S", "D", "X"]], - "reformulate": null, - "reformulating": null, - "reformulation": null, - "reformulates": null, - "reformulated": null, - "reformulations": null, - "formulating": null, - "formulation": [["A", "M"]], - "formulates": null, - "formulated": [["U"]], - "formulations": null, - "unformulated": null, - "reformulation's": null, - "formulation's": null, - "formulator": [["S", "M"]], - "formulators": null, - "formulator's": null, - "fornicate": [["G", "N", "X", "S", "D"]], - "fornicating": null, - "fornication": [["M"]], - "fornications": null, - "fornicates": null, - "fornicated": null, - "fornication's": null, - "fornicator": [["S", "M"]], - "fornicators": null, - "fornicator's": null, - "Forrester": [["M"]], - "Forrester's": null, - "Forrest": [["R", "M"]], - "Forrest's": null, - "forsaken": null, - "forsake": [["S", "G"]], - "forsakes": null, - "forsaking": null, - "forsook": null, - "forsooth": null, - "Forster": [["M"]], - "Forster's": null, - "forswear": [["S", "G"]], - "forswears": null, - "forswearing": null, - "forswore": null, - "forsworn": null, - "forsythia": [["M", "S"]], - "forsythia's": null, - "forsythias": null, - "Fortaleza": [["M"]], - "Fortaleza's": null, - "forte": [["M", "S"]], - "forte's": null, - "fortes": null, - "forthcome": [["J", "G"]], - "forthcomings": null, - "forthcoming": [["U"]], - "unforthcoming": null, - "FORTH": [["M"]], - "FORTH's": null, - "forthrightness": [["S", "M"]], - "forthrightnesses": null, - "forthrightness's": null, - "forthright": [["P", "Y", "S"]], - "forthrightly": null, - "forthrights": null, - "forthwith": null, - "fortieths": null, - "fortification": [["M", "S"]], - "fortification's": null, - "fortifications": null, - "fortified": [["U"]], - "unfortified": null, - "fortifier": [["S", "M"]], - "fortifiers": null, - "fortifier's": null, - "fortify": [["A", "D", "S", "G"]], - "refortify": null, - "refortified": null, - "refortifies": null, - "refortifying": null, - "fortifies": null, - "fortifying": null, - "fortiori": null, - "fortissimo": [["S"]], - "fortissimos": null, - "fortitude": [["S", "M"]], - "fortitudes": null, - "fortitude's": null, - "fortnightly": [["S"]], - "fortnightlies": null, - "fortnight": [["M", "Y", "S"]], - "fortnight's": null, - "fortnights": null, - "FORTRAN": null, - "Fortran": [["M"]], - "Fortran's": null, - "fortress": [["G", "M", "S", "D"]], - "fortressing": null, - "fortress's": null, - "fortresses": null, - "fortressed": null, - "fort": [["S", "M"]], - "forts": null, - "fort's": null, - "fortuitousness": [["S", "M"]], - "fortuitousnesses": null, - "fortuitousness's": null, - "fortuitous": [["Y", "P"]], - "fortuitously": null, - "fortuity": [["M", "S"]], - "fortuity's": null, - "fortuities": null, - "fortunateness": [["M"]], - "fortunateness's": null, - "fortunate": [["Y", "U", "S"]], - "fortunately": null, - "unfortunately": null, - "unfortunate": null, - "unfortunates": null, - "fortunates": null, - "fortune": [["M", "G", "S", "D"]], - "fortune's": null, - "fortuning": null, - "fortunes": null, - "fortuned": null, - "fortuneteller": [["S", "M"]], - "fortunetellers": null, - "fortuneteller's": null, - "fortunetelling": [["S", "M"]], - "fortunetellings": null, - "fortunetelling's": null, - "forty": [["S", "R", "M", "H"]], - "forties": null, - "fortier": null, - "forty's": null, - "fortieth": null, - "forum": [["M", "S"]], - "forum's": null, - "forums": null, - "forwarder": [["M"]], - "forwarder's": null, - "forwarding": [["M"]], - "forwarding's": null, - "forwardness": [["M", "S"]], - "forwardness's": null, - "forwardnesses": null, - "forward": [["P", "T", "Z", "S", "G", "D", "R", "Y"]], - "forwardest": null, - "forwarders": null, - "forwards": null, - "forwarded": null, - "forwardly": null, - "forwent": null, - "fossiliferous": null, - "fossilization": [["M", "S"]], - "fossilization's": null, - "fossilizations": null, - "fossilized": [["U"]], - "unfossilized": [["M", "S"]], - "fossilize": [["G", "S", "D"]], - "fossilizing": null, - "fossilizes": null, - "fossil": [["M", "S"]], - "fossil's": null, - "fossils": null, - "Foss": [["M"]], - "Foss's": null, - "fosterer": [["M"]], - "fosterer's": null, - "Foster": [["M"]], - "Foster's": null, - "foster": [["S", "R", "D", "G"]], - "fosters": null, - "fostered": null, - "fostering": null, - "Foucault": [["M"]], - "Foucault's": null, - "fought": null, - "foulard": [["S", "M"]], - "foulards": null, - "foulard's": null, - "foulmouth": [["D"]], - "foulmouthed": null, - "foulness": [["M", "S"]], - "foulness's": null, - "foulnesses": null, - "fouls": [["M"]], - "fouls's": null, - "foul": [["S", "Y", "R", "D", "G", "T", "P"]], - "foully": null, - "fouler": null, - "fouled": null, - "fouling": null, - "foulest": null, - "foundational": null, - "foundation": [["S", "M"]], - "foundations": null, - "foundation's": null, - "founded": [["U", "F"]], - "unfounded": null, - "founder": [["M", "D", "G"]], - "founder's": [["F"]], - "foundered": null, - "foundering": null, - "confounder's": null, - "founding": [["F"]], - "confounding": null, - "foundling": [["M", "S"]], - "foundling's": null, - "foundlings": null, - "found": [["R", "D", "G", "Z", "S"]], - "founders": null, - "founds": [["K", "F"]], - "foundry": [["M", "S"]], - "foundry's": null, - "foundries": null, - "profounds": null, - "confounds": null, - "fountainhead": [["S", "M"]], - "fountainheads": null, - "fountainhead's": null, - "fountain": [["S", "M", "D", "G"]], - "fountains": null, - "fountain's": null, - "fountained": null, - "fountaining": null, - "fount": [["M", "S"]], - "fount's": null, - "founts": null, - "fourfold": null, - "Fourier": [["M"]], - "Fourier's": null, - "fourpence": [["M"]], - "fourpence's": null, - "fourpenny": null, - "fourposter": [["S", "M"]], - "fourposters": null, - "fourposter's": null, - "fourscore": [["S"]], - "fourscores": null, - "four": [["S", "H", "M"]], - "fours": null, - "fourth": [["Y"]], - "four's": null, - "foursome": [["S", "M"]], - "foursomes": null, - "foursome's": null, - "foursquare": null, - "fourteener": [["M"]], - "fourteener's": null, - "fourteen": [["S", "M", "R", "H"]], - "fourteens": null, - "fourteen's": null, - "fourteenth": null, - "fourteenths": null, - "Fourth": null, - "fourths": null, - "Fourths": null, - "fourthly": null, - "fovea": [["M"]], - "fovea's": null, - "fowler": [["M"]], - "fowler's": null, - "Fowler": [["M"]], - "Fowler's": null, - "fowling": [["M"]], - "fowling's": null, - "fowl": [["S", "G", "M", "R", "D"]], - "fowls": null, - "fowl's": null, - "fowled": null, - "foxfire": [["S", "M"]], - "foxfires": null, - "foxfire's": null, - "foxglove": [["S", "M"]], - "foxgloves": null, - "foxglove's": null, - "Foxhall": [["M"]], - "Foxhall's": null, - "foxhole": [["S", "M"]], - "foxholes": null, - "foxhole's": null, - "foxhound": [["S", "M"]], - "foxhounds": null, - "foxhound's": null, - "foxily": null, - "foxiness": [["M", "S"]], - "foxiness's": null, - "foxinesses": null, - "foxing": [["M"]], - "foxing's": null, - "fox": [["M", "D", "S", "G"]], - "fox's": null, - "foxed": null, - "foxes": null, - "Fox": [["M", "S"]], - "Fox's": null, - "Foxes": null, - "foxtail": [["M"]], - "foxtail's": null, - "foxtrot": [["M", "S"]], - "foxtrot's": null, - "foxtrots": null, - "foxtrotted": null, - "foxtrotting": null, - "foxy": [["T", "R", "P"]], - "foxiest": null, - "foxier": null, - "foyer": [["S", "M"]], - "foyers": null, - "foyer's": null, - "FPO": null, - "fps": null, - "fr": null, - "fracas": [["S", "M"]], - "fracases": null, - "fracas's": null, - "fractal": [["S", "M"]], - "fractals": null, - "fractal's": null, - "fractional": [["Y"]], - "fractionally": null, - "fractionate": [["D", "N", "G"]], - "fractionated": null, - "fractionation": [["M"]], - "fractionating": null, - "fractionation's": null, - "fractioned": null, - "fractioning": null, - "fraction": [["I", "S", "M", "A"]], - "infraction": null, - "infractions": null, - "infraction's": null, - "fractions": null, - "refractions": null, - "fraction's": null, - "refraction's": null, - "refraction": null, - "fractiousness": [["S", "M"]], - "fractiousnesses": null, - "fractiousness's": null, - "fractious": [["P", "Y"]], - "fractiously": null, - "fracture": [["M", "G", "D", "S"]], - "fracture's": null, - "fracturing": null, - "fractured": null, - "fractures": null, - "fragile": [["Y"]], - "fragilely": null, - "fragility": [["M", "S"]], - "fragility's": null, - "fragilities": null, - "fragmentarily": null, - "fragmentariness": [["M"]], - "fragmentariness's": null, - "fragmentary": [["P"]], - "fragmentation": [["M", "S"]], - "fragmentation's": null, - "fragmentations": null, - "fragment": [["S", "D", "M", "G"]], - "fragments": null, - "fragmented": null, - "fragment's": null, - "fragmenting": null, - "Fragonard": [["M"]], - "Fragonard's": null, - "fragrance": [["S", "M"]], - "fragrances": null, - "fragrance's": null, - "fragrant": [["Y"]], - "fragrantly": null, - "frailness": [["M", "S"]], - "frailness's": null, - "frailnesses": null, - "frail": [["S", "T", "P", "Y", "R"]], - "frails": null, - "frailest": null, - "frailly": null, - "frailer": null, - "frailty": [["M", "S"]], - "frailty's": null, - "frailties": null, - "framed": [["U"]], - "unframed": null, - "framer": [["M"]], - "framer's": null, - "frame": [["S", "R", "D", "J", "G", "M", "Z"]], - "frames": null, - "framings": null, - "framing": [["M"]], - "frame's": null, - "framers": null, - "framework": [["S", "M"]], - "frameworks": null, - "framework's": null, - "framing's": null, - "Francaise": [["M"]], - "Francaise's": null, - "France": [["M", "S"]], - "France's": null, - "Frances": null, - "Francene": [["M"]], - "Francene's": null, - "Francesca": [["M"]], - "Francesca's": null, - "Francesco": [["M"]], - "Francesco's": null, - "franchisee": [["S"]], - "franchisees": null, - "franchise": [["E", "S", "D", "G"]], - "disfranchises": null, - "disfranchised": null, - "disfranchising": null, - "franchises": null, - "franchised": null, - "franchising": null, - "franchiser": [["S", "M"]], - "franchisers": null, - "franchiser's": null, - "franchise's": null, - "Franchot": [["M"]], - "Franchot's": null, - "Francie": [["M"]], - "Francie's": null, - "Francine": [["M"]], - "Francine's": null, - "Francis": null, - "Francisca": [["M"]], - "Francisca's": null, - "Franciscan": [["M", "S"]], - "Franciscan's": null, - "Franciscans": null, - "Francisco": [["M"]], - "Francisco's": null, - "Franciska": [["M"]], - "Franciska's": null, - "Franciskus": [["M"]], - "Franciskus's": null, - "francium": [["M", "S"]], - "francium's": null, - "franciums": null, - "Francklin": [["M"]], - "Francklin's": null, - "Francklyn": [["M"]], - "Francklyn's": null, - "Franck": [["M"]], - "Franck's": null, - "Francoise": [["M"]], - "Francoise's": null, - "Francois": [["M"]], - "Francois's": null, - "Franco": [["M"]], - "Franco's": null, - "francophone": [["M"]], - "francophone's": null, - "franc": [["S", "M"]], - "francs": null, - "franc's": null, - "Francyne": [["M"]], - "Francyne's": null, - "frangibility": [["S", "M"]], - "frangibilities": null, - "frangibility's": null, - "frangible": null, - "Frankel": [["M"]], - "Frankel's": null, - "Frankenstein": [["M", "S"]], - "Frankenstein's": null, - "Frankensteins": null, - "franker": [["M"]], - "franker's": null, - "Frankford": [["M"]], - "Frankford's": null, - "Frankfort": [["M"]], - "Frankfort's": null, - "Frankfurter": [["M"]], - "Frankfurter's": null, - "frankfurter": [["M", "S"]], - "frankfurter's": null, - "frankfurters": null, - "Frankfurt": [["R", "M"]], - "Frankfurt's": null, - "Frankie": [["M"]], - "Frankie's": null, - "frankincense": [["M", "S"]], - "frankincense's": null, - "frankincenses": null, - "Frankish": [["M"]], - "Frankish's": null, - "franklin": [["M"]], - "franklin's": null, - "Franklin": [["M"]], - "Franklin's": null, - "Franklyn": [["M"]], - "Franklyn's": null, - "frankness": [["M", "S"]], - "frankness's": null, - "franknesses": null, - "frank": [["S", "G", "T", "Y", "R", "D", "P"]], - "franks": null, - "franking": null, - "frankest": null, - "frankly": null, - "franked": null, - "Frank": [["S", "M"]], - "Franks": null, - "Frank's": null, - "Franky": [["M"]], - "Franky's": null, - "Fran": [["M", "S"]], - "Fran's": null, - "Frans": null, - "Frannie": [["M"]], - "Frannie's": null, - "Franni": [["M"]], - "Franni's": null, - "Franny": [["M"]], - "Franny's": null, - "Fransisco": [["M"]], - "Fransisco's": null, - "frantically": null, - "franticness": [["M"]], - "franticness's": null, - "frantic": [["P", "Y"]], - "franticly": null, - "Frants": [["M"]], - "Frants's": null, - "Franzen": [["M"]], - "Franzen's": null, - "Franz": [["N", "M"]], - "Franz's": null, - "frapp�": null, - "frappeed": null, - "frappeing": null, - "frappes": null, - "Frasco": [["M"]], - "Frasco's": null, - "Fraser": [["M"]], - "Fraser's": null, - "Frasier": [["M"]], - "Frasier's": null, - "Frasquito": [["M"]], - "Frasquito's": null, - "fraternal": [["Y"]], - "fraternally": null, - "fraternity": [["M", "S", "F"]], - "fraternity's": null, - "confraternity's": null, - "fraternities": null, - "confraternities": null, - "confraternity": null, - "fraternization": [["S", "M"]], - "fraternizations": null, - "fraternization's": null, - "fraternize": [["G", "Z", "R", "S", "D"]], - "fraternizing": [["U"]], - "fraternizers": null, - "fraternizer": [["M"]], - "fraternizes": null, - "fraternized": null, - "fraternizer's": null, - "unfraternizing": [["S", "M"]], - "frat": [["M", "S"]], - "frat's": null, - "frats": null, - "fratricidal": null, - "fratricide": [["M", "S"]], - "fratricide's": null, - "fratricides": null, - "fraud": [["C", "S"]], - "defrauds": null, - "frauds": null, - "fraud's": null, - "fraudsters": null, - "fraudulence": [["S"]], - "fraudulences": null, - "fraudulent": [["Y", "P"]], - "fraudulently": null, - "fraudulentness": null, - "fraught": [["S", "G", "D"]], - "fraughts": null, - "fraughting": null, - "fraughted": null, - "Fraulein": [["S"]], - "Frauleins": null, - "Frau": [["M", "N"]], - "Frau's": null, - "Frauen": null, - "fray": [["C", "S", "D", "G"]], - "defray": null, - "defrays": null, - "defrayed": null, - "defraying": null, - "frays": null, - "frayed": null, - "fraying": null, - "Frayda": [["M"]], - "Frayda's": null, - "Frayne": [["M"]], - "Frayne's": null, - "fray's": null, - "Fraze": [["M", "R"]], - "Fraze's": null, - "Frazer": [["M"]], - "Frazer's": null, - "Frazier": [["M"]], - "Frazier's": null, - "frazzle": [["G", "D", "S"]], - "frazzling": null, - "frazzled": null, - "frazzles": null, - "freakishness": [["S", "M"]], - "freakishnesses": null, - "freakishness's": null, - "freakish": [["Y", "P"]], - "freakishly": null, - "freak": [["S", "G", "D", "M"]], - "freaks": null, - "freaking": null, - "freaked": null, - "freak's": null, - "freaky": [["R", "T"]], - "freakier": null, - "freakiest": null, - "freckle": [["G", "M", "D", "S"]], - "freckling": null, - "freckle's": null, - "freckled": null, - "freckles": null, - "freckly": [["R", "T"]], - "frecklier": null, - "freckliest": null, - "Freda": [["M"]], - "Freda's": null, - "Freddie": [["M"]], - "Freddie's": null, - "Freddi": [["M"]], - "Freddi's": null, - "Freddy": [["M"]], - "Freddy's": null, - "Fredek": [["M"]], - "Fredek's": null, - "Fredelia": [["M"]], - "Fredelia's": null, - "Frederica": [["M"]], - "Frederica's": null, - "Frederich": [["M"]], - "Frederich's": null, - "Fredericka": [["M"]], - "Fredericka's": null, - "Frederick": [["M", "S"]], - "Frederick's": null, - "Fredericks": null, - "Frederic": [["M"]], - "Frederic's": null, - "Frederico": [["M"]], - "Frederico's": null, - "Fredericton": [["M"]], - "Fredericton's": null, - "Frederigo": [["M"]], - "Frederigo's": null, - "Frederik": [["M"]], - "Frederik's": null, - "Frederique": [["M"]], - "Frederique's": null, - "Fredholm": [["M"]], - "Fredholm's": null, - "Fredia": [["M"]], - "Fredia's": null, - "Fredi": [["M"]], - "Fredi's": null, - "Fred": [["M"]], - "Fred's": null, - "Fredra": [["M"]], - "Fredra's": null, - "Fredrick": [["M"]], - "Fredrick's": null, - "Fredrickson": [["M"]], - "Fredrickson's": null, - "Fredric": [["M"]], - "Fredric's": null, - "Fredrika": [["M"]], - "Fredrika's": null, - "freebase": [["G", "D", "S"]], - "freebasing": null, - "freebased": null, - "freebases": null, - "freebie": [["M", "S"]], - "freebie's": null, - "freebies": null, - "freebooter": [["M"]], - "freebooter's": null, - "freeboot": [["Z", "R"]], - "freebooters": null, - "freeborn": null, - "freedman": [["M"]], - "freedman's": null, - "Freedman": [["M"]], - "Freedman's": null, - "freedmen": null, - "freedom": [["M", "S"]], - "freedom's": null, - "freedoms": null, - "freehand": [["D"]], - "freehanded": [["Y"]], - "freehandedly": null, - "freeholder": [["M"]], - "freeholder's": null, - "freehold": [["Z", "S", "R", "M"]], - "freeholders": null, - "freeholds": null, - "freehold's": null, - "freeing": [["S"]], - "freeings": null, - "freelance": [["S", "R", "D", "G", "Z", "M"]], - "freelances": null, - "freelancer": null, - "freelanced": null, - "freelancing": null, - "freelancers": null, - "freelance's": null, - "Freeland": [["M"]], - "Freeland's": null, - "freeloader": [["M"]], - "freeloader's": null, - "freeload": [["S", "R", "D", "G", "Z"]], - "freeloads": null, - "freeloaded": null, - "freeloading": null, - "freeloaders": null, - "Free": [["M"]], - "Free's": null, - "freeman": [["M"]], - "freeman's": null, - "Freeman": [["M"]], - "Freeman's": null, - "freemasonry": [["M"]], - "freemasonry's": null, - "Freemasonry": [["M", "S"]], - "Freemasonry's": null, - "Freemasonries": null, - "Freemason": [["S", "M"]], - "Freemasons": null, - "Freemason's": null, - "freemen": null, - "Freemon": [["M"]], - "Freemon's": null, - "freeness": [["M"]], - "freeness's": null, - "Freeport": [["M"]], - "Freeport's": null, - "freestanding": null, - "freestone": [["S", "M"]], - "freestones": null, - "freestone's": null, - "freestyle": [["S", "M"]], - "freestyles": null, - "freestyle's": null, - "freethinker": [["M", "S"]], - "freethinker's": null, - "freethinkers": null, - "freethinking": [["S"]], - "freethinkings": null, - "Freetown": [["M"]], - "Freetown's": null, - "freeway": [["M", "S"]], - "freeway's": null, - "freeways": null, - "freewheeler": [["M"]], - "freewheeler's": null, - "freewheeling": [["P"]], - "freewheelingness": null, - "freewheel": [["S", "R", "D", "M", "G", "Z"]], - "freewheels": null, - "freewheeled": null, - "freewheel's": null, - "freewheelers": null, - "freewill": null, - "free": [["Y", "T", "D", "R", "S", "P"]], - "freely": null, - "freest": null, - "freed": null, - "freer": null, - "frees": null, - "freezable": null, - "freezer": [["S", "M"]], - "freezers": null, - "freezer's": null, - "freeze": [["U", "G", "S", "A"]], - "unfreeze": null, - "unfreezing": null, - "unfreezes": null, - "freezing": [["S"]], - "refreezing": null, - "freezes": null, - "refreezes": null, - "refreeze": null, - "freezings": null, - "Freida": [["M"]], - "Freida's": null, - "freighter": [["M"]], - "freighter's": null, - "freight": [["Z", "G", "M", "D", "R", "S"]], - "freighters": null, - "freighting": null, - "freight's": null, - "freighted": null, - "freights": null, - "Fremont": [["M"]], - "Fremont's": null, - "Frenchman": [["M"]], - "Frenchman's": null, - "French": [["M", "D", "S", "G"]], - "French's": null, - "Frenched": null, - "Frenches": null, - "Frenching": null, - "Frenchmen": null, - "Frenchwoman": [["M"]], - "Frenchwoman's": null, - "Frenchwomen": null, - "frenetically": null, - "frenetic": [["S"]], - "frenetics": null, - "frenzied": [["Y"]], - "frenziedly": null, - "frenzy": [["M", "D", "S", "G"]], - "frenzy's": null, - "frenzies": null, - "frenzying": null, - "freon": [["S"]], - "freons": null, - "Freon": [["S", "M"]], - "Freons": null, - "Freon's": null, - "freq": null, - "frequency": [["I", "S", "M"]], - "infrequency": null, - "infrequencies": null, - "infrequency's": null, - "frequencies": null, - "frequency's": null, - "frequented": [["U"]], - "unfrequented": null, - "frequenter": [["M", "S"]], - "frequenter's": null, - "frequenters": null, - "frequentest": null, - "frequenting": null, - "frequent": [["I", "Y"]], - "infrequent": null, - "infrequently": null, - "frequently": null, - "frequentness": [["M"]], - "frequentness's": null, - "frequents": null, - "fresco": [["D", "M", "G"]], - "frescoed": null, - "fresco's": null, - "frescoing": null, - "frescoes": null, - "fresh": [["A", "Z", "S", "R", "N", "D", "G"]], - "refresh": [["L", "B"]], - "refreshers": null, - "refreshes": null, - "refresher": null, - "refreshen": null, - "refreshed": [["U"]], - "refreshing": [["Y"]], - "freshers": null, - "freshes": null, - "fresher": [["M", "A"]], - "freshen": [["S", "Z", "G", "D", "R"]], - "freshed": null, - "freshing": null, - "freshener": [["M"]], - "freshener's": null, - "freshens": null, - "fresheners": null, - "freshening": null, - "freshened": null, - "fresher's": null, - "refresher's": null, - "freshest": null, - "freshet": [["S", "M"]], - "freshets": null, - "freshet's": null, - "freshly": null, - "freshman": [["M"]], - "freshman's": null, - "freshmen": null, - "freshness": [["M", "S"]], - "freshness's": null, - "freshnesses": null, - "freshwater": [["S", "M"]], - "freshwaters": null, - "freshwater's": null, - "Fresnel": [["M"]], - "Fresnel's": null, - "Fresno": [["M"]], - "Fresno's": null, - "fretboard": null, - "fretfulness": [["M", "S"]], - "fretfulness's": null, - "fretfulnesses": null, - "fretful": [["P", "Y"]], - "fretfully": null, - "fret": [["S"]], - "frets": null, - "fretsaw": [["S"]], - "fretsaws": null, - "fretted": null, - "fretting": null, - "fretwork": [["M", "S"]], - "fretwork's": null, - "fretworks": null, - "Freudian": [["S"]], - "Freudians": null, - "Freud": [["M"]], - "Freud's": null, - "Freya": [["M"]], - "Freya's": null, - "Frey": [["M"]], - "Frey's": null, - "friableness": [["M"]], - "friableness's": null, - "friable": [["P"]], - "friary": [["M", "S"]], - "friary's": null, - "friaries": null, - "friar": [["Y", "M", "S"]], - "friarly": null, - "friar's": null, - "friars": null, - "fricasseeing": null, - "fricassee": [["M", "S", "D"]], - "fricassee's": null, - "fricassees": null, - "fricasseed": null, - "frication": [["M"]], - "frication's": null, - "fricative": [["M", "S"]], - "fricative's": null, - "fricatives": null, - "Frick": [["M"]], - "Frick's": null, - "frictional": [["Y"]], - "frictionally": null, - "frictionless": [["Y"]], - "frictionlessly": null, - "friction": [["M", "S"]], - "friction's": null, - "frictions": null, - "Friday": [["S", "M"]], - "Fridays": null, - "Friday's": null, - "fridge": [["S", "M"]], - "fridges": null, - "fridge's": null, - "fried": [["A"]], - "refried": null, - "Frieda": [["M"]], - "Frieda's": null, - "Friedan": [["M"]], - "Friedan's": null, - "friedcake": [["S", "M"]], - "friedcakes": null, - "friedcake's": null, - "Friederike": [["M"]], - "Friederike's": null, - "Friedman": [["M"]], - "Friedman's": null, - "Friedrich": [["M"]], - "Friedrich's": null, - "Friedrick": [["M"]], - "Friedrick's": null, - "friendlessness": [["M"]], - "friendlessness's": null, - "friendless": [["P"]], - "friendlies": null, - "friendlily": null, - "friendliness": [["U", "S", "M"]], - "unfriendliness": null, - "unfriendlinesses": null, - "unfriendliness's": null, - "friendlinesses": null, - "friendliness's": null, - "friendly": [["P", "U", "T", "R"]], - "unfriendly": null, - "unfriendlier": null, - "friendliest": null, - "friendlier": null, - "friend": [["S", "G", "M", "Y", "D"]], - "friends": null, - "friending": null, - "friend's": null, - "friended": null, - "friendship": [["M", "S"]], - "friendship's": null, - "friendships": null, - "frier's": null, - "fries": [["M"]], - "fries's": null, - "frieze": [["S", "D", "G", "M"]], - "friezes": null, - "friezed": null, - "friezing": null, - "frieze's": null, - "frigate": [["S", "M"]], - "frigates": null, - "frigate's": null, - "Frigga": [["M"]], - "Frigga's": null, - "frigged": null, - "frigging": [["S"]], - "friggings": null, - "frighten": [["D", "G"]], - "frightened": null, - "frightening": [["Y"]], - "frighteningly": null, - "frightfulness": [["M", "S"]], - "frightfulness's": null, - "frightfulnesses": null, - "frightful": [["P", "Y"]], - "frightfully": null, - "fright": [["G", "X", "M", "D", "N", "S"]], - "frighting": null, - "frightens": null, - "fright's": null, - "frighted": null, - "frights": null, - "Frigidaire": [["M"]], - "Frigidaire's": null, - "frigidity": [["M", "S"]], - "frigidity's": null, - "frigidities": null, - "frigidness": [["S", "M"]], - "frigidnesses": null, - "frigidness's": null, - "frigid": [["Y", "P"]], - "frigidly": null, - "frig": [["S"]], - "frigs": null, - "frill": [["M", "D", "G", "S"]], - "frill's": null, - "frilled": null, - "frilling": null, - "frills": null, - "frilly": [["R", "S", "T"]], - "frillier": null, - "frillies": null, - "frilliest": null, - "Fri": [["M"]], - "Fri's": null, - "fringe": [["I", "G", "S", "D"]], - "infringe": [["L", "R"]], - "infringing": null, - "infringes": null, - "infringed": null, - "fringing": null, - "fringes": null, - "fringed": null, - "fringe's": null, - "frippery": [["S", "M"]], - "fripperies": null, - "frippery's": null, - "Frisbee": [["M", "S"]], - "Frisbee's": null, - "Frisbees": null, - "Frisco": [["M"]], - "Frisco's": null, - "Frisian": [["S", "M"]], - "Frisians": null, - "Frisian's": null, - "frisker": [["M"]], - "frisker's": null, - "friskily": null, - "friskiness": [["S", "M"]], - "friskinesses": null, - "friskiness's": null, - "frisk": [["R", "D", "G", "S"]], - "frisked": null, - "frisking": null, - "frisks": null, - "frisky": [["R", "T", "P"]], - "friskier": null, - "friskiest": null, - "frisson": [["M"]], - "frisson's": null, - "Frito": [["M"]], - "Frito's": null, - "fritterer": [["M"]], - "fritterer's": null, - "fritter": [["R", "D", "S", "G"]], - "frittered": null, - "fritters": null, - "frittering": null, - "Fritz": [["M"]], - "Fritz's": null, - "fritz": [["S", "M"]], - "fritzes": null, - "fritz's": null, - "frivolity": [["M", "S"]], - "frivolity's": null, - "frivolities": null, - "frivolousness": [["S", "M"]], - "frivolousnesses": null, - "frivolousness's": null, - "frivolous": [["P", "Y"]], - "frivolously": null, - "frizz": [["G", "Y", "S", "D"]], - "frizzing": null, - "frizzly": [["R", "T"]], - "frizzes": null, - "frizzed": null, - "frizzle": [["D", "S", "G"]], - "frizzled": null, - "frizzles": null, - "frizzling": null, - "frizzlier": null, - "frizzliest": null, - "frizzy": [["R", "T"]], - "frizzier": null, - "frizziest": null, - "Fr": [["M", "D"]], - "Fr's": null, - "Frobisher": [["M"]], - "Frobisher's": null, - "frocking": [["M"]], - "frocking's": null, - "frock's": null, - "frock": [["S", "U", "D", "G", "C"]], - "frocks": null, - "unfrocks": null, - "defrocks": null, - "unfrock": null, - "unfrocked": null, - "unfrocking": null, - "frocked": null, - "defrocked": null, - "defrocking": null, - "defrock": null, - "frogged": null, - "frogging": null, - "frogman": [["M"]], - "frogman's": null, - "frogmarched": null, - "frogmen": null, - "frog": [["M", "S"]], - "frog's": null, - "frogs": null, - "fro": [["H", "S"]], - "froth": [["G", "M", "D"]], - "fros": null, - "Froissart": [["M"]], - "Froissart's": null, - "frolicked": null, - "frolicker": [["S", "M"]], - "frolickers": null, - "frolicker's": null, - "frolicking": null, - "frolic": [["S", "M"]], - "frolics": null, - "frolic's": null, - "frolicsome": null, - "from": null, - "Fromm": [["M"]], - "Fromm's": null, - "frond": [["S", "M"]], - "fronds": null, - "frond's": null, - "frontage": [["M", "S"]], - "frontage's": null, - "frontages": null, - "frontal": [["S", "Y"]], - "frontals": null, - "frontally": null, - "Frontenac": [["M"]], - "Frontenac's": null, - "front": [["G", "S", "F", "R", "D"]], - "fronting": null, - "confronting": null, - "fronts": null, - "confronts": null, - "confronted": null, - "fronter": null, - "fronted": null, - "frontier": [["S", "M"]], - "frontiers": null, - "frontier's": null, - "frontiersman": [["M"]], - "frontiersman's": null, - "frontiersmen": null, - "frontispiece": [["S", "M"]], - "frontispieces": null, - "frontispiece's": null, - "frontrunner's": null, - "front's": null, - "frontward": [["S"]], - "frontwards": null, - "frosh": [["M"]], - "frosh's": null, - "Frostbelt": [["M"]], - "Frostbelt's": null, - "frostbite": [["M", "S"]], - "frostbite's": null, - "frostbites": null, - "frostbit": [["G"]], - "frostbiting": [["M"]], - "frostbiting's": null, - "frostbitten": null, - "frost": [["C", "D", "S", "G"]], - "defrosted": null, - "defrosts": null, - "defrosting": null, - "frosted": [["U"]], - "frosts": null, - "frosting": [["M", "S"]], - "frosteds": null, - "unfrosted": null, - "frostily": null, - "frostiness": [["S", "M"]], - "frostinesses": null, - "frostiness's": null, - "frosting's": null, - "frostings": null, - "Frost": [["M"]], - "Frost's": null, - "frost's": null, - "frosty": [["P", "T", "R"]], - "frostiest": null, - "frostier": null, - "frothing": null, - "froth's": null, - "frothed": null, - "frothiness": [["S", "M"]], - "frothinesses": null, - "frothiness's": null, - "froths": null, - "frothy": [["T", "R", "P"]], - "frothiest": null, - "frothier": null, - "froufrou": [["M", "S"]], - "froufrou's": null, - "froufrous": null, - "frowardness": [["M", "S"]], - "frowardness's": null, - "frowardnesses": null, - "froward": [["P"]], - "frowner": [["M"]], - "frowner's": null, - "frowning": [["Y"]], - "frowningly": null, - "frown": [["R", "D", "S", "G"]], - "frowned": null, - "frowns": null, - "frowzily": null, - "frowziness": [["S", "M"]], - "frowzinesses": null, - "frowziness's": null, - "frowzy": [["R", "P", "T"]], - "frowzier": null, - "frowziest": null, - "frozenness": [["M"]], - "frozenness's": null, - "frozen": [["Y", "P"]], - "frozenly": null, - "froze": [["U", "A"]], - "unfroze": null, - "refroze": null, - "fructify": [["G", "S", "D"]], - "fructifying": null, - "fructifies": null, - "fructified": null, - "fructose": [["M", "S"]], - "fructose's": null, - "fructoses": null, - "Fruehauf": [["M"]], - "Fruehauf's": null, - "frugality": [["S", "M"]], - "frugalities": null, - "frugality's": null, - "frugal": [["Y"]], - "frugally": null, - "fruitcake": [["S", "M"]], - "fruitcakes": null, - "fruitcake's": null, - "fruiterer": [["M"]], - "fruiterer's": null, - "fruiter": [["R", "M"]], - "fruiter's": null, - "fruitfuller": null, - "fruitfullest": null, - "fruitfulness": [["M", "S"]], - "fruitfulness's": null, - "fruitfulnesses": null, - "fruitful": [["U", "Y", "P"]], - "unfruitful": null, - "unfruitfully": null, - "unfruitfulness": null, - "fruitfully": null, - "fruit": [["G", "M", "R", "D", "S"]], - "fruiting": null, - "fruit's": null, - "fruited": null, - "fruits": null, - "fruitiness": [["M", "S"]], - "fruitiness's": null, - "fruitinesses": null, - "fruition": [["S", "M"]], - "fruitions": null, - "fruition's": null, - "fruitlessness": [["M", "S"]], - "fruitlessness's": null, - "fruitlessnesses": null, - "fruitless": [["Y", "P"]], - "fruitlessly": null, - "fruity": [["R", "P", "T"]], - "fruitier": null, - "fruitiest": null, - "frumpish": null, - "frump": [["M", "S"]], - "frump's": null, - "frumps": null, - "frumpy": [["T", "R"]], - "frumpiest": null, - "frumpier": null, - "Frunze": [["M"]], - "Frunze's": null, - "frustrater": [["M"]], - "frustrater's": null, - "frustrate": [["R", "S", "D", "X", "N", "G"]], - "frustrates": null, - "frustrated": null, - "frustrations": null, - "frustration": [["M"]], - "frustrating": [["Y"]], - "frustratingly": null, - "frustration's": null, - "frustum": [["S", "M"]], - "frustums": null, - "frustum's": null, - "Frye": [["M"]], - "Frye's": null, - "fryer": [["M", "S"]], - "fryer's": null, - "fryers": null, - "Fry": [["M"]], - "Fry's": null, - "fry": [["N", "G", "D", "S"]], - "frying": null, - "F's": null, - "f's": [["K", "A"]], - "prof's": null, - "ref's": null, - "FSLIC": null, - "ft": [["C"]], - "FTC": null, - "FTP": null, - "fuchsia": [["M", "S"]], - "fuchsia's": null, - "fuchsias": null, - "Fuchs": [["M"]], - "Fuchs's": null, - "fucker": [["M", "!"]], - "fucker's": null, - "fuck": [["G", "Z", "J", "R", "D", "M", "S", "!"]], - "fucking": null, - "fuckers": null, - "fuckings": null, - "fucked": null, - "fuck's": null, - "fucks": null, - "FUD": null, - "fuddle": [["G", "S", "D"]], - "fuddling": null, - "fuddles": null, - "fuddled": null, - "fudge": [["G", "M", "S", "D"]], - "fudging": null, - "fudge's": null, - "fudges": null, - "fudged": null, - "fuel": [["A", "S", "D", "G"]], - "refuel": null, - "refuels": null, - "refueled": null, - "refueling": null, - "fuels": null, - "fueled": null, - "fueling": null, - "fueler": [["S", "M"]], - "fuelers": null, - "fueler's": null, - "fuel's": null, - "Fuentes": [["M"]], - "Fuentes's": null, - "fugal": null, - "Fugger": [["M"]], - "Fugger's": null, - "fugitiveness": [["M"]], - "fugitiveness's": null, - "fugitive": [["S", "Y", "M", "P"]], - "fugitives": null, - "fugitively": null, - "fugitive's": null, - "fugue": [["G", "M", "S", "D"]], - "fuguing": null, - "fugue's": null, - "fugues": null, - "fugued": null, - "fuhrer": [["S"]], - "fuhrers": null, - "Fuji": [["M"]], - "Fuji's": null, - "Fujitsu": [["M"]], - "Fujitsu's": null, - "Fujiyama": null, - "Fukuoka": [["M"]], - "Fukuoka's": null, - "Fulani": [["M"]], - "Fulani's": null, - "Fulbright": [["M"]], - "Fulbright's": null, - "fulcrum": [["S", "M"]], - "fulcrums": null, - "fulcrum's": null, - "fulfilled": [["U"]], - "unfulfilled": null, - "fulfiller": [["M"]], - "fulfiller's": null, - "fulfill": [["G", "L", "S", "R", "D"]], - "fulfilling": null, - "fulfillment": [["M", "S"]], - "fulfills": null, - "fulfillment's": null, - "fulfillments": null, - "fullback": [["S", "M", "G"]], - "fullbacks": null, - "fullback's": null, - "fullbacking": null, - "fuller": [["D", "M", "G"]], - "fullered": null, - "fuller's": null, - "fullering": null, - "Fuller": [["M"]], - "Fuller's": null, - "Fullerton": [["M"]], - "Fullerton's": null, - "fullish": null, - "fullness": [["M", "S"]], - "fullness's": null, - "fullnesses": null, - "full": [["R", "D", "P", "S", "G", "Z", "T"]], - "fulled": null, - "fulls": null, - "fulling": null, - "fullers": null, - "fullest": null, - "fullstops": null, - "fullword": [["S", "M"]], - "fullwords": null, - "fullword's": null, - "fully": null, - "fulminate": [["X", "S", "D", "G", "N"]], - "fulminations": null, - "fulminates": null, - "fulminated": null, - "fulminating": null, - "fulmination": [["M"]], - "fulmination's": null, - "fulness's": null, - "fulsomeness": [["S", "M"]], - "fulsomenesses": null, - "fulsomeness's": null, - "fulsome": [["P", "Y"]], - "fulsomely": null, - "Fulton": [["M"]], - "Fulton's": null, - "Fulvia": [["M"]], - "Fulvia's": null, - "fumble": [["G", "Z", "R", "S", "D"]], - "fumbling": [["Y"]], - "fumblers": null, - "fumbler": [["M"]], - "fumbles": null, - "fumbled": null, - "fumbler's": null, - "fumblingly": null, - "fume": [["D", "S", "G"]], - "fumed": null, - "fumes": null, - "fuming": [["Y"]], - "fumigant": [["M", "S"]], - "fumigant's": null, - "fumigants": null, - "fumigate": [["N", "G", "S", "D", "X"]], - "fumigation": [["M"]], - "fumigating": null, - "fumigates": null, - "fumigated": null, - "fumigations": null, - "fumigation's": null, - "fumigator": [["S", "M"]], - "fumigators": null, - "fumigator's": null, - "fumingly": null, - "fumy": [["T", "R"]], - "fumiest": null, - "fumier": null, - "Funafuti": null, - "functionalism": [["M"]], - "functionalism's": null, - "functionalist": [["S", "M"]], - "functionalists": null, - "functionalist's": null, - "functionality": [["S"]], - "functionalities": null, - "functional": [["Y", "S"]], - "functionally": null, - "functionals": null, - "functionary": [["M", "S"]], - "functionary's": null, - "functionaries": null, - "function": [["G", "S", "M", "D"]], - "functioning": null, - "functions": null, - "function's": null, - "functioned": null, - "functor": [["S", "M"]], - "functors": null, - "functor's": null, - "fundamentalism": [["S", "M"]], - "fundamentalisms": null, - "fundamentalism's": null, - "fundamentalist": [["S", "M"]], - "fundamentalists": null, - "fundamentalist's": null, - "fundamental": [["S", "Y"]], - "fundamentals": null, - "fundamentally": null, - "fund": [["A", "S", "M", "R", "D", "Z", "G"]], - "refund": [["B"]], - "refunds": null, - "refund's": null, - "refunder": [["M"]], - "refunded": null, - "refunders": null, - "refunding": null, - "funds": null, - "fund's": null, - "funder": null, - "funded": [["U"]], - "funders": null, - "funding": [["S"]], - "unfunded": null, - "fundholders": null, - "fundholding": null, - "fundings": null, - "Fundy": [["M"]], - "Fundy's": null, - "funeral": [["M", "S"]], - "funeral's": null, - "funerals": null, - "funerary": null, - "funereal": [["Y"]], - "funereally": null, - "funfair": [["M"]], - "funfair's": null, - "fungal": [["S"]], - "fungals": null, - "fungible": [["M"]], - "fungible's": null, - "fungicidal": null, - "fungicide": [["S", "M"]], - "fungicides": null, - "fungicide's": null, - "fungi": [["M"]], - "fungi's": null, - "fungoid": [["S"]], - "fungoids": null, - "fungous": null, - "fungus": [["M"]], - "fungus's": null, - "funicular": [["S", "M"]], - "funiculars": null, - "funicular's": null, - "funk": [["G", "S", "D", "M"]], - "funking": null, - "funks": null, - "funked": null, - "funk's": null, - "funkiness": [["S"]], - "funkinesses": null, - "funky": [["R", "T", "P"]], - "funkier": null, - "funkiest": null, - "fun": [["M", "S"]], - "fun's": null, - "funs": null, - "funned": null, - "funnel": [["S", "G", "M", "D"]], - "funnels": null, - "funneling": null, - "funnel's": null, - "funneled": null, - "funner": null, - "funnest": null, - "funnily": [["U"]], - "unfunnily": null, - "funniness": [["S", "M"]], - "funninesses": null, - "funniness's": null, - "funning": null, - "funny": [["R", "S", "P", "T"]], - "funnier": null, - "funnies": null, - "funniest": null, - "furbelow": [["M", "D", "S", "G"]], - "furbelow's": null, - "furbelowed": null, - "furbelows": null, - "furbelowing": null, - "furbisher": [["M"]], - "furbisher's": null, - "furbish": [["G", "D", "R", "S", "A"]], - "furbishing": null, - "refurbishing": null, - "furbished": null, - "refurbished": null, - "refurbisher": null, - "furbishes": null, - "refurbishes": null, - "refurbish": [["L"]], - "furiousness": [["M"]], - "furiousness's": null, - "furious": [["R", "Y", "P"]], - "furiouser": null, - "furiously": null, - "furlong": [["M", "S"]], - "furlong's": null, - "furlongs": null, - "furlough": [["D", "G", "M"]], - "furloughed": null, - "furloughing": null, - "furlough's": null, - "furloughs": null, - "furl": [["U", "D", "G", "S"]], - "unfurl": null, - "unfurled": null, - "unfurling": null, - "unfurls": null, - "furled": null, - "furling": null, - "furls": null, - "furn": null, - "furnace": [["G", "M", "S", "D"]], - "furnacing": null, - "furnace's": null, - "furnaces": null, - "furnaced": null, - "furnished": [["U"]], - "unfurnished": null, - "furnisher": [["M", "S"]], - "furnisher's": null, - "furnishers": null, - "furnish": [["G", "A", "S", "D"]], - "furnishing": [["S", "M"]], - "refurnishing": null, - "refurnish": null, - "refurnishes": null, - "refurnished": null, - "furnishes": null, - "furnishings": null, - "furnishing's": null, - "furniture": [["S", "M"]], - "furnitures": null, - "furniture's": null, - "furore": [["M", "S"]], - "furore's": null, - "furores": null, - "furor": [["M", "S"]], - "furor's": null, - "furors": null, - "fur": [["P", "M", "S"]], - "furness": null, - "fur's": null, - "furs": null, - "furred": null, - "furrier": [["M"]], - "furrier's": null, - "furriness": [["S", "M"]], - "furrinesses": null, - "furriness's": null, - "furring": [["S", "M"]], - "furrings": null, - "furring's": null, - "furrow": [["D", "M", "G", "S"]], - "furrowed": null, - "furrow's": null, - "furrowing": null, - "furrows": null, - "furry": [["R", "T", "Z", "P"]], - "furriest": null, - "furriers": null, - "furtherance": [["M", "S"]], - "furtherance's": null, - "furtherances": null, - "furtherer": [["M"]], - "furtherer's": null, - "furthermore": null, - "furthermost": null, - "further": [["T", "G", "D", "R", "S"]], - "furtherest": null, - "furthering": null, - "furthered": null, - "furthers": null, - "furthest": null, - "furtiveness": [["S", "M"]], - "furtivenesses": null, - "furtiveness's": null, - "furtive": [["P", "Y"]], - "furtively": null, - "fury": [["S", "M"]], - "furies": null, - "fury's": null, - "furze": [["S", "M"]], - "furzes": null, - "furze's": null, - "fusebox": [["S"]], - "fuseboxes": null, - "fusee": [["S", "M"]], - "fusees": null, - "fusee's": null, - "fuse": [["F", "S", "D", "A", "G", "C", "I"]], - "confuses": null, - "fuses": null, - "refuses": null, - "defuses": null, - "infuses": null, - "fused": null, - "refused": null, - "defused": null, - "infused": null, - "refuse": [["R"]], - "refusing": null, - "fusing": null, - "defusing": null, - "infusing": null, - "defuse": null, - "infuse": [["R", "Z"]], - "fuselage": [["S", "M"]], - "fuselages": null, - "fuselage's": null, - "fuse's": [["A"]], - "refuse's": null, - "Fushun": [["M"]], - "Fushun's": null, - "fusibility": [["S", "M"]], - "fusibilities": null, - "fusibility's": null, - "fusible": [["I"]], - "infusible": [["P"]], - "fusiform": null, - "fusilier": [["M", "S"]], - "fusilier's": null, - "fusiliers": null, - "fusillade": [["S", "D", "M", "G"]], - "fusillades": null, - "fusilladed": null, - "fusillade's": null, - "fusillading": null, - "fusion": [["K", "M", "F", "S", "I"]], - "profusion": null, - "profusion's": null, - "profusions": null, - "fusion's": null, - "confusion's": null, - "infusion's": null, - "confusion": null, - "confusions": null, - "fusions": null, - "infusions": null, - "infusion": null, - "fussbudget": [["M", "S"]], - "fussbudget's": null, - "fussbudgets": null, - "fusser": [["M"]], - "fusser's": null, - "fussily": null, - "fussiness": [["M", "S"]], - "fussiness's": null, - "fussinesses": null, - "fusspot": [["S", "M"]], - "fusspots": null, - "fusspot's": null, - "fuss": [["S", "R", "D", "M", "G"]], - "fusses": null, - "fussed": null, - "fuss's": null, - "fussing": null, - "fussy": [["P", "T", "R"]], - "fussiest": null, - "fussier": null, - "fustian": [["M", "S"]], - "fustian's": null, - "fustians": null, - "fustiness": [["M", "S"]], - "fustiness's": null, - "fustinesses": null, - "fusty": [["R", "P", "T"]], - "fustier": null, - "fustiest": null, - "fut": null, - "futileness": [["M"]], - "futileness's": null, - "futile": [["P", "Y"]], - "futilely": null, - "futility": [["M", "S"]], - "futility's": null, - "futilities": null, - "futon": [["S"]], - "futons": null, - "future": [["S", "M"]], - "futures": null, - "future's": null, - "futurism": [["S", "M"]], - "futurisms": null, - "futurism's": null, - "futuristic": [["S"]], - "futuristics": null, - "futurist": [["S"]], - "futurists": null, - "futurity": [["M", "S"]], - "futurity's": null, - "futurities": null, - "futurologist": [["S"]], - "futurologists": null, - "futurology": [["M", "S"]], - "futurology's": null, - "futurologies": null, - "futz": [["G", "S", "D"]], - "futzing": null, - "futzes": null, - "futzed": null, - "fuze's": null, - "Fuzhou": [["M"]], - "Fuzhou's": null, - "Fuzzbuster": [["M"]], - "Fuzzbuster's": null, - "fuzzily": null, - "fuzziness": [["S", "M"]], - "fuzzinesses": null, - "fuzziness's": null, - "fuzz": [["S", "D", "M", "G"]], - "fuzzes": null, - "fuzzed": null, - "fuzz's": null, - "fuzzing": null, - "fuzzy": [["P", "R", "T"]], - "fuzzier": null, - "fuzziest": null, - "fwd": null, - "FWD": null, - "fwy": null, - "FY": null, - "FYI": null, - "GA": null, - "gabardine": [["S", "M"]], - "gabardines": null, - "gabardine's": null, - "gabbed": null, - "Gabbey": [["M"]], - "Gabbey's": null, - "Gabbie": [["M"]], - "Gabbie's": null, - "Gabbi": [["M"]], - "Gabbi's": null, - "gabbiness": [["S"]], - "gabbinesses": null, - "gabbing": null, - "gabble": [["S", "D", "G"]], - "gabbles": null, - "gabbled": null, - "gabbling": null, - "Gabby": [["M"]], - "Gabby's": null, - "gabby": [["T", "R", "P"]], - "gabbiest": null, - "gabbier": null, - "Gabe": [["M"]], - "Gabe's": null, - "gaberdine's": null, - "Gabey": [["M"]], - "Gabey's": null, - "gabfest": [["M", "S"]], - "gabfest's": null, - "gabfests": null, - "Gabie": [["M"]], - "Gabie's": null, - "Gabi": [["M"]], - "Gabi's": null, - "gable": [["G", "M", "S", "R", "D"]], - "gabling": null, - "gable's": null, - "gables": null, - "gabler": null, - "gabled": null, - "Gable": [["M"]], - "Gable's": null, - "Gabonese": null, - "Gabon": [["M"]], - "Gabon's": null, - "Gaborone": [["M"]], - "Gaborone's": null, - "Gabriela": [["M"]], - "Gabriela's": null, - "Gabriele": [["M"]], - "Gabriele's": null, - "Gabriella": [["M"]], - "Gabriella's": null, - "Gabrielle": [["M"]], - "Gabrielle's": null, - "Gabriellia": [["M"]], - "Gabriellia's": null, - "Gabriell": [["M"]], - "Gabriell's": null, - "Gabriello": [["M"]], - "Gabriello's": null, - "Gabriel": [["M"]], - "Gabriel's": null, - "Gabrila": [["M"]], - "Gabrila's": null, - "gab": [["S"]], - "gabs": null, - "Gaby": [["M"]], - "Gaby's": null, - "Gacrux": [["M"]], - "Gacrux's": null, - "gadabout": [["M", "S"]], - "gadabout's": null, - "gadabouts": null, - "gadded": null, - "gadder": [["M", "S"]], - "gadder's": null, - "gadders": null, - "gadding": null, - "gadfly": [["M", "S"]], - "gadfly's": null, - "gadflies": null, - "gadgetry": [["M", "S"]], - "gadgetry's": null, - "gadgetries": null, - "gadget": [["S", "M"]], - "gadgets": null, - "gadget's": null, - "gadolinium": [["M", "S"]], - "gadolinium's": null, - "gadoliniums": null, - "gad": [["S"]], - "gads": null, - "Gadsden": [["M"]], - "Gadsden's": null, - "Gaea": [["M"]], - "Gaea's": null, - "Gaelan": [["M"]], - "Gaelan's": null, - "Gaelic": [["M"]], - "Gaelic's": null, - "Gael": [["S", "M"]], - "Gaels": null, - "Gael's": null, - "Gae": [["M"]], - "Gae's": null, - "gaffe": [["M", "S"]], - "gaffe's": null, - "gaffes": null, - "gaffer": [["M"]], - "gaffer's": null, - "gaff": [["S", "G", "Z", "R", "D", "M"]], - "gaffs": null, - "gaffing": null, - "gaffers": null, - "gaffed": null, - "gaff's": null, - "gaga": null, - "Gagarin": [["M"]], - "Gagarin's": null, - "gag": [["D", "R", "S", "G"]], - "gaged": null, - "gager": [["M"]], - "gags": null, - "gaging": null, - "Gage": [["M"]], - "Gage's": null, - "gager's": null, - "gage": [["S", "M"]], - "gages": null, - "gage's": null, - "gagged": null, - "gagging": null, - "gaggle": [["S", "D", "G"]], - "gaggles": null, - "gaggled": null, - "gaggling": null, - "gagwriter": [["S"]], - "gagwriters": null, - "gaiety": [["M", "S"]], - "gaiety's": null, - "gaieties": null, - "Gaile": [["M"]], - "Gaile's": null, - "Gail": [["M"]], - "Gail's": null, - "gaily": null, - "gain": [["A", "D", "G", "S"]], - "regain": null, - "regained": null, - "regaining": null, - "regains": null, - "gained": null, - "gaining": [["S"]], - "gains": null, - "gainer": [["S", "M"]], - "gainers": null, - "gainer's": null, - "Gaines": [["M"]], - "Gaines's": null, - "Gainesville": [["M"]], - "Gainesville's": null, - "gainfulness": [["M"]], - "gainfulness's": null, - "gainful": [["Y", "P"]], - "gainfully": null, - "gainings": null, - "gainly": [["U"]], - "ungainly": [["P", "R", "T"]], - "gainsaid": null, - "gainsayer": [["M"]], - "gainsayer's": null, - "gainsay": [["R", "S", "Z", "G"]], - "gainsays": null, - "gainsayers": null, - "gainsaying": null, - "Gainsborough": [["M"]], - "Gainsborough's": null, - "gaiter": [["M"]], - "gaiter's": null, - "gait": [["G", "S", "Z", "M", "R", "D"]], - "gaiting": null, - "gaits": null, - "gaiters": null, - "gait's": null, - "gaited": null, - "Gaithersburg": [["M"]], - "Gaithersburg's": null, - "galactic": null, - "Galahad": [["M", "S"]], - "Galahad's": null, - "Galahads": null, - "Galapagos": [["M"]], - "Galapagos's": null, - "gal": [["A", "S"]], - "regal": [["G", "Y", "R", "D"]], - "regals": null, - "gals": null, - "gala": [["S", "M"]], - "galas": null, - "gala's": null, - "Galatea": [["M"]], - "Galatea's": null, - "Galatia": [["M"]], - "Galatia's": null, - "Galatians": [["M"]], - "Galatians's": null, - "Galaxy": [["M"]], - "Galaxy's": null, - "galaxy": [["M", "S"]], - "galaxy's": null, - "galaxies": null, - "Galbraith": [["M"]], - "Galbraith's": null, - "Galbreath": [["M"]], - "Galbreath's": null, - "gale": [["A", "S"]], - "regale": [["L"]], - "regales": null, - "gales": null, - "Gale": [["M"]], - "Gale's": null, - "galen": null, - "galena": [["M", "S"]], - "galena's": null, - "galenas": null, - "galenite": [["M"]], - "galenite's": null, - "Galen": [["M"]], - "Galen's": null, - "gale's": null, - "Galibi": [["M"]], - "Galibi's": null, - "Galilean": [["M", "S"]], - "Galilean's": null, - "Galileans": null, - "Galilee": [["M"]], - "Galilee's": null, - "Galileo": [["M"]], - "Galileo's": null, - "Galina": [["M"]], - "Galina's": null, - "Gallagher": [["M"]], - "Gallagher's": null, - "gallanted": null, - "gallanting": null, - "gallantry": [["M", "S"]], - "gallantry's": null, - "gallantries": null, - "gallants": null, - "gallant": [["U", "Y"]], - "ungallant": null, - "ungallantly": null, - "gallantly": null, - "Gallard": [["M"]], - "Gallard's": null, - "gallbladder": [["M", "S"]], - "gallbladder's": null, - "gallbladders": null, - "Gallegos": [["M"]], - "Gallegos's": null, - "galleon": [["S", "M"]], - "galleons": null, - "galleon's": null, - "galleria": [["S"]], - "gallerias": null, - "gallery": [["M", "S", "D", "G"]], - "gallery's": null, - "galleries": null, - "galleried": null, - "gallerying": null, - "galley": [["M", "S"]], - "galley's": null, - "galleys": null, - "Gallic": null, - "Gallicism": [["S", "M"]], - "Gallicisms": null, - "Gallicism's": null, - "gallimaufry": [["M", "S"]], - "gallimaufry's": null, - "gallimaufries": null, - "galling": [["Y"]], - "gallingly": null, - "gallium": [["S", "M"]], - "galliums": null, - "gallium's": null, - "gallivant": [["G", "D", "S"]], - "gallivanting": null, - "gallivanted": null, - "gallivants": null, - "Gall": [["M"]], - "Gall's": null, - "gallonage": [["M"]], - "gallonage's": null, - "gallon": [["S", "M"]], - "gallons": null, - "gallon's": null, - "galloper": [["M"]], - "galloper's": null, - "gallop": [["G", "S", "R", "D", "Z"]], - "galloping": null, - "gallops": null, - "galloped": null, - "gallopers": null, - "Galloway": [["M"]], - "Galloway's": null, - "gallows": [["M"]], - "gallows's": null, - "gall": [["S", "G", "M", "D"]], - "galls": null, - "gall's": null, - "galled": null, - "gallstone": [["M", "S"]], - "gallstone's": null, - "gallstones": null, - "Gallup": [["M"]], - "Gallup's": null, - "Gal": [["M", "N"]], - "Gal's": null, - "Galois": [["M"]], - "Galois's": null, - "galoot": [["M", "S"]], - "galoot's": null, - "galoots": null, - "galore": [["S"]], - "galores": null, - "galosh": [["G", "M", "S", "D"]], - "galoshing": null, - "galosh's": null, - "galoshes": null, - "galoshed": null, - "gal's": null, - "Galsworthy": [["M"]], - "Galsworthy's": null, - "galumph": [["G", "D"]], - "galumphing": null, - "galumphed": null, - "galumphs": null, - "galvanic": null, - "Galvani": [["M"]], - "Galvani's": null, - "galvanism": [["M", "S"]], - "galvanism's": null, - "galvanisms": null, - "galvanization": [["S", "M"]], - "galvanizations": null, - "galvanization's": null, - "galvanize": [["S", "D", "G"]], - "galvanizes": null, - "galvanized": null, - "galvanizing": null, - "Galvan": [["M"]], - "Galvan's": null, - "galvanometer": [["S", "M"]], - "galvanometers": null, - "galvanometer's": null, - "galvanometric": null, - "Galven": [["M"]], - "Galven's": null, - "Galveston": [["M"]], - "Galveston's": null, - "Galvin": [["M"]], - "Galvin's": null, - "Ga": [["M"]], - "Ga's": null, - "Gamaliel": [["M"]], - "Gamaliel's": null, - "Gama": [["M"]], - "Gama's": null, - "Gambia": [["M"]], - "Gambia's": null, - "Gambian": [["S"]], - "Gambians": null, - "gambit": [["M", "S"]], - "gambit's": null, - "gambits": null, - "gamble": [["G", "Z", "R", "S", "D"]], - "gambling": null, - "gamblers": null, - "gambler": [["M"]], - "gambles": null, - "gambled": null, - "Gamble": [["M"]], - "Gamble's": null, - "gambler's": null, - "gambol": [["S", "G", "D"]], - "gambols": null, - "gamboling": null, - "gamboled": null, - "gamecock": [["S", "M"]], - "gamecocks": null, - "gamecock's": null, - "gamekeeper": [["M", "S"]], - "gamekeeper's": null, - "gamekeepers": null, - "gameness": [["M", "S"]], - "gameness's": null, - "gamenesses": null, - "game": [["P", "J", "D", "R", "S", "M", "Y", "T", "Z", "G"]], - "gamings": null, - "gamed": null, - "gamer": null, - "games": null, - "game's": null, - "gamely": null, - "gamest": [["R", "Z"]], - "gamers": null, - "gaming": [["M"]], - "gamesmanship": [["S", "M"]], - "gamesmanships": null, - "gamesmanship's": null, - "gamesmen": null, - "gamester": [["M"]], - "gamester's": null, - "gamesters": null, - "gamete": [["M", "S"]], - "gamete's": null, - "gametes": null, - "gametic": null, - "gamine": [["S", "M"]], - "gamines": null, - "gamine's": null, - "gaminess": [["M", "S"]], - "gaminess's": null, - "gaminesses": null, - "gaming's": null, - "gamin": [["M", "S"]], - "gamin's": null, - "gamins": null, - "gamma": [["M", "S"]], - "gamma's": null, - "gammas": null, - "gammon": [["D", "M", "S", "G"]], - "gammoned": null, - "gammon's": null, - "gammons": null, - "gammoning": null, - "Gamow": [["M"]], - "Gamow's": null, - "gamut": [["M", "S"]], - "gamut's": null, - "gamuts": null, - "gamy": [["T", "R", "P"]], - "gamiest": null, - "gamier": null, - "gander": [["D", "M", "G", "S"]], - "gandered": null, - "gander's": null, - "gandering": null, - "ganders": null, - "Gandhian": null, - "Gandhi": [["M"]], - "Gandhi's": null, - "gangbusters": null, - "ganger": [["M"]], - "ganger's": null, - "Ganges": [["M"]], - "Ganges's": null, - "gang": [["G", "R", "D", "M", "S"]], - "ganging": null, - "ganged": null, - "gang's": null, - "gangs": null, - "gangland": [["S", "M"]], - "ganglands": null, - "gangland's": null, - "ganglia": [["M"]], - "ganglia's": null, - "gangling": null, - "ganglionic": null, - "ganglion": [["M"]], - "ganglion's": null, - "gangplank": [["S", "M"]], - "gangplanks": null, - "gangplank's": null, - "gangrene": [["S", "D", "M", "G"]], - "gangrenes": null, - "gangrened": null, - "gangrene's": null, - "gangrening": null, - "gangrenous": null, - "gangster": [["S", "M"]], - "gangsters": null, - "gangster's": null, - "Gangtok": [["M"]], - "Gangtok's": null, - "gangway": [["M", "S"]], - "gangway's": null, - "gangways": null, - "Gan": [["M"]], - "Gan's": null, - "gannet": [["S", "M"]], - "gannets": null, - "gannet's": null, - "Gannie": [["M"]], - "Gannie's": null, - "Gannon": [["M"]], - "Gannon's": null, - "Ganny": [["M"]], - "Ganny's": null, - "gantlet": [["G", "M", "D", "S"]], - "gantleting": null, - "gantlet's": null, - "gantleted": null, - "gantlets": null, - "Gantry": [["M"]], - "Gantry's": null, - "gantry": [["M", "S"]], - "gantry's": null, - "gantries": null, - "Ganymede": [["M"]], - "Ganymede's": null, - "GAO": null, - "gaoler": [["M"]], - "gaoler's": null, - "gaol": [["M", "R", "D", "G", "Z", "S"]], - "gaol's": null, - "gaoled": null, - "gaoling": null, - "gaolers": null, - "gaols": null, - "gaper": [["M"]], - "gaper's": null, - "gape": [["S"]], - "gapes": null, - "gaping": [["Y"]], - "gapingly": null, - "gapped": null, - "gapping": null, - "gap": [["S", "J", "M", "D", "R", "G"]], - "gaps": null, - "gapings": null, - "gap's": null, - "gaped": null, - "garage": [["G", "M", "S", "D"]], - "garaging": null, - "garage's": null, - "garages": null, - "garaged": null, - "Garald": [["M"]], - "Garald's": null, - "garbageman": [["M"]], - "garbageman's": null, - "garbage": [["S", "D", "M", "G"]], - "garbages": null, - "garbaged": null, - "garbage's": null, - "garbaging": null, - "garbanzo": [["M", "S"]], - "garbanzo's": null, - "garbanzos": null, - "garb": [["D", "M", "G", "S"]], - "garbed": null, - "garb's": null, - "garbing": null, - "garbs": null, - "garbler": [["M"]], - "garbler's": null, - "garble": [["R", "S", "D", "G"]], - "garbles": null, - "garbled": null, - "garbling": null, - "Garbo": [["M"]], - "Garbo's": null, - "Garcia": [["M"]], - "Garcia's": null, - "gar�on": [["S", "M"]], - "gar�ons": null, - "gar�on's": null, - "gardener": [["M"]], - "gardener's": null, - "Gardener": [["M"]], - "Gardener's": null, - "gardenia": [["S", "M"]], - "gardenias": null, - "gardenia's": null, - "gardening": [["M"]], - "gardening's": null, - "garden": [["Z", "G", "R", "D", "M", "S"]], - "gardeners": null, - "gardened": null, - "garden's": null, - "gardens": null, - "Gardie": [["M"]], - "Gardie's": null, - "Gardiner": [["M"]], - "Gardiner's": null, - "Gard": [["M"]], - "Gard's": null, - "Gardner": [["M"]], - "Gardner's": null, - "Gardy": [["M"]], - "Gardy's": null, - "Garek": [["M"]], - "Garek's": null, - "Gare": [["M", "H"]], - "Gare's": null, - "Gareth": [["M"]], - "Gareth's": null, - "Garey": [["M"]], - "Garey's": null, - "Garfield": [["M"]], - "Garfield's": null, - "garfish": [["M", "S"]], - "garfish's": null, - "garfishes": null, - "Garfunkel": [["M"]], - "Garfunkel's": null, - "Gargantua": [["M"]], - "Gargantua's": null, - "gargantuan": null, - "gargle": [["S", "D", "G"]], - "gargles": null, - "gargled": null, - "gargling": null, - "gargoyle": [["D", "S", "M"]], - "gargoyled": null, - "gargoyles": null, - "gargoyle's": null, - "Garibaldi": [["M"]], - "Garibaldi's": null, - "Garik": [["M"]], - "Garik's": null, - "garishness": [["M", "S"]], - "garishness's": null, - "garishnesses": null, - "garish": [["Y", "P"]], - "garishly": null, - "Garland": [["M"]], - "Garland's": null, - "garland": [["S", "M", "D", "G"]], - "garlands": null, - "garland's": null, - "garlanded": null, - "garlanding": null, - "garlicked": null, - "garlicking": null, - "garlicky": null, - "garlic": [["S", "M"]], - "garlics": null, - "garlic's": null, - "garment": [["M", "D", "G", "S"]], - "garment's": null, - "garmented": null, - "garmenting": null, - "garments": null, - "Gar": [["M", "H"]], - "Gar's": null, - "Garth": [["M"]], - "Garner": [["M"]], - "Garner's": null, - "garner": [["S", "G", "D"]], - "garners": null, - "garnering": null, - "garnered": null, - "Garnet": [["M"]], - "Garnet's": null, - "garnet": [["S", "M"]], - "garnets": null, - "garnet's": null, - "Garnette": [["M"]], - "Garnette's": null, - "Garnett": [["M"]], - "Garnett's": null, - "garnish": [["D", "S", "L", "G"]], - "garnished": null, - "garnishes": null, - "garnishment": [["M", "S"]], - "garnishing": null, - "garnisheeing": null, - "garnishee": [["S", "D", "M"]], - "garnishees": null, - "garnisheed": null, - "garnishee's": null, - "garnishment's": null, - "garnishments": null, - "Garold": [["M"]], - "Garold's": null, - "garote's": null, - "garotte's": null, - "Garrard": [["M"]], - "Garrard's": null, - "garred": null, - "Garrek": [["M"]], - "Garrek's": null, - "Garreth": [["M"]], - "Garreth's": null, - "Garret": [["M"]], - "Garret's": null, - "garret": [["S", "M"]], - "garrets": null, - "garret's": null, - "Garrett": [["M"]], - "Garrett's": null, - "Garrick": [["M"]], - "Garrick's": null, - "Garrik": [["M"]], - "Garrik's": null, - "garring": null, - "Garrison": [["M"]], - "Garrison's": null, - "garrison": [["S", "G", "M", "D"]], - "garrisons": null, - "garrisoning": null, - "garrison's": null, - "garrisoned": null, - "garroter": [["M"]], - "garroter's": null, - "garrote": [["S", "R", "D", "M", "Z", "G"]], - "garrotes": null, - "garroted": null, - "garrote's": null, - "garroters": null, - "garroting": null, - "Garrot": [["M"]], - "Garrot's": null, - "garrotte's": null, - "Garrott": [["M"]], - "Garrott's": null, - "garrulity": [["S", "M"]], - "garrulities": null, - "garrulity's": null, - "garrulousness": [["M", "S"]], - "garrulousness's": null, - "garrulousnesses": null, - "garrulous": [["P", "Y"]], - "garrulously": null, - "Garry": [["M"]], - "Garry's": null, - "gar": [["S", "L", "M"]], - "gars": null, - "gar's": null, - "garter": [["S", "G", "D", "M"]], - "garters": null, - "gartering": null, - "gartered": null, - "garter's": null, - "Garth's": null, - "Garvey": [["M"]], - "Garvey's": null, - "Garvin": [["M"]], - "Garvin's": null, - "Garv": [["M"]], - "Garv's": null, - "Garvy": [["M"]], - "Garvy's": null, - "Garwin": [["M"]], - "Garwin's": null, - "Garwood": [["M"]], - "Garwood's": null, - "Gary": [["M"]], - "Gary's": null, - "Garza": [["M"]], - "Garza's": null, - "gasbag": [["M", "S"]], - "gasbag's": null, - "gasbags": null, - "Gascony": [["M"]], - "Gascony's": null, - "gaseousness": [["M"]], - "gaseousness's": null, - "gaseous": [["Y", "P"]], - "gaseously": null, - "gases": [["C"]], - "degases": null, - "gas": [["F", "C"]], - "congas": null, - "degas": null, - "gash": [["G", "T", "M", "S", "R", "D"]], - "gashing": null, - "gashest": null, - "gash's": null, - "gashes": null, - "gasher": null, - "gashed": null, - "gasification": [["M"]], - "gasification's": null, - "gasifier": [["M"]], - "gasifier's": null, - "gasify": [["S", "R", "D", "G", "X", "Z", "N"]], - "gasifies": null, - "gasified": null, - "gasifying": null, - "gasifications": null, - "gasifiers": null, - "gasket": [["S", "M"]], - "gaskets": null, - "gasket's": null, - "gaslight": [["D", "M", "S"]], - "gaslighted": null, - "gaslight's": null, - "gaslights": null, - "gasohol": [["S"]], - "gasohols": null, - "gasoline": [["M", "S"]], - "gasoline's": null, - "gasolines": null, - "gasometer": [["M"]], - "gasometer's": null, - "Gaspard": [["M"]], - "Gaspard's": null, - "Gaspar": [["M"]], - "Gaspar's": null, - "Gasparo": [["M"]], - "Gasparo's": null, - "gasper": [["M"]], - "gasper's": null, - "Gasper": [["M"]], - "Gasper's": null, - "gasp": [["G", "Z", "S", "R", "D"]], - "gasping": [["Y"]], - "gaspers": null, - "gasps": null, - "gasped": null, - "gaspingly": null, - "gas's": null, - "gassed": [["C"]], - "degassed": null, - "Gasser": [["M"]], - "Gasser's": null, - "gasser": [["M", "S"]], - "gasser's": null, - "gassers": null, - "Gasset": [["M"]], - "Gasset's": null, - "gassiness": [["M"]], - "gassiness's": null, - "gassing": [["S", "M"]], - "gassings": null, - "gassing's": null, - "gassy": [["P", "T", "R"]], - "gassiest": null, - "gassier": null, - "Gaston": [["M"]], - "Gaston's": null, - "gastric": null, - "gastritides": null, - "gastritis": [["M", "S"]], - "gastritis's": null, - "gastritises": null, - "gastroenteritides": null, - "gastroenteritis": [["M"]], - "gastroenteritis's": null, - "gastrointestinal": null, - "gastronome": [["S", "M"]], - "gastronomes": null, - "gastronome's": null, - "gastronomic": null, - "gastronomical": [["Y"]], - "gastronomically": null, - "gastronomy": [["M", "S"]], - "gastronomy's": null, - "gastronomies": null, - "gastropod": [["S", "M"]], - "gastropods": null, - "gastropod's": null, - "gasworks": [["M"]], - "gasworks's": null, - "gateau": [["M", "S"]], - "gateau's": null, - "gateaus": null, - "gateaux": null, - "gatecrash": [["G", "Z", "S", "R", "D"]], - "gatecrashing": null, - "gatecrashers": null, - "gatecrashes": null, - "gatecrasher": null, - "gatecrashed": null, - "gatehouse": [["M", "S"]], - "gatehouse's": null, - "gatehouses": null, - "gatekeeper": [["S", "M"]], - "gatekeepers": null, - "gatekeeper's": null, - "gate": [["M", "G", "D", "S"]], - "gate's": null, - "gating": null, - "gated": null, - "gates": null, - "gatepost": [["S", "M"]], - "gateposts": null, - "gatepost's": null, - "Gates": null, - "gateway": [["M", "S"]], - "gateway's": null, - "gateways": null, - "gathered": [["I", "A"]], - "ingathered": null, - "regathered": null, - "gatherer": [["M"]], - "gatherer's": null, - "gathering": [["M"]], - "gathering's": null, - "gather": [["J", "R", "D", "Z", "G", "S"]], - "gatherings": null, - "gatherers": null, - "gathers": [["A"]], - "regathers": null, - "Gatlinburg": [["M"]], - "Gatlinburg's": null, - "Gatling": [["M"]], - "Gatling's": null, - "Gatorade": [["M"]], - "Gatorade's": null, - "gator": [["M", "S"]], - "gator's": null, - "gators": null, - "Gatsby": [["M"]], - "Gatsby's": null, - "Gatun": [["M"]], - "Gatun's": null, - "gaucheness": [["S", "M"]], - "gauchenesses": null, - "gaucheness's": null, - "gaucherie": [["S", "M"]], - "gaucheries": null, - "gaucherie's": null, - "gauche": [["T", "Y", "P", "R"]], - "gauchest": null, - "gauchely": null, - "gaucher": null, - "gaucho": [["S", "M"]], - "gauchos": null, - "gaucho's": null, - "gaudily": null, - "gaudiness": [["M", "S"]], - "gaudiness's": null, - "gaudinesses": null, - "gaudy": [["P", "R", "S", "T"]], - "gaudier": null, - "gaudies": null, - "gaudiest": null, - "gaugeable": null, - "gauger": [["M"]], - "gauger's": null, - "Gauguin": [["M"]], - "Gauguin's": null, - "Gaulish": [["M"]], - "Gaulish's": null, - "Gaulle": [["M"]], - "Gaulle's": null, - "Gaul": [["M", "S"]], - "Gaul's": null, - "Gauls": null, - "Gaultiero": [["M"]], - "Gaultiero's": null, - "gauntlet": [["G", "S", "D", "M"]], - "gauntleting": null, - "gauntlets": null, - "gauntleted": null, - "gauntlet's": null, - "Gauntley": [["M"]], - "Gauntley's": null, - "gauntness": [["M", "S"]], - "gauntness's": null, - "gauntnesses": null, - "gaunt": [["P", "Y", "R", "D", "S", "G", "T"]], - "gauntly": null, - "gaunter": null, - "gaunted": null, - "gaunts": null, - "gaunting": null, - "gauntest": null, - "gauss": [["C"]], - "gausses": null, - "Gaussian": null, - "Gauss": [["M"]], - "Gauss's": null, - "gauss's": null, - "Gautama": [["M"]], - "Gautama's": null, - "Gauthier": [["M"]], - "Gauthier's": null, - "Gautier": [["M"]], - "Gautier's": null, - "gauze": [["S", "D", "G", "M"]], - "gauzes": null, - "gauzed": null, - "gauzing": null, - "gauze's": null, - "gauziness": [["M", "S"]], - "gauziness's": null, - "gauzinesses": null, - "gauzy": [["T", "R", "P"]], - "gauziest": null, - "gauzier": null, - "Gavan": [["M"]], - "Gavan's": null, - "gave": null, - "gavel": [["G", "M", "D", "S"]], - "gaveling": null, - "gavel's": null, - "gaveled": null, - "gavels": null, - "Gaven": [["M"]], - "Gaven's": null, - "Gavin": [["M"]], - "Gavin's": null, - "Gav": [["M", "N"]], - "Gav's": null, - "gavotte": [["M", "S", "D", "G"]], - "gavotte's": null, - "gavottes": null, - "gavotted": null, - "gavotting": null, - "Gavra": [["M"]], - "Gavra's": null, - "Gavrielle": [["M"]], - "Gavrielle's": null, - "Gawain": [["M"]], - "Gawain's": null, - "Gawen": [["M"]], - "Gawen's": null, - "gawkily": null, - "gawkiness": [["M", "S"]], - "gawkiness's": null, - "gawkinesses": null, - "gawk": [["S", "G", "R", "D", "M"]], - "gawks": null, - "gawking": null, - "gawker": null, - "gawked": null, - "gawk's": null, - "gawky": [["R", "S", "P", "T"]], - "gawkier": null, - "gawkies": null, - "gawkiest": null, - "Gayel": [["M"]], - "Gayel's": null, - "Gayelord": [["M"]], - "Gayelord's": null, - "Gaye": [["M"]], - "Gaye's": null, - "gayety's": null, - "Gayla": [["M"]], - "Gayla's": null, - "Gayleen": [["M"]], - "Gayleen's": null, - "Gaylene": [["M"]], - "Gaylene's": null, - "Gayler": [["M"]], - "Gayler's": null, - "Gayle": [["R", "M"]], - "Gayle's": null, - "Gaylord": [["M"]], - "Gaylord's": null, - "Gaylor": [["M"]], - "Gaylor's": null, - "Gay": [["M"]], - "Gay's": null, - "gayness": [["S", "M"]], - "gaynesses": null, - "gayness's": null, - "Gaynor": [["M"]], - "Gaynor's": null, - "gay": [["R", "T", "P", "S"]], - "gayer": null, - "gayest": null, - "gays": null, - "Gaza": [["M"]], - "Gaza's": null, - "gazebo": [["S", "M"]], - "gazebos": null, - "gazebo's": null, - "gaze": [["D", "R", "S", "Z", "G"]], - "gazed": null, - "gazer": [["M"]], - "gazes": null, - "gazers": null, - "gazing": null, - "gazelle": [["M", "S"]], - "gazelle's": null, - "gazelles": null, - "gazer's": null, - "gazetteer": [["S", "G", "D", "M"]], - "gazetteers": null, - "gazetteering": null, - "gazetteered": null, - "gazetteer's": null, - "gazette": [["M", "G", "S", "D"]], - "gazette's": null, - "gazetting": null, - "gazettes": null, - "gazetted": null, - "Gaziantep": [["M"]], - "Gaziantep's": null, - "gazillion": [["S"]], - "gazillions": null, - "gazpacho": [["M", "S"]], - "gazpacho's": null, - "gazpachos": null, - "GB": null, - "G": [["B"]], - "Gdansk": [["M"]], - "Gdansk's": null, - "Gd": [["M"]], - "Gd's": null, - "GDP": null, - "Gearalt": [["M"]], - "Gearalt's": null, - "Gearard": [["M"]], - "Gearard's": null, - "gearbox": [["S", "M"]], - "gearboxes": null, - "gearbox's": null, - "gear": [["D", "M", "J", "S", "G"]], - "geared": null, - "gear's": null, - "gearings": null, - "gears": null, - "gearing": [["M"]], - "gearing's": null, - "gearshift": [["M", "S"]], - "gearshift's": null, - "gearshifts": null, - "gearstick": null, - "gearwheel": [["S", "M"]], - "gearwheels": null, - "gearwheel's": null, - "Geary": [["M"]], - "Geary's": null, - "gecko": [["M", "S"]], - "gecko's": null, - "geckos": null, - "GED": null, - "geegaw's": null, - "geeing": null, - "geek": [["S", "M"]], - "geeks": null, - "geek's": null, - "geeky": [["R", "T"]], - "geekier": null, - "geekiest": null, - "geese": [["M"]], - "geese's": null, - "geest": [["M"]], - "geest's": null, - "gee": [["T", "D", "S"]], - "geed": null, - "gees": null, - "geezer": [["M", "S"]], - "geezer's": null, - "geezers": null, - "Gehenna": [["M"]], - "Gehenna's": null, - "Gehrig": [["M"]], - "Gehrig's": null, - "Geiger": [["M"]], - "Geiger's": null, - "Geigy": [["M"]], - "Geigy's": null, - "geisha": [["M"]], - "geisha's": null, - "gelatinousness": [["M"]], - "gelatinousness's": null, - "gelatinous": [["P", "Y"]], - "gelatinously": null, - "gelatin": [["S", "M"]], - "gelatins": null, - "gelatin's": null, - "gelcap": null, - "gelding": [["M"]], - "gelding's": null, - "geld": [["J", "S", "G", "D"]], - "geldings": null, - "gelds": null, - "gelded": null, - "gelid": null, - "gelignite": [["M", "S"]], - "gelignite's": null, - "gelignites": null, - "gelled": null, - "gelling": null, - "gel": [["M", "B", "S"]], - "gel's": null, - "gelable": null, - "gels": null, - "Gelya": [["M"]], - "Gelya's": null, - "Ge": [["M"]], - "Ge's": null, - "GE": [["M"]], - "GE's": null, - "Gemini": [["S", "M"]], - "Geminis": null, - "Gemini's": null, - "gemlike": null, - "Gemma": [["M"]], - "Gemma's": null, - "gemmed": null, - "gemming": null, - "gem": [["M", "S"]], - "gem's": null, - "gems": null, - "gemological": null, - "gemologist": [["M", "S"]], - "gemologist's": null, - "gemologists": null, - "gemology": [["M", "S"]], - "gemology's": null, - "gemologies": null, - "gemstone": [["S", "M"]], - "gemstones": null, - "gemstone's": null, - "gen": null, - "Gena": [["M"]], - "Gena's": null, - "Genaro": [["M"]], - "Genaro's": null, - "gendarme": [["M", "S"]], - "gendarme's": null, - "gendarmes": null, - "gender": [["D", "M", "G", "S"]], - "gendered": null, - "gender's": null, - "gendering": null, - "genders": null, - "genderless": null, - "genealogical": [["Y"]], - "genealogically": null, - "genealogist": [["S", "M"]], - "genealogists": null, - "genealogist's": null, - "genealogy": [["M", "S"]], - "genealogy's": null, - "genealogies": null, - "Gene": [["M"]], - "Gene's": null, - "gene": [["M", "S"]], - "gene's": null, - "genes": [["S"]], - "generalissimo": [["S", "M"]], - "generalissimos": null, - "generalissimo's": null, - "generalist": [["M", "S"]], - "generalist's": null, - "generalists": null, - "generality": [["M", "S"]], - "generality's": null, - "generalities": null, - "generalizable": [["S", "M"]], - "generalizables": null, - "generalizable's": null, - "generalization": [["M", "S"]], - "generalization's": null, - "generalizations": null, - "generalized": [["U"]], - "ungeneralized": null, - "generalize": [["G", "Z", "B", "S", "R", "D"]], - "generalizing": null, - "generalizers": null, - "generalizes": null, - "generalizer": [["M"]], - "generalizer's": null, - "general": [["M", "S", "P", "Y"]], - "general's": null, - "generals": null, - "generalness": [["M"]], - "generally": null, - "generalness's": null, - "generalship": [["S", "M"]], - "generalships": null, - "generalship's": null, - "genera": [["M"]], - "genera's": null, - "generate": [["C", "X", "A", "V", "N", "G", "S", "D"]], - "degenerations": null, - "degeneration": null, - "degenerating": null, - "degenerates": null, - "degenerated": null, - "generations": null, - "regenerations": null, - "regenerate": [["U"]], - "regeneration": null, - "regenerating": null, - "regenerates": null, - "regenerated": null, - "generative": [["A", "Y"]], - "generation": [["M", "C", "A"]], - "generating": null, - "generates": null, - "generated": null, - "generational": null, - "generation's": null, - "degeneration's": null, - "regeneration's": null, - "regenerative": null, - "regeneratively": null, - "generatively": null, - "generators": [["A"]], - "regenerators": null, - "generator": [["S", "M"]], - "generator's": null, - "generically": null, - "generic": [["P", "S"]], - "genericness": null, - "generics": null, - "generosity": [["M", "S"]], - "generosity's": null, - "generosities": null, - "generously": [["U"]], - "ungenerously": null, - "generousness": [["S", "M"]], - "generousnesses": null, - "generousness's": null, - "generous": [["P", "Y"]], - "Genesco": [["M"]], - "Genesco's": null, - "genesis": [["M"]], - "genesis's": null, - "Genesis": [["M"]], - "Genesis's": null, - "geneses": null, - "genetically": null, - "geneticist": [["M", "S"]], - "geneticist's": null, - "geneticists": null, - "genetic": [["S"]], - "genetics": [["M"]], - "genetics's": null, - "Genet": [["M"]], - "Genet's": null, - "Geneva": [["M"]], - "Geneva's": null, - "Genevieve": [["M"]], - "Genevieve's": null, - "Genevra": [["M"]], - "Genevra's": null, - "Genghis": [["M"]], - "Genghis's": null, - "geniality": [["F", "M", "S"]], - "congenialities": null, - "geniality's": null, - "genialities": null, - "genially": [["F"]], - "congenially": null, - "genialness": [["M"]], - "genialness's": null, - "genial": [["P", "Y"]], - "Genia": [["M"]], - "Genia's": null, - "genies": [["K"]], - "progenies": null, - "genie": [["S", "M"]], - "genie's": null, - "genii": [["M"]], - "genii's": null, - "genitalia": null, - "genitals": null, - "genital": [["Y", "F"]], - "genitally": null, - "congenitally": null, - "congenital": null, - "genitive": [["S", "M"]], - "genitives": null, - "genitive's": null, - "genitourinary": null, - "genius": [["S", "M"]], - "geniuses": null, - "genius's": null, - "Gen": [["M"]], - "Gen's": null, - "Genna": [["M"]], - "Genna's": null, - "Gennie": [["M"]], - "Gennie's": null, - "Gennifer": [["M"]], - "Gennifer's": null, - "Genni": [["M"]], - "Genni's": null, - "Genny": [["M"]], - "Genny's": null, - "Genoa": [["S", "M"]], - "Genoas": null, - "Genoa's": null, - "genocidal": null, - "genocide": [["S", "M"]], - "genocides": null, - "genocide's": null, - "Geno": [["M"]], - "Geno's": null, - "genome": [["S", "M"]], - "genomes": null, - "genome's": null, - "genotype": [["M", "S"]], - "genotype's": null, - "genotypes": null, - "Genovera": [["M"]], - "Genovera's": null, - "genre": [["M", "S"]], - "genre's": null, - "genres": null, - "gent": [["A", "M", "S"]], - "regent": null, - "regent's": null, - "regents": null, - "gent's": null, - "gents": null, - "genteelness": [["M", "S"]], - "genteelness's": null, - "genteelnesses": null, - "genteel": [["P", "R", "Y", "T"]], - "genteeler": null, - "genteelly": null, - "genteelest": null, - "gentian": [["S", "M"]], - "gentians": null, - "gentian's": null, - "gentile": [["S"]], - "gentiles": null, - "Gentile's": null, - "gentility": [["M", "S"]], - "gentility's": null, - "gentilities": null, - "gentlefolk": [["S"]], - "gentlefolks": null, - "gentlemanliness": [["M"]], - "gentlemanliness's": null, - "gentlemanly": [["U"]], - "ungentlemanly": null, - "gentleman": [["Y", "M"]], - "gentleman's": null, - "gentlemen": null, - "gentleness": [["S", "M"]], - "gentlenesses": null, - "gentleness's": null, - "gentle": [["P", "R", "S", "D", "G", "T"]], - "gentler": null, - "gentles": null, - "gentled": null, - "gentling": null, - "gentlest": null, - "gentlewoman": [["M"]], - "gentlewoman's": null, - "gentlewomen": [["M"]], - "gentlewomen's": null, - "gently": null, - "gentrification": [["M"]], - "gentrification's": null, - "gentrify": [["N", "S", "D", "G", "X"]], - "gentrifies": null, - "gentrified": null, - "gentrifying": null, - "gentrifications": null, - "Gentry": [["M"]], - "Gentry's": null, - "gentry": [["M", "S"]], - "gentry's": null, - "gentries": null, - "genuflect": [["G", "D", "S"]], - "genuflecting": null, - "genuflected": null, - "genuflects": null, - "genuflection": [["M", "S"]], - "genuflection's": null, - "genuflections": null, - "genuineness": [["S", "M"]], - "genuinenesses": null, - "genuineness's": null, - "genuine": [["P", "Y"]], - "genuinely": null, - "genus": null, - "Genvieve": [["M"]], - "Genvieve's": null, - "geocentric": null, - "geocentrically": null, - "geocentricism": null, - "geochemical": [["Y"]], - "geochemically": null, - "geochemistry": [["M", "S"]], - "geochemistry's": null, - "geochemistries": null, - "geochronology": [["M"]], - "geochronology's": null, - "geodesic": [["S"]], - "geodesics": null, - "geode": [["S", "M"]], - "geodes": null, - "geode's": null, - "geodesy": [["M", "S"]], - "geodesy's": null, - "geodesies": null, - "geodetic": [["S"]], - "geodetics": null, - "Geoff": [["M"]], - "Geoff's": null, - "Geoffrey": [["M"]], - "Geoffrey's": null, - "Geoffry": [["M"]], - "Geoffry's": null, - "geog": null, - "geographer": [["M", "S"]], - "geographer's": null, - "geographers": null, - "geographic": null, - "geographical": [["Y"]], - "geographically": null, - "geography": [["M", "S"]], - "geography's": null, - "geographies": null, - "geologic": null, - "geological": [["Y"]], - "geologically": null, - "geologist": [["M", "S"]], - "geologist's": null, - "geologists": null, - "geology": [["M", "S"]], - "geology's": null, - "geologies": null, - "geom": null, - "Geo": [["M"]], - "Geo's": null, - "geomagnetic": null, - "geomagnetically": null, - "geomagnetism": [["S", "M"]], - "geomagnetisms": null, - "geomagnetism's": null, - "geometer": [["M", "S"]], - "geometer's": null, - "geometers": null, - "geometrical": [["Y"]], - "geometrically": null, - "geometrician": [["M"]], - "geometrician's": null, - "geometric": [["S"]], - "geometrics": null, - "geometry": [["M", "S"]], - "geometry's": null, - "geometries": null, - "geomorphological": null, - "geomorphology": [["M"]], - "geomorphology's": null, - "geophysical": [["Y"]], - "geophysically": null, - "geophysicist": [["M", "S"]], - "geophysicist's": null, - "geophysicists": null, - "geophysics": [["M"]], - "geophysics's": null, - "geopolitical": [["Y"]], - "geopolitically": null, - "geopolitic": [["S"]], - "geopolitics": [["M"]], - "geopolitics's": null, - "Georas": [["M"]], - "Georas's": null, - "Geordie": [["M"]], - "Geordie's": null, - "Georgeanna": [["M"]], - "Georgeanna's": null, - "Georgeanne": [["M"]], - "Georgeanne's": null, - "Georgena": [["M"]], - "Georgena's": null, - "George": [["S", "M"]], - "Georges": null, - "George's": null, - "Georgeta": [["M"]], - "Georgeta's": null, - "Georgetown": [["M"]], - "Georgetown's": null, - "Georgetta": [["M"]], - "Georgetta's": null, - "Georgette": [["M"]], - "Georgette's": null, - "Georgia": [["M"]], - "Georgia's": null, - "Georgiana": [["M"]], - "Georgiana's": null, - "Georgianna": [["M"]], - "Georgianna's": null, - "Georgianne": [["M"]], - "Georgianne's": null, - "Georgian": [["S"]], - "Georgians": null, - "Georgie": [["M"]], - "Georgie's": null, - "Georgi": [["M"]], - "Georgi's": null, - "Georgina": [["M"]], - "Georgina's": null, - "Georgine": [["M"]], - "Georgine's": null, - "Georg": [["M"]], - "Georg's": null, - "Georgy": [["M"]], - "Georgy's": null, - "geostationary": null, - "geosynchronous": null, - "geosyncline": [["S", "M"]], - "geosynclines": null, - "geosyncline's": null, - "geothermal": null, - "geothermic": null, - "Geralda": [["M"]], - "Geralda's": null, - "Geraldine": [["M"]], - "Geraldine's": null, - "Gerald": [["M"]], - "Gerald's": null, - "geranium": [["S", "M"]], - "geraniums": null, - "geranium's": null, - "Gerard": [["M"]], - "Gerard's": null, - "Gerardo": [["M"]], - "Gerardo's": null, - "Gerber": [["M"]], - "Gerber's": null, - "gerbil": [["M", "S"]], - "gerbil's": null, - "gerbils": null, - "Gerda": [["M"]], - "Gerda's": null, - "Gerek": [["M"]], - "Gerek's": null, - "Gerhardine": [["M"]], - "Gerhardine's": null, - "Gerhard": [["M"]], - "Gerhard's": null, - "Gerhardt": [["M"]], - "Gerhardt's": null, - "Gerianna": [["M"]], - "Gerianna's": null, - "Gerianne": [["M"]], - "Gerianne's": null, - "geriatric": [["S"]], - "geriatrics": [["M"]], - "geriatrics's": null, - "Gerick": [["M"]], - "Gerick's": null, - "Gerik": [["M"]], - "Gerik's": null, - "Geri": [["M"]], - "Geri's": null, - "Geritol": [["M"]], - "Geritol's": null, - "Gerladina": [["M"]], - "Gerladina's": null, - "Ger": [["M"]], - "Ger's": null, - "Germaine": [["M"]], - "Germaine's": null, - "Germain": [["M"]], - "Germain's": null, - "Germana": [["M"]], - "Germana's": null, - "germane": null, - "Germania": [["M"]], - "Germania's": null, - "Germanic": [["M"]], - "Germanic's": null, - "germanium": [["S", "M"]], - "germaniums": null, - "germanium's": null, - "germanized": null, - "German": [["S", "M"]], - "Germans": null, - "German's": null, - "Germantown": [["M"]], - "Germantown's": null, - "Germany": [["M"]], - "Germany's": null, - "Germayne": [["M"]], - "Germayne's": null, - "germen": [["M"]], - "germen's": null, - "germicidal": null, - "germicide": [["M", "S"]], - "germicide's": null, - "germicides": null, - "germinal": [["Y"]], - "germinally": null, - "germinated": [["U"]], - "ungerminated": null, - "germinate": [["X", "V", "G", "N", "S", "D"]], - "germinations": null, - "germinative": [["Y"]], - "germinating": null, - "germination": [["M"]], - "germinates": null, - "germination's": null, - "germinatively": null, - "germ": [["M", "N", "S"]], - "germ's": null, - "germs": null, - "Gerome": [["M"]], - "Gerome's": null, - "Geronimo": [["M"]], - "Geronimo's": null, - "gerontocracy": [["M"]], - "gerontocracy's": null, - "gerontological": null, - "gerontologist": [["S", "M"]], - "gerontologists": null, - "gerontologist's": null, - "gerontology": [["S", "M"]], - "gerontologies": null, - "gerontology's": null, - "Gerrard": [["M"]], - "Gerrard's": null, - "Gerrie": [["M"]], - "Gerrie's": null, - "Gerrilee": [["M"]], - "Gerrilee's": null, - "Gerri": [["M"]], - "Gerri's": null, - "Gerry": [["M"]], - "Gerry's": null, - "gerrymander": [["S", "G", "D"]], - "gerrymanders": null, - "gerrymandering": null, - "gerrymandered": null, - "Gershwin": [["M", "S"]], - "Gershwin's": null, - "Gershwins": null, - "Gerta": [["M"]], - "Gerta's": null, - "Gertie": [["M"]], - "Gertie's": null, - "Gerti": [["M"]], - "Gerti's": null, - "Gert": [["M"]], - "Gert's": null, - "Gertruda": [["M"]], - "Gertruda's": null, - "Gertrude": [["M"]], - "Gertrude's": null, - "Gertrudis": [["M"]], - "Gertrudis's": null, - "Gertrud": [["M"]], - "Gertrud's": null, - "Gerty": [["M"]], - "Gerty's": null, - "gerundive": [["M"]], - "gerundive's": null, - "gerund": [["S", "V", "M"]], - "gerunds": null, - "gerund's": null, - "Gery": [["M"]], - "Gery's": null, - "gestalt": [["M"]], - "gestalt's": null, - "gestapo": [["S"]], - "gestapos": null, - "Gestapo": [["S", "M"]], - "Gestapos": null, - "Gestapo's": null, - "gestate": [["S", "D", "G", "N", "X"]], - "gestates": null, - "gestated": null, - "gestating": null, - "gestation": [["M"]], - "gestations": null, - "gestational": null, - "gestation's": null, - "gesticulate": [["X", "S", "D", "V", "G", "N"]], - "gesticulations": null, - "gesticulates": null, - "gesticulated": null, - "gesticulative": [["Y"]], - "gesticulating": null, - "gesticulation": [["M"]], - "gesticulation's": null, - "gesticulatively": null, - "gestural": null, - "gesture": [["S", "D", "M", "G"]], - "gestures": null, - "gestured": null, - "gesture's": null, - "gesturing": null, - "gesundheit": null, - "getaway": [["S", "M"]], - "getaways": null, - "getaway's": null, - "Gethsemane": [["M"]], - "Gethsemane's": null, - "get": [["S"]], - "gets": null, - "getter": [["S", "D", "M"]], - "getters": null, - "gettered": null, - "getter's": null, - "getting": null, - "Getty": [["M"]], - "Getty's": null, - "Gettysburg": [["M"]], - "Gettysburg's": null, - "getup": [["M", "S"]], - "getup's": null, - "getups": null, - "gewgaw": [["M", "S"]], - "gewgaw's": null, - "gewgaws": null, - "Gew�rztraminer": null, - "geyser": [["G", "D", "M", "S"]], - "geysering": null, - "geysered": null, - "geyser's": null, - "geysers": null, - "Ghanaian": [["M", "S"]], - "Ghanaian's": null, - "Ghanaians": null, - "Ghana": [["M"]], - "Ghana's": null, - "Ghanian's": null, - "ghastliness": [["M", "S"]], - "ghastliness's": null, - "ghastlinesses": null, - "ghastly": [["T", "P", "R"]], - "ghastliest": null, - "ghastlier": null, - "ghat": [["M", "S"]], - "ghat's": null, - "ghats": null, - "Ghats": [["M"]], - "Ghats's": null, - "Ghent": [["M"]], - "Ghent's": null, - "Gherardo": [["M"]], - "Gherardo's": null, - "gherkin": [["S", "M"]], - "gherkins": null, - "gherkin's": null, - "ghetto": [["D", "G", "M", "S"]], - "ghettoed": null, - "ghettoing": null, - "ghetto's": null, - "ghettos": null, - "ghettoize": [["S", "D", "G"]], - "ghettoizes": null, - "ghettoized": null, - "ghettoizing": null, - "Ghibelline": [["M"]], - "Ghibelline's": null, - "ghostlike": null, - "ghostliness": [["M", "S"]], - "ghostliness's": null, - "ghostlinesses": null, - "ghostly": [["T", "R", "P"]], - "ghostliest": null, - "ghostlier": null, - "ghost": [["S", "M", "Y", "D", "G"]], - "ghosts": null, - "ghost's": null, - "ghosted": null, - "ghosting": null, - "ghostwrite": [["R", "S", "G", "Z"]], - "ghostwriter": null, - "ghostwrites": null, - "ghostwriting": null, - "ghostwriters": null, - "ghostwritten": null, - "ghostwrote": null, - "ghoulishness": [["S", "M"]], - "ghoulishnesses": null, - "ghoulishness's": null, - "ghoulish": [["P", "Y"]], - "ghoulishly": null, - "ghoul": [["S", "M"]], - "ghouls": null, - "ghoul's": null, - "GHQ": null, - "GI": null, - "Giacinta": [["M"]], - "Giacinta's": null, - "Giacobo": [["M"]], - "Giacobo's": null, - "Giacometti": [["M"]], - "Giacometti's": null, - "Giacomo": [["M"]], - "Giacomo's": null, - "Giacopo": [["M"]], - "Giacopo's": null, - "Giana": [["M"]], - "Giana's": null, - "Gianina": [["M"]], - "Gianina's": null, - "Gian": [["M"]], - "Gian's": null, - "Gianna": [["M"]], - "Gianna's": null, - "Gianni": [["M"]], - "Gianni's": null, - "Giannini": [["M"]], - "Giannini's": null, - "giantess": [["M", "S"]], - "giantess's": null, - "giantesses": null, - "giantkiller": null, - "giant": [["S", "M"]], - "giants": null, - "giant's": null, - "Giauque": [["M"]], - "Giauque's": null, - "Giavani": [["M"]], - "Giavani's": null, - "gibber": [["D", "G", "S"]], - "gibbered": null, - "gibbering": null, - "gibbers": null, - "gibberish": [["M", "S"]], - "gibberish's": null, - "gibberishes": null, - "gibbet": [["M", "D", "S", "G"]], - "gibbet's": null, - "gibbeted": null, - "gibbets": null, - "gibbeting": null, - "Gibbie": [["M"]], - "Gibbie's": null, - "Gibb": [["M", "S"]], - "Gibb's": null, - "Gibbs": null, - "Gibbon": [["M"]], - "Gibbon's": null, - "gibbon": [["M", "S"]], - "gibbon's": null, - "gibbons": null, - "gibbousness": [["M"]], - "gibbousness's": null, - "gibbous": [["Y", "P"]], - "gibbously": null, - "Gibby": [["M"]], - "Gibby's": null, - "gibe": [["G", "D", "R", "S"]], - "gibing": null, - "gibed": null, - "giber": [["M"]], - "gibes": null, - "giber's": null, - "giblet": [["M", "S"]], - "giblet's": null, - "giblets": null, - "Gib": [["M"]], - "Gib's": null, - "Gibraltar": [["M", "S"]], - "Gibraltar's": null, - "Gibraltars": null, - "Gibson": [["M"]], - "Gibson's": null, - "giddap": null, - "giddily": null, - "giddiness": [["S", "M"]], - "giddinesses": null, - "giddiness's": null, - "Giddings": [["M"]], - "Giddings's": null, - "giddy": [["G", "P", "R", "S", "D", "T"]], - "giddying": null, - "giddier": null, - "giddies": null, - "giddied": null, - "giddiest": null, - "Gide": [["M"]], - "Gide's": null, - "Gideon": [["M", "S"]], - "Gideon's": null, - "Gideons": null, - "Gielgud": [["M"]], - "Gielgud's": null, - "Gienah": [["M"]], - "Gienah's": null, - "Giffard": [["M"]], - "Giffard's": null, - "Giffer": [["M"]], - "Giffer's": null, - "Giffie": [["M"]], - "Giffie's": null, - "Gifford": [["M"]], - "Gifford's": null, - "Giff": [["R", "M"]], - "Giff's": null, - "Giffy": [["M"]], - "Giffy's": null, - "giftedness": [["M"]], - "giftedness's": null, - "gifted": [["P", "Y"]], - "giftedly": null, - "gift": [["S", "G", "M", "D"]], - "gifts": null, - "gifting": null, - "gift's": null, - "gigabyte": [["S"]], - "gigabytes": null, - "gigacycle": [["M", "S"]], - "gigacycle's": null, - "gigacycles": null, - "gigahertz": [["M"]], - "gigahertz's": null, - "gigantically": null, - "giganticness": [["M"]], - "giganticness's": null, - "gigantic": [["P"]], - "gigavolt": null, - "gigawatt": [["M"]], - "gigawatt's": null, - "gigged": null, - "gigging": null, - "giggler": [["M"]], - "giggler's": null, - "giggle": [["R", "S", "D", "G", "Z"]], - "giggles": null, - "giggled": null, - "giggling": [["Y"]], - "gigglers": null, - "gigglingly": null, - "giggly": [["T", "R"]], - "giggliest": null, - "gigglier": null, - "Gigi": [["M"]], - "Gigi's": null, - "gig": [["M", "S"]], - "gig's": null, - "gigs": null, - "GIGO": null, - "gigolo": [["M", "S"]], - "gigolo's": null, - "gigolos": null, - "gila": null, - "Gila": [["M"]], - "Gila's": null, - "Gilberta": [["M"]], - "Gilberta's": null, - "Gilberte": [["M"]], - "Gilberte's": null, - "Gilbertina": [["M"]], - "Gilbertina's": null, - "Gilbertine": [["M"]], - "Gilbertine's": null, - "gilbert": [["M"]], - "gilbert's": null, - "Gilbert": [["M"]], - "Gilbert's": null, - "Gilberto": [["M"]], - "Gilberto's": null, - "Gilbertson": [["M"]], - "Gilbertson's": null, - "Gilburt": [["M"]], - "Gilburt's": null, - "Gilchrist": [["M"]], - "Gilchrist's": null, - "Gilda": [["M"]], - "Gilda's": null, - "gilder": [["M"]], - "gilder's": null, - "gilding": [["M"]], - "gilding's": null, - "gild": [["J", "S", "G", "Z", "R", "D"]], - "gildings": null, - "gilds": null, - "gilders": null, - "gilded": null, - "Gilead": [["M"]], - "Gilead's": null, - "Gilemette": [["M"]], - "Gilemette's": null, - "Giles": null, - "Gilgamesh": [["M"]], - "Gilgamesh's": null, - "Gilkson": [["M"]], - "Gilkson's": null, - "Gillan": [["M"]], - "Gillan's": null, - "Gilles": null, - "Gillespie": [["M"]], - "Gillespie's": null, - "Gillette": [["M"]], - "Gillette's": null, - "Gilliam": [["M"]], - "Gilliam's": null, - "Gillian": [["M"]], - "Gillian's": null, - "Gillie": [["M"]], - "Gillie's": null, - "Gilligan": [["M"]], - "Gilligan's": null, - "Gilli": [["M"]], - "Gilli's": null, - "Gill": [["M"]], - "Gill's": null, - "gill": [["S", "G", "M", "R", "D"]], - "gills": null, - "gilling": null, - "gill's": null, - "giller": null, - "gilled": null, - "Gilly": [["M"]], - "Gilly's": null, - "Gilmore": [["M"]], - "Gilmore's": null, - "Gil": [["M", "Y"]], - "Gil's": null, - "gilt": [["S"]], - "gilts": null, - "gimbaled": null, - "gimbals": null, - "Gimbel": [["M"]], - "Gimbel's": null, - "gimcrackery": [["S", "M"]], - "gimcrackeries": null, - "gimcrackery's": null, - "gimcrack": [["S"]], - "gimcracks": null, - "gimlet": [["M", "D", "S", "G"]], - "gimlet's": null, - "gimleted": null, - "gimlets": null, - "gimleting": null, - "gimme": [["S"]], - "gimmes": null, - "gimmick": [["G", "D", "M", "S"]], - "gimmicking": null, - "gimmicked": null, - "gimmick's": null, - "gimmicks": null, - "gimmickry": [["M", "S"]], - "gimmickry's": null, - "gimmickries": null, - "gimmicky": null, - "gimp": [["G", "S", "M", "D"]], - "gimping": null, - "gimps": null, - "gimp's": null, - "gimped": null, - "gimpy": [["R", "T"]], - "gimpier": null, - "gimpiest": null, - "Gina": [["M"]], - "Gina's": null, - "Ginelle": [["M"]], - "Ginelle's": null, - "Ginevra": [["M"]], - "Ginevra's": null, - "gingerbread": [["S", "M"]], - "gingerbreads": null, - "gingerbread's": null, - "gingerliness": [["M"]], - "gingerliness's": null, - "gingerly": [["P"]], - "Ginger": [["M"]], - "Ginger's": null, - "ginger": [["S", "G", "D", "Y", "M"]], - "gingers": null, - "gingering": null, - "gingered": null, - "ginger's": null, - "gingersnap": [["S", "M"]], - "gingersnaps": null, - "gingersnap's": null, - "gingery": null, - "gingham": [["S", "M"]], - "ginghams": null, - "gingham's": null, - "gingivitis": [["S", "M"]], - "gingivitises": null, - "gingivitis's": null, - "Gingrich": [["M"]], - "Gingrich's": null, - "ginkgoes": null, - "ginkgo": [["M"]], - "ginkgo's": null, - "ginmill": null, - "gin": [["M", "S"]], - "gin's": null, - "gins": null, - "ginned": null, - "Ginnie": [["M"]], - "Ginnie's": null, - "Ginnifer": [["M"]], - "Ginnifer's": null, - "Ginni": [["M"]], - "Ginni's": null, - "ginning": null, - "Ginny": [["M"]], - "Ginny's": null, - "Gino": [["M"]], - "Gino's": null, - "Ginsberg": [["M"]], - "Ginsberg's": null, - "Ginsburg": [["M"]], - "Ginsburg's": null, - "ginseng": [["S", "M"]], - "ginsengs": null, - "ginseng's": null, - "Gioconda": [["M"]], - "Gioconda's": null, - "Giordano": [["M"]], - "Giordano's": null, - "Giorgia": [["M"]], - "Giorgia's": null, - "Giorgi": [["M"]], - "Giorgi's": null, - "Giorgio": [["M"]], - "Giorgio's": null, - "Giorgione": [["M"]], - "Giorgione's": null, - "Giotto": [["M"]], - "Giotto's": null, - "Giovanna": [["M"]], - "Giovanna's": null, - "Giovanni": [["M"]], - "Giovanni's": null, - "Gipsy's": null, - "giraffe": [["M", "S"]], - "giraffe's": null, - "giraffes": null, - "Giralda": [["M"]], - "Giralda's": null, - "Giraldo": [["M"]], - "Giraldo's": null, - "Giraud": [["M"]], - "Giraud's": null, - "Giraudoux": [["M"]], - "Giraudoux's": null, - "girded": [["U"]], - "ungirded": null, - "girder": [["M"]], - "girder's": null, - "girdle": [["G", "M", "R", "S", "D"]], - "girdling": null, - "girdle's": null, - "girdler": [["M"]], - "girdles": null, - "girdled": null, - "girdler's": null, - "gird": [["R", "D", "S", "G", "Z"]], - "girds": null, - "girding": null, - "girders": null, - "girlfriend": [["M", "S"]], - "girlfriend's": null, - "girlfriends": null, - "girlhood": [["S", "M"]], - "girlhoods": null, - "girlhood's": null, - "girlie": [["M"]], - "girlie's": null, - "girlishness": [["S", "M"]], - "girlishnesses": null, - "girlishness's": null, - "girlish": [["Y", "P"]], - "girlishly": null, - "girl": [["M", "S"]], - "girl's": null, - "girls": null, - "giro": [["M"]], - "giro's": null, - "girt": [["G", "D", "S"]], - "girting": null, - "girted": null, - "girts": null, - "girth": [["M", "D", "G"]], - "girth's": null, - "girthed": null, - "girthing": null, - "girths": null, - "Gisela": [["M"]], - "Gisela's": null, - "Giselbert": [["M"]], - "Giselbert's": null, - "Gisele": [["M"]], - "Gisele's": null, - "Gisella": [["M"]], - "Gisella's": null, - "Giselle": [["M"]], - "Giselle's": null, - "Gish": [["M"]], - "Gish's": null, - "gist": [["M", "S"]], - "gist's": null, - "gists": null, - "git": [["M"]], - "git's": null, - "Giuditta": [["M"]], - "Giuditta's": null, - "Giulia": [["M"]], - "Giulia's": null, - "Giuliano": [["M"]], - "Giuliano's": null, - "Giulietta": [["M"]], - "Giulietta's": null, - "Giulio": [["M"]], - "Giulio's": null, - "Giuseppe": [["M"]], - "Giuseppe's": null, - "Giustina": [["M"]], - "Giustina's": null, - "Giustino": [["M"]], - "Giustino's": null, - "Giusto": [["M"]], - "Giusto's": null, - "giveaway": [["S", "M"]], - "giveaways": null, - "giveaway's": null, - "giveback": [["S"]], - "givebacks": null, - "give": [["H", "Z", "G", "R", "S"]], - "giveth": null, - "givers": null, - "giving": [["Y"]], - "giver": [["M"]], - "gives": null, - "given": [["S", "P"]], - "givens": null, - "givenness": null, - "giver's": null, - "givingly": null, - "Giza": [["M"]], - "Giza's": null, - "Gizela": [["M"]], - "Gizela's": null, - "gizmo's": null, - "gizzard": [["S", "M"]], - "gizzards": null, - "gizzard's": null, - "Gk": [["M"]], - "Gk's": null, - "glac�": [["D", "G", "S"]], - "glac�ed": null, - "glac�ing": null, - "glac�s": null, - "glacial": [["Y"]], - "glacially": null, - "glaciate": [["X", "N", "G", "D", "S"]], - "glaciations": null, - "glaciation": [["M"]], - "glaciating": null, - "glaciated": null, - "glaciates": null, - "glaciation's": null, - "glacier": [["S", "M"]], - "glaciers": null, - "glacier's": null, - "glaciological": null, - "glaciologist": [["M"]], - "glaciologist's": null, - "glaciology": [["M"]], - "glaciology's": null, - "gladded": null, - "gladden": [["G", "D", "S"]], - "gladdening": null, - "gladdened": null, - "gladdens": null, - "gladder": null, - "gladdest": null, - "gladding": null, - "gladdy": null, - "glade": [["S", "M"]], - "glades": null, - "glade's": null, - "gladiatorial": null, - "gladiator": [["S", "M"]], - "gladiators": null, - "gladiator's": null, - "Gladi": [["M"]], - "Gladi's": null, - "gladiola": [["M", "S"]], - "gladiola's": null, - "gladiolas": null, - "gladioli": null, - "gladiolus": [["M"]], - "gladiolus's": null, - "gladly": [["R", "T"]], - "gladlier": null, - "gladliest": null, - "Glad": [["M"]], - "Glad's": null, - "gladness": [["M", "S"]], - "gladness's": null, - "gladnesses": null, - "gladsome": [["R", "T"]], - "gladsomer": null, - "gladsomest": null, - "Gladstone": [["M", "S"]], - "Gladstone's": null, - "Gladstones": null, - "Gladys": null, - "glad": [["Y", "S", "P"]], - "glads": null, - "glamor": [["D", "M", "G", "S"]], - "glamored": null, - "glamor's": null, - "glamoring": null, - "glamors": null, - "glamorization": [["M", "S"]], - "glamorization's": null, - "glamorizations": null, - "glamorizer": [["M"]], - "glamorizer's": null, - "glamorize": [["S", "R", "D", "Z", "G"]], - "glamorizes": null, - "glamorized": null, - "glamorizers": null, - "glamorizing": null, - "glamorousness": [["M"]], - "glamorousness's": null, - "glamorous": [["P", "Y"]], - "glamorously": null, - "glance": [["G", "J", "S", "D"]], - "glancing": [["Y"]], - "glancings": null, - "glances": null, - "glanced": null, - "glancingly": null, - "glanders": [["M"]], - "glanders's": null, - "glandes": null, - "glandular": [["Y"]], - "glandularly": null, - "gland": [["Z", "S", "M"]], - "glands": null, - "gland's": null, - "glans": [["M"]], - "glans's": null, - "glare": [["S", "D", "G"]], - "glares": null, - "glared": null, - "glaring": [["Y", "P"]], - "glaringness": [["M"]], - "glaringness's": null, - "glaringly": null, - "Glaser": [["M"]], - "Glaser's": null, - "Glasgow": [["M"]], - "Glasgow's": null, - "glasnost": [["S"]], - "glasnosts": null, - "glassblower": [["S"]], - "glassblowers": null, - "glassblowing": [["M", "S"]], - "glassblowing's": null, - "glassblowings": null, - "glassful": [["M", "S"]], - "glassful's": null, - "glassfuls": null, - "glass": [["G", "S", "D", "M"]], - "glassing": null, - "glasses": null, - "glassed": null, - "glass's": null, - "glasshouse": [["S", "M"]], - "glasshouses": null, - "glasshouse's": null, - "glassily": null, - "glassiness": [["S", "M"]], - "glassinesses": null, - "glassiness's": null, - "glassless": null, - "Glass": [["M"]], - "Glass's": null, - "glassware": [["S", "M"]], - "glasswares": null, - "glassware's": null, - "glasswort": [["M"]], - "glasswort's": null, - "glassy": [["P", "R", "S", "T"]], - "glassier": null, - "glassies": null, - "glassiest": null, - "Glastonbury": [["M"]], - "Glastonbury's": null, - "Glaswegian": [["S"]], - "Glaswegians": null, - "glaucoma": [["S", "M"]], - "glaucomas": null, - "glaucoma's": null, - "glaucous": null, - "glazed": [["U"]], - "unglazed": null, - "glazer": [["M"]], - "glazer's": null, - "glaze": [["S", "R", "D", "G", "Z", "J"]], - "glazes": null, - "glazing": [["M"]], - "glazers": null, - "glazings": null, - "glazier": [["S", "M"]], - "glaziers": null, - "glazier's": null, - "glazing's": null, - "gleam": [["M", "D", "G", "S"]], - "gleam's": null, - "gleamed": null, - "gleaming": null, - "gleams": null, - "gleaner": [["M"]], - "gleaner's": null, - "gleaning": [["M"]], - "gleaning's": null, - "glean": [["R", "D", "G", "Z", "J", "S"]], - "gleaned": null, - "gleaners": null, - "gleanings": null, - "gleans": null, - "Gleason": [["M"]], - "Gleason's": null, - "Gleda": [["M"]], - "Gleda's": null, - "gleed": [["M"]], - "gleed's": null, - "glee": [["D", "S", "M"]], - "glees": null, - "glee's": null, - "gleefulness": [["M", "S"]], - "gleefulness's": null, - "gleefulnesses": null, - "gleeful": [["Y", "P"]], - "gleefully": null, - "gleeing": null, - "Glendale": [["M"]], - "Glendale's": null, - "Glenda": [["M"]], - "Glenda's": null, - "Glenden": [["M"]], - "Glenden's": null, - "Glendon": [["M"]], - "Glendon's": null, - "Glenine": [["M"]], - "Glenine's": null, - "Glen": [["M"]], - "Glen's": null, - "Glenna": [["M"]], - "Glenna's": null, - "Glennie": [["M"]], - "Glennie's": null, - "Glennis": [["M"]], - "Glennis's": null, - "Glenn": [["M"]], - "Glenn's": null, - "glen": [["S", "M"]], - "glens": null, - "glen's": null, - "glibber": null, - "glibbest": null, - "glibness": [["M", "S"]], - "glibness's": null, - "glibnesses": null, - "glib": [["Y", "P"]], - "glibly": null, - "glide": [["J", "G", "Z", "S", "R", "D"]], - "glidings": null, - "gliding": null, - "gliders": null, - "glides": null, - "glider": [["M"]], - "glided": null, - "glider's": null, - "glim": [["M"]], - "glim's": null, - "glimmer": [["D", "S", "J", "G"]], - "glimmered": null, - "glimmers": null, - "glimmerings": null, - "glimmering": [["M"]], - "glimmering's": null, - "glimpse": [["D", "R", "S", "Z", "M", "G"]], - "glimpsed": null, - "glimpser": [["M"]], - "glimpses": null, - "glimpsers": null, - "glimpse's": null, - "glimpsing": null, - "glimpser's": null, - "glint": [["D", "S", "G"]], - "glinted": null, - "glints": null, - "glinting": null, - "glissandi": null, - "glissando": [["M"]], - "glissando's": null, - "glisten": [["D", "S", "G"]], - "glistened": null, - "glistens": null, - "glistening": null, - "glister": [["D", "G", "S"]], - "glistered": null, - "glistering": null, - "glisters": null, - "glitch": [["M", "S"]], - "glitch's": null, - "glitches": null, - "glitter": [["G", "D", "S", "J"]], - "glittering": [["Y"]], - "glittered": null, - "glitters": null, - "glitterings": null, - "glitteringly": null, - "glittery": null, - "glitz": [["G", "S", "D"]], - "glitzing": null, - "glitzes": null, - "glitzed": null, - "glitzy": [["T", "R"]], - "glitziest": null, - "glitzier": null, - "gloaming": [["M", "S"]], - "gloaming's": null, - "gloamings": null, - "gloater": [["M"]], - "gloater's": null, - "gloating": [["Y"]], - "gloatingly": null, - "gloat": [["S", "R", "D", "G"]], - "gloats": null, - "gloated": null, - "globalism": [["S"]], - "globalisms": null, - "globalist": [["S"]], - "globalists": null, - "global": [["S", "Y"]], - "globals": null, - "globally": null, - "globe": [["S", "M"]], - "globes": null, - "globe's": null, - "globetrotter": [["M", "S"]], - "globetrotter's": null, - "globetrotters": null, - "glob": [["G", "D", "M", "S"]], - "globing": null, - "globed": null, - "glob's": null, - "globs": null, - "globularity": [["M"]], - "globularity's": null, - "globularness": [["M"]], - "globularness's": null, - "globular": [["P", "Y"]], - "globularly": null, - "globule": [["M", "S"]], - "globule's": null, - "globules": null, - "globulin": [["M", "S"]], - "globulin's": null, - "globulins": null, - "glockenspiel": [["S", "M"]], - "glockenspiels": null, - "glockenspiel's": null, - "glommed": null, - "gloom": [["G", "S", "M", "D"]], - "glooming": null, - "glooms": null, - "gloom's": null, - "gloomed": null, - "gloomily": null, - "gloominess": [["M", "S"]], - "gloominess's": null, - "gloominesses": null, - "gloomy": [["R", "T", "P"]], - "gloomier": null, - "gloomiest": null, - "glop": [["M", "S"]], - "glop's": null, - "glops": null, - "glopped": null, - "glopping": null, - "gloppy": [["T", "R"]], - "gloppiest": null, - "gloppier": null, - "Gloria": [["M"]], - "Gloria's": null, - "Gloriana": [["M"]], - "Gloriana's": null, - "Gloriane": [["M"]], - "Gloriane's": null, - "glorification": [["M"]], - "glorification's": null, - "glorifier": [["M"]], - "glorifier's": null, - "glorify": [["X", "Z", "R", "S", "D", "N", "G"]], - "glorifications": null, - "glorifiers": null, - "glorifies": null, - "glorified": null, - "glorifying": null, - "Glori": [["M"]], - "Glori's": null, - "glorious": [["I", "Y", "P"]], - "inglorious": null, - "ingloriously": null, - "ingloriousness": null, - "gloriously": null, - "gloriousness": [["I", "M"]], - "ingloriousness's": null, - "gloriousness's": null, - "Glory": [["M"]], - "Glory's": null, - "glory": [["S", "D", "M", "G"]], - "glories": null, - "gloried": null, - "glory's": null, - "glorying": null, - "glossary": [["M", "S"]], - "glossary's": null, - "glossaries": null, - "gloss": [["G", "S", "D", "M"]], - "glossing": null, - "glosses": null, - "glossed": null, - "gloss's": null, - "glossily": null, - "glossiness": [["S", "M"]], - "glossinesses": null, - "glossiness's": null, - "glossolalia": [["S", "M"]], - "glossolalias": null, - "glossolalia's": null, - "glossy": [["R", "S", "P", "T"]], - "glossier": null, - "glossies": null, - "glossiest": null, - "glottal": null, - "glottalization": [["M"]], - "glottalization's": null, - "glottis": [["M", "S"]], - "glottis's": null, - "glottises": null, - "Gloucester": [["M"]], - "Gloucester's": null, - "gloveless": null, - "glover": [["M"]], - "glover's": null, - "Glover": [["M"]], - "Glover's": null, - "glove": [["S", "R", "D", "G", "M", "Z"]], - "gloves": null, - "gloved": null, - "gloving": null, - "glove's": null, - "glovers": null, - "glower": [["G", "D"]], - "glowering": null, - "glowered": null, - "glow": [["G", "Z", "R", "D", "M", "S"]], - "glowing": [["Y"]], - "glowers": null, - "glowed": null, - "glow's": null, - "glows": null, - "glowingly": null, - "glowworm": [["S", "M"]], - "glowworms": null, - "glowworm's": null, - "glucose": [["S", "M"]], - "glucoses": null, - "glucose's": null, - "glue": [["D", "R", "S", "M", "Z", "G"]], - "glued": [["U"]], - "gluer": [["M"]], - "glues": null, - "glue's": null, - "gluers": null, - "gluing": null, - "unglued": null, - "gluer's": null, - "gluey": null, - "gluier": null, - "gluiest": null, - "glummer": null, - "glummest": null, - "glumness": [["M", "S"]], - "glumness's": null, - "glumnesses": null, - "glum": [["S", "Y", "P"]], - "glums": null, - "glumly": null, - "gluon": [["M"]], - "gluon's": null, - "glutamate": [["M"]], - "glutamate's": null, - "gluten": [["M"]], - "gluten's": null, - "glutenous": null, - "glutinousness": [["M"]], - "glutinousness's": null, - "glutinous": [["P", "Y"]], - "glutinously": null, - "glut": [["S", "M", "N", "X"]], - "gluts": null, - "glut's": null, - "glutens": null, - "glutted": null, - "glutting": null, - "glutton": [["M", "S"]], - "glutton's": null, - "gluttons": null, - "gluttonous": [["Y"]], - "gluttonously": null, - "gluttony": [["S", "M"]], - "gluttonies": null, - "gluttony's": null, - "glyceride": [["M"]], - "glyceride's": null, - "glycerinate": [["M", "D"]], - "glycerinate's": null, - "glycerinated": null, - "glycerine's": null, - "glycerin": [["S", "M"]], - "glycerins": null, - "glycerin's": null, - "glycerolized": [["C"]], - "deglycerolized": null, - "glycerol": [["S", "M"]], - "glycerols": null, - "glycerol's": null, - "glycine": [["M"]], - "glycine's": null, - "glycogen": [["S", "M"]], - "glycogens": null, - "glycogen's": null, - "glycol": [["M", "S"]], - "glycol's": null, - "glycols": null, - "Glynda": [["M"]], - "Glynda's": null, - "Glynis": [["M"]], - "Glynis's": null, - "Glyn": [["M"]], - "Glyn's": null, - "Glynnis": [["M"]], - "Glynnis's": null, - "Glynn": [["M"]], - "Glynn's": null, - "glyph": [["M"]], - "glyph's": null, - "glyphs": null, - "gm": null, - "GM": null, - "GMT": null, - "gnarl": [["S", "M", "D", "G"]], - "gnarls": null, - "gnarl's": null, - "gnarled": null, - "gnarling": null, - "gnash": [["S", "D", "G"]], - "gnashes": null, - "gnashed": null, - "gnashing": null, - "gnat": [["M", "S"]], - "gnat's": null, - "gnats": null, - "gnawer": [["M"]], - "gnawer's": null, - "gnaw": [["G", "R", "D", "S", "J"]], - "gnawing": [["M"]], - "gnawed": null, - "gnaws": null, - "gnawings": null, - "gnawing's": null, - "gneiss": [["S", "M"]], - "gneisses": null, - "gneiss's": null, - "Gnni": [["M"]], - "Gnni's": null, - "gnomelike": null, - "GNOME": [["M"]], - "GNOME's": null, - "gnome": [["S", "M"]], - "gnomes": null, - "gnome's": null, - "gnomic": null, - "gnomish": null, - "gnomonic": null, - "gnosticism": null, - "Gnosticism": [["M"]], - "Gnosticism's": null, - "gnostic": [["K"]], - "prognostic": [["S"]], - "Gnostic": [["M"]], - "Gnostic's": null, - "GNP": null, - "gnu": [["M", "S"]], - "gnu's": null, - "gnus": null, - "goad": [["M", "D", "S", "G"]], - "goad's": null, - "goaded": null, - "goads": null, - "goading": null, - "goalie": [["S", "M"]], - "goalies": null, - "goalie's": null, - "goalkeeper": [["M", "S"]], - "goalkeeper's": null, - "goalkeepers": null, - "goalkeeping": [["M"]], - "goalkeeping's": null, - "goalless": null, - "goal": [["M", "D", "S", "G"]], - "goal's": null, - "goaled": null, - "goals": null, - "goaling": null, - "goalmouth": [["M"]], - "goalmouth's": null, - "goalpost": [["S"]], - "goalposts": null, - "goalscorer": null, - "goalscoring": null, - "goaltender": [["S", "M"]], - "goaltenders": null, - "goaltender's": null, - "Goa": [["M"]], - "Goa's": null, - "goatee": [["S", "M"]], - "goatees": null, - "goatee's": null, - "goatherd": [["M", "S"]], - "goatherd's": null, - "goatherds": null, - "goat": [["M", "S"]], - "goat's": null, - "goats": null, - "goatskin": [["S", "M"]], - "goatskins": null, - "goatskin's": null, - "gobbed": null, - "gobbet": [["M", "S"]], - "gobbet's": null, - "gobbets": null, - "gobbing": null, - "gobbledegook's": null, - "gobbledygook": [["S"]], - "gobbledygooks": null, - "gobbler": [["M"]], - "gobbler's": null, - "gobble": [["S", "R", "D", "G", "Z"]], - "gobbles": null, - "gobbled": null, - "gobbling": null, - "gobblers": null, - "Gobi": [["M"]], - "Gobi's": null, - "goblet": [["M", "S"]], - "goblet's": null, - "goblets": null, - "goblin": [["S", "M"]], - "goblins": null, - "goblin's": null, - "gob": [["S", "M"]], - "gobs": null, - "gob's": null, - "Godard": [["M"]], - "Godard's": null, - "Godart": [["M"]], - "Godart's": null, - "godchild": [["M"]], - "godchild's": null, - "godchildren": null, - "goddammit": null, - "goddamn": [["G", "S"]], - "goddamning": null, - "goddamns": null, - "Goddard": [["M"]], - "Goddard's": null, - "Goddart": [["M"]], - "Goddart's": null, - "goddaughter": [["S", "M"]], - "goddaughters": null, - "goddaughter's": null, - "godded": null, - "goddess": [["M", "S"]], - "goddess's": null, - "goddesses": null, - "godding": null, - "G�del": [["M"]], - "G�del's": null, - "godfather": [["G", "S", "D", "M"]], - "godfathering": null, - "godfathers": null, - "godfathered": null, - "godfather's": null, - "godforsaken": null, - "Godfree": [["M"]], - "Godfree's": null, - "Godfrey": [["M"]], - "Godfrey's": null, - "Godfry": [["M"]], - "Godfry's": null, - "godhead": [["S"]], - "godheads": null, - "godhood": [["S", "M"]], - "godhoods": null, - "godhood's": null, - "Godiva": [["M"]], - "Godiva's": null, - "godlessness": [["M", "S"]], - "godlessness's": null, - "godlessnesses": null, - "godless": [["P"]], - "godlikeness": [["M"]], - "godlikeness's": null, - "godlike": [["P"]], - "godliness": [["U", "M", "S"]], - "ungodliness": null, - "ungodliness's": null, - "ungodlinesses": null, - "godliness's": null, - "godlinesses": null, - "godly": [["U", "T", "P", "R"]], - "ungodly": null, - "ungodlier": null, - "godliest": null, - "godlier": null, - "God": [["M"]], - "God's": null, - "godmother": [["M", "S"]], - "godmother's": null, - "godmothers": null, - "Godot": [["M"]], - "Godot's": null, - "godparent": [["S", "M"]], - "godparents": null, - "godparent's": null, - "godsend": [["M", "S"]], - "godsend's": null, - "godsends": null, - "god": [["S", "M", "Y"]], - "gods": null, - "god's": null, - "godson": [["M", "S"]], - "godson's": null, - "godsons": null, - "Godspeed": [["S"]], - "Godspeeds": null, - "Godthaab": [["M"]], - "Godthaab's": null, - "Godunov": [["M"]], - "Godunov's": null, - "Godwin": [["M"]], - "Godwin's": null, - "Godzilla": [["M"]], - "Godzilla's": null, - "Goebbels": [["M"]], - "Goebbels's": null, - "Goering": [["M"]], - "Goering's": null, - "goer": [["M", "G"]], - "goer's": null, - "goering": null, - "goes": null, - "Goethals": [["M"]], - "Goethals's": null, - "Goethe": [["M"]], - "Goethe's": null, - "gofer": [["S", "M"]], - "gofers": null, - "gofer's": null, - "Goff": [["M"]], - "Goff's": null, - "goggler": [["M"]], - "goggler's": null, - "goggle": [["S", "R", "D", "G", "Z"]], - "goggles": null, - "goggled": null, - "goggling": null, - "gogglers": null, - "Gogh": [["M"]], - "Gogh's": null, - "Gog": [["M"]], - "Gog's": null, - "Gogol": [["M"]], - "Gogol's": null, - "Goiania": [["M"]], - "Goiania's": null, - "going": [["M"]], - "going's": null, - "goiter": [["S", "M"]], - "goiters": null, - "goiter's": null, - "Golan": [["M"]], - "Golan's": null, - "Golconda": [["M"]], - "Golconda's": null, - "Golda": [["M"]], - "Golda's": null, - "Goldarina": [["M"]], - "Goldarina's": null, - "Goldberg": [["M"]], - "Goldberg's": null, - "goldbricker": [["M"]], - "goldbricker's": null, - "goldbrick": [["G", "Z", "R", "D", "M", "S"]], - "goldbricking": null, - "goldbrickers": null, - "goldbricked": null, - "goldbrick's": null, - "goldbricks": null, - "Golden": [["M"]], - "Golden's": null, - "goldenness": [["M"]], - "goldenness's": null, - "goldenrod": [["S", "M"]], - "goldenrods": null, - "goldenrod's": null, - "goldenseal": [["M"]], - "goldenseal's": null, - "golden": [["T", "R", "Y", "P"]], - "goldenest": null, - "goldener": null, - "goldenly": null, - "goldfinch": [["M", "S"]], - "goldfinch's": null, - "goldfinches": null, - "goldfish": [["S", "M"]], - "goldfishes": null, - "goldfish's": null, - "Goldia": [["M"]], - "Goldia's": null, - "Goldie": [["M"]], - "Goldie's": null, - "Goldilocks": [["M"]], - "Goldilocks's": null, - "Goldi": [["M"]], - "Goldi's": null, - "Goldina": [["M"]], - "Goldina's": null, - "Golding": [["M"]], - "Golding's": null, - "Goldman": [["M"]], - "Goldman's": null, - "goldmine": [["S"]], - "goldmines": null, - "gold": [["M", "R", "N", "G", "T", "S"]], - "gold's": null, - "golder": null, - "golding": null, - "goldest": null, - "golds": null, - "goldsmith": [["M"]], - "goldsmith's": null, - "Goldsmith": [["M"]], - "Goldsmith's": null, - "goldsmiths": null, - "Goldstein": [["M"]], - "Goldstein's": null, - "Goldwater": [["M"]], - "Goldwater's": null, - "Goldwyn": [["M"]], - "Goldwyn's": null, - "Goldy": [["M"]], - "Goldy's": null, - "Goleta": [["M"]], - "Goleta's": null, - "golfer": [["M"]], - "golfer's": null, - "golf": [["R", "D", "M", "G", "Z", "S"]], - "golfed": null, - "golf's": null, - "golfing": null, - "golfers": null, - "golfs": null, - "Golgotha": [["M"]], - "Golgotha's": null, - "Goliath": [["M"]], - "Goliath's": null, - "Goliaths": null, - "golly": [["S"]], - "gollies": null, - "Gomez": [["M"]], - "Gomez's": null, - "Gomorrah": [["M"]], - "Gomorrah's": null, - "Gompers": [["M"]], - "Gompers's": null, - "go": [["M", "R", "H", "Z", "G", "J"]], - "go's": null, - "goth": null, - "goers": null, - "goings": null, - "gonadal": null, - "gonad": [["S", "M"]], - "gonads": null, - "gonad's": null, - "gondola": [["S", "M"]], - "gondolas": null, - "gondola's": null, - "gondolier": [["M", "S"]], - "gondolier's": null, - "gondoliers": null, - "Gondwanaland": [["M"]], - "Gondwanaland's": null, - "goner": [["M"]], - "goner's": null, - "gone": [["R", "Z", "N"]], - "goners": null, - "gonion": [["M"]], - "gong": [["S", "G", "D", "M"]], - "gongs": null, - "gonging": null, - "gonged": null, - "gong's": null, - "gonion's": null, - "gonna": null, - "gonorrheal": null, - "gonorrhea": [["M", "S"]], - "gonorrhea's": null, - "gonorrheas": null, - "Gonzales": [["M"]], - "Gonzales's": null, - "Gonzalez": [["M"]], - "Gonzalez's": null, - "Gonzalo": [["M"]], - "Gonzalo's": null, - "Goober": [["M"]], - "Goober's": null, - "goober": [["M", "S"]], - "goober's": null, - "goobers": null, - "goodbye": [["M", "S"]], - "goodbye's": null, - "goodbyes": null, - "goodhearted": null, - "goodie's": null, - "goodish": null, - "goodly": [["T", "R"]], - "goodliest": null, - "goodlier": null, - "Good": [["M"]], - "Good's": null, - "Goodman": [["M"]], - "Goodman's": null, - "goodness": [["M", "S"]], - "goodness's": null, - "goodnesses": null, - "goodnight": null, - "Goodrich": [["M"]], - "Goodrich's": null, - "good": [["S", "Y", "P"]], - "goods": null, - "goodwill": [["M", "S"]], - "goodwill's": null, - "goodwills": null, - "Goodwin": [["M"]], - "Goodwin's": null, - "Goodyear": [["M"]], - "Goodyear's": null, - "goody": [["S", "M"]], - "goodies": null, - "goody's": null, - "gooey": null, - "goofiness": [["M", "S"]], - "goofiness's": null, - "goofinesses": null, - "goof": [["S", "D", "M", "G"]], - "goofs": null, - "goofed": null, - "goof's": null, - "goofing": null, - "goofy": [["R", "P", "T"]], - "goofier": null, - "goofiest": null, - "Google": [["M"]], - "Google's": null, - "gooier": null, - "gooiest": null, - "gook": [["S", "M"]], - "gooks": null, - "gook's": null, - "goo": [["M", "S"]], - "goo's": null, - "goos": [["S", "D", "G"]], - "goon": [["S", "M"]], - "goons": null, - "goon's": null, - "goop": [["S", "M"]], - "goops": null, - "goop's": null, - "gooseberry": [["M", "S"]], - "gooseberry's": null, - "gooseberries": null, - "goosebumps": null, - "goose": [["M"]], - "goose's": null, - "gooses": null, - "goosed": null, - "goosing": null, - "GOP": null, - "Gopher": null, - "gopher": [["S", "M"]], - "gophers": null, - "gopher's": null, - "Goran": [["M"]], - "Goran's": null, - "Goraud": [["M"]], - "Goraud's": null, - "Gorbachev": null, - "Gordan": [["M"]], - "Gordan's": null, - "Gorden": [["M"]], - "Gorden's": null, - "Gordian": [["M"]], - "Gordian's": null, - "Gordie": [["M"]], - "Gordie's": null, - "Gordimer": [["M"]], - "Gordimer's": null, - "Gordon": [["M"]], - "Gordon's": null, - "Gordy": [["M"]], - "Gordy's": null, - "gore": [["D", "S", "M", "G"]], - "gored": null, - "gores": null, - "gore's": null, - "goring": [["M"]], - "Gore": [["M"]], - "Gore's": null, - "Goren": [["M"]], - "Goren's": null, - "Gorey": [["M"]], - "Gorey's": null, - "Gorgas": null, - "gorged": [["E"]], - "disgorged": null, - "gorge": [["G", "M", "S", "R", "D"]], - "gorging": [["E"]], - "gorge's": null, - "gorges": [["E"]], - "gorger": [["E", "M"]], - "gorgeousness": [["S", "M"]], - "gorgeousnesses": null, - "gorgeousness's": null, - "gorgeous": [["Y", "P"]], - "gorgeously": null, - "disgorger": null, - "disgorger's": null, - "gorger's": null, - "disgorges": null, - "disgorging": null, - "Gorgon": [["M"]], - "Gorgon's": null, - "gorgon": [["S"]], - "gorgons": null, - "Gorgonzola": [["M"]], - "Gorgonzola's": null, - "Gorham": [["M"]], - "Gorham's": null, - "gorilla": [["M", "S"]], - "gorilla's": null, - "gorillas": null, - "gorily": null, - "goriness": [["M", "S"]], - "goriness's": null, - "gorinesses": null, - "goring's": null, - "Gorky": [["M"]], - "Gorky's": null, - "gormandizer": [["M"]], - "gormandizer's": null, - "gormandize": [["S", "R", "D", "G", "Z"]], - "gormandizes": null, - "gormandized": null, - "gormandizing": null, - "gormandizers": null, - "gormless": null, - "gorp": [["S"]], - "gorps": null, - "gorse": [["S", "M"]], - "gorses": null, - "gorse's": null, - "gory": [["P", "R", "T"]], - "gorier": null, - "goriest": null, - "gos": null, - "goshawk": [["M", "S"]], - "goshawk's": null, - "goshawks": null, - "gosh": [["S"]], - "goshes": null, - "gosling": [["M"]], - "gosling's": null, - "gospeler": [["M"]], - "gospeler's": null, - "gospel": [["M", "R", "S", "Z"]], - "gospel's": null, - "gospels": null, - "gospelers": null, - "Gospel": [["S", "M"]], - "Gospels": null, - "Gospel's": null, - "gossamer": [["S", "M"]], - "gossamers": null, - "gossamer's": null, - "gossipy": null, - "gossip": [["Z", "G", "M", "R", "D", "S"]], - "gossipers": null, - "gossiping": null, - "gossip's": null, - "gossiper": null, - "gossiped": null, - "gossips": null, - "gotcha": [["S", "M"]], - "gotchas": null, - "gotcha's": null, - "G�teborg": [["M"]], - "G�teborg's": null, - "Gotham": [["M"]], - "Gotham's": null, - "Gothart": [["M"]], - "Gothart's": null, - "Gothicism": [["M"]], - "Gothicism's": null, - "Gothic": [["S"]], - "Gothics": null, - "Goth": [["M"]], - "Goth's": null, - "Goths": null, - "got": [["I", "U"]], - "ingot": [["S", "M", "D", "G"]], - "ungot": null, - "goto": null, - "GOTO": [["M", "S"]], - "GOTO's": null, - "GOTOs": null, - "gotta": null, - "gotten": [["U"]], - "ungotten": null, - "Gottfried": [["M"]], - "Gottfried's": null, - "Goucher": [["M"]], - "Goucher's": null, - "Gouda": [["S", "M"]], - "Goudas": null, - "Gouda's": null, - "gouge": [["G", "Z", "S", "R", "D"]], - "gouging": null, - "gougers": null, - "gouges": null, - "gouger": [["M"]], - "gouged": null, - "gouger's": null, - "goulash": [["S", "M"]], - "goulashes": null, - "goulash's": null, - "Gould": [["M"]], - "Gould's": null, - "Gounod": [["M"]], - "Gounod's": null, - "gourde": [["S", "M"]], - "gourdes": null, - "gourde's": null, - "gourd": [["M", "S"]], - "gourd's": null, - "gourds": null, - "gourmand": [["M", "S"]], - "gourmand's": null, - "gourmands": null, - "gourmet": [["M", "S"]], - "gourmet's": null, - "gourmets": null, - "gout": [["S", "M"]], - "gouts": null, - "gout's": null, - "gouty": [["R", "T"]], - "goutier": null, - "goutiest": null, - "governable": [["U"]], - "ungovernable": null, - "governance": [["S", "M"]], - "governances": null, - "governance's": null, - "governed": [["U"]], - "ungoverned": null, - "governess": [["S", "M"]], - "governesses": null, - "governess's": null, - "govern": [["L", "B", "G", "S", "D"]], - "government": [["M", "S"]], - "governing": null, - "governs": null, - "governmental": [["Y"]], - "governmentally": null, - "government's": null, - "governments": null, - "Governor": null, - "governor": [["M", "S"]], - "governor's": null, - "governors": null, - "governorship": [["S", "M"]], - "governorships": null, - "governorship's": null, - "gov": [["S"]], - "govs": null, - "govt": null, - "gown": [["G", "S", "D", "M"]], - "gowning": null, - "gowns": null, - "gowned": null, - "gown's": null, - "Goya": [["M"]], - "Goya's": null, - "GP": null, - "GPA": null, - "GPO": null, - "GPSS": null, - "gr": null, - "grabbed": null, - "grabber": [["S", "M"]], - "grabbers": null, - "grabber's": null, - "grabbing": [["S"]], - "grabbings": null, - "grab": [["S"]], - "grabs": null, - "Gracchus": [["M"]], - "Gracchus's": null, - "grace": [["E", "S", "D", "M", "G"]], - "disgraces": null, - "disgraced": null, - "disgrace's": null, - "disgracing": null, - "graces": null, - "graced": null, - "grace's": null, - "gracing": null, - "graceful": [["E", "Y", "P", "U"]], - "disgraceful": null, - "disgracefully": null, - "disgracefulness": null, - "gracefully": null, - "ungracefully": null, - "gracefulness": [["E", "S", "M"]], - "ungracefulness": null, - "ungraceful": null, - "gracefuller": null, - "gracefullest": null, - "disgracefulnesses": null, - "disgracefulness's": null, - "gracefulnesses": null, - "gracefulness's": null, - "Graceland": [["M"]], - "Graceland's": null, - "gracelessness": [["M", "S"]], - "gracelessness's": null, - "gracelessnesses": null, - "graceless": [["P", "Y"]], - "gracelessly": null, - "Grace": [["M"]], - "Grace's": null, - "Gracia": [["M"]], - "Gracia's": null, - "Graciela": [["M"]], - "Graciela's": null, - "Gracie": [["M"]], - "Gracie's": null, - "graciousness": [["S", "M"]], - "graciousnesses": null, - "graciousness's": null, - "gracious": [["U", "Y"]], - "ungracious": null, - "ungraciously": null, - "graciously": null, - "grackle": [["S", "M"]], - "grackles": null, - "grackle's": null, - "gradate": [["D", "S", "N", "G", "X"]], - "gradated": null, - "gradates": null, - "gradation": [["M", "C", "S"]], - "gradating": null, - "gradations": null, - "gradation's": null, - "degradation's": null, - "degradation": null, - "degradations": null, - "grade": [["A", "C", "S", "D", "G"]], - "regrade": null, - "regrades": null, - "regraded": null, - "regrading": null, - "degrades": null, - "grades": null, - "graded": [["U"]], - "grading": null, - "ungraded": null, - "Gradeigh": [["M"]], - "Gradeigh's": null, - "gradely": null, - "grader": [["M", "C"]], - "grader's": null, - "degrader's": null, - "degrader": null, - "grade's": null, - "Gradey": [["M"]], - "Gradey's": null, - "gradient": [["R", "M", "S"]], - "gradienter": null, - "gradient's": null, - "gradients": null, - "grad": [["M", "R", "D", "G", "Z", "J", "S"]], - "grad's": null, - "graders": null, - "gradings": null, - "grads": null, - "gradualism": [["M", "S"]], - "gradualism's": null, - "gradualisms": null, - "gradualist": [["M", "S"]], - "gradualist's": null, - "gradualists": null, - "gradualness": [["M", "S"]], - "gradualness's": null, - "gradualnesses": null, - "gradual": [["S", "Y", "P"]], - "graduals": null, - "gradually": null, - "graduand": [["S", "M"]], - "graduands": null, - "graduand's": null, - "graduate": [["M", "N", "G", "D", "S", "X"]], - "graduate's": null, - "graduation": [["M"]], - "graduating": null, - "graduated": null, - "graduates": null, - "graduations": null, - "graduation's": null, - "Grady": [["M"]], - "Grady's": null, - "Graehme": [["M"]], - "Graehme's": null, - "Graeme": [["M"]], - "Graeme's": null, - "Graffias": [["M"]], - "Graffias's": null, - "graffiti": null, - "graffito": [["M"]], - "graffito's": null, - "Graff": [["M"]], - "Graff's": null, - "grafter": [["M"]], - "grafter's": null, - "grafting": [["M"]], - "grafting's": null, - "graft": [["M", "R", "D", "S", "G", "Z"]], - "graft's": null, - "grafted": null, - "grafts": null, - "grafters": null, - "Grafton": [["M"]], - "Grafton's": null, - "Grahame": [["M"]], - "Grahame's": null, - "Graham": [["M"]], - "Graham's": null, - "graham": [["S", "M"]], - "grahams": null, - "graham's": null, - "Graig": [["M"]], - "Graig's": null, - "grail": [["S"]], - "grails": null, - "Grail": [["S", "M"]], - "Grails": null, - "Grail's": null, - "grainer": [["M"]], - "grainer's": null, - "grain": [["I", "G", "S", "D"]], - "ingrain": null, - "ingraining": null, - "ingrains": null, - "ingrained": [["Y"]], - "graining": [["M"]], - "grains": null, - "grained": null, - "graininess": [["M", "S"]], - "graininess's": null, - "graininesses": null, - "graining's": null, - "grain's": null, - "grainy": [["R", "T", "P"]], - "grainier": null, - "grainiest": null, - "gram": [["K", "S", "M"]], - "program": [["C", "S", "A"]], - "programs": null, - "program's": null, - "grams": null, - "gram's": null, - "Gram": [["M"]], - "Gram's": null, - "grammarian": [["S", "M"]], - "grammarians": null, - "grammarian's": null, - "grammar": [["M", "S"]], - "grammar's": null, - "grammars": null, - "grammaticality": [["M"]], - "grammaticality's": null, - "grammaticalness": [["M"]], - "grammaticalness's": null, - "grammatical": [["U", "Y"]], - "ungrammatical": null, - "ungrammatically": null, - "grammatically": null, - "grammatic": [["K"]], - "programmatic": null, - "gramme": [["S", "M"]], - "grammes": null, - "gramme's": null, - "Grammy": [["S"]], - "Grammies": null, - "gramophone": [["S", "M"]], - "gramophones": null, - "gramophone's": null, - "Grampians": null, - "grampus": [["S", "M"]], - "grampuses": null, - "grampus's": null, - "Granada": [["M"]], - "Granada's": null, - "granary": [["M", "S"]], - "granary's": null, - "granaries": null, - "grandam": [["S", "M"]], - "grandams": null, - "grandam's": null, - "grandaunt": [["M", "S"]], - "grandaunt's": null, - "grandaunts": null, - "grandchild": [["M"]], - "grandchild's": null, - "grandchildren": null, - "granddaddy": [["M", "S"]], - "granddaddy's": null, - "granddaddies": null, - "granddad": [["S", "M"]], - "granddads": null, - "granddad's": null, - "granddaughter": [["M", "S"]], - "granddaughter's": null, - "granddaughters": null, - "grandee": [["S", "M"]], - "grandees": null, - "grandee's": null, - "grandeur": [["M", "S"]], - "grandeur's": null, - "grandeurs": null, - "grandfather": [["M", "Y", "D", "S", "G"]], - "grandfather's": null, - "grandfatherly": null, - "grandfathered": null, - "grandfathers": null, - "grandfathering": null, - "grandiloquence": [["S", "M"]], - "grandiloquences": null, - "grandiloquence's": null, - "grandiloquent": [["Y"]], - "grandiloquently": null, - "grandiose": [["Y", "P"]], - "grandiosely": null, - "grandioseness": null, - "grandiosity": [["M", "S"]], - "grandiosity's": null, - "grandiosities": null, - "grandkid": [["S", "M"]], - "grandkids": null, - "grandkid's": null, - "grandma": [["M", "S"]], - "grandma's": null, - "grandmas": null, - "grandmaster": [["M", "S"]], - "grandmaster's": null, - "grandmasters": null, - "grandmother": [["M", "Y", "S"]], - "grandmother's": null, - "grandmotherly": null, - "grandmothers": null, - "grandnephew": [["M", "S"]], - "grandnephew's": null, - "grandnephews": null, - "grandness": [["M", "S"]], - "grandness's": null, - "grandnesses": null, - "grandniece": [["S", "M"]], - "grandnieces": null, - "grandniece's": null, - "grandpa": [["M", "S"]], - "grandpa's": null, - "grandpas": null, - "grandparent": [["M", "S"]], - "grandparent's": null, - "grandparents": null, - "grandson": [["M", "S"]], - "grandson's": null, - "grandsons": null, - "grandstander": [["M"]], - "grandstander's": null, - "grandstand": [["S", "R", "D", "M", "G"]], - "grandstands": null, - "grandstanded": null, - "grandstand's": null, - "grandstanding": null, - "grand": [["T", "P", "S", "Y", "R"]], - "grandest": null, - "grands": null, - "grandly": null, - "grander": null, - "granduncle": [["M", "S"]], - "granduncle's": null, - "granduncles": null, - "Grange": [["M", "R"]], - "Grange's": null, - "Granger": [["M"]], - "grange": [["M", "S", "R"]], - "grange's": null, - "granges": null, - "granger": null, - "Granger's": null, - "granite": [["M", "S"]], - "granite's": null, - "granites": null, - "granitic": null, - "Gran": [["M"]], - "Gran's": null, - "Grannie": [["M"]], - "Grannie's": null, - "Granny": [["M"]], - "Granny's": null, - "granny": [["M", "S"]], - "granny's": null, - "grannies": null, - "granola": [["S"]], - "granolas": null, - "grantee": [["M", "S"]], - "grantee's": null, - "grantees": null, - "granter": [["M"]], - "granter's": null, - "Grantham": [["M"]], - "Grantham's": null, - "Granthem": [["M"]], - "Granthem's": null, - "Grantley": [["M"]], - "Grantley's": null, - "Grant": [["M"]], - "Grant's": null, - "grantor's": null, - "grant": [["S", "G", "Z", "M", "R", "D"]], - "grants": null, - "granting": null, - "granters": null, - "grant's": null, - "granted": null, - "grantsmanship": [["S"]], - "grantsmanships": null, - "granularity": [["S", "M"]], - "granularities": null, - "granularity's": null, - "granular": [["Y"]], - "granularly": null, - "granulate": [["S", "D", "X", "V", "G", "N"]], - "granulates": null, - "granulated": null, - "granulations": null, - "granulative": null, - "granulating": null, - "granulation": [["M"]], - "granulation's": null, - "granule": [["S", "M"]], - "granules": null, - "granule's": null, - "granulocytic": null, - "Granville": [["M"]], - "Granville's": null, - "grapefruit": [["S", "M"]], - "grapefruits": null, - "grapefruit's": null, - "grape": [["S", "D", "G", "M"]], - "grapes": null, - "graped": null, - "graping": null, - "grape's": null, - "grapeshot": [["M"]], - "grapeshot's": null, - "grapevine": [["M", "S"]], - "grapevine's": null, - "grapevines": null, - "grapheme": [["M"]], - "grapheme's": null, - "graph": [["G", "M", "D"]], - "graphing": null, - "graph's": null, - "graphed": null, - "graphical": [["Y"]], - "graphically": null, - "graphicness": [["M"]], - "graphicness's": null, - "graphic": [["P", "S"]], - "graphics": [["M"]], - "graphics's": null, - "graphite": [["S", "M"]], - "graphites": null, - "graphite's": null, - "graphologist": [["S", "M"]], - "graphologists": null, - "graphologist's": null, - "graphology": [["M", "S"]], - "graphology's": null, - "graphologies": null, - "graphs": null, - "grapnel": [["S", "M"]], - "grapnels": null, - "grapnel's": null, - "grapple": [["D", "R", "S", "G"]], - "grappled": null, - "grappler": [["M"]], - "grapples": null, - "grappling": [["M"]], - "grappler's": null, - "grappling's": null, - "grasper": [["M"]], - "grasper's": null, - "graspingness": [["M"]], - "graspingness's": null, - "grasping": [["P", "Y"]], - "graspingly": null, - "grasp": [["S", "R", "D", "B", "G"]], - "grasps": null, - "grasped": null, - "graspable": null, - "grass": [["G", "Z", "S", "D", "M"]], - "grassing": null, - "grassers": null, - "grasses": null, - "grassed": null, - "grass's": null, - "grasshopper": [["S", "M"]], - "grasshoppers": null, - "grasshopper's": null, - "grassland": [["M", "S"]], - "grassland's": null, - "grasslands": null, - "Grass": [["M"]], - "Grass's": null, - "grassroots": null, - "grassy": [["R", "T"]], - "grassier": null, - "grassiest": null, - "Grata": [["M"]], - "Grata's": null, - "gratefuller": null, - "gratefullest": null, - "gratefulness": [["U", "S", "M"]], - "ungratefulness": null, - "ungratefulnesses": null, - "ungratefulness's": null, - "gratefulnesses": null, - "gratefulness's": null, - "grateful": [["Y", "P", "U"]], - "gratefully": null, - "ungratefully": null, - "ungrateful": null, - "grater": [["M"]], - "grater's": null, - "grates": [["I"]], - "ingrates": null, - "grate": [["S", "R", "D", "J", "G", "Z"]], - "grated": null, - "gratings": null, - "grating": [["Y", "M"]], - "graters": null, - "Gratia": [["M"]], - "Gratia's": null, - "Gratiana": [["M"]], - "Gratiana's": null, - "graticule": [["M"]], - "graticule's": null, - "gratification": [["M"]], - "gratification's": null, - "gratified": [["U"]], - "ungratified": null, - "gratifying": [["Y"]], - "gratifyingly": null, - "gratify": [["N", "D", "S", "X", "G"]], - "gratifies": null, - "gratifications": null, - "gratingly": null, - "grating's": null, - "gratis": null, - "gratitude": [["I", "M", "S"]], - "ingratitude": null, - "ingratitude's": null, - "ingratitudes": null, - "gratitude's": null, - "gratitudes": null, - "gratuitousness": [["M", "S"]], - "gratuitousness's": null, - "gratuitousnesses": null, - "gratuitous": [["P", "Y"]], - "gratuitously": null, - "gratuity": [["S", "M"]], - "gratuities": null, - "gratuity's": null, - "gravamen": [["S", "M"]], - "gravamens": null, - "gravamen's": null, - "gravedigger": [["S", "M"]], - "gravediggers": null, - "gravedigger's": null, - "gravel": [["S", "G", "M", "Y", "D"]], - "gravels": null, - "graveling": null, - "gravel's": null, - "gravelly": null, - "graveled": null, - "graven": null, - "graveness": [["M", "S"]], - "graveness's": null, - "gravenesses": null, - "graver": [["M"]], - "graver's": null, - "graveside": [["S"]], - "gravesides": null, - "Graves": [["M"]], - "Graves's": null, - "grave": [["S", "R", "D", "P", "G", "M", "Z", "T", "Y"]], - "graves": null, - "graved": null, - "graving": null, - "grave's": null, - "gravers": null, - "gravest": null, - "gravely": null, - "gravestone": [["S", "M"]], - "gravestones": null, - "gravestone's": null, - "graveyard": [["M", "S"]], - "graveyard's": null, - "graveyards": null, - "gravidness": [["M"]], - "gravidness's": null, - "gravid": [["P", "Y"]], - "gravidly": null, - "gravimeter": [["S", "M"]], - "gravimeters": null, - "gravimeter's": null, - "gravimetric": null, - "gravitas": null, - "gravitate": [["X", "V", "G", "N", "S", "D"]], - "gravitations": null, - "gravitative": null, - "gravitating": null, - "gravitation": [["M"]], - "gravitates": null, - "gravitated": null, - "gravitational": [["Y"]], - "gravitationally": null, - "gravitation's": null, - "graviton": [["S", "M"]], - "gravitons": null, - "graviton's": null, - "gravity": [["M", "S"]], - "gravity's": null, - "gravities": null, - "gravy": [["S", "M"]], - "gravies": null, - "gravy's": null, - "graybeard": [["M", "S"]], - "graybeard's": null, - "graybeards": null, - "Grayce": [["M"]], - "Grayce's": null, - "grayish": null, - "Gray": [["M"]], - "Gray's": null, - "grayness": [["S"]], - "graynesses": null, - "gray": [["P", "Y", "R", "D", "G", "T", "S"]], - "grayly": null, - "grayer": null, - "grayed": null, - "graying": null, - "grayest": null, - "grays": null, - "Grayson": [["M"]], - "Grayson's": null, - "graze": [["G", "Z", "S", "R", "D"]], - "grazing": [["M"]], - "grazers": null, - "grazes": null, - "grazer": [["M"]], - "grazed": null, - "grazer's": null, - "Grazia": [["M"]], - "Grazia's": null, - "grazing's": null, - "grease": [["G", "M", "Z", "S", "R", "D"]], - "greasing": null, - "grease's": null, - "greasers": null, - "greases": null, - "greaser": [["M"]], - "greased": null, - "greasepaint": [["M", "S"]], - "greasepaint's": null, - "greasepaints": null, - "greaseproof": null, - "greaser's": null, - "greasily": null, - "greasiness": [["S", "M"]], - "greasinesses": null, - "greasiness's": null, - "greasy": [["P", "R", "T"]], - "greasier": null, - "greasiest": null, - "greatcoat": [["D", "M", "S"]], - "greatcoated": null, - "greatcoat's": null, - "greatcoats": null, - "greaten": [["D", "G"]], - "greatened": null, - "greatening": null, - "greathearted": null, - "greatness": [["M", "S"]], - "greatness's": null, - "greatnesses": null, - "great": [["S", "P", "T", "Y", "R", "N"]], - "greats": null, - "greatest": null, - "greatly": null, - "greater": null, - "grebe": [["M", "S"]], - "grebe's": null, - "grebes": null, - "Grecian": [["S"]], - "Grecians": null, - "Greece": [["M"]], - "Greece's": null, - "greed": [["C"]], - "degreed": null, - "greedily": null, - "greediness": [["S", "M"]], - "greedinesses": null, - "greediness's": null, - "greeds": null, - "greed's": null, - "greedy": [["R", "T", "P"]], - "greedier": null, - "greediest": null, - "Greek": [["S", "M"]], - "Greeks": null, - "Greek's": null, - "Greeley": [["M"]], - "Greeley's": null, - "greenback": [["M", "S"]], - "greenback's": null, - "greenbacks": null, - "greenbelt": [["S"]], - "greenbelts": null, - "Greenberg": [["M"]], - "Greenberg's": null, - "Greenblatt": [["M"]], - "Greenblatt's": null, - "Greenbriar": [["M"]], - "Greenbriar's": null, - "Greene": [["M"]], - "Greene's": null, - "greenery": [["M", "S"]], - "greenery's": null, - "greeneries": null, - "Greenfeld": [["M"]], - "Greenfeld's": null, - "greenfield": null, - "Greenfield": [["M"]], - "Greenfield's": null, - "greenfly": [["M"]], - "greenfly's": null, - "greengage": [["S", "M"]], - "greengages": null, - "greengage's": null, - "greengrocer": [["S", "M"]], - "greengrocers": null, - "greengrocer's": null, - "greengrocery": [["M"]], - "greengrocery's": null, - "greenhorn": [["S", "M"]], - "greenhorns": null, - "greenhorn's": null, - "greenhouse": [["S", "M"]], - "greenhouses": null, - "greenhouse's": null, - "greening": [["M"]], - "greening's": null, - "greenish": [["P"]], - "greenishness": null, - "Greenland": [["M"]], - "Greenland's": null, - "Green": [["M"]], - "Green's": null, - "greenmail": [["G", "D", "S"]], - "greenmailing": null, - "greenmailed": null, - "greenmails": null, - "greenness": [["M", "S"]], - "greenness's": null, - "greennesses": null, - "Greenpeace": [["M"]], - "Greenpeace's": null, - "greenroom": [["S", "M"]], - "greenrooms": null, - "greenroom's": null, - "Greensboro": [["M"]], - "Greensboro's": null, - "Greensleeves": [["M"]], - "Greensleeves's": null, - "Greensville": [["M"]], - "Greensville's": null, - "greensward": [["S", "M"]], - "greenswards": null, - "greensward's": null, - "green": [["S", "Y", "R", "D", "M", "P", "G", "T"]], - "greens": null, - "greenly": null, - "greener": null, - "greened": null, - "green's": null, - "greenest": null, - "Greentree": [["M"]], - "Greentree's": null, - "Greenville": [["M"]], - "Greenville's": null, - "Greenwich": [["M"]], - "Greenwich's": null, - "greenwood": [["M", "S"]], - "greenwood's": null, - "greenwoods": null, - "Greer": [["M"]], - "Greer's": null, - "greeter": [["M"]], - "greeter's": null, - "greeting": [["M"]], - "greeting's": null, - "greets": [["A"]], - "regreets": null, - "greet": [["S", "R", "D", "J", "G", "Z"]], - "greeted": null, - "greetings": null, - "greeters": null, - "gregariousness": [["M", "S"]], - "gregariousness's": null, - "gregariousnesses": null, - "gregarious": [["P", "Y"]], - "gregariously": null, - "Gregg": [["M"]], - "Gregg's": null, - "Greggory": [["M"]], - "Greggory's": null, - "Greg": [["M"]], - "Greg's": null, - "Gregoire": [["M"]], - "Gregoire's": null, - "Gregoor": [["M"]], - "Gregoor's": null, - "Gregorian": null, - "Gregorio": [["M"]], - "Gregorio's": null, - "Gregorius": [["M"]], - "Gregorius's": null, - "Gregor": [["M"]], - "Gregor's": null, - "Gregory": [["M"]], - "Gregory's": null, - "gremlin": [["S", "M"]], - "gremlins": null, - "gremlin's": null, - "Grenada": [["M"]], - "Grenada's": null, - "grenade": [["M", "S"]], - "grenade's": null, - "grenades": null, - "Grenadian": [["S"]], - "Grenadians": null, - "grenadier": [["S", "M"]], - "grenadiers": null, - "grenadier's": null, - "Grenadines": null, - "grenadine": [["S", "M"]], - "grenadines": null, - "grenadine's": null, - "Grendel": [["M"]], - "Grendel's": null, - "Grenier": [["M"]], - "Grenier's": null, - "Grenoble": [["M"]], - "Grenoble's": null, - "Grenville": [["M"]], - "Grenville's": null, - "Gresham": [["M"]], - "Gresham's": null, - "Gretal": [["M"]], - "Gretal's": null, - "Greta": [["M"]], - "Greta's": null, - "Gretchen": [["M"]], - "Gretchen's": null, - "Gretel": [["M"]], - "Gretel's": null, - "Grete": [["M"]], - "Grete's": null, - "Grethel": [["M"]], - "Grethel's": null, - "Gretna": [["M"]], - "Gretna's": null, - "Gretta": [["M"]], - "Gretta's": null, - "Gretzky": [["M"]], - "Gretzky's": null, - "grew": [["A"]], - "regrew": null, - "greybeard": [["M"]], - "greybeard's": null, - "greyhound": [["M", "S"]], - "greyhound's": null, - "greyhounds": null, - "Grey": [["M"]], - "Grey's": null, - "greyness": [["M"]], - "greyness's": null, - "gridded": null, - "griddlecake": [["S", "M"]], - "griddlecakes": null, - "griddlecake's": null, - "griddle": [["D", "S", "G", "M"]], - "griddled": null, - "griddles": null, - "griddling": null, - "griddle's": null, - "gridiron": [["G", "S", "M", "D"]], - "gridironing": null, - "gridirons": null, - "gridiron's": null, - "gridironed": null, - "gridlock": [["D", "S", "G"]], - "gridlocked": null, - "gridlocks": null, - "gridlocking": null, - "grids": [["A"]], - "regrids": null, - "grid": [["S", "G", "M"]], - "griding": null, - "grid's": null, - "grief": [["M", "S"]], - "grief's": null, - "griefs": null, - "Grieg": [["M"]], - "Grieg's": null, - "Grier": [["M"]], - "Grier's": null, - "grievance": [["S", "M"]], - "grievances": null, - "grievance's": null, - "griever": [["M"]], - "griever's": null, - "grieve": [["S", "R", "D", "G", "Z"]], - "grieves": null, - "grieved": null, - "grieving": [["Y"]], - "grievers": null, - "grievingly": null, - "grievousness": [["S", "M"]], - "grievousnesses": null, - "grievousness's": null, - "grievous": [["P", "Y"]], - "grievously": null, - "Griffie": [["M"]], - "Griffie's": null, - "Griffin": [["M"]], - "Griffin's": null, - "griffin": [["S", "M"]], - "griffins": null, - "griffin's": null, - "Griffith": [["M"]], - "Griffith's": null, - "Griff": [["M"]], - "Griff's": null, - "griffon's": null, - "Griffy": [["M"]], - "Griffy's": null, - "griller": [["M"]], - "griller's": null, - "grille": [["S", "M"]], - "grilles": null, - "grille's": null, - "grill": [["R", "D", "G", "S"]], - "grilled": null, - "grilling": null, - "grills": null, - "grillwork": [["M"]], - "grillwork's": null, - "grimace": [["D", "R", "S", "G", "M"]], - "grimaced": null, - "grimacer": [["M"]], - "grimaces": null, - "grimacing": null, - "grimace's": null, - "grimacer's": null, - "Grimaldi": [["M"]], - "Grimaldi's": null, - "grime": [["M", "S"]], - "grime's": null, - "grimes": null, - "Grimes": null, - "griminess": [["M", "S"]], - "griminess's": null, - "griminesses": null, - "grimmer": null, - "grimmest": null, - "Grimm": [["M"]], - "Grimm's": null, - "grimness": [["M", "S"]], - "grimness's": null, - "grimnesses": null, - "grim": [["P", "G", "Y", "D"]], - "griming": null, - "grimly": null, - "grimed": null, - "grimy": [["T", "P", "R"]], - "grimiest": null, - "grimier": null, - "Grinch": [["M"]], - "Grinch's": null, - "grind": [["A", "S", "G"]], - "regrind": null, - "regrinds": null, - "regrinding": null, - "grinds": null, - "grinding": [["S", "Y"]], - "grinder": [["M", "S"]], - "grinder's": null, - "grinders": null, - "grindings": null, - "grindingly": null, - "grindstone": [["S", "M"]], - "grindstones": null, - "grindstone's": null, - "gringo": [["S", "M"]], - "gringos": null, - "gringo's": null, - "grinned": null, - "grinner": [["M"]], - "grinner's": null, - "grinning": [["Y"]], - "grinningly": null, - "grin": [["S"]], - "grins": null, - "griper": [["M"]], - "griper's": null, - "gripe": [["S"]], - "gripes": null, - "grippe": [["G", "M", "Z", "S", "R", "D"]], - "gripping": [["Y"]], - "grippe's": null, - "grippers": null, - "grippes": null, - "gripper": [["M"]], - "gripped": null, - "gripper's": null, - "grippingly": null, - "grip": [["S", "G", "Z", "M", "R", "D"]], - "grips": null, - "griping": null, - "gripers": null, - "grip's": null, - "griped": null, - "Griselda": [["M"]], - "Griselda's": null, - "grisliness": [["S", "M"]], - "grislinesses": null, - "grisliness's": null, - "grisly": [["R", "P", "T"]], - "grislier": null, - "grisliest": null, - "Gris": [["M"]], - "Gris's": null, - "Grissel": [["M"]], - "Grissel's": null, - "gristle": [["S", "M"]], - "gristles": null, - "gristle's": null, - "gristliness": [["M"]], - "gristliness's": null, - "gristly": [["T", "R", "P"]], - "gristliest": null, - "gristlier": null, - "gristmill": [["M", "S"]], - "gristmill's": null, - "gristmills": null, - "grist": [["M", "Y", "S"]], - "grist's": null, - "grists": null, - "Griswold": [["M"]], - "Griswold's": null, - "grit": [["M", "S"]], - "grit's": null, - "grits": null, - "gritted": null, - "gritter": [["M", "S"]], - "gritter's": null, - "gritters": null, - "grittiness": [["S", "M"]], - "grittinesses": null, - "grittiness's": null, - "gritting": null, - "gritty": [["P", "R", "T"]], - "grittier": null, - "grittiest": null, - "Griz": [["M"]], - "Griz's": null, - "grizzle": [["D", "S", "G"]], - "grizzled": null, - "grizzles": null, - "grizzling": [["M"]], - "grizzling's": null, - "grizzly": [["T", "R", "S"]], - "grizzliest": null, - "grizzlier": null, - "grizzlies": null, - "Gr": [["M"]], - "Gr's": null, - "groaner": [["M"]], - "groaner's": null, - "groan": [["G", "Z", "S", "R", "D", "M"]], - "groaning": null, - "groaners": null, - "groans": null, - "groaned": null, - "groan's": null, - "groat": [["S", "M"]], - "groats": null, - "groat's": null, - "grocer": [["M", "S"]], - "grocer's": null, - "grocers": null, - "grocery": [["M", "S"]], - "grocery's": null, - "groceries": null, - "groggily": null, - "grogginess": [["S", "M"]], - "grogginesses": null, - "grogginess's": null, - "groggy": [["R", "P", "T"]], - "groggier": null, - "groggiest": null, - "grog": [["M", "S"]], - "grog's": null, - "grogs": null, - "groin": [["M", "G", "S", "D"]], - "groin's": null, - "groining": null, - "groins": null, - "groined": null, - "grokked": null, - "grokking": null, - "grok": [["S"]], - "groks": null, - "grommet": [["G", "M", "D", "S"]], - "grommeting": null, - "grommet's": null, - "grommeted": null, - "grommets": null, - "Gromyko": [["M"]], - "Gromyko's": null, - "groofs": null, - "groomer": [["M"]], - "groomer's": null, - "groom": [["G", "Z", "S", "M", "R", "D"]], - "grooming": null, - "groomers": null, - "grooms": null, - "groom's": null, - "groomed": null, - "groomsman": [["M"]], - "groomsman's": null, - "groomsmen": null, - "Groot": [["M"]], - "Groot's": null, - "groover": [["M"]], - "groover's": null, - "groove": [["S", "R", "D", "G", "M"]], - "grooves": null, - "grooved": null, - "grooving": null, - "groove's": null, - "groovy": [["T", "R"]], - "grooviest": null, - "groovier": null, - "groper": [["M"]], - "groper's": null, - "grope": [["S", "R", "D", "J", "G", "Z"]], - "gropes": null, - "groped": null, - "gropings": null, - "groping": null, - "gropers": null, - "Gropius": [["M"]], - "Gropius's": null, - "grosbeak": [["S", "M"]], - "grosbeaks": null, - "grosbeak's": null, - "grosgrain": [["M", "S"]], - "grosgrain's": null, - "grosgrains": null, - "Gross": null, - "Grosset": [["M"]], - "Grosset's": null, - "gross": [["G", "T", "Y", "S", "R", "D", "P"]], - "grossing": null, - "grossest": null, - "grossly": null, - "grosses": null, - "grosser": null, - "grossed": null, - "grossness": [["M", "S"]], - "Grossman": [["M"]], - "Grossman's": null, - "grossness's": null, - "grossnesses": null, - "Grosvenor": [["M"]], - "Grosvenor's": null, - "Grosz": [["M"]], - "Grosz's": null, - "grotesqueness": [["M", "S"]], - "grotesqueness's": null, - "grotesquenesses": null, - "grotesque": [["P", "S", "Y"]], - "grotesques": null, - "grotesquely": null, - "Grotius": [["M"]], - "Grotius's": null, - "Groton": [["M"]], - "Groton's": null, - "grottoes": null, - "grotto": [["M"]], - "grotto's": null, - "grouch": [["G", "D", "S"]], - "grouching": null, - "grouched": null, - "grouches": null, - "grouchily": null, - "grouchiness": [["M", "S"]], - "grouchiness's": null, - "grouchinesses": null, - "grouchy": [["R", "P", "T"]], - "grouchier": null, - "grouchiest": null, - "groundbreaking": [["S"]], - "groundbreakings": null, - "grounded": [["U"]], - "ungrounded": null, - "grounder": [["M"]], - "grounder's": null, - "groundhog": [["S", "M"]], - "groundhogs": null, - "groundhog's": null, - "ground": [["J", "G", "Z", "M", "D", "R", "S"]], - "groundings": null, - "grounding": null, - "grounders": null, - "ground's": null, - "grounds": null, - "groundlessness": [["M"]], - "groundlessness's": null, - "groundless": [["Y", "P"]], - "groundlessly": null, - "groundnut": [["M", "S"]], - "groundnut's": null, - "groundnuts": null, - "groundsheet": [["M"]], - "groundsheet's": null, - "groundskeepers": null, - "groundsman": [["M"]], - "groundsman's": null, - "groundswell": [["S"]], - "groundswells": null, - "groundwater": [["S"]], - "groundwaters": null, - "groundwork": [["S", "M"]], - "groundworks": null, - "groundwork's": null, - "grouped": [["A"]], - "regrouped": null, - "grouper": [["M"]], - "grouper's": null, - "groupie": [["M", "S"]], - "groupie's": null, - "groupies": null, - "grouping": [["M"]], - "grouping's": null, - "groups": [["A"]], - "regroups": null, - "group": [["Z", "J", "S", "M", "R", "D", "G"]], - "groupers": null, - "groupings": null, - "group's": null, - "grouse": [["G", "M", "Z", "S", "R", "D"]], - "grousing": null, - "grouse's": null, - "grousers": null, - "grouses": null, - "grouser": [["M"]], - "groused": null, - "grouser's": null, - "grouter": [["M"]], - "grouter's": null, - "grout": [["G", "S", "M", "R", "D"]], - "grouting": null, - "grouts": null, - "grout's": null, - "grouted": null, - "groveler": [["M"]], - "groveler's": null, - "grovelike": null, - "groveling": [["Y"]], - "grovelingly": null, - "grovel": [["S", "D", "R", "G", "Z"]], - "grovels": null, - "groveled": null, - "grovelers": null, - "Grover": [["M"]], - "Grover's": null, - "Grove": [["R", "M"]], - "Grove's": null, - "grove": [["S", "R", "M", "Z"]], - "groves": null, - "grover": null, - "grove's": null, - "grovers": null, - "grower": [["M"]], - "grower's": null, - "grow": [["G", "Z", "Y", "R", "H", "S"]], - "growing": [["I"]], - "growers": null, - "growly": [["R", "P"]], - "growth": [["I", "M", "A"]], - "grows": [["A"]], - "ingrowing": null, - "growingly": null, - "growler": [["M"]], - "growler's": null, - "growling": [["Y"]], - "growlingly": null, - "growl": [["R", "D", "G", "Z", "S"]], - "growled": null, - "growlers": null, - "growls": null, - "growlier": null, - "growliness": null, - "grown": [["I", "A"]], - "ingrown": [["P"]], - "regrown": null, - "grownup": [["M", "S"]], - "grownup's": null, - "grownups": null, - "regrows": null, - "ingrowth": null, - "ingrowth's": null, - "growth's": null, - "regrowth's": null, - "regrowth": null, - "growths": [["I", "A"]], - "ingrowths": null, - "regrowths": null, - "grubbed": null, - "grubber": [["S", "M"]], - "grubbers": null, - "grubber's": null, - "grubbily": null, - "grubbiness": [["S", "M"]], - "grubbinesses": null, - "grubbiness's": null, - "grubbing": null, - "grubby": [["R", "T", "P"]], - "grubbier": null, - "grubbiest": null, - "grub": [["M", "S"]], - "grub's": null, - "grubs": null, - "grubstake": [["M", "S", "D", "G"]], - "grubstake's": null, - "grubstakes": null, - "grubstaked": null, - "grubstaking": null, - "grudge": [["G", "M", "S", "R", "D", "J"]], - "grudging": [["Y"]], - "grudge's": null, - "grudges": null, - "grudger": [["M"]], - "grudged": null, - "grudgings": null, - "grudger's": null, - "grudgingly": null, - "grueling": [["Y"]], - "gruelingly": null, - "gruel": [["M", "D", "G", "J", "S"]], - "gruel's": null, - "grueled": null, - "gruelings": null, - "gruels": null, - "gruesomeness": [["S", "M"]], - "gruesomenesses": null, - "gruesomeness's": null, - "gruesome": [["R", "Y", "T", "P"]], - "gruesomer": null, - "gruesomely": null, - "gruesomest": null, - "gruffness": [["M", "S"]], - "gruffness's": null, - "gruffnesses": null, - "gruff": [["P", "S", "G", "T", "Y", "R", "D"]], - "gruffs": null, - "gruffing": null, - "gruffest": null, - "gruffly": null, - "gruffer": null, - "gruffed": null, - "grumble": [["G", "Z", "J", "D", "S", "R"]], - "grumbling": [["Y"]], - "grumblers": null, - "grumblings": null, - "grumbled": null, - "grumbles": null, - "grumbler": [["M"]], - "grumbler's": null, - "grumblingly": null, - "Grumman": [["M"]], - "Grumman's": null, - "grumpily": null, - "grumpiness": [["M", "S"]], - "grumpiness's": null, - "grumpinesses": null, - "grump": [["M", "D", "G", "S"]], - "grump's": null, - "grumped": null, - "grumping": null, - "grumps": null, - "grumpy": [["T", "P", "R"]], - "grumpiest": null, - "grumpier": null, - "Grundy": [["M"]], - "Grundy's": null, - "Gr�newald": [["M"]], - "Gr�newald's": null, - "grunge": [["S"]], - "grunges": null, - "grungy": [["R", "T"]], - "grungier": null, - "grungiest": null, - "grunion": [["S", "M"]], - "grunions": null, - "grunion's": null, - "grunter": [["M"]], - "grunter's": null, - "grunt": [["S", "G", "R", "D"]], - "grunts": null, - "grunting": null, - "grunted": null, - "Grusky": [["M"]], - "Grusky's": null, - "Grus": [["M"]], - "Grus's": null, - "Gruy�re": null, - "Gruyeres": null, - "gryphon's": null, - "g's": null, - "G's": null, - "gs": [["A"]], - "regs": null, - "GSA": null, - "gt": null, - "GU": null, - "guacamole": [["M", "S"]], - "guacamole's": null, - "guacamoles": null, - "Guadalajara": [["M"]], - "Guadalajara's": null, - "Guadalcanal": [["M"]], - "Guadalcanal's": null, - "Guadalquivir": [["M"]], - "Guadalquivir's": null, - "Guadalupe": [["M"]], - "Guadalupe's": null, - "Guadeloupe": [["M"]], - "Guadeloupe's": null, - "Guallatiri": [["M"]], - "Guallatiri's": null, - "Gualterio": [["M"]], - "Gualterio's": null, - "Guamanian": [["S", "M"]], - "Guamanians": null, - "Guamanian's": null, - "Guam": [["M"]], - "Guam's": null, - "Guangzhou": null, - "guanine": [["M", "S"]], - "guanine's": null, - "guanines": null, - "guano": [["M", "S"]], - "guano's": null, - "guanos": null, - "Guantanamo": [["M"]], - "Guantanamo's": null, - "Guarani": [["M"]], - "Guarani's": null, - "guarani": [["S", "M"]], - "guaranis": null, - "guarani's": null, - "guaranteeing": null, - "guarantee": [["R", "S", "D", "Z", "M"]], - "guaranteer": null, - "guarantees": null, - "guaranteed": null, - "guaranteers": null, - "guarantee's": null, - "guarantor": [["S", "M"]], - "guarantors": null, - "guarantor's": null, - "guaranty": [["M", "S", "D", "G"]], - "guaranty's": null, - "guaranties": null, - "guarantied": null, - "guarantying": null, - "guardedness": [["U", "M"]], - "unguardedness": null, - "unguardedness's": null, - "guardedness's": null, - "guarded": [["U", "Y", "P"]], - "unguarded": null, - "unguardedly": null, - "guardedly": null, - "guarder": [["M"]], - "guarder's": null, - "guardhouse": [["S", "M"]], - "guardhouses": null, - "guardhouse's": null, - "Guardia": [["M"]], - "Guardia's": null, - "guardianship": [["M", "S"]], - "guardianship's": null, - "guardianships": null, - "guardian": [["S", "M"]], - "guardians": null, - "guardian's": null, - "guardrail": [["S", "M"]], - "guardrails": null, - "guardrail's": null, - "guard": [["R", "D", "S", "G", "Z"]], - "guards": null, - "guarding": null, - "guarders": null, - "guardroom": [["S", "M"]], - "guardrooms": null, - "guardroom's": null, - "guardsman": [["M"]], - "guardsman's": null, - "guardsmen": null, - "Guarnieri": [["M"]], - "Guarnieri's": null, - "Guatemala": [["M"]], - "Guatemala's": null, - "Guatemalan": [["S"]], - "Guatemalans": null, - "guava": [["S", "M"]], - "guavas": null, - "guava's": null, - "Guayaquil": [["M"]], - "Guayaquil's": null, - "gubernatorial": null, - "Gucci": [["M"]], - "Gucci's": null, - "gudgeon": [["M"]], - "gudgeon's": null, - "Guelph": [["M"]], - "Guelph's": null, - "Guendolen": [["M"]], - "Guendolen's": null, - "Guenevere": [["M"]], - "Guenevere's": null, - "Guenna": [["M"]], - "Guenna's": null, - "Guenther": [["M"]], - "Guenther's": null, - "guernsey": [["S"]], - "guernseys": null, - "Guernsey": [["S", "M"]], - "Guernseys": null, - "Guernsey's": null, - "Guerra": [["M"]], - "Guerra's": null, - "Guerrero": [["M"]], - "Guerrero's": null, - "guerrilla": [["M", "S"]], - "guerrilla's": null, - "guerrillas": null, - "guessable": [["U"]], - "unguessable": null, - "guess": [["B", "G", "Z", "R", "S", "D"]], - "guessing": null, - "guessers": null, - "guesser": [["M"]], - "guesses": null, - "guessed": [["U"]], - "unguessed": null, - "guesser's": null, - "guesstimate": [["D", "S", "M", "G"]], - "guesstimated": null, - "guesstimates": null, - "guesstimate's": null, - "guesstimating": null, - "guesswork": [["M", "S"]], - "guesswork's": null, - "guessworks": null, - "guest": [["S", "G", "M", "D"]], - "guests": null, - "guesting": null, - "guest's": null, - "guested": null, - "Guevara": [["M"]], - "Guevara's": null, - "guffaw": [["G", "S", "D", "M"]], - "guffawing": null, - "guffaws": null, - "guffawed": null, - "guffaw's": null, - "guff": [["S", "M"]], - "guffs": null, - "guff's": null, - "Guggenheim": [["M"]], - "Guggenheim's": null, - "Guglielma": [["M"]], - "Guglielma's": null, - "Guglielmo": [["M"]], - "Guglielmo's": null, - "Guhleman": [["M"]], - "Guhleman's": null, - "GUI": null, - "Guiana": [["M"]], - "Guiana's": null, - "guidance": [["M", "S"]], - "guidance's": null, - "guidances": null, - "guidebook": [["S", "M"]], - "guidebooks": null, - "guidebook's": null, - "guided": [["U"]], - "unguided": null, - "guide": [["G", "Z", "S", "R", "D"]], - "guiding": null, - "guiders": null, - "guides": null, - "guider": [["M"]], - "guideline": [["S", "M"]], - "guidelines": null, - "guideline's": null, - "guidepost": [["M", "S"]], - "guidepost's": null, - "guideposts": null, - "guider's": null, - "Guido": [["M"]], - "Guido's": null, - "Guilbert": [["M"]], - "Guilbert's": null, - "guilder": [["M"]], - "guilder's": null, - "guildhall": [["S", "M"]], - "guildhalls": null, - "guildhall's": null, - "guild": [["S", "Z", "M", "R"]], - "guilds": null, - "guilders": null, - "guild's": null, - "guileful": null, - "guilelessness": [["M", "S"]], - "guilelessness's": null, - "guilelessnesses": null, - "guileless": [["Y", "P"]], - "guilelessly": null, - "guile": [["S", "D", "G", "M"]], - "guiles": null, - "guiled": null, - "guiling": null, - "guile's": null, - "Guillaume": [["M"]], - "Guillaume's": null, - "Guillema": [["M"]], - "Guillema's": null, - "Guillemette": [["M"]], - "Guillemette's": null, - "guillemot": [["M", "S"]], - "guillemot's": null, - "guillemots": null, - "Guillermo": [["M"]], - "Guillermo's": null, - "guillotine": [["S", "D", "G", "M"]], - "guillotines": null, - "guillotined": null, - "guillotining": null, - "guillotine's": null, - "guiltily": null, - "guiltiness": [["M", "S"]], - "guiltiness's": null, - "guiltinesses": null, - "guiltlessness": [["M"]], - "guiltlessness's": null, - "guiltless": [["Y", "P"]], - "guiltlessly": null, - "guilt": [["S", "M"]], - "guilts": null, - "guilt's": null, - "guilty": [["P", "T", "R"]], - "guiltiest": null, - "guiltier": null, - "Gui": [["M"]], - "Gui's": null, - "Guinea": [["M"]], - "Guinea's": null, - "Guinean": [["S"]], - "Guineans": null, - "guinea": [["S", "M"]], - "guineas": null, - "guinea's": null, - "Guinevere": [["M"]], - "Guinevere's": null, - "Guinna": [["M"]], - "Guinna's": null, - "Guinness": [["M"]], - "Guinness's": null, - "guise's": null, - "guise": [["S", "D", "E", "G"]], - "guises": null, - "disguises": null, - "guised": null, - "disguising": null, - "guising": null, - "guitarist": [["S", "M"]], - "guitarists": null, - "guitarist's": null, - "guitar": [["S", "M"]], - "guitars": null, - "guitar's": null, - "Guiyang": null, - "Guizot": [["M"]], - "Guizot's": null, - "Gujarati": [["M"]], - "Gujarati's": null, - "Gujarat": [["M"]], - "Gujarat's": null, - "Gujranwala": [["M"]], - "Gujranwala's": null, - "gulag": [["S"]], - "gulags": null, - "gulch": [["M", "S"]], - "gulch's": null, - "gulches": null, - "gulden": [["M", "S"]], - "gulden's": null, - "guldens": null, - "gulf": [["D", "M", "G", "S"]], - "gulfed": null, - "gulf's": null, - "gulfing": null, - "gulfs": null, - "Gullah": [["M"]], - "Gullah's": null, - "gullet": [["M", "S"]], - "gullet's": null, - "gullets": null, - "gulley's": null, - "gullibility": [["M", "S"]], - "gullibility's": null, - "gullibilities": null, - "gullible": null, - "Gulliver": [["M"]], - "Gulliver's": null, - "gull": [["M", "D", "S", "G"]], - "gull's": null, - "gulled": null, - "gulls": null, - "gulling": null, - "gully": [["S", "D", "M", "G"]], - "gullies": null, - "gullied": null, - "gully's": null, - "gullying": null, - "gulp": [["R", "D", "G", "Z", "S"]], - "gulper": null, - "gulped": null, - "gulping": null, - "gulpers": null, - "gulps": null, - "gumboil": [["M", "S"]], - "gumboil's": null, - "gumboils": null, - "gumbo": [["M", "S"]], - "gumbo's": null, - "gumbos": null, - "gumboots": null, - "gumdrop": [["S", "M"]], - "gumdrops": null, - "gumdrop's": null, - "gummed": null, - "gumminess": [["M"]], - "gumminess's": null, - "gumming": [["C"]], - "degumming": null, - "gum": [["M", "S"]], - "gum's": null, - "gums": null, - "gummy": [["R", "T", "P"]], - "gummier": null, - "gummiest": null, - "gumption": [["S", "M"]], - "gumptions": null, - "gumption's": null, - "gumshoeing": null, - "gumshoe": [["S", "D", "M"]], - "gumshoes": null, - "gumshoed": null, - "gumshoe's": null, - "gumtree": [["M", "S"]], - "gumtree's": null, - "gumtrees": null, - "Gunar": [["M"]], - "Gunar's": null, - "gunboat": [["M", "S"]], - "gunboat's": null, - "gunboats": null, - "Gunderson": [["M"]], - "Gunderson's": null, - "gunfighter": [["M"]], - "gunfighter's": null, - "gunfight": [["S", "R", "M", "G", "Z"]], - "gunfights": null, - "gunfight's": null, - "gunfighting": null, - "gunfighters": null, - "gunfire": [["S", "M"]], - "gunfires": null, - "gunfire's": null, - "gunflint": [["M"]], - "gunflint's": null, - "gunfought": null, - "Gunilla": [["M"]], - "Gunilla's": null, - "gunk": [["S", "M"]], - "gunks": null, - "gunk's": null, - "gunky": [["R", "T"]], - "gunkier": null, - "gunkiest": null, - "Gun": [["M"]], - "Gun's": null, - "gunman": [["M"]], - "gunman's": null, - "gunmen": null, - "gunmetal": [["M", "S"]], - "gunmetal's": null, - "gunmetals": null, - "gun": [["M", "S"]], - "gun's": null, - "guns": null, - "Gunnar": [["M"]], - "Gunnar's": null, - "gunned": null, - "gunnel's": null, - "Gunner": [["M"]], - "Gunner's": null, - "gunner": [["S", "M"]], - "gunners": null, - "gunner's": null, - "gunnery": [["M", "S"]], - "gunnery's": null, - "gunneries": null, - "gunning": [["M"]], - "gunning's": null, - "gunnysack": [["S", "M"]], - "gunnysacks": null, - "gunnysack's": null, - "gunny": [["S", "M"]], - "gunnies": null, - "gunny's": null, - "gunpoint": [["M", "S"]], - "gunpoint's": null, - "gunpoints": null, - "gunpowder": [["S", "M"]], - "gunpowders": null, - "gunpowder's": null, - "gunrunner": [["M", "S"]], - "gunrunner's": null, - "gunrunners": null, - "gunrunning": [["M", "S"]], - "gunrunning's": null, - "gunrunnings": null, - "gunship": [["S"]], - "gunships": null, - "gunshot": [["S", "M"]], - "gunshots": null, - "gunshot's": null, - "gunslinger": [["M"]], - "gunslinger's": null, - "gunsling": [["G", "Z", "R"]], - "gunslinging": null, - "gunslingers": null, - "gunsmith": [["M"]], - "gunsmith's": null, - "gunsmiths": null, - "Guntar": [["M"]], - "Guntar's": null, - "Gunter": [["M"]], - "Gunter's": null, - "Gunther": [["M"]], - "Gunther's": null, - "gunwale": [["M", "S"]], - "gunwale's": null, - "gunwales": null, - "Guofeng": [["M"]], - "Guofeng's": null, - "guppy": [["S", "M"]], - "guppies": null, - "guppy's": null, - "Gupta": [["M"]], - "Gupta's": null, - "gurgle": [["S", "D", "G"]], - "gurgles": null, - "gurgled": null, - "gurgling": null, - "Gurkha": [["M"]], - "Gurkha's": null, - "gurney": [["S"]], - "gurneys": null, - "guru": [["M", "S"]], - "guru's": null, - "gurus": null, - "Gusella": [["M"]], - "Gusella's": null, - "gusher": [["M"]], - "gusher's": null, - "gush": [["S", "R", "D", "G", "Z"]], - "gushes": null, - "gushed": null, - "gushing": null, - "gushers": null, - "gushy": [["T", "R"]], - "gushiest": null, - "gushier": null, - "Gus": [["M"]], - "Gus's": null, - "Guss": null, - "gusset": [["M", "D", "S", "G"]], - "gusset's": null, - "gusseted": null, - "gussets": null, - "gusseting": null, - "Gussie": [["M"]], - "Gussie's": null, - "Gussi": [["M"]], - "Gussi's": null, - "gussy": [["G", "S", "D"]], - "gussying": null, - "gussies": null, - "gussied": null, - "Gussy": [["M"]], - "Gussy's": null, - "Gustaf": [["M"]], - "Gustaf's": null, - "Gustafson": [["M"]], - "Gustafson's": null, - "Gusta": [["M"]], - "Gusta's": null, - "gustatory": null, - "Gustave": [["M"]], - "Gustave's": null, - "Gustav": [["M"]], - "Gustav's": null, - "Gustavo": [["M"]], - "Gustavo's": null, - "Gustavus": [["M"]], - "Gustavus's": null, - "gusted": [["E"]], - "Gustie": [["M"]], - "Gustie's": null, - "gustily": null, - "Gusti": [["M"]], - "Gusti's": null, - "gustiness": [["M"]], - "gustiness's": null, - "gusting": [["E"]], - "gust": [["M", "D", "G", "S"]], - "gust's": null, - "gusts": [["E"]], - "gustoes": null, - "gusto": [["M"]], - "gusto's": null, - "disgusts": null, - "Gusty": [["M"]], - "Gusty's": null, - "gusty": [["R", "P", "T"]], - "gustier": null, - "gustiest": null, - "Gutenberg": [["M"]], - "Gutenberg's": null, - "Guthrey": [["M"]], - "Guthrey's": null, - "Guthrie": [["M"]], - "Guthrie's": null, - "Guthry": [["M"]], - "Guthry's": null, - "Gutierrez": [["M"]], - "Gutierrez's": null, - "gutlessness": [["S"]], - "gutlessnesses": null, - "gutless": [["P"]], - "gutser": [["M"]], - "gutser's": null, - "gutsiness": [["M"]], - "gutsiness's": null, - "gut": [["S", "M"]], - "guts": [["R"]], - "gut's": null, - "gutsy": [["P", "T", "R"]], - "gutsiest": null, - "gutsier": null, - "gutted": null, - "gutter": [["G", "S", "D", "M"]], - "guttering": [["M"]], - "gutters": null, - "guttered": null, - "gutter's": null, - "guttering's": null, - "guttersnipe": [["M"]], - "guttersnipe's": null, - "gutting": null, - "gutturalness": [["M"]], - "gutturalness's": null, - "guttural": [["S", "P", "Y"]], - "gutturals": null, - "gutturally": null, - "gutty": [["R", "S", "M", "T"]], - "guttier": null, - "gutties": null, - "gutty's": null, - "guttiest": null, - "Guyana": [["M"]], - "Guyana's": null, - "Guyanese": null, - "Guy": [["M"]], - "Guy's": null, - "guy": [["M", "D", "R", "Z", "G", "S"]], - "guy's": null, - "guyed": null, - "guyer": null, - "guyers": null, - "guying": null, - "guys": null, - "Guzman": [["M"]], - "Guzman's": null, - "guzzle": [["G", "Z", "R", "S", "D"]], - "guzzling": null, - "guzzlers": null, - "guzzler": [["M"]], - "guzzles": null, - "guzzled": null, - "guzzler's": null, - "g": [["V", "B", "X"]], - "gens": null, - "Gwalior": [["M"]], - "Gwalior's": null, - "Gwendolen": [["M"]], - "Gwendolen's": null, - "Gwendoline": [["M"]], - "Gwendoline's": null, - "Gwendolin": [["M"]], - "Gwendolin's": null, - "Gwendolyn": [["M"]], - "Gwendolyn's": null, - "Gweneth": [["M"]], - "Gweneth's": null, - "Gwenette": [["M"]], - "Gwenette's": null, - "Gwen": [["M"]], - "Gwen's": null, - "Gwenneth": [["M"]], - "Gwenneth's": null, - "Gwennie": [["M"]], - "Gwennie's": null, - "Gwenni": [["M"]], - "Gwenni's": null, - "Gwenny": [["M"]], - "Gwenny's": null, - "Gwenora": [["M"]], - "Gwenora's": null, - "Gwenore": [["M"]], - "Gwenore's": null, - "Gwyneth": [["M"]], - "Gwyneth's": null, - "Gwyn": [["M"]], - "Gwyn's": null, - "Gwynne": [["M"]], - "Gwynne's": null, - "gymkhana": [["S", "M"]], - "gymkhanas": null, - "gymkhana's": null, - "gym": [["M", "S"]], - "gym's": null, - "gyms": null, - "gymnasia's": null, - "gymnasium": [["S", "M"]], - "gymnasiums": null, - "gymnasium's": null, - "gymnastically": null, - "gymnastic": [["S"]], - "gymnastics": [["M"]], - "gymnastics's": null, - "gymnast": [["S", "M"]], - "gymnasts": null, - "gymnast's": null, - "gymnosperm": [["S", "M"]], - "gymnosperms": null, - "gymnosperm's": null, - "gynecologic": null, - "gynecological": [["M", "S"]], - "gynecological's": null, - "gynecologicals": null, - "gynecologist": [["S", "M"]], - "gynecologists": null, - "gynecologist's": null, - "gynecology": [["M", "S"]], - "gynecology's": null, - "gynecologies": null, - "gypped": null, - "gypper": [["S"]], - "gyppers": null, - "gypping": null, - "gyp": [["S"]], - "gyps": null, - "gypsite": null, - "gypster": [["S"]], - "gypsters": null, - "gypsum": [["M", "S"]], - "gypsum's": null, - "gypsums": null, - "gypsy": [["S", "D", "M", "G"]], - "gypsies": null, - "gypsied": null, - "gypsy's": null, - "gypsying": null, - "Gypsy": [["S", "M"]], - "Gypsies": null, - "Gypsy's": null, - "gyrate": [["X", "N", "G", "S", "D"]], - "gyrations": null, - "gyration": [["M"]], - "gyrating": null, - "gyrates": null, - "gyrated": null, - "gyration's": null, - "gyrator": [["M", "S"]], - "gyrator's": null, - "gyrators": null, - "gyrfalcon": [["S", "M"]], - "gyrfalcons": null, - "gyrfalcon's": null, - "gyrocompass": [["M"]], - "gyrocompass's": null, - "gyro": [["M", "S"]], - "gyro's": null, - "gyros": null, - "gyroscope": [["S", "M"]], - "gyroscopes": null, - "gyroscope's": null, - "gyroscopic": null, - "gyve": [["G", "D", "S"]], - "gyving": null, - "gyved": null, - "gyves": null, - "H": null, - "Haag": [["M"]], - "Haag's": null, - "Haas": [["M"]], - "Haas's": null, - "Habakkuk": [["M"]], - "Habakkuk's": null, - "habeas": null, - "haberdasher": [["S", "M"]], - "haberdashers": null, - "haberdasher's": null, - "haberdashery": [["S", "M"]], - "haberdasheries": null, - "haberdashery's": null, - "Haber": [["M"]], - "Haber's": null, - "Haberman": [["M"]], - "Haberman's": null, - "Habib": [["M"]], - "Habib's": null, - "habiliment": [["S", "M"]], - "habiliments": null, - "habiliment's": null, - "habitability": [["M", "S"]], - "habitability's": null, - "habitabilities": null, - "habitableness": [["M"]], - "habitableness's": null, - "habitable": [["P"]], - "habitant": [["I", "S", "M"]], - "inhabitant": null, - "inhabitants": null, - "inhabitant's": null, - "habitants": null, - "habitant's": null, - "habitation": [["M", "I"]], - "habitation's": null, - "inhabitation's": null, - "inhabitation": null, - "habitations": null, - "habitat": [["M", "S"]], - "habitat's": null, - "habitats": null, - "habit": [["I", "B", "D", "G", "S"]], - "inhabit": [["R"]], - "inhabitable": [["U"]], - "inhabited": [["U"]], - "inhabiting": null, - "inhabits": null, - "habited": null, - "habiting": null, - "habits": null, - "habit's": null, - "habitualness": [["S", "M"]], - "habitualnesses": null, - "habitualness's": null, - "habitual": [["S", "Y", "P"]], - "habituals": null, - "habitually": null, - "habituate": [["S", "D", "N", "G", "X"]], - "habituates": null, - "habituated": null, - "habituation": [["M"]], - "habituating": null, - "habituations": null, - "habituation's": null, - "habitu�": [["M", "S"]], - "habitu�'s": null, - "habitu�s": null, - "hacienda": [["M", "S"]], - "hacienda's": null, - "haciendas": null, - "hacker": [["M"]], - "hacker's": null, - "Hackett": [["M"]], - "Hackett's": null, - "hack": [["G", "Z", "S", "D", "R", "B", "J"]], - "hacking": null, - "hackers": null, - "hacks": null, - "hacked": null, - "hackable": null, - "hackings": null, - "hackler": [["M"]], - "hackler's": null, - "hackle": [["R", "S", "D", "M", "G"]], - "hackles": null, - "hackled": null, - "hackle's": null, - "hackling": null, - "hackney": [["S", "M", "D", "G"]], - "hackneys": null, - "hackney's": null, - "hackneyed": null, - "hackneying": null, - "hacksaw": [["S", "D", "M", "G"]], - "hacksaws": null, - "hacksawed": null, - "hacksaw's": null, - "hacksawing": null, - "hackwork": [["S"]], - "hackworks": null, - "Hadamard": [["M"]], - "Hadamard's": null, - "Hadar": [["M"]], - "Hadar's": null, - "Haddad": [["M"]], - "Haddad's": null, - "haddock": [["M", "S"]], - "haddock's": null, - "haddocks": null, - "hades": null, - "Hades": null, - "had": [["G", "D"]], - "hading": null, - "haded": null, - "hadji's": null, - "hadj's": null, - "Hadlee": [["M"]], - "Hadlee's": null, - "Hadleigh": [["M"]], - "Hadleigh's": null, - "Hadley": [["M"]], - "Hadley's": null, - "Had": [["M"]], - "Had's": null, - "hadn't": null, - "Hadria": [["M"]], - "Hadria's": null, - "Hadrian": [["M"]], - "Hadrian's": null, - "hadron": [["M", "S"]], - "hadron's": null, - "hadrons": null, - "hadst": null, - "haemoglobin's": null, - "haemophilia's": null, - "haemorrhage's": null, - "Hafiz": [["M"]], - "Hafiz's": null, - "hafnium": [["M", "S"]], - "hafnium's": null, - "hafniums": null, - "haft": [["G", "S", "M", "D"]], - "hafting": null, - "hafts": null, - "haft's": null, - "hafted": null, - "Hagan": [["M"]], - "Hagan's": null, - "Hagar": [["M"]], - "Hagar's": null, - "Hagen": [["M"]], - "Hagen's": null, - "Hager": [["M"]], - "Hager's": null, - "Haggai": [["M"]], - "Haggai's": null, - "haggardness": [["M", "S"]], - "haggardness's": null, - "haggardnesses": null, - "haggard": [["S", "Y", "P"]], - "haggards": null, - "haggardly": null, - "hagged": null, - "hagging": null, - "haggish": null, - "haggis": [["S", "M"]], - "haggises": null, - "haggis's": null, - "haggler": [["M"]], - "haggler's": null, - "haggle": [["R", "S", "D", "Z", "G"]], - "haggles": null, - "haggled": null, - "hagglers": null, - "haggling": null, - "Hagiographa": [["M"]], - "Hagiographa's": null, - "hagiographer": [["S", "M"]], - "hagiographers": null, - "hagiographer's": null, - "hagiography": [["M", "S"]], - "hagiography's": null, - "hagiographies": null, - "hag": [["S", "M", "N"]], - "hags": null, - "hag's": null, - "hagen": null, - "Hagstrom": [["M"]], - "Hagstrom's": null, - "Hague": [["M"]], - "Hague's": null, - "ha": [["H"]], - "hath": null, - "hahnium": [["S"]], - "hahniums": null, - "Hahn": [["M"]], - "Hahn's": null, - "Haifa": [["M"]], - "Haifa's": null, - "haiku": [["M"]], - "haiku's": null, - "Hailee": [["M"]], - "Hailee's": null, - "hailer": [["M"]], - "hailer's": null, - "Hailey": [["M"]], - "Hailey's": null, - "hail": [["S", "G", "M", "D", "R"]], - "hails": null, - "hailing": null, - "hail's": null, - "hailed": null, - "hailstone": [["S", "M"]], - "hailstones": null, - "hailstone's": null, - "hailstorm": [["S", "M"]], - "hailstorms": null, - "hailstorm's": null, - "Haily": [["M"]], - "Haily's": null, - "Haiphong": [["M"]], - "Haiphong's": null, - "hairball": [["S", "M"]], - "hairballs": null, - "hairball's": null, - "hairbreadth": [["M"]], - "hairbreadth's": null, - "hairbreadths": null, - "hairbrush": [["S", "M"]], - "hairbrushes": null, - "hairbrush's": null, - "haircare": null, - "haircloth": [["M"]], - "haircloth's": null, - "haircloths": null, - "haircut": [["M", "S"]], - "haircut's": null, - "haircuts": null, - "haircutting": null, - "hairdo": [["S", "M"]], - "hairdos": null, - "hairdo's": null, - "hairdresser": [["S", "M"]], - "hairdressers": null, - "hairdresser's": null, - "hairdressing": [["S", "M"]], - "hairdressings": null, - "hairdressing's": null, - "hairdryer": [["S"]], - "hairdryers": null, - "hairiness": [["M", "S"]], - "hairiness's": null, - "hairinesses": null, - "hairlessness": [["M"]], - "hairlessness's": null, - "hairless": [["P"]], - "hairlike": null, - "hairline": [["S", "M"]], - "hairlines": null, - "hairline's": null, - "hairnet": [["M", "S"]], - "hairnet's": null, - "hairnets": null, - "hairpiece": [["M", "S"]], - "hairpiece's": null, - "hairpieces": null, - "hairpin": [["M", "S"]], - "hairpin's": null, - "hairpins": null, - "hairsbreadth": null, - "hairsbreadths": null, - "hair": [["S", "D", "M"]], - "hairs": null, - "haired": null, - "hair's": null, - "hairsplitter": [["S", "M"]], - "hairsplitters": null, - "hairsplitter's": null, - "hairsplitting": [["M", "S"]], - "hairsplitting's": null, - "hairsplittings": null, - "hairspray": null, - "hairspring": [["S", "M"]], - "hairsprings": null, - "hairspring's": null, - "hairstyle": [["S", "M", "G"]], - "hairstyles": null, - "hairstyle's": null, - "hairstyling": null, - "hairstylist": [["S"]], - "hairstylists": null, - "hairy": [["P", "T", "R"]], - "hairiest": null, - "hairier": null, - "Haitian": [["S"]], - "Haitians": null, - "Haiti": [["M"]], - "Haiti's": null, - "hajjes": null, - "hajji": [["M", "S"]], - "hajji's": null, - "hajjis": null, - "hajj": [["M"]], - "hajj's": null, - "Hakeem": [["M"]], - "Hakeem's": null, - "hake": [["M", "S"]], - "hake's": null, - "hakes": null, - "Hakim": [["M"]], - "Hakim's": null, - "Hakka": [["M"]], - "Hakka's": null, - "Hakluyt": [["M"]], - "Hakluyt's": null, - "halalled": null, - "halalling": null, - "halal": [["S"]], - "halals": null, - "halberd": [["S", "M"]], - "halberds": null, - "halberd's": null, - "halcyon": [["S"]], - "halcyons": null, - "Haldane": [["M"]], - "Haldane's": null, - "Haleakala": [["M"]], - "Haleakala's": null, - "Haleigh": [["M"]], - "Haleigh's": null, - "hale": [["I", "S", "R", "D", "G"]], - "inhale": [["Z"]], - "inhales": null, - "inhaler": null, - "inhaled": null, - "inhaling": null, - "hales": null, - "haler": [["I", "M"]], - "haled": null, - "haling": null, - "Hale": [["M"]], - "Hale's": null, - "inhaler's": null, - "haler's": null, - "halest": null, - "Halette": [["M"]], - "Halette's": null, - "Haley": [["M"]], - "Haley's": null, - "halfback": [["S", "M"]], - "halfbacks": null, - "halfback's": null, - "halfbreed": null, - "halfheartedness": [["M", "S"]], - "halfheartedness's": null, - "halfheartednesses": null, - "halfhearted": [["P", "Y"]], - "halfheartedly": null, - "halfpence": [["S"]], - "halfpences": null, - "halfpenny": [["M", "S"]], - "halfpenny's": null, - "halfpennies": null, - "halfpennyworth": null, - "half": [["P", "M"]], - "halfness": null, - "half's": null, - "halftime": [["S"]], - "halftimes": null, - "halftone": [["M", "S"]], - "halftone's": null, - "halftones": null, - "halfway": null, - "halfword": [["M", "S"]], - "halfword's": null, - "halfwords": null, - "halibut": [["S", "M"]], - "halibuts": null, - "halibut's": null, - "halide": [["S", "M"]], - "halides": null, - "halide's": null, - "Halie": [["M"]], - "Halie's": null, - "Halifax": [["M"]], - "Halifax's": null, - "Hali": [["M"]], - "Hali's": null, - "Halimeda": [["M"]], - "Halimeda's": null, - "halite": [["M", "S"]], - "halite's": null, - "halites": null, - "halitoses": null, - "halitosis": [["M"]], - "halitosis's": null, - "hallelujah": null, - "hallelujahs": null, - "Halley": [["M"]], - "Halley's": null, - "halliard's": null, - "Hallie": [["M"]], - "Hallie's": null, - "Halli": [["M"]], - "Halli's": null, - "Hallinan": [["M"]], - "Hallinan's": null, - "Hall": [["M"]], - "Hall's": null, - "Hallmark": [["M"]], - "Hallmark's": null, - "hallmark": [["S", "G", "M", "D"]], - "hallmarks": null, - "hallmarking": null, - "hallmark's": null, - "hallmarked": null, - "hallo": [["G", "D", "S"]], - "halloing": null, - "halloed": null, - "hallos": null, - "halloo's": null, - "Halloween": [["M", "S"]], - "Halloween's": null, - "Halloweens": null, - "hallowing": null, - "hallows": null, - "hallow": [["U", "D"]], - "unhallow": null, - "unhallowed": null, - "hallowed": null, - "hall": [["S", "M", "R"]], - "halls": null, - "hall's": null, - "haller": null, - "Hallsy": [["M"]], - "Hallsy's": null, - "hallucinate": [["V", "N", "G", "S", "D", "X"]], - "hallucinative": null, - "hallucination": [["M"]], - "hallucinating": null, - "hallucinates": null, - "hallucinated": null, - "hallucinations": null, - "hallucination's": null, - "hallucinatory": null, - "hallucinogenic": [["S"]], - "hallucinogenics": null, - "hallucinogen": [["S", "M"]], - "hallucinogens": null, - "hallucinogen's": null, - "hallway": [["S", "M"]], - "hallways": null, - "hallway's": null, - "Hally": [["M"]], - "Hally's": null, - "halocarbon": null, - "halogenated": null, - "halogen": [["S", "M"]], - "halogens": null, - "halogen's": null, - "halon": null, - "halo": [["S", "D", "M", "G"]], - "halos": null, - "haloed": null, - "halo's": null, - "haloing": null, - "Halpern": [["M"]], - "Halpern's": null, - "Halsey": [["M"]], - "Halsey's": null, - "Hal": [["S", "M", "Y"]], - "Hals": null, - "Hal's": null, - "Halsy": [["M"]], - "Halsy's": null, - "halter": [["G", "D", "M"]], - "haltering": null, - "haltered": null, - "halter's": null, - "halt": [["G", "Z", "J", "S", "M", "D", "R"]], - "halting": [["Y"]], - "halters": null, - "haltings": null, - "halts": null, - "halt's": null, - "halted": null, - "haltingly": null, - "halve": [["G", "Z", "D", "S"]], - "halving": null, - "halvers": null, - "halved": null, - "halves": [["M"]], - "halves's": null, - "halyard": [["M", "S"]], - "halyard's": null, - "halyards": null, - "Ha": [["M"]], - "Ha's": null, - "Hamal": [["M"]], - "Hamal's": null, - "Haman": [["M"]], - "Haman's": null, - "hamburger": [["M"]], - "hamburger's": null, - "Hamburg": [["M", "S"]], - "Hamburg's": null, - "Hamburgs": null, - "hamburg": [["S", "Z", "R", "M"]], - "hamburgs": null, - "hamburgers": null, - "hamburg's": null, - "Hamel": [["M"]], - "Hamel's": null, - "Hamey": [["M"]], - "Hamey's": null, - "Hamhung": [["M"]], - "Hamhung's": null, - "Hamid": [["M"]], - "Hamid's": null, - "Hamilcar": [["M"]], - "Hamilcar's": null, - "Hamil": [["M"]], - "Hamil's": null, - "Hamiltonian": [["M", "S"]], - "Hamiltonian's": null, - "Hamiltonians": null, - "Hamilton": [["M"]], - "Hamilton's": null, - "Hamish": [["M"]], - "Hamish's": null, - "Hamitic": [["M"]], - "Hamitic's": null, - "Hamlen": [["M"]], - "Hamlen's": null, - "Hamlet": [["M"]], - "Hamlet's": null, - "hamlet": [["M", "S"]], - "hamlet's": null, - "hamlets": null, - "Hamlin": [["M"]], - "Hamlin's": null, - "Ham": [["M"]], - "Ham's": null, - "Hammad": [["M"]], - "Hammad's": null, - "Hammarskjold": [["M"]], - "Hammarskjold's": null, - "hammed": null, - "hammerer": [["M"]], - "hammerer's": null, - "hammerhead": [["S", "M"]], - "hammerheads": null, - "hammerhead's": null, - "hammering": [["M"]], - "hammering's": null, - "hammerless": null, - "hammerlock": [["M", "S"]], - "hammerlock's": null, - "hammerlocks": null, - "Hammerstein": [["M"]], - "Hammerstein's": null, - "hammertoe": [["S", "M"]], - "hammertoes": null, - "hammertoe's": null, - "hammer": [["Z", "G", "S", "R", "D", "M"]], - "hammerers": null, - "hammers": null, - "hammered": null, - "hammer's": null, - "Hammett": [["M"]], - "Hammett's": null, - "hamming": null, - "hammock": [["M", "S"]], - "hammock's": null, - "hammocks": null, - "Hammond": [["M"]], - "Hammond's": null, - "Hammurabi": [["M"]], - "Hammurabi's": null, - "hammy": [["R", "T"]], - "hammier": null, - "hammiest": null, - "Hamnet": [["M"]], - "Hamnet's": null, - "hampered": [["U"]], - "unhampered": null, - "hamper": [["G", "S", "D"]], - "hampering": null, - "hampers": null, - "Hampshire": [["M"]], - "Hampshire's": null, - "Hampton": [["M"]], - "Hampton's": null, - "ham": [["S", "M"]], - "hams": null, - "ham's": null, - "hamster": [["M", "S"]], - "hamster's": null, - "hamsters": null, - "hamstring": [["M", "G", "S"]], - "hamstring's": null, - "hamstringing": null, - "hamstrings": null, - "hamstrung": null, - "Hamsun": [["M"]], - "Hamsun's": null, - "Hana": [["M"]], - "Hana's": null, - "Hanan": [["M"]], - "Hanan's": null, - "Hancock": [["M"]], - "Hancock's": null, - "handbagged": null, - "handbagging": null, - "handbag": [["M", "S"]], - "handbag's": null, - "handbags": null, - "handball": [["S", "M"]], - "handballs": null, - "handball's": null, - "handbarrow": [["M", "S"]], - "handbarrow's": null, - "handbarrows": null, - "handbasin": null, - "handbill": [["M", "S"]], - "handbill's": null, - "handbills": null, - "handbook": [["S", "M"]], - "handbooks": null, - "handbook's": null, - "handbrake": [["M"]], - "handbrake's": null, - "handcar": [["S", "M"]], - "handcars": null, - "handcar's": null, - "handcart": [["M", "S"]], - "handcart's": null, - "handcarts": null, - "handclasp": [["M", "S"]], - "handclasp's": null, - "handclasps": null, - "handcraft": [["G", "M", "D", "S"]], - "handcrafting": null, - "handcraft's": null, - "handcrafted": null, - "handcrafts": null, - "handcuff": [["G", "S", "D"]], - "handcuffing": null, - "handcuffs": [["M"]], - "handcuffed": null, - "handcuffs's": null, - "handedness": [["M"]], - "handedness's": null, - "handed": [["P", "Y"]], - "handedly": null, - "Handel": [["M"]], - "Handel's": null, - "hander": [["S"]], - "handers": null, - "handful": [["S", "M"]], - "handfuls": null, - "handful's": null, - "handgun": [["S", "M"]], - "handguns": null, - "handgun's": null, - "handhold": [["M"]], - "handhold's": null, - "handicapped": null, - "handicapper": [["S", "M"]], - "handicappers": null, - "handicapper's": null, - "handicapping": null, - "handicap": [["S", "M"]], - "handicaps": null, - "handicap's": null, - "handicraftsman": [["M"]], - "handicraftsman's": null, - "handicraftsmen": null, - "handicraft": [["S", "M", "R"]], - "handicrafts": null, - "handicraft's": null, - "handicrafter": null, - "handily": [["U"]], - "unhandily": null, - "handiness": [["S", "M"]], - "handinesses": null, - "handiness's": null, - "handiwork": [["M", "S"]], - "handiwork's": null, - "handiworks": null, - "handkerchief": [["M", "S"]], - "handkerchief's": null, - "handkerchiefs": null, - "handleable": null, - "handlebar": [["S", "M"]], - "handlebars": null, - "handlebar's": null, - "handle": [["M", "Z", "G", "R", "S", "D"]], - "handle's": null, - "handlers": null, - "handling": [["M"]], - "handler": [["M"]], - "handles": null, - "handled": null, - "handler's": null, - "handless": null, - "handling's": null, - "handmade": null, - "handmaiden": [["M"]], - "handmaiden's": null, - "handmaid": [["N", "M", "S", "X"]], - "handmaid's": null, - "handmaids": null, - "handmaidens": null, - "handout": [["S", "M"]], - "handouts": null, - "handout's": null, - "handover": null, - "handpick": [["G", "D", "S"]], - "handpicking": null, - "handpicked": null, - "handpicks": null, - "handrail": [["S", "M"]], - "handrails": null, - "handrail's": null, - "hand's": null, - "handsaw": [["S", "M"]], - "handsaws": null, - "handsaw's": null, - "handset": [["S", "M"]], - "handsets": null, - "handset's": null, - "handshake": [["G", "M", "S", "R"]], - "handshaking": [["M"]], - "handshake's": null, - "handshakes": null, - "handshaker": [["M"]], - "handshaker's": null, - "handshaking's": null, - "handsomely": [["U"]], - "unhandsomely": null, - "handsomeness": [["M", "S"]], - "handsomeness's": null, - "handsomenesses": null, - "handsome": [["R", "P", "T", "Y"]], - "handsomer": null, - "handsomest": null, - "handspike": [["S", "M"]], - "handspikes": null, - "handspike's": null, - "handspring": [["S", "M"]], - "handsprings": null, - "handspring's": null, - "handstand": [["M", "S"]], - "handstand's": null, - "handstands": null, - "hand": [["U", "D", "S", "G"]], - "unhand": null, - "unhanded": null, - "unhands": null, - "unhanding": null, - "hands": null, - "handing": null, - "handwork": [["S", "M"]], - "handworks": null, - "handwork's": null, - "handwoven": null, - "handwrite": [["G", "S", "J"]], - "handwriting": [["M"]], - "handwrites": null, - "handwritings": null, - "handwriting's": null, - "handwritten": null, - "Handy": [["M"]], - "Handy's": null, - "handyman": [["M"]], - "handyman's": null, - "handymen": null, - "handy": [["U", "R", "T"]], - "unhandy": null, - "unhandier": null, - "handier": null, - "handiest": null, - "Haney": [["M"]], - "Haney's": null, - "hangar": [["S", "G", "D", "M"]], - "hangars": null, - "hangaring": null, - "hangared": null, - "hangar's": null, - "hangdog": [["S"]], - "hangdogs": null, - "hanged": [["A"]], - "rehanged": null, - "hanger": [["M"]], - "hanger's": null, - "hang": [["G", "D", "R", "Z", "B", "S", "J"]], - "hanging": [["M"]], - "hangers": null, - "hangable": null, - "hangs": [["A"]], - "hangings": null, - "hanging's": null, - "hangman": [["M"]], - "hangman's": null, - "hangmen": null, - "hangnail": [["M", "S"]], - "hangnail's": null, - "hangnails": null, - "hangout": [["M", "S"]], - "hangout's": null, - "hangouts": null, - "hangover": [["S", "M"]], - "hangovers": null, - "hangover's": null, - "rehangs": null, - "Hangul": [["M"]], - "Hangul's": null, - "hangup": [["S"]], - "hangups": null, - "Hangzhou": null, - "Hankel": [["M"]], - "Hankel's": null, - "hankerer": [["M"]], - "hankerer's": null, - "hanker": [["G", "R", "D", "J"]], - "hankering": [["M"]], - "hankered": null, - "hankerings": null, - "hankering's": null, - "hank": [["G", "Z", "D", "R", "M", "S"]], - "hanking": null, - "hankers": null, - "hanked": null, - "hank's": null, - "hanks": null, - "hankie": [["S", "M"]], - "hankies": null, - "hankie's": null, - "Hank": [["M"]], - "Hank's": null, - "hanky's": null, - "Hannah": [["M"]], - "Hannah's": null, - "Hanna": [["M"]], - "Hanna's": null, - "Hannibal": [["M"]], - "Hannibal's": null, - "Hannie": [["M"]], - "Hannie's": null, - "Hanni": [["M", "S"]], - "Hanni's": null, - "Hannis": null, - "Hanny": [["M"]], - "Hanny's": null, - "Hanoi": [["M"]], - "Hanoi's": null, - "Hanoverian": null, - "Hanover": [["M"]], - "Hanover's": null, - "Hansel": [["M"]], - "Hansel's": null, - "Hansen": [["M"]], - "Hansen's": null, - "Hansiain": [["M"]], - "Hansiain's": null, - "Han": [["S", "M"]], - "Hans": [["N"]], - "Han's": null, - "hansom": [["M", "S"]], - "hansom's": null, - "hansoms": null, - "Hanson": [["M"]], - "Hanson's": null, - "Hanuka": [["S"]], - "Hanukas": null, - "Hanukkah": [["M"]], - "Hanukkah's": null, - "Hanukkahs": null, - "Hapgood": [["M"]], - "Hapgood's": null, - "haphazardness": [["S", "M"]], - "haphazardnesses": null, - "haphazardness's": null, - "haphazard": [["S", "P", "Y"]], - "haphazards": null, - "haphazardly": null, - "haplessness": [["M", "S"]], - "haplessness's": null, - "haplessnesses": null, - "hapless": [["Y", "P"]], - "haplessly": null, - "haploid": [["S"]], - "haploids": null, - "happed": null, - "happening": [["M"]], - "happening's": null, - "happen": [["J", "D", "G", "S"]], - "happenings": null, - "happened": null, - "happens": null, - "happenstance": [["S", "M"]], - "happenstances": null, - "happenstance's": null, - "happily": [["U"]], - "unhappily": null, - "happiness": [["U", "M", "S"]], - "unhappiness": null, - "unhappiness's": null, - "unhappinesses": null, - "happiness's": null, - "happinesses": null, - "happing": null, - "Happy": [["M"]], - "Happy's": null, - "happy": [["U", "T", "P", "R"]], - "unhappy": null, - "unhappier": null, - "happiest": null, - "happier": null, - "Hapsburg": [["M"]], - "Hapsburg's": null, - "hap": [["S", "M", "Y"]], - "haps": null, - "hap's": null, - "haply": null, - "Harald": [["M"]], - "Harald's": null, - "harangue": [["G", "D", "R", "S"]], - "haranguing": null, - "harangued": null, - "haranguer": [["M"]], - "harangues": null, - "haranguer's": null, - "Harare": null, - "harasser": [["M"]], - "harasser's": null, - "harass": [["L", "S", "R", "D", "Z", "G"]], - "harassment": [["S", "M"]], - "harasses": null, - "harassed": null, - "harassers": null, - "harassing": null, - "harassments": null, - "harassment's": null, - "Harbert": [["M"]], - "Harbert's": null, - "harbinger": [["D", "M", "S", "G"]], - "harbingered": null, - "harbinger's": null, - "harbingers": null, - "harbingering": null, - "Harbin": [["M"]], - "Harbin's": null, - "harborer": [["M"]], - "harborer's": null, - "harbor": [["Z", "G", "R", "D", "M", "S"]], - "harborers": null, - "harboring": null, - "harbored": null, - "harbor's": null, - "harbors": null, - "Harcourt": [["M"]], - "Harcourt's": null, - "hardback": [["S", "M"]], - "hardbacks": null, - "hardback's": null, - "hardball": [["S", "M"]], - "hardballs": null, - "hardball's": null, - "hardboard": [["S", "M"]], - "hardboards": null, - "hardboard's": null, - "hardboiled": null, - "hardbound": null, - "hardcore": [["M", "S"]], - "hardcore's": null, - "hardcores": null, - "hardcover": [["S", "M"]], - "hardcovers": null, - "hardcover's": null, - "hardened": [["U"]], - "unhardened": null, - "hardener": [["M"]], - "hardener's": null, - "hardening": [["M"]], - "hardening's": null, - "harden": [["Z", "G", "R", "D"]], - "hardeners": null, - "hardhat": [["S"]], - "hardhats": null, - "hardheadedness": [["S", "M"]], - "hardheadednesses": null, - "hardheadedness's": null, - "hardheaded": [["Y", "P"]], - "hardheadedly": null, - "hardheartedness": [["S", "M"]], - "hardheartednesses": null, - "hardheartedness's": null, - "hardhearted": [["Y", "P"]], - "hardheartedly": null, - "hardihood": [["M", "S"]], - "hardihood's": null, - "hardihoods": null, - "hardily": null, - "hardiness": [["S", "M"]], - "hardinesses": null, - "hardiness's": null, - "Harding": [["M"]], - "Harding's": null, - "Hardin": [["M"]], - "Hardin's": null, - "hardliner": [["S"]], - "hardliners": null, - "hardness": [["M", "S"]], - "hardness's": null, - "hardnesses": null, - "hardscrabble": null, - "hardshell": null, - "hardship": [["M", "S"]], - "hardship's": null, - "hardships": null, - "hardstand": [["S"]], - "hardstands": null, - "hardtack": [["M", "S"]], - "hardtack's": null, - "hardtacks": null, - "hardtop": [["M", "S"]], - "hardtop's": null, - "hardtops": null, - "hardware": [["S", "M"]], - "hardwares": null, - "hardware's": null, - "hardwire": [["D", "S", "G"]], - "hardwired": null, - "hardwires": null, - "hardwiring": null, - "hardwood": [["M", "S"]], - "hardwood's": null, - "hardwoods": null, - "hardworking": null, - "Hardy": [["M"]], - "Hardy's": null, - "hard": [["Y", "N", "R", "P", "J", "G", "X", "T", "S"]], - "hardly": null, - "harder": null, - "hardings": null, - "harding": null, - "hardens": null, - "hardest": null, - "hards": null, - "hardy": [["P", "T", "R", "S"]], - "hardiest": null, - "hardier": null, - "hardies": null, - "harebell": [["M", "S"]], - "harebell's": null, - "harebells": null, - "harebrained": null, - "harelip": [["M", "S"]], - "harelip's": null, - "harelips": null, - "harelipped": null, - "hare": [["M", "G", "D", "S"]], - "hare's": null, - "haring": null, - "hared": null, - "hares": null, - "harem": [["S", "M"]], - "harems": null, - "harem's": null, - "Hargreaves": [["M"]], - "Hargreaves's": null, - "hark": [["G", "D", "S"]], - "harking": null, - "harked": null, - "harks": null, - "Harland": [["M"]], - "Harland's": null, - "Harlan": [["M"]], - "Harlan's": null, - "Harlem": [["M"]], - "Harlem's": null, - "Harlene": [["M"]], - "Harlene's": null, - "Harlen": [["M"]], - "Harlen's": null, - "Harlequin": null, - "harlequin": [["M", "S"]], - "harlequin's": null, - "harlequins": null, - "Harley": [["M"]], - "Harley's": null, - "Harlie": [["M"]], - "Harlie's": null, - "Harli": [["M"]], - "Harli's": null, - "Harlin": [["M"]], - "Harlin's": null, - "harlotry": [["M", "S"]], - "harlotry's": null, - "harlotries": null, - "harlot": [["S", "M"]], - "harlots": null, - "harlot's": null, - "Harlow": [["M"]], - "Harlow's": null, - "Harman": [["M"]], - "Harman's": null, - "harmed": [["U"]], - "unharmed": null, - "harmer": [["M"]], - "harmer's": null, - "harmfulness": [["M", "S"]], - "harmfulness's": null, - "harmfulnesses": null, - "harmful": [["P", "Y"]], - "harmfully": null, - "harmlessness": [["S", "M"]], - "harmlessnesses": null, - "harmlessness's": null, - "harmless": [["Y", "P"]], - "harmlessly": null, - "harm": [["M", "D", "R", "G", "S"]], - "harm's": null, - "harming": null, - "harms": null, - "Harmonia": [["M"]], - "Harmonia's": null, - "harmonically": null, - "harmonica": [["M", "S"]], - "harmonica's": null, - "harmonicas": null, - "harmonic": [["S"]], - "harmonics": [["M"]], - "harmonics's": null, - "Harmonie": [["M"]], - "Harmonie's": null, - "harmonious": [["I", "P", "Y"]], - "inharmonious": null, - "inharmoniousness": null, - "inharmoniously": null, - "harmoniousness": [["M", "S"]], - "harmoniously": null, - "harmoniousness's": [["I"]], - "harmoniousnesses": null, - "inharmoniousness's": null, - "harmonium": [["M", "S"]], - "harmonium's": null, - "harmoniums": null, - "harmonization": [["A"]], - "reharmonization": null, - "harmonizations": null, - "harmonization's": null, - "harmonized": [["U"]], - "unharmonized": null, - "harmonizer": [["M"]], - "harmonizer's": null, - "harmonizes": [["U", "A"]], - "unharmonizes": null, - "reharmonizes": null, - "harmonize": [["Z", "G", "S", "R", "D"]], - "harmonizers": null, - "harmonizing": null, - "Harmon": [["M"]], - "Harmon's": null, - "harmony": [["E", "M", "S"]], - "disharmony": null, - "disharmony's": null, - "disharmonies": null, - "harmony's": null, - "harmonies": null, - "Harmony": [["M"]], - "Harmony's": null, - "harness": [["D", "R", "S", "M", "G"]], - "harnessed": [["U"]], - "harnesser": [["M"]], - "harnesses": [["U"]], - "harness's": null, - "harnessing": null, - "unharnessed": null, - "harnesser's": null, - "unharnesses": null, - "Harold": [["M"]], - "Harold's": null, - "Haroun": [["M"]], - "Haroun's": null, - "harper": [["M"]], - "harper's": null, - "Harper": [["M"]], - "Harper's": null, - "harping": [["M"]], - "harping's": null, - "harpist": [["S", "M"]], - "harpists": null, - "harpist's": null, - "harp": [["M", "D", "R", "J", "G", "Z", "S"]], - "harp's": null, - "harped": null, - "harpings": null, - "harpers": null, - "harps": null, - "Harp": [["M", "R"]], - "Harp's": null, - "harpooner": [["M"]], - "harpooner's": null, - "harpoon": [["S", "Z", "G", "D", "R", "M"]], - "harpoons": null, - "harpooners": null, - "harpooning": null, - "harpooned": null, - "harpoon's": null, - "harpsichordist": [["M", "S"]], - "harpsichordist's": null, - "harpsichordists": null, - "harpsichord": [["S", "M"]], - "harpsichords": null, - "harpsichord's": null, - "harpy": [["S", "M"]], - "harpies": null, - "harpy's": null, - "Harpy": [["S", "M"]], - "Harpies": null, - "Harpy's": null, - "Harrell": [["M"]], - "Harrell's": null, - "harridan": [["S", "M"]], - "harridans": null, - "harridan's": null, - "Harrie": [["M"]], - "Harrie's": null, - "harrier": [["M"]], - "harrier's": null, - "Harriet": [["M"]], - "Harriet's": null, - "Harrietta": [["M"]], - "Harrietta's": null, - "Harriette": [["M"]], - "Harriette's": null, - "Harriett": [["M"]], - "Harriett's": null, - "Harrington": [["M"]], - "Harrington's": null, - "Harriot": [["M"]], - "Harriot's": null, - "Harriott": [["M"]], - "Harriott's": null, - "Harrisburg": [["M"]], - "Harrisburg's": null, - "Harri": [["S", "M"]], - "Harris": null, - "Harri's": null, - "Harrisonburg": [["M"]], - "Harrisonburg's": null, - "Harrison": [["M"]], - "Harrison's": null, - "harrower": [["M"]], - "harrower's": null, - "harrow": [["R", "D", "M", "G", "S"]], - "harrowed": null, - "harrow's": null, - "harrowing": null, - "harrows": null, - "harrumph": [["S", "D", "G"]], - "harrumphes": null, - "harrumphed": null, - "harrumphing": null, - "Harry": [["M"]], - "Harry's": null, - "harry": [["R", "S", "D", "G", "Z"]], - "harries": null, - "harried": null, - "harrying": null, - "harriers": null, - "harshen": [["G", "D"]], - "harshening": null, - "harshened": null, - "harshness": [["S", "M"]], - "harshnesses": null, - "harshness's": null, - "harsh": [["T", "R", "N", "Y", "P"]], - "harshest": null, - "harsher": null, - "harshly": null, - "Harte": [["M"]], - "Harte's": null, - "Hartford": [["M"]], - "Hartford's": null, - "Hartley": [["M"]], - "Hartley's": null, - "Hartline": [["M"]], - "Hartline's": null, - "Hart": [["M"]], - "Hart's": null, - "Hartman": [["M"]], - "Hartman's": null, - "hart": [["M", "S"]], - "hart's": null, - "harts": null, - "Hartwell": [["M"]], - "Hartwell's": null, - "Harvard": [["M"]], - "Harvard's": null, - "harvested": [["U"]], - "unharvested": null, - "harvester": [["M"]], - "harvester's": null, - "harvestman": [["M"]], - "harvestman's": null, - "harvest": [["M", "D", "R", "Z", "G", "S"]], - "harvest's": null, - "harvesters": null, - "harvesting": null, - "harvests": null, - "Harvey": [["M", "S"]], - "Harvey's": null, - "Harveys": null, - "Harv": [["M"]], - "Harv's": null, - "Harwell": [["M"]], - "Harwell's": null, - "Harwilll": [["M"]], - "Harwilll's": null, - "has": null, - "Hasbro": [["M"]], - "Hasbro's": null, - "hash": [["A", "G", "S", "D"]], - "rehash": null, - "rehashing": null, - "rehashes": null, - "rehashed": null, - "hashing": [["M"]], - "hashes": null, - "hashed": null, - "Hasheem": [["M"]], - "Hasheem's": null, - "hasher": [["M"]], - "hasher's": null, - "Hashim": [["M"]], - "Hashim's": null, - "hashing's": null, - "hashish": [["M", "S"]], - "hashish's": null, - "hashishes": null, - "hash's": null, - "Hasidim": null, - "Haskell": [["M"]], - "Haskell's": null, - "Haskel": [["M"]], - "Haskel's": null, - "Haskins": [["M"]], - "Haskins's": null, - "Haslett": [["M"]], - "Haslett's": null, - "hasn't": null, - "hasp": [["G", "M", "D", "S"]], - "hasping": null, - "hasp's": null, - "hasped": null, - "hasps": null, - "hassle": [["M", "G", "R", "S", "D"]], - "hassle's": null, - "hassling": null, - "hassler": null, - "hassles": null, - "hassled": null, - "hassock": [["M", "S"]], - "hassock's": null, - "hassocks": null, - "haste": [["M", "S"]], - "haste's": null, - "hastes": null, - "hastener": [["M"]], - "hastener's": null, - "hasten": [["G", "R", "D"]], - "hastening": null, - "hastened": null, - "hast": [["G", "X", "J", "D", "N"]], - "hasting": null, - "hastens": null, - "hastings": null, - "hasted": null, - "Hastie": [["M"]], - "Hastie's": null, - "hastily": null, - "hastiness": [["M", "S"]], - "hastiness's": null, - "hastinesses": null, - "Hastings": [["M"]], - "Hastings's": null, - "Hasty": [["M"]], - "Hasty's": null, - "hasty": [["R", "P", "T"]], - "hastier": null, - "hastiest": null, - "hatchback": [["S", "M"]], - "hatchbacks": null, - "hatchback's": null, - "hatcheck": [["S"]], - "hatchecks": null, - "hatched": [["U"]], - "unhatched": null, - "hatcher": [["M"]], - "hatcher's": null, - "hatchery": [["M", "S"]], - "hatchery's": null, - "hatcheries": null, - "hatchet": [["M", "D", "S", "G"]], - "hatchet's": null, - "hatcheted": null, - "hatchets": null, - "hatcheting": null, - "hatching": [["M"]], - "hatching's": null, - "hatch": [["R", "S", "D", "J", "G"]], - "hatches": null, - "hatchings": null, - "Hatchure": [["M"]], - "Hatchure's": null, - "hatchway": [["M", "S"]], - "hatchway's": null, - "hatchways": null, - "hatefulness": [["M", "S"]], - "hatefulness's": null, - "hatefulnesses": null, - "hateful": [["Y", "P"]], - "hatefully": null, - "hater": [["M"]], - "hater's": null, - "hate": [["S"]], - "hates": null, - "Hatfield": [["M"]], - "Hatfield's": null, - "Hathaway": [["M"]], - "Hathaway's": null, - "hatless": null, - "hat": [["M", "D", "R", "S", "Z", "G"]], - "hat's": null, - "hated": null, - "hats": null, - "haters": null, - "hating": null, - "hatred": [["S", "M"]], - "hatreds": null, - "hatred's": null, - "hatstands": null, - "hatted": null, - "Hatteras": [["M"]], - "Hatteras's": null, - "hatter": [["S", "M"]], - "hatters": null, - "hatter's": null, - "Hattie": [["M"]], - "Hattie's": null, - "Hatti": [["M"]], - "Hatti's": null, - "hatting": null, - "Hatty": [["M"]], - "Hatty's": null, - "hauberk": [["S", "M"]], - "hauberks": null, - "hauberk's": null, - "Haugen": [["M"]], - "Haugen's": null, - "haughtily": null, - "haughtiness": [["S", "M"]], - "haughtinesses": null, - "haughtiness's": null, - "haughty": [["T", "P", "R"]], - "haughtiest": null, - "haughtier": null, - "haulage": [["M", "S"]], - "haulage's": null, - "haulages": null, - "hauler": [["M"]], - "hauler's": null, - "haul": [["S", "D", "R", "G", "Z"]], - "hauls": null, - "hauled": null, - "hauling": null, - "haulers": null, - "haunch": [["G", "M", "S", "D"]], - "haunching": null, - "haunch's": null, - "haunches": null, - "haunched": null, - "haunter": [["M"]], - "haunter's": null, - "haunting": [["Y"]], - "hauntingly": null, - "haunt": [["J", "R", "D", "S", "Z", "G"]], - "hauntings": null, - "haunted": null, - "haunts": null, - "haunters": null, - "Hauptmann": [["M"]], - "Hauptmann's": null, - "Hausa": [["M"]], - "Hausa's": null, - "Hausdorff": [["M"]], - "Hausdorff's": null, - "Hauser": [["M"]], - "Hauser's": null, - "hauteur": [["M", "S"]], - "hauteur's": null, - "hauteurs": null, - "Havana": [["S", "M"]], - "Havanas": null, - "Havana's": null, - "Havarti": null, - "Havel": [["M"]], - "Havel's": null, - "haven": [["D", "M", "G", "S"]], - "havened": null, - "haven's": null, - "havening": null, - "havens": null, - "Haven": [["M"]], - "Haven's": null, - "haven't": null, - "haver": [["G"]], - "havering": null, - "haversack": [["S", "M"]], - "haversacks": null, - "haversack's": null, - "have": [["Z", "G", "S", "R"]], - "havers": null, - "having": null, - "haves": null, - "havocked": null, - "havocking": null, - "havoc": [["S", "M"]], - "havocs": null, - "havoc's": null, - "Haw": null, - "Hawaiian": [["S"]], - "Hawaiians": null, - "Hawaii": [["M"]], - "Hawaii's": null, - "hawker": [["M"]], - "hawker's": null, - "hawk": [["G", "Z", "S", "D", "R", "M"]], - "hawking": [["M"]], - "hawkers": null, - "hawks": null, - "hawked": null, - "hawk's": null, - "Hawking": null, - "hawking's": null, - "Hawkins": [["M"]], - "Hawkins's": null, - "hawkishness": [["S"]], - "hawkishnesses": null, - "hawkish": [["P"]], - "Hawley": [["M"]], - "Hawley's": null, - "haw": [["M", "D", "S", "G"]], - "haw's": null, - "hawed": null, - "haws": [["R", "Z"]], - "hawing": null, - "hawser": [["M"]], - "hawser's": null, - "hawsers": null, - "Hawthorne": [["M"]], - "Hawthorne's": null, - "hawthorn": [["M", "S"]], - "hawthorn's": null, - "hawthorns": null, - "haycock": [["S", "M"]], - "haycocks": null, - "haycock's": null, - "Hayden": [["M"]], - "Hayden's": null, - "Haydn": [["M"]], - "Haydn's": null, - "Haydon": [["M"]], - "Haydon's": null, - "Hayes": null, - "hayfield": [["M", "S"]], - "hayfield's": null, - "hayfields": null, - "hay": [["G", "S", "M", "D", "R"]], - "haying": null, - "hays": null, - "hay's": null, - "hayed": null, - "hayer": null, - "Hayley": [["M"]], - "Hayley's": null, - "hayloft": [["M", "S"]], - "hayloft's": null, - "haylofts": null, - "haymow": [["M", "S"]], - "haymow's": null, - "haymows": null, - "Haynes": null, - "hayrick": [["M", "S"]], - "hayrick's": null, - "hayricks": null, - "hayride": [["M", "S"]], - "hayride's": null, - "hayrides": null, - "hayseed": [["M", "S"]], - "hayseed's": null, - "hayseeds": null, - "Hay": [["S", "M"]], - "Hays": null, - "Hay's": null, - "haystack": [["S", "M"]], - "haystacks": null, - "haystack's": null, - "haywain": null, - "Hayward": [["M"]], - "Hayward's": null, - "haywire": [["M", "S"]], - "haywire's": null, - "haywires": null, - "Haywood": [["M"]], - "Haywood's": null, - "Hayyim": [["M"]], - "Hayyim's": null, - "hazard": [["M", "D", "G", "S"]], - "hazard's": null, - "hazarded": null, - "hazarding": null, - "hazards": null, - "hazardousness": [["M"]], - "hazardousness's": null, - "hazardous": [["P", "Y"]], - "hazardously": null, - "haze": [["D", "S", "R", "J", "M", "Z", "G"]], - "hazed": null, - "hazes": null, - "hazer": [["M"]], - "hazings": null, - "haze's": null, - "hazers": null, - "hazing": [["M"]], - "Hazel": [["M"]], - "Hazel's": null, - "hazel": [["M", "S"]], - "hazel's": null, - "hazels": null, - "hazelnut": [["S", "M"]], - "hazelnuts": null, - "hazelnut's": null, - "Haze": [["M"]], - "Haze's": null, - "hazer's": null, - "hazily": null, - "haziness": [["M", "S"]], - "haziness's": null, - "hazinesses": null, - "hazing's": null, - "Hazlett": [["M"]], - "Hazlett's": null, - "Hazlitt": [["M"]], - "Hazlitt's": null, - "hazy": [["P", "T", "R"]], - "haziest": null, - "hazier": null, - "HBO": [["M"]], - "HBO's": null, - "hdqrs": null, - "HDTV": null, - "headache": [["M", "S"]], - "headache's": null, - "headaches": null, - "headband": [["S", "M"]], - "headbands": null, - "headband's": null, - "headboard": [["M", "S"]], - "headboard's": null, - "headboards": null, - "headcount": null, - "headdress": [["M", "S"]], - "headdress's": null, - "headdresses": null, - "header": [["M"]], - "header's": null, - "headfirst": null, - "headgear": [["S", "M"]], - "headgears": null, - "headgear's": null, - "headhunter": [["M"]], - "headhunter's": null, - "headhunting": [["M"]], - "headhunting's": null, - "headhunt": [["Z", "G", "S", "R", "D", "M", "J"]], - "headhunters": null, - "headhunts": null, - "headhunted": null, - "headhunt's": null, - "headhuntings": null, - "headily": null, - "headiness": [["S"]], - "headinesses": null, - "heading": [["M"]], - "heading's": null, - "headlamp": [["S"]], - "headlamps": null, - "headland": [["M", "S"]], - "headland's": null, - "headlands": null, - "headlessness": [["M"]], - "headlessness's": null, - "headless": [["P"]], - "headlight": [["M", "S"]], - "headlight's": null, - "headlights": null, - "headline": [["D", "R", "S", "Z", "M", "G"]], - "headlined": null, - "headliner": [["M"]], - "headlines": null, - "headliners": null, - "headline's": null, - "headlining": null, - "headliner's": null, - "headlock": [["M", "S"]], - "headlock's": null, - "headlocks": null, - "headlong": null, - "Head": [["M"]], - "Head's": null, - "headman": [["M"]], - "headman's": null, - "headmaster": [["M", "S"]], - "headmaster's": null, - "headmasters": null, - "headmastership": [["M"]], - "headmastership's": null, - "headmen": null, - "headmistress": [["M", "S"]], - "headmistress's": null, - "headmistresses": null, - "headphone": [["S", "M"]], - "headphones": null, - "headphone's": null, - "headpiece": [["S", "M"]], - "headpieces": null, - "headpiece's": null, - "headpin": [["M", "S"]], - "headpin's": null, - "headpins": null, - "headquarter": [["G", "D", "S"]], - "headquartering": null, - "headquartered": null, - "headquarters": null, - "headrest": [["M", "S"]], - "headrest's": null, - "headrests": null, - "headroom": [["S", "M"]], - "headrooms": null, - "headroom's": null, - "headscarf": [["M"]], - "headscarf's": null, - "headset": [["S", "M"]], - "headsets": null, - "headset's": null, - "headship": [["S", "M"]], - "headships": null, - "headship's": null, - "headshrinker": [["M", "S"]], - "headshrinker's": null, - "headshrinkers": null, - "head": [["S", "J", "G", "Z", "M", "D", "R"]], - "heads": null, - "headings": null, - "headers": null, - "head's": null, - "headed": null, - "headsman": [["M"]], - "headsman's": null, - "headsmen": null, - "headstall": [["S", "M"]], - "headstalls": null, - "headstall's": null, - "headstand": [["M", "S"]], - "headstand's": null, - "headstands": null, - "headstock": [["M"]], - "headstock's": null, - "headstone": [["M", "S"]], - "headstone's": null, - "headstones": null, - "headstrong": null, - "headwaiter": [["S", "M"]], - "headwaiters": null, - "headwaiter's": null, - "headwall": [["S"]], - "headwalls": null, - "headwater": [["S"]], - "headwaters": null, - "headway": [["M", "S"]], - "headway's": null, - "headways": null, - "headwind": [["S", "M"]], - "headwinds": null, - "headwind's": null, - "headword": [["M", "S"]], - "headword's": null, - "headwords": null, - "heady": [["P", "T", "R"]], - "headiest": null, - "headier": null, - "heal": [["D", "R", "H", "S", "G", "Z"]], - "healed": [["U"]], - "healer": [["M"]], - "health": [["M"]], - "heals": null, - "healing": null, - "healers": null, - "unhealed": null, - "healer's": null, - "Heall": [["M"]], - "Heall's": null, - "healthfully": null, - "healthfulness": [["S", "M"]], - "healthfulnesses": null, - "healthfulness's": null, - "healthful": [["U"]], - "unhealthful": null, - "healthily": [["U"]], - "unhealthily": null, - "healthiness": [["M", "S", "U"]], - "healthiness's": null, - "unhealthiness's": null, - "healthinesses": null, - "unhealthinesses": null, - "unhealthiness": null, - "health's": null, - "healths": null, - "healthy": [["U", "R", "P", "T"]], - "unhealthy": null, - "unhealthier": null, - "healthier": null, - "healthiest": null, - "heap": [["S", "M", "D", "G"]], - "heaps": null, - "heap's": null, - "heaped": null, - "heaping": null, - "heard": [["U", "A"]], - "unheard": null, - "reheard": null, - "hearer": [["M"]], - "hearer's": null, - "hearing": [["A", "M"]], - "rehearing": null, - "rehearing's": null, - "hearing's": null, - "hearken": [["S", "G", "D"]], - "hearkens": null, - "hearkening": null, - "hearkened": null, - "hearsay": [["S", "M"]], - "hearsays": null, - "hearsay's": null, - "hearse": [["M"]], - "hearse's": null, - "hears": [["S", "D", "A", "G"]], - "hearses": null, - "rehearses": null, - "hearsed": null, - "rehearsed": [["U"]], - "rehears": [["R"]], - "rehearsing": null, - "hearsing": null, - "Hearst": [["M"]], - "Hearst's": null, - "heartache": [["S", "M"]], - "heartaches": null, - "heartache's": null, - "heartbeat": [["M", "S"]], - "heartbeat's": null, - "heartbeats": null, - "heartbreak": [["G", "M", "S"]], - "heartbreaking": [["Y"]], - "heartbreak's": null, - "heartbreaks": null, - "heartbreakingly": null, - "heartbroke": null, - "heartbroken": null, - "heartburning": [["M"]], - "heartburning's": null, - "heartburn": [["S", "G", "M"]], - "heartburns": null, - "heartburn's": null, - "hearted": [["Y"]], - "heartedly": null, - "hearten": [["E", "G", "D", "S"]], - "dishearten": null, - "disheartening": null, - "disheartened": null, - "disheartens": null, - "heartening": [["E", "Y"]], - "heartened": null, - "heartens": null, - "dishearteningly": null, - "hearteningly": null, - "heartfelt": null, - "hearth": [["M"]], - "hearth's": null, - "hearthrug": null, - "hearths": null, - "hearthstone": [["M", "S"]], - "hearthstone's": null, - "hearthstones": null, - "heartily": null, - "heartiness": [["S", "M"]], - "heartinesses": null, - "heartiness's": null, - "heartland": [["S", "M"]], - "heartlands": null, - "heartland's": null, - "heartlessness": [["S", "M"]], - "heartlessnesses": null, - "heartlessness's": null, - "heartless": [["Y", "P"]], - "heartlessly": null, - "heartrending": [["Y"]], - "heartrendingly": null, - "heartsickness": [["M", "S"]], - "heartsickness's": null, - "heartsicknesses": null, - "heartsick": [["P"]], - "heart": [["S", "M", "D", "N", "X", "G"]], - "hearts": null, - "heart's": null, - "hearting": null, - "heartstrings": null, - "heartthrob": [["M", "S"]], - "heartthrob's": null, - "heartthrobs": null, - "heartwarming": null, - "Heartwood": [["M"]], - "Heartwood's": null, - "heartwood": [["S", "M"]], - "heartwoods": null, - "heartwood's": null, - "hearty": [["T", "R", "S", "P"]], - "heartiest": null, - "heartier": null, - "hearties": null, - "hear": [["Z", "T", "S", "R", "H", "J", "G"]], - "hearers": null, - "hearest": null, - "hearings": null, - "heatedly": null, - "heated": [["U", "A"]], - "unheated": null, - "reheated": null, - "heater": [["M"]], - "heater's": null, - "heathendom": [["S", "M"]], - "heathendoms": null, - "heathendom's": null, - "heathenish": [["Y"]], - "heathenishly": null, - "heathenism": [["M", "S"]], - "heathenism's": null, - "heathenisms": null, - "heathen": [["M"]], - "heathen's": null, - "heather": [["M"]], - "heather's": null, - "Heather": [["M"]], - "Heather's": null, - "heathery": null, - "Heathkit": [["M"]], - "Heathkit's": null, - "heathland": null, - "Heathman": [["M"]], - "Heathman's": null, - "Heath": [["M", "R"]], - "Heath's": null, - "heath": [["M", "R", "N", "Z", "X"]], - "heath's": null, - "heathers": null, - "heathens": null, - "heaths": null, - "heatproof": null, - "heats": [["A"]], - "reheats": null, - "heat": [["S", "M", "D", "R", "G", "Z", "B", "J"]], - "heat's": null, - "heating": null, - "heaters": null, - "heatable": null, - "heatings": null, - "heatstroke": [["M", "S"]], - "heatstroke's": null, - "heatstrokes": null, - "heatwave": null, - "heave": [["D", "S", "R", "G", "Z"]], - "heaved": null, - "heaves": [["M"]], - "heaver": [["M"]], - "heaving": null, - "heavers": null, - "heavenliness": [["M"]], - "heavenliness's": null, - "heavenly": [["P", "T", "R"]], - "heavenliest": null, - "heavenlier": null, - "heaven": [["S", "Y", "M"]], - "heavens": null, - "heaven's": null, - "heavenward": [["S"]], - "heavenwards": null, - "heaver's": null, - "heaves's": null, - "heavily": null, - "heaviness": [["M", "S"]], - "heaviness's": null, - "heavinesses": null, - "Heaviside": [["M"]], - "Heaviside's": null, - "heavyhearted": null, - "heavyset": null, - "heavy": [["T", "P", "R", "S"]], - "heaviest": null, - "heavier": null, - "heavies": null, - "heavyweight": [["S", "M"]], - "heavyweights": null, - "heavyweight's": null, - "Hebe": [["M"]], - "Hebe's": null, - "hebephrenic": null, - "Hebert": [["M"]], - "Hebert's": null, - "Heb": [["M"]], - "Heb's": null, - "Hebraic": null, - "Hebraism": [["M", "S"]], - "Hebraism's": null, - "Hebraisms": null, - "Hebrew": [["S", "M"]], - "Hebrews": null, - "Hebrew's": null, - "Hebrides": [["M"]], - "Hebrides's": null, - "Hecate": [["M"]], - "Hecate's": null, - "hecatomb": [["M"]], - "hecatomb's": null, - "heckler": [["M"]], - "heckler's": null, - "heckle": [["R", "S", "D", "Z", "G"]], - "heckles": null, - "heckled": null, - "hecklers": null, - "heckling": null, - "heck": [["S"]], - "hecks": null, - "hectare": [["M", "S"]], - "hectare's": null, - "hectares": null, - "hectically": null, - "hectic": [["S"]], - "hectics": null, - "hectogram": [["M", "S"]], - "hectogram's": null, - "hectograms": null, - "hectometer": [["S", "M"]], - "hectometers": null, - "hectometer's": null, - "Hector": [["M"]], - "Hector's": null, - "hector": [["S", "G", "D"]], - "hectors": null, - "hectoring": null, - "hectored": null, - "Hecuba": [["M"]], - "Hecuba's": null, - "he'd": null, - "Heda": [["M"]], - "Heda's": null, - "Hedda": [["M"]], - "Hedda's": null, - "Heddie": [["M"]], - "Heddie's": null, - "Heddi": [["M"]], - "Heddi's": null, - "hedge": [["D", "S", "R", "G", "M", "Z"]], - "hedged": null, - "hedges": null, - "hedger": [["M"]], - "hedging": [["Y"]], - "hedge's": null, - "hedgers": null, - "hedgehog": [["M", "S"]], - "hedgehog's": null, - "hedgehogs": null, - "hedgehopped": null, - "hedgehopping": null, - "hedgehop": [["S"]], - "hedgehops": null, - "hedger's": null, - "hedgerow": [["S", "M"]], - "hedgerows": null, - "hedgerow's": null, - "hedgingly": null, - "Hedi": [["M"]], - "Hedi's": null, - "hedonism": [["S", "M"]], - "hedonisms": null, - "hedonism's": null, - "hedonistic": null, - "hedonist": [["M", "S"]], - "hedonist's": null, - "hedonists": null, - "Hedvige": [["M"]], - "Hedvige's": null, - "Hedvig": [["M"]], - "Hedvig's": null, - "Hedwiga": [["M"]], - "Hedwiga's": null, - "Hedwig": [["M"]], - "Hedwig's": null, - "Hedy": [["M"]], - "Hedy's": null, - "heeded": [["U"]], - "unheeded": null, - "heedfulness": [["M"]], - "heedfulness's": null, - "heedful": [["P", "Y"]], - "heedfully": null, - "heeding": [["U"]], - "unheeding": null, - "heedlessness": [["S", "M"]], - "heedlessnesses": null, - "heedlessness's": null, - "heedless": [["Y", "P"]], - "heedlessly": null, - "heed": [["S", "M", "G", "D"]], - "heeds": null, - "heed's": null, - "heehaw": [["D", "G", "S"]], - "heehawed": null, - "heehawing": null, - "heehaws": null, - "heeler": [["M"]], - "heeler's": null, - "heeling": [["M"]], - "heeling's": null, - "heelless": null, - "heel": [["S", "G", "Z", "M", "D", "R"]], - "heels": null, - "heelers": null, - "heel's": null, - "heeled": null, - "Heep": [["M"]], - "Heep's": null, - "Hefner": [["M"]], - "Hefner's": null, - "heft": [["G", "S", "D"]], - "hefting": null, - "hefts": null, - "hefted": null, - "heftily": null, - "heftiness": [["S", "M"]], - "heftinesses": null, - "heftiness's": null, - "hefty": [["T", "R", "P"]], - "heftiest": null, - "heftier": null, - "Hegelian": null, - "Hegel": [["M"]], - "Hegel's": null, - "hegemonic": null, - "hegemony": [["M", "S"]], - "hegemony's": null, - "hegemonies": null, - "Hegira": [["M"]], - "Hegira's": null, - "hegira": [["S"]], - "hegiras": null, - "Heida": [["M"]], - "Heida's": null, - "Heidegger": [["M"]], - "Heidegger's": null, - "Heidelberg": [["M"]], - "Heidelberg's": null, - "Heidie": [["M"]], - "Heidie's": null, - "Heidi": [["M"]], - "Heidi's": null, - "heifer": [["M", "S"]], - "heifer's": null, - "heifers": null, - "Heifetz": [["M"]], - "Heifetz's": null, - "heighten": [["G", "D"]], - "heightening": null, - "heightened": null, - "height": [["S", "M", "N", "X"]], - "heights": null, - "height's": null, - "heightens": null, - "Heimlich": [["M"]], - "Heimlich's": null, - "Heindrick": [["M"]], - "Heindrick's": null, - "Heineken": [["M"]], - "Heineken's": null, - "Heine": [["M"]], - "Heine's": null, - "Heinlein": [["M"]], - "Heinlein's": null, - "heinousness": [["S", "M"]], - "heinousnesses": null, - "heinousness's": null, - "heinous": [["P", "Y"]], - "heinously": null, - "Heinrich": [["M"]], - "Heinrich's": null, - "Heinrick": [["M"]], - "Heinrick's": null, - "Heinrik": [["M"]], - "Heinrik's": null, - "Heinze": [["M"]], - "Heinze's": null, - "Heinz": [["M"]], - "Heinz's": null, - "heiress": [["M", "S"]], - "heiress's": null, - "heiresses": null, - "heirloom": [["M", "S"]], - "heirloom's": null, - "heirlooms": null, - "heir": [["S", "D", "M", "G"]], - "heirs": null, - "heired": null, - "heir's": null, - "heiring": null, - "Heisenberg": [["M"]], - "Heisenberg's": null, - "Heiser": [["M"]], - "Heiser's": null, - "heister": [["M"]], - "heister's": null, - "heist": [["G", "S", "M", "R", "D"]], - "heisting": null, - "heists": null, - "heist's": null, - "heisted": null, - "Hejira's": null, - "Helaina": [["M"]], - "Helaina's": null, - "Helaine": [["M"]], - "Helaine's": null, - "held": null, - "Helena": [["M"]], - "Helena's": null, - "Helene": [["M"]], - "Helene's": null, - "Helenka": [["M"]], - "Helenka's": null, - "Helen": [["M"]], - "Helen's": null, - "Helga": [["M"]], - "Helga's": null, - "Helge": [["M"]], - "Helge's": null, - "helical": [["Y"]], - "helically": null, - "helices": [["M"]], - "helices's": null, - "helicon": [["M"]], - "helicon's": null, - "Helicon": [["M"]], - "Helicon's": null, - "helicopter": [["G", "S", "M", "D"]], - "helicoptering": null, - "helicopters": null, - "helicopter's": null, - "helicoptered": null, - "heliocentric": null, - "heliography": [["M"]], - "heliography's": null, - "Heliopolis": [["M"]], - "Heliopolis's": null, - "Helios": [["M"]], - "Helios's": null, - "heliosphere": null, - "heliotrope": [["S", "M"]], - "heliotropes": null, - "heliotrope's": null, - "heliport": [["M", "S"]], - "heliport's": null, - "heliports": null, - "helium": [["M", "S"]], - "helium's": null, - "heliums": null, - "helix": [["M"]], - "helix's": null, - "he'll": null, - "hellbender": [["M"]], - "hellbender's": null, - "hellbent": null, - "hellcat": [["S", "M"]], - "hellcats": null, - "hellcat's": null, - "hellebore": [["S", "M"]], - "hellebores": null, - "hellebore's": null, - "Hellene": [["S", "M"]], - "Hellenes": null, - "Hellene's": null, - "Hellenic": null, - "Hellenism": [["M", "S"]], - "Hellenism's": null, - "Hellenisms": null, - "Hellenistic": null, - "Hellenist": [["M", "S"]], - "Hellenist's": null, - "Hellenists": null, - "Hellenization": [["M"]], - "Hellenization's": null, - "Hellenize": null, - "heller": [["M"]], - "heller's": null, - "Heller": [["M"]], - "Heller's": null, - "Hellespont": [["M"]], - "Hellespont's": null, - "hellfire": [["M"]], - "hellfire's": null, - "hell": [["G", "S", "M", "D", "R"]], - "helling": null, - "hells": null, - "hell's": null, - "helled": null, - "hellhole": [["S", "M"]], - "hellholes": null, - "hellhole's": null, - "Helli": [["M"]], - "Helli's": null, - "hellion": [["S", "M"]], - "hellions": null, - "hellion's": null, - "hellishness": [["S", "M"]], - "hellishnesses": null, - "hellishness's": null, - "hellish": [["P", "Y"]], - "hellishly": null, - "Hellman": [["M"]], - "Hellman's": null, - "hello": [["G", "M", "S"]], - "helloing": null, - "hello's": null, - "hellos": null, - "Hell's": null, - "helluva": null, - "helmed": null, - "helmet": [["G", "S", "M", "D"]], - "helmeting": null, - "helmets": null, - "helmet's": null, - "helmeted": null, - "Helmholtz": [["M"]], - "Helmholtz's": null, - "helming": null, - "helms": null, - "helm's": null, - "helmsman": [["M"]], - "helmsman's": null, - "helmsmen": null, - "helm": [["U"]], - "unhelm": null, - "Helmut": [["M"]], - "Helmut's": null, - "H�loise": [["M"]], - "H�loise's": null, - "helot": [["S"]], - "helots": null, - "helper": [["M"]], - "helper's": null, - "helpfulness": [["M", "S"]], - "helpfulness's": null, - "helpfulnesses": null, - "helpful": [["U", "Y"]], - "unhelpful": null, - "unhelpfully": null, - "helpfully": null, - "help": [["G", "Z", "S", "J", "D", "R"]], - "helping": [["M"]], - "helpers": null, - "helps": null, - "helpings": null, - "helped": null, - "helping's": null, - "helplessness": [["S", "M"]], - "helplessnesses": null, - "helplessness's": null, - "helpless": [["Y", "P"]], - "helplessly": null, - "helpline": [["S"]], - "helplines": null, - "helpmate": [["S", "M"]], - "helpmates": null, - "helpmate's": null, - "helpmeet's": null, - "Helsa": [["M"]], - "Helsa's": null, - "Helsinki": [["M"]], - "Helsinki's": null, - "helve": [["G", "M", "D", "S"]], - "helving": null, - "helve's": null, - "helved": null, - "helves": null, - "Helvetian": [["S"]], - "Helvetians": null, - "Helvetius": [["M"]], - "Helvetius's": null, - "Helyn": [["M"]], - "Helyn's": null, - "He": [["M"]], - "He's": null, - "hematite": [["M", "S"]], - "hematite's": null, - "hematites": null, - "hematologic": null, - "hematological": null, - "hematologist": [["S", "M"]], - "hematologists": null, - "hematologist's": null, - "hematology": [["M", "S"]], - "hematology's": null, - "hematologies": null, - "heme": [["M", "S"]], - "heme's": null, - "hemes": null, - "Hemingway": [["M"]], - "Hemingway's": null, - "hemisphere": [["M", "S", "D"]], - "hemisphere's": null, - "hemispheres": null, - "hemisphered": null, - "hemispheric": null, - "hemispherical": null, - "hemline": [["S", "M"]], - "hemlines": null, - "hemline's": null, - "hemlock": [["M", "S"]], - "hemlock's": null, - "hemlocks": null, - "hemmed": null, - "hemmer": [["S", "M"]], - "hemmers": null, - "hemmer's": null, - "hemming": null, - "hem": [["M", "S"]], - "hem's": null, - "hems": null, - "hemoglobin": [["M", "S"]], - "hemoglobin's": null, - "hemoglobins": null, - "hemolytic": null, - "hemophiliac": [["S", "M"]], - "hemophiliacs": null, - "hemophiliac's": null, - "hemophilia": [["S", "M"]], - "hemophilias": null, - "hemophilia's": null, - "hemorrhage": [["G", "M", "D", "S"]], - "hemorrhaging": null, - "hemorrhage's": null, - "hemorrhaged": null, - "hemorrhages": null, - "hemorrhagic": null, - "hemorrhoid": [["M", "S"]], - "hemorrhoid's": null, - "hemorrhoids": null, - "hemostat": [["S", "M"]], - "hemostats": null, - "hemostat's": null, - "hemp": [["M", "N", "S"]], - "hemp's": null, - "hempen": null, - "hemps": null, - "h": [["E", "M", "S"]], - "dish's": null, - "dishes": null, - "h's": null, - "hes": null, - "hemstitch": [["D", "S", "M", "G"]], - "hemstitched": null, - "hemstitches": null, - "hemstitch's": null, - "hemstitching": null, - "henceforth": null, - "henceforward": null, - "hence": [["S"]], - "hences": null, - "Hench": [["M"]], - "Hench's": null, - "henchman": [["M"]], - "henchman's": null, - "henchmen": null, - "Henderson": [["M"]], - "Henderson's": null, - "Hendrick": [["S", "M"]], - "Hendricks": null, - "Hendrick's": null, - "Hendrickson": [["M"]], - "Hendrickson's": null, - "Hendrika": [["M"]], - "Hendrika's": null, - "Hendrik": [["M"]], - "Hendrik's": null, - "Hendrix": [["M"]], - "Hendrix's": null, - "henge": [["M"]], - "henge's": null, - "Henka": [["M"]], - "Henka's": null, - "Henley": [["M"]], - "Henley's": null, - "hen": [["M", "S"]], - "hen's": null, - "hens": null, - "henna": [["M", "D", "S", "G"]], - "henna's": null, - "hennaed": null, - "hennas": null, - "hennaing": null, - "Hennessey": [["M"]], - "Hennessey's": null, - "henning": null, - "henpeck": [["G", "S", "D"]], - "henpecking": null, - "henpecks": null, - "henpecked": null, - "Henrie": [["M"]], - "Henrie's": null, - "Henrieta": [["M"]], - "Henrieta's": null, - "Henrietta": [["M"]], - "Henrietta's": null, - "Henriette": [["M"]], - "Henriette's": null, - "Henrik": [["M"]], - "Henrik's": null, - "Henri": [["M"]], - "Henri's": null, - "Henryetta": [["M"]], - "Henryetta's": null, - "henry": [["M"]], - "henry's": null, - "Henry": [["M"]], - "Henry's": null, - "Hensley": [["M"]], - "Hensley's": null, - "Henson": [["M"]], - "Henson's": null, - "heparin": [["M", "S"]], - "heparin's": null, - "heparins": null, - "hepatic": [["S"]], - "hepatics": null, - "hepatitides": null, - "hepatitis": [["M"]], - "hepatitis's": null, - "Hepburn": [["M"]], - "Hepburn's": null, - "Hephaestus": [["M"]], - "Hephaestus's": null, - "Hephzibah": [["M"]], - "Hephzibah's": null, - "hepper": null, - "heppest": null, - "Hepplewhite": null, - "hep": [["S"]], - "heps": null, - "heptagonal": null, - "heptagon": [["S", "M"]], - "heptagons": null, - "heptagon's": null, - "heptane": [["M"]], - "heptane's": null, - "heptathlon": [["S"]], - "heptathlons": null, - "her": null, - "Heracles": [["M"]], - "Heracles's": null, - "Heraclitus": [["M"]], - "Heraclitus's": null, - "heralded": [["U"]], - "unheralded": null, - "heraldic": null, - "herald": [["M", "D", "S", "G"]], - "herald's": null, - "heralds": null, - "heralding": null, - "heraldry": [["M", "S"]], - "heraldry's": null, - "heraldries": null, - "Hera": [["M"]], - "Hera's": null, - "herbaceous": null, - "herbage": [["M", "S"]], - "herbage's": null, - "herbages": null, - "herbalism": null, - "herbalist": [["M", "S"]], - "herbalist's": null, - "herbalists": null, - "herbal": [["S"]], - "herbals": null, - "Herbart": [["M"]], - "Herbart's": null, - "Herbert": [["M"]], - "Herbert's": null, - "herbicidal": null, - "herbicide": [["M", "S"]], - "herbicide's": null, - "herbicides": null, - "Herbie": [["M"]], - "Herbie's": null, - "herbivore": [["S", "M"]], - "herbivores": null, - "herbivore's": null, - "herbivorous": [["Y"]], - "herbivorously": null, - "Herb": [["M"]], - "Herb's": null, - "herb": [["M", "S"]], - "herb's": null, - "herbs": null, - "Herby": [["M"]], - "Herby's": null, - "Herc": [["M"]], - "Herc's": null, - "Herculaneum": [["M"]], - "Herculaneum's": null, - "herculean": null, - "Herculean": null, - "Hercule": [["M", "S"]], - "Hercule's": null, - "Hercules": null, - "Herculie": [["M"]], - "Herculie's": null, - "herder": [["M"]], - "herder's": null, - "Herder": [["M"]], - "Herder's": null, - "herd": [["M", "D", "R", "G", "Z", "S"]], - "herd's": null, - "herded": null, - "herding": null, - "herders": null, - "herds": null, - "herdsman": [["M"]], - "herdsman's": null, - "herdsmen": null, - "hereabout": [["S"]], - "hereabouts": null, - "hereafter": [["S"]], - "hereafters": null, - "hereby": null, - "hereditary": null, - "heredity": [["M", "S"]], - "heredity's": null, - "heredities": null, - "Hereford": [["S", "M"]], - "Herefords": null, - "Hereford's": null, - "herein": null, - "hereinafter": null, - "here": [["I", "S"]], - "inhere": [["D", "G"]], - "inheres": null, - "heres": [["M"]], - "hereof": null, - "hereon": null, - "here's": null, - "heres's": null, - "heresy": [["S", "M"]], - "heresies": null, - "heresy's": null, - "heretical": null, - "heretic": [["S", "M"]], - "heretics": null, - "heretic's": null, - "hereto": null, - "heretofore": null, - "hereunder": null, - "hereunto": null, - "hereupon": null, - "herewith": null, - "Heriberto": [["M"]], - "Heriberto's": null, - "heritable": null, - "heritage": [["M", "S"]], - "heritage's": null, - "heritages": null, - "heritor": [["I", "M"]], - "inheritor": [["S"]], - "inheritor's": null, - "heritor's": null, - "Herkimer": [["M"]], - "Herkimer's": null, - "Herman": [["M"]], - "Herman's": null, - "Hermann": [["M"]], - "Hermann's": null, - "hermaphrodite": [["S", "M"]], - "hermaphrodites": null, - "hermaphrodite's": null, - "hermaphroditic": null, - "Hermaphroditus": [["M"]], - "Hermaphroditus's": null, - "hermeneutic": [["S"]], - "hermeneutics": [["M"]], - "hermeneutics's": null, - "Hermes": null, - "hermetical": [["Y"]], - "hermetically": null, - "hermetic": [["S"]], - "hermetics": null, - "Hermia": [["M"]], - "Hermia's": null, - "Hermie": [["M"]], - "Hermie's": null, - "Hermina": [["M"]], - "Hermina's": null, - "Hermine": [["M"]], - "Hermine's": null, - "Herminia": [["M"]], - "Herminia's": null, - "Hermione": [["M"]], - "Hermione's": null, - "hermitage": [["S", "M"]], - "hermitages": null, - "hermitage's": null, - "Hermite": [["M"]], - "Hermite's": null, - "hermitian": null, - "hermit": [["M", "S"]], - "hermit's": null, - "hermits": null, - "Hermon": [["M"]], - "Hermon's": null, - "Hermosa": [["M"]], - "Hermosa's": null, - "Hermosillo": [["M"]], - "Hermosillo's": null, - "Hermy": [["M"]], - "Hermy's": null, - "Hernandez": [["M"]], - "Hernandez's": null, - "Hernando": [["M"]], - "Hernando's": null, - "hernial": null, - "hernia": [["M", "S"]], - "hernia's": null, - "hernias": null, - "herniate": [["N", "G", "X", "D", "S"]], - "herniation": null, - "herniating": null, - "herniations": null, - "herniated": null, - "herniates": null, - "Herod": [["M"]], - "Herod's": null, - "Herodotus": [["M"]], - "Herodotus's": null, - "heroes": null, - "heroically": null, - "heroics": null, - "heroic": [["U"]], - "unheroic": null, - "heroine": [["S", "M"]], - "heroines": null, - "heroine's": null, - "heroin": [["M", "S"]], - "heroin's": null, - "heroins": null, - "heroism": [["S", "M"]], - "heroisms": null, - "heroism's": null, - "Herold": [["M"]], - "Herold's": null, - "hero": [["M"]], - "hero's": null, - "heron": [["S", "M"]], - "herons": null, - "heron's": null, - "herpes": [["M"]], - "herpes's": null, - "herpetologist": [["S", "M"]], - "herpetologists": null, - "herpetologist's": null, - "herpetology": [["M", "S"]], - "herpetology's": null, - "herpetologies": null, - "Herrera": [["M"]], - "Herrera's": null, - "Herrick": [["M"]], - "Herrick's": null, - "herringbone": [["S", "D", "G", "M"]], - "herringbones": null, - "herringboned": null, - "herringboning": null, - "herringbone's": null, - "Herring": [["M"]], - "Herring's": null, - "herring": [["S", "M"]], - "herrings": null, - "herring's": null, - "Herrington": [["M"]], - "Herrington's": null, - "Herr": [["M", "G"]], - "Herr's": null, - "Herschel": [["M"]], - "Herschel's": null, - "Hersch": [["M"]], - "Hersch's": null, - "herself": null, - "Hersey": [["M"]], - "Hersey's": null, - "Hershel": [["M"]], - "Hershel's": null, - "Hershey": [["M"]], - "Hershey's": null, - "Hersh": [["M"]], - "Hersh's": null, - "Herta": [["M"]], - "Herta's": null, - "Hertha": [["M"]], - "Hertha's": null, - "hertz": [["M"]], - "hertz's": null, - "Hertz": [["M"]], - "Hertz's": null, - "Hertzog": [["M"]], - "Hertzog's": null, - "Hertzsprung": [["M"]], - "Hertzsprung's": null, - "Herve": [["M"]], - "Herve's": null, - "Hervey": [["M"]], - "Hervey's": null, - "Herzegovina": [["M"]], - "Herzegovina's": null, - "Herzl": [["M"]], - "Herzl's": null, - "Hesiod": [["M"]], - "Hesiod's": null, - "hesitance": [["S"]], - "hesitances": null, - "hesitancy": [["S", "M"]], - "hesitancies": null, - "hesitancy's": null, - "hesitantly": null, - "hesitant": [["U"]], - "unhesitant": null, - "hesitater": [["M"]], - "hesitater's": null, - "hesitate": [["X", "D", "R", "S", "N", "G"]], - "hesitations": null, - "hesitated": null, - "hesitates": null, - "hesitation": [["M"]], - "hesitating": [["U", "Y"]], - "unhesitating": null, - "unhesitatingly": null, - "hesitatingly": null, - "hesitation's": null, - "Hesperus": [["M"]], - "Hesperus's": null, - "Hesse": [["M"]], - "Hesse's": null, - "Hessian": [["M", "S"]], - "Hessian's": null, - "Hessians": null, - "Hess": [["M"]], - "Hess's": null, - "Hester": [["M"]], - "Hester's": null, - "Hesther": [["M"]], - "Hesther's": null, - "Hestia": [["M"]], - "Hestia's": null, - "Heston": [["M"]], - "Heston's": null, - "heterodox": null, - "heterodoxy": [["M", "S"]], - "heterodoxy's": null, - "heterodoxies": null, - "heterodyne": null, - "heterogamous": null, - "heterogamy": [["M"]], - "heterogamy's": null, - "heterogeneity": [["S", "M"]], - "heterogeneities": null, - "heterogeneity's": null, - "heterogeneousness": [["M"]], - "heterogeneousness's": null, - "heterogeneous": [["P", "Y"]], - "heterogeneously": null, - "heterosexuality": [["S", "M"]], - "heterosexualities": null, - "heterosexuality's": null, - "heterosexual": [["Y", "M", "S"]], - "heterosexually": null, - "heterosexual's": null, - "heterosexuals": null, - "heterostructure": null, - "heterozygous": null, - "Hettie": [["M"]], - "Hettie's": null, - "Hetti": [["M"]], - "Hetti's": null, - "Hetty": [["M"]], - "Hetty's": null, - "Heublein": [["M"]], - "Heublein's": null, - "heuristically": null, - "heuristic": [["S", "M"]], - "heuristics": null, - "heuristic's": null, - "Heusen": [["M"]], - "Heusen's": null, - "Heuser": [["M"]], - "Heuser's": null, - "he": [["V", "M", "Z"]], - "hive": [["M", "G", "D", "S"]], - "he's": null, - "hers": null, - "hew": [["D", "R", "Z", "G", "S"]], - "hewed": null, - "hewer": [["M"]], - "hewers": null, - "hewing": null, - "hews": null, - "Hewe": [["M"]], - "Hewe's": null, - "hewer's": null, - "Hewet": [["M"]], - "Hewet's": null, - "Hewett": [["M"]], - "Hewett's": null, - "Hewie": [["M"]], - "Hewie's": null, - "Hewitt": [["M"]], - "Hewitt's": null, - "Hewlett": [["M"]], - "Hewlett's": null, - "Hew": [["M"]], - "Hew's": null, - "hexachloride": [["M"]], - "hexachloride's": null, - "hexadecimal": [["Y", "S"]], - "hexadecimally": null, - "hexadecimals": null, - "hexafluoride": [["M"]], - "hexafluoride's": null, - "hexagonal": [["Y"]], - "hexagonally": null, - "hexagon": [["S", "M"]], - "hexagons": null, - "hexagon's": null, - "hexagram": [["S", "M"]], - "hexagrams": null, - "hexagram's": null, - "hexameter": [["S", "M"]], - "hexameters": null, - "hexameter's": null, - "hex": [["D", "S", "R", "G"]], - "hexed": null, - "hexes": null, - "hexer": [["M"]], - "hexing": null, - "hexer's": null, - "hey": null, - "heyday": [["M", "S"]], - "heyday's": null, - "heydays": null, - "Heyerdahl": [["M"]], - "Heyerdahl's": null, - "Heywood": [["M"]], - "Heywood's": null, - "Hezekiah": [["M"]], - "Hezekiah's": null, - "hf": null, - "HF": null, - "Hf": [["M"]], - "Hf's": null, - "Hg": [["M"]], - "Hg's": null, - "hgt": null, - "hgwy": null, - "HHS": null, - "HI": null, - "Hialeah": [["M"]], - "Hialeah's": null, - "hiatus": [["S", "M"]], - "hiatuses": null, - "hiatus's": null, - "Hiawatha": [["M"]], - "Hiawatha's": null, - "hibachi": [["M", "S"]], - "hibachi's": null, - "hibachis": null, - "hibernate": [["X", "G", "N", "S", "D"]], - "hibernations": null, - "hibernating": null, - "hibernation": [["M"]], - "hibernates": null, - "hibernated": null, - "hibernation's": null, - "hibernator": [["S", "M"]], - "hibernators": null, - "hibernator's": null, - "Hibernia": [["M"]], - "Hibernia's": null, - "Hibernian": [["S"]], - "Hibernians": null, - "hibiscus": [["M", "S"]], - "hibiscus's": null, - "hibiscuses": null, - "hiccup": [["M", "D", "G", "S"]], - "hiccup's": null, - "hiccuped": null, - "hiccuping": null, - "hiccups": null, - "hickey": [["S", "M"]], - "hickeys": null, - "hickey's": null, - "Hickey": [["S", "M"]], - "Hickeys": null, - "Hickey's": null, - "Hickman": [["M"]], - "Hickman's": null, - "Hickok": [["M"]], - "Hickok's": null, - "hickory": [["M", "S"]], - "hickory's": null, - "hickories": null, - "hick": [["S", "M"]], - "hicks": null, - "hick's": null, - "Hicks": [["M"]], - "Hicks's": null, - "hi": [["D"]], - "hied": null, - "hidden": [["U"]], - "unhidden": null, - "hideaway": [["S", "M"]], - "hideaways": null, - "hideaway's": null, - "hidebound": null, - "hideousness": [["S", "M"]], - "hideousnesses": null, - "hideousness's": null, - "hideous": [["Y", "P"]], - "hideously": null, - "hideout": [["M", "S"]], - "hideout's": null, - "hideouts": null, - "hider": [["M"]], - "hider's": null, - "hide": [["S"]], - "hides": null, - "hiding": [["M"]], - "hiding's": null, - "hid": [["Z", "D", "R", "G", "J"]], - "hiders": null, - "hided": null, - "hidings": null, - "hieing": null, - "hierarchal": null, - "hierarchic": null, - "hierarchical": [["Y"]], - "hierarchically": null, - "hierarchy": [["S", "M"]], - "hierarchies": null, - "hierarchy's": null, - "hieratic": null, - "hieroglyph": null, - "hieroglyphic": [["S"]], - "hieroglyphics": [["M"]], - "hieroglyphics's": null, - "hieroglyphs": null, - "Hieronymus": [["M"]], - "Hieronymus's": null, - "hie": [["S"]], - "hies": null, - "hifalutin": null, - "Higashiosaka": null, - "Higgins": [["M"]], - "Higgins's": null, - "highball": [["G", "S", "D", "M"]], - "highballing": null, - "highballs": null, - "highballed": null, - "highball's": null, - "highborn": null, - "highboy": [["M", "S"]], - "highboy's": null, - "highboys": null, - "highbrow": [["S", "M"]], - "highbrows": null, - "highbrow's": null, - "highchair": [["S", "M"]], - "highchairs": null, - "highchair's": null, - "highfalutin": null, - "Highfield": [["M"]], - "Highfield's": null, - "highhandedness": [["S", "M"]], - "highhandednesses": null, - "highhandedness's": null, - "highhanded": [["P", "Y"]], - "highhandedly": null, - "highish": null, - "Highlander": [["S", "M"]], - "Highlanders": null, - "Highlander's": null, - "Highlands": null, - "highland": [["Z", "S", "R", "M"]], - "highlanders": null, - "highlands": null, - "highlander": null, - "highland's": null, - "highlight": [["G", "Z", "R", "D", "M", "S"]], - "highlighting": null, - "highlighters": null, - "highlighter": null, - "highlighted": null, - "highlight's": null, - "highlights": null, - "Highness": [["M"]], - "Highness's": null, - "highness": [["M", "S"]], - "highness's": null, - "highnesses": null, - "highpoint": null, - "high": [["P", "Y", "R", "T"]], - "highly": null, - "higher": null, - "highest": null, - "highroad": [["M", "S"]], - "highroad's": null, - "highroads": null, - "highs": null, - "hight": null, - "hightail": [["D", "G", "S"]], - "hightailed": null, - "hightailing": null, - "hightails": null, - "highwayman": [["M"]], - "highwayman's": null, - "highwaymen": null, - "highway": [["M", "S"]], - "highway's": null, - "highways": null, - "hijacker": [["M"]], - "hijacker's": null, - "hijack": [["J", "Z", "R", "D", "G", "S"]], - "hijackings": null, - "hijackers": null, - "hijacked": null, - "hijacking": null, - "hijacks": null, - "hiker": [["M"]], - "hiker's": null, - "hike": [["Z", "G", "D", "S", "R"]], - "hikers": null, - "hiking": null, - "hiked": null, - "hikes": null, - "Hilario": [["M"]], - "Hilario's": null, - "hilariousness": [["M", "S"]], - "hilariousness's": null, - "hilariousnesses": null, - "hilarious": [["Y", "P"]], - "hilariously": null, - "hilarity": [["M", "S"]], - "hilarity's": null, - "hilarities": null, - "Hilarius": [["M"]], - "Hilarius's": null, - "Hilary": [["M"]], - "Hilary's": null, - "Hilbert": [["M"]], - "Hilbert's": null, - "Hildagarde": [["M"]], - "Hildagarde's": null, - "Hildagard": [["M"]], - "Hildagard's": null, - "Hilda": [["M"]], - "Hilda's": null, - "Hildebrand": [["M"]], - "Hildebrand's": null, - "Hildegaard": [["M"]], - "Hildegaard's": null, - "Hildegarde": [["M"]], - "Hildegarde's": null, - "Hilde": [["M"]], - "Hilde's": null, - "Hildy": [["M"]], - "Hildy's": null, - "Hillard": [["M"]], - "Hillard's": null, - "Hillary": [["M"]], - "Hillary's": null, - "hillbilly": [["M", "S"]], - "hillbilly's": null, - "hillbillies": null, - "Hillcrest": [["M"]], - "Hillcrest's": null, - "Hillel": [["M"]], - "Hillel's": null, - "hiller": [["M"]], - "hiller's": null, - "Hillery": [["M"]], - "Hillery's": null, - "hill": [["G", "S", "M", "D", "R"]], - "hilling": null, - "hills": null, - "hill's": null, - "hilled": null, - "Hilliard": [["M"]], - "Hilliard's": null, - "Hilliary": [["M"]], - "Hilliary's": null, - "Hillie": [["M"]], - "Hillie's": null, - "Hillier": [["M"]], - "Hillier's": null, - "hilliness": [["S", "M"]], - "hillinesses": null, - "hilliness's": null, - "Hill": [["M"]], - "Hill's": null, - "hillman": null, - "hillmen": null, - "hillock": [["S", "M"]], - "hillocks": null, - "hillock's": null, - "Hillsboro": [["M"]], - "Hillsboro's": null, - "Hillsdale": [["M"]], - "Hillsdale's": null, - "hillside": [["S", "M"]], - "hillsides": null, - "hillside's": null, - "hilltop": [["M", "S"]], - "hilltop's": null, - "hilltops": null, - "hillwalking": null, - "Hillyer": [["M"]], - "Hillyer's": null, - "Hilly": [["R", "M"]], - "Hilly's": null, - "hilly": [["T", "R", "P"]], - "hilliest": null, - "hillier": null, - "hilt": [["M", "D", "G", "S"]], - "hilt's": null, - "hilted": null, - "hilting": null, - "hilts": null, - "Hilton": [["M"]], - "Hilton's": null, - "Hi": [["M"]], - "Hi's": null, - "Himalaya": [["M", "S"]], - "Himalaya's": null, - "Himalayas": null, - "Himalayan": [["S"]], - "Himalayans": null, - "Himmler": [["M"]], - "Himmler's": null, - "him": [["S"]], - "hims": null, - "himself": null, - "Hinayana": [["M"]], - "Hinayana's": null, - "Hinda": [["M"]], - "Hinda's": null, - "Hindemith": [["M"]], - "Hindemith's": null, - "Hindenburg": [["M"]], - "Hindenburg's": null, - "hindered": [["U"]], - "unhindered": null, - "hinderer": [["M"]], - "hinderer's": null, - "hinder": [["G", "R", "D"]], - "hindering": null, - "Hindi": [["M"]], - "Hindi's": null, - "hindmost": null, - "hindquarter": [["S", "M"]], - "hindquarters": null, - "hindquarter's": null, - "hindrance": [["S", "M"]], - "hindrances": null, - "hindrance's": null, - "hind": [["R", "S", "Z"]], - "hinds": null, - "hinders": null, - "hindsight": [["S", "M"]], - "hindsights": null, - "hindsight's": null, - "Hinduism": [["S", "M"]], - "Hinduisms": null, - "Hinduism's": null, - "Hindu": [["M", "S"]], - "Hindu's": null, - "Hindus": null, - "Hindustani": [["M", "S"]], - "Hindustani's": null, - "Hindustanis": null, - "Hindustan": [["M"]], - "Hindustan's": null, - "Hines": [["M"]], - "Hines's": null, - "hinger": null, - "hinge's": null, - "hinge": [["U", "D", "S", "G"]], - "unhinge": null, - "unhinged": null, - "unhinges": null, - "unhinging": null, - "hinged": null, - "hinges": null, - "hinging": null, - "Hinkle": [["M"]], - "Hinkle's": null, - "Hinsdale": [["M"]], - "Hinsdale's": null, - "hinterland": [["M", "S"]], - "hinterland's": null, - "hinterlands": null, - "hinter": [["M"]], - "hinter's": null, - "hint": [["G", "Z", "M", "D", "R", "S"]], - "hinting": null, - "hinters": null, - "hint's": null, - "hinted": null, - "hints": null, - "Hinton": [["M"]], - "Hinton's": null, - "Hinze": [["M"]], - "Hinze's": null, - "hipbone": [["S", "M"]], - "hipbones": null, - "hipbone's": null, - "hipness": [["S"]], - "hipnesses": null, - "Hipparchus": [["M"]], - "Hipparchus's": null, - "hipped": null, - "hipper": null, - "hippest": null, - "hippie": [["M", "T", "R", "S"]], - "hippie's": null, - "hippiest": null, - "hippier": null, - "hippies": null, - "hipping": [["M"]], - "hipping's": null, - "Hippocrates": [["M"]], - "Hippocrates's": null, - "Hippocratic": null, - "hippodrome": [["M", "S"]], - "hippodrome's": null, - "hippodromes": null, - "hippo": [["M", "S"]], - "hippo's": null, - "hippos": null, - "hippopotamus": [["S", "M"]], - "hippopotamuses": null, - "hippopotamus's": null, - "hip": [["P", "S", "M"]], - "hips": null, - "hip's": null, - "hippy's": null, - "hipster": [["M", "S"]], - "hipster's": null, - "hipsters": null, - "hiragana": null, - "Hiram": [["M"]], - "Hiram's": null, - "hire": [["A", "G", "S", "D"]], - "rehire": null, - "rehiring": null, - "rehires": null, - "rehired": null, - "hiring": [["S"]], - "hires": null, - "hired": null, - "hireling": [["S", "M"]], - "hirelings": null, - "hireling's": null, - "hirer": [["S", "M"]], - "hirers": null, - "hirer's": null, - "Hirey": [["M"]], - "Hirey's": null, - "hirings": null, - "Hirohito": [["M"]], - "Hirohito's": null, - "Hiroshi": [["M"]], - "Hiroshi's": null, - "Hiroshima": [["M"]], - "Hiroshima's": null, - "Hirsch": [["M"]], - "Hirsch's": null, - "hirsuteness": [["M", "S"]], - "hirsuteness's": null, - "hirsutenesses": null, - "hirsute": [["P"]], - "his": null, - "Hispanic": [["S", "M"]], - "Hispanics": null, - "Hispanic's": null, - "Hispaniola": [["M"]], - "Hispaniola's": null, - "hiss": [["D", "S", "R", "M", "J", "G"]], - "hissed": null, - "hisses": null, - "hisser": [["M"]], - "hiss's": null, - "hissings": null, - "hissing": [["M"]], - "hisser's": null, - "hissing's": null, - "Hiss": [["M"]], - "Hiss's": null, - "histamine": [["S", "M"]], - "histamines": null, - "histamine's": null, - "histidine": [["S", "M"]], - "histidines": null, - "histidine's": null, - "histochemic": null, - "histochemical": null, - "histochemistry": [["M"]], - "histochemistry's": null, - "histogram": [["M", "S"]], - "histogram's": null, - "histograms": null, - "histological": null, - "histologist": [["M", "S"]], - "histologist's": null, - "histologists": null, - "histology": [["S", "M"]], - "histologies": null, - "histology's": null, - "historian": [["M", "S"]], - "historian's": null, - "historians": null, - "historic": null, - "historicalness": [["M"]], - "historicalness's": null, - "historical": [["P", "Y"]], - "historically": null, - "historicism": [["M"]], - "historicism's": null, - "historicist": [["M"]], - "historicist's": null, - "historicity": [["M", "S"]], - "historicity's": null, - "historicities": null, - "historiographer": [["S", "M"]], - "historiographers": null, - "historiographer's": null, - "historiography": [["M", "S"]], - "historiography's": null, - "historiographies": null, - "history": [["M", "S"]], - "history's": null, - "histories": null, - "histrionically": null, - "histrionic": [["S"]], - "histrionics": [["M"]], - "histrionics's": null, - "hist": [["S", "D", "G"]], - "hists": null, - "histed": null, - "histing": null, - "Hitachi": [["M"]], - "Hitachi's": null, - "Hitchcock": [["M"]], - "Hitchcock's": null, - "hitcher": [["M", "S"]], - "hitcher's": null, - "hitchers": null, - "hitchhike": [["R", "S", "D", "G", "Z"]], - "hitchhiker": null, - "hitchhikes": null, - "hitchhiked": null, - "hitchhiking": null, - "hitchhikers": null, - "hitch": [["U", "G", "S", "D"]], - "unhitch": null, - "unhitching": null, - "unhitches": null, - "unhitched": null, - "hitching": null, - "hitches": null, - "hitched": null, - "hither": null, - "hitherto": null, - "Hitler": [["S", "M"]], - "Hitlers": null, - "Hitler's": null, - "hitless": null, - "hit": [["M", "S"]], - "hit's": null, - "hits": null, - "hittable": null, - "hitter": [["S", "M"]], - "hitters": null, - "hitter's": null, - "hitting": null, - "Hittite": [["S", "M"]], - "Hittites": null, - "Hittite's": null, - "HIV": null, - "hive's": null, - "hiving": null, - "hived": null, - "hives": null, - "h'm": null, - "HM": null, - "HMO": null, - "Hmong": null, - "HMS": null, - "hoarder": [["M"]], - "hoarder's": null, - "hoarding": [["M"]], - "hoarding's": null, - "hoard": [["R", "D", "J", "Z", "S", "G", "M"]], - "hoarded": null, - "hoardings": null, - "hoarders": null, - "hoards": null, - "hoard's": null, - "hoarfrost": [["S", "M"]], - "hoarfrosts": null, - "hoarfrost's": null, - "hoariness": [["M", "S"]], - "hoariness's": null, - "hoarinesses": null, - "hoar": [["M"]], - "hoar's": null, - "hoarseness": [["S", "M"]], - "hoarsenesses": null, - "hoarseness's": null, - "hoarse": [["R", "T", "Y", "P"]], - "hoarser": null, - "hoarsest": null, - "hoarsely": null, - "hoary": [["T", "P", "R"]], - "hoariest": null, - "hoarier": null, - "hoaxer": [["M"]], - "hoaxer's": null, - "hoax": [["G", "Z", "M", "D", "S", "R"]], - "hoaxing": null, - "hoaxers": null, - "hoax's": null, - "hoaxed": null, - "hoaxes": null, - "Hobard": [["M"]], - "Hobard's": null, - "Hobart": [["M"]], - "Hobart's": null, - "hobbed": null, - "Hobbes": [["M"]], - "Hobbes's": null, - "hobbing": null, - "hobbit": null, - "hobbler": [["M"]], - "hobbler's": null, - "hobble": [["Z", "S", "R", "D", "G"]], - "hobblers": null, - "hobbles": null, - "hobbled": null, - "hobbling": null, - "Hobbs": [["M"]], - "Hobbs's": null, - "hobbyhorse": [["S", "M"]], - "hobbyhorses": null, - "hobbyhorse's": null, - "hobbyist": [["S", "M"]], - "hobbyists": null, - "hobbyist's": null, - "hobby": [["S", "M"]], - "hobbies": null, - "hobby's": null, - "Hobday": [["M"]], - "Hobday's": null, - "Hobey": [["M"]], - "Hobey's": null, - "hobgoblin": [["M", "S"]], - "hobgoblin's": null, - "hobgoblins": null, - "Hobie": [["M"]], - "Hobie's": null, - "hobnail": [["G", "D", "M", "S"]], - "hobnailing": null, - "hobnailed": null, - "hobnail's": null, - "hobnails": null, - "hobnobbed": null, - "hobnobbing": null, - "hobnob": [["S"]], - "hobnobs": null, - "Hoboken": [["M"]], - "Hoboken's": null, - "hobo": [["S", "D", "M", "G"]], - "hobos": null, - "hoboed": null, - "hobo's": null, - "hoboing": null, - "hob": [["S", "M"]], - "hobs": null, - "hob's": null, - "hoc": null, - "hocker": [["M"]], - "hocker's": null, - "hockey": [["S", "M"]], - "hockeys": null, - "hockey's": null, - "hock": [["G", "D", "R", "M", "S"]], - "hocking": null, - "hocked": null, - "hock's": null, - "hocks": null, - "Hockney": [["M"]], - "Hockney's": null, - "hockshop": [["S", "M"]], - "hockshops": null, - "hockshop's": null, - "hodge": [["M", "S"]], - "hodge's": null, - "hodges": null, - "Hodge": [["M", "S"]], - "Hodge's": null, - "Hodges": null, - "hodgepodge": [["S", "M"]], - "hodgepodges": null, - "hodgepodge's": null, - "Hodgkin": [["M"]], - "Hodgkin's": null, - "ho": [["D", "R", "Y", "Z"]], - "hoed": null, - "hoer": [["M"]], - "holy": [["S", "R", "T", "P"]], - "hoers": null, - "hod": [["S", "M"]], - "hods": null, - "hod's": null, - "Hoebart": [["M"]], - "Hoebart's": null, - "hoecake": [["S", "M"]], - "hoecakes": null, - "hoecake's": null, - "hoedown": [["M", "S"]], - "hoedown's": null, - "hoedowns": null, - "hoeing": null, - "hoer's": null, - "hoe": [["S", "M"]], - "hoes": null, - "hoe's": null, - "Hoffa": [["M"]], - "Hoffa's": null, - "Hoff": [["M"]], - "Hoff's": null, - "Hoffman": [["M"]], - "Hoffman's": null, - "Hofstadter": [["M"]], - "Hofstadter's": null, - "Hogan": [["M"]], - "Hogan's": null, - "hogan": [["S", "M"]], - "hogans": null, - "hogan's": null, - "Hogarth": [["M"]], - "Hogarth's": null, - "hogback": [["M", "S"]], - "hogback's": null, - "hogbacks": null, - "hogged": null, - "hogger": null, - "hogging": null, - "hoggish": [["Y"]], - "hoggishly": null, - "hogshead": [["S", "M"]], - "hogsheads": null, - "hogshead's": null, - "hog": [["S", "M"]], - "hogs": null, - "hog's": null, - "hogtie": [["S", "D"]], - "hogties": null, - "hogtied": null, - "hogtying": null, - "hogwash": [["S", "M"]], - "hogwashes": null, - "hogwash's": null, - "Hohenlohe": [["M"]], - "Hohenlohe's": null, - "Hohenstaufen": [["M"]], - "Hohenstaufen's": null, - "Hohenzollern": [["M"]], - "Hohenzollern's": null, - "Hohhot": [["M"]], - "Hohhot's": null, - "hoister": [["M"]], - "hoister's": null, - "hoist": [["G", "R", "D", "S"]], - "hoisting": null, - "hoisted": null, - "hoists": null, - "hoke": [["D", "S", "G"]], - "hoked": null, - "hokes": null, - "hoking": null, - "hokey": [["P", "R", "T"]], - "hokeyness": null, - "hokeyer": null, - "hokeyest": null, - "hokier": null, - "hokiest": null, - "Hokkaido": [["M"]], - "Hokkaido's": null, - "hokum": [["M", "S"]], - "hokum's": null, - "hokums": null, - "Hokusai": [["M"]], - "Hokusai's": null, - "Holbein": [["M"]], - "Holbein's": null, - "Holbrook": [["M"]], - "Holbrook's": null, - "Holcomb": [["M"]], - "Holcomb's": null, - "holdall": [["M", "S"]], - "holdall's": null, - "holdalls": null, - "Holden": [["M"]], - "Holden's": null, - "holder": [["M"]], - "holder's": null, - "Holder": [["M"]], - "Holder's": null, - "holding": [["I", "S"]], - "inholding": null, - "inholdings": null, - "holdings": null, - "holding's": null, - "hold": [["N", "R", "B", "S", "J", "G", "Z"]], - "holden": null, - "holdable": null, - "holds": null, - "holders": null, - "holdout": [["S", "M"]], - "holdouts": null, - "holdout's": null, - "holdover": [["S", "M"]], - "holdovers": null, - "holdover's": null, - "holdup": [["M", "S"]], - "holdup's": null, - "holdups": null, - "hole": [["M", "G", "D", "S"]], - "hole's": null, - "holing": null, - "holed": null, - "holes": null, - "holey": null, - "holiday": [["G", "R", "D", "M", "S"]], - "holidaying": null, - "holidayer": null, - "holidayed": null, - "holiday's": null, - "holidays": null, - "Holiday": [["M"]], - "Holiday's": null, - "holidaymaker": [["S"]], - "holidaymakers": null, - "holier": [["U"]], - "unholier": null, - "Holiness": [["M", "S"]], - "Holiness's": null, - "Holinesses": null, - "holiness": [["M", "S", "U"]], - "holiness's": null, - "unholiness's": null, - "holinesses": null, - "unholinesses": null, - "unholiness": null, - "holistic": null, - "holistically": null, - "hollandaise": null, - "Hollandaise": [["M"]], - "Hollandaise's": null, - "Hollander": [["M"]], - "Hollander's": null, - "Holland": [["R", "M", "S", "Z"]], - "Holland's": null, - "Hollands": null, - "Hollanders": null, - "holler": [["G", "D", "S"]], - "hollering": null, - "hollered": null, - "hollers": null, - "Hollerith": [["M"]], - "Hollerith's": null, - "Holley": [["M"]], - "Holley's": null, - "Hollie": [["M"]], - "Hollie's": null, - "Holli": [["S", "M"]], - "Hollis": null, - "Holli's": null, - "Hollister": [["M"]], - "Hollister's": null, - "Holloway": [["M"]], - "Holloway's": null, - "hollowness": [["M", "S"]], - "hollowness's": null, - "hollownesses": null, - "hollow": [["R", "D", "Y", "T", "G", "S", "P"]], - "hollower": null, - "hollowed": null, - "hollowly": null, - "hollowest": null, - "hollowing": null, - "hollows": null, - "hollowware": [["M"]], - "hollowware's": null, - "Hollyanne": [["M"]], - "Hollyanne's": null, - "hollyhock": [["M", "S"]], - "hollyhock's": null, - "hollyhocks": null, - "Holly": [["M"]], - "Holly's": null, - "holly": [["S", "M"]], - "hollies": null, - "holly's": null, - "Hollywood": [["M"]], - "Hollywood's": null, - "Holman": [["M"]], - "Holman's": null, - "Holmes": null, - "holmium": [["M", "S"]], - "holmium's": null, - "holmiums": null, - "Holm": [["M"]], - "Holm's": null, - "Holocaust": null, - "holocaust": [["M", "S"]], - "holocaust's": null, - "holocausts": null, - "Holocene": null, - "hologram": [["S", "M"]], - "holograms": null, - "hologram's": null, - "holograph": [["G", "M", "D"]], - "holographing": null, - "holograph's": null, - "holographed": null, - "holographic": null, - "holographs": null, - "holography": [["M", "S"]], - "holography's": null, - "holographies": null, - "Holstein": [["M", "S"]], - "Holstein's": null, - "Holsteins": null, - "holster": [["M", "D", "S", "G"]], - "holster's": null, - "holstered": null, - "holsters": null, - "holstering": null, - "Holst": [["M"]], - "Holst's": null, - "Holt": [["M"]], - "Holt's": null, - "Holyoke": [["M"]], - "Holyoke's": null, - "holies": null, - "holiest": null, - "holystone": [["M", "S"]], - "holystone's": null, - "holystones": null, - "Holzman": [["M"]], - "Holzman's": null, - "Ho": [["M"]], - "Ho's": null, - "homage": [["M", "G", "S", "R", "D"]], - "homage's": null, - "homaging": null, - "homages": null, - "homager": [["M"]], - "homaged": null, - "homager's": null, - "hombre": [["S", "M"]], - "hombres": null, - "hombre's": null, - "homburg": [["S", "M"]], - "homburgs": null, - "homburg's": null, - "homebody": [["M", "S"]], - "homebody's": null, - "homebodies": null, - "homebound": null, - "homeboy": [["S"]], - "homeboys": null, - "homebuilder": [["S"]], - "homebuilders": null, - "homebuilding": null, - "homebuilt": null, - "homecoming": [["M", "S"]], - "homecoming's": null, - "homecomings": null, - "home": [["D", "S", "R", "M", "Y", "Z", "G"]], - "homed": null, - "homes": null, - "homer": [["G", "D", "M"]], - "home's": null, - "homely": [["R", "P", "T"]], - "homers": null, - "homing": [["M"]], - "homegrown": null, - "homeland": [["S", "M"]], - "homelands": null, - "homeland's": null, - "homelessness": [["S", "M"]], - "homelessnesses": null, - "homelessness's": null, - "homeless": [["P"]], - "homelike": null, - "homeliness": [["S", "M"]], - "homelinesses": null, - "homeliness's": null, - "homelier": null, - "homeliest": null, - "homemade": null, - "homemake": [["J", "R", "Z", "G"]], - "homemakings": null, - "homemaker": [["M"]], - "homemakers": null, - "homemaking": [["M"]], - "homemaker's": null, - "homemaking's": null, - "homeomorphic": null, - "homeomorphism": [["M", "S"]], - "homeomorphism's": null, - "homeomorphisms": null, - "homeomorph": [["M"]], - "homeomorph's": null, - "homeopath": null, - "homeopathic": null, - "homeopaths": null, - "homeopathy": [["M", "S"]], - "homeopathy's": null, - "homeopathies": null, - "homeostases": null, - "homeostasis": [["M"]], - "homeostasis's": null, - "homeostatic": null, - "homeowner": [["S"]], - "homeowners": null, - "homeownership": null, - "homepage": null, - "Homere": [["M"]], - "Homere's": null, - "homering": null, - "homered": null, - "homer's": null, - "Homeric": null, - "homerists": null, - "Homer": [["M"]], - "Homer's": null, - "homeroom": [["M", "S"]], - "homeroom's": null, - "homerooms": null, - "Homerus": [["M"]], - "Homerus's": null, - "homeschooling": [["S"]], - "homeschoolings": null, - "homesickness": [["M", "S"]], - "homesickness's": null, - "homesicknesses": null, - "homesick": [["P"]], - "homespun": [["S"]], - "homespuns": null, - "homesteader": [["M"]], - "homesteader's": null, - "homestead": [["G", "Z", "S", "R", "D", "M"]], - "homesteading": null, - "homesteaders": null, - "homesteads": null, - "homesteaded": null, - "homestead's": null, - "homestretch": [["S", "M"]], - "homestretches": null, - "homestretch's": null, - "hometown": [["S", "M"]], - "hometowns": null, - "hometown's": null, - "homeward": null, - "homeworker": [["M"]], - "homeworker's": null, - "homework": [["Z", "S", "M", "R"]], - "homeworkers": null, - "homeworks": null, - "homework's": null, - "homeyness": [["M", "S"]], - "homeyness's": null, - "homeynesses": null, - "homey": [["P", "S"]], - "homeys": null, - "homicidal": [["Y"]], - "homicidally": null, - "homicide": [["S", "M"]], - "homicides": null, - "homicide's": null, - "homier": null, - "homiest": null, - "homiletic": [["S"]], - "homiletics": null, - "homily": [["S", "M"]], - "homilies": null, - "homily's": null, - "hominess's": null, - "homing's": null, - "hominid": [["M", "S"]], - "hominid's": null, - "hominids": null, - "hominy": [["S", "M"]], - "hominies": null, - "hominy's": null, - "Hom": [["M", "R"]], - "Hom's": null, - "homogamy": [["M"]], - "homogamy's": null, - "homogenate": [["M", "S"]], - "homogenate's": null, - "homogenates": null, - "homogeneity": [["I", "S", "M"]], - "inhomogeneity": null, - "inhomogeneities": null, - "inhomogeneity's": null, - "homogeneities": null, - "homogeneity's": null, - "homogeneous": [["P", "Y"]], - "homogeneousness": null, - "homogeneously": null, - "homogenization": [["M", "S"]], - "homogenization's": null, - "homogenizations": null, - "homogenize": [["D", "R", "S", "G", "Z"]], - "homogenized": null, - "homogenizer": [["M"]], - "homogenizes": null, - "homogenizing": null, - "homogenizers": null, - "homogenizer's": null, - "homograph": [["M"]], - "homograph's": null, - "homographs": null, - "homological": null, - "homologous": null, - "homologue": [["M"]], - "homologue's": null, - "homology": [["M", "S"]], - "homology's": null, - "homologies": null, - "homomorphic": null, - "homomorphism": [["S", "M"]], - "homomorphisms": null, - "homomorphism's": null, - "homonym": [["S", "M"]], - "homonyms": null, - "homonym's": null, - "homophobia": [["S"]], - "homophobias": null, - "homophobic": null, - "homophone": [["M", "S"]], - "homophone's": null, - "homophones": null, - "homopolymers": null, - "homosexuality": [["S", "M"]], - "homosexualities": null, - "homosexuality's": null, - "homosexual": [["Y", "M", "S"]], - "homosexually": null, - "homosexual's": null, - "homosexuals": null, - "homo": [["S", "M"]], - "homos": null, - "homo's": null, - "homotopy": null, - "homozygous": [["Y"]], - "homozygously": null, - "honcho": [["D", "S", "G"]], - "honchoed": null, - "honchos": null, - "honchoing": null, - "Honda": [["M"]], - "Honda's": null, - "Hondo": [["M"]], - "Hondo's": null, - "Honduran": [["S"]], - "Hondurans": null, - "Honduras": [["M"]], - "Honduras's": null, - "Honecker": [["M"]], - "Honecker's": null, - "hone": [["S", "M"]], - "hones": null, - "hone's": null, - "honestly": [["E"]], - "dishonestly": null, - "honest": [["R", "Y", "T"]], - "honester": null, - "honestest": null, - "honesty": [["E", "S", "M"]], - "dishonesty": null, - "dishonesties": null, - "dishonesty's": null, - "honesties": null, - "honesty's": null, - "honeybee": [["S", "M"]], - "honeybees": null, - "honeybee's": null, - "honeycomb": [["S", "D", "M", "G"]], - "honeycombs": null, - "honeycombed": null, - "honeycomb's": null, - "honeycombing": null, - "honeydew": [["S", "M"]], - "honeydews": null, - "honeydew's": null, - "honey": [["G", "S", "M", "D"]], - "honeying": null, - "honeys": null, - "honey's": null, - "honeyed": null, - "honeylocust": null, - "Honey": [["M"]], - "Honey's": null, - "honeymooner": [["M"]], - "honeymooner's": null, - "honeymoon": [["R", "D", "M", "G", "Z", "S"]], - "honeymooned": null, - "honeymoon's": null, - "honeymooning": null, - "honeymooners": null, - "honeymoons": null, - "honeysuckle": [["M", "S"]], - "honeysuckle's": null, - "honeysuckles": null, - "Honeywell": [["M"]], - "Honeywell's": null, - "hong": [["M"]], - "hong's": null, - "Honiara": [["M"]], - "Honiara's": null, - "honker": [["M"]], - "honker's": null, - "honk": [["G", "Z", "S", "D", "R", "M"]], - "honking": null, - "honkers": null, - "honks": null, - "honked": null, - "honk's": null, - "honky": [["S", "M"]], - "honkies": null, - "honky's": null, - "Hon": [["M"]], - "Hon's": null, - "hon": [["M", "D", "R", "S", "Z", "T", "G"]], - "hon's": null, - "honed": null, - "honer": null, - "hons": null, - "honers": null, - "honing": null, - "Honolulu": [["M"]], - "Honolulu's": null, - "honorableness": [["S", "M"]], - "honorablenesses": null, - "honorableness's": null, - "honorable": [["P", "S", "M"]], - "honorables": [["U"]], - "honorable's": null, - "unhonorables": null, - "honorablies": [["U"]], - "unhonorablies": null, - "honorably": [["U", "E"]], - "unhonorably": null, - "dishonorably": null, - "honorarily": null, - "honorarium": [["S", "M"]], - "honorariums": null, - "honorarium's": null, - "honorary": [["S"]], - "honoraries": null, - "honored": [["U"]], - "unhonored": null, - "honoree": [["S"]], - "honorees": null, - "honor": [["E", "R", "D", "B", "Z", "G", "S"]], - "dishonor": null, - "dishonorer": null, - "dishonorable": null, - "dishonorers": null, - "dishonoring": null, - "dishonors": null, - "honorer": [["E", "M"]], - "honorers": null, - "honoring": null, - "honors": [["A"]], - "dishonorer's": null, - "honorer's": null, - "Honoria": [["M"]], - "Honoria's": null, - "honorific": [["S"]], - "honorifics": null, - "Honor": [["M"]], - "Honor's": null, - "honor's": null, - "rehonors": null, - "Honshu": [["M"]], - "Honshu's": null, - "hooch": [["M", "S"]], - "hooch's": null, - "hooches": null, - "hoodedness": [["M"]], - "hoodedness's": null, - "hooded": [["P"]], - "hoodlum": [["S", "M"]], - "hoodlums": null, - "hoodlum's": null, - "Hood": [["M"]], - "Hood's": null, - "hood": [["M", "D", "S", "G"]], - "hood's": null, - "hoods": null, - "hooding": null, - "hoodoo": [["D", "M", "G", "S"]], - "hoodooed": null, - "hoodoo's": null, - "hoodooing": null, - "hoodoos": null, - "hoodwinker": [["M"]], - "hoodwinker's": null, - "hoodwink": [["S", "R", "D", "G"]], - "hoodwinks": null, - "hoodwinked": null, - "hoodwinking": null, - "hooey": [["S", "M"]], - "hooeys": null, - "hooey's": null, - "hoof": [["D", "R", "M", "S", "G"]], - "hoofed": null, - "hoofer": [["M"]], - "hoof's": null, - "hoofs": null, - "hoofing": null, - "hoofer's": null, - "hoofmark": [["S"]], - "hoofmarks": null, - "hookah": [["M"]], - "hookah's": null, - "hookahs": null, - "hookedness": [["M"]], - "hookedness's": null, - "hooked": [["P"]], - "Hooke": [["M", "R"]], - "Hooke's": null, - "Hooker": [["M"]], - "hooker": [["M"]], - "hooker's": null, - "Hooker's": null, - "hookey's": null, - "hook": [["G", "Z", "D", "R", "M", "S"]], - "hooking": null, - "hookers": null, - "hook's": null, - "hooks": [["U"]], - "unhooks": null, - "hookup": [["S", "M"]], - "hookups": null, - "hookup's": null, - "hookworm": [["M", "S"]], - "hookworm's": null, - "hookworms": null, - "hooky": [["S", "R", "M", "T"]], - "hookies": null, - "hookier": null, - "hooky's": null, - "hookiest": null, - "hooliganism": [["S", "M"]], - "hooliganisms": null, - "hooliganism's": null, - "hooligan": [["S", "M"]], - "hooligans": null, - "hooligan's": null, - "hooper": [["M"]], - "hooper's": null, - "Hooper": [["M"]], - "Hooper's": null, - "hoopla": [["S", "M"]], - "hooplas": null, - "hoopla's": null, - "hoop": [["M", "D", "R", "S", "G"]], - "hoop's": null, - "hooped": null, - "hoops": null, - "hooping": null, - "hooray": [["S", "M", "D", "G"]], - "hoorays": null, - "hooray's": null, - "hoorayed": null, - "hooraying": null, - "hoosegow": [["M", "S"]], - "hoosegow's": null, - "hoosegows": null, - "Hoosier": [["S", "M"]], - "Hoosiers": null, - "Hoosier's": null, - "hootch's": null, - "hootenanny": [["S", "M"]], - "hootenannies": null, - "hootenanny's": null, - "hooter": [["M"]], - "hooter's": null, - "hoot": [["M", "D", "R", "S", "G", "Z"]], - "hoot's": null, - "hooted": null, - "hoots": null, - "hooting": null, - "hooters": null, - "Hoover": [["M", "S"]], - "Hoover's": null, - "Hoovers": null, - "hooves": [["M"]], - "hooves's": null, - "hoped": [["U"]], - "unhoped": null, - "hopefulness": [["M", "S"]], - "hopefulness's": null, - "hopefulnesses": null, - "hopeful": [["S", "P", "Y"]], - "hopefuls": null, - "hopefully": null, - "hopelessness": [["S", "M"]], - "hopelessnesses": null, - "hopelessness's": null, - "hopeless": [["Y", "P"]], - "hopelessly": null, - "Hope": [["M"]], - "Hope's": null, - "hoper": [["M"]], - "hoper's": null, - "hope": [["S", "M"]], - "hopes": null, - "hope's": null, - "Hopewell": [["M"]], - "Hopewell's": null, - "Hopi": [["S", "M"]], - "Hopis": null, - "Hopi's": null, - "Hopkinsian": [["M"]], - "Hopkinsian's": null, - "Hopkins": [["M"]], - "Hopkins's": null, - "hopped": null, - "Hopper": [["M"]], - "Hopper's": null, - "hopper": [["M", "S"]], - "hopper's": null, - "hoppers": null, - "hopping": [["M"]], - "hopping's": null, - "hoppled": null, - "hopples": null, - "hopscotch": [["M", "D", "S", "G"]], - "hopscotch's": null, - "hopscotched": null, - "hopscotches": null, - "hopscotching": null, - "hop": [["S", "M", "D", "R", "G"]], - "hops": null, - "hop's": null, - "hoping": null, - "Horace": [["M"]], - "Horace's": null, - "Horacio": [["M"]], - "Horacio's": null, - "Horatia": [["M"]], - "Horatia's": null, - "Horatio": [["M"]], - "Horatio's": null, - "Horatius": [["M"]], - "Horatius's": null, - "horde": [["D", "S", "G", "M"]], - "horded": null, - "hordes": null, - "hording": null, - "horde's": null, - "horehound": [["M", "S"]], - "horehound's": null, - "horehounds": null, - "horizon": [["M", "S"]], - "horizon's": null, - "horizons": null, - "horizontal": [["Y", "S"]], - "horizontally": null, - "horizontals": null, - "Hormel": [["M"]], - "Hormel's": null, - "hormonal": [["Y"]], - "hormonally": null, - "hormone": [["M", "S"]], - "hormone's": null, - "hormones": null, - "Hormuz": [["M"]], - "Hormuz's": null, - "hornbeam": [["M"]], - "hornbeam's": null, - "hornblende": [["M", "S"]], - "hornblende's": null, - "hornblendes": null, - "Hornblower": [["M"]], - "Hornblower's": null, - "hornedness": [["M"]], - "hornedness's": null, - "horned": [["P"]], - "Horne": [["M"]], - "Horne's": null, - "hornet": [["M", "S"]], - "hornet's": null, - "hornets": null, - "horn": [["G", "D", "R", "M", "S"]], - "horning": null, - "horner": null, - "horn's": null, - "horns": null, - "horniness": [["M"]], - "horniness's": null, - "hornless": null, - "hornlike": null, - "Horn": [["M"]], - "Horn's": null, - "hornpipe": [["M", "S"]], - "hornpipe's": null, - "hornpipes": null, - "horny": [["T", "R", "P"]], - "horniest": null, - "hornier": null, - "horologic": null, - "horological": null, - "horologist": [["M", "S"]], - "horologist's": null, - "horologists": null, - "horology": [["M", "S"]], - "horology's": null, - "horologies": null, - "horoscope": [["M", "S"]], - "horoscope's": null, - "horoscopes": null, - "Horowitz": [["M"]], - "Horowitz's": null, - "horrendous": [["Y"]], - "horrendously": null, - "horribleness": [["S", "M"]], - "horriblenesses": null, - "horribleness's": null, - "horrible": [["S", "P"]], - "horribles": null, - "horribly": null, - "horridness": [["M"]], - "horridness's": null, - "horrid": [["P", "Y"]], - "horridly": null, - "horrific": null, - "horrifically": null, - "horrify": [["D", "S", "G"]], - "horrified": null, - "horrifies": null, - "horrifying": [["Y"]], - "horrifyingly": null, - "horror": [["M", "S"]], - "horror's": null, - "horrors": null, - "hors": [["D", "S", "G", "X"]], - "horsed": null, - "horses": null, - "horsing": [["M"]], - "horsens": null, - "horseback": [["M", "S"]], - "horseback's": null, - "horsebacks": null, - "horsedom": null, - "horseflesh": [["M"]], - "horseflesh's": null, - "horsefly": [["M", "S"]], - "horsefly's": null, - "horseflies": null, - "horsehair": [["S", "M"]], - "horsehairs": null, - "horsehair's": null, - "horsehide": [["S", "M"]], - "horsehides": null, - "horsehide's": null, - "horselaugh": [["M"]], - "horselaugh's": null, - "horselaughs": null, - "horseless": null, - "horselike": null, - "horsely": null, - "horseman": [["M"]], - "horseman's": null, - "horsemanship": [["M", "S"]], - "horsemanship's": null, - "horsemanships": null, - "horsemen": null, - "horseplayer": [["M"]], - "horseplayer's": null, - "horseplay": [["S", "M", "R"]], - "horseplays": null, - "horseplay's": null, - "horsepower": [["S", "M"]], - "horsepowers": null, - "horsepower's": null, - "horseradish": [["S", "M"]], - "horseradishes": null, - "horseradish's": null, - "horse's": null, - "horseshoeing": null, - "horseshoe": [["M", "R", "S", "D"]], - "horseshoe's": null, - "horseshoer": [["M"]], - "horseshoes": null, - "horseshoed": null, - "horseshoer's": null, - "horsetail": [["S", "M"]], - "horsetails": null, - "horsetail's": null, - "horse": [["U", "G", "D", "S"]], - "unhorse": null, - "unhorsing": null, - "unhorsed": null, - "unhorses": null, - "horsewhipped": null, - "horsewhipping": null, - "horsewhip": [["S", "M"]], - "horsewhips": null, - "horsewhip's": null, - "horsewoman": [["M"]], - "horsewoman's": null, - "horsewomen": null, - "horsey": null, - "horsier": null, - "horsiest": null, - "horsing's": null, - "Horst": [["M"]], - "Horst's": null, - "hortatory": null, - "Horten": [["M"]], - "Horten's": null, - "Hortense": [["M"]], - "Hortense's": null, - "Hortensia": [["M"]], - "Hortensia's": null, - "horticultural": null, - "horticulture": [["S", "M"]], - "horticultures": null, - "horticulture's": null, - "horticulturist": [["S", "M"]], - "horticulturists": null, - "horticulturist's": null, - "Hort": [["M", "N"]], - "Hort's": null, - "Horton": [["M"]], - "Horton's": null, - "Horus": [["M"]], - "Horus's": null, - "hosanna": [["S", "D", "G"]], - "hosannas": null, - "hosannaed": null, - "hosannaing": null, - "Hosea": [["M"]], - "Hosea's": null, - "hose": [["M"]], - "hose's": null, - "hosepipe": null, - "hos": [["G", "D", "S"]], - "hosing": null, - "hosed": null, - "hoses": null, - "hosier": [["M", "S"]], - "hosier's": null, - "hosiers": null, - "hosiery": [["S", "M"]], - "hosieries": null, - "hosiery's": null, - "hosp": null, - "hospice": [["M", "S"]], - "hospice's": null, - "hospices": null, - "hospitable": [["I"]], - "inhospitable": [["P"]], - "hospitably": [["I"]], - "inhospitably": null, - "hospitality": [["M", "S"]], - "hospitality's": [["I"]], - "hospitalities": null, - "inhospitality's": null, - "hospitalization": [["M", "S"]], - "hospitalization's": null, - "hospitalizations": null, - "hospitalize": [["G", "S", "D"]], - "hospitalizing": null, - "hospitalizes": null, - "hospitalized": null, - "hospital": [["M", "S"]], - "hospital's": null, - "hospitals": null, - "hostage": [["M", "S"]], - "hostage's": null, - "hostages": null, - "hosteler": [["M"]], - "hosteler's": null, - "hostelry": [["M", "S"]], - "hostelry's": null, - "hostelries": null, - "hostel": [["S", "Z", "G", "M", "R", "D"]], - "hostels": null, - "hostelers": null, - "hosteling": null, - "hostel's": null, - "hosteled": null, - "hostess": [["M", "D", "S", "G"]], - "hostess's": null, - "hostessed": null, - "hostesses": null, - "hostessing": null, - "hostile": [["Y", "S"]], - "hostilely": null, - "hostiles": null, - "hostility": [["S", "M"]], - "hostilities": null, - "hostility's": null, - "hostler": [["M", "S"]], - "hostler's": null, - "hostlers": null, - "Host": [["M", "S"]], - "Host's": null, - "Hosts": null, - "host": [["M", "Y", "D", "G", "S"]], - "host's": null, - "hostly": null, - "hosted": null, - "hosting": null, - "hosts": null, - "hotbed": [["M", "S"]], - "hotbed's": null, - "hotbeds": null, - "hotblooded": null, - "hotbox": [["M", "S"]], - "hotbox's": null, - "hotboxes": null, - "hotcake": [["S"]], - "hotcakes": null, - "hotchpotch": [["M"]], - "hotchpotch's": null, - "hotelier": [["M", "S"]], - "hotelier's": null, - "hoteliers": null, - "hotelman": [["M"]], - "hotelman's": null, - "hotel": [["M", "S"]], - "hotel's": null, - "hotels": null, - "hotfoot": [["D", "G", "S"]], - "hotfooted": null, - "hotfooting": null, - "hotfoots": null, - "hothead": [["D", "M", "S"]], - "hotheaded": [["P", "Y"]], - "hothead's": null, - "hotheads": null, - "hotheadedness": [["S", "M"]], - "hotheadednesses": null, - "hotheadedness's": null, - "hotheadedly": null, - "hothouse": [["M", "G", "D", "S"]], - "hothouse's": null, - "hothousing": null, - "hothoused": null, - "hothouses": null, - "hotness": [["M", "S"]], - "hotness's": null, - "hotnesses": null, - "hotplate": [["S", "M"]], - "hotplates": null, - "hotplate's": null, - "hotpot": [["M"]], - "hotpot's": null, - "hot": [["P", "S", "Y"]], - "hots": null, - "hotly": null, - "hotrod": null, - "hotshot": [["S"]], - "hotshots": null, - "hotted": null, - "Hottentot": [["S", "M"]], - "Hottentots": null, - "Hottentot's": null, - "hotter": null, - "hottest": null, - "hotting": null, - "Houdaille": [["M"]], - "Houdaille's": null, - "Houdini": [["M"]], - "Houdini's": null, - "hough": [["M"]], - "hough's": null, - "hounder": [["M"]], - "hounder's": null, - "hounding": [["M"]], - "hounding's": null, - "hound": [["M", "R", "D", "S", "G"]], - "hound's": null, - "hounded": null, - "hounds": null, - "hourglass": [["M", "S"]], - "hourglass's": null, - "hourglasses": null, - "houri": [["M", "S"]], - "houri's": null, - "houris": null, - "hourly": [["S"]], - "hourlies": null, - "hour": [["Y", "M", "S"]], - "hour's": null, - "hours": null, - "house": [["A", "S", "D", "G"]], - "rehouse": null, - "rehouses": null, - "rehoused": null, - "rehousing": null, - "houses": null, - "housed": null, - "housing": [["M", "S"]], - "houseboat": [["S", "M"]], - "houseboats": null, - "houseboat's": null, - "housebound": null, - "houseboy": [["S", "M"]], - "houseboys": null, - "houseboy's": null, - "housebreaker": [["M"]], - "housebreaker's": null, - "housebreaking": [["M"]], - "housebreaking's": null, - "housebreak": [["J", "S", "R", "Z", "G"]], - "housebreakings": null, - "housebreaks": null, - "housebreakers": null, - "housebroke": null, - "housebroken": null, - "housebuilding": null, - "housecleaning": [["M"]], - "housecleaning's": null, - "houseclean": [["J", "D", "S", "G"]], - "housecleanings": null, - "housecleaned": null, - "housecleans": null, - "housecoat": [["M", "S"]], - "housecoat's": null, - "housecoats": null, - "housefly": [["M", "S"]], - "housefly's": null, - "houseflies": null, - "houseful": [["S", "M"]], - "housefuls": null, - "houseful's": null, - "householder": [["M"]], - "householder's": null, - "household": [["Z", "R", "M", "S"]], - "householders": null, - "household's": null, - "households": null, - "househusband": [["S"]], - "househusbands": null, - "housekeeper": [["M"]], - "housekeeper's": null, - "housekeeping": [["M"]], - "housekeeping's": null, - "housekeep": [["J", "R", "G", "Z"]], - "housekeepings": null, - "housekeepers": null, - "houselights": null, - "House": [["M"]], - "House's": null, - "housemaid": [["M", "S"]], - "housemaid's": null, - "housemaids": null, - "houseman": [["M"]], - "houseman's": null, - "housemen": null, - "housemother": [["M", "S"]], - "housemother's": null, - "housemothers": null, - "housemoving": null, - "houseparent": [["S", "M"]], - "houseparents": null, - "houseparent's": null, - "houseplant": [["S"]], - "houseplants": null, - "houser": null, - "house's": null, - "housetop": [["M", "S"]], - "housetop's": null, - "housetops": null, - "housewares": null, - "housewarming": [["M", "S"]], - "housewarming's": null, - "housewarmings": null, - "housewifeliness": [["M"]], - "housewifeliness's": null, - "housewifely": [["P"]], - "housewife": [["Y", "M"]], - "housewife's": null, - "housewives": null, - "houseworker": [["M"]], - "houseworker's": null, - "housework": [["Z", "S", "M", "R"]], - "houseworkers": null, - "houseworks": null, - "housework's": null, - "housing's": null, - "housings": null, - "Housman": [["M"]], - "Housman's": null, - "Houston": [["M"]], - "Houston's": null, - "Houyhnhnm": [["M"]], - "Houyhnhnm's": null, - "HOV": null, - "hovel": [["G", "S", "M", "D"]], - "hoveling": null, - "hovels": null, - "hovel's": null, - "hoveled": null, - "hovercraft": [["M"]], - "hovercraft's": null, - "hoverer": [["M"]], - "hoverer's": null, - "hover": [["G", "R", "D"]], - "hovering": null, - "hovered": null, - "hove": [["Z", "R"]], - "hovers": null, - "Howard": [["M"]], - "Howard's": null, - "howbeit": null, - "howdah": [["M"]], - "howdah's": null, - "howdahs": null, - "howdy": [["G", "S", "D"]], - "howdying": null, - "howdies": null, - "howdied": null, - "Howell": [["M", "S"]], - "Howell's": null, - "Howells": null, - "Howe": [["M"]], - "Howe's": null, - "however": null, - "Howey": [["M"]], - "Howey's": null, - "Howie": [["M"]], - "Howie's": null, - "howitzer": [["M", "S"]], - "howitzer's": null, - "howitzers": null, - "howler": [["M"]], - "howler's": null, - "howl": [["G", "Z", "S", "M", "D", "R"]], - "howling": null, - "howlers": null, - "howls": null, - "howl's": null, - "howled": null, - "Howrah": [["M"]], - "Howrah's": null, - "how": [["S", "M"]], - "hows": null, - "how's": null, - "howsoever": null, - "hoyden": [["D", "M", "G", "S"]], - "hoydened": null, - "hoyden's": null, - "hoydening": null, - "hoydens": null, - "hoydenish": null, - "Hoyle": [["S", "M"]], - "Hoyles": null, - "Hoyle's": null, - "hoy": [["M"]], - "hoy's": null, - "Hoyt": [["M"]], - "Hoyt's": null, - "hp": null, - "HP": null, - "HQ": null, - "hr": null, - "HR": null, - "HRH": null, - "Hrothgar": [["M"]], - "Hrothgar's": null, - "hrs": null, - "H's": null, - "HS": null, - "HST": null, - "ht": null, - "HTML": null, - "Hts": [["M"]], - "Hts's": null, - "HTTP": null, - "Huang": [["M"]], - "Huang's": null, - "huarache": [["S", "M"]], - "huaraches": null, - "huarache's": null, - "hubba": null, - "Hubbard": [["M"]], - "Hubbard's": null, - "Hubble": [["M"]], - "Hubble's": null, - "hubbub": [["S", "M"]], - "hubbubs": null, - "hubbub's": null, - "hubby": [["S", "M"]], - "hubbies": null, - "hubby's": null, - "hubcap": [["S", "M"]], - "hubcaps": null, - "hubcap's": null, - "Huber": [["M"]], - "Huber's": null, - "Hube": [["R", "M"]], - "Hube's": null, - "Hubert": [["M"]], - "Hubert's": null, - "Huberto": [["M"]], - "Huberto's": null, - "Hubey": [["M"]], - "Hubey's": null, - "Hubie": [["M"]], - "Hubie's": null, - "hub": [["M", "S"]], - "hub's": null, - "hubs": null, - "hubris": [["S", "M"]], - "hubrises": null, - "hubris's": null, - "huckleberry": [["S", "M"]], - "huckleberries": null, - "huckleberry's": null, - "Huck": [["M"]], - "Huck's": null, - "huckster": [["S", "G", "M", "D"]], - "hucksters": null, - "huckstering": null, - "huckster's": null, - "huckstered": null, - "HUD": null, - "Huddersfield": [["M"]], - "Huddersfield's": null, - "huddler": [["M"]], - "huddler's": null, - "huddle": [["R", "S", "D", "M", "G"]], - "huddles": null, - "huddled": null, - "huddle's": null, - "huddling": null, - "Hudson": [["M"]], - "Hudson's": null, - "hue": [["M", "D", "S"]], - "hue's": null, - "hued": null, - "hues": null, - "Huerta": [["M"]], - "Huerta's": null, - "Huey": [["M"]], - "Huey's": null, - "huffily": null, - "huffiness": [["S", "M"]], - "huffinesses": null, - "huffiness's": null, - "Huff": [["M"]], - "Huff's": null, - "Huffman": [["M"]], - "Huffman's": null, - "huff": [["S", "G", "D", "M"]], - "huffs": null, - "huffing": null, - "huffed": null, - "huff's": null, - "huffy": [["T", "R", "P"]], - "huffiest": null, - "huffier": null, - "hugeness": [["M", "S"]], - "hugeness's": null, - "hugenesses": null, - "huge": [["Y", "P"]], - "hugely": null, - "hugged": null, - "hugger": null, - "hugging": [["S"]], - "huggings": null, - "Huggins": null, - "Hughie": [["M"]], - "Hughie's": null, - "Hugh": [["M", "S"]], - "Hugh's": null, - "Hughes": null, - "Hugibert": [["M"]], - "Hugibert's": null, - "Hugo": [["M"]], - "Hugo's": null, - "hug": [["R", "T", "S"]], - "huger": null, - "hugest": null, - "hugs": null, - "Huguenot": [["S", "M"]], - "Huguenots": null, - "Huguenot's": null, - "Hugues": [["M"]], - "Hugues's": null, - "huh": null, - "huhs": null, - "Hui": [["M"]], - "Hui's": null, - "Huitzilopitchli": [["M"]], - "Huitzilopitchli's": null, - "hula": [["M", "D", "S", "G"]], - "hula's": null, - "hulaed": null, - "hulas": null, - "hulaing": null, - "Hulda": [["M"]], - "Hulda's": null, - "hulk": [["G", "D", "M", "S"]], - "hulking": null, - "hulked": null, - "hulk's": null, - "hulks": null, - "hullabaloo": [["S", "M"]], - "hullabaloos": null, - "hullabaloo's": null, - "huller": [["M"]], - "huller's": null, - "hulling": [["M"]], - "hulling's": null, - "Hull": [["M"]], - "Hull's": null, - "hull": [["M", "D", "R", "G", "Z", "S"]], - "hull's": null, - "hulled": null, - "hullers": null, - "hulls": null, - "hullo": [["G", "S", "D", "M"]], - "hulloing": null, - "hullos": null, - "hulloed": null, - "hullo's": null, - "humane": [["I", "Y"]], - "inhumane": null, - "inhumanely": null, - "humanely": null, - "humaneness": [["S", "M"]], - "humanenesses": null, - "humaneness's": null, - "humaner": null, - "humanest": null, - "human": [["I", "P", "Y"]], - "inhuman": null, - "inhumanness": null, - "inhumanly": null, - "humanness": [["I", "M"]], - "humanly": null, - "humanism": [["S", "M"]], - "humanisms": null, - "humanism's": null, - "humanistic": null, - "humanist": [["S", "M"]], - "humanists": null, - "humanist's": null, - "humanitarianism": [["S", "M"]], - "humanitarianisms": null, - "humanitarianism's": null, - "humanitarian": [["S"]], - "humanitarians": null, - "humanity": [["I", "S", "M"]], - "inhumanity": null, - "inhumanities": null, - "inhumanity's": null, - "humanities": null, - "humanity's": null, - "humanization": [["C", "S", "M"]], - "dehumanization": null, - "dehumanizations": null, - "dehumanization's": null, - "humanizations": null, - "humanization's": null, - "humanized": [["C"]], - "dehumanized": null, - "humanizer": [["M"]], - "humanizer's": null, - "humanize": [["R", "S", "D", "Z", "G"]], - "humanizes": [["I", "A", "C"]], - "humanizers": null, - "humanizing": [["C"]], - "inhumanizes": null, - "rehumanizes": null, - "dehumanizes": null, - "dehumanizing": null, - "humankind": [["M"]], - "humankind's": null, - "humannesses": null, - "inhumanness's": null, - "humanness's": null, - "humanoid": [["S"]], - "humanoids": null, - "humans": null, - "Humbert": [["M"]], - "Humbert's": null, - "Humberto": [["M"]], - "Humberto's": null, - "humbleness": [["S", "M"]], - "humblenesses": null, - "humbleness's": null, - "humble": [["T", "Z", "G", "P", "R", "S", "D", "J"]], - "humblest": null, - "humblers": null, - "humbling": null, - "humbler": null, - "humbles": null, - "humbled": null, - "humblings": null, - "humbly": null, - "Humboldt": [["M"]], - "Humboldt's": null, - "humbugged": null, - "humbugging": null, - "humbug": [["M", "S"]], - "humbug's": null, - "humbugs": null, - "humdinger": [["M", "S"]], - "humdinger's": null, - "humdingers": null, - "humdrum": [["S"]], - "humdrums": null, - "Hume": [["M"]], - "Hume's": null, - "humeral": [["S"]], - "humerals": null, - "humeri": null, - "humerus": [["M"]], - "humerus's": null, - "Humfrey": [["M"]], - "Humfrey's": null, - "Humfrid": [["M"]], - "Humfrid's": null, - "Humfried": [["M"]], - "Humfried's": null, - "humidification": [["M", "C"]], - "humidification's": null, - "dehumidification's": null, - "dehumidification": null, - "humidifier": [["C", "M"]], - "dehumidifier": null, - "dehumidifier's": null, - "humidifier's": null, - "humidify": [["R", "S", "D", "C", "X", "G", "N", "Z"]], - "humidifies": null, - "dehumidifies": null, - "humidified": null, - "dehumidified": null, - "dehumidify": null, - "dehumidifications": null, - "dehumidifying": null, - "dehumidifiers": null, - "humidifications": null, - "humidifying": null, - "humidifiers": null, - "humidistat": [["M"]], - "humidistat's": null, - "humidity": [["M", "S"]], - "humidity's": null, - "humidities": null, - "humidor": [["M", "S"]], - "humidor's": null, - "humidors": null, - "humid": [["Y"]], - "humidly": null, - "humiliate": [["S", "D", "X", "N", "G"]], - "humiliates": null, - "humiliated": null, - "humiliations": null, - "humiliation": [["M"]], - "humiliating": [["Y"]], - "humiliatingly": null, - "humiliation's": null, - "humility": [["M", "S"]], - "humility's": null, - "humilities": null, - "hummed": null, - "Hummel": [["M"]], - "Hummel's": null, - "hummer": [["S", "M"]], - "hummers": null, - "hummer's": null, - "humming": null, - "hummingbird": [["S", "M"]], - "hummingbirds": null, - "hummingbird's": null, - "hummock": [["M", "D", "S", "G"]], - "hummock's": null, - "hummocked": null, - "hummocks": null, - "hummocking": null, - "hummocky": null, - "hummus": [["S"]], - "hummuses": null, - "humongous": null, - "humored": [["U"]], - "unhumored": null, - "humorist": [["M", "S"]], - "humorist's": null, - "humorists": null, - "humorlessness": [["M", "S"]], - "humorlessness's": null, - "humorlessnesses": null, - "humorless": [["P", "Y"]], - "humorlessly": null, - "humorousness": [["M", "S"]], - "humorousness's": null, - "humorousnesses": null, - "humorous": [["Y", "P"]], - "humorously": null, - "humor": [["R", "D", "M", "Z", "G", "S"]], - "humorer": null, - "humor's": null, - "humorers": null, - "humoring": null, - "humors": null, - "humpback": [["S", "M", "D"]], - "humpbacks": null, - "humpback's": null, - "humpbacked": null, - "hump": [["G", "S", "M", "D"]], - "humping": null, - "humps": null, - "hump's": null, - "humped": null, - "humph": [["D", "G"]], - "humphed": null, - "humphing": null, - "Humphrey": [["S", "M"]], - "Humphreys": null, - "Humphrey's": null, - "humphs": null, - "Humpty": [["M"]], - "Humpty's": null, - "hum": [["S"]], - "hums": null, - "humus": [["S", "M"]], - "humuses": null, - "humus's": null, - "Humvee": null, - "hunchback": [["D", "S", "M"]], - "hunchbacked": null, - "hunchbacks": null, - "hunchback's": null, - "hunch": [["G", "M", "S", "D"]], - "hunching": null, - "hunch's": null, - "hunches": null, - "hunched": null, - "hundredfold": [["S"]], - "hundredfolds": null, - "hundred": [["S", "H", "R", "M"]], - "hundreds": null, - "hundredth": null, - "hundreder": null, - "hundred's": null, - "hundredths": null, - "hundredweight": [["S", "M"]], - "hundredweights": null, - "hundredweight's": null, - "Hunfredo": [["M"]], - "Hunfredo's": null, - "hung": [["A"]], - "rehung": null, - "Hungarian": [["M", "S"]], - "Hungarian's": null, - "Hungarians": null, - "Hungary": [["M"]], - "Hungary's": null, - "hunger": [["S", "D", "M", "G"]], - "hungers": null, - "hungered": null, - "hunger's": null, - "hungering": null, - "Hung": [["M"]], - "Hung's": null, - "hungover": null, - "hungrily": null, - "hungriness": [["S", "M"]], - "hungrinesses": null, - "hungriness's": null, - "hungry": [["R", "T", "P"]], - "hungrier": null, - "hungriest": null, - "hunker": [["D", "G"]], - "hunkered": null, - "hunkering": null, - "hunky": [["R", "S", "T"]], - "hunkier": null, - "hunkies": null, - "hunkiest": null, - "hunk": [["Z", "R", "M", "S"]], - "hunkers": null, - "hunk's": null, - "hunks": null, - "Hun": [["M", "S"]], - "Hun's": null, - "Huns": null, - "hunter": [["M"]], - "hunter's": null, - "Hunter": [["M"]], - "Hunter's": null, - "hunt": [["G", "Z", "J", "D", "R", "S"]], - "hunting": [["M"]], - "hunters": null, - "huntings": null, - "hunted": null, - "hunts": null, - "hunting's": null, - "Huntington": [["M"]], - "Huntington's": null, - "Huntlee": [["M"]], - "Huntlee's": null, - "Huntley": [["M"]], - "Huntley's": null, - "Hunt": [["M", "R"]], - "Hunt's": null, - "huntress": [["M", "S"]], - "huntress's": null, - "huntresses": null, - "huntsman": [["M"]], - "huntsman's": null, - "huntsmen": null, - "Huntsville": [["M"]], - "Huntsville's": null, - "hurdle": [["J", "M", "Z", "G", "R", "S", "D"]], - "hurdlings": null, - "hurdle's": null, - "hurdlers": null, - "hurdling": null, - "hurdler": [["M"]], - "hurdles": null, - "hurdled": null, - "hurdler's": null, - "hurl": [["D", "R", "G", "Z", "J", "S"]], - "hurled": null, - "hurler": [["M"]], - "hurling": [["M"]], - "hurlers": null, - "hurlings": null, - "hurls": null, - "Hurlee": [["M"]], - "Hurlee's": null, - "Hurleigh": [["M"]], - "Hurleigh's": null, - "hurler's": null, - "Hurley": [["M"]], - "Hurley's": null, - "hurling's": null, - "Huron": [["S", "M"]], - "Hurons": null, - "Huron's": null, - "hurray": [["S", "D", "G"]], - "hurrays": null, - "hurrayed": null, - "hurraying": null, - "hurricane": [["M", "S"]], - "hurricane's": null, - "hurricanes": null, - "hurriedness": [["M"]], - "hurriedness's": null, - "hurried": [["U", "Y"]], - "unhurried": null, - "unhurriedly": null, - "hurriedly": null, - "hurry": [["R", "S", "D", "G"]], - "hurrier": null, - "hurries": null, - "hurrying": null, - "Hurst": [["M"]], - "Hurst's": null, - "hurter": [["M"]], - "hurter's": null, - "hurtfulness": [["M", "S"]], - "hurtfulness's": null, - "hurtfulnesses": null, - "hurtful": [["P", "Y"]], - "hurtfully": null, - "hurting": [["Y"]], - "hurtingly": null, - "hurtle": [["S", "D", "G"]], - "hurtles": null, - "hurtled": null, - "hurtling": null, - "hurts": null, - "hurt": [["U"]], - "unhurt": null, - "Hurwitz": [["M"]], - "Hurwitz's": null, - "Hus": null, - "Husain's": null, - "husbander": [["M"]], - "husbander's": null, - "husband": [["G", "S", "D", "R", "Y", "M"]], - "husbanding": null, - "husbands": null, - "husbanded": null, - "husbandly": null, - "husband's": null, - "husbandman": [["M"]], - "husbandman's": null, - "husbandmen": null, - "husbandry": [["S", "M"]], - "husbandries": null, - "husbandry's": null, - "Husein": [["M"]], - "Husein's": null, - "hush": [["D", "S", "G"]], - "hushed": null, - "hushes": null, - "hushing": null, - "husker": [["M"]], - "husker's": null, - "huskily": null, - "huskiness": [["M", "S"]], - "huskiness's": null, - "huskinesses": null, - "husking": [["M"]], - "husking's": null, - "husk": [["S", "G", "Z", "D", "R", "M"]], - "husks": null, - "huskers": null, - "husked": null, - "husk's": null, - "husky": [["R", "S", "P", "T"]], - "huskier": null, - "huskies": null, - "huskiest": null, - "hussar": [["M", "S"]], - "hussar's": null, - "hussars": null, - "Hussein": [["M"]], - "Hussein's": null, - "Husserl": [["M"]], - "Husserl's": null, - "hussy": [["S", "M"]], - "hussies": null, - "hussy's": null, - "hustings": [["M"]], - "hustings's": null, - "hustler": [["M"]], - "hustler's": null, - "hustle": [["R", "S", "D", "Z", "G"]], - "hustles": null, - "hustled": null, - "hustlers": null, - "hustling": null, - "Huston": [["M"]], - "Huston's": null, - "Hutchins": [["M"]], - "Hutchins's": null, - "Hutchinson": [["M"]], - "Hutchinson's": null, - "Hutchison": [["M"]], - "Hutchison's": null, - "hutch": [["M", "S", "D", "G"]], - "hutch's": null, - "hutches": null, - "hutched": null, - "hutching": null, - "hut": [["M", "S"]], - "hut's": null, - "huts": null, - "hutted": null, - "hutting": null, - "Hutton": [["M"]], - "Hutton's": null, - "Hutu": [["M"]], - "Hutu's": null, - "Huxley": [["M"]], - "Huxley's": null, - "Huygens": [["M"]], - "Huygens's": null, - "huzzah": [["G", "D"]], - "huzzahing": null, - "huzzahed": null, - "huzzahs": null, - "hwy": null, - "Hyacintha": [["M"]], - "Hyacintha's": null, - "Hyacinthe": [["M"]], - "Hyacinthe's": null, - "Hyacinthia": [["M"]], - "Hyacinthia's": null, - "Hyacinthie": [["M"]], - "Hyacinthie's": null, - "hyacinth": [["M"]], - "hyacinth's": null, - "Hyacinth": [["M"]], - "Hyacinth's": null, - "hyacinths": null, - "Hyades": null, - "hyaena's": null, - "Hyannis": [["M"]], - "Hyannis's": null, - "Hyatt": [["M"]], - "Hyatt's": null, - "hybridism": [["S", "M"]], - "hybridisms": null, - "hybridism's": null, - "hybridization": [["S"]], - "hybridizations": null, - "hybridize": [["G", "S", "D"]], - "hybridizing": null, - "hybridizes": null, - "hybridized": null, - "hybrid": [["M", "S"]], - "hybrid's": null, - "hybrids": null, - "Hyde": [["M"]], - "Hyde's": null, - "Hyderabad": [["M"]], - "Hyderabad's": null, - "Hydra": [["M"]], - "Hydra's": null, - "hydra": [["M", "S"]], - "hydra's": null, - "hydras": null, - "hydrangea": [["S", "M"]], - "hydrangeas": null, - "hydrangea's": null, - "hydrant": [["S", "M"]], - "hydrants": null, - "hydrant's": null, - "hydrate": [["C", "S", "D", "N", "G", "X"]], - "dehydrate": null, - "dehydrates": null, - "dehydrated": null, - "dehydration": null, - "dehydrating": null, - "dehydrations": null, - "hydrates": null, - "hydrated": null, - "hydration": [["M", "C"]], - "hydrating": null, - "hydrations": null, - "hydrate's": null, - "hydration's": null, - "dehydration's": null, - "hydraulically": null, - "hydraulicked": null, - "hydraulicking": null, - "hydraulic": [["S"]], - "hydraulics": [["M"]], - "hydraulics's": null, - "hydrazine": [["M"]], - "hydrazine's": null, - "hydride": [["M", "S"]], - "hydride's": null, - "hydrides": null, - "hydrocarbon": [["S", "M"]], - "hydrocarbons": null, - "hydrocarbon's": null, - "hydrocephali": null, - "hydrocephalus": [["M", "S"]], - "hydrocephalus's": null, - "hydrocephaluses": null, - "hydrochemistry": null, - "hydrochloric": null, - "hydrochloride": [["M"]], - "hydrochloride's": null, - "hydrodynamical": null, - "hydrodynamic": [["S"]], - "hydrodynamics": [["M"]], - "hydrodynamics's": null, - "hydroelectric": null, - "hydroelectrically": null, - "hydroelectricity": [["S", "M"]], - "hydroelectricities": null, - "hydroelectricity's": null, - "hydrofluoric": null, - "hydrofoil": [["M", "S"]], - "hydrofoil's": null, - "hydrofoils": null, - "hydrogenate": [["C", "D", "S", "G", "N"]], - "dehydrogenate": null, - "dehydrogenated": null, - "dehydrogenates": null, - "dehydrogenating": null, - "dehydrogenation": null, - "hydrogenated": null, - "hydrogenates": null, - "hydrogenating": null, - "hydrogenation": [["M", "C"]], - "hydrogenate's": null, - "hydrogenation's": null, - "dehydrogenation's": null, - "hydrogenations": null, - "hydrogen": [["M", "S"]], - "hydrogen's": null, - "hydrogens": null, - "hydrogenous": null, - "hydrological": [["Y"]], - "hydrologically": null, - "hydrologist": [["M", "S"]], - "hydrologist's": null, - "hydrologists": null, - "hydrology": [["S", "M"]], - "hydrologies": null, - "hydrology's": null, - "hydrolysis": [["M"]], - "hydrolysis's": null, - "hydrolyzed": [["U"]], - "unhydrolyzed": [["S", "M"]], - "hydrolyze": [["G", "S", "D"]], - "hydrolyzing": null, - "hydrolyzes": null, - "hydromagnetic": null, - "hydromechanics": [["M"]], - "hydromechanics's": null, - "hydrometer": [["S", "M"]], - "hydrometers": null, - "hydrometer's": null, - "hydrometry": [["M", "S"]], - "hydrometry's": null, - "hydrometries": null, - "hydrophilic": null, - "hydrophobia": [["S", "M"]], - "hydrophobias": null, - "hydrophobia's": null, - "hydrophobic": null, - "hydrophone": [["S", "M"]], - "hydrophones": null, - "hydrophone's": null, - "hydroplane": [["D", "S", "G", "M"]], - "hydroplaned": null, - "hydroplanes": null, - "hydroplaning": null, - "hydroplane's": null, - "hydroponic": [["S"]], - "hydroponics": [["M"]], - "hydroponics's": null, - "hydro": [["S", "M"]], - "hydros": null, - "hydro's": null, - "hydrosphere": [["M", "S"]], - "hydrosphere's": null, - "hydrospheres": null, - "hydrostatic": [["S"]], - "hydrostatics": [["M"]], - "hydrostatics's": null, - "hydrotherapy": [["S", "M"]], - "hydrotherapies": null, - "hydrotherapy's": null, - "hydrothermal": [["Y"]], - "hydrothermally": null, - "hydrous": null, - "hydroxide": [["M", "S"]], - "hydroxide's": null, - "hydroxides": null, - "hydroxy": null, - "hydroxylate": [["N"]], - "hydroxylation": null, - "hydroxyl": [["S", "M"]], - "hydroxyls": null, - "hydroxyl's": null, - "hydroxyzine": [["M"]], - "hydroxyzine's": null, - "hyena": [["M", "S"]], - "hyena's": null, - "hyenas": null, - "hygiene": [["M", "S"]], - "hygiene's": null, - "hygienes": null, - "hygienically": null, - "hygienic": [["S"]], - "hygienics": [["M"]], - "hygienics's": null, - "hygienist": [["M", "S"]], - "hygienist's": null, - "hygienists": null, - "hygrometer": [["S", "M"]], - "hygrometers": null, - "hygrometer's": null, - "hygroscopic": null, - "hying": null, - "Hy": [["M"]], - "Hy's": null, - "Hyman": [["M"]], - "Hyman's": null, - "hymeneal": [["S"]], - "hymeneals": null, - "Hymen": [["M"]], - "Hymen's": null, - "hymen": [["M", "S"]], - "hymen's": null, - "hymens": null, - "Hymie": [["M"]], - "Hymie's": null, - "hymnal": [["S", "M"]], - "hymnals": null, - "hymnal's": null, - "hymnbook": [["S"]], - "hymnbooks": null, - "hymn": [["G", "S", "D", "M"]], - "hymning": null, - "hymns": null, - "hymned": null, - "hymn's": null, - "Hynda": [["M"]], - "Hynda's": null, - "hype": [["M", "Z", "G", "D", "S", "R"]], - "hype's": null, - "hypers": null, - "hyping": null, - "hyped": null, - "hypes": null, - "hyper": null, - "hyperactive": [["S"]], - "hyperactives": null, - "hyperactivity": [["S", "M"]], - "hyperactivities": null, - "hyperactivity's": null, - "hyperbola": [["M", "S"]], - "hyperbola's": null, - "hyperbolas": null, - "hyperbole": [["M", "S"]], - "hyperbole's": null, - "hyperboles": null, - "hyperbolic": null, - "hyperbolically": null, - "hyperboloidal": null, - "hyperboloid": [["S", "M"]], - "hyperboloids": null, - "hyperboloid's": null, - "hypercellularity": null, - "hypercritical": [["Y"]], - "hypercritically": null, - "hypercube": [["M", "S"]], - "hypercube's": null, - "hypercubes": null, - "hyperemia": [["M"]], - "hyperemia's": null, - "hyperemic": null, - "hyperfine": null, - "hypergamous": [["Y"]], - "hypergamously": null, - "hypergamy": [["M"]], - "hypergamy's": null, - "hyperglycemia": [["M", "S"]], - "hyperglycemia's": null, - "hyperglycemias": null, - "hyperinflation": null, - "Hyperion": [["M"]], - "Hyperion's": null, - "hypermarket": [["S", "M"]], - "hypermarkets": null, - "hypermarket's": null, - "hypermedia": [["S"]], - "hypermedias": null, - "hyperplane": [["S", "M"]], - "hyperplanes": null, - "hyperplane's": null, - "hyperplasia": [["M"]], - "hyperplasia's": null, - "hypersensitiveness": [["M", "S"]], - "hypersensitiveness's": null, - "hypersensitivenesses": null, - "hypersensitive": [["P"]], - "hypersensitivity": [["M", "S"]], - "hypersensitivity's": null, - "hypersensitivities": null, - "hypersonic": null, - "hyperspace": [["M"]], - "hyperspace's": null, - "hypersphere": [["M"]], - "hypersphere's": null, - "hypertension": [["M", "S"]], - "hypertension's": null, - "hypertensions": null, - "hypertensive": [["S"]], - "hypertensives": null, - "hypertext": [["S", "M"]], - "hypertexts": null, - "hypertext's": null, - "hyperthyroid": null, - "hyperthyroidism": [["M", "S"]], - "hyperthyroidism's": null, - "hyperthyroidisms": null, - "hypertrophy": [["M", "S", "D", "G"]], - "hypertrophy's": null, - "hypertrophies": null, - "hypertrophied": null, - "hypertrophying": null, - "hypervelocity": null, - "hyperventilate": [["X", "S", "D", "G", "N"]], - "hyperventilations": null, - "hyperventilates": null, - "hyperventilated": null, - "hyperventilating": null, - "hyperventilation": [["M"]], - "hyperventilation's": null, - "hyphenated": [["U"]], - "unhyphenated": null, - "hyphenate": [["N", "G", "X", "S", "D"]], - "hyphenation": [["M"]], - "hyphenating": null, - "hyphenations": null, - "hyphenates": null, - "hyphenation's": null, - "hyphen": [["D", "M", "G", "S"]], - "hyphened": null, - "hyphen's": null, - "hyphening": null, - "hyphens": null, - "hypnoses": null, - "hypnosis": [["M"]], - "hypnosis's": null, - "hypnotherapy": [["S", "M"]], - "hypnotherapies": null, - "hypnotherapy's": null, - "hypnotically": null, - "hypnotic": [["S"]], - "hypnotics": null, - "hypnotism": [["M", "S"]], - "hypnotism's": null, - "hypnotisms": null, - "hypnotist": [["S", "M"]], - "hypnotists": null, - "hypnotist's": null, - "hypnotize": [["S", "D", "G"]], - "hypnotizes": null, - "hypnotized": null, - "hypnotizing": null, - "hypoactive": null, - "hypoallergenic": null, - "hypocellularity": null, - "hypochondriac": [["S", "M"]], - "hypochondriacs": null, - "hypochondriac's": null, - "hypochondria": [["M", "S"]], - "hypochondria's": null, - "hypochondrias": null, - "hypocrisy": [["S", "M"]], - "hypocrisies": null, - "hypocrisy's": null, - "hypocrite": [["M", "S"]], - "hypocrite's": null, - "hypocrites": null, - "hypocritical": [["Y"]], - "hypocritically": null, - "hypodermic": [["S"]], - "hypodermics": null, - "hypo": [["D", "M", "S", "G"]], - "hypoed": null, - "hypo's": null, - "hypos": null, - "hypoing": null, - "hypoglycemia": [["S", "M"]], - "hypoglycemias": null, - "hypoglycemia's": null, - "hypoglycemic": [["S"]], - "hypoglycemics": null, - "hypophyseal": null, - "hypophysectomized": null, - "hypotenuse": [["M", "S"]], - "hypotenuse's": null, - "hypotenuses": null, - "hypothalami": null, - "hypothalamic": null, - "hypothalamically": null, - "hypothalamus": [["M"]], - "hypothalamus's": null, - "hypothermia": [["S", "M"]], - "hypothermias": null, - "hypothermia's": null, - "hypotheses": null, - "hypothesis": [["M"]], - "hypothesis's": null, - "hypothesizer": [["M"]], - "hypothesizer's": null, - "hypothesize": [["Z", "G", "R", "S", "D"]], - "hypothesizers": null, - "hypothesizing": null, - "hypothesizes": null, - "hypothesized": null, - "hypothetic": null, - "hypothetical": [["Y"]], - "hypothetically": null, - "hypothyroid": null, - "hypothyroidism": [["S", "M"]], - "hypothyroidisms": null, - "hypothyroidism's": null, - "hypoxia": [["M"]], - "hypoxia's": null, - "hyssop": [["M", "S"]], - "hyssop's": null, - "hyssops": null, - "hysterectomy": [["M", "S"]], - "hysterectomy's": null, - "hysterectomies": null, - "hysteresis": [["M"]], - "hysteresis's": null, - "hysteria": [["S", "M"]], - "hysterias": null, - "hysteria's": null, - "hysterical": [["Y", "U"]], - "hysterically": null, - "unhysterically": null, - "unhysterical": null, - "hysteric": [["S", "M"]], - "hysterics": null, - "hysteric's": null, - "Hyundai": [["M"]], - "Hyundai's": null, - "Hz": null, - "i": null, - "I": null, - "IA": null, - "Iaccoca": [["M"]], - "Iaccoca's": null, - "Iago": [["M"]], - "Iago's": null, - "Iain": [["M"]], - "Iain's": null, - "Ia": [["M"]], - "Ia's": null, - "iambi": null, - "iambic": [["S"]], - "iambics": null, - "iamb": [["M", "S"]], - "iamb's": null, - "iambs": null, - "iambus": [["S", "M"]], - "iambuses": null, - "iambus's": null, - "Ian": [["M"]], - "Ian's": null, - "Ianthe": [["M"]], - "Ianthe's": null, - "Ibadan": [["M"]], - "Ibadan's": null, - "Ibbie": [["M"]], - "Ibbie's": null, - "Ibby": [["M"]], - "Ibby's": null, - "Iberia": [["M"]], - "Iberia's": null, - "Iberian": [["M", "S"]], - "Iberian's": null, - "Iberians": null, - "Ibero": [["M"]], - "Ibero's": null, - "ibex": [["M", "S"]], - "ibex's": null, - "ibexes": null, - "ibid": null, - "ibidem": null, - "ibis": [["S", "M"]], - "ibises": null, - "ibis's": null, - "IBM": [["M"]], - "IBM's": null, - "Ibo": [["M"]], - "Ibo's": null, - "Ibrahim": [["M"]], - "Ibrahim's": null, - "Ibsen": [["M"]], - "Ibsen's": null, - "ibuprofen": [["S"]], - "ibuprofens": null, - "Icarus": [["M"]], - "Icarus's": null, - "ICBM": [["S"]], - "ICBMs": null, - "ICC": null, - "iceberg": [["S", "M"]], - "icebergs": null, - "iceberg's": null, - "iceboat": [["M", "S"]], - "iceboat's": null, - "iceboats": null, - "icebound": null, - "icebox": [["M", "S"]], - "icebox's": null, - "iceboxes": null, - "icebreaker": [["S", "M"]], - "icebreakers": null, - "icebreaker's": null, - "icecap": [["S", "M"]], - "icecaps": null, - "icecap's": null, - "ice": [["G", "D", "S", "C"]], - "icing": [["M", "S"]], - "deicing": null, - "iced": null, - "deiced": null, - "ices": null, - "deices": null, - "Icelander": [["M"]], - "Icelander's": null, - "Icelandic": null, - "Iceland": [["M", "R", "Z"]], - "Iceland's": null, - "Icelanders": null, - "Ice": [["M"]], - "Ice's": null, - "iceman": [["M"]], - "iceman's": null, - "icemen": null, - "icepack": null, - "icepick": [["S"]], - "icepicks": null, - "ice's": null, - "Ichabod": [["M"]], - "Ichabod's": null, - "ichneumon": [["M"]], - "ichneumon's": null, - "ichthyologist": [["M", "S"]], - "ichthyologist's": null, - "ichthyologists": null, - "ichthyology": [["M", "S"]], - "ichthyology's": null, - "ichthyologies": null, - "icicle": [["S", "M"]], - "icicles": null, - "icicle's": null, - "icily": null, - "iciness": [["S", "M"]], - "icinesses": null, - "iciness's": null, - "icing's": null, - "icings": null, - "icky": [["R", "T"]], - "ickier": null, - "ickiest": null, - "iconic": null, - "icon": [["M", "S"]], - "icon's": null, - "icons": null, - "iconoclasm": [["M", "S"]], - "iconoclasm's": null, - "iconoclasms": null, - "iconoclastic": null, - "iconoclast": [["M", "S"]], - "iconoclast's": null, - "iconoclasts": null, - "iconography": [["M", "S"]], - "iconography's": null, - "iconographies": null, - "icosahedra": null, - "icosahedral": null, - "icosahedron": [["M"]], - "icosahedron's": null, - "ictus": [["S", "M"]], - "ictuses": null, - "ictus's": null, - "ICU": null, - "icy": [["R", "P", "T"]], - "icier": null, - "iciest": null, - "I'd": null, - "ID": null, - "Idahoan": [["S"]], - "Idahoans": null, - "Idahoes": null, - "Idaho": [["M", "S"]], - "Idaho's": null, - "Idahos": null, - "Idalia": [["M"]], - "Idalia's": null, - "Idalina": [["M"]], - "Idalina's": null, - "Idaline": [["M"]], - "Idaline's": null, - "Ida": [["M"]], - "Ida's": null, - "idealism": [["M", "S"]], - "idealism's": null, - "idealisms": null, - "idealistic": null, - "idealistically": null, - "idealist": [["M", "S"]], - "idealist's": null, - "idealists": null, - "idealization": [["M", "S"]], - "idealization's": null, - "idealizations": null, - "idealized": [["U"]], - "unidealized": null, - "idealize": [["G", "D", "R", "S", "Z"]], - "idealizing": null, - "idealizer": [["M"]], - "idealizes": null, - "idealizers": null, - "idealizer's": null, - "ideal": [["M", "Y", "S"]], - "ideal's": null, - "ideally": null, - "ideals": null, - "idealogical": null, - "idea": [["S", "M"]], - "ideas": null, - "idea's": null, - "ideate": [["S", "N"]], - "ideates": null, - "ideation": [["M"]], - "ideation's": null, - "Idelle": [["M"]], - "Idelle's": null, - "Idell": [["M"]], - "Idell's": null, - "idem": null, - "idempotent": [["S"]], - "idempotents": null, - "identicalness": [["M"]], - "identicalness's": null, - "identical": [["Y", "P"]], - "identically": null, - "identifiability": null, - "identifiable": [["U"]], - "unidentifiable": null, - "identifiably": null, - "identification": [["M"]], - "identification's": null, - "identified": [["U"]], - "unidentified": null, - "identifier": [["M"]], - "identifier's": null, - "identify": [["X", "Z", "N", "S", "R", "D", "G"]], - "identifications": null, - "identifiers": null, - "identifies": null, - "identifying": null, - "identity": [["S", "M"]], - "identities": null, - "identity's": null, - "ideogram": [["M", "S"]], - "ideogram's": null, - "ideograms": null, - "ideographic": null, - "ideograph": [["M"]], - "ideograph's": null, - "ideographs": null, - "ideological": [["Y"]], - "ideologically": null, - "ideologist": [["S", "M"]], - "ideologists": null, - "ideologist's": null, - "ideologue": [["S"]], - "ideologues": null, - "ideology": [["S", "M"]], - "ideologies": null, - "ideology's": null, - "ides": null, - "Idette": [["M"]], - "Idette's": null, - "idiocy": [["M", "S"]], - "idiocy's": null, - "idiocies": null, - "idiolect": [["M"]], - "idiolect's": null, - "idiomatically": null, - "idiomatic": [["P"]], - "idiomaticness": null, - "idiom": [["M", "S"]], - "idiom's": null, - "idioms": null, - "idiopathic": null, - "idiosyncrasy": [["S", "M"]], - "idiosyncrasies": null, - "idiosyncrasy's": null, - "idiosyncratic": null, - "idiosyncratically": null, - "idiotic": null, - "idiotically": null, - "idiot": [["M", "S"]], - "idiot's": null, - "idiots": null, - "idleness": [["M", "S"]], - "idleness's": null, - "idlenesses": null, - "idle": [["P", "Z", "T", "G", "D", "S", "R"]], - "idlers": null, - "idlest": null, - "idling": null, - "idled": null, - "idles": null, - "idler": [["M"]], - "idler's": null, - "id": [["M", "Y"]], - "id's": null, - "idly": null, - "idolater": [["M", "S"]], - "idolater's": null, - "idolaters": null, - "idolatress": [["S"]], - "idolatresses": null, - "idolatrous": null, - "idolatry": [["S", "M"]], - "idolatries": null, - "idolatry's": null, - "idolization": [["S", "M"]], - "idolizations": null, - "idolization's": null, - "idolized": [["U"]], - "unidolized": [["M", "S"]], - "idolizer": [["M"]], - "idolizer's": null, - "idolize": [["Z", "G", "D", "R", "S"]], - "idolizers": null, - "idolizing": null, - "idolizes": null, - "idol": [["M", "S"]], - "idol's": null, - "idols": null, - "ids": null, - "IDs": null, - "idyllic": null, - "idyllically": null, - "idyll": [["M", "S"]], - "idyll's": null, - "idylls": null, - "IE": null, - "IEEE": null, - "Ieyasu": [["M"]], - "Ieyasu's": null, - "if": null, - "iffiness": [["S"]], - "iffinesses": null, - "iffy": [["T", "P", "R"]], - "iffiest": null, - "iffier": null, - "Ifni": [["M"]], - "Ifni's": null, - "ifs": null, - "Iggie": [["M"]], - "Iggie's": null, - "Iggy": [["M"]], - "Iggy's": null, - "igloo": [["M", "S"]], - "igloo's": null, - "igloos": null, - "Ignace": [["M"]], - "Ignace's": null, - "Ignacio": [["M"]], - "Ignacio's": null, - "Ignacius": [["M"]], - "Ignacius's": null, - "Ignatius": [["M"]], - "Ignatius's": null, - "Ignazio": [["M"]], - "Ignazio's": null, - "Ignaz": [["M"]], - "Ignaz's": null, - "igneous": null, - "ignitable": null, - "ignite": [["A", "S", "D", "G"]], - "reignite": null, - "reignites": null, - "reignited": null, - "reigniting": null, - "ignites": null, - "ignited": null, - "igniting": null, - "igniter": [["M"]], - "igniter's": null, - "ignition": [["M", "S"]], - "ignition's": null, - "ignitions": null, - "ignobleness": [["M"]], - "ignobleness's": null, - "ignoble": [["P"]], - "ignobly": null, - "ignominious": [["Y"]], - "ignominiously": null, - "ignominy": [["M", "S"]], - "ignominy's": null, - "ignominies": null, - "ignoramus": [["S", "M"]], - "ignoramuses": null, - "ignoramus's": null, - "ignorance": [["M", "S"]], - "ignorance's": null, - "ignorances": null, - "ignorantness": [["M"]], - "ignorantness's": null, - "ignorant": [["S", "P", "Y"]], - "ignorants": null, - "ignorantly": null, - "ignorer": [["M"]], - "ignorer's": null, - "ignore": [["S", "R", "D", "G", "B"]], - "ignores": null, - "ignored": null, - "ignoring": null, - "ignorable": null, - "Igor": [["M"]], - "Igor's": null, - "iguana": [["M", "S"]], - "iguana's": null, - "iguanas": null, - "Iguassu": [["M"]], - "Iguassu's": null, - "ii": null, - "iii": null, - "Ijsselmeer": [["M"]], - "Ijsselmeer's": null, - "Ike": [["M"]], - "Ike's": null, - "Ikey": [["M"]], - "Ikey's": null, - "Ikhnaton": [["M"]], - "Ikhnaton's": null, - "ikon's": null, - "IL": null, - "Ilaire": [["M"]], - "Ilaire's": null, - "Ila": [["M"]], - "Ila's": null, - "Ilario": [["M"]], - "Ilario's": null, - "ilea": null, - "Ileana": [["M"]], - "Ileana's": null, - "Ileane": [["M"]], - "Ileane's": null, - "ileitides": null, - "ileitis": [["M"]], - "ileitis's": null, - "Ilene": [["M"]], - "Ilene's": null, - "ileum": [["M"]], - "ileum's": null, - "ilia": null, - "iliac": null, - "Iliad": [["M", "S"]], - "Iliad's": null, - "Iliads": null, - "Ilise": [["M"]], - "Ilise's": null, - "ilium": [["M"]], - "ilium's": null, - "Ilka": [["M"]], - "Ilka's": null, - "ilk": [["M", "S"]], - "ilk's": null, - "ilks": null, - "I'll": null, - "Illa": [["M"]], - "Illa's": null, - "illegality": [["M", "S"]], - "illegality's": null, - "illegalities": null, - "illegal": [["Y", "S"]], - "illegally": null, - "illegals": null, - "illegibility": [["M", "S"]], - "illegibility's": null, - "illegibilities": null, - "illegible": null, - "illegibly": null, - "illegitimacy": [["S", "M"]], - "illegitimacies": null, - "illegitimacy's": null, - "illegitimate": [["S", "D", "G", "Y"]], - "illegitimates": null, - "illegitimated": null, - "illegitimating": null, - "illegitimately": null, - "illiberality": [["S", "M"]], - "illiberalities": null, - "illiberality's": null, - "illiberal": [["Y"]], - "illiberally": null, - "illicitness": [["M", "S"]], - "illicitness's": null, - "illicitnesses": null, - "illicit": [["Y", "P"]], - "illicitly": null, - "illimitableness": [["M"]], - "illimitableness's": null, - "illimitable": [["P"]], - "Illinoisan": [["M", "S"]], - "Illinoisan's": null, - "Illinoisans": null, - "Illinois": [["M"]], - "Illinois's": null, - "illiquid": null, - "illiteracy": [["M", "S"]], - "illiteracy's": null, - "illiteracies": null, - "illiterateness": [["M"]], - "illiterateness's": null, - "illiterate": [["P", "S", "Y"]], - "illiterates": null, - "illiterately": null, - "Ill": [["M"]], - "Ill's": null, - "illness": [["M", "S"]], - "illness's": null, - "illnesses": null, - "illogicality": [["S", "M"]], - "illogicalities": null, - "illogicality's": null, - "illogicalness": [["M"]], - "illogicalness's": null, - "illogical": [["P", "Y"]], - "illogically": null, - "illogic": [["M"]], - "illogic's": null, - "ill": [["P", "S"]], - "ills": null, - "illume": [["D", "G"]], - "illumed": null, - "illuming": null, - "illuminate": [["X", "S", "D", "V", "N", "G"]], - "illuminations": null, - "illuminates": null, - "illuminated": null, - "illuminative": null, - "illumination": [["M"]], - "illuminating": [["U"]], - "Illuminati": null, - "illuminatingly": null, - "unilluminating": null, - "illumination's": null, - "illumine": [["B", "G", "S", "D"]], - "illuminable": null, - "illumining": null, - "illumines": null, - "illumined": null, - "illusionary": null, - "illusion": [["E", "S"]], - "disillusions": null, - "illusions": null, - "illusionist": [["M", "S"]], - "illusionist's": null, - "illusionists": null, - "illusion's": null, - "illusiveness": [["M"]], - "illusiveness's": null, - "illusive": [["P", "Y"]], - "illusively": null, - "illusoriness": [["M"]], - "illusoriness's": null, - "illusory": [["P"]], - "illustrated": [["U"]], - "unillustrated": null, - "illustrate": [["V", "G", "N", "S", "D", "X"]], - "illustrative": [["Y"]], - "illustrating": null, - "illustration": [["M"]], - "illustrates": null, - "illustrations": null, - "illustration's": null, - "illustratively": null, - "illustrator": [["S", "M"]], - "illustrators": null, - "illustrator's": null, - "illustriousness": [["S", "M"]], - "illustriousnesses": null, - "illustriousness's": null, - "illustrious": [["P", "Y"]], - "illustriously": null, - "illus": [["V"]], - "illy": null, - "Ilona": [["M"]], - "Ilona's": null, - "Ilsa": [["M"]], - "Ilsa's": null, - "Ilse": [["M"]], - "Ilse's": null, - "Ilysa": [["M"]], - "Ilysa's": null, - "Ilyse": [["M"]], - "Ilyse's": null, - "Ilyssa": [["M"]], - "Ilyssa's": null, - "Ilyushin": [["M"]], - "Ilyushin's": null, - "I'm": null, - "image": [["D", "S", "G", "M"]], - "imaged": null, - "images": null, - "imaging": null, - "image's": null, - "Imagen": [["M"]], - "Imagen's": null, - "imagery": [["M", "S"]], - "imagery's": null, - "imageries": null, - "imaginableness": null, - "imaginable": [["U"]], - "unimaginable": null, - "imaginably": [["U"]], - "unimaginably": null, - "imaginariness": [["M"]], - "imaginariness's": null, - "imaginary": [["P", "S"]], - "imaginaries": null, - "imagination": [["M", "S"]], - "imagination's": null, - "imaginations": null, - "imaginativeness": [["M"]], - "imaginativeness's": null, - "imaginative": [["U", "Y"]], - "unimaginative": null, - "unimaginatively": null, - "imaginatively": null, - "imagined": [["U"]], - "unimagined": null, - "imaginer": [["M"]], - "imaginer's": null, - "imagine": [["R", "S", "D", "J", "B", "G"]], - "imagines": null, - "imaginings": null, - "imagining": null, - "imagoes": null, - "imago": [["M"]], - "imago's": null, - "imam": [["M", "S"]], - "imam's": null, - "imams": null, - "imbalance": [["S", "D", "M"]], - "imbalances": null, - "imbalanced": null, - "imbalance's": null, - "imbecile": [["Y", "M", "S"]], - "imbecilely": null, - "imbecile's": null, - "imbeciles": null, - "imbecilic": null, - "imbecility": [["M", "S"]], - "imbecility's": null, - "imbecilities": null, - "imbiber": [["M"]], - "imbiber's": null, - "imbibe": [["Z", "R", "S", "D", "G"]], - "imbibers": null, - "imbibes": null, - "imbibed": null, - "imbibing": null, - "imbrication": [["S", "M"]], - "imbrications": null, - "imbrication's": null, - "Imbrium": [["M"]], - "Imbrium's": null, - "imbroglio": [["M", "S"]], - "imbroglio's": null, - "imbroglios": null, - "imbruing": null, - "imbue": [["G", "D", "S"]], - "imbuing": null, - "imbued": null, - "imbues": null, - "Imelda": [["M"]], - "Imelda's": null, - "IMF": null, - "IMHO": null, - "imitable": [["I"]], - "inimitable": [["P"]], - "imitate": [["S", "D", "V", "N", "G", "X"]], - "imitates": null, - "imitated": null, - "imitative": [["Y", "P"]], - "imitation": [["M"]], - "imitating": null, - "imitations": null, - "imitation's": null, - "imitativeness": [["M", "S"]], - "imitativeness's": null, - "imitativenesses": null, - "imitatively": null, - "imitator": [["S", "M"]], - "imitators": null, - "imitator's": null, - "immaculateness": [["S", "M"]], - "immaculatenesses": null, - "immaculateness's": null, - "immaculate": [["Y", "P"]], - "immaculately": null, - "immanence": [["S"]], - "immanences": null, - "immanency": [["M", "S"]], - "immanency's": null, - "immanencies": null, - "immanent": [["Y"]], - "immanently": null, - "Immanuel": [["M"]], - "Immanuel's": null, - "immateriality": [["M", "S"]], - "immateriality's": null, - "immaterialities": null, - "immaterialness": [["M", "S"]], - "immaterialness's": null, - "immaterialnesses": null, - "immaterial": [["P", "Y"]], - "immaterially": null, - "immatureness": [["M"]], - "immatureness's": null, - "immature": [["S", "P", "Y"]], - "immatures": null, - "immaturely": null, - "immaturity": [["M", "S"]], - "immaturity's": null, - "immaturities": null, - "immeasurableness": [["M"]], - "immeasurableness's": null, - "immeasurable": [["P"]], - "immeasurably": null, - "immediacy": [["M", "S"]], - "immediacy's": null, - "immediacies": null, - "immediateness": [["S", "M"]], - "immediatenesses": null, - "immediateness's": null, - "immediate": [["Y", "P"]], - "immediately": null, - "immemorial": [["Y"]], - "immemorially": null, - "immenseness": [["M"]], - "immenseness's": null, - "immense": [["P", "R", "T", "Y"]], - "immenser": null, - "immensest": null, - "immensely": null, - "immensity": [["M", "S"]], - "immensity's": null, - "immensities": null, - "immerse": [["R", "S", "D", "X", "N", "G"]], - "immerser": null, - "immerses": null, - "immersed": null, - "immersions": null, - "immersion": [["M"]], - "immersing": null, - "immersible": null, - "immersion's": null, - "immigrant": [["S", "M"]], - "immigrants": null, - "immigrant's": null, - "immigrate": [["N", "G", "S", "D", "X"]], - "immigration": [["M"]], - "immigrating": null, - "immigrates": null, - "immigrated": null, - "immigrations": null, - "immigration's": null, - "imminence": [["S", "M"]], - "imminences": null, - "imminence's": null, - "imminentness": [["M"]], - "imminentness's": null, - "imminent": [["Y", "P"]], - "imminently": null, - "immobile": null, - "immobility": [["M", "S"]], - "immobility's": null, - "immobilities": null, - "immobilization": [["M", "S"]], - "immobilization's": null, - "immobilizations": null, - "immobilize": [["D", "S", "R", "G"]], - "immobilized": null, - "immobilizes": null, - "immobilizer": null, - "immobilizing": null, - "immoderateness": [["M"]], - "immoderateness's": null, - "immoderate": [["N", "Y", "P"]], - "immoderation": [["M"]], - "immoderately": null, - "immoderation's": null, - "immodest": [["Y"]], - "immodestly": null, - "immodesty": [["S", "M"]], - "immodesties": null, - "immodesty's": null, - "immolate": [["S", "D", "N", "G", "X"]], - "immolates": null, - "immolated": null, - "immolation": [["M"]], - "immolating": null, - "immolations": null, - "immolation's": null, - "immorality": [["M", "S"]], - "immorality's": null, - "immoralities": null, - "immoral": [["Y"]], - "immorally": null, - "immortality": [["S", "M"]], - "immortalities": null, - "immortality's": null, - "immortalized": [["U"]], - "unimmortalized": null, - "immortalize": [["G", "D", "S"]], - "immortalizing": null, - "immortalizes": null, - "immortal": [["S", "Y"]], - "immortals": null, - "immortally": null, - "immovability": [["S", "M"]], - "immovabilities": null, - "immovability's": null, - "immovableness": [["M"]], - "immovableness's": null, - "immovable": [["P", "S"]], - "immovables": null, - "immovably": null, - "immune": [["S"]], - "immunes": null, - "immunity": [["S", "M"]], - "immunities": null, - "immunity's": null, - "immunization": [["M", "S"]], - "immunization's": null, - "immunizations": null, - "immunize": [["G", "S", "D"]], - "immunizing": null, - "immunizes": null, - "immunized": null, - "immunoassay": [["M"]], - "immunoassay's": null, - "immunodeficiency": [["S"]], - "immunodeficiencies": null, - "immunodeficient": null, - "immunologic": null, - "immunological": [["Y"]], - "immunologically": null, - "immunologist": [["S", "M"]], - "immunologists": null, - "immunologist's": null, - "immunology": [["M", "S"]], - "immunology's": null, - "immunologies": null, - "immure": [["G", "S", "D"]], - "immuring": null, - "immures": null, - "immured": null, - "immutability": [["M", "S"]], - "immutability's": null, - "immutabilities": null, - "immutableness": [["M"]], - "immutableness's": null, - "immutable": [["P"]], - "immutably": null, - "IMNSHO": null, - "IMO": null, - "Imogene": [["M"]], - "Imogene's": null, - "Imogen": [["M"]], - "Imogen's": null, - "Imojean": [["M"]], - "Imojean's": null, - "impaction": [["S", "M"]], - "impactions": null, - "impaction's": null, - "impactor": [["S", "M"]], - "impactors": null, - "impactor's": null, - "impact": [["V", "G", "M", "R", "D", "S"]], - "impactive": null, - "impacting": null, - "impact's": null, - "impacter": null, - "impacted": null, - "impacts": null, - "impaired": [["U"]], - "unimpaired": null, - "impairer": [["M"]], - "impairer's": null, - "impair": [["L", "G", "R", "D", "S"]], - "impairment": [["S", "M"]], - "impairing": null, - "impairs": null, - "impairments": null, - "impairment's": null, - "impala": [["M", "S"]], - "impala's": null, - "impalas": null, - "impale": [["G", "L", "R", "S", "D"]], - "impaling": null, - "impalement": [["S", "M"]], - "impaler": [["M"]], - "impales": null, - "impaled": null, - "impalements": null, - "impalement's": null, - "impaler's": null, - "impalpable": null, - "impalpably": null, - "impanel": [["D", "G", "S"]], - "impaneled": null, - "impaneling": null, - "impanels": null, - "impartation": [["M"]], - "impartation's": null, - "impart": [["G", "D", "S"]], - "imparting": null, - "imparted": null, - "imparts": null, - "impartiality": [["S", "M"]], - "impartialities": null, - "impartiality's": null, - "impartial": [["Y"]], - "impartially": null, - "impassableness": [["M"]], - "impassableness's": null, - "impassable": [["P"]], - "impassably": null, - "impasse": [["S", "X", "B", "M", "V", "N"]], - "impasses": null, - "impassions": null, - "impasse's": null, - "impassive": [["Y", "P"]], - "impassion": [["D", "G"]], - "impassibility": [["S", "M"]], - "impassibilities": null, - "impassibility's": null, - "impassible": null, - "impassibly": null, - "impassioned": [["U"]], - "impassioning": null, - "unimpassioned": null, - "impassiveness": [["M", "S"]], - "impassiveness's": null, - "impassivenesses": null, - "impassively": null, - "impassivity": [["M", "S"]], - "impassivity's": null, - "impassivities": null, - "impasto": [["S", "M"]], - "impastos": null, - "impasto's": null, - "impatience": [["S", "M"]], - "impatiences": null, - "impatience's": null, - "impatiens": [["M"]], - "impatiens's": null, - "impatient": [["Y"]], - "impatiently": null, - "impeachable": [["U"]], - "unimpeachable": null, - "impeach": [["D", "R", "S", "Z", "G", "L", "B"]], - "impeached": null, - "impeacher": [["M"]], - "impeaches": null, - "impeachers": null, - "impeaching": null, - "impeachment": [["M", "S"]], - "impeacher's": null, - "impeachment's": null, - "impeachments": null, - "impeccability": [["S", "M"]], - "impeccabilities": null, - "impeccability's": null, - "impeccable": [["S"]], - "impeccables": null, - "impeccably": null, - "impecuniousness": [["M", "S"]], - "impecuniousness's": null, - "impecuniousnesses": null, - "impecunious": [["P", "Y"]], - "impecuniously": null, - "impedance": [["M", "S"]], - "impedance's": null, - "impedances": null, - "impeded": [["U"]], - "unimpeded": null, - "impeder": [["M"]], - "impeder's": null, - "impede": [["S"]], - "impedes": null, - "imped": [["G", "R", "D"]], - "impeding": null, - "impedimenta": null, - "impediment": [["S", "M"]], - "impediments": null, - "impediment's": null, - "impelled": null, - "impeller": [["M", "S"]], - "impeller's": null, - "impellers": null, - "impelling": null, - "impel": [["S"]], - "impels": null, - "impend": [["D", "G", "S"]], - "impended": null, - "impending": null, - "impends": null, - "impenetrability": [["M", "S"]], - "impenetrability's": null, - "impenetrabilities": null, - "impenetrableness": [["M"]], - "impenetrableness's": null, - "impenetrable": [["P"]], - "impenetrably": null, - "impenitence": [["M", "S"]], - "impenitence's": null, - "impenitences": null, - "impenitent": [["Y", "S"]], - "impenitently": null, - "impenitents": null, - "imperativeness": [["M"]], - "imperativeness's": null, - "imperative": [["P", "S", "Y"]], - "imperatives": null, - "imperatively": null, - "imperceivable": null, - "imperceptibility": [["M", "S"]], - "imperceptibility's": null, - "imperceptibilities": null, - "imperceptible": null, - "imperceptibly": null, - "imperceptive": null, - "imperf": null, - "imperfectability": null, - "imperfection": [["M", "S"]], - "imperfection's": null, - "imperfections": null, - "imperfectness": [["S", "M"]], - "imperfectnesses": null, - "imperfectness's": null, - "imperfect": [["Y", "S", "V", "P"]], - "imperfectly": null, - "imperfects": null, - "imperfective": null, - "imperialism": [["M", "S"]], - "imperialism's": null, - "imperialisms": null, - "imperialistic": null, - "imperialistically": null, - "imperialist": [["S", "M"]], - "imperialists": null, - "imperialist's": null, - "imperial": [["Y", "S"]], - "imperially": null, - "imperials": null, - "imperil": [["G", "S", "L", "D"]], - "imperiling": null, - "imperils": null, - "imperilment": [["S", "M"]], - "imperiled": null, - "imperilments": null, - "imperilment's": null, - "imperiousness": [["M", "S"]], - "imperiousness's": null, - "imperiousnesses": null, - "imperious": [["Y", "P"]], - "imperiously": null, - "imperishableness": [["M"]], - "imperishableness's": null, - "imperishable": [["S", "P"]], - "imperishables": null, - "imperishably": null, - "impermanence": [["M", "S"]], - "impermanence's": null, - "impermanences": null, - "impermanent": [["Y"]], - "impermanently": null, - "impermeability": [["S", "M"]], - "impermeabilities": null, - "impermeability's": null, - "impermeableness": [["M"]], - "impermeableness's": null, - "impermeable": [["P"]], - "impermeably": null, - "impermissible": null, - "impersonality": [["M"]], - "impersonality's": null, - "impersonalized": null, - "impersonal": [["Y"]], - "impersonally": null, - "impersonate": [["X", "G", "N", "D", "S"]], - "impersonations": null, - "impersonating": null, - "impersonation": [["M"]], - "impersonated": null, - "impersonates": null, - "impersonation's": null, - "impersonator": [["S", "M"]], - "impersonators": null, - "impersonator's": null, - "impertinence": [["S", "M"]], - "impertinences": null, - "impertinence's": null, - "impertinent": [["Y", "S"]], - "impertinently": null, - "impertinents": null, - "imperturbability": [["S", "M"]], - "imperturbabilities": null, - "imperturbability's": null, - "imperturbable": null, - "imperturbably": null, - "imperviousness": [["M"]], - "imperviousness's": null, - "impervious": [["P", "Y"]], - "imperviously": null, - "impetigo": [["M", "S"]], - "impetigo's": null, - "impetigos": null, - "impetuosity": [["M", "S"]], - "impetuosity's": null, - "impetuosities": null, - "impetuousness": [["M", "S"]], - "impetuousness's": null, - "impetuousnesses": null, - "impetuous": [["Y", "P"]], - "impetuously": null, - "impetus": [["M", "S"]], - "impetus's": null, - "impetuses": null, - "impiety": [["M", "S"]], - "impiety's": null, - "impieties": null, - "impinge": [["L", "S"]], - "impingement": [["M", "S"]], - "impinges": null, - "impingement's": null, - "impingements": null, - "imping": [["G", "D"]], - "impinging": null, - "impinged": null, - "impiousness": [["S", "M"]], - "impiousnesses": null, - "impiousness's": null, - "impious": [["P", "Y"]], - "impiously": null, - "impishness": [["M", "S"]], - "impishness's": null, - "impishnesses": null, - "impish": [["Y", "P"]], - "impishly": null, - "implacability": [["S", "M"]], - "implacabilities": null, - "implacability's": null, - "implacableness": [["M"]], - "implacableness's": null, - "implacable": [["P"]], - "implacably": null, - "implantation": [["S", "M"]], - "implantations": null, - "implantation's": null, - "implant": [["B", "G", "S", "D", "R"]], - "implantable": null, - "implanting": null, - "implants": null, - "implanted": null, - "implanter": [["M"]], - "implanter's": null, - "implausibility": [["M", "S"]], - "implausibility's": null, - "implausibilities": null, - "implausible": null, - "implausibly": null, - "implementability": null, - "implementable": [["U"]], - "unimplementable": null, - "implementation": [["A"]], - "reimplementation": null, - "implementations": null, - "implementation's": null, - "implemented": [["A", "U"]], - "reimplemented": null, - "unimplemented": null, - "implementer": [["M"]], - "implementer's": null, - "implementing": [["A"]], - "reimplementing": null, - "implementor": [["M", "S"]], - "implementor's": null, - "implementors": null, - "implement": [["S", "M", "R", "D", "G", "Z", "B"]], - "implements": null, - "implement's": null, - "implementers": null, - "implicant": [["S", "M"]], - "implicants": null, - "implicant's": null, - "implicate": [["V", "G", "S", "D"]], - "implicative": [["P", "Y"]], - "implicating": null, - "implicates": null, - "implicated": null, - "implication": [["M"]], - "implication's": null, - "implicativeness": null, - "implicatively": null, - "implicitness": [["S", "M"]], - "implicitnesses": null, - "implicitness's": null, - "implicit": [["Y", "P"]], - "implicitly": null, - "implied": [["Y"]], - "impliedly": null, - "implode": [["G", "S", "D"]], - "imploding": null, - "implodes": null, - "imploded": null, - "implore": [["G", "S", "D"]], - "imploring": [["Y"]], - "implores": null, - "implored": null, - "imploringly": null, - "implosion": [["S", "M"]], - "implosions": null, - "implosion's": null, - "implosive": [["S"]], - "implosives": null, - "imply": [["G", "N", "S", "D", "X"]], - "implying": null, - "implies": null, - "implications": null, - "impoliteness": [["M", "S"]], - "impoliteness's": null, - "impolitenesses": null, - "impolite": [["Y", "P"]], - "impolitely": null, - "impoliticness": [["M"]], - "impoliticness's": null, - "impolitic": [["P", "Y"]], - "impoliticly": null, - "imponderableness": [["M"]], - "imponderableness's": null, - "imponderable": [["P", "S"]], - "imponderables": null, - "importance": [["S", "M"]], - "importances": null, - "importance's": null, - "important": [["Y"]], - "importantly": null, - "importation": [["M", "S"]], - "importation's": null, - "importations": null, - "importer": [["M"]], - "importer's": null, - "importing": [["A"]], - "reimporting": null, - "import": [["S", "Z", "G", "B", "R", "D"]], - "imports": null, - "importers": null, - "importable": null, - "imported": null, - "importunateness": [["M"]], - "importunateness's": null, - "importunate": [["P", "Y", "G", "D", "S"]], - "importunately": null, - "importunating": null, - "importunated": null, - "importunates": null, - "importuner": [["M"]], - "importuner's": null, - "importune": [["S", "R", "D", "Z", "Y", "G"]], - "importunes": null, - "importuned": null, - "importuners": null, - "importunely": null, - "importuning": null, - "importunity": [["S", "M"]], - "importunities": null, - "importunity's": null, - "imposable": null, - "impose": [["A", "S", "D", "G"]], - "reimpose": null, - "reimposes": null, - "reimposed": null, - "reimposing": null, - "imposes": null, - "imposed": null, - "imposing": [["U"]], - "imposer": [["S", "M"]], - "imposers": null, - "imposer's": null, - "imposingly": null, - "unimposing": null, - "imposition": [["S", "M"]], - "impositions": null, - "imposition's": null, - "impossibility": [["S", "M"]], - "impossibilities": null, - "impossibility's": null, - "impossibleness": [["M"]], - "impossibleness's": null, - "impossible": [["P", "S"]], - "impossibles": null, - "impossibly": null, - "imposter's": null, - "impostor": [["S", "M"]], - "impostors": null, - "impostor's": null, - "impost": [["S", "G", "M", "D"]], - "imposts": null, - "imposting": null, - "impost's": null, - "imposted": null, - "imposture": [["S", "M"]], - "impostures": null, - "imposture's": null, - "impotence": [["M", "S"]], - "impotence's": null, - "impotences": null, - "impotency": [["S"]], - "impotencies": null, - "impotent": [["S", "Y"]], - "impotents": null, - "impotently": null, - "impound": [["G", "D", "S"]], - "impounding": null, - "impounded": null, - "impounds": null, - "impoundments": null, - "impoverisher": [["M"]], - "impoverisher's": null, - "impoverish": [["L", "G", "D", "R", "S"]], - "impoverishment": [["S", "M"]], - "impoverishing": null, - "impoverished": null, - "impoverishes": null, - "impoverishments": null, - "impoverishment's": null, - "impracticableness": [["M"]], - "impracticableness's": null, - "impracticable": [["P"]], - "impracticably": null, - "impracticality": [["S", "M"]], - "impracticalities": null, - "impracticality's": null, - "impracticalness": [["M"]], - "impracticalness's": null, - "impractical": [["P", "Y"]], - "impractically": null, - "imprecate": [["N", "G", "X", "S", "D"]], - "imprecation": [["M"]], - "imprecating": null, - "imprecations": null, - "imprecates": null, - "imprecated": null, - "imprecation's": null, - "impreciseness": [["M", "S"]], - "impreciseness's": null, - "imprecisenesses": null, - "imprecise": [["P", "Y", "X", "N"]], - "imprecisely": null, - "imprecisions": null, - "imprecision": [["M"]], - "imprecision's": null, - "impregnability": [["M", "S"]], - "impregnability's": null, - "impregnabilities": null, - "impregnableness": [["M"]], - "impregnableness's": null, - "impregnable": [["P"]], - "impregnably": null, - "impregnate": [["D", "S", "X", "N", "G"]], - "impregnated": null, - "impregnates": null, - "impregnations": null, - "impregnation": [["M"]], - "impregnating": null, - "impregnation's": null, - "impresario": [["S", "M"]], - "impresarios": null, - "impresario's": null, - "impress": [["D", "R", "S", "G", "V", "L"]], - "impressed": [["U"]], - "impresser": [["M"]], - "impresses": null, - "impressing": null, - "impressive": [["Y", "P"]], - "impressment": [["M"]], - "unimpressed": null, - "impresser's": null, - "impressibility": [["M", "S"]], - "impressibility's": null, - "impressibilities": null, - "impressible": null, - "impressionability": [["S", "M"]], - "impressionabilities": null, - "impressionability's": null, - "impressionableness": [["M"]], - "impressionableness's": null, - "impressionable": [["P"]], - "impression": [["B", "M", "S"]], - "impression's": null, - "impressions": null, - "impressionism": [["S", "M"]], - "impressionisms": null, - "impressionism's": null, - "impressionistic": null, - "impressionist": [["M", "S"]], - "impressionist's": null, - "impressionists": null, - "impressiveness": [["M", "S"]], - "impressiveness's": null, - "impressivenesses": null, - "impressively": null, - "impressment's": null, - "imprimatur": [["S", "M"]], - "imprimaturs": null, - "imprimatur's": null, - "imprinter": [["M"]], - "imprinter's": null, - "imprinting": [["M"]], - "imprinting's": null, - "imprint": [["S", "Z", "D", "R", "G", "M"]], - "imprints": null, - "imprinters": null, - "imprinted": null, - "imprint's": null, - "imprison": [["G", "L", "D", "S"]], - "imprisoning": null, - "imprisonment": [["M", "S"]], - "imprisoned": null, - "imprisons": null, - "imprisonment's": null, - "imprisonments": null, - "improbability": [["M", "S"]], - "improbability's": null, - "improbabilities": null, - "improbableness": [["M"]], - "improbableness's": null, - "improbable": [["P"]], - "improbably": null, - "impromptu": [["S"]], - "impromptus": null, - "improperness": [["M"]], - "improperness's": null, - "improper": [["P", "Y"]], - "improperly": null, - "impropitious": null, - "impropriety": [["S", "M"]], - "improprieties": null, - "impropriety's": null, - "improved": [["U"]], - "unimproved": null, - "improvement": [["M", "S"]], - "improvement's": null, - "improvements": null, - "improver": [["M"]], - "improver's": null, - "improve": [["S", "R", "D", "G", "B", "L"]], - "improves": null, - "improving": null, - "improvable": null, - "improvidence": [["S", "M"]], - "improvidences": null, - "improvidence's": null, - "improvident": [["Y"]], - "improvidently": null, - "improvisational": null, - "improvisation": [["M", "S"]], - "improvisation's": null, - "improvisations": null, - "improvisatory": null, - "improviser": [["M"]], - "improviser's": null, - "improvise": [["R", "S", "D", "Z", "G"]], - "improvises": null, - "improvised": null, - "improvisers": null, - "improvising": null, - "imprudence": [["S", "M"]], - "imprudences": null, - "imprudence's": null, - "imprudent": [["Y"]], - "imprudently": null, - "imp": [["S", "G", "M", "D", "R", "Y"]], - "imps": null, - "imp's": null, - "imper": null, - "impudence": [["M", "S"]], - "impudence's": null, - "impudences": null, - "impudent": [["Y"]], - "impudently": null, - "impugner": [["M"]], - "impugner's": null, - "impugn": [["S", "R", "D", "Z", "G", "B"]], - "impugns": null, - "impugned": null, - "impugners": null, - "impugning": null, - "impugnable": null, - "impulse": [["X", "M", "V", "G", "N", "S", "D"]], - "impulsions": null, - "impulse's": null, - "impulsive": [["Y", "P"]], - "impulsing": null, - "impulsion": [["M"]], - "impulses": null, - "impulsed": null, - "impulsion's": null, - "impulsiveness": [["M", "S"]], - "impulsiveness's": null, - "impulsivenesses": null, - "impulsively": null, - "impunity": [["S", "M"]], - "impunities": null, - "impunity's": null, - "impureness": [["M"]], - "impureness's": null, - "impure": [["R", "P", "T", "Y"]], - "impurer": null, - "impurest": null, - "impurely": null, - "impurity": [["M", "S"]], - "impurity's": null, - "impurities": null, - "imputation": [["S", "M"]], - "imputations": null, - "imputation's": null, - "impute": [["S", "D", "B", "G"]], - "imputes": null, - "imputed": null, - "imputable": null, - "imputing": null, - "Imus": [["M"]], - "Imus's": null, - "IN": null, - "inaction": null, - "inactive": null, - "inadequates": null, - "inadvertence": [["M", "S"]], - "inadvertence's": null, - "inadvertences": null, - "inadvertent": [["Y"]], - "inadvertently": null, - "inalienability": [["M", "S"]], - "inalienability's": null, - "inalienabilities": null, - "inalienably": null, - "inalterableness": [["M"]], - "inalterableness's": null, - "Ina": [["M"]], - "Ina's": null, - "inamorata": [["M", "S"]], - "inamorata's": null, - "inamoratas": null, - "inane": [["S", "R", "P", "Y", "T"]], - "inanes": null, - "inaner": null, - "inaneness": null, - "inanely": null, - "inanest": null, - "inanimatenesses": null, - "inanimate": [["P"]], - "inanity": [["M", "S"]], - "inanity's": null, - "inanities": null, - "inappeasable": null, - "inappropriate": [["P"]], - "inarticulate": [["P"]], - "in": [["A", "S"]], - "rein": [["G", "D", "M"]], - "reins": null, - "ins": null, - "inasmuch": null, - "inaugural": [["S"]], - "inaugurals": null, - "inaugurate": [["X", "S", "D", "N", "G"]], - "inaugurations": null, - "inaugurates": null, - "inaugurated": null, - "inauguration": [["M"]], - "inaugurating": null, - "inauguration's": null, - "inauthenticity": null, - "inbounding": null, - "inbred": [["S"]], - "inbreds": null, - "inbreed": [["J", "G"]], - "inbreedings": null, - "incalculableness's": null, - "incalculably": null, - "incandescence": [["S", "M"]], - "incandescences": null, - "incandescence's": null, - "incandescent": [["Y", "S"]], - "incandescently": null, - "incandescents": null, - "incant": null, - "incantation": [["S", "M"]], - "incantations": null, - "incantation's": null, - "incantatory": null, - "incapables": null, - "incapacitate": [["G", "N", "S", "D"]], - "incapacitating": null, - "incapacitation": [["M"]], - "incapacitates": null, - "incapacitated": null, - "incapacitation's": null, - "incarcerate": [["X", "G", "N", "D", "S"]], - "incarcerations": null, - "incarcerating": null, - "incarceration": [["M"]], - "incarcerated": null, - "incarcerates": null, - "incarceration's": null, - "incarnadine": [["G", "D", "S"]], - "incarnadining": null, - "incarnadined": null, - "incarnadines": null, - "incarnate": [["A", "G", "S", "D", "N", "X"]], - "reincarnate": null, - "reincarnating": null, - "reincarnates": null, - "reincarnated": null, - "reincarnation": null, - "reincarnations": null, - "incarnating": null, - "incarnates": null, - "incarnated": null, - "reincarnation's": null, - "Inca": [["S", "M"]], - "Incas": null, - "Inca's": null, - "incendiary": [["S"]], - "incendiaries": null, - "incense": [["M", "G", "D", "S"]], - "incense's": null, - "incensing": null, - "incensed": null, - "incenses": null, - "incentive": [["E", "S", "M"]], - "disincentive": null, - "disincentives": null, - "disincentive's": null, - "incentives": null, - "incentive's": null, - "incentively": null, - "incept": [["D", "G", "V", "S"]], - "incepted": null, - "incepting": null, - "inceptive": [["Y"]], - "incepts": null, - "inception": [["M", "S"]], - "inception's": null, - "inceptions": null, - "inceptively": null, - "inceptor": [["M"]], - "inceptor's": null, - "incessant": [["Y"]], - "incessantly": null, - "incest": [["S", "M"]], - "incests": null, - "incest's": null, - "incestuousness": [["M", "S"]], - "incestuousness's": null, - "incestuousnesses": null, - "incestuous": [["P", "Y"]], - "incestuously": null, - "inch": [["G", "M", "D", "S"]], - "inching": null, - "inch's": null, - "inched": null, - "inches": null, - "inchoate": [["D", "S", "G"]], - "inchoated": null, - "inchoates": null, - "inchoating": null, - "Inchon": [["M"]], - "Inchon's": null, - "inchworm": [["M", "S"]], - "inchworm's": null, - "inchworms": null, - "incidence": [["M", "S"]], - "incidence's": null, - "incidences": null, - "incidental": [["Y", "S"]], - "incidentally": null, - "incidentals": null, - "incident": [["S", "M"]], - "incidents": null, - "incident's": null, - "incinerate": [["X", "N", "G", "S", "D"]], - "incinerations": null, - "incineration": [["M"]], - "incinerating": null, - "incinerates": null, - "incinerated": null, - "incineration's": null, - "incinerator": [["S", "M"]], - "incinerators": null, - "incinerator's": null, - "incipience": [["S", "M"]], - "incipiences": null, - "incipience's": null, - "incipiency": [["M"]], - "incipiency's": null, - "incipient": [["Y"]], - "incipiently": null, - "incise": [["S", "D", "V", "G", "N", "X"]], - "incises": null, - "incised": null, - "incisive": [["Y", "P"]], - "incising": null, - "incision": [["M"]], - "incisions": null, - "incision's": null, - "incisiveness": [["M", "S"]], - "incisiveness's": null, - "incisivenesses": null, - "incisively": null, - "incisor": [["M", "S"]], - "incisor's": null, - "incisors": null, - "incitement": [["M", "S"]], - "incitement's": null, - "incitements": null, - "inciter": [["M"]], - "inciter's": null, - "inciters": null, - "incl": null, - "inclination": [["E", "S", "M"]], - "disinclination": null, - "disinclinations": null, - "disinclination's": null, - "inclinations": null, - "inclination's": null, - "incline": [["E", "G", "S", "D"]], - "disincline": null, - "disinclining": null, - "disinclines": null, - "disinclined": null, - "inclining": [["M"]], - "inclines": null, - "inclined": null, - "incliner": [["M"]], - "incliner's": null, - "inclining's": null, - "include": [["G", "D", "S"]], - "including": null, - "included": null, - "includes": null, - "inclusion": [["M", "S"]], - "inclusion's": null, - "inclusions": null, - "inclusiveness": [["M", "S"]], - "inclusiveness's": null, - "inclusivenesses": null, - "inclusive": [["P", "Y"]], - "inclusively": null, - "Inc": [["M"]], - "Inc's": null, - "incognito": [["S"]], - "incognitos": null, - "incoherency's": null, - "income's": null, - "incommode": [["D", "G"]], - "incommoded": null, - "incommoding": null, - "incommunicado": null, - "incomparable": null, - "incompetent's": null, - "incompetents": null, - "incomplete": [["P"]], - "inconceivability": [["M", "S"]], - "inconceivability's": null, - "inconceivabilities": null, - "inconceivableness": [["M"]], - "inconceivableness's": null, - "incondensable": null, - "incongruousnesses": null, - "inconsiderableness": [["M"]], - "inconsiderableness's": null, - "inconsistence": null, - "inconsolableness": [["M"]], - "inconsolableness's": null, - "inconsolably": null, - "incontestability": [["S", "M"]], - "incontestabilities": null, - "incontestability's": null, - "incontestably": null, - "incontrovertibly": null, - "inconvenienced": null, - "inconveniencing": null, - "inconvertibility": null, - "inconvertible": null, - "incorporable": null, - "incorporated": [["U", "E"]], - "unincorporated": null, - "disincorporated": null, - "incorporating": null, - "reincorporating": null, - "reincorporate": null, - "reincorporates": null, - "reincorporated": null, - "reincorporations": null, - "reincorporation": null, - "incorrect": [["P"]], - "incorrigibility": [["M", "S"]], - "incorrigibility's": null, - "incorrigibilities": null, - "incorrigibleness": [["M"]], - "incorrigibleness's": null, - "incorrigibles": null, - "incorrigibly": null, - "incorruptibles": null, - "incorruptibly": null, - "increasings": null, - "increasable": null, - "increaser's": null, - "increasingly": null, - "incredibleness": [["M"]], - "incredibleness's": null, - "incremental": [["Y"]], - "incrementally": null, - "incrementation": null, - "increment": [["D", "M", "G", "S"]], - "incremented": null, - "increment's": null, - "incrementing": null, - "increments": null, - "incriminate": [["X", "N", "G", "S", "D"]], - "incriminations": null, - "incrimination": [["M"]], - "incriminating": null, - "incriminates": null, - "incriminated": null, - "incrimination's": null, - "incriminatory": null, - "incrustation": [["S", "M"]], - "incrustations": null, - "incrustation's": null, - "inc": [["T"]], - "incubate": [["X", "N", "G", "V", "D", "S"]], - "incubations": null, - "incubation": [["M"]], - "incubating": null, - "incubative": null, - "incubated": null, - "incubates": null, - "incubation's": null, - "incubator": [["M", "S"]], - "incubator's": null, - "incubators": null, - "incubus": [["M", "S"]], - "incubus's": null, - "incubuses": null, - "inculcate": [["S", "D", "G", "N", "X"]], - "inculcates": null, - "inculcated": null, - "inculcating": null, - "inculcation": [["M"]], - "inculcations": null, - "inculcation's": null, - "inculpate": [["S", "D", "G"]], - "inculpates": null, - "inculpated": null, - "inculpating": null, - "incumbency": [["M", "S"]], - "incumbency's": null, - "incumbencies": null, - "incumbent": [["S"]], - "incumbents": null, - "incunabula": null, - "incunabulum": null, - "incurables": null, - "incurious": null, - "incursion": [["S", "M"]], - "incursions": null, - "incursion's": null, - "ind": null, - "indebtedness": [["S", "M"]], - "indebtednesses": null, - "indebtedness's": null, - "indebted": [["P"]], - "indefatigableness": [["M"]], - "indefatigableness's": null, - "indefatigable": [["P"]], - "indefatigably": null, - "indefeasible": null, - "indefeasibly": null, - "indefinableness": [["M"]], - "indefinableness's": null, - "indefinables": null, - "indefinites": null, - "indelible": null, - "indelibly": null, - "indemnification": [["M"]], - "indemnification's": null, - "indemnify": [["N", "X", "S", "D", "G"]], - "indemnifications": null, - "indemnifies": null, - "indemnified": null, - "indemnifying": null, - "indemnity": [["S", "M"]], - "indemnities": null, - "indemnity's": null, - "indentation": [["S", "M"]], - "indentations": null, - "indentation's": null, - "unindented": null, - "indenter": [["M"]], - "indenter's": null, - "indention": [["S", "M"]], - "indentions": null, - "indention's": null, - "indentured": null, - "indenturing": null, - "Independence": [["M"]], - "Independence's": null, - "indescribableness": [["M"]], - "indescribableness's": null, - "indescribables": null, - "indescribably": null, - "indestructibleness": [["M"]], - "indestructibleness's": null, - "indestructibly": null, - "indeterminably": null, - "indeterminacy's": null, - "indeterminacies": null, - "indeterminism": null, - "indexation": [["S"]], - "indexations": null, - "indexer": [["M"]], - "indexer's": null, - "index": [["M", "R", "D", "Z", "G", "B"]], - "index's": null, - "indexed": null, - "indexers": null, - "indexing": null, - "indexable": null, - "India": [["M"]], - "India's": null, - "Indiana": [["M"]], - "Indiana's": null, - "Indianan": [["S"]], - "Indianans": null, - "Indianapolis": [["M"]], - "Indianapolis's": null, - "Indianian": [["S"]], - "Indianians": null, - "Indian": [["S", "M"]], - "Indians": null, - "Indian's": null, - "indicant": [["M", "S"]], - "indicant's": null, - "indicants": null, - "indicate": [["D", "S", "N", "G", "V", "X"]], - "indicated": null, - "indicates": null, - "indication": [["M"]], - "indicating": null, - "indicative": [["S", "Y"]], - "indications": null, - "indication's": null, - "indicatives": null, - "indicatively": null, - "indicator": [["M", "S"]], - "indicator's": null, - "indicators": null, - "indices's": null, - "indicter": [["M"]], - "indicter's": null, - "indictment": [["S", "M"]], - "indictments": null, - "indictment's": null, - "indict": [["S", "G", "L", "B", "D", "R"]], - "indicts": null, - "indicting": null, - "indictable": null, - "indicted": null, - "indifference": null, - "indigence": [["M", "S"]], - "indigence's": null, - "indigences": null, - "indigenousness": [["M"]], - "indigenousness's": null, - "indigenous": [["Y", "P"]], - "indigenously": null, - "indigent": [["S", "Y"]], - "indigents": null, - "indigently": null, - "indigestibles": null, - "indignant": [["Y"]], - "indignantly": null, - "indignation": [["M", "S"]], - "indignation's": null, - "indignations": null, - "indigo": [["S", "M"]], - "indigos": null, - "indigo's": null, - "Indira": [["M"]], - "Indira's": null, - "indirect": [["P", "G"]], - "indirecting": null, - "indiscreet": [["P"]], - "indiscreetness": null, - "indiscriminateness": [["M"]], - "indiscriminateness's": null, - "indiscriminate": [["P", "Y"]], - "indiscriminately": null, - "indispensability": [["M", "S"]], - "indispensability's": null, - "indispensabilities": null, - "indispensableness": [["M"]], - "indispensableness's": null, - "indispensables": null, - "indispensably": null, - "indisputableness": [["M"]], - "indisputableness's": null, - "indissolubleness": [["M"]], - "indissolubleness's": null, - "indissolubly": null, - "indistinguishableness": [["M"]], - "indistinguishableness's": null, - "indite": [["S", "D", "G"]], - "indites": null, - "indited": null, - "inditing": null, - "indium": [["S", "M"]], - "indiums": null, - "indium's": null, - "individualism": [["M", "S"]], - "individualism's": null, - "individualisms": null, - "individualistic": null, - "individualistically": null, - "individualist": [["M", "S"]], - "individualist's": null, - "individualists": null, - "individuality": [["M", "S"]], - "individuality's": null, - "individualities": null, - "individualization": [["S", "M"]], - "individualizations": null, - "individualization's": null, - "individualize": [["D", "R", "S", "G", "Z"]], - "individualized": [["U"]], - "individualizer": [["M"]], - "individualizes": [["U"]], - "individualizing": [["Y"]], - "individualizers": null, - "unindividualized": null, - "individualizer's": null, - "unindividualizes": null, - "individualizingly": null, - "individual": [["Y", "M", "S"]], - "individually": null, - "individual's": null, - "individuals": null, - "individuate": [["D", "S", "X", "G", "N"]], - "individuated": null, - "individuates": null, - "individuations": null, - "individuating": null, - "individuation": [["M"]], - "individuation's": null, - "indivisibleness": [["M"]], - "indivisibleness's": null, - "indivisibles": null, - "indivisibly": null, - "Ind": [["M"]], - "Ind's": null, - "Indochina": [["M"]], - "Indochina's": null, - "Indochinese": null, - "indoctrinate": [["G", "N", "X", "S", "D"]], - "indoctrinating": null, - "indoctrination": [["M"]], - "indoctrinations": null, - "indoctrinates": null, - "indoctrinated": null, - "indoctrination's": null, - "indoctrinator": [["S", "M"]], - "indoctrinators": null, - "indoctrinator's": null, - "indolence": [["S", "M"]], - "indolences": null, - "indolence's": null, - "indolent": [["Y"]], - "indolently": null, - "indomitableness": [["M"]], - "indomitableness's": null, - "indomitable": [["P"]], - "indomitably": null, - "Indonesia": [["M"]], - "Indonesia's": null, - "Indonesian": [["S"]], - "Indonesians": null, - "indoor": null, - "Indore": [["M"]], - "Indore's": null, - "Indra": [["M"]], - "Indra's": null, - "indubitableness": [["M"]], - "indubitableness's": null, - "indubitable": [["P"]], - "indubitably": null, - "inducement": [["M", "S"]], - "inducement's": null, - "inducements": null, - "inducer": [["M"]], - "inducer's": null, - "inducers": null, - "inducing": null, - "induces": null, - "induced": null, - "inducible": null, - "inductance": [["M", "S"]], - "inductance's": null, - "inductances": null, - "inductee": [["S", "M"]], - "inductees": null, - "inductee's": null, - "induct": [["G", "V"]], - "inducting": null, - "inductive": [["P", "Y"]], - "induction": [["S", "M"]], - "inductions": null, - "induction's": null, - "inductiveness": [["M"]], - "inductiveness's": null, - "inductively": null, - "inductor": [["M", "S"]], - "inductor's": null, - "inductors": null, - "indulge": [["G", "D", "R", "S"]], - "indulging": null, - "indulged": null, - "indulger": [["M"]], - "indulges": null, - "indulgence": [["S", "D", "G", "M"]], - "indulgences": null, - "indulgenced": null, - "indulgencing": null, - "indulgence's": null, - "indulgent": [["Y"]], - "indulgently": null, - "indulger's": null, - "Indus": [["M"]], - "Indus's": null, - "industrialism": [["M", "S"]], - "industrialism's": null, - "industrialisms": null, - "industrialist": [["M", "S"]], - "industrialist's": null, - "industrialists": null, - "industrialization": [["M", "S"]], - "industrialization's": null, - "industrializations": null, - "industrialized": [["U"]], - "unindustrialized": [["M", "S"]], - "industrialize": [["S", "D", "G"]], - "industrializes": null, - "industrializing": null, - "industrial": [["S", "Y"]], - "industrials": null, - "industrially": null, - "industriousness": [["S", "M"]], - "industriousnesses": null, - "industriousness's": null, - "industrious": [["Y", "P"]], - "industriously": null, - "industry": [["S", "M"]], - "industries": null, - "industry's": null, - "Indy": [["S", "M"]], - "Indies": null, - "Indy's": null, - "inebriate": [["N", "G", "S", "D", "X"]], - "inebriation": [["M"]], - "inebriating": null, - "inebriates": null, - "inebriated": null, - "inebriations": null, - "inebriation's": null, - "inedible": null, - "ineducable": null, - "ineffability": [["M", "S"]], - "ineffability's": null, - "ineffabilities": null, - "ineffableness": [["M"]], - "ineffableness's": null, - "ineffable": [["P"]], - "ineffably": null, - "inelastic": null, - "ineligibly": null, - "ineluctable": null, - "ineluctably": null, - "ineptitude": [["S", "M"]], - "ineptitudes": null, - "ineptitude's": null, - "ineptness": [["M", "S"]], - "ineptness's": null, - "ineptnesses": null, - "inept": [["Y", "P"]], - "ineptly": null, - "inequivalent": null, - "inerrant": null, - "inertial": [["Y"]], - "inertially": null, - "inertia": [["S", "M"]], - "inertias": null, - "inertia's": null, - "inertness": [["M", "S"]], - "inertness's": null, - "inertnesses": null, - "inert": [["S", "P", "Y"]], - "inerts": null, - "inertly": null, - "Ines": null, - "inescapably": null, - "Inesita": [["M"]], - "Inesita's": null, - "Inessa": [["M"]], - "Inessa's": null, - "inestimably": null, - "inevitability": [["M", "S"]], - "inevitability's": null, - "inevitabilities": null, - "inevitableness": [["M"]], - "inevitableness's": null, - "inevitable": [["P"]], - "inevitably": null, - "inexact": [["P"]], - "inexhaustibleness": [["M"]], - "inexhaustibleness's": null, - "inexhaustibly": null, - "inexorability": [["M"]], - "inexorability's": null, - "inexorableness": [["M"]], - "inexorableness's": null, - "inexorable": [["P"]], - "inexorably": null, - "inexpedience's": null, - "inexplicableness": [["M"]], - "inexplicableness's": null, - "inexplicably": null, - "inexplicit": null, - "inexpressibility's": null, - "inexpressibleness": [["M"]], - "inexpressibleness's": null, - "inexpressibles": null, - "inextricably": null, - "Inez": [["M"]], - "Inez's": null, - "infamous": null, - "infamy": [["S", "M"]], - "infamies": null, - "infamy's": null, - "infancy's": null, - "infanticide": [["M", "S"]], - "infanticide's": null, - "infanticides": null, - "infantile": null, - "infant": [["M", "S"]], - "infant's": null, - "infants": null, - "infantryman": [["M"]], - "infantryman's": null, - "infantrymen": null, - "infantry": [["S", "M"]], - "infantries": null, - "infantry's": null, - "infarction": [["S", "M"]], - "infarctions": null, - "infarction's": null, - "infarct": [["S", "M"]], - "infarcts": null, - "infarct's": null, - "infatuate": [["X", "N", "G", "S", "D"]], - "infatuations": null, - "infatuation": [["M"]], - "infatuating": null, - "infatuates": null, - "infatuated": null, - "infatuation's": null, - "infauna": null, - "infected": [["U"]], - "uninfected": null, - "infecter": null, - "infect": [["E", "S", "G", "D", "A"]], - "disinfect": null, - "disinfects": null, - "disinfecting": null, - "disinfected": null, - "infects": null, - "reinfects": null, - "infecting": null, - "reinfecting": null, - "reinfected": null, - "reinfect": null, - "infection": [["E", "A", "S", "M"]], - "disinfection": null, - "disinfections": null, - "disinfection's": null, - "reinfection": null, - "reinfections": null, - "reinfection's": null, - "infections": null, - "infection's": null, - "infectiousness": [["M", "S"]], - "infectiousness's": null, - "infectiousnesses": null, - "infectious": [["P", "Y"]], - "infectiously": null, - "infective": null, - "inferable": null, - "inference": [["G", "M", "S", "R"]], - "inferencing": null, - "inference's": null, - "inferences": null, - "inferencer": null, - "inferential": [["Y"]], - "inferentially": null, - "inferiority": [["M", "S"]], - "inferiority's": null, - "inferiorities": null, - "inferior": [["S", "M", "Y"]], - "inferiors": null, - "inferior's": null, - "inferiorly": null, - "infernal": [["Y"]], - "infernally": null, - "inferno": [["M", "S"]], - "inferno's": null, - "infernos": null, - "inferred": null, - "inferring": null, - "infertile": null, - "infestation": [["M", "S"]], - "infestation's": null, - "infestations": null, - "infester": [["M"]], - "infester's": null, - "infest": [["G", "S", "D", "R"]], - "infesting": null, - "infests": null, - "infested": null, - "infidel": [["S", "M"]], - "infidels": null, - "infidel's": null, - "infighting's": null, - "infill": [["M", "G"]], - "infill's": null, - "infilling": null, - "infiltrate": [["V"]], - "infiltrative": null, - "infiltrator": [["M", "S"]], - "infiltrator's": null, - "infiltrators": null, - "infinitesimal": [["S", "Y"]], - "infinitesimals": null, - "infinitesimally": null, - "infinitive": [["Y", "M", "S"]], - "infinitival": null, - "infinitively": null, - "infinitive's": null, - "infinitives": null, - "infinitude": [["M", "S"]], - "infinitude's": null, - "infinitudes": null, - "infinitum": null, - "infinity": [["S", "M"]], - "infinities": null, - "infinity's": null, - "infirmary": [["S", "M"]], - "infirmaries": null, - "infirmary's": null, - "infirmity": [["S", "M"]], - "infirmities": null, - "infirmity's": null, - "infix": [["M"]], - "infix's": null, - "inflammableness": [["M"]], - "inflammableness's": null, - "inflammation": [["M", "S"]], - "inflammation's": null, - "inflammations": null, - "inflammatory": null, - "inflatable": [["M", "S"]], - "inflatable's": null, - "inflatables": null, - "inflate": [["N", "G", "B", "D", "R", "S", "X"]], - "inflation": [["E", "S", "M"]], - "inflating": null, - "inflated": null, - "inflater": [["M"]], - "inflates": null, - "inflations": null, - "inflater's": null, - "inflationary": null, - "disinflation": null, - "disinflations": null, - "disinflation's": null, - "inflation's": null, - "inflect": [["G", "V", "D", "S"]], - "inflecting": null, - "inflective": null, - "inflected": null, - "inflects": null, - "inflectional": [["Y"]], - "inflectionally": null, - "inflection": [["S", "M"]], - "inflections": null, - "inflection's": null, - "inflexibleness": [["M"]], - "inflexibleness's": null, - "inflexion": [["S", "M"]], - "inflexions": null, - "inflexion's": null, - "inflict": [["D", "R", "S", "G", "V"]], - "inflicted": null, - "inflicter": [["M"]], - "inflicts": null, - "inflicting": null, - "inflictive": null, - "inflicter's": null, - "infliction": [["S", "M"]], - "inflictions": null, - "infliction's": null, - "inflow's": null, - "influenced": [["U"]], - "uninfluenced": null, - "influencer": [["M"]], - "influencer's": null, - "influence": [["S", "R", "D", "G", "M"]], - "influences": null, - "influencing": null, - "influence's": null, - "influent": null, - "influential": [["S", "Y"]], - "influentials": null, - "influentially": null, - "influenza": [["M", "S"]], - "influenza's": null, - "influenzas": null, - "infomercial": [["S"]], - "infomercials": null, - "Informatica": [["M"]], - "Informatica's": null, - "informatics": null, - "informational": null, - "disinformation": null, - "disinformations": null, - "informativenesses": null, - "informative": [["U", "Y"]], - "uninformative": null, - "uninformatively": null, - "informatory": null, - "uninformed": null, - "informer's": null, - "info": [["S", "M"]], - "infos": null, - "info's": null, - "infotainment": [["S"]], - "infotainments": null, - "infra": null, - "infrared": [["S", "M"]], - "infrareds": null, - "infrared's": null, - "infrasonic": null, - "infrastructural": null, - "infrastructure": [["M", "S"]], - "infrastructure's": null, - "infrastructures": null, - "infrequence": [["S"]], - "infrequences": null, - "infringement": [["S", "M"]], - "infringer": [["M"]], - "infringements": null, - "infringement's": null, - "infringer's": null, - "infuriate": [["G", "N", "Y", "S", "D"]], - "infuriating": [["Y"]], - "infuriation": [["M"]], - "infuriately": null, - "infuriates": null, - "infuriated": null, - "infuriatingly": null, - "infuriation's": null, - "infuser": [["M"]], - "infuser's": null, - "infusers": null, - "infusibleness": [["M"]], - "infusibleness's": null, - "infers": null, - "Ingaberg": [["M"]], - "Ingaberg's": null, - "Ingaborg": [["M"]], - "Ingaborg's": null, - "Inga": [["M"]], - "Inga's": null, - "Ingamar": [["M"]], - "Ingamar's": null, - "Ingar": [["M"]], - "Ingar's": null, - "Ingeberg": [["M"]], - "Ingeberg's": null, - "Ingeborg": [["M"]], - "Ingeborg's": null, - "Ingelbert": [["M"]], - "Ingelbert's": null, - "Ingemar": [["M"]], - "Ingemar's": null, - "ingeniousness": [["M", "S"]], - "ingeniousness's": null, - "ingeniousnesses": null, - "ingenious": [["Y", "P"]], - "ingeniously": null, - "ing�nue": [["S"]], - "ing�nues": null, - "ingenuity": [["S", "M"]], - "ingenuities": null, - "ingenuity's": null, - "ingenuous": [["E", "Y"]], - "disingenuous": null, - "disingenuously": null, - "ingenuously": null, - "ingenuousness": [["M", "S"]], - "ingenuousness's": null, - "ingenuousnesses": null, - "Inger": [["M"]], - "Inger's": null, - "Inge": [["R", "M"]], - "Inge's": null, - "Ingersoll": [["M"]], - "Ingersoll's": null, - "ingest": [["D", "G", "V", "S"]], - "ingested": null, - "ingesting": null, - "ingestive": null, - "ingests": null, - "ingestible": null, - "ingestion": [["S", "M"]], - "ingestions": null, - "ingestion's": null, - "Inglebert": [["M"]], - "Inglebert's": null, - "inglenook": [["M", "S"]], - "inglenook's": null, - "inglenooks": null, - "Inglewood": [["M"]], - "Inglewood's": null, - "Inglis": [["M"]], - "Inglis's": null, - "Ingmar": [["M"]], - "Ingmar's": null, - "ingoing": null, - "ingots": null, - "ingot's": null, - "ingoted": null, - "ingoting": null, - "ingrainedly": null, - "Ingra": [["M"]], - "Ingra's": null, - "Ingram": [["M"]], - "Ingram's": null, - "ingrate": [["M"]], - "ingrate's": null, - "ingratiate": [["D", "S", "G", "N", "X"]], - "ingratiated": null, - "ingratiates": null, - "ingratiating": [["Y"]], - "ingratiation": [["M"]], - "ingratiations": null, - "ingratiatingly": null, - "ingratiation's": null, - "ingredient": [["S", "M"]], - "ingredients": null, - "ingredient's": null, - "Ingres": [["M"]], - "Ingres's": null, - "ingression": [["M"]], - "ingression's": null, - "ingress": [["M", "S"]], - "ingress's": null, - "ingresses": null, - "Ingrid": [["M"]], - "Ingrid's": null, - "Ingrim": [["M"]], - "Ingrim's": null, - "ingrownness": null, - "inguinal": null, - "Ingunna": [["M"]], - "Ingunna's": null, - "uninhabitable": null, - "inhabitance": null, - "uninhabited": null, - "inhabiter": [["M"]], - "inhabiter's": null, - "inhalant": [["S"]], - "inhalants": null, - "inhalation": [["S", "M"]], - "inhalations": null, - "inhalation's": null, - "inhalator": [["S", "M"]], - "inhalators": null, - "inhalator's": null, - "inhalers": null, - "inhered": null, - "inhering": null, - "inherent": [["Y"]], - "inherently": null, - "inheritableness": [["M"]], - "inheritableness's": null, - "inheritable": [["P"]], - "inheritance": [["E", "M", "S"]], - "disinheritance": null, - "disinheritance's": null, - "disinheritances": null, - "inheritance's": null, - "inheritances": null, - "inherit": [["B", "D", "S", "G"]], - "inherited": [["E"]], - "inherits": [["E"]], - "inheriting": [["E"]], - "disinherited": null, - "disinheriting": null, - "inheritors": null, - "inheritress": [["M", "S"]], - "inheritress's": null, - "inheritresses": null, - "inheritrix": [["M", "S"]], - "inheritrix's": null, - "inheritrixes": null, - "disinherits": null, - "inhibit": [["D", "V", "G", "S"]], - "inhibited": [["U"]], - "inhibitive": null, - "inhibiting": null, - "inhibits": null, - "uninhibited": [["Y", "P"]], - "inhibiter's": null, - "inhibition": [["M", "S"]], - "inhibition's": null, - "inhibitions": null, - "inhibitor": [["M", "S"]], - "inhibitor's": null, - "inhibitors": null, - "inhibitory": null, - "inhomogeneous": null, - "inhospitableness": [["M"]], - "inhospitableness's": null, - "inhospitality": null, - "Inigo": [["M"]], - "Inigo's": null, - "inimical": [["Y"]], - "inimically": null, - "inimitableness": [["M"]], - "inimitableness's": null, - "inimitably": null, - "inion": null, - "iniquitousness": [["M"]], - "iniquitousness's": null, - "iniquitous": [["P", "Y"]], - "iniquitously": null, - "iniquity": [["M", "S"]], - "iniquity's": null, - "iniquities": null, - "initialer": [["M"]], - "initialer's": null, - "initial": [["G", "S", "P", "R", "D", "Y"]], - "initialing": null, - "initials": null, - "initialness": null, - "initialed": null, - "initially": null, - "initialization": [["A"]], - "reinitialization": null, - "initializations": null, - "initialization's": null, - "initialize": [["A", "S", "D", "G"]], - "reinitialize": null, - "reinitializes": null, - "reinitialized": null, - "reinitializing": null, - "initializes": null, - "initialized": [["U"]], - "initializing": null, - "uninitialized": null, - "initializer": [["S"]], - "initializers": null, - "initiates": null, - "initiate": [["U", "D"]], - "uninitiate": null, - "uninitiated": null, - "initiated": null, - "initiating": null, - "initiation": [["S", "M"]], - "initiations": null, - "initiation's": null, - "initiative": [["S", "M"]], - "initiatives": null, - "initiative's": null, - "initiator": [["M", "S"]], - "initiator's": null, - "initiators": null, - "initiatory": null, - "injectable": [["U"]], - "uninjectable": null, - "inject": [["G", "V", "S", "D", "B"]], - "injecting": null, - "injective": null, - "injects": null, - "injected": null, - "injection": [["M", "S"]], - "injection's": null, - "injections": null, - "injector": [["S", "M"]], - "injectors": null, - "injector's": null, - "injunctive": null, - "injured": [["U"]], - "uninjured": null, - "injurer": [["M"]], - "injurer's": null, - "injure": [["S", "R", "D", "Z", "G"]], - "injures": null, - "injurers": null, - "injuring": null, - "injuriousness": [["M"]], - "injuriousness's": null, - "injurious": [["Y", "P"]], - "injuriously": null, - "inkblot": [["S", "M"]], - "inkblots": null, - "inkblot's": null, - "inker": [["M"]], - "inker's": null, - "inkiness": [["M", "S"]], - "inkiness's": null, - "inkinesses": null, - "inkling": [["S", "M"]], - "inklings": null, - "inkling's": null, - "inkstand": [["S", "M"]], - "inkstands": null, - "inkstand's": null, - "inkwell": [["S", "M"]], - "inkwells": null, - "inkwell's": null, - "inky": [["T", "P"]], - "inkiest": null, - "ink": [["Z", "D", "R", "J"]], - "inkers": null, - "inked": null, - "inkings": null, - "inland": null, - "inlander": [["M"]], - "inlander's": null, - "inlay": [["R", "G"]], - "inlayer": null, - "inlaying": null, - "inletting": null, - "inly": [["G"]], - "inlying": null, - "inmost": null, - "Inna": [["M"]], - "Inna's": null, - "innards": null, - "innateness": [["S", "M"]], - "innatenesses": null, - "innateness's": null, - "innate": [["Y", "P"]], - "innately": null, - "innermost": [["S"]], - "innermosts": null, - "innersole": [["S"]], - "innersoles": null, - "innerspring": null, - "innervate": [["G", "N", "S", "D", "X"]], - "innervating": null, - "innervation": [["M"]], - "innervates": null, - "innervated": null, - "innervations": null, - "innervation's": null, - "inner": [["Y"]], - "innerly": null, - "inning": [["M"]], - "inning's": null, - "Innis": [["M"]], - "Innis's": null, - "innkeeper": [["M", "S"]], - "innkeeper's": null, - "innkeepers": null, - "innocence": [["S", "M"]], - "innocences": null, - "innocence's": null, - "Innocent": [["M"]], - "Innocent's": null, - "innocent": [["S", "Y", "R", "T"]], - "innocents": null, - "innocently": null, - "innocenter": null, - "innocentest": null, - "innocuousness": [["M", "S"]], - "innocuousness's": null, - "innocuousnesses": null, - "innocuous": [["P", "Y"]], - "innocuously": null, - "innovate": [["S", "D", "V", "N", "G", "X"]], - "innovates": null, - "innovated": null, - "innovative": [["P"]], - "innovation": [["M"]], - "innovating": null, - "innovations": null, - "innovation's": null, - "innovativeness": null, - "innovator": [["M", "S"]], - "innovator's": null, - "innovators": null, - "innovatory": null, - "Innsbruck": [["M"]], - "Innsbruck's": null, - "innuendo": [["M", "D", "G", "S"]], - "innuendo's": null, - "innuendoed": null, - "innuendoing": null, - "innuendos": null, - "innumerability": [["M"]], - "innumerability's": null, - "innumerableness": [["M"]], - "innumerableness's": null, - "innumerable": [["P"]], - "innumerably": null, - "innumerate": null, - "inn": [["Z", "G", "D", "R", "S", "J"]], - "inners": null, - "inned": null, - "inns": null, - "innings": null, - "inoculate": [["A", "S", "D", "G"]], - "reinoculate": null, - "reinoculates": null, - "reinoculated": null, - "reinoculating": null, - "inoculates": null, - "inoculated": null, - "inoculating": null, - "inoculation": [["M", "S"]], - "inoculation's": null, - "inoculations": null, - "inoculative": null, - "inoffensive": [["P"]], - "inoffensiveness": null, - "Inonu": [["M"]], - "Inonu's": null, - "inopportuneness": [["M"]], - "inopportuneness's": null, - "inopportune": [["P"]], - "inordinateness": [["M"]], - "inordinateness's": null, - "inordinate": [["P", "Y"]], - "inordinately": null, - "inorganic": null, - "inpatient": null, - "In": [["P", "M"]], - "Inness": null, - "In's": null, - "input": [["M", "R", "D", "G"]], - "input's": null, - "inputer": null, - "inputed": null, - "inputing": null, - "inquirer": [["M"]], - "inquirer's": null, - "inquire": [["Z", "R"]], - "inquirers": null, - "inquiring": [["Y"]], - "inquiringly": null, - "inquiry": [["M", "S"]], - "inquiry's": null, - "inquiries": null, - "inquisitional": null, - "inquisition": [["M", "S"]], - "inquisition's": null, - "inquisitions": null, - "Inquisition": [["M", "S"]], - "Inquisition's": null, - "Inquisitions": null, - "inquisitiveness": [["M", "S"]], - "inquisitiveness's": null, - "inquisitivenesses": null, - "inquisitive": [["Y", "P"]], - "inquisitively": null, - "inquisitorial": [["Y"]], - "inquisitorially": null, - "inquisitor": [["M", "S"]], - "inquisitor's": null, - "inquisitors": null, - "INRI": null, - "inrush": [["M"]], - "inrush's": null, - "INS": null, - "insalubrious": null, - "insanitary": null, - "insatiability": [["M", "S"]], - "insatiability's": null, - "insatiabilities": null, - "insatiableness": [["M"]], - "insatiableness's": null, - "insatiable": [["P"]], - "insatiably": null, - "inscribe": [["Z"]], - "inscribers": null, - "inscription": [["S", "M"]], - "inscriptions": null, - "inscription's": null, - "inscrutability": [["S", "M"]], - "inscrutabilities": null, - "inscrutability's": null, - "inscrutableness": [["S", "M"]], - "inscrutablenesses": null, - "inscrutableness's": null, - "inscrutable": [["P"]], - "inscrutably": null, - "inseam": null, - "insecticidal": null, - "insecticide": [["M", "S"]], - "insecticide's": null, - "insecticides": null, - "insectivore": [["S", "M"]], - "insectivores": null, - "insectivore's": null, - "insectivorous": null, - "insecureness": [["M"]], - "insecureness's": null, - "insecure": [["P"]], - "inseminate": [["N", "G", "X", "S", "D"]], - "insemination": [["M"]], - "inseminating": null, - "inseminations": null, - "inseminates": null, - "inseminated": null, - "insemination's": null, - "insensateness": [["M"]], - "insensateness's": null, - "insensate": [["P"]], - "insensible": [["P"]], - "insensibleness": null, - "insentient": null, - "inseparable": [["S"]], - "inseparables": null, - "insert": [["A", "D", "S", "G"]], - "reinsert": null, - "reinserted": null, - "reinserts": null, - "reinserting": null, - "inserted": null, - "inserts": null, - "inserting": null, - "inserter": [["M"]], - "inserter's": null, - "insertion": [["A", "M", "S"]], - "reinsertion": null, - "reinsertion's": null, - "reinsertions": null, - "insertion's": null, - "insertions": null, - "insetting": null, - "inshore": null, - "insider": [["M"]], - "insider's": null, - "inside": [["Z"]], - "insiders": null, - "insidiousness": [["M", "S"]], - "insidiousness's": null, - "insidiousnesses": null, - "insidious": [["Y", "P"]], - "insidiously": null, - "insightful": [["Y"]], - "insightfully": null, - "insigne's": null, - "insignia": [["S", "M"]], - "insignias": null, - "insignia's": null, - "insignificant": null, - "insinuate": [["V", "N", "G", "X", "S", "D"]], - "insinuative": null, - "insinuation": [["M"]], - "insinuating": [["Y"]], - "insinuations": null, - "insinuates": null, - "insinuated": null, - "insinuatingly": null, - "insinuation's": null, - "insinuator": [["S", "M"]], - "insinuators": null, - "insinuator's": null, - "insipidity": [["M", "S"]], - "insipidity's": null, - "insipidities": null, - "insipid": [["Y"]], - "insipidly": null, - "insistence": [["S", "M"]], - "insistences": null, - "insistence's": null, - "insistent": [["Y"]], - "insistently": null, - "insisting": [["Y"]], - "insistingly": null, - "insist": [["S", "G", "D"]], - "insists": null, - "insisted": null, - "insociable": null, - "insofar": null, - "insole": [["M"]], - "insole's": null, - "insolence": [["S", "M"]], - "insolences": null, - "insolence's": null, - "insolent": [["Y", "S"]], - "insolently": null, - "insolents": null, - "insolubleness": [["M"]], - "insolubleness's": null, - "insoluble": [["P"]], - "insolubly": null, - "insomniac": [["S"]], - "insomniacs": null, - "insomnia": [["M", "S"]], - "insomnia's": null, - "insomnias": null, - "insomuch": null, - "insouciance": [["S", "M"]], - "insouciances": null, - "insouciance's": null, - "insouciant": [["Y"]], - "insouciantly": null, - "inspect": [["A", "G", "S", "D"]], - "reinspect": null, - "reinspecting": null, - "reinspects": null, - "reinspected": null, - "inspecting": null, - "inspects": null, - "inspected": null, - "inspection": [["S", "M"]], - "inspections": null, - "inspection's": null, - "inspective": null, - "inspectorate": [["M", "S"]], - "inspectorate's": null, - "inspectorates": null, - "inspector": [["S", "M"]], - "inspectors": null, - "inspector's": null, - "inspirational": [["Y"]], - "inspirationally": null, - "inspiration": [["M", "S"]], - "inspiration's": null, - "inspirations": null, - "inspired": [["U"]], - "uninspired": null, - "inspire": [["R"]], - "inspirer": [["M"]], - "inspirer's": null, - "inspiring": [["U"]], - "uninspiring": null, - "inspirit": [["D", "G"]], - "inspirited": null, - "inspiriting": null, - "Inst": null, - "installable": null, - "install": [["A", "D", "R", "S", "G"]], - "reinstall": null, - "reinstalled": null, - "reinstaller": null, - "reinstalls": null, - "reinstalling": null, - "installed": null, - "installer": [["M", "S"]], - "installs": null, - "installing": null, - "installation": [["S", "M"]], - "installations": null, - "installation's": null, - "installer's": null, - "installers": null, - "installment": [["M", "S"]], - "installment's": null, - "installments": null, - "instance": [["G", "D"]], - "instancing": null, - "instanced": null, - "instantaneousness": [["M"]], - "instantaneousness's": null, - "instantaneous": [["P", "Y"]], - "instantaneously": null, - "instantiated": [["U"]], - "uninstantiated": null, - "instantiate": [["S", "D", "X", "N", "G"]], - "instantiates": null, - "instantiations": null, - "instantiation": [["M"]], - "instantiating": null, - "instantiation's": null, - "instant": [["S", "R", "Y", "M", "P"]], - "instants": null, - "instanter": null, - "instantly": null, - "instant's": null, - "instantness": null, - "instate": [["A", "G", "S", "D"]], - "reinstate": [["L"]], - "reinstating": null, - "reinstates": null, - "reinstated": null, - "instating": null, - "instates": null, - "instated": null, - "inst": [["B"]], - "instable": null, - "instead": null, - "instigate": [["X", "S", "D", "V", "G", "N"]], - "instigations": null, - "instigates": null, - "instigated": null, - "instigative": null, - "instigating": null, - "instigation": [["M"]], - "instigation's": null, - "instigator": [["S", "M"]], - "instigators": null, - "instigator's": null, - "instillation": [["S", "M"]], - "instillations": null, - "instillation's": null, - "instinctive": [["Y"]], - "instinctively": null, - "instinctual": null, - "instinct": [["V", "M", "S"]], - "instinct's": null, - "instincts": null, - "instituter": [["M"]], - "instituter's": null, - "institutes": [["M"]], - "institutes's": null, - "institute": [["Z", "X", "V", "G", "N", "S", "R", "D"]], - "instituters": null, - "institutions": null, - "institutive": null, - "instituting": null, - "institution": [["A", "M"]], - "instituted": null, - "institutionalism": [["M"]], - "institutionalism's": null, - "institutionalist": [["M"]], - "institutionalist's": null, - "institutionalization": [["S", "M"]], - "institutionalizations": null, - "institutionalization's": null, - "institutionalize": [["G", "D", "S"]], - "institutionalizing": null, - "institutionalized": null, - "institutionalizes": null, - "institutional": [["Y"]], - "institutionally": null, - "reinstitution": null, - "reinstitution's": null, - "institution's": null, - "institutor's": null, - "instr": null, - "instruct": [["D", "S", "V", "G"]], - "instructed": [["U"]], - "instructs": null, - "instructive": [["P", "Y"]], - "instructing": null, - "uninstructed": null, - "instructional": null, - "instruction": [["M", "S"]], - "instruction's": null, - "instructions": null, - "instructiveness": [["M"]], - "instructiveness's": null, - "instructively": null, - "instructor": [["M", "S"]], - "instructor's": null, - "instructors": null, - "instrumentalist": [["M", "S"]], - "instrumentalist's": null, - "instrumentalists": null, - "instrumentality": [["S", "M"]], - "instrumentalities": null, - "instrumentality's": null, - "instrumental": [["S", "Y"]], - "instrumentals": null, - "instrumentally": null, - "instrumentation": [["S", "M"]], - "instrumentations": null, - "instrumentation's": null, - "instrument": [["G", "M", "D", "S"]], - "instrumenting": null, - "instrument's": null, - "instrumented": null, - "instruments": null, - "insubordinate": null, - "insubstantial": null, - "insufferable": null, - "insufferably": null, - "insularity": [["M", "S"]], - "insularity's": null, - "insularities": null, - "insular": [["Y", "S"]], - "insularly": null, - "insulars": null, - "insulate": [["D", "S", "X", "N", "G"]], - "insulated": [["U"]], - "insulates": null, - "insulations": null, - "insulation": [["M"]], - "insulating": null, - "uninsulated": null, - "insulation's": null, - "insulator": [["M", "S"]], - "insulator's": null, - "insulators": null, - "insulin": [["M", "S"]], - "insulin's": null, - "insulins": null, - "insult": [["D", "R", "S", "G"]], - "insulted": null, - "insulter": [["M"]], - "insults": null, - "insulting": [["Y"]], - "insulter's": null, - "insultingly": null, - "insuperable": null, - "insuperably": null, - "insupportableness": [["M"]], - "insupportableness's": null, - "insupportable": [["P"]], - "insurance": [["M", "S"]], - "insurance's": [["A"]], - "insurances": null, - "reinsurance's": null, - "insure": [["B", "Z", "G", "S"]], - "insurable": null, - "insurers": null, - "insuring": null, - "insures": null, - "insured": [["S"]], - "insureds": null, - "insurer": [["M"]], - "insurer's": null, - "insurgence": [["S", "M"]], - "insurgences": null, - "insurgence's": null, - "insurgency": [["M", "S"]], - "insurgency's": null, - "insurgencies": null, - "insurgent": [["M", "S"]], - "insurgent's": null, - "insurgents": null, - "insurmountably": null, - "insurrectionist": [["S", "M"]], - "insurrectionists": null, - "insurrectionist's": null, - "insurrection": [["S", "M"]], - "insurrections": null, - "insurrection's": null, - "intactness": [["M"]], - "intactness's": null, - "intact": [["P"]], - "intaglio": [["G", "M", "D", "S"]], - "intaglioing": null, - "intaglio's": null, - "intaglioed": null, - "intaglios": null, - "intake": [["M"]], - "intake's": null, - "intangible": [["M"]], - "intangible's": null, - "integer": [["M", "S"]], - "integer's": null, - "integers": null, - "integrability": [["M"]], - "integrability's": null, - "integrable": null, - "integral": [["S", "Y", "M"]], - "integrals": null, - "integrally": null, - "integral's": null, - "integrand": [["M", "S"]], - "integrand's": null, - "integrands": null, - "integrate": [["A", "G", "N", "X", "E", "D", "S"]], - "reintegrate": null, - "reintegrating": null, - "reintegration": null, - "reintegrations": null, - "reintegrated": null, - "reintegrates": null, - "integrating": null, - "disintegrating": null, - "integration": [["E", "M", "A"]], - "disintegration": null, - "integrations": null, - "disintegrations": null, - "disintegrate": null, - "disintegrated": null, - "disintegrates": null, - "integrated": null, - "integrates": null, - "disintegration's": null, - "integration's": null, - "reintegration's": null, - "integrative": [["E"]], - "disintegrative": null, - "integrator": [["M", "S"]], - "integrator's": null, - "integrators": null, - "integrity": [["S", "M"]], - "integrities": null, - "integrity's": null, - "integument": [["S", "M"]], - "integuments": null, - "integument's": null, - "intellective": [["Y"]], - "intellectively": null, - "intellect": [["M", "V", "S"]], - "intellect's": null, - "intellects": null, - "intellectualism": [["M", "S"]], - "intellectualism's": null, - "intellectualisms": null, - "intellectuality": [["M"]], - "intellectuality's": null, - "intellectualize": [["G", "S", "D"]], - "intellectualizing": null, - "intellectualizes": null, - "intellectualized": null, - "intellectualness": [["M"]], - "intellectualness's": null, - "intellectual": [["Y", "P", "S"]], - "intellectually": null, - "intellectuals": null, - "intelligence": [["M", "S", "R"]], - "intelligence's": null, - "intelligences": null, - "intelligencer": [["M"]], - "intelligencer's": null, - "intelligentsia": [["M", "S"]], - "intelligentsia's": null, - "intelligentsias": null, - "intelligent": [["U", "Y"]], - "unintelligent": null, - "unintelligently": null, - "intelligently": null, - "intelligibilities": null, - "intelligibility": [["U", "M"]], - "unintelligibility": null, - "unintelligibility's": null, - "intelligibility's": null, - "intelligibleness": [["M", "U"]], - "intelligibleness's": null, - "unintelligibleness's": null, - "unintelligibleness": null, - "intelligible": [["P", "U"]], - "unintelligible": null, - "intelligibly": [["U"]], - "unintelligibly": null, - "Intel": [["M"]], - "Intel's": null, - "Intelsat": [["M"]], - "Intelsat's": null, - "intemperate": [["P"]], - "intemperateness": null, - "intendant": [["M", "S"]], - "intendant's": null, - "intendants": null, - "intendedness": [["M"]], - "intendedness's": null, - "intended": [["S", "Y", "P"]], - "intendeds": null, - "intendedly": null, - "intender": [["M"]], - "intender's": null, - "intensification": [["M"]], - "intensification's": null, - "intensifier": [["M"]], - "intensifier's": null, - "intensify": [["G", "X", "N", "Z", "R", "S", "D"]], - "intensifying": null, - "intensifications": null, - "intensifiers": null, - "intensifies": null, - "intensified": null, - "intensional": [["Y"]], - "intensionally": null, - "intensiveness": [["M", "S"]], - "intensiveness's": null, - "intensivenesses": null, - "intensive": [["P", "S", "Y"]], - "intensives": null, - "intensively": null, - "intentionality": [["M"]], - "intentionality's": null, - "intentional": [["U", "Y"]], - "unintentional": null, - "unintentionally": null, - "intentionally": null, - "intention": [["S", "D", "M"]], - "intentions": null, - "intentioned": null, - "intention's": null, - "intentness": [["S", "M"]], - "intentnesses": null, - "intentness's": null, - "intent": [["Y", "P"]], - "intently": null, - "interaction": [["M", "S"]], - "interaction's": null, - "interactions": null, - "interactive": [["P", "Y"]], - "interactiveness": null, - "interactively": null, - "interactivity": null, - "interact": [["V", "G", "D", "S"]], - "interacting": null, - "interacted": null, - "interacts": null, - "interaxial": null, - "interbank": null, - "interbred": null, - "interbreed": [["G", "S"]], - "interbreeding": null, - "interbreeds": null, - "intercalate": [["G", "N", "V", "D", "S"]], - "intercalating": null, - "intercalation": [["M"]], - "intercalative": null, - "intercalated": null, - "intercalates": null, - "intercalation's": null, - "intercase": null, - "intercaste": null, - "interceder": [["M"]], - "interceder's": null, - "intercede": [["S", "R", "D", "G"]], - "intercedes": null, - "interceded": null, - "interceding": null, - "intercensal": null, - "intercept": [["D", "G", "S"]], - "intercepted": null, - "intercepting": null, - "intercepts": null, - "interception": [["M", "S"]], - "interception's": null, - "interceptions": null, - "interceptor": [["M", "S"]], - "interceptor's": null, - "interceptors": null, - "intercession": [["M", "S"]], - "intercession's": null, - "intercessions": null, - "intercessor": [["S", "M"]], - "intercessors": null, - "intercessor's": null, - "intercessory": null, - "interchangeability": [["M"]], - "interchangeability's": null, - "interchangeableness": [["M"]], - "interchangeableness's": null, - "interchangeable": [["P"]], - "interchangeably": null, - "interchange": [["D", "S", "R", "G", "J"]], - "interchanged": null, - "interchanges": null, - "interchanger": [["M"]], - "interchanging": null, - "interchangings": null, - "interchanger's": null, - "intercity": null, - "interclass": null, - "intercohort": null, - "intercollegiate": null, - "intercommunicate": [["S", "D", "X", "N", "G"]], - "intercommunicates": null, - "intercommunicated": null, - "intercommunications": null, - "intercommunication": [["M"]], - "intercommunicating": null, - "intercommunication's": null, - "intercom": [["S", "M"]], - "intercoms": null, - "intercom's": null, - "interconnectedness": [["M"]], - "interconnectedness's": null, - "interconnected": [["P"]], - "interconnect": [["G", "D", "S"]], - "interconnecting": null, - "interconnects": null, - "interconnection": [["S", "M"]], - "interconnections": null, - "interconnection's": null, - "interconnectivity": null, - "intercontinental": null, - "interconversion": [["M"]], - "interconversion's": null, - "intercorrelated": null, - "intercourse": [["S", "M"]], - "intercourses": null, - "intercourse's": null, - "Interdata": [["M"]], - "Interdata's": null, - "interdenominational": null, - "interdepartmental": [["Y"]], - "interdepartmentally": null, - "interdependence": [["M", "S"]], - "interdependence's": null, - "interdependences": null, - "interdependency": [["S", "M"]], - "interdependencies": null, - "interdependency's": null, - "interdependent": [["Y"]], - "interdependently": null, - "interdiction": [["M", "S"]], - "interdiction's": null, - "interdictions": null, - "interdict": [["M", "D", "V", "G", "S"]], - "interdict's": null, - "interdicted": null, - "interdictive": null, - "interdicting": null, - "interdicts": null, - "interdisciplinary": null, - "interested": [["U", "Y", "E"]], - "uninterested": null, - "uninterestedly": null, - "interestedly": null, - "disinterestedly": null, - "interest": [["G", "E", "M", "D", "S"]], - "interesting": [["Y", "P"]], - "disinteresting": null, - "disinterest": null, - "disinterest's": null, - "disinterests": null, - "interest's": null, - "interests": null, - "interestingly": [["U"]], - "uninterestingly": null, - "interestingness": [["M"]], - "interestingness's": null, - "inter": [["E", "S", "T", "L"]], - "disinter": null, - "disinters": null, - "disinterment": null, - "inters": null, - "interment": [["S", "M", "E"]], - "interface": [["S", "R", "D", "G", "M"]], - "interfaces": null, - "interfacer": null, - "interfaced": null, - "interfacing": [["M"]], - "interface's": null, - "interfacing's": null, - "interfaith": null, - "interference": [["M", "S"]], - "interference's": null, - "interferences": null, - "interferer": [["M"]], - "interferer's": null, - "interfere": [["S", "R", "D", "G"]], - "interferes": null, - "interfered": null, - "interfering": [["Y"]], - "interferingly": null, - "interferometer": [["S", "M"]], - "interferometers": null, - "interferometer's": null, - "interferometric": null, - "interferometry": [["M"]], - "interferometry's": null, - "interferon": [["M", "S"]], - "interferon's": null, - "interferons": null, - "interfile": [["G", "S", "D"]], - "interfiling": null, - "interfiles": null, - "interfiled": null, - "intergalactic": null, - "intergenerational": null, - "intergeneration": [["M"]], - "intergeneration's": null, - "interglacial": null, - "intergovernmental": null, - "intergroup": null, - "interim": [["S"]], - "interims": null, - "interindex": null, - "interindustry": null, - "interior": [["S", "M", "Y"]], - "interiors": null, - "interior's": null, - "interiorly": null, - "interj": null, - "interject": [["G", "D", "S"]], - "interjecting": null, - "interjected": null, - "interjects": null, - "interjectional": null, - "interjection": [["M", "S"]], - "interjection's": null, - "interjections": null, - "interlace": [["G", "S", "D"]], - "interlacing": null, - "interlaces": null, - "interlaced": null, - "interlard": [["S", "G", "D"]], - "interlards": null, - "interlarding": null, - "interlarded": null, - "interlayer": [["G"]], - "interlayering": null, - "interleave": [["S", "D", "G"]], - "interleaves": null, - "interleaved": null, - "interleaving": null, - "interleukin": [["S"]], - "interleukins": null, - "interlibrary": null, - "interlinear": [["S"]], - "interlinears": null, - "interline": [["J", "G", "S", "D"]], - "interlinings": null, - "interlining": [["M"]], - "interlines": null, - "interlined": null, - "interlingual": null, - "interlingua": [["M"]], - "interlingua's": null, - "interlining's": null, - "interlink": [["G", "D", "S"]], - "interlinking": null, - "interlinked": null, - "interlinks": null, - "interlisp": [["M"]], - "interlisp's": null, - "interlobular": null, - "interlocker": [["M"]], - "interlocker's": null, - "interlock": [["R", "D", "S", "G"]], - "interlocked": null, - "interlocks": null, - "interlocking": null, - "interlocutor": [["M", "S"]], - "interlocutor's": null, - "interlocutors": null, - "interlocutory": null, - "interlope": [["G", "Z", "S", "R", "D"]], - "interloping": null, - "interlopers": null, - "interlopes": null, - "interloper": [["M"]], - "interloped": null, - "interloper's": null, - "interlude": [["M", "S", "D", "G"]], - "interlude's": null, - "interludes": null, - "interluded": null, - "interluding": null, - "intermarriage": [["M", "S"]], - "intermarriage's": null, - "intermarriages": null, - "intermarry": [["G", "D", "S"]], - "intermarrying": null, - "intermarried": null, - "intermarries": null, - "intermediary": [["M", "S"]], - "intermediary's": null, - "intermediaries": null, - "intermediateness": [["M"]], - "intermediateness's": null, - "intermediate": [["Y", "M", "N", "G", "S", "D", "P"]], - "intermediately": null, - "intermediate's": null, - "intermediation": [["M"]], - "intermediating": null, - "intermediates": null, - "intermediated": null, - "intermediation's": null, - "interments": null, - "disinterments": null, - "interment's": null, - "disinterment's": null, - "intermeshed": null, - "intermetrics": null, - "intermezzi": null, - "intermezzo": [["S", "M"]], - "intermezzos": null, - "intermezzo's": null, - "interminably": null, - "intermingle": [["D", "S", "G"]], - "intermingled": null, - "intermingles": null, - "intermingling": null, - "intermission": [["M", "S"]], - "intermission's": null, - "intermissions": null, - "intermittent": [["Y"]], - "intermittently": null, - "intermix": [["G", "S", "R", "D"]], - "intermixing": null, - "intermixes": null, - "intermixer": null, - "intermixed": null, - "intermodule": null, - "intermolecular": [["Y"]], - "intermolecularly": null, - "internalization": [["S", "M"]], - "internalizations": null, - "internalization's": null, - "internalize": [["G", "D", "S"]], - "internalizing": null, - "internalized": null, - "internalizes": null, - "internal": [["S", "Y"]], - "internals": null, - "internally": null, - "Internationale": [["M"]], - "Internationale's": null, - "internationalism": [["S", "M"]], - "internationalisms": null, - "internationalism's": null, - "internationalist": [["S", "M"]], - "internationalists": null, - "internationalist's": null, - "internationality": [["M"]], - "internationality's": null, - "internationalization": [["M", "S"]], - "internationalization's": null, - "internationalizations": null, - "internationalize": [["D", "S", "G"]], - "internationalized": null, - "internationalizes": null, - "internationalizing": null, - "international": [["Y", "S"]], - "internationally": null, - "internationals": null, - "internecine": null, - "internee": [["S", "M"]], - "internees": null, - "internee's": null, - "interne's": null, - "Internet": [["M"]], - "Internet's": null, - "INTERNET": [["M"]], - "INTERNET's": null, - "internetwork": null, - "internist": [["S", "M"]], - "internists": null, - "internist's": null, - "intern": [["L"]], - "internment": [["S", "M"]], - "internments": null, - "internment's": null, - "internship": [["M", "S"]], - "internship's": null, - "internships": null, - "internuclear": null, - "interocular": null, - "interoffice": null, - "interoperability": null, - "interpenetrates": null, - "interpersonal": [["Y"]], - "interpersonally": null, - "interplanetary": null, - "interplay": [["G", "S", "M", "D"]], - "interplaying": null, - "interplays": null, - "interplay's": null, - "interplayed": null, - "interpol": null, - "interpolate": [["X", "G", "N", "V", "B", "D", "S"]], - "interpolations": null, - "interpolating": null, - "interpolation": [["M"]], - "interpolative": null, - "interpolatable": null, - "interpolated": null, - "interpolates": null, - "interpolation's": null, - "Interpol": [["M"]], - "Interpol's": null, - "interpose": [["G", "S", "R", "D"]], - "interposing": null, - "interposes": null, - "interposer": [["M"]], - "interposed": null, - "interposer's": null, - "interposition": [["M", "S"]], - "interposition's": null, - "interpositions": null, - "interpretable": [["U"]], - "uninterpretable": null, - "interpret": [["A", "G", "S", "D"]], - "reinterpret": null, - "reinterpreting": null, - "reinterprets": null, - "reinterpreted": null, - "interpreting": null, - "interprets": null, - "interpreted": [["U"]], - "interpretation": [["M", "S", "A"]], - "interpretation's": null, - "reinterpretation's": null, - "interpretations": null, - "reinterpretations": null, - "reinterpretation": null, - "interpretative": [["Y"]], - "interpretatively": null, - "uninterpreted": null, - "interpreter": [["S", "M"]], - "interpreters": null, - "interpreter's": null, - "interpretive": [["Y"]], - "interpretively": null, - "interpretor": [["S"]], - "interpretors": null, - "interprocess": null, - "interprocessor": null, - "interquartile": null, - "interracial": null, - "interred": [["E"]], - "disinterred": null, - "interregional": null, - "interregnum": [["M", "S"]], - "interregnum's": null, - "interregnums": null, - "interrelatedness": [["M"]], - "interrelatedness's": null, - "interrelated": [["P", "Y"]], - "interrelatedly": null, - "interrelate": [["G", "N", "D", "S", "X"]], - "interrelating": null, - "interrelation": [["M"]], - "interrelates": null, - "interrelations": null, - "interrelation's": null, - "interrelationship": [["S", "M"]], - "interrelationships": null, - "interrelationship's": null, - "interring": [["E"]], - "disinterring": null, - "interrogate": [["D", "S", "X", "G", "N", "V"]], - "interrogated": null, - "interrogates": null, - "interrogations": null, - "interrogating": null, - "interrogation": [["M"]], - "interrogative": [["S", "Y"]], - "interrogation's": null, - "interrogatives": null, - "interrogatively": null, - "interrogator": [["S", "M"]], - "interrogators": null, - "interrogator's": null, - "interrogatory": [["S"]], - "interrogatories": null, - "interrupted": [["U"]], - "uninterrupted": [["Y", "P"]], - "interrupter": [["M"]], - "interrupter's": null, - "interruptibility": null, - "interruptible": null, - "interruption": [["M", "S"]], - "interruption's": null, - "interruptions": null, - "interrupt": [["V", "G", "Z", "R", "D", "S"]], - "interruptive": null, - "interrupting": null, - "interrupters": null, - "interrupts": null, - "interscholastic": null, - "intersect": [["G", "D", "S"]], - "intersecting": null, - "intersected": null, - "intersects": null, - "intersection": [["M", "S"]], - "intersection's": null, - "intersections": null, - "intersession": [["M", "S"]], - "intersession's": null, - "intersessions": null, - "interspecies": null, - "intersperse": [["G", "N", "D", "S", "X"]], - "interspersing": null, - "interspersion": [["M"]], - "interspersed": null, - "intersperses": null, - "interspersions": null, - "interspersion's": null, - "interstage": null, - "interstate": [["S"]], - "interstates": null, - "interstellar": null, - "interstice": [["S", "M"]], - "interstices": null, - "interstice's": null, - "interstitial": [["S", "Y"]], - "interstitials": null, - "interstitially": null, - "intersurvey": null, - "intertask": null, - "intertwine": [["G", "S", "D"]], - "intertwining": null, - "intertwines": null, - "intertwined": null, - "interurban": [["S"]], - "interurbans": null, - "interval": [["M", "S"]], - "interval's": null, - "intervals": null, - "intervene": [["G", "S", "R", "D"]], - "intervening": null, - "intervenes": null, - "intervener": [["M"]], - "intervened": null, - "intervener's": null, - "intervenor": [["M"]], - "intervenor's": null, - "interventionism": [["M", "S"]], - "interventionism's": null, - "interventionisms": null, - "interventionist": [["S"]], - "interventionists": null, - "intervention": [["M", "S"]], - "intervention's": null, - "interventions": null, - "interview": [["A", "M", "D"]], - "reinterview": null, - "reinterview's": null, - "reinterviewed": null, - "interview's": null, - "interviewed": [["U"]], - "uninterviewed": null, - "interviewee": [["S", "M"]], - "interviewees": null, - "interviewee's": null, - "interviewer": [["S", "M"]], - "interviewers": null, - "interviewer's": null, - "interviewing": null, - "interviews": null, - "intervocalic": null, - "interweave": [["G", "S"]], - "interweaving": null, - "interweaves": null, - "interwove": null, - "interwoven": null, - "intestacy": [["S", "M"]], - "intestacies": null, - "intestacy's": null, - "intestinal": [["Y"]], - "intestinally": null, - "intestine": [["S", "M"]], - "intestines": null, - "intestine's": null, - "inti": null, - "intifada": null, - "intimacy": [["S", "M"]], - "intimacies": null, - "intimacy's": null, - "intimal": null, - "intimateness": [["M"]], - "intimateness's": null, - "intimater": [["M"]], - "intimater's": null, - "intimate": [["X", "Y", "N", "G", "P", "D", "R", "S"]], - "intimations": null, - "intimately": null, - "intimation": [["M"]], - "intimating": null, - "intimated": null, - "intimates": null, - "intimation's": null, - "intimidate": [["S", "D", "X", "N", "G"]], - "intimidates": null, - "intimidated": null, - "intimidations": null, - "intimidation": [["M"]], - "intimidating": [["Y"]], - "intimidatingly": null, - "intimidation's": null, - "into": null, - "intolerableness": [["M"]], - "intolerableness's": null, - "intolerable": [["P"]], - "intolerant": [["P", "S"]], - "intolerantness": null, - "intolerants": null, - "intonate": [["N", "X"]], - "intonation": [["M"]], - "intonations": null, - "intonation's": null, - "intoxicant": [["M", "S"]], - "intoxicant's": null, - "intoxicants": null, - "intoxicate": [["D", "S", "G", "N", "X"]], - "intoxicated": [["Y"]], - "intoxicates": null, - "intoxicating": null, - "intoxication": [["M"]], - "intoxications": null, - "intoxicatedly": null, - "intoxication's": null, - "intra": null, - "intracellular": null, - "intracity": null, - "intraclass": null, - "intracohort": null, - "intractability": [["M"]], - "intractability's": null, - "intractableness": [["M"]], - "intractableness's": null, - "intractable": [["P"]], - "intradepartmental": null, - "intrafamily": null, - "intragenerational": null, - "intraindustry": null, - "intraline": null, - "intrametropolitan": null, - "intramural": [["Y"]], - "intramurally": null, - "intramuscular": [["Y"]], - "intramuscularly": null, - "intranasal": null, - "intransigence": [["M", "S"]], - "intransigence's": null, - "intransigences": null, - "intransigent": [["Y", "S"]], - "intransigently": null, - "intransigents": null, - "intransitive": [["S"]], - "intransitives": null, - "intraoffice": null, - "intraprocess": null, - "intrapulmonary": null, - "intraregional": null, - "intrasectoral": null, - "intrastate": null, - "intratissue": null, - "intrauterine": null, - "intravenous": [["Y", "S"]], - "intravenously": null, - "intravenouses": null, - "intrepidity": [["S", "M"]], - "intrepidities": null, - "intrepidity's": null, - "intrepidness": [["M"]], - "intrepidness's": null, - "intrepid": [["Y", "P"]], - "intrepidly": null, - "intricacy": [["S", "M"]], - "intricacies": null, - "intricacy's": null, - "intricateness": [["M"]], - "intricateness's": null, - "intricate": [["P", "Y"]], - "intricately": null, - "intrigue": [["D", "R", "S", "Z", "G"]], - "intrigued": null, - "intriguer": [["M"]], - "intrigues": null, - "intriguers": null, - "intriguing": [["Y"]], - "intriguer's": null, - "intriguingly": null, - "intrinsically": null, - "intrinsic": [["S"]], - "intrinsics": null, - "introduce": [["A", "D", "S", "G"]], - "reintroduce": null, - "reintroduced": null, - "reintroduces": null, - "reintroducing": null, - "introduced": null, - "introduces": null, - "introducing": null, - "introducer": [["M"]], - "introducer's": null, - "introduction": [["A", "S", "M"]], - "reintroduction": null, - "reintroductions": null, - "reintroduction's": null, - "introductions": null, - "introduction's": null, - "introductory": null, - "introit": [["S", "M"]], - "introits": null, - "introit's": null, - "introject": [["S", "D"]], - "introjects": null, - "introjected": null, - "intro": [["S"]], - "intros": null, - "introspection": [["M", "S"]], - "introspection's": null, - "introspections": null, - "introspectiveness": [["M"]], - "introspectiveness's": null, - "introspective": [["Y", "P"]], - "introspectively": null, - "introspect": [["S", "G", "V", "D"]], - "introspects": null, - "introspecting": null, - "introspected": null, - "introversion": [["S", "M"]], - "introversions": null, - "introversion's": null, - "introvert": [["S", "M", "D", "G"]], - "introverts": null, - "introvert's": null, - "introverted": null, - "introverting": null, - "intruder": [["M"]], - "intruder's": null, - "intrude": [["Z", "G", "D", "S", "R"]], - "intruders": null, - "intruding": null, - "intruded": null, - "intrudes": null, - "intrusion": [["S", "M"]], - "intrusions": null, - "intrusion's": null, - "intrusiveness": [["M", "S"]], - "intrusiveness's": null, - "intrusivenesses": null, - "intrusive": [["S", "Y", "P"]], - "intrusives": null, - "intrusively": null, - "intubate": [["N", "G", "D", "S"]], - "intubation": [["M"]], - "intubating": null, - "intubated": null, - "intubates": null, - "intubation's": null, - "intuit": [["G", "V", "D", "S", "B"]], - "intuiting": null, - "intuitive": [["Y", "P"]], - "intuited": null, - "intuits": null, - "intuitable": null, - "intuitionist": [["M"]], - "intuitionist's": null, - "intuitiveness": [["M", "S"]], - "intuitiveness's": null, - "intuitivenesses": null, - "intuitively": null, - "int": [["Z", "R"]], - "Inuit": [["M", "S"]], - "Inuit's": null, - "Inuits": null, - "inundate": [["S", "X", "N", "G"]], - "inundates": null, - "inundations": null, - "inundation": [["M"]], - "inundating": null, - "inundation's": null, - "inure": [["G", "D", "S"]], - "inuring": null, - "inured": null, - "inures": null, - "invader": [["M"]], - "invader's": null, - "invade": [["Z", "S", "R", "D", "G"]], - "invaders": null, - "invades": null, - "invaded": null, - "invading": null, - "invalid": [["G", "S", "D", "M"]], - "invaliding": null, - "invalids": null, - "invalided": null, - "invalid's": null, - "invalidism": [["M", "S"]], - "invalidism's": null, - "invalidisms": null, - "invariable": [["P"]], - "invariableness": null, - "invariant": [["M"]], - "invariant's": null, - "invasion": [["S", "M"]], - "invasions": null, - "invasion's": null, - "invasive": [["P"]], - "invasiveness": null, - "invectiveness": [["M"]], - "invectiveness's": null, - "invective": [["P", "S", "M", "Y"]], - "invectives": null, - "invective's": null, - "invectively": null, - "inveigh": [["D", "R", "G"]], - "inveighed": null, - "inveigher": [["M"]], - "inveighing": null, - "inveigher's": null, - "inveighs": null, - "inveigle": [["D", "R", "S", "Z", "G"]], - "inveigled": null, - "inveigler": [["M"]], - "inveigles": null, - "inveiglers": null, - "inveigling": null, - "inveigler's": null, - "invent": [["A", "D", "G", "S"]], - "reinvent": null, - "reinvented": null, - "reinventing": null, - "reinvents": null, - "invented": [["U"]], - "inventing": null, - "invents": null, - "uninvented": null, - "invention": [["A", "S", "M"]], - "reinvention": null, - "reinventions": null, - "reinvention's": null, - "inventions": null, - "invention's": null, - "inventiveness": [["M", "S"]], - "inventiveness's": null, - "inventivenesses": null, - "inventive": [["Y", "P"]], - "inventively": null, - "inventor": [["M", "S"]], - "inventor's": null, - "inventors": null, - "inventory": [["S", "D", "M", "G"]], - "inventories": null, - "inventoried": null, - "inventory's": null, - "inventorying": null, - "Inverness": [["M"]], - "Inverness's": null, - "inverse": [["Y", "V"]], - "inversely": null, - "inversive": null, - "inverter": [["M"]], - "inverter's": null, - "invertible": null, - "invert": [["Z", "S", "G", "D", "R"]], - "inverters": null, - "inverts": null, - "inverting": null, - "inverted": null, - "invest": [["A", "D", "S", "L", "G"]], - "reinvest": null, - "reinvested": null, - "reinvests": null, - "reinvestment": null, - "reinvesting": null, - "invested": null, - "invests": null, - "investment": [["E", "S", "A"]], - "investing": null, - "investigate": [["X", "D", "S", "N", "G", "V"]], - "investigations": null, - "investigated": null, - "investigates": null, - "investigation": [["M", "A"]], - "investigating": null, - "investigative": null, - "investigation's": null, - "reinvestigation's": null, - "reinvestigation": null, - "investigator": [["M", "S"]], - "investigator's": null, - "investigators": null, - "investigatory": null, - "investiture": [["S", "M"]], - "investitures": null, - "investiture's": null, - "disinvestments": null, - "investments": null, - "reinvestments": null, - "investment's": [["A"]], - "reinvestment's": null, - "investor": [["S", "M"]], - "investors": null, - "investor's": null, - "inveteracy": [["M", "S"]], - "inveteracy's": null, - "inveteracies": null, - "inveterate": [["Y"]], - "inveterately": null, - "inviability": null, - "invidiousness": [["M", "S"]], - "invidiousness's": null, - "invidiousnesses": null, - "invidious": [["Y", "P"]], - "invidiously": null, - "invigilate": [["G", "D"]], - "invigilating": null, - "invigilated": null, - "invigilator": [["S", "M"]], - "invigilators": null, - "invigilator's": null, - "invigorate": [["A", "N", "G", "S", "D"]], - "reinvigorate": null, - "reinvigoration": null, - "reinvigorating": null, - "reinvigorates": null, - "reinvigorated": null, - "invigoration": [["A", "M"]], - "invigorating": [["Y"]], - "invigorates": null, - "invigorated": null, - "invigoratingly": null, - "reinvigoration's": null, - "invigoration's": null, - "invigorations": null, - "invincibility": [["S", "M"]], - "invincibilities": null, - "invincibility's": null, - "invincibleness": [["M"]], - "invincibleness's": null, - "invincible": [["P"]], - "invincibly": null, - "inviolability": [["M", "S"]], - "inviolability's": null, - "inviolabilities": null, - "inviolably": null, - "inviolateness": [["M"]], - "inviolateness's": null, - "inviolate": [["Y", "P"]], - "inviolately": null, - "inviscid": null, - "invisibleness": [["M"]], - "invisibleness's": null, - "invisible": [["S"]], - "invisibles": null, - "invitational": [["S"]], - "invitationals": null, - "invitation": [["M", "S"]], - "invitation's": null, - "invitations": null, - "invited": [["U"]], - "uninvited": null, - "invitee": [["S"]], - "invitees": null, - "inviter": [["M"]], - "inviter's": null, - "invite": [["S", "R", "D", "G"]], - "invites": null, - "inviting": [["Y"]], - "invitingly": null, - "invocable": null, - "invocate": null, - "invoked": [["A"]], - "reinvoked": null, - "invoke": [["G", "S", "R", "D", "B", "Z"]], - "invoking": null, - "invokes": [["A"]], - "invoker": [["M"]], - "invokable": null, - "invokers": null, - "invoker's": null, - "reinvokes": null, - "involuntariness": [["S"]], - "involuntarinesses": null, - "involuntary": [["P"]], - "involute": [["X", "Y", "N"]], - "involutions": null, - "involutely": null, - "involution": [["M"]], - "involution's": null, - "involutorial": null, - "involvedly": null, - "involved": [["U"]], - "uninvolved": null, - "involve": [["G", "D", "S", "R", "L"]], - "involving": null, - "involves": null, - "involver": [["M"]], - "involvement": [["S", "M"]], - "involvements": null, - "involvement's": null, - "involver's": null, - "invulnerability": [["M"]], - "invulnerability's": null, - "invulnerableness": [["M"]], - "invulnerableness's": null, - "inwardness": [["M"]], - "inwardness's": null, - "inward": [["P", "Y"]], - "inwardly": null, - "ioctl": null, - "iodate": [["M", "G", "N", "D"]], - "iodate's": null, - "iodating": null, - "iodation": [["M"]], - "iodated": null, - "iodation's": null, - "iodide": [["M", "S"]], - "iodide's": null, - "iodides": null, - "iodinate": [["D", "N", "G"]], - "iodinated": null, - "iodination": null, - "iodinating": null, - "iodine": [["M", "S"]], - "iodine's": null, - "iodines": null, - "iodize": [["G", "S", "D"]], - "iodizing": null, - "iodizes": null, - "iodized": null, - "Iolande": [["M"]], - "Iolande's": null, - "Iolanthe": [["M"]], - "Iolanthe's": null, - "Io": [["M"]], - "Io's": null, - "Iona": [["M"]], - "Iona's": null, - "Ionesco": [["M"]], - "Ionesco's": null, - "Ionian": [["M"]], - "Ionian's": null, - "ionic": [["S"]], - "ionics": null, - "Ionic": [["S"]], - "Ionics": null, - "ionization's": null, - "ionization": [["S", "U"]], - "ionizations": null, - "unionizations": null, - "unionization": null, - "ionized": [["U", "C"]], - "unionized": null, - "deionized": null, - "ionize": [["G", "N", "S", "R", "D", "J", "X", "Z"]], - "ionizing": [["U"]], - "ionizion": null, - "ionizes": [["U"]], - "ionizer": [["U", "S"]], - "ionizings": null, - "ionizions": null, - "ionizers": null, - "ionizer's": null, - "unionizer": null, - "unionizers": null, - "unionizes": null, - "unionizing": null, - "ionosphere": [["S", "M"]], - "ionospheres": null, - "ionosphere's": null, - "ionospheric": null, - "ion's": [["I"]], - "inion's": null, - "ion": [["S", "M", "U"]], - "ions": null, - "unions": null, - "union's": null, - "union": [["A", "E", "M", "S"]], - "Iorgo": [["M", "S"]], - "Iorgo's": null, - "Iorgos": null, - "Iormina": [["M"]], - "Iormina's": null, - "Iosep": [["M"]], - "Iosep's": null, - "iota": [["S", "M"]], - "iotas": null, - "iota's": null, - "IOU": null, - "Iowan": [["S"]], - "Iowans": null, - "Iowa": [["S", "M"]], - "Iowas": null, - "Iowa's": null, - "IPA": null, - "ipecac": [["M", "S"]], - "ipecac's": null, - "ipecacs": null, - "Iphigenia": [["M"]], - "Iphigenia's": null, - "ipso": null, - "Ipswich": [["M"]], - "Ipswich's": null, - "IQ": null, - "Iqbal": [["M"]], - "Iqbal's": null, - "Iquitos": [["M"]], - "Iquitos's": null, - "Ira": [["M"]], - "Ira's": null, - "Iranian": [["M", "S"]], - "Iranian's": null, - "Iranians": null, - "Iran": [["M"]], - "Iran's": null, - "Iraqi": [["S", "M"]], - "Iraqis": null, - "Iraqi's": null, - "Iraq": [["M"]], - "Iraq's": null, - "IRA": [["S"]], - "IRAs": null, - "irascibility": [["S", "M"]], - "irascibilities": null, - "irascibility's": null, - "irascible": null, - "irascibly": null, - "irateness": [["S"]], - "iratenesses": null, - "irate": [["R", "P", "Y", "T"]], - "irater": null, - "irately": null, - "iratest": null, - "ireful": null, - "Ireland": [["M"]], - "Ireland's": null, - "ire": [["M", "G", "D", "S"]], - "ire's": null, - "iring": null, - "ired": null, - "ires": null, - "Irena": [["M"]], - "Irena's": null, - "Irene": [["M"]], - "Irene's": null, - "irenic": [["S"]], - "irenics": null, - "iridescence": [["S", "M"]], - "iridescences": null, - "iridescence's": null, - "iridescent": [["Y"]], - "iridescently": null, - "irides": [["M"]], - "irides's": null, - "iridium": [["M", "S"]], - "iridium's": null, - "iridiums": null, - "irids": null, - "Irina": [["M"]], - "Irina's": null, - "Iris": null, - "iris": [["G", "D", "S", "M"]], - "irising": null, - "irised": null, - "irises": null, - "iris's": null, - "Irishman": [["M"]], - "Irishman's": null, - "Irishmen": null, - "Irish": [["R"]], - "Irisher": null, - "Irishwoman": [["M"]], - "Irishwoman's": null, - "Irishwomen": null, - "Irita": [["M"]], - "Irita's": null, - "irk": [["G", "D", "S"]], - "irking": null, - "irked": null, - "irks": null, - "irksomeness": [["S", "M"]], - "irksomenesses": null, - "irksomeness's": null, - "irksome": [["Y", "P"]], - "irksomely": null, - "Irkutsk": [["M"]], - "Irkutsk's": null, - "Ir": [["M"]], - "Ir's": null, - "Irma": [["M"]], - "Irma's": null, - "ironclad": [["S"]], - "ironclads": null, - "iron": [["D", "R", "M", "P", "S", "G", "J"]], - "ironed": null, - "ironer": [["M"]], - "iron's": null, - "ironness": null, - "irons": null, - "ironing": [["M"]], - "ironings": null, - "ironer's": null, - "ironic": null, - "ironicalness": [["M"]], - "ironicalness's": null, - "ironical": [["Y", "P"]], - "ironically": null, - "ironing's": null, - "ironmonger": [["M"]], - "ironmonger's": null, - "ironmongery": [["M"]], - "ironmongery's": null, - "ironside": [["M", "S"]], - "ironside's": null, - "ironsides": null, - "ironstone": [["M", "S"]], - "ironstone's": null, - "ironstones": null, - "ironware": [["S", "M"]], - "ironwares": null, - "ironware's": null, - "ironwood": [["S", "M"]], - "ironwoods": null, - "ironwood's": null, - "ironworker": [["M"]], - "ironworker's": null, - "ironwork": [["M", "R", "S"]], - "ironwork's": null, - "ironworks": null, - "irony": [["S", "M"]], - "ironies": null, - "irony's": null, - "Iroquoian": [["M", "S"]], - "Iroquoian's": null, - "Iroquoians": null, - "Iroquois": [["M"]], - "Iroquois's": null, - "irradiate": [["X", "S", "D", "V", "N", "G"]], - "irradiations": null, - "irradiates": null, - "irradiated": null, - "irradiative": null, - "irradiation": [["M"]], - "irradiating": null, - "irradiation's": null, - "irrationality": [["M", "S"]], - "irrationality's": null, - "irrationalities": null, - "irrationalness": [["M"]], - "irrationalness's": null, - "irrational": [["Y", "S", "P"]], - "irrationally": null, - "irrationals": null, - "Irrawaddy": [["M"]], - "Irrawaddy's": null, - "irreclaimable": null, - "irreconcilability": [["M", "S"]], - "irreconcilability's": null, - "irreconcilabilities": null, - "irreconcilableness": [["M"]], - "irreconcilableness's": null, - "irreconcilable": [["P", "S"]], - "irreconcilables": null, - "irreconcilably": null, - "irrecoverableness": [["M"]], - "irrecoverableness's": null, - "irrecoverable": [["P"]], - "irrecoverably": null, - "irredeemable": [["S"]], - "irredeemables": null, - "irredeemably": null, - "irredentism": [["M"]], - "irredentism's": null, - "irredentist": [["M"]], - "irredentist's": null, - "irreducibility": [["M"]], - "irreducibility's": null, - "irreducible": null, - "irreducibly": null, - "irreflexive": null, - "irrefutable": null, - "irrefutably": null, - "irregardless": null, - "irregularity": [["S", "M"]], - "irregularities": null, - "irregularity's": null, - "irregular": [["Y", "S"]], - "irregularly": null, - "irregulars": null, - "irrelevance": [["S", "M"]], - "irrelevances": null, - "irrelevance's": null, - "irrelevancy": [["M", "S"]], - "irrelevancy's": null, - "irrelevancies": null, - "irrelevant": [["Y"]], - "irrelevantly": null, - "irreligious": null, - "irremediableness": [["M"]], - "irremediableness's": null, - "irremediable": [["P"]], - "irremediably": null, - "irremovable": null, - "irreparableness": [["M"]], - "irreparableness's": null, - "irreparable": [["P"]], - "irreparably": null, - "irreplaceable": [["P"]], - "irreplaceableness": null, - "irrepressible": null, - "irrepressibly": null, - "irreproachableness": [["M"]], - "irreproachableness's": null, - "irreproachable": [["P"]], - "irreproachably": null, - "irreproducibility": null, - "irreproducible": null, - "irresistibility": [["M"]], - "irresistibility's": null, - "irresistibleness": [["M"]], - "irresistibleness's": null, - "irresistible": [["P"]], - "irresistibly": null, - "irresoluteness": [["S", "M"]], - "irresolutenesses": null, - "irresoluteness's": null, - "irresolute": [["P", "N", "X", "Y"]], - "irresolution": [["M"]], - "irresolutions": null, - "irresolutely": null, - "irresolution's": null, - "irresolvable": null, - "irrespective": [["Y"]], - "irrespectively": null, - "irresponsibility": [["S", "M"]], - "irresponsibilities": null, - "irresponsibility's": null, - "irresponsibleness": [["M"]], - "irresponsibleness's": null, - "irresponsible": [["P", "S"]], - "irresponsibles": null, - "irresponsibly": null, - "irretrievable": null, - "irretrievably": null, - "irreverence": [["M", "S"]], - "irreverence's": null, - "irreverences": null, - "irreverent": [["Y"]], - "irreverently": null, - "irreversible": null, - "irreversibly": null, - "irrevocableness": [["M"]], - "irrevocableness's": null, - "irrevocable": [["P"]], - "irrevocably": null, - "irrigable": null, - "irrigate": [["D", "S", "X", "N", "G"]], - "irrigated": null, - "irrigates": null, - "irrigations": null, - "irrigation": [["M"]], - "irrigating": null, - "irrigation's": null, - "irritability": [["M", "S"]], - "irritability's": null, - "irritabilities": null, - "irritableness": [["M"]], - "irritableness's": null, - "irritable": [["P"]], - "irritably": null, - "irritant": [["S"]], - "irritants": null, - "irritate": [["D", "S", "X", "N", "G", "V"]], - "irritated": [["Y"]], - "irritates": null, - "irritations": null, - "irritation": [["M"]], - "irritating": [["Y"]], - "irritative": null, - "irritatedly": null, - "irritatingly": null, - "irritation's": null, - "irrupt": [["G", "V", "S", "D"]], - "irrupting": null, - "irruptive": null, - "irrupts": null, - "irrupted": null, - "irruption": [["S", "M"]], - "irruptions": null, - "irruption's": null, - "IRS": null, - "Irtish": [["M"]], - "Irtish's": null, - "Irvine": [["M"]], - "Irvine's": null, - "Irving": [["M"]], - "Irving's": null, - "Irvin": [["M"]], - "Irvin's": null, - "Irv": [["M", "G"]], - "Irv's": null, - "Irwin": [["M"]], - "Irwin's": null, - "Irwinn": [["M"]], - "Irwinn's": null, - "is": null, - "i's": null, - "Isaac": [["S", "M"]], - "Isaacs": null, - "Isaac's": null, - "Isaak": [["M"]], - "Isaak's": null, - "Isabelita": [["M"]], - "Isabelita's": null, - "Isabella": [["M"]], - "Isabella's": null, - "Isabelle": [["M"]], - "Isabelle's": null, - "Isabel": [["M"]], - "Isabel's": null, - "Isacco": [["M"]], - "Isacco's": null, - "Isac": [["M"]], - "Isac's": null, - "Isadora": [["M"]], - "Isadora's": null, - "Isadore": [["M"]], - "Isadore's": null, - "Isador": [["M"]], - "Isador's": null, - "Isahella": [["M"]], - "Isahella's": null, - "Isaiah": [["M"]], - "Isaiah's": null, - "Isak": [["M"]], - "Isak's": null, - "Isa": [["M"]], - "Isa's": null, - "ISBN": null, - "Iscariot": [["M"]], - "Iscariot's": null, - "Iseabal": [["M"]], - "Iseabal's": null, - "Isfahan": [["M"]], - "Isfahan's": null, - "Isherwood": [["M"]], - "Isherwood's": null, - "Ishim": [["M"]], - "Ishim's": null, - "Ishmael": [["M"]], - "Ishmael's": null, - "Ishtar": [["M"]], - "Ishtar's": null, - "Isiahi": [["M"]], - "Isiahi's": null, - "Isiah": [["M"]], - "Isiah's": null, - "Isidora": [["M"]], - "Isidora's": null, - "Isidore": [["M"]], - "Isidore's": null, - "Isidor": [["M"]], - "Isidor's": null, - "Isidoro": [["M"]], - "Isidoro's": null, - "Isidro": [["M"]], - "Isidro's": null, - "isinglass": [["M", "S"]], - "isinglass's": null, - "isinglasses": null, - "Isis": [["M"]], - "Isis's": null, - "Islamabad": [["M"]], - "Islamabad's": null, - "Islamic": [["S"]], - "Islamics": null, - "Islam": [["S", "M"]], - "Islams": null, - "Islam's": null, - "islander": [["M"]], - "islander's": null, - "island": [["G", "Z", "M", "R", "D", "S"]], - "islanding": null, - "islanders": null, - "island's": null, - "islanded": null, - "islands": null, - "Islandia": [["M"]], - "Islandia's": null, - "isle": [["M", "S"]], - "isle's": null, - "isles": null, - "islet": [["S", "M"]], - "islets": null, - "islet's": null, - "isl": [["G", "D"]], - "isling": null, - "isled": null, - "Ismael": [["M"]], - "Ismael's": null, - "ism": [["M", "C", "S"]], - "ism's": null, - "deism's": null, - "deism": null, - "deisms": null, - "isms": null, - "isn't": null, - "ISO": null, - "isobaric": null, - "isobar": [["M", "S"]], - "isobar's": null, - "isobars": null, - "Isobel": [["M"]], - "Isobel's": null, - "isochronal": [["Y"]], - "isochronally": null, - "isochronous": [["Y"]], - "isochronously": null, - "isocline": [["M"]], - "isocline's": null, - "isocyanate": [["M"]], - "isocyanate's": null, - "isodine": null, - "isolate": [["S", "D", "X", "N", "G"]], - "isolates": null, - "isolated": null, - "isolations": null, - "isolation": [["M"]], - "isolating": null, - "isolationism": [["S", "M"]], - "isolationisms": null, - "isolationism's": null, - "isolationistic": null, - "isolationist": [["S", "M"]], - "isolationists": null, - "isolationist's": null, - "isolation's": null, - "isolator": [["M", "S"]], - "isolator's": null, - "isolators": null, - "Isolde": [["M"]], - "Isolde's": null, - "isomeric": null, - "isomerism": [["S", "M"]], - "isomerisms": null, - "isomerism's": null, - "isomer": [["S", "M"]], - "isomers": null, - "isomer's": null, - "isometrically": null, - "isometric": [["S"]], - "isometrics": [["M"]], - "isometrics's": null, - "isomorphic": null, - "isomorphically": null, - "isomorphism": [["M", "S"]], - "isomorphism's": null, - "isomorphisms": null, - "isomorph": [["M"]], - "isomorph's": null, - "isoperimetrical": null, - "isopleth": [["M"]], - "isopleth's": null, - "isopleths": null, - "isosceles": null, - "isostatic": null, - "isothermal": [["Y"]], - "isothermally": null, - "isotherm": [["M", "S"]], - "isotherm's": null, - "isotherms": null, - "isotonic": null, - "isotope": [["S", "M"]], - "isotopes": null, - "isotope's": null, - "isotopic": null, - "isotropic": null, - "isotropically": null, - "isotropy": [["M"]], - "isotropy's": null, - "Ispahan's": null, - "ispell": [["M"]], - "ispell's": null, - "Ispell": [["M"]], - "Ispell's": null, - "Israeli": [["M", "S"]], - "Israeli's": null, - "Israelis": null, - "Israelite": [["S", "M"]], - "Israelites": null, - "Israelite's": null, - "Israel": [["M", "S"]], - "Israel's": null, - "Israels": null, - "Issac": [["M"]], - "Issac's": null, - "Issiah": [["M"]], - "Issiah's": null, - "Issie": [["M"]], - "Issie's": null, - "Issi": [["M"]], - "Issi's": null, - "issuable": null, - "issuance": [["M", "S"]], - "issuance's": null, - "issuances": null, - "issuant": null, - "issued": [["A"]], - "reissued": null, - "issue": [["G", "M", "Z", "D", "S", "R"]], - "issuing": [["A"]], - "issue's": null, - "issuers": null, - "issues": [["A"]], - "issuer": [["A", "M", "S"]], - "reissuer": null, - "reissuer's": null, - "reissuers": null, - "issuer's": null, - "reissues": null, - "reissuing": null, - "Issy": [["M"]], - "Issy's": null, - "Istanbul": [["M"]], - "Istanbul's": null, - "isthmian": [["S"]], - "isthmians": null, - "isthmus": [["S", "M"]], - "isthmuses": null, - "isthmus's": null, - "Istvan": [["M"]], - "Istvan's": null, - "Isuzu": [["M"]], - "Isuzu's": null, - "It": null, - "IT": null, - "Itaipu": [["M"]], - "Itaipu's": null, - "ital": null, - "Italianate": [["G", "S", "D"]], - "Italianating": null, - "Italianates": null, - "Italianated": null, - "Italian": [["M", "S"]], - "Italian's": null, - "Italians": null, - "italicization": [["M", "S"]], - "italicization's": null, - "italicizations": null, - "italicized": [["U"]], - "unitalicized": null, - "italicize": [["G", "S", "D"]], - "italicizing": null, - "italicizes": null, - "italic": [["S"]], - "italics": null, - "Ital": [["M"]], - "Ital's": null, - "Italy": [["M"]], - "Italy's": null, - "Itasca": [["M"]], - "Itasca's": null, - "itch": [["G", "M", "D", "S"]], - "itching": null, - "itch's": null, - "itched": null, - "itches": null, - "itchiness": [["M", "S"]], - "itchiness's": null, - "itchinesses": null, - "Itch": [["M"]], - "Itch's": null, - "itchy": [["R", "T", "P"]], - "itchier": null, - "itchiest": null, - "ITcorp": [["M"]], - "ITcorp's": null, - "ITCorp": [["M"]], - "ITCorp's": null, - "it'd": null, - "Itel": [["M"]], - "Itel's": null, - "itemization": [["S", "M"]], - "itemizations": null, - "itemization's": null, - "itemized": [["U"]], - "unitemized": null, - "itemize": [["G", "Z", "D", "R", "S"]], - "itemizing": null, - "itemizers": null, - "itemizer": [["M"]], - "itemizes": [["A"]], - "itemizer's": null, - "reitemizes": null, - "item": [["M", "D", "S", "G"]], - "item's": null, - "itemed": null, - "items": null, - "iteming": null, - "iterate": [["A", "S", "D", "X", "V", "G", "N"]], - "reiterate": null, - "reiterates": null, - "reiterated": null, - "reiterations": null, - "reiterating": null, - "reiteration": null, - "iterates": null, - "iterated": null, - "iterations": null, - "iterative": [["Y", "A"]], - "iterating": null, - "iteration": [["M"]], - "iteration's": null, - "iteratively": null, - "reiteratively": null, - "reiterative": [["S", "P"]], - "iterator": [["M", "S"]], - "iterator's": null, - "iterators": null, - "Ithaca": [["M"]], - "Ithaca's": null, - "Ithacan": null, - "itinerant": [["S", "Y"]], - "itinerants": null, - "itinerantly": null, - "itinerary": [["M", "S"]], - "itinerary's": null, - "itineraries": null, - "it'll": null, - "it": [["M", "U", "S"]], - "it's": null, - "unit's": null, - "unit": [["V", "G", "R", "D"]], - "units": null, - "its": null, - "Ito": [["M"]], - "Ito's": null, - "itself": null, - "ITT": null, - "IUD": [["S"]], - "IUDs": null, - "IV": null, - "Iva": [["M"]], - "Iva's": null, - "Ivanhoe": [["M"]], - "Ivanhoe's": null, - "Ivan": [["M"]], - "Ivan's": null, - "Ivar": [["M"]], - "Ivar's": null, - "I've": null, - "Ive": [["M", "R", "S"]], - "Ive's": null, - "Iver": [["M"]], - "Ives": null, - "Iver's": null, - "Ivette": [["M"]], - "Ivette's": null, - "Ivett": [["M"]], - "Ivett's": null, - "Ivie": [["M"]], - "Ivie's": null, - "iv": [["M"]], - "iv's": null, - "Ivonne": [["M"]], - "Ivonne's": null, - "Ivor": [["M"]], - "Ivor's": null, - "Ivory": [["M"]], - "Ivory's": null, - "ivory": [["S", "M"]], - "ivories": null, - "ivory's": null, - "IVs": null, - "Ivy": [["M"]], - "Ivy's": null, - "ivy": [["M", "D", "S"]], - "ivy's": null, - "ivied": null, - "ivies": null, - "ix": null, - "Izaak": [["M"]], - "Izaak's": null, - "Izabel": [["M"]], - "Izabel's": null, - "Izak": [["M"]], - "Izak's": null, - "Izanagi": [["M"]], - "Izanagi's": null, - "Izanami": [["M"]], - "Izanami's": null, - "Izhevsk": [["M"]], - "Izhevsk's": null, - "Izmir": [["M"]], - "Izmir's": null, - "Izvestia": [["M"]], - "Izvestia's": null, - "Izzy": [["M"]], - "Izzy's": null, - "jabbed": null, - "jabberer": [["M"]], - "jabberer's": null, - "jabber": [["J", "R", "D", "S", "Z", "G"]], - "jabberings": null, - "jabbered": null, - "jabbers": null, - "jabberers": null, - "jabbering": null, - "jabbing": null, - "Jabez": [["M"]], - "Jabez's": null, - "Jablonsky": [["M"]], - "Jablonsky's": null, - "jabot": [["M", "S"]], - "jabot's": null, - "jabots": null, - "jab": [["S", "M"]], - "jabs": null, - "jab's": null, - "jacaranda": [["M", "S"]], - "jacaranda's": null, - "jacarandas": null, - "Jacenta": [["M"]], - "Jacenta's": null, - "Jacinda": [["M"]], - "Jacinda's": null, - "Jacinta": [["M"]], - "Jacinta's": null, - "Jacintha": [["M"]], - "Jacintha's": null, - "Jacinthe": [["M"]], - "Jacinthe's": null, - "jackal": [["S", "M"]], - "jackals": null, - "jackal's": null, - "jackass": [["S", "M"]], - "jackasses": null, - "jackass's": null, - "jackboot": [["D", "M", "S"]], - "jackbooted": null, - "jackboot's": null, - "jackboots": null, - "jackdaw": [["S", "M"]], - "jackdaws": null, - "jackdaw's": null, - "Jackelyn": [["M"]], - "Jackelyn's": null, - "jacketed": [["U"]], - "unjacketed": null, - "jacket": [["G", "S", "M", "D"]], - "jacketing": null, - "jackets": null, - "jacket's": null, - "jack": [["G", "D", "R", "M", "S"]], - "jacking": null, - "jacked": null, - "jacker": null, - "jack's": null, - "jacks": null, - "jackhammer": [["M", "D", "G", "S"]], - "jackhammer's": null, - "jackhammered": null, - "jackhammering": null, - "jackhammers": null, - "Jackie": [["M"]], - "Jackie's": null, - "Jacki": [["M"]], - "Jacki's": null, - "jackknife": [["M", "G", "S", "D"]], - "jackknife's": null, - "jackknifing": null, - "jackknifes": null, - "jackknifed": null, - "jackknives": null, - "Jacklin": [["M"]], - "Jacklin's": null, - "Jacklyn": [["M"]], - "Jacklyn's": null, - "Jack": [["M"]], - "Jack's": null, - "Jackman": [["M"]], - "Jackman's": null, - "jackpot": [["M", "S"]], - "jackpot's": null, - "jackpots": null, - "Jackqueline": [["M"]], - "Jackqueline's": null, - "Jackquelin": [["M"]], - "Jackquelin's": null, - "jackrabbit": [["D", "G", "S"]], - "jackrabbited": null, - "jackrabbiting": null, - "jackrabbits": null, - "Jacksonian": null, - "Jackson": [["S", "M"]], - "Jacksons": null, - "Jackson's": null, - "Jacksonville": [["M"]], - "Jacksonville's": null, - "jackstraw": [["M", "S"]], - "jackstraw's": null, - "jackstraws": null, - "Jacky": [["M"]], - "Jacky's": null, - "Jaclin": [["M"]], - "Jaclin's": null, - "Jaclyn": [["M"]], - "Jaclyn's": null, - "Jacobean": null, - "Jacobian": [["M"]], - "Jacobian's": null, - "Jacobi": [["M"]], - "Jacobi's": null, - "Jacobin": [["M"]], - "Jacobin's": null, - "Jacobite": [["M"]], - "Jacobite's": null, - "Jacobo": [["M"]], - "Jacobo's": null, - "Jacobsen": [["M"]], - "Jacobsen's": null, - "Jacob": [["S", "M"]], - "Jacobs": [["N"]], - "Jacob's": null, - "Jacobson": [["M"]], - "Jacobson's": null, - "Jacobus": null, - "Jacoby": [["M"]], - "Jacoby's": null, - "jacquard": [["M", "S"]], - "jacquard's": null, - "jacquards": null, - "Jacquard": [["S", "M"]], - "Jacquards": null, - "Jacquard's": null, - "Jacqueline": [["M"]], - "Jacqueline's": null, - "Jacquelin": [["M"]], - "Jacquelin's": null, - "Jacquelyn": [["M"]], - "Jacquelyn's": null, - "Jacquelynn": [["M"]], - "Jacquelynn's": null, - "Jacquenetta": [["M"]], - "Jacquenetta's": null, - "Jacquenette": [["M"]], - "Jacquenette's": null, - "Jacques": [["M"]], - "Jacques's": null, - "Jacquetta": [["M"]], - "Jacquetta's": null, - "Jacquette": [["M"]], - "Jacquette's": null, - "Jacquie": [["M"]], - "Jacquie's": null, - "Jacqui": [["M"]], - "Jacqui's": null, - "jacuzzi": null, - "Jacuzzi": [["S"]], - "Jacuzzis": null, - "Jacynth": [["M"]], - "Jacynth's": null, - "Jada": [["M"]], - "Jada's": null, - "jadedness": [["S", "M"]], - "jadednesses": null, - "jadedness's": null, - "jaded": [["P", "Y"]], - "jadedly": null, - "jadeite": [["S", "M"]], - "jadeites": null, - "jadeite's": null, - "Jade": [["M"]], - "Jade's": null, - "jade": [["M", "G", "D", "S"]], - "jade's": null, - "jading": null, - "jades": null, - "Jaeger": [["M"]], - "Jaeger's": null, - "Jae": [["M"]], - "Jae's": null, - "jaggedness": [["S", "M"]], - "jaggednesses": null, - "jaggedness's": null, - "jagged": [["R", "Y", "T", "P"]], - "jaggeder": null, - "jaggedly": null, - "jaggedest": null, - "Jagger": [["M"]], - "Jagger's": null, - "jaggers": null, - "jagging": null, - "jag": [["S"]], - "jags": null, - "jaguar": [["M", "S"]], - "jaguar's": null, - "jaguars": null, - "jailbird": [["M", "S"]], - "jailbird's": null, - "jailbirds": null, - "jailbreak": [["S", "M"]], - "jailbreaks": null, - "jailbreak's": null, - "jailer": [["M"]], - "jailer's": null, - "jail": [["G", "Z", "S", "M", "D", "R"]], - "jailing": null, - "jailers": null, - "jails": null, - "jail's": null, - "jailed": null, - "Jaime": [["M"]], - "Jaime's": null, - "Jaimie": [["M"]], - "Jaimie's": null, - "Jaine": [["M"]], - "Jaine's": null, - "Jainism": [["M"]], - "Jainism's": null, - "Jain": [["M"]], - "Jain's": null, - "Jaipur": [["M"]], - "Jaipur's": null, - "Jakarta": [["M"]], - "Jakarta's": null, - "Jake": [["M", "S"]], - "Jake's": null, - "Jakes": null, - "Jakie": [["M"]], - "Jakie's": null, - "Jakob": [["M"]], - "Jakob's": null, - "jalape�o": [["S"]], - "jalape�os": null, - "jalopy": [["S", "M"]], - "jalopies": null, - "jalopy's": null, - "jalousie": [["M", "S"]], - "jalousie's": null, - "jalousies": null, - "Jamaal": [["M"]], - "Jamaal's": null, - "Jamaica": [["M"]], - "Jamaica's": null, - "Jamaican": [["S"]], - "Jamaicans": null, - "Jamal": [["M"]], - "Jamal's": null, - "Jamar": [["M"]], - "Jamar's": null, - "jambalaya": [["M", "S"]], - "jambalaya's": null, - "jambalayas": null, - "jamb": [["D", "M", "G", "S"]], - "jambed": null, - "jamb's": null, - "jambing": null, - "jambs": null, - "jamboree": [["M", "S"]], - "jamboree's": null, - "jamborees": null, - "Jamel": [["M"]], - "Jamel's": null, - "Jame": [["M", "S"]], - "Jame's": null, - "James": null, - "Jameson": [["M"]], - "Jameson's": null, - "Jamestown": [["M"]], - "Jamestown's": null, - "Jamesy": [["M"]], - "Jamesy's": null, - "Jamey": [["M"]], - "Jamey's": null, - "Jamie": [["M"]], - "Jamie's": null, - "Jamill": [["M"]], - "Jamill's": null, - "Jamil": [["M"]], - "Jamil's": null, - "Jami": [["M"]], - "Jami's": null, - "Jamima": [["M"]], - "Jamima's": null, - "Jamison": [["M"]], - "Jamison's": null, - "Jammal": [["M"]], - "Jammal's": null, - "jammed": [["U"]], - "unjammed": null, - "Jammie": [["M"]], - "Jammie's": null, - "jamming": [["U"]], - "unjamming": null, - "jam": [["S", "M"]], - "jams": null, - "jam's": null, - "Janacek": [["M"]], - "Janacek's": null, - "Jana": [["M"]], - "Jana's": null, - "Janaya": [["M"]], - "Janaya's": null, - "Janaye": [["M"]], - "Janaye's": null, - "Jandy": [["M"]], - "Jandy's": null, - "Janean": [["M"]], - "Janean's": null, - "Janeczka": [["M"]], - "Janeczka's": null, - "Janeen": [["M"]], - "Janeen's": null, - "Janeiro": [["M"]], - "Janeiro's": null, - "Janek": [["M"]], - "Janek's": null, - "Janela": [["M"]], - "Janela's": null, - "Janella": [["M"]], - "Janella's": null, - "Janelle": [["M"]], - "Janelle's": null, - "Janell": [["M"]], - "Janell's": null, - "Janel": [["M"]], - "Janel's": null, - "Jane": [["M"]], - "Jane's": null, - "Janene": [["M"]], - "Janene's": null, - "Janenna": [["M"]], - "Janenna's": null, - "Janessa": [["M"]], - "Janessa's": null, - "Janesville": [["M"]], - "Janesville's": null, - "Janeta": [["M"]], - "Janeta's": null, - "Janet": [["M"]], - "Janet's": null, - "Janetta": [["M"]], - "Janetta's": null, - "Janette": [["M"]], - "Janette's": null, - "Janeva": [["M"]], - "Janeva's": null, - "Janey": [["M"]], - "Janey's": null, - "jangler": [["M"]], - "jangler's": null, - "jangle": [["R", "S", "D", "G", "Z"]], - "jangles": null, - "jangled": null, - "jangling": null, - "janglers": null, - "jangly": null, - "Jania": [["M"]], - "Jania's": null, - "Janice": [["M"]], - "Janice's": null, - "Janie": [["M"]], - "Janie's": null, - "Janifer": [["M"]], - "Janifer's": null, - "Janina": [["M"]], - "Janina's": null, - "Janine": [["M"]], - "Janine's": null, - "Janis": [["M"]], - "Janis's": null, - "janissary": [["M", "S"]], - "janissary's": null, - "janissaries": null, - "Janith": [["M"]], - "Janith's": null, - "janitorial": null, - "janitor": [["S", "M"]], - "janitors": null, - "janitor's": null, - "Janka": [["M"]], - "Janka's": null, - "Jan": [["M"]], - "Jan's": null, - "Janna": [["M"]], - "Janna's": null, - "Jannelle": [["M"]], - "Jannelle's": null, - "Jannel": [["M"]], - "Jannel's": null, - "Jannie": [["M"]], - "Jannie's": null, - "Janos": [["M"]], - "Janos's": null, - "Janot": [["M"]], - "Janot's": null, - "Jansenist": [["M"]], - "Jansenist's": null, - "Jansen": [["M"]], - "Jansen's": null, - "January": [["M", "S"]], - "January's": null, - "Januaries": null, - "Janus": [["M"]], - "Janus's": null, - "Jany": [["M"]], - "Jany's": null, - "Japanese": [["S", "M"]], - "Japaneses": null, - "Japanese's": null, - "Japan": [["M"]], - "Japan's": null, - "japanned": null, - "japanner": null, - "japanning": null, - "japan": [["S", "M"]], - "japans": null, - "japan's": null, - "jape": [["D", "S", "M", "G"]], - "japed": null, - "japes": null, - "jape's": null, - "japing": null, - "Japura": [["M"]], - "Japura's": null, - "Jaquelin": [["M"]], - "Jaquelin's": null, - "Jaquelyn": [["M"]], - "Jaquelyn's": null, - "Jaquenetta": [["M"]], - "Jaquenetta's": null, - "Jaquenette": [["M"]], - "Jaquenette's": null, - "Jaquith": [["M"]], - "Jaquith's": null, - "Jarad": [["M"]], - "Jarad's": null, - "jardini�re": [["M", "S"]], - "jardini�re's": null, - "jardini�res": null, - "Jard": [["M"]], - "Jard's": null, - "Jareb": [["M"]], - "Jareb's": null, - "Jared": [["M"]], - "Jared's": null, - "jarful": [["S"]], - "jarfuls": null, - "jargon": [["S", "G", "D", "M"]], - "jargons": null, - "jargoning": null, - "jargoned": null, - "jargon's": null, - "Jarib": [["M"]], - "Jarib's": null, - "Jarid": [["M"]], - "Jarid's": null, - "Jarlsberg": null, - "jar": [["M", "S"]], - "jar's": null, - "jars": null, - "Jarrad": [["M"]], - "Jarrad's": null, - "jarred": null, - "Jarred": [["M"]], - "Jarred's": null, - "Jarret": [["M"]], - "Jarret's": null, - "Jarrett": [["M"]], - "Jarrett's": null, - "Jarrid": [["M"]], - "Jarrid's": null, - "jarring": [["S", "Y"]], - "jarrings": null, - "jarringly": null, - "Jarrod": [["M"]], - "Jarrod's": null, - "Jarvis": [["M"]], - "Jarvis's": null, - "Jase": [["M"]], - "Jase's": null, - "Jasen": [["M"]], - "Jasen's": null, - "Jasmina": [["M"]], - "Jasmina's": null, - "Jasmine": [["M"]], - "Jasmine's": null, - "jasmine": [["M", "S"]], - "jasmine's": null, - "jasmines": null, - "Jasmin": [["M"]], - "Jasmin's": null, - "Jason": [["M"]], - "Jason's": null, - "Jasper": [["M"]], - "Jasper's": null, - "jasper": [["M", "S"]], - "jasper's": null, - "jaspers": null, - "Jastrow": [["M"]], - "Jastrow's": null, - "Jasun": [["M"]], - "Jasun's": null, - "jato": [["S", "M"]], - "jatos": null, - "jato's": null, - "jaundice": [["D", "S", "M", "G"]], - "jaundiced": [["U"]], - "jaundices": null, - "jaundice's": null, - "jaundicing": null, - "unjaundiced": null, - "jauntily": null, - "jauntiness": [["M", "S"]], - "jauntiness's": null, - "jauntinesses": null, - "jaunt": [["M", "D", "G", "S"]], - "jaunt's": null, - "jaunted": null, - "jaunting": null, - "jaunts": null, - "jaunty": [["S", "R", "T", "P"]], - "jaunties": null, - "jauntier": null, - "jauntiest": null, - "Javanese": null, - "Java": [["S", "M"]], - "Javas": null, - "Java's": null, - "javelin": [["S", "D", "M", "G"]], - "javelins": null, - "javelined": null, - "javelin's": null, - "javelining": null, - "Javier": [["M"]], - "Javier's": null, - "jawbone": [["S", "D", "M", "G"]], - "jawbones": null, - "jawboned": null, - "jawbone's": null, - "jawboning": null, - "jawbreaker": [["S", "M"]], - "jawbreakers": null, - "jawbreaker's": null, - "jawline": null, - "jaw": [["S", "M", "D", "G"]], - "jaws": null, - "jaw's": null, - "jawed": null, - "jawing": null, - "Jaxartes": [["M"]], - "Jaxartes's": null, - "Jayapura": [["M"]], - "Jayapura's": null, - "jaybird": [["S", "M"]], - "jaybirds": null, - "jaybird's": null, - "Jaycee": [["S", "M"]], - "Jaycees": null, - "Jaycee's": null, - "Jaye": [["M"]], - "Jaye's": null, - "Jay": [["M"]], - "Jay's": null, - "Jaymee": [["M"]], - "Jaymee's": null, - "Jayme": [["M"]], - "Jayme's": null, - "Jaymie": [["M"]], - "Jaymie's": null, - "Jaynell": [["M"]], - "Jaynell's": null, - "Jayne": [["M"]], - "Jayne's": null, - "jay": [["S", "M"]], - "jays": null, - "jay's": null, - "Jayson": [["M"]], - "Jayson's": null, - "jaywalker": [["M"]], - "jaywalker's": null, - "jaywalk": [["J", "S", "R", "D", "Z", "G"]], - "jaywalkings": null, - "jaywalks": null, - "jaywalked": null, - "jaywalkers": null, - "jaywalking": null, - "Jazmin": [["M"]], - "Jazmin's": null, - "jazziness": [["M"]], - "jazziness's": null, - "jazzmen": null, - "jazz": [["M", "G", "D", "S"]], - "jazz's": null, - "jazzing": null, - "jazzed": null, - "jazzes": null, - "jazzy": [["P", "T", "R"]], - "jazziest": null, - "jazzier": null, - "JCS": null, - "jct": null, - "JD": null, - "Jdavie": [["M"]], - "Jdavie's": null, - "jealousness": [["M"]], - "jealousness's": null, - "jealous": [["P", "Y"]], - "jealously": null, - "jealousy": [["M", "S"]], - "jealousy's": null, - "jealousies": null, - "Jeana": [["M"]], - "Jeana's": null, - "Jeanelle": [["M"]], - "Jeanelle's": null, - "Jeane": [["M"]], - "Jeane's": null, - "Jeanette": [["M"]], - "Jeanette's": null, - "Jeanie": [["M"]], - "Jeanie's": null, - "Jeanine": [["M"]], - "Jeanine's": null, - "Jean": [["M"]], - "Jean's": null, - "jean": [["M", "S"]], - "jean's": null, - "jeans": null, - "Jeanna": [["M"]], - "Jeanna's": null, - "Jeanne": [["M"]], - "Jeanne's": null, - "Jeannette": [["M"]], - "Jeannette's": null, - "Jeannie": [["M"]], - "Jeannie's": null, - "Jeannine": [["M"]], - "Jeannine's": null, - "Jecho": [["M"]], - "Jecho's": null, - "Jedd": [["M"]], - "Jedd's": null, - "Jeddy": [["M"]], - "Jeddy's": null, - "Jedediah": [["M"]], - "Jedediah's": null, - "Jedidiah": [["M"]], - "Jedidiah's": null, - "Jedi": [["M"]], - "Jedi's": null, - "Jed": [["M"]], - "Jed's": null, - "jeep": [["G", "Z", "S", "M", "D"]], - "jeeping": null, - "jeepers": null, - "jeeps": null, - "jeep's": null, - "jeeped": null, - "Jeep": [["S"]], - "Jeeps": null, - "jeerer": [["M"]], - "jeerer's": null, - "jeering": [["Y"]], - "jeeringly": null, - "jeer": [["S", "J", "D", "R", "M", "G"]], - "jeers": null, - "jeerings": null, - "jeered": null, - "jeer's": null, - "Jeeves": [["M"]], - "Jeeves's": null, - "jeez": null, - "Jefferey": [["M"]], - "Jefferey's": null, - "Jeffersonian": [["S"]], - "Jeffersonians": null, - "Jefferson": [["M"]], - "Jefferson's": null, - "Jeffery": [["M"]], - "Jeffery's": null, - "Jeffie": [["M"]], - "Jeffie's": null, - "Jeff": [["M"]], - "Jeff's": null, - "Jeffrey": [["S", "M"]], - "Jeffreys": null, - "Jeffrey's": null, - "Jeffry": [["M"]], - "Jeffry's": null, - "Jeffy": [["M"]], - "Jeffy's": null, - "jehad's": null, - "Jehanna": [["M"]], - "Jehanna's": null, - "Jehoshaphat": [["M"]], - "Jehoshaphat's": null, - "Jehovah": [["M"]], - "Jehovah's": null, - "Jehu": [["M"]], - "Jehu's": null, - "jejuna": null, - "jejuneness": [["M"]], - "jejuneness's": null, - "jejune": [["P", "Y"]], - "jejunely": null, - "jejunum": [["M"]], - "jejunum's": null, - "Jekyll": [["M"]], - "Jekyll's": null, - "Jelene": [["M"]], - "Jelene's": null, - "jell": [["G", "S", "D"]], - "jelling": null, - "jells": null, - "jelled": null, - "Jello": [["M"]], - "Jello's": null, - "jello's": null, - "jellybean": [["S", "M"]], - "jellybeans": null, - "jellybean's": null, - "jellyfish": [["M", "S"]], - "jellyfish's": null, - "jellyfishes": null, - "jellying": [["M"]], - "jellying's": null, - "jellylike": null, - "jellyroll": [["S"]], - "jellyrolls": null, - "jelly": [["S", "D", "M", "G"]], - "jellies": null, - "jellied": null, - "jelly's": null, - "Jemie": [["M"]], - "Jemie's": null, - "Jemimah": [["M"]], - "Jemimah's": null, - "Jemima": [["M"]], - "Jemima's": null, - "Jemmie": [["M"]], - "Jemmie's": null, - "jemmy": [["M"]], - "jemmy's": null, - "Jemmy": [["M"]], - "Jemmy's": null, - "Jena": [["M"]], - "Jena's": null, - "Jenda": [["M"]], - "Jenda's": null, - "Jenelle": [["M"]], - "Jenelle's": null, - "Jenica": [["M"]], - "Jenica's": null, - "Jeniece": [["M"]], - "Jeniece's": null, - "Jenifer": [["M"]], - "Jenifer's": null, - "Jeniffer": [["M"]], - "Jeniffer's": null, - "Jenilee": [["M"]], - "Jenilee's": null, - "Jeni": [["M"]], - "Jeni's": null, - "Jenine": [["M"]], - "Jenine's": null, - "Jenkins": [["M"]], - "Jenkins's": null, - "Jen": [["M"]], - "Jen's": null, - "Jenna": [["M"]], - "Jenna's": null, - "Jennee": [["M"]], - "Jennee's": null, - "Jenner": [["M"]], - "Jenner's": null, - "jennet": [["S", "M"]], - "jennets": null, - "jennet's": null, - "Jennette": [["M"]], - "Jennette's": null, - "Jennica": [["M"]], - "Jennica's": null, - "Jennie": [["M"]], - "Jennie's": null, - "Jennifer": [["M"]], - "Jennifer's": null, - "Jennilee": [["M"]], - "Jennilee's": null, - "Jenni": [["M"]], - "Jenni's": null, - "Jennine": [["M"]], - "Jennine's": null, - "Jennings": [["M"]], - "Jennings's": null, - "Jenn": [["R", "M", "J"]], - "Jenn's": null, - "Jenny": [["M"]], - "Jenny's": null, - "jenny": [["S", "M"]], - "jennies": null, - "jenny's": null, - "Jeno": [["M"]], - "Jeno's": null, - "Jensen": [["M"]], - "Jensen's": null, - "Jens": [["N"]], - "jeopard": null, - "jeopardize": [["G", "S", "D"]], - "jeopardizing": null, - "jeopardizes": null, - "jeopardized": null, - "jeopardy": [["M", "S"]], - "jeopardy's": null, - "jeopardies": null, - "Jephthah": [["M"]], - "Jephthah's": null, - "Jerad": [["M"]], - "Jerad's": null, - "Jerald": [["M"]], - "Jerald's": null, - "Jeralee": [["M"]], - "Jeralee's": null, - "Jeramey": [["M"]], - "Jeramey's": null, - "Jeramie": [["M"]], - "Jeramie's": null, - "Jere": [["M"]], - "Jere's": null, - "Jereme": [["M"]], - "Jereme's": null, - "jeremiad": [["S", "M"]], - "jeremiads": null, - "jeremiad's": null, - "Jeremiah": [["M"]], - "Jeremiah's": null, - "Jeremiahs": null, - "Jeremias": [["M"]], - "Jeremias's": null, - "Jeremie": [["M"]], - "Jeremie's": null, - "Jeremy": [["M"]], - "Jeremy's": null, - "Jericho": [["M"]], - "Jericho's": null, - "Jeri": [["M"]], - "Jeri's": null, - "jerker": [["M"]], - "jerker's": null, - "jerk": [["G", "S", "D", "R", "J"]], - "jerking": null, - "jerks": null, - "jerked": null, - "jerkings": null, - "jerkily": null, - "jerkiness": [["S", "M"]], - "jerkinesses": null, - "jerkiness's": null, - "jerkin": [["S", "M"]], - "jerkins": null, - "jerkin's": null, - "jerkwater": [["S"]], - "jerkwaters": null, - "jerky": [["R", "S", "T", "P"]], - "jerkier": null, - "jerkies": null, - "jerkiest": null, - "Jermaine": [["M"]], - "Jermaine's": null, - "Jermain": [["M"]], - "Jermain's": null, - "Jermayne": [["M"]], - "Jermayne's": null, - "Jeroboam": [["M"]], - "Jeroboam's": null, - "Jerold": [["M"]], - "Jerold's": null, - "Jerome": [["M"]], - "Jerome's": null, - "Jeromy": [["M"]], - "Jeromy's": null, - "Jerrie": [["M"]], - "Jerrie's": null, - "Jerrilee": [["M"]], - "Jerrilee's": null, - "Jerrilyn": [["M"]], - "Jerrilyn's": null, - "Jerri": [["M"]], - "Jerri's": null, - "Jerrine": [["M"]], - "Jerrine's": null, - "Jerrod": [["M"]], - "Jerrod's": null, - "Jerrold": [["M"]], - "Jerrold's": null, - "Jerrome": [["M"]], - "Jerrome's": null, - "jerrybuilt": null, - "Jerrylee": [["M"]], - "Jerrylee's": null, - "jerry": [["M"]], - "jerry's": null, - "Jerry": [["M"]], - "Jerry's": null, - "jersey": [["M", "S"]], - "jersey's": null, - "jerseys": null, - "Jersey": [["M", "S"]], - "Jersey's": null, - "Jerseys": null, - "Jerusalem": [["M"]], - "Jerusalem's": null, - "Jervis": [["M"]], - "Jervis's": null, - "Jes": null, - "Jessalin": [["M"]], - "Jessalin's": null, - "Jessalyn": [["M"]], - "Jessalyn's": null, - "Jessa": [["M"]], - "Jessa's": null, - "Jessamine": [["M"]], - "Jessamine's": null, - "jessamine's": null, - "Jessamyn": [["M"]], - "Jessamyn's": null, - "Jessee": [["M"]], - "Jessee's": null, - "Jesselyn": [["M"]], - "Jesselyn's": null, - "Jesse": [["M"]], - "Jesse's": null, - "Jessey": [["M"]], - "Jessey's": null, - "Jessica": [["M"]], - "Jessica's": null, - "Jessie": [["M"]], - "Jessie's": null, - "Jessika": [["M"]], - "Jessika's": null, - "Jessi": [["M"]], - "Jessi's": null, - "jess": [["M"]], - "jess's": null, - "Jess": [["M"]], - "Jess's": null, - "Jessy": [["M"]], - "Jessy's": null, - "jest": [["D", "R", "S", "G", "Z", "M"]], - "jested": null, - "jester": [["M"]], - "jests": null, - "jesting": [["Y"]], - "jesters": null, - "jest's": null, - "jester's": null, - "jestingly": null, - "Jesuit": [["S", "M"]], - "Jesuits": null, - "Jesuit's": null, - "Jesus": null, - "Jeth": [["M"]], - "Jeth's": null, - "Jethro": [["M"]], - "Jethro's": null, - "jetliner": [["M", "S"]], - "jetliner's": null, - "jetliners": null, - "jet": [["M", "S"]], - "jet's": null, - "jets": null, - "jetport": [["S", "M"]], - "jetports": null, - "jetport's": null, - "jetsam": [["M", "S"]], - "jetsam's": null, - "jetsams": null, - "jetted": [["M"]], - "jetted's": null, - "jetting": [["M"]], - "jetting's": null, - "jettison": [["D", "S", "G"]], - "jettisoned": null, - "jettisons": null, - "jettisoning": null, - "jetty": [["R", "S", "D", "G", "M", "T"]], - "jettier": null, - "jetties": null, - "jettied": null, - "jettying": null, - "jetty's": null, - "jettiest": null, - "jeweler": [["M"]], - "jeweler's": null, - "jewelery": [["S"]], - "jeweleries": null, - "jewel": [["G", "Z", "M", "R", "D", "S"]], - "jeweling": null, - "jewelers": null, - "jewel's": null, - "jeweled": null, - "jewels": null, - "Jewelled": [["M"]], - "Jewelled's": null, - "Jewelle": [["M"]], - "Jewelle's": null, - "jewellery's": null, - "Jewell": [["M", "D"]], - "Jewell's": null, - "Jewel": [["M"]], - "Jewel's": null, - "jewelry": [["M", "S"]], - "jewelry's": null, - "jewelries": null, - "Jewess": [["S", "M"]], - "Jewesses": null, - "Jewess's": null, - "Jewishness": [["M", "S"]], - "Jewishness's": null, - "Jewishnesses": null, - "Jewish": [["P"]], - "Jew": [["M", "S"]], - "Jew's": null, - "Jews": null, - "Jewry": [["M", "S"]], - "Jewry's": null, - "Jewries": null, - "Jezebel": [["M", "S"]], - "Jezebel's": null, - "Jezebels": null, - "j": [["F"]], - "conj": null, - "JFK": [["M"]], - "JFK's": null, - "jg": [["M"]], - "jg's": null, - "jibbed": null, - "jibbing": null, - "jibe": [["S"]], - "jibes": null, - "jib": [["M", "D", "S", "G"]], - "jib's": null, - "jibed": null, - "jibs": null, - "jibing": null, - "Jidda": [["M"]], - "Jidda's": null, - "jiff": [["S"]], - "jiffs": null, - "jiffy": [["S", "M"]], - "jiffies": null, - "jiffy's": null, - "jigged": null, - "jigger": [["S", "D", "M", "G"]], - "jiggers": null, - "jiggered": null, - "jigger's": null, - "jiggering": null, - "jigging": [["M"]], - "jigging's": null, - "jiggle": [["S", "D", "G"]], - "jiggles": null, - "jiggled": null, - "jiggling": null, - "jiggly": [["T", "R"]], - "jiggliest": null, - "jigglier": null, - "jig": [["M", "S"]], - "jig's": null, - "jigs": null, - "jigsaw": [["G", "S", "D", "M"]], - "jigsawing": null, - "jigsaws": null, - "jigsawed": null, - "jigsaw's": null, - "jihad": [["S", "M"]], - "jihads": null, - "jihad's": null, - "Jilin": null, - "Jillana": [["M"]], - "Jillana's": null, - "Jillane": [["M"]], - "Jillane's": null, - "Jillayne": [["M"]], - "Jillayne's": null, - "Jilleen": [["M"]], - "Jilleen's": null, - "Jillene": [["M"]], - "Jillene's": null, - "Jillian": [["M"]], - "Jillian's": null, - "Jillie": [["M"]], - "Jillie's": null, - "Jilli": [["M"]], - "Jilli's": null, - "Jill": [["M"]], - "Jill's": null, - "Jilly": [["M"]], - "Jilly's": null, - "jilt": [["D", "R", "G", "S"]], - "jilted": null, - "jilter": [["M"]], - "jilting": null, - "jilts": null, - "jilter's": null, - "Jimenez": [["M"]], - "Jimenez's": null, - "Jim": [["M"]], - "Jim's": null, - "Jimmie": [["M"]], - "Jimmie's": null, - "jimmy": [["G", "S", "D", "M"]], - "jimmying": null, - "jimmies": null, - "jimmied": null, - "jimmy's": null, - "Jimmy": [["M"]], - "Jimmy's": null, - "jimsonweed": [["S"]], - "jimsonweeds": null, - "Jinan": null, - "jingler": [["M"]], - "jingler's": null, - "jingle": [["R", "S", "D", "G"]], - "jingles": null, - "jingled": null, - "jingling": null, - "jingly": [["T", "R"]], - "jingliest": null, - "jinglier": null, - "jingoism": [["S", "M"]], - "jingoisms": null, - "jingoism's": null, - "jingoistic": null, - "jingoist": [["S", "M"]], - "jingoists": null, - "jingoist's": null, - "jingo": [["M"]], - "jingo's": null, - "Jinnah": [["M"]], - "Jinnah's": null, - "jinni's": null, - "jinn": [["M", "S"]], - "jinn's": null, - "jinns": null, - "Jinny": [["M"]], - "Jinny's": null, - "jinrikisha": [["S", "M"]], - "jinrikishas": null, - "jinrikisha's": null, - "jinx": [["G", "M", "D", "S"]], - "jinxing": null, - "jinx's": null, - "jinxed": null, - "jinxes": null, - "jitney": [["M", "S"]], - "jitney's": null, - "jitneys": null, - "jitterbugged": null, - "jitterbugger": null, - "jitterbugging": null, - "jitterbug": [["S", "M"]], - "jitterbugs": null, - "jitterbug's": null, - "jitter": [["S"]], - "jitters": null, - "jittery": [["T", "R"]], - "jitteriest": null, - "jitterier": null, - "jiujitsu's": null, - "Jivaro": [["M"]], - "Jivaro's": null, - "jive": [["M", "G", "D", "S"]], - "jive's": null, - "jiving": null, - "jived": null, - "jives": null, - "Joachim": [["M"]], - "Joachim's": null, - "Joana": [["M"]], - "Joana's": null, - "Joane": [["M"]], - "Joane's": null, - "Joanie": [["M"]], - "Joanie's": null, - "Joan": [["M"]], - "Joan's": null, - "Joanna": [["M"]], - "Joanna's": null, - "Joanne": [["S", "M"]], - "Joannes": null, - "Joanne's": null, - "Joann": [["M"]], - "Joann's": null, - "Joaquin": [["M"]], - "Joaquin's": null, - "jobbed": null, - "jobber": [["M", "S"]], - "jobber's": null, - "jobbers": null, - "jobbery": [["M"]], - "jobbery's": null, - "jobbing": [["M"]], - "jobbing's": null, - "Jobey": [["M"]], - "Jobey's": null, - "jobholder": [["S", "M"]], - "jobholders": null, - "jobholder's": null, - "Jobie": [["M"]], - "Jobie's": null, - "Jobi": [["M"]], - "Jobi's": null, - "Jobina": [["M"]], - "Jobina's": null, - "joblessness": [["M", "S"]], - "joblessness's": null, - "joblessnesses": null, - "jobless": [["P"]], - "Jobrel": [["M"]], - "Jobrel's": null, - "job": [["S", "M"]], - "jobs": null, - "job's": null, - "Job": [["S", "M"]], - "Jobs": null, - "Job's": null, - "Jobye": [["M"]], - "Jobye's": null, - "Joby": [["M"]], - "Joby's": null, - "Jobyna": [["M"]], - "Jobyna's": null, - "Jocasta": [["M"]], - "Jocasta's": null, - "Joceline": [["M"]], - "Joceline's": null, - "Jocelin": [["M"]], - "Jocelin's": null, - "Jocelyne": [["M"]], - "Jocelyne's": null, - "Jocelyn": [["M"]], - "Jocelyn's": null, - "jockey": [["S", "G", "M", "D"]], - "jockeys": null, - "jockeying": null, - "jockey's": null, - "jockeyed": null, - "jock": [["G", "D", "M", "S"]], - "jocking": null, - "jocked": null, - "jock's": null, - "jocks": null, - "Jock": [["M"]], - "Jock's": null, - "Jocko": [["M"]], - "Jocko's": null, - "jockstrap": [["M", "S"]], - "jockstrap's": null, - "jockstraps": null, - "jocoseness": [["M", "S"]], - "jocoseness's": null, - "jocosenesses": null, - "jocose": [["Y", "P"]], - "jocosely": null, - "jocosity": [["S", "M"]], - "jocosities": null, - "jocosity's": null, - "jocularity": [["S", "M"]], - "jocularities": null, - "jocularity's": null, - "jocular": [["Y"]], - "jocularly": null, - "jocundity": [["S", "M"]], - "jocundities": null, - "jocundity's": null, - "jocund": [["Y"]], - "jocundly": null, - "Jodee": [["M"]], - "Jodee's": null, - "jodhpurs": null, - "Jodie": [["M"]], - "Jodie's": null, - "Jodi": [["M"]], - "Jodi's": null, - "Jody": [["M"]], - "Jody's": null, - "Joeann": [["M"]], - "Joeann's": null, - "Joela": [["M"]], - "Joela's": null, - "Joelie": [["M"]], - "Joelie's": null, - "Joella": [["M"]], - "Joella's": null, - "Joelle": [["M"]], - "Joelle's": null, - "Joellen": [["M"]], - "Joellen's": null, - "Joell": [["M", "N"]], - "Joell's": null, - "Joelly": [["M"]], - "Joelly's": null, - "Joellyn": [["M"]], - "Joellyn's": null, - "Joel": [["M", "Y"]], - "Joel's": null, - "Joelynn": [["M"]], - "Joelynn's": null, - "Joe": [["M"]], - "Joe's": null, - "Joesph": [["M"]], - "Joesph's": null, - "Joete": [["M"]], - "Joete's": null, - "joey": [["M"]], - "joey's": null, - "Joey": [["M"]], - "Joey's": null, - "jogged": null, - "jogger": [["S", "M"]], - "joggers": null, - "jogger's": null, - "jogging": [["S"]], - "joggings": null, - "joggler": [["M"]], - "joggler's": null, - "joggle": [["S", "R", "D", "G"]], - "joggles": null, - "joggled": null, - "joggling": null, - "Jogjakarta": [["M"]], - "Jogjakarta's": null, - "jog": [["S"]], - "jogs": null, - "Johan": [["M"]], - "Johan's": null, - "Johannah": [["M"]], - "Johannah's": null, - "Johanna": [["M"]], - "Johanna's": null, - "Johannes": null, - "Johannesburg": [["M"]], - "Johannesburg's": null, - "Johann": [["M"]], - "Johann's": null, - "Johansen": [["M"]], - "Johansen's": null, - "Johanson": [["M"]], - "Johanson's": null, - "Johna": [["M", "H"]], - "Johna's": null, - "Johnath": [["M"]], - "Johnathan": [["M"]], - "Johnathan's": null, - "Johnath's": null, - "Johnathon": [["M"]], - "Johnathon's": null, - "Johnette": [["M"]], - "Johnette's": null, - "Johnie": [["M"]], - "Johnie's": null, - "Johnna": [["M"]], - "Johnna's": null, - "Johnnie": [["M"]], - "Johnnie's": null, - "johnnycake": [["S", "M"]], - "johnnycakes": null, - "johnnycake's": null, - "Johnny": [["M"]], - "Johnny's": null, - "johnny": [["S", "M"]], - "johnnies": null, - "johnny's": null, - "Johnsen": [["M"]], - "Johnsen's": null, - "john": [["S", "M"]], - "johns": null, - "john's": null, - "John": [["S", "M"]], - "Johns": [["N"]], - "John's": null, - "Johnson": [["M"]], - "Johnson's": null, - "Johnston": [["M"]], - "Johnston's": null, - "Johnstown": [["M"]], - "Johnstown's": null, - "Johny": [["M"]], - "Johny's": null, - "Joice": [["M"]], - "Joice's": null, - "join": [["A", "D", "G", "F", "S"]], - "rejoin": null, - "rejoined": null, - "rejoining": null, - "rejoins": null, - "joined": [["U"]], - "conjoined": null, - "joining": null, - "conjoining": null, - "conjoin": null, - "conjoins": null, - "joins": null, - "unjoined": null, - "joiner": [["F", "S", "M"]], - "conjoiner": null, - "conjoiners": null, - "conjoiner's": null, - "joiners": null, - "joiner's": null, - "joinery": [["M", "S"]], - "joinery's": null, - "joineries": null, - "jointed": [["E", "Y", "P"]], - "disjointed": null, - "disjointedly": null, - "jointedly": null, - "jointedness": [["M", "E"]], - "jointedness's": null, - "disjointedness's": null, - "joint": [["E", "G", "D", "Y", "P", "S"]], - "disjoint": null, - "disjointing": null, - "disjointly": null, - "disjointness": null, - "disjoints": null, - "jointing": null, - "jointly": [["F"]], - "jointness": null, - "joints": null, - "jointer": [["M"]], - "jointer's": null, - "conjointly": null, - "joint's": null, - "jointures": null, - "joist": [["G", "M", "D", "S"]], - "joisting": null, - "joist's": null, - "joisted": null, - "joists": null, - "Jojo": [["M"]], - "Jojo's": null, - "joke": [["M", "Z", "D", "S", "R", "G"]], - "joke's": null, - "jokers": null, - "joked": null, - "jokes": null, - "joker": [["M"]], - "joking": [["Y"]], - "joker's": null, - "jokey": null, - "jokier": null, - "jokiest": null, - "jokily": null, - "jokingly": null, - "Jolee": [["M"]], - "Jolee's": null, - "Joleen": [["M"]], - "Joleen's": null, - "Jolene": [["M"]], - "Jolene's": null, - "Joletta": [["M"]], - "Joletta's": null, - "Jolie": [["M"]], - "Jolie's": null, - "Joliet's": null, - "Joli": [["M"]], - "Joli's": null, - "Joline": [["M"]], - "Joline's": null, - "Jolla": [["M"]], - "Jolla's": null, - "jollification": [["M", "S"]], - "jollification's": null, - "jollifications": null, - "jollily": null, - "jolliness": [["S", "M"]], - "jollinesses": null, - "jolliness's": null, - "jollity": [["M", "S"]], - "jollity's": null, - "jollities": null, - "jolly": [["T", "S", "R", "D", "G", "P"]], - "jolliest": null, - "jollies": null, - "jollier": null, - "jollied": null, - "jollying": null, - "Jolson": [["M"]], - "Jolson's": null, - "jolt": [["D", "R", "G", "Z", "S"]], - "jolted": null, - "jolter": [["M"]], - "jolting": null, - "jolters": null, - "jolts": null, - "jolter's": null, - "Joly": [["M"]], - "Joly's": null, - "Jolyn": [["M"]], - "Jolyn's": null, - "Jolynn": [["M"]], - "Jolynn's": null, - "Jo": [["M", "Y"]], - "Jo's": null, - "Jonah": [["M"]], - "Jonah's": null, - "Jonahs": null, - "Jonas": null, - "Jonathan": [["M"]], - "Jonathan's": null, - "Jonathon": [["M"]], - "Jonathon's": null, - "Jonell": [["M"]], - "Jonell's": null, - "Jone": [["M", "S"]], - "Jone's": null, - "Jones": [["S"]], - "Joneses": null, - "Jonie": [["M"]], - "Jonie's": null, - "Joni": [["M", "S"]], - "Joni's": null, - "Jonis": null, - "Jon": [["M"]], - "Jon's": null, - "jonquil": [["M", "S"]], - "jonquil's": null, - "jonquils": null, - "Jonson": [["M"]], - "Jonson's": null, - "Joplin": [["M"]], - "Joplin's": null, - "Jordain": [["M"]], - "Jordain's": null, - "Jordana": [["M"]], - "Jordana's": null, - "Jordanian": [["S"]], - "Jordanians": null, - "Jordan": [["M"]], - "Jordan's": null, - "Jordanna": [["M"]], - "Jordanna's": null, - "Jordon": [["M"]], - "Jordon's": null, - "Jorey": [["M"]], - "Jorey's": null, - "Jorgan": [["M"]], - "Jorgan's": null, - "Jorge": [["M"]], - "Jorge's": null, - "Jorgensen": [["M"]], - "Jorgensen's": null, - "Jorgenson": [["M"]], - "Jorgenson's": null, - "Jorie": [["M"]], - "Jorie's": null, - "Jori": [["M"]], - "Jori's": null, - "Jorrie": [["M"]], - "Jorrie's": null, - "Jorry": [["M"]], - "Jorry's": null, - "Jory": [["M"]], - "Jory's": null, - "Joscelin": [["M"]], - "Joscelin's": null, - "Josee": [["M"]], - "Josee's": null, - "Josefa": [["M"]], - "Josefa's": null, - "Josefina": [["M"]], - "Josefina's": null, - "Josef": [["M"]], - "Josef's": null, - "Joseito": [["M"]], - "Joseito's": null, - "Jose": [["M"]], - "Jose's": null, - "Josepha": [["M"]], - "Josepha's": null, - "Josephina": [["M"]], - "Josephina's": null, - "Josephine": [["M"]], - "Josephine's": null, - "Joseph": [["M"]], - "Joseph's": null, - "Josephs": null, - "Josephson": [["M"]], - "Josephson's": null, - "Josephus": [["M"]], - "Josephus's": null, - "Josey": [["M"]], - "Josey's": null, - "josh": [["D", "S", "R", "G", "Z"]], - "joshed": null, - "joshes": null, - "josher": [["M"]], - "joshing": null, - "joshers": null, - "josher's": null, - "Joshia": [["M"]], - "Joshia's": null, - "Josh": [["M"]], - "Josh's": null, - "Joshuah": [["M"]], - "Joshuah's": null, - "Joshua": [["M"]], - "Joshua's": null, - "Josiah": [["M"]], - "Josiah's": null, - "Josias": [["M"]], - "Josias's": null, - "Josie": [["M"]], - "Josie's": null, - "Josi": [["M"]], - "Josi's": null, - "Josselyn": [["M"]], - "Josselyn's": null, - "joss": [["M"]], - "joss's": null, - "jostle": [["S", "D", "G"]], - "jostles": null, - "jostled": null, - "jostling": null, - "Josue": [["M"]], - "Josue's": null, - "Josy": [["M"]], - "Josy's": null, - "jot": [["S"]], - "jots": null, - "jotted": null, - "jotter": [["S", "M"]], - "jotters": null, - "jotter's": null, - "jotting": [["S", "M"]], - "jottings": null, - "jotting's": null, - "Joule": [["M"]], - "Joule's": null, - "joule": [["S", "M"]], - "joules": null, - "joule's": null, - "jounce": [["S", "D", "G"]], - "jounces": null, - "jounced": null, - "jouncing": null, - "jouncy": [["R", "T"]], - "jouncier": null, - "jounciest": null, - "Jourdain": [["M"]], - "Jourdain's": null, - "Jourdan": [["M"]], - "Jourdan's": null, - "journalese": [["M", "S"]], - "journalese's": null, - "journaleses": null, - "journal": [["G", "S", "D", "M"]], - "journaling": null, - "journals": null, - "journaled": null, - "journal's": null, - "journalism": [["S", "M"]], - "journalisms": null, - "journalism's": null, - "journalistic": null, - "journalist": [["S", "M"]], - "journalists": null, - "journalist's": null, - "journalize": [["D", "R", "S", "G", "Z"]], - "journalized": [["U"]], - "journalizer": [["M"]], - "journalizes": null, - "journalizing": null, - "journalizers": null, - "unjournalized": null, - "journalizer's": null, - "journey": [["D", "R", "M", "Z", "S", "G", "J"]], - "journeyed": null, - "journeyer": [["M"]], - "journey's": null, - "journeyers": null, - "journeys": null, - "journeying": null, - "journeyings": null, - "journeyer's": null, - "journeyman": [["M"]], - "journeyman's": null, - "journeymen": null, - "jouster": [["M"]], - "jouster's": null, - "joust": [["Z", "S", "M", "R", "D", "G"]], - "jousters": null, - "jousts": null, - "joust's": null, - "jousted": null, - "jousting": null, - "Jovanovich": [["M"]], - "Jovanovich's": null, - "Jove": [["M"]], - "Jove's": null, - "joviality": [["S", "M"]], - "jovialities": null, - "joviality's": null, - "jovial": [["Y"]], - "jovially": null, - "Jovian": null, - "jowl": [["S", "M", "D"]], - "jowls": null, - "jowl's": null, - "jowled": null, - "jowly": [["T", "R"]], - "jowliest": null, - "jowlier": null, - "Joya": [["M"]], - "Joya's": null, - "Joyan": [["M"]], - "Joyan's": null, - "Joyann": [["M"]], - "Joyann's": null, - "Joycean": null, - "Joycelin": [["M"]], - "Joycelin's": null, - "Joyce": [["M"]], - "Joyce's": null, - "Joye": [["M"]], - "Joye's": null, - "joyfuller": null, - "joyfullest": null, - "joyfulness": [["S", "M"]], - "joyfulnesses": null, - "joyfulness's": null, - "joyful": [["P", "Y"]], - "joyfully": null, - "joylessness": [["M", "S"]], - "joylessness's": null, - "joylessnesses": null, - "joyless": [["P", "Y"]], - "joylessly": null, - "Joy": [["M"]], - "Joy's": null, - "joy": [["M", "D", "S", "G"]], - "joy's": null, - "joyed": null, - "joys": null, - "joying": null, - "Joyner": [["M"]], - "Joyner's": null, - "joyousness": [["M", "S"]], - "joyousness's": null, - "joyousnesses": null, - "joyous": [["Y", "P"]], - "joyously": null, - "joyridden": null, - "joyride": [["S", "R", "Z", "M", "G", "J"]], - "joyrides": null, - "joyrider": null, - "joyriders": null, - "joyride's": null, - "joyriding": null, - "joyridings": null, - "joyrode": null, - "joystick": [["S"]], - "joysticks": null, - "Jozef": [["M"]], - "Jozef's": null, - "JP": null, - "Jpn": null, - "Jr": [["M"]], - "Jr's": null, - "j's": null, - "J's": null, - "Jsandye": [["M"]], - "Jsandye's": null, - "Juana": [["M"]], - "Juana's": null, - "Juanita": [["M"]], - "Juanita's": null, - "Juan": [["M"]], - "Juan's": null, - "Juarez": null, - "Jubal": [["M"]], - "Jubal's": null, - "jubilant": [["Y"]], - "jubilantly": null, - "jubilate": [["X", "N", "G", "D", "S"]], - "jubilations": null, - "jubilation": [["M"]], - "jubilating": null, - "jubilated": null, - "jubilates": null, - "jubilation's": null, - "jubilee": [["S", "M"]], - "jubilees": null, - "jubilee's": null, - "Judah": [["M"]], - "Judah's": null, - "Judaic": null, - "Judaical": null, - "Judaism": [["S", "M"]], - "Judaisms": null, - "Judaism's": null, - "Judas": [["S"]], - "Judases": null, - "juddered": null, - "juddering": null, - "Judd": [["M"]], - "Judd's": null, - "Judea": [["M"]], - "Judea's": null, - "Jude": [["M"]], - "Jude's": null, - "judge": [["A", "G", "D", "S"]], - "rejudge": null, - "rejudging": null, - "rejudged": null, - "rejudges": null, - "judging": null, - "judged": null, - "judges": null, - "judger": [["M"]], - "judger's": null, - "judge's": null, - "judgeship": [["S", "M"]], - "judgeships": null, - "judgeship's": null, - "judgmental": [["Y"]], - "judgmentally": null, - "judgment": [["M", "S"]], - "judgment's": null, - "judgments": null, - "judicable": null, - "judicatory": [["S"]], - "judicatories": null, - "judicature": [["M", "S"]], - "judicature's": null, - "judicatures": null, - "judicial": [["Y"]], - "judicially": null, - "judiciary": [["S"]], - "judiciaries": null, - "judicious": [["I", "Y", "P"]], - "injudicious": null, - "injudiciously": null, - "injudiciousness": null, - "judiciously": null, - "judiciousness": [["S", "M", "I"]], - "judiciousnesses": null, - "injudiciousnesses": null, - "judiciousness's": null, - "injudiciousness's": null, - "Judie": [["M"]], - "Judie's": null, - "Judi": [["M", "H"]], - "Judi's": null, - "Judith": [["M"]], - "Juditha": [["M"]], - "Juditha's": null, - "Judith's": null, - "Jud": [["M"]], - "Jud's": null, - "judo": [["M", "S"]], - "judo's": null, - "judos": null, - "Judon": [["M"]], - "Judon's": null, - "Judson": [["M"]], - "Judson's": null, - "Judye": [["M"]], - "Judye's": null, - "Judy": [["M"]], - "Judy's": null, - "jugate": [["F"]], - "jugful": [["S", "M"]], - "jugfuls": null, - "jugful's": null, - "jugged": null, - "Juggernaut": [["M"]], - "Juggernaut's": null, - "juggernaut": [["S", "M"]], - "juggernauts": null, - "juggernaut's": null, - "jugging": null, - "juggler": [["M"]], - "juggler's": null, - "juggle": [["R", "S", "D", "G", "Z"]], - "juggles": null, - "juggled": null, - "juggling": null, - "jugglers": null, - "jugglery": [["M", "S"]], - "jugglery's": null, - "juggleries": null, - "jug": [["M", "S"]], - "jug's": null, - "jugs": null, - "jugular": [["S"]], - "jugulars": null, - "juice": [["G", "M", "Z", "D", "S", "R"]], - "juicing": null, - "juice's": null, - "juicers": null, - "juiced": null, - "juices": null, - "juicer": [["M"]], - "juicer's": null, - "juicily": null, - "juiciness": [["M", "S"]], - "juiciness's": null, - "juicinesses": null, - "juicy": [["T", "R", "P"]], - "juiciest": null, - "juicier": null, - "Juieta": [["M"]], - "Juieta's": null, - "jujitsu": [["M", "S"]], - "jujitsu's": null, - "jujitsus": null, - "jujube": [["S", "M"]], - "jujubes": null, - "jujube's": null, - "juju": [["M"]], - "juju's": null, - "jujutsu's": null, - "jukebox": [["S", "M"]], - "jukeboxes": null, - "jukebox's": null, - "juke": [["G", "S"]], - "juking": null, - "jukes": null, - "Julee": [["M"]], - "Julee's": null, - "Jule": [["M", "S"]], - "Jule's": null, - "Jules": null, - "julep": [["S", "M"]], - "juleps": null, - "julep's": null, - "Julia": [["M"]], - "Julia's": null, - "Juliana": [["M"]], - "Juliana's": null, - "Juliane": [["M"]], - "Juliane's": null, - "Julian": [["M"]], - "Julian's": null, - "Julianna": [["M"]], - "Julianna's": null, - "Julianne": [["M"]], - "Julianne's": null, - "Juliann": [["M"]], - "Juliann's": null, - "Julie": [["M"]], - "Julie's": null, - "julienne": [["G", "S", "D"]], - "julienning": null, - "juliennes": null, - "julienned": null, - "Julienne": [["M"]], - "Julienne's": null, - "Julieta": [["M"]], - "Julieta's": null, - "Juliet": [["M"]], - "Juliet's": null, - "Julietta": [["M"]], - "Julietta's": null, - "Juliette": [["M"]], - "Juliette's": null, - "Juli": [["M"]], - "Juli's": null, - "Julina": [["M"]], - "Julina's": null, - "Juline": [["M"]], - "Juline's": null, - "Julio": [["M"]], - "Julio's": null, - "Julissa": [["M"]], - "Julissa's": null, - "Julita": [["M"]], - "Julita's": null, - "Julius": [["M"]], - "Julius's": null, - "Jul": [["M"]], - "Jul's": null, - "Julys": null, - "July": [["S", "M"]], - "Julies": null, - "July's": null, - "jumble": [["G", "S", "D"]], - "jumbling": null, - "jumbles": null, - "jumbled": null, - "jumbo": [["M", "S"]], - "jumbo's": null, - "jumbos": null, - "jumper": [["M"]], - "jumper's": null, - "jump": [["G", "Z", "D", "R", "S"]], - "jumping": null, - "jumpers": null, - "jumped": null, - "jumps": null, - "jumpily": null, - "jumpiness": [["M", "S"]], - "jumpiness's": null, - "jumpinesses": null, - "jumpsuit": [["S"]], - "jumpsuits": null, - "jumpy": [["P", "T", "R"]], - "jumpiest": null, - "jumpier": null, - "jun": null, - "junco": [["M", "S"]], - "junco's": null, - "juncos": null, - "junction": [["I", "M", "E", "S", "F"]], - "injunction": null, - "injunction's": null, - "injunctions": null, - "junction's": null, - "disjunction's": null, - "conjunction's": null, - "disjunction": null, - "disjunctions": null, - "junctions": null, - "conjunctions": null, - "conjunction": null, - "juncture": [["S", "F", "M"]], - "junctures": null, - "conjunctures": null, - "conjuncture": null, - "conjuncture's": null, - "juncture's": null, - "Juneau": [["M"]], - "Juneau's": null, - "June": [["M", "S"]], - "June's": null, - "Junes": null, - "Junette": [["M"]], - "Junette's": null, - "Jungfrau": [["M"]], - "Jungfrau's": null, - "Jungian": null, - "jungle": [["S", "D", "M"]], - "jungles": null, - "jungled": null, - "jungle's": null, - "Jung": [["M"]], - "Jung's": null, - "Junia": [["M"]], - "Junia's": null, - "Junie": [["M"]], - "Junie's": null, - "Junina": [["M"]], - "Junina's": null, - "juniority": [["M"]], - "juniority's": null, - "junior": [["M", "S"]], - "junior's": null, - "juniors": null, - "Junior": [["S"]], - "Juniors": null, - "juniper": [["S", "M"]], - "junipers": null, - "juniper's": null, - "junkerdom": null, - "Junker": [["S", "M"]], - "Junkers": null, - "Junker's": null, - "junketeer": [["S", "G", "D", "M"]], - "junketeers": null, - "junketeering": null, - "junketeered": null, - "junketeer's": null, - "junket": [["S", "M", "D", "G"]], - "junkets": null, - "junket's": null, - "junketed": null, - "junketing": null, - "junk": [["G", "Z", "D", "R", "M", "S"]], - "junking": null, - "junkers": null, - "junked": null, - "junker": null, - "junk's": null, - "junks": null, - "junkie": [["R", "S", "M", "T"]], - "junkier": null, - "junkies": null, - "junkie's": null, - "junkiest": null, - "junkyard": [["M", "S"]], - "junkyard's": null, - "junkyards": null, - "Jun": [["M"]], - "Jun's": null, - "Juno": [["M"]], - "Juno's": null, - "junta": [["M", "S"]], - "junta's": null, - "juntas": null, - "Jupiter": [["M"]], - "Jupiter's": null, - "Jurassic": null, - "juridic": null, - "juridical": [["Y"]], - "juridically": null, - "juried": null, - "jurisdictional": [["Y"]], - "jurisdictionally": null, - "jurisdiction": [["S", "M"]], - "jurisdictions": null, - "jurisdiction's": null, - "jurisprudence": [["S", "M"]], - "jurisprudences": null, - "jurisprudence's": null, - "jurisprudent": null, - "jurisprudential": [["Y"]], - "jurisprudentially": null, - "juristic": null, - "jurist": [["M", "S"]], - "jurist's": null, - "jurists": null, - "juror": [["M", "S"]], - "juror's": null, - "jurors": null, - "Jurua": [["M"]], - "Jurua's": null, - "jury": [["I", "M", "S"]], - "injury": null, - "injury's": null, - "injuries": null, - "jury's": null, - "juries": null, - "jurying": null, - "juryman": [["M"]], - "juryman's": null, - "jurymen": null, - "jurywoman": [["M"]], - "jurywoman's": null, - "jurywomen": null, - "justed": null, - "Justen": [["M"]], - "Justen's": null, - "juster": [["M"]], - "juster's": null, - "justest": null, - "Justice": [["M"]], - "Justice's": null, - "justice": [["M", "I", "S"]], - "justice's": null, - "injustice's": null, - "injustice": null, - "injustices": null, - "justices": null, - "justiciable": null, - "justifiability": [["M"]], - "justifiability's": null, - "justifiable": [["U"]], - "unjustifiable": null, - "justifiably": [["U"]], - "unjustifiably": null, - "justification": [["M"]], - "justification's": null, - "justified": [["U", "A"]], - "unjustified": null, - "rejustified": null, - "justifier": [["M"]], - "justifier's": null, - "justify": [["G", "D", "R", "S", "X", "Z", "N"]], - "justifying": null, - "justifies": null, - "justifications": null, - "justifiers": null, - "Justina": [["M"]], - "Justina's": null, - "Justine": [["M"]], - "Justine's": null, - "justing": null, - "Justinian": [["M"]], - "Justinian's": null, - "Justin": [["M"]], - "Justin's": null, - "Justinn": [["M"]], - "Justinn's": null, - "Justino": [["M"]], - "Justino's": null, - "Justis": [["M"]], - "Justis's": null, - "justness": [["M", "S"]], - "justness's": [["U"]], - "justnesses": null, - "unjustness's": null, - "justs": null, - "just": [["U", "P", "Y"]], - "unjust": null, - "unjustness": null, - "unjustly": null, - "justly": null, - "Justus": [["M"]], - "Justus's": null, - "jute": [["S", "M"]], - "jutes": null, - "jute's": null, - "Jutish": null, - "Jutland": [["M"]], - "Jutland's": null, - "jut": [["S"]], - "juts": null, - "jutted": null, - "jutting": null, - "Juvenal": [["M"]], - "Juvenal's": null, - "juvenile": [["S", "M"]], - "juveniles": null, - "juvenile's": null, - "juxtapose": [["S", "D", "G"]], - "juxtaposes": null, - "juxtaposed": null, - "juxtaposing": null, - "juxtaposition": [["S", "M"]], - "juxtapositions": null, - "juxtaposition's": null, - "JV": null, - "J": [["X"]], - "Jyoti": [["M"]], - "Jyoti's": null, - "Kaaba": [["M"]], - "Kaaba's": null, - "kabob": [["S", "M"]], - "kabobs": null, - "kabob's": null, - "kaboom": null, - "Kabuki": null, - "kabuki": [["S", "M"]], - "kabukis": null, - "kabuki's": null, - "Kabul": [["M"]], - "Kabul's": null, - "Kacey": [["M"]], - "Kacey's": null, - "Kacie": [["M"]], - "Kacie's": null, - "Kacy": [["M"]], - "Kacy's": null, - "Kaddish": [["M"]], - "Kaddish's": null, - "kaddish": [["S"]], - "kaddishes": null, - "Kaela": [["M"]], - "Kaela's": null, - "kaffeeklatch": null, - "kaffeeklatsch": [["S"]], - "kaffeeklatsches": null, - "Kafkaesque": null, - "Kafka": [["M"]], - "Kafka's": null, - "kaftan's": null, - "Kagoshima": [["M"]], - "Kagoshima's": null, - "Kahaleel": [["M"]], - "Kahaleel's": null, - "Kahlil": [["M"]], - "Kahlil's": null, - "Kahlua": [["M"]], - "Kahlua's": null, - "Kahn": [["M"]], - "Kahn's": null, - "Kaia": [["M"]], - "Kaia's": null, - "Kaifeng": [["M"]], - "Kaifeng's": null, - "Kaila": [["M"]], - "Kaila's": null, - "Kaile": [["M"]], - "Kaile's": null, - "Kailey": [["M"]], - "Kailey's": null, - "Kai": [["M"]], - "Kai's": null, - "Kaine": [["M"]], - "Kaine's": null, - "Kain": [["M"]], - "Kain's": null, - "kaiser": [["M", "S"]], - "kaiser's": null, - "kaisers": null, - "Kaiser": [["S", "M"]], - "Kaisers": null, - "Kaiser's": null, - "Kaitlin": [["M"]], - "Kaitlin's": null, - "Kaitlyn": [["M"]], - "Kaitlyn's": null, - "Kaitlynn": [["M"]], - "Kaitlynn's": null, - "Kaja": [["M"]], - "Kaja's": null, - "Kajar": [["M"]], - "Kajar's": null, - "Kakalina": [["M"]], - "Kakalina's": null, - "Kalahari": [["M"]], - "Kalahari's": null, - "Kala": [["M"]], - "Kala's": null, - "Kalamazoo": [["M"]], - "Kalamazoo's": null, - "Kalashnikov": [["M"]], - "Kalashnikov's": null, - "Kalb": [["M"]], - "Kalb's": null, - "Kaleb": [["M"]], - "Kaleb's": null, - "Kaleena": [["M"]], - "Kaleena's": null, - "kaleidescope": null, - "kaleidoscope": [["S", "M"]], - "kaleidoscopes": null, - "kaleidoscope's": null, - "kaleidoscopic": null, - "kaleidoscopically": null, - "Kale": [["M"]], - "Kale's": null, - "kale": [["M", "S"]], - "kale's": null, - "kales": null, - "Kalgoorlie": [["M"]], - "Kalgoorlie's": null, - "Kalie": [["M"]], - "Kalie's": null, - "Kalila": [["M"]], - "Kalila's": null, - "Kalil": [["M"]], - "Kalil's": null, - "Kali": [["M"]], - "Kali's": null, - "Kalina": [["M"]], - "Kalina's": null, - "Kalinda": [["M"]], - "Kalinda's": null, - "Kalindi": [["M"]], - "Kalindi's": null, - "Kalle": [["M"]], - "Kalle's": null, - "Kalli": [["M"]], - "Kalli's": null, - "Kally": [["M"]], - "Kally's": null, - "Kalmyk": null, - "Kalvin": [["M"]], - "Kalvin's": null, - "Kama": [["M"]], - "Kama's": null, - "Kamchatka": [["M"]], - "Kamchatka's": null, - "Kamehameha": [["M"]], - "Kamehameha's": null, - "Kameko": [["M"]], - "Kameko's": null, - "Kamikaze": [["M", "S"]], - "Kamikaze's": null, - "Kamikazes": null, - "kamikaze": [["S", "M"]], - "kamikazes": null, - "kamikaze's": null, - "Kamilah": [["M"]], - "Kamilah's": null, - "Kamila": [["M"]], - "Kamila's": null, - "Kamillah": [["M"]], - "Kamillah's": null, - "Kampala": [["M"]], - "Kampala's": null, - "Kampuchea": [["M"]], - "Kampuchea's": null, - "Kanchenjunga": [["M"]], - "Kanchenjunga's": null, - "Kandace": [["M"]], - "Kandace's": null, - "Kandahar": [["M"]], - "Kandahar's": null, - "Kandinsky": [["M"]], - "Kandinsky's": null, - "Kandy": [["M"]], - "Kandy's": null, - "Kane": [["M"]], - "Kane's": null, - "kangaroo": [["S", "G", "M", "D"]], - "kangaroos": null, - "kangarooing": null, - "kangaroo's": null, - "kangarooed": null, - "Kania": [["M"]], - "Kania's": null, - "Kankakee": [["M"]], - "Kankakee's": null, - "Kan": [["M", "S"]], - "Kan's": null, - "Kans": null, - "Kannada": [["M"]], - "Kannada's": null, - "Kano": [["M"]], - "Kano's": null, - "Kanpur": [["M"]], - "Kanpur's": null, - "Kansan": [["S"]], - "Kansans": null, - "Kansas": null, - "Kantian": null, - "Kant": [["M"]], - "Kant's": null, - "Kanya": [["M"]], - "Kanya's": null, - "Kaohsiung": [["M"]], - "Kaohsiung's": null, - "kaolinite": [["M"]], - "kaolinite's": null, - "kaolin": [["M", "S"]], - "kaolin's": null, - "kaolins": null, - "Kaplan": [["M"]], - "Kaplan's": null, - "kapok": [["S", "M"]], - "kapoks": null, - "kapok's": null, - "Kaposi": [["M"]], - "Kaposi's": null, - "kappa": [["M", "S"]], - "kappa's": null, - "kappas": null, - "kaput": [["M"]], - "kaput's": null, - "Karachi": [["M"]], - "Karachi's": null, - "Karaganda": [["M"]], - "Karaganda's": null, - "Karakorum": [["M"]], - "Karakorum's": null, - "karakul": [["M", "S"]], - "karakul's": null, - "karakuls": null, - "Karalee": [["M"]], - "Karalee's": null, - "Karalynn": [["M"]], - "Karalynn's": null, - "Kara": [["M"]], - "Kara's": null, - "Karamazov": [["M"]], - "Karamazov's": null, - "karaoke": [["S"]], - "karaokes": null, - "karate": [["M", "S"]], - "karate's": null, - "karates": null, - "karat": [["S", "M"]], - "karats": null, - "karat's": null, - "Karee": [["M"]], - "Karee's": null, - "Kareem": [["M"]], - "Kareem's": null, - "Karel": [["M"]], - "Karel's": null, - "Kare": [["M"]], - "Kare's": null, - "Karena": [["M"]], - "Karena's": null, - "Karenina": [["M"]], - "Karenina's": null, - "Karen": [["M"]], - "Karen's": null, - "Karia": [["M"]], - "Karia's": null, - "Karie": [["M"]], - "Karie's": null, - "Karil": [["M"]], - "Karil's": null, - "Karilynn": [["M"]], - "Karilynn's": null, - "Kari": [["M"]], - "Kari's": null, - "Karim": [["M"]], - "Karim's": null, - "Karina": [["M"]], - "Karina's": null, - "Karine": [["M"]], - "Karine's": null, - "Karin": [["M"]], - "Karin's": null, - "Kariotta": [["M"]], - "Kariotta's": null, - "Karisa": [["M"]], - "Karisa's": null, - "Karissa": [["M"]], - "Karissa's": null, - "Karita": [["M"]], - "Karita's": null, - "Karla": [["M"]], - "Karla's": null, - "Karlan": [["M"]], - "Karlan's": null, - "Karlee": [["M"]], - "Karlee's": null, - "Karleen": [["M"]], - "Karleen's": null, - "Karlene": [["M"]], - "Karlene's": null, - "Karlen": [["M"]], - "Karlen's": null, - "Karlie": [["M"]], - "Karlie's": null, - "Karlik": [["M"]], - "Karlik's": null, - "Karlis": null, - "Karl": [["M", "N", "X"]], - "Karl's": null, - "Karlens": null, - "Karloff": [["M"]], - "Karloff's": null, - "Karlotta": [["M"]], - "Karlotta's": null, - "Karlotte": [["M"]], - "Karlotte's": null, - "Karly": [["M"]], - "Karly's": null, - "Karlyn": [["M"]], - "Karlyn's": null, - "karma": [["S", "M"]], - "karmas": null, - "karma's": null, - "Karmen": [["M"]], - "Karmen's": null, - "karmic": null, - "Karna": [["M"]], - "Karna's": null, - "Karney": [["M"]], - "Karney's": null, - "Karola": [["M"]], - "Karola's": null, - "Karole": [["M"]], - "Karole's": null, - "Karolina": [["M"]], - "Karolina's": null, - "Karoline": [["M"]], - "Karoline's": null, - "Karol": [["M"]], - "Karol's": null, - "Karoly": [["M"]], - "Karoly's": null, - "Karon": [["M"]], - "Karon's": null, - "Karo": [["Y", "M"]], - "Karo's": null, - "Karp": [["M"]], - "Karp's": null, - "Karrah": [["M"]], - "Karrah's": null, - "Karrie": [["M"]], - "Karrie's": null, - "Karroo": [["M"]], - "Karroo's": null, - "Karry": [["M"]], - "Karry's": null, - "kart": [["M", "S"]], - "kart's": null, - "karts": null, - "Karylin": [["M"]], - "Karylin's": null, - "Karyl": [["M"]], - "Karyl's": null, - "Kary": [["M"]], - "Kary's": null, - "Karyn": [["M"]], - "Karyn's": null, - "Kasai": [["M"]], - "Kasai's": null, - "Kasey": [["M"]], - "Kasey's": null, - "Kashmir": [["S", "M"]], - "Kashmirs": null, - "Kashmir's": null, - "Kaspar": [["M"]], - "Kaspar's": null, - "Kasparov": [["M"]], - "Kasparov's": null, - "Kasper": [["M"]], - "Kasper's": null, - "Kass": null, - "Kassandra": [["M"]], - "Kassandra's": null, - "Kassey": [["M"]], - "Kassey's": null, - "Kassia": [["M"]], - "Kassia's": null, - "Kassie": [["M"]], - "Kassie's": null, - "Kassi": [["M"]], - "Kassi's": null, - "katakana": null, - "Katalin": [["M"]], - "Katalin's": null, - "Kata": [["M"]], - "Kata's": null, - "Katee": [["M"]], - "Katee's": null, - "Katelyn": [["M"]], - "Katelyn's": null, - "Kate": [["M"]], - "Kate's": null, - "Katerina": [["M"]], - "Katerina's": null, - "Katerine": [["M"]], - "Katerine's": null, - "Katey": [["M"]], - "Katey's": null, - "Katha": [["M"]], - "Katha's": null, - "Katharina": [["M"]], - "Katharina's": null, - "Katharine": [["M"]], - "Katharine's": null, - "Katharyn": [["M"]], - "Katharyn's": null, - "Kathe": [["M"]], - "Kathe's": null, - "Katherina": [["M"]], - "Katherina's": null, - "Katherine": [["M"]], - "Katherine's": null, - "Katheryn": [["M"]], - "Katheryn's": null, - "Kathiawar": [["M"]], - "Kathiawar's": null, - "Kathie": [["M"]], - "Kathie's": null, - "Kathi": [["M"]], - "Kathi's": null, - "Kathleen": [["M"]], - "Kathleen's": null, - "Kathlin": [["M"]], - "Kathlin's": null, - "Kath": [["M"]], - "Kath's": null, - "Kathmandu": null, - "Kathrine": [["M"]], - "Kathrine's": null, - "Kathryne": [["M"]], - "Kathryne's": null, - "Kathryn": [["M"]], - "Kathryn's": null, - "Kathye": [["M"]], - "Kathye's": null, - "Kathy": [["M"]], - "Kathy's": null, - "Katie": [["M"]], - "Katie's": null, - "Kati": [["M"]], - "Kati's": null, - "Katina": [["M"]], - "Katina's": null, - "Katine": [["M"]], - "Katine's": null, - "Katinka": [["M"]], - "Katinka's": null, - "Katleen": [["M"]], - "Katleen's": null, - "Katlin": [["M"]], - "Katlin's": null, - "Kat": [["M"]], - "Kat's": null, - "Katmai": [["M"]], - "Katmai's": null, - "Katmandu's": null, - "Katowice": [["M"]], - "Katowice's": null, - "Katrina": [["M"]], - "Katrina's": null, - "Katrine": [["M"]], - "Katrine's": null, - "Katrinka": [["M"]], - "Katrinka's": null, - "Kattie": [["M"]], - "Kattie's": null, - "Katti": [["M"]], - "Katti's": null, - "Katuscha": [["M"]], - "Katuscha's": null, - "Katusha": [["M"]], - "Katusha's": null, - "Katya": [["M"]], - "Katya's": null, - "katydid": [["S", "M"]], - "katydids": null, - "katydid's": null, - "Katy": [["M"]], - "Katy's": null, - "Katz": [["M"]], - "Katz's": null, - "Kauai": [["M"]], - "Kauai's": null, - "Kauffman": [["M"]], - "Kauffman's": null, - "Kaufman": [["M"]], - "Kaufman's": null, - "Kaunas": [["M"]], - "Kaunas's": null, - "Kaunda": [["M"]], - "Kaunda's": null, - "Kawabata": [["M"]], - "Kawabata's": null, - "Kawasaki": [["M"]], - "Kawasaki's": null, - "kayak": [["S", "G", "D", "M"]], - "kayaks": null, - "kayaking": null, - "kayaked": null, - "kayak's": null, - "Kaycee": [["M"]], - "Kaycee's": null, - "Kaye": [["M"]], - "Kaye's": null, - "Kayla": [["M"]], - "Kayla's": null, - "Kaylee": [["M"]], - "Kaylee's": null, - "Kayle": [["M"]], - "Kayle's": null, - "Kayley": [["M"]], - "Kayley's": null, - "Kaylil": [["M"]], - "Kaylil's": null, - "Kaylyn": [["M"]], - "Kaylyn's": null, - "Kay": [["M"]], - "Kay's": null, - "Kayne": [["M"]], - "Kayne's": null, - "kayo": [["D", "M", "S", "G"]], - "kayoed": null, - "kayo's": null, - "kayos": null, - "kayoing": null, - "Kazakh": [["M"]], - "Kazakh's": null, - "Kazakhstan": null, - "Kazan": [["M"]], - "Kazan's": null, - "Kazantzakis": [["M"]], - "Kazantzakis's": null, - "kazoo": [["S", "M"]], - "kazoos": null, - "kazoo's": null, - "Kb": null, - "KB": null, - "KC": null, - "kcal": [["M"]], - "kcal's": null, - "kc": [["M"]], - "kc's": null, - "KDE": [["M"]], - "KDE's": null, - "Keane": [["M"]], - "Keane's": null, - "Kean": [["M"]], - "Kean's": null, - "Kearney": [["M"]], - "Kearney's": null, - "Keary": [["M"]], - "Keary's": null, - "Keaton": [["M"]], - "Keaton's": null, - "Keats": [["M"]], - "Keats's": null, - "kebab": [["S", "M"]], - "kebabs": null, - "kebab's": null, - "Keck": [["M"]], - "Keck's": null, - "Keefe": [["M", "R"]], - "Keefe's": null, - "Keefer": [["M"]], - "Keefer's": null, - "Keegan": [["M"]], - "Keegan's": null, - "Keelby": [["M"]], - "Keelby's": null, - "Keeley": [["M"]], - "Keeley's": null, - "keel": [["G", "S", "M", "D", "R"]], - "keeling": null, - "keels": null, - "keel's": null, - "keeled": null, - "keeler": null, - "keelhaul": [["S", "G", "D"]], - "keelhauls": null, - "keelhauling": null, - "keelhauled": null, - "Keelia": [["M"]], - "Keelia's": null, - "Keely": [["M"]], - "Keely's": null, - "Keenan": [["M"]], - "Keenan's": null, - "Keene": [["M"]], - "Keene's": null, - "keener": [["M"]], - "keener's": null, - "keen": [["G", "T", "S", "P", "Y", "D", "R"]], - "keening": [["M"]], - "keenest": null, - "keens": null, - "keenness": [["M", "S"]], - "keenly": null, - "keened": null, - "keening's": null, - "Keen": [["M"]], - "Keen's": null, - "keenness's": null, - "keennesses": null, - "keeper": [["M"]], - "keeper's": null, - "keep": [["G", "Z", "J", "S", "R"]], - "keeping": [["M"]], - "keepers": null, - "keepings": null, - "keeps": null, - "keeping's": null, - "keepsake": [["S", "M"]], - "keepsakes": null, - "keepsake's": null, - "Keewatin": [["M"]], - "Keewatin's": null, - "kegged": null, - "kegging": null, - "keg": [["M", "S"]], - "keg's": null, - "kegs": null, - "Keillor": [["M"]], - "Keillor's": null, - "Keir": [["M"]], - "Keir's": null, - "Keisha": [["M"]], - "Keisha's": null, - "Keith": [["M"]], - "Keith's": null, - "Kelbee": [["M"]], - "Kelbee's": null, - "Kelby": [["M"]], - "Kelby's": null, - "Kelcey": [["M"]], - "Kelcey's": null, - "Kelcie": [["M"]], - "Kelcie's": null, - "Kelci": [["M"]], - "Kelci's": null, - "Kelcy": [["M"]], - "Kelcy's": null, - "Kele": [["M"]], - "Kele's": null, - "Kelila": [["M"]], - "Kelila's": null, - "Kellby": [["M"]], - "Kellby's": null, - "Kellen": [["M"]], - "Kellen's": null, - "Keller": [["M"]], - "Keller's": null, - "Kelley": [["M"]], - "Kelley's": null, - "Kellia": [["M"]], - "Kellia's": null, - "Kellie": [["M"]], - "Kellie's": null, - "Kelli": [["M"]], - "Kelli's": null, - "Kellina": [["M"]], - "Kellina's": null, - "Kellogg": [["M"]], - "Kellogg's": null, - "Kellsie": [["M"]], - "Kellsie's": null, - "Kellyann": [["M"]], - "Kellyann's": null, - "Kelly": [["M"]], - "Kelly's": null, - "kelp": [["G", "Z", "M", "D", "S"]], - "kelping": null, - "kelpers": null, - "kelp's": null, - "kelped": null, - "kelps": null, - "Kelsey": [["M"]], - "Kelsey's": null, - "Kelsi": [["M"]], - "Kelsi's": null, - "Kelsy": [["M"]], - "Kelsy's": null, - "Kelt's": null, - "Kelvin": [["M"]], - "Kelvin's": null, - "kelvin": [["M", "S"]], - "kelvin's": null, - "kelvins": null, - "Kelwin": [["M"]], - "Kelwin's": null, - "Kemerovo": [["M"]], - "Kemerovo's": null, - "Kempis": [["M"]], - "Kempis's": null, - "Kemp": [["M"]], - "Kemp's": null, - "Kendall": [["M"]], - "Kendall's": null, - "Kendal": [["M"]], - "Kendal's": null, - "Kendell": [["M"]], - "Kendell's": null, - "Kendra": [["M"]], - "Kendra's": null, - "Kendre": [["M"]], - "Kendre's": null, - "Kendrick": [["M", "S"]], - "Kendrick's": null, - "Kendricks": null, - "Kenilworth": [["M"]], - "Kenilworth's": null, - "Ken": [["M"]], - "Ken's": null, - "Kenmore": [["M"]], - "Kenmore's": null, - "ken": [["M", "S"]], - "ken's": null, - "kens": null, - "Kenna": [["M"]], - "Kenna's": null, - "Kennan": [["M"]], - "Kennan's": null, - "Kennecott": [["M"]], - "Kennecott's": null, - "kenned": null, - "Kennedy": [["M"]], - "Kennedy's": null, - "kennel": [["G", "S", "M", "D"]], - "kenneling": null, - "kennels": null, - "kennel's": null, - "kenneled": null, - "Kenneth": [["M"]], - "Kenneth's": null, - "Kennett": [["M"]], - "Kennett's": null, - "Kennie": [["M"]], - "Kennie's": null, - "kenning": null, - "Kennith": [["M"]], - "Kennith's": null, - "Kenn": [["M"]], - "Kenn's": null, - "Kenny": [["M"]], - "Kenny's": null, - "keno": [["M"]], - "keno's": null, - "Kenon": [["M"]], - "Kenon's": null, - "Kenosha": [["M"]], - "Kenosha's": null, - "Kensington": [["M"]], - "Kensington's": null, - "Kent": [["M"]], - "Kent's": null, - "Kenton": [["M"]], - "Kenton's": null, - "Kentuckian": [["S"]], - "Kentuckians": null, - "Kentucky": [["M"]], - "Kentucky's": null, - "Kenya": [["M"]], - "Kenya's": null, - "Kenyan": [["S"]], - "Kenyans": null, - "Kenyatta": [["M"]], - "Kenyatta's": null, - "Kenyon": [["M"]], - "Kenyon's": null, - "Keogh": [["M"]], - "Keogh's": null, - "Keokuk": [["M"]], - "Keokuk's": null, - "kepi": [["S", "M"]], - "kepis": null, - "kepi's": null, - "Kepler": [["M"]], - "Kepler's": null, - "kept": null, - "keratin": [["M", "S"]], - "keratin's": null, - "keratins": null, - "kerbside": null, - "Kerby": [["M"]], - "Kerby's": null, - "kerchief": [["M", "D", "S", "G"]], - "kerchief's": null, - "kerchiefed": null, - "kerchiefs": null, - "kerchiefing": null, - "Kerensky": [["M"]], - "Kerensky's": null, - "Kerianne": [["M"]], - "Kerianne's": null, - "Keriann": [["M"]], - "Keriann's": null, - "Keri": [["M"]], - "Keri's": null, - "Kerk": [["M"]], - "Kerk's": null, - "Ker": [["M"]], - "Ker's": null, - "Kermie": [["M"]], - "Kermie's": null, - "Kermit": [["M"]], - "Kermit's": null, - "Kermy": [["M"]], - "Kermy's": null, - "kerned": null, - "kernel": [["G", "S", "M", "D"]], - "kerneling": null, - "kernels": null, - "kernel's": null, - "kerneled": null, - "kerning": null, - "Kern": [["M"]], - "Kern's": null, - "kerosene": [["M", "S"]], - "kerosene's": null, - "kerosenes": null, - "Kerouac": [["M"]], - "Kerouac's": null, - "Kerrie": [["M"]], - "Kerrie's": null, - "Kerrill": [["M"]], - "Kerrill's": null, - "Kerri": [["M"]], - "Kerri's": null, - "Kerrin": [["M"]], - "Kerrin's": null, - "Kerr": [["M"]], - "Kerr's": null, - "Kerry": [["M"]], - "Kerry's": null, - "Kerstin": [["M"]], - "Kerstin's": null, - "Kerwin": [["M"]], - "Kerwin's": null, - "Kerwinn": [["M"]], - "Kerwinn's": null, - "Kesley": [["M"]], - "Kesley's": null, - "Keslie": [["M"]], - "Keslie's": null, - "Kessiah": [["M"]], - "Kessiah's": null, - "Kessia": [["M"]], - "Kessia's": null, - "Kessler": [["M"]], - "Kessler's": null, - "kestrel": [["S", "M"]], - "kestrels": null, - "kestrel's": null, - "ketch": [["M", "S"]], - "ketch's": null, - "ketches": null, - "ketchup": [["S", "M"]], - "ketchups": null, - "ketchup's": null, - "ketone": [["M"]], - "ketone's": null, - "ketosis": [["M"]], - "ketosis's": null, - "Kettering": [["M"]], - "Kettering's": null, - "Kettie": [["M"]], - "Kettie's": null, - "Ketti": [["M"]], - "Ketti's": null, - "kettledrum": [["S", "M"]], - "kettledrums": null, - "kettledrum's": null, - "kettleful": null, - "kettle": [["S", "M"]], - "kettles": null, - "kettle's": null, - "Ketty": [["M"]], - "Ketty's": null, - "Kevan": [["M"]], - "Kevan's": null, - "Keven": [["M"]], - "Keven's": null, - "Kevina": [["M"]], - "Kevina's": null, - "Kevin": [["M"]], - "Kevin's": null, - "Kevlar": null, - "Kev": [["M", "N"]], - "Kev's": null, - "Kevon": [["M"]], - "Kevon's": null, - "Kevorkian": [["M"]], - "Kevorkian's": null, - "Kevyn": [["M"]], - "Kevyn's": null, - "Kewaskum": [["M"]], - "Kewaskum's": null, - "Kewaunee": [["M"]], - "Kewaunee's": null, - "Kewpie": [["M"]], - "Kewpie's": null, - "keyboardist": [["S"]], - "keyboardists": null, - "keyboard": [["R", "D", "M", "Z", "G", "S"]], - "keyboarder": null, - "keyboarded": null, - "keyboard's": null, - "keyboarders": null, - "keyboarding": null, - "keyboards": null, - "keyclick": [["S", "M"]], - "keyclicks": null, - "keyclick's": null, - "keyhole": [["M", "S"]], - "keyhole's": null, - "keyholes": null, - "Key": [["M"]], - "Key's": null, - "Keynesian": [["M"]], - "Keynesian's": null, - "Keynes": [["M"]], - "Keynes's": null, - "keynoter": [["M"]], - "keynoter's": null, - "keynote": [["S", "R", "D", "Z", "M", "G"]], - "keynotes": null, - "keynoted": null, - "keynoters": null, - "keynote's": null, - "keynoting": null, - "keypad": [["M", "S"]], - "keypad's": null, - "keypads": null, - "keypuncher": [["M"]], - "keypuncher's": null, - "keypunch": [["Z", "G", "R", "S", "D"]], - "keypunchers": null, - "keypunching": null, - "keypunches": null, - "keypunched": null, - "keyring": null, - "key": [["S", "G", "M", "D"]], - "keys": null, - "keying": null, - "key's": null, - "keyed": null, - "keystone": [["S", "M"]], - "keystones": null, - "keystone's": null, - "keystroke": [["S", "D", "M", "G"]], - "keystrokes": null, - "keystroked": null, - "keystroke's": null, - "keystroking": null, - "keyword": [["S", "M"]], - "keywords": null, - "keyword's": null, - "k": [["F", "G", "E", "I", "S"]], - "conking": null, - "conks": null, - "king": [["S", "G", "Y", "D", "M"]], - "disking": null, - "inking": null, - "disks": null, - "inks": null, - "ks": null, - "kg": null, - "K": [["G"]], - "King": [["M"]], - "KGB": null, - "Khabarovsk": [["M"]], - "Khabarovsk's": null, - "Khachaturian": [["M"]], - "Khachaturian's": null, - "khaki": [["S", "M"]], - "khakis": null, - "khaki's": null, - "Khalid": [["M"]], - "Khalid's": null, - "Khalil": [["M"]], - "Khalil's": null, - "Khan": [["M"]], - "Khan's": null, - "khan": [["M", "S"]], - "khan's": null, - "khans": null, - "Kharkov": [["M"]], - "Kharkov's": null, - "Khartoum": [["M"]], - "Khartoum's": null, - "Khayyam": [["M"]], - "Khayyam's": null, - "Khmer": [["M"]], - "Khmer's": null, - "Khoisan": [["M"]], - "Khoisan's": null, - "Khomeini": [["M"]], - "Khomeini's": null, - "Khorana": [["M"]], - "Khorana's": null, - "Khrushchev": [["S", "M"]], - "Khrushchevs": null, - "Khrushchev's": null, - "Khufu": [["M"]], - "Khufu's": null, - "Khulna": [["M"]], - "Khulna's": null, - "Khwarizmi": [["M"]], - "Khwarizmi's": null, - "Khyber": [["M"]], - "Khyber's": null, - "kHz": [["M"]], - "kHz's": null, - "KIA": null, - "Kiah": [["M"]], - "Kiah's": null, - "Kial": [["M"]], - "Kial's": null, - "kibble": [["G", "M", "S", "D"]], - "kibbling": null, - "kibble's": null, - "kibbles": null, - "kibbled": null, - "kibbutzim": null, - "kibbutz": [["M"]], - "kibbutz's": null, - "kibitzer": [["M"]], - "kibitzer's": null, - "kibitz": [["G", "R", "S", "D", "Z"]], - "kibitzing": null, - "kibitzes": null, - "kibitzed": null, - "kibitzers": null, - "kibosh": [["G", "M", "S", "D"]], - "kiboshing": null, - "kibosh's": null, - "kiboshes": null, - "kiboshed": null, - "Kickapoo": [["M"]], - "Kickapoo's": null, - "kickback": [["S", "M"]], - "kickbacks": null, - "kickback's": null, - "kickball": [["M", "S"]], - "kickball's": null, - "kickballs": null, - "kicker": [["M"]], - "kicker's": null, - "kick": [["G", "Z", "D", "R", "S"]], - "kicking": null, - "kickers": null, - "kicked": null, - "kicks": null, - "kickoff": [["S", "M"]], - "kickoffs": null, - "kickoff's": null, - "kickstand": [["M", "S"]], - "kickstand's": null, - "kickstands": null, - "kicky": [["R", "T"]], - "kickier": null, - "kickiest": null, - "kidded": null, - "kidder": [["S", "M"]], - "kidders": null, - "kidder's": null, - "kiddie": [["S", "D"]], - "kiddies": null, - "kiddied": null, - "kidding": [["Y", "M"]], - "kiddingly": null, - "kidding's": null, - "kiddish": null, - "Kidd": [["M"]], - "Kidd's": null, - "kiddo": [["S", "M"]], - "kiddos": null, - "kiddo's": null, - "kiddying": null, - "kiddy's": null, - "kidless": null, - "kid": [["M", "S"]], - "kid's": null, - "kids": null, - "kidnaper's": null, - "kidnaping's": null, - "kidnap": [["M", "S", "J"]], - "kidnap's": null, - "kidnaps": null, - "kidnapings": null, - "kidnapped": null, - "kidnapper": [["S", "M"]], - "kidnappers": null, - "kidnapper's": null, - "kidnapping": [["S"]], - "kidnappings": null, - "kidney": [["M", "S"]], - "kidney's": null, - "kidneys": null, - "kidskin": [["S", "M"]], - "kidskins": null, - "kidskin's": null, - "Kieffer": [["M"]], - "Kieffer's": null, - "kielbasa": [["S", "M"]], - "kielbasas": null, - "kielbasa's": null, - "kielbasi": null, - "Kiele": [["M"]], - "Kiele's": null, - "Kiel": [["M"]], - "Kiel's": null, - "Kienan": [["M"]], - "Kienan's": null, - "kier": [["I"]], - "inkier": null, - "Kierkegaard": [["M"]], - "Kierkegaard's": null, - "Kiersten": [["M"]], - "Kiersten's": null, - "Kieth": [["M"]], - "Kieth's": null, - "Kiev": [["M"]], - "Kiev's": null, - "Kigali": [["M"]], - "Kigali's": null, - "Kikelia": [["M"]], - "Kikelia's": null, - "Kikuyu": [["M"]], - "Kikuyu's": null, - "Kilauea": [["M"]], - "Kilauea's": null, - "Kile": [["M"]], - "Kile's": null, - "Kiley": [["M"]], - "Kiley's": null, - "Kilian": [["M"]], - "Kilian's": null, - "Kilimanjaro": [["M"]], - "Kilimanjaro's": null, - "kill": [["B", "J", "G", "Z", "S", "D", "R"]], - "killable": null, - "killings": null, - "killing": [["Y"]], - "killers": null, - "kills": null, - "killed": null, - "killer": [["M"]], - "killdeer": [["S", "M"]], - "killdeers": null, - "killdeer's": null, - "Killebrew": [["M"]], - "Killebrew's": null, - "killer's": null, - "Killian": [["M"]], - "Killian's": null, - "Killie": [["M"]], - "Killie's": null, - "killingly": null, - "killjoy": [["S"]], - "killjoys": null, - "Killy": [["M"]], - "Killy's": null, - "kiln": [["G", "D", "S", "M"]], - "kilning": null, - "kilned": null, - "kilns": null, - "kiln's": null, - "kilobaud": [["M"]], - "kilobaud's": null, - "kilobit": [["S"]], - "kilobits": null, - "kilobuck": null, - "kilobyte": [["S"]], - "kilobytes": null, - "kilocycle": [["M", "S"]], - "kilocycle's": null, - "kilocycles": null, - "kilogauss": [["M"]], - "kilogauss's": null, - "kilogram": [["M", "S"]], - "kilogram's": null, - "kilograms": null, - "kilohertz": [["M"]], - "kilohertz's": null, - "kilohm": [["M"]], - "kilohm's": null, - "kilojoule": [["M", "S"]], - "kilojoule's": null, - "kilojoules": null, - "kiloliter": [["M", "S"]], - "kiloliter's": null, - "kiloliters": null, - "kilometer": [["S", "M"]], - "kilometers": null, - "kilometer's": null, - "kilo": [["S", "M"]], - "kilos": null, - "kilo's": null, - "kiloton": [["S", "M"]], - "kilotons": null, - "kiloton's": null, - "kilovolt": [["S", "M"]], - "kilovolts": null, - "kilovolt's": null, - "kilowatt": [["S", "M"]], - "kilowatts": null, - "kilowatt's": null, - "kiloword": null, - "kilter": [["M"]], - "kilter's": null, - "kilt": [["M", "D", "R", "G", "Z", "S"]], - "kilt's": null, - "kilted": null, - "kilting": null, - "kilters": null, - "kilts": null, - "Ki": [["M"]], - "Ki's": null, - "Kimball": [["M"]], - "Kimball's": null, - "Kimbell": [["M"]], - "Kimbell's": null, - "Kimberlee": [["M"]], - "Kimberlee's": null, - "Kimberley": [["M"]], - "Kimberley's": null, - "Kimberli": [["M"]], - "Kimberli's": null, - "Kimberly": [["M"]], - "Kimberly's": null, - "Kimberlyn": [["M"]], - "Kimberlyn's": null, - "Kimble": [["M"]], - "Kimble's": null, - "Kimbra": [["M"]], - "Kimbra's": null, - "Kim": [["M"]], - "Kim's": null, - "Kimmie": [["M"]], - "Kimmie's": null, - "Kimmi": [["M"]], - "Kimmi's": null, - "Kimmy": [["M"]], - "Kimmy's": null, - "kimono": [["M", "S"]], - "kimono's": null, - "kimonos": null, - "Kincaid": [["M"]], - "Kincaid's": null, - "kinda": null, - "kindergarten": [["M", "S"]], - "kindergarten's": null, - "kindergartens": null, - "kinderg�rtner": [["S", "M"]], - "kinderg�rtners": null, - "kinderg�rtner's": null, - "kinder": [["U"]], - "unkinder": null, - "kindheartedness": [["M", "S"]], - "kindheartedness's": null, - "kindheartednesses": null, - "kindhearted": [["Y", "P"]], - "kindheartedly": null, - "kindle": [["A", "G", "R", "S", "D"]], - "rekindle": null, - "rekindling": null, - "rekindler": null, - "rekindles": null, - "rekindled": null, - "kindling": [["M"]], - "kindler": [["M"]], - "kindles": null, - "kindled": null, - "kindler's": null, - "kindliness": [["S", "M"]], - "kindlinesses": null, - "kindliness's": [["U"]], - "unkindliness's": null, - "kindling's": null, - "kindly": [["T", "U", "P", "R"]], - "kindliest": null, - "unkindly": null, - "unkindliness": null, - "unkindlier": null, - "kindlier": null, - "kindness's": null, - "kindness": [["U", "S"]], - "unkindness": null, - "unkindnesses": null, - "kindnesses": null, - "kind": [["P", "S", "Y", "R", "T"]], - "kinds": null, - "kindest": null, - "kindred": [["S"]], - "kindreds": null, - "kinematic": [["S"]], - "kinematics": [["M"]], - "kinematics's": null, - "kinesics": [["M"]], - "kinesics's": null, - "kine": [["S", "M"]], - "kines": null, - "kine's": null, - "kinesthesis": null, - "kinesthetically": null, - "kinesthetic": [["S"]], - "kinesthetics": null, - "kinetically": null, - "kinetic": [["S"]], - "kinetics": [["M"]], - "kinetics's": null, - "kinfolk": [["S"]], - "kinfolks": null, - "kingbird": [["M"]], - "kingbird's": null, - "kingdom": [["S", "M"]], - "kingdoms": null, - "kingdom's": null, - "kingfisher": [["M", "S"]], - "kingfisher's": null, - "kingfishers": null, - "kinglet": [["M"]], - "kinglet's": null, - "kingliness": [["M"]], - "kingliness's": null, - "kingly": [["T", "P", "R"]], - "kingliest": null, - "kinglier": null, - "King's": null, - "kingpin": [["M", "S"]], - "kingpin's": null, - "kingpins": null, - "Kingsbury": [["M"]], - "Kingsbury's": null, - "kings": null, - "kinging": null, - "kinged": null, - "king's": null, - "kingship": [["S", "M"]], - "kingships": null, - "kingship's": null, - "Kingsley": [["M"]], - "Kingsley's": null, - "Kingsly": [["M"]], - "Kingsly's": null, - "Kingston": [["M"]], - "Kingston's": null, - "Kingstown": [["M"]], - "Kingstown's": null, - "Kingwood": [["M"]], - "Kingwood's": null, - "kink": [["G", "S", "D", "M"]], - "kinking": null, - "kinks": null, - "kinked": null, - "kink's": null, - "kinkily": null, - "kinkiness": [["S", "M"]], - "kinkinesses": null, - "kinkiness's": null, - "kinky": [["P", "R", "T"]], - "kinkier": null, - "kinkiest": null, - "Kin": [["M"]], - "Kin's": null, - "kin": [["M", "S"]], - "kin's": null, - "kins": null, - "Kinna": [["M"]], - "Kinna's": null, - "Kinney": [["M"]], - "Kinney's": null, - "Kinnickinnic": [["M"]], - "Kinnickinnic's": null, - "Kinnie": [["M"]], - "Kinnie's": null, - "Kinny": [["M"]], - "Kinny's": null, - "Kinsey": [["M"]], - "Kinsey's": null, - "kinsfolk": [["S"]], - "kinsfolks": null, - "Kinshasa": [["M"]], - "Kinshasa's": null, - "Kinshasha": [["M"]], - "Kinshasha's": null, - "kinship": [["S", "M"]], - "kinships": null, - "kinship's": null, - "Kinsley": [["M"]], - "Kinsley's": null, - "kinsman": [["M"]], - "kinsman's": null, - "kinsmen": [["M"]], - "kinsmen's": null, - "kinswoman": [["M"]], - "kinswoman's": null, - "kinswomen": null, - "kiosk": [["S", "M"]], - "kiosks": null, - "kiosk's": null, - "Kiowa": [["S", "M"]], - "Kiowas": null, - "Kiowa's": null, - "Kipling": [["M"]], - "Kipling's": null, - "Kip": [["M"]], - "Kip's": null, - "kip": [["M", "S"]], - "kip's": null, - "kips": null, - "Kippar": [["M"]], - "Kippar's": null, - "kipped": null, - "kipper": [["D", "M", "S", "G"]], - "kippered": null, - "kipper's": null, - "kippers": null, - "kippering": null, - "Kipper": [["M"]], - "Kipper's": null, - "Kippie": [["M"]], - "Kippie's": null, - "kipping": null, - "Kipp": [["M", "R"]], - "Kipp's": null, - "Kippy": [["M"]], - "Kippy's": null, - "Kira": [["M"]], - "Kira's": null, - "Kirbee": [["M"]], - "Kirbee's": null, - "Kirbie": [["M"]], - "Kirbie's": null, - "Kirby": [["M"]], - "Kirby's": null, - "Kirchhoff": [["M"]], - "Kirchhoff's": null, - "Kirchner": [["M"]], - "Kirchner's": null, - "Kirchoff": [["M"]], - "Kirchoff's": null, - "Kirghistan": [["M"]], - "Kirghistan's": null, - "Kirghizia": [["M"]], - "Kirghizia's": null, - "Kirghiz": [["M"]], - "Kirghiz's": null, - "Kiribati": null, - "Kiri": [["M"]], - "Kiri's": null, - "Kirinyaga": [["M"]], - "Kirinyaga's": null, - "kirk": [["G", "D", "M", "S"]], - "kirking": null, - "kirked": null, - "kirk's": null, - "kirks": null, - "Kirkland": [["M"]], - "Kirkland's": null, - "Kirk": [["M"]], - "Kirk's": null, - "Kirkpatrick": [["M"]], - "Kirkpatrick's": null, - "Kirkwood": [["M"]], - "Kirkwood's": null, - "Kirov": [["M"]], - "Kirov's": null, - "kirsch": [["S"]], - "kirsches": null, - "Kirsteni": [["M"]], - "Kirsteni's": null, - "Kirsten": [["M"]], - "Kirsten's": null, - "Kirsti": [["M"]], - "Kirsti's": null, - "Kirstin": [["M"]], - "Kirstin's": null, - "Kirstyn": [["M"]], - "Kirstyn's": null, - "Kisangani": [["M"]], - "Kisangani's": null, - "Kishinev": [["M"]], - "Kishinev's": null, - "kismet": [["S", "M"]], - "kismets": null, - "kismet's": null, - "kiss": [["D", "S", "R", "B", "J", "G", "Z"]], - "kissed": null, - "kisses": null, - "kisser": [["M"]], - "kissable": null, - "kissings": null, - "kissing": null, - "kissers": null, - "Kissee": [["M"]], - "Kissee's": null, - "kisser's": null, - "Kissiah": [["M"]], - "Kissiah's": null, - "Kissie": [["M"]], - "Kissie's": null, - "Kissinger": [["M"]], - "Kissinger's": null, - "Kitakyushu": [["M"]], - "Kitakyushu's": null, - "kitbag's": null, - "kitchener": [["M"]], - "kitchener's": null, - "Kitchener": [["M"]], - "Kitchener's": null, - "kitchenette": [["S", "M"]], - "kitchenettes": null, - "kitchenette's": null, - "kitchen": [["G", "D", "R", "M", "S"]], - "kitchening": null, - "kitchened": null, - "kitchen's": null, - "kitchens": null, - "kitchenware": [["S", "M"]], - "kitchenwares": null, - "kitchenware's": null, - "kiter": [["M"]], - "kiter's": null, - "kite": [["S", "M"]], - "kites": null, - "kite's": null, - "kith": [["M", "D", "G"]], - "kith's": null, - "kithed": null, - "kithing": null, - "kiths": null, - "Kit": [["M"]], - "Kit's": null, - "kit": [["M", "D", "R", "G", "S"]], - "kit's": null, - "kited": null, - "kiting": null, - "kits": null, - "kitsch": [["M", "S"]], - "kitsch's": null, - "kitsches": null, - "kitschy": null, - "kitted": null, - "kittenishness": [["M"]], - "kittenishness's": null, - "kittenish": [["Y", "P"]], - "kittenishly": null, - "kitten": [["S", "G", "D", "M"]], - "kittens": null, - "kittening": null, - "kittened": null, - "kitten's": null, - "Kittie": [["M"]], - "Kittie's": null, - "Kitti": [["M"]], - "Kitti's": null, - "kitting": null, - "kittiwakes": null, - "Kitty": [["M"]], - "Kitty's": null, - "kitty": [["S", "M"]], - "kitties": null, - "kitty's": null, - "Kiwanis": [["M"]], - "Kiwanis's": null, - "kiwifruit": [["S"]], - "kiwifruits": null, - "kiwi": [["S", "M"]], - "kiwis": null, - "kiwi's": null, - "Kizzee": [["M"]], - "Kizzee's": null, - "Kizzie": [["M"]], - "Kizzie's": null, - "KKK": null, - "kl": null, - "Klan": [["M"]], - "Klan's": null, - "Klansman": [["M"]], - "Klansman's": null, - "Klara": [["M"]], - "Klara's": null, - "Klarika": [["M"]], - "Klarika's": null, - "Klarrisa": [["M"]], - "Klarrisa's": null, - "Klaus": [["M"]], - "Klaus's": null, - "klaxon": [["M"]], - "klaxon's": null, - "Klee": [["M"]], - "Klee's": null, - "Kleenex": [["S", "M"]], - "Kleenexes": null, - "Kleenex's": null, - "Klein": [["M"]], - "Klein's": null, - "Kleinrock": [["M"]], - "Kleinrock's": null, - "Klemens": [["M"]], - "Klemens's": null, - "Klement": [["M"]], - "Klement's": null, - "Kleon": [["M"]], - "Kleon's": null, - "kleptomaniac": [["S", "M"]], - "kleptomaniacs": null, - "kleptomaniac's": null, - "kleptomania": [["M", "S"]], - "kleptomania's": null, - "kleptomanias": null, - "Kliment": [["M"]], - "Kliment's": null, - "Kline": [["M"]], - "Kline's": null, - "Klingon": [["M"]], - "Klingon's": null, - "Klondike": [["S", "D", "M", "G"]], - "Klondikes": null, - "Klondiked": null, - "Klondike's": null, - "Klondiking": null, - "kludger": [["M"]], - "kludger's": null, - "kludge": [["R", "S", "D", "G", "M", "Z"]], - "kludges": null, - "kludged": null, - "kludging": null, - "kludge's": null, - "kludgers": null, - "kludgey": null, - "klutziness": [["S"]], - "klutzinesses": null, - "klutz": [["S", "M"]], - "klutzes": null, - "klutz's": null, - "klutzy": [["T", "R", "P"]], - "klutziest": null, - "klutzier": null, - "Klux": [["M"]], - "Klux's": null, - "klystron": [["M", "S"]], - "klystron's": null, - "klystrons": null, - "km": null, - "kn": null, - "knacker": [["M"]], - "knacker's": null, - "knack": [["S", "G", "Z", "R", "D", "M"]], - "knacks": null, - "knacking": null, - "knackers": null, - "knacked": null, - "knack's": null, - "knackwurst": [["M", "S"]], - "knackwurst's": null, - "knackwursts": null, - "Knapp": [["M"]], - "Knapp's": null, - "knapsack": [["M", "S"]], - "knapsack's": null, - "knapsacks": null, - "Knauer": [["M"]], - "Knauer's": null, - "knavery": [["M", "S"]], - "knavery's": null, - "knaveries": null, - "knave": [["S", "M"]], - "knaves": null, - "knave's": null, - "knavish": [["Y"]], - "knavishly": null, - "kneader": [["M"]], - "kneader's": null, - "knead": [["G", "Z", "R", "D", "S"]], - "kneading": null, - "kneaders": null, - "kneaded": null, - "kneads": null, - "kneecap": [["M", "S"]], - "kneecap's": null, - "kneecaps": null, - "kneecapped": null, - "kneecapping": null, - "knee": [["D", "S", "M"]], - "kneed": null, - "knees": null, - "knee's": null, - "kneeing": null, - "kneeler": [["M"]], - "kneeler's": null, - "kneel": [["G", "R", "S"]], - "kneeling": null, - "kneels": null, - "kneepad": [["S", "M"]], - "kneepads": null, - "kneepad's": null, - "knell": [["S", "M", "D", "G"]], - "knells": null, - "knell's": null, - "knelled": null, - "knelling": null, - "knelt": null, - "Knesset": [["M"]], - "Knesset's": null, - "knew": null, - "Kngwarreye": [["M"]], - "Kngwarreye's": null, - "Knickerbocker": [["M", "S"]], - "Knickerbocker's": null, - "Knickerbockers": null, - "knickerbocker": [["S"]], - "knickerbockers": null, - "knickknack": [["S", "M"]], - "knickknacks": null, - "knickknack's": null, - "knick": [["Z", "R"]], - "knickers": null, - "knicker": null, - "Knievel": [["M"]], - "Knievel's": null, - "knife": [["D", "S", "G", "M"]], - "knifed": null, - "knifes": null, - "knifing": null, - "knife's": null, - "knighthood": [["M", "S"]], - "knighthood's": null, - "knighthoods": null, - "knightliness": [["M", "S"]], - "knightliness's": null, - "knightlinesses": null, - "knightly": [["P"]], - "Knight": [["M"]], - "Knight's": null, - "knight": [["M", "D", "Y", "S", "G"]], - "knight's": null, - "knighted": null, - "knights": null, - "knighting": null, - "knish": [["M", "S"]], - "knish's": null, - "knishes": null, - "knit": [["A", "U"]], - "reknit": null, - "unknit": null, - "knits": null, - "knitted": null, - "knitter": [["M", "S"]], - "knitter's": null, - "knitters": null, - "knitting": [["S", "M"]], - "knittings": null, - "knitting's": null, - "knitwear": [["M"]], - "knitwear's": null, - "knives": [["M"]], - "knives's": null, - "knobbly": null, - "knobby": [["R", "T"]], - "knobbier": null, - "knobbiest": null, - "Knobeloch": [["M"]], - "Knobeloch's": null, - "knob": [["M", "S"]], - "knob's": null, - "knobs": null, - "knockabout": [["M"]], - "knockabout's": null, - "knockdown": [["S"]], - "knockdowns": null, - "knocker": [["M"]], - "knocker's": null, - "knock": [["G", "Z", "S", "J", "R", "D"]], - "knocking": null, - "knockers": null, - "knocks": null, - "knockings": null, - "knocked": null, - "knockoff": [["S"]], - "knockoffs": null, - "knockout": [["M", "S"]], - "knockout's": null, - "knockouts": null, - "knockwurst's": null, - "knoll": [["M", "D", "S", "G"]], - "knoll's": null, - "knolled": null, - "knolls": null, - "knolling": null, - "Knopf": [["M"]], - "Knopf's": null, - "Knossos": [["M"]], - "Knossos's": null, - "knothole": [["S", "M"]], - "knotholes": null, - "knothole's": null, - "knot": [["M", "S"]], - "knot's": null, - "knots": null, - "knotted": null, - "knottiness": [["M"]], - "knottiness's": null, - "knotting": [["M"]], - "knotting's": null, - "knotty": [["T", "P", "R"]], - "knottiest": null, - "knottier": null, - "knowable": [["U"]], - "unknowable": [["S"]], - "knower": [["M"]], - "knower's": null, - "know": [["G", "R", "B", "S", "J"]], - "knowing": [["R", "Y", "T"]], - "knows": null, - "knowings": [["U"]], - "knowhow": null, - "knowingly": [["U"]], - "unknowingly": null, - "knowinger": null, - "knowingest": null, - "unknowings": null, - "knowledgeableness": [["M"]], - "knowledgeableness's": null, - "knowledgeable": [["P"]], - "knowledgeably": null, - "knowledge": [["S", "M"]], - "knowledges": null, - "knowledge's": null, - "Knowles": null, - "known": [["S", "U"]], - "knowns": null, - "unknowns": null, - "unknown": null, - "Knox": [["M"]], - "Knox's": null, - "Knoxville": [["M"]], - "Knoxville's": null, - "knuckleball": [["R"]], - "knuckleballer": null, - "knuckle": [["D", "S", "M", "G"]], - "knuckled": null, - "knuckles": null, - "knuckle's": null, - "knuckling": null, - "knuckleduster": null, - "knucklehead": [["M", "S"]], - "knucklehead's": null, - "knuckleheads": null, - "Knudsen": [["M"]], - "Knudsen's": null, - "Knudson": [["M"]], - "Knudson's": null, - "knurl": [["D", "S", "G"]], - "knurled": null, - "knurls": null, - "knurling": null, - "Knuth": [["M"]], - "Knuth's": null, - "Knutsen": [["M"]], - "Knutsen's": null, - "Knutson": [["M"]], - "Knutson's": null, - "KO": null, - "koala": [["S", "M"]], - "koalas": null, - "koala's": null, - "Kobayashi": [["M"]], - "Kobayashi's": null, - "Kobe": [["M"]], - "Kobe's": null, - "Kochab": [["M"]], - "Kochab's": null, - "Koch": [["M"]], - "Koch's": null, - "Kodachrome": [["M"]], - "Kodachrome's": null, - "Kodak": [["S", "M"]], - "Kodaks": null, - "Kodak's": null, - "Kodaly": [["M"]], - "Kodaly's": null, - "Kodiak": [["M"]], - "Kodiak's": null, - "Koenig": [["M"]], - "Koenig's": null, - "Koenigsberg": [["M"]], - "Koenigsberg's": null, - "Koenraad": [["M"]], - "Koenraad's": null, - "Koestler": [["M"]], - "Koestler's": null, - "Kohinoor": [["M"]], - "Kohinoor's": null, - "Kohler": [["M"]], - "Kohler's": null, - "Kohl": [["M", "R"]], - "Kohl's": null, - "kohlrabies": null, - "kohlrabi": [["M"]], - "kohlrabi's": null, - "kola": [["S", "M"]], - "kolas": null, - "kola's": null, - "Kolyma": [["M"]], - "Kolyma's": null, - "Kommunizma": [["M"]], - "Kommunizma's": null, - "Kong": [["M"]], - "Kong's": null, - "Kongo": [["M"]], - "Kongo's": null, - "Konrad": [["M"]], - "Konrad's": null, - "Konstance": [["M"]], - "Konstance's": null, - "Konstantine": [["M"]], - "Konstantine's": null, - "Konstantin": [["M"]], - "Konstantin's": null, - "Konstanze": [["M"]], - "Konstanze's": null, - "kookaburra": [["S", "M"]], - "kookaburras": null, - "kookaburra's": null, - "kook": [["G", "D", "M", "S"]], - "kooking": null, - "kooked": null, - "kook's": null, - "kooks": null, - "kookiness": [["S"]], - "kookinesses": null, - "kooky": [["P", "R", "T"]], - "kookier": null, - "kookiest": null, - "Koo": [["M"]], - "Koo's": null, - "Koontz": [["M"]], - "Koontz's": null, - "kopeck": [["M", "S"]], - "kopeck's": null, - "kopecks": null, - "Koppers": [["M"]], - "Koppers's": null, - "Koralle": [["M"]], - "Koralle's": null, - "Koral": [["M"]], - "Koral's": null, - "Kora": [["M"]], - "Kora's": null, - "Koranic": null, - "Koran": [["S", "M"]], - "Korans": null, - "Koran's": null, - "Kordula": [["M"]], - "Kordula's": null, - "Korea": [["M"]], - "Korea's": null, - "Korean": [["S"]], - "Koreans": null, - "Korella": [["M"]], - "Korella's": null, - "Kore": [["M"]], - "Kore's": null, - "Koren": [["M"]], - "Koren's": null, - "Koressa": [["M"]], - "Koressa's": null, - "Korey": [["M"]], - "Korey's": null, - "Korie": [["M"]], - "Korie's": null, - "Kori": [["M"]], - "Kori's": null, - "Kornberg": [["M"]], - "Kornberg's": null, - "Korney": [["M"]], - "Korney's": null, - "Korrie": [["M"]], - "Korrie's": null, - "Korry": [["M"]], - "Korry's": null, - "Kort": [["M"]], - "Kort's": null, - "Kory": [["M"]], - "Kory's": null, - "Korzybski": [["M"]], - "Korzybski's": null, - "Kosciusko": [["M"]], - "Kosciusko's": null, - "kosher": [["D", "G", "S"]], - "koshered": null, - "koshering": null, - "koshers": null, - "Kossuth": [["M"]], - "Kossuth's": null, - "Kosygin": [["M"]], - "Kosygin's": null, - "Kovacs": [["M"]], - "Kovacs's": null, - "Kowalewski": [["M"]], - "Kowalewski's": null, - "Kowalski": [["M"]], - "Kowalski's": null, - "Kowloon": [["M"]], - "Kowloon's": null, - "kowtow": [["S", "G", "D"]], - "kowtows": null, - "kowtowing": null, - "kowtowed": null, - "KP": null, - "kph": null, - "kraal": [["S", "M", "D", "G"]], - "kraals": null, - "kraal's": null, - "kraaled": null, - "kraaling": null, - "Kraemer": [["M"]], - "Kraemer's": null, - "kraft": [["M"]], - "kraft's": null, - "Kraft": [["M"]], - "Kraft's": null, - "Krakatau's": null, - "Krakatoa": [["M"]], - "Krakatoa's": null, - "Krakow": [["M"]], - "Krakow's": null, - "Kramer": [["M"]], - "Kramer's": null, - "Krasnodar": [["M"]], - "Krasnodar's": null, - "Krasnoyarsk": [["M"]], - "Krasnoyarsk's": null, - "Krause": [["M"]], - "Krause's": null, - "kraut": [["S", "!"]], - "krauts": null, - "Krebs": [["M"]], - "Krebs's": null, - "Kremlin": [["M"]], - "Kremlin's": null, - "Kremlinologist": [["M", "S"]], - "Kremlinologist's": null, - "Kremlinologists": null, - "Kremlinology": [["M", "S"]], - "Kremlinology's": null, - "Kremlinologies": null, - "Kresge": [["M"]], - "Kresge's": null, - "Krieger": [["M"]], - "Krieger's": null, - "kriegspiel": [["M"]], - "kriegspiel's": null, - "krill": [["M", "S"]], - "krill's": null, - "krills": null, - "Kringle": [["M"]], - "Kringle's": null, - "Krisha": [["M"]], - "Krisha's": null, - "Krishnah": [["M"]], - "Krishnah's": null, - "Krishna": [["M"]], - "Krishna's": null, - "Kris": [["M"]], - "Kris's": null, - "Krispin": [["M"]], - "Krispin's": null, - "Krissie": [["M"]], - "Krissie's": null, - "Krissy": [["M"]], - "Krissy's": null, - "Kristal": [["M"]], - "Kristal's": null, - "Krista": [["M"]], - "Krista's": null, - "Kristan": [["M"]], - "Kristan's": null, - "Kristel": [["M"]], - "Kristel's": null, - "Kriste": [["M"]], - "Kriste's": null, - "Kristen": [["M"]], - "Kristen's": null, - "Kristian": [["M"]], - "Kristian's": null, - "Kristie": [["M"]], - "Kristie's": null, - "Kristien": [["M"]], - "Kristien's": null, - "Kristi": [["M", "N"]], - "Kristi's": null, - "Kristina": [["M"]], - "Kristina's": null, - "Kristine": [["M"]], - "Kristine's": null, - "Kristin": [["M"]], - "Kristin's": null, - "Kristofer": [["M"]], - "Kristofer's": null, - "Kristoffer": [["M"]], - "Kristoffer's": null, - "Kristofor": [["M"]], - "Kristofor's": null, - "Kristoforo": [["M"]], - "Kristoforo's": null, - "Kristo": [["M", "S"]], - "Kristo's": null, - "Kristos": null, - "Kristopher": [["M"]], - "Kristopher's": null, - "Kristy": [["M"]], - "Kristy's": null, - "Kristyn": [["M"]], - "Kristyn's": null, - "Kr": [["M"]], - "Kr's": null, - "Kroc": [["M"]], - "Kroc's": null, - "Kroger": [["M"]], - "Kroger's": null, - "kr�na": [["M"]], - "kr�na's": null, - "Kronecker": [["M"]], - "Kronecker's": null, - "krone": [["R", "M"]], - "kroner": null, - "krone's": null, - "kronor": null, - "kr�nur": null, - "Kropotkin": [["M"]], - "Kropotkin's": null, - "Krueger": [["M"]], - "Krueger's": null, - "Kruger": [["M"]], - "Kruger's": null, - "Krugerrand": [["S"]], - "Krugerrands": null, - "Krupp": [["M"]], - "Krupp's": null, - "Kruse": [["M"]], - "Kruse's": null, - "krypton": [["S", "M"]], - "kryptons": null, - "krypton's": null, - "Krystalle": [["M"]], - "Krystalle's": null, - "Krystal": [["M"]], - "Krystal's": null, - "Krysta": [["M"]], - "Krysta's": null, - "Krystle": [["M"]], - "Krystle's": null, - "Krystyna": [["M"]], - "Krystyna's": null, - "K's": null, - "KS": null, - "k's": [["I", "E"]], - "ink's": null, - "disk's": null, - "kt": null, - "Kublai": [["M"]], - "Kublai's": null, - "Kubrick": [["M"]], - "Kubrick's": null, - "kuchen": [["M", "S"]], - "kuchen's": null, - "kuchens": null, - "kudos": [["M"]], - "kudos's": null, - "kudzu": [["S", "M"]], - "kudzus": null, - "kudzu's": null, - "Kuenning": [["M"]], - "Kuenning's": null, - "Kuhn": [["M"]], - "Kuhn's": null, - "Kuibyshev": [["M"]], - "Kuibyshev's": null, - "Ku": [["M"]], - "Ku's": null, - "Kumar": [["M"]], - "Kumar's": null, - "kumquat": [["S", "M"]], - "kumquats": null, - "kumquat's": null, - "Kunming": [["M"]], - "Kunming's": null, - "Kuomintang": [["M"]], - "Kuomintang's": null, - "Kurdish": [["M"]], - "Kurdish's": null, - "Kurdistan": [["S", "M"]], - "Kurdistans": null, - "Kurdistan's": null, - "Kurd": [["S", "M"]], - "Kurds": null, - "Kurd's": null, - "Kurosawa": [["M"]], - "Kurosawa's": null, - "Kurtis": [["M"]], - "Kurtis's": null, - "Kurt": [["M"]], - "Kurt's": null, - "kurtosis": [["M"]], - "kurtosis's": null, - "Kusch": [["M"]], - "Kusch's": null, - "Kuwaiti": [["S", "M"]], - "Kuwaitis": null, - "Kuwaiti's": null, - "Kuwait": [["M"]], - "Kuwait's": null, - "Kuznetsk": [["M"]], - "Kuznetsk's": null, - "Kuznets": [["M"]], - "Kuznets's": null, - "kvetch": [["D", "S", "G"]], - "kvetched": null, - "kvetches": null, - "kvetching": null, - "kw": null, - "kW": null, - "Kwakiutl": [["M"]], - "Kwakiutl's": null, - "Kwangchow's": null, - "Kwangju": [["M"]], - "Kwangju's": null, - "Kwanzaa": [["S"]], - "Kwanzaas": null, - "kWh": null, - "KY": null, - "Kyla": [["M"]], - "Kyla's": null, - "kyle": [["M"]], - "kyle's": null, - "Kyle": [["M"]], - "Kyle's": null, - "Kylen": [["M"]], - "Kylen's": null, - "Kylie": [["M"]], - "Kylie's": null, - "Kylila": [["M"]], - "Kylila's": null, - "Kylynn": [["M"]], - "Kylynn's": null, - "Ky": [["M", "H"]], - "Ky's": null, - "Kym": [["M"]], - "Kym's": null, - "Kynthia": [["M"]], - "Kynthia's": null, - "Kyoto": [["M"]], - "Kyoto's": null, - "Kyrgyzstan": null, - "Kyrstin": [["M"]], - "Kyrstin's": null, - "Kyushu": [["M"]], - "Kyushu's": null, - "L": null, - "LA": null, - "Laban": [["M"]], - "Laban's": null, - "labeled": [["U"]], - "unlabeled": null, - "labeler": [["M"]], - "labeler's": null, - "label": [["G", "A", "Z", "R", "D", "S"]], - "labeling": null, - "relabeling": null, - "relabel": null, - "relabelers": null, - "relabeler": null, - "relabeled": null, - "relabels": null, - "labelers": null, - "labels": null, - "labellings": [["A"]], - "relabellings": null, - "label's": null, - "labial": [["Y", "S"]], - "labially": null, - "labials": null, - "labia": [["M"]], - "labia's": null, - "labile": null, - "labiodental": null, - "labium": [["M"]], - "labium's": null, - "laboratory": [["M", "S"]], - "laboratory's": null, - "laboratories": null, - "laboredness": [["M"]], - "laboredness's": null, - "labored": [["P", "M", "Y"]], - "labored's": [["U"]], - "laboredly": null, - "unlabored's": null, - "laborer": [["M"]], - "laborer's": null, - "laboring": [["M", "Y"]], - "laboring's": null, - "laboringly": null, - "laborings": [["U"]], - "unlaborings": null, - "laboriousness": [["M", "S"]], - "laboriousness's": null, - "laboriousnesses": null, - "laborious": [["P", "Y"]], - "laboriously": null, - "labor": [["R", "D", "M", "J", "S", "Z", "G"]], - "labor's": null, - "labors": null, - "laborers": null, - "laborsaving": null, - "Labradorean": [["S"]], - "Labradoreans": null, - "Labrador": [["S", "M"]], - "Labradors": null, - "Labrador's": null, - "lab": [["S", "M"]], - "labs": null, - "lab's": null, - "Lab": [["S", "M"]], - "Labs": null, - "Lab's": null, - "laburnum": [["S", "M"]], - "laburnums": null, - "laburnum's": null, - "labyrinthine": null, - "labyrinth": [["M"]], - "labyrinth's": null, - "labyrinths": null, - "laced": [["U"]], - "unlaced": null, - "Lacee": [["M"]], - "Lacee's": null, - "lace": [["M", "S"]], - "lace's": null, - "laces": [["U"]], - "lacerate": [["N", "G", "V", "X", "D", "S"]], - "laceration": [["M"]], - "lacerating": null, - "lacerative": null, - "lacerations": null, - "lacerated": null, - "lacerates": null, - "laceration's": null, - "lacer": [["M"]], - "lacer's": null, - "unlaces": null, - "lacewing": [["M", "S"]], - "lacewing's": null, - "lacewings": null, - "Lacey": [["M"]], - "Lacey's": null, - "Lachesis": [["M"]], - "Lachesis's": null, - "lachrymal": [["S"]], - "lachrymals": null, - "lachrymose": null, - "Lacie": [["M"]], - "Lacie's": null, - "lacing": [["M"]], - "lacing's": null, - "lackadaisic": null, - "lackadaisical": [["Y"]], - "lackadaisically": null, - "Lackawanna": [["M"]], - "Lackawanna's": null, - "lacker": [["M"]], - "lacker's": null, - "lackey": [["S", "M", "D", "G"]], - "lackeys": null, - "lackey's": null, - "lackeyed": null, - "lackeying": null, - "lack": [["G", "R", "D", "M", "S"]], - "lacking": null, - "lacked": null, - "lack's": null, - "lacks": null, - "lackluster": [["S"]], - "lacklusters": null, - "Lac": [["M"]], - "Lac's": null, - "laconic": null, - "laconically": null, - "lacquerer": [["M"]], - "lacquerer's": null, - "lacquer": [["Z", "G", "D", "R", "M", "S"]], - "lacquerers": null, - "lacquering": null, - "lacquered": null, - "lacquer's": null, - "lacquers": null, - "lacrosse": [["M", "S"]], - "lacrosse's": null, - "lacrosses": null, - "lac": [["S", "G", "M", "D", "R"]], - "lacs": null, - "lac's": null, - "lactate": [["M", "N", "G", "S", "D", "X"]], - "lactate's": null, - "lactation": [["M"]], - "lactating": null, - "lactates": null, - "lactated": null, - "lactations": null, - "lactational": [["Y"]], - "lactationally": null, - "lactation's": null, - "lacteal": null, - "lactic": null, - "lactose": [["M", "S"]], - "lactose's": null, - "lactoses": null, - "lacunae": null, - "lacuna": [["M"]], - "lacuna's": null, - "Lacy": [["M"]], - "Lacy's": null, - "lacy": [["R", "T"]], - "lacier": null, - "laciest": null, - "ladder": [["G", "D", "M", "S"]], - "laddering": null, - "laddered": null, - "ladder's": null, - "ladders": null, - "laddie": [["M", "S"]], - "laddie's": null, - "laddies": null, - "laded": [["U"]], - "unladed": null, - "ladened": null, - "ladening": null, - "laden": [["U"]], - "unladen": null, - "lade": [["S"]], - "lades": null, - "lading": [["M"]], - "lading's": null, - "ladle": [["S", "D", "G", "M"]], - "ladles": null, - "ladled": null, - "ladling": null, - "ladle's": null, - "Ladoga": [["M"]], - "Ladoga's": null, - "Ladonna": [["M"]], - "Ladonna's": null, - "lad": [["X", "G", "S", "J", "M", "N", "D"]], - "ladens": null, - "lads": null, - "ladings": null, - "lad's": null, - "ladybird": [["S", "M"]], - "ladybirds": null, - "ladybird's": null, - "ladybug": [["M", "S"]], - "ladybug's": null, - "ladybugs": null, - "ladyfinger": [["S", "M"]], - "ladyfingers": null, - "ladyfinger's": null, - "ladylike": [["U"]], - "unladylike": null, - "ladylove": [["M", "S"]], - "ladylove's": null, - "ladyloves": null, - "Ladyship": [["M", "S"]], - "Ladyship's": null, - "Ladyships": null, - "ladyship": [["S", "M"]], - "ladyships": null, - "ladyship's": null, - "lady": [["S", "M"]], - "ladies": null, - "lady's": null, - "Lady": [["S", "M"]], - "Ladies": null, - "Lady's": null, - "Laetitia": [["M"]], - "Laetitia's": null, - "laetrile": [["S"]], - "laetriles": null, - "Lafayette": [["M"]], - "Lafayette's": null, - "Lafitte": [["M"]], - "Lafitte's": null, - "lager": [["D", "M", "G"]], - "lagered": null, - "lager's": null, - "lagering": null, - "laggard": [["M", "Y", "S", "P"]], - "laggard's": null, - "laggardly": null, - "laggards": null, - "laggardness": [["M"]], - "laggardness's": null, - "lagged": null, - "lagging": [["M", "S"]], - "lagging's": null, - "laggings": null, - "lagniappe": [["S", "M"]], - "lagniappes": null, - "lagniappe's": null, - "lagoon": [["M", "S"]], - "lagoon's": null, - "lagoons": null, - "Lagos": [["M"]], - "Lagos's": null, - "Lagrange": [["M"]], - "Lagrange's": null, - "Lagrangian": [["M"]], - "Lagrangian's": null, - "Laguerre": [["M"]], - "Laguerre's": null, - "Laguna": [["M"]], - "Laguna's": null, - "lag": [["Z", "S", "R"]], - "lagers": null, - "lags": null, - "Lahore": [["M"]], - "Lahore's": null, - "laid": [["A", "I"]], - "relaid": null, - "inlaid": null, - "Laidlaw": [["M"]], - "Laidlaw's": null, - "lain": null, - "Laina": [["M"]], - "Laina's": null, - "Lainey": [["M"]], - "Lainey's": null, - "Laird": [["M"]], - "Laird's": null, - "laird": [["M", "S"]], - "laird's": null, - "lairds": null, - "lair": [["G", "D", "M", "S"]], - "lairing": null, - "laired": null, - "lair's": null, - "lairs": null, - "laissez": null, - "laity": [["S", "M"]], - "laities": null, - "laity's": null, - "Laius": [["M"]], - "Laius's": null, - "lake": [["D", "S", "R", "M", "G"]], - "laked": null, - "lakes": null, - "laker": [["M"]], - "lake's": null, - "laking": null, - "Lakehurst": [["M"]], - "Lakehurst's": null, - "Lakeisha": [["M"]], - "Lakeisha's": null, - "laker's": null, - "lakeside": null, - "Lakewood": [["M"]], - "Lakewood's": null, - "Lakisha": [["M"]], - "Lakisha's": null, - "Lakshmi": [["M"]], - "Lakshmi's": null, - "lallygagged": null, - "lallygagging": null, - "lallygag": [["S"]], - "lallygags": null, - "Lalo": [["M"]], - "Lalo's": null, - "La": [["M"]], - "La's": null, - "Lamaism": [["S", "M"]], - "Lamaisms": null, - "Lamaism's": null, - "Lamarck": [["M"]], - "Lamarck's": null, - "Lamar": [["M"]], - "Lamar's": null, - "lamasery": [["M", "S"]], - "lamasery's": null, - "lamaseries": null, - "lama": [["S", "M"]], - "lamas": null, - "lama's": null, - "Lamaze": null, - "lambada": [["S"]], - "lambadas": null, - "lambaste": [["S", "D", "G"]], - "lambastes": null, - "lambasted": null, - "lambasting": null, - "lambda": [["S", "M"]], - "lambdas": null, - "lambda's": null, - "lambency": [["M", "S"]], - "lambency's": null, - "lambencies": null, - "lambent": [["Y"]], - "lambently": null, - "Lambert": [["M"]], - "Lambert's": null, - "lambkin": [["M", "S"]], - "lambkin's": null, - "lambkins": null, - "Lamb": [["M"]], - "Lamb's": null, - "Lamborghini": [["M"]], - "Lamborghini's": null, - "lambskin": [["M", "S"]], - "lambskin's": null, - "lambskins": null, - "lamb": [["S", "R", "D", "M", "G"]], - "lambs": null, - "lamber": null, - "lambed": null, - "lamb's": null, - "lambing": null, - "lambswool": null, - "lamebrain": [["S", "M"]], - "lamebrains": null, - "lamebrain's": null, - "lamed": [["M"]], - "lamed's": null, - "lameness": [["M", "S"]], - "lameness's": null, - "lamenesses": null, - "lamentableness": [["M"]], - "lamentableness's": null, - "lamentable": [["P"]], - "lamentably": null, - "lamentation": [["S", "M"]], - "lamentations": null, - "lamentation's": null, - "lament": [["D", "G", "S", "B"]], - "lamented": [["U"]], - "lamenting": null, - "laments": null, - "unlamented": null, - "lame": [["S", "P", "Y"]], - "lames": null, - "lamely": null, - "la": [["M", "H", "L", "G"]], - "la's": null, - "lath": [["M", "S", "R", "D", "G", "Z"]], - "laing": null, - "laminae": null, - "lamina": [["M"]], - "lamina's": null, - "laminar": null, - "laminate": [["X", "N", "G", "S", "D"]], - "laminations": null, - "lamination": [["M"]], - "laminating": null, - "laminates": null, - "laminated": null, - "lamination's": null, - "lam": [["M", "D", "R", "S", "T", "G"]], - "lam's": null, - "lamer": null, - "lams": null, - "lamest": null, - "laming": null, - "lammed": null, - "lammer": null, - "lamming": null, - "Lammond": [["M"]], - "Lammond's": null, - "Lamond": [["M"]], - "Lamond's": null, - "Lamont": [["M"]], - "Lamont's": null, - "L'Amour": null, - "lampblack": [["S", "M"]], - "lampblacks": null, - "lampblack's": null, - "lamplighter": [["M"]], - "lamplighter's": null, - "lamplight": [["Z", "R", "M", "S"]], - "lamplighters": null, - "lamplight's": null, - "lamplights": null, - "lampooner": [["M"]], - "lampooner's": null, - "lampoon": [["R", "D", "M", "G", "S"]], - "lampooned": null, - "lampoon's": null, - "lampooning": null, - "lampoons": null, - "Lamport": [["M"]], - "Lamport's": null, - "lamppost": [["S", "M"]], - "lampposts": null, - "lamppost's": null, - "lamprey": [["M", "S"]], - "lamprey's": null, - "lampreys": null, - "lamp": [["S", "G", "M", "R", "D"]], - "lamps": null, - "lamping": null, - "lamp's": null, - "lamper": null, - "lamped": null, - "lampshade": [["M", "S"]], - "lampshade's": null, - "lampshades": null, - "LAN": null, - "Lanae": [["M"]], - "Lanae's": null, - "Lanai": [["M"]], - "Lanai's": null, - "lanai": [["S", "M"]], - "lanais": null, - "lanai's": null, - "Lana": [["M"]], - "Lana's": null, - "Lancashire": [["M"]], - "Lancashire's": null, - "Lancaster": [["M"]], - "Lancaster's": null, - "Lancelot": [["M"]], - "Lancelot's": null, - "Lance": [["M"]], - "Lance's": null, - "lancer": [["M"]], - "lancer's": null, - "lance": [["S", "R", "D", "G", "M", "Z"]], - "lances": null, - "lanced": null, - "lancing": null, - "lance's": null, - "lancers": null, - "lancet": [["M", "S"]], - "lancet's": null, - "lancets": null, - "landau": [["M", "S"]], - "landau's": null, - "landaus": null, - "lander": [["I"]], - "landfall": [["S", "M"]], - "landfalls": null, - "landfall's": null, - "landfill": [["D", "S", "G"]], - "landfilled": null, - "landfills": null, - "landfilling": null, - "landforms": null, - "landholder": [["M"]], - "landholder's": null, - "landhold": [["J", "G", "Z", "R"]], - "landholdings": null, - "landholding": null, - "landholders": null, - "landing": [["M"]], - "landing's": null, - "Landis": [["M"]], - "Landis's": null, - "landlady": [["M", "S"]], - "landlady's": null, - "landladies": null, - "landless": null, - "landlines": null, - "landlocked": null, - "landlord": [["M", "S"]], - "landlord's": null, - "landlords": null, - "landlubber": [["S", "M"]], - "landlubbers": null, - "landlubber's": null, - "Land": [["M"]], - "Land's": null, - "landmark": [["G", "S", "M", "D"]], - "landmarking": null, - "landmarks": null, - "landmark's": null, - "landmarked": null, - "landmass": [["M", "S"]], - "landmass's": null, - "landmasses": null, - "Landon": [["M"]], - "Landon's": null, - "landowner": [["M", "S"]], - "landowner's": null, - "landowners": null, - "landownership": [["M"]], - "landownership's": null, - "landowning": [["S", "M"]], - "landownings": null, - "landowning's": null, - "Landry": [["M"]], - "Landry's": null, - "Landsat": null, - "landscape": [["G", "M", "Z", "S", "R", "D"]], - "landscaping": null, - "landscape's": null, - "landscapers": null, - "landscapes": null, - "landscaper": [["M"]], - "landscaped": null, - "landscaper's": null, - "lands": [["I"]], - "inlands": null, - "landslide": [["M", "S"]], - "landslide's": null, - "landslides": null, - "landslid": [["G"]], - "landsliding": null, - "landslip": null, - "landsman": [["M"]], - "landsman's": null, - "landsmen": null, - "land": [["S", "M", "R", "D", "J", "G", "Z"]], - "land's": null, - "landed": null, - "landings": null, - "landers": null, - "Landsteiner": [["M"]], - "Landsteiner's": null, - "landward": [["S"]], - "landwards": null, - "Landwehr": [["M"]], - "Landwehr's": null, - "Lane": [["M"]], - "Lane's": null, - "lane": [["S", "M"]], - "lanes": null, - "lane's": null, - "Lanette": [["M"]], - "Lanette's": null, - "Laney": [["M"]], - "Laney's": null, - "Langeland": [["M"]], - "Langeland's": null, - "Lange": [["M"]], - "Lange's": null, - "Langerhans": [["M"]], - "Langerhans's": null, - "Langford": [["M"]], - "Langford's": null, - "Langland": [["M"]], - "Langland's": null, - "Langley": [["M"]], - "Langley's": null, - "Lang": [["M"]], - "Lang's": null, - "Langmuir": [["M"]], - "Langmuir's": null, - "Langsdon": [["M"]], - "Langsdon's": null, - "Langston": [["M"]], - "Langston's": null, - "language": [["M", "S"]], - "language's": null, - "languages": null, - "languidness": [["M", "S"]], - "languidness's": null, - "languidnesses": null, - "languid": [["P", "Y"]], - "languidly": null, - "languisher": [["M"]], - "languisher's": null, - "languishing": [["Y"]], - "languishingly": null, - "languish": [["S", "R", "D", "G"]], - "languishes": null, - "languished": null, - "languorous": [["Y"]], - "languorously": null, - "languor": [["S", "M"]], - "languors": null, - "languor's": null, - "Lanie": [["M"]], - "Lanie's": null, - "Lani": [["M"]], - "Lani's": null, - "Lanita": [["M"]], - "Lanita's": null, - "lankiness": [["S", "M"]], - "lankinesses": null, - "lankiness's": null, - "lankness": [["M", "S"]], - "lankness's": null, - "lanknesses": null, - "lank": [["P", "T", "Y", "R"]], - "lankest": null, - "lankly": null, - "lanker": null, - "lanky": [["P", "R", "T"]], - "lankier": null, - "lankiest": null, - "Lanna": [["M"]], - "Lanna's": null, - "Lannie": [["M"]], - "Lannie's": null, - "Lanni": [["M"]], - "Lanni's": null, - "Lanny": [["M"]], - "Lanny's": null, - "lanolin": [["M", "S"]], - "lanolin's": null, - "lanolins": null, - "Lansing": [["M"]], - "Lansing's": null, - "lantern": [["G", "S", "D", "M"]], - "lanterning": null, - "lanterns": null, - "lanterned": null, - "lantern's": null, - "lanthanide": [["M"]], - "lanthanide's": null, - "lanthanum": [["M", "S"]], - "lanthanum's": null, - "lanthanums": null, - "lanyard": [["M", "S"]], - "lanyard's": null, - "lanyards": null, - "Lanzhou": null, - "Laocoon": [["M"]], - "Laocoon's": null, - "Lao": [["S", "M"]], - "Laos": null, - "Lao's": null, - "Laotian": [["M", "S"]], - "Laotian's": null, - "Laotians": null, - "lapboard": [["M", "S"]], - "lapboard's": null, - "lapboards": null, - "lapdog": [["S"]], - "lapdogs": null, - "lapel": [["M", "S"]], - "lapel's": null, - "lapels": null, - "lapidary": [["M", "S"]], - "lapidary's": null, - "lapidaries": null, - "lapin": [["M", "S"]], - "lapin's": null, - "lapins": null, - "Laplace": [["M"]], - "Laplace's": null, - "Lapland": [["Z", "M", "R"]], - "Laplanders": null, - "Lapland's": null, - "Laplander": null, - "lapped": null, - "lappet": [["M", "S"]], - "lappet's": null, - "lappets": null, - "lapping": null, - "Lapp": [["S", "M"]], - "Lapps": null, - "Lapp's": null, - "lapsed": [["A"]], - "relapsed": null, - "lapse": [["K", "S", "D", "M", "G"]], - "prolapse": null, - "prolapses": null, - "prolapsed": null, - "prolapse's": null, - "prolapsing": null, - "lapses": [["A"]], - "lapse's": null, - "lapsing": [["A"]], - "lapser": [["M", "A"]], - "lapser's": null, - "relapser's": null, - "relapser": null, - "relapses": null, - "relapsing": null, - "lap": [["S", "M"]], - "laps": [["S", "R", "D", "G"]], - "lap's": null, - "laptop": [["S", "M"]], - "laptops": null, - "laptop's": null, - "lapwing": [["M", "S"]], - "lapwing's": null, - "lapwings": null, - "Laraine": [["M"]], - "Laraine's": null, - "Lara": [["M"]], - "Lara's": null, - "Laramie": [["M"]], - "Laramie's": null, - "larboard": [["M", "S"]], - "larboard's": null, - "larboards": null, - "larcenist": [["S"]], - "larcenists": null, - "larcenous": null, - "larceny": [["M", "S"]], - "larceny's": null, - "larcenies": null, - "larch": [["M", "S"]], - "larch's": null, - "larches": null, - "larder": [["M"]], - "larder's": null, - "lard": [["M", "R", "D", "S", "G", "Z"]], - "lard's": null, - "larded": null, - "lards": null, - "larding": null, - "larders": null, - "Lardner": [["M"]], - "Lardner's": null, - "lardy": [["R", "T"]], - "lardier": null, - "lardiest": null, - "Laredo": [["M"]], - "Laredo's": null, - "largehearted": null, - "largemouth": null, - "largeness": [["S", "M"]], - "largenesses": null, - "largeness's": null, - "large": [["S", "R", "T", "Y", "P"]], - "larges": null, - "larger": null, - "largest": null, - "largely": null, - "largess": [["S", "M"]], - "largesses": null, - "largess's": null, - "largish": null, - "largo": [["S"]], - "largos": null, - "lariat": [["M", "D", "G", "S"]], - "lariat's": null, - "lariated": null, - "lariating": null, - "lariats": null, - "Lari": [["M"]], - "Lari's": null, - "Larina": [["M"]], - "Larina's": null, - "Larine": [["M"]], - "Larine's": null, - "Larisa": [["M"]], - "Larisa's": null, - "Larissa": [["M"]], - "Larissa's": null, - "larker": [["M"]], - "larker's": null, - "lark": [["G", "R", "D", "M", "S"]], - "larking": null, - "larked": null, - "lark's": null, - "larks": null, - "Lark": [["M"]], - "Lark's": null, - "larkspur": [["M", "S"]], - "larkspur's": null, - "larkspurs": null, - "Larousse": [["M"]], - "Larousse's": null, - "Larry": [["M"]], - "Larry's": null, - "Larsen": [["M"]], - "Larsen's": null, - "Lars": [["N", "M"]], - "Lars's": null, - "Larson": [["M"]], - "Larson's": null, - "larvae": null, - "larval": null, - "larva": [["M"]], - "larva's": null, - "laryngeal": [["Y", "S"]], - "laryngeally": null, - "laryngeals": null, - "larynges": null, - "laryngitides": null, - "laryngitis": [["M"]], - "laryngitis's": null, - "larynx": [["M"]], - "larynx's": null, - "Laryssa": [["M"]], - "Laryssa's": null, - "lasagna": [["S"]], - "lasagnas": null, - "lasagne's": null, - "Lascaux": [["M"]], - "Lascaux's": null, - "lasciviousness": [["M", "S"]], - "lasciviousness's": null, - "lasciviousnesses": null, - "lascivious": [["Y", "P"]], - "lasciviously": null, - "lase": null, - "laser": [["M"]], - "laser's": null, - "lashed": [["U"]], - "unlashed": null, - "lasher": [["M"]], - "lasher's": null, - "lashing": [["M"]], - "lashing's": null, - "lash": [["J", "G", "M", "S", "R", "D"]], - "lashings": null, - "lash's": null, - "lashes": null, - "Lassa": [["M"]], - "Lassa's": null, - "Lassen": [["M"]], - "Lassen's": null, - "Lassie": [["M"]], - "Lassie's": null, - "lassie": [["S", "M"]], - "lassies": null, - "lassie's": null, - "lassitude": [["M", "S"]], - "lassitude's": null, - "lassitudes": null, - "lassoer": [["M"]], - "lassoer's": null, - "lasso": [["G", "R", "D", "M", "S"]], - "lassoing": null, - "lassoed": null, - "lasso's": null, - "lassos": null, - "las": [["S", "R", "Z", "G"]], - "lases": null, - "lasers": null, - "lasing": null, - "lass": [["S", "M"]], - "lasses": null, - "lass's": null, - "laster": [["M"]], - "laster's": null, - "lastingness": [["M"]], - "lastingness's": null, - "lasting": [["P", "Y"]], - "lastingly": null, - "last": [["J", "G", "S", "Y", "R", "D"]], - "lastings": null, - "lasts": null, - "lastly": null, - "lasted": null, - "Laszlo": [["M"]], - "Laszlo's": null, - "Latasha": [["M"]], - "Latasha's": null, - "Latashia": [["M"]], - "Latashia's": null, - "latching": [["M"]], - "latching's": null, - "latchkey": [["S", "M"]], - "latchkeys": null, - "latchkey's": null, - "latch's": null, - "latch": [["U", "G", "S", "D"]], - "unlatch": null, - "unlatching": null, - "unlatches": null, - "unlatched": null, - "latches": null, - "latched": null, - "latecomer": [["S", "M"]], - "latecomers": null, - "latecomer's": null, - "lated": [["A"]], - "related": [["U"]], - "late": [["K", "A"]], - "prolate": null, - "relate": [["X", "V", "N", "G", "S", "Z"]], - "lately": null, - "latency": [["M", "S"]], - "latency's": null, - "latencies": null, - "lateness": [["M", "S"]], - "lateness's": null, - "latenesses": null, - "latent": [["Y", "S"]], - "latently": null, - "latents": null, - "later": [["A"]], - "relater": [["M"]], - "lateral": [["G", "D", "Y", "S"]], - "lateraling": null, - "lateraled": null, - "laterally": null, - "laterals": null, - "lateralization": null, - "Lateran": [["M"]], - "Lateran's": null, - "latest": [["S"]], - "latests": null, - "LaTeX": [["M"]], - "LaTeX's": null, - "latex": [["M", "S"]], - "latex's": null, - "latexes": null, - "lathe": [["M"]], - "lathe's": null, - "latherer": [["M"]], - "latherer's": null, - "lather": [["R", "D", "M", "G"]], - "lathered": null, - "lather's": null, - "lathering": null, - "lathery": null, - "lathing": [["M"]], - "lathing's": null, - "lath's": null, - "lathes": null, - "lathed": null, - "lathers": null, - "Lathrop": [["M"]], - "Lathrop's": null, - "laths": null, - "Latia": [["M"]], - "Latia's": null, - "latices": [["M"]], - "latices's": null, - "Latina": [["S", "M"]], - "Latinas": null, - "Latina's": null, - "Latinate": null, - "Latino": [["S"]], - "Latinos": null, - "Latin": [["R", "M", "S"]], - "Latiner": null, - "Latin's": null, - "Latins": null, - "latish": null, - "Latisha": [["M"]], - "Latisha's": null, - "latitude": [["S", "M"]], - "latitudes": null, - "latitude's": null, - "latitudinal": [["Y"]], - "latitudinally": null, - "latitudinarian": [["S"]], - "latitudinarians": null, - "latitudinary": null, - "Lat": [["M"]], - "Lat's": null, - "Latonya": [["M"]], - "Latonya's": null, - "Latoya": [["M"]], - "Latoya's": null, - "Latrena": [["M"]], - "Latrena's": null, - "Latrina": [["M"]], - "Latrina's": null, - "latrine": [["M", "S"]], - "latrine's": null, - "latrines": null, - "Latrobe": [["M"]], - "Latrobe's": null, - "lat": [["S", "D", "R", "T"]], - "lats": null, - "latter": [["Y", "M"]], - "latterly": null, - "latter's": null, - "latte": [["S", "R"]], - "lattes": null, - "lattice": [["S", "D", "M", "G"]], - "lattices": null, - "latticed": null, - "lattice's": null, - "latticing": [["M"]], - "latticework": [["M", "S"]], - "latticework's": null, - "latticeworks": null, - "latticing's": null, - "Lattimer": [["M"]], - "Lattimer's": null, - "Latvia": [["M"]], - "Latvia's": null, - "Latvian": [["S"]], - "Latvians": null, - "laudably": null, - "laudanum": [["M", "S"]], - "laudanum's": null, - "laudanums": null, - "laudatory": null, - "Lauderdale": [["M"]], - "Lauderdale's": null, - "lauder": [["M"]], - "lauder's": null, - "Lauder": [["M"]], - "Lauder's": null, - "Laud": [["M", "R"]], - "Laud's": null, - "laud": [["R", "D", "S", "B", "G"]], - "lauded": null, - "lauds": [["M"]], - "laudable": null, - "lauding": null, - "lauds's": null, - "Laue": [["M"]], - "Laue's": null, - "laughableness": [["M"]], - "laughableness's": null, - "laughable": [["P"]], - "laughably": null, - "laugh": [["B", "R", "D", "Z", "G", "J"]], - "laugher": [["M"]], - "laughed": null, - "laughers": null, - "laughing": [["M", "Y"]], - "laughings": null, - "laugher's": null, - "laughing's": null, - "laughingly": null, - "laughingstock": [["S", "M"]], - "laughingstocks": null, - "laughingstock's": null, - "laughs": null, - "laughter": [["M", "S"]], - "laughter's": null, - "laughters": null, - "Laughton": [["M"]], - "Laughton's": null, - "Launce": [["M"]], - "Launce's": null, - "launch": [["A", "G", "S", "D"]], - "relaunch": null, - "relaunching": null, - "relaunches": null, - "relaunched": null, - "launching": [["S"]], - "launches": null, - "launched": null, - "launcher": [["M", "S"]], - "launcher's": null, - "launchers": null, - "launchings": null, - "launchpad": [["S"]], - "launchpads": null, - "laundered": [["U"]], - "unlaundered": null, - "launderer": [["M"]], - "launderer's": null, - "launderette": [["M", "S"]], - "launderette's": null, - "launderettes": null, - "launder": [["S", "D", "R", "Z", "J", "G"]], - "launders": null, - "launderers": null, - "launderings": null, - "laundering": null, - "laundress": [["M", "S"]], - "laundress's": null, - "laundresses": null, - "laundrette": [["S"]], - "laundrettes": null, - "laundromat": [["S"]], - "laundromats": null, - "Laundromat": [["S", "M"]], - "Laundromats": null, - "Laundromat's": null, - "laundryman": [["M"]], - "laundryman's": null, - "laundrymen": null, - "laundry": [["M", "S"]], - "laundry's": null, - "laundries": null, - "laundrywoman": [["M"]], - "laundrywoman's": null, - "laundrywomen": null, - "Lauraine": [["M"]], - "Lauraine's": null, - "Lauralee": [["M"]], - "Lauralee's": null, - "Laural": [["M"]], - "Laural's": null, - "laura": [["M"]], - "laura's": null, - "Laura": [["M"]], - "Laura's": null, - "Laurasia": [["M"]], - "Laurasia's": null, - "laureate": [["D", "S", "N", "G"]], - "laureated": null, - "laureates": null, - "laureation": null, - "laureating": null, - "laureateship": [["S", "M"]], - "laureateships": null, - "laureateship's": null, - "Lauree": [["M"]], - "Lauree's": null, - "Laureen": [["M"]], - "Laureen's": null, - "Laurella": [["M"]], - "Laurella's": null, - "Laurel": [["M"]], - "Laurel's": null, - "laurel": [["S", "G", "M", "D"]], - "laurels": null, - "laureling": null, - "laurel's": null, - "laureled": null, - "Laure": [["M"]], - "Laure's": null, - "Laurena": [["M"]], - "Laurena's": null, - "Laurence": [["M"]], - "Laurence's": null, - "Laurene": [["M"]], - "Laurene's": null, - "Lauren": [["S", "M"]], - "Laurens": null, - "Lauren's": null, - "Laurentian": null, - "Laurent": [["M"]], - "Laurent's": null, - "Lauretta": [["M"]], - "Lauretta's": null, - "Laurette": [["M"]], - "Laurette's": null, - "Laurianne": [["M"]], - "Laurianne's": null, - "Laurice": [["M"]], - "Laurice's": null, - "Laurie": [["M"]], - "Laurie's": null, - "Lauri": [["M"]], - "Lauri's": null, - "Lauritz": [["M"]], - "Lauritz's": null, - "Lauryn": [["M"]], - "Lauryn's": null, - "Lausanne": [["M"]], - "Lausanne's": null, - "lavage": [["M", "S"]], - "lavage's": null, - "lavages": null, - "lavaliere": [["M", "S"]], - "lavaliere's": null, - "lavalieres": null, - "Laval": [["M"]], - "Laval's": null, - "lava": [["S", "M"]], - "lavas": null, - "lava's": null, - "lavatory": [["M", "S"]], - "lavatory's": null, - "lavatories": null, - "lave": [["G", "D", "S"]], - "laving": null, - "laved": null, - "laves": null, - "Lavena": [["M"]], - "Lavena's": null, - "lavender": [["M", "D", "S", "G"]], - "lavender's": null, - "lavendered": null, - "lavenders": null, - "lavendering": null, - "Laverna": [["M"]], - "Laverna's": null, - "Laverne": [["M"]], - "Laverne's": null, - "Lavern": [["M"]], - "Lavern's": null, - "Lavina": [["M"]], - "Lavina's": null, - "Lavinia": [["M"]], - "Lavinia's": null, - "Lavinie": [["M"]], - "Lavinie's": null, - "lavishness": [["M", "S"]], - "lavishness's": null, - "lavishnesses": null, - "lavish": [["S", "R", "D", "Y", "P", "T", "G"]], - "lavishes": null, - "lavisher": null, - "lavished": null, - "lavishly": null, - "lavishest": null, - "lavishing": null, - "Lavoisier": [["M"]], - "Lavoisier's": null, - "Lavonne": [["M"]], - "Lavonne's": null, - "Lawanda": [["M"]], - "Lawanda's": null, - "lawbreaker": [["S", "M"]], - "lawbreakers": null, - "lawbreaker's": null, - "lawbreaking": [["M", "S"]], - "lawbreaking's": null, - "lawbreakings": null, - "Lawford": [["M"]], - "Lawford's": null, - "lawfulness": [["S", "M", "U"]], - "lawfulnesses": null, - "unlawfulnesses": null, - "lawfulness's": null, - "unlawfulness's": null, - "unlawfulness": null, - "lawful": [["P", "U", "Y"]], - "unlawful": null, - "unlawfully": null, - "lawfully": null, - "lawgiver": [["M", "S"]], - "lawgiver's": null, - "lawgivers": null, - "lawgiving": [["M"]], - "lawgiving's": null, - "lawlessness": [["M", "S"]], - "lawlessness's": null, - "lawlessnesses": null, - "lawless": [["P", "Y"]], - "lawlessly": null, - "Law": [["M"]], - "Law's": null, - "lawmaker": [["M", "S"]], - "lawmaker's": null, - "lawmakers": null, - "lawmaking": [["S", "M"]], - "lawmakings": null, - "lawmaking's": null, - "lawman": [["M"]], - "lawman's": null, - "lawmen": null, - "lawnmower": [["S"]], - "lawnmowers": null, - "lawn": [["S", "M"]], - "lawns": null, - "lawn's": null, - "Lawrence": [["M"]], - "Lawrence's": null, - "Lawrenceville": [["M"]], - "Lawrenceville's": null, - "lawrencium": [["S", "M"]], - "lawrenciums": null, - "lawrencium's": null, - "Lawry": [["M"]], - "Lawry's": null, - "law": [["S", "M", "D", "G"]], - "laws": null, - "law's": null, - "lawed": null, - "lawing": null, - "Lawson": [["M"]], - "Lawson's": null, - "lawsuit": [["M", "S"]], - "lawsuit's": null, - "lawsuits": null, - "Lawton": [["M"]], - "Lawton's": null, - "lawyer": [["D", "Y", "M", "G", "S"]], - "lawyered": null, - "lawyerly": null, - "lawyer's": null, - "lawyering": null, - "lawyers": null, - "laxativeness": [["M"]], - "laxativeness's": null, - "laxative": [["P", "S", "Y", "M"]], - "laxatives": null, - "laxatively": null, - "laxative's": null, - "laxer": [["A"]], - "relaxer": null, - "laxes": [["A"]], - "relaxes": null, - "laxity": [["S", "M"]], - "laxities": null, - "laxity's": null, - "laxness": [["S", "M"]], - "laxnesses": null, - "laxness's": null, - "lax": [["P", "T", "S", "R", "Y"]], - "laxest": null, - "laxly": null, - "layabout": [["M", "S"]], - "layabout's": null, - "layabouts": null, - "Layamon": [["M"]], - "Layamon's": null, - "layaway": [["S"]], - "layaways": null, - "lay": [["C", "Z", "G", "S", "R"]], - "delayers": null, - "delaying": null, - "delays": null, - "layers": null, - "laying": null, - "lays": [["A", "I"]], - "layer": [["G", "J", "D", "M"]], - "layered": [["C"]], - "delayered": null, - "layering": [["M"]], - "layerings": null, - "layer's": [["I", "C"]], - "layering's": null, - "inlayer's": null, - "delayer's": null, - "layette": [["S", "M"]], - "layettes": null, - "layette's": null, - "Layla": [["M"]], - "Layla's": null, - "Lay": [["M"]], - "Lay's": null, - "layman": [["M"]], - "layman's": null, - "laymen": null, - "Layne": [["M"]], - "Layne's": null, - "Layney": [["M"]], - "Layney's": null, - "layoff": [["M", "S"]], - "layoff's": null, - "layoffs": null, - "layout": [["S", "M"]], - "layouts": null, - "layout's": null, - "layover": [["S", "M"]], - "layovers": null, - "layover's": null, - "laypeople": null, - "layperson": [["S"]], - "laypersons": null, - "relays": null, - "inlays": null, - "Layton": [["M"]], - "Layton's": null, - "layup": [["M", "S"]], - "layup's": null, - "layups": null, - "laywoman": [["M"]], - "laywoman's": null, - "laywomen": null, - "Lazare": [["M"]], - "Lazare's": null, - "Lazar": [["M"]], - "Lazar's": null, - "Lazaro": [["M"]], - "Lazaro's": null, - "Lazarus": [["M"]], - "Lazarus's": null, - "laze": [["D", "S", "G"]], - "lazed": null, - "lazes": null, - "lazing": null, - "lazily": null, - "laziness": [["M", "S"]], - "laziness's": null, - "lazinesses": null, - "lazuli": [["M"]], - "lazuli's": null, - "lazybones": [["M"]], - "lazybones's": null, - "lazy": [["P", "T", "S", "R", "D", "G"]], - "laziest": null, - "lazies": null, - "lazier": null, - "lazied": null, - "lazying": null, - "lb": null, - "LBJ": [["M"]], - "LBJ's": null, - "lbs": null, - "LC": null, - "LCD": null, - "LCM": null, - "LDC": null, - "leachate": null, - "Leach": [["M"]], - "Leach's": null, - "leach": [["S", "D", "G"]], - "leaches": null, - "leached": null, - "leaching": null, - "Leadbelly": [["M"]], - "Leadbelly's": null, - "leaded": [["U"]], - "unleaded": null, - "leadenness": [["M"]], - "leadenness's": null, - "leaden": [["P", "G", "D", "Y"]], - "leadening": null, - "leadened": null, - "leadenly": null, - "leaderless": null, - "leader": [["M"]], - "leader's": null, - "leadership": [["M", "S"]], - "leadership's": null, - "leaderships": null, - "lead": [["S", "G", "Z", "X", "J", "R", "D", "N"]], - "leads": null, - "leading": null, - "leaders": null, - "leadens": null, - "leadings": null, - "leadsman": [["M"]], - "leadsman's": null, - "leadsmen": null, - "leafage": [["M", "S"]], - "leafage's": null, - "leafages": null, - "leaf": [["G", "S", "D", "M"]], - "leafing": null, - "leafs": null, - "leafed": null, - "leaf's": null, - "leafhopper": [["M"]], - "leafhopper's": null, - "leafiness": [["M"]], - "leafiness's": null, - "leafless": null, - "leaflet": [["S", "D", "M", "G"]], - "leaflets": null, - "leafleted": null, - "leaflet's": null, - "leafleting": null, - "leafstalk": [["S", "M"]], - "leafstalks": null, - "leafstalk's": null, - "leafy": [["P", "T", "R"]], - "leafiest": null, - "leafier": null, - "leaguer": [["M"]], - "leaguer's": null, - "league": [["R", "S", "D", "M", "Z", "G"]], - "leagues": null, - "leagued": null, - "league's": null, - "leaguers": null, - "leaguing": null, - "Leah": [["M"]], - "Leah's": null, - "leakage": [["S", "M"]], - "leakages": null, - "leakage's": null, - "leaker": [["M"]], - "leaker's": null, - "Leakey": [["M"]], - "Leakey's": null, - "leak": [["G", "S", "R", "D", "M"]], - "leaking": null, - "leaks": null, - "leaked": null, - "leak's": null, - "leakiness": [["M", "S"]], - "leakiness's": null, - "leakinesses": null, - "leaky": [["P", "R", "T"]], - "leakier": null, - "leakiest": null, - "Lea": [["M"]], - "Lea's": null, - "lea": [["M", "S"]], - "lea's": null, - "leas": [["S", "R", "D", "G", "Z"]], - "Leander": [["M"]], - "Leander's": null, - "Leandra": [["M"]], - "Leandra's": null, - "leaner": [["M"]], - "leaner's": null, - "leaning": [["M"]], - "leaning's": null, - "Lean": [["M"]], - "Lean's": null, - "Leanna": [["M"]], - "Leanna's": null, - "Leanne": [["M"]], - "Leanne's": null, - "leanness": [["M", "S"]], - "leanness's": null, - "leannesses": null, - "Leann": [["M"]], - "Leann's": null, - "Leanora": [["M"]], - "Leanora's": null, - "Leanor": [["M"]], - "Leanor's": null, - "lean": [["Y", "R", "D", "G", "T", "J", "S", "P"]], - "leanly": null, - "leaned": null, - "leanest": null, - "leanings": null, - "leans": null, - "leaper": [["M"]], - "leaper's": null, - "leapfrogged": null, - "leapfrogging": null, - "leapfrog": [["S", "M"]], - "leapfrogs": null, - "leapfrog's": null, - "leap": [["R", "D", "G", "Z", "S"]], - "leaped": null, - "leaping": null, - "leapers": null, - "leaps": null, - "Lear": [["M"]], - "Lear's": null, - "learnedly": null, - "learnedness": [["M"]], - "learnedness's": null, - "learned": [["U", "A"]], - "unlearned": null, - "relearned": null, - "learner": [["M"]], - "learner's": null, - "learning": [["M"]], - "learning's": null, - "learns": [["U", "A"]], - "unlearns": null, - "relearns": null, - "learn": [["S", "Z", "G", "J", "R", "D"]], - "learners": null, - "learnings": null, - "Leary": [["M"]], - "Leary's": null, - "lease": [["A", "R", "S", "D", "G"]], - "release": [["B"]], - "releaser": null, - "releases": null, - "released": [["U"]], - "releasing": null, - "leaser": [["M", "A"]], - "leases": null, - "leased": null, - "leasing": [["M"]], - "leaseback": [["M", "S"]], - "leaseback's": null, - "leasebacks": null, - "leaseholder": [["M"]], - "leaseholder's": null, - "leasehold": [["S", "R", "M", "Z"]], - "leaseholds": null, - "leasehold's": null, - "leaseholders": null, - "leaser's": null, - "releaser's": null, - "lease's": null, - "leash's": null, - "leash": [["U", "G", "S", "D"]], - "unleash": null, - "unleashing": null, - "unleashes": null, - "unleashed": null, - "leashing": null, - "leashes": null, - "leashed": null, - "leasing's": null, - "leasers": null, - "least": [["S"]], - "leasts": null, - "leastwise": null, - "leatherette": [["S"]], - "leatherettes": null, - "leather": [["M", "D", "S", "G"]], - "leather's": null, - "leathered": null, - "leathers": null, - "leathering": null, - "leathern": null, - "leatherneck": [["S", "M"]], - "leathernecks": null, - "leatherneck's": null, - "leathery": null, - "leaven": [["D", "M", "J", "G", "S"]], - "leavened": [["U"]], - "leaven's": null, - "leavenings": null, - "leavening": [["M"]], - "leavens": null, - "unleavened": null, - "leavening's": null, - "Leavenworth": [["M"]], - "Leavenworth's": null, - "leaver": [["M"]], - "leaver's": null, - "leaves": [["M"]], - "leaves's": null, - "leave": [["S", "R", "D", "J", "G", "Z"]], - "leaved": null, - "leavings": null, - "leaving": [["M"]], - "leavers": null, - "leaving's": null, - "Lebanese": null, - "Lebanon": [["M"]], - "Lebanon's": null, - "Lebbie": [["M"]], - "Lebbie's": null, - "lebensraum": null, - "Lebesgue": [["M"]], - "Lebesgue's": null, - "Leblanc": [["M"]], - "Leblanc's": null, - "lecher": [["D", "M", "G", "S"]], - "lechered": null, - "lecher's": null, - "lechering": null, - "lechers": null, - "lecherousness": [["M", "S"]], - "lecherousness's": null, - "lecherousnesses": null, - "lecherous": [["Y", "P"]], - "lecherously": null, - "lechery": [["M", "S"]], - "lechery's": null, - "lecheries": null, - "lecithin": [["S", "M"]], - "lecithins": null, - "lecithin's": null, - "lectern": [["S", "M"]], - "lecterns": null, - "lectern's": null, - "lecturer": [["M"]], - "lecturer's": null, - "lecture": [["R", "S", "D", "Z", "M", "G"]], - "lectures": null, - "lectured": null, - "lecturers": null, - "lecture's": null, - "lecturing": null, - "lectureship": [["S", "M"]], - "lectureships": null, - "lectureship's": null, - "led": null, - "Leda": [["M"]], - "Leda's": null, - "Lederberg": [["M"]], - "Lederberg's": null, - "ledger": [["D", "M", "G"]], - "ledgered": null, - "ledger's": null, - "ledgering": null, - "ledge": [["S", "R", "M", "Z"]], - "ledges": null, - "ledge's": null, - "ledgers": null, - "LED": [["S", "M"]], - "LEDs": null, - "LED's": null, - "Leeanne": [["M"]], - "Leeanne's": null, - "Leeann": [["M"]], - "Leeann's": null, - "leech": [["M", "S", "D", "G"]], - "leech's": null, - "leeches": null, - "leeched": null, - "leeching": null, - "Leeds": [["M"]], - "Leeds's": null, - "leek": [["S", "M"]], - "leeks": null, - "leek's": null, - "Leelah": [["M"]], - "Leelah's": null, - "Leela": [["M"]], - "Leela's": null, - "Leeland": [["M"]], - "Leeland's": null, - "Lee": [["M"]], - "Lee's": null, - "lee": [["M", "Z", "R", "S"]], - "lee's": null, - "leers": null, - "leer": [["D", "G"]], - "lees": null, - "Leena": [["M"]], - "Leena's": null, - "leered": null, - "leering": [["Y"]], - "leeriness": [["M", "S"]], - "leeriness's": null, - "leerinesses": null, - "leeringly": null, - "leery": [["P", "T", "R"]], - "leeriest": null, - "leerier": null, - "Leesa": [["M"]], - "Leesa's": null, - "Leese": [["M"]], - "Leese's": null, - "Leeuwenhoek": [["M"]], - "Leeuwenhoek's": null, - "Leeward": [["M"]], - "Leeward's": null, - "leeward": [["S"]], - "leewards": null, - "leeway": [["M", "S"]], - "leeway's": null, - "leeways": null, - "leftism": [["S", "M"]], - "leftisms": null, - "leftism's": null, - "leftist": [["S", "M"]], - "leftists": null, - "leftist's": null, - "leftmost": null, - "leftover": [["M", "S"]], - "leftover's": null, - "leftovers": null, - "Left": [["S"]], - "Lefts": null, - "left": [["T", "R", "S"]], - "leftest": null, - "lefter": null, - "lefts": null, - "leftward": [["S"]], - "leftwards": null, - "Lefty": [["M"]], - "Lefty's": null, - "lefty": [["S", "M"]], - "lefties": null, - "lefty's": null, - "legacy": [["M", "S"]], - "legacy's": null, - "legacies": null, - "legalese": [["M", "S"]], - "legalese's": null, - "legaleses": null, - "legalism": [["S", "M"]], - "legalisms": null, - "legalism's": null, - "legalistic": null, - "legality": [["M", "S"]], - "legality's": null, - "legalities": null, - "legalization": [["M", "S"]], - "legalization's": null, - "legalizations": null, - "legalize": [["D", "S", "G"]], - "legalized": [["U"]], - "legalizes": null, - "legalizing": null, - "unlegalized": null, - "legal": [["S", "Y"]], - "legals": null, - "legally": null, - "legate": [["A", "X", "C", "N", "G", "S", "D"]], - "relegate": null, - "relegations": null, - "relegation": null, - "relegating": null, - "relegates": null, - "relegated": null, - "legations": null, - "delegations": null, - "delegate": null, - "delegation": null, - "delegating": null, - "delegates": null, - "delegated": null, - "legation": [["A", "M", "C"]], - "legating": null, - "legates": null, - "legated": null, - "legatee": [["M", "S"]], - "legatee's": null, - "legatees": null, - "legate's": [["C"]], - "delegate's": null, - "relegation's": null, - "legation's": null, - "delegation's": null, - "legato": [["S", "M"]], - "legatos": null, - "legato's": null, - "legendarily": null, - "legendary": [["S"]], - "legendaries": null, - "Legendre": [["M"]], - "Legendre's": null, - "legend": [["S", "M"]], - "legends": null, - "legend's": null, - "legerdemain": [["S", "M"]], - "legerdemains": null, - "legerdemain's": null, - "Leger": [["S", "M"]], - "Legers": null, - "Leger's": null, - "legged": null, - "legginess": [["M", "S"]], - "legginess's": null, - "legginesses": null, - "legging": [["M", "S"]], - "legging's": null, - "leggings": null, - "leggy": [["P", "R", "T"]], - "leggier": null, - "leggiest": null, - "leghorn": [["S", "M"]], - "leghorns": null, - "leghorn's": null, - "Leghorn": [["S", "M"]], - "Leghorns": null, - "Leghorn's": null, - "legibility": [["M", "S"]], - "legibility's": null, - "legibilities": null, - "legible": null, - "legibly": null, - "legionary": [["S"]], - "legionaries": null, - "legionnaire": [["S", "M"]], - "legionnaires": null, - "legionnaire's": null, - "legion": [["S", "M"]], - "legions": null, - "legion's": null, - "legislate": [["S", "D", "X", "V", "N", "G"]], - "legislates": null, - "legislated": null, - "legislations": null, - "legislative": [["S", "Y"]], - "legislation": [["M"]], - "legislating": null, - "legislation's": null, - "legislatives": null, - "legislatively": null, - "legislator": [["S", "M"]], - "legislators": null, - "legislator's": null, - "legislature": [["M", "S"]], - "legislature's": null, - "legislatures": null, - "legitimacy": [["M", "S"]], - "legitimacy's": null, - "legitimacies": null, - "legitimate": [["S", "D", "N", "G", "Y"]], - "legitimates": null, - "legitimated": null, - "legitimation": [["M"]], - "legitimating": null, - "legitimately": null, - "legitimation's": null, - "legitimatize": [["S", "D", "G"]], - "legitimatizes": null, - "legitimatized": null, - "legitimatizing": null, - "legitimization": [["M", "S"]], - "legitimization's": null, - "legitimizations": null, - "legitimize": [["R", "S", "D", "G"]], - "legitimizer": null, - "legitimizes": null, - "legitimized": null, - "legitimizing": null, - "legit": [["S"]], - "legits": null, - "legless": null, - "legman": [["M"]], - "legman's": null, - "legmen": null, - "leg": [["M", "S"]], - "leg's": null, - "legs": null, - "Lego": [["M"]], - "Lego's": null, - "Legra": [["M"]], - "Legra's": null, - "Legree": [["M"]], - "Legree's": null, - "legroom": [["M", "S"]], - "legroom's": null, - "legrooms": null, - "legstraps": null, - "legume": [["S", "M"]], - "legumes": null, - "legume's": null, - "leguminous": null, - "legwork": [["S", "M"]], - "legworks": null, - "legwork's": null, - "Lehigh": [["M"]], - "Lehigh's": null, - "Lehman": [["M"]], - "Lehman's": null, - "Leia": [["M"]], - "Leia's": null, - "Leibniz": [["M"]], - "Leibniz's": null, - "Leicester": [["S", "M"]], - "Leicesters": null, - "Leicester's": null, - "Leiden": [["M"]], - "Leiden's": null, - "Leif": [["M"]], - "Leif's": null, - "Leigha": [["M"]], - "Leigha's": null, - "Leigh": [["M"]], - "Leigh's": null, - "Leighton": [["M"]], - "Leighton's": null, - "Leilah": [["M"]], - "Leilah's": null, - "Leila": [["M"]], - "Leila's": null, - "lei": [["M", "S"]], - "lei's": null, - "leis": null, - "Leipzig": [["M"]], - "Leipzig's": null, - "Leisha": [["M"]], - "Leisha's": null, - "leisureliness": [["M", "S"]], - "leisureliness's": null, - "leisurelinesses": null, - "leisurely": [["P"]], - "leisure": [["S", "D", "Y", "M"]], - "leisures": null, - "leisured": null, - "leisure's": null, - "leisurewear": null, - "leitmotif": [["S", "M"]], - "leitmotifs": null, - "leitmotif's": null, - "leitmotiv": [["M", "S"]], - "leitmotiv's": null, - "leitmotivs": null, - "Lek": [["M"]], - "Lek's": null, - "Lelah": [["M"]], - "Lelah's": null, - "Lela": [["M"]], - "Lela's": null, - "Leland": [["M"]], - "Leland's": null, - "Lelia": [["M"]], - "Lelia's": null, - "Lemaitre": [["M"]], - "Lemaitre's": null, - "Lemar": [["M"]], - "Lemar's": null, - "Lemke": [["M"]], - "Lemke's": null, - "Lem": [["M"]], - "Lem's": null, - "lemma": [["M", "S"]], - "lemma's": null, - "lemmas": null, - "lemme": [["G", "J"]], - "lemming": [["M"]], - "lemmings": null, - "Lemmie": [["M"]], - "Lemmie's": null, - "lemming's": null, - "Lemmy": [["M"]], - "Lemmy's": null, - "lemonade": [["S", "M"]], - "lemonades": null, - "lemonade's": null, - "lemon": [["G", "S", "D", "M"]], - "lemoning": null, - "lemons": null, - "lemoned": null, - "lemon's": null, - "lemony": null, - "Lemuel": [["M"]], - "Lemuel's": null, - "Lemuria": [["M"]], - "Lemuria's": null, - "lemur": [["M", "S"]], - "lemur's": null, - "lemurs": null, - "Lena": [["M"]], - "Lena's": null, - "Lenard": [["M"]], - "Lenard's": null, - "Lenci": [["M"]], - "Lenci's": null, - "lender": [["M"]], - "lender's": null, - "lend": [["S", "R", "G", "Z"]], - "lends": null, - "lending": null, - "lenders": null, - "Lenee": [["M"]], - "Lenee's": null, - "Lenette": [["M"]], - "Lenette's": null, - "lengthener": [["M"]], - "lengthener's": null, - "lengthen": [["G", "R", "D"]], - "lengthening": null, - "lengthened": null, - "lengthily": null, - "lengthiness": [["M", "S"]], - "lengthiness's": null, - "lengthinesses": null, - "length": [["M", "N", "Y", "X"]], - "length's": null, - "lengthly": null, - "lengthens": null, - "lengths": null, - "lengthwise": null, - "lengthy": [["T", "R", "P"]], - "lengthiest": null, - "lengthier": null, - "lenience": [["S"]], - "leniences": null, - "leniency": [["M", "S"]], - "leniency's": null, - "leniencies": null, - "lenient": [["S", "Y"]], - "lenients": null, - "leniently": null, - "Leningrad": [["M"]], - "Leningrad's": null, - "Leninism": [["M"]], - "Leninism's": null, - "Leninist": null, - "Lenin": [["M"]], - "Lenin's": null, - "lenitive": [["S"]], - "lenitives": null, - "Lenka": [["M"]], - "Lenka's": null, - "Len": [["M"]], - "Len's": null, - "Le": [["N", "M"]], - "Lion": [["M"]], - "Le's": null, - "Lenna": [["M"]], - "Lenna's": null, - "Lennard": [["M"]], - "Lennard's": null, - "Lennie": [["M"]], - "Lennie's": null, - "Lennon": [["M"]], - "Lennon's": null, - "Lenny": [["M"]], - "Lenny's": null, - "Lenoir": [["M"]], - "Lenoir's": null, - "Leno": [["M"]], - "Leno's": null, - "Lenora": [["M"]], - "Lenora's": null, - "Lenore": [["M"]], - "Lenore's": null, - "lens": [["S", "R", "D", "M", "J", "G", "Z"]], - "lenses": null, - "lenser": null, - "lensed": null, - "lens's": null, - "lensings": null, - "lensing": null, - "lensers": null, - "lent": [["A"]], - "relent": [["S", "D", "G"]], - "lenticular": null, - "lentil": [["S", "M"]], - "lentils": null, - "lentil's": null, - "lento": [["S"]], - "lentos": null, - "Lent": [["S", "M", "N"]], - "Lents": null, - "Lent's": null, - "Lenten": null, - "Leodora": [["M"]], - "Leodora's": null, - "Leoine": [["M"]], - "Leoine's": null, - "Leola": [["M"]], - "Leola's": null, - "Leoline": [["M"]], - "Leoline's": null, - "Leo": [["M", "S"]], - "Leo's": null, - "Leos": null, - "Leona": [["M"]], - "Leona's": null, - "Leonanie": [["M"]], - "Leonanie's": null, - "Leonard": [["M"]], - "Leonard's": null, - "Leonardo": [["M"]], - "Leonardo's": null, - "Leoncavallo": [["M"]], - "Leoncavallo's": null, - "Leonelle": [["M"]], - "Leonelle's": null, - "Leonel": [["M"]], - "Leonel's": null, - "Leone": [["M"]], - "Leone's": null, - "Leonerd": [["M"]], - "Leonerd's": null, - "Leonhard": [["M"]], - "Leonhard's": null, - "Leonidas": [["M"]], - "Leonidas's": null, - "Leonid": [["M"]], - "Leonid's": null, - "Leonie": [["M"]], - "Leonie's": null, - "leonine": null, - "Leon": [["M"]], - "Leon's": null, - "Leonora": [["M"]], - "Leonora's": null, - "Leonore": [["M"]], - "Leonore's": null, - "Leonor": [["M"]], - "Leonor's": null, - "Leontine": [["M"]], - "Leontine's": null, - "Leontyne": [["M"]], - "Leontyne's": null, - "leopardess": [["S", "M"]], - "leopardesses": null, - "leopardess's": null, - "leopard": [["M", "S"]], - "leopard's": null, - "leopards": null, - "leopardskin": null, - "Leopold": [["M"]], - "Leopold's": null, - "Leopoldo": [["M"]], - "Leopoldo's": null, - "Leopoldville": [["M"]], - "Leopoldville's": null, - "Leora": [["M"]], - "Leora's": null, - "leotard": [["M", "S"]], - "leotard's": null, - "leotards": null, - "leper": [["S", "M"]], - "lepers": null, - "leper's": null, - "Lepidus": [["M"]], - "Lepidus's": null, - "Lepke": [["M"]], - "Lepke's": null, - "leprechaun": [["S", "M"]], - "leprechauns": null, - "leprechaun's": null, - "leprosy": [["M", "S"]], - "leprosy's": null, - "leprosies": null, - "leprous": null, - "lepta": null, - "lepton": [["S", "M"]], - "leptons": null, - "lepton's": null, - "Lepus": [["M"]], - "Lepus's": null, - "Lerner": [["M"]], - "Lerner's": null, - "Leroi": [["M"]], - "Leroi's": null, - "Leroy": [["M"]], - "Leroy's": null, - "Lesa": [["M"]], - "Lesa's": null, - "lesbianism": [["M", "S"]], - "lesbianism's": null, - "lesbianisms": null, - "lesbian": [["M", "S"]], - "lesbian's": null, - "lesbians": null, - "Leshia": [["M"]], - "Leshia's": null, - "lesion": [["D", "M", "S", "G"]], - "lesioned": null, - "lesion's": null, - "lesions": null, - "lesioning": null, - "Lesley": [["M"]], - "Lesley's": null, - "Leslie": [["M"]], - "Leslie's": null, - "Lesli": [["M"]], - "Lesli's": null, - "Lesly": [["M"]], - "Lesly's": null, - "Lesotho": [["M"]], - "Lesotho's": null, - "lessee": [["M", "S"]], - "lessee's": null, - "lessees": null, - "lessen": [["G", "D", "S"]], - "lessening": null, - "lessened": null, - "lessens": null, - "Lesseps": [["M"]], - "Lesseps's": null, - "lesser": null, - "lesses": null, - "Lessie": [["M"]], - "Lessie's": null, - "lessing": null, - "lesson": [["D", "M", "S", "G"]], - "lessoned": null, - "lesson's": null, - "lessons": null, - "lessoning": null, - "lessor": [["M", "S"]], - "lessor's": null, - "lessors": null, - "less": [["U"]], - "unless": null, - "Lester": [["M"]], - "Lester's": null, - "lest": [["R"]], - "lester": null, - "Les": [["Y"]], - "Lesya": [["M"]], - "Lesya's": null, - "Leta": [["M"]], - "Leta's": null, - "letdown": [["S", "M"]], - "letdowns": null, - "letdown's": null, - "lethality": [["M"]], - "lethality's": null, - "lethal": [["Y", "S"]], - "lethally": null, - "lethals": null, - "Letha": [["M"]], - "Letha's": null, - "lethargic": null, - "lethargically": null, - "lethargy": [["M", "S"]], - "lethargy's": null, - "lethargies": null, - "Lethe": [["M"]], - "Lethe's": null, - "Lethia": [["M"]], - "Lethia's": null, - "Leticia": [["M"]], - "Leticia's": null, - "Letisha": [["M"]], - "Letisha's": null, - "let": [["I", "S", "M"]], - "inlet": null, - "inlets": null, - "inlet's": null, - "lets": null, - "let's": null, - "Letitia": [["M"]], - "Letitia's": null, - "Letizia": [["M"]], - "Letizia's": null, - "Letta": [["M"]], - "Letta's": null, - "letterbox": [["S"]], - "letterboxes": null, - "lettered": [["U"]], - "unlettered": null, - "letterer": [["M"]], - "letterer's": null, - "letterhead": [["S", "M"]], - "letterheads": null, - "letterhead's": null, - "lettering": [["M"]], - "lettering's": null, - "letter": [["J", "S", "Z", "G", "R", "D", "M"]], - "letterings": null, - "letters": null, - "letterers": null, - "letter's": null, - "letterman": [["M"]], - "letterman's": null, - "Letterman": [["M"]], - "Letterman's": null, - "lettermen": null, - "letterpress": [["M", "S"]], - "letterpress's": null, - "letterpresses": null, - "Lettie": [["M"]], - "Lettie's": null, - "Letti": [["M"]], - "Letti's": null, - "letting": [["S"]], - "lettings": null, - "lettuce": [["S", "M"]], - "lettuces": null, - "lettuce's": null, - "Letty": [["M"]], - "Letty's": null, - "letup": [["M", "S"]], - "letup's": null, - "letups": null, - "leukemia": [["S", "M"]], - "leukemias": null, - "leukemia's": null, - "leukemic": [["S"]], - "leukemics": null, - "leukocyte": [["M", "S"]], - "leukocyte's": null, - "leukocytes": null, - "Leupold": [["M"]], - "Leupold's": null, - "Levant": [["M"]], - "Levant's": null, - "leveeing": null, - "levee": [["S", "D", "M"]], - "levees": null, - "leveed": null, - "levee's": null, - "leveled": [["U"]], - "unleveled": null, - "leveler": [["M"]], - "leveler's": null, - "levelheadedness": [["S"]], - "levelheadednesses": null, - "levelheaded": [["P"]], - "leveling": [["U"]], - "unleveling": null, - "levelness": [["S", "M"]], - "levelnesses": null, - "levelness's": null, - "level": [["S", "T", "Z", "G", "R", "D", "Y", "P"]], - "levels": null, - "levelest": null, - "levelers": null, - "levelly": null, - "leverage": [["M", "G", "D", "S"]], - "leverage's": null, - "leveraging": null, - "leveraged": null, - "leverages": null, - "lever": [["S", "D", "M", "G"]], - "levers": null, - "levered": null, - "lever's": null, - "levering": null, - "Levesque": [["M"]], - "Levesque's": null, - "Levey": [["M"]], - "Levey's": null, - "Leviathan": null, - "leviathan": [["M", "S"]], - "leviathan's": null, - "leviathans": null, - "levier": [["M"]], - "levier's": null, - "Levi": [["M", "S"]], - "Levi's": null, - "Levis": null, - "Levine": [["M"]], - "Levine's": null, - "Levin": [["M"]], - "Levin's": null, - "levitate": [["X", "N", "G", "D", "S"]], - "levitations": null, - "levitation": [["M"]], - "levitating": null, - "levitated": null, - "levitates": null, - "levitation's": null, - "Leviticus": [["M"]], - "Leviticus's": null, - "Levitt": [["M"]], - "Levitt's": null, - "levity": [["M", "S"]], - "levity's": null, - "levities": null, - "Lev": [["M"]], - "Lev's": null, - "Levon": [["M"]], - "Levon's": null, - "Levy": [["M"]], - "Levy's": null, - "levy": [["S", "R", "D", "Z", "G"]], - "levies": null, - "levied": null, - "leviers": null, - "levying": null, - "lewdness": [["M", "S"]], - "lewdness's": null, - "lewdnesses": null, - "lewd": [["P", "Y", "R", "T"]], - "lewdly": null, - "lewder": null, - "lewdest": null, - "Lewellyn": [["M"]], - "Lewellyn's": null, - "Lewes": null, - "Lewie": [["M"]], - "Lewie's": null, - "Lewinsky": [["M"]], - "Lewinsky's": null, - "lewis": [["M"]], - "lewis's": null, - "Lewis": [["M"]], - "Lewis's": null, - "Lewiss": null, - "Lew": [["M"]], - "Lew's": null, - "lex": null, - "lexeme": [["M", "S"]], - "lexeme's": null, - "lexemes": null, - "lexical": [["Y"]], - "lexically": null, - "lexicographer": [["M", "S"]], - "lexicographer's": null, - "lexicographers": null, - "lexicographic": null, - "lexicographical": [["Y"]], - "lexicographically": null, - "lexicography": [["S", "M"]], - "lexicographies": null, - "lexicography's": null, - "lexicon": [["S", "M"]], - "lexicons": null, - "lexicon's": null, - "Lexie": [["M"]], - "Lexie's": null, - "Lexi": [["M", "S"]], - "Lexi's": null, - "Lexis": null, - "Lexine": [["M"]], - "Lexine's": null, - "Lexington": [["M"]], - "Lexington's": null, - "Lexus": [["M"]], - "Lexus's": null, - "Lexy": [["M"]], - "Lexy's": null, - "Leyden": [["M"]], - "Leyden's": null, - "Leyla": [["M"]], - "Leyla's": null, - "Lezley": [["M"]], - "Lezley's": null, - "Lezlie": [["M"]], - "Lezlie's": null, - "lg": null, - "Lhasa": [["S", "M"]], - "Lhasas": null, - "Lhasa's": null, - "Lhotse": [["M"]], - "Lhotse's": null, - "liability": [["S", "A", "M"]], - "liabilities": null, - "reliabilities": null, - "reliability": [["U", "M", "S"]], - "reliability's": null, - "liability's": null, - "liable": [["A", "P"]], - "reliable": [["U"]], - "reliableness": null, - "liableness": null, - "liaise": [["G", "S", "D"]], - "liaising": null, - "liaises": null, - "liaised": null, - "liaison": [["S", "M"]], - "liaisons": null, - "liaison's": null, - "Lia": [["M"]], - "Lia's": null, - "Liam": [["M"]], - "Liam's": null, - "Liana": [["M"]], - "Liana's": null, - "Liane": [["M"]], - "Liane's": null, - "Lian": [["M"]], - "Lian's": null, - "Lianna": [["M"]], - "Lianna's": null, - "Lianne": [["M"]], - "Lianne's": null, - "liar": [["M", "S"]], - "liar's": null, - "liars": null, - "libation": [["S", "M"]], - "libations": null, - "libation's": null, - "libbed": null, - "Libbey": [["M"]], - "Libbey's": null, - "Libbie": [["M"]], - "Libbie's": null, - "Libbi": [["M"]], - "Libbi's": null, - "libbing": null, - "Libby": [["M"]], - "Libby's": null, - "libeler": [["M"]], - "libeler's": null, - "libel": [["G", "M", "R", "D", "S", "Z"]], - "libeling": null, - "libel's": null, - "libeled": null, - "libels": null, - "libelers": null, - "libelous": [["Y"]], - "libelously": null, - "Liberace": [["M"]], - "Liberace's": null, - "liberalism": [["M", "S"]], - "liberalism's": null, - "liberalisms": null, - "liberality": [["M", "S"]], - "liberality's": null, - "liberalities": null, - "liberalization": [["S", "M"]], - "liberalizations": null, - "liberalization's": null, - "liberalized": [["U"]], - "unliberalized": null, - "liberalize": [["G", "Z", "S", "R", "D"]], - "liberalizing": null, - "liberalizers": null, - "liberalizes": null, - "liberalizer": [["M"]], - "liberalizer's": null, - "liberalness": [["M", "S"]], - "liberalness's": null, - "liberalnesses": null, - "liberal": [["Y", "S", "P"]], - "liberally": null, - "liberals": null, - "liberate": [["N", "G", "D", "S", "C", "X"]], - "liberation": [["M", "C"]], - "deliberation": null, - "liberating": null, - "deliberating": null, - "liberated": null, - "deliberated": null, - "liberates": null, - "deliberates": null, - "deliberations": null, - "liberations": null, - "liberationists": null, - "liberation's": null, - "deliberation's": null, - "liberator": [["S", "C", "M"]], - "liberators": null, - "deliberators": null, - "deliberator": null, - "deliberator's": null, - "liberator's": null, - "Liberia": [["M"]], - "Liberia's": null, - "Liberian": [["S"]], - "Liberians": null, - "libertarianism": [["M"]], - "libertarianism's": null, - "libertarian": [["M", "S"]], - "libertarian's": null, - "libertarians": null, - "libertine": [["M", "S"]], - "libertine's": null, - "libertines": null, - "liberty": [["M", "S"]], - "liberty's": null, - "liberties": null, - "libidinal": null, - "libidinousness": [["M"]], - "libidinousness's": null, - "libidinous": [["P", "Y"]], - "libidinously": null, - "libido": [["M", "S"]], - "libido's": null, - "libidos": null, - "Lib": [["M"]], - "Lib's": null, - "lib": [["M", "S"]], - "lib's": null, - "libs": null, - "librarian": [["M", "S"]], - "librarian's": null, - "librarians": null, - "library": [["M", "S"]], - "library's": null, - "libraries": null, - "Libra": [["S", "M"]], - "Libras": null, - "Libra's": null, - "libretoes": null, - "libretos": null, - "librettist": [["M", "S"]], - "librettist's": null, - "librettists": null, - "libretto": [["M", "S"]], - "libretto's": null, - "librettos": null, - "Libreville": [["M"]], - "Libreville's": null, - "Librium": [["M"]], - "Librium's": null, - "Libya": [["M"]], - "Libya's": null, - "Libyan": [["S"]], - "Libyans": null, - "lice": [["M"]], - "lice's": null, - "licensed": [["A", "U"]], - "relicensed": null, - "unlicensed": null, - "licensee": [["S", "M"]], - "licensees": null, - "licensee's": null, - "license": [["M", "G", "B", "R", "S", "D"]], - "license's": null, - "licensing": [["A"]], - "licensable": null, - "licenser": [["M"]], - "licenses": [["A"]], - "licenser's": null, - "relicenses": null, - "relicensing": null, - "licensor": [["M"]], - "licensor's": null, - "licentiate": [["M", "S"]], - "licentiate's": null, - "licentiates": null, - "licentiousness": [["M", "S"]], - "licentiousness's": null, - "licentiousnesses": null, - "licentious": [["P", "Y"]], - "licentiously": null, - "Licha": [["M"]], - "Licha's": null, - "lichee's": null, - "lichen": [["D", "M", "G", "S"]], - "lichened": null, - "lichen's": null, - "lichening": null, - "lichens": null, - "Lichtenstein": [["M"]], - "Lichtenstein's": null, - "Lichter": [["M"]], - "Lichter's": null, - "licit": [["Y"]], - "licitly": null, - "licked": [["U"]], - "unlicked": null, - "lickerish": null, - "licker": [["M"]], - "licker's": null, - "lick": [["G", "R", "D", "S", "J"]], - "licking": [["M"]], - "licks": null, - "lickings": null, - "licking's": null, - "licorice": [["S", "M"]], - "licorices": null, - "licorice's": null, - "Lida": [["M"]], - "Lida's": null, - "lidded": null, - "lidding": null, - "Lidia": [["M"]], - "Lidia's": null, - "lidless": null, - "lid": [["M", "S"]], - "lid's": null, - "lids": null, - "lido": [["M", "S"]], - "lido's": null, - "lidos": null, - "Lieberman": [["M"]], - "Lieberman's": null, - "Liebfraumilch": [["M"]], - "Liebfraumilch's": null, - "Liechtenstein": [["R", "M", "Z"]], - "Liechtensteiner": null, - "Liechtenstein's": null, - "Liechtensteiners": null, - "lied": [["M", "R"]], - "lied's": null, - "lieder": null, - "lie": [["D", "R", "S"]], - "lier": [["I", "M", "A"]], - "lies": [["A"]], - "Lief": [["M"]], - "Lief's": null, - "liefs": [["A"]], - "reliefs": null, - "lief": [["T", "S", "R"]], - "liefest": null, - "liefer": null, - "Liege": [["M"]], - "Liege's": null, - "liege": [["S", "R"]], - "lieges": null, - "lieger": null, - "Lie": [["M"]], - "Lie's": null, - "lien": [["S", "M"]], - "liens": null, - "lien's": null, - "inlier": null, - "inlier's": null, - "lier's": null, - "relier's": null, - "relier": null, - "relies": null, - "Liesa": [["M"]], - "Liesa's": null, - "lieu": [["S", "M"]], - "lieus": null, - "lieu's": null, - "lieut": null, - "lieutenancy": [["M", "S"]], - "lieutenancy's": null, - "lieutenancies": null, - "lieutenant": [["S", "M"]], - "lieutenants": null, - "lieutenant's": null, - "Lieut": [["M"]], - "Lieut's": null, - "lifeblood": [["S", "M"]], - "lifebloods": null, - "lifeblood's": null, - "lifeboat": [["S", "M"]], - "lifeboats": null, - "lifeboat's": null, - "lifebuoy": [["S"]], - "lifebuoys": null, - "lifeforms": null, - "lifeguard": [["M", "D", "S", "G"]], - "lifeguard's": null, - "lifeguarded": null, - "lifeguards": null, - "lifeguarding": null, - "lifelessness": [["S", "M"]], - "lifelessnesses": null, - "lifelessness's": null, - "lifeless": [["P", "Y"]], - "lifelessly": null, - "lifelikeness": [["M"]], - "lifelikeness's": null, - "lifelike": [["P"]], - "lifeline": [["S", "M"]], - "lifelines": null, - "lifeline's": null, - "lifelong": null, - "life": [["M", "Z", "R"]], - "life's": null, - "lifers": null, - "lifer": [["M"]], - "lifer's": null, - "lifesaver": [["S", "M"]], - "lifesavers": null, - "lifesaver's": null, - "lifesaving": [["S"]], - "lifesavings": null, - "lifespan": [["S"]], - "lifespans": null, - "lifestyle": [["S"]], - "lifestyles": null, - "lifetaking": null, - "lifetime": [["M", "S"]], - "lifetime's": null, - "lifetimes": null, - "lifework": [["M", "S"]], - "lifework's": null, - "lifeworks": null, - "LIFO": null, - "lifter": [["M"]], - "lifter's": null, - "lift": [["G", "Z", "M", "R", "D", "S"]], - "lifting": null, - "lifters": null, - "lift's": null, - "lifted": null, - "lifts": null, - "liftoff": [["M", "S"]], - "liftoff's": null, - "liftoffs": null, - "ligament": [["M", "S"]], - "ligament's": null, - "ligaments": null, - "ligand": [["M", "S"]], - "ligand's": null, - "ligands": null, - "ligate": [["X", "S", "D", "N", "G"]], - "ligations": null, - "ligates": null, - "ligated": null, - "ligation": [["M"]], - "ligating": null, - "ligation's": null, - "ligature": [["D", "S", "G", "M"]], - "ligatured": null, - "ligatures": null, - "ligaturing": null, - "ligature's": null, - "light": [["A", "D", "S", "C", "G"]], - "relight": null, - "relighted": null, - "relights": null, - "relighting": null, - "lighted": [["U"]], - "lights": null, - "delights": null, - "delight": null, - "delighting": null, - "lighting": [["M", "S"]], - "unlighted": null, - "lightener": [["M"]], - "lightener's": null, - "lightening": [["M"]], - "lightening's": null, - "lighten": [["Z", "G", "D", "R", "S"]], - "lighteners": null, - "lightened": null, - "lightens": null, - "lighter": [["C", "M"]], - "delighter": null, - "delighter's": null, - "lighter's": null, - "lightered": null, - "lightering": null, - "lighters": null, - "lightest": null, - "lightface": [["S", "D", "M"]], - "lightfaces": null, - "lightfaced": null, - "lightface's": null, - "lightheaded": null, - "lightheartedness": [["M", "S"]], - "lightheartedness's": null, - "lightheartednesses": null, - "lighthearted": [["P", "Y"]], - "lightheartedly": null, - "lighthouse": [["M", "S"]], - "lighthouse's": null, - "lighthouses": null, - "lighting's": null, - "lightings": null, - "lightly": null, - "lightness": [["M", "S"]], - "lightness's": null, - "lightnesses": null, - "lightning": [["S", "M", "D"]], - "lightnings": null, - "lightning's": null, - "lightninged": null, - "lightproof": null, - "light's": null, - "lightship": [["S", "M"]], - "lightships": null, - "lightship's": null, - "lightweight": [["S"]], - "lightweights": null, - "ligneous": null, - "lignite": [["M", "S"]], - "lignite's": null, - "lignites": null, - "lignum": null, - "likability": [["M", "S"]], - "likability's": null, - "likabilities": null, - "likableness": [["M", "S"]], - "likableness's": null, - "likablenesses": null, - "likable": [["P"]], - "likeability's": null, - "liked": [["E"]], - "disliked": null, - "likelihood": [["M", "S", "U"]], - "likelihood's": null, - "unlikelihood's": null, - "likelihoods": null, - "unlikelihoods": null, - "unlikelihood": null, - "likely": [["U", "P", "R", "T"]], - "unlikely": null, - "unlikeliness": [["S"]], - "unlikelier": null, - "likeliness": null, - "likelier": null, - "likeliest": null, - "likeness": [["M", "S", "U"]], - "likeness's": null, - "unlikeness's": null, - "likenesses": null, - "unlikenesses": null, - "unlikeness": null, - "liken": [["G", "S", "D"]], - "likening": null, - "likens": null, - "likened": null, - "liker": [["E"]], - "disliker": null, - "liker's": null, - "likes": [["E"]], - "dislikes": null, - "likest": null, - "like": [["U", "S", "P", "B", "Y"]], - "unlike": null, - "unlikes": null, - "unlikable": null, - "likewise": null, - "liking": [["S", "M"]], - "likings": null, - "liking's": null, - "lilac": [["M", "S"]], - "lilac's": null, - "lilacs": null, - "Lilah": [["M"]], - "Lilah's": null, - "Lila": [["S", "M"]], - "Lilas": null, - "Lila's": null, - "Lilia": [["M", "S"]], - "Lilia's": null, - "Lilias": null, - "Liliana": [["M"]], - "Liliana's": null, - "Liliane": [["M"]], - "Liliane's": null, - "Lilian": [["M"]], - "Lilian's": null, - "Lilith": [["M"]], - "Lilith's": null, - "Liliuokalani": [["M"]], - "Liliuokalani's": null, - "Lilla": [["M"]], - "Lilla's": null, - "Lille": [["M"]], - "Lille's": null, - "Lillian": [["M"]], - "Lillian's": null, - "Lillie": [["M"]], - "Lillie's": null, - "Lilli": [["M", "S"]], - "Lilli's": null, - "Lillis": null, - "lilliputian": [["S"]], - "lilliputians": null, - "Lilliputian": [["S", "M"]], - "Lilliputians": null, - "Lilliputian's": null, - "Lilliput": [["M"]], - "Lilliput's": null, - "Lilllie": [["M"]], - "Lilllie's": null, - "Lilly": [["M"]], - "Lilly's": null, - "Lil": [["M", "Y"]], - "Lil's": null, - "Lilongwe": [["M"]], - "Lilongwe's": null, - "lilting": [["Y", "P"]], - "liltingly": null, - "liltingness": null, - "lilt": [["M", "D", "S", "G"]], - "lilt's": null, - "lilted": null, - "lilts": null, - "Lilyan": [["M"]], - "Lilyan's": null, - "Lily": [["M"]], - "Lily's": null, - "lily": [["M", "S", "D"]], - "lily's": null, - "lilies": null, - "lilied": null, - "Lima": [["M"]], - "Lima's": null, - "Limbaugh": [["M"]], - "Limbaugh's": null, - "limbered": [["U"]], - "unlimbered": null, - "limberness": [["S", "M"]], - "limbernesses": null, - "limberness's": null, - "limber": [["R", "D", "Y", "T", "G", "P"]], - "limberer": null, - "limberly": null, - "limberest": null, - "limbering": null, - "limbers": [["U"]], - "unlimbers": null, - "limbic": null, - "limbless": null, - "Limbo": null, - "limbo": [["G", "D", "M", "S"]], - "limboing": null, - "limboed": null, - "limbo's": null, - "limbos": null, - "limb": [["S", "G", "Z", "R", "D", "M"]], - "limbs": null, - "limbing": null, - "limbed": null, - "limb's": null, - "Limburger": [["S", "M"]], - "Limburgers": null, - "Limburger's": null, - "limeade": [["S", "M"]], - "limeades": null, - "limeade's": null, - "lime": [["D", "S", "M", "G"]], - "limed": null, - "limes": null, - "lime's": null, - "liming": null, - "limekiln": [["M"]], - "limekiln's": null, - "limelight": [["D", "M", "G", "S"]], - "limelighted": null, - "limelight's": null, - "limelighting": null, - "limelights": null, - "limerick": [["S", "M"]], - "limericks": null, - "limerick's": null, - "limestone": [["S", "M"]], - "limestones": null, - "limestone's": null, - "limitability": null, - "limitably": null, - "limitation": [["M", "C", "S"]], - "limitation's": null, - "delimitation's": null, - "delimitation": null, - "delimitations": null, - "limitations": null, - "limit": [["C", "S", "Z", "G", "R", "D"]], - "delimit": null, - "delimits": null, - "delimiters": null, - "delimiting": null, - "delimiter": null, - "delimited": null, - "limits": null, - "limiters": null, - "limiting": [["S"]], - "limiter": [["M"]], - "limited": [["P", "S", "Y"]], - "limitedly": [["U"]], - "unlimitedly": null, - "limitedness": [["M"]], - "limitedness's": null, - "limiteds": null, - "limiter's": null, - "limitings": null, - "limitlessness": [["S", "M"]], - "limitlessnesses": null, - "limitlessness's": null, - "limitless": [["P", "Y"]], - "limitlessly": null, - "limit's": null, - "limn": [["G", "S", "D"]], - "limning": null, - "limns": null, - "limned": null, - "Limoges": [["M"]], - "Limoges's": null, - "limo": [["S"]], - "limos": null, - "limousine": [["S", "M"]], - "limousines": null, - "limousine's": null, - "limper": [["M"]], - "limper's": null, - "limpet": [["S", "M"]], - "limpets": null, - "limpet's": null, - "limpidity": [["M", "S"]], - "limpidity's": null, - "limpidities": null, - "limpidness": [["S", "M"]], - "limpidnesses": null, - "limpidness's": null, - "limpid": [["Y", "P"]], - "limpidly": null, - "limpness": [["M", "S"]], - "limpness's": null, - "limpnesses": null, - "Limpopo": [["M"]], - "Limpopo's": null, - "limp": [["S", "G", "T", "P", "Y", "R", "D"]], - "limps": null, - "limping": null, - "limpest": null, - "limply": null, - "limped": null, - "Li": [["M", "Y"]], - "Li's": null, - "limy": [["T", "R"]], - "limiest": null, - "limier": null, - "linage": [["M", "S"]], - "linage's": null, - "linages": null, - "Lina": [["M"]], - "Lina's": null, - "linchpin": [["M", "S"]], - "linchpin's": null, - "linchpins": null, - "Linc": [["M"]], - "Linc's": null, - "Lincoln": [["S", "M"]], - "Lincolns": null, - "Lincoln's": null, - "Linda": [["M"]], - "Linda's": null, - "Lindbergh": [["M"]], - "Lindbergh's": null, - "Lindberg": [["M"]], - "Lindberg's": null, - "linden": [["M", "S"]], - "linden's": null, - "lindens": null, - "Lindholm": [["M"]], - "Lindholm's": null, - "Lindie": [["M"]], - "Lindie's": null, - "Lindi": [["M"]], - "Lindi's": null, - "Lind": [["M"]], - "Lind's": null, - "Lindon": [["M"]], - "Lindon's": null, - "Lindquist": [["M"]], - "Lindquist's": null, - "Lindsay": [["M"]], - "Lindsay's": null, - "Lindsey": [["M"]], - "Lindsey's": null, - "Lindstrom": [["M"]], - "Lindstrom's": null, - "Lindsy": [["M"]], - "Lindsy's": null, - "Lindy": [["M"]], - "Lindy's": null, - "line": [["A", "G", "D", "S"]], - "reline": null, - "relining": null, - "relined": null, - "relines": null, - "lining": [["S", "M"]], - "lined": [["U"]], - "lines": null, - "lineage": [["S", "M"]], - "lineages": null, - "lineage's": null, - "lineal": [["Y"]], - "lineally": null, - "Linea": [["M"]], - "Linea's": null, - "lineament": [["M", "S"]], - "lineament's": null, - "lineaments": null, - "linearity": [["M", "S"]], - "linearity's": null, - "linearities": null, - "linearize": [["S", "D", "G", "N", "B"]], - "linearizes": null, - "linearized": null, - "linearizing": null, - "linearizion": null, - "linearizable": null, - "linear": [["Y"]], - "linearly": null, - "linebacker": [["S", "M"]], - "linebackers": null, - "linebacker's": null, - "unlined": null, - "linefeed": null, - "Linell": [["M"]], - "Linell's": null, - "lineman": [["M"]], - "lineman's": null, - "linemen": null, - "linen": [["S", "M"]], - "linens": null, - "linen's": null, - "liner": [["S", "M"]], - "liners": null, - "liner's": null, - "line's": null, - "linesman": [["M"]], - "linesman's": null, - "linesmen": null, - "Linet": [["M"]], - "Linet's": null, - "Linette": [["M"]], - "Linette's": null, - "lineup": [["S"]], - "lineups": null, - "lingerer": [["M"]], - "lingerer's": null, - "lingerie": [["S", "M"]], - "lingeries": null, - "lingerie's": null, - "lingering": [["Y"]], - "lingeringly": null, - "linger": [["Z", "G", "J", "R", "D"]], - "lingerers": null, - "lingerings": null, - "lingered": null, - "lingoes": null, - "lingo": [["M"]], - "lingo's": null, - "lingual": [["S", "Y"]], - "linguals": null, - "lingually": null, - "lingua": [["M"]], - "lingua's": null, - "linguine": null, - "linguini's": null, - "linguistically": null, - "linguistic": [["S"]], - "linguistics": [["M"]], - "linguistics's": null, - "linguist": [["S", "M"]], - "linguists": null, - "linguist's": null, - "ling": [["Z", "R"]], - "lingers": null, - "liniment": [["M", "S"]], - "liniment's": null, - "liniments": null, - "linings": null, - "lining's": null, - "linkable": null, - "linkage": [["S", "M"]], - "linkages": null, - "linkage's": null, - "linked": [["A"]], - "relinked": null, - "linker": [["S"]], - "linkers": null, - "linking": [["S"]], - "linkings": null, - "Link": [["M"]], - "Link's": null, - "link's": null, - "linkup": [["S"]], - "linkups": null, - "link": [["U", "S", "G", "D"]], - "unlink": null, - "unlinks": null, - "unlinking": null, - "unlinked": null, - "links": null, - "Lin": [["M"]], - "Lin's": null, - "Linnaeus": [["M"]], - "Linnaeus's": null, - "Linnea": [["M"]], - "Linnea's": null, - "Linnell": [["M"]], - "Linnell's": null, - "Linnet": [["M"]], - "Linnet's": null, - "linnet": [["S", "M"]], - "linnets": null, - "linnet's": null, - "Linnie": [["M"]], - "Linnie's": null, - "Linn": [["M"]], - "Linn's": null, - "Linoel": [["M"]], - "Linoel's": null, - "linoleum": [["S", "M"]], - "linoleums": null, - "linoleum's": null, - "lino": [["M"]], - "lino's": null, - "Linotype": [["M"]], - "Linotype's": null, - "linseed": [["S", "M"]], - "linseeds": null, - "linseed's": null, - "lintel": [["S", "M"]], - "lintels": null, - "lintel's": null, - "linter": [["M"]], - "linter's": null, - "Linton": [["M"]], - "Linton's": null, - "lint": [["S", "M", "R"]], - "lints": null, - "lint's": null, - "linty": [["R", "S", "T"]], - "lintier": null, - "linties": null, - "lintiest": null, - "Linus": [["M"]], - "Linus's": null, - "Linux": [["M"]], - "Linux's": null, - "Linwood": [["M"]], - "Linwood's": null, - "Linzy": [["M"]], - "Linzy's": null, - "Lionello": [["M"]], - "Lionello's": null, - "Lionel": [["M"]], - "Lionel's": null, - "lioness": [["S", "M"]], - "lionesses": null, - "lioness's": null, - "lionhearted": null, - "lionization": [["S", "M"]], - "lionizations": null, - "lionization's": null, - "lionizer": [["M"]], - "lionizer's": null, - "lionize": [["Z", "R", "S", "D", "G"]], - "lionizers": null, - "lionizes": null, - "lionized": null, - "lionizing": null, - "Lion's": null, - "lion": [["M", "S"]], - "lion's": null, - "lions": null, - "lipase": [["M"]], - "lipase's": null, - "lipid": [["M", "S"]], - "lipid's": null, - "lipids": null, - "lip": [["M", "S"]], - "lip's": null, - "lips": null, - "liposuction": [["S"]], - "liposuctions": null, - "lipped": null, - "lipper": null, - "Lippi": [["M"]], - "Lippi's": null, - "lipping": null, - "Lippmann": [["M"]], - "Lippmann's": null, - "lippy": [["T", "R"]], - "lippiest": null, - "lippier": null, - "lipread": [["G", "S", "R", "J"]], - "lipreading": null, - "lipreads": null, - "lipreader": null, - "lipreadings": null, - "Lipschitz": [["M"]], - "Lipschitz's": null, - "Lipscomb": [["M"]], - "Lipscomb's": null, - "lipstick": [["M", "D", "S", "G"]], - "lipstick's": null, - "lipsticked": null, - "lipsticks": null, - "lipsticking": null, - "Lipton": [["M"]], - "Lipton's": null, - "liq": null, - "liquefaction": [["S", "M"]], - "liquefactions": null, - "liquefaction's": null, - "liquefier": [["M"]], - "liquefier's": null, - "liquefy": [["D", "R", "S", "G", "Z"]], - "liquefied": null, - "liquefies": null, - "liquefying": null, - "liquefiers": null, - "liqueur": [["D", "M", "S", "G"]], - "liqueured": null, - "liqueur's": null, - "liqueurs": null, - "liqueuring": null, - "liquidate": [["G", "N", "X", "S", "D"]], - "liquidating": null, - "liquidation": [["M"]], - "liquidations": null, - "liquidates": null, - "liquidated": null, - "liquidation's": null, - "liquidator": [["S", "M"]], - "liquidators": null, - "liquidator's": null, - "liquidity": [["S", "M"]], - "liquidities": null, - "liquidity's": null, - "liquidizer": [["M"]], - "liquidizer's": null, - "liquidize": [["Z", "G", "S", "R", "D"]], - "liquidizers": null, - "liquidizing": null, - "liquidizes": null, - "liquidized": null, - "liquidness": [["M"]], - "liquidness's": null, - "liquid": [["S", "P", "M", "Y"]], - "liquids": null, - "liquid's": null, - "liquidly": null, - "liquorice": [["S", "M"]], - "liquorices": null, - "liquorice's": null, - "liquorish": null, - "liquor": [["S", "D", "M", "G"]], - "liquors": null, - "liquored": null, - "liquor's": null, - "liquoring": null, - "lira": [["M"]], - "lira's": null, - "Lira": [["M"]], - "Lira's": null, - "lire": null, - "Lisabeth": [["M"]], - "Lisabeth's": null, - "Lisa": [["M"]], - "Lisa's": null, - "Lisbeth": [["M"]], - "Lisbeth's": null, - "Lisbon": [["M"]], - "Lisbon's": null, - "Lise": [["M"]], - "Lise's": null, - "Lisetta": [["M"]], - "Lisetta's": null, - "Lisette": [["M"]], - "Lisette's": null, - "Lisha": [["M"]], - "Lisha's": null, - "Lishe": [["M"]], - "Lishe's": null, - "Lisle": [["M"]], - "Lisle's": null, - "lisle": [["S", "M"]], - "lisles": null, - "lisle's": null, - "lisper": [["M"]], - "lisper's": null, - "lisp": [["M", "R", "D", "G", "Z", "S"]], - "lisp's": null, - "lisped": null, - "lisping": null, - "lispers": null, - "lisps": null, - "Lissajous": [["M"]], - "Lissajous's": null, - "Lissa": [["M"]], - "Lissa's": null, - "Lissie": [["M"]], - "Lissie's": null, - "Lissi": [["M"]], - "Lissi's": null, - "Liss": [["M"]], - "Liss's": null, - "lissomeness": [["M"]], - "lissomeness's": null, - "lissome": [["P"]], - "lissomness": [["M"]], - "lissomness's": null, - "Lissy": [["M"]], - "Lissy's": null, - "listed": [["U"]], - "unlisted": null, - "listener": [["M"]], - "listener's": null, - "listen": [["Z", "G", "R", "D"]], - "listeners": null, - "listening": null, - "listened": null, - "Listerine": [["M"]], - "Listerine's": null, - "lister": [["M"]], - "lister's": null, - "Lister": [["M"]], - "Lister's": null, - "listing": [["M"]], - "listing's": null, - "list": [["J", "M", "R", "D", "N", "G", "Z", "X", "S"]], - "listings": null, - "list's": null, - "listers": null, - "listens": null, - "lists": null, - "listlessness": [["S", "M"]], - "listlessnesses": null, - "listlessness's": null, - "listless": [["P", "Y"]], - "listlessly": null, - "Liston": [["M"]], - "Liston's": null, - "Liszt": [["M"]], - "Liszt's": null, - "Lita": [["M"]], - "Lita's": null, - "litany": [["M", "S"]], - "litany's": null, - "litanies": null, - "litchi": [["S", "M"]], - "litchis": null, - "litchi's": null, - "literacy": [["M", "S"]], - "literacy's": null, - "literacies": null, - "literalism": [["M"]], - "literalism's": null, - "literalistic": null, - "literalness": [["M", "S"]], - "literalness's": null, - "literalnesses": null, - "literal": [["P", "Y", "S"]], - "literally": null, - "literals": null, - "literariness": [["S", "M"]], - "literarinesses": null, - "literariness's": null, - "literary": [["P"]], - "literate": [["Y", "N", "S", "P"]], - "literately": null, - "literation": [["M"]], - "literates": null, - "literateness": null, - "literati": null, - "literation's": null, - "literature": [["S", "M"]], - "literatures": null, - "literature's": null, - "liter": [["M"]], - "liter's": null, - "lite": [["S"]], - "lites": null, - "litheness": [["S", "M"]], - "lithenesses": null, - "litheness's": null, - "lithe": [["P", "R", "T", "Y"]], - "lither": null, - "lithest": null, - "lithely": null, - "lithesome": null, - "lithium": [["S", "M"]], - "lithiums": null, - "lithium's": null, - "lithograph": [["D", "R", "M", "G", "Z"]], - "lithographed": null, - "lithographer": [["M"]], - "lithograph's": null, - "lithographing": null, - "lithographers": null, - "lithographer's": null, - "lithographic": null, - "lithographically": null, - "lithographs": null, - "lithography": [["M", "S"]], - "lithography's": null, - "lithographies": null, - "lithology": [["M"]], - "lithology's": null, - "lithosphere": [["M", "S"]], - "lithosphere's": null, - "lithospheres": null, - "lithospheric": null, - "Lithuania": [["M"]], - "Lithuania's": null, - "Lithuanian": [["S"]], - "Lithuanians": null, - "litigant": [["M", "S"]], - "litigant's": null, - "litigants": null, - "litigate": [["N", "G", "X", "D", "S"]], - "litigation": [["M"]], - "litigating": null, - "litigations": null, - "litigated": null, - "litigates": null, - "litigation's": null, - "litigator": [["S", "M"]], - "litigators": null, - "litigator's": null, - "litigiousness": [["M", "S"]], - "litigiousness's": null, - "litigiousnesses": null, - "litigious": [["P", "Y"]], - "litigiously": null, - "litmus": [["S", "M"]], - "litmuses": null, - "litmus's": null, - "litotes": [["M"]], - "litotes's": null, - "lit": [["R", "Z", "S"]], - "liters": null, - "lits": null, - "litt�rateur": [["S"]], - "litt�rateurs": null, - "litterbug": [["S", "M"]], - "litterbugs": null, - "litterbug's": null, - "litter": [["S", "Z", "G", "R", "D", "M"]], - "litters": null, - "litterers": null, - "littering": null, - "litterer": null, - "littered": null, - "litter's": null, - "Little": [["M"]], - "Little's": null, - "littleneck": [["M"]], - "littleneck's": null, - "littleness": [["S", "M"]], - "littlenesses": null, - "littleness's": null, - "little": [["R", "S", "P", "T"]], - "littler": null, - "littles": null, - "littlest": null, - "Littleton": [["M"]], - "Littleton's": null, - "Litton": [["M"]], - "Litton's": null, - "littoral": [["S"]], - "littorals": null, - "liturgical": [["Y"]], - "liturgically": null, - "liturgic": [["S"]], - "liturgics": [["M"]], - "liturgics's": null, - "liturgist": [["M", "S"]], - "liturgist's": null, - "liturgists": null, - "liturgy": [["S", "M"]], - "liturgies": null, - "liturgy's": null, - "Liuka": [["M"]], - "Liuka's": null, - "livability": [["M", "S"]], - "livability's": null, - "livabilities": null, - "livableness": [["M"]], - "livableness's": null, - "livable": [["U"]], - "unlivable": null, - "livably": null, - "Liva": [["M"]], - "Liva's": null, - "lived": [["A"]], - "relived": null, - "livelihood": [["S", "M"]], - "livelihoods": null, - "livelihood's": null, - "liveliness": [["S", "M"]], - "livelinesses": null, - "liveliness's": null, - "livelong": [["S"]], - "livelongs": null, - "lively": [["R", "T", "P"]], - "livelier": null, - "liveliest": null, - "liveness": [["M"]], - "liveness's": null, - "liven": [["S", "D", "G"]], - "livens": null, - "livened": null, - "livening": null, - "liver": [["C", "S", "G", "D"]], - "livers": null, - "livering": null, - "livered": null, - "liveried": null, - "liverish": null, - "Livermore": [["M"]], - "Livermore's": null, - "Liverpool": [["M"]], - "Liverpool's": null, - "Liverpudlian": [["M", "S"]], - "Liverpudlian's": null, - "Liverpudlians": null, - "liver's": null, - "liverwort": [["S", "M"]], - "liverworts": null, - "liverwort's": null, - "liverwurst": [["S", "M"]], - "liverwursts": null, - "liverwurst's": null, - "livery": [["C", "M", "S"]], - "deliveries": null, - "livery's": null, - "liveries": null, - "liveryman": [["M", "C"]], - "liveryman's": null, - "deliveryman's": null, - "deliveryman": null, - "liverymen": [["C"]], - "lives": [["A"]], - "relives": null, - "lives's": null, - "livestock": [["S", "M"]], - "livestocks": null, - "livestock's": null, - "live": [["Y", "H", "Z", "T", "G", "J", "D", "S", "R", "P", "B"]], - "liveth": null, - "livest": null, - "living": [["Y", "P"]], - "livings": null, - "Livia": [["M"]], - "Livia's": null, - "lividness": [["M"]], - "lividness's": null, - "livid": [["Y", "P"]], - "lividly": null, - "livingness": [["M"]], - "livingness's": null, - "Livingstone": [["M"]], - "Livingstone's": null, - "Livingston": [["M"]], - "Livingston's": null, - "livingly": null, - "Liv": [["M"]], - "Liv's": null, - "Livonia": [["M"]], - "Livonia's": null, - "Livvie": [["M"]], - "Livvie's": null, - "Livvy": [["M"]], - "Livvy's": null, - "Livvyy": [["M"]], - "Livvyy's": null, - "Livy": [["M"]], - "Livy's": null, - "Lizabeth": [["M"]], - "Lizabeth's": null, - "Liza": [["M"]], - "Liza's": null, - "lizard": [["M", "S"]], - "lizard's": null, - "lizards": null, - "Lizbeth": [["M"]], - "Lizbeth's": null, - "Lizette": [["M"]], - "Lizette's": null, - "Liz": [["M"]], - "Liz's": null, - "Lizzie": [["M"]], - "Lizzie's": null, - "Lizzy": [["M"]], - "Lizzy's": null, - "l": [["J", "G", "V", "X", "T"]], - "lings": null, - "Ljubljana": [["M"]], - "Ljubljana's": null, - "LL": null, - "llama": [["S", "M"]], - "llamas": null, - "llama's": null, - "llano": [["S", "M"]], - "llanos": null, - "llano's": null, - "LLB": null, - "ll": [["C"]], - "LLD": null, - "Llewellyn": [["M"]], - "Llewellyn's": null, - "Lloyd": [["M"]], - "Lloyd's": null, - "Llywellyn": [["M"]], - "Llywellyn's": null, - "LNG": null, - "lo": null, - "loadable": null, - "loaded": [["A"]], - "reloaded": null, - "loader": [["M", "U"]], - "loader's": null, - "unloader's": null, - "unloader": null, - "loading": [["M", "S"]], - "loading's": null, - "loadings": null, - "load's": [["A"]], - "reload's": null, - "loads": [["A"]], - "reloads": null, - "loadstar's": null, - "loadstone's": null, - "load": [["S", "U", "R", "D", "Z", "G"]], - "unloads": null, - "unload": null, - "unloaded": null, - "unloaders": null, - "unloading": null, - "loaders": null, - "loafer": [["M"]], - "loafer's": null, - "Loafer": [["S"]], - "Loafers": null, - "loaf": [["S", "R", "D", "M", "G", "Z"]], - "loafs": null, - "loafed": null, - "loaf's": null, - "loafing": null, - "loafers": null, - "loam": [["S", "M", "D", "G"]], - "loams": null, - "loam's": null, - "loamed": null, - "loaming": null, - "loamy": [["R", "T"]], - "loamier": null, - "loamiest": null, - "loaner": [["M"]], - "loaner's": null, - "loaning": [["M"]], - "loaning's": null, - "loan": [["S", "G", "Z", "R", "D", "M", "B"]], - "loans": null, - "loaners": null, - "loaned": null, - "loan's": null, - "loanable": null, - "loansharking": [["S"]], - "loansharkings": null, - "loanword": [["S"]], - "loanwords": null, - "loathe": null, - "loather": [["M"]], - "loather's": null, - "loathing": [["M"]], - "loathing's": null, - "loath": [["J", "P", "S", "R", "D", "Y", "Z", "G"]], - "loathings": null, - "loathness": [["M"]], - "loathes": null, - "loathed": null, - "loathly": null, - "loathers": null, - "loathness's": null, - "loathsomeness": [["M", "S"]], - "loathsomeness's": null, - "loathsomenesses": null, - "loathsome": [["P", "Y"]], - "loathsomely": null, - "loaves": [["M"]], - "loaves's": null, - "Lobachevsky": [["M"]], - "Lobachevsky's": null, - "lobar": null, - "lobbed": null, - "lobber": [["M", "S"]], - "lobber's": null, - "lobbers": null, - "lobbing": null, - "lobby": [["G", "S", "D", "M"]], - "lobbying": null, - "lobbies": null, - "lobbied": null, - "lobby's": null, - "lobbyist": [["M", "S"]], - "lobbyist's": null, - "lobbyists": null, - "lobe": [["S", "M"]], - "lobes": null, - "lobe's": null, - "lob": [["M", "D", "S", "G"]], - "lob's": null, - "lobed": null, - "lobs": null, - "lobing": null, - "lobotomist": null, - "lobotomize": [["G", "D", "S"]], - "lobotomizing": null, - "lobotomized": null, - "lobotomizes": null, - "lobotomy": [["M", "S"]], - "lobotomy's": null, - "lobotomies": null, - "lobster": [["M", "D", "G", "S"]], - "lobster's": null, - "lobstered": null, - "lobstering": null, - "lobsters": null, - "lobularity": null, - "lobular": [["Y"]], - "lobularly": null, - "lobule": [["S", "M"]], - "lobules": null, - "lobule's": null, - "locale": [["M", "S"]], - "locale's": null, - "locales": null, - "localisms": null, - "locality": [["M", "S"]], - "locality's": null, - "localities": null, - "localization": [["M", "S"]], - "localization's": null, - "localizations": null, - "localized": [["U"]], - "unlocalized": null, - "localizer": [["M"]], - "localizer's": null, - "localizes": [["U"]], - "unlocalizes": null, - "localize": [["Z", "G", "D", "R", "S"]], - "localizers": null, - "localizing": null, - "local": [["S", "G", "D", "Y"]], - "locals": null, - "localing": null, - "localed": null, - "locally": null, - "locatable": null, - "locate": [["A", "X", "E", "S", "D", "G", "N"]], - "relocate": [["B"]], - "relocations": null, - "relocates": null, - "relocated": null, - "relocating": null, - "relocation": null, - "locations": null, - "dislocations": null, - "dislocate": null, - "dislocates": null, - "dislocated": null, - "dislocating": null, - "dislocation": null, - "locates": null, - "located": null, - "locating": null, - "location": [["E", "M", "A"]], - "locater": [["M"]], - "locater's": null, - "locational": [["Y"]], - "locationally": null, - "dislocation's": null, - "location's": null, - "relocation's": null, - "locative": [["S"]], - "locatives": null, - "locator's": null, - "Lochinvar": [["M"]], - "Lochinvar's": null, - "loch": [["M"]], - "loch's": null, - "lochs": null, - "loci": [["M"]], - "loci's": null, - "lockable": null, - "Lockean": [["M"]], - "Lockean's": null, - "locked": [["A"]], - "relocked": null, - "Locke": [["M"]], - "Locke's": null, - "locker": [["S", "M"]], - "lockers": null, - "locker's": null, - "locket": [["S", "M"]], - "lockets": null, - "locket's": null, - "Lockhart": [["M"]], - "Lockhart's": null, - "Lockheed": [["M"]], - "Lockheed's": null, - "Lockian": [["M"]], - "Lockian's": null, - "locking": [["S"]], - "lockings": null, - "lockjaw": [["S", "M"]], - "lockjaws": null, - "lockjaw's": null, - "Lock": [["M"]], - "Lock's": null, - "locknut": [["M"]], - "locknut's": null, - "lockout": [["M", "S"]], - "lockout's": null, - "lockouts": null, - "lock's": null, - "locksmithing": [["M"]], - "locksmithing's": null, - "locksmith": [["M", "G"]], - "locksmith's": null, - "locksmiths": null, - "lockstep": [["S"]], - "locksteps": null, - "lock": [["U", "G", "S", "D"]], - "unlock": null, - "unlocking": null, - "unlocks": null, - "unlocked": null, - "locks": null, - "lockup": [["M", "S"]], - "lockup's": null, - "lockups": null, - "Lockwood": [["M"]], - "Lockwood's": null, - "locomotion": [["S", "M"]], - "locomotions": null, - "locomotion's": null, - "locomotive": [["Y", "M", "S"]], - "locomotively": null, - "locomotive's": null, - "locomotives": null, - "locomotor": null, - "locomotory": null, - "loco": [["S", "D", "M", "G"]], - "locos": null, - "locoed": null, - "loco's": null, - "locoing": null, - "locoweed": [["M", "S"]], - "locoweed's": null, - "locoweeds": null, - "locus": [["M"]], - "locus's": null, - "locust": [["S", "M"]], - "locusts": null, - "locust's": null, - "locution": [["M", "S"]], - "locution's": null, - "locutions": null, - "lode": [["S", "M"]], - "lodes": null, - "lode's": null, - "lodestar": [["M", "S"]], - "lodestar's": null, - "lodestars": null, - "lodestone": [["M", "S"]], - "lodestone's": null, - "lodestones": null, - "lodged": [["E"]], - "dislodged": null, - "lodge": [["G", "M", "Z", "S", "R", "D", "J"]], - "lodging": [["M"]], - "lodge's": null, - "lodgers": null, - "lodges": [["E"]], - "lodger": [["M"]], - "lodgings": null, - "Lodge": [["M"]], - "Lodge's": null, - "lodgepole": null, - "lodger's": null, - "dislodges": null, - "lodging's": null, - "lodgment": [["M"]], - "lodgment's": null, - "Lodovico": [["M"]], - "Lodovico's": null, - "Lodowick": [["M"]], - "Lodowick's": null, - "Lodz": null, - "Loeb": [["M"]], - "Loeb's": null, - "Loella": [["M"]], - "Loella's": null, - "Loewe": [["M"]], - "Loewe's": null, - "Loewi": [["M"]], - "Loewi's": null, - "lofter": [["M"]], - "lofter's": null, - "loftily": null, - "loftiness": [["S", "M"]], - "loftinesses": null, - "loftiness's": null, - "loft": [["S", "G", "M", "R", "D"]], - "lofts": null, - "lofting": null, - "loft's": null, - "lofted": null, - "lofty": [["P", "T", "R"]], - "loftiest": null, - "loftier": null, - "loganberry": [["S", "M"]], - "loganberries": null, - "loganberry's": null, - "Logan": [["M"]], - "Logan's": null, - "logarithmic": null, - "logarithmically": null, - "logarithm": [["M", "S"]], - "logarithm's": null, - "logarithms": null, - "logbook": [["M", "S"]], - "logbook's": null, - "logbooks": null, - "loge": [["S", "M", "N", "X"]], - "loges": null, - "loge's": null, - "logion": [["M"]], - "logions": null, - "logged": [["U"]], - "unlogged": null, - "loggerhead": [["S", "M"]], - "loggerheads": null, - "loggerhead's": null, - "logger": [["S", "M"]], - "loggers": null, - "logger's": null, - "loggia": [["S", "M"]], - "loggias": null, - "loggia's": null, - "logging": [["M", "S"]], - "logging's": null, - "loggings": null, - "logicality": [["M", "S"]], - "logicality's": null, - "logicalities": null, - "logicalness": [["M"]], - "logicalness's": null, - "logical": [["S", "P", "Y"]], - "logicals": null, - "logically": null, - "logician": [["S", "M"]], - "logicians": null, - "logician's": null, - "logic": [["S", "M"]], - "logics": null, - "logic's": null, - "login": [["S"]], - "logins": null, - "logion's": null, - "logistical": [["Y"]], - "logistically": null, - "logistic": [["M", "S"]], - "logistic's": null, - "logistics": null, - "logjam": [["S", "M"]], - "logjams": null, - "logjam's": null, - "LOGO": null, - "logo": [["S", "M"]], - "logos": null, - "logo's": null, - "logotype": [["M", "S"]], - "logotype's": null, - "logotypes": null, - "logout": null, - "logrolling": [["S", "M"]], - "logrollings": null, - "logrolling's": null, - "log's": [["K"]], - "prolog's": null, - "log": [["S", "M"]], - "logs": null, - "logy": [["R", "T"]], - "logier": null, - "logiest": null, - "Lohengrin": [["M"]], - "Lohengrin's": null, - "loincloth": [["M"]], - "loincloth's": null, - "loincloths": null, - "loin": [["S", "M"]], - "loins": null, - "loin's": null, - "Loire": [["M"]], - "Loire's": null, - "Loise": [["M"]], - "Loise's": null, - "Lois": [["M"]], - "Lois's": null, - "loiterer": [["M"]], - "loiterer's": null, - "loiter": [["R", "D", "J", "S", "Z", "G"]], - "loitered": null, - "loiterings": null, - "loiters": null, - "loiterers": null, - "loitering": null, - "Loki": [["M"]], - "Loki's": null, - "Lola": [["M"]], - "Lola's": null, - "Loleta": [["M"]], - "Loleta's": null, - "Lolita": [["M"]], - "Lolita's": null, - "loller": [["M"]], - "loller's": null, - "lollipop": [["M", "S"]], - "lollipop's": null, - "lollipops": null, - "loll": [["R", "D", "G", "S"]], - "lolled": null, - "lolling": null, - "lolls": null, - "Lolly": [["M"]], - "Lolly's": null, - "lolly": [["S", "M"]], - "lollies": null, - "lolly's": null, - "Lombardi": [["M"]], - "Lombardi's": null, - "Lombard": [["M"]], - "Lombard's": null, - "Lombardy": [["M"]], - "Lombardy's": null, - "Lomb": [["M"]], - "Lomb's": null, - "Lome": null, - "Lona": [["M"]], - "Lona's": null, - "Londonderry": [["M"]], - "Londonderry's": null, - "Londoner": [["M"]], - "Londoner's": null, - "London": [["R", "M", "Z"]], - "London's": null, - "Londoners": null, - "Lonee": [["M"]], - "Lonee's": null, - "loneliness": [["S", "M"]], - "lonelinesses": null, - "loneliness's": null, - "lonely": [["T", "R", "P"]], - "loneliest": null, - "lonelier": null, - "loneness": [["M"]], - "loneness's": null, - "lone": [["P", "Y", "Z", "R"]], - "loners": null, - "loner": [["M"]], - "loner's": null, - "lonesomeness": [["M", "S"]], - "lonesomeness's": null, - "lonesomenesses": null, - "lonesome": [["P", "S", "Y"]], - "lonesomes": null, - "lonesomely": null, - "longboat": [["M", "S"]], - "longboat's": null, - "longboats": null, - "longbow": [["S", "M"]], - "longbows": null, - "longbow's": null, - "longed": [["K"]], - "prolonged": null, - "longeing": null, - "longer": [["K"]], - "prolonger": [["M"]], - "longevity": [["M", "S"]], - "longevity's": null, - "longevities": null, - "Longfellow": [["M"]], - "Longfellow's": null, - "longhair": [["S", "M"]], - "longhairs": null, - "longhair's": null, - "longhand": [["S", "M"]], - "longhands": null, - "longhand's": null, - "longhorn": [["S", "M"]], - "longhorns": null, - "longhorn's": null, - "longing": [["M", "Y"]], - "longing's": null, - "longingly": null, - "longish": null, - "longitude": [["M", "S"]], - "longitude's": null, - "longitudes": null, - "longitudinal": [["Y"]], - "longitudinally": null, - "long": [["J", "G", "T", "Y", "R", "D", "P", "S"]], - "longings": null, - "longest": null, - "longly": null, - "longness": [["M"]], - "longs": [["K"]], - "Long": [["M"]], - "Long's": null, - "longness's": null, - "longshoreman": [["M"]], - "longshoreman's": null, - "longshoremen": null, - "longsighted": null, - "prolongs": null, - "longstanding": null, - "Longstreet": [["M"]], - "Longstreet's": null, - "longsword": null, - "longterm": null, - "longtime": null, - "Longueuil": [["M"]], - "Longueuil's": null, - "longueur": [["S", "M"]], - "longueurs": null, - "longueur's": null, - "longways": null, - "longword": [["S", "M"]], - "longwords": null, - "longword's": null, - "Loni": [["M"]], - "Loni's": null, - "Lon": [["M"]], - "Lon's": null, - "Lonna": [["M"]], - "Lonna's": null, - "Lonnard": [["M"]], - "Lonnard's": null, - "Lonnie": [["M"]], - "Lonnie's": null, - "Lonni": [["M"]], - "Lonni's": null, - "Lonny": [["M"]], - "Lonny's": null, - "loofah": [["M"]], - "loofah's": null, - "loofahs": null, - "lookahead": null, - "lookalike": [["S"]], - "lookalikes": null, - "looker": [["M"]], - "looker's": null, - "look": [["G", "Z", "R", "D", "S"]], - "looking": null, - "lookers": null, - "looked": null, - "looks": null, - "lookout": [["M", "S"]], - "lookout's": null, - "lookouts": null, - "lookup": [["S", "M"]], - "lookups": null, - "lookup's": null, - "looming": [["M"]], - "looming's": null, - "Loomis": [["M"]], - "Loomis's": null, - "loom": [["M", "D", "G", "S"]], - "loom's": null, - "loomed": null, - "looms": null, - "loon": [["M", "S"]], - "loon's": null, - "loons": null, - "loony": [["S", "R", "T"]], - "loonies": null, - "loonier": null, - "looniest": null, - "looper": [["M"]], - "looper's": null, - "loophole": [["M", "G", "S", "D"]], - "loophole's": null, - "loopholing": null, - "loopholes": null, - "loopholed": null, - "loop": [["M", "R", "D", "G", "S"]], - "loop's": null, - "looped": null, - "looping": null, - "loops": null, - "loopy": [["T", "R"]], - "loopiest": null, - "loopier": null, - "loosed": [["U"]], - "unloosed": null, - "looseleaf": null, - "loosener": [["M"]], - "loosener's": null, - "looseness": [["M", "S"]], - "looseness's": null, - "loosenesses": null, - "loosen": [["U", "D", "G", "S"]], - "unloosen": null, - "unloosened": null, - "unloosening": null, - "unloosens": null, - "loosened": null, - "loosening": null, - "loosens": null, - "loose": [["S", "R", "D", "P", "G", "T", "Y"]], - "looses": [["U"]], - "looser": null, - "loosing": [["M"]], - "loosest": null, - "loosely": null, - "unlooses": null, - "loosing's": null, - "looter": [["M"]], - "looter's": null, - "loot": [["M", "R", "D", "G", "Z", "S"]], - "loot's": null, - "looted": null, - "looting": null, - "looters": null, - "loots": null, - "loper": [["M"]], - "loper's": null, - "lope": [["S"]], - "lopes": null, - "Lopez": [["M"]], - "Lopez's": null, - "lopped": null, - "lopper": [["M", "S"]], - "lopper's": null, - "loppers": null, - "lopping": null, - "lop": [["S", "D", "R", "G"]], - "lops": null, - "loped": null, - "loping": null, - "lopsidedness": [["S", "M"]], - "lopsidednesses": null, - "lopsidedness's": null, - "lopsided": [["Y", "P"]], - "lopsidedly": null, - "loquaciousness": [["M", "S"]], - "loquaciousness's": null, - "loquaciousnesses": null, - "loquacious": [["Y", "P"]], - "loquaciously": null, - "loquacity": [["S", "M"]], - "loquacities": null, - "loquacity's": null, - "Loraine": [["M"]], - "Loraine's": null, - "Lorain": [["M"]], - "Lorain's": null, - "Loralee": [["M"]], - "Loralee's": null, - "Loralie": [["M"]], - "Loralie's": null, - "Loralyn": [["M"]], - "Loralyn's": null, - "Lora": [["M"]], - "Lora's": null, - "Lorant": [["M"]], - "Lorant's": null, - "lording": [["M"]], - "lording's": null, - "lordliness": [["S", "M"]], - "lordlinesses": null, - "lordliness's": null, - "lordly": [["P", "T", "R"]], - "lordliest": null, - "lordlier": null, - "Lord": [["M", "S"]], - "Lord's": null, - "Lords": null, - "lord": [["M", "Y", "D", "G", "S"]], - "lord's": null, - "lorded": null, - "lords": null, - "lordship": [["S", "M"]], - "lordships": null, - "lordship's": null, - "Lordship": [["S", "M"]], - "Lordships": null, - "Lordship's": null, - "Loree": [["M"]], - "Loree's": null, - "Loreen": [["M"]], - "Loreen's": null, - "Lorelei": [["M"]], - "Lorelei's": null, - "Lorelle": [["M"]], - "Lorelle's": null, - "lore": [["M", "S"]], - "lore's": null, - "lores": null, - "Lorena": [["M"]], - "Lorena's": null, - "Lorene": [["M"]], - "Lorene's": null, - "Loren": [["S", "M"]], - "Lorens": null, - "Loren's": null, - "Lorentzian": [["M"]], - "Lorentzian's": null, - "Lorentz": [["M"]], - "Lorentz's": null, - "Lorenza": [["M"]], - "Lorenza's": null, - "Lorenz": [["M"]], - "Lorenz's": null, - "Lorenzo": [["M"]], - "Lorenzo's": null, - "Loretta": [["M"]], - "Loretta's": null, - "Lorette": [["M"]], - "Lorette's": null, - "lorgnette": [["S", "M"]], - "lorgnettes": null, - "lorgnette's": null, - "Loria": [["M"]], - "Loria's": null, - "Lorianna": [["M"]], - "Lorianna's": null, - "Lorianne": [["M"]], - "Lorianne's": null, - "Lorie": [["M"]], - "Lorie's": null, - "Lorilee": [["M"]], - "Lorilee's": null, - "Lorilyn": [["M"]], - "Lorilyn's": null, - "Lori": [["M"]], - "Lori's": null, - "Lorinda": [["M"]], - "Lorinda's": null, - "Lorine": [["M"]], - "Lorine's": null, - "Lorin": [["M"]], - "Lorin's": null, - "loris": [["S", "M"]], - "lorises": null, - "loris's": null, - "Lorita": [["M"]], - "Lorita's": null, - "lorn": null, - "Lorna": [["M"]], - "Lorna's": null, - "Lorne": [["M"]], - "Lorne's": null, - "Lorraine": [["M"]], - "Lorraine's": null, - "Lorrayne": [["M"]], - "Lorrayne's": null, - "Lorre": [["M"]], - "Lorre's": null, - "Lorrie": [["M"]], - "Lorrie's": null, - "Lorri": [["M"]], - "Lorri's": null, - "Lorrin": [["M"]], - "Lorrin's": null, - "lorryload": [["S"]], - "lorryloads": null, - "Lorry": [["M"]], - "Lorry's": null, - "lorry": [["S", "M"]], - "lorries": null, - "lorry's": null, - "Lory": [["M"]], - "Lory's": null, - "Los": null, - "loser": [["M"]], - "loser's": null, - "lose": [["Z", "G", "J", "B", "S", "R"]], - "losers": null, - "losing": null, - "losings": null, - "losable": null, - "loses": null, - "lossage": null, - "lossless": null, - "loss": [["S", "M"]], - "losses": null, - "loss's": null, - "lossy": [["R", "T"]], - "lossier": null, - "lossiest": null, - "lost": [["P"]], - "lostness": null, - "Lothaire": [["M"]], - "Lothaire's": null, - "Lothario": [["M", "S"]], - "Lothario's": null, - "Lotharios": null, - "lotion": [["M", "S"]], - "lotion's": null, - "lotions": null, - "Lot": [["M"]], - "Lot's": null, - "lot": [["M", "S"]], - "lot's": null, - "lots": null, - "Lotta": [["M"]], - "Lotta's": null, - "lotted": null, - "Lotte": [["M"]], - "Lotte's": null, - "lotter": null, - "lottery": [["M", "S"]], - "lottery's": null, - "lotteries": null, - "Lottie": [["M"]], - "Lottie's": null, - "Lotti": [["M"]], - "Lotti's": null, - "lotting": null, - "Lott": [["M"]], - "Lott's": null, - "lotto": [["M", "S"]], - "lotto's": null, - "lottos": null, - "Lotty": [["M"]], - "Lotty's": null, - "lotus": [["S", "M"]], - "lotuses": null, - "lotus's": null, - "louden": [["D", "G"]], - "loudened": null, - "loudening": null, - "loudhailer": [["S"]], - "loudhailers": null, - "loudly": [["R", "T"]], - "loudlier": null, - "loudliest": null, - "loudmouth": [["D", "M"]], - "loudmouthed": null, - "loudmouth's": null, - "loudmouths": null, - "loudness": [["M", "S"]], - "loudness's": null, - "loudnesses": null, - "loudspeaker": [["S", "M"]], - "loudspeakers": null, - "loudspeaker's": null, - "loudspeaking": null, - "loud": [["Y", "R", "N", "P", "T"]], - "louder": null, - "loudest": null, - "Louella": [["M"]], - "Louella's": null, - "Louie": [["M"]], - "Louie's": null, - "Louisa": [["M"]], - "Louisa's": null, - "Louise": [["M"]], - "Louise's": null, - "Louisette": [["M"]], - "Louisette's": null, - "Louisiana": [["M"]], - "Louisiana's": null, - "Louisianan": [["S"]], - "Louisianans": null, - "Louisianian": [["S"]], - "Louisianians": null, - "Louis": [["M"]], - "Louis's": null, - "Louisville": [["M"]], - "Louisville's": null, - "Lou": [["M"]], - "Lou's": null, - "lounger": [["M"]], - "lounger's": null, - "lounge": [["S", "R", "D", "Z", "G"]], - "lounges": null, - "lounged": null, - "loungers": null, - "lounging": null, - "Lourdes": [["M"]], - "Lourdes's": null, - "lour": [["G", "S", "D"]], - "louring": null, - "lours": null, - "loured": null, - "louse": [["C", "S", "D", "G"]], - "delouse": null, - "delouses": null, - "deloused": null, - "delousing": null, - "louses": null, - "loused": null, - "lousing": null, - "louse's": null, - "lousewort": [["M"]], - "lousewort's": null, - "lousily": null, - "lousiness": [["M", "S"]], - "lousiness's": null, - "lousinesses": null, - "lousy": [["P", "R", "T"]], - "lousier": null, - "lousiest": null, - "loutishness": [["M"]], - "loutishness's": null, - "loutish": [["Y", "P"]], - "loutishly": null, - "Loutitia": [["M"]], - "Loutitia's": null, - "lout": [["S", "G", "M", "D"]], - "louts": null, - "louting": null, - "lout's": null, - "louted": null, - "louver": [["D", "M", "S"]], - "louvered": null, - "louver's": null, - "louvers": null, - "L'Ouverture": null, - "Louvre": [["M"]], - "Louvre's": null, - "lovableness": [["M", "S"]], - "lovableness's": null, - "lovablenesses": null, - "lovable": [["U"]], - "unlovable": null, - "lovably": null, - "lovebird": [["S", "M"]], - "lovebirds": null, - "lovebird's": null, - "lovechild": null, - "Lovecraft": [["M"]], - "Lovecraft's": null, - "love": [["D", "S", "R", "M", "Y", "Z", "G", "J", "B"]], - "loved": [["U"]], - "loves": null, - "lover": [["Y", "M", "G"]], - "love's": null, - "lovely": [["U", "R", "P", "T"]], - "lovers": null, - "loving": [["U"]], - "lovings": null, - "unloved": null, - "Lovejoy": [["M"]], - "Lovejoy's": null, - "Lovelace": [["M"]], - "Lovelace's": null, - "Loveland": [["M"]], - "Loveland's": null, - "lovelessness": [["M"]], - "lovelessness's": null, - "loveless": [["Y", "P"]], - "lovelessly": null, - "lovelies": null, - "lovelinesses": null, - "loveliness": [["U", "M"]], - "unloveliness": null, - "unloveliness's": null, - "loveliness's": null, - "Lovell": [["M"]], - "Lovell's": null, - "lovelornness": [["M"]], - "lovelornness's": null, - "lovelorn": [["P"]], - "unlovely": null, - "unlovelier": null, - "lovelier": null, - "loveliest": null, - "Love": [["M"]], - "Love's": null, - "lovemaking": [["S", "M"]], - "lovemakings": null, - "lovemaking's": null, - "loverly": null, - "lover's": null, - "lovering": null, - "lovesick": null, - "lovestruck": null, - "lovingly": null, - "lovingness": [["M"]], - "lovingness's": null, - "unloving": null, - "lowborn": null, - "lowboy": [["S", "M"]], - "lowboys": null, - "lowboy's": null, - "lowbrow": [["M", "S"]], - "lowbrow's": null, - "lowbrows": null, - "lowdown": [["S"]], - "lowdowns": null, - "Lowell": [["M"]], - "Lowell's": null, - "Lowe": [["M"]], - "Lowe's": null, - "lowercase": [["G", "S", "D"]], - "lowercasing": null, - "lowercases": null, - "lowercased": null, - "lower": [["D", "G"]], - "lowered": null, - "lowering": null, - "lowermost": null, - "Lowery": [["M"]], - "Lowery's": null, - "lowish": null, - "lowland": [["R", "M", "Z", "S"]], - "lowlander": null, - "lowland's": null, - "lowlanders": null, - "lowlands": null, - "Lowlands": [["M"]], - "Lowlands's": null, - "lowlife": [["S", "M"]], - "lowlifes": null, - "lowlife's": null, - "lowlight": [["M", "S"]], - "lowlight's": null, - "lowlights": null, - "lowliness": [["M", "S"]], - "lowliness's": null, - "lowlinesses": null, - "lowly": [["P", "T", "R"]], - "lowliest": null, - "lowlier": null, - "lowness": [["M", "S"]], - "lowness's": null, - "lownesses": null, - "low": [["P", "D", "R", "Y", "S", "Z", "T", "G"]], - "lowed": null, - "lows": null, - "lowers": null, - "lowest": null, - "lowing": null, - "Lowrance": [["M"]], - "Lowrance's": null, - "lox": [["M", "D", "S", "G"]], - "lox's": null, - "loxed": null, - "loxes": null, - "loxing": null, - "loyaler": null, - "loyalest": null, - "loyal": [["E", "Y"]], - "disloyal": null, - "disloyally": null, - "loyally": null, - "loyalism": [["S", "M"]], - "loyalisms": null, - "loyalism's": null, - "loyalist": [["S", "M"]], - "loyalists": null, - "loyalist's": null, - "loyalty": [["E", "M", "S"]], - "disloyalty": null, - "disloyalty's": null, - "disloyalties": null, - "loyalty's": null, - "loyalties": null, - "Loyang": [["M"]], - "Loyang's": null, - "Loydie": [["M"]], - "Loydie's": null, - "Loyd": [["M"]], - "Loyd's": null, - "Loy": [["M"]], - "Loy's": null, - "Loyola": [["M"]], - "Loyola's": null, - "lozenge": [["S", "D", "M"]], - "lozenges": null, - "lozenged": null, - "lozenge's": null, - "LP": null, - "LPG": null, - "LPN": [["S"]], - "LPNs": null, - "Lr": null, - "ls": null, - "l's": null, - "L's": null, - "LSD": null, - "ltd": null, - "Ltd": [["M"]], - "Ltd's": null, - "Lt": [["M"]], - "Lt's": null, - "Luanda": [["M"]], - "Luanda's": null, - "Luann": [["M"]], - "Luann's": null, - "luau": [["M", "S"]], - "luau's": null, - "luaus": null, - "lubber": [["Y", "M", "S"]], - "lubberly": null, - "lubber's": null, - "lubbers": null, - "Lubbock": [["M"]], - "Lubbock's": null, - "lube": [["D", "S", "M", "G"]], - "lubed": null, - "lubes": null, - "lube's": null, - "lubing": null, - "lubricant": [["S", "M"]], - "lubricants": null, - "lubricant's": null, - "lubricate": [["V", "N", "G", "S", "D", "X"]], - "lubricative": null, - "lubrication": [["M"]], - "lubricating": null, - "lubricates": null, - "lubricated": null, - "lubrications": null, - "lubrication's": null, - "lubricator": [["M", "S"]], - "lubricator's": null, - "lubricators": null, - "lubricious": [["Y"]], - "lubriciously": null, - "lubricity": [["S", "M"]], - "lubricities": null, - "lubricity's": null, - "Lubumbashi": [["M"]], - "Lubumbashi's": null, - "Lucais": [["M"]], - "Lucais's": null, - "Luca": [["M", "S"]], - "Luca's": null, - "Lucas": null, - "Luce": [["M"]], - "Luce's": null, - "lucent": [["Y"]], - "lucently": null, - "Lucerne": [["M"]], - "Lucerne's": null, - "Lucho": [["M"]], - "Lucho's": null, - "Lucia": [["M", "S"]], - "Lucia's": null, - "Lucias": null, - "Luciana": [["M"]], - "Luciana's": null, - "Lucian": [["M"]], - "Lucian's": null, - "Luciano": [["M"]], - "Luciano's": null, - "lucidity": [["M", "S"]], - "lucidity's": null, - "lucidities": null, - "lucidness": [["M", "S"]], - "lucidness's": null, - "lucidnesses": null, - "lucid": [["Y", "P"]], - "lucidly": null, - "Lucie": [["M"]], - "Lucie's": null, - "Lucien": [["M"]], - "Lucien's": null, - "Lucienne": [["M"]], - "Lucienne's": null, - "Lucifer": [["M"]], - "Lucifer's": null, - "Lucila": [["M"]], - "Lucila's": null, - "Lucile": [["M"]], - "Lucile's": null, - "Lucilia": [["M"]], - "Lucilia's": null, - "Lucille": [["M"]], - "Lucille's": null, - "Luci": [["M", "N"]], - "Luci's": null, - "Lucina": [["M"]], - "Lucina's": null, - "Lucinda": [["M"]], - "Lucinda's": null, - "Lucine": [["M"]], - "Lucine's": null, - "Lucio": [["M"]], - "Lucio's": null, - "Lucita": [["M"]], - "Lucita's": null, - "Lucite": [["M", "S"]], - "Lucite's": null, - "Lucites": null, - "Lucius": [["M"]], - "Lucius's": null, - "luck": [["G", "S", "D", "M"]], - "lucking": null, - "lucks": null, - "lucked": null, - "luck's": null, - "luckier": [["U"]], - "unluckier": null, - "luckily": [["U"]], - "unluckily": null, - "luckiness": [["U", "M", "S"]], - "unluckiness": null, - "unluckiness's": null, - "unluckinesses": null, - "luckiness's": null, - "luckinesses": null, - "luckless": null, - "Lucknow": [["M"]], - "Lucknow's": null, - "Lucky": [["M"]], - "Lucky's": null, - "lucky": [["R", "S", "P", "T"]], - "luckies": null, - "luckiest": null, - "lucrativeness": [["S", "M"]], - "lucrativenesses": null, - "lucrativeness's": null, - "lucrative": [["Y", "P"]], - "lucratively": null, - "lucre": [["M", "S"]], - "lucre's": null, - "lucres": null, - "Lucretia": [["M"]], - "Lucretia's": null, - "Lucretius": [["M"]], - "Lucretius's": null, - "lucubrate": [["G", "N", "S", "D", "X"]], - "lucubrating": null, - "lucubration": [["M"]], - "lucubrates": null, - "lucubrated": null, - "lucubrations": null, - "lucubration's": null, - "Lucy": [["M"]], - "Lucy's": null, - "Luddite": [["S", "M"]], - "Luddites": null, - "Luddite's": null, - "Ludhiana": [["M"]], - "Ludhiana's": null, - "ludicrousness": [["S", "M"]], - "ludicrousnesses": null, - "ludicrousness's": null, - "ludicrous": [["P", "Y"]], - "ludicrously": null, - "Ludlow": [["M"]], - "Ludlow's": null, - "Ludmilla": [["M"]], - "Ludmilla's": null, - "ludo": [["M"]], - "ludo's": null, - "Ludovico": [["M"]], - "Ludovico's": null, - "Ludovika": [["M"]], - "Ludovika's": null, - "Ludvig": [["M"]], - "Ludvig's": null, - "Ludwig": [["M"]], - "Ludwig's": null, - "Luella": [["M"]], - "Luella's": null, - "Luelle": [["M"]], - "Luelle's": null, - "luff": [["G", "S", "D", "M"]], - "luffing": null, - "luffs": null, - "luffed": null, - "luff's": null, - "Lufthansa": [["M"]], - "Lufthansa's": null, - "Luftwaffe": [["M"]], - "Luftwaffe's": null, - "luge": [["M", "C"]], - "luge's": null, - "deluge's": null, - "Luger": [["M"]], - "Luger's": null, - "luggage": [["S", "M"]], - "luggages": null, - "luggage's": null, - "lugged": null, - "lugger": [["S", "M"]], - "luggers": null, - "lugger's": null, - "lugging": null, - "Lugosi": [["M"]], - "Lugosi's": null, - "lug": [["R", "S"]], - "luger": null, - "lugs": null, - "lugsail": [["S", "M"]], - "lugsails": null, - "lugsail's": null, - "lugubriousness": [["M", "S"]], - "lugubriousness's": null, - "lugubriousnesses": null, - "lugubrious": [["Y", "P"]], - "lugubriously": null, - "Luigi": [["M"]], - "Luigi's": null, - "Luisa": [["M"]], - "Luisa's": null, - "Luise": [["M"]], - "Luise's": null, - "Luis": [["M"]], - "Luis's": null, - "Lukas": [["M"]], - "Lukas's": null, - "Luke": [["M"]], - "Luke's": null, - "lukewarmness": [["S", "M"]], - "lukewarmnesses": null, - "lukewarmness's": null, - "lukewarm": [["P", "Y"]], - "lukewarmly": null, - "Lula": [["M"]], - "Lula's": null, - "Lulita": [["M"]], - "Lulita's": null, - "lullaby": [["G", "M", "S", "D"]], - "lullabying": null, - "lullaby's": null, - "lullabies": null, - "lullabied": null, - "lull": [["S", "D", "G"]], - "lulls": null, - "lulled": null, - "lulling": null, - "lulu": [["M"]], - "lulu's": null, - "Lulu": [["M"]], - "Lulu's": null, - "Lu": [["M"]], - "Lu's": null, - "lumbago": [["S", "M"]], - "lumbagos": null, - "lumbago's": null, - "lumbar": [["S"]], - "lumbars": null, - "lumberer": [["M"]], - "lumberer's": null, - "lumbering": [["M"]], - "lumbering's": null, - "lumberjack": [["M", "S"]], - "lumberjack's": null, - "lumberjacks": null, - "lumberman": [["M"]], - "lumberman's": null, - "lumbermen": null, - "lumber": [["R", "D", "M", "G", "Z", "S", "J"]], - "lumbered": null, - "lumber's": null, - "lumberers": null, - "lumbers": null, - "lumberings": null, - "lumberyard": [["M", "S"]], - "lumberyard's": null, - "lumberyards": null, - "lumen": [["M"]], - "lumen's": null, - "Lumi�re": [["M"]], - "Lumi�re's": null, - "luminance": [["M"]], - "luminance's": null, - "luminary": [["M", "S"]], - "luminary's": null, - "luminaries": null, - "luminescence": [["S", "M"]], - "luminescences": null, - "luminescence's": null, - "luminescent": null, - "luminosity": [["M", "S"]], - "luminosity's": null, - "luminosities": null, - "luminousness": [["M"]], - "luminousness's": null, - "luminous": [["Y", "P"]], - "luminously": null, - "lummox": [["M", "S"]], - "lummox's": null, - "lummoxes": null, - "lumper": [["M"]], - "lumper's": null, - "lumpiness": [["M", "S"]], - "lumpiness's": null, - "lumpinesses": null, - "lumpishness": [["M"]], - "lumpishness's": null, - "lumpish": [["Y", "P"]], - "lumpishly": null, - "lump": [["S", "G", "M", "R", "D", "N"]], - "lumps": null, - "lumping": null, - "lump's": null, - "lumped": null, - "lumpen": null, - "lumpy": [["T", "P", "R"]], - "lumpiest": null, - "lumpier": null, - "lunacy": [["M", "S"]], - "lunacy's": null, - "lunacies": null, - "Luna": [["M"]], - "Luna's": null, - "lunar": [["S"]], - "lunars": null, - "lunary": null, - "lunate": [["Y", "N", "D"]], - "lunately": null, - "lunation": [["M"]], - "lunated": null, - "lunatic": [["S"]], - "lunatics": null, - "lunation's": null, - "luncheonette": [["S", "M"]], - "luncheonettes": null, - "luncheonette's": null, - "luncheon": [["S", "M", "D", "G"]], - "luncheons": null, - "luncheon's": null, - "luncheoned": null, - "luncheoning": null, - "luncher": [["M"]], - "luncher's": null, - "lunch": [["G", "M", "R", "S", "D"]], - "lunching": null, - "lunch's": null, - "lunches": null, - "lunched": null, - "lunchpack": null, - "lunchroom": [["M", "S"]], - "lunchroom's": null, - "lunchrooms": null, - "lunchtime": [["M", "S"]], - "lunchtime's": null, - "lunchtimes": null, - "Lundberg": [["M"]], - "Lundberg's": null, - "Lund": [["M"]], - "Lund's": null, - "Lundquist": [["M"]], - "Lundquist's": null, - "lune": [["M"]], - "lune's": null, - "lunge": [["M", "S"]], - "lunge's": null, - "lunges": null, - "lunger": [["M"]], - "lunger's": null, - "lungfish": [["S", "M"]], - "lungfishes": null, - "lungfish's": null, - "lungful": null, - "lung": [["S", "G", "R", "D", "M"]], - "lungs": null, - "lunging": null, - "lunged": null, - "lung's": null, - "lunkhead": [["S", "M"]], - "lunkheads": null, - "lunkhead's": null, - "Lupe": [["M"]], - "Lupe's": null, - "lupine": [["S", "M"]], - "lupines": null, - "lupine's": null, - "Lupus": [["M"]], - "Lupus's": null, - "lupus": [["S", "M"]], - "lupuses": null, - "lupus's": null, - "Lura": [["M"]], - "Lura's": null, - "lurcher": [["M"]], - "lurcher's": null, - "lurch": [["R", "S", "D", "G"]], - "lurches": null, - "lurched": null, - "lurching": null, - "lure": [["D", "S", "R", "G"]], - "lured": null, - "lures": null, - "lurer": [["M"]], - "luring": null, - "lurer's": null, - "Lurette": [["M"]], - "Lurette's": null, - "lurex": null, - "Luria": [["M"]], - "Luria's": null, - "luridness": [["S", "M"]], - "luridnesses": null, - "luridness's": null, - "lurid": [["Y", "P"]], - "luridly": null, - "lurker": [["M"]], - "lurker's": null, - "lurk": [["G", "Z", "S", "R", "D"]], - "lurking": null, - "lurkers": null, - "lurks": null, - "lurked": null, - "Lurleen": [["M"]], - "Lurleen's": null, - "Lurlene": [["M"]], - "Lurlene's": null, - "Lurline": [["M"]], - "Lurline's": null, - "Lusaka": [["M"]], - "Lusaka's": null, - "Lusa": [["M"]], - "Lusa's": null, - "lusciousness": [["M", "S"]], - "lusciousness's": null, - "lusciousnesses": null, - "luscious": [["P", "Y"]], - "lusciously": null, - "lushness": [["M", "S"]], - "lushness's": null, - "lushnesses": null, - "lush": [["Y", "S", "R", "D", "G", "T", "P"]], - "lushly": null, - "lushes": null, - "lusher": null, - "lushed": null, - "lushing": null, - "lushest": null, - "Lusitania": [["M"]], - "Lusitania's": null, - "luster": [["G", "D", "M"]], - "lustering": [["M"]], - "lustered": null, - "luster's": null, - "lustering's": null, - "lusterless": null, - "lustfulness": [["M"]], - "lustfulness's": null, - "lustful": [["P", "Y"]], - "lustfully": null, - "lustily": null, - "lustiness": [["M", "S"]], - "lustiness's": null, - "lustinesses": null, - "lust": [["M", "R", "D", "G", "Z", "S"]], - "lust's": null, - "lusted": null, - "lusting": null, - "lusters": null, - "lusts": null, - "lustrousness": [["M"]], - "lustrousness's": null, - "lustrous": [["P", "Y"]], - "lustrously": null, - "lusty": [["P", "R", "T"]], - "lustier": null, - "lustiest": null, - "lutanist": [["M", "S"]], - "lutanist's": null, - "lutanists": null, - "lute": [["D", "S", "M", "G"]], - "luted": null, - "lutes": null, - "lute's": null, - "luting": [["M"]], - "lutenist": [["M", "S"]], - "lutenist's": null, - "lutenists": null, - "Lutero": [["M"]], - "Lutero's": null, - "lutetium": [["M", "S"]], - "lutetium's": null, - "lutetiums": null, - "Lutheranism": [["M", "S"]], - "Lutheranism's": null, - "Lutheranisms": null, - "Lutheran": [["S", "M"]], - "Lutherans": null, - "Lutheran's": null, - "Luther": [["M"]], - "Luther's": null, - "luting's": null, - "Lutz": null, - "Luxembourgian": null, - "Luxembourg": [["R", "M", "Z"]], - "Luxembourger": null, - "Luxembourg's": null, - "Luxembourgers": null, - "Luxemburg's": null, - "luxe": [["M", "S"]], - "luxe's": null, - "luxes": null, - "luxuriance": [["M", "S"]], - "luxuriance's": null, - "luxuriances": null, - "luxuriant": [["Y"]], - "luxuriantly": null, - "luxuriate": [["G", "N", "S", "D", "X"]], - "luxuriating": null, - "luxuriation": [["M"]], - "luxuriates": null, - "luxuriated": null, - "luxuriations": null, - "luxuriation's": null, - "luxuriousness": [["S", "M"]], - "luxuriousnesses": null, - "luxuriousness's": null, - "luxurious": [["P", "Y"]], - "luxuriously": null, - "luxury": [["M", "S"]], - "luxury's": null, - "luxuries": null, - "Luz": [["M"]], - "Luz's": null, - "Luzon": [["M"]], - "Luzon's": null, - "L'vov": null, - "Lyallpur": [["M"]], - "Lyallpur's": null, - "lyceum": [["M", "S"]], - "lyceum's": null, - "lyceums": null, - "lychee's": null, - "lycopodium": [["M"]], - "lycopodium's": null, - "Lycra": [["S"]], - "Lycras": null, - "Lycurgus": [["M"]], - "Lycurgus's": null, - "Lyda": [["M"]], - "Lyda's": null, - "Lydia": [["M"]], - "Lydia's": null, - "Lydian": [["S"]], - "Lydians": null, - "Lydie": [["M"]], - "Lydie's": null, - "Lydon": [["M"]], - "Lydon's": null, - "lye": [["J", "S", "M", "G"]], - "lyings": null, - "lyes": null, - "lye's": null, - "lying": [["Y"]], - "Lyell": [["M"]], - "Lyell's": null, - "lyingly": null, - "Lyle": [["M"]], - "Lyle's": null, - "Lyly": [["M"]], - "Lyly's": null, - "Lyman": [["M"]], - "Lyman's": null, - "Lyme": [["M"]], - "Lyme's": null, - "lymphatic": [["S"]], - "lymphatics": null, - "lymph": [["M"]], - "lymph's": null, - "lymphocyte": [["S", "M"]], - "lymphocytes": null, - "lymphocyte's": null, - "lymphoid": null, - "lymphoma": [["M", "S"]], - "lymphoma's": null, - "lymphomas": null, - "lymphs": null, - "Ly": [["M", "Y"]], - "Ly's": null, - "Lynchburg": [["M"]], - "Lynchburg's": null, - "lyncher": [["M"]], - "lyncher's": null, - "lynching": [["M"]], - "lynching's": null, - "Lynch": [["M"]], - "Lynch's": null, - "lynch": [["Z", "G", "R", "S", "D", "J"]], - "lynchers": null, - "lynches": null, - "lynched": null, - "lynchings": null, - "Lynda": [["M"]], - "Lynda's": null, - "Lyndell": [["M"]], - "Lyndell's": null, - "Lyndel": [["M"]], - "Lyndel's": null, - "Lynde": [["M"]], - "Lynde's": null, - "Lyndon": [["M"]], - "Lyndon's": null, - "Lyndsay": [["M"]], - "Lyndsay's": null, - "Lyndsey": [["M"]], - "Lyndsey's": null, - "Lyndsie": [["M"]], - "Lyndsie's": null, - "Lyndy": [["M"]], - "Lyndy's": null, - "Lynea": [["M"]], - "Lynea's": null, - "Lynelle": [["M"]], - "Lynelle's": null, - "Lynette": [["M"]], - "Lynette's": null, - "Lynett": [["M"]], - "Lynett's": null, - "Lyn": [["M"]], - "Lyn's": null, - "Lynna": [["M"]], - "Lynna's": null, - "Lynnea": [["M"]], - "Lynnea's": null, - "Lynnelle": [["M"]], - "Lynnelle's": null, - "Lynnell": [["M"]], - "Lynnell's": null, - "Lynne": [["M"]], - "Lynne's": null, - "Lynnet": [["M"]], - "Lynnet's": null, - "Lynnette": [["M"]], - "Lynnette's": null, - "Lynnett": [["M"]], - "Lynnett's": null, - "Lynn": [["M"]], - "Lynn's": null, - "Lynsey": [["M"]], - "Lynsey's": null, - "lynx": [["M", "S"]], - "lynx's": null, - "lynxes": null, - "Lyon": [["S", "M"]], - "Lyons": null, - "Lyon's": null, - "Lyra": [["M"]], - "Lyra's": null, - "lyrebird": [["M", "S"]], - "lyrebird's": null, - "lyrebirds": null, - "lyre": [["S", "M"]], - "lyres": null, - "lyre's": null, - "lyricalness": [["M"]], - "lyricalness's": null, - "lyrical": [["Y", "P"]], - "lyrically": null, - "lyricism": [["S", "M"]], - "lyricisms": null, - "lyricism's": null, - "lyricist": [["S", "M"]], - "lyricists": null, - "lyricist's": null, - "lyric": [["S"]], - "lyrics": null, - "Lysenko": [["M"]], - "Lysenko's": null, - "lysine": [["M"]], - "lysine's": null, - "Lysistrata": [["M"]], - "Lysistrata's": null, - "Lysol": [["M"]], - "Lysol's": null, - "Lyssa": [["M"]], - "Lyssa's": null, - "LyX": [["M"]], - "LyX's": null, - "MA": null, - "Maalox": [["M"]], - "Maalox's": null, - "ma'am": null, - "Mabelle": [["M"]], - "Mabelle's": null, - "Mabel": [["M"]], - "Mabel's": null, - "Mable": [["M"]], - "Mable's": null, - "Mab": [["M"]], - "Mab's": null, - "macabre": [["Y"]], - "macabrely": null, - "macadamize": [["S", "D", "G"]], - "macadamizes": null, - "macadamized": null, - "macadamizing": null, - "macadam": [["S", "M"]], - "macadams": null, - "macadam's": null, - "Macao": [["M"]], - "Macao's": null, - "macaque": [["S", "M"]], - "macaques": null, - "macaque's": null, - "macaroni": [["S", "M"]], - "macaronis": null, - "macaroni's": null, - "macaroon": [["M", "S"]], - "macaroon's": null, - "macaroons": null, - "Macarthur": [["M"]], - "Macarthur's": null, - "MacArthur": [["M"]], - "MacArthur's": null, - "Macaulay": [["M"]], - "Macaulay's": null, - "macaw": [["S", "M"]], - "macaws": null, - "macaw's": null, - "Macbeth": [["M"]], - "Macbeth's": null, - "Maccabees": [["M"]], - "Maccabees's": null, - "Maccabeus": [["M"]], - "Maccabeus's": null, - "Macdonald": [["M"]], - "Macdonald's": null, - "MacDonald": [["M"]], - "MacDonald's": null, - "MacDraw": [["M"]], - "MacDraw's": null, - "Macedonia": [["M"]], - "Macedonia's": null, - "Macedonian": [["S"]], - "Macedonians": null, - "Macedon": [["M"]], - "Macedon's": null, - "mace": [["M", "S"]], - "mace's": null, - "maces": null, - "Mace": [["M", "S"]], - "Mace's": null, - "Maces": null, - "macerate": [["D", "S", "X", "N", "G"]], - "macerated": null, - "macerates": null, - "macerations": null, - "maceration": [["M"]], - "macerating": null, - "maceration's": null, - "macer": [["M"]], - "macer's": null, - "Macgregor": [["M"]], - "Macgregor's": null, - "MacGregor": [["M"]], - "MacGregor's": null, - "machete": [["S", "M"]], - "machetes": null, - "machete's": null, - "Machiavellian": [["S"]], - "Machiavellians": null, - "Machiavelli": [["M"]], - "Machiavelli's": null, - "machinate": [["S", "D", "X", "N", "G"]], - "machinates": null, - "machinated": null, - "machinations": null, - "machination": [["M"]], - "machinating": null, - "machination's": null, - "machinelike": null, - "machine": [["M", "G", "S", "D", "B"]], - "machine's": null, - "machining": null, - "machines": null, - "machined": null, - "machinable": null, - "machinery": [["S", "M"]], - "machineries": null, - "machinery's": null, - "machinist": [["M", "S"]], - "machinist's": null, - "machinists": null, - "machismo": [["S", "M"]], - "machismos": null, - "machismo's": null, - "Mach": [["M"]], - "Mach's": null, - "macho": [["S"]], - "machos": null, - "Machs": null, - "Macias": [["M"]], - "Macias's": null, - "Macintosh": [["M"]], - "Macintosh's": null, - "MacIntosh": [["M"]], - "MacIntosh's": null, - "macintosh's": null, - "Mackenzie": [["M"]], - "Mackenzie's": null, - "MacKenzie": [["M"]], - "MacKenzie's": null, - "mackerel": [["S", "M"]], - "mackerels": null, - "mackerel's": null, - "Mackinac": [["M"]], - "Mackinac's": null, - "Mackinaw": null, - "mackinaw": [["S", "M"]], - "mackinaws": null, - "mackinaw's": null, - "mackintosh": [["S", "M"]], - "mackintoshes": null, - "mackintosh's": null, - "mack": [["M"]], - "mack's": null, - "Mack": [["M"]], - "Mack's": null, - "MacLeish": [["M"]], - "MacLeish's": null, - "Macmillan": [["M"]], - "Macmillan's": null, - "MacMillan": [["M"]], - "MacMillan's": null, - "Macon": [["S", "M"]], - "Macons": null, - "Macon's": null, - "MacPaint": [["M"]], - "MacPaint's": null, - "macram�": [["S"]], - "macram�s": null, - "macrobiotic": [["S"]], - "macrobiotics": [["M"]], - "macrobiotics's": null, - "macrocosm": [["M", "S"]], - "macrocosm's": null, - "macrocosms": null, - "macrodynamic": null, - "macroeconomic": [["S"]], - "macroeconomics": [["M"]], - "macroeconomics's": null, - "macromolecular": null, - "macromolecule": [["S", "M"]], - "macromolecules": null, - "macromolecule's": null, - "macron": [["M", "S"]], - "macron's": null, - "macrons": null, - "macrophage": [["S", "M"]], - "macrophages": null, - "macrophage's": null, - "macroscopic": null, - "macroscopically": null, - "macrosimulation": null, - "macro": [["S", "M"]], - "macros": null, - "macro's": null, - "macrosocioeconomic": null, - "Mac": [["S", "G", "M", "D"]], - "Macs": null, - "Macing": null, - "Mac's": null, - "Maced": null, - "mac": [["S", "G", "M", "D", "R"]], - "macs": null, - "macing": null, - "mac's": null, - "maced": null, - "Macy": [["M"]], - "Macy's": null, - "Madagascan": [["S", "M"]], - "Madagascans": null, - "Madagascan's": null, - "Madagascar": [["M"]], - "Madagascar's": null, - "Madalena": [["M"]], - "Madalena's": null, - "Madalyn": [["M"]], - "Madalyn's": null, - "Mada": [["M"]], - "Mada's": null, - "madame": [["M"]], - "madame's": null, - "Madame": [["M", "S"]], - "Madame's": null, - "Madames": null, - "madam": [["S", "M"]], - "madams": null, - "madam's": null, - "madcap": [["S"]], - "madcaps": null, - "Maddalena": [["M"]], - "Maddalena's": null, - "madded": null, - "madden": [["G", "S", "D"]], - "maddening": [["Y"]], - "maddens": null, - "maddened": null, - "maddeningly": null, - "Madden": [["M"]], - "Madden's": null, - "madder": [["M", "S"]], - "madder's": null, - "madders": null, - "maddest": null, - "Maddie": [["M"]], - "Maddie's": null, - "Maddi": [["M"]], - "Maddi's": null, - "madding": null, - "Maddox": [["M"]], - "Maddox's": null, - "Maddy": [["M"]], - "Maddy's": null, - "made": [["A", "U"]], - "remade": [["S"]], - "unmade": null, - "Madeira": [["S", "M"]], - "Madeiras": null, - "Madeira's": null, - "Madelaine": [["M"]], - "Madelaine's": null, - "Madeleine": [["M"]], - "Madeleine's": null, - "Madelena": [["M"]], - "Madelena's": null, - "Madelene": [["M"]], - "Madelene's": null, - "Madelina": [["M"]], - "Madelina's": null, - "Madeline": [["M"]], - "Madeline's": null, - "Madelin": [["M"]], - "Madelin's": null, - "Madella": [["M"]], - "Madella's": null, - "Madelle": [["M"]], - "Madelle's": null, - "Madel": [["M"]], - "Madel's": null, - "Madelon": [["M"]], - "Madelon's": null, - "Madelyn": [["M"]], - "Madelyn's": null, - "mademoiselle": [["M", "S"]], - "mademoiselle's": null, - "mademoiselles": null, - "Madge": [["M"]], - "Madge's": null, - "madhouse": [["S", "M"]], - "madhouses": null, - "madhouse's": null, - "Madhya": [["M"]], - "Madhya's": null, - "Madison": [["M"]], - "Madison's": null, - "Madlen": [["M"]], - "Madlen's": null, - "Madlin": [["M"]], - "Madlin's": null, - "madman": [["M"]], - "madman's": null, - "madmen": null, - "madness": [["S", "M"]], - "madnesses": null, - "madness's": null, - "Madonna": [["M", "S"]], - "Madonna's": null, - "Madonnas": null, - "mad": [["P", "S", "Y"]], - "mads": null, - "madly": null, - "Madras": null, - "madras": [["S", "M"]], - "madrases": null, - "madras's": null, - "Madrid": [["M"]], - "Madrid's": null, - "madrigal": [["M", "S", "G"]], - "madrigal's": null, - "madrigals": null, - "madrigaling": null, - "Madsen": [["M"]], - "Madsen's": null, - "Madurai": [["M"]], - "Madurai's": null, - "madwoman": [["M"]], - "madwoman's": null, - "madwomen": null, - "Mady": [["M"]], - "Mady's": null, - "Maegan": [["M"]], - "Maegan's": null, - "Maelstrom": [["M"]], - "Maelstrom's": null, - "maelstrom": [["S", "M"]], - "maelstroms": null, - "maelstrom's": null, - "Mae": [["M"]], - "Mae's": null, - "maestro": [["M", "S"]], - "maestro's": null, - "maestros": null, - "Maeterlinck": [["M"]], - "Maeterlinck's": null, - "Mafia": [["M", "S"]], - "Mafia's": null, - "Mafias": null, - "mafia": [["S"]], - "mafias": null, - "mafiosi": null, - "mafioso": [["M"]], - "mafioso's": null, - "Mafioso": [["S"]], - "Mafiosos": null, - "MAG": null, - "magazine": [["D", "S", "M", "G"]], - "magazined": null, - "magazines": null, - "magazine's": null, - "magazining": null, - "Magdaia": [["M"]], - "Magdaia's": null, - "Magdalena": [["M"]], - "Magdalena's": null, - "Magdalene": [["M"]], - "Magdalene's": null, - "Magdalen": [["M"]], - "Magdalen's": null, - "Magda": [["M"]], - "Magda's": null, - "Magellanic": null, - "Magellan": [["M"]], - "Magellan's": null, - "magenta": [["M", "S"]], - "magenta's": null, - "magentas": null, - "magged": null, - "Maggee": [["M"]], - "Maggee's": null, - "Maggie": [["M"]], - "Maggie's": null, - "Maggi": [["M"]], - "Maggi's": null, - "magging": null, - "maggot": [["M", "S"]], - "maggot's": null, - "maggots": null, - "maggoty": [["R", "T"]], - "maggotier": null, - "maggotiest": null, - "Maggy": [["M"]], - "Maggy's": null, - "magi": null, - "magical": [["Y"]], - "magically": null, - "magician": [["M", "S"]], - "magician's": null, - "magicians": null, - "magicked": null, - "magicking": null, - "magic": [["S", "M"]], - "magics": null, - "magic's": null, - "Magill": [["M"]], - "Magill's": null, - "Magi": [["M"]], - "Magi's": null, - "Maginot": [["M"]], - "Maginot's": null, - "magisterial": [["Y"]], - "magisterially": null, - "magistracy": [["M", "S"]], - "magistracy's": null, - "magistracies": null, - "magistrate": [["M", "S"]], - "magistrate's": null, - "magistrates": null, - "Mag": [["M"]], - "Mag's": null, - "magma": [["S", "M"]], - "magmas": null, - "magma's": null, - "magnanimity": [["S", "M"]], - "magnanimities": null, - "magnanimity's": null, - "magnanimosity": null, - "magnanimous": [["P", "Y"]], - "magnanimousness": null, - "magnanimously": null, - "magnate": [["S", "M"]], - "magnates": null, - "magnate's": null, - "magnesia": [["M", "S"]], - "magnesia's": null, - "magnesias": null, - "magnesite": [["M"]], - "magnesite's": null, - "magnesium": [["S", "M"]], - "magnesiums": null, - "magnesium's": null, - "magnetically": null, - "magnetic": [["S"]], - "magnetics": [["M"]], - "magnetics's": null, - "magnetism": [["S", "M"]], - "magnetisms": null, - "magnetism's": null, - "magnetite": [["S", "M"]], - "magnetites": null, - "magnetite's": null, - "magnetizable": null, - "magnetization": [["A", "S", "C", "M"]], - "remagnetization": null, - "remagnetizations": null, - "remagnetization's": null, - "magnetizations": null, - "demagnetizations": null, - "demagnetization": null, - "demagnetization's": null, - "magnetization's": null, - "magnetize": [["C", "G", "D", "S"]], - "demagnetize": null, - "demagnetizing": null, - "demagnetized": null, - "demagnetizes": null, - "magnetizing": null, - "magnetized": [["U"]], - "magnetizes": null, - "unmagnetized": [["M", "S"]], - "magnetodynamics": null, - "magnetohydrodynamical": null, - "magnetohydrodynamics": [["M"]], - "magnetohydrodynamics's": null, - "magnetometer": [["M", "S"]], - "magnetometer's": null, - "magnetometers": null, - "magneto": [["M", "S"]], - "magneto's": null, - "magnetos": null, - "magnetosphere": [["M"]], - "magnetosphere's": null, - "magnetron": [["M"]], - "magnetron's": null, - "magnet": [["S", "M"]], - "magnets": null, - "magnet's": null, - "magnification": [["M"]], - "magnification's": null, - "magnificence": [["S", "M"]], - "magnificences": null, - "magnificence's": null, - "magnificent": [["Y"]], - "magnificently": null, - "magnified": [["U"]], - "unmagnified": null, - "magnify": [["D", "R", "S", "G", "N", "X", "Z"]], - "magnifier": null, - "magnifies": null, - "magnifying": null, - "magnifications": null, - "magnifiers": null, - "magniloquence": [["M", "S"]], - "magniloquence's": null, - "magniloquences": null, - "magniloquent": null, - "Magnitogorsk": [["M"]], - "Magnitogorsk's": null, - "magnitude": [["S", "M"]], - "magnitudes": null, - "magnitude's": null, - "magnolia": [["S", "M"]], - "magnolias": null, - "magnolia's": null, - "Magnum": null, - "magnum": [["S", "M"]], - "magnums": null, - "magnum's": null, - "Magnuson": [["M"]], - "Magnuson's": null, - "Magog": [["M"]], - "Magog's": null, - "Magoo": [["M"]], - "Magoo's": null, - "magpie": [["S", "M"]], - "magpies": null, - "magpie's": null, - "Magritte": [["M"]], - "Magritte's": null, - "Magruder": [["M"]], - "Magruder's": null, - "mag": [["S"]], - "mags": null, - "Magsaysay": [["M"]], - "Magsaysay's": null, - "Maguire": [["S", "M"]], - "Maguires": null, - "Maguire's": null, - "Magus": [["M"]], - "Magus's": null, - "Magyar": [["M", "S"]], - "Magyar's": null, - "Magyars": null, - "Mahabharata": null, - "Mahala": [["M"]], - "Mahala's": null, - "Mahalia": [["M"]], - "Mahalia's": null, - "maharajah": [["M"]], - "maharajah's": null, - "maharajahs": null, - "maharanee's": null, - "maharani": [["M", "S"]], - "maharani's": null, - "maharanis": null, - "Maharashtra": [["M"]], - "Maharashtra's": null, - "maharishi": [["S", "M"]], - "maharishis": null, - "maharishi's": null, - "mahatma": [["S", "M"]], - "mahatmas": null, - "mahatma's": null, - "Mahavira": [["M"]], - "Mahavira's": null, - "Mahayana": [["M"]], - "Mahayana's": null, - "Mahayanist": null, - "Mahdi": [["M"]], - "Mahdi's": null, - "Mahfouz": [["M"]], - "Mahfouz's": null, - "Mahican": [["S", "M"]], - "Mahicans": null, - "Mahican's": null, - "mahjong's": null, - "Mahler": [["M"]], - "Mahler's": null, - "Mahmoud": [["M"]], - "Mahmoud's": null, - "Mahmud": [["M"]], - "Mahmud's": null, - "mahogany": [["M", "S"]], - "mahogany's": null, - "mahoganies": null, - "Mahomet's": null, - "mahout": [["S", "M"]], - "mahouts": null, - "mahout's": null, - "Maia": [["M"]], - "Maia's": null, - "Maible": [["M"]], - "Maible's": null, - "maidenhair": [["M", "S"]], - "maidenhair's": null, - "maidenhairs": null, - "maidenhead": [["S", "M"]], - "maidenheads": null, - "maidenhead's": null, - "maidenhood": [["S", "M"]], - "maidenhoods": null, - "maidenhood's": null, - "maidenly": [["P"]], - "maidenliness": null, - "maiden": [["Y", "M"]], - "maiden's": null, - "maidservant": [["M", "S"]], - "maidservant's": null, - "maidservants": null, - "maid": [["S", "M", "N", "X"]], - "maids": null, - "maid's": null, - "maidens": null, - "maier": null, - "Maier": [["M"]], - "Maier's": null, - "Maiga": [["M"]], - "Maiga's": null, - "Maighdiln": [["M"]], - "Maighdiln's": null, - "Maigret": [["M"]], - "Maigret's": null, - "mailbag": [["M", "S"]], - "mailbag's": null, - "mailbags": null, - "mailbox": [["M", "S"]], - "mailbox's": null, - "mailboxes": null, - "mail": [["B", "S", "J", "G", "Z", "M", "R", "D"]], - "mailable": null, - "mails": null, - "mailings": null, - "mailing": null, - "mailers": null, - "mail's": null, - "mailer": [["M"]], - "mailed": null, - "mailer's": null, - "Mailer": [["M"]], - "Mailer's": null, - "Maillol": [["M"]], - "Maillol's": null, - "maillot": [["S", "M"]], - "maillots": null, - "maillot's": null, - "mailman": [["M"]], - "mailman's": null, - "mailmen": null, - "Maiman": [["M"]], - "Maiman's": null, - "maimedness": [["M"]], - "maimedness's": null, - "maimed": [["P"]], - "maimer": [["M"]], - "maimer's": null, - "Maimonides": [["M"]], - "Maimonides's": null, - "Mai": [["M", "R"]], - "Mai's": null, - "maim": [["S", "G", "Z", "R", "D"]], - "maims": null, - "maiming": null, - "maimers": null, - "mainbrace": [["M"]], - "mainbrace's": null, - "Maine": [["M", "Z", "R"]], - "Maine's": null, - "Mainers": null, - "Mainer": [["M"]], - "Mainer's": null, - "mainframe": [["M", "S"]], - "mainframe's": null, - "mainframes": null, - "mainlander": [["M"]], - "mainlander's": null, - "mainland": [["S", "R", "M", "Z"]], - "mainlands": null, - "mainland's": null, - "mainlanders": null, - "mainliner": [["M"]], - "mainliner's": null, - "mainline": [["R", "S", "D", "Z", "G"]], - "mainlines": null, - "mainlined": null, - "mainliners": null, - "mainlining": null, - "mainly": null, - "mainmast": [["S", "M"]], - "mainmasts": null, - "mainmast's": null, - "main": [["S", "A"]], - "mains": [["M"]], - "remains": null, - "remain": [["G", "D"]], - "mainsail": [["S", "M"]], - "mainsails": null, - "mainsail's": null, - "mains's": null, - "mainspring": [["S", "M"]], - "mainsprings": null, - "mainspring's": null, - "mainstay": [["M", "S"]], - "mainstay's": null, - "mainstays": null, - "mainstream": [["D", "R", "M", "S", "G"]], - "mainstreamed": null, - "mainstreamer": null, - "mainstream's": null, - "mainstreams": null, - "mainstreaming": null, - "maintainability": null, - "maintainable": [["U"]], - "unmaintainable": null, - "maintain": [["B", "R", "D", "Z", "G", "S"]], - "maintainer": [["M"]], - "maintained": [["U"]], - "maintainers": null, - "maintaining": null, - "maintains": null, - "unmaintained": null, - "maintainer's": null, - "maintenance": [["S", "M"]], - "maintenances": null, - "maintenance's": null, - "maintop": [["S", "M"]], - "maintops": null, - "maintop's": null, - "maiolica's": null, - "Maire": [["M"]], - "Maire's": null, - "Mair": [["M"]], - "Mair's": null, - "Maisey": [["M"]], - "Maisey's": null, - "Maisie": [["M"]], - "Maisie's": null, - "maisonette": [["M", "S"]], - "maisonette's": null, - "maisonettes": null, - "Maison": [["M"]], - "Maison's": null, - "Maitilde": [["M"]], - "Maitilde's": null, - "maize": [["M", "S"]], - "maize's": null, - "maizes": null, - "Maj": null, - "Maje": [["M"]], - "Maje's": null, - "majestic": null, - "majestically": null, - "majesty": [["M", "S"]], - "majesty's": null, - "majesties": null, - "Majesty": [["M", "S"]], - "Majesty's": null, - "Majesties": null, - "majolica": [["S", "M"]], - "majolicas": null, - "majolica's": null, - "Majorca": [["M"]], - "Majorca's": null, - "major": [["D", "M", "G", "S"]], - "majored": null, - "major's": null, - "majoring": null, - "majors": null, - "majordomo": [["S"]], - "majordomos": null, - "majorette": [["S", "M"]], - "majorettes": null, - "majorette's": null, - "majority": [["S", "M"]], - "majorities": null, - "majority's": null, - "Major": [["M"]], - "Major's": null, - "Majuro": [["M"]], - "Majuro's": null, - "makable": null, - "Makarios": [["M"]], - "Makarios's": null, - "makefile": [["S"]], - "makefiles": null, - "makeover": [["S"]], - "makeovers": null, - "Maker": [["M"]], - "Maker's": null, - "maker": [["S", "M"]], - "makers": null, - "maker's": null, - "makeshift": [["S"]], - "makeshifts": null, - "make": [["U", "G", "S", "A"]], - "unmake": null, - "unmaking": null, - "unmakes": null, - "making": [["S", "M"]], - "remaking": null, - "makes": null, - "remakes": null, - "remake": [["M"]], - "makeup": [["M", "S"]], - "makeup's": null, - "makeups": null, - "makings": null, - "making's": null, - "Malabar": [["M"]], - "Malabar's": null, - "Malabo": [["M"]], - "Malabo's": null, - "Malacca": [["M"]], - "Malacca's": null, - "Malachi": [["M"]], - "Malachi's": null, - "malachite": [["S", "M"]], - "malachites": null, - "malachite's": null, - "maladapt": [["D", "V"]], - "maladapted": null, - "maladaptive": null, - "maladjust": [["D", "L", "V"]], - "maladjusted": null, - "maladjustment": [["M", "S"]], - "maladjustive": null, - "maladjustment's": null, - "maladjustments": null, - "maladministration": null, - "maladroitness": [["M", "S"]], - "maladroitness's": null, - "maladroitnesses": null, - "maladroit": [["Y", "P"]], - "maladroitly": null, - "malady": [["M", "S"]], - "malady's": null, - "maladies": null, - "Malagasy": [["M"]], - "Malagasy's": null, - "malaise": [["S", "M"]], - "malaises": null, - "malaise's": null, - "Mala": [["M"]], - "Mala's": null, - "Malamud": [["M"]], - "Malamud's": null, - "malamute": [["S", "M"]], - "malamutes": null, - "malamute's": null, - "Malanie": [["M"]], - "Malanie's": null, - "malaprop": null, - "malapropism": [["S", "M"]], - "malapropisms": null, - "malapropism's": null, - "Malaprop": [["M"]], - "Malaprop's": null, - "malarial": null, - "malaria": [["M", "S"]], - "malaria's": null, - "malarias": null, - "malarious": null, - "malarkey": [["S", "M"]], - "malarkeys": null, - "malarkey's": null, - "malathion": [["S"]], - "malathions": null, - "Malawian": [["S"]], - "Malawians": null, - "Malawi": [["M"]], - "Malawi's": null, - "Malayalam": [["M"]], - "Malayalam's": null, - "Malaya": [["M"]], - "Malaya's": null, - "Malayan": [["M", "S"]], - "Malayan's": null, - "Malayans": null, - "Malaysia": [["M"]], - "Malaysia's": null, - "Malaysian": [["S"]], - "Malaysians": null, - "Malay": [["S", "M"]], - "Malays": null, - "Malay's": null, - "Malchy": [["M"]], - "Malchy's": null, - "Malcolm": [["M"]], - "Malcolm's": null, - "malcontentedness": [["M"]], - "malcontentedness's": null, - "malcontented": [["P", "Y"]], - "malcontentedly": null, - "malcontent": [["S", "M", "D"]], - "malcontents": null, - "malcontent's": null, - "Maldive": [["S", "M"]], - "Maldives": null, - "Maldive's": null, - "Maldivian": [["S"]], - "Maldivians": null, - "Maldonado": [["M"]], - "Maldonado's": null, - "maledict": null, - "malediction": [["M", "S"]], - "malediction's": null, - "maledictions": null, - "malefaction": [["M", "S"]], - "malefaction's": null, - "malefactions": null, - "malefactor": [["M", "S"]], - "malefactor's": null, - "malefactors": null, - "malefic": null, - "maleficence": [["M", "S"]], - "maleficence's": null, - "maleficences": null, - "maleficent": null, - "Male": [["M"]], - "Male's": null, - "Malena": [["M"]], - "Malena's": null, - "maleness": [["M", "S"]], - "maleness's": null, - "malenesses": null, - "male": [["P", "S", "M"]], - "males": null, - "male's": null, - "malevolence": [["S"]], - "malevolences": null, - "malevolencies": null, - "malevolent": [["Y"]], - "malevolently": null, - "malfeasance": [["S", "M"]], - "malfeasances": null, - "malfeasance's": null, - "malfeasant": null, - "malformation": [["M", "S"]], - "malformation's": null, - "malformations": null, - "malformed": null, - "malfunction": [["S", "D", "G"]], - "malfunctions": null, - "malfunctioned": null, - "malfunctioning": null, - "Malia": [["M"]], - "Malia's": null, - "Malian": [["S"]], - "Malians": null, - "Malibu": [["M"]], - "Malibu's": null, - "malice": [["M", "G", "S", "D"]], - "malice's": null, - "malicing": null, - "malices": null, - "maliced": null, - "maliciousness": [["M", "S"]], - "maliciousness's": null, - "maliciousnesses": null, - "malicious": [["Y", "U"]], - "maliciously": null, - "unmaliciously": null, - "unmalicious": null, - "malignancy": [["S", "M"]], - "malignancies": null, - "malignancy's": null, - "malignant": [["Y", "S"]], - "malignantly": null, - "malignants": null, - "malign": [["G", "S", "R", "D", "Y", "Z"]], - "maligning": null, - "maligns": null, - "maligner": null, - "maligned": null, - "malignly": null, - "maligners": null, - "malignity": [["M", "S"]], - "malignity's": null, - "malignities": null, - "Mali": [["M"]], - "Mali's": null, - "Malina": [["M"]], - "Malina's": null, - "Malinda": [["M"]], - "Malinda's": null, - "Malinde": [["M"]], - "Malinde's": null, - "malingerer": [["M"]], - "malingerer's": null, - "malinger": [["G", "Z", "R", "D", "S"]], - "malingering": null, - "malingerers": null, - "malingered": null, - "malingers": null, - "Malinowski": [["M"]], - "Malinowski's": null, - "Malissa": [["M"]], - "Malissa's": null, - "Malissia": [["M"]], - "Malissia's": null, - "mallard": [["S", "M"]], - "mallards": null, - "mallard's": null, - "Mallarm�": [["M"]], - "Mallarm�'s": null, - "malleability": [["S", "M"]], - "malleabilities": null, - "malleability's": null, - "malleableness": [["M"]], - "malleableness's": null, - "malleable": [["P"]], - "mallet": [["M", "S"]], - "mallet's": null, - "mallets": null, - "Mallissa": [["M"]], - "Mallissa's": null, - "Mallorie": [["M"]], - "Mallorie's": null, - "Mallory": [["M"]], - "Mallory's": null, - "mallow": [["M", "S"]], - "mallow's": null, - "mallows": null, - "mall": [["S", "G", "M", "D"]], - "malls": null, - "malling": null, - "mall's": null, - "malled": null, - "Mal": [["M"]], - "Mal's": null, - "malnourished": null, - "malnutrition": [["S", "M"]], - "malnutritions": null, - "malnutrition's": null, - "malocclusion": [["M", "S"]], - "malocclusion's": null, - "malocclusions": null, - "malodorous": null, - "Malone": [["M"]], - "Malone's": null, - "Malorie": [["M"]], - "Malorie's": null, - "Malory": [["M"]], - "Malory's": null, - "malposed": null, - "malpractice": [["S", "M"]], - "malpractices": null, - "malpractice's": null, - "Malraux": [["M"]], - "Malraux's": null, - "Malta": [["M"]], - "Malta's": null, - "malted": [["S"]], - "malteds": null, - "Maltese": null, - "Malthusian": [["S"]], - "Malthusians": null, - "Malthus": [["M"]], - "Malthus's": null, - "malting": [["M"]], - "malting's": null, - "maltose": [["S", "M"]], - "maltoses": null, - "maltose's": null, - "maltreat": [["G", "D", "S", "L"]], - "maltreating": null, - "maltreated": null, - "maltreats": null, - "maltreatment": [["S"]], - "maltreatments": null, - "malt": [["S", "G", "M", "D"]], - "malts": null, - "malt's": null, - "malty": [["R", "T"]], - "maltier": null, - "maltiest": null, - "Malva": [["M"]], - "Malva's": null, - "Malvina": [["M"]], - "Malvina's": null, - "Malvin": [["M"]], - "Malvin's": null, - "Malynda": [["M"]], - "Malynda's": null, - "mama": [["S", "M"]], - "mamas": null, - "mama's": null, - "mamba": [["S", "M"]], - "mambas": null, - "mamba's": null, - "mambo": [["G", "S", "D", "M"]], - "mamboing": null, - "mambos": null, - "mamboed": null, - "mambo's": null, - "Mame": [["M"]], - "Mame's": null, - "Mamet": [["M"]], - "Mamet's": null, - "ma": [["M", "H"]], - "ma's": null, - "math": [["M"]], - "Mamie": [["M"]], - "Mamie's": null, - "mammalian": [["S", "M"]], - "mammalians": null, - "mammalian's": null, - "mammal": [["S", "M"]], - "mammals": null, - "mammal's": null, - "mammary": null, - "mamma's": null, - "mammogram": [["S"]], - "mammograms": null, - "mammography": [["S"]], - "mammographies": null, - "Mammon's": null, - "mammon": [["S", "M"]], - "mammons": null, - "mammon's": null, - "mammoth": [["M"]], - "mammoth's": null, - "mammoths": null, - "mammy": [["S", "M"]], - "mammies": null, - "mammy's": null, - "Mamore": [["M"]], - "Mamore's": null, - "manacle": [["S", "D", "M", "G"]], - "manacles": null, - "manacled": null, - "manacle's": null, - "manacling": null, - "manageability": [["S"]], - "manageabilities": null, - "manageableness": null, - "manageable": [["U"]], - "unmanageable": null, - "managed": [["U"]], - "unmanaged": null, - "management": [["S", "M"]], - "managements": null, - "management's": null, - "manageress": [["M"]], - "manageress's": null, - "managerial": [["Y"]], - "managerially": null, - "manager": [["M"]], - "manager's": null, - "managership": [["M"]], - "managership's": null, - "manage": [["Z", "L", "G", "R", "S", "D"]], - "managers": null, - "managing": null, - "manages": null, - "Managua": [["M"]], - "Managua's": null, - "Manama": [["M"]], - "Manama's": null, - "ma�ana": [["M"]], - "ma�ana's": null, - "mananas": null, - "Manasseh": [["M"]], - "Manasseh's": null, - "manatee": [["S", "M"]], - "manatees": null, - "manatee's": null, - "Manaus's": null, - "Manchester": [["M"]], - "Manchester's": null, - "Manchu": [["M", "S"]], - "Manchu's": null, - "Manchus": null, - "Manchuria": [["M"]], - "Manchuria's": null, - "Manchurian": [["S"]], - "Manchurians": null, - "Mancini": [["M"]], - "Mancini's": null, - "manciple": [["M"]], - "manciple's": null, - "Mancunian": [["M", "S"]], - "Mancunian's": null, - "Mancunians": null, - "mandala": [["S", "M"]], - "mandalas": null, - "mandala's": null, - "Mandalay": [["M"]], - "Mandalay's": null, - "Manda": [["M"]], - "Manda's": null, - "mandamus": [["G", "M", "S", "D"]], - "mandamusing": null, - "mandamus's": null, - "mandamuses": null, - "mandamused": null, - "Mandarin": null, - "mandarin": [["M", "S"]], - "mandarin's": null, - "mandarins": null, - "mandate": [["S", "D", "M", "G"]], - "mandates": null, - "mandated": null, - "mandate's": null, - "mandating": null, - "mandatory": [["S"]], - "mandatories": null, - "Mandela": null, - "Mandelbrot": [["M"]], - "Mandelbrot's": null, - "Mandel": [["M"]], - "Mandel's": null, - "mandible": [["M", "S"]], - "mandible's": null, - "mandibles": null, - "mandibular": null, - "Mandie": [["M"]], - "Mandie's": null, - "Mandi": [["M"]], - "Mandi's": null, - "Mandingo": [["M"]], - "Mandingo's": null, - "mandolin": [["M", "S"]], - "mandolin's": null, - "mandolins": null, - "mandrake": [["M", "S"]], - "mandrake's": null, - "mandrakes": null, - "mandrel": [["S", "M"]], - "mandrels": null, - "mandrel's": null, - "mandrill": [["S", "M"]], - "mandrills": null, - "mandrill's": null, - "Mandy": [["M"]], - "Mandy's": null, - "man�ge": [["G", "S", "D"]], - "man�ging": null, - "man�ges": null, - "man�ged": null, - "mane": [["M", "D", "S"]], - "mane's": null, - "maned": null, - "manes": null, - "Manet": [["M"]], - "Manet's": null, - "maneuverability": [["M", "S"]], - "maneuverability's": null, - "maneuverabilities": null, - "maneuverer": [["M"]], - "maneuverer's": null, - "maneuver": [["M", "R", "D", "S", "G", "B"]], - "maneuver's": null, - "maneuvered": null, - "maneuvers": null, - "maneuvering": null, - "maneuverable": null, - "Manfred": [["M"]], - "Manfred's": null, - "manful": [["Y"]], - "manfully": null, - "manganese": [["M", "S"]], - "manganese's": null, - "manganeses": null, - "mange": [["G", "M", "S", "R", "D", "Z"]], - "manging": null, - "mange's": null, - "manges": null, - "manger": [["M"]], - "manged": null, - "mangers": null, - "manger's": null, - "manginess": [["S"]], - "manginesses": null, - "mangler": [["M"]], - "mangler's": null, - "mangle": [["R", "S", "D", "G"]], - "mangles": null, - "mangled": null, - "mangling": null, - "mangoes": null, - "mango": [["M"]], - "mango's": null, - "mangrove": [["M", "S"]], - "mangrove's": null, - "mangroves": null, - "mangy": [["P", "R", "T"]], - "mangier": null, - "mangiest": null, - "manhandle": [["G", "S", "D"]], - "manhandling": null, - "manhandles": null, - "manhandled": null, - "Manhattan": [["S", "M"]], - "Manhattans": null, - "Manhattan's": null, - "manhole": [["M", "S"]], - "manhole's": null, - "manholes": null, - "manhood": [["M", "S"]], - "manhood's": null, - "manhoods": null, - "manhunt": [["S", "M"]], - "manhunts": null, - "manhunt's": null, - "maniacal": [["Y"]], - "maniacally": null, - "maniac": [["S", "M"]], - "maniacs": null, - "maniac's": null, - "mania": [["S", "M"]], - "manias": null, - "mania's": null, - "manically": null, - "Manichean": [["M"]], - "Manichean's": null, - "manic": [["S"]], - "manics": null, - "manicure": [["M", "G", "S", "D"]], - "manicure's": null, - "manicuring": null, - "manicures": null, - "manicured": null, - "manicurist": [["S", "M"]], - "manicurists": null, - "manicurist's": null, - "manifestation": [["S", "M"]], - "manifestations": null, - "manifestation's": null, - "manifesto": [["G", "S", "D", "M"]], - "manifestoing": null, - "manifestos": null, - "manifestoed": null, - "manifesto's": null, - "manifest": [["Y", "D", "P", "G", "S"]], - "manifestly": null, - "manifested": null, - "manifestness": null, - "manifesting": null, - "manifests": null, - "manifolder": [["M"]], - "manifolder's": null, - "manifold": [["G", "P", "Y", "R", "D", "M", "S"]], - "manifolding": null, - "manifoldness": [["M"]], - "manifoldly": null, - "manifolded": null, - "manifold's": null, - "manifolds": null, - "manifoldness's": null, - "manikin": [["M", "S"]], - "manikin's": null, - "manikins": null, - "Manila": [["M", "S"]], - "Manila's": null, - "Manilas": null, - "manila": [["S"]], - "manilas": null, - "manilla's": null, - "Mani": [["M"]], - "Mani's": null, - "manioc": [["S", "M"]], - "maniocs": null, - "manioc's": null, - "manipulability": null, - "manipulable": null, - "manipulate": [["S", "D", "X", "B", "V", "G", "N"]], - "manipulates": null, - "manipulated": null, - "manipulations": null, - "manipulatable": null, - "manipulative": [["P", "M"]], - "manipulating": null, - "manipulation": null, - "manipulativeness": null, - "manipulative's": null, - "manipulator": [["M", "S"]], - "manipulator's": null, - "manipulators": null, - "manipulatory": null, - "Manitoba": [["M"]], - "Manitoba's": null, - "Manitoulin": [["M"]], - "Manitoulin's": null, - "Manitowoc": [["M"]], - "Manitowoc's": null, - "mankind": [["M"]], - "mankind's": null, - "Mankowski": [["M"]], - "Mankowski's": null, - "Manley": [["M"]], - "Manley's": null, - "manlike": null, - "manliness": [["S", "M"]], - "manlinesses": null, - "manliness's": [["U"]], - "unmanliness's": null, - "manly": [["U", "R", "P", "T"]], - "unmanly": null, - "unmanlier": null, - "unmanliness": null, - "manlier": null, - "manliest": null, - "manna": [["M", "S"]], - "manna's": null, - "mannas": null, - "manned": [["U"]], - "unmanned": null, - "mannequin": [["M", "S"]], - "mannequin's": null, - "mannequins": null, - "mannered": [["U"]], - "unmannered": [["Y"]], - "mannerism": [["S", "M"]], - "mannerisms": null, - "mannerism's": null, - "mannerist": [["M"]], - "mannerist's": null, - "mannerliness": [["M", "U"]], - "mannerliness's": null, - "unmannerliness's": null, - "unmannerliness": null, - "mannerly": [["U", "P"]], - "unmannerly": null, - "manner": [["S", "D", "Y", "M"]], - "manners": null, - "manner's": null, - "Mann": [["G", "M"]], - "Manning": [["M"]], - "Mann's": null, - "Mannheim": [["M"]], - "Mannheim's": null, - "Mannie": [["M"]], - "Mannie's": null, - "mannikin's": null, - "Manning's": null, - "manning": [["U"]], - "unmanning": null, - "mannishness": [["S", "M"]], - "mannishnesses": null, - "mannishness's": null, - "mannish": [["Y", "P"]], - "mannishly": null, - "Manny": [["M"]], - "Manny's": null, - "Manolo": [["M"]], - "Manolo's": null, - "Mano": [["M"]], - "Mano's": null, - "manometer": [["S", "M"]], - "manometers": null, - "manometer's": null, - "Manon": [["M"]], - "Manon's": null, - "manorial": null, - "manor": [["M", "S"]], - "manor's": null, - "manors": null, - "manpower": [["S", "M"]], - "manpowers": null, - "manpower's": null, - "manqu�": [["M"]], - "manqu�'s": null, - "man's": null, - "mansard": [["S", "M"]], - "mansards": null, - "mansard's": null, - "manservant": [["M"]], - "manservant's": null, - "manse": [["X", "N", "M"]], - "mansions": null, - "mansion": [["M"]], - "manse's": null, - "Mansfield": [["M"]], - "Mansfield's": null, - "mansion's": null, - "manslaughter": [["S", "M"]], - "manslaughters": null, - "manslaughter's": null, - "Man": [["S", "M"]], - "Mans": null, - "Man's": null, - "Manson": [["M"]], - "Manson's": null, - "mans": [["S"]], - "manses": null, - "manta": [["M", "S"]], - "manta's": null, - "mantas": null, - "Mantegna": [["M"]], - "Mantegna's": null, - "mantelpiece": [["M", "S"]], - "mantelpiece's": null, - "mantelpieces": null, - "mantel": [["S", "M"]], - "mantels": null, - "mantel's": null, - "mantes": null, - "mantilla": [["M", "S"]], - "mantilla's": null, - "mantillas": null, - "mantissa": [["S", "M"]], - "mantissas": null, - "mantissa's": null, - "mantis": [["S", "M"]], - "mantises": null, - "mantis's": null, - "mantle": [["E", "S", "D", "G"]], - "dismantles": null, - "dismantled": null, - "dismantling": null, - "mantles": null, - "mantled": null, - "mantling": [["M"]], - "Mantle": [["M"]], - "Mantle's": null, - "mantle's": null, - "mantling's": null, - "mantra": [["M", "S"]], - "mantra's": null, - "mantras": null, - "mantrap": [["S", "M"]], - "mantraps": null, - "mantrap's": null, - "manual": [["S", "M", "Y"]], - "manuals": null, - "manual's": null, - "manually": null, - "Manuela": [["M"]], - "Manuela's": null, - "Manuel": [["M"]], - "Manuel's": null, - "manufacture": [["J", "Z", "G", "D", "S", "R"]], - "manufacturings": null, - "manufacturers": null, - "manufacturing": null, - "manufactured": null, - "manufactures": null, - "manufacturer": [["M"]], - "manufacturer's": null, - "manumission": [["M", "S"]], - "manumission's": null, - "manumissions": null, - "manumit": [["S"]], - "manumits": null, - "manumitted": null, - "manumitting": null, - "manure": [["R", "S", "D", "M", "Z", "G"]], - "manurer": null, - "manures": null, - "manured": null, - "manure's": null, - "manurers": null, - "manuring": null, - "manuscript": [["M", "S"]], - "manuscript's": null, - "manuscripts": null, - "man": [["U", "S", "Y"]], - "unman": null, - "unmans": null, - "Manville": [["M"]], - "Manville's": null, - "Manx": null, - "many": null, - "Manya": [["M"]], - "Manya's": null, - "Maoism": [["M", "S"]], - "Maoism's": null, - "Maoisms": null, - "Maoist": [["S"]], - "Maoists": null, - "Mao": [["M"]], - "Mao's": null, - "Maori": [["S", "M"]], - "Maoris": null, - "Maori's": null, - "Maplecrest": [["M"]], - "Maplecrest's": null, - "maple": [["M", "S"]], - "maple's": null, - "maples": null, - "mapmaker": [["S"]], - "mapmakers": null, - "mappable": null, - "mapped": [["U", "A"]], - "unmapped": null, - "remapped": null, - "mapper": [["S"]], - "mappers": null, - "mapping": [["M", "S"]], - "mapping's": null, - "mappings": null, - "Mapplethorpe": [["M"]], - "Mapplethorpe's": null, - "maps": [["A", "U"]], - "remaps": null, - "unmaps": null, - "map": [["S", "M"]], - "map's": null, - "Maputo": [["M"]], - "Maputo's": null, - "Marabel": [["M"]], - "Marabel's": null, - "marabou": [["M", "S"]], - "marabou's": null, - "marabous": null, - "marabout's": null, - "Maracaibo": [["M"]], - "Maracaibo's": null, - "maraca": [["M", "S"]], - "maraca's": null, - "maracas": null, - "Mara": [["M"]], - "Mara's": null, - "maraschino": [["S", "M"]], - "maraschinos": null, - "maraschino's": null, - "Marathi": null, - "marathoner": [["M"]], - "marathoner's": null, - "Marathon": [["M"]], - "Marathon's": null, - "marathon": [["M", "R", "S", "Z"]], - "marathon's": null, - "marathons": null, - "marathoners": null, - "Marat": [["M"]], - "Marat's": null, - "marauder": [["M"]], - "marauder's": null, - "maraud": [["Z", "G", "R", "D", "S"]], - "marauders": null, - "marauding": null, - "marauded": null, - "marauds": null, - "marbleize": [["G", "S", "D"]], - "marbleizing": null, - "marbleizes": null, - "marbleized": null, - "marble": [["J", "R", "S", "D", "M", "G"]], - "marblings": null, - "marbler": [["M"]], - "marbles": null, - "marbled": null, - "marble's": null, - "marbling": [["M"]], - "marbler's": null, - "marbling's": null, - "Marceau": [["M"]], - "Marceau's": null, - "Marcela": [["M"]], - "Marcela's": null, - "Marcelia": [["M"]], - "Marcelia's": null, - "Marcelino": [["M"]], - "Marcelino's": null, - "Marcella": [["M"]], - "Marcella's": null, - "Marcelle": [["M"]], - "Marcelle's": null, - "Marcellina": [["M"]], - "Marcellina's": null, - "Marcelline": [["M"]], - "Marcelline's": null, - "Marcello": [["M"]], - "Marcello's": null, - "Marcellus": [["M"]], - "Marcellus's": null, - "Marcel": [["M"]], - "Marcel's": null, - "Marcelo": [["M"]], - "Marcelo's": null, - "Marchall": [["M"]], - "Marchall's": null, - "Marchelle": [["M"]], - "Marchelle's": null, - "marcher": [["M"]], - "marcher's": null, - "marchioness": [["S", "M"]], - "marchionesses": null, - "marchioness's": null, - "March": [["M", "S"]], - "March's": null, - "Marches": null, - "march": [["R", "S", "D", "Z", "G"]], - "marches": null, - "marched": null, - "marchers": null, - "marching": null, - "Marcia": [["M"]], - "Marcia's": null, - "Marciano": [["M"]], - "Marciano's": null, - "Marcie": [["M"]], - "Marcie's": null, - "Marcile": [["M"]], - "Marcile's": null, - "Marcille": [["M"]], - "Marcille's": null, - "Marci": [["M"]], - "Marci's": null, - "Marc": [["M"]], - "Marc's": null, - "Marconi": [["M"]], - "Marconi's": null, - "Marco": [["S", "M"]], - "Marcos": null, - "Marco's": null, - "Marcotte": [["M"]], - "Marcotte's": null, - "Marcus": [["M"]], - "Marcus's": null, - "Marcy": [["M"]], - "Marcy's": null, - "Mardi": [["S", "M"]], - "Mardis": null, - "Mardi's": null, - "Marduk": [["M"]], - "Marduk's": null, - "Mareah": [["M"]], - "Mareah's": null, - "mare": [["M", "S"]], - "mare's": null, - "mares": null, - "Marena": [["M"]], - "Marena's": null, - "Maren": [["M"]], - "Maren's": null, - "Maressa": [["M"]], - "Maressa's": null, - "Margalit": [["M"]], - "Margalit's": null, - "Margalo": [["M"]], - "Margalo's": null, - "Marga": [["M"]], - "Marga's": null, - "Margareta": [["M"]], - "Margareta's": null, - "Margarete": [["M"]], - "Margarete's": null, - "Margaretha": [["M"]], - "Margaretha's": null, - "Margarethe": [["M"]], - "Margarethe's": null, - "Margaret": [["M"]], - "Margaret's": null, - "Margaretta": [["M"]], - "Margaretta's": null, - "Margarette": [["M"]], - "Margarette's": null, - "margarine": [["M", "S"]], - "margarine's": null, - "margarines": null, - "Margarita": [["M"]], - "Margarita's": null, - "margarita": [["S", "M"]], - "margaritas": null, - "margarita's": null, - "Margarito": [["M"]], - "Margarito's": null, - "Margaux": [["M"]], - "Margaux's": null, - "Margeaux": [["M"]], - "Margeaux's": null, - "Marge": [["M"]], - "Marge's": null, - "Margery": [["M"]], - "Margery's": null, - "Marget": [["M"]], - "Marget's": null, - "Margette": [["M"]], - "Margette's": null, - "Margie": [["M"]], - "Margie's": null, - "Margi": [["M"]], - "Margi's": null, - "marginalia": null, - "marginality": null, - "marginalization": null, - "marginalize": [["S", "D", "G"]], - "marginalizes": null, - "marginalized": null, - "marginalizing": null, - "marginal": [["Y", "S"]], - "marginally": null, - "marginals": null, - "margin": [["G", "S", "D", "M"]], - "margining": null, - "margins": null, - "margined": null, - "margin's": null, - "Margit": [["M"]], - "Margit's": null, - "Margo": [["M"]], - "Margo's": null, - "Margot": [["M"]], - "Margot's": null, - "Margrethe": [["M"]], - "Margrethe's": null, - "Margret": [["M"]], - "Margret's": null, - "Marguerite": [["M"]], - "Marguerite's": null, - "Margy": [["M"]], - "Margy's": null, - "mariachi": [["S", "M"]], - "mariachis": null, - "mariachi's": null, - "maria": [["M"]], - "maria's": null, - "Maria": [["M"]], - "Maria's": null, - "Mariam": [["M"]], - "Mariam's": null, - "Mariana": [["S", "M"]], - "Marianas": null, - "Mariana's": null, - "Marian": [["M", "S"]], - "Marian's": null, - "Marians": null, - "Marianna": [["M"]], - "Marianna's": null, - "Marianne": [["M"]], - "Marianne's": null, - "Mariann": [["M"]], - "Mariann's": null, - "Mariano": [["M"]], - "Mariano's": null, - "Maribelle": [["M"]], - "Maribelle's": null, - "Maribel": [["M"]], - "Maribel's": null, - "Maribeth": [["M"]], - "Maribeth's": null, - "Maricela": [["M"]], - "Maricela's": null, - "Marice": [["M"]], - "Marice's": null, - "Maridel": [["M"]], - "Maridel's": null, - "Marieann": [["M"]], - "Marieann's": null, - "Mariejeanne": [["M"]], - "Mariejeanne's": null, - "Mariele": [["M"]], - "Mariele's": null, - "Marielle": [["M"]], - "Marielle's": null, - "Mariellen": [["M"]], - "Mariellen's": null, - "Mariel": [["M"]], - "Mariel's": null, - "Marie": [["M"]], - "Marie's": null, - "Marietta": [["M"]], - "Marietta's": null, - "Mariette": [["M"]], - "Mariette's": null, - "Marigold": [["M"]], - "Marigold's": null, - "marigold": [["M", "S"]], - "marigold's": null, - "marigolds": null, - "Marijn": [["M"]], - "Marijn's": null, - "Marijo": [["M"]], - "Marijo's": null, - "marijuana": [["S", "M"]], - "marijuanas": null, - "marijuana's": null, - "Marika": [["M"]], - "Marika's": null, - "Marilee": [["M"]], - "Marilee's": null, - "Marilin": [["M"]], - "Marilin's": null, - "Marillin": [["M"]], - "Marillin's": null, - "Marilyn": [["M"]], - "Marilyn's": null, - "marimba": [["S", "M"]], - "marimbas": null, - "marimba's": null, - "Mari": [["M", "S"]], - "Mari's": null, - "Maris": null, - "marinade": [["M", "G", "D", "S"]], - "marinade's": null, - "marinading": null, - "marinaded": null, - "marinades": null, - "Marina": [["M"]], - "Marina's": null, - "marina": [["M", "S"]], - "marina's": null, - "marinas": null, - "marinara": [["S", "M"]], - "marinaras": null, - "marinara's": null, - "marinate": [["N", "G", "X", "D", "S"]], - "marination": [["M"]], - "marinating": null, - "marinations": null, - "marinated": null, - "marinates": null, - "marination's": null, - "mariner": [["M"]], - "mariner's": null, - "Marine": [["S"]], - "Marines": null, - "marine": [["Z", "R", "S"]], - "mariners": null, - "marines": null, - "Marin": [["M"]], - "Marin's": null, - "Marinna": [["M"]], - "Marinna's": null, - "Marino": [["M"]], - "Marino's": null, - "Mario": [["M"]], - "Mario's": null, - "marionette": [["M", "S"]], - "marionette's": null, - "marionettes": null, - "Marion": [["M"]], - "Marion's": null, - "Mariquilla": [["M"]], - "Mariquilla's": null, - "Marisa": [["M"]], - "Marisa's": null, - "Mariska": [["M"]], - "Mariska's": null, - "Marisol": [["M"]], - "Marisol's": null, - "Marissa": [["M"]], - "Marissa's": null, - "Maritain": [["M"]], - "Maritain's": null, - "marital": [["Y"]], - "maritally": null, - "Marita": [["M"]], - "Marita's": null, - "maritime": [["R"]], - "maritimer": null, - "Maritsa": [["M"]], - "Maritsa's": null, - "Maritza": [["M"]], - "Maritza's": null, - "Mariupol": [["M"]], - "Mariupol's": null, - "Marius": [["M"]], - "Marius's": null, - "Mariya": [["M"]], - "Mariya's": null, - "Marja": [["M"]], - "Marja's": null, - "Marje": [["M"]], - "Marje's": null, - "Marjie": [["M"]], - "Marjie's": null, - "Marji": [["M"]], - "Marji's": null, - "Marj": [["M"]], - "Marj's": null, - "marjoram": [["S", "M"]], - "marjorams": null, - "marjoram's": null, - "Marjorie": [["M"]], - "Marjorie's": null, - "Marjory": [["M"]], - "Marjory's": null, - "Marjy": [["M"]], - "Marjy's": null, - "Markab": [["M"]], - "Markab's": null, - "markdown": [["S", "M"]], - "markdowns": null, - "markdown's": null, - "marked": [["A", "U"]], - "remarked": [["U"]], - "unmarked": null, - "markedly": null, - "marker": [["M"]], - "marker's": null, - "marketability": [["S", "M"]], - "marketabilities": null, - "marketability's": null, - "marketable": [["U"]], - "unmarketable": null, - "Marketa": [["M"]], - "Marketa's": null, - "marketeer": [["S"]], - "marketeers": null, - "marketer": [["M"]], - "marketer's": null, - "market": [["G", "S", "M", "R", "D", "J", "B", "Z"]], - "marketing": [["M"]], - "markets": null, - "market's": null, - "marketed": null, - "marketings": null, - "marketers": null, - "marketing's": null, - "marketplace": [["M", "S"]], - "marketplace's": null, - "marketplaces": null, - "mark": [["G", "Z", "R", "D", "M", "B", "S", "J"]], - "marking": [["M"]], - "markers": null, - "mark's": null, - "markable": null, - "marks": [["A"]], - "markings": null, - "Markham": [["M"]], - "Markham's": null, - "marking's": null, - "Markism": [["M"]], - "Markism's": null, - "markkaa": null, - "markka": [["M"]], - "markka's": null, - "Mark": [["M", "S"]], - "Mark's": null, - "Marks": null, - "Markos": null, - "Markov": null, - "Markovian": null, - "Markovitz": [["M"]], - "Markovitz's": null, - "remarks": null, - "marksman": [["M"]], - "marksman's": null, - "marksmanship": [["S"]], - "marksmanships": null, - "marksmen": null, - "markup": [["S", "M"]], - "markups": null, - "markup's": null, - "Markus": [["M"]], - "Markus's": null, - "Marla": [["M"]], - "Marla's": null, - "Marlane": [["M"]], - "Marlane's": null, - "Marlboro": [["M"]], - "Marlboro's": null, - "Marlborough": [["M"]], - "Marlborough's": null, - "Marleah": [["M"]], - "Marleah's": null, - "Marlee": [["M"]], - "Marlee's": null, - "Marleen": [["M"]], - "Marleen's": null, - "Marlena": [["M"]], - "Marlena's": null, - "Marlene": [["M"]], - "Marlene's": null, - "Marley": [["M"]], - "Marley's": null, - "Marlie": [["M"]], - "Marlie's": null, - "Marline": [["M"]], - "Marline's": null, - "marlinespike": [["S", "M"]], - "marlinespikes": null, - "marlinespike's": null, - "Marlin": [["M"]], - "Marlin's": null, - "marlin": [["S", "M"]], - "marlins": null, - "marlin's": null, - "marl": [["M", "D", "S", "G"]], - "marl's": null, - "marled": null, - "marls": null, - "marling": null, - "Marlo": [["M"]], - "Marlo's": null, - "Marlon": [["M"]], - "Marlon's": null, - "Marlowe": [["M"]], - "Marlowe's": null, - "Marlow": [["M"]], - "Marlow's": null, - "Marlyn": [["M"]], - "Marlyn's": null, - "Marmaduke": [["M"]], - "Marmaduke's": null, - "marmalade": [["M", "S"]], - "marmalade's": null, - "marmalades": null, - "Marmara": [["M"]], - "Marmara's": null, - "marmoreal": null, - "marmoset": [["M", "S"]], - "marmoset's": null, - "marmosets": null, - "marmot": [["S", "M"]], - "marmots": null, - "marmot's": null, - "Marna": [["M"]], - "Marna's": null, - "Marne": [["M"]], - "Marne's": null, - "Marney": [["M"]], - "Marney's": null, - "Marnia": [["M"]], - "Marnia's": null, - "Marnie": [["M"]], - "Marnie's": null, - "Marni": [["M"]], - "Marni's": null, - "maroon": [["G", "R", "D", "S"]], - "marooning": null, - "marooner": null, - "marooned": null, - "maroons": null, - "marquee": [["M", "S"]], - "marquee's": null, - "marquees": null, - "Marquesas": [["M"]], - "Marquesas's": null, - "marque": [["S", "M"]], - "marques": null, - "marque's": null, - "marquess": [["M", "S"]], - "marquess's": null, - "marquesses": null, - "marquetry": [["S", "M"]], - "marquetries": null, - "marquetry's": null, - "Marquette": [["M"]], - "Marquette's": null, - "Marquez": [["M"]], - "Marquez's": null, - "marquise": [["M"]], - "marquise's": null, - "marquisette": [["M", "S"]], - "marquisette's": null, - "marquisettes": null, - "Marquis": [["M"]], - "Marquis's": null, - "marquis": [["S", "M"]], - "marquises": null, - "marquis's": null, - "Marquita": [["M"]], - "Marquita's": null, - "Marrakesh": [["M"]], - "Marrakesh's": null, - "marred": [["U"]], - "unmarred": null, - "marriageability": [["S", "M"]], - "marriageabilities": null, - "marriageability's": null, - "marriageable": null, - "marriage": [["A", "S", "M"]], - "remarriage": null, - "remarriages": null, - "remarriage's": null, - "marriages": null, - "marriage's": null, - "married": [["U", "S"]], - "unmarried": null, - "unmarrieds": null, - "marrieds": null, - "Marrilee": [["M"]], - "Marrilee's": null, - "marring": null, - "Marriott": [["M"]], - "Marriott's": null, - "Marris": [["M"]], - "Marris's": null, - "Marrissa": [["M"]], - "Marrissa's": null, - "marrowbone": [["M", "S"]], - "marrowbone's": null, - "marrowbones": null, - "marrow": [["G", "D", "M", "S"]], - "marrowing": null, - "marrowed": null, - "marrow's": null, - "marrows": null, - "marry": [["S", "D", "G", "A"]], - "marries": null, - "remarries": null, - "remarried": null, - "marrying": null, - "remarrying": null, - "remarry": null, - "mar": [["S"]], - "mars": null, - "Marseillaise": [["S", "M"]], - "Marseillaises": null, - "Marseillaise's": null, - "Marseilles": null, - "Marseille's": null, - "marshal": [["G", "M", "D", "R", "S", "Z"]], - "marshaling": null, - "marshal's": null, - "marshaled": null, - "marshaler": null, - "marshals": null, - "marshalers": null, - "Marshalled": [["M"]], - "Marshalled's": null, - "marshaller": null, - "Marshall": [["G", "D", "M"]], - "Marshalling": [["M"]], - "Marshall's": null, - "Marshalling's": null, - "marshallings": null, - "Marshal": [["M"]], - "Marshal's": null, - "Marsha": [["M"]], - "Marsha's": null, - "marshiness": [["M"]], - "marshiness's": null, - "marshland": [["M", "S"]], - "marshland's": null, - "marshlands": null, - "Marsh": [["M"]], - "Marsh's": null, - "marshmallow": [["S", "M"]], - "marshmallows": null, - "marshmallow's": null, - "marsh": [["M", "S"]], - "marsh's": null, - "marshes": null, - "marshy": [["P", "R", "T"]], - "marshier": null, - "marshiest": null, - "Marsiella": [["M"]], - "Marsiella's": null, - "Mar": [["S", "M", "N"]], - "Mars": null, - "Mar's": null, - "marsupial": [["M", "S"]], - "marsupial's": null, - "marsupials": null, - "Martainn": [["M"]], - "Martainn's": null, - "Marta": [["M"]], - "Marta's": null, - "Martelle": [["M"]], - "Martelle's": null, - "Martel": [["M"]], - "Martel's": null, - "marten": [["M"]], - "marten's": null, - "Marten": [["M"]], - "Marten's": null, - "Martguerita": [["M"]], - "Martguerita's": null, - "Martha": [["M"]], - "Martha's": null, - "Marthe": [["M"]], - "Marthe's": null, - "Marthena": [["M"]], - "Marthena's": null, - "Martial": null, - "martial": [["Y"]], - "martially": null, - "Martian": [["S"]], - "Martians": null, - "Martica": [["M"]], - "Martica's": null, - "Martie": [["M"]], - "Martie's": null, - "Marti": [["M"]], - "Marti's": null, - "Martina": [["M"]], - "Martina's": null, - "martinet": [["S", "M"]], - "martinets": null, - "martinet's": null, - "Martinez": [["M"]], - "Martinez's": null, - "martingale": [["M", "S"]], - "martingale's": null, - "martingales": null, - "martini": [["M", "S"]], - "martini's": null, - "martinis": null, - "Martinique": [["M"]], - "Martinique's": null, - "Martin": [["M"]], - "Martin's": null, - "Martino": [["M"]], - "Martino's": null, - "martin": [["S", "M"]], - "martins": null, - "martin's": null, - "Martinson": [["M"]], - "Martinson's": null, - "Martita": [["M"]], - "Martita's": null, - "mart": [["M", "D", "N", "G", "X", "S"]], - "mart's": null, - "marted": null, - "marting": null, - "martens": null, - "marts": null, - "Mart": [["M", "N"]], - "Mart's": null, - "Marty": [["M"]], - "Marty's": null, - "Martyn": [["M"]], - "Martyn's": null, - "Martynne": [["M"]], - "Martynne's": null, - "martyrdom": [["S", "M"]], - "martyrdoms": null, - "martyrdom's": null, - "martyr": [["G", "D", "M", "S"]], - "martyring": null, - "martyred": null, - "martyr's": null, - "martyrs": null, - "Marva": [["M"]], - "Marva's": null, - "marvel": [["D", "G", "S"]], - "marveled": null, - "marveling": null, - "marvels": null, - "Marvell": [["M"]], - "Marvell's": null, - "marvelous": [["P", "Y"]], - "marvelousness": null, - "marvelously": null, - "Marve": [["M"]], - "Marve's": null, - "Marven": [["M"]], - "Marven's": null, - "Marvin": [["M"]], - "Marvin's": null, - "Marv": [["N", "M"]], - "Marv's": null, - "Marwin": [["M"]], - "Marwin's": null, - "Marxian": [["S"]], - "Marxians": null, - "Marxism": [["S", "M"]], - "Marxisms": null, - "Marxism's": null, - "Marxist": [["S", "M"]], - "Marxists": null, - "Marxist's": null, - "Marx": [["M"]], - "Marx's": null, - "Marya": [["M"]], - "Marya's": null, - "Maryanna": [["M"]], - "Maryanna's": null, - "Maryanne": [["M"]], - "Maryanne's": null, - "Maryann": [["M"]], - "Maryann's": null, - "Marybelle": [["M"]], - "Marybelle's": null, - "Marybeth": [["M"]], - "Marybeth's": null, - "Maryellen": [["M"]], - "Maryellen's": null, - "Maryjane": [["M"]], - "Maryjane's": null, - "Maryjo": [["M"]], - "Maryjo's": null, - "Maryland": [["M", "Z", "R"]], - "Maryland's": null, - "Marylanders": null, - "Marylander": null, - "Marylee": [["M"]], - "Marylee's": null, - "Marylinda": [["M"]], - "Marylinda's": null, - "Marylin": [["M"]], - "Marylin's": null, - "Maryl": [["M"]], - "Maryl's": null, - "Marylou": [["M"]], - "Marylou's": null, - "Marylynne": [["M"]], - "Marylynne's": null, - "Mary": [["M"]], - "Mary's": null, - "Maryrose": [["M"]], - "Maryrose's": null, - "Marys": null, - "Marysa": [["M"]], - "Marysa's": null, - "marzipan": [["S", "M"]], - "marzipans": null, - "marzipan's": null, - "Masada": [["M"]], - "Masada's": null, - "Masai": [["M"]], - "Masai's": null, - "Masaryk": [["M"]], - "Masaryk's": null, - "masc": null, - "Mascagni": [["M"]], - "Mascagni's": null, - "mascara": [["S", "G", "M", "D"]], - "mascaras": null, - "mascaraing": null, - "mascara's": null, - "mascaraed": null, - "mascot": [["S", "M"]], - "mascots": null, - "mascot's": null, - "masculineness": [["M"]], - "masculineness's": null, - "masculine": [["P", "Y", "S"]], - "masculinely": null, - "masculines": null, - "masculinity": [["S", "M"]], - "masculinities": null, - "masculinity's": null, - "Masefield": [["M"]], - "Masefield's": null, - "maser": [["M"]], - "maser's": null, - "Maseru": [["M"]], - "Maseru's": null, - "MASH": null, - "Masha": [["M"]], - "Masha's": null, - "Mashhad": [["M"]], - "Mashhad's": null, - "mash": [["J", "G", "Z", "M", "S", "R", "D"]], - "mashings": null, - "mashing": null, - "mashers": null, - "mash's": null, - "mashes": null, - "masher": null, - "mashed": null, - "m": [["A", "S", "K"]], - "rem": null, - "rems": null, - "ms": null, - "proms": null, - "prom": null, - "masked": [["U"]], - "unmasked": null, - "masker": [["M"]], - "masker's": null, - "mask": [["G", "Z", "S", "R", "D", "M", "J"]], - "masking": null, - "maskers": null, - "masks": [["U"]], - "mask's": null, - "maskings": null, - "unmasks": null, - "masochism": [["M", "S"]], - "masochism's": null, - "masochisms": null, - "masochistic": null, - "masochistically": null, - "masochist": [["M", "S"]], - "masochist's": null, - "masochists": null, - "masonic": null, - "Masonic": null, - "Masonite": [["M"]], - "Masonite's": null, - "masonry": [["M", "S"]], - "masonry's": null, - "masonries": null, - "mason": [["S", "D", "M", "G"]], - "masons": null, - "masoned": null, - "mason's": null, - "masoning": null, - "Mason": [["S", "M"]], - "Masons": null, - "Mason's": null, - "masquerader": [["M"]], - "masquerader's": null, - "masquerade": [["R", "S", "D", "G", "M", "Z"]], - "masquerades": null, - "masqueraded": null, - "masquerading": null, - "masquerade's": null, - "masqueraders": null, - "masquer": [["M"]], - "masquer's": null, - "masque": [["R", "S", "M", "Z"]], - "masques": null, - "masque's": null, - "masquers": null, - "Massachusetts": [["M"]], - "Massachusetts's": null, - "massacre": [["D", "R", "S", "M", "G"]], - "massacred": null, - "massacrer": null, - "massacres": null, - "massacre's": null, - "massacring": null, - "massager": [["M"]], - "massager's": null, - "massage": [["S", "R", "D", "M", "G"]], - "massages": null, - "massaged": null, - "massage's": null, - "massaging": null, - "Massasoit": [["M"]], - "Massasoit's": null, - "Massenet": [["M"]], - "Massenet's": null, - "masseur": [["M", "S"]], - "masseur's": null, - "masseurs": null, - "masseuse": [["S", "M"]], - "masseuses": null, - "masseuse's": null, - "Massey": [["M"]], - "Massey's": null, - "massif": [["S", "M"]], - "massifs": null, - "massif's": null, - "Massimiliano": [["M"]], - "Massimiliano's": null, - "Massimo": [["M"]], - "Massimo's": null, - "massing": [["R"]], - "massinger": null, - "massiveness": [["S", "M"]], - "massivenesses": null, - "massiveness's": null, - "massive": [["Y", "P"]], - "massively": null, - "massless": null, - "mas": [["S", "R", "Z"]], - "mases": null, - "masers": null, - "Mass": [["S"]], - "Masses": null, - "mass": [["V", "G", "S", "D"]], - "masses": null, - "massed": null, - "mastectomy": [["M", "S"]], - "mastectomy's": null, - "mastectomies": null, - "masterclass": null, - "mastered": [["A"]], - "remastered": null, - "masterfulness": [["M"]], - "masterfulness's": null, - "masterful": [["Y", "P"]], - "masterfully": null, - "master": [["J", "G", "D", "Y", "M"]], - "masterings": null, - "mastering": null, - "masterly": [["P"]], - "master's": null, - "masterliness": [["M"]], - "masterliness's": null, - "mastermind": [["G", "D", "S"]], - "masterminding": null, - "masterminded": null, - "masterminds": null, - "masterpiece": [["M", "S"]], - "masterpiece's": null, - "masterpieces": null, - "mastership": [["M"]], - "mastership's": null, - "Master": [["S", "M"]], - "Masters": null, - "Master's": null, - "masterstroke": [["M", "S"]], - "masterstroke's": null, - "masterstrokes": null, - "masterwork": [["S"]], - "masterworks": null, - "mastery": [["M", "S"]], - "mastery's": null, - "masteries": null, - "mast": [["G", "Z", "S", "M", "R", "D"]], - "masting": null, - "masters": null, - "masts": null, - "mast's": null, - "masted": null, - "masthead": [["S", "D", "M", "G"]], - "mastheads": null, - "mastheaded": null, - "masthead's": null, - "mastheading": null, - "masticate": [["S", "D", "X", "G", "N"]], - "masticates": null, - "masticated": null, - "mastications": null, - "masticating": null, - "mastication": [["M"]], - "mastication's": null, - "mastic": [["S", "M"]], - "mastics": null, - "mastic's": null, - "mastiff": [["M", "S"]], - "mastiff's": null, - "mastiffs": null, - "mastodon": [["M", "S"]], - "mastodon's": null, - "mastodons": null, - "mastoid": [["S"]], - "mastoids": null, - "masturbate": [["S", "D", "N", "G", "X"]], - "masturbates": null, - "masturbated": null, - "masturbation": [["M"]], - "masturbating": null, - "masturbations": null, - "masturbation's": null, - "masturbatory": null, - "matador": [["S", "M"]], - "matadors": null, - "matador's": null, - "Mata": [["M"]], - "Mata's": null, - "matchable": [["U"]], - "unmatchable": null, - "match": [["B", "M", "R", "S", "D", "Z", "G", "J"]], - "match's": [["A"]], - "matcher": [["M"]], - "matches": [["A"]], - "matched": [["U", "A"]], - "matchers": null, - "matching": null, - "matchings": null, - "matchbook": [["S", "M"]], - "matchbooks": null, - "matchbook's": null, - "matchbox": [["S", "M"]], - "matchboxes": null, - "matchbox's": null, - "unmatched": null, - "rematched": null, - "matcher's": null, - "rematches": null, - "matchless": [["Y"]], - "matchlessly": null, - "matchlock": [["M", "S"]], - "matchlock's": null, - "matchlocks": null, - "matchmake": [["G", "Z", "J", "R"]], - "matchmaking": [["M"]], - "matchmakers": null, - "matchmakings": null, - "matchmaker": [["M"]], - "matchmaker's": null, - "matchmaking's": null, - "matchplay": null, - "rematch's": null, - "matchstick": [["M", "S"]], - "matchstick's": null, - "matchsticks": null, - "matchwood": [["S", "M"]], - "matchwoods": null, - "matchwood's": null, - "mated": [["U"]], - "unmated": null, - "mate": [["I", "M", "S"]], - "inmate": null, - "inmate's": null, - "inmates": null, - "mate's": null, - "mates": [["U"]], - "Matelda": [["M"]], - "Matelda's": null, - "Mateo": [["M"]], - "Mateo's": null, - "materialism": [["S", "M"]], - "materialisms": null, - "materialism's": null, - "materialistic": null, - "materialistically": null, - "materialist": [["S", "M"]], - "materialists": null, - "materialist's": null, - "materiality": [["M"]], - "materiality's": null, - "materialization": [["S", "M"]], - "materializations": null, - "materialization's": null, - "materialize": [["C", "D", "S"]], - "dematerialize": null, - "dematerialized": null, - "dematerializes": null, - "materialized": [["A"]], - "materializes": [["A"]], - "rematerialized": null, - "materializer": [["S", "M"]], - "materializers": null, - "materializer's": null, - "rematerializes": null, - "materializing": null, - "materialness": [["M"]], - "materialness's": null, - "material": [["S", "P", "Y", "M"]], - "materials": null, - "materially": null, - "material's": null, - "mat�riel": [["M", "S"]], - "mat�riel's": null, - "mat�riels": null, - "mater": [["M"]], - "mater's": null, - "maternal": [["Y"]], - "maternally": null, - "maternity": [["M", "S"]], - "maternity's": null, - "maternities": null, - "unmates": null, - "mathematical": [["Y"]], - "mathematically": null, - "Mathematica": [["M"]], - "Mathematica's": null, - "mathematician": [["S", "M"]], - "mathematicians": null, - "mathematician's": null, - "mathematic": [["S"]], - "mathematics": [["M"]], - "mathematics's": null, - "Mathematik": [["M"]], - "Mathematik's": null, - "Mather": [["M"]], - "Mather's": null, - "Mathe": [["R", "M"]], - "Mathe's": null, - "Mathew": [["M", "S"]], - "Mathew's": null, - "Mathews": null, - "Mathewson": [["M"]], - "Mathewson's": null, - "Mathian": [["M"]], - "Mathian's": null, - "Mathias": null, - "Mathieu": [["M"]], - "Mathieu's": null, - "Mathilda": [["M"]], - "Mathilda's": null, - "Mathilde": [["M"]], - "Mathilde's": null, - "Mathis": null, - "math's": null, - "maths": null, - "Matias": [["M"]], - "Matias's": null, - "Matilda": [["M"]], - "Matilda's": null, - "Matilde": [["M"]], - "Matilde's": null, - "matin�e": [["S"]], - "matin�es": null, - "mating": [["M"]], - "mating's": null, - "matins": [["M"]], - "matins's": null, - "Matisse": [["S", "M"]], - "Matisses": null, - "Matisse's": null, - "matriarchal": null, - "matriarch": [["M"]], - "matriarch's": null, - "matriarchs": null, - "matriarchy": [["M", "S"]], - "matriarchy's": null, - "matriarchies": null, - "matrices": null, - "matricidal": null, - "matricide": [["M", "S"]], - "matricide's": null, - "matricides": null, - "matriculate": [["X", "S", "D", "G", "N"]], - "matriculations": null, - "matriculates": null, - "matriculated": null, - "matriculating": null, - "matriculation": [["M"]], - "matriculation's": null, - "matrimonial": [["Y"]], - "matrimonially": null, - "matrimony": [["S", "M"]], - "matrimonies": null, - "matrimony's": null, - "matrix": [["M"]], - "matrix's": null, - "matron": [["Y", "M", "S"]], - "matronly": null, - "matron's": null, - "matrons": null, - "mat": [["S", "J", "G", "M", "D", "R"]], - "mats": null, - "matings": null, - "mat's": null, - "Matsumoto": [["M"]], - "Matsumoto's": null, - "matte": [["J", "G", "M", "Z", "S", "R", "D"]], - "mattings": null, - "matting": [["M"]], - "matte's": null, - "matters": null, - "mattes": null, - "matter": [["G", "D", "M"]], - "matted": null, - "Mattel": [["M"]], - "Mattel's": null, - "Matteo": [["M"]], - "Matteo's": null, - "mattering": null, - "mattered": null, - "matter's": null, - "Matterhorn": [["M"]], - "Matterhorn's": null, - "Matthaeus": [["M"]], - "Matthaeus's": null, - "Mattheus": [["M"]], - "Mattheus's": null, - "Matthew": [["M", "S"]], - "Matthew's": null, - "Matthews": null, - "Matthias": null, - "Matthieu": [["M"]], - "Matthieu's": null, - "Matthiew": [["M"]], - "Matthiew's": null, - "Matthus": [["M"]], - "Matthus's": null, - "Mattias": [["M"]], - "Mattias's": null, - "Mattie": [["M"]], - "Mattie's": null, - "Matti": [["M"]], - "Matti's": null, - "matting's": null, - "mattins's": null, - "Matt": [["M"]], - "Matt's": null, - "mattock": [["M", "S"]], - "mattock's": null, - "mattocks": null, - "mattress": [["M", "S"]], - "mattress's": null, - "mattresses": null, - "matt's": null, - "Matty": [["M"]], - "Matty's": null, - "maturate": [["D", "S", "N", "G", "V", "X"]], - "maturated": null, - "maturates": null, - "maturation": [["M"]], - "maturating": null, - "maturative": null, - "maturations": null, - "maturational": null, - "maturation's": null, - "matureness": [["M"]], - "matureness's": null, - "maturer": [["M"]], - "maturer's": null, - "mature": [["R", "S", "D", "T", "P", "Y", "G"]], - "matures": null, - "matured": null, - "maturest": null, - "maturely": null, - "maturing": null, - "maturity": [["M", "S"]], - "maturity's": null, - "maturities": null, - "matzo": [["S", "H", "M"]], - "matzos": null, - "matzoth": null, - "matzo's": null, - "matzot": null, - "Maude": [["M"]], - "Maude's": null, - "Maudie": [["M"]], - "Maudie's": null, - "maudlin": [["Y"]], - "maudlinly": null, - "Maud": [["M"]], - "Maud's": null, - "Maugham": [["M"]], - "Maugham's": null, - "Maui": [["M"]], - "Maui's": null, - "mauler": [["M"]], - "mauler's": null, - "maul": [["R", "D", "G", "Z", "S"]], - "mauled": null, - "mauling": null, - "maulers": null, - "mauls": null, - "maunder": [["G", "D", "S"]], - "maundering": null, - "maundered": null, - "maunders": null, - "Maupassant": [["M"]], - "Maupassant's": null, - "Maura": [["M"]], - "Maura's": null, - "Maureene": [["M"]], - "Maureene's": null, - "Maureen": [["M"]], - "Maureen's": null, - "Maure": [["M"]], - "Maure's": null, - "Maurene": [["M"]], - "Maurene's": null, - "Mauriac": [["M"]], - "Mauriac's": null, - "Maurice": [["M"]], - "Maurice's": null, - "Mauricio": [["M"]], - "Mauricio's": null, - "Maurie": [["M"]], - "Maurie's": null, - "Maurine": [["M"]], - "Maurine's": null, - "Maurise": [["M"]], - "Maurise's": null, - "Maurita": [["M"]], - "Maurita's": null, - "Mauritania": [["M"]], - "Mauritania's": null, - "Mauritanian": [["S"]], - "Mauritanians": null, - "Mauritian": [["S"]], - "Mauritians": null, - "Mauritius": [["M"]], - "Mauritius's": null, - "Maurits": [["M"]], - "Maurits's": null, - "Maurizia": [["M"]], - "Maurizia's": null, - "Maurizio": [["M"]], - "Maurizio's": null, - "Maurois": [["M"]], - "Maurois's": null, - "Mauro": [["M"]], - "Mauro's": null, - "Maury": [["M"]], - "Maury's": null, - "Mauser": [["M"]], - "Mauser's": null, - "mausoleum": [["S", "M"]], - "mausoleums": null, - "mausoleum's": null, - "mauve": [["S", "M"]], - "mauves": null, - "mauve's": null, - "maven": [["S"]], - "mavens": null, - "maverick": [["S", "M", "D", "G"]], - "mavericks": null, - "maverick's": null, - "mavericked": null, - "mavericking": null, - "mavin's": null, - "Mavis": [["M"]], - "Mavis's": null, - "Mavra": [["M"]], - "Mavra's": null, - "mawkishness": [["S", "M"]], - "mawkishnesses": null, - "mawkishness's": null, - "mawkish": [["P", "Y"]], - "mawkishly": null, - "Mawr": [["M"]], - "Mawr's": null, - "maw": [["S", "G", "M", "D"]], - "maws": null, - "mawing": null, - "maw's": null, - "mawed": null, - "max": [["G", "D", "S"]], - "maxing": null, - "maxed": null, - "maxes": null, - "Maxie": [["M"]], - "Maxie's": null, - "maxillae": null, - "maxilla": [["M"]], - "maxilla's": null, - "maxillary": [["S"]], - "maxillaries": null, - "Maxi": [["M"]], - "Maxi's": null, - "maximality": null, - "maximal": [["S", "Y"]], - "maximals": null, - "maximally": null, - "maxima's": null, - "Maximilian": [["M"]], - "Maximilian's": null, - "Maximilianus": [["M"]], - "Maximilianus's": null, - "Maximilien": [["M"]], - "Maximilien's": null, - "maximization": [["S", "M"]], - "maximizations": null, - "maximization's": null, - "maximizer": [["M"]], - "maximizer's": null, - "maximize": [["R", "S", "D", "Z", "G"]], - "maximizes": null, - "maximized": null, - "maximizers": null, - "maximizing": null, - "Maxim": [["M"]], - "Maxim's": null, - "Maximo": [["M"]], - "Maximo's": null, - "maxim": [["S", "M"]], - "maxims": null, - "maxim's": null, - "maximum": [["M", "Y", "S"]], - "maximum's": null, - "maximumly": null, - "maximums": null, - "Maxine": [["M"]], - "Maxine's": null, - "maxi": [["S"]], - "maxis": null, - "Max": [["M"]], - "Max's": null, - "Maxtor": [["M"]], - "Maxtor's": null, - "Maxwellian": null, - "maxwell": [["M"]], - "maxwell's": null, - "Maxwell": [["M"]], - "Maxwell's": null, - "Maxy": [["M"]], - "Maxy's": null, - "Maya": [["M", "S"]], - "Maya's": null, - "Mayas": null, - "Mayan": [["S"]], - "Mayans": null, - "Maybelle": [["M"]], - "Maybelle's": null, - "maybe": [["S"]], - "maybes": null, - "mayday": [["S"]], - "maydays": null, - "may": [["E", "G", "S"]], - "dismays": null, - "maying": null, - "mays": null, - "Maye": [["M"]], - "Maye's": null, - "mayer": null, - "Mayer": [["M"]], - "Mayer's": null, - "mayest": null, - "Mayfair": [["M"]], - "Mayfair's": null, - "Mayflower": [["M"]], - "Mayflower's": null, - "mayflower": [["S", "M"]], - "mayflowers": null, - "mayflower's": null, - "mayfly": [["M", "S"]], - "mayfly's": null, - "mayflies": null, - "mayhap": null, - "mayhem": [["M", "S"]], - "mayhem's": null, - "mayhems": null, - "Maynard": [["M"]], - "Maynard's": null, - "Mayne": [["M"]], - "Mayne's": null, - "Maynord": [["M"]], - "Maynord's": null, - "mayn't": null, - "Mayo": [["M"]], - "Mayo's": null, - "mayonnaise": [["M", "S"]], - "mayonnaise's": null, - "mayonnaises": null, - "mayoral": null, - "mayoralty": [["M", "S"]], - "mayoralty's": null, - "mayoralties": null, - "mayoress": [["M", "S"]], - "mayoress's": null, - "mayoresses": null, - "Mayor": [["M"]], - "Mayor's": null, - "mayor": [["M", "S"]], - "mayor's": null, - "mayors": null, - "mayorship": [["M"]], - "mayorship's": null, - "mayo": [["S"]], - "mayos": null, - "maypole": [["M", "S"]], - "maypole's": null, - "maypoles": null, - "Maypole": [["S", "M"]], - "Maypoles": null, - "Maypole's": null, - "Mayra": [["M"]], - "Mayra's": null, - "May": [["S", "M", "R"]], - "Mays": null, - "May's": null, - "mayst": null, - "Mazama": [["M"]], - "Mazama's": null, - "Mazarin": [["M"]], - "Mazarin's": null, - "Mazatlan": [["M"]], - "Mazatlan's": null, - "Mazda": [["M"]], - "Mazda's": null, - "mazedness": [["S", "M"]], - "mazednesses": null, - "mazedness's": null, - "mazed": [["Y", "P"]], - "mazedly": null, - "maze": [["M", "G", "D", "S", "R"]], - "maze's": null, - "mazing": null, - "mazes": null, - "mazer": null, - "mazurka": [["S", "M"]], - "mazurkas": null, - "mazurka's": null, - "Mazzini": [["M"]], - "Mazzini's": null, - "Mb": null, - "MB": null, - "MBA": null, - "Mbabane": [["M"]], - "Mbabane's": null, - "Mbini": [["M"]], - "Mbini's": null, - "MC": null, - "McAdam": [["M", "S"]], - "McAdam's": null, - "McAdams": null, - "McAllister": [["M"]], - "McAllister's": null, - "McBride": [["M"]], - "McBride's": null, - "McCabe": [["M"]], - "McCabe's": null, - "McCain": [["M"]], - "McCain's": null, - "McCall": [["M"]], - "McCall's": null, - "McCarthyism": [["M"]], - "McCarthyism's": null, - "McCarthy": [["M"]], - "McCarthy's": null, - "McCartney": [["M"]], - "McCartney's": null, - "McCarty": [["M"]], - "McCarty's": null, - "McCauley": [["M"]], - "McCauley's": null, - "McClain": [["M"]], - "McClain's": null, - "McClellan": [["M"]], - "McClellan's": null, - "McClure": [["M"]], - "McClure's": null, - "McCluskey": [["M"]], - "McCluskey's": null, - "McConnell": [["M"]], - "McConnell's": null, - "McCormick": [["M"]], - "McCormick's": null, - "McCoy": [["S", "M"]], - "McCoys": null, - "McCoy's": null, - "McCracken": [["M"]], - "McCracken's": null, - "McCray": [["M"]], - "McCray's": null, - "McCullough": [["M"]], - "McCullough's": null, - "McDaniel": [["M"]], - "McDaniel's": null, - "McDermott": [["M"]], - "McDermott's": null, - "McDonald": [["M"]], - "McDonald's": null, - "McDonnell": [["M"]], - "McDonnell's": null, - "McDougall": [["M"]], - "McDougall's": null, - "McDowell": [["M"]], - "McDowell's": null, - "McElhaney": [["M"]], - "McElhaney's": null, - "McEnroe": [["M"]], - "McEnroe's": null, - "McFadden": [["M"]], - "McFadden's": null, - "McFarland": [["M"]], - "McFarland's": null, - "McGee": [["M"]], - "McGee's": null, - "McGill": [["M"]], - "McGill's": null, - "McGovern": [["M"]], - "McGovern's": null, - "McGowan": [["M"]], - "McGowan's": null, - "McGrath": [["M"]], - "McGrath's": null, - "McGraw": [["M"]], - "McGraw's": null, - "McGregor": [["M"]], - "McGregor's": null, - "McGuffey": [["M"]], - "McGuffey's": null, - "McGuire": [["M"]], - "McGuire's": null, - "MCI": [["M"]], - "MCI's": null, - "McIntosh": [["M"]], - "McIntosh's": null, - "McIntyre": [["M"]], - "McIntyre's": null, - "McKay": [["M"]], - "McKay's": null, - "McKee": [["M"]], - "McKee's": null, - "McKenzie": [["M"]], - "McKenzie's": null, - "McKesson": [["M"]], - "McKesson's": null, - "McKinley": [["M"]], - "McKinley's": null, - "McKinney": [["M"]], - "McKinney's": null, - "McKnight": [["M"]], - "McKnight's": null, - "McLanahan": [["M"]], - "McLanahan's": null, - "McLaughlin": [["M"]], - "McLaughlin's": null, - "McLean": [["M"]], - "McLean's": null, - "McLeod": [["M"]], - "McLeod's": null, - "McLuhan": [["M"]], - "McLuhan's": null, - "McMahon": [["M"]], - "McMahon's": null, - "McMartin": [["M"]], - "McMartin's": null, - "McMillan": [["M"]], - "McMillan's": null, - "McNamara": [["M"]], - "McNamara's": null, - "McNaughton": [["M"]], - "McNaughton's": null, - "McNeil": [["M"]], - "McNeil's": null, - "McPherson": [["M"]], - "McPherson's": null, - "MD": null, - "Md": [["M"]], - "Md's": null, - "mdse": null, - "MDT": null, - "ME": null, - "Meade": [["M"]], - "Meade's": null, - "Mead": [["M"]], - "Mead's": null, - "meadowland": null, - "meadowlark": [["S", "M"]], - "meadowlarks": null, - "meadowlark's": null, - "meadow": [["M", "S"]], - "meadow's": null, - "meadows": null, - "Meadows": null, - "meadowsweet": [["M"]], - "meadowsweet's": null, - "mead": [["S", "M"]], - "meads": null, - "mead's": null, - "Meagan": [["M"]], - "Meagan's": null, - "meagerness": [["S", "M"]], - "meagernesses": null, - "meagerness's": null, - "meager": [["P", "Y"]], - "meagerly": null, - "Meaghan": [["M"]], - "Meaghan's": null, - "meagres": null, - "mealiness": [["M", "S"]], - "mealiness's": null, - "mealinesses": null, - "meal": [["M", "D", "G", "S"]], - "meal's": null, - "mealed": null, - "mealing": null, - "meals": null, - "mealtime": [["M", "S"]], - "mealtime's": null, - "mealtimes": null, - "mealybug": [["S"]], - "mealybugs": null, - "mealymouthed": null, - "mealy": [["P", "R", "S", "T"]], - "mealier": null, - "mealies": null, - "mealiest": null, - "meander": [["J", "D", "S", "G"]], - "meanderings": null, - "meandered": null, - "meanders": null, - "meandering": null, - "meaneing": null, - "meanie": [["M", "S"]], - "meanie's": null, - "meanies": null, - "meaningfulness": [["S", "M"]], - "meaningfulnesses": null, - "meaningfulness's": null, - "meaningful": [["Y", "P"]], - "meaningfully": null, - "meaninglessness": [["S", "M"]], - "meaninglessnesses": null, - "meaninglessness's": null, - "meaningless": [["P", "Y"]], - "meaninglessly": null, - "meaning": [["M"]], - "meaning's": null, - "meanness": [["S"]], - "meannesses": null, - "means": [["M"]], - "means's": null, - "meantime": [["S", "M"]], - "meantimes": null, - "meantime's": null, - "meant": [["U"]], - "unmeant": null, - "meanwhile": [["S"]], - "meanwhiles": null, - "Meany": [["M"]], - "Meany's": null, - "mean": [["Y", "R", "G", "J", "T", "P", "S"]], - "meanly": null, - "meaner": null, - "meanings": null, - "meanest": null, - "meany's": null, - "Meara": [["M"]], - "Meara's": null, - "measle": [["S", "D"]], - "measles": [["M"]], - "measled": null, - "measles's": null, - "measly": [["T", "R"]], - "measliest": null, - "measlier": null, - "measurable": [["U"]], - "unmeasurable": null, - "measurably": null, - "measure": [["B", "L", "M", "G", "R", "S", "D"]], - "measurement": [["S", "M"]], - "measure's": null, - "measuring": [["A"]], - "measurer": [["M"]], - "measures": [["A"]], - "measured": [["Y"]], - "measuredly": null, - "measureless": null, - "measurements": null, - "measurement's": null, - "measurer's": null, - "remeasures": null, - "remeasuring": null, - "meas": [["Y"]], - "meataxe": null, - "meatball": [["M", "S"]], - "meatball's": null, - "meatballs": null, - "meatiness": [["M", "S"]], - "meatiness's": null, - "meatinesses": null, - "meatless": null, - "meatloaf": null, - "meatloaves": null, - "meat": [["M", "S"]], - "meat's": null, - "meats": null, - "meatpacking": [["S"]], - "meatpackings": null, - "meaty": [["R", "P", "T"]], - "meatier": null, - "meatiest": null, - "Mecca": [["M", "S"]], - "Mecca's": null, - "Meccas": null, - "mecca": [["S"]], - "meccas": null, - "mechanical": [["Y", "S"]], - "mechanically": null, - "mechanicals": null, - "mechanic": [["M", "S"]], - "mechanic's": null, - "mechanics": null, - "mechanism": [["S", "M"]], - "mechanisms": null, - "mechanism's": null, - "mechanistic": null, - "mechanistically": null, - "mechanist": [["M"]], - "mechanist's": null, - "mechanization": [["S", "M"]], - "mechanizations": null, - "mechanization's": null, - "mechanized": [["U"]], - "unmechanized": null, - "mechanizer": [["M"]], - "mechanizer's": null, - "mechanize": [["R", "S", "D", "Z", "G", "B"]], - "mechanizes": [["U"]], - "mechanizers": null, - "mechanizing": null, - "mechanizable": null, - "unmechanizes": null, - "mechanochemically": null, - "Mechelle": [["M"]], - "Mechelle's": null, - "med": null, - "medalist": [["M", "S"]], - "medalist's": null, - "medalists": null, - "medallion": [["M", "S"]], - "medallion's": null, - "medallions": null, - "medal": [["S", "G", "M", "D"]], - "medals": null, - "medaling": null, - "medal's": null, - "medaled": null, - "Medan": [["M"]], - "Medan's": null, - "meddle": [["G", "R", "S", "D", "Z"]], - "meddling": null, - "meddler": null, - "meddles": null, - "meddled": null, - "meddlers": null, - "meddlesome": null, - "Medea": [["M"]], - "Medea's": null, - "Medellin": null, - "Medfield": [["M"]], - "Medfield's": null, - "mediaeval's": null, - "medial": [["A", "Y"]], - "remedial": null, - "remedially": null, - "medially": null, - "medials": null, - "median": [["Y", "M", "S"]], - "medianly": null, - "median's": null, - "medians": null, - "media": [["S", "M"]], - "medias": null, - "media's": null, - "mediateness": [["M"]], - "mediateness's": null, - "mediate": [["P", "S", "D", "Y", "V", "N", "G", "X"]], - "mediates": null, - "mediated": null, - "mediately": null, - "mediative": null, - "mediation": [["A", "S", "M"]], - "mediating": null, - "mediations": null, - "remediation": null, - "remediations": null, - "remediation's": null, - "mediation's": null, - "mediator": [["S", "M"]], - "mediators": null, - "mediator's": null, - "Medicaid": [["S", "M"]], - "Medicaids": null, - "Medicaid's": null, - "medical": [["Y", "S"]], - "medically": null, - "medicals": null, - "medicament": [["M", "S"]], - "medicament's": null, - "medicaments": null, - "Medicare": [["M", "S"]], - "Medicare's": null, - "Medicares": null, - "medicate": [["D", "S", "X", "N", "G", "V"]], - "medicated": null, - "medicates": null, - "medications": null, - "medication": [["M"]], - "medicating": null, - "medicative": null, - "medication's": null, - "Medici": [["M", "S"]], - "Medici's": null, - "Medicis": null, - "medicinal": [["S", "Y"]], - "medicinals": null, - "medicinally": null, - "medicine": [["D", "S", "M", "G"]], - "medicined": null, - "medicines": null, - "medicine's": null, - "medicining": null, - "medico": [["S", "M"]], - "medicos": null, - "medico's": null, - "medic": [["S", "M"]], - "medics": null, - "medic's": null, - "medievalist": [["M", "S"]], - "medievalist's": null, - "medievalists": null, - "medieval": [["Y", "M", "S"]], - "medievally": null, - "medieval's": null, - "medievals": null, - "Medina": [["M"]], - "Medina's": null, - "mediocre": null, - "mediocrity": [["M", "S"]], - "mediocrity's": null, - "mediocrities": null, - "meditate": [["N", "G", "V", "X", "D", "S"]], - "meditation": [["M"]], - "meditating": null, - "meditative": [["P", "Y"]], - "meditations": null, - "meditated": null, - "meditates": null, - "meditation's": null, - "meditativeness": [["M"]], - "meditativeness's": null, - "meditatively": null, - "Mediterranean": [["M", "S"]], - "Mediterranean's": null, - "Mediterraneans": null, - "mediumistic": null, - "medium": [["S", "M"]], - "mediums": null, - "medium's": null, - "medley": [["S", "M"]], - "medleys": null, - "medley's": null, - "medulla": [["S", "M"]], - "medullas": null, - "medulla's": null, - "Medusa": [["M"]], - "Medusa's": null, - "meed": [["M", "S"]], - "meed's": null, - "meeds": null, - "meekness": [["M", "S"]], - "meekness's": null, - "meeknesses": null, - "meek": [["T", "P", "Y", "R"]], - "meekest": null, - "meekly": null, - "meeker": null, - "meerschaum": [["M", "S"]], - "meerschaum's": null, - "meerschaums": null, - "meeter": [["M"]], - "meeter's": null, - "meetinghouse": [["S"]], - "meetinghouses": null, - "meeting": [["M"]], - "meeting's": null, - "meet": [["J", "G", "S", "Y", "R"]], - "meetings": null, - "meets": null, - "meetly": null, - "me": [["G"]], - "ming": null, - "mega": null, - "megabit": [["M", "S"]], - "megabit's": null, - "megabits": null, - "megabuck": [["S"]], - "megabucks": null, - "megabyte": [["S"]], - "megabytes": null, - "megacycle": [["M", "S"]], - "megacycle's": null, - "megacycles": null, - "megadeath": [["M"]], - "megadeath's": null, - "megadeaths": null, - "megahertz": [["M"]], - "megahertz's": null, - "megalithic": null, - "megalith": [["M"]], - "megalith's": null, - "megaliths": null, - "megalomaniac": [["S", "M"]], - "megalomaniacs": null, - "megalomaniac's": null, - "megalomania": [["S", "M"]], - "megalomanias": null, - "megalomania's": null, - "megalopolis": [["S", "M"]], - "megalopolises": null, - "megalopolis's": null, - "Megan": [["M"]], - "Megan's": null, - "megaphone": [["S", "D", "G", "M"]], - "megaphones": null, - "megaphoned": null, - "megaphoning": null, - "megaphone's": null, - "megaton": [["M", "S"]], - "megaton's": null, - "megatons": null, - "megavolt": [["M"]], - "megavolt's": null, - "megawatt": [["S", "M"]], - "megawatts": null, - "megawatt's": null, - "megaword": [["S"]], - "megawords": null, - "Megen": [["M"]], - "Megen's": null, - "Meggie": [["M"]], - "Meggie's": null, - "Meggi": [["M"]], - "Meggi's": null, - "Meggy": [["M"]], - "Meggy's": null, - "Meghan": [["M"]], - "Meghan's": null, - "Meghann": [["M"]], - "Meghann's": null, - "Meg": [["M", "N"]], - "Meg's": null, - "megohm": [["M", "S"]], - "megohm's": null, - "megohms": null, - "Mehetabel": [["M"]], - "Mehetabel's": null, - "Meier": [["M"]], - "Meier's": null, - "Meighen": [["M"]], - "Meighen's": null, - "Meiji": [["M"]], - "Meiji's": null, - "Mei": [["M", "R"]], - "Mei's": null, - "meioses": null, - "meiosis": [["M"]], - "meiosis's": null, - "meiotic": null, - "Meir": [["M"]], - "Meir's": null, - "Meister": [["M"]], - "Meister's": null, - "Meistersinger": [["M"]], - "Meistersinger's": null, - "Mejia": [["M"]], - "Mejia's": null, - "Mekong": [["M"]], - "Mekong's": null, - "Mela": [["M"]], - "Mela's": null, - "Melamie": [["M"]], - "Melamie's": null, - "melamine": [["S", "M"]], - "melamines": null, - "melamine's": null, - "melancholia": [["S", "M"]], - "melancholias": null, - "melancholia's": null, - "melancholic": [["S"]], - "melancholics": null, - "melancholy": [["M", "S"]], - "melancholy's": null, - "melancholies": null, - "Melanesia": [["M"]], - "Melanesia's": null, - "Melanesian": [["S"]], - "Melanesians": null, - "melange": [["S"]], - "melanges": null, - "Melania": [["M"]], - "Melania's": null, - "Melanie": [["M"]], - "Melanie's": null, - "melanin": [["M", "S"]], - "melanin's": null, - "melanins": null, - "melanoma": [["S", "M"]], - "melanomas": null, - "melanoma's": null, - "Melantha": [["M"]], - "Melantha's": null, - "Melany": [["M"]], - "Melany's": null, - "Melba": [["M"]], - "Melba's": null, - "Melbourne": [["M"]], - "Melbourne's": null, - "Melcher": [["M"]], - "Melcher's": null, - "Melchior": [["M"]], - "Melchior's": null, - "meld": [["S", "G", "D"]], - "melds": null, - "melding": null, - "melded": null, - "m�l�e": [["M", "S"]], - "m�l�e's": null, - "m�l�es": null, - "Melendez": [["M"]], - "Melendez's": null, - "Melesa": [["M"]], - "Melesa's": null, - "Melessa": [["M"]], - "Melessa's": null, - "Melicent": [["M"]], - "Melicent's": null, - "Melina": [["M"]], - "Melina's": null, - "Melinda": [["M"]], - "Melinda's": null, - "Melinde": [["M"]], - "Melinde's": null, - "meliorate": [["X", "S", "D", "V", "N", "G"]], - "meliorations": null, - "meliorates": null, - "meliorated": null, - "meliorative": null, - "melioration": [["M"]], - "meliorating": null, - "melioration's": null, - "Melisa": [["M"]], - "Melisa's": null, - "Melisande": [["M"]], - "Melisande's": null, - "Melisandra": [["M"]], - "Melisandra's": null, - "Melisenda": [["M"]], - "Melisenda's": null, - "Melisent": [["M"]], - "Melisent's": null, - "Melissa": [["M"]], - "Melissa's": null, - "Melisse": [["M"]], - "Melisse's": null, - "Melita": [["M"]], - "Melita's": null, - "Melitta": [["M"]], - "Melitta's": null, - "Mella": [["M"]], - "Mella's": null, - "Mellicent": [["M"]], - "Mellicent's": null, - "Mellie": [["M"]], - "Mellie's": null, - "mellifluousness": [["S", "M"]], - "mellifluousnesses": null, - "mellifluousness's": null, - "mellifluous": [["Y", "P"]], - "mellifluously": null, - "Melli": [["M"]], - "Melli's": null, - "Mellisa": [["M"]], - "Mellisa's": null, - "Mellisent": [["M"]], - "Mellisent's": null, - "Melloney": [["M"]], - "Melloney's": null, - "Mellon": [["M"]], - "Mellon's": null, - "mellowness": [["M", "S"]], - "mellowness's": null, - "mellownesses": null, - "mellow": [["T", "G", "R", "D", "Y", "P", "S"]], - "mellowest": null, - "mellowing": null, - "mellower": null, - "mellowed": null, - "mellowly": null, - "mellows": null, - "Melly": [["M"]], - "Melly's": null, - "Mel": [["M", "Y"]], - "Mel's": null, - "Melodee": [["M"]], - "Melodee's": null, - "melodically": null, - "melodic": [["S"]], - "melodics": null, - "Melodie": [["M"]], - "Melodie's": null, - "melodiousness": [["S"]], - "melodiousnesses": null, - "melodious": [["Y", "P"]], - "melodiously": null, - "melodrama": [["S", "M"]], - "melodramas": null, - "melodrama's": null, - "melodramatically": null, - "melodramatic": [["S"]], - "melodramatics": null, - "Melody": [["M"]], - "Melody's": null, - "melody": [["M", "S"]], - "melody's": null, - "melodies": null, - "Melonie": [["M"]], - "Melonie's": null, - "melon": [["M", "S"]], - "melon's": null, - "melons": null, - "Melony": [["M"]], - "Melony's": null, - "Melosa": [["M"]], - "Melosa's": null, - "Melpomene": [["M"]], - "Melpomene's": null, - "meltdown": [["S"]], - "meltdowns": null, - "melter": [["M"]], - "melter's": null, - "melting": [["Y"]], - "meltingly": null, - "Melton": [["M"]], - "Melton's": null, - "melt": [["S", "A", "G", "D"]], - "melts": null, - "remelts": null, - "remelt": null, - "remelting": null, - "remelted": null, - "melted": null, - "Melva": [["M"]], - "Melva's": null, - "Melville": [["M"]], - "Melville's": null, - "Melvin": [["M"]], - "Melvin's": null, - "Melvyn": [["M"]], - "Melvyn's": null, - "Me": [["M"]], - "Me's": null, - "member": [["D", "M", "S"]], - "membered": [["A", "E"]], - "member's": null, - "members": [["E", "A"]], - "remembered": [["U"]], - "dismembered": null, - "dismembers": null, - "remembers": null, - "membership": [["S", "M"]], - "memberships": null, - "membership's": null, - "membrane": [["M", "S", "D"]], - "membrane's": null, - "membranes": null, - "membraned": null, - "membranous": null, - "memento": [["S", "M"]], - "mementos": null, - "memento's": null, - "Memling": [["M"]], - "Memling's": null, - "memoir": [["M", "S"]], - "memoir's": null, - "memoirs": null, - "memorabilia": null, - "memorability": [["S", "M"]], - "memorabilities": null, - "memorability's": null, - "memorableness": [["M"]], - "memorableness's": null, - "memorable": [["P"]], - "memorably": null, - "memorandum": [["S", "M"]], - "memorandums": null, - "memorandum's": null, - "memorialize": [["D", "S", "G"]], - "memorialized": [["U"]], - "memorializes": null, - "memorializing": null, - "unmemorialized": [["M", "S"]], - "memorial": [["S", "Y"]], - "memorials": null, - "memorially": null, - "memoriam": null, - "memorization": [["M", "S"]], - "memorization's": null, - "memorizations": null, - "memorized": [["U"]], - "unmemorized": null, - "memorizer": [["M"]], - "memorizer's": null, - "memorize": [["R", "S", "D", "Z", "G"]], - "memorizes": [["A"]], - "memorizers": null, - "memorizing": null, - "rememorizes": null, - "memoryless": null, - "memory": [["M", "S"]], - "memory's": null, - "memories": null, - "memo": [["S", "M"]], - "memos": null, - "memo's": null, - "Memphis": [["M"]], - "Memphis's": null, - "menace": [["G", "S", "D"]], - "menacing": [["Y"]], - "menaces": null, - "menaced": null, - "menacingly": null, - "menagerie": [["S", "M"]], - "menageries": null, - "menagerie's": null, - "menage": [["S"]], - "menages": null, - "Menander": [["M"]], - "Menander's": null, - "menarche": [["M", "S"]], - "menarche's": null, - "menarches": null, - "Menard": [["M"]], - "Menard's": null, - "Mencius": [["M"]], - "Mencius's": null, - "Mencken": [["M"]], - "Mencken's": null, - "mendaciousness": [["M"]], - "mendaciousness's": null, - "mendacious": [["P", "Y"]], - "mendaciously": null, - "mendacity": [["M", "S"]], - "mendacity's": null, - "mendacities": null, - "Mendeleev": [["M"]], - "Mendeleev's": null, - "mendelevium": [["S", "M"]], - "mendeleviums": null, - "mendelevium's": null, - "Mendelian": null, - "Mendel": [["M"]], - "Mendel's": null, - "Mendelssohn": [["M"]], - "Mendelssohn's": null, - "mender": [["M"]], - "mender's": null, - "Mendez": [["M"]], - "Mendez's": null, - "mendicancy": [["M", "S"]], - "mendicancy's": null, - "mendicancies": null, - "mendicant": [["S"]], - "mendicants": null, - "Mendie": [["M"]], - "Mendie's": null, - "mending": [["M"]], - "mending's": null, - "Mendocino": [["M"]], - "Mendocino's": null, - "Mendoza": [["M"]], - "Mendoza's": null, - "mend": [["R", "D", "S", "J", "G", "Z"]], - "mended": null, - "mends": null, - "mendings": null, - "menders": null, - "Mendy": [["M"]], - "Mendy's": null, - "Menelaus": [["M"]], - "Menelaus's": null, - "Menes": [["M"]], - "Menes's": null, - "menfolk": [["S"]], - "menfolks": null, - "menhaden": [["M"]], - "menhaden's": null, - "menial": [["Y", "S"]], - "menially": null, - "menials": null, - "meningeal": null, - "meninges": null, - "meningitides": null, - "meningitis": [["M"]], - "meningitis's": null, - "meninx": null, - "menisci": null, - "meniscus": [["M"]], - "meniscus's": null, - "Menkalinan": [["M"]], - "Menkalinan's": null, - "Menkar": [["M"]], - "Menkar's": null, - "Menkent": [["M"]], - "Menkent's": null, - "Menlo": [["M"]], - "Menlo's": null, - "men": [["M", "S"]], - "men's": null, - "mens": [["S", "D", "G"]], - "Mennonite": [["S", "M"]], - "Mennonites": null, - "Mennonite's": null, - "Menominee": null, - "menopausal": null, - "menopause": [["S", "M"]], - "menopauses": null, - "menopause's": null, - "menorah": [["M"]], - "menorah's": null, - "menorahs": null, - "Menotti": [["M"]], - "Menotti's": null, - "Mensa": [["M"]], - "Mensa's": null, - "Mensch": [["M"]], - "Mensch's": null, - "mensch": [["S"]], - "mensches": null, - "menservants": [["M"]], - "menservants's": null, - "menses": null, - "mensed": null, - "mensing": null, - "menstrual": null, - "menstruate": [["N", "G", "D", "S", "X"]], - "menstruation": [["M"]], - "menstruating": null, - "menstruated": null, - "menstruates": null, - "menstruations": null, - "menstruation's": null, - "mensurable": [["P"]], - "mensurableness": null, - "mensuration": [["M", "S"]], - "mensuration's": null, - "mensurations": null, - "menswear": [["M"]], - "menswear's": null, - "mentalist": [["M", "S"]], - "mentalist's": null, - "mentalists": null, - "mentality": [["M", "S"]], - "mentality's": null, - "mentalities": null, - "mental": [["Y"]], - "mentally": null, - "mentholated": null, - "menthol": [["S", "M"]], - "menthols": null, - "menthol's": null, - "mentionable": [["U"]], - "unmentionable": [["S"]], - "mentioned": [["U"]], - "unmentioned": null, - "mentioner": [["M"]], - "mentioner's": null, - "mention": [["Z", "G", "B", "R", "D", "S"]], - "mentioners": null, - "mentioning": null, - "mentions": null, - "mentor": [["D", "M", "S", "G"]], - "mentored": null, - "mentor's": null, - "mentors": null, - "mentoring": null, - "Menuhin": [["M"]], - "Menuhin's": null, - "menu": [["S", "M"]], - "menus": null, - "menu's": null, - "Menzies": [["M"]], - "Menzies's": null, - "meow": [["D", "S", "G"]], - "meowed": null, - "meows": null, - "meowing": null, - "Mephistopheles": [["M"]], - "Mephistopheles's": null, - "Merak": [["M"]], - "Merak's": null, - "Mercado": [["M"]], - "Mercado's": null, - "mercantile": null, - "Mercator": [["M"]], - "Mercator's": null, - "Mercedes": null, - "mercenariness": [["M"]], - "mercenariness's": null, - "mercenary": [["S", "M", "P"]], - "mercenaries": null, - "mercenary's": null, - "mercerize": [["S", "D", "G"]], - "mercerizes": null, - "mercerized": null, - "mercerizing": null, - "Mercer": [["M"]], - "Mercer's": null, - "mercer": [["S", "M"]], - "mercers": null, - "mercer's": null, - "merchandiser": [["M"]], - "merchandiser's": null, - "merchandise": [["S", "R", "D", "J", "M", "Z", "G"]], - "merchandises": null, - "merchandised": null, - "merchandisings": null, - "merchandise's": null, - "merchandisers": null, - "merchandising": null, - "merchantability": null, - "merchantman": [["M"]], - "merchantman's": null, - "merchantmen": null, - "merchant": [["S", "B", "D", "M", "G"]], - "merchants": null, - "merchantable": null, - "merchanted": null, - "merchant's": null, - "merchanting": null, - "Mercie": [["M"]], - "Mercie's": null, - "mercifully": [["U"]], - "unmercifully": null, - "mercifulness": [["M"]], - "mercifulness's": null, - "merciful": [["Y", "P"]], - "mercilessness": [["S", "M"]], - "mercilessnesses": null, - "mercilessness's": null, - "merciless": [["Y", "P"]], - "mercilessly": null, - "Merci": [["M"]], - "Merci's": null, - "Merck": [["M"]], - "Merck's": null, - "mercurial": [["S", "P", "Y"]], - "mercurials": null, - "mercurialness": null, - "mercurially": null, - "mercuric": null, - "Mercurochrome": [["M"]], - "Mercurochrome's": null, - "mercury": [["M", "S"]], - "mercury's": null, - "mercuries": null, - "Mercury": [["M", "S"]], - "Mercury's": null, - "Mercuries": null, - "Mercy": [["M"]], - "Mercy's": null, - "mercy": [["S", "M"]], - "mercies": null, - "mercy's": null, - "Meredeth": [["M"]], - "Meredeth's": null, - "Meredithe": [["M"]], - "Meredithe's": null, - "Meredith": [["M"]], - "Meredith's": null, - "Merell": [["M"]], - "Merell's": null, - "meretriciousness": [["S", "M"]], - "meretriciousnesses": null, - "meretriciousness's": null, - "meretricious": [["Y", "P"]], - "meretriciously": null, - "mere": [["Y", "S"]], - "merely": null, - "meres": null, - "merganser": [["M", "S"]], - "merganser's": null, - "mergansers": null, - "merger": [["M"]], - "merger's": null, - "merge": [["S", "R", "D", "G", "Z"]], - "merges": null, - "merged": null, - "merging": null, - "mergers": null, - "Meridel": [["M"]], - "Meridel's": null, - "meridian": [["M", "S"]], - "meridian's": null, - "meridians": null, - "meridional": null, - "Meridith": [["M"]], - "Meridith's": null, - "Meriel": [["M"]], - "Meriel's": null, - "Merilee": [["M"]], - "Merilee's": null, - "Merill": [["M"]], - "Merill's": null, - "Merilyn": [["M"]], - "Merilyn's": null, - "meringue": [["M", "S"]], - "meringue's": null, - "meringues": null, - "merino": [["M", "S"]], - "merino's": null, - "merinos": null, - "Meris": null, - "Merissa": [["M"]], - "Merissa's": null, - "merited": [["U"]], - "unmerited": null, - "meritocracy": [["M", "S"]], - "meritocracy's": null, - "meritocracies": null, - "meritocratic": null, - "meritocrats": null, - "meritoriousness": [["M", "S"]], - "meritoriousness's": null, - "meritoriousnesses": null, - "meritorious": [["P", "Y"]], - "meritoriously": null, - "merit": [["S", "C", "G", "M", "D"]], - "merits": null, - "demerits": null, - "demerit": null, - "demeriting": null, - "demerit's": null, - "demerited": null, - "meriting": null, - "merit's": null, - "Meriwether": [["M"]], - "Meriwether's": null, - "Merla": [["M"]], - "Merla's": null, - "Merle": [["M"]], - "Merle's": null, - "Merlina": [["M"]], - "Merlina's": null, - "Merline": [["M"]], - "Merline's": null, - "merlin": [["M"]], - "merlin's": null, - "Merlin": [["M"]], - "Merlin's": null, - "Merl": [["M"]], - "Merl's": null, - "mermaid": [["M", "S"]], - "mermaid's": null, - "mermaids": null, - "merman": [["M"]], - "merman's": null, - "mermen": null, - "Merna": [["M"]], - "Merna's": null, - "Merola": [["M"]], - "Merola's": null, - "meromorphic": null, - "Merralee": [["M"]], - "Merralee's": null, - "Merrel": [["M"]], - "Merrel's": null, - "Merriam": [["M"]], - "Merriam's": null, - "Merrick": [["M"]], - "Merrick's": null, - "Merridie": [["M"]], - "Merridie's": null, - "Merrielle": [["M"]], - "Merrielle's": null, - "Merrie": [["M"]], - "Merrie's": null, - "Merrilee": [["M"]], - "Merrilee's": null, - "Merrile": [["M"]], - "Merrile's": null, - "Merrili": [["M"]], - "Merrili's": null, - "Merrill": [["M"]], - "Merrill's": null, - "merrily": null, - "Merrily": [["M"]], - "Merrily's": null, - "Merrimack": [["M"]], - "Merrimack's": null, - "Merrimac": [["M"]], - "Merrimac's": null, - "merriment": [["M", "S"]], - "merriment's": null, - "merriments": null, - "merriness": [["S"]], - "merrinesses": null, - "Merritt": [["M"]], - "Merritt's": null, - "Merry": [["M"]], - "Merry's": null, - "merrymaker": [["M", "S"]], - "merrymaker's": null, - "merrymakers": null, - "merrymaking": [["S", "M"]], - "merrymakings": null, - "merrymaking's": null, - "merry": [["R", "P", "T"]], - "merrier": null, - "merriest": null, - "Mersey": [["M"]], - "Mersey's": null, - "mer": [["T", "G", "D", "R"]], - "merest": null, - "mering": null, - "mered": null, - "merer": null, - "Merton": [["M"]], - "Merton's": null, - "Mervin": [["M"]], - "Mervin's": null, - "Merv": [["M"]], - "Merv's": null, - "Merwin": [["M"]], - "Merwin's": null, - "Merwyn": [["M"]], - "Merwyn's": null, - "Meryl": [["M"]], - "Meryl's": null, - "Mesa": null, - "Mesabi": [["M"]], - "Mesabi's": null, - "mesa": [["S", "M"]], - "mesas": null, - "mesa's": null, - "mescaline": [["S", "M"]], - "mescalines": null, - "mescaline's": null, - "mescal": [["S", "M"]], - "mescals": null, - "mescal's": null, - "mesdames": [["M"]], - "mesdames's": null, - "mesdemoiselles": [["M"]], - "mesdemoiselles's": null, - "Meshed's": null, - "meshed": [["U"]], - "unmeshed": null, - "mesh": [["G", "M", "S", "D"]], - "meshing": null, - "mesh's": null, - "meshes": null, - "mesmeric": null, - "mesmerism": [["S", "M"]], - "mesmerisms": null, - "mesmerism's": null, - "mesmerized": [["U"]], - "unmesmerized": null, - "mesmerizer": [["M"]], - "mesmerizer's": null, - "mesmerize": [["S", "R", "D", "Z", "G"]], - "mesmerizes": null, - "mesmerizers": null, - "mesmerizing": null, - "Mesolithic": [["M"]], - "Mesolithic's": null, - "mesomorph": [["M"]], - "mesomorph's": null, - "mesomorphs": null, - "meson": [["M", "S"]], - "meson's": null, - "mesons": null, - "Mesopotamia": [["M"]], - "Mesopotamia's": null, - "Mesopotamian": [["S"]], - "Mesopotamians": null, - "mesosphere": [["M", "S"]], - "mesosphere's": null, - "mesospheres": null, - "mesozoic": null, - "Mesozoic": null, - "mesquite": [["M", "S"]], - "mesquite's": null, - "mesquites": null, - "mes": [["S"]], - "meses": null, - "message": [["S", "D", "M", "G"]], - "messages": null, - "messaged": null, - "message's": null, - "messaging": null, - "messeigneurs": null, - "messenger": [["G", "S", "M", "D"]], - "messengering": null, - "messengers": null, - "messenger's": null, - "messengered": null, - "Messerschmidt": [["M"]], - "Messerschmidt's": null, - "mess": [["G", "S", "D", "M"]], - "messing": null, - "messes": null, - "messed": null, - "mess's": null, - "Messiaen": [["M"]], - "Messiaen's": null, - "messiah": null, - "Messiah": [["M"]], - "Messiah's": null, - "messiahs": null, - "Messiahs": null, - "messianic": null, - "Messianic": null, - "messieurs": [["M"]], - "messieurs's": null, - "messily": null, - "messiness": [["M", "S"]], - "messiness's": null, - "messinesses": null, - "messmate": [["M", "S"]], - "messmate's": null, - "messmates": null, - "Messrs": [["M"]], - "Messrs's": null, - "messy": [["P", "R", "T"]], - "messier": null, - "messiest": null, - "mestizo": [["M", "S"]], - "mestizo's": null, - "mestizos": null, - "meta": null, - "metabolic": null, - "metabolically": null, - "metabolism": [["M", "S"]], - "metabolism's": null, - "metabolisms": null, - "metabolite": [["S", "M"]], - "metabolites": null, - "metabolite's": null, - "metabolize": [["G", "S", "D"]], - "metabolizing": null, - "metabolizes": null, - "metabolized": null, - "metacarpal": [["S"]], - "metacarpals": null, - "metacarpi": null, - "metacarpus": [["M"]], - "metacarpus's": null, - "metacircular": null, - "metacircularity": null, - "metalanguage": [["M", "S"]], - "metalanguage's": null, - "metalanguages": null, - "metalization": [["S", "M"]], - "metalizations": null, - "metalization's": null, - "metalized": null, - "metallic": [["S"]], - "metallics": null, - "metalliferous": null, - "metallings": null, - "metallography": [["M"]], - "metallography's": null, - "metalloid": [["M"]], - "metalloid's": null, - "metallurgic": null, - "metallurgical": [["Y"]], - "metallurgically": null, - "metallurgist": [["S"]], - "metallurgists": null, - "metallurgy": [["M", "S"]], - "metallurgy's": null, - "metallurgies": null, - "metal": [["S", "G", "M", "D"]], - "metals": null, - "metaling": null, - "metal's": null, - "metaled": null, - "metalsmith": [["M", "S"]], - "metalsmith's": null, - "metalsmithes": null, - "metalworking": [["M"]], - "metalworking's": null, - "metalwork": [["R", "M", "J", "G", "S", "Z"]], - "metalworker": null, - "metalwork's": null, - "metalworkings": null, - "metalworks": null, - "metalworkers": null, - "Meta": [["M"]], - "Meta's": null, - "metamathematical": null, - "metamorphic": null, - "metamorphism": [["S", "M"]], - "metamorphisms": null, - "metamorphism's": null, - "metamorphose": [["G", "D", "S"]], - "metamorphosing": null, - "metamorphosed": null, - "metamorphoses": null, - "metamorphosis": [["M"]], - "metamorphosis's": null, - "metaphoric": null, - "metaphorical": [["Y"]], - "metaphorically": null, - "metaphor": [["M", "S"]], - "metaphor's": null, - "metaphors": null, - "metaphosphate": [["M"]], - "metaphosphate's": null, - "metaphysical": [["Y"]], - "metaphysically": null, - "metaphysic": [["S", "M"]], - "metaphysics": null, - "metaphysic's": null, - "metastability": [["M"]], - "metastability's": null, - "metastable": null, - "metastases": null, - "metastasis": [["M"]], - "metastasis's": null, - "metastasize": [["D", "S", "G"]], - "metastasized": null, - "metastasizes": null, - "metastasizing": null, - "metastatic": null, - "metatarsal": [["S"]], - "metatarsals": null, - "metatarsi": null, - "metatarsus": [["M"]], - "metatarsus's": null, - "metatheses": null, - "metathesis": [["M"]], - "metathesis's": null, - "metathesized": null, - "metathesizes": null, - "metathesizing": null, - "metavariable": null, - "metempsychoses": null, - "metempsychosis": [["M"]], - "metempsychosis's": null, - "meteoric": null, - "meteorically": null, - "meteorite": [["S", "M"]], - "meteorites": null, - "meteorite's": null, - "meteoritic": [["S"]], - "meteoritics": [["M"]], - "meteoritics's": null, - "meteoroid": [["S", "M"]], - "meteoroids": null, - "meteoroid's": null, - "meteorologic": null, - "meteorological": null, - "meteorologist": [["S"]], - "meteorologists": null, - "meteorology": [["M", "S"]], - "meteorology's": null, - "meteorologies": null, - "meteor": [["S", "M"]], - "meteors": null, - "meteor's": null, - "meter": [["G", "D", "M"]], - "metering": null, - "metered": null, - "meter's": null, - "mete": [["Z", "D", "G", "S", "R"]], - "meters": null, - "meted": null, - "meting": null, - "metes": null, - "methadone": [["S", "M"]], - "methadones": null, - "methadone's": null, - "methane": [["M", "S"]], - "methane's": null, - "methanes": null, - "methanol": [["S", "M"]], - "methanols": null, - "methanol's": null, - "methinks": null, - "methionine": [["M"]], - "methionine's": null, - "methodicalness": [["S", "M"]], - "methodicalnesses": null, - "methodicalness's": null, - "methodical": [["Y", "P"]], - "methodically": null, - "methodism": null, - "Methodism": [["S", "M"]], - "Methodisms": null, - "Methodism's": null, - "methodist": [["M", "S"]], - "methodist's": null, - "methodists": null, - "Methodist": [["M", "S"]], - "Methodist's": null, - "Methodists": null, - "method": [["M", "S"]], - "method's": null, - "methods": null, - "methodological": [["Y"]], - "methodologically": null, - "methodologists": null, - "methodology": [["M", "S"]], - "methodology's": null, - "methodologies": null, - "methought": null, - "Methuen": [["M"]], - "Methuen's": null, - "Methuselah": [["M"]], - "Methuselah's": null, - "Methuselahs": null, - "methylated": null, - "methylene": [["M"]], - "methylene's": null, - "methyl": [["S", "M"]], - "methyls": null, - "methyl's": null, - "meticulousness": [["M", "S"]], - "meticulousness's": null, - "meticulousnesses": null, - "meticulous": [["Y", "P"]], - "meticulously": null, - "m�tier": [["S"]], - "m�tiers": null, - "metonymy": [["M"]], - "metonymy's": null, - "Metrecal": [["M"]], - "Metrecal's": null, - "metrical": [["Y"]], - "metrically": null, - "metricate": [["S", "D", "N", "G", "X"]], - "metricates": null, - "metricated": null, - "metrication": null, - "metricating": null, - "metrications": null, - "metricize": [["G", "S", "D"]], - "metricizing": null, - "metricizes": null, - "metricized": null, - "metrics": [["M"]], - "metrics's": null, - "metric": [["S", "M"]], - "metric's": null, - "metronome": [["M", "S"]], - "metronome's": null, - "metronomes": null, - "metropolis": [["S", "M"]], - "metropolises": null, - "metropolis's": null, - "metropolitanization": null, - "metropolitan": [["S"]], - "metropolitans": null, - "metro": [["S", "M"]], - "metros": null, - "metro's": null, - "mets": null, - "Metternich": [["M"]], - "Metternich's": null, - "mettle": [["S", "D", "M"]], - "mettles": null, - "mettled": null, - "mettle's": null, - "mettlesome": null, - "met": [["U"]], - "unmet": null, - "Metzler": [["M"]], - "Metzler's": null, - "Meuse": [["M"]], - "Meuse's": null, - "mewl": [["G", "S", "D"]], - "mewling": null, - "mewls": null, - "mewled": null, - "mew": [["S", "G", "D"]], - "mews": [["S", "M"]], - "mewing": null, - "mewed": null, - "mewses": null, - "mews's": null, - "Mex": null, - "Mexicali": [["M"]], - "Mexicali's": null, - "Mexican": [["S"]], - "Mexicans": null, - "Mexico": [["M"]], - "Mexico's": null, - "Meyerbeer": [["M"]], - "Meyerbeer's": null, - "Meyer": [["S", "M"]], - "Meyers": null, - "Meyer's": null, - "mezzanine": [["M", "S"]], - "mezzanine's": null, - "mezzanines": null, - "mezzo": [["S"]], - "mezzos": null, - "MFA": null, - "mfg": null, - "mfr": [["S"]], - "mfrs": null, - "mg": null, - "M": [["G", "B"]], - "Ming": [["M"]], - "Mg": [["M"]], - "Mg's": null, - "MGM": [["M"]], - "MGM's": null, - "mgr": null, - "Mgr": null, - "MHz": null, - "MI": null, - "MIA": null, - "Mia": [["M"]], - "Mia's": null, - "Miami": [["S", "M"]], - "Miamis": null, - "Miami's": null, - "Miaplacidus": [["M"]], - "Miaplacidus's": null, - "miasmal": null, - "miasma": [["S", "M"]], - "miasmas": null, - "miasma's": null, - "Micaela": [["M"]], - "Micaela's": null, - "Micah": [["M"]], - "Micah's": null, - "mica": [["M", "S"]], - "mica's": null, - "micas": null, - "micelles": null, - "mice": [["M"]], - "mice's": null, - "Michaela": [["M"]], - "Michaela's": null, - "Michaelangelo": [["M"]], - "Michaelangelo's": null, - "Michaelina": [["M"]], - "Michaelina's": null, - "Michaeline": [["M"]], - "Michaeline's": null, - "Michaella": [["M"]], - "Michaella's": null, - "Michaelmas": [["M", "S"]], - "Michaelmas's": null, - "Michaelmases": null, - "Michael": [["S", "M"]], - "Michaels": null, - "Michael's": null, - "Michaelson": [["M"]], - "Michaelson's": null, - "Michail": [["M"]], - "Michail's": null, - "Michale": [["M"]], - "Michale's": null, - "Michal": [["M"]], - "Michal's": null, - "Micheal": [["M"]], - "Micheal's": null, - "Micheil": [["M"]], - "Micheil's": null, - "Michelangelo": [["M"]], - "Michelangelo's": null, - "Michele": [["M"]], - "Michele's": null, - "Michelina": [["M"]], - "Michelina's": null, - "Micheline": [["M"]], - "Micheline's": null, - "Michelin": [["M"]], - "Michelin's": null, - "Michelle": [["M"]], - "Michelle's": null, - "Michell": [["M"]], - "Michell's": null, - "Michel": [["M"]], - "Michel's": null, - "Michelson": [["M"]], - "Michelson's": null, - "Michigander": [["S"]], - "Michiganders": null, - "Michiganite": [["S"]], - "Michiganites": null, - "Michigan": [["M"]], - "Michigan's": null, - "Mich": [["M"]], - "Mich's": null, - "Mickelson": [["M"]], - "Mickelson's": null, - "Mickey": [["M"]], - "Mickey's": null, - "mickey": [["S", "M"]], - "mickeys": null, - "mickey's": null, - "Mickie": [["M"]], - "Mickie's": null, - "Micki": [["M"]], - "Micki's": null, - "Mick": [["M"]], - "Mick's": null, - "Micky": [["M"]], - "Micky's": null, - "Mic": [["M"]], - "Mic's": null, - "Micmac": [["M"]], - "Micmac's": null, - "micra's": null, - "microamp": null, - "microanalysis": [["M"]], - "microanalysis's": null, - "microanalytic": null, - "microbe": [["M", "S"]], - "microbe's": null, - "microbes": null, - "microbial": null, - "microbicidal": null, - "microbicide": [["M"]], - "microbicide's": null, - "microbiological": null, - "microbiologist": [["M", "S"]], - "microbiologist's": null, - "microbiologists": null, - "microbiology": [["S", "M"]], - "microbiologies": null, - "microbiology's": null, - "microbrewery": [["S"]], - "microbreweries": null, - "microchemistry": [["M"]], - "microchemistry's": null, - "microchip": [["S"]], - "microchips": null, - "microcircuit": [["M", "S"]], - "microcircuit's": null, - "microcircuits": null, - "microcode": [["G", "S", "D"]], - "microcoding": null, - "microcodes": null, - "microcoded": null, - "microcomputer": [["M", "S"]], - "microcomputer's": null, - "microcomputers": null, - "microcosmic": null, - "microcosm": [["M", "S"]], - "microcosm's": null, - "microcosms": null, - "microdensitometer": null, - "microdot": [["M", "S"]], - "microdot's": null, - "microdots": null, - "microeconomic": [["S"]], - "microeconomics": [["M"]], - "microeconomics's": null, - "microelectronic": [["S"]], - "microelectronics": [["M"]], - "microelectronics's": null, - "microfiber": [["S"]], - "microfibers": null, - "microfiche": [["M"]], - "microfiche's": null, - "microfilm": [["D", "R", "M", "S", "G"]], - "microfilmed": null, - "microfilmer": null, - "microfilm's": null, - "microfilms": null, - "microfilming": null, - "microfossils": null, - "micrography": [["M"]], - "micrography's": null, - "microgroove": [["M", "S"]], - "microgroove's": null, - "microgrooves": null, - "microhydrodynamics": null, - "microinstruction": [["S", "M"]], - "microinstructions": null, - "microinstruction's": null, - "microjoule": null, - "microlevel": null, - "microlight": [["S"]], - "microlights": null, - "micromanage": [["G", "D", "S", "L"]], - "micromanaging": null, - "micromanaged": null, - "micromanages": null, - "micromanagement": [["S"]], - "micromanagements": null, - "micrometeorite": [["M", "S"]], - "micrometeorite's": null, - "micrometeorites": null, - "micrometeoritic": null, - "micrometer": [["S", "M"]], - "micrometers": null, - "micrometer's": null, - "Micronesia": [["M"]], - "Micronesia's": null, - "Micronesian": [["S"]], - "Micronesians": null, - "micron": [["M", "S"]], - "micron's": null, - "microns": null, - "microorganism": [["S", "M"]], - "microorganisms": null, - "microorganism's": null, - "microphone": [["S", "G", "M"]], - "microphones": null, - "microphoning": null, - "microphone's": null, - "Microport": [["M"]], - "Microport's": null, - "microprocessing": null, - "microprocessor": [["S", "M"]], - "microprocessors": null, - "microprocessor's": null, - "microprogrammed": null, - "microprogramming": null, - "microprogram": [["S", "M"]], - "microprograms": null, - "microprogram's": null, - "micro": [["S"]], - "micros": [["M"]], - "microscope": [["S", "M"]], - "microscopes": null, - "microscope's": null, - "microscopic": null, - "microscopical": [["Y"]], - "microscopically": null, - "microscopy": [["M", "S"]], - "microscopy's": null, - "microscopies": null, - "microsecond": [["M", "S"]], - "microsecond's": null, - "microseconds": null, - "microsimulation": [["S"]], - "microsimulations": null, - "Microsystems": null, - "micros's": null, - "Microsoft": [["M"]], - "Microsoft's": null, - "microsomal": null, - "microstore": null, - "microsurgery": [["S", "M"]], - "microsurgeries": null, - "microsurgery's": null, - "MicroVAXes": null, - "MicroVAX": [["M"]], - "MicroVAX's": null, - "microvolt": [["S", "M"]], - "microvolts": null, - "microvolt's": null, - "microwaveable": null, - "microwave": [["B", "M", "G", "S", "D"]], - "microwavable": null, - "microwave's": null, - "microwaving": null, - "microwaves": null, - "microwaved": null, - "microword": [["S"]], - "microwords": null, - "midair": [["M", "S"]], - "midair's": null, - "midairs": null, - "midas": null, - "Midas": [["M"]], - "Midas's": null, - "midband": [["M"]], - "midband's": null, - "midday": [["M", "S"]], - "midday's": null, - "middays": null, - "midden": [["S", "M"]], - "middens": null, - "midden's": null, - "middest": null, - "middlebrow": [["S", "M"]], - "middlebrows": null, - "middlebrow's": null, - "Middlebury": [["M"]], - "Middlebury's": null, - "middle": [["G", "J", "R", "S", "D"]], - "middling": [["Y"]], - "middlings": null, - "middler": null, - "middles": null, - "middled": null, - "middleman": [["M"]], - "middleman's": null, - "middlemen": null, - "middlemost": null, - "Middlesex": [["M"]], - "Middlesex's": null, - "Middleton": [["M"]], - "Middleton's": null, - "Middletown": [["M"]], - "Middletown's": null, - "middleweight": [["S", "M"]], - "middleweights": null, - "middleweight's": null, - "middlingly": null, - "middy": [["S", "M"]], - "middies": null, - "middy's": null, - "Mideastern": null, - "Mideast": [["M"]], - "Mideast's": null, - "midfield": [["R", "M"]], - "midfielder": null, - "midfield's": null, - "Midge": [["M"]], - "Midge's": null, - "midge": [["S", "M"]], - "midges": null, - "midge's": null, - "midget": [["M", "S"]], - "midget's": null, - "midgets": null, - "midi": [["S"]], - "midis": null, - "midland": [["M", "R", "S"]], - "midland's": null, - "midlander": null, - "midlands": null, - "Midland": [["M", "S"]], - "Midland's": null, - "Midlands": null, - "midlife": null, - "midlives": null, - "midmorn": [["G"]], - "midmorning": null, - "midmost": [["S"]], - "midmosts": null, - "midnight": [["S", "Y", "M"]], - "midnights": null, - "midnightly": null, - "midnight's": null, - "midpoint": [["M", "S"]], - "midpoint's": null, - "midpoints": null, - "midrange": null, - "midrib": [["M", "S"]], - "midrib's": null, - "midribs": null, - "midriff": [["M", "S"]], - "midriff's": null, - "midriffs": null, - "mid": [["S"]], - "mids": null, - "midscale": null, - "midsection": [["M"]], - "midsection's": null, - "midshipman": [["M"]], - "midshipman's": null, - "midshipmen": null, - "midship": [["S"]], - "midships": null, - "midspan": null, - "midstream": [["M", "S"]], - "midstream's": null, - "midstreams": null, - "midst": [["S", "M"]], - "midsts": null, - "midst's": null, - "midsummer": [["M", "S"]], - "midsummer's": null, - "midsummers": null, - "midterm": [["M", "S"]], - "midterm's": null, - "midterms": null, - "midtown": [["M", "S"]], - "midtown's": null, - "midtowns": null, - "Midway": [["M"]], - "Midway's": null, - "midway": [["S"]], - "midways": null, - "midweek": [["S", "Y", "M"]], - "midweeks": null, - "midweekly": null, - "midweek's": null, - "Midwesterner": [["M"]], - "Midwesterner's": null, - "Midwestern": [["Z", "R"]], - "Midwesterners": null, - "Midwest": [["M"]], - "Midwest's": null, - "midwicket": null, - "midwifery": [["S", "M"]], - "midwiferies": null, - "midwifery's": null, - "midwife": [["S", "D", "M", "G"]], - "midwifes": null, - "midwifed": null, - "midwife's": null, - "midwifing": null, - "midwinter": [["Y", "M", "S"]], - "midwinterly": null, - "midwinter's": null, - "midwinters": null, - "midwives": null, - "midyear": [["M", "S"]], - "midyear's": null, - "midyears": null, - "mien": [["M"]], - "mien's": null, - "miff": [["G", "D", "S"]], - "miffing": null, - "miffed": null, - "miffs": null, - "mightily": null, - "mightiness": [["M", "S"]], - "mightiness's": null, - "mightinesses": null, - "mightn't": null, - "might": [["S"]], - "mights": null, - "mighty": [["T", "P", "R"]], - "mightiest": null, - "mightier": null, - "mignon": null, - "mignonette": [["S", "M"]], - "mignonettes": null, - "mignonette's": null, - "Mignon": [["M"]], - "Mignon's": null, - "Mignonne": [["M"]], - "Mignonne's": null, - "migraine": [["S", "M"]], - "migraines": null, - "migraine's": null, - "migrant": [["M", "S"]], - "migrant's": null, - "migrants": null, - "migrate": [["A", "S", "D", "G"]], - "remigrate": null, - "remigrates": null, - "remigrated": null, - "remigrating": null, - "migrates": null, - "migrated": null, - "migrating": null, - "migration": [["M", "S"]], - "migration's": null, - "migrations": null, - "migrative": null, - "migratory": [["S"]], - "migratories": null, - "MIG": [["S"]], - "MIGs": null, - "Miguela": [["M"]], - "Miguela's": null, - "Miguelita": [["M"]], - "Miguelita's": null, - "Miguel": [["M"]], - "Miguel's": null, - "mikado": [["M", "S"]], - "mikado's": null, - "mikados": null, - "Mikaela": [["M"]], - "Mikaela's": null, - "Mikael": [["M"]], - "Mikael's": null, - "mike": [["D", "S", "M", "G"]], - "miked": null, - "mikes": null, - "mike's": null, - "miking": null, - "Mikel": [["M"]], - "Mikel's": null, - "Mike": [["M"]], - "Mike's": null, - "Mikey": [["M"]], - "Mikey's": null, - "Mikhail": [["M"]], - "Mikhail's": null, - "Mikkel": [["M"]], - "Mikkel's": null, - "Mikol": [["M"]], - "Mikol's": null, - "Mikoyan": [["M"]], - "Mikoyan's": null, - "milady": [["M", "S"]], - "milady's": null, - "miladies": null, - "Milagros": [["M"]], - "Milagros's": null, - "Milanese": null, - "Milan": [["M"]], - "Milan's": null, - "milch": [["M"]], - "milch's": null, - "mildew": [["D", "M", "G", "S"]], - "mildewed": null, - "mildew's": null, - "mildewing": null, - "mildews": null, - "mildness": [["M", "S"]], - "mildness's": null, - "mildnesses": null, - "Mildred": [["M"]], - "Mildred's": null, - "Mildrid": [["M"]], - "Mildrid's": null, - "mild": [["S", "T", "Y", "R", "N", "P"]], - "milds": null, - "mildest": null, - "mildly": null, - "milder": null, - "milden": null, - "mileage": [["S", "M"]], - "mileages": null, - "mileage's": null, - "Milena": [["M"]], - "Milena's": null, - "milepost": [["S", "M"]], - "mileposts": null, - "milepost's": null, - "miler": [["M"]], - "miler's": null, - "mile": [["S", "M"]], - "miles": null, - "mile's": null, - "Mile": [["S", "M"]], - "Miles": null, - "Mile's": null, - "milestone": [["M", "S"]], - "milestone's": null, - "milestones": null, - "Milford": [["M"]], - "Milford's": null, - "Milicent": [["M"]], - "Milicent's": null, - "milieu": [["S", "M"]], - "milieus": null, - "milieu's": null, - "Milissent": [["M"]], - "Milissent's": null, - "militancy": [["M", "S"]], - "militancy's": null, - "militancies": null, - "militantness": [["M"]], - "militantness's": null, - "militant": [["Y", "P", "S"]], - "militantly": null, - "militants": null, - "militarily": null, - "militarism": [["S", "M"]], - "militarisms": null, - "militarism's": null, - "militaristic": null, - "militarist": [["M", "S"]], - "militarist's": null, - "militarists": null, - "militarization": [["S", "C", "M"]], - "militarizations": null, - "demilitarizations": null, - "demilitarization": null, - "demilitarization's": null, - "militarization's": null, - "militarize": [["S", "D", "C", "G"]], - "militarizes": null, - "demilitarizes": null, - "militarized": null, - "demilitarized": null, - "demilitarize": null, - "demilitarizing": null, - "militarizing": null, - "military": null, - "militate": [["S", "D", "G"]], - "militates": null, - "militated": null, - "militating": null, - "militiaman": [["M"]], - "militiaman's": null, - "militiamen": null, - "militia": [["S", "M"]], - "militias": null, - "militia's": null, - "Milka": [["M"]], - "Milka's": null, - "Milken": [["M"]], - "Milken's": null, - "milker": [["M"]], - "milker's": null, - "milk": [["G", "Z", "S", "R", "D", "M"]], - "milking": null, - "milkers": null, - "milks": null, - "milked": null, - "milk's": null, - "milkiness": [["M", "S"]], - "milkiness's": null, - "milkinesses": null, - "milkmaid": [["S", "M"]], - "milkmaids": null, - "milkmaid's": null, - "milkman": [["M"]], - "milkman's": null, - "milkmen": null, - "milkshake": [["S"]], - "milkshakes": null, - "milksop": [["S", "M"]], - "milksops": null, - "milksop's": null, - "milkweed": [["M", "S"]], - "milkweed's": null, - "milkweeds": null, - "milky": [["R", "P", "T"]], - "milkier": null, - "milkiest": null, - "millage": [["S"]], - "millages": null, - "Millard": [["M"]], - "Millard's": null, - "Millay": [["M"]], - "Millay's": null, - "millenarian": null, - "millenarianism": [["M"]], - "millenarianism's": null, - "millennial": null, - "millennialism": null, - "millennium": [["M", "S"]], - "millennium's": null, - "millenniums": null, - "millepede's": null, - "miller": [["M"]], - "miller's": null, - "Miller": [["M"]], - "Miller's": null, - "Millet": [["M"]], - "Millet's": null, - "millet": [["M", "S"]], - "millet's": null, - "millets": null, - "milliamp": null, - "milliampere": [["S"]], - "milliamperes": null, - "milliard": [["M", "S"]], - "milliard's": null, - "milliards": null, - "millibar": [["M", "S"]], - "millibar's": null, - "millibars": null, - "Millicent": [["M"]], - "Millicent's": null, - "millidegree": [["S"]], - "millidegrees": null, - "Millie": [["M"]], - "Millie's": null, - "milligram": [["M", "S"]], - "milligram's": null, - "milligrams": null, - "millijoule": [["S"]], - "millijoules": null, - "Millikan": [["M"]], - "Millikan's": null, - "milliliter": [["M", "S"]], - "milliliter's": null, - "milliliters": null, - "Milli": [["M"]], - "Milli's": null, - "millimeter": [["S", "M"]], - "millimeters": null, - "millimeter's": null, - "milliner": [["S", "M"]], - "milliners": null, - "milliner's": null, - "millinery": [["M", "S"]], - "millinery's": null, - "millineries": null, - "milling": [["M"]], - "milling's": null, - "millionaire": [["M", "S"]], - "millionaire's": null, - "millionaires": null, - "million": [["H", "D", "M", "S"]], - "millionth": [["M"]], - "millioned": null, - "million's": null, - "millions": null, - "millionth's": null, - "millionths": null, - "millipede": [["S", "M"]], - "millipedes": null, - "millipede's": null, - "millisecond": [["M", "S"]], - "millisecond's": null, - "milliseconds": null, - "Millisent": [["M"]], - "Millisent's": null, - "millivoltmeter": [["S", "M"]], - "millivoltmeters": null, - "millivoltmeter's": null, - "millivolt": [["S", "M"]], - "millivolts": null, - "millivolt's": null, - "milliwatt": [["S"]], - "milliwatts": null, - "millpond": [["M", "S"]], - "millpond's": null, - "millponds": null, - "millrace": [["S", "M"]], - "millraces": null, - "millrace's": null, - "mill": [["S", "G", "Z", "M", "R", "D"]], - "mills": null, - "millers": null, - "mill's": null, - "milled": null, - "Mill": [["S", "M", "R"]], - "Mills": null, - "Mill's": null, - "millstone": [["S", "M"]], - "millstones": null, - "millstone's": null, - "millstream": [["S", "M"]], - "millstreams": null, - "millstream's": null, - "millwright": [["M", "S"]], - "millwright's": null, - "millwrights": null, - "Milly": [["M"]], - "Milly's": null, - "mil": [["M", "R", "S", "Z"]], - "mil's": null, - "mils": null, - "milers": null, - "Mil": [["M", "Y"]], - "Mil's": null, - "Milne": [["M"]], - "Milne's": null, - "Milo": [["M"]], - "Milo's": null, - "Milquetoast": [["S"]], - "Milquetoasts": null, - "milquetoast": [["S", "M"]], - "milquetoasts": null, - "milquetoast's": null, - "Miltiades": [["M"]], - "Miltiades's": null, - "Miltie": [["M"]], - "Miltie's": null, - "Milt": [["M"]], - "Milt's": null, - "milt": [["M", "D", "S", "G"]], - "milt's": null, - "milted": null, - "milts": null, - "milting": null, - "Miltonic": null, - "Milton": [["M"]], - "Milton's": null, - "Miltown": [["M"]], - "Miltown's": null, - "Milty": [["M"]], - "Milty's": null, - "Milwaukee": [["M"]], - "Milwaukee's": null, - "Milzie": [["M"]], - "Milzie's": null, - "MIMD": null, - "mime": [["D", "S", "R", "M", "G"]], - "mimed": null, - "mimes": null, - "mimer": [["M"]], - "mime's": null, - "miming": null, - "mimeograph": [["G", "M", "D", "S"]], - "mimeographing": null, - "mimeograph's": null, - "mimeographed": null, - "mimeographes": null, - "mimeographs": null, - "mimer's": null, - "mimesis": [["M"]], - "mimesis's": null, - "mimetic": null, - "mimetically": null, - "mimicked": null, - "mimicker": [["S", "M"]], - "mimickers": null, - "mimicker's": null, - "mimicking": null, - "mimicry": [["M", "S"]], - "mimicry's": null, - "mimicries": null, - "mimic": [["S"]], - "mimics": null, - "Mimi": [["M"]], - "Mimi's": null, - "mi": [["M", "N", "X"]], - "mi's": null, - "miens": null, - "Mimosa": [["M"]], - "Mimosa's": null, - "mimosa": [["S", "M"]], - "mimosas": null, - "mimosa's": null, - "Mina": [["M"]], - "Mina's": null, - "minaret": [["M", "S"]], - "minaret's": null, - "minarets": null, - "minatory": null, - "mincemeat": [["M", "S"]], - "mincemeat's": null, - "mincemeats": null, - "mincer": [["M"]], - "mincer's": null, - "mince": [["S", "R", "D", "G", "Z", "J"]], - "minces": null, - "minced": null, - "mincing": [["Y"]], - "mincers": null, - "mincings": null, - "mincingly": null, - "Minda": [["M"]], - "Minda's": null, - "Mindanao": [["M"]], - "Mindanao's": null, - "mind": [["A", "R", "D", "S", "Z", "G"]], - "remind": null, - "reminder": null, - "reminded": null, - "reminds": null, - "reminders": null, - "reminding": null, - "minder": [["M"]], - "minded": [["P"]], - "minds": null, - "minders": null, - "minding": null, - "mindbogglingly": null, - "mindedness": null, - "minder's": null, - "mindfully": null, - "mindfulness": [["M", "S"]], - "mindfulness's": null, - "mindfulnesses": null, - "mindful": [["U"]], - "unmindful": null, - "mindlessness": [["S", "M"]], - "mindlessnesses": null, - "mindlessness's": null, - "mindless": [["Y", "P"]], - "mindlessly": null, - "Mindoro": [["M"]], - "Mindoro's": null, - "min": [["D", "R", "Z", "G", "J"]], - "mined": null, - "miner": [["M"]], - "miners": null, - "mining": [["M"]], - "minings": null, - "mind's": null, - "mindset": [["S"]], - "mindsets": null, - "Mindy": [["M"]], - "Mindy's": null, - "minefield": [["M", "S"]], - "minefield's": null, - "minefields": null, - "mineralization": [["C"]], - "mineralized": [["U"]], - "unmineralized": [["M", "S"]], - "mineralogical": null, - "mineralogist": [["S", "M"]], - "mineralogists": null, - "mineralogist's": null, - "mineralogy": [["M", "S"]], - "mineralogy's": null, - "mineralogies": null, - "mineral": [["S", "M"]], - "minerals": null, - "mineral's": null, - "miner's": null, - "Miner": [["M"]], - "Miner's": null, - "Minerva": [["M"]], - "Minerva's": null, - "mineshaft": null, - "mine": [["S", "N", "X"]], - "mines": null, - "minion": [["M"]], - "minions": null, - "minestrone": [["M", "S"]], - "minestrone's": null, - "minestrones": null, - "minesweeper": [["M", "S"]], - "minesweeper's": null, - "minesweepers": null, - "Minetta": [["M"]], - "Minetta's": null, - "Minette": [["M"]], - "Minette's": null, - "mineworkers": null, - "mingle": [["S", "D", "G"]], - "mingles": null, - "mingled": null, - "mingling": null, - "Ming's": null, - "Mingus": [["M"]], - "Mingus's": null, - "miniature": [["G", "M", "S", "D"]], - "miniaturing": null, - "miniature's": null, - "miniatures": null, - "miniatured": null, - "miniaturist": [["S", "M"]], - "miniaturists": null, - "miniaturist's": null, - "miniaturization": [["M", "S"]], - "miniaturization's": null, - "miniaturizations": null, - "miniaturize": [["S", "D", "G"]], - "miniaturizes": null, - "miniaturized": null, - "miniaturizing": null, - "minibike": [["S"]], - "minibikes": null, - "minibus": [["S", "M"]], - "minibuses": null, - "minibus's": null, - "minicab": [["M"]], - "minicab's": null, - "minicam": [["M", "S"]], - "minicam's": null, - "minicams": null, - "minicomputer": [["S", "M"]], - "minicomputers": null, - "minicomputer's": null, - "minidress": [["S", "M"]], - "minidresses": null, - "minidress's": null, - "minify": [["G", "S", "D"]], - "minifying": null, - "minifies": null, - "minified": null, - "minimalism": [["S"]], - "minimalisms": null, - "minimalistic": null, - "minimalist": [["M", "S"]], - "minimalist's": null, - "minimalists": null, - "minimality": null, - "minimal": [["S", "Y"]], - "minimals": null, - "minimally": null, - "minima's": null, - "minimax": [["M"]], - "minimax's": null, - "minimization": [["M", "S"]], - "minimization's": null, - "minimizations": null, - "minimized": [["U"]], - "unminimized": null, - "minimizer": [["M"]], - "minimizer's": null, - "minimize": [["R", "S", "D", "Z", "G"]], - "minimizes": null, - "minimizers": null, - "minimizing": null, - "minim": [["S", "M"]], - "minims": null, - "minim's": null, - "minimum": [["M", "S"]], - "minimum's": null, - "minimums": null, - "mining's": null, - "minion's": null, - "mini": [["S"]], - "minis": null, - "miniseries": null, - "miniskirt": [["M", "S"]], - "miniskirt's": null, - "miniskirts": null, - "ministerial": [["Y"]], - "ministerially": null, - "minister": [["M", "D", "G", "S"]], - "minister's": null, - "ministered": null, - "ministering": null, - "ministers": null, - "ministrant": [["S"]], - "ministrants": null, - "ministration": [["S", "M"]], - "ministrations": null, - "ministration's": null, - "ministry": [["M", "S"]], - "ministry's": null, - "ministries": null, - "minivan": [["S"]], - "minivans": null, - "miniver": [["M"]], - "miniver's": null, - "minke": null, - "mink": [["S", "M"]], - "minks": null, - "mink's": null, - "Min": [["M", "R"]], - "Min's": null, - "Minna": [["M"]], - "Minna's": null, - "Minnaminnie": [["M"]], - "Minnaminnie's": null, - "Minneapolis": [["M"]], - "Minneapolis's": null, - "Minne": [["M"]], - "Minne's": null, - "minnesinger": [["M", "S"]], - "minnesinger's": null, - "minnesingers": null, - "Minnesota": [["M"]], - "Minnesota's": null, - "Minnesotan": [["S"]], - "Minnesotans": null, - "Minnie": [["M"]], - "Minnie's": null, - "Minni": [["M"]], - "Minni's": null, - "Minn": [["M"]], - "Minn's": null, - "Minnnie": [["M"]], - "Minnnie's": null, - "minnow": [["S", "M"]], - "minnows": null, - "minnow's": null, - "Minny": [["M"]], - "Minny's": null, - "Minoan": [["S"]], - "Minoans": null, - "Minolta": [["M"]], - "Minolta's": null, - "minor": [["D", "M", "S", "G"]], - "minored": null, - "minor's": null, - "minors": null, - "minoring": null, - "minority": [["M", "S"]], - "minority's": null, - "minorities": null, - "Minor": [["M"]], - "Minor's": null, - "Minos": null, - "Minotaur": [["M"]], - "Minotaur's": null, - "minotaur": [["S"]], - "minotaurs": null, - "Minot": [["M"]], - "Minot's": null, - "minoxidil": [["S"]], - "minoxidils": null, - "Minsk": [["M"]], - "Minsk's": null, - "Minsky": [["M"]], - "Minsky's": null, - "minster": [["S", "M"]], - "minsters": null, - "minster's": null, - "minstrel": [["S", "M"]], - "minstrels": null, - "minstrel's": null, - "minstrelsy": [["M", "S"]], - "minstrelsy's": null, - "minstrelsies": null, - "mintage": [["S", "M"]], - "mintages": null, - "mintage's": null, - "Mintaka": [["M"]], - "Mintaka's": null, - "Minta": [["M"]], - "Minta's": null, - "minter": [["M"]], - "minter's": null, - "mint": [["G", "Z", "S", "M", "R", "D"]], - "minting": null, - "minters": null, - "mints": null, - "mint's": null, - "minted": null, - "minty": [["R", "T"]], - "mintier": null, - "mintiest": null, - "minuend": [["S", "M"]], - "minuends": null, - "minuend's": null, - "minuet": [["S", "M"]], - "minuets": null, - "minuet's": null, - "Minuit": [["M"]], - "Minuit's": null, - "minuscule": [["S", "M"]], - "minuscules": null, - "minuscule's": null, - "minus": [["S"]], - "minuses": null, - "minuteman": null, - "Minuteman": [["M"]], - "Minuteman's": null, - "minutemen": null, - "minuteness": [["S", "M"]], - "minutenesses": null, - "minuteness's": null, - "minute": [["R", "S", "D", "P", "M", "T", "Y", "G"]], - "minuter": null, - "minutes": null, - "minuted": null, - "minute's": null, - "minutest": null, - "minutely": null, - "minuting": null, - "minutiae": null, - "minutia": [["M"]], - "minutia's": null, - "minx": [["M", "S"]], - "minx's": null, - "minxes": null, - "Miocene": null, - "MIPS": null, - "Miquela": [["M"]], - "Miquela's": null, - "Mirabeau": [["M"]], - "Mirabeau's": null, - "Mirabella": [["M"]], - "Mirabella's": null, - "Mirabelle": [["M"]], - "Mirabelle's": null, - "Mirabel": [["M"]], - "Mirabel's": null, - "Mirach": [["M"]], - "Mirach's": null, - "miracle": [["M", "S"]], - "miracle's": null, - "miracles": null, - "miraculousness": [["M"]], - "miraculousness's": null, - "miraculous": [["P", "Y"]], - "miraculously": null, - "mirage": [["G", "S", "D", "M"]], - "miraging": null, - "mirages": null, - "miraged": null, - "mirage's": null, - "Mira": [["M"]], - "Mira's": null, - "Miranda": [["M"]], - "Miranda's": null, - "Miran": [["M"]], - "Miran's": null, - "Mireielle": [["M"]], - "Mireielle's": null, - "Mireille": [["M"]], - "Mireille's": null, - "Mirella": [["M"]], - "Mirella's": null, - "Mirelle": [["M"]], - "Mirelle's": null, - "mire": [["M", "G", "D", "S"]], - "mire's": null, - "miring": null, - "mired": null, - "mires": null, - "Mirfak": [["M"]], - "Mirfak's": null, - "Miriam": [["M"]], - "Miriam's": null, - "Mirilla": [["M"]], - "Mirilla's": null, - "Mir": [["M"]], - "Mir's": null, - "Mirna": [["M"]], - "Mirna's": null, - "Miro": null, - "mirror": [["D", "M", "G", "S"]], - "mirrored": null, - "mirror's": null, - "mirroring": null, - "mirrors": null, - "mirthfulness": [["S", "M"]], - "mirthfulnesses": null, - "mirthfulness's": null, - "mirthful": [["P", "Y"]], - "mirthfully": null, - "mirthlessness": [["M"]], - "mirthlessness's": null, - "mirthless": [["Y", "P"]], - "mirthlessly": null, - "mirth": [["M"]], - "mirth's": null, - "mirths": null, - "MIRV": [["D", "S", "G"]], - "MIRVed": null, - "MIRVs": null, - "MIRVing": null, - "miry": [["R", "T"]], - "mirier": null, - "miriest": null, - "Mirzam": [["M"]], - "Mirzam's": null, - "misaddress": [["S", "D", "G"]], - "misaddresses": null, - "misaddressed": null, - "misaddressing": null, - "misadventure": [["S", "M"]], - "misadventures": null, - "misadventure's": null, - "misalign": [["D", "S", "G", "L"]], - "misaligned": null, - "misaligns": null, - "misaligning": null, - "misalignment": [["M", "S"]], - "misalignment's": null, - "misalignments": null, - "misalliance": [["M", "S"]], - "misalliance's": null, - "misalliances": null, - "misanalysed": null, - "misanthrope": [["M", "S"]], - "misanthrope's": null, - "misanthropes": null, - "misanthropic": null, - "misanthropically": null, - "misanthropist": [["S"]], - "misanthropists": null, - "misanthropy": [["S", "M"]], - "misanthropies": null, - "misanthropy's": null, - "misapplier": [["M"]], - "misapplier's": null, - "misapply": [["G", "N", "X", "R", "S", "D"]], - "misapplying": null, - "misapplication": null, - "misapplications": null, - "misapplies": null, - "misapplied": null, - "misapprehend": [["G", "D", "S"]], - "misapprehending": null, - "misapprehended": null, - "misapprehends": null, - "misapprehension": [["M", "S"]], - "misapprehension's": null, - "misapprehensions": null, - "misappropriate": [["G", "N", "X", "S", "D"]], - "misappropriating": null, - "misappropriation": null, - "misappropriations": null, - "misappropriates": null, - "misappropriated": null, - "misbegotten": null, - "misbehaver": [["M"]], - "misbehaver's": null, - "misbehave": [["R", "S", "D", "G"]], - "misbehaves": null, - "misbehaved": null, - "misbehaving": null, - "misbehavior": [["S", "M"]], - "misbehaviors": null, - "misbehavior's": null, - "misbrand": [["D", "S", "G"]], - "misbranded": null, - "misbrands": null, - "misbranding": null, - "misc": null, - "miscalculate": [["X", "G", "N", "S", "D"]], - "miscalculations": null, - "miscalculating": null, - "miscalculation": [["M"]], - "miscalculates": null, - "miscalculated": null, - "miscalculation's": null, - "miscall": [["S", "D", "G"]], - "miscalls": null, - "miscalled": null, - "miscalling": null, - "miscarriage": [["M", "S"]], - "miscarriage's": null, - "miscarriages": null, - "miscarry": [["S", "D", "G"]], - "miscarries": null, - "miscarried": null, - "miscarrying": null, - "miscast": [["G", "S"]], - "miscasting": null, - "miscasts": null, - "miscegenation": [["S", "M"]], - "miscegenations": null, - "miscegenation's": null, - "miscellanea": null, - "miscellaneous": [["P", "Y"]], - "miscellaneousness": null, - "miscellaneously": null, - "miscellany": [["M", "S"]], - "miscellany's": null, - "miscellanies": null, - "Mischa": [["M"]], - "Mischa's": null, - "mischance": [["M", "G", "S", "D"]], - "mischance's": null, - "mischancing": null, - "mischances": null, - "mischanced": null, - "mischief": [["M", "D", "G", "S"]], - "mischief's": null, - "mischiefed": null, - "mischiefing": null, - "mischiefs": null, - "mischievousness": [["M", "S"]], - "mischievousness's": null, - "mischievousnesses": null, - "mischievous": [["P", "Y"]], - "mischievously": null, - "miscibility": [["S"]], - "miscibilities": null, - "miscible": [["C"]], - "demiscible": null, - "misclassification": [["M"]], - "misclassification's": null, - "misclassified": null, - "misclassifying": null, - "miscode": [["S", "D", "G"]], - "miscodes": null, - "miscoded": null, - "miscoding": null, - "miscommunicate": [["N", "D", "S"]], - "miscommunication": null, - "miscommunicated": null, - "miscommunicates": null, - "miscomprehended": null, - "misconceive": [["G", "D", "S"]], - "misconceiving": null, - "misconceived": null, - "misconceives": null, - "misconception": [["M", "S"]], - "misconception's": null, - "misconceptions": null, - "misconduct": [["G", "S", "M", "D"]], - "misconducting": null, - "misconducts": null, - "misconduct's": null, - "misconducted": null, - "misconfiguration": null, - "misconstruction": [["M", "S"]], - "misconstruction's": null, - "misconstructions": null, - "misconstrue": [["D", "S", "G"]], - "misconstrued": null, - "misconstrues": null, - "misconstruing": null, - "miscopying": null, - "miscount": [["D", "G", "S"]], - "miscounted": null, - "miscounting": null, - "miscounts": null, - "miscreant": [["M", "S"]], - "miscreant's": null, - "miscreants": null, - "miscue": [["M", "G", "S", "D"]], - "miscue's": null, - "miscuing": null, - "miscues": null, - "miscued": null, - "misdeal": [["S", "G"]], - "misdeals": null, - "misdealing": null, - "misdealt": null, - "misdeed": [["M", "S"]], - "misdeed's": null, - "misdeeds": null, - "misdemeanant": [["S", "M"]], - "misdemeanants": null, - "misdemeanant's": null, - "misdemeanor": [["S", "M"]], - "misdemeanors": null, - "misdemeanor's": null, - "misdiagnose": [["G", "S", "D"]], - "misdiagnosing": null, - "misdiagnoses": null, - "misdiagnosed": null, - "misdid": null, - "misdirect": [["G", "S", "D"]], - "misdirecting": null, - "misdirects": null, - "misdirected": null, - "misdirection": [["M", "S"]], - "misdirection's": null, - "misdirections": null, - "misdirector": [["S"]], - "misdirectors": null, - "misdoes": null, - "misdo": [["J", "G"]], - "misdoings": null, - "misdoing": null, - "misdone": null, - "miserableness": [["S", "M"]], - "miserablenesses": null, - "miserableness's": null, - "miserable": [["S", "P"]], - "miserables": null, - "miserably": null, - "miser": [["K", "M"]], - "promiser": null, - "promiser's": null, - "miser's": null, - "miserliness": [["M", "S"]], - "miserliness's": null, - "miserlinesses": null, - "miserly": [["P"]], - "misery": [["M", "S"]], - "misery's": null, - "miseries": null, - "mises": [["K", "C"]], - "promises": null, - "demises": null, - "misfeasance": [["M", "S"]], - "misfeasance's": null, - "misfeasances": null, - "misfeature": [["M"]], - "misfeature's": null, - "misfield": null, - "misfile": [["S", "D", "G"]], - "misfiles": null, - "misfiled": null, - "misfiling": null, - "misfire": [["S", "D", "G"]], - "misfires": null, - "misfired": null, - "misfiring": null, - "misfit": [["M", "S"]], - "misfit's": null, - "misfits": null, - "misfitted": null, - "misfitting": null, - "misfortune": [["S", "M"]], - "misfortunes": null, - "misfortune's": null, - "misgauge": [["G", "D", "S"]], - "misgauging": null, - "misgauged": null, - "misgauges": null, - "misgiving": [["M", "Y", "S"]], - "misgiving's": null, - "misgivingly": null, - "misgivings": null, - "misgovern": [["L", "D", "G", "S"]], - "misgovernment": [["S"]], - "misgoverned": null, - "misgoverning": null, - "misgoverns": null, - "misgovernments": null, - "misguidance": [["S", "M"]], - "misguidances": null, - "misguidance's": null, - "misguidedness": [["M"]], - "misguidedness's": null, - "misguided": [["P", "Y"]], - "misguidedly": null, - "misguide": [["D", "R", "S", "G"]], - "misguider": [["M"]], - "misguides": null, - "misguiding": null, - "misguider's": null, - "Misha": [["M"]], - "Misha's": null, - "mishandle": [["S", "D", "G"]], - "mishandles": null, - "mishandled": null, - "mishandling": null, - "mishap": [["M", "S"]], - "mishap's": null, - "mishaps": null, - "mishapped": null, - "mishapping": null, - "misheard": null, - "mishear": [["G", "S"]], - "mishearing": null, - "mishears": null, - "mishitting": null, - "mishmash": [["S", "M"]], - "mishmashes": null, - "mishmash's": null, - "misidentification": [["M"]], - "misidentification's": null, - "misidentify": [["G", "N", "S", "D"]], - "misidentifying": null, - "misidentifies": null, - "misidentified": null, - "misinformation": [["S", "M"]], - "misinformations": null, - "misinformation's": null, - "misinform": [["G", "D", "S"]], - "misinforming": null, - "misinformed": null, - "misinforms": null, - "misinterpretation": [["M", "S"]], - "misinterpretation's": null, - "misinterpretations": null, - "misinterpreter": [["M"]], - "misinterpreter's": null, - "misinterpret": [["R", "D", "S", "Z", "G"]], - "misinterpreted": null, - "misinterprets": null, - "misinterpreters": null, - "misinterpreting": null, - "misjudge": [["D", "S", "G"]], - "misjudged": null, - "misjudges": null, - "misjudging": [["Y"]], - "misjudgingly": null, - "misjudgment": [["M", "S"]], - "misjudgment's": null, - "misjudgments": null, - "Miskito": null, - "mislabel": [["D", "S", "G"]], - "mislabeled": null, - "mislabels": null, - "mislabeling": null, - "mislaid": null, - "mislay": [["G", "S"]], - "mislaying": null, - "mislays": null, - "misleader": [["M"]], - "misleader's": null, - "mislead": [["G", "R", "J", "S"]], - "misleading": [["Y"]], - "misleadings": null, - "misleads": null, - "misleadingly": null, - "misled": null, - "mismanage": [["L", "G", "S", "D"]], - "mismanagement": [["M", "S"]], - "mismanaging": null, - "mismanages": null, - "mismanaged": null, - "mismanagement's": null, - "mismanagements": null, - "mismatch": [["G", "S", "D"]], - "mismatching": null, - "mismatches": null, - "mismatched": null, - "misname": [["G", "S", "D"]], - "misnaming": null, - "misnames": null, - "misnamed": null, - "misnomer": [["G", "S", "M", "D"]], - "misnomering": null, - "misnomers": null, - "misnomer's": null, - "misnomered": null, - "misogamist": [["M", "S"]], - "misogamist's": null, - "misogamists": null, - "misogamy": [["M", "S"]], - "misogamy's": null, - "misogamies": null, - "misogynistic": null, - "misogynist": [["M", "S"]], - "misogynist's": null, - "misogynists": null, - "misogynous": null, - "misogyny": [["M", "S"]], - "misogyny's": null, - "misogynies": null, - "misperceive": [["S", "D"]], - "misperceives": null, - "misperceived": null, - "misplace": [["G", "L", "D", "S"]], - "misplacing": null, - "misplacement": [["M", "S"]], - "misplaced": null, - "misplaces": null, - "misplacement's": null, - "misplacements": null, - "misplay": [["G", "S", "D"]], - "misplaying": null, - "misplays": null, - "misplayed": null, - "mispositioned": null, - "misprint": [["S", "G", "D", "M"]], - "misprints": null, - "misprinting": null, - "misprinted": null, - "misprint's": null, - "misprision": [["S", "M"]], - "misprisions": null, - "misprision's": null, - "mispronounce": [["D", "S", "G"]], - "mispronounced": null, - "mispronounces": null, - "mispronouncing": null, - "mispronunciation": [["M", "S"]], - "mispronunciation's": null, - "mispronunciations": null, - "misquotation": [["M", "S"]], - "misquotation's": null, - "misquotations": null, - "misquote": [["G", "D", "S"]], - "misquoting": null, - "misquoted": null, - "misquotes": null, - "misreader": [["M"]], - "misreader's": null, - "misread": [["R", "S", "G", "J"]], - "misreads": null, - "misreading": null, - "misreadings": null, - "misrelated": null, - "misremember": [["D", "G"]], - "misremembered": null, - "misremembering": null, - "misreport": [["D", "G", "S"]], - "misreported": null, - "misreporting": null, - "misreports": null, - "misrepresentation": [["M", "S"]], - "misrepresentation's": null, - "misrepresentations": null, - "misrepresenter": [["M"]], - "misrepresenter's": null, - "misrepresent": [["S", "D", "R", "G"]], - "misrepresents": null, - "misrepresented": null, - "misrepresenting": null, - "misroute": [["D", "S"]], - "misrouted": null, - "misroutes": null, - "misrule": [["S", "D", "G"]], - "misrules": null, - "misruled": null, - "misruling": null, - "missal": [["E", "S", "M"]], - "dismissal": null, - "dismissals": null, - "dismissal's": null, - "missals": null, - "missal's": null, - "misshape": [["D", "S", "G"]], - "misshaped": null, - "misshapes": null, - "misshaping": null, - "misshapenness": [["S", "M"]], - "misshapennesses": null, - "misshapenness's": null, - "misshapen": [["P", "Y"]], - "misshapenly": null, - "Missie": [["M"]], - "Missie's": null, - "missile": [["M", "S"]], - "missile's": null, - "missiles": null, - "missilery": [["S", "M"]], - "missileries": null, - "missilery's": null, - "mission": [["A", "M", "S"]], - "remission": null, - "remission's": null, - "remissions": null, - "mission's": null, - "missions": null, - "missionary": [["M", "S"]], - "missionary's": null, - "missionaries": null, - "missioned": null, - "missioner": [["S", "M"]], - "missioners": null, - "missioner's": null, - "missioning": null, - "missis's": null, - "Mississauga": [["M"]], - "Mississauga's": null, - "Mississippian": [["S"]], - "Mississippians": null, - "Mississippi": [["M"]], - "Mississippi's": null, - "missive": [["M", "S"]], - "missive's": null, - "missives": null, - "Missoula": [["M"]], - "Missoula's": null, - "Missourian": [["S"]], - "Missourians": null, - "Missouri": [["M"]], - "Missouri's": null, - "misspeak": [["S", "G"]], - "misspeaks": null, - "misspeaking": null, - "misspecification": null, - "misspecified": null, - "misspelling": [["M"]], - "misspelling's": null, - "misspell": [["S", "G", "J", "D"]], - "misspells": null, - "misspellings": null, - "misspelled": null, - "misspend": [["G", "S"]], - "misspending": null, - "misspends": null, - "misspent": null, - "misspoke": null, - "misspoken": null, - "mis": [["S", "R", "Z"]], - "misers": null, - "miss": [["S", "D", "E", "G", "V"]], - "misses": null, - "dismisses": null, - "missed": null, - "dismissed": null, - "dismissing": null, - "missing": null, - "Miss": [["S", "M"]], - "Misses": null, - "Miss's": null, - "misstate": [["G", "L", "D", "R", "S"]], - "misstating": null, - "misstatement": [["M", "S"]], - "misstated": null, - "misstater": [["M"]], - "misstates": null, - "misstatement's": null, - "misstatements": null, - "misstater's": null, - "misstep": [["M", "S"]], - "misstep's": null, - "missteps": null, - "misstepped": null, - "misstepping": null, - "missus": [["S", "M"]], - "missuses": null, - "missus's": null, - "Missy": [["M"]], - "Missy's": null, - "mistakable": [["U"]], - "unmistakable": null, - "mistake": [["B", "M", "G", "S", "R"]], - "mistake's": null, - "mistaking": [["Y"]], - "mistakes": null, - "mistaker": [["M"]], - "mistaken": [["Y"]], - "mistakenly": null, - "mistaker's": null, - "mistakingly": null, - "Mistassini": [["M"]], - "Mistassini's": null, - "mister": [["G", "D", "M"]], - "mistering": null, - "mistered": null, - "mister's": null, - "Mister": [["S", "M"]], - "Misters": null, - "Mister's": null, - "mistily": null, - "Misti": [["M"]], - "Misti's": null, - "mistime": [["G", "S", "D"]], - "mistiming": null, - "mistimes": null, - "mistimed": null, - "mistiness": [["S"]], - "mistinesses": null, - "mistletoe": [["M", "S"]], - "mistletoe's": null, - "mistletoes": null, - "mist": [["M", "R", "D", "G", "Z", "S"]], - "mist's": null, - "misted": null, - "misting": null, - "misters": null, - "mists": null, - "mistook": null, - "mistral": [["M", "S"]], - "mistral's": null, - "mistrals": null, - "mistranslated": null, - "mistranslates": null, - "mistranslating": null, - "mistranslation": [["S", "M"]], - "mistranslations": null, - "mistranslation's": null, - "mistreat": [["D", "G", "S", "L"]], - "mistreated": null, - "mistreating": null, - "mistreats": null, - "mistreatment": [["S", "M"]], - "mistreatments": null, - "mistreatment's": null, - "Mistress": [["M", "S"]], - "Mistress's": null, - "Mistresses": null, - "mistress": [["M", "S", "Y"]], - "mistress's": null, - "mistresses": null, - "mistressly": null, - "mistrial": [["S", "M"]], - "mistrials": null, - "mistrial's": null, - "mistruster": [["M"]], - "mistruster's": null, - "mistrustful": [["Y"]], - "mistrustfully": null, - "mistrust": [["S", "R", "D", "G"]], - "mistrusts": null, - "mistrusted": null, - "mistrusting": null, - "Misty": [["M"]], - "Misty's": null, - "mistype": [["S", "D", "G", "J"]], - "mistypes": null, - "mistyped": null, - "mistyping": null, - "mistypings": null, - "misty": [["P", "R", "T"]], - "mistier": null, - "mistiest": null, - "misunderstander": [["M"]], - "misunderstander's": null, - "misunderstanding": [["M"]], - "misunderstanding's": null, - "misunderstand": [["J", "S", "R", "Z", "G"]], - "misunderstandings": null, - "misunderstands": null, - "misunderstanders": null, - "misunderstood": null, - "misuser": [["M"]], - "misuser's": null, - "misuse": [["R", "S", "D", "M", "G"]], - "misuses": null, - "misused": null, - "misuse's": null, - "misusing": null, - "miswritten": null, - "Mitchael": [["M"]], - "Mitchael's": null, - "Mitchell": [["M"]], - "Mitchell's": null, - "Mitchel": [["M"]], - "Mitchel's": null, - "Mitch": [["M"]], - "Mitch's": null, - "miterer": [["M"]], - "miterer's": null, - "miter": [["G", "R", "D", "M"]], - "mitering": null, - "mitered": null, - "miter's": null, - "mite": [["S", "R", "M", "Z"]], - "mites": null, - "mite's": null, - "miters": null, - "Mitford": [["M"]], - "Mitford's": null, - "Mithra": [["M"]], - "Mithra's": null, - "Mithridates": [["M"]], - "Mithridates's": null, - "mitigated": [["U"]], - "unmitigated": [["Y", "P"]], - "mitigate": [["X", "N", "G", "V", "D", "S"]], - "mitigations": null, - "mitigation": [["M"]], - "mitigating": null, - "mitigative": null, - "mitigates": null, - "mitigation's": null, - "MIT": [["M"]], - "MIT's": null, - "mitoses": null, - "mitosis": [["M"]], - "mitosis's": null, - "mitotic": null, - "MITRE": [["S", "M"]], - "MITREs": null, - "MITRE's": null, - "Mitsubishi": [["M"]], - "Mitsubishi's": null, - "mitten": [["M"]], - "mitten's": null, - "Mitterrand": [["M"]], - "Mitterrand's": null, - "mitt": [["X", "S", "M", "N"]], - "mittens": null, - "mitts": null, - "mitt's": null, - "Mitty": [["M"]], - "Mitty's": null, - "Mitzi": [["M"]], - "Mitzi's": null, - "mitzvahs": null, - "mixable": null, - "mix": [["A", "G", "S", "D"]], - "remix": null, - "remixing": null, - "remixes": null, - "remixed": null, - "mixing": null, - "mixes": null, - "mixed": [["U"]], - "unmixed": null, - "mixer": [["S", "M"]], - "mixers": null, - "mixer's": null, - "mixture": [["S", "M"]], - "mixtures": null, - "mixture's": null, - "Mizar": [["M"]], - "Mizar's": null, - "mizzenmast": [["S", "M"]], - "mizzenmasts": null, - "mizzenmast's": null, - "mizzen": [["M", "S"]], - "mizzen's": null, - "mizzens": null, - "Mk": null, - "mks": null, - "ml": null, - "Mlle": [["M"]], - "Mlle's": null, - "mm": null, - "MM": null, - "MMe": null, - "Mme": [["S", "M"]], - "Mmes": null, - "Mme's": null, - "MN": null, - "mnemonically": null, - "mnemonics": [["M"]], - "mnemonics's": null, - "mnemonic": [["S", "M"]], - "mnemonic's": null, - "Mnemosyne": [["M"]], - "Mnemosyne's": null, - "Mn": [["M"]], - "Mn's": null, - "MO": null, - "moan": [["G", "S", "Z", "R", "D", "M"]], - "moaning": null, - "moans": null, - "moaners": null, - "moaner": null, - "moaned": null, - "moan's": null, - "moat": [["S", "M", "D", "G"]], - "moats": null, - "moat's": null, - "moated": null, - "moating": null, - "mobbed": null, - "mobber": null, - "mobbing": null, - "mobcap": [["S", "M"]], - "mobcaps": null, - "mobcap's": null, - "Mobile": [["M"]], - "Mobile's": null, - "mobile": [["S"]], - "mobiles": null, - "mobility": [["M", "S"]], - "mobility's": null, - "mobilities": null, - "mobilizable": null, - "mobilization": [["A", "M", "C", "S"]], - "remobilization": null, - "remobilization's": null, - "remobilizations": null, - "mobilization's": null, - "demobilization's": null, - "demobilization": null, - "demobilizations": null, - "mobilizations": null, - "mobilize": [["C", "G", "D", "S"]], - "demobilize": null, - "demobilizing": null, - "demobilized": null, - "demobilizes": null, - "mobilizing": null, - "mobilized": [["U"]], - "mobilizes": [["A"]], - "unmobilized": [["S", "M"]], - "mobilizer": [["M", "S"]], - "mobilizer's": null, - "mobilizers": null, - "remobilizes": null, - "Mobil": [["M"]], - "Mobil's": null, - "mob": [["M", "S"]], - "mob's": null, - "mobs": null, - "mobster": [["M", "S"]], - "mobster's": null, - "mobsters": null, - "Mobutu": [["M"]], - "Mobutu's": null, - "moccasin": [["S", "M"]], - "moccasins": null, - "moccasin's": null, - "mocha": [["S", "M"]], - "mochas": null, - "mocha's": null, - "mockers": [["M"]], - "mockers's": null, - "mockery": [["M", "S"]], - "mockery's": null, - "mockeries": null, - "mock": [["G", "Z", "S", "R", "D"]], - "mocking": [["Y"]], - "mocks": null, - "mocker": null, - "mocked": null, - "mockingbird": [["M", "S"]], - "mockingbird's": null, - "mockingbirds": null, - "mockingly": null, - "mo": [["C", "S", "K"]], - "demos": null, - "mos": [["S"]], - "promos": null, - "promo": null, - "modality": [["M", "S"]], - "modality's": null, - "modalities": null, - "modal": [["Y"]], - "modally": null, - "modeled": [["A"]], - "remodeled": null, - "modeler": [["M"]], - "modeler's": null, - "modeling": [["M"]], - "modeling's": null, - "models": [["A"]], - "remodels": null, - "model": [["Z", "G", "S", "J", "M", "R", "D"]], - "modelers": null, - "modelings": null, - "model's": null, - "mode": [["M", "S"]], - "mode's": null, - "modes": null, - "modem": [["S", "M"]], - "modems": null, - "modem's": null, - "moderated": [["U"]], - "unmoderated": null, - "moderateness": [["S", "M"]], - "moderatenesses": null, - "moderateness's": null, - "moderate": [["P", "N", "G", "D", "S", "X", "Y"]], - "moderation": [["M"]], - "moderating": null, - "moderates": null, - "moderations": null, - "moderately": null, - "moderation's": null, - "moderator": [["M", "S"]], - "moderator's": null, - "moderators": null, - "modernism": [["M", "S"]], - "modernism's": null, - "modernisms": null, - "modernistic": null, - "modernist": [["S"]], - "modernists": null, - "modernity": [["S", "M"]], - "modernities": null, - "modernity's": null, - "modernization": [["M", "S"]], - "modernization's": null, - "modernizations": null, - "modernized": [["U"]], - "unmodernized": null, - "modernizer": [["M"]], - "modernizer's": null, - "modernize": [["S", "R", "D", "G", "Z"]], - "modernizes": [["U"]], - "modernizing": null, - "modernizers": null, - "unmodernizes": null, - "modernness": [["S", "M"]], - "modernnesses": null, - "modernness's": null, - "modern": [["P", "T", "R", "Y", "S"]], - "modernest": null, - "moderner": null, - "modernly": null, - "moderns": null, - "Modesta": [["M"]], - "Modesta's": null, - "Modestia": [["M"]], - "Modestia's": null, - "Modestine": [["M"]], - "Modestine's": null, - "Modesto": [["M"]], - "Modesto's": null, - "modest": [["T", "R", "Y"]], - "modestest": null, - "modester": null, - "modestly": null, - "Modesty": [["M"]], - "Modesty's": null, - "modesty": [["M", "S"]], - "modesty's": null, - "modesties": null, - "modicum": [["S", "M"]], - "modicums": null, - "modicum's": null, - "modifiability": [["M"]], - "modifiability's": null, - "modifiableness": [["M"]], - "modifiableness's": null, - "modifiable": [["U"]], - "unmodifiable": null, - "modification": [["M"]], - "modification's": null, - "modified": [["U"]], - "unmodified": null, - "modifier": [["M"]], - "modifier's": null, - "modify": [["N", "G", "Z", "X", "R", "S", "D"]], - "modifying": null, - "modifiers": null, - "modifications": null, - "modifies": null, - "Modigliani": [["M"]], - "Modigliani's": null, - "modishness": [["M", "S"]], - "modishness's": null, - "modishnesses": null, - "modish": [["Y", "P"]], - "modishly": null, - "mod": [["T", "S", "R"]], - "mods": null, - "moder": null, - "Modula": [["M"]], - "Modula's": null, - "modularity": [["S", "M"]], - "modularities": null, - "modularity's": null, - "modularization": null, - "modularize": [["S", "D", "G"]], - "modularizes": null, - "modularized": null, - "modularizing": null, - "modular": [["S", "Y"]], - "modulars": null, - "modularly": null, - "modulate": [["A", "D", "S", "N", "C", "G"]], - "remodulate": null, - "remodulated": null, - "remodulates": null, - "remodulation": null, - "remodulating": null, - "modulated": null, - "demodulated": null, - "modulates": null, - "demodulates": null, - "modulation": [["C", "M", "S"]], - "demodulation": null, - "demodulate": null, - "demodulating": null, - "modulating": null, - "demodulation's": null, - "demodulations": null, - "modulation's": null, - "modulations": null, - "modulator": [["A", "C", "S", "M"]], - "remodulator": null, - "remodulators": null, - "remodulator's": null, - "demodulator": null, - "demodulators": null, - "demodulator's": null, - "modulators": null, - "modulator's": null, - "module": [["S", "M"]], - "modules": null, - "module's": null, - "moduli": null, - "modulo": null, - "modulus": [["M"]], - "modulus's": null, - "modus": null, - "Moe": [["M"]], - "Moe's": null, - "Moen": [["M"]], - "Moen's": null, - "Mogadiscio's": null, - "Mogadishu": null, - "mogul": [["M", "S"]], - "mogul's": null, - "moguls": null, - "Mogul": [["M", "S"]], - "Mogul's": null, - "Moguls": null, - "mohair": [["S", "M"]], - "mohairs": null, - "mohair's": null, - "Mohamed": [["M"]], - "Mohamed's": null, - "Mohammad": [["M"]], - "Mohammad's": null, - "Mohammedanism": [["M", "S"]], - "Mohammedanism's": null, - "Mohammedanisms": null, - "Mohammedan": [["S", "M"]], - "Mohammedans": null, - "Mohammedan's": null, - "Mohammed's": null, - "Mohandas": [["M"]], - "Mohandas's": null, - "Mohandis": [["M"]], - "Mohandis's": null, - "Mohawk": [["M", "S"]], - "Mohawk's": null, - "Mohawks": null, - "Mohegan": [["S"]], - "Mohegans": null, - "Mohican's": null, - "Moho": [["M"]], - "Moho's": null, - "Mohorovicic": [["M"]], - "Mohorovicic's": null, - "Mohr": [["M"]], - "Mohr's": null, - "moiety": [["M", "S"]], - "moiety's": null, - "moieties": null, - "moil": [["S", "G", "D"]], - "moils": null, - "moiling": null, - "moiled": null, - "Moina": [["M"]], - "Moina's": null, - "Moines": [["M"]], - "Moines's": null, - "Moira": [["M"]], - "Moira's": null, - "moire": [["M", "S"]], - "moire's": null, - "moires": null, - "Moise": [["M", "S"]], - "Moise's": null, - "Moises": null, - "Moiseyev": [["M"]], - "Moiseyev's": null, - "Moishe": [["M"]], - "Moishe's": null, - "moistener": [["M"]], - "moistener's": null, - "moisten": [["Z", "G", "R", "D"]], - "moisteners": null, - "moistening": null, - "moistened": null, - "moistness": [["M", "S"]], - "moistness's": null, - "moistnesses": null, - "moist": [["T", "X", "P", "R", "N", "Y"]], - "moistest": null, - "moistens": null, - "moister": null, - "moistly": null, - "moisture": [["M", "S"]], - "moisture's": null, - "moistures": null, - "moisturize": [["G", "Z", "D", "R", "S"]], - "moisturizing": null, - "moisturizers": null, - "moisturized": null, - "moisturizer": null, - "moisturizes": null, - "Mojave": [["M"]], - "Mojave's": null, - "molal": null, - "molarity": [["S", "M"]], - "molarities": null, - "molarity's": null, - "molar": [["M", "S"]], - "molar's": null, - "molars": null, - "molasses": [["M", "S"]], - "molasses's": null, - "molasseses": null, - "Moldavia": [["M"]], - "Moldavia's": null, - "Moldavian": [["S"]], - "Moldavians": null, - "moldboard": [["S", "M"]], - "moldboards": null, - "moldboard's": null, - "molder": [["D", "G"]], - "moldered": null, - "moldering": null, - "moldiness": [["S", "M"]], - "moldinesses": null, - "moldiness's": null, - "molding": [["M"]], - "molding's": null, - "mold": [["M", "R", "D", "J", "S", "G", "Z"]], - "mold's": null, - "molded": null, - "moldings": null, - "molds": null, - "molders": null, - "Moldova": null, - "moldy": [["P", "T", "R"]], - "moldiest": null, - "moldier": null, - "molecularity": [["S", "M"]], - "molecularities": null, - "molecularity's": null, - "molecular": [["Y"]], - "molecularly": null, - "molecule": [["M", "S"]], - "molecule's": null, - "molecules": null, - "molehill": [["S", "M"]], - "molehills": null, - "molehill's": null, - "mole": [["M", "T", "S"]], - "mole's": null, - "molest": [["R", "D", "Z", "G", "S"]], - "moles": null, - "moleskin": [["M", "S"]], - "moleskin's": null, - "moleskins": null, - "molestation": [["S", "M"]], - "molestations": null, - "molestation's": null, - "molested": [["U"]], - "unmolested": null, - "molester": [["M"]], - "molester's": null, - "molesters": null, - "molesting": null, - "molests": null, - "Moliere": null, - "Molina": [["M"]], - "Molina's": null, - "Moline": [["M"]], - "Moline's": null, - "Mollee": [["M"]], - "Mollee's": null, - "Mollie": [["M"]], - "Mollie's": null, - "mollification": [["M"]], - "mollification's": null, - "mollify": [["X", "S", "D", "G", "N"]], - "mollifications": null, - "mollifies": null, - "mollified": null, - "mollifying": null, - "Molli": [["M"]], - "Molli's": null, - "Moll": [["M"]], - "Moll's": null, - "moll": [["M", "S"]], - "moll's": null, - "molls": null, - "mollusc's": null, - "mollusk": [["S"]], - "mollusks": null, - "mollycoddler": [["M"]], - "mollycoddler's": null, - "mollycoddle": [["S", "R", "D", "G"]], - "mollycoddles": null, - "mollycoddled": null, - "mollycoddling": null, - "Molly": [["M"]], - "Molly's": null, - "molly": [["S", "M"]], - "mollies": null, - "molly's": null, - "Molnar": [["M"]], - "Molnar's": null, - "Moloch": [["M"]], - "Moloch's": null, - "Molokai": [["M"]], - "Molokai's": null, - "Molotov": [["M"]], - "Molotov's": null, - "molter": [["M"]], - "molter's": null, - "molt": [["R", "D", "N", "G", "Z", "S"]], - "molted": null, - "molten": null, - "molting": null, - "molters": null, - "molts": null, - "Moluccas": null, - "molybdenite": [["M"]], - "molybdenite's": null, - "molybdenum": [["M", "S"]], - "molybdenum's": null, - "molybdenums": null, - "Mombasa": [["M"]], - "Mombasa's": null, - "momenta": null, - "momentarily": null, - "momentariness": [["S", "M"]], - "momentarinesses": null, - "momentariness's": null, - "momentary": [["P"]], - "moment": [["M", "Y", "S"]], - "moment's": null, - "momently": null, - "moments": null, - "momentousness": [["M", "S"]], - "momentousness's": null, - "momentousnesses": null, - "momentous": [["Y", "P"]], - "momentously": null, - "momentum": [["S", "M"]], - "momentums": null, - "momentum's": null, - "momma": [["S"]], - "mommas": null, - "Mommy": [["M"]], - "Mommy's": null, - "mommy": [["S", "M"]], - "mommies": null, - "mommy's": null, - "Mo": [["M", "N"]], - "Mo's": null, - "mom": [["S", "M"]], - "moms": null, - "mom's": null, - "Monaco": [["M"]], - "Monaco's": null, - "monadic": null, - "monad": [["S", "M"]], - "monads": null, - "monad's": null, - "Monah": [["M"]], - "Monah's": null, - "Mona": [["M"]], - "Mona's": null, - "monarchic": null, - "monarchical": null, - "monarchism": [["M", "S"]], - "monarchism's": null, - "monarchisms": null, - "monarchistic": null, - "monarchist": [["M", "S"]], - "monarchist's": null, - "monarchists": null, - "monarch": [["M"]], - "monarch's": null, - "monarchs": null, - "monarchy": [["M", "S"]], - "monarchy's": null, - "monarchies": null, - "Monash": [["M"]], - "Monash's": null, - "monastery": [["M", "S"]], - "monastery's": null, - "monasteries": null, - "monastical": [["Y"]], - "monastically": null, - "monasticism": [["M", "S"]], - "monasticism's": null, - "monasticisms": null, - "monastic": [["S"]], - "monastics": null, - "monaural": [["Y"]], - "monaurally": null, - "Mondale": [["M"]], - "Mondale's": null, - "Monday": [["M", "S"]], - "Monday's": null, - "Mondays": null, - "Mondrian": [["M"]], - "Mondrian's": null, - "Monegasque": [["S", "M"]], - "Monegasques": null, - "Monegasque's": null, - "Monera": [["M"]], - "Monera's": null, - "monetarily": null, - "monetarism": [["S"]], - "monetarisms": null, - "monetarist": [["M", "S"]], - "monetarist's": null, - "monetarists": null, - "monetary": null, - "monetization": [["C", "M", "A"]], - "demonetization's": null, - "monetization's": null, - "remonetization's": null, - "remonetization": null, - "monetize": [["C", "G", "A", "D", "S"]], - "demonetize": null, - "demonetizing": null, - "demonetized": null, - "demonetizes": null, - "monetizing": null, - "remonetizing": null, - "remonetize": null, - "remonetized": null, - "remonetizes": null, - "monetized": null, - "monetizes": null, - "Monet": [["M"]], - "Monet's": null, - "moneybag": [["S", "M"]], - "moneybags": null, - "moneybag's": null, - "moneychangers": null, - "moneyer": [["M"]], - "moneyer's": null, - "moneylender": [["S", "M"]], - "moneylenders": null, - "moneylender's": null, - "moneymaker": [["M", "S"]], - "moneymaker's": null, - "moneymakers": null, - "moneymaking": [["M", "S"]], - "moneymaking's": null, - "moneymakings": null, - "money": [["S", "M", "R", "D"]], - "moneys": null, - "money's": null, - "moneyed": null, - "Monfort": [["M"]], - "Monfort's": null, - "monger": [["S", "G", "D", "M"]], - "mongers": null, - "mongering": null, - "mongered": null, - "monger's": null, - "Mongolia": [["M"]], - "Mongolia's": null, - "Mongolian": [["S"]], - "Mongolians": null, - "Mongolic": [["M"]], - "Mongolic's": null, - "mongolism": [["S", "M"]], - "mongolisms": null, - "mongolism's": null, - "mongoloid": [["S"]], - "mongoloids": null, - "Mongoloid": [["S"]], - "Mongoloids": null, - "Mongol": [["S", "M"]], - "Mongols": null, - "Mongol's": null, - "mongoose": [["S", "M"]], - "mongooses": null, - "mongoose's": null, - "mongrel": [["S", "M"]], - "mongrels": null, - "mongrel's": null, - "Monica": [["M"]], - "Monica's": null, - "monies": [["M"]], - "monies's": null, - "Monika": [["M"]], - "Monika's": null, - "moniker": [["M", "S"]], - "moniker's": null, - "monikers": null, - "Monique": [["M"]], - "Monique's": null, - "monism": [["M", "S"]], - "monism's": null, - "monisms": null, - "monist": [["S", "M"]], - "monists": null, - "monist's": null, - "monition": [["S", "M"]], - "monitions": null, - "monition's": null, - "monitored": [["U"]], - "unmonitored": null, - "monitor": [["G", "S", "M", "D"]], - "monitoring": null, - "monitors": null, - "monitor's": null, - "monitory": [["S"]], - "monitories": null, - "monkeyshine": [["S"]], - "monkeyshines": null, - "monkey": [["S", "M", "D", "G"]], - "monkeys": null, - "monkey's": null, - "monkeyed": null, - "monkeying": null, - "monkish": null, - "Monk": [["M"]], - "Monk's": null, - "monk": [["M", "S"]], - "monk's": null, - "monks": null, - "monkshood": [["S", "M"]], - "monkshoods": null, - "monkshood's": null, - "Monmouth": [["M"]], - "Monmouth's": null, - "monochromatic": null, - "monochromator": null, - "monochrome": [["M", "S"]], - "monochrome's": null, - "monochromes": null, - "monocle": [["S", "D", "M"]], - "monocles": null, - "monocled": null, - "monocle's": null, - "monoclinic": null, - "monoclonal": [["S"]], - "monoclonals": null, - "monocotyledonous": null, - "monocotyledon": [["S", "M"]], - "monocotyledons": null, - "monocotyledon's": null, - "monocular": [["S", "Y"]], - "monoculars": null, - "monocularly": null, - "monodic": null, - "monodist": [["S"]], - "monodists": null, - "monody": [["M", "S"]], - "monody's": null, - "monodies": null, - "monogamist": [["M", "S"]], - "monogamist's": null, - "monogamists": null, - "monogamous": [["P", "Y"]], - "monogamousness": null, - "monogamously": null, - "monogamy": [["M", "S"]], - "monogamy's": null, - "monogamies": null, - "monogrammed": null, - "monogramming": null, - "monogram": [["M", "S"]], - "monogram's": null, - "monograms": null, - "monograph": [["G", "M", "D", "S"]], - "monographing": null, - "monograph's": null, - "monographed": null, - "monographes": null, - "monographs": null, - "monolingualism": null, - "monolingual": [["S"]], - "monolinguals": null, - "monolithic": null, - "monolithically": null, - "monolith": [["M"]], - "monolith's": null, - "monoliths": null, - "monologist": [["S"]], - "monologists": null, - "monologue": [["G", "M", "S", "D"]], - "monologuing": null, - "monologue's": null, - "monologues": null, - "monologued": null, - "monomaniacal": null, - "monomaniac": [["M", "S"]], - "monomaniac's": null, - "monomaniacs": null, - "monomania": [["M", "S"]], - "monomania's": null, - "monomanias": null, - "monomeric": null, - "monomer": [["S", "M"]], - "monomers": null, - "monomer's": null, - "monomial": [["S", "M"]], - "monomials": null, - "monomial's": null, - "mono": [["M", "S"]], - "mono's": null, - "monos": null, - "Monongahela": [["M"]], - "Monongahela's": null, - "mononuclear": null, - "mononucleoses": null, - "mononucleosis": [["M"]], - "mononucleosis's": null, - "monophonic": null, - "monoplane": [["M", "S"]], - "monoplane's": null, - "monoplanes": null, - "monopole": [["S"]], - "monopoles": null, - "monopolistic": null, - "monopolist": [["M", "S"]], - "monopolist's": null, - "monopolists": null, - "monopolization": [["M", "S"]], - "monopolization's": null, - "monopolizations": null, - "monopolized": [["U"]], - "unmonopolized": null, - "monopolize": [["G", "Z", "D", "S", "R"]], - "monopolizing": null, - "monopolizers": null, - "monopolizes": [["U"]], - "monopolizer": null, - "unmonopolizes": null, - "monopoly": [["M", "S"]], - "monopoly's": null, - "monopolies": null, - "monorail": [["S", "M"]], - "monorails": null, - "monorail's": null, - "monostable": null, - "monosyllabic": null, - "monosyllable": [["M", "S"]], - "monosyllable's": null, - "monosyllables": null, - "monotheism": [["S", "M"]], - "monotheisms": null, - "monotheism's": null, - "monotheistic": null, - "monotheist": [["S"]], - "monotheists": null, - "monotone": [["S", "D", "M", "G"]], - "monotones": null, - "monotoned": null, - "monotone's": null, - "monotoning": null, - "monotonic": null, - "monotonically": null, - "monotonicity": null, - "monotonousness": [["M", "S"]], - "monotonousness's": null, - "monotonousnesses": null, - "monotonous": [["Y", "P"]], - "monotonously": null, - "monotony": [["M", "S"]], - "monotony's": null, - "monotonies": null, - "monovalent": null, - "monoxide": [["S", "M"]], - "monoxides": null, - "monoxide's": null, - "Monroe": [["M"]], - "Monroe's": null, - "Monro": [["M"]], - "Monro's": null, - "Monrovia": [["M"]], - "Monrovia's": null, - "Monsanto": [["M"]], - "Monsanto's": null, - "monseigneur": null, - "monsieur": [["M"]], - "monsieur's": null, - "Monsignori": null, - "Monsignor": [["M", "S"]], - "Monsignor's": null, - "Monsignors": null, - "monsignor": [["S"]], - "monsignors": null, - "Mon": [["S", "M"]], - "Mons": null, - "Mon's": null, - "monsoonal": null, - "monsoon": [["M", "S"]], - "monsoon's": null, - "monsoons": null, - "monster": [["S", "M"]], - "monsters": null, - "monster's": null, - "monstrance": [["A", "S", "M"]], - "remonstrance": null, - "remonstrances": null, - "remonstrance's": null, - "monstrances": null, - "monstrance's": null, - "monstrosity": [["S", "M"]], - "monstrosities": null, - "monstrosity's": null, - "monstrousness": [["M"]], - "monstrousness's": null, - "monstrous": [["Y", "P"]], - "monstrously": null, - "montage": [["S", "D", "M", "G"]], - "montages": null, - "montaged": null, - "montage's": null, - "montaging": null, - "Montague": [["M"]], - "Montague's": null, - "Montaigne": [["M"]], - "Montaigne's": null, - "Montana": [["M"]], - "Montana's": null, - "Montanan": [["M", "S"]], - "Montanan's": null, - "Montanans": null, - "Montcalm": [["M"]], - "Montcalm's": null, - "Montclair": [["M"]], - "Montclair's": null, - "Monte": [["M"]], - "Monte's": null, - "Montenegrin": null, - "Montenegro": [["M"]], - "Montenegro's": null, - "Monterey": [["M"]], - "Monterey's": null, - "Monterrey": [["M"]], - "Monterrey's": null, - "Montesquieu": [["M"]], - "Montesquieu's": null, - "Montessori": [["M"]], - "Montessori's": null, - "Monteverdi": [["M"]], - "Monteverdi's": null, - "Montevideo": [["M"]], - "Montevideo's": null, - "Montezuma": null, - "Montgomery": [["M"]], - "Montgomery's": null, - "monthly": [["S"]], - "monthlies": null, - "month": [["M", "Y"]], - "month's": null, - "months": null, - "Monticello": [["M"]], - "Monticello's": null, - "Monti": [["M"]], - "Monti's": null, - "Mont": [["M"]], - "Mont's": null, - "Montmartre": [["M"]], - "Montmartre's": null, - "Montoya": [["M"]], - "Montoya's": null, - "Montpelier": [["M"]], - "Montpelier's": null, - "Montrachet": [["M"]], - "Montrachet's": null, - "Montreal": [["M"]], - "Montreal's": null, - "Montserrat": [["M"]], - "Montserrat's": null, - "Monty": [["M"]], - "Monty's": null, - "monumentality": [["M"]], - "monumentality's": null, - "monumental": [["Y"]], - "monumentally": null, - "monument": [["D", "M", "S", "G"]], - "monumented": null, - "monument's": null, - "monuments": null, - "monumenting": null, - "mooch": [["Z", "S", "R", "D", "G"]], - "moochers": null, - "mooches": null, - "moocher": null, - "mooched": null, - "mooching": null, - "moodily": null, - "moodiness": [["M", "S"]], - "moodiness's": null, - "moodinesses": null, - "mood": [["M", "S"]], - "mood's": null, - "moods": null, - "Moody": [["M"]], - "Moody's": null, - "moody": [["P", "T", "R"]], - "moodiest": null, - "moodier": null, - "Moog": null, - "moo": [["G", "S", "D"]], - "mooing": null, - "moos": null, - "mooed": null, - "moonbeam": [["S", "M"]], - "moonbeams": null, - "moonbeam's": null, - "Mooney": [["M"]], - "Mooney's": null, - "moon": [["G", "D", "M", "S"]], - "mooning": null, - "mooned": null, - "moon's": null, - "moons": null, - "moonless": null, - "moonlight": [["G", "Z", "D", "R", "M", "S"]], - "moonlighting": [["M"]], - "moonlighters": null, - "moonlighted": null, - "moonlighter": null, - "moonlight's": null, - "moonlights": null, - "moonlighting's": null, - "moonlit": null, - "Moon": [["M"]], - "Moon's": null, - "moonscape": [["M", "S"]], - "moonscape's": null, - "moonscapes": null, - "moonshiner": [["M"]], - "moonshiner's": null, - "moonshine": [["S", "R", "Z", "M"]], - "moonshines": null, - "moonshiners": null, - "moonshine's": null, - "moonshot": [["M", "S"]], - "moonshot's": null, - "moonshots": null, - "moonstone": [["S", "M"]], - "moonstones": null, - "moonstone's": null, - "moonstruck": null, - "moonwalk": [["S", "D", "G"]], - "moonwalks": null, - "moonwalked": null, - "moonwalking": null, - "Moore": [["M"]], - "Moore's": null, - "moor": [["G", "D", "M", "J", "S"]], - "mooring": [["M"]], - "moored": null, - "moor's": null, - "moorings": null, - "moors": null, - "mooring's": null, - "Moorish": null, - "moorland": [["M", "S"]], - "moorland's": null, - "moorlands": null, - "Moor": [["M", "S"]], - "Moor's": null, - "Moors": null, - "moose": [["M"]], - "moose's": null, - "moot": [["R", "D", "G", "S"]], - "mooter": null, - "mooted": null, - "mooting": null, - "moots": null, - "moped": [["M", "S"]], - "moped's": null, - "mopeds": null, - "moper": [["M"]], - "moper's": null, - "mope": [["S"]], - "mopes": null, - "mopey": null, - "mopier": null, - "mopiest": null, - "mopish": null, - "mopped": null, - "moppet": [["M", "S"]], - "moppet's": null, - "moppets": null, - "mopping": null, - "mop": [["S", "Z", "G", "M", "D", "R"]], - "mops": null, - "mopers": null, - "moping": null, - "mop's": null, - "moraine": [["M", "S"]], - "moraine's": null, - "moraines": null, - "morale": [["M", "S"]], - "morale's": null, - "morales": null, - "Morales": [["M"]], - "Morales's": null, - "moralistic": null, - "moralistically": null, - "moralist": [["M", "S"]], - "moralist's": null, - "moralists": null, - "morality": [["U", "M", "S"]], - "unmorality": null, - "unmorality's": null, - "unmoralities": null, - "morality's": null, - "moralities": null, - "moralization": [["C", "S"]], - "demoralizations": null, - "moralizations": null, - "moralize": [["C", "G", "D", "R", "S", "Z"]], - "demoralize": null, - "demoralized": null, - "demoralizes": null, - "demoralizers": null, - "moralizing": null, - "moralized": null, - "moralizer": null, - "moralizes": null, - "moralizers": null, - "moralled": null, - "moraller": null, - "moralling": null, - "moral": [["S", "M", "Y"]], - "morals": null, - "moral's": null, - "morally": null, - "Mora": [["M"]], - "Mora's": null, - "Moran": [["M"]], - "Moran's": null, - "morass": [["S", "M"]], - "morasses": null, - "morass's": null, - "moratorium": [["S", "M"]], - "moratoriums": null, - "moratorium's": null, - "Moravia": [["M"]], - "Moravia's": null, - "Moravian": null, - "moray": [["S", "M"]], - "morays": null, - "moray's": null, - "morbidity": [["S", "M"]], - "morbidities": null, - "morbidity's": null, - "morbidness": [["S"]], - "morbidnesses": null, - "morbid": [["Y", "P"]], - "morbidly": null, - "mordancy": [["M", "S"]], - "mordancy's": null, - "mordancies": null, - "mordant": [["G", "D", "Y", "S"]], - "mordanting": null, - "mordanted": null, - "mordantly": null, - "mordants": null, - "Mordecai": [["M"]], - "Mordecai's": null, - "Mord": [["M"]], - "Mord's": null, - "Mordred": [["M"]], - "Mordred's": null, - "Mordy": [["M"]], - "Mordy's": null, - "more": [["D", "S", "N"]], - "mored": null, - "mores": null, - "morion": [["M"]], - "Moreen": [["M"]], - "Moreen's": null, - "Morehouse": [["M"]], - "Morehouse's": null, - "Moreland": [["M"]], - "Moreland's": null, - "morel": [["S", "M"]], - "morels": null, - "morel's": null, - "More": [["M"]], - "More's": null, - "Morena": [["M"]], - "Morena's": null, - "Moreno": [["M"]], - "Moreno's": null, - "moreover": null, - "Morey": [["M"]], - "Morey's": null, - "Morgana": [["M"]], - "Morgana's": null, - "Morganica": [["M"]], - "Morganica's": null, - "Morgan": [["M", "S"]], - "Morgan's": null, - "Morgans": null, - "Morganne": [["M"]], - "Morganne's": null, - "morgen": [["M"]], - "morgen's": null, - "Morgen": [["M"]], - "Morgen's": null, - "morgue": [["S", "M"]], - "morgues": null, - "morgue's": null, - "Morgun": [["M"]], - "Morgun's": null, - "Moria": [["M"]], - "Moria's": null, - "Moriarty": [["M"]], - "Moriarty's": null, - "moribundity": [["M"]], - "moribundity's": null, - "moribund": [["Y"]], - "moribundly": null, - "Morie": [["M"]], - "Morie's": null, - "Morin": [["M"]], - "Morin's": null, - "morion's": null, - "Morison": [["M"]], - "Morison's": null, - "Morissa": [["M"]], - "Morissa's": null, - "Morita": [["M"]], - "Morita's": null, - "Moritz": [["M"]], - "Moritz's": null, - "Morlee": [["M"]], - "Morlee's": null, - "Morley": [["M"]], - "Morley's": null, - "Morly": [["M"]], - "Morly's": null, - "Mormonism": [["M", "S"]], - "Mormonism's": null, - "Mormonisms": null, - "Mormon": [["S", "M"]], - "Mormons": null, - "Mormon's": null, - "Morna": [["M"]], - "Morna's": null, - "morning": [["M", "Y"]], - "morning's": null, - "morningly": null, - "morn": [["S", "G", "J", "D", "M"]], - "morns": null, - "mornings": null, - "morned": null, - "morn's": null, - "Moroccan": [["S"]], - "Moroccans": null, - "Morocco": [["M"]], - "Morocco's": null, - "morocco": [["S", "M"]], - "moroccos": null, - "morocco's": null, - "Moro": [["M"]], - "Moro's": null, - "moronic": null, - "moronically": null, - "Moroni": [["M"]], - "Moroni's": null, - "moron": [["S", "M"]], - "morons": null, - "moron's": null, - "moroseness": [["M", "S"]], - "moroseness's": null, - "morosenesses": null, - "morose": [["Y", "P"]], - "morosely": null, - "morpheme": [["D", "S", "M", "G"]], - "morphemed": null, - "morphemes": null, - "morpheme's": null, - "morpheming": null, - "morphemic": [["S"]], - "morphemics": null, - "Morpheus": [["M"]], - "Morpheus's": null, - "morph": [["G", "D", "J"]], - "morphing": null, - "morphed": null, - "morphings": null, - "morphia": [["S"]], - "morphias": null, - "morphine": [["M", "S"]], - "morphine's": null, - "morphines": null, - "morphism": [["M", "S"]], - "morphism's": null, - "morphisms": null, - "morphologic": null, - "morphological": [["Y"]], - "morphologically": null, - "morphology": [["M", "S"]], - "morphology's": null, - "morphologies": null, - "morphophonemic": [["S"]], - "morphophonemics": [["M"]], - "morphophonemics's": null, - "morphs": null, - "Morrie": [["M"]], - "Morrie's": null, - "morris": null, - "Morris": [["M"]], - "Morris's": null, - "Morrison": [["M"]], - "Morrison's": null, - "Morristown": [["M"]], - "Morristown's": null, - "Morrow": [["M"]], - "Morrow's": null, - "morrow": [["M", "S"]], - "morrow's": null, - "morrows": null, - "Morry": [["M"]], - "Morry's": null, - "morsel": [["G", "M", "D", "S"]], - "morseling": null, - "morsel's": null, - "morseled": null, - "morsels": null, - "Morse": [["M"]], - "Morse's": null, - "mortality": [["S", "M"]], - "mortalities": null, - "mortality's": null, - "mortal": [["S", "Y"]], - "mortals": null, - "mortally": null, - "mortarboard": [["S", "M"]], - "mortarboards": null, - "mortarboard's": null, - "mortar": [["G", "S", "D", "M"]], - "mortaring": null, - "mortars": null, - "mortared": null, - "mortar's": null, - "Morten": [["M"]], - "Morten's": null, - "mortgageable": null, - "mortgagee": [["S", "M"]], - "mortgagees": null, - "mortgagee's": null, - "mortgage": [["M", "G", "D", "S"]], - "mortgage's": null, - "mortgaging": null, - "mortgaged": null, - "mortgages": null, - "mortgagor": [["S", "M"]], - "mortgagors": null, - "mortgagor's": null, - "mortice's": null, - "mortician": [["S", "M"]], - "morticians": null, - "mortician's": null, - "Mortie": [["M"]], - "Mortie's": null, - "mortification": [["M"]], - "mortification's": null, - "mortified": [["Y"]], - "mortifiedly": null, - "mortifier": [["M"]], - "mortifier's": null, - "mortify": [["D", "R", "S", "X", "G", "N"]], - "mortifies": null, - "mortifications": null, - "mortifying": null, - "Mortimer": [["M"]], - "Mortimer's": null, - "mortise": [["M", "G", "S", "D"]], - "mortise's": null, - "mortising": null, - "mortises": null, - "mortised": null, - "Mort": [["M", "N"]], - "Mort's": null, - "Morton": [["M"]], - "Morton's": null, - "mortuary": [["M", "S"]], - "mortuary's": null, - "mortuaries": null, - "Morty": [["M"]], - "Morty's": null, - "Mosaic": null, - "mosaicked": null, - "mosaicking": null, - "mosaic": [["M", "S"]], - "mosaic's": null, - "mosaics": null, - "Moscone": [["M"]], - "Moscone's": null, - "Moscow": [["M"]], - "Moscow's": null, - "Moseley": [["M"]], - "Moseley's": null, - "Moselle": [["M"]], - "Moselle's": null, - "Mose": [["M", "S", "R"]], - "Mose's": null, - "Moses": null, - "Moser": [["M"]], - "Moser's": null, - "mosey": [["S", "G", "D"]], - "moseys": null, - "moseying": null, - "moseyed": null, - "Moshe": [["M"]], - "Moshe's": null, - "Moslem's": null, - "Mosley": [["M"]], - "Mosley's": null, - "mosque": [["S", "M"]], - "mosques": null, - "mosque's": null, - "mosquitoes": null, - "mosquito": [["M"]], - "mosquito's": null, - "moses": null, - "mossback": [["M", "S"]], - "mossback's": null, - "mossbacks": null, - "Mossberg": [["M"]], - "Mossberg's": null, - "Moss": [["M"]], - "Moss's": null, - "moss": [["S", "D", "M", "G"]], - "mosses": null, - "mossed": null, - "moss's": null, - "mossing": null, - "mossy": [["S", "R", "T"]], - "mossies": null, - "mossier": null, - "mossiest": null, - "most": [["S", "Y"]], - "mosts": null, - "mostly": null, - "Mosul": [["M"]], - "Mosul's": null, - "mote": [["A", "S", "C", "N", "K"]], - "remote": [["R", "P", "T", "Y"]], - "remotes": null, - "remotion": null, - "motes": null, - "demotes": null, - "promotes": null, - "demotion": null, - "motion": [["G", "R", "D", "M", "S"]], - "promotion": null, - "promote": [["G", "V", "Z", "B", "D", "R"]], - "motel": [["M", "S"]], - "motel's": null, - "motels": null, - "mote's": null, - "motet": [["S", "M"]], - "motets": null, - "motet's": null, - "mothball": [["D", "M", "G", "S"]], - "mothballed": null, - "mothball's": null, - "mothballing": null, - "mothballs": null, - "motherboard": [["M", "S"]], - "motherboard's": null, - "motherboards": null, - "motherfucker": [["M", "S", "!"]], - "motherfucker's": null, - "motherfuckers": null, - "motherfucking": [["!"]], - "motherhood": [["S", "M"]], - "motherhoods": null, - "motherhood's": null, - "mothering": [["M"]], - "mothering's": null, - "motherland": [["S", "M"]], - "motherlands": null, - "motherland's": null, - "motherless": null, - "motherliness": [["M", "S"]], - "motherliness's": null, - "motherlinesses": null, - "motherly": [["P"]], - "mother": [["R", "D", "Y", "M", "Z", "G"]], - "motherer": null, - "mothered": null, - "mother's": null, - "motherers": null, - "moths": null, - "moth": [["Z", "M", "R"]], - "mothers": null, - "moth's": null, - "motif": [["M", "S"]], - "motif's": null, - "motifs": null, - "motile": [["S"]], - "motiles": null, - "motility": [["M", "S"]], - "motility's": null, - "motilities": null, - "motional": [["K"]], - "promotional": null, - "motioner": [["M"]], - "motioner's": null, - "motioning": null, - "motioned": null, - "motion's": [["A", "C", "K"]], - "motions": [["K"]], - "motionlessness": [["S"]], - "motionlessnesses": null, - "motionless": [["Y", "P"]], - "motionlessly": null, - "remotion's": null, - "demotion's": null, - "promotion's": null, - "promotions": null, - "motivated": [["U"]], - "unmotivated": null, - "motivate": [["X", "D", "S", "N", "G", "V"]], - "motivations": null, - "motivates": null, - "motivation": [["M"]], - "motivating": null, - "motivative": null, - "motivational": [["Y"]], - "motivationally": null, - "motivation's": null, - "motivator": [["S"]], - "motivators": null, - "motiveless": null, - "motive": [["M", "G", "S", "D"]], - "motive's": null, - "motiving": null, - "motives": null, - "motived": null, - "motley": [["S"]], - "motleys": null, - "motlier": null, - "motliest": null, - "mot": [["M", "S", "V"]], - "mot's": null, - "mots": null, - "motocross": [["S", "M"]], - "motocrosses": null, - "motocross's": null, - "motorbike": [["S", "D", "G", "M"]], - "motorbikes": null, - "motorbiked": null, - "motorbiking": null, - "motorbike's": null, - "motorboat": [["M", "S"]], - "motorboat's": null, - "motorboats": null, - "motorcade": [["M", "S", "D", "G"]], - "motorcade's": null, - "motorcades": null, - "motorcaded": null, - "motorcading": null, - "motorcar": [["M", "S"]], - "motorcar's": null, - "motorcars": null, - "motorcycle": [["G", "M", "D", "S"]], - "motorcycling": null, - "motorcycle's": null, - "motorcycled": null, - "motorcycles": null, - "motorcyclist": [["S", "M"]], - "motorcyclists": null, - "motorcyclist's": null, - "motor": [["D", "M", "S", "G"]], - "motored": null, - "motor's": null, - "motors": null, - "motoring": [["M"]], - "motoring's": null, - "motorist": [["S", "M"]], - "motorists": null, - "motorist's": null, - "motorization": [["S", "M"]], - "motorizations": null, - "motorization's": null, - "motorize": [["D", "S", "G"]], - "motorized": [["U"]], - "motorizes": null, - "motorizing": null, - "unmotorized": null, - "motorman": [["M"]], - "motorman's": null, - "motormen": null, - "motormouth": null, - "motormouths": null, - "Motorola": [["M"]], - "Motorola's": null, - "motorway": [["S", "M"]], - "motorways": null, - "motorway's": null, - "Motown": [["M"]], - "Motown's": null, - "mottle": [["G", "S", "R", "D"]], - "mottling": null, - "mottles": null, - "mottler": [["M"]], - "mottled": null, - "mottler's": null, - "Mott": [["M"]], - "Mott's": null, - "mottoes": null, - "motto": [["M"]], - "motto's": null, - "moue": [["D", "S", "M", "G"]], - "moued": null, - "moues": null, - "moue's": null, - "mouing": null, - "moulder": [["D", "S", "G"]], - "mouldered": null, - "moulders": null, - "mouldering": null, - "moult": [["G", "S", "D"]], - "moulting": null, - "moults": null, - "moulted": null, - "mound": [["G", "M", "D", "S"]], - "mounding": null, - "mound's": null, - "mounded": null, - "mounds": null, - "mountable": null, - "mountaineering": [["M"]], - "mountaineering's": null, - "mountaineer": [["J", "M", "D", "S", "G"]], - "mountaineerings": null, - "mountaineer's": null, - "mountaineered": null, - "mountaineers": null, - "mountainousness": [["M"]], - "mountainousness's": null, - "mountainous": [["P", "Y"]], - "mountainously": null, - "mountainside": [["M", "S"]], - "mountainside's": null, - "mountainsides": null, - "mountain": [["S", "M"]], - "mountains": null, - "mountain's": null, - "mountaintop": [["S", "M"]], - "mountaintops": null, - "mountaintop's": null, - "Mountbatten": [["M"]], - "Mountbatten's": null, - "mountebank": [["S", "G", "M", "D"]], - "mountebanks": null, - "mountebanking": null, - "mountebank's": null, - "mountebanked": null, - "mounted": [["U"]], - "unmounted": null, - "mount": [["E", "G", "A", "C", "D"]], - "dismount": null, - "dismounting": null, - "dismounted": null, - "mounting": [["M", "S"]], - "remounting": null, - "demounting": null, - "remount": null, - "remounted": null, - "demounted": null, - "mounter": [["S", "M"]], - "mounters": null, - "mounter's": null, - "mounties": null, - "Mountie": [["S", "M"]], - "Mounties": null, - "Mountie's": null, - "mounting's": null, - "mountings": null, - "Mount": [["M"]], - "Mount's": null, - "mounts": [["A", "E"]], - "remounts": null, - "dismounts": null, - "mourner": [["M"]], - "mourner's": null, - "mournfuller": null, - "mournfullest": null, - "mournfulness": [["S"]], - "mournfulnesses": null, - "mournful": [["Y", "P"]], - "mournfully": null, - "mourning": [["M"]], - "mourning's": null, - "mourn": [["Z", "G", "S", "J", "R", "D"]], - "mourners": null, - "mourns": null, - "mournings": null, - "mourned": null, - "mouser": [["M"]], - "mouser's": null, - "mouse": [["S", "R", "D", "G", "M", "Z"]], - "mouses": null, - "moused": null, - "mousing": [["M"]], - "mouse's": null, - "mousers": null, - "mousetrapped": null, - "mousetrapping": null, - "mousetrap": [["S", "M"]], - "mousetraps": null, - "mousetrap's": null, - "mousiness": [["M", "S"]], - "mousiness's": null, - "mousinesses": null, - "mousing's": null, - "mousse": [["M", "G", "S", "D"]], - "mousse's": null, - "moussing": null, - "mousses": null, - "moussed": null, - "Moussorgsky": [["M"]], - "Moussorgsky's": null, - "mousy": [["P", "R", "T"]], - "mousier": null, - "mousiest": null, - "Mouthe": [["M"]], - "Mouthe's": null, - "mouthful": [["M", "S"]], - "mouthful's": null, - "mouthfuls": null, - "mouthiness": [["S", "M"]], - "mouthinesses": null, - "mouthiness's": null, - "mouth": [["M", "S", "R", "D", "G"]], - "mouth's": null, - "mouthes": null, - "mouther": null, - "mouthed": null, - "mouthing": null, - "mouthorgan": null, - "mouthpiece": [["S", "M"]], - "mouthpieces": null, - "mouthpiece's": null, - "mouths": null, - "mouthwash": [["S", "M"]], - "mouthwashes": null, - "mouthwash's": null, - "mouthwatering": null, - "mouthy": [["P", "T", "R"]], - "mouthiest": null, - "mouthier": null, - "Mouton": [["M"]], - "Mouton's": null, - "mouton": [["S", "M"]], - "moutons": null, - "mouton's": null, - "movable": [["A", "S", "P"]], - "removable": null, - "removables": null, - "removableness": null, - "movables": null, - "movableness": [["A", "M"]], - "removableness's": null, - "movableness's": null, - "move": [["A", "R", "S", "D", "G", "Z", "B"]], - "remove": null, - "remover": null, - "removes": null, - "removed": null, - "removing": null, - "removers": null, - "mover": [["A", "M"]], - "moves": null, - "moved": [["U"]], - "moving": [["Y", "S"]], - "movers": null, - "unmoved": null, - "movement": [["S", "M"]], - "movements": null, - "movement's": null, - "remover's": null, - "mover's": null, - "moviegoer": [["S"]], - "moviegoers": null, - "movie": [["S", "M"]], - "movies": null, - "movie's": null, - "movingly": null, - "movings": null, - "mower": [["M"]], - "mower's": null, - "Mowgli": [["M"]], - "Mowgli's": null, - "mowing": [["M"]], - "mowing's": null, - "mow": [["S", "D", "R", "Z", "G"]], - "mows": null, - "mowed": null, - "mowers": null, - "moxie": [["M", "S"]], - "moxie's": null, - "moxies": null, - "Moyer": [["M"]], - "Moyer's": null, - "Moyna": [["M"]], - "Moyna's": null, - "Moyra": [["M"]], - "Moyra's": null, - "Mozambican": [["S"]], - "Mozambicans": null, - "Mozambique": [["M"]], - "Mozambique's": null, - "Mozart": [["M"]], - "Mozart's": null, - "Mozelle": [["M"]], - "Mozelle's": null, - "Mozes": [["M"]], - "Mozes's": null, - "Mozilla": [["M"]], - "Mozilla's": null, - "mozzarella": [["M", "S"]], - "mozzarella's": null, - "mozzarellas": null, - "mp": null, - "MP": null, - "mpg": null, - "mph": null, - "MPH": null, - "MRI": null, - "Mr": [["M"]], - "Mr's": null, - "Mrs": null, - "M's": null, - "MS": null, - "MSG": null, - "Msgr": [["M"]], - "Msgr's": null, - "m's": [["K"]], - "prom's": null, - "Ms": [["S"]], - "Mses": null, - "MST": null, - "MSW": null, - "mt": null, - "MT": null, - "mtg": null, - "mtge": null, - "Mt": [["M"]], - "Mt's": null, - "MTS": null, - "MTV": null, - "Muawiya": [["M"]], - "Muawiya's": null, - "Mubarak": [["M"]], - "Mubarak's": null, - "muchness": [["M"]], - "muchness's": null, - "much": [["S", "P"]], - "muches": null, - "mucilage": [["M", "S"]], - "mucilage's": null, - "mucilages": null, - "mucilaginous": null, - "mucker": [["M"]], - "mucker's": null, - "muck": [["G", "R", "D", "M", "S"]], - "mucking": null, - "mucked": null, - "muck's": null, - "mucks": null, - "muckraker": [["M"]], - "muckraker's": null, - "muckrake": [["Z", "M", "D", "R", "S", "G"]], - "muckrakers": null, - "muckrake's": null, - "muckraked": null, - "muckrakes": null, - "muckraking": null, - "mucky": [["R", "T"]], - "muckier": null, - "muckiest": null, - "mucosa": [["M"]], - "mucosa's": null, - "mucous": null, - "mucus": [["S", "M"]], - "mucuses": null, - "mucus's": null, - "mudded": null, - "muddily": null, - "muddiness": [["S", "M"]], - "muddinesses": null, - "muddiness's": null, - "mudding": null, - "muddle": [["G", "R", "S", "D", "Z"]], - "muddling": null, - "muddler": [["M"]], - "muddles": null, - "muddled": null, - "muddlers": null, - "muddleheaded": [["P"]], - "muddleheadedness": null, - "muddlehead": [["S", "M", "D"]], - "muddleheads": null, - "muddlehead's": null, - "muddler's": null, - "muddy": [["T", "P", "G", "R", "S", "D"]], - "muddiest": null, - "muddying": null, - "muddier": null, - "muddies": null, - "muddied": null, - "mudflat": [["S"]], - "mudflats": null, - "mudguard": [["S", "M"]], - "mudguards": null, - "mudguard's": null, - "mudlarks": null, - "mud": [["M", "S"]], - "mud's": null, - "muds": null, - "mudroom": [["S"]], - "mudrooms": null, - "mudslide": [["S"]], - "mudslides": null, - "mudslinger": [["M"]], - "mudslinger's": null, - "mudslinging": [["M"]], - "mudslinging's": null, - "mudsling": [["J", "R", "G", "Z"]], - "mudslingings": null, - "mudslingers": null, - "Mueller": [["M"]], - "Mueller's": null, - "Muenster": null, - "muenster": [["M", "S"]], - "muenster's": null, - "muensters": null, - "muesli": [["M"]], - "muesli's": null, - "muezzin": [["M", "S"]], - "muezzin's": null, - "muezzins": null, - "muff": [["G", "D", "M", "S"]], - "muffing": null, - "muffed": null, - "muff's": null, - "muffs": null, - "Muffin": [["M"]], - "Muffin's": null, - "muffin": [["S", "M"]], - "muffins": null, - "muffin's": null, - "muffler": [["M"]], - "muffler's": null, - "muffle": [["Z", "R", "S", "D", "G"]], - "mufflers": null, - "muffles": null, - "muffled": null, - "muffling": null, - "Mufi": [["M"]], - "Mufi's": null, - "Mufinella": [["M"]], - "Mufinella's": null, - "mufti": [["M", "S"]], - "mufti's": null, - "muftis": null, - "Mugabe": [["M"]], - "Mugabe's": null, - "mugged": null, - "mugger": [["S", "M"]], - "muggers": null, - "mugger's": null, - "mugginess": [["S"]], - "mugginesses": null, - "mugging": [["S"]], - "muggings": null, - "muggy": [["R", "P", "T"]], - "muggier": null, - "muggiest": null, - "mugshot": [["S"]], - "mugshots": null, - "mug": [["S", "M"]], - "mugs": null, - "mug's": null, - "mugwump": [["M", "S"]], - "mugwump's": null, - "mugwumps": null, - "Muhammadanism": [["S"]], - "Muhammadanisms": null, - "Muhammadan": [["S", "M"]], - "Muhammadans": null, - "Muhammadan's": null, - "Muhammad": [["M"]], - "Muhammad's": null, - "Muire": [["M"]], - "Muire's": null, - "Muir": [["M"]], - "Muir's": null, - "Mukden": [["M"]], - "Mukden's": null, - "mukluk": [["S", "M"]], - "mukluks": null, - "mukluk's": null, - "mulattoes": null, - "mulatto": [["M"]], - "mulatto's": null, - "mulberry": [["M", "S"]], - "mulberry's": null, - "mulberries": null, - "mulch": [["G", "M", "S", "D"]], - "mulching": null, - "mulch's": null, - "mulches": null, - "mulched": null, - "mulct": [["S", "D", "G"]], - "mulcts": null, - "mulcted": null, - "mulcting": null, - "Mulder": [["M"]], - "Mulder's": null, - "mule": [["M", "G", "D", "S"]], - "mule's": null, - "muling": null, - "muled": null, - "mules": null, - "muleskinner": [["S"]], - "muleskinners": null, - "muleteer": [["M", "S"]], - "muleteer's": null, - "muleteers": null, - "mulishness": [["M", "S"]], - "mulishness's": null, - "mulishnesses": null, - "mulish": [["Y", "P"]], - "mulishly": null, - "mullah": [["M"]], - "mullah's": null, - "mullahs": null, - "mullein": [["M", "S"]], - "mullein's": null, - "mulleins": null, - "Mullen": [["M"]], - "Mullen's": null, - "muller": [["M"]], - "muller's": null, - "Muller": [["M"]], - "Muller's": null, - "mullet": [["M", "S"]], - "mullet's": null, - "mullets": null, - "Mulligan": [["M"]], - "Mulligan's": null, - "mulligan": [["S", "M"]], - "mulligans": null, - "mulligan's": null, - "mulligatawny": [["S", "M"]], - "mulligatawnies": null, - "mulligatawny's": null, - "Mullikan": [["M"]], - "Mullikan's": null, - "Mullins": null, - "mullion": [["M", "D", "S", "G"]], - "mullion's": null, - "mullioned": null, - "mullions": null, - "mullioning": null, - "mull": [["R", "D", "S", "G"]], - "mulled": null, - "mulls": null, - "mulling": null, - "Multan": [["M"]], - "Multan's": null, - "multi": null, - "Multibus": [["M"]], - "Multibus's": null, - "multicellular": null, - "multichannel": [["M"]], - "multichannel's": null, - "multicollinearity": [["M"]], - "multicollinearity's": null, - "multicolor": [["S", "D", "M"]], - "multicolors": null, - "multicolored": null, - "multicolor's": null, - "multicolumn": null, - "multicomponent": null, - "multicomputer": [["M", "S"]], - "multicomputer's": null, - "multicomputers": null, - "Multics": [["M"]], - "Multics's": null, - "MULTICS": [["M"]], - "MULTICS's": null, - "multicultural": null, - "multiculturalism": [["S"]], - "multiculturalisms": null, - "multidimensional": null, - "multidimensionality": null, - "multidisciplinary": null, - "multifaceted": null, - "multifamily": null, - "multifariousness": [["S", "M"]], - "multifariousnesses": null, - "multifariousness's": null, - "multifarious": [["Y", "P"]], - "multifariously": null, - "multifigure": null, - "multiform": null, - "multifunction": [["D"]], - "multifunctioned": null, - "multilateral": [["Y"]], - "multilaterally": null, - "multilayer": null, - "multilevel": [["D"]], - "multileveled": null, - "multilingual": null, - "multilingualism": [["S"]], - "multilingualisms": null, - "multimedia": [["S"]], - "multimedias": null, - "multimegaton": [["M"]], - "multimegaton's": null, - "multimeter": [["M"]], - "multimeter's": null, - "multimillionaire": [["S", "M"]], - "multimillionaires": null, - "multimillionaire's": null, - "multinational": [["S"]], - "multinationals": null, - "multinomial": [["M"]], - "multinomial's": null, - "multiphase": null, - "multiple": [["S", "M"]], - "multiples": null, - "multiple's": null, - "multiplet": [["S", "M"]], - "multiplets": null, - "multiplet's": null, - "multiplex": [["G", "Z", "M", "S", "R", "D"]], - "multiplexing": null, - "multiplexers": null, - "multiplex's": null, - "multiplexes": null, - "multiplexer": null, - "multiplexed": null, - "multiplexor's": null, - "multipliable": null, - "multiplicand": [["S", "M"]], - "multiplicands": null, - "multiplicand's": null, - "multiplication": [["M"]], - "multiplication's": null, - "multiplicative": [["Y", "S"]], - "multiplicatively": null, - "multiplicatives": null, - "multiplicity": [["M", "S"]], - "multiplicity's": null, - "multiplicities": null, - "multiplier": [["M"]], - "multiplier's": null, - "multiply": [["Z", "N", "S", "R", "D", "X", "G"]], - "multipliers": null, - "multiplies": null, - "multiplied": null, - "multiplications": null, - "multiplying": null, - "multiprocess": [["G"]], - "multiprocessing": null, - "multiprocessor": [["M", "S"]], - "multiprocessor's": null, - "multiprocessors": null, - "multiprogram": null, - "multiprogrammed": null, - "multiprogramming": [["M", "S"]], - "multiprogramming's": null, - "multiprogrammings": null, - "multipurpose": null, - "multiracial": null, - "multistage": null, - "multistory": [["S"]], - "multistories": null, - "multisyllabic": null, - "multitasking": [["S"]], - "multitaskings": null, - "multitude": [["M", "S"]], - "multitude's": null, - "multitudes": null, - "multitudinousness": [["M"]], - "multitudinousness's": null, - "multitudinous": [["Y", "P"]], - "multitudinously": null, - "multiuser": null, - "multivalent": null, - "multivalued": null, - "multivariate": null, - "multiversity": [["M"]], - "multiversity's": null, - "multivitamin": [["S"]], - "multivitamins": null, - "mu": [["M"]], - "mu's": null, - "mumbler": [["M"]], - "mumbler's": null, - "mumbletypeg": [["S"]], - "mumbletypegs": null, - "mumble": [["Z", "J", "G", "R", "S", "D"]], - "mumblers": null, - "mumblings": null, - "mumbling": null, - "mumbles": null, - "mumbled": null, - "Mumford": [["M"]], - "Mumford's": null, - "mummed": null, - "mummer": [["S", "M"]], - "mummers": null, - "mummer's": null, - "mummery": [["M", "S"]], - "mummery's": null, - "mummeries": null, - "mummification": [["M"]], - "mummification's": null, - "mummify": [["X", "S", "D", "G", "N"]], - "mummifications": null, - "mummifies": null, - "mummified": null, - "mummifying": null, - "mumming": null, - "mum": [["M", "S"]], - "mum's": null, - "mums": null, - "mummy": [["G", "S", "D", "M"]], - "mummying": null, - "mummies": null, - "mummied": null, - "mummy's": null, - "mumps": [["M"]], - "mumps's": null, - "muncher": [["M"]], - "muncher's": null, - "M�nchhausen": [["M"]], - "M�nchhausen's": null, - "munchies": null, - "Munch": [["M"]], - "Munch's": null, - "munch": [["Z", "R", "S", "D", "G"]], - "munchers": null, - "munches": null, - "munched": null, - "munching": null, - "Muncie": [["M"]], - "Muncie's": null, - "mundane": [["Y", "S", "P"]], - "mundanely": null, - "mundanes": null, - "mundaneness": null, - "Mundt": [["M"]], - "Mundt's": null, - "munge": [["J", "G", "Z", "S", "R", "D"]], - "mungings": null, - "munging": null, - "mungers": null, - "munges": null, - "munger": null, - "munged": null, - "Munich": [["M"]], - "Munich's": null, - "municipality": [["S", "M"]], - "municipalities": null, - "municipality's": null, - "municipal": [["Y", "S"]], - "municipally": null, - "municipals": null, - "munificence": [["M", "S"]], - "munificence's": null, - "munificences": null, - "munificent": [["Y"]], - "munificently": null, - "munition": [["S", "D", "G"]], - "munitions": null, - "munitioned": null, - "munitioning": null, - "Munmro": [["M"]], - "Munmro's": null, - "Munoz": [["M"]], - "Munoz's": null, - "Munroe": [["M"]], - "Munroe's": null, - "Munro": [["M"]], - "Munro's": null, - "mun": [["S"]], - "muns": null, - "Munsey": [["M"]], - "Munsey's": null, - "Munson": [["M"]], - "Munson's": null, - "Munster": [["M", "S"]], - "Munster's": null, - "Munsters": null, - "Muong": [["M"]], - "Muong's": null, - "muon": [["M"]], - "muon's": null, - "Muppet": [["M"]], - "Muppet's": null, - "muralist": [["S", "M"]], - "muralists": null, - "muralist's": null, - "mural": [["S", "M"]], - "murals": null, - "mural's": null, - "Murasaki": [["M"]], - "Murasaki's": null, - "Murat": [["M"]], - "Murat's": null, - "Murchison": [["M"]], - "Murchison's": null, - "Murcia": [["M"]], - "Murcia's": null, - "murderer": [["M"]], - "murderer's": null, - "murderess": [["S"]], - "murderesses": null, - "murder": [["G", "Z", "R", "D", "M", "S"]], - "murdering": null, - "murderers": null, - "murdered": null, - "murder's": null, - "murders": null, - "murderousness": [["M"]], - "murderousness's": null, - "murderous": [["Y", "P"]], - "murderously": null, - "Murdoch": [["M"]], - "Murdoch's": null, - "Murdock": [["M"]], - "Murdock's": null, - "Mureil": [["M"]], - "Mureil's": null, - "Murial": [["M"]], - "Murial's": null, - "muriatic": null, - "Murielle": [["M"]], - "Murielle's": null, - "Muriel": [["M"]], - "Muriel's": null, - "Murillo": [["M"]], - "Murillo's": null, - "murkily": null, - "murkiness": [["S"]], - "murkinesses": null, - "murk": [["T", "R", "M", "S"]], - "murkest": null, - "murker": null, - "murk's": null, - "murks": null, - "murky": [["R", "P", "T"]], - "murkier": null, - "murkiest": null, - "Murmansk": [["M"]], - "Murmansk's": null, - "murmurer": [["M"]], - "murmurer's": null, - "murmuring": [["U"]], - "unmurmuring": null, - "murmurous": null, - "murmur": [["R", "D", "M", "G", "Z", "S", "J"]], - "murmured": null, - "murmur's": null, - "murmurers": null, - "murmurs": null, - "murmurings": null, - "Murphy": [["M"]], - "Murphy's": null, - "murrain": [["S", "M"]], - "murrains": null, - "murrain's": null, - "Murray": [["M"]], - "Murray's": null, - "Murrow": [["M"]], - "Murrow's": null, - "Murrumbidgee": [["M"]], - "Murrumbidgee's": null, - "Murry": [["M"]], - "Murry's": null, - "Murvyn": [["M"]], - "Murvyn's": null, - "muscatel": [["M", "S"]], - "muscatel's": null, - "muscatels": null, - "Muscat": [["M"]], - "Muscat's": null, - "muscat": [["S", "M"]], - "muscats": null, - "muscat's": null, - "musclebound": null, - "muscle": [["S", "D", "M", "G"]], - "muscles": null, - "muscled": null, - "muscle's": null, - "muscling": null, - "Muscovite": [["M"]], - "Muscovite's": null, - "muscovite": [["M", "S"]], - "muscovite's": null, - "muscovites": null, - "Muscovy": [["M"]], - "Muscovy's": null, - "muscularity": [["S", "M"]], - "muscularities": null, - "muscularity's": null, - "muscular": [["Y"]], - "muscularly": null, - "musculature": [["S", "M"]], - "musculatures": null, - "musculature's": null, - "muse": null, - "Muse": [["M"]], - "Muse's": null, - "muser": [["M"]], - "muser's": null, - "musette": [["S", "M"]], - "musettes": null, - "musette's": null, - "museum": [["M", "S"]], - "museum's": null, - "museums": null, - "mus": [["G", "J", "D", "S", "R"]], - "musing": [["Y"]], - "musings": null, - "mused": null, - "muses": null, - "musher": [["M"]], - "musher's": null, - "mushiness": [["M", "S"]], - "mushiness's": null, - "mushinesses": null, - "mush": [["M", "S", "R", "D", "G"]], - "mush's": null, - "mushes": null, - "mushed": null, - "mushing": null, - "mushroom": [["D", "M", "S", "G"]], - "mushroomed": null, - "mushroom's": null, - "mushrooms": null, - "mushrooming": null, - "mushy": [["P", "T", "R"]], - "mushiest": null, - "mushier": null, - "Musial": [["M"]], - "Musial's": null, - "musicale": [["S", "M"]], - "musicales": null, - "musicale's": null, - "musicality": [["S", "M"]], - "musicalities": null, - "musicality's": null, - "musicals": null, - "musical": [["Y", "U"]], - "musically": null, - "unmusically": null, - "unmusical": null, - "musician": [["M", "Y", "S"]], - "musician's": null, - "musicianly": null, - "musicians": null, - "musicianship": [["M", "S"]], - "musicianship's": null, - "musicianships": null, - "musicked": null, - "musicking": null, - "musicological": null, - "musicologist": [["M", "S"]], - "musicologist's": null, - "musicologists": null, - "musicology": [["M", "S"]], - "musicology's": null, - "musicologies": null, - "music": [["S", "M"]], - "musics": null, - "music's": null, - "musingly": null, - "Muskegon": [["M"]], - "Muskegon's": null, - "muskeg": [["S", "M"]], - "muskegs": null, - "muskeg's": null, - "muskellunge": [["S", "M"]], - "muskellunges": null, - "muskellunge's": null, - "musketeer": [["M", "S"]], - "musketeer's": null, - "musketeers": null, - "musketry": [["M", "S"]], - "musketry's": null, - "musketries": null, - "musket": [["S", "M"]], - "muskets": null, - "musket's": null, - "musk": [["G", "D", "M", "S"]], - "musking": null, - "musked": null, - "musk's": null, - "musks": null, - "muskie": [["M"]], - "muskie's": null, - "muskiness": [["M", "S"]], - "muskiness's": null, - "muskinesses": null, - "muskmelon": [["M", "S"]], - "muskmelon's": null, - "muskmelons": null, - "muskox": [["N"]], - "muskoxen": null, - "muskrat": [["M", "S"]], - "muskrat's": null, - "muskrats": null, - "musky": [["R", "S", "P", "T"]], - "muskier": null, - "muskies": null, - "muskiest": null, - "Muslim": [["M", "S"]], - "Muslim's": null, - "Muslims": null, - "muslin": [["M", "S"]], - "muslin's": null, - "muslins": null, - "mussel": [["M", "S"]], - "mussel's": null, - "mussels": null, - "Mussolini": [["M", "S"]], - "Mussolini's": null, - "Mussolinis": null, - "Mussorgsky": [["M"]], - "Mussorgsky's": null, - "muss": [["S", "D", "G"]], - "musses": null, - "mussed": null, - "mussing": null, - "mussy": [["R", "T"]], - "mussier": null, - "mussiest": null, - "mustache": [["D", "S", "M"]], - "mustached": null, - "mustaches": null, - "mustache's": null, - "mustachio": [["M", "D", "S"]], - "mustachio's": null, - "mustachioed": null, - "mustachios": null, - "mustang": [["M", "S"]], - "mustang's": null, - "mustangs": null, - "mustard": [["M", "S"]], - "mustard's": null, - "mustards": null, - "muster": [["G", "D"]], - "mustering": null, - "mustered": null, - "mustily": null, - "mustiness": [["M", "S"]], - "mustiness's": null, - "mustinesses": null, - "mustn't": null, - "must": [["R", "D", "G", "Z", "S"]], - "musted": null, - "musting": null, - "musters": null, - "musts": null, - "must've": null, - "musty": [["R", "P", "T"]], - "mustier": null, - "mustiest": null, - "mutability": [["S", "M"]], - "mutabilities": null, - "mutability's": null, - "mutableness": [["M"]], - "mutableness's": null, - "mutable": [["P"]], - "mutably": null, - "mutagen": [["S", "M"]], - "mutagens": null, - "mutagen's": null, - "mutant": [["M", "S"]], - "mutant's": null, - "mutants": null, - "mutate": [["X", "V", "N", "G", "S", "D"]], - "mutations": null, - "mutative": null, - "mutation": [["M"]], - "mutating": null, - "mutates": null, - "mutated": null, - "mutational": [["Y"]], - "mutationally": null, - "mutation's": null, - "mutator": [["S"]], - "mutators": null, - "muted": [["Y"]], - "mutedly": null, - "muteness": [["S"]], - "mutenesses": null, - "mute": [["P", "D", "S", "R", "B", "Y", "T", "G"]], - "mutes": null, - "muter": null, - "mutely": null, - "mutest": null, - "muting": null, - "mutilate": [["X", "D", "S", "N", "G"]], - "mutilations": null, - "mutilated": null, - "mutilates": null, - "mutilation": [["M"]], - "mutilating": null, - "mutilation's": null, - "mutilator": [["M", "S"]], - "mutilator's": null, - "mutilators": null, - "mutineer": [["S", "M", "D", "G"]], - "mutineers": null, - "mutineer's": null, - "mutineered": null, - "mutineering": null, - "mutinous": [["Y"]], - "mutinously": null, - "mutiny": [["M", "G", "S", "D"]], - "mutiny's": null, - "mutinying": null, - "mutinies": null, - "mutinied": null, - "Mutsuhito": [["M"]], - "Mutsuhito's": null, - "mutterer": [["M"]], - "mutterer's": null, - "mutter": [["G", "Z", "R", "D", "J"]], - "muttering": null, - "mutterers": null, - "muttered": null, - "mutterings": null, - "muttonchops": null, - "mutton": [["S", "M"]], - "muttons": null, - "mutton's": null, - "mutt": [["Z", "S", "M", "R"]], - "mutters": null, - "mutts": null, - "mutt's": null, - "mutuality": [["S"]], - "mutualities": null, - "mutual": [["S", "Y"]], - "mutuals": null, - "mutually": null, - "muumuu": [["M", "S"]], - "muumuu's": null, - "muumuus": null, - "muzak": null, - "Muzak": [["S", "M"]], - "Muzaks": null, - "Muzak's": null, - "Muzo": [["M"]], - "Muzo's": null, - "muzzled": [["U"]], - "unmuzzled": null, - "muzzle": [["M", "G", "R", "S", "D"]], - "muzzle's": null, - "muzzling": null, - "muzzler": [["M"]], - "muzzles": null, - "muzzler's": null, - "MVP": null, - "MW": null, - "Myanmar": null, - "Mycah": [["M"]], - "Mycah's": null, - "Myca": [["M"]], - "Myca's": null, - "Mycenaean": null, - "Mycenae": [["M"]], - "Mycenae's": null, - "Mychal": [["M"]], - "Mychal's": null, - "mycologist": [["M", "S"]], - "mycologist's": null, - "mycologists": null, - "mycology": [["M", "S"]], - "mycology's": null, - "mycologies": null, - "myelitides": null, - "myelitis": [["M"]], - "myelitis's": null, - "Myer": [["M", "S"]], - "Myer's": null, - "Myers": null, - "myers": null, - "mylar": null, - "Mylar": [["S"]], - "Mylars": null, - "Myles": [["M"]], - "Myles's": null, - "Mylo": [["M"]], - "Mylo's": null, - "My": [["M"]], - "My's": null, - "myna": [["S", "M"]], - "mynas": null, - "myna's": null, - "Mynheer": [["M"]], - "Mynheer's": null, - "myocardial": null, - "myocardium": [["M"]], - "myocardium's": null, - "myopia": [["M", "S"]], - "myopia's": null, - "myopias": null, - "myopically": null, - "myopic": [["S"]], - "myopics": null, - "Myrah": [["M"]], - "Myrah's": null, - "Myra": [["M"]], - "Myra's": null, - "Myranda": [["M"]], - "Myranda's": null, - "Myrdal": [["M"]], - "Myrdal's": null, - "myriad": [["S"]], - "myriads": null, - "Myriam": [["M"]], - "Myriam's": null, - "Myrilla": [["M"]], - "Myrilla's": null, - "Myrle": [["M"]], - "Myrle's": null, - "Myrlene": [["M"]], - "Myrlene's": null, - "myrmidon": [["S"]], - "myrmidons": null, - "Myrna": [["M"]], - "Myrna's": null, - "Myron": [["M"]], - "Myron's": null, - "myrrh": [["M"]], - "myrrh's": null, - "myrrhs": null, - "Myrta": [["M"]], - "Myrta's": null, - "Myrtia": [["M"]], - "Myrtia's": null, - "Myrtice": [["M"]], - "Myrtice's": null, - "Myrtie": [["M"]], - "Myrtie's": null, - "Myrtle": [["M"]], - "Myrtle's": null, - "myrtle": [["S", "M"]], - "myrtles": null, - "myrtle's": null, - "Myrvyn": [["M"]], - "Myrvyn's": null, - "Myrwyn": [["M"]], - "Myrwyn's": null, - "mys": null, - "my": [["S"]], - "mies": null, - "myself": null, - "Mysore": [["M"]], - "Mysore's": null, - "mysteriousness": [["M", "S"]], - "mysteriousness's": null, - "mysteriousnesses": null, - "mysterious": [["Y", "P"]], - "mysteriously": null, - "mystery": [["M", "D", "S", "G"]], - "mystery's": null, - "mysteried": null, - "mysteries": null, - "mysterying": null, - "mystical": [["Y"]], - "mystically": null, - "mysticism": [["M", "S"]], - "mysticism's": null, - "mysticisms": null, - "mystic": [["S", "M"]], - "mystics": null, - "mystic's": null, - "mystification": [["M"]], - "mystification's": null, - "mystifier": [["M"]], - "mystifier's": null, - "mystify": [["C", "S", "D", "G", "N", "X"]], - "demystify": null, - "demystifies": null, - "demystified": null, - "demystifying": null, - "demystification": null, - "demystifications": null, - "mystifies": null, - "mystified": null, - "mystifying": [["Y"]], - "mystifications": null, - "mystifyingly": null, - "mystique": [["M", "S"]], - "mystique's": null, - "mystiques": null, - "Myst": [["M"]], - "Myst's": null, - "mythic": null, - "mythical": [["Y"]], - "mythically": null, - "myth": [["M", "S"]], - "myth's": null, - "mythes": null, - "mythographer": [["S", "M"]], - "mythographers": null, - "mythographer's": null, - "mythography": [["M"]], - "mythography's": null, - "mythological": [["Y"]], - "mythologically": null, - "mythologist": [["M", "S"]], - "mythologist's": null, - "mythologists": null, - "mythologize": [["C", "S", "D", "G"]], - "demythologizes": null, - "demythologized": null, - "demythologizing": null, - "mythologizes": null, - "mythologized": null, - "mythologizing": null, - "mythology": [["S", "M"]], - "mythologies": null, - "mythology's": null, - "myths": null, - "N": null, - "NAACP": null, - "nabbed": null, - "nabbing": null, - "Nabisco": [["M"]], - "Nabisco's": null, - "nabob": [["S", "M"]], - "nabobs": null, - "nabob's": null, - "Nabokov": [["M"]], - "Nabokov's": null, - "nab": [["S"]], - "nabs": null, - "nacelle": [["S", "M"]], - "nacelles": null, - "nacelle's": null, - "nacho": [["S"]], - "nachos": null, - "NaCl": [["M"]], - "NaCl's": null, - "nacre": [["M", "S"]], - "nacre's": null, - "nacres": null, - "nacreous": null, - "Nada": [["M"]], - "Nada's": null, - "Nadean": [["M"]], - "Nadean's": null, - "Nadeen": [["M"]], - "Nadeen's": null, - "Nader": [["M"]], - "Nader's": null, - "Nadia": [["M"]], - "Nadia's": null, - "Nadine": [["M"]], - "Nadine's": null, - "nadir": [["S", "M"]], - "nadirs": null, - "nadir's": null, - "Nadiya": [["M"]], - "Nadiya's": null, - "Nadya": [["M"]], - "Nadya's": null, - "Nady": [["M"]], - "Nady's": null, - "nae": [["V", "M"]], - "naive": [["S", "R", "T", "Y", "P"]], - "nae's": null, - "Nagasaki": [["M"]], - "Nagasaki's": null, - "nagged": null, - "nagger": [["S"]], - "naggers": null, - "nagging": [["Y"]], - "naggingly": null, - "nag": [["M", "S"]], - "nag's": null, - "nags": null, - "Nagoya": [["M"]], - "Nagoya's": null, - "Nagpur": [["M"]], - "Nagpur's": null, - "Nagy": [["M"]], - "Nagy's": null, - "Nahuatl": [["S", "M"]], - "Nahuatls": null, - "Nahuatl's": null, - "Nahum": [["M"]], - "Nahum's": null, - "naiad": [["S", "M"]], - "naiads": null, - "naiad's": null, - "naifs": null, - "nailbrush": [["S", "M"]], - "nailbrushes": null, - "nailbrush's": null, - "nailer": [["M"]], - "nailer's": null, - "nail": [["S", "G", "M", "R", "D"]], - "nails": null, - "nailing": null, - "nail's": null, - "nailed": null, - "Naipaul": [["M"]], - "Naipaul's": null, - "Nair": [["M"]], - "Nair's": null, - "Nairobi": [["M"]], - "Nairobi's": null, - "Naismith": [["M"]], - "Naismith's": null, - "naives": null, - "naiver": null, - "naivest": null, - "naively": null, - "naiveness": null, - "naivet�": [["S", "M"]], - "naivet�s": null, - "naivet�'s": null, - "naivety": [["M", "S"]], - "naivety's": null, - "naiveties": null, - "Nakamura": [["M"]], - "Nakamura's": null, - "Nakayama": [["M"]], - "Nakayama's": null, - "nakedness": [["M", "S"]], - "nakedness's": null, - "nakednesses": null, - "naked": [["T", "Y", "R", "P"]], - "nakedest": null, - "nakedly": null, - "nakeder": null, - "Nakoma": [["M"]], - "Nakoma's": null, - "Nalani": [["M"]], - "Nalani's": null, - "Na": [["M"]], - "Na's": null, - "Namath": [["M"]], - "Namath's": null, - "nameable": [["U"]], - "unnameable": null, - "name": [["A", "D", "S", "G"]], - "rename": null, - "renamed": null, - "renames": null, - "renaming": null, - "named": [["U"]], - "names": null, - "naming": [["M"]], - "namedrop": null, - "namedropping": null, - "named's": null, - "unnamed": null, - "nameless": [["P", "Y"]], - "namelessness": null, - "namelessly": null, - "namely": null, - "nameplate": [["M", "S"]], - "nameplate's": null, - "nameplates": null, - "namer": [["S", "M"]], - "namers": null, - "namer's": null, - "name's": null, - "namesake": [["S", "M"]], - "namesakes": null, - "namesake's": null, - "Namibia": [["M"]], - "Namibia's": null, - "Namibian": [["S"]], - "Namibians": null, - "naming's": null, - "Nam": [["M"]], - "Nam's": null, - "Nanak": [["M"]], - "Nanak's": null, - "Nana": [["M"]], - "Nana's": null, - "Nananne": [["M"]], - "Nananne's": null, - "Nancee": [["M"]], - "Nancee's": null, - "Nance": [["M"]], - "Nance's": null, - "Nancey": [["M"]], - "Nancey's": null, - "Nanchang": [["M"]], - "Nanchang's": null, - "Nancie": [["M"]], - "Nancie's": null, - "Nanci": [["M"]], - "Nanci's": null, - "Nancy": [["M"]], - "Nancy's": null, - "Nanete": [["M"]], - "Nanete's": null, - "Nanette": [["M"]], - "Nanette's": null, - "Nanice": [["M"]], - "Nanice's": null, - "Nani": [["M"]], - "Nani's": null, - "Nanine": [["M"]], - "Nanine's": null, - "Nanjing": null, - "Nanking's": null, - "Nan": [["M"]], - "Nan's": null, - "Nannette": [["M"]], - "Nannette's": null, - "Nannie": [["M"]], - "Nannie's": null, - "Nanni": [["M"]], - "Nanni's": null, - "Nanny": [["M"]], - "Nanny's": null, - "nanny": [["S", "D", "M", "G"]], - "nannies": null, - "nannied": null, - "nanny's": null, - "nannying": null, - "nanometer": [["M", "S"]], - "nanometer's": null, - "nanometers": null, - "Nanon": [["M"]], - "Nanon's": null, - "Nanook": [["M"]], - "Nanook's": null, - "nanosecond": [["S", "M"]], - "nanoseconds": null, - "nanosecond's": null, - "Nansen": [["M"]], - "Nansen's": null, - "Nantes": [["M"]], - "Nantes's": null, - "Nantucket": [["M"]], - "Nantucket's": null, - "Naoma": [["M"]], - "Naoma's": null, - "Naomi": [["M"]], - "Naomi's": null, - "napalm": [["M", "D", "G", "S"]], - "napalm's": null, - "napalmed": null, - "napalming": null, - "napalms": null, - "nape": [["S", "M"]], - "napes": null, - "nape's": null, - "Naphtali": [["M"]], - "Naphtali's": null, - "naphthalene": [["M", "S"]], - "naphthalene's": null, - "naphthalenes": null, - "naphtha": [["S", "M"]], - "naphthas": null, - "naphtha's": null, - "Napier": [["M"]], - "Napier's": null, - "napkin": [["S", "M"]], - "napkins": null, - "napkin's": null, - "Naples": [["M"]], - "Naples's": null, - "napless": null, - "Nap": [["M"]], - "Nap's": null, - "Napoleonic": null, - "napoleon": [["M", "S"]], - "napoleon's": null, - "napoleons": null, - "Napoleon": [["M", "S"]], - "Napoleon's": null, - "Napoleons": null, - "napped": null, - "napper": [["M", "S"]], - "napper's": null, - "nappers": null, - "Nappie": [["M"]], - "Nappie's": null, - "napping": null, - "Nappy": [["M"]], - "Nappy's": null, - "nappy": [["T", "R", "S", "M"]], - "nappiest": null, - "nappier": null, - "nappies": null, - "nappy's": null, - "nap": [["S", "M"]], - "naps": null, - "nap's": null, - "Nara": [["M"]], - "Nara's": null, - "Narbonne": [["M"]], - "Narbonne's": null, - "narc": [["D", "G", "S"]], - "narced": null, - "narcing": null, - "narcs": null, - "narcissism": [["M", "S"]], - "narcissism's": null, - "narcissisms": null, - "narcissistic": null, - "narcissist": [["M", "S"]], - "narcissist's": null, - "narcissists": null, - "narcissus": [["M"]], - "narcissus's": null, - "Narcissus": [["M"]], - "Narcissus's": null, - "narcoleptic": null, - "narcoses": null, - "narcosis": [["M"]], - "narcosis's": null, - "narcotic": [["S", "M"]], - "narcotics": null, - "narcotic's": null, - "narcotization": [["S"]], - "narcotizations": null, - "narcotize": [["G", "S", "D"]], - "narcotizing": null, - "narcotizes": null, - "narcotized": null, - "Nariko": [["M"]], - "Nariko's": null, - "Nari": [["M"]], - "Nari's": null, - "nark's": null, - "Narmada": [["M"]], - "Narmada's": null, - "Narragansett": [["M"]], - "Narragansett's": null, - "narrate": [["V", "G", "N", "S", "D", "X"]], - "narrative": [["M", "Y", "S"]], - "narrating": null, - "narration": [["M"]], - "narrates": null, - "narrated": null, - "narrations": null, - "narration's": null, - "narrative's": null, - "narratively": null, - "narratives": null, - "narratology": null, - "narrator": [["S", "M"]], - "narrators": null, - "narrator's": null, - "narrowing": [["P"]], - "narrowingness": null, - "narrowness": [["S", "M"]], - "narrownesses": null, - "narrowness's": null, - "narrow": [["R", "D", "Y", "T", "G", "P", "S"]], - "narrower": null, - "narrowed": null, - "narrowly": null, - "narrowest": null, - "narrows": null, - "narwhal": [["M", "S"]], - "narwhal's": null, - "narwhals": null, - "nary": null, - "nasality": [["M", "S"]], - "nasality's": null, - "nasalities": null, - "nasalization": [["M", "S"]], - "nasalization's": null, - "nasalizations": null, - "nasalize": [["G", "D", "S"]], - "nasalizing": null, - "nasalized": null, - "nasalizes": null, - "nasal": [["Y", "S"]], - "nasally": null, - "nasals": null, - "NASA": [["M", "S"]], - "NASA's": null, - "NASAs": null, - "nascence": [["A", "S", "M"]], - "renascence": null, - "renascences": null, - "renascence's": null, - "nascences": null, - "nascence's": null, - "nascent": [["A"]], - "renascent": null, - "NASDAQ": null, - "Nash": [["M"]], - "Nash's": null, - "Nashua": [["M"]], - "Nashua's": null, - "Nashville": [["M"]], - "Nashville's": null, - "Nassau": [["M"]], - "Nassau's": null, - "Nasser": [["M"]], - "Nasser's": null, - "nastily": null, - "nastiness": [["M", "S"]], - "nastiness's": null, - "nastinesses": null, - "nasturtium": [["S", "M"]], - "nasturtiums": null, - "nasturtium's": null, - "nasty": [["T", "R", "S", "P"]], - "nastiest": null, - "nastier": null, - "nasties": null, - "natal": null, - "Natala": [["M"]], - "Natala's": null, - "Natalee": [["M"]], - "Natalee's": null, - "Natale": [["M"]], - "Natale's": null, - "Natalia": [["M"]], - "Natalia's": null, - "Natalie": [["M"]], - "Natalie's": null, - "Natalina": [["M"]], - "Natalina's": null, - "Nataline": [["M"]], - "Nataline's": null, - "natalist": null, - "natality": [["M"]], - "natality's": null, - "Natal": [["M"]], - "Natal's": null, - "Natalya": [["M"]], - "Natalya's": null, - "Nata": [["M"]], - "Nata's": null, - "Nataniel": [["M"]], - "Nataniel's": null, - "Natasha": [["M"]], - "Natasha's": null, - "Natassia": [["M"]], - "Natassia's": null, - "Natchez": null, - "natch": [["S"]], - "natches": null, - "Nate": [["X", "M", "N"]], - "Nations": null, - "Nate's": null, - "Nation": null, - "Nathalia": [["M"]], - "Nathalia's": null, - "Nathalie": [["M"]], - "Nathalie's": null, - "Nathanael": [["M"]], - "Nathanael's": null, - "Nathanial": [["M"]], - "Nathanial's": null, - "Nathaniel": [["M"]], - "Nathaniel's": null, - "Nathanil": [["M"]], - "Nathanil's": null, - "Nathan": [["M", "S"]], - "Nathan's": null, - "Nathans": null, - "nationalism": [["S", "M"]], - "nationalisms": null, - "nationalism's": null, - "nationalistic": null, - "nationalistically": null, - "nationalist": [["M", "S"]], - "nationalist's": null, - "nationalists": null, - "nationality": [["M", "S"]], - "nationality's": null, - "nationalities": null, - "nationalization": [["M", "S"]], - "nationalization's": null, - "nationalizations": null, - "nationalize": [["C", "S", "D", "G"]], - "denationalize": null, - "denationalizes": null, - "denationalized": null, - "denationalizing": null, - "nationalizes": null, - "nationalized": [["A", "U"]], - "nationalizing": null, - "renationalized": null, - "unnationalized": null, - "nationalizer": [["S", "M"]], - "nationalizers": null, - "nationalizer's": null, - "national": [["Y", "S"]], - "nationally": null, - "nationals": null, - "nationhood": [["S", "M"]], - "nationhoods": null, - "nationhood's": null, - "nation": [["M", "S"]], - "nation's": null, - "nations": null, - "nationwide": null, - "nativeness": [["M"]], - "nativeness's": null, - "native": [["P", "Y", "S"]], - "natively": null, - "natives": null, - "Natividad": [["M"]], - "Natividad's": null, - "Nativity": [["M"]], - "Nativity's": null, - "nativity": [["M", "S"]], - "nativity's": null, - "nativities": null, - "Natka": [["M"]], - "Natka's": null, - "natl": null, - "Nat": [["M"]], - "Nat's": null, - "NATO": [["S", "M"]], - "NATOs": null, - "NATO's": null, - "natter": [["S", "G", "D"]], - "natters": null, - "nattering": null, - "nattered": null, - "nattily": null, - "nattiness": [["S", "M"]], - "nattinesses": null, - "nattiness's": null, - "Natty": [["M"]], - "Natty's": null, - "natty": [["T", "R", "P"]], - "nattiest": null, - "nattier": null, - "naturalism": [["M", "S"]], - "naturalism's": null, - "naturalisms": null, - "naturalistic": null, - "naturalist": [["M", "S"]], - "naturalist's": null, - "naturalists": null, - "naturalization": [["S", "M"]], - "naturalizations": null, - "naturalization's": null, - "naturalized": [["U"]], - "unnaturalized": null, - "naturalize": [["G", "S", "D"]], - "naturalizing": null, - "naturalizes": null, - "naturalness": [["U", "S"]], - "unnaturalness": [["M"]], - "unnaturalnesses": null, - "naturalnesses": null, - "natural": [["P", "U", "Y"]], - "unnatural": null, - "unnaturally": null, - "naturally": null, - "naturals": null, - "nature": [["A", "S", "D", "C", "G"]], - "renature": null, - "renatures": null, - "renatured": null, - "renaturing": null, - "natures": null, - "denatures": null, - "natured": null, - "denatured": null, - "denature": null, - "denaturing": null, - "naturing": null, - "nature's": null, - "naturist": null, - "Naugahyde": [["S"]], - "Naugahydes": null, - "naughtily": null, - "naughtiness": [["S", "M"]], - "naughtinesses": null, - "naughtiness's": null, - "naught": [["M", "S"]], - "naught's": null, - "naughts": null, - "naughty": [["T", "P", "R", "S"]], - "naughtiest": null, - "naughtier": null, - "naughties": null, - "Naur": [["M"]], - "Naur's": null, - "Nauru": [["M"]], - "Nauru's": null, - "nausea": [["S", "M"]], - "nauseas": null, - "nausea's": null, - "nauseate": [["D", "S", "G"]], - "nauseated": null, - "nauseates": null, - "nauseating": [["Y"]], - "nauseatingly": null, - "nauseousness": [["S", "M"]], - "nauseousnesses": null, - "nauseousness's": null, - "nauseous": [["P"]], - "nautical": [["Y"]], - "nautically": null, - "nautilus": [["M", "S"]], - "nautilus's": null, - "nautiluses": null, - "Navaho's": null, - "Navajoes": null, - "Navajo": [["S"]], - "Navajos": null, - "naval": [["Y"]], - "navally": null, - "Navarro": [["M"]], - "Navarro's": null, - "navel": [["M", "S"]], - "navel's": null, - "navels": null, - "nave": [["S", "M"]], - "naves": null, - "nave's": null, - "navigability": [["S", "M"]], - "navigabilities": null, - "navigability's": null, - "navigableness": [["M"]], - "navigableness's": null, - "navigable": [["P"]], - "navigate": [["D", "S", "X", "N", "G"]], - "navigated": null, - "navigates": null, - "navigations": null, - "navigation": [["M"]], - "navigating": null, - "navigational": null, - "navigation's": null, - "navigator": [["M", "S"]], - "navigator's": null, - "navigators": null, - "Navona": [["M"]], - "Navona's": null, - "Navratilova": [["M"]], - "Navratilova's": null, - "navvy": [["M"]], - "navvy's": null, - "Navy": [["S"]], - "Navies": null, - "navy": [["S", "M"]], - "navies": null, - "navy's": null, - "nay": [["M", "S"]], - "nay's": null, - "nays": null, - "naysayer": [["S"]], - "naysayers": null, - "Nazarene": [["M", "S"]], - "Nazarene's": null, - "Nazarenes": null, - "Nazareth": [["M"]], - "Nazareth's": null, - "Nazi": [["S", "M"]], - "Nazis": null, - "Nazi's": null, - "Nazism": [["S"]], - "Nazisms": null, - "NB": null, - "NBA": null, - "NBC": null, - "Nb": [["M"]], - "Nb's": null, - "NBS": null, - "NC": null, - "NCAA": null, - "NCC": null, - "NCO": null, - "NCR": null, - "ND": null, - "N'Djamena": null, - "Ndjamena": [["M"]], - "Ndjamena's": null, - "Nd": [["M"]], - "Nd's": null, - "Ne": null, - "NE": null, - "Neala": [["M"]], - "Neala's": null, - "Neale": [["M"]], - "Neale's": null, - "Neall": [["M"]], - "Neall's": null, - "Neal": [["M"]], - "Neal's": null, - "Nealon": [["M"]], - "Nealon's": null, - "Nealson": [["M"]], - "Nealson's": null, - "Nealy": [["M"]], - "Nealy's": null, - "Neanderthal": [["S"]], - "Neanderthals": null, - "neap": [["D", "G", "S"]], - "neaped": null, - "neaping": null, - "neaps": null, - "Neapolitan": [["S", "M"]], - "Neapolitans": null, - "Neapolitan's": null, - "nearby": null, - "nearly": [["R", "T"]], - "nearlier": null, - "nearliest": null, - "nearness": [["M", "S"]], - "nearness's": null, - "nearnesses": null, - "nearside": [["M"]], - "nearside's": null, - "nearsightedness": [["S"]], - "nearsightednesses": null, - "nearsighted": [["Y", "P"]], - "nearsightedly": null, - "near": [["T", "Y", "R", "D", "P", "S", "G"]], - "nearest": null, - "nearer": null, - "neared": null, - "nears": null, - "nearing": null, - "neaten": [["D", "G"]], - "neatened": null, - "neatening": null, - "neath": null, - "neatness": [["M", "S"]], - "neatness's": null, - "neatnesses": null, - "neat": [["Y", "R", "N", "T", "X", "P", "S"]], - "neatly": null, - "neater": null, - "neatest": null, - "neatens": null, - "neats": null, - "Neb": [["M"]], - "Neb's": null, - "Nebraska": [["M"]], - "Nebraska's": null, - "Nebraskan": [["M", "S"]], - "Nebraskan's": null, - "Nebraskans": null, - "Nebr": [["M"]], - "Nebr's": null, - "Nebuchadnezzar": [["M", "S"]], - "Nebuchadnezzar's": null, - "Nebuchadnezzars": null, - "nebulae": null, - "nebula": [["M"]], - "nebula's": null, - "nebular": null, - "nebulousness": [["S", "M"]], - "nebulousnesses": null, - "nebulousness's": null, - "nebulous": [["P", "Y"]], - "nebulously": null, - "necessaries": null, - "necessarily": [["U"]], - "unnecessarily": null, - "necessary": [["U"]], - "unnecessary": null, - "necessitate": [["D", "S", "N", "G", "X"]], - "necessitated": null, - "necessitates": null, - "necessitation": [["M"]], - "necessitating": null, - "necessitations": null, - "necessitation's": null, - "necessitous": null, - "necessity": [["S", "M"]], - "necessities": null, - "necessity's": null, - "neckband": [["M"]], - "neckband's": null, - "neckerchief": [["M", "S"]], - "neckerchief's": null, - "neckerchiefs": null, - "neck": [["G", "R", "D", "M", "J", "S"]], - "necking": [["M"]], - "necker": null, - "necked": null, - "neck's": null, - "neckings": null, - "necks": null, - "necking's": null, - "necklace": [["D", "S", "M", "G"]], - "necklaced": null, - "necklaces": null, - "necklace's": null, - "necklacing": null, - "neckline": [["M", "S"]], - "neckline's": null, - "necklines": null, - "necktie": [["M", "S"]], - "necktie's": null, - "neckties": null, - "necrology": [["S", "M"]], - "necrologies": null, - "necrology's": null, - "necromancer": [["M", "S"]], - "necromancer's": null, - "necromancers": null, - "necromancy": [["M", "S"]], - "necromancy's": null, - "necromancies": null, - "necromantic": null, - "necrophiliac": [["S"]], - "necrophiliacs": null, - "necrophilia": [["M"]], - "necrophilia's": null, - "necropolis": [["S", "M"]], - "necropolises": null, - "necropolis's": null, - "necropsy": [["M"]], - "necropsy's": null, - "necroses": null, - "necrosis": [["M"]], - "necrosis's": null, - "necrotic": null, - "nectarine": [["S", "M"]], - "nectarines": null, - "nectarine's": null, - "nectarous": null, - "nectar": [["S", "M"]], - "nectars": null, - "nectar's": null, - "nectary": [["M", "S"]], - "nectary's": null, - "nectaries": null, - "Neda": [["M"]], - "Neda's": null, - "Nedda": [["M"]], - "Nedda's": null, - "Neddie": [["M"]], - "Neddie's": null, - "Neddy": [["M"]], - "Neddy's": null, - "Nedi": [["M"]], - "Nedi's": null, - "Ned": [["M"]], - "Ned's": null, - "n�e": null, - "needed": [["U"]], - "unneeded": null, - "needer": [["M"]], - "needer's": null, - "needful": [["Y", "S", "P"]], - "needfully": null, - "needfuls": null, - "needfulness": null, - "Needham": [["M"]], - "Needham's": null, - "neediness": [["M", "S"]], - "neediness's": null, - "needinesses": null, - "needlecraft": [["M"]], - "needlecraft's": null, - "needle": [["G", "M", "Z", "R", "S", "D"]], - "needling": null, - "needle's": null, - "needlers": null, - "needler": null, - "needles": null, - "needled": null, - "needlepoint": [["S", "M"]], - "needlepoints": null, - "needlepoint's": null, - "needlessness": [["S"]], - "needlessnesses": null, - "needless": [["Y", "P"]], - "needlessly": null, - "needlewoman": [["M"]], - "needlewoman's": null, - "needlewomen": null, - "needlework": [["R", "M", "S"]], - "needleworker": null, - "needlework's": null, - "needleworks": null, - "needn't": null, - "need": [["Y", "R", "D", "G", "S"]], - "needly": null, - "needing": null, - "needs": null, - "needy": [["T", "P", "R"]], - "neediest": null, - "needier": null, - "Neel": [["M"]], - "Neel's": null, - "Neely": [["M"]], - "Neely's": null, - "ne'er": null, - "nefariousness": [["M", "S"]], - "nefariousness's": null, - "nefariousnesses": null, - "nefarious": [["Y", "P"]], - "nefariously": null, - "Nefen": [["M"]], - "Nefen's": null, - "Nefertiti": [["M"]], - "Nefertiti's": null, - "negated": [["U"]], - "unnegated": null, - "negater": [["M"]], - "negater's": null, - "negate": [["X", "R", "S", "D", "V", "N", "G"]], - "negations": null, - "negates": null, - "negative": [["P", "D", "S", "Y", "G"]], - "negation": [["M"]], - "negating": null, - "negation's": null, - "negativeness": [["S", "M"]], - "negativenesses": null, - "negativeness's": null, - "negatived": null, - "negatives": null, - "negatively": null, - "negativing": null, - "negativism": [["M", "S"]], - "negativism's": null, - "negativisms": null, - "negativity": [["M", "S"]], - "negativity's": null, - "negativities": null, - "negator": [["M", "S"]], - "negator's": null, - "negators": null, - "Negev": [["M"]], - "Negev's": null, - "neglecter": [["M"]], - "neglecter's": null, - "neglectfulness": [["S", "M"]], - "neglectfulnesses": null, - "neglectfulness's": null, - "neglectful": [["Y", "P"]], - "neglectfully": null, - "neglect": [["S", "D", "R", "G"]], - "neglects": null, - "neglected": null, - "neglecting": null, - "negligee": [["S", "M"]], - "negligees": null, - "negligee's": null, - "negligence": [["M", "S"]], - "negligence's": null, - "negligences": null, - "negligent": [["Y"]], - "negligently": null, - "negligibility": [["M"]], - "negligibility's": null, - "negligible": null, - "negligibly": null, - "negotiability": [["M", "S"]], - "negotiability's": null, - "negotiabilities": null, - "negotiable": [["A"]], - "renegotiable": null, - "negotiant": [["M"]], - "negotiant's": null, - "negotiate": [["A", "S", "D", "X", "G", "N"]], - "renegotiate": null, - "renegotiates": null, - "renegotiated": null, - "renegotiations": null, - "renegotiating": null, - "renegotiation": null, - "negotiates": null, - "negotiated": null, - "negotiations": null, - "negotiating": null, - "negotiation": [["M", "A"]], - "negotiation's": null, - "renegotiation's": null, - "negotiator": [["M", "S"]], - "negotiator's": null, - "negotiators": null, - "Negress": [["M", "S"]], - "Negress's": null, - "Negresses": null, - "negritude": [["M", "S"]], - "negritude's": null, - "negritudes": null, - "Negritude": [["S"]], - "Negritudes": null, - "Negroes": null, - "negroid": null, - "Negroid": [["S"]], - "Negroids": null, - "Negro": [["M"]], - "Negro's": null, - "neg": [["S"]], - "negs": null, - "Nehemiah": [["M"]], - "Nehemiah's": null, - "Nehru": [["M"]], - "Nehru's": null, - "neighbored": [["U"]], - "unneighbored": null, - "neighborer": [["M"]], - "neighborer's": null, - "neighborhood": [["S", "M"]], - "neighborhoods": null, - "neighborhood's": null, - "neighborlinesses": null, - "neighborliness": [["U", "M"]], - "unneighborliness": null, - "unneighborliness's": null, - "neighborliness's": null, - "neighborly": [["U", "P"]], - "unneighborly": null, - "neighbor": [["S", "M", "R", "D", "Y", "Z", "G", "J"]], - "neighbors": null, - "neighbor's": null, - "neighborers": null, - "neighboring": null, - "neighborings": null, - "neigh": [["M", "D", "G"]], - "neigh's": null, - "neighed": null, - "neighing": null, - "neighs": null, - "Neila": [["M"]], - "Neila's": null, - "Neile": [["M"]], - "Neile's": null, - "Neilla": [["M"]], - "Neilla's": null, - "Neille": [["M"]], - "Neille's": null, - "Neill": [["M"]], - "Neill's": null, - "Neil": [["S", "M"]], - "Neils": null, - "Neil's": null, - "neither": null, - "Nelda": [["M"]], - "Nelda's": null, - "Nelia": [["M"]], - "Nelia's": null, - "Nelie": [["M"]], - "Nelie's": null, - "Nelle": [["M"]], - "Nelle's": null, - "Nellie": [["M"]], - "Nellie's": null, - "Nelli": [["M"]], - "Nelli's": null, - "Nell": [["M"]], - "Nell's": null, - "Nelly": [["M"]], - "Nelly's": null, - "Nelsen": [["M"]], - "Nelsen's": null, - "Nels": [["N"]], - "Nelson": [["M"]], - "Nelson's": null, - "nelson": [["M", "S"]], - "nelson's": null, - "nelsons": null, - "nematic": null, - "nematode": [["S", "M"]], - "nematodes": null, - "nematode's": null, - "Nembutal": [["M"]], - "Nembutal's": null, - "nemeses": null, - "nemesis": null, - "Nemesis": [["M"]], - "Nemesis's": null, - "neoclassical": null, - "neoclassicism": [["M", "S"]], - "neoclassicism's": null, - "neoclassicisms": null, - "neoclassic": [["M"]], - "neoclassic's": null, - "neocolonialism": [["M", "S"]], - "neocolonialism's": null, - "neocolonialisms": null, - "neocortex": [["M"]], - "neocortex's": null, - "neodymium": [["M", "S"]], - "neodymium's": null, - "neodymiums": null, - "Neogene": null, - "neolithic": null, - "Neolithic": [["M"]], - "Neolithic's": null, - "neologism": [["S", "M"]], - "neologisms": null, - "neologism's": null, - "neomycin": [["M"]], - "neomycin's": null, - "neonatal": [["Y"]], - "neonatally": null, - "neonate": [["M", "S"]], - "neonate's": null, - "neonates": null, - "neon": [["D", "M", "S"]], - "neoned": null, - "neon's": null, - "neons": null, - "neophyte": [["M", "S"]], - "neophyte's": null, - "neophytes": null, - "neoplasm": [["S", "M"]], - "neoplasms": null, - "neoplasm's": null, - "neoplastic": null, - "neoprene": [["S", "M"]], - "neoprenes": null, - "neoprene's": null, - "Nepalese": null, - "Nepali": [["M", "S"]], - "Nepali's": null, - "Nepalis": null, - "Nepal": [["M"]], - "Nepal's": null, - "nepenthe": [["M", "S"]], - "nepenthe's": null, - "nepenthes": null, - "nephew": [["M", "S"]], - "nephew's": null, - "nephews": null, - "nephrite": [["S", "M"]], - "nephrites": null, - "nephrite's": null, - "nephritic": null, - "nephritides": null, - "nephritis": [["M"]], - "nephritis's": null, - "nepotism": [["M", "S"]], - "nepotism's": null, - "nepotisms": null, - "nepotist": [["S"]], - "nepotists": null, - "Neptune": [["M"]], - "Neptune's": null, - "neptunium": [["M", "S"]], - "neptunium's": null, - "neptuniums": null, - "nerd": [["S"]], - "nerds": null, - "nerdy": [["R", "T"]], - "nerdier": null, - "nerdiest": null, - "Nereid": [["M"]], - "Nereid's": null, - "Nerf": [["M"]], - "Nerf's": null, - "Nerissa": [["M"]], - "Nerissa's": null, - "Nerita": [["M"]], - "Nerita's": null, - "Nero": [["M"]], - "Nero's": null, - "Neron": [["M"]], - "Neron's": null, - "Nerta": [["M"]], - "Nerta's": null, - "Nerte": [["M"]], - "Nerte's": null, - "Nertie": [["M"]], - "Nertie's": null, - "Nerti": [["M"]], - "Nerti's": null, - "Nert": [["M"]], - "Nert's": null, - "Nerty": [["M"]], - "Nerty's": null, - "Neruda": [["M"]], - "Neruda's": null, - "nervelessness": [["S", "M"]], - "nervelessnesses": null, - "nervelessness's": null, - "nerveless": [["Y", "P"]], - "nervelessly": null, - "nerve's": null, - "nerve": [["U", "G", "S", "D"]], - "unnerve": null, - "unnerving": [["Y"]], - "unnerves": null, - "unnerved": null, - "nerving": [["M"]], - "nerves": null, - "nerved": null, - "nerviness": [["S", "M"]], - "nervinesses": null, - "nerviness's": null, - "nerving's": null, - "nervousness": [["S", "M"]], - "nervousnesses": null, - "nervousness's": null, - "nervous": [["P", "Y"]], - "nervously": null, - "nervy": [["T", "P", "R"]], - "nerviest": null, - "nervier": null, - "Nessa": [["M"]], - "Nessa's": null, - "Nessie": [["M"]], - "Nessie's": null, - "Nessi": [["M"]], - "Nessi's": null, - "Nessy": [["M"]], - "Nessy's": null, - "Nesta": [["M"]], - "Nesta's": null, - "nester": [["M"]], - "nester's": null, - "Nester": [["M"]], - "Nester's": null, - "Nestle": [["M"]], - "Nestle's": null, - "nestler": [["M"]], - "nestler's": null, - "nestle": [["R", "S", "D", "G"]], - "nestles": null, - "nestled": null, - "nestling": [["M"]], - "nestling's": null, - "Nestorius": [["M"]], - "Nestorius's": null, - "Nestor": [["M"]], - "Nestor's": null, - "nest": [["R", "D", "G", "S", "B", "M"]], - "nested": null, - "nesting": null, - "nests": null, - "nestable": null, - "nest's": null, - "netball": [["M"]], - "netball's": null, - "nether": null, - "Netherlander": [["S", "M"]], - "Netherlanders": null, - "Netherlander's": null, - "Netherlands": [["M"]], - "Netherlands's": null, - "nethermost": null, - "netherworld": [["S"]], - "netherworlds": null, - "Netscape": [["M"]], - "Netscape's": null, - "net": [["S", "M"]], - "nets": null, - "net's": null, - "Netta": [["M"]], - "Netta's": null, - "Nettie": [["M"]], - "Nettie's": null, - "Netti": [["M"]], - "Netti's": null, - "netting": [["M"]], - "netting's": null, - "nett": [["J", "G", "R", "D", "S"]], - "nettings": null, - "netter": null, - "netted": null, - "netts": null, - "Nettle": [["M"]], - "Nettle's": null, - "nettle": [["M", "S", "D", "G"]], - "nettle's": null, - "nettles": null, - "nettled": null, - "nettling": null, - "nettlesome": null, - "Netty": [["M"]], - "Netty's": null, - "network": [["S", "J", "M", "D", "G"]], - "networks": null, - "networkings": null, - "network's": null, - "networked": null, - "networking": null, - "Netzahualcoyotl": [["M"]], - "Netzahualcoyotl's": null, - "Neumann": [["M"]], - "Neumann's": null, - "neuralgia": [["M", "S"]], - "neuralgia's": null, - "neuralgias": null, - "neuralgic": null, - "neural": [["Y"]], - "neurally": null, - "neurasthenia": [["M", "S"]], - "neurasthenia's": null, - "neurasthenias": null, - "neurasthenic": [["S"]], - "neurasthenics": null, - "neuritic": [["S"]], - "neuritics": null, - "neuritides": null, - "neuritis": [["M"]], - "neuritis's": null, - "neuroanatomy": null, - "neurobiology": [["M"]], - "neurobiology's": null, - "neurological": [["Y"]], - "neurologically": null, - "neurologist": [["M", "S"]], - "neurologist's": null, - "neurologists": null, - "neurology": [["S", "M"]], - "neurologies": null, - "neurology's": null, - "neuromuscular": null, - "neuronal": null, - "neurone": [["S"]], - "neurones": null, - "neuron": [["M", "S"]], - "neuron's": null, - "neurons": null, - "neuropathology": [["M"]], - "neuropathology's": null, - "neurophysiology": [["M"]], - "neurophysiology's": null, - "neuropsychiatric": null, - "neuroses": null, - "neurosis": [["M"]], - "neurosis's": null, - "neurosurgeon": [["M", "S"]], - "neurosurgeon's": null, - "neurosurgeons": null, - "neurosurgery": [["S", "M"]], - "neurosurgeries": null, - "neurosurgery's": null, - "neurotically": null, - "neurotic": [["S"]], - "neurotics": null, - "neurotransmitter": [["S"]], - "neurotransmitters": null, - "neuter": [["J", "Z", "G", "R", "D"]], - "neuterings": null, - "neuterers": null, - "neutering": null, - "neuterer": null, - "neutered": null, - "neutralise's": null, - "neutralism": [["M", "S"]], - "neutralism's": null, - "neutralisms": null, - "neutralist": [["S"]], - "neutralists": null, - "neutrality": [["M", "S"]], - "neutrality's": null, - "neutralities": null, - "neutralization": [["M", "S"]], - "neutralization's": null, - "neutralizations": null, - "neutralized": [["U"]], - "unneutralized": null, - "neutralize": [["G", "Z", "S", "R", "D"]], - "neutralizing": null, - "neutralizers": null, - "neutralizes": null, - "neutralizer": null, - "neutral": [["P", "Y", "S"]], - "neutralness": null, - "neutrally": null, - "neutrals": null, - "neutrino": [["M", "S"]], - "neutrino's": null, - "neutrinos": null, - "neutron": [["M", "S"]], - "neutron's": null, - "neutrons": null, - "neut": [["Z", "R"]], - "neuters": null, - "Nevada": [["M"]], - "Nevada's": null, - "Nevadan": [["S"]], - "Nevadans": null, - "Nevadian": [["S"]], - "Nevadians": null, - "Neva": [["M"]], - "Neva's": null, - "never": null, - "nevermore": null, - "nevertheless": null, - "nevi": null, - "Nevile": [["M"]], - "Nevile's": null, - "Neville": [["M"]], - "Neville's": null, - "Nevil": [["M"]], - "Nevil's": null, - "Nevin": [["S", "M"]], - "Nevins": null, - "Nevin's": null, - "Nevis": [["M"]], - "Nevis's": null, - "Nev": [["M"]], - "Nev's": null, - "Nevsa": [["M"]], - "Nevsa's": null, - "Nevsky": [["M"]], - "Nevsky's": null, - "nevus": [["M"]], - "nevus's": null, - "Newark": [["M"]], - "Newark's": null, - "newbie": [["S"]], - "newbies": null, - "newborn": [["S"]], - "newborns": null, - "Newbury": [["M"]], - "Newbury's": null, - "Newburyport": [["M"]], - "Newburyport's": null, - "Newcastle": [["M"]], - "Newcastle's": null, - "newcomer": [["M", "S"]], - "newcomer's": null, - "newcomers": null, - "newed": [["A"]], - "renewed": null, - "Newell": [["M"]], - "Newell's": null, - "newel": [["M", "S"]], - "newel's": null, - "newels": null, - "newer": [["A"]], - "renewer": [["M"]], - "newfangled": null, - "newfound": null, - "newfoundland": null, - "Newfoundlander": [["M"]], - "Newfoundlander's": null, - "Newfoundland": [["S", "R", "M", "Z"]], - "Newfoundlands": null, - "Newfoundland's": null, - "Newfoundlanders": null, - "newish": null, - "newline": [["S", "M"]], - "newlines": null, - "newline's": null, - "newlywed": [["M", "S"]], - "newlywed's": null, - "newlyweds": null, - "Newman": [["M"]], - "Newman's": null, - "newness": [["M", "S"]], - "newness's": null, - "newnesses": null, - "Newport": [["M"]], - "Newport's": null, - "news": [["A"]], - "renews": null, - "newsagent": [["M", "S"]], - "newsagent's": null, - "newsagents": null, - "newsboy": [["S", "M"]], - "newsboys": null, - "newsboy's": null, - "newscaster": [["M"]], - "newscaster's": null, - "newscasting": [["M"]], - "newscasting's": null, - "newscast": [["S", "R", "M", "G", "Z"]], - "newscasts": null, - "newscast's": null, - "newscasters": null, - "newsdealer": [["M", "S"]], - "newsdealer's": null, - "newsdealers": null, - "newsed": null, - "newses": null, - "newsflash": [["S"]], - "newsflashes": null, - "newsgirl": [["S"]], - "newsgirls": null, - "newsgroup": [["S", "M"]], - "newsgroups": null, - "newsgroup's": null, - "newsing": null, - "newsletter": [["S", "M"]], - "newsletters": null, - "newsletter's": null, - "NeWS": [["M"]], - "NeWS's": null, - "newsman": [["M"]], - "newsman's": null, - "newsmen": null, - "newspaperman": [["M"]], - "newspaperman's": null, - "newspapermen": null, - "newspaper": [["S", "M", "G", "D"]], - "newspapers": null, - "newspaper's": null, - "newspapering": null, - "newspapered": null, - "newspaperwoman": [["M"]], - "newspaperwoman's": null, - "newspaperwomen": null, - "newsprint": [["M", "S"]], - "newsprint's": null, - "newsprints": null, - "new": [["S", "P", "T", "G", "D", "R", "Y"]], - "newest": null, - "newing": null, - "newly": null, - "newsreader": [["M", "S"]], - "newsreader's": null, - "newsreaders": null, - "newsreel": [["S", "M"]], - "newsreels": null, - "newsreel's": null, - "newsroom": [["S"]], - "newsrooms": null, - "news's": null, - "newsstand": [["M", "S"]], - "newsstand's": null, - "newsstands": null, - "Newsweekly": [["M"]], - "Newsweekly's": null, - "newsweekly": [["S"]], - "newsweeklies": null, - "Newsweek": [["M", "Y"]], - "Newsweek's": null, - "newswire": null, - "newswoman": [["M"]], - "newswoman's": null, - "newswomen": null, - "newsworthiness": [["S", "M"]], - "newsworthinesses": null, - "newsworthiness's": null, - "newsworthy": [["R", "P", "T"]], - "newsworthier": null, - "newsworthiest": null, - "newsy": [["T", "R", "S"]], - "newsiest": null, - "newsier": null, - "newsies": null, - "newt": [["M", "S"]], - "newt's": null, - "newts": null, - "Newtonian": null, - "Newton": [["M"]], - "Newton's": null, - "newton": [["S", "M"]], - "newtons": null, - "newton's": null, - "Nexis": [["M"]], - "Nexis's": null, - "next": null, - "nexus": [["S", "M"]], - "nexuses": null, - "nexus's": null, - "Neysa": [["M"]], - "Neysa's": null, - "NF": null, - "NFC": null, - "NFL": null, - "NFS": null, - "Ngaliema": [["M"]], - "Ngaliema's": null, - "Nguyen": [["M"]], - "Nguyen's": null, - "NH": null, - "NHL": null, - "niacin": [["S", "M"]], - "niacins": null, - "niacin's": null, - "Niagara": [["M"]], - "Niagara's": null, - "Niall": [["M"]], - "Niall's": null, - "Nial": [["M"]], - "Nial's": null, - "Niamey": [["M"]], - "Niamey's": null, - "nibbed": null, - "nibbing": null, - "nibbler": [["M"]], - "nibbler's": null, - "nibble": [["R", "S", "D", "G", "Z"]], - "nibbles": null, - "nibbled": null, - "nibbling": null, - "nibblers": null, - "Nibelung": [["M"]], - "Nibelung's": null, - "nib": [["S", "M"]], - "nibs": null, - "nib's": null, - "Nicaean": null, - "Nicaragua": [["M"]], - "Nicaragua's": null, - "Nicaraguan": [["S"]], - "Nicaraguans": null, - "Niccolo": [["M"]], - "Niccolo's": null, - "Nice": [["M"]], - "Nice's": null, - "Nicene": null, - "niceness": [["M", "S"]], - "niceness's": null, - "nicenesses": null, - "nicety": [["M", "S"]], - "nicety's": null, - "niceties": null, - "nice": [["Y", "T", "P", "R"]], - "nicely": null, - "nicest": null, - "nicer": null, - "niche": [["S", "D", "G", "M"]], - "niches": null, - "niched": null, - "niching": null, - "niche's": null, - "Nicholas": null, - "Nichole": [["M"]], - "Nichole's": null, - "Nicholle": [["M"]], - "Nicholle's": null, - "Nichol": [["M", "S"]], - "Nichol's": null, - "Nichols": null, - "Nicholson": [["M"]], - "Nicholson's": null, - "nichrome": null, - "nickelodeon": [["S", "M"]], - "nickelodeons": null, - "nickelodeon's": null, - "nickel": [["S", "G", "M", "D"]], - "nickels": null, - "nickeling": null, - "nickel's": null, - "nickeled": null, - "nicker": [["G", "D"]], - "nickering": null, - "nickered": null, - "Nickey": [["M"]], - "Nickey's": null, - "nick": [["G", "Z", "R", "D", "M", "S"]], - "nicking": null, - "nickers": null, - "nicked": null, - "nick's": null, - "nicks": null, - "Nickie": [["M"]], - "Nickie's": null, - "Nicki": [["M"]], - "Nicki's": null, - "Nicklaus": [["M"]], - "Nicklaus's": null, - "Nick": [["M"]], - "Nick's": null, - "nicknack's": null, - "nickname": [["M", "G", "D", "R", "S"]], - "nickname's": null, - "nicknaming": null, - "nicknamed": null, - "nicknamer": [["M"]], - "nicknames": null, - "nicknamer's": null, - "Nickolai": [["M"]], - "Nickolai's": null, - "Nickola": [["M", "S"]], - "Nickola's": null, - "Nickolas": null, - "Nickolaus": [["M"]], - "Nickolaus's": null, - "Nicko": [["M"]], - "Nicko's": null, - "Nicky": [["M"]], - "Nicky's": null, - "Nicobar": [["M"]], - "Nicobar's": null, - "Nicodemus": [["M"]], - "Nicodemus's": null, - "Nicolai": [["M", "S"]], - "Nicolai's": null, - "Nicolais": null, - "Nicola": [["M", "S"]], - "Nicola's": null, - "Nicolas": null, - "Nicolea": [["M"]], - "Nicolea's": null, - "Nicole": [["M"]], - "Nicole's": null, - "Nicolette": [["M"]], - "Nicolette's": null, - "Nicoli": [["M", "S"]], - "Nicoli's": null, - "Nicolis": null, - "Nicolina": [["M"]], - "Nicolina's": null, - "Nicoline": [["M"]], - "Nicoline's": null, - "Nicolle": [["M"]], - "Nicolle's": null, - "Nicol": [["M"]], - "Nicol's": null, - "Nico": [["M"]], - "Nico's": null, - "Nicosia": [["M"]], - "Nicosia's": null, - "nicotine": [["M", "S"]], - "nicotine's": null, - "nicotines": null, - "Niebuhr": [["M"]], - "Niebuhr's": null, - "niece": [["M", "S"]], - "niece's": null, - "nieces": null, - "Niel": [["M", "S"]], - "Niel's": null, - "Niels": [["N"]], - "Nielsen": [["M"]], - "Nielsen's": null, - "Nielson": [["M"]], - "Nielson's": null, - "Nietzsche": [["M"]], - "Nietzsche's": null, - "Nieves": [["M"]], - "Nieves's": null, - "nifty": [["T", "R", "S"]], - "niftiest": null, - "niftier": null, - "nifties": null, - "Nigel": [["M"]], - "Nigel's": null, - "Nigeria": [["M"]], - "Nigeria's": null, - "Nigerian": [["S"]], - "Nigerians": null, - "Nigerien": null, - "Niger": [["M"]], - "Niger's": null, - "niggardliness": [["S", "M"]], - "niggardlinesses": null, - "niggardliness's": null, - "niggardly": [["P"]], - "niggard": [["S", "G", "M", "D", "Y"]], - "niggards": null, - "niggarding": null, - "niggard's": null, - "niggarded": null, - "nigger": [["S", "G", "D", "M", "!"]], - "niggers": null, - "niggering": null, - "niggered": null, - "nigger's": null, - "niggler": [["M"]], - "niggler's": null, - "niggle": [["R", "S", "D", "G", "Z", "J"]], - "niggles": null, - "niggled": null, - "niggling": [["Y"]], - "nigglers": null, - "nigglings": null, - "nigglingly": null, - "nigh": [["R", "D", "G", "T"]], - "nigher": null, - "nighed": null, - "nighing": null, - "nighest": null, - "nighs": null, - "nightcap": [["S", "M"]], - "nightcaps": null, - "nightcap's": null, - "nightclothes": null, - "nightclubbed": null, - "nightclubbing": null, - "nightclub": [["M", "S"]], - "nightclub's": null, - "nightclubs": null, - "nightdress": [["M", "S"]], - "nightdress's": null, - "nightdresses": null, - "nightfall": [["S", "M"]], - "nightfalls": null, - "nightfall's": null, - "nightgown": [["M", "S"]], - "nightgown's": null, - "nightgowns": null, - "nighthawk": [["M", "S"]], - "nighthawk's": null, - "nighthawks": null, - "nightie": [["M", "S"]], - "nightie's": null, - "nighties": null, - "Nightingale": [["M"]], - "Nightingale's": null, - "nightingale": [["S", "M"]], - "nightingales": null, - "nightingale's": null, - "nightlife": [["M", "S"]], - "nightlife's": null, - "nightlifes": null, - "nightlong": null, - "nightmare": [["M", "S"]], - "nightmare's": null, - "nightmares": null, - "nightmarish": [["Y"]], - "nightmarishly": null, - "nightshade": [["S", "M"]], - "nightshades": null, - "nightshade's": null, - "nightshirt": [["M", "S"]], - "nightshirt's": null, - "nightshirts": null, - "night": [["S", "M", "Y", "D", "Z"]], - "nights": null, - "night's": null, - "nightly": null, - "nighted": null, - "nighters": null, - "nightspot": [["M", "S"]], - "nightspot's": null, - "nightspots": null, - "nightstand": [["S", "M"]], - "nightstands": null, - "nightstand's": null, - "nightstick": [["S"]], - "nightsticks": null, - "nighttime": [["S"]], - "nighttimes": null, - "nightwear": [["M"]], - "nightwear's": null, - "nighty's": null, - "NIH": null, - "nihilism": [["M", "S"]], - "nihilism's": null, - "nihilisms": null, - "nihilistic": null, - "nihilist": [["M", "S"]], - "nihilist's": null, - "nihilists": null, - "Nijinsky": [["M"]], - "Nijinsky's": null, - "Nikaniki": [["M"]], - "Nikaniki's": null, - "Nike": [["M"]], - "Nike's": null, - "Niki": [["M"]], - "Niki's": null, - "Nikita": [["M"]], - "Nikita's": null, - "Nikkie": [["M"]], - "Nikkie's": null, - "Nikki": [["M"]], - "Nikki's": null, - "Nikko": [["M"]], - "Nikko's": null, - "Nikolai": [["M"]], - "Nikolai's": null, - "Nikola": [["M", "S"]], - "Nikola's": null, - "Nikolas": null, - "Nikolaos": [["M"]], - "Nikolaos's": null, - "Nikolaus": [["M"]], - "Nikolaus's": null, - "Nikolayev's": null, - "Nikoletta": [["M"]], - "Nikoletta's": null, - "Nikolia": [["M"]], - "Nikolia's": null, - "Nikolos": [["M"]], - "Nikolos's": null, - "Niko": [["M", "S"]], - "Niko's": null, - "Nikos": null, - "Nikon": [["M"]], - "Nikon's": null, - "Nile": [["S", "M"]], - "Niles": null, - "Nile's": null, - "nilled": null, - "nilling": null, - "Nil": [["M", "S"]], - "Nil's": null, - "Nils": [["N"]], - "nil": [["M", "Y", "S"]], - "nil's": null, - "nilly": null, - "nils": null, - "nilpotent": null, - "Nilsen": [["M"]], - "Nilsen's": null, - "Nilson": [["M"]], - "Nilson's": null, - "Nilsson": [["M"]], - "Nilsson's": null, - "Ni": [["M"]], - "Ni's": null, - "nimbi": null, - "nimbleness": [["S", "M"]], - "nimblenesses": null, - "nimbleness's": null, - "nimble": [["T", "R", "P"]], - "nimblest": null, - "nimbler": null, - "nimbly": null, - "nimbus": [["D", "M"]], - "nimbused": null, - "nimbus's": null, - "NIMBY": null, - "Nimitz": [["M"]], - "Nimitz's": null, - "Nimrod": [["M", "S"]], - "Nimrod's": null, - "Nimrods": null, - "Nina": [["M"]], - "Nina's": null, - "nincompoop": [["M", "S"]], - "nincompoop's": null, - "nincompoops": null, - "ninefold": null, - "nine": [["M", "S"]], - "nine's": null, - "nines": null, - "ninepence": [["M"]], - "ninepence's": null, - "ninepin": [["S"]], - "ninepins": [["M"]], - "ninepins's": null, - "nineteen": [["S", "M", "H"]], - "nineteens": null, - "nineteen's": null, - "nineteenth": null, - "nineteenths": null, - "ninetieths": null, - "Ninetta": [["M"]], - "Ninetta's": null, - "Ninette": [["M"]], - "Ninette's": null, - "ninety": [["M", "H", "S"]], - "ninety's": null, - "ninetieth": null, - "nineties": null, - "Nineveh": [["M"]], - "Nineveh's": null, - "ninja": [["S"]], - "ninjas": null, - "Ninnetta": [["M"]], - "Ninnetta's": null, - "Ninnette": [["M"]], - "Ninnette's": null, - "ninny": [["S", "M"]], - "ninnies": null, - "ninny's": null, - "Ninon": [["M"]], - "Ninon's": null, - "Nintendo": [["M"]], - "Nintendo's": null, - "ninth": null, - "ninths": null, - "Niobe": [["M"]], - "Niobe's": null, - "niobium": [["M", "S"]], - "niobium's": null, - "niobiums": null, - "nipped": null, - "nipper": [["D", "M", "G", "S"]], - "nippered": null, - "nipper's": null, - "nippering": null, - "nippers": null, - "nippiness": [["S"]], - "nippinesses": null, - "nipping": [["Y"]], - "nippingly": null, - "nipple": [["G", "M", "S", "D"]], - "nippling": null, - "nipple's": null, - "nipples": null, - "nippled": null, - "Nipponese": null, - "Nippon": [["M"]], - "Nippon's": null, - "nippy": [["T", "P", "R"]], - "nippiest": null, - "nippier": null, - "nip": [["S"]], - "nips": null, - "Nirenberg": [["M"]], - "Nirenberg's": null, - "nirvana": [["M", "S"]], - "nirvana's": null, - "nirvanas": null, - "Nirvana": [["S"]], - "Nirvanas": null, - "nisei": null, - "Nisei": [["M", "S"]], - "Nisei's": null, - "Niseis": null, - "Nissa": [["M"]], - "Nissa's": null, - "Nissan": [["M"]], - "Nissan's": null, - "Nisse": [["M"]], - "Nisse's": null, - "Nissie": [["M"]], - "Nissie's": null, - "Nissy": [["M"]], - "Nissy's": null, - "Nita": [["M"]], - "Nita's": null, - "niter": [["M"]], - "niter's": null, - "nitpick": [["D", "R", "S", "J", "Z", "G"]], - "nitpicked": null, - "nitpicker": null, - "nitpicks": null, - "nitpickings": null, - "nitpickers": null, - "nitpicking": null, - "nitrate": [["M", "G", "N", "X", "S", "D"]], - "nitrate's": null, - "nitrating": null, - "nitration": [["M"]], - "nitrations": null, - "nitrates": null, - "nitrated": null, - "nitration's": null, - "nitric": null, - "nitride": [["M", "G", "S"]], - "nitride's": null, - "nitriding": [["M"]], - "nitrides": null, - "nitriding's": null, - "nitrification": [["S", "M"]], - "nitrifications": null, - "nitrification's": null, - "nitrite": [["M", "S"]], - "nitrite's": null, - "nitrites": null, - "nitrocellulose": [["M", "S"]], - "nitrocellulose's": null, - "nitrocelluloses": null, - "nitrogenous": null, - "nitrogen": [["S", "M"]], - "nitrogens": null, - "nitrogen's": null, - "nitroglycerin": [["M", "S"]], - "nitroglycerin's": null, - "nitroglycerins": null, - "nitrous": null, - "nitwit": [["M", "S"]], - "nitwit's": null, - "nitwits": null, - "nit": [["Z", "S", "M", "R"]], - "niters": null, - "nits": null, - "nit's": null, - "Niven": [["M"]], - "Niven's": null, - "nixer": [["M"]], - "nixer's": null, - "nix": [["G", "D", "S", "R"]], - "nixing": null, - "nixed": null, - "nixes": null, - "Nixie": [["M"]], - "Nixie's": null, - "Nixon": [["M"]], - "Nixon's": null, - "NJ": null, - "Nkrumah": [["M"]], - "Nkrumah's": null, - "NLRB": null, - "nm": null, - "NM": null, - "no": [["A"]], - "reno": null, - "NOAA": null, - "Noach": [["M"]], - "Noach's": null, - "Noah": [["M"]], - "Noah's": null, - "Noak": [["M"]], - "Noak's": null, - "Noami": [["M"]], - "Noami's": null, - "Noam": [["M"]], - "Noam's": null, - "Nobelist": [["S", "M"]], - "Nobelists": null, - "Nobelist's": null, - "nobelium": [["M", "S"]], - "nobelium's": null, - "nobeliums": null, - "Nobel": [["M"]], - "Nobel's": null, - "Nobe": [["M"]], - "Nobe's": null, - "Nobie": [["M"]], - "Nobie's": null, - "nobility": [["M", "S"]], - "nobility's": null, - "nobilities": null, - "Noble": [["M"]], - "Noble's": null, - "nobleman": [["M"]], - "nobleman's": null, - "noblemen": null, - "nobleness": [["S", "M"]], - "noblenesses": null, - "nobleness's": null, - "noblesse": [["M"]], - "noblesse's": null, - "noble": [["T", "P", "S", "R"]], - "noblest": null, - "nobles": null, - "nobler": null, - "noblewoman": null, - "noblewomen": null, - "nob": [["M", "Y"]], - "nob's": null, - "nobly": null, - "nobody": [["M", "S"]], - "nobody's": null, - "nobodies": null, - "Noby": [["M"]], - "Noby's": null, - "nocturnal": [["S", "Y"]], - "nocturnals": null, - "nocturnally": null, - "nocturne": [["S", "M"]], - "nocturnes": null, - "nocturne's": null, - "nodal": [["Y"]], - "nodally": null, - "nodded": null, - "nodding": null, - "noddle": [["M", "S", "D", "G"]], - "noddle's": null, - "noddles": null, - "noddled": null, - "noddling": null, - "noddy": [["M"]], - "noddy's": null, - "node": [["M", "S"]], - "node's": null, - "nodes": null, - "NoDoz": [["M"]], - "NoDoz's": null, - "nod": [["S", "M"]], - "nods": null, - "nod's": null, - "nodular": null, - "nodule": [["S", "M"]], - "nodules": null, - "nodule's": null, - "Noelani": [["M"]], - "Noelani's": null, - "Noella": [["M"]], - "Noella's": null, - "Noelle": [["M"]], - "Noelle's": null, - "Noell": [["M"]], - "Noell's": null, - "Noellyn": [["M"]], - "Noellyn's": null, - "Noel": [["M", "S"]], - "Noel's": null, - "Noels": null, - "noel": [["S"]], - "noels": null, - "Noelyn": [["M"]], - "Noelyn's": null, - "Noe": [["M"]], - "Noe's": null, - "Noemi": [["M"]], - "Noemi's": null, - "noes": [["S"]], - "noeses": null, - "noggin": [["S", "M"]], - "noggins": null, - "noggin's": null, - "nohow": null, - "noise": [["G", "M", "S", "D"]], - "noising": null, - "noise's": null, - "noises": null, - "noised": null, - "noiselessness": [["S", "M"]], - "noiselessnesses": null, - "noiselessness's": null, - "noiseless": [["Y", "P"]], - "noiselessly": null, - "noisemaker": [["M"]], - "noisemaker's": null, - "noisemake": [["Z", "G", "R"]], - "noisemakers": null, - "noisemaking": null, - "noisily": null, - "noisiness": [["M", "S"]], - "noisiness's": null, - "noisinesses": null, - "noisome": null, - "noisy": [["T", "P", "R"]], - "noisiest": null, - "noisier": null, - "Nola": [["M"]], - "Nola's": null, - "Nolana": [["M"]], - "Nolana's": null, - "Noland": [["M"]], - "Noland's": null, - "Nolan": [["M"]], - "Nolan's": null, - "Nolie": [["M"]], - "Nolie's": null, - "Nollie": [["M"]], - "Nollie's": null, - "Noll": [["M"]], - "Noll's": null, - "Nolly": [["M"]], - "Nolly's": null, - "No": [["M"]], - "No's": null, - "nomadic": null, - "nomad": [["S", "M"]], - "nomads": null, - "nomad's": null, - "Nome": [["M"]], - "Nome's": null, - "nomenclature": [["M", "S"]], - "nomenclature's": null, - "nomenclatures": null, - "Nomi": [["M"]], - "Nomi's": null, - "nominalized": null, - "nominal": [["K"]], - "pronominal": null, - "nominally": null, - "nominals": null, - "nominate": [["C", "D", "S", "A", "X", "N", "G"]], - "denominated": null, - "denominates": null, - "denominations": null, - "denomination": null, - "denominating": null, - "nominated": null, - "renominated": null, - "nominates": null, - "renominates": null, - "renominate": null, - "renominations": null, - "renomination": null, - "renominating": null, - "nominations": null, - "nomination": [["M", "A", "C"]], - "nominating": null, - "nomination's": null, - "renomination's": null, - "denomination's": null, - "nominative": [["S", "Y"]], - "nominatives": null, - "nominatively": null, - "nominator": [["C", "S", "M"]], - "denominator": null, - "denominators": null, - "denominator's": null, - "nominators": null, - "nominator's": null, - "nominee": [["M", "S"]], - "nominee's": null, - "nominees": null, - "non": null, - "nonabrasive": null, - "nonabsorbent": [["S"]], - "nonabsorbents": null, - "nonacademic": [["S"]], - "nonacademics": null, - "nonacceptance": [["M", "S"]], - "nonacceptance's": null, - "nonacceptances": null, - "nonacid": [["M", "S"]], - "nonacid's": null, - "nonacids": null, - "nonactive": null, - "nonadaptive": null, - "nonaddictive": null, - "nonadhesive": null, - "nonadjacent": null, - "nonadjustable": null, - "nonadministrative": null, - "nonage": [["M", "S"]], - "nonage's": null, - "nonages": null, - "nonagenarian": [["M", "S"]], - "nonagenarian's": null, - "nonagenarians": null, - "nonaggression": [["S", "M"]], - "nonaggressions": null, - "nonaggression's": null, - "nonagricultural": null, - "Nonah": [["M"]], - "Nonah's": null, - "nonalcoholic": [["S"]], - "nonalcoholics": null, - "nonaligned": null, - "nonalignment": [["S", "M"]], - "nonalignments": null, - "nonalignment's": null, - "nonallergic": null, - "Nona": [["M"]], - "Nona's": null, - "nonappearance": [["M", "S"]], - "nonappearance's": null, - "nonappearances": null, - "nonassignable": null, - "nonathletic": null, - "nonattendance": [["S", "M"]], - "nonattendances": null, - "nonattendance's": null, - "nonautomotive": null, - "nonavailability": [["S", "M"]], - "nonavailabilities": null, - "nonavailability's": null, - "nonbasic": null, - "nonbeliever": [["S", "M"]], - "nonbelievers": null, - "nonbeliever's": null, - "nonbelligerent": [["S"]], - "nonbelligerents": null, - "nonblocking": null, - "nonbreakable": null, - "nonburnable": null, - "nonbusiness": null, - "noncaloric": null, - "noncancerous": null, - "noncarbohydrate": [["M"]], - "noncarbohydrate's": null, - "nonce": [["M", "S"]], - "nonce's": null, - "nonces": null, - "nonchalance": [["S", "M"]], - "nonchalances": null, - "nonchalance's": null, - "nonchalant": [["Y", "P"]], - "nonchalantly": null, - "nonchalantness": null, - "nonchargeable": null, - "nonclerical": [["S"]], - "nonclericals": null, - "nonclinical": null, - "noncollectable": null, - "noncombatant": [["M", "S"]], - "noncombatant's": null, - "noncombatants": null, - "noncombustible": [["S"]], - "noncombustibles": null, - "noncommercial": [["S"]], - "noncommercials": null, - "noncommissioned": null, - "noncommittal": [["Y"]], - "noncommittally": null, - "noncom": [["M", "S"]], - "noncom's": null, - "noncoms": null, - "noncommunicable": null, - "noncompeting": null, - "noncompetitive": null, - "noncompliance": [["M", "S"]], - "noncompliance's": null, - "noncompliances": null, - "noncomplying": [["S"]], - "noncomplyings": null, - "noncomprehending": null, - "nonconducting": null, - "nonconductor": [["M", "S"]], - "nonconductor's": null, - "nonconductors": null, - "nonconforming": null, - "nonconformist": [["S", "M"]], - "nonconformists": null, - "nonconformist's": null, - "nonconformity": [["S", "M"]], - "nonconformities": null, - "nonconformity's": null, - "nonconsecutive": null, - "nonconservative": null, - "nonconstructive": null, - "noncontagious": null, - "noncontiguous": null, - "noncontinuous": null, - "noncontributing": null, - "noncontributory": null, - "noncontroversial": null, - "nonconvertible": null, - "noncooperation": [["S", "M"]], - "noncooperations": null, - "noncooperation's": null, - "noncorroding": [["S"]], - "noncorrodings": null, - "noncorrosive": null, - "noncredit": null, - "noncriminal": [["S"]], - "noncriminals": null, - "noncritical": null, - "noncrystalline": null, - "noncumulative": null, - "noncustodial": null, - "noncyclic": null, - "nondairy": null, - "nondecreasing": null, - "nondeductible": null, - "nondelivery": [["M", "S"]], - "nondelivery's": null, - "nondeliveries": null, - "nondemocratic": null, - "nondenominational": null, - "nondepartmental": null, - "nondepreciating": null, - "nondescript": [["Y", "S"]], - "nondescriptly": null, - "nondescripts": null, - "nondestructive": [["Y"]], - "nondestructively": null, - "nondetachable": null, - "nondeterminacy": null, - "nondeterminate": [["Y"]], - "nondeterminately": null, - "nondeterminism": null, - "nondeterministic": null, - "nondeterministically": null, - "nondisciplinary": null, - "nondisclosure": [["S", "M"]], - "nondisclosures": null, - "nondisclosure's": null, - "nondiscrimination": [["S", "M"]], - "nondiscriminations": null, - "nondiscrimination's": null, - "nondiscriminatory": null, - "nondramatic": null, - "nondrinker": [["S", "M"]], - "nondrinkers": null, - "nondrinker's": null, - "nondrying": null, - "nondurable": null, - "noneconomic": null, - "noneducational": null, - "noneffective": [["S"]], - "noneffectives": null, - "nonelastic": null, - "nonelectrical": null, - "nonelectric": [["S"]], - "nonelectrics": null, - "nonemergency": null, - "nonempty": null, - "nonenforceable": null, - "nonentity": [["M", "S"]], - "nonentity's": null, - "nonentities": null, - "nonequivalence": [["M"]], - "nonequivalence's": null, - "nonequivalent": [["S"]], - "nonequivalents": null, - "none": [["S"]], - "nones": [["M"]], - "nones's": null, - "nonessential": [["S"]], - "nonessentials": null, - "nonesuch": [["S", "M"]], - "nonesuches": null, - "nonesuch's": null, - "nonetheless": null, - "nonevent": [["M", "S"]], - "nonevent's": null, - "nonevents": null, - "nonexchangeable": null, - "nonexclusive": null, - "nonexempt": null, - "nonexistence": [["M", "S"]], - "nonexistence's": null, - "nonexistences": null, - "nonexistent": null, - "nonexplosive": [["S"]], - "nonexplosives": null, - "nonextensible": null, - "nonfactual": null, - "nonfading": null, - "nonfat": null, - "nonfatal": null, - "nonfattening": null, - "nonferrous": null, - "nonfictional": null, - "nonfiction": [["S", "M"]], - "nonfictions": null, - "nonfiction's": null, - "nonflammable": null, - "nonflowering": null, - "nonfluctuating": null, - "nonflying": null, - "nonfood": [["M"]], - "nonfood's": null, - "nonfreezing": null, - "nonfunctional": null, - "nongovernmental": null, - "nongranular": null, - "nonhazardous": null, - "nonhereditary": null, - "nonhuman": null, - "nonidentical": null, - "Nonie": [["M"]], - "Nonie's": null, - "Noni": [["M"]], - "Noni's": null, - "noninclusive": null, - "nonindependent": null, - "nonindustrial": null, - "noninfectious": null, - "noninflammatory": null, - "noninflationary": null, - "noninflected": null, - "nonintellectual": [["S"]], - "nonintellectuals": null, - "noninteracting": null, - "noninterchangeable": null, - "noninterference": [["M", "S"]], - "noninterference's": null, - "noninterferences": null, - "nonintervention": [["S", "M"]], - "noninterventions": null, - "nonintervention's": null, - "nonintoxicating": null, - "nonintuitive": null, - "noninvasive": null, - "nonionic": null, - "nonirritating": null, - "nonjudgmental": null, - "nonjudicial": null, - "nonlegal": null, - "nonlethal": null, - "nonlinearity": [["M", "S"]], - "nonlinearity's": null, - "nonlinearities": null, - "nonlinear": [["Y"]], - "nonlinearly": null, - "nonlinguistic": null, - "nonliterary": null, - "nonliving": null, - "nonlocal": null, - "nonmagical": null, - "nonmagnetic": null, - "nonmalignant": null, - "nonmember": [["S", "M"]], - "nonmembers": null, - "nonmember's": null, - "nonmetallic": null, - "nonmetal": [["M", "S"]], - "nonmetal's": null, - "nonmetals": null, - "nonmigratory": null, - "nonmilitant": [["S"]], - "nonmilitants": null, - "nonmilitary": null, - "Nonnah": [["M"]], - "Nonnah's": null, - "Nonna": [["M"]], - "Nonna's": null, - "nonnarcotic": [["S"]], - "nonnarcotics": null, - "nonnative": [["S"]], - "nonnatives": null, - "nonnegative": null, - "nonnegotiable": null, - "nonnuclear": null, - "nonnumerical": [["S"]], - "nonnumericals": null, - "nonobjective": null, - "nonobligatory": null, - "nonobservance": [["M", "S"]], - "nonobservance's": null, - "nonobservances": null, - "nonobservant": null, - "nonoccupational": null, - "nonoccurence": null, - "nonofficial": null, - "nonogenarian": null, - "nonoperational": null, - "nonoperative": null, - "nonorthogonal": null, - "nonorthogonality": null, - "nonparallel": [["S"]], - "nonparallels": null, - "nonparametric": null, - "nonpareil": [["S", "M"]], - "nonpareils": null, - "nonpareil's": null, - "nonparticipant": [["S", "M"]], - "nonparticipants": null, - "nonparticipant's": null, - "nonparticipating": null, - "nonpartisan": [["S"]], - "nonpartisans": null, - "nonpaying": null, - "nonpayment": [["S", "M"]], - "nonpayments": null, - "nonpayment's": null, - "nonperformance": [["S", "M"]], - "nonperformances": null, - "nonperformance's": null, - "nonperforming": null, - "nonperishable": [["S"]], - "nonperishables": null, - "nonperson": [["S"]], - "nonpersons": null, - "nonperturbing": null, - "nonphysical": [["Y"]], - "nonphysically": null, - "nonplus": [["S"]], - "nonpluses": null, - "nonplussed": null, - "nonplussing": null, - "nonpoisonous": null, - "nonpolitical": null, - "nonpolluting": null, - "nonporous": null, - "nonpracticing": null, - "nonprejudicial": null, - "nonprescription": null, - "nonprocedural": [["Y"]], - "nonprocedurally": null, - "nonproductive": null, - "nonprofessional": [["S"]], - "nonprofessionals": null, - "nonprofit": [["S", "B"]], - "nonprofits": null, - "nonprofitable": null, - "nonprogrammable": null, - "nonprogrammer": null, - "nonproliferation": [["S", "M"]], - "nonproliferations": null, - "nonproliferation's": null, - "nonpublic": null, - "nonpunishable": null, - "nonracial": null, - "nonradioactive": null, - "nonrandom": null, - "nonreactive": null, - "nonreciprocal": [["S"]], - "nonreciprocals": null, - "nonreciprocating": null, - "nonrecognition": [["S", "M"]], - "nonrecognitions": null, - "nonrecognition's": null, - "nonrecoverable": null, - "nonrecurring": null, - "nonredeemable": null, - "nonreducing": null, - "nonrefillable": null, - "nonrefundable": null, - "nonreligious": null, - "nonrenewable": null, - "nonrepresentational": null, - "nonresidential": null, - "nonresident": [["S", "M"]], - "nonresidents": null, - "nonresident's": null, - "nonresidual": null, - "nonresistance": [["S", "M"]], - "nonresistances": null, - "nonresistance's": null, - "nonresistant": [["S"]], - "nonresistants": null, - "nonrespondent": [["S"]], - "nonrespondents": null, - "nonresponse": null, - "nonrestrictive": null, - "nonreturnable": [["S"]], - "nonreturnables": null, - "nonrhythmic": null, - "nonrigid": null, - "nonsalaried": null, - "nonscheduled": null, - "nonscientific": null, - "nonscoring": null, - "nonseasonal": null, - "nonsectarian": null, - "nonsecular": null, - "nonsegregated": null, - "nonsense": [["M", "S"]], - "nonsense's": null, - "nonsenses": null, - "nonsensicalness": [["M"]], - "nonsensicalness's": null, - "nonsensical": [["P", "Y"]], - "nonsensically": null, - "nonsensitive": null, - "nonsexist": null, - "nonsexual": null, - "nonsingular": null, - "nonskid": null, - "nonslip": null, - "nonsmoker": [["S", "M"]], - "nonsmokers": null, - "nonsmoker's": null, - "nonsmoking": null, - "nonsocial": null, - "nonspeaking": null, - "nonspecialist": [["M", "S"]], - "nonspecialist's": null, - "nonspecialists": null, - "nonspecializing": null, - "nonspecific": null, - "nonspiritual": [["S"]], - "nonspirituals": null, - "nonstaining": null, - "nonstandard": null, - "nonstarter": [["S", "M"]], - "nonstarters": null, - "nonstarter's": null, - "nonstick": null, - "nonstop": null, - "nonstrategic": null, - "nonstriking": null, - "nonstructural": null, - "nonsuccessive": null, - "nonsupervisory": null, - "nonsupport": [["G", "S"]], - "nonsupporting": null, - "nonsupports": null, - "nonsurgical": null, - "nonsustaining": null, - "nonsympathizer": [["M"]], - "nonsympathizer's": null, - "nontarnishable": null, - "nontaxable": [["S"]], - "nontaxables": null, - "nontechnical": [["Y"]], - "nontechnically": null, - "nontenured": null, - "nonterminal": [["M", "S"]], - "nonterminal's": null, - "nonterminals": null, - "nonterminating": null, - "nontermination": [["M"]], - "nontermination's": null, - "nontheatrical": null, - "nonthinking": [["S"]], - "nonthinkings": null, - "nonthreatening": null, - "nontoxic": null, - "nontraditional": null, - "nontransferable": null, - "nontransparent": null, - "nontrivial": null, - "nontropical": null, - "nonuniform": null, - "nonunion": [["S"]], - "nonunions": null, - "nonuser": [["S", "M"]], - "nonusers": null, - "nonuser's": null, - "nonvenomous": null, - "nonverbal": [["Y"]], - "nonverbally": null, - "nonveteran": [["M", "S"]], - "nonveteran's": null, - "nonveterans": null, - "nonviable": null, - "nonviolence": [["S", "M"]], - "nonviolences": null, - "nonviolence's": null, - "nonviolent": [["Y"]], - "nonviolently": null, - "nonvirulent": null, - "nonvocal": null, - "nonvocational": null, - "nonvolatile": null, - "nonvolunteer": [["S"]], - "nonvolunteers": null, - "nonvoter": [["M", "S"]], - "nonvoter's": null, - "nonvoters": null, - "nonvoting": null, - "nonwhite": [["S", "M"]], - "nonwhites": null, - "nonwhite's": null, - "nonworking": null, - "nonyielding": null, - "nonzero": null, - "noodle": [["G", "M", "S", "D"]], - "noodling": null, - "noodle's": null, - "noodles": null, - "noodled": null, - "nook": [["M", "S"]], - "nook's": null, - "nooks": null, - "noonday": [["M", "S"]], - "noonday's": null, - "noondays": null, - "noon": [["G", "D", "M", "S"]], - "nooning": [["M"]], - "nooned": null, - "noon's": null, - "noons": null, - "nooning's": null, - "noontide": [["M", "S"]], - "noontide's": null, - "noontides": null, - "noontime": [["M", "S"]], - "noontime's": null, - "noontimes": null, - "noose": [["S", "D", "G", "M"]], - "nooses": null, - "noosed": null, - "noosing": null, - "noose's": null, - "nope": [["S"]], - "nopes": null, - "NORAD": [["M"]], - "NORAD's": null, - "noradrenalin": null, - "noradrenaline": [["M"]], - "noradrenaline's": null, - "Norah": [["M"]], - "Norah's": null, - "Nora": [["M"]], - "Nora's": null, - "Norbert": [["M"]], - "Norbert's": null, - "Norberto": [["M"]], - "Norberto's": null, - "Norbie": [["M"]], - "Norbie's": null, - "Norby": [["M"]], - "Norby's": null, - "Nordhoff": [["M"]], - "Nordhoff's": null, - "Nordic": [["S"]], - "Nordics": null, - "Nordstrom": [["M"]], - "Nordstrom's": null, - "Norean": [["M"]], - "Norean's": null, - "Noreen": [["M"]], - "Noreen's": null, - "Norene": [["M"]], - "Norene's": null, - "Norfolk": [["M"]], - "Norfolk's": null, - "nor": [["H"]], - "north": [["M", "R", "G", "Z"]], - "Norina": [["M"]], - "Norina's": null, - "Norine": [["M"]], - "Norine's": null, - "normalcy": [["M", "S"]], - "normalcy's": null, - "normalcies": null, - "normality": [["S", "M"]], - "normalities": null, - "normality's": null, - "normalization": [["A"]], - "renormalization": null, - "normalizations": null, - "normalization's": null, - "normalized": [["A", "U"]], - "renormalized": null, - "unnormalized": null, - "normalizes": [["A", "U"]], - "renormalizes": null, - "unnormalizes": null, - "normalize": [["S", "R", "D", "Z", "G", "B"]], - "normalizer": null, - "normalizers": null, - "normalizing": null, - "normalizable": null, - "normal": [["S", "Y"]], - "normals": null, - "normally": null, - "Norma": [["M"]], - "Norma's": null, - "Normand": [["M"]], - "Normand's": null, - "Normandy": [["M"]], - "Normandy's": null, - "Norman": [["S", "M"]], - "Normans": null, - "Norman's": null, - "normativeness": [["M"]], - "normativeness's": null, - "normative": [["Y", "P"]], - "normatively": null, - "Normie": [["M"]], - "Normie's": null, - "norm": [["S", "M", "G", "D"]], - "norms": null, - "norm's": null, - "norming": null, - "normed": null, - "Normy": [["M"]], - "Normy's": null, - "Norplant": null, - "Norrie": [["M"]], - "Norrie's": null, - "Norri": [["S", "M"]], - "Norris": null, - "Norri's": null, - "Norristown": [["M"]], - "Norristown's": null, - "Norry": [["M"]], - "Norry's": null, - "Norse": null, - "Norseman": [["M"]], - "Norseman's": null, - "Norsemen": null, - "Northampton": [["M"]], - "Northampton's": null, - "northbound": null, - "northeastern": null, - "northeaster": [["Y", "M"]], - "northeasterly": null, - "northeaster's": null, - "Northeast": [["S", "M"]], - "Northeasts": null, - "Northeast's": null, - "northeastward": [["S"]], - "northeastwards": null, - "northeast": [["Z", "S", "M", "R"]], - "northeasters": null, - "northeasts": null, - "northeast's": null, - "northerly": [["S"]], - "northerlies": null, - "norther": [["M", "Y"]], - "norther's": null, - "Northerner": [["M"]], - "Northerner's": null, - "northernmost": null, - "northern": [["R", "Y", "Z", "S"]], - "northerner": null, - "northernly": null, - "northerners": null, - "northerns": null, - "Northfield": [["M"]], - "Northfield's": null, - "northing": [["M"]], - "northing's": null, - "northland": null, - "North": [["M"]], - "North's": null, - "northmen": null, - "north's": null, - "northers": null, - "Northrop": [["M"]], - "Northrop's": null, - "Northrup": [["M"]], - "Northrup's": null, - "norths": null, - "Norths": null, - "Northumberland": [["M"]], - "Northumberland's": null, - "northward": [["S"]], - "northwards": null, - "northwestern": null, - "northwester": [["Y", "M"]], - "northwesterly": null, - "northwester's": null, - "northwest": [["M", "R", "Z", "S"]], - "northwest's": null, - "northwesters": null, - "northwests": null, - "Northwest": [["M", "S"]], - "Northwest's": null, - "Northwests": null, - "northwestward": [["S"]], - "northwestwards": null, - "Norton": [["M"]], - "Norton's": null, - "Norwalk": [["M"]], - "Norwalk's": null, - "Norway": [["M"]], - "Norway's": null, - "Norwegian": [["S"]], - "Norwegians": null, - "Norwich": [["M"]], - "Norwich's": null, - "Norw": [["M"]], - "Norw's": null, - "nosebag": [["M"]], - "nosebag's": null, - "nosebleed": [["S", "M"]], - "nosebleeds": null, - "nosebleed's": null, - "nosecone": [["S"]], - "nosecones": null, - "nosedive": [["D", "S", "G"]], - "nosedived": null, - "nosedives": null, - "nosediving": null, - "nosed": [["V"]], - "nosegay": [["M", "S"]], - "nosegay's": null, - "nosegays": null, - "nose": [["M"]], - "nose's": null, - "Nosferatu": [["M"]], - "Nosferatu's": null, - "nos": [["G", "D", "S"]], - "nosing": [["M"]], - "noses": null, - "nosh": [["M", "S", "D", "G"]], - "nosh's": null, - "noshes": null, - "noshed": null, - "noshing": null, - "nosily": null, - "nosiness": [["M", "S"]], - "nosiness's": null, - "nosinesses": null, - "nosing's": null, - "nostalgia": [["S", "M"]], - "nostalgias": null, - "nostalgia's": null, - "nostalgically": null, - "nostalgic": [["S"]], - "nostalgics": null, - "Nostradamus": [["M"]], - "Nostradamus's": null, - "Nostrand": [["M"]], - "Nostrand's": null, - "nostril": [["S", "M"]], - "nostrils": null, - "nostril's": null, - "nostrum": [["S", "M"]], - "nostrums": null, - "nostrum's": null, - "nosy": [["S", "R", "P", "M", "T"]], - "nosies": null, - "nosier": null, - "nosy's": null, - "nosiest": null, - "notability": [["S", "M"]], - "notabilities": null, - "notability's": null, - "notableness": [["M"]], - "notableness's": null, - "notable": [["P", "S"]], - "notables": null, - "notably": null, - "notarial": null, - "notarization": [["S"]], - "notarizations": null, - "notarize": [["D", "S", "G"]], - "notarized": null, - "notarizes": null, - "notarizing": null, - "notary": [["M", "S"]], - "notary's": null, - "notaries": null, - "notate": [["V", "G", "N", "X", "S", "D"]], - "notative": [["C", "F"]], - "notating": null, - "notation": [["C", "M", "S", "F"]], - "notations": null, - "notates": null, - "notated": null, - "notational": [["C", "Y"]], - "denotational": null, - "denotationally": null, - "notationally": null, - "denotation": null, - "denotation's": null, - "denotations": null, - "notation's": null, - "connotation's": null, - "connotations": null, - "connotation": null, - "denotative": null, - "notch": [["M", "S", "D", "G"]], - "notch's": null, - "notches": null, - "notched": null, - "notching": null, - "not": [["D", "R", "G", "B"]], - "noted": [["Y", "P"]], - "noter": null, - "noting": null, - "notebook": [["M", "S"]], - "notebook's": null, - "notebooks": null, - "note": [["C", "S", "D", "F", "G"]], - "denotes": null, - "denoted": null, - "denoting": null, - "notes": null, - "connotes": null, - "connoted": null, - "connote": null, - "connoting": null, - "notedness": [["M"]], - "notedness's": null, - "notedly": null, - "notepad": [["S"]], - "notepads": null, - "notepaper": [["M", "S"]], - "notepaper's": null, - "notepapers": null, - "note's": null, - "noteworthiness": [["S", "M"]], - "noteworthinesses": null, - "noteworthiness's": null, - "noteworthy": [["P"]], - "nothingness": [["S", "M"]], - "nothingnesses": null, - "nothingness's": null, - "nothing": [["P", "S"]], - "nothings": null, - "noticeable": [["U"]], - "unnoticeable": null, - "noticeably": null, - "noticeboard": [["S"]], - "noticeboards": null, - "noticed": [["U"]], - "unnoticed": null, - "notice": [["M", "S", "D", "G"]], - "notice's": null, - "notices": null, - "noticing": null, - "notifiable": null, - "notification": [["M"]], - "notification's": null, - "notifier": [["M"]], - "notifier's": null, - "notify": [["N", "G", "X", "S", "R", "D", "Z"]], - "notifying": null, - "notifications": null, - "notifies": null, - "notified": null, - "notifiers": null, - "notional": [["Y"]], - "notionally": null, - "notion": [["M", "S"]], - "notion's": null, - "notions": null, - "notoriety": [["S"]], - "notorieties": null, - "notoriousness": [["M"]], - "notoriousness's": null, - "notorious": [["Y", "P"]], - "notoriously": null, - "Notre": [["M"]], - "Notre's": null, - "Nottingham": [["M"]], - "Nottingham's": null, - "notwithstanding": null, - "Nouakchott": [["M"]], - "Nouakchott's": null, - "nougat": [["M", "S"]], - "nougat's": null, - "nougats": null, - "Noumea": [["M"]], - "Noumea's": null, - "noun": [["S", "M", "K"]], - "nouns": null, - "pronouns": null, - "noun's": null, - "pronoun's": null, - "pronoun": null, - "nourish": [["D", "R", "S", "G", "L"]], - "nourished": [["U"]], - "nourisher": [["M"]], - "nourishes": null, - "nourishing": null, - "nourishment": [["S", "M"]], - "unnourished": null, - "nourisher's": null, - "nourishments": null, - "nourishment's": null, - "nous": [["M"]], - "nous's": null, - "nouveau": null, - "nouvelle": null, - "novae": null, - "Novak": [["M"]], - "Novak's": null, - "Nova": [["M"]], - "Nova's": null, - "nova": [["M", "S"]], - "nova's": null, - "novas": null, - "novelette": [["S", "M"]], - "novelettes": null, - "novelette's": null, - "Novelia": [["M"]], - "Novelia's": null, - "novelist": [["S", "M"]], - "novelists": null, - "novelist's": null, - "novelization": [["S"]], - "novelizations": null, - "novelize": [["G", "D", "S"]], - "novelizing": null, - "novelized": null, - "novelizes": null, - "Novell": [["S", "M"]], - "Novells": null, - "Novell's": null, - "novella": [["S", "M"]], - "novellas": null, - "novella's": null, - "novel": [["S", "M"]], - "novels": null, - "novel's": null, - "novelty": [["M", "S"]], - "novelty's": null, - "novelties": null, - "November": [["S", "M"]], - "Novembers": null, - "November's": null, - "novena": [["S", "M"]], - "novenas": null, - "novena's": null, - "novene": null, - "Novgorod": [["M"]], - "Novgorod's": null, - "novice": [["M", "S"]], - "novice's": null, - "novices": null, - "novitiate": [["M", "S"]], - "novitiate's": null, - "novitiates": null, - "Nov": [["M"]], - "Nov's": null, - "Novocaine": [["M"]], - "Novocaine's": null, - "Novocain": [["S"]], - "Novocains": null, - "Novokuznetsk": [["M"]], - "Novokuznetsk's": null, - "Novosibirsk": [["M"]], - "Novosibirsk's": null, - "NOW": null, - "nowadays": null, - "noway": [["S"]], - "noways": null, - "Nowell": [["M"]], - "Nowell's": null, - "nowhere": [["S"]], - "nowheres": null, - "nowise": null, - "now": [["S"]], - "nows": null, - "noxiousness": [["M"]], - "noxiousness's": null, - "noxious": [["P", "Y"]], - "noxiously": null, - "Noyce": [["M"]], - "Noyce's": null, - "Noyes": [["M"]], - "Noyes's": null, - "nozzle": [["M", "S"]], - "nozzle's": null, - "nozzles": null, - "Np": null, - "NP": null, - "NRA": null, - "nroff": [["M"]], - "nroff's": null, - "N's": null, - "NS": null, - "n's": [["C", "I"]], - "den's": null, - "inn's": null, - "NSF": null, - "n": [["T"]], - "NT": null, - "nth": null, - "nuance": [["S", "D", "M"]], - "nuances": null, - "nuanced": null, - "nuance's": null, - "nubbin": [["S", "M"]], - "nubbins": null, - "nubbin's": null, - "nubby": [["R", "T"]], - "nubbier": null, - "nubbiest": null, - "Nubia": [["M"]], - "Nubia's": null, - "Nubian": [["M"]], - "Nubian's": null, - "nubile": null, - "nub": [["M", "S"]], - "nub's": null, - "nubs": null, - "nuclear": [["K"]], - "pronuclear": null, - "nuclease": [["M"]], - "nuclease's": null, - "nucleated": [["A"]], - "renucleated": null, - "nucleate": [["D", "S", "X", "N", "G"]], - "nucleates": null, - "nucleations": null, - "nucleation": [["M"]], - "nucleating": null, - "nucleation's": null, - "nucleic": null, - "nuclei": [["M"]], - "nuclei's": null, - "nucleoli": null, - "nucleolus": [["M"]], - "nucleolus's": null, - "nucleon": [["M", "S"]], - "nucleon's": null, - "nucleons": null, - "nucleotide": [["M", "S"]], - "nucleotide's": null, - "nucleotides": null, - "nucleus": [["M"]], - "nucleus's": null, - "nuclide": [["M"]], - "nuclide's": null, - "nude": [["C", "R", "S"]], - "denudes": null, - "nuder": null, - "nudes": null, - "nudely": null, - "nudeness": [["M"]], - "nudeness's": null, - "nudest": null, - "nudge": [["G", "S", "R", "D"]], - "nudging": null, - "nudges": null, - "nudger": [["M"]], - "nudged": null, - "nudger's": null, - "nudism": [["M", "S"]], - "nudism's": null, - "nudisms": null, - "nudist": [["M", "S"]], - "nudist's": null, - "nudists": null, - "nudity": [["M", "S"]], - "nudity's": null, - "nudities": null, - "nugatory": null, - "Nugent": [["M"]], - "Nugent's": null, - "nugget": [["S", "M"]], - "nuggets": null, - "nugget's": null, - "nuisance": [["M", "S"]], - "nuisance's": null, - "nuisances": null, - "nuke": [["D", "S", "M", "G"]], - "nuked": null, - "nukes": null, - "nuke's": null, - "nuking": null, - "Nukualofa": null, - "null": [["D", "S", "G"]], - "nulled": null, - "nulls": null, - "nulling": null, - "nullification": [["M"]], - "nullification's": null, - "nullifier": [["M"]], - "nullifier's": null, - "nullify": [["R", "S", "D", "X", "G", "N", "Z"]], - "nullifies": null, - "nullified": null, - "nullifications": null, - "nullifying": null, - "nullifiers": null, - "nullity": [["S", "M"]], - "nullities": null, - "nullity's": null, - "nu": [["M"]], - "nu's": null, - "numbered": [["U", "A"]], - "unnumbered": null, - "renumbered": null, - "numberer": [["M"]], - "numberer's": null, - "numberless": null, - "numberplate": [["M"]], - "numberplate's": null, - "number": [["R", "D", "M", "G", "J"]], - "number's": null, - "numbering": null, - "numberings": null, - "numbers": [["A"]], - "renumbers": null, - "Numbers": [["M"]], - "Numbers's": null, - "numbing": [["Y"]], - "numbingly": null, - "numbness": [["M", "S"]], - "numbness's": null, - "numbnesses": null, - "numb": [["S", "G", "Z", "T", "Y", "R", "D", "P"]], - "numbs": null, - "numbest": null, - "numbly": null, - "numbed": null, - "numbskull's": null, - "numerable": [["I", "C"]], - "denumerable": null, - "numeracy": [["S", "I"]], - "numeracies": null, - "innumeracies": null, - "innumeracy": null, - "numeral": [["Y", "M", "S"]], - "numerally": null, - "numeral's": null, - "numerals": null, - "numerate": [["S", "D", "N", "G", "X"]], - "numerates": [["I"]], - "numerated": null, - "numeration": [["M"]], - "numerating": null, - "numerations": null, - "innumerates": null, - "numeration's": null, - "numerator": [["M", "S"]], - "numerator's": null, - "numerators": null, - "numerical": [["Y"]], - "numerically": null, - "numeric": [["S"]], - "numerics": null, - "numerological": null, - "numerologist": [["S"]], - "numerologists": null, - "numerology": [["M", "S"]], - "numerology's": null, - "numerologies": null, - "numerousness": [["M"]], - "numerousness's": null, - "numerous": [["Y", "P"]], - "numerously": null, - "numinous": [["S"]], - "numinouses": null, - "numismatic": [["S"]], - "numismatics": [["M"]], - "numismatics's": null, - "numismatist": [["M", "S"]], - "numismatist's": null, - "numismatists": null, - "numskull": [["S", "M"]], - "numskulls": null, - "numskull's": null, - "Nunavut": [["M"]], - "Nunavut's": null, - "nuncio": [["S", "M"]], - "nuncios": null, - "nuncio's": null, - "Nunez": [["M"]], - "Nunez's": null, - "Nunki": [["M"]], - "Nunki's": null, - "nun": [["M", "S"]], - "nun's": null, - "nuns": null, - "nunnery": [["M", "S"]], - "nunnery's": null, - "nunneries": null, - "nuptial": [["S"]], - "nuptials": null, - "Nuremberg": [["M"]], - "Nuremberg's": null, - "Nureyev": [["M"]], - "Nureyev's": null, - "nursemaid": [["M", "S"]], - "nursemaid's": null, - "nursemaids": null, - "nurser": [["M"]], - "nurser's": null, - "nurseryman": [["M"]], - "nurseryman's": null, - "nurserymen": null, - "nursery": [["M", "S"]], - "nursery's": null, - "nurseries": null, - "nurse": [["S", "R", "D", "J", "G", "M", "Z"]], - "nurses": null, - "nursed": null, - "nursings": null, - "nursing": null, - "nurse's": null, - "nursers": null, - "nursling": [["M"]], - "nursling's": null, - "nurturer": [["M"]], - "nurturer's": null, - "nurture": [["S", "R", "D", "G", "Z", "M"]], - "nurtures": null, - "nurtured": null, - "nurturing": null, - "nurturers": null, - "nurture's": null, - "nus": null, - "nutate": [["N", "G", "S", "D"]], - "nutation": [["M"]], - "nutating": null, - "nutates": null, - "nutated": null, - "nutation's": null, - "nutcracker": [["M"]], - "nutcracker's": null, - "nutcrack": [["R", "Z"]], - "nutcrackers": null, - "nuthatch": [["S", "M"]], - "nuthatches": null, - "nuthatch's": null, - "nutmeat": [["S", "M"]], - "nutmeats": null, - "nutmeat's": null, - "nutmegged": null, - "nutmegging": null, - "nutmeg": [["M", "S"]], - "nutmeg's": null, - "nutmegs": null, - "nut": [["M", "S"]], - "nut's": null, - "nuts": null, - "nutpick": [["M", "S"]], - "nutpick's": null, - "nutpicks": null, - "Nutrasweet": [["M"]], - "Nutrasweet's": null, - "nutria": [["S", "M"]], - "nutrias": null, - "nutria's": null, - "nutrient": [["M", "S"]], - "nutrient's": null, - "nutrients": null, - "nutriment": [["M", "S"]], - "nutriment's": null, - "nutriments": null, - "nutritional": [["Y"]], - "nutritionally": null, - "nutritionist": [["M", "S"]], - "nutritionist's": null, - "nutritionists": null, - "nutrition": [["S", "M"]], - "nutritions": null, - "nutrition's": null, - "nutritiousness": [["M", "S"]], - "nutritiousness's": null, - "nutritiousnesses": null, - "nutritious": [["P", "Y"]], - "nutritiously": null, - "nutritive": [["Y"]], - "nutritively": null, - "nutshell": [["M", "S"]], - "nutshell's": null, - "nutshells": null, - "nutted": null, - "nuttiness": [["S", "M"]], - "nuttinesses": null, - "nuttiness's": null, - "nutting": null, - "nutty": [["T", "R", "P"]], - "nuttiest": null, - "nuttier": null, - "nuzzle": [["G", "Z", "R", "S", "D"]], - "nuzzling": null, - "nuzzlers": null, - "nuzzler": null, - "nuzzles": null, - "nuzzled": null, - "NV": null, - "NW": null, - "NWT": null, - "NY": null, - "Nyasa": [["M"]], - "Nyasa's": null, - "NYC": null, - "Nydia": [["M"]], - "Nydia's": null, - "Nye": [["M"]], - "Nye's": null, - "Nyerere": [["M"]], - "Nyerere's": null, - "nylon": [["S", "M"]], - "nylons": null, - "nylon's": null, - "nymphet": [["M", "S"]], - "nymphet's": null, - "nymphets": null, - "nymph": [["M"]], - "nymph's": null, - "nympholepsy": [["M"]], - "nympholepsy's": null, - "nymphomaniac": [["S"]], - "nymphomaniacs": null, - "nymphomania": [["M", "S"]], - "nymphomania's": null, - "nymphomanias": null, - "nymphs": null, - "Nyquist": [["M"]], - "Nyquist's": null, - "NYSE": null, - "Nyssa": [["M"]], - "Nyssa's": null, - "NZ": null, - "o": null, - "O": null, - "oafishness": [["S"]], - "oafishnesses": null, - "oafish": [["P", "Y"]], - "oafishly": null, - "oaf": [["M", "S"]], - "oaf's": null, - "oafs": null, - "Oahu": [["M"]], - "Oahu's": null, - "Oakland": [["M"]], - "Oakland's": null, - "Oakley": [["M"]], - "Oakley's": null, - "Oakmont": [["M"]], - "Oakmont's": null, - "oak": [["S", "M", "N"]], - "oaks": null, - "oak's": null, - "oaken": null, - "oakum": [["M", "S"]], - "oakum's": null, - "oakums": null, - "oakwood": null, - "oar": [["G", "S", "M", "D"]], - "oaring": null, - "oars": null, - "oar's": null, - "oared": null, - "oarlock": [["M", "S"]], - "oarlock's": null, - "oarlocks": null, - "oarsman": [["M"]], - "oarsman's": null, - "oarsmen": null, - "oarswoman": null, - "oarswomen": null, - "OAS": null, - "oases": null, - "oasis": [["M"]], - "oasis's": null, - "oatcake": [["M", "S"]], - "oatcake's": null, - "oatcakes": null, - "oater": [["M"]], - "oater's": null, - "Oates": [["M"]], - "Oates's": null, - "oath": [["M"]], - "oath's": null, - "oaths": null, - "oatmeal": [["S", "M"]], - "oatmeals": null, - "oatmeal's": null, - "oat": [["S", "M", "N", "R"]], - "oats": null, - "oat's": null, - "oaten": null, - "Oaxaca": [["M"]], - "Oaxaca's": null, - "ob": null, - "OB": null, - "Obadiah": [["M"]], - "Obadiah's": null, - "Obadias": [["M"]], - "Obadias's": null, - "obbligato": [["S"]], - "obbligatos": null, - "obduracy": [["S"]], - "obduracies": null, - "obdurateness": [["S"]], - "obduratenesses": null, - "obdurate": [["P", "D", "S", "Y", "G"]], - "obdurated": null, - "obdurates": null, - "obdurately": null, - "obdurating": null, - "Obediah": [["M"]], - "Obediah's": null, - "obedience": [["E", "M", "S"]], - "disobedience": null, - "disobedience's": null, - "disobediences": null, - "obedience's": null, - "obediences": null, - "obedient": [["E", "Y"]], - "disobedient": null, - "disobediently": null, - "obediently": null, - "Obed": [["M"]], - "Obed's": null, - "obeisance": [["M", "S"]], - "obeisance's": null, - "obeisances": null, - "obeisant": [["Y"]], - "obeisantly": null, - "obelisk": [["S", "M"]], - "obelisks": null, - "obelisk's": null, - "Oberlin": [["M"]], - "Oberlin's": null, - "Oberon": [["M"]], - "Oberon's": null, - "obese": null, - "obesity": [["M", "S"]], - "obesity's": null, - "obesities": null, - "obey": [["E", "D", "R", "G", "S"]], - "disobey": null, - "disobeyed": null, - "disobeyer": null, - "disobeying": null, - "disobeys": null, - "obeyed": null, - "obeyer": [["E", "M"]], - "obeying": null, - "obeys": null, - "disobeyer's": null, - "obeyer's": null, - "obfuscate": [["S", "R", "D", "X", "G", "N"]], - "obfuscates": null, - "obfuscater": null, - "obfuscated": null, - "obfuscations": null, - "obfuscating": null, - "obfuscation": [["M"]], - "obfuscation's": null, - "obfuscatory": null, - "Obidiah": [["M"]], - "Obidiah's": null, - "Obie": [["M"]], - "Obie's": null, - "obi": [["M", "D", "G", "S"]], - "obi's": null, - "obied": null, - "obiing": null, - "obis": null, - "obit": [["S", "M", "R"]], - "obits": null, - "obit's": null, - "obiter": null, - "obituary": [["S", "M"]], - "obituaries": null, - "obituary's": null, - "obj": null, - "objectify": [["G", "S", "D", "X", "N"]], - "objectifying": null, - "objectifies": null, - "objectified": null, - "objectifications": null, - "objectification": null, - "objectionableness": [["M"]], - "objectionableness's": null, - "objectionable": [["U"]], - "unobjectionable": null, - "objectionably": null, - "objection": [["S", "M", "B"]], - "objections": null, - "objection's": null, - "objectiveness": [["M", "S"]], - "objectiveness's": null, - "objectivenesses": null, - "objective": [["P", "Y", "S"]], - "objectively": null, - "objectives": null, - "objectivity": [["M", "S"]], - "objectivity's": null, - "objectivities": null, - "objector": [["S", "M"]], - "objectors": null, - "objector's": null, - "object": [["S", "G", "V", "M", "D"]], - "objects": null, - "objecting": null, - "object's": null, - "objected": null, - "objurgate": [["G", "N", "S", "D", "X"]], - "objurgating": null, - "objurgation": [["M"]], - "objurgates": null, - "objurgated": null, - "objurgations": null, - "objurgation's": null, - "oblate": [["N", "Y", "P", "S", "X"]], - "oblation": [["M"]], - "oblately": null, - "oblateness": null, - "oblates": null, - "oblations": null, - "oblation's": null, - "obligate": [["N", "G", "S", "D", "X", "Y"]], - "obligation": [["M"]], - "obligating": null, - "obligates": null, - "obligated": null, - "obligations": null, - "obligately": null, - "obligational": null, - "obligation's": null, - "obligatorily": null, - "obligatory": null, - "obliged": [["E"]], - "disobliged": null, - "obliger": [["M"]], - "obliger's": null, - "obliges": [["E"]], - "disobliges": null, - "oblige": [["S", "R", "D", "G"]], - "obliging": [["P", "Y"]], - "obligingness": [["M"]], - "obligingness's": null, - "obligingly": null, - "oblique": [["D", "S", "Y", "G", "P"]], - "obliqued": null, - "obliques": null, - "obliquely": null, - "obliquing": null, - "obliqueness": [["S"]], - "obliquenesses": null, - "obliquity": [["M", "S"]], - "obliquity's": null, - "obliquities": null, - "obliterate": [["V", "N", "G", "S", "D", "X"]], - "obliterative": [["Y"]], - "obliteration": [["M"]], - "obliterating": null, - "obliterates": null, - "obliterated": null, - "obliterations": null, - "obliteration's": null, - "obliteratively": null, - "oblivion": [["M", "S"]], - "oblivion's": null, - "oblivions": null, - "obliviousness": [["M", "S"]], - "obliviousness's": null, - "obliviousnesses": null, - "oblivious": [["Y", "P"]], - "obliviously": null, - "oblongness": [["M"]], - "oblongness's": null, - "oblong": [["S", "Y", "P"]], - "oblongs": null, - "oblongly": null, - "obloquies": null, - "obloquy": [["M"]], - "obloquy's": null, - "Ob": [["M", "D"]], - "Ob's": null, - "obnoxiousness": [["M", "S"]], - "obnoxiousness's": null, - "obnoxiousnesses": null, - "obnoxious": [["Y", "P"]], - "obnoxiously": null, - "oboe": [["S", "M"]], - "oboes": null, - "oboe's": null, - "oboist": [["S"]], - "oboists": null, - "obos": null, - "O'Brien": [["M"]], - "O'Brien's": null, - "obs": null, - "obscene": [["R", "Y", "T"]], - "obscener": null, - "obscenely": null, - "obscenest": null, - "obscenity": [["M", "S"]], - "obscenity's": null, - "obscenities": null, - "obscurantism": [["M", "S"]], - "obscurantism's": null, - "obscurantisms": null, - "obscurantist": [["M", "S"]], - "obscurantist's": null, - "obscurantists": null, - "obscuration": null, - "obscureness": [["M"]], - "obscureness's": null, - "obscure": [["Y", "T", "P", "D", "S", "R", "G", "L"]], - "obscurely": null, - "obscurest": null, - "obscured": null, - "obscures": null, - "obscurer": null, - "obscuring": null, - "obscurement": null, - "obscurity": [["M", "S"]], - "obscurity's": null, - "obscurities": null, - "obsequies": null, - "obsequiousness": [["S"]], - "obsequiousnesses": null, - "obsequious": [["Y", "P"]], - "obsequiously": null, - "obsequy": null, - "observability": [["M"]], - "observability's": null, - "observable": [["S", "U"]], - "observables": null, - "unobservables": null, - "unobservable": null, - "observably": null, - "observance": [["M", "S"]], - "observance's": null, - "observances": null, - "observantly": null, - "observants": null, - "observant": [["U"]], - "unobservant": null, - "observational": [["Y"]], - "observationally": null, - "observation": [["M", "S"]], - "observation's": null, - "observations": null, - "observatory": [["M", "S"]], - "observatory's": null, - "observatories": null, - "observed": [["U"]], - "unobserved": null, - "observer": [["M"]], - "observer's": null, - "observe": [["Z", "G", "D", "S", "R", "B"]], - "observers": null, - "observing": [["Y"]], - "observes": null, - "observingly": null, - "obsess": [["G", "V", "D", "S"]], - "obsessing": null, - "obsessive": [["P", "Y", "S"]], - "obsessed": null, - "obsesses": null, - "obsessional": null, - "obsession": [["M", "S"]], - "obsession's": null, - "obsessions": null, - "obsessiveness": [["S"]], - "obsessivenesses": null, - "obsessively": null, - "obsessives": null, - "obsidian": [["S", "M"]], - "obsidians": null, - "obsidian's": null, - "obsolesce": [["G", "S", "D"]], - "obsolescing": null, - "obsolesces": null, - "obsolesced": null, - "obsolescence": [["S"]], - "obsolescences": null, - "obsolescent": [["Y"]], - "obsolescently": null, - "obsolete": [["G", "P", "D", "S", "Y"]], - "obsoleting": null, - "obsoleteness": [["M"]], - "obsoleted": null, - "obsoletes": null, - "obsoletely": null, - "obsoleteness's": null, - "obstacle": [["S", "M"]], - "obstacles": null, - "obstacle's": null, - "obstetrical": null, - "obstetrician": [["S", "M"]], - "obstetricians": null, - "obstetrician's": null, - "obstetric": [["S"]], - "obstetrics": [["M"]], - "obstetrics's": null, - "obstinacy": [["S", "M"]], - "obstinacies": null, - "obstinacy's": null, - "obstinateness": [["M"]], - "obstinateness's": null, - "obstinate": [["P", "Y"]], - "obstinately": null, - "obstreperousness": [["S", "M"]], - "obstreperousnesses": null, - "obstreperousness's": null, - "obstreperous": [["P", "Y"]], - "obstreperously": null, - "obstructed": [["U"]], - "unobstructed": null, - "obstructer": [["M"]], - "obstructer's": null, - "obstructionism": [["S", "M"]], - "obstructionisms": null, - "obstructionism's": null, - "obstructionist": [["M", "S"]], - "obstructionist's": null, - "obstructionists": null, - "obstruction": [["S", "M"]], - "obstructions": null, - "obstruction's": null, - "obstructiveness": [["M", "S"]], - "obstructiveness's": null, - "obstructivenesses": null, - "obstructive": [["P", "S", "Y"]], - "obstructives": null, - "obstructively": null, - "obstruct": [["R", "D", "V", "G", "S"]], - "obstructing": null, - "obstructs": null, - "obtainable": [["U"]], - "unobtainable": null, - "obtainably": null, - "obtain": [["L", "S", "G", "D", "R", "B"]], - "obtainment": [["S"]], - "obtains": null, - "obtaining": null, - "obtained": null, - "obtainer": null, - "obtainments": null, - "obtrude": [["D", "S", "R", "G"]], - "obtruded": null, - "obtrudes": null, - "obtruder": [["M"]], - "obtruding": null, - "obtruder's": null, - "obtrusion": [["S"]], - "obtrusions": null, - "obtrusiveness": [["M", "S", "U"]], - "obtrusiveness's": null, - "unobtrusiveness's": null, - "obtrusivenesses": null, - "unobtrusivenesses": null, - "unobtrusiveness": null, - "obtrusive": [["U", "P", "Y"]], - "unobtrusive": null, - "unobtrusively": null, - "obtrusively": null, - "obtuseness": [["S"]], - "obtusenesses": null, - "obtuse": [["P", "R", "T", "Y"]], - "obtuser": null, - "obtusest": null, - "obtusely": null, - "obverse": [["Y", "S"]], - "obversely": null, - "obverses": null, - "obviate": [["X", "G", "N", "D", "S"]], - "obviations": null, - "obviating": null, - "obviation": null, - "obviated": null, - "obviates": null, - "obviousness": [["S", "M"]], - "obviousnesses": null, - "obviousness's": null, - "obvious": [["Y", "P"]], - "obviously": null, - "Oby": [["M"]], - "Oby's": null, - "ocarina": [["M", "S"]], - "ocarina's": null, - "ocarinas": null, - "O'Casey": null, - "Occam": [["M"]], - "Occam's": null, - "occasional": [["Y"]], - "occasionally": null, - "occasion": [["M", "D", "S", "J", "G"]], - "occasion's": null, - "occasioned": null, - "occasions": null, - "occasionings": null, - "occasioning": null, - "Occidental": [["S"]], - "Occidentals": null, - "occidental": [["S", "Y"]], - "occidentals": null, - "occidentally": null, - "occident": [["M"]], - "occident's": null, - "Occident": [["S", "M"]], - "Occidents": null, - "Occident's": null, - "occipital": [["Y"]], - "occipitally": null, - "occlude": [["G", "S", "D"]], - "occluding": null, - "occludes": null, - "occluded": null, - "occlusion": [["M", "S"]], - "occlusion's": null, - "occlusions": null, - "occlusive": [["S"]], - "occlusives": null, - "occulter": [["M"]], - "occulter's": null, - "occultism": [["S", "M"]], - "occultisms": null, - "occultism's": null, - "occult": [["S", "R", "D", "Y", "G"]], - "occults": null, - "occulted": null, - "occultly": null, - "occulting": null, - "occupancy": [["S", "M"]], - "occupancies": null, - "occupancy's": null, - "occupant": [["M", "S"]], - "occupant's": null, - "occupants": null, - "occupational": [["Y"]], - "occupationally": null, - "occupation": [["S", "A", "M"]], - "occupations": null, - "reoccupations": null, - "reoccupation": null, - "reoccupation's": null, - "occupation's": null, - "occupied": [["A", "U"]], - "reoccupied": null, - "unoccupied": null, - "occupier": [["M"]], - "occupier's": null, - "occupies": [["A"]], - "reoccupies": null, - "occupy": [["R", "S", "D", "Z", "G"]], - "occupiers": null, - "occupying": null, - "occur": [["A", "S"]], - "reoccur": null, - "reoccurs": null, - "occurs": null, - "occurred": [["A"]], - "reoccurred": null, - "occurrence": [["S", "M"]], - "occurrences": null, - "occurrence's": null, - "occurring": [["A"]], - "reoccurring": null, - "oceanfront": [["M", "S"]], - "oceanfront's": null, - "oceanfronts": null, - "oceangoing": null, - "Oceania": [["M"]], - "Oceania's": null, - "oceanic": null, - "ocean": [["M", "S"]], - "ocean's": null, - "oceans": null, - "oceanographer": [["S", "M"]], - "oceanographers": null, - "oceanographer's": null, - "oceanographic": null, - "oceanography": [["S", "M"]], - "oceanographies": null, - "oceanography's": null, - "oceanology": [["M", "S"]], - "oceanology's": null, - "oceanologies": null, - "oceanside": null, - "Oceanside": [["M"]], - "Oceanside's": null, - "Oceanus": [["M"]], - "Oceanus's": null, - "ocelot": [["S", "M"]], - "ocelots": null, - "ocelot's": null, - "ocher": [["D", "M", "G", "S"]], - "ochered": null, - "ocher's": null, - "ochering": null, - "ochers": null, - "Ochoa": [["M"]], - "Ochoa's": null, - "o'clock": null, - "O'Clock": null, - "O'Connell": [["M"]], - "O'Connell's": null, - "O'Connor": [["M"]], - "O'Connor's": null, - "Oconomowoc": [["M"]], - "Oconomowoc's": null, - "OCR": null, - "octagonal": [["Y"]], - "octagonally": null, - "octagon": [["S", "M"]], - "octagons": null, - "octagon's": null, - "octahedral": null, - "octahedron": [["M"]], - "octahedron's": null, - "octal": [["S"]], - "octals": null, - "octane": [["M", "S"]], - "octane's": null, - "octanes": null, - "octant": [["M"]], - "octant's": null, - "octave": [["M", "S"]], - "octave's": null, - "octaves": null, - "Octavia": [["M"]], - "Octavia's": null, - "Octavian": [["M"]], - "Octavian's": null, - "Octavio": [["M"]], - "Octavio's": null, - "Octavius": [["M"]], - "Octavius's": null, - "octavo": [["M", "S"]], - "octavo's": null, - "octavos": null, - "octennial": null, - "octet": [["S", "M"]], - "octets": null, - "octet's": null, - "octile": null, - "octillion": [["M"]], - "octillion's": null, - "Oct": [["M"]], - "Oct's": null, - "October": [["M", "S"]], - "October's": null, - "Octobers": null, - "octogenarian": [["M", "S"]], - "octogenarian's": null, - "octogenarians": null, - "octopus": [["S", "M"]], - "octopuses": null, - "octopus's": null, - "octoroon": [["M"]], - "octoroon's": null, - "ocular": [["S"]], - "oculars": null, - "oculist": [["S", "M"]], - "oculists": null, - "oculist's": null, - "OD": null, - "odalisque": [["S", "M"]], - "odalisques": null, - "odalisque's": null, - "oddball": [["S", "M"]], - "oddballs": null, - "oddball's": null, - "oddity": [["M", "S"]], - "oddity's": null, - "oddities": null, - "oddment": [["M", "S"]], - "oddment's": null, - "oddments": null, - "oddness": [["M", "S"]], - "oddness's": null, - "oddnesses": null, - "odd": [["T", "R", "Y", "S", "P", "L"]], - "oddest": null, - "odder": null, - "oddly": null, - "odds": null, - "Odele": [["M"]], - "Odele's": null, - "Odelia": [["M"]], - "Odelia's": null, - "Odelinda": [["M"]], - "Odelinda's": null, - "Odella": [["M"]], - "Odella's": null, - "Odelle": [["M"]], - "Odelle's": null, - "Odell": [["M"]], - "Odell's": null, - "O'Dell": [["M"]], - "O'Dell's": null, - "ode": [["M", "D", "R", "S"]], - "ode's": null, - "oded": null, - "oder": null, - "odes": null, - "Ode": [["M", "R"]], - "Ode's": null, - "Oder": [["M"]], - "Oderberg": [["M", "S"]], - "Oderberg's": null, - "Oderbergs": null, - "Oder's": null, - "Odessa": [["M"]], - "Odessa's": null, - "Odets": [["M"]], - "Odets's": null, - "Odetta": [["M"]], - "Odetta's": null, - "Odette": [["M"]], - "Odette's": null, - "Odey": [["M"]], - "Odey's": null, - "Odie": [["M"]], - "Odie's": null, - "Odilia": [["M"]], - "Odilia's": null, - "Odille": [["M"]], - "Odille's": null, - "Odin": [["M"]], - "Odin's": null, - "odiousness": [["M", "S"]], - "odiousness's": null, - "odiousnesses": null, - "odious": [["P", "Y"]], - "odiously": null, - "Odis": [["M"]], - "Odis's": null, - "odium": [["M", "S"]], - "odium's": null, - "odiums": null, - "Odo": [["M"]], - "Odo's": null, - "odometer": [["S", "M"]], - "odometers": null, - "odometer's": null, - "Odom": [["M"]], - "Odom's": null, - "O'Donnell": [["M"]], - "O'Donnell's": null, - "odor": [["D", "M", "S"]], - "odored": null, - "odor's": null, - "odors": null, - "odoriferous": null, - "odorless": null, - "odorous": [["Y", "P"]], - "odorously": null, - "odorousness": null, - "ODs": null, - "O'Dwyer": [["M"]], - "O'Dwyer's": null, - "Ody": [["M"]], - "Ody's": null, - "Odysseus": [["M"]], - "Odysseus's": null, - "Odyssey": [["M"]], - "Odyssey's": null, - "odyssey": [["S"]], - "odysseys": null, - "OE": null, - "OED": null, - "oedipal": null, - "Oedipal": [["Y"]], - "Oedipally": null, - "Oedipus": [["M"]], - "Oedipus's": null, - "OEM": [["M"]], - "OEM's": null, - "OEMS": null, - "oenology": [["M", "S"]], - "oenology's": null, - "oenologies": null, - "oenophile": [["S"]], - "oenophiles": null, - "o'er": null, - "O'Er": null, - "Oersted": [["M"]], - "Oersted's": null, - "oesophagi": null, - "oeuvre": [["S", "M"]], - "oeuvres": null, - "oeuvre's": null, - "Ofelia": [["M"]], - "Ofelia's": null, - "Ofella": [["M"]], - "Ofella's": null, - "offal": [["M", "S"]], - "offal's": null, - "offals": null, - "offbeat": [["M", "S"]], - "offbeat's": null, - "offbeats": null, - "offcuts": null, - "Offenbach": [["M"]], - "Offenbach's": null, - "offender": [["M"]], - "offender's": null, - "offend": [["S", "Z", "G", "D", "R"]], - "offends": null, - "offenders": null, - "offending": null, - "offended": null, - "offense": [["M", "S", "V"]], - "offense's": null, - "offenses": null, - "offensive": [["Y", "S", "P"]], - "offensively": [["I"]], - "inoffensively": null, - "offensiveness": [["M", "S", "I"]], - "offensiveness's": null, - "inoffensiveness's": null, - "offensivenesses": null, - "inoffensivenesses": null, - "offensives": null, - "offerer": [["M"]], - "offerer's": null, - "offering": [["M"]], - "offering's": null, - "offer": [["R", "D", "J", "G", "Z"]], - "offered": null, - "offerings": null, - "offerers": null, - "offertory": [["S", "M"]], - "offertories": null, - "offertory's": null, - "offhand": [["D"]], - "offhanded": [["Y", "P"]], - "offhandedness": [["S"]], - "offhandednesses": null, - "offhandedly": null, - "officeholder": [["S", "M"]], - "officeholders": null, - "officeholder's": null, - "officemate": [["S"]], - "officemates": null, - "officer": [["G", "M", "D"]], - "officering": null, - "officer's": null, - "officered": null, - "officership": [["S"]], - "officerships": null, - "office": [["S", "R", "M", "Z"]], - "offices": null, - "office's": null, - "officers": null, - "officialdom": [["S", "M"]], - "officialdoms": null, - "officialdom's": null, - "officialism": [["S", "M"]], - "officialisms": null, - "officialism's": null, - "officially": [["U"]], - "unofficially": null, - "official": [["P", "S", "Y", "M"]], - "officialness": null, - "officials": null, - "official's": null, - "officiant": [["S", "M"]], - "officiants": null, - "officiant's": null, - "officiate": [["X", "S", "D", "N", "G"]], - "officiations": null, - "officiates": null, - "officiated": null, - "officiation": [["M"]], - "officiating": null, - "officiation's": null, - "officiator": [["M", "S"]], - "officiator's": null, - "officiators": null, - "officio": null, - "officiousness": [["M", "S"]], - "officiousness's": null, - "officiousnesses": null, - "officious": [["Y", "P"]], - "officiously": null, - "offing": [["M"]], - "offing's": null, - "offish": null, - "offload": [["G", "D", "S"]], - "offloading": null, - "offloaded": null, - "offloads": null, - "offprint": [["G", "S", "D", "M"]], - "offprinting": null, - "offprints": null, - "offprinted": null, - "offprint's": null, - "offramp": null, - "offset": [["S", "M"]], - "offsets": null, - "offset's": null, - "offsetting": null, - "offshoot": [["M", "S"]], - "offshoot's": null, - "offshoots": null, - "offshore": null, - "offside": [["R", "S"]], - "offsider": null, - "offsides": null, - "offspring": [["M"]], - "offspring's": null, - "offstage": [["S"]], - "offstages": null, - "off": [["S", "Z", "G", "D", "R", "J"]], - "offs": null, - "offers": null, - "offed": null, - "offings": null, - "offtrack": null, - "Ofilia": [["M"]], - "Ofilia's": null, - "of": [["K"]], - "proof": [["S", "E", "A", "M"]], - "often": [["R", "T"]], - "oftener": null, - "oftenest": null, - "oftentimes": null, - "oft": [["N", "R", "T"]], - "ofter": null, - "oftest": null, - "ofttimes": null, - "Ogbomosho": [["M"]], - "Ogbomosho's": null, - "Ogdan": [["M"]], - "Ogdan's": null, - "Ogden": [["M"]], - "Ogden's": null, - "Ogdon": [["M"]], - "Ogdon's": null, - "Ogilvy": [["M"]], - "Ogilvy's": null, - "ogive": [["M"]], - "ogive's": null, - "Oglethorpe": [["M"]], - "Oglethorpe's": null, - "ogle": [["Z", "G", "D", "S", "R"]], - "oglers": null, - "ogling": null, - "ogled": null, - "ogles": null, - "ogler": null, - "ogreish": null, - "ogre": [["M", "S"]], - "ogre's": null, - "ogres": null, - "ogress": [["S"]], - "ogresses": null, - "oh": null, - "OH": null, - "O'Hara": null, - "O'Hare": [["M"]], - "O'Hare's": null, - "O'Higgins": null, - "Ohioan": [["S"]], - "Ohioans": null, - "Ohio": [["M"]], - "Ohio's": null, - "ohmic": null, - "ohmmeter": [["M", "S"]], - "ohmmeter's": null, - "ohmmeters": null, - "ohm": [["S", "M"]], - "ohms": null, - "ohm's": null, - "oho": [["S"]], - "ohos": null, - "ohs": null, - "OHSA": [["M"]], - "OHSA's": null, - "oilcloth": [["M"]], - "oilcloth's": null, - "oilcloths": null, - "oiler": [["M"]], - "oiler's": null, - "oilfield": [["M", "S"]], - "oilfield's": null, - "oilfields": null, - "oiliness": [["S", "M"]], - "oilinesses": null, - "oiliness's": null, - "oilman": [["M"]], - "oilman's": null, - "oil": [["M", "D", "R", "S", "Z", "G"]], - "oil's": null, - "oiled": null, - "oils": null, - "oilers": null, - "oiling": null, - "oilmen": null, - "oilseed": [["S", "M"]], - "oilseeds": null, - "oilseed's": null, - "oilskin": [["M", "S"]], - "oilskin's": null, - "oilskins": null, - "oily": [["T", "P", "R"]], - "oiliest": null, - "oilier": null, - "oink": [["G", "D", "S"]], - "oinking": null, - "oinked": null, - "oinks": null, - "ointment": [["S", "M"]], - "ointments": null, - "ointment's": null, - "Oise": [["M"]], - "Oise's": null, - "OJ": null, - "Ojibwa": [["S", "M"]], - "Ojibwas": null, - "Ojibwa's": null, - "Okamoto": [["M"]], - "Okamoto's": null, - "okapi": [["S", "M"]], - "okapis": null, - "okapi's": null, - "Okayama": [["M"]], - "Okayama's": null, - "okay": [["M"]], - "okay's": null, - "Okeechobee": [["M"]], - "Okeechobee's": null, - "O'Keeffe": null, - "Okefenokee": null, - "Okhotsk": [["M"]], - "Okhotsk's": null, - "Okinawa": [["M"]], - "Okinawa's": null, - "Okinawan": [["S"]], - "Okinawans": null, - "Oklahoma": [["M"]], - "Oklahoma's": null, - "Oklahoman": [["S", "M"]], - "Oklahomans": null, - "Oklahoman's": null, - "Okla": [["M"]], - "Okla's": null, - "OK": [["M", "D", "G"]], - "OK's": null, - "OKed": null, - "OKing": null, - "okra": [["M", "S"]], - "okra's": null, - "okras": null, - "OKs": null, - "Oktoberfest": null, - "Olaf": [["M"]], - "Olaf's": null, - "Olag": [["M"]], - "Olag's": null, - "Ola": [["M"]], - "Ola's": null, - "Olav": [["M"]], - "Olav's": null, - "Oldenburg": [["M"]], - "Oldenburg's": null, - "olden": [["D", "G"]], - "oldened": null, - "oldening": null, - "Oldfield": [["M"]], - "Oldfield's": null, - "oldie": [["M", "S"]], - "oldie's": null, - "oldies": null, - "oldish": null, - "oldness": [["S"]], - "oldnesses": null, - "Oldsmobile": [["M"]], - "Oldsmobile's": null, - "oldster": [["S", "M"]], - "oldsters": null, - "oldster's": null, - "Olduvai": [["M"]], - "Olduvai's": null, - "old": [["X", "T", "N", "R", "P", "S"]], - "oldens": null, - "oldest": null, - "older": null, - "olds": null, - "ol�": null, - "oleaginous": null, - "oleander": [["S", "M"]], - "oleanders": null, - "oleander's": null, - "O'Leary": [["M"]], - "O'Leary's": null, - "olefin": [["M"]], - "olefin's": null, - "Oleg": [["M"]], - "Oleg's": null, - "Ole": [["M", "V"]], - "Ole's": null, - "Olive": [["M", "Z", "R"]], - "Olenek": [["M"]], - "Olenek's": null, - "Olenka": [["M"]], - "Olenka's": null, - "Olen": [["M"]], - "Olen's": null, - "Olenolin": [["M"]], - "Olenolin's": null, - "oleomargarine": [["S", "M"]], - "oleomargarines": null, - "oleomargarine's": null, - "oleo": [["S"]], - "oleos": null, - "oles": null, - "olfactory": null, - "Olga": [["M"]], - "Olga's": null, - "Olia": [["M"]], - "Olia's": null, - "oligarchic": null, - "oligarchical": null, - "oligarch": [["M"]], - "oligarch's": null, - "oligarchs": null, - "oligarchy": [["S", "M"]], - "oligarchies": null, - "oligarchy's": null, - "Oligocene": null, - "oligopolistic": null, - "oligopoly": [["M", "S"]], - "oligopoly's": null, - "oligopolies": null, - "Olimpia": [["M"]], - "Olimpia's": null, - "Olin": [["M"]], - "Olin's": null, - "olive": [["M", "S", "R"]], - "olive's": null, - "olives": null, - "oliver": null, - "Olive's": null, - "Olivers": null, - "Oliver": [["M"]], - "Oliver's": null, - "Olivero": [["M"]], - "Olivero's": null, - "Olivette": [["M"]], - "Olivette's": null, - "Olivetti": [["M"]], - "Olivetti's": null, - "Olivia": [["M"]], - "Olivia's": null, - "Olivier": [["M"]], - "Olivier's": null, - "Olivie": [["R", "M"]], - "Olivie's": null, - "Oliviero": [["M"]], - "Oliviero's": null, - "Oliy": [["M"]], - "Oliy's": null, - "Ollie": [["M"]], - "Ollie's": null, - "Olly": [["M"]], - "Olly's": null, - "Olmec": null, - "Olmsted": [["M"]], - "Olmsted's": null, - "Olsen": [["M"]], - "Olsen's": null, - "Olson": [["M"]], - "Olson's": null, - "Olva": [["M"]], - "Olva's": null, - "Olvan": [["M"]], - "Olvan's": null, - "Olwen": [["M"]], - "Olwen's": null, - "Olympe": [["M"]], - "Olympe's": null, - "Olympiad": [["M", "S"]], - "Olympiad's": null, - "Olympiads": null, - "Olympian": [["S"]], - "Olympians": null, - "Olympia": [["S", "M"]], - "Olympias": null, - "Olympia's": null, - "Olympic": [["S"]], - "Olympics": null, - "Olympie": [["M"]], - "Olympie's": null, - "Olympus": [["M"]], - "Olympus's": null, - "Omaha": [["S", "M"]], - "Omahas": null, - "Omaha's": null, - "Oman": [["M"]], - "Oman's": null, - "Omar": [["M"]], - "Omar's": null, - "ombudsman": [["M"]], - "ombudsman's": null, - "ombudsmen": null, - "Omdurman": [["M"]], - "Omdurman's": null, - "omega": [["M", "S"]], - "omega's": null, - "omegas": null, - "omelet": [["S", "M"]], - "omelets": null, - "omelet's": null, - "omelette's": null, - "omen": [["D", "M", "G"]], - "omened": null, - "omen's": null, - "omening": null, - "Omero": [["M"]], - "Omero's": null, - "omicron": [["M", "S"]], - "omicron's": null, - "omicrons": null, - "ominousness": [["S", "M"]], - "ominousnesses": null, - "ominousness's": null, - "ominous": [["Y", "P"]], - "ominously": null, - "omission": [["M", "S"]], - "omission's": null, - "omissions": null, - "omit": [["S"]], - "omits": null, - "omitted": null, - "omitting": null, - "omnibus": [["M", "S"]], - "omnibus's": null, - "omnibuses": null, - "omni": [["M"]], - "omni's": null, - "omnipotence": [["S", "M"]], - "omnipotences": null, - "omnipotence's": null, - "Omnipotent": null, - "omnipotent": [["S", "Y"]], - "omnipotents": null, - "omnipotently": null, - "omnipresence": [["M", "S"]], - "omnipresence's": null, - "omnipresences": null, - "omnipresent": [["Y"]], - "omnipresently": null, - "omniscience": [["S", "M"]], - "omnisciences": null, - "omniscience's": null, - "omniscient": [["Y", "S"]], - "omnisciently": null, - "omniscients": null, - "omnivore": [["M", "S"]], - "omnivore's": null, - "omnivores": null, - "omnivorousness": [["M", "S"]], - "omnivorousness's": null, - "omnivorousnesses": null, - "omnivorous": [["P", "Y"]], - "omnivorously": null, - "oms": null, - "Omsk": [["M"]], - "Omsk's": null, - "om": [["X", "N"]], - "omens": null, - "ON": null, - "onanism": [["M"]], - "onanism's": null, - "Onassis": [["M"]], - "Onassis's": null, - "oncer": [["M"]], - "oncer's": null, - "once": [["S", "R"]], - "onces": null, - "oncogene": [["S"]], - "oncogenes": null, - "oncologist": [["S"]], - "oncologists": null, - "oncology": [["S", "M"]], - "oncologies": null, - "oncology's": null, - "oncoming": [["S"]], - "oncomings": null, - "Ondrea": [["M"]], - "Ondrea's": null, - "Oneal": [["M"]], - "Oneal's": null, - "Onega": [["M"]], - "Onega's": null, - "Onegin": [["M"]], - "Onegin's": null, - "Oneida": [["S", "M"]], - "Oneidas": null, - "Oneida's": null, - "O'Neil": null, - "O'Neill": null, - "oneness": [["M", "S"]], - "oneness's": null, - "onenesses": null, - "one": [["N", "P", "M", "S", "X"]], - "onion": [["G", "D", "M"]], - "one's": null, - "ones": null, - "onions": null, - "oner": [["M"]], - "oner's": null, - "onerousness": [["S", "M"]], - "onerousnesses": null, - "onerousness's": null, - "onerous": [["Y", "P"]], - "onerously": null, - "oneself": null, - "onetime": null, - "oneupmanship": null, - "Onfre": [["M"]], - "Onfre's": null, - "Onfroi": [["M"]], - "Onfroi's": null, - "ongoing": [["S"]], - "ongoings": null, - "Onida": [["M"]], - "Onida's": null, - "onioning": null, - "onioned": null, - "onion's": null, - "onionskin": [["M", "S"]], - "onionskin's": null, - "onionskins": null, - "onlooker": [["M", "S"]], - "onlooker's": null, - "onlookers": null, - "onlooking": null, - "only": [["T", "P"]], - "onliest": null, - "onliness": null, - "Onofredo": [["M"]], - "Onofredo's": null, - "Ono": [["M"]], - "Ono's": null, - "onomatopoeia": [["S", "M"]], - "onomatopoeias": null, - "onomatopoeia's": null, - "onomatopoeic": null, - "onomatopoetic": null, - "Onondaga": [["M", "S"]], - "Onondaga's": null, - "Onondagas": null, - "onrush": [["G", "M", "S"]], - "onrushing": null, - "onrush's": null, - "onrushes": null, - "on": [["R", "Y"]], - "ons": null, - "Onsager": [["M"]], - "Onsager's": null, - "onset": [["S", "M"]], - "onsets": null, - "onset's": null, - "onsetting": null, - "onshore": null, - "onside": null, - "onslaught": [["M", "S"]], - "onslaught's": null, - "onslaughts": null, - "Ontarian": [["S"]], - "Ontarians": null, - "Ontario": [["M"]], - "Ontario's": null, - "Ont": [["M"]], - "Ont's": null, - "onto": null, - "ontogeny": [["S", "M"]], - "ontogenies": null, - "ontogeny's": null, - "ontological": [["Y"]], - "ontologically": null, - "ontology": [["S", "M"]], - "ontologies": null, - "ontology's": null, - "onus": [["S", "M"]], - "onuses": null, - "onus's": null, - "onward": [["S"]], - "onwards": null, - "onyx": [["M", "S"]], - "onyx's": null, - "onyxes": null, - "oodles": null, - "ooh": [["G", "D"]], - "oohing": null, - "oohed": null, - "oohs": null, - "oolitic": null, - "Oona": [["M"]], - "Oona's": null, - "OOo": [["M"]], - "OOo's": null, - "oops": [["S"]], - "oopses": null, - "Oort": [["M"]], - "Oort's": null, - "ooze": [["G", "D", "S"]], - "oozing": null, - "oozed": null, - "oozes": null, - "oozy": [["R", "T"]], - "oozier": null, - "ooziest": null, - "opacity": [["S", "M"]], - "opacities": null, - "opacity's": null, - "opalescence": [["S"]], - "opalescences": null, - "opalescent": [["Y"]], - "opalescently": null, - "Opalina": [["M"]], - "Opalina's": null, - "Opaline": [["M"]], - "Opaline's": null, - "Opal": [["M"]], - "Opal's": null, - "opal": [["S", "M"]], - "opals": null, - "opal's": null, - "opaque": [["G", "T", "P", "Y", "R", "S", "D"]], - "opaquing": null, - "opaquest": null, - "opaqueness": [["S", "M"]], - "opaquely": null, - "opaquer": null, - "opaques": null, - "opaqued": null, - "opaquenesses": null, - "opaqueness's": null, - "opcode": [["M", "S"]], - "opcode's": null, - "opcodes": null, - "OPEC": null, - "Opel": [["M"]], - "Opel's": null, - "opencast": null, - "opened": [["A", "U"]], - "reopened": null, - "unopened": null, - "opener": [["M"]], - "opener's": null, - "openhandedness": [["S", "M"]], - "openhandednesses": null, - "openhandedness's": null, - "openhanded": [["P"]], - "openhearted": null, - "opening": [["M"]], - "opening's": null, - "openness": [["S"]], - "opennesses": null, - "OpenOffice.org": [["M"]], - "OpenOffice.org's": null, - "opens": [["A"]], - "reopens": null, - "openwork": [["M", "S"]], - "openwork's": null, - "openworks": null, - "open": [["Y", "R", "D", "J", "G", "Z", "T", "P"]], - "openly": null, - "openings": null, - "openers": null, - "openest": null, - "operable": [["I"]], - "inoperable": null, - "operandi": null, - "operand": [["S", "M"]], - "operands": null, - "operand's": null, - "operant": [["Y", "S"]], - "operantly": null, - "operants": null, - "opera": [["S", "M"]], - "operas": null, - "opera's": null, - "operate": [["X", "N", "G", "V", "D", "S"]], - "operations": null, - "operation": [["M"]], - "operating": null, - "operative": [["I", "P"]], - "operated": null, - "operates": null, - "operatically": null, - "operatic": [["S"]], - "operatics": null, - "operationalization": [["S"]], - "operationalizations": null, - "operationalize": [["D"]], - "operationalized": null, - "operational": [["Y"]], - "operationally": null, - "operation's": null, - "inoperative": null, - "inoperativeness": null, - "operativeness": [["M", "I"]], - "operatively": null, - "operativeness's": null, - "inoperativeness's": null, - "operatives": null, - "operator": [["S", "M"]], - "operators": null, - "operator's": null, - "operetta": [["M", "S"]], - "operetta's": null, - "operettas": null, - "ope": [["S"]], - "opes": null, - "Ophelia": [["M"]], - "Ophelia's": null, - "Ophelie": [["M"]], - "Ophelie's": null, - "Ophiuchus": [["M"]], - "Ophiuchus's": null, - "ophthalmic": [["S"]], - "ophthalmics": null, - "ophthalmologist": [["S", "M"]], - "ophthalmologists": null, - "ophthalmologist's": null, - "ophthalmology": [["M", "S"]], - "ophthalmology's": null, - "ophthalmologies": null, - "opiate": [["G", "M", "S", "D"]], - "opiating": null, - "opiate's": null, - "opiates": null, - "opiated": null, - "opine": [["X", "G", "N", "S", "D"]], - "opinions": null, - "opining": null, - "opinion": [["M"]], - "opines": null, - "opined": null, - "opinionatedness": [["M"]], - "opinionatedness's": null, - "opinionated": [["P", "Y"]], - "opinionatedly": null, - "opinion's": null, - "opioid": null, - "opium": [["M", "S"]], - "opium's": null, - "opiums": null, - "opossum": [["S", "M"]], - "opossums": null, - "opossum's": null, - "opp": null, - "Oppenheimer": [["M"]], - "Oppenheimer's": null, - "opponent": [["M", "S"]], - "opponent's": null, - "opponents": null, - "opportune": [["I", "Y"]], - "inopportunely": null, - "opportunely": null, - "opportunism": [["S", "M"]], - "opportunisms": null, - "opportunism's": null, - "opportunistic": null, - "opportunistically": null, - "opportunist": [["S", "M"]], - "opportunists": null, - "opportunist's": null, - "opportunity": [["M", "S"]], - "opportunity's": null, - "opportunities": null, - "oppose": [["B", "R", "S", "D", "G"]], - "opposable": null, - "opposer": [["M"]], - "opposes": null, - "opposed": [["U"]], - "opposing": null, - "unopposed": null, - "opposer's": null, - "oppositeness": [["M"]], - "oppositeness's": null, - "opposite": [["S", "X", "Y", "N", "P"]], - "opposites": null, - "oppositions": null, - "oppositely": null, - "opposition": [["M"]], - "oppositional": null, - "opposition's": null, - "oppress": [["D", "S", "G", "V"]], - "oppressed": null, - "oppresses": null, - "oppressing": null, - "oppressive": [["Y", "P"]], - "oppression": [["M", "S"]], - "oppression's": null, - "oppressions": null, - "oppressiveness": [["M", "S"]], - "oppressiveness's": null, - "oppressivenesses": null, - "oppressively": null, - "oppressor": [["M", "S"]], - "oppressor's": null, - "oppressors": null, - "opprobrious": [["Y"]], - "opprobriously": null, - "opprobrium": [["S", "M"]], - "opprobriums": null, - "opprobrium's": null, - "Oprah": [["M"]], - "Oprah's": null, - "ops": null, - "opt": [["D", "S", "G"]], - "opted": null, - "opts": null, - "opting": null, - "opthalmic": null, - "opthalmologic": null, - "opthalmology": null, - "optical": [["Y"]], - "optically": null, - "optician": [["S", "M"]], - "opticians": null, - "optician's": null, - "optic": [["S"]], - "optics": [["M"]], - "optics's": null, - "optima": null, - "optimality": null, - "optimal": [["Y"]], - "optimally": null, - "optimise's": null, - "optimism": [["S", "M"]], - "optimisms": null, - "optimism's": null, - "optimistic": null, - "optimistically": null, - "optimist": [["S", "M"]], - "optimists": null, - "optimist's": null, - "optimization": [["S", "M"]], - "optimizations": null, - "optimization's": null, - "optimize": [["D", "R", "S", "Z", "G"]], - "optimized": [["U"]], - "optimizer": [["M"]], - "optimizes": [["U"]], - "optimizers": null, - "optimizing": null, - "unoptimized": null, - "optimizer's": null, - "unoptimizes": null, - "optimum": [["S", "M"]], - "optimums": null, - "optimum's": null, - "optionality": [["M"]], - "optionality's": null, - "optional": [["Y", "S"]], - "optionally": null, - "optionals": null, - "option": [["G", "D", "M", "S"]], - "optioning": null, - "optioned": null, - "option's": null, - "options": null, - "optoelectronic": null, - "optometric": null, - "optometrist": [["M", "S"]], - "optometrist's": null, - "optometrists": null, - "optometry": [["S", "M"]], - "optometries": null, - "optometry's": null, - "opulence": [["S", "M"]], - "opulences": null, - "opulence's": null, - "opulent": [["Y"]], - "opulently": null, - "opus": [["S", "M"]], - "opuses": null, - "opus's": null, - "op": [["X", "G", "D", "N"]], - "oping": null, - "oped": null, - "OR": null, - "oracle": [["G", "M", "S", "D"]], - "oracling": null, - "oracle's": null, - "oracles": null, - "oracled": null, - "oracular": null, - "Oralee": [["M"]], - "Oralee's": null, - "Oralia": [["M"]], - "Oralia's": null, - "Oralie": [["M"]], - "Oralie's": null, - "Oralla": [["M"]], - "Oralla's": null, - "Oralle": [["M"]], - "Oralle's": null, - "oral": [["Y", "S"]], - "orally": null, - "orals": null, - "Ora": [["M"]], - "Ora's": null, - "orangeade": [["M", "S"]], - "orangeade's": null, - "orangeades": null, - "Orange": [["M"]], - "Orange's": null, - "orange": [["M", "S"]], - "orange's": null, - "oranges": null, - "orangery": [["S", "M"]], - "orangeries": null, - "orangery's": null, - "orangutan": [["M", "S"]], - "orangutan's": null, - "orangutans": null, - "Oranjestad": [["M"]], - "Oranjestad's": null, - "Oran": [["M"]], - "Oran's": null, - "orate": [["S", "D", "G", "N", "X"]], - "orates": null, - "orated": null, - "orating": null, - "oration": [["M"]], - "orations": null, - "oration's": null, - "oratorical": [["Y"]], - "oratorically": null, - "oratorio": [["M", "S"]], - "oratorio's": null, - "oratorios": null, - "orator": [["M", "S"]], - "orator's": null, - "orators": null, - "oratory": [["M", "S"]], - "oratory's": null, - "oratories": null, - "Orazio": [["M"]], - "Orazio's": null, - "Orbadiah": [["M"]], - "Orbadiah's": null, - "orbicular": null, - "orbiculares": null, - "orbital": [["M", "Y", "S"]], - "orbital's": null, - "orbitally": null, - "orbitals": null, - "orbit": [["M", "R", "D", "G", "Z", "S"]], - "orbit's": null, - "orbiter": null, - "orbited": null, - "orbiting": null, - "orbiters": null, - "orbits": null, - "orb": [["S", "M", "D", "G"]], - "orbs": null, - "orb's": null, - "orbed": null, - "orbing": null, - "orchard": [["S", "M"]], - "orchards": null, - "orchard's": null, - "orchestral": [["Y"]], - "orchestrally": null, - "orchestra": [["M", "S"]], - "orchestra's": null, - "orchestras": null, - "orchestrate": [["G", "N", "S", "D", "X"]], - "orchestrating": null, - "orchestration": [["M"]], - "orchestrates": null, - "orchestrated": null, - "orchestrations": null, - "orchestrater's": null, - "orchestration's": null, - "orchestrator": [["M"]], - "orchestrator's": null, - "orchid": [["S", "M"]], - "orchids": null, - "orchid's": null, - "ordainer": [["M"]], - "ordainer's": null, - "ordainment": [["M", "S"]], - "ordainment's": null, - "ordainments": null, - "ordain": [["S", "G", "L", "D", "R"]], - "ordains": null, - "ordaining": null, - "ordained": null, - "ordeal": [["S", "M"]], - "ordeals": null, - "ordeal's": null, - "order": [["A", "E", "S", "G", "D"]], - "reorder": null, - "reorders": null, - "reordering": null, - "reordered": null, - "disorders": null, - "disordering": null, - "orders": null, - "ordering": [["S"]], - "ordered": [["U"]], - "unordered": null, - "orderer": null, - "orderings": null, - "orderless": null, - "orderliness": [["S", "E"]], - "orderlinesses": null, - "disorderlinesses": null, - "orderly": [["P", "S"]], - "orderlies": null, - "order's": [["E"]], - "disorder's": null, - "ordinal": [["S"]], - "ordinals": null, - "ordinance": [["M", "S"]], - "ordinance's": null, - "ordinances": null, - "ordinarily": null, - "ordinariness": [["S"]], - "ordinarinesses": null, - "ordinary": [["R", "S", "P", "T"]], - "ordinarier": null, - "ordinaries": null, - "ordinariest": null, - "ordinated": null, - "ordinate": [["I"]], - "ordinates": null, - "ordinate's": null, - "ordinating": null, - "ordination": [["S", "M"]], - "ordinations": null, - "ordination's": null, - "ordnance": [["S", "M"]], - "ordnances": null, - "ordnance's": null, - "Ordovician": null, - "ordure": [["M", "S"]], - "ordure's": null, - "ordures": null, - "oregano": [["S", "M"]], - "oreganos": null, - "oregano's": null, - "Oreg": [["M"]], - "Oreg's": null, - "Oregonian": [["S"]], - "Oregonians": null, - "Oregon": [["M"]], - "Oregon's": null, - "Orelee": [["M"]], - "Orelee's": null, - "Orelia": [["M"]], - "Orelia's": null, - "Orelie": [["M"]], - "Orelie's": null, - "Orella": [["M"]], - "Orella's": null, - "Orelle": [["M"]], - "Orelle's": null, - "Orel": [["M"]], - "Orel's": null, - "Oren": [["M"]], - "Oren's": null, - "Ore": [["N", "M"]], - "Orion": [["M"]], - "Ore's": null, - "ore": [["N", "S", "M"]], - "orion": null, - "ores": null, - "ore's": null, - "Oreo": null, - "Orestes": null, - "organdie's": null, - "organdy": [["M", "S"]], - "organdy's": null, - "organdies": null, - "organelle": [["M", "S"]], - "organelle's": null, - "organelles": null, - "organically": [["I"]], - "inorganically": null, - "organic": [["S"]], - "organics": null, - "organismic": null, - "organism": [["M", "S"]], - "organism's": null, - "organisms": null, - "organist": [["M", "S"]], - "organist's": null, - "organists": null, - "organizable": [["U", "M", "S"]], - "unorganizable": null, - "unorganizable's": null, - "unorganizables": null, - "organizable's": null, - "organizables": null, - "organizational": [["M", "Y", "S"]], - "organizational's": null, - "organizationally": null, - "organizationals": null, - "organization": [["M", "E", "A", "S"]], - "organization's": null, - "disorganization's": null, - "reorganization's": null, - "disorganization": null, - "disorganizations": null, - "reorganization": null, - "reorganizations": null, - "organizations": null, - "organize": [["A", "G", "Z", "D", "R", "S"]], - "reorganize": null, - "reorganizing": null, - "reorganizers": null, - "reorganized": [["U"]], - "reorganizer": null, - "reorganizes": null, - "organizing": [["E"]], - "organizers": null, - "organized": [["U", "E"]], - "organizer": [["M", "A"]], - "organizes": [["E"]], - "unorganized": [["Y", "P"]], - "organizer's": null, - "reorganizer's": null, - "disorganizes": null, - "disorganizing": null, - "organ": [["M", "S"]], - "organ's": null, - "organs": null, - "organometallic": null, - "organza": [["S", "M"]], - "organzas": null, - "organza's": null, - "orgasm": [["G", "S", "M", "D"]], - "orgasming": null, - "orgasms": null, - "orgasm's": null, - "orgasmed": null, - "orgasmic": null, - "orgiastic": null, - "orgy": [["S", "M"]], - "orgies": null, - "orgy's": null, - "Oriana": [["M"]], - "Oriana's": null, - "oriel": [["M", "S"]], - "oriel's": null, - "oriels": null, - "orientable": null, - "Oriental": [["S"]], - "Orientals": null, - "oriental": [["S", "Y"]], - "orientals": null, - "orientally": null, - "orientated": [["A"]], - "reorientated": null, - "orientate": [["E", "S", "D", "X", "G", "N"]], - "disorientate": null, - "disorientates": null, - "disorientated": null, - "disorientations": null, - "disorientating": null, - "disorientation": null, - "orientates": [["A"]], - "orientations": null, - "orientating": null, - "orientation": [["A", "M", "E", "S"]], - "reorientates": null, - "reorientation": null, - "reorientation's": null, - "reorientations": null, - "orientation's": null, - "disorientation's": null, - "orienteering": [["M"]], - "orienteering's": null, - "orienter": null, - "orient": [["G", "A", "D", "E", "S"]], - "orienting": null, - "reorienting": null, - "disorienting": null, - "reorient": null, - "reoriented": null, - "reorients": null, - "oriented": null, - "disoriented": null, - "disorient": null, - "disorients": null, - "orients": null, - "orient's": null, - "Orient": [["S", "M"]], - "Orients": null, - "Orient's": null, - "orifice": [["M", "S"]], - "orifice's": null, - "orifices": null, - "orig": null, - "origami": [["M", "S"]], - "origami's": null, - "origamis": null, - "originality": [["S", "M"]], - "originalities": null, - "originality's": null, - "originally": null, - "original": [["U", "S"]], - "unoriginal": null, - "unoriginals": null, - "originals": null, - "originate": [["V", "G", "N", "X", "S", "D"]], - "originative": [["Y"]], - "originating": null, - "origination": [["M"]], - "originations": null, - "originates": null, - "originated": null, - "origination's": null, - "originatively": null, - "originator": [["S", "M"]], - "originators": null, - "originator's": null, - "origin": [["M", "S"]], - "origin's": null, - "origins": null, - "Orin": [["M"]], - "Orin's": null, - "Orinoco": [["M"]], - "Orinoco's": null, - "oriole": [["S", "M"]], - "orioles": null, - "oriole's": null, - "Orion's": null, - "orison": [["S", "M"]], - "orisons": null, - "orison's": null, - "Oriya": [["M"]], - "Oriya's": null, - "Orizaba": [["M"]], - "Orizaba's": null, - "Orkney": [["M"]], - "Orkney's": null, - "Orland": [["M"]], - "Orland's": null, - "Orlando": [["M"]], - "Orlando's": null, - "Orlan": [["M"]], - "Orlan's": null, - "Orleans": null, - "Orlick": [["M"]], - "Orlick's": null, - "Orlon": [["S", "M"]], - "Orlons": null, - "Orlon's": null, - "Orly": [["M"]], - "Orly's": null, - "ormolu": [["S", "M"]], - "ormolus": null, - "ormolu's": null, - "or": [["M", "Y"]], - "or's": null, - "orly": null, - "ornamental": [["S", "Y"]], - "ornamentals": null, - "ornamentally": null, - "ornamentation": [["S", "M"]], - "ornamentations": null, - "ornamentation's": null, - "ornament": [["G", "S", "D", "M"]], - "ornamenting": null, - "ornaments": null, - "ornamented": null, - "ornament's": null, - "ornateness": [["S", "M"]], - "ornatenesses": null, - "ornateness's": null, - "ornate": [["Y", "P"]], - "ornately": null, - "orneriness": [["S", "M"]], - "ornerinesses": null, - "orneriness's": null, - "ornery": [["P", "R", "T"]], - "ornerier": null, - "orneriest": null, - "ornithological": null, - "ornithologist": [["S", "M"]], - "ornithologists": null, - "ornithologist's": null, - "ornithology": [["M", "S"]], - "ornithology's": null, - "ornithologies": null, - "orographic": [["M"]], - "orographic's": null, - "orography": [["M"]], - "orography's": null, - "Orono": [["M"]], - "Orono's": null, - "orotund": null, - "orotundity": [["M", "S"]], - "orotundity's": null, - "orotundities": null, - "orphanage": [["M", "S"]], - "orphanage's": null, - "orphanages": null, - "orphanhood": [["M"]], - "orphanhood's": null, - "orphan": [["S", "G", "D", "M"]], - "orphans": null, - "orphaning": null, - "orphaned": null, - "orphan's": null, - "Orpheus": [["M"]], - "Orpheus's": null, - "Orphic": null, - "Orran": [["M"]], - "Orran's": null, - "Orren": [["M"]], - "Orren's": null, - "Orrin": [["M"]], - "Orrin's": null, - "orris": [["S", "M"]], - "orrises": null, - "orris's": null, - "Orr": [["M", "N"]], - "Orr's": null, - "ors": null, - "Orsa": [["M"]], - "Orsa's": null, - "Orsola": [["M"]], - "Orsola's": null, - "Orson": [["M"]], - "Orson's": null, - "Ortega": [["M"]], - "Ortega's": null, - "Ortensia": [["M"]], - "Ortensia's": null, - "orthodontia": [["S"]], - "orthodontias": null, - "orthodontic": [["S"]], - "orthodontics": [["M"]], - "orthodontics's": null, - "orthodontist": [["M", "S"]], - "orthodontist's": null, - "orthodontists": null, - "orthodoxies": null, - "orthodoxly": [["U"]], - "unorthodoxly": null, - "Orthodox": [["S"]], - "Orthodoxes": null, - "orthodoxy's": null, - "orthodox": [["Y", "S"]], - "orthodoxes": null, - "orthodoxy": [["U"]], - "unorthodoxy": null, - "orthogonality": [["M"]], - "orthogonality's": null, - "orthogonalization": [["M"]], - "orthogonalization's": null, - "orthogonalized": null, - "orthogonal": [["Y"]], - "orthogonally": null, - "orthographic": null, - "orthographically": null, - "orthography": [["M", "S"]], - "orthography's": null, - "orthographies": null, - "orthonormal": null, - "orthopedic": [["S"]], - "orthopedics": [["M"]], - "orthopedics's": null, - "orthopedist": [["S", "M"]], - "orthopedists": null, - "orthopedist's": null, - "orthophosphate": [["M", "S"]], - "orthophosphate's": null, - "orthophosphates": null, - "orthorhombic": null, - "Ortiz": [["M"]], - "Ortiz's": null, - "Orton": [["M"]], - "Orton's": null, - "Orval": [["M"]], - "Orval's": null, - "Orville": [["M"]], - "Orville's": null, - "Orv": [["M"]], - "Orv's": null, - "Orwellian": null, - "Orwell": [["M"]], - "Orwell's": null, - "o's": null, - "Osage": [["S", "M"]], - "Osages": null, - "Osage's": null, - "Osaka": [["M"]], - "Osaka's": null, - "Osbert": [["M"]], - "Osbert's": null, - "Osborne": [["M"]], - "Osborne's": null, - "Osborn": [["M"]], - "Osborn's": null, - "Osbourne": [["M"]], - "Osbourne's": null, - "Osbourn": [["M"]], - "Osbourn's": null, - "Oscar": [["S", "M"]], - "Oscars": null, - "Oscar's": null, - "Osceola": [["M"]], - "Osceola's": null, - "oscillate": [["S", "D", "X", "N", "G"]], - "oscillates": null, - "oscillated": null, - "oscillations": null, - "oscillation": [["M"]], - "oscillating": null, - "oscillation's": null, - "oscillator": [["S", "M"]], - "oscillators": null, - "oscillator's": null, - "oscillatory": null, - "oscilloscope": [["S", "M"]], - "oscilloscopes": null, - "oscilloscope's": null, - "osculate": [["X", "D", "S", "N", "G"]], - "osculations": null, - "osculated": null, - "osculates": null, - "osculation": [["M"]], - "osculating": null, - "osculation's": null, - "Osgood": [["M"]], - "Osgood's": null, - "OSHA": null, - "Oshawa": [["M"]], - "Oshawa's": null, - "O'Shea": [["M"]], - "O'Shea's": null, - "Oshkosh": [["M"]], - "Oshkosh's": null, - "osier": [["M", "S"]], - "osier's": null, - "osiers": null, - "Osiris": [["M"]], - "Osiris's": null, - "Oslo": [["M"]], - "Oslo's": null, - "Os": [["M"]], - "Os's": null, - "OS": [["M"]], - "OS's": null, - "Osman": [["M"]], - "Osman's": null, - "osmium": [["M", "S"]], - "osmium's": null, - "osmiums": null, - "Osmond": [["M"]], - "Osmond's": null, - "osmoses": null, - "osmosis": [["M"]], - "osmosis's": null, - "osmotic": null, - "Osmund": [["M"]], - "Osmund's": null, - "osprey": [["S", "M"]], - "ospreys": null, - "osprey's": null, - "osseous": [["Y"]], - "osseously": null, - "Ossie": [["M"]], - "Ossie's": null, - "ossification": [["M"]], - "ossification's": null, - "ossify": [["N", "G", "S", "D", "X"]], - "ossifying": null, - "ossifies": null, - "ossified": null, - "ossifications": null, - "ostensible": null, - "ostensibly": null, - "ostentation": [["M", "S"]], - "ostentation's": null, - "ostentations": null, - "ostentatiousness": [["M"]], - "ostentatiousness's": null, - "ostentatious": [["P", "Y"]], - "ostentatiously": null, - "osteoarthritides": null, - "osteoarthritis": [["M"]], - "osteoarthritis's": null, - "osteology": [["M"]], - "osteology's": null, - "osteopathic": null, - "osteopath": [["M"]], - "osteopath's": null, - "osteopaths": null, - "osteopathy": [["M", "S"]], - "osteopathy's": null, - "osteopathies": null, - "osteoporoses": null, - "osteoporosis": [["M"]], - "osteoporosis's": null, - "ostracise's": null, - "ostracism": [["M", "S"]], - "ostracism's": null, - "ostracisms": null, - "ostracize": [["G", "S", "D"]], - "ostracizing": null, - "ostracizes": null, - "ostracized": null, - "Ostrander": [["M"]], - "Ostrander's": null, - "ostrich": [["M", "S"]], - "ostrich's": null, - "ostriches": null, - "Ostrogoth": [["M"]], - "Ostrogoth's": null, - "Ostwald": [["M"]], - "Ostwald's": null, - "O'Sullivan": [["M"]], - "O'Sullivan's": null, - "Osvaldo": [["M"]], - "Osvaldo's": null, - "Oswald": [["M"]], - "Oswald's": null, - "Oswell": [["M"]], - "Oswell's": null, - "OT": null, - "OTB": null, - "OTC": null, - "Otes": null, - "Otha": [["M"]], - "Otha's": null, - "Othelia": [["M"]], - "Othelia's": null, - "Othella": [["M"]], - "Othella's": null, - "Othello": [["M"]], - "Othello's": null, - "otherness": [["M"]], - "otherness's": null, - "other": [["S", "M", "P"]], - "others": null, - "other's": null, - "otherwise": null, - "otherworldly": [["P"]], - "otherworldliness": null, - "otherworld": [["Y"]], - "Othilia": [["M"]], - "Othilia's": null, - "Othilie": [["M"]], - "Othilie's": null, - "Otho": [["M"]], - "Otho's": null, - "otiose": null, - "Otis": [["M"]], - "Otis's": null, - "OTOH": null, - "Ottawa": [["M", "S"]], - "Ottawa's": null, - "Ottawas": null, - "otter": [["D", "M", "G", "S"]], - "ottered": null, - "otter's": null, - "ottering": null, - "otters": null, - "Ottilie": [["M"]], - "Ottilie's": null, - "Otto": [["M"]], - "Otto's": null, - "Ottoman": null, - "ottoman": [["M", "S"]], - "ottoman's": null, - "ottomans": null, - "Ouagadougou": [["M"]], - "Ouagadougou's": null, - "oubliette": [["S", "M"]], - "oubliettes": null, - "oubliette's": null, - "ouch": [["S", "D", "G"]], - "ouches": null, - "ouched": null, - "ouching": null, - "oughtn't": null, - "ought": [["S", "G", "D"]], - "oughts": null, - "oughting": null, - "oughted": null, - "Ouija": [["M", "S"]], - "Ouija's": null, - "Ouijas": null, - "ounce": [["M", "S"]], - "ounce's": null, - "ounces": null, - "our": [["S"]], - "ours": null, - "ourself": null, - "ourselves": null, - "ouster": [["M"]], - "ouster's": null, - "oust": [["R", "D", "G", "Z", "S"]], - "ousted": null, - "ousting": null, - "ousters": null, - "ousts": null, - "outage": [["M", "S"]], - "outage's": null, - "outages": null, - "outargue": [["G", "D", "S"]], - "outarguing": null, - "outargued": null, - "outargues": null, - "outback": [["M", "R", "S"]], - "outback's": null, - "outbacker": null, - "outbacks": null, - "outbalance": [["G", "D", "S"]], - "outbalancing": null, - "outbalanced": null, - "outbalances": null, - "outbidding": null, - "outbid": [["S"]], - "outbids": null, - "outboard": [["S"]], - "outboards": null, - "outboast": [["G", "S", "D"]], - "outboasting": null, - "outboasts": null, - "outboasted": null, - "outbound": [["S"]], - "outbounds": null, - "outbreak": [["S", "M", "G"]], - "outbreaks": null, - "outbreak's": null, - "outbreaking": null, - "outbroke": null, - "outbroken": null, - "outbuilding": [["S", "M"]], - "outbuildings": null, - "outbuilding's": null, - "outburst": [["M", "G", "S"]], - "outburst's": null, - "outbursting": null, - "outbursts": null, - "outcast": [["G", "S", "M"]], - "outcasting": null, - "outcasts": null, - "outcast's": null, - "outclass": [["S", "D", "G"]], - "outclasses": null, - "outclassed": null, - "outclassing": null, - "outcome": [["S", "M"]], - "outcomes": null, - "outcome's": null, - "outcropped": null, - "outcropping": [["S"]], - "outcroppings": null, - "outcrop": [["S", "M"]], - "outcrops": null, - "outcrop's": null, - "outcry": [["M", "S", "D", "G"]], - "outcry's": null, - "outcries": null, - "outcried": null, - "outcrying": null, - "outdated": [["P"]], - "outdatedness": null, - "outdid": null, - "outdistance": [["G", "S", "D"]], - "outdistancing": null, - "outdistances": null, - "outdistanced": null, - "outdoes": null, - "outdo": [["G"]], - "outdoing": null, - "outdone": null, - "outdoor": [["S"]], - "outdoors": null, - "outdoorsy": null, - "outdraw": [["G", "S"]], - "outdrawing": null, - "outdraws": null, - "outdrawn": null, - "outdrew": null, - "outermost": null, - "outerwear": [["M"]], - "outerwear's": null, - "outface": [["S", "D", "G"]], - "outfaces": null, - "outfaced": null, - "outfacing": null, - "outfall": [["M", "S"]], - "outfall's": null, - "outfalls": null, - "outfielder": [["M"]], - "outfielder's": null, - "outfield": [["R", "M", "S", "Z"]], - "outfield's": null, - "outfields": null, - "outfielders": null, - "outfight": [["S", "G"]], - "outfights": null, - "outfighting": null, - "outfit": [["M", "S"]], - "outfit's": null, - "outfits": null, - "outfitted": null, - "outfitter": [["M", "S"]], - "outfitter's": null, - "outfitters": null, - "outfitting": null, - "outflank": [["S", "G", "D"]], - "outflanks": null, - "outflanking": null, - "outflanked": null, - "outflow": [["S", "M", "D", "G"]], - "outflows": null, - "outflow's": null, - "outflowed": null, - "outflowing": null, - "outfought": null, - "outfox": [["G", "S", "D"]], - "outfoxing": null, - "outfoxes": null, - "outfoxed": null, - "outgeneraled": null, - "outgoes": null, - "outgo": [["G", "J"]], - "outgoing": [["P"]], - "outgoings": null, - "outgoingness": null, - "outgrew": null, - "outgrip": null, - "outgrow": [["G", "S", "H"]], - "outgrowing": null, - "outgrows": null, - "outgrowth": [["M"]], - "outgrown": null, - "outgrowth's": null, - "outgrowths": null, - "outguess": [["S", "D", "G"]], - "outguesses": null, - "outguessed": null, - "outguessing": null, - "outhit": [["S"]], - "outhits": null, - "outhitting": null, - "outhouse": [["S", "M"]], - "outhouses": null, - "outhouse's": null, - "outing": [["M"]], - "outing's": null, - "outlaid": null, - "outlander": [["M"]], - "outlander's": null, - "outlandishness": [["M", "S"]], - "outlandishness's": null, - "outlandishnesses": null, - "outlandish": [["P", "Y"]], - "outlandishly": null, - "outland": [["Z", "R"]], - "outlanders": null, - "outlast": [["G", "S", "D"]], - "outlasting": null, - "outlasts": null, - "outlasted": null, - "outlawry": [["M"]], - "outlawry's": null, - "outlaw": [["S", "D", "M", "G"]], - "outlaws": null, - "outlawed": null, - "outlaw's": null, - "outlawing": null, - "outlay": [["G", "S", "M"]], - "outlaying": null, - "outlays": null, - "outlay's": null, - "outlet": [["S", "M"]], - "outlets": null, - "outlet's": null, - "outliers": null, - "outline": [["S", "D", "G", "M"]], - "outlines": null, - "outlined": null, - "outlining": null, - "outline's": null, - "outlive": [["G", "S", "D"]], - "outliving": null, - "outlives": null, - "outlived": null, - "outlook": [["M", "D", "G", "S"]], - "outlook's": null, - "outlooked": null, - "outlooking": null, - "outlooks": null, - "outlying": null, - "outmaneuver": [["G", "S", "D"]], - "outmaneuvering": null, - "outmaneuvers": null, - "outmaneuvered": null, - "outmatch": [["S", "D", "G"]], - "outmatches": null, - "outmatched": null, - "outmatching": null, - "outmigration": null, - "outmoded": null, - "outness": [["M"]], - "outness's": null, - "outnumber": [["G", "D", "S"]], - "outnumbering": null, - "outnumbered": null, - "outnumbers": null, - "outpaced": null, - "outpatient": [["S", "M"]], - "outpatients": null, - "outpatient's": null, - "outperform": [["D", "G", "S"]], - "outperformed": null, - "outperforming": null, - "outperforms": null, - "out": [["P", "J", "Z", "G", "S", "D", "R"]], - "outings": null, - "outers": null, - "outs": null, - "outed": null, - "outer": null, - "outplacement": [["S"]], - "outplacements": null, - "outplay": [["G", "D", "S"]], - "outplaying": null, - "outplayed": null, - "outplays": null, - "outpoint": [["G", "D", "S"]], - "outpointing": null, - "outpointed": null, - "outpoints": null, - "outpost": [["S", "M"]], - "outposts": null, - "outpost's": null, - "outpouring": [["M"]], - "outpouring's": null, - "outpour": [["M", "J", "G"]], - "outpour's": null, - "outpourings": null, - "outproduce": [["G", "S", "D"]], - "outproducing": null, - "outproduces": null, - "outproduced": null, - "output": [["S", "M"]], - "outputs": null, - "output's": null, - "outputted": null, - "outputting": null, - "outrace": [["G", "S", "D"]], - "outracing": null, - "outraces": null, - "outraced": null, - "outrage": [["G", "S", "D", "M"]], - "outraging": null, - "outrages": null, - "outraged": null, - "outrage's": null, - "outrageousness": [["M"]], - "outrageousness's": null, - "outrageous": [["Y", "P"]], - "outrageously": null, - "outran": null, - "outrank": [["G", "S", "D"]], - "outranking": null, - "outranks": null, - "outranked": null, - "outr�": null, - "outreach": [["S", "D", "G"]], - "outreaches": null, - "outreached": null, - "outreaching": null, - "outrider": [["M", "S"]], - "outrider's": null, - "outriders": null, - "outrigger": [["S", "M"]], - "outriggers": null, - "outrigger's": null, - "outright": [["Y"]], - "outrightly": null, - "outrunning": null, - "outrun": [["S"]], - "outruns": null, - "outscore": [["G", "D", "S"]], - "outscoring": null, - "outscored": null, - "outscores": null, - "outsell": [["G", "S"]], - "outselling": null, - "outsells": null, - "outset": [["M", "S"]], - "outset's": null, - "outsets": null, - "outsetting": null, - "outshine": [["S", "G"]], - "outshines": null, - "outshining": null, - "outshone": null, - "outshout": [["G", "D", "S"]], - "outshouting": null, - "outshouted": null, - "outshouts": null, - "outsider": [["P", "M"]], - "outsiderness": null, - "outsider's": null, - "outside": [["Z", "S", "R"]], - "outsiders": null, - "outsides": null, - "outsize": [["S"]], - "outsizes": null, - "outskirt": [["S", "M"]], - "outskirts": null, - "outskirt's": null, - "outsmart": [["S", "D", "G"]], - "outsmarts": null, - "outsmarted": null, - "outsmarting": null, - "outsold": null, - "outsource": [["S", "D", "J", "G"]], - "outsources": null, - "outsourced": null, - "outsourcings": null, - "outsourcing": null, - "outspend": [["S", "G"]], - "outspends": null, - "outspending": null, - "outspent": null, - "outspoke": null, - "outspokenness": [["S", "M"]], - "outspokennesses": null, - "outspokenness's": null, - "outspoken": [["Y", "P"]], - "outspokenly": null, - "outspread": [["S", "G"]], - "outspreads": null, - "outspreading": null, - "outstanding": [["Y"]], - "outstandingly": null, - "outstate": [["N", "X"]], - "outstation": [["M"]], - "outstations": null, - "outstation's": null, - "outstay": [["S", "D", "G"]], - "outstays": null, - "outstayed": null, - "outstaying": null, - "outstretch": [["G", "S", "D"]], - "outstretching": null, - "outstretches": null, - "outstretched": null, - "outstripped": null, - "outstripping": null, - "outstrip": [["S"]], - "outstrips": null, - "outtake": [["S"]], - "outtakes": null, - "outvote": [["G", "S", "D"]], - "outvoting": null, - "outvotes": null, - "outvoted": null, - "outwardness": [["M"]], - "outwardness's": null, - "outward": [["S", "Y", "P"]], - "outwards": null, - "outwardly": null, - "outwear": [["S", "G"]], - "outwears": null, - "outwearing": null, - "outweigh": [["G", "D"]], - "outweighing": null, - "outweighed": null, - "outweighs": null, - "outwit": [["S"]], - "outwits": null, - "outwitted": null, - "outwitting": null, - "outwore": null, - "outwork": [["S", "M", "D", "G"]], - "outworks": null, - "outwork's": null, - "outworked": null, - "outworking": null, - "outworn": null, - "ouzo": [["S", "M"]], - "ouzos": null, - "ouzo's": null, - "oval": [["M", "Y", "P", "S"]], - "oval's": null, - "ovally": null, - "ovalness": [["M"]], - "ovals": null, - "ovalness's": null, - "ova": [["M"]], - "ova's": null, - "ovarian": null, - "ovary": [["S", "M"]], - "ovaries": null, - "ovary's": null, - "ovate": [["S", "D", "G", "N", "X"]], - "ovates": null, - "ovated": null, - "ovating": null, - "ovation": [["G", "M", "D"]], - "ovations": null, - "ovationing": null, - "ovation's": null, - "ovationed": null, - "ovenbird": [["S", "M"]], - "ovenbirds": null, - "ovenbird's": null, - "oven": [["M", "S"]], - "oven's": null, - "ovens": null, - "overabundance": [["M", "S"]], - "overabundance's": null, - "overabundances": null, - "overabundant": null, - "overachieve": [["S", "R", "D", "G", "Z"]], - "overachieves": null, - "overachiever": null, - "overachieved": null, - "overachieving": null, - "overachievers": null, - "overact": [["D", "G", "V", "S"]], - "overacted": null, - "overacting": null, - "overactive": null, - "overacts": null, - "overage": [["S"]], - "overages": null, - "overaggressive": null, - "overallocation": null, - "overall": [["S", "M"]], - "overalls": null, - "overall's": null, - "overambitious": null, - "overanxious": null, - "overarching": null, - "overarm": [["G", "S", "D"]], - "overarming": null, - "overarms": null, - "overarmed": null, - "overate": null, - "overattentive": null, - "overawe": [["G", "D", "S"]], - "overawing": null, - "overawed": null, - "overawes": null, - "overbalance": [["D", "S", "G"]], - "overbalanced": null, - "overbalances": null, - "overbalancing": null, - "overbear": [["G", "S"]], - "overbearing": [["Y", "P"]], - "overbears": null, - "overbearingness": [["M"]], - "overbearingness's": null, - "overbearingly": null, - "overbidding": null, - "overbid": [["S"]], - "overbids": null, - "overbite": [["M", "S"]], - "overbite's": null, - "overbites": null, - "overblown": null, - "overboard": null, - "overbold": null, - "overbook": [["S", "D", "G"]], - "overbooks": null, - "overbooked": null, - "overbooking": null, - "overbore": null, - "overborne": null, - "overbought": null, - "overbuild": [["G", "S"]], - "overbuilding": null, - "overbuilds": null, - "overbuilt": null, - "overburdening": [["Y"]], - "overburdeningly": null, - "overburden": [["S", "D", "G"]], - "overburdens": null, - "overburdened": null, - "overbuy": [["G", "S"]], - "overbuying": null, - "overbuys": null, - "overcame": null, - "overcapacity": [["M"]], - "overcapacity's": null, - "overcapitalize": [["D", "S", "G"]], - "overcapitalized": null, - "overcapitalizes": null, - "overcapitalizing": null, - "overcareful": null, - "overcast": [["G", "S"]], - "overcasting": [["M"]], - "overcasts": null, - "overcasting's": null, - "overcautious": null, - "overcerebral": null, - "overcharge": [["D", "S", "G"]], - "overcharged": null, - "overcharges": null, - "overcharging": null, - "overcloud": [["D", "S", "G"]], - "overclouded": null, - "overclouds": null, - "overclouding": null, - "overcoating": [["M"]], - "overcoating's": null, - "overcoat": [["S", "M", "G"]], - "overcoats": null, - "overcoat's": null, - "overcomer": [["M"]], - "overcomer's": null, - "overcome": [["R", "S", "G"]], - "overcomes": null, - "overcoming": null, - "overcommitment": [["S"]], - "overcommitments": null, - "overcompensate": [["X", "G", "N", "D", "S"]], - "overcompensations": null, - "overcompensating": null, - "overcompensation": [["M"]], - "overcompensated": null, - "overcompensates": null, - "overcompensation's": null, - "overcomplexity": [["M"]], - "overcomplexity's": null, - "overcomplicated": null, - "overconfidence": [["M", "S"]], - "overconfidence's": null, - "overconfidences": null, - "overconfident": [["Y"]], - "overconfidently": null, - "overconscientious": null, - "overconsumption": [["M"]], - "overconsumption's": null, - "overcook": [["S", "D", "G"]], - "overcooks": null, - "overcooked": null, - "overcooking": null, - "overcooled": null, - "overcorrection": null, - "overcritical": null, - "overcrowd": [["D", "G", "S"]], - "overcrowded": null, - "overcrowding": null, - "overcrowds": null, - "overcurious": null, - "overdecorate": [["S", "D", "G"]], - "overdecorates": null, - "overdecorated": null, - "overdecorating": null, - "overdependent": null, - "overdetermined": null, - "overdevelop": [["S", "D", "G"]], - "overdevelops": null, - "overdeveloped": null, - "overdeveloping": null, - "overdid": null, - "overdoes": null, - "overdo": [["G"]], - "overdoing": null, - "overdone": null, - "overdose": [["D", "S", "M", "G"]], - "overdosed": null, - "overdoses": null, - "overdose's": null, - "overdosing": null, - "overdraft": [["S", "M"]], - "overdrafts": null, - "overdraft's": null, - "overdraw": [["G", "S"]], - "overdrawing": null, - "overdraws": null, - "overdrawn": null, - "overdress": [["G", "D", "S"]], - "overdressing": null, - "overdressed": null, - "overdresses": null, - "overdrew": null, - "overdrive": [["G", "S", "M"]], - "overdriving": null, - "overdrives": null, - "overdrive's": null, - "overdriven": null, - "overdrove": null, - "overdubbed": null, - "overdubbing": null, - "overdub": [["S"]], - "overdubs": null, - "overdue": null, - "overeagerness": [["M"]], - "overeagerness's": null, - "overeager": [["P", "Y"]], - "overeagerly": null, - "overeater": [["M"]], - "overeater's": null, - "overeat": [["G", "N", "R", "S"]], - "overeating": null, - "overeaten": null, - "overeats": null, - "overeducated": null, - "overemotional": null, - "overemphases": null, - "overemphasis": [["M"]], - "overemphasis's": null, - "overemphasize": [["G", "Z", "D", "S", "R"]], - "overemphasizing": null, - "overemphasizers": null, - "overemphasized": null, - "overemphasizes": null, - "overemphasizer": null, - "overenthusiastic": null, - "overestimate": [["D", "S", "X", "G", "N"]], - "overestimated": null, - "overestimates": null, - "overestimations": null, - "overestimating": null, - "overestimation": [["M"]], - "overestimation's": null, - "overexcite": [["D", "S", "G"]], - "overexcited": null, - "overexcites": null, - "overexciting": null, - "overexercise": [["S", "D", "G"]], - "overexercises": null, - "overexercised": null, - "overexercising": null, - "overexert": [["G", "D", "S"]], - "overexerting": null, - "overexerted": null, - "overexerts": null, - "overexertion": [["S", "M"]], - "overexertions": null, - "overexertion's": null, - "overexploitation": null, - "overexploited": null, - "overexpose": [["G", "D", "S"]], - "overexposing": null, - "overexposed": null, - "overexposes": null, - "overexposure": [["S", "M"]], - "overexposures": null, - "overexposure's": null, - "overextend": [["D", "S", "G"]], - "overextended": null, - "overextends": null, - "overextending": null, - "overextension": null, - "overfall": [["M"]], - "overfall's": null, - "overfed": null, - "overfeed": [["G", "S"]], - "overfeeding": null, - "overfeeds": null, - "overfill": [["G", "D", "S"]], - "overfilling": null, - "overfilled": null, - "overfills": null, - "overfishing": null, - "overflew": null, - "overflight": [["S", "M"]], - "overflights": null, - "overflight's": null, - "overflow": [["D", "G", "S"]], - "overflowed": null, - "overflowing": null, - "overflows": null, - "overflown": null, - "overfly": [["G", "S"]], - "overflying": null, - "overflies": null, - "overfond": null, - "overfull": null, - "overgeneralize": [["G", "D", "S"]], - "overgeneralizing": null, - "overgeneralized": null, - "overgeneralizes": null, - "overgenerous": null, - "overgraze": [["S", "D", "G"]], - "overgrazes": null, - "overgrazed": null, - "overgrazing": null, - "overgrew": null, - "overground": null, - "overgrow": [["G", "S", "H"]], - "overgrowing": null, - "overgrows": null, - "overgrowth": [["M"]], - "overgrown": null, - "overgrowth's": null, - "overgrowths": null, - "overhand": [["D", "G", "S"]], - "overhanded": null, - "overhanding": null, - "overhands": null, - "overhang": [["G", "S"]], - "overhanging": null, - "overhangs": null, - "overhasty": null, - "overhaul": [["G", "R", "D", "J", "S"]], - "overhauling": null, - "overhauler": null, - "overhauled": null, - "overhaulings": null, - "overhauls": null, - "overhead": [["S"]], - "overheads": null, - "overheard": null, - "overhearer": [["M"]], - "overhearer's": null, - "overhear": [["S", "R", "G"]], - "overhears": null, - "overhearing": null, - "overheat": [["S", "G", "D"]], - "overheats": null, - "overheating": null, - "overheated": null, - "overhung": null, - "overincredulous": null, - "overindulgence": [["S", "M"]], - "overindulgences": null, - "overindulgence's": null, - "overindulgent": null, - "overindulge": [["S", "D", "G"]], - "overindulges": null, - "overindulged": null, - "overindulging": null, - "overinflated": null, - "overjoy": [["S", "G", "D"]], - "overjoys": null, - "overjoying": null, - "overjoyed": null, - "overkill": [["S", "D", "M", "G"]], - "overkills": null, - "overkilled": null, - "overkill's": null, - "overkilling": null, - "overladed": null, - "overladen": null, - "overlaid": null, - "overlain": null, - "overland": [["S"]], - "overlands": null, - "overlap": [["M", "S"]], - "overlap's": null, - "overlaps": null, - "overlapped": null, - "overlapping": null, - "overlarge": null, - "overlay": [["G", "S"]], - "overlaying": null, - "overlays": null, - "overleaf": null, - "overlie": null, - "overload": [["S", "D", "G"]], - "overloads": null, - "overloaded": null, - "overloading": null, - "overlong": null, - "overlook": [["D", "S", "G"]], - "overlooked": null, - "overlooks": null, - "overlooking": null, - "overlord": [["D", "M", "S", "G"]], - "overlorded": null, - "overlord's": null, - "overlords": null, - "overlording": null, - "overloud": null, - "overly": [["G", "R", "S"]], - "overlying": null, - "overlier": null, - "overlies": null, - "overmanning": null, - "overmaster": [["G", "S", "D"]], - "overmastering": null, - "overmasters": null, - "overmastered": null, - "overmatching": null, - "overmodest": null, - "overmuch": [["S"]], - "overmuches": null, - "overnice": null, - "overnight": [["S", "D", "R", "G", "Z"]], - "overnights": null, - "overnighted": null, - "overnighter": null, - "overnighting": null, - "overnighters": null, - "overoptimism": [["S", "M"]], - "overoptimisms": null, - "overoptimism's": null, - "overoptimistic": null, - "overpaid": null, - "overparticular": null, - "overpass": [["G", "M", "S", "D"]], - "overpassing": null, - "overpass's": null, - "overpasses": null, - "overpassed": null, - "overpay": [["L", "S", "G"]], - "overpayment": [["M"]], - "overpays": null, - "overpaying": null, - "overpayment's": null, - "overplay": [["S", "G", "D"]], - "overplays": null, - "overplaying": null, - "overplayed": null, - "overpopulate": [["D", "S", "N", "G", "X"]], - "overpopulated": null, - "overpopulates": null, - "overpopulation": [["M"]], - "overpopulating": null, - "overpopulations": null, - "overpopulation's": null, - "overpopulous": null, - "overpower": [["G", "S", "D"]], - "overpowering": [["Y"]], - "overpowers": null, - "overpowered": null, - "overpoweringly": null, - "overpraise": [["D", "S", "G"]], - "overpraised": null, - "overpraises": null, - "overpraising": null, - "overprecise": null, - "overpressure": null, - "overprice": [["S", "D", "G"]], - "overprices": null, - "overpriced": null, - "overpricing": null, - "overprint": [["D", "G", "S"]], - "overprinted": null, - "overprinting": null, - "overprints": null, - "overproduce": [["S", "D", "G"]], - "overproduces": null, - "overproduced": null, - "overproducing": null, - "overproduction": [["S"]], - "overproductions": null, - "overprotect": [["G", "V", "D", "S"]], - "overprotecting": null, - "overprotective": null, - "overprotected": null, - "overprotects": null, - "overprotection": [["M"]], - "overprotection's": null, - "overqualified": null, - "overran": null, - "overrate": [["D", "S", "G"]], - "overrated": null, - "overrates": null, - "overrating": null, - "overreach": [["D", "S", "R", "G"]], - "overreached": null, - "overreaches": null, - "overreacher": null, - "overreaching": null, - "overreaction": [["S", "M"]], - "overreactions": null, - "overreaction's": null, - "overreact": [["S", "G", "D"]], - "overreacts": null, - "overreacting": null, - "overreacted": null, - "overred": null, - "overrefined": null, - "overrepresented": null, - "overridden": null, - "overrider": [["M"]], - "overrider's": null, - "override": [["R", "S", "G"]], - "overrides": null, - "overriding": null, - "overripe": null, - "overrode": null, - "overrule": [["G", "D", "S"]], - "overruling": null, - "overruled": null, - "overrules": null, - "overrunning": null, - "overrun": [["S"]], - "overruns": null, - "oversample": [["D", "G"]], - "oversampled": null, - "oversampling": null, - "oversaturate": null, - "oversaw": null, - "oversea": [["S"]], - "overseas": null, - "overseeing": null, - "overseen": null, - "overseer": [["M"]], - "overseer's": null, - "oversee": [["Z", "R", "S"]], - "overseers": null, - "oversees": null, - "oversell": [["S", "G"]], - "oversells": null, - "overselling": null, - "oversensitiveness": [["S"]], - "oversensitivenesses": null, - "oversensitive": [["P"]], - "oversensitivity": null, - "oversexed": null, - "overshadow": [["G", "S", "D"]], - "overshadowing": null, - "overshadows": null, - "overshadowed": null, - "overshoe": [["S", "M"]], - "overshoes": null, - "overshoe's": null, - "overshoot": [["S", "G"]], - "overshoots": null, - "overshooting": null, - "overshot": [["S"]], - "overshots": null, - "oversight": [["S", "M"]], - "oversights": null, - "oversight's": null, - "oversimple": null, - "oversimplification": [["M"]], - "oversimplification's": null, - "oversimplify": [["G", "X", "N", "D", "S"]], - "oversimplifying": null, - "oversimplifications": null, - "oversimplified": null, - "oversimplifies": null, - "oversize": [["G", "S"]], - "oversizing": null, - "oversizes": null, - "oversleep": [["G", "S"]], - "oversleeping": null, - "oversleeps": null, - "overslept": null, - "oversoftness": [["M"]], - "oversoftness's": null, - "oversoft": [["P"]], - "oversold": null, - "overspecialization": [["M", "S"]], - "overspecialization's": null, - "overspecializations": null, - "overspecialize": [["G", "S", "D"]], - "overspecializing": null, - "overspecializes": null, - "overspecialized": null, - "overspend": [["S", "G"]], - "overspends": null, - "overspending": null, - "overspent": null, - "overspill": [["D", "M", "S", "G"]], - "overspilled": null, - "overspill's": null, - "overspills": null, - "overspilling": null, - "overspread": [["S", "G"]], - "overspreads": null, - "overspreading": null, - "overstaffed": null, - "overstatement": [["S", "M"]], - "overstatements": null, - "overstatement's": null, - "overstate": [["S", "D", "L", "G"]], - "overstates": null, - "overstated": null, - "overstating": null, - "overstay": [["G", "S", "D"]], - "overstaying": null, - "overstays": null, - "overstayed": null, - "overstepped": null, - "overstepping": null, - "overstep": [["S"]], - "oversteps": null, - "overstimulate": [["D", "S", "G"]], - "overstimulated": null, - "overstimulates": null, - "overstimulating": null, - "overstock": [["S", "G", "D"]], - "overstocks": null, - "overstocking": null, - "overstocked": null, - "overstraining": null, - "overstressed": null, - "overstretch": [["D"]], - "overstretched": null, - "overstrict": null, - "overstrike": [["G", "S"]], - "overstriking": null, - "overstrikes": null, - "overstrung": null, - "overstuffed": null, - "oversubscribe": [["S", "D", "G"]], - "oversubscribes": null, - "oversubscribed": null, - "oversubscribing": null, - "oversubtle": null, - "oversupply": [["M", "D", "S", "G"]], - "oversupply's": null, - "oversupplied": null, - "oversupplies": null, - "oversupplying": null, - "oversuspicious": null, - "overtaken": null, - "overtake": [["R", "S", "Z", "G"]], - "overtaker": null, - "overtakes": null, - "overtakers": null, - "overtaking": null, - "overtax": [["D", "S", "G"]], - "overtaxed": null, - "overtaxes": null, - "overtaxing": null, - "overthrew": null, - "overthrow": [["G", "S"]], - "overthrowing": null, - "overthrows": null, - "overthrown": null, - "overtightened": null, - "overtime": [["M", "G", "D", "S"]], - "overtime's": null, - "overtiming": null, - "overtimed": null, - "overtimes": null, - "overtire": [["D", "S", "G"]], - "overtired": null, - "overtires": null, - "overtiring": null, - "overtone": [["M", "S"]], - "overtone's": null, - "overtones": null, - "overtook": null, - "overt": [["P", "Y"]], - "overtness": null, - "overtly": null, - "overture": [["D", "S", "M", "G"]], - "overtured": null, - "overtures": null, - "overture's": null, - "overturing": null, - "overturn": [["S", "D", "G"]], - "overturns": null, - "overturned": null, - "overturning": null, - "overuse": [["D", "S", "G"]], - "overused": null, - "overuses": null, - "overusing": null, - "overvalue": [["G", "S", "D"]], - "overvaluing": null, - "overvalues": null, - "overvalued": null, - "overview": [["M", "S"]], - "overview's": null, - "overviews": null, - "overweening": null, - "overweight": [["G", "S", "D"]], - "overweighting": null, - "overweights": null, - "overweighted": null, - "overwhelm": [["G", "D", "S"]], - "overwhelming": [["Y"]], - "overwhelmed": null, - "overwhelms": null, - "overwhelmingly": null, - "overwinter": [["S", "D", "G"]], - "overwinters": null, - "overwintered": null, - "overwintering": null, - "overwork": [["G", "S", "D"]], - "overworking": null, - "overworks": null, - "overworked": null, - "overwrap": null, - "overwrite": [["S", "G"]], - "overwrites": null, - "overwriting": null, - "overwritten": null, - "overwrote": null, - "overwrought": null, - "over": [["Y", "G", "S"]], - "overing": null, - "overs": null, - "overzealousness": [["M"]], - "overzealousness's": null, - "overzealous": [["P"]], - "Ovid": [["M"]], - "Ovid's": null, - "oviduct": [["S", "M"]], - "oviducts": null, - "oviduct's": null, - "oviform": null, - "oviparous": null, - "ovoid": [["S"]], - "ovoids": null, - "ovular": null, - "ovulate": [["G", "N", "X", "D", "S"]], - "ovulating": null, - "ovulation": null, - "ovulations": null, - "ovulated": null, - "ovulates": null, - "ovulatory": null, - "ovule": [["M", "S"]], - "ovule's": null, - "ovules": null, - "ovum": [["M", "S"]], - "ovum's": null, - "ovums": null, - "ow": [["D", "Y", "G"]], - "owed": null, - "owly": null, - "owing": null, - "Owen": [["M", "S"]], - "Owen's": null, - "Owens": null, - "owe": [["S"]], - "owes": null, - "owlet": [["S", "M"]], - "owlets": null, - "owlet's": null, - "owl": [["G", "S", "M", "D", "R"]], - "owling": null, - "owls": null, - "owl's": null, - "owled": null, - "owler": null, - "owlishness": [["M"]], - "owlishness's": null, - "owlish": [["P", "Y"]], - "owlishly": null, - "owned": [["U"]], - "unowned": null, - "own": [["E", "G", "D", "S"]], - "disown": null, - "disowning": null, - "disowned": null, - "disowns": null, - "owning": null, - "owns": null, - "ownership": [["M", "S"]], - "ownership's": null, - "ownerships": null, - "owner": [["S", "M"]], - "owners": null, - "owner's": null, - "oxalate": [["M"]], - "oxalate's": null, - "oxalic": null, - "oxaloacetic": null, - "oxblood": [["S"]], - "oxbloods": null, - "oxbow": [["S", "M"]], - "oxbows": null, - "oxbow's": null, - "oxcart": [["M", "S"]], - "oxcart's": null, - "oxcarts": null, - "oxen": [["M"]], - "oxen's": null, - "oxford": [["M", "S"]], - "oxford's": null, - "oxfords": null, - "Oxford": [["M", "S"]], - "Oxford's": null, - "Oxfords": null, - "oxidant": [["S", "M"]], - "oxidants": null, - "oxidant's": null, - "oxidate": [["N", "V", "X"]], - "oxidation": [["M"]], - "oxidative": [["Y"]], - "oxidations": null, - "oxidation's": null, - "oxidatively": null, - "oxide": [["S", "M"]], - "oxides": null, - "oxide's": null, - "oxidization": [["M", "S"]], - "oxidization's": null, - "oxidizations": null, - "oxidized": [["U"]], - "unoxidized": null, - "oxidize": [["J", "D", "R", "S", "G", "Z"]], - "oxidizings": null, - "oxidizer": [["M"]], - "oxidizes": [["A"]], - "oxidizing": null, - "oxidizers": null, - "oxidizer's": null, - "reoxidizes": null, - "ox": [["M", "N", "S"]], - "ox's": null, - "oxes": null, - "Oxnard": null, - "Oxonian": null, - "oxtail": [["M"]], - "oxtail's": null, - "Oxus": [["M"]], - "Oxus's": null, - "oxyacetylene": [["M", "S"]], - "oxyacetylene's": null, - "oxyacetylenes": null, - "oxygenate": [["X", "S", "D", "M", "G", "N"]], - "oxygenations": null, - "oxygenates": null, - "oxygenated": null, - "oxygenate's": null, - "oxygenating": null, - "oxygenation": [["M"]], - "oxygenation's": null, - "oxygen": [["M", "S"]], - "oxygen's": null, - "oxygens": null, - "oxyhydroxides": null, - "oxymora": null, - "oxymoron": [["M"]], - "oxymoron's": null, - "oyster": [["G", "S", "D", "M"]], - "oystering": [["M"]], - "oysters": null, - "oystered": null, - "oyster's": null, - "oystering's": null, - "oz": null, - "Ozark": [["S", "M"]], - "Ozarks": null, - "Ozark's": null, - "Oz": [["M"]], - "Oz's": null, - "ozone": [["S", "M"]], - "ozones": null, - "ozone's": null, - "Ozymandias": [["M"]], - "Ozymandias's": null, - "Ozzie": [["M"]], - "Ozzie's": null, - "Ozzy": [["M"]], - "Ozzy's": null, - "P": null, - "PA": null, - "Pablo": [["M"]], - "Pablo's": null, - "Pablum": [["M"]], - "Pablum's": null, - "pablum": [["S"]], - "pablums": null, - "Pabst": [["M"]], - "Pabst's": null, - "pabulum": [["S", "M"]], - "pabulums": null, - "pabulum's": null, - "PAC": null, - "pace": [["D", "R", "S", "M", "Z", "G"]], - "paced": null, - "pacer": [["M"]], - "paces": null, - "pace's": null, - "pacers": null, - "pacing": null, - "Pace": [["M"]], - "Pace's": null, - "pacemaker": [["S", "M"]], - "pacemakers": null, - "pacemaker's": null, - "pacer's": null, - "pacesetter": [["M", "S"]], - "pacesetter's": null, - "pacesetters": null, - "pacesetting": null, - "Pacheco": [["M"]], - "Pacheco's": null, - "pachyderm": [["M", "S"]], - "pachyderm's": null, - "pachyderms": null, - "pachysandra": [["M", "S"]], - "pachysandra's": null, - "pachysandras": null, - "pacific": null, - "pacifically": null, - "pacification": [["M"]], - "pacification's": null, - "Pacific": [["M"]], - "Pacific's": null, - "pacifier": [["M"]], - "pacifier's": null, - "pacifism": [["M", "S"]], - "pacifism's": null, - "pacifisms": null, - "pacifistic": null, - "pacifist": [["M", "S"]], - "pacifist's": null, - "pacifists": null, - "pacify": [["N", "R", "S", "D", "G", "X", "Z"]], - "pacifies": null, - "pacified": null, - "pacifying": null, - "pacifications": null, - "pacifiers": null, - "package": [["A", "R", "S", "D", "G"]], - "repackage": null, - "repackager": null, - "repackages": null, - "repackaged": null, - "repackaging": null, - "packager": [["S"]], - "packages": [["U"]], - "packaged": [["U"]], - "packaging": [["S", "M"]], - "unpackaged": null, - "packagers": null, - "package's": null, - "unpackages": null, - "packagings": null, - "packaging's": null, - "Packard": [["S", "M"]], - "Packards": null, - "Packard's": null, - "packed": [["A", "U"]], - "repacked": null, - "unpacked": null, - "packer": [["M", "U", "S"]], - "packer's": null, - "unpacker's": null, - "unpacker": null, - "unpackers": null, - "packers": null, - "packet": [["M", "S", "D", "G"]], - "packet's": null, - "packets": null, - "packeted": null, - "packeting": null, - "pack": [["G", "Z", "S", "J", "D", "R", "M", "B"]], - "packing": [["M"]], - "packs": [["U", "A"]], - "packings": null, - "pack's": null, - "packable": null, - "packhorse": [["M"]], - "packhorse's": null, - "packinghouse": [["S"]], - "packinghouses": null, - "packing's": null, - "packsaddle": [["S", "M"]], - "packsaddles": null, - "packsaddle's": null, - "Packston": [["M"]], - "Packston's": null, - "unpacks": null, - "repacks": null, - "Packwood": [["M"]], - "Packwood's": null, - "Paco": [["M"]], - "Paco's": null, - "Pacorro": [["M"]], - "Pacorro's": null, - "pact": [["S", "M"]], - "pacts": null, - "pact's": null, - "Padang": [["M"]], - "Padang's": null, - "padded": [["U"]], - "unpadded": null, - "Paddie": [["M"]], - "Paddie's": null, - "padding": [["S", "M"]], - "paddings": null, - "padding's": null, - "paddle": [["M", "Z", "G", "R", "S", "D"]], - "paddle's": null, - "paddlers": null, - "paddling": null, - "paddler": [["M"]], - "paddles": null, - "paddled": null, - "paddler's": null, - "paddock": [["S", "D", "M", "G"]], - "paddocks": null, - "paddocked": null, - "paddock's": null, - "paddocking": null, - "Paddy": [["M"]], - "Paddy's": null, - "paddy": [["S", "M"]], - "paddies": null, - "paddy's": null, - "Padget": [["M"]], - "Padget's": null, - "Padgett": [["M"]], - "Padgett's": null, - "Padilla": [["M"]], - "Padilla's": null, - "padlock": [["S", "G", "D", "M"]], - "padlocks": null, - "padlocking": null, - "padlocked": null, - "padlock's": null, - "pad": [["M", "S"]], - "pad's": null, - "pads": null, - "Padraic": [["M"]], - "Padraic's": null, - "Padraig": [["M"]], - "Padraig's": null, - "padre": [["M", "S"]], - "padre's": null, - "padres": null, - "Padrewski": [["M"]], - "Padrewski's": null, - "Padriac": [["M"]], - "Padriac's": null, - "paean": [["M", "S"]], - "paean's": null, - "paeans": null, - "paediatrician": [["M", "S"]], - "paediatrician's": null, - "paediatricians": null, - "paediatrics": [["M"]], - "paediatrics's": null, - "paedophilia's": null, - "paella": [["S", "M"]], - "paellas": null, - "paella's": null, - "paeony": [["M"]], - "paeony's": null, - "Paganini": [["M"]], - "Paganini's": null, - "paganism": [["M", "S"]], - "paganism's": null, - "paganisms": null, - "pagan": [["S", "M"]], - "pagans": null, - "pagan's": null, - "pageantry": [["S", "M"]], - "pageantries": null, - "pageantry's": null, - "pageant": [["S", "M"]], - "pageants": null, - "pageant's": null, - "pageboy": [["S", "M"]], - "pageboys": null, - "pageboy's": null, - "paged": [["U"]], - "unpaged": null, - "pageful": null, - "Page": [["M"]], - "Page's": null, - "page": [["M", "Z", "G", "D", "R", "S"]], - "page's": null, - "pagers": null, - "paging": null, - "pager": [["M"]], - "pages": null, - "pager's": null, - "paginate": [["D", "S", "N", "G", "X"]], - "paginated": null, - "paginates": null, - "pagination": null, - "paginating": null, - "paginations": null, - "Paglia": [["M"]], - "Paglia's": null, - "pagoda": [["M", "S"]], - "pagoda's": null, - "pagodas": null, - "Pahlavi": [["M"]], - "Pahlavi's": null, - "paid": [["A", "U"]], - "repaid": null, - "unpaid": null, - "Paige": [["M"]], - "Paige's": null, - "pailful": [["S", "M"]], - "pailfuls": null, - "pailful's": null, - "Pail": [["M"]], - "Pail's": null, - "pail": [["S", "M"]], - "pails": null, - "pail's": null, - "Paine": [["M"]], - "Paine's": null, - "painfuller": null, - "painfullest": null, - "painfulness": [["M", "S"]], - "painfulness's": null, - "painfulnesses": null, - "painful": [["Y", "P"]], - "painfully": null, - "pain": [["G", "S", "D", "M"]], - "paining": null, - "pains": null, - "pained": null, - "pain's": null, - "painkiller": [["M", "S"]], - "painkiller's": null, - "painkillers": null, - "painkilling": null, - "painlessness": [["S"]], - "painlessnesses": null, - "painless": [["Y", "P"]], - "painlessly": null, - "painstaking": [["S", "Y"]], - "painstakings": null, - "painstakingly": null, - "paint": [["A", "D", "R", "Z", "G", "S"]], - "repaint": null, - "repainted": null, - "repainter": null, - "repainters": null, - "repainting": null, - "repaints": null, - "painted": [["U"]], - "painter": [["Y", "M"]], - "painters": null, - "painting": [["S", "M"]], - "paints": null, - "paintbox": [["M"]], - "paintbox's": null, - "paintbrush": [["S", "M"]], - "paintbrushes": null, - "paintbrush's": null, - "unpainted": null, - "painterly": [["P"]], - "painterliness": null, - "painter's": null, - "paintings": null, - "painting's": null, - "paint's": null, - "paintwork": null, - "paired": [["U", "A"]], - "unpaired": null, - "repaired": null, - "pair": [["J", "S", "D", "M", "G"]], - "pairings": null, - "pairs": [["A"]], - "pair's": null, - "pairing": null, - "repairs": [["E"]], - "pairwise": null, - "paisley": [["M", "S"]], - "paisley's": null, - "paisleys": null, - "pajama": [["M", "D", "S"]], - "pajama's": null, - "pajamaed": null, - "pajamas": null, - "Pakistani": [["S"]], - "Pakistanis": null, - "Pakistan": [["M"]], - "Pakistan's": null, - "palace": [["M", "S"]], - "palace's": null, - "palaces": null, - "paladin": [["M", "S"]], - "paladin's": null, - "paladins": null, - "palaeolithic": null, - "palaeontologists": null, - "palaeontology": [["M"]], - "palaeontology's": null, - "palanquin": [["M", "S"]], - "palanquin's": null, - "palanquins": null, - "palatability": [["M"]], - "palatability's": null, - "palatableness": [["M"]], - "palatableness's": null, - "palatable": [["P"]], - "palatalization": [["M", "S"]], - "palatalization's": null, - "palatalizations": null, - "palatalize": [["S", "D", "G"]], - "palatalizes": null, - "palatalized": null, - "palatalizing": null, - "palatal": [["Y", "S"]], - "palatally": null, - "palatals": null, - "palate": [["B", "M", "S"]], - "palate's": null, - "palates": null, - "palatial": [["Y"]], - "palatially": null, - "palatinate": [["S", "M"]], - "palatinates": null, - "palatinate's": null, - "Palatine": null, - "palatine": [["S"]], - "palatines": null, - "palaver": [["G", "S", "D", "M"]], - "palavering": null, - "palavers": null, - "palavered": null, - "palaver's": null, - "paleface": [["S", "M"]], - "palefaces": null, - "paleface's": null, - "Palembang": [["M"]], - "Palembang's": null, - "paleness": [["S"]], - "palenesses": null, - "Paleocene": null, - "Paleogene": null, - "paleographer": [["S", "M"]], - "paleographers": null, - "paleographer's": null, - "paleography": [["S", "M"]], - "paleographies": null, - "paleography's": null, - "paleolithic": null, - "Paleolithic": null, - "paleontologist": [["S"]], - "paleontologists": null, - "paleontology": [["M", "S"]], - "paleontology's": null, - "paleontologies": null, - "Paleozoic": null, - "Palermo": [["M"]], - "Palermo's": null, - "pale": [["S", "P", "Y"]], - "pales": null, - "palely": null, - "Palestine": [["M"]], - "Palestine's": null, - "Palestinian": [["S"]], - "Palestinians": null, - "Palestrina": [["M"]], - "Palestrina's": null, - "palette": [["M", "S"]], - "palette's": null, - "palettes": null, - "Paley": [["M"]], - "Paley's": null, - "palfrey": [["M", "S"]], - "palfrey's": null, - "palfreys": null, - "palimony": [["S"]], - "palimonies": null, - "palimpsest": [["M", "S"]], - "palimpsest's": null, - "palimpsests": null, - "palindrome": [["M", "S"]], - "palindrome's": null, - "palindromes": null, - "palindromic": null, - "paling": [["M"]], - "paling's": null, - "palisade": [["M", "G", "S", "D"]], - "palisade's": null, - "palisading": null, - "palisades": null, - "palisaded": null, - "Palisades": [["M"]], - "Palisades's": null, - "palish": null, - "Palladio": [["M"]], - "Palladio's": null, - "palladium": [["S", "M"]], - "palladiums": null, - "palladium's": null, - "pallbearer": [["S", "M"]], - "pallbearers": null, - "pallbearer's": null, - "palletized": null, - "pallet": [["S", "M", "G", "D"]], - "pallets": null, - "pallet's": null, - "palleting": null, - "palleted": null, - "pall": [["G", "S", "M", "D"]], - "palling": null, - "palls": null, - "pall's": null, - "palled": null, - "palliate": [["S", "D", "V", "N", "G", "X"]], - "palliates": null, - "palliated": null, - "palliative": [["S", "Y"]], - "palliation": [["M"]], - "palliating": null, - "palliations": null, - "palliation's": null, - "palliatives": null, - "palliatively": null, - "pallidness": [["M", "S"]], - "pallidness's": null, - "pallidnesses": null, - "pallid": [["P", "Y"]], - "pallidly": null, - "Pall": [["M"]], - "Pall's": null, - "pallor": [["M", "S"]], - "pallor's": null, - "pallors": null, - "palmate": null, - "palmer": [["M"]], - "palmer's": null, - "Palmer": [["M"]], - "Palmer's": null, - "Palmerston": [["M"]], - "Palmerston's": null, - "palmetto": [["M", "S"]], - "palmetto's": null, - "palmettos": null, - "palm": [["G", "S", "M", "D", "R"]], - "palming": null, - "palms": null, - "palm's": null, - "palmed": null, - "palmist": [["M", "S"]], - "palmist's": null, - "palmists": null, - "palmistry": [["M", "S"]], - "palmistry's": null, - "palmistries": null, - "Palm": [["M", "R"]], - "Palm's": null, - "Palmolive": [["M"]], - "Palmolive's": null, - "palmtop": [["S"]], - "palmtops": null, - "Palmyra": [["M"]], - "Palmyra's": null, - "palmy": [["R", "T"]], - "palmier": null, - "palmiest": null, - "Palo": [["M"]], - "Palo's": null, - "Paloma": [["M"]], - "Paloma's": null, - "Palomar": [["M"]], - "Palomar's": null, - "palomino": [["M", "S"]], - "palomino's": null, - "palominos": null, - "palpable": null, - "palpably": null, - "palpate": [["S", "D", "N", "G", "X"]], - "palpates": null, - "palpated": null, - "palpation": [["M"]], - "palpating": null, - "palpations": null, - "palpation's": null, - "palpitate": [["N", "G", "X", "S", "D"]], - "palpitation": [["M"]], - "palpitating": null, - "palpitations": null, - "palpitates": null, - "palpitated": null, - "palpitation's": null, - "pal": [["S", "J", "M", "D", "R", "Y", "T", "G"]], - "pals": null, - "palings": null, - "pal's": null, - "paled": null, - "paler": null, - "pally": null, - "palest": null, - "palsy": [["G", "S", "D", "M"]], - "palsying": null, - "palsies": null, - "palsied": null, - "palsy's": null, - "paltriness": [["S", "M"]], - "paltrinesses": null, - "paltriness's": null, - "paltry": [["T", "R", "P"]], - "paltriest": null, - "paltrier": null, - "paludal": null, - "Pa": [["M"]], - "Pa's": null, - "Pamela": [["M"]], - "Pamela's": null, - "Pamelina": [["M"]], - "Pamelina's": null, - "Pamella": [["M"]], - "Pamella's": null, - "pa": [["M", "H"]], - "pa's": null, - "path": [["M"]], - "Pamirs": null, - "Pam": [["M"]], - "Pam's": null, - "Pammie": [["M"]], - "Pammie's": null, - "Pammi": [["M"]], - "Pammi's": null, - "Pammy": [["M"]], - "Pammy's": null, - "pampas": [["M"]], - "pampas's": null, - "pamperer": [["M"]], - "pamperer's": null, - "pamper": [["R", "D", "S", "G"]], - "pampered": null, - "pampers": null, - "pampering": null, - "Pampers": null, - "pamphleteer": [["D", "M", "S", "G"]], - "pamphleteered": null, - "pamphleteer's": null, - "pamphleteers": null, - "pamphleteering": null, - "pamphlet": [["S", "M"]], - "pamphlets": null, - "pamphlet's": null, - "panacea": [["M", "S"]], - "panacea's": null, - "panaceas": null, - "panache": [["M", "S"]], - "panache's": null, - "panaches": null, - "Panama": [["M", "S"]], - "Panama's": null, - "Panamas": null, - "Panamanian": [["S"]], - "Panamanians": null, - "panama": [["S"]], - "panamas": null, - "pancake": [["M", "G", "S", "D"]], - "pancake's": null, - "pancaking": null, - "pancakes": null, - "pancaked": null, - "Panchito": [["M"]], - "Panchito's": null, - "Pancho": [["M"]], - "Pancho's": null, - "panchromatic": null, - "pancreas": [["M", "S"]], - "pancreas's": null, - "pancreases": null, - "pancreatic": null, - "panda": [["S", "M"]], - "pandas": null, - "panda's": null, - "pandemic": [["S"]], - "pandemics": null, - "pandemonium": [["S", "M"]], - "pandemoniums": null, - "pandemonium's": null, - "pander": [["Z", "G", "R", "D", "S"]], - "panderers": null, - "pandering": null, - "panderer": null, - "pandered": null, - "panders": null, - "Pandora": [["M"]], - "Pandora's": null, - "panegyric": [["S", "M"]], - "panegyrics": null, - "panegyric's": null, - "pane": [["K", "M", "S"]], - "propane": null, - "propane's": null, - "propanes": null, - "pane's": null, - "panes": null, - "paneling": [["M"]], - "paneling's": null, - "panelist": [["M", "S"]], - "panelist's": null, - "panelists": null, - "panelization": null, - "panelized": null, - "panel": [["J", "S", "G", "D", "M"]], - "panelings": null, - "panels": null, - "paneled": null, - "panel's": null, - "Pangaea": [["M"]], - "Pangaea's": null, - "pang": [["G", "D", "M", "S"]], - "panging": null, - "panged": null, - "pang's": null, - "pangs": null, - "pangolin": [["M"]], - "pangolin's": null, - "panhandle": [["R", "S", "D", "G", "M", "Z"]], - "panhandler": null, - "panhandles": null, - "panhandled": null, - "panhandling": null, - "panhandle's": null, - "panhandlers": null, - "panicked": null, - "panicking": null, - "panicky": [["R", "T"]], - "panickier": null, - "panickiest": null, - "panic": [["S", "M"]], - "panics": null, - "panic's": null, - "panier's": null, - "panjandrum": [["M"]], - "panjandrum's": null, - "Pankhurst": [["M"]], - "Pankhurst's": null, - "Pan": [["M"]], - "Pan's": null, - "Panmunjom": [["M"]], - "Panmunjom's": null, - "panned": null, - "pannier": [["S", "M"]], - "panniers": null, - "pannier's": null, - "panning": null, - "panoply": [["M", "S", "D"]], - "panoply's": null, - "panoplies": null, - "panoplied": null, - "panorama": [["M", "S"]], - "panorama's": null, - "panoramas": null, - "panoramic": null, - "panpipes": null, - "Pansie": [["M"]], - "Pansie's": null, - "pan": [["S", "M", "D"]], - "pans": null, - "pan's": null, - "paned": null, - "Pansy": [["M"]], - "Pansy's": null, - "pansy": [["S", "M"]], - "pansies": null, - "pansy's": null, - "Pantagruel": [["M"]], - "Pantagruel's": null, - "Pantaloon": [["M"]], - "Pantaloon's": null, - "pantaloons": null, - "pant": [["G", "D", "S"]], - "panting": null, - "panted": null, - "pants": null, - "pantheism": [["M", "S"]], - "pantheism's": null, - "pantheisms": null, - "pantheistic": null, - "pantheist": [["S"]], - "pantheists": null, - "pantheon": [["M", "S"]], - "pantheon's": null, - "pantheons": null, - "panther": [["S", "M"]], - "panthers": null, - "panther's": null, - "pantie": [["S", "M"]], - "panties": null, - "pantie's": null, - "pantiled": null, - "pantograph": [["M"]], - "pantograph's": null, - "pantomime": [["S", "D", "G", "M"]], - "pantomimes": null, - "pantomimed": null, - "pantomiming": null, - "pantomime's": null, - "pantomimic": null, - "pantomimist": [["S", "M"]], - "pantomimists": null, - "pantomimist's": null, - "pantry": [["S", "M"]], - "pantries": null, - "pantry's": null, - "pantsuit": [["S", "M"]], - "pantsuits": null, - "pantsuit's": null, - "pantyhose": null, - "pantyliner": null, - "pantywaist": [["S", "M"]], - "pantywaists": null, - "pantywaist's": null, - "Panza": [["M"]], - "Panza's": null, - "Paola": [["M"]], - "Paola's": null, - "Paoli": [["M"]], - "Paoli's": null, - "Paolina": [["M"]], - "Paolina's": null, - "Paolo": [["M"]], - "Paolo's": null, - "papacy": [["S", "M"]], - "papacies": null, - "papacy's": null, - "Papagena": [["M"]], - "Papagena's": null, - "Papageno": [["M"]], - "Papageno's": null, - "papal": [["Y"]], - "papally": null, - "papa": [["M", "S"]], - "papa's": null, - "papas": null, - "paparazzi": null, - "papaw": [["S", "M"]], - "papaws": null, - "papaw's": null, - "papaya": [["M", "S"]], - "papaya's": null, - "papayas": null, - "paperback": [["G", "D", "M", "S"]], - "paperbacking": null, - "paperbacked": null, - "paperback's": null, - "paperbacks": null, - "paperboard": [["M", "S"]], - "paperboard's": null, - "paperboards": null, - "paperboy": [["S", "M"]], - "paperboys": null, - "paperboy's": null, - "paperer": [["M"]], - "paperer's": null, - "papergirl": [["S", "M"]], - "papergirls": null, - "papergirl's": null, - "paper": [["G", "J", "M", "R", "D", "Z"]], - "papering": null, - "paperings": null, - "paper's": null, - "papered": null, - "paperers": null, - "paperhanger": [["S", "M"]], - "paperhangers": null, - "paperhanger's": null, - "paperhanging": [["S", "M"]], - "paperhangings": null, - "paperhanging's": null, - "paperiness": [["M"]], - "paperiness's": null, - "paperless": null, - "paperweight": [["M", "S"]], - "paperweight's": null, - "paperweights": null, - "paperwork": [["S", "M"]], - "paperworks": null, - "paperwork's": null, - "papery": [["P"]], - "papillae": null, - "papilla": [["M"]], - "papilla's": null, - "papillary": null, - "papist": [["M", "S"]], - "papist's": null, - "papists": null, - "papoose": [["S", "M"]], - "papooses": null, - "papoose's": null, - "Pappas": [["M"]], - "Pappas's": null, - "papped": null, - "papping": null, - "pappy": [["R", "S", "T"]], - "pappier": null, - "pappies": null, - "pappiest": null, - "paprika": [["M", "S"]], - "paprika's": null, - "paprikas": null, - "pap": [["S", "Z", "M", "N", "R"]], - "paps": null, - "papers": null, - "pap's": null, - "papen": null, - "papyri": null, - "papyrus": [["M"]], - "papyrus's": null, - "Paquito": [["M"]], - "Paquito's": null, - "parable": [["M", "G", "S", "D"]], - "parable's": null, - "parabling": null, - "parables": null, - "parabled": null, - "parabola": [["M", "S"]], - "parabola's": null, - "parabolas": null, - "parabolic": null, - "paraboloidal": [["M"]], - "paraboloidal's": null, - "paraboloid": [["M", "S"]], - "paraboloid's": null, - "paraboloids": null, - "Paracelsus": [["M"]], - "Paracelsus's": null, - "paracetamol": [["M"]], - "paracetamol's": null, - "parachuter": [["M"]], - "parachuter's": null, - "parachute": [["R", "S", "D", "M", "G"]], - "parachutes": null, - "parachuted": null, - "parachute's": null, - "parachuting": null, - "parachutist": [["M", "S"]], - "parachutist's": null, - "parachutists": null, - "Paraclete": [["M"]], - "Paraclete's": null, - "parader": [["M"]], - "parader's": null, - "parade": [["R", "S", "D", "M", "Z", "G"]], - "parades": null, - "paraded": null, - "parade's": null, - "paraders": null, - "parading": null, - "paradigmatic": null, - "paradigm": [["S", "M"]], - "paradigms": null, - "paradigm's": null, - "paradisaic": null, - "paradisaical": null, - "Paradise": [["M"]], - "Paradise's": null, - "paradise": [["M", "S"]], - "paradise's": null, - "paradises": null, - "paradoxic": null, - "paradoxicalness": [["M"]], - "paradoxicalness's": null, - "paradoxical": [["Y", "P"]], - "paradoxically": null, - "paradox": [["M", "S"]], - "paradox's": null, - "paradoxes": null, - "paraffin": [["G", "S", "M", "D"]], - "paraffining": null, - "paraffins": null, - "paraffin's": null, - "paraffined": null, - "paragon": [["S", "G", "D", "M"]], - "paragons": null, - "paragoning": null, - "paragoned": null, - "paragon's": null, - "paragrapher": [["M"]], - "paragrapher's": null, - "paragraph": [["M", "R", "D", "G"]], - "paragraph's": null, - "paragraphed": null, - "paragraphing": null, - "paragraphs": null, - "Paraguayan": [["S"]], - "Paraguayans": null, - "Paraguay": [["M"]], - "Paraguay's": null, - "parakeet": [["M", "S"]], - "parakeet's": null, - "parakeets": null, - "paralegal": [["S"]], - "paralegals": null, - "paralinguistic": null, - "parallax": [["S", "M"]], - "parallaxes": null, - "parallax's": null, - "parallel": [["D", "S", "G"]], - "paralleled": [["U"]], - "parallels": null, - "paralleling": null, - "unparalleled": null, - "parallelepiped": [["M", "S"]], - "parallelepiped's": null, - "parallelepipeds": null, - "parallelism": [["S", "M"]], - "parallelisms": null, - "parallelism's": null, - "parallelization": [["M", "S"]], - "parallelization's": null, - "parallelizations": null, - "parallelize": [["Z", "G", "D", "S", "R"]], - "parallelizers": null, - "parallelizing": null, - "parallelized": null, - "parallelizes": null, - "parallelizer": null, - "parallelogram": [["M", "S"]], - "parallelogram's": null, - "parallelograms": null, - "paralysis": [["M"]], - "paralysis's": null, - "paralytically": null, - "paralytic": [["S"]], - "paralytics": null, - "paralyzedly": [["S"]], - "paralyzedlies": null, - "paralyzed": [["Y"]], - "paralyzer": [["M"]], - "paralyzer's": null, - "paralyze": [["Z", "G", "D", "R", "S"]], - "paralyzers": null, - "paralyzing": [["Y"]], - "paralyzes": null, - "paralyzingly": [["S"]], - "paralyzinglies": null, - "paramagnetic": null, - "paramagnet": [["M"]], - "paramagnet's": null, - "Paramaribo": [["M"]], - "Paramaribo's": null, - "paramecia": null, - "paramecium": [["M"]], - "paramecium's": null, - "paramedical": [["S"]], - "paramedicals": null, - "paramedic": [["M", "S"]], - "paramedic's": null, - "paramedics": null, - "parameterization": [["S", "M"]], - "parameterizations": null, - "parameterization's": null, - "parameterize": [["B", "S", "D", "G"]], - "parameterizable": null, - "parameterizes": null, - "parameterized": [["U"]], - "parameterizing": null, - "unparameterized": null, - "parameterless": null, - "parameter": [["S", "M"]], - "parameters": null, - "parameter's": null, - "parametric": null, - "parametrically": null, - "parametrization": null, - "parametrize": [["D", "S"]], - "parametrized": null, - "parametrizes": null, - "paramilitary": [["S"]], - "paramilitaries": null, - "paramount": [["S"]], - "paramounts": null, - "paramour": [["M", "S"]], - "paramour's": null, - "paramours": null, - "para": [["M", "S"]], - "para's": null, - "paras": null, - "Paramus": [["M"]], - "Paramus's": null, - "Paran�": null, - "paranoiac": [["S"]], - "paranoiacs": null, - "paranoia": [["S", "M"]], - "paranoias": null, - "paranoia's": null, - "paranoid": [["S"]], - "paranoids": null, - "paranormal": [["S", "Y"]], - "paranormals": null, - "paranormally": null, - "parapet": [["S", "M", "D"]], - "parapets": null, - "parapet's": null, - "parapeted": null, - "paraphernalia": null, - "paraphrase": [["G", "M", "S", "R", "D"]], - "paraphrasing": null, - "paraphrase's": null, - "paraphrases": null, - "paraphraser": [["M"]], - "paraphrased": null, - "paraphraser's": null, - "paraplegia": [["M", "S"]], - "paraplegia's": null, - "paraplegias": null, - "paraplegic": [["S"]], - "paraplegics": null, - "paraprofessional": [["S", "M"]], - "paraprofessionals": null, - "paraprofessional's": null, - "parapsychologist": [["S"]], - "parapsychologists": null, - "parapsychology": [["M", "S"]], - "parapsychology's": null, - "parapsychologies": null, - "paraquat": [["S"]], - "paraquats": null, - "parasite": [["S", "M"]], - "parasites": null, - "parasite's": null, - "parasitically": null, - "parasitic": [["S"]], - "parasitics": null, - "parasitism": [["S", "M"]], - "parasitisms": null, - "parasitism's": null, - "parasitologist": [["M"]], - "parasitologist's": null, - "parasitology": [["M"]], - "parasitology's": null, - "parasol": [["S", "M"]], - "parasols": null, - "parasol's": null, - "parasympathetic": [["S"]], - "parasympathetics": null, - "parathion": [["S", "M"]], - "parathions": null, - "parathion's": null, - "parathyroid": [["S"]], - "parathyroids": null, - "paratrooper": [["M"]], - "paratrooper's": null, - "paratroop": [["R", "S", "Z"]], - "paratroops": null, - "paratroopers": null, - "paratyphoid": [["S"]], - "paratyphoids": null, - "parboil": [["D", "S", "G"]], - "parboiled": null, - "parboils": null, - "parboiling": null, - "parceled": [["U"]], - "unparceled": null, - "parceling": [["M"]], - "parceling's": null, - "parcel": [["S", "G", "M", "D"]], - "parcels": null, - "parcel's": null, - "Parcheesi": [["M"]], - "Parcheesi's": null, - "parch": [["G", "S", "D", "L"]], - "parching": null, - "parches": null, - "parched": null, - "parchment": [["S", "M"]], - "parchments": null, - "parchment's": null, - "PARC": [["M"]], - "PARC's": null, - "pardonableness": [["M"]], - "pardonableness's": null, - "pardonable": [["U"]], - "unpardonable": null, - "pardonably": [["U"]], - "unpardonably": null, - "pardoner": [["M"]], - "pardoner's": null, - "pardon": [["Z", "B", "G", "R", "D", "S"]], - "pardoners": null, - "pardoning": null, - "pardoned": null, - "pardons": null, - "paregoric": [["S", "M"]], - "paregorics": null, - "paregoric's": null, - "parentage": [["M", "S"]], - "parentage's": null, - "parentages": null, - "parental": [["Y"]], - "parentally": null, - "parenteral": null, - "parentheses": null, - "parenthesis": [["M"]], - "parenthesis's": null, - "parenthesize": [["G", "S", "D"]], - "parenthesizing": null, - "parenthesizes": null, - "parenthesized": null, - "parenthetic": null, - "parenthetical": [["Y"]], - "parenthetically": null, - "parenthood": [["M", "S"]], - "parenthood's": null, - "parenthoods": null, - "parent": [["M", "D", "G", "J", "S"]], - "parent's": null, - "parented": null, - "parenting": null, - "parentings": null, - "parents": null, - "pare": [["S"]], - "pares": [["S"]], - "paresis": [["M"]], - "paresis's": null, - "pareses": null, - "Pareto": [["M"]], - "Pareto's": null, - "parfait": [["S", "M"]], - "parfaits": null, - "parfait's": null, - "pariah": [["M"]], - "pariah's": null, - "pariahs": null, - "parietal": [["S"]], - "parietals": null, - "parimutuel": [["S"]], - "parimutuels": null, - "paring": [["M"]], - "paring's": null, - "parishioner": [["S", "M"]], - "parishioners": null, - "parishioner's": null, - "parish": [["M", "S"]], - "parish's": null, - "parishes": null, - "Parisian": [["S", "M"]], - "Parisians": null, - "Parisian's": null, - "Paris": [["M"]], - "Paris's": null, - "parity": [["E", "S", "M"]], - "disparity": null, - "disparities": null, - "disparity's": null, - "parities": null, - "parity's": null, - "parka": [["M", "S"]], - "parka's": null, - "parkas": null, - "Parke": [["M"]], - "Parke's": null, - "Parker": [["M"]], - "Parker's": null, - "Parkersburg": [["M"]], - "Parkersburg's": null, - "park": [["G", "J", "Z", "D", "R", "M", "S"]], - "parking": [["M"]], - "parkings": null, - "parkers": null, - "parked": null, - "parker": null, - "park's": null, - "parks": null, - "Parkhouse": [["M"]], - "Parkhouse's": null, - "parking's": null, - "Parkinson": [["M"]], - "Parkinson's": null, - "parkish": null, - "parkland": [["M"]], - "parkland's": null, - "parklike": null, - "Parkman": null, - "Park": [["R", "M", "S"]], - "Park's": null, - "Parks": null, - "parkway": [["M", "S"]], - "parkway's": null, - "parkways": null, - "parlance": [["S", "M"]], - "parlances": null, - "parlance's": null, - "parlay": [["D", "G", "S"]], - "parlayed": null, - "parlaying": null, - "parlays": null, - "parley": [["M", "D", "S", "G"]], - "parley's": null, - "parleyed": null, - "parleys": null, - "parleying": null, - "parliamentarian": [["S", "M"]], - "parliamentarians": null, - "parliamentarian's": null, - "parliamentary": [["U"]], - "unparliamentary": null, - "parliament": [["M", "S"]], - "parliament's": null, - "parliaments": null, - "Parliament": [["M", "S"]], - "Parliament's": null, - "Parliaments": null, - "parlor": [["S", "M"]], - "parlors": null, - "parlor's": null, - "parlous": null, - "Parmesan": [["S"]], - "Parmesans": null, - "parmigiana": null, - "Parnassus": [["S", "M"]], - "Parnassuses": null, - "Parnassus's": null, - "Parnell": [["M"]], - "Parnell's": null, - "parochialism": [["S", "M"]], - "parochialisms": null, - "parochialism's": null, - "parochiality": null, - "parochial": [["Y"]], - "parochially": null, - "parodied": [["U"]], - "unparodied": null, - "parodist": [["S", "M"]], - "parodists": null, - "parodist's": null, - "parody": [["S", "D", "G", "M"]], - "parodies": null, - "parodying": null, - "parody's": null, - "parolee": [["M", "S"]], - "parolee's": null, - "parolees": null, - "parole": [["M", "S", "D", "G"]], - "parole's": null, - "paroles": null, - "paroled": null, - "paroling": null, - "paroxysmal": null, - "paroxysm": [["M", "S"]], - "paroxysm's": null, - "paroxysms": null, - "parquetry": [["S", "M"]], - "parquetries": null, - "parquetry's": null, - "parquet": [["S", "M", "D", "G"]], - "parquets": null, - "parquet's": null, - "parqueted": null, - "parqueting": null, - "parrakeet's": null, - "parred": null, - "parricidal": null, - "parricide": [["M", "S"]], - "parricide's": null, - "parricides": null, - "parring": null, - "Parrish": [["M"]], - "Parrish's": null, - "Parr": [["M"]], - "Parr's": null, - "Parrnell": [["M"]], - "Parrnell's": null, - "parrot": [["G", "M", "D", "S"]], - "parroting": null, - "parrot's": null, - "parroted": null, - "parrots": null, - "parrotlike": null, - "parry": [["G", "S", "D"]], - "parrying": null, - "parries": null, - "parried": null, - "Parry": [["M"]], - "Parry's": null, - "parse": null, - "parsec": [["S", "M"]], - "parsecs": null, - "parsec's": null, - "parsed": [["U"]], - "unparsed": null, - "Parsee's": null, - "parser": [["M"]], - "parser's": null, - "Parsifal": [["M"]], - "Parsifal's": null, - "parsimonious": [["Y"]], - "parsimoniously": null, - "parsimony": [["S", "M"]], - "parsimonies": null, - "parsimony's": null, - "pars": [["J", "D", "S", "R", "G", "Z"]], - "parsings": null, - "parses": null, - "parsing": null, - "parsers": null, - "parsley": [["M", "S"]], - "parsley's": null, - "parsleys": null, - "parsnip": [["M", "S"]], - "parsnip's": null, - "parsnips": null, - "parsonage": [["M", "S"]], - "parsonage's": null, - "parsonages": null, - "parson": [["M", "S"]], - "parson's": null, - "parsons": null, - "Parsons": [["M"]], - "Parsons's": null, - "partaken": null, - "partaker": [["M"]], - "partaker's": null, - "partake": [["Z", "G", "S", "R"]], - "partakers": null, - "partaking": null, - "partakes": null, - "part": [["C", "D", "G", "S"]], - "departed": null, - "departing": null, - "departs": null, - "parted": null, - "parting": [["M", "S"]], - "parts": null, - "parterre": [["M", "S"]], - "parterre's": null, - "parterres": null, - "parter": [["S"]], - "parters": null, - "parthenogeneses": null, - "parthenogenesis": [["M"]], - "parthenogenesis's": null, - "Parthenon": [["M"]], - "Parthenon's": null, - "Parthia": [["M"]], - "Parthia's": null, - "partiality": [["M", "S"]], - "partiality's": null, - "partialities": null, - "partial": [["S", "Y"]], - "partials": null, - "partially": null, - "participant": [["M", "S"]], - "participant's": null, - "participants": null, - "participate": [["N", "G", "V", "D", "S", "X"]], - "participation": [["M"]], - "participating": null, - "participative": null, - "participated": null, - "participates": null, - "participations": null, - "participation's": null, - "participator": [["S"]], - "participators": null, - "participatory": null, - "participial": [["Y"]], - "participially": null, - "participle": [["M", "S"]], - "participle's": null, - "participles": null, - "particleboard": [["S"]], - "particleboards": null, - "particle": [["M", "S"]], - "particle's": null, - "particles": null, - "particolored": null, - "particularistic": null, - "particularity": [["S", "M"]], - "particularities": null, - "particularity's": null, - "particularization": [["M", "S"]], - "particularization's": null, - "particularizations": null, - "particularize": [["G", "S", "D"]], - "particularizing": null, - "particularizes": null, - "particularized": null, - "particular": [["S", "Y"]], - "particulars": null, - "particularly": null, - "particulate": [["S"]], - "particulates": null, - "parting's": null, - "partings": null, - "partisanship": [["S", "M"]], - "partisanships": null, - "partisanship's": null, - "partisan": [["S", "M"]], - "partisans": null, - "partisan's": null, - "partition": [["A", "M", "R", "D", "G", "S"]], - "repartition": [["Z"]], - "repartition's": null, - "repartitioner": null, - "repartitioned": null, - "repartitioning": null, - "repartitions": null, - "partition's": null, - "partitioner": [["M"]], - "partitioned": [["U"]], - "partitioning": null, - "partitions": null, - "unpartitioned": null, - "partitioner's": null, - "partitive": [["S"]], - "partitives": null, - "partizan's": null, - "partly": null, - "partner": [["D", "M", "G", "S"]], - "partnered": null, - "partner's": null, - "partnering": null, - "partners": null, - "partnership": [["S", "M"]], - "partnerships": null, - "partnership's": null, - "partook": null, - "partridge": [["M", "S"]], - "partridge's": null, - "partridges": null, - "part's": null, - "parturition": [["S", "M"]], - "parturitions": null, - "parturition's": null, - "partway": null, - "party": [["R", "S", "D", "M", "G"]], - "partier": null, - "parties": null, - "partied": null, - "party's": null, - "partying": null, - "parvenu": [["S", "M"]], - "parvenus": null, - "parvenu's": null, - "par": [["Z", "G", "S", "J", "B", "M", "D", "R"]], - "parers": null, - "parings": null, - "par's": null, - "pared": null, - "parer": null, - "Pasadena": [["M"]], - "Pasadena's": null, - "PASCAL": null, - "Pascale": [["M"]], - "Pascale's": null, - "Pascal": [["M"]], - "Pascal's": null, - "pascal": [["S", "M"]], - "pascals": null, - "pascal's": null, - "paschal": [["S"]], - "paschals": null, - "pasha": [["M", "S"]], - "pasha's": null, - "pashas": null, - "Paso": [["M"]], - "Paso's": null, - "Pasquale": [["M"]], - "Pasquale's": null, - "pas": [["S"]], - "pases": null, - "passably": null, - "passage": [["M", "G", "S", "D"]], - "passage's": null, - "passaging": null, - "passages": null, - "passaged": null, - "passageway": [["M", "S"]], - "passageway's": null, - "passageways": null, - "Passaic": [["M"]], - "Passaic's": null, - "passband": null, - "passbook": [["M", "S"]], - "passbook's": null, - "passbooks": null, - "passel": [["M", "S"]], - "passel's": null, - "passels": null, - "pass�": [["M"]], - "pass�'s": null, - "passenger": [["M", "Y", "S"]], - "passenger's": null, - "passengerly": null, - "passengers": null, - "passerby": null, - "passer": [["M"]], - "passer's": null, - "passersby": null, - "passim": null, - "passing": [["Y"]], - "passingly": null, - "passionated": null, - "passionate": [["E", "Y", "P"]], - "dispassionate": null, - "dispassionately": null, - "dispassionateness": null, - "passionately": null, - "passionateness": [["E", "M"]], - "dispassionateness's": null, - "passionateness's": null, - "passionates": null, - "passionating": null, - "passioned": null, - "passionflower": [["M", "S"]], - "passionflower's": null, - "passionflowers": null, - "passioning": null, - "passionless": null, - "passion": [["S", "E", "M"]], - "passions": null, - "dispassions": null, - "dispassion": null, - "dispassion's": null, - "passion's": null, - "Passion": [["S", "M"]], - "Passions": null, - "Passion's": null, - "passivated": null, - "passiveness": [["S"]], - "passivenesses": null, - "passive": [["S", "Y", "P"]], - "passives": null, - "passively": null, - "passivity": [["S"]], - "passivities": null, - "pass": [["J", "G", "V", "B", "Z", "D", "S", "R"]], - "passings": null, - "passable": null, - "passers": null, - "passed": null, - "passes": null, - "passkey": [["S", "M"]], - "passkeys": null, - "passkey's": null, - "passmark": null, - "passover": null, - "Passover": [["M", "S"]], - "Passover's": null, - "Passovers": null, - "passport": [["S", "M"]], - "passports": null, - "passport's": null, - "password": [["S", "D", "M"]], - "passwords": null, - "passworded": null, - "password's": null, - "pasta": [["M", "S"]], - "pasta's": null, - "pastas": null, - "pasteboard": [["S", "M"]], - "pasteboards": null, - "pasteboard's": null, - "pasted": [["U", "A"]], - "unpasted": null, - "repasted": null, - "pastel": [["M", "S"]], - "pastel's": null, - "pastels": null, - "paste": [["M", "S"]], - "paste's": null, - "pastes": null, - "Pasternak": [["M"]], - "Pasternak's": null, - "pastern": [["S", "M"]], - "pasterns": null, - "pastern's": null, - "pasteup": null, - "pasteurization": [["M", "S"]], - "pasteurization's": null, - "pasteurizations": null, - "pasteurized": [["U"]], - "unpasteurized": null, - "pasteurizer": [["M"]], - "pasteurizer's": null, - "pasteurize": [["R", "S", "D", "G", "Z"]], - "pasteurizes": null, - "pasteurizing": null, - "pasteurizers": null, - "Pasteur": [["M"]], - "Pasteur's": null, - "pastiche": [["M", "S"]], - "pastiche's": null, - "pastiches": null, - "pastille": [["S", "M"]], - "pastilles": null, - "pastille's": null, - "pastime": [["S", "M"]], - "pastimes": null, - "pastime's": null, - "pastiness": [["S", "M"]], - "pastinesses": null, - "pastiness's": null, - "pastoralization": [["M"]], - "pastoralization's": null, - "pastoral": [["S", "P", "Y"]], - "pastorals": null, - "pastoralness": null, - "pastorally": null, - "pastorate": [["M", "S"]], - "pastorate's": null, - "pastorates": null, - "pastor": [["G", "S", "D", "M"]], - "pastoring": null, - "pastors": null, - "pastored": null, - "pastor's": null, - "past": [["P", "G", "M", "D", "R", "S"]], - "pastness": null, - "pasting": null, - "past's": [["A"]], - "paster": null, - "pasts": [["A"]], - "pastrami": [["M", "S"]], - "pastrami's": null, - "pastramis": null, - "pastry": [["S", "M"]], - "pastries": null, - "pastry's": null, - "repast's": null, - "repasts": null, - "pasturage": [["S", "M"]], - "pasturages": null, - "pasturage's": null, - "pasture": [["M", "G", "S", "R", "D"]], - "pasture's": null, - "pasturing": null, - "pastures": null, - "pasturer": [["M"]], - "pastured": null, - "pasturer's": null, - "pasty": [["P", "T", "R", "S"]], - "pastiest": null, - "pastier": null, - "pasties": null, - "Patagonia": [["M"]], - "Patagonia's": null, - "Patagonian": [["S"]], - "Patagonians": null, - "patch": [["E", "G", "R", "S", "D"]], - "dispatching": null, - "dispatcher": null, - "dispatches": null, - "dispatched": null, - "patching": null, - "patcher": [["E", "M"]], - "patches": null, - "patched": null, - "dispatcher's": null, - "patcher's": null, - "patchily": null, - "patchiness": [["S"]], - "patchinesses": null, - "patch's": null, - "patchwork": [["R", "M", "S", "Z"]], - "patchworker": null, - "patchwork's": null, - "patchworks": null, - "patchworkers": null, - "patchy": [["P", "R", "T"]], - "patchier": null, - "patchiest": null, - "patellae": null, - "patella": [["M", "S"]], - "patella's": null, - "patellas": null, - "Patel": [["M"]], - "Patel's": null, - "Pate": [["M"]], - "Pate's": null, - "paten": [["M"]], - "paten's": null, - "Paten": [["M"]], - "Paten's": null, - "patentee": [["S", "M"]], - "patentees": null, - "patentee's": null, - "patent": [["Z", "G", "M", "R", "D", "Y", "S", "B"]], - "patenters": null, - "patenting": null, - "patent's": null, - "patenter": null, - "patented": null, - "patently": null, - "patents": null, - "patentable": null, - "paterfamilias": [["S", "M"]], - "paterfamiliases": null, - "paterfamilias's": null, - "pater": [["M"]], - "pater's": null, - "paternalism": [["M", "S"]], - "paternalism's": null, - "paternalisms": null, - "paternalist": null, - "paternalistic": null, - "paternal": [["Y"]], - "paternally": null, - "paternity": [["S", "M"]], - "paternities": null, - "paternity's": null, - "paternoster": [["S", "M"]], - "paternosters": null, - "paternoster's": null, - "Paterson": [["M"]], - "Paterson's": null, - "pate": [["S", "M"]], - "pates": null, - "pate's": null, - "pathetic": null, - "pathetically": null, - "pathfinder": [["M", "S"]], - "pathfinder's": null, - "pathfinders": null, - "pathless": [["P"]], - "pathlessness": null, - "path's": null, - "pathname": [["S", "M"]], - "pathnames": null, - "pathname's": null, - "pathogenesis": [["M"]], - "pathogenesis's": null, - "pathogenic": null, - "pathogen": [["S", "M"]], - "pathogens": null, - "pathogen's": null, - "pathologic": null, - "pathological": [["Y"]], - "pathologically": null, - "pathologist": [["M", "S"]], - "pathologist's": null, - "pathologists": null, - "pathology": [["S", "M"]], - "pathologies": null, - "pathology's": null, - "pathos": [["S", "M"]], - "pathoses": null, - "pathos's": null, - "paths": null, - "pathway": [["M", "S"]], - "pathway's": null, - "pathways": null, - "Patience": [["M"]], - "Patience's": null, - "patience": [["S", "M"]], - "patiences": null, - "patience's": null, - "patient": [["M", "R", "Y", "T", "S"]], - "patient's": [["I"]], - "patienter": null, - "patiently": null, - "patientest": null, - "patients": [["I"]], - "inpatient's": null, - "inpatients": null, - "patina": [["S", "M"]], - "patinas": null, - "patina's": null, - "patine": null, - "Patin": [["M"]], - "Patin's": null, - "patio": [["M", "S"]], - "patio's": null, - "patios": null, - "Pat": [["M", "N"]], - "Pat's": null, - "pat": [["M", "N", "D", "R", "S"]], - "pat's": null, - "pated": null, - "pats": null, - "Patna": [["M"]], - "Patna's": null, - "patois": [["M"]], - "patois's": null, - "Paton": [["M"]], - "Paton's": null, - "patresfamilias": null, - "patriarchal": null, - "patriarchate": [["M", "S"]], - "patriarchate's": null, - "patriarchates": null, - "patriarch": [["M"]], - "patriarch's": null, - "patriarchs": null, - "patriarchy": [["M", "S"]], - "patriarchy's": null, - "patriarchies": null, - "Patrica": [["M"]], - "Patrica's": null, - "Patrice": [["M"]], - "Patrice's": null, - "Patricia": [["M"]], - "Patricia's": null, - "patrician": [["M", "S"]], - "patrician's": null, - "patricians": null, - "patricide": [["M", "S"]], - "patricide's": null, - "patricides": null, - "Patricio": [["M"]], - "Patricio's": null, - "Patrick": [["M"]], - "Patrick's": null, - "Patric": [["M"]], - "Patric's": null, - "patrimonial": null, - "patrimony": [["S", "M"]], - "patrimonies": null, - "patrimony's": null, - "patriotically": null, - "patriotic": [["U"]], - "unpatriotic": null, - "patriotism": [["S", "M"]], - "patriotisms": null, - "patriotism's": null, - "patriot": [["S", "M"]], - "patriots": null, - "patriot's": null, - "patristic": [["S"]], - "patristics": null, - "Patrizia": [["M"]], - "Patrizia's": null, - "Patrizio": [["M"]], - "Patrizio's": null, - "Patrizius": [["M"]], - "Patrizius's": null, - "patrolled": null, - "patrolling": null, - "patrolman": [["M"]], - "patrolman's": null, - "patrolmen": null, - "patrol": [["M", "S"]], - "patrol's": null, - "patrols": null, - "patrolwoman": null, - "patrolwomen": null, - "patronage": [["M", "S"]], - "patronage's": null, - "patronages": null, - "patroness": [["S"]], - "patronesses": null, - "patronization": null, - "patronized": [["U"]], - "unpatronized": null, - "patronize": [["G", "Z", "R", "S", "D", "J"]], - "patronizing": [["Y", "M"]], - "patronizers": null, - "patronizer": [["M"]], - "patronizes": [["A"]], - "patronizings": null, - "patronizer's": null, - "repatronizes": null, - "patronizing's": [["U"]], - "unpatronizing's": null, - "patronizingly": null, - "patronymically": null, - "patronymic": [["S"]], - "patronymics": null, - "patron": [["Y", "M", "S"]], - "patronly": null, - "patron's": null, - "patrons": null, - "patroon": [["M", "S"]], - "patroon's": null, - "patroons": null, - "patsy": [["S", "M"]], - "patsies": null, - "patsy's": null, - "Patsy": [["S", "M"]], - "Patsies": null, - "Patsy's": null, - "patted": null, - "Patten": [["M"]], - "Patten's": null, - "patten": [["M", "S"]], - "patten's": null, - "pattens": null, - "patterer": [["M"]], - "patterer's": null, - "pattern": [["G", "S", "D", "M"]], - "patterning": null, - "patterns": null, - "patterned": null, - "pattern's": null, - "patternless": null, - "patter": [["R", "D", "S", "G", "J"]], - "pattered": null, - "patters": null, - "pattering": null, - "patterings": null, - "Patterson": [["M"]], - "Patterson's": null, - "Pattie": [["M"]], - "Pattie's": null, - "Patti": [["M"]], - "Patti's": null, - "patting": null, - "Pattin": [["M"]], - "Pattin's": null, - "Patton": [["M"]], - "Patton's": null, - "Patty": [["M"]], - "Patty's": null, - "patty": [["S", "M"]], - "patties": null, - "patty's": null, - "paucity": [["S", "M"]], - "paucities": null, - "paucity's": null, - "Paula": [["M"]], - "Paula's": null, - "Paule": [["M"]], - "Paule's": null, - "Pauletta": [["M"]], - "Pauletta's": null, - "Paulette": [["M"]], - "Paulette's": null, - "Paulie": [["M"]], - "Paulie's": null, - "Pauli": [["M"]], - "Pauli's": null, - "Paulina": [["M"]], - "Paulina's": null, - "Pauline": null, - "Pauling": [["M"]], - "Pauling's": null, - "Paulita": [["M"]], - "Paulita's": null, - "Paul": [["M", "G"]], - "Paul's": null, - "Paulo": [["M"]], - "Paulo's": null, - "Paulsen": [["M"]], - "Paulsen's": null, - "Paulson": [["M"]], - "Paulson's": null, - "Paulus": [["M"]], - "Paulus's": null, - "Pauly": [["M"]], - "Pauly's": null, - "paunch": [["G", "M", "S", "D"]], - "paunching": null, - "paunch's": null, - "paunches": null, - "paunched": null, - "paunchiness": [["M"]], - "paunchiness's": null, - "paunchy": [["R", "T", "P"]], - "paunchier": null, - "paunchiest": null, - "pauperism": [["S", "M"]], - "pauperisms": null, - "pauperism's": null, - "pauperize": [["S", "D", "G"]], - "pauperizes": null, - "pauperized": null, - "pauperizing": null, - "pauper": [["S", "G", "D", "M"]], - "paupers": null, - "paupering": null, - "paupered": null, - "pauper's": null, - "pause": [["D", "S", "G"]], - "paused": null, - "pauses": null, - "pausing": null, - "Pavarotti": null, - "paved": [["U", "A"]], - "unpaved": null, - "repaved": null, - "pave": [["G", "D", "R", "S", "J", "L"]], - "paving": [["A"]], - "paver": [["M"]], - "paves": [["A"]], - "pavings": null, - "pavement": [["S", "G", "D", "M"]], - "Pavel": [["M"]], - "Pavel's": null, - "pavements": null, - "pavementing": null, - "pavemented": null, - "pavement's": null, - "paver's": null, - "repaves": null, - "Pavia": [["M"]], - "Pavia's": null, - "pavilion": [["S", "M", "D", "G"]], - "pavilions": null, - "pavilion's": null, - "pavilioned": null, - "pavilioning": null, - "repaving": null, - "paving's": null, - "Pavla": [["M"]], - "Pavla's": null, - "Pavlova": [["M", "S"]], - "Pavlova's": null, - "Pavlovas": null, - "Pavlovian": null, - "Pavlov": [["M"]], - "Pavlov's": null, - "pawl": [["S", "M"]], - "pawls": null, - "pawl's": null, - "paw": [["M", "D", "S", "G"]], - "paw's": null, - "pawed": null, - "paws": null, - "pawing": null, - "pawnbroker": [["S", "M"]], - "pawnbrokers": null, - "pawnbroker's": null, - "pawnbroking": [["S"]], - "pawnbrokings": null, - "Pawnee": [["S", "M"]], - "Pawnees": null, - "Pawnee's": null, - "pawner": [["M"]], - "pawner's": null, - "pawn": [["G", "S", "D", "R", "M"]], - "pawning": null, - "pawns": null, - "pawned": null, - "pawn's": null, - "pawnshop": [["M", "S"]], - "pawnshop's": null, - "pawnshops": null, - "pawpaw's": null, - "Pawtucket": [["M"]], - "Pawtucket's": null, - "paxes": null, - "Paxon": [["M"]], - "Paxon's": null, - "Paxton": [["M"]], - "Paxton's": null, - "payable": [["S"]], - "payables": null, - "pay": [["A", "G", "S", "L", "B"]], - "repay": null, - "repaying": null, - "repays": null, - "repayment": null, - "repayable": null, - "paying": null, - "pays": null, - "payment": [["A", "S", "M"]], - "payback": [["S"]], - "paybacks": null, - "paycheck": [["S", "M"]], - "paychecks": null, - "paycheck's": null, - "payday": [["M", "S"]], - "payday's": null, - "paydays": null, - "payed": null, - "payee": [["S", "M"]], - "payees": null, - "payee's": null, - "payer": [["S", "M"]], - "payers": null, - "payer's": null, - "payload": [["S", "M"]], - "payloads": null, - "payload's": null, - "paymaster": [["S", "M"]], - "paymasters": null, - "paymaster's": null, - "repayments": null, - "repayment's": null, - "payments": null, - "payment's": null, - "Payne": [["S", "M"]], - "Paynes": null, - "Payne's": null, - "payoff": [["M", "S"]], - "payoff's": null, - "payoffs": null, - "payola": [["M", "S"]], - "payola's": null, - "payolas": null, - "payout": [["S"]], - "payouts": null, - "payroll": [["M", "S"]], - "payroll's": null, - "payrolls": null, - "payslip": [["S"]], - "payslips": null, - "Payson": [["M"]], - "Payson's": null, - "Payton": [["M"]], - "Payton's": null, - "Paz": [["M"]], - "Paz's": null, - "Pb": [["M"]], - "Pb's": null, - "PBS": null, - "PBX": null, - "PCB": null, - "PC": [["M"]], - "PC's": null, - "PCP": null, - "PCs": null, - "pct": null, - "pd": null, - "PD": null, - "Pd": [["M"]], - "Pd's": null, - "PDP": null, - "PDQ": null, - "PDT": null, - "PE": null, - "Peabody": [["M"]], - "Peabody's": null, - "peaceableness": [["M"]], - "peaceableness's": null, - "peaceable": [["P"]], - "peaceably": null, - "peacefuller": null, - "peacefullest": null, - "peacefulness": [["S"]], - "peacefulnesses": null, - "peaceful": [["P", "Y"]], - "peacefully": null, - "peace": [["G", "M", "D", "S"]], - "peacing": null, - "peace's": null, - "peaced": null, - "peaces": null, - "peacekeeping": [["S"]], - "peacekeepings": null, - "Peace": [["M"]], - "Peace's": null, - "peacemaker": [["M", "S"]], - "peacemaker's": null, - "peacemakers": null, - "peacemaking": [["M", "S"]], - "peacemaking's": null, - "peacemakings": null, - "peacetime": [["M", "S"]], - "peacetime's": null, - "peacetimes": null, - "peach": [["G", "S", "D", "M"]], - "peaching": null, - "peaches": null, - "peached": null, - "peach's": null, - "Peachtree": [["M"]], - "Peachtree's": null, - "peachy": [["R", "T"]], - "peachier": null, - "peachiest": null, - "peacock": [["S", "G", "M", "D"]], - "peacocks": null, - "peacocking": null, - "peacock's": null, - "peacocked": null, - "Peadar": [["M"]], - "Peadar's": null, - "peafowl": [["S", "M"]], - "peafowls": null, - "peafowl's": null, - "peahen": [["M", "S"]], - "peahen's": null, - "peahens": null, - "peaked": [["P"]], - "peakedness": null, - "peakiness": [["M"]], - "peakiness's": null, - "peak": [["S", "G", "D", "M"]], - "peaks": null, - "peaking": null, - "peak's": null, - "peaky": [["P"]], - "pealed": [["A"]], - "repealed": null, - "Peale": [["M"]], - "Peale's": null, - "peal": [["M", "D", "S", "G"]], - "peal's": null, - "peals": [["A"]], - "pealing": null, - "repeals": null, - "pea": [["M", "S"]], - "pea's": null, - "peas": null, - "peanut": [["S", "M"]], - "peanuts": null, - "peanut's": null, - "Pearce": [["M"]], - "Pearce's": null, - "Pearla": [["M"]], - "Pearla's": null, - "Pearle": [["M"]], - "Pearle's": null, - "pearler": [["M"]], - "pearler's": null, - "Pearlie": [["M"]], - "Pearlie's": null, - "Pearline": [["M"]], - "Pearline's": null, - "Pearl": [["M"]], - "Pearl's": null, - "pearl": [["S", "G", "R", "D", "M"]], - "pearls": null, - "pearling": null, - "pearled": null, - "pearl's": null, - "pearly": [["T", "R", "S"]], - "pearliest": null, - "pearlier": null, - "pearlies": null, - "Pearson": [["M"]], - "Pearson's": null, - "pear": [["S", "Y", "M"]], - "pears": null, - "pear's": null, - "peartrees": null, - "Peary": [["M"]], - "Peary's": null, - "peasanthood": null, - "peasantry": [["S", "M"]], - "peasantries": null, - "peasantry's": null, - "peasant": [["S", "M"]], - "peasants": null, - "peasant's": null, - "peashooter": [["M", "S"]], - "peashooter's": null, - "peashooters": null, - "peats": [["A"]], - "repeats": null, - "peat": [["S", "M"]], - "peat's": null, - "peaty": [["T", "R"]], - "peatiest": null, - "peatier": null, - "pebble": [["M", "G", "S", "D"]], - "pebble's": null, - "pebbling": [["M"]], - "pebbles": null, - "pebbled": null, - "pebbling's": null, - "pebbly": [["T", "R"]], - "pebbliest": null, - "pebblier": null, - "Pebrook": [["M"]], - "Pebrook's": null, - "pecan": [["S", "M"]], - "pecans": null, - "pecan's": null, - "peccadilloes": null, - "peccadillo": [["M"]], - "peccadillo's": null, - "peccary": [["M", "S"]], - "peccary's": null, - "peccaries": null, - "Pechora": [["M"]], - "Pechora's": null, - "pecker": [["M"]], - "pecker's": null, - "peck": [["G", "Z", "S", "D", "R", "M"]], - "pecking": null, - "peckers": null, - "pecks": null, - "pecked": null, - "peck's": null, - "Peckinpah": [["M"]], - "Peckinpah's": null, - "Peck": [["M"]], - "Peck's": null, - "Pecos": [["M"]], - "Pecos's": null, - "pectic": null, - "pectin": [["S", "M"]], - "pectins": null, - "pectin's": null, - "pectoral": [["S"]], - "pectorals": null, - "peculate": [["N", "G", "D", "S", "X"]], - "peculation": null, - "peculating": null, - "peculated": null, - "peculates": null, - "peculations": null, - "peculator": [["S"]], - "peculators": null, - "peculiarity": [["M", "S"]], - "peculiarity's": null, - "peculiarities": null, - "peculiar": [["S", "Y"]], - "peculiars": null, - "peculiarly": null, - "pecuniary": null, - "pedagogical": [["Y"]], - "pedagogically": null, - "pedagogic": [["S"]], - "pedagogics": [["M"]], - "pedagogics's": null, - "pedagogue": [["S", "D", "G", "M"]], - "pedagogues": null, - "pedagogued": null, - "pedagoguing": null, - "pedagogue's": null, - "pedagogy": [["M", "S"]], - "pedagogy's": null, - "pedagogies": null, - "pedal": [["S", "G", "R", "D", "M"]], - "pedals": null, - "pedaling": null, - "pedaler": null, - "pedaled": null, - "pedal's": null, - "pedantic": null, - "pedantically": null, - "pedantry": [["M", "S"]], - "pedantry's": null, - "pedantries": null, - "pedant": [["S", "M"]], - "pedants": null, - "pedant's": null, - "peddler": [["M"]], - "peddler's": null, - "peddle": [["Z", "G", "R", "S", "D"]], - "peddlers": null, - "peddling": null, - "peddles": null, - "peddled": null, - "pederast": [["S", "M"]], - "pederasts": null, - "pederast's": null, - "pederasty": [["S", "M"]], - "pederasties": null, - "pederasty's": null, - "Peder": [["M"]], - "Peder's": null, - "pedestal": [["G", "D", "M", "S"]], - "pedestaling": null, - "pedestaled": null, - "pedestal's": null, - "pedestals": null, - "pedestrianization": null, - "pedestrianize": [["G", "S", "D"]], - "pedestrianizing": null, - "pedestrianizes": null, - "pedestrianized": null, - "pedestrian": [["M", "S"]], - "pedestrian's": null, - "pedestrians": null, - "pediatrician": [["S", "M"]], - "pediatricians": null, - "pediatrician's": null, - "pediatric": [["S"]], - "pediatrics": null, - "pedicab": [["S", "M"]], - "pedicabs": null, - "pedicab's": null, - "pedicure": [["D", "S", "M", "G"]], - "pedicured": null, - "pedicures": null, - "pedicure's": null, - "pedicuring": null, - "pedicurist": [["S", "M"]], - "pedicurists": null, - "pedicurist's": null, - "pedigree": [["D", "S", "M"]], - "pedigreed": null, - "pedigrees": null, - "pedigree's": null, - "pediment": [["D", "M", "S"]], - "pedimented": null, - "pediment's": null, - "pediments": null, - "pedlar's": null, - "pedometer": [["M", "S"]], - "pedometer's": null, - "pedometers": null, - "pedophile": [["S"]], - "pedophiles": null, - "pedophilia": null, - "Pedro": [["M"]], - "Pedro's": null, - "peduncle": [["M", "S"]], - "peduncle's": null, - "peduncles": null, - "peeing": null, - "peekaboo": [["S", "M"]], - "peekaboos": null, - "peekaboo's": null, - "peek": [["G", "S", "D"]], - "peeking": null, - "peeks": null, - "peeked": null, - "peeler": [["M"]], - "peeler's": null, - "peeling": [["M"]], - "peeling's": null, - "Peel": [["M"]], - "Peel's": null, - "peel": [["S", "J", "G", "Z", "D", "R"]], - "peels": null, - "peelings": null, - "peelers": null, - "peeled": null, - "peen": [["G", "S", "D", "M"]], - "peening": null, - "peens": null, - "peened": null, - "peen's": null, - "peeper": [["M"]], - "peeper's": null, - "peephole": [["S", "M"]], - "peepholes": null, - "peephole's": null, - "peep": [["S", "G", "Z", "D", "R"]], - "peeps": null, - "peeping": null, - "peepers": null, - "peeped": null, - "peepshow": [["M", "S"]], - "peepshow's": null, - "peepshows": null, - "peepy": null, - "peerage": [["M", "S"]], - "peerage's": null, - "peerages": null, - "peer": [["D", "M", "G"]], - "peered": null, - "peer's": null, - "peering": null, - "peeress": [["M", "S"]], - "peeress's": null, - "peeresses": null, - "peerlessness": [["M"]], - "peerlessness's": null, - "peerless": [["P", "Y"]], - "peerlessly": null, - "peeve": [["G", "Z", "M", "D", "S"]], - "peeving": null, - "peevers": [["M"]], - "peeve's": null, - "peeved": null, - "peeves": null, - "peevers's": null, - "peevishness": [["S", "M"]], - "peevishnesses": null, - "peevishness's": null, - "peevish": [["Y", "P"]], - "peevishly": null, - "peewee": [["S"]], - "peewees": null, - "pee": [["Z", "D", "R", "S"]], - "peers": null, - "peed": null, - "pees": null, - "Pegasus": [["M", "S"]], - "Pegasus's": null, - "Pegasuses": null, - "pegboard": [["S", "M"]], - "pegboards": null, - "pegboard's": null, - "Pegeen": [["M"]], - "Pegeen's": null, - "pegged": null, - "Peggie": [["M"]], - "Peggie's": null, - "Peggi": [["M"]], - "Peggi's": null, - "pegging": null, - "Peggy": [["M"]], - "Peggy's": null, - "Peg": [["M"]], - "Peg's": null, - "peg": [["M", "S"]], - "peg's": null, - "pegs": null, - "peignoir": [["S", "M"]], - "peignoirs": null, - "peignoir's": null, - "Pei": [["M"]], - "Pei's": null, - "Peiping": [["M"]], - "Peiping's": null, - "Peirce": [["M"]], - "Peirce's": null, - "pejoration": [["S", "M"]], - "pejorations": null, - "pejoration's": null, - "pejorative": [["S", "Y"]], - "pejoratives": null, - "pejoratively": null, - "peke": [["M", "S"]], - "peke's": null, - "pekes": null, - "Pekinese's": null, - "pekingese": null, - "Pekingese": [["S", "M"]], - "Pekingeses": null, - "Pekingese's": null, - "Peking": [["S", "M"]], - "Pekings": null, - "Peking's": null, - "pekoe": [["S", "M"]], - "pekoes": null, - "pekoe's": null, - "pelagic": null, - "Pelee": [["M"]], - "Pelee's": null, - "Pele": [["M"]], - "Pele's": null, - "pelf": [["S", "M"]], - "pelfs": null, - "pelf's": null, - "Pelham": [["M"]], - "Pelham's": null, - "pelican": [["S", "M"]], - "pelicans": null, - "pelican's": null, - "pellagra": [["S", "M"]], - "pellagras": null, - "pellagra's": null, - "pellet": [["S", "G", "M", "D"]], - "pellets": null, - "pelleting": null, - "pellet's": null, - "pelleted": null, - "pellucid": null, - "Peloponnese": [["M"]], - "Peloponnese's": null, - "pelter": [["M"]], - "pelter's": null, - "pelt": [["G", "S", "D", "R"]], - "pelting": null, - "pelts": null, - "pelted": null, - "pelvic": [["S"]], - "pelvics": null, - "pelvis": [["S", "M"]], - "pelvises": null, - "pelvis's": null, - "Pembroke": [["M"]], - "Pembroke's": null, - "pemmican": [["S", "M"]], - "pemmicans": null, - "pemmican's": null, - "penalization": [["S", "M"]], - "penalizations": null, - "penalization's": null, - "penalized": [["U"]], - "unpenalized": null, - "penalize": [["S", "D", "G"]], - "penalizes": null, - "penalizing": null, - "penalty": [["M", "S"]], - "penalty's": null, - "penalties": null, - "penal": [["Y"]], - "penally": null, - "Pena": [["M"]], - "Pena's": null, - "penance": [["S", "D", "M", "G"]], - "penances": null, - "penanced": null, - "penance's": null, - "penancing": null, - "pence": [["M"]], - "pence's": null, - "penchant": [["M", "S"]], - "penchant's": null, - "penchants": null, - "pencil": [["S", "G", "J", "M", "D"]], - "pencils": null, - "penciling": null, - "pencilings": null, - "pencil's": null, - "penciled": null, - "pendant": [["S", "M"]], - "pendants": null, - "pendant's": null, - "pend": [["D", "C", "G", "S"]], - "pended": null, - "depended": null, - "depending": null, - "depends": null, - "pending": null, - "pends": null, - "pendent": [["C", "S"]], - "pendents": null, - "Penderecki": [["M"]], - "Penderecki's": null, - "Pendleton": [["M"]], - "Pendleton's": null, - "pendulous": null, - "pendulum": [["M", "S"]], - "pendulum's": null, - "pendulums": null, - "Penelopa": [["M"]], - "Penelopa's": null, - "Penelope": [["M"]], - "Penelope's": null, - "penetrability": [["S", "M"]], - "penetrabilities": null, - "penetrability's": null, - "penetrable": null, - "penetrate": [["S", "D", "V", "G", "N", "X"]], - "penetrates": null, - "penetrated": null, - "penetrative": [["P", "Y"]], - "penetrating": [["Y"]], - "penetration": [["M"]], - "penetrations": null, - "penetratingly": null, - "penetration's": null, - "penetrativeness": [["M"]], - "penetrativeness's": null, - "penetratively": null, - "penetrator": [["M", "S"]], - "penetrator's": null, - "penetrators": null, - "penguin": [["M", "S"]], - "penguin's": null, - "penguins": null, - "penicillin": [["S", "M"]], - "penicillins": null, - "penicillin's": null, - "penile": null, - "peninsular": null, - "peninsula": [["S", "M"]], - "peninsulas": null, - "peninsula's": null, - "penis": [["M", "S"]], - "penis's": null, - "penises": null, - "penitence": [["M", "S"]], - "penitence's": null, - "penitences": null, - "penitential": [["Y", "S"]], - "penitentially": null, - "penitentials": null, - "penitentiary": [["M", "S"]], - "penitentiary's": null, - "penitentiaries": null, - "penitent": [["S", "Y"]], - "penitents": null, - "penitently": null, - "penknife": [["M"]], - "penknife's": null, - "penknives": null, - "penlight": [["M", "S"]], - "penlight's": null, - "penlights": null, - "pen": [["M"]], - "pen's": null, - "Pen": [["M"]], - "Pen's": null, - "penman": [["M"]], - "penman's": null, - "penmanship": [["M", "S"]], - "penmanship's": null, - "penmanships": null, - "penmen": null, - "Penna": null, - "pennant": [["S", "M"]], - "pennants": null, - "pennant's": null, - "penned": null, - "Penney": [["M"]], - "Penney's": null, - "Pennie": [["M"]], - "Pennie's": null, - "penniless": null, - "Penni": [["M"]], - "Penni's": null, - "penning": null, - "Pennington": [["M"]], - "Pennington's": null, - "pennis": null, - "Penn": [["M"]], - "Penn's": null, - "pennon": [["S", "M"]], - "pennons": null, - "pennon's": null, - "Pennsylvania": [["M"]], - "Pennsylvania's": null, - "Pennsylvanian": [["S"]], - "Pennsylvanians": null, - "Penny": [["M"]], - "Penny's": null, - "penny": [["S", "M"]], - "pennies": null, - "penny's": null, - "pennyweight": [["S", "M"]], - "pennyweights": null, - "pennyweight's": null, - "pennyworth": [["M"]], - "pennyworth's": null, - "penologist": [["M", "S"]], - "penologist's": null, - "penologists": null, - "penology": [["M", "S"]], - "penology's": null, - "penologies": null, - "Penrod": [["M"]], - "Penrod's": null, - "Pensacola": [["M"]], - "Pensacola's": null, - "pensioner": [["M"]], - "pensioner's": null, - "pension": [["Z", "G", "M", "R", "D", "B", "S"]], - "pensioners": null, - "pensioning": null, - "pension's": null, - "pensioned": null, - "pensionable": null, - "pensions": null, - "pensiveness": [["S"]], - "pensivenesses": null, - "pensive": [["P", "Y"]], - "pensively": null, - "pens": [["V"]], - "pentacle": [["M", "S"]], - "pentacle's": null, - "pentacles": null, - "pentagonal": [["S", "Y"]], - "pentagonals": null, - "pentagonally": null, - "Pentagon": [["M"]], - "Pentagon's": null, - "pentagon": [["S", "M"]], - "pentagons": null, - "pentagon's": null, - "pentagram": [["M", "S"]], - "pentagram's": null, - "pentagrams": null, - "pentameter": [["S", "M"]], - "pentameters": null, - "pentameter's": null, - "pent": [["A", "S"]], - "repent": [["R", "D", "G"]], - "repents": null, - "pents": null, - "Pentateuch": [["M"]], - "Pentateuch's": null, - "pentathlete": [["S"]], - "pentathletes": null, - "pentathlon": [["M", "S"]], - "pentathlon's": null, - "pentathlons": null, - "pentatonic": null, - "pentecostal": null, - "Pentecostalism": [["S"]], - "Pentecostalisms": null, - "Pentecostal": [["S"]], - "Pentecostals": null, - "Pentecost": [["S", "M"]], - "Pentecosts": null, - "Pentecost's": null, - "penthouse": [["S", "D", "G", "M"]], - "penthouses": null, - "penthoused": null, - "penthousing": null, - "penthouse's": null, - "Pentium": [["M"]], - "Pentium's": null, - "penuche": [["S", "M"]], - "penuches": null, - "penuche's": null, - "penultimate": [["S", "Y"]], - "penultimates": null, - "penultimately": null, - "penumbrae": null, - "penumbra": [["M", "S"]], - "penumbra's": null, - "penumbras": null, - "penuriousness": [["M", "S"]], - "penuriousness's": null, - "penuriousnesses": null, - "penurious": [["Y", "P"]], - "penuriously": null, - "penury": [["S", "M"]], - "penuries": null, - "penury's": null, - "peonage": [["M", "S"]], - "peonage's": null, - "peonages": null, - "peon": [["M", "S"]], - "peon's": null, - "peons": null, - "peony": [["S", "M"]], - "peonies": null, - "peony's": null, - "people": [["S", "D", "M", "G"]], - "peoples": null, - "peopled": null, - "people's": null, - "peopling": null, - "Peoria": [["M"]], - "Peoria's": null, - "Pepe": [["M"]], - "Pepe's": null, - "Pepillo": [["M"]], - "Pepillo's": null, - "Pepi": [["M"]], - "Pepi's": null, - "Pepin": [["M"]], - "Pepin's": null, - "Pepita": [["M"]], - "Pepita's": null, - "Pepito": [["M"]], - "Pepito's": null, - "pepped": null, - "peppercorn": [["M", "S"]], - "peppercorn's": null, - "peppercorns": null, - "pepperer": [["M"]], - "pepperer's": null, - "peppergrass": [["M"]], - "peppergrass's": null, - "peppermint": [["M", "S"]], - "peppermint's": null, - "peppermints": null, - "pepperoni": [["S"]], - "pepperonis": null, - "pepper": [["S", "G", "R", "D", "M"]], - "peppers": null, - "peppering": null, - "peppered": null, - "pepper's": null, - "peppery": null, - "peppiness": [["S", "M"]], - "peppinesses": null, - "peppiness's": null, - "pepping": null, - "peppy": [["P", "R", "T"]], - "peppier": null, - "peppiest": null, - "Pepsico": [["M"]], - "Pepsico's": null, - "PepsiCo": [["M"]], - "PepsiCo's": null, - "Pepsi": [["M"]], - "Pepsi's": null, - "pepsin": [["S", "M"]], - "pepsins": null, - "pepsin's": null, - "pep": [["S", "M"]], - "peps": null, - "pep's": null, - "peptic": [["S"]], - "peptics": null, - "peptidase": [["S", "M"]], - "peptidases": null, - "peptidase's": null, - "peptide": [["S", "M"]], - "peptides": null, - "peptide's": null, - "peptizing": null, - "Pepys": [["M"]], - "Pepys's": null, - "Pequot": [["M"]], - "Pequot's": null, - "peradventure": [["S"]], - "peradventures": null, - "perambulate": [["D", "S", "N", "G", "X"]], - "perambulated": null, - "perambulates": null, - "perambulation": [["M"]], - "perambulating": null, - "perambulations": null, - "perambulation's": null, - "perambulator": [["M", "S"]], - "perambulator's": null, - "perambulators": null, - "percale": [["M", "S"]], - "percale's": null, - "percales": null, - "perceivably": null, - "perceive": [["D", "R", "S", "Z", "G", "B"]], - "perceived": [["U"]], - "perceiver": [["M"]], - "perceives": null, - "perceivers": null, - "perceiving": null, - "perceivable": null, - "unperceived": null, - "perceiver's": null, - "percentage": [["M", "S"]], - "percentage's": null, - "percentages": null, - "percentile": [["S", "M"]], - "percentiles": null, - "percentile's": null, - "percent": [["M", "S"]], - "percent's": null, - "percents": null, - "perceptible": null, - "perceptibly": null, - "perceptional": null, - "perception": [["M", "S"]], - "perception's": null, - "perceptions": null, - "perceptiveness": [["M", "S"]], - "perceptiveness's": null, - "perceptivenesses": null, - "perceptive": [["Y", "P"]], - "perceptively": null, - "perceptual": [["Y"]], - "perceptually": null, - "percept": [["V", "M", "S"]], - "percept's": null, - "percepts": null, - "Perceval": [["M"]], - "Perceval's": null, - "perchance": null, - "perch": [["G", "S", "D", "M"]], - "perching": null, - "perches": null, - "perched": null, - "perch's": null, - "perchlorate": [["M"]], - "perchlorate's": null, - "perchlorination": null, - "percipience": [["M", "S"]], - "percipience's": null, - "percipiences": null, - "percipient": [["S"]], - "percipients": null, - "Percival": [["M"]], - "Percival's": null, - "percolate": [["N", "G", "S", "D", "X"]], - "percolation": [["M"]], - "percolating": null, - "percolates": null, - "percolated": null, - "percolations": null, - "percolation's": null, - "percolator": [["M", "S"]], - "percolator's": null, - "percolators": null, - "percuss": [["D", "S", "G", "V"]], - "percussed": null, - "percusses": null, - "percussing": null, - "percussive": [["P", "Y"]], - "percussionist": [["M", "S"]], - "percussionist's": null, - "percussionists": null, - "percussion": [["S", "A", "M"]], - "percussions": null, - "repercussions": null, - "repercussion": null, - "repercussion's": null, - "percussion's": null, - "percussiveness": [["M"]], - "percussiveness's": null, - "percussively": null, - "percutaneous": [["Y"]], - "percutaneously": null, - "Percy": [["M"]], - "Percy's": null, - "perdition": [["M", "S"]], - "perdition's": null, - "perditions": null, - "perdurable": null, - "peregrinate": [["X", "S", "D", "N", "G"]], - "peregrinations": null, - "peregrinates": null, - "peregrinated": null, - "peregrination": [["M"]], - "peregrinating": null, - "peregrination's": null, - "peregrine": [["S"]], - "peregrines": null, - "Perelman": [["M"]], - "Perelman's": null, - "peremptorily": null, - "peremptory": [["P"]], - "peremptoriness": null, - "perennial": [["S", "Y"]], - "perennials": null, - "perennially": null, - "p�res": null, - "perestroika": [["S"]], - "perestroikas": null, - "Perez": [["M"]], - "Perez's": null, - "perfecta": [["S"]], - "perfectas": null, - "perfect": [["D", "R", "Y", "S", "T", "G", "V", "P"]], - "perfected": null, - "perfecter": [["M"]], - "perfectly": null, - "perfects": null, - "perfectest": null, - "perfecting": null, - "perfective": [["P", "Y"]], - "perfectness": [["M", "S"]], - "perfecter's": null, - "perfectibility": [["M", "S"]], - "perfectibility's": null, - "perfectibilities": null, - "perfectible": null, - "perfectionism": [["M", "S"]], - "perfectionism's": null, - "perfectionisms": null, - "perfectionist": [["M", "S"]], - "perfectionist's": null, - "perfectionists": null, - "perfection": [["M", "S"]], - "perfection's": null, - "perfections": null, - "perfectiveness": [["M"]], - "perfectiveness's": null, - "perfectively": null, - "perfectness's": null, - "perfectnesses": null, - "perfidiousness": [["M"]], - "perfidiousness's": null, - "perfidious": [["Y", "P"]], - "perfidiously": null, - "perfidy": [["M", "S"]], - "perfidy's": null, - "perfidies": null, - "perforated": [["U"]], - "unperforated": null, - "perforate": [["X", "S", "D", "G", "N"]], - "perforations": null, - "perforates": null, - "perforating": null, - "perforation": [["M"]], - "perforation's": null, - "perforce": null, - "performance": [["M", "S"]], - "performance's": null, - "performances": null, - "performed": [["U"]], - "unperformed": null, - "performer": [["M"]], - "performer's": null, - "perform": [["S", "D", "R", "Z", "G", "B"]], - "performs": null, - "performers": null, - "performing": null, - "performable": null, - "perfumer": [["M"]], - "perfumer's": null, - "perfumery": [["S", "M"]], - "perfumeries": null, - "perfumery's": null, - "perfume": [["Z", "M", "G", "S", "R", "D"]], - "perfumers": null, - "perfume's": null, - "perfuming": null, - "perfumes": null, - "perfumed": null, - "perfunctorily": null, - "perfunctoriness": [["M"]], - "perfunctoriness's": null, - "perfunctory": [["P"]], - "perfused": null, - "perfusion": [["M"]], - "perfusion's": null, - "Pergamon": [["M"]], - "Pergamon's": null, - "pergola": [["S", "M"]], - "pergolas": null, - "pergola's": null, - "perhaps": [["S"]], - "perhapses": null, - "Peria": [["M"]], - "Peria's": null, - "pericardia": null, - "pericardium": [["M"]], - "pericardium's": null, - "Perice": [["M"]], - "Perice's": null, - "Periclean": null, - "Pericles": [["M"]], - "Pericles's": null, - "perigee": [["S", "M"]], - "perigees": null, - "perigee's": null, - "perihelia": null, - "perihelion": [["M"]], - "perihelion's": null, - "peril": [["G", "S", "D", "M"]], - "periling": null, - "perils": null, - "periled": null, - "peril's": null, - "Perilla": [["M"]], - "Perilla's": null, - "perilousness": [["M"]], - "perilousness's": null, - "perilous": [["P", "Y"]], - "perilously": null, - "Peri": [["M"]], - "Peri's": null, - "perimeter": [["M", "S"]], - "perimeter's": null, - "perimeters": null, - "perinatal": null, - "perinea": null, - "perineum": [["M"]], - "perineum's": null, - "periodic": null, - "periodical": [["Y", "M", "S"]], - "periodically": null, - "periodical's": null, - "periodicals": null, - "periodicity": [["M", "S"]], - "periodicity's": null, - "periodicities": null, - "period": [["M", "S"]], - "period's": null, - "periods": null, - "periodontal": [["Y"]], - "periodontally": null, - "periodontics": [["M"]], - "periodontics's": null, - "periodontist": [["S"]], - "periodontists": null, - "peripatetic": [["S"]], - "peripatetics": null, - "peripheral": [["S", "Y"]], - "peripherals": null, - "peripherally": null, - "periphery": [["S", "M"]], - "peripheries": null, - "periphery's": null, - "periphrases": null, - "periphrasis": [["M"]], - "periphrasis's": null, - "periphrastic": null, - "periscope": [["S", "D", "M", "G"]], - "periscopes": null, - "periscoped": null, - "periscope's": null, - "periscoping": null, - "perishable": [["S", "M"]], - "perishables": null, - "perishable's": null, - "perish": [["B", "Z", "G", "S", "R", "D"]], - "perishers": null, - "perishing": [["Y"]], - "perishes": null, - "perisher": null, - "perished": null, - "perishingly": null, - "peristalses": null, - "peristalsis": [["M"]], - "peristalsis's": null, - "peristaltic": null, - "peristyle": [["M", "S"]], - "peristyle's": null, - "peristyles": null, - "peritoneal": null, - "peritoneum": [["S", "M"]], - "peritoneums": null, - "peritoneum's": null, - "peritonitis": [["M", "S"]], - "peritonitis's": null, - "peritonitises": null, - "periwigged": null, - "periwigging": null, - "periwig": [["M", "S"]], - "periwig's": null, - "periwigs": null, - "periwinkle": [["S", "M"]], - "periwinkles": null, - "periwinkle's": null, - "perjurer": [["M"]], - "perjurer's": null, - "perjure": [["S", "R", "D", "Z", "G"]], - "perjures": null, - "perjured": null, - "perjurers": null, - "perjuring": null, - "perjury": [["M", "S"]], - "perjury's": null, - "perjuries": null, - "per": [["K"]], - "proper": [["P", "Y", "R", "T"]], - "perk": [["G", "D", "S"]], - "perking": null, - "perked": null, - "perks": null, - "perkily": null, - "perkiness": [["S"]], - "perkinesses": null, - "Perkin": [["S", "M"]], - "Perkins": null, - "Perkin's": null, - "perky": [["T", "R", "P"]], - "perkiest": null, - "perkier": null, - "Perla": [["M"]], - "Perla's": null, - "Perle": [["M"]], - "Perle's": null, - "Perl": [["M"]], - "Perl's": null, - "permafrost": [["M", "S"]], - "permafrost's": null, - "permafrosts": null, - "permalloy": [["M"]], - "permalloy's": null, - "Permalloy": [["M"]], - "Permalloy's": null, - "permanence": [["S", "M"]], - "permanences": null, - "permanence's": null, - "permanency": [["M", "S"]], - "permanency's": null, - "permanencies": null, - "permanentness": [["M"]], - "permanentness's": null, - "permanent": [["Y", "S", "P"]], - "permanently": null, - "permanents": null, - "permeability": [["S", "M"]], - "permeabilities": null, - "permeability's": null, - "permeableness": [["M"]], - "permeableness's": null, - "permeable": [["P"]], - "permeate": [["N", "G", "V", "D", "S", "X"]], - "permeation": null, - "permeating": null, - "permeative": null, - "permeated": null, - "permeates": null, - "permeations": null, - "Permian": null, - "permissibility": [["M"]], - "permissibility's": null, - "permissibleness": [["M"]], - "permissibleness's": null, - "permissible": [["P"]], - "permissibly": null, - "permission": [["S", "M"]], - "permissions": null, - "permission's": null, - "permissiveness": [["M", "S"]], - "permissiveness's": null, - "permissivenesses": null, - "permissive": [["Y", "P"]], - "permissively": null, - "permit": [["S", "M"]], - "permits": null, - "permit's": null, - "permitted": null, - "permitting": null, - "Perm": [["M"]], - "Perm's": null, - "perm": [["M", "D", "G", "S"]], - "perm's": null, - "permed": null, - "perming": null, - "perms": null, - "permutation": [["M", "S"]], - "permutation's": null, - "permutations": null, - "permute": [["S", "D", "G"]], - "permutes": null, - "permuted": null, - "permuting": null, - "Pernell": [["M"]], - "Pernell's": null, - "perniciousness": [["M", "S"]], - "perniciousness's": null, - "perniciousnesses": null, - "pernicious": [["P", "Y"]], - "perniciously": null, - "Pernod": [["M"]], - "Pernod's": null, - "Peron": [["M"]], - "Peron's": null, - "peroration": [["S", "M"]], - "perorations": null, - "peroration's": null, - "Perot": [["M"]], - "Perot's": null, - "peroxidase": [["M"]], - "peroxidase's": null, - "peroxide": [["M", "G", "D", "S"]], - "peroxide's": null, - "peroxiding": null, - "peroxided": null, - "peroxides": null, - "perpend": [["D", "G"]], - "perpended": null, - "perpending": null, - "perpendicularity": [["S", "M"]], - "perpendicularities": null, - "perpendicularity's": null, - "perpendicular": [["S", "Y"]], - "perpendiculars": null, - "perpendicularly": null, - "perpetrate": [["N", "G", "X", "S", "D"]], - "perpetration": [["M"]], - "perpetrating": null, - "perpetrations": null, - "perpetrates": null, - "perpetrated": null, - "perpetration's": null, - "perpetrator": [["S", "M"]], - "perpetrators": null, - "perpetrator's": null, - "perpetual": [["S", "Y"]], - "perpetuals": null, - "perpetually": null, - "perpetuate": [["N", "G", "S", "D", "X"]], - "perpetuation": [["M"]], - "perpetuating": null, - "perpetuates": null, - "perpetuated": null, - "perpetuations": null, - "perpetuation's": null, - "perpetuity": [["M", "S"]], - "perpetuity's": null, - "perpetuities": null, - "perplex": [["D", "S", "G"]], - "perplexed": [["Y"]], - "perplexes": null, - "perplexing": null, - "perplexedly": null, - "perplexity": [["M", "S"]], - "perplexity's": null, - "perplexities": null, - "perquisite": [["S", "M"]], - "perquisites": null, - "perquisite's": null, - "Perren": [["M"]], - "Perren's": null, - "Perri": [["M"]], - "Perri's": null, - "Perrine": [["M"]], - "Perrine's": null, - "Perry": [["M", "R"]], - "Perry's": null, - "Perrier": null, - "persecute": [["X", "V", "N", "G", "S", "D"]], - "persecutions": null, - "persecutive": null, - "persecution": [["M"]], - "persecuting": null, - "persecutes": null, - "persecuted": null, - "persecution's": null, - "persecutor": [["M", "S"]], - "persecutor's": null, - "persecutors": null, - "persecutory": null, - "Perseid": [["M"]], - "Perseid's": null, - "Persephone": [["M"]], - "Persephone's": null, - "Perseus": [["M"]], - "Perseus's": null, - "perseverance": [["M", "S"]], - "perseverance's": null, - "perseverances": null, - "persevere": [["G", "S", "D"]], - "persevering": [["Y"]], - "perseveres": null, - "persevered": null, - "perseveringly": null, - "Pershing": [["M"]], - "Pershing's": null, - "Persia": [["M"]], - "Persia's": null, - "Persian": [["S"]], - "Persians": null, - "persiflage": [["M", "S"]], - "persiflage's": null, - "persiflages": null, - "persimmon": [["S", "M"]], - "persimmons": null, - "persimmon's": null, - "Persis": [["M"]], - "Persis's": null, - "persist": [["D", "R", "S", "G"]], - "persisted": null, - "persister": null, - "persists": null, - "persisting": null, - "persistence": [["S", "M"]], - "persistences": null, - "persistence's": null, - "persistent": [["Y"]], - "persistently": null, - "persnickety": null, - "personableness": [["M"]], - "personableness's": null, - "personable": [["P"]], - "personae": null, - "personage": [["S", "M"]], - "personages": null, - "personage's": null, - "personality": [["S", "M"]], - "personalities": null, - "personality's": null, - "personalization": [["C", "M", "S"]], - "depersonalization": null, - "depersonalization's": null, - "depersonalizations": null, - "personalization's": null, - "personalizations": null, - "personalize": [["C", "S", "D", "G"]], - "depersonalize": null, - "depersonalizes": null, - "depersonalized": null, - "depersonalizing": null, - "personalizes": null, - "personalized": [["U"]], - "personalizing": null, - "unpersonalized": null, - "personalty": [["M", "S"]], - "personalty's": null, - "personalties": null, - "personal": [["Y", "S"]], - "personally": null, - "personals": null, - "persona": [["M"]], - "persona's": null, - "person": [["B", "M", "S"]], - "person's": [["U"]], - "persons": [["U"]], - "personification": [["M"]], - "personification's": null, - "personifier": [["M"]], - "personifier's": null, - "personify": [["X", "N", "G", "D", "R", "S"]], - "personifications": null, - "personifying": null, - "personified": null, - "personifies": null, - "personnel": [["S", "M"]], - "personnels": null, - "personnel's": null, - "unperson's": null, - "unpersons": null, - "perspective": [["Y", "M", "S"]], - "perspectively": null, - "perspective's": null, - "perspectives": null, - "perspex": null, - "perspicaciousness": [["M"]], - "perspicaciousness's": null, - "perspicacious": [["P", "Y"]], - "perspicaciously": null, - "perspicacity": [["S"]], - "perspicacities": null, - "perspicuity": [["S", "M"]], - "perspicuities": null, - "perspicuity's": null, - "perspicuousness": [["M"]], - "perspicuousness's": null, - "perspicuous": [["Y", "P"]], - "perspicuously": null, - "perspiration": [["M", "S"]], - "perspiration's": null, - "perspirations": null, - "perspire": [["D", "S", "G"]], - "perspired": null, - "perspires": null, - "perspiring": null, - "persuaded": [["U"]], - "unpersuaded": null, - "persuader": [["M"]], - "persuader's": null, - "persuade": [["Z", "G", "D", "R", "S", "B"]], - "persuaders": null, - "persuading": null, - "persuades": null, - "persuadable": null, - "persuasion": [["S", "M"]], - "persuasions": null, - "persuasion's": null, - "persuasively": null, - "persuasiveness": [["M", "S"]], - "persuasiveness's": null, - "persuasivenesses": null, - "persuasive": [["U"]], - "unpersuasive": null, - "pertain": [["G", "S", "D"]], - "pertaining": null, - "pertains": null, - "pertained": null, - "Perth": [["M"]], - "Perth's": null, - "pertinaciousness": [["M"]], - "pertinaciousness's": null, - "pertinacious": [["Y", "P"]], - "pertinaciously": null, - "pertinacity": [["M", "S"]], - "pertinacity's": null, - "pertinacities": null, - "pertinence": [["S"]], - "pertinences": null, - "pertinent": [["Y", "S"]], - "pertinently": null, - "pertinents": null, - "pertness": [["M", "S"]], - "pertness's": null, - "pertnesses": null, - "perturbation": [["M", "S"]], - "perturbation's": null, - "perturbations": null, - "perturbed": [["U"]], - "unperturbed": [["Y"]], - "perturb": [["G", "D", "S"]], - "perturbing": null, - "perturbs": null, - "pertussis": [["S", "M"]], - "pertussises": null, - "pertussis's": null, - "pert": [["Y", "R", "T", "S", "P"]], - "pertly": null, - "perter": null, - "pertest": null, - "perts": null, - "peruke": [["S", "M"]], - "perukes": null, - "peruke's": null, - "Peru": [["M"]], - "Peru's": null, - "perusal": [["S", "M"]], - "perusals": null, - "perusal's": null, - "peruser": [["M"]], - "peruser's": null, - "peruse": [["R", "S", "D", "Z", "G"]], - "peruses": null, - "perused": null, - "perusers": null, - "perusing": null, - "Peruvian": [["S"]], - "Peruvians": null, - "pervade": [["S", "D", "G"]], - "pervades": null, - "pervaded": null, - "pervading": null, - "pervasion": [["M"]], - "pervasion's": null, - "pervasiveness": [["M", "S"]], - "pervasiveness's": null, - "pervasivenesses": null, - "pervasive": [["P", "Y"]], - "pervasively": null, - "perverseness": [["S", "M"]], - "perversenesses": null, - "perverseness's": null, - "perverse": [["P", "X", "Y", "N", "V"]], - "perversions": null, - "perversely": null, - "perversion": [["M"]], - "perversive": null, - "perversion's": null, - "perversity": [["M", "S"]], - "perversity's": null, - "perversities": null, - "pervert": [["D", "R", "S", "G"]], - "perverted": [["Y", "P"]], - "perverter": [["M"]], - "perverts": null, - "perverting": null, - "pervertedly": null, - "pervertedness": null, - "perverter's": null, - "perviousness": null, - "peseta": [["S", "M"]], - "pesetas": null, - "peseta's": null, - "Peshawar": [["M"]], - "Peshawar's": null, - "peskily": null, - "peskiness": [["S"]], - "peskinesses": null, - "pesky": [["R", "T", "P"]], - "peskier": null, - "peskiest": null, - "peso": [["M", "S"]], - "peso's": null, - "pesos": null, - "pessimal": [["Y"]], - "pessimally": null, - "pessimism": [["S", "M"]], - "pessimisms": null, - "pessimism's": null, - "pessimistic": null, - "pessimistically": null, - "pessimist": [["S", "M"]], - "pessimists": null, - "pessimist's": null, - "pester": [["D", "G"]], - "pestered": null, - "pestering": null, - "pesticide": [["M", "S"]], - "pesticide's": null, - "pesticides": null, - "pestiferous": null, - "pestilence": [["S", "M"]], - "pestilences": null, - "pestilence's": null, - "pestilential": [["Y"]], - "pestilentially": null, - "pestilent": [["Y"]], - "pestilently": null, - "pestle": [["S", "D", "M", "G"]], - "pestles": null, - "pestled": null, - "pestle's": null, - "pestling": null, - "pesto": [["S"]], - "pestos": null, - "pest": [["R", "Z", "S", "M"]], - "pesters": null, - "pests": null, - "pest's": null, - "PET": null, - "P�tain": [["M"]], - "P�tain's": null, - "petal": [["S", "D", "M"]], - "petals": null, - "petaled": null, - "petal's": null, - "Peta": [["M"]], - "Peta's": null, - "petard": [["M", "S"]], - "petard's": null, - "petards": null, - "petcock": [["S", "M"]], - "petcocks": null, - "petcock's": null, - "Pete": [["M"]], - "Pete's": null, - "peter": [["G", "D"]], - "petering": null, - "petered": null, - "Peter": [["M"]], - "Peter's": null, - "Petersburg": [["M"]], - "Petersburg's": null, - "Petersen": [["M"]], - "Petersen's": null, - "Peters": [["N"]], - "Peterson": [["M"]], - "Peterson's": null, - "Peterus": [["M"]], - "Peterus's": null, - "Petey": [["M"]], - "Petey's": null, - "pethidine": [["M"]], - "pethidine's": null, - "petiole": [["S", "M"]], - "petioles": null, - "petiole's": null, - "petiteness": [["M"]], - "petiteness's": null, - "petite": [["X", "N", "P", "S"]], - "petitions": [["A"]], - "petition": [["G", "Z", "M", "R", "D"]], - "petites": null, - "petitioner": [["M"]], - "petitioner's": null, - "petitioning": null, - "petitioners": null, - "petition's": [["A"]], - "petitioned": null, - "repetition's": null, - "repetitions": null, - "petits": null, - "Petkiewicz": [["M"]], - "Petkiewicz's": null, - "Pet": [["M", "R", "Z"]], - "Pet's": null, - "Petra": [["M"]], - "Petra's": null, - "Petrarch": [["M"]], - "Petrarch's": null, - "petrel": [["S", "M"]], - "petrels": null, - "petrel's": null, - "petri": null, - "petrifaction": [["S", "M"]], - "petrifactions": null, - "petrifaction's": null, - "petrify": [["N", "D", "S", "G"]], - "petrification": null, - "petrified": null, - "petrifies": null, - "petrifying": null, - "Petrina": [["M"]], - "Petrina's": null, - "Petr": [["M"]], - "Petr's": null, - "petrochemical": [["S", "M"]], - "petrochemicals": null, - "petrochemical's": null, - "petrodollar": [["M", "S"]], - "petrodollar's": null, - "petrodollars": null, - "petroglyph": [["M"]], - "petroglyph's": null, - "petrolatum": [["M", "S"]], - "petrolatum's": null, - "petrolatums": null, - "petroleum": [["M", "S"]], - "petroleum's": null, - "petroleums": null, - "petrolled": null, - "petrolling": null, - "petrol": [["M", "S"]], - "petrol's": null, - "petrols": null, - "petrologist": [["M", "S"]], - "petrologist's": null, - "petrologists": null, - "petrology": [["M", "S"]], - "petrology's": null, - "petrologies": null, - "Petronella": [["M"]], - "Petronella's": null, - "Petronia": [["M"]], - "Petronia's": null, - "Petronilla": [["M"]], - "Petronilla's": null, - "Petronille": [["M"]], - "Petronille's": null, - "pet": [["S", "M", "R", "Z"]], - "pets": null, - "pet's": null, - "peters": null, - "petted": null, - "petter": [["M", "S"]], - "petter's": null, - "petters": null, - "Pettibone": [["M"]], - "Pettibone's": null, - "petticoat": [["S", "M", "D"]], - "petticoats": null, - "petticoat's": null, - "petticoated": null, - "pettifogged": null, - "pettifogger": [["S", "M"]], - "pettifoggers": null, - "pettifogger's": null, - "pettifogging": null, - "pettifog": [["S"]], - "pettifogs": null, - "pettily": null, - "pettiness": [["S"]], - "pettinesses": null, - "petting": null, - "pettis": null, - "pettishness": [["M"]], - "pettishness's": null, - "pettish": [["Y", "P"]], - "pettishly": null, - "Petty": [["M"]], - "Petty's": null, - "petty": [["P", "R", "S", "T"]], - "pettier": null, - "petties": null, - "pettiest": null, - "petulance": [["M", "S"]], - "petulance's": null, - "petulances": null, - "petulant": [["Y"]], - "petulantly": null, - "Petunia": [["M"]], - "Petunia's": null, - "petunia": [["S", "M"]], - "petunias": null, - "petunia's": null, - "Peugeot": [["M"]], - "Peugeot's": null, - "Pewaukee": [["M"]], - "Pewaukee's": null, - "pewee": [["M", "S"]], - "pewee's": null, - "pewees": null, - "pewit": [["M", "S"]], - "pewit's": null, - "pewits": null, - "pew": [["S", "M"]], - "pews": null, - "pew's": null, - "pewter": [["S", "R", "M"]], - "pewters": null, - "pewterer": null, - "pewter's": null, - "peyote": [["S", "M"]], - "peyotes": null, - "peyote's": null, - "Peyter": [["M"]], - "Peyter's": null, - "Peyton": [["M"]], - "Peyton's": null, - "pf": null, - "Pfc": null, - "PFC": null, - "pfennig": [["S", "M"]], - "pfennigs": null, - "pfennig's": null, - "Pfizer": [["M"]], - "Pfizer's": null, - "pg": null, - "PG": null, - "Phaedra": [["M"]], - "Phaedra's": null, - "Phaethon": [["M"]], - "Phaethon's": null, - "phaeton": [["M", "S"]], - "phaeton's": null, - "phaetons": null, - "phage": [["M"]], - "phage's": null, - "phagocyte": [["S", "M"]], - "phagocytes": null, - "phagocyte's": null, - "Phaidra": [["M"]], - "Phaidra's": null, - "phalanger": [["M", "S"]], - "phalanger's": null, - "phalangers": null, - "phalanges": null, - "phalanx": [["S", "M"]], - "phalanxes": null, - "phalanx's": null, - "phalli": null, - "phallic": null, - "phallus": [["M"]], - "phallus's": null, - "Phanerozoic": null, - "phantasmagoria": [["S", "M"]], - "phantasmagorias": null, - "phantasmagoria's": null, - "phantasmal": null, - "phantasm": [["S", "M"]], - "phantasms": null, - "phantasm's": null, - "phantasy's": null, - "phantom": [["M", "S"]], - "phantom's": null, - "phantoms": null, - "pharaoh": null, - "Pharaoh": [["M"]], - "Pharaoh's": null, - "pharaohs": null, - "Pharaohs": null, - "pharisaic": null, - "Pharisaic": null, - "Pharisaical": null, - "pharisee": [["S"]], - "pharisees": null, - "Pharisee": [["S", "M"]], - "Pharisees": null, - "Pharisee's": null, - "pharmaceutical": [["S", "Y"]], - "pharmaceuticals": null, - "pharmaceutically": null, - "pharmaceutic": [["S"]], - "pharmaceutics": [["M"]], - "pharmaceutics's": null, - "pharmacist": [["S", "M"]], - "pharmacists": null, - "pharmacist's": null, - "pharmacological": [["Y"]], - "pharmacologically": null, - "pharmacologist": [["S", "M"]], - "pharmacologists": null, - "pharmacologist's": null, - "pharmacology": [["S", "M"]], - "pharmacologies": null, - "pharmacology's": null, - "pharmacopoeia": [["S", "M"]], - "pharmacopoeias": null, - "pharmacopoeia's": null, - "pharmacy": [["S", "M"]], - "pharmacies": null, - "pharmacy's": null, - "pharyngeal": [["S"]], - "pharyngeals": null, - "pharynges": null, - "pharyngitides": null, - "pharyngitis": [["M"]], - "pharyngitis's": null, - "pharynx": [["M"]], - "pharynx's": null, - "phase": [["D", "S", "R", "G", "Z", "M"]], - "phased": null, - "phases": null, - "phaser": null, - "phasing": null, - "phasers": null, - "phase's": null, - "phaseout": [["S"]], - "phaseouts": null, - "PhD": null, - "pheasant": [["S", "M"]], - "pheasants": null, - "pheasant's": null, - "Phebe": [["M"]], - "Phebe's": null, - "Phedra": [["M"]], - "Phedra's": null, - "Phekda": [["M"]], - "Phekda's": null, - "Phelia": [["M"]], - "Phelia's": null, - "Phelps": [["M"]], - "Phelps's": null, - "phenacetin": [["M", "S"]], - "phenacetin's": null, - "phenacetins": null, - "phenobarbital": [["S", "M"]], - "phenobarbitals": null, - "phenobarbital's": null, - "phenolic": null, - "phenol": [["M", "S"]], - "phenol's": null, - "phenols": null, - "phenolphthalein": [["M"]], - "phenolphthalein's": null, - "phenomenal": [["Y"]], - "phenomenally": null, - "phenomena": [["S", "M"]], - "phenomenas": null, - "phenomena's": null, - "phenomenological": [["Y"]], - "phenomenologically": null, - "phenomenology": [["M", "S"]], - "phenomenology's": null, - "phenomenologies": null, - "phenomenon": [["S", "M"]], - "phenomenons": null, - "phenomenon's": null, - "phenotype": [["M", "S"]], - "phenotype's": null, - "phenotypes": null, - "phenylalanine": [["M"]], - "phenylalanine's": null, - "phenyl": [["M"]], - "phenyl's": null, - "pheromone": [["M", "S"]], - "pheromone's": null, - "pheromones": null, - "phew": [["S"]], - "phews": null, - "phialled": null, - "phialling": null, - "phial": [["M", "S"]], - "phial's": null, - "phials": null, - "Phidias": [["M"]], - "Phidias's": null, - "Philadelphia": [["M"]], - "Philadelphia's": null, - "philanderer": [["M"]], - "philanderer's": null, - "philander": [["S", "R", "D", "G", "Z"]], - "philanders": null, - "philandered": null, - "philandering": null, - "philanderers": null, - "philanthropic": null, - "philanthropically": null, - "philanthropist": [["M", "S"]], - "philanthropist's": null, - "philanthropists": null, - "philanthropy": [["S", "M"]], - "philanthropies": null, - "philanthropy's": null, - "philatelic": null, - "philatelist": [["M", "S"]], - "philatelist's": null, - "philatelists": null, - "philately": [["S", "M"]], - "philatelies": null, - "philately's": null, - "Philbert": [["M"]], - "Philbert's": null, - "Philco": [["M"]], - "Philco's": null, - "philharmonic": [["S"]], - "philharmonics": null, - "Philipa": [["M"]], - "Philipa's": null, - "Philip": [["M"]], - "Philip's": null, - "Philippa": [["M"]], - "Philippa's": null, - "Philippe": [["M"]], - "Philippe's": null, - "Philippians": [["M"]], - "Philippians's": null, - "philippic": [["S", "M"]], - "philippics": null, - "philippic's": null, - "Philippine": [["S", "M"]], - "Philippines": null, - "Philippine's": null, - "Philis": [["M"]], - "Philis's": null, - "philistine": [["S"]], - "philistines": null, - "Philistine": [["S", "M"]], - "Philistines": null, - "Philistine's": null, - "philistinism": [["S"]], - "philistinisms": null, - "Phillida": [["M"]], - "Phillida's": null, - "Phillie": [["M"]], - "Phillie's": null, - "Phillipa": [["M"]], - "Phillipa's": null, - "Phillipe": [["M"]], - "Phillipe's": null, - "Phillip": [["M", "S"]], - "Phillip's": null, - "Phillips": null, - "Phillipp": [["M"]], - "Phillipp's": null, - "Phillis": [["M"]], - "Phillis's": null, - "Philly": [["S", "M"]], - "Phillies": null, - "Philly's": null, - "Phil": [["M", "Y"]], - "Phil's": null, - "philodendron": [["M", "S"]], - "philodendron's": null, - "philodendrons": null, - "philological": [["Y"]], - "philologically": null, - "philologist": [["M", "S"]], - "philologist's": null, - "philologists": null, - "philology": [["M", "S"]], - "philology's": null, - "philologies": null, - "Philomena": [["M"]], - "Philomena's": null, - "philosopher": [["M", "S"]], - "philosopher's": null, - "philosophers": null, - "philosophic": null, - "philosophical": [["Y"]], - "philosophically": null, - "philosophized": [["U"]], - "unphilosophized": null, - "philosophizer": [["M"]], - "philosophizer's": null, - "philosophizes": [["U"]], - "unphilosophizes": null, - "philosophize": [["Z", "D", "R", "S", "G"]], - "philosophizers": null, - "philosophizing": null, - "philosophy": [["M", "S"]], - "philosophy's": null, - "philosophies": null, - "philter": [["S", "G", "D", "M"]], - "philters": null, - "philtering": null, - "philtered": null, - "philter's": null, - "philtre": [["D", "S", "M", "G"]], - "philtred": null, - "philtres": null, - "philtre's": null, - "philtring": null, - "Phineas": [["M"]], - "Phineas's": null, - "Phip": [["M"]], - "Phip's": null, - "Phipps": [["M"]], - "Phipps's": null, - "phi": [["S", "M"]], - "phis": null, - "phi's": null, - "phlebitides": null, - "phlebitis": [["M"]], - "phlebitis's": null, - "phlegmatic": null, - "phlegmatically": null, - "phlegm": [["S", "M"]], - "phlegms": null, - "phlegm's": null, - "phloem": [["M", "S"]], - "phloem's": null, - "phloems": null, - "phlox": [["M"]], - "phlox's": null, - "pH": [["M"]], - "pH's": null, - "Ph": [["M"]], - "Ph's": null, - "phobia": [["S", "M"]], - "phobias": null, - "phobia's": null, - "phobic": [["S"]], - "phobics": null, - "Phobos": [["M"]], - "Phobos's": null, - "Phoebe": [["M"]], - "Phoebe's": null, - "phoebe": [["S", "M"]], - "phoebes": null, - "phoebe's": null, - "Phoenicia": [["M"]], - "Phoenicia's": null, - "Phoenician": [["S", "M"]], - "Phoenicians": null, - "Phoenician's": null, - "Phoenix": [["M"]], - "Phoenix's": null, - "phoenix": [["M", "S"]], - "phoenix's": null, - "phoenixes": null, - "phone": [["D", "S", "G", "M"]], - "phoned": null, - "phones": null, - "phoning": null, - "phone's": null, - "phoneme": [["S", "M"]], - "phonemes": null, - "phoneme's": null, - "phonemically": null, - "phonemic": [["S"]], - "phonemics": [["M"]], - "phonemics's": null, - "phonetically": null, - "phonetician": [["S", "M"]], - "phoneticians": null, - "phonetician's": null, - "phonetic": [["S"]], - "phonetics": [["M"]], - "phonetics's": null, - "phonically": null, - "phonic": [["S"]], - "phonics": [["M"]], - "phonics's": null, - "phoniness": [["M", "S"]], - "phoniness's": null, - "phoninesses": null, - "phonographer": [["M"]], - "phonographer's": null, - "phonographic": null, - "phonograph": [["R", "M"]], - "phonograph's": null, - "phonographs": null, - "phonologic": null, - "phonological": [["Y"]], - "phonologically": null, - "phonologist": [["M", "S"]], - "phonologist's": null, - "phonologists": null, - "phonology": [["M", "S"]], - "phonology's": null, - "phonologies": null, - "phonon": [["M"]], - "phonon's": null, - "phony": [["P", "T", "R", "S", "D", "G"]], - "phoniest": null, - "phonier": null, - "phonies": null, - "phonied": null, - "phonying": null, - "phooey": [["S"]], - "phooeys": null, - "phosphatase": [["M"]], - "phosphatase's": null, - "phosphate": [["M", "S"]], - "phosphate's": null, - "phosphates": null, - "phosphide": [["M"]], - "phosphide's": null, - "phosphine": [["M", "S"]], - "phosphine's": null, - "phosphines": null, - "phosphoresce": null, - "phosphorescence": [["S", "M"]], - "phosphorescences": null, - "phosphorescence's": null, - "phosphorescent": [["Y"]], - "phosphorescently": null, - "phosphoric": null, - "phosphor": [["M", "S"]], - "phosphor's": null, - "phosphors": null, - "phosphorous": null, - "phosphorus": [["S", "M"]], - "phosphoruses": null, - "phosphorus's": null, - "photocell": [["M", "S"]], - "photocell's": null, - "photocells": null, - "photochemical": [["Y"]], - "photochemically": null, - "photochemistry": [["M"]], - "photochemistry's": null, - "photocopier": [["M"]], - "photocopier's": null, - "photocopy": [["M", "R", "S", "D", "Z", "G"]], - "photocopy's": null, - "photocopies": null, - "photocopied": null, - "photocopiers": null, - "photocopying": null, - "photoelectric": null, - "photoelectrically": null, - "photoelectronic": null, - "photoelectrons": null, - "photoengraver": [["M"]], - "photoengraver's": null, - "photoengrave": [["R", "S", "D", "J", "Z", "G"]], - "photoengraves": null, - "photoengraved": null, - "photoengravings": null, - "photoengravers": null, - "photoengraving": [["M"]], - "photoengraving's": null, - "photofinishing": [["M", "S"]], - "photofinishing's": null, - "photofinishings": null, - "photogenic": null, - "photogenically": null, - "photograph": [["A", "G", "D"]], - "rephotograph": null, - "rephotographing": null, - "rephotographed": null, - "photographing": null, - "photographed": null, - "photographer": [["S", "M"]], - "photographers": null, - "photographer's": null, - "photographic": null, - "photographically": null, - "photograph's": null, - "photographs": [["A"]], - "rephotographs": null, - "photography": [["M", "S"]], - "photography's": null, - "photographies": null, - "photojournalism": [["S", "M"]], - "photojournalisms": null, - "photojournalism's": null, - "photojournalist": [["S", "M"]], - "photojournalists": null, - "photojournalist's": null, - "photoluminescence": [["M"]], - "photoluminescence's": null, - "photolysis": [["M"]], - "photolysis's": null, - "photolytic": null, - "photometer": [["S", "M"]], - "photometers": null, - "photometer's": null, - "photometric": null, - "photometrically": null, - "photometry": [["M"]], - "photometry's": null, - "photomicrograph": [["M"]], - "photomicrograph's": null, - "photomicrography": [["M"]], - "photomicrography's": null, - "photomultiplier": [["M"]], - "photomultiplier's": null, - "photon": [["M", "S"]], - "photon's": null, - "photons": null, - "photorealism": null, - "photosensitive": null, - "photo": [["S", "G", "M", "D"]], - "photos": null, - "photoing": null, - "photo's": null, - "photoed": null, - "photosphere": [["M"]], - "photosphere's": null, - "photostatic": null, - "Photostat": [["M", "S"]], - "Photostat's": null, - "Photostats": null, - "Photostatted": null, - "Photostatting": null, - "photosyntheses": null, - "photosynthesis": [["M"]], - "photosynthesis's": null, - "photosynthesize": [["D", "S", "G"]], - "photosynthesized": null, - "photosynthesizes": null, - "photosynthesizing": null, - "photosynthetic": null, - "phototypesetter": null, - "phototypesetting": [["M"]], - "phototypesetting's": null, - "phrasal": null, - "phrase": [["A", "G", "D", "S"]], - "rephrase": null, - "rephrasing": null, - "rephrased": null, - "rephrases": null, - "phrasing": [["S", "M"]], - "phrased": null, - "phrases": null, - "phrasebook": null, - "phrasemaking": null, - "phraseology": [["M", "S"]], - "phraseology's": null, - "phraseologies": null, - "phrase's": null, - "phrasings": null, - "phrasing's": null, - "phrenological": [["Y"]], - "phrenologically": null, - "phrenologist": [["M", "S"]], - "phrenologist's": null, - "phrenologists": null, - "phrenology": [["M", "S"]], - "phrenology's": null, - "phrenologies": null, - "phylactery": [["M", "S"]], - "phylactery's": null, - "phylacteries": null, - "phylae": null, - "phyla": [["M"]], - "phyla's": null, - "Phylis": [["M"]], - "Phylis's": null, - "Phyllida": [["M"]], - "Phyllida's": null, - "Phyllis": [["M"]], - "Phyllis's": null, - "Phyllys": [["M"]], - "Phyllys's": null, - "phylogeny": [["M", "S"]], - "phylogeny's": null, - "phylogenies": null, - "phylum": [["M"]], - "phylum's": null, - "Phylys": [["M"]], - "Phylys's": null, - "phys": null, - "physicality": [["M"]], - "physicality's": null, - "physical": [["P", "Y", "S"]], - "physicalness": null, - "physically": null, - "physicals": null, - "physician": [["S", "M"]], - "physicians": null, - "physician's": null, - "physicist": [["M", "S"]], - "physicist's": null, - "physicists": null, - "physicked": null, - "physicking": null, - "physic": [["S", "M"]], - "physics": null, - "physic's": null, - "physiochemical": null, - "physiognomy": [["S", "M"]], - "physiognomies": null, - "physiognomy's": null, - "physiography": [["M", "S"]], - "physiography's": null, - "physiographies": null, - "physiologic": null, - "physiological": [["Y"]], - "physiologically": null, - "physiologist": [["S", "M"]], - "physiologists": null, - "physiologist's": null, - "physiology": [["M", "S"]], - "physiology's": null, - "physiologies": null, - "physiotherapist": [["M", "S"]], - "physiotherapist's": null, - "physiotherapists": null, - "physiotherapy": [["S", "M"]], - "physiotherapies": null, - "physiotherapy's": null, - "physique": [["M", "S", "D"]], - "physique's": null, - "physiques": null, - "physiqued": null, - "phytoplankton": [["M"]], - "phytoplankton's": null, - "Piaf": [["M"]], - "Piaf's": null, - "Piaget": [["M"]], - "Piaget's": null, - "Pia": [["M"]], - "Pia's": null, - "pianism": [["M"]], - "pianism's": null, - "pianissimo": [["S"]], - "pianissimos": null, - "pianistic": null, - "pianist": [["S", "M"]], - "pianists": null, - "pianist's": null, - "pianoforte": [["M", "S"]], - "pianoforte's": null, - "pianofortes": null, - "pianola": null, - "Pianola": [["M"]], - "Pianola's": null, - "piano": [["S", "M"]], - "pianos": null, - "piano's": null, - "piaster": [["M", "S"]], - "piaster's": null, - "piasters": null, - "piazza": [["S", "M"]], - "piazzas": null, - "piazza's": null, - "pibroch": [["M"]], - "pibroch's": null, - "pibrochs": null, - "picador": [["M", "S"]], - "picador's": null, - "picadors": null, - "picaresque": [["S"]], - "picaresques": null, - "pica": [["S", "M"]], - "picas": null, - "pica's": null, - "Picasso": [["M"]], - "Picasso's": null, - "picayune": [["S"]], - "picayunes": null, - "Piccadilly": [["M"]], - "Piccadilly's": null, - "piccalilli": [["M", "S"]], - "piccalilli's": null, - "piccalillis": null, - "piccolo": [["M", "S"]], - "piccolo's": null, - "piccolos": null, - "pickaback's": null, - "pickaxe's": null, - "pickax": [["G", "M", "S", "D"]], - "pickaxing": null, - "pickax's": null, - "pickaxes": null, - "pickaxed": null, - "pickerel": [["M", "S"]], - "pickerel's": null, - "pickerels": null, - "Pickering": [["M"]], - "Pickering's": null, - "picker": [["M", "G"]], - "picker's": null, - "pickering": null, - "picketer": [["M"]], - "picketer's": null, - "picket": [["M", "S", "R", "D", "Z", "G"]], - "picket's": null, - "pickets": null, - "picketed": null, - "picketers": null, - "picketing": null, - "Pickett": [["M"]], - "Pickett's": null, - "Pickford": [["M"]], - "Pickford's": null, - "pick": [["G", "Z", "S", "J", "D", "R"]], - "picking": null, - "pickers": null, - "picks": null, - "pickings": null, - "picked": null, - "pickle": [["S", "D", "M", "G"]], - "pickles": null, - "pickled": null, - "pickle's": null, - "pickling": null, - "Pickman": [["M"]], - "Pickman's": null, - "pickoff": [["S"]], - "pickoffs": null, - "pickpocket": [["G", "S", "M"]], - "pickpocketing": null, - "pickpockets": null, - "pickpocket's": null, - "pickup": [["S", "M"]], - "pickups": null, - "pickup's": null, - "Pickwick": [["M"]], - "Pickwick's": null, - "picky": [["R", "T"]], - "pickier": null, - "pickiest": null, - "picnicked": null, - "picnicker": [["M", "S"]], - "picnicker's": null, - "picnickers": null, - "picnicking": null, - "picnic": [["S", "M"]], - "picnics": null, - "picnic's": null, - "picofarad": [["M", "S"]], - "picofarad's": null, - "picofarads": null, - "picojoule": null, - "picoseconds": null, - "picot": [["D", "M", "G", "S"]], - "picoted": null, - "picot's": null, - "picoting": null, - "picots": null, - "Pict": [["M"]], - "Pict's": null, - "pictograph": [["M"]], - "pictograph's": null, - "pictographs": null, - "pictorialness": [["M"]], - "pictorialness's": null, - "pictorial": [["P", "Y", "S"]], - "pictorially": null, - "pictorials": null, - "picture": [["M", "G", "S", "D"]], - "picture's": null, - "picturing": null, - "pictures": null, - "pictured": null, - "picturesqueness": [["S", "M"]], - "picturesquenesses": null, - "picturesqueness's": null, - "picturesque": [["P", "Y"]], - "picturesquely": null, - "piddle": [["G", "S", "D"]], - "piddling": null, - "piddles": null, - "piddled": null, - "piddly": null, - "pidgin": [["S", "M"]], - "pidgins": null, - "pidgin's": null, - "piebald": [["S"]], - "piebalds": null, - "piece": [["G", "M", "D", "S", "R"]], - "piecing": null, - "piece's": null, - "pieced": null, - "pieces": null, - "piecer": [["M"]], - "piecemeal": null, - "piecer's": null, - "piecewise": null, - "pieceworker": [["M"]], - "pieceworker's": null, - "piecework": [["Z", "S", "M", "R"]], - "pieceworkers": null, - "pieceworks": null, - "piecework's": null, - "piedmont": null, - "Piedmont": [["M"]], - "Piedmont's": null, - "pieing": null, - "pie": [["M", "S"]], - "pie's": null, - "pies": null, - "Pierce": [["M"]], - "Pierce's": null, - "piercer": [["M"]], - "piercer's": null, - "pierce": [["R", "S", "D", "Z", "G", "J"]], - "pierces": null, - "pierced": null, - "piercers": null, - "piercing": [["Y"]], - "piercings": null, - "piercingly": null, - "Pierette": [["M"]], - "Pierette's": null, - "pier": [["M"]], - "pier's": null, - "Pier": [["M"]], - "Pier's": null, - "Pierre": [["M"]], - "Pierre's": null, - "Pierrette": [["M"]], - "Pierrette's": null, - "Pierrot": [["M"]], - "Pierrot's": null, - "Pierson": [["M"]], - "Pierson's": null, - "Pieter": [["M"]], - "Pieter's": null, - "Pietra": [["M"]], - "Pietra's": null, - "Pietrek": [["M"]], - "Pietrek's": null, - "Pietro": [["M"]], - "Pietro's": null, - "piety": [["S", "M"]], - "pieties": null, - "piety's": null, - "piezoelectric": null, - "piezoelectricity": [["M"]], - "piezoelectricity's": null, - "piffle": [["M", "G", "S", "D"]], - "piffle's": null, - "piffling": null, - "piffles": null, - "piffled": null, - "pigeon": [["D", "M", "G", "S"]], - "pigeoned": null, - "pigeon's": null, - "pigeoning": null, - "pigeons": null, - "pigeonhole": [["S", "D", "G", "M"]], - "pigeonholes": null, - "pigeonholed": null, - "pigeonholing": null, - "pigeonhole's": null, - "pigged": null, - "piggery": [["M"]], - "piggery's": null, - "pigging": null, - "piggishness": [["S", "M"]], - "piggishnesses": null, - "piggishness's": null, - "piggish": [["Y", "P"]], - "piggishly": null, - "piggyback": [["M", "S", "D", "G"]], - "piggyback's": null, - "piggybacks": null, - "piggybacked": null, - "piggybacking": null, - "Piggy": [["M"]], - "Piggy's": null, - "piggy": [["R", "S", "M", "T"]], - "piggier": null, - "piggies": null, - "piggy's": null, - "piggiest": null, - "pigheadedness": [["S"]], - "pigheadednesses": null, - "pigheaded": [["Y", "P"]], - "pigheadedly": null, - "piglet": [["M", "S"]], - "piglet's": null, - "piglets": null, - "pigmentation": [["M", "S"]], - "pigmentation's": null, - "pigmentations": null, - "pigment": [["M", "D", "S", "G"]], - "pigment's": null, - "pigmented": null, - "pigments": null, - "pigmenting": null, - "pig": [["M", "L", "S"]], - "pig's": null, - "pigs": null, - "Pigmy's": null, - "pigpen": [["S", "M"]], - "pigpens": null, - "pigpen's": null, - "pigroot": null, - "pigskin": [["M", "S"]], - "pigskin's": null, - "pigskins": null, - "pigsty": [["S", "M"]], - "pigsties": null, - "pigsty's": null, - "pigswill": [["M"]], - "pigswill's": null, - "pigtail": [["S", "M", "D"]], - "pigtails": null, - "pigtail's": null, - "pigtailed": null, - "Pike": [["M"]], - "Pike's": null, - "pike": [["M", "Z", "G", "D", "R", "S"]], - "pike's": null, - "pikers": null, - "piking": null, - "piked": null, - "piker": [["M"]], - "pikes": null, - "piker's": null, - "pikestaff": [["M", "S"]], - "pikestaff's": null, - "pikestaffs": null, - "pilaf": [["M", "S"]], - "pilaf's": null, - "pilafs": null, - "pilaster": [["S", "M"]], - "pilasters": null, - "pilaster's": null, - "Pilate": [["M"]], - "Pilate's": null, - "pilau's": null, - "pilchard": [["S", "M"]], - "pilchards": null, - "pilchard's": null, - "Pilcomayo": [["M"]], - "Pilcomayo's": null, - "pile": [["J", "D", "S", "M", "Z", "G"]], - "pilings": null, - "piled": null, - "piles": null, - "pile's": null, - "pilers": null, - "piling": [["M"]], - "pileup": [["M", "S"]], - "pileup's": null, - "pileups": null, - "pilferage": [["S", "M"]], - "pilferages": null, - "pilferage's": null, - "pilferer": [["M"]], - "pilferer's": null, - "pilfer": [["Z", "G", "S", "R", "D"]], - "pilferers": null, - "pilfering": null, - "pilfers": null, - "pilfered": null, - "Pilgrim": null, - "pilgrimage": [["D", "S", "G", "M"]], - "pilgrimaged": null, - "pilgrimages": null, - "pilgrimaging": null, - "pilgrimage's": null, - "pilgrim": [["M", "S"]], - "pilgrim's": null, - "pilgrims": null, - "piling's": null, - "pillage": [["R", "S", "D", "Z", "G"]], - "pillager": null, - "pillages": null, - "pillaged": null, - "pillagers": null, - "pillaging": null, - "pillar": [["D", "M", "S", "G"]], - "pillared": null, - "pillar's": null, - "pillars": null, - "pillaring": null, - "pillbox": [["M", "S"]], - "pillbox's": null, - "pillboxes": null, - "pill": [["G", "S", "M", "D"]], - "pilling": null, - "pills": null, - "pill's": null, - "pilled": null, - "pillion": [["D", "M", "G", "S"]], - "pillioned": null, - "pillion's": null, - "pillioning": null, - "pillions": null, - "pillory": [["M", "S", "D", "G"]], - "pillory's": null, - "pillories": null, - "pilloried": null, - "pillorying": null, - "pillowcase": [["S", "M"]], - "pillowcases": null, - "pillowcase's": null, - "pillow": [["G", "D", "M", "S"]], - "pillowing": null, - "pillowed": null, - "pillow's": null, - "pillows": null, - "pillowslip": [["S"]], - "pillowslips": null, - "Pillsbury": [["M"]], - "Pillsbury's": null, - "pilot": [["D", "M", "G", "S"]], - "piloted": null, - "pilot's": null, - "piloting": [["M"]], - "pilots": null, - "pilothouse": [["S", "M"]], - "pilothouses": null, - "pilothouse's": null, - "piloting's": null, - "pimento": [["M", "S"]], - "pimento's": null, - "pimentos": null, - "pimiento": [["S", "M"]], - "pimientos": null, - "pimiento's": null, - "pimpernel": [["S", "M"]], - "pimpernels": null, - "pimpernel's": null, - "pimp": [["G", "S", "M", "Y", "D"]], - "pimping": null, - "pimps": null, - "pimp's": null, - "pimply": [["T", "R", "M"]], - "pimped": null, - "pimple": [["S", "D", "M"]], - "pimples": null, - "pimpled": null, - "pimple's": null, - "pimplike": null, - "pimpliest": null, - "pimplier": null, - "pimply's": null, - "PIN": null, - "pinafore": [["M", "S"]], - "pinafore's": null, - "pinafores": null, - "pi�ata": [["S"]], - "pi�atas": null, - "Pinatubo": [["M"]], - "Pinatubo's": null, - "pinball": [["M", "S"]], - "pinball's": null, - "pinballs": null, - "Pincas": [["M"]], - "Pincas's": null, - "pincer": [["G", "S", "D"]], - "pincering": null, - "pincers": null, - "pincered": null, - "Pinchas": [["M"]], - "Pinchas's": null, - "pincher": [["M"]], - "pincher's": null, - "pinch": [["G", "R", "S", "D"]], - "pinching": null, - "pinches": null, - "pinched": null, - "pincushion": [["S", "M"]], - "pincushions": null, - "pincushion's": null, - "Pincus": [["M"]], - "Pincus's": null, - "Pindar": [["M"]], - "Pindar's": null, - "pineapple": [["M", "S"]], - "pineapple's": null, - "pineapples": null, - "pined": [["A"]], - "repined": null, - "Pinehurst": [["M"]], - "Pinehurst's": null, - "pine": [["M", "N", "G", "X", "D", "S"]], - "pine's": null, - "pinion": [["D", "M", "G"]], - "pining": [["A"]], - "pinions": null, - "pines": [["A"]], - "repines": null, - "pinfeather": [["S", "M"]], - "pinfeathers": null, - "pinfeather's": null, - "ping": [["G", "D", "R", "M"]], - "pinging": null, - "pinged": null, - "pinger": null, - "ping's": null, - "pinheaded": [["P"]], - "pinheadedness": null, - "pinhead": [["S", "M", "D"]], - "pinheads": null, - "pinhead's": null, - "pinhole": [["S", "M"]], - "pinholes": null, - "pinhole's": null, - "repining": null, - "pinioned": null, - "pinion's": null, - "pinioning": null, - "Pinkerton": [["M"]], - "Pinkerton's": null, - "pinkeye": [["M", "S"]], - "pinkeye's": null, - "pinkeyes": null, - "pink": [["G", "T", "Y", "D", "R", "M", "P", "S"]], - "pinking": null, - "pinkest": null, - "pinkly": null, - "pinked": null, - "pinker": null, - "pink's": null, - "pinkness": [["S"]], - "pinks": null, - "pinkie": [["S", "M"]], - "pinkies": null, - "pinkie's": null, - "pinkish": [["P"]], - "pinkishness": null, - "pinknesses": null, - "pinko": [["M", "S"]], - "pinko's": null, - "pinkos": null, - "pinky's": null, - "pinnacle": [["M", "G", "S", "D"]], - "pinnacle's": null, - "pinnacling": null, - "pinnacles": null, - "pinnacled": null, - "pinnate": null, - "pinned": [["U"]], - "unpinned": null, - "pinning": [["S"]], - "pinnings": null, - "Pinocchio": [["M"]], - "Pinocchio's": null, - "Pinochet": [["M"]], - "Pinochet's": null, - "pinochle": [["S", "M"]], - "pinochles": null, - "pinochle's": null, - "pi�on": [["S"]], - "pi�ons": null, - "pinpoint": [["S", "D", "G"]], - "pinpoints": null, - "pinpointed": null, - "pinpointing": null, - "pinprick": [["M", "D", "S", "G"]], - "pinprick's": null, - "pinpricked": null, - "pinpricks": null, - "pinpricking": null, - "pin's": null, - "pinsetter": [["S", "M"]], - "pinsetters": null, - "pinsetter's": null, - "Pinsky": [["M"]], - "Pinsky's": null, - "pinstripe": [["S", "D", "M"]], - "pinstripes": null, - "pinstriped": null, - "pinstripe's": null, - "pintail": [["S", "M"]], - "pintails": null, - "pintail's": null, - "Pinter": [["M"]], - "Pinter's": null, - "pint": [["M", "R", "S"]], - "pint's": null, - "pinter": null, - "pints": null, - "pinto": [["S"]], - "pintos": null, - "pinup": [["M", "S"]], - "pinup's": null, - "pinups": null, - "pin": [["U", "S"]], - "unpin": null, - "unpins": null, - "pins": null, - "pinwheel": [["D", "M", "G", "S"]], - "pinwheeled": null, - "pinwheel's": null, - "pinwheeling": null, - "pinwheels": null, - "pinyin": null, - "Pinyin": null, - "piny": [["R", "T"]], - "pinier": null, - "piniest": null, - "pioneer": [["S", "D", "M", "G"]], - "pioneers": null, - "pioneered": null, - "pioneer's": null, - "pioneering": null, - "pion": [["M"]], - "pion's": null, - "Piotr": [["M"]], - "Piotr's": null, - "piousness": [["M", "S"]], - "piousness's": null, - "piousnesses": null, - "pious": [["Y", "P"]], - "piously": null, - "pipeline": [["D", "S", "M", "G"]], - "pipelined": null, - "pipelines": null, - "pipeline's": null, - "pipelining": null, - "pipe": [["M", "S"]], - "pipe's": null, - "pipes": null, - "piper": [["M"]], - "piper's": null, - "Piper": [["M"]], - "Piper's": null, - "Pipestone": [["M"]], - "Pipestone's": null, - "pipet's": null, - "pipette": [["M", "G", "S", "D"]], - "pipette's": null, - "pipetting": null, - "pipettes": null, - "pipetted": null, - "pipework": null, - "piping": [["Y", "M"]], - "pipingly": null, - "piping's": null, - "pipit": [["M", "S"]], - "pipit's": null, - "pipits": null, - "pip": [["J", "S", "Z", "M", "G", "D", "R"]], - "pipings": null, - "pips": null, - "pipers": null, - "pip's": null, - "piped": null, - "Pip": [["M", "R"]], - "Pip's": null, - "Pippa": [["M"]], - "Pippa's": null, - "pipped": null, - "pipping": null, - "pippin": [["S", "M"]], - "pippins": null, - "pippin's": null, - "Pippo": [["M"]], - "Pippo's": null, - "Pippy": [["M"]], - "Pippy's": null, - "pipsqueak": [["S", "M"]], - "pipsqueaks": null, - "pipsqueak's": null, - "piquancy": [["M", "S"]], - "piquancy's": null, - "piquancies": null, - "piquantness": [["M"]], - "piquantness's": null, - "piquant": [["P", "Y"]], - "piquantly": null, - "pique": [["G", "M", "D", "S"]], - "piquing": null, - "pique's": null, - "piqued": null, - "piques": null, - "piracy": [["M", "S"]], - "piracy's": null, - "piracies": null, - "Piraeus": [["M"]], - "Piraeus's": null, - "Pirandello": [["M"]], - "Pirandello's": null, - "piranha": [["S", "M"]], - "piranhas": null, - "piranha's": null, - "pirate": [["M", "G", "S", "D"]], - "pirate's": null, - "pirating": null, - "pirates": null, - "pirated": null, - "piratical": [["Y"]], - "piratically": null, - "pirogi": null, - "pirogies": null, - "pirouette": [["M", "G", "S", "D"]], - "pirouette's": null, - "pirouetting": null, - "pirouettes": null, - "pirouetted": null, - "pis": null, - "Pisa": [["M"]], - "Pisa's": null, - "piscatorial": null, - "Pisces": [["M"]], - "Pisces's": null, - "Pisistratus": [["M"]], - "Pisistratus's": null, - "pismire": [["S", "M"]], - "pismires": null, - "pismire's": null, - "Pissaro": [["M"]], - "Pissaro's": null, - "piss": [["D", "S", "R", "G", "!"]], - "pissed": null, - "pisses": null, - "pisser": null, - "pissing": null, - "pistachio": [["M", "S"]], - "pistachio's": null, - "pistachios": null, - "piste": [["S", "M"]], - "pistes": null, - "piste's": null, - "pistillate": null, - "pistil": [["M", "S"]], - "pistil's": null, - "pistils": null, - "pistoleers": null, - "pistole": [["M"]], - "pistole's": null, - "pistol": [["S", "M", "G", "D"]], - "pistols": null, - "pistol's": null, - "pistoling": null, - "pistoled": null, - "piston": [["S", "M"]], - "pistons": null, - "piston's": null, - "pitapat": [["S"]], - "pitapats": null, - "pitapatted": null, - "pitapatting": null, - "pita": [["S", "M"]], - "pitas": null, - "pita's": null, - "Pitcairn": [["M"]], - "Pitcairn's": null, - "pitchblende": [["S", "M"]], - "pitchblendes": null, - "pitchblende's": null, - "pitcher": [["M"]], - "pitcher's": null, - "pitchfork": [["G", "D", "M", "S"]], - "pitchforking": null, - "pitchforked": null, - "pitchfork's": null, - "pitchforks": null, - "pitching": [["M"]], - "pitching's": null, - "pitchman": [["M"]], - "pitchman's": null, - "pitchmen": null, - "pitch": [["R", "S", "D", "Z", "G"]], - "pitches": null, - "pitched": null, - "pitchers": null, - "pitchstone": [["M"]], - "pitchstone's": null, - "piteousness": [["S", "M"]], - "piteousnesses": null, - "piteousness's": null, - "piteous": [["Y", "P"]], - "piteously": null, - "pitfall": [["S", "M"]], - "pitfalls": null, - "pitfall's": null, - "pithily": null, - "pithiness": [["S", "M"]], - "pithinesses": null, - "pithiness's": null, - "pith": [["M", "G", "D", "S"]], - "pith's": null, - "pithing": null, - "pithed": null, - "pithes": null, - "piths": null, - "pithy": [["R", "T", "P"]], - "pithier": null, - "pithiest": null, - "pitiableness": [["M"]], - "pitiableness's": null, - "pitiable": [["P"]], - "pitiably": null, - "pitier": [["M"]], - "pitier's": null, - "pitifuller": null, - "pitifullest": null, - "pitifulness": [["M"]], - "pitifulness's": null, - "pitiful": [["P", "Y"]], - "pitifully": null, - "pitilessness": [["S", "M"]], - "pitilessnesses": null, - "pitilessness's": null, - "pitiless": [["P", "Y"]], - "pitilessly": null, - "pitman": [["M"]], - "pitman's": null, - "pit": [["M", "S"]], - "pit's": null, - "pits": null, - "Pitney": [["M"]], - "Pitney's": null, - "piton": [["S", "M"]], - "pitons": null, - "piton's": null, - "pittance": [["S", "M"]], - "pittances": null, - "pittance's": null, - "pitted": null, - "pitting": null, - "Pittman": [["M"]], - "Pittman's": null, - "Pittsburgh": [["Z", "M"]], - "Pittsburghers": null, - "Pittsburgh's": null, - "Pittsfield": [["M"]], - "Pittsfield's": null, - "Pitt": [["S", "M"]], - "Pitts": null, - "Pitt's": null, - "Pittston": [["M"]], - "Pittston's": null, - "pituitary": [["S", "M"]], - "pituitaries": null, - "pituitary's": null, - "pitying": [["Y"]], - "pityingly": null, - "pity": [["Z", "D", "S", "R", "M", "G"]], - "pitiers": null, - "pitied": null, - "pities": null, - "pity's": null, - "Pius": [["M"]], - "Pius's": null, - "pivotal": [["Y"]], - "pivotally": null, - "pivot": [["D", "M", "S", "G"]], - "pivoted": null, - "pivot's": null, - "pivots": null, - "pivoting": [["M"]], - "pivoting's": null, - "pix": [["D", "S", "G"]], - "pixed": null, - "pixes": null, - "pixing": null, - "pixel": [["S", "M"]], - "pixels": null, - "pixel's": null, - "pixie": [["M", "S"]], - "pixie's": null, - "pixies": null, - "pixiness": null, - "pixmap": [["S", "M"]], - "pixmaps": null, - "pixmap's": null, - "Pizarro": [["M"]], - "Pizarro's": null, - "pizazz": [["S"]], - "pizazzes": null, - "pi": [["Z", "G", "D", "R", "H"]], - "piers": null, - "piing": null, - "pied": null, - "pizza": [["S", "M"]], - "pizzas": null, - "pizza's": null, - "pizzeria": [["S", "M"]], - "pizzerias": null, - "pizzeria's": null, - "pizzicati": null, - "pizzicato": null, - "pj's": null, - "PJ's": null, - "pk": null, - "pkg": null, - "pkt": null, - "pkwy": null, - "Pkwy": null, - "pl": null, - "placard": [["D", "S", "M", "G"]], - "placarded": null, - "placards": null, - "placard's": null, - "placarding": null, - "placate": [["N", "G", "V", "X", "D", "R", "S"]], - "placation": null, - "placating": null, - "placative": null, - "placations": null, - "placated": null, - "placater": null, - "placates": null, - "placatory": null, - "placeable": [["A"]], - "replaceable": null, - "placebo": [["S", "M"]], - "placebos": null, - "placebo's": null, - "placed": [["E", "A", "U"]], - "displaced": null, - "replaced": null, - "unplaced": null, - "place": [["D", "S", "R", "J", "L", "G", "Z", "M"]], - "places": [["E", "A"]], - "placer": [["E", "M"]], - "placings": null, - "placement": [["A", "M", "E", "S"]], - "placing": [["A", "E"]], - "placers": null, - "place's": null, - "placeholder": [["S"]], - "placeholders": null, - "placekick": [["D", "G", "S"]], - "placekicked": null, - "placekicking": null, - "placekicks": null, - "placeless": [["Y"]], - "placelessly": null, - "replacement": null, - "replacement's": null, - "replacements": null, - "placement's": null, - "displacement's": null, - "displacements": null, - "placements": null, - "placental": [["S"]], - "placentals": null, - "placenta": [["S", "M"]], - "placentas": null, - "placenta's": null, - "displacer": null, - "displacer's": null, - "placer's": null, - "displaces": null, - "replaces": null, - "placidity": [["S", "M"]], - "placidities": null, - "placidity's": null, - "placidness": [["M"]], - "placidness's": null, - "placid": [["P", "Y"]], - "placidly": null, - "replacing": null, - "displacing": null, - "placket": [["S", "M"]], - "plackets": null, - "placket's": null, - "plagiarism": [["M", "S"]], - "plagiarism's": null, - "plagiarisms": null, - "plagiarist": [["M", "S"]], - "plagiarist's": null, - "plagiarists": null, - "plagiarize": [["G", "Z", "D", "S", "R"]], - "plagiarizing": null, - "plagiarizers": null, - "plagiarized": null, - "plagiarizes": null, - "plagiarizer": null, - "plagiary": [["S", "M"]], - "plagiaries": null, - "plagiary's": null, - "plagued": [["U"]], - "unplagued": null, - "plague": [["M", "G", "R", "S", "D"]], - "plague's": null, - "plaguing": null, - "plaguer": [["M"]], - "plagues": null, - "plaguer's": null, - "plaice": [["M"]], - "plaice's": null, - "plaid": [["D", "M", "S", "G"]], - "plaided": null, - "plaid's": null, - "plaids": null, - "plaiding": null, - "plainclothes": null, - "plainclothesman": null, - "plainclothesmen": null, - "Plainfield": [["M"]], - "Plainfield's": null, - "plainness": [["M", "S"]], - "plainness's": null, - "plainnesses": null, - "plainsman": [["M"]], - "plainsman's": null, - "plainsmen": null, - "plainsong": [["S", "M"]], - "plainsongs": null, - "plainsong's": null, - "plainspoken": null, - "plain": [["S", "P", "T", "G", "R", "D", "Y"]], - "plains": null, - "plainest": null, - "plaining": null, - "plainer": null, - "plained": null, - "plainly": null, - "plaintiff": [["M", "S"]], - "plaintiff's": null, - "plaintiffs": null, - "plaintiveness": [["M"]], - "plaintiveness's": null, - "plaintive": [["Y", "P"]], - "plaintively": null, - "plaint": [["V", "M", "S"]], - "plaint's": null, - "plaints": null, - "Plainview": [["M"]], - "Plainview's": null, - "plaiting": [["M"]], - "plaiting's": null, - "plait": [["S", "R", "D", "M", "G"]], - "plaits": null, - "plaiter": null, - "plaited": null, - "plait's": null, - "planar": null, - "planarity": null, - "Planck": [["M"]], - "Planck's": null, - "plan": [["D", "R", "M", "S", "G", "Z"]], - "planed": null, - "planer": [["M"]], - "plan's": null, - "plans": null, - "planing": null, - "planers": null, - "planeload": null, - "planer's": null, - "plane's": null, - "plane": [["S", "C", "G", "D"]], - "planes": null, - "deplanes": null, - "deplane": null, - "deplaning": null, - "deplaned": null, - "planetarium": [["M", "S"]], - "planetarium's": null, - "planetariums": null, - "planetary": null, - "planetesimal": [["M"]], - "planetesimal's": null, - "planet": [["M", "S"]], - "planet's": null, - "planets": null, - "planetoid": [["S", "M"]], - "planetoids": null, - "planetoid's": null, - "plangency": [["S"]], - "plangencies": null, - "plangent": null, - "planking": [["M"]], - "planking's": null, - "plank": [["S", "J", "M", "D", "G"]], - "planks": null, - "plankings": null, - "plank's": null, - "planked": null, - "plankton": [["M", "S"]], - "plankton's": null, - "planktons": null, - "planned": [["U"]], - "unplanned": null, - "planner": [["S", "M"]], - "planners": null, - "planner's": null, - "planning": null, - "Plano": null, - "planoconcave": null, - "planoconvex": null, - "Plantagenet": [["M"]], - "Plantagenet's": null, - "plantain": [["M", "S"]], - "plantain's": null, - "plantains": null, - "plantar": null, - "plantation": [["M", "S"]], - "plantation's": null, - "plantations": null, - "planter": [["M", "S"]], - "planter's": null, - "planters": null, - "planting": [["S"]], - "plantings": null, - "plantlike": null, - "plant's": null, - "plant": [["S", "A", "D", "G"]], - "plants": null, - "replants": null, - "replant": null, - "replanted": null, - "replanting": null, - "planted": null, - "plaque": [["M", "S"]], - "plaque's": null, - "plaques": null, - "plash": [["G", "S", "D", "M"]], - "plashing": null, - "plashes": null, - "plashed": null, - "plash's": null, - "plasma": [["M", "S"]], - "plasma's": null, - "plasmas": null, - "plasmid": [["S"]], - "plasmids": null, - "plasm": [["M"]], - "plasm's": null, - "plasterboard": [["M", "S"]], - "plasterboard's": null, - "plasterboards": null, - "plasterer": [["M"]], - "plasterer's": null, - "plastering": [["M"]], - "plastering's": null, - "plaster": [["M", "D", "R", "S", "Z", "G"]], - "plaster's": null, - "plastered": null, - "plasters": null, - "plasterers": null, - "plasterwork": [["M"]], - "plasterwork's": null, - "plastically": null, - "plasticine": null, - "Plasticine": [["M"]], - "Plasticine's": null, - "plasticity": [["S", "M"]], - "plasticities": null, - "plasticity's": null, - "plasticize": [["G", "D", "S"]], - "plasticizing": null, - "plasticized": null, - "plasticizes": null, - "plastic": [["M", "Y", "S"]], - "plastic's": null, - "plasticly": null, - "plastics": null, - "plateau": [["G", "D", "M", "S"]], - "plateauing": null, - "plateaued": null, - "plateau's": null, - "plateaus": null, - "plateful": [["S"]], - "platefuls": null, - "platelet": [["S", "M"]], - "platelets": null, - "platelet's": null, - "platen": [["M"]], - "platen's": null, - "plater": [["M"]], - "plater's": null, - "plate": [["S", "M"]], - "plates": null, - "plate's": null, - "platform": [["S", "G", "D", "M"]], - "platforms": null, - "platforming": null, - "platformed": null, - "platform's": null, - "Plath": [["M"]], - "Plath's": null, - "plating": [["M"]], - "plating's": null, - "platinize": [["G", "S", "D"]], - "platinizing": null, - "platinizes": null, - "platinized": null, - "platinum": [["M", "S"]], - "platinum's": null, - "platinums": null, - "platitude": [["S", "M"]], - "platitudes": null, - "platitude's": null, - "platitudinous": [["Y"]], - "platitudinously": null, - "plat": [["J", "D", "N", "R", "S", "G", "X", "Z"]], - "platings": null, - "plated": null, - "plats": null, - "platens": null, - "platers": null, - "Plato": [["M"]], - "Plato's": null, - "platonic": null, - "Platonic": null, - "Platonism": [["M"]], - "Platonism's": null, - "Platonist": null, - "platoon": [["M", "D", "S", "G"]], - "platoon's": null, - "platooned": null, - "platoons": null, - "platooning": null, - "platted": null, - "Platte": [["M"]], - "Platte's": null, - "platter": [["M", "S"]], - "platter's": null, - "platters": null, - "Platteville": [["M"]], - "Platteville's": null, - "platting": null, - "platypus": [["M", "S"]], - "platypus's": null, - "platypuses": null, - "platys": null, - "platy": [["T", "R"]], - "platiest": null, - "platier": null, - "plaudit": [["M", "S"]], - "plaudit's": null, - "plaudits": null, - "plausibility": [["S"]], - "plausibilities": null, - "plausible": [["P"]], - "plausibleness": null, - "plausibly": null, - "Plautus": [["M"]], - "Plautus's": null, - "playability": [["U"]], - "unplayability": null, - "playable": [["U"]], - "unplayable": null, - "playacting": [["M"]], - "playacting's": null, - "playact": [["S", "J", "D", "G"]], - "playacts": null, - "playactings": null, - "playacted": null, - "playback": [["M", "S"]], - "playback's": null, - "playbacks": null, - "playbill": [["S", "M"]], - "playbills": null, - "playbill's": null, - "Playboy": [["M"]], - "Playboy's": null, - "playboy": [["S", "M"]], - "playboys": null, - "playboy's": null, - "play": [["D", "R", "S", "E", "B", "G"]], - "played": [["A"]], - "player": [["S", "M"]], - "displayer": null, - "plays": [["A"]], - "displayable": null, - "playing": [["S"]], - "replayed": null, - "player's": [["E"]], - "displayer's": null, - "players": null, - "playfellow": [["S"]], - "playfellows": null, - "playfulness": [["M", "S"]], - "playfulness's": null, - "playfulnesses": null, - "playful": [["P", "Y"]], - "playfully": null, - "playgirl": [["S", "M"]], - "playgirls": null, - "playgirl's": null, - "playgoer": [["M", "S"]], - "playgoer's": null, - "playgoers": null, - "playground": [["M", "S"]], - "playground's": null, - "playgrounds": null, - "playgroup": [["S"]], - "playgroups": null, - "playhouse": [["S", "M"]], - "playhouses": null, - "playhouse's": null, - "playings": null, - "playmate": [["M", "S"]], - "playmate's": null, - "playmates": null, - "playoff": [["S"]], - "playoffs": null, - "playpen": [["S", "M"]], - "playpens": null, - "playpen's": null, - "playroom": [["S", "M"]], - "playrooms": null, - "playroom's": null, - "replays": null, - "Playtex": [["M"]], - "Playtex's": null, - "plaything": [["M", "S"]], - "plaything's": null, - "playthings": null, - "playtime": [["S", "M"]], - "playtimes": null, - "playtime's": null, - "playwright": [["S", "M"]], - "playwrights": null, - "playwright's": null, - "playwriting": [["M"]], - "playwriting's": null, - "plaza": [["S", "M"]], - "plazas": null, - "plaza's": null, - "pleader": [["M", "A"]], - "pleader's": null, - "repleader's": null, - "repleader": null, - "pleading": [["M", "Y"]], - "pleading's": null, - "pleadingly": null, - "plead": [["Z", "G", "J", "R", "D", "S"]], - "pleaders": null, - "pleadings": null, - "pleaded": null, - "pleads": null, - "pleasanter": null, - "pleasantest": null, - "pleasantness": [["S", "M", "U"]], - "pleasantnesses": null, - "unpleasantnesses": null, - "pleasantness's": null, - "unpleasantness's": null, - "unpleasantness": null, - "pleasantry": [["M", "S"]], - "pleasantry's": null, - "pleasantries": null, - "pleasant": [["U", "Y", "P"]], - "unpleasant": null, - "unpleasantly": null, - "pleasantly": null, - "pleased": [["E", "U"]], - "unpleased": null, - "pleaser": [["M"]], - "pleaser's": null, - "pleases": [["E"]], - "displeases": null, - "please": [["Y"]], - "pleasely": null, - "pleasingness": [["M"]], - "pleasingness's": null, - "pleasing": [["Y", "P"]], - "pleasingly": null, - "plea": [["S", "M"]], - "pleas": [["R", "S", "D", "J", "G"]], - "plea's": null, - "pleasings": null, - "pleasurableness": [["M"]], - "pleasurableness's": null, - "pleasurable": [["P"]], - "pleasurably": null, - "pleasureful": null, - "pleasure": [["M", "G", "B", "D", "S"]], - "pleasure's": [["E"]], - "pleasuring": null, - "pleasured": null, - "pleasures": [["E"]], - "displeasure's": null, - "displeasures": null, - "pleater": [["M"]], - "pleater's": null, - "pleat": [["R", "D", "M", "G", "S"]], - "pleated": null, - "pleat's": null, - "pleating": null, - "pleats": null, - "plebeian": [["S", "Y"]], - "plebeians": null, - "plebeianly": null, - "plebe": [["M", "S"]], - "plebe's": null, - "plebes": null, - "plebiscite": [["S", "M"]], - "plebiscites": null, - "plebiscite's": null, - "plectra": null, - "plectrum": [["S", "M"]], - "plectrums": null, - "plectrum's": null, - "pledger": [["M"]], - "pledger's": null, - "pledge": [["R", "S", "D", "M", "G"]], - "pledges": null, - "pledged": null, - "pledge's": null, - "pledging": null, - "Pleiads": null, - "Pleistocene": null, - "plenary": [["S"]], - "plenaries": null, - "plenipotentiary": [["S"]], - "plenipotentiaries": null, - "plenitude": [["M", "S"]], - "plenitude's": null, - "plenitudes": null, - "plenteousness": [["M"]], - "plenteousness's": null, - "plenteous": [["P", "Y"]], - "plenteously": null, - "plentifulness": [["M"]], - "plentifulness's": null, - "plentiful": [["Y", "P"]], - "plentifully": null, - "plenty": [["S", "M"]], - "plenties": null, - "plenty's": null, - "plenum": [["M"]], - "plenum's": null, - "pleonasm": [["M", "S"]], - "pleonasm's": null, - "pleonasms": null, - "plethora": [["S", "M"]], - "plethoras": null, - "plethora's": null, - "pleurae": null, - "pleural": null, - "pleura": [["M"]], - "pleura's": null, - "pleurisy": [["S", "M"]], - "pleurisies": null, - "pleurisy's": null, - "Plexiglas": [["M", "S"]], - "Plexiglas's": null, - "Plexiglases": null, - "plexus": [["S", "M"]], - "plexuses": null, - "plexus's": null, - "pliability": [["M", "S"]], - "pliability's": null, - "pliabilities": null, - "pliableness": [["M"]], - "pliableness's": null, - "pliable": [["P"]], - "pliancy": [["M", "S"]], - "pliancy's": null, - "pliancies": null, - "pliantness": [["M"]], - "pliantness's": null, - "pliant": [["Y", "P"]], - "pliantly": null, - "plication": [["M", "A"]], - "plication's": null, - "replication's": null, - "replication": null, - "plier": [["M", "A"]], - "plier's": null, - "replier's": null, - "replier": null, - "plight": [["G", "M", "D", "R", "S"]], - "plighting": null, - "plight's": null, - "plighted": null, - "plighter": null, - "plights": null, - "plimsolls": null, - "plinker": [["M"]], - "plinker's": null, - "plink": [["G", "R", "D", "S"]], - "plinking": null, - "plinked": null, - "plinks": null, - "plinth": [["M"]], - "plinth's": null, - "plinths": null, - "Pliny": [["M"]], - "Pliny's": null, - "Pliocene": [["S"]], - "Pliocenes": null, - "PLO": null, - "plodded": null, - "plodder": [["S", "M"]], - "plodders": null, - "plodder's": null, - "plodding": [["S", "Y"]], - "ploddings": null, - "ploddingly": null, - "plod": [["S"]], - "plods": null, - "plopped": null, - "plopping": null, - "plop": [["S", "M"]], - "plops": null, - "plop's": null, - "plosive": null, - "plot": [["S", "M"]], - "plots": null, - "plot's": null, - "plotted": [["A"]], - "replotted": null, - "plotter": [["M", "D", "S", "G"]], - "plotter's": null, - "plottered": null, - "plotters": null, - "plottering": null, - "plotting": null, - "plover": [["M", "S"]], - "plover's": null, - "plovers": null, - "plowed": [["U"]], - "unplowed": null, - "plower": [["M"]], - "plower's": null, - "plowman": [["M"]], - "plowman's": null, - "plowmen": null, - "plow": [["S", "G", "Z", "D", "R", "M"]], - "plows": null, - "plowing": null, - "plowers": null, - "plow's": null, - "plowshare": [["M", "S"]], - "plowshare's": null, - "plowshares": null, - "ploy's": null, - "ploy": [["S", "C", "D", "G"]], - "ploys": null, - "ployed": null, - "ploying": null, - "plucker": [["M"]], - "plucker's": null, - "pluckily": null, - "pluckiness": [["S", "M"]], - "pluckinesses": null, - "pluckiness's": null, - "pluck": [["S", "G", "R", "D"]], - "plucks": null, - "plucking": null, - "plucked": null, - "plucky": [["T", "P", "R"]], - "pluckiest": null, - "pluckier": null, - "pluggable": null, - "plugged": [["U", "A"]], - "unplugged": null, - "replugged": null, - "plugging": [["A", "U"]], - "replugging": null, - "unplugging": null, - "plughole": null, - "plug's": null, - "plug": [["U", "S"]], - "unplug": null, - "unplugs": null, - "plugs": null, - "plumage": [["D", "S", "M"]], - "plumaged": null, - "plumages": null, - "plumage's": null, - "plumbago": [["M"]], - "plumbago's": null, - "plumbed": [["U"]], - "unplumbed": null, - "plumber": [["M"]], - "plumber's": null, - "plumbing": [["M"]], - "plumbing's": null, - "plumb": [["J", "S", "Z", "G", "M", "R", "D"]], - "plumbings": null, - "plumbs": null, - "plumbers": null, - "plumb's": null, - "plume": [["S", "M"]], - "plumes": null, - "plume's": null, - "plummer": null, - "plummest": null, - "plummet": [["D", "S", "G"]], - "plummeted": null, - "plummets": null, - "plummeting": null, - "plummy": null, - "plumper": [["M"]], - "plumper's": null, - "plumpness": [["S"]], - "plumpnesses": null, - "plump": [["R", "D", "N", "Y", "S", "T", "G", "P"]], - "plumped": null, - "plumpen": null, - "plumply": null, - "plumps": null, - "plumpest": null, - "plumping": null, - "plum": [["S", "M", "D", "G"]], - "plums": null, - "plum's": null, - "plumed": null, - "pluming": null, - "plumy": [["T", "R"]], - "plumiest": null, - "plumier": null, - "plunder": [["G", "D", "R", "S", "Z"]], - "plundering": null, - "plundered": null, - "plunderer": null, - "plunders": null, - "plunderers": null, - "plunger": [["M"]], - "plunger's": null, - "plunge": [["R", "S", "D", "Z", "G"]], - "plunges": null, - "plunged": null, - "plungers": null, - "plunging": null, - "plunker": [["M"]], - "plunker's": null, - "plunk": [["Z", "G", "S", "R", "D"]], - "plunkers": null, - "plunking": null, - "plunks": null, - "plunked": null, - "pluperfect": [["S"]], - "pluperfects": null, - "pluralism": [["M", "S"]], - "pluralism's": null, - "pluralisms": null, - "pluralistic": null, - "pluralist": [["S"]], - "pluralists": null, - "plurality": [["S", "M"]], - "pluralities": null, - "plurality's": null, - "pluralization": [["M", "S"]], - "pluralization's": null, - "pluralizations": null, - "pluralize": [["G", "Z", "R", "S", "D"]], - "pluralizing": null, - "pluralizers": null, - "pluralizer": [["M"]], - "pluralizes": null, - "pluralized": null, - "pluralizer's": null, - "plural": [["S", "Y"]], - "plurals": null, - "plurally": null, - "plushness": [["M", "S"]], - "plushness's": null, - "plushnesses": null, - "plush": [["R", "S", "Y", "M", "T", "P"]], - "plusher": null, - "plushes": null, - "plushly": null, - "plush's": null, - "plushest": null, - "plushy": [["R", "P", "T"]], - "plushier": null, - "plushiness": null, - "plushiest": null, - "plus": [["S"]], - "pluses": null, - "plussed": null, - "plussing": null, - "Plutarch": [["M"]], - "Plutarch's": null, - "plutocracy": [["M", "S"]], - "plutocracy's": null, - "plutocracies": null, - "plutocratic": null, - "plutocrat": [["S", "M"]], - "plutocrats": null, - "plutocrat's": null, - "Pluto": [["M"]], - "Pluto's": null, - "plutonium": [["S", "M"]], - "plutoniums": null, - "plutonium's": null, - "pluvial": [["S"]], - "pluvials": null, - "ply": [["A", "Z", "N", "G", "R", "S", "D"]], - "reply": [["X"]], - "repliers": null, - "replying": null, - "replies": null, - "replied": null, - "pliers": null, - "plying": null, - "plies": null, - "plied": null, - "Plymouth": [["M"]], - "Plymouth's": null, - "plywood": [["M", "S"]], - "plywood's": null, - "plywoods": null, - "pm": null, - "PM": null, - "Pm": [["M"]], - "Pm's": null, - "PMS": null, - "pneumatically": null, - "pneumatic": [["S"]], - "pneumatics": [["M"]], - "pneumatics's": null, - "pneumonia": [["M", "S"]], - "pneumonia's": null, - "pneumonias": null, - "PO": null, - "poacher": [["M"]], - "poacher's": null, - "poach": [["Z", "G", "S", "R", "D"]], - "poachers": null, - "poaching": null, - "poaches": null, - "poached": null, - "Pocahontas": [["M"]], - "Pocahontas's": null, - "pocketbook": [["S", "M"]], - "pocketbooks": null, - "pocketbook's": null, - "pocketful": [["S", "M"]], - "pocketfuls": null, - "pocketful's": null, - "pocketing": [["M"]], - "pocketing's": null, - "pocketknife": [["M"]], - "pocketknife's": null, - "pocketknives": null, - "pocket": [["M", "S", "R", "D", "G"]], - "pocket's": null, - "pockets": null, - "pocketer": null, - "pocketed": null, - "pock": [["G", "D", "M", "S"]], - "pocking": null, - "pocked": null, - "pock's": null, - "pocks": null, - "pockmark": [["M", "D", "S", "G"]], - "pockmark's": null, - "pockmarked": null, - "pockmarks": null, - "pockmarking": null, - "Pocono": [["M", "S"]], - "Pocono's": null, - "Poconos": null, - "podded": null, - "podding": null, - "podge": [["Z", "R"]], - "podgers": null, - "podger": null, - "Podgorica": [["M"]], - "Podgorica's": null, - "podiatrist": [["M", "S"]], - "podiatrist's": null, - "podiatrists": null, - "podiatry": [["M", "S"]], - "podiatry's": null, - "podiatries": null, - "podium": [["M", "S"]], - "podium's": null, - "podiums": null, - "pod": [["S", "M"]], - "pods": null, - "pod's": null, - "Podunk": [["M"]], - "Podunk's": null, - "Poe": [["M"]], - "Poe's": null, - "poem": [["M", "S"]], - "poem's": null, - "poems": null, - "poesy": [["G", "S", "D", "M"]], - "poesying": null, - "poesies": null, - "poesied": null, - "poesy's": null, - "poetaster": [["M", "S"]], - "poetaster's": null, - "poetasters": null, - "poetess": [["M", "S"]], - "poetess's": null, - "poetesses": null, - "poetically": null, - "poeticalness": null, - "poetical": [["U"]], - "unpoetical": null, - "poetic": [["S"]], - "poetics": [["M"]], - "poetics's": null, - "poet": [["M", "S"]], - "poet's": null, - "poets": null, - "poetry": [["S", "M"]], - "poetries": null, - "poetry's": null, - "pogo": null, - "Pogo": [["M"]], - "Pogo's": null, - "pogrom": [["G", "M", "D", "S"]], - "pogroming": null, - "pogrom's": null, - "pogromed": null, - "pogroms": null, - "poignancy": [["M", "S"]], - "poignancy's": null, - "poignancies": null, - "poignant": [["Y"]], - "poignantly": null, - "Poincar�": [["M"]], - "Poincar�'s": null, - "poinciana": [["S", "M"]], - "poincianas": null, - "poinciana's": null, - "Poindexter": [["M"]], - "Poindexter's": null, - "poinsettia": [["S", "M"]], - "poinsettias": null, - "poinsettia's": null, - "pointblank": null, - "pointedness": [["M"]], - "pointedness's": null, - "pointed": [["P", "Y"]], - "pointedly": null, - "pointer": [["M"]], - "pointer's": null, - "pointillism": [["S", "M"]], - "pointillisms": null, - "pointillism's": null, - "pointillist": [["S", "M"]], - "pointillists": null, - "pointillist's": null, - "pointing": [["M"]], - "pointing's": null, - "pointlessness": [["S", "M"]], - "pointlessnesses": null, - "pointlessness's": null, - "pointless": [["Y", "P"]], - "pointlessly": null, - "point": [["R", "D", "M", "Z", "G", "S"]], - "point's": null, - "pointers": null, - "points": null, - "pointy": [["T", "R"]], - "pointiest": null, - "pointier": null, - "poise": [["M"]], - "poise's": null, - "pois": [["G", "D", "S"]], - "poising": null, - "poised": null, - "poises": null, - "poi": [["S", "M"]], - "poi's": null, - "poisoner": [["M"]], - "poisoner's": null, - "poisoning": [["M"]], - "poisoning's": null, - "poisonous": [["P", "Y"]], - "poisonousness": null, - "poisonously": null, - "poison": [["R", "D", "M", "Z", "G", "S", "J"]], - "poisoned": null, - "poison's": null, - "poisoners": null, - "poisons": null, - "poisonings": null, - "Poisson": [["M"]], - "Poisson's": null, - "poke": [["D", "R", "S", "Z", "G"]], - "poked": null, - "poker": [["M"]], - "pokes": null, - "pokers": null, - "poking": null, - "Pokemon": [["M"]], - "Pokemon's": null, - "pokerface": [["D"]], - "pokerfaced": null, - "poker's": null, - "poky": [["S", "R", "T"]], - "pokies": null, - "pokier": null, - "pokiest": null, - "Poland": [["M"]], - "Poland's": null, - "Polanski": [["M"]], - "Polanski's": null, - "polarimeter": [["S", "M"]], - "polarimeters": null, - "polarimeter's": null, - "polarimetry": null, - "polariscope": [["M"]], - "polariscope's": null, - "Polaris": [["M"]], - "Polaris's": null, - "polarity": [["M", "S"]], - "polarity's": null, - "polarities": null, - "polarization": [["C", "M", "S"]], - "depolarization": null, - "depolarization's": null, - "depolarizations": null, - "polarization's": null, - "polarizations": null, - "polarized": [["U", "C"]], - "unpolarized": [["S", "M"]], - "depolarized": null, - "polarize": [["R", "S", "D", "Z", "G"]], - "polarizer": null, - "polarizes": [["C"]], - "polarizers": null, - "polarizing": [["C"]], - "depolarizes": null, - "depolarizing": null, - "polarogram": [["S", "M"]], - "polarograms": null, - "polarogram's": null, - "polarograph": null, - "polarography": [["M"]], - "polarography's": null, - "Polaroid": [["S", "M"]], - "Polaroids": null, - "Polaroid's": null, - "polar": [["S"]], - "polars": null, - "polecat": [["S", "M"]], - "polecats": null, - "polecat's": null, - "polemical": [["Y"]], - "polemically": null, - "polemicist": [["S"]], - "polemicists": null, - "polemic": [["S"]], - "polemics": [["M"]], - "polemics's": null, - "pole": [["M", "S"]], - "pole's": null, - "poles": null, - "Pole": [["M", "S"]], - "Pole's": null, - "Poles": null, - "poler": [["M"]], - "poler's": null, - "polestar": [["S"]], - "polestars": null, - "poleward": [["S"]], - "polewards": null, - "pol": [["G", "M", "D", "R", "S"]], - "poling": null, - "pol's": null, - "poled": null, - "pols": null, - "policeman": [["M"]], - "policeman's": null, - "policemen": [["M"]], - "policemen's": null, - "police": [["M", "S", "D", "G"]], - "police's": null, - "polices": null, - "policed": null, - "policing": null, - "policewoman": [["M"]], - "policewoman's": null, - "policewomen": null, - "policyholder": [["M", "S"]], - "policyholder's": null, - "policyholders": null, - "policymaker": [["S"]], - "policymakers": null, - "policymaking": null, - "policy": [["S", "M"]], - "policies": null, - "policy's": null, - "poliomyelitides": null, - "poliomyelitis": [["M"]], - "poliomyelitis's": null, - "polio": [["S", "M"]], - "polios": null, - "polio's": null, - "Polish": null, - "polished": [["U"]], - "unpolished": null, - "polisher": [["M"]], - "polisher's": null, - "polish": [["R", "S", "D", "Z", "G", "J"]], - "polishes": null, - "polishers": null, - "polishing": null, - "polishings": null, - "polis": [["M"]], - "polis's": null, - "Politburo": [["M"]], - "Politburo's": null, - "politburo": [["S"]], - "politburos": null, - "politeness": [["M", "S"]], - "politeness's": null, - "politenesses": null, - "polite": [["P", "R", "T", "Y"]], - "politer": null, - "politest": null, - "politely": null, - "politesse": [["S", "M"]], - "politesses": null, - "politesse's": null, - "politically": null, - "political": [["U"]], - "unpolitical": null, - "politician": [["M", "S"]], - "politician's": null, - "politicians": null, - "politicization": [["S"]], - "politicizations": null, - "politicize": [["C", "S", "D", "G"]], - "depoliticize": null, - "depoliticizes": null, - "depoliticized": null, - "depoliticizing": null, - "politicizes": null, - "politicized": null, - "politicizing": null, - "politicked": null, - "politicking": [["S", "M"]], - "politickings": null, - "politicking's": null, - "politico": [["S", "M"]], - "politicos": null, - "politico's": null, - "politic": [["S"]], - "politics": [["M"]], - "politics's": null, - "polity": [["M", "S"]], - "polity's": null, - "polities": null, - "polka": [["S", "D", "M", "G"]], - "polkas": null, - "polkaed": null, - "polka's": null, - "polkaing": null, - "Polk": [["M"]], - "Polk's": null, - "pollack": [["S", "M"]], - "pollacks": null, - "pollack's": null, - "Pollard": [["M"]], - "Pollard's": null, - "polled": [["U"]], - "unpolled": null, - "pollen": [["G", "D", "M"]], - "pollening": null, - "pollened": null, - "pollen's": null, - "pollinate": [["X", "S", "D", "G", "N"]], - "pollinations": null, - "pollinates": null, - "pollinated": null, - "pollinating": null, - "pollination": [["M"]], - "pollination's": null, - "pollinator": [["M", "S"]], - "pollinator's": null, - "pollinators": null, - "polliwog": [["S", "M"]], - "polliwogs": null, - "polliwog's": null, - "poll": [["M", "D", "N", "R", "S", "G", "X"]], - "poll's": null, - "poller": null, - "polls": null, - "polling": null, - "pollens": null, - "pollock's": null, - "Pollock": [["S", "M"]], - "Pollocks": null, - "Pollock's": null, - "pollster": [["M", "S"]], - "pollster's": null, - "pollsters": null, - "pollutant": [["M", "S"]], - "pollutant's": null, - "pollutants": null, - "polluted": [["U"]], - "unpolluted": null, - "polluter": [["M"]], - "polluter's": null, - "pollute": [["R", "S", "D", "X", "Z", "V", "N", "G"]], - "pollutes": null, - "pollutions": null, - "polluters": null, - "pollutive": null, - "pollution": [["M"]], - "polluting": null, - "pollution's": null, - "Pollux": [["M"]], - "Pollux's": null, - "Pollyanna": [["M"]], - "Pollyanna's": null, - "Polly": [["M"]], - "Polly's": null, - "pollywog's": null, - "Pol": [["M", "Y"]], - "Pol's": null, - "Polo": [["M"]], - "Polo's": null, - "polo": [["M", "S"]], - "polo's": null, - "polos": null, - "polonaise": [["M", "S"]], - "polonaise's": null, - "polonaises": null, - "polonium": [["M", "S"]], - "polonium's": null, - "poloniums": null, - "poltergeist": [["S", "M"]], - "poltergeists": null, - "poltergeist's": null, - "poltroon": [["M", "S"]], - "poltroon's": null, - "poltroons": null, - "polyandrous": null, - "polyandry": [["M", "S"]], - "polyandry's": null, - "polyandries": null, - "polyatomic": null, - "polybutene": [["M", "S"]], - "polybutene's": null, - "polybutenes": null, - "polycarbonate": null, - "polychemicals": null, - "polychrome": null, - "polyclinic": [["M", "S"]], - "polyclinic's": null, - "polyclinics": null, - "polycrystalline": null, - "polyelectrolytes": null, - "polyester": [["S", "M"]], - "polyesters": null, - "polyester's": null, - "polyether": [["S"]], - "polyethers": null, - "polyethylene": [["S", "M"]], - "polyethylenes": null, - "polyethylene's": null, - "polygamist": [["M", "S"]], - "polygamist's": null, - "polygamists": null, - "polygamous": [["Y"]], - "polygamously": null, - "polygamy": [["M", "S"]], - "polygamy's": null, - "polygamies": null, - "polyglot": [["S"]], - "polyglots": null, - "polygonal": [["Y"]], - "polygonally": null, - "polygon": [["M", "S"]], - "polygon's": null, - "polygons": null, - "polygraph": [["M", "D", "G"]], - "polygraph's": null, - "polygraphed": null, - "polygraphing": null, - "polygraphs": null, - "polygynous": null, - "polyhedral": null, - "polyhedron": [["M", "S"]], - "polyhedron's": null, - "polyhedrons": null, - "Polyhymnia": [["M"]], - "Polyhymnia's": null, - "polyisobutylene": null, - "polyisocyanates": null, - "polymath": [["M"]], - "polymath's": null, - "polymaths": null, - "polymerase": [["S"]], - "polymerases": null, - "polymeric": null, - "polymerization": [["S", "M"]], - "polymerizations": null, - "polymerization's": null, - "polymerize": [["S", "D", "G"]], - "polymerizes": null, - "polymerized": null, - "polymerizing": null, - "polymer": [["M", "S"]], - "polymer's": null, - "polymers": null, - "polymorphic": null, - "polymorphism": [["M", "S"]], - "polymorphism's": null, - "polymorphisms": null, - "polymorph": [["M"]], - "polymorph's": null, - "polymyositis": null, - "Polynesia": [["M"]], - "Polynesia's": null, - "Polynesian": [["S"]], - "Polynesians": null, - "polynomial": [["Y", "M", "S"]], - "polynomially": null, - "polynomial's": null, - "polynomials": null, - "Polyphemus": [["M"]], - "Polyphemus's": null, - "polyphonic": null, - "polyphony": [["M", "S"]], - "polyphony's": null, - "polyphonies": null, - "polyphosphate": [["S"]], - "polyphosphates": null, - "polyp": [["M", "S"]], - "polyp's": null, - "polyps": null, - "polypropylene": [["M", "S"]], - "polypropylene's": null, - "polypropylenes": null, - "polystyrene": [["S", "M"]], - "polystyrenes": null, - "polystyrene's": null, - "polysyllabic": null, - "polysyllable": [["S", "M"]], - "polysyllables": null, - "polysyllable's": null, - "polytechnic": [["M", "S"]], - "polytechnic's": null, - "polytechnics": null, - "polytheism": [["S", "M"]], - "polytheisms": null, - "polytheism's": null, - "polytheistic": null, - "polytheist": [["S", "M"]], - "polytheists": null, - "polytheist's": null, - "polythene": [["M"]], - "polythene's": null, - "polytonal": [["Y"]], - "polytonally": null, - "polytopes": null, - "polyunsaturated": null, - "polyurethane": [["S", "M"]], - "polyurethanes": null, - "polyurethane's": null, - "polyvinyl": [["M", "S"]], - "polyvinyl's": null, - "polyvinyls": null, - "Po": [["M"]], - "Po's": null, - "pomade": [["M", "G", "S", "D"]], - "pomade's": null, - "pomading": null, - "pomades": null, - "pomaded": null, - "pomander": [["M", "S"]], - "pomander's": null, - "pomanders": null, - "pomegranate": [["S", "M"]], - "pomegranates": null, - "pomegranate's": null, - "Pomerania": [["M"]], - "Pomerania's": null, - "Pomeranian": null, - "pommel": [["G", "S", "M", "D"]], - "pommeling": null, - "pommels": null, - "pommel's": null, - "pommeled": null, - "Pomona": [["M"]], - "Pomona's": null, - "Pompadour": [["M"]], - "Pompadour's": null, - "pompadour": [["M", "D", "S"]], - "pompadour's": null, - "pompadoured": null, - "pompadours": null, - "pompano": [["S", "M"]], - "pompanos": null, - "pompano's": null, - "Pompeian": [["S"]], - "Pompeians": null, - "Pompeii": [["M"]], - "Pompeii's": null, - "Pompey": [["M"]], - "Pompey's": null, - "pompom": [["S", "M"]], - "pompoms": null, - "pompom's": null, - "pompon's": null, - "pomposity": [["M", "S"]], - "pomposity's": null, - "pomposities": null, - "pompousness": [["S"]], - "pompousnesses": null, - "pompous": [["Y", "P"]], - "pompously": null, - "pomp": [["S", "M"]], - "pomps": null, - "pomp's": null, - "ponce": [["M"]], - "ponce's": null, - "Ponce": [["M"]], - "Ponce's": null, - "Ponchartrain": [["M"]], - "Ponchartrain's": null, - "poncho": [["M", "S"]], - "poncho's": null, - "ponchos": null, - "ponderer": [["M"]], - "ponderer's": null, - "ponderousness": [["M", "S"]], - "ponderousness's": null, - "ponderousnesses": null, - "ponderous": [["P", "Y"]], - "ponderously": null, - "ponder": [["Z", "G", "R", "D"]], - "ponderers": null, - "pondering": null, - "pondered": null, - "pond": [["S", "M", "D", "R", "G", "Z"]], - "ponds": null, - "pond's": null, - "ponded": null, - "ponding": null, - "ponders": null, - "pone": [["S", "M"]], - "pones": null, - "pone's": null, - "pongee": [["M", "S"]], - "pongee's": null, - "pongees": null, - "poniard": [["G", "S", "D", "M"]], - "poniarding": null, - "poniards": null, - "poniarded": null, - "poniard's": null, - "pons": [["M"]], - "pons's": null, - "Pontchartrain": [["M"]], - "Pontchartrain's": null, - "Pontiac": [["M"]], - "Pontiac's": null, - "Pontianak": [["M"]], - "Pontianak's": null, - "pontiff": [["M", "S"]], - "pontiff's": null, - "pontiffs": null, - "pontifical": [["Y", "S"]], - "pontifically": null, - "pontificals": null, - "pontificate": [["X", "G", "N", "D", "S"]], - "pontifications": null, - "pontificating": null, - "pontification": null, - "pontificated": null, - "pontificates": null, - "pontoon": [["S", "M", "D", "G"]], - "pontoons": null, - "pontoon's": null, - "pontooned": null, - "pontooning": null, - "pony": [["D", "S", "M", "G"]], - "ponied": null, - "ponies": null, - "pony's": null, - "ponying": null, - "ponytail": [["S", "M"]], - "ponytails": null, - "ponytail's": null, - "pooch": [["G", "S", "D", "M"]], - "pooching": null, - "pooches": null, - "pooched": null, - "pooch's": null, - "poodle": [["M", "S"]], - "poodle's": null, - "poodles": null, - "poof": [["M", "S"]], - "poof's": null, - "poofs": null, - "pooh": [["D", "G"]], - "poohed": null, - "poohing": null, - "Pooh": [["M"]], - "Pooh's": null, - "poohs": null, - "Poole": [["M"]], - "Poole's": null, - "pool": [["M", "D", "S", "G"]], - "pool's": null, - "pooled": null, - "pools": null, - "pooling": null, - "poolroom": [["M", "S"]], - "poolroom's": null, - "poolrooms": null, - "poolside": null, - "Poona": [["M"]], - "Poona's": null, - "poop": [["M", "D", "S", "G"]], - "poop's": null, - "pooped": null, - "poops": null, - "pooping": null, - "poorboy": null, - "poorhouse": [["M", "S"]], - "poorhouse's": null, - "poorhouses": null, - "poorness": [["M", "S"]], - "poorness's": null, - "poornesses": null, - "poor": [["T", "Y", "R", "P"]], - "poorest": null, - "poorly": null, - "poorer": null, - "popcorn": [["M", "S"]], - "popcorn's": null, - "popcorns": null, - "Popek": [["M", "S"]], - "Popek's": null, - "Popeks": null, - "pope": [["S", "M"]], - "popes": null, - "pope's": null, - "Pope": [["S", "M"]], - "Popes": null, - "Pope's": null, - "Popeye": [["M"]], - "Popeye's": null, - "popgun": [["S", "M"]], - "popguns": null, - "popgun's": null, - "popinjay": [["M", "S"]], - "popinjay's": null, - "popinjays": null, - "poplar": [["S", "M"]], - "poplars": null, - "poplar's": null, - "poplin": [["M", "S"]], - "poplin's": null, - "poplins": null, - "Popocatepetl": [["M"]], - "Popocatepetl's": null, - "popover": [["S", "M"]], - "popovers": null, - "popover's": null, - "poppa": [["M", "S"]], - "poppa's": null, - "poppas": null, - "popped": null, - "Popper": [["M"]], - "Popper's": null, - "popper": [["S", "M"]], - "poppers": null, - "popper's": null, - "poppet": [["M"]], - "poppet's": null, - "popping": null, - "Poppins": [["M"]], - "Poppins's": null, - "poppycock": [["M", "S"]], - "poppycock's": null, - "poppycocks": null, - "Poppy": [["M"]], - "Poppy's": null, - "poppy": [["S", "D", "M"]], - "poppies": null, - "poppied": null, - "poppy's": null, - "poppyseed": null, - "Popsicle": [["M", "S"]], - "Popsicle's": null, - "Popsicles": null, - "pop": [["S", "M"]], - "pops": null, - "pop's": null, - "populace": [["M", "S"]], - "populace's": null, - "populaces": null, - "popularism": null, - "popularity": [["U", "M", "S"]], - "unpopularity": null, - "unpopularity's": null, - "unpopularities": null, - "popularity's": null, - "popularities": null, - "popularization": [["S", "M"]], - "popularizations": null, - "popularization's": null, - "popularize": [["A"]], - "repopularize": null, - "popularized": null, - "popularizer": [["M", "S"]], - "popularizer's": null, - "popularizers": null, - "popularizes": [["U"]], - "unpopularizes": null, - "popularizing": null, - "popular": [["Y", "S"]], - "popularly": null, - "populars": null, - "populate": [["C", "X", "N", "G", "D", "S"]], - "depopulate": null, - "depopulations": null, - "depopulation": null, - "depopulating": null, - "depopulated": null, - "depopulates": null, - "populations": null, - "population": [["M", "C"]], - "populating": [["A"]], - "populated": [["U", "A"]], - "populates": [["A"]], - "unpopulated": null, - "repopulated": null, - "repopulates": null, - "repopulating": null, - "population's": null, - "depopulation's": null, - "populism": [["S"]], - "populisms": null, - "populist": [["S", "M"]], - "populists": null, - "populist's": null, - "populousness": [["M", "S"]], - "populousness's": null, - "populousnesses": null, - "populous": [["Y", "P"]], - "populously": null, - "porcelain": [["S", "M"]], - "porcelains": null, - "porcelain's": null, - "porch": [["S", "M"]], - "porches": null, - "porch's": null, - "porcine": null, - "porcupine": [["M", "S"]], - "porcupine's": null, - "porcupines": null, - "pore": [["Z", "G", "D", "R", "S"]], - "porers": null, - "poring": [["Y"]], - "pored": null, - "porer": null, - "pores": null, - "Porfirio": [["M"]], - "Porfirio's": null, - "porgy": [["S", "M"]], - "porgies": null, - "porgy's": null, - "poringly": null, - "porker": [["M"]], - "porker's": null, - "porky": [["T", "S", "R"]], - "porkiest": null, - "porkies": null, - "porkier": null, - "pork": [["Z", "R", "M", "S"]], - "porkers": null, - "pork's": null, - "porks": null, - "pornographer": [["S", "M"]], - "pornographers": null, - "pornographer's": null, - "pornographic": null, - "pornographically": null, - "pornography": [["S", "M"]], - "pornographies": null, - "pornography's": null, - "porno": [["S"]], - "pornos": null, - "porn": [["S"]], - "porns": null, - "porosity": [["S", "M"]], - "porosities": null, - "porosity's": null, - "porousness": [["M", "S"]], - "porousness's": null, - "porousnesses": null, - "porous": [["P", "Y"]], - "porously": null, - "porphyritic": null, - "porphyry": [["M", "S"]], - "porphyry's": null, - "porphyries": null, - "porpoise": [["D", "S", "G", "M"]], - "porpoised": null, - "porpoises": null, - "porpoising": null, - "porpoise's": null, - "porridge": [["M", "S"]], - "porridge's": null, - "porridges": null, - "Porrima": [["M"]], - "Porrima's": null, - "porringer": [["M", "S"]], - "porringer's": null, - "porringers": null, - "Porsche": [["M"]], - "Porsche's": null, - "portability": [["S"]], - "portabilities": null, - "portables": null, - "portable": [["U"]], - "unportable": null, - "portably": null, - "port": [["A", "B", "S", "G", "Z", "M", "R", "D"]], - "report": null, - "reportable": null, - "reports": null, - "reporting": null, - "reporters": null, - "report's": null, - "reporter": null, - "reported": [["Y"]], - "ports": [["C", "E"]], - "porting": [["E"]], - "porters": null, - "port's": null, - "porter": [["D", "M", "G"]], - "ported": [["C", "E"]], - "portage": [["A", "S", "M"]], - "reportage": null, - "reportages": null, - "reportage's": null, - "portages": null, - "portage's": null, - "portaged": null, - "portaging": null, - "portal": [["S", "M"]], - "portals": null, - "portal's": null, - "portamento": [["M"]], - "portamento's": null, - "portcullis": [["M", "S"]], - "portcullis's": null, - "portcullises": null, - "deported": null, - "disported": null, - "Porte": [["M"]], - "Porte's": null, - "portend": [["S", "D", "G"]], - "portends": null, - "portended": null, - "portending": null, - "portentousness": [["M"]], - "portentousness's": null, - "portentous": [["P", "Y"]], - "portentously": null, - "portent": [["S", "M"]], - "portents": null, - "portent's": null, - "porterage": [["M"]], - "porterage's": null, - "portered": null, - "porter's": [["A"]], - "portering": null, - "porterhouse": [["S", "M"]], - "porterhouses": null, - "porterhouse's": null, - "Porter": [["M"]], - "Porter's": null, - "reporter's": null, - "portfolio": [["M", "S"]], - "portfolio's": null, - "portfolios": null, - "porthole": [["S", "M"]], - "portholes": null, - "porthole's": null, - "Portia": [["M"]], - "Portia's": null, - "porticoes": null, - "portico": [["M"]], - "portico's": null, - "Portie": [["M"]], - "Portie's": null, - "porti�re": [["S", "M"]], - "porti�res": null, - "porti�re's": null, - "disporting": null, - "portion": [["K", "G", "S", "M", "D"]], - "proportion": [["E", "S", "G", "D", "M"]], - "proportioning": null, - "proportions": null, - "proportion's": null, - "proportioned": null, - "portioning": null, - "portions": null, - "portion's": null, - "portioned": null, - "Portland": [["M"]], - "Portland's": null, - "portliness": [["S", "M"]], - "portlinesses": null, - "portliness's": null, - "portly": [["P", "T", "R"]], - "portliest": null, - "portlier": null, - "portmanteau": [["S", "M"]], - "portmanteaus": null, - "portmanteau's": null, - "Port": [["M", "R"]], - "Port's": null, - "P�rto": [["M"]], - "P�rto's": null, - "portraitist": [["S", "M"]], - "portraitists": null, - "portraitist's": null, - "portrait": [["M", "S"]], - "portrait's": null, - "portraits": null, - "portraiture": [["M", "S"]], - "portraiture's": null, - "portraitures": null, - "portrayal": [["S", "M"]], - "portrayals": null, - "portrayal's": null, - "portrayer": [["M"]], - "portrayer's": null, - "portray": [["G", "D", "R", "S"]], - "portraying": null, - "portrayed": null, - "portrays": null, - "deports": null, - "disports": null, - "Portsmouth": [["M"]], - "Portsmouth's": null, - "Portugal": [["M"]], - "Portugal's": null, - "Portuguese": [["M"]], - "Portuguese's": null, - "portulaca": [["M", "S"]], - "portulaca's": null, - "portulacas": null, - "Porty": [["M"]], - "Porty's": null, - "posed": [["C", "A"]], - "deposed": null, - "reposed": null, - "Poseidon": [["M"]], - "Poseidon's": null, - "poser": [["K", "M", "E"]], - "proposer": null, - "proposer's": null, - "poser's": null, - "disposer's": null, - "disposer": null, - "poses": [["C", "A"]], - "deposes": null, - "reposes": null, - "poseur": [["M", "S"]], - "poseur's": null, - "poseurs": null, - "pose": [["Z", "G", "K", "D", "R", "S", "E"]], - "posers": null, - "proposers": null, - "disposers": null, - "posing": [["C", "A"]], - "proposing": null, - "propose": null, - "proposed": null, - "proposes": null, - "posh": [["D", "S", "R", "G", "T"]], - "poshed": null, - "poshes": null, - "posher": null, - "poshing": null, - "poshest": null, - "deposing": null, - "reposing": null, - "positifs": null, - "positionable": null, - "positional": [["K", "Y"]], - "propositional": null, - "propositionally": null, - "positionally": null, - "position": [["K", "G", "A", "S", "M", "D"]], - "proposition": null, - "propositioning": null, - "propositions": null, - "proposition's": null, - "propositioned": null, - "positioning": null, - "repositioning": null, - "reposition": null, - "repositions": null, - "reposition's": null, - "repositioned": null, - "positions": [["E", "C"]], - "position's": [["E", "C"]], - "positioned": null, - "deposition's": null, - "depositions": null, - "positiveness": [["S"]], - "positivenesses": null, - "positive": [["R", "S", "P", "Y", "T"]], - "positiver": null, - "positives": null, - "positively": null, - "positivest": null, - "positivism": [["M"]], - "positivism's": null, - "positivist": [["S"]], - "positivists": null, - "positivity": null, - "positron": [["S", "M"]], - "positrons": null, - "positron's": null, - "posit": [["S", "C", "G", "D"]], - "posits": null, - "positing": null, - "posited": null, - "Posner": [["M"]], - "Posner's": null, - "posse": [["M"]], - "posse's": null, - "possess": [["A", "G", "E", "D", "S"]], - "repossess": null, - "repossessing": null, - "repossessed": null, - "repossesses": null, - "possessing": null, - "dispossessing": null, - "dispossess": null, - "dispossessed": null, - "dispossesses": null, - "possessed": [["P", "Y"]], - "possesses": null, - "possessedness": null, - "possessedly": null, - "possession": [["A", "E", "M", "S"]], - "repossession": null, - "repossession's": null, - "repossessions": null, - "dispossession": null, - "dispossession's": null, - "dispossessions": null, - "possession's": null, - "possessions": null, - "possessional": null, - "possessiveness": [["M", "S"]], - "possessiveness's": null, - "possessivenesses": null, - "possessive": [["P", "S", "M", "Y"]], - "possessives": null, - "possessive's": null, - "possessively": null, - "possessor": [["M", "S"]], - "possessor's": null, - "possessors": null, - "possibility": [["S", "M"]], - "possibilities": null, - "possibility's": null, - "possible": [["T", "R", "S"]], - "possiblest": null, - "possibler": null, - "possibles": null, - "possibly": null, - "poss": [["S"]], - "posses": null, - "possum": [["M", "S"]], - "possum's": null, - "possums": null, - "postage": [["M", "S"]], - "postage's": null, - "postages": null, - "postal": [["S"]], - "postals": null, - "post": [["A", "S", "D", "R", "J", "G"]], - "repost": null, - "reposts": null, - "reposted": null, - "reposter": null, - "repostings": null, - "reposting": null, - "posts": null, - "posted": null, - "poster": [["M", "S"]], - "postings": null, - "posting": [["M"]], - "postbag": [["M"]], - "postbag's": null, - "postbox": [["S", "M"]], - "postboxes": null, - "postbox's": null, - "postcard": [["S", "M"]], - "postcards": null, - "postcard's": null, - "postcode": [["S", "M"]], - "postcodes": null, - "postcode's": null, - "postcondition": [["S"]], - "postconditions": null, - "postconsonantal": null, - "postdate": [["D", "S", "G"]], - "postdated": null, - "postdates": null, - "postdating": null, - "postdoctoral": null, - "posteriori": null, - "posterior": [["S", "Y"]], - "posteriors": null, - "posteriorly": null, - "posterity": [["S", "M"]], - "posterities": null, - "posterity's": null, - "poster's": null, - "posters": null, - "postfix": [["G", "D", "S"]], - "postfixing": null, - "postfixed": null, - "postfixes": null, - "postgraduate": [["S", "M"]], - "postgraduates": null, - "postgraduate's": null, - "posthaste": [["S"]], - "posthastes": null, - "posthumousness": [["M"]], - "posthumousness's": null, - "posthumous": [["Y", "P"]], - "posthumously": null, - "posthypnotic": null, - "postilion": [["M", "S"]], - "postilion's": null, - "postilions": null, - "postindustrial": null, - "posting's": null, - "postlude": [["M", "S"]], - "postlude's": null, - "postludes": null, - "Post": [["M"]], - "Post's": null, - "postman": [["M"]], - "postman's": null, - "postmarital": null, - "postmark": [["G", "S", "M", "D"]], - "postmarking": null, - "postmarks": null, - "postmark's": null, - "postmarked": null, - "postmaster": [["S", "M"]], - "postmasters": null, - "postmaster's": null, - "postmen": null, - "postmeridian": null, - "postmistress": [["M", "S"]], - "postmistress's": null, - "postmistresses": null, - "postmodern": null, - "postmodernist": null, - "postmortem": [["S"]], - "postmortems": null, - "postnasal": null, - "postnatal": null, - "postoperative": [["Y"]], - "postoperatively": null, - "postorder": null, - "postpaid": null, - "postpartum": null, - "postpone": [["G", "L", "D", "R", "S"]], - "postponing": null, - "postponement": [["S"]], - "postponed": null, - "postponer": null, - "postpones": null, - "postponements": null, - "postpositions": null, - "postprandial": null, - "post's": null, - "postscript": [["S", "M"]], - "postscripts": null, - "postscript's": null, - "postsecondary": null, - "postulate": [["X", "G", "N", "S", "D"]], - "postulations": null, - "postulating": null, - "postulation": [["M"]], - "postulates": null, - "postulated": null, - "postulation's": null, - "postural": null, - "posture": [["M", "G", "S", "R", "D"]], - "posture's": null, - "posturing": null, - "postures": null, - "posturer": [["M"]], - "postured": null, - "posturer's": null, - "postvocalic": null, - "postwar": null, - "posy": [["S", "M"]], - "posies": null, - "posy's": null, - "potability": [["S", "M"]], - "potabilities": null, - "potability's": null, - "potableness": [["M"]], - "potableness's": null, - "potable": [["S", "P"]], - "potables": null, - "potage": [["M"]], - "potage's": null, - "potash": [["M", "S"]], - "potash's": null, - "potashes": null, - "potassium": [["M", "S"]], - "potassium's": null, - "potassiums": null, - "potatoes": null, - "potato": [["M"]], - "potato's": null, - "potbelly": [["M", "S", "D"]], - "potbelly's": null, - "potbellies": null, - "potbellied": null, - "potboiler": [["M"]], - "potboiler's": null, - "potboil": [["Z", "R"]], - "potboilers": null, - "pot": [["C", "M", "S"]], - "depot": null, - "depot's": null, - "depots": null, - "pot's": null, - "pots": null, - "Potemkin": [["M"]], - "Potemkin's": null, - "potency": [["M", "S"]], - "potency's": null, - "potencies": null, - "potentate": [["S", "M"]], - "potentates": null, - "potentate's": null, - "potentiality": [["M", "S"]], - "potentiality's": null, - "potentialities": null, - "potential": [["S", "Y"]], - "potentials": null, - "potentially": null, - "potentiating": null, - "potentiometer": [["S", "M"]], - "potentiometers": null, - "potentiometer's": null, - "potent": [["Y", "S"]], - "potently": null, - "potents": null, - "potful": [["S", "M"]], - "potfuls": null, - "potful's": null, - "pothead": [["M", "S"]], - "pothead's": null, - "potheads": null, - "potherb": [["M", "S"]], - "potherb's": null, - "potherbs": null, - "pother": [["G", "D", "M", "S"]], - "pothering": null, - "pothered": null, - "pother's": null, - "pothers": null, - "potholder": [["M", "S"]], - "potholder's": null, - "potholders": null, - "pothole": [["S", "D", "M", "G"]], - "potholes": null, - "potholed": null, - "pothole's": null, - "potholing": [["M"]], - "potholing's": null, - "pothook": [["S", "M"]], - "pothooks": null, - "pothook's": null, - "potion": [["S", "M"]], - "potions": null, - "potion's": null, - "potlatch": [["S", "M"]], - "potlatches": null, - "potlatch's": null, - "potluck": [["M", "S"]], - "potluck's": null, - "potlucks": null, - "Potomac": [["M"]], - "Potomac's": null, - "potpie": [["S", "M"]], - "potpies": null, - "potpie's": null, - "potpourri": [["S", "M"]], - "potpourris": null, - "potpourri's": null, - "Potsdam": [["M"]], - "Potsdam's": null, - "potsherd": [["M", "S"]], - "potsherd's": null, - "potsherds": null, - "potshot": [["S"]], - "potshots": null, - "pottage": [["S", "M"]], - "pottages": null, - "pottage's": null, - "Pottawatomie": [["M"]], - "Pottawatomie's": null, - "potted": null, - "Potter": [["M"]], - "Potter's": null, - "potter": [["R", "D", "M", "S", "G"]], - "potterer": null, - "pottered": null, - "potter's": null, - "potters": null, - "pottering": null, - "pottery": [["M", "S"]], - "pottery's": null, - "potteries": null, - "potting": null, - "Potts": [["M"]], - "Potts's": null, - "potty": [["S", "R", "T"]], - "potties": null, - "pottier": null, - "pottiest": null, - "pouch": [["S", "D", "M", "G"]], - "pouches": null, - "pouched": null, - "pouch's": null, - "pouching": null, - "Poughkeepsie": [["M"]], - "Poughkeepsie's": null, - "Poul": [["M"]], - "Poul's": null, - "poulterer": [["M", "S"]], - "poulterer's": null, - "poulterers": null, - "poultice": [["D", "S", "M", "G"]], - "poulticed": null, - "poultices": null, - "poultice's": null, - "poulticing": null, - "poultry": [["M", "S"]], - "poultry's": null, - "poultries": null, - "pounce": [["S", "D", "G"]], - "pounces": null, - "pounced": null, - "pouncing": null, - "poundage": [["M", "S"]], - "poundage's": null, - "poundages": null, - "pounder": [["M", "S"]], - "pounder's": null, - "pounders": null, - "pound": [["K", "R", "D", "G", "S"]], - "propound": null, - "propounder": null, - "propounded": null, - "propounding": null, - "propounds": null, - "pounded": null, - "pounding": null, - "pounds": null, - "Pound": [["M"]], - "Pound's": null, - "pour": [["D", "S", "G"]], - "poured": null, - "pours": null, - "pouring": null, - "pourer's": null, - "Poussin": [["M", "S"]], - "Poussin's": null, - "Poussins": null, - "pouter": [["M"]], - "pouter's": null, - "pout": [["G", "Z", "D", "R", "S"]], - "pouting": null, - "pouters": null, - "pouted": null, - "pouts": null, - "poverty": [["M", "S"]], - "poverty's": null, - "poverties": null, - "POW": null, - "powderpuff": null, - "powder": [["R", "D", "G", "M", "S"]], - "powderer": null, - "powdered": null, - "powdering": null, - "powder's": null, - "powders": null, - "powdery": null, - "Powell": [["M"]], - "Powell's": null, - "powerboat": [["M", "S"]], - "powerboat's": null, - "powerboats": null, - "powerfulness": [["M"]], - "powerfulness's": null, - "powerful": [["Y", "P"]], - "powerfully": null, - "power": [["G", "M", "D"]], - "powering": null, - "power's": null, - "powered": null, - "powerhouse": [["M", "S"]], - "powerhouse's": null, - "powerhouses": null, - "powerlessness": [["S", "M"]], - "powerlessnesses": null, - "powerlessness's": null, - "powerless": [["Y", "P"]], - "powerlessly": null, - "Powers": null, - "Powhatan": [["M"]], - "Powhatan's": null, - "pow": [["R", "Z"]], - "powers": null, - "powwow": [["G", "D", "M", "S"]], - "powwowing": null, - "powwowed": null, - "powwow's": null, - "powwows": null, - "pox": [["G", "M", "D", "S"]], - "poxing": null, - "pox's": null, - "poxed": null, - "poxes": null, - "Poznan": [["M"]], - "Poznan's": null, - "pp": null, - "PP": null, - "ppm": null, - "ppr": null, - "PPS": null, - "pr": null, - "PR": null, - "practicability": [["S"]], - "practicabilities": null, - "practicable": [["P"]], - "practicableness": null, - "practicably": null, - "practicality": [["S", "M"]], - "practicalities": null, - "practicality's": null, - "practicalness": [["M"]], - "practicalness's": null, - "practical": [["Y", "P", "S"]], - "practically": null, - "practicals": null, - "practice": [["B", "D", "R", "S", "M", "G"]], - "practiced": [["U"]], - "practicer": [["M"]], - "practices": null, - "practice's": null, - "practicing": null, - "unpracticed": null, - "practicer's": null, - "practicum": [["S", "M"]], - "practicums": null, - "practicum's": null, - "practitioner": [["S", "M"]], - "practitioners": null, - "practitioner's": null, - "Pradesh": [["M"]], - "Pradesh's": null, - "Prado": [["M"]], - "Prado's": null, - "Praetorian": null, - "praetorian": [["S"]], - "praetorians": null, - "praetor": [["M", "S"]], - "praetor's": null, - "praetors": null, - "pragmatical": [["Y"]], - "pragmatically": null, - "pragmatic": [["S"]], - "pragmatics": [["M"]], - "pragmatics's": null, - "pragmatism": [["M", "S"]], - "pragmatism's": null, - "pragmatisms": null, - "pragmatist": [["M", "S"]], - "pragmatist's": null, - "pragmatists": null, - "Prague": [["M"]], - "Prague's": null, - "Praia": null, - "prairie": [["M", "S"]], - "prairie's": null, - "prairies": null, - "praise": [["E", "S", "D", "G"]], - "dispraise": null, - "dispraises": null, - "dispraised": null, - "dispraising": null, - "praises": null, - "praised": null, - "praising": [["Y"]], - "praiser": [["S"]], - "praisers": null, - "praise's": null, - "praiseworthiness": [["M", "S"]], - "praiseworthiness's": null, - "praiseworthinesses": null, - "praiseworthy": [["P"]], - "praisingly": null, - "Prakrit": [["M"]], - "Prakrit's": null, - "praline": [["M", "S"]], - "praline's": null, - "pralines": null, - "pram": [["M", "S"]], - "pram's": null, - "prams": null, - "prancer": [["M"]], - "prancer's": null, - "prance": [["Z", "G", "S", "R", "D"]], - "prancers": null, - "prancing": [["Y"]], - "prances": null, - "pranced": null, - "prancingly": null, - "prank": [["S", "M", "D", "G"]], - "pranks": null, - "prank's": null, - "pranked": null, - "pranking": null, - "prankster": [["S", "M"]], - "pranksters": null, - "prankster's": null, - "praseodymium": [["S", "M"]], - "praseodymiums": null, - "praseodymium's": null, - "Pratchett": [["M"]], - "Pratchett's": null, - "prate": [["D", "S", "R", "G", "Z"]], - "prated": null, - "prates": null, - "prater": [["M"]], - "prating": [["Y"]], - "praters": null, - "prater's": null, - "pratfall": [["M", "S"]], - "pratfall's": null, - "pratfalls": null, - "pratingly": null, - "prattle": [["D", "R", "S", "G", "Z"]], - "prattled": null, - "prattler": [["M"]], - "prattles": null, - "prattling": [["Y"]], - "prattlers": null, - "prattler's": null, - "prattlingly": null, - "Pratt": [["M"]], - "Pratt's": null, - "Prattville": [["M"]], - "Prattville's": null, - "Pravda": [["M"]], - "Pravda's": null, - "prawn": [["M", "D", "S", "G"]], - "prawn's": null, - "prawned": null, - "prawns": null, - "prawning": null, - "praxes": null, - "praxis": [["M"]], - "praxis's": null, - "Praxiteles": [["M"]], - "Praxiteles's": null, - "pray": [["D", "R", "G", "Z", "S"]], - "prayed": null, - "prayer": [["M"]], - "praying": null, - "prayers": null, - "prays": null, - "prayerbook": null, - "prayerfulness": [["M"]], - "prayerfulness's": null, - "prayerful": [["Y", "P"]], - "prayerfully": null, - "prayer's": null, - "PRC": null, - "preach": [["D", "R", "S", "G", "L", "Z", "J"]], - "preached": null, - "preacher": [["M"]], - "preaches": null, - "preaching": [["Y"]], - "preachment": [["M", "S"]], - "preachers": null, - "preachings": null, - "preacher's": null, - "preachingly": null, - "preachment's": null, - "preachments": null, - "preachy": [["R", "T"]], - "preachier": null, - "preachiest": null, - "preadolescence": [["S"]], - "preadolescences": null, - "Preakness": [["M"]], - "Preakness's": null, - "preallocate": [["X", "G", "N", "D", "S"]], - "preallocations": null, - "preallocating": null, - "preallocation": [["M"]], - "preallocated": null, - "preallocates": null, - "preallocation's": null, - "preallocator": [["S"]], - "preallocators": null, - "preamble": [["M", "G", "D", "S"]], - "preamble's": null, - "preambling": null, - "preambled": null, - "preambles": null, - "preamp": null, - "preamplifier": [["M"]], - "preamplifier's": null, - "prearrange": [["L", "S", "D", "G"]], - "prearrangement": [["S", "M"]], - "prearranges": null, - "prearranged": null, - "prearranging": null, - "prearrangements": null, - "prearrangement's": null, - "preassign": [["S", "D", "G"]], - "preassigns": null, - "preassigned": null, - "preassigning": null, - "preauthorize": null, - "prebendary": [["M"]], - "prebendary's": null, - "Precambrian": null, - "precancel": [["D", "G", "S"]], - "precanceled": null, - "precanceling": null, - "precancels": null, - "precancerous": null, - "precariousness": [["M", "S"]], - "precariousness's": null, - "precariousnesses": null, - "precarious": [["P", "Y"]], - "precariously": null, - "precautionary": null, - "precaution": [["S", "G", "D", "M"]], - "precautions": null, - "precautioning": null, - "precautioned": null, - "precaution's": null, - "precede": [["D", "S", "G"]], - "preceded": null, - "precedes": null, - "preceding": null, - "precedence": [["S", "M"]], - "precedences": null, - "precedence's": null, - "precedented": [["U"]], - "unprecedented": [["Y"]], - "precedent": [["S", "D", "M"]], - "precedents": null, - "precedent's": null, - "preceptive": [["Y"]], - "preceptively": null, - "preceptor": [["M", "S"]], - "preceptor's": null, - "preceptors": null, - "precept": [["S", "M", "V"]], - "precepts": null, - "precept's": null, - "precess": [["D", "S", "G"]], - "precessed": null, - "precesses": null, - "precessing": null, - "precession": [["M"]], - "precession's": null, - "precinct": [["M", "S"]], - "precinct's": null, - "precincts": null, - "preciosity": [["M", "S"]], - "preciosity's": null, - "preciosities": null, - "preciousness": [["S"]], - "preciousnesses": null, - "precious": [["P", "Y", "S"]], - "preciously": null, - "preciouses": null, - "precipice": [["M", "S"]], - "precipice's": null, - "precipices": null, - "precipitable": null, - "precipitant": [["S"]], - "precipitants": null, - "precipitateness": [["M"]], - "precipitateness's": null, - "precipitate": [["Y", "N", "G", "V", "P", "D", "S", "X"]], - "precipitately": null, - "precipitation": [["M"]], - "precipitating": null, - "precipitative": null, - "precipitated": null, - "precipitates": null, - "precipitations": null, - "precipitation's": null, - "precipitousness": [["M"]], - "precipitousness's": null, - "precipitous": [["Y", "P"]], - "precipitously": null, - "preciseness": [["S", "M"]], - "precisenesses": null, - "preciseness's": null, - "precise": [["X", "Y", "T", "R", "S", "P", "N"]], - "precisions": null, - "precisely": null, - "precisest": null, - "preciser": null, - "precises": null, - "precision": [["M"]], - "precision's": null, - "pr�cis": [["M", "D", "G"]], - "pr�cis's": null, - "pr�cised": null, - "pr�cising": null, - "preclude": [["G", "D", "S"]], - "precluding": null, - "precluded": null, - "precludes": null, - "preclusion": [["S"]], - "preclusions": null, - "precociousness": [["M", "S"]], - "precociousness's": null, - "precociousnesses": null, - "precocious": [["Y", "P"]], - "precociously": null, - "precocity": [["S", "M"]], - "precocities": null, - "precocity's": null, - "precode": [["D"]], - "precoded": null, - "precognition": [["S", "M"]], - "precognitions": null, - "precognition's": null, - "precognitive": null, - "precollege": [["M"]], - "precollege's": null, - "precolonial": null, - "precomputed": null, - "preconceive": [["G", "S", "D"]], - "preconceiving": null, - "preconceives": null, - "preconceived": null, - "preconception": [["S", "M"]], - "preconceptions": null, - "preconception's": null, - "precondition": [["G", "M", "D", "S"]], - "preconditioning": null, - "precondition's": null, - "preconditioned": null, - "preconditions": null, - "preconscious": null, - "precook": [["G", "D", "S"]], - "precooking": null, - "precooked": null, - "precooks": null, - "precursor": [["S", "M"]], - "precursors": null, - "precursor's": null, - "precursory": null, - "precut": null, - "predate": [["N", "G", "D", "S", "X"]], - "predation": [["C", "M", "S"]], - "predating": null, - "predated": null, - "predates": null, - "predations": null, - "depredation": null, - "depredation's": null, - "depredations": null, - "predation's": null, - "predator": [["S", "M"]], - "predators": null, - "predator's": null, - "predatory": null, - "predecease": [["S", "D", "G"]], - "predeceases": null, - "predeceased": null, - "predeceasing": null, - "predecessor": [["M", "S"]], - "predecessor's": null, - "predecessors": null, - "predeclared": null, - "predecline": null, - "predefine": [["G", "S", "D"]], - "predefining": null, - "predefines": null, - "predefined": null, - "predefinition": [["S", "M"]], - "predefinitions": null, - "predefinition's": null, - "predesignate": [["G", "D", "S"]], - "predesignating": null, - "predesignated": null, - "predesignates": null, - "predestination": [["S", "M"]], - "predestinations": null, - "predestination's": null, - "predestine": [["S", "D", "G"]], - "predestines": null, - "predestined": null, - "predestining": null, - "predetermination": [["M", "S"]], - "predetermination's": null, - "predeterminations": null, - "predeterminer": [["M"]], - "predeterminer's": null, - "predetermine": [["Z", "G", "S", "R", "D"]], - "predeterminers": null, - "predetermining": null, - "predetermines": null, - "predetermined": null, - "predicable": [["S"]], - "predicables": null, - "predicament": [["S", "M"]], - "predicaments": null, - "predicament's": null, - "predicate": [["V", "G", "N", "X", "S", "D"]], - "predicative": null, - "predicating": null, - "predication": [["M"]], - "predications": null, - "predicates": null, - "predicated": null, - "predication's": null, - "predicator": null, - "predictability": [["U", "M", "S"]], - "unpredictability": null, - "unpredictability's": null, - "unpredictabilities": null, - "predictability's": null, - "predictabilities": null, - "predictable": [["U"]], - "unpredictable": [["S"]], - "predictably": [["U"]], - "unpredictably": null, - "predict": [["B", "S", "D", "G", "V"]], - "predicts": null, - "predicted": [["U"]], - "predicting": null, - "predictive": [["Y"]], - "unpredicted": null, - "prediction": [["M", "S"]], - "prediction's": null, - "predictions": null, - "predictively": null, - "predictor": [["M", "S"]], - "predictor's": null, - "predictors": null, - "predigest": [["G", "D", "S"]], - "predigesting": null, - "predigested": null, - "predigests": null, - "predilect": null, - "predilection": [["S", "M"]], - "predilections": null, - "predilection's": null, - "predispose": [["S", "D", "G"]], - "predisposes": null, - "predisposed": null, - "predisposing": null, - "predisposition": [["M", "S"]], - "predisposition's": null, - "predispositions": null, - "predoctoral": null, - "predominance": [["S", "M"]], - "predominances": null, - "predominance's": null, - "predominant": [["Y"]], - "predominantly": null, - "predominate": [["Y", "S", "D", "G", "N"]], - "predominately": null, - "predominates": null, - "predominated": null, - "predominating": null, - "predomination": [["M"]], - "predomination's": null, - "preemie": [["M", "S"]], - "preemie's": null, - "preemies": null, - "preeminence": [["S", "M"]], - "preeminences": null, - "preeminence's": null, - "preeminent": [["Y"]], - "preeminently": null, - "preemployment": [["M"]], - "preemployment's": null, - "preempt": [["G", "V", "S", "D"]], - "preempting": null, - "preemptive": [["Y"]], - "preempts": null, - "preempted": null, - "preemption": [["S", "M"]], - "preemptions": null, - "preemption's": null, - "preemptively": null, - "preemptor": [["M"]], - "preemptor's": null, - "preener": [["M"]], - "preener's": null, - "preen": [["S", "R", "D", "G"]], - "preens": null, - "preened": null, - "preening": null, - "preexist": [["D", "S", "G"]], - "preexisted": null, - "preexists": null, - "preexisting": null, - "preexistence": [["S", "M"]], - "preexistences": null, - "preexistence's": null, - "preexistent": null, - "prefabbed": null, - "prefabbing": null, - "prefab": [["M", "S"]], - "prefab's": null, - "prefabs": null, - "prefabricate": [["X", "N", "G", "D", "S"]], - "prefabrications": null, - "prefabrication": [["M"]], - "prefabricating": null, - "prefabricated": null, - "prefabricates": null, - "prefabrication's": null, - "preface": [["D", "R", "S", "G", "M"]], - "prefaced": null, - "prefacer": [["M"]], - "prefaces": null, - "prefacing": null, - "preface's": null, - "prefacer's": null, - "prefatory": null, - "prefect": [["M", "S"]], - "prefect's": null, - "prefects": null, - "prefecture": [["M", "S"]], - "prefecture's": null, - "prefectures": null, - "preferableness": [["M"]], - "preferableness's": null, - "preferable": [["P"]], - "preferably": null, - "prefer": [["B", "L"]], - "preferment": [["S", "M"]], - "preference": [["M", "S"]], - "preference's": null, - "preferences": null, - "preferential": [["Y"]], - "preferentially": null, - "preferments": null, - "preferment's": null, - "preferred": null, - "preferring": null, - "prefiguration": [["M"]], - "prefiguration's": null, - "prefigure": [["S", "D", "G"]], - "prefigures": null, - "prefigured": null, - "prefiguring": null, - "prefix": [["M", "D", "S", "G"]], - "prefix's": null, - "prefixed": null, - "prefixes": null, - "prefixing": null, - "preflight": [["S", "G", "D", "M"]], - "preflights": null, - "preflighting": null, - "preflighted": null, - "preflight's": null, - "preform": [["D", "S", "G"]], - "preformed": null, - "preforms": null, - "preforming": null, - "pref": [["R", "Z"]], - "prefers": null, - "pregnancy": [["S", "M"]], - "pregnancies": null, - "pregnancy's": null, - "pregnant": [["Y"]], - "pregnantly": null, - "preheat": [["G", "D", "S"]], - "preheating": null, - "preheated": null, - "preheats": null, - "prehensile": null, - "prehistoric": null, - "prehistorical": [["Y"]], - "prehistorically": null, - "prehistory": [["S", "M"]], - "prehistories": null, - "prehistory's": null, - "preindustrial": null, - "preinitialize": [["S", "D", "G"]], - "preinitializes": null, - "preinitialized": null, - "preinitializing": null, - "preinterview": [["M"]], - "preinterview's": null, - "preisolated": null, - "prejudge": [["D", "R", "S", "G"]], - "prejudged": null, - "prejudger": [["M"]], - "prejudges": null, - "prejudging": null, - "prejudger's": null, - "prejudgment": [["S", "M"]], - "prejudgments": null, - "prejudgment's": null, - "prejudiced": [["U"]], - "unprejudiced": null, - "prejudice": [["M", "S", "D", "G"]], - "prejudice's": null, - "prejudices": null, - "prejudicing": null, - "prejudicial": [["P", "Y"]], - "prejudicialness": null, - "prejudicially": null, - "prekindergarten": [["M", "S"]], - "prekindergarten's": null, - "prekindergartens": null, - "prelacy": [["M", "S"]], - "prelacy's": null, - "prelacies": null, - "prelate": [["S", "M"]], - "prelates": null, - "prelate's": null, - "preliminarily": null, - "preliminary": [["S"]], - "preliminaries": null, - "preliterate": [["S"]], - "preliterates": null, - "preloaded": null, - "prelude": [["G", "M", "D", "R", "S"]], - "preluding": null, - "prelude's": null, - "preluded": null, - "preluder": [["M"]], - "preludes": null, - "preluder's": null, - "premarital": [["Y"]], - "premaritally": null, - "premarket": null, - "prematureness": [["M"]], - "prematureness's": null, - "premature": [["S", "P", "Y"]], - "prematures": null, - "prematurely": null, - "prematurity": [["M"]], - "prematurity's": null, - "premedical": null, - "premeditated": [["Y"]], - "premeditatedly": null, - "premeditate": [["X", "D", "S", "G", "N", "V"]], - "premeditations": null, - "premeditates": null, - "premeditating": null, - "premeditation": [["M"]], - "premeditative": null, - "premeditation's": null, - "premed": [["S"]], - "premeds": null, - "premenstrual": null, - "premiere": [["M", "S"]], - "premiere's": null, - "premieres": null, - "premier": [["G", "S", "D", "M"]], - "premiering": null, - "premiers": null, - "premiered": null, - "premier's": null, - "premiership": [["S", "M"]], - "premierships": null, - "premiership's": null, - "Preminger": [["M"]], - "Preminger's": null, - "premise": [["G", "M", "D", "S"]], - "premising": null, - "premise's": null, - "premised": null, - "premises": null, - "premiss's": null, - "premium": [["M", "S"]], - "premium's": null, - "premiums": null, - "premix": [["G", "D", "S"]], - "premixing": null, - "premixed": null, - "premixes": null, - "premolar": [["S"]], - "premolars": null, - "premonition": [["S", "M"]], - "premonitions": null, - "premonition's": null, - "premonitory": null, - "prenatal": [["Y"]], - "prenatally": null, - "Pren": [["M"]], - "Pren's": null, - "Prenticed": [["M"]], - "Prenticed's": null, - "Prentice": [["M", "G", "D"]], - "Prentice's": null, - "Prenticing": [["M"]], - "Prenticing's": null, - "Prentiss": [["M"]], - "Prentiss's": null, - "Prent": [["M"]], - "Prent's": null, - "prenuptial": null, - "preoccupation": [["M", "S"]], - "preoccupation's": null, - "preoccupations": null, - "preoccupy": [["D", "S", "G"]], - "preoccupied": null, - "preoccupies": null, - "preoccupying": null, - "preoperative": null, - "preordain": [["D", "S", "L", "G"]], - "preordained": null, - "preordains": null, - "preordainment": null, - "preordaining": null, - "prepackage": [["G", "S", "D"]], - "prepackaging": null, - "prepackages": null, - "prepackaged": null, - "prepaid": null, - "preparation": [["S", "M"]], - "preparations": null, - "preparation's": null, - "preparative": [["S", "Y", "M"]], - "preparatives": null, - "preparatively": null, - "preparative's": null, - "preparatory": null, - "preparedly": null, - "preparedness": [["U", "S", "M"]], - "unpreparedness": null, - "unpreparednesses": null, - "unpreparedness's": null, - "preparednesses": null, - "preparedness's": null, - "prepared": [["U", "P"]], - "unprepared": null, - "prepare": [["Z", "D", "R", "S", "G"]], - "preparers": null, - "preparer": null, - "prepares": null, - "preparing": null, - "prepay": [["G", "L", "S"]], - "prepaying": null, - "prepayment": [["S", "M"]], - "prepays": null, - "prepayments": null, - "prepayment's": null, - "prepender": [["S"]], - "prependers": null, - "prepends": null, - "preplanned": null, - "preponderance": [["S", "M"]], - "preponderances": null, - "preponderance's": null, - "preponderant": [["Y"]], - "preponderantly": null, - "preponderate": [["D", "S", "Y", "G", "N"]], - "preponderated": null, - "preponderates": null, - "preponderately": null, - "preponderating": null, - "preponderation": null, - "prepositional": [["Y"]], - "prepositionally": null, - "preposition": [["S", "D", "M", "G"]], - "prepositions": null, - "prepositioned": null, - "preposition's": null, - "prepositioning": null, - "prepossess": [["G", "S", "D"]], - "prepossessing": [["U"]], - "prepossesses": null, - "prepossessed": null, - "unprepossessing": null, - "prepossession": [["M", "S"]], - "prepossession's": null, - "prepossessions": null, - "preposterousness": [["M"]], - "preposterousness's": null, - "preposterous": [["P", "Y"]], - "preposterously": null, - "prepped": null, - "prepping": null, - "preppy": [["R", "S", "T"]], - "preppier": null, - "preppies": null, - "preppiest": null, - "preprepared": null, - "preprint": [["S", "G", "D", "M"]], - "preprints": null, - "preprinting": null, - "preprinted": null, - "preprint's": null, - "preprocessed": null, - "preprocessing": null, - "preprocessor": [["S"]], - "preprocessors": null, - "preproduction": null, - "preprogrammed": null, - "prep": [["S", "M"]], - "preps": null, - "prep's": null, - "prepubescence": [["S"]], - "prepubescences": null, - "prepubescent": [["S"]], - "prepubescents": null, - "prepublication": [["M"]], - "prepublication's": null, - "prepuce": [["S", "M"]], - "prepuces": null, - "prepuce's": null, - "prequel": [["S"]], - "prequels": null, - "preradiation": null, - "prerecord": [["D", "G", "S"]], - "prerecorded": null, - "prerecording": null, - "prerecords": null, - "preregister": [["D", "S", "G"]], - "preregistered": null, - "preregisters": null, - "preregistering": null, - "preregistration": [["M", "S"]], - "preregistration's": null, - "preregistrations": null, - "prerequisite": [["S", "M"]], - "prerequisites": null, - "prerequisite's": null, - "prerogative": [["S", "D", "M"]], - "prerogatives": null, - "prerogatived": null, - "prerogative's": null, - "Pres": null, - "presage": [["G", "M", "D", "R", "S"]], - "presaging": null, - "presage's": null, - "presaged": null, - "presager": [["M"]], - "presages": null, - "presager's": null, - "presbyopia": [["M", "S"]], - "presbyopia's": null, - "presbyopias": null, - "presbyterian": null, - "Presbyterianism": [["S"]], - "Presbyterianisms": null, - "Presbyterian": [["S"]], - "Presbyterians": null, - "presbyter": [["M", "S"]], - "presbyter's": null, - "presbyters": null, - "presbytery": [["M", "S"]], - "presbytery's": null, - "presbyteries": null, - "preschool": [["R", "S", "Z"]], - "preschooler": null, - "preschools": null, - "preschoolers": null, - "prescience": [["S", "M"]], - "presciences": null, - "prescience's": null, - "prescient": [["Y"]], - "presciently": null, - "Prescott": [["M"]], - "Prescott's": null, - "prescribed": [["U"]], - "unprescribed": null, - "prescriber": [["M"]], - "prescriber's": null, - "prescribe": [["R", "S", "D", "G"]], - "prescribes": null, - "prescribing": null, - "prescription": [["S", "M"]], - "prescriptions": null, - "prescription's": null, - "prescriptive": [["Y"]], - "prescriptively": null, - "prescript": [["S", "V", "M"]], - "prescripts": null, - "prescript's": null, - "preselect": [["S", "G", "D"]], - "preselects": null, - "preselecting": null, - "preselected": null, - "presence": [["S", "M"]], - "presences": null, - "presence's": null, - "presentableness": [["M"]], - "presentableness's": null, - "presentable": [["P"]], - "presentably": [["A"]], - "representably": null, - "presentational": [["A"]], - "representational": [["Y"]], - "presentation": [["A", "M", "S"]], - "representation": null, - "representation's": null, - "representations": null, - "presentation's": null, - "presentations": null, - "presented": [["A"]], - "represented": [["U"]], - "presenter": [["A"]], - "representer": null, - "presentiment": [["M", "S"]], - "presentiment's": null, - "presentiments": null, - "presentment": [["S", "M"]], - "presentments": null, - "presentment's": null, - "presents": [["A"]], - "represents": null, - "present": [["S", "L", "B", "D", "R", "Y", "Z", "G", "P"]], - "presently": null, - "presenters": null, - "presenting": null, - "presentness": null, - "preservationist": [["S"]], - "preservationists": null, - "preservation": [["S", "M"]], - "preservations": null, - "preservation's": null, - "preservative": [["S", "M"]], - "preservatives": null, - "preservative's": null, - "preserve": [["D", "R", "S", "B", "Z", "G"]], - "preserved": [["U"]], - "preserver": [["M"]], - "preserves": null, - "preservable": null, - "preservers": null, - "preserving": null, - "unpreserved": null, - "preserver's": null, - "preset": [["S"]], - "presets": null, - "presetting": null, - "preshrank": null, - "preshrink": [["S", "G"]], - "preshrinks": null, - "preshrinking": null, - "preshrunk": null, - "preside": [["D", "R", "S", "G"]], - "presided": null, - "presider": [["M"]], - "presides": null, - "presiding": null, - "presidency": [["M", "S"]], - "presidency's": null, - "presidencies": null, - "presidential": [["Y"]], - "presidentially": null, - "president": [["S", "M"]], - "presidents": null, - "president's": null, - "presider's": null, - "presidia": null, - "presidium": [["M"]], - "presidium's": null, - "Presley": [["M"]], - "Presley's": null, - "presoaks": null, - "presort": [["G", "D", "S"]], - "presorting": null, - "presorted": null, - "presorts": null, - "pres": [["S"]], - "preses": null, - "press": [["A", "C", "D", "S", "G"]], - "repress": [["V"]], - "repressed": null, - "represses": null, - "repressing": null, - "depressed": null, - "depresses": null, - "depressing": null, - "pressed": [["U"]], - "presses": null, - "pressing": [["Y", "S"]], - "unpressed": null, - "presser": [["M", "S"]], - "presser's": null, - "pressers": null, - "pressingly": [["C"]], - "depressingly": null, - "pressings": null, - "pressman": [["M"]], - "pressman's": null, - "pressmen": null, - "pressure": [["D", "S", "M", "G"]], - "pressured": null, - "pressures": null, - "pressure's": null, - "pressuring": null, - "pressurization": [["M", "S"]], - "pressurization's": null, - "pressurizations": null, - "pressurize": [["D", "S", "R", "G", "Z"]], - "pressurized": [["U"]], - "pressurizes": null, - "pressurizer": null, - "pressurizing": null, - "pressurizers": null, - "unpressurized": null, - "prestidigitate": [["N", "X"]], - "prestidigitation": [["M"]], - "prestidigitations": null, - "prestidigitation's": null, - "prestidigitatorial": null, - "prestidigitator": [["M"]], - "prestidigitator's": null, - "prestige": [["M", "S"]], - "prestige's": null, - "prestiges": null, - "prestigious": [["P", "Y"]], - "prestigiousness": null, - "prestigiously": null, - "Preston": [["M"]], - "Preston's": null, - "presto": [["S"]], - "prestos": null, - "presumably": null, - "presume": [["B", "G", "D", "R", "S"]], - "presumable": null, - "presuming": [["Y"]], - "presumed": null, - "presumer": [["M"]], - "presumes": null, - "presumer's": null, - "presumingly": null, - "presumption": [["M", "S"]], - "presumption's": null, - "presumptions": null, - "presumptive": [["Y"]], - "presumptively": null, - "presumptuousness": [["S", "M"]], - "presumptuousnesses": null, - "presumptuousness's": null, - "presumptuous": [["Y", "P"]], - "presumptuously": null, - "presuppose": [["G", "D", "S"]], - "presupposing": null, - "presupposed": null, - "presupposes": null, - "presupposition": [["S"]], - "presuppositions": null, - "pretax": null, - "preteen": [["S"]], - "preteens": null, - "pretended": [["Y"]], - "pretendedly": null, - "pretender": [["M"]], - "pretender's": null, - "pretending": [["U"]], - "unpretending": null, - "pretend": [["S", "D", "R", "Z", "G"]], - "pretends": null, - "pretenders": null, - "pretense": [["M", "N", "V", "S", "X"]], - "pretense's": null, - "pretension": [["G", "D", "M"]], - "pretensive": null, - "pretenses": null, - "pretensions": null, - "pretensioning": null, - "pretensioned": null, - "pretension's": null, - "pretentiousness": [["S"]], - "pretentiousnesses": null, - "pretentious": [["U", "Y", "P"]], - "unpretentious": null, - "unpretentiously": null, - "unpretentiousness": [["M"]], - "pretentiously": null, - "preterite's": null, - "preterit": [["S", "M"]], - "preterits": null, - "preterit's": null, - "preternatural": [["Y"]], - "preternaturally": null, - "pretest": [["S", "D", "G"]], - "pretests": null, - "pretested": null, - "pretesting": null, - "pretext": [["S", "M", "D", "G"]], - "pretexts": null, - "pretext's": null, - "pretexted": null, - "pretexting": null, - "Pretoria": [["M"]], - "Pretoria's": null, - "pretreated": null, - "pretreatment": [["S"]], - "pretreatments": null, - "pretrial": null, - "prettify": [["S", "D", "G"]], - "prettifies": null, - "prettified": null, - "prettifying": null, - "prettily": null, - "prettiness": [["S", "M"]], - "prettinesses": null, - "prettiness's": null, - "pretty": [["T", "G", "P", "D", "R", "S"]], - "prettiest": null, - "prettying": null, - "prettied": null, - "prettier": null, - "pretties": null, - "pretzel": [["S", "M"]], - "pretzels": null, - "pretzel's": null, - "prevailing": [["Y"]], - "prevailingly": null, - "prevail": [["S", "G", "D"]], - "prevails": null, - "prevailed": null, - "prevalence": [["M", "S"]], - "prevalence's": null, - "prevalences": null, - "prevalent": [["S", "Y"]], - "prevalents": null, - "prevalently": null, - "prevaricate": [["D", "S", "X", "N", "G"]], - "prevaricated": null, - "prevaricates": null, - "prevarications": null, - "prevarication": null, - "prevaricating": null, - "prevaricator": [["M", "S"]], - "prevaricator's": null, - "prevaricators": null, - "preventable": [["U"]], - "unpreventable": null, - "preventably": null, - "preventative": [["S"]], - "preventatives": null, - "prevent": [["B", "S", "D", "R", "G", "V"]], - "prevents": null, - "prevented": null, - "preventer": [["M"]], - "preventing": null, - "preventive": [["S", "P", "Y"]], - "preventer's": null, - "prevention": [["M", "S"]], - "prevention's": null, - "preventions": null, - "preventiveness": [["M"]], - "preventiveness's": null, - "preventives": null, - "preventively": null, - "preview": [["Z", "G", "S", "D", "R", "M"]], - "previewers": null, - "previewing": null, - "previews": null, - "previewed": null, - "previewer": null, - "preview's": null, - "previous": [["Y"]], - "previously": null, - "prevision": [["S", "G", "M", "D"]], - "previsions": null, - "previsioning": null, - "prevision's": null, - "previsioned": null, - "prewar": null, - "prexes": null, - "preyer's": null, - "prey": [["S", "M", "D", "G"]], - "preys": null, - "prey's": null, - "preyed": null, - "preying": null, - "Priam": [["M"]], - "Priam's": null, - "priapic": null, - "Pribilof": [["M"]], - "Pribilof's": null, - "price": [["A", "G", "S", "D"]], - "reprice": null, - "repricing": null, - "reprices": null, - "repriced": null, - "pricing": null, - "prices": null, - "priced": [["U"]], - "unpriced": null, - "priceless": null, - "Price": [["M"]], - "Price's": null, - "pricer": [["M", "S"]], - "pricer's": null, - "pricers": null, - "price's": null, - "pricey": null, - "pricier": null, - "priciest": null, - "pricker": [["M"]], - "pricker's": null, - "pricking": [["M"]], - "pricking's": null, - "prickle": [["G", "M", "D", "S"]], - "prickling": null, - "prickle's": null, - "prickled": null, - "prickles": null, - "prickliness": [["S"]], - "pricklinesses": null, - "prickly": [["R", "T", "P"]], - "pricklier": null, - "prickliest": null, - "prick": [["R", "D", "S", "Y", "Z", "G"]], - "pricked": null, - "pricks": null, - "prickers": null, - "prideful": [["Y"]], - "pridefully": null, - "pride": [["G", "M", "D", "S"]], - "priding": null, - "pride's": null, - "prided": null, - "prides": null, - "prier": [["M"]], - "prier's": null, - "priestess": [["M", "S"]], - "priestess's": null, - "priestesses": null, - "priesthood": [["S", "M"]], - "priesthoods": null, - "priesthood's": null, - "Priestley": [["M"]], - "Priestley's": null, - "priestliness": [["S", "M"]], - "priestlinesses": null, - "priestliness's": null, - "priestly": [["P", "T", "R"]], - "priestliest": null, - "priestlier": null, - "priest": [["S", "M", "Y", "D", "G"]], - "priests": null, - "priest's": null, - "priested": null, - "priesting": null, - "prigged": null, - "prigging": null, - "priggishness": [["S"]], - "priggishnesses": null, - "priggish": [["P", "Y", "M"]], - "priggishly": null, - "priggish's": null, - "prig": [["S", "M"]], - "prigs": null, - "prig's": null, - "primacy": [["M", "S"]], - "primacy's": null, - "primacies": null, - "primal": null, - "primarily": null, - "primary": [["M", "S"]], - "primary's": null, - "primaries": null, - "primate": [["M", "S"]], - "primate's": null, - "primates": null, - "primed": [["U"]], - "unprimed": null, - "primely": [["M"]], - "primely's": null, - "primeness": [["M"]], - "primeness's": null, - "prime": [["P", "Y", "S"]], - "primes": null, - "primer": [["M"]], - "primer's": null, - "Prime's": null, - "primeval": [["Y"]], - "primevally": null, - "priming": [["M"]], - "priming's": null, - "primitiveness": [["S", "M"]], - "primitivenesses": null, - "primitiveness's": null, - "primitive": [["Y", "P", "S"]], - "primitively": null, - "primitives": null, - "primitivism": [["M"]], - "primitivism's": null, - "primmed": null, - "primmer": null, - "primmest": null, - "primming": null, - "primness": [["M", "S"]], - "primness's": null, - "primnesses": null, - "primogenitor": [["M", "S"]], - "primogenitor's": null, - "primogenitors": null, - "primogeniture": [["M", "S"]], - "primogeniture's": null, - "primogenitures": null, - "primordial": [["Y", "S"]], - "primordially": null, - "primordials": null, - "primp": [["D", "G", "S"]], - "primped": null, - "primping": null, - "primps": null, - "primrose": [["M", "G", "S", "D"]], - "primrose's": null, - "primrosing": null, - "primroses": null, - "primrosed": null, - "prim": [["S", "P", "J", "G", "Z", "Y", "D", "R"]], - "prims": null, - "primings": null, - "primers": null, - "primly": null, - "princedom": [["M", "S"]], - "princedom's": null, - "princedoms": null, - "princeliness": [["S", "M"]], - "princelinesses": null, - "princeliness's": null, - "princely": [["P", "R", "T"]], - "princelier": null, - "princeliest": null, - "Prince": [["M"]], - "Prince's": null, - "prince": [["S", "M", "Y"]], - "princes": null, - "prince's": null, - "princess": [["M", "S"]], - "princess's": null, - "princesses": null, - "Princeton": [["M"]], - "Princeton's": null, - "principality": [["M", "S"]], - "principality's": null, - "principalities": null, - "principal": [["S", "Y"]], - "principals": null, - "principally": null, - "Principe": [["M"]], - "Principe's": null, - "Principia": [["M"]], - "Principia's": null, - "principled": [["U"]], - "unprincipled": [["P"]], - "principle": [["S", "D", "M", "G"]], - "principles": null, - "principle's": null, - "principling": null, - "printable": [["U"]], - "unprintable": null, - "printably": null, - "print": [["A", "G", "D", "R", "S"]], - "reprint": [["M"]], - "reprinting": null, - "reprinted": null, - "reprinter": null, - "reprints": null, - "printing": [["S", "M"]], - "printed": [["U"]], - "printer": [["A", "M"]], - "prints": null, - "unprinted": null, - "reprinter's": null, - "printer's": null, - "printers": null, - "printings": null, - "printing's": null, - "printmaker": [["M"]], - "printmaker's": null, - "printmake": [["Z", "G", "R"]], - "printmakers": null, - "printmaking": [["M"]], - "printmaking's": null, - "printout": [["S"]], - "printouts": null, - "Prinz": [["M"]], - "Prinz's": null, - "prioress": [["M", "S"]], - "prioress's": null, - "prioresses": null, - "priori": null, - "prioritize": [["D", "S", "R", "G", "Z", "J"]], - "prioritized": null, - "prioritizes": null, - "prioritizer": null, - "prioritizing": null, - "prioritizers": null, - "prioritizings": null, - "priority": [["M", "S"]], - "priority's": null, - "priorities": null, - "prior": [["Y", "S"]], - "priorly": null, - "priors": null, - "priory": [["S", "M"]], - "priories": null, - "priory's": null, - "Pris": null, - "Prisca": [["M"]], - "Prisca's": null, - "Priscella": [["M"]], - "Priscella's": null, - "Priscilla": [["M"]], - "Priscilla's": null, - "prised": null, - "prise": [["G", "M", "A", "S"]], - "prising": null, - "reprising": null, - "prise's": null, - "reprise's": null, - "reprise": null, - "reprises": null, - "prises": null, - "prismatic": null, - "prism": [["M", "S"]], - "prism's": null, - "prisms": null, - "prison": [["D", "R", "M", "S", "G", "Z"]], - "prisoned": null, - "prisoner": [["M"]], - "prison's": null, - "prisons": null, - "prisoning": null, - "prisoners": null, - "prisoner's": null, - "Prissie": [["M"]], - "Prissie's": null, - "prissily": null, - "prissiness": [["S", "M"]], - "prissinesses": null, - "prissiness's": null, - "prissy": [["R", "S", "P", "T"]], - "prissier": null, - "prissies": null, - "prissiest": null, - "pristine": [["Y"]], - "pristinely": null, - "prithee": [["S"]], - "prithees": null, - "privacy": [["M", "S"]], - "privacy's": null, - "privacies": null, - "privateer": [["S", "M", "D", "G"]], - "privateers": null, - "privateer's": null, - "privateered": null, - "privateering": null, - "privateness": [["M"]], - "privateness's": null, - "private": [["N", "V", "Y", "T", "R", "S", "X", "P"]], - "privation": [["M", "C", "S"]], - "privative": [["Y"]], - "privately": null, - "privatest": null, - "privater": null, - "privates": null, - "privations": null, - "privation's": null, - "deprivation's": null, - "deprivation": null, - "deprivations": null, - "privatively": null, - "privatization": [["S"]], - "privatizations": null, - "privatize": [["G", "S", "D"]], - "privatizing": null, - "privatizes": null, - "privatized": null, - "privet": [["S", "M"]], - "privets": null, - "privet's": null, - "privileged": [["U"]], - "unprivileged": null, - "privilege": [["S", "D", "M", "G"]], - "privileges": null, - "privilege's": null, - "privileging": null, - "privily": null, - "privy": [["S", "R", "M", "T"]], - "privies": null, - "privier": null, - "privy's": null, - "priviest": null, - "prized": [["A"]], - "reprized": null, - "prize": [["D", "S", "R", "G", "Z", "M"]], - "prizes": null, - "prizer": null, - "prizing": null, - "prizers": null, - "prize's": null, - "prizefighter": [["M"]], - "prizefighter's": null, - "prizefighting": [["M"]], - "prizefighting's": null, - "prizefight": [["S", "R", "M", "G", "J", "Z"]], - "prizefights": null, - "prizefight's": null, - "prizefightings": null, - "prizefighters": null, - "prizewinner": [["S"]], - "prizewinners": null, - "prizewinning": null, - "Pr": [["M", "N"]], - "Pr's": null, - "PRO": null, - "proactive": null, - "probabilist": null, - "probabilistic": null, - "probabilistically": null, - "probability": [["S", "M"]], - "probabilities": null, - "probability's": null, - "probable": [["S"]], - "probables": null, - "probably": null, - "reprobated": null, - "probation": [["M", "R", "Z"]], - "probative": [["A"]], - "probate's": null, - "probations": null, - "reprobates": null, - "reprobating": null, - "probational": null, - "probationary": [["S"]], - "probationaries": null, - "probationer": [["M"]], - "probationer's": null, - "probation's": [["A"]], - "probationers": null, - "reprobation's": null, - "reprobative": null, - "prober": [["M"]], - "prober's": null, - "probity": [["S", "M"]], - "probities": null, - "probity's": null, - "problematical": [["U", "Y"]], - "unproblematical": null, - "unproblematically": null, - "problematically": null, - "problematic": [["S"]], - "problematics": null, - "problem": [["S", "M"]], - "problems": null, - "problem's": null, - "proboscis": [["M", "S"]], - "proboscis's": null, - "proboscises": null, - "probings": null, - "procaine": [["M", "S"]], - "procaine's": null, - "procaines": null, - "procedural": [["S", "Y"]], - "procedurals": null, - "procedurally": null, - "procedure": [["M", "S"]], - "procedure's": null, - "procedures": null, - "proceeder": [["M"]], - "proceeder's": null, - "proceeding": [["M"]], - "proceeding's": null, - "proceed": [["J", "R", "D", "S", "G"]], - "proceedings": null, - "proceeded": null, - "proceeds": null, - "process": [["B", "S", "D", "M", "G"]], - "processable": null, - "processes": [["A"]], - "processed": [["U", "A"]], - "process's": null, - "processing": null, - "unprocessed": null, - "reprocessed": null, - "reprocesses": null, - "processional": [["Y", "S"]], - "processionally": null, - "processionals": null, - "processioning": null, - "processioned": null, - "processor": [["M", "S"]], - "processor's": null, - "processors": null, - "proclamation": [["M", "S"]], - "proclamation's": null, - "proclamations": null, - "proclivity": [["M", "S"]], - "proclivity's": null, - "proclivities": null, - "proconsular": null, - "procrastinate": [["X", "N", "G", "D", "S"]], - "procrastinations": null, - "procrastination": [["M"]], - "procrastinating": null, - "procrastinated": null, - "procrastinates": null, - "procrastination's": null, - "procrastinator": [["M", "S"]], - "procrastinator's": null, - "procrastinators": null, - "procreational": null, - "procreatory": null, - "procrustean": null, - "Procrustean": null, - "Procrustes": [["M"]], - "Procrustes's": null, - "proctor": [["G", "S", "D", "M"]], - "proctoring": null, - "proctors": null, - "proctored": null, - "proctor's": null, - "proctorial": null, - "unprocurable": null, - "procurement": [["M", "S"]], - "procurement's": null, - "procurements": null, - "Procyon": [["M"]], - "Procyon's": null, - "prodded": null, - "prodding": null, - "prodigality": [["S"]], - "prodigalities": null, - "prodigal": [["S", "Y"]], - "prodigals": null, - "prodigally": null, - "prodigiousness": [["M"]], - "prodigiousness's": null, - "prodigious": [["P", "Y"]], - "prodigiously": null, - "prodigy": [["M", "S"]], - "prodigy's": null, - "prodigies": null, - "prod": [["S"]], - "prods": null, - "reproduce": null, - "reproducers": null, - "reproducing": null, - "reproduced": null, - "reproducer": null, - "reproduces": null, - "producers": null, - "producing": null, - "produced": null, - "producer": [["A", "M"]], - "produces": null, - "reproducer's": null, - "producer's": null, - "producible": [["A"]], - "reproducible": [["S"]], - "production": [["A", "S", "M"]], - "reproduction": null, - "reproductions": null, - "reproduction's": null, - "productions": null, - "production's": null, - "productively": [["U", "A"]], - "unproductively": null, - "reproductively": null, - "productiveness": [["M", "S"]], - "productiveness's": null, - "productivenesses": null, - "productive": [["P", "Y"]], - "productivities": null, - "productivity": [["A"]], - "reproductivity": null, - "productivity's": null, - "productize": [["G", "Z", "R", "S", "D"]], - "productizing": null, - "productizers": null, - "productizer": null, - "productizes": null, - "productized": null, - "Prof": null, - "profanation": [["S"]], - "profanations": null, - "profaneness": [["M", "S"]], - "profaneness's": null, - "profanenesses": null, - "profane": [["Y", "P", "D", "R", "S", "G"]], - "profanely": null, - "profaned": null, - "profaner": null, - "profanes": null, - "profaning": null, - "profanity": [["M", "S"]], - "profanity's": null, - "profanities": null, - "professedly": null, - "professionalism": [["S", "M"]], - "professionalisms": null, - "professionalism's": null, - "professionalize": [["G", "S", "D"]], - "professionalizing": null, - "professionalizes": null, - "professionalized": null, - "professional": [["U", "S", "Y"]], - "unprofessional": null, - "unprofessionals": null, - "unprofessionally": null, - "professionals": null, - "professionally": null, - "profession": [["S", "M"]], - "professions": null, - "profession's": null, - "professorial": [["Y"]], - "professorially": null, - "professorship": [["S", "M"]], - "professorships": null, - "professorship's": null, - "professor": [["S", "M"]], - "professors": null, - "professor's": null, - "proffer": [["G", "S", "D"]], - "proffering": null, - "proffers": null, - "proffered": null, - "proficiency": [["S", "M"]], - "proficiencies": null, - "proficiency's": null, - "proficient": [["Y", "S"]], - "proficiently": null, - "proficients": null, - "profitability": [["M", "S"]], - "profitability's": null, - "profitabilities": null, - "profitableness": [["M", "U"]], - "profitableness's": null, - "unprofitableness's": null, - "unprofitableness": null, - "profitable": [["U", "P"]], - "unprofitable": null, - "profitably": [["U"]], - "unprofitably": null, - "profiteer": [["G", "S", "M", "D"]], - "profiteering": null, - "profiteers": null, - "profiteer's": null, - "profiteered": null, - "profiterole": [["M", "S"]], - "profiterole's": null, - "profiteroles": null, - "profit": [["G", "Z", "D", "R", "B"]], - "profiting": null, - "profiters": null, - "profited": null, - "profiter": null, - "profitless": null, - "profligacy": [["S"]], - "profligacies": null, - "profligate": [["Y", "S"]], - "profligately": null, - "profligates": null, - "proforma": [["S"]], - "proformas": null, - "profoundity": null, - "profoundness": [["S", "M"]], - "profoundnesses": null, - "profoundness's": null, - "profound": [["P", "T", "Y", "R"]], - "profoundest": null, - "profoundly": null, - "profounder": null, - "prof": [["S"]], - "profs": null, - "profundity": [["M", "S"]], - "profundity's": null, - "profundities": null, - "profuseness": [["M", "S"]], - "profuseness's": null, - "profusenesses": null, - "profuse": [["Y", "P"]], - "profusely": null, - "progenitor": [["S", "M"]], - "progenitors": null, - "progenitor's": null, - "progeny": [["M"]], - "progeny's": null, - "progesterone": [["S", "M"]], - "progesterones": null, - "progesterone's": null, - "prognathous": null, - "prognoses": null, - "prognosis": [["M"]], - "prognosis's": null, - "prognosticate": [["N", "G", "V", "X", "D", "S"]], - "prognostication": [["M"]], - "prognosticating": null, - "prognosticative": null, - "prognostications": null, - "prognosticated": null, - "prognosticates": null, - "prognostication's": null, - "prognosticator": [["S"]], - "prognosticators": null, - "prognostics": null, - "deprogram": null, - "deprograms": null, - "reprograms": null, - "reprogram": null, - "programed": null, - "programing": null, - "programmability": null, - "programmable": [["S"]], - "programmables": null, - "programmed": [["C", "A"]], - "deprogrammed": null, - "reprogrammed": null, - "programmer": [["A", "S", "M"]], - "reprogrammer": null, - "reprogrammers": null, - "reprogrammer's": null, - "programmers": null, - "programmer's": null, - "programming": [["C", "A"]], - "deprogramming": null, - "reprogramming": null, - "programmings": null, - "progression": [["S", "M"]], - "progressions": null, - "progression's": null, - "progressiveness": [["S", "M"]], - "progressivenesses": null, - "progressiveness's": null, - "progressive": [["S", "P", "Y"]], - "progressives": null, - "progressively": null, - "progressivism": null, - "progress": [["M", "S", "D", "V", "G"]], - "progress's": null, - "progresses": null, - "progressed": null, - "progressing": null, - "prohibiter": [["M"]], - "prohibiter's": null, - "prohibitionist": [["M", "S"]], - "prohibitionist's": null, - "prohibitionists": null, - "prohibition": [["M", "S"]], - "prohibition's": null, - "prohibitions": null, - "Prohibition": [["M", "S"]], - "Prohibition's": null, - "Prohibitions": null, - "prohibitiveness": [["M"]], - "prohibitiveness's": null, - "prohibitive": [["P", "Y"]], - "prohibitively": null, - "prohibitory": null, - "prohibit": [["V", "G", "S", "R", "D"]], - "prohibiting": null, - "prohibits": null, - "prohibited": null, - "projected": [["A", "U"]], - "reprojected": null, - "unprojected": null, - "projectile": [["M", "S"]], - "projectile's": null, - "projectiles": null, - "projectionist": [["M", "S"]], - "projectionist's": null, - "projectionists": null, - "projection": [["M", "S"]], - "projection's": null, - "projections": null, - "projective": [["Y"]], - "projectively": null, - "project": [["M", "D", "V", "G", "S"]], - "project's": null, - "projecting": null, - "projects": null, - "projector": [["S", "M"]], - "projectors": null, - "projector's": null, - "Prokofieff": [["M"]], - "Prokofieff's": null, - "Prokofiev": [["M"]], - "Prokofiev's": null, - "prolegomena": null, - "proletarianization": [["M"]], - "proletarianization's": null, - "proletarianized": null, - "proletarian": [["S"]], - "proletarians": null, - "proletariat": [["S", "M"]], - "proletariats": null, - "proletariat's": null, - "proliferate": [["G", "N", "V", "D", "S", "X"]], - "proliferating": null, - "proliferation": [["M"]], - "proliferative": null, - "proliferated": null, - "proliferates": null, - "proliferations": null, - "proliferation's": null, - "prolifically": null, - "prolific": [["P"]], - "prolificness": null, - "prolixity": [["M", "S"]], - "prolixity's": null, - "prolixities": null, - "prolix": [["Y"]], - "prolixly": null, - "prologize": null, - "prologue": [["M", "G", "S", "D"]], - "prologue's": null, - "prologuing": null, - "prologues": null, - "prologued": null, - "prologuize": null, - "prolongate": [["N", "G", "S", "D", "X"]], - "prolongation": [["M"]], - "prolongating": null, - "prolongates": null, - "prolongated": null, - "prolongations": null, - "prolongation's": null, - "prolonger's": null, - "prolong": [["G"]], - "prolonging": null, - "promenade": [["G", "Z", "M", "S", "R", "D"]], - "promenading": null, - "promenaders": null, - "promenade's": null, - "promenades": null, - "promenader": [["M"]], - "promenaded": null, - "promenader's": null, - "Promethean": null, - "Prometheus": [["M"]], - "Prometheus's": null, - "promethium": [["S", "M"]], - "promethiums": null, - "promethium's": null, - "prominence": [["M", "S"]], - "prominence's": null, - "prominences": null, - "prominent": [["Y"]], - "prominently": null, - "promiscuity": [["M", "S"]], - "promiscuity's": null, - "promiscuities": null, - "promiscuousness": [["M"]], - "promiscuousness's": null, - "promiscuous": [["P", "Y"]], - "promiscuously": null, - "promise": [["G", "D"]], - "promising": [["U", "Y"]], - "promised": null, - "unpromising": null, - "unpromisingly": null, - "promisingly": null, - "promissory": null, - "promontory": [["M", "S"]], - "promontory's": null, - "promontories": null, - "promoting": null, - "promotive": [["P"]], - "promoters": null, - "promotable": null, - "promoted": null, - "promoter": [["M"]], - "promoter's": null, - "promotiveness": [["M"]], - "promotiveness's": null, - "prompted": [["U"]], - "unprompted": null, - "prompter": [["M"]], - "prompter's": null, - "promptitude": [["S", "M"]], - "promptitudes": null, - "promptitude's": null, - "promptness": [["M", "S"]], - "promptness's": null, - "promptnesses": null, - "prompt": [["S", "G", "J", "T", "Z", "P", "Y", "D", "R"]], - "prompts": null, - "prompting": null, - "promptings": null, - "promptest": null, - "prompters": null, - "promptly": null, - "pro": [["M", "S"]], - "pro's": null, - "pros": [["D", "S", "R", "G"]], - "promulgate": [["N", "G", "S", "D", "X"]], - "promulgation": [["M"]], - "promulgating": null, - "promulgates": null, - "promulgated": null, - "promulgations": null, - "promulgation's": null, - "promulgator": [["M", "S"]], - "promulgator's": null, - "promulgators": null, - "pron": null, - "proneness": [["M", "S"]], - "proneness's": null, - "pronenesses": null, - "prone": [["P", "Y"]], - "pronely": null, - "pronghorn": [["S", "M"]], - "pronghorns": null, - "pronghorn's": null, - "prong": [["S", "G", "M", "D"]], - "prongs": null, - "pronging": null, - "prong's": null, - "pronged": null, - "pronominalization": null, - "pronominalize": null, - "pronounceable": [["U"]], - "unpronounceable": null, - "pronouncedly": null, - "pronounced": [["U"]], - "unpronounced": null, - "pronounce": [["G", "L", "S", "R", "D"]], - "pronouncing": null, - "pronouncement": [["S", "M"]], - "pronounces": null, - "pronouncer": [["M"]], - "pronouncements": null, - "pronouncement's": null, - "pronouncer's": null, - "pronto": null, - "pronunciation": [["S", "M"]], - "pronunciations": null, - "pronunciation's": null, - "proofed": [["A"]], - "reproofed": null, - "proofer": null, - "proofing": [["M"]], - "proofing's": null, - "proofreader": [["M"]], - "proofreader's": null, - "proofread": [["G", "Z", "S", "R"]], - "proofreading": null, - "proofreaders": null, - "proofreads": null, - "proofs": null, - "disproofs": null, - "reproofs": null, - "disproof": null, - "disproof's": null, - "reproof": [["G"]], - "reproof's": null, - "proof's": null, - "propaganda": [["S", "M"]], - "propagandas": null, - "propaganda's": null, - "propagandistic": null, - "propagandist": [["S", "M"]], - "propagandists": null, - "propagandist's": null, - "propagandize": [["D", "S", "G"]], - "propagandized": null, - "propagandizes": null, - "propagandizing": null, - "propagated": [["U"]], - "unpropagated": null, - "propagate": [["S", "D", "V", "N", "G", "X"]], - "propagates": null, - "propagative": null, - "propagation": [["M"]], - "propagating": null, - "propagations": null, - "propagation's": null, - "propagator": [["M", "S"]], - "propagator's": null, - "propagators": null, - "propellant": [["M", "S"]], - "propellant's": null, - "propellants": null, - "propelled": null, - "propeller": [["M", "S"]], - "propeller's": null, - "propellers": null, - "propelling": null, - "propel": [["S"]], - "propels": null, - "propensity": [["M", "S"]], - "propensity's": null, - "propensities": null, - "properness": [["M"]], - "properness's": null, - "properly": null, - "properer": null, - "properest": null, - "propertied": [["U"]], - "unpropertied": null, - "property": [["S", "D", "M"]], - "properties": null, - "property's": null, - "prophecy": [["S", "M"]], - "prophecies": null, - "prophecy's": null, - "prophesier": [["M"]], - "prophesier's": null, - "prophesy": [["G", "R", "S", "D", "Z"]], - "prophesying": null, - "prophesies": null, - "prophesied": null, - "prophesiers": null, - "prophetess": [["S"]], - "prophetesses": null, - "prophetic": null, - "prophetical": [["Y"]], - "prophetically": null, - "prophet": [["S", "M"]], - "prophets": null, - "prophet's": null, - "prophylactic": [["S"]], - "prophylactics": null, - "prophylaxes": null, - "prophylaxis": [["M"]], - "prophylaxis's": null, - "propinquity": [["M", "S"]], - "propinquity's": null, - "propinquities": null, - "propionate": [["M"]], - "propionate's": null, - "propitiate": [["G", "N", "X", "S", "D"]], - "propitiating": null, - "propitiation": null, - "propitiations": null, - "propitiates": null, - "propitiated": null, - "propitiatory": null, - "propitiousness": [["M"]], - "propitiousness's": null, - "propitious": [["Y", "P"]], - "propitiously": null, - "proponent": [["M", "S"]], - "proponent's": null, - "proponents": null, - "proportionality": [["M"]], - "proportionality's": null, - "proportional": [["S", "Y"]], - "proportionals": null, - "proportionally": null, - "proportionate": [["Y", "G", "E", "S", "D"]], - "proportionately": null, - "disproportionately": null, - "proportionating": null, - "disproportionating": null, - "disproportionates": null, - "disproportionated": null, - "proportionates": null, - "proportionated": null, - "proportioner": [["M"]], - "proportioner's": null, - "disproportion": null, - "disproportions": null, - "disproportioning": null, - "disproportioned": null, - "disproportion's": null, - "proportionment": [["M"]], - "proportionment's": null, - "proposal": [["S", "M"]], - "proposals": null, - "proposal's": null, - "propped": null, - "propping": null, - "proprietary": [["S"]], - "proprietaries": null, - "proprietorial": null, - "proprietorship": [["S", "M"]], - "proprietorships": null, - "proprietorship's": null, - "proprietor": [["S", "M"]], - "proprietors": null, - "proprietor's": null, - "proprietress": [["M", "S"]], - "proprietress's": null, - "proprietresses": null, - "propriety": [["M", "S"]], - "propriety's": null, - "proprieties": null, - "proprioception": null, - "proprioceptive": null, - "prop": [["S", "Z"]], - "props": null, - "propers": null, - "propulsion": [["M", "S"]], - "propulsion's": null, - "propulsions": null, - "propulsive": null, - "propylene": [["M"]], - "propylene's": null, - "prorogation": [["S", "M"]], - "prorogations": null, - "prorogation's": null, - "prorogue": null, - "prosaic": null, - "prosaically": null, - "proscenium": [["M", "S"]], - "proscenium's": null, - "prosceniums": null, - "prosciutti": null, - "prosciutto": [["S", "M"]], - "prosciuttos": null, - "prosciutto's": null, - "proscription": [["S", "M"]], - "proscriptions": null, - "proscription's": null, - "proscriptive": null, - "prosed": null, - "proses": null, - "proser": [["M"]], - "prosing": null, - "prosecute": [["S", "D", "B", "X", "N", "G"]], - "prosecutes": null, - "prosecuted": null, - "prosecutable": null, - "prosecutions": null, - "prosecution": [["M"]], - "prosecuting": null, - "prosecution's": null, - "prosecutor": [["M", "S"]], - "prosecutor's": null, - "prosecutors": null, - "proselyte": [["S", "D", "G", "M"]], - "proselytes": null, - "proselyted": null, - "proselyting": null, - "proselyte's": null, - "proselytism": [["M", "S"]], - "proselytism's": null, - "proselytisms": null, - "proselytize": [["Z", "G", "D", "S", "R"]], - "proselytizers": null, - "proselytizing": null, - "proselytized": null, - "proselytizes": null, - "proselytizer": null, - "prose": [["M"]], - "prose's": null, - "proser's": null, - "Proserpine": [["M"]], - "Proserpine's": null, - "prosodic": [["S"]], - "prosodics": null, - "prosody": [["M", "S"]], - "prosody's": null, - "prosodies": null, - "prospect": [["D", "M", "S", "V", "G"]], - "prospected": null, - "prospect's": null, - "prospects": null, - "prospective": [["S", "Y", "P"]], - "prospecting": null, - "prospection": [["S", "M"]], - "prospections": null, - "prospection's": null, - "prospectiveness": [["M"]], - "prospectiveness's": null, - "prospectives": null, - "prospectively": null, - "prospector": [["M", "S"]], - "prospector's": null, - "prospectors": null, - "prospectus": [["S", "M"]], - "prospectuses": null, - "prospectus's": null, - "prosper": [["G", "S", "D"]], - "prospering": null, - "prospers": null, - "prospered": null, - "prosperity": [["M", "S"]], - "prosperity's": null, - "prosperities": null, - "prosperousness": [["M"]], - "prosperousness's": null, - "prosperous": [["P", "Y"]], - "prosperously": null, - "prostate": null, - "prostheses": null, - "prosthesis": [["M"]], - "prosthesis's": null, - "prosthetic": [["S"]], - "prosthetics": [["M"]], - "prosthetics's": null, - "prostitute": [["D", "S", "X", "N", "G", "M"]], - "prostituted": null, - "prostitutes": null, - "prostitutions": null, - "prostitution": [["M"]], - "prostituting": null, - "prostitute's": null, - "prostitution's": null, - "prostrate": [["S", "D", "X", "N", "G"]], - "prostrates": null, - "prostrated": null, - "prostrations": null, - "prostration": [["M"]], - "prostrating": null, - "prostration's": null, - "prosy": [["R", "T"]], - "prosier": null, - "prosiest": null, - "protactinium": [["M", "S"]], - "protactinium's": null, - "protactiniums": null, - "protagonist": [["S", "M"]], - "protagonists": null, - "protagonist's": null, - "Protagoras": [["M"]], - "Protagoras's": null, - "protean": [["S"]], - "proteans": null, - "protease": [["M"]], - "protease's": null, - "protect": [["D", "V", "G", "S"]], - "protected": [["U", "Y"]], - "protective": [["Y", "P", "S"]], - "protecting": null, - "protects": null, - "unprotected": null, - "unprotectedly": null, - "protectedly": null, - "protectionism": [["M", "S"]], - "protectionism's": null, - "protectionisms": null, - "protectionist": [["M", "S"]], - "protectionist's": null, - "protectionists": null, - "protection": [["M", "S"]], - "protection's": null, - "protections": null, - "protectiveness": [["S"]], - "protectivenesses": null, - "protectively": null, - "protectives": null, - "protectorate": [["S", "M"]], - "protectorates": null, - "protectorate's": null, - "protector": [["M", "S"]], - "protector's": null, - "protectors": null, - "prot�g�es": null, - "prot�g�": [["S", "M"]], - "prot�g�s": null, - "prot�g�'s": null, - "protein": [["M", "S"]], - "protein's": null, - "proteins": null, - "proteolysis": [["M"]], - "proteolysis's": null, - "proteolytic": null, - "Proterozoic": [["M"]], - "Proterozoic's": null, - "protestantism": null, - "Protestantism": [["M", "S"]], - "Protestantism's": null, - "Protestantisms": null, - "protestant": [["S"]], - "protestants": null, - "Protestant": [["S", "M"]], - "Protestants": null, - "Protestant's": null, - "protestation": [["M", "S"]], - "protestation's": null, - "protestations": null, - "protest": [["G"]], - "protesting": [["Y"]], - "protestingly": null, - "Proteus": [["M"]], - "Proteus's": null, - "protocol": [["D", "M", "G", "S"]], - "protocoled": null, - "protocol's": null, - "protocoling": null, - "protocols": null, - "protoplasmic": null, - "protoplasm": [["M", "S"]], - "protoplasm's": null, - "protoplasms": null, - "prototype": [["S", "D", "G", "M"]], - "prototypes": null, - "prototyped": null, - "prototyping": null, - "prototype's": null, - "prototypic": null, - "prototypical": [["Y"]], - "prototypically": null, - "protozoa": null, - "protozoan": [["M", "S"]], - "protozoan's": null, - "protozoans": null, - "protozoic": null, - "protozoon's": null, - "protract": [["D", "G"]], - "protracted": null, - "protracting": null, - "protrude": [["S", "D", "G"]], - "protrudes": null, - "protruded": null, - "protruding": null, - "protrusile": null, - "protrusion": [["M", "S"]], - "protrusion's": null, - "protrusions": null, - "protrusive": [["P", "Y"]], - "protrusiveness": null, - "protrusively": null, - "protuberance": [["S"]], - "protuberances": null, - "protuberant": null, - "Proudhon": [["M"]], - "Proudhon's": null, - "proud": [["T", "R", "Y"]], - "proudest": null, - "prouder": null, - "proudly": null, - "Proust": [["M"]], - "Proust's": null, - "provabilities": null, - "provability's": null, - "provability": [["U"]], - "unprovability": null, - "provableness": [["M"]], - "provableness's": null, - "provable": [["P"]], - "provably": null, - "prov": [["D", "R", "G", "Z", "B"]], - "proved": [["U"]], - "prover": [["M"]], - "proving": null, - "provers": null, - "unproved": null, - "proven": [["U"]], - "unproven": null, - "prove": [["E", "S", "D", "A", "G"]], - "disproves": null, - "disproved": null, - "disproving": null, - "proves": null, - "reproves": null, - "reproved": null, - "reprove": [["R"]], - "reproving": [["Y"]], - "provenance": [["S", "M"]], - "provenances": null, - "provenance's": null, - "Proven�al": null, - "Provencals": null, - "Provence": [["M"]], - "Provence's": null, - "provender": [["S", "D", "G"]], - "provenders": null, - "provendered": null, - "provendering": null, - "provenience": [["S", "M"]], - "proveniences": null, - "provenience's": null, - "provenly": null, - "proverb": [["D", "G"]], - "proverbed": null, - "proverbing": null, - "proverbial": [["Y"]], - "proverbially": null, - "Proverbs": [["M"]], - "Proverbs's": null, - "prover's": null, - "provide": [["D", "R", "S", "B", "G", "Z"]], - "provided": [["U"]], - "provider": [["M"]], - "provides": null, - "providable": null, - "providing": null, - "providers": null, - "unprovided": null, - "providence": [["S", "M"]], - "providences": null, - "providence's": null, - "Providence": [["S", "M"]], - "Providences": null, - "Providence's": null, - "providential": [["Y"]], - "providentially": null, - "provident": [["Y"]], - "providently": null, - "provider's": null, - "province": [["S", "M"]], - "provinces": null, - "province's": null, - "provincialism": [["S", "M"]], - "provincialisms": null, - "provincialism's": null, - "provincial": [["S", "Y"]], - "provincials": null, - "provincially": null, - "provisional": [["Y", "S"]], - "provisionally": null, - "provisionals": null, - "provisioner": [["M"]], - "provisioner's": null, - "provision": [["R"]], - "proviso": [["M", "S"]], - "proviso's": null, - "provisos": null, - "provocateur": [["S"]], - "provocateurs": null, - "provocativeness": [["S", "M"]], - "provocativenesses": null, - "provocativeness's": null, - "provocative": [["P"]], - "provoked": [["U"]], - "unprovoked": null, - "provoke": [["G", "Z", "D", "R", "S"]], - "provoking": [["Y"]], - "provokers": null, - "provoker": null, - "provokes": null, - "provokingly": null, - "provolone": [["S", "M"]], - "provolones": null, - "provolone's": null, - "Provo": [["M"]], - "Provo's": null, - "provost": [["M", "S"]], - "provost's": null, - "provosts": null, - "prowess": [["S", "M"]], - "prowesses": null, - "prowess's": null, - "prowler": [["M"]], - "prowler's": null, - "prowl": [["R", "D", "S", "Z", "G"]], - "prowled": null, - "prowls": null, - "prowlers": null, - "prowling": null, - "prow": [["T", "R", "M", "S"]], - "prowest": null, - "prower": null, - "prow's": null, - "prows": null, - "proximal": [["Y"]], - "proximally": null, - "proximateness": [["M"]], - "proximateness's": null, - "proximate": [["P", "Y"]], - "proximately": null, - "proximity": [["M", "S"]], - "proximity's": null, - "proximities": null, - "Proxmire": [["M"]], - "Proxmire's": null, - "proxy": [["S", "M"]], - "proxies": null, - "proxy's": null, - "Prozac": null, - "prude": [["M", "S"]], - "prude's": null, - "prudes": null, - "Prudence": [["M"]], - "Prudence's": null, - "prudence": [["S", "M"]], - "prudences": null, - "prudence's": null, - "Prudential": [["M"]], - "Prudential's": null, - "prudential": [["S", "Y"]], - "prudentials": null, - "prudentially": null, - "prudent": [["Y"]], - "prudently": null, - "prudery": [["M", "S"]], - "prudery's": null, - "pruderies": null, - "Prudi": [["M"]], - "Prudi's": null, - "prudishness": [["S", "M"]], - "prudishnesses": null, - "prudishness's": null, - "prudish": [["Y", "P"]], - "prudishly": null, - "Prudy": [["M"]], - "Prudy's": null, - "Prue": [["M"]], - "Prue's": null, - "Pruitt": [["M"]], - "Pruitt's": null, - "Pru": [["M"]], - "Pru's": null, - "prune": [["D", "S", "R", "G", "Z", "M"]], - "pruned": null, - "prunes": null, - "pruner": [["M"]], - "pruning": null, - "pruners": null, - "prune's": null, - "pruner's": null, - "prurience": [["M", "S"]], - "prurience's": null, - "pruriences": null, - "prurient": [["Y"]], - "pruriently": null, - "Prussia": [["M"]], - "Prussia's": null, - "Prussian": [["S"]], - "Prussians": null, - "prussic": null, - "Prut": [["M"]], - "Prut's": null, - "Pryce": [["M"]], - "Pryce's": null, - "pry": [["D", "R", "S", "G", "T", "Z"]], - "pried": null, - "pries": null, - "prying": [["Y"]], - "priers": null, - "pryer's": null, - "pryingly": null, - "P's": null, - "PS": null, - "p's": [["A"]], - "rep's": null, - "psalmist": [["S", "M"]], - "psalmists": null, - "psalmist's": null, - "psalm": [["S", "G", "D", "M"]], - "psalms": null, - "psalming": null, - "psalmed": null, - "psalm's": null, - "Psalms": [["M"]], - "Psalms's": null, - "psalter": null, - "Psalter": [["S", "M"]], - "Psalters": null, - "Psalter's": null, - "psaltery": [["M", "S"]], - "psaltery's": null, - "psalteries": null, - "psephologist": [["M"]], - "psephologist's": null, - "pseudonymous": null, - "pseudonym": [["S", "M"]], - "pseudonyms": null, - "pseudonym's": null, - "pseudopod": null, - "pseudo": [["S"]], - "pseudos": null, - "pseudoscience": [["S"]], - "pseudosciences": null, - "pshaw": [["S", "D", "G"]], - "pshaws": null, - "pshawed": null, - "pshawing": null, - "psi": [["S"]], - "psis": null, - "psittacoses": null, - "psittacosis": [["M"]], - "psittacosis's": null, - "psoriases": null, - "psoriasis": [["M"]], - "psoriasis's": null, - "psst": [["S"]], - "pssts": null, - "PST": null, - "psychedelically": null, - "psychedelic": [["S"]], - "psychedelics": null, - "psyche": [["M"]], - "psyche's": null, - "Psyche": [["M"]], - "Psyche's": null, - "psychiatric": null, - "psychiatrist": [["S", "M"]], - "psychiatrists": null, - "psychiatrist's": null, - "psychiatry": [["M", "S"]], - "psychiatry's": null, - "psychiatries": null, - "psychical": [["Y"]], - "psychically": null, - "psychic": [["M", "S"]], - "psychic's": null, - "psychics": null, - "psychoacoustic": [["S"]], - "psychoacoustics": [["M"]], - "psychoacoustics's": null, - "psychoactive": null, - "psychoanalysis": [["M"]], - "psychoanalysis's": null, - "psychoanalyst": [["S"]], - "psychoanalysts": null, - "psychoanalytic": null, - "psychoanalytical": null, - "psychoanalyze": [["S", "D", "G"]], - "psychoanalyzes": null, - "psychoanalyzed": null, - "psychoanalyzing": null, - "psychobabble": [["S"]], - "psychobabbles": null, - "psychobiology": [["M"]], - "psychobiology's": null, - "psychocultural": null, - "psychodrama": [["M", "S"]], - "psychodrama's": null, - "psychodramas": null, - "psychogenic": null, - "psychokinesis": [["M"]], - "psychokinesis's": null, - "psycholinguistic": [["S"]], - "psycholinguistics": [["M"]], - "psycholinguistics's": null, - "psycholinguists": null, - "psychological": [["Y"]], - "psychologically": null, - "psychologist": [["M", "S"]], - "psychologist's": null, - "psychologists": null, - "psychology": [["M", "S"]], - "psychology's": null, - "psychologies": null, - "psychometric": [["S"]], - "psychometrics": [["M"]], - "psychometrics's": null, - "psychometry": [["M"]], - "psychometry's": null, - "psychoneuroses": null, - "psychoneurosis": [["M"]], - "psychoneurosis's": null, - "psychopathic": [["S"]], - "psychopathics": null, - "psychopath": [["M"]], - "psychopath's": null, - "psychopathology": [["M"]], - "psychopathology's": null, - "psychopaths": null, - "psychopathy": [["S", "M"]], - "psychopathies": null, - "psychopathy's": null, - "psychophysical": [["Y"]], - "psychophysically": null, - "psychophysic": [["S"]], - "psychophysics": [["M"]], - "psychophysics's": null, - "psychophysiology": [["M"]], - "psychophysiology's": null, - "psychosis": [["M"]], - "psychosis's": null, - "psycho": [["S", "M"]], - "psychos": [["S"]], - "psycho's": null, - "psychosocial": [["Y"]], - "psychosocially": null, - "psychosomatic": [["S"]], - "psychosomatics": [["M"]], - "psychosomatics's": null, - "psychoses": null, - "psychotherapeutic": [["S"]], - "psychotherapeutics": null, - "psychotherapist": [["M", "S"]], - "psychotherapist's": null, - "psychotherapists": null, - "psychotherapy": [["S", "M"]], - "psychotherapies": null, - "psychotherapy's": null, - "psychotically": null, - "psychotic": [["S"]], - "psychotics": null, - "psychotropic": [["S"]], - "psychotropics": null, - "psychs": null, - "psych": [["S", "D", "G"]], - "psyches": null, - "psyched": null, - "psyching": null, - "PT": null, - "PTA": null, - "Ptah": [["M"]], - "Ptah's": null, - "ptarmigan": [["M", "S"]], - "ptarmigan's": null, - "ptarmigans": null, - "pt": [["C"]], - "dept": null, - "pterodactyl": [["S", "M"]], - "pterodactyls": null, - "pterodactyl's": null, - "Pt": [["M"]], - "Pt's": null, - "PTO": null, - "Ptolemaic": null, - "Ptolemaists": null, - "Ptolemy": [["M", "S"]], - "Ptolemy's": null, - "Ptolemies": null, - "ptomaine": [["M", "S"]], - "ptomaine's": null, - "ptomaines": null, - "Pu": null, - "pubbed": null, - "pubbing": null, - "pubertal": null, - "puberty": [["M", "S"]], - "puberty's": null, - "puberties": null, - "pubes": null, - "pubescence": [["S"]], - "pubescences": null, - "pubescent": null, - "pubic": null, - "pubis": [["M"]], - "pubis's": null, - "publican": [["A", "M", "S"]], - "republican": null, - "republican's": null, - "republicans": null, - "publican's": null, - "publicans": null, - "publication": [["A", "M", "S"]], - "republication": null, - "republication's": null, - "republications": null, - "publication's": null, - "publications": null, - "publicist": [["S", "M"]], - "publicists": null, - "publicist's": null, - "publicity": [["S", "M"]], - "publicities": null, - "publicity's": null, - "publicized": [["U"]], - "unpublicized": null, - "publicize": [["S", "D", "G"]], - "publicizes": null, - "publicizing": null, - "publicness": [["M"]], - "publicness's": null, - "publics": [["A"]], - "republics": null, - "public": [["Y", "S", "P"]], - "publicly": null, - "publishable": [["U"]], - "unpublishable": null, - "published": [["U", "A"]], - "unpublished": null, - "republished": null, - "publisher": [["A", "S", "M"]], - "republisher": null, - "republishers": null, - "republisher's": null, - "publishers": null, - "publisher's": null, - "publishes": [["A"]], - "republishes": null, - "publishing": [["M"]], - "publishing's": null, - "publish": [["J", "D", "R", "S", "B", "Z", "G"]], - "publishings": null, - "pub": [["M", "S"]], - "pub's": null, - "pubs": null, - "Puccini": [["M"]], - "Puccini's": null, - "puce": [["S", "M"]], - "puces": null, - "puce's": null, - "pucker": [["D", "G"]], - "puckered": null, - "puckering": null, - "Puckett": [["M"]], - "Puckett's": null, - "puck": [["G", "Z", "S", "D", "R", "M"]], - "pucking": null, - "puckers": null, - "pucks": null, - "pucked": null, - "puck's": null, - "puckishness": [["S"]], - "puckishnesses": null, - "puckish": [["Y", "P"]], - "puckishly": null, - "Puck": [["M"]], - "Puck's": null, - "pudding": [["M", "S"]], - "pudding's": null, - "puddings": null, - "puddle": [["J", "M", "G", "R", "S", "D"]], - "puddlings": null, - "puddle's": null, - "puddling": [["M"]], - "puddler": [["M"]], - "puddles": null, - "puddled": null, - "puddler's": null, - "puddling's": null, - "puddly": null, - "pudenda": null, - "pudendum": [["M"]], - "pudendum's": null, - "pudginess": [["S", "M"]], - "pudginesses": null, - "pudginess's": null, - "pudgy": [["P", "R", "T"]], - "pudgier": null, - "pudgiest": null, - "Puebla": [["M"]], - "Puebla's": null, - "Pueblo": [["M", "S"]], - "Pueblo's": null, - "Pueblos": null, - "pueblo": [["S", "M"]], - "pueblos": null, - "pueblo's": null, - "puerile": [["Y"]], - "puerilely": null, - "puerility": [["S", "M"]], - "puerilities": null, - "puerility's": null, - "puerperal": null, - "puers": null, - "Puerto": [["M"]], - "Puerto's": null, - "puffball": [["S", "M"]], - "puffballs": null, - "puffball's": null, - "puffer": [["M"]], - "puffer's": null, - "puffery": [["M"]], - "puffery's": null, - "puffiness": [["S"]], - "puffinesses": null, - "puffin": [["S", "M"]], - "puffins": null, - "puffin's": null, - "Puff": [["M"]], - "Puff's": null, - "puff": [["S", "G", "Z", "D", "R", "M"]], - "puffs": null, - "puffing": null, - "puffers": null, - "puffed": null, - "puff's": null, - "puffy": [["P", "R", "T"]], - "puffier": null, - "puffiest": null, - "Puget": [["M"]], - "Puget's": null, - "pugged": null, - "pugging": null, - "Pugh": [["M"]], - "Pugh's": null, - "pugilism": [["S", "M"]], - "pugilisms": null, - "pugilism's": null, - "pugilistic": null, - "pugilist": [["S"]], - "pugilists": null, - "pug": [["M", "S"]], - "pug's": null, - "pugs": null, - "pugnaciousness": [["M", "S"]], - "pugnaciousness's": null, - "pugnaciousnesses": null, - "pugnacious": [["Y", "P"]], - "pugnaciously": null, - "pugnacity": [["S", "M"]], - "pugnacities": null, - "pugnacity's": null, - "puissant": [["Y"]], - "puissantly": null, - "puke": [["G", "D", "S"]], - "puking": null, - "puked": null, - "pukes": null, - "pukka": null, - "Pulaski": [["S", "M"]], - "Pulaskis": null, - "Pulaski's": null, - "pulchritude": [["S", "M"]], - "pulchritudes": null, - "pulchritude's": null, - "pulchritudinous": [["M"]], - "pulchritudinous's": null, - "pule": [["G", "D", "S"]], - "puling": null, - "puled": null, - "pules": null, - "Pulitzer": [["S", "M"]], - "Pulitzers": null, - "Pulitzer's": null, - "pullback": [["S"]], - "pullbacks": null, - "pull": [["D", "R", "G", "Z", "S", "J"]], - "pulled": null, - "puller": null, - "pulling": null, - "pullers": null, - "pulls": null, - "pullings": null, - "pullet": [["S", "M"]], - "pullets": null, - "pullet's": null, - "pulley": [["S", "M"]], - "pulleys": null, - "pulley's": null, - "Pullman": [["M", "S"]], - "Pullman's": null, - "Pullmans": null, - "pullout": [["S"]], - "pullouts": null, - "pullover": [["S", "M"]], - "pullovers": null, - "pullover's": null, - "pulmonary": null, - "pulpiness": [["S"]], - "pulpinesses": null, - "pulpit": [["M", "S"]], - "pulpit's": null, - "pulpits": null, - "pulp": [["M", "D", "R", "G", "S"]], - "pulp's": null, - "pulped": null, - "pulper": null, - "pulping": null, - "pulps": null, - "pulpwood": [["M", "S"]], - "pulpwood's": null, - "pulpwoods": null, - "pulpy": [["P", "T", "R"]], - "pulpiest": null, - "pulpier": null, - "pulsar": [["M", "S"]], - "pulsar's": null, - "pulsars": null, - "pulsate": [["N", "G", "S", "D", "X"]], - "pulsation": [["M"]], - "pulsating": null, - "pulsates": null, - "pulsated": null, - "pulsations": null, - "pulsation's": null, - "pulse": [["A", "D", "S", "G"]], - "repulse": [["V", "N", "X"]], - "repulsed": null, - "repulses": null, - "repulsing": null, - "pulsed": null, - "pulses": null, - "pulsing": null, - "pulser": null, - "pulse's": null, - "pulverable": null, - "pulverization": [["M", "S"]], - "pulverization's": null, - "pulverizations": null, - "pulverized": [["U"]], - "unpulverized": null, - "pulverize": [["G", "Z", "S", "R", "D"]], - "pulverizing": null, - "pulverizers": null, - "pulverizes": [["U", "A"]], - "pulverizer": [["M"]], - "pulverizer's": null, - "unpulverizes": null, - "repulverizes": null, - "puma": [["S", "M"]], - "pumas": null, - "puma's": null, - "pumice": [["S", "D", "M", "G"]], - "pumices": null, - "pumiced": null, - "pumice's": null, - "pumicing": null, - "pummel": [["S", "D", "G"]], - "pummels": null, - "pummeled": null, - "pummeling": null, - "pumpernickel": [["S", "M"]], - "pumpernickels": null, - "pumpernickel's": null, - "pump": [["G", "Z", "S", "M", "D", "R"]], - "pumping": [["M"]], - "pumpers": null, - "pumps": null, - "pump's": null, - "pumped": null, - "pumper": null, - "pumping's": null, - "pumpkin": [["M", "S"]], - "pumpkin's": null, - "pumpkins": null, - "punchbowl": [["M"]], - "punchbowl's": null, - "punched": [["U"]], - "unpunched": null, - "puncheon": [["M", "S"]], - "puncheon's": null, - "puncheons": null, - "puncher": [["M"]], - "puncher's": null, - "punch": [["G", "R", "S", "D", "J", "B", "Z"]], - "punching": null, - "punches": null, - "punchings": null, - "punchable": null, - "punchers": null, - "punchline": [["S"]], - "punchlines": null, - "Punch": [["M"]], - "Punch's": null, - "punchy": [["R", "T"]], - "punchier": null, - "punchiest": null, - "punctilio": [["S", "M"]], - "punctilios": null, - "punctilio's": null, - "punctiliousness": [["S", "M"]], - "punctiliousnesses": null, - "punctiliousness's": null, - "punctilious": [["P", "Y"]], - "punctiliously": null, - "punctualities": null, - "punctuality": [["U", "M"]], - "unpunctuality": null, - "unpunctuality's": null, - "punctuality's": null, - "punctualness": [["M"]], - "punctualness's": null, - "punctual": [["P", "Y"]], - "punctually": null, - "punctuate": [["S", "D", "X", "N", "G"]], - "punctuates": null, - "punctuated": null, - "punctuations": null, - "punctuation": [["M"]], - "punctuating": null, - "punctuational": null, - "punctuation's": null, - "puncture": [["S", "D", "M", "G"]], - "punctures": null, - "punctured": null, - "puncture's": null, - "puncturing": null, - "punditry": [["S"]], - "punditries": null, - "pundit": [["S", "M"]], - "pundits": null, - "pundit's": null, - "pungency": [["M", "S"]], - "pungency's": null, - "pungencies": null, - "pungent": [["Y"]], - "pungently": null, - "Punic": null, - "puniness": [["M", "S"]], - "puniness's": null, - "puninesses": null, - "punished": [["U"]], - "unpunished": null, - "punisher": [["M"]], - "punisher's": null, - "punishment": [["M", "S"]], - "punishment's": null, - "punishments": null, - "punish": [["R", "S", "D", "G", "B", "L"]], - "punishes": null, - "punishing": null, - "punishable": null, - "punitiveness": [["M"]], - "punitiveness's": null, - "punitive": [["Y", "P"]], - "punitively": null, - "Punjabi": [["M"]], - "Punjabi's": null, - "Punjab": [["M"]], - "Punjab's": null, - "punk": [["T", "R", "M", "S"]], - "punkest": null, - "punker": null, - "punk's": null, - "punks": null, - "punky": [["P", "R", "S"]], - "punkiness": null, - "punkier": null, - "punkies": null, - "pun": [["M", "S"]], - "pun's": null, - "puns": null, - "punned": null, - "punning": null, - "punster": [["S", "M"]], - "punsters": null, - "punster's": null, - "punter": [["M"]], - "punter's": null, - "punt": [["G", "Z", "M", "D", "R", "S"]], - "punting": null, - "punters": null, - "punt's": null, - "punted": null, - "punts": null, - "puny": [["P", "T", "R"]], - "puniest": null, - "punier": null, - "pupae": null, - "pupal": null, - "pupa": [["M"]], - "pupa's": null, - "pupate": [["N", "G", "S", "D"]], - "pupation": null, - "pupating": null, - "pupates": null, - "pupated": null, - "pupillage": [["M"]], - "pupillage's": null, - "pupil": [["S", "M"]], - "pupils": null, - "pupil's": null, - "pup": [["M", "S"]], - "pup's": null, - "pups": null, - "pupped": null, - "puppeteer": [["S", "M"]], - "puppeteers": null, - "puppeteer's": null, - "puppetry": [["M", "S"]], - "puppetry's": null, - "puppetries": null, - "puppet": [["S", "M"]], - "puppets": null, - "puppet's": null, - "pupping": null, - "puppy": [["G", "S", "D", "M"]], - "puppying": null, - "puppies": null, - "puppied": null, - "puppy's": null, - "puppyish": null, - "purblind": null, - "Purcell": [["M"]], - "Purcell's": null, - "purchasable": null, - "purchase": [["G", "A", "S", "D"]], - "purchasing": null, - "repurchasing": null, - "repurchase": null, - "repurchases": null, - "repurchased": null, - "purchases": null, - "purchased": null, - "purchaser": [["M", "S"]], - "purchaser's": null, - "purchasers": null, - "purdah": [["M"]], - "purdah's": null, - "purdahs": null, - "Purdue": [["M"]], - "Purdue's": null, - "purebred": [["S"]], - "purebreds": null, - "puree": [["D", "S", "M"]], - "pureed": null, - "purees": null, - "puree's": null, - "pureeing": null, - "pureness": [["M", "S"]], - "pureness's": null, - "purenesses": null, - "pure": [["P", "Y", "T", "G", "D", "R"]], - "purely": null, - "purest": null, - "puring": null, - "pured": null, - "purer": null, - "purgation": [["M"]], - "purgation's": null, - "purgative": [["M", "S"]], - "purgative's": null, - "purgatives": null, - "purgatorial": null, - "purgatory": [["S", "M"]], - "purgatories": null, - "purgatory's": null, - "purge": [["G", "Z", "D", "S", "R"]], - "purging": null, - "purgers": null, - "purged": null, - "purges": null, - "purger": [["M"]], - "purger's": null, - "purify": [["G", "S", "R", "D", "N", "X", "Z"]], - "purifying": null, - "purifies": null, - "purifier": null, - "purified": null, - "purification": null, - "purifications": null, - "purifiers": null, - "Purim": [["S", "M"]], - "Purims": null, - "Purim's": null, - "Purina": [["M"]], - "Purina's": null, - "purine": [["S", "M"]], - "purines": null, - "purine's": null, - "purism": [["M", "S"]], - "purism's": null, - "purisms": null, - "puristic": null, - "purist": [["M", "S"]], - "purist's": null, - "purists": null, - "puritanic": null, - "puritanical": [["Y"]], - "puritanically": null, - "Puritanism": [["M", "S"]], - "Puritanism's": null, - "Puritanisms": null, - "puritanism": [["S"]], - "puritanisms": null, - "puritan": [["S", "M"]], - "puritans": null, - "puritan's": null, - "Puritan": [["S", "M"]], - "Puritans": null, - "Puritan's": null, - "purity": [["S", "M"]], - "purities": null, - "purity's": null, - "purlieu": [["S", "M"]], - "purlieus": null, - "purlieu's": null, - "purl": [["M", "D", "G", "S"]], - "purl's": null, - "purled": null, - "purling": null, - "purls": null, - "purloin": [["D", "R", "G", "S"]], - "purloined": null, - "purloiner": [["M"]], - "purloining": null, - "purloins": null, - "purloiner's": null, - "purple": [["M", "T", "G", "R", "S", "D"]], - "purple's": null, - "purplest": null, - "purpling": null, - "purpler": null, - "purples": null, - "purpled": null, - "purplish": null, - "purport": [["D", "R", "S", "Z", "G"]], - "purported": [["Y"]], - "purporter": null, - "purports": null, - "purporters": null, - "purporting": null, - "purportedly": null, - "purposefulness": [["S"]], - "purposefulnesses": null, - "purposeful": [["Y", "P"]], - "purposefully": null, - "purposelessness": [["M"]], - "purposelessness's": null, - "purposeless": [["P", "Y"]], - "purposelessly": null, - "purpose": [["S", "D", "V", "G", "Y", "M"]], - "purposes": null, - "purposed": null, - "purposive": [["Y", "P"]], - "purposing": null, - "purposely": null, - "purpose's": null, - "purposiveness": [["M"]], - "purposiveness's": null, - "purposively": null, - "purr": [["D", "S", "G"]], - "purred": null, - "purrs": null, - "purring": [["Y"]], - "purringly": null, - "purse": [["D", "S", "R", "G", "Z", "M"]], - "pursed": null, - "purses": null, - "purser": [["M"]], - "pursing": null, - "pursers": null, - "purse's": null, - "purser's": null, - "pursuance": [["M", "S"]], - "pursuance's": null, - "pursuances": null, - "pursuant": null, - "pursuer": [["M"]], - "pursuer's": null, - "pursue": [["Z", "G", "R", "S", "D"]], - "pursuers": null, - "pursuing": null, - "pursues": null, - "pursued": null, - "pursuit": [["M", "S"]], - "pursuit's": null, - "pursuits": null, - "purulence": [["M", "S"]], - "purulence's": null, - "purulences": null, - "purulent": null, - "Purus": null, - "purveyance": [["M", "S"]], - "purveyance's": null, - "purveyances": null, - "purvey": [["D", "G", "S"]], - "purveyed": null, - "purveying": null, - "purveys": null, - "purveyor": [["M", "S"]], - "purveyor's": null, - "purveyors": null, - "purview": [["S", "M"]], - "purviews": null, - "purview's": null, - "Pusan": [["M"]], - "Pusan's": null, - "Pusey": [["M"]], - "Pusey's": null, - "pushbutton": [["S"]], - "pushbuttons": null, - "pushcart": [["S", "M"]], - "pushcarts": null, - "pushcart's": null, - "pushchair": [["S", "M"]], - "pushchairs": null, - "pushchair's": null, - "pushdown": null, - "push": [["D", "S", "R", "B", "G", "Z"]], - "pushed": null, - "pushes": null, - "pusher": [["M"]], - "pushable": null, - "pushing": null, - "pushers": null, - "pusher's": null, - "pushily": null, - "pushiness": [["M", "S"]], - "pushiness's": null, - "pushinesses": null, - "Pushkin": [["M"]], - "Pushkin's": null, - "pushover": [["S", "M"]], - "pushovers": null, - "pushover's": null, - "Pushtu": [["M"]], - "Pushtu's": null, - "pushy": [["P", "R", "T"]], - "pushier": null, - "pushiest": null, - "pusillanimity": [["M", "S"]], - "pusillanimity's": null, - "pusillanimities": null, - "pusillanimous": [["Y"]], - "pusillanimously": null, - "pus": [["S", "M"]], - "puses": null, - "pus's": null, - "puss": [["S"]], - "pusses": null, - "pussycat": [["S"]], - "pussycats": null, - "pussyfoot": [["D", "S", "G"]], - "pussyfooted": null, - "pussyfoots": null, - "pussyfooting": null, - "pussy": [["T", "R", "S", "M"]], - "pussiest": null, - "pussier": null, - "pussies": null, - "pussy's": null, - "pustular": null, - "pustule": [["M", "S"]], - "pustule's": null, - "pustules": null, - "putative": [["Y"]], - "putatively": null, - "Putin": [["M"]], - "Putin's": null, - "put": [["I", "S"]], - "inputs": null, - "puts": null, - "Putnam": [["M"]], - "Putnam's": null, - "Putnem": [["M"]], - "Putnem's": null, - "putout": [["S"]], - "putouts": null, - "putrefaction": [["S", "M"]], - "putrefactions": null, - "putrefaction's": null, - "putrefactive": null, - "putrefy": [["D", "S", "G"]], - "putrefied": null, - "putrefies": null, - "putrefying": null, - "putrescence": [["M", "S"]], - "putrescence's": null, - "putrescences": null, - "putrescent": null, - "putridity": [["M"]], - "putridity's": null, - "putridness": [["M"]], - "putridness's": null, - "putrid": [["Y", "P"]], - "putridly": null, - "putsch": [["S"]], - "putsches": null, - "putted": [["I"]], - "inputted": null, - "puttee": [["M", "S"]], - "puttee's": null, - "puttees": null, - "putter": [["R", "D", "M", "G", "Z"]], - "putterer": null, - "puttered": null, - "putter's": null, - "puttering": null, - "putterers": null, - "putting": [["I"]], - "inputting": null, - "putt": [["S", "G", "Z", "M", "D", "R"]], - "putts": null, - "putters": null, - "putt's": null, - "puttying": [["M"]], - "puttying's": null, - "putty": [["S", "D", "M", "G"]], - "putties": null, - "puttied": null, - "putty's": null, - "puzzle": [["J", "R", "S", "D", "Z", "L", "G"]], - "puzzlings": null, - "puzzler": [["M"]], - "puzzles": null, - "puzzled": null, - "puzzlers": null, - "puzzlement": [["M", "S"]], - "puzzling": null, - "puzzlement's": null, - "puzzlements": null, - "puzzler's": null, - "PVC": null, - "pvt": null, - "Pvt": [["M"]], - "Pvt's": null, - "PW": null, - "PX": null, - "p": [["X", "T", "G", "J"]], - "pings": null, - "Pygmalion": [["M"]], - "Pygmalion's": null, - "pygmy": [["S", "M"]], - "pygmies": null, - "pygmy's": null, - "Pygmy": [["S", "M"]], - "Pygmies": null, - "Pygmy's": null, - "Pyhrric": [["M"]], - "Pyhrric's": null, - "pyknotic": null, - "Pyle": [["M"]], - "Pyle's": null, - "pylon": [["S", "M"]], - "pylons": null, - "pylon's": null, - "pylori": null, - "pyloric": null, - "pylorus": [["M"]], - "pylorus's": null, - "Pym": [["M"]], - "Pym's": null, - "Pynchon": [["M"]], - "Pynchon's": null, - "Pyongyang": [["M"]], - "Pyongyang's": null, - "pyorrhea": [["S", "M"]], - "pyorrheas": null, - "pyorrhea's": null, - "Pyotr": [["M"]], - "Pyotr's": null, - "pyramidal": [["Y"]], - "pyramidally": null, - "pyramid": [["G", "M", "D", "S"]], - "pyramiding": null, - "pyramid's": null, - "pyramided": null, - "pyramids": null, - "pyre": [["M", "S"]], - "pyre's": null, - "pyres": null, - "Pyrenees": null, - "Pyrex": [["S", "M"]], - "Pyrexes": null, - "Pyrex's": null, - "pyridine": [["M"]], - "pyridine's": null, - "pyrimidine": [["S", "M"]], - "pyrimidines": null, - "pyrimidine's": null, - "pyrite": [["M", "S"]], - "pyrite's": null, - "pyrites": null, - "pyroelectric": null, - "pyroelectricity": [["S", "M"]], - "pyroelectricities": null, - "pyroelectricity's": null, - "pyrolysis": [["M"]], - "pyrolysis's": null, - "pyrolyze": [["R", "S", "M"]], - "pyrolyzer": null, - "pyrolyzes": null, - "pyrolyze's": null, - "pyromaniac": [["S", "M"]], - "pyromaniacs": null, - "pyromaniac's": null, - "pyromania": [["M", "S"]], - "pyromania's": null, - "pyromanias": null, - "pyrometer": [["M", "S"]], - "pyrometer's": null, - "pyrometers": null, - "pyrometry": [["M"]], - "pyrometry's": null, - "pyrophosphate": [["M"]], - "pyrophosphate's": null, - "pyrotechnical": null, - "pyrotechnic": [["S"]], - "pyrotechnics": [["M"]], - "pyrotechnics's": null, - "pyroxene": [["M"]], - "pyroxene's": null, - "pyroxenite": [["M"]], - "pyroxenite's": null, - "Pyrrhic": null, - "Pythagoras": [["M"]], - "Pythagoras's": null, - "Pythagorean": [["S"]], - "Pythagoreans": null, - "Pythias": null, - "Python": [["M"]], - "Python's": null, - "python": [["M", "S"]], - "python's": null, - "pythons": null, - "pyx": [["M", "D", "S", "G"]], - "pyx's": null, - "pyxed": null, - "pyxes": null, - "pyxing": null, - "q": null, - "Q": null, - "QA": null, - "Qaddafi": [["M"]], - "Qaddafi's": null, - "Qantas": [["M"]], - "Qantas's": null, - "Qatar": [["M"]], - "Qatar's": null, - "QB": null, - "QC": null, - "QED": null, - "Qingdao": null, - "Qiqihar": [["M"]], - "Qiqihar's": null, - "QM": null, - "Qom": [["M"]], - "Qom's": null, - "qr": null, - "q's": null, - "Q's": null, - "qt": null, - "qty": null, - "qua": null, - "Quaalude": [["M"]], - "Quaalude's": null, - "quackery": [["M", "S"]], - "quackery's": null, - "quackeries": null, - "quackish": null, - "quack": [["S", "D", "G"]], - "quacks": null, - "quacked": null, - "quacking": null, - "quadded": null, - "quadding": null, - "quadrangle": [["M", "S"]], - "quadrangle's": null, - "quadrangles": null, - "quadrangular": [["M"]], - "quadrangular's": null, - "quadrant": [["M", "S"]], - "quadrant's": null, - "quadrants": null, - "quadraphonic": [["S"]], - "quadraphonics": null, - "quadrapole": null, - "quadratical": [["Y"]], - "quadratically": null, - "quadratic": [["S", "M"]], - "quadratics": null, - "quadratic's": null, - "quadrature": [["M", "S"]], - "quadrature's": null, - "quadratures": null, - "quadrennial": [["S", "Y"]], - "quadrennials": null, - "quadrennially": null, - "quadrennium": [["M", "S"]], - "quadrennium's": null, - "quadrenniums": null, - "quadric": null, - "quadriceps": [["S", "M"]], - "quadricepses": null, - "quadriceps's": null, - "quadrilateral": [["S"]], - "quadrilaterals": null, - "quadrille": [["X", "M", "G", "N", "S", "D"]], - "quadrillions": null, - "quadrille's": null, - "quadrilling": null, - "quadrillion": [["M", "H"]], - "quadrilles": null, - "quadrilled": null, - "quadrillion's": null, - "quadrillionth": null, - "quadripartite": [["N", "Y"]], - "quadripartition": null, - "quadripartitely": null, - "quadriplegia": [["S", "M"]], - "quadriplegias": null, - "quadriplegia's": null, - "quadriplegic": [["S", "M"]], - "quadriplegics": null, - "quadriplegic's": null, - "quadrivia": null, - "quadrivium": [["M"]], - "quadrivium's": null, - "quadrupedal": null, - "quadruped": [["M", "S"]], - "quadruped's": null, - "quadrupeds": null, - "quadruple": [["G", "S", "D"]], - "quadrupling": null, - "quadruples": null, - "quadrupled": null, - "quadruplet": [["S", "M"]], - "quadruplets": null, - "quadruplet's": null, - "quadruplicate": [["G", "D", "S"]], - "quadruplicating": null, - "quadruplicated": null, - "quadruplicates": null, - "quadruply": [["N", "X"]], - "quadruplication": null, - "quadruplications": null, - "quadrupole": null, - "quad": [["S", "M"]], - "quads": null, - "quad's": null, - "quadword": [["M", "S"]], - "quadword's": null, - "quadwords": null, - "quaffer": [["M"]], - "quaffer's": null, - "quaff": [["S", "R", "D", "G"]], - "quaffs": null, - "quaffed": null, - "quaffing": null, - "quagmire": [["D", "S", "M", "G"]], - "quagmired": null, - "quagmires": null, - "quagmire's": null, - "quagmiring": null, - "quahog": [["M", "S"]], - "quahog's": null, - "quahogs": null, - "quail": [["G", "S", "D", "M"]], - "quailing": null, - "quails": null, - "quailed": null, - "quail's": null, - "quaintness": [["M", "S"]], - "quaintness's": null, - "quaintnesses": null, - "quaint": [["P", "T", "Y", "R"]], - "quaintest": null, - "quaintly": null, - "quainter": null, - "quake": [["G", "Z", "D", "S", "R"]], - "quaking": null, - "quakers": null, - "quaked": null, - "quakes": null, - "quaker": null, - "Quakeress": [["M"]], - "Quakeress's": null, - "Quakerism": [["S"]], - "Quakerisms": null, - "Quaker": [["S", "M"]], - "Quakers": null, - "Quaker's": null, - "quaky": [["R", "T"]], - "quakier": null, - "quakiest": null, - "qualification": [["M", "E"]], - "qualification's": null, - "disqualification's": null, - "disqualification": null, - "qualified": [["U", "Y"]], - "unqualified": null, - "unqualifiedly": null, - "qualifiedly": null, - "qualifier": [["S", "M"]], - "qualifiers": null, - "qualifier's": null, - "qualify": [["E", "G", "X", "S", "D", "N"]], - "disqualify": null, - "disqualifying": null, - "disqualifications": null, - "disqualifies": null, - "disqualified": null, - "qualifying": null, - "qualifications": null, - "qualifies": null, - "qualitative": [["Y"]], - "qualitatively": null, - "quality": [["M", "S"]], - "quality's": null, - "qualities": null, - "qualmish": null, - "qualm": [["S", "M"]], - "qualms": null, - "qualm's": null, - "quandary": [["M", "S"]], - "quandary's": null, - "quandaries": null, - "quangos": null, - "quanta": [["M"]], - "quanta's": null, - "Quantico": [["M"]], - "Quantico's": null, - "quantifiable": [["U"]], - "unquantifiable": null, - "quantified": [["U"]], - "unquantified": null, - "quantifier": [["M"]], - "quantifier's": null, - "quantify": [["G", "N", "S", "R", "D", "Z", "X"]], - "quantifying": null, - "quantification": null, - "quantifies": null, - "quantifiers": null, - "quantifications": null, - "quantile": [["S"]], - "quantiles": null, - "quantitativeness": [["M"]], - "quantitativeness's": null, - "quantitative": [["P", "Y"]], - "quantitatively": null, - "quantity": [["M", "S"]], - "quantity's": null, - "quantities": null, - "quantization": [["M", "S"]], - "quantization's": null, - "quantizations": null, - "quantizer": [["M"]], - "quantizer's": null, - "quantize": [["Z", "G", "D", "R", "S"]], - "quantizers": null, - "quantizing": null, - "quantized": null, - "quantizes": null, - "quantum": [["M"]], - "quantum's": null, - "quarantine": [["D", "S", "G", "M"]], - "quarantined": null, - "quarantines": null, - "quarantining": null, - "quarantine's": null, - "quark": [["S", "M"]], - "quarks": null, - "quark's": null, - "quarreler": [["M"]], - "quarreler's": null, - "quarrellings": null, - "quarrelsomeness": [["M", "S"]], - "quarrelsomeness's": null, - "quarrelsomenesses": null, - "quarrelsome": [["P", "Y"]], - "quarrelsomely": null, - "quarrel": [["S", "Z", "D", "R", "M", "G"]], - "quarrels": null, - "quarrelers": null, - "quarreled": null, - "quarrel's": null, - "quarreling": null, - "quarrier": [["M"]], - "quarrier's": null, - "quarryman": [["M"]], - "quarryman's": null, - "quarrymen": null, - "quarry": [["R", "S", "D", "G", "M"]], - "quarries": null, - "quarried": null, - "quarrying": null, - "quarry's": null, - "quarterback": [["S", "G", "M", "D"]], - "quarterbacks": null, - "quarterbacking": null, - "quarterback's": null, - "quarterbacked": null, - "quarterdeck": [["M", "S"]], - "quarterdeck's": null, - "quarterdecks": null, - "quarterer": [["M"]], - "quarterer's": null, - "quarterfinal": [["M", "S"]], - "quarterfinal's": null, - "quarterfinals": null, - "quartering": [["M"]], - "quartering's": null, - "quarterly": [["S"]], - "quarterlies": null, - "quartermaster": [["M", "S"]], - "quartermaster's": null, - "quartermasters": null, - "quarter": [["M", "D", "R", "Y", "G"]], - "quarter's": null, - "quartered": null, - "quarterstaff": [["M"]], - "quarterstaff's": null, - "quarterstaves": null, - "quartet": [["S", "M"]], - "quartets": null, - "quartet's": null, - "quartic": [["S"]], - "quartics": null, - "quartile": [["S", "M"]], - "quartiles": null, - "quartile's": null, - "quarto": [["S", "M"]], - "quartos": null, - "quarto's": null, - "quart": [["R", "M", "S", "Z"]], - "quart's": null, - "quarts": null, - "quarters": null, - "quartzite": [["M"]], - "quartzite's": null, - "quartz": [["S", "M"]], - "quartzes": null, - "quartz's": null, - "quasar": [["S", "M"]], - "quasars": null, - "quasar's": null, - "quash": [["G", "S", "D"]], - "quashing": null, - "quashes": null, - "quashed": null, - "quasi": null, - "quasilinear": null, - "Quasimodo": [["M"]], - "Quasimodo's": null, - "Quaternary": null, - "quaternary": [["S"]], - "quaternaries": null, - "quaternion": [["S", "M"]], - "quaternions": null, - "quaternion's": null, - "quatrain": [["S", "M"]], - "quatrains": null, - "quatrain's": null, - "quaver": [["G", "D", "S"]], - "quavering": [["Y"]], - "quavered": null, - "quavers": null, - "quaveringly": null, - "quavery": null, - "Quayle": [["M"]], - "Quayle's": null, - "quayside": [["M"]], - "quayside's": null, - "quay": [["S", "M"]], - "quays": null, - "quay's": null, - "queasily": null, - "queasiness": [["S", "M"]], - "queasinesses": null, - "queasiness's": null, - "queasy": [["T", "R", "P"]], - "queasiest": null, - "queasier": null, - "Quebec": [["M"]], - "Quebec's": null, - "Quechua": [["M"]], - "Quechua's": null, - "Queenie": [["M"]], - "Queenie's": null, - "queenly": [["R", "T"]], - "queenlier": null, - "queenliest": null, - "queen": [["S", "G", "M", "D", "Y"]], - "queens": null, - "queening": null, - "queen's": null, - "queened": null, - "Queensland": [["M"]], - "Queensland's": null, - "Queen": [["S", "M"]], - "Queens": null, - "Queen's": null, - "queerness": [["S"]], - "queernesses": null, - "queer": [["S", "T", "G", "R", "D", "Y", "P"]], - "queers": null, - "queerest": null, - "queering": null, - "queerer": null, - "queered": null, - "queerly": null, - "queller": [["M"]], - "queller's": null, - "quell": [["S", "R", "D", "G"]], - "quells": null, - "quelled": null, - "quelling": null, - "Que": [["M"]], - "Que's": null, - "quenchable": [["U"]], - "unquenchable": null, - "quenched": [["U"]], - "unquenched": null, - "quencher": [["M"]], - "quencher's": null, - "quench": [["G", "Z", "R", "S", "D", "B"]], - "quenching": null, - "quenchers": null, - "quenches": null, - "quenchless": null, - "Quentin": [["M"]], - "Quentin's": null, - "Quent": [["M"]], - "Quent's": null, - "Querida": [["M"]], - "Querida's": null, - "quern": [["M"]], - "quern's": null, - "querulousness": [["S"]], - "querulousnesses": null, - "querulous": [["Y", "P"]], - "querulously": null, - "query": [["M", "G", "R", "S", "D"]], - "query's": null, - "querying": null, - "querier": null, - "queries": null, - "queried": null, - "quested": [["A"]], - "requested": [["U"]], - "quester": [["A", "S"]], - "requester": null, - "requesters": null, - "questers": null, - "quester's": null, - "quest": [["F", "S", "I", "M"]], - "quests": [["A"]], - "inquests": null, - "inquest": null, - "inquest's": null, - "quest's": null, - "questing": null, - "questionableness": [["M"]], - "questionableness's": null, - "questionable": [["P"]], - "questionably": [["U"]], - "unquestionably": null, - "questioned": [["U", "A"]], - "unquestioned": null, - "requestioned": null, - "questioner": [["M"]], - "questioner's": null, - "questioning": [["U", "Y"]], - "unquestioning": null, - "unquestioningly": null, - "questioningly": null, - "questionnaire": [["M", "S"]], - "questionnaire's": null, - "questionnaires": null, - "question": [["S", "M", "R", "D", "G", "B", "Z", "J"]], - "questions": null, - "question's": null, - "questioners": null, - "questionings": null, - "requests": null, - "Quetzalcoatl": [["M"]], - "Quetzalcoatl's": null, - "queued": [["C"]], - "dequeued": null, - "queue": [["G", "Z", "M", "D", "S", "R"]], - "queuing": [["C"]], - "queuers": null, - "queue's": null, - "queues": [["C"]], - "queuer": [["M"]], - "queuer's": null, - "dequeues": null, - "dequeuing": null, - "Quezon": [["M"]], - "Quezon's": null, - "quibble": [["G", "Z", "R", "S", "D"]], - "quibbling": null, - "quibblers": null, - "quibbler": [["M"]], - "quibbles": null, - "quibbled": null, - "quibbler's": null, - "quiche": [["S", "M"]], - "quiches": null, - "quiche's": null, - "quicken": [["R", "D", "G"]], - "quickener": null, - "quickened": null, - "quickening": null, - "quickie": [["M", "S"]], - "quickie's": null, - "quickies": null, - "quicklime": [["S", "M"]], - "quicklimes": null, - "quicklime's": null, - "quickness": [["M", "S"]], - "quickness's": null, - "quicknesses": null, - "quick": [["R", "N", "Y", "T", "X", "P", "S"]], - "quicker": null, - "quickly": null, - "quickest": null, - "quickens": null, - "quicks": null, - "quicksand": [["M", "S"]], - "quicksand's": null, - "quicksands": null, - "quicksilver": [["G", "D", "M", "S"]], - "quicksilvering": null, - "quicksilvered": null, - "quicksilver's": null, - "quicksilvers": null, - "quickstep": [["S", "M"]], - "quicksteps": null, - "quickstep's": null, - "quid": [["S", "M"]], - "quids": null, - "quid's": null, - "quiesce": [["D"]], - "quiesced": null, - "quiescence": [["M", "S"]], - "quiescence's": null, - "quiescences": null, - "quiescent": [["Y", "P"]], - "quiescently": null, - "quiescentness": null, - "quieted": [["E"]], - "disquieted": null, - "quieten": [["S", "G", "D"]], - "quietens": null, - "quietening": null, - "quietened": null, - "quieter": [["E"]], - "disquieter": null, - "quieter's": null, - "quieting": [["E"]], - "quietly": [["E"]], - "disquietly": null, - "quietness": [["M", "S"]], - "quietness's": null, - "quietnesses": null, - "quiets": [["E"]], - "disquiets": null, - "quietude": [["I", "E", "M", "S"]], - "inquietude": null, - "inquietude's": null, - "inquietudes": null, - "disquietude": null, - "disquietude's": null, - "disquietudes": null, - "quietude's": null, - "quietudes": null, - "quietus": [["M", "S"]], - "quietus's": null, - "quietuses": null, - "quiet": [["U", "T", "G", "P", "S", "D", "R", "Y"]], - "unquiet": null, - "unquieting": null, - "unquietness": null, - "unquiets": null, - "unquieted": null, - "unquieter": null, - "unquietly": null, - "quietest": null, - "Quillan": [["M"]], - "Quillan's": null, - "quill": [["G", "S", "D", "M"]], - "quilling": null, - "quills": null, - "quilled": null, - "quill's": null, - "Quill": [["M"]], - "Quill's": null, - "quilter": [["M"]], - "quilter's": null, - "quilting": [["M"]], - "quilting's": null, - "quilt": [["S", "Z", "J", "G", "R", "D", "M"]], - "quilts": null, - "quilters": null, - "quiltings": null, - "quilted": null, - "quilt's": null, - "quincentenary": [["M"]], - "quincentenary's": null, - "quince": [["S", "M"]], - "quinces": null, - "quince's": null, - "Quincey": [["M"]], - "Quincey's": null, - "quincy": [["M"]], - "quincy's": null, - "Quincy": [["M"]], - "Quincy's": null, - "quinine": [["M", "S"]], - "quinine's": null, - "quinines": null, - "Quinlan": [["M"]], - "Quinlan's": null, - "Quinn": [["M"]], - "Quinn's": null, - "quinquennial": [["Y"]], - "quinquennially": null, - "quinsy": [["S", "M"]], - "quinsies": null, - "quinsy's": null, - "Quinta": [["M"]], - "Quinta's": null, - "Quintana": [["M"]], - "Quintana's": null, - "quintessence": [["S", "M"]], - "quintessences": null, - "quintessence's": null, - "quintessential": [["Y"]], - "quintessentially": null, - "quintet": [["S", "M"]], - "quintets": null, - "quintet's": null, - "quintic": null, - "quintile": [["S", "M"]], - "quintiles": null, - "quintile's": null, - "Quintilian": [["M"]], - "Quintilian's": null, - "Quintilla": [["M"]], - "Quintilla's": null, - "quintillion": [["M", "H"]], - "quintillion's": null, - "quintillionth": [["M"]], - "quintillionth's": null, - "Quintina": [["M"]], - "Quintina's": null, - "Quintin": [["M"]], - "Quintin's": null, - "Quint": [["M"]], - "Quint's": null, - "quint": [["M", "S"]], - "quint's": null, - "quints": null, - "Quinton": [["M"]], - "Quinton's": null, - "quintuple": [["S", "D", "G"]], - "quintuples": null, - "quintupled": null, - "quintupling": null, - "quintuplet": [["M", "S"]], - "quintuplet's": null, - "quintuplets": null, - "Quintus": [["M"]], - "Quintus's": null, - "quip": [["M", "S"]], - "quip's": null, - "quips": null, - "quipped": null, - "quipper": null, - "quipping": null, - "quipster": [["S", "M"]], - "quipsters": null, - "quipster's": null, - "quired": [["A", "I"]], - "required": null, - "inquired": null, - "quire": [["M", "D", "S", "G"]], - "quire's": null, - "quires": [["A", "I"]], - "quiring": [["I", "A"]], - "requires": null, - "inquires": null, - "Quirinal": [["M"]], - "Quirinal's": null, - "requiring": null, - "quirkiness": [["S", "M"]], - "quirkinesses": null, - "quirkiness's": null, - "quirk": [["S", "G", "M", "D"]], - "quirks": null, - "quirking": null, - "quirk's": null, - "quirked": null, - "quirky": [["P", "T", "R"]], - "quirkiest": null, - "quirkier": null, - "quirt": [["S", "D", "M", "G"]], - "quirts": null, - "quirted": null, - "quirt's": null, - "quirting": null, - "Quisling": [["M"]], - "Quisling's": null, - "quisling": [["S", "M"]], - "quislings": null, - "quisling's": null, - "quitclaim": [["G", "D", "M", "S"]], - "quitclaiming": null, - "quitclaimed": null, - "quitclaim's": null, - "quitclaims": null, - "quit": [["D", "G", "S"]], - "quited": null, - "quiting": null, - "quits": null, - "quite": [["S", "A", "D", "G"]], - "quites": null, - "requites": null, - "requite": [["R", "Z"]], - "requited": [["U"]], - "requiting": null, - "Quito": [["M"]], - "Quito's": null, - "quittance": [["S", "M"]], - "quittances": null, - "quittance's": null, - "quitter": [["S", "M"]], - "quitters": null, - "quitter's": null, - "quitting": null, - "quiver": [["G", "D", "S"]], - "quivering": [["Y"]], - "quivered": null, - "quivers": null, - "quiveringly": null, - "quivery": null, - "Quixote": [["M"]], - "Quixote's": null, - "quixotic": null, - "quixotically": null, - "Quixotism": [["M"]], - "Quixotism's": null, - "quiz": [["M"]], - "quiz's": null, - "quizzed": null, - "quizzer": [["S", "M"]], - "quizzers": null, - "quizzer's": null, - "quizzes": null, - "quizzical": [["Y"]], - "quizzically": null, - "quizzing": null, - "quo": [["H"]], - "quoth": null, - "quoin": [["S", "G", "M", "D"]], - "quoins": null, - "quoining": null, - "quoin's": null, - "quoined": null, - "quoit": [["G", "S", "D", "M"]], - "quoiting": null, - "quoits": null, - "quoited": null, - "quoit's": null, - "quondam": null, - "quonset": null, - "Quonset": null, - "quorate": [["I"]], - "inquorate": null, - "quorum": [["M", "S"]], - "quorum's": null, - "quorums": null, - "quotability": [["S"]], - "quotabilities": null, - "quota": [["M", "S"]], - "quota's": null, - "quotas": null, - "quotation": [["S", "M"]], - "quotations": null, - "quotation's": null, - "quoter": [["M"]], - "quoter's": null, - "quote": [["U", "G", "S", "D"]], - "unquote": null, - "unquoting": null, - "unquotes": null, - "unquoted": null, - "quoting": null, - "quotes": null, - "quoted": null, - "quot": [["G", "D", "R", "B"]], - "quotable": null, - "quotidian": [["S"]], - "quotidians": null, - "quotient": [["S", "M"]], - "quotients": null, - "quotient's": null, - "qwerty": null, - "qwertys": null, - "Rabat": [["M"]], - "Rabat's": null, - "rabbet": [["G", "S", "M", "D"]], - "rabbeting": null, - "rabbets": null, - "rabbet's": null, - "rabbeted": null, - "Rabbi": [["M"]], - "Rabbi's": null, - "rabbi": [["M", "S"]], - "rabbi's": null, - "rabbis": null, - "rabbinate": [["M", "S"]], - "rabbinate's": null, - "rabbinates": null, - "rabbinic": null, - "rabbinical": [["Y"]], - "rabbinically": null, - "rabbiter": [["M"]], - "rabbiter's": null, - "rabbit": [["M", "R", "D", "S", "G"]], - "rabbit's": null, - "rabbited": null, - "rabbits": null, - "rabbiting": null, - "rabble": [["G", "M", "R", "S", "D"]], - "rabbling": null, - "rabble's": null, - "rabbler": [["M"]], - "rabbles": null, - "rabbled": null, - "rabbler's": null, - "Rabelaisian": null, - "Rabelais": [["M"]], - "Rabelais's": null, - "rabidness": [["S", "M"]], - "rabidnesses": null, - "rabidness's": null, - "rabid": [["Y", "P"]], - "rabidly": null, - "rabies": null, - "Rabi": [["M"]], - "Rabi's": null, - "Rabin": [["M"]], - "Rabin's": null, - "rabis": null, - "Rab": [["M"]], - "Rab's": null, - "raccoon": [["S", "M"]], - "raccoons": null, - "raccoon's": null, - "racecourse": [["M", "S"]], - "racecourse's": null, - "racecourses": null, - "racegoers": null, - "racehorse": [["S", "M"]], - "racehorses": null, - "racehorse's": null, - "raceme": [["M", "S"]], - "raceme's": null, - "racemes": null, - "race": [["M", "Z", "G", "D", "R", "S", "J"]], - "race's": null, - "racers": null, - "racing": null, - "raced": null, - "racer": [["M"]], - "races": null, - "racings": null, - "racer's": null, - "racetrack": [["S", "M", "R"]], - "racetracks": null, - "racetrack's": null, - "racetracker": null, - "raceway": [["S", "M"]], - "raceways": null, - "raceway's": null, - "Rachael": [["M"]], - "Rachael's": null, - "Rachele": [["M"]], - "Rachele's": null, - "Rachelle": [["M"]], - "Rachelle's": null, - "Rachel": [["M"]], - "Rachel's": null, - "Rachmaninoff": [["M"]], - "Rachmaninoff's": null, - "racialism": [["M", "S"]], - "racialism's": null, - "racialisms": null, - "racialist": [["M", "S"]], - "racialist's": null, - "racialists": null, - "racial": [["Y"]], - "racially": null, - "racily": null, - "Racine": [["M"]], - "Racine's": null, - "raciness": [["M", "S"]], - "raciness's": null, - "racinesses": null, - "racism": [["S"]], - "racisms": null, - "racist": [["M", "S"]], - "racist's": null, - "racists": null, - "racketeer": [["M", "D", "S", "J", "G"]], - "racketeer's": null, - "racketeered": null, - "racketeers": null, - "racketeerings": null, - "racketeering": null, - "racket": [["S", "M", "D", "G"]], - "rackets": null, - "racket's": null, - "racketed": null, - "racketing": null, - "rackety": null, - "rack": [["G", "D", "R", "M", "S"]], - "racking": null, - "racked": null, - "racker": null, - "rack's": null, - "racks": null, - "raconteur": [["S", "M"]], - "raconteurs": null, - "raconteur's": null, - "racoon's": null, - "racquetball": [["S"]], - "racquetballs": null, - "racquet's": null, - "racy": [["R", "T", "P"]], - "racier": null, - "raciest": null, - "radarscope": [["M", "S"]], - "radarscope's": null, - "radarscopes": null, - "radar": [["S", "M"]], - "radars": null, - "radar's": null, - "Radcliffe": [["M"]], - "Radcliffe's": null, - "radded": null, - "radder": null, - "raddest": null, - "Raddie": [["M"]], - "Raddie's": null, - "radding": null, - "Raddy": [["M"]], - "Raddy's": null, - "radial": [["S", "Y"]], - "radials": null, - "radially": null, - "radiance": [["S", "M"]], - "radiances": null, - "radiance's": null, - "radian": [["S", "M"]], - "radians": null, - "radian's": null, - "radiant": [["Y", "S"]], - "radiantly": null, - "radiants": null, - "radiate": [["X", "S", "D", "Y", "V", "N", "G"]], - "radiations": null, - "radiates": null, - "radiated": null, - "radiately": null, - "radiative": [["Y"]], - "radiation": [["M"]], - "radiating": null, - "radiation's": null, - "radiatively": null, - "radiator": [["M", "S"]], - "radiator's": null, - "radiators": null, - "radicalism": [["M", "S"]], - "radicalism's": null, - "radicalisms": null, - "radicalization": [["S"]], - "radicalizations": null, - "radicalize": [["G", "S", "D"]], - "radicalizing": null, - "radicalizes": null, - "radicalized": null, - "radicalness": [["M"]], - "radicalness's": null, - "radical": [["S", "P", "Y"]], - "radicals": null, - "radically": null, - "radices's": null, - "radii": [["M"]], - "radii's": null, - "radioactive": [["Y"]], - "radioactively": null, - "radioactivity": [["M", "S"]], - "radioactivity's": null, - "radioactivities": null, - "radioastronomical": null, - "radioastronomy": null, - "radiocarbon": [["M", "S"]], - "radiocarbon's": null, - "radiocarbons": null, - "radiochemical": [["Y"]], - "radiochemically": null, - "radiochemistry": [["M"]], - "radiochemistry's": null, - "radiogalaxy": [["S"]], - "radiogalaxies": null, - "radiogram": [["S", "M"]], - "radiograms": null, - "radiogram's": null, - "radiographer": [["M", "S"]], - "radiographer's": null, - "radiographers": null, - "radiographic": null, - "radiography": [["M", "S"]], - "radiography's": null, - "radiographies": null, - "radioisotope": [["S", "M"]], - "radioisotopes": null, - "radioisotope's": null, - "radiologic": null, - "radiological": [["Y"]], - "radiologically": null, - "radiologist": [["M", "S"]], - "radiologist's": null, - "radiologists": null, - "radiology": [["M", "S"]], - "radiology's": null, - "radiologies": null, - "radioman": [["M"]], - "radioman's": null, - "radiomen": null, - "radiometer": [["S", "M"]], - "radiometers": null, - "radiometer's": null, - "radiometric": null, - "radiometry": [["M", "S"]], - "radiometry's": null, - "radiometries": null, - "radionics": null, - "radionuclide": [["M"]], - "radionuclide's": null, - "radiopasteurization": null, - "radiophone": [["M", "S"]], - "radiophone's": null, - "radiophones": null, - "radiophysics": null, - "radioscopy": [["S", "M"]], - "radioscopies": null, - "radioscopy's": null, - "radio": [["S", "M", "D", "G"]], - "radios": null, - "radio's": null, - "radioed": null, - "radioing": null, - "radiosonde": [["S", "M"]], - "radiosondes": null, - "radiosonde's": null, - "radiosterilization": null, - "radiosterilized": null, - "radiotelegraph": null, - "radiotelegraphs": null, - "radiotelegraphy": [["M", "S"]], - "radiotelegraphy's": null, - "radiotelegraphies": null, - "radiotelephone": [["S", "M"]], - "radiotelephones": null, - "radiotelephone's": null, - "radiotherapist": [["S", "M"]], - "radiotherapists": null, - "radiotherapist's": null, - "radiotherapy": [["S", "M"]], - "radiotherapies": null, - "radiotherapy's": null, - "radish": [["M", "S"]], - "radish's": null, - "radishes": null, - "radium": [["M", "S"]], - "radium's": null, - "radiums": null, - "radius": [["M"]], - "radius's": null, - "radix": [["S", "M"]], - "radixes": null, - "radix's": null, - "Rad": [["M"]], - "Rad's": null, - "radon": [["S", "M"]], - "radons": null, - "radon's": null, - "rad": [["S"]], - "rads": null, - "Raeann": [["M"]], - "Raeann's": null, - "Rae": [["M"]], - "Rae's": null, - "RAF": null, - "Rafaela": [["M"]], - "Rafaela's": null, - "Rafaelia": [["M"]], - "Rafaelia's": null, - "Rafaelita": [["M"]], - "Rafaelita's": null, - "Rafaellle": [["M"]], - "Rafaellle's": null, - "Rafaello": [["M"]], - "Rafaello's": null, - "Rafael": [["M"]], - "Rafael's": null, - "Rafa": [["M"]], - "Rafa's": null, - "Rafe": [["M"]], - "Rafe's": null, - "Raffaello": [["M"]], - "Raffaello's": null, - "Raffarty": [["M"]], - "Raffarty's": null, - "Rafferty": [["M"]], - "Rafferty's": null, - "raffia": [["S", "M"]], - "raffias": null, - "raffia's": null, - "raffishness": [["S", "M"]], - "raffishnesses": null, - "raffishness's": null, - "raffish": [["P", "Y"]], - "raffishly": null, - "raffle": [["M", "S", "D", "G"]], - "raffle's": null, - "raffles": null, - "raffled": null, - "raffling": null, - "Raff": [["M"]], - "Raff's": null, - "Rafi": [["M"]], - "Rafi's": null, - "Raf": [["M"]], - "Raf's": null, - "rafter": [["D", "M"]], - "raftered": null, - "rafter's": null, - "raft": [["G", "Z", "S", "M", "D", "R"]], - "rafting": null, - "rafters": null, - "rafts": null, - "raft's": null, - "rafted": null, - "raga": [["M", "S"]], - "raga's": null, - "ragas": null, - "ragamuffin": [["M", "S"]], - "ragamuffin's": null, - "ragamuffins": null, - "ragbag": [["S", "M"]], - "ragbags": null, - "ragbag's": null, - "rage": [["M", "S"]], - "rage's": null, - "rages": null, - "raggedness": [["S", "M"]], - "raggednesses": null, - "raggedness's": null, - "ragged": [["P", "R", "Y", "T"]], - "raggeder": null, - "raggedly": null, - "raggedest": null, - "raggedy": [["T", "R"]], - "raggediest": null, - "raggedier": null, - "ragging": null, - "rag": [["G", "S", "M", "D"]], - "raging": [["Y"]], - "rags": null, - "rag's": null, - "raged": null, - "ragingly": null, - "raglan": [["M", "S"]], - "raglan's": null, - "raglans": null, - "Ragnar": [["M"]], - "Ragnar's": null, - "Ragnar�k": null, - "ragout": [["S", "M", "D", "G"]], - "ragouts": null, - "ragout's": null, - "ragouted": null, - "ragouting": null, - "ragtag": [["M", "S"]], - "ragtag's": null, - "ragtags": null, - "ragtime": [["M", "S"]], - "ragtime's": null, - "ragtimes": null, - "ragweed": [["M", "S"]], - "ragweed's": null, - "ragweeds": null, - "ragwort": [["M"]], - "ragwort's": null, - "Rahal": [["M"]], - "Rahal's": null, - "rah": [["D", "G"]], - "rahed": null, - "rahing": null, - "Rahel": [["M"]], - "Rahel's": null, - "rahs": null, - "raider": [["M"]], - "raider's": null, - "raid": [["M", "D", "R", "S", "G", "Z"]], - "raid's": null, - "raided": null, - "raids": null, - "raiding": null, - "raiders": null, - "railbird": [["S"]], - "railbirds": null, - "rail": [["C", "D", "G", "S"]], - "derailed": null, - "derailing": null, - "derails": null, - "railed": null, - "railing": [["M", "S"]], - "rails": null, - "railer": [["S", "M"]], - "railers": null, - "railer's": null, - "railhead": [["S", "M"]], - "railheads": null, - "railhead's": null, - "railing's": null, - "railings": null, - "raillery": [["M", "S"]], - "raillery's": null, - "railleries": null, - "railroader": [["M"]], - "railroader's": null, - "railroading": [["M"]], - "railroading's": null, - "railroad": [["S", "Z", "R", "D", "M", "G", "J"]], - "railroads": null, - "railroaders": null, - "railroaded": null, - "railroad's": null, - "railroadings": null, - "rail's": null, - "railwaymen": null, - "railway": [["M", "S"]], - "railway's": null, - "railways": null, - "raiment": [["S", "M"]], - "raiments": null, - "raiment's": null, - "Raimondo": [["M"]], - "Raimondo's": null, - "Raimund": [["M"]], - "Raimund's": null, - "Raimundo": [["M"]], - "Raimundo's": null, - "Raina": [["M"]], - "Raina's": null, - "rainbow": [["M", "S"]], - "rainbow's": null, - "rainbows": null, - "raincloud": [["S"]], - "rainclouds": null, - "raincoat": [["S", "M"]], - "raincoats": null, - "raincoat's": null, - "raindrop": [["S", "M"]], - "raindrops": null, - "raindrop's": null, - "Raine": [["M", "R"]], - "Raine's": null, - "Rainer": [["M"]], - "Rainer's": null, - "rainfall": [["S", "M"]], - "rainfalls": null, - "rainfall's": null, - "rainforest's": null, - "rain": [["G", "S", "D", "M"]], - "raining": null, - "rains": null, - "rained": null, - "rain's": null, - "Rainier": [["M"]], - "Rainier's": null, - "rainless": null, - "rainmaker": [["S", "M"]], - "rainmakers": null, - "rainmaker's": null, - "rainmaking": [["M", "S"]], - "rainmaking's": null, - "rainmakings": null, - "rainproof": [["G", "S", "D"]], - "rainproofing": null, - "rainproofs": null, - "rainproofed": null, - "rainstorm": [["S", "M"]], - "rainstorms": null, - "rainstorm's": null, - "rainwater": [["M", "S"]], - "rainwater's": null, - "rainwaters": null, - "rainy": [["R", "T"]], - "rainier": null, - "rainiest": null, - "raise": [["D", "S", "R", "G", "Z"]], - "raised": null, - "raises": null, - "raiser": [["M"]], - "raising": [["M"]], - "raisers": null, - "raiser's": null, - "raising's": null, - "raisin": [["M", "S"]], - "raisin's": null, - "raisins": null, - "rajah": [["M"]], - "rajah's": null, - "rajahs": null, - "Rajive": [["M"]], - "Rajive's": null, - "raj": [["M"]], - "raj's": null, - "Rakel": [["M"]], - "Rakel's": null, - "rake": [["M", "G", "D", "R", "S"]], - "rake's": null, - "raking": null, - "raked": null, - "raker": [["M"]], - "rakes": null, - "raker's": null, - "rakishness": [["M", "S"]], - "rakishness's": null, - "rakishnesses": null, - "rakish": [["P", "Y"]], - "rakishly": null, - "Raleigh": [["M"]], - "Raleigh's": null, - "Ralf": [["M"]], - "Ralf's": null, - "Ralina": [["M"]], - "Ralina's": null, - "rally": [["G", "S", "D"]], - "rallying": null, - "rallies": null, - "rallied": null, - "Ralph": [["M"]], - "Ralph's": null, - "Ralston": [["M"]], - "Ralston's": null, - "Ra": [["M"]], - "Ra's": null, - "Ramada": [["M"]], - "Ramada's": null, - "Ramadan": [["S", "M"]], - "Ramadans": null, - "Ramadan's": null, - "Ramakrishna": [["M"]], - "Ramakrishna's": null, - "Rama": [["M"]], - "Rama's": null, - "Raman": [["M"]], - "Raman's": null, - "Ramayana": [["M"]], - "Ramayana's": null, - "ramble": [["J", "R", "S", "D", "G", "Z"]], - "ramblings": null, - "rambler": [["M"]], - "rambles": null, - "rambled": null, - "rambling": [["Y"]], - "ramblers": null, - "rambler's": null, - "ramblingly": null, - "Rambo": [["M"]], - "Rambo's": null, - "rambunctiousness": [["S"]], - "rambunctiousnesses": null, - "rambunctious": [["P", "Y"]], - "rambunctiously": null, - "ramekin": [["S", "M"]], - "ramekins": null, - "ramekin's": null, - "ramie": [["M", "S"]], - "ramie's": null, - "ramies": null, - "ramification": [["M"]], - "ramification's": null, - "ramify": [["X", "N", "G", "S", "D"]], - "ramifications": null, - "ramifying": null, - "ramifies": null, - "ramified": null, - "Ramirez": [["M"]], - "Ramirez's": null, - "Ramiro": [["M"]], - "Ramiro's": null, - "ramjet": [["S", "M"]], - "ramjets": null, - "ramjet's": null, - "Ram": [["M"]], - "Ram's": null, - "rammed": null, - "ramming": null, - "Ramo": [["M", "S"]], - "Ramo's": null, - "Ramos": null, - "Ramona": [["M"]], - "Ramona's": null, - "Ramonda": [["M"]], - "Ramonda's": null, - "Ramon": [["M"]], - "Ramon's": null, - "rampage": [["S", "D", "G"]], - "rampages": null, - "rampaged": null, - "rampaging": null, - "rampancy": [["S"]], - "rampancies": null, - "rampant": [["Y"]], - "rampantly": null, - "rampart": [["S", "G", "M", "D"]], - "ramparts": null, - "ramparting": null, - "rampart's": null, - "ramparted": null, - "ramp": [["G", "M", "D", "S"]], - "ramping": null, - "ramp's": null, - "ramped": null, - "ramps": null, - "ramrodded": null, - "ramrodding": null, - "ramrod": [["M", "S"]], - "ramrod's": null, - "ramrods": null, - "RAM": [["S"]], - "RAMs": null, - "Ramsay": [["M"]], - "Ramsay's": null, - "Ramses": [["M"]], - "Ramses's": null, - "Ramsey": [["M"]], - "Ramsey's": null, - "ramshackle": null, - "ram": [["S", "M"]], - "rams": [["S"]], - "ram's": null, - "ramses": null, - "ran": [["A"]], - "reran": null, - "Rana": [["M"]], - "Rana's": null, - "Rancell": [["M"]], - "Rancell's": null, - "Rance": [["M"]], - "Rance's": null, - "rancher": [["M"]], - "rancher's": null, - "rancho": [["S", "M"]], - "ranchos": null, - "rancho's": null, - "ranch": [["Z", "R", "S", "D", "M", "J", "G"]], - "ranchers": null, - "ranches": null, - "ranched": null, - "ranch's": null, - "ranchings": null, - "ranching": null, - "rancidity": [["M", "S"]], - "rancidity's": null, - "rancidities": null, - "rancidness": [["S", "M"]], - "rancidnesses": null, - "rancidness's": null, - "rancid": [["P"]], - "rancorous": [["Y"]], - "rancorously": null, - "rancor": [["S", "M"]], - "rancors": null, - "rancor's": null, - "Randall": [["M"]], - "Randall's": null, - "Randal": [["M"]], - "Randal's": null, - "Randa": [["M"]], - "Randa's": null, - "Randee": [["M"]], - "Randee's": null, - "Randell": [["M"]], - "Randell's": null, - "Randene": [["M"]], - "Randene's": null, - "Randie": [["M"]], - "Randie's": null, - "Randi": [["M"]], - "Randi's": null, - "randiness": [["S"]], - "randinesses": null, - "Rand": [["M"]], - "Rand's": null, - "rand": [["M", "D", "G", "S"]], - "rand's": null, - "randed": null, - "randing": null, - "rands": null, - "Randolf": [["M"]], - "Randolf's": null, - "Randolph": [["M"]], - "Randolph's": null, - "randomization": [["S", "M"]], - "randomizations": null, - "randomization's": null, - "randomize": [["S", "R", "D", "G"]], - "randomizes": null, - "randomizer": null, - "randomized": null, - "randomizing": null, - "randomness": [["S", "M"]], - "randomnesses": null, - "randomness's": null, - "random": [["P", "Y", "S"]], - "randomly": null, - "randoms": null, - "Randy": [["M"]], - "Randy's": null, - "randy": [["P", "R", "S", "T"]], - "randier": null, - "randies": null, - "randiest": null, - "Ranee": [["M"]], - "Ranee's": null, - "ranee": [["S", "M"]], - "ranees": null, - "ranee's": null, - "ranged": [["C"]], - "deranged": null, - "rangeland": [["S"]], - "rangelands": null, - "ranger": [["M"]], - "ranger's": null, - "ranges": [["C"]], - "deranges": null, - "range": [["S", "M"]], - "range's": null, - "rang": [["G", "Z", "D", "R"]], - "ranging": [["C"]], - "rangers": null, - "ranginess": [["S"]], - "ranginesses": null, - "deranging": null, - "Rangoon": [["M"]], - "Rangoon's": null, - "rangy": [["R", "P", "T"]], - "rangier": null, - "rangiest": null, - "Rania": [["M"]], - "Rania's": null, - "Ranice": [["M"]], - "Ranice's": null, - "Ranier": [["M"]], - "Ranier's": null, - "Rani": [["M", "R"]], - "Rani's": null, - "Ranique": [["M"]], - "Ranique's": null, - "rani's": null, - "ranked": [["U"]], - "unranked": null, - "ranker": [["M"]], - "ranker's": null, - "rank": [["G", "Z", "T", "Y", "D", "R", "M", "P", "J", "S"]], - "ranking": [["M"]], - "rankers": null, - "rankest": null, - "rankly": null, - "rank's": null, - "rankness": [["M", "S"]], - "rankings": null, - "ranks": null, - "Rankine": [["M"]], - "Rankine's": null, - "ranking's": null, - "Rankin": [["M"]], - "Rankin's": null, - "rankle": [["S", "D", "G"]], - "rankles": null, - "rankled": null, - "rankling": null, - "rankness's": null, - "ranknesses": null, - "Ranna": [["M"]], - "Ranna's": null, - "ransacker": [["M"]], - "ransacker's": null, - "ransack": [["G", "R", "D", "S"]], - "ransacking": null, - "ransacked": null, - "ransacks": null, - "Ransell": [["M"]], - "Ransell's": null, - "ransomer": [["M"]], - "ransomer's": null, - "Ransom": [["M"]], - "Ransom's": null, - "ransom": [["Z", "G", "M", "R", "D", "S"]], - "ransomers": null, - "ransoming": null, - "ransom's": null, - "ransomed": null, - "ransoms": null, - "ranter": [["M"]], - "ranter's": null, - "rant": [["G", "Z", "D", "R", "J", "S"]], - "ranting": [["Y"]], - "ranters": null, - "ranted": null, - "rantings": null, - "rants": null, - "rantingly": null, - "Raoul": [["M"]], - "Raoul's": null, - "rapaciousness": [["M", "S"]], - "rapaciousness's": null, - "rapaciousnesses": null, - "rapacious": [["Y", "P"]], - "rapaciously": null, - "rapacity": [["M", "S"]], - "rapacity's": null, - "rapacities": null, - "rapeseed": [["M"]], - "rapeseed's": null, - "rape": [["S", "M"]], - "rapes": null, - "rape's": null, - "Raphaela": [["M"]], - "Raphaela's": null, - "Raphael": [["M"]], - "Raphael's": null, - "rapidity": [["M", "S"]], - "rapidity's": null, - "rapidities": null, - "rapidness": [["S"]], - "rapidnesses": null, - "rapid": [["Y", "R", "P", "S", "T"]], - "rapidly": null, - "rapider": null, - "rapids": null, - "rapidest": null, - "rapier": [["S", "M"]], - "rapiers": null, - "rapier's": null, - "rapine": [["S", "M"]], - "rapines": null, - "rapine's": null, - "rapist": [["M", "S"]], - "rapist's": null, - "rapists": null, - "rap": [["M", "D", "R", "S", "Z", "G"]], - "rap's": null, - "raped": null, - "raper": null, - "raps": null, - "rapers": null, - "raping": null, - "rapped": null, - "rappelled": null, - "rappelling": null, - "rappel": [["S"]], - "rappels": null, - "rapper": [["S", "M"]], - "rappers": null, - "rapper's": null, - "rapping": [["M"]], - "rapping's": null, - "rapporteur": [["S", "M"]], - "rapporteurs": null, - "rapporteur's": null, - "rapport": [["S", "M"]], - "rapports": null, - "rapport's": null, - "rapprochement": [["S", "M"]], - "rapprochements": null, - "rapprochement's": null, - "rapscallion": [["M", "S"]], - "rapscallion's": null, - "rapscallions": null, - "raptness": [["S"]], - "raptnesses": null, - "rapture": [["M", "G", "S", "D"]], - "rapture's": null, - "rapturing": null, - "raptures": null, - "raptured": null, - "rapturousness": [["M"]], - "rapturousness's": null, - "rapturous": [["Y", "P"]], - "rapturously": null, - "rapt": [["Y", "P"]], - "raptly": null, - "Rapunzel": [["M"]], - "Rapunzel's": null, - "Raquela": [["M"]], - "Raquela's": null, - "Raquel": [["M"]], - "Raquel's": null, - "rarebit": [["M", "S"]], - "rarebit's": null, - "rarebits": null, - "rarefaction": [["M", "S"]], - "rarefaction's": null, - "rarefactions": null, - "rarefy": [["G", "S", "D"]], - "rarefying": null, - "rarefies": null, - "rarefied": null, - "rareness": [["M", "S"]], - "rareness's": null, - "rarenesses": null, - "rare": [["Y", "T", "P", "G", "D", "R", "S"]], - "rarely": null, - "rarest": null, - "raring": null, - "rared": null, - "rarer": null, - "rares": null, - "rarity": [["S", "M"]], - "rarities": null, - "rarity's": null, - "Rasalgethi": [["M"]], - "Rasalgethi's": null, - "Rasalhague": [["M"]], - "Rasalhague's": null, - "rascal": [["S", "M", "Y"]], - "rascals": null, - "rascal's": null, - "rascally": null, - "rasher": [["M"]], - "rasher's": null, - "rashness": [["S"]], - "rashnesses": null, - "rash": [["P", "Z", "T", "Y", "S", "R"]], - "rashers": null, - "rashest": null, - "rashly": null, - "rashes": null, - "Rasia": [["M"]], - "Rasia's": null, - "Rasla": [["M"]], - "Rasla's": null, - "Rasmussen": [["M"]], - "Rasmussen's": null, - "raspberry": [["S", "M"]], - "raspberries": null, - "raspberry's": null, - "rasper": [["M"]], - "rasper's": null, - "rasping": [["Y"]], - "raspingly": null, - "rasp": [["S", "G", "J", "M", "D", "R"]], - "rasps": null, - "raspings": null, - "rasp's": null, - "rasped": null, - "Rasputin": [["M"]], - "Rasputin's": null, - "raspy": [["R", "T"]], - "raspier": null, - "raspiest": null, - "Rastaban": [["M"]], - "Rastaban's": null, - "Rastafarian": [["M"]], - "Rastafarian's": null, - "raster": [["M", "S"]], - "raster's": null, - "rasters": null, - "Rastus": [["M"]], - "Rastus's": null, - "ratchet": [["M", "D", "S", "G"]], - "ratchet's": null, - "ratcheted": null, - "ratchets": null, - "ratcheting": null, - "rateable": null, - "rated": [["U"]], - "unrated": null, - "rate": [["K", "N", "G", "S", "D"]], - "prorate": null, - "proration": null, - "prorating": null, - "prorates": null, - "prorated": null, - "ration": [["D", "S", "M", "G"]], - "rating": [["M"]], - "rates": null, - "ratepayer": [["S", "M"]], - "ratepayers": null, - "ratepayer's": null, - "rater": [["M"]], - "rater's": null, - "rate's": null, - "Ratfor": [["M"]], - "Ratfor's": null, - "rather": null, - "Rather": [["M"]], - "Rather's": null, - "rathskeller": [["S", "M"]], - "rathskellers": null, - "rathskeller's": null, - "ratifier": [["M"]], - "ratifier's": null, - "ratify": [["Z", "S", "R", "D", "G", "X", "N"]], - "ratifiers": null, - "ratifies": null, - "ratified": null, - "ratifying": null, - "ratifications": null, - "ratification": null, - "rating's": null, - "ratiocinate": [["V", "N", "G", "S", "D", "X"]], - "ratiocinative": null, - "ratiocination": [["M"]], - "ratiocinating": null, - "ratiocinates": null, - "ratiocinated": null, - "ratiocinations": null, - "ratiocination's": null, - "ratio": [["M", "S"]], - "ratio's": null, - "ratios": null, - "rationale": [["S", "M"]], - "rationales": null, - "rationale's": null, - "rationalism": [["S", "M"]], - "rationalisms": null, - "rationalism's": null, - "rationalistic": null, - "rationalist": [["S"]], - "rationalists": null, - "rationality": [["M", "S"]], - "rationality's": null, - "rationalities": null, - "rationalization": [["S", "M"]], - "rationalizations": null, - "rationalization's": null, - "rationalizer": [["M"]], - "rationalizer's": null, - "rationalize": [["Z", "G", "S", "R", "D"]], - "rationalizers": null, - "rationalizing": null, - "rationalizes": null, - "rationalized": null, - "rationalness": [["M"]], - "rationalness's": null, - "rational": [["Y", "P", "S"]], - "rationally": null, - "rationals": null, - "rationed": null, - "rations": null, - "ration's": null, - "rationing": null, - "Ratliff": [["M"]], - "Ratliff's": null, - "ratlike": null, - "ratline": [["S", "M"]], - "ratlines": null, - "ratline's": null, - "rat": [["M", "D", "R", "S", "J", "Z", "G", "B"]], - "rat's": null, - "rats": null, - "ratings": null, - "raters": null, - "ratable": null, - "rattail": null, - "rattan": [["M", "S"]], - "rattan's": null, - "rattans": null, - "ratted": null, - "ratter": [["M", "S"]], - "ratter's": null, - "ratters": null, - "ratting": null, - "rattlebrain": [["D", "M", "S"]], - "rattlebrained": null, - "rattlebrain's": null, - "rattlebrains": null, - "rattle": [["R", "S", "D", "J", "G", "Z"]], - "rattler": null, - "rattles": null, - "rattled": null, - "rattlings": null, - "rattling": [["Y"]], - "rattlers": null, - "rattlesnake": [["M", "S"]], - "rattlesnake's": null, - "rattlesnakes": null, - "rattletrap": [["M", "S"]], - "rattletrap's": null, - "rattletraps": null, - "rattlingly": null, - "rattly": [["T", "R"]], - "rattliest": null, - "rattlier": null, - "rattrap": [["S", "M"]], - "rattraps": null, - "rattrap's": null, - "ratty": [["R", "T"]], - "rattier": null, - "rattiest": null, - "raucousness": [["S", "M"]], - "raucousnesses": null, - "raucousness's": null, - "raucous": [["Y", "P"]], - "raucously": null, - "Raul": [["M"]], - "Raul's": null, - "raunchily": null, - "raunchiness": [["S"]], - "raunchinesses": null, - "raunchy": [["R", "T", "P"]], - "raunchier": null, - "raunchiest": null, - "ravage": [["G", "Z", "R", "S", "D"]], - "ravaging": null, - "ravagers": null, - "ravager": [["M"]], - "ravages": null, - "ravaged": null, - "ravager's": null, - "raveling": [["S"]], - "ravelings": null, - "Ravel": [["M"]], - "Ravel's": null, - "ravel": [["U", "G", "D", "S"]], - "unravel": null, - "unraveling": null, - "unraveled": null, - "unravels": null, - "raveled": null, - "ravels": null, - "raven": [["J", "G", "M", "R", "D", "S"]], - "ravenings": null, - "ravening": null, - "raven's": null, - "ravener": null, - "ravened": null, - "ravens": null, - "Raven": [["M"]], - "Raven's": null, - "ravenous": [["Y", "P"]], - "ravenously": null, - "ravenousness": null, - "raver": [["M"]], - "raver's": null, - "rave": [["Z", "G", "D", "R", "S", "J"]], - "ravers": null, - "raving": null, - "raved": null, - "raves": null, - "ravings": null, - "Ravid": [["M"]], - "Ravid's": null, - "Ravi": [["M"]], - "Ravi's": null, - "ravine": [["S", "D", "G", "M"]], - "ravines": null, - "ravined": null, - "ravining": null, - "ravine's": null, - "ravioli": [["S", "M"]], - "raviolis": null, - "ravioli's": null, - "ravisher": [["M"]], - "ravisher's": null, - "ravishing": [["Y"]], - "ravishingly": null, - "ravish": [["L", "S", "R", "D", "Z", "G"]], - "ravishment": [["S", "M"]], - "ravishes": null, - "ravished": null, - "ravishers": null, - "ravishments": null, - "ravishment's": null, - "Raviv": [["M"]], - "Raviv's": null, - "Rawalpindi": [["M"]], - "Rawalpindi's": null, - "rawboned": null, - "rawhide": [["S", "D", "M", "G"]], - "rawhides": null, - "rawhided": null, - "rawhide's": null, - "rawhiding": null, - "Rawley": [["M"]], - "Rawley's": null, - "Rawlings": [["M"]], - "Rawlings's": null, - "Rawlins": [["M"]], - "Rawlins's": null, - "Rawlinson": [["M"]], - "Rawlinson's": null, - "rawness": [["S", "M"]], - "rawnesses": null, - "rawness's": null, - "raw": [["P", "S", "R", "Y", "T"]], - "raws": null, - "rawer": null, - "rawly": null, - "rawest": null, - "Rawson": [["M"]], - "Rawson's": null, - "Rayburn": [["M"]], - "Rayburn's": null, - "Raychel": [["M"]], - "Raychel's": null, - "Raye": [["M"]], - "Raye's": null, - "ray": [["G", "S", "M", "D"]], - "raying": null, - "rays": null, - "ray's": null, - "rayed": null, - "Rayleigh": [["M"]], - "Rayleigh's": null, - "Ray": [["M"]], - "Ray's": null, - "Raymond": [["M"]], - "Raymond's": null, - "Raymondville": [["M"]], - "Raymondville's": null, - "Raymund": [["M"]], - "Raymund's": null, - "Raymundo": [["M"]], - "Raymundo's": null, - "Rayna": [["M"]], - "Rayna's": null, - "Raynard": [["M"]], - "Raynard's": null, - "Raynell": [["M"]], - "Raynell's": null, - "Rayner": [["M"]], - "Rayner's": null, - "Raynor": [["M"]], - "Raynor's": null, - "rayon": [["S", "M"]], - "rayons": null, - "rayon's": null, - "Rayshell": [["M"]], - "Rayshell's": null, - "Raytheon": [["M"]], - "Raytheon's": null, - "raze": [["D", "R", "S", "G"]], - "razed": null, - "razer": [["M"]], - "razes": null, - "razing": null, - "razer's": null, - "razorback": [["S", "M"]], - "razorbacks": null, - "razorback's": null, - "razorblades": null, - "razor": [["M", "D", "G", "S"]], - "razor's": null, - "razored": null, - "razoring": null, - "razors": null, - "razz": [["G", "D", "S"]], - "razzing": null, - "razzed": null, - "razzes": null, - "razzmatazz": [["S"]], - "razzmatazzes": null, - "Rb": null, - "RBI": [["S"]], - "RBIs": null, - "RC": null, - "RCA": null, - "rcpt": null, - "RCS": null, - "rd": null, - "RD": null, - "RDA": null, - "Rd": [["M"]], - "Rd's": null, - "reabbreviate": null, - "reachability": null, - "reachable": [["U"]], - "unreachable": null, - "reachably": null, - "unreached": null, - "reacher": [["M"]], - "reacher's": null, - "reach": [["G", "R", "B"]], - "reaching": null, - "reacquisition": null, - "reactant": [["S", "M"]], - "reactants": null, - "reactant's": null, - "unreacted": null, - "reaction": null, - "reactionary": [["S", "M"]], - "reactionaries": null, - "reactionary's": null, - "reactivity": null, - "readability": [["M", "S"]], - "readability's": null, - "readabilities": null, - "readable": [["P"]], - "readableness": null, - "readably": null, - "readdress": [["G"]], - "readdressing": null, - "Reade": [["M"]], - "Reade's": null, - "reader": [["M"]], - "reader's": null, - "readership": [["M", "S"]], - "readership's": null, - "readerships": null, - "Read": [["G", "M"]], - "Reading": [["M"]], - "Read's": null, - "readied": null, - "readies": null, - "readily": null, - "readinesses": null, - "readiness": [["U", "M"]], - "unreadiness": null, - "unreadiness's": null, - "readiness's": null, - "reading": [["M"]], - "reading's": null, - "Reading's": null, - "readings": null, - "readers": null, - "readopt": [["G"]], - "readopting": null, - "readout": [["M", "S"]], - "readout's": null, - "readouts": null, - "rereads": null, - "readying": null, - "ready": [["T", "U", "P", "R"]], - "readiest": null, - "unready": null, - "unreadier": null, - "readier": null, - "Reagan": [["M"]], - "Reagan's": null, - "Reagen": [["M"]], - "Reagen's": null, - "realisms": null, - "realism's": null, - "realism": [["U"]], - "unrealism": null, - "realistically": [["U"]], - "unrealistically": null, - "realistic": [["U"]], - "unrealistic": null, - "realist": [["S", "M"]], - "realists": null, - "realist's": null, - "reality": [["U", "S", "M"]], - "unreality": null, - "unrealities": null, - "unreality's": null, - "realities": null, - "reality's": null, - "realizability": [["M", "S"]], - "realizability's": null, - "realizabilities": null, - "realizableness": [["M"]], - "realizableness's": null, - "realizable": [["S", "M", "P"]], - "realizables": null, - "realizable's": null, - "realizably": [["S"]], - "realizablies": null, - "realization": [["M", "S"]], - "realization's": null, - "realizations": null, - "realized": [["U"]], - "unrealized": null, - "realize": [["J", "R", "S", "D", "B", "Z", "G"]], - "realizings": null, - "realizer": [["M"]], - "realizes": [["U"]], - "realizers": null, - "realizing": [["M", "Y"]], - "realizer's": null, - "unrealizes": null, - "realizing's": null, - "realizingly": null, - "realm": [["M"]], - "realm's": null, - "realness": [["S"]], - "realnesses": null, - "realpolitik": [["S", "M"]], - "realpolitiks": null, - "realpolitik's": null, - "real": [["R", "S", "T", "P"]], - "realer": null, - "reals": null, - "realest": null, - "realtor's": null, - "Realtor": [["S"]], - "Realtors": null, - "realty": [["S", "M"]], - "realties": null, - "realty's": null, - "Rea": [["M"]], - "Rea's": null, - "reamer": [["M"]], - "reamer's": null, - "ream's": null, - "reamed": null, - "reaming": null, - "reamers": null, - "Reamonn": [["M"]], - "Reamonn's": null, - "reanimate": null, - "reaper's": null, - "reappraise": [["G"]], - "reappraising": null, - "reap": [["S", "G", "Z"]], - "reaps": null, - "reaping": null, - "reapers": null, - "rear": [["D", "R", "M", "S", "G"]], - "reared": null, - "rearer": null, - "rear's": null, - "rears": null, - "rearing": null, - "rearguard": [["M", "S"]], - "rearguard's": null, - "rearguards": null, - "rearmost": null, - "rearrange": [["L"]], - "rearward": [["S"]], - "rearwards": null, - "reasonableness": [["S", "M", "U"]], - "reasonablenesses": null, - "unreasonablenesses": null, - "reasonableness's": null, - "unreasonableness's": null, - "unreasonableness": null, - "reasonable": [["U", "P"]], - "unreasonable": null, - "reasonably": [["U"]], - "unreasonably": null, - "Reasoner": [["M"]], - "Reasoner's": null, - "reasoner": [["S", "M"]], - "reasoners": null, - "reasoner's": null, - "reasoning": [["M", "S"]], - "reasoning's": null, - "reasonings": null, - "reasonless": null, - "reasons": null, - "reason": [["U", "B", "D", "M", "G"]], - "unreason": null, - "unreasoned": null, - "unreason's": null, - "unreasoning": [["Y"]], - "reasoned": null, - "reason's": null, - "reassess": [["G", "L"]], - "reassessing": null, - "unreassuringly": null, - "reattach": [["G", "S", "L"]], - "reattaching": null, - "reattaches": null, - "reawakening's": null, - "Reba": [["M"]], - "Reba's": null, - "rebate's": null, - "Rebbecca": [["M"]], - "Rebbecca's": null, - "Rebeca": [["M"]], - "Rebeca's": null, - "Rebecca's": null, - "Rebecka": [["M"]], - "Rebecka's": null, - "Rebekah": [["M"]], - "Rebekah's": null, - "Rebeka": [["M"]], - "Rebeka's": null, - "Rebekkah": [["M"]], - "Rebekkah's": null, - "rebeller": null, - "rebellion": [["S", "M"]], - "rebellions": null, - "rebellion's": null, - "rebelliousness": [["M", "S"]], - "rebelliousness's": null, - "rebelliousnesses": null, - "rebellious": [["Y", "P"]], - "rebelliously": null, - "rebel": [["M", "S"]], - "rebel's": null, - "rebels": null, - "Rebe": [["M"]], - "Rebe's": null, - "rebid": null, - "rebidding": null, - "rebind": [["G"]], - "rebinding": null, - "rebirth": null, - "reboil": [["G"]], - "reboiling": null, - "rebook": null, - "rebooters": null, - "rebooter": null, - "rebounding": null, - "rebroadcast": [["M", "G"]], - "rebroadcast's": null, - "rebroadcasting": null, - "rebuke": [["R", "S", "D", "G"]], - "rebuker": null, - "rebukes": null, - "rebuked": null, - "rebuking": [["Y"]], - "rebukingly": null, - "rebus": null, - "rebuttal": [["S", "M"]], - "rebuttals": null, - "rebuttal's": null, - "rebutting": null, - "rec": null, - "recalcitrance": [["S", "M"]], - "recalcitrances": null, - "recalcitrance's": null, - "recalcitrant": [["S"]], - "recalcitrants": null, - "recalibrate": [["N"]], - "recalibration": null, - "recantation": [["S"]], - "recantations": null, - "recant": [["G"]], - "recanting": null, - "recap": null, - "recappable": null, - "recapping": null, - "recast": [["G"]], - "recasting": null, - "recd": null, - "rec'd": null, - "recede": null, - "receipt": [["S", "G", "D", "M"]], - "receipts": null, - "receipting": null, - "receipted": null, - "receipt's": null, - "receivable": [["S"]], - "receivables": null, - "received": [["U"]], - "unreceived": null, - "receiver": [["M"]], - "receiver's": null, - "receivership": [["S", "M"]], - "receiverships": null, - "receivership's": null, - "receive": [["Z", "G", "R", "S", "D", "B"]], - "receivers": null, - "receiving": null, - "receives": null, - "recency": [["M"]], - "recency's": null, - "recension": [["M"]], - "recension's": null, - "recentness": [["S", "M"]], - "recentnesses": null, - "recentness's": null, - "recent": [["Y", "P", "T"]], - "recently": null, - "recentest": null, - "receptacle": [["S", "M"]], - "receptacles": null, - "receptacle's": null, - "receptionist": [["M", "S"]], - "receptionist's": null, - "receptionists": null, - "reception": [["M", "S"]], - "reception's": null, - "receptions": null, - "receptiveness": [["S"]], - "receptivenesses": null, - "receptive": [["Y", "P"]], - "receptively": null, - "receptivity": [["S"]], - "receptivities": null, - "receptor": [["M", "S"]], - "receptor's": null, - "receptors": null, - "recessional": [["S"]], - "recessionals": null, - "recessionary": null, - "recessiveness": [["M"]], - "recessiveness's": null, - "recessive": [["Y", "P", "S"]], - "recessively": null, - "recessives": null, - "recess": [["S", "D", "M", "V", "G"]], - "recesses": null, - "recessed": null, - "recess's": null, - "recessing": null, - "rechargeable": null, - "recheck": [["G"]], - "rechecking": null, - "recherch�": null, - "recherches": null, - "recidivism": [["M", "S"]], - "recidivism's": null, - "recidivisms": null, - "recidivist": [["M", "S"]], - "recidivist's": null, - "recidivists": null, - "Recife": [["M"]], - "Recife's": null, - "recipe": [["M", "S"]], - "recipe's": null, - "recipes": null, - "recipiency": null, - "recipient": [["M", "S"]], - "recipient's": null, - "recipients": null, - "reciprocal": [["S", "Y"]], - "reciprocals": null, - "reciprocally": null, - "reciprocate": [["N", "G", "X", "V", "D", "S"]], - "reciprocation": [["M"]], - "reciprocating": null, - "reciprocations": null, - "reciprocative": null, - "reciprocated": null, - "reciprocates": null, - "reciprocation's": null, - "reciprocity": [["M", "S"]], - "reciprocity's": null, - "reciprocities": null, - "recitalist": [["S"]], - "recitalists": null, - "recital": [["M", "S"]], - "recital's": null, - "recitals": null, - "recitative": [["M", "S"]], - "recitative's": null, - "recitatives": null, - "reciter": [["M"]], - "reciter's": null, - "reciters": null, - "recked": null, - "recking": null, - "recklessness": [["S"]], - "recklessnesses": null, - "reckless": [["P", "Y"]], - "recklessly": null, - "reckoner": [["M"]], - "reckoner's": null, - "reckoning": [["M"]], - "reckoning's": null, - "reckon": [["S", "G", "R", "D", "J"]], - "reckons": null, - "reckoned": null, - "reckonings": null, - "reclaimable": null, - "reclamation": [["S", "M"]], - "reclamations": null, - "reclamation's": null, - "recliner": [["M"]], - "recliner's": null, - "recline": [["R", "S", "D", "Z", "G"]], - "reclines": null, - "reclined": null, - "recliners": null, - "reclining": null, - "recluse": [["M", "V", "N", "S"]], - "recluse's": null, - "reclusive": null, - "reclusion": [["M"]], - "recluses": null, - "reclusion's": null, - "recode": [["G"]], - "recoding": null, - "recognizability": null, - "recognizable": [["U"]], - "unrecognizable": null, - "recognizably": null, - "recognize": [["B", "Z", "G", "S", "R", "D"]], - "recognizers": null, - "recognizing": [["U", "Y"]], - "recognizes": null, - "recognizer": [["M"]], - "recognized": [["U"]], - "recognizedly": [["S"]], - "recognizedlies": null, - "unrecognized": null, - "recognizer's": null, - "recognizingly": [["S"]], - "recognizinglies": null, - "unrecognizing": null, - "unrecognizingly": null, - "recoilless": null, - "recoinage": null, - "recolor": [["G", "D"]], - "recoloring": null, - "recolored": null, - "recombinant": null, - "recombine": null, - "unrecommended": null, - "recompense": [["G", "D", "S"]], - "recompensing": null, - "recompensed": null, - "recompenses": null, - "recompute": [["B"]], - "recomputable": null, - "reconciled": [["U"]], - "unreconciled": null, - "reconciler": [["M"]], - "reconciler's": null, - "reconcile": [["S", "R", "D", "G", "B"]], - "reconciles": null, - "reconciling": null, - "reconcilable": null, - "reconditeness": [["M"]], - "reconditeness's": null, - "recondite": [["Y", "P"]], - "reconditely": null, - "reconfigurability": null, - "reconfigurer": null, - "reconnaissance": [["M", "S"]], - "reconnaissance's": null, - "reconnaissances": null, - "reconnecter": null, - "reconnoiter": [["G", "S", "D"]], - "reconnoitering": null, - "reconnoiters": null, - "reconnoitered": null, - "reconquer": [["G"]], - "reconquering": null, - "reconsecrate": null, - "reconstitute": null, - "unreconstructed": null, - "Reconstruction": [["M"]], - "Reconstruction's": null, - "reconsult": [["G"]], - "reconsulting": null, - "recontact": [["G"]], - "recontacting": null, - "recontaminate": [["N"]], - "recontamination": null, - "recontribute": null, - "recook": [["G"]], - "recooking": null, - "recopy": [["G"]], - "recopying": null, - "rerecorded": null, - "unrecorded": null, - "rerecords": null, - "recorders": null, - "recordings": null, - "recourse": null, - "recoverability": null, - "recoverable": [["U"]], - "unrecoverable": null, - "recovery": [["M", "S"]], - "recovery's": null, - "recoveries": null, - "recreant": [["S"]], - "recreants": null, - "recreational": null, - "recriminate": [["G", "N", "V", "X", "D", "S"]], - "recriminating": null, - "recrimination": [["M"]], - "recriminative": null, - "recriminations": null, - "recriminated": null, - "recriminates": null, - "recrimination's": null, - "recriminatory": null, - "recross": [["G"]], - "recrossing": null, - "recrudesce": [["G", "D", "S"]], - "recrudescing": null, - "recrudesced": null, - "recrudesces": null, - "recrudescence": [["M", "S"]], - "recrudescence's": null, - "recrudescences": null, - "recrudescent": null, - "recruiter": [["M"]], - "recruiter's": null, - "recruitment": [["M", "S"]], - "recruitment's": null, - "recruitments": null, - "recruit": [["Z", "S", "G", "D", "R", "M", "L"]], - "recruiters": null, - "recruits": null, - "recruiting": null, - "recruited": null, - "recruit's": null, - "recrystallize": null, - "rectal": [["Y"]], - "rectally": null, - "rectangle": [["S", "M"]], - "rectangles": null, - "rectangle's": null, - "rectangular": [["Y"]], - "rectangularly": null, - "recta's": null, - "rectifiable": null, - "rectification": [["M"]], - "rectification's": null, - "rectifier": [["M"]], - "rectifier's": null, - "rectify": [["D", "R", "S", "G", "X", "Z", "N"]], - "rectified": null, - "rectifies": null, - "rectifying": null, - "rectifications": null, - "rectifiers": null, - "rectilinear": [["Y"]], - "rectilinearly": null, - "rectitude": [["M", "S"]], - "rectitude's": null, - "rectitudes": null, - "recto": [["M", "S"]], - "recto's": null, - "rectos": null, - "rector": [["S", "M"]], - "rectors": null, - "rector's": null, - "rectory": [["M", "S"]], - "rectory's": null, - "rectories": null, - "rectum": [["S", "M"]], - "rectums": null, - "rectum's": null, - "recumbent": [["Y"]], - "recumbently": null, - "recuperate": [["V", "G", "N", "S", "D", "X"]], - "recuperative": null, - "recuperating": null, - "recuperation": [["M"]], - "recuperates": null, - "recuperated": null, - "recuperations": null, - "recuperation's": null, - "recur": null, - "recurrence": [["M", "S"]], - "recurrence's": null, - "recurrences": null, - "recurrent": null, - "recursion": [["M"]], - "recursions": null, - "recursion's": null, - "recusant": [["M"]], - "recusant's": null, - "recuse": null, - "recyclable": [["S"]], - "recyclables": null, - "recyclers": null, - "redact": [["D", "G", "S"]], - "redacted": null, - "redacting": null, - "redacts": null, - "redaction": [["S", "M"]], - "redactions": null, - "redaction's": null, - "redactor": [["M", "S"]], - "redactor's": null, - "redactors": null, - "redbird": [["S", "M"]], - "redbirds": null, - "redbird's": null, - "redbreast": [["S", "M"]], - "redbreasts": null, - "redbreast's": null, - "redbrick": [["M"]], - "redbrick's": null, - "redbud": [["M"]], - "redbud's": null, - "redcap": [["M", "S"]], - "redcap's": null, - "redcaps": null, - "redcoat": [["S", "M"]], - "redcoats": null, - "redcoat's": null, - "redcurrant": [["M"]], - "redcurrant's": null, - "redden": [["D", "G", "S"]], - "reddened": null, - "reddening": null, - "reddens": null, - "redder": null, - "reddest": null, - "redding": null, - "reddish": [["P"]], - "reddishness": null, - "Redd": [["M"]], - "Redd's": null, - "redeclaration": null, - "redecorate": null, - "redeemable": [["U"]], - "unredeemable": null, - "redeemer": [["M"]], - "redeemers": null, - "unredeemed": null, - "redeemer's": null, - "Redeemer": [["M"]], - "Redeemer's": null, - "redemptioner": [["M"]], - "redemptioner's": null, - "redemption": [["R", "M", "S"]], - "redemption's": null, - "redemptions": null, - "redemptive": null, - "redeposit's": null, - "redetermination": null, - "Redford": [["M"]], - "Redford's": null, - "Redgrave": [["M"]], - "Redgrave's": null, - "redhead": [["D", "R", "M", "S"]], - "redheaded": null, - "redheader": null, - "redhead's": null, - "redheads": null, - "Redhook": [["M"]], - "Redhook's": null, - "redial": [["G"]], - "redialing": null, - "redirect": [["G"]], - "redirecting": null, - "redirection": null, - "redlining": [["S"]], - "redlinings": null, - "Redmond": [["M"]], - "Redmond's": null, - "redneck": [["S", "M", "D"]], - "rednecks": null, - "redneck's": null, - "rednecked": null, - "redness": [["M", "S"]], - "redness's": null, - "rednesses": null, - "redo": [["G"]], - "redoing": null, - "redolence": [["M", "S"]], - "redolence's": null, - "redolences": null, - "redolent": null, - "Redondo": [["M"]], - "Redondo's": null, - "redouble": [["S"]], - "redoubles": null, - "redoubtably": null, - "redound": [["G", "D", "S"]], - "redounding": null, - "redounded": null, - "redounds": null, - "red": [["P", "Y", "S"]], - "redly": null, - "reds": null, - "redshift": [["S"]], - "redshifts": null, - "redskin": [["S", "M"]], - "redskins": null, - "redskin's": null, - "Redstone": [["M"]], - "Redstone's": null, - "reduced": [["U"]], - "unreduced": null, - "reducer": [["M"]], - "reducer's": null, - "reduces": null, - "reducing": null, - "reducers": null, - "reducibility": [["M"]], - "reducibility's": null, - "reducible": null, - "reducibly": null, - "reductionism": [["M"]], - "reductionism's": null, - "reductionist": [["S"]], - "reductionists": null, - "reduction": [["S", "M"]], - "reductions": null, - "reduction's": null, - "reduct": [["V"]], - "reductive": null, - "redundancy": [["S", "M"]], - "redundancies": null, - "redundancy's": null, - "redundant": [["Y"]], - "redundantly": null, - "redwood": [["S", "M"]], - "redwoods": null, - "redwood's": null, - "redye": null, - "redyeing": null, - "Reeba": [["M"]], - "Reeba's": null, - "Reebok": [["M"]], - "Reebok's": null, - "Reece": [["M"]], - "Reece's": null, - "reecho": [["G"]], - "reechoing": null, - "reeding": [["M"]], - "reed's": null, - "reeded": null, - "reeder": null, - "reediness": [["S", "M"]], - "reedinesses": null, - "reediness's": null, - "reeding's": null, - "Reed": [["M"]], - "Reed's": null, - "Reedville": [["M"]], - "Reedville's": null, - "reedy": [["P", "T", "R"]], - "reediest": null, - "reedier": null, - "reefer": [["M"]], - "reefer's": null, - "reef": [["G", "Z", "S", "D", "R", "M"]], - "reefing": null, - "reefers": null, - "reefs": null, - "reefed": null, - "reef's": null, - "reeker": [["M"]], - "reeker's": null, - "reek": [["G", "S", "R"]], - "reeking": null, - "reeks": null, - "reeler": [["M"]], - "reeler's": null, - "reel's": null, - "unreel": null, - "unreels": null, - "unreeled": null, - "unreeling": null, - "reeled": null, - "reeling": null, - "Ree": [["M", "D", "S"]], - "Ree's": null, - "Rees": null, - "Reena": [["M"]], - "Reena's": null, - "reenforcement": null, - "reentrant": null, - "Reese": [["M"]], - "Reese's": null, - "reestimate": [["M"]], - "reestimate's": null, - "Reeta": [["M"]], - "Reeta's": null, - "Reeva": [["M"]], - "Reeva's": null, - "reeve": [["G"]], - "reeving": null, - "Reeves": null, - "reexamine": null, - "refection": [["S", "M"]], - "refections": null, - "refection's": null, - "refectory": [["S", "M"]], - "refectories": null, - "refectory's": null, - "referable": null, - "refereed": [["U"]], - "unrefereed": null, - "refereeing": null, - "referee": [["M", "S", "D"]], - "referee's": null, - "referees": null, - "reference": [["C", "G", "S", "R", "D"]], - "dereferencing": null, - "dereferences": null, - "dereferencer": null, - "dereferenced": null, - "referencing": [["U"]], - "references": null, - "referencer": null, - "referenced": [["U"]], - "unreferenced": null, - "reference's": null, - "unreferencing": null, - "referendum": [["M", "S"]], - "referendum's": null, - "referendums": null, - "referentiality": null, - "referential": [["Y", "M"]], - "referentially": null, - "referential's": null, - "referent": [["S", "M"]], - "referents": null, - "referent's": null, - "referral": [["S", "M"]], - "referrals": null, - "referral's": null, - "referred": null, - "referrer": [["S"]], - "referrers": null, - "referring": null, - "reffed": null, - "reffing": null, - "refile": null, - "refinance": null, - "unrefined": null, - "refinement": [["M", "S"]], - "refiners": null, - "refinement's": null, - "refinements": null, - "refinish": [["G"]], - "refinishing": null, - "refit": null, - "reflectance": [["M"]], - "reflectance's": null, - "reflected": [["U"]], - "unreflected": null, - "reflectional": null, - "reflection": [["S", "M"]], - "reflections": null, - "reflection's": null, - "reflectiveness": [["M"]], - "reflectiveness's": null, - "reflective": [["Y", "P"]], - "reflectively": null, - "reflectivity": [["M"]], - "reflectivity's": null, - "reflector": [["M", "S"]], - "reflector's": null, - "reflectors": null, - "reflect": [["S", "D", "G", "V"]], - "reflects": null, - "reflecting": null, - "reflexion": [["M", "S"]], - "reflexion's": null, - "reflexions": null, - "reflexiveness": [["M"]], - "reflexiveness's": null, - "reflexive": [["P", "S", "Y"]], - "reflexives": null, - "reflexively": null, - "reflexivity": [["M"]], - "reflexivity's": null, - "reflexly": null, - "reflooring": null, - "refluent": null, - "reflux": [["G"]], - "refluxing": null, - "refocus": [["G"]], - "refocusing": null, - "refold": [["G"]], - "refolding": null, - "reforestation": null, - "reforge": [["G"]], - "reforging": null, - "reformatory": [["S", "M"]], - "reformatories": null, - "reformatory's": null, - "reformable": null, - "unreformed": null, - "reformer's": null, - "reformism": [["M"]], - "reformism's": null, - "reformist": [["S"]], - "reformists": null, - "refract": [["D", "G", "V", "S"]], - "refracted": null, - "refracting": null, - "refractive": [["P", "Y"]], - "refracts": null, - "refractiveness": [["M"]], - "refractiveness's": null, - "refractively": null, - "refractometer": [["M", "S"]], - "refractometer's": null, - "refractometers": null, - "refractoriness": [["M"]], - "refractoriness's": null, - "refractory": [["P", "S"]], - "refractories": null, - "refrain": [["D", "G", "S"]], - "refrained": null, - "refraining": null, - "refrains": null, - "unrefreshed": null, - "refreshingly": null, - "refreshment": [["M", "S"]], - "refreshable": null, - "refreshment's": null, - "refreshments": null, - "refrigerant": [["M", "S"]], - "refrigerant's": null, - "refrigerants": null, - "refrigerated": [["U"]], - "unrefrigerated": null, - "refrigerate": [["X", "D", "S", "G", "N"]], - "refrigerations": null, - "refrigerates": null, - "refrigerating": null, - "refrigeration": [["M"]], - "refrigeration's": null, - "refrigerator": [["M", "S"]], - "refrigerator's": null, - "refrigerators": null, - "refrozen": null, - "refry": [["G", "S"]], - "refrying": null, - "refries": null, - "refugee": [["M", "S"]], - "refugee's": null, - "refugees": null, - "refuge": [["S", "D", "G", "M"]], - "refuges": null, - "refuged": null, - "refuging": null, - "refuge's": null, - "Refugio": [["M"]], - "Refugio's": null, - "refulgence": [["S", "M"]], - "refulgences": null, - "refulgence's": null, - "refulgent": null, - "refundable": null, - "refunder's": null, - "refurbishment": [["S"]], - "refurbishments": null, - "refusal": [["S", "M"]], - "refusals": null, - "refusal's": null, - "refuser": [["M"]], - "refuser's": null, - "refutation": [["M", "S"]], - "refutation's": null, - "refutations": null, - "refute": [["G", "Z", "R", "S", "D", "B"]], - "refuting": null, - "refuters": null, - "refuter": [["M"]], - "refutes": null, - "refuted": null, - "refutable": null, - "refuter's": null, - "refers": null, - "refs": null, - "reg": null, - "regalement": [["S"]], - "regalements": null, - "regaling": null, - "regally": null, - "regaler": null, - "regaled": null, - "regalia": [["M"]], - "regalia's": null, - "Regan": [["M"]], - "Regan's": null, - "regard": [["E", "G", "D", "S"]], - "disregard": null, - "disregarding": null, - "disregarded": null, - "disregards": null, - "regarding": null, - "regarded": null, - "regards": null, - "regardless": [["P", "Y"]], - "regardlessness": null, - "regardlessly": null, - "regather": [["G"]], - "regathering": null, - "regatta": [["M", "S"]], - "regatta's": null, - "regattas": null, - "regency": [["M", "S"]], - "regency's": null, - "regencies": null, - "regeneracy": [["M", "S"]], - "regeneracy's": null, - "regeneracies": null, - "regenerately": null, - "regenerateness": [["M"]], - "regenerateness's": null, - "unregenerate": null, - "Regen": [["M"]], - "Regen's": null, - "reggae": [["S", "M"]], - "reggaes": null, - "reggae's": null, - "Reggie": [["M"]], - "Reggie's": null, - "Reggi": [["M", "S"]], - "Reggi's": null, - "Reggis": null, - "Reggy": [["M"]], - "Reggy's": null, - "regicide": [["S", "M"]], - "regicides": null, - "regicide's": null, - "regime": [["M", "S"]], - "regime's": null, - "regimes": null, - "regimen": [["M", "S"]], - "regimen's": null, - "regimens": null, - "regimental": [["S"]], - "regimentals": null, - "regimentation": [["M", "S"]], - "regimentation's": null, - "regimentations": null, - "regiment": [["S", "D", "M", "G"]], - "regiments": null, - "regimented": null, - "regiment's": null, - "regimenting": null, - "Reginae": null, - "Reginald": [["M"]], - "Reginald's": null, - "Regina": [["M"]], - "Regina's": null, - "Reginauld": [["M"]], - "Reginauld's": null, - "Regine": [["M"]], - "Regine's": null, - "regionalism": [["M", "S"]], - "regionalism's": null, - "regionalisms": null, - "regional": [["S", "Y"]], - "regionals": null, - "regionally": null, - "region": [["S", "M"]], - "regions": null, - "region's": null, - "Regis": [["M"]], - "Regis's": null, - "register's": null, - "register": [["U", "D", "S", "G"]], - "unregister": null, - "unregistered": null, - "unregisters": null, - "unregistering": null, - "registered": null, - "registers": null, - "registering": null, - "registrable": null, - "registrant": [["S", "M"]], - "registrants": null, - "registrant's": null, - "registrar": [["S", "M"]], - "registrars": null, - "registrar's": null, - "registration": [["A", "M"]], - "reregistration": null, - "reregistration's": null, - "registration's": null, - "registrations": null, - "registry": [["M", "S"]], - "registry's": null, - "registries": null, - "Reg": [["M", "N"]], - "Reg's": null, - "regnant": null, - "Regor": [["M"]], - "Regor's": null, - "regress": [["D", "S", "G", "V"]], - "regressed": null, - "regresses": null, - "regressing": null, - "regressive": [["P", "Y"]], - "regression": [["M", "S"]], - "regression's": null, - "regressions": null, - "regressiveness": [["M"]], - "regressiveness's": null, - "regressively": null, - "regressors": null, - "regretfulness": [["M"]], - "regretfulness's": null, - "regretful": [["P", "Y"]], - "regretfully": null, - "regret": [["S"]], - "regrets": null, - "regrettable": null, - "regrettably": null, - "regretted": null, - "regretting": null, - "reground": null, - "regroup": [["G"]], - "regrouping": null, - "regrow": [["G"]], - "regrowing": null, - "regularity": [["M", "S"]], - "regularity's": null, - "regularities": null, - "regularization": [["M", "S"]], - "regularization's": null, - "regularizations": null, - "regularize": [["S", "D", "G"]], - "regularizes": null, - "regularized": null, - "regularizing": null, - "regular": [["Y", "S"]], - "regularly": null, - "regulars": null, - "regulate": [["C", "S", "D", "X", "N", "G"]], - "deregulate": null, - "deregulates": null, - "deregulated": null, - "deregulations": null, - "deregulation": null, - "deregulating": null, - "regulates": null, - "regulated": [["U"]], - "regulations": null, - "regulation": [["M"]], - "regulating": null, - "unregulated": null, - "regulation's": null, - "regulative": null, - "regulator": [["S", "M"]], - "regulators": null, - "regulator's": null, - "regulatory": null, - "Regulus": [["M"]], - "Regulus's": null, - "regurgitate": [["X", "G", "N", "S", "D"]], - "regurgitations": null, - "regurgitating": null, - "regurgitation": [["M"]], - "regurgitates": null, - "regurgitated": null, - "regurgitation's": null, - "rehabbed": null, - "rehabbing": null, - "rehabilitate": [["S", "D", "X", "V", "G", "N"]], - "rehabilitates": null, - "rehabilitated": null, - "rehabilitations": null, - "rehabilitative": null, - "rehabilitating": null, - "rehabilitation": [["M"]], - "rehabilitation's": null, - "rehab": [["S"]], - "rehabs": null, - "rehang": [["G"]], - "rehanging": null, - "rehear": [["G", "J"]], - "rehearings": null, - "rehearsal": [["S", "M"]], - "rehearsals": null, - "rehearsal's": null, - "rehearse": null, - "unrehearsed": null, - "rehearser": [["M"]], - "rehearser's": null, - "reheat": [["G"]], - "reheating": [["M"]], - "reheating's": null, - "Rehnquist": null, - "rehydrate": null, - "Reichenberg": [["M"]], - "Reichenberg's": null, - "Reich": [["M"]], - "Reich's": null, - "Reichstags": null, - "Reichstag's": null, - "Reidar": [["M"]], - "Reidar's": null, - "Reider": [["M"]], - "Reider's": null, - "Reid": [["M", "R"]], - "Reid's": null, - "reign": [["M", "D", "S", "G"]], - "reign's": null, - "reigned": null, - "reigns": null, - "reigning": null, - "Reiko": [["M"]], - "Reiko's": null, - "Reilly": [["M"]], - "Reilly's": null, - "reimburse": [["G", "S", "D", "B", "L"]], - "reimbursing": null, - "reimburses": null, - "reimbursed": null, - "reimbursable": null, - "reimbursement": [["M", "S"]], - "reimbursement's": null, - "reimbursements": null, - "Reinald": [["M"]], - "Reinald's": null, - "Reinaldo": [["M", "S"]], - "Reinaldo's": null, - "Reinaldos": null, - "Reina": [["M"]], - "Reina's": null, - "reindeer": [["M"]], - "reindeer's": null, - "Reine": [["M"]], - "Reine's": null, - "reinforced": [["U"]], - "unreinforced": null, - "reinforce": [["G", "S", "R", "D", "L"]], - "reinforcing": null, - "reinforces": null, - "reinforcer": [["M"]], - "reinforcement": [["M", "S"]], - "reinforcement's": null, - "reinforcements": null, - "reinforcer's": null, - "reining": null, - "reined": null, - "rein's": null, - "Reinhard": [["M"]], - "Reinhard's": null, - "Reinhardt": [["M"]], - "Reinhardt's": null, - "Reinhold": [["M"]], - "Reinhold's": null, - "Reinold": [["M"]], - "Reinold's": null, - "reinstatement": [["M", "S"]], - "reinstatement's": null, - "reinstatements": null, - "reinsurance": null, - "Reinwald": [["M"]], - "Reinwald's": null, - "reissue": null, - "REIT": null, - "reiteratives": null, - "reiterativeness": null, - "rejecter": [["M"]], - "rejecter's": null, - "rejecting": [["Y"]], - "rejectingly": null, - "rejection": [["S", "M"]], - "rejections": null, - "rejection's": null, - "rejector": [["M", "S"]], - "rejector's": null, - "rejectors": null, - "reject": [["R", "D", "V", "G", "S"]], - "rejected": null, - "rejective": null, - "rejects": null, - "rejigger": null, - "rejoice": [["R", "S", "D", "J", "G"]], - "rejoicer": null, - "rejoices": null, - "rejoiced": null, - "rejoicings": null, - "rejoicing": [["Y"]], - "rejoicingly": null, - "rejoinder": [["S", "M"]], - "rejoinders": null, - "rejoinder's": null, - "rejuvenate": [["N", "G", "S", "D", "X"]], - "rejuvenation": null, - "rejuvenating": null, - "rejuvenates": null, - "rejuvenated": null, - "rejuvenations": null, - "rejuvenatory": null, - "relapse": null, - "relatedly": null, - "relatedness": [["M", "S"]], - "relatedness's": null, - "relatednesses": null, - "unrelated": null, - "relater's": null, - "relations": null, - "relative": [["S", "P", "Y"]], - "relation": [["M"]], - "relating": null, - "relates": null, - "relaters": null, - "relational": [["Y"]], - "relationally": null, - "relation's": null, - "relationship": [["M", "S"]], - "relationship's": null, - "relationships": null, - "relativeness": [["M"]], - "relativeness's": null, - "relatives": null, - "relatively": null, - "relativism": [["M"]], - "relativism's": null, - "relativistic": null, - "relativistically": null, - "relativist": [["M", "S"]], - "relativist's": null, - "relativists": null, - "relativity": [["M", "S"]], - "relativity's": null, - "relativities": null, - "relator's": null, - "relaxant": [["S", "M"]], - "relaxants": null, - "relaxant's": null, - "relaxation": [["M", "S"]], - "relaxation's": null, - "relaxations": null, - "relaxedness": [["M"]], - "relaxedness's": null, - "relaxed": [["Y", "P"]], - "relaxedly": null, - "relax": [["G", "Z", "D"]], - "relaxing": [["Y"]], - "relaxers": null, - "relaxingly": null, - "relay": [["G", "D", "M"]], - "relaying": null, - "relayed": null, - "relay's": null, - "relearn": [["G"]], - "relearning": null, - "releasable": [["U"]], - "unreleasable": null, - "unreleased": null, - "relenting": [["U"]], - "unrelenting": [["Y"]], - "relentlessness": [["S", "M"]], - "relentlessnesses": null, - "relentlessness's": null, - "relentless": [["P", "Y"]], - "relentlessly": null, - "relents": null, - "relented": null, - "relevance": [["S", "M"]], - "relevances": null, - "relevance's": null, - "relevancy": [["M", "S"]], - "relevancy's": null, - "relevancies": null, - "relevant": [["Y"]], - "relevantly": null, - "unreliability": null, - "unreliability's": null, - "unreliabilities": null, - "reliables": null, - "unreliable": null, - "reliably": [["U"]], - "unreliably": null, - "reliance": [["M", "S"]], - "reliance's": null, - "reliances": null, - "reliant": [["Y"]], - "reliantly": null, - "relicense": [["R"]], - "relicenser": null, - "relic": [["M", "S"]], - "relic's": null, - "relics": null, - "relict": [["C"]], - "relict's": null, - "relief": [["M"]], - "relief's": null, - "relievedly": null, - "relieved": [["U"]], - "unrelieved": null, - "reliever": [["M"]], - "reliever's": null, - "relieve": [["R", "S", "D", "Z", "G"]], - "relieves": null, - "relievers": null, - "relieving": null, - "religionists": null, - "religion": [["S", "M"]], - "religions": null, - "religion's": null, - "religiosity": [["M"]], - "religiosity's": null, - "religiousness": [["M", "S"]], - "religiousness's": null, - "religiousnesses": null, - "religious": [["P", "Y"]], - "religiously": null, - "relink": [["G"]], - "relinking": null, - "relinquish": [["G", "S", "D", "L"]], - "relinquishing": null, - "relinquishes": null, - "relinquished": null, - "relinquishment": [["S", "M"]], - "relinquishments": null, - "relinquishment's": null, - "reliquary": [["M", "S"]], - "reliquary's": null, - "reliquaries": null, - "relish": [["G", "S", "D"]], - "relishing": null, - "relishes": null, - "relished": null, - "relive": [["G", "B"]], - "reliving": null, - "relivable": null, - "reload": [["G", "R"]], - "reloading": null, - "reloader": null, - "relocatable": null, - "reluctance": [["M", "S"]], - "reluctance's": null, - "reluctances": null, - "reluctant": [["Y"]], - "reluctantly": null, - "rel": [["V"]], - "rely": [["D", "G"]], - "relied": null, - "relying": null, - "Re": [["M"]], - "Re's": null, - "remades": null, - "remainder": [["S", "G", "M", "D"]], - "remainders": null, - "remaindering": null, - "remainder's": null, - "remaindered": null, - "remaining": null, - "remained": null, - "remake's": null, - "remand": [["D", "G", "S"]], - "remanded": null, - "remanding": null, - "remands": null, - "remap": null, - "remapping": null, - "remarkableness": [["S"]], - "remarkablenesses": null, - "remarkable": [["U"]], - "unremarkable": null, - "remarkably": null, - "remark": [["B", "G"]], - "remarking": null, - "unremarked": null, - "Remarque": [["M"]], - "Remarque's": null, - "rematch": [["G"]], - "rematching": null, - "Rembrandt": [["M"]], - "Rembrandt's": null, - "remeasure": [["D"]], - "remeasured": null, - "remediableness": [["M"]], - "remediableness's": null, - "remediable": [["P"]], - "remedy": [["S", "D", "M", "G"]], - "remedies": null, - "remedied": null, - "remedy's": null, - "remedying": null, - "unremembered": null, - "rememberer": [["M"]], - "rememberer's": null, - "remember": [["G", "R"]], - "remembering": null, - "remembrance": [["M", "R", "S"]], - "remembrance's": null, - "remembrancer": [["M"]], - "remembrances": null, - "remembrancer's": null, - "Remington": [["M"]], - "Remington's": null, - "reminisce": [["G", "S", "D"]], - "reminiscing": null, - "reminisces": null, - "reminisced": null, - "reminiscence": [["S", "M"]], - "reminiscences": null, - "reminiscence's": null, - "reminiscent": [["Y"]], - "reminiscently": null, - "remissness": [["M", "S"]], - "remissness's": null, - "remissnesses": null, - "remiss": [["Y", "P"]], - "remissly": null, - "remit": [["S"]], - "remits": null, - "remittance": [["M", "S"]], - "remittance's": null, - "remittances": null, - "remitted": null, - "remitting": [["U"]], - "unremitting": [["Y"]], - "Rem": [["M"]], - "Rem's": null, - "remnant": [["M", "S"]], - "remnant's": null, - "remnants": null, - "remodel": [["G"]], - "remodeling": null, - "remolding": null, - "remonstrant": [["M", "S"]], - "remonstrant's": null, - "remonstrants": null, - "remonstrate": [["S", "D", "X", "V", "N", "G"]], - "remonstrates": null, - "remonstrated": null, - "remonstrations": null, - "remonstrative": [["Y"]], - "remonstration": [["M"]], - "remonstrating": null, - "remonstration's": null, - "remonstratively": null, - "remorsefulness": [["M"]], - "remorsefulness's": null, - "remorseful": [["P", "Y"]], - "remorsefully": null, - "remorselessness": [["M", "S"]], - "remorselessness's": null, - "remorselessnesses": null, - "remorseless": [["Y", "P"]], - "remorselessly": null, - "remorse": [["S", "M"]], - "remorses": null, - "remorse's": null, - "remoteness": [["M", "S"]], - "remoteness's": null, - "remotenesses": null, - "remoter": null, - "remotest": null, - "remotely": null, - "remoulds": null, - "removal": [["M", "S"]], - "removal's": null, - "removals": null, - "REM": [["S"]], - "REMs": null, - "remunerated": [["U"]], - "unremunerated": null, - "remunerate": [["V", "N", "G", "X", "S", "D"]], - "remunerative": [["Y", "P"]], - "remuneration": [["M"]], - "remunerating": null, - "remunerations": null, - "remunerates": null, - "remuneration's": null, - "remunerativeness": [["M"]], - "remunerativeness's": null, - "remuneratively": null, - "Remus": [["M"]], - "Remus's": null, - "Remy": [["M"]], - "Remy's": null, - "Renado": [["M"]], - "Renado's": null, - "Renae": [["M"]], - "Renae's": null, - "renaissance": [["S"]], - "renaissances": null, - "Renaissance": [["S", "M"]], - "Renaissances": null, - "Renaissance's": null, - "renal": null, - "Renaldo": [["M"]], - "Renaldo's": null, - "Rena": [["M"]], - "Rena's": null, - "Renard": [["M"]], - "Renard's": null, - "Renascence": [["S", "M"]], - "Renascences": null, - "Renascence's": null, - "Renata": [["M"]], - "Renata's": null, - "Renate": [["M"]], - "Renate's": null, - "Renato": [["M"]], - "Renato's": null, - "renaturation": null, - "Renaud": [["M"]], - "Renaud's": null, - "Renault": [["M", "S"]], - "Renault's": null, - "Renaults": null, - "rend": [["R", "G", "Z", "S"]], - "renderer": [["M"]], - "renderer's": null, - "render": [["G", "J", "R", "D"]], - "rendering": [["M"]], - "renderings": null, - "rendered": null, - "rendering's": null, - "rendezvous": [["D", "S", "M", "G"]], - "rendezvoused": null, - "rendezvouses": null, - "rendezvous's": null, - "rendezvousing": null, - "rendition": [["G", "S", "D", "M"]], - "renditioning": null, - "renditions": null, - "renditioned": null, - "rendition's": null, - "rending": null, - "renders": null, - "rends": null, - "Renee": [["M"]], - "Renee's": null, - "renegade": [["S", "D", "M", "G"]], - "renegades": null, - "renegaded": null, - "renegade's": null, - "renegading": null, - "renege": [["G", "Z", "R", "S", "D"]], - "reneging": null, - "renegers": null, - "reneger": [["M"]], - "reneges": null, - "reneged": null, - "reneger's": null, - "Renelle": [["M"]], - "Renelle's": null, - "Renell": [["M"]], - "Renell's": null, - "Rene": [["M"]], - "Rene's": null, - "renewal": [["M", "S"]], - "renewal's": null, - "renewals": null, - "renew": [["B", "G"]], - "renewable": null, - "renewing": null, - "renewer's": null, - "Renie": [["M"]], - "Renie's": null, - "rennet": [["M", "S"]], - "rennet's": null, - "rennets": null, - "Rennie": [["M"]], - "Rennie's": null, - "rennin": [["S", "M"]], - "rennins": null, - "rennin's": null, - "Renoir": [["M"]], - "Renoir's": null, - "Reno": [["M"]], - "Reno's": null, - "renounce": [["L", "G", "R", "S", "D"]], - "renouncement": [["M", "S"]], - "renouncing": null, - "renouncer": [["M"]], - "renounces": null, - "renounced": null, - "renouncement's": null, - "renouncements": null, - "renouncer's": null, - "renovate": [["N", "G", "X", "S", "D"]], - "renovation": [["M"]], - "renovating": null, - "renovations": null, - "renovates": null, - "renovated": null, - "renovation's": null, - "renovator": [["S", "M"]], - "renovators": null, - "renovator's": null, - "renown": [["S", "G", "D", "M"]], - "renowns": null, - "renowning": null, - "renowned": null, - "renown's": null, - "Rensselaer": [["M"]], - "Rensselaer's": null, - "rentaller": null, - "rental": [["S", "M"]], - "rentals": null, - "rental's": null, - "renter": [["M"]], - "renter's": null, - "rent": [["G", "Z", "M", "D", "R", "S"]], - "renting": null, - "renters": null, - "rent's": null, - "rented": null, - "rents": null, - "renumber": [["G"]], - "renumbering": null, - "renumeration": null, - "renunciate": [["V", "N", "X"]], - "renunciative": null, - "renunciation": [["M"]], - "renunciations": null, - "renunciation's": null, - "Renville": [["M"]], - "Renville's": null, - "reoccupy": [["G"]], - "reoccupying": null, - "reopen": [["G"]], - "reopening": null, - "unreorganized": null, - "repack": [["G"]], - "repacking": null, - "repairable": [["U"]], - "unrepairable": null, - "repair": [["B", "Z", "G", "R"]], - "repairers": null, - "repairing": null, - "repairer": [["M"]], - "repairer's": null, - "repairman": [["M"]], - "repairman's": null, - "repairmen": null, - "disrepairs": null, - "repaper": null, - "reparable": null, - "reparation": [["S", "M"]], - "reparations": null, - "reparation's": null, - "reparteeing": null, - "repartee": [["M", "D", "S"]], - "repartee's": null, - "reparteed": null, - "repartees": null, - "repartitioners": null, - "repast": [["G"]], - "repasting": null, - "repatriate": [["S", "D", "X", "N", "G"]], - "repatriates": null, - "repatriated": null, - "repatriations": null, - "repatriation": null, - "repatriating": null, - "repave": null, - "repealer": [["M"]], - "repealer's": null, - "repeal": [["G", "R"]], - "repealing": null, - "repeatability": [["M"]], - "repeatability's": null, - "repeatable": [["U"]], - "unrepeatable": null, - "repeatably": null, - "repeated": [["Y"]], - "repeatedly": null, - "repeater": [["M"]], - "repeater's": null, - "repeat": [["R", "D", "J", "B", "Z", "G"]], - "repeatings": null, - "repeaters": null, - "repeating": null, - "repelled": null, - "repellent": [["S", "Y"]], - "repellents": null, - "repellently": null, - "repelling": [["Y"]], - "repellingly": null, - "repel": [["S"]], - "repels": null, - "repentance": [["S", "M"]], - "repentances": null, - "repentance's": null, - "repentant": [["S", "Y"]], - "repentants": null, - "repentantly": null, - "repenter": null, - "repented": null, - "repenting": null, - "repertoire": [["S", "M"]], - "repertoires": null, - "repertoire's": null, - "repertory": [["S", "M"]], - "repertories": null, - "repertory's": null, - "repetition": null, - "repetitiousness": [["S"]], - "repetitiousnesses": null, - "repetitious": [["Y", "P"]], - "repetitiously": null, - "repetitiveness": [["M", "S"]], - "repetitiveness's": null, - "repetitivenesses": null, - "repetitive": [["P", "Y"]], - "repetitively": null, - "repine": [["R"]], - "repiner": [["M"]], - "repiner's": null, - "replace": [["R", "L"]], - "replacer": null, - "replay": [["G", "M"]], - "replaying": null, - "replay's": null, - "replenish": [["L", "R", "S", "D", "G"]], - "replenishment": [["S"]], - "replenisher": null, - "replenishes": null, - "replenished": null, - "replenishing": null, - "replenishments": null, - "repleteness": [["M", "S"]], - "repleteness's": null, - "repletenesses": null, - "replete": [["S", "D", "P", "X", "G", "N"]], - "repletes": null, - "repleted": null, - "repletions": null, - "repleting": null, - "repletion": [["M"]], - "repletion's": null, - "replica": [["S", "M"]], - "replicas": null, - "replica's": null, - "replicate": [["S", "D", "V", "G"]], - "replicates": null, - "replicated": null, - "replicative": null, - "replicating": null, - "replicator": [["S"]], - "replicators": null, - "replug": null, - "replications": null, - "Rep": [["M"]], - "Rep's": null, - "repopulate": null, - "reportedly": null, - "reportorial": [["Y"]], - "reportorially": null, - "reposeful": null, - "repose": [["M"]], - "repose's": null, - "repository": [["M", "S"]], - "repository's": null, - "repositories": null, - "reprehend": [["G", "D", "S"]], - "reprehending": null, - "reprehended": null, - "reprehends": null, - "reprehensibility": [["M", "S"]], - "reprehensibility's": null, - "reprehensibilities": null, - "reprehensibleness": [["M"]], - "reprehensibleness's": null, - "reprehensible": [["P"]], - "reprehensibly": null, - "reprehension": [["M", "S"]], - "reprehension's": null, - "reprehensions": null, - "representable": [["U"]], - "unrepresentable": null, - "representationally": null, - "representativeness": [["M"]], - "representativeness's": null, - "Representative": [["S"]], - "Representatives": null, - "representative": [["S", "Y", "M", "P"]], - "representatives": null, - "representatively": null, - "representative's": null, - "representativity": null, - "unrepresented": null, - "represent": [["G", "B"]], - "representing": null, - "repression": [["S", "M"]], - "repressions": null, - "repression's": null, - "repressiveness": [["M"]], - "repressiveness's": null, - "repressive": [["Y", "P"]], - "repressively": null, - "reprieve": [["G", "D", "S"]], - "reprieving": null, - "reprieved": null, - "reprieves": null, - "reprimand": [["S", "G", "M", "D"]], - "reprimands": null, - "reprimanding": null, - "reprimand's": null, - "reprimanded": null, - "reprint's": null, - "reprisal": [["M", "S"]], - "reprisal's": null, - "reprisals": null, - "reproacher": [["M"]], - "reproacher's": null, - "reproachfulness": [["M"]], - "reproachfulness's": null, - "reproachful": [["Y", "P"]], - "reproachfully": null, - "reproach": [["G", "R", "S", "D", "B"]], - "reproaching": [["Y"]], - "reproaches": null, - "reproached": null, - "reproachable": null, - "reproachingly": null, - "reprobate": [["N"]], - "reprobation": null, - "reprocess": [["G"]], - "reprocessing": null, - "reproducibility": [["M", "S"]], - "reproducibility's": null, - "reproducibilities": null, - "reproducibles": null, - "reproducibly": null, - "reproductive": [["S"]], - "reproductives": null, - "reproofing": null, - "reprover": null, - "reprovingly": null, - "rep": [["S"]], - "reps": null, - "reptile": [["S", "M"]], - "reptiles": null, - "reptile's": null, - "reptilian": [["S"]], - "reptilians": null, - "Republicanism": [["S"]], - "Republicanisms": null, - "republicanism": [["S", "M"]], - "republicanisms": null, - "republicanism's": null, - "Republican": [["S"]], - "Republicans": null, - "republic": [["M"]], - "republic's": null, - "republish": [["G"]], - "republishing": null, - "repudiate": [["X", "G", "N", "S", "D"]], - "repudiations": null, - "repudiating": null, - "repudiation": [["M"]], - "repudiates": null, - "repudiated": null, - "repudiation's": null, - "repudiator": [["S"]], - "repudiators": null, - "repugnance": [["M", "S"]], - "repugnance's": null, - "repugnances": null, - "repugnant": [["Y"]], - "repugnantly": null, - "repulsive": [["P", "Y"]], - "repulsion": [["M"]], - "repulsions": null, - "repulsion's": null, - "repulsiveness": [["M", "S"]], - "repulsiveness's": null, - "repulsivenesses": null, - "repulsively": null, - "reputability": [["S", "M"]], - "reputabilities": null, - "reputability's": null, - "reputably": [["E"]], - "disreputably": null, - "reputation": [["S", "M"]], - "reputations": null, - "reputation's": null, - "reputed": [["Y"]], - "reputedly": null, - "repute": [["E", "S", "B"]], - "disreputes": null, - "reputes": null, - "reputable": null, - "reputing": null, - "unrequested": null, - "request": [["G"]], - "requesting": null, - "Requiem": [["M", "S"]], - "Requiem's": null, - "Requiems": null, - "requiem": [["S", "M"]], - "requiems": null, - "requiem's": null, - "require": [["L", "R"]], - "requirement": [["M", "S"]], - "requirer": null, - "requirement's": null, - "requirements": null, - "requisiteness": [["M"]], - "requisiteness's": null, - "requisite": [["P", "N", "X", "S"]], - "requisition": [["G", "D", "R", "M"]], - "requisitions": null, - "requisites": null, - "requisitioner": [["M"]], - "requisitioner's": null, - "requisitioning": null, - "requisitioned": null, - "requisition's": null, - "requital": [["M", "S"]], - "requital's": null, - "requitals": null, - "unrequited": null, - "requiter": [["M"]], - "requiter's": null, - "requiters": null, - "reread": [["G"]], - "rereading": null, - "rerecord": [["G"]], - "rerecording": null, - "rerouteing": null, - "rerunning": null, - "res": [["C"]], - "deres": null, - "rescale": null, - "rescind": [["S", "D", "R", "G"]], - "rescinds": null, - "rescinded": null, - "rescinder": null, - "rescinding": null, - "rescission": [["S", "M"]], - "rescissions": null, - "rescission's": null, - "rescue": [["G", "Z", "R", "S", "D"]], - "rescuing": null, - "rescuers": null, - "rescuer": null, - "rescues": null, - "rescued": null, - "reseal": [["B", "G"]], - "resealable": null, - "resealing": null, - "research": [["M", "B"]], - "research's": null, - "researchable": null, - "reselect": [["G"]], - "reselecting": null, - "resemblant": null, - "resemble": [["D", "S", "G"]], - "resembled": null, - "resembles": null, - "resembling": null, - "resend": [["G"]], - "resending": null, - "resent": [["D", "S", "L", "G"]], - "resented": null, - "resents": null, - "resentment": [["M", "S"]], - "resenting": null, - "resentfulness": [["S", "M"]], - "resentfulnesses": null, - "resentfulness's": null, - "resentful": [["P", "Y"]], - "resentfully": null, - "resentment's": null, - "resentments": null, - "reserpine": [["M", "S"]], - "reserpine's": null, - "reserpines": null, - "reservation": [["M", "S"]], - "reservation's": null, - "reservations": null, - "reservednesses": null, - "reservedness": [["U", "M"]], - "unreservedness": null, - "unreservedness's": null, - "reservedness's": null, - "reserved": [["U", "Y", "P"]], - "unreserved": null, - "unreservedly": null, - "reservedly": null, - "reservist": [["S", "M"]], - "reservists": null, - "reservist's": null, - "reservoir": [["M", "S"]], - "reservoir's": null, - "reservoirs": null, - "reset": [["R", "D", "G"]], - "reseter": null, - "reseted": null, - "reseting": null, - "resettle": [["L"]], - "resettlement": null, - "reshipping": null, - "reshow": [["G"]], - "reshowing": null, - "reshuffle": [["M"]], - "reshuffle's": null, - "reside": [["G"]], - "residing": null, - "residence": [["M", "S"]], - "residence's": null, - "residences": null, - "residency": [["S", "M"]], - "residencies": null, - "residency's": null, - "residential": [["Y"]], - "residentially": null, - "resident": [["S", "M"]], - "residents": null, - "resident's": null, - "resider": [["M"]], - "resider's": null, - "residua": null, - "residual": [["Y", "S"]], - "residually": null, - "residuals": null, - "residuary": null, - "residue": [["S", "M"]], - "residues": null, - "residue's": null, - "residuum": [["M"]], - "residuum's": null, - "resignation": [["M", "S"]], - "resignation's": null, - "resignations": null, - "resigned": [["Y", "P"]], - "resignedly": null, - "resignedness": null, - "resilience": [["M", "S"]], - "resilience's": null, - "resiliences": null, - "resiliency": [["S"]], - "resiliencies": null, - "resilient": [["Y"]], - "resiliently": null, - "resin": [["D"]], - "resined": null, - "resinlike": null, - "resinous": null, - "resiny": null, - "resistance": [["S", "M"]], - "resistances": null, - "resistance's": null, - "Resistance": [["S", "M"]], - "Resistances": null, - "Resistance's": null, - "resistantly": null, - "resistants": null, - "resistant": [["U"]], - "unresistant": null, - "resisted": [["U"]], - "unresisted": null, - "resistible": null, - "resistibly": null, - "resisting": [["U"]], - "unresisting": null, - "resistiveness": [["M"]], - "resistiveness's": null, - "resistive": [["P", "Y"]], - "resistively": null, - "resistivity": [["M"]], - "resistivity's": null, - "resistless": null, - "resistor": [["M", "S"]], - "resistor's": null, - "resistors": null, - "resist": [["R", "D", "Z", "V", "G", "S"]], - "resister": null, - "resisters": null, - "resists": null, - "resize": [["G"]], - "resizing": null, - "resold": null, - "resole": [["G"]], - "resoling": null, - "resoluble": null, - "resoluteness": [["M", "S"]], - "resoluteness's": null, - "resolutenesses": null, - "resolute": [["P", "Y", "T", "R", "V"]], - "resolutely": null, - "resolutest": null, - "resoluter": null, - "resolutive": null, - "resolvability": [["M"]], - "resolvability's": null, - "resolvable": [["U"]], - "unresolvable": null, - "resolved": [["U"]], - "unresolved": null, - "resolvent": null, - "resonance": [["S", "M"]], - "resonances": null, - "resonance's": null, - "resonant": [["Y", "S"]], - "resonantly": null, - "resonants": null, - "resonate": [["D", "S", "G"]], - "resonated": null, - "resonates": null, - "resonating": null, - "resonator": [["M", "S"]], - "resonator's": null, - "resonators": null, - "resorption": [["M", "S"]], - "resorption's": null, - "resorptions": null, - "resort": [["R"]], - "resorter": null, - "resound": [["G"]], - "resounding": null, - "resourcefulness": [["S", "M"]], - "resourcefulnesses": null, - "resourcefulness's": null, - "resourceful": [["P", "Y"]], - "resourcefully": null, - "resp": null, - "respectability": [["S", "M"]], - "respectabilities": null, - "respectability's": null, - "respectable": [["S", "P"]], - "respectables": null, - "respectableness": null, - "respectably": null, - "respect": [["B", "S", "D", "R", "M", "Z", "G", "V"]], - "respects": [["E"]], - "respected": [["E"]], - "respecter": null, - "respect's": [["E"]], - "respecters": null, - "respecting": [["E"]], - "respective": [["P", "Y"]], - "disrespected": null, - "respectful": [["E", "Y"]], - "disrespectful": null, - "disrespectfully": null, - "respectfully": null, - "respectfulness": [["S", "M"]], - "respectfulnesses": null, - "respectfulness's": null, - "disrespecting": null, - "respectiveness": [["M"]], - "respectiveness's": null, - "respectively": null, - "disrespect's": null, - "disrespects": null, - "respell": [["G"]], - "respelling": null, - "respiration": [["M", "S"]], - "respiration's": null, - "respirations": null, - "respirator": [["S", "M"]], - "respirators": null, - "respirator's": null, - "respiratory": [["M"]], - "respiratory's": null, - "resplendence": [["M", "S"]], - "resplendence's": null, - "resplendences": null, - "resplendent": [["Y"]], - "resplendently": null, - "respondent": [["M", "S"]], - "respondent's": null, - "respondents": null, - "respond": [["S", "D", "R", "Z", "G"]], - "responds": null, - "responded": null, - "responder": null, - "responders": null, - "responding": null, - "responser": [["M"]], - "responser's": null, - "response": [["R", "S", "X", "M", "V"]], - "responses": null, - "responsions": null, - "response's": null, - "responsive": [["Y", "P", "U"]], - "responsibility": [["M", "S"]], - "responsibility's": null, - "responsibilities": null, - "responsibleness": [["M"]], - "responsibleness's": null, - "responsible": [["P"]], - "responsibly": null, - "responsiveness": [["M", "S", "U"]], - "responsiveness's": null, - "unresponsiveness's": null, - "responsivenesses": null, - "unresponsivenesses": null, - "unresponsiveness": null, - "responsively": null, - "unresponsively": null, - "unresponsive": null, - "respray": [["G"]], - "respraying": null, - "restart": [["B"]], - "restartable": null, - "restate": [["L"]], - "restatement": null, - "restaurant": [["S", "M"]], - "restaurants": null, - "restaurant's": null, - "restaurateur": [["S", "M"]], - "restaurateurs": null, - "restaurateur's": null, - "rest": [["D", "R", "S", "G", "V", "M"]], - "rested": [["U"]], - "rester": [["M"]], - "rests": [["U"]], - "resting": null, - "restive": [["P", "Y"]], - "rest's": [["U"]], - "unrested": null, - "rester's": null, - "restfuller": null, - "restfullest": null, - "restfulness": [["M", "S"]], - "restfulness's": null, - "restfulnesses": null, - "restful": [["Y", "P"]], - "restfully": null, - "restitution": [["S", "M"]], - "restitutions": null, - "restitution's": null, - "restiveness": [["S", "M"]], - "restivenesses": null, - "restiveness's": null, - "restively": null, - "restlessness": [["M", "S"]], - "restlessness's": null, - "restlessnesses": null, - "restless": [["Y", "P"]], - "restlessly": null, - "restorability": null, - "Restoration": [["M"]], - "Restoration's": null, - "restoration": [["M", "S"]], - "restoration's": null, - "restorations": null, - "restorative": [["P", "Y", "S"]], - "restorativeness": null, - "restoratively": null, - "restoratives": null, - "restorer": [["M"]], - "restorer's": null, - "restore": [["Z"]], - "restorers": null, - "restrained": [["U", "Y"]], - "unrestrained": [["P"]], - "unrestrainedly": null, - "restrainedly": null, - "restraint": [["M", "S"]], - "restraint's": null, - "restraints": null, - "restrict": [["D", "V", "G", "S"]], - "restricted": [["Y", "U"]], - "restrictive": [["U"]], - "restricting": null, - "restricts": null, - "restrictedly": null, - "unrestrictedly": null, - "unrestricted": null, - "restriction": [["S", "M"]], - "restrictions": null, - "restriction's": null, - "restrictively": null, - "restrictiveness": [["M", "S"]], - "restrictiveness's": null, - "restrictivenesses": null, - "restrictives": null, - "unrestrictive": null, - "restroom": [["S", "M"]], - "restrooms": null, - "restroom's": null, - "restructurability": null, - "restructure": null, - "unrest's": null, - "unrests": null, - "restudy": [["M"]], - "restudy's": null, - "restyle": null, - "resubstitute": null, - "resultant": [["Y", "S"]], - "resultantly": null, - "resultants": null, - "result": [["S", "G", "M", "D"]], - "results": null, - "resulting": null, - "result's": null, - "resulted": null, - "resume": [["S", "D", "B", "G"]], - "resumes": null, - "resumed": null, - "resumable": null, - "resuming": null, - "resumption": [["M", "S"]], - "resumption's": null, - "resumptions": null, - "resurface": null, - "resurgence": [["M", "S"]], - "resurgence's": null, - "resurgences": null, - "resurgent": null, - "resurrect": [["G", "S", "D"]], - "resurrecting": null, - "resurrects": null, - "resurrected": null, - "resurrection": [["S", "M"]], - "resurrections": null, - "resurrection's": null, - "resurvey": [["G"]], - "resurveying": null, - "resuscitate": [["X", "S", "D", "V", "N", "G"]], - "resuscitations": null, - "resuscitates": null, - "resuscitated": null, - "resuscitative": null, - "resuscitation": [["M"]], - "resuscitating": null, - "resuscitation's": null, - "resuscitator": [["M", "S"]], - "resuscitator's": null, - "resuscitators": null, - "retail": [["Z"]], - "retailers": null, - "retainer": [["M"]], - "retainer's": null, - "retain": [["L", "Z", "G", "S", "R", "D"]], - "retainment": null, - "retainers": null, - "retaining": null, - "retains": null, - "retained": null, - "retake": null, - "retaliate": [["V", "N", "G", "X", "S", "D"]], - "retaliative": null, - "retaliation": [["M"]], - "retaliating": null, - "retaliations": null, - "retaliates": null, - "retaliated": null, - "retaliation's": null, - "retaliatory": null, - "Reta": [["M"]], - "Reta's": null, - "retardant": [["S", "M"]], - "retardants": null, - "retardant's": null, - "retardation": [["S", "M"]], - "retardations": null, - "retardation's": null, - "retarder": [["M"]], - "retarder's": null, - "retard": [["Z", "G", "R", "D", "S"]], - "retarders": null, - "retarding": null, - "retarded": null, - "retards": null, - "retch": [["S", "D", "G"]], - "retches": null, - "retched": null, - "retching": null, - "retention": [["S", "M"]], - "retentions": null, - "retention's": null, - "retentiveness": [["S"]], - "retentivenesses": null, - "retentive": [["Y", "P"]], - "retentively": null, - "retentivity": [["M"]], - "retentivity's": null, - "retest": [["G"]], - "retesting": null, - "Retha": [["M"]], - "Retha's": null, - "rethought": null, - "reticence": [["S"]], - "reticences": null, - "reticent": [["Y"]], - "reticently": null, - "reticle": [["S", "M"]], - "reticles": null, - "reticle's": null, - "reticular": null, - "reticulate": [["G", "N", "Y", "X", "S", "D"]], - "reticulating": null, - "reticulation": [["M"]], - "reticulately": null, - "reticulations": null, - "reticulates": null, - "reticulated": null, - "reticulation's": null, - "reticule": [["M", "S"]], - "reticule's": null, - "reticules": null, - "reticulum": [["M"]], - "reticulum's": null, - "retinal": [["S"]], - "retinals": null, - "retina": [["S", "M"]], - "retinas": null, - "retina's": null, - "retinue": [["M", "S"]], - "retinue's": null, - "retinues": null, - "retiredness": [["M"]], - "retiredness's": null, - "retiree": [["M", "S"]], - "retiree's": null, - "retirees": null, - "retire": [["L"]], - "retirement": [["S", "M"]], - "retirements": null, - "retirement's": null, - "retiring": [["Y", "P"]], - "retiringly": null, - "retiringness": null, - "retort": [["G", "D"]], - "retorting": null, - "retorted": null, - "retract": [["D", "G"]], - "retracted": null, - "retracting": null, - "retractile": null, - "retrench": [["L"]], - "retrenchment": [["M", "S"]], - "retrenchment's": null, - "retrenchments": null, - "retributed": null, - "retribution": [["M", "S"]], - "retribution's": null, - "retributions": null, - "retributive": null, - "retrieval": [["S", "M"]], - "retrievals": null, - "retrieval's": null, - "retriever": [["M"]], - "retriever's": null, - "retrieve": [["Z", "G", "D", "R", "S", "B"]], - "retrievers": null, - "retrieving": null, - "retrieved": null, - "retrieves": null, - "retrievable": null, - "retroactive": [["Y"]], - "retroactively": null, - "retrofire": [["G", "M", "S", "D"]], - "retrofiring": null, - "retrofire's": null, - "retrofires": null, - "retrofired": null, - "retrofit": [["S"]], - "retrofits": null, - "retrofitted": null, - "retrofitting": null, - "retroflection": null, - "retroflex": [["D"]], - "retroflexed": null, - "retroflexion": [["M"]], - "retroflexion's": null, - "retrogradations": null, - "retrograde": [["G", "Y", "D", "S"]], - "retrograding": null, - "retrogradely": null, - "retrograded": null, - "retrogrades": null, - "retrogression": [["M", "S"]], - "retrogression's": null, - "retrogressions": null, - "retrogressive": [["Y"]], - "retrogressively": null, - "retrogress": [["S", "D", "V", "G"]], - "retrogresses": null, - "retrogressed": null, - "retrogressing": null, - "retrorocket": [["M", "S"]], - "retrorocket's": null, - "retrorockets": null, - "retro": [["S", "M"]], - "retros": null, - "retro's": null, - "retrospection": [["M", "S"]], - "retrospection's": null, - "retrospections": null, - "retrospective": [["S", "Y"]], - "retrospectives": null, - "retrospectively": null, - "retrospect": [["S", "V", "G", "M", "D"]], - "retrospects": null, - "retrospecting": null, - "retrospect's": null, - "retrospected": null, - "retrovirus": [["S"]], - "retroviruses": null, - "retrovision": null, - "retry": [["G"]], - "retrying": null, - "retsina": [["S", "M"]], - "retsinas": null, - "retsina's": null, - "returnable": [["S"]], - "returnables": null, - "returned": [["U"]], - "unreturned": null, - "returnee": [["S", "M"]], - "returnees": null, - "returnee's": null, - "retype": null, - "Reube": [["M"]], - "Reube's": null, - "Reuben": [["M"]], - "Reuben's": null, - "Reub": [["N", "M"]], - "Reub's": null, - "Reunion": [["M"]], - "Reunion's": null, - "reuse": [["B"]], - "reusable": null, - "Reuters": null, - "Reuther": [["M"]], - "Reuther's": null, - "reutilization": null, - "Reuven": [["M"]], - "Reuven's": null, - "Reva": [["M"]], - "Reva's": null, - "revanchist": null, - "revealed": [["U"]], - "unrevealed": null, - "revealingly": null, - "revealing": [["U"]], - "unrevealing": null, - "reveal": [["J", "B", "G"]], - "revealings": null, - "revealable": null, - "reveille": [["M", "S"]], - "reveille's": null, - "reveilles": null, - "revelation": [["M", "S"]], - "revelation's": null, - "revelations": null, - "Revelation": [["M", "S"]], - "Revelation's": null, - "Revelations": null, - "revelatory": null, - "revelry": [["M", "S"]], - "revelry's": null, - "revelries": null, - "revel": [["S", "J", "R", "D", "G", "Z"]], - "revels": null, - "revelings": null, - "reveler": null, - "reveled": null, - "reveling": null, - "revelers": null, - "revenge": [["M", "G", "S", "R", "D"]], - "revenge's": null, - "revenging": null, - "revenges": null, - "revenger": [["M"]], - "revenged": null, - "revenger's": null, - "revenuer": [["M"]], - "revenuer's": null, - "revenue": [["Z", "R"]], - "revenuers": null, - "reverberant": null, - "reverberate": [["X", "V", "N", "G", "S", "D"]], - "reverberations": null, - "reverberative": null, - "reverberation": [["M"]], - "reverberating": null, - "reverberates": null, - "reverberated": null, - "reverberation's": null, - "revere": [["G", "S", "D"]], - "revering": null, - "reveres": null, - "revered": null, - "Revere": [["M"]], - "Revere's": null, - "reverencer": [["M"]], - "reverencer's": null, - "reverence": [["S", "R", "D", "G", "M"]], - "reverences": null, - "reverenced": null, - "reverencing": null, - "reverence's": null, - "Reverend": null, - "reverend": [["S", "M"]], - "reverends": null, - "reverend's": null, - "reverential": [["Y"]], - "reverentially": null, - "reverent": [["Y"]], - "reverently": null, - "reverie": [["S", "M"]], - "reveries": null, - "reverie's": null, - "reversal": [["M", "S"]], - "reversal's": null, - "reversals": null, - "reverser": [["M"]], - "reverser's": null, - "reverse": [["Y"]], - "reversely": null, - "reversibility": [["M"]], - "reversibility's": null, - "reversible": [["S"]], - "reversibles": null, - "reversibly": null, - "reversioner": [["M"]], - "reversioner's": null, - "reversion": [["R"]], - "revers": [["M"]], - "revers's": null, - "reverter": [["M"]], - "reverter's": null, - "revertible": null, - "revert": [["R", "D", "V", "G", "S"]], - "reverted": null, - "revertive": null, - "reverting": null, - "reverts": null, - "revet": [["L"]], - "revetment": [["S", "M"]], - "revetments": null, - "revetment's": null, - "review": [["G"]], - "reviewing": null, - "revile": [["G", "Z", "S", "D", "L"]], - "reviling": null, - "revilers": null, - "reviles": null, - "reviled": null, - "revilement": [["M", "S"]], - "revilement's": null, - "revilements": null, - "reviler": [["M"]], - "reviler's": null, - "revise": [["B", "R", "Z"]], - "revisable": null, - "reviser": null, - "revisers": null, - "revised": [["U"]], - "unrevised": null, - "revisionary": null, - "revisionism": [["S", "M"]], - "revisionisms": null, - "revisionism's": null, - "revisionist": [["S", "M"]], - "revisionists": null, - "revisionist's": null, - "revitalize": [["Z", "R"]], - "revitalizers": null, - "revitalizer": null, - "revivalism": [["M", "S"]], - "revivalism's": null, - "revivalisms": null, - "revivalist": [["M", "S"]], - "revivalist's": null, - "revivalists": null, - "revival": [["S", "M"]], - "revivals": null, - "revival's": null, - "reviver": [["M"]], - "reviver's": null, - "revive": [["R", "S", "D", "G"]], - "revives": null, - "revived": null, - "reviving": null, - "revivification": [["M"]], - "revivification's": null, - "revivify": [["X"]], - "revivifications": null, - "Revkah": [["M"]], - "Revkah's": null, - "Revlon": [["M"]], - "Revlon's": null, - "Rev": [["M"]], - "Rev's": null, - "revocable": null, - "revoke": [["G", "Z", "R", "S", "D"]], - "revoking": null, - "revokers": null, - "revoker": null, - "revokes": null, - "revoked": null, - "revolter": [["M"]], - "revolter's": null, - "revolt": [["G", "R", "D"]], - "revolting": [["Y"]], - "revolted": null, - "revoltingly": null, - "revolutionariness": [["M"]], - "revolutionariness's": null, - "revolutionary": [["M", "S", "P"]], - "revolutionary's": null, - "revolutionaries": null, - "revolutionist": [["M", "S"]], - "revolutionist's": null, - "revolutionists": null, - "revolutionize": [["G", "D", "S", "R", "Z"]], - "revolutionizing": null, - "revolutionized": null, - "revolutionizes": null, - "revolutionizer": [["M"]], - "revolutionizers": null, - "revolutionizer's": null, - "revolution": [["S", "M"]], - "revolutions": null, - "revolution's": null, - "revolve": [["B", "S", "R", "D", "Z", "J", "G"]], - "revolvable": null, - "revolves": null, - "revolver": [["M"]], - "revolved": null, - "revolvers": null, - "revolvings": null, - "revolving": null, - "revolver's": null, - "revue": [["M", "S"]], - "revue's": null, - "revues": null, - "revulsion": [["M", "S"]], - "revulsion's": null, - "revulsions": null, - "revved": null, - "revving": null, - "rev": [["Z", "M"]], - "rev's": null, - "rewarded": [["U"]], - "unrewarded": null, - "rewarding": [["Y"]], - "rewardingly": null, - "rewarm": [["G"]], - "rewarming": null, - "reweave": null, - "rewedding": null, - "reweigh": [["G"]], - "reweighing": null, - "rewind": [["B", "G", "R"]], - "rewindable": null, - "rewinding": null, - "rewinder": null, - "rewire": [["G"]], - "rewiring": null, - "rework": [["G"]], - "reworking": null, - "rexes": null, - "Rex": [["M"]], - "Rex's": null, - "Reyes": null, - "Reykjavik": [["M"]], - "Reykjavik's": null, - "re": [["Y", "M"]], - "re's": null, - "Rey": [["M"]], - "Rey's": null, - "Reynaldo": [["M"]], - "Reynaldo's": null, - "Reyna": [["M"]], - "Reyna's": null, - "Reynard": [["M"]], - "Reynard's": null, - "Reynold": [["S", "M"]], - "Reynolds": null, - "Reynold's": null, - "rezone": null, - "Rf": null, - "RF": null, - "RFC": null, - "RFD": null, - "R": [["G"]], - "Ring": [["M"]], - "rhapsodic": null, - "rhapsodical": null, - "rhapsodize": [["G", "S", "D"]], - "rhapsodizing": null, - "rhapsodizes": null, - "rhapsodized": null, - "rhapsody": [["S", "M"]], - "rhapsodies": null, - "rhapsody's": null, - "Rhea": [["M"]], - "Rhea's": null, - "rhea": [["S", "M"]], - "rheas": null, - "rhea's": null, - "Rheba": [["M"]], - "Rheba's": null, - "Rhee": [["M"]], - "Rhee's": null, - "Rheims": [["M"]], - "Rheims's": null, - "Rheinholdt": [["M"]], - "Rheinholdt's": null, - "Rhenish": null, - "rhenium": [["M", "S"]], - "rhenium's": null, - "rheniums": null, - "rheology": [["M"]], - "rheology's": null, - "rheostat": [["M", "S"]], - "rheostat's": null, - "rheostats": null, - "rhesus": [["S"]], - "rhesuses": null, - "Rheta": [["M"]], - "Rheta's": null, - "rhetorical": [["Y", "P"]], - "rhetorically": null, - "rhetoricalness": null, - "rhetorician": [["M", "S"]], - "rhetorician's": null, - "rhetoricians": null, - "rhetoric": [["M", "S"]], - "rhetoric's": null, - "rhetorics": null, - "Rhetta": [["M"]], - "Rhetta's": null, - "Rhett": [["M"]], - "Rhett's": null, - "rheumatically": null, - "rheumatic": [["S"]], - "rheumatics": [["M"]], - "rheumatics's": null, - "rheumatism": [["S", "M"]], - "rheumatisms": null, - "rheumatism's": null, - "rheumatoid": null, - "rheum": [["M", "S"]], - "rheum's": null, - "rheums": null, - "rheumy": [["R", "T"]], - "rheumier": null, - "rheumiest": null, - "Rhiamon": [["M"]], - "Rhiamon's": null, - "Rhianna": [["M"]], - "Rhianna's": null, - "Rhiannon": [["M"]], - "Rhiannon's": null, - "Rhianon": [["M"]], - "Rhianon's": null, - "Rhinelander": [["M"]], - "Rhinelander's": null, - "Rhineland": [["R", "M"]], - "Rhineland's": null, - "Rhine": [["M"]], - "Rhine's": null, - "rhinestone": [["S", "M"]], - "rhinestones": null, - "rhinestone's": null, - "rhinitides": null, - "rhinitis": [["M"]], - "rhinitis's": null, - "rhinoceros": [["M", "S"]], - "rhinoceros's": null, - "rhinoceroses": null, - "rhino": [["M", "S"]], - "rhino's": null, - "rhinos": null, - "rhinotracheitis": null, - "rhizome": [["M", "S"]], - "rhizome's": null, - "rhizomes": null, - "Rh": [["M"]], - "Rh's": null, - "Rhoda": [["M"]], - "Rhoda's": null, - "Rhodes": null, - "Rhodesia": [["M"]], - "Rhodesia's": null, - "Rhodesian": [["S"]], - "Rhodesians": null, - "Rhodia": [["M"]], - "Rhodia's": null, - "Rhodie": [["M"]], - "Rhodie's": null, - "rhodium": [["M", "S"]], - "rhodium's": null, - "rhodiums": null, - "rhododendron": [["S", "M"]], - "rhododendrons": null, - "rhododendron's": null, - "rhodolite": [["M"]], - "rhodolite's": null, - "rhodonite": [["M"]], - "rhodonite's": null, - "Rhody": [["M"]], - "Rhody's": null, - "rhombic": null, - "rhomboidal": null, - "rhomboid": [["S", "M"]], - "rhomboids": null, - "rhomboid's": null, - "rhombus": [["S", "M"]], - "rhombuses": null, - "rhombus's": null, - "rho": [["M", "S"]], - "rho's": null, - "rhos": null, - "Rhona": [["M"]], - "Rhona's": null, - "Rhonda": [["M"]], - "Rhonda's": null, - "Rhone": null, - "rhubarb": [["M", "S"]], - "rhubarb's": null, - "rhubarbs": null, - "rhyme": [["D", "S", "R", "G", "Z", "M"]], - "rhymed": null, - "rhymes": null, - "rhymer": null, - "rhyming": null, - "rhymers": null, - "rhyme's": null, - "rhymester": [["M", "S"]], - "rhymester's": null, - "rhymesters": null, - "Rhys": [["M"]], - "Rhys's": null, - "rhythmical": [["Y"]], - "rhythmically": null, - "rhythmic": [["S"]], - "rhythmics": [["M"]], - "rhythmics's": null, - "rhythm": [["M", "S"]], - "rhythm's": null, - "rhythms": null, - "RI": null, - "rial": [["M", "S"]], - "rial's": null, - "rials": null, - "Riane": [["M"]], - "Riane's": null, - "Riannon": [["M"]], - "Riannon's": null, - "Rianon": [["M"]], - "Rianon's": null, - "ribaldry": [["M", "S"]], - "ribaldry's": null, - "ribaldries": null, - "ribald": [["S"]], - "ribalds": null, - "ribbed": null, - "Ribbentrop": [["M"]], - "Ribbentrop's": null, - "ribber": [["S"]], - "ribbers": null, - "ribbing": [["M"]], - "ribbing's": null, - "ribbon": [["D", "M", "S", "G"]], - "ribboned": null, - "ribbon's": null, - "ribbons": null, - "ribboning": null, - "ribcage": null, - "rib": [["M", "S"]], - "rib's": null, - "ribs": null, - "riboflavin": [["M", "S"]], - "riboflavin's": null, - "riboflavins": null, - "ribonucleic": null, - "ribosomal": null, - "ribosome": [["M", "S"]], - "ribosome's": null, - "ribosomes": null, - "Rica": [["M"]], - "Rica's": null, - "Rican": [["S", "M"]], - "Ricans": null, - "Rican's": null, - "Ricard": [["M"]], - "Ricard's": null, - "Ricardo": [["M"]], - "Ricardo's": null, - "Ricca": [["M"]], - "Ricca's": null, - "Riccardo": [["M"]], - "Riccardo's": null, - "rice": [["D", "R", "S", "M", "Z", "G"]], - "riced": null, - "ricer": [["M"]], - "rices": null, - "rice's": null, - "ricers": null, - "ricing": null, - "Rice": [["M"]], - "Rice's": null, - "ricer's": null, - "Richard": [["M", "S"]], - "Richard's": null, - "Richards": null, - "Richardo": [["M"]], - "Richardo's": null, - "Richardson": [["M"]], - "Richardson's": null, - "Richart": [["M"]], - "Richart's": null, - "Richelieu": [["M"]], - "Richelieu's": null, - "richen": [["D", "G"]], - "richened": null, - "richening": null, - "Richey": [["M"]], - "Richey's": null, - "Richfield": [["M"]], - "Richfield's": null, - "Richie": [["M"]], - "Richie's": null, - "Richland": [["M"]], - "Richland's": null, - "Rich": [["M"]], - "Rich's": null, - "Richmond": [["M"]], - "Richmond's": null, - "Richmound": [["M"]], - "Richmound's": null, - "richness": [["M", "S"]], - "richness's": null, - "richnesses": null, - "Richter": [["M"]], - "Richter's": null, - "Richthofen": [["M"]], - "Richthofen's": null, - "Richy": [["M"]], - "Richy's": null, - "rich": [["Y", "N", "S", "R", "P", "T"]], - "richly": null, - "riches": null, - "richer": null, - "richest": null, - "Rici": [["M"]], - "Rici's": null, - "Rickard": [["M"]], - "Rickard's": null, - "Rickenbacker": [["M"]], - "Rickenbacker's": null, - "Rickenbaugh": [["M"]], - "Rickenbaugh's": null, - "Rickert": [["M"]], - "Rickert's": null, - "rickets": [["M"]], - "rickets's": null, - "rickety": [["R", "T"]], - "ricketier": null, - "ricketiest": null, - "Rickey": [["M"]], - "Rickey's": null, - "rick": [["G", "S", "D", "M"]], - "ricking": null, - "ricks": null, - "ricked": null, - "rick's": null, - "Rickie": [["M"]], - "Rickie's": null, - "Ricki": [["M"]], - "Ricki's": null, - "Rick": [["M"]], - "Rick's": null, - "Rickover": [["M"]], - "Rickover's": null, - "rickrack": [["M", "S"]], - "rickrack's": null, - "rickracks": null, - "rickshaw": [["S", "M"]], - "rickshaws": null, - "rickshaw's": null, - "Ricky": [["M"]], - "Ricky's": null, - "Ric": [["M"]], - "Ric's": null, - "ricochet": [["G", "S", "D"]], - "ricocheting": null, - "ricochets": null, - "ricocheted": null, - "Rico": [["M"]], - "Rico's": null, - "Ricoriki": [["M"]], - "Ricoriki's": null, - "ricotta": [["M", "S"]], - "ricotta's": null, - "ricottas": null, - "riddance": [["S", "M"]], - "riddances": null, - "riddance's": null, - "ridden": null, - "ridding": null, - "riddle": [["G", "M", "R", "S", "D"]], - "riddling": null, - "riddle's": null, - "riddler": null, - "riddles": null, - "riddled": null, - "Riddle": [["M"]], - "Riddle's": null, - "ride": [["C", "Z", "S", "G", "R"]], - "deriders": null, - "derides": null, - "derider": null, - "riders": null, - "rides": null, - "riding": [["M"]], - "rider": [["C", "M"]], - "Ride": [["M"]], - "Ride's": null, - "derider's": null, - "rider's": null, - "riderless": null, - "ridership": [["S"]], - "riderships": null, - "ridge": [["D", "S", "G", "M"]], - "ridged": null, - "ridges": null, - "ridging": null, - "ridge's": null, - "Ridgefield": [["M"]], - "Ridgefield's": null, - "ridgepole": [["S", "M"]], - "ridgepoles": null, - "ridgepole's": null, - "Ridgway": [["M"]], - "Ridgway's": null, - "ridgy": [["R", "T"]], - "ridgier": null, - "ridgiest": null, - "ridicule": [["M", "G", "D", "R", "S"]], - "ridicule's": null, - "ridiculing": null, - "ridiculed": null, - "ridiculer": [["M"]], - "ridicules": null, - "ridiculer's": null, - "ridiculousness": [["M", "S"]], - "ridiculousness's": null, - "ridiculousnesses": null, - "ridiculous": [["P", "Y"]], - "ridiculously": null, - "riding's": null, - "rid": [["Z", "G", "R", "J", "S", "B"]], - "ridings": null, - "rids": null, - "ridable": null, - "Riemann": [["M"]], - "Riemann's": null, - "Riesling": [["S", "M"]], - "Rieslings": null, - "Riesling's": null, - "rife": [["R", "T"]], - "rifer": null, - "rifest": null, - "riff": [["G", "S", "D", "M"]], - "riffing": null, - "riffs": null, - "riffed": null, - "riff's": null, - "riffle": [["S", "D", "G"]], - "riffles": null, - "riffled": null, - "riffling": null, - "riffraff": [["S", "M"]], - "riffraffs": null, - "riffraff's": null, - "rifled": [["U"]], - "unrifled": null, - "rifle": [["G", "Z", "M", "D", "S", "R"]], - "rifling": [["M"]], - "riflers": null, - "rifle's": null, - "rifles": null, - "rifler": [["M"]], - "rifleman": [["M"]], - "rifleman's": null, - "riflemen": null, - "rifler's": null, - "rifling's": null, - "rift": [["G", "S", "M", "D"]], - "rifting": null, - "rifts": null, - "rift's": null, - "rifted": null, - "Riga": [["M"]], - "Riga's": null, - "rigamarole's": null, - "rigatoni": [["M"]], - "rigatoni's": null, - "Rigel": [["M"]], - "Rigel's": null, - "rigged": null, - "rigger": [["S", "M"]], - "riggers": null, - "rigger's": null, - "rigging": [["M", "S"]], - "rigging's": null, - "riggings": null, - "Riggs": [["M"]], - "Riggs's": null, - "righteousnesses": [["U"]], - "unrighteousnesses": null, - "righteousness": [["M", "S"]], - "righteousness's": null, - "righteous": [["P", "Y", "U"]], - "unrighteousness": null, - "righteously": null, - "unrighteously": null, - "unrighteous": null, - "rightfulness": [["M", "S"]], - "rightfulness's": null, - "rightfulnesses": null, - "rightful": [["P", "Y"]], - "rightfully": null, - "rightism": [["S", "M"]], - "rightisms": null, - "rightism's": null, - "rightist": [["S"]], - "rightists": null, - "rightmost": null, - "rightness": [["M", "S"]], - "rightness's": null, - "rightnesses": null, - "Right": [["S"]], - "Rights": null, - "right": [["S", "G", "T", "P", "Y", "R", "D", "N"]], - "rights": [["M"]], - "righting": null, - "rightest": null, - "rightly": null, - "righter": null, - "righted": null, - "righten": null, - "rightsize": [["S", "D", "G"]], - "rightsizes": null, - "rightsized": null, - "rightsizing": null, - "rights's": null, - "rightward": [["S"]], - "rightwards": null, - "rigidify": [["S"]], - "rigidifies": null, - "rigidity": [["S"]], - "rigidities": null, - "rigidness": [["S"]], - "rigidnesses": null, - "rigid": [["Y", "P"]], - "rigidly": null, - "rigmarole": [["M", "S"]], - "rigmarole's": null, - "rigmaroles": null, - "rig": [["M", "S"]], - "rig's": null, - "rigs": null, - "Rigoberto": [["M"]], - "Rigoberto's": null, - "Rigoletto": [["M"]], - "Rigoletto's": null, - "rigor": [["M", "S"]], - "rigor's": null, - "rigors": null, - "rigorousness": [["S"]], - "rigorousnesses": null, - "rigorous": [["Y", "P"]], - "rigorously": null, - "Riki": [["M"]], - "Riki's": null, - "Rikki": [["M"]], - "Rikki's": null, - "Rik": [["M"]], - "Rik's": null, - "rile": [["D", "S", "G"]], - "riled": null, - "riles": null, - "riling": null, - "Riley": [["M"]], - "Riley's": null, - "Rilke": [["M"]], - "Rilke's": null, - "rill": [["G", "S", "M", "D"]], - "rilling": null, - "rills": null, - "rill's": null, - "rilled": null, - "Rimbaud": [["M"]], - "Rimbaud's": null, - "rime": [["M", "S"]], - "rime's": null, - "rimes": null, - "rimer": [["M"]], - "rimer's": null, - "rim": [["G", "S", "M", "D", "R"]], - "riming": null, - "rims": null, - "rim's": null, - "rimed": null, - "rimless": null, - "rimmed": null, - "rimming": null, - "Rinaldo": [["M"]], - "Rinaldo's": null, - "Rina": [["M"]], - "Rina's": null, - "rind": [["M", "D", "G", "S"]], - "rind's": null, - "rinded": null, - "rinding": null, - "rinds": null, - "Rinehart": [["M"]], - "Rinehart's": null, - "ringer": [["M"]], - "ringer's": null, - "ring": [["G", "Z", "J", "D", "R", "M"]], - "ringing": [["Y"]], - "ringers": null, - "ringings": null, - "ringed": null, - "ring's": null, - "ringingly": null, - "ringleader": [["M", "S"]], - "ringleader's": null, - "ringleaders": null, - "ringlet": [["S", "M"]], - "ringlets": null, - "ringlet's": null, - "ringlike": null, - "Ringling": [["M"]], - "Ringling's": null, - "Ring's": null, - "ringmaster": [["M", "S"]], - "ringmaster's": null, - "ringmasters": null, - "Ringo": [["M"]], - "Ringo's": null, - "ringside": [["Z", "M", "R", "S"]], - "ringsiders": null, - "ringside's": null, - "ringsider": null, - "ringsides": null, - "ringworm": [["S", "M"]], - "ringworms": null, - "ringworm's": null, - "rink": [["G", "D", "R", "M", "S"]], - "rinking": null, - "rinked": null, - "rinker": null, - "rink's": null, - "rinks": null, - "rinse": [["D", "S", "R", "G"]], - "rinsed": null, - "rinses": null, - "rinser": null, - "rinsing": null, - "Riobard": [["M"]], - "Riobard's": null, - "Rio": [["M", "S"]], - "Rio's": null, - "Rios": null, - "Riordan": [["M"]], - "Riordan's": null, - "rioter": [["M"]], - "rioter's": null, - "riotousness": [["M"]], - "riotousness's": null, - "riotous": [["P", "Y"]], - "riotously": null, - "riot": [["S", "M", "D", "R", "G", "Z", "J"]], - "riots": null, - "riot's": null, - "rioted": null, - "rioting": null, - "rioters": null, - "riotings": null, - "RIP": null, - "riparian": [["S"]], - "riparians": null, - "ripcord": [["S", "M"]], - "ripcords": null, - "ripcord's": null, - "ripened": [["U"]], - "unripened": null, - "ripenesses": null, - "ripeness": [["U", "M"]], - "unripeness": null, - "unripeness's": null, - "ripeness's": null, - "ripen": [["R", "D", "G"]], - "ripener": null, - "ripening": null, - "ripe": [["P", "S", "Y"]], - "ripes": null, - "ripely": null, - "riper": [["U"]], - "unriper": null, - "ripest": [["U"]], - "unripest": null, - "Ripley": [["M"]], - "Ripley's": null, - "Rip": [["M"]], - "Rip's": null, - "rip": [["N", "D", "R", "S", "X", "T", "G"]], - "riped": null, - "rips": null, - "ripens": null, - "riping": null, - "ripoff": [["S"]], - "ripoffs": null, - "riposte": [["S", "D", "M", "G"]], - "ripostes": null, - "riposted": null, - "riposte's": null, - "riposting": null, - "ripped": null, - "ripper": [["S", "M"]], - "rippers": null, - "ripper's": null, - "ripping": null, - "rippler": [["M"]], - "rippler's": null, - "ripple": [["R", "S", "D", "G", "M"]], - "ripples": null, - "rippled": null, - "rippling": null, - "ripple's": null, - "ripply": [["T", "R"]], - "rippliest": null, - "ripplier": null, - "ripsaw": [["G", "D", "M", "S"]], - "ripsawing": null, - "ripsawed": null, - "ripsaw's": null, - "ripsaws": null, - "riptide": [["S", "M"]], - "riptides": null, - "riptide's": null, - "Risa": [["M"]], - "Risa's": null, - "RISC": null, - "risen": null, - "riser": [["M"]], - "riser's": null, - "rise": [["R", "S", "J", "Z", "G"]], - "rises": null, - "risings": null, - "risers": null, - "rising": [["M"]], - "risibility": [["S", "M"]], - "risibilities": null, - "risibility's": null, - "risible": [["S"]], - "risibles": null, - "rising's": null, - "risker": [["M"]], - "risker's": null, - "risk": [["G", "S", "D", "R", "M"]], - "risking": null, - "risks": null, - "risked": null, - "risk's": null, - "riskily": null, - "riskiness": [["M", "S"]], - "riskiness's": null, - "riskinesses": null, - "risky": [["R", "T", "P"]], - "riskier": null, - "riskiest": null, - "risotto": [["S", "M"]], - "risottos": null, - "risotto's": null, - "risqu�": null, - "rissole": [["M"]], - "rissole's": null, - "Ritalin": null, - "Rita": [["M"]], - "Rita's": null, - "Ritchie": [["M"]], - "Ritchie's": null, - "rite": [["D", "S", "M"]], - "rited": null, - "rites": null, - "rite's": null, - "Ritter": [["M"]], - "Ritter's": null, - "ritualism": [["S", "M"]], - "ritualisms": null, - "ritualism's": null, - "ritualistic": null, - "ritualistically": null, - "ritualized": null, - "ritual": [["M", "S", "Y"]], - "ritual's": null, - "rituals": null, - "ritually": null, - "Ritz": [["M"]], - "Ritz's": null, - "ritzy": [["T", "R"]], - "ritziest": null, - "ritzier": null, - "rivaled": [["U"]], - "unrivaled": null, - "Rivalee": [["M"]], - "Rivalee's": null, - "rivalry": [["M", "S"]], - "rivalry's": null, - "rivalries": null, - "rival": [["S", "G", "D", "M"]], - "rivals": null, - "rivaling": null, - "rival's": null, - "Riva": [["M", "S"]], - "Riva's": null, - "Rivas": null, - "rive": [["C", "S", "G", "R", "D"]], - "derives": null, - "deriving": null, - "deriver": null, - "rives": null, - "riving": null, - "river": [["C", "M"]], - "rived": null, - "Rivera": [["M"]], - "Rivera's": null, - "riverbank": [["S", "M"]], - "riverbanks": null, - "riverbank's": null, - "riverbed": [["S"]], - "riverbeds": null, - "riverboat": [["S"]], - "riverboats": null, - "deriver's": null, - "river's": null, - "riverfront": null, - "riverine": null, - "Rivers": null, - "Riverside": [["M"]], - "Riverside's": null, - "riverside": [["S"]], - "riversides": null, - "Riverview": [["M"]], - "Riverview's": null, - "riveter": [["M"]], - "riveter's": null, - "rivet": [["G", "Z", "S", "R", "D", "M"]], - "riveting": [["Y"]], - "riveters": null, - "rivets": null, - "riveted": null, - "rivet's": null, - "rivetingly": null, - "Riviera": [["M", "S"]], - "Riviera's": null, - "Rivieras": null, - "Rivi": [["M"]], - "Rivi's": null, - "Rivkah": [["M"]], - "Rivkah's": null, - "rivulet": [["S", "M"]], - "rivulets": null, - "rivulet's": null, - "Rivy": [["M"]], - "Rivy's": null, - "riv": [["Z", "G", "N", "D", "R"]], - "rivers": null, - "riven": null, - "Riyadh": [["M"]], - "Riyadh's": null, - "riyal": [["S", "M"]], - "riyals": null, - "riyal's": null, - "rm": null, - "RMS": null, - "RN": null, - "RNA": null, - "Rn": [["M"]], - "Rn's": null, - "roach": [["G", "S", "D", "M"]], - "roaching": null, - "roaches": null, - "roached": null, - "roach's": null, - "Roach": [["M"]], - "Roach's": null, - "roadbed": [["M", "S"]], - "roadbed's": null, - "roadbeds": null, - "roadblock": [["S", "M", "D", "G"]], - "roadblocks": null, - "roadblock's": null, - "roadblocked": null, - "roadblocking": null, - "roadhouse": [["S", "M"]], - "roadhouses": null, - "roadhouse's": null, - "roadie": [["S"]], - "roadies": null, - "roadkill": [["S"]], - "roadkills": null, - "road": [["M", "I", "S"]], - "road's": null, - "inroad's": null, - "inroad": null, - "inroads": null, - "roads": null, - "roadrunner": [["M", "S"]], - "roadrunner's": null, - "roadrunners": null, - "roadshow": [["S"]], - "roadshows": null, - "roadside": [["S"]], - "roadsides": null, - "roadsigns": null, - "roadster": [["S", "M"]], - "roadsters": null, - "roadster's": null, - "roadsweepers": null, - "roadway": [["S", "M"]], - "roadways": null, - "roadway's": null, - "roadwork": [["S", "M"]], - "roadworks": null, - "roadwork's": null, - "roadworthy": null, - "roam": [["D", "R", "G", "Z", "S"]], - "roamed": null, - "roamer": null, - "roaming": null, - "roamers": null, - "roams": null, - "Roana": [["M"]], - "Roana's": null, - "Roanna": [["M"]], - "Roanna's": null, - "Roanne": [["M"]], - "Roanne's": null, - "Roanoke": [["M"]], - "Roanoke's": null, - "roan": [["S"]], - "roans": null, - "roar": [["D", "R", "S", "J", "G", "Z"]], - "roared": null, - "roarer": [["M"]], - "roars": null, - "roarings": null, - "roaring": [["T"]], - "roarers": null, - "roarer's": null, - "roaringest": null, - "Roarke": [["M"]], - "Roarke's": null, - "roaster": [["M"]], - "roaster's": null, - "roast": [["S", "G", "J", "Z", "R", "D"]], - "roasts": null, - "roasting": null, - "roastings": null, - "roasters": null, - "roasted": null, - "robbed": null, - "robber": [["S", "M"]], - "robbers": null, - "robber's": null, - "Robbert": [["M"]], - "Robbert's": null, - "robbery": [["S", "M"]], - "robberies": null, - "robbery's": null, - "Robbie": [["M"]], - "Robbie's": null, - "Robbi": [["M"]], - "Robbi's": null, - "robbing": null, - "Robbin": [["M", "S"]], - "Robbin's": null, - "Robbins": null, - "Robb": [["M"]], - "Robb's": null, - "Robby": [["M"]], - "Robby's": null, - "Robbyn": [["M"]], - "Robbyn's": null, - "robe": [["E", "S", "D", "G"]], - "disrobe": null, - "disrobes": null, - "disrobed": null, - "disrobing": null, - "robes": null, - "robed": null, - "robing": null, - "Robena": [["M"]], - "Robena's": null, - "Robenia": [["M"]], - "Robenia's": null, - "Robers": [["M"]], - "Robers's": null, - "Roberson": [["M"]], - "Roberson's": null, - "Roberta": [["M"]], - "Roberta's": null, - "Robert": [["M", "S"]], - "Robert's": null, - "Roberts": null, - "Roberto": [["M"]], - "Roberto's": null, - "Robertson": [["S", "M"]], - "Robertsons": null, - "Robertson's": null, - "robe's": null, - "Robeson": [["M"]], - "Robeson's": null, - "Robespierre": [["M"]], - "Robespierre's": null, - "Robina": [["M"]], - "Robina's": null, - "Robinet": [["M"]], - "Robinet's": null, - "Robinetta": [["M"]], - "Robinetta's": null, - "Robinette": [["M"]], - "Robinette's": null, - "Robinett": [["M"]], - "Robinett's": null, - "Robinia": [["M"]], - "Robinia's": null, - "Robin": [["M"]], - "Robin's": null, - "robin": [["M", "S"]], - "robin's": null, - "robins": null, - "Robinson": [["M"]], - "Robinson's": null, - "Robinsonville": [["M"]], - "Robinsonville's": null, - "Robles": [["M"]], - "Robles's": null, - "Rob": [["M", "Z"]], - "Rob's": null, - "robotic": [["S"]], - "robotics": null, - "robotism": null, - "robotize": [["G", "D", "S"]], - "robotizing": null, - "robotized": null, - "robotizes": null, - "robot": [["M", "S"]], - "robot's": null, - "robots": null, - "rob": [["S", "D", "G"]], - "robs": null, - "Robson": [["M"]], - "Robson's": null, - "Robt": [["M"]], - "Robt's": null, - "robustness": [["S", "M"]], - "robustnesses": null, - "robustness's": null, - "robust": [["R", "Y", "P", "T"]], - "robuster": null, - "robustly": null, - "robustest": null, - "Roby": [["M"]], - "Roby's": null, - "Robyn": [["M"]], - "Robyn's": null, - "Rocco": [["M"]], - "Rocco's": null, - "Rocha": [["M"]], - "Rocha's": null, - "Rochambeau": [["M"]], - "Rochambeau's": null, - "Rochella": [["M"]], - "Rochella's": null, - "Rochelle": [["M"]], - "Rochelle's": null, - "Rochell": [["M"]], - "Rochell's": null, - "Roche": [["M"]], - "Roche's": null, - "Rochester": [["M"]], - "Rochester's": null, - "Rochette": [["M"]], - "Rochette's": null, - "Roch": [["M"]], - "Roch's": null, - "rockabilly": [["M", "S"]], - "rockabilly's": null, - "rockabillies": null, - "rockabye": null, - "Rockaway": [["M", "S"]], - "Rockaway's": null, - "Rockaways": null, - "rockbound": null, - "Rockefeller": [["M"]], - "Rockefeller's": null, - "rocker": [["M"]], - "rocker's": null, - "rocketry": [["M", "S"]], - "rocketry's": null, - "rocketries": null, - "rocket": [["S", "M", "D", "G"]], - "rockets": null, - "rocket's": null, - "rocketed": null, - "rocketing": null, - "Rockey": [["M"]], - "Rockey's": null, - "rockfall": [["S"]], - "rockfalls": null, - "Rockford": [["M"]], - "Rockford's": null, - "rock": [["G", "Z", "D", "R", "M", "S"]], - "rocking": null, - "rockers": null, - "rocked": null, - "rock's": null, - "rocks": null, - "Rockie": [["M"]], - "Rockie's": null, - "rockiness": [["M", "S"]], - "rockiness's": null, - "rockinesses": null, - "Rockland": [["M"]], - "Rockland's": null, - "Rock": [["M"]], - "Rock's": null, - "Rockne": [["M"]], - "Rockne's": null, - "Rockville": [["M"]], - "Rockville's": null, - "Rockwell": [["M"]], - "Rockwell's": null, - "Rocky": [["S", "M"]], - "Rockies": null, - "Rocky's": null, - "rocky": [["S", "R", "T", "P"]], - "rockies": null, - "rockier": null, - "rockiest": null, - "rococo": [["M", "S"]], - "rococo's": null, - "rococos": null, - "Roda": [["M"]], - "Roda's": null, - "rodded": null, - "Roddenberry": [["M"]], - "Roddenberry's": null, - "rodder": null, - "Roddie": [["M"]], - "Roddie's": null, - "rodding": null, - "Rodd": [["M"]], - "Rodd's": null, - "Roddy": [["M"]], - "Roddy's": null, - "rodent": [["M", "S"]], - "rodent's": null, - "rodents": null, - "rodeo": [["S", "M", "D", "G"]], - "rodeos": null, - "rodeo's": null, - "rodeoed": null, - "rodeoing": null, - "Roderich": [["M"]], - "Roderich's": null, - "Roderick": [["M"]], - "Roderick's": null, - "Roderic": [["M"]], - "Roderic's": null, - "Roderigo": [["M"]], - "Roderigo's": null, - "rode": [["S"]], - "rodes": null, - "Rodger": [["M"]], - "Rodger's": null, - "Rodge": [["Z", "M", "R"]], - "Rodgers": null, - "Rodge's": null, - "Rodie": [["M"]], - "Rodie's": null, - "Rodi": [["M"]], - "Rodi's": null, - "Rodina": [["M"]], - "Rodina's": null, - "Rodin": [["M"]], - "Rodin's": null, - "Rod": [["M"]], - "Rod's": null, - "Rodney": [["M"]], - "Rodney's": null, - "Rodolfo": [["M"]], - "Rodolfo's": null, - "Rodolphe": [["M"]], - "Rodolphe's": null, - "Rodolph": [["M"]], - "Rodolph's": null, - "Rodrick": [["M"]], - "Rodrick's": null, - "Rodrigo": [["M"]], - "Rodrigo's": null, - "Rodriguez": [["M"]], - "Rodriguez's": null, - "Rodrique": [["M"]], - "Rodrique's": null, - "Rodriquez": [["M"]], - "Rodriquez's": null, - "rod": [["S", "G", "M", "D"]], - "rods": null, - "roding": null, - "rod's": null, - "roded": null, - "roebuck": [["S", "M"]], - "roebucks": null, - "roebuck's": null, - "Roentgen's": null, - "roentgen": [["S", "M"]], - "roentgens": null, - "roentgen's": null, - "roe": [["S", "M"]], - "roes": null, - "roe's": null, - "ROFL": null, - "Rogelio": [["M"]], - "Rogelio's": null, - "roger": [["G", "S", "D"]], - "rogering": null, - "rogers": null, - "rogered": null, - "Rogerio": [["M"]], - "Rogerio's": null, - "Roger": [["M"]], - "Roger's": null, - "Roget": [["M"]], - "Roget's": null, - "Rog": [["M", "R", "Z"]], - "Rog's": null, - "Rogers": null, - "rogued": [["K"]], - "prorogued": null, - "rogue": [["G", "M", "D", "S"]], - "roguing": [["K"]], - "rogue's": null, - "rogues": [["K"]], - "roguery": [["M", "S"]], - "roguery's": null, - "rogueries": null, - "prorogues": null, - "proroguing": null, - "roguishness": [["S", "M"]], - "roguishnesses": null, - "roguishness's": null, - "roguish": [["P", "Y"]], - "roguishly": null, - "roil": [["S", "G", "D"]], - "roils": null, - "roiling": null, - "roiled": null, - "Roi": [["S", "M"]], - "Rois": null, - "Roi's": null, - "roisterer": [["M"]], - "roisterer's": null, - "roister": [["S", "Z", "G", "R", "D"]], - "roisters": null, - "roisterers": null, - "roistering": null, - "roistered": null, - "Rojas": [["M"]], - "Rojas's": null, - "Roland": [["M"]], - "Roland's": null, - "Rolando": [["M"]], - "Rolando's": null, - "Roldan": [["M"]], - "Roldan's": null, - "role": [["M", "S"]], - "role's": null, - "roles": null, - "Roley": [["M"]], - "Roley's": null, - "Rolfe": [["M"]], - "Rolfe's": null, - "Rolf": [["M"]], - "Rolf's": null, - "Rolland": [["M"]], - "Rolland's": null, - "rollback": [["S", "M"]], - "rollbacks": null, - "rollback's": null, - "rolled": [["A"]], - "rerolled": null, - "Rollerblade": [["S"]], - "Rollerblades": null, - "rollerskating": null, - "roller": [["S", "M"]], - "rollers": null, - "roller's": null, - "rollick": [["D", "G", "S"]], - "rollicked": null, - "rollicking": [["Y"]], - "rollicks": null, - "rollickingly": null, - "Rollie": [["M"]], - "Rollie's": null, - "rolling": [["S"]], - "rollings": null, - "Rollin": [["S", "M"]], - "Rollins": null, - "Rollin's": null, - "Rollo": [["M"]], - "Rollo's": null, - "rollover": [["S"]], - "rollovers": null, - "roll": [["U", "D", "S", "G"]], - "unroll": null, - "unrolled": null, - "unrolls": null, - "unrolling": null, - "rolls": null, - "Rolodex": null, - "Rolph": [["M"]], - "Rolph's": null, - "Rolvaag": [["M"]], - "Rolvaag's": null, - "ROM": null, - "romaine": [["M", "S"]], - "romaine's": null, - "romaines": null, - "Romain": [["M"]], - "Romain's": null, - "Roma": [["M"]], - "Roma's": null, - "romancer": [["M"]], - "romancer's": null, - "romance": [["R", "S", "D", "Z", "M", "G"]], - "romances": null, - "romanced": null, - "romancers": null, - "romance's": null, - "romancing": null, - "Romanesque": [["S"]], - "Romanesques": null, - "Romania": [["M"]], - "Romania's": null, - "Romanian": [["S", "M"]], - "Romanians": null, - "Romanian's": null, - "Romano": [["M", "S"]], - "Romano's": null, - "Romanos": null, - "Romanov": [["M"]], - "Romanov's": null, - "roman": [["S"]], - "romans": null, - "Romansh": [["M"]], - "Romansh's": null, - "Romans": [["M"]], - "Romans's": null, - "Roman": [["S", "M"]], - "Roman's": null, - "romantically": [["U"]], - "unromantically": null, - "romanticism": [["M", "S"]], - "romanticism's": null, - "romanticisms": null, - "Romanticism": [["S"]], - "Romanticisms": null, - "romanticist": [["S"]], - "romanticists": null, - "romanticize": [["S", "D", "G"]], - "romanticizes": null, - "romanticized": null, - "romanticizing": null, - "romantic": [["M", "S"]], - "romantic's": null, - "romantics": null, - "Romany": [["S", "M"]], - "Romanies": null, - "Romany's": null, - "Romeo": [["M", "S"]], - "Romeo's": null, - "Romeos": null, - "romeo": [["S"]], - "romeos": null, - "Romero": [["M"]], - "Romero's": null, - "Rome": [["S", "M"]], - "Romes": null, - "Rome's": null, - "Rommel": [["M"]], - "Rommel's": null, - "Romney": [["M"]], - "Romney's": null, - "Romola": [["M"]], - "Romola's": null, - "Romona": [["M"]], - "Romona's": null, - "Romonda": [["M"]], - "Romonda's": null, - "romper": [["M"]], - "romper's": null, - "romp": [["G", "S", "Z", "D", "R"]], - "romping": null, - "romps": null, - "rompers": null, - "romped": null, - "Rom": [["S", "M"]], - "Roms": null, - "Rom's": null, - "Romulus": [["M"]], - "Romulus's": null, - "Romy": [["M"]], - "Romy's": null, - "Ronalda": [["M"]], - "Ronalda's": null, - "Ronald": [["M"]], - "Ronald's": null, - "Rona": [["M"]], - "Rona's": null, - "Ronda": [["M"]], - "Ronda's": null, - "rondo": [["S", "M"]], - "rondos": null, - "rondo's": null, - "Ronica": [["M"]], - "Ronica's": null, - "Ron": [["M"]], - "Ron's": null, - "Ronna": [["M"]], - "Ronna's": null, - "Ronnica": [["M"]], - "Ronnica's": null, - "Ronnie": [["M"]], - "Ronnie's": null, - "Ronni": [["M"]], - "Ronni's": null, - "Ronny": [["M"]], - "Ronny's": null, - "Ronstadt": [["M"]], - "Ronstadt's": null, - "Rontgen": null, - "Roobbie": [["M"]], - "Roobbie's": null, - "rood": [["M", "S"]], - "rood's": null, - "roods": null, - "roof": [["D", "R", "M", "J", "G", "Z", "S"]], - "roofed": null, - "roofer": [["M"]], - "roof's": null, - "roofings": null, - "roofing": [["M"]], - "roofers": null, - "roofs": null, - "roofer's": null, - "roofgarden": null, - "roofing's": null, - "roofless": null, - "rooftop": [["S"]], - "rooftops": null, - "rookery": [["M", "S"]], - "rookery's": null, - "rookeries": null, - "rook": [["G", "D", "M", "S"]], - "rooking": null, - "rooked": null, - "rook's": null, - "rooks": null, - "rookie": [["S", "R", "M", "T"]], - "rookies": null, - "rookier": null, - "rookie's": null, - "rookiest": null, - "roomer": [["M"]], - "roomer's": null, - "roomette": [["S", "M"]], - "roomettes": null, - "roomette's": null, - "roomful": [["M", "S"]], - "roomful's": null, - "roomfuls": null, - "roominess": [["M", "S"]], - "roominess's": null, - "roominesses": null, - "roommate": [["S", "M"]], - "roommates": null, - "roommate's": null, - "room": [["M", "D", "R", "G", "Z", "S"]], - "room's": null, - "roomed": null, - "rooming": null, - "roomers": null, - "rooms": null, - "roomy": [["T", "P", "S", "R"]], - "roomiest": null, - "roomies": null, - "roomier": null, - "Rooney": [["M"]], - "Rooney's": null, - "Rooseveltian": null, - "Roosevelt": [["M"]], - "Roosevelt's": null, - "rooster": [["M"]], - "rooster's": null, - "roost": [["S", "G", "Z", "R", "D", "M"]], - "roosts": null, - "roosting": null, - "roosters": null, - "roosted": null, - "roost's": null, - "rooted": [["P"]], - "rootedness": null, - "rooter": [["M"]], - "rooter's": null, - "rootlessness": [["M"]], - "rootlessness's": null, - "rootless": [["P"]], - "rootlet": [["S", "M"]], - "rootlets": null, - "rootlet's": null, - "Root": [["M"]], - "Root's": null, - "root": [["M", "G", "D", "R", "Z", "S"]], - "root's": null, - "rooting": null, - "rooters": null, - "roots": null, - "rootstock": [["M"]], - "rootstock's": null, - "rope": [["D", "R", "S", "M", "Z", "G"]], - "roped": null, - "roper": [["M"]], - "ropes": null, - "rope's": null, - "ropers": null, - "roping": [["M"]], - "roper's": null, - "roping's": null, - "Roquefort": [["M", "S"]], - "Roquefort's": null, - "Roqueforts": null, - "Roquemore": [["M"]], - "Roquemore's": null, - "Rora": [["M"]], - "Rora's": null, - "Rorie": [["M"]], - "Rorie's": null, - "Rori": [["M"]], - "Rori's": null, - "Rorke": [["M"]], - "Rorke's": null, - "Rorschach": null, - "Rory": [["M"]], - "Rory's": null, - "Rosabella": [["M"]], - "Rosabella's": null, - "Rosabelle": [["M"]], - "Rosabelle's": null, - "Rosabel": [["M"]], - "Rosabel's": null, - "Rosaleen": [["M"]], - "Rosaleen's": null, - "Rosales": [["M"]], - "Rosales's": null, - "Rosalia": [["M"]], - "Rosalia's": null, - "Rosalie": [["M"]], - "Rosalie's": null, - "Rosalinda": [["M"]], - "Rosalinda's": null, - "Rosalinde": [["M"]], - "Rosalinde's": null, - "Rosalind": [["M"]], - "Rosalind's": null, - "Rosaline": [["M"]], - "Rosaline's": null, - "Rosalynd": [["M"]], - "Rosalynd's": null, - "Rosalyn": [["M"]], - "Rosalyn's": null, - "Rosa": [["M"]], - "Rosa's": null, - "Rosamond": [["M"]], - "Rosamond's": null, - "Rosamund": [["M"]], - "Rosamund's": null, - "Rosana": [["M"]], - "Rosana's": null, - "Rosanna": [["M"]], - "Rosanna's": null, - "Rosanne": [["M"]], - "Rosanne's": null, - "Rosario": [["M"]], - "Rosario's": null, - "rosary": [["S", "M"]], - "rosaries": null, - "rosary's": null, - "Roscoe": [["M"]], - "Roscoe's": null, - "Rosco": [["M"]], - "Rosco's": null, - "Roseanna": [["M"]], - "Roseanna's": null, - "Roseanne": [["M"]], - "Roseanne's": null, - "Roseann": [["M"]], - "Roseann's": null, - "roseate": [["Y"]], - "roseately": null, - "Roseau": null, - "rosebud": [["M", "S"]], - "rosebud's": null, - "rosebuds": null, - "rosebush": [["S", "M"]], - "rosebushes": null, - "rosebush's": null, - "Rosecrans": [["M"]], - "Rosecrans's": null, - "Roseland": [["M"]], - "Roseland's": null, - "Roselia": [["M"]], - "Roselia's": null, - "Roseline": [["M"]], - "Roseline's": null, - "Roselin": [["M"]], - "Roselin's": null, - "Rosella": [["M"]], - "Rosella's": null, - "Roselle": [["M"]], - "Roselle's": null, - "Rose": [["M"]], - "Rose's": null, - "Rosemaria": [["M"]], - "Rosemaria's": null, - "Rosemarie": [["M"]], - "Rosemarie's": null, - "Rosemary": [["M"]], - "Rosemary's": null, - "rosemary": [["M", "S"]], - "rosemary's": null, - "rosemaries": null, - "rose": [["M", "G", "D", "S"]], - "rose's": null, - "rosing": null, - "rosed": null, - "roses": null, - "Rosemonde": [["M"]], - "Rosemonde's": null, - "Rosenberg": [["M"]], - "Rosenberg's": null, - "Rosenblum": [["M"]], - "Rosenblum's": null, - "Rosendo": [["M"]], - "Rosendo's": null, - "Rosene": [["M"]], - "Rosene's": null, - "Rosen": [["M"]], - "Rosen's": null, - "Rosenthal": [["M"]], - "Rosenthal's": null, - "Rosenzweig": [["M"]], - "Rosenzweig's": null, - "Rosetta": [["M"]], - "Rosetta's": null, - "Rosette": [["M"]], - "Rosette's": null, - "rosette": [["S", "D", "M", "G"]], - "rosettes": null, - "rosetted": null, - "rosette's": null, - "rosetting": null, - "rosewater": null, - "rosewood": [["S", "M"]], - "rosewoods": null, - "rosewood's": null, - "Roshelle": [["M"]], - "Roshelle's": null, - "Rosicrucian": [["M"]], - "Rosicrucian's": null, - "Rosie": [["M"]], - "Rosie's": null, - "rosily": null, - "Rosina": [["M"]], - "Rosina's": null, - "rosiness": [["M", "S"]], - "rosiness's": null, - "rosinesses": null, - "rosin": [["S", "M", "D", "G"]], - "rosins": null, - "rosin's": null, - "rosined": null, - "rosining": null, - "Rosita": [["M"]], - "Rosita's": null, - "Roslyn": [["M"]], - "Roslyn's": null, - "Rosmunda": [["M"]], - "Rosmunda's": null, - "Ros": [["N"]], - "Ross": null, - "Rossetti": [["M"]], - "Rossetti's": null, - "Rossie": [["M"]], - "Rossie's": null, - "Rossi": [["M"]], - "Rossi's": null, - "Rossini": [["M"]], - "Rossini's": null, - "Rossy": [["M"]], - "Rossy's": null, - "Rostand": [["M"]], - "Rostand's": null, - "roster": [["D", "M", "G", "S"]], - "rostered": null, - "roster's": null, - "rostering": null, - "rosters": null, - "Rostov": [["M"]], - "Rostov's": null, - "rostra's": null, - "rostrum": [["S", "M"]], - "rostrums": null, - "rostrum's": null, - "Roswell": [["M"]], - "Roswell's": null, - "Rosy": [["M"]], - "Rosy's": null, - "rosy": [["R", "T", "P"]], - "rosier": null, - "rosiest": null, - "rota": [["M", "S"]], - "rota's": null, - "rotas": null, - "Rotarian": [["S", "M"]], - "Rotarians": null, - "Rotarian's": null, - "rotary": [["S"]], - "rotaries": null, - "rotated": [["U"]], - "unrotated": null, - "rotate": [["V", "G", "N", "X", "S", "D"]], - "rotative": [["Y"]], - "rotating": null, - "rotation": [["M"]], - "rotations": null, - "rotates": null, - "rotational": [["Y"]], - "rotationally": null, - "rotation's": null, - "rotatively": null, - "rotator": [["S", "M"]], - "rotators": null, - "rotator's": null, - "rotatory": null, - "ROTC": null, - "rote": [["M", "S"]], - "rote's": null, - "rotes": null, - "rotgut": [["M", "S"]], - "rotgut's": null, - "rotguts": null, - "Roth": [["M"]], - "Roth's": null, - "Rothschild": [["M"]], - "Rothschild's": null, - "rotisserie": [["M", "S"]], - "rotisserie's": null, - "rotisseries": null, - "rotogravure": [["S", "M"]], - "rotogravures": null, - "rotogravure's": null, - "rotor": [["M", "S"]], - "rotor's": null, - "rotors": null, - "rototill": [["R", "Z"]], - "rototiller": null, - "rototillers": null, - "rot": [["S", "D", "G"]], - "rots": null, - "roted": null, - "roting": null, - "rotted": null, - "rottenness": [["S"]], - "rottennesses": null, - "rotten": [["R", "Y", "S", "T", "P"]], - "rottener": null, - "rottenly": null, - "rottens": null, - "rottenest": null, - "Rotterdam": [["M"]], - "Rotterdam's": null, - "rotter": [["M"]], - "rotter's": null, - "rotting": null, - "rotunda": [["S", "M"]], - "rotundas": null, - "rotunda's": null, - "rotundity": [["S"]], - "rotundities": null, - "rotundness": [["S"]], - "rotundnesses": null, - "rotund": [["S", "D", "Y", "P", "G"]], - "rotunds": null, - "rotunded": null, - "rotundly": null, - "rotunding": null, - "Rouault": [["M"]], - "Rouault's": null, - "rou�": [["M", "S"]], - "rou�'s": null, - "rou�s": null, - "rouge": [["G", "M", "D", "S"]], - "rouging": null, - "rouge's": null, - "rouged": null, - "rouges": null, - "roughage": [["S", "M"]], - "roughages": null, - "roughage's": null, - "roughen": [["D", "G"]], - "roughened": null, - "roughening": null, - "rougher": [["M"]], - "rougher's": null, - "roughhouse": [["G", "D", "S", "M"]], - "roughhousing": null, - "roughhoused": null, - "roughhouses": null, - "roughhouse's": null, - "roughish": null, - "roughneck": [["M", "D", "S", "G"]], - "roughneck's": null, - "roughnecked": null, - "roughnecks": null, - "roughnecking": null, - "roughness": [["M", "S"]], - "roughness's": null, - "roughnesses": null, - "roughs": null, - "roughshod": null, - "rough": [["X", "P", "Y", "R", "D", "N", "G", "T"]], - "roughens": null, - "roughly": null, - "roughed": null, - "roughing": null, - "roughest": null, - "roulette": [["M", "G", "D", "S"]], - "roulette's": null, - "rouletting": null, - "rouletted": null, - "roulettes": null, - "roundabout": [["P", "S", "M"]], - "roundaboutness": null, - "roundabouts": null, - "roundabout's": null, - "roundedness": [["M"]], - "roundedness's": null, - "rounded": [["P"]], - "roundelay": [["S", "M"]], - "roundelays": null, - "roundelay's": null, - "roundels": null, - "rounder": [["M"]], - "rounder's": null, - "roundhead": [["D"]], - "roundheaded": [["P"]], - "roundheadedness": [["M"]], - "roundheadedness's": null, - "roundhouse": [["S", "M"]], - "roundhouses": null, - "roundhouse's": null, - "roundish": null, - "roundness": [["M", "S"]], - "roundness's": null, - "roundnesses": null, - "roundoff": null, - "roundup": [["M", "S"]], - "roundup's": null, - "roundups": null, - "roundworm": [["M", "S"]], - "roundworm's": null, - "roundworms": null, - "round": [["Y", "R", "D", "S", "G", "P", "Z", "T"]], - "roundly": null, - "rounds": null, - "rounding": null, - "rounders": null, - "roundest": null, - "Rourke": [["M"]], - "Rourke's": null, - "rouse": [["D", "S", "R", "G"]], - "roused": null, - "rouses": null, - "rouser": [["M"]], - "rousing": null, - "rouser's": null, - "Rousseau": [["M"]], - "Rousseau's": null, - "roustabout": [["S", "M"]], - "roustabouts": null, - "roustabout's": null, - "roust": [["S", "G", "D"]], - "rousts": null, - "rousting": null, - "rousted": null, - "route": [["A", "S", "R", "D", "Z", "G", "J"]], - "reroute": null, - "reroutes": null, - "rerouter": null, - "rerouted": null, - "rerouters": null, - "rerouting": null, - "reroutings": null, - "routes": null, - "router": [["M"]], - "routed": null, - "routers": null, - "routing": [["M"]], - "routings": null, - "router's": null, - "route's": null, - "rout": [["G", "Z", "J", "M", "D", "R", "S"]], - "rout's": null, - "routs": null, - "routine": [["S", "Y", "M"]], - "routines": null, - "routinely": null, - "routine's": null, - "routing's": null, - "routinize": [["G", "S", "D"]], - "routinizing": null, - "routinizes": null, - "routinized": null, - "Rouvin": [["M"]], - "Rouvin's": null, - "rover": [["M"]], - "rover's": null, - "Rover": [["M"]], - "Rover's": null, - "rove": [["Z", "G", "J", "D", "R", "S"]], - "rovers": null, - "roving": [["M"]], - "rovings": null, - "roved": null, - "roves": null, - "roving's": null, - "Rowan": [["M"]], - "Rowan's": null, - "rowboat": [["S", "M"]], - "rowboats": null, - "rowboat's": null, - "rowdily": null, - "rowdiness": [["M", "S"]], - "rowdiness's": null, - "rowdinesses": null, - "rowdyism": [["M", "S"]], - "rowdyism's": null, - "rowdyisms": null, - "rowdy": [["P", "T", "S", "R"]], - "rowdiest": null, - "rowdies": null, - "rowdier": null, - "rowel": [["D", "M", "S", "G"]], - "roweled": null, - "rowel's": null, - "rowels": null, - "roweling": null, - "Rowe": [["M"]], - "Rowe's": null, - "Rowena": [["M"]], - "Rowena's": null, - "rowen": [["M"]], - "rowen's": null, - "Rowen": [["M"]], - "Rowen's": null, - "rower": [["M"]], - "rower's": null, - "Rowland": [["M"]], - "Rowland's": null, - "Rowley": [["M"]], - "Rowley's": null, - "Row": [["M", "N"]], - "Row's": null, - "Rowney": [["M"]], - "Rowney's": null, - "row": [["S", "J", "Z", "M", "G", "N", "D", "R"]], - "rows": null, - "rowings": null, - "rowers": null, - "row's": null, - "rowing": null, - "rowed": null, - "Roxana": [["M"]], - "Roxana's": null, - "Roxane": [["M"]], - "Roxane's": null, - "Roxanna": [["M"]], - "Roxanna's": null, - "Roxanne": [["M"]], - "Roxanne's": null, - "Roxie": [["M"]], - "Roxie's": null, - "Roxi": [["M"]], - "Roxi's": null, - "Roxine": [["M"]], - "Roxine's": null, - "Roxy": [["M"]], - "Roxy's": null, - "royalist": [["S", "M"]], - "royalists": null, - "royalist's": null, - "Royall": [["M"]], - "Royall's": null, - "Royal": [["M"]], - "Royal's": null, - "royal": [["S", "Y"]], - "royals": null, - "royally": null, - "royalty": [["M", "S"]], - "royalty's": null, - "royalties": null, - "Royce": [["M"]], - "Royce's": null, - "Roy": [["M"]], - "Roy's": null, - "Rozalie": [["M"]], - "Rozalie's": null, - "Rozalin": [["M"]], - "Rozalin's": null, - "Rozamond": [["M"]], - "Rozamond's": null, - "Rozanna": [["M"]], - "Rozanna's": null, - "Rozanne": [["M"]], - "Rozanne's": null, - "Rozele": [["M"]], - "Rozele's": null, - "Rozella": [["M"]], - "Rozella's": null, - "Rozelle": [["M"]], - "Rozelle's": null, - "Roze": [["M"]], - "Roze's": null, - "Rozina": [["M"]], - "Rozina's": null, - "Roz": [["M"]], - "Roz's": null, - "RP": null, - "rpm": null, - "RPM": null, - "rps": null, - "RR": null, - "Rriocard": [["M"]], - "Rriocard's": null, - "rs": null, - "r's": null, - "R's": null, - "RSFSR": null, - "RSI": null, - "RSV": null, - "RSVP": null, - "RSX": null, - "rt": null, - "rte": null, - "Rte": null, - "RTFM": null, - "r": [["T", "G", "V", "J"]], - "rings": null, - "Rubaiyat": [["M"]], - "Rubaiyat's": null, - "rubato": [["M", "S"]], - "rubato's": null, - "rubatos": null, - "rubbed": null, - "rubberize": [["G", "S", "D"]], - "rubberizing": null, - "rubberizes": null, - "rubberized": null, - "rubberneck": [["D", "R", "M", "G", "S", "Z"]], - "rubbernecked": null, - "rubbernecker": null, - "rubberneck's": null, - "rubbernecking": null, - "rubbernecks": null, - "rubberneckers": null, - "rubber": [["S", "D", "M", "G"]], - "rubbers": null, - "rubbered": null, - "rubber's": null, - "rubbering": null, - "rubbery": [["T", "R"]], - "rubberiest": null, - "rubberier": null, - "rubbing": [["M"]], - "rubbing's": null, - "rubbish": [["D", "S", "M", "G"]], - "rubbished": null, - "rubbishes": null, - "rubbish's": null, - "rubbishing": null, - "rubbishy": null, - "rubble": [["G", "M", "S", "D"]], - "rubbling": null, - "rubble's": null, - "rubbles": null, - "rubbled": null, - "rubdown": [["M", "S"]], - "rubdown's": null, - "rubdowns": null, - "rubella": [["M", "S"]], - "rubella's": null, - "rubellas": null, - "Rube": [["M"]], - "Rube's": null, - "Ruben": [["M", "S"]], - "Ruben's": null, - "Rubens": null, - "rube": [["S", "M"]], - "rubes": null, - "rube's": null, - "Rubetta": [["M"]], - "Rubetta's": null, - "Rubia": [["M"]], - "Rubia's": null, - "Rubicon": [["S", "M"]], - "Rubicons": null, - "Rubicon's": null, - "rubicund": null, - "rubidium": [["S", "M"]], - "rubidiums": null, - "rubidium's": null, - "Rubie": [["M"]], - "Rubie's": null, - "Rubik": [["M"]], - "Rubik's": null, - "Rubi": [["M"]], - "Rubi's": null, - "Rubina": [["M"]], - "Rubina's": null, - "Rubin": [["M"]], - "Rubin's": null, - "Rubinstein": [["M"]], - "Rubinstein's": null, - "ruble": [["M", "S"]], - "ruble's": null, - "rubles": null, - "rubout": null, - "rubric": [["M", "S"]], - "rubric's": null, - "rubrics": null, - "rub": [["S"]], - "rubs": null, - "Ruby": [["M"]], - "Ruby's": null, - "ruby": [["M", "T", "G", "D", "S", "R"]], - "ruby's": null, - "rubiest": null, - "rubying": null, - "rubied": null, - "rubies": null, - "rubier": null, - "Ruchbah": [["M"]], - "Ruchbah's": null, - "ruck": [["M"]], - "ruck's": null, - "rucksack": [["S", "M"]], - "rucksacks": null, - "rucksack's": null, - "ruckus": [["S", "M"]], - "ruckuses": null, - "ruckus's": null, - "ruction": [["S", "M"]], - "ructions": null, - "ruction's": null, - "rudderless": null, - "rudder": [["M", "S"]], - "rudder's": null, - "rudders": null, - "Ruddie": [["M"]], - "Ruddie's": null, - "ruddiness": [["M", "S"]], - "ruddiness's": null, - "ruddinesses": null, - "Rudd": [["M"]], - "Rudd's": null, - "Ruddy": [["M"]], - "Ruddy's": null, - "ruddy": [["P", "T", "G", "R", "S", "D"]], - "ruddiest": null, - "ruddying": null, - "ruddier": null, - "ruddies": null, - "ruddied": null, - "rudeness": [["M", "S"]], - "rudeness's": null, - "rudenesses": null, - "rude": [["P", "Y", "T", "R"]], - "rudely": null, - "rudest": null, - "ruder": null, - "Rudie": [["M"]], - "Rudie's": null, - "Rudiger": [["M"]], - "Rudiger's": null, - "rudimentariness": [["M"]], - "rudimentariness's": null, - "rudimentary": [["P"]], - "rudiment": [["S", "M"]], - "rudiments": null, - "rudiment's": null, - "Rudolf": [["M"]], - "Rudolf's": null, - "Rudolfo": [["M"]], - "Rudolfo's": null, - "Rudolph": [["M"]], - "Rudolph's": null, - "Rudyard": [["M"]], - "Rudyard's": null, - "Rudy": [["M"]], - "Rudy's": null, - "ruefulness": [["S"]], - "ruefulnesses": null, - "rueful": [["P", "Y"]], - "ruefully": null, - "rue": [["G", "D", "S"]], - "ruing": null, - "rued": null, - "rues": null, - "Rufe": [["M"]], - "Rufe's": null, - "ruff": [["G", "S", "Y", "D", "M"]], - "ruffing": null, - "ruffs": null, - "ruffly": [["T", "R"]], - "ruffed": null, - "ruff's": null, - "ruffian": [["G", "S", "M", "D", "Y"]], - "ruffianing": null, - "ruffians": null, - "ruffian's": null, - "ruffianed": null, - "ruffianly": null, - "ruffled": [["U"]], - "unruffled": null, - "ruffler": [["M"]], - "ruffler's": null, - "ruffle": [["R", "S", "D", "G"]], - "ruffles": null, - "ruffling": null, - "ruffliest": null, - "rufflier": null, - "Rufus": [["M"]], - "Rufus's": null, - "Rugby's": null, - "rugby": [["S", "M"]], - "rugbies": null, - "rugby's": null, - "ruggedness": [["S"]], - "ruggednesses": null, - "rugged": [["P", "Y", "R", "T"]], - "ruggedly": null, - "ruggeder": null, - "ruggedest": null, - "Ruggiero": [["M"]], - "Ruggiero's": null, - "rugging": null, - "rug": [["M", "S"]], - "rug's": null, - "rugs": null, - "Ruhr": [["M"]], - "Ruhr's": null, - "ruination": [["M", "S"]], - "ruination's": null, - "ruinations": null, - "ruiner": [["M"]], - "ruiner's": null, - "ruin": [["M", "G", "S", "D", "R"]], - "ruin's": null, - "ruining": null, - "ruins": null, - "ruined": null, - "ruinousness": [["M"]], - "ruinousness's": null, - "ruinous": [["Y", "P"]], - "ruinously": null, - "Ruiz": [["M"]], - "Ruiz's": null, - "rulebook": [["S"]], - "rulebooks": null, - "ruled": [["U"]], - "unruled": null, - "rule": [["M", "Z", "G", "J", "D", "R", "S"]], - "rule's": null, - "rulers": null, - "ruling": [["M"]], - "rulings": null, - "ruler": [["G", "M", "D"]], - "rules": null, - "rulering": null, - "ruler's": null, - "rulered": null, - "ruling's": null, - "Rumanian's": null, - "Rumania's": null, - "rumba": [["G", "D", "M", "S"]], - "rumbaing": null, - "rumbaed": null, - "rumba's": null, - "rumbas": null, - "rumble": [["J", "R", "S", "D", "G"]], - "rumblings": null, - "rumbler": [["M"]], - "rumbles": null, - "rumbled": null, - "rumbling": null, - "rumbler's": null, - "rumbustious": null, - "rumen": [["M"]], - "rumen's": null, - "Rumford": [["M"]], - "Rumford's": null, - "Ru": [["M", "H"]], - "Ru's": null, - "Ruth": [["M"]], - "ruminant": [["Y", "M", "S"]], - "ruminantly": null, - "ruminant's": null, - "ruminants": null, - "ruminate": [["V", "N", "G", "X", "S", "D"]], - "ruminative": [["Y"]], - "rumination": null, - "ruminating": null, - "ruminations": null, - "ruminates": null, - "ruminated": null, - "ruminatively": null, - "rummage": [["G", "R", "S", "D"]], - "rummaging": null, - "rummager": [["M"]], - "rummages": null, - "rummaged": null, - "rummager's": null, - "Rummel": [["M"]], - "Rummel's": null, - "rummer": null, - "rummest": null, - "rummy": [["T", "R", "S", "M"]], - "rummiest": null, - "rummier": null, - "rummies": null, - "rummy's": null, - "rumored": [["U"]], - "unrumored": null, - "rumorer": [["M"]], - "rumorer's": null, - "rumormonger": [["S", "G", "M", "D"]], - "rumormongers": null, - "rumormongering": null, - "rumormonger's": null, - "rumormongered": null, - "rumor": [["Z", "M", "R", "D", "S", "G"]], - "rumorers": null, - "rumor's": null, - "rumors": null, - "rumoring": null, - "Rumpelstiltskin": [["M"]], - "Rumpelstiltskin's": null, - "rump": [["G", "M", "Y", "D", "S"]], - "rumping": null, - "rump's": null, - "rumply": [["T", "R"]], - "rumped": null, - "rumps": null, - "rumple": [["S", "D", "G"]], - "rumples": null, - "rumpled": null, - "rumpling": null, - "rumpliest": null, - "rumplier": null, - "rumpus": [["S", "M"]], - "rumpuses": null, - "rumpus's": null, - "rum": [["X", "S", "M", "N"]], - "rumens": null, - "rums": null, - "rum's": null, - "runabout": [["S", "M"]], - "runabouts": null, - "runabout's": null, - "runaround": [["S"]], - "runarounds": null, - "run": [["A", "S"]], - "rerun": null, - "reruns": null, - "runs": null, - "runaway": [["S"]], - "runaways": null, - "rundown": [["S", "M"]], - "rundowns": null, - "rundown's": null, - "rune": [["M", "S"]], - "rune's": null, - "runes": null, - "Runge": [["M"]], - "Runge's": null, - "rung": [["M", "S"]], - "rung's": null, - "rungs": null, - "runic": null, - "runlet": [["S", "M"]], - "runlets": null, - "runlet's": null, - "runnable": null, - "runnel": [["S", "M"]], - "runnels": null, - "runnel's": null, - "runner": [["M", "S"]], - "runner's": null, - "runners": null, - "running": [["S"]], - "runnings": null, - "Runnymede": [["M"]], - "Runnymede's": null, - "runny": [["R", "T"]], - "runnier": null, - "runniest": null, - "runoff": [["M", "S"]], - "runoff's": null, - "runoffs": null, - "runtime": null, - "runtiness": [["M"]], - "runtiness's": null, - "runt": [["M", "S"]], - "runt's": null, - "runts": null, - "runty": [["R", "P", "T"]], - "runtier": null, - "runtiest": null, - "runway": [["M", "S"]], - "runway's": null, - "runways": null, - "Runyon": [["M"]], - "Runyon's": null, - "rupee": [["M", "S"]], - "rupee's": null, - "rupees": null, - "Ruperta": [["M"]], - "Ruperta's": null, - "Rupert": [["M"]], - "Rupert's": null, - "Ruperto": [["M"]], - "Ruperto's": null, - "rupiah": [["M"]], - "rupiah's": null, - "rupiahs": null, - "Ruppert": [["M"]], - "Ruppert's": null, - "Ruprecht": [["M"]], - "Ruprecht's": null, - "rupture": [["G", "M", "S", "D"]], - "rupturing": null, - "rupture's": null, - "ruptures": null, - "ruptured": null, - "rurality": [["M"]], - "rurality's": null, - "rural": [["Y"]], - "rurally": null, - "Rurik": [["M"]], - "Rurik's": null, - "ruse": [["M", "S"]], - "ruse's": null, - "ruses": null, - "Rushdie": [["M"]], - "Rushdie's": null, - "rush": [["D", "S", "R", "G", "Z"]], - "rushed": null, - "rushes": [["I"]], - "rusher": [["M"]], - "rushing": [["M"]], - "rushers": null, - "rusher's": null, - "inrushes": null, - "rushing's": null, - "Rush": [["M"]], - "Rush's": null, - "Rushmore": [["M"]], - "Rushmore's": null, - "rushy": [["R", "T"]], - "rushier": null, - "rushiest": null, - "Ruskin": [["M"]], - "Ruskin's": null, - "rusk": [["M", "S"]], - "rusk's": null, - "rusks": null, - "Russell": [["M"]], - "Russell's": null, - "Russel": [["M"]], - "Russel's": null, - "russet": [["M", "D", "S"]], - "russet's": null, - "russeted": null, - "russets": null, - "russetting": null, - "Russia": [["M"]], - "Russia's": null, - "Russian": [["S", "M"]], - "Russians": null, - "Russian's": null, - "Russo": [["M"]], - "Russo's": null, - "Russ": [["S"]], - "Russes": null, - "Rustbelt": [["M"]], - "Rustbelt's": null, - "rustically": null, - "rusticate": [["G", "S", "D"]], - "rusticating": null, - "rusticates": null, - "rusticated": null, - "rustication": [["M"]], - "rustication's": null, - "rusticity": [["S"]], - "rusticities": null, - "rustic": [["S"]], - "rustics": null, - "Rustie": [["M"]], - "Rustie's": null, - "rustiness": [["M", "S"]], - "rustiness's": null, - "rustinesses": null, - "Rustin": [["M"]], - "Rustin's": null, - "rustler": [["M"]], - "rustler's": null, - "rustle": [["R", "S", "D", "G", "Z"]], - "rustles": null, - "rustled": null, - "rustling": null, - "rustlers": null, - "rust": [["M", "S", "D", "G"]], - "rust's": null, - "rusts": null, - "rusted": null, - "rusting": null, - "rustproof": [["D", "G", "S"]], - "rustproofed": null, - "rustproofing": null, - "rustproofs": null, - "Rusty": [["M"]], - "Rusty's": null, - "rusty": [["X", "N", "R", "T", "P"]], - "rustications": null, - "rustier": null, - "rustiest": null, - "rutabaga": [["S", "M"]], - "rutabagas": null, - "rutabaga's": null, - "Rutger": [["S", "M"]], - "Rutgers": null, - "Rutger's": null, - "Ruthanne": [["M"]], - "Ruthanne's": null, - "Ruthann": [["M"]], - "Ruthann's": null, - "Ruthe": [["M"]], - "Ruthe's": null, - "ruthenium": [["M", "S"]], - "ruthenium's": null, - "rutheniums": null, - "rutherfordium": [["S", "M"]], - "rutherfordiums": null, - "rutherfordium's": null, - "Rutherford": [["M"]], - "Rutherford's": null, - "Ruthie": [["M"]], - "Ruthie's": null, - "Ruthi": [["M"]], - "Ruthi's": null, - "ruthlessness": [["M", "S"]], - "ruthlessness's": null, - "ruthlessnesses": null, - "ruthless": [["Y", "P"]], - "ruthlessly": null, - "Ruth's": null, - "Ruthy": [["M"]], - "Ruthy's": null, - "Rutland": [["M"]], - "Rutland's": null, - "Rutledge": [["M"]], - "Rutledge's": null, - "rut": [["M", "S"]], - "rut's": null, - "ruts": null, - "rutted": null, - "Rutter": [["M"]], - "Rutter's": null, - "Ruttger": [["M"]], - "Ruttger's": null, - "rutting": null, - "rutty": [["R", "T"]], - "ruttier": null, - "ruttiest": null, - "Ruy": [["M"]], - "Ruy's": null, - "RV": null, - "RVs": null, - "Rwandan": [["S"]], - "Rwandans": null, - "Rwanda": [["S", "M"]], - "Rwandas": null, - "Rwanda's": null, - "Rwy": [["M"]], - "Rwy's": null, - "Rx": [["M"]], - "Rx's": null, - "Ryan": [["M"]], - "Ryan's": null, - "Ryann": [["M"]], - "Ryann's": null, - "Rycca": [["M"]], - "Rycca's": null, - "Rydberg": [["M"]], - "Rydberg's": null, - "Ryder": [["M"]], - "Ryder's": null, - "rye": [["M", "S"]], - "rye's": null, - "ryes": null, - "Ryley": [["M"]], - "Ryley's": null, - "Ry": [["M"]], - "Ry's": null, - "Ryon": [["M"]], - "Ryon's": null, - "Ryukyu": [["M"]], - "Ryukyu's": null, - "Ryun": [["M"]], - "Ryun's": null, - "S": null, - "SA": null, - "Saab": [["M"]], - "Saab's": null, - "Saar": [["M"]], - "Saar's": null, - "Saba": [["M"]], - "Saba's": null, - "sabbath": null, - "Sabbath": [["M"]], - "Sabbath's": null, - "Sabbaths": null, - "sabbatical": [["S"]], - "sabbaticals": null, - "sabered": [["U"]], - "unsabered": null, - "saber": [["G", "S", "M", "D"]], - "sabering": null, - "sabers": null, - "saber's": null, - "Sabik": [["M"]], - "Sabik's": null, - "Sabina": [["M"]], - "Sabina's": null, - "Sabine": [["M"]], - "Sabine's": null, - "Sabin": [["M"]], - "Sabin's": null, - "sable": [["G", "M", "D", "S"]], - "sabling": null, - "sable's": null, - "sabled": null, - "sables": null, - "sabotage": [["D", "S", "M", "G"]], - "sabotaged": null, - "sabotages": null, - "sabotage's": null, - "sabotaging": null, - "saboteur": [["S", "M"]], - "saboteurs": null, - "saboteur's": null, - "sabot": [["M", "S"]], - "sabot's": null, - "sabots": null, - "Sabra": [["M"]], - "Sabra's": null, - "sabra": [["M", "S"]], - "sabra's": null, - "sabras": null, - "Sabrina": [["M"]], - "Sabrina's": null, - "SAC": null, - "Sacajawea": [["M"]], - "Sacajawea's": null, - "saccharides": null, - "saccharine": null, - "saccharin": [["M", "S"]], - "saccharin's": null, - "saccharins": null, - "Sacco": [["M"]], - "Sacco's": null, - "sacerdotal": null, - "Sacha": [["M"]], - "Sacha's": null, - "sachem": [["M", "S"]], - "sachem's": null, - "sachems": null, - "sachet": [["S", "M"]], - "sachets": null, - "sachet's": null, - "Sachs": [["M"]], - "Sachs's": null, - "sackcloth": [["M"]], - "sackcloth's": null, - "sackcloths": null, - "sacker": [["M"]], - "sacker's": null, - "sackful": [["M", "S"]], - "sackful's": null, - "sackfuls": null, - "sack": [["G", "J", "D", "R", "M", "S"]], - "sacking": [["M"]], - "sackings": null, - "sacked": null, - "sack's": null, - "sacks": null, - "sacking's": null, - "sacral": null, - "sacra": [["L"]], - "sacrament": [["D", "M", "G", "S"]], - "sacramental": [["S"]], - "sacramentals": null, - "sacramented": null, - "sacrament's": null, - "sacramenting": null, - "sacraments": null, - "Sacramento": [["M"]], - "Sacramento's": null, - "sacredness": [["S"]], - "sacrednesses": null, - "sacred": [["P", "Y"]], - "sacredly": null, - "sacrificer": [["M"]], - "sacrificer's": null, - "sacrifice": [["R", "S", "D", "Z", "M", "G"]], - "sacrifices": null, - "sacrificed": null, - "sacrificers": null, - "sacrifice's": null, - "sacrificing": null, - "sacrificial": [["Y"]], - "sacrificially": null, - "sacrilege": [["M", "S"]], - "sacrilege's": null, - "sacrileges": null, - "sacrilegious": [["Y"]], - "sacrilegiously": null, - "sacristan": [["S", "M"]], - "sacristans": null, - "sacristan's": null, - "sacristy": [["M", "S"]], - "sacristy's": null, - "sacristies": null, - "sacroiliac": [["S"]], - "sacroiliacs": null, - "sacrosanctness": [["M", "S"]], - "sacrosanctness's": null, - "sacrosanctnesses": null, - "sacrosanct": [["P"]], - "sacrum": [["M"]], - "sacrum's": null, - "sac": [["S", "M"]], - "sacs": null, - "sac's": null, - "Sada": [["M"]], - "Sada's": null, - "Sadat": [["M"]], - "Sadat's": null, - "Saddam": [["M"]], - "Saddam's": null, - "sadden": [["D", "S", "G"]], - "saddened": null, - "saddens": null, - "saddening": null, - "sadder": null, - "saddest": null, - "saddlebag": [["S", "M"]], - "saddlebags": null, - "saddlebag's": null, - "saddler": [["M"]], - "saddler's": null, - "saddle's": null, - "saddle": [["U", "G", "D", "S"]], - "unsaddle": null, - "unsaddling": null, - "unsaddled": null, - "unsaddles": null, - "saddling": null, - "saddled": null, - "saddles": null, - "Sadducee": [["M"]], - "Sadducee's": null, - "Sadella": [["M"]], - "Sadella's": null, - "Sade": [["M"]], - "Sade's": null, - "sades": null, - "Sadie": [["M"]], - "Sadie's": null, - "sadism": [["M", "S"]], - "sadism's": null, - "sadisms": null, - "sadistic": null, - "sadistically": null, - "sadist": [["M", "S"]], - "sadist's": null, - "sadists": null, - "sadness": [["S", "M"]], - "sadnesses": null, - "sadness's": null, - "sadomasochism": [["M", "S"]], - "sadomasochism's": null, - "sadomasochisms": null, - "sadomasochistic": null, - "sadomasochist": [["S"]], - "sadomasochists": null, - "sad": [["P", "Y"]], - "sadly": null, - "Sadr": [["M"]], - "Sadr's": null, - "Sadye": [["M"]], - "Sadye's": null, - "safari": [["G", "M", "D", "S"]], - "safariing": null, - "safari's": null, - "safaried": null, - "safaris": null, - "safeguard": [["M", "D", "S", "G"]], - "safeguard's": null, - "safeguarded": null, - "safeguards": null, - "safeguarding": null, - "safekeeping": [["M", "S"]], - "safekeeping's": null, - "safekeepings": null, - "safeness": [["M", "S"]], - "safeness's": [["U"]], - "safenesses": null, - "unsafeness's": null, - "safes": null, - "safety": [["S", "D", "M", "G"]], - "safeties": null, - "safetied": null, - "safety's": null, - "safetying": null, - "safe": [["U", "R", "P", "T", "Y"]], - "unsafe": null, - "unsafer": null, - "unsafeness": null, - "unsafely": null, - "safer": null, - "safest": null, - "safely": null, - "safflower": [["S", "M"]], - "safflowers": null, - "safflower's": null, - "saffron": [["M", "S"]], - "saffron's": null, - "saffrons": null, - "sagaciousness": [["M"]], - "sagaciousness's": null, - "sagacious": [["Y", "P"]], - "sagaciously": null, - "sagacity": [["M", "S"]], - "sagacity's": null, - "sagacities": null, - "saga": [["M", "S"]], - "saga's": null, - "sagas": null, - "Sagan": [["M"]], - "Sagan's": null, - "sagebrush": [["S", "M"]], - "sagebrushes": null, - "sagebrush's": null, - "sage": [["M", "Y", "P", "S"]], - "sage's": null, - "sagely": null, - "sageness": null, - "sages": null, - "sagged": null, - "sagger": null, - "sagging": null, - "saggy": [["R", "T"]], - "saggier": null, - "saggiest": null, - "Saginaw": [["M"]], - "Saginaw's": null, - "Sagittarius": [["M", "S"]], - "Sagittarius's": null, - "Sagittariuses": null, - "sago": [["M", "S"]], - "sago's": null, - "sagos": null, - "sag": [["T", "S", "R"]], - "sagest": null, - "sags": null, - "sager": null, - "saguaro": [["S", "M"]], - "saguaros": null, - "saguaro's": null, - "Sahara": [["M"]], - "Sahara's": null, - "Saharan": [["M"]], - "Saharan's": null, - "Sahel": null, - "sahib": [["M", "S"]], - "sahib's": null, - "sahibs": null, - "Saidee": [["M"]], - "Saidee's": null, - "saids": null, - "said": [["U"]], - "unsaid": null, - "Saigon": [["M"]], - "Saigon's": null, - "sailboard": [["D", "G", "S"]], - "sailboarded": null, - "sailboarding": null, - "sailboards": null, - "sailboat": [["S", "R", "M", "Z", "G"]], - "sailboats": null, - "sailboater": null, - "sailboat's": null, - "sailboaters": null, - "sailboating": null, - "sailcloth": [["M"]], - "sailcloth's": null, - "sailcloths": null, - "sailer": [["M"]], - "sailer's": null, - "sailfish": [["S", "M"]], - "sailfishes": null, - "sailfish's": null, - "sail": [["G", "J", "M", "D", "R", "S"]], - "sailing": [["M"]], - "sailings": null, - "sail's": null, - "sailed": null, - "sails": null, - "sailing's": null, - "sailor": [["Y", "M", "S"]], - "sailorly": null, - "sailor's": null, - "sailors": null, - "sailplane": [["S", "D", "M", "G"]], - "sailplanes": null, - "sailplaned": null, - "sailplane's": null, - "sailplaning": null, - "sainthood": [["M", "S"]], - "sainthood's": null, - "sainthoods": null, - "saintlike": null, - "saintliness": [["M", "S"]], - "saintliness's": null, - "saintlinesses": null, - "saintly": [["R", "T", "P"]], - "saintlier": null, - "saintliest": null, - "saint": [["Y", "D", "M", "G", "S"]], - "sainted": null, - "saint's": null, - "sainting": null, - "saints": null, - "Saiph": [["M"]], - "Saiph's": null, - "saith": null, - "saiths": null, - "Sakai": [["M"]], - "Sakai's": null, - "sake": [["M", "R", "S"]], - "sake's": null, - "saker": [["M"]], - "sakes": null, - "saker's": null, - "Sakhalin": [["M"]], - "Sakhalin's": null, - "Sakharov": [["M"]], - "Sakharov's": null, - "Saki": [["M"]], - "Saki's": null, - "saki's": null, - "salaam": [["G", "M", "D", "S"]], - "salaaming": null, - "salaam's": null, - "salaamed": null, - "salaams": null, - "salable": [["U"]], - "unsalable": null, - "salaciousness": [["M", "S"]], - "salaciousness's": null, - "salaciousnesses": null, - "salacious": [["Y", "P"]], - "salaciously": null, - "salacity": [["M", "S"]], - "salacity's": null, - "salacities": null, - "Saladin": [["M"]], - "Saladin's": null, - "Salado": [["M"]], - "Salado's": null, - "salad": [["S", "M"]], - "salads": null, - "salad's": null, - "Salaidh": [["M"]], - "Salaidh's": null, - "salamander": [["M", "S"]], - "salamander's": null, - "salamanders": null, - "salami": [["M", "S"]], - "salami's": null, - "salamis": null, - "salary": [["S", "D", "M", "G"]], - "salaries": null, - "salaried": null, - "salary's": null, - "salarying": null, - "Salas": [["M"]], - "Salas's": null, - "Salazar": [["M"]], - "Salazar's": null, - "saleability": [["M"]], - "saleability's": null, - "sale": [["A", "B", "M", "S"]], - "resale": null, - "resalable": null, - "resale's": null, - "resales": null, - "sale's": null, - "sales": null, - "Saleem": [["M"]], - "Saleem's": null, - "Salem": [["M"]], - "Salem's": null, - "Salerno": [["M"]], - "Salerno's": null, - "salesclerk": [["S", "M"]], - "salesclerks": null, - "salesclerk's": null, - "salesgirl": [["S", "M"]], - "salesgirls": null, - "salesgirl's": null, - "saleslady": [["S"]], - "salesladies": null, - "salesman": [["M"]], - "salesman's": null, - "salesmanship": [["S", "M"]], - "salesmanships": null, - "salesmanship's": null, - "salesmen": null, - "salespeople": [["M"]], - "salespeople's": null, - "salesperson": [["M", "S"]], - "salesperson's": null, - "salespersons": null, - "salesroom": [["M"]], - "salesroom's": null, - "saleswoman": null, - "saleswomen": null, - "salience": [["M", "S"]], - "salience's": null, - "saliences": null, - "saliency": null, - "salient": [["S", "Y"]], - "salients": null, - "saliently": null, - "Salim": [["M"]], - "Salim's": null, - "Salina": [["M", "S"]], - "Salina's": null, - "Salinas": null, - "saline": [["S"]], - "salines": null, - "salinger": null, - "Salinger": [["M"]], - "Salinger's": null, - "salinity": [["M", "S"]], - "salinity's": null, - "salinities": null, - "Salisbury": [["M"]], - "Salisbury's": null, - "Salish": [["M"]], - "Salish's": null, - "saliva": [["M", "S"]], - "saliva's": null, - "salivas": null, - "salivary": null, - "salivate": [["X", "N", "G", "S", "D"]], - "salivations": null, - "salivation": [["M"]], - "salivating": null, - "salivates": null, - "salivated": null, - "salivation's": null, - "Salk": [["M"]], - "Salk's": null, - "Sallee": [["M"]], - "Sallee's": null, - "Salle": [["M"]], - "Salle's": null, - "Sallie": [["M"]], - "Sallie's": null, - "Salli": [["M"]], - "Salli's": null, - "sallowness": [["M", "S"]], - "sallowness's": null, - "sallownesses": null, - "sallow": [["T", "G", "R", "D", "S", "P"]], - "sallowest": null, - "sallowing": null, - "sallower": null, - "sallowed": null, - "sallows": null, - "Sallust": [["M"]], - "Sallust's": null, - "Sallyanne": [["M"]], - "Sallyanne's": null, - "Sallyann": [["M"]], - "Sallyann's": null, - "sally": [["G", "S", "D", "M"]], - "sallying": null, - "sallies": null, - "sallied": null, - "sally's": null, - "Sally": [["M"]], - "Sally's": null, - "salmonellae": null, - "salmonella": [["M"]], - "salmonella's": null, - "Salmon": [["M"]], - "Salmon's": null, - "salmon": [["S", "M"]], - "salmons": null, - "salmon's": null, - "Sal": [["M", "Y"]], - "Sal's": null, - "Saloma": [["M"]], - "Saloma's": null, - "Salome": [["M"]], - "Salome's": null, - "Salomi": [["M"]], - "Salomi's": null, - "Salomo": [["M"]], - "Salomo's": null, - "Salomone": [["M"]], - "Salomone's": null, - "Salomon": [["M"]], - "Salomon's": null, - "Salonika": [["M"]], - "Salonika's": null, - "salon": [["S", "M"]], - "salons": null, - "salon's": null, - "saloonkeeper": null, - "saloon": [["M", "S"]], - "saloon's": null, - "saloons": null, - "salsa": [["M", "S"]], - "salsa's": null, - "salsas": null, - "salsify": [["M"]], - "salsify's": null, - "SALT": null, - "saltcellar": [["S", "M"]], - "saltcellars": null, - "saltcellar's": null, - "salted": [["U", "C"]], - "unsalted": null, - "desalted": null, - "salter": [["M"]], - "salter's": null, - "salt": [["G", "Z", "T", "P", "M", "D", "R", "S"]], - "salting": null, - "salters": null, - "saltest": null, - "saltness": [["M"]], - "salt's": null, - "salts": [["C"]], - "saltine": [["M", "S"]], - "saltine's": null, - "saltines": null, - "saltiness": [["S", "M"]], - "saltinesses": null, - "saltiness's": null, - "saltness's": null, - "Salton": [["M"]], - "Salton's": null, - "saltpeter": [["S", "M"]], - "saltpeters": null, - "saltpeter's": null, - "desalts": null, - "saltshaker": [["S"]], - "saltshakers": null, - "saltwater": null, - "salty": [["R", "S", "P", "T"]], - "saltier": null, - "salties": null, - "saltiest": null, - "salubriousness": [["M"]], - "salubriousness's": null, - "salubrious": [["Y", "P"]], - "salubriously": null, - "salubrity": [["M"]], - "salubrity's": null, - "salutariness": [["M"]], - "salutariness's": null, - "salutary": [["P"]], - "salutation": [["S", "M"]], - "salutations": null, - "salutation's": null, - "salutatory": [["S"]], - "salutatories": null, - "saluter": [["M"]], - "saluter's": null, - "salute": [["R", "S", "D", "G"]], - "salutes": null, - "saluted": null, - "saluting": null, - "Salvadoran": [["S"]], - "Salvadorans": null, - "Salvadorian": [["S"]], - "Salvadorians": null, - "Salvador": [["M"]], - "Salvador's": null, - "salvageable": null, - "salvage": [["M", "G", "R", "S", "D"]], - "salvage's": null, - "salvaging": null, - "salvager": [["M"]], - "salvages": null, - "salvaged": null, - "salvager's": null, - "salvation": [["M", "S"]], - "salvation's": null, - "salvations": null, - "Salvatore": [["M"]], - "Salvatore's": null, - "salve": [["G", "Z", "M", "D", "S", "R"]], - "salving": null, - "salvers": null, - "salve's": null, - "salved": null, - "salves": null, - "salver": [["M"]], - "salver's": null, - "Salvidor": [["M"]], - "Salvidor's": null, - "salvo": [["G", "M", "D", "S"]], - "salvoing": null, - "salvo's": null, - "salvoed": null, - "salvos": null, - "Salween": [["M"]], - "Salween's": null, - "Salyut": [["M"]], - "Salyut's": null, - "Salz": [["M"]], - "Salz's": null, - "SAM": null, - "Samantha": [["M"]], - "Samantha's": null, - "Samara": [["M"]], - "Samara's": null, - "Samaria": [["M"]], - "Samaria's": null, - "Samaritan": [["M", "S"]], - "Samaritan's": null, - "Samaritans": null, - "samarium": [["M", "S"]], - "samarium's": null, - "samariums": null, - "Samarkand": [["M"]], - "Samarkand's": null, - "samba": [["G", "S", "D", "M"]], - "sambaing": null, - "sambas": null, - "sambaed": null, - "samba's": null, - "sameness": [["M", "S"]], - "sameness's": null, - "samenesses": null, - "same": [["S", "P"]], - "sames": null, - "Sam": [["M"]], - "Sam's": null, - "Sammie": [["M"]], - "Sammie's": null, - "Sammy": [["M"]], - "Sammy's": null, - "Samoa": null, - "Samoan": [["S"]], - "Samoans": null, - "Samoset": [["M"]], - "Samoset's": null, - "samovar": [["S", "M"]], - "samovars": null, - "samovar's": null, - "Samoyed": [["M"]], - "Samoyed's": null, - "sampan": [["M", "S"]], - "sampan's": null, - "sampans": null, - "sampler": [["M"]], - "sampler's": null, - "sample": [["R", "S", "D", "J", "G", "M", "Z"]], - "samples": null, - "sampled": null, - "samplings": null, - "sampling": [["M"]], - "sample's": null, - "samplers": null, - "sampling's": null, - "Sampson": [["M"]], - "Sampson's": null, - "Samsonite": [["M"]], - "Samsonite's": null, - "Samson": [["M"]], - "Samson's": null, - "Samuele": [["M"]], - "Samuele's": null, - "Samuel": [["S", "M"]], - "Samuels": null, - "Samuel's": null, - "Samuelson": [["M"]], - "Samuelson's": null, - "samurai": [["M"]], - "samurai's": null, - "San'a": null, - "Sana": [["M"]], - "Sana's": null, - "sanatorium": [["M", "S"]], - "sanatorium's": null, - "sanatoriums": null, - "Sanborn": [["M"]], - "Sanborn's": null, - "Sanchez": [["M"]], - "Sanchez's": null, - "Sancho": [["M"]], - "Sancho's": null, - "sanctification": [["M"]], - "sanctification's": null, - "sanctifier": [["M"]], - "sanctifier's": null, - "sanctify": [["R", "S", "D", "G", "N", "X"]], - "sanctifies": null, - "sanctified": null, - "sanctifying": null, - "sanctifications": null, - "sanctimoniousness": [["M", "S"]], - "sanctimoniousness's": null, - "sanctimoniousnesses": null, - "sanctimonious": [["P", "Y"]], - "sanctimoniously": null, - "sanctimony": [["M", "S"]], - "sanctimony's": null, - "sanctimonies": null, - "sanctioned": [["U"]], - "unsanctioned": null, - "sanction": [["S", "M", "D", "G"]], - "sanctions": null, - "sanction's": null, - "sanctioning": null, - "sanctity": [["S", "M"]], - "sanctities": null, - "sanctity's": null, - "sanctuary": [["M", "S"]], - "sanctuary's": null, - "sanctuaries": null, - "sanctum": [["S", "M"]], - "sanctums": null, - "sanctum's": null, - "sandal": [["M", "D", "G", "S"]], - "sandal's": null, - "sandaled": null, - "sandaling": null, - "sandals": null, - "sandalwood": [["S", "M"]], - "sandalwoods": null, - "sandalwood's": null, - "sandbagged": null, - "sandbagging": null, - "sandbag": [["M", "S"]], - "sandbag's": null, - "sandbags": null, - "sandbank": [["S", "M"]], - "sandbanks": null, - "sandbank's": null, - "sandbar": [["S"]], - "sandbars": null, - "sandblaster": [["M"]], - "sandblaster's": null, - "sandblast": [["G", "Z", "S", "M", "R", "D"]], - "sandblasting": null, - "sandblasters": null, - "sandblasts": null, - "sandblast's": null, - "sandblasted": null, - "sandbox": [["M", "S"]], - "sandbox's": null, - "sandboxes": null, - "Sandburg": [["M"]], - "Sandburg's": null, - "sandcastle": [["S"]], - "sandcastles": null, - "Sande": [["M"]], - "Sande's": null, - "Sanderling": [["M"]], - "Sanderling's": null, - "sander": [["M"]], - "sander's": null, - "Sander": [["M"]], - "Sander's": null, - "Sanderson": [["M"]], - "Sanderson's": null, - "sandhill": null, - "sandhog": [["S", "M"]], - "sandhogs": null, - "sandhog's": null, - "Sandia": [["M"]], - "Sandia's": null, - "Sandie": [["M"]], - "Sandie's": null, - "Sandi": [["M"]], - "Sandi's": null, - "sandiness": [["S"]], - "sandinesses": null, - "Sandinista": null, - "sandlot": [["S", "M"]], - "sandlots": null, - "sandlot's": null, - "sandlotter": [["S"]], - "sandlotters": null, - "sandman": [["M"]], - "sandman's": null, - "sandmen": null, - "Sand": [["M", "R", "Z"]], - "Sand's": null, - "Sanders": null, - "Sandor": [["M"]], - "Sandor's": null, - "Sandoval": [["M"]], - "Sandoval's": null, - "sandpaper": [["D", "M", "G", "S"]], - "sandpapered": null, - "sandpaper's": null, - "sandpapering": null, - "sandpapers": null, - "sandpile": null, - "sandpiper": [["M", "S"]], - "sandpiper's": null, - "sandpipers": null, - "sandpit": [["M"]], - "sandpit's": null, - "Sandra": [["M"]], - "Sandra's": null, - "Sandro": [["M"]], - "Sandro's": null, - "sand": [["S", "M", "D", "R", "G", "Z"]], - "sands": null, - "sand's": null, - "sanded": null, - "sanding": null, - "sanders": null, - "sandstone": [["M", "S"]], - "sandstone's": null, - "sandstones": null, - "sandstorm": [["S", "M"]], - "sandstorms": null, - "sandstorm's": null, - "Sandusky": [["M"]], - "Sandusky's": null, - "sandwich": [["S", "D", "M", "G"]], - "sandwiches": null, - "sandwiched": null, - "sandwich's": null, - "sandwiching": null, - "Sandye": [["M"]], - "Sandye's": null, - "Sandy": [["M"]], - "Sandy's": null, - "sandy": [["P", "R", "T"]], - "sandier": null, - "sandiest": null, - "saned": null, - "sane": [["I", "R", "Y", "T", "P"]], - "insane": null, - "insaner": null, - "insanely": null, - "insaneness": null, - "saner": null, - "sanely": null, - "sanest": null, - "saneness": [["M", "S"]], - "saneness's": [["I"]], - "sanenesses": null, - "insaneness's": null, - "sanes": null, - "Sanford": [["M"]], - "Sanford's": null, - "Sanforized": null, - "Sanger": [["M"]], - "Sanger's": null, - "sangfroid": [["S"]], - "sangfroids": null, - "sangria": [["S", "M"]], - "sangrias": null, - "sangria's": null, - "Sang": [["R", "M"]], - "Sang's": null, - "sang": [["S"]], - "sangs": null, - "sanguinary": null, - "sanguined": null, - "sanguine": [["F"]], - "consanguine": null, - "sanguinely": null, - "sanguineness": [["M"]], - "sanguineness's": null, - "sanguineous": [["F"]], - "sanguines": null, - "sanguining": null, - "Sanhedrin": [["M"]], - "Sanhedrin's": null, - "saning": null, - "sanitarian": [["S"]], - "sanitarians": null, - "sanitarium": [["S", "M"]], - "sanitariums": null, - "sanitarium's": null, - "sanitary": [["S"]], - "sanitaries": null, - "sanitate": [["N", "X"]], - "sanitation": [["M"]], - "sanitations": null, - "sanitation's": null, - "sanitizer": [["M"]], - "sanitizer's": null, - "sanitize": [["R", "S", "D", "Z", "G"]], - "sanitizes": null, - "sanitized": null, - "sanitizers": null, - "sanitizing": null, - "sanity": [["S", "I", "M"]], - "sanities": null, - "insanities": null, - "insanity": null, - "insanity's": null, - "sanity's": null, - "sank": null, - "Sankara": [["M"]], - "Sankara's": null, - "San": [["M"]], - "San's": null, - "sans": null, - "sanserif": null, - "Sanskritic": null, - "Sanskritize": [["M"]], - "Sanskritize's": null, - "Sanskrit": [["M"]], - "Sanskrit's": null, - "Sansone": [["M"]], - "Sansone's": null, - "Sanson": [["M"]], - "Sanson's": null, - "Santa": [["M"]], - "Santa's": null, - "Santana": [["M"]], - "Santana's": null, - "Santayana": [["M"]], - "Santayana's": null, - "Santeria": null, - "Santiago": [["M"]], - "Santiago's": null, - "Santo": [["M", "S"]], - "Santo's": null, - "Santos": null, - "sapience": [["M", "S"]], - "sapience's": null, - "sapiences": null, - "sapient": null, - "sapless": null, - "sapling": [["S", "M"]], - "saplings": null, - "sapling's": null, - "sap": [["M", "S"]], - "sap's": null, - "saps": null, - "sapped": null, - "sapper": [["S", "M"]], - "sappers": null, - "sapper's": null, - "Sapphira": [["M"]], - "Sapphira's": null, - "Sapphire": [["M"]], - "Sapphire's": null, - "sapphire": [["M", "S"]], - "sapphire's": null, - "sapphires": null, - "Sappho": [["M"]], - "Sappho's": null, - "sappiness": [["S", "M"]], - "sappinesses": null, - "sappiness's": null, - "sapping": null, - "Sapporo": [["M"]], - "Sapporo's": null, - "sappy": [["R", "P", "T"]], - "sappier": null, - "sappiest": null, - "saprophyte": [["M", "S"]], - "saprophyte's": null, - "saprophytes": null, - "saprophytic": null, - "sapsucker": [["S", "M"]], - "sapsuckers": null, - "sapsucker's": null, - "sapwood": [["S", "M"]], - "sapwoods": null, - "sapwood's": null, - "Saraann": [["M"]], - "Saraann's": null, - "Saracen": [["M", "S"]], - "Saracen's": null, - "Saracens": null, - "Saragossa": [["M"]], - "Saragossa's": null, - "Sarah": [["M"]], - "Sarah's": null, - "Sarajane": [["M"]], - "Sarajane's": null, - "Sarajevo": [["M"]], - "Sarajevo's": null, - "Sara": [["M"]], - "Sara's": null, - "Saran": [["M"]], - "Saran's": null, - "saran": [["S", "M"]], - "sarans": null, - "saran's": null, - "sarape's": null, - "Sarasota": [["M"]], - "Sarasota's": null, - "Saratoga": [["M"]], - "Saratoga's": null, - "Saratov": [["M"]], - "Saratov's": null, - "Sarawak": [["M"]], - "Sarawak's": null, - "sarcasm": [["M", "S"]], - "sarcasm's": null, - "sarcasms": null, - "sarcastic": null, - "sarcastically": null, - "sarcoma": [["M", "S"]], - "sarcoma's": null, - "sarcomas": null, - "sarcophagi": null, - "sarcophagus": [["M"]], - "sarcophagus's": null, - "sardine": [["S", "D", "M", "G"]], - "sardines": null, - "sardined": null, - "sardine's": null, - "sardining": null, - "Sardinia": [["M"]], - "Sardinia's": null, - "sardonic": null, - "sardonically": null, - "Saree": [["M"]], - "Saree's": null, - "Sarena": [["M"]], - "Sarena's": null, - "Sarene": [["M"]], - "Sarene's": null, - "Sarette": [["M"]], - "Sarette's": null, - "Sargasso": [["M"]], - "Sargasso's": null, - "Sarge": [["M"]], - "Sarge's": null, - "Sargent": [["M"]], - "Sargent's": null, - "sarge": [["S", "M"]], - "sarges": null, - "sarge's": null, - "Sargon": [["M"]], - "Sargon's": null, - "Sari": [["M"]], - "Sari's": null, - "sari": [["M", "S"]], - "sari's": null, - "saris": null, - "Sarina": [["M"]], - "Sarina's": null, - "Sarine": [["M"]], - "Sarine's": null, - "Sarita": [["M"]], - "Sarita's": null, - "Sarnoff": [["M"]], - "Sarnoff's": null, - "sarong": [["M", "S"]], - "sarong's": null, - "sarongs": null, - "Saroyan": [["M"]], - "Saroyan's": null, - "sarsaparilla": [["M", "S"]], - "sarsaparilla's": null, - "sarsaparillas": null, - "Sarto": [["M"]], - "Sarto's": null, - "sartorial": [["Y"]], - "sartorially": null, - "sartorius": [["M"]], - "sartorius's": null, - "Sartre": [["M"]], - "Sartre's": null, - "Sascha": [["M"]], - "Sascha's": null, - "SASE": null, - "Sasha": [["M"]], - "Sasha's": null, - "sashay": [["G", "D", "S"]], - "sashaying": null, - "sashayed": null, - "sashays": null, - "Sashenka": [["M"]], - "Sashenka's": null, - "sash": [["G", "M", "D", "S"]], - "sashing": null, - "sash's": null, - "sashed": null, - "sashes": null, - "Saskatchewan": [["M"]], - "Saskatchewan's": null, - "Saskatoon": [["M"]], - "Saskatoon's": null, - "Sask": [["M"]], - "Sask's": null, - "sassafras": [["M", "S"]], - "sassafras's": null, - "sassafrases": null, - "sass": [["G", "D", "S", "M"]], - "sassing": null, - "sassed": null, - "sasses": null, - "sass's": null, - "Sassoon": [["M"]], - "Sassoon's": null, - "sassy": [["T", "R", "S"]], - "sassiest": null, - "sassier": null, - "sassies": null, - "SAT": null, - "satanic": null, - "satanical": [["Y"]], - "satanically": null, - "Satanism": [["M"]], - "Satanism's": null, - "satanism": [["S"]], - "satanisms": null, - "Satanist": [["M"]], - "Satanist's": null, - "satanist": [["S"]], - "satanists": null, - "Satan": [["M"]], - "Satan's": null, - "satchel": [["S", "M"]], - "satchels": null, - "satchel's": null, - "sat": [["D", "G"]], - "sated": null, - "sating": null, - "sateen": [["M", "S"]], - "sateen's": null, - "sateens": null, - "satellite": [["G", "M", "S", "D"]], - "satelliting": null, - "satellite's": null, - "satellites": null, - "satellited": null, - "sate": [["S"]], - "sates": null, - "satiable": [["I"]], - "satiate": [["G", "N", "X", "S", "D"]], - "satiating": null, - "satiation": [["M"]], - "satiations": null, - "satiates": null, - "satiated": null, - "satiation's": null, - "satiety": [["M", "S"]], - "satiety's": null, - "satieties": null, - "satin": [["M", "D", "S", "G"]], - "satin's": null, - "satined": null, - "satins": null, - "satining": null, - "satinwood": [["M", "S"]], - "satinwood's": null, - "satinwoods": null, - "satiny": null, - "satire": [["S", "M"]], - "satires": null, - "satire's": null, - "satiric": null, - "satirical": [["Y"]], - "satirically": null, - "satirist": [["S", "M"]], - "satirists": null, - "satirist's": null, - "satirize": [["D", "S", "G"]], - "satirized": null, - "satirizes": [["U"]], - "satirizing": null, - "unsatirizes": null, - "satisfaction": [["E", "S", "M"]], - "dissatisfaction": null, - "dissatisfactions": null, - "dissatisfaction's": null, - "satisfactions": null, - "satisfaction's": null, - "satisfactorily": [["U"]], - "unsatisfactorily": null, - "satisfactoriness": [["M", "U"]], - "satisfactoriness's": null, - "unsatisfactoriness's": null, - "unsatisfactoriness": null, - "satisfactory": [["U", "P"]], - "unsatisfactory": null, - "satisfiability": [["U"]], - "unsatisfiability": null, - "satisfiable": [["U"]], - "unsatisfiable": null, - "satisfied": [["U", "E"]], - "unsatisfied": null, - "dissatisfied": null, - "satisfier": [["M"]], - "satisfier's": null, - "satisfies": [["E"]], - "dissatisfies": null, - "satisfy": [["G", "Z", "D", "R", "S"]], - "satisfying": [["E", "U"]], - "satisfiers": null, - "dissatisfying": null, - "unsatisfying": null, - "satisfyingly": null, - "Sat": [["M"]], - "Sat's": null, - "satori": [["S", "M"]], - "satoris": null, - "satori's": null, - "satrap": [["S", "M"]], - "satraps": null, - "satrap's": null, - "saturated": [["C", "U", "A"]], - "desaturated": null, - "unsaturated": null, - "resaturated": null, - "saturater": [["M"]], - "saturater's": null, - "saturates": [["A"]], - "resaturates": null, - "saturate": [["X", "D", "R", "S", "N", "G"]], - "saturations": null, - "saturation": [["M"]], - "saturating": null, - "saturation's": null, - "Saturday": [["M", "S"]], - "Saturday's": null, - "Saturdays": null, - "saturnalia": null, - "Saturnalia": [["M"]], - "Saturnalia's": null, - "saturnine": [["Y"]], - "saturninely": null, - "Saturn": [["M"]], - "Saturn's": null, - "Satyanarayanan": [["M"]], - "Satyanarayanan's": null, - "satyriases": null, - "satyriasis": [["M"]], - "satyriasis's": null, - "satyric": null, - "satyr": [["M", "S"]], - "satyr's": null, - "satyrs": null, - "sauce": [["D", "S", "R", "G", "Z", "M"]], - "sauced": null, - "sauces": null, - "saucer": [["M"]], - "saucing": null, - "saucers": null, - "sauce's": null, - "saucepan": [["S", "M"]], - "saucepans": null, - "saucepan's": null, - "saucer's": null, - "saucily": null, - "sauciness": [["S"]], - "saucinesses": null, - "saucy": [["T", "R", "P"]], - "sauciest": null, - "saucier": null, - "Saudi": [["S"]], - "Saudis": null, - "Saud": [["M"]], - "Saud's": null, - "Saudra": [["M"]], - "Saudra's": null, - "sauerkraut": [["S", "M"]], - "sauerkrauts": null, - "sauerkraut's": null, - "Saukville": [["M"]], - "Saukville's": null, - "Saul": [["M"]], - "Saul's": null, - "Sault": [["M"]], - "Sault's": null, - "sauna": [["D", "M", "S", "G"]], - "saunaed": null, - "sauna's": null, - "saunas": null, - "saunaing": null, - "Sauncho": [["M"]], - "Sauncho's": null, - "Saunder": [["S", "M"]], - "Saunders": null, - "Saunder's": null, - "Saunderson": [["M"]], - "Saunderson's": null, - "Saundra": [["M"]], - "Saundra's": null, - "saunter": [["D", "R", "S", "G"]], - "sauntered": null, - "saunterer": null, - "saunters": null, - "sauntering": null, - "saurian": [["S"]], - "saurians": null, - "sauropod": [["S", "M"]], - "sauropods": null, - "sauropod's": null, - "sausage": [["M", "S"]], - "sausage's": null, - "sausages": null, - "Saussure": [["M"]], - "Saussure's": null, - "saut�": [["D", "G", "S"]], - "saut�ed": null, - "saut�ing": null, - "saut�s": null, - "Sauternes": [["M"]], - "Sauternes's": null, - "Sauveur": [["M"]], - "Sauveur's": null, - "savage": [["G", "T", "Z", "Y", "P", "R", "S", "D"]], - "savaging": null, - "savagest": null, - "savagers": null, - "savagely": null, - "savageness": [["S", "M"]], - "savager": null, - "savages": null, - "savaged": null, - "Savage": [["M"]], - "Savage's": null, - "savagenesses": null, - "savageness's": null, - "savagery": [["M", "S"]], - "savagery's": null, - "savageries": null, - "Savannah": [["M"]], - "Savannah's": null, - "savanna": [["M", "S"]], - "savanna's": null, - "savannas": null, - "savant": [["S", "M"]], - "savants": null, - "savant's": null, - "saved": [["U"]], - "unsaved": null, - "saveloy": [["M"]], - "saveloy's": null, - "saver": [["M"]], - "saver's": null, - "save": [["Z", "G", "J", "D", "R", "S", "B"]], - "savers": null, - "saving": null, - "savings": null, - "saves": null, - "savable": null, - "Savina": [["M"]], - "Savina's": null, - "Savior": [["M"]], - "Savior's": null, - "savior": [["S", "M"]], - "saviors": null, - "savior's": null, - "Saviour": [["M"]], - "Saviour's": null, - "Savonarola": [["M"]], - "Savonarola's": null, - "savored": [["U"]], - "unsavored": [["Y", "P"]], - "savorer": [["M"]], - "savorer's": null, - "savorier": null, - "savoriest": null, - "savoriness": [["S"]], - "savorinesses": null, - "savoringly": [["S"]], - "savoringlies": null, - "savoring": [["Y"]], - "savor": [["S", "M", "R", "D", "G", "Z"]], - "savors": null, - "savor's": null, - "savorers": null, - "savory": [["U", "M", "P", "S"]], - "unsavory": null, - "unsavory's": null, - "unsavoriness": [["M"]], - "unsavories": null, - "savory's": null, - "savories": null, - "Savoyard": [["M"]], - "Savoyard's": null, - "Savoy": [["M"]], - "Savoy's": null, - "savoy": [["S", "M"]], - "savoys": null, - "savoy's": null, - "savvy": [["G", "T", "R", "S", "D"]], - "savvying": null, - "savviest": null, - "savvier": null, - "savvies": null, - "savvied": null, - "sawbones": [["M"]], - "sawbones's": null, - "sawbuck": [["S", "M"]], - "sawbucks": null, - "sawbuck's": null, - "sawdust": [["M", "D", "S", "G"]], - "sawdust's": null, - "sawdusted": null, - "sawdusts": null, - "sawdusting": null, - "sawer": [["M"]], - "sawer's": null, - "sawfly": [["S", "M"]], - "sawflies": null, - "sawfly's": null, - "sawhorse": [["M", "S"]], - "sawhorse's": null, - "sawhorses": null, - "Saw": [["M"]], - "Saw's": null, - "sawmill": [["S", "M"]], - "sawmills": null, - "sawmill's": null, - "saw": [["S", "M", "D", "R", "G"]], - "saws": null, - "saw's": null, - "sawed": null, - "sawing": null, - "sawtooth": null, - "Sawyere": [["M"]], - "Sawyere's": null, - "Sawyer": [["M"]], - "Sawyer's": null, - "sawyer": [["M", "S"]], - "sawyer's": null, - "sawyers": null, - "Saxe": [["M"]], - "Saxe's": null, - "saxifrage": [["S", "M"]], - "saxifrages": null, - "saxifrage's": null, - "Sax": [["M"]], - "Sax's": null, - "sax": [["M", "S"]], - "sax's": null, - "saxes": null, - "Saxon": [["S", "M"]], - "Saxons": null, - "Saxon's": null, - "Saxony": [["M"]], - "Saxony's": null, - "saxophone": [["M", "S"]], - "saxophone's": null, - "saxophones": null, - "saxophonist": [["S", "M"]], - "saxophonists": null, - "saxophonist's": null, - "Saxton": [["M"]], - "Saxton's": null, - "Sayer": [["M"]], - "Sayer's": null, - "sayer": [["S", "M"]], - "sayers": null, - "sayer's": null, - "sayest": null, - "saying": [["M", "S"]], - "saying's": null, - "sayings": null, - "Sayre": [["M", "S"]], - "Sayre's": null, - "Sayres": null, - "says": [["M"]], - "says's": null, - "say": [["U", "S", "G"]], - "unsay": null, - "unsays": null, - "unsaying": null, - "Say": [["Z", "M", "R"]], - "Sayers": null, - "Say's": null, - "SBA": null, - "Sb": [["M"]], - "Sb's": null, - "SC": null, - "scabbard": [["S", "G", "D", "M"]], - "scabbards": null, - "scabbarding": null, - "scabbarded": null, - "scabbard's": null, - "scabbed": null, - "scabbiness": [["S", "M"]], - "scabbinesses": null, - "scabbiness's": null, - "scabbing": null, - "scabby": [["R", "T", "P"]], - "scabbier": null, - "scabbiest": null, - "scabies": [["M"]], - "scabies's": null, - "scabrousness": [["M"]], - "scabrousness's": null, - "scabrous": [["Y", "P"]], - "scabrously": null, - "scab": [["S", "M"]], - "scabs": null, - "scab's": null, - "scad": [["S", "M"]], - "scads": null, - "scad's": null, - "scaffolding": [["M"]], - "scaffolding's": null, - "scaffold": [["J", "G", "D", "M", "S"]], - "scaffoldings": null, - "scaffolded": null, - "scaffold's": null, - "scaffolds": null, - "scalability": null, - "Scala": [["M"]], - "Scala's": null, - "scalar": [["S", "M"]], - "scalars": null, - "scalar's": null, - "scalawag": [["S", "M"]], - "scalawags": null, - "scalawag's": null, - "scald": [["G", "J", "R", "D", "S"]], - "scalding": null, - "scaldings": null, - "scalder": null, - "scalded": null, - "scalds": null, - "scaled": [["A", "U"]], - "rescaled": null, - "unscaled": null, - "scale": [["J", "G", "Z", "M", "B", "D", "S", "R"]], - "scalings": null, - "scaling": [["A"]], - "scalers": null, - "scale's": null, - "scalable": null, - "scales": [["A"]], - "scaler": [["M"]], - "scaleless": null, - "scalene": null, - "scaler's": null, - "rescales": null, - "scaliness": [["M", "S"]], - "scaliness's": null, - "scalinesses": null, - "rescaling": null, - "scallion": [["M", "S"]], - "scallion's": null, - "scallions": null, - "scalloper": [["M"]], - "scalloper's": null, - "scallop": [["G", "S", "M", "D", "R"]], - "scalloping": [["M"]], - "scallops": null, - "scallop's": null, - "scalloped": null, - "scalloping's": null, - "scalpel": [["S", "M"]], - "scalpels": null, - "scalpel's": null, - "scalper": [["M"]], - "scalper's": null, - "scalp": [["G", "Z", "R", "D", "M", "S"]], - "scalping": [["M"]], - "scalpers": null, - "scalped": null, - "scalp's": null, - "scalps": null, - "scalping's": null, - "scaly": [["T", "P", "R"]], - "scaliest": null, - "scalier": null, - "scammed": null, - "scamming": null, - "scamper": [["G", "D"]], - "scampering": null, - "scampered": null, - "scampi": [["M"]], - "scampi's": null, - "scamp": [["R", "D", "M", "G", "Z", "S"]], - "scamped": null, - "scamp's": null, - "scamping": null, - "scampers": null, - "scamps": null, - "scam": [["S", "M"]], - "scams": null, - "scam's": null, - "Scan": null, - "scan": [["A", "S"]], - "rescan": null, - "rescans": null, - "scans": null, - "scandal": [["G", "M", "D", "S"]], - "scandaling": null, - "scandal's": null, - "scandaled": null, - "scandals": null, - "scandalized": [["U"]], - "unscandalized": null, - "scandalize": [["G", "D", "S"]], - "scandalizing": null, - "scandalizes": null, - "scandalmonger": [["S", "M"]], - "scandalmongers": null, - "scandalmonger's": null, - "scandalousness": [["M"]], - "scandalousness's": null, - "scandalous": [["Y", "P"]], - "scandalously": null, - "Scandinavia": [["M"]], - "Scandinavia's": null, - "Scandinavian": [["S"]], - "Scandinavians": null, - "scandium": [["M", "S"]], - "scandium's": null, - "scandiums": null, - "scanned": [["A"]], - "rescanned": null, - "scanner": [["S", "M"]], - "scanners": null, - "scanner's": null, - "scanning": [["A"]], - "rescanning": null, - "scansion": [["S", "M"]], - "scansions": null, - "scansion's": null, - "scant": [["C", "D", "R", "S", "G"]], - "descanted": null, - "descanter": null, - "descants": null, - "descanting": null, - "scanted": null, - "scanter": null, - "scants": null, - "scanting": null, - "scantest": null, - "scantily": null, - "scantiness": [["M", "S"]], - "scantiness's": null, - "scantinesses": null, - "scantly": null, - "scantness": [["M", "S"]], - "scantness's": null, - "scantnesses": null, - "scanty": [["T", "P", "R", "S"]], - "scantiest": null, - "scantier": null, - "scanties": null, - "scapegoat": [["S", "G", "D", "M"]], - "scapegoats": null, - "scapegoating": null, - "scapegoated": null, - "scapegoat's": null, - "scapegrace": [["M", "S"]], - "scapegrace's": null, - "scapegraces": null, - "scape": [["M"]], - "scape's": null, - "scapulae": null, - "scapula": [["M"]], - "scapula's": null, - "scapular": [["S"]], - "scapulars": null, - "scarab": [["S", "M"]], - "scarabs": null, - "scarab's": null, - "Scaramouch": [["M"]], - "Scaramouch's": null, - "Scarborough": [["M"]], - "Scarborough's": null, - "scarceness": [["S", "M"]], - "scarcenesses": null, - "scarceness's": null, - "scarce": [["R", "T", "Y", "P"]], - "scarcer": null, - "scarcest": null, - "scarcely": null, - "scarcity": [["M", "S"]], - "scarcity's": null, - "scarcities": null, - "scar": [["D", "R", "M", "S", "G"]], - "scared": null, - "scarer": [["M"]], - "scar's": null, - "scars": null, - "scaring": null, - "scarecrow": [["M", "S"]], - "scarecrow's": null, - "scarecrows": null, - "scaremongering": [["M"]], - "scaremongering's": null, - "scaremonger": [["S", "G", "M"]], - "scaremongers": null, - "scaremonger's": null, - "scarer's": null, - "scare": [["S"]], - "scares": null, - "scarface": null, - "Scarface": [["M"]], - "Scarface's": null, - "scarf": [["S", "D", "G", "M"]], - "scarfs": null, - "scarfed": null, - "scarfing": null, - "scarf's": null, - "scarification": [["M"]], - "scarification's": null, - "scarify": [["D", "R", "S", "N", "G", "X"]], - "scarified": null, - "scarifier": null, - "scarifies": null, - "scarifying": null, - "scarifications": null, - "scarily": null, - "scariness": [["S"]], - "scarinesses": null, - "scarlatina": [["M", "S"]], - "scarlatina's": null, - "scarlatinas": null, - "Scarlatti": [["M"]], - "Scarlatti's": null, - "Scarlet": [["M"]], - "Scarlet's": null, - "scarlet": [["M", "D", "S", "G"]], - "scarlet's": null, - "scarleted": null, - "scarlets": null, - "scarleting": null, - "Scarlett": [["M"]], - "Scarlett's": null, - "scarp": [["S", "D", "M", "G"]], - "scarps": null, - "scarped": null, - "scarp's": null, - "scarping": null, - "scarred": null, - "scarring": null, - "scarves": [["M"]], - "scarves's": null, - "scary": [["P", "T", "R"]], - "scariest": null, - "scarier": null, - "scathe": [["D", "G"]], - "scathed": [["U"]], - "scathing": [["Y"]], - "unscathed": null, - "scathingly": null, - "scatological": null, - "scatology": [["S", "M"]], - "scatologies": null, - "scatology's": null, - "scat": [["S"]], - "scats": null, - "scatted": null, - "scatterbrain": [["M", "D", "S"]], - "scatterbrain's": null, - "scatterbrained": null, - "scatterbrains": null, - "scatter": [["D", "R", "J", "Z", "S", "G"]], - "scattered": null, - "scatterer": [["M"]], - "scatterings": null, - "scatterers": null, - "scatters": null, - "scattering": [["Y", "M"]], - "scatterer's": null, - "scattergun": null, - "scatteringly": null, - "scattering's": null, - "scatting": null, - "scavenge": [["G", "D", "R", "S", "Z"]], - "scavenging": null, - "scavenged": null, - "scavenger": [["M"]], - "scavenges": null, - "scavengers": null, - "scavenger's": null, - "SCCS": null, - "scenario": [["S", "M"]], - "scenarios": null, - "scenario's": null, - "scenarist": [["M", "S"]], - "scenarist's": null, - "scenarists": null, - "scene": [["G", "M", "D", "S"]], - "scening": null, - "scene's": null, - "scened": null, - "scenes": null, - "scenery": [["S", "M"]], - "sceneries": null, - "scenery's": null, - "scenically": null, - "scenic": [["S"]], - "scenics": null, - "scented": [["U"]], - "unscented": null, - "scent": [["G", "D", "M", "S"]], - "scenting": null, - "scent's": [["C"]], - "scents": [["C"]], - "scentless": null, - "descent's": null, - "descents": null, - "scepter": [["D", "M", "S", "G"]], - "sceptered": null, - "scepter's": null, - "scepters": [["U"]], - "sceptering": null, - "unscepters": null, - "sceptically": null, - "sch": null, - "Schaefer": [["M"]], - "Schaefer's": null, - "Schaeffer": [["M"]], - "Schaeffer's": null, - "Schafer": [["M"]], - "Schafer's": null, - "Schaffner": [["M"]], - "Schaffner's": null, - "Schantz": [["M"]], - "Schantz's": null, - "Schapiro": [["M"]], - "Schapiro's": null, - "Scheat": [["M"]], - "Scheat's": null, - "Schedar": [["M"]], - "Schedar's": null, - "schedule": [["A", "D", "S", "R", "G"]], - "reschedule": null, - "rescheduled": null, - "reschedules": null, - "rescheduler": null, - "rescheduling": null, - "scheduled": [["U"]], - "schedules": null, - "scheduler": [["M", "S"]], - "scheduling": null, - "unscheduled": null, - "scheduler's": null, - "schedulers": null, - "schedule's": null, - "Scheherazade": [["M"]], - "Scheherazade's": null, - "Scheherezade": [["M"]], - "Scheherezade's": null, - "Schelling": [["M"]], - "Schelling's": null, - "schema": [["M"]], - "schema's": null, - "schemata": null, - "schematically": null, - "schematic": [["S"]], - "schematics": null, - "scheme": [["J", "S", "R", "D", "G", "M", "Z"]], - "schemings": null, - "schemes": null, - "schemer": [["M"]], - "schemed": null, - "scheming": null, - "scheme's": null, - "schemers": null, - "schemer's": null, - "schemta": null, - "Schenectady": [["M"]], - "Schenectady's": null, - "scherzo": [["M", "S"]], - "scherzo's": null, - "scherzos": null, - "Schick": [["M"]], - "Schick's": null, - "Schiller": [["M"]], - "Schiller's": null, - "schilling": [["S", "M"]], - "schillings": null, - "schilling's": null, - "schismatic": [["S"]], - "schismatics": null, - "schism": [["S", "M"]], - "schisms": null, - "schism's": null, - "schist": [["S", "M"]], - "schists": null, - "schist's": null, - "schizoid": [["S"]], - "schizoids": null, - "schizomycetes": null, - "schizophrenia": [["S", "M"]], - "schizophrenias": null, - "schizophrenia's": null, - "schizophrenically": null, - "schizophrenic": [["S"]], - "schizophrenics": null, - "schizo": [["S"]], - "schizos": null, - "schlemiel": [["M", "S"]], - "schlemiel's": null, - "schlemiels": null, - "schlepped": null, - "schlepping": null, - "schlep": [["S"]], - "schleps": null, - "Schlesinger": [["M"]], - "Schlesinger's": null, - "Schliemann": [["M"]], - "Schliemann's": null, - "Schlitz": [["M"]], - "Schlitz's": null, - "schlock": [["S", "M"]], - "schlocks": null, - "schlock's": null, - "schlocky": [["T", "R"]], - "schlockiest": null, - "schlockier": null, - "Schloss": [["M"]], - "Schloss's": null, - "schmaltz": [["M", "S"]], - "schmaltz's": null, - "schmaltzes": null, - "schmaltzy": [["T", "R"]], - "schmaltziest": null, - "schmaltzier": null, - "Schmidt": [["M"]], - "Schmidt's": null, - "Schmitt": [["M"]], - "Schmitt's": null, - "schmoes": null, - "schmo": [["M"]], - "schmo's": null, - "schmooze": [["G", "S", "D"]], - "schmoozing": null, - "schmoozes": null, - "schmoozed": null, - "schmuck": [["M", "S"]], - "schmuck's": null, - "schmucks": null, - "Schnabel": [["M"]], - "Schnabel's": null, - "schnapps": [["M"]], - "schnapps's": null, - "schnauzer": [["M", "S"]], - "schnauzer's": null, - "schnauzers": null, - "Schneider": [["M"]], - "Schneider's": null, - "schnitzel": [["M", "S"]], - "schnitzel's": null, - "schnitzels": null, - "schnook": [["S", "M"]], - "schnooks": null, - "schnook's": null, - "schnoz": [["S"]], - "schnozes": null, - "schnozzle": [["M", "S"]], - "schnozzle's": null, - "schnozzles": null, - "Schoenberg": [["M"]], - "Schoenberg's": null, - "Schofield": [["M"]], - "Schofield's": null, - "scholarship": [["M", "S"]], - "scholarship's": null, - "scholarships": null, - "scholar": [["S", "Y", "M"]], - "scholars": null, - "scholarly": null, - "scholar's": null, - "scholastically": null, - "scholastic": [["S"]], - "scholastics": null, - "schoolbag": [["S", "M"]], - "schoolbags": null, - "schoolbag's": null, - "schoolbook": [["S", "M"]], - "schoolbooks": null, - "schoolbook's": null, - "schoolboy": [["M", "S"]], - "schoolboy's": null, - "schoolboys": null, - "schoolchild": [["M"]], - "schoolchild's": null, - "schoolchildren": null, - "schooldays": null, - "schooled": [["U"]], - "unschooled": null, - "schoolfellow": [["S"]], - "schoolfellows": null, - "schoolfriend": null, - "schoolgirlish": null, - "schoolgirl": [["M", "S"]], - "schoolgirl's": null, - "schoolgirls": null, - "schoolhouse": [["M", "S"]], - "schoolhouse's": null, - "schoolhouses": null, - "schooling": [["M"]], - "schooling's": null, - "schoolmarmish": null, - "schoolmarm": [["M", "S"]], - "schoolmarm's": null, - "schoolmarms": null, - "schoolmaster": [["S", "G", "D", "M"]], - "schoolmasters": null, - "schoolmastering": null, - "schoolmastered": null, - "schoolmaster's": null, - "schoolmate": [["M", "S"]], - "schoolmate's": null, - "schoolmates": null, - "schoolmistress": [["M", "S"]], - "schoolmistress's": null, - "schoolmistresses": null, - "schoolroom": [["S", "M"]], - "schoolrooms": null, - "schoolroom's": null, - "schoolteacher": [["M", "S"]], - "schoolteacher's": null, - "schoolteachers": null, - "schoolwork": [["S", "M"]], - "schoolworks": null, - "schoolwork's": null, - "schoolyard": [["S", "M"]], - "schoolyards": null, - "schoolyard's": null, - "school": [["Z", "G", "M", "R", "D", "J", "S"]], - "schoolers": null, - "school's": null, - "schooler": null, - "schoolings": null, - "schools": null, - "schooner": [["S", "M"]], - "schooners": null, - "schooner's": null, - "Schopenhauer": [["M"]], - "Schopenhauer's": null, - "Schottky": [["M"]], - "Schottky's": null, - "Schrieffer": [["M"]], - "Schrieffer's": null, - "Schr�dinger": [["M"]], - "Schr�dinger's": null, - "Schroeder": [["M"]], - "Schroeder's": null, - "Schroedinger": [["M"]], - "Schroedinger's": null, - "Schubert": [["M"]], - "Schubert's": null, - "Schultz": [["M"]], - "Schultz's": null, - "Schulz": [["M"]], - "Schulz's": null, - "Schumacher": [["M"]], - "Schumacher's": null, - "Schuman": [["M"]], - "Schuman's": null, - "Schumann": [["M"]], - "Schumann's": null, - "schussboomer": [["S"]], - "schussboomers": null, - "schuss": [["S", "D", "M", "G"]], - "schusses": null, - "schussed": null, - "schuss's": null, - "schussing": null, - "Schuster": [["M"]], - "Schuster's": null, - "Schuyler": [["M"]], - "Schuyler's": null, - "Schuylkill": [["M"]], - "Schuylkill's": null, - "Schwab": [["M"]], - "Schwab's": null, - "Schwartzkopf": [["M"]], - "Schwartzkopf's": null, - "Schwartz": [["M"]], - "Schwartz's": null, - "Schwarzenegger": [["M"]], - "Schwarzenegger's": null, - "schwa": [["S", "M"]], - "schwas": null, - "schwa's": null, - "Schweitzer": [["M"]], - "Schweitzer's": null, - "Schweppes": [["M"]], - "Schweppes's": null, - "Schwinger": [["M"]], - "Schwinger's": null, - "Schwinn": [["M"]], - "Schwinn's": null, - "sci": null, - "sciatica": [["S", "M"]], - "sciaticas": null, - "sciatica's": null, - "sciatic": [["S"]], - "sciatics": null, - "science": [["F", "M", "S"]], - "conscience": null, - "conscience's": null, - "consciences": null, - "science's": null, - "sciences": null, - "scientifically": [["U"]], - "unscientifically": null, - "scientific": [["U"]], - "unscientific": null, - "scientist": [["S", "M"]], - "scientists": null, - "scientist's": null, - "Scientology": [["M"]], - "Scientology's": null, - "scimitar": [["S", "M"]], - "scimitars": null, - "scimitar's": null, - "scintilla": [["M", "S"]], - "scintilla's": null, - "scintillas": null, - "scintillate": [["G", "N", "D", "S", "X"]], - "scintillating": null, - "scintillation": [["M"]], - "scintillated": null, - "scintillates": null, - "scintillations": null, - "scintillation's": null, - "scintillator": [["S", "M"]], - "scintillators": null, - "scintillator's": null, - "scion": [["S", "M"]], - "scions": null, - "scion's": null, - "Scipio": [["M"]], - "Scipio's": null, - "scissor": [["S", "G", "D"]], - "scissors": null, - "scissoring": null, - "scissored": null, - "scleroses": null, - "sclerosis": [["M"]], - "sclerosis's": null, - "sclerotic": [["S"]], - "sclerotics": null, - "Sc": [["M"]], - "Sc's": null, - "scoffer": [["M"]], - "scoffer's": null, - "scofflaw": [["M", "S"]], - "scofflaw's": null, - "scofflaws": null, - "scoff": [["R", "D", "G", "Z", "S"]], - "scoffed": null, - "scoffing": null, - "scoffers": null, - "scoffs": null, - "scolder": [["M"]], - "scolder's": null, - "scold": [["G", "S", "J", "R", "D"]], - "scolding": null, - "scolds": null, - "scoldings": null, - "scolded": null, - "scolioses": null, - "scoliosis": [["M"]], - "scoliosis's": null, - "scollop's": null, - "sconce": [["S", "D", "G", "M"]], - "sconces": null, - "sconced": null, - "sconcing": null, - "sconce's": null, - "scone": [["S", "M"]], - "scones": null, - "scone's": null, - "scooper": [["M"]], - "scooper's": null, - "scoop": [["S", "R", "D", "M", "G"]], - "scoops": null, - "scooped": null, - "scoop's": null, - "scooping": null, - "scooter": [["M"]], - "scooter's": null, - "scoot": [["S", "R", "D", "G", "Z"]], - "scoots": null, - "scooted": null, - "scooting": null, - "scooters": null, - "scope": [["D", "S", "G", "M"]], - "scoped": null, - "scopes": null, - "scoping": null, - "scope's": null, - "Scopes": [["M"]], - "Scopes's": null, - "scops": null, - "scorbutic": null, - "scorcher": [["M"]], - "scorcher's": null, - "scorching": [["Y"]], - "scorchingly": null, - "scorch": [["Z", "G", "R", "S", "D"]], - "scorchers": null, - "scorches": null, - "scorched": null, - "scoreboard": [["M", "S"]], - "scoreboard's": null, - "scoreboards": null, - "scorecard": [["M", "S"]], - "scorecard's": null, - "scorecards": null, - "scored": [["M"]], - "scored's": null, - "scorekeeper": [["S", "M"]], - "scorekeepers": null, - "scorekeeper's": null, - "scoreless": null, - "scoreline": null, - "score": [["Z", "M", "D", "S", "R", "J", "G"]], - "scorers": null, - "score's": null, - "scores": null, - "scorer": null, - "scorings": null, - "scoring": null, - "scorner": [["M"]], - "scorner's": null, - "scornfulness": [["M"]], - "scornfulness's": null, - "scornful": [["P", "Y"]], - "scornfully": null, - "scorn": [["S", "G", "Z", "M", "R", "D"]], - "scorns": null, - "scorning": null, - "scorners": null, - "scorn's": null, - "scorned": null, - "scorpion": [["S", "M"]], - "scorpions": null, - "scorpion's": null, - "Scorpio": [["S", "M"]], - "Scorpios": null, - "Scorpio's": null, - "Scorpius": [["M"]], - "Scorpius's": null, - "Scorsese": [["M"]], - "Scorsese's": null, - "Scotchgard": [["M"]], - "Scotchgard's": null, - "Scotchman": [["M"]], - "Scotchman's": null, - "Scotchmen": null, - "scotch": [["M", "S", "D", "G"]], - "scotch's": null, - "scotches": null, - "scotched": null, - "scotching": null, - "scotchs": null, - "Scotch": [["S"]], - "Scotches": null, - "Scotchwoman": null, - "Scotchwomen": null, - "Scotia": [["M"]], - "Scotia's": null, - "Scotian": [["M"]], - "Scotian's": null, - "Scotland": [["M"]], - "Scotland's": null, - "Scot": [["M", "S"]], - "Scot's": null, - "Scots": null, - "Scotsman": [["M"]], - "Scotsman's": null, - "Scotsmen": null, - "Scotswoman": null, - "Scotswomen": null, - "Scottie": [["S", "M"]], - "Scotties": null, - "Scottie's": null, - "Scotti": [["M"]], - "Scotti's": null, - "Scottish": null, - "Scott": [["M"]], - "Scott's": null, - "Scottsdale": [["M"]], - "Scottsdale's": null, - "Scotty's": null, - "scoundrel": [["Y", "M", "S"]], - "scoundrelly": null, - "scoundrel's": null, - "scoundrels": null, - "scourer": [["M"]], - "scourer's": null, - "scourge": [["M", "G", "R", "S", "D"]], - "scourge's": null, - "scourging": null, - "scourger": [["M"]], - "scourges": null, - "scourged": null, - "scourger's": null, - "scouring": [["M"]], - "scouring's": null, - "scour": [["S", "R", "D", "G", "Z"]], - "scours": null, - "scoured": null, - "scourers": null, - "scouter": [["M"]], - "scouter's": null, - "scouting": [["M"]], - "scouting's": null, - "scoutmaster": [["S", "M"]], - "scoutmasters": null, - "scoutmaster's": null, - "Scout's": null, - "scout": [["S", "R", "D", "M", "J", "G"]], - "scouts": null, - "scouted": null, - "scout's": null, - "scoutings": null, - "scow": [["D", "M", "G", "S"]], - "scowed": null, - "scow's": null, - "scowing": null, - "scows": null, - "scowler": [["M"]], - "scowler's": null, - "scowl": [["S", "R", "D", "G"]], - "scowls": null, - "scowled": null, - "scowling": null, - "scrabble": [["D", "R", "S", "Z", "G"]], - "scrabbled": null, - "scrabbler": [["M"]], - "scrabbles": null, - "scrabblers": null, - "scrabbling": null, - "scrabbler's": null, - "Scrabble": [["S", "M"]], - "Scrabbles": null, - "Scrabble's": null, - "scragged": null, - "scragging": null, - "scraggly": [["T", "R"]], - "scraggliest": null, - "scragglier": null, - "scraggy": [["T", "R"]], - "scraggiest": null, - "scraggier": null, - "scrag": [["S", "M"]], - "scrags": null, - "scrag's": null, - "scrambler": [["M", "S"]], - "scrambler's": [["U"]], - "scramblers": null, - "unscrambler's": null, - "scramble": [["U", "D", "S", "R", "G"]], - "unscramble": null, - "unscrambled": null, - "unscrambles": null, - "unscrambler": null, - "unscrambling": null, - "scrambled": null, - "scrambles": null, - "scrambling": null, - "scrammed": null, - "scramming": null, - "scram": [["S"]], - "scrams": null, - "Scranton": [["M"]], - "Scranton's": null, - "scrapbook": [["S", "M"]], - "scrapbooks": null, - "scrapbook's": null, - "scraper": [["M"]], - "scraper's": null, - "scrape": [["S"]], - "scrapes": null, - "scrapheap": [["S", "M"]], - "scrapheaps": null, - "scrapheap's": null, - "scrapped": null, - "scrapper": [["S", "M"]], - "scrappers": null, - "scrapper's": null, - "scrapping": null, - "scrappy": [["R", "T"]], - "scrappier": null, - "scrappiest": null, - "scrap": [["S", "G", "Z", "J", "R", "D", "M"]], - "scraps": null, - "scraping": null, - "scrapers": null, - "scrapings": null, - "scraped": null, - "scrap's": null, - "scrapyard": [["S"]], - "scrapyards": null, - "scratched": [["U"]], - "unscratched": null, - "scratcher": [["M"]], - "scratcher's": null, - "scratches": [["M"]], - "scratches's": null, - "scratchily": null, - "scratchiness": [["S"]], - "scratchinesses": null, - "scratch": [["J", "D", "R", "S", "Z", "G"]], - "scratchings": null, - "scratchers": null, - "scratching": null, - "scratchy": [["T", "R", "P"]], - "scratchiest": null, - "scratchier": null, - "scrawler": [["M"]], - "scrawler's": null, - "scrawl": [["G", "R", "D", "S"]], - "scrawling": null, - "scrawled": null, - "scrawls": null, - "scrawly": [["R", "T"]], - "scrawlier": null, - "scrawliest": null, - "scrawniness": [["M", "S"]], - "scrawniness's": null, - "scrawninesses": null, - "scrawny": [["T", "R", "P"]], - "scrawniest": null, - "scrawnier": null, - "screamer": [["M"]], - "screamer's": null, - "screaming": [["Y"]], - "screamingly": null, - "scream": [["Z", "G", "S", "R", "D"]], - "screamers": null, - "screams": null, - "screamed": null, - "screecher": [["M"]], - "screecher's": null, - "screech": [["G", "M", "D", "R", "S"]], - "screeching": null, - "screech's": null, - "screeched": null, - "screeches": null, - "screechy": [["T", "R"]], - "screechiest": null, - "screechier": null, - "screed": [["M", "S"]], - "screed's": null, - "screeds": null, - "scree": [["D", "S", "M"]], - "screes": null, - "scree's": null, - "screened": [["U"]], - "unscreened": null, - "screening": [["M"]], - "screening's": null, - "screenplay": [["M", "S"]], - "screenplay's": null, - "screenplays": null, - "screen": [["R", "D", "M", "J", "S", "G"]], - "screener": null, - "screen's": null, - "screenings": null, - "screens": null, - "screenwriter": [["M", "S"]], - "screenwriter's": null, - "screenwriters": null, - "screwball": [["S", "M"]], - "screwballs": null, - "screwball's": null, - "screwdriver": [["S", "M"]], - "screwdrivers": null, - "screwdriver's": null, - "screwer": [["M"]], - "screwer's": null, - "screw": [["G", "U", "S", "D"]], - "screwing": null, - "unscrewing": null, - "unscrew": null, - "unscrews": null, - "unscrewed": null, - "screws": null, - "screwed": null, - "screwiness": [["S"]], - "screwinesses": null, - "screw's": null, - "screwup": null, - "screwworm": [["M", "S"]], - "screwworm's": null, - "screwworms": null, - "screwy": [["R", "T", "P"]], - "screwier": null, - "screwiest": null, - "Scriabin": [["M"]], - "Scriabin's": null, - "scribal": null, - "scribble": [["J", "Z", "D", "R", "S", "G"]], - "scribblings": null, - "scribblers": null, - "scribbled": null, - "scribbler": [["M"]], - "scribbles": null, - "scribbling": null, - "scribbler's": null, - "scribe": [["C", "D", "R", "S", "G", "I", "K"]], - "described": null, - "describer": null, - "describes": null, - "describing": null, - "scribed": null, - "inscribed": null, - "proscribed": null, - "scriber": [["M", "K", "I", "C"]], - "inscriber": null, - "proscriber": null, - "scribes": null, - "inscribes": null, - "proscribes": null, - "scribing": null, - "inscribing": null, - "proscribing": null, - "proscribe": null, - "scriber's": null, - "proscriber's": null, - "inscriber's": null, - "describer's": null, - "scribe's": null, - "Scribner": [["M", "S"]], - "Scribner's": null, - "Scribners": null, - "scrimmager": [["M"]], - "scrimmager's": null, - "scrimmage": [["R", "S", "D", "M", "G"]], - "scrimmages": null, - "scrimmaged": null, - "scrimmage's": null, - "scrimmaging": null, - "scrimp": [["D", "G", "S"]], - "scrimped": null, - "scrimping": null, - "scrimps": null, - "scrimshaw": [["G", "S", "D", "M"]], - "scrimshawing": null, - "scrimshaws": null, - "scrimshawed": null, - "scrimshaw's": null, - "scrim": [["S", "M"]], - "scrims": null, - "scrim's": null, - "Scripps": [["M"]], - "Scripps's": null, - "scrip": [["S", "M"]], - "scrips": null, - "scrip's": null, - "scripted": [["U"]], - "unscripted": null, - "script": [["F", "G", "M", "D", "S"]], - "conscript": null, - "conscripting": null, - "conscript's": null, - "conscripted": null, - "conscripts": null, - "scripting": null, - "script's": null, - "scripts": null, - "scriptural": [["Y"]], - "scripturally": null, - "scripture": [["M", "S"]], - "scripture's": null, - "scriptures": null, - "Scripture": [["M", "S"]], - "Scripture's": null, - "Scriptures": null, - "scriptwriter": [["S", "M"]], - "scriptwriters": null, - "scriptwriter's": null, - "scriptwriting": [["M"]], - "scriptwriting's": null, - "scrivener": [["M"]], - "scrivener's": null, - "scriven": [["Z", "R"]], - "scriveners": null, - "scrod": [["M"]], - "scrod's": null, - "scrofula": [["M", "S"]], - "scrofula's": null, - "scrofulas": null, - "scrofulous": null, - "scrollbar": [["S", "M"]], - "scrollbars": null, - "scrollbar's": null, - "scroll": [["G", "M", "D", "S", "B"]], - "scrolling": null, - "scroll's": null, - "scrolled": null, - "scrolls": null, - "scrollable": null, - "Scrooge": [["M", "S"]], - "Scrooge's": null, - "Scrooges": null, - "scrooge": [["S", "D", "M", "G"]], - "scrooges": null, - "scrooged": null, - "scrooge's": null, - "scrooging": null, - "scrota": null, - "scrotal": null, - "scrotum": [["M"]], - "scrotum's": null, - "scrounge": [["Z", "G", "D", "R", "S"]], - "scroungers": null, - "scrounging": null, - "scrounged": null, - "scrounger": null, - "scrounges": null, - "scroungy": [["T", "R"]], - "scroungiest": null, - "scroungier": null, - "scrubbed": null, - "scrubber": [["M", "S"]], - "scrubber's": null, - "scrubbers": null, - "scrubbing": null, - "scrubby": [["T", "R"]], - "scrubbiest": null, - "scrubbier": null, - "scrub": [["S"]], - "scrubs": null, - "scruffily": null, - "scruffiness": [["S"]], - "scruffinesses": null, - "scruff": [["S", "M"]], - "scruffs": null, - "scruff's": null, - "scruffy": [["P", "R", "T"]], - "scruffier": null, - "scruffiest": null, - "Scruggs": [["M"]], - "Scruggs's": null, - "scrummage": [["M", "G"]], - "scrummage's": null, - "scrummaging": null, - "scrum": [["M", "S"]], - "scrum's": null, - "scrums": null, - "scrumptious": [["Y"]], - "scrumptiously": null, - "scrunch": [["D", "S", "G"]], - "scrunched": null, - "scrunches": null, - "scrunching": null, - "scrunchy": [["S"]], - "scrunchies": null, - "scruple": [["S", "D", "M", "G"]], - "scruples": null, - "scrupled": null, - "scruple's": null, - "scrupling": null, - "scrupulosity": [["S", "M"]], - "scrupulosities": null, - "scrupulosity's": null, - "scrupulousness's": null, - "scrupulousness": [["U", "S"]], - "unscrupulousness": null, - "unscrupulousnesses": null, - "scrupulousnesses": null, - "scrupulous": [["U", "P", "Y"]], - "unscrupulous": null, - "unscrupulously": null, - "scrupulously": null, - "scrutable": [["I"]], - "scrutinized": [["U"]], - "unscrutinized": null, - "scrutinizer": [["M"]], - "scrutinizer's": null, - "scrutinize": [["R", "S", "D", "G", "Z"]], - "scrutinizes": null, - "scrutinizing": [["U", "Y"]], - "scrutinizers": null, - "scrutinizingly": [["S"]], - "scrutinizinglies": null, - "unscrutinizing": null, - "unscrutinizingly": null, - "scrutiny": [["M", "S"]], - "scrutiny's": null, - "scrutinies": null, - "SCSI": null, - "scuba": [["S", "D", "M", "G"]], - "scubas": null, - "scubaed": null, - "scuba's": null, - "scubaing": null, - "scudded": null, - "scudding": null, - "Scud": [["M"]], - "Scud's": null, - "scud": [["S"]], - "scuds": null, - "scuff": [["G", "S", "D"]], - "scuffing": null, - "scuffs": null, - "scuffed": null, - "scuffle": [["S", "D", "G"]], - "scuffles": null, - "scuffled": null, - "scuffling": null, - "sculler": [["M"]], - "sculler's": null, - "scullery": [["M", "S"]], - "scullery's": null, - "sculleries": null, - "Sculley": [["M"]], - "Sculley's": null, - "scullion": [["M", "S"]], - "scullion's": null, - "scullions": null, - "scull": [["S", "R", "D", "M", "G", "Z"]], - "sculls": null, - "sculled": null, - "scull's": null, - "sculling": null, - "scullers": null, - "sculptor": [["M", "S"]], - "sculptor's": null, - "sculptors": null, - "sculptress": [["M", "S"]], - "sculptress's": null, - "sculptresses": null, - "sculpt": [["S", "D", "G"]], - "sculpts": null, - "sculpted": null, - "sculpting": null, - "sculptural": [["Y"]], - "sculpturally": null, - "sculpture": [["S", "D", "G", "M"]], - "sculptures": null, - "sculptured": null, - "sculpturing": null, - "sculpture's": null, - "scumbag": [["S"]], - "scumbags": null, - "scummed": null, - "scumming": null, - "scum": [["M", "S"]], - "scum's": null, - "scums": null, - "scummy": [["T", "R"]], - "scummiest": null, - "scummier": null, - "scupper": [["S", "D", "M", "G"]], - "scuppers": null, - "scuppered": null, - "scupper's": null, - "scuppering": null, - "scurf": [["M", "S"]], - "scurf's": null, - "scurfs": null, - "scurfy": [["T", "R"]], - "scurfiest": null, - "scurfier": null, - "scurrility": [["M", "S"]], - "scurrility's": null, - "scurrilities": null, - "scurrilousness": [["M", "S"]], - "scurrilousness's": null, - "scurrilousnesses": null, - "scurrilous": [["P", "Y"]], - "scurrilously": null, - "scurry": [["G", "J", "S", "D"]], - "scurrying": null, - "scurryings": null, - "scurries": null, - "scurried": null, - "scurvily": null, - "scurviness": [["M"]], - "scurviness's": null, - "scurvy": [["S", "R", "T", "P"]], - "scurvies": null, - "scurvier": null, - "scurviest": null, - "scutcheon": [["S", "M"]], - "scutcheons": null, - "scutcheon's": null, - "scuttlebutt": [["M", "S"]], - "scuttlebutt's": null, - "scuttlebutts": null, - "scuttle": [["M", "G", "S", "D"]], - "scuttle's": null, - "scuttling": null, - "scuttles": null, - "scuttled": null, - "scuzzy": [["R", "T"]], - "scuzzier": null, - "scuzziest": null, - "Scylla": [["M"]], - "Scylla's": null, - "scythe": [["S", "D", "G", "M"]], - "scythes": null, - "scythed": null, - "scything": null, - "scythe's": null, - "Scythia": [["M"]], - "Scythia's": null, - "SD": null, - "SDI": null, - "SE": null, - "seabed": [["S"]], - "seabeds": null, - "seabird": [["S"]], - "seabirds": null, - "seaboard": [["M", "S"]], - "seaboard's": null, - "seaboards": null, - "Seaborg": [["M"]], - "Seaborg's": null, - "seaborne": null, - "Seabrook": [["M"]], - "Seabrook's": null, - "seacoast": [["M", "S"]], - "seacoast's": null, - "seacoasts": null, - "seafare": [["J", "R", "Z", "G"]], - "seafarings": null, - "seafarer": [["M"]], - "seafarers": null, - "seafaring": null, - "seafarer's": null, - "seafood": [["M", "S"]], - "seafood's": null, - "seafoods": null, - "seafront": [["M", "S"]], - "seafront's": null, - "seafronts": null, - "Seagate": [["M"]], - "Seagate's": null, - "seagoing": null, - "Seagram": [["M"]], - "Seagram's": null, - "seagull": [["S"]], - "seagulls": null, - "seahorse": [["S"]], - "seahorses": null, - "sealant": [["M", "S"]], - "sealant's": null, - "sealants": null, - "sealed": [["A", "U"]], - "resealed": null, - "unsealed": null, - "sealer": [["M"]], - "sealer's": null, - "seal": [["M", "D", "R", "S", "G", "Z"]], - "seal's": null, - "seals": [["U", "A"]], - "sealing": null, - "sealers": null, - "sealskin": [["S", "M"]], - "sealskins": null, - "sealskin's": null, - "unseals": null, - "reseals": null, - "seamail": null, - "seamanship": [["S", "M"]], - "seamanships": null, - "seamanship's": null, - "seaman": [["Y", "M"]], - "seamanly": null, - "seaman's": null, - "seamer": [["M"]], - "seamer's": null, - "seaminess": [["M"]], - "seaminess's": null, - "seamlessness": [["M"]], - "seamlessness's": null, - "seamless": [["P", "Y"]], - "seamlessly": null, - "seam": [["M", "N", "D", "R", "G", "S"]], - "seam's": null, - "seamen": null, - "seamed": null, - "seaming": null, - "seams": [["I"]], - "inseams": null, - "seamstress": [["M", "S"]], - "seamstress's": null, - "seamstresses": null, - "Seamus": [["M"]], - "Seamus's": null, - "sea": [["M", "Y", "S"]], - "sea's": null, - "sealy": null, - "seas": null, - "seamy": [["T", "R", "P"]], - "seamiest": null, - "seamier": null, - "Seana": [["M"]], - "Seana's": null, - "s�ance": [["S", "M"]], - "s�ances": null, - "s�ance's": null, - "Sean": [["M"]], - "Sean's": null, - "seaplane": [["S", "M"]], - "seaplanes": null, - "seaplane's": null, - "seaport": [["S", "M"]], - "seaports": null, - "seaport's": null, - "seaquake": [["M"]], - "seaquake's": null, - "Seaquarium": [["M"]], - "Seaquarium's": null, - "searcher": [["A", "M"]], - "researcher": null, - "researcher's": null, - "searcher's": null, - "searching": [["Y", "S"]], - "searchingly": null, - "searchings": null, - "searchlight": [["S", "M"]], - "searchlights": null, - "searchlight's": null, - "search": [["R", "S", "D", "A", "G", "Z"]], - "searches": null, - "researches": null, - "searched": null, - "researched": null, - "researching": null, - "researchers": null, - "searchers": null, - "sear": [["D", "R", "S", "J", "G", "T"]], - "seared": null, - "searer": null, - "sears": null, - "searings": null, - "searing": [["Y"]], - "searest": null, - "searingly": null, - "Sears": [["M"]], - "Sears's": null, - "seascape": [["S", "M"]], - "seascapes": null, - "seascape's": null, - "seashell": [["M", "S"]], - "seashell's": null, - "seashells": null, - "seashore": [["S", "M"]], - "seashores": null, - "seashore's": null, - "seasickness": [["S", "M"]], - "seasicknesses": null, - "seasickness's": null, - "seasick": [["P"]], - "seaside": [["S", "M"]], - "seasides": null, - "seaside's": null, - "seasonableness": [["M"]], - "seasonableness's": null, - "seasonable": [["U", "P"]], - "unseasonable": null, - "unseasonableness": null, - "seasonably": [["U"]], - "unseasonably": null, - "seasonality": null, - "seasonal": [["Y"]], - "seasonally": null, - "seasoned": [["U"]], - "unseasoned": null, - "seasoner": [["M"]], - "seasoner's": null, - "seasoning": [["M"]], - "seasoning's": null, - "season": [["J", "R", "D", "Y", "M", "B", "Z", "S", "G"]], - "seasonings": null, - "seasonly": null, - "season's": null, - "seasoners": null, - "seasons": null, - "seatbelt": null, - "seated": [["A"]], - "reseated": null, - "seater": [["M"]], - "seater's": null, - "seating": [["S", "M"]], - "seatings": null, - "seating's": null, - "SEATO": null, - "seat's": null, - "Seattle": [["M"]], - "Seattle's": null, - "seat": [["U", "D", "S", "G"]], - "unseat": null, - "unseated": null, - "unseats": null, - "unseating": null, - "seats": null, - "seawall": [["S"]], - "seawalls": null, - "seaward": [["S"]], - "seawards": null, - "seawater": [["S"]], - "seawaters": null, - "seaway": [["M", "S"]], - "seaway's": null, - "seaways": null, - "seaweed": [["S", "M"]], - "seaweeds": null, - "seaweed's": null, - "seaworthinesses": null, - "seaworthiness": [["M", "U"]], - "seaworthiness's": null, - "unseaworthiness's": null, - "unseaworthiness": null, - "seaworthy": [["T", "R", "P"]], - "seaworthiest": null, - "seaworthier": null, - "sebaceous": null, - "Sebastian": [["M"]], - "Sebastian's": null, - "Sebastiano": [["M"]], - "Sebastiano's": null, - "Sebastien": [["M"]], - "Sebastien's": null, - "seborrhea": [["S", "M"]], - "seborrheas": null, - "seborrhea's": null, - "SEC": null, - "secant": [["S", "M"]], - "secants": null, - "secant's": null, - "secede": [["G", "R", "S", "D"]], - "seceding": null, - "seceder": null, - "secedes": null, - "seceded": null, - "secessionist": [["M", "S"]], - "secessionist's": null, - "secessionists": null, - "secession": [["M", "S"]], - "secession's": null, - "secessions": null, - "secludedness": [["M"]], - "secludedness's": null, - "secluded": [["Y", "P"]], - "secludedly": null, - "seclude": [["G", "S", "D"]], - "secluding": null, - "secludes": null, - "seclusion": [["S", "M"]], - "seclusions": null, - "seclusion's": null, - "seclusive": null, - "Seconal": null, - "secondarily": null, - "secondary": [["P", "S"]], - "secondariness": null, - "secondaries": null, - "seconder": [["M"]], - "seconder's": null, - "secondhand": null, - "second": [["R", "D", "Y", "Z", "G", "S", "L"]], - "seconded": null, - "secondly": null, - "seconders": null, - "seconding": null, - "seconds": null, - "secondment": null, - "secrecy": [["M", "S"]], - "secrecy's": null, - "secrecies": null, - "secretarial": null, - "secretariat": [["M", "S"]], - "secretariat's": null, - "secretariats": null, - "secretaryship": [["M", "S"]], - "secretaryship's": null, - "secretaryships": null, - "secretary": [["S", "M"]], - "secretaries": null, - "secretary's": null, - "secrete": [["X", "N", "S"]], - "secretions": null, - "secretion": [["M"]], - "secretes": null, - "secretion's": null, - "secretiveness": [["S"]], - "secretivenesses": null, - "secretive": [["P", "Y"]], - "secretively": null, - "secretory": null, - "secret": [["T", "V", "G", "R", "D", "Y", "S"]], - "secretest": null, - "secreting": null, - "secreter": null, - "secreted": null, - "secretly": null, - "secrets": null, - "sec": [["S"]], - "secs": null, - "sectarianism": [["M", "S"]], - "sectarianism's": null, - "sectarianisms": null, - "sectarian": [["S"]], - "sectarians": null, - "sectary": [["M", "S"]], - "sectary's": null, - "sectaries": null, - "sectionalism": [["M", "S"]], - "sectionalism's": null, - "sectionalisms": null, - "sectionalized": null, - "sectional": [["S", "Y"]], - "sectionals": null, - "sectionally": null, - "section": [["A", "S", "E", "M"]], - "resection": null, - "resections": null, - "resection's": null, - "sections": null, - "dissections": null, - "dissection": null, - "dissection's": null, - "section's": null, - "sectioned": null, - "sectioning": null, - "sect": [["I", "S", "M"]], - "insect": null, - "insects": null, - "insect's": null, - "sects": [["E"]], - "sect's": null, - "sectoral": null, - "sectored": null, - "sector": [["E", "M", "S"]], - "dissector": null, - "dissector's": null, - "dissectors": null, - "sector's": null, - "sectors": null, - "sectoring": null, - "dissects": null, - "secularism": [["M", "S"]], - "secularism's": null, - "secularisms": null, - "secularist": [["M", "S"]], - "secularist's": null, - "secularists": null, - "secularity": [["M"]], - "secularity's": null, - "secularization": [["M", "S"]], - "secularization's": null, - "secularizations": null, - "secularized": [["U"]], - "unsecularized": null, - "secularize": [["G", "S", "D"]], - "secularizing": null, - "secularizes": null, - "secular": [["S", "Y"]], - "seculars": null, - "secularly": null, - "secured": [["U"]], - "unsecured": null, - "securely": [["I"]], - "insecurely": null, - "secure": [["P", "G", "T", "Y", "R", "S", "D", "J"]], - "secureness": null, - "securing": null, - "securest": null, - "securer": null, - "secures": null, - "securings": null, - "security": [["M", "S", "I"]], - "security's": null, - "insecurity's": null, - "securities": null, - "insecurities": null, - "insecurity": null, - "secy": null, - "sec'y": null, - "sedan": [["S", "M"]], - "sedans": null, - "sedan's": null, - "sedateness": [["S", "M"]], - "sedatenesses": null, - "sedateness's": null, - "sedate": [["P", "X", "V", "N", "G", "T", "Y", "R", "S", "D"]], - "sedations": null, - "sedative": [["S"]], - "sedation": [["M"]], - "sedating": null, - "sedatest": null, - "sedately": null, - "sedater": null, - "sedates": null, - "sedated": null, - "sedation's": null, - "sedatives": null, - "sedentary": null, - "Seder": [["S", "M"]], - "Seders": null, - "Seder's": null, - "sedge": [["S", "M"]], - "sedges": null, - "sedge's": null, - "Sedgwick": [["M"]], - "Sedgwick's": null, - "sedgy": [["R", "T"]], - "sedgier": null, - "sedgiest": null, - "sedimentary": null, - "sedimentation": [["S", "M"]], - "sedimentations": null, - "sedimentation's": null, - "sediment": [["S", "G", "D", "M"]], - "sediments": null, - "sedimenting": null, - "sedimented": null, - "sediment's": null, - "sedition": [["S", "M"]], - "seditions": null, - "sedition's": null, - "seditiousness": [["M"]], - "seditiousness's": null, - "seditious": [["P", "Y"]], - "seditiously": null, - "seducer": [["M"]], - "seducer's": null, - "seduce": [["R", "S", "D", "G", "Z"]], - "seduces": null, - "seduced": null, - "seducing": null, - "seducers": null, - "seduction": [["M", "S"]], - "seduction's": null, - "seductions": null, - "seductiveness": [["M", "S"]], - "seductiveness's": null, - "seductivenesses": null, - "seductive": [["Y", "P"]], - "seductively": null, - "seductress": [["S", "M"]], - "seductresses": null, - "seductress's": null, - "sedulous": [["Y"]], - "sedulously": null, - "Seebeck": [["M"]], - "Seebeck's": null, - "seed": [["A", "D", "S", "G"]], - "reseed": null, - "reseeded": null, - "reseeds": null, - "reseeding": null, - "seeded": [["U"]], - "seeds": null, - "seeding": [["S"]], - "seedbed": [["M", "S"]], - "seedbed's": null, - "seedbeds": null, - "seedcase": [["S", "M"]], - "seedcases": null, - "seedcase's": null, - "unseeded": null, - "seeder": [["M", "S"]], - "seeder's": null, - "seeders": null, - "seediness": [["M", "S"]], - "seediness's": null, - "seedinesses": null, - "seedings": null, - "seedless": null, - "seedling": [["S", "M"]], - "seedlings": null, - "seedling's": null, - "seedpod": [["S"]], - "seedpods": null, - "seed's": null, - "seedy": [["T", "P", "R"]], - "seediest": null, - "seedier": null, - "seeings": null, - "seeing's": null, - "seeing": [["U"]], - "unseeing": [["Y"]], - "seeker": [["M"]], - "seeker's": null, - "seek": [["G", "Z", "S", "R"]], - "seeking": [["Y"]], - "seekers": null, - "seeks": null, - "seekingly": null, - "Seeley": [["M"]], - "Seeley's": null, - "See": [["M"]], - "See's": null, - "seem": [["G", "J", "S", "Y", "D"]], - "seeming": [["Y"]], - "seemings": null, - "seems": null, - "seemly": [["U", "T", "P", "R"]], - "seemed": null, - "seemingly": null, - "seemliness's": null, - "seemliness": [["U", "S"]], - "unseemliness": null, - "unseemlinesses": null, - "seemlinesses": null, - "unseemly": null, - "unseemlier": null, - "seemliest": null, - "seemlier": null, - "seen": [["U"]], - "unseen": [["S"]], - "seepage": [["M", "S"]], - "seepage's": null, - "seepages": null, - "seep": [["G", "S", "D"]], - "seeping": null, - "seeps": null, - "seeped": null, - "seer": [["S", "M"]], - "seers": null, - "seer's": null, - "seersucker": [["M", "S"]], - "seersucker's": null, - "seersuckers": null, - "sees": null, - "seesaw": [["D", "M", "S", "G"]], - "seesawed": null, - "seesaw's": null, - "seesaws": null, - "seesawing": null, - "seethe": [["S", "D", "G", "J"]], - "seethes": null, - "seethed": null, - "seething": null, - "seethings": null, - "see": [["U"]], - "unsee": null, - "segmental": [["Y"]], - "segmentally": null, - "segmentation": [["S", "M"]], - "segmentations": null, - "segmentation's": null, - "segmented": [["U"]], - "unsegmented": null, - "segment": [["S", "G", "D", "M"]], - "segments": null, - "segmenting": null, - "segment's": null, - "Segovia": [["M"]], - "Segovia's": null, - "segregant": null, - "segregated": [["U"]], - "unsegregated": null, - "segregate": [["X", "C", "N", "G", "S", "D"]], - "segregations": null, - "desegregations": null, - "desegregate": null, - "desegregation": null, - "desegregating": null, - "desegregates": null, - "desegregated": null, - "segregation": [["C", "M"]], - "segregating": null, - "segregates": null, - "desegregation's": null, - "segregation's": null, - "segregationist": [["S", "M"]], - "segregationists": null, - "segregationist's": null, - "segregative": null, - "Segre": [["M"]], - "Segre's": null, - "segue": [["D", "S"]], - "segued": null, - "segues": null, - "segueing": null, - "Segundo": [["M"]], - "Segundo's": null, - "Se": [["H"]], - "Seth": [["M"]], - "Seidel": [["M"]], - "Seidel's": null, - "seigneur": [["M", "S"]], - "seigneur's": null, - "seigneurs": null, - "seignior": [["S", "M"]], - "seigniors": null, - "seignior's": null, - "Seiko": [["M"]], - "Seiko's": null, - "seine": [["G", "Z", "M", "D", "S", "R"]], - "seining": null, - "seiners": null, - "seine's": null, - "seined": null, - "seines": null, - "seiner": [["M"]], - "Seine": [["M"]], - "Seine's": null, - "seiner's": null, - "Seinfeld": [["M"]], - "Seinfeld's": null, - "seismic": null, - "seismically": null, - "seismographer": [["M"]], - "seismographer's": null, - "seismographic": null, - "seismographs": null, - "seismography": [["S", "M"]], - "seismographies": null, - "seismography's": null, - "seismograph": [["Z", "M", "R"]], - "seismographers": null, - "seismograph's": null, - "seismologic": null, - "seismological": null, - "seismologist": [["M", "S"]], - "seismologist's": null, - "seismologists": null, - "seismology": [["S", "M"]], - "seismologies": null, - "seismology's": null, - "seismometer": [["S"]], - "seismometers": null, - "seize": [["B", "J", "G", "Z", "D", "S", "R"]], - "seizable": null, - "seizings": null, - "seizing": [["M"]], - "seizers": null, - "seized": null, - "seizes": null, - "seizer": [["M"]], - "seizer's": null, - "seizing's": null, - "seizin": [["M", "S"]], - "seizin's": null, - "seizins": null, - "seizor": [["M", "S"]], - "seizor's": null, - "seizors": null, - "seizure": [["M", "S"]], - "seizure's": null, - "seizures": null, - "Seka": [["M"]], - "Seka's": null, - "Sela": [["M"]], - "Sela's": null, - "Selassie": [["M"]], - "Selassie's": null, - "Selby": [["M"]], - "Selby's": null, - "seldom": null, - "selected": [["U", "A", "C"]], - "unselected": null, - "reselected": null, - "deselected": null, - "selectional": null, - "selection": [["M", "S"]], - "selection's": null, - "selections": null, - "selectiveness": [["M"]], - "selectiveness's": null, - "selective": [["Y", "P"]], - "selectively": null, - "selectivity": [["M", "S"]], - "selectivity's": null, - "selectivities": null, - "selectman": [["M"]], - "selectman's": null, - "selectmen": null, - "selectness": [["S", "M"]], - "selectnesses": null, - "selectness's": null, - "selector": [["S", "M"]], - "selectors": null, - "selector's": null, - "select": [["P", "D", "S", "V", "G", "B"]], - "selects": [["A"]], - "selecting": null, - "selectable": null, - "Selectric": [["M"]], - "Selectric's": null, - "reselects": null, - "Selena": [["M"]], - "Selena's": null, - "selenate": [["M"]], - "selenate's": null, - "Selene": [["M"]], - "Selene's": null, - "selenite": [["M"]], - "selenite's": null, - "selenium": [["M", "S"]], - "selenium's": null, - "seleniums": null, - "selenographer": [["S", "M"]], - "selenographers": null, - "selenographer's": null, - "selenography": [["M", "S"]], - "selenography's": null, - "selenographies": null, - "Selestina": [["M"]], - "Selestina's": null, - "Seleucid": [["M"]], - "Seleucid's": null, - "Seleucus": [["M"]], - "Seleucus's": null, - "self": [["G", "P", "D", "M", "S"]], - "selfing": null, - "selfness": [["M"]], - "selfed": null, - "self's": null, - "selfs": null, - "selfishness": [["S", "U"]], - "selfishnesses": null, - "unselfishnesses": null, - "unselfishness": [["M"]], - "selfish": [["P", "U", "Y"]], - "unselfish": null, - "unselfishly": null, - "selfishly": null, - "selflessness": [["M", "S"]], - "selflessness's": null, - "selflessnesses": null, - "selfless": [["Y", "P"]], - "selflessly": null, - "selfness's": null, - "Selfridge": [["M"]], - "Selfridge's": null, - "selfsameness": [["M"]], - "selfsameness's": null, - "selfsame": [["P"]], - "Selia": [["M"]], - "Selia's": null, - "Selie": [["M"]], - "Selie's": null, - "Selig": [["M"]], - "Selig's": null, - "Selim": [["M"]], - "Selim's": null, - "Selina": [["M"]], - "Selina's": null, - "Selinda": [["M"]], - "Selinda's": null, - "Seline": [["M"]], - "Seline's": null, - "Seljuk": [["M"]], - "Seljuk's": null, - "Selkirk": [["M"]], - "Selkirk's": null, - "Sella": [["M"]], - "Sella's": null, - "sell": [["A", "Z", "G", "S", "R"]], - "resell": null, - "resellers": null, - "reselling": null, - "resells": null, - "reseller": null, - "sellers": null, - "selling": null, - "sells": null, - "seller": [["A", "M"]], - "reseller's": null, - "seller's": null, - "Sellers": [["M"]], - "Sellers's": null, - "Selle": [["Z", "M"]], - "Selle's": null, - "sellout": [["M", "S"]], - "sellout's": null, - "sellouts": null, - "Selma": [["M"]], - "Selma's": null, - "seltzer": [["S"]], - "seltzers": null, - "selvage": [["M", "G", "S", "D"]], - "selvage's": null, - "selvaging": null, - "selvages": null, - "selvaged": null, - "selves": [["M"]], - "selves's": null, - "Selznick": [["M"]], - "Selznick's": null, - "semantical": [["Y"]], - "semantically": null, - "semanticist": [["S", "M"]], - "semanticists": null, - "semanticist's": null, - "semantic": [["S"]], - "semantics": [["M"]], - "semantics's": null, - "semaphore": [["G", "M", "S", "D"]], - "semaphoring": null, - "semaphore's": null, - "semaphores": null, - "semaphored": null, - "Semarang": [["M"]], - "Semarang's": null, - "semblance": [["A", "S", "M", "E"]], - "resemblance": null, - "resemblances": null, - "resemblance's": null, - "semblances": null, - "dissemblances": null, - "semblance's": null, - "dissemblance's": null, - "dissemblance": null, - "semen": [["S", "M"]], - "semens": null, - "semen's": null, - "semester": [["S", "M"]], - "semesters": null, - "semester's": null, - "semiannual": [["Y"]], - "semiannually": null, - "semiarid": null, - "semiautomated": null, - "semiautomatic": [["S"]], - "semiautomatics": null, - "semicircle": [["S", "M"]], - "semicircles": null, - "semicircle's": null, - "semicircular": null, - "semicolon": [["M", "S"]], - "semicolon's": null, - "semicolons": null, - "semiconductor": [["S", "M"]], - "semiconductors": null, - "semiconductor's": null, - "semiconscious": null, - "semidefinite": null, - "semidetached": null, - "semidrying": [["M"]], - "semidrying's": null, - "semifinalist": [["M", "S"]], - "semifinalist's": null, - "semifinalists": null, - "semifinal": [["M", "S"]], - "semifinal's": null, - "semifinals": null, - "semilogarithmic": null, - "semimonthly": [["S"]], - "semimonthlies": null, - "seminal": [["Y"]], - "seminally": null, - "seminarian": [["M", "S"]], - "seminarian's": null, - "seminarians": null, - "seminar": [["S", "M"]], - "seminars": null, - "seminar's": null, - "seminary": [["M", "S"]], - "seminary's": null, - "seminaries": null, - "Seminole": [["S", "M"]], - "Seminoles": null, - "Seminole's": null, - "semiofficial": null, - "semioticians": null, - "semiotic": [["S"]], - "semiotics": [["M"]], - "semiotics's": null, - "semipermanent": [["Y"]], - "semipermanently": null, - "semipermeable": null, - "semiprecious": null, - "semiprivate": null, - "semiprofessional": [["Y", "S"]], - "semiprofessionally": null, - "semiprofessionals": null, - "semipublic": null, - "semiquantitative": [["Y"]], - "semiquantitatively": null, - "Semiramis": [["M"]], - "Semiramis's": null, - "semiretired": null, - "semisecret": null, - "semiskilled": null, - "semi": [["S", "M"]], - "semis": null, - "semi's": null, - "semisolid": [["S"]], - "semisolids": null, - "semistructured": null, - "semisweet": null, - "Semite": [["S", "M"]], - "Semites": null, - "Semite's": null, - "Semitic": [["M", "S"]], - "Semitic's": null, - "Semitics": null, - "semitic": [["S"]], - "semitics": null, - "semitone": [["S", "M"]], - "semitones": null, - "semitone's": null, - "semitrailer": [["S", "M"]], - "semitrailers": null, - "semitrailer's": null, - "semitrance": null, - "semitransparent": null, - "semitropical": null, - "semivowel": [["M", "S"]], - "semivowel's": null, - "semivowels": null, - "semiweekly": [["S"]], - "semiweeklies": null, - "semiyearly": null, - "semolina": [["S", "M"]], - "semolinas": null, - "semolina's": null, - "sempiternal": null, - "sempstress": [["S", "M"]], - "sempstresses": null, - "sempstress's": null, - "Semtex": null, - "sen": null, - "Sen": null, - "Sena": [["M"]], - "Sena's": null, - "senate": [["M", "S"]], - "senate's": null, - "senates": null, - "Senate": [["M", "S"]], - "Senate's": null, - "Senates": null, - "senatorial": null, - "senator": [["M", "S"]], - "senator's": null, - "senators": null, - "Sendai": [["M"]], - "Sendai's": null, - "sender": [["M"]], - "sender's": null, - "sends": [["A"]], - "resends": null, - "send": [["S", "R", "G", "Z"]], - "sending": null, - "senders": null, - "Seneca": [["M", "S"]], - "Seneca's": null, - "Senecas": null, - "Senegalese": null, - "Senegal": [["M"]], - "Senegal's": null, - "senescence": [["S", "M"]], - "senescences": null, - "senescence's": null, - "senescent": null, - "senile": [["S", "Y"]], - "seniles": null, - "senilely": null, - "senility": [["M", "S"]], - "senility's": null, - "senilities": null, - "seniority": [["S", "M"]], - "seniorities": null, - "seniority's": null, - "senior": [["M", "S"]], - "senior's": null, - "seniors": null, - "Senior": [["S"]], - "Seniors": null, - "Sennacherib": [["M"]], - "Sennacherib's": null, - "senna": [["M", "S"]], - "senna's": null, - "sennas": null, - "Sennett": [["M"]], - "Sennett's": null, - "Se�ora": [["M"]], - "Se�ora's": null, - "senora": [["S"]], - "senoras": null, - "senorita": [["S"]], - "senoritas": null, - "senor": [["M", "S"]], - "senor's": null, - "senors": null, - "sensately": [["I"]], - "insensately": null, - "sensate": [["Y", "N", "X"]], - "sensation": [["M"]], - "sensations": null, - "sensationalism": [["M", "S"]], - "sensationalism's": null, - "sensationalisms": null, - "sensationalist": [["S"]], - "sensationalists": null, - "sensationalize": [["G", "S", "D"]], - "sensationalizing": null, - "sensationalizes": null, - "sensationalized": null, - "sensational": [["Y"]], - "sensationally": null, - "sensation's": null, - "sens": [["D", "S", "G"]], - "sensed": null, - "senses": null, - "sensing": null, - "senselessness": [["S", "M"]], - "senselessnesses": null, - "senselessness's": null, - "senseless": [["P", "Y"]], - "senselessly": null, - "sense": [["M"]], - "sense's": null, - "sensibility": [["I", "S", "M"]], - "insensibility": null, - "insensibilities": null, - "insensibility's": null, - "sensibilities": null, - "sensibility's": null, - "sensibleness": [["M", "S"]], - "sensibleness's": null, - "sensiblenesses": null, - "sensible": [["P", "R", "S", "T"]], - "sensibler": null, - "sensibles": null, - "sensiblest": null, - "sensibly": [["I"]], - "insensibly": null, - "sensitiveness": [["M", "S"]], - "sensitiveness's": [["I"]], - "sensitivenesses": null, - "insensitiveness's": null, - "sensitives": null, - "sensitive": [["Y", "I", "P"]], - "sensitively": null, - "insensitively": null, - "insensitive": null, - "insensitiveness": null, - "sensitivity": [["I", "S", "M"]], - "insensitivity": null, - "insensitivities": null, - "insensitivity's": null, - "sensitivities": null, - "sensitivity's": null, - "sensitization": [["C", "S", "M"]], - "desensitization": null, - "desensitizations": null, - "desensitization's": null, - "sensitizations": null, - "sensitization's": null, - "sensitized": [["U"]], - "unsensitized": null, - "sensitizers": null, - "sensitize": [["S", "D", "C", "G"]], - "sensitizes": null, - "desensitizes": null, - "desensitized": null, - "desensitize": null, - "desensitizing": null, - "sensitizing": null, - "sensor": [["M", "S"]], - "sensor's": null, - "sensors": null, - "sensory": null, - "sensualist": [["M", "S"]], - "sensualist's": null, - "sensualists": null, - "sensuality": [["M", "S"]], - "sensuality's": null, - "sensualities": null, - "sensual": [["Y", "F"]], - "sensually": null, - "consensually": null, - "consensual": null, - "sensuousness": [["S"]], - "sensuousnesses": null, - "sensuous": [["P", "Y"]], - "sensuously": null, - "Sensurround": [["M"]], - "Sensurround's": null, - "sentence": [["S", "D", "M", "G"]], - "sentences": null, - "sentenced": null, - "sentence's": null, - "sentencing": null, - "sentential": [["Y"]], - "sententially": null, - "sententious": [["Y"]], - "sententiously": null, - "sentience": [["I", "S", "M"]], - "insentience": null, - "insentiences": null, - "insentience's": null, - "sentiences": null, - "sentience's": null, - "sentient": [["Y", "S"]], - "sentiently": null, - "sentients": null, - "sentimentalism": [["S", "M"]], - "sentimentalisms": null, - "sentimentalism's": null, - "sentimentalist": [["S", "M"]], - "sentimentalists": null, - "sentimentalist's": null, - "sentimentality": [["S", "M"]], - "sentimentalities": null, - "sentimentality's": null, - "sentimentalization": [["S", "M"]], - "sentimentalizations": null, - "sentimentalization's": null, - "sentimentalize": [["R", "S", "D", "Z", "G"]], - "sentimentalizer": null, - "sentimentalizes": [["U"]], - "sentimentalized": null, - "sentimentalizers": null, - "sentimentalizing": null, - "unsentimentalizes": null, - "sentimental": [["Y"]], - "sentimentally": null, - "sentiment": [["M", "S"]], - "sentiment's": null, - "sentiments": null, - "sentinel": [["G", "D", "M", "S"]], - "sentineling": null, - "sentineled": null, - "sentinel's": null, - "sentinels": null, - "sentry": [["S", "M"]], - "sentries": null, - "sentry's": null, - "sent": [["U", "F", "E", "A"]], - "unsent": null, - "Seoul": [["M"]], - "Seoul's": null, - "sepal": [["S", "M"]], - "sepals": null, - "sepal's": null, - "separability": [["M", "S", "I"]], - "separability's": null, - "inseparability's": null, - "separabilities": null, - "inseparabilities": null, - "inseparability": null, - "separableness": [["M", "I"]], - "separableness's": null, - "inseparableness's": null, - "inseparableness": null, - "separable": [["P", "I"]], - "separably": [["I"]], - "inseparably": null, - "separateness": [["M", "S"]], - "separateness's": null, - "separatenesses": null, - "separates": [["M"]], - "separates's": null, - "separate": [["Y", "N", "G", "V", "D", "S", "X", "P"]], - "separately": null, - "separation": [["M"]], - "separating": null, - "separative": null, - "separated": null, - "separations": null, - "separation's": null, - "separatism": [["S", "M"]], - "separatisms": null, - "separatism's": null, - "separatist": [["S", "M"]], - "separatists": null, - "separatist's": null, - "separator": [["S", "M"]], - "separators": null, - "separator's": null, - "Sephardi": [["M"]], - "Sephardi's": null, - "Sephira": [["M"]], - "Sephira's": null, - "sepia": [["M", "S"]], - "sepia's": null, - "sepias": null, - "Sepoy": [["M"]], - "Sepoy's": null, - "sepses": null, - "sepsis": [["M"]], - "sepsis's": null, - "septa": [["M"]], - "septa's": null, - "septate": [["N"]], - "septation": null, - "September": [["M", "S"]], - "September's": null, - "Septembers": null, - "septennial": [["Y"]], - "septennially": null, - "septet": [["M", "S"]], - "septet's": null, - "septets": null, - "septicemia": [["S", "M"]], - "septicemias": null, - "septicemia's": null, - "septicemic": null, - "septic": [["S"]], - "septics": null, - "septillion": [["M"]], - "septillion's": null, - "sept": [["M"]], - "sept's": null, - "Sept": [["M"]], - "Sept's": null, - "septuagenarian": [["M", "S"]], - "septuagenarian's": null, - "septuagenarians": null, - "Septuagint": [["M", "S"]], - "Septuagint's": null, - "Septuagints": null, - "septum": [["M"]], - "septum's": null, - "sepulcher": [["M", "G", "S", "D"]], - "sepulcher's": null, - "sepulchering": null, - "sepulchers": [["U", "A"]], - "sepulchered": null, - "unsepulchers": null, - "resepulchers": null, - "sepulchral": [["Y"]], - "sepulchrally": null, - "seq": null, - "sequel": [["M", "S"]], - "sequel's": null, - "sequels": null, - "sequenced": [["A"]], - "resequenced": null, - "sequence": [["D", "R", "S", "J", "Z", "M", "G"]], - "sequencer": [["M"]], - "sequences": [["F"]], - "sequencings": null, - "sequencers": null, - "sequence's": [["F"]], - "sequencing": null, - "sequencer's": null, - "consequence's": null, - "consequences": null, - "sequent": [["F"]], - "sequentiality": [["F", "M"]], - "consequentiality's": null, - "sequentiality's": null, - "sequentialize": [["D", "S", "G"]], - "sequentialized": null, - "sequentializes": null, - "sequentializing": null, - "sequential": [["Y", "F"]], - "sequentially": null, - "sequester": [["S", "D", "G"]], - "sequesters": null, - "sequestered": null, - "sequestering": null, - "sequestrate": [["X", "G", "N", "D", "S"]], - "sequestrations": null, - "sequestrating": null, - "sequestration": [["M"]], - "sequestrated": null, - "sequestrates": null, - "sequestration's": null, - "sequin": [["S", "D", "M", "G"]], - "sequins": null, - "sequined": null, - "sequin's": null, - "sequining": null, - "sequitur": null, - "Sequoia": [["M"]], - "Sequoia's": null, - "sequoia": [["M", "S"]], - "sequoia's": null, - "sequoias": null, - "Sequoya": [["M"]], - "Sequoya's": null, - "Serafin": [["M"]], - "Serafin's": null, - "seraglio": [["S", "M"]], - "seraglios": null, - "seraglio's": null, - "serape": [["S"]], - "serapes": null, - "seraphic": null, - "seraphically": null, - "seraphim's": null, - "seraph": [["M"]], - "seraph's": null, - "seraphs": null, - "sera's": null, - "Serbia": [["M"]], - "Serbia's": null, - "Serbian": [["S"]], - "Serbians": null, - "Serb": [["M", "S"]], - "Serb's": null, - "Serbs": null, - "Serbo": [["M"]], - "Serbo's": null, - "serenade": [["M", "G", "D", "R", "S"]], - "serenade's": null, - "serenading": null, - "serenaded": null, - "serenader": [["M"]], - "serenades": null, - "serenader's": null, - "Serena": [["M"]], - "Serena's": null, - "serendipitous": [["Y"]], - "serendipitously": null, - "serendipity": [["M", "S"]], - "serendipity's": null, - "serendipities": null, - "serene": [["G", "T", "Y", "R", "S", "D", "P"]], - "serening": null, - "serenest": null, - "serenely": null, - "serener": null, - "serenes": null, - "serened": null, - "sereneness": [["S", "M"]], - "Serene": [["M"]], - "Serene's": null, - "serenenesses": null, - "sereneness's": null, - "Serengeti": [["M"]], - "Serengeti's": null, - "serenity": [["M", "S"]], - "serenity's": null, - "serenities": null, - "sere": [["T", "G", "D", "R", "S"]], - "serest": null, - "sering": null, - "sered": null, - "serer": null, - "seres": null, - "serfdom": [["M", "S"]], - "serfdom's": null, - "serfdoms": null, - "serf": [["M", "S"]], - "serf's": null, - "serfs": null, - "Sergeant": [["M"]], - "Sergeant's": null, - "sergeant": [["S", "M"]], - "sergeants": null, - "sergeant's": null, - "serge": [["D", "S", "G", "M"]], - "serged": null, - "serges": null, - "serging": null, - "serge's": null, - "Sergei": [["M"]], - "Sergei's": null, - "Serge": [["M"]], - "Serge's": null, - "Sergent": [["M"]], - "Sergent's": null, - "Sergio": [["M"]], - "Sergio's": null, - "serialization": [["M", "S"]], - "serialization's": null, - "serializations": null, - "serialize": [["G", "S", "D"]], - "serializing": null, - "serializes": null, - "serialized": null, - "serial": [["M", "Y", "S"]], - "serial's": null, - "serially": null, - "serials": null, - "series": [["M"]], - "series's": null, - "serif": [["S", "M", "D"]], - "serifs": null, - "serif's": null, - "serifed": null, - "serigraph": [["M"]], - "serigraph's": null, - "serigraphs": null, - "seriousness": [["S", "M"]], - "seriousnesses": null, - "seriousness's": null, - "serious": [["P", "Y"]], - "seriously": null, - "sermonize": [["G", "S", "D"]], - "sermonizing": null, - "sermonizes": null, - "sermonized": null, - "sermon": [["S", "G", "D", "M"]], - "sermons": null, - "sermoning": null, - "sermoned": null, - "sermon's": null, - "serological": [["Y"]], - "serologically": null, - "serology": [["M", "S"]], - "serology's": null, - "serologies": null, - "serons": null, - "serous": null, - "Serpens": [["M"]], - "Serpens's": null, - "serpent": [["G", "S", "D", "M"]], - "serpenting": null, - "serpents": null, - "serpented": null, - "serpent's": null, - "serpentine": [["G", "Y", "S"]], - "serpentining": null, - "serpentinely": null, - "serpentines": null, - "Serra": [["M"]], - "Serra's": null, - "Serrano": [["M"]], - "Serrano's": null, - "serrate": [["G", "N", "X", "S", "D"]], - "serrating": null, - "serration": [["M"]], - "serrations": null, - "serrates": null, - "serrated": null, - "serration's": null, - "serried": null, - "serum": [["M", "S"]], - "serum's": null, - "serums": null, - "servant": [["S", "D", "M", "G"]], - "servants": null, - "servanted": null, - "servant's": null, - "servanting": null, - "serve": [["A", "G", "C", "F", "D", "S", "R"]], - "reserve": null, - "reserving": null, - "reserves": null, - "reserver": null, - "serving": [["S", "M"]], - "conserving": null, - "deserves": null, - "deserver": null, - "conserve": null, - "conserved": null, - "conserves": null, - "conserver": null, - "served": [["U"]], - "serves": null, - "server": [["M", "C", "F"]], - "unserved": null, - "server's": null, - "deserver's": null, - "conserver's": null, - "servers": null, - "serviceability": [["S", "M"]], - "serviceabilities": null, - "serviceability's": null, - "serviceableness": [["M"]], - "serviceableness's": null, - "serviceable": [["P"]], - "serviced": [["U"]], - "unserviced": null, - "serviceman": [["M"]], - "serviceman's": null, - "servicemen": null, - "service": [["M", "G", "S", "R", "D"]], - "service's": [["E"]], - "servicing": null, - "services": [["E"]], - "servicer": null, - "disservice's": null, - "disservices": null, - "servicewoman": null, - "servicewomen": null, - "serviette": [["M", "S"]], - "serviette's": null, - "serviettes": null, - "servilely": null, - "servileness": [["M"]], - "servileness's": null, - "serviles": null, - "servile": [["U"]], - "unservile": null, - "servility": [["S", "M"]], - "servilities": null, - "servility's": null, - "servings": null, - "serving's": null, - "servitor": [["S", "M"]], - "servitors": null, - "servitor's": null, - "servitude": [["M", "S"]], - "servitude's": null, - "servitudes": null, - "servomechanism": [["M", "S"]], - "servomechanism's": null, - "servomechanisms": null, - "servomotor": [["M", "S"]], - "servomotor's": null, - "servomotors": null, - "servo": [["S"]], - "servos": null, - "sesame": [["M", "S"]], - "sesame's": null, - "sesames": null, - "sesquicentennial": [["S"]], - "sesquicentennials": null, - "sessile": null, - "session": [["S", "M"]], - "sessions": null, - "session's": null, - "setback": [["S"]], - "setbacks": null, - "Seth's": null, - "Set": [["M"]], - "Set's": null, - "Seton": [["M"]], - "Seton's": null, - "set's": null, - "setscrew": [["S", "M"]], - "setscrews": null, - "setscrew's": null, - "set": [["S", "I", "A"]], - "sets": null, - "insets": null, - "resets": null, - "inset": null, - "settable": [["A"]], - "resettable": null, - "sett": [["B", "J", "G", "Z", "S", "M", "R"]], - "settings": null, - "setting": [["A", "S"]], - "setters": null, - "setts": null, - "sett's": null, - "setter": [["M"]], - "settee": [["M", "S"]], - "settee's": null, - "settees": null, - "setter's": null, - "resetting": null, - "resettings": null, - "setting's": null, - "settle": [["A", "U", "D", "S", "G"]], - "resettled": null, - "resettles": null, - "resettling": null, - "unsettle": null, - "unsettled": [["P"]], - "unsettles": null, - "unsettling": [["Y"]], - "settled": null, - "settles": null, - "settling": [["S"]], - "settlement": [["A", "S", "M"]], - "resettlements": null, - "resettlement's": null, - "settlements": null, - "settlement's": null, - "settler": [["M", "S"]], - "settler's": null, - "settlers": null, - "settlings": null, - "setup": [["M", "S"]], - "setup's": null, - "setups": null, - "Seumas": [["M"]], - "Seumas's": null, - "Seurat": [["M"]], - "Seurat's": null, - "Seuss": [["M"]], - "Seuss's": null, - "Sevastopol": [["M"]], - "Sevastopol's": null, - "sevenfold": null, - "sevenpence": null, - "seven": [["S", "M", "H"]], - "sevens": null, - "seven's": null, - "seventh": null, - "seventeen": [["H", "M", "S"]], - "seventeenth": null, - "seventeen's": null, - "seventeens": null, - "seventeenths": null, - "sevenths": null, - "seventieths": null, - "seventy": [["M", "S", "H"]], - "seventy's": null, - "seventies": null, - "seventieth": null, - "severalfold": null, - "severalty": [["M"]], - "severalty's": null, - "several": [["Y", "S"]], - "severally": null, - "severals": null, - "severance": [["S", "M"]], - "severances": null, - "severance's": null, - "severed": [["E"]], - "dissevered": null, - "severeness": [["S", "M"]], - "severenesses": null, - "severeness's": null, - "severe": [["P", "Y"]], - "severely": null, - "severing": [["E"]], - "dissevering": null, - "severity": [["M", "S"]], - "severity's": null, - "severities": null, - "Severn": [["M"]], - "Severn's": null, - "severs": [["E"]], - "dissevers": null, - "sever": [["S", "G", "T", "R", "D"]], - "severest": null, - "severer": null, - "Severus": [["M"]], - "Severus's": null, - "Seville": [["M"]], - "Seville's": null, - "sewage": [["M", "S"]], - "sewage's": null, - "sewages": null, - "Seward": [["M"]], - "Seward's": null, - "sewerage": [["S", "M"]], - "sewerages": null, - "sewerage's": null, - "sewer": [["G", "S", "M", "D"]], - "sewering": null, - "sewers": null, - "sewer's": null, - "sewered": null, - "sewing": [["S", "M"]], - "sewings": null, - "sewing's": null, - "sewn": null, - "sew": [["S", "A", "G", "D"]], - "sews": null, - "resews": null, - "resew": null, - "resewing": null, - "resewed": null, - "sewed": null, - "sexagenarian": [["M", "S"]], - "sexagenarian's": null, - "sexagenarians": null, - "sex": [["G", "M", "D", "S"]], - "sexing": null, - "sex's": null, - "sexed": null, - "sexes": null, - "sexily": null, - "sexiness": [["M", "S"]], - "sexiness's": null, - "sexinesses": null, - "sexism": [["S", "M"]], - "sexisms": null, - "sexism's": null, - "sexist": [["S", "M"]], - "sexists": null, - "sexist's": null, - "sexless": null, - "sexologist": [["S", "M"]], - "sexologists": null, - "sexologist's": null, - "sexology": [["M", "S"]], - "sexology's": null, - "sexologies": null, - "sexpot": [["S", "M"]], - "sexpots": null, - "sexpot's": null, - "Sextans": [["M"]], - "Sextans's": null, - "sextant": [["S", "M"]], - "sextants": null, - "sextant's": null, - "sextet": [["S", "M"]], - "sextets": null, - "sextet's": null, - "sextillion": [["M"]], - "sextillion's": null, - "Sexton": [["M"]], - "Sexton's": null, - "sexton": [["M", "S"]], - "sexton's": null, - "sextons": null, - "sextuple": [["M", "D", "G"]], - "sextuple's": null, - "sextupled": null, - "sextupling": null, - "sextuplet": [["M", "S"]], - "sextuplet's": null, - "sextuplets": null, - "sexuality": [["M", "S"]], - "sexuality's": null, - "sexualities": null, - "sexualized": null, - "sexual": [["Y"]], - "sexually": null, - "sexy": [["R", "T", "P"]], - "sexier": null, - "sexiest": null, - "Seychelles": null, - "Seyfert": null, - "Seymour": [["M"]], - "Seymour's": null, - "sf": null, - "SF": null, - "Sgt": null, - "shabbily": null, - "shabbiness": [["S", "M"]], - "shabbinesses": null, - "shabbiness's": null, - "shabby": [["R", "T", "P"]], - "shabbier": null, - "shabbiest": null, - "shack": [["G", "M", "D", "S"]], - "shacking": null, - "shack's": null, - "shacked": null, - "shacks": null, - "shackler": [["M"]], - "shackler's": null, - "shackle's": null, - "Shackleton": [["M"]], - "Shackleton's": null, - "shackle": [["U", "G", "D", "S"]], - "unshackle": null, - "unshackling": null, - "unshackled": null, - "unshackles": null, - "shackling": null, - "shackled": null, - "shackles": null, - "shad": [["D", "R", "J", "G", "S", "M"]], - "shaded": [["U"]], - "shader": null, - "shadings": null, - "shading": [["M"]], - "shads": null, - "shad's": null, - "unshaded": null, - "shadeless": null, - "shade": [["S", "M"]], - "shades": null, - "shade's": null, - "shadily": null, - "shadiness": [["M", "S"]], - "shadiness's": null, - "shadinesses": null, - "shading's": null, - "shadowbox": [["S", "D", "G"]], - "shadowboxes": null, - "shadowboxed": null, - "shadowboxing": null, - "shadower": [["M"]], - "shadower's": null, - "shadow": [["G", "S", "D", "R", "M"]], - "shadowing": null, - "shadows": null, - "shadowed": null, - "shadow's": null, - "shadowiness": [["M"]], - "shadowiness's": null, - "Shadow": [["M"]], - "Shadow's": null, - "shadowy": [["T", "R", "P"]], - "shadowiest": null, - "shadowier": null, - "shady": [["T", "R", "P"]], - "shadiest": null, - "shadier": null, - "Shae": [["M"]], - "Shae's": null, - "Shafer": [["M"]], - "Shafer's": null, - "Shaffer": [["M"]], - "Shaffer's": null, - "shafting": [["M"]], - "shafting's": null, - "shaft": [["S", "D", "M", "G"]], - "shafts": null, - "shafted": null, - "shaft's": null, - "shagged": null, - "shagginess": [["S", "M"]], - "shagginesses": null, - "shagginess's": null, - "shagging": null, - "shaggy": [["T", "P", "R"]], - "shaggiest": null, - "shaggier": null, - "shag": [["M", "S"]], - "shag's": null, - "shags": null, - "shah": [["M"]], - "shah's": null, - "shahs": null, - "Shaina": [["M"]], - "Shaina's": null, - "Shaine": [["M"]], - "Shaine's": null, - "shakable": [["U"]], - "unshakable": null, - "shakably": [["U"]], - "unshakably": null, - "shakeable": null, - "shakedown": [["S"]], - "shakedowns": null, - "shaken": [["U"]], - "unshaken": null, - "shakeout": [["S", "M"]], - "shakeouts": null, - "shakeout's": null, - "shaker": [["M"]], - "shaker's": null, - "Shaker": [["S"]], - "Shakers": null, - "Shakespearean": [["S"]], - "Shakespeareans": null, - "Shakespeare": [["M"]], - "Shakespeare's": null, - "Shakespearian": null, - "shake": [["S", "R", "G", "Z", "B"]], - "shakes": null, - "shaking": [["M"]], - "shakers": null, - "shakeup": [["S"]], - "shakeups": null, - "shakily": null, - "shakiness": [["S"]], - "shakinesses": null, - "shaking's": null, - "shaky": [["T", "P", "R"]], - "shakiest": null, - "shakier": null, - "shale": [["S", "M"]], - "shales": null, - "shale's": null, - "shall": null, - "shallot": [["S", "M"]], - "shallots": null, - "shallot's": null, - "shallowness": [["S", "M"]], - "shallownesses": null, - "shallowness's": null, - "shallow": [["S", "T", "P", "G", "D", "R", "Y"]], - "shallows": null, - "shallowest": null, - "shallowing": null, - "shallowed": null, - "shallower": null, - "shallowly": null, - "Shalna": [["M"]], - "Shalna's": null, - "Shalne": [["M"]], - "Shalne's": null, - "shalom": null, - "Shalom": [["M"]], - "Shalom's": null, - "shalt": null, - "shamanic": null, - "shaman": [["S", "M"]], - "shamans": null, - "shaman's": null, - "shamble": [["D", "S", "G"]], - "shambled": null, - "shambles": [["M"]], - "shambling": null, - "shambles's": null, - "shamefaced": [["Y"]], - "shamefacedly": null, - "shamefulness": [["S"]], - "shamefulnesses": null, - "shameful": [["Y", "P"]], - "shamefully": null, - "shamelessness": [["S", "M"]], - "shamelessnesses": null, - "shamelessness's": null, - "shameless": [["P", "Y"]], - "shamelessly": null, - "shame": [["S", "M"]], - "shames": null, - "shame's": null, - "sham": [["M", "D", "S", "G"]], - "sham's": null, - "shamed": null, - "shams": null, - "shaming": null, - "shammed": null, - "shammer": null, - "shamming": null, - "shammy's": null, - "shampoo": [["D", "R", "S", "M", "Z", "G"]], - "shampooed": null, - "shampooer": [["M"]], - "shampoos": null, - "shampoo's": null, - "shampooers": null, - "shampooing": null, - "shampooer's": null, - "shamrock": [["S", "M"]], - "shamrocks": null, - "shamrock's": null, - "Shamus": [["M"]], - "Shamus's": null, - "Shana": [["M"]], - "Shana's": null, - "Shanan": [["M"]], - "Shanan's": null, - "Shanda": [["M"]], - "Shanda's": null, - "Shandee": [["M"]], - "Shandee's": null, - "Shandeigh": [["M"]], - "Shandeigh's": null, - "Shandie": [["M"]], - "Shandie's": null, - "Shandra": [["M"]], - "Shandra's": null, - "shandy": [["M"]], - "shandy's": null, - "Shandy": [["M"]], - "Shandy's": null, - "Shane": [["M"]], - "Shane's": null, - "Shanghai": [["G", "M"]], - "Shanghaiing": [["M"]], - "Shanghai's": null, - "Shanghaiing's": null, - "shanghai": [["S", "D", "G"]], - "shanghais": null, - "shanghaied": null, - "shanghaiing": null, - "Shanie": [["M"]], - "Shanie's": null, - "Shani": [["M"]], - "Shani's": null, - "shank": [["S", "M", "D", "G"]], - "shanks": null, - "shank's": null, - "shanked": null, - "shanking": null, - "Shannah": [["M"]], - "Shannah's": null, - "Shanna": [["M"]], - "Shanna's": null, - "Shannan": [["M"]], - "Shannan's": null, - "Shannen": [["M"]], - "Shannen's": null, - "Shannon": [["M"]], - "Shannon's": null, - "Shanon": [["M"]], - "Shanon's": null, - "shan't": null, - "Shanta": [["M"]], - "Shanta's": null, - "Shantee": [["M"]], - "Shantee's": null, - "shantis": null, - "Shantung": [["M"]], - "Shantung's": null, - "shantung": [["M", "S"]], - "shantung's": null, - "shantungs": null, - "shanty": [["S", "M"]], - "shanties": null, - "shanty's": null, - "shantytown": [["S", "M"]], - "shantytowns": null, - "shantytown's": null, - "shape": [["A", "G", "D", "S", "R"]], - "reshape": null, - "reshaping": null, - "reshaped": null, - "reshapes": null, - "reshaper": null, - "shaping": null, - "shaped": [["U"]], - "shapes": null, - "shaper": [["S"]], - "unshaped": null, - "shapelessness": [["S", "M"]], - "shapelessnesses": null, - "shapelessness's": null, - "shapeless": [["P", "Y"]], - "shapelessly": null, - "shapeliness": [["S"]], - "shapelinesses": null, - "shapely": [["R", "P", "T"]], - "shapelier": null, - "shapeliest": null, - "shapers": null, - "shape's": null, - "Shapiro": [["M"]], - "Shapiro's": null, - "sharable": [["U"]], - "unsharable": null, - "Sharai": [["M"]], - "Sharai's": null, - "Shara": [["M"]], - "Shara's": null, - "shard": [["S", "M"]], - "shards": null, - "shard's": null, - "shareable": null, - "sharecropped": null, - "sharecropper": [["M", "S"]], - "sharecropper's": null, - "sharecroppers": null, - "sharecropping": null, - "sharecrop": [["S"]], - "sharecrops": null, - "share": [["D", "S", "R", "G", "Z", "M", "B"]], - "shared": [["U"]], - "shares": null, - "sharer": [["M"]], - "sharing": null, - "sharers": null, - "share's": null, - "unshared": null, - "shareholder": [["M", "S"]], - "shareholder's": null, - "shareholders": null, - "shareholding": [["S"]], - "shareholdings": null, - "sharer's": null, - "shareware": [["S"]], - "sharewares": null, - "Shari'a": null, - "Sharia": [["M"]], - "Sharia's": null, - "sharia": [["S", "M"]], - "sharias": null, - "sharia's": null, - "Shari": [["M"]], - "Shari's": null, - "Sharity": [["M"]], - "Sharity's": null, - "shark": [["S", "G", "M", "D"]], - "sharks": null, - "sharking": null, - "shark's": null, - "sharked": null, - "sharkskin": [["S", "M"]], - "sharkskins": null, - "sharkskin's": null, - "Sharla": [["M"]], - "Sharla's": null, - "Sharleen": [["M"]], - "Sharleen's": null, - "Sharlene": [["M"]], - "Sharlene's": null, - "Sharline": [["M"]], - "Sharline's": null, - "Sharl": [["M"]], - "Sharl's": null, - "Sharona": [["M"]], - "Sharona's": null, - "Sharon": [["M"]], - "Sharon's": null, - "Sharpe": [["M"]], - "Sharpe's": null, - "sharpen": [["A", "S", "G", "D"]], - "resharpen": null, - "resharpens": null, - "resharpening": null, - "resharpened": null, - "sharpens": null, - "sharpening": null, - "sharpened": [["U"]], - "unsharpened": null, - "sharpener": [["S"]], - "sharpeners": null, - "sharper": [["M"]], - "sharper's": null, - "sharpie": [["S", "M"]], - "sharpies": null, - "sharpie's": null, - "Sharp": [["M"]], - "Sharp's": null, - "sharpness": [["M", "S"]], - "sharpness's": null, - "sharpnesses": null, - "sharp": [["S", "G", "T", "Z", "X", "P", "Y", "R", "D", "N"]], - "sharps": null, - "sharping": null, - "sharpest": null, - "sharpers": null, - "sharply": null, - "sharped": null, - "sharpshooter": [["M"]], - "sharpshooter's": null, - "sharpshooting": [["M"]], - "sharpshooting's": null, - "sharpshoot": [["J", "R", "G", "Z"]], - "sharpshootings": null, - "sharpshooters": null, - "sharpy's": null, - "Sharron": [["M"]], - "Sharron's": null, - "Sharyl": [["M"]], - "Sharyl's": null, - "Shasta": [["M"]], - "Shasta's": null, - "shat": null, - "shatter": [["D", "S", "G"]], - "shattered": null, - "shatters": null, - "shattering": [["Y"]], - "shatteringly": null, - "shatterproof": null, - "Shaughn": [["M"]], - "Shaughn's": null, - "Shaula": [["M"]], - "Shaula's": null, - "Shauna": [["M"]], - "Shauna's": null, - "Shaun": [["M"]], - "Shaun's": null, - "shave": [["D", "S", "R", "J", "G", "Z"]], - "shaved": [["U"]], - "shaves": null, - "shaver": [["M"]], - "shavings": null, - "shaving": [["M"]], - "shavers": null, - "unshaved": null, - "shaver's": null, - "Shavian": null, - "shaving's": null, - "Shavuot": [["M"]], - "Shavuot's": null, - "Shawano": [["M"]], - "Shawano's": null, - "shawl": [["S", "D", "M", "G"]], - "shawls": null, - "shawled": null, - "shawl's": null, - "shawling": null, - "shaw": [["M"]], - "shaw's": null, - "Shaw": [["M"]], - "Shaw's": null, - "Shawna": [["M"]], - "Shawna's": null, - "Shawnee": [["S", "M"]], - "Shawnees": null, - "Shawnee's": null, - "Shawn": [["M"]], - "Shawn's": null, - "Shaylah": [["M"]], - "Shaylah's": null, - "Shayla": [["M"]], - "Shayla's": null, - "Shaylyn": [["M"]], - "Shaylyn's": null, - "Shaylynn": [["M"]], - "Shaylynn's": null, - "Shay": [["M"]], - "Shay's": null, - "shay": [["M", "S"]], - "shay's": null, - "shays": null, - "Shayna": [["M"]], - "Shayna's": null, - "Shayne": [["M"]], - "Shayne's": null, - "Shcharansky": [["M"]], - "Shcharansky's": null, - "sh": [["D", "R", "S"]], - "shed": [["U"]], - "sher": null, - "shes": null, - "sheaf": [["M", "D", "G", "S"]], - "sheaf's": null, - "sheafed": null, - "sheafing": null, - "sheafs": null, - "Shea": [["M"]], - "Shea's": null, - "shearer": [["M"]], - "shearer's": null, - "shear": [["R", "D", "G", "Z", "S"]], - "sheared": null, - "shearing": null, - "shearers": null, - "shears": null, - "sheather": [["M"]], - "sheather's": null, - "sheathe": [["U", "G", "S", "D"]], - "unsheathe": null, - "unsheathing": null, - "unsheathes": null, - "unsheathed": null, - "sheathing": [["M"]], - "sheathes": null, - "sheathed": null, - "sheath": [["G", "J", "M", "D", "R", "S"]], - "sheathings": null, - "sheath's": null, - "sheathing's": null, - "sheaths": null, - "sheave": [["S", "D", "G"]], - "sheaves": [["M"]], - "sheaved": null, - "sheaving": null, - "sheaves's": null, - "Sheba": [["M"]], - "Sheba's": null, - "shebang": [["M", "S"]], - "shebang's": null, - "shebangs": null, - "Shebeli": [["M"]], - "Shebeli's": null, - "Sheboygan": [["M"]], - "Sheboygan's": null, - "she'd": null, - "shedding": null, - "Shedir": [["M"]], - "Shedir's": null, - "sheds": null, - "shed's": null, - "unshed": null, - "Sheelagh": [["M"]], - "Sheelagh's": null, - "Sheelah": [["M"]], - "Sheelah's": null, - "Sheela": [["M"]], - "Sheela's": null, - "Sheena": [["M"]], - "Sheena's": null, - "sheen": [["M", "D", "G", "S"]], - "sheen's": null, - "sheened": null, - "sheening": null, - "sheens": null, - "sheeny": [["T", "R", "S", "M"]], - "sheeniest": null, - "sheenier": null, - "sheenies": null, - "sheeny's": null, - "sheepdog": [["S", "M"]], - "sheepdogs": null, - "sheepdog's": null, - "sheepfold": [["M", "S"]], - "sheepfold's": null, - "sheepfolds": null, - "sheepherder": [["M", "S"]], - "sheepherder's": null, - "sheepherders": null, - "sheepishness": [["S", "M"]], - "sheepishnesses": null, - "sheepishness's": null, - "sheepish": [["Y", "P"]], - "sheepishly": null, - "sheep": [["M"]], - "sheep's": null, - "sheepskin": [["S", "M"]], - "sheepskins": null, - "sheepskin's": null, - "Sheeree": [["M"]], - "Sheeree's": null, - "sheerness": [["S"]], - "sheernesses": null, - "sheer": [["P", "G", "T", "Y", "R", "D", "S"]], - "sheering": null, - "sheerest": null, - "sheerly": null, - "sheerer": null, - "sheered": null, - "sheers": null, - "sheeting": [["M"]], - "sheeting's": null, - "sheetlike": null, - "sheet": [["R", "D", "M", "J", "S", "G"]], - "sheeter": null, - "sheeted": null, - "sheet's": null, - "sheetings": null, - "sheets": null, - "Sheetrock": null, - "Sheffielder": [["M"]], - "Sheffielder's": null, - "Sheffield": [["R", "M", "Z"]], - "Sheffield's": null, - "Sheffielders": null, - "Sheffie": [["M"]], - "Sheffie's": null, - "Sheff": [["M"]], - "Sheff's": null, - "Sheffy": [["M"]], - "Sheffy's": null, - "sheikdom": [["S", "M"]], - "sheikdoms": null, - "sheikdom's": null, - "sheikh's": null, - "sheik": [["S", "M"]], - "sheiks": null, - "sheik's": null, - "Sheilah": [["M"]], - "Sheilah's": null, - "Sheila": [["M"]], - "Sheila's": null, - "shekel": [["M", "S"]], - "shekel's": null, - "shekels": null, - "Shelagh": [["M"]], - "Shelagh's": null, - "Shela": [["M"]], - "Shela's": null, - "Shelba": [["M"]], - "Shelba's": null, - "Shelbi": [["M"]], - "Shelbi's": null, - "Shelby": [["M"]], - "Shelby's": null, - "Shelden": [["M"]], - "Shelden's": null, - "Sheldon": [["M"]], - "Sheldon's": null, - "shelf": [["M", "D", "G", "S"]], - "shelf's": null, - "shelfed": null, - "shelfing": null, - "shelfs": null, - "Shelia": [["M"]], - "Shelia's": null, - "she'll": null, - "shellacked": null, - "shellacking": [["M", "S"]], - "shellacking's": null, - "shellackings": null, - "shellac": [["S"]], - "shellacs": null, - "shelled": [["U"]], - "unshelled": null, - "Shelley": [["M"]], - "Shelley's": null, - "shellfire": [["S", "M"]], - "shellfires": null, - "shellfire's": null, - "shellfish": [["S", "M"]], - "shellfishes": null, - "shellfish's": null, - "Shellie": [["M"]], - "Shellie's": null, - "Shelli": [["M"]], - "Shelli's": null, - "Shell": [["M"]], - "Shell's": null, - "shell": [["R", "D", "M", "G", "S"]], - "sheller": null, - "shell's": null, - "shelling": null, - "shells": null, - "Shelly": [["M"]], - "Shelly's": null, - "Shel": [["M", "Y"]], - "Shel's": null, - "shelter": [["D", "R", "M", "G", "S"]], - "sheltered": [["U"]], - "shelterer": [["M"]], - "shelter's": null, - "sheltering": null, - "shelters": null, - "unsheltered": null, - "shelterer's": null, - "Shelton": [["M"]], - "Shelton's": null, - "shelve": [["J", "R", "S", "D", "G"]], - "shelvings": null, - "shelver": [["M"]], - "shelves": [["M"]], - "shelved": null, - "shelving": [["M"]], - "shelver's": null, - "shelves's": null, - "shelving's": null, - "she": [["M"]], - "she's": null, - "Shem": [["M"]], - "Shem's": null, - "Shena": [["M"]], - "Shena's": null, - "Shenandoah": [["M"]], - "Shenandoah's": null, - "shenanigan": [["S", "M"]], - "shenanigans": null, - "shenanigan's": null, - "Shenyang": [["M"]], - "Shenyang's": null, - "Sheol": [["M"]], - "Sheol's": null, - "Shepard": [["M"]], - "Shepard's": null, - "shepherd": [["D", "M", "S", "G"]], - "shepherded": null, - "shepherd's": null, - "shepherds": null, - "shepherding": null, - "shepherdess": [["S"]], - "shepherdesses": null, - "Shepherd": [["M"]], - "Shepherd's": null, - "Shep": [["M"]], - "Shep's": null, - "Sheppard": [["M"]], - "Sheppard's": null, - "Shepperd": [["M"]], - "Shepperd's": null, - "Sheratan": [["M"]], - "Sheratan's": null, - "Sheraton": [["M"]], - "Sheraton's": null, - "sherbet": [["M", "S"]], - "sherbet's": null, - "sherbets": null, - "sherd's": null, - "Sheree": [["M"]], - "Sheree's": null, - "Sheridan": [["M"]], - "Sheridan's": null, - "Sherie": [["M"]], - "Sherie's": null, - "sheriff": [["S", "M"]], - "sheriffs": null, - "sheriff's": null, - "Sherill": [["M"]], - "Sherill's": null, - "Sherilyn": [["M"]], - "Sherilyn's": null, - "Sheri": [["M"]], - "Sheri's": null, - "Sherline": [["M"]], - "Sherline's": null, - "Sherlocke": [["M"]], - "Sherlocke's": null, - "sherlock": [["M"]], - "sherlock's": null, - "Sherlock": [["M"]], - "Sherlock's": null, - "Sher": [["M"]], - "Sher's": null, - "Sherman": [["M"]], - "Sherman's": null, - "Shermie": [["M"]], - "Shermie's": null, - "Sherm": [["M"]], - "Sherm's": null, - "Shermy": [["M"]], - "Shermy's": null, - "Sherpa": [["S", "M"]], - "Sherpas": null, - "Sherpa's": null, - "Sherrie": [["M"]], - "Sherrie's": null, - "Sherri": [["M"]], - "Sherri's": null, - "Sherry": [["M"]], - "Sherry's": null, - "sherry": [["M", "S"]], - "sherry's": null, - "sherries": null, - "Sherwin": [["M"]], - "Sherwin's": null, - "Sherwood": [["M"]], - "Sherwood's": null, - "Sherwynd": [["M"]], - "Sherwynd's": null, - "Sherye": [["M"]], - "Sherye's": null, - "Sheryl": [["M"]], - "Sheryl's": null, - "Shetland": [["S"]], - "Shetlands": null, - "Shevardnadze": [["M"]], - "Shevardnadze's": null, - "shew": [["G", "S", "D"]], - "shewing": null, - "shews": null, - "shewed": null, - "shewn": null, - "shh": null, - "shiatsu": [["S"]], - "shiatsus": null, - "shibboleth": [["M"]], - "shibboleth's": null, - "shibboleths": null, - "shielded": [["U"]], - "unshielded": null, - "shielder": [["M"]], - "shielder's": null, - "shield": [["M", "D", "R", "S", "G"]], - "shield's": null, - "shields": null, - "shielding": null, - "Shields": [["M"]], - "Shields's": null, - "shiftily": null, - "shiftiness": [["S", "M"]], - "shiftinesses": null, - "shiftiness's": null, - "shiftlessness": [["S"]], - "shiftlessnesses": null, - "shiftless": [["P", "Y"]], - "shiftlessly": null, - "shift": [["R", "D", "G", "Z", "S"]], - "shifter": null, - "shifted": null, - "shifting": null, - "shifters": null, - "shifts": null, - "shifty": [["T", "R", "P"]], - "shiftiest": null, - "shiftier": null, - "Shi'ite": null, - "Shiite": [["S", "M"]], - "Shiites": null, - "Shiite's": null, - "Shijiazhuang": null, - "Shikoku": [["M"]], - "Shikoku's": null, - "shill": [["D", "J", "S", "G"]], - "shilled": null, - "shillings": null, - "shills": null, - "shilling": [["M"]], - "shillelagh": [["M"]], - "shillelagh's": null, - "shillelaghs": null, - "shilling's": null, - "Shillong": [["M"]], - "Shillong's": null, - "Shiloh": [["M"]], - "Shiloh's": null, - "shimmed": null, - "shimmer": [["D", "G", "S"]], - "shimmered": null, - "shimmering": null, - "shimmers": null, - "shimmery": null, - "shimming": null, - "shimmy": [["D", "S", "M", "G"]], - "shimmied": null, - "shimmies": null, - "shimmy's": null, - "shimmying": null, - "shim": [["S", "M"]], - "shims": null, - "shim's": null, - "Shina": [["M"]], - "Shina's": null, - "shinbone": [["S", "M"]], - "shinbones": null, - "shinbone's": null, - "shindig": [["M", "S"]], - "shindig's": null, - "shindigs": null, - "shiner": [["M"]], - "shiner's": null, - "shine": [["S"]], - "shines": null, - "shingle": [["M", "D", "R", "S", "G"]], - "shingle's": null, - "shingled": null, - "shingler": [["M"]], - "shingles": null, - "shingling": null, - "shingler's": null, - "shinguard": null, - "shininess": [["M", "S"]], - "shininess's": null, - "shininesses": null, - "shining": [["Y"]], - "shiningly": null, - "shinned": null, - "shinning": null, - "shinny": [["G", "D", "S", "M"]], - "shinnying": null, - "shinnied": null, - "shinnies": null, - "shinny's": null, - "shin": [["S", "G", "Z", "D", "R", "M"]], - "shins": null, - "shiners": null, - "shined": null, - "shin's": null, - "shinsplints": null, - "Shintoism": [["S"]], - "Shintoisms": null, - "Shintoist": [["M", "S"]], - "Shintoist's": null, - "Shintoists": null, - "Shinto": [["M", "S"]], - "Shinto's": null, - "Shintos": null, - "shiny": [["P", "R", "T"]], - "shinier": null, - "shiniest": null, - "shipboard": [["M", "S"]], - "shipboard's": null, - "shipboards": null, - "shipborne": null, - "shipbuilder": [["M"]], - "shipbuilder's": null, - "shipbuild": [["R", "G", "Z", "J"]], - "shipbuilding": null, - "shipbuilders": null, - "shipbuildings": null, - "shipload": [["S", "M"]], - "shiploads": null, - "shipload's": null, - "shipman": [["M"]], - "shipman's": null, - "shipmate": [["S", "M"]], - "shipmates": null, - "shipmate's": null, - "shipmen": null, - "shipment": [["A", "M", "S"]], - "reshipment": null, - "reshipment's": null, - "reshipments": null, - "shipment's": null, - "shipments": null, - "shipowner": [["M", "S"]], - "shipowner's": null, - "shipowners": null, - "shippable": null, - "shipped": [["A"]], - "reshipped": null, - "shipper": [["S", "M"]], - "shippers": null, - "shipper's": null, - "shipping": [["M", "S"]], - "shipping's": null, - "shippings": null, - "ship's": null, - "shipshape": null, - "ship": [["S", "L", "A"]], - "ships": null, - "reships": null, - "reship": null, - "shipwreck": [["G", "S", "M", "D"]], - "shipwrecking": null, - "shipwrecks": null, - "shipwreck's": null, - "shipwrecked": null, - "shipwright": [["M", "S"]], - "shipwright's": null, - "shipwrights": null, - "shipyard": [["M", "S"]], - "shipyard's": null, - "shipyards": null, - "Shiraz": [["M"]], - "Shiraz's": null, - "shire": [["M", "S"]], - "shire's": null, - "shires": null, - "shirker": [["M"]], - "shirker's": null, - "shirk": [["R", "D", "G", "Z", "S"]], - "shirked": null, - "shirking": null, - "shirkers": null, - "shirks": null, - "Shirlee": [["M"]], - "Shirlee's": null, - "Shirleen": [["M"]], - "Shirleen's": null, - "Shirlene": [["M"]], - "Shirlene's": null, - "Shirley": [["M"]], - "Shirley's": null, - "Shirline": [["M"]], - "Shirline's": null, - "Shirl": [["M"]], - "Shirl's": null, - "Shir": [["M"]], - "Shir's": null, - "shirr": [["G", "J", "D", "S"]], - "shirring": null, - "shirrings": null, - "shirred": null, - "shirrs": null, - "shirtfront": [["S"]], - "shirtfronts": null, - "shirting": [["M"]], - "shirting's": null, - "shirt": [["J", "D", "M", "S", "G"]], - "shirtings": null, - "shirted": null, - "shirt's": null, - "shirts": null, - "shirtless": null, - "shirtmake": [["R"]], - "shirtmaker": [["M"]], - "shirtmaker's": null, - "shirtsleeve": [["M", "S"]], - "shirtsleeve's": null, - "shirtsleeves": null, - "shirttail": [["S"]], - "shirttails": null, - "shirtwaist": [["S", "M"]], - "shirtwaists": null, - "shirtwaist's": null, - "shit": [["S", "!"]], - "shits": null, - "shitting": [["!"]], - "shitty": [["R", "T", "!"]], - "shittier": null, - "shittiest": null, - "Shiva": [["M"]], - "Shiva's": null, - "shiverer": [["M"]], - "shiverer's": null, - "shiver": [["G", "D", "R"]], - "shivering": null, - "shivered": null, - "shivery": null, - "shiv": [["S", "Z", "R", "M"]], - "shivs": null, - "shivers": null, - "shiv's": null, - "shivved": null, - "shivving": null, - "shlemiel's": null, - "Shmuel": [["M"]], - "Shmuel's": null, - "shoal": [["S", "R", "D", "M", "G", "T"]], - "shoals": null, - "shoaler": null, - "shoaled": null, - "shoal's": null, - "shoaling": null, - "shoalest": null, - "shoat": [["S", "M"]], - "shoats": null, - "shoat's": null, - "shocker": [["M"]], - "shocker's": null, - "shocking": [["Y"]], - "shockingly": null, - "Shockley": [["M"]], - "Shockley's": null, - "shockproof": null, - "shock": [["S", "G", "Z", "R", "D"]], - "shocks": null, - "shockers": null, - "shocked": null, - "shoddily": null, - "shoddiness": [["S", "M"]], - "shoddinesses": null, - "shoddiness's": null, - "shoddy": [["R", "S", "T", "P"]], - "shoddier": null, - "shoddies": null, - "shoddiest": null, - "shod": [["U"]], - "unshod": null, - "shoehorn": [["G", "S", "M", "D"]], - "shoehorning": null, - "shoehorns": null, - "shoehorn's": null, - "shoehorned": null, - "shoeing": null, - "shoelace": [["M", "S"]], - "shoelace's": null, - "shoelaces": null, - "shoemaker": [["M"]], - "shoemaker's": null, - "shoemake": [["R", "Z"]], - "shoemakers": null, - "shoe": [["M", "S"]], - "shoe's": null, - "shoes": null, - "shoer's": null, - "shoeshine": [["M", "S"]], - "shoeshine's": null, - "shoeshines": null, - "shoestring": [["M", "S"]], - "shoestring's": null, - "shoestrings": null, - "shoetree": [["M", "S"]], - "shoetree's": null, - "shoetrees": null, - "shogunate": [["S", "M"]], - "shogunates": null, - "shogunate's": null, - "shogun": [["M", "S"]], - "shogun's": null, - "shoguns": null, - "Shoji": [["M"]], - "Shoji's": null, - "Sholom": [["M"]], - "Sholom's": null, - "shone": null, - "shoo": [["D", "S", "G"]], - "shooed": null, - "shoos": null, - "shooing": null, - "shoofly": null, - "shook": [["S", "M"]], - "shooks": null, - "shook's": null, - "shooter": [["M"]], - "shooter's": null, - "shootout": [["M", "S"]], - "shootout's": null, - "shootouts": null, - "shoot": [["S", "J", "R", "G", "Z"]], - "shoots": null, - "shootings": null, - "shooting": null, - "shooters": null, - "shopkeeper": [["M"]], - "shopkeeper's": null, - "shopkeep": [["R", "G", "Z"]], - "shopkeeping": null, - "shopkeepers": null, - "shoplifter": [["M"]], - "shoplifter's": null, - "shoplifting": [["M"]], - "shoplifting's": null, - "shoplift": [["S", "R", "D", "G", "Z"]], - "shoplifts": null, - "shoplifted": null, - "shoplifters": null, - "shop": [["M", "S"]], - "shop's": null, - "shops": null, - "shopped": [["M"]], - "shopped's": null, - "shopper": [["M"]], - "shopper's": null, - "shoppe": [["R", "S", "D", "G", "Z", "J"]], - "shoppes": null, - "shopping": [["M"]], - "shoppers": null, - "shoppings": null, - "shopping's": null, - "shoptalk": [["S", "M"]], - "shoptalks": null, - "shoptalk's": null, - "shopworn": null, - "shorebird": [["S"]], - "shorebirds": null, - "shore": [["D", "S", "R", "G", "M", "J"]], - "shored": null, - "shores": null, - "shorer": null, - "shoring": [["M"]], - "shore's": null, - "shorings": null, - "shoreline": [["S", "M"]], - "shorelines": null, - "shoreline's": null, - "Shorewood": [["M"]], - "Shorewood's": null, - "shoring's": null, - "shortage": [["M", "S"]], - "shortage's": null, - "shortages": null, - "shortbread": [["M", "S"]], - "shortbread's": null, - "shortbreads": null, - "shortcake": [["S", "M"]], - "shortcakes": null, - "shortcake's": null, - "shortchange": [["D", "S", "G"]], - "shortchanged": null, - "shortchanges": null, - "shortchanging": null, - "shortcoming": [["M", "S"]], - "shortcoming's": null, - "shortcomings": null, - "shortcrust": null, - "shortcut": [["M", "S"]], - "shortcut's": null, - "shortcuts": null, - "shortcutting": null, - "shortener": [["M"]], - "shortener's": null, - "shortening": [["M"]], - "shortening's": null, - "shorten": [["R", "D", "G", "J"]], - "shortened": null, - "shortenings": null, - "shortfall": [["S", "M"]], - "shortfalls": null, - "shortfall's": null, - "shorthand": [["D", "M", "S"]], - "shorthanded": null, - "shorthand's": null, - "shorthands": null, - "Shorthorn": [["M"]], - "Shorthorn's": null, - "shorthorn": [["M", "S"]], - "shorthorn's": null, - "shorthorns": null, - "shortie's": null, - "shortish": null, - "shortlist": [["G", "D"]], - "shortlisting": null, - "shortlisted": null, - "Short": [["M"]], - "Short's": null, - "shortness": [["M", "S"]], - "shortness's": null, - "shortnesses": null, - "short": [["S", "G", "T", "X", "Y", "R", "D", "N", "P"]], - "shorts": null, - "shorting": null, - "shortest": null, - "shortens": null, - "shortly": null, - "shorter": null, - "shorted": null, - "shortsightedness": [["S"]], - "shortsightednesses": null, - "shortsighted": [["Y", "P"]], - "shortsightedly": null, - "shortstop": [["M", "S"]], - "shortstop's": null, - "shortstops": null, - "shortwave": [["S", "M"]], - "shortwaves": null, - "shortwave's": null, - "shorty": [["S", "M"]], - "shorties": null, - "shorty's": null, - "Shoshana": [["M"]], - "Shoshana's": null, - "Shoshanna": [["M"]], - "Shoshanna's": null, - "Shoshone": [["S", "M"]], - "Shoshones": null, - "Shoshone's": null, - "Shostakovitch": [["M"]], - "Shostakovitch's": null, - "shotgunned": null, - "shotgunner": null, - "shotgunning": null, - "shotgun": [["S", "M"]], - "shotguns": null, - "shotgun's": null, - "shot": [["M", "S"]], - "shot's": null, - "shots": null, - "shotted": null, - "shotting": null, - "shoulder": [["G", "M", "D"]], - "shouldering": null, - "shoulder's": null, - "shouldered": null, - "shouldn't": null, - "should": [["T", "Z", "R"]], - "shouldest": null, - "shoulders": null, - "shout": [["S", "G", "Z", "R", "D", "M"]], - "shouts": null, - "shouting": null, - "shouters": null, - "shouter": null, - "shouted": null, - "shout's": null, - "shove": [["D", "S", "R", "G"]], - "shoved": null, - "shoves": null, - "shover": [["M"]], - "shoving": null, - "shoveler": [["M"]], - "shoveler's": null, - "shovelful": [["M", "S"]], - "shovelful's": null, - "shovelfuls": null, - "shovel": [["M", "D", "R", "S", "Z", "G"]], - "shovel's": null, - "shoveled": null, - "shovels": null, - "shovelers": null, - "shoveling": null, - "shover's": null, - "showbiz": null, - "showbizzes": null, - "showboat": [["S", "G", "D", "M"]], - "showboats": null, - "showboating": null, - "showboated": null, - "showboat's": null, - "showcase": [["M", "G", "S", "D"]], - "showcase's": null, - "showcasing": null, - "showcases": null, - "showcased": null, - "showdown": [["M", "S"]], - "showdown's": null, - "showdowns": null, - "shower": [["G", "D", "M"]], - "showering": null, - "showered": null, - "shower's": null, - "showery": [["T", "R"]], - "showeriest": null, - "showerier": null, - "show": [["G", "D", "R", "Z", "J", "S"]], - "showing": [["M"]], - "showed": null, - "showers": null, - "showings": null, - "shows": null, - "showgirl": [["S", "M"]], - "showgirls": null, - "showgirl's": null, - "showily": null, - "showiness": [["M", "S"]], - "showiness's": null, - "showinesses": null, - "showing's": null, - "showman": [["M"]], - "showman's": null, - "showmanship": [["S", "M"]], - "showmanships": null, - "showmanship's": null, - "showmen": null, - "shown": null, - "showoff": [["S"]], - "showoffs": null, - "showpiece": [["S", "M"]], - "showpieces": null, - "showpiece's": null, - "showplace": [["S", "M"]], - "showplaces": null, - "showplace's": null, - "showroom": [["M", "S"]], - "showroom's": null, - "showrooms": null, - "showy": [["R", "T", "P"]], - "showier": null, - "showiest": null, - "shpt": null, - "shrank": null, - "shrapnel": [["S", "M"]], - "shrapnels": null, - "shrapnel's": null, - "shredded": null, - "shredder": [["M", "S"]], - "shredder's": null, - "shredders": null, - "shredding": null, - "shred": [["M", "S"]], - "shred's": null, - "shreds": null, - "Shreveport": [["M"]], - "Shreveport's": null, - "shrewdness": [["S", "M"]], - "shrewdnesses": null, - "shrewdness's": null, - "shrewd": [["R", "Y", "T", "P"]], - "shrewder": null, - "shrewdly": null, - "shrewdest": null, - "shrew": [["G", "S", "M", "D"]], - "shrewing": null, - "shrews": null, - "shrew's": null, - "shrewed": null, - "shrewishness": [["M"]], - "shrewishness's": null, - "shrewish": [["P", "Y"]], - "shrewishly": null, - "shrieker": [["M"]], - "shrieker's": null, - "shriek": [["S", "G", "D", "R", "M", "Z"]], - "shrieks": null, - "shrieking": null, - "shrieked": null, - "shriek's": null, - "shriekers": null, - "shrift": [["S", "M"]], - "shrifts": null, - "shrift's": null, - "shrike": [["S", "M"]], - "shrikes": null, - "shrike's": null, - "shrill": [["D", "R", "T", "G", "P", "S"]], - "shrilled": null, - "shriller": null, - "shrillest": null, - "shrilling": null, - "shrillness": [["M", "S"]], - "shrills": null, - "shrillness's": null, - "shrillnesses": null, - "shrilly": null, - "shrimp": [["M", "D", "G", "S"]], - "shrimp's": null, - "shrimped": null, - "shrimping": null, - "shrimps": null, - "shrine": [["S", "D", "G", "M"]], - "shrines": null, - "shrined": null, - "shrining": null, - "shrine's": null, - "shrinkage": [["S", "M"]], - "shrinkages": null, - "shrinkage's": null, - "shrinker": [["M"]], - "shrinker's": null, - "shrinking": [["U"]], - "unshrinking": null, - "shrink": [["S", "R", "B", "G"]], - "shrinks": null, - "shrinkable": null, - "shrivel": [["G", "S", "D"]], - "shriveling": null, - "shrivels": null, - "shriveled": null, - "shriven": null, - "shrive": [["R", "S", "D", "G"]], - "shriver": null, - "shrives": null, - "shrived": null, - "shriving": null, - "Shropshire": [["M"]], - "Shropshire's": null, - "shroud": [["G", "S", "M", "D"]], - "shrouding": null, - "shrouds": null, - "shroud's": null, - "shrouded": null, - "shrubbed": null, - "shrubbery": [["S", "M"]], - "shrubberies": null, - "shrubbery's": null, - "shrubbing": null, - "shrubby": [["T", "R"]], - "shrubbiest": null, - "shrubbier": null, - "shrub": [["S", "M"]], - "shrubs": null, - "shrub's": null, - "shrugged": null, - "shrugging": null, - "shrug": [["S"]], - "shrugs": null, - "shrunk": [["N"]], - "shrunken": null, - "shtick": [["S"]], - "shticks": null, - "shucker": [["M"]], - "shucker's": null, - "shuck": [["S", "G", "M", "R", "D"]], - "shucks": [["S"]], - "shucking": null, - "shuck's": null, - "shucked": null, - "shuckses": null, - "shudder": [["D", "S", "G"]], - "shuddered": null, - "shudders": null, - "shuddering": null, - "shuddery": null, - "shuffleboard": [["M", "S"]], - "shuffleboard's": null, - "shuffleboards": null, - "shuffled": [["A"]], - "reshuffled": null, - "shuffle": [["G", "D", "S", "R", "Z"]], - "shuffling": [["A"]], - "shuffles": [["A"]], - "shuffler": null, - "shufflers": null, - "reshuffles": null, - "reshuffling": null, - "Shulman": [["M"]], - "Shulman's": null, - "Shu": [["M"]], - "Shu's": null, - "shunned": null, - "shunning": null, - "shun": [["S"]], - "shuns": null, - "shunter": [["M"]], - "shunter's": null, - "shunt": [["G", "S", "R", "D"]], - "shunting": null, - "shunts": null, - "shunted": null, - "Shurlocke": [["M"]], - "Shurlocke's": null, - "Shurlock": [["M"]], - "Shurlock's": null, - "Shurwood": [["M"]], - "Shurwood's": null, - "shush": [["S", "D", "G"]], - "shushes": null, - "shushed": null, - "shushing": null, - "shutdown": [["M", "S"]], - "shutdown's": null, - "shutdowns": null, - "shuteye": [["S", "M"]], - "shuteyes": null, - "shuteye's": null, - "shutoff": [["M"]], - "shutoff's": null, - "shutout": [["S", "M"]], - "shutouts": null, - "shutout's": null, - "shut": [["S"]], - "shuts": null, - "shutterbug": [["S"]], - "shutterbugs": null, - "shutter": [["D", "M", "G", "S"]], - "shuttered": null, - "shutter's": null, - "shuttering": [["M"]], - "shutters": null, - "shuttering's": null, - "shutting": null, - "shuttlecock": [["M", "D", "S", "G"]], - "shuttlecock's": null, - "shuttlecocked": null, - "shuttlecocks": null, - "shuttlecocking": null, - "shuttle": [["M", "G", "D", "S"]], - "shuttle's": null, - "shuttling": null, - "shuttled": null, - "shuttles": null, - "shy": [["D", "R", "S", "G", "T", "Z", "Y"]], - "shied": null, - "shier": null, - "shies": null, - "shying": null, - "shiest": null, - "shiers": null, - "shyly": null, - "shyer": null, - "shyest": null, - "Shylockian": [["M"]], - "Shylockian's": null, - "Shylock": [["M"]], - "Shylock's": null, - "shyness": [["S", "M"]], - "shynesses": null, - "shyness's": null, - "shyster": [["S", "M"]], - "shysters": null, - "shyster's": null, - "Siamese": [["M"]], - "Siamese's": null, - "Siam": [["M"]], - "Siam's": null, - "Siana": [["M"]], - "Siana's": null, - "Sianna": [["M"]], - "Sianna's": null, - "Sian's": null, - "Sibbie": [["M"]], - "Sibbie's": null, - "Sibby": [["M"]], - "Sibby's": null, - "Sibeal": [["M"]], - "Sibeal's": null, - "Sibelius": [["M"]], - "Sibelius's": null, - "Sibella": [["M"]], - "Sibella's": null, - "Sibelle": [["M"]], - "Sibelle's": null, - "Sibel": [["M"]], - "Sibel's": null, - "Siberia": [["M"]], - "Siberia's": null, - "Siberian": [["S"]], - "Siberians": null, - "sibilance": [["M"]], - "sibilance's": null, - "sibilancy": [["M"]], - "sibilancy's": null, - "sibilant": [["S", "Y"]], - "sibilants": null, - "sibilantly": null, - "Sibilla": [["M"]], - "Sibilla's": null, - "Sibley": [["M"]], - "Sibley's": null, - "sibling": [["S", "M"]], - "siblings": null, - "sibling's": null, - "Sib": [["M"]], - "Sib's": null, - "Sibylla": [["M"]], - "Sibylla's": null, - "Sibylle": [["M"]], - "Sibylle's": null, - "sibylline": null, - "Sibyl": [["M"]], - "Sibyl's": null, - "sibyl": [["S", "M"]], - "sibyls": null, - "sibyl's": null, - "Siciliana": [["M"]], - "Siciliana's": null, - "Sicilian": [["S"]], - "Sicilians": null, - "Sicily": [["M"]], - "Sicily's": null, - "sickbay": [["M"]], - "sickbay's": null, - "sickbed": [["S"]], - "sickbeds": null, - "sickener": [["M"]], - "sickener's": null, - "sickening": [["Y"]], - "sickeningly": null, - "sicken": [["J", "R", "D", "G"]], - "sickenings": null, - "sickened": null, - "sicker": [["Y"]], - "sickerly": null, - "sick": [["G", "X", "T", "Y", "N", "D", "R", "S", "P"]], - "sicking": null, - "sickens": null, - "sickest": null, - "sickly": [["T", "R", "S", "D", "P", "G"]], - "sicked": null, - "sicks": null, - "sickness": [["M", "S"]], - "sickie": [["S", "M"]], - "sickies": null, - "sickie's": null, - "sickish": [["P", "Y"]], - "sickishness": null, - "sickishly": null, - "sickle": [["S", "D", "G", "M"]], - "sickles": null, - "sickled": null, - "sickling": null, - "sickle's": null, - "sickliness": [["M"]], - "sickliness's": null, - "sickliest": null, - "sicklier": null, - "sicklies": null, - "sicklied": null, - "sicklying": null, - "sickness's": null, - "sicknesses": null, - "sicko": [["S"]], - "sickos": null, - "sickout": [["S"]], - "sickouts": null, - "sickroom": [["S", "M"]], - "sickrooms": null, - "sickroom's": null, - "sic": [["S"]], - "sics": null, - "sidearm": [["S"]], - "sidearms": null, - "sideband": [["M", "S"]], - "sideband's": null, - "sidebands": null, - "sidebar": [["M", "S"]], - "sidebar's": null, - "sidebars": null, - "sideboard": [["S", "M"]], - "sideboards": null, - "sideboard's": null, - "sideburns": null, - "sidecar": [["M", "S"]], - "sidecar's": null, - "sidecars": null, - "sided": [["A"]], - "resided": null, - "sidedness": null, - "side": [["I", "S", "R", "M"]], - "insides": null, - "inside's": null, - "sides": [["A"]], - "sider": [["F", "A"]], - "side's": null, - "sidekick": [["M", "S"]], - "sidekick's": null, - "sidekicks": null, - "sidelight": [["S", "M"]], - "sidelights": null, - "sidelight's": null, - "sideline": [["M", "G", "D", "R", "S"]], - "sideline's": null, - "sidelining": null, - "sidelined": null, - "sideliner": null, - "sidelines": null, - "sidelong": null, - "sideman": [["M"]], - "sideman's": null, - "sidemen": null, - "sidepiece": [["S"]], - "sidepieces": null, - "sidereal": null, - "resides": null, - "sidesaddle": [["M", "S"]], - "sidesaddle's": null, - "sidesaddles": null, - "sideshow": [["M", "S"]], - "sideshow's": null, - "sideshows": null, - "sidesplitting": null, - "sidestepped": null, - "sidestepping": null, - "sidestep": [["S"]], - "sidesteps": null, - "sidestroke": [["G", "M", "S", "D"]], - "sidestroking": null, - "sidestroke's": null, - "sidestrokes": null, - "sidestroked": null, - "sideswipe": [["G", "S", "D", "M"]], - "sideswiping": null, - "sideswipes": null, - "sideswiped": null, - "sideswipe's": null, - "sidetrack": [["S", "D", "G"]], - "sidetracks": null, - "sidetracked": null, - "sidetracking": null, - "sidewalk": [["M", "S"]], - "sidewalk's": null, - "sidewalks": null, - "sidewall": [["M", "S"]], - "sidewall's": null, - "sidewalls": null, - "sidewards": null, - "sideway": [["S", "M"]], - "sideways": null, - "sideway's": null, - "sidewinder": [["S", "M"]], - "sidewinders": null, - "sidewinder's": null, - "siding": [["S", "M"]], - "sidings": null, - "siding's": null, - "sidle": [["D", "S", "G"]], - "sidled": null, - "sidles": null, - "sidling": null, - "Sid": [["M"]], - "Sid's": null, - "Sidnee": [["M"]], - "Sidnee's": null, - "Sidney": [["M"]], - "Sidney's": null, - "Sidoney": [["M"]], - "Sidoney's": null, - "Sidonia": [["M"]], - "Sidonia's": null, - "Sidonnie": [["M"]], - "Sidonnie's": null, - "SIDS": null, - "siege": [["G", "M", "D", "S"]], - "sieging": null, - "siege's": null, - "sieged": null, - "sieges": null, - "Siegel": [["M"]], - "Siegel's": null, - "Siegfried": [["M"]], - "Siegfried's": null, - "Sieglinda": [["M"]], - "Sieglinda's": null, - "Siegmund": [["M"]], - "Siegmund's": null, - "Siemens": [["M"]], - "Siemens's": null, - "Siena": [["M"]], - "Siena's": null, - "sienna": [["S", "M"]], - "siennas": null, - "sienna's": null, - "Sierpinski": [["M"]], - "Sierpinski's": null, - "sierra": [["S", "M"]], - "sierras": null, - "sierra's": null, - "siesta": [["M", "S"]], - "siesta's": null, - "siestas": null, - "sieve": [["G", "Z", "M", "D", "S"]], - "sieving": null, - "sievers": null, - "sieve's": null, - "sieved": null, - "sieves": null, - "Siffre": [["M"]], - "Siffre's": null, - "sifted": [["U", "A"]], - "unsifted": null, - "resifted": null, - "sifter": [["M"]], - "sifter's": null, - "sift": [["G", "Z", "J", "S", "D", "R"]], - "sifting": null, - "sifters": null, - "siftings": null, - "sifts": null, - "Sigfrid": [["M"]], - "Sigfrid's": null, - "Sigfried": [["M"]], - "Sigfried's": null, - "SIGGRAPH": [["M"]], - "SIGGRAPH's": null, - "sigh": [["D", "R", "G"]], - "sighed": null, - "sigher": [["M"]], - "sighing": null, - "sigher's": null, - "sighs": null, - "sighted": [["P"]], - "sightedness": null, - "sighter": [["M"]], - "sighter's": null, - "sighting": [["S"]], - "sightings": null, - "sight": [["I", "S", "M"]], - "insight": null, - "insights": null, - "insight's": null, - "sights": null, - "sight's": null, - "sightless": [["Y"]], - "sightlessly": null, - "sightliness": [["U", "M"]], - "unsightliness": [["S"]], - "unsightliness's": null, - "sightliness's": null, - "sightly": [["T", "U", "R", "P"]], - "sightliest": null, - "unsightly": null, - "unsightlier": null, - "sightlier": null, - "sightread": null, - "sightseeing": [["S"]], - "sightseeings": null, - "sightsee": [["R", "Z"]], - "sightseer": null, - "sightseers": null, - "Sigismond": [["M"]], - "Sigismond's": null, - "Sigismondo": [["M"]], - "Sigismondo's": null, - "Sigismund": [["M"]], - "Sigismund's": null, - "Sigismundo": [["M"]], - "Sigismundo's": null, - "Sig": [["M"]], - "Sig's": null, - "sigma": [["S", "M"]], - "sigmas": null, - "sigma's": null, - "sigmoid": null, - "Sigmund": [["M"]], - "Sigmund's": null, - "signal": [["A"]], - "resignal": null, - "signaled": null, - "signaler": [["S"]], - "signalers": null, - "signaling": null, - "signalization": [["S"]], - "signalizations": null, - "signalize": [["G", "S", "D"]], - "signalizing": null, - "signalizes": null, - "signalized": null, - "signally": null, - "signalman": [["M"]], - "signalman's": null, - "signalmen": null, - "signals": null, - "signal's": null, - "signatory": [["S", "M"]], - "signatories": null, - "signatory's": null, - "signature": [["M", "S"]], - "signature's": null, - "signatures": null, - "signboard": [["M", "S"]], - "signboard's": null, - "signboards": null, - "signed": [["F", "U"]], - "unsigned": null, - "signer": [["S", "C"]], - "signers": null, - "designers": null, - "signet": [["S", "G", "M", "D"]], - "signets": null, - "signeting": null, - "signet's": null, - "signeted": null, - "sign": [["G", "A", "R", "D", "C", "S"]], - "signing": [["S"]], - "resigning": null, - "resign": null, - "resigner": null, - "resigns": null, - "signs": [["F"]], - "significance": [["I", "M", "S"]], - "insignificance": null, - "insignificance's": null, - "insignificances": null, - "significance's": null, - "significances": null, - "significantly": [["I"]], - "insignificantly": null, - "significant": [["Y", "S"]], - "significants": null, - "signification": [["M"]], - "signification's": null, - "signify": [["D", "R", "S", "G", "N", "X"]], - "signified": null, - "signifier": null, - "signifies": null, - "signifying": null, - "significations": null, - "signings": null, - "Signora": [["M"]], - "Signora's": null, - "signora": [["S", "M"]], - "signoras": null, - "signora's": null, - "signore": [["M"]], - "signore's": null, - "signori": null, - "signories": null, - "signorina": [["S", "M"]], - "signorinas": null, - "signorina's": null, - "signorine": null, - "Signor": [["M"]], - "Signor's": null, - "signor": [["S", "F", "M"]], - "signors": null, - "consignors": null, - "consignor": null, - "consignor's": null, - "signor's": null, - "signpost": [["D", "M", "S", "G"]], - "signposted": null, - "signpost's": null, - "signposts": null, - "signposting": null, - "sign's": null, - "Sigrid": [["M"]], - "Sigrid's": null, - "Sigurd": [["M"]], - "Sigurd's": null, - "Sigvard": [["M"]], - "Sigvard's": null, - "Sihanouk": [["M"]], - "Sihanouk's": null, - "Sikhism": [["M", "S"]], - "Sikhism's": null, - "Sikhisms": null, - "Sikh": [["M", "S"]], - "Sikh's": null, - "Sikhes": null, - "Sikhs": null, - "Sikkimese": null, - "Sikkim": [["M"]], - "Sikkim's": null, - "Sikorsky": [["M"]], - "Sikorsky's": null, - "silage": [["G", "M", "S", "D"]], - "silaging": null, - "silage's": null, - "silages": null, - "silaged": null, - "Silas": [["M"]], - "Silas's": null, - "Sileas": [["M"]], - "Sileas's": null, - "siled": null, - "Sile": [["M"]], - "Sile's": null, - "silence": [["M", "Z", "G", "R", "S", "D"]], - "silence's": null, - "silencers": null, - "silencing": null, - "silencer": [["M"]], - "silences": null, - "silenced": null, - "silencer's": null, - "silentness": [["M"]], - "silentness's": null, - "silent": [["T", "S", "P", "R", "Y"]], - "silentest": null, - "silents": null, - "silenter": null, - "silently": null, - "Silesia": [["M"]], - "Silesia's": null, - "silhouette": [["G", "M", "S", "D"]], - "silhouetting": null, - "silhouette's": null, - "silhouettes": null, - "silhouetted": null, - "silica": [["S", "M"]], - "silicas": null, - "silica's": null, - "silicate": [["S", "M"]], - "silicates": null, - "silicate's": null, - "siliceous": null, - "silicide": [["M"]], - "silicide's": null, - "silicone": [["S", "M"]], - "silicones": null, - "silicone's": null, - "silicon": [["M", "S"]], - "silicon's": null, - "silicons": null, - "silicoses": null, - "silicosis": [["M"]], - "silicosis's": null, - "silken": [["D", "G"]], - "silkened": null, - "silkening": null, - "silk": [["G", "X", "N", "D", "M", "S"]], - "silking": null, - "silkens": null, - "silked": null, - "silk's": null, - "silks": null, - "silkily": null, - "silkiness": [["S", "M"]], - "silkinesses": null, - "silkiness's": null, - "silkscreen": [["S", "M"]], - "silkscreens": null, - "silkscreen's": null, - "silkworm": [["M", "S"]], - "silkworm's": null, - "silkworms": null, - "silky": [["R", "S", "P", "T"]], - "silkier": null, - "silkies": null, - "silkiest": null, - "silliness": [["S", "M"]], - "sillinesses": null, - "silliness's": null, - "sill": [["M", "S"]], - "sill's": null, - "sills": null, - "silly": [["P", "R", "S", "T"]], - "sillier": null, - "sillies": null, - "silliest": null, - "silo": [["G", "S", "M"]], - "siloing": null, - "silos": null, - "silo's": null, - "siltation": [["M"]], - "siltation's": null, - "silt": [["M", "D", "G", "S"]], - "silt's": null, - "silted": null, - "silting": null, - "silts": null, - "siltstone": [["M"]], - "siltstone's": null, - "silty": [["R", "T"]], - "siltier": null, - "siltiest": null, - "Silurian": [["S"]], - "Silurians": null, - "Silvain": [["M"]], - "Silvain's": null, - "Silva": [["M"]], - "Silva's": null, - "Silvana": [["M"]], - "Silvana's": null, - "Silvan": [["M"]], - "Silvan's": null, - "Silvano": [["M"]], - "Silvano's": null, - "Silvanus": [["M"]], - "Silvanus's": null, - "silverer": [["M"]], - "silverer's": null, - "silverfish": [["M", "S"]], - "silverfish's": null, - "silverfishes": null, - "Silverman": [["M"]], - "Silverman's": null, - "silver": [["R", "D", "Y", "M", "G", "S"]], - "silvered": null, - "silverly": null, - "silver's": null, - "silvering": null, - "silvers": null, - "silversmith": [["M"]], - "silversmith's": null, - "silversmiths": null, - "Silverstein": [["M"]], - "Silverstein's": null, - "silverware": [["S", "M"]], - "silverwares": null, - "silverware's": null, - "silvery": [["R", "T", "P"]], - "silverier": null, - "silveriest": null, - "silveriness": null, - "Silvester": [["M"]], - "Silvester's": null, - "Silvia": [["M"]], - "Silvia's": null, - "Silvie": [["M"]], - "Silvie's": null, - "Silvio": [["M"]], - "Silvio's": null, - "Si": [["M"]], - "Si's": null, - "SIMD": null, - "Simenon": [["M"]], - "Simenon's": null, - "Simeon": [["M"]], - "Simeon's": null, - "simian": [["S"]], - "simians": null, - "similar": [["E", "Y"]], - "dissimilarly": null, - "similarly": null, - "similarity": [["E", "M", "S"]], - "dissimilarity": null, - "dissimilarity's": null, - "dissimilarities": null, - "similarity's": null, - "similarities": null, - "simile": [["S", "M"]], - "similes": null, - "simile's": null, - "similitude": [["S", "M", "E"]], - "similitudes": null, - "dissimilitudes": null, - "similitude's": null, - "dissimilitude's": null, - "dissimilitude": null, - "Simla": [["M"]], - "Simla's": null, - "simmer": [["G", "S", "D"]], - "simmering": null, - "simmers": null, - "simmered": null, - "Simmonds": [["M"]], - "Simmonds's": null, - "Simmons": [["M"]], - "Simmons's": null, - "Simmonsville": [["M"]], - "Simmonsville's": null, - "Sim": [["M", "S"]], - "Sim's": null, - "Sims": null, - "Simms": [["M"]], - "Simms's": null, - "Simona": [["M"]], - "Simona's": null, - "Simone": [["M"]], - "Simone's": null, - "Simonette": [["M"]], - "Simonette's": null, - "simonize": [["S", "D", "G"]], - "simonizes": null, - "simonized": null, - "simonizing": null, - "Simon": [["M"]], - "Simon's": null, - "Simonne": [["M"]], - "Simonne's": null, - "simony": [["M", "S"]], - "simony's": null, - "simonies": null, - "simpatico": null, - "simper": [["G", "D", "S"]], - "simpering": null, - "simpered": null, - "simpers": null, - "simpleminded": [["Y", "P"]], - "simplemindedly": null, - "simplemindedness": null, - "simpleness": [["S"]], - "simplenesses": null, - "simple": [["R", "S", "D", "G", "T", "P"]], - "simpler": null, - "simples": null, - "simpled": null, - "simpling": null, - "simplest": null, - "simpleton": [["S", "M"]], - "simpletons": null, - "simpleton's": null, - "simplex": [["S"]], - "simplexes": null, - "simplicity": [["M", "S"]], - "simplicity's": null, - "simplicities": null, - "simplified": [["U"]], - "unsimplified": null, - "simplify": [["Z", "X", "R", "S", "D", "N", "G"]], - "simplifiers": null, - "simplifications": null, - "simplifier": null, - "simplifies": null, - "simplification": null, - "simplifying": null, - "simplistic": null, - "simplistically": null, - "simply": null, - "Simpson": [["M"]], - "Simpson's": null, - "simulacrum": [["M"]], - "simulacrum's": null, - "Simula": [["M"]], - "Simula's": null, - "SIMULA": [["M"]], - "SIMULA's": null, - "simulate": [["X", "E", "N", "G", "S", "D"]], - "simulations": null, - "dissimulations": null, - "dissimulate": null, - "dissimulation": null, - "dissimulating": null, - "dissimulates": null, - "dissimulated": null, - "simulation": [["M", "E"]], - "simulating": null, - "simulates": null, - "simulated": null, - "simulation's": null, - "dissimulation's": null, - "simulative": null, - "simulator": [["S", "E", "M"]], - "simulators": null, - "dissimulators": null, - "dissimulator": null, - "dissimulator's": null, - "simulator's": null, - "simulcast": [["G", "S", "D"]], - "simulcasting": null, - "simulcasts": null, - "simulcasted": null, - "simultaneity": [["S", "M"]], - "simultaneities": null, - "simultaneity's": null, - "simultaneousness": [["M"]], - "simultaneousness's": null, - "simultaneous": [["Y", "P"]], - "simultaneously": null, - "Sinai": [["M"]], - "Sinai's": null, - "Sinatra": [["M"]], - "Sinatra's": null, - "since": null, - "sincere": [["I", "Y"]], - "insincere": null, - "insincerely": null, - "sincerely": null, - "sincereness": [["M"]], - "sincereness's": null, - "sincerer": null, - "sincerest": null, - "sincerity": [["M", "I", "S"]], - "sincerity's": null, - "insincerity's": null, - "insincerity": null, - "insincerities": null, - "sincerities": null, - "Sinclair": [["M"]], - "Sinclair's": null, - "Sinclare": [["M"]], - "Sinclare's": null, - "Sindbad": [["M"]], - "Sindbad's": null, - "Sindee": [["M"]], - "Sindee's": null, - "Sindhi": [["M"]], - "Sindhi's": null, - "sinecure": [["M", "S"]], - "sinecure's": null, - "sinecures": null, - "sinecurist": [["M"]], - "sinecurist's": null, - "sine": [["S", "M"]], - "sines": null, - "sine's": null, - "sinew": [["S", "G", "M", "D"]], - "sinews": null, - "sinewing": null, - "sinew's": null, - "sinewed": null, - "sinewy": null, - "sinfulness": [["S", "M"]], - "sinfulnesses": null, - "sinfulness's": null, - "sinful": [["Y", "P"]], - "sinfully": null, - "Singaporean": [["S"]], - "Singaporeans": null, - "Singapore": [["M"]], - "Singapore's": null, - "sing": [["B", "G", "J", "Z", "Y", "D", "R"]], - "singable": null, - "singing": [["Y"]], - "singings": null, - "singers": null, - "singly": null, - "singed": null, - "singer": [["M"]], - "Singborg": [["M"]], - "Singborg's": null, - "singeing": null, - "singer's": null, - "Singer": [["M"]], - "Singer's": null, - "singe": [["S"]], - "singes": null, - "singingly": null, - "singlehanded": [["Y"]], - "singlehandedly": null, - "singleness": [["S", "M"]], - "singlenesses": null, - "singleness's": null, - "single": [["P", "S", "D", "G"]], - "singles": null, - "singled": null, - "singling": null, - "Singleton": [["M"]], - "Singleton's": null, - "singleton": [["S", "M"]], - "singletons": null, - "singleton's": null, - "singletree": [["S", "M"]], - "singletrees": null, - "singletree's": null, - "singlet": [["S", "M"]], - "singlets": null, - "singlet's": null, - "singsong": [["G", "S", "M", "D"]], - "singsonging": null, - "singsongs": null, - "singsong's": null, - "singsonged": null, - "singularity": [["S", "M"]], - "singularities": null, - "singularity's": null, - "singularization": [["M"]], - "singularization's": null, - "singular": [["S", "Y"]], - "singulars": null, - "singularly": null, - "Sinhalese": [["M"]], - "Sinhalese's": null, - "sinisterness": [["M"]], - "sinisterness's": null, - "sinister": [["Y", "P"]], - "sinisterly": null, - "sinistral": [["Y"]], - "sinistrally": null, - "sinkable": [["U"]], - "unsinkable": null, - "sinker": [["M"]], - "sinker's": null, - "sink": [["G", "Z", "S", "D", "R", "B"]], - "sinking": [["M"]], - "sinkers": null, - "sinks": null, - "sinked": null, - "sinkhole": [["S", "M"]], - "sinkholes": null, - "sinkhole's": null, - "Sinkiang": [["M"]], - "Sinkiang's": null, - "sinking's": null, - "sinlessness": [["M"]], - "sinlessness's": null, - "sinless": [["Y", "P"]], - "sinlessly": null, - "sin": [["M", "A", "G", "S"]], - "sin's": null, - "resin's": null, - "resining": null, - "resins": null, - "sining": null, - "sins": null, - "sinned": null, - "sinner": [["M", "S"]], - "sinner's": null, - "sinners": null, - "sinning": null, - "sinter": [["D", "M"]], - "sintered": null, - "sinter's": null, - "sinuosity": [["M", "S"]], - "sinuosity's": null, - "sinuosities": null, - "sinuousities": null, - "sinuousness": [["M"]], - "sinuousness's": null, - "sinuous": [["P", "Y"]], - "sinuously": null, - "sinusitis": [["S", "M"]], - "sinusitises": null, - "sinusitis's": null, - "sinus": [["M", "S"]], - "sinus's": null, - "sinuses": null, - "sinusoidal": [["Y"]], - "sinusoidally": null, - "sinusoid": [["M", "S"]], - "sinusoid's": null, - "sinusoids": null, - "Siobhan": [["M"]], - "Siobhan's": null, - "Siouxie": [["M"]], - "Siouxie's": null, - "Sioux": [["M"]], - "Sioux's": null, - "siphon": [["D", "M", "S", "G"]], - "siphoned": null, - "siphon's": null, - "siphons": [["U"]], - "siphoning": null, - "unsiphons": null, - "sipped": null, - "sipper": [["S", "M"]], - "sippers": null, - "sipper's": null, - "sipping": null, - "sip": [["S"]], - "sips": null, - "sired": [["C"]], - "sire": [["M", "S"]], - "sire's": null, - "sires": [["C"]], - "siren": [["M"]], - "siren's": null, - "desires": null, - "siring": [["C"]], - "desiring": null, - "Sirius": [["M"]], - "Sirius's": null, - "sirloin": [["M", "S"]], - "sirloin's": null, - "sirloins": null, - "Sir": [["M", "S"]], - "Sir's": null, - "Sirs": null, - "sirocco": [["M", "S"]], - "sirocco's": null, - "siroccos": null, - "sirred": null, - "sirring": null, - "sirup's": null, - "sir": [["X", "G", "M", "N", "D", "S"]], - "sirens": null, - "sir's": null, - "sirs": null, - "sisal": [["M", "S"]], - "sisal's": null, - "sisals": null, - "Sisely": [["M"]], - "Sisely's": null, - "Sisile": [["M"]], - "Sisile's": null, - "sis": [["S"]], - "sises": null, - "Sissie": [["M"]], - "Sissie's": null, - "sissified": null, - "Sissy": [["M"]], - "Sissy's": null, - "sissy": [["T", "R", "S", "M"]], - "sissiest": null, - "sissier": null, - "sissies": null, - "sissy's": null, - "sister": [["G", "D", "Y", "M", "S"]], - "sistering": null, - "sistered": null, - "sisterly": [["P"]], - "sister's": [["A"]], - "sisters": null, - "sisterhood": [["M", "S"]], - "sisterhood's": null, - "sisterhoods": null, - "sisterliness": [["M", "S"]], - "sisterliness's": null, - "sisterlinesses": null, - "resister's": null, - "Sistine": null, - "Sisyphean": null, - "Sisyphus": [["M"]], - "Sisyphus's": null, - "sit": [["A", "G"]], - "resit": null, - "resiting": null, - "siting": null, - "sitarist": [["S", "M"]], - "sitarists": null, - "sitarist's": null, - "sitar": [["S", "M"]], - "sitars": null, - "sitar's": null, - "sitcom": [["S", "M"]], - "sitcoms": null, - "sitcom's": null, - "site": [["D", "S", "J", "M"]], - "sited": null, - "sites": null, - "sitings": null, - "site's": null, - "sits": null, - "sitter": [["M", "S"]], - "sitter's": null, - "sitters": null, - "sitting": [["S", "M"]], - "sittings": null, - "sitting's": null, - "situate": [["G", "N", "S", "D", "X"]], - "situating": null, - "situation": [["M"]], - "situates": null, - "situated": null, - "situations": null, - "situational": [["Y"]], - "situationally": null, - "situationist": null, - "situation's": null, - "situ": [["S"]], - "situs": [["M"]], - "situs's": null, - "Siusan": [["M"]], - "Siusan's": null, - "Siva": [["M"]], - "Siva's": null, - "Siward": [["M"]], - "Siward's": null, - "sixfold": null, - "sixgun": null, - "six": [["M", "R", "S", "H"]], - "six's": null, - "sixer": null, - "sixes": null, - "sixth": [["Y"]], - "sixpence": [["M", "S"]], - "sixpence's": null, - "sixpences": null, - "sixpenny": null, - "sixshooter": null, - "sixteen": [["H", "R", "S", "M"]], - "sixteenth": null, - "sixteener": null, - "sixteens": null, - "sixteen's": null, - "sixteenths": null, - "sixths": null, - "sixthly": null, - "sixtieths": null, - "sixty": [["S", "M", "H"]], - "sixties": null, - "sixty's": null, - "sixtieth": null, - "sizableness": [["M"]], - "sizableness's": null, - "sizable": [["P"]], - "sized": [["U", "A"]], - "unsized": null, - "resized": null, - "size": [["G", "J", "D", "R", "S", "B", "M", "Z"]], - "sizing": [["M"]], - "sizings": null, - "sizer": [["M"]], - "sizes": [["A"]], - "size's": null, - "sizers": null, - "sizer's": null, - "resizes": null, - "sizing's": null, - "sizzler": [["M"]], - "sizzler's": null, - "sizzle": [["R", "S", "D", "G"]], - "sizzles": null, - "sizzled": null, - "sizzling": null, - "SJ": null, - "Sjaelland": [["M"]], - "Sjaelland's": null, - "SK": null, - "ska": [["S"]], - "skas": null, - "skateboard": [["S", "J", "G", "Z", "M", "D", "R"]], - "skateboards": null, - "skateboardings": null, - "skateboarding": null, - "skateboarders": null, - "skateboard's": null, - "skateboarded": null, - "skateboarder": null, - "skater": [["M"]], - "skater's": null, - "skate": [["S", "M"]], - "skates": null, - "skate's": null, - "skat": [["J", "M", "D", "R", "G", "Z"]], - "skatings": null, - "skat's": null, - "skated": null, - "skating": null, - "skaters": null, - "skedaddle": [["G", "S", "D"]], - "skedaddling": null, - "skedaddles": null, - "skedaddled": null, - "skeet": [["R", "M", "S"]], - "skeeter": null, - "skeet's": null, - "skeets": null, - "skein": [["M", "D", "G", "S"]], - "skein's": null, - "skeined": null, - "skeining": null, - "skeins": null, - "skeletal": [["Y"]], - "skeletally": null, - "skeleton": [["M", "S"]], - "skeleton's": null, - "skeletons": null, - "Skell": [["M"]], - "Skell's": null, - "Skelly": [["M"]], - "Skelly's": null, - "skeptical": [["Y"]], - "skeptically": null, - "skepticism": [["M", "S"]], - "skepticism's": null, - "skepticisms": null, - "skeptic": [["S", "M"]], - "skeptics": null, - "skeptic's": null, - "sketchbook": [["S", "M"]], - "sketchbooks": null, - "sketchbook's": null, - "sketcher": [["M"]], - "sketcher's": null, - "sketchily": null, - "sketchiness": [["M", "S"]], - "sketchiness's": null, - "sketchinesses": null, - "sketch": [["M", "R", "S", "D", "Z", "G"]], - "sketch's": null, - "sketches": null, - "sketched": null, - "sketchers": null, - "sketching": null, - "sketchpad": null, - "sketchy": [["P", "R", "T"]], - "sketchier": null, - "sketchiest": null, - "skew": [["D", "R", "S", "P", "G", "Z"]], - "skewed": null, - "skewer": [["G", "D", "M"]], - "skews": null, - "skewness": [["M"]], - "skewing": [["M"]], - "skewers": null, - "skewering": null, - "skewered": null, - "skewer's": null, - "skewing's": null, - "skewness's": null, - "skidded": null, - "skidding": null, - "skid": [["S"]], - "skids": null, - "skiff": [["G", "M", "D", "S"]], - "skiffing": null, - "skiff's": null, - "skiffed": null, - "skiffs": null, - "skiing": [["M"]], - "skiing's": null, - "skilfully": null, - "skill": [["D", "M", "S", "G"]], - "skilled": [["U"]], - "skill's": null, - "skills": null, - "skilling": [["M"]], - "unskilled": null, - "skillet": [["M", "S"]], - "skillet's": null, - "skillets": null, - "skillfulnesses": null, - "skillfulness": [["M", "U"]], - "skillfulness's": null, - "unskillfulness's": null, - "unskillfulness": null, - "skillful": [["Y", "U", "P"]], - "skillfully": null, - "unskillfully": null, - "unskillful": null, - "skilling's": null, - "skimmed": null, - "skimmer": [["M", "S"]], - "skimmer's": null, - "skimmers": null, - "skimming": [["S", "M"]], - "skimmings": null, - "skimming's": null, - "ski": [["M", "N", "J", "S", "G"]], - "ski's": null, - "skien": null, - "skiings": null, - "skis": null, - "skimp": [["G", "D", "S"]], - "skimping": null, - "skimped": null, - "skimps": null, - "skimpily": null, - "skimpiness": [["M", "S"]], - "skimpiness's": null, - "skimpinesses": null, - "skimpy": [["P", "R", "T"]], - "skimpier": null, - "skimpiest": null, - "skim": [["S", "M"]], - "skims": null, - "skim's": null, - "skincare": null, - "skindive": [["G"]], - "skindiving": null, - "skinflint": [["M", "S"]], - "skinflint's": null, - "skinflints": null, - "skinhead": [["S", "M"]], - "skinheads": null, - "skinhead's": null, - "skinless": null, - "skinned": null, - "Skinner": [["M"]], - "Skinner's": null, - "skinner": [["S", "M"]], - "skinners": null, - "skinner's": null, - "skinniness": [["M", "S"]], - "skinniness's": null, - "skinninesses": null, - "skinning": null, - "skinny": [["T", "R", "S", "P"]], - "skinniest": null, - "skinnier": null, - "skinnies": null, - "skin": [["S", "M"]], - "skins": null, - "skin's": null, - "skintight": null, - "Skip": [["M"]], - "Skip's": null, - "skipped": null, - "Skipper": [["M"]], - "Skipper's": null, - "skipper": [["S", "G", "D", "M"]], - "skippers": null, - "skippering": null, - "skippered": null, - "skipper's": null, - "Skippie": [["M"]], - "Skippie's": null, - "skipping": null, - "Skipp": [["R", "M"]], - "Skipp's": null, - "Skippy": [["M"]], - "Skippy's": null, - "skip": [["S"]], - "skips": null, - "Skipton": [["M"]], - "Skipton's": null, - "skirmisher": [["M"]], - "skirmisher's": null, - "skirmish": [["R", "S", "D", "M", "Z", "G"]], - "skirmishes": null, - "skirmished": null, - "skirmish's": null, - "skirmishers": null, - "skirmishing": null, - "skirter": [["M"]], - "skirter's": null, - "skirting": [["M"]], - "skirting's": null, - "skirt": [["R", "D", "M", "G", "S"]], - "skirted": null, - "skirt's": null, - "skirts": null, - "skit": [["G", "S", "M", "D"]], - "skiting": null, - "skits": null, - "skit's": null, - "skited": null, - "skitter": [["S", "D", "G"]], - "skitters": null, - "skittered": null, - "skittering": null, - "skittishness": [["S", "M"]], - "skittishnesses": null, - "skittishness's": null, - "skittish": [["Y", "P"]], - "skittishly": null, - "skittle": [["S", "M"]], - "skittles": null, - "skittle's": null, - "skivvy": [["G", "S", "D", "M"]], - "skivvying": null, - "skivvies": null, - "skivvied": null, - "skivvy's": null, - "skoal": [["S", "D", "G"]], - "skoals": null, - "skoaled": null, - "skoaling": null, - "Skopje": [["M"]], - "Skopje's": null, - "skulduggery": [["M", "S"]], - "skulduggery's": null, - "skulduggeries": null, - "skulker": [["M"]], - "skulker's": null, - "skulk": [["S", "R", "D", "G", "Z"]], - "skulks": null, - "skulked": null, - "skulking": null, - "skulkers": null, - "skullcap": [["M", "S"]], - "skullcap's": null, - "skullcaps": null, - "skullduggery's": null, - "skull": [["S", "D", "M"]], - "skulls": null, - "skulled": null, - "skull's": null, - "skunk": [["G", "M", "D", "S"]], - "skunking": null, - "skunk's": null, - "skunked": null, - "skunks": null, - "skycap": [["M", "S"]], - "skycap's": null, - "skycaps": null, - "skydiver": [["S", "M"]], - "skydivers": null, - "skydiver's": null, - "skydiving": [["M", "S"]], - "skydiving's": null, - "skydivings": null, - "Skye": [["M"]], - "Skye's": null, - "skyhook": null, - "skyjacker": [["M"]], - "skyjacker's": null, - "skyjack": [["Z", "S", "G", "R", "D", "J"]], - "skyjackers": null, - "skyjacks": null, - "skyjacking": null, - "skyjacked": null, - "skyjackings": null, - "Skylab": [["M"]], - "Skylab's": null, - "skylarker": [["M"]], - "skylarker's": null, - "skylark": [["S", "R", "D", "M", "G"]], - "skylarks": null, - "skylarked": null, - "skylark's": null, - "skylarking": null, - "Skylar": [["M"]], - "Skylar's": null, - "Skyler": [["M"]], - "Skyler's": null, - "skylight": [["M", "S"]], - "skylight's": null, - "skylights": null, - "skyline": [["M", "S"]], - "skyline's": null, - "skylines": null, - "Sky": [["M"]], - "Sky's": null, - "sky": [["M", "D", "R", "S", "G", "Z"]], - "sky's": null, - "skied": null, - "skier": null, - "skies": null, - "skying": null, - "skiers": null, - "skyrocket": [["G", "D", "M", "S"]], - "skyrocketing": null, - "skyrocketed": null, - "skyrocket's": null, - "skyrockets": null, - "skyscraper": [["M"]], - "skyscraper's": null, - "skyscrape": [["R", "Z"]], - "skyscrapers": null, - "skyward": [["S"]], - "skywards": null, - "skywave": null, - "skyway": [["M"]], - "skyway's": null, - "skywriter": [["M", "S"]], - "skywriter's": null, - "skywriters": null, - "skywriting": [["M", "S"]], - "skywriting's": null, - "skywritings": null, - "slabbed": null, - "slabbing": null, - "slab": [["M", "S"]], - "slab's": null, - "slabs": null, - "slacken": [["D", "G"]], - "slackened": null, - "slackening": null, - "slacker": [["M"]], - "slacker's": null, - "slackness": [["M", "S"]], - "slackness's": null, - "slacknesses": null, - "slack": [["S", "P", "G", "T", "Z", "X", "Y", "R", "D", "N"]], - "slacks": null, - "slacking": null, - "slackest": null, - "slackers": null, - "slackens": null, - "slackly": null, - "slacked": null, - "Slade": [["M"]], - "Slade's": null, - "slagged": null, - "slagging": null, - "slag": [["M", "S"]], - "slag's": null, - "slags": null, - "slain": null, - "slake": [["D", "S", "G"]], - "slaked": [["U"]], - "slakes": null, - "slaking": null, - "unslaked": null, - "slalom": [["S", "G", "M", "D"]], - "slaloms": null, - "slaloming": null, - "slalom's": null, - "slalomed": null, - "slammed": null, - "slammer": [["S"]], - "slammers": null, - "slamming": null, - "slam": [["S"]], - "slams": null, - "slander": [["M", "D", "R", "Z", "S", "G"]], - "slander's": null, - "slandered": null, - "slanderer": null, - "slanderers": null, - "slanders": null, - "slandering": null, - "slanderousness": [["M"]], - "slanderousness's": null, - "slanderous": [["P", "Y"]], - "slanderously": null, - "slang": [["S", "M", "G", "D"]], - "slangs": null, - "slang's": null, - "slanging": null, - "slanged": null, - "slangy": [["T", "R"]], - "slangiest": null, - "slangier": null, - "slanting": [["Y"]], - "slantingly": null, - "slant": [["S", "D", "G"]], - "slants": null, - "slanted": null, - "slantwise": null, - "slapdash": [["S"]], - "slapdashes": null, - "slaphappy": [["T", "R"]], - "slaphappiest": null, - "slaphappier": null, - "slap": [["M", "S"]], - "slap's": null, - "slaps": null, - "slapped": null, - "slapper": null, - "slapping": null, - "slapstick": [["M", "S"]], - "slapstick's": null, - "slapsticks": null, - "slash": [["G", "Z", "R", "S", "D"]], - "slashing": [["Y"]], - "slashers": null, - "slasher": null, - "slashes": null, - "slashed": null, - "slashingly": null, - "slater": [["M"]], - "slater's": null, - "Slater": [["M"]], - "Slater's": null, - "slate": [["S", "M"]], - "slates": null, - "slate's": null, - "slather": [["S", "M", "D", "G"]], - "slathers": null, - "slather's": null, - "slathered": null, - "slathering": null, - "slating": [["M"]], - "slating's": null, - "slat": [["M", "D", "R", "S", "G", "Z"]], - "slat's": null, - "slated": null, - "slats": null, - "slaters": null, - "slatted": null, - "slattern": [["M", "Y", "S"]], - "slattern's": null, - "slatternly": null, - "slatterns": null, - "slatting": null, - "slaughterer": [["M"]], - "slaughterer's": null, - "slaughterhouse": [["S", "M"]], - "slaughterhouses": null, - "slaughterhouse's": null, - "slaughter": [["S", "J", "M", "R", "D", "G", "Z"]], - "slaughters": null, - "slaughterings": null, - "slaughter's": null, - "slaughtered": null, - "slaughtering": null, - "slaughterers": null, - "slave": [["D", "S", "R", "G", "Z", "M"]], - "slaved": null, - "slaves": null, - "slaver": [["G", "D", "M"]], - "slaving": null, - "slavers": null, - "slave's": null, - "slaveholder": [["S", "M"]], - "slaveholders": null, - "slaveholder's": null, - "slavering": null, - "slavered": null, - "slaver's": null, - "slavery": [["S", "M"]], - "slaveries": null, - "slavery's": null, - "Slavic": [["M"]], - "Slavic's": null, - "slavishness": [["S", "M"]], - "slavishnesses": null, - "slavishness's": null, - "slavish": [["Y", "P"]], - "slavishly": null, - "Slav": [["M", "S"]], - "Slav's": null, - "Slavs": null, - "Slavonic": [["M"]], - "Slavonic's": null, - "slaw": [["M", "S"]], - "slaw's": null, - "slaws": null, - "slay": [["R", "G", "Z", "S"]], - "slayer": null, - "slaying": null, - "slayers": null, - "slays": null, - "sleaze": [["S"]], - "sleazes": null, - "sleazily": null, - "sleaziness": [["S", "M"]], - "sleazinesses": null, - "sleaziness's": null, - "sleazy": [["R", "T", "P"]], - "sleazier": null, - "sleaziest": null, - "sledded": null, - "sledder": [["S"]], - "sledders": null, - "sledding": null, - "sledgehammer": [["M", "D", "G", "S"]], - "sledgehammer's": null, - "sledgehammered": null, - "sledgehammering": null, - "sledgehammers": null, - "sledge": [["S", "D", "G", "M"]], - "sledges": null, - "sledged": null, - "sledging": null, - "sledge's": null, - "sled": [["S", "M"]], - "sleds": null, - "sled's": null, - "sleekness": [["S"]], - "sleeknesses": null, - "sleek": [["P", "Y", "R", "D", "G", "T", "S"]], - "sleekly": null, - "sleeker": null, - "sleeked": null, - "sleeking": null, - "sleekest": null, - "sleeks": null, - "sleeper": [["M"]], - "sleeper's": null, - "sleepily": null, - "sleepiness": [["S", "M"]], - "sleepinesses": null, - "sleepiness's": null, - "sleeping": [["M"]], - "sleeping's": null, - "sleeplessness": [["S", "M"]], - "sleeplessnesses": null, - "sleeplessness's": null, - "sleepless": [["Y", "P"]], - "sleeplessly": null, - "sleepover": [["S"]], - "sleepovers": null, - "sleep": [["R", "M", "G", "Z", "S"]], - "sleep's": null, - "sleepers": null, - "sleeps": null, - "sleepwalker": [["M"]], - "sleepwalker's": null, - "sleepwalk": [["J", "G", "R", "D", "Z", "S"]], - "sleepwalkings": null, - "sleepwalking": null, - "sleepwalked": null, - "sleepwalkers": null, - "sleepwalks": null, - "sleepwear": [["M"]], - "sleepwear's": null, - "sleepyhead": [["M", "S"]], - "sleepyhead's": null, - "sleepyheads": null, - "sleepy": [["P", "T", "R"]], - "sleepiest": null, - "sleepier": null, - "sleet": [["D", "M", "S", "G"]], - "sleeted": null, - "sleet's": null, - "sleets": null, - "sleeting": null, - "sleety": [["T", "R"]], - "sleetiest": null, - "sleetier": null, - "sleeveless": null, - "sleeve": [["S", "D", "G", "M"]], - "sleeves": null, - "sleeved": null, - "sleeving": [["M"]], - "sleeve's": null, - "sleeving's": null, - "sleigh": [["G", "M", "D"]], - "sleighing": null, - "sleigh's": null, - "sleighed": null, - "sleighs": null, - "sleight": [["S", "M"]], - "sleights": null, - "sleight's": null, - "sleken": [["D", "G"]], - "slekened": null, - "slekening": null, - "slenderize": [["D", "S", "G"]], - "slenderized": null, - "slenderizes": null, - "slenderizing": null, - "slenderness": [["M", "S"]], - "slenderness's": null, - "slendernesses": null, - "slender": [["R", "Y", "T", "P"]], - "slenderer": null, - "slenderly": null, - "slenderest": null, - "slept": null, - "Slesinger": [["M"]], - "Slesinger's": null, - "sleuth": [["G", "M", "D"]], - "sleuthing": null, - "sleuth's": null, - "sleuthed": null, - "sleuths": null, - "slew": [["D", "G", "S"]], - "slewed": null, - "slewing": null, - "slews": null, - "slice": [["D", "S", "R", "G", "Z", "M"]], - "sliced": [["U"]], - "slices": null, - "slicer": [["M"]], - "slicing": null, - "slicers": null, - "slice's": null, - "unsliced": null, - "slicer's": null, - "slicker": [["M"]], - "slicker's": null, - "slickness": [["M", "S"]], - "slickness's": null, - "slicknesses": null, - "slick": [["P", "S", "Y", "R", "D", "G", "T", "Z"]], - "slicks": null, - "slickly": null, - "slicked": null, - "slicking": null, - "slickest": null, - "slickers": null, - "slider": [["M"]], - "slider's": null, - "slide": [["S"]], - "slides": null, - "slid": [["G", "Z", "D", "R"]], - "sliding": null, - "sliders": null, - "slided": null, - "slight": [["D", "R", "Y", "P", "S", "T", "G"]], - "slighted": null, - "slighter": [["M"]], - "slightly": null, - "slightness": [["S"]], - "slights": null, - "slightest": null, - "slighting": [["Y"]], - "slighter's": null, - "slightingly": null, - "slightnesses": null, - "slime": [["S", "M"]], - "slimes": null, - "slime's": null, - "sliminess": [["S"]], - "sliminesses": null, - "slimline": null, - "slimmed": null, - "slimmer": [["S"]], - "slimmers": null, - "slimmest": null, - "slimming": [["S"]], - "slimmings": null, - "slimness": [["S"]], - "slimnesses": null, - "slim": [["S", "P", "G", "Y", "D"]], - "slims": null, - "sliming": null, - "slimly": null, - "slimed": null, - "slimy": [["P", "T", "R"]], - "slimiest": null, - "slimier": null, - "sling": [["G", "M", "R", "S"]], - "slinging": null, - "sling's": null, - "slinger": null, - "slings": [["U"]], - "slingshot": [["M", "S"]], - "slingshot's": null, - "slingshots": null, - "unslings": null, - "slink": [["G", "S"]], - "slinking": null, - "slinks": null, - "slinky": [["R", "T"]], - "slinkier": null, - "slinkiest": null, - "slipcase": [["M", "S"]], - "slipcase's": null, - "slipcases": null, - "slipcover": [["G", "M", "D", "S"]], - "slipcovering": null, - "slipcover's": null, - "slipcovered": null, - "slipcovers": null, - "slipknot": [["S", "M"]], - "slipknots": null, - "slipknot's": null, - "slippage": [["S", "M"]], - "slippages": null, - "slippage's": null, - "slipped": null, - "slipper": [["G", "S", "M", "D"]], - "slippering": null, - "slippers": null, - "slipper's": null, - "slippered": null, - "slipperiness": [["S"]], - "slipperinesses": null, - "slippery": [["P", "R", "T"]], - "slipperier": null, - "slipperiest": null, - "slipping": null, - "slipshod": null, - "slip": [["S", "M"]], - "slips": null, - "slip's": null, - "slipstream": [["M", "D", "G", "S"]], - "slipstream's": null, - "slipstreamed": null, - "slipstreaming": null, - "slipstreams": null, - "slipway": [["S", "M"]], - "slipways": null, - "slipway's": null, - "slither": [["D", "S", "G"]], - "slithered": null, - "slithers": null, - "slithering": null, - "slithery": null, - "slit": [["S", "M"]], - "slits": null, - "slit's": null, - "slitted": null, - "slitter": [["S"]], - "slitters": null, - "slitting": null, - "sliver": [["G", "S", "D", "M"]], - "slivering": null, - "slivers": null, - "slivered": null, - "sliver's": null, - "slivery": null, - "Sloane": [["M"]], - "Sloane's": null, - "Sloan": [["M"]], - "Sloan's": null, - "slobber": [["S", "D", "G"]], - "slobbers": null, - "slobbered": null, - "slobbering": null, - "slobbery": null, - "slob": [["M", "S"]], - "slob's": null, - "slobs": null, - "Slocum": [["M"]], - "Slocum's": null, - "sloe": [["M", "S"]], - "sloe's": null, - "sloes": null, - "sloganeer": [["M", "G"]], - "sloganeer's": null, - "sloganeering": null, - "slogan": [["M", "S"]], - "slogan's": null, - "slogans": null, - "slogged": null, - "slogging": null, - "slog": [["S"]], - "slogs": null, - "sloop": [["S", "M"]], - "sloops": null, - "sloop's": null, - "slop": [["D", "R", "S", "G", "Z"]], - "sloped": [["U"]], - "sloper": null, - "slops": null, - "sloping": null, - "slopers": null, - "unsloped": null, - "slope": [["S"]], - "slopes": null, - "slopped": null, - "sloppily": null, - "sloppiness": [["S", "M"]], - "sloppinesses": null, - "sloppiness's": null, - "slopping": null, - "sloppy": [["R", "T", "P"]], - "sloppier": null, - "sloppiest": null, - "slosh": [["G", "S", "D", "M"]], - "sloshing": null, - "sloshes": null, - "sloshed": null, - "slosh's": null, - "slothfulness": [["M", "S"]], - "slothfulness's": null, - "slothfulnesses": null, - "slothful": [["P", "Y"]], - "slothfully": null, - "sloth": [["G", "D", "M"]], - "slothing": null, - "slothed": null, - "sloth's": null, - "sloths": null, - "slot": [["M", "S"]], - "slot's": null, - "slots": null, - "slotted": null, - "slotting": null, - "slouch": [["D", "R", "S", "Z", "G"]], - "slouched": null, - "sloucher": [["M"]], - "slouches": null, - "slouchers": null, - "slouching": null, - "sloucher's": null, - "slouchy": [["R", "T"]], - "slouchier": null, - "slouchiest": null, - "slough": [["G", "M", "D"]], - "sloughing": null, - "slough's": null, - "sloughed": null, - "sloughs": null, - "Slovakia": [["M"]], - "Slovakia's": null, - "Slovakian": [["S"]], - "Slovakians": null, - "Slovak": [["S"]], - "Slovaks": null, - "Slovene": [["S"]], - "Slovenes": null, - "Slovenia": [["M"]], - "Slovenia's": null, - "Slovenian": [["S"]], - "Slovenians": null, - "slovenliness": [["S", "M"]], - "slovenlinesses": null, - "slovenliness's": null, - "slovenly": [["T", "R", "P"]], - "slovenliest": null, - "slovenlier": null, - "sloven": [["Y", "M", "S"]], - "sloven's": null, - "slovens": null, - "slowcoaches": null, - "slowdown": [["M", "S"]], - "slowdown's": null, - "slowdowns": null, - "slowish": null, - "slowness": [["M", "S"]], - "slowness's": null, - "slownesses": null, - "slow": [["P", "G", "T", "Y", "D", "R", "S"]], - "slowing": null, - "slowest": null, - "slowly": null, - "slowed": null, - "slower": null, - "slows": null, - "slowpoke": [["M", "S"]], - "slowpoke's": null, - "slowpokes": null, - "SLR": null, - "sludge": [["S", "D", "G", "M"]], - "sludges": null, - "sludged": null, - "sludging": null, - "sludge's": null, - "sludgy": [["T", "R"]], - "sludgiest": null, - "sludgier": null, - "slue": [["M", "G", "D", "S"]], - "slue's": null, - "sluing": null, - "slued": null, - "slues": null, - "sluggard": [["M", "S"]], - "sluggard's": null, - "sluggards": null, - "slugged": null, - "slugger": [["S", "M"]], - "sluggers": null, - "slugger's": null, - "slugging": null, - "sluggishness": [["S", "M"]], - "sluggishnesses": null, - "sluggishness's": null, - "sluggish": [["Y", "P"]], - "sluggishly": null, - "slug": [["M", "S"]], - "slug's": null, - "slugs": null, - "sluice": [["S", "D", "G", "M"]], - "sluices": null, - "sluiced": null, - "sluicing": null, - "sluice's": null, - "slumberer": [["M"]], - "slumberer's": null, - "slumber": [["M", "D", "R", "G", "S"]], - "slumber's": null, - "slumbered": null, - "slumbering": null, - "slumbers": null, - "slumberous": null, - "slumlord": [["M", "S"]], - "slumlord's": null, - "slumlords": null, - "slummed": null, - "slummer": null, - "slumming": null, - "slum": [["M", "S"]], - "slum's": null, - "slums": null, - "slummy": [["T", "R"]], - "slummiest": null, - "slummier": null, - "slump": [["D", "S", "G"]], - "slumped": null, - "slumps": null, - "slumping": null, - "slung": [["U"]], - "unslung": null, - "slunk": null, - "slur": [["M", "S"]], - "slur's": null, - "slurs": null, - "slurp": [["G", "S", "D"]], - "slurping": null, - "slurps": null, - "slurped": null, - "slurred": null, - "slurried": [["M"]], - "slurried's": null, - "slurring": null, - "slurrying": [["M"]], - "slurrying's": null, - "slurry": [["M", "G", "D", "S"]], - "slurry's": null, - "slurries": null, - "slushiness": [["S", "M"]], - "slushinesses": null, - "slushiness's": null, - "slush": [["S", "D", "M", "G"]], - "slushes": null, - "slushed": null, - "slush's": null, - "slushing": null, - "slushy": [["R", "T", "P"]], - "slushier": null, - "slushiest": null, - "slut": [["M", "S"]], - "slut's": null, - "sluts": null, - "sluttish": null, - "slutty": [["T", "R"]], - "sluttiest": null, - "sluttier": null, - "Sly": [["M"]], - "Sly's": null, - "slyness": [["M", "S"]], - "slyness's": null, - "slynesses": null, - "sly": [["R", "T", "Y"]], - "slier": null, - "sliest": null, - "slyly": null, - "smacker": [["M"]], - "smacker's": null, - "smack": [["S", "M", "R", "D", "G", "Z"]], - "smacks": null, - "smack's": null, - "smacked": null, - "smacking": null, - "smackers": null, - "smallholders": null, - "smallholding": [["M", "S"]], - "smallholding's": null, - "smallholdings": null, - "smallish": null, - "Small": [["M"]], - "Small's": null, - "smallness": [["S"]], - "smallnesses": null, - "smallpox": [["S", "M"]], - "smallpoxes": null, - "smallpox's": null, - "small": [["S", "G", "T", "R", "D", "P"]], - "smalls": null, - "smalling": null, - "smallest": null, - "smaller": null, - "smalled": null, - "smalltalk": null, - "smalltime": null, - "Smallwood": [["M"]], - "Smallwood's": null, - "smarmy": [["R", "T"]], - "smarmier": null, - "smarmiest": null, - "smarten": [["G", "D"]], - "smartening": null, - "smartened": null, - "smartness": [["S"]], - "smartnesses": null, - "smartypants": null, - "smart": [["Y", "R", "D", "N", "S", "G", "T", "X", "P"]], - "smartly": null, - "smarter": null, - "smarted": null, - "smarts": null, - "smarting": null, - "smartest": null, - "smartens": null, - "smasher": [["M"]], - "smasher's": null, - "smash": [["G", "Z", "R", "S", "D"]], - "smashing": [["Y"]], - "smashers": null, - "smashes": null, - "smashed": null, - "smashingly": null, - "smashup": [["S"]], - "smashups": null, - "smattering": [["S", "M"]], - "smatterings": null, - "smattering's": null, - "smearer": [["M"]], - "smearer's": null, - "smear": [["G", "R", "D", "S"]], - "smearing": null, - "smeared": null, - "smears": null, - "smeary": [["T", "R"]], - "smeariest": null, - "smearier": null, - "smeller": [["M"]], - "smeller's": null, - "smelliness": [["M", "S"]], - "smelliness's": null, - "smellinesses": null, - "smell": [["S", "B", "R", "D", "G"]], - "smells": null, - "smellable": null, - "smelled": null, - "smelling": null, - "smelly": [["T", "R", "P"]], - "smelliest": null, - "smellier": null, - "smelter": [["M"]], - "smelter's": null, - "smelt": [["S", "R", "D", "G", "Z"]], - "smelts": null, - "smelted": null, - "smelting": null, - "smelters": null, - "Smetana": [["M"]], - "Smetana's": null, - "smidgen": [["M", "S"]], - "smidgen's": null, - "smidgens": null, - "smilax": [["M", "S"]], - "smilax's": null, - "smilaxes": null, - "smile": [["G", "M", "D", "S", "R"]], - "smiling": [["U", "Y"]], - "smile's": null, - "smiled": null, - "smiles": null, - "smiler": null, - "smiley": [["M"]], - "smiley's": null, - "smilies": null, - "unsmiling": null, - "unsmilingly": null, - "smilingly": null, - "smirch": [["S", "D", "G"]], - "smirches": null, - "smirched": null, - "smirching": null, - "smirk": [["G", "S", "M", "D"]], - "smirking": null, - "smirks": null, - "smirk's": null, - "smirked": null, - "Smirnoff": [["M"]], - "Smirnoff's": null, - "smite": [["G", "S", "R"]], - "smiting": null, - "smites": null, - "smiter": [["M"]], - "smiter's": null, - "smith": [["D", "M", "G"]], - "smithed": null, - "smith's": null, - "smithing": null, - "smithereens": null, - "Smithfield": [["M"]], - "Smithfield's": null, - "Smith": [["M"]], - "Smith's": null, - "smiths": null, - "Smithsonian": [["M"]], - "Smithsonian's": null, - "Smithson": [["M"]], - "Smithson's": null, - "Smithtown": [["M"]], - "Smithtown's": null, - "smithy": [["S", "M"]], - "smithies": null, - "smithy's": null, - "smitten": null, - "Smitty": [["M"]], - "Smitty's": null, - "Sm": [["M"]], - "Sm's": null, - "smocking": [["M"]], - "smocking's": null, - "smock": [["S", "G", "M", "D", "J"]], - "smocks": null, - "smock's": null, - "smocked": null, - "smockings": null, - "smoggy": [["T", "R"]], - "smoggiest": null, - "smoggier": null, - "smog": [["S", "M"]], - "smogs": null, - "smog's": null, - "smoke": [["G", "Z", "M", "D", "S", "R", "B", "J"]], - "smoking": [["M"]], - "smokers": null, - "smoke's": null, - "smoked": null, - "smokes": null, - "smoker": [["M"]], - "smokable": null, - "smokings": null, - "smokehouse": [["M", "S"]], - "smokehouse's": null, - "smokehouses": null, - "smokeless": null, - "smoker's": null, - "smokescreen": [["S"]], - "smokescreens": null, - "smokestack": [["M", "S"]], - "smokestack's": null, - "smokestacks": null, - "Smokey": [["M"]], - "Smokey's": null, - "smokiness": [["S"]], - "smokinesses": null, - "smoking's": null, - "smoky": [["R", "S", "P", "T"]], - "smokier": null, - "smokies": null, - "smokiest": null, - "smoldering": [["Y"]], - "smolderingly": null, - "smolder": [["S", "G", "D"]], - "smolders": null, - "smoldered": null, - "Smolensk": [["M"]], - "Smolensk's": null, - "Smollett": [["M"]], - "Smollett's": null, - "smooch": [["S", "D", "G"]], - "smooches": null, - "smooched": null, - "smooching": null, - "smoothen": [["D", "G"]], - "smoothened": null, - "smoothening": null, - "smoother": [["M"]], - "smoother's": null, - "smoothie": [["S", "M"]], - "smoothies": null, - "smoothie's": null, - "smoothness": [["M", "S"]], - "smoothness's": null, - "smoothnesses": null, - "smooths": null, - "smooth": [["T", "Z", "G", "P", "R", "D", "N", "Y"]], - "smoothest": null, - "smoothers": null, - "smoothing": null, - "smoothed": null, - "smoothly": null, - "sm�rg�sbord": [["S", "M"]], - "sm�rg�sbords": null, - "sm�rg�sbord's": null, - "smote": null, - "smother": [["G", "S", "D"]], - "smothering": null, - "smothers": null, - "smothered": null, - "SMSA": [["M", "S"]], - "SMSA's": null, - "SMSAs": null, - "SMTP": null, - "Smucker": [["M"]], - "Smucker's": null, - "smudge": [["G", "S", "D"]], - "smudging": null, - "smudges": null, - "smudged": null, - "smudginess": [["M"]], - "smudginess's": null, - "smudgy": [["T", "R", "P"]], - "smudgiest": null, - "smudgier": null, - "smugged": null, - "smugger": null, - "smuggest": null, - "smugging": null, - "smuggle": [["J", "Z", "G", "S", "R", "D"]], - "smugglings": null, - "smugglers": null, - "smuggling": null, - "smuggles": null, - "smuggler": [["M"]], - "smuggled": null, - "smuggler's": null, - "smugness": [["M", "S"]], - "smugness's": null, - "smugnesses": null, - "smug": [["Y", "S", "P"]], - "smugly": null, - "smugs": null, - "smut": [["S", "M"]], - "smuts": null, - "smut's": null, - "Smuts": [["M"]], - "Smuts's": null, - "smutted": null, - "smuttiness": [["S", "M"]], - "smuttinesses": null, - "smuttiness's": null, - "smutting": null, - "smutty": [["T", "R", "P"]], - "smuttiest": null, - "smuttier": null, - "Smyrna": [["M"]], - "Smyrna's": null, - "snack": [["S", "G", "M", "D"]], - "snacks": null, - "snacking": null, - "snack's": null, - "snacked": null, - "snaffle": [["G", "D", "S", "M"]], - "snaffling": null, - "snaffled": null, - "snaffles": null, - "snaffle's": null, - "snafu": [["D", "M", "S", "G"]], - "snafued": null, - "snafu's": null, - "snafus": null, - "snafuing": null, - "snagged": null, - "snagging": null, - "snag": [["M", "S"]], - "snag's": null, - "snags": null, - "snail": [["G", "S", "D", "M"]], - "snailing": null, - "snails": null, - "snailed": null, - "snail's": null, - "Snake": null, - "snakebird": [["M"]], - "snakebird's": null, - "snakebite": [["M", "S"]], - "snakebite's": null, - "snakebites": null, - "snake": [["D", "S", "G", "M"]], - "snaked": null, - "snakes": null, - "snaking": null, - "snake's": null, - "snakelike": null, - "snakeroot": [["M"]], - "snakeroot's": null, - "snaky": [["T", "R"]], - "snakiest": null, - "snakier": null, - "snapback": [["M"]], - "snapback's": null, - "snapdragon": [["M", "S"]], - "snapdragon's": null, - "snapdragons": null, - "snapped": [["U"]], - "unsnapped": null, - "snapper": [["S", "M"]], - "snappers": null, - "snapper's": null, - "snappily": null, - "snappiness": [["S", "M"]], - "snappinesses": null, - "snappiness's": null, - "snapping": [["U"]], - "unsnapping": null, - "snappishness": [["S", "M"]], - "snappishnesses": null, - "snappishness's": null, - "snappish": [["P", "Y"]], - "snappishly": null, - "snappy": [["P", "T", "R"]], - "snappiest": null, - "snappier": null, - "snapshot": [["M", "S"]], - "snapshot's": null, - "snapshots": null, - "snapshotted": null, - "snapshotting": null, - "snap": [["U", "S"]], - "unsnap": null, - "unsnaps": null, - "snaps": null, - "snare": [["D", "S", "R", "G", "M"]], - "snared": null, - "snares": null, - "snarer": [["M"]], - "snaring": null, - "snare's": null, - "snarer's": null, - "snarf": [["J", "S", "G", "D"]], - "snarfings": null, - "snarfs": null, - "snarfing": null, - "snarfed": null, - "snarler": [["M"]], - "snarler's": null, - "snarling": [["Y"]], - "snarlingly": null, - "snarl": [["U", "G", "S", "D"]], - "unsnarl": null, - "unsnarling": null, - "unsnarls": null, - "unsnarled": null, - "snarls": null, - "snarled": null, - "snarly": [["R", "T"]], - "snarlier": null, - "snarliest": null, - "snatch": [["D", "R", "S", "Z", "G"]], - "snatched": null, - "snatcher": [["M"]], - "snatches": null, - "snatchers": null, - "snatching": null, - "snatcher's": null, - "snazzily": null, - "snazzy": [["T", "R"]], - "snazziest": null, - "snazzier": null, - "Snead": [["M"]], - "Snead's": null, - "sneaker": [["M", "D"]], - "sneaker's": null, - "sneakered": null, - "sneakily": null, - "sneakiness": [["S", "M"]], - "sneakinesses": null, - "sneakiness's": null, - "sneaking": [["Y"]], - "sneakingly": null, - "sneak": [["R", "D", "G", "Z", "S"]], - "sneaked": null, - "sneakers": null, - "sneaks": null, - "sneaky": [["P", "R", "T"]], - "sneakier": null, - "sneakiest": null, - "Sneed": [["M"]], - "Sneed's": null, - "sneerer": [["M"]], - "sneerer's": null, - "sneer": [["G", "M", "R", "D", "J", "S"]], - "sneering": [["Y"]], - "sneer's": null, - "sneered": null, - "sneerings": null, - "sneers": null, - "sneeringly": null, - "sneeze": [["S", "R", "D", "G"]], - "sneezes": null, - "sneezer": null, - "sneezed": null, - "sneezing": null, - "Snell": [["M"]], - "Snell's": null, - "snicker": [["G", "M", "R", "D"]], - "snickering": null, - "snicker's": null, - "snickerer": null, - "snickered": null, - "snick": [["M", "R", "Z"]], - "snick's": null, - "snickers": null, - "snideness": [["M"]], - "snideness's": null, - "Snider": [["M"]], - "Snider's": null, - "snide": [["Y", "T", "S", "R", "P"]], - "snidely": null, - "snidest": null, - "snides": null, - "snider": null, - "sniffer": [["M"]], - "sniffer's": null, - "sniff": [["G", "Z", "S", "R", "D"]], - "sniffing": null, - "sniffers": null, - "sniffs": null, - "sniffed": null, - "sniffle": [["G", "D", "R", "S"]], - "sniffling": null, - "sniffled": null, - "sniffler": [["M"]], - "sniffles": [["M"]], - "sniffler's": null, - "sniffles's": null, - "snifter": [["M", "D", "S", "G"]], - "snifter's": null, - "sniftered": null, - "snifters": null, - "sniftering": null, - "snigger's": null, - "sniper": [["M"]], - "sniper's": null, - "snipe": [["S", "M"]], - "snipes": null, - "snipe's": null, - "snipped": null, - "snipper": [["S", "M"]], - "snippers": null, - "snipper's": null, - "snippet": [["S", "M"]], - "snippets": null, - "snippet's": null, - "snipping": null, - "snippy": [["R", "T"]], - "snippier": null, - "snippiest": null, - "snip": [["S", "G", "D", "R", "Z"]], - "snips": null, - "sniping": null, - "sniped": null, - "snipers": null, - "snitch": [["G", "D", "S"]], - "snitching": null, - "snitched": null, - "snitches": null, - "snit": [["S", "M"]], - "snits": null, - "snit's": null, - "sniveler": [["M"]], - "sniveler's": null, - "snivel": [["J", "S", "Z", "G", "D", "R"]], - "snivelings": null, - "snivels": null, - "snivelers": null, - "sniveling": null, - "sniveled": null, - "Sn": [["M"]], - "Sn's": null, - "snobbery": [["S", "M"]], - "snobberies": null, - "snobbery's": null, - "snobbishness": [["S"]], - "snobbishnesses": null, - "snobbish": [["Y", "P"]], - "snobbishly": null, - "snobby": [["R", "T"]], - "snobbier": null, - "snobbiest": null, - "snob": [["M", "S"]], - "snob's": null, - "snobs": null, - "Snodgrass": [["M"]], - "Snodgrass's": null, - "snood": [["S", "G", "D", "M"]], - "snoods": null, - "snooding": null, - "snooded": null, - "snood's": null, - "snooker": [["G", "M", "D"]], - "snookering": null, - "snooker's": null, - "snookered": null, - "snook": [["S", "M", "R", "Z"]], - "snooks": null, - "snook's": null, - "snookers": null, - "snooper": [["M"]], - "snooper's": null, - "snoop": [["S", "R", "D", "G", "Z"]], - "snoops": null, - "snooped": null, - "snooping": null, - "snoopers": null, - "Snoopy": [["M"]], - "Snoopy's": null, - "snoopy": [["R", "T"]], - "snoopier": null, - "snoopiest": null, - "snootily": null, - "snootiness": [["M", "S"]], - "snootiness's": null, - "snootinesses": null, - "snoot": [["S", "D", "M", "G"]], - "snoots": null, - "snooted": null, - "snoot's": null, - "snooting": null, - "snooty": [["T", "R", "P"]], - "snootiest": null, - "snootier": null, - "snooze": [["G", "S", "D"]], - "snoozing": null, - "snoozes": null, - "snoozed": null, - "snore": [["D", "S", "R", "G", "Z"]], - "snored": null, - "snores": null, - "snorer": null, - "snoring": null, - "snorers": null, - "snorkel": [["Z", "G", "S", "R", "D", "M"]], - "snorkelers": null, - "snorkeling": null, - "snorkels": null, - "snorkeler": null, - "snorkeled": null, - "snorkel's": null, - "snorter": [["M"]], - "snorter's": null, - "snort": [["G", "S", "Z", "R", "D"]], - "snorting": null, - "snorts": null, - "snorters": null, - "snorted": null, - "snot": [["M", "S"]], - "snot's": null, - "snots": null, - "snotted": null, - "snottily": null, - "snottiness": [["S", "M"]], - "snottinesses": null, - "snottiness's": null, - "snotting": null, - "snotty": [["T", "R", "P"]], - "snottiest": null, - "snottier": null, - "snout": [["S", "G", "D", "M"]], - "snouts": null, - "snouting": null, - "snouted": null, - "snout's": null, - "snowball": [["S", "D", "M", "G"]], - "snowballs": null, - "snowballed": null, - "snowball's": null, - "snowballing": null, - "snowbank": [["S", "M"]], - "snowbanks": null, - "snowbank's": null, - "Snowbelt": [["S", "M"]], - "Snowbelts": null, - "Snowbelt's": null, - "snowbird": [["S", "M"]], - "snowbirds": null, - "snowbird's": null, - "snowblower": [["S"]], - "snowblowers": null, - "snowboard": [["G", "Z", "D", "R", "J", "S"]], - "snowboarding": null, - "snowboarders": null, - "snowboarded": null, - "snowboarder": null, - "snowboardings": null, - "snowboards": null, - "snowbound": null, - "snowcapped": null, - "snowdrift": [["M", "S"]], - "snowdrift's": null, - "snowdrifts": null, - "snowdrop": [["M", "S"]], - "snowdrop's": null, - "snowdrops": null, - "snowfall": [["M", "S"]], - "snowfall's": null, - "snowfalls": null, - "snowfield": [["M", "S"]], - "snowfield's": null, - "snowfields": null, - "snowflake": [["M", "S"]], - "snowflake's": null, - "snowflakes": null, - "snow": [["G", "D", "M", "S"]], - "snowing": null, - "snowed": null, - "snow's": null, - "snows": null, - "snowily": null, - "snowiness": [["M", "S"]], - "snowiness's": null, - "snowinesses": null, - "Snow": [["M"]], - "Snow's": null, - "snowman": [["M"]], - "snowman's": null, - "snowmen": null, - "snowmobile": [["G", "M", "D", "R", "S"]], - "snowmobiling": null, - "snowmobile's": null, - "snowmobiled": null, - "snowmobiler": null, - "snowmobiles": null, - "snowplough": [["M"]], - "snowplough's": null, - "snowploughs": null, - "snowplow": [["S", "M", "G", "D"]], - "snowplows": null, - "snowplow's": null, - "snowplowing": null, - "snowplowed": null, - "snowshed": null, - "snowshoeing": null, - "snowshoe": [["M", "R", "S"]], - "snowshoe's": null, - "snowshoer": [["M"]], - "snowshoes": null, - "snowshoer's": null, - "snowstorm": [["M", "S"]], - "snowstorm's": null, - "snowstorms": null, - "snowsuit": [["S"]], - "snowsuits": null, - "snowy": [["R", "T", "P"]], - "snowier": null, - "snowiest": null, - "snubbed": null, - "snubber": null, - "snubbing": null, - "snub": [["S", "P"]], - "snubs": null, - "snubness": null, - "snuffbox": [["S", "M"]], - "snuffboxes": null, - "snuffbox's": null, - "snuffer": [["M"]], - "snuffer's": null, - "snuff": [["G", "Z", "S", "Y", "R", "D"]], - "snuffing": null, - "snuffers": null, - "snuffs": null, - "snuffly": [["R", "T"]], - "snuffed": null, - "snuffle": [["G", "D", "S", "R"]], - "snuffling": null, - "snuffled": null, - "snuffles": null, - "snuffler": [["M"]], - "snuffler's": null, - "snufflier": null, - "snuffliest": null, - "snugged": null, - "snugger": null, - "snuggest": null, - "snugging": null, - "snuggle": [["G", "D", "S"]], - "snuggling": null, - "snuggled": null, - "snuggles": null, - "snuggly": null, - "snugness": [["M", "S"]], - "snugness's": null, - "snugnesses": null, - "snug": [["S", "Y", "P"]], - "snugs": null, - "snugly": null, - "Snyder": [["M"]], - "Snyder's": null, - "so": null, - "SO": null, - "soaker": [["M"]], - "soaker's": null, - "soak": [["G", "D", "R", "S", "J"]], - "soaking": null, - "soaked": null, - "soaks": null, - "soakings": null, - "soapbox": [["D", "S", "M", "G"]], - "soapboxed": null, - "soapboxes": null, - "soapbox's": null, - "soapboxing": null, - "soapiness": [["S"]], - "soapinesses": null, - "soap": [["M", "D", "R", "G", "S"]], - "soap's": null, - "soaped": null, - "soaper": null, - "soaping": null, - "soaps": null, - "soapstone": [["M", "S"]], - "soapstone's": null, - "soapstones": null, - "soapsud": [["S"]], - "soapsuds": null, - "soapy": [["R", "P", "T"]], - "soapier": null, - "soapiest": null, - "soar": [["D", "R", "J", "S", "G"]], - "soared": null, - "soarer": [["M"]], - "soarings": null, - "soars": null, - "soaring": [["Y"]], - "soarer's": null, - "soaringly": null, - "sobbed": null, - "sobbing": [["Y"]], - "sobbingly": null, - "soberer": [["M"]], - "soberer's": null, - "soberness": [["S", "M"]], - "sobernesses": null, - "soberness's": null, - "sober": [["P", "G", "T", "Y", "R", "D"]], - "sobering": null, - "soberest": null, - "soberly": null, - "sobered": null, - "sobriety": [["S", "I", "M"]], - "sobrieties": null, - "insobrieties": null, - "insobriety": null, - "insobriety's": null, - "sobriety's": null, - "sobriquet": [["M", "S"]], - "sobriquet's": null, - "sobriquets": null, - "sob": [["S", "Z", "R"]], - "sobs": null, - "sobers": null, - "Soc": null, - "soccer": [["M", "S"]], - "soccer's": null, - "soccers": null, - "sociabilities": null, - "sociability": [["I", "M"]], - "insociability": null, - "insociability's": null, - "sociability's": null, - "sociable": [["S"]], - "sociables": null, - "sociably": [["I", "U"]], - "insociably": null, - "unsociably": null, - "socialism": [["S", "M"]], - "socialisms": null, - "socialism's": null, - "socialistic": null, - "socialist": [["S", "M"]], - "socialists": null, - "socialist's": null, - "socialite": [["S", "M"]], - "socialites": null, - "socialite's": null, - "sociality": [["M"]], - "sociality's": null, - "socialization": [["S", "M"]], - "socializations": null, - "socialization's": null, - "socialized": [["U"]], - "unsocialized": null, - "socializer": [["M"]], - "socializer's": null, - "socialize": [["R", "S", "D", "G"]], - "socializes": null, - "socializing": null, - "socially": [["U"]], - "unsocially": null, - "social": [["S", "Y"]], - "socials": null, - "societal": [["Y"]], - "societally": null, - "society": [["M", "S"]], - "society's": null, - "societies": null, - "socio": null, - "sociobiology": [["M"]], - "sociobiology's": null, - "sociocultural": [["Y"]], - "socioculturally": null, - "sociodemographic": null, - "socioeconomically": null, - "socioeconomic": [["S"]], - "socioeconomics": null, - "sociolinguistics": [["M"]], - "sociolinguistics's": null, - "sociological": [["M", "Y"]], - "sociological's": null, - "sociologically": null, - "sociologist": [["S", "M"]], - "sociologists": null, - "sociologist's": null, - "sociology": [["S", "M"]], - "sociologies": null, - "sociology's": null, - "sociometric": null, - "sociometry": [["M"]], - "sociometry's": null, - "sociopath": [["M"]], - "sociopath's": null, - "sociopaths": null, - "socket": [["S", "M", "D", "G"]], - "sockets": null, - "socket's": null, - "socketed": null, - "socketing": null, - "sock": [["G", "D", "M", "S"]], - "socking": null, - "socked": null, - "sock's": null, - "socks": null, - "Socorro": [["M"]], - "Socorro's": null, - "Socrates": [["M"]], - "Socrates's": null, - "Socratic": [["S"]], - "Socratics": null, - "soc": [["S"]], - "socs": null, - "soda": [["S", "M"]], - "sodas": null, - "soda's": null, - "sodded": null, - "sodden": [["D", "Y", "P", "S", "G"]], - "soddened": null, - "soddenly": null, - "soddenness": [["M"]], - "soddens": null, - "soddening": null, - "soddenness's": null, - "sodding": null, - "Soddy": [["M"]], - "Soddy's": null, - "sodium": [["M", "S"]], - "sodium's": null, - "sodiums": null, - "sod": [["M", "S"]], - "sod's": null, - "sods": null, - "sodomite": [["M", "S"]], - "sodomite's": null, - "sodomites": null, - "sodomize": [["G", "D", "S"]], - "sodomizing": null, - "sodomized": null, - "sodomizes": null, - "Sodom": [["M"]], - "Sodom's": null, - "sodomy": [["S", "M"]], - "sodomies": null, - "sodomy's": null, - "soever": null, - "sofa": [["S", "M"]], - "sofas": null, - "sofa's": null, - "Sofia": [["M"]], - "Sofia's": null, - "Sofie": [["M"]], - "Sofie's": null, - "softball": [["M", "S"]], - "softball's": null, - "softballs": null, - "softbound": null, - "softener": [["M"]], - "softener's": null, - "soften": [["Z", "G", "R", "D"]], - "softeners": null, - "softening": null, - "softened": null, - "softhearted": null, - "softie's": null, - "softness": [["M", "S"]], - "softness's": null, - "softnesses": null, - "soft": [["S", "P", "X", "T", "Y", "N", "R"]], - "softs": null, - "softens": null, - "softest": null, - "softly": null, - "softer": null, - "software": [["M", "S"]], - "software's": null, - "softwares": null, - "softwood": [["S", "M"]], - "softwoods": null, - "softwood's": null, - "softy": [["S", "M"]], - "softies": null, - "softy's": null, - "soggily": null, - "sogginess": [["S"]], - "sogginesses": null, - "soggy": [["R", "P", "T"]], - "soggier": null, - "soggiest": null, - "Soho": [["M"]], - "Soho's": null, - "soign�": null, - "soiled": [["U"]], - "unsoiled": null, - "soil": [["S", "G", "M", "D"]], - "soils": null, - "soiling": null, - "soil's": null, - "soir�e": [["S", "M"]], - "soir�es": null, - "soir�e's": null, - "sojourn": [["R", "D", "Z", "G", "S", "M"]], - "sojourner": null, - "sojourned": null, - "sojourners": null, - "sojourning": null, - "sojourns": null, - "sojourn's": null, - "solace": [["G", "M", "S", "R", "D"]], - "solacing": null, - "solace's": null, - "solaces": null, - "solacer": [["M"]], - "solaced": null, - "solacer's": null, - "solaria": null, - "solarium": [["M"]], - "solarium's": null, - "solar": [["S"]], - "solars": null, - "solder": [["R", "D", "M", "S", "Z", "G"]], - "solderer": null, - "soldered": null, - "solder's": null, - "solders": null, - "solderers": null, - "soldering": null, - "soldier": [["M", "D", "Y", "S", "G"]], - "soldier's": null, - "soldiered": null, - "soldierly": null, - "soldiers": null, - "soldiering": null, - "soldiery": [["M", "S"]], - "soldiery's": null, - "soldieries": null, - "sold": [["R", "U"]], - "unsolder": null, - "unsold": null, - "solecism": [["M", "S"]], - "solecism's": null, - "solecisms": null, - "soled": [["F", "A"]], - "resoled": null, - "solemness": null, - "solemnify": [["G", "S", "D"]], - "solemnifying": null, - "solemnifies": null, - "solemnified": null, - "solemnity": [["M", "S"]], - "solemnity's": null, - "solemnities": null, - "solemnization": [["S", "M"]], - "solemnizations": null, - "solemnization's": null, - "solemnize": [["G", "S", "D"]], - "solemnizing": null, - "solemnizes": null, - "solemnized": null, - "solemnness": [["S", "M"]], - "solemnnesses": null, - "solemnness's": null, - "solemn": [["P", "T", "R", "Y"]], - "solemnest": null, - "solemner": null, - "solemnly": null, - "solenoid": [["M", "S"]], - "solenoid's": null, - "solenoids": null, - "soler": [["F"]], - "soles": [["I", "F", "A"]], - "insoles": null, - "consoles": null, - "resoles": null, - "sole": [["Y", "S", "P"]], - "solely": null, - "soleness": null, - "sol": [["G", "S", "M", "D", "R"]], - "soling": [["N", "M"]], - "sols": null, - "sol's": null, - "solicitation": [["S"]], - "solicitations": null, - "solicited": [["U"]], - "unsolicited": null, - "solicitor": [["M", "S"]], - "solicitor's": null, - "solicitors": null, - "solicitousness": [["S"]], - "solicitousnesses": null, - "solicitous": [["Y", "P"]], - "solicitously": null, - "solicit": [["S", "D", "G"]], - "solicits": null, - "soliciting": null, - "solicitude": [["M", "S"]], - "solicitude's": null, - "solicitudes": null, - "solidarity": [["M", "S"]], - "solidarity's": null, - "solidarities": null, - "solidi": null, - "solidification": [["M"]], - "solidification's": null, - "solidify": [["N", "X", "S", "D", "G"]], - "solidifications": null, - "solidifies": null, - "solidified": null, - "solidifying": null, - "solidity": [["S"]], - "solidities": null, - "solidness": [["S", "M"]], - "solidnesses": null, - "solidness's": null, - "solid": [["S", "T", "Y", "R", "P"]], - "solids": null, - "solidest": null, - "solidly": null, - "solider": null, - "solidus": [["M"]], - "solidus's": null, - "soliloquies": null, - "soliloquize": [["D", "S", "G"]], - "soliloquized": null, - "soliloquizes": null, - "soliloquizing": null, - "soliloquy": [["M"]], - "soliloquy's": null, - "solingen": null, - "soling's": null, - "solipsism": [["M", "S"]], - "solipsism's": null, - "solipsisms": null, - "solipsist": [["S"]], - "solipsists": null, - "Solis": [["M"]], - "Solis's": null, - "solitaire": [["S", "M"]], - "solitaires": null, - "solitaire's": null, - "solitary": [["S", "P"]], - "solitaries": null, - "solitariness": null, - "solitude": [["S", "M"]], - "solitudes": null, - "solitude's": null, - "Sollie": [["M"]], - "Sollie's": null, - "Solly": [["M"]], - "Solly's": null, - "Sol": [["M", "Y"]], - "Sol's": null, - "solo": [["D", "M", "S", "G"]], - "soloed": null, - "solo's": null, - "solos": null, - "soloing": null, - "soloist": [["S", "M"]], - "soloists": null, - "soloist's": null, - "Solomon": [["S", "M"]], - "Solomons": null, - "Solomon's": null, - "Solon": [["M"]], - "Solon's": null, - "Soloviev": [["M"]], - "Soloviev's": null, - "solstice": [["S", "M"]], - "solstices": null, - "solstice's": null, - "solubility": [["I", "M", "S"]], - "insolubility": null, - "insolubility's": null, - "insolubilities": null, - "solubility's": null, - "solubilities": null, - "soluble": [["S", "I"]], - "solubles": null, - "insolubles": null, - "solute": [["E", "N", "A", "X", "S"]], - "dissolution": null, - "dissolutions": null, - "dissolutes": null, - "solution": [["A", "M", "E"]], - "resolution": null, - "resolutions": null, - "resolutes": null, - "solutions": null, - "solutes": null, - "solute's": null, - "resolution's": null, - "solution's": null, - "dissolution's": null, - "solvable": [["U", "I"]], - "unsolvable": null, - "insolvable": null, - "solvating": null, - "solve": [["A", "B", "S", "R", "D", "Z", "G"]], - "resolve": null, - "resolves": null, - "resolver": null, - "resolvers": null, - "resolving": null, - "solves": [["E"]], - "solver": [["M", "E", "A"]], - "solved": [["E", "U"]], - "solvers": null, - "solving": [["E"]], - "unsolved": null, - "solvency": [["I", "M", "S"]], - "insolvency": null, - "insolvency's": null, - "insolvencies": null, - "solvency's": null, - "solvencies": null, - "solvent": [["I", "S"]], - "insolvent": null, - "insolvents": null, - "solvents": null, - "solvently": null, - "solvent's": null, - "solver's": null, - "dissolver's": null, - "resolver's": null, - "dissolver": null, - "Solzhenitsyn": [["M"]], - "Solzhenitsyn's": null, - "Somalia": [["M"]], - "Somalia's": null, - "Somalian": [["S"]], - "Somalians": null, - "Somali": [["M", "S"]], - "Somali's": null, - "Somalis": null, - "soma": [["M"]], - "soma's": null, - "somatic": null, - "somberness": [["S", "M"]], - "sombernesses": null, - "somberness's": null, - "somber": [["P", "Y"]], - "somberly": null, - "sombre": null, - "sombrero": [["S", "M"]], - "sombreros": null, - "sombrero's": null, - "somebody'll": null, - "somebody": [["S", "M"]], - "somebodies": null, - "somebody's": null, - "someday": null, - "somehow": null, - "someone'll": null, - "someone": [["S", "M"]], - "someones": null, - "someone's": null, - "someplace": [["M"]], - "someplace's": null, - "somersault": [["D", "S", "G", "M"]], - "somersaulted": null, - "somersaults": null, - "somersaulting": null, - "somersault's": null, - "Somerset": [["M"]], - "Somerset's": null, - "somerset": [["S"]], - "somersets": null, - "somersetted": null, - "somersetting": null, - "Somerville": [["M"]], - "Somerville's": null, - "something": [["S"]], - "somethings": null, - "sometime": [["S"]], - "sometimes": null, - "someway": [["S"]], - "someways": null, - "somewhat": [["S"]], - "somewhats": null, - "somewhere": [["S"]], - "somewheres": null, - "some": [["Z"]], - "somers": null, - "sommelier": [["S", "M"]], - "sommeliers": null, - "sommelier's": null, - "Somme": [["M"]], - "Somme's": null, - "somnambulism": [["S", "M"]], - "somnambulisms": null, - "somnambulism's": null, - "somnambulist": [["S", "M"]], - "somnambulists": null, - "somnambulist's": null, - "somnolence": [["M", "S"]], - "somnolence's": null, - "somnolences": null, - "somnolent": [["Y"]], - "somnolently": null, - "Somoza": [["M"]], - "Somoza's": null, - "sonar": [["S", "M"]], - "sonars": null, - "sonar's": null, - "sonata": [["M", "S"]], - "sonata's": null, - "sonatas": null, - "sonatina": [["S", "M"]], - "sonatinas": null, - "sonatina's": null, - "Sondheim": [["M"]], - "Sondheim's": null, - "Sondra": [["M"]], - "Sondra's": null, - "Sonenberg": [["M"]], - "Sonenberg's": null, - "songbag": null, - "songbird": [["S", "M"]], - "songbirds": null, - "songbird's": null, - "songbook": [["S"]], - "songbooks": null, - "songfest": [["M", "S"]], - "songfest's": null, - "songfests": null, - "songfulness": [["M"]], - "songfulness's": null, - "songful": [["Y", "P"]], - "songfully": null, - "Songhai": [["M"]], - "Songhai's": null, - "Songhua": [["M"]], - "Songhua's": null, - "song": [["M", "S"]], - "song's": null, - "songs": null, - "songster": [["M", "S"]], - "songster's": null, - "songsters": null, - "songstress": [["S", "M"]], - "songstresses": null, - "songstress's": null, - "songwriter": [["S", "M"]], - "songwriters": null, - "songwriter's": null, - "songwriting": null, - "Sonia": [["M"]], - "Sonia's": null, - "sonic": [["S"]], - "sonics": null, - "Sonja": [["M"]], - "Sonja's": null, - "Son": [["M"]], - "Son's": null, - "sonnet": [["M", "D", "S", "G"]], - "sonnet's": null, - "sonneted": null, - "sonnets": null, - "sonneting": null, - "Sonnie": [["M"]], - "Sonnie's": null, - "Sonni": [["M"]], - "Sonni's": null, - "Sonnnie": [["M"]], - "Sonnnie's": null, - "Sonny": [["M"]], - "Sonny's": null, - "sonny": [["S", "M"]], - "sonnies": null, - "sonny's": null, - "Sonoma": [["M"]], - "Sonoma's": null, - "Sonora": [["M"]], - "Sonora's": null, - "sonority": [["S"]], - "sonorities": null, - "sonorousness": [["S", "M"]], - "sonorousnesses": null, - "sonorousness's": null, - "sonorous": [["P", "Y"]], - "sonorously": null, - "son": [["S", "M", "Y"]], - "sons": null, - "son's": null, - "sonly": null, - "Sontag": [["M"]], - "Sontag's": null, - "sonuvabitch": null, - "Sonya": [["M"]], - "Sonya's": null, - "Sony": [["M"]], - "Sony's": null, - "soonish": null, - "soon": [["T", "R"]], - "soonest": null, - "sooner": null, - "soothe": null, - "soother": [["M"]], - "soother's": null, - "sooth": [["G", "Z", "T", "Y", "S", "R", "D", "M", "J"]], - "soothing": [["Y", "P"]], - "soothers": null, - "soothest": null, - "soothly": null, - "soothes": null, - "soothed": null, - "sooth's": null, - "soothings": null, - "soothingness": [["M"]], - "soothingness's": null, - "soothingly": null, - "sooths": null, - "soothsayer": [["M"]], - "soothsayer's": null, - "soothsay": [["J", "G", "Z", "R"]], - "soothsayings": null, - "soothsaying": null, - "soothsayers": null, - "soot": [["M", "G", "D", "S"]], - "soot's": null, - "sooting": null, - "sooted": null, - "soots": null, - "sooty": [["R", "T"]], - "sootier": null, - "sootiest": null, - "SOP": null, - "Sophey": [["M"]], - "Sophey's": null, - "Sophia": [["S", "M"]], - "Sophias": null, - "Sophia's": null, - "Sophie": [["M"]], - "Sophie's": null, - "Sophi": [["M"]], - "Sophi's": null, - "sophism": [["S", "M"]], - "sophisms": null, - "sophism's": null, - "sophister": [["M"]], - "sophister's": null, - "sophistical": null, - "sophisticatedly": null, - "sophisticated": [["U"]], - "unsophisticated": null, - "sophisticate": [["X", "N", "G", "D", "S"]], - "sophistications": null, - "sophistication": [["M", "U"]], - "sophisticating": null, - "sophisticates": null, - "sophistication's": null, - "unsophistication's": null, - "unsophistication": null, - "sophistic": [["S"]], - "sophistics": null, - "sophist": [["R", "M", "S"]], - "sophist's": null, - "sophists": null, - "sophistry": [["S", "M"]], - "sophistries": null, - "sophistry's": null, - "Sophoclean": null, - "Sophocles": [["M"]], - "Sophocles's": null, - "sophomore": [["S", "M"]], - "sophomores": null, - "sophomore's": null, - "sophomoric": null, - "Sophronia": [["M"]], - "Sophronia's": null, - "soporifically": null, - "soporific": [["S", "M"]], - "soporifics": null, - "soporific's": null, - "sopped": null, - "sopping": [["S"]], - "soppings": null, - "soppy": [["R", "T"]], - "soppier": null, - "soppiest": null, - "soprano": [["S", "M"]], - "sopranos": null, - "soprano's": null, - "sop": [["S", "M"]], - "sops": null, - "sop's": null, - "Sopwith": [["M"]], - "Sopwith's": null, - "sorbet": [["S", "M"]], - "sorbets": null, - "sorbet's": null, - "Sorbonne": [["M"]], - "Sorbonne's": null, - "sorcerer": [["M", "S"]], - "sorcerer's": null, - "sorcerers": null, - "sorceress": [["S"]], - "sorceresses": null, - "sorcery": [["M", "S"]], - "sorcery's": null, - "sorceries": null, - "Sorcha": [["M"]], - "Sorcha's": null, - "sordidness": [["S", "M"]], - "sordidnesses": null, - "sordidness's": null, - "sordid": [["P", "Y"]], - "sordidly": null, - "sorehead": [["S", "M"]], - "soreheads": null, - "sorehead's": null, - "soreness": [["S"]], - "sorenesses": null, - "Sorensen": [["M"]], - "Sorensen's": null, - "Sorenson": [["M"]], - "Sorenson's": null, - "sore": [["P", "Y", "T", "G", "D", "R", "S"]], - "sorely": null, - "sorest": null, - "soring": null, - "sored": null, - "sorer": null, - "sores": null, - "sorghum": [["M", "S"]], - "sorghum's": null, - "sorghums": null, - "sorority": [["M", "S"]], - "sorority's": null, - "sororities": null, - "sorrel": [["S", "M"]], - "sorrels": null, - "sorrel's": null, - "Sorrentine": [["M"]], - "Sorrentine's": null, - "sorrily": null, - "sorriness": [["S", "M"]], - "sorrinesses": null, - "sorriness's": null, - "sorrower": [["M"]], - "sorrower's": null, - "sorrowfulness": [["S", "M"]], - "sorrowfulnesses": null, - "sorrowfulness's": null, - "sorrowful": [["Y", "P"]], - "sorrowfully": null, - "sorrow": [["G", "R", "D", "M", "S"]], - "sorrowing": null, - "sorrowed": null, - "sorrow's": null, - "sorrows": null, - "sorry": [["P", "T", "S", "R"]], - "sorriest": null, - "sorries": null, - "sorrier": null, - "sorta": null, - "sortable": null, - "sorted": [["U"]], - "unsorted": null, - "sorter": [["M", "S"]], - "sorter's": null, - "sorters": null, - "sort": [["F", "S", "A", "G", "D"]], - "consort": null, - "consorts": null, - "consorting": null, - "consorted": null, - "sorts": null, - "resorts": null, - "resorting": null, - "resorted": null, - "sorting": null, - "sortieing": null, - "sortie": [["M", "S", "D"]], - "sortie's": null, - "sorties": null, - "sortied": null, - "sort's": null, - "sos": null, - "SOS": null, - "Sosa": [["M"]], - "Sosa's": null, - "Sosanna": [["M"]], - "Sosanna's": null, - "Soto": [["M"]], - "Soto's": null, - "sot": [["S", "M"]], - "sots": null, - "sot's": null, - "sottish": null, - "soubriquet's": null, - "souffl�": [["M", "S"]], - "souffl�'s": null, - "souffl�s": null, - "sough": [["D", "G"]], - "soughed": null, - "soughing": null, - "soughs": null, - "sought": [["U"]], - "unsought": null, - "soulfulness": [["M", "S"]], - "soulfulness's": null, - "soulfulnesses": null, - "soulful": [["Y", "P"]], - "soulfully": null, - "soulless": [["Y"]], - "soullessly": null, - "soul": [["M", "D", "S"]], - "soul's": null, - "souled": null, - "souls": null, - "sound": [["A", "U", "D"]], - "resounded": null, - "unsound": [["P", "T"]], - "unsounded": null, - "sounded": null, - "soundboard": [["M", "S"]], - "soundboard's": null, - "soundboards": null, - "sounders": null, - "sounder's": null, - "sounder": [["U"]], - "unsounder": null, - "soundest": null, - "sounding": [["A", "Y"]], - "resoundingly": null, - "soundingly": null, - "soundings": null, - "sounding's": null, - "soundless": [["Y"]], - "soundlessly": null, - "soundly": [["U"]], - "unsoundly": null, - "soundness": [["U", "M", "S"]], - "unsoundness": null, - "unsoundness's": null, - "unsoundnesses": null, - "soundness's": null, - "soundnesses": null, - "soundproof": [["G", "S", "D"]], - "soundproofing": [["M"]], - "soundproofs": null, - "soundproofed": null, - "soundproofing's": null, - "sound's": null, - "sounds": [["A"]], - "resounds": null, - "soundtrack": [["M", "S"]], - "soundtrack's": null, - "soundtracks": null, - "soup�on": [["S", "M"]], - "soup�ons": null, - "soup�on's": null, - "soup": [["G", "M", "D", "S"]], - "souping": null, - "soup's": null, - "souped": null, - "soups": null, - "Souphanouvong": [["M"]], - "Souphanouvong's": null, - "soupy": [["R", "T"]], - "soupier": null, - "soupiest": null, - "source": [["A", "S", "D", "M", "G"]], - "resource": null, - "resources": null, - "resourced": null, - "resource's": null, - "resourcing": null, - "sources": null, - "sourced": null, - "source's": null, - "sourcing": null, - "sourceless": null, - "sourdough": null, - "sourdoughs": null, - "sourish": null, - "sourness": [["M", "S"]], - "sourness's": null, - "sournesses": null, - "sourpuss": [["M", "S"]], - "sourpuss's": null, - "sourpusses": null, - "sour": [["T", "Y", "D", "R", "P", "S", "G"]], - "sourest": null, - "sourly": null, - "soured": null, - "sourer": null, - "sours": null, - "souring": null, - "Sousa": [["M"]], - "Sousa's": null, - "sousaphone": [["S", "M"]], - "sousaphones": null, - "sousaphone's": null, - "sous": [["D", "S", "G"]], - "soused": null, - "souses": null, - "sousing": null, - "souse": null, - "sou": [["S", "M", "H"]], - "sou's": null, - "south": [["R", "D", "M", "G"]], - "Southampton": [["M"]], - "Southampton's": null, - "southbound": null, - "southeastern": null, - "southeaster": [["Y", "M"]], - "southeasterly": null, - "southeaster's": null, - "Southeast": [["M", "S"]], - "Southeast's": null, - "Southeasts": null, - "southeast": [["R", "Z", "M", "S"]], - "southeasters": null, - "southeast's": null, - "southeasts": null, - "southeastward": [["S"]], - "southeastwards": null, - "southerly": [["S"]], - "southerlies": null, - "souther": [["M", "Y"]], - "souther's": null, - "southerner": [["M"]], - "southerner's": null, - "Southerner": [["M", "S"]], - "Southerner's": null, - "Southerners": null, - "southernisms": null, - "southernmost": null, - "southern": [["P", "Z", "S", "Y", "R"]], - "southernness": null, - "southerners": null, - "southerns": null, - "southernly": null, - "Southey": [["M"]], - "Southey's": null, - "Southfield": [["M"]], - "Southfield's": null, - "southing": [["M"]], - "southing's": null, - "southland": [["M"]], - "southland's": null, - "South": [["M"]], - "South's": null, - "southpaw": [["M", "S"]], - "southpaw's": null, - "southpaws": null, - "southed": null, - "south's": null, - "souths": null, - "Souths": null, - "southward": [["S"]], - "southwards": null, - "southwestern": null, - "southwester": [["Y", "M"]], - "southwesterly": null, - "southwester's": null, - "Southwest": [["M", "S"]], - "Southwest's": null, - "Southwests": null, - "southwest": [["R", "M", "S", "Z"]], - "southwest's": null, - "southwests": null, - "southwesters": null, - "southwestward": [["S"]], - "southwestwards": null, - "souvenir": [["S", "M"]], - "souvenirs": null, - "souvenir's": null, - "sou'wester": null, - "sovereignty": [["M", "S"]], - "sovereignty's": null, - "sovereignties": null, - "sovereign": [["Y", "M", "S"]], - "sovereignly": null, - "sovereign's": null, - "sovereigns": null, - "soviet": [["M", "S"]], - "soviet's": null, - "soviets": null, - "Soviet": [["S"]], - "Soviets": null, - "sow": [["A", "D", "G", "S"]], - "resow": null, - "resowed": null, - "resowing": null, - "resows": null, - "sowed": null, - "sowing": null, - "sows": null, - "sowbelly": [["M"]], - "sowbelly's": null, - "sowens": [["M"]], - "sowens's": null, - "sower": [["D", "S"]], - "sowered": null, - "sowers": null, - "Soweto": [["M"]], - "Soweto's": null, - "sown": [["A"]], - "resown": null, - "sox's": null, - "soybean": [["M", "S"]], - "soybean's": null, - "soybeans": null, - "Soyinka": [["M"]], - "Soyinka's": null, - "soy": [["M", "S"]], - "soy's": null, - "soys": null, - "Soyuz": [["M"]], - "Soyuz's": null, - "Spaatz": [["M"]], - "Spaatz's": null, - "spacecraft": [["M", "S"]], - "spacecraft's": null, - "spacecrafts": null, - "space": [["D", "S", "R", "G", "Z", "M", "J"]], - "spaced": null, - "spaces": null, - "spacer": [["M"]], - "spacing": [["M"]], - "spacers": null, - "space's": null, - "spacings": null, - "spaceflight": [["S"]], - "spaceflights": null, - "spaceman": [["M"]], - "spaceman's": null, - "spacemen": null, - "spaceport": [["S", "M"]], - "spaceports": null, - "spaceport's": null, - "spacer's": null, - "spaceship": [["M", "S"]], - "spaceship's": null, - "spaceships": null, - "spacesuit": [["M", "S"]], - "spacesuit's": null, - "spacesuits": null, - "spacewalk": [["G", "S", "M", "D"]], - "spacewalking": null, - "spacewalks": null, - "spacewalk's": null, - "spacewalked": null, - "Spacewar": [["M"]], - "Spacewar's": null, - "spacewoman": null, - "spacewomen": null, - "spacey": null, - "spacial": null, - "spacier": null, - "spaciest": null, - "spaciness": null, - "spacing's": null, - "spaciousness": [["S", "M"]], - "spaciousnesses": null, - "spaciousness's": null, - "spacious": [["P", "Y"]], - "spaciously": null, - "Spackle": null, - "spade": [["D", "S", "R", "G", "M"]], - "spaded": null, - "spades": null, - "spader": [["M"]], - "spading": null, - "spade's": null, - "spadeful": [["S", "M"]], - "spadefuls": null, - "spadeful's": null, - "spader's": null, - "spadework": [["S", "M"]], - "spadeworks": null, - "spadework's": null, - "spadices": null, - "spadix": [["M"]], - "spadix's": null, - "Spafford": [["M"]], - "Spafford's": null, - "spaghetti": [["S", "M"]], - "spaghettis": null, - "spaghetti's": null, - "Spahn": [["M"]], - "Spahn's": null, - "Spain": [["M"]], - "Spain's": null, - "spake": null, - "Spalding": [["M"]], - "Spalding's": null, - "Spam": [["M"]], - "Spam's": null, - "spa": [["M", "S"]], - "spa's": null, - "spas": null, - "Span": null, - "spandex": [["M", "S"]], - "spandex's": null, - "spandexes": null, - "spandrels": null, - "spangle": [["G", "M", "D", "S"]], - "spangling": null, - "spangle's": null, - "spangled": null, - "spangles": null, - "Spanglish": [["S"]], - "Spanglishes": null, - "Spaniard": [["S", "M"]], - "Spaniards": null, - "Spaniard's": null, - "spanielled": null, - "spanielling": null, - "spaniel": [["S", "M"]], - "spaniels": null, - "spaniel's": null, - "Spanish": [["M"]], - "Spanish's": null, - "spanker": [["M"]], - "spanker's": null, - "spanking": [["M"]], - "spanking's": null, - "spank": [["S", "R", "D", "J", "G"]], - "spanks": null, - "spanked": null, - "spankings": null, - "span": [["M", "S"]], - "span's": null, - "spans": null, - "spanned": [["U"]], - "unspanned": null, - "spanner": [["S", "M"]], - "spanners": null, - "spanner's": null, - "spanning": null, - "SPARC": [["M"]], - "SPARC's": null, - "SPARCstation": [["M"]], - "SPARCstation's": null, - "spar": [["D", "R", "M", "G", "T", "S"]], - "spared": null, - "sparer": [["M"]], - "spar's": null, - "sparing": [["U", "Y"]], - "sparest": null, - "spars": [["T", "R"]], - "spareness": [["M", "S"]], - "spareness's": null, - "sparenesses": null, - "spare": [["P", "S", "Y"]], - "spares": null, - "sparely": null, - "spareribs": null, - "sparer's": null, - "unsparing": null, - "unsparingly": null, - "sparingly": null, - "sparker": [["M"]], - "sparker's": null, - "sparkle": [["D", "R", "S", "G", "Z"]], - "sparkled": null, - "sparkler": [["M"]], - "sparkles": null, - "sparkling": null, - "sparklers": null, - "sparkler's": null, - "Sparkman": [["M"]], - "Sparkman's": null, - "Sparks": null, - "spark": [["S", "G", "M", "R", "D"]], - "sparks": null, - "sparking": null, - "spark's": null, - "sparked": null, - "sparky": [["R", "T"]], - "sparkier": null, - "sparkiest": null, - "sparling": [["S", "M"]], - "sparlings": null, - "sparling's": null, - "sparred": null, - "sparrer": null, - "sparring": [["U"]], - "unsparring": null, - "sparrow": [["M", "S"]], - "sparrow's": null, - "sparrows": null, - "sparseness": [["S"]], - "sparsenesses": null, - "sparse": [["Y", "P"]], - "sparsely": null, - "sparsity": [["S"]], - "sparsities": null, - "sparsest": null, - "sparser": null, - "Spartacus": [["M"]], - "Spartacus's": null, - "Sparta": [["M"]], - "Sparta's": null, - "spartan": null, - "Spartan": [["S"]], - "Spartans": null, - "spasm": [["G", "S", "D", "M"]], - "spasming": null, - "spasms": null, - "spasmed": null, - "spasm's": null, - "spasmodic": null, - "spasmodically": null, - "spastic": [["S"]], - "spastics": null, - "spate": [["S", "M"]], - "spates": null, - "spate's": null, - "spathe": [["M", "S"]], - "spathe's": null, - "spathes": null, - "spatiality": [["M"]], - "spatiality's": null, - "spatial": [["Y"]], - "spatially": null, - "spat": [["M", "S"]], - "spat's": null, - "spats": null, - "spatted": null, - "spatter": [["D", "G", "S"]], - "spattered": null, - "spattering": null, - "spatters": null, - "spatterdock": [["M"]], - "spatterdock's": null, - "spatting": null, - "spatula": [["S", "M"]], - "spatulas": null, - "spatula's": null, - "spavin": [["D", "M", "S"]], - "spavined": null, - "spavin's": null, - "spavins": null, - "spawner": [["M"]], - "spawner's": null, - "spawn": [["M", "R", "D", "S", "G"]], - "spawn's": null, - "spawned": null, - "spawns": null, - "spawning": null, - "spay": [["D", "G", "S"]], - "spayed": null, - "spaying": null, - "spays": null, - "SPCA": null, - "speakable": [["U"]], - "unspeakable": null, - "speakeasy": [["S", "M"]], - "speakeasies": null, - "speakeasy's": null, - "speaker": [["M"]], - "speaker's": null, - "Speaker's": null, - "speakership": [["M"]], - "speakership's": null, - "speaking": [["U"]], - "unspeaking": null, - "speak": [["R", "B", "G", "Z", "J", "S"]], - "speakers": null, - "speakings": null, - "speaks": null, - "spearer": [["M"]], - "spearer's": null, - "spearfish": [["S", "D", "M", "G"]], - "spearfishes": null, - "spearfished": null, - "spearfish's": null, - "spearfishing": null, - "spearhead": [["G", "S", "D", "M"]], - "spearheading": null, - "spearheads": null, - "spearheaded": null, - "spearhead's": null, - "spearmint": [["M", "S"]], - "spearmint's": null, - "spearmints": null, - "spear": [["M", "R", "D", "G", "S"]], - "spear's": null, - "speared": null, - "spearing": null, - "spears": null, - "Spears": null, - "spec'd": null, - "specialism": [["M", "S"]], - "specialism's": null, - "specialisms": null, - "specialist": [["M", "S"]], - "specialist's": null, - "specialists": null, - "specialization": [["S", "M"]], - "specializations": null, - "specialization's": null, - "specialized": [["U"]], - "unspecialized": null, - "specialize": [["G", "Z", "D", "S", "R"]], - "specializing": [["U"]], - "specializers": null, - "specializes": null, - "specializer": null, - "unspecializing": null, - "special": [["S", "R", "Y", "P"]], - "specials": null, - "specialer": null, - "specially": null, - "specialness": null, - "specialty": [["M", "S"]], - "specialty's": null, - "specialties": null, - "specie": [["M", "S"]], - "specie's": null, - "species": null, - "specif": null, - "specifiability": null, - "specifiable": null, - "specifiably": null, - "specifically": null, - "specification": [["S", "M"]], - "specifications": null, - "specification's": null, - "specificity": [["S"]], - "specificities": null, - "specific": [["S", "P"]], - "specifics": null, - "specificness": null, - "specified": [["U"]], - "unspecified": null, - "specifier": [["S", "M"]], - "specifiers": null, - "specifier's": null, - "specifies": null, - "specify": [["A", "D"]], - "respecify": null, - "respecified": null, - "specifying": null, - "specimen": [["S", "M"]], - "specimens": null, - "specimen's": null, - "spec'ing": null, - "speciousness": [["S", "M"]], - "speciousnesses": null, - "speciousness's": null, - "specious": [["Y", "P"]], - "speciously": null, - "speck": [["G", "M", "D", "S"]], - "specking": null, - "speck's": null, - "specked": null, - "specks": null, - "speckle": [["G", "M", "D", "S"]], - "speckling": null, - "speckle's": null, - "speckled": null, - "speckles": null, - "spec": [["S", "M"]], - "specs": null, - "spec's": null, - "spectacle": [["M", "S", "D"]], - "spectacle's": null, - "spectacles": null, - "spectacled": null, - "spectacular": [["S", "Y"]], - "spectaculars": null, - "spectacularly": null, - "spectator": [["S", "M"]], - "spectators": null, - "spectator's": null, - "specter": [["D", "M", "S"]], - "spectered": null, - "specter's": [["A"]], - "specters": null, - "respecter's": null, - "spectralness": [["M"]], - "spectralness's": null, - "spectral": [["Y", "P"]], - "spectrally": null, - "spectra": [["M"]], - "spectra's": null, - "spectrogram": [["M", "S"]], - "spectrogram's": null, - "spectrograms": null, - "spectrographically": null, - "spectrograph": [["M"]], - "spectrograph's": null, - "spectrography": [["M"]], - "spectrography's": null, - "spectrometer": [["M", "S"]], - "spectrometer's": null, - "spectrometers": null, - "spectrometric": null, - "spectrometry": [["M"]], - "spectrometry's": null, - "spectrophotometer": [["S", "M"]], - "spectrophotometers": null, - "spectrophotometer's": null, - "spectrophotometric": null, - "spectrophotometry": [["M"]], - "spectrophotometry's": null, - "spectroscope": [["S", "M"]], - "spectroscopes": null, - "spectroscope's": null, - "spectroscopic": null, - "spectroscopically": null, - "spectroscopy": [["S", "M"]], - "spectroscopies": null, - "spectroscopy's": null, - "spectrum": [["M"]], - "spectrum's": null, - "specularity": null, - "specular": [["Y"]], - "specularly": null, - "speculate": [["V", "N", "G", "S", "D", "X"]], - "speculative": [["Y"]], - "speculation": [["M"]], - "speculating": null, - "speculates": null, - "speculated": null, - "speculations": null, - "speculation's": null, - "speculatively": null, - "speculator": [["S", "M"]], - "speculators": null, - "speculator's": null, - "sped": null, - "speech": [["G", "M", "D", "S"]], - "speeching": null, - "speech's": null, - "speeched": null, - "speeches": null, - "speechlessness": [["S", "M"]], - "speechlessnesses": null, - "speechlessness's": null, - "speechless": [["Y", "P"]], - "speechlessly": null, - "speedboat": [["G", "S", "R", "M"]], - "speedboating": [["M"]], - "speedboats": null, - "speedboater": null, - "speedboat's": null, - "speedboating's": null, - "speeder": [["M"]], - "speeder's": null, - "speedily": null, - "speediness": [["S", "M"]], - "speedinesses": null, - "speediness's": null, - "speedometer": [["M", "S"]], - "speedometer's": null, - "speedometers": null, - "speed": [["R", "M", "J", "G", "Z", "S"]], - "speed's": null, - "speedings": null, - "speeding": null, - "speeders": null, - "speeds": null, - "speedster": [["S", "M"]], - "speedsters": null, - "speedster's": null, - "speedup": [["M", "S"]], - "speedup's": null, - "speedups": null, - "speedway": [["S", "M"]], - "speedways": null, - "speedway's": null, - "speedwell": [["M", "S"]], - "speedwell's": null, - "speedwells": null, - "speedy": [["P", "T", "R"]], - "speediest": null, - "speedier": null, - "speer": [["M"]], - "speer's": null, - "speleological": null, - "speleologist": [["S"]], - "speleologists": null, - "speleology": [["M", "S"]], - "speleology's": null, - "speleologies": null, - "spellbinder": [["M"]], - "spellbinder's": null, - "spellbind": [["S", "R", "G", "Z"]], - "spellbinds": null, - "spellbinding": null, - "spellbinders": null, - "spellbound": null, - "spelldown": [["M", "S"]], - "spelldown's": null, - "spelldowns": null, - "spelled": [["A"]], - "respelled": null, - "speller": [["M"]], - "speller's": null, - "spelling": [["M"]], - "spelling's": null, - "spell": [["R", "D", "S", "J", "G", "Z"]], - "spells": [["A"]], - "spellings": null, - "spellers": null, - "respells": null, - "spelunker": [["M", "S"]], - "spelunker's": null, - "spelunkers": null, - "spelunking": [["S"]], - "spelunkings": null, - "Spencerian": null, - "Spencer": [["M"]], - "Spencer's": null, - "Spence": [["R", "M"]], - "Spence's": null, - "spender": [["M"]], - "spender's": null, - "spend": [["S", "B", "J", "R", "G", "Z"]], - "spends": null, - "spendable": null, - "spendings": null, - "spending": null, - "spenders": null, - "spendthrift": [["M", "S"]], - "spendthrift's": null, - "spendthrifts": null, - "Spenglerian": null, - "Spengler": [["M"]], - "Spengler's": null, - "Spense": [["M", "R"]], - "Spense's": null, - "Spenser": [["M"]], - "Spenserian": null, - "Spenser's": null, - "spent": [["U"]], - "unspent": null, - "spermatophyte": [["M"]], - "spermatophyte's": null, - "spermatozoa": null, - "spermatozoon": [["M"]], - "spermatozoon's": null, - "spermicidal": null, - "spermicide": [["M", "S"]], - "spermicide's": null, - "spermicides": null, - "sperm": [["S", "M"]], - "sperms": null, - "sperm's": null, - "Sperry": [["M"]], - "Sperry's": null, - "spew": [["D", "R", "G", "Z", "J", "S"]], - "spewed": null, - "spewer": [["M"]], - "spewing": null, - "spewers": null, - "spewings": null, - "spews": null, - "spewer's": null, - "SPF": null, - "sphagnum": [["S", "M"]], - "sphagnums": null, - "sphagnum's": null, - "sphere": [["S", "D", "G", "M"]], - "spheres": null, - "sphered": null, - "sphering": null, - "sphere's": null, - "spherical": [["Y"]], - "spherically": null, - "spheric": [["S"]], - "spherics": [["M"]], - "spherics's": null, - "spheroidal": [["Y"]], - "spheroidally": null, - "spheroid": [["S", "M"]], - "spheroids": null, - "spheroid's": null, - "spherule": [["M", "S"]], - "spherule's": null, - "spherules": null, - "sphincter": [["S", "M"]], - "sphincters": null, - "sphincter's": null, - "Sphinx": [["M"]], - "Sphinx's": null, - "sphinx": [["M", "S"]], - "sphinx's": null, - "sphinxes": null, - "Spica": [["M"]], - "Spica's": null, - "spic": [["D", "G", "M"]], - "spiced": null, - "spicing": null, - "spic's": null, - "spicebush": [["M"]], - "spicebush's": null, - "spice": [["S", "M"]], - "spices": null, - "spice's": null, - "spicily": null, - "spiciness": [["S", "M"]], - "spicinesses": null, - "spiciness's": null, - "spicule": [["M", "S"]], - "spicule's": null, - "spicules": null, - "spicy": [["P", "T", "R"]], - "spiciest": null, - "spicier": null, - "spider": [["S", "M"]], - "spiders": null, - "spider's": null, - "spiderweb": [["S"]], - "spiderwebs": null, - "spiderwort": [["M"]], - "spiderwort's": null, - "spidery": [["T", "R"]], - "spideriest": null, - "spiderier": null, - "Spiegel": [["M"]], - "Spiegel's": null, - "Spielberg": [["M"]], - "Spielberg's": null, - "spiel": [["G", "D", "M", "S"]], - "spieling": null, - "spieled": null, - "spiel's": null, - "spiels": null, - "spier": [["M"]], - "spier's": null, - "spiffy": [["T", "D", "R", "S", "G"]], - "spiffiest": null, - "spiffied": null, - "spiffier": null, - "spiffies": null, - "spiffying": null, - "spigot": [["M", "S"]], - "spigot's": null, - "spigots": null, - "spike": [["G", "M", "D", "S", "R"]], - "spiking": null, - "spike's": null, - "spiked": null, - "spikes": null, - "spiker": [["M"]], - "Spike": [["M"]], - "Spike's": null, - "spiker's": null, - "spikiness": [["S", "M"]], - "spikinesses": null, - "spikiness's": null, - "spiky": [["P", "T", "R"]], - "spikiest": null, - "spikier": null, - "spillage": [["S", "M"]], - "spillages": null, - "spillage's": null, - "Spillane": [["M"]], - "Spillane's": null, - "spillover": [["S", "M"]], - "spillovers": null, - "spillover's": null, - "spill": [["R", "D", "S", "G"]], - "spiller": null, - "spilled": null, - "spills": null, - "spilling": null, - "spillway": [["S", "M"]], - "spillways": null, - "spillway's": null, - "spinach": [["M", "S"]], - "spinach's": null, - "spinaches": null, - "spinal": [["Y", "S"]], - "spinally": null, - "spinals": null, - "spindle": [["J", "G", "M", "D", "R", "S"]], - "spindlings": null, - "spindling": null, - "spindle's": null, - "spindled": null, - "spindler": null, - "spindles": null, - "spindly": [["R", "T"]], - "spindlier": null, - "spindliest": null, - "spinelessness": [["M"]], - "spinelessness's": null, - "spineless": [["Y", "P"]], - "spinelessly": null, - "spine": [["M", "S"]], - "spine's": null, - "spines": null, - "spinet": [["S", "M"]], - "spinets": null, - "spinet's": null, - "spininess": [["M"]], - "spininess's": null, - "spinnability": [["M"]], - "spinnability's": null, - "spinnaker": [["S", "M"]], - "spinnakers": null, - "spinnaker's": null, - "spinneret": [["M", "S"]], - "spinneret's": null, - "spinnerets": null, - "spinner": [["S", "M"]], - "spinners": null, - "spinner's": null, - "spinning": [["S", "M"]], - "spinnings": null, - "spinning's": null, - "Spinoza": [["M"]], - "Spinoza's": null, - "spin": [["S"]], - "spins": null, - "spinsterhood": [["S", "M"]], - "spinsterhoods": null, - "spinsterhood's": null, - "spinsterish": null, - "spinster": [["M", "S"]], - "spinster's": null, - "spinsters": null, - "spiny": [["P", "R", "T"]], - "spinier": null, - "spiniest": null, - "spiracle": [["S", "M"]], - "spiracles": null, - "spiracle's": null, - "spiraea's": null, - "spiral": [["Y", "D", "S", "G"]], - "spirally": null, - "spiraled": null, - "spirals": null, - "spiraling": null, - "spire": [["A", "I", "D", "S", "G", "F"]], - "respire": null, - "respired": null, - "respires": null, - "respiring": null, - "inspires": null, - "spired": null, - "conspired": null, - "spires": null, - "conspires": null, - "spiring": null, - "conspiring": null, - "conspire": null, - "spirea": [["M", "S"]], - "spirea's": null, - "spireas": null, - "spire's": null, - "spiritedness": [["M"]], - "spiritedness's": null, - "spirited": [["P", "Y"]], - "spiritedly": null, - "spirit": [["G", "M", "D", "S"]], - "spiriting": null, - "spirit's": null, - "spirits": [["I"]], - "spiritless": null, - "inspirits": null, - "spiritualism": [["S", "M"]], - "spiritualisms": null, - "spiritualism's": null, - "spiritualistic": null, - "spiritualist": [["S", "M"]], - "spiritualists": null, - "spiritualist's": null, - "spirituality": [["S", "M"]], - "spiritualities": null, - "spirituality's": null, - "spiritual": [["S", "Y", "P"]], - "spirituals": null, - "spiritually": null, - "spiritualness": null, - "spirituous": null, - "spirochete": [["S", "M"]], - "spirochetes": null, - "spirochete's": null, - "Spiro": [["M"]], - "Spiro's": null, - "spiry": [["T", "R"]], - "spiriest": null, - "spirier": null, - "spitball": [["S", "M"]], - "spitballs": null, - "spitball's": null, - "spite": [["C", "S", "D", "A", "G"]], - "despite": null, - "despites": null, - "despited": null, - "despiting": null, - "spites": null, - "respites": null, - "spited": null, - "respited": null, - "respite": null, - "respiting": null, - "spiting": null, - "spitefuller": null, - "spitefullest": null, - "spitefulness": [["M", "S"]], - "spitefulness's": null, - "spitefulnesses": null, - "spiteful": [["P", "Y"]], - "spitefully": null, - "spite's": [["A"]], - "respite's": null, - "spitfire": [["S", "M"]], - "spitfires": null, - "spitfire's": null, - "spit": [["S", "G", "D"]], - "spits": null, - "spitted": null, - "spitting": null, - "spittle": [["S", "M"]], - "spittles": null, - "spittle's": null, - "spittoon": [["S", "M"]], - "spittoons": null, - "spittoon's": null, - "Spitz": [["M"]], - "Spitz's": null, - "splashdown": [["M", "S"]], - "splashdown's": null, - "splashdowns": null, - "splasher": [["M"]], - "splasher's": null, - "splash": [["G", "Z", "D", "R", "S"]], - "splashing": null, - "splashers": null, - "splashed": null, - "splashes": null, - "splashily": null, - "splashiness": [["M", "S"]], - "splashiness's": null, - "splashinesses": null, - "splashy": [["R", "T", "P"]], - "splashier": null, - "splashiest": null, - "splat": [["S", "M"]], - "splats": null, - "splat's": null, - "splatted": null, - "splatter": [["D", "S", "G"]], - "splattered": null, - "splatters": null, - "splattering": null, - "splatting": null, - "splayfeet": null, - "splayfoot": [["M", "D"]], - "splayfoot's": null, - "splayfooted": null, - "splay": [["S", "D", "G"]], - "splays": null, - "splayed": null, - "splaying": null, - "spleen": [["S", "M"]], - "spleens": null, - "spleen's": null, - "splendidness": [["M"]], - "splendidness's": null, - "splendid": [["Y", "R", "P", "T"]], - "splendidly": null, - "splendider": null, - "splendidest": null, - "splendorous": null, - "splendor": [["S", "M"]], - "splendors": null, - "splendor's": null, - "splenetic": [["S"]], - "splenetics": null, - "splicer": [["M"]], - "splicer's": null, - "splice": [["R", "S", "D", "G", "Z", "J"]], - "splices": null, - "spliced": null, - "splicing": null, - "splicers": null, - "splicings": null, - "spline": [["M", "S", "D"]], - "spline's": null, - "splines": null, - "splined": null, - "splinter": [["G", "M", "D"]], - "splintering": null, - "splinter's": null, - "splintered": null, - "splintery": null, - "splint": [["S", "G", "Z", "M", "D", "R"]], - "splints": null, - "splinting": null, - "splinters": null, - "splint's": null, - "splinted": null, - "splits": [["M"]], - "splits's": null, - "split": [["S", "M"]], - "split's": null, - "splittable": null, - "splitter": [["M", "S"]], - "splitter's": null, - "splitters": null, - "splitting": [["S"]], - "splittings": null, - "splodge": [["S", "M"]], - "splodges": null, - "splodge's": null, - "splotch": [["M", "S", "D", "G"]], - "splotch's": null, - "splotches": null, - "splotched": null, - "splotching": null, - "splotchy": [["R", "T"]], - "splotchier": null, - "splotchiest": null, - "splurge": [["G", "M", "D", "S"]], - "splurging": null, - "splurge's": null, - "splurged": null, - "splurges": null, - "splutterer": [["M"]], - "splutterer's": null, - "splutter": [["R", "D", "S", "G"]], - "spluttered": null, - "splutters": null, - "spluttering": null, - "Sp": [["M"]], - "Sp's": null, - "Spock": [["M"]], - "Spock's": null, - "spoilables": null, - "spoilage": [["S", "M"]], - "spoilages": null, - "spoilage's": null, - "spoil": [["C", "S", "Z", "G", "D", "R"]], - "despoils": null, - "despoilers": null, - "despoiling": null, - "despoiled": null, - "despoiler": null, - "spoils": null, - "spoilers": null, - "spoiling": null, - "spoiled": [["U"]], - "spoiler": [["M", "C"]], - "unspoiled": null, - "spoiler's": null, - "despoiler's": null, - "spoilsport": [["S", "M"]], - "spoilsports": null, - "spoilsport's": null, - "Spokane": [["M"]], - "Spokane's": null, - "spoke": [["D", "S", "G"]], - "spoked": null, - "spokes": null, - "spoking": null, - "spoken": [["U"]], - "unspoken": null, - "spokeshave": [["M", "S"]], - "spokeshave's": null, - "spokeshaves": null, - "spokesman": [["M"]], - "spokesman's": null, - "spokesmen": null, - "spokespeople": null, - "spokesperson": [["S"]], - "spokespersons": null, - "spokeswoman": [["M"]], - "spokeswoman's": null, - "spokeswomen": null, - "spoliation": [["M", "C", "S"]], - "spoliation's": null, - "despoliation's": null, - "despoliation": null, - "despoliations": null, - "spoliations": null, - "spongecake": null, - "sponge": [["G", "M", "Z", "R", "S", "D"]], - "sponging": null, - "sponge's": null, - "spongers": null, - "sponger": [["M"]], - "sponges": null, - "sponged": null, - "sponger's": null, - "sponginess": [["S"]], - "sponginesses": null, - "spongy": [["T", "R", "P"]], - "spongiest": null, - "spongier": null, - "sponsor": [["D", "G", "M", "S"]], - "sponsored": null, - "sponsoring": null, - "sponsor's": null, - "sponsors": null, - "sponsorship": [["S"]], - "sponsorships": null, - "spontaneity": [["S", "M"]], - "spontaneities": null, - "spontaneity's": null, - "spontaneousness": [["M"]], - "spontaneousness's": null, - "spontaneous": [["P", "Y"]], - "spontaneously": null, - "spoof": [["S", "M", "D", "G"]], - "spoofs": null, - "spoof's": null, - "spoofed": null, - "spoofing": null, - "spookiness": [["M", "S"]], - "spookiness's": null, - "spookinesses": null, - "spook": [["S", "M", "D", "G"]], - "spooks": null, - "spook's": null, - "spooked": null, - "spooking": null, - "spooky": [["P", "R", "T"]], - "spookier": null, - "spookiest": null, - "spool": [["S", "R", "D", "M", "G", "Z"]], - "spools": null, - "spooler": null, - "spooled": null, - "spool's": null, - "spooling": null, - "spoolers": null, - "spoonbill": [["S", "M"]], - "spoonbills": null, - "spoonbill's": null, - "spoonerism": [["S", "M"]], - "spoonerisms": null, - "spoonerism's": null, - "spoonful": [["M", "S"]], - "spoonful's": null, - "spoonfuls": null, - "spoon": [["G", "S", "M", "D"]], - "spooning": null, - "spoons": null, - "spoon's": null, - "spooned": null, - "spoor": [["G", "S", "M", "D"]], - "spooring": null, - "spoors": null, - "spoor's": null, - "spoored": null, - "sporadically": null, - "sporadic": [["Y"]], - "sporadicly": null, - "spore": [["D", "S", "G", "M"]], - "spored": null, - "spores": null, - "sporing": null, - "spore's": null, - "sporran": [["M", "S"]], - "sporran's": null, - "sporrans": null, - "sportiness": [["S", "M"]], - "sportinesses": null, - "sportiness's": null, - "sporting": [["Y"]], - "sportingly": null, - "sportiveness": [["M"]], - "sportiveness's": null, - "sportive": [["P", "Y"]], - "sportively": null, - "sportscast": [["R", "S", "G", "Z", "M"]], - "sportscaster": null, - "sportscasts": null, - "sportscasting": null, - "sportscasters": null, - "sportscast's": null, - "sportsmanlike": [["U"]], - "unsportsmanlike": null, - "sportsman": [["M", "Y"]], - "sportsman's": null, - "sportsmanly": null, - "sportsmanship": [["M", "S"]], - "sportsmanship's": null, - "sportsmanships": null, - "sportsmen": null, - "sportswear": [["M"]], - "sportswear's": null, - "sportswoman": [["M"]], - "sportswoman's": null, - "sportswomen": null, - "sportswriter": [["S"]], - "sportswriters": null, - "sport": [["V", "G", "S", "R", "D", "M"]], - "sports": null, - "sporter": null, - "sported": null, - "sport's": null, - "sporty": [["P", "R", "T"]], - "sportier": null, - "sportiest": null, - "Sposato": [["M"]], - "Sposato's": null, - "spotlessness": [["M", "S"]], - "spotlessness's": null, - "spotlessnesses": null, - "spotless": [["Y", "P"]], - "spotlessly": null, - "spotlight": [["G", "D", "M", "S"]], - "spotlighting": null, - "spotlighted": null, - "spotlight's": null, - "spotlights": null, - "spotlit": null, - "spot": [["M", "S", "C"]], - "spot's": null, - "despot's": null, - "spots": null, - "despots": null, - "despot": null, - "spotted": [["U"]], - "unspotted": null, - "spotter": [["M", "S"]], - "spotter's": null, - "spotters": null, - "spottily": null, - "spottiness": [["S", "M"]], - "spottinesses": null, - "spottiness's": null, - "spotting": [["M"]], - "spotting's": null, - "spotty": [["R", "T", "P"]], - "spottier": null, - "spottiest": null, - "spousal": [["M", "S"]], - "spousal's": null, - "spousals": null, - "spouse": [["G", "M", "S", "D"]], - "spousing": null, - "spouse's": null, - "spouses": null, - "spoused": null, - "spouter": [["M"]], - "spouter's": null, - "spout": [["S", "G", "R", "D"]], - "spouts": null, - "spouting": null, - "spouted": null, - "sprain": [["S", "G", "D"]], - "sprains": null, - "spraining": null, - "sprained": null, - "sprang": [["S"]], - "sprangs": null, - "sprat": [["S", "M"]], - "sprats": null, - "sprat's": null, - "sprawl": [["G", "S", "D"]], - "sprawling": null, - "sprawls": null, - "sprawled": null, - "sprayed": [["U", "A"]], - "unsprayed": null, - "resprayed": null, - "sprayer": [["M"]], - "sprayer's": null, - "spray": [["G", "Z", "S", "R", "D", "M"]], - "spraying": null, - "sprayers": null, - "sprays": [["A"]], - "spray's": null, - "resprays": null, - "spreadeagled": null, - "spreader": [["M"]], - "spreader's": null, - "spread": [["R", "S", "J", "G", "Z", "B"]], - "spreads": null, - "spreadings": null, - "spreading": null, - "spreaders": null, - "spreadable": null, - "spreadsheet": [["S"]], - "spreadsheets": null, - "spreeing": null, - "spree": [["M", "D", "S"]], - "spree's": null, - "spreed": null, - "sprees": null, - "sprigged": null, - "sprigging": null, - "sprightliness": [["M", "S"]], - "sprightliness's": null, - "sprightlinesses": null, - "sprightly": [["P", "R", "T"]], - "sprightlier": null, - "sprightliest": null, - "sprig": [["M", "S"]], - "sprig's": null, - "sprigs": null, - "springboard": [["M", "S"]], - "springboard's": null, - "springboards": null, - "springbok": [["M", "S"]], - "springbok's": null, - "springboks": null, - "springeing": null, - "springer": [["M"]], - "springer's": null, - "Springfield": [["M"]], - "Springfield's": null, - "springily": null, - "springiness": [["S", "M"]], - "springinesses": null, - "springiness's": null, - "springing": [["M"]], - "springing's": null, - "springlike": null, - "spring": [["S", "G", "Z", "R"]], - "springs": null, - "springers": null, - "Springsteen": [["M"]], - "Springsteen's": null, - "springtime": [["M", "S"]], - "springtime's": null, - "springtimes": null, - "springy": [["T", "R", "P"]], - "springiest": null, - "springier": null, - "sprinkle": [["D", "R", "S", "J", "Z", "G"]], - "sprinkled": null, - "sprinkler": [["D", "M"]], - "sprinkles": null, - "sprinklings": null, - "sprinklers": null, - "sprinkling": [["M"]], - "sprinklered": null, - "sprinkler's": null, - "sprinkling's": null, - "Sprint": [["M"]], - "Sprint's": null, - "sprint": [["S", "G", "Z", "M", "D", "R"]], - "sprints": null, - "sprinting": null, - "sprinters": null, - "sprint's": null, - "sprinted": null, - "sprinter": null, - "sprite": [["S", "M"]], - "sprites": null, - "sprite's": null, - "spritz": [["G", "Z", "D", "S", "R"]], - "spritzing": null, - "spritzers": null, - "spritzed": null, - "spritzes": null, - "spritzer": null, - "sprocket": [["D", "M", "G", "S"]], - "sprocketed": [["U"]], - "sprocket's": null, - "sprocketing": null, - "sprockets": null, - "unsprocketed": null, - "Sproul": [["M"]], - "Sproul's": null, - "sprout": [["G", "S", "D"]], - "sprouting": null, - "sprouts": null, - "sprouted": null, - "spruce": [["G", "M", "T", "Y", "R", "S", "D", "P"]], - "sprucing": null, - "spruce's": null, - "sprucest": null, - "sprucely": null, - "sprucer": null, - "spruces": null, - "spruced": null, - "spruceness": [["S", "M"]], - "sprucenesses": null, - "spruceness's": null, - "sprue": [["M"]], - "sprue's": null, - "sprung": [["U"]], - "unsprung": null, - "spryness": [["S"]], - "sprynesses": null, - "spry": [["T", "R", "Y"]], - "spriest": null, - "sprier": null, - "spryly": null, - "SPSS": null, - "spudded": null, - "spudding": null, - "spud": [["M", "S"]], - "spud's": null, - "spuds": null, - "Spuds": [["M"]], - "Spuds's": null, - "spume": [["D", "S", "G", "M"]], - "spumed": null, - "spumes": null, - "spuming": null, - "spume's": null, - "spumone's": null, - "spumoni": [["S"]], - "spumonis": null, - "spumy": [["T", "R"]], - "spumiest": null, - "spumier": null, - "spun": null, - "spunk": [["G", "S", "M", "D"]], - "spunking": null, - "spunks": null, - "spunk's": null, - "spunked": null, - "spunky": [["S", "R", "T"]], - "spunkies": null, - "spunkier": null, - "spunkiest": null, - "spurge": [["M", "S"]], - "spurge's": null, - "spurges": null, - "spuriousness": [["S", "M"]], - "spuriousnesses": null, - "spuriousness's": null, - "spurious": [["P", "Y"]], - "spuriously": null, - "spur": [["M", "S"]], - "spur's": null, - "spurs": null, - "spurn": [["R", "D", "S", "G"]], - "spurner": null, - "spurned": null, - "spurns": null, - "spurning": null, - "spurred": null, - "spurring": null, - "spurt": [["S", "G", "D"]], - "spurts": null, - "spurting": null, - "spurted": null, - "sputa": null, - "Sputnik": null, - "sputnik": [["M", "S"]], - "sputnik's": null, - "sputniks": null, - "sputter": [["D", "R", "G", "S"]], - "sputtered": null, - "sputterer": null, - "sputtering": null, - "sputters": null, - "sputum": [["M"]], - "sputum's": null, - "spy": [["D", "R", "S", "G", "M"]], - "spied": null, - "spies": null, - "spying": null, - "spy's": null, - "spyglass": [["M", "S"]], - "spyglass's": null, - "spyglasses": null, - "sq": null, - "sqq": null, - "sqrt": null, - "squabbed": null, - "squabber": null, - "squabbest": null, - "squabbing": null, - "squabbler": [["M"]], - "squabbler's": null, - "squabble": [["Z", "G", "D", "R", "S"]], - "squabblers": null, - "squabbling": null, - "squabbled": null, - "squabbles": null, - "squab": [["S", "M"]], - "squabs": null, - "squab's": null, - "squadded": null, - "squadding": null, - "squadron": [["M", "D", "G", "S"]], - "squadron's": null, - "squadroned": null, - "squadroning": null, - "squadrons": null, - "squad": [["S", "M"]], - "squads": null, - "squad's": null, - "squalidness": [["S", "M"]], - "squalidnesses": null, - "squalidness's": null, - "squalid": [["P", "R", "Y", "T"]], - "squalider": null, - "squalidly": null, - "squalidest": null, - "squaller": [["M"]], - "squaller's": null, - "squall": [["G", "M", "R", "D", "S"]], - "squalling": null, - "squall's": null, - "squalled": null, - "squalls": null, - "squally": [["R", "T"]], - "squallier": null, - "squalliest": null, - "squalor": [["S", "M"]], - "squalors": null, - "squalor's": null, - "squamous": [["Y"]], - "squamously": null, - "squander": [["G", "S", "R", "D"]], - "squandering": null, - "squanders": null, - "squanderer": null, - "squandered": null, - "Squanto": null, - "square": [["G", "M", "T", "Y", "R", "S", "D", "P"]], - "squaring": null, - "square's": null, - "squarest": null, - "squarely": null, - "squarer": [["M"]], - "squares": null, - "squared": null, - "squareness": [["S", "M"]], - "squarenesses": null, - "squareness's": null, - "squarer's": null, - "Squaresville": [["M"]], - "Squaresville's": null, - "squarish": null, - "squash": [["G", "S", "R", "D"]], - "squashing": null, - "squashes": null, - "squasher": null, - "squashed": null, - "squashiness": [["M"]], - "squashiness's": null, - "squashy": [["R", "T", "P"]], - "squashier": null, - "squashiest": null, - "squatness": [["M", "S"]], - "squatness's": null, - "squatnesses": null, - "squat": [["S", "P", "Y"]], - "squats": null, - "squatly": null, - "squatted": null, - "squatter": [["S", "M", "D", "G"]], - "squatters": null, - "squatter's": null, - "squattered": null, - "squattering": null, - "squattest": null, - "squatting": null, - "squawker": [["M"]], - "squawker's": null, - "squawk": [["G", "R", "D", "M", "Z", "S"]], - "squawking": null, - "squawked": null, - "squawk's": null, - "squawkers": null, - "squawks": null, - "squaw": [["S", "M"]], - "squaws": null, - "squaw's": null, - "squeaker": [["M"]], - "squeaker's": null, - "squeakily": null, - "squeakiness": [["S"]], - "squeakinesses": null, - "squeak": [["R", "D", "M", "G", "Z", "S"]], - "squeaked": null, - "squeak's": null, - "squeaking": null, - "squeakers": null, - "squeaks": null, - "squeaky": [["R", "P", "T"]], - "squeakier": null, - "squeakiest": null, - "squealer": [["M"]], - "squealer's": null, - "squeal": [["M", "R", "D", "S", "G", "Z"]], - "squeal's": null, - "squealed": null, - "squeals": null, - "squealing": null, - "squealers": null, - "squeamishness": [["S", "M"]], - "squeamishnesses": null, - "squeamishness's": null, - "squeamish": [["Y", "P"]], - "squeamishly": null, - "squeegee": [["D", "S", "M"]], - "squeegeed": null, - "squeegees": null, - "squeegee's": null, - "squeegeeing": null, - "squeeze": [["G", "Z", "S", "R", "D", "B"]], - "squeezing": null, - "squeezers": null, - "squeezes": null, - "squeezer": [["M"]], - "squeezed": null, - "squeezable": null, - "squeezer's": null, - "squelcher": [["M"]], - "squelcher's": null, - "squelch": [["G", "D", "R", "S"]], - "squelching": null, - "squelched": null, - "squelches": null, - "squelchy": [["R", "T"]], - "squelchier": null, - "squelchiest": null, - "squibbed": null, - "Squibb": [["G", "M"]], - "Squibbing": [["M"]], - "Squibb's": null, - "squibbing": null, - "Squibbing's": null, - "squib": [["S", "M"]], - "squibs": null, - "squib's": null, - "squidded": null, - "squidding": null, - "squid": [["S", "M"]], - "squids": null, - "squid's": null, - "squiggle": [["M", "G", "D", "S"]], - "squiggle's": null, - "squiggling": null, - "squiggled": null, - "squiggles": null, - "squiggly": [["R", "T"]], - "squigglier": null, - "squiggliest": null, - "squinter": [["M"]], - "squinter's": null, - "squint": [["G", "T", "S", "R", "D"]], - "squinting": [["Y"]], - "squintest": null, - "squints": null, - "squinted": null, - "squintingly": null, - "squirehood": null, - "squire": [["S", "D", "G", "M"]], - "squires": null, - "squired": null, - "squiring": null, - "squire's": null, - "squirm": [["S", "G", "D"]], - "squirms": null, - "squirming": null, - "squirmed": null, - "squirmy": [["T", "R"]], - "squirmiest": null, - "squirmier": null, - "squirrel": [["S", "G", "Y", "D", "M"]], - "squirrels": null, - "squirreling": null, - "squirrelly": null, - "squirreled": null, - "squirrel's": null, - "squirter": [["M"]], - "squirter's": null, - "squirt": [["G", "S", "R", "D"]], - "squirting": null, - "squirts": null, - "squirted": null, - "squish": [["G", "S", "D"]], - "squishing": null, - "squishes": null, - "squished": null, - "squishy": [["R", "T", "P"]], - "squishier": null, - "squishiest": null, - "squishiness": null, - "Sr": null, - "Srinagar": [["M"]], - "Srinagar's": null, - "SRO": null, - "S's": null, - "SS": null, - "SSA": null, - "SSE": null, - "ssh": null, - "s's": [["K", "I"]], - "pros's": null, - "ins's": null, - "SSS": null, - "SST": null, - "SSW": null, - "ST": null, - "stabbed": null, - "stabber": [["S"]], - "stabbers": null, - "stabbing": [["S"]], - "stabbings": null, - "stability": [["I", "S", "M"]], - "instability": null, - "instabilities": null, - "instability's": null, - "stabilities": null, - "stability's": null, - "stabilizability": null, - "stabilization": [["C", "S"]], - "destabilization": null, - "destabilizations": null, - "stabilizations": null, - "stabilization's": null, - "stabilize": [["C", "G", "S", "D"]], - "destabilize": null, - "destabilizing": null, - "destabilizes": null, - "destabilized": null, - "stabilizing": null, - "stabilizes": null, - "stabilized": null, - "stabilizer": [["M", "S"]], - "stabilizer's": null, - "stabilizers": null, - "stableman": [["M"]], - "stableman's": null, - "stablemate": null, - "stablemen": null, - "stableness": [["U", "M"]], - "unstableness": null, - "unstableness's": null, - "stableness's": null, - "stable": [["R", "S", "D", "G", "M", "T", "P"]], - "stabler": [["U"]], - "stables": [["F"]], - "stabled": null, - "stabling": [["M"]], - "stable's": [["F"]], - "stablest": [["U"]], - "unstabler": null, - "constable's": null, - "constables": null, - "unstablest": null, - "stabling's": null, - "stably": [["U"]], - "unstably": null, - "stab": [["Y", "S"]], - "stabs": null, - "staccato": [["S"]], - "staccatos": null, - "Stacee": [["M"]], - "Stacee's": null, - "Stace": [["M"]], - "Stace's": null, - "Stacey": [["M"]], - "Stacey's": null, - "Stacia": [["M"]], - "Stacia's": null, - "Stacie": [["M"]], - "Stacie's": null, - "Staci": [["M"]], - "Staci's": null, - "stackable": null, - "stacker": [["M"]], - "stacker's": null, - "stack's": null, - "stack": [["U", "S", "D", "G"]], - "unstack": null, - "unstacks": null, - "unstacked": null, - "unstacking": null, - "stacks": null, - "stacked": null, - "stacking": null, - "Stacy": [["M"]], - "Stacy's": null, - "stadias": null, - "stadia's": null, - "stadium": [["M", "S"]], - "stadium's": null, - "stadiums": null, - "Stael": [["M"]], - "Stael's": null, - "Stafani": [["M"]], - "Stafani's": null, - "staff": [["A", "D", "S", "G"]], - "restaff": null, - "restaffed": null, - "restaffs": null, - "restaffing": null, - "staffed": null, - "staffs": null, - "staffing": null, - "Staffard": [["M"]], - "Staffard's": null, - "staffer": [["M", "S"]], - "staffer's": null, - "staffers": null, - "Stafford": [["M"]], - "Stafford's": null, - "Staffordshire": [["M"]], - "Staffordshire's": null, - "staffroom": null, - "staff's": null, - "Staford": [["M"]], - "Staford's": null, - "stag": [["D", "R", "M", "J", "S", "G", "Z"]], - "staged": null, - "stager": [["M"]], - "stag's": null, - "stagings": null, - "stags": null, - "staging": [["M"]], - "stagers": null, - "stagecoach": [["M", "S"]], - "stagecoach's": null, - "stagecoaches": null, - "stagecraft": [["M", "S"]], - "stagecraft's": null, - "stagecrafts": null, - "stagehand": [["M", "S"]], - "stagehand's": null, - "stagehands": null, - "stager's": null, - "stage": [["S", "M"]], - "stages": null, - "stage's": null, - "stagestruck": null, - "stagflation": [["S", "M"]], - "stagflations": null, - "stagflation's": null, - "stagged": null, - "staggerer": [["M"]], - "staggerer's": null, - "stagger": [["G", "S", "J", "D", "R"]], - "staggering": [["Y"]], - "staggers": [["M"]], - "staggerings": null, - "staggered": null, - "staggeringly": null, - "staggers's": null, - "stagging": null, - "staginess": [["M"]], - "staginess's": null, - "staging's": null, - "stagnancy": [["S", "M"]], - "stagnancies": null, - "stagnancy's": null, - "stagnant": [["Y"]], - "stagnantly": null, - "stagnate": [["N", "G", "D", "S", "X"]], - "stagnation": [["M"]], - "stagnating": null, - "stagnated": null, - "stagnates": null, - "stagnations": null, - "stagnation's": null, - "stagy": [["P", "T", "R"]], - "stagiest": null, - "stagier": null, - "Stahl": [["M"]], - "Stahl's": null, - "staidness": [["M", "S"]], - "staidness's": null, - "staidnesses": null, - "staid": [["Y", "R", "T", "P"]], - "staidly": null, - "staider": null, - "staidest": null, - "stained": [["U"]], - "unstained": null, - "stainer": [["M"]], - "stainer's": null, - "stainless": [["Y", "S"]], - "stainlessly": null, - "stainlesses": null, - "stain": [["S", "G", "R", "D"]], - "stains": null, - "staining": null, - "staircase": [["S", "M"]], - "staircases": null, - "staircase's": null, - "stair": [["M", "S"]], - "stair's": null, - "stairs": null, - "stairway": [["S", "M"]], - "stairways": null, - "stairway's": null, - "stairwell": [["M", "S"]], - "stairwell's": null, - "stairwells": null, - "stake": [["D", "S", "G", "M"]], - "staked": null, - "stakes": null, - "staking": null, - "stake's": null, - "stakeholder": [["S"]], - "stakeholders": null, - "stakeout": [["S", "M"]], - "stakeouts": null, - "stakeout's": null, - "stalactite": [["S", "M"]], - "stalactites": null, - "stalactite's": null, - "stalag": [["M"]], - "stalag's": null, - "stalagmite": [["S", "M"]], - "stalagmites": null, - "stalagmite's": null, - "stalemate": [["S", "D", "M", "G"]], - "stalemates": null, - "stalemated": null, - "stalemate's": null, - "stalemating": null, - "staleness": [["M", "S"]], - "staleness's": null, - "stalenesses": null, - "stale": [["P", "G", "Y", "T", "D", "S", "R"]], - "staling": null, - "stalely": null, - "stalest": null, - "staled": null, - "stales": null, - "staler": null, - "Staley": [["M"]], - "Staley's": null, - "Stalingrad": [["M"]], - "Stalingrad's": null, - "Stalinist": null, - "Stalin": [["S", "M"]], - "Stalins": null, - "Stalin's": null, - "stalker": [["M"]], - "stalker's": null, - "stalk": [["M", "R", "D", "S", "G", "Z", "J"]], - "stalk's": null, - "stalked": null, - "stalks": null, - "stalking": null, - "stalkers": null, - "stalkings": null, - "stall": [["D", "M", "S", "J", "G"]], - "stalled": [["I"]], - "stall's": null, - "stalls": [["I"]], - "stallings": null, - "stalling": null, - "stallholders": null, - "stallion": [["S", "M"]], - "stallions": null, - "stallion's": null, - "Stallone": [["M"]], - "Stallone's": null, - "stalwartness": [["M"]], - "stalwartness's": null, - "stalwart": [["P", "Y", "S"]], - "stalwartly": null, - "stalwarts": null, - "Sta": [["M"]], - "Sta's": null, - "stamen": [["M", "S"]], - "stamen's": null, - "stamens": null, - "Stamford": [["M"]], - "Stamford's": null, - "stamina": [["S", "M"]], - "staminas": null, - "stamina's": null, - "staminate": null, - "stammer": [["D", "R", "S", "Z", "G"]], - "stammered": null, - "stammerer": [["M"]], - "stammers": null, - "stammerers": null, - "stammering": [["Y"]], - "stammerer's": null, - "stammeringly": null, - "stampede": [["M", "G", "D", "R", "S"]], - "stampede's": null, - "stampeding": null, - "stampeded": null, - "stampeder": [["M"]], - "stampedes": null, - "stampeder's": null, - "stamped": [["U"]], - "unstamped": null, - "stamper": [["M"]], - "stamper's": null, - "stamp": [["R", "D", "S", "G", "Z", "J"]], - "stamps": null, - "stamping": null, - "stampers": null, - "stampings": null, - "stance": [["M", "I", "S"]], - "stance's": null, - "instance's": null, - "instances": null, - "stances": null, - "stancher": [["M"]], - "stancher's": null, - "stanch": [["G", "D", "R", "S", "T"]], - "stanching": null, - "stanched": null, - "stanches": null, - "stanchest": null, - "stanchion": [["S", "G", "M", "D"]], - "stanchions": null, - "stanchioning": null, - "stanchion's": null, - "stanchioned": null, - "standalone": null, - "standardization": [["A", "M", "S"]], - "restandardization": null, - "restandardization's": null, - "restandardizations": null, - "standardization's": null, - "standardizations": null, - "standardized": [["U"]], - "unstandardized": null, - "standardize": [["G", "Z", "D", "S", "R"]], - "standardizing": null, - "standardizers": null, - "standardizes": [["A"]], - "standardizer": [["M"]], - "standardizer's": null, - "restandardizes": null, - "standard": [["Y", "M", "S"]], - "standardly": null, - "standard's": null, - "standards": null, - "standby": null, - "standbys": null, - "standee": [["M", "S"]], - "standee's": null, - "standees": null, - "Standford": [["M"]], - "Standford's": null, - "standing": [["M"]], - "standing's": null, - "Standish": [["M"]], - "Standish's": null, - "standoffish": null, - "standoff": [["S", "M"]], - "standoffs": null, - "standoff's": null, - "standout": [["M", "S"]], - "standout's": null, - "standouts": null, - "standpipe": [["M", "S"]], - "standpipe's": null, - "standpipes": null, - "standpoint": [["S", "M"]], - "standpoints": null, - "standpoint's": null, - "stand": [["S", "J", "G", "Z", "R"]], - "stands": null, - "standings": null, - "standers": null, - "stander": null, - "standstill": [["S", "M"]], - "standstills": null, - "standstill's": null, - "Stanfield": [["M"]], - "Stanfield's": null, - "Stanford": [["M"]], - "Stanford's": null, - "Stanislas": [["M"]], - "Stanislas's": null, - "Stanislaus": [["M"]], - "Stanislaus's": null, - "Stanislavsky": [["M"]], - "Stanislavsky's": null, - "Stanislaw": [["M"]], - "Stanislaw's": null, - "stank": [["S"]], - "stanks": null, - "Stanleigh": [["M"]], - "Stanleigh's": null, - "Stanley": [["M"]], - "Stanley's": null, - "Stanly": [["M"]], - "Stanly's": null, - "stannic": null, - "stannous": null, - "Stanton": [["M"]], - "Stanton's": null, - "Stanwood": [["M"]], - "Stanwood's": null, - "Stan": [["Y", "M", "S"]], - "Stan's": null, - "Stans": null, - "stanza": [["M", "S"]], - "stanza's": null, - "stanzas": null, - "staph": [["M"]], - "staph's": null, - "staphs": null, - "staphylococcal": null, - "staphylococci": null, - "staphylococcus": [["M"]], - "staphylococcus's": null, - "stapled": [["U"]], - "unstapled": null, - "stapler": [["M"]], - "stapler's": null, - "Stapleton": [["M"]], - "Stapleton's": null, - "staple": [["Z", "R", "S", "D", "G", "M"]], - "staplers": null, - "staples": null, - "stapling": null, - "staple's": null, - "starboard": [["S", "D", "M", "G"]], - "starboards": null, - "starboarded": null, - "starboard's": null, - "starboarding": null, - "starchily": null, - "starchiness": [["M", "S"]], - "starchiness's": null, - "starchinesses": null, - "starch": [["M", "D", "S", "G"]], - "starch's": null, - "starched": null, - "starches": null, - "starching": null, - "starchy": [["T", "R", "P"]], - "starchiest": null, - "starchier": null, - "stardom": [["M", "S"]], - "stardom's": null, - "stardoms": null, - "star": [["D", "R", "M", "G", "Z", "S"]], - "stared": null, - "starer": null, - "star's": null, - "staring": [["U"]], - "starers": null, - "stars": null, - "stardust": [["M", "S"]], - "stardust's": null, - "stardusts": null, - "stare": [["S"]], - "stares": null, - "starfish": [["S", "M"]], - "starfishes": null, - "starfish's": null, - "Stargate": [["M"]], - "Stargate's": null, - "stargaze": [["Z", "G", "D", "R", "S"]], - "stargazers": null, - "stargazing": null, - "stargazed": null, - "stargazer": null, - "stargazes": null, - "unstaring": null, - "Starkey": [["M"]], - "Starkey's": null, - "Stark": [["M"]], - "Stark's": null, - "starkness": [["M", "S"]], - "starkness's": null, - "starknesses": null, - "stark": [["S", "P", "G", "T", "Y", "R", "D"]], - "starks": null, - "starking": null, - "starkest": null, - "starkly": null, - "starker": null, - "starked": null, - "Starla": [["M"]], - "Starla's": null, - "Starlene": [["M"]], - "Starlene's": null, - "starless": null, - "starlet": [["M", "S"]], - "starlet's": null, - "starlets": null, - "starlight": [["M", "S"]], - "starlight's": null, - "starlights": null, - "starling": [["M", "S"]], - "starling's": null, - "starlings": null, - "Starlin": [["M"]], - "Starlin's": null, - "starlit": null, - "Star": [["M"]], - "Star's": null, - "starred": null, - "starring": null, - "Starr": [["M"]], - "Starr's": null, - "starry": [["T", "R"]], - "starriest": null, - "starrier": null, - "starship": null, - "starstruck": null, - "start": [["A", "S", "G", "D", "R"]], - "restarts": null, - "restarting": null, - "restarted": null, - "restarter": null, - "starts": null, - "starting": null, - "started": null, - "starter": [["M", "S"]], - "starter's": null, - "starters": null, - "startle": [["G", "D", "S"]], - "startling": [["P", "Y"]], - "startled": null, - "startles": null, - "startlingness": null, - "startlingly": null, - "startup": [["S", "M"]], - "startups": null, - "startup's": null, - "starvation": [["M", "S"]], - "starvation's": null, - "starvations": null, - "starveling": [["M"]], - "starveling's": null, - "starver": [["M"]], - "starver's": null, - "starve": [["R", "S", "D", "G"]], - "starves": null, - "starved": null, - "starving": null, - "stash": [["G", "S", "D"]], - "stashing": null, - "stashes": null, - "stashed": null, - "stasis": [["M"]], - "stasis's": null, - "stat": [["D", "R", "S", "G", "V"]], - "stated": [["U"]], - "stater": [["M"]], - "stats": null, - "stating": null, - "stative": null, - "statecraft": [["M", "S"]], - "statecraft's": null, - "statecrafts": null, - "unstated": null, - "statehood": [["M", "S"]], - "statehood's": null, - "statehoods": null, - "statehouse": [["S"]], - "statehouses": null, - "Statehouse's": null, - "state": [["I", "G", "A", "S", "D"]], - "restating": null, - "restates": null, - "restated": null, - "states": [["K"]], - "statelessness": [["M", "S"]], - "statelessness's": null, - "statelessnesses": null, - "stateless": [["P"]], - "stateliness": [["M", "S"]], - "stateliness's": null, - "statelinesses": null, - "stately": [["P", "R", "T"]], - "statelier": null, - "stateliest": null, - "statement": [["M", "S", "A"]], - "statement's": null, - "restatement's": null, - "statements": null, - "restatements": null, - "Staten": [["M"]], - "Staten's": null, - "stater's": null, - "stateroom": [["S", "M"]], - "staterooms": null, - "stateroom's": null, - "stateside": null, - "state's": [["K"]], - "prostate's": null, - "prostates": null, - "statesmanlike": null, - "statesman": [["M", "Y"]], - "statesman's": null, - "statesmanly": null, - "statesmanship": [["S", "M"]], - "statesmanships": null, - "statesmanship's": null, - "statesmen": null, - "stateswoman": null, - "stateswomen": null, - "statewide": null, - "statical": [["Y"]], - "statically": null, - "static": [["S"]], - "statics": [["M"]], - "statics's": null, - "stationarity": null, - "stationary": [["S"]], - "stationaries": null, - "stationer": [["M"]], - "stationer's": null, - "stationery": [["M", "S"]], - "stationery's": null, - "stationeries": null, - "stationmaster": [["M"]], - "stationmaster's": null, - "station": [["S", "Z", "G", "M", "D", "R"]], - "stations": null, - "stationers": null, - "stationing": null, - "station's": null, - "stationed": null, - "statistical": [["Y"]], - "statistically": null, - "statistician": [["M", "S"]], - "statistician's": null, - "statisticians": null, - "statistic": [["M", "S"]], - "statistic's": null, - "statistics": null, - "Statler": [["M"]], - "Statler's": null, - "stator": [["S", "M"]], - "stators": null, - "stator's": null, - "statuary": [["S", "M"]], - "statuaries": null, - "statuary's": null, - "statue": [["M", "S", "D"]], - "statue's": null, - "statues": null, - "statued": null, - "statuesque": [["Y", "P"]], - "statuesquely": null, - "statuesqueness": null, - "statuette": [["M", "S"]], - "statuette's": null, - "statuettes": null, - "stature": [["M", "S"]], - "stature's": null, - "statures": null, - "status": [["S", "M"]], - "statuses": null, - "status's": null, - "statute": [["S", "M"]], - "statutes": null, - "statute's": null, - "statutorily": null, - "statutory": [["P"]], - "statutoriness": null, - "Stauffer": [["M"]], - "Stauffer's": null, - "staunchness": [["S"]], - "staunchnesses": null, - "staunch": [["P", "D", "R", "S", "Y", "T", "G"]], - "staunched": null, - "stauncher": null, - "staunches": null, - "staunchly": null, - "staunchest": null, - "staunching": null, - "stave": [["D", "G", "M"]], - "staved": null, - "staving": null, - "stave's": null, - "Stavro": [["M", "S"]], - "Stavro's": null, - "Stavros": null, - "stay": [["D", "R", "G", "Z", "S"]], - "stayed": null, - "stayer": [["M"]], - "staying": null, - "stayers": null, - "stays": null, - "stayer's": null, - "std": null, - "STD": null, - "stdio": null, - "steadfastness": [["M", "S"]], - "steadfastness's": null, - "steadfastnesses": null, - "steadfast": [["P", "Y"]], - "steadfastly": null, - "steadily": [["U"]], - "unsteadily": null, - "steadiness's": null, - "steadiness": [["U", "S"]], - "unsteadiness": null, - "unsteadinesses": null, - "steadinesses": null, - "steading": [["M"]], - "steading's": null, - "stead": [["S", "G", "D", "M"]], - "steads": null, - "steaded": null, - "stead's": null, - "steady": [["D", "R", "S", "U", "T", "G", "P"]], - "steadied": null, - "unsteadied": null, - "steadier": null, - "unsteadier": null, - "steadies": null, - "unsteadies": null, - "unsteady": null, - "unsteadying": null, - "steadiest": null, - "steadying": null, - "steakhouse": [["S", "M"]], - "steakhouses": null, - "steakhouse's": null, - "steak": [["S", "M"]], - "steaks": null, - "steak's": null, - "stealer": [["M"]], - "stealer's": null, - "stealing": [["M"]], - "stealing's": null, - "steal": [["S", "R", "H", "G"]], - "steals": null, - "stealth": [["M"]], - "stealthily": null, - "stealthiness": [["M", "S"]], - "stealthiness's": null, - "stealthinesses": null, - "stealth's": null, - "stealths": null, - "stealthy": [["P", "T", "R"]], - "stealthiest": null, - "stealthier": null, - "steamboat": [["M", "S"]], - "steamboat's": null, - "steamboats": null, - "steamer": [["M", "D", "G"]], - "steamer's": null, - "steamered": null, - "steamering": null, - "steamfitter": [["S"]], - "steamfitters": null, - "steamfitting": [["S"]], - "steamfittings": null, - "steamily": null, - "steaminess": [["S", "M"]], - "steaminesses": null, - "steaminess's": null, - "steamroller": [["D", "M", "G"]], - "steamrollered": null, - "steamroller's": null, - "steamrollering": null, - "steamroll": [["G", "Z", "R", "D", "S"]], - "steamrolling": null, - "steamrollers": null, - "steamrolled": null, - "steamrolls": null, - "steam": [["S", "G", "Z", "R", "D", "M", "J"]], - "steams": null, - "steaming": null, - "steamers": null, - "steamed": null, - "steam's": null, - "steamings": null, - "steamship": [["S", "M"]], - "steamships": null, - "steamship's": null, - "steamy": [["R", "S", "T", "P"]], - "steamier": null, - "steamies": null, - "steamiest": null, - "Stearne": [["M"]], - "Stearne's": null, - "Stearn": [["S", "M"]], - "Stearns": null, - "Stearn's": null, - "steed": [["S", "M"]], - "steeds": null, - "steed's": null, - "Steele": [["M"]], - "Steele's": null, - "steeliness": [["S", "M"]], - "steelinesses": null, - "steeliness's": null, - "steelmaker": [["M"]], - "steelmaker's": null, - "steel": [["S", "D", "M", "G", "Z"]], - "steels": null, - "steeled": null, - "steel's": null, - "steeling": null, - "steelers": null, - "steelworker": [["M"]], - "steelworker's": null, - "steelwork": [["Z", "S", "M", "R"]], - "steelworkers": null, - "steelworks": null, - "steelwork's": null, - "steelyard": [["M", "S"]], - "steelyard's": null, - "steelyards": null, - "steely": [["T", "P", "R", "S"]], - "steeliest": null, - "steelier": null, - "steelies": null, - "Steen": [["M"]], - "Steen's": null, - "steepen": [["G", "D"]], - "steepening": null, - "steepened": null, - "steeper": [["M"]], - "steeper's": null, - "steeplebush": [["M"]], - "steeplebush's": null, - "steeplechase": [["G", "M", "S", "D"]], - "steeplechasing": null, - "steeplechase's": null, - "steeplechases": null, - "steeplechased": null, - "steeplejack": [["M", "S"]], - "steeplejack's": null, - "steeplejacks": null, - "steeple": [["M", "S"]], - "steeple's": null, - "steeples": null, - "steepness": [["S"]], - "steepnesses": null, - "steep": [["S", "Y", "R", "N", "D", "P", "G", "T", "X"]], - "steeps": null, - "steeply": null, - "steeped": null, - "steeping": null, - "steepest": null, - "steepens": null, - "steerage": [["M", "S"]], - "steerage's": null, - "steerages": null, - "steerer": [["M"]], - "steerer's": null, - "steer": [["S", "G", "B", "R", "D", "J"]], - "steers": null, - "steering": null, - "steerable": null, - "steered": null, - "steerings": null, - "steersman": [["M"]], - "steersman's": null, - "steersmen": null, - "steeves": null, - "Stefa": [["M"]], - "Stefa's": null, - "Stefania": [["M"]], - "Stefania's": null, - "Stefanie": [["M"]], - "Stefanie's": null, - "Stefan": [["M"]], - "Stefan's": null, - "Stefano": [["M"]], - "Stefano's": null, - "Steffane": [["M"]], - "Steffane's": null, - "Steffen": [["M"]], - "Steffen's": null, - "Steffie": [["M"]], - "Steffie's": null, - "Steffi": [["M"]], - "Steffi's": null, - "stegosauri": null, - "stegosaurus": [["S"]], - "stegosauruses": null, - "Steinbeck": [["S", "M"]], - "Steinbecks": null, - "Steinbeck's": null, - "Steinberg": [["M"]], - "Steinberg's": null, - "Steinem": [["M"]], - "Steinem's": null, - "Steiner": [["M"]], - "Steiner's": null, - "Steinmetz": [["M"]], - "Steinmetz's": null, - "Stein": [["R", "M"]], - "Stein's": null, - "stein": [["S", "G", "Z", "M", "R", "D"]], - "steins": null, - "steining": null, - "steiners": null, - "stein's": null, - "steiner": null, - "steined": null, - "Steinway": [["M"]], - "Steinway's": null, - "Stella": [["M"]], - "Stella's": null, - "stellar": null, - "stellated": null, - "Ste": [["M"]], - "Ste's": null, - "stemless": null, - "stemmed": [["U"]], - "unstemmed": null, - "stemming": null, - "stem": [["M", "S"]], - "stem's": null, - "stems": null, - "stemware": [["M", "S"]], - "stemware's": null, - "stemwares": null, - "stench": [["G", "M", "D", "S"]], - "stenching": null, - "stench's": null, - "stenched": null, - "stenches": null, - "stenciler": [["M"]], - "stenciler's": null, - "stencil": [["G", "D", "R", "M", "S", "Z"]], - "stenciling": null, - "stenciled": null, - "stencil's": null, - "stencils": null, - "stencilers": null, - "stencillings": null, - "Stendhal": [["M"]], - "Stendhal's": null, - "Stendler": [["M"]], - "Stendler's": null, - "Stengel": [["M"]], - "Stengel's": null, - "stenographer": [["S", "M"]], - "stenographers": null, - "stenographer's": null, - "stenographic": null, - "stenography": [["S", "M"]], - "stenographies": null, - "stenography's": null, - "steno": [["S", "M"]], - "stenos": null, - "steno's": null, - "stenotype": [["M"]], - "stenotype's": null, - "stentorian": null, - "stepbrother": [["M", "S"]], - "stepbrother's": null, - "stepbrothers": null, - "stepchild": [["M"]], - "stepchild's": null, - "stepchildren": null, - "stepdaughter": [["M", "S"]], - "stepdaughter's": null, - "stepdaughters": null, - "stepfather": [["S", "M"]], - "stepfathers": null, - "stepfather's": null, - "Stepha": [["M"]], - "Stepha's": null, - "Stephana": [["M"]], - "Stephana's": null, - "Stephanie": [["M"]], - "Stephanie's": null, - "Stephani": [["M"]], - "Stephani's": null, - "Stephan": [["M"]], - "Stephan's": null, - "Stephannie": [["M"]], - "Stephannie's": null, - "Stephanus": [["M"]], - "Stephanus's": null, - "Stephenie": [["M"]], - "Stephenie's": null, - "Stephen": [["M", "S"]], - "Stephen's": null, - "Stephens": null, - "Stephenson": [["M"]], - "Stephenson's": null, - "Stephie": [["M"]], - "Stephie's": null, - "Stephi": [["M"]], - "Stephi's": null, - "Stephine": [["M"]], - "Stephine's": null, - "stepladder": [["S", "M"]], - "stepladders": null, - "stepladder's": null, - "step": [["M", "I", "S"]], - "step's": null, - "instep's": null, - "instep": null, - "insteps": null, - "steps": null, - "stepmother": [["S", "M"]], - "stepmothers": null, - "stepmother's": null, - "stepparent": [["S", "M"]], - "stepparents": null, - "stepparent's": null, - "stepper": [["M"]], - "stepper's": null, - "steppe": [["R", "S", "D", "G", "M", "Z"]], - "steppes": null, - "stepped": null, - "stepping": null, - "steppe's": null, - "steppers": null, - "steppingstone": [["S"]], - "steppingstones": null, - "stepsister": [["S", "M"]], - "stepsisters": null, - "stepsister's": null, - "stepson": [["S", "M"]], - "stepsons": null, - "stepson's": null, - "stepwise": null, - "stereographic": null, - "stereography": [["M"]], - "stereography's": null, - "stereo": [["G", "S", "D", "M"]], - "stereoing": null, - "stereos": null, - "stereoed": null, - "stereo's": null, - "stereophonic": null, - "stereoscope": [["M", "S"]], - "stereoscope's": null, - "stereoscopes": null, - "stereoscopic": null, - "stereoscopically": null, - "stereoscopy": [["M"]], - "stereoscopy's": null, - "stereotype": [["G", "M", "Z", "D", "R", "S"]], - "stereotyping": null, - "stereotype's": null, - "stereotypers": null, - "stereotyped": null, - "stereotyper": null, - "stereotypes": null, - "stereotypic": null, - "stereotypical": [["Y"]], - "stereotypically": null, - "sterile": null, - "sterility": [["S", "M"]], - "sterilities": null, - "sterility's": null, - "sterilization": [["S", "M"]], - "sterilizations": null, - "sterilization's": null, - "sterilized": [["U"]], - "unsterilized": null, - "sterilize": [["R", "S", "D", "G", "Z"]], - "sterilizer": null, - "sterilizes": [["A"]], - "sterilizing": null, - "sterilizers": null, - "resterilizes": null, - "Sterling": [["M"]], - "Sterling's": null, - "sterling": [["M", "P", "Y", "S"]], - "sterling's": null, - "sterlingness": [["M"]], - "sterlingly": null, - "sterlings": null, - "sterlingness's": null, - "sternal": null, - "Sternberg": [["M"]], - "Sternberg's": null, - "Sterne": [["M"]], - "Sterne's": null, - "Stern": [["M"]], - "Stern's": null, - "sternness": [["S"]], - "sternnesses": null, - "Sterno": null, - "stern": [["S", "Y", "R", "D", "P", "G", "T"]], - "sterns": null, - "sternly": null, - "sterner": null, - "sterned": null, - "sterning": null, - "sternest": null, - "sternum": [["S", "M"]], - "sternums": null, - "sternum's": null, - "steroidal": null, - "steroid": [["M", "S"]], - "steroid's": null, - "steroids": null, - "stertorous": null, - "Stesha": [["M"]], - "Stesha's": null, - "stethoscope": [["S", "M"]], - "stethoscopes": null, - "stethoscope's": null, - "stet": [["M", "S"]], - "stet's": null, - "stets": null, - "stetson": [["M", "S"]], - "stetson's": null, - "stetsons": null, - "Stetson": [["S", "M"]], - "Stetsons": null, - "Stetson's": null, - "stetted": null, - "stetting": null, - "Steuben": [["M"]], - "Steuben's": null, - "Stevana": [["M"]], - "Stevana's": null, - "stevedore": [["G", "M", "S", "D"]], - "stevedoring": null, - "stevedore's": null, - "stevedores": null, - "stevedored": null, - "Steve": [["M"]], - "Steve's": null, - "Stevena": [["M"]], - "Stevena's": null, - "Steven": [["M", "S"]], - "Steven's": null, - "Stevens": null, - "Stevenson": [["M"]], - "Stevenson's": null, - "Stevie": [["M"]], - "Stevie's": null, - "Stevy": [["M"]], - "Stevy's": null, - "steward": [["D", "M", "S", "G"]], - "stewarded": null, - "steward's": null, - "stewards": null, - "stewarding": null, - "stewardess": [["S", "M"]], - "stewardesses": null, - "stewardess's": null, - "Steward": [["M"]], - "Steward's": null, - "stewardship": [["M", "S"]], - "stewardship's": null, - "stewardships": null, - "Stewart": [["M"]], - "Stewart's": null, - "stew": [["G", "D", "M", "S"]], - "stewing": null, - "stewed": null, - "stew's": null, - "stews": null, - "st": [["G", "B", "J"]], - "sting": [["G", "Z", "R"]], - "stings": null, - "sticker": [["M"]], - "sticker's": null, - "stickily": null, - "stickiness": [["S", "M"]], - "stickinesses": null, - "stickiness's": null, - "stickleback": [["M", "S"]], - "stickleback's": null, - "sticklebacks": null, - "stickle": [["G", "Z", "D", "R"]], - "stickling": null, - "sticklers": null, - "stickled": null, - "stickler": [["M"]], - "stickler's": null, - "stick": [["M", "R", "D", "S", "G", "Z"]], - "stick's": null, - "sticked": null, - "sticks": null, - "sticking": null, - "stickers": null, - "stickpin": [["S", "M"]], - "stickpins": null, - "stickpin's": null, - "stickup": [["S", "M"]], - "stickups": null, - "stickup's": null, - "sticky": [["G", "P", "T", "D", "R", "S"]], - "stickying": null, - "stickiest": null, - "stickied": null, - "stickier": null, - "stickies": null, - "Stieglitz": [["M"]], - "Stieglitz's": null, - "stiffen": [["J", "Z", "R", "D", "G"]], - "stiffenings": null, - "stiffeners": null, - "stiffener": null, - "stiffened": null, - "stiffening": null, - "stiff": [["G", "T", "X", "P", "S", "Y", "R", "N", "D"]], - "stiffing": null, - "stiffest": null, - "stiffens": null, - "stiffness": [["M", "S"]], - "stiffs": null, - "stiffly": null, - "stiffer": null, - "stiffed": null, - "stiffness's": null, - "stiffnesses": null, - "stifle": [["G", "J", "R", "S", "D"]], - "stifling": [["Y"]], - "stiflings": null, - "stifler": [["M"]], - "stifles": null, - "stifled": null, - "stifler's": null, - "stiflingly": null, - "stigma": [["M", "S"]], - "stigma's": null, - "stigmas": null, - "stigmata": null, - "stigmatic": [["S"]], - "stigmatics": null, - "stigmatization": [["C"]], - "destigmatization": null, - "stigmatizations": null, - "stigmatization's": null, - "stigmatize": [["D", "S", "G"]], - "stigmatized": [["U"]], - "stigmatizes": null, - "stigmatizing": null, - "unstigmatized": [["S", "M"]], - "stile": [["G", "M", "D", "S"]], - "stiling": null, - "stile's": null, - "stiled": null, - "stiles": null, - "stiletto": [["M", "D", "S", "G"]], - "stiletto's": null, - "stilettoed": null, - "stilettos": null, - "stilettoing": null, - "stillbirth": [["M"]], - "stillbirth's": null, - "stillbirths": null, - "stillborn": [["S"]], - "stillborns": null, - "stiller": [["M", "I"]], - "stiller's": null, - "instiller's": null, - "instiller": null, - "stillest": null, - "Stillman": [["M"]], - "Stillman's": null, - "Stillmann": [["M"]], - "Stillmann's": null, - "stillness": [["M", "S"]], - "stillness's": null, - "stillnesses": null, - "still": [["R", "D", "I", "G", "S"]], - "stilled": null, - "instilled": null, - "instill": null, - "instilling": null, - "instills": null, - "stilling": null, - "stills": null, - "Stillwell": [["M"]], - "Stillwell's": null, - "stilted": [["P", "Y"]], - "stiltedness": null, - "stiltedly": null, - "stilt": [["G", "D", "M", "S"]], - "stilting": null, - "stilt's": null, - "stilts": null, - "Stilton": [["M", "S"]], - "Stilton's": null, - "Stiltons": null, - "Stimson": [["M"]], - "Stimson's": null, - "stimulant": [["M", "S"]], - "stimulant's": null, - "stimulants": null, - "stimulated": [["U"]], - "unstimulated": null, - "stimulate": [["S", "D", "V", "G", "N", "X"]], - "stimulates": null, - "stimulative": [["S"]], - "stimulating": null, - "stimulation": [["M"]], - "stimulations": null, - "stimulation's": null, - "stimulatives": null, - "stimulator": [["M"]], - "stimulator's": null, - "stimulatory": null, - "stimuli": [["M"]], - "stimuli's": null, - "stimulus": [["M", "S"]], - "stimulus's": null, - "stimuluses": null, - "Stine": [["M"]], - "Stine's": null, - "stinger": [["M"]], - "stinger's": null, - "stinging": [["Y"]], - "stingers": null, - "stingily": null, - "stinginess": [["M", "S"]], - "stinginess's": null, - "stinginesses": null, - "stingingly": null, - "stingray": [["M", "S"]], - "stingray's": null, - "stingrays": null, - "stingy": [["R", "T", "P"]], - "stingier": null, - "stingiest": null, - "stinkbug": [["S"]], - "stinkbugs": null, - "stinker": [["M"]], - "stinker's": null, - "stink": [["G", "Z", "R", "J", "S"]], - "stinking": [["Y"]], - "stinkers": null, - "stinkings": null, - "stinks": null, - "stinkingly": null, - "stinkpot": [["M"]], - "stinkpot's": null, - "Stinky": [["M"]], - "Stinky's": null, - "stinky": [["R", "T"]], - "stinkier": null, - "stinkiest": null, - "stinter": [["M"]], - "stinter's": null, - "stinting": [["U"]], - "unstinting": [["Y"]], - "stint": [["J", "G", "R", "D", "M", "S"]], - "stintings": null, - "stinted": null, - "stint's": null, - "stints": null, - "stipendiary": null, - "stipend": [["M", "S"]], - "stipend's": null, - "stipends": null, - "stipple": [["J", "D", "R", "S", "G"]], - "stipplings": null, - "stippled": null, - "stippler": [["M"]], - "stipples": null, - "stippling": null, - "stippler's": null, - "stipulate": [["X", "N", "G", "S", "D"]], - "stipulations": null, - "stipulation": [["M"]], - "stipulating": null, - "stipulates": null, - "stipulated": null, - "stipulation's": null, - "Stirling": [["M"]], - "Stirling's": null, - "stirred": [["U"]], - "unstirred": null, - "stirrer": [["S", "M"]], - "stirrers": null, - "stirrer's": null, - "stirring": [["Y", "S"]], - "stirringly": null, - "stirrings": null, - "stirrup": [["S", "M"]], - "stirrups": null, - "stirrup's": null, - "stir": [["S"]], - "stirs": null, - "stitch": [["A", "S", "D", "G"]], - "restitch": null, - "restitches": null, - "restitched": null, - "restitching": null, - "stitches": null, - "stitched": null, - "stitching": [["M", "S"]], - "stitcher": [["M"]], - "stitcher's": null, - "stitchery": [["S"]], - "stitcheries": null, - "stitching's": null, - "stitchings": null, - "stitch's": null, - "St": [["M"]], - "St's": null, - "stoat": [["S", "M"]], - "stoats": null, - "stoat's": null, - "stochastic": null, - "stochastically": null, - "stochasticity": null, - "stockade": [["S", "D", "M", "G"]], - "stockades": null, - "stockaded": null, - "stockade's": null, - "stockading": null, - "stockbreeder": [["S", "M"]], - "stockbreeders": null, - "stockbreeder's": null, - "stockbroker": [["M", "S"]], - "stockbroker's": null, - "stockbrokers": null, - "stockbroking": [["S"]], - "stockbrokings": null, - "stocker": [["S", "M"]], - "stockers": null, - "stocker's": null, - "Stockhausen": [["M"]], - "Stockhausen's": null, - "stockholder": [["S", "M"]], - "stockholders": null, - "stockholder's": null, - "Stockholm": [["M"]], - "Stockholm's": null, - "stockily": null, - "stockiness": [["S", "M"]], - "stockinesses": null, - "stockiness's": null, - "stockinet's": null, - "stockinette": [["S"]], - "stockinettes": null, - "stocking": [["M", "D", "S"]], - "stocking's": null, - "stockinged": null, - "stockings": null, - "stockist": [["M", "S"]], - "stockist's": null, - "stockists": null, - "stockpile": [["G", "R", "S", "D"]], - "stockpiling": null, - "stockpiler": [["M"]], - "stockpiles": null, - "stockpiled": null, - "stockpiler's": null, - "stockpot": [["M", "S"]], - "stockpot's": null, - "stockpots": null, - "stockroom": [["M", "S"]], - "stockroom's": null, - "stockrooms": null, - "stock's": null, - "stock": [["S", "G", "A", "D"]], - "stocks": null, - "restocks": null, - "restocking": null, - "restock": null, - "restocked": null, - "stocked": null, - "stocktaking": [["M", "S"]], - "stocktaking's": null, - "stocktakings": null, - "Stockton": [["M"]], - "Stockton's": null, - "stockyard": [["S", "M"]], - "stockyards": null, - "stockyard's": null, - "stocky": [["P", "R", "T"]], - "stockier": null, - "stockiest": null, - "Stoddard": [["M"]], - "Stoddard's": null, - "stodge": [["M"]], - "stodge's": null, - "stodgily": null, - "stodginess": [["S"]], - "stodginesses": null, - "stodgy": [["T", "R", "P"]], - "stodgiest": null, - "stodgier": null, - "stogy": [["S", "M"]], - "stogies": null, - "stogy's": null, - "stoical": [["Y"]], - "stoically": null, - "stoichiometric": null, - "stoichiometry": [["M"]], - "stoichiometry's": null, - "stoicism": [["S", "M"]], - "stoicisms": null, - "stoicism's": null, - "Stoicism": [["S", "M"]], - "Stoicisms": null, - "Stoicism's": null, - "stoic": [["M", "S"]], - "stoic's": null, - "stoics": null, - "Stoic": [["M", "S"]], - "Stoic's": null, - "Stoics": null, - "stoke": [["D", "S", "R", "G", "Z"]], - "stoked": null, - "stokes": [["M"]], - "stoker": [["M"]], - "stoking": null, - "stokers": null, - "stoker's": null, - "stokes's": null, - "Stokes": [["M"]], - "Stokes's": null, - "STOL": null, - "stole": [["M", "D", "S"]], - "stole's": null, - "stoled": null, - "stoles": null, - "stolen": null, - "stolidity": [["S"]], - "stolidities": null, - "stolidness": [["S"]], - "stolidnesses": null, - "stolid": [["P", "T", "Y", "R"]], - "stolidest": null, - "stolidly": null, - "stolider": null, - "stolon": [["S", "M"]], - "stolons": null, - "stolon's": null, - "stomachache": [["M", "S"]], - "stomachache's": null, - "stomachaches": null, - "stomacher": [["M"]], - "stomacher's": null, - "stomach": [["R", "S", "D", "M", "Z", "G"]], - "stomaches": null, - "stomached": null, - "stomach's": null, - "stomachers": null, - "stomaching": null, - "stomachs": null, - "stomp": [["D", "S", "G"]], - "stomped": null, - "stomps": null, - "stomping": null, - "stonecutter": [["S", "M"]], - "stonecutters": null, - "stonecutter's": null, - "stone": [["D", "S", "R", "G", "M"]], - "stoned": null, - "stones": null, - "stoner": [["M"]], - "stoning": null, - "stone's": null, - "Stonehenge": [["M"]], - "Stonehenge's": null, - "stoneless": null, - "Stone": [["M"]], - "Stone's": null, - "stonemason": [["M", "S"]], - "stonemason's": null, - "stonemasons": null, - "stoner's": null, - "stonewall": [["G", "D", "S"]], - "stonewalling": null, - "stonewalled": null, - "stonewalls": null, - "stoneware": [["M", "S"]], - "stoneware's": null, - "stonewares": null, - "stonewashed": null, - "stonework": [["S", "M"]], - "stoneworks": null, - "stonework's": null, - "stonewort": [["M"]], - "stonewort's": null, - "stonily": null, - "stoniness": [["M", "S"]], - "stoniness's": null, - "stoninesses": null, - "stony": [["T", "P", "R"]], - "stoniest": null, - "stonier": null, - "stood": null, - "stooge": [["S", "D", "G", "M"]], - "stooges": null, - "stooged": null, - "stooging": null, - "stooge's": null, - "stool": [["S", "D", "M", "G"]], - "stools": null, - "stooled": null, - "stool's": null, - "stooling": null, - "stoop": [["S", "D", "G"]], - "stoops": null, - "stooped": null, - "stooping": null, - "stopcock": [["M", "S"]], - "stopcock's": null, - "stopcocks": null, - "stopgap": [["S", "M"]], - "stopgaps": null, - "stopgap's": null, - "stoplight": [["S", "M"]], - "stoplights": null, - "stoplight's": null, - "stopover": [["M", "S"]], - "stopover's": null, - "stopovers": null, - "stoppable": [["U"]], - "unstoppable": null, - "stoppage": [["M", "S"]], - "stoppage's": null, - "stoppages": null, - "Stoppard": [["M"]], - "Stoppard's": null, - "stopped": [["U"]], - "unstopped": null, - "stopper": [["G", "M", "D", "S"]], - "stoppering": null, - "stopper's": null, - "stoppered": null, - "stoppers": null, - "stopping": [["M"]], - "stopping's": null, - "stopple": [["G", "D", "S", "M"]], - "stoppling": null, - "stoppled": null, - "stopples": null, - "stopple's": null, - "stop's": null, - "stops": [["M"]], - "stops's": null, - "stop": [["U", "S"]], - "unstop": null, - "unstops": null, - "stopwatch": [["S", "M"]], - "stopwatches": null, - "stopwatch's": null, - "storage": [["S", "M"]], - "storages": null, - "storage's": null, - "store": [["A", "D", "S", "R", "G"]], - "restored": null, - "restores": null, - "restoring": null, - "stored": null, - "stores": null, - "storer": null, - "storing": null, - "storefront": [["S", "M"]], - "storefronts": null, - "storefront's": null, - "storehouse": [["M", "S"]], - "storehouse's": null, - "storehouses": null, - "storekeeper": [["M"]], - "storekeeper's": null, - "storekeep": [["Z", "R"]], - "storekeepers": null, - "storeroom": [["S", "M"]], - "storerooms": null, - "storeroom's": null, - "store's": null, - "stork": [["S", "M"]], - "storks": null, - "stork's": null, - "stormbound": null, - "stormer": [["M"]], - "stormer's": null, - "Stormie": [["M"]], - "Stormie's": null, - "stormily": null, - "Stormi": [["M"]], - "Stormi's": null, - "storminess": [["S"]], - "storminesses": null, - "Storm": [["M"]], - "Storm's": null, - "storm": [["S", "R", "D", "M", "G", "Z"]], - "storms": null, - "stormed": null, - "storm's": null, - "storming": null, - "stormers": null, - "stormtroopers": null, - "Stormy": [["M"]], - "Stormy's": null, - "stormy": [["P", "T", "R"]], - "stormiest": null, - "stormier": null, - "storyboard": [["M", "D", "S", "G"]], - "storyboard's": null, - "storyboarded": null, - "storyboards": null, - "storyboarding": null, - "storybook": [["M", "S"]], - "storybook's": null, - "storybooks": null, - "story": [["G", "S", "D", "M"]], - "storying": null, - "stories": null, - "storied": null, - "story's": null, - "storyline": null, - "storyteller": [["S", "M"]], - "storytellers": null, - "storyteller's": null, - "storytelling": [["M", "S"]], - "storytelling's": null, - "storytellings": null, - "Stouffer": [["M"]], - "Stouffer's": null, - "stoup": [["S", "M"]], - "stoups": null, - "stoup's": null, - "stouten": [["D", "G"]], - "stoutened": null, - "stoutening": null, - "stouthearted": null, - "Stout": [["M"]], - "Stout's": null, - "stoutness": [["M", "S"]], - "stoutness's": null, - "stoutnesses": null, - "stout": [["S", "T", "Y", "R", "N", "P"]], - "stouts": null, - "stoutest": null, - "stoutly": null, - "stouter": null, - "stove": [["D", "S", "R", "G", "M"]], - "stoved": null, - "stoves": null, - "stover": [["M"]], - "stoving": null, - "stove's": null, - "stovepipe": [["S", "M"]], - "stovepipes": null, - "stovepipe's": null, - "stover's": null, - "stowage": [["S", "M"]], - "stowages": null, - "stowage's": null, - "stowaway": [["M", "S"]], - "stowaway's": null, - "stowaways": null, - "Stowe": [["M"]], - "Stowe's": null, - "stow": [["G", "D", "S"]], - "stowing": null, - "stowed": null, - "stows": null, - "Strabo": [["M"]], - "Strabo's": null, - "straddler": [["M"]], - "straddler's": null, - "straddle": [["Z", "D", "R", "S", "G"]], - "straddlers": null, - "straddled": null, - "straddles": null, - "straddling": null, - "Stradivari": [["S", "M"]], - "Stradivaris": null, - "Stradivari's": null, - "Stradivarius": [["M"]], - "Stradivarius's": null, - "strafe": [["G", "R", "S", "D"]], - "strafing": null, - "strafer": [["M"]], - "strafes": null, - "strafed": null, - "strafer's": null, - "straggle": [["G", "D", "R", "S", "Z"]], - "straggling": null, - "straggled": null, - "straggler": null, - "straggles": null, - "stragglers": null, - "straggly": [["R", "T"]], - "stragglier": null, - "straggliest": null, - "straightaway": [["S"]], - "straightaways": null, - "straightedge": [["M", "S"]], - "straightedge's": null, - "straightedges": null, - "straightener": [["M"]], - "straightener's": null, - "straighten": [["Z", "G", "D", "R"]], - "straighteners": null, - "straightening": null, - "straightened": null, - "straightforwardness": [["M", "S"]], - "straightforwardness's": null, - "straightforwardnesses": null, - "straightforward": [["S", "Y", "P"]], - "straightforwards": null, - "straightforwardly": null, - "straightjacket's": null, - "straightness": [["M", "S"]], - "straightness's": null, - "straightnesses": null, - "straight": [["R", "N", "D", "Y", "S", "T", "X", "G", "P"]], - "straighter": null, - "straighted": null, - "straightly": null, - "straights": null, - "straightest": null, - "straightens": null, - "straighting": null, - "straightway": [["S"]], - "straightways": null, - "strain": [["A", "S", "G", "Z", "D", "R"]], - "restrain": null, - "restrains": null, - "restraining": null, - "restrainers": null, - "restrainer": null, - "strains": [["F"]], - "straining": [["F"]], - "strainers": null, - "strained": [["U", "F"]], - "strainer": [["M", "A"]], - "unstrained": null, - "strainer's": null, - "restrainer's": null, - "constraining": null, - "constrains": null, - "straiten": [["D", "G"]], - "straitened": null, - "straitening": null, - "straitjacket": [["G", "D", "M", "S"]], - "straitjacketing": null, - "straitjacketed": null, - "straitjacket's": null, - "straitjackets": null, - "straitlaced": null, - "straitness": [["M"]], - "straitness's": null, - "strait": [["X", "T", "P", "S", "M", "G", "Y", "D", "N", "R"]], - "straitens": null, - "straitest": null, - "straits": null, - "strait's": null, - "straiting": null, - "straitly": null, - "straited": null, - "straiter": null, - "stranded": [["P"]], - "strandedness": null, - "strand": [["S", "D", "R", "G"]], - "strands": null, - "strander": null, - "stranding": null, - "strangeness": [["S", "M"]], - "strangenesses": null, - "strangeness's": null, - "strange": [["P", "Y", "Z", "T", "R"]], - "strangely": null, - "strangers": null, - "strangest": null, - "stranger": [["G", "M", "D"]], - "strangering": null, - "stranger's": null, - "strangered": null, - "stranglehold": [["M", "S"]], - "stranglehold's": null, - "strangleholds": null, - "strangle": [["J", "D", "R", "S", "Z", "G"]], - "stranglings": null, - "strangled": null, - "strangler": null, - "strangles": [["M"]], - "stranglers": null, - "strangling": null, - "strangles's": null, - "strangulate": [["N", "G", "S", "D", "X"]], - "strangulation": [["M"]], - "strangulating": null, - "strangulates": null, - "strangulated": null, - "strangulations": null, - "strangulation's": null, - "strapless": [["S"]], - "straplesses": null, - "strapped": [["U"]], - "unstrapped": null, - "strapping": [["S"]], - "strappings": null, - "strap's": null, - "strap": [["U", "S"]], - "unstrap": null, - "unstraps": null, - "straps": null, - "Strasbourg": [["M"]], - "Strasbourg's": null, - "stratagem": [["S", "M"]], - "stratagems": null, - "stratagem's": null, - "strata": [["M", "S"]], - "strata's": null, - "stratas": null, - "strategical": [["Y"]], - "strategically": null, - "strategic": [["S"]], - "strategics": [["M"]], - "strategics's": null, - "strategist": [["S", "M"]], - "strategists": null, - "strategist's": null, - "strategy": [["S", "M"]], - "strategies": null, - "strategy's": null, - "Stratford": [["M"]], - "Stratford's": null, - "strati": null, - "stratification": [["M"]], - "stratification's": null, - "stratified": [["U"]], - "unstratified": null, - "stratify": [["N", "S", "D", "G", "X"]], - "stratifies": null, - "stratifying": null, - "stratifications": null, - "stratigraphic": null, - "stratigraphical": null, - "stratigraphy": [["M"]], - "stratigraphy's": null, - "stratosphere": [["S", "M"]], - "stratospheres": null, - "stratosphere's": null, - "stratospheric": null, - "stratospherically": null, - "stratum": [["M"]], - "stratum's": null, - "stratus": [["M"]], - "stratus's": null, - "Strauss": null, - "Stravinsky": [["M"]], - "Stravinsky's": null, - "strawberry": [["S", "M"]], - "strawberries": null, - "strawberry's": null, - "strawflower": [["S", "M"]], - "strawflowers": null, - "strawflower's": null, - "straw": [["S", "M", "D", "G"]], - "straws": null, - "straw's": null, - "strawed": null, - "strawing": null, - "strayer": [["M"]], - "strayer's": null, - "stray": [["G", "S", "R", "D", "M"]], - "straying": null, - "strays": null, - "strayed": null, - "stray's": null, - "streak": [["D", "R", "M", "S", "G", "Z"]], - "streaked": null, - "streaker": [["M"]], - "streak's": null, - "streaks": null, - "streaking": null, - "streakers": null, - "streaker's": null, - "streaky": [["T", "R"]], - "streakiest": null, - "streakier": null, - "streamed": [["U"]], - "unstreamed": null, - "streamer": [["M"]], - "streamer's": null, - "stream": [["G", "Z", "S", "M", "D", "R"]], - "streaming": [["M"]], - "streamers": null, - "streams": null, - "stream's": null, - "streaming's": null, - "streamline": [["S", "R", "D", "G", "M"]], - "streamlines": null, - "streamliner": null, - "streamlined": null, - "streamlining": null, - "streamline's": null, - "streetcar": [["M", "S"]], - "streetcar's": null, - "streetcars": null, - "streetlight": [["S", "M"]], - "streetlights": null, - "streetlight's": null, - "street": [["S", "M", "Z"]], - "streets": null, - "street's": null, - "streeters": null, - "streetwalker": [["M", "S"]], - "streetwalker's": null, - "streetwalkers": null, - "streetwise": null, - "Streisand": [["M"]], - "Streisand's": null, - "strengthen": [["A", "G", "D", "S"]], - "restrengthen": null, - "restrengthening": null, - "restrengthened": null, - "restrengthens": null, - "strengthening": null, - "strengthened": null, - "strengthens": null, - "strengthener": [["M", "S"]], - "strengthener's": null, - "strengtheners": null, - "strength": [["N", "M", "X"]], - "strength's": null, - "strengths": null, - "strenuousness": [["S", "M"]], - "strenuousnesses": null, - "strenuousness's": null, - "strenuous": [["P", "Y"]], - "strenuously": null, - "strep": [["M", "S"]], - "strep's": null, - "streps": null, - "streptococcal": null, - "streptococci": null, - "streptococcus": [["M"]], - "streptococcus's": null, - "streptomycin": [["S", "M"]], - "streptomycins": null, - "streptomycin's": null, - "stress": [["D", "S", "M", "G"]], - "stressed": [["U"]], - "stresses": null, - "stress's": null, - "stressing": null, - "unstressed": null, - "stressful": [["Y", "P"]], - "stressfully": null, - "stressfulness": null, - "stretchability": [["M"]], - "stretchability's": null, - "stretchable": [["U"]], - "unstretchable": null, - "stretch": [["B", "D", "R", "S", "Z", "G"]], - "stretched": null, - "stretcher": [["D", "M", "G"]], - "stretches": null, - "stretchers": null, - "stretching": null, - "stretchered": null, - "stretcher's": null, - "stretchering": null, - "stretchy": [["T", "R", "P"]], - "stretchiest": null, - "stretchier": null, - "stretchiness": null, - "strew": [["G", "D", "H", "S"]], - "strewing": null, - "strewed": null, - "strewth": null, - "strews": null, - "strewn": null, - "striae": null, - "stria": [["M"]], - "stria's": null, - "striate": [["D", "S", "X", "G", "N"]], - "striated": [["U"]], - "striates": null, - "striations": null, - "striating": null, - "striation": [["M"]], - "unstriated": null, - "striation's": null, - "stricken": null, - "Strickland": [["M"]], - "Strickland's": null, - "strict": [["A", "F"]], - "stricter": null, - "strictest": null, - "strictly": null, - "strictness": [["S"]], - "strictnesses": null, - "stricture": [["S", "M"]], - "strictures": null, - "stricture's": null, - "stridden": null, - "stridency": [["S"]], - "stridencies": null, - "strident": [["Y"]], - "stridently": null, - "strider": [["M"]], - "strider's": null, - "stride": [["R", "S", "G", "M"]], - "strides": null, - "striding": null, - "stride's": null, - "strife": [["S", "M"]], - "strifes": null, - "strife's": null, - "strikebreaker": [["M"]], - "strikebreaker's": null, - "strikebreaking": [["M"]], - "strikebreaking's": null, - "strikebreak": [["Z", "G", "R"]], - "strikebreakers": null, - "strikeout": [["S"]], - "strikeouts": null, - "striker": [["M"]], - "striker's": null, - "strike": [["R", "S", "G", "Z", "J"]], - "strikes": null, - "striking": [["Y"]], - "strikers": null, - "strikings": null, - "strikingly": null, - "Strindberg": [["M"]], - "Strindberg's": null, - "stringed": null, - "stringency": [["S"]], - "stringencies": null, - "stringent": [["Y"]], - "stringently": null, - "stringer": [["M", "S"]], - "stringer's": null, - "stringers": null, - "stringiness": [["S", "M"]], - "stringinesses": null, - "stringiness's": null, - "stringing": [["M"]], - "stringing's": null, - "string's": null, - "string": [["S", "A", "G"]], - "strings": null, - "restrings": null, - "restring": null, - "restringing": null, - "stringy": [["R", "T", "P"]], - "stringier": null, - "stringiest": null, - "striper": [["M"]], - "striper's": null, - "stripe": [["S", "M"]], - "stripes": null, - "stripe's": null, - "strip": [["G", "R", "D", "M", "S"]], - "striping": null, - "striped": null, - "strip's": null, - "strips": null, - "stripling": [["M"]], - "stripling's": null, - "stripped": [["U"]], - "unstripped": null, - "stripper": [["M", "S"]], - "stripper's": null, - "strippers": null, - "stripping": null, - "stripteaser": [["M"]], - "stripteaser's": null, - "striptease": [["S", "R", "D", "G", "Z", "M"]], - "stripteases": null, - "stripteased": null, - "stripteasing": null, - "stripteasers": null, - "striptease's": null, - "stripy": [["R", "T"]], - "stripier": null, - "stripiest": null, - "strive": [["J", "R", "S", "G"]], - "strivings": null, - "striver": [["M"]], - "strives": null, - "striving": null, - "striven": null, - "striver's": null, - "strobe": [["S", "D", "G", "M"]], - "strobes": null, - "strobed": null, - "strobing": null, - "strobe's": null, - "stroboscope": [["S", "M"]], - "stroboscopes": null, - "stroboscope's": null, - "stroboscopic": null, - "strode": null, - "stroke": [["Z", "R", "S", "D", "G", "M"]], - "strokers": null, - "stroker": null, - "strokes": null, - "stroked": null, - "stroking": [["M"]], - "stroke's": null, - "stroking's": null, - "stroller": [["M"]], - "stroller's": null, - "stroll": [["G", "Z", "S", "D", "R"]], - "strolling": null, - "strollers": null, - "strolls": null, - "strolled": null, - "Stromberg": [["M"]], - "Stromberg's": null, - "Stromboli": [["M"]], - "Stromboli's": null, - "Strom": [["M"]], - "Strom's": null, - "strongbow": null, - "strongbox": [["M", "S"]], - "strongbox's": null, - "strongboxes": null, - "Strongheart": [["M"]], - "Strongheart's": null, - "stronghold": [["S", "M"]], - "strongholds": null, - "stronghold's": null, - "strongish": null, - "Strong": [["M"]], - "Strong's": null, - "strongman": [["M"]], - "strongman's": null, - "strongmen": null, - "strongroom": [["M", "S"]], - "strongroom's": null, - "strongrooms": null, - "strong": [["Y", "R", "T"]], - "strongly": null, - "stronger": null, - "strongest": null, - "strontium": [["S", "M"]], - "strontiums": null, - "strontium's": null, - "strophe": [["M", "S"]], - "strophe's": null, - "strophes": null, - "strophic": null, - "stropped": null, - "stropping": null, - "strop": [["S", "M"]], - "strops": null, - "strop's": null, - "strove": null, - "struck": null, - "structuralism": [["M"]], - "structuralism's": null, - "structuralist": [["S", "M"]], - "structuralists": null, - "structuralist's": null, - "structural": [["Y"]], - "structurally": null, - "structured": [["A", "U"]], - "restructured": null, - "unstructured": null, - "structureless": null, - "structures": [["A"]], - "restructures": null, - "structure": [["S", "R", "D", "M", "G"]], - "structurer": null, - "structure's": null, - "structuring": [["A"]], - "restructuring": null, - "strudel": [["M", "S"]], - "strudel's": null, - "strudels": null, - "struggle": [["G", "D", "R", "S"]], - "struggling": null, - "struggled": null, - "struggler": [["M"]], - "struggles": null, - "struggler's": null, - "strummed": null, - "strumming": null, - "strumpet": [["G", "S", "D", "M"]], - "strumpeting": null, - "strumpets": null, - "strumpeted": null, - "strumpet's": null, - "strum": [["S"]], - "strums": null, - "strung": [["U", "A"]], - "unstrung": null, - "restrung": null, - "strut": [["S"]], - "struts": null, - "strutted": null, - "strutter": [["M"]], - "strutter's": null, - "strutting": null, - "strychnine": [["M", "S"]], - "strychnine's": null, - "strychnines": null, - "Stuart": [["M", "S"]], - "Stuart's": null, - "Stuarts": null, - "stubbed": [["M"]], - "stubbed's": null, - "stubbing": null, - "Stubblefield": [["M", "S"]], - "Stubblefield's": null, - "Stubblefields": null, - "stubble": [["S", "M"]], - "stubbles": null, - "stubble's": null, - "stubbly": [["R", "T"]], - "stubblier": null, - "stubbliest": null, - "stubbornness": [["S", "M"]], - "stubbornnesses": null, - "stubbornness's": null, - "stubborn": [["S", "G", "T", "Y", "R", "D", "P"]], - "stubborns": null, - "stubborning": null, - "stubbornest": null, - "stubbornly": null, - "stubborner": null, - "stubborned": null, - "stubby": [["S", "R", "T"]], - "stubbies": null, - "stubbier": null, - "stubbiest": null, - "stub": [["M", "S"]], - "stub's": null, - "stubs": null, - "stuccoes": null, - "stucco": [["G", "D", "M"]], - "stuccoing": null, - "stuccoed": null, - "stucco's": null, - "stuck": [["U"]], - "unstuck": null, - "studbook": [["S", "M"]], - "studbooks": null, - "studbook's": null, - "studded": null, - "studding": [["S", "M"]], - "studdings": null, - "studding's": null, - "Studebaker": [["M"]], - "Studebaker's": null, - "studentship": [["M", "S"]], - "studentship's": null, - "studentships": null, - "student": [["S", "M"]], - "students": null, - "student's": null, - "studiedness": [["M"]], - "studiedness's": null, - "studied": [["P", "Y"]], - "studiedly": null, - "studier": [["S", "M"]], - "studiers": null, - "studier's": null, - "studio": [["M", "S"]], - "studio's": null, - "studios": null, - "studiousness": [["S", "M"]], - "studiousnesses": null, - "studiousness's": null, - "studious": [["P", "Y"]], - "studiously": null, - "stud": [["M", "S"]], - "stud's": null, - "studs": null, - "study": [["A", "G", "D", "S"]], - "restudying": null, - "restudied": null, - "restudies": null, - "studying": null, - "studies": null, - "stuffily": null, - "stuffiness": [["S", "M"]], - "stuffinesses": null, - "stuffiness's": null, - "stuffing": [["M"]], - "stuffing's": null, - "stuff": [["J", "G", "S", "R", "D"]], - "stuffings": null, - "stuffs": null, - "stuffer": null, - "stuffed": null, - "stuffy": [["T", "R", "P"]], - "stuffiest": null, - "stuffier": null, - "stultify": [["N", "X", "G", "S", "D"]], - "stultification": null, - "stultifications": null, - "stultifying": null, - "stultifies": null, - "stultified": null, - "Stu": [["M"]], - "Stu's": null, - "stumble": [["G", "Z", "D", "S", "R"]], - "stumbling": [["Y"]], - "stumblers": null, - "stumbled": null, - "stumbles": null, - "stumbler": null, - "stumblingly": null, - "stumpage": [["M"]], - "stumpage's": null, - "stumper": [["M"]], - "stumper's": null, - "stump": [["R", "D", "M", "S", "G"]], - "stumped": null, - "stump's": null, - "stumps": null, - "stumping": null, - "stumpy": [["R", "T"]], - "stumpier": null, - "stumpiest": null, - "stung": null, - "stunk": null, - "stunned": null, - "stunner": [["M"]], - "stunner's": null, - "stunning": [["Y"]], - "stunningly": null, - "stun": [["S"]], - "stuns": null, - "stunted": [["P"]], - "stuntedness": null, - "stunt": [["G", "S", "D", "M"]], - "stunting": null, - "stunts": null, - "stunt's": null, - "stupefaction": [["S", "M"]], - "stupefactions": null, - "stupefaction's": null, - "stupefy": [["D", "S", "G"]], - "stupefied": null, - "stupefies": null, - "stupefying": null, - "stupendousness": [["M"]], - "stupendousness's": null, - "stupendous": [["P", "Y"]], - "stupendously": null, - "stupidity": [["S", "M"]], - "stupidities": null, - "stupidity's": null, - "stupidness": [["M"]], - "stupidness's": null, - "stupid": [["P", "T", "Y", "R", "S"]], - "stupidest": null, - "stupidly": null, - "stupider": null, - "stupids": null, - "stupor": [["M", "S"]], - "stupor's": null, - "stupors": null, - "sturdily": null, - "sturdiness": [["S", "M"]], - "sturdinesses": null, - "sturdiness's": null, - "sturdy": [["S", "R", "P", "T"]], - "sturdies": null, - "sturdier": null, - "sturdiest": null, - "sturgeon": [["S", "M"]], - "sturgeons": null, - "sturgeon's": null, - "Sturm": [["M"]], - "Sturm's": null, - "stutter": [["D", "R", "S", "Z", "G"]], - "stuttered": null, - "stutterer": null, - "stutters": null, - "stutterers": null, - "stuttering": null, - "Stuttgart": [["M"]], - "Stuttgart's": null, - "Stuyvesant": [["M"]], - "Stuyvesant's": null, - "sty": [["D", "S", "G", "M"]], - "stied": null, - "sties": null, - "stying": null, - "sty's": null, - "Stygian": null, - "styled": [["A"]], - "restyled": null, - "style": [["G", "Z", "M", "D", "S", "R"]], - "styling": [["A"]], - "stylers": null, - "style's": null, - "styles": [["A"]], - "styler": null, - "restyles": null, - "styli": null, - "restyling": null, - "stylishness": [["S"]], - "stylishnesses": null, - "stylish": [["P", "Y"]], - "stylishly": null, - "stylistically": null, - "stylistic": [["S"]], - "stylistics": null, - "stylist": [["M", "S"]], - "stylist's": null, - "stylists": null, - "stylites": null, - "stylization": [["M", "S"]], - "stylization's": null, - "stylizations": null, - "stylize": [["D", "S", "G"]], - "stylized": null, - "stylizes": null, - "stylizing": null, - "stylos": null, - "stylus": [["S", "M"]], - "styluses": null, - "stylus's": null, - "stymieing": null, - "stymie": [["S", "D"]], - "stymies": null, - "stymied": null, - "stymy's": null, - "styptic": [["S"]], - "styptics": null, - "styrene": [["M", "S"]], - "styrene's": null, - "styrenes": null, - "Styrofoam": [["S"]], - "Styrofoams": null, - "Styx": [["M"]], - "Styx's": null, - "suable": null, - "Suarez": [["M"]], - "Suarez's": null, - "suasion": [["E", "M", "S"]], - "dissuasion": null, - "dissuasion's": null, - "dissuasions": null, - "suasion's": null, - "suasions": null, - "suaveness": [["S"]], - "suavenesses": null, - "suave": [["P", "R", "Y", "T"]], - "suaver": null, - "suavely": null, - "suavest": null, - "suavity": [["S", "M"]], - "suavities": null, - "suavity's": null, - "subaltern": [["S", "M"]], - "subalterns": null, - "subaltern's": null, - "subarctic": [["S"]], - "subarctics": null, - "subareas": null, - "Subaru": [["M"]], - "Subaru's": null, - "subassembly": [["M"]], - "subassembly's": null, - "subatomic": [["S"]], - "subatomics": null, - "subbasement": [["S", "M"]], - "subbasements": null, - "subbasement's": null, - "subbed": null, - "subbing": null, - "subbranch": [["S"]], - "subbranches": null, - "subcaste": [["M"]], - "subcaste's": null, - "subcategorizing": null, - "subcategory": [["S", "M"]], - "subcategories": null, - "subcategory's": null, - "subchain": null, - "subclassifications": null, - "subclass": [["M", "S"]], - "subclass's": null, - "subclasses": null, - "subclauses": null, - "subcommand": [["S"]], - "subcommands": null, - "subcommittee": [["S", "M"]], - "subcommittees": null, - "subcommittee's": null, - "subcompact": [["S"]], - "subcompacts": null, - "subcomponent": [["M", "S"]], - "subcomponent's": null, - "subcomponents": null, - "subcomputation": [["M", "S"]], - "subcomputation's": null, - "subcomputations": null, - "subconcept": null, - "subconsciousness": [["S", "M"]], - "subconsciousnesses": null, - "subconsciousness's": null, - "subconscious": [["P", "S", "Y"]], - "subconsciouses": null, - "subconsciously": null, - "subconstituent": null, - "subcontinental": null, - "subcontinent": [["M", "S"]], - "subcontinent's": null, - "subcontinents": null, - "subcontractor": [["S", "M"]], - "subcontractors": null, - "subcontractor's": null, - "subcontract": [["S", "M", "D", "G"]], - "subcontracts": null, - "subcontract's": null, - "subcontracted": null, - "subcontracting": null, - "subcultural": null, - "subculture": [["G", "M", "D", "S"]], - "subculturing": null, - "subculture's": null, - "subcultured": null, - "subcultures": null, - "subcutaneous": [["Y"]], - "subcutaneously": null, - "subdirectory": [["S"]], - "subdirectories": null, - "subdistrict": [["M"]], - "subdistrict's": null, - "subdivide": [["S", "R", "D", "G"]], - "subdivides": null, - "subdivider": null, - "subdivided": null, - "subdividing": null, - "subdivision": [["S", "M"]], - "subdivisions": null, - "subdivision's": null, - "subdued": [["Y"]], - "subduedly": null, - "subdue": [["G", "R", "S", "D"]], - "subduing": null, - "subduer": [["M"]], - "subdues": null, - "subduer's": null, - "subexpression": [["M", "S"]], - "subexpression's": null, - "subexpressions": null, - "subfamily": [["S", "M"]], - "subfamilies": null, - "subfamily's": null, - "subfield": [["M", "S"]], - "subfield's": null, - "subfields": null, - "subfile": [["S", "M"]], - "subfiles": null, - "subfile's": null, - "subfreezing": null, - "subgoal": [["S", "M"]], - "subgoals": null, - "subgoal's": null, - "subgraph": null, - "subgraphs": null, - "subgroup": [["S", "G", "M"]], - "subgroups": null, - "subgrouping": null, - "subgroup's": null, - "subharmonic": [["S"]], - "subharmonics": null, - "subheading": [["M"]], - "subheading's": null, - "subhead": [["M", "G", "J", "S"]], - "subhead's": null, - "subheadings": null, - "subheads": null, - "subhuman": [["S"]], - "subhumans": null, - "subindex": [["M"]], - "subindex's": null, - "subinterval": [["M", "S"]], - "subinterval's": null, - "subintervals": null, - "subj": null, - "subject": [["G", "V", "D", "M", "S"]], - "subjecting": null, - "subjective": [["P", "S", "Y"]], - "subjected": null, - "subject's": null, - "subjects": null, - "subjection": [["S", "M"]], - "subjections": null, - "subjection's": null, - "subjectiveness": [["M"]], - "subjectiveness's": null, - "subjectives": null, - "subjectively": null, - "subjectivist": [["S"]], - "subjectivists": null, - "subjectivity": [["S", "M"]], - "subjectivities": null, - "subjectivity's": null, - "subjoin": [["D", "S", "G"]], - "subjoined": null, - "subjoins": null, - "subjoining": null, - "subjugate": [["N", "G", "X", "S", "D"]], - "subjugation": [["M"]], - "subjugating": null, - "subjugations": null, - "subjugates": null, - "subjugated": null, - "subjugation's": null, - "subjunctive": [["S"]], - "subjunctives": null, - "sublayer": null, - "sublease": [["D", "S", "M", "G"]], - "subleased": null, - "subleases": null, - "sublease's": null, - "subleasing": null, - "sublet": [["S"]], - "sublets": null, - "subletting": null, - "sublimate": [["G", "N", "S", "D", "X"]], - "sublimating": null, - "sublimation": [["M"]], - "sublimates": null, - "sublimated": null, - "sublimations": null, - "sublimation's": null, - "sublime": [["G", "R", "S", "D", "T", "Y", "P"]], - "subliming": null, - "sublimer": [["M"]], - "sublimes": null, - "sublimed": null, - "sublimest": null, - "sublimely": null, - "sublimeness": [["M"]], - "sublimeness's": null, - "sublimer's": null, - "subliminal": [["Y"]], - "subliminally": null, - "sublimity": [["S", "M"]], - "sublimities": null, - "sublimity's": null, - "sublist": [["S", "M"]], - "sublists": null, - "sublist's": null, - "subliterary": null, - "sublunary": null, - "submachine": null, - "submarginal": null, - "submarine": [["M", "Z", "G", "S", "R", "D"]], - "submarine's": null, - "submariners": null, - "submarining": null, - "submarines": null, - "submariner": [["M"]], - "submarined": null, - "submariner's": null, - "submerge": [["D", "S", "G"]], - "submerged": null, - "submerges": null, - "submerging": null, - "submergence": [["S", "M"]], - "submergences": null, - "submergence's": null, - "submerse": [["X", "N", "G", "D", "S"]], - "submersions": null, - "submersion": [["M"]], - "submersing": null, - "submersed": null, - "submerses": null, - "submersible": [["S"]], - "submersibles": null, - "submersion's": null, - "submicroscopic": null, - "submission": [["S", "A", "M"]], - "submissions": null, - "resubmissions": null, - "resubmission": null, - "resubmission's": null, - "submission's": null, - "submissiveness": [["M", "S"]], - "submissiveness's": null, - "submissivenesses": null, - "submissive": [["P", "Y"]], - "submissively": null, - "submit": [["S", "A"]], - "submits": null, - "resubmits": null, - "resubmit": null, - "submittable": null, - "submittal": null, - "submitted": [["A"]], - "resubmitted": null, - "submitter": [["S"]], - "submitters": null, - "submitting": [["A"]], - "resubmitting": null, - "submode": [["S"]], - "submodes": null, - "submodule": [["M", "S"]], - "submodule's": null, - "submodules": null, - "sub": [["M", "S"]], - "sub's": null, - "subs": null, - "subnational": null, - "subnet": [["S", "M"]], - "subnets": null, - "subnet's": null, - "subnetwork": [["S", "M"]], - "subnetworks": null, - "subnetwork's": null, - "subnormal": [["S", "Y"]], - "subnormals": null, - "subnormally": null, - "suboptimal": null, - "suborbital": null, - "suborder": [["M", "S"]], - "suborder's": null, - "suborders": null, - "subordinately": [["I"]], - "insubordinately": null, - "subordinates": [["I"]], - "insubordinates": null, - "subordinate": [["Y", "V", "N", "G", "X", "P", "S", "D"]], - "subordinative": null, - "subordination": [["I", "M", "S"]], - "subordinating": null, - "subordinations": null, - "subordinateness": null, - "subordinated": null, - "insubordination": null, - "insubordination's": null, - "insubordinations": null, - "subordination's": null, - "subordinator": null, - "subornation": [["S", "M"]], - "subornations": null, - "subornation's": null, - "suborn": [["G", "S", "D"]], - "suborning": null, - "suborns": null, - "suborned": null, - "subpage": null, - "subparagraph": [["M"]], - "subparagraph's": null, - "subpart": [["M", "S"]], - "subpart's": null, - "subparts": null, - "subplot": [["M", "S"]], - "subplot's": null, - "subplots": null, - "subpoena": [["G", "S", "D", "M"]], - "subpoenaing": null, - "subpoenas": null, - "subpoenaed": null, - "subpoena's": null, - "subpopulation": [["M", "S"]], - "subpopulation's": null, - "subpopulations": null, - "subproblem": [["S", "M"]], - "subproblems": null, - "subproblem's": null, - "subprocess": [["S", "M"]], - "subprocesses": null, - "subprocess's": null, - "subprofessional": [["S"]], - "subprofessionals": null, - "subprogram": [["S", "M"]], - "subprograms": null, - "subprogram's": null, - "subproject": null, - "subproof": [["S", "M"]], - "subproofs": null, - "subproof's": null, - "subquestion": [["M", "S"]], - "subquestion's": null, - "subquestions": null, - "subrange": [["S", "M"]], - "subranges": null, - "subrange's": null, - "subregional": [["Y"]], - "subregionally": null, - "subregion": [["M", "S"]], - "subregion's": null, - "subregions": null, - "subrogation": [["M"]], - "subrogation's": null, - "subroutine": [["S", "M"]], - "subroutines": null, - "subroutine's": null, - "subsample": [["M", "S"]], - "subsample's": null, - "subsamples": null, - "subschema": [["M", "S"]], - "subschema's": null, - "subschemas": null, - "subscribe": [["A", "S", "D", "G"]], - "resubscribe": null, - "resubscribes": null, - "resubscribed": null, - "resubscribing": null, - "subscribes": null, - "subscribed": null, - "subscribing": null, - "subscriber": [["S", "M"]], - "subscribers": null, - "subscriber's": null, - "subscripted": [["U"]], - "unsubscripted": null, - "subscription": [["M", "S"]], - "subscription's": null, - "subscriptions": null, - "subscript": [["S", "G", "D"]], - "subscripts": null, - "subscripting": null, - "subsection": [["S", "M"]], - "subsections": null, - "subsection's": null, - "subsegment": [["S", "M"]], - "subsegments": null, - "subsegment's": null, - "subsentence": null, - "subsequence": [["M", "S"]], - "subsequence's": null, - "subsequences": null, - "subsequent": [["S", "Y", "P"]], - "subsequents": null, - "subsequently": null, - "subsequentness": null, - "subservience": [["S", "M"]], - "subserviences": null, - "subservience's": null, - "subservient": [["S", "Y"]], - "subservients": null, - "subserviently": null, - "subset": [["M", "S"]], - "subset's": null, - "subsets": null, - "subsidence": [["M", "S"]], - "subsidence's": null, - "subsidences": null, - "subside": [["S", "D", "G"]], - "subsides": null, - "subsided": null, - "subsiding": null, - "subsidiarity": null, - "subsidiary": [["M", "S"]], - "subsidiary's": null, - "subsidiaries": null, - "subsidization": [["M", "S"]], - "subsidization's": null, - "subsidizations": null, - "subsidized": [["U"]], - "unsubsidized": null, - "subsidizer": [["M"]], - "subsidizer's": null, - "subsidize": [["Z", "R", "S", "D", "G"]], - "subsidizers": null, - "subsidizes": null, - "subsidizing": null, - "subsidy": [["M", "S"]], - "subsidy's": null, - "subsidies": null, - "subsistence": [["M", "S"]], - "subsistence's": null, - "subsistences": null, - "subsistent": null, - "subsist": [["S", "G", "D"]], - "subsists": null, - "subsisting": null, - "subsisted": null, - "subsocietal": null, - "subsoil": [["D", "R", "M", "S", "G"]], - "subsoiled": null, - "subsoiler": null, - "subsoil's": null, - "subsoils": null, - "subsoiling": null, - "subsonic": null, - "subspace": [["M", "S"]], - "subspace's": null, - "subspaces": null, - "subspecies": [["M"]], - "subspecies's": null, - "substance": [["M", "S"]], - "substance's": null, - "substances": null, - "substandard": null, - "substantially": [["I", "U"]], - "insubstantially": null, - "unsubstantially": null, - "substantialness": [["M"]], - "substantialness's": null, - "substantial": [["P", "Y", "S"]], - "substantials": null, - "substantiated": [["U"]], - "unsubstantiated": null, - "substantiate": [["V", "G", "N", "S", "D", "X"]], - "substantiative": null, - "substantiating": null, - "substantiation": [["M", "F", "S"]], - "substantiates": null, - "substantiations": null, - "substantiation's": null, - "consubstantiation's": null, - "consubstantiation": null, - "consubstantiations": null, - "substantiveness": [["M"]], - "substantiveness's": null, - "substantive": [["P", "S", "Y", "M"]], - "substantives": null, - "substantively": null, - "substantive's": null, - "substantivity": null, - "substation": [["M", "S"]], - "substation's": null, - "substations": null, - "substerilization": null, - "substitutability": null, - "substituted": [["U"]], - "unsubstituted": null, - "substitute": [["N", "G", "V", "B", "X", "D", "R", "S"]], - "substitution": [["M"]], - "substituting": null, - "substitutive": [["Y"]], - "substitutable": null, - "substitutions": null, - "substituter": null, - "substitutes": null, - "substitutionary": null, - "substitution's": null, - "substitutively": null, - "substrata": null, - "substrate": [["M", "S"]], - "substrate's": null, - "substrates": null, - "substratum": [["M"]], - "substratum's": null, - "substring": [["S"]], - "substrings": null, - "substructure": [["S", "M"]], - "substructures": null, - "substructure's": null, - "subsume": [["S", "D", "G"]], - "subsumes": null, - "subsumed": null, - "subsuming": null, - "subsurface": [["S"]], - "subsurfaces": null, - "subsystem": [["M", "S"]], - "subsystem's": null, - "subsystems": null, - "subtable": [["S"]], - "subtables": null, - "subtask": [["S", "M"]], - "subtasks": null, - "subtask's": null, - "subteen": [["S", "M"]], - "subteens": null, - "subteen's": null, - "subtenancy": [["M", "S"]], - "subtenancy's": null, - "subtenancies": null, - "subtenant": [["S", "M"]], - "subtenants": null, - "subtenant's": null, - "subtend": [["D", "S"]], - "subtended": null, - "subtends": null, - "subterfuge": [["S", "M"]], - "subterfuges": null, - "subterfuge's": null, - "subterranean": [["S", "Y"]], - "subterraneans": null, - "subterraneanly": null, - "subtest": null, - "subtext": [["S", "M"]], - "subtexts": null, - "subtext's": null, - "subtitle": [["D", "S", "M", "G"]], - "subtitled": null, - "subtitles": null, - "subtitle's": null, - "subtitling": null, - "subtleness": [["M"]], - "subtleness's": null, - "subtle": [["R", "P", "T"]], - "subtler": null, - "subtlest": null, - "subtlety": [["M", "S"]], - "subtlety's": null, - "subtleties": null, - "subtly": [["U"]], - "unsubtly": null, - "subtopic": [["S", "M"]], - "subtopics": null, - "subtopic's": null, - "subtotal": [["G", "S", "D", "M"]], - "subtotaling": null, - "subtotals": null, - "subtotaled": null, - "subtotal's": null, - "subtracter": [["M"]], - "subtracter's": null, - "subtraction": [["M", "S"]], - "subtraction's": null, - "subtractions": null, - "subtract": [["S", "R", "D", "Z", "V", "G"]], - "subtracts": null, - "subtracted": null, - "subtracters": null, - "subtractive": null, - "subtracting": null, - "subtrahend": [["S", "M"]], - "subtrahends": null, - "subtrahend's": null, - "subtree": [["S", "M"]], - "subtrees": null, - "subtree's": null, - "subtropical": null, - "subtropic": [["S"]], - "subtropics": null, - "subtype": [["M", "S"]], - "subtype's": null, - "subtypes": null, - "subunit": [["S", "M"]], - "subunits": null, - "subunit's": null, - "suburbanite": [["M", "S"]], - "suburbanite's": null, - "suburbanites": null, - "suburbanization": [["M", "S"]], - "suburbanization's": null, - "suburbanizations": null, - "suburbanized": null, - "suburbanizing": null, - "suburban": [["S"]], - "suburbans": null, - "suburbia": [["S", "M"]], - "suburbias": null, - "suburbia's": null, - "suburb": [["M", "S"]], - "suburb's": null, - "suburbs": null, - "subvention": [["M", "S"]], - "subvention's": null, - "subventions": null, - "subversion": [["S", "M"]], - "subversions": null, - "subversion's": null, - "subversiveness": [["M", "S"]], - "subversiveness's": null, - "subversivenesses": null, - "subversive": [["S", "P", "Y"]], - "subversives": null, - "subversively": null, - "subverter": [["M"]], - "subverter's": null, - "subvert": [["S", "G", "D", "R"]], - "subverts": null, - "subverting": null, - "subverted": null, - "subway": [["M", "D", "G", "S"]], - "subway's": null, - "subwayed": null, - "subwaying": null, - "subways": null, - "subzero": null, - "succeeder": [["M"]], - "succeeder's": null, - "succeed": [["G", "D", "R", "S"]], - "succeeding": null, - "succeeded": null, - "succeeds": null, - "successfulness": [["M"]], - "successfulness's": null, - "successful": [["U", "Y"]], - "unsuccessful": null, - "unsuccessfully": null, - "successfully": null, - "succession": [["S", "M"]], - "successions": null, - "succession's": null, - "successiveness": [["M"]], - "successiveness's": null, - "successive": [["Y", "P"]], - "successively": null, - "success": [["M", "S", "V"]], - "success's": null, - "successes": null, - "successor": [["M", "S"]], - "successor's": null, - "successors": null, - "successorship": null, - "succinctness": [["S", "M"]], - "succinctnesses": null, - "succinctness's": null, - "succinct": [["R", "Y", "P", "T"]], - "succincter": null, - "succinctly": null, - "succinctest": null, - "succored": [["U"]], - "unsuccored": null, - "succorer": [["M"]], - "succorer's": null, - "succor": [["S", "G", "Z", "R", "D", "M"]], - "succors": null, - "succoring": null, - "succorers": null, - "succor's": null, - "succotash": [["S", "M"]], - "succotashes": null, - "succotash's": null, - "succubus": [["M"]], - "succubus's": null, - "succulence": [["S", "M"]], - "succulences": null, - "succulence's": null, - "succulency": [["M", "S"]], - "succulency's": null, - "succulencies": null, - "succulent": [["S"]], - "succulents": null, - "succumb": [["S", "D", "G"]], - "succumbs": null, - "succumbed": null, - "succumbing": null, - "such": null, - "suchlike": null, - "sucker": [["D", "M", "G"]], - "suckered": null, - "sucker's": null, - "suckering": null, - "suck": [["G", "Z", "S", "D", "R", "B"]], - "sucking": null, - "suckers": null, - "sucks": null, - "sucked": null, - "suckable": null, - "suckle": [["S", "D", "J", "G"]], - "suckles": null, - "suckled": null, - "sucklings": null, - "suckling": [["M"]], - "suckling's": null, - "Sucre": [["M"]], - "Sucre's": null, - "sucrose": [["M", "S"]], - "sucrose's": null, - "sucroses": null, - "suction": [["S", "M", "G", "D"]], - "suctions": null, - "suction's": null, - "suctioning": null, - "suctioned": null, - "Sudanese": [["M"]], - "Sudanese's": null, - "Sudanic": [["M"]], - "Sudanic's": null, - "Sudan": [["M"]], - "Sudan's": null, - "suddenness": [["S", "M"]], - "suddennesses": null, - "suddenness's": null, - "sudden": [["Y", "P", "S"]], - "suddenly": null, - "suddens": null, - "Sudetenland": [["M"]], - "Sudetenland's": null, - "sud": [["S"]], - "suds": [["D", "S", "R", "G"]], - "sudsed": null, - "sudses": null, - "sudser": null, - "sudsing": null, - "sudsy": [["T", "R"]], - "sudsiest": null, - "sudsier": null, - "sued": [["D", "G"]], - "sueded": null, - "sueding": null, - "suede": [["S", "M"]], - "suedes": null, - "suede's": null, - "Suellen": [["M"]], - "Suellen's": null, - "Sue": [["M"]], - "Sue's": null, - "suer": [["M"]], - "suer's": null, - "suet": [["M", "S"]], - "suet's": null, - "suets": null, - "Suetonius": [["M"]], - "Suetonius's": null, - "suety": null, - "sue": [["Z", "G", "D", "R", "S"]], - "suers": null, - "suing": null, - "sues": null, - "Suez": [["M"]], - "Suez's": null, - "sufferance": [["S", "M"]], - "sufferances": null, - "sufferance's": null, - "sufferer": [["M"]], - "sufferer's": null, - "suffering": [["M"]], - "suffering's": null, - "suffer": [["S", "J", "R", "D", "G", "Z"]], - "suffers": null, - "sufferings": null, - "suffered": null, - "sufferers": null, - "suffice": [["G", "R", "S", "D"]], - "sufficing": null, - "sufficer": null, - "suffices": null, - "sufficed": null, - "sufficiency": [["S", "I", "M"]], - "sufficiencies": null, - "insufficiencies": null, - "insufficiency": null, - "insufficiency's": null, - "sufficiency's": null, - "sufficient": [["I", "Y"]], - "insufficient": null, - "insufficiently": null, - "sufficiently": null, - "suffixation": [["S"]], - "suffixations": null, - "suffixed": [["U"]], - "unsuffixed": null, - "suffix": [["G", "M", "R", "S", "D"]], - "suffixing": null, - "suffix's": null, - "suffixer": null, - "suffixes": null, - "suffocate": [["X", "S", "D", "V", "G", "N"]], - "suffocations": null, - "suffocates": null, - "suffocated": null, - "suffocative": null, - "suffocating": [["Y"]], - "suffocation": null, - "suffocatingly": null, - "Suffolk": [["M"]], - "Suffolk's": null, - "suffragan": [["S"]], - "suffragans": null, - "suffrage": [["M", "S"]], - "suffrage's": null, - "suffrages": null, - "suffragette": [["M", "S"]], - "suffragette's": null, - "suffragettes": null, - "suffragist": [["S", "M"]], - "suffragists": null, - "suffragist's": null, - "suffuse": [["V", "N", "G", "S", "D", "X"]], - "suffusive": null, - "suffusion": [["M"]], - "suffusing": null, - "suffuses": null, - "suffused": null, - "suffusions": null, - "suffusion's": null, - "Sufi": [["M"]], - "Sufi's": null, - "Sufism": [["M"]], - "Sufism's": null, - "sugarcane": [["S"]], - "sugarcanes": null, - "sugarcoat": [["G", "D", "S"]], - "sugarcoating": null, - "sugarcoated": null, - "sugarcoats": null, - "sugarless": null, - "sugarplum": [["M", "S"]], - "sugarplum's": null, - "sugarplums": null, - "sugar": [["S", "J", "G", "M", "D"]], - "sugars": null, - "sugarings": null, - "sugaring": null, - "sugar's": null, - "sugared": null, - "sugary": [["T", "R"]], - "sugariest": null, - "sugarier": null, - "suggest": [["D", "R", "Z", "G", "V", "S"]], - "suggested": null, - "suggester": [["M"]], - "suggesters": null, - "suggesting": null, - "suggestive": [["P", "Y"]], - "suggests": null, - "suggester's": null, - "suggestibility": [["S", "M"]], - "suggestibilities": null, - "suggestibility's": null, - "suggestible": null, - "suggestion": [["M", "S"]], - "suggestion's": null, - "suggestions": null, - "suggestiveness": [["M", "S"]], - "suggestiveness's": null, - "suggestivenesses": null, - "suggestively": null, - "sugillate": null, - "Suharto": [["M"]], - "Suharto's": null, - "suicidal": [["Y"]], - "suicidally": null, - "suicide": [["G", "S", "D", "M"]], - "suiciding": null, - "suicides": null, - "suicided": null, - "suicide's": null, - "Sui": [["M"]], - "Sui's": null, - "suitability": [["S", "U"]], - "suitabilities": null, - "unsuitabilities": null, - "unsuitability": null, - "suitableness": [["S"]], - "suitablenesses": null, - "suitable": [["P"]], - "suitably": [["U"]], - "unsuitably": null, - "suitcase": [["M", "S"]], - "suitcase's": null, - "suitcases": null, - "suited": [["U"]], - "unsuited": null, - "suite": [["S", "M"]], - "suites": null, - "suite's": null, - "suiting": [["M"]], - "suiting's": null, - "suit": [["M", "D", "G", "Z", "B", "J", "S"]], - "suit's": null, - "suiters": null, - "suitings": null, - "suits": null, - "suitor": [["S", "M"]], - "suitors": null, - "suitor's": null, - "Sukarno": [["M"]], - "Sukarno's": null, - "Sukey": [["M"]], - "Sukey's": null, - "Suki": [["M"]], - "Suki's": null, - "sukiyaki": [["S", "M"]], - "sukiyakis": null, - "sukiyaki's": null, - "Sukkoth's": null, - "Sukkot": [["S"]], - "Sukkots": null, - "Sula": [["M"]], - "Sula's": null, - "Sulawesi": [["M"]], - "Sulawesi's": null, - "Suleiman": [["M"]], - "Suleiman's": null, - "sulfaquinoxaline": null, - "sulfa": [["S"]], - "sulfas": null, - "sulfate": [["M", "S", "D", "G"]], - "sulfate's": null, - "sulfates": null, - "sulfated": null, - "sulfating": null, - "sulfide": [["S"]], - "sulfides": null, - "sulfite": [["M"]], - "sulfite's": null, - "sulfonamide": [["S", "M"]], - "sulfonamides": null, - "sulfonamide's": null, - "sulfur": [["D", "M", "S", "G"]], - "sulfured": null, - "sulfur's": null, - "sulfurs": null, - "sulfuring": null, - "sulfuric": null, - "sulfurousness": [["M"]], - "sulfurousness's": null, - "sulfurous": [["Y", "P"]], - "sulfurously": null, - "sulk": [["G", "D", "S"]], - "sulking": null, - "sulked": null, - "sulks": null, - "sulkily": null, - "sulkiness": [["S"]], - "sulkinesses": null, - "sulky": [["R", "S", "P", "T"]], - "sulkier": null, - "sulkies": null, - "sulkiest": null, - "Sulla": [["M"]], - "Sulla's": null, - "sullenness": [["M", "S"]], - "sullenness's": null, - "sullennesses": null, - "sullen": [["T", "Y", "R", "P"]], - "sullenest": null, - "sullenly": null, - "sullener": null, - "sullied": [["U"]], - "unsullied": null, - "Sullivan": [["M"]], - "Sullivan's": null, - "sully": [["G", "S", "D"]], - "sullying": null, - "sullies": null, - "Sully": [["M"]], - "Sully's": null, - "sulphate": [["S", "M"]], - "sulphates": null, - "sulphate's": null, - "sulphide": [["M", "S"]], - "sulphide's": null, - "sulphides": null, - "sulphuric": null, - "sultana": [["S", "M"]], - "sultanas": null, - "sultana's": null, - "sultanate": [["M", "S"]], - "sultanate's": null, - "sultanates": null, - "sultan": [["S", "M"]], - "sultans": null, - "sultan's": null, - "sultrily": null, - "sultriness": [["S", "M"]], - "sultrinesses": null, - "sultriness's": null, - "sultry": [["P", "R", "T"]], - "sultrier": null, - "sultriest": null, - "Sulzberger": [["M"]], - "Sulzberger's": null, - "sumach's": null, - "sumac": [["S", "M"]], - "sumacs": null, - "sumac's": null, - "Sumatra": [["M"]], - "Sumatra's": null, - "Sumatran": [["S"]], - "Sumatrans": null, - "sumer": [["F"]], - "Sumeria": [["M"]], - "Sumeria's": null, - "Sumerian": [["M"]], - "Sumerian's": null, - "summability": [["M"]], - "summability's": null, - "summable": null, - "summand": [["M", "S"]], - "summand's": null, - "summands": null, - "summarily": null, - "summarization": [["M", "S"]], - "summarization's": null, - "summarizations": null, - "summarized": [["U"]], - "unsummarized": null, - "summarize": [["G", "S", "R", "D", "Z"]], - "summarizing": null, - "summarizes": null, - "summarizer": [["M"]], - "summarizers": null, - "summarizer's": null, - "summary": [["M", "S"]], - "summary's": null, - "summaries": null, - "summation": [["F", "M", "S"]], - "consummation": null, - "consummation's": null, - "consummations": null, - "summation's": null, - "summations": null, - "summed": null, - "Summerdale": [["M"]], - "Summerdale's": null, - "summerhouse": [["M", "S"]], - "summerhouse's": null, - "summerhouses": null, - "summer": [["S", "G", "D", "M"]], - "summers": null, - "summering": null, - "summered": null, - "summer's": null, - "Summer": [["S", "M"]], - "Summers": null, - "Summer's": null, - "summertime": [["M", "S"]], - "summertime's": null, - "summertimes": null, - "summery": [["T", "R"]], - "summeriest": null, - "summerier": null, - "summing": null, - "summit": [["G", "M", "D", "S"]], - "summiting": null, - "summit's": null, - "summited": null, - "summits": null, - "summitry": [["M", "S"]], - "summitry's": null, - "summitries": null, - "summoner": [["M"]], - "summoner's": null, - "summon": [["J", "S", "R", "D", "G", "Z"]], - "summonings": null, - "summons": [["M", "S", "D", "G"]], - "summoned": null, - "summoning": null, - "summoners": null, - "summons's": null, - "summonses": null, - "summonsed": null, - "summonsing": null, - "sum": [["M", "R", "S"]], - "sum's": null, - "sums": null, - "Sumner": [["M"]], - "Sumner's": null, - "sumo": [["S", "M"]], - "sumos": null, - "sumo's": null, - "sump": [["S", "M"]], - "sumps": null, - "sump's": null, - "sumptuousness": [["S", "M"]], - "sumptuousnesses": null, - "sumptuousness's": null, - "sumptuous": [["P", "Y"]], - "sumptuously": null, - "Sumter": [["M"]], - "Sumter's": null, - "Sun": null, - "sunbaked": null, - "sunbathe": null, - "sunbather": [["M"]], - "sunbather's": null, - "sunbathing": [["M"]], - "sunbathing's": null, - "sunbaths": null, - "sunbath": [["Z", "R", "S", "D", "G"]], - "sunbathers": null, - "sunbathes": null, - "sunbathed": null, - "sunbeam": [["M", "S"]], - "sunbeam's": null, - "sunbeams": null, - "Sunbelt": [["M"]], - "Sunbelt's": null, - "sunblock": [["S"]], - "sunblocks": null, - "sunbonnet": [["M", "S"]], - "sunbonnet's": null, - "sunbonnets": null, - "sunburn": [["G", "S", "M", "D"]], - "sunburning": null, - "sunburns": null, - "sunburn's": null, - "sunburned": null, - "sunburst": [["M", "S"]], - "sunburst's": null, - "sunbursts": null, - "suncream": null, - "sundae": [["M", "S"]], - "sundae's": null, - "sundaes": null, - "Sundanese": [["M"]], - "Sundanese's": null, - "Sundas": null, - "Sunday": [["M", "S"]], - "Sunday's": null, - "Sundays": null, - "sunder": [["S", "D", "G"]], - "sunders": null, - "sundered": null, - "sundering": null, - "sundial": [["M", "S"]], - "sundial's": null, - "sundials": null, - "sundowner": [["M"]], - "sundowner's": null, - "sundown": [["M", "R", "D", "S", "Z", "G"]], - "sundown's": null, - "sundowned": null, - "sundowns": null, - "sundowners": null, - "sundowning": null, - "sundris": null, - "sundry": [["S"]], - "sundries": null, - "sunfish": [["S", "M"]], - "sunfishes": null, - "sunfish's": null, - "sunflower": [["M", "S"]], - "sunflower's": null, - "sunflowers": null, - "sunglass": [["M", "S"]], - "sunglass's": null, - "sunglasses": null, - "Sung": [["M"]], - "Sung's": null, - "sung": [["U"]], - "unsung": null, - "sunk": [["S", "N"]], - "sunks": null, - "sunken": null, - "sunlamp": [["S"]], - "sunlamps": null, - "sunless": null, - "sunlight": [["M", "S"]], - "sunlight's": null, - "sunlights": null, - "sunlit": null, - "sun": [["M", "S"]], - "sun's": null, - "suns": null, - "sunned": null, - "Sunni": [["M", "S"]], - "Sunni's": null, - "Sunnis": null, - "sunniness": [["S", "M"]], - "sunninesses": null, - "sunniness's": null, - "sunning": null, - "Sunnite": [["S", "M"]], - "Sunnites": null, - "Sunnite's": null, - "Sunny": [["M"]], - "Sunny's": null, - "sunny": [["R", "S", "T", "P"]], - "sunnier": null, - "sunnies": null, - "sunniest": null, - "Sunnyvale": [["M"]], - "Sunnyvale's": null, - "sunrise": [["G", "M", "S"]], - "sunrising": null, - "sunrise's": null, - "sunrises": null, - "sunroof": [["S"]], - "sunroofs": null, - "sunscreen": [["S"]], - "sunscreens": null, - "sunset": [["M", "S"]], - "sunset's": null, - "sunsets": null, - "sunsetting": null, - "sunshade": [["M", "S"]], - "sunshade's": null, - "sunshades": null, - "Sunshine": [["M"]], - "Sunshine's": null, - "sunshine": [["M", "S"]], - "sunshine's": null, - "sunshines": null, - "sunshiny": null, - "sunspot": [["S", "M"]], - "sunspots": null, - "sunspot's": null, - "sunstroke": [["M", "S"]], - "sunstroke's": null, - "sunstrokes": null, - "suntanned": null, - "suntanning": null, - "suntan": [["S", "M"]], - "suntans": null, - "suntan's": null, - "sunup": [["M", "S"]], - "sunup's": null, - "sunups": null, - "superabundance": [["M", "S"]], - "superabundance's": null, - "superabundances": null, - "superabundant": null, - "superannuate": [["G", "N", "X", "S", "D"]], - "superannuating": null, - "superannuation": [["M"]], - "superannuations": null, - "superannuates": null, - "superannuated": null, - "superannuation's": null, - "superbness": [["M"]], - "superbness's": null, - "superb": [["Y", "R", "P", "T"]], - "superbly": null, - "superber": null, - "superbest": null, - "supercargoes": null, - "supercargo": [["M"]], - "supercargo's": null, - "supercharger": [["M"]], - "supercharger's": null, - "supercharge": [["S", "R", "D", "Z", "G"]], - "supercharges": null, - "supercharged": null, - "superchargers": null, - "supercharging": null, - "superciliousness": [["S", "M"]], - "superciliousnesses": null, - "superciliousness's": null, - "supercilious": [["P", "Y"]], - "superciliously": null, - "supercity": [["S"]], - "supercities": null, - "superclass": [["M"]], - "superclass's": null, - "supercomputer": [["M", "S"]], - "supercomputer's": null, - "supercomputers": null, - "supercomputing": null, - "superconcept": null, - "superconducting": null, - "superconductivity": [["S", "M"]], - "superconductivities": null, - "superconductivity's": null, - "superconductor": [["S", "M"]], - "superconductors": null, - "superconductor's": null, - "supercooled": null, - "supercooling": null, - "supercritical": null, - "superdense": null, - "super": [["D", "G"]], - "supered": null, - "supering": null, - "superego": [["S", "M"]], - "superegos": null, - "superego's": null, - "supererogation": [["M", "S"]], - "supererogation's": null, - "supererogations": null, - "supererogatory": null, - "superficiality": [["S"]], - "superficialities": null, - "superficial": [["S", "P", "Y"]], - "superficials": null, - "superficialness": null, - "superficially": null, - "superfine": null, - "superfix": [["M"]], - "superfix's": null, - "superfluity": [["M", "S"]], - "superfluity's": null, - "superfluities": null, - "superfluousness": [["S"]], - "superfluousnesses": null, - "superfluous": [["Y", "P"]], - "superfluously": null, - "superheat": [["D"]], - "superheated": null, - "superheroes": null, - "superhero": [["S", "M"]], - "superheros": null, - "superhero's": null, - "superhighway": [["M", "S"]], - "superhighway's": null, - "superhighways": null, - "superhumanness": [["M"]], - "superhumanness's": null, - "superhuman": [["Y", "P"]], - "superhumanly": null, - "superimpose": [["S", "D", "G"]], - "superimposes": null, - "superimposed": null, - "superimposing": null, - "superimposition": [["M", "S"]], - "superimposition's": null, - "superimpositions": null, - "superintendence": [["S"]], - "superintendences": null, - "superintendency": [["S", "M"]], - "superintendencies": null, - "superintendency's": null, - "superintendent": [["S", "M"]], - "superintendents": null, - "superintendent's": null, - "superintend": [["G", "S", "D"]], - "superintending": null, - "superintends": null, - "superintended": null, - "superiority": [["M", "S"]], - "superiority's": null, - "superiorities": null, - "Superior": [["M"]], - "Superior's": null, - "superior": [["S", "M", "Y"]], - "superiors": null, - "superior's": null, - "superiorly": null, - "superlativeness": [["M"]], - "superlativeness's": null, - "superlative": [["P", "Y", "S"]], - "superlatively": null, - "superlatives": null, - "superlunary": null, - "supermachine": null, - "superman": [["M"]], - "superman's": null, - "Superman": [["M"]], - "Superman's": null, - "supermarket": [["S", "M"]], - "supermarkets": null, - "supermarket's": null, - "supermen": null, - "supermodel": null, - "supermom": [["S"]], - "supermoms": null, - "supernal": null, - "supernatant": null, - "supernaturalism": [["M"]], - "supernaturalism's": null, - "supernaturalness": [["M"]], - "supernaturalness's": null, - "supernatural": [["S", "P", "Y"]], - "supernaturals": null, - "supernaturally": null, - "supernormal": [["Y"]], - "supernormally": null, - "supernovae": null, - "supernova": [["M", "S"]], - "supernova's": null, - "supernovas": null, - "supernumerary": [["S"]], - "supernumeraries": null, - "superordinate": null, - "superpose": [["B", "S", "D", "G"]], - "superposable": null, - "superposes": null, - "superposed": null, - "superposing": null, - "superposition": [["M", "S"]], - "superposition's": null, - "superpositions": null, - "superpower": [["M", "S"]], - "superpower's": null, - "superpowers": null, - "superpredicate": null, - "supersaturate": [["X", "N", "G", "D", "S"]], - "supersaturations": null, - "supersaturation": [["M"]], - "supersaturating": null, - "supersaturated": null, - "supersaturates": null, - "supersaturation's": null, - "superscribe": [["G", "S", "D"]], - "superscribing": null, - "superscribes": null, - "superscribed": null, - "superscript": [["D", "G", "S"]], - "superscripted": null, - "superscripting": null, - "superscripts": null, - "superscription": [["S", "M"]], - "superscriptions": null, - "superscription's": null, - "superseder": [["M"]], - "superseder's": null, - "supersede": [["S", "R", "D", "G"]], - "supersedes": null, - "superseded": null, - "superseding": null, - "supersensitiveness": [["M"]], - "supersensitiveness's": null, - "supersensitive": [["P"]], - "superset": [["M", "S"]], - "superset's": null, - "supersets": null, - "supersonically": null, - "supersonic": [["S"]], - "supersonics": [["M"]], - "supersonics's": null, - "superstar": [["S", "M"]], - "superstars": null, - "superstar's": null, - "superstition": [["S", "M"]], - "superstitions": null, - "superstition's": null, - "superstitious": [["Y", "P"]], - "superstitiously": null, - "superstitiousness": null, - "superstore": [["S"]], - "superstores": null, - "superstructural": null, - "superstructure": [["S", "M"]], - "superstructures": null, - "superstructure's": null, - "supertanker": [["S", "M"]], - "supertankers": null, - "supertanker's": null, - "supertitle": [["M", "S", "D", "G"]], - "supertitle's": null, - "supertitles": null, - "supertitled": null, - "supertitling": null, - "superuser": [["M", "S"]], - "superuser's": null, - "superusers": null, - "supervene": [["G", "S", "D"]], - "supervening": null, - "supervenes": null, - "supervened": null, - "supervention": [["S"]], - "superventions": null, - "supervised": [["U"]], - "unsupervised": null, - "supervise": [["S", "D", "G", "N", "X"]], - "supervises": null, - "supervising": null, - "supervision": [["M"]], - "supervisions": null, - "supervision's": null, - "supervisor": [["S", "M"]], - "supervisors": null, - "supervisor's": null, - "supervisory": null, - "superwoman": [["M"]], - "superwoman's": null, - "superwomen": null, - "supineness": [["M"]], - "supineness's": null, - "supine": [["P", "S", "Y"]], - "supines": null, - "supinely": null, - "supper": [["D", "M", "G"]], - "suppered": null, - "supper's": null, - "suppering": null, - "supplanter": [["M"]], - "supplanter's": null, - "supplant": [["S", "G", "R", "D"]], - "supplants": null, - "supplanting": null, - "supplanted": null, - "supplemental": [["S"]], - "supplementals": null, - "supplementary": [["S"]], - "supplementaries": null, - "supplementation": [["S"]], - "supplementations": null, - "supplementer": [["M"]], - "supplementer's": null, - "supplement": [["S", "M", "D", "R", "G"]], - "supplements": null, - "supplement's": null, - "supplemented": null, - "supplementing": null, - "suppleness": [["S", "M"]], - "supplenesses": null, - "suppleness's": null, - "supple": [["S", "P", "L", "Y"]], - "supples": null, - "supplely": null, - "suppliant": [["S"]], - "suppliants": null, - "supplicant": [["M", "S"]], - "supplicant's": null, - "supplicants": null, - "supplicate": [["N", "G", "X", "S", "D"]], - "supplication": [["M"]], - "supplicating": null, - "supplications": null, - "supplicates": null, - "supplicated": null, - "supplication's": null, - "supplier": [["A", "M"]], - "resupplier": null, - "resupplier's": null, - "supplier's": null, - "suppl": [["R", "D", "G", "T"]], - "suppler": null, - "suppled": null, - "suppling": null, - "supplest": null, - "supply": [["M", "A", "Z", "G", "S", "R", "D"]], - "supply's": null, - "resupply's": null, - "resupply": null, - "resuppliers": null, - "resupplying": null, - "resupplies": null, - "resupplied": null, - "suppliers": null, - "supplying": null, - "supplies": null, - "supplied": null, - "supportability": [["M"]], - "supportability's": null, - "supportable": [["U", "I"]], - "unsupportable": null, - "supported": [["U"]], - "unsupported": null, - "supporter": [["M"]], - "supporter's": null, - "supporting": [["Y"]], - "supportingly": null, - "supportive": [["Y"]], - "supportively": null, - "support": [["Z", "G", "V", "S", "B", "D", "R"]], - "supporters": null, - "supports": null, - "supposed": [["Y"]], - "supposedly": null, - "suppose": [["S", "R", "D", "B", "J", "G"]], - "supposes": null, - "supposer": null, - "supposable": null, - "supposings": null, - "supposing": null, - "supposition": [["M", "S"]], - "supposition's": null, - "suppositions": null, - "suppository": [["M", "S"]], - "suppository's": null, - "suppositories": null, - "suppressant": [["S"]], - "suppressants": null, - "suppressed": [["U"]], - "unsuppressed": null, - "suppressible": [["I"]], - "insuppressible": null, - "suppression": [["S", "M"]], - "suppressions": null, - "suppression's": null, - "suppressive": [["P"]], - "suppressiveness": null, - "suppressor": [["S"]], - "suppressors": null, - "suppress": [["V", "G", "S", "D"]], - "suppressing": null, - "suppresses": null, - "suppurate": [["N", "G", "X", "S", "D"]], - "suppuration": [["M"]], - "suppurating": null, - "suppurations": null, - "suppurates": null, - "suppurated": null, - "suppuration's": null, - "supp": [["Y", "D", "R", "G", "Z"]], - "supped": null, - "supping": null, - "suppers": null, - "supra": null, - "supranational": null, - "supranationalism": [["M"]], - "supranationalism's": null, - "suprasegmental": null, - "supremacist": [["S", "M"]], - "supremacists": null, - "supremacist's": null, - "supremacy": [["S", "M"]], - "supremacies": null, - "supremacy's": null, - "supremal": null, - "supremeness": [["M"]], - "supremeness's": null, - "supreme": [["P", "S", "R", "T", "Y"]], - "supremes": null, - "supremer": null, - "supremest": null, - "supremely": null, - "supremo": [["M"]], - "supremo's": null, - "sup": [["R", "S", "Z"]], - "sups": null, - "supers": null, - "supt": null, - "Supt": [["M"]], - "Supt's": null, - "Surabaya": [["M"]], - "Surabaya's": null, - "Surat": [["M"]], - "Surat's": null, - "surcease": [["D", "S", "M", "G"]], - "surceased": null, - "surceases": null, - "surcease's": null, - "surceasing": null, - "surcharge": [["M", "G", "S", "D"]], - "surcharge's": null, - "surcharging": null, - "surcharges": null, - "surcharged": null, - "surcingle": [["M", "G", "S", "D"]], - "surcingle's": null, - "surcingling": null, - "surcingles": null, - "surcingled": null, - "surd": [["M"]], - "surd's": null, - "sured": [["I"]], - "surefire": null, - "surefooted": null, - "surely": null, - "sureness": [["M", "S"]], - "sureness's": [["U"]], - "surenesses": null, - "unsureness's": null, - "sure": [["P", "U"]], - "unsureness": null, - "unsure": null, - "surer": [["I"]], - "surest": null, - "surety": [["S", "M"]], - "sureties": null, - "surety's": null, - "surfaced": [["U", "A"]], - "unsurfaced": null, - "resurfaced": null, - "surface": [["G", "S", "R", "D", "P", "Z", "M"]], - "surfacing": [["A"]], - "surfaces": [["A"]], - "surfacer": [["A", "M", "S"]], - "surfaceness": null, - "surfacers": null, - "surface's": null, - "resurfacer": null, - "resurfacer's": null, - "resurfacers": null, - "surfacer's": null, - "resurfaces": null, - "resurfacing": null, - "surfactant": [["S", "M"]], - "surfactants": null, - "surfactant's": null, - "surfboard": [["M", "D", "S", "G"]], - "surfboard's": null, - "surfboarded": null, - "surfboards": null, - "surfboarding": null, - "surfeit": [["S", "D", "R", "M", "G"]], - "surfeits": null, - "surfeited": null, - "surfeiter": null, - "surfeit's": null, - "surfeiting": null, - "surfer": [["M"]], - "surfer's": null, - "surfing": [["M"]], - "surfing's": null, - "surf": [["S", "J", "D", "R", "G", "M", "Z"]], - "surfs": null, - "surfings": null, - "surfed": null, - "surf's": null, - "surfers": null, - "surged": [["A"]], - "resurged": null, - "surge": [["G", "Y", "M", "D", "S"]], - "surging": null, - "surgely": null, - "surge's": null, - "surges": [["A"]], - "surgeon": [["M", "S"]], - "surgeon's": null, - "surgeons": null, - "surgery": [["M", "S"]], - "surgery's": null, - "surgeries": null, - "resurges": null, - "surgical": [["Y"]], - "surgically": null, - "Suriname": null, - "Surinamese": null, - "Surinam's": null, - "surliness": [["S", "M"]], - "surlinesses": null, - "surliness's": null, - "surly": [["T", "P", "R"]], - "surliest": null, - "surlier": null, - "surmiser": [["M"]], - "surmiser's": null, - "surmise": [["S", "R", "D", "G"]], - "surmises": null, - "surmised": null, - "surmising": null, - "surmountable": [["I", "U"]], - "insurmountable": null, - "unsurmountable": null, - "surmount": [["D", "B", "S", "G"]], - "surmounted": null, - "surmounts": null, - "surmounting": null, - "surname": [["G", "S", "D", "M"]], - "surnaming": null, - "surnames": null, - "surnamed": null, - "surname's": null, - "surpassed": [["U"]], - "unsurpassed": null, - "surpass": [["G", "D", "S"]], - "surpassing": [["Y"]], - "surpasses": null, - "surpassingly": null, - "surplice": [["S", "M"]], - "surplices": null, - "surplice's": null, - "surplus": [["M", "S"]], - "surplus's": null, - "surpluses": null, - "surplussed": null, - "surplussing": null, - "surprised": [["U"]], - "unsurprised": null, - "surprise": [["M", "G", "D", "R", "S", "J"]], - "surprise's": null, - "surprising": [["Y", "U"]], - "surpriser": [["M"]], - "surprises": null, - "surprisings": null, - "surpriser's": null, - "surprisingly": null, - "unsurprisingly": null, - "unsurprising": null, - "surrealism": [["M", "S"]], - "surrealism's": null, - "surrealisms": null, - "surrealistic": null, - "surrealistically": null, - "surrealist": [["S"]], - "surrealists": null, - "surreality": null, - "surreal": [["S"]], - "surreals": null, - "surrender": [["D", "R", "S", "G"]], - "surrendered": null, - "surrenderer": [["M"]], - "surrenders": null, - "surrendering": null, - "surrenderer's": null, - "surreptitiousness": [["S"]], - "surreptitiousnesses": null, - "surreptitious": [["P", "Y"]], - "surreptitiously": null, - "surrey": [["S", "M"]], - "surreys": null, - "surrey's": null, - "surrogacy": [["S"]], - "surrogacies": null, - "surrogate": [["S", "D", "M", "N", "G"]], - "surrogates": null, - "surrogated": null, - "surrogate's": null, - "surrogation": [["M"]], - "surrogating": null, - "surrogation's": null, - "surrounding": [["M"]], - "surrounding's": null, - "surround": [["J", "G", "S", "D"]], - "surroundings": null, - "surrounds": null, - "surrounded": null, - "surtax": [["S", "D", "G", "M"]], - "surtaxes": null, - "surtaxed": null, - "surtaxing": null, - "surtax's": null, - "surveillance": [["S", "M"]], - "surveillances": null, - "surveillance's": null, - "surveillant": null, - "surveyed": [["A"]], - "resurveyed": null, - "surveying": [["M"]], - "surveying's": null, - "survey": [["J", "D", "S", "G"]], - "surveyings": null, - "surveys": [["A"]], - "surveyor": [["M", "S"]], - "surveyor's": null, - "surveyors": null, - "resurveys": null, - "survivability": [["M"]], - "survivability's": null, - "survivable": [["U"]], - "unsurvivable": null, - "survivalist": [["S"]], - "survivalists": null, - "survival": [["M", "S"]], - "survival's": null, - "survivals": null, - "survive": [["S", "R", "D", "B", "G"]], - "survives": null, - "surviver": null, - "survived": null, - "surviving": null, - "survivor": [["M", "S"]], - "survivor's": null, - "survivors": null, - "survivorship": [["M"]], - "survivorship's": null, - "Surya": [["M"]], - "Surya's": null, - "Sus": null, - "Susana": [["M"]], - "Susana's": null, - "Susanetta": [["M"]], - "Susanetta's": null, - "Susan": [["M"]], - "Susan's": null, - "Susannah": [["M"]], - "Susannah's": null, - "Susanna": [["M"]], - "Susanna's": null, - "Susanne": [["M"]], - "Susanne's": null, - "Susann": [["M"]], - "Susann's": null, - "susceptibilities": null, - "susceptibility": [["I", "M"]], - "insusceptibility": null, - "insusceptibility's": null, - "susceptibility's": null, - "susceptible": [["I"]], - "insusceptible": null, - "Susette": [["M"]], - "Susette's": null, - "sushi": [["S", "M"]], - "sushis": null, - "sushi's": null, - "Susie": [["M"]], - "Susie's": null, - "Susi": [["M"]], - "Susi's": null, - "suspected": [["U"]], - "unsuspected": null, - "suspecter": [["M"]], - "suspecter's": null, - "suspect": [["G", "S", "D", "R"]], - "suspecting": [["U"]], - "suspects": null, - "unsuspecting": [["Y"]], - "suspend": [["D", "R", "Z", "G", "S"]], - "suspended": [["U", "A"]], - "suspender": [["M"]], - "suspenders": null, - "suspending": null, - "suspends": null, - "unsuspended": null, - "resuspended": null, - "suspender's": null, - "suspenseful": null, - "suspense": [["M", "X", "N", "V", "S"]], - "suspense's": null, - "suspensions": null, - "suspension": [["A", "M"]], - "suspensive": [["Y"]], - "suspenses": null, - "resuspension": null, - "resuspension's": null, - "suspension's": null, - "suspensively": null, - "suspensor": [["M"]], - "suspensor's": null, - "suspicion": [["G", "S", "M", "D"]], - "suspicioning": null, - "suspicions": null, - "suspicion's": null, - "suspicioned": null, - "suspiciousness": [["M"]], - "suspiciousness's": null, - "suspicious": [["Y", "P"]], - "suspiciously": null, - "Susquehanna": [["M"]], - "Susquehanna's": null, - "Sussex": [["M"]], - "Sussex's": null, - "sustainability": null, - "sustainable": [["U"]], - "unsustainable": null, - "sustain": [["D", "R", "G", "L", "B", "S"]], - "sustained": null, - "sustainer": [["M"]], - "sustaining": null, - "sustainment": [["M"]], - "sustains": null, - "sustainer's": null, - "sustainment's": null, - "sustenance": [["M", "S"]], - "sustenance's": null, - "sustenances": null, - "Susy": [["M"]], - "Susy's": null, - "Sutherland": [["M"]], - "Sutherland's": null, - "Sutherlan": [["M"]], - "Sutherlan's": null, - "sutler": [["M", "S"]], - "sutler's": null, - "sutlers": null, - "Sutton": [["M"]], - "Sutton's": null, - "suture": [["G", "M", "S", "D"]], - "suturing": null, - "suture's": null, - "sutures": null, - "sutured": null, - "SUV": null, - "Suva": [["M"]], - "Suva's": null, - "Suwanee": [["M"]], - "Suwanee's": null, - "Suzanna": [["M"]], - "Suzanna's": null, - "Suzanne": [["M"]], - "Suzanne's": null, - "Suzann": [["M"]], - "Suzann's": null, - "suzerain": [["S", "M"]], - "suzerains": null, - "suzerain's": null, - "suzerainty": [["M", "S"]], - "suzerainty's": null, - "suzerainties": null, - "Suzette": [["M"]], - "Suzette's": null, - "Suzhou": [["M"]], - "Suzhou's": null, - "Suzie": [["M"]], - "Suzie's": null, - "Suzi": [["M"]], - "Suzi's": null, - "Suzuki": [["M"]], - "Suzuki's": null, - "Suzy": [["M"]], - "Suzy's": null, - "Svalbard": [["M"]], - "Svalbard's": null, - "svelte": [["R", "P", "T", "Y"]], - "svelter": null, - "svelteness": null, - "sveltest": null, - "sveltely": null, - "Svend": [["M"]], - "Svend's": null, - "Svengali": null, - "Sven": [["M"]], - "Sven's": null, - "Sverdlovsk": [["M"]], - "Sverdlovsk's": null, - "Svetlana": [["M"]], - "Svetlana's": null, - "SW": null, - "swabbed": null, - "swabbing": null, - "swabby": [["S"]], - "swabbies": null, - "Swabian": [["S", "M"]], - "Swabians": null, - "Swabian's": null, - "swab": [["M", "S"]], - "swab's": null, - "swabs": null, - "swaddle": [["S", "D", "G"]], - "swaddles": null, - "swaddled": null, - "swaddling": null, - "swagged": null, - "swagger": [["G", "S", "D", "R"]], - "swaggering": null, - "swaggers": null, - "swaggered": null, - "swaggerer": null, - "swagging": null, - "swag": [["G", "M", "S"]], - "swaging": null, - "swag's": null, - "swags": null, - "Swahili": [["M", "S"]], - "Swahili's": null, - "Swahilis": null, - "swain": [["S", "M"]], - "swains": null, - "swain's": null, - "SWAK": null, - "swallower": [["M"]], - "swallower's": null, - "swallow": [["G", "D", "R", "S"]], - "swallowing": null, - "swallowed": null, - "swallows": null, - "swallowtail": [["S", "M"]], - "swallowtails": null, - "swallowtail's": null, - "swam": null, - "swami": [["S", "M"]], - "swamis": null, - "swami's": null, - "swamper": [["M"]], - "swamper's": null, - "swampland": [["M", "S"]], - "swampland's": null, - "swamplands": null, - "swamp": [["S", "R", "D", "M", "G"]], - "swamps": null, - "swamped": null, - "swamp's": null, - "swamping": null, - "swampy": [["R", "P", "T"]], - "swampier": null, - "swampiness": null, - "swampiest": null, - "Swanee": [["M"]], - "Swanee's": null, - "swankily": null, - "swankiness": [["M", "S"]], - "swankiness's": null, - "swankinesses": null, - "swank": [["R", "D", "S", "G", "T"]], - "swanker": null, - "swanked": null, - "swanks": null, - "swanking": null, - "swankest": null, - "swanky": [["P", "T", "R", "S"]], - "swankiest": null, - "swankier": null, - "swankies": null, - "swanlike": null, - "swan": [["M", "S"]], - "swan's": null, - "swans": null, - "swanned": null, - "swanning": null, - "Swansea": [["M"]], - "Swansea's": null, - "Swanson": [["M"]], - "Swanson's": null, - "swappable": [["U"]], - "unswappable": null, - "swapped": null, - "swapper": [["S", "M"]], - "swappers": null, - "swapper's": null, - "swapping": null, - "swap": [["S"]], - "swaps": null, - "sward": [["M", "S", "G", "D"]], - "sward's": null, - "swards": null, - "swarding": null, - "swarded": null, - "swarmer": [["M"]], - "swarmer's": null, - "swarm": [["G", "S", "R", "D", "M"]], - "swarming": null, - "swarms": null, - "swarmed": null, - "swarm's": null, - "swarthiness": [["M"]], - "swarthiness's": null, - "Swarthmore": [["M"]], - "Swarthmore's": null, - "swarthy": [["R", "T", "P"]], - "swarthier": null, - "swarthiest": null, - "swart": [["P"]], - "swartness": null, - "Swartz": [["M"]], - "Swartz's": null, - "swashbuckler": [["S", "M"]], - "swashbucklers": null, - "swashbuckler's": null, - "swashbuckling": [["S"]], - "swashbucklings": null, - "swash": [["G", "S", "R", "D"]], - "swashing": null, - "swashes": null, - "swasher": null, - "swashed": null, - "swastika": [["S", "M"]], - "swastikas": null, - "swastika's": null, - "SWAT": null, - "swatch": [["M", "S"]], - "swatch's": null, - "swatches": null, - "swathe": null, - "swather": [["M"]], - "swather's": null, - "swaths": null, - "swath": [["S", "R", "D", "M", "G", "J"]], - "swathes": null, - "swathed": null, - "swath's": null, - "swathing": null, - "swathings": null, - "swat": [["S"]], - "swats": null, - "swatted": null, - "swatter": [["M", "D", "S", "G"]], - "swatter's": null, - "swattered": null, - "swatters": null, - "swattering": null, - "swatting": null, - "swayback": [["S", "D"]], - "swaybacks": null, - "swaybacked": null, - "sway": [["D", "R", "G", "S"]], - "swayed": null, - "swayer": [["M"]], - "swaying": null, - "sways": null, - "swayer's": null, - "Swaziland": [["M"]], - "Swaziland's": null, - "Swazi": [["S", "M"]], - "Swazis": null, - "Swazi's": null, - "swearer": [["M"]], - "swearer's": null, - "swear": [["S", "G", "Z", "R"]], - "swears": null, - "swearing": null, - "swearers": null, - "swearword": [["S", "M"]], - "swearwords": null, - "swearword's": null, - "sweatband": [["M", "S"]], - "sweatband's": null, - "sweatbands": null, - "sweater": [["M"]], - "sweater's": null, - "sweatily": null, - "sweatiness": [["M"]], - "sweatiness's": null, - "sweatpants": null, - "sweat": [["S", "G", "Z", "R", "M"]], - "sweats": null, - "sweating": null, - "sweaters": null, - "sweat's": null, - "sweatshirt": [["S"]], - "sweatshirts": null, - "sweatshop": [["M", "S"]], - "sweatshop's": null, - "sweatshops": null, - "sweaty": [["T", "R", "P"]], - "sweatiest": null, - "sweatier": null, - "Swedenborg": [["M"]], - "Swedenborg's": null, - "Sweden": [["M"]], - "Sweden's": null, - "swede": [["S", "M"]], - "swedes": null, - "swede's": null, - "Swede": [["S", "M"]], - "Swedes": null, - "Swede's": null, - "Swedish": null, - "Swed": [["M", "N"]], - "Swed's": null, - "Sweeney": [["S", "M"]], - "Sweeneys": null, - "Sweeney's": null, - "sweeper": [["M"]], - "sweeper's": null, - "sweepingness": [["M"]], - "sweepingness's": null, - "sweeping": [["P", "Y"]], - "sweepingly": null, - "sweep": [["S", "B", "R", "J", "G", "Z"]], - "sweeps": [["M"]], - "sweepable": null, - "sweepings": null, - "sweepers": null, - "sweeps's": null, - "sweepstakes": null, - "sweepstake's": null, - "sweetbread": [["S", "M"]], - "sweetbreads": null, - "sweetbread's": null, - "sweetbrier": [["S", "M"]], - "sweetbriers": null, - "sweetbrier's": null, - "sweetcorn": null, - "sweetened": [["U"]], - "unsweetened": null, - "sweetener": [["M"]], - "sweetener's": null, - "sweetening": [["M"]], - "sweetening's": null, - "sweeten": [["Z", "D", "R", "G", "J"]], - "sweeteners": null, - "sweetenings": null, - "sweetheart": [["M", "S"]], - "sweetheart's": null, - "sweethearts": null, - "sweetie": [["M", "S"]], - "sweetie's": null, - "sweeties": null, - "sweeting": [["M"]], - "sweeting's": null, - "sweetish": [["Y"]], - "sweetishly": null, - "Sweet": [["M"]], - "Sweet's": null, - "sweetmeat": [["M", "S"]], - "sweetmeat's": null, - "sweetmeats": null, - "sweetness": [["M", "S"]], - "sweetness's": null, - "sweetnesses": null, - "sweetshop": null, - "sweet": [["T", "X", "S", "Y", "R", "N", "P", "G"]], - "sweetest": null, - "sweetens": null, - "sweets": null, - "sweetly": null, - "sweeter": null, - "swellhead": [["D", "S"]], - "swellheaded": null, - "swellheads": null, - "swelling": [["M"]], - "swelling's": null, - "swell": [["S", "J", "R", "D", "G", "T"]], - "swells": null, - "swellings": null, - "sweller": null, - "swelled": null, - "swellest": null, - "swelter": [["D", "J", "G", "S"]], - "sweltered": null, - "swelterings": null, - "sweltering": [["Y"]], - "swelters": null, - "swelteringly": null, - "Swen": [["M"]], - "Swen's": null, - "Swenson": [["M"]], - "Swenson's": null, - "swept": null, - "sweptback": null, - "swerve": [["G", "S", "D"]], - "swerving": [["U"]], - "swerves": null, - "swerved": null, - "unswerving": [["Y"]], - "swifter": [["M"]], - "swifter's": null, - "swift": [["G", "T", "Y", "R", "D", "P", "S"]], - "swifting": null, - "swiftest": null, - "swiftly": null, - "swifted": null, - "swiftness": [["M", "S"]], - "swifts": null, - "Swift": [["M"]], - "Swift's": null, - "swiftness's": null, - "swiftnesses": null, - "swigged": null, - "swigging": null, - "swig": [["S", "M"]], - "swigs": null, - "swig's": null, - "swill": [["S", "D", "G"]], - "swills": null, - "swilled": null, - "swilling": null, - "swimmer": [["M", "S"]], - "swimmer's": null, - "swimmers": null, - "swimming": [["M", "Y", "S"]], - "swimming's": null, - "swimmingly": null, - "swimmings": null, - "swim": [["S"]], - "swims": null, - "swimsuit": [["M", "S"]], - "swimsuit's": null, - "swimsuits": null, - "Swinburne": [["M"]], - "Swinburne's": null, - "swindle": [["G", "Z", "R", "S", "D"]], - "swindling": null, - "swindlers": null, - "swindler": [["M"]], - "swindles": null, - "swindled": null, - "swindler's": null, - "swineherd": [["M", "S"]], - "swineherd's": null, - "swineherds": null, - "swine": [["S", "M"]], - "swines": null, - "swine's": null, - "swingeing": null, - "swinger": [["M"]], - "swinger's": null, - "swinging": [["Y"]], - "swingingly": null, - "swing": [["S", "G", "R", "Z", "J", "B"]], - "swings": null, - "swingers": null, - "swingings": null, - "swingable": null, - "swingy": [["R"]], - "swingier": null, - "swinishness": [["M"]], - "swinishness's": null, - "swinish": [["P", "Y"]], - "swinishly": null, - "Swink": [["M"]], - "Swink's": null, - "swipe": [["D", "S", "G"]], - "swiped": null, - "swipes": null, - "swiping": null, - "swirling": [["Y"]], - "swirlingly": null, - "swirl": [["S", "G", "R", "D"]], - "swirls": null, - "swirler": null, - "swirled": null, - "swirly": [["T", "R"]], - "swirliest": null, - "swirlier": null, - "swish": [["G", "S", "R", "D"]], - "swishing": null, - "swishes": null, - "swisher": null, - "swished": null, - "swishy": [["R"]], - "swishier": null, - "swiss": null, - "Swiss": [["S"]], - "Swisses": null, - "switchback": [["G", "D", "M", "S"]], - "switchbacking": null, - "switchbacked": null, - "switchback's": null, - "switchbacks": null, - "switchblade": [["S", "M"]], - "switchblades": null, - "switchblade's": null, - "switchboard": [["M", "S"]], - "switchboard's": null, - "switchboards": null, - "switcher": [["M"]], - "switcher's": null, - "switch": [["G", "B", "Z", "M", "R", "S", "D", "J"]], - "switching": null, - "switchable": null, - "switchers": null, - "switch's": null, - "switches": null, - "switched": null, - "switchings": null, - "switchgear": null, - "switchman": [["M"]], - "switchman's": null, - "switchmen": [["M"]], - "switchmen's": null, - "switchover": [["M"]], - "switchover's": null, - "Switzerland": [["M"]], - "Switzerland's": null, - "Switzer": [["M"]], - "Switzer's": null, - "Switz": [["M", "R"]], - "Switz's": null, - "swivel": [["G", "M", "D", "S"]], - "swiveling": null, - "swivel's": null, - "swiveled": null, - "swivels": null, - "swizzle": [["R", "D", "G", "M"]], - "swizzler": null, - "swizzled": null, - "swizzling": null, - "swizzle's": null, - "swob's": null, - "swollen": null, - "swoon": [["G", "S", "R", "D"]], - "swooning": [["Y"]], - "swoons": null, - "swooner": null, - "swooned": null, - "swooningly": null, - "swoop": [["R", "D", "S", "G"]], - "swooper": null, - "swooped": null, - "swoops": null, - "swooping": null, - "swoosh": [["G", "S", "D"]], - "swooshing": null, - "swooshes": null, - "swooshed": null, - "swop's": null, - "sword": [["D", "M", "S", "G"]], - "sworded": null, - "sword's": null, - "swords": null, - "swording": null, - "swordfish": [["S", "M"]], - "swordfishes": null, - "swordfish's": null, - "swordplayer": [["M"]], - "swordplayer's": null, - "swordplay": [["R", "M", "S"]], - "swordplay's": null, - "swordplays": null, - "swordsman": [["M"]], - "swordsman's": null, - "swordsmanship": [["S", "M"]], - "swordsmanships": null, - "swordsmanship's": null, - "swordsmen": null, - "swordtail": [["M"]], - "swordtail's": null, - "swore": null, - "sworn": null, - "swot": [["S"]], - "swots": null, - "swum": null, - "swung": null, - "s": [["X", "J", "B", "G"]], - "sings": null, - "sybarite": [["M", "S"]], - "sybarite's": null, - "sybarites": null, - "sybaritic": null, - "Sybila": [["M"]], - "Sybila's": null, - "Sybilla": [["M"]], - "Sybilla's": null, - "Sybille": [["M"]], - "Sybille's": null, - "Sybil": [["M"]], - "Sybil's": null, - "Sybyl": [["M"]], - "Sybyl's": null, - "sycamore": [["S", "M"]], - "sycamores": null, - "sycamore's": null, - "sycophancy": [["S"]], - "sycophancies": null, - "sycophantic": null, - "sycophantically": null, - "sycophant": [["S", "Y", "M"]], - "sycophants": null, - "sycophantly": null, - "sycophant's": null, - "Sydelle": [["M"]], - "Sydelle's": null, - "Sydel": [["M"]], - "Sydel's": null, - "Syd": [["M"]], - "Syd's": null, - "Sydney": [["M"]], - "Sydney's": null, - "Sykes": [["M"]], - "Sykes's": null, - "Sylas": [["M"]], - "Sylas's": null, - "syllabicate": [["G", "N", "D", "S", "X"]], - "syllabicating": null, - "syllabication": [["M"]], - "syllabicated": null, - "syllabicates": null, - "syllabications": null, - "syllabication's": null, - "syllabicity": null, - "syllabic": [["S"]], - "syllabics": null, - "syllabification": [["M"]], - "syllabification's": null, - "syllabify": [["G", "S", "D", "X", "N"]], - "syllabifying": null, - "syllabifies": null, - "syllabified": null, - "syllabifications": null, - "syllabi's": null, - "syllable": [["S", "D", "M", "G"]], - "syllables": null, - "syllabled": null, - "syllable's": null, - "syllabling": null, - "syllabub": [["M"]], - "syllabub's": null, - "syllabus": [["M", "S"]], - "syllabus's": null, - "syllabuses": null, - "syllabusss": null, - "syllogism": [["M", "S"]], - "syllogism's": null, - "syllogisms": null, - "syllogistic": null, - "Sylow": [["M"]], - "Sylow's": null, - "sylphic": null, - "sylphlike": null, - "sylph": [["M"]], - "sylph's": null, - "sylphs": null, - "Sylvania": [["M"]], - "Sylvania's": null, - "Sylvan": [["M"]], - "Sylvan's": null, - "sylvan": [["S"]], - "sylvans": null, - "Sylvester": [["M"]], - "Sylvester's": null, - "Sylvia": [["M"]], - "Sylvia's": null, - "Sylvie": [["M"]], - "Sylvie's": null, - "Syman": [["M"]], - "Syman's": null, - "symbiont": [["M"]], - "symbiont's": null, - "symbioses": null, - "symbiosis": [["M"]], - "symbiosis's": null, - "symbiotic": null, - "symbol": [["G", "M", "D", "S"]], - "symboling": null, - "symbol's": null, - "symboled": null, - "symbols": null, - "symbolical": [["Y"]], - "symbolically": null, - "symbolics": [["M"]], - "symbolics's": null, - "symbolic": [["S", "M"]], - "symbolic's": null, - "symbolism": [["M", "S"]], - "symbolism's": null, - "symbolisms": null, - "symbolist": [["M", "S"]], - "symbolist's": null, - "symbolists": null, - "symbolization": [["M", "A", "S"]], - "symbolization's": null, - "resymbolization's": null, - "resymbolization": null, - "resymbolizations": null, - "symbolizations": null, - "symbolized": [["U"]], - "unsymbolized": null, - "symbolize": [["G", "Z", "R", "S", "D"]], - "symbolizing": null, - "symbolizers": null, - "symbolizer": null, - "symbolizes": [["A"]], - "resymbolizes": null, - "Symington": [["M"]], - "Symington's": null, - "symmetric": null, - "symmetrically": [["U"]], - "unsymmetrically": null, - "symmetricalness": [["M"]], - "symmetricalness's": null, - "symmetrical": [["P", "Y"]], - "symmetrization": [["M"]], - "symmetrization's": null, - "symmetrizing": null, - "symmetry": [["M", "S"]], - "symmetry's": null, - "symmetries": null, - "Symon": [["M"]], - "Symon's": null, - "sympathetically": [["U"]], - "unsympathetically": null, - "sympathetic": [["S"]], - "sympathetics": null, - "sympathized": [["U"]], - "unsympathized": null, - "sympathizer": [["M"]], - "sympathizer's": null, - "sympathize": [["S", "R", "D", "J", "G", "Z"]], - "sympathizes": null, - "sympathizings": null, - "sympathizing": [["M", "Y", "U", "S"]], - "sympathizers": null, - "sympathizing's": null, - "unsympathizing's": null, - "sympathizingly": null, - "unsympathizingly": null, - "unsympathizing": null, - "unsympathizings": null, - "sympathy": [["M", "S"]], - "sympathy's": null, - "sympathies": null, - "symphonic": null, - "symphonists": null, - "symphony": [["M", "S"]], - "symphony's": null, - "symphonies": null, - "symposium": [["M", "S"]], - "symposium's": null, - "symposiums": null, - "symptomatic": null, - "symptomatically": null, - "symptomatology": [["M"]], - "symptomatology's": null, - "symptom": [["M", "S"]], - "symptom's": null, - "symptoms": null, - "syn": null, - "synagogal": null, - "synagogue": [["S", "M"]], - "synagogues": null, - "synagogue's": null, - "synapse": [["S", "D", "G", "M"]], - "synapses": null, - "synapsed": null, - "synapsing": null, - "synapse's": null, - "synaptic": null, - "synchronism": [["M"]], - "synchronism's": null, - "synchronization's": null, - "synchronization": [["S", "A"]], - "synchronizations": null, - "resynchronizations": null, - "resynchronization": null, - "synchronize": [["A", "G", "C", "D", "S"]], - "resynchronize": null, - "resynchronizing": null, - "resynchronized": null, - "resynchronizes": null, - "synchronizing": null, - "desynchronizing": null, - "desynchronize": null, - "desynchronized": null, - "desynchronizes": null, - "synchronized": [["U"]], - "synchronizes": null, - "unsynchronized": null, - "synchronizer": [["M", "S"]], - "synchronizer's": null, - "synchronizers": null, - "synchronousness": [["M"]], - "synchronousness's": null, - "synchronous": [["Y", "P"]], - "synchronously": null, - "synchrony": null, - "synchrotron": [["M"]], - "synchrotron's": null, - "syncopate": [["V", "N", "G", "X", "S", "D"]], - "syncopative": null, - "syncopation": [["M"]], - "syncopating": null, - "syncopations": null, - "syncopates": null, - "syncopated": null, - "syncopation's": null, - "syncope": [["M", "S"]], - "syncope's": null, - "syncopes": null, - "sync": [["S", "G", "D"]], - "syncs": null, - "syncing": null, - "synced": null, - "syndicalist": null, - "syndicate": [["X", "S", "D", "G", "N", "M"]], - "syndications": null, - "syndicates": null, - "syndicated": null, - "syndicating": null, - "syndication": null, - "syndicate's": null, - "syndic": [["S", "M"]], - "syndics": null, - "syndic's": null, - "syndrome": [["S", "M"]], - "syndromes": null, - "syndrome's": null, - "synergism": [["S", "M"]], - "synergisms": null, - "synergism's": null, - "synergistic": null, - "synergy": [["M", "S"]], - "synergy's": null, - "synergies": null, - "synfuel": [["S"]], - "synfuels": null, - "Synge": [["M"]], - "Synge's": null, - "synod": [["S", "M"]], - "synods": null, - "synod's": null, - "synonymic": null, - "synonymous": [["Y"]], - "synonymously": null, - "synonym": [["S", "M"]], - "synonyms": null, - "synonym's": null, - "synonymy": [["M", "S"]], - "synonymy's": null, - "synonymies": null, - "synopses": null, - "synopsis": [["M"]], - "synopsis's": null, - "synopsized": null, - "synopsizes": null, - "synopsizing": null, - "synoptic": [["S"]], - "synoptics": null, - "syntactical": [["Y"]], - "syntactically": null, - "syntactics": [["M"]], - "syntactics's": null, - "syntactic": [["S", "Y"]], - "syntacticly": null, - "syntax": [["M", "S"]], - "syntax's": null, - "syntaxes": null, - "syntheses": null, - "synthesis": [["M"]], - "synthesis's": null, - "synthesized": [["U"]], - "unsynthesized": null, - "synthesize": [["G", "Z", "S", "R", "D"]], - "synthesizing": null, - "synthesizers": null, - "synthesizes": [["A"]], - "synthesizer": [["M"]], - "synthesizer's": null, - "resynthesizes": null, - "synthetically": null, - "synthetic": [["S"]], - "synthetics": null, - "syphilis": [["M", "S"]], - "syphilis's": null, - "syphilises": null, - "syphilitic": [["S"]], - "syphilitics": null, - "syphilized": null, - "syphilizing": null, - "Syracuse": [["M"]], - "Syracuse's": null, - "Syriac": [["M"]], - "Syriac's": null, - "Syria": [["M"]], - "Syria's": null, - "Syrian": [["S", "M"]], - "Syrians": null, - "Syrian's": null, - "syringe": [["G", "M", "S", "D"]], - "syringing": null, - "syringe's": null, - "syringes": null, - "syringed": null, - "syrup": [["D", "M", "S", "G"]], - "syruped": null, - "syrup's": null, - "syrups": null, - "syruping": null, - "syrupy": null, - "sys": null, - "systematical": [["Y"]], - "systematically": null, - "systematics": [["M"]], - "systematics's": null, - "systematic": [["S", "P"]], - "systematicness": null, - "systematization": [["S", "M"]], - "systematizations": null, - "systematization's": null, - "systematized": [["U"]], - "unsystematized": [["Y"]], - "systematizer": [["M"]], - "systematizer's": null, - "systematize": [["Z", "D", "R", "S", "G"]], - "systematizers": null, - "systematizes": null, - "systematizing": [["U"]], - "unsystematizing": null, - "systemically": null, - "systemic": [["S"]], - "systemics": null, - "systemization": [["S", "M"]], - "systemizations": null, - "systemization's": null, - "system": [["M", "S"]], - "system's": null, - "systems": null, - "systole": [["M", "S"]], - "systole's": null, - "systoles": null, - "systolic": null, - "Szilard": [["M"]], - "Szilard's": null, - "Szymborska": [["M"]], - "Szymborska's": null, - "TA": null, - "Tabasco": [["M", "S"]], - "Tabasco's": null, - "Tabascos": null, - "Tabatha": [["M"]], - "Tabatha's": null, - "Tabbatha": [["M"]], - "Tabbatha's": null, - "tabbed": null, - "Tabbie": [["M"]], - "Tabbie's": null, - "Tabbi": [["M"]], - "Tabbi's": null, - "tabbing": null, - "Tabbitha": [["M"]], - "Tabbitha's": null, - "Tabb": [["M"]], - "Tabb's": null, - "tabbouleh": null, - "tabboulehs": null, - "tabby": [["G", "S", "D"]], - "tabbying": null, - "tabbies": null, - "tabbied": null, - "Tabby": [["M"]], - "Tabby's": null, - "Taber": [["M"]], - "Taber's": null, - "Tabernacle": [["S"]], - "Tabernacles": null, - "tabernacle": [["S", "D", "G", "M"]], - "tabernacles": null, - "tabernacled": null, - "tabernacling": null, - "tabernacle's": null, - "Tabina": [["M"]], - "Tabina's": null, - "Tabitha": [["M"]], - "Tabitha's": null, - "tabla": [["M", "S"]], - "tabla's": null, - "tablas": null, - "tableau": [["M"]], - "tableau's": null, - "tableaux": null, - "tablecloth": [["M"]], - "tablecloth's": null, - "tablecloths": null, - "table": [["G", "M", "S", "D"]], - "tabling": [["M"]], - "table's": null, - "tables": null, - "tabled": null, - "tableland": [["S", "M"]], - "tablelands": null, - "tableland's": null, - "tablespoonful": [["M", "S"]], - "tablespoonful's": null, - "tablespoonfuls": null, - "tablespoon": [["S", "M"]], - "tablespoons": null, - "tablespoon's": null, - "tablet": [["M", "D", "G", "S"]], - "tablet's": null, - "tableted": null, - "tableting": null, - "tablets": null, - "tabletop": [["M", "S"]], - "tabletop's": null, - "tabletops": null, - "tableware": [["S", "M"]], - "tablewares": null, - "tableware's": null, - "tabling's": null, - "tabloid": [["M", "S"]], - "tabloid's": null, - "tabloids": null, - "Tab": [["M", "R"]], - "Tab's": null, - "taboo": [["G", "S", "M", "D"]], - "tabooing": null, - "taboos": null, - "taboo's": null, - "tabooed": null, - "Tabor": [["M"]], - "Tabor's": null, - "tabor": [["M", "D", "G", "S"]], - "tabor's": null, - "tabored": null, - "taboring": null, - "tabors": null, - "Tabriz": [["S", "M"]], - "Tabrizes": null, - "Tabriz's": null, - "tab": [["S", "M"]], - "tabs": null, - "tab's": null, - "tabula": null, - "tabular": [["Y"]], - "tabularly": null, - "tabulate": [["X", "N", "G", "D", "S"]], - "tabulations": null, - "tabulation": [["M"]], - "tabulating": null, - "tabulated": null, - "tabulates": null, - "tabulation's": null, - "tabulator": [["M", "S"]], - "tabulator's": null, - "tabulators": null, - "tachometer": [["S", "M"]], - "tachometers": null, - "tachometer's": null, - "tachometry": null, - "tachycardia": [["M", "S"]], - "tachycardia's": null, - "tachycardias": null, - "tachyon": [["S", "M"]], - "tachyons": null, - "tachyon's": null, - "tacitness": [["M", "S"]], - "tacitness's": null, - "tacitnesses": null, - "taciturnity": [["M", "S"]], - "taciturnity's": null, - "taciturnities": null, - "taciturn": [["Y"]], - "taciturnly": null, - "Tacitus": [["M"]], - "Tacitus's": null, - "tacit": [["Y", "P"]], - "tacitly": null, - "tacker": [["M"]], - "tacker's": null, - "tack": [["G", "Z", "R", "D", "M", "S"]], - "tacking": null, - "tackers": null, - "tacked": null, - "tack's": null, - "tacks": null, - "tackiness": [["M", "S"]], - "tackiness's": null, - "tackinesses": null, - "tackler": [["M"]], - "tackler's": null, - "tackle": [["R", "S", "D", "M", "Z", "G"]], - "tackles": null, - "tackled": null, - "tackle's": null, - "tacklers": null, - "tackling": [["M"]], - "tackling's": null, - "tacky": [["R", "S", "T", "P"]], - "tackier": null, - "tackies": null, - "tackiest": null, - "Tacoma": [["M"]], - "Tacoma's": null, - "taco": [["M", "S"]], - "taco's": null, - "tacos": null, - "tact": [["F", "S", "M"]], - "tacts": null, - "tact's": null, - "tactfulness": [["S"]], - "tactfulnesses": null, - "tactful": [["Y", "P"]], - "tactfully": null, - "tactical": [["Y"]], - "tactically": null, - "tactician": [["M", "S"]], - "tactician's": null, - "tacticians": null, - "tactic": [["S", "M"]], - "tactics": null, - "tactic's": null, - "tactile": [["Y"]], - "tactilely": null, - "tactility": [["S"]], - "tactilities": null, - "tactlessness": [["S", "M"]], - "tactlessnesses": null, - "tactlessness's": null, - "tactless": [["P", "Y"]], - "tactlessly": null, - "tactual": [["Y"]], - "tactually": null, - "Taddeo": [["M"]], - "Taddeo's": null, - "Taddeusz": [["M"]], - "Taddeusz's": null, - "Tadd": [["M"]], - "Tadd's": null, - "Tadeas": [["M"]], - "Tadeas's": null, - "Tadeo": [["M"]], - "Tadeo's": null, - "Tades": null, - "Tadio": [["M"]], - "Tadio's": null, - "Tad": [["M"]], - "Tad's": null, - "tadpole": [["M", "S"]], - "tadpole's": null, - "tadpoles": null, - "tad": [["S", "M"]], - "tads": null, - "tad's": null, - "Tadzhikistan's": null, - "Tadzhikstan": [["M"]], - "Tadzhikstan's": null, - "Taegu": [["M"]], - "Taegu's": null, - "Taejon": [["M"]], - "Taejon's": null, - "taffeta": [["M", "S"]], - "taffeta's": null, - "taffetas": null, - "taffrail": [["S", "M"]], - "taffrails": null, - "taffrail's": null, - "Taffy": [["M"]], - "Taffy's": null, - "taffy": [["S", "M"]], - "taffies": null, - "taffy's": null, - "Taft": [["M"]], - "Taft's": null, - "Tagalog": [["S", "M"]], - "Tagalogs": null, - "Tagalog's": null, - "tagged": [["U"]], - "untagged": null, - "tagger": [["S"]], - "taggers": null, - "tagging": null, - "Tagore": [["M"]], - "Tagore's": null, - "tag": [["S", "M"]], - "tags": null, - "tag's": null, - "Tagus": [["M"]], - "Tagus's": null, - "Tahitian": [["S"]], - "Tahitians": null, - "Tahiti": [["M"]], - "Tahiti's": null, - "Tahoe": [["M"]], - "Tahoe's": null, - "Taichung": [["M"]], - "Taichung's": null, - "taiga": [["M", "S"]], - "taiga's": null, - "taigas": null, - "tailback": [["M", "S"]], - "tailback's": null, - "tailbacks": null, - "tail": [["C", "M", "R", "D", "G", "A", "S"]], - "detail": null, - "detail's": null, - "detailer": null, - "detailing": null, - "details": null, - "tail's": null, - "retail's": null, - "tailer": [["A", "M"]], - "retailer": null, - "tailed": null, - "retailed": null, - "tailing": [["M", "S"]], - "retailing": null, - "retails": null, - "tails": null, - "tailcoat": [["S"]], - "tailcoats": null, - "retailer's": null, - "tailer's": null, - "tailgate": [["M", "G", "R", "S", "D"]], - "tailgate's": null, - "tailgating": null, - "tailgater": [["M"]], - "tailgates": null, - "tailgated": null, - "tailgater's": null, - "tailing's": null, - "tailings": null, - "taillessness": [["M"]], - "taillessness's": null, - "tailless": [["P"]], - "taillight": [["M", "S"]], - "taillight's": null, - "taillights": null, - "tailor": [["D", "M", "J", "S", "G", "B"]], - "tailored": null, - "tailor's": null, - "tailorings": null, - "tailors": null, - "tailoring": null, - "tailorable": null, - "Tailor": [["M"]], - "Tailor's": null, - "tailpipe": [["S", "M"]], - "tailpipes": null, - "tailpipe's": null, - "tailspin": [["M", "S"]], - "tailspin's": null, - "tailspins": null, - "tailwind": [["S", "M"]], - "tailwinds": null, - "tailwind's": null, - "Tainan": [["M"]], - "Tainan's": null, - "Taine": [["M"]], - "Taine's": null, - "taint": [["D", "G", "S"]], - "tainted": [["U"]], - "tainting": null, - "taints": null, - "untainted": null, - "Taipei": [["M"]], - "Taipei's": null, - "Taite": [["M"]], - "Taite's": null, - "Tait": [["M"]], - "Tait's": null, - "Taiwanese": null, - "Taiwan": [["M"]], - "Taiwan's": null, - "Taiyuan": [["M"]], - "Taiyuan's": null, - "Tajikistan": null, - "takeaway": [["S"]], - "takeaways": null, - "taken": [["A"]], - "retaken": null, - "takeoff": [["S", "M"]], - "takeoffs": null, - "takeoff's": null, - "takeout": [["S"]], - "takeouts": null, - "takeover": [["S", "M"]], - "takeovers": null, - "takeover's": null, - "taker": [["M"]], - "taker's": null, - "take": [["R", "S", "H", "Z", "G", "J"]], - "takes": [["I", "A"]], - "taketh": null, - "takers": null, - "taking": [["I", "A"]], - "takings": null, - "intakes": null, - "retakes": null, - "intaking": null, - "retaking": null, - "Taklamakan": [["M"]], - "Taklamakan's": null, - "Talbert": [["M"]], - "Talbert's": null, - "Talbot": [["M"]], - "Talbot's": null, - "talcked": null, - "talcking": null, - "talc": [["S", "M"]], - "talcs": null, - "talc's": null, - "talcum": [["S"]], - "talcums": null, - "talebearer": [["S", "M"]], - "talebearers": null, - "talebearer's": null, - "talented": [["M"]], - "talented's": null, - "talentless": null, - "talent": [["S", "M", "D"]], - "talents": null, - "talent's": null, - "taler": [["M"]], - "taler's": null, - "tale": [["R", "S", "M", "N"]], - "tales": null, - "tale's": null, - "talion": [["M"]], - "tali": null, - "Talia": [["M"]], - "Talia's": null, - "Taliesin": [["M"]], - "Taliesin's": null, - "talion's": null, - "talismanic": null, - "talisman": [["S", "M"]], - "talismans": null, - "talisman's": null, - "talkativeness": [["M", "S"]], - "talkativeness's": null, - "talkativenesses": null, - "talkative": [["Y", "P"]], - "talkatively": null, - "talker": [["M"]], - "talker's": null, - "talk": [["G", "Z", "S", "R", "D"]], - "talking": null, - "talkers": null, - "talks": null, - "talked": null, - "talkie": [["M"]], - "talkie's": null, - "talky": [["R", "S", "T"]], - "talkier": null, - "talkies": null, - "talkiest": null, - "Talladega": [["M"]], - "Talladega's": null, - "Tallahassee": [["M"]], - "Tallahassee's": null, - "Tallahatchie": [["M"]], - "Tallahatchie's": null, - "Tallahoosa": [["M"]], - "Tallahoosa's": null, - "tallboy": [["M", "S"]], - "tallboy's": null, - "tallboys": null, - "Tallchief": [["M"]], - "Tallchief's": null, - "Talley": [["M"]], - "Talley's": null, - "Talleyrand": [["M"]], - "Talleyrand's": null, - "Tallia": [["M"]], - "Tallia's": null, - "Tallie": [["M"]], - "Tallie's": null, - "Tallinn": [["M"]], - "Tallinn's": null, - "tallish": null, - "tallness": [["M", "S"]], - "tallness's": null, - "tallnesses": null, - "Tallou": [["M"]], - "Tallou's": null, - "tallow": [["D", "M", "S", "G"]], - "tallowed": null, - "tallow's": null, - "tallows": null, - "tallowing": null, - "tallowy": null, - "tall": [["T", "P", "R"]], - "tallest": null, - "taller": null, - "Tallulah": [["M"]], - "Tallulah's": null, - "tally": [["G", "R", "S", "D", "Z"]], - "tallying": null, - "tallier": null, - "tallies": null, - "tallied": null, - "talliers": null, - "tallyho": [["D", "M", "S", "G"]], - "tallyhoed": null, - "tallyho's": null, - "tallyhos": null, - "tallyhoing": null, - "Tally": [["M"]], - "Tally's": null, - "Talmudic": null, - "Talmudist": [["M", "S"]], - "Talmudist's": null, - "Talmudists": null, - "Talmud": [["M", "S"]], - "Talmud's": null, - "Talmuds": null, - "talon": [["S", "M", "D"]], - "talons": null, - "talon's": null, - "taloned": null, - "talus": [["M", "S"]], - "talus's": null, - "taluses": null, - "Talyah": [["M"]], - "Talyah's": null, - "Talya": [["M"]], - "Talya's": null, - "Ta": [["M"]], - "Ta's": null, - "tamable": [["M"]], - "tamable's": null, - "tamale": [["S", "M"]], - "tamales": null, - "tamale's": null, - "tamarack": [["S", "M"]], - "tamaracks": null, - "tamarack's": null, - "Tamarah": [["M"]], - "Tamarah's": null, - "Tamara": [["M"]], - "Tamara's": null, - "tamarind": [["M", "S"]], - "tamarind's": null, - "tamarinds": null, - "Tamar": [["M"]], - "Tamar's": null, - "Tamarra": [["M"]], - "Tamarra's": null, - "Tamas": null, - "tambourine": [["M", "S"]], - "tambourine's": null, - "tambourines": null, - "tamed": [["U"]], - "untamed": null, - "Tameka": [["M"]], - "Tameka's": null, - "tameness": [["S"]], - "tamenesses": null, - "Tamera": [["M"]], - "Tamera's": null, - "Tamerlane": [["M"]], - "Tamerlane's": null, - "tame": [["S", "Y", "P"]], - "tames": null, - "tamely": null, - "Tamika": [["M"]], - "Tamika's": null, - "Tamiko": [["M"]], - "Tamiko's": null, - "Tamil": [["M", "S"]], - "Tamil's": null, - "Tamils": null, - "Tami": [["M"]], - "Tami's": null, - "Tam": [["M"]], - "Tam's": null, - "Tamma": [["M"]], - "Tamma's": null, - "Tammany": [["M"]], - "Tammany's": null, - "Tammara": [["M"]], - "Tammara's": null, - "tam": [["M", "D", "R", "S", "T", "Z", "G", "B"]], - "tam's": null, - "tamer": null, - "tams": null, - "tamest": null, - "tamers": null, - "taming": null, - "Tammie": [["M"]], - "Tammie's": null, - "Tammi": [["M"]], - "Tammi's": null, - "Tammy": [["M"]], - "Tammy's": null, - "Tampa": [["M"]], - "Tampa's": null, - "Tampax": [["M"]], - "Tampax's": null, - "tampered": [["U"]], - "untampered": null, - "tamperer": [["M"]], - "tamperer's": null, - "tamper": [["Z", "G", "R", "D"]], - "tamperers": null, - "tampering": null, - "tampon": [["D", "M", "S", "G"]], - "tamponed": null, - "tampon's": null, - "tampons": null, - "tamponing": null, - "tamp": [["S", "G", "Z", "R", "D"]], - "tamps": null, - "tamping": null, - "tampers": null, - "tamped": null, - "Tamqrah": [["M"]], - "Tamqrah's": null, - "Tamra": [["M"]], - "Tamra's": null, - "tanager": [["M", "S"]], - "tanager's": null, - "tanagers": null, - "Tanaka": [["M"]], - "Tanaka's": null, - "Tana": [["M"]], - "Tana's": null, - "Tananarive": [["M"]], - "Tananarive's": null, - "tanbark": [["S", "M"]], - "tanbarks": null, - "tanbark's": null, - "Tancred": [["M"]], - "Tancred's": null, - "tandem": [["S", "M"]], - "tandems": null, - "tandem's": null, - "Tandie": [["M"]], - "Tandie's": null, - "Tandi": [["M"]], - "Tandi's": null, - "tandoori": [["S"]], - "tandooris": null, - "Tandy": [["M"]], - "Tandy's": null, - "Taney": [["M"]], - "Taney's": null, - "T'ang": null, - "Tanganyika": [["M"]], - "Tanganyika's": null, - "tangelo": [["S", "M"]], - "tangelos": null, - "tangelo's": null, - "tangency": [["M"]], - "tangency's": null, - "tangential": [["Y"]], - "tangentially": null, - "tangent": [["S", "M"]], - "tangents": null, - "tangent's": null, - "tangerine": [["M", "S"]], - "tangerine's": null, - "tangerines": null, - "tang": [["G", "S", "Y", "D", "M"]], - "tanging": null, - "tangs": null, - "tangly": null, - "tanged": null, - "tang's": null, - "tangibility": [["M", "I", "S"]], - "tangibility's": null, - "intangibility's": null, - "intangibility": null, - "intangibilities": null, - "tangibilities": null, - "tangible": [["I", "P", "S"]], - "intangibleness": null, - "intangibles": null, - "tangibleness": [["S", "M"]], - "tangibles": null, - "tangibleness's": [["I"]], - "intangibleness's": null, - "tangiblenesses": null, - "tangibly": [["I"]], - "intangibly": null, - "Tangier": [["M"]], - "Tangier's": null, - "tangle's": null, - "tangle": [["U", "D", "S", "G"]], - "untangle": null, - "untangled": null, - "untangles": null, - "untangling": null, - "tangled": null, - "tangles": null, - "tangling": null, - "tango": [["M", "D", "S", "G"]], - "tango's": null, - "tangoed": null, - "tangos": null, - "tangoing": null, - "Tangshan": [["M"]], - "Tangshan's": null, - "tangy": [["R", "S", "T"]], - "tangier": null, - "tangies": null, - "tangiest": null, - "Tanhya": [["M"]], - "Tanhya's": null, - "Tania": [["M"]], - "Tania's": null, - "Tani": [["M"]], - "Tani's": null, - "Tanisha": [["M"]], - "Tanisha's": null, - "Tanitansy": [["M"]], - "Tanitansy's": null, - "tankard": [["M", "S"]], - "tankard's": null, - "tankards": null, - "tanker": [["M"]], - "tanker's": null, - "tankful": [["M", "S"]], - "tankful's": null, - "tankfuls": null, - "tank": [["G", "Z", "S", "R", "D", "M"]], - "tanking": null, - "tankers": null, - "tanks": null, - "tanked": null, - "tank's": null, - "Tan": [["M"]], - "Tan's": null, - "tan": [["M", "S"]], - "tan's": null, - "tans": null, - "tanned": [["U"]], - "untanned": null, - "Tannenbaum": [["M"]], - "Tannenbaum's": null, - "Tanner": [["M"]], - "Tanner's": null, - "tanner": [["S", "M"]], - "tanners": null, - "tanner's": null, - "tannery": [["M", "S"]], - "tannery's": null, - "tanneries": null, - "tannest": null, - "Tanney": [["M"]], - "Tanney's": null, - "Tannh�user": [["M"]], - "Tannh�user's": null, - "Tannie": [["M"]], - "Tannie's": null, - "tanning": [["S", "M"]], - "tannings": null, - "tanning's": null, - "tannin": [["S", "M"]], - "tannins": null, - "tannin's": null, - "Tann": [["R", "M"]], - "Tann's": null, - "Tanny": [["M"]], - "Tanny's": null, - "Tansy": [["M"]], - "Tansy's": null, - "tansy": [["S", "M"]], - "tansies": null, - "tansy's": null, - "tantalization": [["S", "M"]], - "tantalizations": null, - "tantalization's": null, - "tantalized": [["U"]], - "untantalized": null, - "tantalize": [["G", "Z", "S", "R", "D"]], - "tantalizing": [["Y", "P"]], - "tantalizers": null, - "tantalizes": null, - "tantalizer": null, - "tantalizingly": [["S"]], - "tantalizinglies": null, - "tantalizingness": [["S"]], - "tantalizingnesses": null, - "tantalum": [["M", "S"]], - "tantalum's": null, - "tantalums": null, - "Tantalus": [["M"]], - "Tantalus's": null, - "tantamount": null, - "tantra": [["S"]], - "tantras": null, - "tantrum": [["S", "M"]], - "tantrums": null, - "tantrum's": null, - "Tanya": [["M"]], - "Tanya's": null, - "Tanzania": [["M"]], - "Tanzania's": null, - "Tanzanian": [["S"]], - "Tanzanians": null, - "taoism": null, - "Taoism": [["M", "S"]], - "Taoism's": null, - "Taoisms": null, - "Taoist": [["M", "S"]], - "Taoist's": null, - "Taoists": null, - "taoist": [["S"]], - "taoists": null, - "Tao": [["M"]], - "Tao's": null, - "tao": [["S"]], - "taos": null, - "Tapdance": [["M"]], - "Tapdance's": null, - "taped": [["U"]], - "untaped": null, - "tapeline": [["S"]], - "tapelines": null, - "taperer": [["M"]], - "taperer's": null, - "taper": [["G", "R", "D"]], - "tapering": null, - "tapered": null, - "tape": [["S", "M"]], - "tapes": null, - "tape's": null, - "tapestry": [["G", "M", "S", "D"]], - "tapestrying": null, - "tapestry's": null, - "tapestries": null, - "tapestried": null, - "tapeworm": [["M", "S"]], - "tapeworm's": null, - "tapeworms": null, - "tapioca": [["M", "S"]], - "tapioca's": null, - "tapiocas": null, - "tapir": [["M", "S"]], - "tapir's": null, - "tapirs": null, - "tap": [["M", "S", "D", "R", "J", "Z", "G"]], - "tap's": null, - "taps": [["M"]], - "tapings": null, - "tapers": null, - "taping": null, - "tapped": [["U"]], - "untapped": null, - "tapper": [["M", "S"]], - "tapper's": null, - "tappers": null, - "tappet": [["M", "S"]], - "tappet's": null, - "tappets": null, - "tapping": [["M"]], - "tapping's": null, - "taproom": [["M", "S"]], - "taproom's": null, - "taprooms": null, - "taproot": [["S", "M"]], - "taproots": null, - "taproot's": null, - "taps's": null, - "Tarah": [["M"]], - "Tarah's": null, - "Tara": [["M"]], - "Tara's": null, - "tarantella": [["M", "S"]], - "tarantella's": null, - "tarantellas": null, - "tarantula": [["M", "S"]], - "tarantula's": null, - "tarantulas": null, - "Tarawa": [["M"]], - "Tarawa's": null, - "Tarazed": [["M"]], - "Tarazed's": null, - "Tarbell": [["M"]], - "Tarbell's": null, - "tardily": null, - "tardiness": [["S"]], - "tardinesses": null, - "tardy": [["T", "P", "R", "S"]], - "tardiest": null, - "tardier": null, - "tardies": null, - "tare": [["M", "S"]], - "tare's": null, - "tares": null, - "target": [["G", "S", "M", "D"]], - "targeting": null, - "targets": null, - "target's": null, - "targeted": null, - "tar": [["G", "S", "M", "D"]], - "taring": null, - "tars": null, - "tar's": null, - "tared": null, - "tariff": [["D", "M", "S", "G"]], - "tariffed": null, - "tariff's": null, - "tariffs": null, - "tariffing": null, - "Tarim": [["M"]], - "Tarim's": null, - "Tarkington": [["M"]], - "Tarkington's": null, - "tarmacked": null, - "tarmacking": null, - "tarmac": [["S"]], - "tarmacs": null, - "tarnished": [["U"]], - "untarnished": null, - "tarnish": [["G", "D", "S"]], - "tarnishing": null, - "tarnishes": null, - "tarn": [["M", "S"]], - "tarn's": null, - "tarns": null, - "taro": [["M", "S"]], - "taro's": null, - "taros": null, - "tarot": [["M", "S"]], - "tarot's": null, - "tarots": null, - "tarpapered": null, - "tarpaulin": [["M", "S"]], - "tarpaulin's": null, - "tarpaulins": null, - "tarp": [["M", "S"]], - "tarp's": null, - "tarps": null, - "tarpon": [["M", "S"]], - "tarpon's": null, - "tarpons": null, - "tarragon": [["S", "M"]], - "tarragons": null, - "tarragon's": null, - "Tarrah": [["M"]], - "Tarrah's": null, - "Tarra": [["M"]], - "Tarra's": null, - "Tarrance": [["M"]], - "Tarrance's": null, - "tarred": [["M"]], - "tarred's": null, - "tarring": [["M"]], - "tarring's": null, - "tarry": [["T", "G", "R", "S", "D"]], - "tarriest": null, - "tarrying": null, - "tarrier": null, - "tarries": null, - "tarried": null, - "Tarrytown": [["M"]], - "Tarrytown's": null, - "tarsal": [["S"]], - "tarsals": null, - "tarsi": null, - "tarsus": [["M"]], - "tarsus's": null, - "tartan": [["M", "S"]], - "tartan's": null, - "tartans": null, - "tartaric": null, - "Tartar's": null, - "tartar": [["S", "M"]], - "tartars": null, - "tartar's": null, - "Tartary": [["M"]], - "Tartary's": null, - "tartness": [["M", "S"]], - "tartness's": null, - "tartnesses": null, - "tart": [["P", "M", "Y", "R", "D", "G", "T", "S"]], - "tart's": null, - "tartly": null, - "tarter": null, - "tarted": null, - "tarting": null, - "tartest": null, - "tarts": null, - "Tartuffe": [["M"]], - "Tartuffe's": null, - "Taryn": [["M"]], - "Taryn's": null, - "Tarzan": [["M"]], - "Tarzan's": null, - "Tasha": [["M"]], - "Tasha's": null, - "Tashkent": [["M"]], - "Tashkent's": null, - "Tasia": [["M"]], - "Tasia's": null, - "task": [["G", "S", "D", "M"]], - "tasking": null, - "tasks": null, - "tasked": null, - "task's": null, - "taskmaster": [["S", "M"]], - "taskmasters": null, - "taskmaster's": null, - "taskmistress": [["M", "S"]], - "taskmistress's": null, - "taskmistresses": null, - "Tasmania": [["M"]], - "Tasmania's": null, - "Tasmanian": [["S"]], - "Tasmanians": null, - "tassellings": null, - "tassel": [["M", "D", "G", "S"]], - "tassel's": null, - "tasseled": null, - "tasseling": null, - "tassels": null, - "Tass": [["M"]], - "Tass's": null, - "tasted": [["E", "U"]], - "distasted": null, - "untasted": null, - "tastefulness": [["S", "M", "E"]], - "tastefulnesses": null, - "distastefulnesses": null, - "tastefulness's": null, - "distastefulness's": null, - "distastefulness": null, - "tasteful": [["P", "E", "Y"]], - "distasteful": null, - "distastefully": null, - "tastefully": null, - "taste": [["G", "Z", "M", "J", "S", "R", "D"]], - "tasting": [["E"]], - "tasters": null, - "taste's": [["E"]], - "tastings": null, - "tastes": [["E"]], - "taster": [["M"]], - "tastelessness": [["S", "M"]], - "tastelessnesses": null, - "tastelessness's": null, - "tasteless": [["Y", "P"]], - "tastelessly": null, - "taster's": null, - "distaste's": null, - "distastes": null, - "tastily": null, - "tastiness": [["M", "S"]], - "tastiness's": null, - "tastinesses": null, - "distasting": null, - "tasty": [["R", "T", "P"]], - "tastier": null, - "tastiest": null, - "tatami": [["M", "S"]], - "tatami's": null, - "tatamis": null, - "Tatar": [["S", "M"]], - "Tatars": null, - "Tatar's": null, - "Tate": [["M"]], - "Tate's": null, - "tater": [["M"]], - "tater's": null, - "Tatiana": [["M"]], - "Tatiana's": null, - "Tatiania": [["M"]], - "Tatiania's": null, - "tat": [["S", "R", "Z"]], - "tats": null, - "taters": null, - "tatted": null, - "tatterdemalion": [["S", "M"]], - "tatterdemalions": null, - "tatterdemalion's": null, - "tattered": [["M"]], - "tattered's": null, - "tatter": [["G", "D", "S"]], - "tattering": null, - "tatters": null, - "tatting": [["S", "M"]], - "tattings": null, - "tatting's": null, - "tattler": [["M"]], - "tattler's": null, - "tattle": [["R", "S", "D", "Z", "G"]], - "tattles": null, - "tattled": null, - "tattlers": null, - "tattling": null, - "tattletale": [["S", "M"]], - "tattletales": null, - "tattletale's": null, - "tattooer": [["M"]], - "tattooer's": null, - "tattooist": [["M", "S"]], - "tattooist's": null, - "tattooists": null, - "tattoo": [["Z", "R", "D", "M", "G", "S"]], - "tattooers": null, - "tattooed": null, - "tattoo's": null, - "tattooing": null, - "tattoos": null, - "tatty": [["R"]], - "tattier": null, - "Tatum": [["M"]], - "Tatum's": null, - "taught": [["A", "U"]], - "retaught": null, - "untaught": null, - "taunter": [["M"]], - "taunter's": null, - "taunting": [["Y"]], - "tauntingly": null, - "taunt": [["Z", "G", "R", "D", "S"]], - "taunters": null, - "taunted": null, - "taunts": null, - "taupe": [["S", "M"]], - "taupes": null, - "taupe's": null, - "Taurus": [["S", "M"]], - "Tauruses": null, - "Taurus's": null, - "tau": [["S", "M"]], - "taus": null, - "tau's": null, - "tauten": [["G", "D"]], - "tautening": null, - "tautened": null, - "tautness": [["S"]], - "tautnesses": null, - "tautological": [["Y"]], - "tautologically": null, - "tautologous": null, - "tautology": [["S", "M"]], - "tautologies": null, - "tautology's": null, - "taut": [["P", "G", "T", "X", "Y", "R", "D", "N", "S"]], - "tauting": null, - "tautest": null, - "tautens": null, - "tautly": null, - "tauter": null, - "tauted": null, - "tauts": null, - "taverner": [["M"]], - "taverner's": null, - "tavern": [["R", "M", "S"]], - "tavern's": null, - "taverns": null, - "tawdrily": null, - "tawdriness": [["S", "M"]], - "tawdrinesses": null, - "tawdriness's": null, - "tawdry": [["S", "R", "T", "P"]], - "tawdries": null, - "tawdrier": null, - "tawdriest": null, - "Tawney": [["M"]], - "Tawney's": null, - "Tawnya": [["M"]], - "Tawnya's": null, - "tawny": [["R", "S", "M", "P", "T"]], - "tawnier": null, - "tawnies": null, - "tawny's": null, - "tawniness": null, - "tawniest": null, - "Tawsha": [["M"]], - "Tawsha's": null, - "taxable": [["S"]], - "taxables": null, - "taxably": null, - "taxation": [["M", "S"]], - "taxation's": null, - "taxations": null, - "taxed": [["U"]], - "untaxed": null, - "taxicab": [["M", "S"]], - "taxicab's": null, - "taxicabs": null, - "taxidermist": [["S", "M"]], - "taxidermists": null, - "taxidermist's": null, - "taxidermy": [["M", "S"]], - "taxidermy's": null, - "taxidermies": null, - "taxi": [["M", "D", "G", "S"]], - "taxi's": null, - "taxied": null, - "taxiing": null, - "taxis": null, - "taximeter": [["S", "M"]], - "taximeters": null, - "taximeter's": null, - "taxing": [["Y"]], - "taxingly": null, - "taxiway": [["M", "S"]], - "taxiway's": null, - "taxiways": null, - "taxonomic": null, - "taxonomically": null, - "taxonomist": [["S", "M"]], - "taxonomists": null, - "taxonomist's": null, - "taxonomy": [["S", "M"]], - "taxonomies": null, - "taxonomy's": null, - "taxpayer": [["M", "S"]], - "taxpayer's": null, - "taxpayers": null, - "taxpaying": [["M"]], - "taxpaying's": null, - "tax": [["Z", "G", "J", "M", "D", "R", "S", "B"]], - "taxers": null, - "taxings": null, - "tax's": null, - "taxer": null, - "taxes": null, - "Taylor": [["S", "M"]], - "Taylors": null, - "Taylor's": null, - "Tb": null, - "TB": null, - "TBA": null, - "Tbilisi": [["M"]], - "Tbilisi's": null, - "tbs": null, - "tbsp": null, - "Tchaikovsky": [["M"]], - "Tchaikovsky's": null, - "Tc": [["M"]], - "Tc's": null, - "TCP": null, - "TD": null, - "TDD": null, - "Te": null, - "teabag": [["S"]], - "teabags": null, - "teacake": [["M", "S"]], - "teacake's": null, - "teacakes": null, - "teacart": [["M"]], - "teacart's": null, - "teachable": [["P"]], - "teachableness": null, - "teach": [["A", "G", "S"]], - "reteach": null, - "reteaching": null, - "reteaches": null, - "teaching": [["S", "M"]], - "teaches": null, - "teacher": [["M", "S"]], - "teacher's": null, - "teachers": null, - "teachings": null, - "teaching's": null, - "teacloth": null, - "teacupful": [["M", "S"]], - "teacupful's": null, - "teacupfuls": null, - "teacup": [["M", "S"]], - "teacup's": null, - "teacups": null, - "Teador": [["M"]], - "Teador's": null, - "teahouse": [["S", "M"]], - "teahouses": null, - "teahouse's": null, - "teakettle": [["S", "M"]], - "teakettles": null, - "teakettle's": null, - "teak": [["S", "M"]], - "teaks": null, - "teak's": null, - "teakwood": [["M"]], - "teakwood's": null, - "tealeaves": null, - "teal": [["M", "S"]], - "teal's": null, - "teals": null, - "tea": [["M", "D", "G", "S"]], - "tea's": null, - "teaed": null, - "teaing": null, - "teas": [["S", "R", "D", "G", "Z"]], - "teammate": [["M", "S"]], - "teammate's": null, - "teammates": null, - "team": [["M", "R", "D", "G", "S"]], - "team's": null, - "teamer": null, - "teamed": null, - "teaming": null, - "teams": null, - "teamster": [["M", "S"]], - "teamster's": null, - "teamsters": null, - "teamwork": [["S", "M"]], - "teamworks": null, - "teamwork's": null, - "teapot": [["M", "S"]], - "teapot's": null, - "teapots": null, - "tearaway": null, - "teardrop": [["M", "S"]], - "teardrop's": null, - "teardrops": null, - "tearer": [["M"]], - "tearer's": null, - "tearfulness": [["M"]], - "tearfulness's": null, - "tearful": [["Y", "P"]], - "tearfully": null, - "teargas": [["S"]], - "teargases": null, - "teargassed": null, - "teargassing": null, - "tearjerker": [["S"]], - "tearjerkers": null, - "tearoom": [["M", "S"]], - "tearoom's": null, - "tearooms": null, - "tear": [["R", "D", "M", "S", "G"]], - "teared": null, - "tear's": null, - "tears": null, - "tearing": null, - "teary": [["R", "T"]], - "tearier": null, - "teariest": null, - "Teasdale": [["M"]], - "Teasdale's": null, - "tease": [["K", "S"]], - "proteases": null, - "teases": null, - "teasel": [["D", "G", "S", "M"]], - "teaseled": null, - "teaseling": null, - "teasels": null, - "teasel's": null, - "teaser": [["M"]], - "teaser's": null, - "teashop": [["S", "M"]], - "teashops": null, - "teashop's": null, - "teasing": [["Y"]], - "teasingly": null, - "teaspoonful": [["M", "S"]], - "teaspoonful's": null, - "teaspoonfuls": null, - "teaspoon": [["M", "S"]], - "teaspoon's": null, - "teaspoons": null, - "teased": null, - "teasers": null, - "teatime": [["M", "S"]], - "teatime's": null, - "teatimes": null, - "teat": [["M", "D", "S"]], - "teat's": null, - "teated": null, - "teats": null, - "tech": [["D"]], - "teched": null, - "technetium": [["S", "M"]], - "technetiums": null, - "technetium's": null, - "technicality": [["M", "S"]], - "technicality's": null, - "technicalities": null, - "technicalness": [["M"]], - "technicalness's": null, - "technical": [["Y", "S", "P"]], - "technically": null, - "technicals": null, - "technician": [["M", "S"]], - "technician's": null, - "technicians": null, - "Technicolor": [["M", "S"]], - "Technicolor's": null, - "Technicolors": null, - "Technion": [["M"]], - "Technion's": null, - "technique": [["S", "M"]], - "techniques": null, - "technique's": null, - "technocracy": [["M", "S"]], - "technocracy's": null, - "technocracies": null, - "technocratic": null, - "technocrat": [["S"]], - "technocrats": null, - "technological": [["Y"]], - "technologically": null, - "technologist": [["M", "S"]], - "technologist's": null, - "technologists": null, - "technology": [["M", "S"]], - "technology's": null, - "technologies": null, - "technophobia": null, - "technophobic": null, - "techs": null, - "tectonically": null, - "tectonic": [["S"]], - "tectonics": [["M"]], - "tectonics's": null, - "Tecumseh": [["M"]], - "Tecumseh's": null, - "Tedda": [["M"]], - "Tedda's": null, - "Teddie": [["M"]], - "Teddie's": null, - "Teddi": [["M"]], - "Teddi's": null, - "Tedd": [["M"]], - "Tedd's": null, - "Teddy": [["M"]], - "Teddy's": null, - "teddy": [["S", "M"]], - "teddies": null, - "teddy's": null, - "Tedie": [["M"]], - "Tedie's": null, - "Tedi": [["M"]], - "Tedi's": null, - "tediousness": [["S", "M"]], - "tediousnesses": null, - "tediousness's": null, - "tedious": [["Y", "P"]], - "tediously": null, - "tedium": [["M", "S"]], - "tedium's": null, - "tediums": null, - "Ted": [["M"]], - "Ted's": null, - "Tedman": [["M"]], - "Tedman's": null, - "Tedmund": [["M"]], - "Tedmund's": null, - "Tedra": [["M"]], - "Tedra's": null, - "tee": [["D", "R", "S", "M", "H"]], - "teed": null, - "teer": null, - "tees": null, - "tee's": null, - "teeth": [["R", "S", "D", "J", "M", "G"]], - "teeing": null, - "teem": [["G", "S", "D"]], - "teeming": [["P", "Y"]], - "teems": null, - "teemed": null, - "teemingness": [["M"]], - "teemingness's": null, - "teemingly": null, - "teenager": [["M"]], - "teenager's": null, - "teenage": [["R", "Z"]], - "teenagers": null, - "Teena": [["M"]], - "Teena's": null, - "teen": [["S", "R"]], - "teens": null, - "teener": null, - "teenybopper": [["S", "M"]], - "teenyboppers": null, - "teenybopper's": null, - "teeny": [["R", "T"]], - "teenier": null, - "teeniest": null, - "teepee's": null, - "teeshirt": [["S"]], - "teeshirts": null, - "teeter": [["G", "D", "S"]], - "teetering": null, - "teetered": null, - "teeters": null, - "teethe": null, - "teether": [["M"]], - "teether's": null, - "teething": [["M"]], - "teething's": null, - "teethmarks": null, - "teethes": null, - "teethed": null, - "teethings": null, - "teeth's": null, - "teetotaler": [["M"]], - "teetotaler's": null, - "teetotalism": [["M", "S"]], - "teetotalism's": null, - "teetotalisms": null, - "teetotal": [["S", "R", "D", "G", "Z"]], - "teetotals": null, - "teetotaled": null, - "teetotaling": null, - "teetotalers": null, - "TEFL": null, - "Teflon": [["M", "S"]], - "Teflon's": null, - "Teflons": null, - "Tegucigalpa": [["M"]], - "Tegucigalpa's": null, - "Teheran's": null, - "Tehran": null, - "TEirtza": [["M"]], - "TEirtza's": null, - "tektite": [["S", "M"]], - "tektites": null, - "tektite's": null, - "Tektronix": [["M"]], - "Tektronix's": null, - "telecast": [["S", "R", "G", "Z"]], - "telecasts": null, - "telecaster": null, - "telecasting": null, - "telecasters": null, - "telecommunicate": [["N", "X"]], - "telecommunication": [["M"]], - "telecommunications": null, - "telecommunication's": null, - "telecommute": [["S", "R", "D", "Z", "G", "J"]], - "telecommutes": null, - "telecommuter": null, - "telecommuted": null, - "telecommuters": null, - "telecommuting": null, - "telecommutings": null, - "telecoms": null, - "teleconference": [["G", "M", "J", "S", "D"]], - "teleconferencing": null, - "teleconference's": null, - "teleconferencings": null, - "teleconferences": null, - "teleconferenced": null, - "Teledyne": [["M"]], - "Teledyne's": null, - "Telefunken": [["M"]], - "Telefunken's": null, - "telegenic": null, - "telegrammed": null, - "telegramming": null, - "telegram": [["M", "S"]], - "telegram's": null, - "telegrams": null, - "telegraphic": null, - "telegraphically": null, - "telegraphist": [["M", "S"]], - "telegraphist's": null, - "telegraphists": null, - "telegraph": [["M", "R", "D", "G", "Z"]], - "telegraph's": null, - "telegrapher": null, - "telegraphed": null, - "telegraphing": null, - "telegraphers": null, - "telegraphs": null, - "telegraphy": [["M", "S"]], - "telegraphy's": null, - "telegraphies": null, - "telekineses": null, - "telekinesis": [["M"]], - "telekinesis's": null, - "telekinetic": null, - "Telemachus": [["M"]], - "Telemachus's": null, - "Telemann": [["M"]], - "Telemann's": null, - "telemarketer": [["S"]], - "telemarketers": null, - "telemarketing": [["S"]], - "telemarketings": null, - "telemeter": [["D", "M", "S", "G"]], - "telemetered": null, - "telemeter's": null, - "telemeters": null, - "telemetering": null, - "telemetric": null, - "telemetry": [["M", "S"]], - "telemetry's": null, - "telemetries": null, - "teleological": [["Y"]], - "teleologically": null, - "teleology": [["M"]], - "teleology's": null, - "telepathic": null, - "telepathically": null, - "telepathy": [["S", "M"]], - "telepathies": null, - "telepathy's": null, - "telephone": [["S", "R", "D", "G", "M", "Z"]], - "telephones": null, - "telephoner": null, - "telephoned": null, - "telephoning": null, - "telephone's": null, - "telephoners": null, - "telephonic": null, - "telephonist": [["S", "M"]], - "telephonists": null, - "telephonist's": null, - "telephony": [["M", "S"]], - "telephony's": null, - "telephonies": null, - "telephotography": [["M", "S"]], - "telephotography's": null, - "telephotographies": null, - "telephoto": [["S"]], - "telephotos": null, - "teleprinter": [["M", "S"]], - "teleprinter's": null, - "teleprinters": null, - "teleprocessing": [["S"]], - "teleprocessings": null, - "teleprompter": null, - "TelePrompter": [["M"]], - "TelePrompter's": null, - "TelePrompTer": [["S"]], - "TelePrompTers": null, - "telescope": [["G", "S", "D", "M"]], - "telescoping": null, - "telescopes": null, - "telescoped": null, - "telescope's": null, - "telescopic": null, - "telescopically": null, - "teletext": [["S"]], - "teletexts": null, - "telethon": [["M", "S"]], - "telethon's": null, - "telethons": null, - "teletype": [["S", "M"]], - "teletypes": null, - "teletype's": null, - "Teletype": [["S", "M"]], - "Teletypes": null, - "Teletype's": null, - "teletypewriter": [["S", "M"]], - "teletypewriters": null, - "teletypewriter's": null, - "televangelism": [["S"]], - "televangelisms": null, - "televangelist": [["S"]], - "televangelists": null, - "televise": [["S", "D", "X", "N", "G"]], - "televises": null, - "televised": null, - "televisions": null, - "television": [["M"]], - "televising": null, - "television's": null, - "televisor": [["M", "S"]], - "televisor's": null, - "televisors": null, - "televisual": null, - "telex": [["G", "S", "D", "M"]], - "telexing": null, - "telexes": null, - "telexed": null, - "telex's": null, - "Telex": [["M"]], - "Telex's": null, - "tell": [["A", "G", "S"]], - "retell": null, - "retelling": null, - "retells": null, - "telling": [["Y", "S"]], - "tells": null, - "Teller": [["M"]], - "Teller's": null, - "teller": [["S", "D", "M", "G"]], - "tellers": null, - "tellered": null, - "teller's": null, - "tellering": null, - "tellingly": null, - "tellings": null, - "Tell": [["M", "R"]], - "Tell's": null, - "telltale": [["M", "S"]], - "telltale's": null, - "telltales": null, - "tellurium": [["S", "M"]], - "telluriums": null, - "tellurium's": null, - "telly": [["S", "M"]], - "tellies": null, - "telly's": null, - "Telnet": [["M"]], - "Telnet's": null, - "TELNET": [["M"]], - "TELNET's": null, - "telnet": [["S"]], - "telnets": null, - "telomeric": null, - "tel": [["S", "Y"]], - "tels": null, - "Telugu": [["M"]], - "Telugu's": null, - "temblor": [["S", "M"]], - "temblors": null, - "temblor's": null, - "temerity": [["M", "S"]], - "temerity's": null, - "temerities": null, - "Tempe": [["M"]], - "Tempe's": null, - "temperamental": [["Y"]], - "temperamentally": null, - "temperament": [["S", "M"]], - "temperaments": null, - "temperament's": null, - "temperance": [["I", "M", "S"]], - "intemperance": null, - "intemperance's": null, - "intemperances": null, - "temperance's": null, - "temperances": null, - "tempera": [["S", "L", "M"]], - "temperas": null, - "tempera's": null, - "temperately": [["I"]], - "intemperately": null, - "temperateness's": [["I"]], - "intemperateness's": null, - "temperateness": [["S", "M"]], - "temperatenesses": null, - "temperate": [["S", "D", "G", "P", "Y"]], - "temperates": null, - "temperated": null, - "temperating": null, - "temperature": [["M", "S"]], - "temperature's": null, - "temperatures": null, - "tempered": [["U", "E"]], - "untempered": null, - "distempered": null, - "temper": [["G", "R", "D", "M"]], - "tempering": [["E"]], - "temperer": null, - "temper's": [["E"]], - "distempering": null, - "distemper's": null, - "tempers": [["E"]], - "distempers": null, - "tempest": [["D", "M", "S", "G"]], - "tempested": null, - "tempest's": null, - "tempests": null, - "tempesting": null, - "tempestuousness": [["S", "M"]], - "tempestuousnesses": null, - "tempestuousness's": null, - "tempestuous": [["P", "Y"]], - "tempestuously": null, - "template": [["F", "S"]], - "contemplates": null, - "templates": null, - "template's": null, - "Temple": [["M"]], - "Temple's": null, - "Templeman": [["M"]], - "Templeman's": null, - "temple": [["S", "D", "M"]], - "temples": null, - "templed": null, - "temple's": null, - "Templeton": [["M"]], - "Templeton's": null, - "Temp": [["M"]], - "Temp's": null, - "tempoes": null, - "tempo": [["M", "S"]], - "tempo's": null, - "tempos": null, - "temporal": [["Y", "S"]], - "temporally": null, - "temporals": null, - "temporarily": null, - "temporarinesses": null, - "temporariness": [["F", "M"]], - "contemporariness": null, - "contemporariness's": null, - "temporariness's": null, - "temporary": [["S", "F", "P"]], - "temporaries": null, - "contemporaries": null, - "contemporary": null, - "temporize": [["G", "J", "Z", "R", "S", "D"]], - "temporizing": [["Y", "M"]], - "temporizings": [["U"]], - "temporizers": null, - "temporizer": [["M"]], - "temporizes": null, - "temporized": null, - "temporizer's": null, - "untemporizings": null, - "temporizingly": null, - "temporizing's": null, - "temp": [["S", "G", "Z", "T", "M", "R", "D"]], - "temps": null, - "temping": null, - "temp's": null, - "temped": null, - "temptation": [["M", "S"]], - "temptation's": null, - "temptations": null, - "tempted": null, - "tempter": [["S"]], - "tempters": null, - "tempt": [["F", "S"]], - "contempts": null, - "tempts": null, - "tempting": [["Y", "S"]], - "temptingly": null, - "temptings": null, - "temptress": [["M", "S"]], - "temptress's": null, - "temptresses": null, - "tempura": [["S", "M"]], - "tempuras": null, - "tempura's": null, - "tenabilities": null, - "tenability": [["U", "M"]], - "untenability": null, - "untenability's": null, - "tenability's": null, - "tenableness": [["M"]], - "tenableness's": null, - "tenable": [["P"]], - "tenably": null, - "tenaciousness": [["S"]], - "tenaciousnesses": null, - "tenacious": [["Y", "P"]], - "tenaciously": null, - "tenacity": [["S"]], - "tenacities": null, - "tenancy": [["M", "S"]], - "tenancy's": null, - "tenancies": null, - "tenanted": [["U"]], - "untenanted": null, - "tenant": [["M", "D", "S", "G"]], - "tenant's": null, - "tenants": null, - "tenanting": null, - "tenantry": [["M", "S"]], - "tenantry's": null, - "tenantries": null, - "tench": [["M"]], - "tench's": null, - "tended": [["U", "E"]], - "untended": null, - "distended": null, - "tendency": [["M", "S"]], - "tendency's": null, - "tendencies": null, - "tendentiousness": [["S", "M"]], - "tendentiousnesses": null, - "tendentiousness's": null, - "tendentious": [["P", "Y"]], - "tendentiously": null, - "tendered": null, - "tenderer": null, - "tenderest": null, - "tenderfoot": [["M", "S"]], - "tenderfoot's": null, - "tenderfoots": null, - "tender": [["F", "S"]], - "contender": null, - "contenders": null, - "tenders": null, - "tenderheartedness": [["M", "S"]], - "tenderheartedness's": null, - "tenderheartednesses": null, - "tenderhearted": [["Y", "P"]], - "tenderheartedly": null, - "tendering": null, - "tenderizer": [["M"]], - "tenderizer's": null, - "tenderize": [["S", "R", "D", "G", "Z"]], - "tenderizes": null, - "tenderized": null, - "tenderizing": null, - "tenderizers": null, - "tenderloin": [["S", "M"]], - "tenderloins": null, - "tenderloin's": null, - "tenderly": null, - "tenderness": [["S", "M"]], - "tendernesses": null, - "tenderness's": null, - "tending": [["E"]], - "distending": null, - "tendinitis": [["S"]], - "tendinitises": null, - "tend": [["I", "S", "F", "R", "D", "G"]], - "intend": null, - "intends": null, - "intending": null, - "tends": [["E"]], - "contends": null, - "contend": null, - "contended": null, - "contending": null, - "tendon": [["M", "S"]], - "tendon's": null, - "tendons": null, - "tendril": [["S", "M"]], - "tendrils": null, - "tendril's": null, - "distends": null, - "tenebrous": null, - "tenement": [["M", "S"]], - "tenement's": null, - "tenements": null, - "tenet": [["S", "M"]], - "tenets": null, - "tenet's": null, - "Tenex": [["M"]], - "Tenex's": null, - "TENEX": [["M"]], - "TENEX's": null, - "tenfold": [["S"]], - "tenfolds": null, - "ten": [["M", "H", "B"]], - "ten's": null, - "tenth": [["S", "Y"]], - "Tenneco": [["M"]], - "Tenneco's": null, - "tenner": null, - "Tennessean": [["S"]], - "Tennesseans": null, - "Tennessee": [["M"]], - "Tennessee's": null, - "Tenney": [["M"]], - "Tenney's": null, - "tennis": [["S", "M"]], - "tennises": null, - "tennis's": null, - "Tenn": [["M"]], - "Tenn's": null, - "Tennyson": [["M"]], - "Tennyson's": null, - "Tenochtitlan": [["M"]], - "Tenochtitlan's": null, - "tenon": [["G", "S", "M", "D"]], - "tenoning": null, - "tenons": null, - "tenon's": null, - "tenoned": null, - "tenor": [["M", "S"]], - "tenor's": null, - "tenors": null, - "tenpin": [["S", "M"]], - "tenpins": null, - "tenpin's": null, - "tense": [["I", "P", "Y", "T", "N", "V", "R"]], - "intense": null, - "intenseness": null, - "intensely": null, - "intension": null, - "intenser": null, - "tenseness": [["S", "M"]], - "tensely": null, - "tensest": null, - "tension": [["G", "M", "R", "D", "S"]], - "tensive": null, - "tenser": null, - "tenseness's": [["I"]], - "intenseness's": null, - "tensenesses": null, - "tensile": null, - "tensional": [["I"]], - "tensioning": null, - "tension's": [["I"]], - "tensioner": null, - "tensioned": null, - "tensions": [["E"]], - "tensionless": null, - "distensions": null, - "intension's": null, - "tensity": [["I", "M", "S"]], - "intensity": null, - "intensity's": null, - "intensities": null, - "tensity's": null, - "tensities": null, - "tensorial": null, - "tensor": [["M", "S"]], - "tensor's": null, - "tensors": null, - "tenspot": null, - "tens": [["S", "R", "D", "V", "G", "T"]], - "tenses": null, - "tensed": null, - "tensing": null, - "tentacle": [["M", "S", "D"]], - "tentacle's": null, - "tentacles": null, - "tentacled": null, - "tentativeness": [["S"]], - "tentativenesses": null, - "tentative": [["S", "P", "Y"]], - "tentatives": null, - "tentatively": null, - "tented": [["U", "F"]], - "untented": null, - "tenterhook": [["M", "S"]], - "tenterhook's": null, - "tenterhooks": null, - "tenter": [["M"]], - "tenter's": null, - "tent": [["F", "S", "I", "M"]], - "tents": null, - "intents": null, - "intent's": null, - "tent's": null, - "tenths": null, - "tenthes": null, - "tenthly": null, - "tenting": [["F"]], - "tenuity": [["S"]], - "tenuities": null, - "tenuousness": [["S", "M"]], - "tenuousnesses": null, - "tenuousness's": null, - "tenuous": [["Y", "P"]], - "tenuously": null, - "tenure": [["S", "D", "M"]], - "tenures": null, - "tenured": null, - "tenure's": null, - "Teodoor": [["M"]], - "Teodoor's": null, - "Teodora": [["M"]], - "Teodora's": null, - "Teodorico": [["M"]], - "Teodorico's": null, - "Teodor": [["M"]], - "Teodor's": null, - "Teodoro": [["M"]], - "Teodoro's": null, - "tepee": [["M", "S"]], - "tepee's": null, - "tepees": null, - "tepidity": [["S"]], - "tepidities": null, - "tepidness": [["S"]], - "tepidnesses": null, - "tepid": [["Y", "P"]], - "tepidly": null, - "tequila": [["S", "M"]], - "tequilas": null, - "tequila's": null, - "Tera": [["M"]], - "Tera's": null, - "teratogenic": null, - "teratology": [["M", "S"]], - "teratology's": null, - "teratologies": null, - "terbium": [["S", "M"]], - "terbiums": null, - "terbium's": null, - "tercel": [["M"]], - "tercel's": null, - "tercentenary": [["S"]], - "tercentenaries": null, - "tercentennial": [["S"]], - "tercentennials": null, - "Terence": [["M"]], - "Terence's": null, - "Terencio": [["M"]], - "Terencio's": null, - "Teresa": [["M"]], - "Teresa's": null, - "Terese": [["M"]], - "Terese's": null, - "Tereshkova": [["M"]], - "Tereshkova's": null, - "Teresina": [["M"]], - "Teresina's": null, - "Teresita": [["M"]], - "Teresita's": null, - "Teressa": [["M"]], - "Teressa's": null, - "Teriann": [["M"]], - "Teriann's": null, - "Teri": [["M"]], - "Teri's": null, - "Terkel": [["M"]], - "Terkel's": null, - "termagant": [["S", "M"]], - "termagants": null, - "termagant's": null, - "termcap": null, - "termer": [["M"]], - "termer's": null, - "terminable": [["C", "P", "I"]], - "terminableness": [["I", "M", "C"]], - "interminableness": null, - "interminable": null, - "interminableness's": null, - "terminableness's": null, - "terminal": [["S", "Y", "M"]], - "terminals": null, - "terminally": null, - "terminal's": null, - "terminate": [["C", "X", "N", "V"]], - "determinations": null, - "terminations": null, - "termination": [["M", "C"]], - "terminative": [["Y", "C"]], - "terminated": [["U"]], - "unterminated": null, - "terminates": null, - "terminating": null, - "termination's": null, - "terminatively": null, - "determinatively": null, - "terminator": [["S", "M"]], - "terminators": null, - "terminator's": null, - "termini": null, - "terminological": [["Y"]], - "terminologically": null, - "terminology": [["M", "S"]], - "terminology's": null, - "terminologies": null, - "terminus": [["M"]], - "terminus's": null, - "termite": [["S", "M"]], - "termites": null, - "termite's": null, - "term": [["M", "Y", "R", "D", "G", "S"]], - "term's": null, - "termly": null, - "termed": null, - "terming": null, - "terms": null, - "ternary": [["S"]], - "ternaries": null, - "tern": [["G", "I", "D", "S"]], - "terning": null, - "interning": null, - "interned": null, - "interns": null, - "terned": null, - "terns": null, - "tern's": null, - "terpsichorean": null, - "Terpsichore": [["M"]], - "Terpsichore's": null, - "terrace": [["M", "G", "S", "D"]], - "terrace's": null, - "terracing": [["M"]], - "terraces": null, - "terraced": null, - "terracing's": null, - "terracotta": null, - "terrain": [["M", "S"]], - "terrain's": null, - "terrains": null, - "Terra": [["M"]], - "Terra's": null, - "terramycin": null, - "Terrance": [["M"]], - "Terrance's": null, - "Terran": [["M"]], - "Terran's": null, - "terrapin": [["M", "S"]], - "terrapin's": null, - "terrapins": null, - "terrarium": [["M", "S"]], - "terrarium's": null, - "terrariums": null, - "terrazzo": [["S", "M"]], - "terrazzos": null, - "terrazzo's": null, - "Terrell": [["M"]], - "Terrell's": null, - "Terrel": [["M"]], - "Terrel's": null, - "Terre": [["M"]], - "Terre's": null, - "Terrence": [["M"]], - "Terrence's": null, - "terrestrial": [["Y", "M", "S"]], - "terrestrially": null, - "terrestrial's": null, - "terrestrials": null, - "terribleness": [["S", "M"]], - "terriblenesses": null, - "terribleness's": null, - "terrible": [["P"]], - "terribly": null, - "Terrie": [["M"]], - "Terrie's": null, - "terrier": [["M"]], - "terrier's": null, - "terrifically": null, - "terrific": [["Y"]], - "terrificly": null, - "terrify": [["G", "D", "S"]], - "terrifying": [["Y"]], - "terrified": null, - "terrifies": null, - "terrifyingly": null, - "Terrijo": [["M"]], - "Terrijo's": null, - "Terrill": [["M"]], - "Terrill's": null, - "Terri": [["M"]], - "Terri's": null, - "terrine": [["M"]], - "terrine's": null, - "territoriality": [["M"]], - "territoriality's": null, - "Territorial": [["S", "M"]], - "Territorials": null, - "Territorial's": null, - "territorial": [["S", "Y"]], - "territorials": null, - "territorially": null, - "Territory's": null, - "territory": [["S", "M"]], - "territories": null, - "territory's": null, - "terrorism": [["M", "S"]], - "terrorism's": null, - "terrorisms": null, - "terroristic": null, - "terrorist": [["M", "S"]], - "terrorist's": null, - "terrorists": null, - "terrorized": [["U"]], - "unterrorized": null, - "terrorizer": [["M"]], - "terrorizer's": null, - "terrorize": [["R", "S", "D", "Z", "G"]], - "terrorizes": null, - "terrorizers": null, - "terrorizing": null, - "terror": [["M", "S"]], - "terror's": null, - "terrors": null, - "terr": [["S"]], - "terrs": null, - "terrycloth": null, - "Terrye": [["M"]], - "Terrye's": null, - "Terry": [["M"]], - "Terry's": null, - "terry": [["Z", "M", "R", "S"]], - "terriers": null, - "terry's": null, - "terries": null, - "terseness": [["S", "M"]], - "tersenesses": null, - "terseness's": null, - "terse": [["R", "T", "Y", "P"]], - "terser": null, - "tersest": null, - "tersely": null, - "Tersina": [["M"]], - "Tersina's": null, - "tertian": null, - "Tertiary": null, - "tertiary": [["S"]], - "tertiaries": null, - "Terza": [["M"]], - "Terza's": null, - "TESL": null, - "Tesla": [["M"]], - "Tesla's": null, - "TESOL": null, - "Tessa": [["M"]], - "Tessa's": null, - "tessellate": [["X", "D", "S", "N", "G"]], - "tessellations": null, - "tessellated": null, - "tessellates": null, - "tessellation": [["M"]], - "tessellating": null, - "tessellation's": null, - "tesseral": null, - "Tessie": [["M"]], - "Tessie's": null, - "Tessi": [["M"]], - "Tessi's": null, - "Tess": [["M"]], - "Tess's": null, - "Tessy": [["M"]], - "Tessy's": null, - "testability": [["M"]], - "testability's": null, - "testable": [["U"]], - "untestable": null, - "testamentary": null, - "testament": [["S", "M"]], - "testaments": null, - "testament's": null, - "testate": [["I", "S"]], - "intestate": null, - "intestates": null, - "testates": null, - "testator": [["M", "S"]], - "testator's": null, - "testators": null, - "testatrices": null, - "testatrix": null, - "testbed": [["S"]], - "testbeds": null, - "testcard": null, - "tested": [["A", "K", "U"]], - "retested": null, - "protested": null, - "untested": null, - "tester": [["M", "F", "C", "K", "S"]], - "tester's": null, - "contester's": null, - "detester's": null, - "protester's": null, - "contester": null, - "contesters": null, - "detester": null, - "detesters": null, - "protester": null, - "protesters": null, - "testers": null, - "testes": [["M"]], - "testes's": null, - "testicle": [["S", "M"]], - "testicles": null, - "testicle's": null, - "testicular": null, - "testifier": [["M"]], - "testifier's": null, - "testify": [["G", "Z", "D", "R", "S"]], - "testifying": null, - "testifiers": null, - "testified": null, - "testifies": null, - "testily": null, - "testimonial": [["S", "M"]], - "testimonials": null, - "testimonial's": null, - "testimony": [["S", "M"]], - "testimonies": null, - "testimony's": null, - "testiness": [["S"]], - "testinesses": null, - "testing": [["S"]], - "testings": null, - "testis": [["M"]], - "testis's": null, - "testosterone": [["S", "M"]], - "testosterones": null, - "testosterone's": null, - "test": [["R", "D", "B", "F", "Z", "G", "S", "C"]], - "detested": null, - "contest": null, - "contesting": null, - "contests": null, - "detesting": null, - "tests": [["A", "K"]], - "detests": null, - "detest": null, - "retests": null, - "protests": null, - "test's": [["A", "K", "F"]], - "retest's": null, - "protest's": null, - "contest's": null, - "testy": [["R", "T", "P"]], - "testier": null, - "testiest": null, - "tetanus": [["M", "S"]], - "tetanus's": null, - "tetanuses": null, - "tetchy": [["T", "R"]], - "tetchiest": null, - "tetchier": null, - "tether": [["D", "M", "S", "G"]], - "tethered": [["U"]], - "tether's": null, - "tethers": null, - "tethering": null, - "untethered": null, - "Tethys": [["M"]], - "Tethys's": null, - "Tetons": null, - "tetrachloride": [["M"]], - "tetrachloride's": null, - "tetracycline": [["S", "M"]], - "tetracyclines": null, - "tetracycline's": null, - "tetrafluoride": null, - "tetragonal": [["Y"]], - "tetragonally": null, - "tetrahalides": null, - "tetrahedral": [["Y"]], - "tetrahedrally": null, - "tetrahedron": [["S", "M"]], - "tetrahedrons": null, - "tetrahedron's": null, - "tetrameron": null, - "tetrameter": [["S", "M"]], - "tetrameters": null, - "tetrameter's": null, - "tetra": [["M", "S"]], - "tetra's": null, - "tetras": null, - "tetrasodium": null, - "tetravalent": null, - "Teutonic": null, - "Teuton": [["S", "M"]], - "Teutons": null, - "Teuton's": null, - "Texaco": [["M"]], - "Texaco's": null, - "Texan": [["S"]], - "Texans": null, - "Texas": [["M", "S"]], - "Texas's": null, - "Texases": null, - "Tex": [["M"]], - "Tex's": null, - "TeX": [["M"]], - "TeX's": null, - "textbook": [["S", "M"]], - "textbooks": null, - "textbook's": null, - "text": [["F", "S", "M"]], - "context": null, - "contexts": null, - "context's": null, - "texts": null, - "text's": null, - "textile": [["S", "M"]], - "textiles": null, - "textile's": null, - "Textron": [["M"]], - "Textron's": null, - "textual": [["F", "Y"]], - "contextual": null, - "contextually": null, - "textually": null, - "textural": [["Y"]], - "texturally": null, - "textured": [["U"]], - "untextured": null, - "texture": [["M", "G", "S", "D"]], - "texture's": null, - "texturing": null, - "textures": null, - "T": [["G"]], - "Ting": [["M"]], - "Thacher": [["M"]], - "Thacher's": null, - "Thackeray": [["M"]], - "Thackeray's": null, - "Thaddeus": [["M"]], - "Thaddeus's": null, - "Thaddus": [["M"]], - "Thaddus's": null, - "Thadeus": [["M"]], - "Thadeus's": null, - "Thad": [["M"]], - "Thad's": null, - "Thailand": [["M"]], - "Thailand's": null, - "Thaine": [["M"]], - "Thaine's": null, - "Thain": [["M"]], - "Thain's": null, - "Thai": [["S"]], - "Thais": null, - "thalami": null, - "thalamus": [["M"]], - "thalamus's": null, - "Thales": [["M"]], - "Thales's": null, - "Thalia": [["M"]], - "Thalia's": null, - "thalidomide": [["M", "S"]], - "thalidomide's": null, - "thalidomides": null, - "thallium": [["S", "M"]], - "thalliums": null, - "thallium's": null, - "thallophyte": [["M"]], - "thallophyte's": null, - "Thames": null, - "than": null, - "Thane": [["M"]], - "Thane's": null, - "thane": [["S", "M"]], - "thanes": null, - "thane's": null, - "Thanh": [["M"]], - "Thanh's": null, - "thanker": [["M"]], - "thanker's": null, - "thankfuller": null, - "thankfullest": null, - "thankfulness": [["S", "M"]], - "thankfulnesses": null, - "thankfulness's": null, - "thankful": [["Y", "P"]], - "thankfully": null, - "thanklessness": [["S", "M"]], - "thanklessnesses": null, - "thanklessness's": null, - "thankless": [["P", "Y"]], - "thanklessly": null, - "thanksgiving": [["M", "S"]], - "thanksgiving's": null, - "thanksgivings": null, - "Thanksgiving": [["S"]], - "Thanksgivings": null, - "thank": [["S", "R", "D", "G"]], - "thanks": null, - "thanked": null, - "thanking": null, - "Thant": [["M"]], - "Thant's": null, - "Thar": [["M"]], - "Thar's": null, - "Thatcher": [["M"]], - "Thatcher's": null, - "thatching": [["M"]], - "thatching's": null, - "thatch": [["J", "M", "D", "R", "S", "Z", "G"]], - "thatchings": null, - "thatch's": null, - "thatched": null, - "thatcher": null, - "thatches": null, - "thatchers": null, - "Thatch": [["M", "R"]], - "Thatch's": null, - "that'd": null, - "that'll": null, - "that": [["M", "S"]], - "that's": null, - "thats": null, - "thaumaturge": [["M"]], - "thaumaturge's": null, - "thaw": [["D", "G", "S"]], - "thawed": null, - "thawing": null, - "thaws": null, - "Thaxter": [["M"]], - "Thaxter's": null, - "Thayer": [["M"]], - "Thayer's": null, - "Thayne": [["M"]], - "Thayne's": null, - "THC": null, - "the": null, - "Theadora": [["M"]], - "Theadora's": null, - "Thea": [["M"]], - "Thea's": null, - "theatergoer": [["M", "S"]], - "theatergoer's": null, - "theatergoers": null, - "theatergoing": [["M", "S"]], - "theatergoing's": null, - "theatergoings": null, - "theater": [["S", "M"]], - "theaters": null, - "theater's": null, - "theatricality": [["S", "M"]], - "theatricalities": null, - "theatricality's": null, - "theatrical": [["Y", "S"]], - "theatrically": null, - "theatricals": null, - "theatric": [["S"]], - "theatrics": [["M"]], - "theatrics's": null, - "Thebault": [["M"]], - "Thebault's": null, - "Thebes": null, - "Theda": [["M"]], - "Theda's": null, - "Thedrick": [["M"]], - "Thedrick's": null, - "Thedric": [["M"]], - "Thedric's": null, - "thee": [["D", "S"]], - "theed": null, - "thees": null, - "theeing": null, - "theft": [["M", "S"]], - "theft's": null, - "thefts": null, - "Theiler": [["M"]], - "Theiler's": null, - "their": [["M", "S"]], - "their's": null, - "theirs": null, - "theism": [["S", "M"]], - "theisms": null, - "theism's": null, - "theistic": null, - "theist": [["S", "M"]], - "theists": null, - "theist's": null, - "Thekla": [["M"]], - "Thekla's": null, - "Thelma": [["M"]], - "Thelma's": null, - "themas": null, - "thematically": null, - "thematics": null, - "thematic": [["U"]], - "unthematic": null, - "theme": [["M", "S"]], - "theme's": null, - "themes": null, - "them": [["G", "D"]], - "theming": null, - "themed": null, - "Themistocles": [["M"]], - "Themistocles's": null, - "themselves": null, - "thence": null, - "thenceforth": null, - "thenceforward": [["S"]], - "thenceforwards": null, - "Theobald": [["M"]], - "Theobald's": null, - "theocracy": [["S", "M"]], - "theocracies": null, - "theocracy's": null, - "theocratic": null, - "Theocritus": [["M"]], - "Theocritus's": null, - "theodolite": [["M", "S"]], - "theodolite's": null, - "theodolites": null, - "Theodora": [["M"]], - "Theodora's": null, - "Theodore": [["M"]], - "Theodore's": null, - "Theodoric": [["M"]], - "Theodoric's": null, - "Theodor": [["M"]], - "Theodor's": null, - "Theodosia": [["M"]], - "Theodosia's": null, - "Theodosian": null, - "Theodosius": [["M"]], - "Theodosius's": null, - "theologian": [["S", "M"]], - "theologians": null, - "theologian's": null, - "theological": [["Y"]], - "theologically": null, - "theologists": null, - "theology": [["M", "S"]], - "theology's": null, - "theologies": null, - "Theo": [["M"]], - "Theo's": null, - "theorem": [["M", "S"]], - "theorem's": null, - "theorems": null, - "theoretical": [["Y"]], - "theoretically": null, - "theoretician": [["M", "S"]], - "theoretician's": null, - "theoreticians": null, - "theoretic": [["S"]], - "theoretics": [["M"]], - "theoretics's": null, - "theorist": [["S", "M"]], - "theorists": null, - "theorist's": null, - "theorization": [["S", "M"]], - "theorizations": null, - "theorization's": null, - "theorize": [["Z", "G", "D", "R", "S"]], - "theorizers": null, - "theorizing": null, - "theorized": null, - "theorizer": null, - "theorizes": null, - "theory": [["M", "S"]], - "theory's": null, - "theories": null, - "theosophic": null, - "theosophical": null, - "theosophist": [["M", "S"]], - "theosophist's": null, - "theosophists": null, - "Theosophy": null, - "theosophy": [["S", "M"]], - "theosophies": null, - "theosophy's": null, - "therapeutically": null, - "therapeutic": [["S"]], - "therapeutics": [["M"]], - "therapeutics's": null, - "therapist": [["M", "S"]], - "therapist's": null, - "therapists": null, - "therapy": [["M", "S"]], - "therapy's": null, - "therapies": null, - "Theravada": [["M"]], - "Theravada's": null, - "thereabout": [["S"]], - "thereabouts": null, - "thereafter": null, - "thereat": null, - "thereby": null, - "there'd": null, - "therefor": null, - "therefore": null, - "therefrom": null, - "therein": null, - "there'll": null, - "there": [["M", "S"]], - "there's": null, - "theres": null, - "thereof": null, - "thereon": null, - "Theresa": [["M"]], - "Theresa's": null, - "Therese": [["M"]], - "Therese's": null, - "Theresina": [["M"]], - "Theresina's": null, - "Theresita": [["M"]], - "Theresita's": null, - "Theressa": [["M"]], - "Theressa's": null, - "thereto": null, - "theretofore": null, - "thereunder": null, - "thereunto": null, - "thereupon": null, - "therewith": null, - "Therine": [["M"]], - "Therine's": null, - "thermal": [["Y", "S"]], - "thermally": null, - "thermals": null, - "thermionic": [["S"]], - "thermionics": [["M"]], - "thermionics's": null, - "thermistor": [["M", "S"]], - "thermistor's": null, - "thermistors": null, - "therm": [["M", "S"]], - "therm's": null, - "therms": null, - "thermocouple": [["M", "S"]], - "thermocouple's": null, - "thermocouples": null, - "thermodynamical": [["Y"]], - "thermodynamically": null, - "thermodynamic": [["S"]], - "thermodynamics": [["M"]], - "thermodynamics's": null, - "thermoelastic": null, - "thermoelectric": null, - "thermoformed": null, - "thermoforming": null, - "thermogravimetric": null, - "thermoluminescence": [["M"]], - "thermoluminescence's": null, - "thermometer": [["M", "S"]], - "thermometer's": null, - "thermometers": null, - "thermometric": null, - "thermometry": [["M"]], - "thermometry's": null, - "thermonuclear": null, - "thermopile": [["M"]], - "thermopile's": null, - "thermoplastic": [["S"]], - "thermoplastics": null, - "thermopower": null, - "thermo": [["S"]], - "thermos": [["S"]], - "thermosetting": null, - "thermoses": null, - "Thermos": [["S", "M"]], - "Thermoses": null, - "Thermos's": null, - "thermostable": null, - "thermostatically": null, - "thermostatic": [["S"]], - "thermostatics": [["M"]], - "thermostatics's": null, - "thermostat": [["S", "M"]], - "thermostats": null, - "thermostat's": null, - "thermostatted": null, - "thermostatting": null, - "Theron": [["M"]], - "Theron's": null, - "thesauri": null, - "thesaurus": [["M", "S"]], - "thesaurus's": null, - "thesauruses": null, - "these": [["S"]], - "theses": null, - "Theseus": [["M"]], - "Theseus's": null, - "thesis": [["M"]], - "thesis's": null, - "thespian": [["S"]], - "thespians": null, - "Thespian": [["S"]], - "Thespians": null, - "Thespis": [["M"]], - "Thespis's": null, - "Thessalonian": null, - "Thessalon�ki": [["M"]], - "Thessalon�ki's": null, - "Thessaly": [["M"]], - "Thessaly's": null, - "theta": [["M", "S"]], - "theta's": null, - "thetas": null, - "thew": [["S", "M"]], - "thews": null, - "thew's": null, - "they": null, - "they'd": null, - "they'll": null, - "they're": null, - "they've": null, - "th": [["G", "N", "J", "X"]], - "thing": [["M", "P"]], - "then": null, - "things": null, - "thens": null, - "Thia": [["M"]], - "Thia's": null, - "thiamine": [["M", "S"]], - "thiamine's": null, - "thiamines": null, - "Thibaud": [["M"]], - "Thibaud's": null, - "Thibaut": [["M"]], - "Thibaut's": null, - "thickener": [["M"]], - "thickener's": null, - "thickening": [["M"]], - "thickening's": null, - "thicken": [["R", "D", "J", "Z", "G"]], - "thickened": null, - "thickenings": null, - "thickeners": null, - "thicket": [["S", "M", "D"]], - "thickets": null, - "thicket's": null, - "thicketed": null, - "thickheaded": [["M"]], - "thickheaded's": null, - "thickish": null, - "thickness": [["M", "S"]], - "thickness's": null, - "thicknesses": null, - "thickset": [["S"]], - "thicksets": null, - "thick": [["T", "X", "P", "S", "R", "N", "Y"]], - "thickest": null, - "thickens": null, - "thicks": null, - "thicker": null, - "thickly": null, - "thief": [["M"]], - "thief's": null, - "Thiensville": [["M"]], - "Thiensville's": null, - "Thieu": [["M"]], - "Thieu's": null, - "thievery": [["M", "S"]], - "thievery's": null, - "thieveries": null, - "thieve": [["S", "D", "J", "G"]], - "thieves": null, - "thieved": null, - "thievings": null, - "thieving": null, - "thievishness": [["M"]], - "thievishness's": null, - "thievish": [["P"]], - "thighbone": [["S", "M"]], - "thighbones": null, - "thighbone's": null, - "thigh": [["D", "M"]], - "thighed": null, - "thigh's": null, - "thighs": null, - "thimble": [["D", "S", "M", "G"]], - "thimbled": null, - "thimbles": null, - "thimble's": null, - "thimbling": null, - "thimbleful": [["M", "S"]], - "thimbleful's": null, - "thimblefuls": null, - "Thimbu": [["M"]], - "Thimbu's": null, - "Thimphu": null, - "thine": null, - "thingamabob": [["M", "S"]], - "thingamabob's": null, - "thingamabobs": null, - "thingamajig": [["S", "M"]], - "thingamajigs": null, - "thingamajig's": null, - "thing's": null, - "thingness": null, - "thinkableness": [["M"]], - "thinkableness's": null, - "thinkable": [["U"]], - "unthinkable": null, - "thinkably": [["U"]], - "unthinkably": null, - "think": [["A", "G", "R", "S"]], - "rethink": null, - "rethinking": null, - "rethinker": null, - "rethinks": null, - "thinking": [["S", "M", "Y", "P"]], - "thinker": [["M", "S"]], - "thinks": null, - "thinker's": null, - "thinkers": null, - "thinkingly": [["U"]], - "unthinkingly": null, - "thinkings": null, - "thinking's": null, - "thinkingness": null, - "thinned": null, - "thinner": [["M", "S"]], - "thinner's": null, - "thinners": null, - "thinness": [["M", "S"]], - "thinness's": null, - "thinnesses": null, - "thinnest": null, - "thinning": null, - "thinnish": null, - "thin": [["S", "T", "P", "Y", "R"]], - "thins": null, - "thinest": null, - "thinly": null, - "thiner": null, - "thiocyanate": [["M"]], - "thiocyanate's": null, - "thiouracil": [["M"]], - "thiouracil's": null, - "third": [["D", "Y", "G", "S"]], - "thirded": null, - "thirdly": null, - "thirding": null, - "thirds": null, - "thirster": [["M"]], - "thirster's": null, - "thirst": [["G", "S", "M", "D", "R"]], - "thirsting": null, - "thirsts": null, - "thirst's": null, - "thirsted": null, - "thirstily": null, - "thirstiness": [["S"]], - "thirstinesses": null, - "thirsty": [["T", "P", "R"]], - "thirstiest": null, - "thirstier": null, - "thirteen": [["M", "H", "S"]], - "thirteen's": null, - "thirteenth": null, - "thirteens": null, - "thirteenths": null, - "thirtieths": null, - "thirty": [["H", "M", "S"]], - "thirtieth": null, - "thirty's": null, - "thirties": null, - "this": null, - "this'll": null, - "thistledown": [["M", "S"]], - "thistledown's": null, - "thistledowns": null, - "thistle": [["S", "M"]], - "thistles": null, - "thistle's": null, - "thither": null, - "Th": [["M"]], - "Th's": null, - "tho": null, - "thole": [["G", "M", "S", "D"]], - "tholing": null, - "thole's": null, - "tholes": null, - "tholed": null, - "Thomasa": [["M"]], - "Thomasa's": null, - "Thomasina": [["M"]], - "Thomasina's": null, - "Thomasine": [["M"]], - "Thomasine's": null, - "Thomasin": [["M"]], - "Thomasin's": null, - "Thoma": [["S", "M"]], - "Thomas": null, - "Thoma's": null, - "Thomism": [["M"]], - "Thomism's": null, - "Thomistic": null, - "Thom": [["M"]], - "Thom's": null, - "Thompson": [["M"]], - "Thompson's": null, - "Thomson": [["M"]], - "Thomson's": null, - "thong": [["S", "M", "D"]], - "thongs": null, - "thong's": null, - "thonged": null, - "thoracic": null, - "thorax": [["M", "S"]], - "thorax's": null, - "thoraxes": null, - "Thorazine": null, - "Thoreau": [["M"]], - "Thoreau's": null, - "thoriate": [["D"]], - "thoriated": null, - "Thorin": [["M"]], - "Thorin's": null, - "thorium": [["M", "S"]], - "thorium's": null, - "thoriums": null, - "Thor": [["M"]], - "Thor's": null, - "Thornburg": [["M"]], - "Thornburg's": null, - "Thorndike": [["M"]], - "Thorndike's": null, - "Thornie": [["M"]], - "Thornie's": null, - "thorniness": [["S"]], - "thorninesses": null, - "Thorn": [["M"]], - "Thorn's": null, - "thorn": [["S", "M", "D", "G"]], - "thorns": null, - "thorn's": null, - "thorned": null, - "thorning": null, - "Thornton": [["M"]], - "Thornton's": null, - "Thorny": [["M"]], - "Thorny's": null, - "thorny": [["P", "T", "R"]], - "thorniest": null, - "thornier": null, - "thoroughbred": [["S"]], - "thoroughbreds": null, - "thoroughfare": [["M", "S"]], - "thoroughfare's": null, - "thoroughfares": null, - "thoroughgoing": null, - "thoroughness": [["S", "M"]], - "thoroughnesses": null, - "thoroughness's": null, - "thorough": [["P", "T", "Y", "R"]], - "thoroughest": null, - "thoroughly": null, - "thorougher": null, - "Thorpe": [["M"]], - "Thorpe's": null, - "Thorstein": [["M"]], - "Thorstein's": null, - "Thorsten": [["M"]], - "Thorsten's": null, - "Thorvald": [["M"]], - "Thorvald's": null, - "those": null, - "Thoth": [["M"]], - "Thoth's": null, - "thou": [["D", "S", "G"]], - "thoued": null, - "thous": null, - "thouing": null, - "though": null, - "thoughtfully": null, - "thoughtfulness": [["S"]], - "thoughtfulnesses": null, - "thoughtful": [["U"]], - "unthoughtful": null, - "thoughtlessness": [["M", "S"]], - "thoughtlessness's": null, - "thoughtlessnesses": null, - "thoughtless": [["Y", "P"]], - "thoughtlessly": null, - "thought": [["M", "S"]], - "thought's": null, - "thoughts": null, - "thousandfold": null, - "thousand": [["S", "H", "M"]], - "thousands": null, - "thousandth": null, - "thousand's": null, - "thousandths": null, - "Thrace": [["M"]], - "Thrace's": null, - "Thracian": [["M"]], - "Thracian's": null, - "thralldom": [["S"]], - "thralldoms": null, - "thrall": [["G", "S", "M", "D"]], - "thralling": null, - "thralls": null, - "thrall's": null, - "thralled": null, - "thrash": [["D", "S", "R", "Z", "G", "J"]], - "thrashed": null, - "thrashes": null, - "thrasher": [["M"]], - "thrashers": null, - "thrashing": [["M"]], - "thrashings": null, - "thrasher's": null, - "thrashing's": null, - "threadbare": [["P"]], - "threadbareness": null, - "threader": [["M"]], - "threader's": null, - "threading": [["A"]], - "rethreading": null, - "threadlike": null, - "thread": [["M", "Z", "D", "R", "G", "S"]], - "thread's": null, - "threaders": null, - "threaded": null, - "threads": null, - "thready": [["R", "T"]], - "threadier": null, - "threadiest": null, - "threatener": [["M"]], - "threatener's": null, - "threaten": [["G", "J", "R", "D"]], - "threatening": [["Y"]], - "threatenings": null, - "threatened": null, - "threateningly": null, - "threat": [["M", "D", "N", "S", "X", "G"]], - "threat's": null, - "threated": null, - "threats": null, - "threatens": null, - "threating": null, - "threefold": null, - "three": [["M", "S"]], - "three's": null, - "threes": null, - "threepence": [["M"]], - "threepence's": null, - "threepenny": null, - "threescore": [["S"]], - "threescores": null, - "threesome": [["S", "M"]], - "threesomes": null, - "threesome's": null, - "threnody": [["S", "M"]], - "threnodies": null, - "threnody's": null, - "thresh": [["D", "S", "R", "Z", "G"]], - "threshed": null, - "threshes": null, - "thresher": [["M"]], - "threshers": null, - "threshing": null, - "thresher's": null, - "threshold": [["M", "D", "G", "S"]], - "threshold's": null, - "thresholded": null, - "thresholding": null, - "thresholds": null, - "threw": null, - "thrice": null, - "thriftily": null, - "thriftiness": [["S"]], - "thriftinesses": null, - "thriftless": null, - "thrift": [["S", "M"]], - "thrifts": null, - "thrift's": null, - "thrifty": [["P", "T", "R"]], - "thriftiest": null, - "thriftier": null, - "thriller": [["M"]], - "thriller's": null, - "thrilling": [["Y"]], - "thrillingly": null, - "thrill": [["Z", "M", "G", "D", "R", "S"]], - "thrillers": null, - "thrill's": null, - "thrilled": null, - "thrills": null, - "thriver": [["M"]], - "thriver's": null, - "thrive": [["R", "S", "D", "J", "G"]], - "thrives": null, - "thrived": null, - "thrivings": null, - "thriving": [["Y"]], - "thrivingly": null, - "throatily": null, - "throatiness": [["M", "S"]], - "throatiness's": null, - "throatinesses": null, - "throat": [["M", "D", "S", "G"]], - "throat's": null, - "throated": null, - "throats": null, - "throating": null, - "throaty": [["P", "R", "T"]], - "throatier": null, - "throatiest": null, - "throbbed": null, - "throbbing": null, - "throb": [["S"]], - "throbs": null, - "throeing": null, - "throe": [["S", "D", "M"]], - "throes": null, - "throed": null, - "throe's": null, - "thrombi": null, - "thromboses": null, - "thrombosis": [["M"]], - "thrombosis's": null, - "thrombotic": null, - "thrombus": [["M"]], - "thrombus's": null, - "Throneberry": [["M"]], - "Throneberry's": null, - "throne": [["C", "G", "S", "D"]], - "dethroning": null, - "dethrones": null, - "dethroned": null, - "throning": null, - "thrones": null, - "throned": null, - "throne's": null, - "throng": [["G", "D", "S", "M"]], - "thronging": null, - "thronged": null, - "throngs": null, - "throng's": null, - "throttle": [["D", "R", "S", "Z", "M", "G"]], - "throttled": null, - "throttler": [["M"]], - "throttles": null, - "throttlers": null, - "throttle's": null, - "throttling": null, - "throttler's": null, - "throughout": null, - "throughput": [["S", "M"]], - "throughputs": null, - "throughput's": null, - "throughway's": null, - "through": [["Y"]], - "throughly": null, - "throwaway": [["S", "M"]], - "throwaways": null, - "throwaway's": null, - "throwback": [["M", "S"]], - "throwback's": null, - "throwbacks": null, - "thrower": [["M"]], - "thrower's": null, - "thrown": null, - "throwout": null, - "throw": [["S", "Z", "G", "R"]], - "throws": null, - "throwers": null, - "throwing": null, - "thrummed": null, - "thrumming": null, - "thrum": [["S"]], - "thrums": null, - "thrush": [["M", "S"]], - "thrush's": null, - "thrushes": null, - "thruster": [["M"]], - "thruster's": null, - "thrust": [["Z", "G", "S", "R"]], - "thrusters": null, - "thrusting": null, - "thrusts": null, - "Thruway": [["M", "S"]], - "Thruway's": null, - "Thruways": null, - "thruway": [["S", "M"]], - "thruways": null, - "thruway's": null, - "Thunderbird": [["M"]], - "Thunderbird's": null, - "Thu": null, - "Thucydides": [["M"]], - "Thucydides's": null, - "thudded": null, - "thudding": null, - "thud": [["M", "S"]], - "thud's": null, - "thuds": null, - "thuggee": [["M"]], - "thuggee's": null, - "thuggery": [["S", "M"]], - "thuggeries": null, - "thuggery's": null, - "thuggish": null, - "thug": [["M", "S"]], - "thug's": null, - "thugs": null, - "Thule": [["M"]], - "Thule's": null, - "thulium": [["S", "M"]], - "thuliums": null, - "thulium's": null, - "thumbnail": [["M", "S"]], - "thumbnail's": null, - "thumbnails": null, - "thumbscrew": [["S", "M"]], - "thumbscrews": null, - "thumbscrew's": null, - "thumb": [["S", "M", "D", "G"]], - "thumbs": null, - "thumb's": null, - "thumbed": null, - "thumbing": null, - "thumbtack": [["G", "M", "D", "S"]], - "thumbtacking": null, - "thumbtack's": null, - "thumbtacked": null, - "thumbtacks": null, - "thump": [["R", "D", "M", "S", "G"]], - "thumper": null, - "thumped": null, - "thump's": null, - "thumps": null, - "thumping": null, - "thunderbolt": [["M", "S"]], - "thunderbolt's": null, - "thunderbolts": null, - "thunderclap": [["S", "M"]], - "thunderclaps": null, - "thunderclap's": null, - "thundercloud": [["S", "M"]], - "thunderclouds": null, - "thundercloud's": null, - "thunderer": [["M"]], - "thunderer's": null, - "thunderhead": [["S", "M"]], - "thunderheads": null, - "thunderhead's": null, - "thundering": [["Y"]], - "thunderingly": null, - "thunderous": [["Y"]], - "thunderously": null, - "thundershower": [["M", "S"]], - "thundershower's": null, - "thundershowers": null, - "thunderstorm": [["M", "S"]], - "thunderstorm's": null, - "thunderstorms": null, - "thunderstruck": null, - "thundery": null, - "thunder": [["Z", "G", "J", "D", "R", "M", "S"]], - "thunderers": null, - "thunderings": null, - "thundered": null, - "thunder's": null, - "thunders": null, - "thunk": null, - "Thurber": [["M"]], - "Thurber's": null, - "Thurman": [["M"]], - "Thurman's": null, - "Thur": [["M", "S"]], - "Thur's": null, - "Thurs": null, - "Thursday": [["S", "M"]], - "Thursdays": null, - "Thursday's": null, - "Thurstan": [["M"]], - "Thurstan's": null, - "Thurston": [["M"]], - "Thurston's": null, - "thus": [["Y"]], - "thusly": null, - "thwack": [["D", "R", "S", "Z", "G"]], - "thwacked": null, - "thwacker": [["M"]], - "thwacks": null, - "thwackers": null, - "thwacking": null, - "thwacker's": null, - "thwarter": [["M"]], - "thwarter's": null, - "thwart": [["G", "S", "D", "R", "Y"]], - "thwarting": null, - "thwarts": null, - "thwarted": null, - "thwartly": null, - "thy": null, - "thyme": [["S", "M"]], - "thymes": null, - "thyme's": null, - "thymine": [["M", "S"]], - "thymine's": null, - "thymines": null, - "thymus": [["S", "M"]], - "thymuses": null, - "thymus's": null, - "thyratron": [["M"]], - "thyratron's": null, - "thyristor": [["M", "S"]], - "thyristor's": null, - "thyristors": null, - "thyroglobulin": null, - "thyroidal": null, - "thyroid": [["S"]], - "thyroids": null, - "thyronine": null, - "thyrotoxic": null, - "thyrotrophic": null, - "thyrotrophin": null, - "thyrotropic": null, - "thyrotropin": [["M"]], - "thyrotropin's": null, - "thyroxine": [["M"]], - "thyroxine's": null, - "thyself": null, - "Tia": [["M"]], - "Tia's": null, - "Tianjin": null, - "tiara": [["M", "S"]], - "tiara's": null, - "tiaras": null, - "Tiberius": [["M"]], - "Tiberius's": null, - "Tiber": [["M"]], - "Tiber's": null, - "Tibetan": [["S"]], - "Tibetans": null, - "Tibet": [["M"]], - "Tibet's": null, - "tibiae": null, - "tibial": null, - "tibia": [["M"]], - "tibia's": null, - "Tibold": [["M"]], - "Tibold's": null, - "Tiburon": [["M"]], - "Tiburon's": null, - "ticker": [["M"]], - "ticker's": null, - "ticket": [["S", "G", "M", "D"]], - "tickets": null, - "ticketing": null, - "ticket's": null, - "ticketed": null, - "tick": [["G", "Z", "J", "R", "D", "M", "S"]], - "ticking": [["M"]], - "tickers": null, - "tickings": null, - "ticked": null, - "tick's": null, - "ticks": null, - "ticking's": null, - "tickler": [["M"]], - "tickler's": null, - "tickle": [["R", "S", "D", "Z", "G"]], - "tickles": null, - "tickled": null, - "ticklers": null, - "tickling": null, - "ticklishness": [["M", "S"]], - "ticklishness's": null, - "ticklishnesses": null, - "ticklish": [["P", "Y"]], - "ticklishly": null, - "ticktacktoe": [["S"]], - "ticktacktoes": null, - "ticktock": [["S", "M", "D", "G"]], - "ticktocks": null, - "ticktock's": null, - "ticktocked": null, - "ticktocking": null, - "tic": [["M", "S"]], - "tic's": null, - "tics": null, - "Ticonderoga": [["M"]], - "Ticonderoga's": null, - "tidal": [["Y"]], - "tidally": null, - "tidbit": [["M", "S"]], - "tidbit's": null, - "tidbits": null, - "tiddlywinks": [["M"]], - "tiddlywinks's": null, - "tide": [["G", "J", "D", "S"]], - "tiding": null, - "tidings": null, - "tided": null, - "tides": null, - "tideland": [["M", "S"]], - "tideland's": null, - "tidelands": null, - "tidewater": [["S", "M"]], - "tidewaters": null, - "tidewater's": null, - "tideway": [["S", "M"]], - "tideways": null, - "tideway's": null, - "tidily": [["U"]], - "untidily": null, - "tidiness": [["U", "S", "M"]], - "untidiness": null, - "untidinesses": null, - "untidiness's": null, - "tidinesses": null, - "tidiness's": null, - "tidying": [["M"]], - "tidying's": null, - "tidy": [["U", "G", "D", "S", "R", "P", "T"]], - "untidy": null, - "untidying": null, - "untidied": null, - "untidies": null, - "untidier": null, - "tidied": null, - "tidies": null, - "tidier": null, - "tidiest": null, - "tie": [["A", "U", "D", "S"]], - "retie": null, - "retied": null, - "reties": null, - "untie": null, - "untied": null, - "unties": null, - "tied": null, - "ties": null, - "tieback": [["M", "S"]], - "tieback's": null, - "tiebacks": null, - "Tiebold": [["M"]], - "Tiebold's": null, - "Tiebout": [["M"]], - "Tiebout's": null, - "tiebreaker": [["S", "M"]], - "tiebreakers": null, - "tiebreaker's": null, - "Tieck": [["M"]], - "Tieck's": null, - "Tiena": [["M"]], - "Tiena's": null, - "Tienanmen": [["M"]], - "Tienanmen's": null, - "Tientsin's": null, - "tier": [["D", "G", "M"]], - "tiered": null, - "tiering": null, - "tier's": null, - "Tierney": [["M"]], - "Tierney's": null, - "Tiertza": [["M"]], - "Tiertza's": null, - "Tiffanie": [["M"]], - "Tiffanie's": null, - "Tiffani": [["M"]], - "Tiffani's": null, - "tiffany": [["M"]], - "tiffany's": null, - "Tiffany": [["M"]], - "Tiffany's": null, - "tiff": [["G", "D", "M", "S"]], - "tiffing": null, - "tiffed": null, - "tiff's": null, - "tiffs": null, - "Tiffie": [["M"]], - "Tiffie's": null, - "Tiffi": [["M"]], - "Tiffi's": null, - "Tiff": [["M"]], - "Tiff's": null, - "Tiffy": [["M"]], - "Tiffy's": null, - "tigerish": null, - "tiger": [["S", "M"]], - "tigers": null, - "tiger's": null, - "tightener": [["M"]], - "tightener's": null, - "tighten": [["J", "Z", "G", "D", "R"]], - "tightenings": null, - "tighteners": null, - "tightening": null, - "tightened": null, - "tightfisted": null, - "tightness": [["M", "S"]], - "tightness's": null, - "tightnesses": null, - "tightrope": [["S", "M"]], - "tightropes": null, - "tightrope's": null, - "tight": [["S", "T", "X", "P", "R", "N", "Y"]], - "tights": null, - "tightest": null, - "tightens": null, - "tighter": null, - "tightly": null, - "tightwad": [["M", "S"]], - "tightwad's": null, - "tightwads": null, - "tigress": [["S", "M"]], - "tigresses": null, - "tigress's": null, - "Tigris": [["M"]], - "Tigris's": null, - "Tijuana": [["M"]], - "Tijuana's": null, - "tike's": null, - "Tilda": [["M"]], - "Tilda's": null, - "tilde": [["M", "S"]], - "tilde's": null, - "tildes": null, - "Tildie": [["M"]], - "Tildie's": null, - "Tildi": [["M"]], - "Tildi's": null, - "Tildy": [["M"]], - "Tildy's": null, - "tile": [["D", "R", "S", "J", "M", "Z", "G"]], - "tiled": [["U", "E"]], - "tiler": null, - "tiles": [["U"]], - "tilings": null, - "tile's": null, - "tilers": null, - "tiling": [["M"]], - "untiled": null, - "distiled": null, - "Tiler": [["M"]], - "Tiler's": null, - "untiles": null, - "tiling's": null, - "tillable": null, - "tillage": [["S", "M"]], - "tillages": null, - "tillage's": null, - "till": [["E", "G", "S", "Z", "D", "R"]], - "distill": null, - "distilling": null, - "distills": null, - "distillers": null, - "distilled": null, - "distiller": null, - "tilling": null, - "tills": null, - "tillers": null, - "tilled": null, - "tiller": [["G", "D", "M"]], - "tillering": null, - "tillered": null, - "tiller's": [["E"]], - "distiller's": null, - "Tillich": [["M"]], - "Tillich's": null, - "Tillie": [["M"]], - "Tillie's": null, - "Tillman": [["M"]], - "Tillman's": null, - "Tilly": [["M"]], - "Tilly's": null, - "tilth": [["M"]], - "tilth's": null, - "tilt": [["R", "D", "S", "G", "Z"]], - "tilter": null, - "tilted": null, - "tilts": null, - "tilting": null, - "tilters": null, - "Ti": [["M"]], - "Ti's": null, - "timber": [["D", "M", "S", "G"]], - "timbered": null, - "timber's": null, - "timbers": null, - "timbering": [["M"]], - "timbering's": null, - "timberland": [["S", "M"]], - "timberlands": null, - "timberland's": null, - "timberline": [["S"]], - "timberlines": null, - "timbrel": [["S", "M"]], - "timbrels": null, - "timbrel's": null, - "timbre": [["M", "S"]], - "timbre's": null, - "timbres": null, - "Timbuktu": [["M"]], - "Timbuktu's": null, - "ti": [["M", "D", "R", "Z"]], - "ti's": null, - "tiers": null, - "timebase": null, - "time": [["D", "R", "S", "J", "M", "Y", "Z", "G"]], - "timed": null, - "timer": [["M"]], - "times": null, - "timings": null, - "time's": null, - "timely": [["U", "T", "R", "P"]], - "timers": null, - "timing": [["M"]], - "timekeeper": [["M", "S"]], - "timekeeper's": null, - "timekeepers": null, - "timekeeping": [["S", "M"]], - "timekeepings": null, - "timekeeping's": null, - "timelessness": [["S"]], - "timelessnesses": null, - "timeless": [["P", "Y"]], - "timelessly": null, - "timeliness": [["S", "M", "U"]], - "timelinesses": null, - "untimelinesses": null, - "timeliness's": null, - "untimeliness's": null, - "untimeliness": null, - "untimely": null, - "untimelier": null, - "timeliest": null, - "timelier": null, - "timeout": [["S"]], - "timeouts": null, - "timepiece": [["M", "S"]], - "timepiece's": null, - "timepieces": null, - "timer's": null, - "timescale": [["S"]], - "timescales": null, - "timeserver": [["M", "S"]], - "timeserver's": null, - "timeservers": null, - "timeserving": [["S"]], - "timeservings": null, - "timeshare": [["S", "D", "G"]], - "timeshares": null, - "timeshared": null, - "timesharing": null, - "timespan": null, - "timestamped": null, - "timestamps": null, - "timetable": [["G", "M", "S", "D"]], - "timetabling": null, - "timetable's": null, - "timetables": null, - "timetabled": null, - "timeworn": null, - "Timex": [["M"]], - "Timex's": null, - "timezone": [["S"]], - "timezones": null, - "timidity": [["S", "M"]], - "timidities": null, - "timidity's": null, - "timidness": [["M", "S"]], - "timidness's": null, - "timidnesses": null, - "timid": [["R", "Y", "T", "P"]], - "timider": null, - "timidly": null, - "timidest": null, - "Timi": [["M"]], - "Timi's": null, - "timing's": null, - "Timmie": [["M"]], - "Timmie's": null, - "Timmi": [["M"]], - "Timmi's": null, - "Tim": [["M", "S"]], - "Tim's": null, - "Tims": null, - "Timmy": [["M"]], - "Timmy's": null, - "Timofei": [["M"]], - "Timofei's": null, - "Timon": [["M"]], - "Timon's": null, - "timorousness": [["M", "S"]], - "timorousness's": null, - "timorousnesses": null, - "timorous": [["Y", "P"]], - "timorously": null, - "Timoteo": [["M"]], - "Timoteo's": null, - "Timothea": [["M"]], - "Timothea's": null, - "Timothee": [["M"]], - "Timothee's": null, - "Timotheus": [["M"]], - "Timotheus's": null, - "Timothy": [["M"]], - "Timothy's": null, - "timothy": [["M", "S"]], - "timothy's": null, - "timothies": null, - "timpani": null, - "timpanist": [["S"]], - "timpanists": null, - "Timur": [["M"]], - "Timur's": null, - "Tina": [["M"]], - "Tina's": null, - "tincture": [["S", "D", "M", "G"]], - "tinctures": null, - "tinctured": null, - "tincture's": null, - "tincturing": null, - "tinderbox": [["M", "S"]], - "tinderbox's": null, - "tinderboxes": null, - "tinder": [["M", "S"]], - "tinder's": null, - "tinders": null, - "Tine": [["M"]], - "Tine's": null, - "tine": [["S", "M"]], - "tines": null, - "tine's": null, - "tinfoil": [["M", "S"]], - "tinfoil's": null, - "tinfoils": null, - "tingeing": null, - "tinge": [["S"]], - "tinges": null, - "ting": [["G", "Y", "D", "M"]], - "tinging": null, - "tingly": [["T", "R"]], - "tinged": null, - "ting's": null, - "tingle": [["S", "D", "G"]], - "tingles": null, - "tingled": null, - "tingling": [["Y"]], - "tinglingly": null, - "tingliest": null, - "tinglier": null, - "Ting's": null, - "tinily": null, - "tininess": [["M", "S"]], - "tininess's": null, - "tininesses": null, - "tinker": [["S", "R", "D", "M", "Z", "G"]], - "tinkers": null, - "tinkerer": null, - "tinkered": null, - "tinker's": null, - "tinkerers": null, - "tinkering": null, - "Tinkertoy": null, - "tinkle": [["S", "D", "G"]], - "tinkles": null, - "tinkled": null, - "tinkling": [["M"]], - "tinkling's": null, - "tinkly": null, - "tin": [["M", "D", "G", "S"]], - "tin's": null, - "tined": null, - "tining": null, - "tins": null, - "tinned": null, - "tinner": [["M"]], - "tinner's": null, - "tinnily": null, - "tinniness": [["S", "M"]], - "tinninesses": null, - "tinniness's": null, - "tinning": [["M"]], - "tinning's": null, - "tinnitus": [["M", "S"]], - "tinnitus's": null, - "tinnituses": null, - "tinny": [["R", "S", "T", "P"]], - "tinnier": null, - "tinnies": null, - "tinniest": null, - "tinplate": [["S"]], - "tinplates": null, - "tinsel": [["G", "M", "D", "Y", "S"]], - "tinseling": null, - "tinsel's": null, - "tinseled": null, - "tinselly": null, - "tinsels": null, - "Tinseltown": [["M"]], - "Tinseltown's": null, - "tinsmith": [["M"]], - "tinsmith's": null, - "tinsmiths": null, - "tinter": [["M"]], - "tinter's": null, - "tintinnabulation": [["M", "S"]], - "tintinnabulation's": null, - "tintinnabulations": null, - "Tintoretto": [["M"]], - "Tintoretto's": null, - "tint": [["S", "G", "M", "R", "D", "B"]], - "tints": null, - "tinting": null, - "tint's": null, - "tinted": null, - "tintable": null, - "tintype": [["S", "M"]], - "tintypes": null, - "tintype's": null, - "tinware": [["M", "S"]], - "tinware's": null, - "tinwares": null, - "tiny": [["R", "P", "T"]], - "tinier": null, - "tiniest": null, - "Tioga": [["M"]], - "Tioga's": null, - "Tiphanie": [["M"]], - "Tiphanie's": null, - "Tiphani": [["M"]], - "Tiphani's": null, - "Tiphany": [["M"]], - "Tiphany's": null, - "tipi's": null, - "tip": [["M", "S"]], - "tip's": null, - "tips": null, - "tipoff": null, - "Tippecanoe": [["M"]], - "Tippecanoe's": null, - "tipped": null, - "Tipperary": [["M"]], - "Tipperary's": null, - "tipper": [["M", "S"]], - "tipper's": null, - "tippers": null, - "tippet": [["M", "S"]], - "tippet's": null, - "tippets": null, - "tipping": null, - "tippler": [["M"]], - "tippler's": null, - "tipple": [["Z", "G", "R", "S", "D"]], - "tipplers": null, - "tippling": null, - "tipples": null, - "tippled": null, - "tippy": [["R"]], - "tippier": null, - "tipsily": null, - "tipsiness": [["S", "M"]], - "tipsinesses": null, - "tipsiness's": null, - "tipster": [["S", "M"]], - "tipsters": null, - "tipster's": null, - "tipsy": [["T", "P", "R"]], - "tipsiest": null, - "tipsier": null, - "tiptoeing": null, - "tiptoe": [["S", "D"]], - "tiptoes": null, - "tiptoed": null, - "tiptop": [["S"]], - "tiptops": null, - "tirade": [["S", "M"]], - "tirades": null, - "tirade's": null, - "Tirana's": null, - "Tirane": null, - "tired": [["A", "Y", "P"]], - "retired": null, - "retiredly": null, - "tiredly": null, - "tiredness": [["S"]], - "tireder": null, - "tiredest": null, - "tirednesses": null, - "tirelessness": [["S", "M"]], - "tirelessnesses": null, - "tirelessness's": null, - "tireless": [["P", "Y"]], - "tirelessly": null, - "tire": [["M", "G", "D", "S", "J"]], - "tire's": null, - "tiring": [["A", "U"]], - "tires": [["A"]], - "tirings": null, - "retires": null, - "Tiresias": [["M"]], - "Tiresias's": null, - "tiresomeness": [["S"]], - "tiresomenesses": null, - "tiresome": [["P", "Y"]], - "tiresomely": null, - "untiring": [["Y"]], - "Tirolean": [["S"]], - "Tiroleans": null, - "Tirol": [["M"]], - "Tirol's": null, - "tiro's": null, - "Tirrell": [["M"]], - "Tirrell's": null, - "tis": null, - "Tisha": [["M"]], - "Tisha's": null, - "Tish": [["M"]], - "Tish's": null, - "tissue": [["M", "G", "S", "D"]], - "tissue's": null, - "tissuing": null, - "tissues": null, - "tissued": null, - "titanate": [["M"]], - "titanate's": null, - "Titania": [["M"]], - "Titania's": null, - "titanic": null, - "titanically": null, - "Titanic": [["M"]], - "Titanic's": null, - "titanium": [["S", "M"]], - "titaniums": null, - "titanium's": null, - "titan": [["S", "M"]], - "titans": null, - "titan's": null, - "Titan": [["S", "M"]], - "Titans": null, - "Titan's": null, - "titbit's": null, - "titer": [["M"]], - "titer's": null, - "tither": [["M"]], - "tither's": null, - "tithe": [["S", "R", "D", "G", "Z", "M"]], - "tithes": null, - "tithed": null, - "tithing": [["M"]], - "tithers": null, - "tithe's": null, - "tithing's": null, - "Titian": [["M"]], - "Titian's": null, - "titian": [["S"]], - "titians": null, - "Titicaca": [["M"]], - "Titicaca's": null, - "titillate": [["X", "S", "D", "V", "N", "G"]], - "titillations": null, - "titillates": null, - "titillated": null, - "titillative": null, - "titillation": [["M"]], - "titillating": [["Y"]], - "titillatingly": null, - "titillation's": null, - "titivate": [["N", "G", "D", "S", "X"]], - "titivation": [["M"]], - "titivating": null, - "titivated": null, - "titivates": null, - "titivations": null, - "titivation's": null, - "titled": [["A", "U"]], - "retitled": null, - "untitled": null, - "title": [["G", "M", "S", "R", "D"]], - "titling": [["A"]], - "title's": null, - "titles": null, - "titler": null, - "titleholder": [["S", "M"]], - "titleholders": null, - "titleholder's": null, - "retitling": null, - "titmice": null, - "titmouse": [["M"]], - "titmouse's": null, - "tit": [["M", "R", "Z", "S"]], - "tit's": null, - "titers": null, - "tits": null, - "Tito": [["S", "M"]], - "Titos": null, - "Tito's": null, - "titrate": [["S", "D", "G", "N"]], - "titrates": null, - "titrated": null, - "titrating": null, - "titration": [["M"]], - "titration's": null, - "titted": null, - "titter": [["G", "D", "S"]], - "tittering": null, - "tittered": null, - "titters": null, - "titting": null, - "tittle": [["S", "D", "M", "G"]], - "tittles": null, - "tittled": null, - "tittle's": null, - "tittling": null, - "titular": [["S", "Y"]], - "titulars": null, - "titularly": null, - "Titus": [["M"]], - "Titus's": null, - "tizzy": [["S", "M"]], - "tizzies": null, - "tizzy's": null, - "TKO": null, - "Tlaloc": [["M"]], - "Tlaloc's": null, - "TLC": null, - "Tlingit": [["M"]], - "Tlingit's": null, - "Tl": [["M"]], - "Tl's": null, - "TM": null, - "Tm": [["M"]], - "Tm's": null, - "tn": null, - "TN": null, - "tnpk": null, - "TNT": null, - "toad": [["S", "M"]], - "toads": null, - "toad's": null, - "toadstool": [["S", "M"]], - "toadstools": null, - "toadstool's": null, - "toady": [["G", "S", "D", "M"]], - "toadying": null, - "toadies": null, - "toadied": null, - "toady's": null, - "toadyism": [["M"]], - "toadyism's": null, - "toaster": [["M"]], - "toaster's": null, - "toastmaster": [["M", "S"]], - "toastmaster's": null, - "toastmasters": null, - "toastmistress": [["S"]], - "toastmistresses": null, - "toast": [["S", "Z", "G", "R", "D", "M"]], - "toasts": null, - "toasters": null, - "toasting": null, - "toasted": null, - "toast's": null, - "toasty": [["T", "R", "S"]], - "toastiest": null, - "toastier": null, - "toasties": null, - "tobacconist": [["S", "M"]], - "tobacconists": null, - "tobacconist's": null, - "tobacco": [["S", "M"]], - "tobaccos": null, - "tobacco's": null, - "tobaggon": [["S", "M"]], - "tobaggons": null, - "tobaggon's": null, - "Tobago": [["M"]], - "Tobago's": null, - "Tobe": [["M"]], - "Tobe's": null, - "Tobey": [["M"]], - "Tobey's": null, - "Tobiah": [["M"]], - "Tobiah's": null, - "Tobias": [["M"]], - "Tobias's": null, - "Tobie": [["M"]], - "Tobie's": null, - "Tobi": [["M"]], - "Tobi's": null, - "Tobin": [["M"]], - "Tobin's": null, - "Tobit": [["M"]], - "Tobit's": null, - "toboggan": [["M", "R", "D", "S", "Z", "G"]], - "toboggan's": null, - "tobogganer": null, - "tobogganed": null, - "toboggans": null, - "tobogganers": null, - "tobogganing": null, - "Tobye": [["M"]], - "Tobye's": null, - "Toby": [["M"]], - "Toby's": null, - "Tocantins": [["M"]], - "Tocantins's": null, - "toccata": [["M"]], - "toccata's": null, - "Tocqueville": null, - "tocsin": [["M", "S"]], - "tocsin's": null, - "tocsins": null, - "to": [["D"]], - "toed": null, - "today'll": null, - "today": [["S", "M"]], - "todays": null, - "today's": null, - "Toddie": [["M"]], - "Toddie's": null, - "toddler": [["M"]], - "toddler's": null, - "toddle": [["Z", "G", "S", "R", "D"]], - "toddlers": null, - "toddling": null, - "toddles": null, - "toddled": null, - "Todd": [["M"]], - "Todd's": null, - "Toddy": [["M"]], - "Toddy's": null, - "toddy": [["S", "M"]], - "toddies": null, - "toddy's": null, - "Tod": [["M"]], - "Tod's": null, - "toecap": [["S", "M"]], - "toecaps": null, - "toecap's": null, - "toeclip": [["S"]], - "toeclips": null, - "TOEFL": null, - "toehold": [["M", "S"]], - "toehold's": null, - "toeholds": null, - "toeing": null, - "toe": [["M", "S"]], - "toe's": null, - "toes": null, - "toenail": [["D", "M", "G", "S"]], - "toenailed": null, - "toenail's": null, - "toenailing": null, - "toenails": null, - "toffee": [["S", "M"]], - "toffees": null, - "toffee's": null, - "tofu": [["S"]], - "tofus": null, - "toga": [["S", "M", "D"]], - "togas": null, - "toga's": null, - "togaed": null, - "toge": null, - "togetherness": [["M", "S"]], - "togetherness's": null, - "togethernesses": null, - "together": [["P"]], - "togged": null, - "togging": null, - "toggle": [["S", "D", "M", "G"]], - "toggles": null, - "toggled": null, - "toggle's": null, - "toggling": null, - "Togolese": [["M"]], - "Togolese's": null, - "Togo": [["M"]], - "Togo's": null, - "tog": [["S", "M", "G"]], - "togs": null, - "tog's": null, - "toging": null, - "Toiboid": [["M"]], - "Toiboid's": null, - "toilet": [["G", "M", "D", "S"]], - "toileting": null, - "toilet's": null, - "toileted": null, - "toilets": null, - "toiletry": [["M", "S"]], - "toiletry's": null, - "toiletries": null, - "toilette": [["S", "M"]], - "toilettes": null, - "toilette's": null, - "toil": [["S", "G", "Z", "M", "R", "D"]], - "toils": null, - "toiling": null, - "toilers": null, - "toil's": null, - "toiler": null, - "toiled": null, - "toilsomeness": [["M"]], - "toilsomeness's": null, - "toilsome": [["P", "Y"]], - "toilsomely": null, - "Toinette": [["M"]], - "Toinette's": null, - "Tojo": [["M"]], - "Tojo's": null, - "tokamak": null, - "Tokay": [["M"]], - "Tokay's": null, - "toke": [["G", "D", "S"]], - "toking": null, - "toked": null, - "tokes": null, - "tokenism": [["S", "M"]], - "tokenisms": null, - "tokenism's": null, - "tokenized": null, - "token": [["S", "M", "D", "G"]], - "tokens": null, - "token's": null, - "tokened": null, - "tokening": null, - "Tokugawa": [["M"]], - "Tokugawa's": null, - "Tokyoite": [["M", "S"]], - "Tokyoite's": null, - "Tokyoites": null, - "Tokyo": [["M"]], - "Tokyo's": null, - "Toland": [["M"]], - "Toland's": null, - "told": [["A", "U"]], - "retold": null, - "untold": null, - "Toledo": [["S", "M"]], - "Toledos": null, - "Toledo's": null, - "tole": [["M", "G", "D", "S"]], - "tole's": null, - "toling": null, - "toled": null, - "toles": null, - "tolerability": [["I", "M"]], - "intolerability": null, - "intolerability's": null, - "tolerability's": null, - "tolerable": [["I"]], - "tolerably": [["I"]], - "intolerably": null, - "tolerance": [["S", "I", "M"]], - "tolerances": null, - "intolerances": null, - "intolerance": null, - "intolerance's": null, - "tolerance's": null, - "tolerant": [["I", "Y"]], - "intolerantly": null, - "tolerantly": null, - "tolerate": [["X", "V", "N", "G", "S", "D"]], - "tolerations": null, - "tolerative": null, - "toleration": [["M"]], - "tolerating": null, - "tolerates": null, - "tolerated": null, - "toleration's": null, - "Tolkien": null, - "tollbooth": [["M"]], - "tollbooth's": null, - "tollbooths": null, - "toll": [["D", "G", "S"]], - "tolled": null, - "tolling": null, - "tolls": null, - "Tolley": [["M"]], - "Tolley's": null, - "tollgate": [["M", "S"]], - "tollgate's": null, - "tollgates": null, - "tollhouse": [["M"]], - "tollhouse's": null, - "tollway": [["S"]], - "tollways": null, - "Tolstoy": [["M"]], - "Tolstoy's": null, - "toluene": [["M", "S"]], - "toluene's": null, - "toluenes": null, - "Tolyatti": [["M"]], - "Tolyatti's": null, - "tomahawk": [["S", "G", "M", "D"]], - "tomahawks": null, - "tomahawking": null, - "tomahawk's": null, - "tomahawked": null, - "Tomasina": [["M"]], - "Tomasina's": null, - "Tomasine": [["M"]], - "Tomasine's": null, - "Toma": [["S", "M"]], - "Tomas": null, - "Toma's": null, - "Tomaso": [["M"]], - "Tomaso's": null, - "tomatoes": null, - "tomato": [["M"]], - "tomato's": null, - "Tombaugh": [["M"]], - "Tombaugh's": null, - "tomb": [["G", "S", "D", "M"]], - "tombing": null, - "tombs": null, - "tombed": null, - "tomb's": null, - "Tombigbee": [["M"]], - "Tombigbee's": null, - "tomblike": null, - "tombola": [["M"]], - "tombola's": null, - "tomboyish": null, - "tomboy": [["M", "S"]], - "tomboy's": null, - "tomboys": null, - "tombstone": [["M", "S"]], - "tombstone's": null, - "tombstones": null, - "tomcat": [["S", "M"]], - "tomcats": null, - "tomcat's": null, - "tomcatted": null, - "tomcatting": null, - "Tome": [["M"]], - "Tome's": null, - "tome": [["S", "M"]], - "tomes": null, - "tome's": null, - "tomfoolery": [["M", "S"]], - "tomfoolery's": null, - "tomfooleries": null, - "tomfool": [["M"]], - "tomfool's": null, - "Tomi": [["M"]], - "Tomi's": null, - "Tomkin": [["M"]], - "Tomkin's": null, - "Tomlin": [["M"]], - "Tomlin's": null, - "Tom": [["M"]], - "Tom's": null, - "tommed": null, - "Tommie": [["M"]], - "Tommie's": null, - "Tommi": [["M"]], - "Tommi's": null, - "tomming": null, - "tommy": [["M"]], - "tommy's": null, - "Tommy": [["M"]], - "Tommy's": null, - "tomographic": null, - "tomography": [["M", "S"]], - "tomography's": null, - "tomographies": null, - "tomorrow": [["M", "S"]], - "tomorrow's": null, - "tomorrows": null, - "Tompkins": [["M"]], - "Tompkins's": null, - "Tomsk": [["M"]], - "Tomsk's": null, - "tom": [["S", "M"]], - "toms": null, - "tom's": null, - "tomtit": [["S", "M"]], - "tomtits": null, - "tomtit's": null, - "tonality": [["M", "S"]], - "tonality's": null, - "tonalities": null, - "tonal": [["Y"]], - "tonally": null, - "tonearm": [["S"]], - "tonearms": null, - "tone": [["I", "S", "R", "D", "Z", "G"]], - "intone": null, - "intones": null, - "intoner": null, - "intoned": null, - "intoners": null, - "intoning": null, - "tones": null, - "toner": [["I", "M"]], - "toned": null, - "toners": null, - "toning": null, - "tonelessness": [["M"]], - "tonelessness's": null, - "toneless": [["Y", "P"]], - "tonelessly": null, - "intoner's": null, - "toner's": null, - "tone's": null, - "Tonga": [["M"]], - "Tonga's": null, - "Tongan": [["S", "M"]], - "Tongans": null, - "Tongan's": null, - "tong": [["G", "R", "D", "S"]], - "tonging": null, - "tonger": null, - "tonged": null, - "tongs": null, - "tongueless": null, - "tongue": [["S", "D", "M", "G"]], - "tongues": null, - "tongued": null, - "tongue's": null, - "tonguing": [["M"]], - "tonguing's": null, - "Tonia": [["M"]], - "Tonia's": null, - "tonic": [["S", "M"]], - "tonics": null, - "tonic's": null, - "Tonie": [["M"]], - "Tonie's": null, - "tonight": [["M", "S"]], - "tonight's": null, - "tonights": null, - "Toni": [["M"]], - "Toni's": null, - "Tonio": [["M"]], - "Tonio's": null, - "tonk": [["M", "S"]], - "tonk's": null, - "tonks": null, - "tonnage": [["S", "M"]], - "tonnages": null, - "tonnage's": null, - "tonne": [["M", "S"]], - "tonne's": null, - "tonnes": null, - "Tonnie": [["M"]], - "Tonnie's": null, - "tonsillectomy": [["M", "S"]], - "tonsillectomy's": null, - "tonsillectomies": null, - "tonsillitis": [["S", "M"]], - "tonsillitises": null, - "tonsillitis's": null, - "tonsil": [["S", "M"]], - "tonsils": null, - "tonsil's": null, - "ton": [["S", "K", "M"]], - "tons": null, - "protons": null, - "proton": null, - "proton's": null, - "ton's": null, - "tonsorial": null, - "tonsure": [["S", "D", "G", "M"]], - "tonsures": null, - "tonsured": null, - "tonsuring": null, - "tonsure's": null, - "Tonto": [["M"]], - "Tonto's": null, - "Tonya": [["M"]], - "Tonya's": null, - "Tonye": [["M"]], - "Tonye's": null, - "Tony": [["M"]], - "Tony's": null, - "tony": [["R", "T"]], - "tonier": null, - "toniest": null, - "toodle": null, - "too": [["H"]], - "tooth": [["D", "M", "G"]], - "took": [["A"]], - "retook": null, - "tool": [["A", "G", "D", "S"]], - "retool": null, - "retooling": null, - "retooled": null, - "retools": null, - "tooling": [["M"]], - "tooled": null, - "tools": null, - "toolbox": [["S", "M"]], - "toolboxes": null, - "toolbox's": null, - "tooler": [["S", "M"]], - "toolers": null, - "tooler's": null, - "tooling's": null, - "toolkit": [["S", "M"]], - "toolkits": null, - "toolkit's": null, - "toolmaker": [["M"]], - "toolmaker's": null, - "toolmake": [["Z", "R", "G"]], - "toolmakers": null, - "toolmaking": [["M"]], - "toolmaking's": null, - "tool's": null, - "toolsmith": null, - "Toomey": [["M"]], - "Toomey's": null, - "tooter": [["M"]], - "tooter's": null, - "toot": [["G", "R", "D", "Z", "S"]], - "tooting": null, - "tooted": null, - "tooters": null, - "toots": [["M"]], - "toothache": [["S", "M"]], - "toothaches": null, - "toothache's": null, - "toothbrush": [["M", "S", "G"]], - "toothbrush's": null, - "toothbrushes": null, - "toothbrushing": null, - "toothed": null, - "tooth's": null, - "toothing": null, - "toothily": null, - "toothless": null, - "toothmarks": null, - "toothpaste": [["S", "M"]], - "toothpastes": null, - "toothpaste's": null, - "toothpick": [["M", "S"]], - "toothpick's": null, - "toothpicks": null, - "tooths": null, - "toothsome": null, - "toothy": [["T", "R"]], - "toothiest": null, - "toothier": null, - "tootle": [["S", "R", "D", "G"]], - "tootles": null, - "tootler": null, - "tootled": null, - "tootling": null, - "tootsie": null, - "Tootsie": [["M"]], - "Tootsie's": null, - "toots's": null, - "tootsy": [["M", "S"]], - "tootsy's": null, - "tootsies": null, - "topaz": [["M", "S"]], - "topaz's": null, - "topazes": null, - "topcoat": [["M", "S"]], - "topcoat's": null, - "topcoats": null, - "topdressing": [["S"]], - "topdressings": null, - "Topeka": [["M"]], - "Topeka's": null, - "toper": [["M"]], - "toper's": null, - "topflight": null, - "topgallant": [["M"]], - "topgallant's": null, - "topiary": [["S"]], - "topiaries": null, - "topicality": [["M", "S"]], - "topicality's": null, - "topicalities": null, - "topical": [["Y"]], - "topically": null, - "topic": [["M", "S"]], - "topic's": null, - "topics": null, - "topknot": [["M", "S"]], - "topknot's": null, - "topknots": null, - "topless": null, - "topmast": [["M", "S"]], - "topmast's": null, - "topmasts": null, - "topmost": null, - "topnotch": [["R"]], - "topnotcher": null, - "topocentric": null, - "topographer": [["S", "M"]], - "topographers": null, - "topographer's": null, - "topographic": null, - "topographical": [["Y"]], - "topographically": null, - "topography": [["M", "S"]], - "topography's": null, - "topographies": null, - "topological": [["Y"]], - "topologically": null, - "topologist": [["M", "S"]], - "topologist's": null, - "topologists": null, - "topology": [["M", "S"]], - "topology's": null, - "topologies": null, - "topped": null, - "topper": [["M", "S"]], - "topper's": null, - "toppers": null, - "topping": [["M", "S"]], - "topping's": null, - "toppings": null, - "topple": [["G", "S", "D"]], - "toppling": null, - "topples": null, - "toppled": null, - "topsail": [["M", "S"]], - "topsail's": null, - "topsails": null, - "topside": [["S", "R", "M"]], - "topsides": null, - "topsider": null, - "topside's": null, - "top": [["S", "M", "D", "R", "G"]], - "tops": null, - "top's": null, - "toped": null, - "toping": null, - "topsoil": [["G", "D", "M", "S"]], - "topsoiling": null, - "topsoiled": null, - "topsoil's": null, - "topsoils": null, - "topspin": [["M", "S"]], - "topspin's": null, - "topspins": null, - "Topsy": [["M"]], - "Topsy's": null, - "toque": [["M", "S"]], - "toque's": null, - "toques": null, - "Torah": [["M"]], - "Torah's": null, - "Torahs": null, - "torchbearer": [["S", "M"]], - "torchbearers": null, - "torchbearer's": null, - "torchlight": [["S"]], - "torchlights": null, - "torch": [["S", "D", "M", "G"]], - "torches": null, - "torched": null, - "torch's": null, - "torching": null, - "toreador": [["S", "M"]], - "toreadors": null, - "toreador's": null, - "Tore": [["M"]], - "Tore's": null, - "tore": [["S"]], - "tores": null, - "Torey": [["M"]], - "Torey's": null, - "Torie": [["M"]], - "Torie's": null, - "tori": [["M"]], - "tori's": null, - "Tori": [["M"]], - "Tori's": null, - "Torin": [["M"]], - "Torin's": null, - "torment": [["G", "S", "D"]], - "tormenting": [["Y"]], - "torments": null, - "tormented": null, - "tormentingly": null, - "tormentor": [["M", "S"]], - "tormentor's": null, - "tormentors": null, - "torn": null, - "tornadoes": null, - "tornado": [["M"]], - "tornado's": null, - "toroidal": [["Y"]], - "toroidally": null, - "toroid": [["M", "S"]], - "toroid's": null, - "toroids": null, - "Toronto": [["M"]], - "Toronto's": null, - "torpedoes": null, - "torpedo": [["G", "M", "D"]], - "torpedoing": null, - "torpedo's": null, - "torpedoed": null, - "torpidity": [["S"]], - "torpidities": null, - "torpid": [["S", "Y"]], - "torpids": null, - "torpidly": null, - "torpor": [["M", "S"]], - "torpor's": null, - "torpors": null, - "Torquemada": [["M"]], - "Torquemada's": null, - "torque": [["M", "Z", "G", "S", "R", "D"]], - "torque's": null, - "torquers": null, - "torquing": null, - "torques": null, - "torquer": null, - "torqued": null, - "Torrance": [["M"]], - "Torrance's": null, - "Torre": [["M", "S"]], - "Torre's": null, - "Torres": null, - "torrence": null, - "Torrence": [["M"]], - "Torrence's": null, - "Torrens": [["M"]], - "Torrens's": null, - "torrential": null, - "torrent": [["M", "S"]], - "torrent's": null, - "torrents": null, - "Torrey": [["M"]], - "Torrey's": null, - "Torricelli": [["M"]], - "Torricelli's": null, - "torridity": [["S", "M"]], - "torridities": null, - "torridity's": null, - "torridness": [["S", "M"]], - "torridnesses": null, - "torridness's": null, - "torrid": [["R", "Y", "T", "P"]], - "torrider": null, - "torridly": null, - "torridest": null, - "Torrie": [["M"]], - "Torrie's": null, - "Torrin": [["M"]], - "Torrin's": null, - "Torr": [["X", "M"]], - "Torr's": null, - "Torry": [["M"]], - "Torry's": null, - "torsional": [["Y"]], - "torsionally": null, - "torsion": [["I", "A", "M"]], - "intorsion": null, - "intorsion's": null, - "retorsion": null, - "retorsion's": null, - "torsion's": null, - "torsions": null, - "torsi's": null, - "tor": [["S", "L", "M"]], - "tors": [["S"]], - "tor's": null, - "torso": [["S", "M"]], - "torsos": null, - "torso's": null, - "torses": null, - "tort": [["A", "S", "F", "E"]], - "retorts": null, - "torts": null, - "contorts": null, - "distorts": null, - "tortellini": [["M", "S"]], - "tortellini's": null, - "tortellinis": null, - "torte": [["M", "S"]], - "torte's": null, - "tortes": null, - "torten": null, - "tortilla": [["M", "S"]], - "tortilla's": null, - "tortillas": null, - "tortoiseshell": [["S", "M"]], - "tortoiseshells": null, - "tortoiseshell's": null, - "tortoise": [["S", "M"]], - "tortoises": null, - "tortoise's": null, - "Tortola": [["M"]], - "Tortola's": null, - "tortoni": [["M", "S"]], - "tortoni's": null, - "tortonis": null, - "tort's": null, - "Tortuga": [["M"]], - "Tortuga's": null, - "tortuousness": [["M", "S"]], - "tortuousness's": null, - "tortuousnesses": null, - "tortuous": [["P", "Y"]], - "tortuously": null, - "torture": [["Z", "G", "S", "R", "D"]], - "torturers": null, - "torturing": null, - "tortures": null, - "torturer": null, - "tortured": null, - "torturous": null, - "torus": [["M", "S"]], - "torus's": null, - "toruses": null, - "Tory": [["S", "M"]], - "Tories": null, - "Tory's": null, - "Tosca": [["M"]], - "Tosca's": null, - "Toscanini": [["M"]], - "Toscanini's": null, - "Toshiba": [["M"]], - "Toshiba's": null, - "toss": [["S", "R", "D", "G", "Z"]], - "tosses": null, - "tosser": null, - "tossed": null, - "tossing": null, - "tossers": null, - "tossup": [["M", "S"]], - "tossup's": null, - "tossups": null, - "totaler": [["M"]], - "totaler's": null, - "totalistic": null, - "totalitarianism": [["S", "M"]], - "totalitarianisms": null, - "totalitarianism's": null, - "totalitarian": [["S"]], - "totalitarians": null, - "totality": [["M", "S"]], - "totality's": null, - "totalities": null, - "totalizator": [["S"]], - "totalizators": null, - "totalizing": null, - "total": [["Z", "G", "S", "R", "D", "Y", "M"]], - "totalers": null, - "totaling": null, - "totals": null, - "totaled": null, - "totally": null, - "total's": null, - "totemic": null, - "totem": [["M", "S"]], - "totem's": null, - "totems": null, - "toter": [["M"]], - "toter's": null, - "tote": [["S"]], - "totes": null, - "toting": [["M"]], - "toting's": null, - "tot": [["M", "D", "R", "S", "G"]], - "tot's": null, - "toted": null, - "tots": null, - "Toto": [["M"]], - "Toto's": null, - "totted": null, - "totterer": [["M"]], - "totterer's": null, - "tottering": [["Y"]], - "totteringly": null, - "totter": [["Z", "G", "R", "D", "S"]], - "totterers": null, - "tottered": null, - "totters": null, - "totting": null, - "toucan": [["M", "S"]], - "toucan's": null, - "toucans": null, - "touchable": [["U"]], - "untouchable": [["M", "S"]], - "touch": [["A", "S", "D", "G"]], - "retouch": null, - "retouches": null, - "retouched": null, - "retouching": null, - "touches": null, - "touched": [["U"]], - "touching": [["S", "Y"]], - "touchdown": [["S", "M"]], - "touchdowns": null, - "touchdown's": null, - "touch�": null, - "untouched": null, - "toucher": [["M"]], - "toucher's": null, - "touchily": null, - "touchiness": [["S", "M"]], - "touchinesses": null, - "touchiness's": null, - "touchings": null, - "touchingly": null, - "touchline": [["M"]], - "touchline's": null, - "touchscreen": null, - "touchstone": [["S", "M"]], - "touchstones": null, - "touchstone's": null, - "touchy": [["T", "P", "R"]], - "touchiest": null, - "touchier": null, - "toughen": [["D", "R", "Z", "G"]], - "toughened": null, - "toughener": [["M"]], - "tougheners": null, - "toughening": null, - "toughener's": null, - "toughness": [["S", "M"]], - "toughnesses": null, - "toughness's": null, - "toughs": null, - "tough": [["T", "X", "G", "R", "D", "N", "Y", "P"]], - "toughest": null, - "toughens": null, - "toughing": null, - "tougher": null, - "toughed": null, - "toughly": null, - "Toulouse": [["M"]], - "Toulouse's": null, - "toupee": [["S", "M"]], - "toupees": null, - "toupee's": null, - "toured": [["C", "F"]], - "detoured": null, - "contoured": null, - "tourer": [["M"]], - "tourer's": null, - "tour": [["G", "Z", "S", "R", "D", "M"]], - "touring": [["F"]], - "tourers": null, - "tours": [["C", "F"]], - "tour's": [["C", "F"]], - "contouring": null, - "tourism": [["S", "M"]], - "tourisms": null, - "tourism's": null, - "touristic": null, - "tourist": [["S", "M"]], - "tourists": null, - "tourist's": null, - "touristy": null, - "tourmaline": [["S", "M"]], - "tourmalines": null, - "tourmaline's": null, - "tournament": [["M", "S"]], - "tournament's": null, - "tournaments": null, - "tourney": [["G", "D", "M", "S"]], - "tourneying": null, - "tourneyed": null, - "tourney's": null, - "tourneys": null, - "tourniquet": [["M", "S"]], - "tourniquet's": null, - "tourniquets": null, - "detour's": null, - "contour's": null, - "detours": null, - "contours": null, - "tousle": [["G", "S", "D"]], - "tousling": null, - "tousles": null, - "tousled": null, - "touter": [["M"]], - "touter's": null, - "tout": [["S", "G", "R", "D"]], - "touts": null, - "touting": null, - "touted": null, - "Tova": [["M"]], - "Tova's": null, - "Tove": [["M"]], - "Tove's": null, - "towardliness": [["M"]], - "towardliness's": null, - "towardly": [["P"]], - "towards": null, - "toward": [["Y", "U"]], - "untowardly": null, - "untoward": [["P"]], - "towboat": [["M", "S"]], - "towboat's": null, - "towboats": null, - "tow": [["D", "R", "S", "Z", "G"]], - "towed": null, - "tower": [["G", "M", "D"]], - "tows": null, - "towers": null, - "towing": null, - "towelette": [["S"]], - "towelettes": null, - "towel": [["G", "J", "D", "M", "S"]], - "toweling": [["M"]], - "towelings": null, - "toweled": null, - "towel's": null, - "towels": null, - "toweling's": null, - "towering": [["Y"]], - "tower's": null, - "towered": null, - "toweringly": null, - "towhead": [["M", "S", "D"]], - "towhead's": null, - "towheads": null, - "towheaded": null, - "towhee": [["S", "M"]], - "towhees": null, - "towhee's": null, - "towline": [["M", "S"]], - "towline's": null, - "towlines": null, - "towner": [["M"]], - "towner's": null, - "Townes": null, - "Towney": [["M"]], - "Towney's": null, - "townhouse": [["S"]], - "townhouses": null, - "Townie": [["M"]], - "Townie's": null, - "townie": [["S"]], - "townies": null, - "Townley": [["M"]], - "Townley's": null, - "Town": [["M"]], - "Town's": null, - "Townsend": [["M"]], - "Townsend's": null, - "townsfolk": null, - "township": [["M", "S"]], - "township's": null, - "townships": null, - "townsman": [["M"]], - "townsman's": null, - "townsmen": null, - "townspeople": [["M"]], - "townspeople's": null, - "town": [["S", "R", "M"]], - "towns": null, - "town's": null, - "townswoman": [["M"]], - "townswoman's": null, - "townswomen": null, - "Towny": [["M"]], - "Towny's": null, - "towpath": [["M"]], - "towpath's": null, - "towpaths": null, - "towrope": [["M", "S"]], - "towrope's": null, - "towropes": null, - "Towsley": [["M"]], - "Towsley's": null, - "toxemia": [["M", "S"]], - "toxemia's": null, - "toxemias": null, - "toxicity": [["M", "S"]], - "toxicity's": null, - "toxicities": null, - "toxicological": null, - "toxicologist": [["S", "M"]], - "toxicologists": null, - "toxicologist's": null, - "toxicology": [["M", "S"]], - "toxicology's": null, - "toxicologies": null, - "toxic": [["S"]], - "toxics": null, - "toxin": [["M", "S"]], - "toxin's": null, - "toxins": null, - "toyer": [["M"]], - "toyer's": null, - "toymaker": null, - "toy": [["M", "D", "R", "S", "G"]], - "toy's": null, - "toyed": null, - "toys": null, - "toying": null, - "Toynbee": [["M"]], - "Toynbee's": null, - "Toyoda": [["M"]], - "Toyoda's": null, - "Toyota": [["M"]], - "Toyota's": null, - "toyshop": null, - "tr": null, - "traceability": [["M"]], - "traceability's": null, - "traceableness": [["M"]], - "traceableness's": null, - "traceable": [["P"]], - "trace": [["A", "S", "D", "G"]], - "retrace": null, - "retraces": null, - "retraced": null, - "retracing": null, - "traces": null, - "traced": [["U"]], - "tracing": [["S", "M"]], - "traceback": [["M", "S"]], - "traceback's": null, - "tracebacks": null, - "untraced": null, - "Tracee": [["M"]], - "Tracee's": null, - "traceless": [["Y"]], - "tracelessly": null, - "Trace": [["M"]], - "Trace's": null, - "tracepoint": [["S", "M"]], - "tracepoints": null, - "tracepoint's": null, - "tracer": [["M", "S"]], - "tracer's": null, - "tracers": null, - "tracery": [["M", "D", "S"]], - "tracery's": null, - "traceried": null, - "traceries": null, - "trace's": null, - "Tracey": [["M"]], - "Tracey's": null, - "tracheae": null, - "tracheal": [["M"]], - "tracheal's": null, - "trachea": [["M"]], - "trachea's": null, - "tracheotomy": [["S", "M"]], - "tracheotomies": null, - "tracheotomy's": null, - "Tracie": [["M"]], - "Tracie's": null, - "Traci": [["M"]], - "Traci's": null, - "tracings": null, - "tracing's": null, - "trackage": null, - "trackball": [["S"]], - "trackballs": null, - "trackbed": null, - "tracked": [["U"]], - "untracked": null, - "tracker": [["M"]], - "tracker's": null, - "trackless": null, - "tracksuit": [["S", "M"]], - "tracksuits": null, - "tracksuit's": null, - "track": [["S", "Z", "G", "M", "R", "D"]], - "tracks": null, - "trackers": null, - "tracking": null, - "track's": null, - "tractability": [["S", "I"]], - "tractabilities": null, - "intractabilities": null, - "tractable": [["I"]], - "tractably": [["I"]], - "intractably": null, - "tract": [["A", "B", "S"]], - "retractable": null, - "retracts": null, - "tracts": [["C", "E", "F", "K"]], - "Tractarians": null, - "traction": [["K", "S", "C", "E", "M", "A", "F"]], - "protraction": null, - "protractions": null, - "protraction's": null, - "tractions": null, - "detractions": null, - "distractions": null, - "retractions": null, - "contractions": null, - "detraction": null, - "detraction's": null, - "distraction": null, - "distraction's": null, - "traction's": null, - "retraction's": null, - "contraction's": null, - "retraction": null, - "contraction": null, - "tractive": [["K", "F", "E"]], - "protractive": null, - "contractive": null, - "distractive": null, - "tractor": [["F", "K", "M", "A", "S", "C"]], - "contractor": null, - "contractor's": null, - "contractors": null, - "protractor": null, - "protractor's": null, - "protractors": null, - "tractor's": null, - "retractor's": null, - "detractor's": null, - "retractor": null, - "retractors": null, - "tractors": null, - "detractors": null, - "detractor": null, - "tract's": null, - "detracts": null, - "distracts": null, - "contracts": null, - "protracts": null, - "Tracy": [["M"]], - "Tracy's": null, - "trademark": [["G", "S", "M", "D"]], - "trademarking": null, - "trademarks": null, - "trademark's": null, - "trademarked": null, - "trader": [["M"]], - "trader's": null, - "tradesman": [["M"]], - "tradesman's": null, - "tradesmen": null, - "tradespeople": null, - "tradespersons": null, - "trade": [["S", "R", "D", "G", "Z", "M"]], - "trades": null, - "traded": null, - "trading": null, - "traders": null, - "trade's": null, - "tradeswoman": [["M"]], - "tradeswoman's": null, - "tradeswomen": null, - "traditionalism": [["M", "S"]], - "traditionalism's": null, - "traditionalisms": null, - "traditionalistic": null, - "traditionalist": [["M", "S"]], - "traditionalist's": null, - "traditionalists": null, - "traditionalized": null, - "traditionally": null, - "traditional": [["U"]], - "untraditional": null, - "tradition": [["S", "M"]], - "traditions": null, - "tradition's": null, - "traduce": [["D", "R", "S", "G", "Z"]], - "traduced": null, - "traducer": null, - "traduces": null, - "traducing": null, - "traducers": null, - "Trafalgar": [["M"]], - "Trafalgar's": null, - "trafficked": null, - "trafficker": [["M", "S"]], - "trafficker's": null, - "traffickers": null, - "trafficking": [["S"]], - "traffickings": null, - "traffic": [["S", "M"]], - "traffics": null, - "traffic's": null, - "tragedian": [["S", "M"]], - "tragedians": null, - "tragedian's": null, - "tragedienne": [["M", "S"]], - "tragedienne's": null, - "tragediennes": null, - "tragedy": [["M", "S"]], - "tragedy's": null, - "tragedies": null, - "tragically": null, - "tragicomedy": [["S", "M"]], - "tragicomedies": null, - "tragicomedy's": null, - "tragicomic": null, - "tragic": [["S"]], - "tragics": null, - "trailblazer": [["M", "S"]], - "trailblazer's": null, - "trailblazers": null, - "trailblazing": [["S"]], - "trailblazings": null, - "trailer": [["G", "D", "M"]], - "trailering": null, - "trailered": null, - "trailer's": null, - "trails": [["F"]], - "contrails": null, - "trailside": null, - "trail": [["S", "Z", "G", "J", "R", "D"]], - "trailers": null, - "trailing": null, - "trailings": null, - "trailed": null, - "trainable": null, - "train": [["A", "S", "D", "G"]], - "retrain": null, - "retrains": null, - "retrained": null, - "retraining": null, - "trains": null, - "trained": [["U"]], - "training": [["S", "M"]], - "untrained": null, - "trainee": [["M", "S"]], - "trainee's": null, - "trainees": null, - "traineeships": null, - "trainer": [["M", "S"]], - "trainer's": null, - "trainers": null, - "trainings": null, - "training's": null, - "trainman": [["M"]], - "trainman's": null, - "trainmen": null, - "trainspotter": [["S"]], - "trainspotters": null, - "traipse": [["D", "S", "G"]], - "traipsed": null, - "traipses": null, - "traipsing": null, - "trait": [["M", "S"]], - "trait's": null, - "traits": null, - "traitorous": [["Y"]], - "traitorously": null, - "traitor": [["S", "M"]], - "traitors": null, - "traitor's": null, - "Trajan": [["M"]], - "Trajan's": null, - "trajectory": [["M", "S"]], - "trajectory's": null, - "trajectories": null, - "trammed": null, - "trammeled": [["U"]], - "untrammeled": null, - "trammel": [["G", "S", "D"]], - "trammeling": null, - "trammels": null, - "tramming": null, - "tram": [["M", "S"]], - "tram's": null, - "trams": null, - "trample": [["D", "G", "R", "S", "Z"]], - "trampled": null, - "trampling": null, - "trampler": [["M"]], - "tramples": null, - "tramplers": null, - "trampler's": null, - "trampoline": [["G", "M", "S", "D"]], - "trampolining": null, - "trampoline's": null, - "trampolines": null, - "trampolined": null, - "tramp": [["R", "D", "S", "Z", "G"]], - "tramper": null, - "tramped": null, - "tramps": null, - "trampers": null, - "tramping": null, - "tramway": [["M"]], - "tramway's": null, - "trance": [["M", "G", "S", "D"]], - "trance's": null, - "trancing": null, - "trances": null, - "tranced": null, - "tranche": [["S", "M"]], - "tranches": null, - "tranche's": null, - "Tran": [["M"]], - "Tran's": null, - "tranquility": [["S"]], - "tranquilities": null, - "tranquilized": [["U"]], - "untranquilized": null, - "tranquilize": [["J", "G", "Z", "D", "S", "R"]], - "tranquilizings": null, - "tranquilizing": [["Y", "M"]], - "tranquilizers": null, - "tranquilizes": [["A"]], - "tranquilizer": [["M"]], - "tranquilizer's": null, - "retranquilizes": null, - "tranquilizingly": null, - "tranquilizing's": null, - "tranquillize": [["G", "R", "S", "D", "Z"]], - "tranquillizing": null, - "tranquillizer": [["M"]], - "tranquillizes": null, - "tranquillized": null, - "tranquillizers": null, - "tranquillizer's": null, - "tranquilness": [["M"]], - "tranquilness's": null, - "tranquil": [["P", "T", "R", "Y"]], - "tranquilest": null, - "tranquiler": null, - "tranquilly": null, - "transact": [["G", "S", "D"]], - "transacting": null, - "transacts": null, - "transacted": null, - "transactional": null, - "transaction": [["M", "S"]], - "transaction's": null, - "transactions": null, - "transactor": [["S", "M"]], - "transactors": null, - "transactor's": null, - "transalpine": null, - "transaminase": null, - "transatlantic": null, - "Transcaucasia": [["M"]], - "Transcaucasia's": null, - "transceiver": [["S", "M"]], - "transceivers": null, - "transceiver's": null, - "transcendence": [["M", "S"]], - "transcendence's": null, - "transcendences": null, - "transcendentalism": [["S", "M"]], - "transcendentalisms": null, - "transcendentalism's": null, - "transcendentalist": [["S", "M"]], - "transcendentalists": null, - "transcendentalist's": null, - "transcendental": [["Y", "S"]], - "transcendentally": null, - "transcendentals": null, - "transcendent": [["Y"]], - "transcendently": null, - "transcend": [["S", "D", "G"]], - "transcends": null, - "transcended": null, - "transcending": null, - "transconductance": null, - "transcontinental": null, - "transcribe": [["D", "S", "R", "G", "Z"]], - "transcribed": null, - "transcribes": null, - "transcriber": [["M"]], - "transcribing": null, - "transcribers": null, - "transcriber's": null, - "transcription": [["S", "M"]], - "transcriptions": null, - "transcription's": null, - "transcript": [["S", "M"]], - "transcripts": null, - "transcript's": null, - "transcultural": null, - "transducer": [["S", "M"]], - "transducers": null, - "transducer's": null, - "transduction": [["M"]], - "transduction's": null, - "transect": [["D", "S", "G"]], - "transected": null, - "transects": null, - "transecting": null, - "transept": [["S", "M"]], - "transepts": null, - "transept's": null, - "transferability": [["M"]], - "transferability's": null, - "transferal": [["M", "S"]], - "transferal's": null, - "transferals": null, - "transfer": [["B", "S", "M", "D"]], - "transferable": null, - "transfers": null, - "transfer's": null, - "transfered": null, - "transferee": [["M"]], - "transferee's": null, - "transference": [["S", "M"]], - "transferences": null, - "transference's": null, - "transferor": [["M", "S"]], - "transferor's": null, - "transferors": null, - "transferral": [["S", "M"]], - "transferrals": null, - "transferral's": null, - "transferred": null, - "transferrer": [["S", "M"]], - "transferrers": null, - "transferrer's": null, - "transferring": null, - "transfiguration": [["S", "M"]], - "transfigurations": null, - "transfiguration's": null, - "transfigure": [["S", "D", "G"]], - "transfigures": null, - "transfigured": null, - "transfiguring": null, - "transfinite": [["Y"]], - "transfinitely": null, - "transfix": [["S", "D", "G"]], - "transfixes": null, - "transfixed": null, - "transfixing": null, - "transformational": null, - "transformation": [["M", "S"]], - "transformation's": null, - "transformations": null, - "transform": [["D", "R", "Z", "B", "S", "G"]], - "transformed": [["U"]], - "transformer": [["M"]], - "transformers": null, - "transformable": null, - "transforms": null, - "transforming": null, - "untransformed": null, - "transformer's": null, - "transfuse": [["X", "S", "D", "G", "N", "B"]], - "transfusions": null, - "transfuses": null, - "transfused": null, - "transfusing": null, - "transfusion": [["M"]], - "transfusable": null, - "transfusion's": null, - "transgression": [["S", "M"]], - "transgressions": null, - "transgression's": null, - "transgressor": [["S"]], - "transgressors": null, - "transgress": [["V", "G", "S", "D"]], - "transgressive": null, - "transgressing": null, - "transgresses": null, - "transgressed": null, - "trans": [["I"]], - "intrans": null, - "transience": [["S", "M"]], - "transiences": null, - "transience's": null, - "transiency": [["S"]], - "transiencies": null, - "transient": [["Y", "S"]], - "transiently": null, - "transients": null, - "transistorize": [["G", "D", "S"]], - "transistorizing": null, - "transistorized": null, - "transistorizes": null, - "transistor": [["S", "M"]], - "transistors": null, - "transistor's": null, - "Transite": [["M"]], - "Transite's": null, - "transitional": [["Y"]], - "transitionally": null, - "transition": [["M", "D", "G", "S"]], - "transition's": null, - "transitioned": null, - "transitioning": null, - "transitions": null, - "transitivenesses": null, - "transitiveness": [["I", "M"]], - "intransitiveness": null, - "intransitiveness's": null, - "transitiveness's": null, - "transitive": [["P", "I", "Y"]], - "intransitively": null, - "transitively": null, - "transitivity": [["M", "S"]], - "transitivity's": null, - "transitivities": null, - "transitoriness": [["M"]], - "transitoriness's": null, - "transitory": [["P"]], - "transit": [["S", "G", "V", "M", "D"]], - "transits": null, - "transiting": null, - "transit's": null, - "transited": null, - "transl": null, - "translatability": [["M"]], - "translatability's": null, - "translatable": [["U"]], - "untranslatable": null, - "translated": [["A", "U"]], - "retranslated": null, - "untranslated": null, - "translate": [["V", "G", "N", "X", "S", "D", "B"]], - "translative": null, - "translating": null, - "translation": [["M"]], - "translations": null, - "translates": null, - "translational": null, - "translation's": null, - "translator": [["S", "M"]], - "translators": null, - "translator's": null, - "transliterate": [["X", "N", "G", "S", "D"]], - "transliterations": null, - "transliteration": null, - "transliterating": null, - "transliterates": null, - "transliterated": null, - "translucence": [["S", "M"]], - "translucences": null, - "translucence's": null, - "translucency": [["M", "S"]], - "translucency's": null, - "translucencies": null, - "translucent": [["Y"]], - "translucently": null, - "transmigrate": [["X", "N", "G", "S", "D"]], - "transmigrations": null, - "transmigration": null, - "transmigrating": null, - "transmigrates": null, - "transmigrated": null, - "transmissible": null, - "transmission": [["M", "S", "A"]], - "transmission's": null, - "retransmission's": null, - "transmissions": null, - "retransmissions": null, - "retransmission": null, - "transmissive": null, - "transmit": [["A", "S"]], - "retransmit": null, - "retransmits": null, - "transmits": null, - "transmittable": null, - "transmittal": [["S", "M"]], - "transmittals": null, - "transmittal's": null, - "transmittance": [["M", "S"]], - "transmittance's": null, - "transmittances": null, - "transmitted": [["A"]], - "retransmitted": null, - "transmitter": [["S", "M"]], - "transmitters": null, - "transmitter's": null, - "transmitting": [["A"]], - "retransmitting": null, - "transmogrification": [["M"]], - "transmogrification's": null, - "transmogrify": [["G", "X", "D", "S", "N"]], - "transmogrifying": null, - "transmogrifications": null, - "transmogrified": null, - "transmogrifies": null, - "transmutation": [["S", "M"]], - "transmutations": null, - "transmutation's": null, - "transmute": [["G", "B", "S", "D"]], - "transmuting": null, - "transmutable": null, - "transmutes": null, - "transmuted": null, - "transnational": [["S"]], - "transnationals": null, - "transoceanic": null, - "transom": [["S", "M"]], - "transoms": null, - "transom's": null, - "transonic": null, - "transpacific": null, - "transparency": [["M", "S"]], - "transparency's": null, - "transparencies": null, - "transparentness": [["M"]], - "transparentness's": null, - "transparent": [["Y", "P"]], - "transparently": null, - "transpiration": [["S", "M"]], - "transpirations": null, - "transpiration's": null, - "transpire": [["G", "S", "D"]], - "transpiring": null, - "transpires": null, - "transpired": null, - "transplantation": [["S"]], - "transplantations": null, - "transplant": [["G", "R", "D", "B", "S"]], - "transplanting": null, - "transplanter": null, - "transplanted": null, - "transplantable": null, - "transplants": null, - "transpolar": null, - "transponder": [["M", "S"]], - "transponder's": null, - "transponders": null, - "transportability": null, - "transportable": [["U"]], - "untransportable": null, - "transportation": [["S", "M"]], - "transportations": null, - "transportation's": null, - "transport": [["B", "G", "Z", "S", "D", "R"]], - "transporting": null, - "transporters": null, - "transports": null, - "transported": null, - "transporter": null, - "transpose": [["B", "G", "S", "D"]], - "transposable": null, - "transposing": null, - "transposes": null, - "transposed": [["U"]], - "untransposed": null, - "transposition": [["S", "M"]], - "transpositions": null, - "transposition's": null, - "Transputer": [["M"]], - "Transputer's": null, - "transsexualism": [["M", "S"]], - "transsexualism's": null, - "transsexualisms": null, - "transsexual": [["S", "M"]], - "transsexuals": null, - "transsexual's": null, - "transship": [["L", "S"]], - "transshipment": [["S", "M"]], - "transships": null, - "transshipments": null, - "transshipment's": null, - "transshipped": null, - "transshipping": null, - "transubstantiation": [["M", "S"]], - "transubstantiation's": null, - "transubstantiations": null, - "Transvaal": [["M"]], - "Transvaal's": null, - "transversal": [["Y", "M"]], - "transversally": null, - "transversal's": null, - "transverse": [["G", "Y", "D", "S"]], - "transversing": null, - "transversely": null, - "transversed": null, - "transverses": null, - "transvestism": [["S", "M"]], - "transvestisms": null, - "transvestism's": null, - "transvestite": [["S", "M"]], - "transvestites": null, - "transvestite's": null, - "transvestitism": null, - "Transylvania": [["M"]], - "Transylvania's": null, - "trapdoor": [["S"]], - "trapdoors": null, - "trapeze": [["D", "S", "G", "M"]], - "trapezed": null, - "trapezes": null, - "trapezing": null, - "trapeze's": null, - "trapezium": [["M", "S"]], - "trapezium's": null, - "trapeziums": null, - "trapezoidal": null, - "trapezoid": [["M", "S"]], - "trapezoid's": null, - "trapezoids": null, - "trap": [["M", "S"]], - "trap's": null, - "traps": null, - "trappable": [["U"]], - "untrappable": null, - "trapped": null, - "trapper": [["S", "M"]], - "trappers": null, - "trapper's": null, - "trapping": [["S"]], - "trappings": null, - "Trappist": [["M", "S"]], - "Trappist's": null, - "Trappists": null, - "trapshooting": [["S", "M"]], - "trapshootings": null, - "trapshooting's": null, - "trashcan": [["S", "M"]], - "trashcans": null, - "trashcan's": null, - "trashiness": [["S", "M"]], - "trashinesses": null, - "trashiness's": null, - "trash": [["S", "R", "D", "M", "G"]], - "trashes": null, - "trasher": null, - "trashed": null, - "trash's": null, - "trashing": null, - "trashy": [["T", "R", "P"]], - "trashiest": null, - "trashier": null, - "Trastevere": [["M"]], - "Trastevere's": null, - "trauma": [["M", "S"]], - "trauma's": null, - "traumas": null, - "traumatic": null, - "traumatically": null, - "traumatize": [["S", "D", "G"]], - "traumatizes": null, - "traumatized": null, - "traumatizing": null, - "travail": [["S", "M", "D", "G"]], - "travails": null, - "travail's": null, - "travailed": null, - "travailing": null, - "traveled": [["U"]], - "untraveled": null, - "traveler": [["M"]], - "traveler's": null, - "travelog's": null, - "travelogue": [["S"]], - "travelogues": null, - "travel": [["S", "D", "R", "G", "Z", "J"]], - "travels": null, - "traveling": null, - "travelers": null, - "travelings": null, - "Traver": [["M", "S"]], - "Traver's": null, - "Travers": null, - "traversal": [["S", "M"]], - "traversals": null, - "traversal's": null, - "traverse": [["G", "B", "D", "R", "S"]], - "traversing": null, - "traversable": null, - "traversed": null, - "traverser": [["M"]], - "traverses": null, - "traverser's": null, - "travertine": [["M"]], - "travertine's": null, - "travesty": [["S", "D", "G", "M"]], - "travesties": null, - "travestied": null, - "travestying": null, - "travesty's": null, - "Travis": [["M"]], - "Travis's": null, - "Travus": [["M"]], - "Travus's": null, - "trawler": [["M"]], - "trawler's": null, - "trawl": [["R", "D", "M", "S", "Z", "G"]], - "trawled": null, - "trawl's": null, - "trawls": null, - "trawlers": null, - "trawling": null, - "tray": [["S", "M"]], - "trays": null, - "tray's": null, - "treacherousness": [["S", "M"]], - "treacherousnesses": null, - "treacherousness's": null, - "treacherous": [["P", "Y"]], - "treacherously": null, - "treachery": [["S", "M"]], - "treacheries": null, - "treachery's": null, - "treacle": [["D", "S", "G", "M"]], - "treacled": null, - "treacles": null, - "treacling": null, - "treacle's": null, - "treacly": null, - "treader": [["M"]], - "treader's": null, - "treadle": [["G", "D", "S", "M"]], - "treadling": null, - "treadled": null, - "treadles": null, - "treadle's": null, - "treadmill": [["M", "S"]], - "treadmill's": null, - "treadmills": null, - "tread": [["S", "A", "G", "D"]], - "treads": null, - "retreads": null, - "retread": null, - "retreading": null, - "retreaded": null, - "treading": null, - "treaded": null, - "Treadwell": [["M"]], - "Treadwell's": null, - "treas": null, - "treason": [["B", "M", "S"]], - "treasonable": null, - "treason's": null, - "treasons": null, - "treasonous": null, - "treasure": [["D", "R", "S", "Z", "M", "G"]], - "treasured": null, - "treasurer": [["M"]], - "treasures": null, - "treasurers": null, - "treasure's": null, - "treasuring": null, - "treasurer's": null, - "treasurership": null, - "treasury": [["S", "M"]], - "treasuries": null, - "treasury's": null, - "Treasury": [["S", "M"]], - "Treasuries": null, - "Treasury's": null, - "treatable": null, - "treated": [["U"]], - "untreated": null, - "treater": [["S"]], - "treaters": null, - "treatise": [["M", "S"]], - "treatise's": null, - "treatises": null, - "treatment": [["M", "S"]], - "treatment's": null, - "treatments": null, - "treat's": null, - "treat": [["S", "A", "G", "D", "R"]], - "treats": null, - "retreats": null, - "retreat": null, - "retreating": null, - "retreated": null, - "retreater": null, - "treating": null, - "treaty": [["M", "S"]], - "treaty's": null, - "treaties": null, - "treble": [["S", "D", "G"]], - "trebles": null, - "trebled": null, - "trebling": null, - "Treblinka": [["M"]], - "Treblinka's": null, - "treeing": null, - "treeless": null, - "treelike": null, - "tree": [["M", "D", "S"]], - "tree's": null, - "treed": null, - "trees": null, - "treetop": [["S", "M"]], - "treetops": null, - "treetop's": null, - "trefoil": [["S", "M"]], - "trefoils": null, - "trefoil's": null, - "Trefor": [["M"]], - "Trefor's": null, - "trekked": null, - "trekker": [["M", "S"]], - "trekker's": null, - "trekkers": null, - "Trekkie": [["M"]], - "Trekkie's": null, - "trekking": null, - "trek": [["M", "S"]], - "trek's": null, - "treks": null, - "trellis": [["G", "D", "S", "M"]], - "trellising": null, - "trellised": null, - "trellises": null, - "trellis's": null, - "Tremaine": [["M"]], - "Tremaine's": null, - "Tremain": [["M"]], - "Tremain's": null, - "trematode": [["S", "M"]], - "trematodes": null, - "trematode's": null, - "Tremayne": [["M"]], - "Tremayne's": null, - "tremble": [["J", "D", "R", "S", "G"]], - "tremblings": null, - "trembled": null, - "trembler": [["M"]], - "trembles": [["M"]], - "trembling": null, - "trembler's": null, - "trembles's": null, - "trembly": null, - "tremendousness": [["M"]], - "tremendousness's": null, - "tremendous": [["Y", "P"]], - "tremendously": null, - "tremolo": [["M", "S"]], - "tremolo's": null, - "tremolos": null, - "tremor": [["M", "S"]], - "tremor's": null, - "tremors": null, - "tremulousness": [["S", "M"]], - "tremulousnesses": null, - "tremulousness's": null, - "tremulous": [["Y", "P"]], - "tremulously": null, - "trenchancy": [["M", "S"]], - "trenchancy's": null, - "trenchancies": null, - "trenchant": [["Y"]], - "trenchantly": null, - "trencherman": [["M"]], - "trencherman's": null, - "trenchermen": null, - "trencher": [["S", "M"]], - "trenchers": null, - "trencher's": null, - "trench": [["G", "A", "S", "D"]], - "trenching": null, - "retrenching": null, - "retrenches": null, - "retrenched": null, - "trenches": null, - "trenched": null, - "trench's": null, - "trendily": null, - "trendiness": [["S"]], - "trendinesses": null, - "trend": [["S", "D", "M", "G"]], - "trends": null, - "trended": null, - "trend's": null, - "trending": null, - "trendy": [["P", "T", "R", "S"]], - "trendiest": null, - "trendier": null, - "trendies": null, - "Trenna": [["M"]], - "Trenna's": null, - "Trent": [["M"]], - "Trent's": null, - "Trenton": [["M"]], - "Trenton's": null, - "trepanned": null, - "trepidation": [["M", "S"]], - "trepidation's": null, - "trepidations": null, - "Tresa": [["M"]], - "Tresa's": null, - "Trescha": [["M"]], - "Trescha's": null, - "trespasser": [["M"]], - "trespasser's": null, - "trespass": [["Z", "R", "S", "D", "G"]], - "trespassers": null, - "trespasses": null, - "trespassed": null, - "trespassing": null, - "Tressa": [["M"]], - "Tressa's": null, - "tressed": [["E"]], - "distressed": null, - "tresses": [["E"]], - "distresses": null, - "tressing": [["E"]], - "tress": [["M", "S", "D", "G"]], - "tress's": null, - "trestle": [["M", "S"]], - "trestle's": null, - "trestles": null, - "Trevar": [["M"]], - "Trevar's": null, - "Trevelyan": [["M"]], - "Trevelyan's": null, - "Trever": [["M"]], - "Trever's": null, - "Trevino": [["M"]], - "Trevino's": null, - "Trevor": [["M"]], - "Trevor's": null, - "Trev": [["R", "M"]], - "Trev's": null, - "Trey": [["M"]], - "Trey's": null, - "trey": [["M", "S"]], - "trey's": null, - "treys": null, - "triableness": [["M"]], - "triableness's": null, - "triable": [["P"]], - "triadic": null, - "triad": [["M", "S"]], - "triad's": null, - "triads": null, - "triage": [["S", "D", "M", "G"]], - "triages": null, - "triaged": null, - "triage's": null, - "triaging": null, - "trial": [["A", "S", "M"]], - "retrial": null, - "retrials": null, - "retrial's": null, - "trials": null, - "trial's": null, - "trialization": null, - "trialled": null, - "trialling": null, - "triamcinolone": null, - "triangle": [["S", "M"]], - "triangles": null, - "triangle's": null, - "triangulable": null, - "triangularization": [["S"]], - "triangularizations": null, - "triangular": [["Y"]], - "triangularly": null, - "triangulate": [["Y", "G", "N", "X", "S", "D"]], - "triangulately": null, - "triangulating": null, - "triangulation": [["M"]], - "triangulations": null, - "triangulates": null, - "triangulated": null, - "triangulation's": null, - "Triangulum": [["M"]], - "Triangulum's": null, - "Trianon": [["M"]], - "Trianon's": null, - "Triassic": null, - "triathlon": [["S"]], - "triathlons": null, - "triatomic": null, - "tribalism": [["M", "S"]], - "tribalism's": null, - "tribalisms": null, - "tribal": [["Y"]], - "tribally": null, - "tribe": [["M", "S"]], - "tribe's": null, - "tribes": null, - "tribesman": [["M"]], - "tribesman's": null, - "tribesmen": null, - "tribeswoman": null, - "tribeswomen": null, - "tribulate": [["N", "X"]], - "tribulation": [["M"]], - "tribulations": null, - "tribulation's": null, - "tribunal": [["M", "S"]], - "tribunal's": null, - "tribunals": null, - "tribune": [["S", "M"]], - "tribunes": null, - "tribune's": null, - "tributary": [["M", "S"]], - "tributary's": null, - "tributaries": null, - "tribute": [["E", "G", "S", "F"]], - "tributing": null, - "contributing": null, - "tributes": null, - "contributes": null, - "tribute's": null, - "trice": [["G", "S", "D", "M"]], - "tricing": null, - "trices": null, - "triced": null, - "trice's": null, - "tricentennial": [["S"]], - "tricentennials": null, - "triceps": [["S", "M"]], - "tricepses": null, - "triceps's": null, - "triceratops": [["M"]], - "triceratops's": null, - "trichinae": null, - "trichina": [["M"]], - "trichina's": null, - "trichinoses": null, - "trichinosis": [["M"]], - "trichinosis's": null, - "trichloroacetic": null, - "trichloroethane": null, - "trichotomy": [["M"]], - "trichotomy's": null, - "trichromatic": null, - "Tricia": [["M"]], - "Tricia's": null, - "trickery": [["M", "S"]], - "trickery's": null, - "trickeries": null, - "trick": [["G", "M", "S", "R", "D"]], - "tricking": null, - "trick's": null, - "tricks": null, - "tricker": null, - "tricked": null, - "trickily": null, - "trickiness": [["S", "M"]], - "trickinesses": null, - "trickiness's": null, - "trickle": [["D", "S", "G"]], - "trickled": null, - "trickles": null, - "trickling": null, - "trickster": [["M", "S"]], - "trickster's": null, - "tricksters": null, - "tricky": [["R", "P", "T"]], - "trickier": null, - "trickiest": null, - "tricolor": [["S", "M", "D"]], - "tricolors": null, - "tricolor's": null, - "tricolored": null, - "tricycle": [["S", "D", "M", "G"]], - "tricycles": null, - "tricycled": null, - "tricycle's": null, - "tricycling": null, - "trident": [["S", "M"]], - "tridents": null, - "trident's": null, - "tridiagonal": null, - "tried": [["U", "A"]], - "untried": null, - "retried": null, - "triennial": [["S", "Y"]], - "triennials": null, - "triennially": null, - "trier": [["A", "S"]], - "retrier": null, - "retriers": null, - "triers": null, - "trier's": null, - "tries": [["A"]], - "retries": null, - "Trieste": [["M"]], - "Trieste's": null, - "triffid": [["S"]], - "triffids": null, - "trifle": [["M", "Z", "G", "J", "S", "R", "D"]], - "trifle's": null, - "triflers": null, - "trifling": null, - "triflings": null, - "trifles": null, - "trifler": [["M"]], - "trifled": null, - "trifler's": null, - "trifluoride": [["M"]], - "trifluoride's": null, - "trifocals": null, - "trigged": null, - "trigger": [["G", "S", "D", "M"]], - "triggering": null, - "triggers": null, - "triggered": null, - "trigger's": null, - "triggest": null, - "trigging": null, - "triglyceride": [["M", "S"]], - "triglyceride's": null, - "triglycerides": null, - "trigonal": [["Y"]], - "trigonally": null, - "trigonometric": null, - "trigonometrical": null, - "trigonometry": [["M", "S"]], - "trigonometry's": null, - "trigonometries": null, - "trigram": [["S"]], - "trigrams": null, - "trig": [["S"]], - "trigs": null, - "trihedral": null, - "trike": [["G", "M", "S", "D"]], - "triking": null, - "trike's": null, - "trikes": null, - "triked": null, - "trilateral": [["S"]], - "trilaterals": null, - "trilby": [["S", "M"]], - "trilbies": null, - "trilby's": null, - "trilingual": null, - "trillion": [["S", "M", "H"]], - "trillions": null, - "trillion's": null, - "trillionth": [["M"]], - "trillionth's": null, - "trillionths": null, - "trillium": [["S", "M"]], - "trilliums": null, - "trillium's": null, - "trill": [["R", "D", "M", "G", "S"]], - "triller": null, - "trilled": null, - "trill's": null, - "trilling": null, - "trills": null, - "trilobite": [["M", "S"]], - "trilobite's": null, - "trilobites": null, - "trilogy": [["M", "S"]], - "trilogy's": null, - "trilogies": null, - "trimaran": [["M", "S"]], - "trimaran's": null, - "trimarans": null, - "Trimble": [["M"]], - "Trimble's": null, - "trimer": [["M"]], - "trimer's": null, - "trimester": [["M", "S"]], - "trimester's": null, - "trimesters": null, - "trimmed": [["U"]], - "untrimmed": null, - "trimmer": [["M", "S"]], - "trimmer's": null, - "trimmers": null, - "trimmest": null, - "trimming": [["M", "S"]], - "trimming's": null, - "trimmings": null, - "trimness": [["S"]], - "trimnesses": null, - "trimodal": null, - "trimonthly": null, - "trim": [["P", "S", "Y", "R"]], - "trims": null, - "trimly": null, - "Trimurti": [["M"]], - "Trimurti's": null, - "Trina": [["M"]], - "Trina's": null, - "Trinidad": [["M"]], - "Trinidad's": null, - "trinitarian": [["S"]], - "trinitarians": null, - "trinitrotoluene": [["S", "M"]], - "trinitrotoluenes": null, - "trinitrotoluene's": null, - "trinity": [["M", "S"]], - "trinity's": null, - "trinities": null, - "Trinity": [["M", "S"]], - "Trinity's": null, - "Trinities": null, - "trinketer": [["M"]], - "trinketer's": null, - "trinket": [["M", "R", "D", "S", "G"]], - "trinket's": null, - "trinketed": null, - "trinkets": null, - "trinketing": null, - "triode": [["M", "S"]], - "triode's": null, - "triodes": null, - "trio": [["S", "M"]], - "trios": null, - "trio's": null, - "trioxide": [["M"]], - "trioxide's": null, - "tripartite": [["N"]], - "tripartition": [["M"]], - "tripartition's": null, - "tripe": [["M", "S"]], - "tripe's": null, - "tripes": null, - "triphenylarsine": null, - "triphenylphosphine": null, - "triphenylstibine": null, - "triphosphopyridine": null, - "triple": [["G", "S", "D"]], - "tripling": null, - "triples": null, - "tripled": null, - "triplet": [["S", "M"]], - "triplets": null, - "triplet's": null, - "triplex": [["S"]], - "triplexes": null, - "triplicate": [["S", "D", "G"]], - "triplicates": null, - "triplicated": null, - "triplicating": null, - "triplication": [["M"]], - "triplication's": null, - "triply": [["G", "D", "S", "N"]], - "triplying": null, - "triplied": null, - "triplies": null, - "Trip": [["M"]], - "Trip's": null, - "tripodal": null, - "tripod": [["M", "S"]], - "tripod's": null, - "tripods": null, - "tripoli": [["M"]], - "tripoli's": null, - "Tripoli": [["M"]], - "Tripoli's": null, - "tripolyphosphate": null, - "tripos": [["S", "M"]], - "triposes": null, - "tripos's": null, - "tripped": null, - "Trippe": [["M"]], - "Trippe's": null, - "tripper": [["M", "S"]], - "tripper's": null, - "trippers": null, - "tripping": [["Y"]], - "trippingly": null, - "Tripp": [["M"]], - "Tripp's": null, - "trip": [["S", "M", "Y"]], - "trips": null, - "trip's": null, - "triptych": [["M"]], - "triptych's": null, - "triptychs": null, - "tripwire": [["M", "S"]], - "tripwire's": null, - "tripwires": null, - "trireme": [["S", "M"]], - "triremes": null, - "trireme's": null, - "Tris": null, - "trisect": [["G", "S", "D"]], - "trisecting": null, - "trisects": null, - "trisected": null, - "trisection": [["S"]], - "trisections": null, - "trisector": null, - "Trisha": [["M"]], - "Trisha's": null, - "Trish": [["M"]], - "Trish's": null, - "trisodium": null, - "Trista": [["M"]], - "Trista's": null, - "Tristam": [["M"]], - "Tristam's": null, - "Tristan": [["M"]], - "Tristan's": null, - "tristate": null, - "trisyllable": [["M"]], - "trisyllable's": null, - "tritely": [["F"]], - "contritely": null, - "triteness": [["S", "F"]], - "tritenesses": null, - "contritenesses": null, - "trite": [["S", "R", "P", "T", "Y"]], - "trites": null, - "triter": null, - "tritest": null, - "tritium": [["M", "S"]], - "tritium's": null, - "tritiums": null, - "triton": [["M"]], - "triton's": null, - "Triton": [["M"]], - "Triton's": null, - "triumphal": null, - "triumphalism": null, - "triumphant": [["Y"]], - "triumphantly": null, - "triumph": [["G", "M", "D"]], - "triumphing": null, - "triumph's": null, - "triumphed": null, - "triumphs": null, - "triumvirate": [["M", "S"]], - "triumvirate's": null, - "triumvirates": null, - "triumvir": [["M", "S"]], - "triumvir's": null, - "triumvirs": null, - "triune": null, - "trivalent": null, - "trivet": [["S", "M"]], - "trivets": null, - "trivet's": null, - "trivia": null, - "triviality": [["M", "S"]], - "triviality's": null, - "trivialities": null, - "trivialization": [["M", "S"]], - "trivialization's": null, - "trivializations": null, - "trivialize": [["D", "S", "G"]], - "trivialized": null, - "trivializes": null, - "trivializing": null, - "trivial": [["Y"]], - "trivially": null, - "trivium": [["M"]], - "trivium's": null, - "Trixie": [["M"]], - "Trixie's": null, - "Trixi": [["M"]], - "Trixi's": null, - "Trix": [["M"]], - "Trix's": null, - "Trixy": [["M"]], - "Trixy's": null, - "Trobriand": [["M"]], - "Trobriand's": null, - "trochaic": [["S"]], - "trochaics": null, - "trochee": [["S", "M"]], - "trochees": null, - "trochee's": null, - "trod": [["A", "U"]], - "retrod": null, - "untrod": null, - "trodden": [["U", "A"]], - "untrodden": null, - "retrodden": null, - "trodes": null, - "troff": [["M", "R"]], - "troff's": null, - "troffer": null, - "troglodyte": [["M", "S"]], - "troglodyte's": null, - "troglodytes": null, - "troika": [["S", "M"]], - "troikas": null, - "troika's": null, - "Trojan": [["M", "S"]], - "Trojan's": null, - "Trojans": null, - "troll": [["D", "M", "S", "G"]], - "trolled": [["F"]], - "troll's": null, - "trolls": null, - "trolling": [["F"]], - "trolleybus": [["S"]], - "trolleybuses": null, - "trolley": [["S", "G", "M", "D"]], - "trolleys": null, - "trolleying": null, - "trolley's": null, - "trolleyed": null, - "trollish": null, - "Trollope": [["M"]], - "Trollope's": null, - "trollop": [["G", "S", "M", "D"]], - "trolloping": null, - "trollops": null, - "trollop's": null, - "trolloped": null, - "trolly's": null, - "trombone": [["M", "S"]], - "trombone's": null, - "trombones": null, - "trombonist": [["S", "M"]], - "trombonists": null, - "trombonist's": null, - "tromp": [["D", "S", "G"]], - "tromped": null, - "tromps": null, - "tromping": null, - "Trondheim": [["M"]], - "Trondheim's": null, - "trooper": [["M"]], - "trooper's": null, - "troopship": [["S", "M"]], - "troopships": null, - "troopship's": null, - "troop": [["S", "R", "D", "M", "Z", "G"]], - "troops": null, - "trooped": null, - "troop's": null, - "troopers": null, - "trooping": null, - "trope": [["S", "M"]], - "tropes": null, - "trope's": null, - "Tropez": [["M"]], - "Tropez's": null, - "trophic": null, - "trophy": [["M", "G", "D", "S"]], - "trophy's": null, - "trophying": null, - "trophied": null, - "trophies": null, - "tropical": [["S", "Y"]], - "tropicals": null, - "tropically": null, - "tropic": [["M", "S"]], - "tropic's": null, - "tropics": null, - "tropism": [["S", "M"]], - "tropisms": null, - "tropism's": null, - "tropocollagen": null, - "troposphere": [["M", "S"]], - "troposphere's": null, - "tropospheres": null, - "tropospheric": null, - "troth": [["G", "D", "M"]], - "trothing": null, - "trothed": null, - "troth's": null, - "troths": null, - "trot": [["S"]], - "trots": null, - "Trotsky": [["M"]], - "Trotsky's": null, - "trotted": null, - "trotter": [["S", "M"]], - "trotters": null, - "trotter's": null, - "trotting": null, - "troubadour": [["S", "M"]], - "troubadours": null, - "troubadour's": null, - "troubled": [["U"]], - "untroubled": null, - "trouble": [["G", "D", "R", "S", "M"]], - "troubling": null, - "troubler": [["M"]], - "troubles": null, - "trouble's": null, - "troublemaker": [["M", "S"]], - "troublemaker's": null, - "troublemakers": null, - "troubler's": null, - "troubleshooter": [["M"]], - "troubleshooter's": null, - "troubleshoot": [["S", "R", "D", "Z", "G"]], - "troubleshoots": null, - "troubleshooted": null, - "troubleshooters": null, - "troubleshooting": null, - "troubleshot": null, - "troublesomeness": [["M"]], - "troublesomeness's": null, - "troublesome": [["Y", "P"]], - "troublesomely": null, - "trough": [["M"]], - "trough's": null, - "troughs": null, - "trounce": [["G", "Z", "D", "R", "S"]], - "trouncing": null, - "trouncers": null, - "trounced": null, - "trouncer": [["M"]], - "trounces": null, - "trouncer's": null, - "troupe": [["M", "Z", "G", "S", "R", "D"]], - "troupe's": null, - "troupers": null, - "trouping": null, - "troupes": null, - "trouper": [["M"]], - "trouped": null, - "trouper's": null, - "trouser": [["D", "M", "G", "S"]], - "trousered": null, - "trouser's": null, - "trousering": null, - "trousers": null, - "trousseau": [["M"]], - "trousseau's": null, - "trousseaux": null, - "Troutman": [["M"]], - "Troutman's": null, - "trout": [["S", "M"]], - "trouts": null, - "trout's": null, - "trove": [["S", "M"]], - "troves": null, - "trove's": null, - "troweler": [["M"]], - "troweler's": null, - "trowel": [["S", "M", "D", "R", "G", "Z"]], - "trowels": null, - "trowel's": null, - "troweled": null, - "troweling": null, - "trowelers": null, - "trow": [["S", "G", "D"]], - "trows": null, - "trowing": null, - "trowed": null, - "Troyes": null, - "Troy": [["M"]], - "Troy's": null, - "troy": [["S"]], - "troys": null, - "Trstram": [["M"]], - "Trstram's": null, - "truancy": [["M", "S"]], - "truancy's": null, - "truancies": null, - "truant": [["S", "M", "D", "G"]], - "truants": null, - "truant's": null, - "truanted": null, - "truanting": null, - "truce": [["S", "D", "G", "M"]], - "truces": null, - "truced": null, - "trucing": null, - "truce's": null, - "Truckee": [["M"]], - "Truckee's": null, - "trucker": [["M"]], - "trucker's": null, - "trucking": [["M"]], - "trucking's": null, - "truckle": [["G", "D", "S"]], - "truckling": null, - "truckled": null, - "truckles": null, - "truckload": [["M", "S"]], - "truckload's": null, - "truckloads": null, - "truck": [["S", "Z", "G", "M", "R", "D", "J"]], - "trucks": null, - "truckers": null, - "truck's": null, - "trucked": null, - "truckings": null, - "truculence": [["S", "M"]], - "truculences": null, - "truculence's": null, - "truculent": [["Y"]], - "truculently": null, - "Truda": [["M"]], - "Truda's": null, - "Trudeau": [["M"]], - "Trudeau's": null, - "Trude": [["M"]], - "Trude's": null, - "Trudey": [["M"]], - "Trudey's": null, - "trudge": [["S", "R", "D", "G"]], - "trudges": null, - "trudger": null, - "trudged": null, - "trudging": null, - "Trudie": [["M"]], - "Trudie's": null, - "Trudi": [["M"]], - "Trudi's": null, - "Trudy": [["M"]], - "Trudy's": null, - "true": [["D", "R", "S", "P", "T", "G"]], - "trued": null, - "truer": [["U"]], - "trues": null, - "trueness": [["M"]], - "truest": [["U"]], - "truing": null, - "truelove": [["M", "S"]], - "truelove's": null, - "trueloves": null, - "Trueman": [["M"]], - "Trueman's": null, - "trueness's": null, - "untruer": null, - "untruest": null, - "truffle": [["M", "S"]], - "truffle's": null, - "truffles": null, - "truism": [["S", "M"]], - "truisms": null, - "truism's": null, - "Trujillo": [["M"]], - "Trujillo's": null, - "Trula": [["M"]], - "Trula's": null, - "truly": [["U"]], - "untruly": null, - "Trumaine": [["M"]], - "Trumaine's": null, - "Truman": [["M"]], - "Truman's": null, - "Trumann": [["M"]], - "Trumann's": null, - "Trumbull": [["M"]], - "Trumbull's": null, - "trump": [["D", "M", "S", "G"]], - "trumped": null, - "trump's": null, - "trumps": null, - "trumping": null, - "trumpery": [["S", "M"]], - "trumperies": null, - "trumpery's": null, - "trumpeter": [["M"]], - "trumpeter's": null, - "trumpet": [["M", "D", "R", "Z", "G", "S"]], - "trumpet's": null, - "trumpeted": null, - "trumpeters": null, - "trumpeting": null, - "trumpets": null, - "Trump": [["M"]], - "Trump's": null, - "truncate": [["N", "G", "D", "S", "X"]], - "truncation": [["M"]], - "truncating": null, - "truncated": null, - "truncates": null, - "truncations": null, - "truncation's": null, - "truncheon": [["M", "D", "S", "G"]], - "truncheon's": null, - "truncheoned": null, - "truncheons": null, - "truncheoning": null, - "trundle": [["G", "Z", "D", "S", "R"]], - "trundling": null, - "trundlers": null, - "trundled": null, - "trundles": null, - "trundler": [["M"]], - "trundler's": null, - "trunk": [["G", "S", "M", "D"]], - "trunking": null, - "trunks": null, - "trunk's": null, - "trunked": null, - "trunnion": [["S", "M"]], - "trunnions": null, - "trunnion's": null, - "trusser": [["M"]], - "trusser's": null, - "trussing": [["M"]], - "trussing's": null, - "truss": [["S", "R", "D", "G"]], - "trusses": null, - "trussed": null, - "trusted": [["E", "U"]], - "distrusted": null, - "untrusted": null, - "trusteeing": null, - "trustee": [["M", "D", "S"]], - "trustee's": null, - "trusteed": null, - "trustees": null, - "trusteeship": [["S", "M"]], - "trusteeships": null, - "trusteeship's": null, - "truster": [["M"]], - "truster's": null, - "trustful": [["E", "Y"]], - "distrustful": null, - "distrustfully": null, - "trustfully": null, - "trustfulness": [["S", "M"]], - "trustfulnesses": null, - "trustfulness's": null, - "trustiness": [["M"]], - "trustiness's": null, - "trusting": [["Y"]], - "trustingly": null, - "trust": [["R", "D", "M", "S", "G"]], - "trust's": null, - "trusts": [["E"]], - "distrusts": null, - "trustworthier": null, - "trustworthiest": null, - "trustworthiness": [["M", "S"]], - "trustworthiness's": null, - "trustworthinesses": null, - "trustworthy": [["U", "P"]], - "untrustworthy": null, - "untrustworthiness": null, - "trusty": [["P", "T", "M", "S", "R"]], - "trustiest": null, - "trusty's": null, - "trusties": null, - "trustier": null, - "Truth": null, - "truthfulness": [["U", "S"]], - "untruthfulness": [["M"]], - "untruthfulnesses": null, - "truthfulnesses": null, - "truthful": [["U", "Y", "P"]], - "untruthful": null, - "untruthfully": null, - "truthfully": null, - "truths": [["U"]], - "untruths": null, - "truth": [["U", "M"]], - "untruth": null, - "untruth's": null, - "truth's": null, - "TRW": null, - "trying": [["Y"]], - "tryingly": null, - "try": [["J", "G", "D", "R", "S", "Z"]], - "tryings": null, - "tryout": [["M", "S"]], - "tryout's": null, - "tryouts": null, - "trypsin": [["M"]], - "trypsin's": null, - "tryst": [["G", "D", "M", "S"]], - "trysting": null, - "trysted": null, - "tryst's": null, - "trysts": null, - "ts": null, - "T's": null, - "tsarevich": null, - "tsarina's": null, - "tsarism": [["M"]], - "tsarism's": null, - "tsarist": null, - "tsetse": [["S"]], - "tsetses": null, - "Tsimshian": [["M"]], - "Tsimshian's": null, - "Tsiolkovsky": [["M"]], - "Tsiolkovsky's": null, - "Tsitsihar": [["M"]], - "Tsitsihar's": null, - "tsp": null, - "tsunami": [["M", "S"]], - "tsunami's": null, - "tsunamis": null, - "Tsunematsu": [["M"]], - "Tsunematsu's": null, - "Tswana": [["M"]], - "Tswana's": null, - "TTL": null, - "tty": [["M"]], - "tty's": null, - "ttys": null, - "Tuamotu": [["M"]], - "Tuamotu's": null, - "Tuareg": [["M"]], - "Tuareg's": null, - "tubae": null, - "tubal": null, - "tuba": [["S", "M"]], - "tubas": null, - "tuba's": null, - "tubbed": null, - "tubbing": null, - "tubby": [["T", "R"]], - "tubbiest": null, - "tubbier": null, - "tubeless": null, - "tubercle": [["M", "S"]], - "tubercle's": null, - "tubercles": null, - "tubercular": [["S"]], - "tuberculars": null, - "tuberculin": [["M", "S"]], - "tuberculin's": null, - "tuberculins": null, - "tuberculoses": null, - "tuberculosis": [["M"]], - "tuberculosis's": null, - "tuberculous": null, - "tuber": [["M"]], - "tuber's": null, - "tuberose": [["S", "M"]], - "tuberoses": null, - "tuberose's": null, - "tuberous": null, - "tube": [["S", "M"]], - "tubes": null, - "tube's": null, - "tubing": [["M"]], - "tubing's": null, - "tub": [["J", "M", "D", "R", "S", "Z", "G"]], - "tubings": null, - "tub's": null, - "tubed": null, - "tubs": null, - "tubers": null, - "Tubman": [["M"]], - "Tubman's": null, - "tubular": [["Y"]], - "tubularly": null, - "tubule": [["S", "M"]], - "tubules": null, - "tubule's": null, - "tucker": [["G", "D", "M"]], - "tuckering": null, - "tuckered": null, - "tucker's": null, - "Tucker": [["M"]], - "Tucker's": null, - "tuck": [["G", "Z", "S", "R", "D"]], - "tucking": null, - "tuckers": null, - "tucks": null, - "tucked": null, - "Tuckie": [["M"]], - "Tuckie's": null, - "Tuck": [["R", "M"]], - "Tuck's": null, - "Tucky": [["M"]], - "Tucky's": null, - "Tucson": [["M"]], - "Tucson's": null, - "Tucuman": [["M"]], - "Tucuman's": null, - "Tudor": [["M", "S"]], - "Tudor's": null, - "Tudors": null, - "Tue": [["S"]], - "Tues": null, - "Tuesday": [["S", "M"]], - "Tuesdays": null, - "Tuesday's": null, - "tufter": [["M"]], - "tufter's": null, - "tuft": [["G", "Z", "S", "M", "R", "D"]], - "tufting": [["M"]], - "tufters": null, - "tufts": null, - "tuft's": null, - "tufted": null, - "tufting's": null, - "tugboat": [["M", "S"]], - "tugboat's": null, - "tugboats": null, - "tugged": null, - "tugging": null, - "tug": [["S"]], - "tugs": null, - "tuition": [["I", "S", "M"]], - "intuition": null, - "intuitions": null, - "intuition's": null, - "tuitions": null, - "tuition's": null, - "Tulane": [["M"]], - "Tulane's": null, - "tularemia": [["S"]], - "tularemias": null, - "tulip": [["S", "M"]], - "tulips": null, - "tulip's": null, - "tulle": [["S", "M"]], - "tulles": null, - "tulle's": null, - "Tulley": [["M"]], - "Tulley's": null, - "Tull": [["M"]], - "Tull's": null, - "Tully": [["M"]], - "Tully's": null, - "Tulsa": [["M"]], - "Tulsa's": null, - "tum": null, - "tumbledown": null, - "tumbler": [["M"]], - "tumbler's": null, - "tumbleweed": [["M", "S"]], - "tumbleweed's": null, - "tumbleweeds": null, - "tumble": [["Z", "G", "R", "S", "D", "J"]], - "tumblers": null, - "tumbling": null, - "tumbles": null, - "tumbled": null, - "tumblings": null, - "tumbrel": [["S", "M"]], - "tumbrels": null, - "tumbrel's": null, - "tumescence": [["S"]], - "tumescences": null, - "tumescent": null, - "tumidity": [["M", "S"]], - "tumidity's": null, - "tumidities": null, - "tumid": [["Y"]], - "tumidly": null, - "tummy": [["S", "M"]], - "tummies": null, - "tummy's": null, - "tumor": [["M", "D", "S"]], - "tumor's": null, - "tumored": null, - "tumors": null, - "tumorous": null, - "Tums": [["M"]], - "Tums's": null, - "tumult": [["S", "G", "M", "D"]], - "tumults": null, - "tumulting": null, - "tumult's": null, - "tumulted": null, - "tumultuousness": [["M"]], - "tumultuousness's": null, - "tumultuous": [["P", "Y"]], - "tumultuously": null, - "tumulus": [["M"]], - "tumulus's": null, - "tunableness": [["M"]], - "tunableness's": null, - "tunable": [["P"]], - "tuna": [["S", "M"]], - "tunas": null, - "tuna's": null, - "tundra": [["S", "M"]], - "tundras": null, - "tundra's": null, - "tun": [["D", "R", "J", "Z", "G", "B", "S"]], - "tuned": null, - "tuner": [["M"]], - "tunings": null, - "tuners": null, - "tuning": [["A"]], - "tuns": null, - "tune": [["C", "S", "D", "G"]], - "detune": null, - "detunes": null, - "detuned": null, - "detuning": null, - "tunes": null, - "tunefulness": [["M", "S"]], - "tunefulness's": null, - "tunefulnesses": null, - "tuneful": [["Y", "P"]], - "tunefully": null, - "tuneless": [["Y"]], - "tunelessly": null, - "tuner's": null, - "tune's": null, - "tuneup": [["S"]], - "tuneups": null, - "tung": null, - "tungstate": [["M"]], - "tungstate's": null, - "tungsten": [["S", "M"]], - "tungstens": null, - "tungsten's": null, - "Tunguska": [["M"]], - "Tunguska's": null, - "Tungus": [["M"]], - "Tungus's": null, - "tunic": [["M", "S"]], - "tunic's": null, - "tunics": null, - "retuning": null, - "tuning's": null, - "Tunisia": [["M"]], - "Tunisia's": null, - "Tunisian": [["S"]], - "Tunisians": null, - "Tunis": [["M"]], - "Tunis's": null, - "tunned": null, - "tunneler": [["M"]], - "tunneler's": null, - "tunnel": [["M", "R", "D", "S", "J", "G", "Z"]], - "tunnel's": null, - "tunneled": null, - "tunnels": null, - "tunnelings": null, - "tunneling": null, - "tunnelers": null, - "tunning": null, - "tunny": [["S", "M"]], - "tunnies": null, - "tunny's": null, - "tupelo": [["M"]], - "tupelo's": null, - "Tupi": [["M"]], - "Tupi's": null, - "tuple": [["S", "M"]], - "tuples": null, - "tuple's": null, - "tuppence": [["M"]], - "tuppence's": null, - "Tupperware": null, - "Tupungato": [["M"]], - "Tupungato's": null, - "turban": [["S", "D", "M"]], - "turbans": null, - "turbaned": null, - "turban's": null, - "turbid": null, - "turbidity": [["S", "M"]], - "turbidities": null, - "turbidity's": null, - "turbinate": [["S", "D"]], - "turbinates": null, - "turbinated": null, - "turbine": [["S", "M"]], - "turbines": null, - "turbine's": null, - "turbocharged": null, - "turbocharger": [["S", "M"]], - "turbochargers": null, - "turbocharger's": null, - "turbofan": [["M", "S"]], - "turbofan's": null, - "turbofans": null, - "turbojet": [["M", "S"]], - "turbojet's": null, - "turbojets": null, - "turboprop": [["M", "S"]], - "turboprop's": null, - "turboprops": null, - "turbo": [["S", "M"]], - "turbos": null, - "turbo's": null, - "turbot": [["M", "S"]], - "turbot's": null, - "turbots": null, - "turbulence": [["S", "M"]], - "turbulences": null, - "turbulence's": null, - "turbulent": [["Y"]], - "turbulently": null, - "turd": [["M", "S"]], - "turd's": null, - "turds": null, - "tureen": [["M", "S"]], - "tureen's": null, - "tureens": null, - "turf": [["D", "G", "S", "M"]], - "turfed": null, - "turfing": null, - "turfs": null, - "turf's": null, - "turfy": [["R", "T"]], - "turfier": null, - "turfiest": null, - "Turgenev": [["M"]], - "Turgenev's": null, - "turgidity": [["S", "M"]], - "turgidities": null, - "turgidity's": null, - "turgidness": [["M"]], - "turgidness's": null, - "turgid": [["P", "Y"]], - "turgidly": null, - "Turing": [["M"]], - "Turing's": null, - "Turin": [["M"]], - "Turin's": null, - "Turkestan": [["M"]], - "Turkestan's": null, - "Turkey": [["M"]], - "Turkey's": null, - "turkey": [["S", "M"]], - "turkeys": null, - "turkey's": null, - "Turkic": [["S", "M"]], - "Turkics": null, - "Turkic's": null, - "Turkish": null, - "Turkmenistan": [["M"]], - "Turkmenistan's": null, - "turk": [["S"]], - "turks": null, - "Turk": [["S", "M"]], - "Turks": null, - "Turk's": null, - "turmeric": [["M", "S"]], - "turmeric's": null, - "turmerics": null, - "turmoil": [["S", "D", "M", "G"]], - "turmoils": null, - "turmoiled": null, - "turmoil's": null, - "turmoiling": null, - "turnabout": [["S", "M"]], - "turnabouts": null, - "turnabout's": null, - "turnaround": [["M", "S"]], - "turnaround's": null, - "turnarounds": null, - "turn": [["A", "Z", "G", "R", "D", "B", "S"]], - "return": null, - "returners": null, - "returning": null, - "returner": null, - "returns": null, - "turners": null, - "turning": [["M", "S"]], - "turner": [["M"]], - "turned": [["U"]], - "turnable": null, - "turns": null, - "turnbuckle": [["S", "M"]], - "turnbuckles": null, - "turnbuckle's": null, - "turncoat": [["S", "M"]], - "turncoats": null, - "turncoat's": null, - "unturned": null, - "turner's": null, - "Turner": [["M"]], - "Turner's": null, - "turning's": null, - "turnings": null, - "turnip": [["S", "M", "D", "G"]], - "turnips": null, - "turnip's": null, - "turniped": null, - "turniping": null, - "turnkey": [["M", "S"]], - "turnkey's": null, - "turnkeys": null, - "turnoff": [["M", "S"]], - "turnoff's": null, - "turnoffs": null, - "turnout": [["M", "S"]], - "turnout's": null, - "turnouts": null, - "turnover": [["S", "M"]], - "turnovers": null, - "turnover's": null, - "turnpike": [["M", "S"]], - "turnpike's": null, - "turnpikes": null, - "turnround": [["M", "S"]], - "turnround's": null, - "turnrounds": null, - "turnstile": [["S", "M"]], - "turnstiles": null, - "turnstile's": null, - "turnstone": [["M"]], - "turnstone's": null, - "turntable": [["S", "M"]], - "turntables": null, - "turntable's": null, - "turpentine": [["G", "M", "S", "D"]], - "turpentining": null, - "turpentine's": null, - "turpentines": null, - "turpentined": null, - "Turpin": [["M"]], - "Turpin's": null, - "turpitude": [["S", "M"]], - "turpitudes": null, - "turpitude's": null, - "turquoise": [["S", "M"]], - "turquoises": null, - "turquoise's": null, - "turret": [["S", "M", "D"]], - "turrets": null, - "turret's": null, - "turreted": null, - "turtleback": [["M", "S"]], - "turtleback's": null, - "turtlebacks": null, - "turtledove": [["M", "S"]], - "turtledove's": null, - "turtledoves": null, - "turtleneck": [["S", "D", "M"]], - "turtlenecks": null, - "turtlenecked": null, - "turtleneck's": null, - "turtle": [["S", "D", "M", "G"]], - "turtles": null, - "turtled": null, - "turtle's": null, - "turtling": null, - "turves's": null, - "turvy": null, - "Tuscaloosa": [["M"]], - "Tuscaloosa's": null, - "Tuscan": null, - "Tuscany": [["M"]], - "Tuscany's": null, - "Tuscarora": [["M"]], - "Tuscarora's": null, - "Tuscon": [["M"]], - "Tuscon's": null, - "tush": [["S", "D", "G"]], - "tushes": null, - "tushed": null, - "tushing": null, - "Tuskegee": [["M"]], - "Tuskegee's": null, - "tusker": [["M"]], - "tusker's": null, - "tusk": [["G", "Z", "R", "D", "M", "S"]], - "tusking": null, - "tuskers": null, - "tusked": null, - "tusk's": null, - "tusks": null, - "tussle": [["G", "S", "D"]], - "tussling": null, - "tussles": null, - "tussled": null, - "tussock": [["M", "S"]], - "tussock's": null, - "tussocks": null, - "tussocky": null, - "Tussuad": [["M"]], - "Tussuad's": null, - "Tutankhamen": [["M"]], - "Tutankhamen's": null, - "tutelage": [["M", "S"]], - "tutelage's": null, - "tutelages": null, - "tutelary": [["S"]], - "tutelaries": null, - "Tut": [["M"]], - "Tut's": null, - "tutored": [["U"]], - "untutored": null, - "tutorial": [["M", "S"]], - "tutorial's": null, - "tutorials": null, - "tutor": [["M", "D", "G", "S"]], - "tutor's": null, - "tutoring": null, - "tutors": null, - "tutorship": [["S"]], - "tutorships": null, - "tut": [["S"]], - "tuts": null, - "Tutsi": null, - "tutted": null, - "tutting": null, - "tutti": [["S"]], - "tuttis": null, - "Tuttle": [["M"]], - "Tuttle's": null, - "tutu": [["S", "M"]], - "tutus": null, - "tutu's": null, - "Tuvalu": null, - "tuxedo": [["S", "D", "M"]], - "tuxedos": null, - "tuxedoed": null, - "tuxedo's": null, - "tux": [["S"]], - "tuxes": null, - "TVA": null, - "TV": [["M"]], - "TV's": null, - "TVs": null, - "twaddle": [["G", "Z", "M", "R", "S", "D"]], - "twaddling": null, - "twaddlers": null, - "twaddle's": null, - "twaddler": [["M"]], - "twaddles": null, - "twaddled": null, - "twaddler's": null, - "Twain": [["M"]], - "Twain's": null, - "twain": [["S"]], - "twains": null, - "TWA": [["M"]], - "TWA's": null, - "twang": [["M", "D", "S", "G"]], - "twang's": null, - "twanged": null, - "twangs": null, - "twanging": null, - "twangy": [["T", "R"]], - "twangiest": null, - "twangier": null, - "twas": null, - "tweak": [["S", "G", "R", "D"]], - "tweaks": null, - "tweaking": null, - "tweaker": null, - "tweaked": null, - "tweediness": [["M"]], - "tweediness's": null, - "Tweedledee": [["M"]], - "Tweedledee's": null, - "Tweedledum": [["M"]], - "Tweedledum's": null, - "Tweed": [["M"]], - "Tweed's": null, - "twee": [["D", "P"]], - "tweed": [["S", "M"]], - "tweeness": null, - "tweeds": null, - "tweed's": null, - "tweedy": [["P", "T", "R"]], - "tweediest": null, - "tweedier": null, - "tween": null, - "tweeter": [["M"]], - "tweeter's": null, - "tweet": [["Z", "S", "G", "R", "D"]], - "tweeters": null, - "tweets": null, - "tweeting": null, - "tweeted": null, - "tweezer": [["M"]], - "tweezer's": null, - "tweeze": [["Z", "G", "R", "D"]], - "tweezers": null, - "tweezing": null, - "tweezed": null, - "twelfth": null, - "twelfths": null, - "twelvemonth": [["M"]], - "twelvemonth's": null, - "twelvemonths": null, - "twelve": [["M", "S"]], - "twelve's": null, - "twelves": null, - "twentieths": null, - "twenty": [["M", "S", "H"]], - "twenty's": null, - "twenties": null, - "twentieth": null, - "twerp": [["M", "S"]], - "twerp's": null, - "twerps": null, - "twice": [["R"]], - "twicer": null, - "twiddle": [["G", "R", "S", "D"]], - "twiddling": null, - "twiddler": [["M"]], - "twiddles": null, - "twiddled": null, - "twiddler's": null, - "twiddly": [["R", "T"]], - "twiddlier": null, - "twiddliest": null, - "twigged": null, - "twigging": null, - "twiggy": [["R", "T"]], - "twiggier": null, - "twiggiest": null, - "twig": [["S", "M"]], - "twigs": null, - "twig's": null, - "Twila": [["M"]], - "Twila's": null, - "twilight": [["M", "S"]], - "twilight's": null, - "twilights": null, - "twilit": null, - "twill": [["S", "G", "D"]], - "twills": null, - "twilling": null, - "twilled": null, - "twiner": [["M"]], - "twiner's": null, - "twine": [["S", "M"]], - "twines": null, - "twine's": null, - "twinge": [["S", "D", "M", "G"]], - "twinges": null, - "twinged": null, - "twinge's": null, - "twinging": null, - "Twinkie": null, - "twinkler": [["M"]], - "twinkler's": null, - "twinkle": [["R", "S", "D", "G"]], - "twinkles": null, - "twinkled": null, - "twinkling": [["M"]], - "twinkling's": null, - "twinkly": null, - "twinned": null, - "twinning": null, - "twin": [["R", "D", "M", "G", "Z", "S"]], - "twined": null, - "twin's": null, - "twining": null, - "twiners": null, - "twins": null, - "twirler": [["M"]], - "twirler's": null, - "twirling": [["Y"]], - "twirlingly": null, - "twirl": [["S", "Z", "G", "R", "D"]], - "twirls": null, - "twirlers": null, - "twirled": null, - "twirly": [["T", "R"]], - "twirliest": null, - "twirlier": null, - "twisted": [["U"]], - "untwisted": null, - "twister": [["M"]], - "twister's": null, - "twists": [["U"]], - "untwists": null, - "twist": [["S", "Z", "G", "R", "D"]], - "twisters": null, - "twisting": null, - "twisty": null, - "twitch": [["G", "R", "S", "D"]], - "twitching": null, - "twitcher": null, - "twitches": null, - "twitched": null, - "twitchy": [["T", "R"]], - "twitchiest": null, - "twitchier": null, - "twit": [["S"]], - "twits": null, - "twitted": null, - "twitterer": [["M"]], - "twitterer's": null, - "twitter": [["S", "G", "R", "D"]], - "twitters": null, - "twittering": null, - "twittered": null, - "twittery": null, - "twitting": null, - "twixt": null, - "twofer": [["M", "S"]], - "twofer's": null, - "twofers": null, - "twofold": [["S"]], - "twofolds": null, - "two": [["M", "S"]], - "two's": null, - "twos": null, - "twopence": [["S", "M"]], - "twopences": null, - "twopence's": null, - "twopenny": [["S"]], - "twopennies": null, - "twosome": [["M", "S"]], - "twosome's": null, - "twosomes": null, - "twp": null, - "Twp": null, - "TWX": null, - "Twyla": [["M"]], - "Twyla's": null, - "TX": null, - "t": [["X", "T", "J", "B", "G"]], - "tings": null, - "Tybalt": [["M"]], - "Tybalt's": null, - "Tybie": [["M"]], - "Tybie's": null, - "Tybi": [["M"]], - "Tybi's": null, - "tycoon": [["M", "S"]], - "tycoon's": null, - "tycoons": null, - "tyeing": null, - "Tye": [["M"]], - "Tye's": null, - "tying": [["U", "A"]], - "untying": null, - "retying": null, - "tyke": [["S", "M"]], - "tykes": null, - "tyke's": null, - "Tylenol": [["M"]], - "Tylenol's": null, - "Tyler": [["M"]], - "Tyler's": null, - "Ty": [["M"]], - "Ty's": null, - "Tymon": [["M"]], - "Tymon's": null, - "Tymothy": [["M"]], - "Tymothy's": null, - "tympani": null, - "tympanist": [["S", "M"]], - "tympanists": null, - "tympanist's": null, - "tympanum": [["S", "M"]], - "tympanums": null, - "tympanum's": null, - "Tynan": [["M"]], - "Tynan's": null, - "Tyndale": [["M"]], - "Tyndale's": null, - "Tyndall": [["M"]], - "Tyndall's": null, - "Tyne": [["M"]], - "Tyne's": null, - "typeahead": null, - "typecast": [["S", "G"]], - "typecasts": null, - "typecasting": null, - "typed": [["A", "U"]], - "retyped": null, - "untyped": null, - "typedef": [["S"]], - "typedefs": null, - "typeface": [["M", "S"]], - "typeface's": null, - "typefaces": null, - "typeless": null, - "type": [["M", "G", "D", "R", "S", "J"]], - "type's": null, - "typing": [["A"]], - "typer": null, - "types": [["A"]], - "typings": null, - "retypes": null, - "typescript": [["S", "M"]], - "typescripts": null, - "typescript's": null, - "typeset": [["S"]], - "typesets": null, - "typesetter": [["M", "S"]], - "typesetter's": null, - "typesetters": null, - "typesetting": [["S", "M"]], - "typesettings": null, - "typesetting's": null, - "typewriter": [["M"]], - "typewriter's": null, - "typewrite": [["S", "R", "J", "Z", "G"]], - "typewrites": null, - "typewritings": null, - "typewriters": null, - "typewriting": [["M"]], - "typewriting's": null, - "typewritten": null, - "typewrote": null, - "typhoid": [["S", "M"]], - "typhoids": null, - "typhoid's": null, - "Typhon": [["M"]], - "Typhon's": null, - "typhoon": [["S", "M"]], - "typhoons": null, - "typhoon's": null, - "typhus": [["S", "M"]], - "typhuses": null, - "typhus's": null, - "typicality": [["M", "S"]], - "typicality's": null, - "typicalities": null, - "typically": null, - "typicalness": [["M"]], - "typicalness's": null, - "typical": [["U"]], - "untypical": null, - "typification": [["M"]], - "typification's": null, - "typify": [["S", "D", "N", "X", "G"]], - "typifies": null, - "typified": null, - "typifications": null, - "typifying": null, - "retyping": null, - "typist": [["M", "S"]], - "typist's": null, - "typists": null, - "typographer": [["S", "M"]], - "typographers": null, - "typographer's": null, - "typographic": null, - "typographical": [["Y"]], - "typographically": null, - "typography": [["M", "S"]], - "typography's": null, - "typographies": null, - "typological": [["Y"]], - "typologically": null, - "typology": [["M", "S"]], - "typology's": null, - "typologies": null, - "typo": [["M", "S"]], - "typo's": null, - "typos": null, - "tyrannic": null, - "tyrannicalness": [["M"]], - "tyrannicalness's": null, - "tyrannical": [["P", "Y"]], - "tyrannically": null, - "tyrannicide": [["M"]], - "tyrannicide's": null, - "tyrannizer": [["M"]], - "tyrannizer's": null, - "tyrannize": [["Z", "G", "J", "R", "S", "D"]], - "tyrannizers": null, - "tyrannizing": [["Y", "M"]], - "tyrannizings": null, - "tyrannizes": null, - "tyrannized": null, - "tyrannizingly": null, - "tyrannizing's": null, - "tyrannosaur": [["M", "S"]], - "tyrannosaur's": null, - "tyrannosaurs": null, - "tyrannosaurus": [["S"]], - "tyrannosauruses": null, - "tyrannous": null, - "tyranny": [["M", "S"]], - "tyranny's": null, - "tyrannies": null, - "tyrant": [["M", "S"]], - "tyrant's": null, - "tyrants": null, - "Tyree": [["M"]], - "Tyree's": null, - "tyreo": null, - "Tyrolean": [["S"]], - "Tyroleans": null, - "Tyrol's": null, - "Tyrone": [["M"]], - "Tyrone's": null, - "tyrosine": [["M"]], - "tyrosine's": null, - "tyro": [["S", "M"]], - "tyros": null, - "tyro's": null, - "Tyrus": [["M"]], - "Tyrus's": null, - "Tyson": [["M"]], - "Tyson's": null, - "tzarina's": null, - "tzar's": null, - "Tzeltal": [["M"]], - "Tzeltal's": null, - "u": null, - "U": null, - "UAR": null, - "UART": null, - "UAW": null, - "Ubangi": [["M"]], - "Ubangi's": null, - "ubiquitous": [["Y", "P"]], - "ubiquitously": null, - "ubiquitousness": null, - "ubiquity": [["S"]], - "ubiquities": null, - "Ucayali": [["M"]], - "Ucayali's": null, - "Uccello": [["M"]], - "Uccello's": null, - "UCLA": [["M"]], - "UCLA's": null, - "Udale": [["M"]], - "Udale's": null, - "Udall": [["M"]], - "Udall's": null, - "udder": [["S", "M"]], - "udders": null, - "udder's": null, - "Udell": [["M"]], - "Udell's": null, - "Ufa": [["M"]], - "Ufa's": null, - "ufologist": [["S"]], - "ufologists": null, - "ufology": [["M", "S"]], - "ufology's": null, - "ufologies": null, - "UFO": [["S"]], - "UFOs": null, - "Uganda": [["M"]], - "Uganda's": null, - "Ugandan": [["S"]], - "Ugandans": null, - "ugh": null, - "ughs": null, - "uglification": null, - "ugliness": [["M", "S"]], - "ugliness's": null, - "uglinesses": null, - "uglis": null, - "ugly": [["P", "T", "G", "S", "R", "D"]], - "ugliest": null, - "uglying": null, - "uglies": null, - "uglier": null, - "uglied": null, - "Ugo": [["M"]], - "Ugo's": null, - "uh": null, - "UHF": null, - "Uighur": null, - "Ujungpandang": [["M"]], - "Ujungpandang's": null, - "UK": null, - "ukase": [["S", "M"]], - "ukases": null, - "ukase's": null, - "Ukraine": [["M"]], - "Ukraine's": null, - "Ukrainian": [["S"]], - "Ukrainians": null, - "ukulele": [["S", "M"]], - "ukuleles": null, - "ukulele's": null, - "UL": null, - "Ula": [["M"]], - "Ula's": null, - "Ulberto": [["M"]], - "Ulberto's": null, - "ulcerate": [["N", "G", "V", "X", "D", "S"]], - "ulceration": [["M"]], - "ulcerating": null, - "ulcerative": null, - "ulcerations": null, - "ulcerated": null, - "ulcerates": null, - "ulceration's": null, - "ulcer": [["M", "D", "G", "S"]], - "ulcer's": null, - "ulcered": null, - "ulcering": null, - "ulcers": null, - "ulcerous": null, - "Ulick": [["M"]], - "Ulick's": null, - "Ulises": [["M"]], - "Ulises's": null, - "Ulla": [["M"]], - "Ulla's": null, - "Ullman": [["M"]], - "Ullman's": null, - "ulnae": null, - "ulna": [["M"]], - "ulna's": null, - "ulnar": null, - "Ulrica": [["M"]], - "Ulrica's": null, - "Ulrich": [["M"]], - "Ulrich's": null, - "Ulrick": [["M"]], - "Ulrick's": null, - "Ulric": [["M"]], - "Ulric's": null, - "Ulrika": [["M"]], - "Ulrika's": null, - "Ulrikaumeko": [["M"]], - "Ulrikaumeko's": null, - "Ulrike": [["M"]], - "Ulrike's": null, - "Ulster": [["M"]], - "Ulster's": null, - "ulster": [["M", "S"]], - "ulster's": null, - "ulsters": null, - "ult": null, - "ulterior": [["Y"]], - "ulteriorly": null, - "ultimas": null, - "ultimate": [["D", "S", "Y", "P", "G"]], - "ultimated": null, - "ultimates": null, - "ultimately": null, - "ultimateness": [["M"]], - "ultimating": null, - "ultimateness's": null, - "ultimatum": [["M", "S"]], - "ultimatum's": null, - "ultimatums": null, - "ultimo": null, - "ultracentrifugally": null, - "ultracentrifugation": null, - "ultracentrifuge": [["M"]], - "ultracentrifuge's": null, - "ultraconservative": [["S"]], - "ultraconservatives": null, - "ultrafast": null, - "ultrahigh": null, - "ultralight": [["S"]], - "ultralights": null, - "ultramarine": [["S", "M"]], - "ultramarines": null, - "ultramarine's": null, - "ultramodern": null, - "ultramontane": null, - "ultra": [["S"]], - "ultras": null, - "ultrashort": null, - "ultrasonically": null, - "ultrasonic": [["S"]], - "ultrasonics": [["M"]], - "ultrasonics's": null, - "ultrasound": [["S", "M"]], - "ultrasounds": null, - "ultrasound's": null, - "ultrastructure": [["M"]], - "ultrastructure's": null, - "Ultrasuede": null, - "ultraviolet": [["S", "M"]], - "ultraviolets": null, - "ultraviolet's": null, - "Ultrix": [["M"]], - "Ultrix's": null, - "ULTRIX": [["M"]], - "ULTRIX's": null, - "ululate": [["D", "S", "X", "G", "N"]], - "ululated": null, - "ululates": null, - "ululations": null, - "ululating": null, - "ululation": [["M"]], - "ululation's": null, - "Ulyanovsk": [["M"]], - "Ulyanovsk's": null, - "Ulysses": [["M"]], - "Ulysses's": null, - "um": null, - "umbel": [["M", "S"]], - "umbel's": null, - "umbels": null, - "umber": [["G", "M", "D", "S"]], - "umbering": null, - "umber's": null, - "umbered": null, - "umbers": null, - "Umberto": [["M"]], - "Umberto's": null, - "umbilical": [["S"]], - "umbilicals": null, - "umbilici": null, - "umbilicus": [["M"]], - "umbilicus's": null, - "umbrage": [["M", "G", "S", "D"]], - "umbrage's": null, - "umbraging": null, - "umbrages": null, - "umbraged": null, - "umbrageous": null, - "umbra": [["M", "S"]], - "umbra's": null, - "umbras": null, - "umbrella": [["G", "D", "M", "S"]], - "umbrellaing": null, - "umbrellaed": null, - "umbrella's": null, - "umbrellas": null, - "Umbriel": [["M"]], - "Umbriel's": null, - "Umeko": [["M"]], - "Umeko's": null, - "umiak": [["M", "S"]], - "umiak's": null, - "umiaks": null, - "umlaut": [["G", "M", "D", "S"]], - "umlauting": null, - "umlaut's": null, - "umlauted": null, - "umlauts": null, - "umpire": [["M", "G", "S", "D"]], - "umpire's": null, - "umpiring": null, - "umpires": null, - "umpired": null, - "ump": [["M", "D", "S", "G"]], - "ump's": null, - "umped": null, - "umps": null, - "umping": null, - "umpteen": [["H"]], - "umpteenth": null, - "UN": null, - "unabatedly": null, - "unabridgeds": null, - "unacceptability": null, - "unacceptable": null, - "unaccepted": null, - "unaccommodating": null, - "unaccountability": null, - "unaccustomed": [["Y"]], - "unaccustomedly": null, - "unadapted": null, - "unadulteratedly": null, - "unadventurous": null, - "unalienability": null, - "unalterableness": [["M"]], - "unalterableness's": null, - "unalterably": null, - "Una": [["M"]], - "Una's": null, - "unambiguity": null, - "unambiguous": null, - "unambitious": null, - "unamused": null, - "unanimity": [["S", "M"]], - "unanimities": null, - "unanimity's": null, - "unanimous": [["Y"]], - "unanimously": null, - "unanticipatedly": null, - "unapologetic": null, - "unapologizing's": null, - "unappeasable": null, - "unappeasably": null, - "unappreciative": null, - "unary": null, - "unassailableness": [["M"]], - "unassailableness's": null, - "unassertive": null, - "unassumingness": [["M"]], - "unassumingness's": null, - "unassumingly": null, - "unauthorizedness": null, - "unauthorizedly": null, - "unavailingness": null, - "unavailingly": null, - "unaware": [["S", "P", "Y"]], - "unawares": null, - "unawarely": null, - "unbalancedness": null, - "unbar": null, - "unbarring": null, - "unbecomingness": null, - "unbeknown": null, - "unbelievingly": null, - "unbiasedness": null, - "unbid": null, - "unbind": [["G"]], - "unbinding": null, - "unblessed": null, - "unblinkingly": null, - "unbodied": null, - "unbolt": [["G"]], - "unbolting": null, - "unbreakability": null, - "unbred": null, - "unbroken": null, - "unbuckle": null, - "unbudgingly": null, - "unburnt": null, - "uncap": null, - "uncapping": null, - "uncatalogued": null, - "uncauterized's": null, - "uncauterizeds": null, - "unceasingly": null, - "uncelebrated": null, - "uncertainness": null, - "unchallengeable": null, - "unchangingness": [["M"]], - "unchangingness's": null, - "unchangingly": null, - "uncharacteristic": null, - "uncharismatic": null, - "unchastity": null, - "unchristian": null, - "uncial": [["S"]], - "uncials": null, - "uncivilizedly": null, - "unclassified": null, - "uncle": [["M", "S", "D"]], - "uncle's": null, - "uncles": null, - "uncled": null, - "uncloudedly": null, - "uncodable": null, - "uncollected": null, - "uncoloredness": [["M"]], - "uncoloredness's": null, - "uncoloredly": null, - "uncombable": null, - "uncommunicative": null, - "uncompetitive": null, - "uncomplicated": null, - "uncomprehendingly": null, - "uncompromisable": null, - "unconcernedness": null, - "unconcern's": null, - "unconfirmed": null, - "unconfused": null, - "unconscionableness": [["M"]], - "unconscionableness's": null, - "unconscionably": null, - "unconstitutional": null, - "unconsumed": null, - "uncontentious": null, - "uncontrollability": null, - "unconvertible": null, - "uncool": null, - "uncooperative": null, - "uncork": [["G"]], - "uncorking": null, - "uncoupling": null, - "uncouthness": [["M"]], - "uncouthness's": null, - "uncouth": [["Y", "P"]], - "uncouthly": null, - "uncreate": [["V"]], - "uncreative": null, - "uncritical": null, - "uncross": [["G", "B"]], - "uncrossing": null, - "uncrossable": null, - "uncrowded": null, - "unction": [["I", "M"]], - "inunction": null, - "inunction's": null, - "unction's": null, - "unctions": null, - "unctuousness": [["M", "S"]], - "unctuousness's": null, - "unctuousnesses": null, - "unctuous": [["P", "Y"]], - "unctuously": null, - "uncustomary": null, - "uncut": null, - "inundated": null, - "undauntedly": null, - "undeceive": null, - "undecided": [["S"]], - "undecideds": null, - "undedicated": null, - "undefinability": null, - "undefinedness": [["M"]], - "undefinedness's": null, - "undelete": null, - "undeliverability": null, - "undeniableness": [["M"]], - "undeniableness's": null, - "undeniably": null, - "undependable": null, - "underachiever": [["M"]], - "underachiever's": null, - "underachieve": [["S", "R", "D", "G", "Z"]], - "underachieves": null, - "underachieved": null, - "underachieving": null, - "underachievers": null, - "underact": [["G", "D", "S"]], - "underacting": null, - "underacted": null, - "underacts": null, - "underadjusting": null, - "underage": [["S"]], - "underages": null, - "underarm": [["D", "G", "S"]], - "underarmed": null, - "underarming": null, - "underarms": null, - "underbedding": null, - "underbelly": [["M", "S"]], - "underbelly's": null, - "underbellies": null, - "underbidding": null, - "underbid": [["S"]], - "underbids": null, - "underbracing": null, - "underbrush": [["M", "S", "D", "G"]], - "underbrush's": null, - "underbrushes": null, - "underbrushed": null, - "underbrushing": null, - "undercarriage": [["M", "S"]], - "undercarriage's": null, - "undercarriages": null, - "undercharge": [["G", "S", "D"]], - "undercharging": null, - "undercharges": null, - "undercharged": null, - "underclassman": null, - "underclassmen": null, - "underclass": [["S"]], - "underclasses": null, - "underclothes": null, - "underclothing": [["M", "S"]], - "underclothing's": null, - "underclothings": null, - "undercoating": [["M"]], - "undercoating's": null, - "undercoat": [["J", "M", "D", "G", "S"]], - "undercoatings": null, - "undercoat's": null, - "undercoated": null, - "undercoats": null, - "underconsumption": [["M"]], - "underconsumption's": null, - "undercooked": null, - "undercount": [["S"]], - "undercounts": null, - "undercover": null, - "undercurrent": [["S", "M"]], - "undercurrents": null, - "undercurrent's": null, - "undercut": [["S"]], - "undercuts": null, - "undercutting": null, - "underdeveloped": null, - "underdevelopment": [["M", "S"]], - "underdevelopment's": null, - "underdevelopments": null, - "underdog": [["M", "S"]], - "underdog's": null, - "underdogs": null, - "underdone": null, - "undereducated": null, - "underemphasis": null, - "underemployed": null, - "underemployment": [["S", "M"]], - "underemployments": null, - "underemployment's": null, - "underenumerated": null, - "underenumeration": null, - "underestimate": [["N", "G", "X", "S", "D"]], - "underestimation": null, - "underestimating": null, - "underestimations": null, - "underestimates": null, - "underestimated": null, - "underexploited": null, - "underexpose": [["S", "D", "G"]], - "underexposes": null, - "underexposed": null, - "underexposing": null, - "underexposure": [["S", "M"]], - "underexposures": null, - "underexposure's": null, - "underfed": null, - "underfeed": [["S", "G"]], - "underfeeds": null, - "underfeeding": null, - "underfloor": null, - "underflow": [["G", "D", "M", "S"]], - "underflowing": null, - "underflowed": null, - "underflow's": null, - "underflows": null, - "underfoot": null, - "underfund": [["D", "G"]], - "underfunded": null, - "underfunding": null, - "underfur": [["M", "S"]], - "underfur's": null, - "underfurs": null, - "undergarment": [["S", "M"]], - "undergarments": null, - "undergarment's": null, - "undergirding": null, - "undergoes": null, - "undergo": [["G"]], - "undergoing": null, - "undergone": null, - "undergrad": [["M", "S"]], - "undergrad's": null, - "undergrads": null, - "undergraduate": [["M", "S"]], - "undergraduate's": null, - "undergraduates": null, - "underground": [["R", "M", "S"]], - "undergrounder": null, - "underground's": null, - "undergrounds": null, - "undergrowth": [["M"]], - "undergrowth's": null, - "undergrowths": null, - "underhand": [["D"]], - "underhanded": [["Y", "P"]], - "underhandedness": [["M", "S"]], - "underhandedness's": null, - "underhandednesses": null, - "underhandedly": null, - "underheat": null, - "underinvestment": null, - "underlaid": null, - "underlain": [["S"]], - "underlains": null, - "underlay": [["G", "S"]], - "underlaying": null, - "underlays": null, - "underlie": null, - "underline": [["G", "S", "D", "J"]], - "underlining": null, - "underlines": null, - "underlined": null, - "underlinings": null, - "underling": [["M", "S"]], - "underling's": null, - "underlings": null, - "underlip": [["S", "M"]], - "underlips": null, - "underlip's": null, - "underloaded": null, - "underly": [["G", "S"]], - "underlying": null, - "underlies": null, - "undermanned": null, - "undermentioned": null, - "undermine": [["S", "D", "G"]], - "undermines": null, - "undermined": null, - "undermining": null, - "undermost": null, - "underneath": null, - "underneaths": null, - "undernourished": null, - "undernourishment": [["S", "M"]], - "undernourishments": null, - "undernourishment's": null, - "underpaid": null, - "underpants": null, - "underpart": [["M", "S"]], - "underpart's": null, - "underparts": null, - "underpass": [["S", "M"]], - "underpasses": null, - "underpass's": null, - "underpay": [["G", "S", "L"]], - "underpaying": null, - "underpays": null, - "underpayment": [["S", "M"]], - "underpayments": null, - "underpayment's": null, - "underperformed": null, - "underpinned": null, - "underpinning": [["M", "S"]], - "underpinning's": null, - "underpinnings": null, - "underpin": [["S"]], - "underpins": null, - "underplay": [["S", "G", "D"]], - "underplays": null, - "underplaying": null, - "underplayed": null, - "underpopulated": null, - "underpopulation": [["M"]], - "underpopulation's": null, - "underpowered": null, - "underpricing": null, - "underprivileged": null, - "underproduction": [["M", "S"]], - "underproduction's": null, - "underproductions": null, - "underrate": [["G", "S", "D"]], - "underrating": null, - "underrates": null, - "underrated": null, - "underregistration": [["M"]], - "underregistration's": null, - "underreported": null, - "underreporting": null, - "underrepresentation": [["M"]], - "underrepresentation's": null, - "underrepresented": null, - "underscore": [["S", "D", "G"]], - "underscores": null, - "underscored": null, - "underscoring": null, - "undersealed": null, - "undersea": [["S"]], - "underseas": null, - "undersecretary": [["S", "M"]], - "undersecretaries": null, - "undersecretary's": null, - "undersell": [["S", "G"]], - "undersells": null, - "underselling": null, - "undersexed": null, - "undershirt": [["S", "M"]], - "undershirts": null, - "undershirt's": null, - "undershoot": [["S", "G"]], - "undershoots": null, - "undershooting": null, - "undershorts": null, - "undershot": null, - "underside": [["S", "M"]], - "undersides": null, - "underside's": null, - "undersigned": [["M"]], - "undersigned's": null, - "undersign": [["S", "G", "D"]], - "undersigns": null, - "undersigning": null, - "undersized": null, - "undersizes": null, - "undersizing": null, - "underskirt": [["M", "S"]], - "underskirt's": null, - "underskirts": null, - "undersold": null, - "underspecification": null, - "underspecified": null, - "underspend": [["G"]], - "underspending": null, - "understaffed": null, - "understandability": [["M"]], - "understandability's": null, - "understandably": null, - "understanding": [["Y", "M"]], - "understandingly": null, - "understanding's": null, - "understand": [["R", "G", "S", "J", "B"]], - "understander": null, - "understands": null, - "understandings": null, - "understandable": null, - "understate": [["G", "S", "D", "L"]], - "understating": null, - "understates": null, - "understated": null, - "understatement": [["M", "S"]], - "understatement's": null, - "understatements": null, - "understocked": null, - "understood": null, - "understrength": null, - "understructure": [["S", "M"]], - "understructures": null, - "understructure's": null, - "understudy": [["G", "M", "S", "D"]], - "understudying": null, - "understudy's": null, - "understudies": null, - "understudied": null, - "undertaken": null, - "undertaker": [["M"]], - "undertaker's": null, - "undertake": [["S", "R", "G", "Z", "J"]], - "undertakes": null, - "undertaking": [["M"]], - "undertakers": null, - "undertakings": null, - "undertaking's": null, - "underthings": null, - "undertone": [["S", "M"]], - "undertones": null, - "undertone's": null, - "undertook": null, - "undertow": [["M", "S"]], - "undertow's": null, - "undertows": null, - "underused": null, - "underusing": null, - "underutilization": [["M"]], - "underutilization's": null, - "underutilized": null, - "undervaluation": [["S"]], - "undervaluations": null, - "undervalue": [["S", "D", "G"]], - "undervalues": null, - "undervalued": null, - "undervaluing": null, - "underwater": [["S"]], - "underwaters": null, - "underway": null, - "underwear": [["M"]], - "underwear's": null, - "underweight": [["S"]], - "underweights": null, - "underwent": null, - "underwhelm": [["D", "G", "S"]], - "underwhelmed": null, - "underwhelming": null, - "underwhelms": null, - "underwood": [["M"]], - "underwood's": null, - "Underwood": [["M"]], - "Underwood's": null, - "underworld": [["M", "S"]], - "underworld's": null, - "underworlds": null, - "underwrite": [["G", "Z", "S", "R"]], - "underwriting": null, - "underwriters": null, - "underwrites": null, - "underwriter": [["M"]], - "underwriter's": null, - "underwritten": null, - "underwrote": null, - "under": [["Y"]], - "undeserving": null, - "undesigned": null, - "undeviatingly": null, - "undialyzeds": null, - "undialyzed's": null, - "undiplomatic": null, - "undiscerning": null, - "undiscriminating": null, - "undo": [["G", "J"]], - "undoings": null, - "undoubtedly": null, - "undramatic": null, - "undramatizeds": null, - "undramatized's": null, - "undress": [["G"]], - "undressing": null, - "undrinkability": null, - "undrinkable": null, - "undroppable": null, - "undue": null, - "undulant": null, - "undulate": [["X", "D", "S", "N", "G"]], - "undulations": null, - "undulated": null, - "undulates": null, - "undulation": [["M"]], - "undulating": null, - "undulation's": null, - "unearthliness": [["S"]], - "unearthlinesses": null, - "unearthly": [["P"]], - "unearth": [["Y", "G"]], - "unearthing": null, - "unease": null, - "uneconomic": null, - "uneducated": null, - "unemployeds": null, - "unencroachable": null, - "unending": [["Y"]], - "unendingly": null, - "unendurableness": null, - "unenergized's": null, - "unenergizeds": null, - "unenforced": null, - "unenterprising": null, - "UNESCO": null, - "unethical": null, - "uneulogizeds": null, - "uneulogized's": null, - "unexacting": null, - "unexceptionably": null, - "unexcited": null, - "unexpectedness's": null, - "unexpectednesses": null, - "unfadingly": null, - "unfailingness": [["M"]], - "unfailingness's": null, - "unfamiliar": null, - "unfashionable": null, - "unfathomably": null, - "unfavored": null, - "unfeeling": null, - "unfeignedly": null, - "unfelt": null, - "unfeminine": null, - "unfertile": null, - "unfetchable": null, - "unflagging": null, - "unflappability": [["S"]], - "unflappabilities": null, - "unflappable": null, - "unflappably": null, - "unflinchingly": null, - "unfold": [["L", "G"]], - "unfoldment": [["M"]], - "unfolding": null, - "unfoldment's": null, - "unforced": null, - "unforgeable": null, - "unfossilized's": null, - "unfossilizeds": null, - "unfraternizings": null, - "unfraternizing's": null, - "unfrozen": null, - "unfulfillable": null, - "unfunny": null, - "unfussy": null, - "ungainliness": [["M", "S"]], - "ungainliness's": null, - "ungainlinesses": null, - "ungainlier": null, - "ungainliest": null, - "Ungava": [["M"]], - "Ungava's": null, - "ungenerous": null, - "ungentle": null, - "unglamorous": null, - "ungrammaticality": null, - "ungrudging": null, - "unguent": [["M", "S"]], - "unguent's": null, - "unguents": null, - "ungulate": [["M", "S"]], - "ungulate's": null, - "ungulates": null, - "unharmonious": null, - "unharness": [["G"]], - "unharnessing": null, - "unhistorical": null, - "unholy": [["T", "P"]], - "unholiest": null, - "unhook": [["D", "G"]], - "unhooked": null, - "unhooking": null, - "unhydrolyzeds": null, - "unhydrolyzed's": null, - "unhygienic": null, - "Unibus": [["M"]], - "Unibus's": null, - "unicameral": null, - "UNICEF": null, - "unicellular": null, - "Unicode": [["M"]], - "Unicode's": null, - "unicorn": [["S", "M"]], - "unicorns": null, - "unicorn's": null, - "unicycle": [["M", "G", "S", "D"]], - "unicycle's": null, - "unicycling": null, - "unicycles": null, - "unicycled": null, - "unicyclist": [["M", "S"]], - "unicyclist's": null, - "unicyclists": null, - "unideal": null, - "unidimensional": null, - "unidiomatic": null, - "unidirectionality": null, - "unidirectional": [["Y"]], - "unidirectionally": null, - "unidolized's": null, - "unidolizeds": null, - "unifiable": null, - "unification": [["M", "A"]], - "unification's": null, - "reunification's": null, - "reunification": null, - "unifier": [["M", "S"]], - "unifier's": null, - "unifiers": null, - "unifilar": null, - "uniformity": [["M", "S"]], - "uniformity's": null, - "uniformities": null, - "uniformness": [["M"]], - "uniformness's": null, - "uniform": [["T", "G", "S", "R", "D", "Y", "M", "P"]], - "uniformest": null, - "uniforming": null, - "uniforms": null, - "uniformer": null, - "uniformed": null, - "uniformly": null, - "uniform's": null, - "unify": [["A", "X", "D", "S", "N", "G"]], - "reunify": null, - "reunifications": null, - "reunified": null, - "reunifies": null, - "reunifying": null, - "unifications": null, - "unified": null, - "unifies": null, - "unifying": null, - "unilateralism": [["M"]], - "unilateralism's": null, - "unilateralist": null, - "unilateral": [["Y"]], - "unilaterally": null, - "unimodal": null, - "unimpeachably": null, - "unimportance": null, - "unimportant": null, - "unimpressive": null, - "unindustrialized's": null, - "unindustrializeds": null, - "uninhibitedly": null, - "uninhibitedness": null, - "uninominal": null, - "uninsured": null, - "unintellectual": null, - "unintended": null, - "uninteresting": null, - "uninterruptedness": [["M"]], - "uninterruptedness's": null, - "uninterruptedly": null, - "unintuitive": null, - "uninviting": null, - "reunion": null, - "reunion's": null, - "reunions": null, - "disunion": null, - "disunion's": null, - "disunions": null, - "unionism": [["S", "M"]], - "unionisms": null, - "unionism's": null, - "unionist": [["S", "M"]], - "unionists": null, - "unionist's": null, - "Unionist": [["S", "M"]], - "Unionists": null, - "Unionist's": null, - "unionize": null, - "Union": [["M", "S"]], - "Union's": null, - "Unions": null, - "UniPlus": [["M"]], - "UniPlus's": null, - "unipolar": null, - "uniprocessor": [["S", "M"]], - "uniprocessors": null, - "uniprocessor's": null, - "uniqueness": [["S"]], - "uniquenesses": null, - "unique": [["T", "Y", "S", "R", "P"]], - "uniquest": null, - "uniquely": null, - "uniques": null, - "uniquer": null, - "Uniroyal": [["M"]], - "Uniroyal's": null, - "unisex": [["S"]], - "unisexes": null, - "UniSoft": [["M"]], - "UniSoft's": null, - "unison": [["M", "S"]], - "unison's": null, - "unisons": null, - "Unisys": [["M"]], - "Unisys's": null, - "unitarianism": [["M"]], - "unitarianism's": null, - "Unitarianism": [["S", "M"]], - "Unitarianisms": null, - "Unitarianism's": null, - "unitarian": [["M", "S"]], - "unitarian's": null, - "unitarians": null, - "Unitarian": [["M", "S"]], - "Unitarian's": null, - "Unitarians": null, - "unitary": null, - "unite": [["A", "E", "D", "S", "G"]], - "reunite": null, - "reunited": null, - "reunites": null, - "reuniting": null, - "disunite": null, - "disunited": null, - "disunites": null, - "disuniting": null, - "united": [["Y"]], - "unites": null, - "uniting": null, - "unitedly": null, - "uniter": [["M"]], - "uniter's": null, - "unitize": [["G", "D", "S"]], - "unitizing": null, - "unitized": null, - "unitizes": null, - "unitive": null, - "unity": [["S", "E", "M"]], - "unities": null, - "disunities": null, - "disunity": null, - "disunity's": null, - "unity's": null, - "univ": null, - "Univac": [["M"]], - "Univac's": null, - "univalent": [["S"]], - "univalents": null, - "univalve": [["M", "S"]], - "univalve's": null, - "univalves": null, - "univariate": null, - "universalism": [["M"]], - "universalism's": null, - "universalistic": null, - "universality": [["S", "M"]], - "universalities": null, - "universality's": null, - "universalize": [["D", "S", "R", "Z", "G"]], - "universalized": null, - "universalizes": null, - "universalizer": [["M"]], - "universalizers": null, - "universalizing": null, - "universalizer's": null, - "universal": [["Y", "S", "P"]], - "universally": null, - "universals": null, - "universalness": null, - "universe": [["M", "S"]], - "universe's": null, - "universes": null, - "university": [["M", "S"]], - "university's": null, - "universities": null, - "Unix": [["M"]], - "Unix's": null, - "UNIX": [["M"]], - "UNIX's": null, - "unjam": null, - "unkempt": null, - "unkind": [["T", "P"]], - "unkindest": null, - "unkink": null, - "unknightly": null, - "unknowables": null, - "unknowing": null, - "unlabored": null, - "unlace": [["G"]], - "unlacing": null, - "unlearn": [["G"]], - "unlearning": null, - "unlikeable": null, - "unlikelinesses": null, - "unlimber": [["G"]], - "unlimbering": null, - "unlimited": null, - "unlit": null, - "unliterary": null, - "unloose": [["G"]], - "unloosing": null, - "unlucky": [["T", "P"]], - "unluckiest": null, - "unmagnetized's": null, - "unmagnetizeds": null, - "unmanageably": null, - "unmanneredly": null, - "unmask": [["G"]], - "unmasking": null, - "unmeaning": null, - "unmeasured": null, - "unmeetable": null, - "unmelodious": null, - "unmemorable": null, - "unmemorialized's": null, - "unmemorializeds": null, - "unmentionables": null, - "unmerciful": null, - "unmeritorious": null, - "unmethodical": null, - "unmineralized's": null, - "unmineralizeds": null, - "unmissable": null, - "unmistakably": null, - "unmitigatedly": null, - "unmitigatedness": null, - "unmnemonic": null, - "unmobilizeds": null, - "unmobilized's": null, - "unmoral": null, - "unmount": [["B"]], - "unmountable": null, - "unmovable": null, - "unmoving": null, - "unnaturalness's": null, - "unnavigable": null, - "unnervingly": null, - "unobliging": null, - "unoffensive": null, - "unofficial": null, - "unorganizedly": null, - "unorganizedness": null, - "unorthodox": null, - "unpack": [["G"]], - "unpacking": null, - "unpaintable": null, - "unpalatability": null, - "unpalatable": null, - "unpartizan": null, - "unpatronizing": null, - "unpeople": null, - "unperceptive": null, - "unperson": null, - "unperturbedly": null, - "unphysical": null, - "unpick": [["G"]], - "unpicking": null, - "unpicturesque": null, - "unpinning": null, - "unpleasing": null, - "unploughed": null, - "unpolarizeds": null, - "unpolarized's": null, - "unpopular": null, - "unpractical": null, - "unprecedentedly": null, - "unpredictables": null, - "unpreemphasized": null, - "unpremeditated": null, - "unpretentiousness's": null, - "unprincipledness": null, - "unproblematic": null, - "unproductive": null, - "unpropitious": null, - "unprovable": null, - "unprovocative": null, - "unpunctual": null, - "unquestionable": null, - "unraisable": null, - "unravellings": null, - "unreadability": null, - "unread": [["B"]], - "unreadable": null, - "unreal": null, - "unrealizable": null, - "unreasoningly": null, - "unreceptive": null, - "unrecordable": null, - "unreflective": null, - "unrelentingly": null, - "unremittingly": null, - "unrepeatability": null, - "unrepeated": null, - "unrepentant": null, - "unreported": null, - "unrepresentative": null, - "unreproducible": null, - "unrest": [["G"]], - "unresting": null, - "unrestrainedness": null, - "unrewarding": null, - "unriddle": null, - "unripe": [["P"]], - "unromantic": null, - "unruliness": [["S", "M"]], - "unrulinesses": null, - "unruliness's": null, - "unruly": [["P", "T", "R"]], - "unruliest": null, - "unrulier": null, - "unsaleable": null, - "unsanitary": null, - "unsavoredly": null, - "unsavoredness": null, - "unsavoriness's": null, - "unseal": [["G", "B"]], - "unsealing": null, - "unsealable": null, - "unsearchable": null, - "unseasonal": null, - "unseeingly": null, - "unseens": null, - "unselfconsciousness": [["M"]], - "unselfconsciousness's": null, - "unselfconscious": [["P"]], - "unselfishness's": null, - "unsellable": null, - "unsentimental": null, - "unset": null, - "unsettledness": [["M"]], - "unsettledness's": null, - "unsettlingly": null, - "unshapely": null, - "unshaven": null, - "unshorn": null, - "unsighted": null, - "unsightlinesses": null, - "unskilful": null, - "unsociability": null, - "unsociable": [["P"]], - "unsociableness": null, - "unsocial": null, - "unsoundest": null, - "unspeakably": null, - "unspecific": null, - "unspectacular": null, - "unspoilt": null, - "unspoke": null, - "unsporting": null, - "unstable": [["P"]], - "unstigmatizeds": null, - "unstigmatized's": null, - "unstilted": null, - "unstintingly": null, - "unstopping": null, - "unstrapping": null, - "unstudied": null, - "unstuffy": null, - "unsubdued": null, - "unsubstantial": null, - "unsubtle": null, - "unsuitable": null, - "unsuspectingly": null, - "unswervingly": null, - "unsymmetrical": null, - "unsympathetic": null, - "unsystematic": null, - "unsystematizedly": null, - "untactful": null, - "untalented": null, - "untaxing": null, - "unteach": [["B"]], - "unteachable": null, - "untellable": null, - "untenable": null, - "unthinking": null, - "until": [["G"]], - "untiling": null, - "untiringly": null, - "unto": null, - "untouchable's": null, - "untouchables": null, - "untowardness": [["M"]], - "untowardness's": null, - "untraceable": null, - "untrue": null, - "untruthfulness's": null, - "untwist": [["G"]], - "untwisting": null, - "Unukalhai": [["M"]], - "Unukalhai's": null, - "unusualness": [["M"]], - "unusualness's": null, - "unutterable": null, - "unutterably": null, - "unvocalized": [["M", "S"]], - "unvocalized's": null, - "unvocalizeds": null, - "unvulcanized": [["S", "M"]], - "unvulcanizeds": null, - "unvulcanized's": null, - "unwaivering": null, - "unwarrantable": null, - "unwarrantably": null, - "unwashed": [["P", "S"]], - "unwashedness": null, - "unwasheds": null, - "unwearable": null, - "unwearied": [["Y"]], - "unweariedly": null, - "unwed": null, - "unwedge": null, - "unwelcome": null, - "unwell": [["M"]], - "unwell's": null, - "unwieldiness": [["M", "S"]], - "unwieldiness's": null, - "unwieldinesses": null, - "unwieldy": [["T", "P", "R"]], - "unwieldiest": null, - "unwieldier": null, - "unwind": [["B"]], - "unwindable": null, - "unwomanly": null, - "unworkable": [["S"]], - "unworkables": null, - "unworried": null, - "unwrap": null, - "unwrapping": null, - "unyielding": [["Y"]], - "unyieldingly": null, - "unyoke": null, - "unzip": null, - "up": null, - "Upanishads": null, - "uparrow": null, - "upbeat": [["S", "M"]], - "upbeats": null, - "upbeat's": null, - "upbraid": [["G", "D", "R", "S"]], - "upbraiding": null, - "upbraided": null, - "upbraider": null, - "upbraids": null, - "upbringing": [["M"]], - "upbringing's": null, - "upbring": [["J", "G"]], - "upbringings": null, - "UPC": null, - "upchuck": [["S", "D", "G"]], - "upchucks": null, - "upchucked": null, - "upchucking": null, - "upcome": [["G"]], - "upcoming": null, - "upcountry": [["S"]], - "upcountries": null, - "updatability": null, - "updater": [["M"]], - "updater's": null, - "update": [["R", "S", "D", "G"]], - "updates": null, - "updated": null, - "updating": null, - "Updike": [["M"]], - "Updike's": null, - "updraft": [["S", "M"]], - "updrafts": null, - "updraft's": null, - "upend": [["S", "D", "G"]], - "upends": null, - "upended": null, - "upending": null, - "upfield": null, - "upfront": null, - "upgradeable": null, - "upgrade": [["D", "S", "J", "G"]], - "upgraded": null, - "upgrades": null, - "upgradings": null, - "upgrading": null, - "upheaval": [["M", "S"]], - "upheaval's": null, - "upheavals": null, - "upheld": null, - "uphill": [["S"]], - "uphills": null, - "upholder": [["M"]], - "upholder's": null, - "uphold": [["R", "S", "G", "Z"]], - "upholds": null, - "upholding": null, - "upholders": null, - "upholster": [["A", "D", "G", "S"]], - "reupholster": null, - "reupholstered": null, - "reupholstering": null, - "reupholsters": null, - "upholstered": null, - "upholstering": null, - "upholsters": null, - "upholsterer": [["S", "M"]], - "upholsterers": null, - "upholsterer's": null, - "upholstery": [["M", "S"]], - "upholstery's": null, - "upholsteries": null, - "UPI": null, - "upkeep": [["S", "M"]], - "upkeeps": null, - "upkeep's": null, - "uplander": [["M"]], - "uplander's": null, - "upland": [["M", "R", "S"]], - "upland's": null, - "uplands": null, - "uplifter": [["M"]], - "uplifter's": null, - "uplift": [["S", "J", "D", "R", "G"]], - "uplifts": null, - "upliftings": null, - "uplifted": null, - "uplifting": null, - "upload": [["G", "S", "D"]], - "uploading": null, - "uploads": null, - "uploaded": null, - "upmarket": null, - "upon": null, - "upped": null, - "uppercase": [["G", "S", "D"]], - "uppercasing": null, - "uppercases": null, - "uppercased": null, - "upperclassman": [["M"]], - "upperclassman's": null, - "upperclassmen": null, - "uppercut": [["S"]], - "uppercuts": null, - "uppercutting": null, - "uppermost": null, - "upper": [["S"]], - "uppers": null, - "upping": null, - "uppish": null, - "uppity": null, - "upraise": [["G", "D", "S"]], - "upraising": null, - "upraised": null, - "upraises": null, - "uprated": null, - "uprating": null, - "uprear": [["D", "S", "G"]], - "upreared": null, - "uprears": null, - "uprearing": null, - "upright": [["D", "Y", "G", "S", "P"]], - "uprighted": null, - "uprightly": null, - "uprighting": null, - "uprights": null, - "uprightness": [["S"]], - "uprightnesses": null, - "uprise": [["R", "G", "J"]], - "upriser": null, - "uprising": [["M"]], - "uprisings": null, - "uprising's": null, - "upriver": [["S"]], - "uprivers": null, - "uproariousness": [["M"]], - "uproariousness's": null, - "uproarious": [["P", "Y"]], - "uproariously": null, - "uproar": [["M", "S"]], - "uproar's": null, - "uproars": null, - "uproot": [["D", "R", "G", "S"]], - "uprooted": null, - "uprooter": [["M"]], - "uprooting": null, - "uproots": null, - "uprooter's": null, - "ups": null, - "UPS": null, - "upscale": [["G", "D", "S"]], - "upscaling": null, - "upscaled": null, - "upscales": null, - "upset": [["S"]], - "upsets": null, - "upsetting": [["M", "S"]], - "upsetting's": null, - "upsettings": null, - "upshot": [["S", "M"]], - "upshots": null, - "upshot's": null, - "upside": [["M", "S"]], - "upside's": null, - "upsides": null, - "upsilon": [["M", "S"]], - "upsilon's": null, - "upsilons": null, - "upslope": null, - "upstage": [["D", "S", "R", "G"]], - "upstaged": null, - "upstages": null, - "upstager": null, - "upstaging": null, - "upstairs": null, - "upstandingness": [["M"]], - "upstandingness's": null, - "upstanding": [["P"]], - "upstart": [["M", "D", "G", "S"]], - "upstart's": null, - "upstarted": null, - "upstarting": null, - "upstarts": null, - "upstate": [["S", "R"]], - "upstates": null, - "upstater": null, - "upstream": [["D", "S", "G"]], - "upstreamed": null, - "upstreams": null, - "upstreaming": null, - "upstroke": [["M", "S"]], - "upstroke's": null, - "upstrokes": null, - "upsurge": [["D", "S", "G"]], - "upsurged": null, - "upsurges": null, - "upsurging": null, - "upswing": [["G", "M", "S"]], - "upswinging": null, - "upswing's": null, - "upswings": null, - "upswung": null, - "uptake": [["S", "M"]], - "uptakes": null, - "uptake's": null, - "upthrust": [["G", "M", "S"]], - "upthrusting": null, - "upthrust's": null, - "upthrusts": null, - "uptight": null, - "uptime": null, - "Upton": [["M"]], - "Upton's": null, - "uptown": [["R", "S"]], - "uptowner": null, - "uptowns": null, - "uptrend": [["M"]], - "uptrend's": null, - "upturn": [["G", "D", "S"]], - "upturning": null, - "upturned": null, - "upturns": null, - "upwardness": [["M"]], - "upwardness's": null, - "upward": [["S", "Y", "P"]], - "upwards": null, - "upwardly": null, - "upwelling": null, - "upwind": [["S"]], - "upwinds": null, - "uracil": [["M", "S"]], - "uracil's": null, - "uracils": null, - "Ural": [["M", "S"]], - "Ural's": null, - "Urals": null, - "Urania": [["M"]], - "Urania's": null, - "uranium": [["M", "S"]], - "uranium's": null, - "uraniums": null, - "Uranus": [["M"]], - "Uranus's": null, - "uranyl": [["M"]], - "uranyl's": null, - "Urbain": [["M"]], - "Urbain's": null, - "Urbana": [["M"]], - "Urbana's": null, - "urbane": [["Y"]], - "urbanely": null, - "urbanism": [["M"]], - "urbanism's": null, - "urbanite": [["S", "M"]], - "urbanites": null, - "urbanite's": null, - "urbanity": [["S", "M"]], - "urbanities": null, - "urbanity's": null, - "urbanization": [["M", "S"]], - "urbanization's": null, - "urbanizations": null, - "urbanize": [["D", "S", "G"]], - "urbanized": null, - "urbanizes": null, - "urbanizing": null, - "Urban": [["M"]], - "Urban's": null, - "urbanologist": [["S"]], - "urbanologists": null, - "urbanology": [["S"]], - "urbanologies": null, - "Urbano": [["M"]], - "Urbano's": null, - "urban": [["R", "T"]], - "urbaner": null, - "urbanest": null, - "Urbanus": [["M"]], - "Urbanus's": null, - "urchin": [["S", "M"]], - "urchins": null, - "urchin's": null, - "Urdu": [["M"]], - "Urdu's": null, - "urea": [["S", "M"]], - "ureas": null, - "urea's": null, - "uremia": [["M", "S"]], - "uremia's": null, - "uremias": null, - "uremic": null, - "ureter": [["M", "S"]], - "ureter's": null, - "ureters": null, - "urethane": [["M", "S"]], - "urethane's": null, - "urethanes": null, - "urethrae": null, - "urethral": null, - "urethra": [["M"]], - "urethra's": null, - "urethritis": [["M"]], - "urethritis's": null, - "Urey": [["M"]], - "Urey's": null, - "urge": [["G", "D", "R", "S", "J"]], - "urging": null, - "urged": null, - "urger": [["M"]], - "urges": null, - "urgings": null, - "urgency": [["S", "M"]], - "urgencies": null, - "urgency's": null, - "urgent": [["Y"]], - "urgently": null, - "urger's": null, - "Uriah": [["M"]], - "Uriah's": null, - "uric": null, - "Uriel": [["M"]], - "Uriel's": null, - "urinal": [["M", "S"]], - "urinal's": null, - "urinals": null, - "urinalyses": null, - "urinalysis": [["M"]], - "urinalysis's": null, - "urinary": [["M", "S"]], - "urinary's": null, - "urinaries": null, - "urinate": [["X", "D", "S", "N", "G"]], - "urinations": null, - "urinated": null, - "urinates": null, - "urination": [["M"]], - "urinating": null, - "urination's": null, - "urine": [["M", "S"]], - "urine's": null, - "urines": null, - "Uri": [["S", "M"]], - "Uris": null, - "Uri's": null, - "URL": null, - "Ur": [["M"]], - "Ur's": null, - "urning": [["M"]], - "urning's": null, - "urn": [["M", "D", "G", "S"]], - "urn's": null, - "urned": null, - "urns": null, - "urogenital": null, - "urological": null, - "urologist": [["S"]], - "urologists": null, - "urology": [["M", "S"]], - "urology's": null, - "urologies": null, - "Urquhart": [["M"]], - "Urquhart's": null, - "Ursala": [["M"]], - "Ursala's": null, - "Ursa": [["M"]], - "Ursa's": null, - "ursine": null, - "Ursola": [["M"]], - "Ursola's": null, - "Urson": [["M"]], - "Urson's": null, - "Ursula": [["M"]], - "Ursula's": null, - "Ursulina": [["M"]], - "Ursulina's": null, - "Ursuline": [["M"]], - "Ursuline's": null, - "urticaria": [["M", "S"]], - "urticaria's": null, - "urticarias": null, - "Uruguayan": [["S"]], - "Uruguayans": null, - "Uruguay": [["M"]], - "Uruguay's": null, - "Urumqi": null, - "US": null, - "USA": null, - "usability": [["S"]], - "usabilities": null, - "usable": [["U"]], - "unusable": null, - "usably": [["U"]], - "unusably": null, - "USAF": null, - "usage": [["S", "M"]], - "usages": null, - "usage's": null, - "USART": null, - "USCG": null, - "USC": [["M"]], - "USC's": null, - "USDA": null, - "us": [["D", "R", "S", "B", "Z", "G"]], - "used": [["U"]], - "user": [["M"]], - "uses": null, - "users": null, - "using": null, - "unused": null, - "use": [["E", "S", "D", "A", "G"]], - "disuses": null, - "disused": null, - "disusing": null, - "reuses": null, - "reused": null, - "reusing": null, - "usefulness": [["S", "M"]], - "usefulnesses": null, - "usefulness's": null, - "useful": [["Y", "P"]], - "usefully": null, - "uselessness": [["M", "S"]], - "uselessness's": null, - "uselessnesses": null, - "useless": [["P", "Y"]], - "uselessly": null, - "Usenet": [["M"]], - "Usenet's": null, - "Usenix": [["M"]], - "Usenix's": null, - "user's": null, - "USG": [["M"]], - "USG's": null, - "usherette": [["S", "M"]], - "usherettes": null, - "usherette's": null, - "usher": [["S", "G", "M", "D"]], - "ushers": null, - "ushering": null, - "usher's": null, - "ushered": null, - "USIA": null, - "USMC": null, - "USN": null, - "USO": null, - "USP": null, - "USPS": null, - "USS": null, - "USSR": null, - "Ustinov": [["M"]], - "Ustinov's": null, - "usu": null, - "usuals": null, - "usual": [["U", "P", "Y"]], - "unusual": null, - "unusually": null, - "usualness": null, - "usually": null, - "usurer": [["S", "M"]], - "usurers": null, - "usurer's": null, - "usuriousness": [["M"]], - "usuriousness's": null, - "usurious": [["P", "Y"]], - "usuriously": null, - "usurpation": [["M", "S"]], - "usurpation's": null, - "usurpations": null, - "usurper": [["M"]], - "usurper's": null, - "usurp": [["R", "D", "Z", "S", "G"]], - "usurped": null, - "usurpers": null, - "usurps": null, - "usurping": null, - "usury": [["S", "M"]], - "usuries": null, - "usury's": null, - "UT": null, - "Utahan": [["S", "M"]], - "Utahans": null, - "Utahan's": null, - "Utah": [["M"]], - "Utah's": null, - "Uta": [["M"]], - "Uta's": null, - "Ute": [["M"]], - "Ute's": null, - "utensil": [["S", "M"]], - "utensils": null, - "utensil's": null, - "uteri": null, - "uterine": null, - "uterus": [["M"]], - "uterus's": null, - "Utica": [["M"]], - "Utica's": null, - "utile": [["I"]], - "inutile": null, - "utilitarianism": [["M", "S"]], - "utilitarianism's": null, - "utilitarianisms": null, - "utilitarian": [["S"]], - "utilitarians": null, - "utility": [["M", "S"]], - "utility's": null, - "utilities": null, - "utilization": [["M", "S"]], - "utilization's": [["A"]], - "utilizations": null, - "reutilization's": null, - "utilize": [["G", "Z", "D", "R", "S"]], - "utilizing": null, - "utilizers": null, - "utilized": null, - "utilizer": [["M"]], - "utilizes": [["A"]], - "utilizer's": null, - "reutilizes": null, - "utmost": [["S"]], - "utmosts": null, - "Utopia": [["M", "S"]], - "Utopia's": null, - "Utopias": null, - "utopianism": [["M"]], - "utopianism's": null, - "utopian's": null, - "Utopian": [["S"]], - "Utopians": null, - "utopia": [["S"]], - "utopias": null, - "Utrecht": [["M"]], - "Utrecht's": null, - "Utrillo": [["M"]], - "Utrillo's": null, - "utterance": [["M", "S"]], - "utterance's": null, - "utterances": null, - "uttered": [["U"]], - "unuttered": null, - "utterer": [["M"]], - "utterer's": null, - "uttermost": [["S"]], - "uttermosts": null, - "utter": [["T", "R", "D", "Y", "G", "S"]], - "utterest": null, - "utterly": null, - "uttering": null, - "utters": null, - "uucp": [["M"]], - "uucp's": null, - "UV": null, - "uvula": [["M", "S"]], - "uvula's": null, - "uvulas": null, - "uvular": [["S"]], - "uvulars": null, - "uxorious": null, - "Uzbekistan": null, - "Uzbek": [["M"]], - "Uzbek's": null, - "Uzi": [["M"]], - "Uzi's": null, - "V": null, - "VA": null, - "vacancy": [["M", "S"]], - "vacancy's": null, - "vacancies": null, - "vacantness": [["M"]], - "vacantness's": null, - "vacant": [["P", "Y"]], - "vacantly": null, - "vacate": [["N", "G", "X", "S", "D"]], - "vacation": [["M", "R", "D", "Z", "G"]], - "vacating": null, - "vacations": null, - "vacates": null, - "vacated": null, - "vacationist": [["S", "M"]], - "vacationists": null, - "vacationist's": null, - "vacationland": null, - "vacation's": null, - "vacationer": null, - "vacationed": null, - "vacationers": null, - "vacationing": null, - "vaccinate": [["N", "G", "S", "D", "X"]], - "vaccination": [["M"]], - "vaccinating": null, - "vaccinates": null, - "vaccinated": null, - "vaccinations": null, - "vaccination's": null, - "vaccine": [["S", "M"]], - "vaccines": null, - "vaccine's": null, - "vaccinial": null, - "vaccinia": [["M"]], - "vaccinia's": null, - "Vachel": [["M"]], - "Vachel's": null, - "vacillate": [["X", "N", "G", "S", "D"]], - "vacillations": null, - "vacillation": [["M"]], - "vacillating": [["Y"]], - "vacillates": null, - "vacillated": null, - "vacillatingly": null, - "vacillation's": null, - "vacillator": [["S", "M"]], - "vacillators": null, - "vacillator's": null, - "Vaclav": [["M"]], - "Vaclav's": null, - "vacua's": null, - "vacuity": [["M", "S"]], - "vacuity's": null, - "vacuities": null, - "vacuo": null, - "vacuolated": [["U"]], - "unvacuolated": null, - "vacuolate": [["S", "D", "G", "N"]], - "vacuolates": null, - "vacuolating": null, - "vacuolation": null, - "vacuole": [["S", "M"]], - "vacuoles": null, - "vacuole's": null, - "vacuolization": [["S", "M"]], - "vacuolizations": null, - "vacuolization's": null, - "vacuousness": [["M", "S"]], - "vacuousness's": null, - "vacuousnesses": null, - "vacuous": [["P", "Y"]], - "vacuously": null, - "vacuum": [["G", "S", "M", "D"]], - "vacuuming": null, - "vacuums": null, - "vacuum's": null, - "vacuumed": null, - "Vader": [["M"]], - "Vader's": null, - "Vaduz": [["M"]], - "Vaduz's": null, - "vagabondage": [["M", "S"]], - "vagabondage's": null, - "vagabondages": null, - "vagabond": [["D", "M", "S", "G"]], - "vagabonded": null, - "vagabond's": null, - "vagabonds": null, - "vagabonding": null, - "vagarious": null, - "vagary": [["M", "S"]], - "vagary's": null, - "vagaries": null, - "vaginae": null, - "vaginal": [["Y"]], - "vaginally": null, - "vagina": [["M"]], - "vagina's": null, - "vagrancy": [["M", "S"]], - "vagrancy's": null, - "vagrancies": null, - "vagrant": [["S", "M", "Y"]], - "vagrants": null, - "vagrant's": null, - "vagrantly": null, - "vagueing": null, - "vagueness": [["M", "S"]], - "vagueness's": null, - "vaguenesses": null, - "vague": [["T", "Y", "S", "R", "D", "P"]], - "vaguest": null, - "vaguely": null, - "vagues": null, - "vaguer": null, - "vagued": null, - "Vail": [["M"]], - "Vail's": null, - "vaingloriousness": [["M"]], - "vaingloriousness's": null, - "vainglorious": [["Y", "P"]], - "vaingloriously": null, - "vainglory": [["M", "S"]], - "vainglory's": null, - "vainglories": null, - "vain": [["T", "Y", "R", "P"]], - "vainest": null, - "vainly": null, - "vainer": null, - "vainness": null, - "val": null, - "valance": [["S", "D", "M", "G"]], - "valances": null, - "valanced": null, - "valance's": null, - "valancing": null, - "Valaree": [["M"]], - "Valaree's": null, - "Valaria": [["M"]], - "Valaria's": null, - "Valarie": [["M"]], - "Valarie's": null, - "Valdemar": [["M"]], - "Valdemar's": null, - "Valdez": [["M"]], - "Valdez's": null, - "Valeda": [["M"]], - "Valeda's": null, - "valediction": [["M", "S"]], - "valediction's": null, - "valedictions": null, - "valedictorian": [["M", "S"]], - "valedictorian's": null, - "valedictorians": null, - "valedictory": [["M", "S"]], - "valedictory's": null, - "valedictories": null, - "Vale": [["M"]], - "Vale's": null, - "valence": [["S", "M"]], - "valences": null, - "valence's": null, - "Valencia": [["M", "S"]], - "Valencia's": null, - "Valencias": null, - "valency": [["M", "S"]], - "valency's": null, - "valencies": null, - "Valene": [["M"]], - "Valene's": null, - "Valenka": [["M"]], - "Valenka's": null, - "Valentia": [["M"]], - "Valentia's": null, - "Valentijn": [["M"]], - "Valentijn's": null, - "Valentina": [["M"]], - "Valentina's": null, - "Valentine": [["M"]], - "Valentine's": null, - "valentine": [["S", "M"]], - "valentines": null, - "valentine's": null, - "Valentin": [["M"]], - "Valentin's": null, - "Valentino": [["M"]], - "Valentino's": null, - "Valenzuela": [["M"]], - "Valenzuela's": null, - "Valera": [["M"]], - "Valera's": null, - "Valeria": [["M"]], - "Valeria's": null, - "Valerian": [["M"]], - "Valerian's": null, - "Valerie": [["M"]], - "Valerie's": null, - "Valerye": [["M"]], - "Valerye's": null, - "Val�ry": [["M"]], - "Val�ry's": null, - "vale": [["S", "M"]], - "vales": null, - "vale's": null, - "valet": [["G", "D", "M", "S"]], - "valeting": null, - "valeted": null, - "valet's": null, - "valets": null, - "valetudinarianism": [["M", "S"]], - "valetudinarianism's": null, - "valetudinarianisms": null, - "valetudinarian": [["M", "S"]], - "valetudinarian's": null, - "valetudinarians": null, - "Valhalla": [["M"]], - "Valhalla's": null, - "valiance": [["S"]], - "valiances": null, - "valiantness": [["M"]], - "valiantness's": null, - "valiant": [["S", "P", "Y"]], - "valiants": null, - "valiantly": null, - "Valida": [["M"]], - "Valida's": null, - "validated": [["A", "U"]], - "revalidated": null, - "unvalidated": null, - "validate": [["I", "N", "G", "S", "D", "X"]], - "invalidate": null, - "invalidation": null, - "invalidating": null, - "invalidates": null, - "invalidated": null, - "invalidations": null, - "validation": [["A", "M", "I"]], - "validating": null, - "validates": [["A"]], - "validations": null, - "revalidates": null, - "revalidation": null, - "revalidation's": null, - "validation's": null, - "invalidation's": null, - "validity": [["I", "M", "S"]], - "invalidity": null, - "invalidity's": null, - "invalidities": null, - "validity's": null, - "validities": null, - "validnesses": null, - "validness": [["M", "I"]], - "validness's": null, - "invalidness's": null, - "invalidness": null, - "valid": [["P", "I", "Y"]], - "invalidly": null, - "validly": null, - "Valina": [["M"]], - "Valina's": null, - "valise": [["M", "S"]], - "valise's": null, - "valises": null, - "Valium": [["S"]], - "Valiums": null, - "Valkyrie": [["S", "M"]], - "Valkyries": null, - "Valkyrie's": null, - "Vallejo": null, - "Valle": [["M"]], - "Valle's": null, - "Valletta": [["M"]], - "Valletta's": null, - "valley": [["S", "M"]], - "valleys": null, - "valley's": null, - "Vallie": [["M"]], - "Vallie's": null, - "Valli": [["M"]], - "Valli's": null, - "Vally": [["M"]], - "Vally's": null, - "Valma": [["M"]], - "Valma's": null, - "Val": [["M", "Y"]], - "Val's": null, - "Valois": [["M"]], - "Valois's": null, - "valor": [["M", "S"]], - "valor's": null, - "valors": null, - "valorous": [["Y"]], - "valorously": null, - "Valparaiso": [["M"]], - "Valparaiso's": null, - "Valry": [["M"]], - "Valry's": null, - "valuable": [["I", "P"]], - "invaluable": null, - "invaluableness": null, - "valuableness": [["I", "M"]], - "invaluableness's": null, - "valuableness's": null, - "valuables": null, - "valuably": [["I"]], - "invaluably": null, - "valuate": [["N", "G", "X", "S", "D"]], - "valuation": [["C", "S", "A", "M"]], - "valuating": null, - "valuations": null, - "valuates": null, - "valuated": null, - "devaluation": null, - "devaluations": null, - "devaluation's": null, - "revaluations": null, - "revaluation": null, - "revaluation's": null, - "valuation's": null, - "valuator": [["S", "M"]], - "valuators": null, - "valuator's": null, - "value": [["C", "G", "A", "S", "D"]], - "devalue": null, - "devaluing": null, - "devalues": null, - "devalued": null, - "valuing": null, - "revaluing": null, - "revalue": null, - "revalues": null, - "revalued": null, - "values": [["E"]], - "valued": [["U"]], - "unvalued": null, - "valuelessness": [["M"]], - "valuelessness's": null, - "valueless": [["P"]], - "valuer": [["S", "M"]], - "valuers": null, - "valuer's": null, - "value's": null, - "disvalues": null, - "valve": [["G", "M", "S", "D"]], - "valving": null, - "valve's": null, - "valves": null, - "valved": null, - "valveless": null, - "valvular": null, - "Va": [["M"]], - "Va's": null, - "vamoose": [["G", "S", "D"]], - "vamoosing": null, - "vamooses": null, - "vamoosed": null, - "vamp": [["A", "D", "S", "G"]], - "revamp": null, - "revamped": null, - "revamps": null, - "revamping": null, - "vamped": null, - "vamps": null, - "vamping": null, - "vamper": null, - "vampire": [["M", "G", "S", "D"]], - "vampire's": null, - "vampiring": null, - "vampires": null, - "vampired": null, - "vamp's": null, - "vanadium": [["M", "S"]], - "vanadium's": null, - "vanadiums": null, - "Vance": [["M"]], - "Vance's": null, - "Vancouver": [["M"]], - "Vancouver's": null, - "vandalism": [["M", "S"]], - "vandalism's": null, - "vandalisms": null, - "vandalize": [["G", "S", "D"]], - "vandalizing": null, - "vandalizes": null, - "vandalized": null, - "vandal": [["M", "S"]], - "vandal's": null, - "vandals": null, - "Vandal": [["M", "S"]], - "Vandal's": null, - "Vandals": null, - "Vanda": [["M"]], - "Vanda's": null, - "Vandenberg": [["M"]], - "Vandenberg's": null, - "Vanderbilt": [["M"]], - "Vanderbilt's": null, - "Vanderburgh": [["M"]], - "Vanderburgh's": null, - "Vanderpoel": [["M"]], - "Vanderpoel's": null, - "Vandyke": [["S", "M"]], - "Vandykes": null, - "Vandyke's": null, - "vane": [["M", "S"]], - "vane's": null, - "vanes": null, - "Vanessa": [["M"]], - "Vanessa's": null, - "Vang": [["M"]], - "Vang's": null, - "vanguard": [["M", "S"]], - "vanguard's": null, - "vanguards": null, - "Vania": [["M"]], - "Vania's": null, - "vanilla": [["M", "S"]], - "vanilla's": null, - "vanillas": null, - "vanisher": [["M"]], - "vanisher's": null, - "vanish": [["G", "R", "S", "D", "J"]], - "vanishing": [["Y"]], - "vanishes": null, - "vanished": null, - "vanishings": null, - "vanishingly": null, - "vanity": [["S", "M"]], - "vanities": null, - "vanity's": null, - "Van": [["M"]], - "Van's": null, - "Vanna": [["M"]], - "Vanna's": null, - "vanned": null, - "Vannie": [["M"]], - "Vannie's": null, - "Vanni": [["M"]], - "Vanni's": null, - "vanning": null, - "Vanny": [["M"]], - "Vanny's": null, - "vanquisher": [["M"]], - "vanquisher's": null, - "vanquish": [["R", "S", "D", "G", "Z"]], - "vanquishes": null, - "vanquished": null, - "vanquishing": null, - "vanquishers": null, - "van": [["S", "M", "D"]], - "vans": null, - "van's": null, - "vaned": null, - "vantage": [["M", "S"]], - "vantage's": null, - "vantages": null, - "Vanuatu": null, - "Vanya": [["M"]], - "Vanya's": null, - "Vanzetti": [["M"]], - "Vanzetti's": null, - "vapidity": [["M", "S"]], - "vapidity's": null, - "vapidities": null, - "vapidness": [["S", "M"]], - "vapidnesses": null, - "vapidness's": null, - "vapid": [["P", "Y"]], - "vapidly": null, - "vaporer": [["M"]], - "vaporer's": null, - "vaporing": [["M", "Y"]], - "vaporing's": null, - "vaporingly": null, - "vaporisation": null, - "vaporise": [["D", "S", "G"]], - "vaporised": null, - "vaporises": null, - "vaporising": null, - "vaporization": [["A", "M", "S"]], - "revaporization": null, - "revaporization's": null, - "revaporizations": null, - "vaporization's": null, - "vaporizations": null, - "vaporize": [["D", "R", "S", "Z", "G"]], - "vaporized": null, - "vaporizer": [["M"]], - "vaporizes": null, - "vaporizers": null, - "vaporizing": null, - "vaporizer's": null, - "vapor": [["M", "R", "D", "J", "G", "Z", "S"]], - "vapor's": null, - "vapored": null, - "vaporings": null, - "vaporers": null, - "vapors": null, - "vaporous": null, - "vapory": null, - "vaquero": [["S", "M"]], - "vaqueros": null, - "vaquero's": null, - "VAR": null, - "Varanasi": [["M"]], - "Varanasi's": null, - "Varese": [["M"]], - "Varese's": null, - "Vargas": [["M"]], - "Vargas's": null, - "variability": [["I", "M", "S"]], - "invariability": null, - "invariability's": null, - "invariabilities": null, - "variability's": null, - "variabilities": null, - "variableness": [["I", "M"]], - "invariableness's": null, - "variableness's": null, - "variable": [["P", "M", "S"]], - "variable's": null, - "variables": [["I"]], - "invariables": null, - "variably": [["I"]], - "invariably": null, - "variance": [["I"]], - "invariance": null, - "variances": null, - "variance's": null, - "Varian": [["M"]], - "Varian's": null, - "variant": [["I", "S", "Y"]], - "invariants": null, - "invariantly": null, - "variants": null, - "variantly": null, - "variate": [["M", "G", "N", "S", "D", "X"]], - "variate's": null, - "variating": null, - "variation": [["M"]], - "variates": null, - "variated": null, - "variations": null, - "variational": null, - "variation's": null, - "varicolored": [["M", "S"]], - "varicolored's": null, - "varicoloreds": null, - "varicose": [["S"]], - "varicoses": null, - "variedly": null, - "varied": [["U"]], - "unvaried": null, - "variegate": [["N", "G", "X", "S", "D"]], - "variegation": [["M"]], - "variegating": null, - "variegations": null, - "variegates": null, - "variegated": null, - "variegation's": null, - "varier": [["M"]], - "varier's": null, - "varietal": [["S"]], - "varietals": null, - "variety": [["M", "S"]], - "variety's": null, - "varieties": null, - "various": [["P", "Y"]], - "variousness": null, - "variously": null, - "varistor": [["M"]], - "varistor's": null, - "Varityping": [["M"]], - "Varityping's": null, - "varlet": [["M", "S"]], - "varlet's": null, - "varlets": null, - "varmint": [["S", "M"]], - "varmints": null, - "varmint's": null, - "varnished": [["U"]], - "unvarnished": null, - "varnisher": [["M"]], - "varnisher's": null, - "varnish": [["Z", "G", "M", "D", "R", "S"]], - "varnishers": null, - "varnishing": null, - "varnish's": null, - "varnishes": null, - "var": [["S"]], - "vars": null, - "varsity": [["M", "S"]], - "varsity's": null, - "varsities": null, - "varying": [["U", "Y"]], - "unvarying": null, - "unvaryingly": null, - "varyingly": null, - "vary": [["S", "R", "D", "J", "G"]], - "varies": null, - "varyings": null, - "vascular": null, - "vasectomy": [["S", "M"]], - "vasectomies": null, - "vasectomy's": null, - "Vaseline": [["D", "S", "M", "G"]], - "Vaselined": null, - "Vaselines": null, - "Vaseline's": null, - "Vaselining": null, - "vase": [["S", "M"]], - "vases": null, - "vase's": null, - "Vasili": [["M", "S"]], - "Vasili's": null, - "Vasilis": null, - "Vasily": [["M"]], - "Vasily's": null, - "vasomotor": null, - "Vasquez": [["M"]], - "Vasquez's": null, - "vassalage": [["M", "S"]], - "vassalage's": null, - "vassalages": null, - "vassal": [["G", "S", "M", "D"]], - "vassaling": null, - "vassals": null, - "vassal's": null, - "vassaled": null, - "Vassar": [["M"]], - "Vassar's": null, - "Vassili": [["M"]], - "Vassili's": null, - "Vassily": [["M"]], - "Vassily's": null, - "vastness": [["M", "S"]], - "vastness's": null, - "vastnesses": null, - "vast": [["P", "T", "S", "Y", "R"]], - "vastest": null, - "vasts": null, - "vastly": null, - "vaster": null, - "v": [["A", "S", "V"]], - "revs": null, - "vs": null, - "vive": [["Z"]], - "VAT": null, - "Vatican": [["M"]], - "Vatican's": null, - "vat": [["S", "M"]], - "vats": null, - "vat's": null, - "vatted": null, - "vatting": null, - "vaudeville": [["S", "M"]], - "vaudevilles": null, - "vaudeville's": null, - "vaudevillian": [["S", "M"]], - "vaudevillians": null, - "vaudevillian's": null, - "Vaudois": null, - "Vaughan": [["M"]], - "Vaughan's": null, - "Vaughn": [["M"]], - "Vaughn's": null, - "vaulter": [["M"]], - "vaulter's": null, - "vaulting": [["M"]], - "vaulting's": null, - "vault": [["Z", "S", "R", "D", "M", "G", "J"]], - "vaulters": null, - "vaults": null, - "vaulted": null, - "vault's": null, - "vaultings": null, - "vaunter": [["M"]], - "vaunter's": null, - "vaunt": [["G", "R", "D", "S"]], - "vaunting": null, - "vaunted": null, - "vaunts": null, - "VAXes": null, - "Vax": [["M"]], - "Vax's": null, - "VAX": [["M"]], - "VAX's": null, - "Vazquez": [["M"]], - "Vazquez's": null, - "vb": null, - "VCR": null, - "VD": null, - "VDT": null, - "VDU": null, - "vealed": [["A"]], - "vealer": [["M", "A"]], - "vealer's": null, - "revealer's": null, - "revealer": null, - "veal": [["M", "R", "D", "G", "S"]], - "veal's": null, - "vealing": null, - "veals": [["A"]], - "reveals": null, - "Veblen": [["M"]], - "Veblen's": null, - "vectorial": null, - "vectorization": null, - "vectorized": null, - "vectorizing": null, - "vector's": [["F"]], - "convector's": null, - "vector": [["S", "G", "D", "M"]], - "vectors": null, - "vectoring": null, - "vectored": null, - "Veda": [["M", "S"]], - "Veda's": null, - "Vedas": null, - "Vedanta": [["M"]], - "Vedanta's": null, - "veejay": [["S"]], - "veejays": null, - "veep": [["S"]], - "veeps": null, - "veer": [["D", "S", "G"]], - "veered": null, - "veers": null, - "veering": [["Y"]], - "veeringly": null, - "vegan": [["S", "M"]], - "vegans": null, - "vegan's": null, - "Vega": [["S", "M"]], - "Vegas": null, - "Vega's": null, - "Vegemite": [["M"]], - "Vegemite's": null, - "veges": null, - "vegetable": [["M", "S"]], - "vegetable's": null, - "vegetables": null, - "vegetarianism": [["M", "S"]], - "vegetarianism's": null, - "vegetarianisms": null, - "vegetarian": [["S", "M"]], - "vegetarians": null, - "vegetarian's": null, - "vegetate": [["D", "S", "N", "G", "V", "X"]], - "vegetated": null, - "vegetates": null, - "vegetation": [["M"]], - "vegetating": null, - "vegetative": [["P", "Y"]], - "vegetations": null, - "vegetation's": null, - "vegetativeness": null, - "vegetatively": null, - "vegged": null, - "veggie": [["S"]], - "veggies": null, - "vegging": null, - "veg": [["M"]], - "veg's": null, - "vehemence": [["M", "S"]], - "vehemence's": null, - "vehemences": null, - "vehemency": [["S"]], - "vehemencies": null, - "vehement": [["Y"]], - "vehemently": null, - "vehicle": [["S", "M"]], - "vehicles": null, - "vehicle's": null, - "vehicular": null, - "veiling": [["M", "U"]], - "veiling's": null, - "unveiling's": null, - "unveiling": null, - "veil's": null, - "veil": [["U", "G", "S", "D"]], - "unveil": null, - "unveils": null, - "unveiled": null, - "veils": null, - "veiled": null, - "vein": [["G", "S", "R", "D", "M"]], - "veining": [["M"]], - "veins": null, - "veiner": null, - "veined": null, - "vein's": null, - "veining's": null, - "vela": [["M"]], - "vela's": null, - "Vela": [["M"]], - "Vela's": null, - "velarize": [["S", "D", "G"]], - "velarizes": null, - "velarized": null, - "velarizing": null, - "velar": [["S"]], - "velars": null, - "Vel�squez": [["M"]], - "Vel�squez's": null, - "Vel�zquez": null, - "Velcro": [["S", "M"]], - "Velcros": null, - "Velcro's": null, - "veld": [["S", "M"]], - "velds": null, - "veld's": null, - "veldt's": null, - "Velez": [["M"]], - "Velez's": null, - "Vella": [["M"]], - "Vella's": null, - "vellum": [["M", "S"]], - "vellum's": null, - "vellums": null, - "Velma": [["M"]], - "Velma's": null, - "velocipede": [["S", "M"]], - "velocipedes": null, - "velocipede's": null, - "velocity": [["S", "M"]], - "velocities": null, - "velocity's": null, - "velor": [["S"]], - "velors": null, - "velour's": null, - "velum": [["M"]], - "velum's": null, - "Velveeta": [["M"]], - "Velveeta's": null, - "velveteen": [["M", "S"]], - "velveteen's": null, - "velveteens": null, - "velvet": [["G", "S", "M", "D"]], - "velveting": null, - "velvets": null, - "velvet's": null, - "velveted": null, - "Velvet": [["M"]], - "Velvet's": null, - "velvety": [["R", "T"]], - "velvetier": null, - "velvetiest": null, - "venality": [["M", "S"]], - "venality's": null, - "venalities": null, - "venal": [["Y"]], - "venally": null, - "venation": [["S", "M"]], - "venations": null, - "venation's": null, - "vend": [["D", "S", "G"]], - "vended": null, - "vends": null, - "vending": null, - "vender's": [["K"]], - "provender's": null, - "vendetta": [["M", "S"]], - "vendetta's": null, - "vendettas": null, - "vendible": [["S"]], - "vendibles": null, - "vendor": [["M", "S"]], - "vendor's": null, - "vendors": null, - "veneerer": [["M"]], - "veneerer's": null, - "veneer": [["G", "S", "R", "D", "M"]], - "veneering": [["M"]], - "veneers": null, - "veneered": null, - "veneer's": null, - "veneering's": null, - "venerability": [["S"]], - "venerabilities": null, - "venerable": [["P"]], - "venerableness": null, - "venerate": [["X", "N", "G", "S", "D"]], - "venerations": null, - "veneration": [["M"]], - "venerating": null, - "venerates": null, - "venerated": null, - "veneration's": null, - "venereal": null, - "venetian": null, - "Venetian": [["S", "M"]], - "Venetians": null, - "Venetian's": null, - "Venezuela": [["M"]], - "Venezuela's": null, - "Venezuelan": [["S"]], - "Venezuelans": null, - "vengeance": [["M", "S"]], - "vengeance's": null, - "vengeances": null, - "vengeful": [["A", "P", "Y"]], - "revengeful": null, - "revengefulness": null, - "revengefully": null, - "vengefulness": [["A", "M"]], - "vengefully": null, - "revengefulness's": null, - "vengefulness's": null, - "venialness": [["M"]], - "venialness's": null, - "venial": [["Y", "P"]], - "venially": null, - "Venice": [["M"]], - "Venice's": null, - "venireman": [["M"]], - "venireman's": null, - "veniremen": null, - "venison": [["S", "M"]], - "venisons": null, - "venison's": null, - "Venita": [["M"]], - "Venita's": null, - "Venn": [["M"]], - "Venn's": null, - "venomousness": [["M"]], - "venomousness's": null, - "venomous": [["Y", "P"]], - "venomously": null, - "venom": [["S", "G", "D", "M"]], - "venoms": null, - "venoming": null, - "venomed": null, - "venom's": null, - "venous": [["Y"]], - "venously": null, - "venter": [["M"]], - "venter's": null, - "ventilated": [["U"]], - "unventilated": null, - "ventilate": [["X", "S", "D", "V", "G", "N"]], - "ventilations": null, - "ventilates": null, - "ventilative": null, - "ventilating": null, - "ventilation": [["M"]], - "ventilation's": null, - "ventilator": [["M", "S"]], - "ventilator's": null, - "ventilators": null, - "vent": [["I", "S", "G", "F", "D"]], - "vents": null, - "convents": null, - "venting": null, - "conventing": null, - "convent": null, - "convented": null, - "vented": null, - "ventral": [["Y", "S"]], - "ventrally": null, - "ventrals": null, - "ventricle": [["M", "S"]], - "ventricle's": null, - "ventricles": null, - "ventricular": null, - "ventriloquies": null, - "ventriloquism": [["M", "S"]], - "ventriloquism's": null, - "ventriloquisms": null, - "ventriloquist": [["M", "S"]], - "ventriloquist's": null, - "ventriloquists": null, - "ventriloquy": null, - "vent's": [["F"]], - "convent's": null, - "Ventura": [["M"]], - "Ventura's": null, - "venture": [["R", "S", "D", "J", "Z", "G"]], - "venturer": null, - "ventures": null, - "ventured": null, - "venturings": null, - "venturers": null, - "venturing": null, - "venturesomeness": [["S", "M"]], - "venturesomenesses": null, - "venturesomeness's": null, - "venturesome": [["Y", "P"]], - "venturesomely": null, - "venturi": [["S"]], - "venturis": null, - "venturousness": [["M", "S"]], - "venturousness's": null, - "venturousnesses": null, - "venturous": [["Y", "P"]], - "venturously": null, - "venue": [["M", "A", "S"]], - "venue's": null, - "revenue's": null, - "revenues": null, - "venues": null, - "Venusian": [["S"]], - "Venusians": null, - "Venus": [["S"]], - "Venuses": null, - "veraciousness": [["M"]], - "veraciousness's": null, - "veracious": [["Y", "P"]], - "veraciously": null, - "veracities": null, - "veracity": [["I", "M"]], - "inveracity": null, - "inveracity's": null, - "veracity's": null, - "Veracruz": [["M"]], - "Veracruz's": null, - "Veradis": null, - "Vera": [["M"]], - "Vera's": null, - "verandahed": null, - "veranda": [["S", "D", "M"]], - "verandas": null, - "verandaed": null, - "veranda's": null, - "verbalization": [["M", "S"]], - "verbalization's": null, - "verbalizations": null, - "verbalized": [["U"]], - "unverbalized": null, - "verbalizer": [["M"]], - "verbalizer's": null, - "verbalize": [["Z", "G", "R", "S", "D"]], - "verbalizers": null, - "verbalizing": null, - "verbalizes": null, - "verballed": null, - "verballing": null, - "verbal": [["S", "Y"]], - "verbals": null, - "verbally": null, - "verbatim": null, - "verbena": [["M", "S"]], - "verbena's": null, - "verbenas": null, - "verbiage": [["S", "M"]], - "verbiages": null, - "verbiage's": null, - "verb": [["K", "S", "M"]], - "proverbs": null, - "proverb's": null, - "verbs": null, - "verb's": null, - "verbose": [["Y", "P"]], - "verbosely": null, - "verboseness": null, - "verbosity": [["S", "M"]], - "verbosities": null, - "verbosity's": null, - "verboten": null, - "verdant": [["Y"]], - "verdantly": null, - "Verde": [["M"]], - "Verde's": null, - "Verderer": [["M"]], - "Verderer's": null, - "verdict": [["S", "M"]], - "verdicts": null, - "verdict's": null, - "verdigris": [["G", "S", "D", "M"]], - "verdigrising": null, - "verdigrises": null, - "verdigrised": null, - "verdigris's": null, - "Verdi": [["M"]], - "Verdi's": null, - "verdure": [["S", "D", "M"]], - "verdures": null, - "verdured": null, - "verdure's": null, - "Vere": [["M"]], - "Vere's": null, - "Verena": [["M"]], - "Verena's": null, - "Verene": [["M"]], - "Verene's": null, - "verge": [["F", "G", "S", "D"]], - "converge": null, - "converging": null, - "converges": null, - "converged": null, - "verging": null, - "verges": null, - "verged": null, - "Verge": [["M"]], - "Verge's": null, - "verger": [["S", "M"]], - "vergers": null, - "verger's": null, - "verge's": null, - "Vergil's": null, - "veridical": [["Y"]], - "veridically": null, - "Veriee": [["M"]], - "Veriee's": null, - "verifiability": [["M"]], - "verifiability's": null, - "verifiableness": [["M"]], - "verifiableness's": null, - "verifiable": [["U"]], - "unverifiable": null, - "verification": [["S"]], - "verifications": null, - "verified": [["U"]], - "unverified": null, - "verifier": [["M", "S"]], - "verifier's": null, - "verifiers": null, - "verify": [["G", "A", "S", "D"]], - "verifying": null, - "reverifying": null, - "reverify": null, - "reverifies": null, - "reverified": null, - "verifies": null, - "Verile": [["M"]], - "Verile's": null, - "verily": null, - "Verina": [["M"]], - "Verina's": null, - "Verine": [["M"]], - "Verine's": null, - "verisimilitude": [["S", "M"]], - "verisimilitudes": null, - "verisimilitude's": null, - "veritableness": [["M"]], - "veritableness's": null, - "veritable": [["P"]], - "veritably": null, - "verity": [["M", "S"]], - "verity's": null, - "verities": null, - "Verlag": [["M"]], - "Verlag's": null, - "Verlaine": [["M"]], - "Verlaine's": null, - "Verla": [["M"]], - "Verla's": null, - "Vermeer": [["M"]], - "Vermeer's": null, - "vermicelli": [["M", "S"]], - "vermicelli's": null, - "vermicellis": null, - "vermiculite": [["M", "S"]], - "vermiculite's": null, - "vermiculites": null, - "vermiform": null, - "vermilion": [["M", "S"]], - "vermilion's": null, - "vermilions": null, - "vermin": [["M"]], - "vermin's": null, - "verminous": null, - "Vermonter": [["M"]], - "Vermonter's": null, - "Vermont": [["Z", "R", "M"]], - "Vermonters": null, - "Vermont's": null, - "vermouth": [["M"]], - "vermouth's": null, - "vermouths": null, - "vernacular": [["Y", "S"]], - "vernacularly": null, - "vernaculars": null, - "vernal": [["Y"]], - "vernally": null, - "Verna": [["M"]], - "Verna's": null, - "Verne": [["M"]], - "Verne's": null, - "Vernen": [["M"]], - "Vernen's": null, - "Verney": [["M"]], - "Verney's": null, - "Vernice": [["M"]], - "Vernice's": null, - "vernier": [["S", "M"]], - "verniers": null, - "vernier's": null, - "Vern": [["N", "M"]], - "Vern's": null, - "Vernon": [["M"]], - "Vernon's": null, - "Vernor": [["M"]], - "Vernor's": null, - "Verona": [["M"]], - "Verona's": null, - "Veronese": [["M"]], - "Veronese's": null, - "Veronica": [["M"]], - "Veronica's": null, - "veronica": [["S", "M"]], - "veronicas": null, - "veronica's": null, - "Veronika": [["M"]], - "Veronika's": null, - "Veronike": [["M"]], - "Veronike's": null, - "Veronique": [["M"]], - "Veronique's": null, - "verrucae": null, - "verruca": [["M", "S"]], - "verruca's": null, - "verrucas": null, - "versa": null, - "Versailles": [["M"]], - "Versailles's": null, - "Versatec": [["M"]], - "Versatec's": null, - "versatileness": [["M"]], - "versatileness's": null, - "versatile": [["Y", "P"]], - "versatilely": null, - "versatility": [["S", "M"]], - "versatilities": null, - "versatility's": null, - "versed": [["U", "I"]], - "unversed": null, - "inversed": null, - "verse's": null, - "verses": [["I"]], - "inverses": null, - "verse": [["X", "S", "R", "D", "A", "G", "N", "F"]], - "versions": null, - "reversions": null, - "conversions": null, - "reverses": null, - "converses": null, - "verser": null, - "converser": null, - "reversed": null, - "conversed": null, - "reversing": null, - "versing": [["I"]], - "conversing": null, - "version": [["M", "F", "I", "S", "A"]], - "versicle": [["M"]], - "versicle's": null, - "versification": [["M"]], - "versification's": null, - "versifier": [["M"]], - "versifier's": null, - "versify": [["G", "D", "R", "S", "Z", "X", "N"]], - "versifying": null, - "versified": null, - "versifies": null, - "versifiers": null, - "versifications": null, - "inversing": null, - "version's": null, - "inversion's": null, - "reversion's": null, - "inversion": null, - "inversions": null, - "verso": [["S", "M"]], - "versos": null, - "verso's": null, - "versus": null, - "vertebrae": null, - "vertebral": [["Y"]], - "vertebrally": null, - "vertebra": [["M"]], - "vertebra's": null, - "vertebrate": [["I", "M", "S"]], - "invertebrate": null, - "invertebrate's": null, - "invertebrates": null, - "vertebrate's": null, - "vertebrates": null, - "vertebration": [["M"]], - "vertebration's": null, - "vertex": [["S", "M"]], - "vertexes": null, - "vertex's": null, - "vertical": [["Y", "P", "S"]], - "vertically": null, - "verticalness": null, - "verticals": null, - "vertices's": null, - "vertiginous": null, - "vertigoes": null, - "vertigo": [["M"]], - "vertigo's": null, - "verve": [["S", "M"]], - "verves": null, - "verve's": null, - "very": [["R", "T"]], - "verier": null, - "veriest": null, - "Vesalius": [["M"]], - "Vesalius's": null, - "vesicle": [["S", "M"]], - "vesicles": null, - "vesicle's": null, - "vesicular": [["Y"]], - "vesicularly": null, - "vesiculate": [["G", "S", "D"]], - "vesiculating": null, - "vesiculates": null, - "vesiculated": null, - "Vespasian": [["M"]], - "Vespasian's": null, - "vesper": [["S", "M"]], - "vespers": null, - "vesper's": null, - "Vespucci": [["M"]], - "Vespucci's": null, - "vessel": [["M", "S"]], - "vessel's": null, - "vessels": null, - "vestal": [["Y", "S"]], - "vestally": null, - "vestals": null, - "Vesta": [["M"]], - "Vesta's": null, - "vest": [["D", "I", "G", "S", "L"]], - "vested": null, - "vesting": [["S", "M"]], - "vests": null, - "vestment": [["I", "S", "M"]], - "vestibular": null, - "vestibule": [["S", "D", "M"]], - "vestibules": null, - "vestibuled": null, - "vestibule's": null, - "vestige": [["S", "M"]], - "vestiges": null, - "vestige's": null, - "vestigial": [["Y"]], - "vestigially": null, - "vestings": null, - "vesting's": null, - "vestments": null, - "vestment's": null, - "vestryman": [["M"]], - "vestryman's": null, - "vestrymen": null, - "vestry": [["M", "S"]], - "vestry's": null, - "vestries": null, - "vest's": null, - "vesture": [["S", "D", "M", "G"]], - "vestures": null, - "vestured": null, - "vesture's": null, - "vesturing": null, - "Vesuvius": [["M"]], - "Vesuvius's": null, - "vetch": [["S", "M"]], - "vetches": null, - "vetch's": null, - "veteran": [["S", "M"]], - "veterans": null, - "veteran's": null, - "veterinarian": [["M", "S"]], - "veterinarian's": null, - "veterinarians": null, - "veterinary": [["S"]], - "veterinaries": null, - "veter": [["M"]], - "veter's": null, - "veto": [["D", "M", "G"]], - "vetoed": null, - "veto's": null, - "vetoing": null, - "vetoes": null, - "vet": [["S", "M", "R"]], - "vets": null, - "vet's": null, - "vetted": null, - "vetting": [["A"]], - "revetting": null, - "Vevay": [["M"]], - "Vevay's": null, - "vexation": [["S", "M"]], - "vexations": null, - "vexation's": null, - "vexatiousness": [["M"]], - "vexatiousness's": null, - "vexatious": [["P", "Y"]], - "vexatiously": null, - "vexed": [["Y"]], - "vexedly": null, - "vex": [["G", "F", "S", "D"]], - "vexing": null, - "convexing": null, - "convexes": null, - "convexed": null, - "vexes": null, - "VF": null, - "VFW": null, - "VG": null, - "VGA": null, - "vhf": null, - "VHF": null, - "VHS": null, - "VI": null, - "via": null, - "viability": [["S", "M"]], - "viabilities": null, - "viability's": null, - "viable": [["I"]], - "inviable": null, - "viably": null, - "viaduct": [["M", "S"]], - "viaduct's": null, - "viaducts": null, - "Viagra": [["M"]], - "Viagra's": null, - "vial": [["M", "D", "G", "S"]], - "vial's": null, - "vialed": null, - "vialing": null, - "vials": null, - "viand": [["S", "M"]], - "viands": null, - "viand's": null, - "vibe": [["S"]], - "vibes": null, - "vibraharp": [["M", "S"]], - "vibraharp's": null, - "vibraharps": null, - "vibrancy": [["M", "S"]], - "vibrancy's": null, - "vibrancies": null, - "vibrant": [["Y", "S"]], - "vibrantly": null, - "vibrants": null, - "vibraphone": [["M", "S"]], - "vibraphone's": null, - "vibraphones": null, - "vibraphonist": [["S", "M"]], - "vibraphonists": null, - "vibraphonist's": null, - "vibrate": [["X", "N", "G", "S", "D"]], - "vibrations": null, - "vibration": [["M"]], - "vibrating": null, - "vibrates": null, - "vibrated": null, - "vibrational": [["Y"]], - "vibrationally": null, - "vibration's": null, - "vibrato": [["M", "S"]], - "vibrato's": null, - "vibratos": null, - "vibrator": [["S", "M"]], - "vibrators": null, - "vibrator's": null, - "vibratory": null, - "vibrio": [["M"]], - "vibrio's": null, - "vibrionic": null, - "viburnum": [["S", "M"]], - "viburnums": null, - "viburnum's": null, - "vicarage": [["S", "M"]], - "vicarages": null, - "vicarage's": null, - "vicariousness": [["M", "S"]], - "vicariousness's": null, - "vicariousnesses": null, - "vicarious": [["Y", "P"]], - "vicariously": null, - "vicar": [["S", "M"]], - "vicars": null, - "vicar's": null, - "vice": [["C", "M", "S"]], - "device": null, - "device's": null, - "devices": null, - "vice's": null, - "vices": null, - "viced": null, - "vicegerent": [["M", "S"]], - "vicegerent's": null, - "vicegerents": null, - "vicennial": null, - "Vicente": [["M"]], - "Vicente's": null, - "viceregal": null, - "viceroy": [["S", "M"]], - "viceroys": null, - "viceroy's": null, - "Vichy": [["M"]], - "Vichy's": null, - "vichyssoise": [["M", "S"]], - "vichyssoise's": null, - "vichyssoises": null, - "vicing": null, - "vicinity": [["M", "S"]], - "vicinity's": null, - "vicinities": null, - "viciousness": [["S"]], - "viciousnesses": null, - "vicious": [["Y", "P"]], - "viciously": null, - "vicissitude": [["M", "S"]], - "vicissitude's": null, - "vicissitudes": null, - "Vickers": [["M"]], - "Vickers's": null, - "Vickie": [["M"]], - "Vickie's": null, - "Vicki": [["M"]], - "Vicki's": null, - "Vicksburg": [["M"]], - "Vicksburg's": null, - "Vicky": [["M"]], - "Vicky's": null, - "Vick": [["Z", "M"]], - "Vick's": null, - "Vic": [["M"]], - "Vic's": null, - "victimization": [["S", "M"]], - "victimizations": null, - "victimization's": null, - "victimized": [["U"]], - "unvictimized": null, - "victimizer": [["M"]], - "victimizer's": null, - "victimize": [["S", "R", "D", "Z", "G"]], - "victimizes": null, - "victimizers": null, - "victimizing": null, - "victim": [["S", "M"]], - "victims": null, - "victim's": null, - "Victoir": [["M"]], - "Victoir's": null, - "Victoria": [["M"]], - "Victoria's": null, - "Victorianism": [["S"]], - "Victorianisms": null, - "Victorian": [["S"]], - "Victorians": null, - "victoriousness": [["M"]], - "victoriousness's": null, - "victorious": [["Y", "P"]], - "victoriously": null, - "Victor": [["M"]], - "Victor's": null, - "victor": [["S", "M"]], - "victors": null, - "victor's": null, - "victory": [["M", "S"]], - "victory's": null, - "victories": null, - "Victrola": [["S", "M"]], - "Victrolas": null, - "Victrola's": null, - "victualer": [["M"]], - "victualer's": null, - "victual": [["Z", "G", "S", "D", "R"]], - "victualers": null, - "victualing": null, - "victuals": null, - "victualed": null, - "vicu�a": [["S"]], - "vicu�as": null, - "Vidal": [["M"]], - "Vidal's": null, - "Vida": [["M"]], - "Vida's": null, - "videlicet": null, - "videocassette": [["S"]], - "videocassettes": null, - "videoconferencing": null, - "videodisc": [["S"]], - "videodiscs": null, - "videodisk": [["S", "M"]], - "videodisks": null, - "videodisk's": null, - "video": [["G", "S", "M", "D"]], - "videoing": null, - "videos": null, - "video's": null, - "videoed": null, - "videophone": [["S", "M"]], - "videophones": null, - "videophone's": null, - "videotape": [["S", "D", "G", "M"]], - "videotapes": null, - "videotaped": null, - "videotaping": null, - "videotape's": null, - "Vidovic": [["M"]], - "Vidovic's": null, - "Vidovik": [["M"]], - "Vidovik's": null, - "Vienna": [["M"]], - "Vienna's": null, - "Viennese": [["M"]], - "Viennese's": null, - "Vientiane": [["M"]], - "Vientiane's": null, - "vier": [["M"]], - "vier's": null, - "vie": [["S"]], - "vies": null, - "Vietcong": [["M"]], - "Vietcong's": null, - "Viet": [["M"]], - "Viet's": null, - "Vietminh": [["M"]], - "Vietminh's": null, - "Vietnamese": [["M"]], - "Vietnamese's": null, - "Vietnam": [["M"]], - "Vietnam's": null, - "viewed": [["A"]], - "reviewed": null, - "viewer": [["A", "S"]], - "reviewer": null, - "reviewers": null, - "viewers": null, - "viewer's": null, - "viewfinder": [["M", "S"]], - "viewfinder's": null, - "viewfinders": null, - "viewgraph": [["S", "M"]], - "viewgraphes": null, - "viewgraph's": null, - "viewing": [["M"]], - "viewing's": null, - "viewless": [["Y"]], - "viewlessly": null, - "view": [["M", "B", "G", "Z", "J", "S", "R", "D"]], - "view's": null, - "viewable": null, - "viewings": null, - "views": [["A"]], - "viewpoint": [["S", "M"]], - "viewpoints": null, - "viewpoint's": null, - "reviews": null, - "vigesimal": null, - "vigilance": [["M", "S"]], - "vigilance's": null, - "vigilances": null, - "vigilante": [["S", "M"]], - "vigilantes": null, - "vigilante's": null, - "vigilantism": [["M", "S"]], - "vigilantism's": null, - "vigilantisms": null, - "vigilantist": null, - "vigilant": [["Y"]], - "vigilantly": null, - "vigil": [["S", "M"]], - "vigils": null, - "vigil's": null, - "vignette": [["M", "G", "D", "R", "S"]], - "vignette's": null, - "vignetting": [["M"]], - "vignetted": null, - "vignetter": [["M"]], - "vignettes": null, - "vignetter's": null, - "vignetting's": null, - "vignettist": [["M", "S"]], - "vignettist's": null, - "vignettists": null, - "vigor": [["M", "S"]], - "vigor's": null, - "vigors": null, - "vigorousness": [["M"]], - "vigorousness's": null, - "vigorous": [["Y", "P"]], - "vigorously": null, - "vii": null, - "viii": null, - "Vijayawada": [["M"]], - "Vijayawada's": null, - "Viki": [["M"]], - "Viki's": null, - "Viking": [["M", "S"]], - "Viking's": null, - "Vikings": null, - "viking": [["S"]], - "vikings": null, - "Vikki": [["M"]], - "Vikki's": null, - "Vikky": [["M"]], - "Vikky's": null, - "Vikram": [["M"]], - "Vikram's": null, - "Vila": null, - "vile": [["A", "R"]], - "viler": null, - "vilely": null, - "vileness": [["M", "S"]], - "vileness's": null, - "vilenesses": null, - "vilest": null, - "Vilhelmina": [["M"]], - "Vilhelmina's": null, - "vilification": [["M"]], - "vilification's": null, - "vilifier": [["M"]], - "vilifier's": null, - "vilify": [["G", "N", "X", "R", "S", "D"]], - "vilifying": null, - "vilifications": null, - "vilifies": null, - "vilified": null, - "villager": [["M"]], - "villager's": null, - "village": [["R", "S", "M", "Z"]], - "villages": null, - "village's": null, - "villagers": null, - "villainousness": [["M"]], - "villainousness's": null, - "villainous": [["Y", "P"]], - "villainously": null, - "villain": [["S", "M"]], - "villains": null, - "villain's": null, - "villainy": [["M", "S"]], - "villainy's": null, - "villainies": null, - "Villa": [["M"]], - "Villa's": null, - "villa": [["M", "S"]], - "villa's": null, - "villas": null, - "Villarreal": [["M"]], - "Villarreal's": null, - "ville": null, - "villeinage": [["S", "M"]], - "villeinages": null, - "villeinage's": null, - "villein": [["M", "S"]], - "villein's": null, - "villeins": null, - "villi": null, - "Villon": [["M"]], - "Villon's": null, - "villus": [["M"]], - "villus's": null, - "Vilma": [["M"]], - "Vilma's": null, - "Vilnius": [["M"]], - "Vilnius's": null, - "Vilyui": [["M"]], - "Vilyui's": null, - "Vi": [["M"]], - "Vi's": null, - "vi": [["M", "D", "R"]], - "vi's": null, - "vied": null, - "vim": [["M", "S"]], - "vim's": null, - "vims": null, - "vinaigrette": [["M", "S"]], - "vinaigrette's": null, - "vinaigrettes": null, - "Vina": [["M"]], - "Vina's": null, - "Vince": [["M"]], - "Vince's": null, - "Vincent": [["M", "S"]], - "Vincent's": null, - "Vincents": null, - "Vincenty": [["M"]], - "Vincenty's": null, - "Vincenz": [["M"]], - "Vincenz's": null, - "vincible": [["I"]], - "Vinci": [["M"]], - "Vinci's": null, - "Vindemiatrix": [["M"]], - "Vindemiatrix's": null, - "vindicate": [["X", "S", "D", "V", "G", "N"]], - "vindications": null, - "vindicates": null, - "vindicated": null, - "vindicative": null, - "vindicating": null, - "vindication": [["M"]], - "vindication's": null, - "vindicator": [["S", "M"]], - "vindicators": null, - "vindicator's": null, - "vindictiveness": [["M", "S"]], - "vindictiveness's": null, - "vindictivenesses": null, - "vindictive": [["P", "Y"]], - "vindictively": null, - "vinegar": [["D", "M", "S", "G"]], - "vinegared": null, - "vinegar's": null, - "vinegars": null, - "vinegaring": null, - "vinegary": null, - "vine": [["M", "G", "D", "S"]], - "vine's": null, - "vining": null, - "vined": null, - "vines": null, - "vineyard": [["S", "M"]], - "vineyards": null, - "vineyard's": null, - "Vinita": [["M"]], - "Vinita's": null, - "Vin": [["M"]], - "Vin's": null, - "Vinnie": [["M"]], - "Vinnie's": null, - "Vinni": [["M"]], - "Vinni's": null, - "Vinny": [["M"]], - "Vinny's": null, - "vino": [["M", "S"]], - "vino's": null, - "vinos": null, - "vinous": null, - "Vinson": [["M"]], - "Vinson's": null, - "vintage": [["M", "R", "S", "D", "G"]], - "vintage's": null, - "vintager": [["M"]], - "vintages": null, - "vintaged": null, - "vintaging": null, - "vintager's": null, - "vintner": [["M", "S"]], - "vintner's": null, - "vintners": null, - "vinyl": [["S", "M"]], - "vinyls": null, - "vinyl's": null, - "violable": [["I"]], - "inviolable": null, - "Viola": [["M"]], - "Viola's": null, - "Violante": [["M"]], - "Violante's": null, - "viola": [["S", "M"]], - "violas": null, - "viola's": null, - "violate": [["V", "N", "G", "X", "S", "D"]], - "violative": null, - "violation": null, - "violating": null, - "violations": null, - "violates": null, - "violated": null, - "violator": [["M", "S"]], - "violator's": null, - "violators": null, - "Viole": [["M"]], - "Viole's": null, - "violence": [["S", "M"]], - "violences": null, - "violence's": null, - "violent": [["Y"]], - "violently": null, - "Violet": [["M"]], - "Violet's": null, - "violet": [["S", "M"]], - "violets": null, - "violet's": null, - "Violetta": [["M"]], - "Violetta's": null, - "Violette": [["M"]], - "Violette's": null, - "violinist": [["S", "M"]], - "violinists": null, - "violinist's": null, - "violin": [["M", "S"]], - "violin's": null, - "violins": null, - "violist": [["M", "S"]], - "violist's": null, - "violists": null, - "viol": [["M", "S", "B"]], - "viol's": null, - "viols": null, - "violoncellist": [["S"]], - "violoncellists": null, - "violoncello": [["M", "S"]], - "violoncello's": null, - "violoncellos": null, - "viper": [["M", "S"]], - "viper's": null, - "vipers": null, - "viperous": null, - "VIP": [["S"]], - "VIPs": null, - "viragoes": null, - "virago": [["M"]], - "virago's": null, - "viral": [["Y"]], - "virally": null, - "vireo": [["S", "M"]], - "vireos": null, - "vireo's": null, - "Virge": [["M"]], - "Virge's": null, - "Virgie": [["M"]], - "Virgie's": null, - "Virgilio": [["M"]], - "Virgilio's": null, - "Virgil": [["M"]], - "Virgil's": null, - "virginal": [["Y", "S"]], - "virginally": null, - "virginals": null, - "Virgina": [["M"]], - "Virgina's": null, - "Virginia": [["M"]], - "Virginia's": null, - "Virginian": [["S"]], - "Virginians": null, - "Virginie": [["M"]], - "Virginie's": null, - "virginity": [["S", "M"]], - "virginities": null, - "virginity's": null, - "virgin": [["S", "M"]], - "virgins": null, - "virgin's": null, - "Virgo": [["M", "S"]], - "Virgo's": null, - "Virgos": null, - "virgule": [["M", "S"]], - "virgule's": null, - "virgules": null, - "virile": null, - "virility": [["M", "S"]], - "virility's": null, - "virilities": null, - "virologist": [["S"]], - "virologists": null, - "virology": [["S", "M"]], - "virologies": null, - "virology's": null, - "virtual": [["Y"]], - "virtually": null, - "virtue": [["S", "M"]], - "virtues": null, - "virtue's": null, - "virtuosity": [["M", "S"]], - "virtuosity's": null, - "virtuosities": null, - "virtuosoes": null, - "virtuoso": [["M", "S"]], - "virtuoso's": null, - "virtuosos": null, - "virtuousness": [["S", "M"]], - "virtuousnesses": null, - "virtuousness's": null, - "virtuous": [["P", "Y"]], - "virtuously": null, - "virulence": [["S", "M"]], - "virulences": null, - "virulence's": null, - "virulent": [["Y"]], - "virulently": null, - "virus": [["M", "S"]], - "virus's": null, - "viruses": null, - "visage": [["M", "S", "D"]], - "visage's": null, - "visages": null, - "visaged": null, - "Visakhapatnam's": null, - "Visa": [["M"]], - "Visa's": null, - "visa": [["S", "G", "M", "D"]], - "visas": null, - "visaing": null, - "visa's": null, - "visaed": null, - "Visayans": null, - "viscera": null, - "visceral": [["Y"]], - "viscerally": null, - "viscid": [["Y"]], - "viscidly": null, - "viscoelastic": null, - "viscoelasticity": null, - "viscometer": [["S", "M"]], - "viscometers": null, - "viscometer's": null, - "viscose": [["M", "S"]], - "viscose's": null, - "viscoses": null, - "viscosity": [["M", "S"]], - "viscosity's": null, - "viscosities": null, - "viscountcy": [["M", "S"]], - "viscountcy's": null, - "viscountcies": null, - "viscountess": [["S", "M"]], - "viscountesses": null, - "viscountess's": null, - "viscount": [["M", "S"]], - "viscount's": null, - "viscounts": null, - "viscousness": [["M"]], - "viscousness's": null, - "viscous": [["P", "Y"]], - "viscously": null, - "viscus": [["M"]], - "viscus's": null, - "vise": [["C", "A", "X", "N", "G", "S", "D"]], - "devisions": null, - "devision": null, - "devising": null, - "devises": null, - "devised": null, - "revisions": null, - "revision": null, - "revising": null, - "revises": null, - "visions": null, - "vision": [["K", "M", "D", "G", "S"]], - "vising": null, - "vises": null, - "vised": null, - "viselike": null, - "vise's": null, - "Vishnu": [["M"]], - "Vishnu's": null, - "visibility": [["I", "S", "M"]], - "invisibility": null, - "invisibilities": null, - "invisibility's": null, - "visibilities": null, - "visibility's": null, - "visible": [["P", "I"]], - "visibleness": null, - "visibly": [["I"]], - "invisibly": null, - "Visigoth": [["M"]], - "Visigoth's": null, - "Visigoths": null, - "visionariness": [["M"]], - "visionariness's": null, - "visionary": [["P", "S"]], - "visionaries": null, - "provision's": null, - "provisioned": null, - "provisioning": null, - "provisions": null, - "vision's": [["A"]], - "visioned": null, - "visioning": null, - "revision's": null, - "visitable": [["U"]], - "unvisitable": null, - "visitant": [["S", "M"]], - "visitants": null, - "visitant's": null, - "visitation": [["S", "M"]], - "visitations": null, - "visitation's": null, - "visited": [["U"]], - "unvisited": null, - "visit": [["G", "A", "S", "D"]], - "visiting": null, - "revisiting": null, - "revisit": null, - "revisits": null, - "revisited": null, - "visits": null, - "visitor": [["M", "S"]], - "visitor's": null, - "visitors": null, - "vis": [["M", "D", "S", "G", "V"]], - "vis's": null, - "visive": null, - "visor": [["S", "M", "D", "G"]], - "visors": null, - "visor's": null, - "visored": null, - "visoring": null, - "VISTA": null, - "vista": [["G", "S", "D", "M"]], - "vistaing": null, - "vistas": null, - "vistaed": null, - "vista's": null, - "Vistula": [["M"]], - "Vistula's": null, - "visualization": [["A", "M", "S"]], - "revisualization": null, - "revisualization's": null, - "revisualizations": null, - "visualization's": null, - "visualizations": null, - "visualized": [["U"]], - "unvisualized": null, - "visualizer": [["M"]], - "visualizer's": null, - "visualizes": [["A"]], - "revisualizes": null, - "visualize": [["S", "R", "D", "Z", "G"]], - "visualizers": null, - "visualizing": null, - "visual": [["S", "Y"]], - "visuals": null, - "visually": null, - "vitae": null, - "vitality": [["M", "S"]], - "vitality's": null, - "vitalities": null, - "vitalization": [["A", "M", "S"]], - "revitalization": null, - "revitalization's": null, - "revitalizations": null, - "vitalization's": null, - "vitalizations": null, - "vitalize": [["A", "S", "D", "G", "C"]], - "revitalizes": null, - "revitalized": null, - "revitalizing": null, - "vitalizes": null, - "devitalizes": null, - "vitalized": null, - "devitalized": null, - "vitalizing": null, - "devitalizing": null, - "devitalize": null, - "vital": [["S", "Y"]], - "vitals": null, - "vitally": null, - "vita": [["M"]], - "vita's": null, - "Vita": [["M"]], - "Vita's": null, - "vitamin": [["S", "M"]], - "vitamins": null, - "vitamin's": null, - "Vite": [["M"]], - "Vite's": null, - "Vitia": [["M"]], - "Vitia's": null, - "vitiate": [["X", "G", "N", "S", "D"]], - "vitiations": null, - "vitiating": null, - "vitiation": [["M"]], - "vitiates": null, - "vitiated": null, - "vitiation's": null, - "viticulture": [["S", "M"]], - "viticultures": null, - "viticulture's": null, - "viticulturist": [["S"]], - "viticulturists": null, - "Vitim": [["M"]], - "Vitim's": null, - "Vito": [["M"]], - "Vito's": null, - "Vitoria": [["M"]], - "Vitoria's": null, - "vitreous": [["Y", "S", "P"]], - "vitreously": null, - "vitreouses": null, - "vitreousness": null, - "vitrifaction": [["S"]], - "vitrifactions": null, - "vitrification": [["M"]], - "vitrification's": null, - "vitrify": [["X", "D", "S", "N", "G"]], - "vitrifications": null, - "vitrified": null, - "vitrifies": null, - "vitrifying": null, - "vitrine": [["S", "M"]], - "vitrines": null, - "vitrine's": null, - "vitriolic": null, - "vitriol": [["M", "D", "S", "G"]], - "vitriol's": null, - "vitrioled": null, - "vitriols": null, - "vitrioling": null, - "vitro": null, - "vittles": null, - "Vittoria": [["M"]], - "Vittoria's": null, - "Vittorio": [["M"]], - "Vittorio's": null, - "vituperate": [["S", "D", "X", "V", "G", "N"]], - "vituperates": null, - "vituperated": null, - "vituperations": null, - "vituperative": [["Y"]], - "vituperating": null, - "vituperation": [["M"]], - "vituperation's": null, - "vituperatively": null, - "Vitus": [["M"]], - "Vitus's": null, - "vivace": [["S"]], - "vivaces": null, - "vivaciousness": [["M", "S"]], - "vivaciousness's": null, - "vivaciousnesses": null, - "vivacious": [["Y", "P"]], - "vivaciously": null, - "vivacity": [["S", "M"]], - "vivacities": null, - "vivacity's": null, - "viva": [["D", "G", "S"]], - "vivaed": null, - "vivaing": null, - "vivas": null, - "Vivaldi": null, - "Viva": [["M"]], - "Viva's": null, - "vivaria": null, - "vivarium": [["M", "S"]], - "vivarium's": null, - "vivariums": null, - "vivaxes": null, - "Vivekananda": [["M"]], - "Vivekananda's": null, - "vivers": null, - "Vivia": [["M"]], - "Vivia's": null, - "Viviana": [["M"]], - "Viviana's": null, - "Vivian": [["M"]], - "Vivian's": null, - "Vivianna": [["M"]], - "Vivianna's": null, - "Vivianne": [["M"]], - "Vivianne's": null, - "vividness": [["S", "M"]], - "vividnesses": null, - "vividness's": null, - "vivid": [["P", "T", "Y", "R"]], - "vividest": null, - "vividly": null, - "vivider": null, - "Vivie": [["M"]], - "Vivie's": null, - "Viviene": [["M"]], - "Viviene's": null, - "Vivien": [["M"]], - "Vivien's": null, - "Vivienne": [["M"]], - "Vivienne's": null, - "vivifier": null, - "vivify": [["N", "G", "A", "S", "D"]], - "vivification": null, - "vivifying": null, - "revivifying": null, - "revivifies": null, - "revivified": null, - "vivifies": null, - "vivified": null, - "Vivi": [["M", "N"]], - "Vivi's": null, - "viviparous": null, - "vivisect": [["D", "G", "S"]], - "vivisected": null, - "vivisecting": null, - "vivisects": null, - "vivisectional": null, - "vivisectionist": [["S", "M"]], - "vivisectionists": null, - "vivisectionist's": null, - "vivisection": [["M", "S"]], - "vivisection's": null, - "vivisections": null, - "Viviyan": [["M"]], - "Viviyan's": null, - "Viv": [["M"]], - "Viv's": null, - "vivo": null, - "Vivyan": [["M"]], - "Vivyan's": null, - "Vivyanne": [["M"]], - "Vivyanne's": null, - "vixenish": [["Y"]], - "vixenishly": null, - "vixen": [["S", "M"]], - "vixens": null, - "vixen's": null, - "viz": null, - "vizier": [["M", "S"]], - "vizier's": null, - "viziers": null, - "vizor's": null, - "VJ": null, - "Vladamir": [["M"]], - "Vladamir's": null, - "Vladimir": [["M"]], - "Vladimir's": null, - "Vladivostok": [["M"]], - "Vladivostok's": null, - "Vlad": [["M"]], - "Vlad's": null, - "VLF": null, - "VLSI": null, - "VMS": [["M"]], - "VMS's": null, - "VOA": null, - "vocable": [["S", "M"]], - "vocables": null, - "vocable's": null, - "vocab": [["S"]], - "vocabs": null, - "vocabularian": null, - "vocabularianism": null, - "vocabulary": [["M", "S"]], - "vocabulary's": null, - "vocabularies": null, - "vocalic": [["S"]], - "vocalics": null, - "vocalise's": null, - "vocalism": [["M"]], - "vocalism's": null, - "vocalist": [["M", "S"]], - "vocalist's": null, - "vocalists": null, - "vocalization": [["S", "M"]], - "vocalizations": null, - "vocalization's": null, - "vocalized": [["U"]], - "vocalizer": [["M"]], - "vocalizer's": null, - "vocalize": [["Z", "G", "D", "R", "S"]], - "vocalizers": null, - "vocalizing": null, - "vocalizes": null, - "vocal": [["S", "Y"]], - "vocals": null, - "vocally": null, - "vocation": [["A", "K", "M", "I", "S", "F"]], - "revocation": null, - "revocation's": null, - "revocations": null, - "provocation": null, - "provocation's": null, - "provocations": null, - "vocation's": null, - "invocation's": null, - "convocation's": null, - "invocation": null, - "invocations": null, - "vocations": null, - "convocations": null, - "convocation": null, - "vocational": [["Y"]], - "vocationally": null, - "vocative": [["K", "Y", "S"]], - "provocatively": null, - "provocatives": null, - "vocatively": null, - "vocatives": null, - "vociferate": [["N", "G", "X", "S", "D"]], - "vociferation": [["M"]], - "vociferating": null, - "vociferations": null, - "vociferates": null, - "vociferated": null, - "vociferation's": null, - "vociferousness": [["M", "S"]], - "vociferousness's": null, - "vociferousnesses": null, - "vociferous": [["Y", "P"]], - "vociferously": null, - "vocoded": null, - "vocoder": null, - "vodka": [["M", "S"]], - "vodka's": null, - "vodkas": null, - "voe": [["S"]], - "voes": null, - "Vogel": [["M"]], - "Vogel's": null, - "vogue": [["G", "M", "S", "R", "D"]], - "voguing": null, - "vogue's": null, - "vogues": null, - "voguer": null, - "vogued": null, - "vogueing": null, - "voguish": null, - "voiceband": null, - "voiced": [["C", "U"]], - "devoiced": null, - "unvoiced": null, - "voice": [["I", "M", "G", "D", "S"]], - "invoice": null, - "invoice's": null, - "invoicing": null, - "invoiced": null, - "invoices": null, - "voice's": null, - "voicing": [["C"]], - "voices": [["C"]], - "voicelessness": [["S", "M"]], - "voicelessnesses": null, - "voicelessness's": null, - "voiceless": [["Y", "P"]], - "voicelessly": null, - "voicer": [["S"]], - "voicers": null, - "devoices": null, - "devoicing": null, - "voidable": null, - "void": [["C"]], - "devoid": null, - "voided": null, - "voider": [["M"]], - "voider's": null, - "voiding": null, - "voidness": [["M"]], - "voidness's": null, - "voids": null, - "voil�": null, - "voile": [["M", "S"]], - "voile's": null, - "voiles": null, - "volar": null, - "volatileness": [["M"]], - "volatileness's": null, - "volatile": [["P", "S"]], - "volatiles": null, - "volatility": [["M", "S"]], - "volatility's": null, - "volatilities": null, - "volatilization": [["M", "S"]], - "volatilization's": null, - "volatilizations": null, - "volatilize": [["S", "D", "G"]], - "volatilizes": null, - "volatilized": null, - "volatilizing": null, - "volcanically": null, - "volcanic": [["S"]], - "volcanics": null, - "volcanism": [["M"]], - "volcanism's": null, - "volcanoes": null, - "volcano": [["M"]], - "volcano's": null, - "vole": [["M", "S"]], - "vole's": null, - "voles": null, - "Volga": [["M"]], - "Volga's": null, - "Volgograd": [["M"]], - "Volgograd's": null, - "vol": [["G", "S", "D"]], - "voling": null, - "vols": null, - "voled": null, - "volitionality": null, - "volitional": [["Y"]], - "volitionally": null, - "volition": [["M", "S"]], - "volition's": null, - "volitions": null, - "Volkswagen": [["S", "M"]], - "Volkswagens": null, - "Volkswagen's": null, - "volleyball": [["M", "S"]], - "volleyball's": null, - "volleyballs": null, - "volleyer": [["M"]], - "volleyer's": null, - "volley": [["S", "M", "R", "D", "G"]], - "volleys": null, - "volley's": null, - "volleyed": null, - "volleying": null, - "Vol": [["M"]], - "Vol's": null, - "Volstead": [["M"]], - "Volstead's": null, - "voltage": [["S", "M"]], - "voltages": null, - "voltage's": null, - "voltaic": null, - "Voltaire": [["M"]], - "Voltaire's": null, - "Volta": [["M"]], - "Volta's": null, - "volt": [["A", "M", "S"]], - "revolt's": null, - "revolts": null, - "volt's": null, - "volts": null, - "Volterra": [["M"]], - "Volterra's": null, - "voltmeter": [["M", "S"]], - "voltmeter's": null, - "voltmeters": null, - "volubility": [["S"]], - "volubilities": null, - "voluble": [["P"]], - "volubleness": null, - "volubly": null, - "volume": [["S", "D", "G", "M"]], - "volumes": null, - "volumed": null, - "voluming": null, - "volume's": null, - "volumetric": null, - "volumetrically": null, - "voluminousness": [["M", "S"]], - "voluminousness's": null, - "voluminousnesses": null, - "voluminous": [["P", "Y"]], - "voluminously": null, - "voluntarily": [["I"]], - "involuntarily": null, - "voluntariness": [["M", "I"]], - "voluntariness's": null, - "involuntariness's": null, - "voluntarism": [["M", "S"]], - "voluntarism's": null, - "voluntarisms": null, - "voluntary": [["P", "S"]], - "voluntaries": null, - "volunteer": [["D", "M", "S", "G"]], - "volunteered": null, - "volunteer's": null, - "volunteers": null, - "volunteering": null, - "voluptuary": [["S", "M"]], - "voluptuaries": null, - "voluptuary's": null, - "voluptuousness": [["S"]], - "voluptuousnesses": null, - "voluptuous": [["Y", "P"]], - "voluptuously": null, - "volute": [["S"]], - "volutes": null, - "Volvo": [["M"]], - "Volvo's": null, - "vomit": [["G", "R", "D", "S"]], - "vomiting": null, - "vomiter": null, - "vomited": null, - "vomits": null, - "Vonda": [["M"]], - "Vonda's": null, - "Von": [["M"]], - "Von's": null, - "Vonnegut": [["M"]], - "Vonnegut's": null, - "Vonnie": [["M"]], - "Vonnie's": null, - "Vonni": [["M"]], - "Vonni's": null, - "Vonny": [["M"]], - "Vonny's": null, - "voodoo": [["G", "D", "M", "S"]], - "voodooing": null, - "voodooed": null, - "voodoo's": null, - "voodoos": null, - "voodooism": [["S"]], - "voodooisms": null, - "voraciousness": [["M", "S"]], - "voraciousness's": null, - "voraciousnesses": null, - "voracious": [["Y", "P"]], - "voraciously": null, - "voracity": [["M", "S"]], - "voracity's": null, - "voracities": null, - "Voronezh": [["M"]], - "Voronezh's": null, - "Vorster": [["M"]], - "Vorster's": null, - "vortex": [["S", "M"]], - "vortexes": null, - "vortex's": null, - "vortices's": null, - "vorticity": [["M"]], - "vorticity's": null, - "votary": [["M", "S"]], - "votary's": null, - "votaries": null, - "vote": [["C", "S", "D", "G"]], - "devotes": null, - "devoting": null, - "votes": null, - "voted": null, - "voting": null, - "voter": [["S", "M"]], - "voters": null, - "voter's": null, - "vote's": null, - "votive": [["Y", "P"]], - "votively": null, - "votiveness": null, - "voucher": [["G", "M", "D"]], - "vouchering": null, - "voucher's": null, - "vouchered": null, - "vouchsafe": [["S", "D", "G"]], - "vouchsafes": null, - "vouchsafed": null, - "vouchsafing": null, - "vouch": [["S", "R", "D", "G", "Z"]], - "vouches": null, - "vouched": null, - "vouching": null, - "vouchers": null, - "vowelled": null, - "vowelling": null, - "vowel": [["M", "S"]], - "vowel's": null, - "vowels": null, - "vower": [["M"]], - "vower's": null, - "vow": [["S", "M", "D", "R", "G"]], - "vows": null, - "vow's": null, - "vowed": null, - "vowing": null, - "voyage": [["G", "M", "Z", "J", "S", "R", "D"]], - "voyaging": null, - "voyage's": null, - "voyagers": null, - "voyagings": null, - "voyages": null, - "voyager": [["M"]], - "voyaged": null, - "voyager's": null, - "voyageur": [["S", "M"]], - "voyageurs": null, - "voyageur's": null, - "voyeurism": [["M", "S"]], - "voyeurism's": null, - "voyeurisms": null, - "voyeuristic": null, - "voyeur": [["M", "S"]], - "voyeur's": null, - "voyeurs": null, - "VP": null, - "V's": null, - "VT": null, - "Vt": [["M"]], - "Vt's": null, - "VTOL": null, - "vulcanization": [["S", "M"]], - "vulcanizations": null, - "vulcanization's": null, - "vulcanized": [["U"]], - "vulcanize": [["S", "D", "G"]], - "vulcanizes": null, - "vulcanizing": null, - "Vulcan": [["M"]], - "Vulcan's": null, - "vulgarian": [["M", "S"]], - "vulgarian's": null, - "vulgarians": null, - "vulgarism": [["M", "S"]], - "vulgarism's": null, - "vulgarisms": null, - "vulgarity": [["M", "S"]], - "vulgarity's": null, - "vulgarities": null, - "vulgarization": [["S"]], - "vulgarizations": null, - "vulgarize": [["G", "Z", "S", "R", "D"]], - "vulgarizing": null, - "vulgarizers": null, - "vulgarizes": null, - "vulgarizer": null, - "vulgarized": null, - "vulgar": [["T", "S", "Y", "R"]], - "vulgarest": null, - "vulgars": null, - "vulgarly": null, - "vulgarer": null, - "Vulgate": [["S", "M"]], - "Vulgates": null, - "Vulgate's": null, - "Vulg": [["M"]], - "Vulg's": null, - "vulnerability": [["S", "I"]], - "vulnerabilities": null, - "invulnerabilities": null, - "vulnerable": [["I", "P"]], - "invulnerable": null, - "vulnerableness": null, - "vulnerably": [["I"]], - "invulnerably": null, - "vulpine": null, - "vulturelike": null, - "vulture": [["S", "M"]], - "vultures": null, - "vulture's": null, - "vulturous": null, - "vulvae": null, - "vulva": [["M"]], - "vulva's": null, - "vying": null, - "Vyky": [["M"]], - "Vyky's": null, - "WA": null, - "Waals": null, - "Wabash": [["M"]], - "Wabash's": null, - "WAC": null, - "Wacke": [["M"]], - "Wacke's": null, - "wackes": null, - "wackiness": [["M", "S"]], - "wackiness's": null, - "wackinesses": null, - "wacko": [["M", "S"]], - "wacko's": null, - "wackos": null, - "wacky": [["R", "T", "P"]], - "wackier": null, - "wackiest": null, - "Waco": [["M"]], - "Waco's": null, - "Wac": [["S"]], - "Wacs": null, - "wadded": null, - "wadding": [["S", "M"]], - "waddings": null, - "wadding's": null, - "waddle": [["G", "R", "S", "D"]], - "waddling": null, - "waddler": null, - "waddles": null, - "waddled": null, - "Wade": [["M"]], - "Wade's": null, - "wader": [["M"]], - "wader's": null, - "wade": [["S"]], - "wades": null, - "wadi": [["S", "M"]], - "wadis": null, - "wadi's": null, - "wad": [["M", "D", "R", "Z", "G", "S"]], - "wad's": null, - "waded": null, - "waders": null, - "wading": null, - "wads": null, - "Wadsworth": [["M"]], - "Wadsworth's": null, - "wafer": [["G", "S", "M", "D"]], - "wafering": null, - "wafers": null, - "wafer's": null, - "wafered": null, - "waffle": [["G", "M", "Z", "R", "S", "D"]], - "waffling": null, - "waffle's": null, - "wafflers": null, - "waffler": null, - "waffles": null, - "waffled": null, - "Wafs": null, - "wafter": [["M"]], - "wafter's": null, - "waft": [["S", "G", "R", "D"]], - "wafts": null, - "wafting": null, - "wafted": null, - "wag": [["D", "R", "Z", "G", "S"]], - "waged": [["U"]], - "wager": [["G", "Z", "M", "R", "D"]], - "wagers": null, - "waging": null, - "wags": null, - "unwaged": null, - "wagering": null, - "wagerers": null, - "wager's": null, - "wagerer": null, - "wagered": null, - "wage": [["S", "M"]], - "wages": null, - "wage's": null, - "wagged": null, - "waggery": [["M", "S"]], - "waggery's": null, - "waggeries": null, - "wagging": null, - "waggishness": [["S", "M"]], - "waggishnesses": null, - "waggishness's": null, - "waggish": [["Y", "P"]], - "waggishly": null, - "waggle": [["S", "D", "G"]], - "waggles": null, - "waggled": null, - "waggling": null, - "waggly": null, - "Wagnerian": null, - "Wagner": [["M"]], - "Wagner's": null, - "wagoner": [["M"]], - "wagoner's": null, - "wagon": [["S", "G", "Z", "M", "R", "D"]], - "wagons": null, - "wagoning": null, - "wagoners": null, - "wagon's": null, - "wagoned": null, - "wagtail": [["S", "M"]], - "wagtails": null, - "wagtail's": null, - "Wahl": [["M"]], - "Wahl's": null, - "waif": [["S", "G", "D", "M"]], - "waifs": null, - "waifing": null, - "waifed": null, - "waif's": null, - "Waikiki": [["M"]], - "Waikiki's": null, - "wailer": [["M"]], - "wailer's": null, - "wail": [["S", "G", "Z", "R", "D"]], - "wails": null, - "wailing": null, - "wailers": null, - "wailed": null, - "wain": [["G", "S", "D", "M"]], - "waining": null, - "wains": null, - "wained": null, - "wain's": null, - "Wain": [["M"]], - "Wain's": null, - "wainscot": [["S", "G", "J", "D"]], - "wainscots": null, - "wainscoting": null, - "wainscotings": null, - "wainscoted": null, - "Wainwright": [["M"]], - "Wainwright's": null, - "wainwright": [["S", "M"]], - "wainwrights": null, - "wainwright's": null, - "waistband": [["M", "S"]], - "waistband's": null, - "waistbands": null, - "waistcoat": [["G", "D", "M", "S"]], - "waistcoating": null, - "waistcoated": null, - "waistcoat's": null, - "waistcoats": null, - "waister": [["M"]], - "waister's": null, - "waist": [["G", "S", "R", "D", "M"]], - "waisting": null, - "waists": null, - "waisted": null, - "waist's": null, - "waistline": [["M", "S"]], - "waistline's": null, - "waistlines": null, - "Waite": [["M"]], - "Waite's": null, - "waiter": [["D", "M", "G"]], - "waitered": null, - "waiter's": null, - "waitering": null, - "Waiter": [["M"]], - "Waiter's": null, - "wait": [["G", "S", "Z", "J", "R", "D"]], - "waiting": null, - "waits": null, - "waiters": null, - "waitings": null, - "waited": null, - "Wait": [["M", "R"]], - "Wait's": null, - "waitpeople": null, - "waitperson": [["S"]], - "waitpersons": null, - "waitress": [["G", "M", "S", "D"]], - "waitressing": null, - "waitress's": null, - "waitresses": null, - "waitressed": null, - "waiver": [["M", "B"]], - "waiver's": null, - "waiverable": null, - "waive": [["S", "R", "D", "G", "Z"]], - "waives": null, - "waived": null, - "waiving": null, - "waivers": null, - "Wakefield": [["M"]], - "Wakefield's": null, - "wakefulness": [["M", "S"]], - "wakefulness's": null, - "wakefulnesses": null, - "wakeful": [["P", "Y"]], - "wakefully": null, - "Wake": [["M"]], - "Wake's": null, - "wake": [["M", "G", "D", "R", "S", "J"]], - "wake's": null, - "waking": null, - "waked": null, - "waker": [["M"]], - "wakes": null, - "wakings": null, - "waken": [["S", "M", "R", "D", "G"]], - "wakens": null, - "waken's": null, - "wakener": null, - "wakened": null, - "wakening": null, - "waker's": null, - "wakeup": null, - "Waksman": [["M"]], - "Waksman's": null, - "Walbridge": [["M"]], - "Walbridge's": null, - "Walcott": [["M"]], - "Walcott's": null, - "Waldemar": [["M"]], - "Waldemar's": null, - "Walden": [["M"]], - "Walden's": null, - "Waldensian": null, - "Waldheim": [["M"]], - "Waldheim's": null, - "Wald": [["M", "N"]], - "Wald's": null, - "Waldo": [["M"]], - "Waldo's": null, - "Waldon": [["M"]], - "Waldon's": null, - "Waldorf": [["M"]], - "Waldorf's": null, - "wale": [["D", "R", "S", "M", "G"]], - "waled": null, - "waler": null, - "wales": null, - "wale's": null, - "waling": [["M"]], - "Wales": null, - "Walesa": [["M"]], - "Walesa's": null, - "Walford": [["M"]], - "Walford's": null, - "Walgreen": [["M"]], - "Walgreen's": null, - "waling's": null, - "walkabout": [["M"]], - "walkabout's": null, - "walkaway": [["S", "M"]], - "walkaways": null, - "walkaway's": null, - "walker": [["M"]], - "walker's": null, - "Walker": [["M"]], - "Walker's": null, - "walk": [["G", "Z", "S", "B", "J", "R", "D"]], - "walking": null, - "walkers": null, - "walks": null, - "walkable": null, - "walkings": null, - "walked": null, - "walkie": null, - "Walkman": [["S"]], - "Walkmans": null, - "walkout": [["S", "M"]], - "walkouts": null, - "walkout's": null, - "walkover": [["S", "M"]], - "walkovers": null, - "walkover's": null, - "walkway": [["M", "S"]], - "walkway's": null, - "walkways": null, - "wallaby": [["M", "S"]], - "wallaby's": null, - "wallabies": null, - "Wallace": [["M"]], - "Wallace's": null, - "Wallache": [["M"]], - "Wallache's": null, - "wallah": [["M"]], - "wallah's": null, - "Wallas": [["M"]], - "Wallas's": null, - "wallboard": [["M", "S"]], - "wallboard's": null, - "wallboards": null, - "Wallenstein": [["M"]], - "Wallenstein's": null, - "Waller": [["M"]], - "Waller's": null, - "wallet": [["S", "M"]], - "wallets": null, - "wallet's": null, - "walleye": [["M", "S", "D"]], - "walleye's": null, - "walleyes": null, - "walleyed": null, - "wallflower": [["M", "S"]], - "wallflower's": null, - "wallflowers": null, - "Wallie": [["M"]], - "Wallie's": null, - "Wallis": null, - "Walliw": [["M"]], - "Walliw's": null, - "Walloon": [["S", "M"]], - "Walloons": null, - "Walloon's": null, - "walloper": [["M"]], - "walloper's": null, - "walloping": [["M"]], - "walloping's": null, - "wallop": [["R", "D", "S", "J", "G"]], - "walloped": null, - "wallops": null, - "wallopings": null, - "wallower": [["M"]], - "wallower's": null, - "wallow": [["R", "D", "S", "G"]], - "wallowed": null, - "wallows": null, - "wallowing": null, - "wallpaper": [["D", "M", "G", "S"]], - "wallpapered": null, - "wallpaper's": null, - "wallpapering": null, - "wallpapers": null, - "wall": [["S", "G", "M", "R", "D"]], - "walls": null, - "walling": null, - "wall's": null, - "waller": null, - "walled": null, - "Wall": [["S", "M", "R"]], - "Walls": null, - "Wall's": null, - "Wally": [["M"]], - "Wally's": null, - "wally": [["S"]], - "wallies": null, - "walnut": [["S", "M"]], - "walnuts": null, - "walnut's": null, - "Walpole": [["M"]], - "Walpole's": null, - "Walpurgisnacht": null, - "walrus": [["S", "M"]], - "walruses": null, - "walrus's": null, - "Walsh": [["M"]], - "Walsh's": null, - "Walter": [["M"]], - "Walter's": null, - "Walther": [["M"]], - "Walther's": null, - "Walton": [["M"]], - "Walton's": null, - "waltzer": [["M"]], - "waltzer's": null, - "Walt": [["Z", "M", "R"]], - "Walters": null, - "Walt's": null, - "waltz": [["M", "R", "S", "D", "G", "Z"]], - "waltz's": null, - "waltzes": null, - "waltzed": null, - "waltzing": null, - "waltzers": null, - "Walworth": [["M"]], - "Walworth's": null, - "Waly": [["M"]], - "Waly's": null, - "wampum": [["S", "M"]], - "wampums": null, - "wampum's": null, - "Wanamaker": [["M"]], - "Wanamaker's": null, - "Wanda": [["M"]], - "Wanda's": null, - "wanderer": [["M"]], - "wanderer's": null, - "wander": [["J", "Z", "G", "R", "D"]], - "wanderings": null, - "wanderers": null, - "wandering": null, - "wandered": null, - "wanderlust": [["S", "M"]], - "wanderlusts": null, - "wanderlust's": null, - "Wandie": [["M"]], - "Wandie's": null, - "Wandis": [["M"]], - "Wandis's": null, - "wand": [["M", "R", "S", "Z"]], - "wand's": null, - "wands": null, - "wanders": null, - "wane": [["S"]], - "wanes": null, - "Waneta": [["M"]], - "Waneta's": null, - "wangler": [["M"]], - "wangler's": null, - "wangle": [["R", "S", "D", "G", "Z"]], - "wangles": null, - "wangled": null, - "wangling": null, - "wanglers": null, - "Wang": [["M"]], - "Wang's": null, - "Wanids": [["M"]], - "Wanids's": null, - "Wankel": [["M"]], - "Wankel's": null, - "wanna": null, - "wannabe": [["S"]], - "wannabes": null, - "wanned": null, - "wanner": null, - "wanness": [["S"]], - "wannesses": null, - "wannest": null, - "wanning": null, - "wan": [["P", "G", "S", "D", "Y"]], - "waning": null, - "wans": null, - "waned": null, - "wanly": null, - "Wansee": [["M"]], - "Wansee's": null, - "Wansley": [["M"]], - "Wansley's": null, - "wanted": [["U"]], - "unwanted": null, - "wanter": [["M"]], - "wanter's": null, - "want": [["G", "R", "D", "S", "J"]], - "wanting": null, - "wants": null, - "wantings": null, - "wantonness": [["S"]], - "wantonnesses": null, - "wanton": [["P", "G", "S", "R", "D", "Y"]], - "wantoning": null, - "wantons": null, - "wantoner": null, - "wantoned": null, - "wantonly": null, - "wapiti": [["M", "S"]], - "wapiti's": null, - "wapitis": null, - "warble": [["G", "Z", "R", "S", "D"]], - "warbling": null, - "warblers": null, - "warbler": [["M"]], - "warbles": null, - "warbled": null, - "warbler's": null, - "warbonnet": [["S"]], - "warbonnets": null, - "ward": [["A", "G", "M", "R", "D", "S"]], - "reward": null, - "reward's": null, - "rewarder": null, - "rewards": null, - "warding": null, - "ward's": null, - "warder": [["D", "M", "G", "S"]], - "warded": null, - "wards": [["I"]], - "Warde": [["M"]], - "Warde's": null, - "warden": [["D", "M", "G", "S"]], - "wardened": null, - "warden's": null, - "wardening": null, - "wardens": null, - "Warden": [["M"]], - "Warden's": null, - "wardered": null, - "warder's": null, - "wardering": null, - "warders": null, - "Ward": [["M", "N"]], - "Ward's": null, - "wardrobe": [["M", "D", "S", "G"]], - "wardrobe's": null, - "wardrobed": null, - "wardrobes": null, - "wardrobing": null, - "wardroom": [["M", "S"]], - "wardroom's": null, - "wardrooms": null, - "wardship": [["M"]], - "wardship's": null, - "inwards": null, - "warehouseman": [["M"]], - "warehouseman's": null, - "warehouse": [["M", "G", "S", "R", "D"]], - "warehouse's": null, - "warehousing": null, - "warehouses": null, - "warehouser": null, - "warehoused": null, - "Ware": [["M", "G"]], - "Ware's": null, - "Waring": [["M"]], - "ware": [["M", "S"]], - "ware's": null, - "wares": null, - "warfare": [["S", "M"]], - "warfares": null, - "warfare's": null, - "Warfield": [["M"]], - "Warfield's": null, - "war": [["G", "S", "M", "D"]], - "waring": null, - "wars": [["C"]], - "war's": null, - "wared": null, - "warhead": [["M", "S"]], - "warhead's": null, - "warheads": null, - "Warhol": [["M"]], - "Warhol's": null, - "warhorse": [["S", "M"]], - "warhorses": null, - "warhorse's": null, - "warily": [["U"]], - "unwarily": null, - "warinesses": [["U"]], - "unwarinesses": null, - "wariness": [["M", "S"]], - "wariness's": null, - "Waring's": null, - "warless": null, - "warlike": null, - "warlock": [["S", "M"]], - "warlocks": null, - "warlock's": null, - "warlord": [["M", "S"]], - "warlord's": null, - "warlords": null, - "warmblooded": null, - "warmed": [["A"]], - "rewarmed": null, - "warmer": [["M"]], - "warmer's": null, - "warmheartedness": [["S", "M"]], - "warmheartednesses": null, - "warmheartedness's": null, - "warmhearted": [["P", "Y"]], - "warmheartedly": null, - "warmish": null, - "warmness": [["M", "S"]], - "warmness's": null, - "warmnesses": null, - "warmongering": [["M"]], - "warmongering's": null, - "warmonger": [["J", "G", "S", "M"]], - "warmongerings": null, - "warmongers": null, - "warmonger's": null, - "warms": [["A"]], - "rewarms": null, - "warmth": [["M"]], - "warmth's": null, - "warmths": null, - "warm": [["Y", "R", "D", "H", "P", "G", "Z", "T", "S"]], - "warmly": null, - "warming": null, - "warmers": null, - "warmest": null, - "warned": [["U"]], - "unwarned": null, - "warner": [["M"]], - "warner's": null, - "Warner": [["M"]], - "Warner's": null, - "warn": [["G", "R", "D", "J", "S"]], - "warning": [["Y", "M"]], - "warnings": null, - "warns": null, - "warningly": null, - "warning's": null, - "Warnock": [["M"]], - "Warnock's": null, - "warpaint": null, - "warpath": [["M"]], - "warpath's": null, - "warpaths": null, - "warper": [["M"]], - "warper's": null, - "warplane": [["M", "S"]], - "warplane's": null, - "warplanes": null, - "warp": [["M", "R", "D", "G", "S"]], - "warp's": null, - "warped": null, - "warping": null, - "warps": null, - "warranted": [["U"]], - "unwarranted": null, - "warranter": [["M"]], - "warranter's": null, - "warrant": [["G", "S", "M", "D", "R"]], - "warranting": null, - "warrants": null, - "warrant's": null, - "warranty": [["S", "D", "G", "M"]], - "warranties": null, - "warrantied": null, - "warrantying": null, - "warranty's": null, - "warred": [["M"]], - "warred's": null, - "warrener": [["M"]], - "warrener's": null, - "Warren": [["M"]], - "Warren's": null, - "warren": [["S", "Z", "R", "M"]], - "warrens": null, - "warreners": null, - "warren's": null, - "warring": [["M"]], - "warring's": null, - "warrior": [["M", "S"]], - "warrior's": null, - "warriors": null, - "Warsaw": [["M"]], - "Warsaw's": null, - "dewars": null, - "warship": [["M", "S"]], - "warship's": null, - "warships": null, - "warthog": [["S"]], - "warthogs": null, - "wartime": [["S", "M"]], - "wartimes": null, - "wartime's": null, - "wart": [["M", "D", "S"]], - "wart's": null, - "warted": null, - "warts": null, - "warty": [["R", "T"]], - "wartier": null, - "wartiest": null, - "Warwick": [["M"]], - "Warwick's": null, - "wary": [["U", "R", "P", "T"]], - "unwary": null, - "unwarier": null, - "unwariness": null, - "warier": null, - "wariest": null, - "Wasatch": [["M"]], - "Wasatch's": null, - "washable": [["S"]], - "washables": null, - "wash": [["A", "G", "S", "D"]], - "rewash": null, - "rewashing": null, - "rewashes": null, - "rewashed": null, - "washing": [["S", "M"]], - "washes": null, - "washed": [["U"]], - "washbasin": [["S", "M"]], - "washbasins": null, - "washbasin's": null, - "washboard": [["S", "M"]], - "washboards": null, - "washboard's": null, - "washbowl": [["S", "M"]], - "washbowls": null, - "washbowl's": null, - "Washburn": [["M"]], - "Washburn's": null, - "washcloth": [["M"]], - "washcloth's": null, - "washcloths": null, - "washday": [["M"]], - "washday's": null, - "washer": [["G", "D", "M", "S"]], - "washering": null, - "washered": null, - "washer's": null, - "washers": null, - "washerwoman": [["M"]], - "washerwoman's": null, - "washerwomen": null, - "washings": null, - "washing's": null, - "Washingtonian": [["S"]], - "Washingtonians": null, - "Washington": [["M"]], - "Washington's": null, - "Wash": [["M"]], - "Wash's": null, - "Washoe": [["M"]], - "Washoe's": null, - "washout": [["S", "M"]], - "washouts": null, - "washout's": null, - "washrag": [["S", "M"]], - "washrags": null, - "washrag's": null, - "washroom": [["M", "S"]], - "washroom's": null, - "washrooms": null, - "washstand": [["S", "M"]], - "washstands": null, - "washstand's": null, - "washtub": [["M", "S"]], - "washtub's": null, - "washtubs": null, - "washy": [["R", "T"]], - "washier": null, - "washiest": null, - "wasn't": null, - "WASP": null, - "waspishness": [["S", "M"]], - "waspishnesses": null, - "waspishness's": null, - "waspish": [["P", "Y"]], - "waspishly": null, - "Wasp's": null, - "wasp": [["S", "M"]], - "wasps": null, - "wasp's": null, - "was": [["S"]], - "wases": null, - "wassail": [["G", "M", "D", "S"]], - "wassailing": null, - "wassail's": null, - "wassailed": null, - "wassails": null, - "Wasserman": [["M"]], - "Wasserman's": null, - "Wassermann": [["M"]], - "Wassermann's": null, - "wastage": [["S", "M"]], - "wastages": null, - "wastage's": null, - "wastebasket": [["S", "M"]], - "wastebaskets": null, - "wastebasket's": null, - "wastefulness": [["S"]], - "wastefulnesses": null, - "wasteful": [["Y", "P"]], - "wastefully": null, - "wasteland": [["M", "S"]], - "wasteland's": null, - "wastelands": null, - "wastepaper": [["M", "S"]], - "wastepaper's": null, - "wastepapers": null, - "waster": [["D", "G"]], - "wastered": null, - "wastering": null, - "waste": [["S"]], - "wastes": null, - "wastewater": null, - "wast": [["G", "Z", "S", "R", "D"]], - "wasting": [["Y"]], - "wasters": null, - "wasts": null, - "wasted": null, - "wastingly": null, - "wastrel": [["M", "S"]], - "wastrel's": null, - "wastrels": null, - "Watanabe": [["M"]], - "Watanabe's": null, - "watchable": [["U"]], - "unwatchable": null, - "watchband": [["S", "M"]], - "watchbands": null, - "watchband's": null, - "watchdogged": null, - "watchdogging": null, - "watchdog": [["S", "M"]], - "watchdogs": null, - "watchdog's": null, - "watched": [["U"]], - "unwatched": null, - "watcher": [["M"]], - "watcher's": null, - "watchfulness": [["M", "S"]], - "watchfulness's": null, - "watchfulnesses": null, - "watchful": [["P", "Y"]], - "watchfully": null, - "watch": [["J", "R", "S", "D", "G", "Z", "B"]], - "watchings": null, - "watches": null, - "watching": null, - "watchers": null, - "watchmake": [["J", "R", "G", "Z"]], - "watchmakings": null, - "watchmaker": [["M"]], - "watchmaking": null, - "watchmakers": null, - "watchmaker's": null, - "watchman": [["M"]], - "watchman's": null, - "watchmen": null, - "watchpoints": null, - "watchtower": [["M", "S"]], - "watchtower's": null, - "watchtowers": null, - "watchword": [["M", "S"]], - "watchword's": null, - "watchwords": null, - "waterbird": [["S"]], - "waterbirds": null, - "waterborne": null, - "Waterbury": [["M"]], - "Waterbury's": null, - "watercolor": [["D", "M", "G", "S"]], - "watercolored": null, - "watercolor's": null, - "watercoloring": null, - "watercolors": null, - "watercolorist": [["S", "M"]], - "watercolorists": null, - "watercolorist's": null, - "watercourse": [["S", "M"]], - "watercourses": null, - "watercourse's": null, - "watercraft": [["M"]], - "watercraft's": null, - "watercress": [["S", "M"]], - "watercresses": null, - "watercress's": null, - "waterer": [["M"]], - "waterer's": null, - "waterfall": [["S", "M"]], - "waterfalls": null, - "waterfall's": null, - "waterfowl": [["M"]], - "waterfowl's": null, - "waterfront": [["S", "M"]], - "waterfronts": null, - "waterfront's": null, - "Watergate": [["M"]], - "Watergate's": null, - "waterhole": [["S"]], - "waterholes": null, - "Waterhouse": [["M"]], - "Waterhouse's": null, - "wateriness": [["S", "M"]], - "waterinesses": null, - "wateriness's": null, - "watering": [["M"]], - "watering's": null, - "water": [["J", "G", "S", "M", "R", "D"]], - "waterings": null, - "waters": null, - "water's": null, - "watered": null, - "waterless": null, - "waterlily": [["S"]], - "waterlilies": null, - "waterline": [["S"]], - "waterlines": null, - "waterlogged": null, - "waterloo": null, - "Waterloo": [["S", "M"]], - "Waterloos": null, - "Waterloo's": null, - "waterman": [["M"]], - "waterman's": null, - "watermark": [["G", "S", "D", "M"]], - "watermarking": null, - "watermarks": null, - "watermarked": null, - "watermark's": null, - "watermelon": [["S", "M"]], - "watermelons": null, - "watermelon's": null, - "watermill": [["S"]], - "watermills": null, - "waterproof": [["P", "G", "R", "D", "S", "J"]], - "waterproofness": null, - "waterproofing": null, - "waterproofer": null, - "waterproofed": null, - "waterproofs": null, - "waterproofings": null, - "watershed": [["S", "M"]], - "watersheds": null, - "watershed's": null, - "waterside": [["M", "S", "R"]], - "waterside's": null, - "watersides": null, - "watersider": [["M"]], - "watersider's": null, - "Waters": [["M"]], - "Waters's": null, - "waterspout": [["M", "S"]], - "waterspout's": null, - "waterspouts": null, - "watertightness": [["M"]], - "watertightness's": null, - "watertight": [["P"]], - "Watertown": [["M"]], - "Watertown's": null, - "waterway": [["M", "S"]], - "waterway's": null, - "waterways": null, - "waterwheel": [["S"]], - "waterwheels": null, - "waterworks": [["M"]], - "waterworks's": null, - "watery": [["P", "R", "T"]], - "waterier": null, - "wateriest": null, - "Watkins": null, - "WATS": null, - "Watson": [["M"]], - "Watson's": null, - "wattage": [["S", "M"]], - "wattages": null, - "wattage's": null, - "Watteau": [["M"]], - "Watteau's": null, - "Wattenberg": [["M"]], - "Wattenberg's": null, - "Watterson": [["M"]], - "Watterson's": null, - "wattle": [["S", "D", "G", "M"]], - "wattles": null, - "wattled": null, - "wattling": null, - "wattle's": null, - "Watt": [["M", "S"]], - "Watt's": null, - "Watts": null, - "watt": [["T", "M", "R", "S"]], - "wattest": null, - "watt's": null, - "watter": null, - "watts": null, - "Watusi": [["M"]], - "Watusi's": null, - "Wat": [["Z", "M"]], - "Wat's": null, - "Waugh": [["M"]], - "Waugh's": null, - "Waukesha": [["M"]], - "Waukesha's": null, - "Waunona": [["M"]], - "Waunona's": null, - "Waupaca": [["M"]], - "Waupaca's": null, - "Waupun": [["M"]], - "Waupun's": null, - "Wausau": [["M"]], - "Wausau's": null, - "Wauwatosa": [["M"]], - "Wauwatosa's": null, - "waveband": [["M", "S"]], - "waveband's": null, - "wavebands": null, - "waveform": [["S", "M"]], - "waveforms": null, - "waveform's": null, - "wavefront": [["M", "S"]], - "wavefront's": null, - "wavefronts": null, - "waveguide": [["M", "S"]], - "waveguide's": null, - "waveguides": null, - "Waveland": [["M"]], - "Waveland's": null, - "wavelength": [["M"]], - "wavelength's": null, - "wavelengths": null, - "wavelet": [["S", "M"]], - "wavelets": null, - "wavelet's": null, - "wavelike": null, - "wavenumber": null, - "waver": [["G", "Z", "R", "D"]], - "wavering": [["Y", "U"]], - "waverers": null, - "waverer": null, - "wavered": null, - "waveringly": null, - "unwaveringly": null, - "unwavering": null, - "Waverley": [["M"]], - "Waverley's": null, - "Waverly": [["M"]], - "Waverly's": null, - "Wave": [["S"]], - "Waves": null, - "wave": [["Z", "G", "D", "R", "S"]], - "wavers": null, - "waving": null, - "waved": null, - "waves": null, - "wavily": null, - "waviness": [["M", "S"]], - "waviness's": null, - "wavinesses": null, - "wavy": [["S", "R", "T", "P"]], - "wavies": null, - "wavier": null, - "waviest": null, - "waxer": [["M"]], - "waxer's": null, - "waxiness": [["M", "S"]], - "waxiness's": null, - "waxinesses": null, - "wax": [["M", "N", "D", "R", "S", "Z", "G"]], - "wax's": null, - "waxen": null, - "waxed": null, - "waxes": null, - "waxers": null, - "waxing": null, - "waxwing": [["M", "S"]], - "waxwing's": null, - "waxwings": null, - "waxwork": [["M", "S"]], - "waxwork's": null, - "waxworks": null, - "waxy": [["P", "R", "T"]], - "waxier": null, - "waxiest": null, - "wayfarer": [["M", "S"]], - "wayfarer's": null, - "wayfarers": null, - "wayfaring": [["S"]], - "wayfarings": null, - "waylaid": null, - "Wayland": [["M"]], - "Wayland's": null, - "Waylan": [["M"]], - "Waylan's": null, - "waylayer": [["M"]], - "waylayer's": null, - "waylay": [["G", "R", "S", "Z"]], - "waylaying": null, - "waylays": null, - "waylayers": null, - "wayleave": [["M", "S"]], - "wayleave's": null, - "wayleaves": null, - "Waylen": [["M"]], - "Waylen's": null, - "Waylin": [["M"]], - "Waylin's": null, - "Waylon": [["M"]], - "Waylon's": null, - "Way": [["M"]], - "Way's": null, - "waymarked": null, - "way": [["M", "S"]], - "way's": null, - "ways": null, - "Wayne": [["M"]], - "Wayne's": null, - "Waynesboro": [["M"]], - "Waynesboro's": null, - "wayside": [["M", "S"]], - "wayside's": null, - "waysides": null, - "waywardness": [["S"]], - "waywardnesses": null, - "wayward": [["Y", "P"]], - "waywardly": null, - "WC": null, - "we": null, - "weakener": [["M"]], - "weakener's": null, - "weaken": [["Z", "G", "R", "D"]], - "weakeners": null, - "weakening": null, - "weakened": null, - "weakfish": [["S", "M"]], - "weakfishes": null, - "weakfish's": null, - "weakish": null, - "weakliness": [["M"]], - "weakliness's": null, - "weakling": [["S", "M"]], - "weaklings": null, - "weakling's": null, - "weakly": [["R", "T", "P"]], - "weaklier": null, - "weakliest": null, - "weakness": [["M", "S"]], - "weakness's": null, - "weaknesses": null, - "weak": [["T", "X", "P", "Y", "R", "N"]], - "weakest": null, - "weakens": null, - "weaker": null, - "weal": [["M", "H", "S"]], - "weal's": null, - "wealth": [["M"]], - "weals": null, - "wealthiness": [["M", "S"]], - "wealthiness's": null, - "wealthinesses": null, - "wealth's": null, - "wealths": null, - "wealthy": [["P", "T", "R"]], - "wealthiest": null, - "wealthier": null, - "weaner": [["M"]], - "weaner's": null, - "weanling": [["M"]], - "weanling's": null, - "wean": [["R", "D", "G", "S"]], - "weaned": null, - "weaning": null, - "weans": null, - "weapon": [["G", "D", "M", "S"]], - "weaponing": null, - "weaponed": null, - "weapon's": null, - "weapons": null, - "weaponless": null, - "weaponry": [["M", "S"]], - "weaponry's": null, - "weaponries": null, - "wearable": [["S"]], - "wearables": null, - "wearer": [["M"]], - "wearer's": null, - "wearied": [["U"]], - "wearily": null, - "weariness": [["M", "S"]], - "weariness's": null, - "wearinesses": null, - "wearing": [["Y"]], - "wearingly": null, - "wearisomeness": [["M"]], - "wearisomeness's": null, - "wearisome": [["Y", "P"]], - "wearisomely": null, - "wear": [["R", "B", "S", "J", "G", "Z"]], - "wears": null, - "wearings": null, - "wearers": null, - "wearying": [["Y"]], - "wearyingly": null, - "weary": [["T", "G", "P", "R", "S", "D"]], - "weariest": null, - "wearier": null, - "wearies": null, - "weasel": [["S", "G", "M", "D", "Y"]], - "weasels": null, - "weaseling": null, - "weasel's": null, - "weaseled": null, - "weaselly": null, - "weatherbeaten": null, - "weathercock": [["S", "D", "M", "G"]], - "weathercocks": null, - "weathercocked": null, - "weathercock's": null, - "weathercocking": null, - "weatherer": [["M"]], - "weatherer's": null, - "Weatherford": [["M"]], - "Weatherford's": null, - "weathering": [["M"]], - "weathering's": null, - "weatherize": [["G", "S", "D"]], - "weatherizing": null, - "weatherizes": null, - "weatherized": null, - "weatherman": [["M"]], - "weatherman's": null, - "weather": [["M", "D", "R", "Y", "J", "G", "S"]], - "weather's": null, - "weathered": null, - "weatherly": null, - "weatherings": null, - "weathers": null, - "weathermen": null, - "weatherperson": [["S"]], - "weatherpersons": null, - "weatherproof": [["S", "G", "P", "D"]], - "weatherproofs": null, - "weatherproofing": null, - "weatherproofness": null, - "weatherproofed": null, - "weatherstripped": null, - "weatherstripping": [["S"]], - "weatherstrippings": null, - "weatherstrip": [["S"]], - "weatherstrips": null, - "weaver": [["M"]], - "weaver's": null, - "Weaver": [["M"]], - "Weaver's": null, - "weaves": [["A"]], - "reweaves": null, - "weave": [["S", "R", "D", "G", "Z"]], - "weaved": null, - "weaving": [["A"]], - "weavers": null, - "reweaving": null, - "webbed": null, - "Webber": [["M"]], - "Webber's": null, - "webbing": [["M", "S"]], - "webbing's": null, - "webbings": null, - "Webb": [["R", "M"]], - "Webb's": null, - "weber": [["M"]], - "weber's": null, - "Weber": [["M"]], - "Weber's": null, - "Webern": [["M"]], - "Webern's": null, - "webfeet": null, - "webfoot": [["M"]], - "webfoot's": null, - "Web": [["M", "R"]], - "Web's": null, - "website": [["S"]], - "websites": null, - "web": [["S", "M", "R"]], - "webs": null, - "web's": null, - "Webster": [["M", "S"]], - "Webster's": null, - "Websters": null, - "Websterville": [["M"]], - "Websterville's": null, - "we'd": null, - "wedded": [["A"]], - "rewedded": null, - "Weddell": [["M"]], - "Weddell's": null, - "wedder": null, - "wedding": [["S", "M"]], - "weddings": null, - "wedding's": null, - "wedge": [["S", "D", "G", "M"]], - "wedges": null, - "wedged": null, - "wedging": null, - "wedge's": null, - "wedgie": [["R", "S", "T"]], - "wedgier": null, - "wedgies": null, - "wedgiest": null, - "Wedgwood": [["M"]], - "Wedgwood's": null, - "wedlock": [["S", "M"]], - "wedlocks": null, - "wedlock's": null, - "Wed": [["M"]], - "Wed's": null, - "Wednesday": [["S", "M"]], - "Wednesdays": null, - "Wednesday's": null, - "wed": [["S", "A"]], - "weds": null, - "reweds": null, - "rewed": null, - "weeder": [["M"]], - "weeder's": null, - "weediness": [["M"]], - "weediness's": null, - "weedkiller": [["M"]], - "weedkiller's": null, - "weedless": null, - "wee": [["D", "R", "S", "T"]], - "weed": [["S", "G", "M", "R", "D", "Z"]], - "weer": null, - "wees": null, - "weest": null, - "weeds": null, - "weeding": null, - "weed's": null, - "weeded": null, - "weeders": null, - "weedy": [["T", "R", "P"]], - "weediest": null, - "weedier": null, - "weeing": null, - "weekday": [["M", "S"]], - "weekday's": null, - "weekdays": null, - "weekender": [["M"]], - "weekender's": null, - "weekend": [["S", "D", "R", "M", "G"]], - "weekends": null, - "weekended": null, - "weekend's": null, - "weekending": null, - "weekly": [["S"]], - "weeklies": null, - "weeknight": [["S", "M"]], - "weeknights": null, - "weeknight's": null, - "Weeks": [["M"]], - "Weeks's": null, - "week": [["S", "Y", "M"]], - "weeks": null, - "week's": null, - "weenie": [["M"]], - "weenie's": null, - "ween": [["S", "G", "D"]], - "weens": null, - "weening": null, - "weened": null, - "weeny": [["R", "S", "M", "T"]], - "weenier": null, - "weenies": null, - "weeny's": null, - "weeniest": null, - "weeper": [["M"]], - "weeper's": null, - "weep": [["S", "G", "Z", "J", "R", "D"]], - "weeps": null, - "weeping": null, - "weepers": null, - "weepings": null, - "weeped": null, - "weepy": [["R", "S", "T"]], - "weepier": null, - "weepies": null, - "weepiest": null, - "weevil": [["M", "S"]], - "weevil's": null, - "weevils": null, - "weft": [["S", "G", "M", "D"]], - "wefts": null, - "wefting": null, - "weft's": null, - "wefted": null, - "Wehr": [["M"]], - "Wehr's": null, - "Weibull": [["M"]], - "Weibull's": null, - "Weidar": [["M"]], - "Weidar's": null, - "Weider": [["M"]], - "Weider's": null, - "Weidman": [["M"]], - "Weidman's": null, - "Weierstrass": [["M"]], - "Weierstrass's": null, - "weighed": [["U", "A"]], - "unweighed": null, - "reweighed": null, - "weigher": [["M"]], - "weigher's": null, - "weigh": [["R", "D", "J", "G"]], - "weighings": null, - "weighing": null, - "weighs": [["A"]], - "reweighs": null, - "weighted": [["U"]], - "unweighted": null, - "weighter": [["M"]], - "weighter's": null, - "weightily": null, - "weightiness": [["S", "M"]], - "weightinesses": null, - "weightiness's": null, - "weighting": [["M"]], - "weighting's": null, - "weight": [["J", "M", "S", "R", "D", "G"]], - "weightings": null, - "weight's": null, - "weights": null, - "weightlessness": [["S", "M"]], - "weightlessnesses": null, - "weightlessness's": null, - "weightless": [["Y", "P"]], - "weightlessly": null, - "weightlifter": [["S"]], - "weightlifters": null, - "weightlifting": [["M", "S"]], - "weightlifting's": null, - "weightliftings": null, - "weighty": [["T", "P", "R"]], - "weightiest": null, - "weightier": null, - "Weill": [["M"]], - "Weill's": null, - "Wei": [["M"]], - "Wei's": null, - "Weinberg": [["M"]], - "Weinberg's": null, - "Weiner": [["M"]], - "Weiner's": null, - "Weinstein": [["M"]], - "Weinstein's": null, - "weirdie": [["S", "M"]], - "weirdies": null, - "weirdie's": null, - "weirdness": [["M", "S"]], - "weirdness's": null, - "weirdnesses": null, - "weirdo": [["S", "M"]], - "weirdos": null, - "weirdo's": null, - "weird": [["Y", "R", "D", "P", "G", "T", "S"]], - "weirdly": null, - "weirder": null, - "weirded": null, - "weirding": null, - "weirdest": null, - "weirds": null, - "weir": [["S", "D", "M", "G"]], - "weirs": null, - "weired": null, - "weir's": null, - "weiring": null, - "Weisenheimer": [["M"]], - "Weisenheimer's": null, - "Weiss": [["M"]], - "Weiss's": null, - "Weissman": [["M"]], - "Weissman's": null, - "Weissmuller": [["M"]], - "Weissmuller's": null, - "Weizmann": [["M"]], - "Weizmann's": null, - "Welbie": [["M"]], - "Welbie's": null, - "Welby": [["M"]], - "Welby's": null, - "Welcher": [["M"]], - "Welcher's": null, - "Welches": null, - "welcomeness": [["M"]], - "welcomeness's": null, - "welcome": [["P", "R", "S", "D", "Y", "G"]], - "welcomer": null, - "welcomes": null, - "welcomed": null, - "welcomely": null, - "welcoming": [["U"]], - "unwelcoming": null, - "welder": [["M"]], - "welder's": null, - "Weldon": [["M"]], - "Weldon's": null, - "weld": [["S", "B", "J", "G", "Z", "R", "D"]], - "welds": null, - "weldable": null, - "weldings": null, - "welding": null, - "welders": null, - "welded": null, - "Weldwood": [["M"]], - "Weldwood's": null, - "welfare": [["S", "M"]], - "welfares": null, - "welfare's": null, - "welkin": [["S", "M"]], - "welkins": null, - "welkin's": null, - "we'll": null, - "Welland": [["M"]], - "Welland's": null, - "wellbeing": [["M"]], - "wellbeing's": null, - "Weller": [["M"]], - "Weller's": null, - "Wellesley": [["M"]], - "Wellesley's": null, - "Welles": [["M"]], - "Welles's": null, - "wellhead": [["S", "M"]], - "wellheads": null, - "wellhead's": null, - "Wellington": [["M", "S"]], - "Wellington's": null, - "Wellingtons": null, - "wellington": [["S"]], - "wellingtons": null, - "Wellman": [["M"]], - "Wellman's": null, - "wellness": [["M", "S"]], - "wellness's": null, - "wellnesses": null, - "well": [["S", "G", "P", "D"]], - "wells": null, - "welling": null, - "welled": null, - "Wells": [["M"]], - "Wells's": null, - "wellspring": [["S", "M"]], - "wellsprings": null, - "wellspring's": null, - "Wellsville": [["M"]], - "Wellsville's": null, - "Welmers": [["M"]], - "Welmers's": null, - "Welsh": null, - "welsher": [["M"]], - "welsher's": null, - "Welshman": [["M"]], - "Welshman's": null, - "Welshmen": null, - "welsh": [["R", "S", "D", "G", "Z"]], - "welshes": null, - "welshed": null, - "welshing": null, - "welshers": null, - "Welshwoman": [["M"]], - "Welshwoman's": null, - "Welshwomen": null, - "welter": [["G", "D"]], - "weltering": null, - "weltered": null, - "welterweight": [["M", "S"]], - "welterweight's": null, - "welterweights": null, - "welt": [["G", "Z", "S", "M", "R", "D"]], - "welting": null, - "welters": null, - "welts": null, - "welt's": null, - "welted": null, - "wencher": [["M"]], - "wencher's": null, - "wench": [["G", "R", "S", "D", "M"]], - "wenching": null, - "wenches": null, - "wenched": null, - "wench's": null, - "Wendall": [["M"]], - "Wendall's": null, - "Wenda": [["M"]], - "Wenda's": null, - "wend": [["D", "S", "G"]], - "wended": null, - "wends": null, - "wending": null, - "Wendeline": [["M"]], - "Wendeline's": null, - "Wendell": [["M"]], - "Wendell's": null, - "Wendel": [["M"]], - "Wendel's": null, - "Wendie": [["M"]], - "Wendie's": null, - "Wendi": [["M"]], - "Wendi's": null, - "Wendye": [["M"]], - "Wendye's": null, - "Wendy": [["M"]], - "Wendy's": null, - "wen": [["M"]], - "wen's": null, - "Wenonah": [["M"]], - "Wenonah's": null, - "Wenona": [["M"]], - "Wenona's": null, - "went": null, - "Wentworth": [["M"]], - "Wentworth's": null, - "wept": [["U"]], - "unwept": null, - "were": null, - "we're": null, - "weren't": null, - "werewolf": [["M"]], - "werewolf's": null, - "werewolves": null, - "Werner": [["M"]], - "Werner's": null, - "Wernher": [["M"]], - "Wernher's": null, - "Werther": [["M"]], - "Werther's": null, - "werwolf's": null, - "Wes": null, - "Wesleyan": null, - "Wesley": [["M"]], - "Wesley's": null, - "Wessex": [["M"]], - "Wessex's": null, - "Wesson": [["M"]], - "Wesson's": null, - "westbound": null, - "Westbrooke": [["M"]], - "Westbrooke's": null, - "Westbrook": [["M"]], - "Westbrook's": null, - "Westchester": [["M"]], - "Westchester's": null, - "wester": [["D", "Y", "G"]], - "westered": null, - "westerly": [["S"]], - "westering": null, - "westerlies": null, - "westerner": [["M"]], - "westerner's": null, - "westernization": [["M", "S"]], - "westernization's": null, - "westernizations": null, - "westernize": [["G", "S", "D"]], - "westernizing": null, - "westernizes": null, - "westernized": null, - "westernmost": null, - "Western": [["Z", "R", "S"]], - "Westerners": null, - "Westerner": null, - "Westerns": null, - "western": [["Z", "S", "R"]], - "westerners": null, - "westerns": null, - "Westfield": [["M"]], - "Westfield's": null, - "Westhampton": [["M"]], - "Westhampton's": null, - "Westinghouse": [["M"]], - "Westinghouse's": null, - "westing": [["M"]], - "westing's": null, - "Westleigh": [["M"]], - "Westleigh's": null, - "Westley": [["M"]], - "Westley's": null, - "Westminster": [["M"]], - "Westminster's": null, - "Westmore": [["M"]], - "Westmore's": null, - "West": [["M", "S"]], - "West's": null, - "Wests": null, - "Weston": [["M"]], - "Weston's": null, - "Westphalia": [["M"]], - "Westphalia's": null, - "Westport": [["M"]], - "Westport's": null, - "west": [["R", "D", "G", "S", "M"]], - "wested": null, - "wests": null, - "west's": null, - "westward": [["S"]], - "westwards": null, - "Westwood": [["M"]], - "Westwood's": null, - "wetback": [["M", "S"]], - "wetback's": null, - "wetbacks": null, - "wetland": [["S"]], - "wetlands": null, - "wetness": [["M", "S"]], - "wetness's": null, - "wetnesses": null, - "wet": [["S", "P", "Y"]], - "wets": null, - "wetly": null, - "wettable": null, - "wetter": [["S"]], - "wetters": null, - "wettest": null, - "wetting": null, - "we've": null, - "Weyden": [["M"]], - "Weyden's": null, - "Weyerhauser": [["M"]], - "Weyerhauser's": null, - "Weylin": [["M"]], - "Weylin's": null, - "Wezen": [["M"]], - "Wezen's": null, - "WFF": null, - "whacker": [["M"]], - "whacker's": null, - "whack": [["G", "Z", "R", "D", "S"]], - "whacking": null, - "whackers": null, - "whacked": null, - "whacks": null, - "whaleboat": [["M", "S"]], - "whaleboat's": null, - "whaleboats": null, - "whalebone": [["S", "M"]], - "whalebones": null, - "whalebone's": null, - "whale": [["G", "S", "R", "D", "Z", "M"]], - "whaling": [["M"]], - "whales": null, - "whaler": [["M"]], - "whaled": null, - "whalers": null, - "whale's": null, - "Whalen": [["M"]], - "Whalen's": null, - "whaler's": null, - "whaling's": null, - "whammed": null, - "whamming": [["M"]], - "whamming's": null, - "wham": [["M", "S"]], - "wham's": null, - "whams": null, - "whammy": [["S"]], - "whammies": null, - "wharf": [["S", "G", "M", "D"]], - "wharfs": null, - "wharfing": null, - "wharf's": null, - "wharfed": null, - "Wharton": [["M"]], - "Wharton's": null, - "wharves": null, - "whatchamacallit": [["M", "S"]], - "whatchamacallit's": null, - "whatchamacallits": null, - "what'd": null, - "whatever": null, - "what": [["M", "S"]], - "what's": null, - "whats": null, - "whatnot": [["M", "S"]], - "whatnot's": null, - "whatnots": null, - "what're": null, - "whatsoever": null, - "wheal": [["M", "S"]], - "wheal's": null, - "wheals": null, - "wheatgerm": null, - "Wheaties": [["M"]], - "Wheaties's": null, - "Wheatland": [["M"]], - "Wheatland's": null, - "wheat": [["N", "M", "X", "S"]], - "wheaten": null, - "wheat's": null, - "wheatens": null, - "wheats": null, - "Wheaton": [["M"]], - "Wheaton's": null, - "Wheatstone": [["M"]], - "Wheatstone's": null, - "wheedle": [["Z", "D", "R", "S", "G"]], - "wheedlers": null, - "wheedled": null, - "wheedler": null, - "wheedles": null, - "wheedling": null, - "wheelbarrow": [["G", "S", "D", "M"]], - "wheelbarrowing": null, - "wheelbarrows": null, - "wheelbarrowed": null, - "wheelbarrow's": null, - "wheelbase": [["M", "S"]], - "wheelbase's": null, - "wheelbases": null, - "wheelchair": [["M", "S"]], - "wheelchair's": null, - "wheelchairs": null, - "wheeler": [["M"]], - "wheeler's": null, - "Wheeler": [["M"]], - "Wheeler's": null, - "wheelhouse": [["S", "M"]], - "wheelhouses": null, - "wheelhouse's": null, - "wheelie": [["M", "S"]], - "wheelie's": null, - "wheelies": null, - "wheeling": [["M"]], - "wheeling's": null, - "Wheeling": [["M"]], - "Wheeling's": null, - "Wheelock": [["M"]], - "Wheelock's": null, - "wheel": [["R", "D", "M", "J", "S", "G", "Z"]], - "wheeled": null, - "wheel's": null, - "wheelings": null, - "wheels": null, - "wheelers": null, - "wheelwright": [["M", "S"]], - "wheelwright's": null, - "wheelwrights": null, - "whee": [["S"]], - "whees": null, - "wheeze": [["S", "D", "G"]], - "wheezes": null, - "wheezed": null, - "wheezing": null, - "wheezily": null, - "wheeziness": [["S", "M"]], - "wheezinesses": null, - "wheeziness's": null, - "wheezy": [["P", "R", "T"]], - "wheezier": null, - "wheeziest": null, - "Whelan": [["M"]], - "Whelan's": null, - "whelk": [["M", "D", "S"]], - "whelk's": null, - "whelked": null, - "whelks": null, - "Wheller": [["M"]], - "Wheller's": null, - "whelm": [["D", "G", "S"]], - "whelmed": null, - "whelming": null, - "whelms": null, - "whelp": [["D", "M", "G", "S"]], - "whelped": null, - "whelp's": null, - "whelping": null, - "whelps": null, - "whence": [["S"]], - "whences": null, - "whenever": null, - "when": [["S"]], - "whens": null, - "whensoever": null, - "whereabout": [["S"]], - "whereabouts": null, - "whereas": [["S"]], - "whereases": null, - "whereat": null, - "whereby": null, - "where'd": null, - "wherefore": [["M", "S"]], - "wherefore's": null, - "wherefores": null, - "wherein": null, - "where": [["M", "S"]], - "where's": null, - "wheres": null, - "whereof": null, - "whereon": null, - "where're": null, - "wheresoever": null, - "whereto": null, - "whereupon": null, - "wherever": null, - "wherewith": null, - "wherewithal": [["S", "M"]], - "wherewithals": null, - "wherewithal's": null, - "wherry": [["D", "S", "G", "M"]], - "wherried": null, - "wherries": null, - "wherrying": null, - "wherry's": null, - "whether": null, - "whet": [["S"]], - "whets": null, - "whetstone": [["M", "S"]], - "whetstone's": null, - "whetstones": null, - "whetted": null, - "whetting": null, - "whew": [["G", "S", "D"]], - "whewing": null, - "whews": null, - "whewed": null, - "whey": [["M", "S"]], - "whey's": null, - "wheys": null, - "which": null, - "whichever": null, - "whiff": [["G", "S", "M", "D"]], - "whiffing": null, - "whiffs": null, - "whiff's": null, - "whiffed": null, - "whiffle": [["D", "R", "S", "G"]], - "whiffled": null, - "whiffler": [["M"]], - "whiffles": null, - "whiffling": null, - "whiffler's": null, - "whiffletree": [["S", "M"]], - "whiffletrees": null, - "whiffletree's": null, - "whig": [["S"]], - "whigs": null, - "Whig": [["S", "M"]], - "Whigs": null, - "Whig's": null, - "while": [["G", "S", "D"]], - "whiling": null, - "whiles": null, - "whiled": null, - "whilom": null, - "whilst": null, - "whimmed": null, - "whimming": null, - "whimper": [["D", "S", "G"]], - "whimpered": null, - "whimpers": null, - "whimpering": null, - "whimsey's": null, - "whimsicality": [["M", "S"]], - "whimsicality's": null, - "whimsicalities": null, - "whimsical": [["Y", "P"]], - "whimsically": null, - "whimsicalness": null, - "whim": [["S", "M"]], - "whims": null, - "whim's": null, - "whimsy": [["T", "M", "D", "R", "S"]], - "whimsiest": null, - "whimsy's": null, - "whimsied": null, - "whimsier": null, - "whimsies": null, - "whine": [["G", "Z", "M", "S", "R", "D"]], - "whining": [["Y"]], - "whiners": null, - "whine's": null, - "whines": null, - "whiner": null, - "whined": null, - "whiningly": null, - "whinny": [["G", "T", "D", "R", "S"]], - "whinnying": null, - "whinniest": null, - "whinnied": null, - "whinnier": null, - "whinnies": null, - "whiny": [["R", "T"]], - "whinier": null, - "whiniest": null, - "whipcord": [["S", "M"]], - "whipcords": null, - "whipcord's": null, - "whiplash": [["S", "D", "M", "G"]], - "whiplashes": null, - "whiplashed": null, - "whiplash's": null, - "whiplashing": null, - "Whippany": [["M"]], - "Whippany's": null, - "whipped": null, - "whipper": [["M", "S"]], - "whipper's": null, - "whippers": null, - "whippersnapper": [["M", "S"]], - "whippersnapper's": null, - "whippersnappers": null, - "whippet": [["M", "S"]], - "whippet's": null, - "whippets": null, - "whipping": [["S", "M"]], - "whippings": null, - "whipping's": null, - "Whipple": [["M"]], - "Whipple's": null, - "whippletree": [["S", "M"]], - "whippletrees": null, - "whippletree's": null, - "whippoorwill": [["S", "M"]], - "whippoorwills": null, - "whippoorwill's": null, - "whipsaw": [["G", "D", "M", "S"]], - "whipsawing": null, - "whipsawed": null, - "whipsaw's": null, - "whipsaws": null, - "whips": [["M"]], - "whips's": null, - "whip": [["S", "M"]], - "whip's": null, - "whirligig": [["M", "S"]], - "whirligig's": null, - "whirligigs": null, - "whirlpool": [["M", "S"]], - "whirlpool's": null, - "whirlpools": null, - "whirl": [["R", "D", "G", "S"]], - "whirler": null, - "whirled": null, - "whirling": null, - "whirls": null, - "whirlwind": [["M", "S"]], - "whirlwind's": null, - "whirlwinds": null, - "whirlybird": [["M", "S"]], - "whirlybird's": null, - "whirlybirds": null, - "whirly": [["M", "S"]], - "whirly's": null, - "whirlies": null, - "whirred": null, - "whirring": null, - "whir": [["S", "Y"]], - "whirs": null, - "whisker": [["D", "M"]], - "whiskered": null, - "whisker's": null, - "whiskery": null, - "whiskey": [["S", "M"]], - "whiskeys": null, - "whiskey's": null, - "whisk": [["G", "Z", "R", "D", "S"]], - "whisking": null, - "whiskers": null, - "whisked": null, - "whisks": null, - "whisperer": [["M"]], - "whisperer's": null, - "whisper": [["G", "R", "D", "J", "Z", "S"]], - "whispering": [["Y", "M"]], - "whispered": null, - "whisperings": null, - "whisperers": null, - "whispers": null, - "whisperingly": null, - "whispering's": null, - "whist": [["G", "D", "M", "S"]], - "whisting": null, - "whisted": null, - "whist's": null, - "whists": null, - "whistleable": null, - "whistle": [["D", "R", "S", "Z", "G"]], - "whistled": null, - "whistler": [["M"]], - "whistles": null, - "whistlers": null, - "whistling": [["M"]], - "whistler's": null, - "Whistler": [["M"]], - "Whistler's": null, - "whistling's": null, - "Whitaker": [["M"]], - "Whitaker's": null, - "Whitby": [["M"]], - "Whitby's": null, - "Whitcomb": [["M"]], - "Whitcomb's": null, - "whitebait": [["M"]], - "whitebait's": null, - "whitecap": [["M", "S"]], - "whitecap's": null, - "whitecaps": null, - "whiteface": [["M"]], - "whiteface's": null, - "Whitefield": [["M"]], - "Whitefield's": null, - "whitefish": [["S", "M"]], - "whitefishes": null, - "whitefish's": null, - "Whitehall": [["M"]], - "Whitehall's": null, - "Whitehead": [["M"]], - "Whitehead's": null, - "whitehead": [["S"]], - "whiteheads": null, - "Whitehorse": [["M"]], - "Whitehorse's": null, - "Whiteleaf": [["M"]], - "Whiteleaf's": null, - "Whiteley": [["M"]], - "Whiteley's": null, - "White": [["M", "S"]], - "White's": null, - "Whites": null, - "whitener": [["M"]], - "whitener's": null, - "whiteness": [["M", "S"]], - "whiteness's": null, - "whitenesses": null, - "whitening": [["M"]], - "whitening's": null, - "whiten": [["J", "Z", "D", "R", "G"]], - "whitenings": null, - "whiteners": null, - "whitened": null, - "whiteout": [["S"]], - "whiteouts": null, - "white": [["P", "Y", "S"]], - "whitely": null, - "whites": null, - "whitespace": null, - "whitetail": [["S"]], - "whitetails": null, - "whitewall": [["S", "M"]], - "whitewalls": null, - "whitewall's": null, - "whitewash": [["G", "R", "S", "D", "M"]], - "whitewashing": null, - "whitewasher": null, - "whitewashes": null, - "whitewashed": null, - "whitewash's": null, - "whitewater": null, - "Whitewater": [["M"]], - "Whitewater's": null, - "whitey": [["M", "S"]], - "whitey's": null, - "whiteys": null, - "Whitfield": [["M"]], - "Whitfield's": null, - "whither": [["D", "G", "S"]], - "whithered": null, - "whithering": null, - "whithers": null, - "whitier": null, - "whitiest": null, - "whiting": [["M"]], - "whiting's": null, - "whitish": null, - "Whitley": [["M"]], - "Whitley's": null, - "Whitlock": [["M"]], - "Whitlock's": null, - "Whit": [["M"]], - "Whit's": null, - "Whitman": [["M"]], - "Whitman's": null, - "Whitney": [["M"]], - "Whitney's": null, - "whit": [["S", "J", "G", "T", "X", "M", "R", "N", "D"]], - "whits": null, - "whitings": null, - "whitest": null, - "whitens": null, - "whit's": null, - "whiter": null, - "whited": null, - "Whitsunday": [["M", "S"]], - "Whitsunday's": null, - "Whitsundays": null, - "Whittaker": [["M"]], - "Whittaker's": null, - "whitter": null, - "Whittier": null, - "whittle": [["J", "D", "R", "S", "Z", "G"]], - "whittlings": null, - "whittled": null, - "whittler": [["M"]], - "whittles": null, - "whittlers": null, - "whittling": null, - "whittler's": null, - "whiz": null, - "whizkid": null, - "whizzbang": [["S"]], - "whizzbangs": null, - "whizzed": null, - "whizzes": null, - "whizzing": null, - "WHO": null, - "whoa": [["S"]], - "whoas": null, - "who'd": null, - "whodunit": [["S", "M"]], - "whodunits": null, - "whodunit's": null, - "whoever": null, - "wholegrain": null, - "wholeheartedness": [["M", "S"]], - "wholeheartedness's": null, - "wholeheartednesses": null, - "wholehearted": [["P", "Y"]], - "wholeheartedly": null, - "wholemeal": null, - "wholeness": [["S"]], - "wholenesses": null, - "wholesale": [["G", "Z", "M", "S", "R", "D"]], - "wholesaling": null, - "wholesalers": null, - "wholesale's": null, - "wholesales": null, - "wholesaler": [["M"]], - "wholesaled": null, - "wholesaler's": null, - "wholesomeness": [["U", "S", "M"]], - "unwholesomeness": null, - "unwholesomenesses": null, - "unwholesomeness's": null, - "wholesomenesses": null, - "wholesomeness's": null, - "wholesome": [["U", "Y", "P"]], - "unwholesome": null, - "unwholesomely": null, - "wholesomely": null, - "whole": [["S", "P"]], - "wholes": null, - "wholewheat": null, - "who'll": null, - "wholly": null, - "whom": null, - "who": [["M"]], - "who's": null, - "whomever": null, - "whomsoever": null, - "whoopee": [["S"]], - "whoopees": null, - "whooper": [["M"]], - "whooper's": null, - "whoop": [["S", "R", "D", "G", "Z"]], - "whoops": null, - "whooped": null, - "whooping": null, - "whoopers": null, - "whoosh": [["D", "S", "G", "M"]], - "whooshed": null, - "whooshes": null, - "whooshing": null, - "whoosh's": null, - "whop": null, - "whopper": [["M", "S"]], - "whopper's": null, - "whoppers": null, - "whopping": [["S"]], - "whoppings": null, - "who're": null, - "whorehouse": [["S", "M"]], - "whorehouses": null, - "whorehouse's": null, - "whoreish": null, - "whore": [["S", "D", "G", "M"]], - "whores": null, - "whored": null, - "whoring": null, - "whore's": null, - "whorish": null, - "whorl": [["S", "D", "M"]], - "whorls": null, - "whorled": null, - "whorl's": null, - "whose": null, - "whoso": null, - "whosoever": null, - "who've": null, - "why": null, - "whys": null, - "WI": null, - "Wiatt": [["M"]], - "Wiatt's": null, - "Wichita": [["M"]], - "Wichita's": null, - "wickedness": [["M", "S"]], - "wickedness's": null, - "wickednesses": null, - "wicked": [["R", "Y", "P", "T"]], - "wickeder": null, - "wickedly": null, - "wickedest": null, - "wicker": [["M"]], - "wicker's": null, - "wickerwork": [["M", "S"]], - "wickerwork's": null, - "wickerworks": null, - "wicketkeeper": [["S", "M"]], - "wicketkeepers": null, - "wicketkeeper's": null, - "wicket": [["S", "M"]], - "wickets": null, - "wicket's": null, - "wick": [["G", "Z", "R", "D", "M", "S"]], - "wicking": [["M"]], - "wickers": null, - "wick's": null, - "wicks": null, - "wicking's": null, - "widemouthed": null, - "widener": [["M"]], - "widener's": null, - "wideness": [["S"]], - "widenesses": null, - "widen": [["S", "G", "Z", "R", "D"]], - "widens": null, - "widening": null, - "wideners": null, - "widened": null, - "wide": [["R", "S", "Y", "T", "P"]], - "wider": null, - "wides": null, - "widely": null, - "widest": null, - "widespread": null, - "widgeon's": null, - "widget": [["S", "M"]], - "widgets": null, - "widget's": null, - "widower": [["M"]], - "widower's": null, - "widowhood": [["S"]], - "widowhoods": null, - "widow": [["M", "R", "D", "S", "G", "Z"]], - "widow's": null, - "widowed": null, - "widows": null, - "widowing": null, - "widowers": null, - "width": [["M"]], - "width's": null, - "widths": null, - "widthwise": null, - "Wieland": [["M"]], - "Wieland's": null, - "wielder": [["M"]], - "wielder's": null, - "wield": [["G", "Z", "R", "D", "S"]], - "wielding": null, - "wielders": null, - "wielded": null, - "wields": null, - "Wiemar": [["M"]], - "Wiemar's": null, - "wiener": [["S", "M"]], - "wieners": null, - "wiener's": null, - "wienie": [["S", "M"]], - "wienies": null, - "wienie's": null, - "Wier": [["M"]], - "Wier's": null, - "Wiesel": [["M"]], - "Wiesel's": null, - "wife": [["D", "S", "M", "Y", "G"]], - "wifed": null, - "wifes": null, - "wife's": null, - "wifely": [["R", "P", "T"]], - "wifing": null, - "wifeless": null, - "wifelier": null, - "wifeliness": null, - "wifeliest": null, - "wigeon": [["M", "S"]], - "wigeon's": null, - "wigeons": null, - "wigged": null, - "wigging": [["M"]], - "wigging's": null, - "Wiggins": null, - "wiggler": [["M"]], - "wiggler's": null, - "wiggle": [["R", "S", "D", "G", "Z"]], - "wiggles": null, - "wiggled": null, - "wiggling": null, - "wigglers": null, - "wiggly": [["R", "T"]], - "wigglier": null, - "wiggliest": null, - "wight": [["S", "G", "D", "M"]], - "wights": null, - "wighting": null, - "wighted": null, - "wight's": null, - "wiglet": [["S"]], - "wiglets": null, - "wigmaker": null, - "wig": [["M", "S"]], - "wig's": null, - "wigs": null, - "Wigner": [["M"]], - "Wigner's": null, - "wigwagged": null, - "wigwagging": null, - "wigwag": [["S"]], - "wigwags": null, - "wigwam": [["M", "S"]], - "wigwam's": null, - "wigwams": null, - "Wilberforce": [["M"]], - "Wilberforce's": null, - "Wilbert": [["M"]], - "Wilbert's": null, - "Wilbur": [["M"]], - "Wilbur's": null, - "Wilburn": [["M"]], - "Wilburn's": null, - "Wilburt": [["M"]], - "Wilburt's": null, - "Wilcox": [["M"]], - "Wilcox's": null, - "Wilda": [["M"]], - "Wilda's": null, - "wildcat": [["S", "M"]], - "wildcats": null, - "wildcat's": null, - "wildcatted": null, - "wildcatter": [["M", "S"]], - "wildcatter's": null, - "wildcatters": null, - "wildcatting": null, - "wildebeest": [["S", "M"]], - "wildebeests": null, - "wildebeest's": null, - "Wilde": [["M", "R"]], - "Wilde's": null, - "Wilder": [["M"]], - "Wilden": [["M"]], - "Wilden's": null, - "Wilder's": null, - "wilderness": [["S", "M"]], - "wildernesses": null, - "wilderness's": null, - "wilder": [["P"]], - "wildfire": [["M", "S"]], - "wildfire's": null, - "wildfires": null, - "wildflower": [["S"]], - "wildflowers": null, - "wildfowl": [["M"]], - "wildfowl's": null, - "wilding": [["M"]], - "wilding's": null, - "wildlife": [["M"]], - "wildlife's": null, - "wildness": [["M", "S"]], - "wildness's": null, - "wildnesses": null, - "Wildon": [["M"]], - "Wildon's": null, - "wild": [["S", "P", "G", "T", "Y", "R", "D"]], - "wilds": null, - "wildest": null, - "wildly": null, - "wilded": null, - "wile": [["D", "S", "M", "G"]], - "wiled": null, - "wiles": null, - "wile's": null, - "wiling": null, - "Wileen": [["M"]], - "Wileen's": null, - "Wilek": [["M"]], - "Wilek's": null, - "Wiley": [["M"]], - "Wiley's": null, - "Wilford": [["M"]], - "Wilford's": null, - "Wilfred": [["M"]], - "Wilfred's": null, - "Wilfredo": [["M"]], - "Wilfredo's": null, - "Wilfrid": [["M"]], - "Wilfrid's": null, - "wilfulness's": null, - "Wilhelmina": [["M"]], - "Wilhelmina's": null, - "Wilhelmine": [["M"]], - "Wilhelmine's": null, - "Wilhelm": [["M"]], - "Wilhelm's": null, - "Wilie": [["M"]], - "Wilie's": null, - "wilily": null, - "wiliness": [["M", "S"]], - "wiliness's": null, - "wilinesses": null, - "Wilkerson": [["M"]], - "Wilkerson's": null, - "Wilkes": [["M"]], - "Wilkes's": null, - "Wilkins": [["M"]], - "Wilkins's": null, - "Wilkinson": [["M"]], - "Wilkinson's": null, - "Willabella": [["M"]], - "Willabella's": null, - "Willa": [["M"]], - "Willa's": null, - "Willamette": [["M"]], - "Willamette's": null, - "Willamina": [["M"]], - "Willamina's": null, - "Willard": [["M"]], - "Willard's": null, - "Willcox": [["M"]], - "Willcox's": null, - "Willdon": [["M"]], - "Willdon's": null, - "willed": [["U"]], - "unwilled": null, - "Willem": [["M"]], - "Willem's": null, - "Willemstad": [["M"]], - "Willemstad's": null, - "willer": [["M"]], - "willer's": null, - "Willetta": [["M"]], - "Willetta's": null, - "Willette": [["M"]], - "Willette's": null, - "Willey": [["M"]], - "Willey's": null, - "willfulness": [["S"]], - "willfulnesses": null, - "willful": [["Y", "P"]], - "willfully": null, - "Williamsburg": [["M"]], - "Williamsburg's": null, - "William": [["S", "M"]], - "Williams": null, - "William's": null, - "Williamson": [["M"]], - "Williamson's": null, - "Willied": [["M"]], - "Willied's": null, - "Willie": [["M"]], - "Willie's": null, - "willies": null, - "Willi": [["M", "S"]], - "Willi's": null, - "Willis": null, - "willinger": null, - "willingest": null, - "willingness's": null, - "willingness": [["U", "S"]], - "unwillingness": null, - "unwillingnesses": null, - "willingnesses": null, - "willing": [["U", "Y", "P"]], - "unwilling": null, - "unwillingly": null, - "willingly": null, - "Willisson": [["M"]], - "Willisson's": null, - "williwaw": [["M", "S"]], - "williwaw's": null, - "williwaws": null, - "Will": [["M"]], - "Will's": null, - "Willoughby": [["M"]], - "Willoughby's": null, - "willower": [["M"]], - "willower's": null, - "Willow": [["M"]], - "Willow's": null, - "willow": [["R", "D", "M", "S", "G"]], - "willowed": null, - "willow's": null, - "willows": null, - "willowing": null, - "willowy": [["T", "R"]], - "willowiest": null, - "willowier": null, - "willpower": [["M", "S"]], - "willpower's": null, - "willpowers": null, - "will": [["S", "G", "J", "R", "D"]], - "wills": null, - "willings": null, - "Willy": [["S", "D", "M"]], - "Willies": null, - "Willy's": null, - "Willyt": [["M"]], - "Willyt's": null, - "Wilma": [["M"]], - "Wilma's": null, - "Wilmar": [["M"]], - "Wilmar's": null, - "Wilmer": [["M"]], - "Wilmer's": null, - "Wilmette": [["M"]], - "Wilmette's": null, - "Wilmington": [["M"]], - "Wilmington's": null, - "Wilona": [["M"]], - "Wilona's": null, - "Wilone": [["M"]], - "Wilone's": null, - "Wilow": [["M"]], - "Wilow's": null, - "Wilshire": [["M"]], - "Wilshire's": null, - "Wilsonian": null, - "Wilson": [["M"]], - "Wilson's": null, - "wilt": [["D", "G", "S"]], - "wilted": null, - "wilting": null, - "wilts": null, - "Wilt": [["M"]], - "Wilt's": null, - "Wilton": [["M"]], - "Wilton's": null, - "wily": [["P", "T", "R"]], - "wiliest": null, - "wilier": null, - "Wimbledon": [["M"]], - "Wimbledon's": null, - "wimp": [["G", "S", "M", "D"]], - "wimping": null, - "wimps": null, - "wimp's": null, - "wimped": null, - "wimpish": null, - "wimple": [["S", "D", "G", "M"]], - "wimples": null, - "wimpled": null, - "wimpling": null, - "wimple's": null, - "wimpy": [["R", "T"]], - "wimpier": null, - "wimpiest": null, - "wince": [["S", "D", "G"]], - "winces": null, - "winced": null, - "wincing": null, - "Winchell": [["M"]], - "Winchell's": null, - "wincher": [["M"]], - "wincher's": null, - "winchester": [["M"]], - "winchester's": null, - "Winchester": [["M", "S"]], - "Winchester's": null, - "Winchesters": null, - "winch": [["G", "R", "S", "D", "M"]], - "winching": null, - "winches": null, - "winched": null, - "winch's": null, - "windbag": [["S", "M"]], - "windbags": null, - "windbag's": null, - "windblown": null, - "windbreak": [["M", "Z", "S", "R"]], - "windbreak's": null, - "windbreakers": null, - "windbreaks": null, - "windbreaker": null, - "windburn": [["G", "S", "M", "D"]], - "windburning": null, - "windburns": null, - "windburn's": null, - "windburned": null, - "winded": null, - "winder": [["U", "M"]], - "unwinder": null, - "unwinder's": null, - "winder's": null, - "windfall": [["S", "M"]], - "windfalls": null, - "windfall's": null, - "windflower": [["M", "S"]], - "windflower's": null, - "windflowers": null, - "Windham": [["M"]], - "Windham's": null, - "Windhoek": [["M"]], - "Windhoek's": null, - "windily": null, - "windiness": [["S", "M"]], - "windinesses": null, - "windiness's": null, - "winding": [["M", "S"]], - "winding's": null, - "windings": null, - "windjammer": [["S", "M"]], - "windjammers": null, - "windjammer's": null, - "windlass": [["G", "M", "S", "D"]], - "windlassing": null, - "windlass's": null, - "windlasses": null, - "windlassed": null, - "windless": [["Y", "P"]], - "windlessly": null, - "windlessness": null, - "windmill": [["G", "D", "M", "S"]], - "windmilling": null, - "windmilled": null, - "windmill's": null, - "windmills": null, - "window": [["D", "M", "G", "S"]], - "windowed": null, - "window's": null, - "windowing": null, - "windows": null, - "windowless": null, - "windowpane": [["S", "M"]], - "windowpanes": null, - "windowpane's": null, - "Windows": null, - "windowsill": [["S", "M"]], - "windowsills": null, - "windowsill's": null, - "windpipe": [["S", "M"]], - "windpipes": null, - "windpipe's": null, - "windproof": null, - "windrow": [["G", "D", "M", "S"]], - "windrowing": null, - "windrowed": null, - "windrow's": null, - "windrows": null, - "wind's": null, - "winds": [["A"]], - "rewinds": null, - "windscreen": [["M", "S"]], - "windscreen's": null, - "windscreens": null, - "windshield": [["S", "M"]], - "windshields": null, - "windshield's": null, - "windsock": [["M", "S"]], - "windsock's": null, - "windsocks": null, - "Windsor": [["M", "S"]], - "Windsor's": null, - "Windsors": null, - "windstorm": [["M", "S"]], - "windstorm's": null, - "windstorms": null, - "windsurf": [["G", "Z", "J", "S", "R", "D"]], - "windsurfing": null, - "windsurfers": null, - "windsurfings": null, - "windsurfs": null, - "windsurfer": null, - "windsurfed": null, - "windswept": null, - "windup": [["M", "S"]], - "windup's": null, - "windups": null, - "wind": [["U", "S", "R", "Z", "G"]], - "unwinds": null, - "unwinders": null, - "unwinding": null, - "winders": null, - "Windward": [["M"]], - "Windward's": null, - "windward": [["S", "Y"]], - "windwards": null, - "windwardly": null, - "Windy": [["M"]], - "Windy's": null, - "windy": [["T", "P", "R"]], - "windiest": null, - "windier": null, - "wineglass": [["S", "M"]], - "wineglasses": null, - "wineglass's": null, - "winegrower": [["S", "M"]], - "winegrowers": null, - "winegrower's": null, - "Winehead": [["M"]], - "Winehead's": null, - "winemake": null, - "winemaster": null, - "wine": [["M", "S"]], - "wine's": null, - "wines": null, - "winery": [["M", "S"]], - "winery's": null, - "wineries": null, - "Winesap": [["M"]], - "Winesap's": null, - "wineskin": [["M"]], - "wineskin's": null, - "Winfield": [["M"]], - "Winfield's": null, - "Winfred": [["M"]], - "Winfred's": null, - "Winfrey": [["M"]], - "Winfrey's": null, - "wingback": [["M"]], - "wingback's": null, - "wingding": [["M", "S"]], - "wingding's": null, - "wingdings": null, - "wingeing": null, - "winger": [["M"]], - "winger's": null, - "wing": [["G", "Z", "R", "D", "M"]], - "winging": null, - "wingers": null, - "winged": null, - "wing's": null, - "wingless": null, - "winglike": null, - "wingman": null, - "wingmen": null, - "wingspan": [["S", "M"]], - "wingspans": null, - "wingspan's": null, - "wingspread": [["M", "S"]], - "wingspread's": null, - "wingspreads": null, - "wingtip": [["S"]], - "wingtips": null, - "Winifield": [["M"]], - "Winifield's": null, - "Winifred": [["M"]], - "Winifred's": null, - "Wini": [["M"]], - "Wini's": null, - "winker": [["M"]], - "winker's": null, - "wink": [["G", "Z", "R", "D", "S"]], - "winking": [["U"]], - "winkers": null, - "winked": null, - "winks": null, - "unwinking": null, - "Winkle": [["M"]], - "Winkle's": null, - "winkle": [["S", "D", "G", "M"]], - "winkles": null, - "winkled": null, - "winkling": null, - "winkle's": null, - "winless": null, - "Win": [["M"]], - "Win's": null, - "winnable": null, - "Winnah": [["M"]], - "Winnah's": null, - "Winna": [["M"]], - "Winna's": null, - "Winnebago": [["M"]], - "Winnebago's": null, - "Winne": [["M"]], - "Winne's": null, - "winner": [["M", "S"]], - "winner's": null, - "winners": null, - "Winnetka": [["M"]], - "Winnetka's": null, - "Winnie": [["M"]], - "Winnie's": null, - "Winnifred": [["M"]], - "Winnifred's": null, - "Winni": [["M"]], - "Winni's": null, - "winning": [["S", "Y"]], - "winnings": null, - "winningly": null, - "Winnipeg": [["M"]], - "Winnipeg's": null, - "Winn": [["M"]], - "Winn's": null, - "winnow": [["S", "Z", "G", "R", "D"]], - "winnows": null, - "winnowers": null, - "winnowing": null, - "winnower": null, - "winnowed": null, - "Winny": [["M"]], - "Winny's": null, - "Winograd": [["M"]], - "Winograd's": null, - "wino": [["M", "S"]], - "wino's": null, - "winos": null, - "Winonah": [["M"]], - "Winonah's": null, - "Winona": [["M"]], - "Winona's": null, - "Winooski": [["M"]], - "Winooski's": null, - "Winsborough": [["M"]], - "Winsborough's": null, - "Winsett": [["M"]], - "Winsett's": null, - "Winslow": [["M"]], - "Winslow's": null, - "winsomeness": [["S", "M"]], - "winsomenesses": null, - "winsomeness's": null, - "winsome": [["P", "R", "T", "Y"]], - "winsomer": null, - "winsomest": null, - "winsomely": null, - "Winston": [["M"]], - "Winston's": null, - "winterer": [["M"]], - "winterer's": null, - "wintergreen": [["S", "M"]], - "wintergreens": null, - "wintergreen's": null, - "winterize": [["G", "S", "D"]], - "winterizing": null, - "winterizes": null, - "winterized": null, - "Winters": null, - "winter": [["S", "G", "R", "D", "Y", "M"]], - "winters": null, - "wintering": null, - "wintered": null, - "winterly": null, - "winter's": null, - "wintertime": [["M", "S"]], - "wintertime's": null, - "wintertimes": null, - "Winthrop": [["M"]], - "Winthrop's": null, - "wintriness": [["M"]], - "wintriness's": null, - "wintry": [["T", "P", "R"]], - "wintriest": null, - "wintrier": null, - "winy": [["R", "T"]], - "winier": null, - "winiest": null, - "win": [["Z", "G", "D", "R", "S"]], - "winers": null, - "wining": null, - "wined": null, - "winer": null, - "wins": null, - "wipe": [["D", "R", "S", "Z", "G"]], - "wiped": null, - "wiper": [["M"]], - "wipes": null, - "wipers": null, - "wiping": null, - "wiper's": null, - "wirehair": [["M", "S"]], - "wirehair's": null, - "wirehairs": null, - "wireless": [["M", "S", "D", "G"]], - "wireless's": null, - "wirelesses": null, - "wirelessed": null, - "wirelessing": null, - "wireman": [["M"]], - "wireman's": null, - "wiremen": null, - "wirer": [["M"]], - "wirer's": null, - "wire's": null, - "wires": [["A"]], - "rewires": null, - "wiretap": [["M", "S"]], - "wiretap's": null, - "wiretaps": null, - "wiretapped": null, - "wiretapper": [["S", "M"]], - "wiretappers": null, - "wiretapper's": null, - "wiretapping": null, - "wire": [["U", "D", "A"]], - "unwire": null, - "unwired": null, - "wired": null, - "rewired": null, - "wiriness": [["S"]], - "wirinesses": null, - "wiring": [["S", "M"]], - "wirings": null, - "wiring's": null, - "wiry": [["R", "T", "P"]], - "wirier": null, - "wiriest": null, - "Wisc": null, - "Wisconsinite": [["S", "M"]], - "Wisconsinites": null, - "Wisconsinite's": null, - "Wisconsin": [["M"]], - "Wisconsin's": null, - "wisdoms": null, - "wisdom": [["U", "M"]], - "unwisdom": null, - "unwisdom's": null, - "wisdom's": null, - "wiseacre": [["M", "S"]], - "wiseacre's": null, - "wiseacres": null, - "wisecrack": [["G", "M", "R", "D", "S"]], - "wisecracking": null, - "wisecrack's": null, - "wisecracker": null, - "wisecracked": null, - "wisecracks": null, - "wised": null, - "wisely": [["T", "R"]], - "wiseliest": null, - "wiselier": null, - "Wise": [["M"]], - "Wise's": null, - "wiseness": null, - "wisenheimer": [["M"]], - "wisenheimer's": null, - "Wisenheimer": [["M"]], - "Wisenheimer's": null, - "wises": null, - "wise": [["U", "R", "T", "Y"]], - "unwise": null, - "unwiser": null, - "unwisely": null, - "wiser": null, - "wisest": null, - "wishbone": [["M", "S"]], - "wishbone's": null, - "wishbones": null, - "wishfulness": [["M"]], - "wishfulness's": null, - "wishful": [["P", "Y"]], - "wishfully": null, - "wish": [["G", "Z", "S", "R", "D"]], - "wishing": null, - "wishers": null, - "wishes": null, - "wisher": null, - "wished": null, - "wishy": null, - "wising": null, - "Wis": [["M"]], - "Wis's": null, - "wisp": [["M", "D", "G", "S"]], - "wisp's": null, - "wisped": null, - "wisping": null, - "wisps": null, - "wispy": [["R", "T"]], - "wispier": null, - "wispiest": null, - "wist": [["D", "G", "S"]], - "wisted": null, - "wisting": null, - "wists": null, - "wisteria": [["S", "M"]], - "wisterias": null, - "wisteria's": null, - "wistfulness": [["M", "S"]], - "wistfulness's": null, - "wistfulnesses": null, - "wistful": [["P", "Y"]], - "wistfully": null, - "witchcraft": [["S", "M"]], - "witchcrafts": null, - "witchcraft's": null, - "witchdoctor": [["S"]], - "witchdoctors": null, - "witchery": [["M", "S"]], - "witchery's": null, - "witcheries": null, - "witch": [["S", "D", "M", "G"]], - "witches": null, - "witched": null, - "witch's": null, - "witching": null, - "withal": null, - "withdrawal": [["M", "S"]], - "withdrawal's": null, - "withdrawals": null, - "withdrawer": [["M"]], - "withdrawer's": null, - "withdrawnness": [["M"]], - "withdrawnness's": null, - "withdrawn": [["P"]], - "withdraw": [["R", "G", "S"]], - "withdrawing": null, - "withdraws": null, - "withdrew": null, - "withe": [["M"]], - "withe's": null, - "wither": [["G", "D", "J"]], - "withering": [["Y"]], - "withered": null, - "witherings": null, - "witheringly": null, - "Witherspoon": [["M"]], - "Witherspoon's": null, - "with": [["G", "S", "R", "D", "Z"]], - "withing": null, - "withes": null, - "withed": null, - "withers": null, - "withheld": null, - "withholder": [["M"]], - "withholder's": null, - "withhold": [["S", "J", "G", "Z", "R"]], - "withholds": null, - "withholdings": null, - "withholding": null, - "withholders": null, - "within": [["S"]], - "withins": null, - "without": [["S"]], - "withouts": null, - "withs": null, - "withstand": [["S", "G"]], - "withstands": null, - "withstanding": null, - "withstood": null, - "witlessness": [["M", "S"]], - "witlessness's": null, - "witlessnesses": null, - "witless": [["P", "Y"]], - "witlessly": null, - "Wit": [["M"]], - "Wit's": null, - "witness": [["D", "S", "M", "G"]], - "witnessed": [["U"]], - "witnesses": null, - "witness's": null, - "witnessing": null, - "unwitnessed": null, - "wit": [["P", "S", "M"]], - "wits": null, - "wit's": null, - "witted": null, - "witter": [["G"]], - "wittering": null, - "Wittgenstein": [["M"]], - "Wittgenstein's": null, - "witticism": [["M", "S"]], - "witticism's": null, - "witticisms": null, - "Wittie": [["M"]], - "Wittie's": null, - "wittily": null, - "wittiness": [["S", "M"]], - "wittinesses": null, - "wittiness's": null, - "wittings": null, - "witting": [["U", "Y"]], - "unwitting": null, - "unwittingly": null, - "wittingly": null, - "Witt": [["M"]], - "Witt's": null, - "Witty": [["M"]], - "Witty's": null, - "witty": [["R", "T", "P"]], - "wittier": null, - "wittiest": null, - "Witwatersrand": [["M"]], - "Witwatersrand's": null, - "wive": [["G", "D", "S"]], - "wiving": null, - "wived": null, - "wives": [["M"]], - "wives's": null, - "wizard": [["M", "Y", "S"]], - "wizard's": null, - "wizardly": null, - "wizards": null, - "wizardry": [["M", "S"]], - "wizardry's": null, - "wizardries": null, - "wizen": [["D"]], - "wizened": null, - "wiz's": null, - "wk": [["Y"]], - "wkly": null, - "Wm": [["M"]], - "Wm's": null, - "WNW": null, - "woad": [["M", "S"]], - "woad's": null, - "woads": null, - "wobble": [["G", "S", "R", "D"]], - "wobbling": null, - "wobbles": null, - "wobbler": [["M"]], - "wobbled": null, - "wobbler's": null, - "wobbliness": [["S"]], - "wobblinesses": null, - "wobbly": [["P", "R", "S", "T"]], - "wobblier": null, - "wobblies": null, - "wobbliest": null, - "Wodehouse": [["M"]], - "Wodehouse's": null, - "woebegone": [["P"]], - "woebegoneness": null, - "woefuller": null, - "woefullest": null, - "woefulness": [["S", "M"]], - "woefulnesses": null, - "woefulness's": null, - "woeful": [["P", "Y"]], - "woefully": null, - "woe": [["P", "S", "M"]], - "woeness": null, - "woes": null, - "woe's": null, - "woke": null, - "wok": [["S", "M", "N"]], - "woks": null, - "wok's": null, - "woken": null, - "Wolcott": [["M"]], - "Wolcott's": null, - "wold": [["M", "S"]], - "wold's": null, - "wolds": null, - "Wolfe": [["M"]], - "Wolfe's": null, - "wolfer": [["M"]], - "wolfer's": null, - "Wolff": [["M"]], - "Wolff's": null, - "Wolfgang": [["M"]], - "Wolfgang's": null, - "wolfhound": [["M", "S"]], - "wolfhound's": null, - "wolfhounds": null, - "Wolfie": [["M"]], - "Wolfie's": null, - "wolfishness": [["M"]], - "wolfishness's": null, - "wolfish": [["Y", "P"]], - "wolfishly": null, - "Wolf": [["M"]], - "Wolf's": null, - "wolfram": [["M", "S"]], - "wolfram's": null, - "wolframs": null, - "wolf": [["R", "D", "M", "G", "S"]], - "wolfed": null, - "wolf's": null, - "wolfing": null, - "wolfs": null, - "Wolfy": [["M"]], - "Wolfy's": null, - "Wollongong": [["M"]], - "Wollongong's": null, - "Wollstonecraft": [["M"]], - "Wollstonecraft's": null, - "Wolsey": [["M"]], - "Wolsey's": null, - "Wolverhampton": [["M"]], - "Wolverhampton's": null, - "wolverine": [["S", "M"]], - "wolverines": null, - "wolverine's": null, - "Wolverton": [["M"]], - "Wolverton's": null, - "wolves": [["M"]], - "wolves's": null, - "woman": [["G", "S", "M", "Y", "D"]], - "womaning": null, - "womans": null, - "woman's": null, - "womanly": [["P", "R", "T"]], - "womaned": null, - "womanhood": [["M", "S"]], - "womanhood's": null, - "womanhoods": null, - "womanish": null, - "womanized": [["U"]], - "unwomanized": null, - "womanizer": [["M"]], - "womanizer's": null, - "womanize": [["R", "S", "D", "Z", "G"]], - "womanizes": [["U"]], - "womanizers": null, - "womanizing": null, - "unwomanizes": null, - "womankind": [["M"]], - "womankind's": null, - "womanlike": null, - "womanliness": [["S", "M"]], - "womanlinesses": null, - "womanliness's": null, - "womanlier": null, - "womanliest": null, - "wombat": [["M", "S"]], - "wombat's": null, - "wombats": null, - "womb": [["S", "D", "M"]], - "wombs": null, - "wombed": null, - "womb's": null, - "womenfolk": [["M", "S"]], - "womenfolk's": null, - "womenfolks": null, - "women": [["M", "S"]], - "women's": null, - "womens": null, - "wonderer": [["M"]], - "wonderer's": null, - "wonderfulness": [["S", "M"]], - "wonderfulnesses": null, - "wonderfulness's": null, - "wonderful": [["P", "Y"]], - "wonderfully": null, - "wonder": [["G", "L", "R", "D", "M", "S"]], - "wondering": [["Y"]], - "wonderment": [["S", "M"]], - "wondered": null, - "wonder's": null, - "wonders": null, - "wonderingly": null, - "wonderland": [["S", "M"]], - "wonderlands": null, - "wonderland's": null, - "wonderments": null, - "wonderment's": null, - "wondrousness": [["M"]], - "wondrousness's": null, - "wondrous": [["Y", "P"]], - "wondrously": null, - "Wong": [["M"]], - "Wong's": null, - "wonk": [["S"]], - "wonks": null, - "wonky": [["R", "T"]], - "wonkier": null, - "wonkiest": null, - "wonned": null, - "wonning": null, - "won": [["S", "G"]], - "wons": null, - "woning": null, - "won't": null, - "wontedness": [["M", "U"]], - "wontedness's": null, - "unwontedness's": null, - "unwontedness": null, - "wonted": [["P", "U", "Y"]], - "unwonted": null, - "unwontedly": null, - "wontedly": null, - "wont": [["S", "G", "M", "D"]], - "wonts": null, - "wonting": null, - "wont's": null, - "Woodard": [["M"]], - "Woodard's": null, - "Woodberry": [["M"]], - "Woodberry's": null, - "woodbine": [["S", "M"]], - "woodbines": null, - "woodbine's": null, - "woodblock": [["S"]], - "woodblocks": null, - "Woodbury": [["M"]], - "Woodbury's": null, - "woodcarver": [["S"]], - "woodcarvers": null, - "woodcarving": [["M", "S"]], - "woodcarving's": null, - "woodcarvings": null, - "woodchopper": [["S", "M"]], - "woodchoppers": null, - "woodchopper's": null, - "woodchuck": [["M", "S"]], - "woodchuck's": null, - "woodchucks": null, - "woodcock": [["M", "S"]], - "woodcock's": null, - "woodcocks": null, - "woodcraft": [["M", "S"]], - "woodcraft's": null, - "woodcrafts": null, - "woodcut": [["S", "M"]], - "woodcuts": null, - "woodcut's": null, - "woodcutter": [["M", "S"]], - "woodcutter's": null, - "woodcutters": null, - "woodcutting": [["M", "S"]], - "woodcutting's": null, - "woodcuttings": null, - "woodenness": [["S", "M"]], - "woodennesses": null, - "woodenness's": null, - "wooden": [["T", "P", "R", "Y"]], - "woodenest": null, - "woodener": null, - "woodenly": null, - "woodgrain": [["G"]], - "woodgraining": null, - "woodhen": null, - "Woodhull": [["M"]], - "Woodhull's": null, - "Woodie": [["M"]], - "Woodie's": null, - "woodiness": [["M", "S"]], - "woodiness's": null, - "woodinesses": null, - "woodland": [["S", "R", "M"]], - "woodlands": null, - "woodlander": null, - "woodland's": null, - "Woodlawn": [["M"]], - "Woodlawn's": null, - "woodlice": null, - "woodlot": [["S"]], - "woodlots": null, - "woodlouse": [["M"]], - "woodlouse's": null, - "woodman": [["M"]], - "woodman's": null, - "Woodman": [["M"]], - "Woodman's": null, - "woodmen": null, - "woodpecker": [["S", "M"]], - "woodpeckers": null, - "woodpecker's": null, - "woodpile": [["S", "M"]], - "woodpiles": null, - "woodpile's": null, - "Woodrow": [["M"]], - "Woodrow's": null, - "woodruff": [["M"]], - "woodruff's": null, - "woo": [["D", "R", "Z", "G", "S"]], - "wooed": null, - "wooer": null, - "wooers": null, - "wooing": null, - "woos": null, - "woodshedded": null, - "woodshedding": null, - "woodshed": [["S", "M"]], - "woodsheds": null, - "woodshed's": null, - "woodside": null, - "Wood": [["S", "M"]], - "Woods": null, - "Wood's": null, - "woodsman": [["M"]], - "woodsman's": null, - "woodsmen": null, - "wood": [["S", "M", "N", "D", "G"]], - "woods": [["R"]], - "wood's": null, - "wooded": null, - "wooding": null, - "woodsmoke": null, - "woodser": null, - "Woodstock": [["M"]], - "Woodstock's": null, - "woodsy": [["T", "R", "P"]], - "woodsiest": null, - "woodsier": null, - "woodsiness": null, - "Woodward": [["M", "S"]], - "Woodward's": null, - "Woodwards": null, - "woodwind": [["S"]], - "woodwinds": null, - "woodworker": [["M"]], - "woodworker's": null, - "woodworking": [["M"]], - "woodworking's": null, - "woodwork": [["S", "M", "R", "G", "Z", "J"]], - "woodworks": null, - "woodwork's": null, - "woodworkers": null, - "woodworkings": null, - "woodworm": [["M"]], - "woodworm's": null, - "woodyard": null, - "Woody": [["M"]], - "Woody's": null, - "woody": [["T", "P", "S", "R"]], - "woodiest": null, - "woodies": null, - "woodier": null, - "woofer": [["M"]], - "woofer's": null, - "woof": [["S", "R", "D", "M", "G", "Z"]], - "woofs": null, - "woofed": null, - "woof's": null, - "woofing": null, - "woofers": null, - "Woolf": [["M"]], - "Woolf's": null, - "woolgatherer": [["M"]], - "woolgatherer's": null, - "woolgathering": [["M"]], - "woolgathering's": null, - "woolgather": [["R", "G", "J"]], - "woolgatherings": null, - "woolliness": [["M", "S"]], - "woolliness's": null, - "woollinesses": null, - "woolly": [["R", "S", "P", "T"]], - "woollier": null, - "woollies": null, - "woolliest": null, - "Woolongong": [["M"]], - "Woolongong's": null, - "wool": [["S", "M", "Y", "N", "D", "X"]], - "wools": null, - "wool's": null, - "woolen": null, - "wooled": null, - "woolens": null, - "Woolworth": [["M"]], - "Woolworth's": null, - "Woonsocket": [["M"]], - "Woonsocket's": null, - "Wooster": [["M"]], - "Wooster's": null, - "Wooten": [["M"]], - "Wooten's": null, - "woozily": null, - "wooziness": [["M", "S"]], - "wooziness's": null, - "woozinesses": null, - "woozy": [["R", "T", "P"]], - "woozier": null, - "wooziest": null, - "wop": [["M", "S", "!"]], - "wop's": null, - "wops": null, - "Worcestershire": [["M"]], - "Worcestershire's": null, - "Worcester": [["S", "M"]], - "Worcesters": null, - "Worcester's": null, - "wordage": [["S", "M"]], - "wordages": null, - "wordage's": null, - "word": [["A", "G", "S", "J", "D"]], - "reword": null, - "rewording": null, - "rewords": null, - "rewordings": null, - "reworded": null, - "wording": [["A", "M"]], - "words": null, - "wordings": null, - "worded": null, - "wordbook": [["M", "S"]], - "wordbook's": null, - "wordbooks": null, - "Worden": [["M"]], - "Worden's": null, - "wordily": null, - "wordiness": [["S", "M"]], - "wordinesses": null, - "wordiness's": null, - "rewording's": null, - "wording's": null, - "wordless": [["Y"]], - "wordlessly": null, - "wordplay": [["S", "M"]], - "wordplays": null, - "wordplay's": null, - "word's": null, - "Wordsworth": [["M"]], - "Wordsworth's": null, - "wordy": [["T", "P", "R"]], - "wordiest": null, - "wordier": null, - "wore": null, - "workability's": null, - "workability": [["U"]], - "unworkability": null, - "workableness": [["M"]], - "workableness's": null, - "workable": [["U"]], - "workably": null, - "workaday": null, - "workaholic": [["S"]], - "workaholics": null, - "workaround": [["S", "M"]], - "workarounds": null, - "workaround's": null, - "workbench": [["M", "S"]], - "workbench's": null, - "workbenches": null, - "workbook": [["S", "M"]], - "workbooks": null, - "workbook's": null, - "workday": [["S", "M"]], - "workdays": null, - "workday's": null, - "worked": [["A"]], - "reworked": null, - "worker": [["M"]], - "worker's": null, - "workfare": [["S"]], - "workfares": null, - "workforce": [["S"]], - "workforces": null, - "work": [["G", "Z", "J", "S", "R", "D", "M", "B"]], - "working": [["M"]], - "workers": null, - "workings": null, - "works": [["A"]], - "work's": null, - "workhorse": [["M", "S"]], - "workhorse's": null, - "workhorses": null, - "workhouse": [["S", "M"]], - "workhouses": null, - "workhouse's": null, - "working's": null, - "workingman": [["M"]], - "workingman's": null, - "workingmen": null, - "workingwoman": [["M"]], - "workingwoman's": null, - "workingwomen": null, - "workload": [["S", "M"]], - "workloads": null, - "workload's": null, - "workmanlike": null, - "Workman": [["M"]], - "Workman's": null, - "workman": [["M", "Y"]], - "workman's": null, - "workmanly": null, - "workmanship": [["M", "S"]], - "workmanship's": null, - "workmanships": null, - "workmate": [["S"]], - "workmates": null, - "workmen": [["M"]], - "workmen's": null, - "workout": [["S", "M"]], - "workouts": null, - "workout's": null, - "workpiece": [["S", "M"]], - "workpieces": null, - "workpiece's": null, - "workplace": [["S", "M"]], - "workplaces": null, - "workplace's": null, - "workroom": [["M", "S"]], - "workroom's": null, - "workrooms": null, - "reworks": null, - "worksheet": [["S"]], - "worksheets": null, - "workshop": [["M", "S"]], - "workshop's": null, - "workshops": null, - "workspace": [["S"]], - "workspaces": null, - "workstation": [["M", "S"]], - "workstation's": null, - "workstations": null, - "worktable": [["S", "M"]], - "worktables": null, - "worktable's": null, - "worktop": [["S"]], - "worktops": null, - "workup": [["S"]], - "workups": null, - "workweek": [["S", "M"]], - "workweeks": null, - "workweek's": null, - "worldlier": null, - "worldliest": null, - "worldliness": [["U", "S", "M"]], - "unworldliness": null, - "unworldlinesses": null, - "unworldliness's": null, - "worldlinesses": null, - "worldliness's": null, - "worldly": [["U", "P"]], - "unworldly": null, - "worldwide": null, - "world": [["Z", "S", "Y", "M"]], - "worlders": null, - "worlds": null, - "world's": null, - "wormer": [["M"]], - "wormer's": null, - "wormhole": [["S", "M"]], - "wormholes": null, - "wormhole's": null, - "worm": [["S", "G", "M", "R", "D"]], - "worms": null, - "worming": null, - "worm's": null, - "wormed": null, - "Worms": [["M"]], - "Worms's": null, - "wormwood": [["S", "M"]], - "wormwoods": null, - "wormwood's": null, - "wormy": [["R", "T"]], - "wormier": null, - "wormiest": null, - "worn": [["U"]], - "unworn": null, - "worried": [["Y"]], - "worriedly": null, - "worrier": [["M"]], - "worrier's": null, - "worriment": [["M", "S"]], - "worriment's": null, - "worriments": null, - "worrisome": [["Y", "P"]], - "worrisomely": null, - "worrisomeness": null, - "worrying": [["Y"]], - "worryingly": null, - "worrywart": [["S", "M"]], - "worrywarts": null, - "worrywart's": null, - "worry": [["Z", "G", "S", "R", "D"]], - "worriers": null, - "worries": null, - "worsen": [["G", "S", "D"]], - "worsening": null, - "worsens": null, - "worsened": null, - "worse": [["S", "R"]], - "worses": null, - "worser": null, - "worshiper": [["M"]], - "worshiper's": null, - "worshipfulness": [["M"]], - "worshipfulness's": null, - "worshipful": [["Y", "P"]], - "worshipfully": null, - "worship": [["Z", "D", "R", "G", "S"]], - "worshipers": null, - "worshiped": null, - "worshiping": null, - "worships": null, - "worsted": [["M", "S"]], - "worsted's": null, - "worsteds": null, - "worst": [["S", "G", "D"]], - "worsts": null, - "worsting": null, - "worth": [["D", "G"]], - "worthed": null, - "worthing": null, - "worthily": [["U"]], - "unworthily": null, - "worthinesses": [["U"]], - "unworthinesses": null, - "worthiness": [["S", "M"]], - "worthiness's": null, - "Worthington": [["M"]], - "Worthington's": null, - "worthlessness": [["S", "M"]], - "worthlessnesses": null, - "worthlessness's": null, - "worthless": [["P", "Y"]], - "worthlessly": null, - "Worth": [["M"]], - "Worth's": null, - "worths": null, - "worthwhile": [["P"]], - "worthwhileness": null, - "Worthy": [["M"]], - "Worthy's": null, - "worthy": [["U", "T", "S", "R", "P"]], - "unworthy": null, - "unworthies": null, - "unworthier": null, - "unworthiness": null, - "worthiest": null, - "worthies": null, - "worthier": null, - "wort": [["S", "M"]], - "worts": null, - "wort's": null, - "wost": null, - "wot": null, - "Wotan": [["M"]], - "Wotan's": null, - "wouldn't": null, - "would": [["S"]], - "woulds": null, - "wouldst": null, - "would've": null, - "wound": [["A", "U"]], - "rewound": null, - "unwound": null, - "wounded": [["U"]], - "unwounded": null, - "wounder": null, - "wounding": null, - "wounds": null, - "wound's": null, - "wove": [["A"]], - "rewove": null, - "woven": [["A", "U"]], - "rewoven": null, - "unwoven": null, - "wovens": null, - "wow": [["S", "D", "G"]], - "wows": null, - "wowed": null, - "wowing": null, - "Wozniak": [["M"]], - "Wozniak's": null, - "WP": null, - "wpm": null, - "wrack": [["S", "G", "M", "D"]], - "wracks": null, - "wracking": null, - "wrack's": null, - "wracked": null, - "wraith": [["M"]], - "wraith's": null, - "wraiths": null, - "Wrangell": [["M"]], - "Wrangell's": null, - "wrangle": [["G", "Z", "D", "R", "S"]], - "wrangling": null, - "wranglers": null, - "wrangled": null, - "wrangler": [["M"]], - "wrangles": null, - "wrangler's": null, - "wraparound": [["S"]], - "wraparounds": null, - "wrap": [["M", "S"]], - "wrap's": null, - "wraps": [["U"]], - "wrapped": [["U"]], - "unwrapped": null, - "wrapper": [["M", "S"]], - "wrapper's": null, - "wrappers": null, - "wrapping": [["S", "M"]], - "wrappings": null, - "wrapping's": null, - "unwraps": null, - "wrasse": [["S", "M"]], - "wrasses": null, - "wrasse's": null, - "wrathful": [["Y", "P"]], - "wrathfully": null, - "wrathfulness": null, - "wrath": [["G", "D", "M"]], - "wrathing": null, - "wrathed": null, - "wrath's": null, - "wraths": null, - "wreak": [["S", "D", "G"]], - "wreaks": null, - "wreaked": null, - "wreaking": null, - "wreathe": null, - "wreath": [["G", "M", "D", "S"]], - "wreathing": null, - "wreath's": null, - "wreathed": null, - "wreathes": null, - "wreaths": null, - "wreckage": [["M", "S"]], - "wreckage's": null, - "wreckages": null, - "wrecker": [["M"]], - "wrecker's": null, - "wreck": [["G", "Z", "R", "D", "S"]], - "wrecking": null, - "wreckers": null, - "wrecked": null, - "wrecks": null, - "wrenching": [["Y"]], - "wrenchingly": null, - "wrench": [["M", "D", "S", "G"]], - "wrench's": null, - "wrenched": null, - "wrenches": null, - "wren": [["M", "S"]], - "wren's": null, - "wrens": null, - "Wren": [["M", "S"]], - "Wren's": null, - "Wrens": null, - "Wrennie": [["M"]], - "Wrennie's": null, - "wrester": [["M"]], - "wrester's": null, - "wrestle": [["J", "G", "Z", "D", "R", "S"]], - "wrestlings": null, - "wrestling": [["M"]], - "wrestlers": null, - "wrestled": null, - "wrestler": [["M"]], - "wrestles": null, - "wrestler's": null, - "wrestling's": null, - "wrest": [["S", "R", "D", "G"]], - "wrests": null, - "wrested": null, - "wresting": null, - "wretchedness": [["S", "M"]], - "wretchednesses": null, - "wretchedness's": null, - "wretched": [["T", "P", "Y", "R"]], - "wretchedest": null, - "wretchedly": null, - "wretcheder": null, - "wretch": [["M", "D", "S"]], - "wretch's": null, - "wretches": null, - "wriggle": [["D", "R", "S", "G", "Z"]], - "wriggled": null, - "wriggler": [["M"]], - "wriggles": null, - "wriggling": null, - "wrigglers": null, - "wriggler's": null, - "wriggly": [["R", "T"]], - "wrigglier": null, - "wriggliest": null, - "Wright": [["M"]], - "Wright's": null, - "wright": [["M", "S"]], - "wright's": null, - "wrights": null, - "Wrigley": [["M"]], - "Wrigley's": null, - "wringer": [["M"]], - "wringer's": null, - "wring": [["G", "Z", "R", "S"]], - "wringing": null, - "wringers": null, - "wrings": null, - "wrinkled": [["U"]], - "unwrinkled": null, - "wrinkle": [["G", "M", "D", "S"]], - "wrinkling": null, - "wrinkle's": null, - "wrinkles": null, - "wrinkly": [["R", "S", "T"]], - "wrinklier": null, - "wrinklies": null, - "wrinkliest": null, - "wristband": [["S", "M"]], - "wristbands": null, - "wristband's": null, - "wrist": [["M", "S"]], - "wrist's": null, - "wrists": null, - "wristwatch": [["M", "S"]], - "wristwatch's": null, - "wristwatches": null, - "writable": [["U"]], - "unwritable": null, - "write": [["A", "S", "B", "R", "J", "G"]], - "rewrite": null, - "rewrites": null, - "rewritable": null, - "rewriter": null, - "rewritings": null, - "rewriting": null, - "writes": null, - "writer": [["M", "A"]], - "writings": null, - "writing": [["M"]], - "writer's": null, - "rewriter's": null, - "writeup": null, - "writhe": [["S", "D", "G"]], - "writhes": null, - "writhed": null, - "writhing": null, - "writing's": null, - "writ": [["M", "R", "S", "B", "J", "G", "Z"]], - "writ's": null, - "writs": null, - "writers": null, - "written": [["U", "A"]], - "unwritten": null, - "rewritten": null, - "Wroclaw": null, - "wrongdoer": [["M", "S"]], - "wrongdoer's": null, - "wrongdoers": null, - "wrongdoing": [["M", "S"]], - "wrongdoing's": null, - "wrongdoings": null, - "wronger": [["M"]], - "wronger's": null, - "wrongfulness": [["M", "S"]], - "wrongfulness's": null, - "wrongfulnesses": null, - "wrongful": [["P", "Y"]], - "wrongfully": null, - "wrongheadedness": [["M", "S"]], - "wrongheadedness's": null, - "wrongheadednesses": null, - "wrongheaded": [["P", "Y"]], - "wrongheadedly": null, - "wrongness": [["M", "S"]], - "wrongness's": null, - "wrongnesses": null, - "wrong": [["P", "S", "G", "T", "Y", "R", "D"]], - "wrongs": null, - "wronging": null, - "wrongest": null, - "wrongly": null, - "wronged": null, - "Wronskian": [["M"]], - "Wronskian's": null, - "wrote": [["A"]], - "rewrote": null, - "wroth": null, - "wrought": [["I"]], - "inwrought": null, - "wrung": null, - "wry": [["D", "S", "G", "Y"]], - "wried": null, - "wries": null, - "wrying": null, - "wryly": null, - "wryer": null, - "wryest": null, - "wryness": [["S", "M"]], - "wrynesses": null, - "wryness's": null, - "W's": null, - "WSW": null, - "wt": null, - "W": [["T"]], - "Wuhan": [["M"]], - "Wuhan's": null, - "Wu": [["M"]], - "Wu's": null, - "Wurlitzer": [["M"]], - "Wurlitzer's": null, - "wurst": [["S", "M"]], - "wursts": null, - "wurst's": null, - "wuss": [["S"]], - "wusses": null, - "wussy": [["T", "R", "S"]], - "wussiest": null, - "wussier": null, - "wussies": null, - "WV": null, - "WW": null, - "WWI": null, - "WWII": null, - "WWW": null, - "w": [["X", "T", "J", "G", "V"]], - "wens": null, - "wings": null, - "WY": null, - "Wyatan": [["M"]], - "Wyatan's": null, - "Wyatt": [["M"]], - "Wyatt's": null, - "Wycherley": [["M"]], - "Wycherley's": null, - "Wycliffe": [["M"]], - "Wycliffe's": null, - "Wye": [["M", "H"]], - "Wye's": null, - "Wyeth": [["M"]], - "Wyeth's": null, - "Wylie": [["M"]], - "Wylie's": null, - "Wylma": [["M"]], - "Wylma's": null, - "Wyman": [["M"]], - "Wyman's": null, - "Wyndham": [["M"]], - "Wyndham's": null, - "Wyn": [["M"]], - "Wyn's": null, - "Wynne": [["M"]], - "Wynne's": null, - "Wynnie": [["M"]], - "Wynnie's": null, - "Wynn": [["M"]], - "Wynn's": null, - "Wynny": [["M"]], - "Wynny's": null, - "Wyo": [["M"]], - "Wyo's": null, - "Wyomingite": [["S", "M"]], - "Wyomingites": null, - "Wyomingite's": null, - "Wyoming": [["M"]], - "Wyoming's": null, - "WYSIWYG": null, - "x": null, - "X": null, - "Xanadu": null, - "Xanthippe": [["M"]], - "Xanthippe's": null, - "Xanthus": [["M"]], - "Xanthus's": null, - "Xaviera": [["M"]], - "Xaviera's": null, - "Xavier": [["M"]], - "Xavier's": null, - "Xebec": [["M"]], - "Xebec's": null, - "Xe": [["M"]], - "Xe's": null, - "XEmacs": [["M"]], - "XEmacs's": null, - "Xenakis": [["M"]], - "Xenakis's": null, - "Xena": [["M"]], - "Xena's": null, - "Xenia": [["M"]], - "Xenia's": null, - "Xenix": [["M"]], - "Xenix's": null, - "xenon": [["S", "M"]], - "xenons": null, - "xenon's": null, - "xenophobe": [["M", "S"]], - "xenophobe's": null, - "xenophobes": null, - "xenophobia": [["S", "M"]], - "xenophobias": null, - "xenophobia's": null, - "xenophobic": null, - "Xenophon": [["M"]], - "Xenophon's": null, - "Xenos": null, - "xerographic": null, - "xerography": [["M", "S"]], - "xerography's": null, - "xerographies": null, - "xerox": [["G", "S", "D"]], - "xeroxing": null, - "xeroxes": null, - "xeroxed": null, - "Xerox": [["M", "G", "S", "D"]], - "Xerox's": null, - "Xeroxing": null, - "Xeroxes": null, - "Xeroxed": null, - "Xerxes": [["M"]], - "Xerxes's": null, - "Xever": [["M"]], - "Xever's": null, - "Xhosa": [["M"]], - "Xhosa's": null, - "Xi'an": null, - "Xian": [["S"]], - "Xians": null, - "Xiaoping": [["M"]], - "Xiaoping's": null, - "xii": null, - "xiii": null, - "xi": [["M"]], - "xi's": null, - "Ximenes": [["M"]], - "Ximenes's": null, - "Ximenez": [["M"]], - "Ximenez's": null, - "Ximian": [["S", "M"]], - "Ximians": null, - "Ximian's": null, - "Xingu": [["M"]], - "Xingu's": null, - "xis": null, - "xiv": null, - "xix": null, - "XL": null, - "Xmas": [["S", "M"]], - "Xmases": null, - "Xmas's": null, - "XML": null, - "Xochipilli": [["M"]], - "Xochipilli's": null, - "XOR": null, - "X's": null, - "XS": null, - "xterm": [["M"]], - "xterm's": null, - "Xuzhou": [["M"]], - "Xuzhou's": null, - "xv": null, - "xvi": null, - "xvii": null, - "xviii": null, - "xx": null, - "XXL": null, - "xylem": [["S", "M"]], - "xylems": null, - "xylem's": null, - "xylene": [["M"]], - "xylene's": null, - "Xylia": [["M"]], - "Xylia's": null, - "Xylina": [["M"]], - "Xylina's": null, - "xylophone": [["M", "S"]], - "xylophone's": null, - "xylophones": null, - "xylophonist": [["S"]], - "xylophonists": null, - "Xymenes": [["M"]], - "Xymenes's": null, - "Y": null, - "ya": null, - "yacc": [["M"]], - "yacc's": null, - "Yacc": [["M"]], - "Yacc's": null, - "yachting": [["M"]], - "yachting's": null, - "yachtsman": null, - "yachtsmen": null, - "yachtswoman": [["M"]], - "yachtswoman's": null, - "yachtswomen": null, - "yacht": [["Z", "G", "J", "S", "D", "M"]], - "yachters": null, - "yachtings": null, - "yachts": null, - "yachted": null, - "yacht's": null, - "yack's": null, - "Yagi": [["M"]], - "Yagi's": null, - "yahoo": [["M", "S"]], - "yahoo's": null, - "yahoos": null, - "Yahweh": [["M"]], - "Yahweh's": null, - "Yakima": [["M"]], - "Yakima's": null, - "yakked": null, - "yakking": null, - "yak": [["S", "M"]], - "yaks": null, - "yak's": null, - "Yakut": [["M"]], - "Yakut's": null, - "Yakutsk": [["M"]], - "Yakutsk's": null, - "Yale": [["M"]], - "Yale's": null, - "Yalies": [["M"]], - "Yalies's": null, - "y'all": null, - "Yalonda": [["M"]], - "Yalonda's": null, - "Yalow": [["M"]], - "Yalow's": null, - "Yalta": [["M"]], - "Yalta's": null, - "Yalu": [["M"]], - "Yalu's": null, - "Yamaha": [["M"]], - "Yamaha's": null, - "yammer": [["R", "D", "Z", "G", "S"]], - "yammerer": null, - "yammered": null, - "yammerers": null, - "yammering": null, - "yammers": null, - "Yamoussoukro": null, - "yam": [["S", "M"]], - "yams": null, - "yam's": null, - "Yanaton": [["M"]], - "Yanaton's": null, - "Yance": [["M"]], - "Yance's": null, - "Yancey": [["M"]], - "Yancey's": null, - "Yancy": [["M"]], - "Yancy's": null, - "Yang": [["M"]], - "Yang's": null, - "Yangon": null, - "yang": [["S"]], - "yangs": null, - "Yangtze": [["M"]], - "Yangtze's": null, - "Yankee": [["S", "M"]], - "Yankees": null, - "Yankee's": null, - "yank": [["G", "D", "S"]], - "yanking": null, - "yanked": null, - "yanks": null, - "Yank": [["M", "S"]], - "Yank's": null, - "Yanks": null, - "Yaounde": [["M"]], - "Yaounde's": null, - "yapped": null, - "yapping": null, - "yap": [["S"]], - "yaps": null, - "Yaqui": [["M"]], - "Yaqui's": null, - "yardage": [["S", "M"]], - "yardages": null, - "yardage's": null, - "yardarm": [["S", "M"]], - "yardarms": null, - "yardarm's": null, - "Yardley": [["M"]], - "Yardley's": null, - "Yard": [["M"]], - "Yard's": null, - "yardman": [["M"]], - "yardman's": null, - "yardmaster": [["S"]], - "yardmasters": null, - "yardmen": null, - "yard": [["S", "M", "D", "G"]], - "yards": null, - "yard's": null, - "yarded": null, - "yarding": null, - "yardstick": [["S", "M"]], - "yardsticks": null, - "yardstick's": null, - "yarmulke": [["S", "M"]], - "yarmulkes": null, - "yarmulke's": null, - "yarn": [["S", "G", "D", "M"]], - "yarns": null, - "yarning": null, - "yarned": null, - "yarn's": null, - "Yaroslavl": [["M"]], - "Yaroslavl's": null, - "yarrow": [["M", "S"]], - "yarrow's": null, - "yarrows": null, - "Yasmeen": [["M"]], - "Yasmeen's": null, - "Yasmin": [["M"]], - "Yasmin's": null, - "Yates": null, - "yaw": [["D", "S", "G"]], - "yawed": null, - "yaws": null, - "yawing": null, - "yawl": [["S", "G", "M", "D"]], - "yawls": null, - "yawling": null, - "yawl's": null, - "yawled": null, - "yawner": [["M"]], - "yawner's": null, - "yawn": [["G", "Z", "S", "D", "R"]], - "yawning": [["Y"]], - "yawners": null, - "yawns": null, - "yawned": null, - "yawningly": null, - "Yb": [["M"]], - "Yb's": null, - "yd": null, - "Yeager": [["M"]], - "Yeager's": null, - "yeah": null, - "yeahs": null, - "yearbook": [["S", "M"]], - "yearbooks": null, - "yearbook's": null, - "yearling": [["M"]], - "yearling's": null, - "yearlong": null, - "yearly": [["S"]], - "yearlies": null, - "yearner": [["M"]], - "yearner's": null, - "yearning": [["M", "Y"]], - "yearning's": null, - "yearningly": null, - "yearn": [["J", "S", "G", "R", "D"]], - "yearnings": null, - "yearns": null, - "yearned": null, - "year": [["Y", "M", "S"]], - "year's": null, - "years": null, - "yea": [["S"]], - "yeas": null, - "yeastiness": [["M"]], - "yeastiness's": null, - "yeast": [["S", "G", "D", "M"]], - "yeasts": null, - "yeasting": null, - "yeasted": null, - "yeast's": null, - "yeasty": [["P", "T", "R"]], - "yeastiest": null, - "yeastier": null, - "Yeats": [["M"]], - "Yeats's": null, - "yecch": null, - "yegg": [["M", "S"]], - "yegg's": null, - "yeggs": null, - "Yehudi": [["M"]], - "Yehudi's": null, - "Yehudit": [["M"]], - "Yehudit's": null, - "Yekaterinburg": [["M"]], - "Yekaterinburg's": null, - "Yelena": [["M"]], - "Yelena's": null, - "yell": [["G", "S", "D", "R"]], - "yelling": null, - "yells": null, - "yelled": null, - "yeller": null, - "yellowhammers": null, - "yellowish": null, - "Yellowknife": [["M"]], - "Yellowknife's": null, - "yellowness": [["M", "S"]], - "yellowness's": null, - "yellownesses": null, - "Yellowstone": [["M"]], - "Yellowstone's": null, - "yellow": [["T", "G", "P", "S", "R", "D", "M"]], - "yellowest": null, - "yellowing": null, - "yellows": null, - "yellower": null, - "yellowed": null, - "yellow's": null, - "yellowy": null, - "yelper": [["M"]], - "yelper's": null, - "yelp": [["G", "S", "D", "R"]], - "yelping": null, - "yelps": null, - "yelped": null, - "Yeltsin": null, - "Yemeni": [["S"]], - "Yemenis": null, - "Yemenite": [["S", "M"]], - "Yemenites": null, - "Yemenite's": null, - "Yemen": [["M"]], - "Yemen's": null, - "Yenisei": [["M"]], - "Yenisei's": null, - "yenned": null, - "yenning": null, - "yen": [["S", "M"]], - "yens": null, - "yen's": null, - "Yentl": [["M"]], - "Yentl's": null, - "yeomanry": [["M", "S"]], - "yeomanry's": null, - "yeomanries": null, - "yeoman": [["Y", "M"]], - "yeomanly": null, - "yeoman's": null, - "yeomen": null, - "yep": [["S"]], - "yeps": null, - "Yerevan": [["M"]], - "Yerevan's": null, - "Yerkes": [["M"]], - "Yerkes's": null, - "Yesenia": [["M"]], - "Yesenia's": null, - "yeshiva": [["S", "M"]], - "yeshivas": null, - "yeshiva's": null, - "yes": [["S"]], - "yeses": null, - "yessed": null, - "yessing": null, - "yesterday": [["M", "S"]], - "yesterday's": null, - "yesterdays": null, - "yesteryear": [["S", "M"]], - "yesteryears": null, - "yesteryear's": null, - "yet": null, - "ye": [["T"]], - "yest": null, - "yeti": [["S", "M"]], - "yetis": null, - "yeti's": null, - "Yetta": [["M"]], - "Yetta's": null, - "Yettie": [["M"]], - "Yettie's": null, - "Yetty": [["M"]], - "Yetty's": null, - "Yevette": [["M"]], - "Yevette's": null, - "Yevtushenko": [["M"]], - "Yevtushenko's": null, - "yew": [["S", "M"]], - "yews": null, - "yew's": null, - "y": [["F"]], - "Yggdrasil": [["M"]], - "Yggdrasil's": null, - "Yiddish": [["M"]], - "Yiddish's": null, - "yielded": [["U"]], - "unyielded": null, - "yielding": [["U"]], - "yield": [["J", "G", "R", "D", "S"]], - "yieldings": null, - "yielder": null, - "yields": null, - "yikes": null, - "yin": [["S"]], - "yins": null, - "yipe": [["S"]], - "yipes": null, - "yipped": null, - "yippee": [["S"]], - "yippees": null, - "yipping": null, - "yip": [["S"]], - "yips": null, - "YMCA": null, - "YMHA": null, - "Ymir": [["M"]], - "Ymir's": null, - "YMMV": null, - "Ynes": [["M"]], - "Ynes's": null, - "Ynez": [["M"]], - "Ynez's": null, - "yo": null, - "Yoda": [["M"]], - "Yoda's": null, - "yodeler": [["M"]], - "yodeler's": null, - "yodel": [["S", "Z", "R", "D", "G"]], - "yodels": null, - "yodelers": null, - "yodeled": null, - "yodeling": null, - "Yoder": [["M"]], - "Yoder's": null, - "yoga": [["M", "S"]], - "yoga's": null, - "yogas": null, - "yoghurt's": null, - "yogi": [["M", "S"]], - "yogi's": null, - "yogis": null, - "yogurt": [["S", "M"]], - "yogurts": null, - "yogurt's": null, - "yoke": [["D", "S", "M", "G"]], - "yoked": [["U"]], - "yokes": [["U"]], - "yoke's": null, - "yoking": [["U"]], - "unyoked": null, - "yokel": [["S", "M"]], - "yokels": null, - "yokel's": null, - "unyokes": null, - "unyoking": null, - "Yoknapatawpha": [["M"]], - "Yoknapatawpha's": null, - "Yokohama": [["M"]], - "Yokohama's": null, - "Yoko": [["M"]], - "Yoko's": null, - "Yolanda": [["M"]], - "Yolanda's": null, - "Yolande": [["M"]], - "Yolande's": null, - "Yolane": [["M"]], - "Yolane's": null, - "Yolanthe": [["M"]], - "Yolanthe's": null, - "yolk": [["D", "M", "S"]], - "yolked": null, - "yolk's": null, - "yolks": null, - "yon": null, - "yonder": null, - "Yong": [["M"]], - "Yong's": null, - "Yonkers": [["M"]], - "Yonkers's": null, - "yore": [["M", "S"]], - "yore's": null, - "yores": null, - "Yorgo": [["M", "S"]], - "Yorgo's": null, - "Yorgos": null, - "Yorick": [["M"]], - "Yorick's": null, - "Yorke": [["M"]], - "Yorke's": null, - "Yorker": [["M"]], - "Yorker's": null, - "yorker": [["S", "M"]], - "yorkers": null, - "yorker's": null, - "Yorkshire": [["M", "S"]], - "Yorkshire's": null, - "Yorkshires": null, - "Yorktown": [["M"]], - "Yorktown's": null, - "York": [["Z", "R", "M", "S"]], - "Yorkers": null, - "York's": null, - "Yorks": null, - "Yoruba": [["M"]], - "Yoruba's": null, - "Yosemite": [["M"]], - "Yosemite's": null, - "Yoshiko": [["M"]], - "Yoshiko's": null, - "Yoshi": [["M"]], - "Yoshi's": null, - "Yost": [["M"]], - "Yost's": null, - "you'd": null, - "you'll": null, - "youngish": null, - "Young": [["M"]], - "Young's": null, - "youngster": [["M", "S"]], - "youngster's": null, - "youngsters": null, - "Youngstown": [["M"]], - "Youngstown's": null, - "young": [["T", "R", "Y", "P"]], - "youngest": null, - "younger": null, - "youngly": null, - "youngness": null, - "you're": null, - "your": [["M", "S"]], - "your's": null, - "yours": null, - "yourself": null, - "yourselves": null, - "you": [["S", "H"]], - "yous": null, - "youth": [["S", "M"]], - "youthfulness": [["S", "M"]], - "youthfulnesses": null, - "youthfulness's": null, - "youthful": [["Y", "P"]], - "youthfully": null, - "youths": null, - "youthes": null, - "youth's": null, - "you've": null, - "Yovonnda": [["M"]], - "Yovonnda's": null, - "yow": null, - "yowl": [["G", "S", "D"]], - "yowling": null, - "yowls": null, - "yowled": null, - "Ypres": [["M"]], - "Ypres's": null, - "Ypsilanti": [["M"]], - "Ypsilanti's": null, - "yr": null, - "yrs": null, - "Y's": null, - "Ysabel": [["M"]], - "Ysabel's": null, - "YT": null, - "ytterbium": [["M", "S"]], - "ytterbium's": null, - "ytterbiums": null, - "yttrium": [["S", "M"]], - "yttriums": null, - "yttrium's": null, - "yuan": [["M"]], - "yuan's": null, - "Yuba": [["M"]], - "Yuba's": null, - "Yucatan": null, - "yucca": [["M", "S"]], - "yucca's": null, - "yuccas": null, - "yuck": [["G", "S", "D"]], - "yucking": null, - "yucks": null, - "yucked": null, - "yucky": [["R", "T"]], - "yuckier": null, - "yuckiest": null, - "Yugo": [["M"]], - "Yugo's": null, - "Yugoslavia": [["M"]], - "Yugoslavia's": null, - "Yugoslavian": [["S"]], - "Yugoslavians": null, - "Yugoslav": [["M"]], - "Yugoslav's": null, - "Yuh": [["M"]], - "Yuh's": null, - "Yuki": [["M"]], - "Yuki's": null, - "yukked": null, - "yukking": null, - "Yukon": [["M"]], - "Yukon's": null, - "yuk": [["S"]], - "yuks": null, - "yule": [["M", "S"]], - "yule's": null, - "yules": null, - "Yule": [["M", "S"]], - "Yule's": null, - "Yules": null, - "yuletide": [["M", "S"]], - "yuletide's": null, - "yuletides": null, - "Yuletide": [["S"]], - "Yuletides": null, - "Yul": [["M"]], - "Yul's": null, - "Yulma": [["M"]], - "Yulma's": null, - "yum": null, - "Yuma": [["M"]], - "Yuma's": null, - "yummy": [["T", "R", "S"]], - "yummiest": null, - "yummier": null, - "yummies": null, - "Yunnan": [["M"]], - "Yunnan's": null, - "yuppie": [["S", "M"]], - "yuppies": null, - "yuppie's": null, - "yup": [["S"]], - "yups": null, - "Yurik": [["M"]], - "Yurik's": null, - "Yuri": [["M"]], - "Yuri's": null, - "yurt": [["S", "M"]], - "yurts": null, - "yurt's": null, - "Yves": [["M"]], - "Yves's": null, - "Yvette": [["M"]], - "Yvette's": null, - "Yvon": [["M"]], - "Yvon's": null, - "Yvonne": [["M"]], - "Yvonne's": null, - "Yvor": [["M"]], - "Yvor's": null, - "YWCA": null, - "YWHA": null, - "Zabrina": [["M"]], - "Zabrina's": null, - "Zaccaria": [["M"]], - "Zaccaria's": null, - "Zachariah": [["M"]], - "Zachariah's": null, - "Zacharia": [["S", "M"]], - "Zacharias": null, - "Zacharia's": null, - "Zacharie": [["M"]], - "Zacharie's": null, - "Zachary": [["M"]], - "Zachary's": null, - "Zacherie": [["M"]], - "Zacherie's": null, - "Zachery": [["M"]], - "Zachery's": null, - "Zach": [["M"]], - "Zach's": null, - "Zackariah": [["M"]], - "Zackariah's": null, - "Zack": [["M"]], - "Zack's": null, - "zagging": null, - "Zagreb": [["M"]], - "Zagreb's": null, - "zag": [["S"]], - "zags": null, - "Zahara": [["M"]], - "Zahara's": null, - "Zaire": [["M"]], - "Zaire's": null, - "Zairian": [["S"]], - "Zairians": null, - "Zak": [["M"]], - "Zak's": null, - "Zambezi": [["M"]], - "Zambezi's": null, - "Zambia": [["M"]], - "Zambia's": null, - "Zambian": [["S"]], - "Zambians": null, - "Zamboni": null, - "Zamenhof": [["M"]], - "Zamenhof's": null, - "Zamora": [["M"]], - "Zamora's": null, - "Zandra": [["M"]], - "Zandra's": null, - "Zane": [["M"]], - "Zane's": null, - "Zaneta": [["M"]], - "Zaneta's": null, - "zaniness": [["M", "S"]], - "zaniness's": null, - "zaninesses": null, - "Zan": [["M"]], - "Zan's": null, - "Zanuck": [["M"]], - "Zanuck's": null, - "zany": [["P", "D", "S", "R", "T", "G"]], - "zanied": null, - "zanies": null, - "zanier": null, - "zaniest": null, - "zanying": null, - "Zanzibar": [["M"]], - "Zanzibar's": null, - "Zapata": [["M"]], - "Zapata's": null, - "Zaporozhye": [["M"]], - "Zaporozhye's": null, - "Zappa": [["M"]], - "Zappa's": null, - "zapped": null, - "zapper": [["S"]], - "zappers": null, - "zapping": null, - "zap": [["S"]], - "zaps": null, - "Zarah": [["M"]], - "Zarah's": null, - "Zara": [["M"]], - "Zara's": null, - "Zared": [["M"]], - "Zared's": null, - "Zaria": [["M"]], - "Zaria's": null, - "Zarla": [["M"]], - "Zarla's": null, - "Zealand": [["M"]], - "Zealand's": null, - "zeal": [["M", "S"]], - "zeal's": null, - "zeals": null, - "zealot": [["M", "S"]], - "zealot's": null, - "zealots": null, - "zealotry": [["M", "S"]], - "zealotry's": null, - "zealotries": null, - "zealousness": [["S", "M"]], - "zealousnesses": null, - "zealousness's": null, - "zealous": [["Y", "P"]], - "zealously": null, - "Zea": [["M"]], - "Zea's": null, - "Zebadiah": [["M"]], - "Zebadiah's": null, - "Zebedee": [["M"]], - "Zebedee's": null, - "Zeb": [["M"]], - "Zeb's": null, - "zebra": [["M", "S"]], - "zebra's": null, - "zebras": null, - "Zebulen": [["M"]], - "Zebulen's": null, - "Zebulon": [["M"]], - "Zebulon's": null, - "zebu": [["S", "M"]], - "zebus": null, - "zebu's": null, - "Zechariah": [["M"]], - "Zechariah's": null, - "Zedekiah": [["M"]], - "Zedekiah's": null, - "Zed": [["M"]], - "Zed's": null, - "Zedong": [["M"]], - "Zedong's": null, - "zed": [["S", "M"]], - "zeds": null, - "zed's": null, - "Zeffirelli": [["M"]], - "Zeffirelli's": null, - "Zeiss": [["M"]], - "Zeiss's": null, - "zeitgeist": [["S"]], - "zeitgeists": null, - "Zeke": [["M"]], - "Zeke's": null, - "Zelda": [["M"]], - "Zelda's": null, - "Zelig": [["M"]], - "Zelig's": null, - "Zellerbach": [["M"]], - "Zellerbach's": null, - "Zelma": [["M"]], - "Zelma's": null, - "Zena": [["M"]], - "Zena's": null, - "Zenger": [["M"]], - "Zenger's": null, - "Zenia": [["M"]], - "Zenia's": null, - "zenith": [["M"]], - "zenith's": null, - "zeniths": null, - "Zen": [["M"]], - "Zen's": null, - "Zennist": [["M"]], - "Zennist's": null, - "Zeno": [["M"]], - "Zeno's": null, - "Zephaniah": [["M"]], - "Zephaniah's": null, - "zephyr": [["M", "S"]], - "zephyr's": null, - "zephyrs": null, - "Zephyrus": [["M"]], - "Zephyrus's": null, - "Zeppelin's": null, - "zeppelin": [["S", "M"]], - "zeppelins": null, - "zeppelin's": null, - "Zerk": [["M"]], - "Zerk's": null, - "zeroed": [["M"]], - "zeroed's": null, - "zeroing": [["M"]], - "zeroing's": null, - "zero": [["S", "D", "H", "M", "G"]], - "zeros": null, - "zeroth": null, - "zero's": null, - "zestfulness": [["M", "S"]], - "zestfulness's": null, - "zestfulnesses": null, - "zestful": [["Y", "P"]], - "zestfully": null, - "zest": [["M", "D", "S", "G"]], - "zest's": null, - "zested": null, - "zests": null, - "zesting": null, - "zesty": [["R", "T"]], - "zestier": null, - "zestiest": null, - "zeta": [["S", "M"]], - "zetas": null, - "zeta's": null, - "zeugma": [["M"]], - "zeugma's": null, - "Zeus": [["M"]], - "Zeus's": null, - "Zhdanov": [["M"]], - "Zhdanov's": null, - "Zhengzhou": null, - "Zhivago": [["M"]], - "Zhivago's": null, - "Zhukov": [["M"]], - "Zhukov's": null, - "Zia": [["M"]], - "Zia's": null, - "Zibo": [["M"]], - "Zibo's": null, - "Ziegfeld": [["M", "S"]], - "Ziegfeld's": null, - "Ziegfelds": null, - "Ziegler": [["M"]], - "Ziegler's": null, - "zig": null, - "zigged": null, - "zigging": null, - "Ziggy": [["M"]], - "Ziggy's": null, - "zigzagged": null, - "zigzagger": null, - "zigzagging": null, - "zigzag": [["M", "S"]], - "zigzag's": null, - "zigzags": null, - "zilch": [["S"]], - "zilches": null, - "zillion": [["M", "S"]], - "zillion's": null, - "zillions": null, - "Zilvia": [["M"]], - "Zilvia's": null, - "Zimbabwean": [["S"]], - "Zimbabweans": null, - "Zimbabwe": [["M"]], - "Zimbabwe's": null, - "Zimmerman": [["M"]], - "Zimmerman's": null, - "zincked": null, - "zincking": null, - "zinc": [["M", "S"]], - "zinc's": null, - "zincs": null, - "zing": [["G", "Z", "D", "R", "M"]], - "zinging": null, - "zingers": null, - "zinged": null, - "zinger": null, - "zing's": null, - "zingy": [["R", "T"]], - "zingier": null, - "zingiest": null, - "zinnia": [["S", "M"]], - "zinnias": null, - "zinnia's": null, - "Zionism": [["M", "S"]], - "Zionism's": null, - "Zionisms": null, - "Zionist": [["M", "S"]], - "Zionist's": null, - "Zionists": null, - "Zion": [["S", "M"]], - "Zions": null, - "Zion's": null, - "zip": [["M", "S"]], - "zip's": null, - "zips": [["U"]], - "zipped": [["U"]], - "unzipped": null, - "zipper": [["G", "S", "D", "M"]], - "zippering": null, - "zippers": null, - "zippered": null, - "zipper's": null, - "zipping": [["U"]], - "unzipping": null, - "zippy": [["R", "T"]], - "zippier": null, - "zippiest": null, - "unzips": null, - "zirconium": [["M", "S"]], - "zirconium's": null, - "zirconiums": null, - "zircon": [["S", "M"]], - "zircons": null, - "zircon's": null, - "Zita": [["M"]], - "Zita's": null, - "Zitella": [["M"]], - "Zitella's": null, - "zither": [["S", "M"]], - "zithers": null, - "zither's": null, - "zit": [["S"]], - "zits": null, - "zloty": [["S", "M"]], - "zloties": null, - "zloty's": null, - "Zn": [["M"]], - "Zn's": null, - "zodiacal": null, - "zodiac": [["S", "M"]], - "zodiacs": null, - "zodiac's": null, - "Zoe": [["M"]], - "Zoe's": null, - "Zola": [["M"]], - "Zola's": null, - "Zollie": [["M"]], - "Zollie's": null, - "Zolly": [["M"]], - "Zolly's": null, - "Zomba": [["M"]], - "Zomba's": null, - "zombie": [["S", "M"]], - "zombies": null, - "zombie's": null, - "zombi's": null, - "zonal": [["Y"]], - "zonally": null, - "Zonda": [["M"]], - "Zonda's": null, - "Zondra": [["M"]], - "Zondra's": null, - "zoned": [["A"]], - "rezoned": null, - "zone": [["M", "Y", "D", "S", "R", "J", "G"]], - "zone's": null, - "zonely": null, - "zones": [["A"]], - "zoner": null, - "zonings": null, - "zoning": [["A"]], - "rezones": null, - "rezoning": null, - "zonked": null, - "Zonnya": [["M"]], - "Zonnya's": null, - "zookeepers": null, - "zoological": [["Y"]], - "zoologically": null, - "zoologist": [["S", "M"]], - "zoologists": null, - "zoologist's": null, - "zoology": [["M", "S"]], - "zoology's": null, - "zoologies": null, - "zoom": [["D", "G", "S"]], - "zoomed": null, - "zooming": null, - "zooms": null, - "zoophyte": [["S", "M"]], - "zoophytes": null, - "zoophyte's": null, - "zoophytic": null, - "zoo": [["S", "M"]], - "zoos": null, - "zoo's": null, - "Zorah": [["M"]], - "Zorah's": null, - "Zora": [["M"]], - "Zora's": null, - "Zorana": [["M"]], - "Zorana's": null, - "Zorina": [["M"]], - "Zorina's": null, - "Zorine": [["M"]], - "Zorine's": null, - "Zorn": [["M"]], - "Zorn's": null, - "Zoroaster": [["M"]], - "Zoroaster's": null, - "Zoroastrianism": [["M", "S"]], - "Zoroastrianism's": null, - "Zoroastrianisms": null, - "Zoroastrian": [["S"]], - "Zoroastrians": null, - "Zorro": [["M"]], - "Zorro's": null, - "Zosma": [["M"]], - "Zosma's": null, - "zounds": [["S"]], - "zoundses": null, - "Zr": [["M"]], - "Zr's": null, - "Zs": null, - "Zsazsa": [["M"]], - "Zsazsa's": null, - "Zsigmondy": [["M"]], - "Zsigmondy's": null, - "z": [["T", "G", "J"]], - "zings": null, - "Zubenelgenubi": [["M"]], - "Zubenelgenubi's": null, - "Zubeneschamali": [["M"]], - "Zubeneschamali's": null, - "zucchini": [["S", "M"]], - "zucchinis": null, - "zucchini's": null, - "Zukor": [["M"]], - "Zukor's": null, - "Zulema": [["M"]], - "Zulema's": null, - "Zululand": [["M"]], - "Zululand's": null, - "Zulu": [["M", "S"]], - "Zulu's": null, - "Zulus": null, - "Zuni": [["S"]], - "Zunis": null, - "Z�rich": [["M"]], - "Z�rich's": null, - "Zuzana": [["M"]], - "Zuzana's": null, - "zwieback": [["M", "S"]], - "zwieback's": null, - "zwiebacks": null, - "Zwingli": [["M"]], - "Zwingli's": null, - "Zworykin": [["M"]], - "Zworykin's": null, - "Z": [["X"]], - "Zens": null, - "zydeco": [["S"]], - "zydecos": null, - "zygote": [["S", "M"]], - "zygotes": null, - "zygote's": null, - "zygotic": null, - "zymurgy": [["S"]], - "zymurgies": null, - "": null - }, - "compoundRules": [{}, {}], - "compoundRuleCodes": { - "1": ["1"], - "n": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], - "t": ["0th", "1th", "2th", "3th", "4th", "5th", "6th", "7th", "8th", "9th"], - "m": ["0", "2", "3", "4", "5", "6", "7", "8", "9"], - "p": ["0th", "1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th", "9th"], - "c": ["1th", "2th", "3th"] - }, "replacementTable": [ ["a", "ei"], ["ei", "a"], @@ -152683,6 +6,7 @@ ["ey", "a"], ["ai", "ie"], ["ie", "ai"], + ["alot", "a_lot"], ["are", "air"], ["are", "ear"], ["are", "eir"], @@ -152764,14 +88,151897 @@ ["ss", "z"], ["shun", "tion"], ["shun", "sion"], - ["shun", "cion"] + ["shun", "cion"], + ["size", "cise"] ], "flags": { - "SET": "ISO8859-1", + "WORDCHARS": "0123456789", "TRY": "esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ'", - "NOSUGGEST": "!", - "COMPOUNDMIN": "1", + "SET": "UTF-8", "ONLYINCOMPOUND": "c", - "WORDCHARS": "0123456789" - } + "NOSUGGEST": "!", + "ICONV": "’ '", + "COMPOUNDMIN": "1" + }, + "dictionaryTable": { + "resting": [], + "Elam": ["M"], + "Oaxaca": ["M"], + "trifle": ["M", "Z", "G", "D", "R", "S"], + "Danny's": [], + "indulgences's": [], + "chasuble": ["S", "M"], + "iota'ses": [], + "quaff's": [], + "agglomerates's": [], + "gyratesing": [], + "reintegrate": [], + "rewind'sable": [], + "length": ["M", "N", "X"], + "melioration": ["M"], + "Pound": ["M"], + "blandishments": [], + "pupped": [], + "rhymester'ses": [], + "Foosball's": [], + "egotist's": [], + "trichinosis": ["M"], + "Jane's": [], + "macaw": ["S", "M"], + "tribes's": [], + "evisceration": ["M"], + "catalogeder": [], + "fructifieds": [], + "choke": ["M", "Z", "G", "D", "R", "S"], + "Bullock": ["M"], + "lifelike": [], + "Bohemians": [], + "Dyer": ["M"], + "eMusic": ["M"], + "peppermints": [], + "misdoingsing": [], + "spokespersons": [], + "formations": [], + "oversimplified": [], + "Blackfeet": ["M"], + "degree'ses": [], + "stamp's": [], + "mounting": ["S", "M"], + "Floyd's": [], + "Piraeus": ["M"], + "career's": [], + "evenness": ["U", "M"], + "ideal's": [], + "implausible": [], + "Mohorovicic's": [], + "rubberizeds": [], + "primitiveness": ["M"], + "burka": ["S", "M"], + "backstop": ["S", "M"], + "mealtimes's": [], + "taunters": [], + "vastly": [], + "cesarean'ses": [], + "blubber": ["G", "S", "M", "D"], + "giveaway's": [], + "realign": [], + "ninetieths": [], + "horizontally": [], + "mortar'sed": [], + "attributes": [], + "Muenster'ses": [], + "anthropoids": [], + "capsule": ["D", "S", "M", "G"], + "agenda's": [], + "garrulously": [], + "pitchforkeds": [], + "sectarian'ses": [], + "hoodies": [], + "sexagenarians": [], + "scramble": ["U", "G", "D", "S"], + "Belem": ["M"], + "uncongenial": [], + "Mari's": [], + "expensiveness's": [], + "sidestroked": [], + "exceedingly": [], + "teeny": ["T", "R"], + "flashlight'ses": [], + "lowlier": [], + "bribes's": [], + "answer'sed": [], + "serials's": [], + "parka": ["S", "M"], + "feedbags's": [], + "Gutenberg's": [], + "navigates": [], + "DPT": [], + "admix": ["G", "D", "S"], + "Lin's": [], + "obbligato's": [], + "evaporating": [], + "southpaw's": [], + "think": ["S", "R", "B", "Z", "G"], + "Zionist's": [], + "ferociousness": ["M"], + "roof'sed": [], + "Burroughs": ["M"], + "casuist's": [], + "outrage": ["M", "G", "D", "S"], + "moversing": [], + "extinctions": [], + "padlock": ["M", "D", "S", "G"], + "thereto": [], + "stringier": [], + "rigor's": [], + "impanelsed": [], + "Paul": ["G", "M"], + "armpit'ses": [], + "usher'sed": [], + "liftoff": ["S", "M"], + "pheromone'ses": [], + "jadednessly": [], + "stouts's": [], + "Hitchcock's": [], + "blasted": [], + "nutritional": ["Y"], + "connector's": [], + "airbrushesing": [], + "popup'ses": [], + "frogmarched": [], + "closed": [], + "shotgunning": [], + "concealer's": [], + "ennobles": [], + "fanzine'ses": [], + "tocsin's": [], + "misstep'ses": [], + "gopher's": [], + "sluing": [], + "commentate": ["D", "S", "G"], + "believers": [], + "maturity": ["S", "M"], + "Menotti's": [], + "radon": ["M"], + "bicycle": ["D", "R", "S", "M", "Z", "G"], + "nerveds": [], + "shapelessliness": [], + "bloopersing": [], + "reinterpretation": [], + "cert": ["S"], + "chocoholic": ["S", "M"], + "dosage": ["S", "M"], + "dockets's": [], + "sculpt": ["S", "G", "D"], + "bents's": [], + "telephoning": [], + "nonagenarian": ["M", "S"], + "friary's": [], + "prefersable": [], + "profuse": ["P", "Y"], + "aitches": [], + "unprepared": [], + "rotundity": ["M"], + "itches": [], + "smarmiest": [], + "Zinfandel's": [], + "diminutions's": [], + "Cheever": ["M"], + "nationalities": [], + "allegorist'ses": [], + "Edinburgh's": [], + "addiction": ["S", "M"], + "patriotism": ["M"], + "bigot": ["M", "D", "S"], + "electric": ["S"], + "nullity": ["M"], + "Liberace": ["M"], + "polyester's": [], + "pocket's": [], + "blurs": [], + "innovated": [], + "Cameroon's": [], + "questionnaire's": [], + "thread's": [], + "antilogarithms's": [], + "Bohemian's": [], + "quadruped'ses": [], + "guarders": [], + "jobbed": [], + "clarifying": [], + "ingenue": ["S", "M"], + "sex'sed": [], + "crossroad": ["M", "S"], + "Hoffman": ["M"], + "Thermos": [], + "Copernicus's": [], + "responsibilities's": [], + "church": ["M", "S"], + "troupe's": [], + "sluggishly": [], + "birthday": ["M", "S"], + "schoolrooms's": [], + "transistorizeds": [], + "mulish": ["P", "Y"], + "trawlings": [], + "twines's": [], + "egoistic": [], + "injecteding": [], + "herd'sed": [], + "certitude's": [], + "nosedived": [], + "outskirts": [], + "recompiled": [], + "Nation's": [], + "surroundings's": [], + "calculatedly": [], + "proinvocation": [], + "cyclist'ses": [], + "sprucer": [], + "gust's": [], + "externalizations": [], + "correcter": [], + "edifices": [], + "Shapiro's": [], + "headrests": [], + "sibyl'ses": [], + "piloted": [], + "kilowatts's": [], + "signatories's": [], + "impertinent": ["Y"], + "debuting": [], + "reek": ["G", "M", "D", "S"], + "priceds": [], + "buffed": [], + "pneumococcal": [], + "roves": [], + "immunologic": [], + "wade's": [], + "paddies": [], + "stuffierness": [], + "gunshots": [], + "murmuring": ["M"], + "expels": [], + "formerly": [], + "cavern's": [], + "satiates": [], + "carboniferous": [], + "camshafts's": [], + "jolliness": ["M"], + "dieted": [], + "wreath's": [], + "willingness": ["U", "M"], + "solidity's": [], + "vendings": [], + "Stolichnaya": ["M"], + "drubbers's": [], + "gloaming's": [], + "Casals's": [], + "glimmering's": [], + "limo": ["M", "S"], + "fray's": [], + "canvass": ["M", "D", "R", "S", "Z", "G"], + "abbe": ["S", "M"], + "demarcationens": [], + "straightedges": [], + "hemlines's": [], + "trickster": ["S", "M"], + "Vassar's": [], + "devolving": [], + "micrometers": [], + "shriek's": [], + "adjective'ses": [], + "connoisseurs": [], + "Meyer's": [], + "realms": [], + "stampedinged": [], + "multilingualism": ["M"], + "Romania": ["M"], + "entomology's": [], + "subscribes": [], + "disquisitions": [], + "invigilationed": [], + "builder": ["M"], + "decennials": [], + "pear'sly": [], + "hilliest": [], + "Craig's": [], + "policyholders": [], + "margarita'ses": [], + "friable": [], + "springiest": [], + "unenlightened": [], + "enlistings": [], + "Segundo": ["M"], + "flourish's": [], + "neocolonialist": ["M", "S"], + "canterser": [], + "Arcturus": ["M"], + "Severus": ["M"], + "emphasis's": [], + "preternaturally": [], + "toxicities's": [], + "macerateds": [], + "submicroscopic": [], + "wittingly": [], + "straggles": [], + "laundromats": [], + "assent": ["G", "M", "D", "S"], + "Balboa's": [], + "Bloomfield": ["M"], + "sapsuckers": [], + "spacewalked": [], + "Seder'ses": [], + "fag": ["S", "M"], + "midge's": [], + "bigotry's": [], + "subtenant's": [], + "servitude's": [], + "collocatesens": [], + "dormouse": ["M"], + "pickup'ses": [], + "dressage's": [], + "Fiji's": [], + "Argos's": [], + "bloodhounds's": [], + "sizes": [], + "Oriental": ["M", "S"], + "Sonia's": [], + "bordereds": [], + "frolicker": ["S", "M"], + "mungs": [], + "tattoos": [], + "hymnal": ["M", "S"], + "pigpens": [], + "drunken": ["P", "Y"], + "letdown's": [], + "condeformation": [], + "childminders": [], + "griddlecakes's": [], + "beekeeping's": [], + "southpaw": ["S", "M"], + "straightforwardly": [], + "plebby": [], + "crapping": [], + "vagrancy's": [], + "deadheads": [], + "fulcrum's": [], + "udders's": [], + "nosh": ["M", "D", "R", "S", "Z", "G"], + "wardrooms's": [], + "Del's": [], + "contumacy": ["M"], + "parsers": [], + "eugenics": ["M"], + "foreignerness": [], + "permeation's": [], + "DBMS": ["M"], + "greeting": ["M"], + "trueloves": [], + "oleander'ses": [], + "sprat's": [], + "islet's": [], + "priced": [], + "Leticia's": [], + "straddler": ["M"], + "swash's": [], + "purpose": ["D", "S", "M", "Y", "G"], + "arpeggio'ses": [], + "Amway's": [], + "soundings": [], + "senorita": ["S", "M"], + "godhood": ["M"], + "analog": ["M", "S"], + "scepter": ["M", "S"], + "humorlessly": [], + "premiersing": [], + "boycotting": [], + "tax'sed": [], + "Phaethon's": [], + "motorcycles": [], + "congratulate": ["X", "G", "N", "D", "S"], + "wussiers": [], + "bowdlerize": ["D", "S", "G"], + "getup's": [], + "bewildered": [], + "downswings": [], + "cultivates": [], + "transcendent": [], + "expel": ["S"], + "greediness's": [], + "adoptions": [], + "helplessly": [], + "sparsest": [], + "barhop": ["S"], + "russets's": [], + "RISC": [], + "Zanuck": ["M"], + "caddie's": [], + "blackmailing": [], + "dermal": [], + "appeaser": ["M"], + "stringent": ["Y"], + "warhead": ["M", "S"], + "cloudeding": [], + "stipulating": [], + "varietals": [], + "Lamont": ["M"], + "Kroger": ["M"], + "oblong": ["M", "S"], + "deifies": [], + "cylinder": ["M", "S"], + "snowiness's": [], + "trendsetting": [], + "Palladio's": [], + "woodies": [], + "callousness's": [], + "injured": ["U"], + "unitize": ["D", "S", "G"], + "went": [], + "dockyard's": [], + "punctuation's": [], + "haddock": ["S", "M"], + "Morrison": ["M"], + "bathos": ["M"], + "nightlights": [], + "ignitions": [], + "damasks": [], + "Nordic": ["M", "S"], + "bodkins": [], + "fingerlings": [], + "feuds": [], + "umpsing": [], + "infeasible": [], + "Olympiads": [], + "cerebral": [], + "prefaces": [], + "hibiscus'ses": [], + "dubbin's": [], + "Januaries": [], + "colossus's": [], + "originators": [], + "exposure's": [], + "whiters": [], + "tofu": ["M"], + "sprites": [], + "doeskin's": [], + "cultivars": [], + "arbitrate": ["G", "N", "D", "S"], + "italicized": [], + "cosignings": [], + "Liliuokalani": ["M"], + "intrusiveness": ["M"], + "Addison's": [], + "fashioner's": [], + "downhill'ses": [], + "barbarianisms": [], + "crash'sed": [], + "geog": [], + "hoedown's": [], + "mensuration's": [], + "Kosciusko's": [], + "exoduses": [], + "Sunbeam's": [], + "tetrahedron": ["M", "S"], + "Goebbels": ["M"], + "sharpsness": [], + "shadowiest": [], + "benumbeds": [], + "contraindicationens": [], + "vegetarians": [], + "fortnight'sly": [], + "Navarre": ["M"], + "roughhousing": [], + "subsistence": ["M"], + "swaggereder": [], + "tenderizer": ["M"], + "cowpoke": ["M", "S"], + "Rickenbacker": ["M"], + "aneurysm": ["S", "M"], + "resourcefulness's": [], + "drafters's": [], + "prescribed": [], + "landholdings": [], + "whimsicality": ["M"], + "Huey's": [], + "macaws": [], + "Dickinson's": [], + "biting": ["Y"], + "unforgivably": [], + "encipheringed": [], + "danglers": [], + "sluices": [], + "growlsers": [], + "obliges": [], + "promulgates": [], + "repugnance": ["M"], + "David": ["M", "S"], + "closets's": [], + "kite's": [], + "bobolinks's": [], + "clearness": ["M"], + "cyclists": [], + "mustache'sed": [], + "buoyancy": ["M"], + "dependents": [], + "Cod": [], + "etchings": [], + "slimier": [], + "celeriac": [], + "debonairness's": [], + "necrophilia": [], + "purer": [], + "advisingable": [], + "regulates": [], + "curbeding": [], + "bra": ["S", "M"], + "loutishness": [], + "traverses's": [], + "weanings": [], + "celesta's": [], + "midland": ["M", "S"], + "Torvalds's": [], + "fingermark": ["S"], + "heft's": [], + "controversies": [], + "afternoon": ["M", "S"], + "trowel'sed": [], + "sire's": [], + "pulchritudinous": [], + "omissions": [], + "catchall'ses": [], + "musky": ["P", "T", "R", "S"], + "payslips": [], + "shirking": [], + "lighters's": [], + "Dionysian": ["M"], + "justices": [], + "saber's": [], + "funkiness's": [], + "assay'sed": [], + "preventatives": [], + "moon": ["M", "D", "S", "G"], + "Minnelli's": [], + "trapdoor'ses": [], + "roofing's": [], + "validly": [], + "mascara'sed": [], + "restroom": ["S", "M"], + "palatal's": [], + "jinni": ["M"], + "psychology's": [], + "gleam's": [], + "roadblocked": [], + "satyric": [], + "dispassion": [], + "misbehaveds": [], + "prettily": [], + "omicron": ["M", "S"], + "surfboardsing": [], + "movingly": [], + "seraph's": [], + "makeup": ["M", "S"], + "Goldwyn": ["M"], + "oohs": [], + "illuminationsed": [], + "baronial": [], + "unfilled": [], + "Foosball": ["M"], + "courtrooms": [], + "Hilary": ["M"], + "paschal": [], + "effectivenessly": [], + "verb's": [], + "craniums's": [], + "inflation": ["E", "M"], + "bribersing": [], + "arithmetical": ["Y"], + "imposture's": [], + "Schiller": ["M"], + "echo's": [], + "acorn's": [], + "monetize": ["C", "G", "D", "S"], + "purse": ["M", "Z", "G", "D", "R", "S"], + "drilleder": [], + "madness": ["M"], + "heron's": [], + "florists": [], + "preexisteding": [], + "Br's": [], + "pretties": [], + "mute's": [], + "scarifieds": [], + "entering": [], + "OAS": ["M"], + "silkworm": ["M", "S"], + "replicateds": [], + "fuselages's": [], + "op'sed": [], + "fussily": [], + "eludesing": [], + "blanching": [], + "grudginged": [], + "Nepal": ["M"], + "reasonersing": [], + "representeds": [], + "sinusitis": ["M"], + "identifies": [], + "abominateds": [], + "concentrations": [], + "Americanism'ses": [], + "druids's": [], + "electrocuteds": [], + "chewsers": [], + "ding's": [], + "cosmologists's": [], + "undermineds": [], + "infamous": [], + "reveres": [], + "chappy": ["S"], + "scubas": [], + "abysses": [], + "Mollie's": [], + "Requiem's": [], + "ganging": [], + "fluctuate": ["G", "N", "D", "S", "X"], + "welcominged": [], + "deffest": [], + "Travis's": [], + "bureaucracy": ["S", "M"], + "shrouds": [], + "deflective": [], + "ragga": [], + "mono's": [], + "hysterics's": [], + "surmise'sing": [], + "Cain's": [], + "BMW's": [], + "malignancy's": [], + "Dalai": [], + "port": ["C", "A", "E", "G", "D", "S"], + "conscientiousnessly": [], + "shoveds": [], + "uncrowded": [], + "canon'ses": [], + "fairyland's": [], + "upholders": [], + "convicting": [], + "portal's": [], + "intersection": ["S", "M"], + "extremeness's": [], + "impasto": ["M"], + "chortle'sers": [], + "statemented": [], + "startup'ses": [], + "operating": [], + "starfish": ["M", "S"], + "commencementing": [], + "sandpaper's": [], + "treadles's": [], + "who": ["M"], + "dormer's": [], + "annuities's": [], + "asterisked": [], + "setscrew's": [], + "dacha": ["M", "S"], + "succession": ["S", "M"], + "Hogan's": [], + "heading's": [], + "peakeds": [], + "escapism's": [], + "Melisande's": [], + "Imus's": [], + "inch": ["M", "D", "S", "G"], + "breeders": [], + "enfranchisement": ["E", "M"], + "decrements": [], + "nonce's": [], + "concentration": ["M"], + "offeder": [], + "agelessness": ["M"], + "isinglass's": [], + "pupping": [], + "meowsing": [], + "transient": ["S", "M", "Y"], + "tortilla's": [], + "floatersing": [], + "Amos's": [], + "manholes": [], + "Fatima's": [], + "fallen": [], + "vanquished": [], + "Islam": ["M", "S"], + "smattering's": [], + "fallibly": ["I"], + "seedlings": [], + "fungibles": [], + "Aida": ["M"], + "Moussorgsky's": [], + "brunette": ["M", "S"], + "infectiousness": ["M"], + "evictsed": [], + "Durex": ["M"], + "militia": ["S", "M"], + "trampersing": [], + "Wollongong's": [], + "soloeding": [], + "koalas's": [], + "grandson'ses": [], + "Forrest's": [], + "chows": [], + "highlanderses": [], + "magician's": [], + "potty's": [], + "scantier": [], + "middle's": [], + "Uranus": ["M"], + "burnersing": [], + "discombobulatesing": [], + "olfactories": [], + "imposture'ses": [], + "pictorially": [], + "dreadful": ["P", "Y"], + "paramilitaries's": [], + "decibel": ["M", "S"], + "Thailand's": [], + "dieterers": [], + "dowse": ["D", "R", "S", "Z", "G"], + "physio": ["S"], + "silkscreens": [], + "smokestack": ["S", "M"], + "telescopeds": [], + "Belmopan": ["M"], + "dirtied": [], + "silencer's": [], + "Grable's": [], + "slumber": ["G", "S", "M", "D"], + "sweeperings": [], + "doom": ["M", "D", "G", "S"], + "solecisms": [], + "parolees": [], + "snowsuits's": [], + "kudzus's": [], + "interrogator": ["S", "M"], + "backlog": ["M", "S"], + "crossbreedsing": [], + "geese": [], + "Tweedledum's": [], + "quarantininged": [], + "microfilms": [], + "devilish": ["Y", "P"], + "jingle's": [], + "chief's": [], + "rival's": [], + "pining": [], + "coils": [], + "amerces": [], + "bluntest": [], + "snorkelersing": [], + "supportable": ["U", "I"], + "plunderer's": [], + "Lara's": [], + "katydid's": [], + "CEO": ["M"], + "sandiness's": [], + "drone": ["D", "S", "M", "G"], + "banishing": [], + "digerati's": [], + "counteractions": [], + "delicatessen's": [], + "Yvonne's": [], + "vestal": ["M", "S"], + "cataract": ["M", "S"], + "enthrallinged": [], + "orderlies": [], + "gyrating": [], + "headband": ["M", "S"], + "thought's": [], + "file's": ["K", "C"], + "skylarked": [], + "freelancing": [], + "containablement": [], + "penologist": ["M", "S"], + "Congregationalists": [], + "burgs": [], + "sororities": [], + "sanitizinged": [], + "zeitgeists": [], + "tumults's": [], + "seedcase": ["M", "S"], + "wigged": [], + "nosediveds": [], + "tartan's": [], + "Ellis's": [], + "liberatesing": [], + "Sarto's": [], + "UV's": [], + "Aldo": ["M"], + "Tarantino": ["M"], + "Mazzini": ["M"], + "grant'sed": [], + "Presbyterian": ["S", "M"], + "cartwheeling": [], + "scants": [], + "escalopes": [], + "wailersing": [], + "refract": ["S", "G", "V", "D"], + "versatile": [], + "xenon": ["M"], + "multinational's": [], + "strangulateds": [], + "difficulties's": [], + "palpitatingen": [], + "commander's": [], + "fireplace's": [], + "mobsters": [], + "deceptiveliness": [], + "idlesness": [], + "handshake'sing": [], + "apiaries": [], + "physiotherapist's": [], + "financier": ["M", "S"], + "soy": ["M"], + "yeastier": [], + "falterings": [], + "hindquarters": [], + "profile's": [], + "cloaca": ["M"], + "standby's": [], + "phrasing's": [], + "livid": ["Y"], + "throbs's": [], + "buybacks's": [], + "painkiller": ["M", "S"], + "marauded": [], + "escallop's": [], + "salmonella's": [], + "hunchbacked": [], + "additives": [], + "glaceed": [], + "averagelying": [], + "sapience's": [], + "hogan": ["S", "M"], + "electrocute": ["D", "S", "X", "G", "N"], + "Recife": ["M"], + "materiel's": [], + "streamlineds": [], + "groggiest": [], + "steerable": [], + "Asgard's": [], + "barometer'ses": [], + "recalculate": [], + "whooshes": [], + "narcissism's": [], + "describinged": [], + "Gerardo": ["M"], + "Borgs": [], + "troopship's": [], + "smiles": [], + "surreptitiousness": ["M"], + "Conn's": [], + "peregrinations": [], + "enthusiasts": [], + "LibreOffice's": [], + "bestrewed": [], + "sprouting": [], + "opposite's": [], + "gormandizesers": [], + "information's": [], + "Maidenform's": [], + "thieving": ["M"], + "brawls": [], + "macaronis": [], + "McLeod": ["M"], + "Patna's": [], + "upstarted": [], + "rootlets": [], + "yuppies": [], + "supercomputer": ["M", "S"], + "VI's": [], + "Am": ["M", "N", "R"], + "perkinesser": [], + "skies": [], + "azures's": [], + "peacekeepers's": [], + "Nipponese": ["M"], + "elderly": [], + "teasers": [], + "nightshirts": [], + "willows's": [], + "afterwords": [], + "drinks's": [], + "anglicizinged": [], + "pontificate'sing": [], + "article'sed": [], + "generators's": [], + "slicers": [], + "stimulation": ["M"], + "barrio": ["S", "M"], + "alphanumerical": ["Y"], + "staunchnessed": [], + "vireo": ["S", "M"], + "soughs": [], + "underact": ["S", "D", "G"], + "frostbite'sing": [], + "adjureds": [], + "Marjory's": [], + "designations": [], + "frappes's": [], + "elicits": [], + "bestowings": [], + "predesignated": [], + "programming's": [], + "multinationals": [], + "semi'ses": [], + "elasticizing": [], + "automation's": [], + "rocked": [], + "werewolves": [], + "unacceptability": [], + "Deon": ["M"], + "rancher's": [], + "correlations": [], + "Judson's": [], + "Io's": [], + "pageboy's": [], + "Styrofoam": ["S", "M"], + "Timur's": [], + "Sagittarius'ses": [], + "mildest": [], + "proscenium's": [], + "Klondike's": [], + "catering": [], + "whippletree's": [], + "blip": ["S", "M"], + "assayer's": [], + "modernization": ["M"], + "Timothy": ["M"], + "poignancy": ["M"], + "Chaplin's": [], + "tantalizing": ["Y"], + "sincerest": [], + "outcrop": ["M", "S"], + "costumer": ["M"], + "moderateness": ["M"], + "Frito": ["M"], + "benchmark's": [], + "countermeasure": ["S", "M"], + "laconic": [], + "climaxes": [], + "shedding": [], + "inrush": ["M", "S"], + "Arabians": [], + "tilting": [], + "loge's": [], + "Wycliffe": ["M"], + "grounding's": [], + "spontaneity": ["M"], + "Austin'ses": [], + "versedens": [], + "muted": [], + "tallyhoings": [], + "stateliness's": [], + "exhaustion's": [], + "dampsness": [], + "fishiness": ["M"], + "tongue'sing": [], + "Wilma's": [], + "mambas": [], + "cricketer": ["M"], + "soothsayer'ses": [], + "attestation": ["S", "M"], + "geriatrics": ["M"], + "twisters": [], + "lowlander": ["M"], + "sparks": [], + "Hosts": [], + "Ernestine's": [], + "trisectsed": [], + "outlaid": [], + "misappropriating": [], + "shades": [], + "heaves": [], + "countrified": [], + "lagniappe's": [], + "intermingleds": [], + "precepts's": [], + "Brownies": [], + "RTFM": [], + "ruptureds": [], + "adverseness's": [], + "perpetuatingen": [], + "realizes": [], + "callously": [], + "velum": ["M"], + "Elul's": [], + "boathouse": ["M", "S"], + "Franciscan'ses": [], + "bejeweling": [], + "mags's": [], + "cheesecake's": [], + "incinerators": [], + "serigraph's": [], + "motley": ["M", "S"], + "hoot'sed": [], + "treadle'sing": [], + "Frenchwoman": ["M"], + "precipitatingen": [], + "avalanche": ["S", "M"], + "sore'sly": [], + "detachmenting": [], + "posh": ["T", "R"], + "usurperers": [], + "club": ["M", "S"], + "wheeleder": [], + "Brittanies": [], + "Nabisco's": [], + "stabilizers": [], + "Menes's": [], + "brininess": ["M"], + "looter": ["M"], + "obsesses": [], + "laseder": [], + "inbox's": [], + "Hutton's": [], + "partner'sed": [], + "beast'ses": [], + "Pele": ["M"], + "adherence": ["M"], + "necessitous": [], + "Chimu's": [], + "entree": ["M", "S"], + "voids": [], + "doormat's": [], + "disciplineds": [], + "infinity": ["S", "M"], + "sour's": [], + "wholesaling": [], + "excreteds": [], + "gardeners": [], + "Chadwick": ["M"], + "clematis'ses": [], + "vice's": [], + "rube's": [], + "widemouthed": [], + "poverty": ["M"], + "lying": ["M"], + "Wallenstein's": [], + "hewsed": [], + "crackly": [], + "almighty": [], + "preventative": ["M", "S"], + "survivable": [], + "bounteousliness": [], + "Anouilh's": [], + "evokes": [], + "antipasti": [], + "Viacom's": [], + "thrills's": [], + "flatfoots": [], + "pulp": ["G", "M", "D", "S"], + "Zomba": ["M"], + "garters": [], + "play": ["A", "E", "G", "M", "D", "S"], + "elongation": ["M"], + "overdoes": [], + "addersing": [], + "wilt": ["M", "D", "S", "G"], + "marchioness'ses": [], + "bingeds": [], + "brickwork's": [], + "lardy": ["R", "T"], + "okay'ses": [], + "Vivaldi": ["M"], + "medulla": ["S", "M"], + "encystments": [], + "consistences": [], + "ramekin": ["S", "M"], + "rejoicing's": [], + "faultier": [], + "Arius": ["M"], + "guardians's": [], + "couch'sed": [], + "waltzer's": [], + "crowding": [], + "Latins": [], + "Claudio": ["M"], + "overcooks": [], + "upbeat's": [], + "terrified": [], + "maturateds": [], + "SAP's": [], + "munitioneding": [], + "Yakutsk's": [], + "James's": [], + "misquotations": [], + "fakersing": [], + "discernibly": [], + "wiseacre's": [], + "gathered": [], + "hummocky": [], + "fidelity's": [], + "puddleds": [], + "fathead'sed": [], + "inbox": ["M", "S"], + "cheesier": [], + "regimentings": [], + "emanatesing": [], + "carnival's": [], + "theocracy": ["S", "M"], + "ohmmeter's": [], + "furtherance": ["M"], + "overact": ["G", "V", "S", "D"], + "scallion": ["M", "S"], + "groundbreaking's": [], + "boosting": [], + "blushersing": [], + "flame'sers": [], + "silently": [], + "skyscrapers's": [], + "lickings": [], + "applicants's": [], + "burglarizinged": [], + "geopolitics": ["M"], + "monologue": ["S", "M"], + "yucca": ["S", "M"], + "Sondra's": [], + "hews": [], + "Savannah": ["M"], + "desisteding": [], + "IMNSHO": [], + "blurting": [], + "uremic": [], + "esprit's": [], + "decoy's": [], + "Rubens's": [], + "bookstore'ses": [], + "necked": [], + "webinars's": [], + "backboard": ["S", "M"], + "drinker's": [], + "anthropomorphically": [], + "architecture": ["M", "S"], + "transmissions": [], + "mossier": [], + "imposts's": [], + "lapboards's": [], + "steeperly": [], + "luggage's": [], + "Ultrasuede": ["M"], + "rankingings": [], + "malteds": [], + "fusing": [], + "exacter": [], + "battlefront'ses": [], + "goutiest": [], + "exemplifiesens": [], + "vaporizes": [], + "scrims": [], + "food's": [], + "phonetician": ["S", "M"], + "cultists": [], + "chatterbox's": [], + "backlashes": [], + "gazillion": ["S"], + "Atlantis": ["M"], + "lowborn": [], + "buglersing": [], + "Renaissances": [], + "tout": ["M", "D", "G", "S"], + "contaminator's": [], + "perfunctorily": [], + "grayness's": [], + "Agnes": ["M"], + "Livingstone's": [], + "defies": [], + "ladyloves": [], + "induceder": [], + "muffsing": [], + "confided": [], + "Proteus": ["M"], + "job's": [], + "cue": ["D", "S", "M", "G"], + "wallets": [], + "baleful": ["P", "Y"], + "cicadas": [], + "cornmeal's": [], + "Rotarian": ["M"], + "Karin's": [], + "assemblages": [], + "signally": [], + "necropolises": [], + "farmers": [], + "zapper": ["M", "S"], + "poop": ["G", "M", "D", "S"], + "wimp'sed": [], + "playfellows": [], + "Muhammadan's": [], + "foams": [], + "protecting": [], + "lathery": [], + "randomly": [], + "paperboy": ["S", "M"], + "partaker's": [], + "glows": [], + "Camel": ["M"], + "agnostic's": [], + "longed": [], + "cardiograms": [], + "intruded": [], + "illuminabling": [], + "tactic's": [], + "surpassing": [], + "swerved": [], + "Port'ser": [], + "golly": ["S", "M"], + "bestow": ["D", "G", "S"], + "wheezier": [], + "determinable": ["I"], + "fictionalizeds": [], + "moments": [], + "firehouse's": [], + "aggrandizes": [], + "misrepresentation's": [], + "relinquishing": [], + "semantically": [], + "bakeshop'ses": [], + "misgiving": ["M", "S"], + "pluralizing": [], + "anthem": ["M", "S"], + "airdropped": [], + "spinster's": [], + "intently": [], + "emphasize": ["A", "G", "D", "S"], + "topee": ["S"], + "tuftersing": [], + "lanced": [], + "starlet'ses": [], + "balderly": [], + "Camoens's": [], + "writ's": [], + "steels": [], + "Crete's": [], + "scapular": ["S", "M"], + "engorgeds": [], + "charwomen": [], + "indigent'sly": [], + "survey": ["A", "D", "G", "S"], + "extemporized": [], + "stargazeder": [], + "favor'sed": [], + "puritan": ["S", "M"], + "macadamias": [], + "beefed": [], + "roomfuls": [], + "woodworms": [], + "horrifically": [], + "precept": ["S", "M"], + "houris's": [], + "inanely": [], + "dahlia's": [], + "firefights": [], + "fainter": [], + "lard": ["M", "D", "R", "S", "Z", "G"], + "buildup's": [], + "flesh": ["G", "M", "D", "S", "Y"], + "quotation's": [], + "anti's": [], + "Roddenberry's": [], + "Koestler": ["M"], + "notcheds": [], + "result'sed": [], + "DDS": ["M"], + "dubber": ["S", "M"], + "Shylock's": [], + "witches": [], + "leaper": ["M"], + "contrite": [], + "Caligula's": [], + "kitten's": [], + "covet": ["S", "D", "G"], + "seminary": ["S", "M"], + "associatesing": [], + "purebreds's": [], + "taproots's": [], + "Grenadines": ["M"], + "nitrated": [], + "issuing": [], + "corporation's": [], + "locator'ses": [], + "hairlike": [], + "potfuls": [], + "Britannia's": [], + "cocktail": ["M", "S"], + "barflies": [], + "Cenozoic": ["M"], + "huffiest": [], + "renouncement": ["M"], + "molderings": [], + "convalescent's": [], + "prowling": [], + "ruminant's": [], + "seemingly": [], + "bucolically": [], + "frigged": [], + "gramophone'ses": [], + "judgments": [], + "logrolling": ["M"], + "orioles's": [], + "virtuously": [], + "socialist": ["S", "M"], + "scowling": [], + "potpie's": [], + "blintz's": [], + "arrangers": [], + "unpicks": [], + "thirty's": [], + "crawlies's": [], + "Gainsborough": ["M"], + "Mephistopheles": ["M"], + "ting": ["M", "D", "Y", "G"], + "democratizinged": [], + "jelly's": [], + "monism's": [], + "Jakarta": ["M"], + "paddock": ["M", "D", "G", "S"], + "caiman": ["M", "S"], + "statesman": ["M"], + "thesis's": [], + "Huntington's": [], + "placenta's": [], + "identifiable": ["U"], + "gooiest": [], + "divines's": [], + "arbitrated": [], + "terrify": ["G", "D", "S"], + "hoes": [], + "ABM's": [], + "fulfillings": [], + "equip": ["A", "S"], + "Basseterre's": [], + "cavaliers": [], + "invert": ["S", "M", "D", "G"], + "flab": ["M"], + "paycheck": ["M", "S"], + "cleavage'ses": [], + "binaries": [], + "snares": [], + "dominants": [], + "whiff": ["S", "M", "D", "G"], + "sophistical": [], + "phoneticians": [], + "carrot'ses": [], + "migrant'ses": [], + "agave": ["M"], + "Hayes's": [], + "calm": ["P", "S", "T", "G", "M", "D", "R", "Y"], + "elastic": ["M", "S"], + "manioc'ses": [], + "sunglasses's": [], + "hagglinged": [], + "compressinged": [], + "ownership's": [], + "chaser's": [], + "attack'sed": [], + "compromise'sing": [], + "Calderon's": [], + "drover": ["M"], + "psychedelically": [], + "bellhop": ["S", "M"], + "downtrodden": [], + "polygraphed": [], + "exaggeratesing": [], + "renaissance'ses": [], + "overwrites": [], + "learnedly": [], + "ampersand's": [], + "smog's": [], + "forewarneds": [], + "assortingment": [], + "deadbolts's": [], + "gram's": [], + "Ionic": ["S", "M"], + "pyrimidine'ses": [], + "aviaries's": [], + "AFAIK": [], + "Carina's": [], + "temporizersing": [], + "johnnies": [], + "tenpins": ["M"], + "constrained": ["U"], + "polo": ["M"], + "cuisines": [], + "solo'sed": [], + "MIDI's": [], + "chopper": ["M", "D", "G", "S"], + "browning": [], + "preshrink": ["G", "S"], + "amateurs": [], + "latecomers": [], + "omnibus'ses": [], + "agar's": [], + "interpreting": [], + "enjoy": ["G", "B", "L", "S", "D"], + "certification": ["M"], + "iceberg's": [], + "incrementalism": [], + "plumber": ["M"], + "gauge'sing": [], + "beets's": [], + "brooklets's": [], + "inquisition's": [], + "negritude's": [], + "colt's": [], + "blueberries's": [], + "assign": ["A", "L", "G", "D", "S"], + "calla": ["M", "S"], + "nosebleeds": [], + "teens": [], + "cragginess": ["M"], + "rock's": [], + "highchair": ["M", "S"], + "drowns": [], + "thumbscrews's": [], + "pips": [], + "uproarious": ["Y"], + "Jordanian": ["M", "S"], + "offices": [], + "gene": ["M", "S"], + "traveling's": [], + "hypoglycemic": ["S", "M"], + "tortoiseshells": [], + "nougats": [], + "Erewhon": ["M"], + "candlelight": ["M"], + "Janacek": ["M"], + "platter's": [], + "electrocardiogram": ["M", "S"], + "yoke's": [], + "asphyxiateds": [], + "thirst'sed": [], + "communist": ["S", "M"], + "craftswoman's": [], + "Moroni's": [], + "whacker's": [], + "disquiet'sed": [], + "psalm's": [], + "industrialism": ["M"], + "doctorate": ["M", "S"], + "transistors": [], + "gauzy": ["R", "P", "T"], + "Blackbeard": ["M"], + "overwhelms": [], + "cleanups": [], + "Marla's": [], + "inventively": [], + "huller": ["M"], + "char": ["S", "M"], + "adorned": ["U"], + "Englishman": ["M"], + "luncheons's": [], + "bluegills": [], + "Pechora": ["M"], + "Scud": ["M"], + "Eridanus": ["M"], + "extravaganza": ["M", "S"], + "Leghorn's": [], + "protectorates": [], + "cobbling": [], + "lawfulness": ["U", "M"], + "molestation": ["M"], + "sightings": [], + "zillion'ses": [], + "dillydallies": [], + "radials": [], + "deicers": [], + "seabird'ses": [], + "buckle's": [], + "instructor": ["M", "S"], + "empires's": [], + "perverts": [], + "basque": ["S"], + "weakest": [], + "Wilkinson's": [], + "tamping": [], + "Chianti's": [], + "trump'sed": [], + "amp's": [], + "indemnified": [], + "Nebuchadnezzar": ["M"], + "unplugged": [], + "subbranch's": [], + "coagulation's": [], + "hunchbacks's": [], + "cantilevering": [], + "teargassing": [], + "Carmelo's": [], + "unload": [], + "backfire": ["M", "G", "D", "S"], + "deity's": [], + "procontest's": [], + "basin": ["M", "S"], + "irritate": ["D", "S", "X", "G", "N"], + "resuscitateds": [], + "notifieder": [], + "mitochondrial": [], + "pioneer": ["S", "G", "M", "D"], + "consistencies": [], + "coagulant'ses": [], + "spaded": [], + "less's": [], + "chilblains": [], + "clouts's": [], + "hasp": ["M", "S"], + "loosen": ["U", "G", "S", "D"], + "streaker": ["M"], + "unaltered": [], + "beepers": [], + "strategist's": [], + "contemns": [], + "periodic": [], + "coelenterates": [], + "anemometer": ["S", "M"], + "Leadbelly's": [], + "heavens's": [], + "institution's": [], + "Nagy": ["M"], + "cheesinged": [], + "Haywood's": [], + "clerking's": [], + "enthroning": [], + "vouchsafeds": [], + "Nissan's": [], + "kindling's": [], + "waived": [], + "reweigh": [], + "winners's": [], + "grandniece'ses": [], + "Holder's": [], + "sonogram's": [], + "nozzle": ["M", "S"], + "Kathie's": [], + "enfoldsing": [], + "comparabled": [], + "vexatiously": [], + "strife's": [], + "knocking's": [], + "Veronese's": [], + "Heshvan's": [], + "discovers": [], + "unstrapped": [], + "digest": ["S", "M", "D", "G", "V"], + "Hill": ["M"], + "skipper'sed": [], + "triangulate": ["G", "N", "D", "S"], + "swindles's": [], + "coincident": [], + "Sukkot": [], + "capitulation's": [], + "revetments's": [], + "antislavery": [], + "dingle": ["S", "M"], + "bobtail's": [], + "elation's": [], + "cloyings": [], + "slaughterhouse": ["M", "S"], + "detoxes": [], + "hitchhikeder": [], + "plumb": ["M", "D", "R", "S", "Z", "G", "J"], + "quicksilver's": [], + "lacrosse's": [], + "stokesers": [], + "pigheaded": ["P", "Y"], + "dishing": [], + "maidens": [], + "tune's": [], + "robing": [], + "metal": ["S", "M", "D"], + "peen's": [], + "trivialities": [], + "arthropod'ses": [], + "enplaned": [], + "sweets's": [], + "regroups": [], + "gnarly": ["T", "R"], + "addressinged": [], + "blareds": [], + "nonfunctional": [], + "Wiggins's": [], + "uses": [], + "Earnest's": [], + "proselytizer's": [], + "standpoint'ses": [], + "emasculation": ["M"], + "peritonitis's": [], + "megabits's": [], + "portrait'ses": [], + "ballasts's": [], + "spark": ["S", "M", "D", "Y", "G"], + "bygone": ["S", "M"], + "dares": [], + "Tallahassee's": [], + "advantageous": ["E", "Y"], + "Mylar's": [], + "motorbikinged": [], + "Babylons": [], + "comity's": [], + "Cranach's": [], + "stratosphere's": [], + "peasantry": ["M"], + "Bayeux's": [], + "unassertive": [], + "curtain": ["G", "M", "D", "S"], + "pussiers": [], + "entomology": ["M"], + "Bremen's": [], + "heuristic": ["M", "S"], + "upraised": [], + "rubberneckersing": [], + "spoilers": [], + "trigger": ["M", "D", "S", "G"], + "downspout'ses": [], + "defaminged": [], + "couchesing": [], + "Creighton's": [], + "unresettle": [], + "deceitfulness's": [], + "Shijiazhuang": ["M"], + "napalmed": [], + "wingspan": ["M", "S"], + "finance": ["A", "D", "S", "G"], + "buffeding": [], + "sanctity's": [], + "numinous": [], + "purest": [], + "earnestly": [], + "fluorocarbon's": [], + "Sept": ["M"], + "hip's": [], + "vocalist's": [], + "jerk": ["M", "D", "S", "G"], + "curtsies": [], + "heartthrobs": [], + "haylofts": [], + "amperage": ["M"], + "chaparral": ["S", "M"], + "platitude's": [], + "wobbled": [], + "internationalism's": [], + "imperfections": [], + "counterfeiteder": [], + "carborundum": ["M"], + "locale'ses": [], + "wedge": ["D", "S", "M", "G"], + "Vogue": ["M"], + "twelves": [], + "flyable": [], + "soresness": [], + "glitz": ["M"], + "expandsed": [], + "preemptsed": [], + "measureless": [], + "normalcy": ["M"], + "protagonists": [], + "draftsed": [], + "flagstaffs": [], + "horsemen": [], + "erroneous": ["Y"], + "quilt'sed": [], + "reinoculate": [], + "skoal": ["S", "M"], + "barkeeper": ["M"], + "unduly": [], + "camber's": [], + "unfathomably": [], + "werewolf": ["M"], + "Wimsey's": [], + "theoretician's": [], + "lump's": [], + "Berg": ["M", "N", "R"], + "victimized": [], + "mocha": ["S", "M"], + "televangelism's": [], + "karaoke": ["M", "S"], + "postmark": ["S", "M", "D", "G"], + "terns": [], + "keybindings": [], + "stroller": ["M"], + "Capella": ["M"], + "indigents's": [], + "footsore": [], + "tamarind": ["M", "S"], + "mineral": ["M", "S"], + "lacerate": ["D", "S", "G", "N", "X"], + "sleweding": [], + "Rowena's": [], + "dded": ["K"], + "bombshells": [], + "clueds": [], + "Fourneyron": ["M"], + "pailful's": [], + "hurry'sing": [], + "commiserateds": [], + "furloughed": [], + "Walden's": [], + "Proserpine": ["M"], + "vacant": ["Y"], + "overbuyings": [], + "chockeds": [], + "mirthfulnessly": [], + "victimizes": [], + "bespattered": [], + "striping": [], + "Luigi's": [], + "defoliation's": [], + "Zsigmondy's": [], + "despairingly": [], + "moderators": [], + "vacancy": ["S", "M"], + "lawbreakers": [], + "impinged": [], + "footage's": [], + "Parnassus": ["M", "S"], + "patronymically": [], + "Oberon's": [], + "Jerrod's": [], + "standoff'ses": [], + "generalizeds": [], + "cavalcade": ["M", "S"], + "wrack": ["G", "S", "M", "D"], + "metricatingen": [], + "splash's": [], + "morphine's": [], + "mooches": [], + "Connemara": ["M"], + "Earnest": ["M"], + "wordplay": ["M"], + "gulf": ["M", "S"], + "asphyxia's": [], + "pensively": [], + "absolutist'ses": [], + "influenceds": [], + "bewared": [], + "downiest": [], + "Gide": ["M"], + "underachieveder": [], + "smothers's": [], + "scrapyard's": [], + "abscissa's": [], + "sarongs": [], + "goldens": [], + "thermoses": [], + "collar'sed": [], + "unripest": [], + "agnosticism's": [], + "Riemann's": [], + "exclaiming": [], + "deprives": [], + "respire": ["D", "G"], + "Ares": ["M"], + "mining": ["M"], + "dolomite": ["M"], + "shambling": [], + "determinedly": [], + "twitting": [], + "cancers": [], + "unwelcoming": [], + "iceman's": [], + "Pittman's": [], + "compressing": [], + "narc'ses": [], + "Amerind": ["S", "M"], + "peeped": [], + "nonverbal": [], + "halving": [], + "cuisines's": [], + "undercharginged": [], + "loopeds": [], + "corbel": ["S", "M"], + "cell's": [], + "notebooks": [], + "ripened": ["U"], + "terrorized": [], + "underdevelopment": ["M"], + "stamen": ["S", "M"], + "bafflement": ["M"], + "burbles": [], + "refineries": [], + "codified": [], + "Karl": ["M"], + "irrepressibly": [], + "harbor'sed": [], + "bewitchment's": [], + "amiability": ["M"], + "inappropriateness": [], + "comprehension's": [], + "drunkard": ["M", "S"], + "blocs": [], + "Mongolic": ["M"], + "fairer": [], + "Tarkington's": [], + "crushesers": [], + "estates": [], + "Trobriand": ["M"], + "doormats's": [], + "bypassing": [], + "Odin": ["M"], + "liquefaction": ["M"], + "grizzliest": [], + "backgrounder's": [], + "heartlessly": [], + "ascetic's": [], + "privilege's": [], + "gunfighters": [], + "bilinguals's": [], + "video'sed": [], + "marauder": ["M"], + "benevolences": [], + "mill's": [], + "innersole": ["S", "M"], + "farewells": [], + "newsagents": [], + "concertedly": [], + "jackstraw'ses": [], + "nighest": [], + "wigwams's": [], + "switchboard's": [], + "saucing": [], + "groomsmen": [], + "bootstrap's": [], + "customer's": [], + "locket'ses": [], + "cattiness's": [], + "airbrushed": [], + "glaucoma": ["M"], + "oddballs": [], + "sticks": [], + "volunteering's": [], + "Scotsman": ["M"], + "quarantines": [], + "umbrage": ["M"], + "manic's": [], + "guano": ["M"], + "aging": ["M"], + "bungled": [], + "Erse": ["M"], + "prides": [], + "Penelope": ["M"], + "ensconceds": [], + "dynamically": [], + "anteroom's": [], + "cleft": ["M", "S"], + "pomade'sing": [], + "unaccented": [], + "druggy": [], + "portentous": ["Y", "P"], + "Paradise": [], + "larynges": [], + "correspondent's": [], + "kluged": [], + "come": ["I", "M", "Z", "G", "R", "S"], + "columnists": [], + "Mendelian's": [], + "interrelation's": [], + "foothill": ["M", "S"], + "rejoinder's": [], + "lb": ["S"], + "crankshaft": ["M", "S"], + "corollas": [], + "bigwig'ses": [], + "misconceptions's": [], + "downtrend's": [], + "chemicals's": [], + "sputtered": [], + "Mongol": ["S", "M"], + "Lagos": ["M"], + "housewarming": ["S", "M"], + "spectators's": [], + "monetizing": [], + "harder": [], + "Sakai": ["M"], + "priminged": [], + "maker's": [], + "Kirchner's": [], + "Noyes's": [], + "disestablishment": [], + "syllabicates": [], + "neap's": [], + "burnoose'ses": [], + "dallyinged": [], + "inviolate": [], + "Elias's": [], + "alleluias": [], + "atrophying": [], + "chummy": ["P", "T", "R"], + "colonizing": [], + "campanology's": [], + "wreaking": [], + "stammerer's": [], + "spasm": ["S", "M"], + "assist'sed": [], + "cocoon's": [], + "few'ser": [], + "lender": ["M"], + "suffixeds": [], + "peach's": [], + "Azerbaijan's": [], + "monarchical": [], + "tensors": [], + "clicks": [], + "nonavailability": ["M"], + "megaphones": [], + "unexcited": [], + "loathsomenessly": [], + "anthologists": [], + "acanthus'ses": [], + "insinuators's": [], + "golf's": [], + "gargantuan": [], + "endeavors": [], + "deponents": [], + "presuming": [], + "tidbits": [], + "dears": [], + "myself": [], + "Amazons": [], + "squamous": [], + "billablings": [], + "voice": ["I", "D", "S", "M", "G"], + "niggle'sers": [], + "board": ["Z", "G", "M", "D", "R", "S"], + "hypodermics": [], + "Mendeleev": ["M"], + "Kemp's": [], + "disorder": ["Y"], + "argumentativeness's": [], + "consign": ["A", "S", "D", "G"], + "colt": ["M", "S"], + "Bermudans": [], + "regale": [], + "expansionist's": [], + "pentathlon's": [], + "reducer": ["M"], + "headhunteder": [], + "highway's": [], + "swatch's": [], + "Theravada": ["M"], + "Vinson's": [], + "bushwhacksers": [], + "Waikiki": ["M"], + "wringing": [], + "encounters's": [], + "camouflageder": [], + "deluxe": [], + "chartersing": [], + "pugnaciousliness": [], + "readership's": [], + "fisherman": ["M"], + "soothsayer": ["M", "S"], + "lamppost's": [], + "seatmates's": [], + "Np": ["M"], + "Tesla": ["M"], + "entrench": ["D", "S", "G", "L"], + "kinkiness's": [], + "hypocrite": ["M", "S"], + "jaguars's": [], + "orthodontics's": [], + "abrogating": [], + "perspicacious": ["Y"], + "duty's": [], + "pantomimes": [], + "stenography": ["M"], + "bicarb": ["M", "S"], + "complicated": ["Y"], + "gnarleding": [], + "jointed": [], + "twinkle'sing": [], + "Zola's": [], + "blowzy": ["R", "T"], + "rebuking": ["Y"], + "viburnum": ["S", "M"], + "safest": [], + "Aussie'ses": [], + "alibi": ["G", "M", "D", "S"], + "tumble's": [], + "geezer": ["M", "S"], + "Samoa": ["M"], + "spinach": ["M"], + "personalty's": [], + "nonesuch's": [], + "Silvia": ["M"], + "staidest": [], + "Marciano's": [], + "sophomore'ses": [], + "sidepiece'ses": [], + "nibbleder": [], + "snuffeder": [], + "coolie": ["S", "M"], + "naughtiness": ["M"], + "riverbed": ["M", "S"], + "Doris's": [], + "witless": ["P", "Y"], + "quarter": ["S", "G", "M", "D", "Y"], + "averts": [], + "exportersing": [], + "behind's": [], + "utterance": ["S", "M"], + "index's": [], + "Negress's": [], + "immutably": [], + "motifs": [], + "presbytery's": [], + "secretions": [], + "livelihoods's": [], + "prominent": ["Y"], + "possum": ["S", "M"], + "parachute'sing": [], + "philosophizeder": [], + "dewiness": ["M"], + "keyboardist's": [], + "hurdling": ["M"], + "skiffs": [], + "strikeout": ["M", "S"], + "Ralph": ["M"], + "numerals": [], + "Bogota's": [], + "proliferate": ["D", "S", "G", "N"], + "asphodel's": [], + "treads": [], + "merriest": [], + "mitigatingen": [], + "Md": ["M"], + "immersingen": [], + "panniers's": [], + "weepies's": [], + "backpack'sed": [], + "colorants": [], + "transmitted": [], + "smoothest": [], + "inverses": [], + "Guadalquivir": ["M"], + "detainee's": [], + "old'sen": [], + "paywall": ["S", "M"], + "unregulated": [], + "converter's": [], + "maintops's": [], + "earthlings": [], + "Christmases": [], + "multiverse's": [], + "strewed": [], + "Baden's": [], + "horsewhips": [], + "breasteding": [], + "cobbled": [], + "Weissmuller": ["M"], + "Zomba's": [], + "seediest": [], + "Briticism": ["S", "M"], + "barfed": [], + "modernized": [], + "neuronal": [], + "harpsichord's": [], + "wallopsings": [], + "throw's": [], + "silvering's": [], + "integrationing": [], + "existentialism's": [], + "bricklayer": ["M", "S"], + "contrail'ses": [], + "dyestuff's": [], + "cruncheder": [], + "Psyche": ["M"], + "heededing": [], + "Diem": ["M"], + "nucleolus": ["M"], + "filliped": [], + "ingrain": ["G"], + "arborvitae": ["S", "M"], + "petition's": [], + "Rwanda": ["M", "S"], + "philter's": [], + "slaked": [], + "transgression's": [], + "matricidal": [], + "surveyings": [], + "rared": [], + "mandrels's": [], + "placard": ["S", "M", "D", "G"], + "terraced": [], + "Jeffry's": [], + "bandieder": [], + "Vaduz": ["M"], + "leisure": ["D", "M", "Y"], + "ogre": ["M", "S"], + "appointments": [], + "appreciatively": [], + "crampon's": [], + "Moran": ["M"], + "storyteller": ["M", "S"], + "Balkhash": ["M"], + "Chauncey's": [], + "oink": ["M", "D", "S", "G"], + "strand's": [], + "withdraw": ["S", "G"], + "weepy's": [], + "extracellular": [], + "combiner's": [], + "discerns": [], + "blowhards": [], + "journos": [], + "weeders": [], + "midriff'ses": [], + "saintly": ["P", "R", "T"], + "Armstrong": ["M"], + "scholastically": [], + "humblings": [], + "washable": ["S", "M"], + "intransigent": ["M", "Y", "S"], + "brassiere": ["M", "S"], + "jaunt'sed": [], + "gemology's": [], + "slacken": ["D", "G"], + "conglomerateds": [], + "ponds": [], + "metacarpals's": [], + "papergirl": ["S", "M"], + "pallidly": [], + "arcane": [], + "Egyptian's": [], + "itinerary's": [], + "epidermis": ["M", "S"], + "scabbard'ses": [], + "perjury's": [], + "enervationed": [], + "Malcolm's": [], + "stockpiles": [], + "lawsuit'ses": [], + "sectaries's": [], + "churning": [], + "ampler": [], + "cooperative": ["P", "M", "Y", "S"], + "chatter'sed": [], + "foolishness's": [], + "narcotic": ["S", "M"], + "resolverable": [], + "terminus": ["M"], + "derivation'ses": [], + "propaganda's": [], + "effulgent": [], + "halfwit": ["S", "M"], + "plowing's": [], + "consortia": [], + "shandies": [], + "factorial'ses": [], + "courtliest": [], + "birthstone's": [], + "skillful": ["U", "Y"], + "cleverest": [], + "ashamedly": [], + "avenger": ["M"], + "oratory's": [], + "list": ["M", "D", "N", "S", "J", "X", "G"], + "sahib'ses": [], + "receptionists's": [], + "lacing": [], + "sundae'ses": [], + "tobacconist's": [], + "hurried": ["U", "Y"], + "Barnaby's": [], + "airlessness's": [], + "Longstreet's": [], + "Boer's": [], + "truculence's": [], + "playoffs's": [], + "phobics": [], + "Susanna's": [], + "cartilages": [], + "windpipes": [], + "Lot": ["M"], + "dictates": [], + "soreheads": [], + "earfuls's": [], + "pillowslip's": [], + "earmark": ["S", "M", "D", "G"], + "scrotum's": [], + "collegiate": [], + "reservist's": [], + "cholesterol": ["M"], + "attitudes": [], + "schismatic's": [], + "chimerical": [], + "deaneries": [], + "crumbiest": [], + "tonalities's": [], + "filigreeds": [], + "blogs's": [], + "lifer": ["M"], + "foreseeablers": [], + "verbalizeds": [], + "retreat": [], + "crabbier": [], + "actsed": [], + "stripteaser's": [], + "jetted": [], + "sectors": [], + "Wabash": ["M"], + "squirt": ["S", "G", "M", "D"], + "macrocosm": ["S", "M"], + "Rubik's": [], + "Catholic'ses": [], + "selfishness's": [], + "gentlefolks's": [], + "sou'wester": [], + "glared": [], + "rainfalls": [], + "messianic": [], + "boinkinged": [], + "dogsleds": [], + "Mohammedans's": [], + "spotty": ["T", "P", "R"], + "expectorateds": [], + "Keenan": ["M"], + "inalienable": [], + "anonymous": ["Y"], + "forgetting": [], + "coliseums": [], + "compacted": [], + "cheerio'ses": [], + "show'sed": [], + "saddeneding": [], + "doping": ["M"], + "he'll": [], + "battleships": [], + "Knesset": ["M"], + "football'ser": [], + "settle's": [], + "poly": [], + "protagonist": ["S", "M"], + "binge'sed": [], + "housebreaker": ["M"], + "chanteys": [], + "matching": [], + "gimpings": [], + "garaging": [], + "psychologist's": [], + "disposition": ["I", "S", "M"], + "guestsing": [], + "lumbers": [], + "expenditures's": [], + "miscellany's": [], + "charwoman": ["M"], + "asserts": [], + "sweat": ["Z", "G", "S", "M", "D", "R"], + "corruptest": [], + "sovereign": ["S", "M"], + "conjugatesens": [], + "groovy": ["R", "T"], + "swipe's": [], + "relevance's": [], + "vesper": ["M", "S"], + "cafe": ["S", "M"], + "pres": [], + "gearwheels's": [], + "concertized": [], + "prostitute": ["M", "G", "N", "D", "S"], + "mike'sing": [], + "rosette's": [], + "vanishing": [], + "pee": ["D", "R", "S", "M", "Z"], + "quota": ["S", "M"], + "crosshatching": [], + "profligacy's": [], + "matriarchies's": [], + "bunco": ["S", "M", "D", "G"], + "ethics's": [], + "Raleigh's": [], + "attractive": ["U", "Y"], + "distillates": [], + "improvise": ["Z", "G", "D", "R", "S"], + "eavesdropper": ["S", "M"], + "mutesness": [], + "will": ["M", "D", "S"], + "fins's": [], + "autobiographers's": [], + "sequins's": [], + "rainproof": [], + "Bartholdi's": [], + "strikebreaker's": [], + "water'sed": [], + "socioeconomically": [], + "tuques": [], + "chive'ses": [], + "castaways": [], + "alibiing's": [], + "groveled": [], + "leguminous": [], + "lavatories's": [], + "Vulg": [], + "remandsing": [], + "Inge's": [], + "robocalling's": [], + "excoriatesing": [], + "hiker": ["M"], + "agings": [], + "buskers": [], + "Antillean": [], + "surfboard'sed": [], + "Dresden's": [], + "outfields": [], + "Modigliani's": [], + "analogue": ["S", "M"], + "broodmares": [], + "Bunyan's": [], + "Crabbe": ["M"], + "midden": ["M", "S"], + "variability": ["I", "M"], + "interruption": ["M", "S"], + "Oswald": ["M"], + "booted": [], + "wreath'sed": [], + "footstep": ["M", "S"], + "wondrously": [], + "metabolites's": [], + "estoppel": [], + "player's": [], + "motivateds": [], + "brainchild's": [], + "baronetcies's": [], + "revenge": ["M", "G", "D", "S"], + "toastier": [], + "buzzer": ["M"], + "sovereigns": [], + "Sadducee": ["M"], + "Alphonse": ["M"], + "soapboxes": [], + "diner": ["M"], + "delicacy's": [], + "feasibly": [], + "cushioned": [], + "feckless": ["P", "Y"], + "snifters": [], + "metalwork's": [], + "gangrened": [], + "criminologist": ["M", "S"], + "verily": [], + "knighting": [], + "sanitarians's": [], + "sanctimonious": ["Y", "P"], + "pointillism's": [], + "vertebra's": [], + "nonevents": [], + "reselling": [], + "childbirth's": [], + "slung": [], + "salesperson": ["M", "S"], + "Croats": [], + "Aztlan's": [], + "roughnecking": [], + "Continent's": [], + "humorist's": [], + "piggybacking": [], + "discography": ["S", "M"], + "acrylics": [], + "whacking": [], + "egalitarianism": ["M"], + "Nguyen": ["M"], + "euro": ["M", "S"], + "acquirer": [], + "Ribbentrop's": [], + "enunciateds": [], + "dungs": [], + "uncontaminated": [], + "honorers's": [], + "terrapins": [], + "crowned": ["U"], + "bashfully": [], + "assassinationsed": [], + "gauchenessly": [], + "nucleotide": [], + "foment": ["S", "G", "D"], + "unleavened": [], + "catsuit": ["S"], + "pyromaniacs's": [], + "Lolita": ["M"], + "mouth'sed": [], + "collectivism": ["M"], + "snooker's": [], + "Celts's": [], + "algebras": [], + "impliesing": [], + "gritters": [], + "winter'sed": [], + "yodelerers": [], + "misgiving's": [], + "cellphone'ses": [], + "boo": ["S", "M", "D", "H", "G"], + "nonbelligerent'ses": [], + "PLO": ["M"], + "loganberry": ["S", "M"], + "anorectic's": [], + "brilliant's": [], + "hatchet's": [], + "Whitsundays": [], + "donor's": [], + "feast's": [], + "redacteding": [], + "homewrecker": ["S", "M"], + "span's": [], + "Patti's": [], + "ponderousness's": [], + "Pekingese's": [], + "doglegging": [], + "convertibles": [], + "schilling's": [], + "wall": ["M", "D", "G", "S"], + "sulfonamides": [], + "malware": ["M"], + "Junker's": [], + "Dwight": ["M"], + "packets": [], + "johnnycakes": [], + "Kathy's": [], + "fizzled": [], + "soliloquize": ["D", "S", "G"], + "Manchu": ["S", "M"], + "Monsanto": ["M"], + "naturalness": ["U", "M"], + "headersing": [], + "Persian's": [], + "leitmotifs": [], + "deductions": [], + "bushed": [], + "stinks": [], + "methodically": [], + "coiffured": [], + "gunfighter's": [], + "afflatus's": [], + "ace": ["D", "S", "M", "G"], + "rowan": ["S"], + "steely": ["P", "T", "R"], + "honeymooneder": [], + "Rh's": [], + "unsuitability": [], + "gumdrop": ["S", "M"], + "snarkiest": [], + "backwoodsmen": [], + "Jenifer": ["M"], + "travestyinged": [], + "catalogers": [], + "veining": [], + "fulling": [], + "healing": [], + "Maldive": ["M", "S"], + "steeds": [], + "capsicum's": [], + "bailabling": [], + "Sistine": ["M"], + "airworthiness": ["M"], + "blackness's": [], + "mushersing": [], + "dressing": ["S", "M"], + "riposting": [], + "Pygmy's": [], + "Koran": ["M", "S"], + "Bimini": ["M"], + "groin": ["S", "M"], + "whodunits": [], + "bulked": [], + "Somalia": ["M"], + "sybarites": [], + "aligning": [], + "bewitch": ["G", "L", "D", "S"], + "dwellinger": [], + "regular'sly": [], + "Berger": ["M"], + "brasserie'ses": [], + "seq": [], + "simulcasted": [], + "brakeds": [], + "ritualism": ["M"], + "quartering's": [], + "bolstereds": [], + "panoply": ["S", "M"], + "molluscan": [], + "brisks": [], + "exchange'sing": [], + "Marconi's": [], + "SS": [], + "topological": ["Y"], + "lobbing": [], + "Jataka's": [], + "triennial": ["M", "Y", "S"], + "recook": [], + "puddles": [], + "documentation's": [], + "appreciatesens": [], + "snarkier": [], + "Taliesin's": [], + "bleakest": [], + "shh": [], + "grizzlesing": [], + "rabbet's": [], + "perigee's": [], + "Halloween's": [], + "Gandalf's": [], + "overlarge": [], + "lustiness's": [], + "grayest": [], + "backstops": [], + "tormentors": [], + "laparoscopy": [], + "drowsily": [], + "para's": [], + "runs": [], + "bigotry": ["S", "M"], + "correcteder": [], + "gladdens": [], + "misplace": ["G", "L", "D", "S"], + "denizen": ["M", "S"], + "fixes": [], + "scantiness's": [], + "val": [], + "toastiers": [], + "achiever's": [], + "Hesperus": ["M"], + "ridgepole": ["S", "M"], + "identikits": [], + "Maxwell": ["M"], + "Socorro's": [], + "synthesize": ["Z", "G", "D", "R", "S"], + "blacklistsing": [], + "worm'sed": [], + "vaguest": [], + "venues": [], + "anybodies's": [], + "magnesium's": [], + "distinguish": ["G", "D", "S", "B"], + "shoaleds": [], + "paraprofessionals": [], + "tortuousness": ["M"], + "size's": [], + "Enif's": [], + "greenness": ["M"], + "skein's": [], + "woo": ["S", "Z", "G", "D", "R"], + "skimpiness": ["M"], + "guiltiness": ["M"], + "skydived": [], + "airlifting's": [], + "integral's": [], + "McGee's": [], + "bans's": [], + "sketchesers": [], + "birch": ["G", "M", "D", "S"], + "canaries": [], + "creches": [], + "duper's": [], + "rejigging": [], + "instigating": [], + "err": ["G", "S", "D"], + "stricter": [], + "column's": [], + "Montenegrin's": [], + "fog's": [], + "enrich": ["D", "S", "L", "G"], + "petrodollar's": [], + "garfishes": [], + "enshriningment": [], + "succumbing": [], + "youthfulness": ["M"], + "godchild's": [], + "antiquity's": [], + "Ritz's": [], + "Bahamanian": [], + "wakefulnessly": [], + "nonpareil'ses": [], + "craned": [], + "gastronomical": ["Y"], + "lease'sing": [], + "transcendentalists": [], + "contralto's": [], + "ranker": [], + "sheikdom'ses": [], + "cowslip's": [], + "cockfighting": ["M"], + "bantered": [], + "extremism's": [], + "pocking's": [], + "lactation": ["M"], + "currant": ["M", "S"], + "wriggling": [], + "abuzz": [], + "hermetical": ["Y"], + "sequin's": [], + "camping's": [], + "ministers": [], + "fiesta": ["S", "M"], + "fainer": [], + "derringer's": [], + "conductibility": ["M"], + "sepulchereds": [], + "packsed": [], + "oversellings": [], + "assailant": ["S", "M"], + "laborer": ["M"], + "incipient": ["Y"], + "DDT": ["S"], + "befallingen": [], + "rumble'sing": [], + "showiest": [], + "amicably": [], + "saintlike": [], + "plebiscites": [], + "cloyingly": [], + "mercy": ["S", "M"], + "iron's": [], + "Yoda's": [], + "highfalutin": [], + "showily": [], + "excision's": [], + "sulkies": [], + "Bolivian": ["M", "S"], + "Styx's": [], + "Ned": ["M"], + "smuggler": ["M"], + "supplement": ["M", "D", "G", "S"], + "mozzarella's": [], + "thickerly": [], + "faculty's": [], + "fang's": [], + "Itasca's": [], + "Pleistocene": ["M"], + "clockworks": [], + "nothings": [], + "Strabo": ["M"], + "apply": ["A", "N", "X", "G", "D", "S"], + "Norma's": [], + "experimenting": [], + "plunging": [], + "everyone": ["M"], + "slipcase'ses": [], + "ridding": [], + "vibraphone'ses": [], + "extermination's": [], + "coulee's": [], + "infinities": [], + "ampule's": [], + "quid": ["M", "S"], + "kraut": ["S", "M", "!"], + "annoy": ["G", "D", "S"], + "lawlessnessly": [], + "deerstalker": ["S"], + "conglomeration": ["M"], + "dang": ["S", "Z", "G", "D", "R"], + "assembler's": [], + "steamboat'ses": [], + "Slurpee's": [], + "sickies": [], + "Chadian": ["M", "S"], + "page's": [], + "baseline's": [], + "exceptionalism": [], + "calcimine's": [], + "phonics's": [], + "fatuousness's": [], + "microdot": ["S", "M"], + "jihadists": [], + "ISO": ["M"], + "welshinged": [], + "dollops": [], + "creakier": [], + "carelessness's": [], + "forewords": [], + "macrocosms's": [], + "undulating": [], + "dopa": ["M"], + "Ernst's": [], + "odoriferous": [], + "Gallicisms": [], + "Prometheus's": [], + "Augusta": ["M"], + "toastmasters": [], + "gook'ses": [], + "vulgarisms": [], + "rounders": [], + "overhearsing": [], + "concluded": [], + "opinion's": [], + "oversimplify": ["D", "S", "N", "G", "X"], + "CBS's": [], + "crossing's": [], + "whitewash's": [], + "liniment's": [], + "emphasizes": [], + "horsehair's": [], + "quality": ["S", "M"], + "hippo": ["S", "M"], + "storehouse'ses": [], + "Tinseltown": ["M"], + "knitted": [], + "lapidaries": [], + "schoolroom's": [], + "fixation": ["M"], + "trout": ["S", "M"], + "Bootes": ["M"], + "hyperventilatingen": [], + "overplayed": [], + "waves": [], + "cures": [], + "Ta's": [], + "morel's": [], + "unused": [], + "casket'ses": [], + "leakiness's": [], + "compileder": [], + "scroll's": [], + "illustrious": ["P", "Y"], + "requiter's": [], + "dominion's": [], + "prostitution": ["M"], + "nonelastic": [], + "adj": [], + "Amerindians": [], + "meekerly": [], + "enraged": [], + "washing": ["M"], + "disquisition's": [], + "Marseillaise'ses": [], + "Virgie's": [], + "locker's": [], + "excluding": [], + "gigapixel's": [], + "withstands": [], + "Nanchang": ["M"], + "driest": [], + "penlights": [], + "runtiest": [], + "chortlersing": [], + "incriminatingen": [], + "weldersing": [], + "obituaries's": [], + "Caitlin": ["M"], + "sunfish's": [], + "prelude": ["M", "S"], + "endeavorings": [], + "footbridge": ["S", "M"], + "sorcerer'ses": [], + "pigskin'ses": [], + "Miltown's": [], + "imprinter's": [], + "offhandedness": ["M"], + "specializations": [], + "blowsers": [], + "supplication": ["M"], + "skyline": ["S", "M"], + "charwoman's": [], + "lotions's": [], + "Antoine": ["M"], + "grogginess": ["M"], + "hack's": [], + "ickiest": [], + "photon'ses": [], + "futon's": [], + "restitution's": [], + "paces": [], + "misapplications": [], + "apocrypha": ["M"], + "modernistic": [], + "pawl'ses": [], + "embalming": [], + "majordomo's": [], + "outingsing": [], + "moonshiner's": [], + "paroxysms's": [], + "bobbies": [], + "township's": [], + "Aleichem's": [], + "prayerful": ["Y"], + "ledge'sers": [], + "excommunications": [], + "Leon": ["M"], + "gentling": [], + "Darwinian": ["M"], + "poltroon's": [], + "prank's": [], + "judgments's": [], + "Navajo's": [], + "bungees's": [], + "feminism": ["M"], + "enlistments": [], + "carrels": [], + "dislike": [], + "convex": ["Y"], + "thirteenth's": [], + "motormouth's": [], + "chisel": ["Z", "G", "M", "D", "R", "S"], + "outdoors's": [], + "Sir": ["S", "M"], + "Angie's": [], + "childbearing's": [], + "entice": ["G", "D", "S", "L"], + "affections": [], + "Standish": ["M"], + "returnable": ["S", "M"], + "absurdness": ["M"], + "Highlander's": [], + "Nev": ["M"], + "conference": ["M", "G", "S"], + "glamorous": ["Y"], + "FAQ": ["S", "M"], + "pulsated": [], + "cuticles": [], + "gossiperers": [], + "indecipherable": [], + "gale": ["A", "S"], + "neutrons's": [], + "Caucasian'ses": [], + "Messiah's": [], + "Swedenborg's": [], + "ejaculated": [], + "pingings": [], + "entertaining": ["M", "Y"], + "boasting": [], + "nursersing": [], + "Walgreen": ["M"], + "microfilmed": [], + "specimen's": [], + "spartan": [], + "hyped": [], + "scabs": [], + "squish": ["G", "M", "D", "S"], + "darns": [], + "instanterly": [], + "snogging": [], + "chronologist'ses": [], + "fore": ["M", "S"], + "Telemachus's": [], + "gritting": [], + "refold": [], + "imaginably": ["U"], + "testate": ["S"], + "shenanigan": ["S", "M"], + "venturesomenessly": [], + "eruptions": [], + "surrealistically": [], + "canal": ["M", "S"], + "Tracy's": [], + "headsmen": [], + "mascaraing's": [], + "biographer's": [], + "Magoo": ["M"], + "midrib'ses": [], + "bumblers": [], + "laundress's": [], + "spearfishing's": [], + "squid": ["S", "M"], + "Napoleon's": [], + "immodesty": ["M"], + "gorges": [], + "sloughing's": [], + "finder": ["M"], + "harm's": [], + "disambiguation": [], + "biffed": [], + "maggot's": [], + "appliers": [], + "oxidation": ["M"], + "wrench'sed": [], + "narratives": [], + "vegetation's": [], + "multiplicities": [], + "conflates": [], + "impart": ["S", "D", "G"], + "exfoliate": ["G", "N", "D", "S"], + "puds": [], + "kana": [], + "stewardess's": [], + "unmitigated": [], + "intercity": [], + "haunt'sed": [], + "keepersing": [], + "cautions": [], + "denouement": ["M", "S"], + "bullshitter's": [], + "lithosphere": ["S", "M"], + "coughed": [], + "Jesuit's": [], + "rollmop": ["S"], + "unfamiliar": [], + "betoken": ["G", "D", "S"], + "totem's": [], + "ordinaries's": [], + "skivvieds": [], + "killings's": [], + "cheerer's": [], + "prosecutor's": [], + "riveds": [], + "Durkheim": ["M"], + "kingpins": [], + "let": ["I", "S", "M"], + "indemnifieds": [], + "landowners": [], + "Shell": ["M"], + "1th": ["t", "c"], + "piano": ["S", "M"], + "ethnocentrism": ["M"], + "burlap": ["M"], + "oncology": ["M"], + "wickers": [], + "abacus's": [], + "handwork": ["M"], + "scupper'sed": [], + "obscurest": [], + "summerhouse's": [], + "hangar's": [], + "shaped": ["U"], + "Queensland's": [], + "bionically": [], + "Melpomene's": [], + "goulash's": [], + "chipmunk": ["S", "M"], + "smoker's": [], + "demarcated": [], + "bayou": ["M", "S"], + "thickening's": [], + "ditties": [], + "Yahweh's": [], + "turgidity's": [], + "Kirghistan": ["M"], + "genomics": [], + "family": ["S", "M"], + "beavering": [], + "soulmate": ["S", "M"], + "mentor's": [], + "braiding": ["M"], + "mathematics": ["M"], + "spoof'sed": [], + "supernova's": [], + "quarterfinals's": [], + "beans": [], + "commerce's": [], + "Zapotec's": [], + "YMCA": ["M"], + "teal'ses": [], + "horizon": ["S", "M"], + "traumatic": [], + "substation": ["M", "S"], + "hydrate": ["C", "G", "N", "D", "S"], + "girlishness": ["M"], + "stiffeden": [], + "bonus": ["M", "S"], + "stethoscope'ses": [], + "lints": [], + "overgenerous": [], + "Redgrave's": [], + "covetousness's": [], + "ringlets": [], + "cribs": [], + "host's": [], + "authoritarian": ["M", "S"], + "peekaboo": ["M"], + "tousling": [], + "caseworker": ["M"], + "searingly": [], + "expectation": ["S", "M"], + "clouding": [], + "fairly": [], + "Monaco's": [], + "redolent": [], + "flosses": [], + "monstrances": [], + "scallions": [], + "semifinal's": [], + "rucked": [], + "solute's": [], + "rector's": [], + "manes": [], + "coagulator's": [], + "rebellion": ["M", "S"], + "anglinged": [], + "fatality": ["S", "M"], + "apposes": [], + "reunfasten": [], + "barbarianism'ses": [], + "seateds": [], + "downheartedness's": [], + "irascible": [], + "nixing's": [], + "distinguishes": [], + "palatines": [], + "applicators": [], + "TN": [], + "desk's": [], + "Kitty": ["M"], + "skimp": ["S", "D", "G"], + "elder's": [], + "telephoto's": [], + "Loyd": ["M"], + "bracketeds": [], + "vesicles's": [], + "sternly": [], + "Anna": ["M"], + "addle": ["G", "D", "S"], + "dislocation": [], + "tobogganeder": [], + "ascendance": ["M"], + "temporal": ["Y"], + "overbook": ["D", "G", "S"], + "mandala": ["S", "M"], + "stakeds": [], + "Lesa's": [], + "rustically": [], + "announced": ["U"], + "nonages": [], + "ghostwritersing": [], + "resp": [], + "scabbiness's": [], + "alkyds": [], + "lobbers": [], + "polyps": [], + "ghosting": [], + "unifying": [], + "homecomings's": [], + "faintingness": [], + "intermediate's": [], + "fistulas's": [], + "McDonnell's": [], + "faints's": [], + "paralysis's": [], + "celebratory": [], + "cascara": ["S", "M"], + "poach": ["D", "R", "S", "Z", "G"], + "lay": ["A", "I", "C", "S", "G", "M"], + "rompings": [], + "excruciatingly": [], + "dredges": [], + "Mailer's": [], + "obis": [], + "shudder": ["M", "D", "S", "G"], + "Napster's": [], + "scoutsers": [], + "Ontarian": [], + "tar": ["S", "G", "M", "D"], + "outstayeding": [], + "dentifrice": ["S", "M"], + "religiously": [], + "paradise's": [], + "toiletry's": [], + "flailsing": [], + "abrogator'ses": [], + "drillersing": [], + "monomer's": [], + "Sosa": ["M"], + "chiefest": [], + "pageants": [], + "tablet's": [], + "beloveds": [], + "messages": [], + "modes": [], + "apostatizing": [], + "sellout's": [], + "Lahore": ["M"], + "gangplank's": [], + "cordials": [], + "solidarity": ["M"], + "hummed": [], + "roarersing": [], + "bywords": [], + "sesames's": [], + "noncriminals's": [], + "objurgating": [], + "SSW's": [], + "Tuscon's": [], + "Ta": ["M"], + "Arapaho'ses": [], + "bullshits": [], + "forest's": [], + "irrupts": [], + "overlookeds": [], + "wooersing": [], + "town'ses": [], + "pernicious": ["Y", "P"], + "opium's": [], + "newscast": ["S", "M", "R", "Z"], + "ricketier": [], + "sci": [], + "parring": [], + "Ha's": [], + "turfy": [], + "immuring": [], + "cubicle": ["M", "S"], + "hydrophones's": [], + "outreaching": [], + "pathos's": [], + "pessimistic": [], + "portentousness": [], + "teamster": ["M", "S"], + "zydeco's": [], + "disreinvestment": [], + "disinfectant'ses": [], + "vogues": [], + "undeniably": [], + "Cherie's": [], + "snitcheds": [], + "waddles's": [], + "mamas": [], + "trawler's": [], + "hypoallergenic": [], + "pervades": [], + "hardware": ["M"], + "Connie's": [], + "pvt": [], + "boohooing": [], + "oligonucleotide": ["S"], + "scarifying": [], + "valiance": ["M"], + "predestineds": [], + "handhold'ses": [], + "Jake": ["M"], + "Philip's": [], + "ternaries": [], + "snarf": ["S", "D", "G"], + "chignon's": [], + "landmarks": [], + "diarist's": [], + "restaurateurs": [], + "rebuked": [], + "nonmigratory": [], + "conspiratorial": ["Y"], + "lushliness": [], + "forehand": ["M", "S"], + "comprehensiveness": ["M"], + "abutsment": [], + "train's": [], + "podcasting": [], + "Marrakesh": ["M"], + "swanks's": [], + "heroic": ["S"], + "foxeds": [], + "emancipators": [], + "Gobi": ["M"], + "dozens": [], + "java's": [], + "unsounder": [], + "cite": ["I", "A", "G", "S", "D"], + "diddle": ["D", "R", "S", "Z", "G"], + "peculiarity": ["S", "M"], + "gingers's": [], + "rocket's": [], + "Gordimer's": [], + "acclamation": ["M"], + "steadiness": ["U", "M"], + "history": ["S", "M"], + "masquerades's": [], + "microbiologists": [], + "reload": [], + "graveside's": [], + "acidified": [], + "polish": ["Z", "G", "M", "D", "R", "S"], + "partner's": [], + "crematorium'ses": [], + "Hammarskjold": ["M"], + "arthropods": [], + "administrationsed": [], + "Bantus": [], + "leprosy's": [], + "radiocarbon's": [], + "Clorox": ["M"], + "reshipped": [], + "Brittany's": [], + "summitry's": [], + "homersing": [], + "feinting": [], + "rounderly": [], + "luck'sed": [], + "winceds": [], + "Behan's": [], + "pessimism": ["M"], + "spectated": [], + "champagne'ses": [], + "sulkeding": [], + "gendarme'ses": [], + "publishing": ["M"], + "dialect's": [], + "slams": [], + "Charleston's": [], + "dropper's": [], + "dongeding": [], + "fielders": [], + "civilization'ses": [], + "pommeled": [], + "forewoman": ["M"], + "chose": [], + "superabundant": [], + "debs": [], + "frauds": [], + "pedestals": [], + "peatiest": [], + "sunlight's": [], + "cannoned": [], + "recuperated": [], + "ancestor's": [], + "Angelina's": [], + "brunch'sed": [], + "carped": [], + "pluralization": ["M"], + "random": ["P", "S", "Y"], + "inhering": [], + "brioche": ["S", "M"], + "brocading": [], + "rennet's": [], + "goalkeepers": [], + "wailers": [], + "goofeding": [], + "cracker's": [], + "millionaire": ["S", "M"], + "thudding": [], + "Bourbon": ["S", "M"], + "Aswan's": [], + "clothier'ses": [], + "sinus'ses": [], + "wetbacks": [], + "bollocking": ["S"], + "ballets": [], + "synths": [], + "incapacitateds": [], + "underlay": ["S", "M"], + "stonewalling": [], + "bulrush": ["M", "S"], + "Shula": ["M"], + "pastoral's": [], + "forswear": ["S", "G"], + "highland's": [], + "hotfoot": ["M", "D", "G", "S"], + "showground": ["S"], + "nonstick": [], + "orbiting": [], + "entrants": [], + "Amharic's": [], + "poses": [], + "curfew's": [], + "symbiosis's": [], + "ruin": ["M", "D", "G", "S"], + "Rico": ["M"], + "chieftain's": [], + "hops": [], + "portraiture's": [], + "psychoanalyzed": [], + "jiggering": [], + "Asimov": ["M"], + "fastness's": [], + "hooey's": [], + "feudal": [], + "Roanoke": ["M"], + "trooped": [], + "Risorgimento's": [], + "eightieth": ["M"], + "Shah": ["M"], + "Kans": [], + "errand": ["S", "M"], + "penalizeds": [], + "ejaculationens": [], + "bigheartedness": ["M"], + "Kazakhstan": ["M"], + "prejudginged": [], + "surveillance": ["M"], + "prepubescents": [], + "misprinteds": [], + "orate": ["G", "N", "X", "D", "S"], + "paradigms's": [], + "Yacc": ["M"], + "bow'sed": [], + "blotted": [], + "envelopment": ["M"], + "falsetto's": [], + "practical's": [], + "recruiter's": [], + "aliened": [], + "unluckiness": [], + "veterinaries": [], + "spiked": [], + "fangs": [], + "tabletop'ses": [], + "whitest": [], + "marginalization": ["M"], + "walk'sed": [], + "naturalism's": [], + "footstools's": [], + "disconcert": [], + "corsair's": [], + "teleplay's": [], + "caret'ses": [], + "wordplay's": [], + "occupancy": ["M"], + "vociferation": ["M"], + "Arnulfo": ["M"], + "beef'sed": [], + "venomously": [], + "Pacheco's": [], + "shipboard": ["M", "S"], + "ghostwrote": [], + "minnows's": [], + "suspect": ["S", "M", "D", "G"], + "tbs": [], + "meldeds": [], + "domination": ["M"], + "slinging": [], + "Lebanese's": [], + "racists": [], + "Jivaro's": [], + "pastas": [], + "staffed": [], + "queenlier": [], + "accounts": [], + "kid's": [], + "permanency": ["M"], + "tribune": ["M", "S"], + "gospel": ["M", "S"], + "discrepancies": [], + "crop's": [], + "gooseberry": ["S", "M"], + "GU": [], + "bitterness's": [], + "termagants": [], + "warranting": [], + "rewrite'sing": [], + "Breathalyzer": [], + "musings": [], + "fleshpot'ses": [], + "cancer's": [], + "cornmeal": ["M"], + "mambo's": [], + "ditherer's": [], + "piney": [], + "contusing": [], + "constituting": [], + "seismograph's": [], + "round'sed": [], + "pompano": ["M", "S"], + "villainies": [], + "diagnostician": ["S", "M"], + "Tonia": ["M"], + "centrals's": [], + "unwillingness": [], + "trooper": ["M"], + "watercraft's": [], + "specializinged": [], + "embassy": ["S", "M"], + "him": ["S"], + "Cisco's": [], + "Canadians's": [], + "Rorschach's": [], + "sacristies": [], + "nectar": ["M"], + "chitosan": [], + "lavalieres": [], + "wined": [], + "rolling": [], + "conceited": ["P", "Y"], + "besmirched": [], + "pore": ["M", "G", "D", "S"], + "contraries": [], + "romaine's": [], + "lifting": [], + "boxers": [], + "homesteaded": [], + "zero'sed": [], + "prick's": [], + "diurnal": ["Y"], + "genuine": ["P", "Y"], + "hindquarter": ["M", "S"], + "humor": ["S", "M", "D", "G"], + "hyperinflation": [], + "dumberly": [], + "flatness's": [], + "attempted": [], + "snowbird's": [], + "iamb's": [], + "transplantation": ["M"], + "scullsers": [], + "nonsalaried": [], + "altering": [], + "gestural": [], + "glaciers": [], + "geochemistry's": [], + "Brigitte": ["M"], + "choirboy'ses": [], + "Tabatha": ["M"], + "homestead's": [], + "slumps's": [], + "scaremongering": [], + "dormerers": [], + "exiting": [], + "overthrows's": [], + "subtends": [], + "kissoffs": [], + "tectonics": ["M"], + "devoutness": ["M"], + "cellmates's": [], + "journalism's": [], + "premonition": ["M", "S"], + "dithering": [], + "onuses": [], + "acquittals": [], + "Atlantic": ["M"], + "shadiness's": [], + "tippleder": [], + "treat'sed": [], + "causeries": [], + "Muenster's": [], + "Benny": ["M"], + "offshoot'ses": [], + "warranty'sing": [], + "threshesers": [], + "expositor's": [], + "extrudes": [], + "derepress": [], + "emotesing": [], + "waterboardingses": [], + "flashback": ["S", "M"], + "illegitimate": ["Y"], + "entailing": [], + "dowering": [], + "vanities's": [], + "Benchley's": [], + "bitty": ["T", "R"], + "coordinated": ["U"], + "postulations": [], + "differs": [], + "crater's": [], + "groundhogs": [], + "sacrifice's": [], + "zephyrs": [], + "Pahlavi's": [], + "abnormality": ["S", "M"], + "craneds": [], + "Connecticut": ["M"], + "accolade": ["S", "M"], + "outputs's": [], + "snugly": [], + "penumbras": [], + "accolades's": [], + "chromatin's": [], + "Bonner's": [], + "tuxedo": ["S", "M"], + "poll'sed": [], + "PlayStation": ["M"], + "choirboys": [], + "Pauline": ["M"], + "grazeder": [], + "hirsuteness": ["M"], + "shitfaced": ["!"], + "debtor'ses": [], + "dapperer": [], + "noticed": ["U"], + "jobless": ["P"], + "curer": ["K", "M"], + "suicide": ["S", "M"], + "nestling's": [], + "Midwesterner": [], + "convectors": [], + "row'sed": [], + "polygraphing": [], + "begonia": ["S", "M"], + "bowed": ["U"], + "emulsify": ["N", "D", "R", "S", "Z", "G"], + "presto's": [], + "cub'sed": [], + "Confucians's": [], + "Indian": ["M", "S"], + "mechanized": [], + "spermicides": [], + "discursive": [], + "bin": ["S", "M"], + "descends": [], + "Christine": ["M"], + "success": ["V", "M", "S"], + "barbels's": [], + "domesticated": ["U"], + "moralizer": ["M", "S"], + "poisonously": [], + "spleen's": [], + "lifelessliness": [], + "lamasery's": [], + "angering": [], + "trillium's": [], + "Rivers": ["M"], + "shakeout'ses": [], + "Anacin's": [], + "knockabout": [], + "stayeder": [], + "tightrope": ["M", "S"], + "bicker's": [], + "concerto's": [], + "invigilating": [], + "nonofficial": [], + "hookup's": [], + "whatchamacallit'ses": [], + "coercers": [], + "assist": ["G", "M", "D", "S"], + "fastness": ["M", "S"], + "minstrelsy": ["M"], + "rake'sing": [], + "inoffensive": [], + "burglarizeds": [], + "tempeder": [], + "potluck": ["M", "S"], + "crystallization's": [], + "Rukeyser's": [], + "swimming'sly": [], + "miniatures": [], + "Knossos": ["M"], + "mutagens": [], + "ranter's": [], + "sun's": [], + "sparklers": [], + "uncommunicative": [], + "marquee's": [], + "stanchest": [], + "heartiest": [], + "goof's": [], + "pediment's": [], + "conjugated": [], + "Whitney": ["M"], + "metamorphic": [], + "bishop'ses": [], + "vulgarian's": [], + "login's": [], + "rocky": ["T", "R", "P"], + "computer's": [], + "here": ["M"], + "hollered": [], + "timorous": ["P", "Y"], + "phonology": ["M"], + "filmmakers's": [], + "Revere": ["M"], + "Greenpeace's": [], + "pewter": ["M", "S"], + "cohesively": [], + "agelessliness": [], + "Cohan": ["M"], + "buck's": [], + "Edams": [], + "photocopying": [], + "exactness's": [], + "Finn": ["S", "M"], + "doctorates": [], + "G": ["M", "N", "R", "B"], + "schoolwork": ["M"], + "rioters": [], + "conditioners": [], + "beguine's": [], + "halfback's": [], + "wrung": [], + "illuminate": ["G", "N", "X", "D", "S"], + "bumpkins": [], + "strawberry's": [], + "foreknown": [], + "Tongan'ses": [], + "redoubts": [], + "metallurgist": ["M", "S"], + "municipals": [], + "redeemer": ["M"], + "oaf's": [], + "romantic'ses": [], + "creationist's": [], + "quaffing": [], + "backspace'sing": [], + "regurgitation": ["M"], + "pikes": [], + "annihilate": ["D", "S", "G", "N"], + "brittle": ["P", "R", "M", "T"], + "gravitatingen": [], + "expediently": [], + "compressible": [], + "impressive": ["P", "Y"], + "Kermit's": [], + "ascendants": [], + "Tsimshian": ["M"], + "pasteurization": ["M"], + "Antipas's": [], + "brie's": [], + "rescission": ["M"], + "prequel'ses": [], + "flotations": [], + "childbearing": ["M"], + "columns": [], + "treas": [], + "microaggressions": [], + "channelize": ["D", "S", "G"], + "impersonate": ["G", "N", "X", "D", "S"], + "occluding": [], + "crowd's": [], + "perversion's": [], + "Merovingian": ["M"], + "ostriches": [], + "nameplate's": [], + "currycombed": [], + "palatal": ["S", "M"], + "suppliants": [], + "quality's": [], + "wellington'ses": [], + "lieder": [], + "Pueblo": ["M"], + "desolation": ["M"], + "floodwater'ses": [], + "bitters": ["M"], + "citron'ses": [], + "firebrands's": [], + "Elizabeth": ["M"], + "sideswiping": [], + "virginity's": [], + "unbeliever": [], + "Galatea's": [], + "steaminess": ["M"], + "vapors": [], + "jimmy's": [], + "bounceder": [], + "involution": ["M"], + "conspectus'ses": [], + "denaturing": [], + "grandfathering's": [], + "Camden's": [], + "pedicurist'ses": [], + "temporizeder": [], + "migration": ["S", "M"], + "emoteds": [], + "relaxer": ["M"], + "Swansea": ["M"], + "Worcester": ["S", "M"], + "Eloise's": [], + "scrounger's": [], + "underlineds": [], + "medalist": ["M", "S"], + "Herring": ["M"], + "Mohammedanism": ["S", "M"], + "voluptuous": ["P", "Y"], + "duchies's": [], + "begrimeds": [], + "groggy": ["P", "R", "T"], + "streetlights's": [], + "doucheds": [], + "overdrafts": [], + "paupers": [], + "fay": ["T", "S", "M", "R"], + "hootenanny": ["S", "M"], + "carbide": ["S", "M"], + "Haman's": [], + "frocks": [], + "juvenile": ["S", "M"], + "impeached": [], + "Manning": ["M"], + "disquiet's": [], + "astronomically": [], + "chromium's": [], + "stink's": [], + "Easters": [], + "bally": [], + "Bermudan's": [], + "chesteds": [], + "manufactures's": [], + "Elanor": ["M"], + "equating": [], + "scholar'sly": [], + "xeroxed": [], + "depute": ["D", "S", "G"], + "seismography": ["M"], + "wheelhouse": ["M", "S"], + "grabber": ["M", "S"], + "chagrin's": [], + "bleariness's": [], + "statue": ["S", "M"], + "saner": [], + "gardenias": [], + "reap": ["Z", "G", "D", "R", "S"], + "majoritarian's": [], + "hiss's": [], + "polling's": [], + "vaguely": [], + "vulva's": [], + "Antigua's": [], + "yukky": [], + "obsoleted": [], + "inveteracy's": [], + "lusted": [], + "nighthawks": [], + "embrocations": [], + "fester": ["G", "M", "D"], + "habitation's": [], + "HDMI": [], + "blazons": [], + "lepton'ses": [], + "proofed": [], + "skirting": [], + "bellyache": ["M", "G", "D", "S"], + "thimbleful": ["S", "M"], + "bucketing": [], + "battleder": [], + "toned": [], + "remainsing": [], + "beset": ["S"], + "clink's": [], + "unemployed": ["M"], + "starfish's": [], + "stiffeners": [], + "rankling": [], + "archway": ["S", "M"], + "caner": ["M"], + "sixshooter": ["M"], + "Hrothgar": ["M"], + "martin": ["M", "S"], + "Schmidt": ["M"], + "naps's": [], + "cornrowings": [], + "inventing": [], + "passablions": [], + "Bacchic": [], + "defamersing": [], + "postulation": ["M"], + "rainstorm's": [], + "Sinhalese": ["M"], + "innovationsed": [], + "jackhammer": ["M", "S"], + "overprint's": [], + "sleepily": [], + "doormats": [], + "extortioner": ["M"], + "aerialists": [], + "reboiling": [], + "streets": [], + "Polo's": [], + "elevator'ses": [], + "rootlet's": [], + "attorney": ["M", "S"], + "reduction": ["S", "M"], + "astrophysicist": ["M", "S"], + "Savoyard's": [], + "cornball": ["M", "S"], + "misplayed": [], + "hopscotch'sed": [], + "stimuli": [], + "ambled": [], + "bootblacks": [], + "tarred": [], + "mushiness's": [], + "cornrow": ["M", "D", "G", "S"], + "fatty": ["R", "S", "M", "T", "P"], + "tamesness": [], + "ESP": ["M"], + "exacted": [], + "deep's": [], + "foresees": [], + "Be": ["M", "H"], + "counselors": [], + "genteelness": ["M"], + "nutshells": [], + "NFC": [], + "censoriously": [], + "salespeople": ["M"], + "Sheldon": ["M"], + "unendurable": [], + "unwieldier": [], + "Winfrey's": [], + "villein's": [], + "stun": ["S"], + "smoldersing": [], + "obstructions": [], + "denouncesing": [], + "scoopsing": [], + "colors": [], + "holing": [], + "chrysanthemum": ["M", "S"], + "rubbing": ["S"], + "hedged": [], + "eastward": ["S"], + "fusilier's": [], + "originated": [], + "antechamber's": [], + "similarity's": [], + "gabfest'ses": [], + "hypermarkets": [], + "clincher": ["M"], + "idol'ses": [], + "perennial": ["S", "M", "Y"], + "imagine": ["D", "S", "B", "J", "G"], + "jersey's": [], + "punting": [], + "toolmaker'ses": [], + "demobilization": [], + "timpani": ["M"], + "circulating": [], + "printouts": [], + "briniest": [], + "treeds": [], + "haziness": ["M"], + "gallimaufries": [], + "gayness's": [], + "kiosk's": [], + "clerking": [], + "Sr": ["M"], + "blesses": [], + "octavos": [], + "circumcising": [], + "coho": ["M", "S"], + "worriment's": [], + "Zelma": ["M"], + "overjoy": ["G", "S", "D"], + "faringed": [], + "Chase": ["M"], + "governors's": [], + "seatmates": [], + "dialogues's": [], + "ginger'sed": [], + "elbowing": [], + "boutonniere'ses": [], + "savagers": [], + "fondles": [], + "Jarrett's": [], + "squarely": [], + "Waldorf's": [], + "Conakry's": [], + "Herero": ["M"], + "spendser": [], + "bale": ["D", "R", "S", "M", "Z", "G"], + "galaxy": ["S", "M"], + "nylon's": [], + "membranes's": [], + "barrageds": [], + "seguinged": [], + "Waterford": ["M"], + "GNP's": [], + "palpatesing": [], + "Figueroa": ["M"], + "humor's": [], + "embedded": [], + "monosyllable's": [], + "peacock's": [], + "parlays": [], + "pathologists": [], + "imprudence": ["M"], + "beauteously": [], + "restlessly": [], + "hunkereding": [], + "vaunting": [], + "Popsicle's": [], + "inflatables": [], + "intrepid": ["Y"], + "sluggards": [], + "andirons": [], + "cerebrationed": [], + "insoles": [], + "mineral's": [], + "Tokugawa": ["M"], + "collectively": [], + "lambed": [], + "jive": ["M", "G", "D", "S"], + "divulges": [], + "indemnifyinged": [], + "wiliest": [], + "Kristine": ["M"], + "start's": [], + "palsy": ["G", "D", "S", "M"], + "plods": [], + "earlobes": [], + "penicillin": ["M"], + "immobilizing": [], + "admonishesing": [], + "Antwan's": [], + "quivered": [], + "Rustbelt": ["M"], + "shapelessness": ["M"], + "refreshersing": [], + "howlers": [], + "crisscrossing": [], + "Kampuchea": ["M"], + "flatulent": [], + "allowably": [], + "Pickford's": [], + "rapes": [], + "delinquencies's": [], + "exiled": [], + "hardwoods's": [], + "snack": ["S", "M", "D", "G"], + "Scala's": [], + "bluff'sed": [], + "Comanche": ["M", "S"], + "goriness's": [], + "snowboard": ["Z", "G", "M", "D", "R", "S"], + "comfit's": [], + "Thessaly's": [], + "muckier": [], + "drafty": ["R", "T", "P"], + "maverick's": [], + "Velasquez": ["M"], + "overstocksed": [], + "effeteliness": [], + "redeconstruct": [], + "Ginny": ["M"], + "interposeds": [], + "catchpenny": [], + "expulsion's": [], + "cavalcade's": [], + "critter's": [], + "hairdo's": [], + "amazon": ["M", "S"], + "freewheel": ["D", "G", "S"], + "bellow": ["M", "D", "G", "S"], + "priming": ["M"], + "joylessly": [], + "oncology's": [], + "incongruously": [], + "consecutively": [], + "learning": [], + "sectionalism's": [], + "ethology's": [], + "dailinesses": [], + "rimes": [], + "jujube'ses": [], + "Sudoku's": [], + "educations": [], + "demolish": ["D", "S", "G"], + "wattle'sing": [], + "nigh": ["R", "T"], + "sarcophagi": [], + "Raquel's": [], + "Sunday's": [], + "seagoing": [], + "Cesarean's": [], + "Wheeling": ["M"], + "Hepburn": ["M"], + "beanbag'ses": [], + "loner's": [], + "swindler's": [], + "skywards": [], + "cornstarch": ["M"], + "title's": [], + "internalsly": [], + "rubies's": [], + "firebomb": ["M", "D", "S", "J", "G"], + "primogeniture": ["M"], + "cushioneds": [], + "Hope's": [], + "practicalities's": [], + "hobgoblins": [], + "hummock's": [], + "overlays": [], + "caring": ["M"], + "Tasmanian's": [], + "semiprofessional": ["S", "M"], + "queasiest": [], + "twiddle's": [], + "rivers": [], + "upwards": [], + "augmenter": ["M"], + "canape's": [], + "stickies": [], + "scream's": [], + "nelsons": [], + "coordinateds": [], + "Pliocenes's": [], + "gibbon's": [], + "thrifts's": [], + "dovecot": ["S"], + "ureters's": [], + "roue'ses": [], + "mop's": [], + "caches": [], + "prudence's": [], + "Sweeney": ["M"], + "Coventries": [], + "peen'ses": [], + "luxuriation": ["M"], + "Ernst": ["M"], + "unutterably": [], + "parameters": [], + "wrangles": [], + "overlord": ["M", "S"], + "treadles": [], + "Gomulka": ["M"], + "hazes": [], + "hoarder": ["M"], + "overthink": ["S", "G"], + "rebuilding": [], + "dermatologists": [], + "torches": [], + "compensation's": [], + "overspecialization": ["M"], + "professors's": [], + "amendable": [], + "persecutionens": [], + "widows's": [], + "maharani": ["S", "M"], + "bifocals's": [], + "Valvoline": ["M"], + "legitimating": [], + "skew": ["M", "D", "R", "Z", "G", "S"], + "parting": ["M", "S"], + "tutorship": ["M"], + "oatcakes's": [], + "Pompey's": [], + "harrow": ["S", "M", "D", "G"], + "viewsers": [], + "guildsers": [], + "frazzleds": [], + "sundries": ["M"], + "plainly": [], + "Epiphany": ["S", "M"], + "unsympathetic": [], + "constabularies": [], + "panegyric": ["S", "M"], + "tog's": [], + "twerk": ["S", "D", "G"], + "catheters's": [], + "evaporatingen": [], + "autism": ["M"], + "twinned": [], + "trenchantly": [], + "karats": [], + "analogize": ["G", "D", "S"], + "codeder": [], + "Adele's": [], + "omicrons": [], + "forgive": ["B", "R", "S", "Z", "G", "P"], + "insulteding": [], + "surreptitiousnessly": [], + "brained": [], + "crawlspaces's": [], + "lethargy": ["M"], + "clout's": [], + "spellcheckeder": [], + "rifleder": [], + "effectuating": [], + "restful": ["Y", "P"], + "waspishness": ["M"], + "Boswell's": [], + "swiping": [], + "deployed": [], + "cynosure's": [], + "splendidly": [], + "Selectric's": [], + "munging": [], + "defector'ses": [], + "slowdowns's": [], + "herein": [], + "Murine's": [], + "Manley's": [], + "whamming": [], + "insinuator's": [], + "Genevieve": ["M"], + "underexposinged": [], + "capsize": ["D", "S", "G"], + "illumination's": [], + "diffuseds": [], + "excellence's": [], + "email's": [], + "spume'sing": [], + "darersing": [], + "treble'sing": [], + "Goodman": ["M"], + "tenable's": [], + "scaly": ["R", "T", "P"], + "marabou's": [], + "tabletop's": [], + "rapport": ["M", "S"], + "Irkutsk's": [], + "supporter's": [], + "ululating": [], + "Osage's": [], + "Afro's": [], + "sidled": [], + "wanting": [], + "saltine": ["S", "M"], + "armhole": ["S", "M"], + "Spengler": ["M"], + "violently": [], + "racetrack": ["M", "S"], + "tearaways": [], + "regimens's": [], + "quartermaster'ses": [], + "blowers": [], + "bake": ["D", "R", "S", "M", "Z", "G"], + "absorbingly": [], + "mink'ses": [], + "mesmerizinged": [], + "forewarn": ["D", "S", "G"], + "reclaim": [], + "legs's": [], + "tuba'ses": [], + "consensus": ["M", "S"], + "abbrevs": [], + "puniness's": [], + "upshots": [], + "Julius": ["M"], + "swindler": ["M"], + "overworking's": [], + "helmets": [], + "dots": [], + "devilment": ["M"], + "unintelligent": [], + "ladybug'ses": [], + "alluvium's": [], + "aquanaut'ses": [], + "ferny": ["R", "T"], + "mellowly": [], + "eulogist'ses": [], + "bulwarks": [], + "overdrive": ["S", "M"], + "pollsters": [], + "rightists": [], + "sterns": [], + "secularized": [], + "shushed": [], + "machete": ["S", "M"], + "abscondings": [], + "Mahabharata's": [], + "rationales": [], + "resuscitators's": [], + "stalwart'sly": [], + "Lincolns": [], + "feareding": [], + "deinactivate": [], + "jauntsing": [], + "miniaturizeds": [], + "Celsius": ["M"], + "SOB": ["M"], + "reactive": [], + "mania's": [], + "capers": [], + "opiates's": [], + "solicitous": ["P", "Y"], + "appeareding": [], + "patienter": [], + "bequests": [], + "oustinged": [], + "abolition": ["M"], + "registration's": [], + "Lakeisha's": [], + "dumbstruck": [], + "azure": ["S", "M"], + "psychoanalyzeds": [], + "quinces": [], + "tranquility's": [], + "visitation'ses": [], + "jay": ["S", "M"], + "lollopsed": [], + "Charlotte's": [], + "hates": [], + "baboon": ["M", "S"], + "depredations's": [], + "inverses's": [], + "harmonic's": [], + "ischemic": [], + "summers": [], + "bunkhouses": [], + "Obamacare": [], + "bedraggled": [], + "sunbathing": ["M"], + "brownish": [], + "Brahmagupta": ["M"], + "ethereal": ["Y"], + "pinhead": ["S", "M"], + "uninformative": [], + "ideologue": ["M", "S"], + "acclimating": [], + "melange's": [], + "pavilions": [], + "Iscariot's": [], + "fossilization's": [], + "rhesuses": [], + "primness's": [], + "growers": [], + "emperors": [], + "kinky": ["T", "P", "R"], + "asunder": [], + "steakhouses's": [], + "doubtingly": [], + "swooped": [], + "brigandage": ["M"], + "receipt's": [], + "relief's": [], + "sled's": [], + "perishables": [], + "Riesling's": [], + "ampersand": ["M", "S"], + "sharpener's": [], + "bluffly": [], + "portability's": [], + "enumerating": [], + "springlike": [], + "tipsier": [], + "Conway's": [], + "scheduler": ["S"], + "twaddled": [], + "lymphatic": ["S", "M"], + "fr": [], + "fillip": ["M", "D", "G", "S"], + "baas": [], + "volt": ["A", "M", "S"], + "Mycenaean": ["M"], + "Copley": ["M"], + "Va's": [], + "facility's": [], + "fallows": [], + "cases": [], + "instructors": [], + "mandarin'ses": [], + "gas": ["C", "S"], + "conceptualization": ["M", "S"], + "loudness's": [], + "digging": ["S"], + "buyout": ["S", "M"], + "hammeringsers": [], + "Pollock": ["M"], + "talus": ["M", "S"], + "warranty": ["D", "S", "M", "G"], + "ashy": ["T", "R"], + "quarrelersing": [], + "swordplay": ["M"], + "sycophantic": [], + "reminiscences": [], + "chums": [], + "countersinks": [], + "accessory": ["S", "M"], + "redeclassification": [], + "tares": [], + "tightening": [], + "martyreding": [], + "geraniums": [], + "swine": ["S", "M"], + "workfare": ["M"], + "kingfisher's": [], + "reciter": ["S", "M"], + "mussed": [], + "genders": [], + "petering's": [], + "mist": ["C", "D", "R", "S", "Z", "G"], + "hipped": [], + "elevator": ["M", "S"], + "corersing": [], + "diversifying": [], + "dorkier": [], + "repaid": [], + "dressmaking's": [], + "pigging": [], + "belligerently": [], + "accrediting": [], + "frogspawn": [], + "Goodwill's": [], + "trailing": [], + "nervousliness": [], + "taxonomy's": [], + "horseboxes": [], + "tropical": ["Y"], + "smooches": [], + "rigging's": [], + "regrow": [], + "innovatory": [], + "exotic's": [], + "sicklier": [], + "picked": [], + "corrosively": [], + "ornery": ["P", "R", "T"], + "crumbleds": [], + "gunshot's": [], + "isolating": [], + "tuck'sed": [], + "Oakland's": [], + "compass's": [], + "gorilla's": [], + "regain": [], + "peevishness's": [], + "Cologne's": [], + "bookshelves": [], + "rumpuses": [], + "glassing": [], + "folksinger": ["S", "M"], + "bulkiness's": [], + "Macmillan's": [], + "Pauling": ["M"], + "peppereds": [], + "Jeroboam's": [], + "July's": [], + "curia's": [], + "bluegill'ses": [], + "individuatingen": [], + "breakfronts": [], + "lacerations": [], + "darnersing": [], + "uproars's": [], + "defensibly": ["I"], + "kohl": [], + "egocentric's": [], + "dueler's": [], + "incense'sing": [], + "Tauruses": [], + "equalizing": [], + "Thorazine": ["M"], + "xx": [], + "stonking": [], + "creationism's": [], + "daiquiris": [], + "relinquished": [], + "dateless": [], + "stargazer": ["M"], + "marathoner's": [], + "zygotic": [], + "derricks's": [], + "locationed": [], + "happening": ["M"], + "lieutenant": ["M", "S"], + "dispensary": ["S", "M"], + "notating": [], + "trusties's": [], + "extirpate": ["G", "N", "D", "S"], + "Godel": ["M"], + "aerating": [], + "badgered": [], + "jot's": [], + "explaining": [], + "pessimists": [], + "highliers": [], + "astuter": [], + "chlamydia'ses": [], + "transmogrifieds": [], + "nonrepresentational": [], + "erased": [], + "Yates": ["M"], + "Sacco's": [], + "duskiness's": [], + "risotto'ses": [], + "strenuous": ["P", "Y"], + "blathers": [], + "curbstone's": [], + "Noemi's": [], + "poinsettias's": [], + "meet": ["M", "J", "S", "G"], + "Sassanian": ["M"], + "arsenal'ses": [], + "moral'sly": [], + "irritateds": [], + "impresarios": [], + "pilferers": [], + "adherents's": [], + "bathyscaphe's": [], + "buoyings": [], + "outargue": ["G", "D", "S"], + "mindset": ["M", "S"], + "macaroon'ses": [], + "Samoset": ["M"], + "thespians's": [], + "Lowell": ["M"], + "retrospect'sed": [], + "presence's": [], + "preyeds": [], + "treatises's": [], + "psychoanalyses": [], + "ruckus'ses": [], + "trawled": [], + "Ogden's": [], + "Sakha": ["M"], + "litters": [], + "expansionary": [], + "twirl's": [], + "beerier": [], + "snoopiest": [], + "ragingly": [], + "spectroscope's": [], + "pinafore's": [], + "warmers": [], + "youth": ["M"], + "Volvo": ["M"], + "carouse's": [], + "bluepoint'ses": [], + "hackneyeding": [], + "Hewitt": ["M"], + "nays": [], + "shadow'sed": [], + "felicitationsed": [], + "finagler": ["M"], + "crotchet": ["S", "M"], + "misreading's": [], + "negations": [], + "Jasper": ["M"], + "reprieve": ["D", "S", "M", "G"], + "troth": ["M"], + "steadfastliness": [], + "gantlet's": [], + "triumph's": [], + "Yemenis": [], + "malts": [], + "Sally": ["M"], + "bannock'ses": [], + "imprinteder": [], + "AAA": [], + "repudiationsing": [], + "lymphocytes": [], + "wanna": [], + "cauterizing": [], + "Lucite's": [], + "trunking's": [], + "litterateur'ses": [], + "recompensed": [], + "alcove": ["M", "S"], + "boyish": ["Y", "P"], + "pencil's": [], + "shearers": [], + "revivification's": [], + "Luvs's": [], + "shinny": ["D", "S", "G"], + "fighter": ["I", "M", "S"], + "Jacquard": ["M"], + "embankments's": [], + "cementum": ["M"], + "conterminously": [], + "Kimberly": ["M"], + "mayday'ses": [], + "opportunists's": [], + "overabundant": [], + "declamations": [], + "laminationed": [], + "fecundates": [], + "reddening": [], + "Lynnette's": [], + "Saracen'ses": [], + "feather": ["S", "G", "M", "D"], + "rushersing": [], + "Passovers": [], + "prepackageds": [], + "relearn": [], + "Peckinpah's": [], + "parallelism'ses": [], + "soulfulness": ["M"], + "sensors's": [], + "cone's": [], + "borax's": [], + "playschool": ["S"], + "glidersing": [], + "Therese": ["M"], + "superconductors": [], + "breviaries": [], + "biographies": [], + "horrifieds": [], + "conspirators": [], + "ingot": ["S", "M"], + "post": ["Z", "G", "M", "D", "R", "S", "J"], + "Gayle's": [], + "instigator's": [], + "adornment'ses": [], + "refortifies": [], + "overspreading": [], + "Flora's": [], + "upswing": ["M", "S"], + "exaltation's": [], + "Twinkies": ["M"], + "encrusting": [], + "raftersing": [], + "ragweed's": [], + "observant": ["Y"], + "Earhart": ["M"], + "lugger'ses": [], + "Woolworth": ["M"], + "fitting": ["S", "M", "Y"], + "minimally": [], + "VGA": [], + "prevention": ["M"], + "Hutu": ["M"], + "velodromes": [], + "Chantilly's": [], + "Abrams": ["M"], + "Wagner's": [], + "crinkling": [], + "Moravian's": [], + "auscultating": [], + "squelchy": [], + "marathons's": [], + "meteoroids's": [], + "outworn": [], + "periodicals": [], + "patriarchies": [], + "origin's": [], + "muscles": [], + "craftsmen": [], + "accelerator's": [], + "obscenely": [], + "melanges": [], + "jointings": [], + "dreadnoughts": [], + "mall": ["M", "S"], + "hibernation's": [], + "morgues": [], + "bruisersing": [], + "Artaxerxes": ["M"], + "corneder": [], + "mamboed": [], + "Nigerien's": [], + "heeded": ["U"], + "busters": [], + "tale's": [], + "Tutsi": ["M"], + "sissy": ["R", "S", "M", "T"], + "stegosaurus's": [], + "discouraginged": [], + "stogie": ["M", "S"], + "fetter's": [], + "transcendsed": [], + "whiteouts's": [], + "sabot's": [], + "awakeninged": [], + "Schoenberg": ["M"], + "quickies's": [], + "anxious": ["Y", "P"], + "chip": ["S", "M"], + "unfortunates": [], + "bulge": ["D", "S", "M", "G"], + "Nov's": [], + "unemployed's": [], + "mutated": [], + "escapologists": [], + "macaroons": [], + "Thatcher": ["M"], + "flagpole's": [], + "Latonya's": [], + "billingsgate's": [], + "sere": ["T", "R"], + "holder's": [], + "scrumps": [], + "blusher": ["M"], + "domineersing": [], + "earmuff's": [], + "anthills": [], + "strutting": [], + "quadrangle": ["S", "M"], + "rivalries": [], + "snowmobileds": [], + "Hendrick": ["M", "S"], + "sambas": [], + "Frankie's": [], + "headlinersing": [], + "bobwhite's": [], + "fulminateds": [], + "durably": [], + "JFK's": [], + "classically": [], + "rattlingings": [], + "speedometer'ses": [], + "fructose": ["M"], + "reeled": [], + "fantasies's": [], + "phenol": ["M"], + "bankable": [], + "dilution's": [], + "rapprochements's": [], + "midsection'ses": [], + "speckle's": [], + "titlists": [], + "hotbed": ["M", "S"], + "parquet": ["M", "D", "S", "G"], + "diving": ["M"], + "crapped": [], + "aside's": [], + "Shauna": ["M"], + "nightdresses": [], + "UK's": [], + "internship": ["M", "S"], + "pirate'sing": [], + "flagellation's": [], + "placekick": ["M", "D", "R", "Z", "G", "S"], + "unassisted": [], + "Malthus's": [], + "polish's": [], + "lair'ses": [], + "disconnectednessly": [], + "intravenously": [], + "sputum": ["M"], + "tossed": [], + "hornblende's": [], + "toad'ses": [], + "Saturday": ["M", "S"], + "groupsers": [], + "Cordilleras": ["M"], + "absconders": [], + "hydrocarbon's": [], + "MFA's": [], + "prairies's": [], + "publicly": [], + "averting": [], + "banned": [], + "skedaddleds": [], + "upstartsing": [], + "letup": ["S", "M"], + "meaningfulness": ["M"], + "orthodoxies": [], + "knitwear": ["M"], + "horseshoeds": [], + "gibe": ["M", "G", "D", "S"], + "snakebite'ses": [], + "flint": ["S", "M"], + "seismologist'ses": [], + "constant": ["M", "Y", "S"], + "estrangements": [], + "oddmentness": [], + "retrenchment'ses": [], + "palimpsests": [], + "cruft": ["S", "D"], + "yap": ["S", "M"], + "deliquescent": [], + "Cairo": ["M"], + "occupation's": [], + "nitrocellulose's": [], + "recces": [], + "consideration's": [], + "Lancelot's": [], + "disperseds": [], + "humorlessness": ["M"], + "sconce's": [], + "footers": [], + "heckles": [], + "telepathy's": [], + "cutaways": [], + "multiplexeder": [], + "extravehicular": [], + "traumatize": ["G", "D", "S"], + "preachy": ["R", "T"], + "passe": ["D", "R", "S", "B", "X", "Z", "G", "N", "V"], + "alley": ["M", "S"], + "primer's": [], + "grasses": [], + "runs's": [], + "northernerser": [], + "warp's": [], + "waybills": [], + "vitamin'ses": [], + "earner's": [], + "tetrahedrons": [], + "Powell": ["M"], + "bungees": [], + "lessening": [], + "lopes": [], + "mortuaries's": [], + "Herbart": ["M"], + "dinner": ["S", "M", "D", "G"], + "Mills's": [], + "ballerina's": [], + "sibilant": ["S", "M"], + "Severn": ["M"], + "narrows": [], + "outsize's": [], + "catchment": ["M", "S"], + "antiquarian": ["S", "M"], + "pickpocket's": [], + "dilemmas": [], + "Leigh": ["M"], + "King's": [], + "Malabar": ["M"], + "creakiest": [], + "Whig's": [], + "Mathis's": [], + "speakeasies": [], + "calendarings": [], + "biplane's": [], + "Changchun": ["M"], + "spited": [], + "monsignors": [], + "op's": [], + "sparkiest": [], + "eventualities": [], + "unfrocking": [], + "disk'ses": [], + "walker": ["M"], + "nook'ses": [], + "McCarthy": ["M"], + "unorthodox": [], + "Zions's": [], + "Conrad": ["M"], + "weatherize": ["D", "S", "G"], + "rotisserie's": [], + "loggerheads": [], + "Garfunkel": ["M"], + "unaided": [], + "twiggiest": [], + "jimmies's": [], + "Ur": ["M"], + "tapeworm": ["M", "S"], + "unpasteurized": [], + "outlines": [], + "wheelchairs's": [], + "deviousness's": [], + "cuttlefish's": [], + "limpsness": [], + "Virgos's": [], + "cottontail's": [], + "Kaye's": [], + "resorption": ["M"], + "loggerhead": ["S", "M"], + "walkabout": ["S"], + "Fujiyama": ["M"], + "colloquialism": ["S", "M"], + "barnyard's": [], + "promoting": [], + "Gretzky": ["M"], + "Shantung's": [], + "unlocksing": [], + "Conan": ["M"], + "Jamaican": ["S", "M"], + "Cortland's": [], + "plaques's": [], + "photoengraveder": [], + "Brahmanisms's": [], + "processors's": [], + "aphrodisiacs": [], + "cart'sed": [], + "obsidian's": [], + "Usenet's": [], + "storeroom": ["S", "M"], + "wizardly": [], + "Wilmer's": [], + "Dublin": ["M"], + "tinkered": [], + "has": [], + "yawns": [], + "sly": ["T", "R", "Y"], + "vindications": [], + "sleazebag": ["S"], + "gags": [], + "Polaroid's": [], + "bushman": ["M"], + "scrupulousness's": [], + "cherishing": [], + "irk": ["S", "G", "D"], + "Ayala's": [], + "tapeline's": [], + "Heloise": ["M"], + "IMHO": [], + "Emerson's": [], + "haberdashers": [], + "resitting": [], + "shatter": ["G", "M", "D", "S"], + "halberds": [], + "clanging": [], + "voyageurs's": [], + "altarpieces": [], + "opines": [], + "frankest": [], + "last": ["M", "D", "Y", "S", "G"], + "sweet'sen": [], + "unlined": [], + "greasily": [], + "cheekiest": [], + "mislabelings": [], + "homeroom's": [], + "Moreno": ["M"], + "flameproof": ["D", "G", "S"], + "foreknowing": [], + "feather'sed": [], + "uppercut's": [], + "recant": ["S", "D", "G"], + "costars": [], + "biracial": [], + "kingdoms's": [], + "polymerization": ["M"], + "violations": [], + "pathfinders": [], + "ref": ["S", "Z", "M"], + "trestle": ["M", "S"], + "ruffian'sly": [], + "shibboleth": ["M"], + "Costner's": [], + "Procrustes": ["M"], + "Bellatrix": ["M"], + "biotechnological": [], + "foreperson's": [], + "hairbands": [], + "scrupulosity's": [], + "bleating's": [], + "ranginess's": [], + "Tampax's": [], + "biopsyinged": [], + "caved": [], + "megaton's": [], + "tattered": [], + "Eire's": [], + "shin": ["Z", "G", "M", "D", "R", "S"], + "forewarns": [], + "flares": [], + "dialects's": [], + "cabinetry": ["M"], + "zeal's": [], + "leftover's": [], + "scrabbleder": [], + "flouting": [], + "typeds": [], + "crawl's": [], + "theatrics": ["M"], + "heterosexuallies": [], + "glossesing": [], + "Romanian's": [], + "cleavinged": [], + "Mirzam": ["M"], + "yearningsed": [], + "mouth": ["G", "M", "D"], + "gunfighterses": [], + "liberalize": ["G", "D", "S"], + "carbine's": [], + "recrimination's": [], + "conductor's": [], + "accommodateds": [], + "unique": ["Y", "T", "R", "P"], + "budgerigar": ["M", "S"], + "orientalist": ["S"], + "surmiseds": [], + "decontrolled": [], + "execs": [], + "prefabs": [], + "hatbands": [], + "phishers": [], + "selvages": [], + "tuft": ["M", "D", "R", "S", "Z", "G"], + "pine's": [], + "ergonomic": ["S"], + "Andorrans's": [], + "levelheaded": ["P"], + "talcum": ["M"], + "trestles": [], + "symptom": ["M", "S"], + "Sheraton's": [], + "admitting": ["A"], + "scapegraces": [], + "stricterly": [], + "whiniest": [], + "theoretic": [], + "Delphi's": [], + "steeped": [], + "nobles": [], + "python": ["S", "M"], + "freshet's": [], + "kWh": [], + "flagship's": [], + "psychoanalyzesing": [], + "muezzin'ses": [], + "casualness": ["M"], + "seedling's": [], + "gratuity's": [], + "Nicole": ["M"], + "CEO's": [], + "soothers": [], + "rudeness's": [], + "daintiness": ["M"], + "coatingings": [], + "chichis": [], + "ridicule'sing": [], + "dept": [], + "Harold": ["M"], + "brims": [], + "heliocentric": [], + "anabolism's": [], + "heckle's": [], + "sweeties": [], + "symbolization": ["M"], + "Myrtle's": [], + "lacquereds": [], + "hyenas's": [], + "feudalism's": [], + "fist's": [], + "lingerie": ["M"], + "physicking": [], + "Aimee's": [], + "restiveness's": [], + "dome'sing": [], + "garnish's": [], + "thermodynamics": ["M"], + "Stendhal's": [], + "pauseds": [], + "dartboards": [], + "boasts": [], + "impenitence's": [], + "photogenic": [], + "impalement": ["M"], + "mustn't": [], + "autopsied": [], + "reliquaries": [], + "spaciousness's": [], + "Maldivian": ["M", "S"], + "fucking": [], + "remorseless": ["P", "Y"], + "drakes's": [], + "toxemia": ["M"], + "transcription": ["S", "M"], + "whiplashes": [], + "misfortune": ["S", "M"], + "woodpiles's": [], + "schlepping": [], + "equestriennes": [], + "superfine": [], + "soundeder": [], + "winnow": ["Z", "G", "S", "D", "R"], + "pettifogged": [], + "manhunt's": [], + "acquiescently": [], + "touchlines": [], + "distorteder": [], + "Perot": ["M"], + "Senghor's": [], + "granddaughters": [], + "ticklishness's": [], + "vocalists": [], + "biotechnology's": [], + "batten": ["G", "S", "M", "D"], + "spandex": ["M"], + "proroguinged": [], + "quietingness": [], + "bleepers": [], + "brainstorms": [], + "verbalized": [], + "Bushido": ["M"], + "loaner's": [], + "glassiest": [], + "muttonchops": ["M"], + "metaphor": ["M", "S"], + "welshes": [], + "Simmental's": [], + "centuries's": [], + "rump's": [], + "etiologies's": [], + "starve": ["D", "S", "J", "G"], + "defections": [], + "shaver": ["M"], + "surfboarding": [], + "bimonthly's": [], + "SRO": [], + "Ahmad": ["M"], + "hunger's": [], + "unaccommodating": [], + "auks's": [], + "pommel's": [], + "Tyler": ["M"], + "gaming's": [], + "kludginged": [], + "damper": ["M"], + "crap's": [], + "clanked": [], + "Serra's": [], + "rituals": [], + "unionist'ses": [], + "stowaway'ses": [], + "Keewatin": ["M"], + "Ferrari": ["M"], + "grandfathered": [], + "lyricists's": [], + "collisions's": [], + "penalize": ["D", "S", "G"], + "razor": ["M", "S"], + "southerns": [], + "raunchily": [], + "Aventine's": [], + "derided": [], + "picket": ["Z", "G", "M", "D", "R", "S"], + "vibrancy's": [], + "cardboard's": [], + "hence": [], + "again": [], + "cannoneds": [], + "Adrienne": ["M"], + "clink": ["S", "M", "D", "R", "Z", "G"], + "Galveston": ["M"], + "satinwoods": [], + "patchiest": [], + "greasiest": [], + "Canaletto's": [], + "pugilism's": [], + "PFC": [], + "tarp'ses": [], + "imbibes": [], + "Meiji": ["M"], + "maim": ["D", "S", "G"], + "torus": [], + "overlaying": [], + "intergalactic": [], + "geriatric": ["S"], + "supplest": [], + "popcorn's": [], + "Perot's": [], + "hoer's": [], + "godsend's": [], + "jocularity": ["M"], + "flophouses": [], + "erectinged": [], + "sneezeds": [], + "slime's": [], + "consuming": [], + "curtailment's": [], + "physiognomies": [], + "divideder": [], + "perestroika": ["M"], + "knavish": ["Y"], + "prickleds": [], + "reflection'ses": [], + "transplants": [], + "eddies": [], + "Frisians": [], + "rigor": ["M", "S"], + "grippers": [], + "palace": ["M", "S"], + "debutantes": [], + "gambit": ["S", "M"], + "Kamehameha": ["M"], + "snores's": [], + "deliberations": [], + "isotope": ["S", "M"], + "ministry's": [], + "cultist'ses": [], + "sidecar": ["S", "M"], + "nightly": [], + "castle'sing": [], + "metalworking": ["M"], + "catheterizing": [], + "boomer": [], + "automatizes": [], + "multilingual": [], + "sunbonnet's": [], + "presbyter's": [], + "chuck": ["G", "M", "D", "S"], + "ales's": [], + "Walmart's": [], + "Khyber's": [], + "Georgian": ["M", "S"], + "Quayle's": [], + "Luxembourgian": [], + "medalists": [], + "inaugurationed": [], + "expungeds": [], + "groggier": [], + "copyrighting": [], + "Lydian's": [], + "Huygens": ["M"], + "whilom": [], + "viewing's": [], + "dogfish'ses": [], + "misspeaks": [], + "copse's": [], + "imply": ["X", "D", "S", "G", "N"], + "posing": [], + "spear'sed": [], + "blindfoldeding": [], + "Romney's": [], + "summons's": [], + "necksing": [], + "gonzo": [], + "professionallies": [], + "Rd": [], + "hospitalizations": [], + "Leeuwenhoek's": [], + "cautiously": [], + "ecologist'ses": [], + "Christa": ["M"], + "Taliban": ["M"], + "depressurize": [], + "indie": ["S"], + "synced": [], + "andiron's": [], + "fatherland'ses": [], + "punishable": [], + "pukka": [], + "palmtops's": [], + "Hornblower": ["M"], + "presortings": [], + "weds": [], + "leadersing": [], + "attenuatingen": [], + "bakeshop": ["M", "S"], + "Iyar's": [], + "evergreen's": [], + "hacksaw's": [], + "preambles": [], + "servomotors": [], + "concealsed": [], + "enchants": [], + "accountant's": [], + "Eurodollar's": [], + "affair's": [], + "redcurrants": [], + "receptionist": ["S", "M"], + "telecast'ser": [], + "Flatt's": [], + "biter": ["M"], + "complicationed": [], + "colonization's": [], + "magic's": [], + "GPO": [], + "Peoria": ["M"], + "Hench's": [], + "crewing": [], + "nougat's": [], + "impaleds": [], + "nicenessly": [], + "boogied": [], + "recanted": [], + "amenability's": [], + "outboasts": [], + "unmarried": [], + "Hermes": ["M"], + "tangleds": [], + "Bronson's": [], + "postings": [], + "engulf": ["S", "L", "G", "D"], + "bxs": [], + "pointer's": [], + "kleptomaniacs": [], + "probational": [], + "externalizeds": [], + "tamoxifen": [], + "nettle's": [], + "wayfarer": ["M", "S"], + "hearty's": [], + "trifleder": [], + "antidepressant's": [], + "clucks": [], + "mouthwash": ["M", "S"], + "Wagner": ["M"], + "agate'ses": [], + "belies": [], + "sidle'sing": [], + "convection's": [], + "Magus": [], + "enslavesing": [], + "prorating": [], + "velocities's": [], + "fungicide": ["M", "S"], + "griffons": [], + "swingers": [], + "wallahs": [], + "conventionalizeds": [], + "bookmobile": ["S", "M"], + "looped": [], + "wasteder": [], + "locution": ["M", "S"], + "granddaddy's": [], + "Graciela": ["M"], + "overturned": [], + "purposeds": [], + "bulldogs's": [], + "jellyinged": [], + "awl's": [], + "forwarding": [], + "mammalian": ["M", "S"], + "petiole": ["S", "M"], + "supernova'ses": [], + "Nahuatl'ses": [], + "Toulouse's": [], + "wising": [], + "seineder": [], + "helmet'sed": [], + "octogenarian's": [], + "clover": ["M"], + "tabulateds": [], + "parapsychologists": [], + "bathroom's": [], + "indigestion": [], + "feminists": [], + "engineereding": [], + "cautiousness": ["M"], + "brotherhood": ["M", "S"], + "blazonings": [], + "dejects": [], + "dune's": [], + "airworthy": ["P"], + "scum's": [], + "drag's": [], + "potholder's": [], + "guideposts's": [], + "wigwams": [], + "lava": ["M"], + "driveleder": [], + "semiretired": [], + "puerile": [], + "supernova": ["M", "S"], + "valve'sing": [], + "passively": [], + "blackhead'ses": [], + "joineds": [], + "Abraham's": [], + "venom's": [], + "endures": [], + "Revelation's": [], + "inclusiveness": ["M"], + "triathlete": ["S"], + "Bernoulli": ["M"], + "essayers": [], + "valuation'ses": [], + "biscuit": ["S", "M"], + "piazzas": [], + "unrest": ["M"], + "linen's": [], + "wisterias's": [], + "retrospect": ["M", "D", "S", "G", "V"], + "indelible": [], + "emigrated": [], + "myth": ["M"], + "anesthetic": ["S", "M"], + "frictional": [], + "coalfields": [], + "acclimation": ["M"], + "hunted": [], + "haft'ses": [], + "plurality": ["S", "M"], + "we'll": [], + "overestimate's": [], + "face": ["A", "C", "S", "D", "G"], + "deployeds": [], + "rigorousliness": [], + "spotless": ["P", "Y"], + "emplacements": [], + "misinterpretations's": [], + "bandleader": ["S"], + "vatted": [], + "bloodsuckers's": [], + "nutmeats": [], + "lapse'ses": [], + "bagpipe'sers": [], + "thriftiness's": [], + "formeding": [], + "leeched": [], + "shamrock'ses": [], + "machinists": [], + "tapestry's": [], + "flurrieds": [], + "tenon": ["S", "M", "D", "G"], + "rousted": [], + "vibraphonists": [], + "friaries": [], + "adult": ["M", "S"], + "wonder'sed": [], + "across": [], + "Pierre's": [], + "promiseds": [], + "misdeed'ses": [], + "hull's": [], + "WASP": ["M"], + "jaundice'sing": [], + "chagrined": [], + "elaboration's": [], + "boosters": [], + "blush's": [], + "Azania": ["M"], + "rifer": [], + "firebricks": [], + "mincer": ["M"], + "Congreve's": [], + "transitive's": [], + "washings": [], + "leaguing": [], + "waggishliness": [], + "placing": [], + "downstate's": [], + "affectation": ["S", "M"], + "collaborations": [], + "aquaplane'sing": [], + "unfrocked": [], + "tracheae": [], + "clock'sed": [], + "adventure's": [], + "trampoline's": [], + "bungalow": ["M", "S"], + "grouch's": [], + "jolters": [], + "handout": ["S", "M"], + "sturdy": ["T", "R", "P"], + "aggressor's": [], + "iguanas": [], + "cancelers": [], + "colophons's": [], + "Maillol": ["M"], + "funicular": ["S", "M"], + "Austronesian's": [], + "sandbaggers": [], + "wander": ["D", "R", "S", "J", "Z", "G"], + "Hyderabad": ["M"], + "puree's": [], + "puerility's": [], + "Lowell's": [], + "ghostliness's": [], + "embitters": [], + "deified": [], + "plunderersing": [], + "sandiness": ["M"], + "flying": ["M"], + "citruses": [], + "hint": ["M", "D", "R", "Z", "G", "S"], + "saxophones": [], + "sultanate": ["M", "S"], + "Margarito": ["M"], + "procure": [], + "conceivably": ["I"], + "bilateral": ["Y"], + "butteries's": [], + "scratchier": [], + "loyalists": [], + "inexactness": [], + "tainted": ["U"], + "nutria's": [], + "nightmare's": [], + "effects": [], + "translatingen": [], + "Anglicism'ses": [], + "prayer's": [], + "monotheist": ["S", "M"], + "boomeranged": [], + "mobiles": [], + "ambulatesens": [], + "parenthesis": ["M"], + "Samoan's": [], + "addressed": ["U"], + "larkspur's": [], + "peripherals": [], + "monsignor's": [], + "filters": [], + "covertly": [], + "dyke": ["M", "S"], + "palings": [], + "thoroughfare's": [], + "cherry's": [], + "priesthoods": [], + "Levitt": ["M"], + "unconventional": [], + "Crusoe's": [], + "skyscraper": ["S", "M"], + "oddlyment": [], + "accounting": ["M"], + "requisitions's": [], + "meted": [], + "discharged": ["U"], + "obscureder": [], + "publicist's": [], + "taker's": [], + "proximity": ["M"], + "decongestant's": [], + "ass": ["M", "S"], + "elucidated": [], + "roar'sed": [], + "thumbprint": ["S", "M"], + "semicircles": [], + "over'sly": [], + "Arturo's": [], + "headwind's": [], + "peroxide's": [], + "tellings": [], + "philosophizes": [], + "porticoes": [], + "exhalations": [], + "Bogart": ["M"], + "cinching": [], + "regionalism'ses": [], + "Lilliputian": ["M", "S"], + "destruction's": [], + "blather'sed": [], + "salteds": [], + "allotments's": [], + "woodsiness's": [], + "amass": ["G", "D", "S"], + "automatizing": [], + "crap": ["M", "S"], + "shameful": ["P", "Y"], + "hairspring": ["M", "S"], + "roadhouse": ["S", "M"], + "contemnsed": [], + "peacemaking's": [], + "Toni's": [], + "cackles": [], + "precedesing": [], + "Pierre": ["M"], + "Borneo's": [], + "salvation's": [], + "cockiest": [], + "Alsace": ["M"], + "unlovely": ["T", "R"], + "lodestars": [], + "nonsensically": [], + "Persephone": ["M"], + "coxcomb": ["M", "S"], + "outgo'sings": [], + "depicting": [], + "executor": ["M", "S"], + "generalizinged": [], + "Armenians's": [], + "criteria": [], + "fishersing": [], + "construes": [], + "jingoist": ["S", "M"], + "apportioninged": [], + "Mississauga's": [], + "pelf": ["M"], + "watermarkings": [], + "consortium's": [], + "deletingen": [], + "glittereds": [], + "Cesarean": ["M"], + "colorist": ["S"], + "tortureder": [], + "hydrophobia's": [], + "puniness": ["M"], + "gazes": [], + "spheres": [], + "trashiness's": [], + "osier's": [], + "agriculturalist'ses": [], + "maraca's": [], + "natives": [], + "Philippians": ["M"], + "franc": ["S", "M"], + "solutions": [], + "Noyce's": [], + "mush'sed": [], + "scamp": ["M", "R", "S", "Z"], + "signifiesen": [], + "bolas": [], + "gainer": ["S", "M"], + "mountaineereding": [], + "Shiites": [], + "Willis": ["M"], + "homewards": [], + "fistfights": [], + "archaeologist": ["S", "M"], + "seagull": ["M", "S"], + "timelessnessly": [], + "thanksgivings's": [], + "whiffletrees": [], + "parameter's": [], + "chocoholics": [], + "updating": [], + "remolding": [], + "fondue": ["S", "M"], + "crunchierness": [], + "pipped": [], + "rhesus": ["M", "S"], + "harvests": [], + "consesing": [], + "Calvinism's": [], + "psychedelics's": [], + "pushbike": ["S"], + "bees": [], + "hyperactive": [], + "Harvard's": [], + "cerise's": [], + "spinelessness": [], + "liqueurs": [], + "Taoism": ["M", "S"], + "assigned": ["U"], + "Pol'sly": [], + "Coronado's": [], + "redeport": [], + "profanities's": [], + "demisinged": [], + "flatboat": ["S", "M"], + "Nouakchott's": [], + "kip's": [], + "fricassees's": [], + "stickpins": [], + "Luxembourg": ["Z", "M", "R"], + "unscramble": [], + "bloodhound's": [], + "muscularity": ["M"], + "cooperativelies": [], + "Phekda's": [], + "dotcom": ["S", "M"], + "supplementation's": [], + "plugin": ["S", "M"], + "bloodied": [], + "embarrassment's": [], + "pariah's": [], + "happy": ["U", "R", "T", "P"], + "hydrologist'ses": [], + "tumors's": [], + "deftly": [], + "parboilsing": [], + "seraph": ["M"], + "utilizeds": [], + "Nebraskan's": [], + "pylori": [], + "bathtubs": [], + "kickboxing": [], + "idiot": ["S", "M"], + "uncanniest": [], + "ropeder": [], + "workroom": ["M", "S"], + "dative's": [], + "nugget's": [], + "outclassing": [], + "frames's": [], + "passport's": [], + "foster": ["G", "S", "D"], + "prepositional": ["Y"], + "validates": [], + "queened": [], + "erosion's": [], + "yearling": ["M", "S"], + "cupid's": [], + "priest's": [], + "goggling": [], + "cochlea's": [], + "fans": [], + "stale": ["D", "R", "S", "T", "G", "P"], + "tassel": ["M", "D", "S", "G"], + "manlier": [], + "brogans's": [], + "traditionalism": ["M"], + "Praia's": [], + "Mauser's": [], + "pike": ["M", "Z", "G", "D", "R", "S"], + "mentor'sed": [], + "armaments": [], + "evergreen": ["S", "M"], + "supportsable": [], + "picture's": [], + "positive's": [], + "scrutiny": ["M"], + "majorettes": [], + "vivisection's": [], + "toilers": [], + "lowliness's": [], + "Hilda": ["M"], + "statics's": [], + "twopences": [], + "brochure's": [], + "tarantula's": [], + "inclination's": [], + "Penna": [], + "topi": [], + "skit's": [], + "hemophilia's": [], + "blindsiding": [], + "temporizer": ["M"], + "loamy": ["T", "R"], + "operable": ["I"], + "serried": [], + "mortally": [], + "campaigner's": [], + "sneak's": [], + "Bumppo's": [], + "roundelay's": [], + "gestapo'ses": [], + "muzzleds": [], + "purgatives's": [], + "Maribel": ["M"], + "randomsly": [], + "cushiest": [], + "melodramatically": [], + "zealous": ["Y", "P"], + "dragnets's": [], + "manege": ["M"], + "scripture's": [], + "Lovelace": ["M"], + "BLTs's": [], + "Wright's": [], + "plumbed": ["U"], + "leitmotif": ["M", "S"], + "insurrections": [], + "profanity's": [], + "date's": [], + "rootlessness": [], + "span'ses": [], + "Belleek's": [], + "guying's": [], + "X's": [], + "inhere": ["D", "S", "G"], + "Presbyterianism": ["M", "S"], + "romanceder": [], + "aha": [], + "rondo's": [], + "Argentinian'ses": [], + "dittos's": [], + "selloff's": [], + "sickly": ["R", "T"], + "wonted": ["U"], + "coalmines": [], + "sniff's": [], + "toughing": [], + "practicums": [], + "analyzed": [], + "victors": [], + "discombobulatingen": [], + "countless": [], + "Paracelsus's": [], + "telnet": [], + "nonvolatile": [], + "sprigs": [], + "vale's": [], + "Richie": ["M"], + "digestion": ["I", "M"], + "Hesse": ["M"], + "fulminatingen": [], + "defrayal's": [], + "statics": [], + "scythed": [], + "vicegerents": [], + "tenon's": [], + "conveyances": [], + "rubella": ["M"], + "Jacksonian's": [], + "sheering": [], + "falconry": ["M"], + "Arcturus's": [], + "grows": [], + "astronomer's": [], + "Travolta": ["M"], + "daydream": ["M", "D", "R", "Z", "G", "S"], + "balefulness's": [], + "flown": [], + "jestersing": [], + "necromancer's": [], + "pours": [], + "navigating": [], + "cohabitant": ["M", "S"], + "proclivities's": [], + "flicking's": [], + "repleting": [], + "haggleder": [], + "superannuating": [], + "Dickerson": ["M"], + "facsimile": ["D", "S", "M"], + "waylayer": ["M"], + "binding's": [], + "Tussaud's": [], + "optimal": ["Y"], + "substitute": ["X", "M", "G", "N", "D", "S"], + "sunbather": ["M"], + "subject": ["G", "V", "M", "D", "S"], + "riggers": [], + "Rockwell": ["M"], + "legalization": ["M"], + "followers": [], + "fourthly": [], + "tags": [], + "knitting": ["M"], + "sod's": [], + "hortatory": [], + "triremes": [], + "axolotl": ["S", "M"], + "offensivenessly": [], + "traitorous": ["Y"], + "landscape": ["M", "Z", "G", "D", "R", "S"], + "Wallace's": [], + "songwriters's": [], + "ambulatingen": [], + "patricide's": [], + "countryman": ["M"], + "Regulus": ["M"], + "caprice": ["S", "M"], + "zebra's": [], + "pestilent": [], + "hoaxing": [], + "Deana's": [], + "revoltingly": [], + "convertsed": [], + "glibber": [], + "clxvii": [], + "fried": [], + "acetone": ["M"], + "unbosomeding": [], + "wronger": [], + "marring": [], + "patterns": [], + "colonists's": [], + "decolletages": [], + "Morpheus's": [], + "corrupts": [], + "dissimilitudes": [], + "eek": [], + "grader": ["M"], + "trends": [], + "Elton's": [], + "Agni's": [], + "dilution": ["M"], + "glorious": ["I", "Y"], + "grandnieces": [], + "Mississippi's": [], + "jigsaweding": [], + "economizer's": [], + "productivity": ["M"], + "martyr": ["M", "D", "G", "S"], + "brook's": [], + "Godiva": ["M"], + "brazenly": [], + "tatter's": [], + "librettists": [], + "unsoundnesser": [], + "huskiest": [], + "Phelps's": [], + "blastersing": [], + "cognomen": ["S", "M"], + "wrongs": [], + "table'sing": [], + "chefs's": [], + "cartage's": [], + "Scottie's": [], + "defrauders": [], + "Passions": [], + "workload'ses": [], + "OKed": [], + "Camembert's": [], + "catastrophes": [], + "reliquary's": [], + "powerboat": ["M", "S"], + "queasinesser": [], + "cycled": [], + "blunderbusses": [], + "coadjutor's": [], + "fussbudget's": [], + "cornrowed": [], + "cricketer's": [], + "rinse'sing": [], + "purdah": ["M"], + "shitty": ["R", "T", "!"], + "restaurants": [], + "sagebrush's": [], + "parimutuels": [], + "sherry's": [], + "homeboys's": [], + "Ebony's": [], + "hotkeys": [], + "goggleds": [], + "taxmen": [], + "presbytery": ["S", "M"], + "handsaws": [], + "realest": [], + "uninstall": ["B", "S", "Z", "G", "D", "R"], + "bluffeder": [], + "antiquating": [], + "baboon's": [], + "linger": ["Z", "G", "J", "D", "R", "S"], + "defoliators": [], + "wrap's": [], + "constrain": [], + "herds": [], + "Arneb": ["M"], + "briquette'ses": [], + "inquired": [], + "reservoirs": [], + "consideration": ["A", "I", "M"], + "Nautilus's": [], + "shacked": [], + "shirtsleeves": [], + "inducesers": [], + "whiplash'ses": [], + "checkbook's": [], + "squat's": [], + "petioles": [], + "drably": [], + "rowdies": [], + "womankind's": [], + "ruptured": [], + "mugful's": [], + "browser's": [], + "worktable'ses": [], + "crucifixions": [], + "matinees's": [], + "menagerie'ses": [], + "distributor": ["A", "S"], + "temporizer's": [], + "commonalty's": [], + "quesadilla's": [], + "limited": ["U"], + "downshiftsing": [], + "bookbinder": ["S", "M"], + "failed": [], + "potbellied": [], + "coot": ["M", "S"], + "Molotov": ["M"], + "badgering": [], + "stringiness": ["M"], + "tenant's": [], + "lasted": [], + "infighter": [], + "Shevardnadze's": [], + "alas": [], + "whiteout": ["S", "M"], + "bedevilment": ["M"], + "contrive": ["Z", "G", "D", "R", "S"], + "berkelium": ["M"], + "vindicator": ["M", "S"], + "loincloth": ["M"], + "homestead'sed": [], + "salvageable": [], + "cosigner's": [], + "Englishmen's": [], + "metrication": ["M"], + "definition's": [], + "certifiably": [], + "longhorns": [], + "badmouthed": [], + "mirror's": [], + "slivers": [], + "senate": ["S", "M"], + "gosling's": [], + "motherfucker'ses": [], + "phenom": ["M", "S"], + "massage's": [], + "thundercloud'ses": [], + "Occam": ["M"], + "wristwatches": [], + "stanchinged": [], + "miladies": [], + "prioritizes": [], + "exasperatingly": [], + "revisit": [], + "Oort's": [], + "claque's": [], + "trombone'ses": [], + "lonely": ["P", "T", "R"], + "auricle": ["S", "M"], + "adultery's": [], + "Hegelian": ["M"], + "summed": [], + "depository's": [], + "tackle'sers": [], + "AstroTurf": ["M"], + "hazels's": [], + "final's": [], + "participateds": [], + "malingerers": [], + "duress": ["M"], + "resurrectings": [], + "Galatia's": [], + "pissing's": [], + "distaste": ["S", "M"], + "lapels's": [], + "Snell": ["M"], + "heavenly": ["T", "R"], + "solicitude's": [], + "Frey": ["M"], + "baldness's": [], + "catholicity": ["M"], + "demigoddess's": [], + "assailabled": [], + "sixpence's": [], + "sociologist's": [], + "stenographers": [], + "hatband": ["S"], + "noiseds": [], + "sophistication's": [], + "perceives": [], + "prickles": [], + "redounded": [], + "Tchaikovsky": ["M"], + "Esperanto's": [], + "bangs": [], + "Norway": ["M"], + "entity's": [], + "vibraphonist": ["M", "S"], + "bread": ["G", "M", "D", "H", "S"], + "monotony": ["M"], + "abyssal": [], + "kitsing": [], + "heist's": [], + "prepossessions": [], + "musters": [], + "gerrymandereds": [], + "nudity": ["M"], + "escaping": [], + "redoundeding": [], + "sculptures's": [], + "Ia": [], + "ends": [], + "patchier": [], + "lupus's": [], + "artificiality's": [], + "nonabrasive": [], + "Le": ["S", "M"], + "pigtail'ses": [], + "Greeks": [], + "westwards": [], + "Aristophanes's": [], + "unauthentic": [], + "incisions": [], + "simulate": ["E", "D", "S", "G", "N"], + "Dillinger": ["M"], + "epsilons's": [], + "anticoagulants": [], + "rum": ["S", "M"], + "pounce's": [], + "Zhivago's": [], + "altruist's": [], + "Erika's": [], + "blankerly": [], + "haberdashery": ["S", "M"], + "footersing": [], + "hematologists": [], + "postgraduate": ["S", "M"], + "aconite'ses": [], + "mortised": [], + "monastical": ["Y"], + "crisscrosseds": [], + "payers": [], + "vapors's": [], + "encyclicals's": [], + "Patel": ["M"], + "compare's": [], + "renderedings": [], + "dunces": [], + "animosity's": [], + "zestfulness's": [], + "expectorated": [], + "storeds": [], + "Cezanne's": [], + "ricocheting": [], + "canted": [], + "dawdlersing": [], + "convents's": [], + "indulgeds": [], + "voluptuary's": [], + "samurai's": [], + "explorers": [], + "indoctrination's": [], + "premeditateds": [], + "tighteners": [], + "drawerers": [], + "W": ["M", "D", "T"], + "faff": ["D", "G", "S"], + "Athabasca": ["M"], + "bracketing": [], + "winsomer": [], + "Lipizzaner": ["M"], + "ternary's": [], + "colloquialism's": [], + "pronto": [], + "bistro": ["M", "S"], + "fireside": ["M", "S"], + "unifies": [], + "repetitiousness's": [], + "urology's": [], + "parishioners": [], + "ladybug's": [], + "confabulates": [], + "mordant": ["S", "M", "Y"], + "Cooke's": [], + "unreasonable": [], + "boardeder": [], + "obsess": ["D", "S", "G", "V"], + "NOW": [], + "lading's": [], + "misseds": [], + "forecastle": ["M", "S"], + "pretax": [], + "aerials": [], + "manifestedly": [], + "preschool's": [], + "Brahms": ["M"], + "opticians's": [], + "dwelling's": [], + "pimpernels": [], + "artillerymen": [], + "safety": ["S", "M"], + "matchmakers": [], + "simplest": [], + "appreciatory": [], + "drumstick's": [], + "Adirondacks": ["M"], + "evicted": [], + "Mt": [], + "adjustsment": [], + "cordial's": [], + "Maryanne": ["M"], + "querulousness's": [], + "stegosaurus": ["M", "S"], + "sisters's": [], + "memorialize": ["D", "S", "G"], + "bondsman": ["M"], + "slouch'sed": [], + "tempered": [], + "incubators": [], + "phonologically": [], + "naughtier": [], + "Inst": [], + "ballgirl": ["S"], + "winters": [], + "cremateds": [], + "iron": ["M", "D", "S", "G"], + "drivelersing": [], + "naked": ["P", "Y"], + "questioningly": [], + "bangle's": [], + "Mansfield": ["M"], + "bloodcurdling": [], + "null": ["S"], + "deferral's": [], + "duckies's": [], + "Palestrina": ["M"], + "shield's": [], + "Bangor": ["M"], + "slavereding": [], + "equalizeder": [], + "stay's": [], + "racialism": ["M"], + "producinged": [], + "expatiation": ["M"], + "implant's": [], + "chisel'sed": [], + "helping's": [], + "airlocks's": [], + "Baha'ullah's": [], + "thirdly": [], + "snippy": ["R", "T"], + "fruits": [], + "Nuremberg's": [], + "amnesics's": [], + "Kennan's": [], + "speared": [], + "kohlrabi": ["M"], + "bulkhead'ses": [], + "Afrocentric": [], + "flyover's": [], + "underpinning": ["M", "S"], + "masters": [], + "entreat": ["G", "S", "D"], + "Tecumseh": ["M"], + "Moet's": [], + "negotiation's": [], + "ghostedly": [], + "Denis": ["M"], + "predispositions": [], + "unreel": [], + "canvasser": ["M"], + "deductible": ["S", "M"], + "kill": ["J", "M", "D", "R", "S", "Z", "G"], + "endometrial": [], + "smear": ["S", "M", "D", "G"], + "caseworkers's": [], + "CFO": [], + "weird": ["P", "T", "R", "Y"], + "viewfinder": ["S", "M"], + "airhead": ["S", "M"], + "recriminating": [], + "strut": ["S", "M"], + "worthy": ["U", "P", "R", "T"], + "court'sed": [], + "mollies": [], + "lanky": ["R", "T", "P"], + "coax": ["D", "R", "S", "Z", "G"], + "abasinged": [], + "eyebrow's": [], + "sepsis": ["M"], + "attachable": [], + "burnerers": [], + "suppl": [], + "inamorata's": [], + "tenanted": ["U"], + "asininity's": [], + "Christendom'ses": [], + "antilogarithm": ["S", "M"], + "demo": ["G", "M", "D"], + "product's": [], + "sprinters": [], + "revenged": [], + "drafteding": [], + "woodcraft": ["M"], + "brewing": [], + "pranced": [], + "mince'sers": [], + "mass's": [], + "absolution": ["M"], + "shush": ["D", "S", "G"], + "screenings": [], + "powerboat's": [], + "beanstalk's": [], + "litigation": ["M"], + "tease's": [], + "foxy": ["R", "T", "P"], + "woefulness": ["M"], + "Moor": ["S", "M"], + "yawl'ses": [], + "vertigo's": [], + "structured": ["U"], + "banterings": [], + "hacktivist": ["M", "S"], + "preceptor": ["S", "M"], + "looping": [], + "exfoliationed": [], + "jackeding": [], + "traction": ["E", "F", "A", "C", "K", "M"], + "litigator": ["M", "S"], + "mistral's": [], + "doctrine's": [], + "dressmaking": ["M"], + "kookaburra's": [], + "panicky": [], + "continuum": ["M"], + "casks's": [], + "unkindness": [], + "quesadilla'ses": [], + "argosies": [], + "Boyle's": [], + "rancheder": [], + "howdahs": [], + "oversensitiveness's": [], + "Penderecki's": [], + "mushier": [], + "whizzbangs": [], + "aquanaut's": [], + "Telemachus": ["M"], + "bloom'sed": [], + "adorning": [], + "concavity": [], + "demeaninged": [], + "plantation'ses": [], + "St": [], + "curry'sing": [], + "Rosa": ["M"], + "Mortimer": ["M"], + "peckish": [], + "moors": [], + "Orient's": [], + "usability's": [], + "fiasco": ["M"], + "mendacious": ["Y"], + "metastasizing": [], + "shabbiness": ["M"], + "economy": ["S", "M"], + "Lankan's": [], + "inaugurate": ["X", "G", "N", "D", "S"], + "Roberto's": [], + "mood": ["M", "S"], + "percolation": ["M"], + "explorer": ["M"], + "dipsomania": ["M"], + "ripply": [], + "Canaan": ["M"], + "Philippe": ["M"], + "suggestible": [], + "speedups": [], + "catcher's": [], + "fingered": [], + "corvette's": [], + "abdicate": ["G", "N", "D", "S", "X"], + "outerwear's": [], + "tonally": [], + "fecundation": ["M"], + "concussions": [], + "Paiutes": [], + "guiltiness's": [], + "nativities": [], + "defibrillators": [], + "relationsers": [], + "skeeters": [], + "foldout'ses": [], + "entertainingly": [], + "breadboard's": [], + "lesbian's": [], + "expeditersing": [], + "checkroom'ses": [], + "bellowing": [], + "crane'sing": [], + "MTV": ["M"], + "tapioca's": [], + "overleaf": [], + "Toshiba": ["M"], + "comprising": [], + "puniest": [], + "bf": [], + "constrictors's": [], + "cuter": [], + "daydream's": [], + "cardiograms's": [], + "authoritarian's": [], + "turf'sed": [], + "fiercest": [], + "bonanzas": [], + "caterer": ["M"], + "Purim's": [], + "legislateds": [], + "samovar's": [], + "regularizesing": [], + "rewed": [], + "overactsed": [], + "percolate": ["G", "N", "D", "S"], + "swattering": [], + "botcher": ["M"], + "creamer's": [], + "albatross's": [], + "escudo's": [], + "subpoenaing's": [], + "typicality": ["M"], + "romanticizesing": [], + "Jamaicans's": [], + "cindered": [], + "marquis'ses": [], + "avail'sed": [], + "Mycenae's": [], + "trellised": [], + "nonadjustable": [], + "satraps's": [], + "worsened": [], + "Mai's": [], + "eventuates": [], + "yang": ["M"], + "mending": ["M"], + "imperative": ["S", "M", "Y"], + "peccadillo": ["M"], + "Lagrange": ["M"], + "inharmonious": [], + "dusters": [], + "Dunlap": ["M"], + "nonidentical": [], + "jean": ["M", "S"], + "Yugoslav": ["M", "S"], + "bailing's": [], + "aggregations": [], + "wariest": [], + "vibrato'ses": [], + "tricky": ["T", "R", "P"], + "underhandedness": ["M"], + "unanimously": [], + "injuresers": [], + "swamis": [], + "embarrass": ["G", "L", "D", "S"], + "deterring": [], + "precipitated": [], + "for": ["H"], + "matches": [], + "pumpkin'ses": [], + "Kierkegaard's": [], + "prostitution's": [], + "moreover": [], + "storehouse's": [], + "followeder": [], + "metastasize": ["D", "S", "G"], + "arguer's": [], + "adopter'ses": [], + "funniness's": [], + "Sargon's": [], + "bellboys": [], + "noshes": [], + "hillsides": [], + "eruct": ["S", "D", "G"], + "eunuchs": [], + "boorishnesses": [], + "rectifier's": [], + "estrangemented": [], + "tollgates": [], + "suggestively": [], + "highroads": [], + "Verde's": [], + "pepperoni'ses": [], + "Aryans": [], + "suck'sed": [], + "ringtone": ["S", "M"], + "bisexual'sly": [], + "untruest": [], + "surrendered": [], + "mystification's": [], + "load's": [], + "reediness": ["M"], + "defamer's": [], + "Tallchief": ["M"], + "showdown's": [], + "furnishing": [], + "adolescents's": [], + "reefer": ["M"], + "telecastsers": [], + "wink": ["M", "D", "R", "S", "Z", "G"], + "bay'sed": [], + "velum's": [], + "potties's": [], + "palliates": [], + "Sejong's": [], + "fresheners": [], + "befriending": [], + "Constance's": [], + "eyed": [], + "centigram": ["S", "M"], + "imperious": ["P", "Y"], + "transgressor": ["S", "M"], + "burglarizes": [], + "egret": ["S", "M"], + "porous": ["P"], + "doorstep": ["M", "S"], + "persecutor's": [], + "falter'sed": [], + "nuance's": [], + "novelists": [], + "Johann's": [], + "quack": ["G", "M", "D", "S"], + "accurateness": ["M"], + "toolbox's": [], + "garbeding": [], + "luges": [], + "Franco": ["M"], + "ordainment": ["M"], + "revokesing": [], + "choreographerers": [], + "pubescence's": [], + "quarrelers": [], + "snooker'sed": [], + "miasma": ["M", "S"], + "gigabyte's": [], + "unacceptable": [], + "matriculation's": [], + "spire": ["I", "F", "A", "S"], + "Dhaulagiri": ["M"], + "earful's": [], + "attributive's": [], + "uncontrollable": [], + "tub's": [], + "Knesset's": [], + "thruway's": [], + "oversells": [], + "weatherizesing": [], + "blackouts": [], + "implies": [], + "persuader's": [], + "reticent": ["Y"], + "pontiffs": [], + "purged": [], + "goer": ["M"], + "pampered": [], + "botnets's": [], + "mordants": [], + "Arminius's": [], + "stagecoach'ses": [], + "ablatingen": [], + "interventionist's": [], + "penalties": [], + "wantings": [], + "amortizingable": [], + "directing": [], + "Mallomars's": [], + "tyrant's": [], + "conscientiousness's": [], + "camiknickers": [], + "byroad's": [], + "Brenda's": [], + "Kraft's": [], + "Brummel's": [], + "notation's": [], + "cripple'sers": [], + "franchisers": [], + "graysness": [], + "effuse": ["D", "S", "G", "N", "V", "X"], + "dissemblance's": [], + "triplicateds": [], + "proverbial": ["Y"], + "shoemakers's": [], + "network'sed": [], + "pheromone's": [], + "retaineder": [], + "circle'sing": [], + "collateral": ["M", "Y"], + "impertinence": ["M", "S"], + "inexpressible": [], + "enjoyments's": [], + "shortly": [], + "hummocks's": [], + "Yules": [], + "site's": [], + "cauliflower": ["S", "M"], + "cubersing": [], + "rumbling": ["M"], + "foresee": ["R", "S", "B", "Z"], + "coronal'ses": [], + "stocktaking's": [], + "Cree": ["D", "S", "M"], + "Apaches": [], + "Jock's": [], + "baboon'ses": [], + "trier's": [], + "urethrae": [], + "exiguity": ["M"], + "inanity": ["S", "M"], + "threadlike": [], + "sloppiest": [], + "dob": ["S"], + "crayfish's": [], + "stifled": [], + "producible": ["A"], + "carbonating": [], + "martians": [], + "enema": ["S", "M"], + "Mb": ["M"], + "Myra's": [], + "sterilizations": [], + "unattainable": [], + "loonies": [], + "blue's": [], + "Ogbomosho's": [], + "hosier's": [], + "rushy": [], + "Louis's": [], + "Urumqi": ["M"], + "overdecorating": [], + "adjudging": [], + "Lugosi": ["M"], + "underhandedly": [], + "stoat": ["S", "M"], + "adroitness's": [], + "adjusters": [], + "motorsing": [], + "teaches": [], + "markdowns": [], + "ideograms": [], + "pettifog": ["S"], + "biathlons": [], + "grumpiest": [], + "mesheds": [], + "nomadic": [], + "Indianan": ["S", "M"], + "moistness's": [], + "underscore": ["D", "S", "M", "G"], + "outproduceds": [], + "gold's": [], + "rhapsody": ["S", "M"], + "adjutant's": [], + "contortinged": [], + "weakfish's": [], + "grub'ses": [], + "evidenceds": [], + "lessee": ["M", "S"], + "Renee": ["M"], + "drivels": [], + "Uniroyal": ["M"], + "sickie'ses": [], + "ethnic": ["S", "M"], + "Souths": [], + "buffaloed": [], + "bailing": [], + "gamecock'ses": [], + "assertion's": [], + "cattiest": [], + "Mauritanian's": [], + "fowling": [], + "armbands": [], + "heightened": [], + "belle's": [], + "wallaby's": [], + "laburnums": [], + "overruns": [], + "huddled": [], + "achiest": [], + "manifolding": [], + "joylessnessly": [], + "minority's": [], + "anklebone": ["M", "S"], + "featherbedding": ["M"], + "Ypres": ["M"], + "boodle'ses": [], + "Turin": ["M"], + "malachite's": [], + "reemploy": [], + "fixation's": [], + "remote'sly": [], + "shipboard's": [], + "lightninged": [], + "replenishes": [], + "Snyder's": [], + "assistant": ["S", "M"], + "seal": ["A", "U", "S", "D", "G"], + "Utrecht's": [], + "backtrackeding": [], + "offloadeding": [], + "parallelogram": ["S", "M"], + "prospers": [], + "wisers": [], + "cadences's": [], + "visits": [], + "gland's": [], + "forbears": [], + "untruth": ["M"], + "hammerheads's": [], + "tootersing": [], + "flagging": ["U"], + "acting": ["M"], + "insulateds": [], + "falsifieder": [], + "Londoner's": [], + "stockbroker's": [], + "replantings": [], + "omen": ["M"], + "Barnard's": [], + "shoeshine's": [], + "lunchroom": ["M", "S"], + "photographer's": [], + "hosepipes": [], + "booty's": [], + "slueds": [], + "moronic": [], + "stepper's": [], + "barony's": [], + "tacker's": [], + "cochlear": [], + "Nebraskans": [], + "accuse": ["Z", "G", "D", "R", "S"], + "xylophonist's": [], + "stigma's": [], + "yaps's": [], + "Finns's": [], + "warrantieds": [], + "calumniation's": [], + "wirier": [], + "bonked": [], + "kvetchersing": [], + "bougainvillea'ses": [], + "hydrotherapy's": [], + "fishing's": [], + "wrist": ["S", "M"], + "magnitudes": [], + "carbuncle's": [], + "cruder": [], + "Slovene": ["S", "M"], + "bardic": [], + "inhale": [], + "squatter": ["M", "S"], + "transpires": [], + "tine'ses": [], + "MasterCard": ["M"], + "candlelit": [], + "crumbed": [], + "metamorphosinged": [], + "deepened": [], + "lazier": [], + "Kama": ["M"], + "compensatesens": [], + "takeaway": ["S"], + "quotesing": [], + "encircles": [], + "gritter's": [], + "burnish's": [], + "fiftieth's": [], + "Whitaker's": [], + "Sassoon's": [], + "banjoists's": [], + "frame": ["D", "R", "S", "M", "Z", "G"], + "remover": [], + "unison": ["M"], + "expense'ses": [], + "repairer's": [], + "Leonel": ["M"], + "Klondikes": [], + "Chihuahua's": [], + "ed": ["A", "C", "S", "M"], + "steakhouse": ["S", "M"], + "outgo's": [], + "Mahayana": ["M"], + "pica": ["M"], + "concretingen": [], + "Jillian": ["M"], + "initiative's": [], + "proles": [], + "brazeningness": [], + "Madras": ["M"], + "cheerersing": [], + "relinquishment": ["M"], + "bellow'sed": [], + "Terpsichore": ["M"], + "noncredit": [], + "woodcock": ["S", "M"], + "bifurcate": ["X", "D", "S", "G", "N"], + "proton's": [], + "blank": ["T", "G", "P", "M", "D", "R", "Y", "S"], + "chambered": [], + "Virgo's": [], + "reorient": [], + "describing": [], + "dullards's": [], + "portfolios": [], + "wheelhouses": [], + "rationalism's": [], + "coequal": ["M", "Y", "S"], + "twink": ["S", "Y"], + "kilobyte": ["S", "M"], + "annoys": [], + "galosh's": [], + "fork": ["M", "D", "G", "S"], + "perambulators": [], + "maneuver'sed": [], + "heisted": [], + "matte's": [], + "metronome": ["M", "S"], + "erections's": [], + "Polynesia": ["M"], + "trumpet's": [], + "tankfuls": [], + "powdering": [], + "luggers": [], + "hyperbolic": [], + "gravamen'ses": [], + "beats": [], + "upperclassman": ["M"], + "outflanked": [], + "Amish": ["M"], + "interposinged": [], + "divine": ["D", "R", "S", "M", "Y", "Z", "T", "G"], + "inflammatory": [], + "bletch": [], + "mythologizeds": [], + "participle's": [], + "lightener's": [], + "phantoms's": [], + "spiral'sed": [], + "Nat": ["M"], + "readier": [], + "cheekier": [], + "gala": ["M", "S"], + "Rubik": ["M"], + "reprieveds": [], + "wishfully": [], + "fray": ["C", "D", "G", "S"], + "thrilled": [], + "fatties": [], + "puffballs's": [], + "friendlies": [], + "likeliness's": [], + "frogmarches": [], + "heteros's": [], + "lodged": [], + "burnishing's": [], + "inverse'sly": [], + "speed's": [], + "loon's": [], + "defamer": ["M"], + "Wash": ["M"], + "Mahicans's": [], + "gent's": [], + "Anita": ["M"], + "auscultation's": [], + "cantilever": ["M", "D", "G", "S"], + "coequal's": [], + "Abner's": [], + "visualized": [], + "Coleen's": [], + "humorousness's": [], + "supernovas": [], + "bugger": ["S", "M", "D", "G"], + "retinas": [], + "rattletrap": ["S", "M"], + "subleaseds": [], + "overthrow'sing": [], + "nonoperational": [], + "Edgar's": [], + "spirea": ["S", "M"], + "beriberi's": [], + "dinnering": [], + "translators's": [], + "hammered": [], + "bathe": ["M"], + "nodded": [], + "nonintellectuals": [], + "original'sly": [], + "dainties": [], + "satraps": [], + "ghostwriter": ["M"], + "relayed": [], + "retrievable": [], + "cannon'sed": [], + "disinfection": ["M"], + "confuser": [], + "gumboils": [], + "deputized": [], + "Graham": ["M"], + "ramblings": [], + "bricklayer's": [], + "epidemiology": ["M"], + "assassination's": [], + "receiver": ["M"], + "minnesinger'ses": [], + "alcoholic's": [], + "clambering's": [], + "ballsing": [], + "Lederberg": ["M"], + "munching": [], + "overemphasizing": [], + "lint": ["C", "D", "G"], + "orneriness": ["M"], + "smootherly": [], + "firefighters": [], + "abstemious": ["P", "Y"], + "actualizinged": [], + "pun": ["S", "M"], + "recurrent": [], + "fundamentalists's": [], + "revoltinged": [], + "Easter's": [], + "activate": ["I", "C", "A", "N", "G", "S", "D"], + "mincemeat's": [], + "prearranginged": [], + "remaining": [], + "legitimatizing": [], + "blaring": [], + "kitchenware's": [], + "aggrandizingment": [], + "semiglosses": [], + "pug": ["S", "M"], + "snobbishness's": [], + "annihilation": ["M"], + "sportiness": ["M"], + "satelliting": [], + "map": ["A", "S"], + "level's": [], + "unequaledly": [], + "electroplated": [], + "differentiatesing": [], + "Brattain's": [], + "Waugh": ["M"], + "Noble's": [], + "pasteurizersing": [], + "cacklinged": [], + "raglan's": [], + "corpus": ["M"], + "electronically": [], + "Johnson's": [], + "cleanablings": [], + "slickeder": [], + "fouls": [], + "space": ["D", "R", "S", "M", "Z", "G"], + "Sibelius's": [], + "Rwanda'ses": [], + "Rubinstein": ["M"], + "transition": ["G", "S", "M", "D"], + "revulsion": ["M"], + "Dipper": ["M"], + "deescalate": [], + "snakebites": [], + "steeple'ses": [], + "reinforcementing": [], + "lioness's": [], + "bakery's": [], + "Gallup's": [], + "floaterers": [], + "grandstands": [], + "bureaucracies": [], + "ambulated": [], + "misquotinged": [], + "hostelries": [], + "maturely": [], + "caress": ["M", "D", "S", "G"], + "jacaranda'ses": [], + "sentence'sing": [], + "tobogganersing": [], + "Thunderbird's": [], + "ilks's": [], + "garrote": ["M", "Z", "G", "D", "R", "S"], + "gyroscope": ["M", "S"], + "schoolyard": ["S", "M"], + "damageds": [], + "nutritionally": [], + "Egypt's": [], + "earthing": [], + "putter'sed": [], + "Malibu": ["M"], + "midges's": [], + "paganism": ["M"], + "half": ["M"], + "viscounts": [], + "murmurs": [], + "nonproductive": [], + "colostomies's": [], + "focuseds": [], + "Elmo's": [], + "shag's": [], + "paperhanging's": [], + "directeding": [], + "fads": [], + "grim": ["D", "Y", "P", "G"], + "prolong": [], + "palominos": [], + "alienated": [], + "duckpins's": [], + "shapeliest": [], + "nonprofits's": [], + "stitchesing": [], + "cannily": ["U"], + "Trojan": ["M", "S"], + "disagreement": [], + "footslogging": [], + "softball": ["M", "S"], + "loitereder": [], + "means": [], + "cartridges": [], + "papilla": ["M"], + "altitudes": [], + "Xingu": ["M"], + "Gehenna's": [], + "enhanced": [], + "torpid": ["Y"], + "Maritain's": [], + "siltiest": [], + "postbox": ["S"], + "Lvov": ["M"], + "roommate's": [], + "pistol": ["S", "M"], + "retailer's": [], + "Paiute's": [], + "comports": [], + "Irish'ser": [], + "banker": ["M"], + "Armenian": ["S", "M"], + "stadium's": [], + "continence": ["I", "M"], + "frisk": ["S", "D", "G"], + "advantageds": [], + "floodeder": [], + "heating's": [], + "tingling's": [], + "pickings's": [], + "dullings": [], + "Gloucester's": [], + "regeneracy's": [], + "sultan": ["M", "S"], + "question's": [], + "Joycean's": [], + "pedestrianizes": [], + "Cabot": ["M"], + "tuber's": [], + "authentically": [], + "rumply": [], + "tile'sers": [], + "Rocha's": [], + "unsolicited": [], + "despite": [], + "dilettante": ["S", "M"], + "sugarcane": ["M"], + "ingredient's": [], + "soloist'ses": [], + "Prokofiev": ["M"], + "Europe": ["M"], + "musician": ["S", "M", "Y"], + "Charity": ["M"], + "vaginal": ["Y"], + "apathy's": [], + "totaling": [], + "hellhole'ses": [], + "perturbings": [], + "bobblinged": [], + "idler's": [], + "Bobbitt": ["M"], + "prosecutes": [], + "nestsing": [], + "workflows": [], + "Merrimack's": [], + "NASCAR": ["M"], + "whenever": [], + "rumple'sing": [], + "newness": ["M"], + "gorilla'ses": [], + "walk's": [], + "rites": [], + "polygraph's": [], + "Yemen's": [], + "buttering": [], + "kiting": [], + "yolkeds": [], + "breadfruit's": [], + "stones's": [], + "goatskin's": [], + "zeroes": [], + "Robt's": [], + "gangster's": [], + "prefect's": [], + "awesomeness": ["M"], + "eyewash's": [], + "mailbombsed": [], + "amercemented": [], + "Krebs's": [], + "demulcents's": [], + "crud": ["M"], + "restrictive": ["Y", "P"], + "eons": [], + "chanciness's": [], + "limns": [], + "ignominy's": [], + "foredooms": [], + "Abe's": [], + "racquetballs's": [], + "denying": [], + "sarcasm'ses": [], + "silicosis": ["M"], + "confuteds": [], + "outspending": [], + "bucksaw": ["M", "S"], + "guesser": ["M"], + "undifferentiated": [], + "bobcat's": [], + "addenda": [], + "Ute's": [], + "fiend's": [], + "rouseds": [], + "microfiche's": [], + "Vern's": [], + "prance": ["D", "R", "S", "M", "Z", "G"], + "cesium's": [], + "weepy": ["T", "R", "S", "M"], + "short's": [], + "wrapped": ["U"], + "ricinged": [], + "overwhelm": ["S", "G", "D"], + "equivocator's": [], + "monocotyledonous": [], + "Shasta": ["M"], + "icky": ["R", "T"], + "Chipewyan's": [], + "abrasion": ["M", "S"], + "unsuitably": [], + "shagginess's": [], + "savoring": [], + "Adam's": [], + "Bridgeport": ["M"], + "execration's": [], + "mugginess": ["M"], + "financesing": [], + "birdbrains": [], + "Tennessean": ["S", "M"], + "tipster": ["M", "S"], + "rookeding": [], + "danger's": [], + "trousers's": [], + "gridiron's": [], + "manipulative": ["Y"], + "custom": ["S", "Z", "M", "R"], + "overflight's": [], + "wavering": ["Y"], + "QA": [], + "gratersing": [], + "crooners": [], + "butcheries": [], + "tams's": [], + "Thais's": [], + "agglomerate'sing": [], + "successfully": [], + "earshot": ["M"], + "contrariness's": [], + "expropriators": [], + "lemme": ["J", "G"], + "visualizesers": [], + "handkerchief's": [], + "lowlife": ["S", "M"], + "film's": [], + "mellifluously": [], + "formulas": [], + "smirched": [], + "blurbs": [], + "Alberio's": [], + "Chesterfield": ["M"], + "cleavage": ["M", "S"], + "obbligato'ses": [], + "Pakistani": ["S", "M"], + "reflective": ["Y"], + "NS": [], + "woodinesser": [], + "homebody's": [], + "winkeder": [], + "leggiest": [], + "rosaries's": [], + "doyenne'ses": [], + "barren'ser": [], + "Turk": ["S", "M"], + "perfecting's": [], + "wacker": [], + "seepage's": [], + "spree's": [], + "juniper's": [], + "defeateder": [], + "tranquilized": [], + "conserve's": [], + "enhancements": [], + "ordinatesens": [], + "emperor'ses": [], + "tracersing": [], + "providentially": [], + "hypnotizeds": [], + "melanomas's": [], + "conjunctivas's": [], + "monkeys": [], + "youngest": [], + "hydroponically": [], + "fleece'sers": [], + "Conestoga's": [], + "broadeneding": [], + "dewlap's": [], + "learning's": [], + "scorers": [], + "triptych": ["M"], + "excludeds": [], + "pall'sed": [], + "penlight": ["S", "M"], + "sea's": [], + "Jayapura's": [], + "limitsers": [], + "dedicators": [], + "possessions's": [], + "equilibrium": ["E", "M"], + "troopersing": [], + "goldener": [], + "Aiken's": [], + "frizzles": [], + "Chinese's": [], + "expendable's": [], + "freshener": ["M"], + "prognosticateds": [], + "chutney'ses": [], + "problem'ses": [], + "assault's": [], + "functional": ["Y"], + "monopolist's": [], + "hornet's": [], + "dispositions": [], + "coninspire": [], + "stipulates": [], + "petty": ["P", "T", "R"], + "woodenly": [], + "Barbarossa": ["M"], + "Lhasa": ["M", "S"], + "condones": [], + "luxury's": [], + "newsprint's": [], + "teleconferencinged": [], + "lamplighter's": [], + "squinteder": [], + "death's": [], + "kitchens's": [], + "porters's": [], + "passive'sly": [], + "coldness": ["M"], + "elegies's": [], + "Kyoto's": [], + "dividend": ["M", "S"], + "peeking": [], + "supertankers": [], + "reboilsed": [], + "access'sed": [], + "yogurts's": [], + "nineteen": ["S", "M", "H"], + "unplumbed": [], + "Maoism": ["S", "M"], + "emoji's": [], + "strategist": ["S", "M"], + "envying": ["Y"], + "misconstruction": ["M", "S"], + "lineups": [], + "titular": [], + "reservists": [], + "cesspit": ["S"], + "lionizing": [], + "trustful": ["E", "Y"], + "bookkeeping's": [], + "insomuch": [], + "sheaveds": [], + "mesons's": [], + "bias": ["G", "M", "D", "S"], + "automaton": ["S", "M"], + "constitutionality's": [], + "hyperbola": ["S", "M"], + "shrimpers": [], + "dogies": [], + "Kalahari": ["M"], + "diurnally": [], + "recenterly": [], + "barrios": [], + "eyeliner'ses": [], + "Siamese": ["M"], + "magnetometers's": [], + "uninterruptedly": [], + "roan": ["M", "S"], + "blazon": ["M", "D", "G", "S"], + "drubber's": [], + "intaglio's": [], + "Brett": ["M"], + "grand's": [], + "indium": ["M"], + "spillover's": [], + "vacs": [], + "anguished": [], + "HMO": ["M"], + "tumbled": [], + "souses": [], + "demonically": [], + "departures": [], + "falsifies": [], + "mongers": [], + "sojourning": [], + "feedlot": ["S", "M"], + "Susanne": ["M"], + "Hampshire": ["M"], + "chronicle'sers": [], + "pulpits": [], + "emblematic": [], + "Mercator's": [], + "parish's": [], + "wantonedly": [], + "Willemstad": ["M"], + "happiness": ["U", "M"], + "Bolshoi's": [], + "Mintaka": ["M"], + "Derrida's": [], + "ratter": ["S", "M"], + "pollens": [], + "pliantly": [], + "meets": [], + "hashing": [], + "dumbbell": ["S", "M"], + "Sculley's": [], + "Italy's": [], + "syllogism'ses": [], + "afforded": [], + "turd": ["M", "S"], + "tornado's": [], + "musette'ses": [], + "mother's": [], + "frogman's": [], + "aquavit's": [], + "pegging": [], + "Hughes's": [], + "twinges": [], + "repudiate": ["X", "G", "N", "D", "S"], + "nuzzling": [], + "resetting": [], + "pale": ["M", "Y", "T", "G", "P", "D", "R", "S", "J"], + "gopher": ["S", "M"], + "passengers's": [], + "roundeder": [], + "accusers": [], + "pie's": [], + "pajamas": ["M"], + "Benelux's": [], + "Windsors": [], + "zigzags's": [], + "shay": ["M", "S"], + "predeterminers": [], + "verbalizinged": [], + "Hefner": ["M"], + "leopard's": [], + "brief's": [], + "shorthorn'ses": [], + "numbly": [], + "goldbricks": [], + "drainpipes": [], + "bulb'ses": [], + "ottoman'ses": [], + "Kikuyu's": [], + "unfurl": [], + "softballs": [], + "dallieder": [], + "tweaking": [], + "amplification's": [], + "individuates": [], + "tabulatesing": [], + "coursers": [], + "precursors's": [], + "Oldfield's": [], + "impromptu's": [], + "motet's": [], + "ballyhooed": [], + "right": ["M", "D", "R", "Y", "S", "P", "T", "G"], + "issuer'ses": [], + "Ne's": [], + "carelessness": ["M"], + "Clement'ses": [], + "Blantyre's": [], + "cindereds": [], + "Sophie's": [], + "bellies's": [], + "trespassersing": [], + "Leanna": ["M"], + "balefully": [], + "peacekeeping": ["M"], + "stormily": [], + "stomacher": ["M"], + "flaring": [], + "ramie's": [], + "rises": [], + "ciabattas": [], + "dilate": ["D", "S", "G", "N"], + "betteringment": [], + "wording's": [], + "quadrennium's": [], + "selvage's": [], + "flapjack": ["M", "S"], + "frivolousness's": [], + "navigation": ["M"], + "enticeds": [], + "launderettes's": [], + "refutations": [], + "schematize": ["G", "D", "S"], + "Seconal's": [], + "perspiration's": [], + "probation": ["Z", "M", "R"], + "geared": [], + "other's": [], + "sawing's": [], + "proficients": [], + "TARP": [], + "chewiness": ["M"], + "overexposure's": [], + "Sufi's": [], + "Albuquerque's": [], + "alliance": ["S", "M"], + "kidnapper": ["M", "S"], + "walnut'ses": [], + "Sanhedrin": ["M"], + "retraining": [], + "peristyle's": [], + "cajole": ["Z", "G", "L", "D", "R", "S"], + "Sonora's": [], + "Gen's": [], + "birettas's": [], + "hivinged": [], + "forthright": ["Y", "P"], + "thermonuclear": [], + "algebraic": [], + "excepts": [], + "torquing": [], + "buttock": ["S", "M"], + "biodiversity's": [], + "swoon'sed": [], + "proofread": ["S", "R", "Z", "G"], + "halite's": [], + "cheerio's": [], + "protestation'ses": [], + "shavings": [], + "requirement's": [], + "sogginess's": [], + "unlit": [], + "telephotos's": [], + "ladyfinger'ses": [], + "wakensed": [], + "correspondences": [], + "potentate": ["M", "S"], + "Kingstown's": [], + "defecteding": [], + "impairs": [], + "solely": [], + "desirableness": ["M"], + "flagships": [], + "Ruskin's": [], + "mindeder": [], + "uneventful": [], + "elected": [], + "backtracked": [], + "bigot'sed": [], + "determent's": [], + "crush's": [], + "Gillespie's": [], + "satirizes": [], + "back": ["S", "J", "Z", "G", "M", "D", "R"], + "BC": ["M"], + "Kline's": [], + "troglodytes": [], + "griffons's": [], + "lambs": [], + "dichotomies": [], + "sharpener'ses": [], + "overstimulating": [], + "gradable": [], + "champagne": ["M", "S"], + "cent's": [], + "relentlessness": ["M"], + "rehabilitatingen": [], + "transgressions": [], + "yawn": ["M", "D", "R", "S", "Z", "G"], + "guise": ["E", "S", "M"], + "signora's": [], + "centralizinged": [], + "bloods": [], + "garnisheds": [], + "thoughtful": ["Y", "P"], + "Guerra's": [], + "decorated": [], + "Guinevere's": [], + "beseechingly": [], + "Frankenstein's": [], + "government": ["M", "S"], + "languorous": ["Y"], + "stairway": ["M", "S"], + "documented": ["U"], + "tomtit": ["M", "S"], + "tottereder": [], + "Corvette's": [], + "authors's": [], + "Leander": ["M"], + "marlin'ses": [], + "Kohinoor": ["M"], + "congrats's": [], + "fortifiesen": [], + "Bible'ses": [], + "underground": ["M", "S"], + "Montoya's": [], + "Cayenne's": [], + "Willa's": [], + "Kantian's": [], + "trundlers": [], + "operatingen": [], + "chaseder": [], + "clarity": ["M"], + "sleeker": [], + "Praia": ["M"], + "infinitude": ["M"], + "Lubavitcher": ["M"], + "corp": [], + "mayo's": [], + "walkouts": [], + "sir's": [], + "Joan's": [], + "battlement's": [], + "speakerphones": [], + "themes": [], + "misfire's": [], + "tailwind": ["S", "M"], + "competency": ["I", "M"], + "analysis's": [], + "retro": ["M", "S"], + "coninform": [], + "visitor's": [], + "railwayman": [], + "avouches": [], + "cussedly": [], + "reception's": [], + "calming's": [], + "gutlessness's": [], + "guitarists": [], + "telltales's": [], + "espousing": [], + "stupidities": [], + "sham's": [], + "repetitive": ["Y", "P"], + "dirty": ["D", "R", "S", "T", "G", "P"], + "bandage'sing": [], + "resplendence's": [], + "burlesquinged": [], + "Candice": ["M"], + "gumboot": ["S"], + "remodeling": [], + "speedboat": ["S", "M"], + "hayrick'ses": [], + "grimness": ["M"], + "brow": ["M", "S"], + "coachwork": [], + "pranging": [], + "Berkshire's": [], + "squalling's": [], + "cygnets": [], + "committal's": [], + "putt'sed": [], + "saliently": [], + "jarring": ["Y"], + "rummy's": [], + "woodcuts's": [], + "transistor": ["S", "M"], + "monthlies's": [], + "workbook'ses": [], + "reason's": [], + "whistles": [], + "biennium": ["M", "S"], + "underselling": [], + "waggles": [], + "headteacher": ["S"], + "fetteringed": [], + "napoleons": [], + "oiks": [], + "employee": ["S", "M"], + "significant": ["I", "Y"], + "waxy": ["R", "P", "T"], + "chocolate's": [], + "adages": [], + "congaeding": [], + "soprano's": [], + "sacs": [], + "prematurely": [], + "supposedly": [], + "reconcilinged": [], + "polyunsaturate": ["D", "S"], + "Requiem'ses": [], + "subsidizes": [], + "bevvy": ["S"], + "lightning's": [], + "mayo": ["M"], + "klutzes": [], + "advertises": [], + "hydrous": [], + "sunnier": [], + "Houston": ["M"], + "widest": [], + "staves": [], + "energizinged": [], + "morgue": ["M", "S"], + "sellotaping": [], + "UK": ["M"], + "inglenook's": [], + "proforma": [], + "legions": [], + "blooding's": [], + "quarried": [], + "whiteness's": [], + "operationally": [], + "virtuous": ["Y", "P"], + "Eldon": ["M"], + "responsiveliness": [], + "tenaciously": [], + "ultraconservatives's": [], + "wag'sed": [], + "nonpayment's": [], + "haggis'ses": [], + "skulking": [], + "bloggers": [], + "punch's": [], + "stampersing": [], + "navigatesing": [], + "equips": [], + "girt'sed": [], + "physicians's": [], + "farina": ["M"], + "collegians": [], + "babyinged": [], + "harpoon's": [], + "impedance": ["M"], + "urge": ["M", "G", "D", "S"], + "colitis's": [], + "pebble": ["M", "G", "D", "S"], + "vice'ses": [], + "treatments": [], + "titivating": [], + "scripture'ses": [], + "civilizing": [], + "intuits": [], + "bitch'sed": [], + "Provencal'ses": [], + "copping": [], + "Boston's": [], + "hypertension": ["M"], + "centennially": [], + "foreseeable": ["U"], + "venom": ["M"], + "abutment's": [], + "ruder": [], + "museums": [], + "MRI": ["M"], + "chiselersing": [], + "accepteds": [], + "dogmas's": [], + "keypuncher's": [], + "outlandishness": ["M"], + "preclusion's": [], + "perfectionists": [], + "egocentric": ["M", "S"], + "stogies": [], + "skincare": ["M"], + "morbidly": [], + "midair's": [], + "deals": [], + "feuded": [], + "coevals": [], + "elatesing": [], + "assimilates": [], + "picnic": ["M", "S"], + "explosively": [], + "thrillers": [], + "juiciness": ["M"], + "catted": [], + "spank": ["S", "M", "D", "G", "J"], + "pentathlete's": [], + "starkers": [], + "sequestered": [], + "beating": ["M"], + "pivotal": [], + "Camoens": ["M"], + "beginner": ["S", "M"], + "hospital's": [], + "huffsing": [], + "susceptibility": ["S", "M"], + "kapok's": [], + "showplace's": [], + "cupping": [], + "wiretapper": ["S", "M"], + "rheumatic's": [], + "shoo": ["G", "D", "S"], + "joys": [], + "skating": ["M"], + "greengrocer's": [], + "jeez": [], + "escrows's": [], + "Lelia": ["M"], + "inverts's": [], + "opportunist's": [], + "titillation's": [], + "Weinberg": ["M"], + "Cruikshank": ["M"], + "fatherly": [], + "circumnavigation's": [], + "concertmaster'ses": [], + "slipperiness": ["M"], + "nasals": [], + "rigors": [], + "distinctive": ["Y", "P"], + "maul's": [], + "ruffles": [], + "gab": ["S", "M"], + "cheer": ["Z", "G", "M", "D", "R", "S"], + "misidentifies": [], + "Phyllis's": [], + "isosceles": [], + "eaglets": [], + "reassign": [], + "Mays's": [], + "fireplaces's": [], + "waving": [], + "bronzes's": [], + "instating": [], + "Root": ["M"], + "pretension": ["M"], + "verbenas": [], + "ice's": [], + "hobnail": ["S", "G", "M", "D"], + "Hg": ["M"], + "interloping": [], + "signpost's": [], + "Stevie": ["M"], + "barrettes": [], + "dredgers": [], + "bulimarexia's": [], + "microwave'sing": [], + "siphons": [], + "halftime": ["M", "S"], + "Colleen": ["M"], + "Mississippian": ["S", "M"], + "Byrd's": [], + "Khmer": ["M"], + "magazine's": [], + "emoting": [], + "coffeemaker": ["S", "M"], + "shift'sed": [], + "super": ["M"], + "neologisms": [], + "Paterson": ["M"], + "clattering's": [], + "downer's": [], + "pally": [], + "crumbs's": [], + "sweetbrier": ["S", "M"], + "westernize": ["G", "D", "S"], + "lotus'ses": [], + "timeserver": ["S", "M"], + "educator'ses": [], + "frozen": ["U", "A"], + "bejewelsed": [], + "dissembler": ["M"], + "meditates": [], + "mousse'sing": [], + "quarterdeck'ses": [], + "castrated": [], + "car'sed": [], + "cheekbones's": [], + "competitor's": [], + "upwind": [], + "prizefighting's": [], + "skirted": [], + "whines's": [], + "wrestler": ["M"], + "cl": [], + "dropped": [], + "breath'sed": [], + "Hatsheput's": [], + "plotters's": [], + "gusher's": [], + "myopically": [], + "judgmental": ["Y"], + "Garfunkel's": [], + "gullies's": [], + "Hazlitt's": [], + "overfly": ["G", "S"], + "mussesing": [], + "conjugations": [], + "sideline's": [], + "sunniness's": [], + "bide": ["S"], + "congests": [], + "faultlessnessly": [], + "revelings": [], + "barbering's": [], + "parade's": [], + "weeny": [], + "Estella": ["M"], + "scatterings": [], + "Yuma": ["S", "M"], + "biosensor": ["S"], + "contraption": ["S", "M"], + "jets's": [], + "solitaire's": [], + "peony": ["S", "M"], + "yellowhammer": ["S"], + "sleepers": [], + "underestimated": [], + "erase": ["D", "R", "S", "B", "Z", "G"], + "tonguinged": [], + "wrangled": [], + "pudginess's": [], + "boner's": [], + "clew": ["S", "G", "M", "D"], + "gunnel'ses": [], + "stuttereder": [], + "Aesculapius's": [], + "lithographer": ["M"], + "bullheadedly": [], + "clearings": [], + "aseptically": [], + "quintessence": ["S", "M"], + "musketeer'ses": [], + "gulfs": [], + "welder": ["M"], + "manatee": ["S", "M"], + "shambolic": [], + "molt": ["M", "D", "N", "R", "S", "Z", "G"], + "uprearings": [], + "firefighting's": [], + "travelsers": [], + "rooster's": [], + "homelinesser": [], + "Afrikaners's": [], + "prestos's": [], + "astronautics": ["M"], + "pianist": ["M", "S"], + "tiebreaker": ["M"], + "occasioned": [], + "Marvin's": [], + "recorder": ["M", "S"], + "brightener": ["M"], + "pettifoggers's": [], + "hysterectomies": [], + "Rocco": ["M"], + "featherbedding's": [], + "potpourri": ["S", "M"], + "SQL": [], + "alphabetizer's": [], + "survivalist's": [], + "tenuousness": ["M"], + "membrane's": [], + "nationwide": [], + "lunges's": [], + "lawnmower's": [], + "lexicon's": [], + "intrude": ["D", "R", "S", "Z", "G"], + "molding's": [], + "derenominate": [], + "Gide's": [], + "casaba'ses": [], + "conveyors": [], + "sweepings": ["M"], + "boom's": [], + "steroid's": [], + "injureder": [], + "Hammerstein": ["M"], + "staplers": [], + "vociferate": ["D", "S", "G", "N"], + "Lepidus": ["M"], + "diva's": [], + "scanting": [], + "chatline": ["S"], + "avengeder": [], + "humanization's": [], + "owing": [], + "creditsable": [], + "dutifulness's": [], + "folktales": [], + "sadness": ["M"], + "filing": [], + "beds's": [], + "Catawba": ["M"], + "suitability": ["U", "M"], + "processeds": [], + "squealing's": [], + "joists's": [], + "wristwatch'ses": [], + "pupates": [], + "emendation'ses": [], + "Analects": ["M"], + "Weeks": ["M"], + "gamekeeper's": [], + "misstated": [], + "posterity": ["M"], + "fatherland's": [], + "absurdities's": [], + "Gamay's": [], + "taxed": [], + "houseflies's": [], + "lave": ["S"], + "selenography": ["M"], + "Yolanda": ["M"], + "tangoed": [], + "Queensland": ["M"], + "yesterday's": [], + "extort": ["S", "G", "D"], + "uteri": [], + "transmogrification's": [], + "nettle": ["M", "G", "D", "S"], + "ponced": [], + "fashion'sed": [], + "kinsman": ["M"], + "turbot's": [], + "veiling": [], + "Koch's": [], + "dybbuk's": [], + "sportsmanlike": ["U"], + "croakeding": [], + "Barbie": ["M"], + "cannibalizing": [], + "skeletons's": [], + "Quinn": ["M"], + "mentholated": [], + "dialyses": [], + "mendicancy's": [], + "pressure'sing": [], + "bespeaks": [], + "headscarf": [], + "leafleted": [], + "elastic'ses": [], + "Nisan's": [], + "overbalancing": [], + "interdependence's": [], + "mapper": ["M", "S"], + "outdrew": [], + "melodic": [], + "walloped": [], + "encapsulates": [], + "oxidizersing": [], + "inconceivably": [], + "infidel": ["M", "S"], + "superscript's": [], + "coercion": ["M"], + "Szilard": ["M"], + "shears": [], + "Alston's": [], + "bleakerly": [], + "cashier": ["G", "S", "M", "D"], + "lashed": [], + "outspreading": [], + "nits": [], + "completions": [], + "drainage's": [], + "Noble": ["M"], + "portico": ["M"], + "horizontal": ["S", "M", "Y"], + "spirochetes": [], + "Qingdao": ["M"], + "facilitated": [], + "wobbling": [], + "unspeakable": [], + "paralyzesing": [], + "Islamic": ["M"], + "movable's": [], + "mollycoddling": [], + "fashionable": ["U"], + "differentiating": [], + "umpiring": [], + "purling's": [], + "nineties": [], + "interpreter": ["M", "S"], + "angora": ["M", "S"], + "landers": [], + "overextendeding": [], + "vitals": ["M"], + "carryinged": [], + "importingable": [], + "bud's": [], + "prickliness's": [], + "outstandingly": [], + "merry": ["T", "R", "P"], + "seraglios": [], + "instructeding": [], + "madrassa": ["S", "M"], + "hewings": [], + "Woolite": ["M"], + "hearingses": [], + "pixie": ["M", "S"], + "shaker's": [], + "perksing": [], + "fling": ["G", "M"], + "chapeaus": [], + "curdled": [], + "overburden": ["G", "S", "D"], + "keenness's": [], + "prosthetic": [], + "torching's": [], + "switch": ["M", "D", "R", "S", "Z", "G", "B"], + "swing'ser": [], + "immolatesing": [], + "awningses": [], + "waterholes": [], + "serpentine's": [], + "stodginess's": [], + "overdressing": [], + "weightlifting": ["M"], + "rainfalls's": [], + "doublet's": [], + "potsherd": ["S", "M"], + "winkling": [], + "pelleting's": [], + "rowsers": [], + "tapeworm'ses": [], + "buck": ["M", "D", "G", "S"], + "ancillary's": [], + "bull": ["M", "D", "G", "S"], + "propagandist'ses": [], + "gnome": ["S", "M"], + "BS's": [], + "remiss": ["P", "Y"], + "pledges's": [], + "growl's": [], + "competency's": [], + "frothiest": [], + "assurance's": [], + "complainerers": [], + "flock": ["S", "M", "D", "G"], + "tunic's": [], + "symptom'ses": [], + "Edwards's": [], + "teacup": ["M", "S"], + "pledge'sing": [], + "pokey": ["M", "S"], + "settee'ses": [], + "organically": ["I"], + "recombine": [], + "Guinea's": [], + "antimissile": [], + "trucking": ["M"], + "Jacobite's": [], + "disresolution's": [], + "carpooleding": [], + "Galileans's": [], + "emulsion'ses": [], + "aerator": ["S", "M"], + "paradox'ses": [], + "crabbers's": [], + "beaching": [], + "reliever's": [], + "strewth": [], + "christian": ["U"], + "gentlewomen": [], + "barrio's": [], + "bronchitic": [], + "Bodhidharma": ["M"], + "slasher": ["M"], + "cliff'ses": [], + "brigade": ["S", "M"], + "Golconda's": [], + "treatment": ["M", "S"], + "badmouth": ["G", "D"], + "modernity": ["M"], + "parquet'sed": [], + "Pawnee's": [], + "asphyxiated": [], + "shrewd": ["R", "Y", "P", "T"], + "goshawk": ["M", "S"], + "fused": [], + "molten": [], + "capitalism": ["M"], + "forge'sers": [], + "blowfly": ["S", "M"], + "likableness's": [], + "Dumbledore": ["M"], + "flybys": [], + "taco": ["M", "S"], + "insertings": [], + "everglades": [], + "misjudgment": ["S", "M"], + "sagging": [], + "capsizesing": [], + "knucklehead": ["M", "S"], + "oafishly": [], + "corkscrewed": [], + "shamefulness's": [], + "effects's": [], + "obliterateds": [], + "solicitousnessly": [], + "callback": ["M", "S"], + "yard'ses": [], + "wageder": [], + "traditionally": [], + "Hermes's": [], + "flagellating": [], + "spiritualism's": [], + "shout'sed": [], + "negativism's": [], + "gesture's": [], + "libeling": [], + "chaffinch": ["M", "S"], + "takeovers's": [], + "Terrie": ["M"], + "rankness": ["M"], + "butterfingered": [], + "faints": [], + "forbade": [], + "recolonization": [], + "futurology's": [], + "Uris": ["M"], + "primp": ["D", "S", "G"], + "notations": [], + "autoclaves": [], + "gloating": ["Y"], + "expert'sly": [], + "crusts": [], + "entanglements": [], + "baccalaureate": ["S", "M"], + "swaths": [], + "delectation's": [], + "Oz's": [], + "Jinny's": [], + "murmureder": [], + "cleansed": [], + "singing": ["M"], + "encyclopedia": ["M", "S"], + "nurses": [], + "trilby": ["S", "M"], + "pentagrams": [], + "instinct'ses": [], + "transgressing": [], + "scatterbrain's": [], + "nursemaids": [], + "rcpt": [], + "fox": ["G", "M", "D", "S"], + "resoled": [], + "inroad": [], + "trivet's": [], + "lackeds": [], + "pirouetted": [], + "glueds": [], + "Byzantines": [], + "swash": ["G", "M", "D", "S"], + "signalized": [], + "theorize": ["D", "S", "G"], + "mocked": [], + "lineup'ses": [], + "emolument": ["M", "S"], + "yaps": [], + "Churriguera": ["M"], + "renovationsing": [], + "tours": [], + "unifieds": [], + "Tamra's": [], + "outsourcing's": [], + "refrigerator'ses": [], + "Demosthenes's": [], + "flour": ["S", "M", "D", "G"], + "amorally": [], + "Hellenistic": ["M"], + "resulted": [], + "sweeping's": [], + "boringly": [], + "felt": ["M", "D", "G", "S"], + "Mormonism's": [], + "caricatures": [], + "rehearsinged": [], + "Haiphong's": [], + "hippodromes's": [], + "Colin's": [], + "yields": [], + "disreunite": [], + "appraisals": [], + "Gienah": ["M"], + "sandalwood's": [], + "spongecake": ["M"], + "hammereder": [], + "firebrick": ["S", "M"], + "reimbursingment": [], + "bloodstreams": [], + "warred": [], + "robot's": [], + "overwintering": [], + "strangled": [], + "dented": [], + "minims's": [], + "FICA's": [], + "bunting's": [], + "Durban's": [], + "Beveridge": [], + "poised": [], + "electroencephalogram": ["M", "S"], + "parses": [], + "Cordoba": ["M"], + "bickerings": [], + "socials": [], + "Hyperion's": [], + "coat'sed": [], + "sundown": ["S", "M"], + "imposer's": [], + "litterbug'ses": [], + "chits": [], + "professorships": [], + "meows": [], + "Dover": ["M"], + "Urey's": [], + "smirkeding": [], + "untidily": [], + "forgathering": [], + "Barbara": ["M"], + "edifiersing": [], + "initiating": [], + "defrauded": [], + "Afghanistan's": [], + "stillborn": [], + "Walker's": [], + "revelation": ["S", "M"], + "lingual": [], + "triumph'sed": [], + "poured": [], + "stockpots's": [], + "keynoting": [], + "twirling": [], + "Oedipus's": [], + "Dons's": [], + "cannabis'ses": [], + "saliva's": [], + "LCD": ["M"], + "Fellini's": [], + "crewings": [], + "sledders": [], + "providersing": [], + "postmistress": ["M", "S"], + "subdivideds": [], + "peaty": ["T", "R"], + "asylum's": [], + "attentiveness": ["I", "M"], + "mouths": [], + "indignant": ["Y"], + "hairdressing": ["M"], + "overcompensateds": [], + "sweatshirts's": [], + "torturous": [], + "millions's": [], + "Saarinen": ["M"], + "gasps": [], + "dodo's": [], + "subsisteding": [], + "fathered": [], + "peeve": ["D", "S", "M", "G"], + "waterbird's": [], + "gimmick's": [], + "hardly": [], + "drones": [], + "padlocksing": [], + "midpoints": [], + "ferries's": [], + "storybook": ["S", "M"], + "Mumford's": [], + "landlord": ["M", "S"], + "scoundrel": ["M", "S"], + "abortion": ["M", "S"], + "elaboratelying": [], + "savory": ["P", "T", "R", "S", "M"], + "frights": [], + "gumboots": [], + "rolled": [], + "willfulness's": [], + "respelled": [], + "reenactment": [], + "roundliers": [], + "obtainment's": [], + "fronds": [], + "horticulturalist": ["S"], + "attacking's": [], + "oscillation's": [], + "pheasant's": [], + "oceanography": ["M"], + "supra": [], + "proficiently": [], + "humbles": [], + "cyberpunks's": [], + "Leno": ["M"], + "schisms's": [], + "curve": ["D", "S", "M", "G"], + "artisan's": [], + "reteachings": [], + "thicko": ["S"], + "Superior's": [], + "bawd's": [], + "skedaddling": [], + "singleton's": [], + "chalet'ses": [], + "agitprop": ["M"], + "uncrowned": [], + "suckle": ["D", "S", "J", "G"], + "unreliability": [], + "dyspepsia's": [], + "briskly": [], + "Wasatch's": [], + "vales": [], + "psychoneurosis": ["M"], + "retrievingable": [], + "footnoting": [], + "nattereds": [], + "inseparable": ["M", "S"], + "fisherman's": [], + "taxonomies's": [], + "wanderings's": [], + "speakingings": [], + "haggle'sers": [], + "deducible": [], + "quiets's": [], + "schooner's": [], + "postponed": [], + "rehear": [], + "accountable": ["U"], + "screenwriter": ["S", "M"], + "wheelchair": ["S", "M"], + "cameo's": [], + "undercharging": [], + "feedsings": [], + "lithography": ["M"], + "molester's": [], + "monotonously": [], + "Caucasian": ["M", "S"], + "Zyrtec": ["M"], + "peddlinged": [], + "seducesers": [], + "gofers's": [], + "wadded": [], + "greengrocers": [], + "hardstands": [], + "participation": ["M"], + "peon'ses": [], + "news": ["M"], + "workbasket": ["S"], + "Hayden": ["M"], + "ransomeder": [], + "gramophones": [], + "disobedience": [], + "irrigates": [], + "Catullus's": [], + "oxides": [], + "nonchalance": ["M"], + "librarian'ses": [], + "backrooms": [], + "marginalization's": [], + "rots's": [], + "charming": ["Y"], + "colts": [], + "Snapple": ["M"], + "hobble's": [], + "superimposes": [], + "glide": ["D", "R", "S", "M", "Z", "G"], + "asocial": [], + "sabotaged": [], + "heroism's": [], + "fireproofs": [], + "manacling": [], + "milliners": [], + "haunts's": [], + "crumbliest": [], + "politicos's": [], + "pileup": ["M", "S"], + "brutishness": ["M"], + "immaturity": ["M"], + "accentuates": [], + "Buddhisms": [], + "orchestrations": [], + "Julianne": ["M"], + "galvanizes": [], + "reattachment": [], + "pretrial": ["S"], + "repainted": [], + "indictments's": [], + "handclasp": ["M", "S"], + "oculist's": [], + "leukocyte's": [], + "smack": ["S", "M", "D", "R", "Z", "G"], + "outwork's": [], + "pariah": ["M"], + "embroiderers": [], + "booth's": [], + "wingding": ["M", "S"], + "uncleanly": ["T"], + "blued": [], + "heartless": ["P", "Y"], + "chanted": [], + "tortoni's": [], + "lockup's": [], + "resuscitationed": [], + "Sonora": ["M"], + "train'sed": [], + "cropper": ["M", "S"], + "Saudis": [], + "Rosecrans": ["M"], + "antipathy's": [], + "potholder'ses": [], + "mispronunciations's": [], + "immigrants's": [], + "archivist'ses": [], + "chauffeur's": [], + "marathon's": [], + "prize's": [], + "impiety": ["S", "M"], + "googles's": [], + "frequent": ["D", "R", "Y", "S", "Z", "T", "G"], + "glowed": [], + "prevarication's": [], + "oregano's": [], + "dossier'ses": [], + "nineteenths": [], + "Somme": ["M"], + "Chumash": ["M"], + "dumber": [], + "trilobite's": [], + "sedgy": [], + "dooryard'ses": [], + "sots": [], + "goddess": ["M", "S"], + "compoundedable": [], + "canters": [], + "jiggleds": [], + "major'sed": [], + "courgette": ["S"], + "secularism's": [], + "unplugging": [], + "treble": ["M", "G", "D", "S"], + "Monique's": [], + "espousal's": [], + "knothole's": [], + "beatificationsen": [], + "quantities": [], + "harpeding": [], + "transgression": ["S", "M"], + "intervals": [], + "fortes's": [], + "jazzier": [], + "hygienically": [], + "bounteousness's": [], + "landslide's": [], + "brakeman's": [], + "rustic": ["S", "M"], + "geocacheds": [], + "budding": ["S"], + "smartphone's": [], + "Banks's": [], + "cogitations": [], + "usefulness's": [], + "wolverines": [], + "shameless": ["Y", "P"], + "evolves": [], + "interacting": [], + "speedboat's": [], + "bootee": ["M", "S"], + "infamy": ["S", "M"], + "bonkinged": [], + "splint'sed": [], + "ledge's": [], + "keyed": [], + "crescent": ["M", "S"], + "teacupful's": [], + "floggers": [], + "tachometers": [], + "unsuspecting": ["Y"], + "Wisc": [], + "Hg's": [], + "membranes": [], + "Saxony's": [], + "dipsomaniac's": [], + "pigtail's": [], + "eludeds": [], + "humanitarian'ses": [], + "coverlet": ["M", "S"], + "Sargent's": [], + "reciprocally": [], + "sentimentalist": ["M", "S"], + "deserve": [], + "shooter's": [], + "sound's": [], + "testatrices": [], + "snooty": ["P", "T", "R"], + "Norse's": [], + "tureen": ["S", "M"], + "handyman's": [], + "syllabic": [], + "gobs's": [], + "Eniwetok": ["M"], + "hales": [], + "fanny": ["S", "M"], + "rocking": [], + "dogfights": [], + "Prudential": ["M"], + "paralleled": ["U"], + "inheritance's": [], + "unisex": ["M"], + "reverends": [], + "blooded": [], + "Helga": ["M"], + "abjureder": [], + "tropism": ["S", "M"], + "Walloon": ["M"], + "joy'sed": [], + "lifts": [], + "scribe": ["C", "K", "I", "S"], + "accelerateds": [], + "gynecologists's": [], + "patching's": [], + "swashed": [], + "sugarplum": ["M", "S"], + "bail's": [], + "mire": ["M", "G", "D", "S"], + "chime": ["M", "Z", "G", "D", "R", "S"], + "requisite": ["X", "M", "N", "S"], + "maximally": [], + "statehouse'ses": [], + "dedicator": ["S", "M"], + "ashing": [], + "sumptuously": [], + "spathe's": [], + "wagerer": ["M"], + "hysteria's": [], + "backbenches": [], + "patsy's": [], + "Santayana": ["M"], + "Haiti's": [], + "Manilas": [], + "Marcy's": [], + "elusiveness": ["M"], + "xerox": ["M", "D", "S", "G"], + "abruptness": ["M"], + "providesers": [], + "Harlem's": [], + "breeze": ["D", "S", "M", "G"], + "Heaviside's": [], + "buzzers": [], + "affectations's": [], + "quadruplicatingen": [], + "sapwood's": [], + "chief'ser": [], + "cement": ["M", "D", "R", "Z", "G", "S"], + "Cross's": [], + "plate": ["M", "S"], + "presetting": [], + "hucksters": [], + "Athene's": [], + "torturer's": [], + "docudrama's": [], + "prohibitionist": ["M", "S"], + "coarseneding": [], + "equines": [], + "blandishing": [], + "subsisted": [], + "novelizes": [], + "penultimate's": [], + "whelps's": [], + "oversampling": [], + "operate": ["D", "S", "G", "N", "V", "X"], + "popped": [], + "merged": [], + "condensing": [], + "swooshing": [], + "electrifyingen": [], + "rejected": [], + "gravestone's": [], + "aggrieving": [], + "westernizinged": [], + "behalf's": [], + "jardiniere's": [], + "allusiveness's": [], + "underhanded": ["P", "Y"], + "phosphorylation": [], + "inaugurals": [], + "brighterly": [], + "conjurersing": [], + "tomorrow'ses": [], + "wigwag": ["S", "M"], + "Eurasian": ["M", "S"], + "lacewing's": [], + "reprehends": [], + "punchersing": [], + "pimplies": [], + "Brazilian": ["M", "S"], + "mandateds": [], + "aureus": [], + "thriftless": [], + "clarion'sed": [], + "bookcases": [], + "subordinatingen": [], + "deathtrap": ["M", "S"], + "Bangladesh's": [], + "Carson's": [], + "picket'sed": [], + "hockshop'ses": [], + "absorbent": ["S", "M"], + "whorish": [], + "seaboards's": [], + "HSBC's": [], + "faithlessness's": [], + "trust": ["E", "S", "G", "M", "D"], + "venireman's": [], + "muffles": [], + "shirtfronts": [], + "punk's": [], + "peahen'ses": [], + "towhead's": [], + "econ": [], + "earthworks": [], + "unknowing": [], + "unquietest": [], + "Altai's": [], + "corrosives": [], + "kingship's": [], + "Northampton": ["M"], + "thrill'sed": [], + "scoop's": [], + "individualist": ["M", "S"], + "Brutus's": [], + "brilliance": ["M"], + "domineeringly": [], + "drunkener": [], + "basal": ["Y"], + "flowery": ["P", "T", "R"], + "harried": [], + "bloop'sed": [], + "Keokuk's": [], + "Hatsheput": ["M"], + "forthcoming's": [], + "lock'sed": [], + "Honshu's": [], + "Buddhist": ["S", "M"], + "melon": ["S", "M"], + "shrewder": [], + "interloped": [], + "bilksers": [], + "appendages": [], + "game'sly": [], + "competing": [], + "sensualists": [], + "tariff": ["M", "S"], + "impede": ["D", "S", "G"], + "defecate": ["G", "N", "D", "S"], + "dirtball": ["S"], + "Rodin's": [], + "liberally": [], + "radiotelegraphy's": [], + "attendees's": [], + "philosophizer": ["M"], + "destination": ["S", "M"], + "conflateds": [], + "eagerer": [], + "chargesed": [], + "wino'ses": [], + "rethinks": [], + "soggiest": [], + "belays": [], + "titillate": ["D", "S", "G", "N"], + "disbarred": [], + "Diaspora'ses": [], + "halfhearted": ["P", "Y"], + "animates": [], + "aids's": [], + "mentored": [], + "lilac": ["S", "M"], + "richest": [], + "desperateness's": [], + "wheedler": ["M"], + "initiate's": [], + "markdown": ["S", "M"], + "lsed": [], + "CCU": [], + "coolers": [], + "hashtags": [], + "arctic'ses": [], + "pall's": [], + "nanny's": [], + "ember": ["S", "M"], + "gangplanks's": [], + "securities's": [], + "hermitages": [], + "Rilke": ["M"], + "staple": ["D", "R", "S", "M", "Z", "G"], + "Thessalonians's": [], + "leftward": ["S"], + "Connie": ["M"], + "bedevileds": [], + "warmerly": [], + "promenades": [], + "USSR": ["M"], + "headline": ["M", "Z", "G", "D", "R", "S"], + "tightrope'ses": [], + "enforcement": ["M"], + "veranda's": [], + "technologist's": [], + "Pizarro's": [], + "proofreaders": [], + "decapitate": ["X", "G", "N", "D", "S"], + "arteries": [], + "brazened": [], + "citric": [], + "buzzwords": [], + "crypts": [], + "solders's": [], + "bugbear": ["S", "M"], + "prelims's": [], + "arrangements's": [], + "fishierness": [], + "comparativelies": [], + "recreate": [], + "trapezes's": [], + "biospheres's": [], + "serializes": [], + "bullet's": [], + "darer's": [], + "Ndjamena": ["M"], + "Aral's": [], + "archdiocese's": [], + "alohas": [], + "feaster": ["M"], + "antivenom": [], + "geophysical": [], + "larking": [], + "boater": ["M"], + "libertines": [], + "tilt'sed": [], + "Parsifal": ["M"], + "grasps": [], + "Dotson": ["M"], + "committees": [], + "Eleanor's": [], + "inescapably": [], + "wolfram": ["M"], + "astronomy": ["M"], + "vibrated": [], + "explored": ["U"], + "fueleding": [], + "inoculation'ses": [], + "joshed": [], + "FBI's": [], + "blockinged": [], + "bereaved": [], + "snick": ["S", "D", "R", "Z", "G"], + "blackballed": [], + "Boyer's": [], + "doughy": ["T", "R"], + "tubeless": ["M"], + "monstrance's": [], + "pallet": ["M", "S"], + "rapprochement's": [], + "morass": ["M", "S"], + "minnow's": [], + "rap's": [], + "pyrimidine's": [], + "correct": ["D", "R", "Y", "T", "G", "V", "S", "B", "P"], + "TELNETs": [], + "nondeductible's": [], + "manumitted": [], + "elevation's": [], + "Disneyland": ["M"], + "brutalize": ["G", "D", "S"], + "louver": ["M", "D", "S"], + "Rochelle's": [], + "serpentine": ["M"], + "checkpoint": ["S", "M"], + "overawing": [], + "unbendsing": [], + "joltsers": [], + "underestimate'sing": [], + "foxiness": ["M"], + "countermoves": [], + "curates's": [], + "necromancy's": [], + "primitively": [], + "feed": ["M", "R", "Z", "G", "S", "J"], + "mode": ["M", "S"], + "kilocycles's": [], + "axolotls": [], + "hotcake": ["S", "M"], + "chateau": ["S", "M"], + "laundrymen": [], + "Godunov": ["M"], + "fantasists": [], + "masterpieces": [], + "Tiffany": ["M"], + "slumlord's": [], + "islander": ["M"], + "Benson's": [], + "mile": ["M", "S"], + "incinerate": ["D", "S", "G", "N"], + "protectorate'ses": [], + "scratching's": [], + "Harare": ["M"], + "assigner'ses": [], + "relining": [], + "recruiter": ["M"], + "advice": ["M"], + "taximeter's": [], + "probationers's": [], + "odorous": [], + "banality": ["S", "M"], + "workload's": [], + "fishiest": [], + "unreformed": [], + "O's": [], + "postmodernism's": [], + "boga": [], + "visitant's": [], + "Mack": ["M"], + "overmastered": [], + "destroysers": [], + "humane": ["P", "Y"], + "Yeats": ["M"], + "glassier": [], + "ruble": ["S", "M"], + "Ethelred's": [], + "hunky": ["R", "T"], + "rehab": ["M", "S"], + "asexuality's": [], + "Pepsi": ["M"], + "overfeeds": [], + "provides": [], + "crew's": [], + "lassitude": ["M"], + "lasciviousness": ["M"], + "squirmiest": [], + "Arkwright": ["M"], + "impatiently": [], + "imparting": [], + "paramedical": ["M", "S"], + "attendance": ["S", "M"], + "designatesing": [], + "Rangoon's": [], + "Uruguayan'ses": [], + "permeate": ["G", "N", "D", "S"], + "high": ["M", "R", "Y", "Z", "T", "P"], + "banquet'sed": [], + "restructuring's": [], + "hollow'sed": [], + "misspelledings": [], + "Liverpudlians": [], + "sportsman's": [], + "airdrome": ["S"], + "routerers": [], + "auction's": [], + "Harare's": [], + "immigrates": [], + "Loews's": [], + "tortellini": ["M"], + "frailer": [], + "fatherless": [], + "leavingings": [], + "semiotics": ["M"], + "bombproof": [], + "station": ["M", "D", "R", "Z", "G"], + "fairness's": [], + "docs": [], + "valet'sed": [], + "Ottoman": ["M"], + "Rosalind": ["M"], + "turneder": [], + "integer": ["M", "S"], + "oversupplyinged": [], + "heirloom": ["S", "M"], + "catchment's": [], + "procreative": [], + "loonier": [], + "China": ["M"], + "pyrotechnics": ["M"], + "uploadeding": [], + "Malthusian's": [], + "slaughtererers": [], + "airfields's": [], + "impetus's": [], + "dazzlingly": [], + "limousine'ses": [], + "riptides": [], + "iodide": ["S", "M"], + "hurled": [], + "giggling": [], + "kraal's": [], + "burliness's": [], + "schmoozesers": [], + "ladyfinger": ["M", "S"], + "ferrules": [], + "predestined": [], + "bilges": [], + "Mount's": [], + "Dido": ["M"], + "salacity's": [], + "typesetter'ses": [], + "ufologists": [], + "busby": ["S", "M"], + "hoodlums": [], + "ethnologists's": [], + "May's": [], + "caldera's": [], + "prostituteds": [], + "Gwyn's": [], + "marginalia": ["M"], + "bushwhacks": [], + "its's": [], + "renegesers": [], + "exotica": [], + "tarpaulins": [], + "seat": ["U", "G", "D", "S"], + "avouch": ["D", "S", "G"], + "Rowling": ["M"], + "sainted": [], + "projecting's": [], + "swastika": ["S", "M"], + "darteder": [], + "coffining": [], + "busboys's": [], + "mnemonic's": [], + "oozy": ["T", "R"], + "gander": ["S", "M"], + "gallerias": [], + "jackrabbit'ses": [], + "evacuated": [], + "undersign": ["D", "G", "S"], + "inflated": [], + "restraint": ["M", "S"], + "foaled": [], + "poetasters": [], + "rhetorician": ["S", "M"], + "Higgins": ["M"], + "tens": [], + "asylums": [], + "coffins": [], + "photosynthesizes": [], + "hersing": [], + "Drudge's": [], + "longing's": [], + "validations": [], + "exactly": [], + "closeted": [], + "cominger": [], + "twinge": ["D", "S", "M", "G"], + "snottiness": ["M"], + "blasting's": [], + "brigantine": ["M", "S"], + "respect": ["E", "S", "G", "V", "M", "D"], + "accelerators": [], + "Larry's": [], + "Roseann": ["M"], + "hydroxide": ["S", "M"], + "bullfight": ["S", "M", "R", "Z", "G"], + "gaze's": [], + "pharmacology": ["M"], + "apparatus": ["M", "S"], + "splatterings": [], + "Brunhilde's": [], + "adulator'ses": [], + "diocese'ses": [], + "pouted": [], + "KIA": [], + "tag's": [], + "classmate'ses": [], + "headhunts": [], + "trifling": [], + "maturatingen": [], + "priesthood": ["S", "M"], + "denuclearized": [], + "dearness's": [], + "emptiness": ["M"], + "mantelpieces's": [], + "Floridian": ["S", "M"], + "may's": [], + "smear's": [], + "sigmas": [], + "vocatives": [], + "Aureomycin": ["M"], + "ND": [], + "thriveds": [], + "quasar'ses": [], + "musses": [], + "disdainful": ["Y"], + "solemnness's": [], + "minutiae": [], + "potentiates": [], + "restaurateur": ["M", "S"], + "Berlitz's": [], + "elongating": [], + "prompters": [], + "beatifying": [], + "formulation": ["A", "M"], + "postcards's": [], + "normality's": [], + "lairs": [], + "causal": ["Y"], + "wring": ["S", "Z", "G", "M", "R"], + "towheads": [], + "RBI": [], + "prepositions": [], + "Mussolini": ["M"], + "twilight's": [], + "despisesing": [], + "genocide's": [], + "Ukraine": ["M"], + "vaginas": [], + "overpays": [], + "hatchecks": [], + "craggierness": [], + "Scotchwomen": ["M"], + "realness's": [], + "Mickey's": [], + "fives": [], + "councilor's": [], + "debenture": ["M", "S"], + "dab's": [], + "Prius's": [], + "madders": [], + "protocol": ["M", "S"], + "handrails": [], + "manners": [], + "cold": ["M", "R", "Y", "T", "P", "S"], + "sleekness's": [], + "Menuhin": ["M"], + "trolls": [], + "Semtex": ["M"], + "extract's": [], + "tugboat": ["M", "S"], + "effecting": [], + "Jockey": ["M"], + "hulling": [], + "patty's": [], + "countermand": ["G", "M", "D", "S"], + "nuthatch": ["M", "S"], + "Khabarovsk's": [], + "stepbrother": ["S", "M"], + "yearlong": [], + "titmouse": ["M"], + "packaged": [], + "shillings": [], + "altercation's": [], + "placer's": [], + "catechized": [], + "civet's": [], + "subtropical": [], + "Donny": ["M"], + "shattering": [], + "grosbeak'ses": [], + "granitic": [], + "Porsche's": [], + "Finland's": [], + "convergences": [], + "calisthenic": ["S"], + "nightlong": [], + "headier": [], + "fallout's": [], + "bail": ["S", "B", "G", "M", "D"], + "threat's": [], + "productive": ["U", "Y"], + "atomizing": [], + "quadrant": ["M", "S"], + "dopinged": [], + "simpleton's": [], + "wive": ["G", "D", "S"], + "batch": ["M", "D", "S", "G"], + "boor's": [], + "toilsome": [], + "dispersioned": [], + "rill's": [], + "creepinesser": [], + "Bertha": ["M"], + "prank": ["M", "S"], + "buckaroo's": [], + "enlighteningment": [], + "macrophages": [], + "execute": ["B", "X", "G", "N", "V", "D", "S"], + "overdrawing": [], + "mixeder": [], + "Menes": ["M"], + "liturgically": [], + "Bloemfontein": ["M"], + "gasp": ["M", "D", "G", "S"], + "gratuitousness's": [], + "slingshot": ["S", "M"], + "waterfront'ses": [], + "pip'sed": [], + "fencersing": [], + "Corinthian": ["M", "S"], + "Thant's": [], + "Degas's": [], + "purposelessly": [], + "depopulate": [], + "northeaster's": [], + "perfidies": [], + "ejectsed": [], + "overdosinged": [], + "meanings": [], + "declaration's": [], + "evolving": [], + "vise'sing": [], + "activeness": ["M"], + "pressurizers's": [], + "statementens": [], + "spelled": [], + "yuletide": ["M"], + "coltish": [], + "camouflaged": [], + "depolarization": [], + "wading": [], + "sallying": [], + "penitentiaries": [], + "east's": [], + "abandon": ["L", "S", "D", "G"], + "exterminator'ses": [], + "recompute": [], + "deadlines's": [], + "fishwives": [], + "phallocentrism": [], + "shoves": [], + "exercise's": [], + "spearheading's": [], + "hoisting": [], + "attractant'ses": [], + "Canaanites": [], + "bargains": [], + "Beltane's": [], + "vagueness": ["M"], + "intimacies": [], + "outstayings": [], + "wallpaper's": [], + "turnovers": [], + "quays": [], + "ruthenium": ["M"], + "whiskerers": [], + "kickbacks": [], + "hologram": ["M", "S"], + "ridged": [], + "waxen": [], + "regurgitates": [], + "Neal's": [], + "oust": ["Z", "G", "D", "R", "S"], + "mahatmas's": [], + "bellboy": ["S", "M"], + "tenderfoot's": [], + "lampooned": [], + "hymns": [], + "trysted": [], + "piecing": [], + "refulgent": [], + "draftee's": [], + "phototypesetter": [], + "Mogadishu": ["M"], + "deserter": ["M"], + "pier": ["M"], + "Popeye's": [], + "attics": [], + "authoress'ses": [], + "Goolagong's": [], + "public's": [], + "earners": [], + "shallowerly": [], + "insobriety": [], + "toyboys": [], + "Cardin's": [], + "underplayed": [], + "misanthrope": ["S", "M"], + "Londoners": [], + "demeans": [], + "colony": ["S", "M"], + "polyphonic": [], + "jalousies": [], + "pontificateds": [], + "reconquest": [], + "harmonic": ["S", "M"], + "tingleds": [], + "Englishes": [], + "manipulates": [], + "NCAA": ["M"], + "Villarreal": ["M"], + "importuneds": [], + "Procter": ["M"], + "triathlons": [], + "potion's": [], + "consumptive": ["S", "M"], + "nosing": [], + "republic": ["S"], + "dramatizations's": [], + "pouter's": [], + "tutoring": [], + "blackens": [], + "reviewer": [], + "dispensation": ["M", "S"], + "thermostats": [], + "hinderses": [], + "wetback": ["S", "M"], + "gentrifying": [], + "substitute's": [], + "photographeder": [], + "claims": [], + "unclothe": [], + "central": ["S", "M", "Y"], + "safe": ["M", "Y", "T", "P", "R", "S"], + "KFC": ["M"], + "magistrate's": [], + "chutney's": [], + "lariat": ["S", "M"], + "dewy": ["R", "T", "P"], + "cravat": ["S", "M"], + "clod's": [], + "sealsed": [], + "overstretchinged": [], + "sharpened": [], + "Nolan": ["M"], + "slam": ["M", "S"], + "confuse": ["R", "Z"], + "reground": [], + "whims": [], + "expats": [], + "carthorse": ["S", "M"], + "circumstancinged": [], + "overloading's": [], + "voltage'ses": [], + "befalling": [], + "clubhouse": ["S", "M"], + "clownishness's": [], + "introduction": ["A", "M"], + "clientele's": [], + "Whipple's": [], + "affidavits's": [], + "erroneously": [], + "mantelshelf": [], + "rim": ["S", "G", "M", "D"], + "noncom's": [], + "crisscrosses": [], + "noblers": [], + "blusterer": ["M"], + "atone": ["L", "G", "D", "S"], + "Bradley": ["M"], + "hearties's": [], + "cleanup": ["M", "S"], + "goop": ["M"], + "planer": ["M"], + "scraggiest": [], + "interiors's": [], + "zit": ["S", "M"], + "repartee": ["M"], + "elaboratesness": [], + "apprenticed": [], + "customarily": [], + "narrowness": ["M"], + "Mennonite'ses": [], + "tact": ["F", "M"], + "inoculate": ["A", "G", "D", "S"], + "revue": ["M", "S"], + "gulden's": [], + "protest": [], + "penfriends": [], + "wastefully": [], + "keypunching": [], + "apostrophes": [], + "faultfinders": [], + "cornucopia": ["M", "S"], + "pleadersing": [], + "bodies": [], + "drooleding": [], + "initiate": ["X", "M", "G", "N", "V", "D", "S"], + "peach": ["M", "S"], + "hags's": [], + "peeve'sing": [], + "abscessing": [], + "seemlier": [], + "Joanna": ["M"], + "equine": ["S", "M"], + "crouton": ["M", "S"], + "snooped": [], + "suiting's": [], + "boaters": [], + "Hoyle": ["M"], + "notarial": [], + "breakaway'ses": [], + "congruity": ["I", "S", "M"], + "instatinged": [], + "golf'sed": [], + "congresswomen": [], + "ogling": [], + "forerunner'ses": [], + "attendance's": [], + "blindsidesing": [], + "napes": [], + "ballyhoo's": [], + "winsomerness": [], + "cockleshells": [], + "polluted": ["U"], + "trend": ["G", "S", "M", "D"], + "expectoratesing": [], + "Macias": ["M"], + "disclose": ["D", "S", "G"], + "redeemer's": [], + "bivalves": [], + "legislator": ["M", "S"], + "Decembers's": [], + "guide": ["D", "R", "S", "M", "Z", "G"], + "corn": ["M", "D", "R", "Z", "G", "S"], + "Reformations": [], + "Pequot's": [], + "order'sed": [], + "Heineken's": [], + "intertwined": [], + "overestimate'sing": [], + "waterfront": ["M", "S"], + "prefecture's": [], + "manifestlies": [], + "maximization's": [], + "meritorious": ["P", "Y"], + "piercings": [], + "contractile": [], + "karts": [], + "exemplification": ["M"], + "signinged": [], + "straitjackets": [], + "drugstore'ses": [], + "irateness's": [], + "enfeebleds": [], + "caprices's": [], + "modesty": ["M"], + "dispropose": [], + "denominate": [], + "nets": [], + "toastmasters's": [], + "Tl": ["M"], + "administereding": [], + "compositionsed": [], + "Learjet": ["M"], + "trespass's": [], + "knurling's": [], + "whittlinged": [], + "cacao's": [], + "commandments": [], + "jilt's": [], + "Minnesota": ["M"], + "legate's": [], + "differential": ["S", "M"], + "bookings": [], + "hobbyist": ["S", "M"], + "thrombus": ["M"], + "undesirability": [], + "workday": ["S", "M"], + "yank'sed": [], + "shindigs's": [], + "magics's": [], + "debater's": [], + "Brittanies's": [], + "Agricola's": [], + "Minuit's": [], + "Savage": ["M"], + "finder's": [], + "stencileds": [], + "shooting's": [], + "bodybuilders's": [], + "steamroll": ["Z", "G", "D", "R", "S"], + "cantaloupes": [], + "scriptwriter": ["S", "M"], + "intensifieder": [], + "windsock": ["M", "S"], + "oarlock's": [], + "trainload's": [], + "Michael's": [], + "Unicode": ["M"], + "electrician's": [], + "shavinged": [], + "springiness's": [], + "retrorocket's": [], + "mung": ["D", "S", "G"], + "blacksnakes": [], + "rejoinders": [], + "Chaney": ["M"], + "willies's": [], + "Democritus's": [], + "noodled": [], + "graveside": ["M", "S"], + "gimleted": [], + "rewedding": [], + "reliquary": ["S", "M"], + "bop's": [], + "collier's": [], + "pinprick": ["M", "S"], + "marchersing": [], + "brethren": [], + "drowse": ["M", "G", "D", "S"], + "Rich": ["M"], + "aspidistra'ses": [], + "subtropics": ["M"], + "unzip": [], + "reafforestation": [], + "Assisi": ["M"], + "repeateder": [], + "entertainment": ["M", "S"], + "transmigration": ["M"], + "Maillol's": [], + "Rhodesia": ["M"], + "Pharisee": ["M", "S"], + "crackups": [], + "Trinidadians": [], + "placarding": [], + "unlikeliness": [], + "decreeds": [], + "cantonment": ["M", "S"], + "Limpopo's": [], + "gigawatts's": [], + "turnaround's": [], + "fum": ["S"], + "bloodyinged": [], + "spillages": [], + "kohlrabies": [], + "dispirit": ["G", "D", "S"], + "occultists": [], + "skincare's": [], + "catcher": ["M"], + "wedding": ["S", "M"], + "deselect": [], + "maledictions": [], + "each": [], + "jatos": [], + "rotters": [], + "washtub'ses": [], + "scuttles": [], + "URL": ["S"], + "tweeteding": [], + "dingo": ["M"], + "pooching": [], + "urbane": ["R", "Y", "T"], + "chipolata": ["S"], + "Britisher's": [], + "comeuppances": [], + "ballyhooeding": [], + "theorizing": [], + "magnets": [], + "equably": [], + "mulct's": [], + "firsings": [], + "spoof's": [], + "knocker's": [], + "gash'sed": [], + "lawfulness's": [], + "Updike's": [], + "abasement's": [], + "reckoneding": [], + "reorganize": [], + "pawneds": [], + "meathead'ses": [], + "alleginged": [], + "foggier": [], + "pfennig'ses": [], + "swathes": [], + "flakiest": [], + "misanthropist'ses": [], + "blinking": [], + "interrogates": [], + "flocks": [], + "loofahs": [], + "leafing": [], + "Mojave": ["S", "M"], + "malcontents": [], + "samosas": [], + "flunkeding": [], + "scarabs's": [], + "beefier": [], + "imprint": ["M", "D", "R", "Z", "G", "S"], + "Taine": ["M"], + "cocksucker": ["M", "S", "!"], + "skateboardersing": [], + "consigning": [], + "finalizing": [], + "environmentalism's": [], + "liberal'sly": [], + "Latinos": [], + "steppers": [], + "irked": [], + "rumpled": [], + "outpatients": [], + "centaurs's": [], + "Polly's": [], + "cooperator's": [], + "catheters": [], + "assuage": ["G", "D", "S"], + "conservationists": [], + "dovetailing": [], + "fruitcake's": [], + "thunderstorm": ["S", "M"], + "Tocantins": ["M"], + "salmonella": ["M"], + "bullishness's": [], + "insurance": ["S", "M"], + "everglades's": [], + "stretches": [], + "exegesis": ["M"], + "barbershop'ses": [], + "misquote's": [], + "Espinoza": ["M"], + "tastily": [], + "valiantly": [], + "campaigners": [], + "commands": [], + "heaveder": [], + "killdeer": ["S", "M"], + "tapioca": ["M"], + "encomium": ["M", "S"], + "Bournemouth's": [], + "factotums's": [], + "norm's": [], + "beverage": ["S", "M"], + "bee's": [], + "armrests's": [], + "dateder": [], + "heartbeat's": [], + "Bragg's": [], + "gad": ["S"], + "Anita's": [], + "maisonette's": [], + "Jared": ["M"], + "upheavals": [], + "Tianjin": ["M"], + "aftermarket's": [], + "discountenance": [], + "winging": [], + "ambling": [], + "contemporaneous": ["Y"], + "exercise'sers": [], + "enhancing": [], + "cradle": ["D", "S", "M", "G"], + "gobbleder": [], + "overrule": ["G", "D", "S"], + "upthrusts": [], + "heatwaves": [], + "preconceivinged": [], + "Wilsonian's": [], + "beeriest": [], + "babblinged": [], + "breastfeed": ["G", "S"], + "neighborliness's": [], + "dickheads": [], + "AD": ["M"], + "apposeds": [], + "emanate": ["X", "D", "S", "G", "N"], + "Moody's": [], + "hyperlinked": [], + "stiffing": [], + "distillates's": [], + "Denver": ["M"], + "Mn": ["M"], + "assaults": [], + "hostess'sed": [], + "Capricorns": [], + "sputum's": [], + "carbonized": [], + "webcasts": [], + "rulingings": [], + "downpours": [], + "contentions": [], + "benefactress": ["M", "S"], + "consignsed": [], + "savories's": [], + "Lipscomb's": [], + "overbooks": [], + "kernels's": [], + "clearinghouses's": [], + "expatriation's": [], + "memorandum": ["M", "S"], + "wrought": [], + "sideshow's": [], + "subtlety's": [], + "castigators's": [], + "wrangleder": [], + "change's": [], + "stammering": ["Y"], + "Phoenix's": [], + "militiaman": ["M"], + "besides": [], + "touchstone's": [], + "unanswered": [], + "Calliope's": [], + "theologians": [], + "shuddering": [], + "misogynous": [], + "threshold's": [], + "cocksucker'ses": [], + "torsos": [], + "histologists": [], + "cosmetologist": ["M", "S"], + "suffices": [], + "padlocked": [], + "tuft'sed": [], + "Keynesian's": [], + "noggin'ses": [], + "unsentimental": [], + "heterosexuality's": [], + "oversubscribed": [], + "guava's": [], + "protective": ["P", "Y"], + "galleys's": [], + "fooleding": [], + "Aug": ["M"], + "philosophies's": [], + "scentless": [], + "vipers": [], + "unsurpassed": [], + "spray": ["A", "S", "D", "G"], + "Qaddafi's": [], + "hombres": [], + "cyan": ["M"], + "comrade'sly": [], + "dissimilarity": [], + "rarity": ["S", "M"], + "motionlessly": [], + "Donny's": [], + "fogged": ["C"], + "bath'sed": [], + "guiltier": [], + "beleaguered": [], + "preform": ["G", "S", "D"], + "envisions": [], + "neckbands": [], + "subfreezing": [], + "Reasoner": ["M"], + "voicelessness": ["M"], + "bullpen's": [], + "clammiest": [], + "mosaic'ses": [], + "alliteratively": [], + "Rouault's": [], + "Clydesdale": ["M"], + "rockeries": [], + "kabuki's": [], + "Schiller's": [], + "Scipio's": [], + "Hapsburg": ["M"], + "herbaceous": [], + "weeperings": [], + "jaguar": ["S", "M"], + "Jurua": ["M"], + "snoopersing": [], + "Ashanti's": [], + "atrophies's": [], + "consummateds": [], + "player": ["S", "M"], + "contraceptive": ["S", "M"], + "electroplate": ["D", "S", "G"], + "stirrings": [], + "feasts": [], + "servitude": ["M"], + "quibbles": [], + "desultorily": [], + "acacia'ses": [], + "raster": [], + "boomboxes": [], + "synonymy": ["M"], + "pitieds": [], + "scoffer": ["M"], + "ambivalently": [], + "Hendrick's": [], + "plumy": ["R", "T"], + "contraceptive's": [], + "stewardship": ["M"], + "ridiculously": [], + "Galahad's": [], + "Hanoi": ["M"], + "yummier": [], + "megaphone": ["D", "S", "M", "G"], + "dodgem": ["S"], + "speeds": [], + "casseroleds": [], + "cabinet": ["S", "M"], + "initializesing": [], + "LP's": [], + "quadruplication": ["M"], + "forever": ["M"], + "refractories's": [], + "tramples": [], + "abrupterly": [], + "humanest": [], + "snowmen": [], + "explosion's": [], + "sloths": [], + "incensinged": [], + "safely": [], + "bonny": ["T", "R"], + "aggravationsed": [], + "hydrometers": [], + "cultivation's": [], + "perseveres": [], + "paragon'ses": [], + "Reyes": ["M"], + "moot": ["D", "S", "G"], + "hawkishness's": [], + "honeydew": ["S", "M"], + "premeds's": [], + "oversize": [], + "guise's": [], + "Triton": ["M"], + "coronary": ["S", "M"], + "poplar": ["S", "M"], + "subjunctives": [], + "netting": ["M"], + "quenched": [], + "accompaniesing": [], + "Raymond": ["M"], + "fringeds": [], + "Balaton": ["M"], + "Guantanamo": ["M"], + "outskirt'ses": [], + "digicam": ["S"], + "partial'sly": [], + "vexes": [], + "gins": [], + "gamekeeper'ses": [], + "terr": [], + "sari'ses": [], + "hopper's": [], + "inflicteding": [], + "lunchroom'ses": [], + "malaise's": [], + "reparation's": [], + "parenthetically": [], + "Delacroix's": [], + "fussbudget": ["M", "S"], + "astoundeds": [], + "conreverse": [], + "diceds": [], + "setter's": [], + "slobbery": [], + "franchisees": [], + "themes's": [], + "raffle'sing": [], + "urn": ["S", "M"], + "swayings": [], + "Winesap": ["M"], + "boysenberry's": [], + "nor": [], + "NORAD's": [], + "Bridgett's": [], + "mil'ser": [], + "tooth'sed": [], + "scamps": [], + "wittering": [], + "riceder": [], + "names": [], + "underworlds": [], + "greenwood": ["M"], + "triplicated": [], + "Wikipedia": ["M"], + "coninquest": [], + "CGI": [], + "sawmill's": [], + "trifecta": ["S", "M"], + "door's": [], + "reaming": [], + "joying's": [], + "Keewatin's": [], + "moonscape": ["S", "M"], + "grid's": [], + "hinterers": [], + "cilia": [], + "medicinal": ["Y"], + "acid'sly": [], + "bishop": ["M", "S"], + "bullwhips": [], + "hovering": [], + "correlatingen": [], + "murderesses": [], + "simperingly": [], + "vasts": [], + "Gabrielle": ["M"], + "Yeager": ["M"], + "strategists": [], + "tobogganing": ["M"], + "sailfish'ses": [], + "scorbutic": [], + "preens": [], + "Champlain's": [], + "hunching": [], + "ruination": ["M"], + "silverfish'ses": [], + "pittances": [], + "aviation's": [], + "Epictetus's": [], + "Brzezinski's": [], + "vacationers": [], + "shading's": [], + "bodieds": [], + "coasted": [], + "festiveness": ["M"], + "compatible's": [], + "abstainers": [], + "furies": [], + "snitch's": [], + "overran": [], + "panoplies's": [], + "Natalie's": [], + "liquor": ["M", "D", "G", "S"], + "pragmatic's": [], + "Togolese": ["M"], + "boots": [], + "Tacoma's": [], + "Serengeti": ["M"], + "puffin": ["S", "M"], + "scarabs": [], + "crackerjack": ["M", "S"], + "alluvium": ["S", "M"], + "bondman's": [], + "mouses's": [], + "Thessaloniki's": [], + "Mainer": ["M"], + "Deidre's": [], + "championing's": [], + "fluttereds": [], + "offside": [], + "Capitols": [], + "whelks": [], + "suffocateds": [], + "twanged": [], + "Elysee's": [], + "brontosaurus'ses": [], + "automating": [], + "undulatingen": [], + "Edens": [], + "sweetbriers's": [], + "wigs's": [], + "tarns": [], + "mammon's": [], + "headcounts": [], + "snarl": ["U", "S", "D", "G"], + "internees's": [], + "corroborates": [], + "primers": [], + "pods's": [], + "meaninglessness": ["M"], + "vertexes": [], + "scraper": ["M"], + "narcotic's": [], + "Timon's": [], + "captivatesing": [], + "fireplaces": [], + "clii": [], + "jocularly": [], + "hussar's": [], + "Consuelo": ["M"], + "downfalls": [], + "randomized": [], + "lobotomizing": [], + "crimsoning": [], + "outrace": ["G", "D", "S"], + "wifeless": [], + "ricers": [], + "upright": ["M", "Y", "P", "S"], + "bacchanal'ses": [], + "loins": [], + "plotter": ["S", "M"], + "crickeding": [], + "Tatar's": [], + "zoo": ["S", "M"], + "musinged": [], + "Haywood": ["M"], + "bedazzles": [], + "forebode": ["G", "J", "D", "S"], + "scrunches": [], + "gaits": [], + "mecca's": [], + "agape's": [], + "GOP's": [], + "Brno's": [], + "Villarreal's": [], + "teetotaler's": [], + "pasturage": ["M"], + "oenophiles": [], + "introits's": [], + "acculturateds": [], + "squabblinged": [], + "servants": [], + "inceptions": [], + "minding": [], + "fuggy": [], + "stylize": ["D", "S", "G"], + "Dalton": ["M"], + "newsreel's": [], + "locator": ["M", "S"], + "bayberry": ["S", "M"], + "Christi's": [], + "perforationsed": [], + "truthiness": [], + "cormorants's": [], + "whinge": ["D", "R", "S", "Z", "G"], + "towered": [], + "micromanaged": [], + "wigglier": [], + "diode's": [], + "backstreets": [], + "tremulousness's": [], + "exports": [], + "rationality's": [], + "demon": ["M", "S"], + "infanticide": ["M", "S"], + "maidenhead's": [], + "Qumran": ["M"], + "Cajun's": [], + "ablation's": [], + "sequoia's": [], + "databases": [], + "ray's": [], + "wingtip's": [], + "Dona": ["M"], + "Manasseh's": [], + "poor": ["T", "R", "Y", "P"], + "Hugh's": [], + "tamales": [], + "whistling": [], + "donation's": [], + "spiciness's": [], + "deliquescesing": [], + "inspector": ["M", "S"], + "doyen's": [], + "superuser": ["S"], + "dynamo": ["S", "M"], + "hailstone": ["M", "S"], + "stretch": ["B", "Z", "G", "M", "D", "R", "S"], + "Karl's": [], + "surmounted": [], + "hussies's": [], + "ENE's": [], + "nonsympathizer": ["M"], + "Midland'ses": [], + "retake": ["G"], + "investigation": ["M"], + "spiv": ["S"], + "scatterbrains's": [], + "galvanizing": [], + "Electra's": [], + "misdirect": ["S", "D", "G"], + "franchiser's": [], + "extinguisheder": [], + "yuppifying": [], + "fastballs's": [], + "vitrifaction's": [], + "fulfilleding": [], + "crony": ["S", "M"], + "twos's": [], + "unpropitious": [], + "coyote's": [], + "radiotherapist's": [], + "standoff's": [], + "hoickinged": [], + "landfill'ses": [], + "candy's": [], + "Treasuries's": [], + "tester": ["K", "S", "M"], + "attracting": [], + "controlling": ["C"], + "Brecht": ["M"], + "tormentingly": [], + "someone": ["M", "S"], + "lovebird's": [], + "sol's": [], + "Pa's": [], + "destitution": ["M"], + "stepbrother's": [], + "Everette": ["M"], + "sirocco's": [], + "earmark's": [], + "redrew": [], + "Gaborone": ["M"], + "mendersing": [], + "stockbrokers's": [], + "preposterous": ["Y"], + "mescals": [], + "submariners": [], + "filaments": [], + "horseman": ["M"], + "antibiotic's": [], + "antifascists": [], + "bouncier": [], + "baronet": ["M", "S"], + "bluepoint": ["M", "S"], + "wheeze's": [], + "timpani's": [], + "endearment": ["S", "M"], + "undershooting": [], + "link": ["M", "D", "R", "S", "G"], + "comp": ["M", "D", "Y", "G", "S"], + "hewers": [], + "availability's": [], + "foible's": [], + "diligent": ["Y"], + "possibility": ["S", "M"], + "Sibyl's": [], + "conniver's": [], + "kinetics's": [], + "fixateds": [], + "washboard's": [], + "sabras": [], + "rimming": [], + "suborned": [], + "sludgy": ["R", "T"], + "padding": ["M"], + "encompass": ["G", "D", "S"], + "Huns": [], + "piling": ["M"], + "Dunedin's": [], + "tsunami": ["S", "M"], + "garage": ["D", "S", "M", "G"], + "palates": [], + "saturnine": [], + "shabbiness's": [], + "Iowan'ses": [], + "hobos": [], + "ventilates": [], + "brackets": [], + "Okinawa": ["M"], + "perky": ["T", "P", "R"], + "crenelated": [], + "safari's": [], + "lager": ["M"], + "Alvaro": ["M"], + "narratingen": [], + "broughams's": [], + "hinderinged": [], + "Belshazzar": ["M"], + "foxglove's": [], + "Cancun's": [], + "recliner's": [], + "speech'ses": [], + "teddies": [], + "demurs": [], + "finalist": ["S", "M"], + "Eduardo": ["M"], + "parleys": [], + "avenges": [], + "carer's": [], + "intents's": [], + "mustaches": [], + "trifled": [], + "sot": ["S", "M"], + "bark's": [], + "scapegoatsing": [], + "habitat": ["S", "M"], + "alligator'ses": [], + "aptliness": [], + "pint'ses": [], + "Los": [], + "hinting": [], + "casseroled": [], + "teleconferencing's": [], + "diaper'sed": [], + "Lauder's": [], + "irrigable": [], + "they": [], + "stools": [], + "bailouts": [], + "Pantaloon": ["M"], + "temp's": [], + "Serrano's": [], + "freshening": [], + "honoredable": [], + "friction": ["S", "M"], + "functionary's": [], + "gong": ["M", "D", "G", "S"], + "threescores": [], + "planters": [], + "cliches": [], + "phonyinged": [], + "Potsdam": ["M"], + "wiretap'ses": [], + "sentimentalist's": [], + "bunts": [], + "miniaturizinged": [], + "Brooks": ["M"], + "cageds": [], + "proclamation's": [], + "outsizes": [], + "deceivinged": [], + "screening": ["M"], + "koalas": [], + "barelegged": [], + "Knopf's": [], + "vowels": [], + "Diaghilev's": [], + "tricks": [], + "prism": ["M", "S"], + "Brynner": ["M"], + "trivially": [], + "subsidizer": ["M"], + "burgling": [], + "manpower": ["M"], + "plating's": [], + "spirit": ["I", "S", "G", "D"], + "bulldog's": [], + "quantifiersing": [], + "wassails": [], + "forensics's": [], + "Rasalhague's": [], + "unearthliness's": [], + "twistier": [], + "pisses": [], + "naturalness's": [], + "anything's": [], + "secluding": [], + "velocipedes": [], + "slackeneding": [], + "phials": [], + "dissuasion": [], + "Angeles": ["M"], + "sandhog's": [], + "Alden": ["M"], + "spud'ses": [], + "heliotropes": [], + "allowance's": [], + "tabooing": [], + "replicating": [], + "Caitlin's": [], + "tomcat": ["M", "S"], + "blistering's": [], + "impermanently": [], + "wound's": [], + "tree": ["M", "D", "S"], + "obstreperous": ["Y", "P"], + "troubleshootersing": [], + "rumbled": [], + "glamour": ["G", "M", "D", "S"], + "breech'ses": [], + "woof": ["M", "D", "R", "S", "Z", "G"], + "Guevara": ["M"], + "heartiers": [], + "inverteding": [], + "inspected": [], + "noncombustible": [], + "moss": ["M", "S"], + "excisionsed": [], + "bidder's": [], + "dun": ["S", "M"], + "bushel": ["S", "G", "M", "D"], + "jab": ["S", "M"], + "misalliance'ses": [], + "domiciles's": [], + "comedian's": [], + "cove's": [], + "mailing's": [], + "prefixing": [], + "mustache's": [], + "Harris's": [], + "excelsior": ["M"], + "occlusion": ["S", "M"], + "Poles's": [], + "Tibetan'ses": [], + "tinplate's": [], + "attributed": ["U"], + "Cannon": ["M"], + "Sgt": [], + "resurface": [], + "archery": ["M"], + "piker's": [], + "ovary's": [], + "Meyerbeer": ["M"], + "ragout": ["S", "M"], + "skivvied": [], + "tackle": ["D", "R", "S", "M", "Z", "G"], + "imperative's": [], + "chaff's": [], + "dog": ["S", "M"], + "gamine's": [], + "disheds": [], + "filching": [], + "acculturated": [], + "restart": [], + "batons": [], + "indicator'ses": [], + "treeline": [], + "bobsleigh's": [], + "rabbinate's": [], + "amazingly": [], + "proxy's": [], + "decadence's": [], + "confiscators": [], + "syntactically": [], + "anger's": [], + "Brynner's": [], + "coloreds": [], + "lendersing": [], + "steeper": [], + "jaunted": [], + "manhole": ["S", "M"], + "limply": [], + "wayside": ["S", "M"], + "accessesing": [], + "inductive": ["Y"], + "microorganisms": [], + "abnegate": ["G", "N", "D", "S"], + "remarry": [], + "Larson": ["M"], + "booze": ["M", "Z", "G", "D", "R", "S"], + "coexisting": [], + "Zeus": ["M"], + "FCC": [], + "bondwomen": [], + "Confucianisms": [], + "liveninged": [], + "Walter's": [], + "Sassoon": ["M"], + "caste": ["J", "M", "Z", "R", "S"], + "housecleans": [], + "hireling'ses": [], + "Blenheim's": [], + "frighting's": [], + "snakeskin": [], + "trigonometry's": [], + "bather's": [], + "Crayola": ["M"], + "sirrah": [], + "emulator's": [], + "reprehensibly": [], + "cathartics's": [], + "pinning": ["U"], + "drains": [], + "frosts": [], + "razzing's": [], + "eighth": ["M"], + "maddest": [], + "beseecher": ["M"], + "pontiff's": [], + "inculcates": [], + "fairground'ses": [], + "dawns": [], + "faeries's": [], + "cardinally": [], + "regulating": [], + "tragediennes": [], + "Manichean's": [], + "accentuating": [], + "synapses": [], + "chalice": ["S", "M"], + "indictment": ["S", "M"], + "Essen's": [], + "goatees's": [], + "vagary's": [], + "succumbs": [], + "aisles": [], + "Rambo's": [], + "tunnelings": [], + "rubbishy": [], + "disdained": [], + "mattress's": [], + "regret": ["S", "M"], + "ageism's": [], + "overindulgence's": [], + "flanneled": [], + "rhymers": [], + "choroid'ses": [], + "AMD's": [], + "Hawthorne's": [], + "nutcrackers": [], + "wrestling": ["M"], + "reggae": ["M"], + "handbarrows": [], + "headlining": [], + "overgeneralizesing": [], + "alert": ["G", "M", "D", "Y", "P", "S"], + "subsumes": [], + "Altiplano": ["M"], + "assonants": [], + "stingray's": [], + "rewasheds": [], + "sailcloth": ["M"], + "humors": [], + "weaknessen": [], + "Panama": ["S", "M"], + "hoaxesers": [], + "Nevis's": [], + "remoteness": ["M"], + "hereafters": [], + "meltdown": ["S", "M"], + "convolution's": [], + "irregularlies": [], + "marinated": [], + "finisher": ["M", "S"], + "mumbling": [], + "steamrollereding": [], + "Apostle's": [], + "abandoneding": [], + "Thermopylae's": [], + "ptarmigans": [], + "rectory's": [], + "Fallopian's": [], + "bishoprics": [], + "wombat'ses": [], + "inculcation's": [], + "unretrod": [], + "reverberates": [], + "fungoid": [], + "arch'sed": [], + "censors": [], + "analogous": ["Y", "P"], + "harmfulness's": [], + "dowagers": [], + "anybody's": [], + "guileful": [], + "coho'ses": [], + "pinch'sed": [], + "devastation's": [], + "phaseout": ["S", "M"], + "assignment'ses": [], + "watermelons's": [], + "petering": [], + "spangling": [], + "Rastafarian": ["M", "S"], + "defensing": [], + "midriff": ["M", "S"], + "revolvers": [], + "redistricting": [], + "vitamin's": [], + "perforationens": [], + "smelling": [], + "barbarisms's": [], + "timings": [], + "famishes": [], + "Plexiglas'ses": [], + "subsidizersing": [], + "paraffin": ["M"], + "hunteder": [], + "crofting": [], + "dampens": [], + "interned": [], + "valediction": ["M", "S"], + "Giselle": ["M"], + "mademoiselle's": [], + "hypersensitiveness": ["M"], + "flashlights": [], + "acquiescing": [], + "steamfitter's": [], + "Eratosthenes": ["M"], + "octagon's": [], + "destroyersing": [], + "restorers's": [], + "personalizes": [], + "saltest": [], + "shoeshines": [], + "Gretchen's": [], + "invidiousliness": [], + "spiels": [], + "kibble'sing": [], + "outwork'sed": [], + "objectiveness": ["M"], + "towboat's": [], + "seedpod'ses": [], + "composure's": [], + "Aubrey": ["M"], + "partition'sed": [], + "bioreactor": ["S"], + "unrivaled": [], + "arising": [], + "subverted": [], + "indecorous": [], + "Kalamazoo": ["M"], + "involvesing": [], + "ligament'ses": [], + "politesse": ["M"], + "Gambia's": [], + "brainteaser's": [], + "equipage'ses": [], + "employer's": [], + "obsolete": ["G", "D", "S"], + "Juliana's": [], + "Lucia": ["M"], + "propagating": [], + "affordinged": [], + "Cindy": ["M"], + "Aries'ses": [], + "Shiite": ["M", "S"], + "archives's": [], + "comptroller": ["M", "S"], + "intercommunicate": ["D", "S", "G", "N"], + "windsurfing's": [], + "loafed": [], + "Cellini's": [], + "Fiat's": [], + "chancellor'ses": [], + "Fauntleroy's": [], + "ibex's": [], + "bamboozles": [], + "flinch'sed": [], + "sticks's": [], + "Cooper's": [], + "hopscotch's": [], + "repairerser": [], + "bulwark'ses": [], + "chronicled": [], + "offprints": [], + "chardonnays's": [], + "swig": ["M", "S"], + "flasheder": [], + "pinsetters": [], + "facilitatingen": [], + "oblations": [], + "Ronda": ["M"], + "cooling": [], + "Walton": ["M"], + "swaggered": [], + "spill": ["S", "M", "D", "G"], + "smileys's": [], + "feebly": [], + "quoin's": [], + "animadvertsed": [], + "developinged": [], + "Kristie": ["M"], + "identifications": [], + "alights": [], + "endearments": [], + "transepts": [], + "taproom": ["S", "M"], + "busy": ["D", "R", "S", "T", "G", "P"], + "baldies": [], + "megabits": [], + "Accenture": ["M"], + "retina": ["S", "M"], + "impotent": ["Y"], + "warplane's": [], + "mafiosi": [], + "Glasgow's": [], + "prangs": [], + "carers": [], + "gallivantsed": [], + "triptych's": [], + "dissemblersing": [], + "mistakes": [], + "unguided": [], + "Hohenstaufen's": [], + "calculators": [], + "cowering": [], + "impugner's": [], + "nepotists's": [], + "rightfulness's": [], + "Brighton's": [], + "bonitos": [], + "plush's": [], + "enervate": ["G", "N", "D", "S"], + "danged": [], + "reaps": [], + "sledgehammer's": [], + "wile": ["M", "G", "D", "S"], + "scrofulous": [], + "coking": [], + "Bob's": [], + "crumblinesser": [], + "Malplaquet's": [], + "prefabricating": [], + "Sasquatch": ["M", "S"], + "unimaginably": [], + "exorcisms's": [], + "selvage'ses": [], + "barbecue": ["D", "S", "M", "G"], + "fancifulness's": [], + "playing": [], + "Carlton": ["M"], + "stetted": [], + "doweleding": [], + "distillations": [], + "tamales's": [], + "betrayers": [], + "idolizes": [], + "vanishes": [], + "muckrakers": [], + "informer": [], + "Rutherford's": [], + "retched": [], + "projectionist's": [], + "airfield's": [], + "pinon's": [], + "sprinkled": [], + "washout": ["M", "S"], + "frock's": [], + "relativist": ["S"], + "vocation's": [], + "mankind": ["M"], + "menstruationed": [], + "Heb": [], + "sequestrating": [], + "kindergarten'ses": [], + "egocentricity's": [], + "reverie": ["M", "S"], + "aerial's": [], + "tippexing": [], + "Britten's": [], + "whetted": [], + "flout's": [], + "visitor'ses": [], + "Visayans's": [], + "obtusest": [], + "supernal": [], + "joshing": [], + "tryptophan": [], + "curtailed": [], + "Timor": ["M"], + "chastisements's": [], + "gloamings": [], + "Paiute": ["S", "M"], + "stepsister": ["M", "S"], + "promise": ["D", "S", "M", "G"], + "porthole's": [], + "abusiveness": ["M"], + "bops's": [], + "faggot's": [], + "liminged": [], + "stampede'sing": [], + "gatehouse": ["S", "M"], + "historiography": ["M"], + "unworried": [], + "Joe's": [], + "convalescents": [], + "skateder": [], + "brassier": [], + "ratifier's": [], + "keypuncher": ["M"], + "aphids": [], + "alienists": [], + "Karin": ["M"], + "whiff'sed": [], + "unattractive": [], + "Hooper": ["M"], + "creamer": ["M"], + "argosies's": [], + "spacesuits": [], + "reassuring": ["Y"], + "resume'sing": [], + "booksellers": [], + "icebreakers": [], + "quell": ["G", "D", "S"], + "boilermaker": ["S", "M"], + "Avogadro's": [], + "lingerer's": [], + "Watson's": [], + "pinier": [], + "doubter": ["M"], + "attuneds": [], + "chi's": [], + "risotto's": [], + "Springsteen's": [], + "crux": ["M", "S"], + "skimpiest": [], + "Mesabi": ["M"], + "shirkinged": [], + "crawlerers": [], + "Rabat": ["M"], + "Kuznetsk's": [], + "foothold's": [], + "gatecrashersing": [], + "Darius's": [], + "peewits": [], + "tam's": [], + "dogma": ["S", "M"], + "marinading": [], + "instrumentallies": [], + "testaments": [], + "superfluousness": ["M"], + "unappropriated": [], + "clansmen": [], + "incubus": ["M", "S"], + "pruners": [], + "LG": ["M"], + "eulogize": ["Z", "G", "D", "R", "S"], + "audacity's": [], + "dew's": [], + "Cornwallis's": [], + "haploids": [], + "sensitization": ["C", "M"], + "tastiness's": [], + "nightshirt's": [], + "Auckland's": [], + "stroke": ["M", "G", "D", "S"], + "gratificationens": [], + "penicillin's": [], + "roving": [], + "stranglersing": [], + "lots": [], + "seams": [], + "frown": ["S", "M", "D", "G"], + "handcuffings": [], + "officiants": [], + "catalepsy": ["M"], + "confine": [], + "erasures's": [], + "routeing": [], + "Proudhon's": [], + "beckonsing": [], + "tagged": [], + "sidestroke's": [], + "babies's": [], + "pizzicato": ["M"], + "avenues": [], + "cavorts": [], + "Christ": ["M", "S"], + "womanlike": ["M"], + "bicuspid": ["M", "S"], + "joining": [], + "serous": [], + "zinnia's": [], + "sink'ser": [], + "repairman": ["M"], + "unbalance": [], + "fluoroscopes": [], + "crackle'sing": [], + "tweezers's": [], + "rampantly": [], + "altruistically": [], + "trampler's": [], + "cacaos": [], + "outgunning": [], + "admitted": ["Y"], + "Bradly's": [], + "Polanski": ["M"], + "American'ses": [], + "sagacity": ["M"], + "volunteersing": [], + "fired": [], + "classroom": ["M", "S"], + "shoemakers": [], + "Pen": ["M"], + "errand's": [], + "orthopedist'ses": [], + "trueloves's": [], + "fox's": [], + "fervently": [], + "ooze's": [], + "nonvoter's": [], + "gawks": [], + "unshaken": [], + "geographers's": [], + "deflationed": [], + "ground's": [], + "suitor's": [], + "peak": ["M", "D", "S", "G"], + "coulomb'ses": [], + "unfounded": [], + "rigidliness": [], + "greatcoats": [], + "muscatels's": [], + "Pm": ["M"], + "paunch'ses": [], + "exterminate": ["D", "S", "X", "G", "N"], + "impeaches": [], + "sweeterly": [], + "sedated": [], + "edgier": [], + "towed": [], + "discredit": [], + "redounds": [], + "sunbath's": [], + "cuber": ["M"], + "entities's": [], + "unpinning": [], + "nonmembers": [], + "skiversing": [], + "fondled": [], + "Adolph's": [], + "ivies's": [], + "prescriptive": ["Y"], + "Kipling": ["M"], + "Celeste's": [], + "graveling": [], + "drastically": [], + "Indianans's": [], + "pinker": [], + "warranties": [], + "foreshadoweds": [], + "notching": [], + "equator": ["S", "M"], + "mess": ["M", "D", "S", "G"], + "Bryce's": [], + "Ventolin": ["M"], + "scud's": [], + "printer's": [], + "proof's": [], + "vividness": ["M"], + "cringeds": [], + "lumbered": [], + "committee's": [], + "buttermilk": ["M"], + "dinersing": [], + "philosophizesers": [], + "nonexplosive'ses": [], + "foxfire's": [], + "Amalia's": [], + "lactic": [], + "Rosendo": ["M"], + "comedian": ["M", "S"], + "Dora's": [], + "girlfriend": ["M", "S"], + "pressie": ["S"], + "lunkhead": ["M", "S"], + "Zambia": ["M"], + "distrait": [], + "clustereds": [], + "stablest": [], + "uniquest": [], + "turbine's": [], + "hyphen": ["M", "D", "S", "G"], + "Turkestan's": [], + "mesh": ["M", "D", "S", "G"], + "trespass": ["M", "D", "R", "S", "Z", "G"], + "anaerobe's": [], + "Britannica's": [], + "bouillabaisses": [], + "couturier": ["M", "S"], + "Choctaws's": [], + "simmer": ["G", "M", "D", "S"], + "expediency": ["I", "M"], + "quince's": [], + "bewaringed": [], + "ad's": [], + "realliness": [], + "steepened": [], + "comprehensivelies": [], + "slowdown's": [], + "primacy": ["M"], + "mountsing": [], + "prizefights's": [], + "transfigures": [], + "gerrymanders": [], + "sniffeder": [], + "microaggression's": [], + "tottering": [], + "sappinesser": [], + "jukebox": ["M", "S"], + "gumshoe'sed": [], + "Alec": ["M"], + "Albertan": [], + "roofeder": [], + "sensibleness's": [], + "seam's": [], + "medals's": [], + "gesturing": [], + "sackeder": [], + "Imelda": ["M"], + "polecat's": [], + "wimple'sing": [], + "impedimenta": ["M"], + "misuses": [], + "Norway's": [], + "budgie's": [], + "Bioko": ["M"], + "neck's": [], + "pictographs": [], + "lodges": [], + "proscriptions": [], + "shrubbery": ["S", "M"], + "fluff'sed": [], + "truss's": [], + "limberness's": [], + "Mojaves": [], + "Clay": ["M"], + "forge": ["D", "R", "S", "M", "Z", "G", "V", "J"], + "Ecuadorean": [], + "phantasms": [], + "satsuma": ["S"], + "gradate": ["X", "G", "N", "D", "S"], + "Songhai": ["M"], + "ripely": [], + "sprinter's": [], + "whimsicality's": [], + "hopeful's": [], + "polyclinic": ["S", "M"], + "Arlene": ["M"], + "Decca's": [], + "criminalizinged": [], + "FICA": ["M"], + "bodice's": [], + "extractions's": [], + "incorrectness": [], + "backdate": ["G", "D", "S"], + "oped": [], + "Pollyanna": ["M"], + "Nokia": ["M"], + "clap's": [], + "calcineds": [], + "quadricepses": [], + "centrality": ["M"], + "Byzantine'ses": [], + "earthward": ["S"], + "demonstrative": ["M", "Y", "S", "P"], + "stomachs": [], + "gleanings's": [], + "gleams's": [], + "bonfire'ses": [], + "Capote's": [], + "specificity's": [], + "buddies's": [], + "Netflix's": [], + "quadrillions's": [], + "arts": [], + "portending": [], + "rubdowns's": [], + "bandits": [], + "stranglehold's": [], + "grease": ["D", "R", "S", "M", "Z", "G"], + "vii": [], + "somewhat": ["S"], + "knotting": [], + "rutherfordium's": [], + "lazies": [], + "conings": [], + "louche": [], + "caging": [], + "galena": ["M"], + "witched": [], + "pylons's": [], + "awfulness": ["M"], + "champion's": [], + "pony": ["G", "D", "S", "M"], + "sweat's": [], + "revelations's": [], + "coworker'ses": [], + "Jain": ["M"], + "presentiment's": [], + "Christmastides": [], + "pyramid'sed": [], + "pontoon": ["S", "M"], + "amphitheater": ["S", "M"], + "rhizome": ["M", "S"], + "incrementally": [], + "superannuatingen": [], + "cubists": [], + "refashioning": [], + "eclectically": [], + "horticultural": [], + "folkway's": [], + "emus": [], + "muddieder": [], + "deary": ["S", "M"], + "househusband's": [], + "rateder": [], + "dissociateds": [], + "Wiley's": [], + "unreality": [], + "stayers": [], + "exhilarate": ["D", "S", "G", "N"], + "manifest": ["M", "D", "Y", "S", "G"], + "misogynist's": [], + "Aldo's": [], + "refrain": ["S", "G", "M", "D"], + "humanitarianism's": [], + "pods": [], + "walked": [], + "exurb's": [], + "gnu": ["S", "M"], + "mys": [], + "spawn's": [], + "imprints": [], + "superpose": ["G", "D", "S"], + "hostel'sed": [], + "angelfishes": [], + "biochemically": [], + "conjectures": [], + "Gypsy's": [], + "Alcoa's": [], + "scag": ["S"], + "trivet'ses": [], + "rounds": [], + "poltergeist": ["M", "S"], + "Antipas": ["M"], + "captivatingen": [], + "Velcros": [], + "roller's": [], + "humidity": ["M"], + "transcripts": [], + "newsweekly": ["S", "M"], + "actuary's": [], + "kleptomania's": [], + "adamant's": [], + "aftereffect's": [], + "hazarding": [], + "tabla'ses": [], + "trustworthiness": ["M"], + "lordship": ["S", "M"], + "Moravia's": [], + "chlorides": [], + "pillory's": [], + "shampooed": [], + "farm's": [], + "daydreamerers": [], + "phases's": [], + "redwood": ["S", "M"], + "horseless": [], + "gatherings": [], + "freewill": [], + "harroweding": [], + "unattached": [], + "AP": ["M"], + "twang'sed": [], + "hypothetically": [], + "Husserl": ["M"], + "paradises's": [], + "squab's": [], + "toughening": [], + "guidersing": [], + "shunt's": [], + "geometric": [], + "1": ["n", "1"], + "barbing's": [], + "fearfulness's": [], + "probation's": [], + "arctics": [], + "Bose's": [], + "injurers": [], + "clucks's": [], + "plum'sed": [], + "nocturnes": [], + "tremolos's": [], + "brevetted": [], + "abashment's": [], + "punchier": [], + "wholesaler's": [], + "dickybird": ["S"], + "styptic's": [], + "phonemes": [], + "weighted": ["U"], + "Gamow's": [], + "Tasmanian": ["M"], + "guppies's": [], + "toecaps": [], + "facetiously": [], + "salt": ["C", "T", "G", "D", "S"], + "idiosyncrasies's": [], + "immemorial": ["Y"], + "tosh": [], + "underlain": [], + "emphysema's": [], + "reenter": [], + "overhears": [], + "blufferly": [], + "antiquarians": [], + "clockwork's": [], + "rudest": [], + "foaling": [], + "buttes": [], + "vestigially": [], + "Sunkist's": [], + "peseta": ["M", "S"], + "annelid's": [], + "approachable's": [], + "rankly": [], + "nationhood": ["M"], + "reeling": [], + "impervious": ["Y"], + "lases": [], + "Marsh": ["M"], + "proposal'ses": [], + "Wilfredo": ["M"], + "reassert": [], + "gilders": [], + "outsellings": [], + "rubella's": [], + "conference's": [], + "suffuseds": [], + "sperms's": [], + "constitutingen": [], + "Antarctica's": [], + "hurrahed": [], + "bustle": ["D", "S", "M", "G"], + "treadmills": [], + "Doctor": [], + "conferrer'ses": [], + "profligacy": ["M"], + "outlining": [], + "campers": [], + "Mattel's": [], + "waylaid": [], + "signer'ses": [], + "hardiness's": [], + "hibernates": [], + "john": ["M", "S"], + "farmhouses's": [], + "Godot": ["M"], + "Lepus's": [], + "bracken's": [], + "ascertaining": [], + "williwaw": ["M", "S"], + "annual's": [], + "persisted": [], + "crustaceans's": [], + "parquetry": ["M"], + "overgraze": ["D", "S", "G"], + "burgeon": ["D", "S", "G"], + "dibbles": [], + "sawed": [], + "adzes's": [], + "packing's": [], + "calculator": ["S", "M"], + "parterres": [], + "droplet's": [], + "Dodgson": ["M"], + "kipping": [], + "victor's": [], + "ne'er": [], + "Wall": ["S", "M", "R"], + "maws": [], + "steeple's": [], + "bankers": [], + "premiseds": [], + "automatons's": [], + "cayuse's": [], + "blunderer's": [], + "Gretel": ["M"], + "calluses": [], + "half's": [], + "Provo's": [], + "mews's": [], + "drawling": [], + "impassables": [], + "muscatel's": [], + "humblest": [], + "Ethan's": [], + "globally": [], + "Ramsey": ["M"], + "Aline": ["M"], + "visors's": [], + "hf": [], + "consent's": [], + "caustic": ["S", "M"], + "dustiness": ["M"], + "clutters": [], + "paperhanging": ["M"], + "outcroppings's": [], + "opportunities": [], + "Gypsies": [], + "darkrooms": [], + "forelocks": [], + "loutishly": [], + "viewfinders's": [], + "factoring": [], + "unobtrusiveness": [], + "whammy": ["S", "M"], + "Kenmore": ["M"], + "ticketings": [], + "resolved": ["U"], + "anticipationens": [], + "hold's": [], + "herons": [], + "prettier": [], + "risk's": [], + "suddennessly": [], + "Astoria's": [], + "gastronomy": ["M"], + "treatise": ["S", "M"], + "phonier": [], + "Robles": ["M"], + "paperless": [], + "disestablish": [], + "adoptive": [], + "websites's": [], + "decimating": [], + "preconceptions's": [], + "wines": [], + "interfacinged": [], + "mayday's": [], + "fiddles": [], + "tidbit's": [], + "acclamation's": [], + "barnstorms": [], + "Rosalinda's": [], + "vowel": ["S", "M"], + "juxtaposeds": [], + "aggrieveds": [], + "counsel's": [], + "mainland": ["M", "S"], + "breadline's": [], + "cabinetmaker'ses": [], + "engulfed": [], + "Goldie": ["M"], + "tendentiousness's": [], + "psis's": [], + "painters": [], + "posthumous": ["Y"], + "hightailing": [], + "deafness": ["M"], + "must": ["M", "R", "S", "Z"], + "thirsting's": [], + "cantankerously": [], + "charbroiled": [], + "beingings": [], + "knightlies": [], + "encampinged": [], + "Muir's": [], + "racehorses": [], + "Manilas's": [], + "farmstead's": [], + "Kirby's": [], + "requited": ["U"], + "dins": [], + "lagoon's": [], + "constriction": ["S", "M"], + "asphalt's": [], + "outsets's": [], + "saggier": [], + "recitalist": ["M", "S"], + "tottered": [], + "Paganini's": [], + "Marquis's": [], + "kink's": [], + "socializesing": [], + "backpack": ["Z", "G", "M", "D", "R", "S"], + "deliverance's": [], + "cavalcade'ses": [], + "scraps": [], + "allergies": [], + "catnap'ses": [], + "arteriole's": [], + "wiper's": [], + "Rainier": ["M"], + "Offenbach": ["M"], + "casuistry's": [], + "opus": ["M", "S"], + "baptisteries": [], + "diuretic's": [], + "reapersing": [], + "stein": ["S", "M"], + "burrowersing": [], + "levy's": [], + "visualizer's": [], + "fluctuates": [], + "fatsness": [], + "runnels": [], + "Dusseldorf": ["M"], + "sculpture'sing": [], + "bashes": [], + "calamine's": [], + "violators": [], + "quagmire": ["S", "M"], + "brawlersing": [], + "glottal": [], + "legal": ["S", "M", "Y"], + "ovenbirds's": [], + "decade": ["M", "S"], + "cliffhanger": ["S", "M"], + "belligerency's": [], + "factorial's": [], + "ambuscade": ["M", "G", "D", "S"], + "erector'ses": [], + "eggnog": ["M"], + "rust's": [], + "carriageways": [], + "resoundingly": [], + "preshrinks": [], + "conciliated": [], + "Dewar's": [], + "rabble'ses": [], + "hundredweights's": [], + "storekeepers's": [], + "flocks's": [], + "aliening's": [], + "overestimation's": [], + "cooler": ["M"], + "traitor": ["S", "M"], + "menaceds": [], + "predator's": [], + "gsen": [], + "frowziest": [], + "waterline's": [], + "cantatas": [], + "bagpipe's": [], + "Lewis": ["M"], + "rims": [], + "staiderly": [], + "resolvable's": [], + "adventuress": ["M", "S"], + "Michel's": [], + "goofing": [], + "widgets": [], + "syntactical": ["Y"], + "urinateds": [], + "materialist's": [], + "Aldrin": ["M"], + "error": ["S", "M"], + "limescale": [], + "barbarize": ["D", "S", "G"], + "Mercury": ["S", "M"], + "alliterating": [], + "metabolite's": [], + "entrenchment": ["M", "S"], + "matrices": [], + "intranet'ses": [], + "contrails": [], + "limp's": [], + "collaboration's": [], + "limo's": [], + "huckleberry": ["S", "M"], + "immunodeficient": [], + "misconceived": [], + "double's": [], + "plutocrat": ["S", "M"], + "seashore's": [], + "rightfulness": ["M"], + "cubed": [], + "toilets": [], + "gnaweding": [], + "extenuatesing": [], + "Adolf's": [], + "declared": ["U"], + "frizzeds": [], + "eliding": [], + "semicolon'ses": [], + "illiberally": [], + "woodlots": [], + "bedecksed": [], + "prevaricators": [], + "regions": [], + "relegation's": [], + "rusticates": [], + "gongs": [], + "feasibility": ["M"], + "clowning": [], + "combat": ["S", "M", "D", "G", "V"], + "oversimplifiesen": [], + "pol": ["S", "G", "M", "D"], + "dullness's": [], + "hammocks's": [], + "clobbering": [], + "faith's": [], + "cataleptic": ["M", "S"], + "projected": [], + "bifurcationsed": [], + "Weston": ["M"], + "sanitized": [], + "panderers": [], + "regallying": [], + "overdecorateds": [], + "flank": ["S", "Z", "G", "M", "D", "R"], + "fanboy": ["S", "M"], + "hyperventilateds": [], + "conclaves": [], + "clamberer": ["M"], + "longitudinal": ["Y"], + "monkey": ["M", "D", "G", "S"], + "pitchman's": [], + "preheatsed": [], + "unsatisfying": [], + "copycat'ses": [], + "pissoir": ["S"], + "Dorothy's": [], + "pounding": ["S", "M"], + "meaningfully": [], + "hematology's": [], + "freshensers": [], + "hypnotherapy's": [], + "dauphin": ["M", "S"], + "eructsed": [], + "designation's": [], + "bluejacket's": [], + "coccus's": [], + "Peck's": [], + "regatherings": [], + "immobilization's": [], + "drowsiness": ["M"], + "chairmanship": ["S", "M"], + "sap": ["S", "M"], + "Wesley": ["M"], + "curling": ["M"], + "ewer's": [], + "Emmy's": [], + "maleness's": [], + "leaderships's": [], + "banqueted": [], + "converts": [], + "beadles's": [], + "tastefulness's": [], + "Hancock's": [], + "Bobbitt's": [], + "assigneds": [], + "exponential": ["Y"], + "Jainism": ["M"], + "shy": ["T", "G", "D", "R", "S", "M", "Y"], + "requestinged": [], + "neurology's": [], + "outstretch": ["D", "S", "G"], + "questionable": ["U"], + "ESE": ["M"], + "dresser'ses": [], + "Hogwarts": ["M"], + "tube's": [], + "bossing": [], + "Adrenalin": ["M", "S"], + "polemic's": [], + "backstop's": [], + "eyepiece's": [], + "panegyrics": [], + "politeness's": [], + "simulation's": [], + "postwar": [], + "blencheds": [], + "accountabling": [], + "outpoint": ["D", "G", "S"], + "bound": ["A", "S", "M", "G", "D"], + "interrogatingen": [], + "carthorses's": [], + "cowhide'ses": [], + "roustabout": ["S", "M"], + "unverified": [], + "Johns": ["M"], + "sinecure": ["M", "S"], + "Beckett's": [], + "ecosystems": [], + "ambuscaded": [], + "sopped": [], + "furlough'sed": [], + "joyrider": ["M"], + "nonmagnetic": [], + "dolmen": ["S", "M"], + "rowboats": [], + "rainbow's": [], + "etcher's": [], + "tools": [], + "aboundeds": [], + "attorney's": [], + "gonk": ["S"], + "lemma": ["S"], + "impressiveness's": [], + "inescapable": [], + "addictions's": [], + "monopoly's": [], + "gingivitis's": [], + "percipience": ["M"], + "antiquity": ["S", "M"], + "parquet's": [], + "mudguard": ["S", "M"], + "orderly's": [], + "mineralogist'ses": [], + "snugsness": [], + "nonscoring": [], + "gazetteds": [], + "parole'sing": [], + "minimum'ses": [], + "Bridalveil's": [], + "robotizeds": [], + "alternatively": [], + "telemarketer's": [], + "psis": [], + "margarita's": [], + "trugs": [], + "fulcrum": ["M", "S"], + "coastal": [], + "sedatingen": [], + "fetishists's": [], + "Chattahoochee's": [], + "Lyallpur": [], + "surrogate's": [], + "Golding's": [], + "imprecisenessly": [], + "color": ["A", "E", "G", "D", "S"], + "phosphodiesterase": [], + "Ines's": [], + "coincideds": [], + "publishes": [], + "collieries's": [], + "fetlock": ["M", "S"], + "desk": ["S", "M"], + "xi's": [], + "platelets": [], + "federated": [], + "skippers's": [], + "waists": [], + "semimonthlies's": [], + "poising": [], + "sheriffs": [], + "K's": [], + "passivelies": [], + "glad": ["M", "Y", "S", "P"], + "chastisesers": [], + "juxtapositions's": [], + "strand'sed": [], + "society's": [], + "striker's": [], + "predicated": [], + "celebratesing": [], + "municipals's": [], + "abode's": [], + "industrializesing": [], + "block": ["U", "G", "D", "S"], + "sunburst'ses": [], + "inebriation's": [], + "clinchersing": [], + "yawnsers": [], + "paramour": ["S", "M"], + "rammed": [], + "Bronx": ["M"], + "fulsomeness's": [], + "farrowing": [], + "Ste": [], + "deanship": ["M"], + "Bering's": [], + "Hitlers": [], + "centrist'ses": [], + "lxiv": [], + "oxidants": [], + "Szilard's": [], + "lackeys's": [], + "Carroll's": [], + "broach'sed": [], + "tartness": ["M"], + "suavity": ["M"], + "jawboned": [], + "mismanageds": [], + "Tamworth's": [], + "homer": ["G", "M", "D"], + "eclipses's": [], + "rosettes's": [], + "singularity's": [], + "bantamweights": [], + "emotionalizes": [], + "memsahib": ["S"], + "gumbos's": [], + "dyspeptics": [], + "astonishing": ["Y"], + "footlights": ["M"], + "syllabus's": [], + "buildersing": [], + "thrivesing": [], + "herbalist'ses": [], + "revenginged": [], + "empress": ["M", "S"], + "sensationalist's": [], + "lodgers": [], + "biopsies's": [], + "snuff": ["S", "M", "D", "R", "Y", "Z", "G"], + "Debian": ["M"], + "Clorets": ["M"], + "Stengel's": [], + "digitize": ["G", "D", "S"], + "dregs": ["M"], + "sportsmanship's": [], + "rollerskating": ["M"], + "negate": ["D", "S", "G", "N", "V", "X"], + "megachurches": [], + "recompenseds": [], + "plonking": [], + "corkscrews": [], + "pejorative's": [], + "contemptuousness": ["M"], + "KKK": ["M"], + "leverages": [], + "7th": ["p", "t"], + "wraith": ["M"], + "bobsledder's": [], + "non": [], + "codification": ["M"], + "delicacy": ["I", "S", "M"], + "duelers": [], + "artwork's": [], + "expert": ["S", "P", "M", "Y"], + "reconstructive": [], + "fays": [], + "deflectors": [], + "functionalists": [], + "brawlsed": [], + "superscription": ["M"], + "supervening": [], + "straitjacketsing": [], + "derivative's": [], + "blowjobs's": [], + "reductase": ["M"], + "concealed": ["U"], + "mudguard's": [], + "stonierness": [], + "knickers": ["M"], + "seismology's": [], + "soldiery's": [], + "murmurer's": [], + "ingots's": [], + "Romeo": ["M"], + "heuristic'ses": [], + "saguaro'ses": [], + "expatriates's": [], + "breeds": [], + "hump'sed": [], + "madrasa": ["S", "M"], + "impounds": [], + "knacks": [], + "deuces's": [], + "Poltava": ["M"], + "lovebirds's": [], + "jauntier": [], + "philanthropically": [], + "landowner'ses": [], + "throughput's": [], + "gawkiness's": [], + "Cheops's": [], + "cuds": [], + "yammers": [], + "ropinged": [], + "Mylars": [], + "uncomprehendingly": [], + "brimful": [], + "bowdlerized": [], + "plucks": [], + "analogy": ["S", "M"], + "themselves": [], + "coexist": ["D", "S", "G"], + "sectary": ["S", "M"], + "magenta's": [], + "rumba": ["S", "M", "D", "G"], + "sunup": ["M"], + "picador": ["M", "S"], + "hypermarket": ["S"], + "Dermot": ["M"], + "decoyeds": [], + "concaveness's": [], + "controlled": ["U", "C"], + "cower": ["D", "G"], + "syphilis's": [], + "grubbier": [], + "romper": ["M"], + "bespeaksing": [], + "backslidesers": [], + "vacuity's": [], + "seedbed'ses": [], + "Shriner's": [], + "cosmopolitan's": [], + "arthroscopes": [], + "footrace'ses": [], + "frameder": [], + "nonphysical": ["Y"], + "you's": [], + "firm's": [], + "cheerfullest": [], + "flooring's": [], + "Dillinger's": [], + "mattock": ["S", "M"], + "pitchmen": [], + "seismologist": ["M", "S"], + "fomentsing": [], + "glossies's": [], + "lammed": [], + "legislatingen": [], + "Cromwell's": [], + "convulsingen": [], + "falsifiers": [], + "mandrel": ["S", "M"], + "deeminged": [], + "management's": [], + "mattocks's": [], + "snowbirds's": [], + "laterallies": [], + "Borg": ["S", "M"], + "tau's": [], + "estrangement": ["M", "S"], + "Weddell": ["M"], + "violation": ["M"], + "order": ["E", "A", "M", "D", "G", "S"], + "Icelanderers": [], + "codifier": ["M"], + "bouzouki": ["M", "S"], + "aggregate's": [], + "ascertainment": ["M"], + "Marylander": ["M"], + "excitability": ["M"], + "Fulani's": [], + "Josefina's": [], + "everglade": ["S", "M"], + "vapor's": [], + "joke": ["M", "Z", "G", "D", "R", "S"], + "transponder's": [], + "gibberish's": [], + "lookouts": [], + "stupids": [], + "anxiety's": [], + "Ellington": ["M"], + "fourteen's": [], + "Haskell's": [], + "orateds": [], + "exhibitionism": ["M"], + "bullfights's": [], + "Macbeth's": [], + "Maugham's": [], + "abrupter": [], + "spyglass's": [], + "benefit's": [], + "satinwoods's": [], + "inadvisable": [], + "harms": [], + "ostentation": ["M"], + "crane": ["D", "S", "M", "G"], + "Kirghizia's": [], + "explosives": [], + "AFT": [], + "chic's": [], + "airborne": [], + "ambitiousness's": [], + "sellers": [], + "bureaucratizing": [], + "stretch'sed": [], + "bridgeable": ["U"], + "diffidence's": [], + "included": [], + "crudity's": [], + "prospector": ["S", "M"], + "immunizes": [], + "mintier": [], + "barbsers": [], + "decimals's": [], + "hemorrhoid": ["M", "S"], + "Marshall": ["M"], + "unwrapping": [], + "repressiveness": [], + "oleaginous": [], + "gymkhana's": [], + "bellies": [], + "novel's": [], + "caitiff's": [], + "subbranches": [], + "manifesto's": [], + "dividend'ses": [], + "cladding's": [], + "muslin": ["M"], + "giddier": [], + "fortify": ["D", "R", "S", "N", "Z", "G", "X"], + "beatings": [], + "miserable's": [], + "antitoxin'ses": [], + "chokersing": [], + "Efrain's": [], + "cyclonic": [], + "hurrah's": [], + "ballast's": [], + "spoken": ["U"], + "folders": [], + "listeria": [], + "phalanger's": [], + "juicer": ["M"], + "eon's": [], + "decal": ["M", "S"], + "motorcyclists": [], + "headship's": [], + "assumabling": [], + "obstetrical": [], + "perquisites": [], + "microcomputers": [], + "Collier's": [], + "ladenings": [], + "Alisha": ["M"], + "exileds": [], + "charm's": [], + "miscall": ["D", "S", "G"], + "nonequivalent'ses": [], + "worrisome": [], + "Haidas": [], + "geographer": ["S", "M"], + "tweet's": [], + "nonscheduled": [], + "decides": [], + "mustiness": ["M"], + "Tennessean's": [], + "anthologist": ["S", "M"], + "mangrove": ["M", "S"], + "honeydew's": [], + "unglued": [], + "Denali": [], + "worships": [], + "skedaddles": [], + "Grunewald's": [], + "studiousness": ["M"], + "rpm": [], + "mantissa": ["S", "M"], + "fancifully": [], + "nonintellectual'ses": [], + "migrant's": [], + "cashbook's": [], + "Augustinian": ["M", "S"], + "niftier": [], + "hauls": [], + "noddles": [], + "prognostic'ses": [], + "Yorkshire'ses": [], + "revival's": [], + "invalid's": [], + "stable": ["D", "R", "S", "M", "T", "G"], + "sailfish's": [], + "anomalous": ["Y"], + "canniness": ["M"], + "evils": [], + "shirrs": [], + "forgetfully": [], + "moan": ["M", "D", "R", "S", "Z", "G"], + "spicily": [], + "credenzas": [], + "plonked": [], + "outlaysing": [], + "avionic": ["S"], + "splice's": [], + "pigheadedness": ["M"], + "painfulness": ["M"], + "nebulousnessly": [], + "teleprompter's": [], + "watchword's": [], + "profited": [], + "knelt": [], + "mashup": ["M", "S"], + "future'ses": [], + "insulated": [], + "Rydberg's": [], + "calcium's": [], + "lambda's": [], + "beanbag's": [], + "logistics": ["M"], + "revelry's": [], + "oles's": [], + "vestries's": [], + "Jarrod": ["M"], + "Rhode": ["S"], + "idiocies's": [], + "deliverer": ["S", "M"], + "subversive'sly": [], + "Buddhists's": [], + "headcount": ["S"], + "forgoing": [], + "bruit": ["S", "D", "G"], + "submitting": ["A"], + "mummer's": [], + "ufologist's": [], + "tribesman": ["M"], + "serpents": [], + "twelves's": [], + "gendarmes": [], + "doggoning": [], + "juridical": ["Y"], + "snarls": [], + "gradient'ses": [], + "gymnast's": [], + "Selznick's": [], + "premiership'ses": [], + "recompense": ["D", "S", "M", "G"], + "garrison": ["M", "D", "S", "G"], + "Dominic": ["M"], + "size": ["A", "G", "D", "S"], + "sulfate": ["S", "M"], + "strenuousnessly": [], + "amalgamated": [], + "commonwealth": ["M"], + "dowager's": [], + "dare'sers": [], + "conceptualizations": [], + "defoliant's": [], + "woodsing": [], + "caparison": ["M", "D", "G", "S"], + "Shepard's": [], + "elicit": ["S", "D", "G"], + "Higgins's": [], + "litany": ["S", "M"], + "betiding": [], + "sexton's": [], + "histamines": [], + "Riesling'ses": [], + "cackle'sers": [], + "shufflinged": [], + "fleabags's": [], + "commune's": [], + "insure": ["D", "R", "S", "Z", "G", "B"], + "rulers": [], + "fringed": [], + "Cadette": [], + "issues's": [], + "debilities's": [], + "emblem's": [], + "sided": [], + "landsman": ["M"], + "vibrancy": ["M"], + "sustainabling": [], + "calling": ["S", "M"], + "Shiite'ses": [], + "deodorized": [], + "penciled": [], + "weaponizes": [], + "activism": ["M"], + "evolve": ["D", "S", "G"], + "fayer": [], + "spiritualist's": [], + "diastase's": [], + "sampans": [], + "seriousness's": [], + "entertaining's": [], + "soberly": [], + "cormorants": [], + "spiel's": [], + "ratifier": ["M"], + "prong": ["M", "D", "S"], + "cockamamie": [], + "baobabs": [], + "fulfillmented": [], + "polysyllable'ses": [], + "frat's": [], + "peevishly": [], + "scorekeepers": [], + "apostleship's": [], + "crow's": [], + "consolable": ["I"], + "zeroed": [], + "bossiness's": [], + "Nouakchott": ["M"], + "wigwags": [], + "knockdown": ["S", "M"], + "pacers": [], + "fastidiousness's": [], + "junketeer": ["M", "S"], + "sesame": ["S", "M"], + "divested": [], + "prophesied": [], + "paper's": [], + "delinquencies": [], + "Sumatran's": [], + "VFW": ["M"], + "indiscommode": [], + "spiritualism": ["M"], + "collation": ["M"], + "Hotpoint's": [], + "lubricants's": [], + "overexert": ["S", "D", "G"], + "mongoloid'ses": [], + "bop": ["S", "M"], + "solicited": ["U"], + "Tintoretto's": [], + "dwelling": ["M"], + "personifiesen": [], + "adjoininged": [], + "Jerald": ["M"], + "dripping's": [], + "corkscrew'sed": [], + "pinholes's": [], + "beheading": [], + "dong's": [], + "exiles's": [], + "Brigadoon": ["M"], + "lees's": [], + "dieter's": [], + "Rufus's": [], + "hoteliers": [], + "toilet": ["M", "D", "G", "S"], + "marred": ["U"], + "Myers's": [], + "moonstruck": [], + "surge": ["D", "S", "M", "G"], + "unnoticed": [], + "ovule's": [], + "aureole": ["S", "M"], + "muffleder": [], + "shadowboxes": [], + "tangibleness": ["M"], + "foreskin'ses": [], + "outvotes": [], + "prospecting": [], + "possessiveness's": [], + "fluids": [], + "Orin": ["M"], + "mechanization's": [], + "hangover": ["M", "S"], + "contributingen": [], + "airmailings": [], + "scoopful's": [], + "manuallies": [], + "keynote": ["M", "Z", "G", "D", "R", "S"], + "ponderousness": ["M"], + "affirmative's": [], + "sickouts's": [], + "isomer's": [], + "Kate": ["M"], + "pike's": [], + "radiatesing": [], + "rifling": ["M"], + "Yalow": ["M"], + "feds": [], + "Sen": [], + "Bancroft": ["M"], + "implantables": [], + "bougainvillea": ["M", "S"], + "anecdotes": [], + "grocery": ["S", "M"], + "negligees": [], + "lockup": ["M", "S"], + "effigy": ["S", "M"], + "unlisted": [], + "doubtfulness's": [], + "sequencers": [], + "redisplacement": [], + "Lombardi's": [], + "bitchy": ["P", "R", "T"], + "singles": ["M"], + "Earnestine": ["M"], + "monsters": [], + "aunties's": [], + "Tolyatti": ["M"], + "Durer's": [], + "fatuously": [], + "premises": [], + "amputatesens": [], + "outgoings": [], + "bribery": ["M"], + "Ephraim's": [], + "occur": ["A", "S"], + "sultanas's": [], + "Branch": ["M"], + "closest": [], + "venturesomeness": ["M"], + "depositors": [], + "Viennese": ["M"], + "semen's": [], + "auscultateds": [], + "spectacular'sly": [], + "smuttierness": [], + "sticklers": [], + "remarked": ["U"], + "casket": ["M", "S"], + "exponentiation": [], + "Antaeus": ["M"], + "buzz": ["M", "D", "R", "S", "Z", "G"], + "cling'ser": [], + "quantum's": [], + "unopposed": [], + "Xochipilli's": [], + "sadden": ["S", "D", "G"], + "drive'sers": [], + "scrotal": [], + "TESL": [], + "passel": ["M", "S"], + "coachloads": [], + "immerseds": [], + "rattler": ["M"], + "Heaviside": ["M"], + "tourniquet": ["M", "S"], + "obediently": [], + "crematories": [], + "jangler": ["M"], + "bodges": [], + "Tallahassee": ["M"], + "Cyril": ["M"], + "chimpanzee's": [], + "pollutingen": [], + "memorandum's": [], + "British's": [], + "canceler": ["M"], + "chanticleer'ses": [], + "Vilnius": ["M"], + "totems's": [], + "ricking's": [], + "pumped": [], + "cinema": ["M", "S"], + "doorbell'ses": [], + "masted": [], + "bountifully": [], + "preexist": ["D", "G", "S"], + "numberly": [], + "throttle's": [], + "interfaith": [], + "cruet": ["S", "M"], + "obsolesces": [], + "goiter": ["S", "M"], + "queers": [], + "encumbrances": [], + "agoraphobic'ses": [], + "hitcher": ["M", "S"], + "emboldened": [], + "airier": [], + "glaces": [], + "neut": [], + "politeness": ["M"], + "middling": [], + "zincked": [], + "suborning": [], + "crazinesser": [], + "muscats": [], + "lord": ["M", "D", "Y", "S", "G"], + "plutocratic": [], + "och": ["R"], + "Marat's": [], + "scruffy": ["R", "P", "T"], + "maskers": [], + "ante's": [], + "Remus's": [], + "Ticketmaster": ["M"], + "donatesens": [], + "Okeechobee's": [], + "Rhee": ["M"], + "flurrying": [], + "Stephenson's": [], + "Son's": [], + "cavort": ["D", "G", "S"], + "tare'ses": [], + "tames": [], + "debilitatingen": [], + "Marxist": ["S", "M"], + "Ontario's": [], + "prop": ["M", "S"], + "barkeeps": [], + "Ivan": ["M"], + "sandbank": ["M", "S"], + "breach's": [], + "overused": [], + "Bluebeard's": [], + "timeline'ses": [], + "relistinged": [], + "shaves": [], + "sanitarium's": [], + "differing": [], + "meth": [], + "handhelds": [], + "grin's": [], + "nightgowns": [], + "snort's": [], + "US's": [], + "effluent's": [], + "calm'sed": [], + "okapis": [], + "streamed": [], + "fireflies": [], + "encyclical": ["S", "M"], + "bung": ["M", "D", "G", "S"], + "titan": ["S", "M"], + "ruffles's": [], + "odorless": [], + "immobilizes": [], + "idealize": ["D", "S", "G"], + "retard's": [], + "pimply": ["R", "T"], + "Westphalia's": [], + "subconsciousness's": [], + "sighted": [], + "yearling's": [], + "weasel'sed": [], + "clandestinely": [], + "bastion's": [], + "jigging": ["A"], + "workbaskets": [], + "rectifieder": [], + "Bates's": [], + "Brampton's": [], + "sobersed": [], + "gamecock's": [], + "Cornelia's": [], + "potent": ["Y"], + "labyrinth": ["M"], + "lifesavers's": [], + "luxuriatingen": [], + "virtue": ["S", "M"], + "rhomboid": ["S", "M"], + "Netscape": ["M"], + "redivides": [], + "solver's": [], + "faulteding": [], + "elude": ["D", "S", "G"], + "cheapskate": ["M", "S"], + "Chelsea": ["M"], + "bethink": ["S", "G"], + "muskeg'ses": [], + "pickets": [], + "option's": [], + "Mazda": ["M"], + "matchbooks": [], + "sacrilege's": [], + "outspokenness": ["M"], + "lathers": [], + "Ward's": [], + "Snowbelt's": [], + "valise's": [], + "jeeps": [], + "Phidias's": [], + "Rotterdam's": [], + "WHO's": [], + "cleanup'ses": [], + "headway's": [], + "Hanson's": [], + "monastic'ses": [], + "originateds": [], + "jabberer's": [], + "delineation": ["M"], + "shiitakes's": [], + "gargles": [], + "EDP's": [], + "adumbrates": [], + "statementing": [], + "tubules": [], + "melioration's": [], + "Plato's": [], + "jurywoman": ["M"], + "burrows": [], + "scam's": [], + "partner": ["M", "D", "S", "G"], + "weedy": ["T", "R"], + "seminarians's": [], + "nonviolent": ["Y"], + "conscientiously": [], + "assaulter": [], + "christen": ["A", "S", "G", "D"], + "holograph's": [], + "Ara's": [], + "enviousness": ["M"], + "AF": [], + "thunderhead": ["S", "M"], + "tyrannize": ["G", "D", "S"], + "brasher": [], + "shamble": ["M", "G", "D", "S"], + "commissionaire": ["S"], + "umiaks": [], + "easternerser": [], + "elvish": [], + "mistaking": [], + "pigeonhole'sing": [], + "extramarital": [], + "Iliad's": [], + "Caloocan": ["M"], + "tolled": [], + "undefinable": [], + "vex": ["G", "D", "S"], + "dryad": ["S", "M"], + "wrack's": [], + "Salvador": ["M"], + "boardroom's": [], + "niacin's": [], + "argosy's": [], + "balaclava": ["M", "S"], + "bygone's": [], + "piety's": [], + "violoncellos": [], + "yegg'ses": [], + "streamline": ["D", "S", "G"], + "twinklings": [], + "inspections's": [], + "alewife": ["M"], + "snorterers": [], + "recruitments": [], + "decaf'ses": [], + "Pinkerton": ["M"], + "thickening": ["M"], + "gait'ser": [], + "Maui": ["M"], + "bonging": [], + "moshesing": [], + "Chickasaw's": [], + "Afghans": [], + "carpel": ["M", "S"], + "Debra": ["M"], + "effendis": [], + "flacks's": [], + "uncooked": [], + "tasseling": [], + "dewberry's": [], + "Lauder": ["M"], + "gravel'sed": [], + "fungicide'ses": [], + "insidiousness's": [], + "Humphreys's": [], + "omnivorousness": ["M"], + "interlace": ["G", "D", "S"], + "acclaimeding": [], + "hatcheck": ["S", "M"], + "Athena's": [], + "necromancy": ["M"], + "willeds": [], + "latent": [], + "gamuts": [], + "preference'ses": [], + "exactingly": [], + "instanter": [], + "wired": ["S"], + "chickenpox's": [], + "toreador'ses": [], + "doubts's": [], + "concertos": [], + "Sara": ["M"], + "judiciousness's": [], + "Cummings": ["M"], + "trumpet'sed": [], + "tizzies": [], + "furthest": [], + "smelt's": [], + "Mooney": ["M"], + "hoosegow's": [], + "donationsing": [], + "Maypole": [], + "erasure": ["S", "M"], + "oar": ["S", "G", "M", "D"], + "eolian": [], + "civvies": ["M"], + "coheirs": [], + "Facebook": ["M"], + "peashooters's": [], + "deathbeds": [], + "semimonthlies": [], + "wideneder": [], + "blink'sed": [], + "intransigence": ["M"], + "inoculations": [], + "chaperoning": [], + "plus": ["M", "S"], + "libidos": [], + "acrider": [], + "liveries": [], + "parathion's": [], + "whorehouse's": [], + "comprehensibly": ["I"], + "Achernar": ["M"], + "tapeline": ["M", "S"], + "fetinged": [], + "spiracles": [], + "punctuate": ["G", "N", "D", "S"], + "Nobelists": [], + "Derby": ["M"], + "trashcans": [], + "adults": [], + "VDU": [], + "tonnes": [], + "dogfishes": [], + "garnish": ["G", "L", "M", "D", "S"], + "cheater": ["M"], + "Janie": ["M"], + "beggarings": [], + "procurement's": [], + "fizzles": [], + "archetype's": [], + "epidemic": ["S", "M"], + "palatial": ["Y"], + "balmiest": [], + "diddleder": [], + "interface": ["M", "G", "D", "S"], + "pipeline": ["S", "M"], + "lifted": [], + "tsed": [], + "graves's": [], + "reverse": ["Y"], + "chickens": [], + "semiarid": [], + "pilot": ["D", "G", "S", "M"], + "sulkier": [], + "viewership": ["M"], + "landsing": [], + "confabulatesing": [], + "Zhukov's": [], + "ammonium": [], + "magnum": ["M", "S"], + "tagger's": [], + "tenuous": ["P", "Y"], + "atheistic": [], + "hemorrhoids": [], + "kudos": ["M"], + "tramps's": [], + "nonmember's": [], + "midsection": ["M", "S"], + "suspend": ["S", "D", "R", "Z", "G"], + "well's": [], + "civilities's": [], + "Vasquez's": [], + "hailstorm": ["M", "S"], + "putrefactive": [], + "retaining": [], + "orators's": [], + "bleeps": [], + "Narmada": ["M"], + "desalinationed": [], + "Liberians's": [], + "ell's": [], + "pone'ses": [], + "tantrums's": [], + "Mariano's": [], + "Knuth": ["M"], + "aerialist's": [], + "California": ["M"], + "lambskins's": [], + "balloonsing": [], + "menstruating": [], + "centrifugeds": [], + "admirably": [], + "or": [], + "portraying": [], + "Jack": ["M"], + "shiftiness's": [], + "saxophonists's": [], + "paraprofessional's": [], + "puns's": [], + "surmountsable": [], + "abrogationed": [], + "marshmallow's": [], + "Branch's": [], + "circumcisesing": [], + "felicitating": [], + "lucidity's": [], + "precedent": ["S", "M"], + "houselights's": [], + "firersing": [], + "sass's": [], + "siesta'ses": [], + "insertsed": [], + "starlight": ["M"], + "bilingual's": [], + "sweetbriers": [], + "uncomplainingly": [], + "epilogues": [], + "assailable": ["U"], + "Dubrovnik": ["M"], + "jaw": ["S", "G", "M", "D"], + "Dixieland's": [], + "tone's": [], + "Reuther": ["M"], + "worsening": [], + "vent": ["D", "G", "S"], + "cornstalks": [], + "beaversing": [], + "Wellingtons's": [], + "spew'sed": [], + "unfruitful": [], + "lawgivers": [], + "draftswoman": ["M"], + "satyr": ["M", "S"], + "alliteratesens": [], + "quadrupleds": [], + "Qatar": ["M"], + "Mesolithic's": [], + "peepeder": [], + "Hosts's": [], + "viaduct": ["S", "M"], + "meditateds": [], + "concealment's": [], + "hind's": [], + "gall'sed": [], + "Ephesians": [], + "Communion": ["S", "M"], + "concision's": [], + "centereding": [], + "Holman": ["M"], + "mainstream": ["S", "M", "D", "G"], + "conveniently": [], + "Septuagint'ses": [], + "mantis": ["M", "S"], + "plushest": [], + "Brandon's": [], + "deflecteding": [], + "invasions": [], + "ramekins's": [], + "Iblis": ["M"], + "Olympians": [], + "sportscastersing": [], + "categorizeds": [], + "wilds": ["M"], + "magistracy": ["M"], + "brand'sed": [], + "solveds": [], + "clamp'sed": [], + "epitomizing": [], + "floutersing": [], + "immanency's": [], + "frontier's": [], + "conviviality's": [], + "balling": [], + "exceptions": [], + "marabouts": [], + "sailboardings": [], + "acquisition'ses": [], + "woks": [], + "fastidiousnessly": [], + "overlapping": [], + "blusterersing": [], + "magnifyingens": [], + "squeezers": [], + "diereses": [], + "begets": [], + "billow's": [], + "stirs": [], + "bucksaw's": [], + "bettereding": [], + "bureau's": [], + "solenoid": ["M", "S"], + "formalism's": [], + "unicycle": ["S", "M"], + "clog's": [], + "wisp": ["M", "S"], + "tonnages": [], + "shifting's": [], + "Stephan's": [], + "linteding": [], + "spenders": [], + "joviality": ["M"], + "OAS's": [], + "division'ses": [], + "sans": [], + "almost": [], + "Capitol": ["S", "M"], + "orzo's": [], + "angularities's": [], + "pitiful": ["Y"], + "Barnaby": ["M"], + "anneal": ["G", "D", "S"], + "begged": [], + "critique's": [], + "plaitings": [], + "brownstones": [], + "property": ["D", "S", "M"], + "boastfully": [], + "exertions": [], + "schoolbag": ["M", "S"], + "rater's": [], + "stateliness": ["M"], + "tramping": [], + "Aeolus": ["M"], + "convalesced": [], + "scorn's": [], + "nonoccupational": [], + "breakups": [], + "wintry": ["T", "R"], + "hound'sed": [], + "looker's": [], + "sociables's": [], + "raptly": [], + "landslip": ["S"], + "dooryard": ["M", "S"], + "partakers": [], + "bathmats": [], + "grottier": [], + "electromagnet'ses": [], + "organizationally": [], + "wittier": [], + "depressive's": [], + "spaces": [], + "hostile's": [], + "weathering": ["M"], + "typists's": [], + "ells": [], + "blacksmiths": [], + "Choctaw's": [], + "gormandized": [], + "ablates": [], + "afterword'ses": [], + "cyclopedia": ["M", "S"], + "waistcoat'ses": [], + "Casandra": ["M"], + "Teller": ["M"], + "Munch": ["M"], + "triumph": ["G", "M", "D"], + "retreaded": [], + "constructionists": [], + "Corinth's": [], + "brownouts": [], + "Akihito's": [], + "tarnish's": [], + "reinforceds": [], + "selectman": ["M"], + "Sharp": ["M"], + "attemptsed": [], + "clericalism": ["M"], + "snuggles": [], + "bey's": [], + "craving": ["M"], + "tablet": ["S", "M"], + "ritziest": [], + "flitted": [], + "furroweds": [], + "buses": [], + "compotes's": [], + "ordainedment": [], + "maidservants's": [], + "Lucy": ["M"], + "dreadfulness": ["M"], + "invadesers": [], + "sensibleness": ["M"], + "gluinged": [], + "judge's": [], + "freakishly": [], + "milksop": ["M", "S"], + "inhalations": [], + "whatshisname": [], + "ransackinged": [], + "mulching": [], + "filletings": [], + "Lloyd's": [], + "secede": ["D", "S", "G"], + "sanding": [], + "tilted": [], + "onrushesing": [], + "martinets": [], + "bewitcheds": [], + "southern's": [], + "Barrymore": ["M"], + "balanceds": [], + "outlast": ["D", "S", "G"], + "Deadhead's": [], + "supper": ["M"], + "treacherousness's": [], + "creators": [], + "scuffeds": [], + "perverting's": [], + "Ecuadorans": [], + "cruse": ["S", "M"], + "hullersing": [], + "excuses": [], + "abjurersing": [], + "Hera": ["M"], + "dactyl'ses": [], + "anent": [], + "Orlons": [], + "Schwarzkopf's": [], + "codex's": [], + "sailing's": [], + "sketchers": [], + "ensigns": [], + "chillness's": [], + "venality": ["M"], + "spluttered": [], + "privatizesing": [], + "twirls's": [], + "Lombard's": [], + "plague's": [], + "conciliateds": [], + "bridesmaids": [], + "tempings": [], + "jingoism's": [], + "communicability": ["M"], + "preschool'ser": [], + "Emilia's": [], + "malfunctioned": [], + "warmings": [], + "serviette": ["M", "S"], + "orneriness's": [], + "Northrop": ["M"], + "bulled": [], + "alembics": [], + "sight's": [], + "Valparaiso": ["M"], + "viewpoints": [], + "pitchfork'sed": [], + "illustriousnessly": [], + "hogtie": ["D", "S"], + "fat's": [], + "inventors": [], + "Terrell": ["M"], + "surpasses": [], + "pans": [], + "comeliness's": [], + "collectivization": ["M"], + "abandoned": [], + "baggies": [], + "childishliness": [], + "scansion": ["M"], + "welts": [], + "sheersness": [], + "futzed": [], + "Zambezi's": [], + "transmigratingen": [], + "subsuming": [], + "contagion": ["M", "S"], + "muffin's": [], + "Shawn's": [], + "dobbin's": [], + "irrefutably": [], + "contractible": [], + "blogging": [], + "swatters's": [], + "marabout": ["S", "M"], + "strongerly": [], + "Olaf's": [], + "extemporizeds": [], + "shallots": [], + "motives": [], + "Che": ["M"], + "unreconstructed": [], + "calorie": ["M", "S"], + "handbooks": [], + "Galapagos": ["M"], + "fries's": [], + "railroaded": [], + "cuckoldry": ["M"], + "classlessness": [], + "airfreight": ["M"], + "by": ["M"], + "samizdats": [], + "espadrille's": [], + "Nadia": ["M"], + "yuppifies": [], + "ligation": ["M"], + "breadth": ["M"], + "phallus's": [], + "densing": [], + "Alabamians's": [], + "implant'sed": [], + "hobs": [], + "bedtime": ["S", "M"], + "sulky'sness": [], + "states": [], + "headings": [], + "formats's": [], + "armful'ses": [], + "buckyball's": [], + "stroppiest": [], + "filibusterers": [], + "adsorption": ["S", "M"], + "whirl'sed": [], + "Oxfords": [], + "strait's": [], + "alienist": ["S", "M"], + "fade's": [], + "livensing": [], + "Vidal's": [], + "legitimated": [], + "twittering": [], + "disputatious": ["Y"], + "factorize": ["G", "D", "S"], + "furring": ["M"], + "banded": [], + "jellyrolls's": [], + "electroencephalographs": [], + "submit": ["A", "S"], + "impress's": [], + "transvestite": ["M", "S"], + "Carnation": ["M"], + "oxygenatingen": [], + "mousiness's": [], + "harpsichordists's": [], + "Haber": ["M"], + "topiary": ["M"], + "separable": [], + "jerrycan": ["S"], + "tardiness": ["M"], + "tack'sed": [], + "semolina's": [], + "extolled": [], + "extractors": [], + "commutator's": [], + "Oshkosh's": [], + "panhandle'sers": [], + "courteousness": ["M"], + "disproof": ["S", "M"], + "Liza": ["M"], + "Ivory": ["M"], + "telescopes's": [], + "humankind": ["M"], + "wad": ["S", "Z", "G", "M", "D", "R"], + "cutie's": [], + "mica's": [], + "baseballs": [], + "birther's": [], + "runlets's": [], + "succumbeds": [], + "backspaced": [], + "Sang's": [], + "tenancy": ["S", "M"], + "resistor": ["M", "S"], + "dredge'sers": [], + "cacheds": [], + "slipcovers": [], + "reasoner's": [], + "darter's": [], + "precocity's": [], + "clouting": [], + "wingding'ses": [], + "Mancunians": [], + "Orizaba": ["M"], + "snatcher's": [], + "yeomanry": ["M"], + "scrag": ["M", "S"], + "afghan's": [], + "Dante": ["M"], + "blowouts": [], + "oneness's": [], + "honeycomb": ["M", "D", "S", "G"], + "angleworm'ses": [], + "Clairol": ["M"], + "innately": [], + "velours": [], + "disfavor": [], + "thwarts": [], + "team's": [], + "patterings": [], + "disfigurements": [], + "Markab's": [], + "rabbits": [], + "singe": ["M", "S"], + "varnish'sed": [], + "quintessences's": [], + "neurologists": [], + "cloudiest": [], + "ginseng": ["M"], + "ESL": [], + "cages": [], + "lever's": [], + "accomplishment'ses": [], + "Goliath's": [], + "Ferrari's": [], + "dafterly": [], + "penetration": ["M"], + "Lisbon's": [], + "expanses": [], + "coonskin": ["M", "S"], + "Merrick's": [], + "lucubration's": [], + "monologist": ["S", "M"], + "airplane": ["M", "S"], + "loiterer's": [], + "topsails": [], + "assiduously": [], + "wickedness's": [], + "uselessness": ["M"], + "recruit'sed": [], + "Cohen's": [], + "mortify": ["N", "G", "D", "S"], + "dynamics": ["M"], + "cajoles": [], + "convokes": [], + "Lang's": [], + "anarchist'ses": [], + "osteopathy": ["M"], + "pussycats": [], + "Rosanne": ["M"], + "parboiling": [], + "hospice": ["M", "S"], + "shamble'sing": [], + "drainboard": ["S", "M"], + "merriness": ["M"], + "solver": ["S", "M"], + "shepherdess": ["M", "S"], + "compresses": [], + "mansions's": [], + "rattle": ["D", "R", "S", "M", "Z", "G", "J"], + "dicinged": [], + "tranquilizing": [], + "potsherd's": [], + "lamination": ["M"], + "pathway'ses": [], + "congratulation's": [], + "mote": ["K", "C", "X", "S", "V", "N"], + "bawdiness's": [], + "footlocker's": [], + "Israelis's": [], + "disquisition": ["M", "S"], + "squeakersing": [], + "interlines": [], + "pumper's": [], + "deposits": [], + "OH": [], + "epiphany's": [], + "manacles": [], + "virologist": ["S", "M"], + "academe": ["M"], + "jailing": [], + "bankrolls": [], + "waddles": [], + "rustle": ["D", "R", "S", "J", "M", "Z", "G"], + "tastelessness's": [], + "Vince's": [], + "supinely": [], + "oligarchies": [], + "nicety's": [], + "eel": ["S", "M"], + "bullshitters's": [], + "amblinged": [], + "gout's": [], + "Cebu's": [], + "comparatives": [], + "meliorate": ["G", "N", "V", "D", "S"], + "confiscating": [], + "Rove": ["R", "M"], + "tramper": ["M"], + "briefer": [], + "mallow's": [], + "refracts": [], + "skin's": [], + "extortionist": ["M", "S"], + "mercilessnessly": [], + "Dana's": [], + "halfbacks": [], + "Dniester": ["M"], + "ponce": ["G", "D", "S"], + "implausibility": ["S", "M"], + "viscid": [], + "Spencerian's": [], + "galoshes": [], + "cerise": ["M"], + "pyromaniacs": [], + "grind": ["S", "Z", "G", "M", "R", "J"], + "freakishness": ["M"], + "blotchier": [], + "documentations's": [], + "misanthropists": [], + "spectrometer'ses": [], + "wrap": ["U", "S"], + "scrape's": [], + "disprove": ["B"], + "reputed": ["Y"], + "undertaken": [], + "Tamworth": ["M"], + "sacristans": [], + "whipsaw'sed": [], + "brushing": [], + "North": ["M"], + "bruiser's": [], + "plaza": ["M", "S"], + "rehab'ses": [], + "boobed": [], + "spreader's": [], + "narrators": [], + "progressive's": [], + "sniff": ["S", "M", "D", "R", "Z", "G"], + "draftees": [], + "beatnik'ses": [], + "reiterative": [], + "muskmelons's": [], + "prurience's": [], + "Roxanne's": [], + "troys": [], + "Allah": ["M"], + "gutter": ["S", "M", "D", "G"], + "circulations": [], + "transfer": ["M", "B", "S"], + "kopecks": [], + "disciplined": ["U"], + "laptop's": [], + "Tartuffe's": [], + "obtuser": [], + "Beatrice": ["M"], + "pesetas": [], + "haltingly": [], + "maintop's": [], + "spawned": [], + "Latham": ["M"], + "judicatory": ["S", "M"], + "lace": ["U", "G", "D", "S"], + "us": [], + "slow": ["D", "R", "Y", "T", "G", "S", "P"], + "criterion": ["M"], + "blarney'sed": [], + "candidate'ses": [], + "paragraph'sed": [], + "standbys": [], + "piece'sing": [], + "umpteen": ["H"], + "nestles": [], + "inseams": [], + "birthmarks": [], + "Macintosh": ["M"], + "frostbite": ["M", "G", "S"], + "decapitates": [], + "toupee's": [], + "lyre": ["M", "S"], + "Bosnia's": [], + "abeam": [], + "gig's": [], + "insincere": [], + "Philistine": ["M"], + "rigidness": ["M"], + "Nativity": ["M"], + "Selkirk": ["M"], + "breadboards": [], + "thongs": [], + "legislatively": [], + "reexport": ["S", "D", "G"], + "Bertillon": ["M"], + "procedures's": [], + "epochs": [], + "lackluster": [], + "glistens": [], + "Bismark's": [], + "fiances": [], + "mewed": [], + "zap's": [], + "installer'ses": [], + "Isolde's": [], + "apathetically": [], + "severe": ["Y", "P", "R"], + "Superman's": [], + "mistreateding": [], + "swill": ["G", "S", "M", "D"], + "entrenchment's": [], + "Alcmena": ["M"], + "extensiveness's": [], + "wagglinged": [], + "soundchecks": [], + "undoubted": ["Y"], + "sprees": [], + "disseminated": [], + "Breton's": [], + "ecosystem'ses": [], + "hotplates": [], + "prophesies": [], + "Zola": ["M"], + "ivied": [], + "chink": ["G", "M", "D", "S"], + "troubleshooted": [], + "homesick": ["P"], + "Panamanian'ses": [], + "Butler's": [], + "allegiance'ses": [], + "crocheting's": [], + "mugger'ses": [], + "consumesers": [], + "Parliament": ["M"], + "sportscasterers": [], + "preexistings": [], + "meal'ses": [], + "frigates": [], + "inject": ["S", "D", "G"], + "floodplains": [], + "windowing": [], + "peruses": [], + "burner": ["M"], + "forfeiting": [], + "slouch": ["Z", "G", "M", "D", "R", "S"], + "catechizeds": [], + "administration's": [], + "depreciated": [], + "photostatted": [], + "drafter's": [], + "lump": ["M", "D", "N", "S", "G"], + "contusions": [], + "pluralities": [], + "hairsplitter's": [], + "gyro": ["M", "S"], + "Nos's": [], + "hexagrams's": [], + "penalization's": [], + "crumbly": ["T", "P", "R"], + "multilayered": [], + "slimline": [], + "merit": ["C", "S", "M"], + "strainers's": [], + "unresponsiveness": [], + "strove": [], + "interdiction's": [], + "brotherhood's": [], + "Punch's": [], + "Esmeralda": ["M"], + "scabbier": [], + "technicality's": [], + "despise": ["D", "S", "G"], + "vestrymen": [], + "backlog's": [], + "analytical": ["Y"], + "adumbrated": [], + "wily": ["R", "T", "P"], + "ballistic": ["S"], + "housemothers": [], + "humidifying": [], + "infectsed": [], + "Kremlinologist": [], + "acoustically": [], + "penetrating": ["Y"], + "mooring's": [], + "cheesiness's": [], + "plumage's": [], + "sentimentalizinged": [], + "caliphates": [], + "meatless": [], + "bulimics": [], + "import": ["Z", "G", "B", "S", "M", "D", "R"], + "Irwin's": [], + "cast": ["A", "S", "G", "M"], + "sake": ["M"], + "disembowelment": ["M"], + "homebody": ["S", "M"], + "loudspeaker": ["M", "S"], + "wrathful": ["Y"], + "churl": ["M", "S"], + "swarms": [], + "angulation": [], + "webisode": ["M", "S"], + "thunder'sed": [], + "unquestioning": ["Y"], + "naphtha's": [], + "stumpier": [], + "alongshore": [], + "iotas": [], + "fleece's": [], + "Sigmund": ["M"], + "guarani's": [], + "William": ["S", "M"], + "Britt": ["M", "N"], + "stringsers": [], + "separatesness": [], + "tracheotomies": [], + "Shylockian's": [], + "cottonmouth's": [], + "Thais": [], + "boundlessnessly": [], + "blackleg": ["S"], + "uptick's": [], + "piggybacked": [], + "militarists's": [], + "wag's": [], + "superstars": [], + "overpoweringly": [], + "hatboxes": [], + "disillusioned": [], + "wadding": ["M"], + "falcons": [], + "Berbers's": [], + "doddle": [], + "shortenings": [], + "coon's": [], + "outlaw's": [], + "plurals": [], + "nacelle": ["S", "M"], + "soulfulness's": [], + "cutworm": ["M", "S"], + "sheepishness's": [], + "Brunswick": ["M"], + "Slavonic": ["M"], + "standerings": [], + "gallants's": [], + "coruscates": [], + "cuboid": ["S"], + "stenciling": [], + "blackberry's": [], + "antics": [], + "Taklamakan's": [], + "balance": ["U", "D", "S", "G"], + "nocturnally": [], + "unlabeled": [], + "zenned": [], + "Mobile": ["M"], + "Halifax": ["M"], + "abominated": [], + "banzai's": [], + "salsa": ["M", "S"], + "chorea": ["M"], + "soaks": [], + "few": ["T", "P", "M", "R"], + "wholesale": ["M", "Z", "G", "D", "R", "S"], + "hypnotizes": [], + "carpsers": [], + "burped": [], + "aggrandizement's": [], + "hearts": [], + "babushkas's": [], + "Crick's": [], + "resuscitator": ["S", "M"], + "folksingers": [], + "Media's": [], + "trilogies's": [], + "kart'ses": [], + "cerebrum's": [], + "rosy": ["R", "T", "P"], + "equivalentlies": [], + "Mauritania": ["M"], + "interleave": ["D", "S", "G"], + "efficiencies's": [], + "Chechen's": [], + "bohemian": ["S", "M"], + "chasuble's": [], + "willies": ["M"], + "shrinkable": [], + "chickadees": [], + "stab'sly": [], + "scoutmasters": [], + "drainboards": [], + "Maynard's": [], + "typing": ["M"], + "implementable": ["U"], + "booklet'ses": [], + "japing": [], + "solute": ["A", "X", "N"], + "ere": [], + "floorwalkers": [], + "pidgin": ["M", "S"], + "cogitates": [], + "autodidact's": [], + "granting": [], + "towhead'sed": [], + "founders": [], + "prize": ["M", "G", "D", "S"], + "scowleds": [], + "evangelism": ["M"], + "effusiveliness": [], + "hillinesser": [], + "finesse's": [], + "Ceausescu's": [], + "manifold": ["G", "M", "D", "S"], + "optics's": [], + "decriminalize": [], + "archdukes": [], + "ovenbirds": [], + "extent": ["S", "M"], + "joggleds": [], + "cope's": [], + "Zhukov": ["M"], + "status'ses": [], + "scouring": [], + "palmtop's": [], + "bites's": [], + "goose": ["D", "S", "M", "G"], + "effeteness's": [], + "damnation's": [], + "Qiqihar": ["M"], + "caramelizing": [], + "frittereds": [], + "albacore": ["S", "M"], + "mugger": ["M", "S"], + "ices": [], + "captaincies's": [], + "Manet": ["M"], + "mimic": ["S", "M"], + "testicles": [], + "hardheadedness": ["M"], + "culotte": ["S", "M"], + "spellbind": ["Z", "G", "R", "S"], + "shrouding": [], + "Mathias": ["M"], + "subjugationed": [], + "cancellation": ["S", "M"], + "Paralympic": ["S"], + "prisonsers": [], + "pawnbroking's": [], + "Lilia": ["M"], + "stopcock's": [], + "Marci": ["M"], + "Maurois": ["M"], + "airmen": [], + "neither": [], + "campaigns's": [], + "scantiness": ["M"], + "shack'sed": [], + "soupier": [], + "duffersing": [], + "frigate": ["M", "S"], + "rucksack": ["M", "S"], + "chef's": [], + "injurer's": [], + "counterclaiming": [], + "pixel": ["M", "S"], + "stewing": [], + "collard's": [], + "Trojans": [], + "Amaterasu": ["M"], + "Caxton's": [], + "chronograph's": [], + "potluck's": [], + "MD's": [], + "Arkansan's": [], + "intertwininged": [], + "Tamika's": [], + "Colo": [], + "Governor": [], + "Mario's": [], + "underplay": ["D", "G", "S"], + "namesake": ["S", "M"], + "Huber": ["M"], + "applause": ["M"], + "condo's": [], + "hymnbooks's": [], + "intercommunicating": [], + "mutinies's": [], + "tricentennial's": [], + "occupational": ["Y"], + "Parnassus'ses": [], + "briny": ["R", "T", "P"], + "maxilla": ["M"], + "kindles": [], + "chemise'ses": [], + "Vance's": [], + "salute's": [], + "Serrano": ["M"], + "capitalism's": [], + "fawn's": [], + "interrelates": [], + "sealant's": [], + "border": ["G", "M", "D", "S"], + "scaliness's": [], + "monk": ["M", "S"], + "slaphappy": [], + "witticism's": [], + "fetish": ["M", "S"], + "Barbadian": ["S", "M"], + "lethargy's": [], + "deny": ["Z", "G", "D", "R", "S"], + "hickory": ["S", "M"], + "culls": [], + "ranting": [], + "cottage": ["M", "Z", "G", "R", "S"], + "parvenus": [], + "confectionsers": [], + "silliness's": [], + "interrogatives": [], + "Madeiras's": [], + "potted": [], + "intent": ["S", "M", "Y", "P"], + "incurably": [], + "racy": ["P", "R", "T"], + "bunkum's": [], + "rationed": [], + "pardners": [], + "chattel": ["M", "S"], + "Boers": [], + "dukedoms": [], + "evening's": [], + "unquestionably": [], + "curmudgeon'sly": [], + "towpath's": [], + "Evelyn's": [], + "runoff": ["S", "M"], + "intermixes": [], + "firefighter": ["M"], + "internalizes": [], + "dehumanize": [], + "descriptors": [], + "tinsel'sed": [], + "carbohydrates's": [], + "leverage": ["C", "D", "S", "G"], + "shortcuts": [], + "howdah's": [], + "interrogatories": [], + "postponing": [], + "aorta": ["M", "S"], + "weens": [], + "carders": [], + "polishes": [], + "mads's": [], + "Woolf's": [], + "how'd": [], + "staining": [], + "lobster'ses": [], + "tenuousness's": [], + "syndicatingen": [], + "Acevedo": ["M"], + "miscibility": ["M"], + "dive'sers": [], + "scrips": [], + "believable": ["U"], + "potter": ["G", "S", "M", "D"], + "liquidatingen": [], + "rood's": [], + "braggadocio's": [], + "obstetrician": ["S", "M"], + "sins": [], + "refurbishment'ses": [], + "metacarpus's": [], + "assemblywoman's": [], + "Meadows": ["M"], + "gaffers": [], + "operation": ["M"], + "cultivatable": [], + "researcher": [], + "anesthetizeds": [], + "intersession's": [], + "tastefulness": ["E", "M"], + "gabbleds": [], + "scrip's": [], + "Carlson": ["M"], + "Quaalude's": [], + "squeal'sed": [], + "cropper'ses": [], + "radiosondes's": [], + "foothold": ["M", "S"], + "lemony": [], + "unobstructed": [], + "corset": ["S", "G", "M", "D"], + "misreading": ["M"], + "necessities": [], + "botching's": [], + "duelists's": [], + "jolter": ["M"], + "chancre's": [], + "windiness's": [], + "naturalizeds": [], + "fizzleds": [], + "peninsulas's": [], + "jolteder": [], + "salutatorian": ["M", "S"], + "emulator": ["S", "M"], + "legitimatizeds": [], + "scrimshaweding": [], + "maisonette'ses": [], + "IRAs's": [], + "Keynes": ["M"], + "nuttiest": [], + "straightforwardness": ["M"], + "Kinsey": ["M"], + "spellchecker": ["M"], + "sweptback": [], + "Berkeley's": [], + "laggard": ["M", "Y", "S"], + "adjuring": [], + "roads": [], + "guitarist's": [], + "awl": ["S", "M"], + "nucleons": [], + "project'sed": [], + "maiden'sly": [], + "braes's": [], + "thingy": ["S"], + "Loyd's": [], + "deftness": ["M"], + "crosswinds": [], + "mesmerizing": [], + "tincturing": [], + "Serbs's": [], + "feats": [], + "Molly's": [], + "Speer's": [], + "thatching": ["M"], + "hgt": [], + "Rowland's": [], + "smarterly": [], + "eatable": ["S", "M"], + "Sheetrock": ["M"], + "Metallica": ["M"], + "acquittal's": [], + "fearing": [], + "boater's": [], + "fountainhead": ["M", "S"], + "Veronese": ["M"], + "nonracial": [], + "conspire": ["G", "D"], + "quadrilateral": ["S", "M"], + "mulcting": [], + "dictum": ["M"], + "ecotourist": ["M", "S"], + "telecasting": [], + "gerrymandering": ["M"], + "trill": ["G", "S", "M", "D"], + "raspberries": [], + "topsides's": [], + "finales": [], + "Didrikson's": [], + "complaint's": [], + "frostbit": [], + "bemusing": [], + "examiner's": [], + "Lindsay's": [], + "Dixon's": [], + "Budapest": ["M"], + "expedited": [], + "airhead's": [], + "deescalation": [], + "tickler's": [], + "peevishness": ["M"], + "hurts": [], + "consultation'ses": [], + "pinions's": [], + "ducky's": [], + "weatherboard": ["S", "G"], + "sleepiness": ["M"], + "satanically": [], + "freelancer's": [], + "cunt's": [], + "nooses's": [], + "slimmest": [], + "racetrack's": [], + "hoes's": [], + "isotopic": [], + "campaigns": [], + "synchronized": [], + "Brent": ["M"], + "cocoons's": [], + "whiles's": [], + "workload": ["M", "S"], + "cuticle's": [], + "assignment's": [], + "plighted": [], + "modifiersing": [], + "impeller'ses": [], + "enumeratesing": [], + "easiness": ["U", "M"], + "Clairol's": [], + "eleemosynary": [], + "tenability's": [], + "shiver's": [], + "oldsters": [], + "viii": [], + "Arjuna": ["M"], + "dovecote's": [], + "themeds": [], + "assiduousness's": [], + "mislaying": [], + "electrostatics's": [], + "gossipersing": [], + "spatially": [], + "Ozark'ses": [], + "routes": [], + "quailed": [], + "dart": ["S", "Z", "G", "M", "D", "R"], + "killings": [], + "chloroform's": [], + "toke": ["M", "G", "D", "S"], + "Conakry": ["M"], + "declineder": [], + "Araceli's": [], + "terserly": [], + "Bimini's": [], + "twinged": [], + "strength": ["M"], + "lingeringsed": [], + "Fawkes's": [], + "ceremonies's": [], + "environment'ses": [], + "gunwales": [], + "geographic": [], + "vapid": ["Y", "P"], + "blade": ["M", "D", "S"], + "sulkiness": ["M"], + "trialing": [], + "composer'ses": [], + "forecastersing": [], + "inhibits": [], + "hornpipes": [], + "lbs": [], + "videotaped": [], + "foredoomeding": [], + "lingo's": [], + "saddle": ["U", "D", "S", "G"], + "colonnade": ["M", "D", "S"], + "eructs": [], + "studded": [], + "terrorizes": [], + "roominess's": [], + "glee": ["M"], + "vegetarian's": [], + "brew's": [], + "urethane's": [], + "loom'sed": [], + "popover's": [], + "enmesheds": [], + "Rostov's": [], + "Leonid": ["M"], + "revere": ["D", "S", "G"], + "Dior's": [], + "eruditely": [], + "truckloads's": [], + "senses": [], + "impedesing": [], + "Bauer": ["M"], + "horns": [], + "experience's": [], + "syllable'ses": [], + "itemizinged": [], + "inclusion'ses": [], + "journeyer's": [], + "tocsins": [], + "muster'sed": [], + "Bosnian": [], + "girdleds": [], + "micromanaging": [], + "thesauruses": [], + "homeliness": ["M"], + "Clydesdale's": [], + "skimmer's": [], + "prefix's": [], + "awls's": [], + "internet": [], + "bandiers": [], + "sacredness": ["M"], + "tessellatingen": [], + "incarceratesing": [], + "clxix": [], + "Nepalese": ["M"], + "spinnaker's": [], + "wombats": [], + "Columbus's": [], + "tare's": [], + "cagiest": [], + "Kulthumm": ["M"], + "selenium": ["M"], + "fulsomenessly": [], + "dozinged": [], + "cobblestone": ["S", "M"], + "barberries's": [], + "joyfullest": [], + "compartmentalization's": [], + "forearms": [], + "Renee's": [], + "spasms's": [], + "snagging": [], + "Valeria's": [], + "ichthyologist's": [], + "paramountcy": [], + "banquettes": [], + "wok": ["S", "M", "N"], + "betel": ["M"], + "greatly": [], + "miniature's": [], + "feasterers": [], + "withed": [], + "traitors's": [], + "safeguarded": [], + "mi'sen": [], + "bagatelle": ["S", "M"], + "gigantically": [], + "split's": [], + "osier": ["M", "S"], + "buttes's": [], + "receptively": [], + "Ordovician": ["M"], + "wanks": [], + "finalizeds": [], + "vociferousliness": [], + "kayos": [], + "malapropisms": [], + "lukewarmness's": [], + "outfits's": [], + "cobblers": [], + "gnaw": ["D", "G", "S"], + "dearerly": [], + "ayah's": [], + "emporium's": [], + "tarmac'ses": [], + "entry's": [], + "soybean's": [], + "Dinah": ["M"], + "overheating": [], + "subbing": [], + "evangelists": [], + "marveling": [], + "conveying": [], + "cello's": [], + "tramper's": [], + "dinkiers": [], + "notation": ["F", "C", "S", "M"], + "typesetter": ["M", "S"], + "sortie's": [], + "exigences": [], + "counterproductive": [], + "bonus'ses": [], + "satisfactory": ["U"], + "harrumphinged": [], + "toil": ["M", "D", "R", "Z", "G", "S"], + "navies's": [], + "pediatrician's": [], + "reciprocation's": [], + "interceded": [], + "Manx's": [], + "perpetually": [], + "Henry's": [], + "trivializinged": [], + "grabbed": [], + "dominates": [], + "transmogrified": [], + "crouch's": [], + "nitpickinged": [], + "Mandy": ["M"], + "Emile's": [], + "hemoglobin": ["M"], + "neoclassicism": ["M"], + "leatherneck'ses": [], + "stray's": [], + "gayness": ["M"], + "proceeding": ["M"], + "Bechtel's": [], + "functionalist": ["S"], + "thoroughest": [], + "tubful": ["M", "S"], + "dispense": ["B", "Z", "G", "D", "R", "S"], + "backdating": [], + "parallel": ["S", "G", "M", "D"], + "cinch'sed": [], + "torts": [], + "mentor": ["M", "D", "S", "G"], + "Baha'i": ["M"], + "Pepys's": [], + "Glover": ["M"], + "principled": ["U"], + "holdingses": [], + "holograph": ["M"], + "hallmarking": [], + "rants": [], + "fractiousness's": [], + "friskierness": [], + "birdwatchers": [], + "platted": [], + "grazed": [], + "Coventries's": [], + "jump'sed": [], + "Roth's": [], + "autopsies": [], + "stablemates": [], + "Epsom": ["M"], + "translucence's": [], + "reconstitute": [], + "gerrymandered": [], + "Salisbury's": [], + "lyrebird'ses": [], + "interwove": [], + "undistributed": [], + "slier": [], + "branding": [], + "monsters's": [], + "w": ["D", "N", "X", "T", "G", "V", "J"], + "vanquish": ["Z", "G", "D", "R", "S"], + "compromising": [], + "curtail": ["G", "D", "S", "L"], + "Surat's": [], + "chalked": [], + "provokersing": [], + "bestiality's": [], + "encoder's": [], + "deafens": [], + "accord'sed": [], + "Hardy": ["M"], + "Weber": ["M"], + "c": ["I", "E", "S"], + "lad's": [], + "abscission": ["M"], + "bereavement'ses": [], + "barbecuing": [], + "receivers": [], + "braid": ["G", "M", "D", "S"], + "finalize": ["D", "S", "G"], + "attitude": ["S", "M"], + "commuter": ["M"], + "burgomasters's": [], + "nihilists": [], + "Alston": ["M"], + "Namibians": [], + "enmity": ["S", "M"], + "hearkening": [], + "creeds": [], + "pedantic": [], + "hoards": [], + "oxygen": ["M"], + "Heywood's": [], + "fluster'sed": [], + "Mohammedans": [], + "coverings": [], + "metabolize": ["D", "S", "G"], + "daybed'ses": [], + "gripping": [], + "perfectionist's": [], + "Pangaea's": [], + "holdovers": [], + "Melanie": ["M"], + "wimpish": [], + "tibiae": [], + "familiarizes": [], + "Alamogordo": ["M"], + "reinitialized": [], + "fluoridates": [], + "understudyinged": [], + "chastity": ["M"], + "seine'sers": [], + "motorboat's": [], + "lorry": ["S", "M"], + "myrmidon": ["M", "S"], + "shuttlecocked": [], + "connubial": [], + "purists": [], + "gestationed": [], + "Eminence": [], + "smashes": [], + "puffier": [], + "Ginsu": ["M"], + "library": ["S", "M"], + "forecourts": [], + "Glendale": [], + "slalomeding": [], + "nymphos": [], + "divans": [], + "piggybacks": [], + "Cavour's": [], + "conductor'ses": [], + "showering": [], + "Seconal": ["M"], + "inalienably": [], + "sylphs": [], + "cessions": [], + "espresso's": [], + "pedometer'ses": [], + "suntrap": ["S"], + "murmur": ["Z", "G", "J", "M", "D", "R", "S"], + "category's": [], + "pharmacopoeia'ses": [], + "phenol's": [], + "sainthood's": [], + "Chatterton's": [], + "Carboniferous": ["M"], + "hopeful'sly": [], + "Wicca's": [], + "icing": ["S", "M"], + "Mister": [], + "beakers": [], + "alloy": ["G", "M", "D", "S"], + "objector": ["M", "S"], + "stringency's": [], + "grump's": [], + "starching's": [], + "compilation's": [], + "honsers": [], + "desiccated": [], + "congruence": ["M"], + "scholar's": [], + "Mallory's": [], + "ornithologist's": [], + "James": ["M"], + "Munro's": [], + "postmistress's": [], + "insolvencies": [], + "Porfirio": ["M"], + "wreckage": ["M"], + "repaint": ["G", "D", "S"], + "betides": [], + "Guamanian": [], + "foods": [], + "teals": [], + "oleomargarine's": [], + "bookmarked": [], + "burgerses": [], + "hedgehopped": [], + "arbitrage": ["M", "Z", "G", "D", "R", "S"], + "exulteding": [], + "Gladstone's": [], + "recoup": ["D", "G"], + "putting's": [], + "onset's": [], + "Parrish's": [], + "Sunnites": [], + "presageds": [], + "intellectuals": [], + "fisticuffs": ["M"], + "pseudoscience's": [], + "catheterizesing": [], + "doffeding": [], + "chartering": [], + "technophobe": ["S"], + "wees": [], + "sentience": ["I", "M"], + "pentagon's": [], + "seclusion's": [], + "pricey": [], + "Eastern": ["R"], + "manipulator's": [], + "clergies's": [], + "complexities": [], + "Argonaut'ses": [], + "baguette's": [], + "shinguard": ["M"], + "clarinetists's": [], + "to": ["I", "U"], + "roughnecked": [], + "lesbians's": [], + "sunniness": ["M"], + "pompom's": [], + "Burundian'ses": [], + "Plutarch's": [], + "pressureds": [], + "colostrum's": [], + "horselaugh's": [], + "podium": ["S", "M"], + "patronage's": [], + "Scan": [], + "delimitation": [], + "armoreder": [], + "invincibility": ["M"], + "peacekeeper": ["S", "M"], + "tong": ["M", "D", "G", "S"], + "rosebushes": [], + "interdicting": [], + "TNT's": [], + "codicil's": [], + "Lenore's": [], + "plow'sed": [], + "breezeds": [], + "coheres": [], + "rebel's": [], + "interior": ["S", "M"], + "weakenersing": [], + "mudslingers's": [], + "Apache's": [], + "fall's": [], + "unfiltered": [], + "Gallegos": ["M"], + "FMs's": [], + "overshared": [], + "envies": [], + "jotting's": [], + "pillbox": ["M", "S"], + "blushing": [], + "toughies": [], + "activities": [], + "cornerers": [], + "hangerings": [], + "decrepitude": ["M"], + "debauchees": [], + "Corine": ["M"], + "conciseness's": [], + "constituted": [], + "showerproof": [], + "herbage": ["M"], + "irrationally": [], + "spidery": [], + "Ochoa": ["M"], + "folksy": ["P", "T", "R"], + "shabby": ["P", "T", "R"], + "midwifeds": [], + "dieresis's": [], + "indigents": [], + "pity's": [], + "tokens's": [], + "sprays": [], + "Moll's": [], + "piety": ["M"], + "Darwinisms's": [], + "erasers": [], + "dorks": [], + "baths": [], + "GSA": [], + "lactose's": [], + "gunnel's": [], + "hitherto": [], + "floweriness's": [], + "Gwalior": ["M"], + "enlistment's": [], + "worthiness": ["U", "M"], + "larboards's": [], + "unholy": ["T"], + "flamethrowers": [], + "pickle": ["M", "G", "D", "S"], + "benignity's": [], + "emasculated": [], + "Ga's": [], + "bluegrass's": [], + "lunchtime's": [], + "sobs's": [], + "unlovable": [], + "semipermeable": [], + "accordance's": [], + "tabulation": ["M"], + "Berry's": [], + "director's": [], + "coherently": [], + "Halley": ["M"], + "crispest": [], + "anybodies": [], + "sketchpad": ["S"], + "despondency's": [], + "peacefulness's": [], + "hardtack": ["M"], + "apocalyptic": [], + "Heifetz": ["M"], + "prey": ["G", "M", "D", "S"], + "terminals": [], + "privationer": [], + "new's": [], + "timetables": [], + "Congolese's": [], + "Townsend": ["M"], + "slumdog's": [], + "Caracas": ["M"], + "Teding": [], + "laboratories's": [], + "caduceus's": [], + "ruefully": [], + "uplift's": [], + "commuting": [], + "injudiciousness": [], + "Malagasy's": [], + "indecisiveness": [], + "sensitize": ["C", "D", "S", "G"], + "matrix": ["M"], + "sneered": [], + "Brest's": [], + "impassibility": ["M"], + "floe": ["M", "S"], + "firefight": ["M", "R", "S", "Z", "G"], + "hastenens": [], + "mimeographing": [], + "alderwomen": [], + "chaperon's": [], + "Ruiz's": [], + "directsed": [], + "facilitator's": [], + "disconfigure": [], + "combustibles": [], + "opulent": ["Y"], + "storybooks's": [], + "orderly": ["P", "S", "M"], + "cause'sers": [], + "jaunts": [], + "knucklehead's": [], + "luxuriating": [], + "Suetonius's": [], + "beryl's": [], + "raideder": [], + "pebbled": [], + "pilferersing": [], + "impugner": ["M"], + "sixteen": ["S", "M", "H"], + "cutlers's": [], + "dryad's": [], + "precocity": ["M"], + "transmutations's": [], + "assemblage": ["S", "M"], + "rectifiers": [], + "sport'sed": [], + "foulness's": [], + "authority's": [], + "currycomb": ["S", "G", "M", "D"], + "toked": [], + "ingenue's": [], + "boas's": [], + "bulkier": [], + "freshened": [], + "kinswoman": ["M"], + "bedraggle": ["G", "D", "S"], + "Noyes": ["M"], + "airman's": [], + "citation": ["A", "M", "S"], + "scofflaw's": [], + "pallbearers": [], + "processinged": [], + "conformist": ["S", "M"], + "doyenne": ["M", "S"], + "expressible": ["I"], + "one": ["S", "X", "M", "N", "P"], + "punctuality": ["M"], + "spider": ["S", "M"], + "convenience's": [], + "timbrels's": [], + "avoideding": [], + "seacoasts's": [], + "saintliest": [], + "introduces": [], + "Lenin": ["M"], + "bullfighter's": [], + "anuses": [], + "leeriness": ["M"], + "recommence": [], + "supersaturates": [], + "checkering": [], + "paperbacks's": [], + "beast's": [], + "ceramics's": [], + "poled": [], + "diapers's": [], + "lumpeden": [], + "luminous": ["Y"], + "apprised": [], + "deadbeats": [], + "booze'sers": [], + "sally'sing": [], + "folksier": [], + "ameliorative": [], + "Mountie's": [], + "betrayer's": [], + "thankless": ["P", "Y"], + "comely": ["R", "P", "T"], + "referents": [], + "surrender": ["M", "D", "S", "G"], + "grottoes": [], + "Alvarado's": [], + "counteracts": [], + "accelerations": [], + "loaning": [], + "divvy's": [], + "toughness": ["M"], + "underscoreds": [], + "preventables": [], + "reconfigure": ["D"], + "Francois": ["M"], + "Mafioso": ["M"], + "gleans": [], + "frightens": [], + "ablated": [], + "butterball": ["M", "S"], + "primps": [], + "skunking": [], + "extrapolatingen": [], + "Chopra's": [], + "twaddler": ["M"], + "Jayapura": ["M"], + "disjointedness": ["M"], + "whizkid's": [], + "Spam": ["M"], + "baptizeder": [], + "merganser": ["M", "S"], + "elopement'ses": [], + "Ks's": [], + "Audi's": [], + "multiples": [], + "samba's": [], + "ambiguous": ["U", "Y"], + "Swissair's": [], + "umbrage's": [], + "internee's": [], + "truss'sed": [], + "peduncles": [], + "dizzies": [], + "cureder": [], + "yukked": [], + "wade'ses": [], + "adenoid": ["S", "M"], + "Utopians": [], + "counters": [], + "shore's": [], + "watery": ["P", "T", "R"], + "Chickasaws": [], + "minnows": [], + "beavers": [], + "ass's": [], + "dewclaws's": [], + "postulate's": [], + "depth": ["M"], + "excretion's": [], + "Baotou's": [], + "tangling": [], + "bungalow's": [], + "gt": [], + "Songhai's": [], + "trophy's": [], + "parodies's": [], + "hostessing": [], + "clientele'ses": [], + "Voyager's": [], + "drummer": ["S", "M"], + "ratiocination's": [], + "punished": ["U"], + "pertinaciously": [], + "allusiveness": ["M"], + "roaring": ["M"], + "likely": ["U", "P", "R", "T"], + "cavalryman": ["M"], + "hardihood's": [], + "eardrum's": [], + "slum's": [], + "inducteding": [], + "lapidaries's": [], + "sloppier": [], + "forgoerers": [], + "Marceau's": [], + "trigonometrical": [], + "booty": ["S", "M"], + "substitution's": [], + "euro'ses": [], + "excusably": ["I"], + "regencies's": [], + "impetuosity's": [], + "rack": ["G", "M", "D", "S"], + "Julius's": [], + "mambo'sed": [], + "constrictions": [], + "hammerer's": [], + "jilt'sed": [], + "lingered": [], + "clodhoppers": [], + "invalidly": [], + "triangularly": [], + "Dylan's": [], + "shock's": [], + "scrod": ["M"], + "borrowers": [], + "unblemished": [], + "outweighing": [], + "salami's": [], + "copulatives": [], + "femininity": ["M"], + "outshining": [], + "tibia": ["M"], + "extinguishing": [], + "cogitating": [], + "arroyos": [], + "quot": ["B"], + "denims": [], + "jigsaw's": [], + "weatherization's": [], + "cesspool's": [], + "copiousnessly": [], + "distracting": [], + "dilapidation's": [], + "waywardly": [], + "canoodle": ["D", "S", "G"], + "vicarage's": [], + "place": ["A", "E", "S", "D", "L", "G"], + "clits's": [], + "miniskirt'ses": [], + "keeper's": [], + "bossier": [], + "unauthorized": [], + "coherent": ["I", "Y"], + "papaya's": [], + "destine": ["D", "S", "G"], + "Chirico": ["M"], + "pushier": [], + "salesmanship": ["M"], + "crossbeam": ["M", "S"], + "grillsing": [], + "restoration's": [], + "parishes": [], + "classmates": [], + "brandied": [], + "haycock": ["S", "M"], + "fathead's": [], + "distinguisheds": [], + "innit": [], + "klutz": ["M", "S"], + "bloodstream": ["S", "M"], + "meteorologists's": [], + "envy'sing": [], + "concepts": [], + "buzzards": [], + "ruthless": ["Y", "P"], + "falterings's": [], + "exclamatory": [], + "cryptograms": [], + "triumphed": [], + "induction'ses": [], + "breathe": [], + "Ndjamena's": [], + "Mazola's": [], + "palindromic": [], + "bringing": [], + "successor": ["S", "M"], + "shareholder": ["S", "M"], + "appearance's": [], + "revolution's": [], + "banally": [], + "precolonial": [], + "Cook": ["M"], + "day": ["S", "M"], + "bakes's": [], + "conclusively": [], + "bandages": [], + "cloth": ["M"], + "doom'sed": [], + "impotency": ["M"], + "headdresses": [], + "embellish": ["L", "G", "D", "S"], + "doss": ["D", "R", "S", "Z", "G"], + "traffickers": [], + "polyhedron's": [], + "lamprey's": [], + "await": ["G", "D", "S"], + "fajitas": ["M"], + "reflate": ["X", "D", "S", "G", "N"], + "gaiters": [], + "agglutination's": [], + "overspend": ["S", "G"], + "NBA": ["M"], + "Dominique": ["M"], + "joyfulliness": [], + "fibbers's": [], + "Kemerovo": ["M"], + "Eurasians": [], + "visaeds": [], + "bylines": [], + "companionship": ["M"], + "blooping's": [], + "smacks": [], + "bounder's": [], + "jobholders": [], + "regularities's": [], + "feverishly": [], + "vamooses": [], + "unpolluted": [], + "credenzas's": [], + "dishpan": ["S", "M"], + "waterbirds": [], + "maidsens": [], + "sashay": ["S", "G", "M", "D"], + "pacer's": [], + "underling": ["M", "S"], + "biked": [], + "transshipment": ["M"], + "weep's": [], + "streaksers": [], + "bucketful": ["M", "S"], + "nadir's": [], + "rumbling's": [], + "tanneries": [], + "unitizeds": [], + "blindsideds": [], + "stablemate": ["S"], + "fuchsia's": [], + "recuperating": [], + "origami's": [], + "circus": ["M", "S"], + "militantly": [], + "sleeking": [], + "passing'sly": [], + "meteorologist's": [], + "illiterate": ["M", "Y", "S"], + "enunciatingen": [], + "mullets": [], + "registry": ["S", "M"], + "addition": ["S", "M"], + "sermonized": [], + "yodel'sed": [], + "diphthong": ["S", "M"], + "vicar": ["S", "M"], + "firetruck'ses": [], + "noneducational": [], + "Baptists's": [], + "modicums": [], + "SARS": ["M"], + "trochees's": [], + "neckerchief": ["M", "S"], + "monorail's": [], + "uranium": ["M"], + "snow'sed": [], + "employingment": [], + "panic's": [], + "ultimate's": [], + "woofsers": [], + "anticlockwise": [], + "hakes": [], + "krypton": ["M"], + "college's": [], + "wingspan's": [], + "ricochet's": [], + "stopgap's": [], + "Samsonite's": [], + "Unukalhai": ["M"], + "pottered": [], + "Lebanese": ["M"], + "choreographed": [], + "vixenishly": [], + "raid'sed": [], + "inundatingen": [], + "commissars": [], + "bothering": [], + "settablings": [], + "Cochran": ["M"], + "Ga": ["M"], + "mulligans's": [], + "pathogens's": [], + "governesses": [], + "presided": [], + "roasts": [], + "adaptation's": [], + "mutinous": ["Y"], + "dandy's": [], + "pongs": [], + "Rieslings": [], + "Lennon": ["M"], + "wafflinged": [], + "clarifies": [], + "pickers": [], + "pussy": ["T", "R", "S", "M"], + "sensibility": ["I", "M"], + "Carnation's": [], + "patrimony's": [], + "simony": ["M"], + "Kenyatta's": [], + "hydrate's": [], + "severest": [], + "manufacture": ["D", "R", "S", "M", "Z", "G"], + "acquiesceds": [], + "poison's": [], + "churchgoer": ["S", "M"], + "dined": [], + "harboring's": [], + "jadeite's": [], + "hoariness's": [], + "dogwood'ses": [], + "Debbie's": [], + "councilperson": ["S", "M"], + "honor's": [], + "unmanning": [], + "lithographersing": [], + "miscuing": [], + "delis's": [], + "befogging": [], + "duffings": [], + "mornsing": [], + "ultrasound": ["M", "S"], + "sleighed": [], + "infants": [], + "stepped": [], + "lamesness": [], + "pauperizing": [], + "speedways's": [], + "Sopwith": ["M"], + "satirical": ["Y"], + "dupers": [], + "juicier": [], + "exodus'ses": [], + "resubmitting": [], + "slops's": [], + "demur": ["T", "M", "R", "S"], + "parodieds": [], + "execrating": [], + "migratory": [], + "Chester's": [], + "Sputnik's": [], + "crenelationsing": [], + "deducting": [], + "ban's": [], + "Nahuatls": [], + "readdress": [], + "Beulah's": [], + "houseboys": [], + "humiliatingen": [], + "dustpans's": [], + "saw'sed": [], + "footbridges": [], + "hammer'sed": [], + "cerebrums": [], + "Formosa's": [], + "privacy's": [], + "professional": ["M", "Y", "S"], + "thunder": ["Z", "G", "M", "D", "R", "S"], + "deicer'ses": [], + "tantalum's": [], + "Ionian": ["M", "S"], + "mantra": ["M", "S"], + "issues": [], + "underpants's": [], + "baubles": [], + "Gnosticism's": [], + "pillowcase": ["M", "S"], + "blended": [], + "chateaus's": [], + "snore'sers": [], + "doodleder": [], + "straitjacketing": [], + "quailing's": [], + "behemoth's": [], + "cognizance's": [], + "proofreadser": [], + "fusillade's": [], + "Wilton": ["M"], + "outmaneuvering": [], + "colorant": ["S", "M"], + "bindweed": ["M"], + "rumormonger's": [], + "democratic": ["U"], + "pettifogs": [], + "commas": [], + "traumatically": [], + "chanticleers": [], + "willow's": [], + "moralizes": [], + "doodlersing": [], + "juxtapose": ["D", "S", "G"], + "dram's": [], + "Jorge's": [], + "Pembroke's": [], + "duodena": [], + "girted": [], + "nonsupport": ["G", "M"], + "transmigration's": [], + "preparation": ["S", "M"], + "theocracies": [], + "honeymoonersing": [], + "decamp": [], + "demurred": [], + "cockroach'ses": [], + "infomercial": ["S", "M"], + "destitute": ["N"], + "cheek'sed": [], + "trefoils": [], + "unbound": ["D"], + "extrovert's": [], + "populist's": [], + "merman's": [], + "obvious": ["P", "Y"], + "inquisition": ["M", "S"], + "Tarbell": ["M"], + "halogens's": [], + "vandalizesing": [], + "maraudinged": [], + "safekeeping": ["M"], + "Quaternary": ["M"], + "forcefulness's": [], + "Stevens's": [], + "annals's": [], + "Websters": [], + "hurrahing's": [], + "obbligato": ["M", "S"], + "chapels": [], + "lording": [], + "curies's": [], + "venturesome": ["P", "Y"], + "superconductive": [], + "locksmiths": [], + "semaphoring": [], + "coda": ["M", "S"], + "amazons": [], + "soundproofeds": [], + "Desdemona": ["M"], + "lustfully": [], + "shipbuilder": ["S", "M"], + "chandeliers": [], + "Elaine": ["M"], + "marveled": [], + "motivates": [], + "thermometer": ["M", "S"], + "patrol's": [], + "wafts": [], + "McClure's": [], + "palliation's": [], + "electromotive": [], + "conger's": [], + "moussing": [], + "parting's": [], + "stuffiest": [], + "Graffias's": [], + "chg": [], + "fictional": ["Y"], + "misappropriationsed": [], + "caulking's": [], + "woodcarver'ses": [], + "priests's": [], + "playrooms's": [], + "Ebeneezer": ["M"], + "counterspies": [], + "exacting": ["Y"], + "Unukalhai's": [], + "beadsing": [], + "Augustinians": [], + "slavishness": ["M"], + "pachysandras": [], + "faded": [], + "illuminatingly": [], + "teleplay'ses": [], + "flatbread": [], + "Cotonou's": [], + "xref": ["S"], + "bracelets": [], + "Bourbaki": ["M"], + "Egyptology's": [], + "multimillionaire's": [], + "industriousliness": [], + "chidingly": [], + "Archibald's": [], + "catchingsment": [], + "Justice": ["M"], + "gravitated": [], + "spraying": [], + "rotgut's": [], + "bounties's": [], + "Murray": ["M"], + "foretold": [], + "acclimatization": ["M"], + "birthrights": [], + "slumming": [], + "circumflex": ["M", "S"], + "creels": [], + "decapitateds": [], + "Roquefort's": [], + "snatcheder": [], + "pulled": [], + "tadpole'ses": [], + "snooze'sing": [], + "feudeding": [], + "Maui's": [], + "interceding": [], + "knapsack'ses": [], + "accrue": ["G", "D", "S"], + "syllables": [], + "remodel": ["G", "D", "S"], + "grope": ["D", "R", "S", "M", "Z", "G"], + "libel'sed": [], + "weldables": [], + "wheedling": [], + "lemming": ["M"], + "calibrates": [], + "blackjack's": [], + "midis": [], + "sums's": [], + "perfectlies": [], + "squalor": ["M"], + "palatine's": [], + "stratagems": [], + "Navratilova": ["M"], + "truffles": [], + "monocled": [], + "vac": ["S"], + "chopping": [], + "anglicized": [], + "injurious": [], + "prostration": ["M"], + "bouquets's": [], + "selfie": ["S", "M"], + "obsolesced": [], + "compartmentalize": ["D", "S", "G"], + "cuckoos's": [], + "indeterminable": [], + "smoking's": [], + "infliction's": [], + "curtsies's": [], + "mambo": ["S", "G", "M", "D"], + "trows": [], + "bps": [], + "projections": [], + "counterpointings": [], + "nostrum's": [], + "pussyfooteds": [], + "MC": [], + "condom's": [], + "unrefroze": [], + "objectionably": [], + "presumptuousliness": [], + "mostly": [], + "Cassiopeia": ["M"], + "outflow'ses": [], + "ululateds": [], + "overgrowth": ["M"], + "umbrellas's": [], + "crematories's": [], + "dudings": [], + "alumnus's": [], + "lispeder": [], + "hogan's": [], + "dependency": ["S", "M"], + "communicant": ["M", "S"], + "engage": ["E", "A", "D", "S", "G"], + "honeder": [], + "teacupful'ses": [], + "apocalypses's": [], + "ooze'sing": [], + "cenobitic": [], + "Hornblower's": [], + "romancer": ["M"], + "ultraconservative": ["S", "M"], + "dishonor": [], + "contrariety's": [], + "cud": ["S", "M"], + "airline": ["R", "S", "M", "Z"], + "demoralize": [], + "piffling": [], + "Negroids's": [], + "tweaks's": [], + "reexported": [], + "twinkle": ["M", "G", "J", "D", "S"], + "vivaciousnessly": [], + "sobbingly": [], + "commission's": [], + "twinging": [], + "celluloid's": [], + "ripple's": [], + "Charlottetown": ["M"], + "reconsider": [], + "contentment's": [], + "bookbinders": [], + "attestations": [], + "Saddam's": [], + "heritage'ses": [], + "retrospecting": [], + "surmounteding": [], + "Mikoyan's": [], + "vaporization's": [], + "appellant": ["S", "M"], + "prithee": [], + "inflection's": [], + "misappliesing": [], + "barterings": [], + "pronoun": [], + "occlusion's": [], + "canalize": ["G", "D", "S"], + "sorrel's": [], + "abductions": [], + "lanolin": ["M"], + "Haitian's": [], + "subsistence's": [], + "ablateds": [], + "penitent": ["S", "M", "Y"], + "unretying": [], + "gravel's": [], + "pounded": [], + "hospice'ses": [], + "Peace": ["M"], + "southeast": ["Z", "M", "R"], + "tyros": [], + "seductiveliness": [], + "reproductive": [], + "ictus": ["M"], + "column": ["S", "M", "D"], + "handheld'ses": [], + "ticklers": [], + "ailments's": [], + "sneaker": ["M"], + "harasses": [], + "blush'sed": [], + "inhibitions's": [], + "coffined": [], + "zucchinis": [], + "hula's": [], + "Nepalis": [], + "Bligh's": [], + "revenuers's": [], + "blackboard's": [], + "deprecateds": [], + "souses's": [], + "Hottentots's": [], + "upendsing": [], + "seasickness's": [], + "unheard": [], + "thefts": [], + "finger'sed": [], + "runway": ["S", "M"], + "ultimatum": ["M", "S"], + "outboard": ["M", "S"], + "outposts": [], + "unintended": [], + "bridesmaid'ses": [], + "metier'ses": [], + "farthest": [], + "hotbox'ses": [], + "oatmeal's": [], + "Parkman": ["M"], + "globalist's": [], + "ire's": [], + "Wedgwood's": [], + "Mosul": ["M"], + "Ziploc": ["M"], + "tonne": ["S", "M"], + "ordinals's": [], + "hippy": [], + "sisal": ["M"], + "fables's": [], + "parodist's": [], + "miniaturization's": [], + "oak's": [], + "clinked": [], + "electrifiersing": [], + "Corot's": [], + "retrieve": ["D", "R", "S", "M", "Z", "G", "B"], + "forsaken": [], + "bouffants's": [], + "appeals": [], + "expansionist'ses": [], + "pranksters": [], + "hurdler": ["M"], + "knothole": ["S", "M"], + "intensifier's": [], + "liquefy": ["D", "S", "G"], + "remorse's": [], + "electron": ["M", "S"], + "atheist's": [], + "gingered": [], + "barfs": [], + "Tessa": ["M"], + "Somali": ["S", "M"], + "bullfrog's": [], + "grindstone's": [], + "armada'ses": [], + "cowhide's": [], + "extinguishingable": [], + "beak": ["S", "Z", "M", "D", "R"], + "beta": ["S", "M"], + "Neva": ["M"], + "agreeablement": [], + "Abram'ses": [], + "shredded": [], + "saintlies": [], + "ninth's": [], + "cliquishness": ["M"], + "carmines": [], + "swampings": [], + "Panamas's": [], + "zealousness": ["M"], + "logicality": ["M"], + "blinderly": [], + "traitors": [], + "duped": [], + "medley": ["M", "S"], + "scavengeder": [], + "traumatizing": [], + "mendacity's": [], + "hummers's": [], + "shandy": ["S"], + "Rachael": ["M"], + "workweek": ["S", "M"], + "anyplace": [], + "liege": ["S", "M"], + "airy": ["P", "T", "R"], + "flawings": [], + "Netherlanders's": [], + "blacklisting": [], + "contradistinction": ["M", "S"], + "vantage": ["S", "M"], + "pigskin": ["M", "S"], + "slang's": [], + "unimproved": [], + "gaseous": [], + "Whitney's": [], + "frostily": [], + "rabidnessly": [], + "infantry": ["S", "M"], + "retard": ["S", "M", "D", "R", "Z", "G"], + "spoonfuls": [], + "condolences's": [], + "winner's": [], + "Scarborough": ["M"], + "overtake": ["G", "S"], + "adduce": ["G", "D", "S"], + "cantabile": [], + "notebook": ["M", "S"], + "camphor's": [], + "pillar": ["M", "D", "S"], + "shier": [], + "brazenness's": [], + "automatizinged": [], + "multigrain": [], + "discombobulate": ["D", "S", "G", "N"], + "Pate's": [], + "elicitsed": [], + "Gino": ["M"], + "tussock's": [], + "subheadings": [], + "gnome's": [], + "Chileans": [], + "goers": [], + "Boadicea": [], + "AK": [], + "Andorrans": [], + "pompom": ["S", "M"], + "FSF's": [], + "shyest": [], + "orating": [], + "clewed": [], + "upthrust's": [], + "chowder": ["M", "S"], + "abjurer": ["M"], + "cants": [], + "unmask": [], + "regimes's": [], + "tameness": ["M"], + "Sophocles's": [], + "simulation": ["E", "M"], + "lithe": ["R", "P", "Y", "T"], + "Minsky": ["M"], + "dispensers": [], + "Saundra": ["M"], + "providence": ["M"], + "shrillers": [], + "synthetics": [], + "charities": [], + "demoniacally": [], + "feasts's": [], + "tenancies": [], + "tearjerker's": [], + "Stu": ["M"], + "breadboard": ["S", "M"], + "magazines": [], + "watercolors": [], + "diffused": [], + "gymkhanas": [], + "bowwow": ["S", "M"], + "calling's": [], + "varmint'ses": [], + "speller's": [], + "unbranded": [], + "tickeder": [], + "spiffing": [], + "Mithra's": [], + "fuzzier": [], + "dextrose": ["M"], + "presumptuously": [], + "lubricant's": [], + "fullback'ses": [], + "ambitiousliness": [], + "artlessness's": [], + "sensory": [], + "encouraging": ["Y"], + "Quixote's": [], + "manifestos's": [], + "ceremonials's": [], + "blackmailed": [], + "saying": ["S", "M"], + "competently": [], + "develops": [], + "Tuscon": ["M"], + "Occidentals": [], + "seabeds": [], + "giggly": ["R", "T"], + "radiometry's": [], + "puppies": [], + "caulker": ["M"], + "acceptability's": [], + "hairierness": [], + "sledges's": [], + "Goering": ["M"], + "halers": [], + "shriek": ["M", "D", "S", "G"], + "antipodals": [], + "inbreeding": [], + "floodlighted": [], + "dainties's": [], + "yak's": [], + "parking": ["M"], + "convalescent": ["S", "M"], + "pyramids's": [], + "Xe's": [], + "circuitings": [], + "tableau's": [], + "elite": ["S", "M"], + "pie": ["S", "M"], + "cossets": [], + "affronts": [], + "bastersing": [], + "backhanding": [], + "quarterbackeds": [], + "hogans's": [], + "lymphatics": [], + "CF": [], + "Pompey": ["M"], + "amnion's": [], + "Guelph": ["M"], + "mangetout": ["S"], + "hamper's": [], + "pandered": [], + "lynchingsers": [], + "octogenarians's": [], + "cofferdam's": [], + "hamburgs": [], + "Medicares's": [], + "hackish": [], + "postponesing": [], + "carats": [], + "plashed": [], + "outpost": ["M", "S"], + "abscessed": [], + "needleds": [], + "awesomely": [], + "enrichment's": [], + "stragglers": [], + "Tara": ["M"], + "fizzle'sing": [], + "den's": [], + "frosting's": [], + "CO": ["M"], + "offeringsing": [], + "area": ["S", "M"], + "scree'sed": [], + "declareder": [], + "humdrum's": [], + "Jim's": [], + "nattering's": [], + "groundswell": ["S", "M"], + "teleprompter": ["S", "M"], + "chroming": [], + "intricacy": ["S", "M"], + "revilement": ["M"], + "ageless": ["Y", "P"], + "scratchinesser": [], + "quainter": [], + "ingeniously": [], + "astonishment's": [], + "mismatch'sed": [], + "crimson'sed": [], + "demonology's": [], + "chapeau": ["S", "M"], + "cachepot's": [], + "Josefina": ["M"], + "tricksters": [], + "watts": [], + "yanks": [], + "nonentities's": [], + "eyeballing": [], + "filthiness": ["M"], + "quandary": ["S", "M"], + "Latrobe": ["M"], + "bishop's": [], + "Roberto": ["M"], + "gigs": [], + "Namibia": ["M"], + "pincer's": [], + "take's": [], + "afflictions's": [], + "comptrollers": [], + "phrenologist's": [], + "Montserrat's": [], + "shoestrings's": [], + "quavers": [], + "clerk's": [], + "posters": [], + "gravy's": [], + "worry'sings": [], + "paranoiac": ["M", "S"], + "strengthener's": [], + "donate": ["D", "S", "X", "G", "N"], + "lush": ["M", "R", "S", "Y", "P", "T"], + "synonyms's": [], + "additions's": [], + "crafted": [], + "edge'sers": [], + "descant's": [], + "ordinate's": [], + "ghostwrite": ["Z", "G", "R", "S"], + "polemicists's": [], + "Creator's": [], + "communiques": [], + "fissures": [], + "duping": [], + "millings": [], + "Lombardi": ["M"], + "naphthalene": ["M"], + "chiseling's": [], + "wolds": [], + "alum": ["S", "M"], + "gun's": [], + "Volta's": [], + "guessersing": [], + "butters": [], + "downloadable": [], + "disputes's": [], + "reprisal": ["S", "M"], + "explode": ["G", "D", "S"], + "Alba's": [], + "ASCIIs's": [], + "gestation": ["M"], + "cranberry": ["S", "M"], + "deceivingly": [], + "cubbyhole'ses": [], + "unworthily": [], + "Manama": ["M"], + "Grimes": ["M"], + "russet's": [], + "thoroughliness": [], + "rhizome'ses": [], + "coinciding": [], + "bilinguals": [], + "nineteens": [], + "Schuyler": ["M"], + "canvass's": [], + "transplantings": [], + "dies": [], + "raft": ["Z", "G", "M", "D", "R", "S"], + "corkscrews's": [], + "sausage": ["M", "S"], + "dissemble": ["Z", "G", "D", "R", "S"], + "rockiness": ["M"], + "wetlands": [], + "cubism's": [], + "grammarians": [], + "Wolf's": [], + "Richards's": [], + "misrepresented": [], + "Aussie": ["M", "S"], + "cooping": [], + "demilitarization": [], + "fornicated": [], + "turret'sed": [], + "evilerly": [], + "airlift'sed": [], + "mowers": [], + "Okinawan": [], + "groundsman": [], + "oldie's": [], + "Boccaccio": ["M"], + "Nathans": ["M"], + "amnion'ses": [], + "barber'sed": [], + "Liszt's": [], + "DH": [], + "France": ["S", "M"], + "crucifiesing": [], + "sweatshirt": ["S", "M"], + "multiprocessors": [], + "tighteneder": [], + "deflector's": [], + "Marathi's": [], + "lingers": [], + "German": ["M", "S"], + "updraft": ["M", "S"], + "Jansenist's": [], + "Brewster's": [], + "Michelob": ["M"], + "memorabilia": ["M"], + "virus'ses": [], + "spacewalksing": [], + "vent's": [], + "pleasinglies": [], + "sulkies's": [], + "outs": [], + "plasticity's": [], + "yaw's": [], + "enraptureds": [], + "ovenware": [], + "frowziness": ["M"], + "aggravatingly": [], + "berried": [], + "rekindle": [], + "breadwinner": ["S", "M"], + "lulling": [], + "Reagan's": [], + "sticklebacks's": [], + "paymaster's": [], + "collapsed": [], + "pentathlon": ["M", "S"], + "subsumed": [], + "gingham's": [], + "pendulous": [], + "rhetoric": ["M"], + "esprit": ["M"], + "Cuban's": [], + "whiteout's": [], + "picksings": [], + "aconite": ["M", "S"], + "disbursesing": [], + "aftershocks's": [], + "injector": ["S", "M"], + "cab's": [], + "Bishkek's": [], + "ordainsed": [], + "staccato'ses": [], + "forbearance's": [], + "harassers": [], + "fabricate": ["D", "S", "G", "N", "X"], + "prowler": ["M"], + "quite": [], + "flibbertigibbets's": [], + "Chagall": ["M"], + "stewardship's": [], + "kin": ["M"], + "stammered": [], + "humanitarian's": [], + "manlike": [], + "formalizeds": [], + "cynicism": ["M"], + "logging's": [], + "frostinesser": [], + "Ziggy": ["M"], + "Omani's": [], + "Hamhung's": [], + "vestige": ["S", "M"], + "Hispaniola's": [], + "overthrowing": [], + "outflank": ["G", "S", "D"], + "parsonage": ["M", "S"], + "Beard's": [], + "numerologists": [], + "tear'sed": [], + "wham's": [], + "cankering's": [], + "mothball'sed": [], + "coninch": [], + "Sun": ["S", "M"], + "Tajikistan": ["M"], + "moistener's": [], + "blown": [], + "airship": ["S", "M"], + "Southerners's": [], + "frailness": ["M"], + "passing's": [], + "dependence": ["I", "M"], + "drumbeats": [], + "quadruplinged": [], + "ewe'sers": [], + "metatarsal'ses": [], + "reference": ["M", "G", "D", "S"], + "taproot": ["S", "M"], + "plat'sed": [], + "programmer'ses": [], + "waiversing": [], + "signatory": ["S", "M"], + "buffer's": [], + "sentimentalizes": [], + "Ibiza": ["M"], + "diagonally": [], + "federals's": [], + "cenotaph's": [], + "fungicidal": [], + "Kipling's": [], + "fobs's": [], + "cry's": [], + "cirque'ses": [], + "packer's": [], + "formulators": [], + "bring": ["S", "R", "Z", "G"], + "Sylvia": ["M"], + "racketeering": ["M"], + "oratorio'ses": [], + "hardships": [], + "flatfoot'sed": [], + "imagineds": [], + "Redgrave": ["M"], + "beamed": [], + "momentum": ["M"], + "tabulatingen": [], + "unchain": [], + "tampers": [], + "flighty": ["P", "T", "R"], + "sanest": [], + "terminology's": [], + "screwworm": ["S", "M"], + "Mercedes": ["M"], + "Lansing's": [], + "skateboards": [], + "barb's": [], + "research": [], + "minicomputer": ["S", "M"], + "grossness's": [], + "Tashkent's": [], + "magnification's": [], + "instituter": ["M"], + "empty's": [], + "busks": [], + "connective": ["M", "S"], + "Antone": ["M"], + "fums": [], + "choristers's": [], + "sterner": [], + "competitions's": [], + "conceptualizeds": [], + "amaryllises": [], + "knoll": ["S", "M"], + "pullet": ["S", "M"], + "realization": ["M", "S"], + "wracked": [], + "allied": [], + "scourge'sing": [], + "compactliness": [], + "praetors's": [], + "dirks": [], + "ceremoniousness's": [], + "Disneyland's": [], + "parody's": [], + "Elizabethans's": [], + "figuration": ["F", "M"], + "unabridged'ses": [], + "fragile": ["R", "T"], + "jubilee": ["S", "M"], + "bulkhead's": [], + "flatboats": [], + "romantics": [], + "purport's": [], + "heights's": [], + "Sylvie's": [], + "lizard's": [], + "instructor'ses": [], + "heritable": ["I"], + "Flynn's": [], + "fringesing": [], + "tufteder": [], + "sequoias": [], + "typescript's": [], + "housebreakers": [], + "interrogative": ["M", "Y", "S"], + "litigation's": [], + "dustsheet": ["S"], + "pentacle": ["M", "S"], + "exciseds": [], + "invalidity": [], + "mathematician's": [], + "optinged": [], + "walkabouts": [], + "mangier": [], + "remandinged": [], + "irrationals's": [], + "meatballs": [], + "goatherd": ["M", "S"], + "xenophobes": [], + "bluffer's": [], + "pristine": [], + "fireball": ["M", "S"], + "igloos's": [], + "swivels": [], + "Josie": ["M"], + "famines": [], + "skiff": ["S", "M"], + "checklist'ses": [], + "paradises": [], + "marinaded": [], + "forebodeds": [], + "redskins's": [], + "coffees's": [], + "skyrocketings": [], + "Sumner's": [], + "schoolkids": [], + "weirdo'ses": [], + "adulteration's": [], + "pita": ["M", "S"], + "propensity's": [], + "fesses": [], + "larcenist's": [], + "dramatizations": [], + "shad's": [], + "humps": [], + "leashes": [], + "sidecar's": [], + "pennyweight'ses": [], + "Mingus": ["M"], + "pasture'sing": [], + "uhf": [], + "paradigms": [], + "microscopy's": [], + "writs": [], + "thanked": [], + "atoned": [], + "Newport's": [], + "activists": [], + "shortcoming's": [], + "surfaces": [], + "Kitchener": ["M"], + "mootsing": [], + "subfamily": ["S", "M"], + "ceremonial'sly": [], + "ErvIn": ["M"], + "imbroglio's": [], + "flora's": [], + "swab": ["M", "S"], + "impose": ["A", "D", "S", "G"], + "Beaumarchais": ["M"], + "unhistorical": [], + "modulators": [], + "sojourneder": [], + "node's": [], + "fruitcakes": [], + "hairdressing's": [], + "Atkins": ["M"], + "embryologist'ses": [], + "newspaperman": ["M"], + "charioteers": [], + "rout's": [], + "reference's": [], + "Dudley": ["M"], + "Alsatians's": [], + "Thomistic": ["M"], + "errings": [], + "cheeseburger's": [], + "flatiron": ["S", "M"], + "stalwarts": [], + "communicators's": [], + "kappa's": [], + "specializeds": [], + "phrenologists's": [], + "mammogram'ses": [], + "eucalyptuses": [], + "antiphonal": ["M", "Y", "S"], + "wandering": [], + "proscription'ses": [], + "Oneida": ["M", "S"], + "stylists": [], + "coagulates": [], + "wrapper's": [], + "nimrods": [], + "underpinnings": [], + "contraceptives": [], + "diminishes": [], + "punishment'ses": [], + "sockeyes": [], + "studbooks": [], + "Reuben's": [], + "Chernomyrdin": ["M"], + "asseveration": ["M"], + "Fern": ["M"], + "trusty": ["T", "R", "S", "M"], + "lambada's": [], + "nerves": [], + "idolatry": ["M"], + "racing": ["M"], + "surplice'ses": [], + "transferals": [], + "historiographer'ses": [], + "masonry's": [], + "forgivers": [], + "Dorsey": ["M"], + "rhapsodical": [], + "pumpkin's": [], + "anisette's": [], + "villus's": [], + "passion": ["E", "M"], + "Xerox's": [], + "Peace's": [], + "Bermudians": [], + "modalities": [], + "indolently": [], + "coiffuring": [], + "inclinations": [], + "detainment": ["M"], + "palingness": [], + "spores": [], + "breakups's": [], + "Ida's": [], + "countrywoman's": [], + "Vargas": ["M"], + "sleaziness": ["M"], + "shifts": [], + "dasher's": [], + "menfolk'ses": [], + "composers": [], + "monastic": ["M", "S"], + "turban": ["S", "M", "D"], + "overstaysing": [], + "premeditate": ["D", "S", "G", "N"], + "incubation's": [], + "smelled": [], + "woodpeckers": [], + "bock": ["M"], + "glottis's": [], + "Brianna's": [], + "bills": [], + "wheals's": [], + "searcher's": [], + "warming": [], + "shucked": [], + "Caribbean's": [], + "incriminateds": [], + "sympathize": ["Z", "G", "D", "R", "S"], + "wettest": [], + "outhouse's": [], + "tiptop": ["S", "M"], + "anodes": [], + "thingumabobs": [], + "thine": [], + "adsorptions": [], + "mopeder": [], + "dad": ["S", "M"], + "horsetails": [], + "crustiness's": [], + "inviting": ["Y"], + "Britons": [], + "riskiness's": [], + "lexicographers": [], + "longhouses": [], + "jeopardizinged": [], + "blueprinted": [], + "nomination": ["C", "S", "M"], + "horsehair": ["M"], + "snakes": [], + "harmonica": ["M", "S"], + "considerable": ["I"], + "funkiest": [], + "surroundedings": [], + "vet's": [], + "limpidness": ["M"], + "anthologized": [], + "tearoom's": [], + "upstaged": [], + "saccharine": [], + "multivitamin's": [], + "Smithson's": [], + "rearmost": [], + "fagot": ["S", "M", "G"], + "flukes": [], + "working's": [], + "fascination": ["M"], + "beaksers": [], + "Mbabane": ["M"], + "emissions's": [], + "bathtub's": [], + "songstress": ["M", "S"], + "gropers": [], + "debacles": [], + "steep's": [], + "plate's": [], + "smoker": ["M"], + "debility": ["S", "M"], + "stultifies": [], + "Patty": ["M"], + "blowflies's": [], + "swallowed": [], + "soles": [], + "analogical": ["Y"], + "snowdrops": [], + "hexagrams": [], + "reassignment": [], + "collectors": [], + "landladies": [], + "jinking": [], + "duckeding": [], + "snub's": [], + "ash": ["M", "D", "N", "S", "G"], + "deportment": ["M"], + "cooties": [], + "paint": ["S", "Z", "G", "J", "M", "D", "R"], + "nondisciplinary": [], + "blacksnakes's": [], + "Antietam's": [], + "counterpoint": ["M", "D", "G", "S"], + "apolitical": ["Y"], + "Min's": [], + "relinquishesing": [], + "hajjes": [], + "dissolute": ["Y", "N", "P"], + "marble'sing": [], + "lunching": [], + "casements": [], + "hightails": [], + "Duncan's": [], + "sensitive'sly": [], + "tuberculosis": ["M"], + "squint'sed": [], + "acutest": [], + "trivialized": [], + "common": ["U", "P", "R", "Y", "T"], + "chic'ser": [], + "desiderata": [], + "detaching": [], + "torn": [], + "recoupeding": [], + "ormolu's": [], + "HRH": [], + "oversubscribe": ["D", "S", "G"], + "biorhythm'ses": [], + "trudged": [], + "reheat": [], + "discreet": ["P", "R", "Y", "T"], + "Conan's": [], + "jingled": [], + "Dolly's": [], + "stylizeds": [], + "reprehensibility": ["M"], + "satyriasis's": [], + "minimization's": [], + "Phil": ["M", "Y"], + "debit": ["D"], + "exampled": ["U"], + "congregatingen": [], + "stolidness's": [], + "Haida": ["S", "M"], + "Oldfield": ["M"], + "potshots": [], + "craft'sed": [], + "grabber's": [], + "consul": ["K", "S", "M"], + "audibility's": [], + "sodomite": ["M", "S"], + "phenacetin's": [], + "lengtheninged": [], + "skied": [], + "coalmine": ["S"], + "heightening": [], + "spies": [], + "fuzzball": ["S"], + "malingered": [], + "snub": ["M", "S"], + "ennoblement": ["M"], + "hoarding's": [], + "bonging's": [], + "rawhide": ["M"], + "Honeywell's": [], + "helicopters": [], + "certifieds": [], + "millstreams": [], + "urgeds": [], + "witticisms's": [], + "pandererers": [], + "phylactery": ["S", "M"], + "Diane's": [], + "tombstone": ["M", "S"], + "backstretches": [], + "pay": ["A", "S", "G", "B", "L"], + "bodice": ["M", "S"], + "soggier": [], + "Basil's": [], + "accentuatingen": [], + "radially": [], + "mummery": ["M"], + "depravity": ["S", "M"], + "worst": ["S", "G", "M", "D"], + "JD": [], + "graving": [], + "backstabber": ["M", "S"], + "burg'ser": [], + "Susquehanna": ["M"], + "bushmasters's": [], + "spinsterish": [], + "linebacker'ses": [], + "truckled": [], + "shoringed": [], + "Crux's": [], + "chatroom": ["M"], + "accessioneding": [], + "Floridians": [], + "redeconstruction": [], + "digression's": [], + "garroting": [], + "cart's": [], + "switchblades": [], + "Cantrell's": [], + "gyms's": [], + "misdirected": [], + "fixture": ["M", "S"], + "shale": ["M"], + "concord": ["M"], + "appositives's": [], + "breezeways": [], + "tattooists": [], + "Carver": ["M"], + "celestially": [], + "unversed": [], + "maxed": [], + "orientates": [], + "cordsing": [], + "stroppy": ["T", "R", "P"], + "flashbulb's": [], + "whine": ["D", "R", "S", "M", "Z", "G"], + "Poe's": [], + "pick's": [], + "flu's": [], + "metalanguage'ses": [], + "brawlerers": [], + "priming's": [], + "bilkeder": [], + "Caracalla": ["M"], + "berms's": [], + "brewery's": [], + "bunteding": [], + "adorninged": [], + "footlockers's": [], + "dittoeding": [], + "Podunk": ["M"], + "lovesable": [], + "crust's": [], + "gallivanted": [], + "KC": [], + "Orly's": [], + "monologue's": [], + "sprees's": [], + "emote": ["X", "D", "S", "G", "N", "V"], + "stashing": [], + "gnarliest": [], + "Teuton'ses": [], + "Slovakian": [], + "Moors": [], + "subtending": [], + "deficient": [], + "Fox'ses": [], + "seamount": ["M", "S"], + "corpuscle'ses": [], + "rococo's": [], + "trading": ["M"], + "symposiums": [], + "seismologist's": [], + "Darryl": ["M"], + "maturationed": [], + "Gypsies's": [], + "stashed": [], + "archnessers": [], + "ejection'ses": [], + "shockproof": [], + "feebler": [], + "breaded": [], + "entrustinged": [], + "agonize": ["G", "D", "S"], + "valentine's": [], + "characteristics's": [], + "carryall": ["S", "M"], + "harelips's": [], + "scarps": [], + "flurryinged": [], + "conversation's": [], + "graduate'sing": [], + "confrontations": [], + "grouts": [], + "mainmasts": [], + "lilacs": [], + "unsnapping": [], + "evenest": [], + "land'sed": [], + "leer": ["M", "D", "G"], + "brisk": ["S", "D", "R", "Y", "T", "G", "P"], + "spaced": [], + "Montenegro's": [], + "somethings": [], + "proportion": ["E", "S", "M"], + "Cruise's": [], + "nucleatesing": [], + "arteries's": [], + "salesgirls": [], + "acclivity's": [], + "extroversion's": [], + "Russel's": [], + "impunity": ["M"], + "summary": ["S", "M"], + "collies's": [], + "bouillons": [], + "undefeated": [], + "thatchers": [], + "blow's": [], + "decremented": [], + "fishtail": ["D", "G", "S"], + "wasn't": [], + "designation": ["M"], + "Angelique": ["M"], + "crankeding": [], + "genocidal": [], + "alcoholism's": [], + "NASA": ["M"], + "Fletcher's": [], + "coynesser": [], + "Apia": ["M"], + "bayoneteding": [], + "ringside": ["M"], + "Ladyship": ["M", "S"], + "tong'sed": [], + "borderline'ses": [], + "revels": [], + "profundity's": [], + "gangs": [], + "Rush": ["M"], + "beadles": [], + "babble's": [], + "tallyho'sed": [], + "pedants": [], + "supplications": [], + "glassful's": [], + "proletarian's": [], + "cyberspace'ses": [], + "truncation's": [], + "protrusion'ses": [], + "shimmering": [], + "whelpeding": [], + "enumerates": [], + "evolutionist": ["S", "M"], + "trolleybus": ["M", "S"], + "alterable": ["U"], + "watermelons": [], + "airline'sers": [], + "numerology's": [], + "pummels": [], + "raging": ["Y"], + "Ellen's": [], + "Treblinka's": [], + "slaughters": [], + "partyinged": [], + "sidearm": ["S", "M"], + "semicircle": ["S", "M"], + "Silva": ["M"], + "demonstrationsing": [], + "writhing": [], + "guardhouse": ["S", "M"], + "torpedo'sed": [], + "Hirobumi's": [], + "Lanzhou": ["M"], + "vitiates": [], + "awfully": [], + "browbeat": ["S", "N", "G"], + "panicking": [], + "improvisers": [], + "sculptors's": [], + "introspecteds": [], + "auditorium's": [], + "darkly": [], + "revenuers": [], + "oilmen": [], + "dyslectics": [], + "Jew": ["S", "M"], + "intriguers": [], + "endearing": ["Y"], + "whitish": [], + "villa": ["S", "M"], + "geddit": [], + "sundial": ["S", "M"], + "ancientness's": [], + "record": [], + "twofer's": [], + "concreteness's": [], + "Jeanie": ["M"], + "Raymundo's": [], + "providence's": [], + "downtrend'ses": [], + "Merrimack": ["M"], + "grunion": ["S", "M"], + "beautifiersing": [], + "imprinter": ["M"], + "Adelaide": ["M"], + "Pennzoil": ["M"], + "defaming": [], + "bothersome": [], + "Nehemiah's": [], + "nonbeliever": ["M", "S"], + "Dell's": [], + "licorices's": [], + "cedilla": ["S", "M"], + "tiffs": [], + "cornstalk's": [], + "hysteresis": [], + "uneatable": [], + "calaboose's": [], + "recreational": [], + "dynamo's": [], + "schnitzel's": [], + "penalty": ["S", "M"], + "Amerinds": [], + "cwt": [], + "sedatives's": [], + "priesthood's": [], + "goofiness's": [], + "equivocates": [], + "undercoated": [], + "machetes's": [], + "punned": [], + "Jarvis's": [], + "Lucy's": [], + "dormitory": ["S", "M"], + "birth": ["Z", "G", "M", "D", "R"], + "dimerly": [], + "pestles": [], + "Montessori's": [], + "truer": [], + "bankcard's": [], + "precaution'ses": [], + "trade'sers": [], + "waistlines": [], + "chute'ses": [], + "seepage": ["M"], + "corncrakes": [], + "ladder'sed": [], + "absorb": ["A", "G", "D", "S"], + "impaling": [], + "greeter's": [], + "misplays": [], + "whiskered": [], + "blackjack'sed": [], + "colonialist's": [], + "strong": ["R", "Y", "T"], + "surplices": [], + "propitiatesing": [], + "betrayeder": [], + "concatenated": [], + "reinterpret": [], + "deliciousness's": [], + "vanguard'ses": [], + "nus's": [], + "amylase": ["M"], + "shamefaced": ["Y"], + "purge's": [], + "conservation": ["M"], + "dissemblance": ["M"], + "coloraturas": [], + "secularist": ["S", "M"], + "haggled": [], + "slattern'sly": [], + "rascal'sly": [], + "solipsistic": [], + "misappropriates": [], + "imperatives": [], + "Dianne's": [], + "tribute": ["F", "S"], + "heliotrope": ["S", "M"], + "Claiborne's": [], + "affecteds": [], + "Eben's": [], + "vignettes's": [], + "Mitsubishi": ["M"], + "camcorder": ["S", "M"], + "workplace": ["M", "S"], + "stroked": [], + "whistle'sers": [], + "trisection": ["M"], + "snowballs's": [], + "honester": [], + "feathers": [], + "prelate": ["S", "M"], + "divulged": [], + "gimbals's": [], + "newsletter": ["M", "S"], + "appropriatelying": [], + "overladen": [], + "daybreak's": [], + "centennial": ["M", "Y", "S"], + "Pole's": [], + "centenary": ["S", "M"], + "silicate": ["M", "S"], + "dusk": ["M"], + "whales": [], + "corals": [], + "heel's": [], + "lisp": ["M", "D", "R", "S", "Z", "G"], + "starves": [], + "tings": [], + "teenagerers": [], + "unidiomatic": [], + "sticklebacks": [], + "totals's": [], + "drumstick": ["S", "M"], + "overages": [], + "hazers": [], + "Israels's": [], + "cays's": [], + "epigram": ["S", "M"], + "skillet": ["S", "M"], + "Bulgar": ["M"], + "glamours": [], + "wholeness": ["M"], + "henna's": [], + "stacked": [], + "stings": [], + "razors": [], + "Italianate": [], + "doublet'ses": [], + "mindset's": [], + "horrifiesing": [], + "pastel's": [], + "starving": [], + "bebop": ["M", "S"], + "energizer's": [], + "stammer'sed": [], + "animation": ["A", "M"], + "cubist's": [], + "abetting": [], + "mangler": [], + "postman's": [], + "pretties's": [], + "indexing": [], + "mukluk'ses": [], + "brogan": ["S", "M"], + "Faustus": ["M"], + "uniforms": [], + "costume'sers": [], + "pupils": [], + "confiscatesing": [], + "hedgehog's": [], + "prepossess": ["G", "D", "S"], + "dinginess's": [], + "trapdoors": [], + "conservator's": [], + "correctsable": [], + "insurgent's": [], + "hiringed": [], + "conduits's": [], + "passenger": ["S", "M"], + "say": ["U", "S", "G"], + "elders's": [], + "Namath": ["M"], + "swivel's": [], + "often": ["T", "R"], + "Mayfair": ["M"], + "edifice's": [], + "outhouse": ["S", "M"], + "coexistsing": [], + "shrewderly": [], + "impairsed": [], + "actuation": ["M"], + "whoopeder": [], + "VD's": [], + "germanium": ["M"], + "Buddha's": [], + "peashooters": [], + "joyride's": [], + "Pygmies's": [], + "lounger": ["M"], + "chancinesser": [], + "enervates": [], + "stigmatic": [], + "Algeria's": [], + "perigee": ["S", "M"], + "glassblowing": ["M"], + "pennies": [], + "hodgepodge": ["S", "M"], + "unicameral": [], + "boaster's": [], + "Annie": ["M"], + "cardiographs": [], + "carbohydrate": ["S", "M"], + "Luis's": [], + "based": [], + "jaybirds": [], + "gazetteers": [], + "turmerics's": [], + "parcels": [], + "noddle's": [], + "prows": [], + "loosest": [], + "eyesore's": [], + "veneerings": [], + "anodyne'ses": [], + "decontaminate": [], + "buffaloing": [], + "dam": ["S", "M"], + "rage": ["M", "S"], + "masochism": ["M"], + "magnifiers": [], + "banzais's": [], + "VIP's": [], + "spearmint": ["M"], + "pedigree's": [], + "tombstones": [], + "scums": [], + "ballot's": [], + "Nash": ["M"], + "bicameralism's": [], + "mashersing": [], + "liquored": [], + "inculpable": [], + "griever": ["M"], + "humanizes": [], + "scandium's": [], + "Novosibirsk's": [], + "auditeds": [], + "wage": ["M", "S"], + "warmly": [], + "embank": ["S", "L", "G", "D"], + "hypodermic'ses": [], + "augmented": [], + "dependently": [], + "lordliness's": [], + "helve": ["S", "M"], + "compost'sed": [], + "bitmap": ["S"], + "foolhardiest": [], + "acquitted": [], + "treacherousness": ["M"], + "tantalizinged": [], + "gesticulatingen": [], + "beachcomber": ["S", "M"], + "crate": ["D", "R", "S", "M", "Z", "G"], + "scurvier's": [], + "guildhall's": [], + "savannas": [], + "protoplasm": ["M"], + "Milne": ["M"], + "vaped": [], + "governance": ["M"], + "outre": [], + "applier": ["M", "S"], + "Dreyfus": ["M"], + "Jews's": [], + "commode": ["E", "I", "S"], + "lurch": ["G", "M", "D", "S"], + "Aires": ["M"], + "Cascades's": [], + "Virginians's": [], + "hedgerows's": [], + "flagrancy": ["M"], + "civvies's": [], + "Stanton's": [], + "Edam's": [], + "cloudiness": ["M"], + "petrifying": [], + "Wylie's": [], + "terrorize": ["D", "S", "G"], + "pittas": [], + "warmth's": [], + "simulators": [], + "voyeur'ses": [], + "impatience'ses": [], + "beachwear": ["M"], + "nonhazardous": [], + "solicitor": ["S", "M"], + "Brock": ["M"], + "sure": ["P", "Y", "T", "R"], + "stature'ses": [], + "scurries's": [], + "arrogation's": [], + "munition's": [], + "gladiator": ["S", "M"], + "reachable": ["U"], + "Domingo": ["M"], + "joystick": ["S", "M"], + "tryst": ["S", "M", "D", "G"], + "backdrops": [], + "letterer": ["M"], + "remonstrants": [], + "growl": ["S", "Z", "G", "M", "D", "R"], + "tribeswomen": [], + "Erwin's": [], + "Mencius's": [], + "detonate": ["G", "N", "D", "S", "X"], + "purr's": [], + "perjurersing": [], + "multiprocessor": ["S", "M"], + "skittered": [], + "omission'ses": [], + "expeditiously": [], + "hankered": [], + "spatted": [], + "interlinesings": [], + "spiritsing": [], + "employees's": [], + "cubicles": [], + "semiquaver": ["S"], + "cliffhangers": [], + "typewriting's": [], + "cowardliness's": [], + "milestone": ["M", "S"], + "satirist's": [], + "bossed": [], + "Antananarivo's": [], + "today's": [], + "transmogrifying": [], + "eardrums": [], + "Chippewa": ["S", "M"], + "crossings": [], + "Uruguayan": ["M", "S"], + "elbowroom": ["M"], + "Ashe": ["M"], + "gets": [], + "whirligig's": [], + "wholesomeness's": [], + "ATV": [], + "fidgety": [], + "notifiersing": [], + "immigrating": [], + "Moroni": ["M"], + "extinguishes": [], + "traceder": [], + "foreclosure's": [], + "tenoned": [], + "centralizeds": [], + "Tupungato's": [], + "winemakers": [], + "brooks's": [], + "sierras": [], + "kaolin's": [], + "combing": [], + "bottomeding": [], + "paradox": ["M", "S"], + "tallied": [], + "curling's": [], + "amortized": [], + "prorogation's": [], + "fiberses": [], + "fulminatesens": [], + "plushness's": [], + "splices's": [], + "presentiments": [], + "rhubarbs": [], + "steamrollers": [], + "drearier": [], + "saloons's": [], + "Be's": [], + "imminence": ["M"], + "winkleds": [], + "tundra": ["S", "M"], + "overtire": ["G", "D", "S"], + "redeemers": [], + "gunboats's": [], + "misshaped": [], + "aviary": ["S", "M"], + "Sodom's": [], + "Miranda's": [], + "flagman": ["M"], + "gelding": ["M"], + "overcomings": [], + "Rojas": ["M"], + "lathing": [], + "burgle": ["D", "S", "G"], + "roomettes": [], + "taglines": [], + "jeremiad's": [], + "twisting": [], + "dismount": [], + "consolidating": [], + "Latin'ser": [], + "viragoes": [], + "pinkos": [], + "bully": ["D", "S", "M", "G"], + "lithospheres": [], + "shilling": ["M"], + "gills": [], + "Pygmalion's": [], + "tunes": [], + "rantedings": [], + "decaffeinates": [], + "grazer": ["M"], + "Singer": ["M"], + "inundatesing": [], + "noose's": [], + "pipes": [], + "Hipparchus": ["M"], + "headword": ["S", "M"], + "secretaries's": [], + "curliness's": [], + "outpouring": ["M", "S"], + "imperf": [], + "elliptically": [], + "under": [], + "overcompensate": ["D", "S", "G", "N"], + "comfortably": ["U"], + "vassalage's": [], + "phaetons": [], + "consed": [], + "consigneding": [], + "filming": [], + "buyings": [], + "leapfrog's": [], + "drablies": [], + "Lyndon": ["M"], + "spadeful'ses": [], + "pralines's": [], + "seashells": [], + "helpmates's": [], + "mournfulliness": [], + "stylist": ["S", "M"], + "stir'ses": [], + "mafioso": ["M"], + "revile": ["D", "R", "S", "L", "Z", "G"], + "goaltender's": [], + "McCarthy's": [], + "shampooer": ["M"], + "bartender's": [], + "sliminess": ["M"], + "staggeringly": [], + "lawmaker'ses": [], + "Quinton's": [], + "abstaining": [], + "steam": ["S", "M", "D", "R", "Z", "G"], + "ruler": ["M"], + "blotting": [], + "afterbirths": [], + "hereinafter": [], + "reconsecrate": [], + "francs's": [], + "acted": [], + "indoctrinatingen": [], + "overdeveloped": [], + "dillydallying": [], + "burnings": [], + "Omdurman's": [], + "homework": ["M", "R", "Z", "G"], + "glory'sing": [], + "blitzeds": [], + "tallowy": [], + "medico": ["M", "S"], + "supervisingen": [], + "abstract": ["G", "S", "P", "M", "D", "Y"], + "goatee's": [], + "elapseds": [], + "emanating": [], + "headrest'ses": [], + "hasp'ses": [], + "bracers": [], + "trousseau's": [], + "atonement's": [], + "libretto's": [], + "flagship": ["S", "M"], + "blogs": [], + "hobnail's": [], + "spam'ses": [], + "ratersing": [], + "Carnegie": ["M"], + "telephone's": [], + "sockeye": ["S", "M"], + "devil": ["S", "M", "D", "G", "L"], + "goldbricker's": [], + "hellhole": ["M", "S"], + "sureties's": [], + "bevy": ["S", "M"], + "Hamill": ["M"], + "slued": [], + "copra": ["M"], + "rambunctiousnessly": [], + "nutshell": ["M", "S"], + "permanently": [], + "arithmetically": [], + "plungersing": [], + "knicker": ["S"], + "town": ["M", "S"], + "mystique's": [], + "Morita's": [], + "batches": [], + "counterrevolutionary": ["S", "M"], + "underused": [], + "starersing": [], + "hallelujahs": [], + "Comoros's": [], + "deuce": ["S", "M"], + "deepen": ["G", "D"], + "pekingese's": [], + "exchequer": ["S", "M"], + "resisterers": [], + "receptivity's": [], + "neoplasms": [], + "maraschino": ["M", "S"], + "wretchederly": [], + "faggot": ["S", "M"], + "goring": [], + "bingo's": [], + "ticked": [], + "tepidness's": [], + "suffixes": [], + "Junkers": [], + "supersizing": [], + "crew'sed": [], + "whim": ["M", "S"], + "capon'ses": [], + "dolorous": ["Y"], + "spreadersing": [], + "jiggered": [], + "sartorial": ["Y"], + "autocratic": [], + "bivouac'ses": [], + "reneged": [], + "boycott": ["S", "G", "M", "D"], + "defalcations": [], + "etymologist": ["S", "M"], + "Zorn": ["M"], + "powerboat'ses": [], + "eviscerateds": [], + "quadruplicated": [], + "didgeridoo": ["S"], + "ingenuousness": ["M"], + "birdbrain's": [], + "goalkeeping": ["M"], + "As": ["M"], + "stupefaction": ["M"], + "Kodak's": [], + "ware'ses": [], + "toughener": ["M"], + "pennant's": [], + "outriders": [], + "calabooses's": [], + "liveliest": [], + "bushmaster": ["S", "M"], + "rashness's": [], + "pluperfect's": [], + "foregroundeds": [], + "nabobs's": [], + "doctrinaire'ses": [], + "motorboat'ses": [], + "pictorial'sly": [], + "halcyon": [], + "hubbies's": [], + "snooping": [], + "dirge": ["S", "M"], + "automobile's": [], + "Tienanmen": ["M"], + "dapple'sing": [], + "bifocal": ["S"], + "merits's": [], + "tearaway": ["S"], + "Minamoto's": [], + "inebriationed": [], + "devoid": [], + "immureds": [], + "vocally": [], + "Carib": ["M", "S"], + "bilious": ["P"], + "flypast": ["S"], + "aspirator": ["S", "M"], + "syncopatingen": [], + "Qatari": ["M", "S"], + "admiral": ["M", "S"], + "wildness's": [], + "caretakers": [], + "animal": ["M", "S"], + "signpostings": [], + "indiscriminate": ["Y"], + "sleepwalking": ["M"], + "voluntarism": ["M"], + "captor's": [], + "underachiever": ["M"], + "quizzically": [], + "price's": [], + "clonk's": [], + "Eastwood": ["M"], + "composting's": [], + "revoking": [], + "forenoon": ["M", "S"], + "eventide": ["M"], + "Lovecraft's": [], + "manipulable": [], + "Intel": ["M"], + "echolocation": ["M"], + "wateriest": [], + "tuque": ["S", "M"], + "infringe": [], + "Oslo's": [], + "jazzeds": [], + "flaccidity": ["M"], + "plasticity": ["M"], + "pear": ["M", "Y", "S"], + "wonk": ["M", "S"], + "intercessor'ses": [], + "chichi'ses": [], + "suds's": [], + "Frisbee": ["M"], + "bywords's": [], + "Kaufman's": [], + "encrustation's": [], + "irksomeness's": [], + "solicitor's": [], + "scrag's": [], + "Scandinavian'ses": [], + "bluebird's": [], + "updatinged": [], + "frats": [], + "Segundo's": [], + "vapor": ["S", "M"], + "junkiest": [], + "Shevat": ["M"], + "Azerbaijan": ["M"], + "rambunctiously": [], + "lithosphere's": [], + "schemeder": [], + "tilapia": [], + "stockadeds": [], + "Luxembourger's": [], + "validation": ["I", "M"], + "Elba": ["M"], + "Gila's": [], + "overfills": [], + "stardust": ["M"], + "infinity's": [], + "darkroom'ses": [], + "revved": [], + "shovelsing": [], + "snowstorm": ["S", "M"], + "alliances": [], + "poet's": [], + "cracking": [], + "mourning": ["M"], + "Kojak's": [], + "commiseratesens": [], + "charitableness": ["M"], + "nongovernmental": [], + "editorialize": ["D", "S", "G"], + "identity": ["S", "M"], + "Frazier's": [], + "Clay's": [], + "dewclaws": [], + "Tuvalu": ["M"], + "antipasto's": [], + "organizations's": [], + "Spanish": ["M"], + "temptress": ["M", "S"], + "gloss": ["M", "D", "S", "G"], + "pastels": [], + "familiarly": [], + "castrations": [], + "porkers's": [], + "medical's": [], + "terminator": ["S"], + "roaching's": [], + "inproduct": [], + "Alphonse's": [], + "stagecoach": ["M", "S"], + "inhalers": [], + "readmitting": [], + "remaindereds": [], + "Anglicisms": [], + "ruthlessness's": [], + "peonies": [], + "respirators's": [], + "humanizers's": [], + "nomads": [], + "stripteasersing": [], + "hug's": [], + "artifice's": [], + "premiering": [], + "silty": ["T", "R"], + "invigoration": ["M"], + "eve's": [], + "beefiness's": [], + "hobnobbing": [], + "motormouth": ["M"], + "nitpicking": ["M"], + "viburnums": [], + "arguer": ["M"], + "technicality": ["S", "M"], + "residency's": [], + "artisan'ses": [], + "snowshed": [], + "Earp's": [], + "solemnizes": [], + "condenser": ["M"], + "Steele": ["M"], + "chaining": [], + "Mountie'ses": [], + "curies": [], + "NAACP": ["M"], + "gouged": [], + "plebe's": [], + "hypertext's": [], + "Cecilia's": [], + "Tosca's": [], + "impels": [], + "loopsing": [], + "ecotourist's": [], + "tangents": [], + "biblical": [], + "neckline's": [], + "Mercado's": [], + "parked": [], + "ellipsis": ["M"], + "rupiahs": [], + "aquas": [], + "forerunner": ["M", "S"], + "enraptured": [], + "Catalonia": ["M"], + "menial": ["M", "Y", "S"], + "improvidence's": [], + "pessimal": [], + "weenies": [], + "tape'ses": [], + "outbreak's": [], + "mezzo": ["S", "M"], + "Heather": ["M"], + "tumbling's": [], + "Polynesians": [], + "ESE's": [], + "vane": ["M", "S"], + "lawlessness's": [], + "exculpated": [], + "centigram's": [], + "garnering": [], + "penitents's": [], + "substandard": [], + "arbitraged": [], + "uncle": ["S", "M"], + "zone's": [], + "identically": [], + "clockwise": [], + "wapiti'ses": [], + "ruts": [], + "switched": [], + "stegosauri": [], + "paramedic's": [], + "underpopulated": [], + "horsewhipped": [], + "classier": [], + "wiggliest": [], + "mainlininged": [], + "McCartney's": [], + "threepence": ["M"], + "grossest": [], + "obstetricians's": [], + "graphics": [], + "renunciation": ["S", "M"], + "Ahmadabad": ["M"], + "zests": [], + "cumulonimbi": [], + "outdated": [], + "antiphons's": [], + "assists": [], + "require": ["L", "D", "G"], + "Sprint's": [], + "laureates": [], + "condemnation's": [], + "waterlilies's": [], + "idol's": [], + "mastoids": [], + "skillet's": [], + "smokehouses": [], + "Bolivar's": [], + "peacekeeper's": [], + "superabundance": ["M", "S"], + "safari'sed": [], + "repossession": [], + "arbitrator'ses": [], + "blacker": [], + "beautician": ["S", "M"], + "kneecapping": [], + "feedings": [], + "crest'sed": [], + "definer'ses": [], + "adventitious": ["Y"], + "Alnilam's": [], + "socking": [], + "accentsing": [], + "newsflashes": [], + "plumier": [], + "overemphasizinged": [], + "mimic's": [], + "chaperoned": ["U"], + "wood's": [], + "Lind's": [], + "loungeder": [], + "Gillespie": ["M"], + "lagoon": ["S", "M"], + "tickerers": [], + "promulgationed": [], + "jazzed": [], + "advertisers": [], + "radiometer": ["M", "S"], + "loco": ["S"], + "mete's": [], + "genital": ["F", "Y"], + "meanest": [], + "Pasteur's": [], + "sweetly": [], + "regress": ["M", "D", "S", "G", "V"], + "intoxicant's": [], + "waterline'ses": [], + "deceiver's": [], + "nettle'sing": [], + "scenting": [], + "indicts": [], + "castings's": [], + "inherits": [], + "psychedelic": ["S", "M"], + "Ajax's": [], + "measures": [], + "tailgate": ["M", "Z", "G", "D", "R", "S"], + "winsomeness": ["M"], + "Meg": ["M"], + "Herminia": ["M"], + "confirmsed": [], + "biodiversity": ["M"], + "shallot'ses": [], + "chromes": [], + "engram": ["S", "M"], + "fennel": ["M"], + "Aquarian": [], + "broadsidinged": [], + "enrolledment": [], + "filtrationed": [], + "Rabelaisian": ["M"], + "Amharic": ["M"], + "chivieds": [], + "sprucing": [], + "stupefaction's": [], + "treatises": [], + "Yemeni's": [], + "growth": ["A", "M"], + "outline'sing": [], + "pointy": ["T", "R"], + "fluency's": [], + "prorate": ["D", "S", "G"], + "ballroom'ses": [], + "construct's": [], + "Christina": ["M"], + "interfere": ["G", "D", "S"], + "parlor'ses": [], + "spuds": [], + "Orthodox": [], + "tautnessens": [], + "lieds": [], + "defect": ["M", "D", "G", "V", "S"], + "distrust": [], + "politicization": ["M"], + "musette's": [], + "voltaic": [], + "lengthen": ["G", "D"], + "sexist'ses": [], + "lapsesed": [], + "passengers": [], + "basswood'ses": [], + "colleagues": [], + "Capistrano": ["M"], + "obligateds": [], + "glutton's": [], + "townships": [], + "pecks": [], + "Gaia": ["M"], + "facade": ["S", "M"], + "ulceration": ["M"], + "anatomized": [], + "stabilizer's": [], + "misshapen": [], + "achievable": [], + "polemicists": [], + "Tarazed's": [], + "bullshitting": ["!"], + "funnel'sed": [], + "pole's": [], + "dinars": [], + "unconvinced": [], + "sandbagged": [], + "monks": [], + "disposer": [], + "swimsuits": [], + "gannets": [], + "conjurers": [], + "Swisses": [], + "reffing": [], + "psychotic": ["S", "M"], + "tenoneding": [], + "sanctification": ["M"], + "coleus's": [], + "dropkick's": [], + "fetches": [], + "loudmouth's": [], + "monsieur": ["M"], + "Ganesha's": [], + "horsewoman": ["M"], + "faro": ["M"], + "romaine": ["M", "S"], + "chuckle's": [], + "suppresseds": [], + "thistle's": [], + "Persepolis": ["M"], + "currieds": [], + "support": ["M", "D", "R", "S", "B", "Z", "G", "V"], + "exonerating": [], + "Darwin's": [], + "GM's": [], + "baldly": [], + "explorations": [], + "nurturer's": [], + "lox": ["M"], + "tailbones": [], + "attached": ["U"], + "spacesuits's": [], + "owlet": ["M", "S"], + "convulse": ["G", "N", "V", "X", "D", "S"], + "signalization's": [], + "bestseller": ["M", "S"], + "ravishers": [], + "conscientious": ["P", "Y"], + "chum": ["S", "M"], + "rephotograph": ["D", "G"], + "desperationness": [], + "colonizes": [], + "Kagoshima": ["M"], + "radiates": [], + "spy's": [], + "successions's": [], + "Herring's": [], + "corruptly": [], + "councilwomen": [], + "whomever": [], + "pastes": [], + "princedoms": [], + "Lorelei's": [], + "iambics's": [], + "torch": ["G", "M", "D", "S"], + "Riesling": ["M", "S"], + "hibiscus": ["M", "S"], + "tautology's": [], + "piecrust's": [], + "thermostatically": [], + "shroud'sed": [], + "thuggish": [], + "heighten": ["D", "G"], + "Brendan's": [], + "Hussite": ["M"], + "meddlinged": [], + "unaffected": [], + "illness": ["M", "S"], + "unforgettably": [], + "Kawasaki": ["M"], + "critic": ["S", "M"], + "vie": ["D", "S"], + "oodles's": [], + "figures": [], + "articulateds": [], + "china": ["M"], + "Scorpio's": [], + "Gujarat": ["M"], + "Brisbane's": [], + "sifted": ["U"], + "multifarious": ["P", "Y"], + "dispersion": ["M"], + "titches": [], + "greenback'ses": [], + "Langerhans": ["M"], + "chummily": [], + "gunner'ses": [], + "placarded": [], + "radiology": ["M"], + "absurderly": [], + "poncinged": [], + "overflew": [], + "fagged": [], + "rumps": [], + "sincerely": [], + "Meany": ["M"], + "departures's": [], + "bribery's": [], + "footage": ["M"], + "claws": [], + "revolve": ["B", "Z", "G", "D", "R", "S"], + "dysphagia": [], + "pinhole": ["S", "M"], + "parapsychologist'ses": [], + "forensic": ["M", "S"], + "dumbfounding": [], + "nutriment": ["M", "S"], + "convocation": [], + "forwent": [], + "refasten": [], + "pelvis'ses": [], + "unrolls": [], + "facades's": [], + "Dryden": ["M"], + "confutesing": [], + "inaugural": ["S", "M"], + "scrip'ses": [], + "Petra": ["M"], + "singerly": [], + "Garza's": [], + "lucid": ["P", "Y"], + "drencheds": [], + "Cara": ["M"], + "Annunciation": ["S", "M"], + "heartiness's": [], + "Mahican": ["S", "M"], + "makeup'ses": [], + "Blackfoot": ["M"], + "jacarandas": [], + "elastically": [], + "normal's": [], + "use'sing": [], + "voicemail's": [], + "tutti's": [], + "soggily": [], + "grunions's": [], + "moroseness's": [], + "programs": [], + "decisiveness": ["I", "M"], + "basswood": ["M", "S"], + "bitchiness's": [], + "Hakluyt's": [], + "minuteman": ["M"], + "upturning": [], + "italicizing": [], + "quid's": [], + "sphincter'ses": [], + "secs": [], + "qts": [], + "bourgeois's": [], + "gowning": [], + "radiotherapist": ["M", "S"], + "activeness's": [], + "kidnapper's": [], + "Davidson's": [], + "deflateds": [], + "fitness's": [], + "overachieves": [], + "palmy": ["T", "R"], + "discreetness's": [], + "incendiary's": [], + "Nina": ["M"], + "hurtles": [], + "divinged": [], + "surprisingly": [], + "jinxing": [], + "enumeratingen": [], + "bricklayer'ses": [], + "teaser": ["M"], + "ravenously": [], + "blowhard'ses": [], + "tweets": [], + "Sheppard's": [], + "loosenings": [], + "rubrics": [], + "prices": [], + "mayn't": [], + "glisters": [], + "dourest": [], + "nipped": [], + "blunder": ["M", "D", "R", "Z", "G", "S"], + "taverns": [], + "parish": ["M", "S"], + "interdict'sed": [], + "scratchily": [], + "daydreamer": ["M"], + "singeing": [], + "formality": ["I", "M"], + "plantain's": [], + "xxxi": [], + "infatuating": [], + "battler's": [], + "zoophytes's": [], + "escapist'ses": [], + "trampoline'sing": [], + "moneylender": ["S", "M"], + "headlamps": [], + "ranting's": [], + "trumpeting": [], + "constitutionality": ["U", "M"], + "Eyck": ["M"], + "Culbertson": ["M"], + "pygmies": [], + "approximation": ["M"], + "applier's": [], + "crackeder": [], + "contemptuousliness": [], + "laughing'sly": [], + "tress": ["E", "M", "S"], + "carmine's": [], + "vice": ["C", "M", "S"], + "Yucatan's": [], + "whispers": [], + "Rabelais": ["M"], + "gazelle": ["M", "S"], + "conglomeratingen": [], + "metallurgist's": [], + "dongings": [], + "suspendeder": [], + "soupcon": ["M", "S"], + "bohemianism's": [], + "Cabral's": [], + "wainwright's": [], + "vivisected": [], + "Sm": ["M"], + "sproutings": [], + "nipping": [], + "communeds": [], + "popularizeds": [], + "pebble's": [], + "ascribed": [], + "fulminations": [], + "disinterring": [], + "opulence": ["M"], + "surrey's": [], + "Thieu": ["M"], + "gelignite's": [], + "iniquitously": [], + "mannerisms's": [], + "reimbursement'ses": [], + "depreciating": [], + "circular's": [], + "calibration": ["M"], + "labial": ["S", "M"], + "categorical": ["Y"], + "loiters": [], + "shoulderings": [], + "compact's": [], + "sentient": ["I"], + "Proterozoic's": [], + "Osbert": ["M"], + "Leonidas's": [], + "magnetite's": [], + "cognitive": ["Y"], + "Carlsbad": ["M"], + "Upanishads": ["M"], + "maltreats": [], + "settlement": ["A", "M"], + "Ticketmaster's": [], + "tramp'sed": [], + "supplicatinged": [], + "Funafuti": ["M"], + "kaleidoscope": ["M", "S"], + "McBride": ["M"], + "satellites's": [], + "amnesia": ["M"], + "lispsers": [], + "carter's": [], + "antilogarithm's": [], + "seasons": [], + "supercargo's": [], + "unfrockeding": [], + "bandage": ["D", "S", "M", "G"], + "beautifiers": [], + "predisposing": [], + "archduchesses": [], + "risers": [], + "drabs": [], + "terse": ["R", "Y", "T", "P"], + "deduceds": [], + "shellfire's": [], + "stunners": [], + "bypass": ["G", "M", "D", "S"], + "machinist'ses": [], + "swallowtail'ses": [], + "approximatesens": [], + "prepared": ["U", "P"], + "splashdown": ["M", "S"], + "chauvinist": ["S", "M"], + "emolument'ses": [], + "Andrea's": [], + "snowboard'sed": [], + "sallies": [], + "reorg'sed": [], + "contributory": [], + "upchuck": ["S", "G", "D"], + "Hannah's": [], + "cryptographer's": [], + "edited": ["U"], + "implicitness's": [], + "ravage's": [], + "occasional": ["Y"], + "gerbil'ses": [], + "appositelication": [], + "Jacksonville": ["M"], + "comical": ["Y"], + "edema's": [], + "Petra's": [], + "beholdersing": [], + "hinging": [], + "plebeian'ses": [], + "wintered": [], + "rococo": ["M"], + "daguerreotype's": [], + "nonprofessional's": [], + "whisperers": [], + "Angelico's": [], + "guildhall'ses": [], + "tiebreakers": [], + "Atlantes": [], + "doped": [], + "passage": ["M", "S"], + "Eunice's": [], + "renewal's": [], + "bifurcatesing": [], + "visit": ["A", "S", "G", "D"], + "piquancy": ["M"], + "SOP's": [], + "fetish'ses": [], + "Kurosawa's": [], + "pang's": [], + "markup's": [], + "pillagers": [], + "fatuousness": ["M"], + "zoom": ["M", "D", "S", "G"], + "babbler's": [], + "rotated": [], + "pasha's": [], + "Dwayne's": [], + "fixers": [], + "luringed": [], + "gyveds": [], + "transmogrifiesen": [], + "Sophoclean's": [], + "cermet": ["M"], + "segregate": ["C", "D", "S", "G", "N"], + "Lerner's": [], + "snitch": ["M", "D", "S", "G"], + "liquefying": [], + "splurges": [], + "cannibals's": [], + "prejudicing": [], + "aquifers's": [], + "basinful": ["M", "S"], + "matriculateds": [], + "skies's": [], + "handlinged": [], + "staple's": [], + "exodus's": [], + "deodorizers": [], + "canvass'sed": [], + "birthmark's": [], + "leashing": [], + "gunship'ses": [], + "energies's": [], + "herbage's": [], + "enthronement": ["S", "M"], + "harmonica'ses": [], + "masses": [], + "reef's": [], + "counterweight's": [], + "encodes": [], + "kleptomania": ["M"], + "rabbis": [], + "beaus's": [], + "rushesers": [], + "Edgardo's": [], + "sacrilegious": ["Y"], + "epistemic": [], + "dictatorially": [], + "reliever": ["M"], + "Regor's": [], + "flumes's": [], + "PARC": ["S"], + "surfboardeds": [], + "house": ["A", "D", "S", "G"], + "sequined": [], + "regency": ["S", "M"], + "ricochets": [], + "hydroplane's": [], + "homebodies's": [], + "pets": [], + "requiems": [], + "arbitraments's": [], + "ion's": [], + "flysheet": ["S"], + "rattle's": [], + "subdivision's": [], + "syndicate": ["D", "S", "M", "G", "N"], + "abjuringed": [], + "contemplates": [], + "stockpile": ["M", "G", "D", "S"], + "Thoroughbred": ["M"], + "coffins's": [], + "womanizesers": [], + "backcombing": [], + "carcinogenic's": [], + "redhead's": [], + "agleam": [], + "fasteninged": [], + "Chou": ["M"], + "coalesce": ["G", "D", "S"], + "coupes": [], + "Chappaquiddick": ["M"], + "shuck": ["G", "M", "D", "S"], + "subteens": [], + "creosote's": [], + "coilings": [], + "expediences": [], + "Bonhoeffer's": [], + "indebted": ["P"], + "cooing": [], + "bowlines": [], + "powwow'sed": [], + "peruke": ["M", "S"], + "traduces": [], + "opened": ["U"], + "hash's": [], + "roominess": ["M"], + "upland'ses": [], + "archdioceses": [], + "Sanforized's": [], + "downdraft": ["M", "S"], + "alchemists's": [], + "omission": ["M", "S"], + "bluegill's": [], + "patricides's": [], + "fistful's": [], + "indeterminate": ["Y"], + "toady": ["D", "S", "M", "G"], + "junkie": ["M", "T", "R", "S"], + "visitations": [], + "incubus'ses": [], + "novelty": ["S", "M"], + "color's": [], + "calico": ["M"], + "mudslinging's": [], + "challenged": ["U"], + "private'sly": [], + "badinage's": [], + "ding": ["M", "D", "G"], + "devilishness's": [], + "scuffles": [], + "irredeemably": [], + "quantitative": ["Y"], + "councilors": [], + "Muslims": [], + "disreintegrate": [], + "drumbeats's": [], + "foal's": [], + "inscribersing": [], + "beatification's": [], + "lad": ["S", "G", "M", "D", "N", "J"], + "Yuri's": [], + "facile": ["Y"], + "victualed": [], + "mattes": [], + "imprudence's": [], + "synapse's": [], + "jingoists": [], + "sheepherder": ["M", "S"], + "Hearst's": [], + "schussing's": [], + "Quonset": ["M"], + "Attn": [], + "Jehovah's": [], + "raggedy": ["R", "T"], + "Icelanders": [], + "paps": [], + "Pawnee": ["S", "M"], + "confrontation": ["S", "M"], + "grindstone": ["M", "S"], + "ranklesing": [], + "granaries": [], + "windshields's": [], + "peacock": ["M", "S"], + "noon": ["M"], + "malnutrition": ["M"], + "depositor's": [], + "impersonationsed": [], + "affecting": ["Y"], + "prevented": [], + "horribly": [], + "mimickers's": [], + "tachograph": [], + "residencies's": [], + "mouthful's": [], + "broadsheet": ["S", "M"], + "wiggled": [], + "uniforming": [], + "booked": [], + "Dubcek": ["M"], + "downs": [], + "leched": [], + "nucleus": ["M"], + "grippersing": [], + "honeymoon'sed": [], + "voile": ["M"], + "Arctic's": [], + "exfoliates": [], + "cakes": [], + "florist's": [], + "inhumane": ["Y"], + "patois": ["M"], + "rebut": [], + "subscriber": ["M", "S"], + "Bede's": [], + "footie": [], + "radiotelephones": [], + "Nos": [], + "tinkleds": [], + "Bradford": ["M"], + "bruits": [], + "pouches": [], + "wealthy": ["T", "R", "P"], + "telexesing": [], + "quango": ["S"], + "epaulet's": [], + "freebies": [], + "Mark's": [], + "translucently": [], + "nudgeds": [], + "switchable": [], + "sullen": ["R", "Y", "P", "T"], + "froufrou's": [], + "apparition's": [], + "microfilm'sed": [], + "deciliter'ses": [], + "popularity": ["U", "M"], + "sluiced": [], + "mollifies": [], + "corn'sed": [], + "aromatic": ["M", "S"], + "spastic's": [], + "unprompted": [], + "Andorran's": [], + "puckers's": [], + "prizes": [], + "haunter": ["M"], + "addressees's": [], + "rationals's": [], + "insensible": [], + "measurements": [], + "Nadia's": [], + "freshet": ["M", "S"], + "mooring": ["M"], + "career'sed": [], + "comparative's": [], + "auxiliaries": [], + "stillest": [], + "collies": [], + "expropriator": ["S", "M"], + "crossbows": [], + "jadedness's": [], + "devastator'ses": [], + "visitants": [], + "revolutionaries's": [], + "grotesqueness": ["M"], + "Pkwy": [], + "lawrencium's": [], + "expands": [], + "franchisees's": [], + "barterer": ["M"], + "parson": ["M", "S"], + "Vandyke": ["M"], + "dentition": ["M"], + "plasterer": ["M"], + "Bollywood's": [], + "Beatlemania's": [], + "roomfuls's": [], + "trademarks": [], + "bureaucratizinged": [], + "stealthinesser": [], + "cistern's": [], + "blinkersing": [], + "effulgence": ["M"], + "outdistancinged": [], + "bargaining": [], + "decaff": [], + "sickos": [], + "bankeder": [], + "vestiges's": [], + "Michaelmas'ses": [], + "corner'sed": [], + "kidnaps": [], + "bamboozleds": [], + "watermark'sed": [], + "masque's": [], + "contradiction": ["S", "M"], + "Izaak's": [], + "transgenders": [], + "heavyweight": ["M", "S"], + "silicone": ["M"], + "Fafnir's": [], + "breeziest": [], + "vibrating": [], + "CPI": ["M"], + "flit's": [], + "meagerly": [], + "momentousnessly": [], + "lewdness's": [], + "Pianola's": [], + "Shantung": ["M"], + "grandnephew": ["M", "S"], + "sledder": ["S", "M"], + "ceased": [], + "czars": [], + "lease's": [], + "Jungfrau's": [], + "admit": ["A", "S"], + "computerize": ["G", "D", "S"], + "Gk": [], + "playmate's": [], + "muddleheaded": [], + "yards": [], + "internationalization": [], + "mutter'sed": [], + "vivifieds": [], + "busboy": ["S", "M"], + "Rios": ["M"], + "peregrinates": [], + "itch'sed": [], + "cerebellum's": [], + "greasers": [], + "farrow'sed": [], + "resilient": ["Y"], + "bubblier": [], + "trickiest": [], + "causeder": [], + "burpeding": [], + "warpaths": [], + "prohibitions": [], + "gullies": [], + "serenadinged": [], + "databases's": [], + "counterrevolution": ["S", "M"], + "salt's": [], + "clapper's": [], + "well": ["M", "D", "P", "S", "G"], + "furnace": ["S", "M"], + "sinkersing": [], + "flankeder": [], + "impressionistic": [], + "quartersing": [], + "firewood's": [], + "guilelessliness": [], + "gallimaufry's": [], + "radiant": ["Y"], + "underline": ["M", "G", "D", "S"], + "carload": ["S", "M"], + "does's": [], + "ladle": ["D", "S", "M", "G"], + "varlets": [], + "storms": [], + "silent'ser": [], + "behemoths": [], + "dictations": [], + "Rosemary": ["M"], + "Shaun": ["M"], + "dentist's": [], + "magnifier's": [], + "Hermaphroditus's": [], + "grieved": [], + "pastureds": [], + "suitings": [], + "alkyd'ses": [], + "mobster": ["S", "M"], + "cheerfuller": [], + "divisively": [], + "haleder": [], + "is": [], + "Sachs's": [], + "viburnums's": [], + "Jeanette's": [], + "vegans's": [], + "Simpson's": [], + "hostile'sly": [], + "litigant's": [], + "paperer": ["M"], + "barber's": [], + "millennium'ses": [], + "snob'ses": [], + "deadlocking": [], + "postgraduates's": [], + "seamless": ["Y"], + "optsing": [], + "Mormon's": [], + "prepaysment": [], + "effusion's": [], + "masticateds": [], + "mileage's": [], + "outclassesing": [], + "oglinged": [], + "maypoles's": [], + "folktale's": [], + "helpmate's": [], + "invadersing": [], + "latte": ["R", "S", "M"], + "Simenon's": [], + "Chandler's": [], + "studiousnessly": [], + "Walgreen's": [], + "halogen's": [], + "moonlightersing": [], + "clarinets's": [], + "splashiest": [], + "Guthrie's": [], + "dominating": [], + "faker's": [], + "cyclones": [], + "kinkily": [], + "wades": [], + "hotshot'ses": [], + "biosynthesis": [], + "shticks": [], + "multiplieder": [], + "innateness's": [], + "crony's": [], + "Leninism's": [], + "charismatics": [], + "hammer's": [], + "Afghani's": [], + "ribbon": ["S", "M"], + "choppily": [], + "canniness's": [], + "tweezers": ["M"], + "sprains's": [], + "Short": ["M"], + "requite": ["D", "R", "S", "Z", "G"], + "emergence's": [], + "sunbathed": [], + "parerable": [], + "reunstrung": [], + "pharmaceuticals's": [], + "hazardously": [], + "demonologies": [], + "tucks": [], + "hurt'ses": [], + "worsting": [], + "catch's": [], + "brinier": [], + "solemnize": ["D", "S", "G"], + "sweeteners": [], + "abductor": ["M", "S"], + "mothballing": [], + "LL": [], + "behaviorally": [], + "waterfowls": [], + "gaze": ["M", "Z", "G", "D", "R", "S"], + "xylophonist'ses": [], + "back'sed": [], + "expansion's": [], + "precision": ["M"], + "advisesers": [], + "subhead'ses": [], + "monogamous": ["Y"], + "loathinged": [], + "trey's": [], + "relinquishmented": [], + "floorboard": ["M", "S"], + "intellectual": ["M", "Y", "S"], + "Richelieu's": [], + "hawk's": [], + "florist": ["S", "M"], + "antipasto'ses": [], + "Skylab": ["M"], + "sireds": [], + "furriness": ["M"], + "tussocks": [], + "dejectinged": [], + "barbering": [], + "crick's": [], + "narcolepsy's": [], + "erysipelas": ["M"], + "remands": [], + "aspirate's": [], + "watercress's": [], + "immersive": [], + "privet": ["S", "M"], + "Ludhiana's": [], + "blower's": [], + "cowcatcher's": [], + "busty": ["R", "Z", "T"], + "ills's": [], + "cultivateds": [], + "lock's": [], + "imp's": [], + "corkers's": [], + "leek": ["M", "S"], + "fleshing": [], + "firetruck's": [], + "crackers": [], + "haploid": ["M", "S"], + "generic": ["S", "M"], + "observatory": ["S", "M"], + "greasing": [], + "Lambrusco": ["M"], + "enticing": ["Y"], + "percent": ["M", "S"], + "weathers": [], + "French": ["M", "S"], + "postdateds": [], + "fagot's": [], + "stria's": [], + "lipids": [], + "malingers": [], + "jay's": [], + "combatants": [], + "teatimes": [], + "factious": [], + "knack's": [], + "stableman": ["M"], + "minors": [], + "consummationens": [], + "introverts": [], + "agrarian": ["M", "S"], + "outsiders": [], + "Eric's": [], + "placement's": [], + "corrosive's": [], + "simpleton": ["S", "M"], + "pollen's": [], + "ultralights's": [], + "opening": ["M"], + "domino's": [], + "infiltrator": ["S", "M"], + "suaver": [], + "Assisi's": [], + "visible": ["I"], + "innards": ["M"], + "flippantly": [], + "limitation": ["C", "M"], + "kindergartner": ["S", "M"], + "Wycherley": ["M"], + "effings": [], + "complementary": [], + "cage's": [], + "exudation's": [], + "kiln": ["M", "D", "S", "G"], + "illicitness": ["M"], + "Bettye": ["M"], + "sector": ["E", "S", "M"], + "Vedanta": ["M"], + "piazza": ["M", "S"], + "belladonna's": [], + "accidental'sly": [], + "precededs": [], + "quarterly": ["S", "M"], + "Hans'sen": [], + "sleaziest": [], + "Bradshaw's": [], + "alkaloid": ["S", "M"], + "hardstand's": [], + "mounds": [], + "williwaws": [], + "Spackle": ["M"], + "caliper's": [], + "deepness": ["M"], + "journeymen": [], + "mutter's": [], + "broadcasting's": [], + "Jamaal": ["M"], + "napkin'ses": [], + "intoxicatingen": [], + "dressmaker": ["S", "M"], + "westerns": [], + "scrambler": ["M", "S"], + "Ulyanovsk's": [], + "lexicographer's": [], + "stitches": [], + "booms": [], + "northerners": [], + "monochromes": [], + "bandinged": [], + "tom's": [], + "victoriously": [], + "athletically": [], + "Parthia": ["M"], + "movements": [], + "devoted": ["Y"], + "jerkeds": [], + "animadversions": [], + "females": [], + "Avis": ["M"], + "preserver": ["M"], + "molts": [], + "lushes": [], + "futurities": [], + "Azov's": [], + "kiddish": [], + "socials's": [], + "physicality": [], + "pennon": ["M", "S"], + "discursiveness's": [], + "Barber's": [], + "separate'sly": [], + "yen's": [], + "fratricide'ses": [], + "overhauleds": [], + "pliable": [], + "bluejeans": ["M"], + "mishmash": ["M", "S"], + "Lapps": [], + "Protagoras's": [], + "pejoration's": [], + "pend": ["C", "D", "S", "G"], + "pileup'ses": [], + "grafted": [], + "seabed's": [], + "guest's": [], + "hydrocarbon'ses": [], + "obsessed": [], + "ruderness": [], + "ankle": ["M", "S"], + "discommoding": [], + "Marissa's": [], + "forlorn": ["Y"], + "surreys": [], + "generalist's": [], + "hardback's": [], + "fabricatingen": [], + "crevice": ["M", "S"], + "enraptures": [], + "ducats's": [], + "chairmanships's": [], + "mammogram": ["M", "S"], + "angora's": [], + "bimetallism": ["M"], + "chillingsness": [], + "cosmetics": [], + "skateboard's": [], + "bunk": ["C", "D", "G", "S"], + "battleground's": [], + "redolence's": [], + "hypertrophy'sing": [], + "Rangoon": ["M"], + "pitapats's": [], + "trekked": [], + "Joann": ["M"], + "penitentiaries's": [], + "Mulroney's": [], + "prof": ["M", "S"], + "wince'sing": [], + "oasis's": [], + "derogateds": [], + "forayeding": [], + "greenbelt's": [], + "bactericides's": [], + "incorrigibility's": [], + "foursome": ["S", "M"], + "blinder": ["M"], + "Othello": ["M"], + "impingeds": [], + "chemically": [], + "Alexei": ["M"], + "colitis": ["M"], + "diabetic": ["S", "M"], + "Garrick": ["M"], + "overgrow": ["H", "S", "G"], + "centers": [], + "instinct's": [], + "deviants": [], + "subtenants": [], + "Chennai": ["M"], + "manginess": ["M"], + "pile's": [], + "infinitive": ["M", "S"], + "domeds": [], + "chauffeured": [], + "wittierness": [], + "insufferably": [], + "creoles": [], + "nonattendance": ["M"], + "Gautier": ["M"], + "hellcat": ["M", "S"], + "camaraderie": ["M"], + "serializeds": [], + "defenseless": ["Y", "P"], + "somnambulist's": [], + "Judy's": [], + "compilers": [], + "vineyard'ses": [], + "Buddhists": [], + "blackener": [], + "Ethiopia": ["M"], + "snowplows": [], + "impostures": [], + "deceive": ["U", "G", "D", "S"], + "antelope'ses": [], + "Harmon": ["M"], + "skiing's": [], + "Katrina": ["M"], + "instill": [], + "bobby's": [], + "substrate": ["M", "S"], + "basks": [], + "cogitatesens": [], + "saunaed": [], + "readerships": [], + "transfinite": [], + "Millard's": [], + "astringently": [], + "overview": ["M", "S"], + "cystitis": [], + "upped": [], + "foxiest": [], + "week": ["M", "Y", "S"], + "introspect": ["G", "V", "D", "S"], + "weave'sers": [], + "householderers": [], + "plasterer's": [], + "fecundation's": [], + "toothache": ["M", "S"], + "flammable's": [], + "snacks": [], + "stolons": [], + "jells": [], + "boxcars's": [], + "LyX": ["M"], + "Bekesy's": [], + "Schoenberg's": [], + "cheerless": ["P", "Y"], + "transliterationens": [], + "recognizance": [], + "scene'ses": [], + "hipping": [], + "padding's": [], + "Poussin's": [], + "oration": ["M"], + "dedisclaimer": [], + "religions's": [], + "inviteds": [], + "Seljuk's": [], + "fusions": [], + "dumb": ["R", "Y", "P", "T"], + "username'ses": [], + "googly": ["S"], + "circulated": [], + "Clapeyron's": [], + "kitty's": [], + "fauna": ["S", "M"], + "drafted": [], + "shanty's": [], + "lowness": ["M"], + "duennas": [], + "redraw": ["S", "G"], + "slithers": [], + "neighborhoods's": [], + "slenderizing": [], + "gullibility's": [], + "prefigure": ["G", "D", "S"], + "pent": [], + "delicateness's": [], + "caves": [], + "flour's": [], + "Tabernacle'ses": [], + "solidness's": [], + "malware's": [], + "quiz": ["M"], + "gent'ses": [], + "frown's": [], + "democrat": ["M", "S"], + "mandrel's": [], + "keener": [], + "backcomb": ["D", "S", "G"], + "earns": [], + "rubberneckeder": [], + "wiser": [], + "Clotho's": [], + "breakfast'sed": [], + "bangsing": [], + "engendered": [], + "womanhood": ["M"], + "scarlet": ["M"], + "collision": ["S", "M"], + "Diane": ["M"], + "authoritativeness": ["M"], + "playbacks": [], + "disillusion": ["G", "L", "D"], + "eloquent": ["Y"], + "catereder": [], + "baitsing": [], + "cotangents": [], + "reprisal's": [], + "anteater'ses": [], + "theory's": [], + "carouse'sers": [], + "confiscatory": [], + "winning'sly": [], + "Kilroy's": [], + "tournaments's": [], + "duckiers": [], + "descriptiveness": ["M"], + "powders's": [], + "Boise's": [], + "communication's": [], + "blossomy": [], + "Callaghan": ["M"], + "acrobat's": [], + "finagler's": [], + "swamp's": [], + "twerps": [], + "vitrines": [], + "bluebonnets": [], + "propagatingen": [], + "phi": ["S", "M"], + "clvii": [], + "mourns": [], + "wedge's": [], + "academies's": [], + "ennobling": [], + "discoveries's": [], + "purveyors": [], + "clamp": ["G", "M", "D", "S"], + "snuffer's": [], + "outhit": ["S"], + "navy": ["S", "M"], + "roguery": ["M"], + "pipette's": [], + "medicine": ["M", "S"], + "statehouse's": [], + "intercommunication": ["M"], + "vestibule's": [], + "pantyliner's": [], + "colorfulness": ["M"], + "mackintosh": ["M", "S"], + "wormwood's": [], + "merchant": ["M", "B", "S"], + "isle": ["M", "S"], + "average's": [], + "idiosyncratic": [], + "constitutionals": [], + "stropped": [], + "cashbooks": [], + "solider": [], + "raceway": ["M", "S"], + "sinking's": [], + "premiers": [], + "Cymbeline's": [], + "policymakers": [], + "blotching": [], + "mailbombed": [], + "Creoles": [], + "emulsification's": [], + "rosins's": [], + "Ignatius's": [], + "pregames": [], + "payphone": ["S"], + "libelous": [], + "Adela": ["M"], + "differed": [], + "Sawyer": ["M"], + "Muir": ["M"], + "conics": [], + "hardheadedness's": [], + "scouted": [], + "rabbit's": [], + "reuntaught": [], + "ornerier": [], + "electroshock's": [], + "outfitted": [], + "smirch's": [], + "slobbing": [], + "Politburo's": [], + "quickest": [], + "impasse": ["B", "S", "M", "V"], + "culminateds": [], + "procrastinator'ses": [], + "surface": ["A", "G", "D", "S"], + "windbags": [], + "LGBT": [], + "ICBMs's": [], + "tablelands": [], + "trisected": [], + "fevers": [], + "prier": ["M"], + "deodorizing": [], + "Eurasia's": [], + "Cronin": ["M"], + "divvying": [], + "rising": ["M"], + "leftism's": [], + "campsing": [], + "farrow": ["S", "M", "D", "G"], + "bruised": [], + "lampoon": ["S", "G", "M", "D"], + "majoritarianism": [], + "broomstick'ses": [], + "shirtless": [], + "numerology": ["M"], + "chickened": [], + "Vistula's": [], + "tuft's": [], + "lock": ["M", "D", "R", "S", "B", "Z", "G"], + "lampshade": ["S", "M"], + "fatigue": ["M", "D", "S", "G"], + "tumbles": [], + "apprenticeship'ses": [], + "midlife's": [], + "robber": ["M", "S"], + "smiled": [], + "particularization's": [], + "ares's": [], + "monaural": [], + "congregate": ["G", "N", "D", "S", "X"], + "sereneness": ["M"], + "baboons": [], + "solesed": [], + "walnut": ["M", "S"], + "zeal": ["M"], + "hawked": [], + "slipping": [], + "traits's": [], + "stockades": [], + "roosts's": [], + "amorality's": [], + "Wilbur": ["M"], + "huffing": [], + "Giacometti": ["M"], + "wetback's": [], + "automaton's": [], + "agglomerate's": [], + "fer": [], + "expert's": [], + "assembly": ["A", "M"], + "project's": [], + "genetics": ["M"], + "forwarder": ["M"], + "disputations's": [], + "knightedly": [], + "coadjutor": ["M", "S"], + "assn": [], + "atomic": [], + "oboe's": [], + "whisk": ["S", "M", "D", "R", "Z", "G"], + "ministration'ses": [], + "scroll": ["G", "S", "M", "D"], + "kaffeeklatsch's": [], + "tipples": [], + "hallucinatory": [], + "grassland": ["M", "S"], + "chimeras": [], + "rawness's": [], + "bungeding": [], + "circumciseds": [], + "alternates": [], + "commercially": [], + "rhinestones": [], + "bond": ["S", "G", "M", "D"], + "association's": [], + "heartsickness's": [], + "dooming": [], + "punctuationed": [], + "springs": [], + "Madurai": ["M"], + "folio's": [], + "Pirandello's": [], + "defeaters": [], + "zing's": [], + "gaudier": [], + "courser'ses": [], + "highlighters": [], + "blarneyed": [], + "tea": ["S", "M"], + "Barnett's": [], + "belongingsed": [], + "multiverses": [], + "parsing": [], + "guyed": [], + "cubit's": [], + "wail's": [], + "yachts's": [], + "telexing": [], + "insectivore'ses": [], + "charters": [], + "bestrewn": [], + "jujitsu": ["M"], + "Ingrid's": [], + "Scorsese's": [], + "cucumbers": [], + "foil'sed": [], + "McConnell's": [], + "festivities": [], + "giraffe's": [], + "swimsuit": ["S", "M"], + "richesly": [], + "Katy": ["M"], + "blaspheme": ["Z", "G", "D", "R", "S"], + "cosmically": [], + "pornography's": [], + "institutionally": [], + "consultsed": [], + "exorbitance": ["M"], + "fowls": [], + "customhouse": ["S", "M"], + "grieves": [], + "keratitis": [], + "hilliness": ["M"], + "opprobrium's": [], + "Geiger": ["M"], + "boa's": [], + "outvotinged": [], + "sellersing": [], + "Dilbert's": [], + "thundered": [], + "pro": ["S", "M"], + "gauging": [], + "engulfment's": [], + "hindrance": ["S", "M"], + "scootersing": [], + "peevish": ["P", "Y"], + "ulster's": [], + "Lyle's": [], + "smokers": [], + "teleconferenced": [], + "pianist'ses": [], + "prick": ["M", "D", "R", "Y", "S", "Z", "G"], + "grievance's": [], + "obeisant": [], + "ebonies": [], + "woulds": [], + "subconscious": ["P", "M", "Y"], + "sous's": [], + "mangetouts": [], + "underlined": [], + "falseness": ["M"], + "tootings": [], + "antiquarianism": ["M"], + "tautly": [], + "adsorbent'ses": [], + "sidesaddle": ["M", "S"], + "imagination's": [], + "wrote": ["A"], + "curb": ["M", "D", "G", "S"], + "hunchback's": [], + "dubbing": [], + "tracery": ["S", "M"], + "trawler": ["M"], + "exotics": [], + "impinge": ["L", "D", "S", "G"], + "Christ's": [], + "copay": ["M"], + "lodge's": [], + "bakeshops": [], + "Nereid": ["M"], + "veep's": [], + "trimaran": ["M", "S"], + "scanty": ["R", "S", "P", "T"], + "mellowerly": [], + "toupee": ["M", "S"], + "pulsate": ["X", "G", "N", "D", "S"], + "Shiva's": [], + "outlook'ses": [], + "suns's": [], + "KB's": [], + "hurries": [], + "spacer's": [], + "consortium": ["M"], + "paves": [], + "caricatureds": [], + "thug'ses": [], + "futility's": [], + "defuse": [], + "joiners": [], + "ptomaines's": [], + "Himmler": ["M"], + "Orlon'ses": [], + "rapidity's": [], + "metallurgist'ses": [], + "gherkins": [], + "Uccello": ["M"], + "firemen": [], + "privatization's": [], + "unhealthiness": [], + "scytheds": [], + "dither's": [], + "Monsignor's": [], + "Icahn": ["M"], + "unhardened": [], + "Bob": ["M"], + "procurer": [], + "instructor's": [], + "eyeglass's": [], + "ocelot'ses": [], + "grouse": ["M", "Z", "G", "D", "R", "S"], + "masonic": [], + "wondrous": ["Y"], + "seam'sed": [], + "cased": ["U"], + "Russia": ["M"], + "buybacks": [], + "dong": ["M", "D", "G", "S"], + "shockersing": [], + "printout's": [], + "comprise": ["G", "D", "S"], + "radiatingen": [], + "archaeologists's": [], + "two": ["S", "M"], + "disembody": [], + "contrasteding": [], + "Kazakh's": [], + "coneys": [], + "sluggishness": ["M"], + "determiners's": [], + "comet": ["S", "M"], + "steins's": [], + "administerings": [], + "undercharges": [], + "karma's": [], + "volley": ["G", "S", "M", "D"], + "phobias": [], + "Kabul": ["M"], + "wave's": [], + "legerdemain's": [], + "odalisques's": [], + "aftermarket": ["M", "S"], + "tonged": [], + "eructing": [], + "finalized": [], + "pluralize": ["G", "D", "S"], + "quested": [], + "kinfolk's": [], + "sidelight's": [], + "indecent": [], + "secondsment": [], + "sharp'sed": [], + "loader": ["M", "S"], + "putrefying": [], + "enchanters": [], + "habitual": ["Y", "P"], + "ghostwriters": [], + "withstand": ["G", "S"], + "Hispanics": [], + "analogizeds": [], + "bristlier": [], + "contriving": [], + "foreshadowinged": [], + "bellyache's": [], + "ironclad": ["M", "S"], + "maladministration": [], + "furniture": ["M"], + "Sisyphean": ["M"], + "millers": [], + "sleep's": [], + "casing's": [], + "Adenauer's": [], + "Babbitt's": [], + "fragment's": [], + "symphonies's": [], + "net": ["S", "M"], + "falsification": ["M"], + "quipster's": [], + "solder'sed": [], + "bulimics's": [], + "effigies's": [], + "individualizes": [], + "ruggedest": [], + "fingernail's": [], + "playgoer'ses": [], + "purse's": [], + "quadrennium'ses": [], + "ATP's": [], + "Leta": ["M"], + "portendsing": [], + "teeter'sed": [], + "graceful": ["E", "P", "Y"], + "pompadour'sed": [], + "pogroms": [], + "Haley's": [], + "ambulates": [], + "cushion'sed": [], + "Bodhisattva's": [], + "stewed": [], + "junkies": [], + "concertos's": [], + "tress's": [], + "exercises": [], + "fellowships": [], + "reverb": [], + "ruckus": ["M", "S"], + "elaboratenessens": [], + "Rubicon'ses": [], + "diet'sed": [], + "calabash'ses": [], + "embroidereder": [], + "Tacoma": ["M"], + "forebear": ["M", "S"], + "Luanda": ["M"], + "processed": ["U"], + "Kali": ["M"], + "Thoth's": [], + "Sunnis's": [], + "staler": [], + "numerals's": [], + "torpor": ["M"], + "presentersing": [], + "placeholder": ["M", "S"], + "companions": [], + "Caribbean": ["M", "S"], + "straight's": [], + "Ujungpandang's": [], + "withe'sers": [], + "snort": ["S", "M", "D", "R", "Z", "G"], + "drug's": [], + "tort": ["F", "E", "A", "S"], + "retentiveness's": [], + "concluding": [], + "handballs": [], + "Junior's": [], + "reining": [], + "speediness": ["M"], + "clarification's": [], + "granulated": [], + "flagellateds": [], + "underwritten": [], + "direction's": [], + "mockeder": [], + "etc": [], + "reflector": ["M", "S"], + "Salton": ["M"], + "pacesetter's": [], + "astigmatism's": [], + "voyeuristic": [], + "Clare's": [], + "barrackings": [], + "beguiler's": [], + "facsimileing": [], + "finding's": [], + "gyrates": [], + "passers": [], + "duration": ["M"], + "antechambers": [], + "unattested": [], + "postulate": ["X", "D", "S", "M", "G", "N"], + "Sendai": ["M"], + "matzo": ["S", "M", "H"], + "Veronica's": [], + "palmettos's": [], + "zeroing": [], + "bowman": ["M"], + "cage": ["D", "S", "M", "G"], + "yodels": [], + "imbecilic": [], + "banged": [], + "temple's": [], + "bloodstained": [], + "cringes": [], + "ranger": ["M"], + "mortared": [], + "leakages": [], + "satirizing": [], + "plop": ["M", "S"], + "exemplifications": [], + "Atalanta": ["M"], + "Lao": ["S", "M"], + "underestimating": [], + "Dunn": ["M"], + "tinier": [], + "reprehension's": [], + "earn": ["D", "R", "Z", "T", "G", "J", "S"], + "jocularity's": [], + "weer": [], + "styptic": ["S", "M"], + "Fillmore": ["M"], + "blots's": [], + "retrieves's": [], + "Halloweens": [], + "holster'sed": [], + "siteds": [], + "chillier": [], + "motorway's": [], + "pincushion": ["M", "S"], + "falsify": ["D", "R", "S", "Z", "G", "N", "X"], + "togged": [], + "archivists": [], + "abdomens": [], + "O'Hara's": [], + "contradicts": [], + "Anglicize": [], + "criticizing": [], + "defining": [], + "conceived": [], + "mil": ["S", "Z", "M", "R"], + "Midland's": [], + "concuss": ["V"], + "Irkutsk": ["M"], + "heterosexual's": [], + "choirboy's": [], + "subjoining": [], + "Eurasia": ["M"], + "Gertrude's": [], + "Eden's": [], + "hodgepodges": [], + "relist": ["S", "G", "D"], + "Merino's": [], + "boards": [], + "wraparounds's": [], + "torpedoes": [], + "vineyards": [], + "contravenes": [], + "kerchiefs's": [], + "exampling": [], + "crudities": [], + "sunbathersing": [], + "interstate": ["M", "S"], + "kickstand'ses": [], + "tore": [], + "approx": [], + "Amadeus": ["M"], + "juggernaut's": [], + "flypaper": ["S", "M"], + "junk'sed": [], + "stab's": [], + "Khomeini's": [], + "benefactions's": [], + "cockpits's": [], + "arachnids": [], + "tyke'ses": [], + "windsock's": [], + "criminalizes": [], + "enslaveds": [], + "technique": ["S", "M"], + "cheeking's": [], + "guests": [], + "checkered": [], + "keyhole's": [], + "tiffings": [], + "psychoanalyst": ["S", "M"], + "aftereffect'ses": [], + "surrogacy": ["M"], + "slummed": [], + "begone": [], + "chess": ["M"], + "Jensen's": [], + "parolee's": [], + "nourishment's": [], + "negotiators": [], + "victory's": [], + "Rhiannon": ["M"], + "corvettes's": [], + "flacks": [], + "libeler's": [], + "Citibank's": [], + "straiten": ["G", "D"], + "hounding's": [], + "Meir's": [], + "creative's": [], + "Moulton's": [], + "handlers": [], + "figurative": ["Y"], + "parsonages": [], + "maestros": [], + "dpi": [], + "hundred": ["S", "M", "H"], + "dactyl's": [], + "kappa": ["S", "M"], + "wordily": [], + "bog": ["S", "M"], + "offendinged": [], + "yowling": [], + "wilt's": [], + "feverishness's": [], + "Noah": ["M"], + "sexism": ["M"], + "Troy's": [], + "attractiveness": ["M"], + "Hugh": ["M", "S"], + "reformation": [], + "microlights": [], + "culprits's": [], + "Daphne": ["M"], + "destructing": [], + "autumns": [], + "toffee": ["S", "M"], + "quelleds": [], + "Harlequin's": [], + "husband's": [], + "braveness": ["M"], + "Reformation": ["M", "S"], + "sofas": [], + "gaslight's": [], + "corralling": [], + "fix'sed": [], + "Wilde's": [], + "ballgame'ses": [], + "enviousnessly": [], + "pints": [], + "shekels's": [], + "viewpoint's": [], + "relief": ["S", "M"], + "presuppositions": [], + "bulk's": [], + "Lepus": ["M"], + "testis": ["M"], + "privatization": ["S", "M"], + "Jocasta's": [], + "sailboat's": [], + "paramedic": ["M", "S"], + "yardstick's": [], + "mispronounces": [], + "Roman": ["M", "S"], + "ophthalmology": ["M"], + "gobstopper": ["S"], + "boneheads": [], + "radius": ["M"], + "beachcombers's": [], + "refutable": [], + "Billy's": [], + "wife'sly": [], + "interviewing": [], + "clitoris's": [], + "Harriett": ["M"], + "catkin": ["M", "S"], + "trooping": [], + "canopy's": [], + "emus's": [], + "Georgetown's": [], + "acid's": [], + "climatologist's": [], + "incorporation's": [], + "stapling": [], + "hemlocks": [], + "Atkinson": ["M"], + "polonaises's": [], + "Sedna": ["M"], + "dampest": [], + "uvular'ses": [], + "predilection's": [], + "vestibule'ses": [], + "exhalesing": [], + "bowing": [], + "Venn": ["M"], + "nos's": [], + "artsiest": [], + "spyinged": [], + "scrabbler's": [], + "chaps's": [], + "mainline's": [], + "leereding": [], + "excretioned": [], + "Rosella": ["M"], + "profiterole": ["S", "M"], + "immobilizers": [], + "reauthorize": [], + "Guizot": ["M"], + "verbena": ["S", "M"], + "aerosol": ["M", "S"], + "getaways": [], + "cations": [], + "beginnings": [], + "squelch": ["G", "M", "D", "S"], + "versifying": [], + "boogeyman's": [], + "night'sly": [], + "submariner": ["M"], + "surliness": ["M"], + "Wong": ["M"], + "hummingbird's": [], + "disregard": [], + "scapegoat'sed": [], + "illumined": [], + "temblor's": [], + "Okefenokee": ["M"], + "threat": ["S", "M", "N", "X"], + "muskiness's": [], + "rioter": ["M"], + "awardeds": [], + "seats": [], + "vinegar": ["M"], + "rabbit'sed": [], + "evaporate": ["G", "N", "D", "S"], + "transformer": ["M"], + "jurist'ses": [], + "Miller": ["M"], + "oversleeps": [], + "cosmetology": ["M"], + "Gielgud": ["M"], + "betcha": [], + "budgeting": [], + "unsalable": [], + "palanquin": ["S", "M"], + "announcement'ses": [], + "peeling's": [], + "intermingle": ["D", "S", "G"], + "stewings": [], + "forecast'ser": [], + "jug": ["S", "M"], + "skirt'sed": [], + "Scandinavian's": [], + "menage's": [], + "mixtures's": [], + "towelettes's": [], + "ironeds": [], + "Erector": ["M"], + "repurchasinged": [], + "divestment's": [], + "callable": [], + "stockist": ["S"], + "Shaker": [], + "clops": [], + "multifariously": [], + "elves": [], + "integrative": [], + "studlies": [], + "jetsam": ["M"], + "disjointedness's": [], + "aligns": [], + "evicting": [], + "neighbors": [], + "backslash": ["M", "S"], + "personifyinged": [], + "congealed": [], + "Theodora's": [], + "flankersing": [], + "useful": ["P", "Y"], + "heaviers": [], + "shakers": [], + "Grimes's": [], + "Finnbogadottir": ["M"], + "obliterate": ["D", "S", "G", "N"], + "movers": [], + "outspends": [], + "meatinesser": [], + "Stuttgart's": [], + "consanguinity": ["M"], + "reasoner": ["M"], + "enameling's": [], + "mortality's": [], + "misadventures": [], + "godspeed": [], + "berthing": [], + "bedazzling": [], + "hyphenates's": [], + "piaster": ["M", "S"], + "panache's": [], + "workingwoman's": [], + "platelets's": [], + "Murasaki": ["M"], + "umped": [], + "Palisades's": [], + "central's": [], + "jargon's": [], + "flawless": ["P", "Y"], + "announcement's": [], + "coelenterate's": [], + "sonogram": ["S", "M"], + "koala": ["S", "M"], + "rider": ["M"], + "cookeding": [], + "Kwanzaa's": [], + "perspectives": [], + "flashcard's": [], + "mnemonically": [], + "Californian's": [], + "fetal": [], + "tollways's": [], + "tortoise'ses": [], + "repletenessed": [], + "vacation'sed": [], + "alternative'sly": [], + "utilitarianism": ["M"], + "Ponce's": [], + "finis": ["M", "S"], + "expatriated": [], + "Icahn's": [], + "methinks": [], + "jurywomen": [], + "redbird's": [], + "rescinding": [], + "wiggler": ["M"], + "naans": [], + "communes's": [], + "veineding": [], + "aptitudes": [], + "confectioners's": [], + "teasing": ["Y"], + "vapory": [], + "float's": [], + "midwife'sing": [], + "bimonthly": ["S", "M"], + "voicemails": [], + "freakish": ["Y", "P"], + "inquiry": ["S", "M"], + "jimmied": [], + "demonetization": ["M"], + "zebra": ["S", "M"], + "descend": ["F", "G", "D", "S"], + "Layamon's": [], + "Sejong": ["M"], + "timberline": ["M", "S"], + "deduced": [], + "kerchief's": [], + "slurping": [], + "frostiest": [], + "pact's": [], + "reshipment": [], + "Emmett's": [], + "Atari's": [], + "minibus": ["M", "S"], + "embarrassing": ["Y"], + "physiologist's": [], + "paisley's": [], + "swearwords": [], + "riffling": [], + "hideout": ["M", "S"], + "Mel's": [], + "anarchy": ["M"], + "bolsters": [], + "penchant": ["S", "M"], + "billiards": ["M"], + "sitting's": [], + "skein'ses": [], + "reprehendings": [], + "appreciative": ["Y"], + "coining": [], + "Ebert": ["M"], + "boggy": ["T", "R"], + "overtireds": [], + "centipedes's": [], + "trader's": [], + "Bush's": [], + "Oberon": ["M"], + "schemes": [], + "waybill's": [], + "Strasbourg": ["M"], + "Mitterrand's": [], + "knurl": ["S", "G", "M", "D"], + "seated": [], + "iridescently": [], + "dissociation's": [], + "irreparably": [], + "aimless": ["Y", "P"], + "growling": [], + "edged": [], + "juridically": [], + "sec'y": [], + "holly's": [], + "Marxists": [], + "forwardeder": [], + "dahlia'ses": [], + "overdone": [], + "entourage's": [], + "Wilberforce": ["M"], + "acceptations": [], + "dignitaries's": [], + "tomahawksing": [], + "telegraphist's": [], + "legend": ["S", "M"], + "geyser": ["S", "M"], + "abomination's": [], + "beautiful": ["Y"], + "mollycoddleds": [], + "daftness": ["M"], + "Chatterley": ["M"], + "innings": [], + "uphill'ses": [], + "exactness": ["I", "M"], + "tomahawking": [], + "Yale": ["M"], + "augmentings": [], + "exquisiteness's": [], + "franchiseds": [], + "spearfishes": [], + "gen": [], + "Kantian": ["M"], + "truinged": [], + "charioteer'ses": [], + "Thespis": ["M"], + "waiters": [], + "tarring": [], + "calking's": [], + "measurable": [], + "remunerating": [], + "vast": ["M", "R", "Y", "T", "S", "P"], + "typhoid": ["M"], + "bleariness": ["M"], + "heehawed": [], + "Indira": ["M"], + "motley's": [], + "sports's": [], + "lemon's": [], + "zoophyte's": [], + "Doolittle": ["M"], + "doorbells": [], + "irrationality's": [], + "ravinged": [], + "wacky": ["R", "P", "T"], + "Spiro's": [], + "acme": ["S", "M"], + "dusk's": [], + "soph": [], + "naggers": [], + "wistfulness": ["M"], + "Shields": ["M"], + "spraining": [], + "nodules": [], + "starer's": [], + "entrepreneurial": [], + "evangelize": ["G", "D", "S"], + "completing": [], + "collective": ["M", "Y", "S"], + "internment's": [], + "auscultatesens": [], + "lightships": [], + "tallyho's": [], + "reorging": [], + "telegraphists's": [], + "merchandising's": [], + "hoarseness": ["M"], + "spoon's": [], + "networksing": [], + "leavensing": [], + "pukes": [], + "wadi's": [], + "drip'ses": [], + "rectums": [], + "prune'sers": [], + "banisters": [], + "curtailment": ["S", "M"], + "mainframe's": [], + "resoling": [], + "overt": ["Y"], + "interferes": [], + "soupeding": [], + "inelegance": [], + "ambulation's": [], + "lutenist's": [], + "decontractor": [], + "expect": ["G", "S", "D"], + "secessionist's": [], + "strenuously": [], + "ballgirls": [], + "deaves": [], + "huckstered": [], + "reproachfully": [], + "scorn": ["M", "D", "R", "S", "Z", "G"], + "permutation's": [], + "rowlocks": [], + "damasking": [], + "Schnabel": ["M"], + "thimbleful's": [], + "clam's": [], + "confessional's": [], + "kickback's": [], + "velour's": [], + "senor": ["M", "S"], + "institutionalization": ["M"], + "ponying": [], + "tomorrow's": [], + "disorganization's": [], + "waster's": [], + "quietened": [], + "triflersing": [], + "accords": [], + "helots": [], + "stiffener": ["M"], + "glam": [], + "outsourcesing": [], + "pardons": [], + "mildew's": [], + "spoiler": ["C", "M"], + "amanuensis": ["M"], + "dripping": ["S", "M"], + "pasta": ["S", "M"], + "gushiest": [], + "aglitter": [], + "Meredith": ["M"], + "livened": [], + "scribbler's": [], + "calumniationed": [], + "googled": [], + "amphibian": ["M", "S"], + "songfest's": [], + "unroll": ["G", "D", "S"], + "educationally": [], + "architects's": [], + "cohesiveliness": [], + "serrationed": [], + "griffins's": [], + "collapsible": [], + "bluet'ses": [], + "software": ["M"], + "dissipation": ["M"], + "distortion": ["M", "S"], + "orange's": [], + "eyelets": [], + "pomegranate'ses": [], + "bole": ["S", "M"], + "angriest": [], + "nonappearance's": [], + "robotic": ["S"], + "pockmarkings": [], + "idiosyncratically": [], + "atrial": [], + "chumming": [], + "hybridism's": [], + "Dustin": ["M"], + "shanghaied": [], + "translucency": ["M"], + "incarnateds": [], + "parolee'ses": [], + "faltering": ["Y"], + "servitor's": [], + "animist": ["S", "M"], + "imposts": [], + "canoe's": [], + "brawniest": [], + "jotter's": [], + "powerlessnessly": [], + "placards": [], + "levee": ["S", "M"], + "ravels": [], + "bowl'sed": [], + "anecdote's": [], + "Halloween": ["M", "S"], + "Duncan": ["M"], + "coxes": [], + "eatingable": [], + "teaspoon's": [], + "tidingings": [], + "Adrenalins": [], + "retarders": [], + "fjords's": [], + "microscopy": ["M"], + "squeakier": [], + "pantheistic": [], + "profane": ["P", "Y", "G", "D", "S"], + "disabuse": [], + "tomographic": [], + "months": [], + "wimpleds": [], + "geologist": ["M", "S"], + "seafronts": [], + "rescue'sers": [], + "Nelly's": [], + "multiple'ses": [], + "orb's": [], + "tubful'ses": [], + "sweetener": ["M", "S"], + "fortunetellers": [], + "malaria": ["M"], + "fame": ["D"], + "chatterbox": ["M", "S"], + "hematological": [], + "signora": ["S", "M"], + "assistance": ["M"], + "apposite": ["Y", "N", "V", "P"], + "lavenders's": [], + "ruination's": [], + "layout": ["S", "M"], + "misogyny's": [], + "Nahuatl's": [], + "wizened": [], + "coming": ["M"], + "inebriates": [], + "min": [], + "mumbled": [], + "pebbly": [], + "Haleakala": ["M"], + "exudation": ["M"], + "cabdrivers": [], + "infecteding": [], + "desiccant": ["S", "M"], + "operas": [], + "batik": ["M", "S"], + "dramatizing": [], + "tench": [], + "candle's": [], + "ids's": [], + "mulleds": [], + "mushrooms": [], + "avuncular": ["Y"], + "pharmaceuticals": [], + "inadmissibility": [], + "caryatid'ses": [], + "aristocratic": [], + "cruise": ["D", "R", "S", "M", "Z", "G"], + "crinoline": ["S", "M"], + "shortfall": ["M", "S"], + "swashing": [], + "eds's": [], + "omen's": [], + "Audubon": ["M"], + "syllabification": ["M"], + "lengthens": [], + "receptionist's": [], + "constellations's": [], + "bogie's": [], + "Borglum's": [], + "shoehorning": [], + "telephotos": [], + "swayeding": [], + "torchbearer": ["M", "S"], + "praetorian": [], + "radiosondes": [], + "harrieder": [], + "gayest": [], + "civilization": ["M", "S"], + "Suzy's": [], + "sights": [], + "Brad'sly": [], + "mitigation's": [], + "prettieder": [], + "alternative": ["M", "Y", "S"], + "endowsed": [], + "foots": [], + "cowlick'ses": [], + "monkshoods": [], + "taping's": [], + "perusal": ["M", "S"], + "hometown'ses": [], + "glossolalia's": [], + "falling": [], + "unfading": [], + "frothiness": ["M"], + "impregnated": [], + "decade's": [], + "centigrams's": [], + "japed": [], + "Ringling's": [], + "Bermudian": ["S", "M"], + "Slovaks": [], + "cheddar": ["M"], + "heartland'ses": [], + "rifting": [], + "stool's": [], + "resuscitatingen": [], + "convention's": [], + "angers": [], + "condoms": [], + "summer'sed": [], + "rant's": [], + "pattereding": [], + "trance": ["M", "S"], + "cliometric": ["S"], + "eclectic": ["S", "M"], + "ejectors": [], + "whelms": [], + "enableder": [], + "Adventist's": [], + "pismires's": [], + "colic's": [], + "shaved": [], + "fodders": [], + "yellow'sed": [], + "instigation": ["M"], + "quibble's": [], + "residences": [], + "differentiation": ["M"], + "knuckleheads": [], + "communing": [], + "kiss's": [], + "Fritz's": [], + "savinged": [], + "barbarously": [], + "Earhart's": [], + "lowliest": [], + "misconducted": [], + "Chechnya's": [], + "burls": [], + "appearances": [], + "motionlessness's": [], + "locutions": [], + "skunks's": [], + "houri": ["S", "M"], + "fenders": [], + "rooked": [], + "Avignon's": [], + "slates's": [], + "papyrus": ["M"], + "beakers's": [], + "Kennith": ["M"], + "inexhaustibly": [], + "impellers": [], + "arpeggio": ["M", "S"], + "tennis's": [], + "normalizesing": [], + "musculature": ["M"], + "Monmouth's": [], + "revolutionized": [], + "priors": [], + "eggbeater's": [], + "timorousness": ["M"], + "outlasts": [], + "overpass'ses": [], + "shortsightedness": ["M"], + "gaily": [], + "Buddhas's": [], + "goodies's": [], + "projectionists's": [], + "fistfight": ["M", "S"], + "safeties's": [], + "Islam's": [], + "extricateds": [], + "intermediately": [], + "unhurt": [], + "Evansville's": [], + "irritatingly": [], + "asthmatics's": [], + "treasurer": ["M"], + "quirt's": [], + "respond": ["S", "G", "D"], + "defoggers's": [], + "silhouettes": [], + "minim's": [], + "pustules": [], + "retrofits": [], + "piazza's": [], + "crosshatchinged": [], + "midriffs": [], + "sextuplet's": [], + "lolling": [], + "worstsing": [], + "eradicators": [], + "snowfields's": [], + "disillusionment": ["M"], + "cysts": [], + "generically": [], + "unharvested": [], + "aftershave": ["S", "M"], + "saps's": [], + "trombonist'ses": [], + "Ramses": ["M"], + "rougherly": [], + "Allende's": [], + "enricheds": [], + "affidavit's": [], + "Verna": ["M"], + "probability's": [], + "satires": [], + "breakdowns": [], + "Xmas's": [], + "substance": ["S", "M"], + "astutely": [], + "bolstered": [], + "vamp": ["A", "M", "D", "G", "S"], + "Plymouth": ["M"], + "overbite": ["M", "S"], + "overjoyings": [], + "heavily": [], + "cabinetry's": [], + "wiretaps": [], + "laundereder": [], + "disinterestedness": ["M"], + "ago": [], + "shorties": [], + "weakening": [], + "fraudsters": [], + "dilettante's": [], + "shyinged": [], + "Cody": ["M"], + "Albee's": [], + "logy": ["R", "T"], + "jawbone'sing": [], + "Lana's": [], + "abbes": [], + "tap": ["S", "Z", "G", "M", "D", "R"], + "blammo": [], + "passion's": [], + "conditionally": [], + "chained": [], + "jurists": [], + "turboprops's": [], + "contentions's": [], + "befell": [], + "Hezbollah's": [], + "Sharpe's": [], + "Massasoit's": [], + "journeyman's": [], + "hyperthyroidism": ["M"], + "shingling": [], + "swallowtail": ["M", "S"], + "glitz's": [], + "hitchhiked": [], + "wainwrights": [], + "sassed": [], + "dig's": [], + "suckersing": [], + "terraceds": [], + "hireds": [], + "Chekhov": ["M"], + "scantiest": [], + "mortgage's": [], + "Oceania": ["M"], + "witching": [], + "barrel'sed": [], + "veinings": [], + "concentric": [], + "sags's": [], + "maltreatingment": [], + "Saiph's": [], + "Hohenzollern": ["M"], + "pumpkins": [], + "Banjul's": [], + "Venus": ["M", "S"], + "chalking": [], + "cofferdam'ses": [], + "travel'sed": [], + "schemed": [], + "hamster's": [], + "hearth": ["M"], + "daughters's": [], + "browns's": [], + "latter's": [], + "disinherit": [], + "forbear": ["S", "M", "G"], + "insinuatesens": [], + "violoncellists's": [], + "Merthiolate's": [], + "sealant'ses": [], + "napkins": [], + "ragas": [], + "molest": ["D", "R", "Z", "G", "S"], + "circuit'sed": [], + "chiropractors's": [], + "preexists": [], + "butchereding": [], + "mineralogy": ["M"], + "diaphragms's": [], + "cutting'sly": [], + "kaboom": [], + "masculines": [], + "registered": ["U"], + "voicelessnessly": [], + "moralist'ses": [], + "ensuringed": [], + "projection's": [], + "Rivieras": [], + "2th": ["t", "c"], + "riddleds": [], + "hourglass's": [], + "pontoon's": [], + "cohabits": [], + "trimmings's": [], + "sockeding": [], + "bathhouses": [], + "shampooeder": [], + "Ge's": [], + "popularizing": [], + "affectionately": [], + "dodger's": [], + "biosphere": ["S", "M"], + "fiber": ["M"], + "divestiture's": [], + "costlying": [], + "Planck": ["M"], + "weir's": [], + "mestizo's": [], + "turbots": [], + "precedence's": [], + "tropics": ["M"], + "petrel's": [], + "internalized": [], + "hierarchical": ["Y"], + "discloseds": [], + "anteing": [], + "bluntinged": [], + "patriarchate's": [], + "obsoleting": [], + "untruthful": [], + "Afrikaner's": [], + "Malory": ["M"], + "bruising's": [], + "diminishinged": [], + "onionskin's": [], + "Camel's": [], + "stymied": [], + "superannuates": [], + "saucer's": [], + "overflow's": [], + "fossilizinged": [], + "outshoutinged": [], + "seconder's": [], + "spheroidal": [], + "gunfighter": ["M"], + "unsympathetically": [], + "recantation": ["S", "M"], + "sandiest": [], + "movable": ["S", "M"], + "thump": ["S", "M", "D", "G"], + "example'sing": [], + "arrogation": ["M"], + "cantos": [], + "Rf": ["M"], + "dinkiest": [], + "cowgirl": ["M", "S"], + "rehabilitates": [], + "containerizes": [], + "crocks's": [], + "caviar": ["M"], + "sportiness's": [], + "overheated": [], + "decriminalization": ["M"], + "spitfires": [], + "hundredweight": ["S", "M"], + "forfeiture": ["S", "M"], + "Wei's": [], + "foresail's": [], + "counterculture": ["S", "M"], + "kindergartners's": [], + "mask": ["U", "D", "S", "G"], + "nth": [], + "dredges's": [], + "BitTorrent": ["M"], + "habiliments": [], + "deepest": [], + "urbanologists": [], + "instrumentsing": [], + "touch": ["A", "G", "M", "D", "S"], + "blatancies's": [], + "sulkily": [], + "fugitives": [], + "pushing": [], + "prenatally": [], + "centimes": [], + "rushes": [], + "die": ["D", "S", "M"], + "turner": ["A", "M"], + "ferocious": ["P", "Y"], + "creeper's": [], + "plainness's": [], + "indemnify": ["G", "D", "S", "X", "N"], + "times": [], + "preservatives": [], + "reign's": [], + "imperialistically": [], + "auks": [], + "scab": ["M", "S"], + "lawrencium": ["M"], + "drearily": [], + "genealogy's": [], + "snorted": [], + "wholesalers": [], + "curricula": [], + "mica": ["M"], + "marbleizeds": [], + "pares": ["S"], + "protectionist's": [], + "kippers": [], + "titlist": ["M", "S"], + "blared": [], + "Lorentz's": [], + "conman's": [], + "bystander": ["M", "S"], + "shingle'sing": [], + "WWW's": [], + "brushoffs's": [], + "admiringly": [], + "doorknob": ["M", "S"], + "suppressor": ["S", "M"], + "hone": ["M", "S"], + "floodlightsing": [], + "caducei": [], + "designed": [], + "isobars": [], + "bedevilmenting": [], + "strangulation": ["M"], + "nutpick's": [], + "Felix's": [], + "ambassadorships": [], + "initializing": [], + "already": [], + "lockouts": [], + "footfall'ses": [], + "vociferateds": [], + "Tilsit's": [], + "unhitch": [], + "oars": [], + "smirk": ["S", "M", "D", "G"], + "weaseledly": [], + "quadruplicationed": [], + "marinating": [], + "brickwork": ["M"], + "pith": ["M"], + "vergesing": [], + "bifurcatingen": [], + "grammars": [], + "laird's": [], + "churls": [], + "phrenologist": ["S", "M"], + "moisturizinged": [], + "flinching": [], + "malapropisms's": [], + "cutting's": [], + "contagions": [], + "pupal": [], + "snowdrops's": [], + "Teutons": [], + "proliferatesing": [], + "victor'ses": [], + "squishes": [], + "flotsam's": [], + "preached": [], + "mystifies": [], + "Parrish": ["M"], + "moonlit": [], + "sempstresses": [], + "mohair": ["M"], + "sandstorms's": [], + "mechanics's": [], + "abhorrently": [], + "Annette": ["M"], + "scrimshaws": [], + "ornament": ["S", "G", "M", "D"], + "deities": [], + "hide's": [], + "systems's": [], + "technological": ["Y"], + "hairstylist's": [], + "inhalators": [], + "enumerators": [], + "captivating": [], + "ques": [], + "Nautilus": ["M"], + "desirable": [], + "fills": [], + "Nubian's": [], + "Claudette's": [], + "folkway": ["M", "S"], + "sulks": [], + "routinizeds": [], + "personifieds": [], + "inoculation's": [], + "ACTH's": [], + "volatilizes": [], + "crusheder": [], + "Sergei's": [], + "cutlasses": [], + "Tsitsihar": ["M"], + "cirrhosis's": [], + "sipper's": [], + "batings": [], + "perigees": [], + "diminutive's": [], + "menstruation's": [], + "newsletter's": [], + "spareribs": ["M"], + "whores's": [], + "Belinda's": [], + "Tories's": [], + "trident'ses": [], + "uncle's": [], + "decongestant": ["M", "S"], + "yeti's": [], + "fibrillate": ["G", "N", "D", "S"], + "solicitousness's": [], + "jemmyinged": [], + "pedant's": [], + "friction's": [], + "request": ["G", "D", "R"], + "affray": ["M", "S"], + "prelims": [], + "villeinage's": [], + "alertedly": [], + "dotings": [], + "goodwill's": [], + "thirteens": [], + "disputer's": [], + "idolatress'ses": [], + "adroitnessly": [], + "sordidness's": [], + "vogue's": [], + "GE's": [], + "sheaf": ["M"], + "Appaloosas's": [], + "Annmarie's": [], + "broiling": [], + "ratcheting": [], + "banter's": [], + "naivety": ["M"], + "visionary": ["S", "M"], + "retention's": [], + "trichina's": [], + "welting": [], + "FL": [], + "profiteer": ["M", "D", "G", "S"], + "borrowerers": [], + "credentialsing": [], + "lair": ["M", "S"], + "marlin": ["M", "S"], + "unfroze": [], + "semiconductors": [], + "fungus's": [], + "dousing": [], + "usurpersing": [], + "inhalation'ses": [], + "comping": [], + "confirmations's": [], + "effeminately": [], + "treacherousnessly": [], + "Exercycle's": [], + "rebel'ses": [], + "colon's": [], + "centaurs": [], + "hitchhikers": [], + "sensuality's": [], + "wholesalersing": [], + "ermines": [], + "warmed": [], + "ineffably": [], + "stellar": [], + "microloan'ses": [], + "tanneries's": [], + "MN": [], + "intractably": [], + "awaitinged": [], + "Mitty": ["M"], + "quietude": ["I", "E", "M"], + "taxa": [], + "excretes": [], + "exemption": ["S", "M"], + "Northampton's": [], + "levied": [], + "Deann": ["M"], + "fragmentary": ["M"], + "whitens": [], + "kink'sed": [], + "bunkeding": [], + "grunges": [], + "chocoholics's": [], + "Geritol's": [], + "armlets": [], + "precariously": [], + "blondest": [], + "abyss": ["M", "S"], + "Coptic": ["M"], + "pose": ["C", "A", "K", "E", "G", "D", "S"], + "Duvalier": ["M"], + "Jesus's": [], + "presentsable": [], + "scorer's": [], + "coins": [], + "glimpse": ["M", "G", "D", "S"], + "baaing": [], + "candlewicks's": [], + "patronizes": [], + "strengtheners": [], + "blot": ["S", "M"], + "facially": [], + "bakery": ["S", "M"], + "overarm": ["G", "S", "D"], + "Waterloo'ses": [], + "oppressors": [], + "toffees": [], + "yardage's": [], + "shiver": ["M", "D", "G"], + "jeersing": [], + "hierarchies's": [], + "scudded": [], + "euphemism": ["S", "M"], + "hitchhiker": ["M"], + "wicker's": [], + "verger": ["M", "S"], + "reassembly": [], + "horneds": [], + "clammed": [], + "clarion's": [], + "Rufus": ["M"], + "solids": [], + "Montenegro": ["M"], + "populateds": [], + "tranquilizinged": [], + "augmenterers": [], + "whitetail": ["M", "S"], + "amortization's": [], + "helots's": [], + "works": ["M"], + "linkman": [], + "Marcia": ["M"], + "canola": ["M"], + "unclean": ["D", "R", "P", "T"], + "sleeve": ["D", "S", "M"], + "vision": ["K", "G", "D", "S", "M"], + "obscenity's": [], + "biomedical": [], + "cauterizes": [], + "derogation's": [], + "patronymic": ["S", "M"], + "Hmong's": [], + "persuadablers": [], + "lure'sing": [], + "shews": [], + "hums": [], + "premenstrual": [], + "Baotou": ["M"], + "crime's": [], + "intruder's": [], + "luminary's": [], + "idling": [], + "banquetersing": [], + "continuity": ["E", "S", "M"], + "garnish'sed": [], + "aspects": [], + "floorwalker": ["S", "M"], + "imploring": ["Y"], + "meaty": ["T", "P", "R"], + "timetabled": [], + "drained": [], + "stints": [], + "wizard'sly": [], + "vector": ["S", "G", "M", "D"], + "nonautomotive": [], + "deadlocks's": [], + "selfies": [], + "duvets": [], + "grizzlies": [], + "proclamation": ["M", "S"], + "Yalu": ["M"], + "Mitch's": [], + "buoys": [], + "majorette'ses": [], + "Rocha": ["M"], + "Stromboli": ["M"], + "prep": ["M", "S"], + "paleder": [], + "inferences": [], + "listen": ["B", "M", "D", "R", "Z", "G"], + "Shari's": [], + "minute'sly": [], + "sharpshooting": ["M"], + "vindicating": [], + "gyrfalcon": ["M", "S"], + "philistines": [], + "squinting": [], + "pimento'ses": [], + "Twila's": [], + "misinformings": [], + "Patrick": ["M"], + "bronchus": ["M"], + "hail": ["M", "D", "G", "S"], + "notice's": [], + "whiteys": [], + "taffrail's": [], + "exorcisms": [], + "utteredly": [], + "praise": ["E", "D", "S", "M", "G"], + "gifted": [], + "recompilation": [], + "vs": [], + "goons": [], + "alliterative": ["Y"], + "trailblazer": ["M", "S"], + "labors's": [], + "supersize": ["G", "D", "S"], + "shoulder": ["M", "D", "G", "S"], + "Theocritus's": [], + "fixity's": [], + "rime's": [], + "whineder": [], + "Florentine": ["M"], + "rationalists": [], + "hieroglyphs": [], + "kestrel's": [], + "disapprove": [], + "plenary": ["S", "M"], + "Hollanders": [], + "mayday": ["M", "S"], + "berthed": [], + "autistic": [], + "irrelevancies": [], + "flatcars's": [], + "administration": ["M"], + "pivotings": [], + "Cyprian's": [], + "weepsers": [], + "comebacks": [], + "nub": ["S", "M"], + "Murdoch": ["M"], + "budgesing": [], + "bar's": [], + "erbium": ["M"], + "diplomacy's": [], + "quipping": [], + "masturbationed": [], + "standouts": [], + "dynamiters": [], + "concealment": ["M"], + "burp'sed": [], + "gumshoeing": [], + "articles": [], + "linebacker": ["M", "S"], + "chieftain'ses": [], + "rodeo's": [], + "handsomer": [], + "Effie's": [], + "Lents": [], + "RCMP": [], + "diplomatist's": [], + "Leah": ["M"], + "moonscapes": [], + "carborundum's": [], + "jumpsuit's": [], + "cablecasts": [], + "Kiribati's": [], + "midweek": ["M", "S"], + "Orpheus": ["M"], + "remedy's": [], + "gimcracks": [], + "weakish": [], + "pourings": [], + "dolefulness": ["M"], + "Hogwarts's": [], + "cursoriness": ["M"], + "banal": ["Y"], + "arias's": [], + "cliff": ["M", "S"], + "grossing": [], + "baldy": ["S"], + "Lankan": ["M"], + "millsers": [], + "Bridgetown's": [], + "partisans": [], + "plopping": [], + "tuxedo's": [], + "confidence": ["S", "M"], + "telex'sed": [], + "cartographic": [], + "changing": ["U"], + "bleep's": [], + "egomania's": [], + "posties": [], + "effusingen": [], + "semaphoreds": [], + "crossbones": ["M"], + "sf": [], + "misogamists": [], + "boudoirs's": [], + "haplessly": [], + "rusticatinged": [], + "horseradish'ses": [], + "horsefly's": [], + "functionaries": [], + "castes": [], + "TELNETTed": [], + "anthology": ["S", "M"], + "languor": ["S", "M"], + "shopper": ["M"], + "chameleons": [], + "discontinuity": [], + "Xenia's": [], + "Sega's": [], + "loony": ["R", "S", "M", "T"], + "stoppages": [], + "Corinne": ["M"], + "patchwork's": [], + "preadolescence's": [], + "Imogene": ["M"], + "incubating": [], + "ungoverned": [], + "retrial": [], + "polkaing": [], + "bedraggleds": [], + "megadeaths": [], + "abomination": ["M"], + "francium": ["M"], + "wreck's": [], + "jaggedest": [], + "meetup'ses": [], + "unnecessary": [], + "Ulysses": ["M"], + "trinkets's": [], + "bunghole'ses": [], + "disunite": [], + "hullsers": [], + "gnomes": [], + "says": [], + "folkway'ses": [], + "climb": ["S", "M", "D", "R", "Z", "G", "B"], + "sitting": ["S", "M"], + "secrecy's": [], + "lift'sed": [], + "doglegged": [], + "rectification's": [], + "leafed": [], + "Rollins": ["M"], + "eulogies's": [], + "idolaters": [], + "troublesome": ["Y"], + "Compton's": [], + "oohing": [], + "headcheese": [], + "division's": [], + "outcry's": [], + "scoundrel'ses": [], + "species": ["M"], + "emancipated": [], + "slathered": [], + "conglomerates": [], + "formlessnessly": [], + "force": ["D", "S", "M", "G"], + "turbojet's": [], + "waiver's": [], + "Bush": ["M"], + "Capitols's": [], + "knuckleds": [], + "Adrenalin'ses": [], + "shiitake": ["S", "M"], + "hypers": [], + "runt'ses": [], + "vagabonded": [], + "wart'ses": [], + "impoverishing": [], + "Freida's": [], + "cello'ses": [], + "Ural's": [], + "sandeder": [], + "pedestrianized": [], + "wreath": ["M", "D", "S", "G"], + "enthralleds": [], + "parodists's": [], + "remarkable": [], + "Minotaur's": [], + "quicklime": ["M"], + "Wyeth's": [], + "breaststroke's": [], + "brunets's": [], + "abrading": [], + "cutter": ["S", "M"], + "Vonnegut's": [], + "rattans's": [], + "demarcatesing": [], + "Lafitte": ["M"], + "hauliers": [], + "tussles": [], + "blaspheminged": [], + "secularizesing": [], + "Romano's": [], + "sojourner": ["M"], + "iambus's": [], + "pinkeye": ["M"], + "dizzily": [], + "bemoaning": [], + "hues's": [], + "misinforms": [], + "correctives": [], + "paladins": [], + "loveder": [], + "immaculateness": ["M"], + "masers's": [], + "Benzedrine": ["M"], + "racegoer": ["S"], + "festival": ["S", "M"], + "highchairs": [], + "dinning": [], + "knighthood's": [], + "dour": ["R", "Y", "T", "P"], + "sack's": [], + "Bismark": ["M"], + "Bela's": [], + "sliver'sed": [], + "connector'ses": [], + "Freya": ["M"], + "inanity's": [], + "newsstand": ["S", "M"], + "badminton's": [], + "Dakota's": [], + "isolate's": [], + "heath'sen": [], + "groundhog'ses": [], + "Nanak's": [], + "auxin": ["M"], + "gynecology": ["M"], + "pauper": ["M", "S"], + "jackpots": [], + "consummate": ["Y", "G", "N", "X", "D", "S"], + "perverselication": [], + "avatar'ses": [], + "accompanists": [], + "patter's": [], + "Tahoe": ["M"], + "syndicalism": [], + "Sapporo's": [], + "gag's": [], + "fermentation's": [], + "earplugs's": [], + "offender": ["M"], + "suppurate": ["D", "S", "G", "N"], + "department's": [], + "tubsers": [], + "mustachio's": [], + "overpowered": [], + "modals's": [], + "agglutinates": [], + "whipsawing": [], + "fleshier": [], + "weightless": ["Y", "P"], + "nonexchangeable": [], + "sickbeds's": [], + "emit": ["S"], + "rubbernecking": [], + "sturgeons's": [], + "subscribed": [], + "ether": ["M"], + "wimps": [], + "stiff's": [], + "slaver": ["M", "D", "G"], + "lipreadinger": [], + "mines": [], + "breeder": ["M"], + "hackeder": [], + "scrapbooks": [], + "driveway'ses": [], + "exceptsed": [], + "cleared": [], + "skewed": [], + "rail": ["C", "G", "D", "S"], + "readiers": [], + "bumpier": [], + "eerier": [], + "foolery's": [], + "Evangelist": ["M"], + "passport'ses": [], + "megapixel": ["S", "M"], + "flamboyancy's": [], + "reprobates": [], + "administrators": [], + "facilities": [], + "spoilsports": [], + "sideboards": [], + "parks": [], + "Truckee": ["M"], + "larks": [], + "women's": [], + "bead's": [], + "shoetrees": [], + "Pavlovian": ["M"], + "tavern": ["M", "S"], + "stove": ["S", "M"], + "guardhouses's": [], + "corrals's": [], + "tetrameters's": [], + "dalmatian's": [], + "parties's": [], + "harvests's": [], + "prowlersing": [], + "tankful'ses": [], + "mosses": [], + "vans's": [], + "fertilizersing": [], + "decommission": [], + "aqueducts": [], + "canebrake'ses": [], + "scabbards": [], + "pancreases": [], + "gallon's": [], + "leaderless": [], + "meritocracies": [], + "windsurfersing": [], + "demimonde's": [], + "ordeal's": [], + "survival's": [], + "Milan": ["M"], + "exulted": [], + "autobiography": ["S", "M"], + "wildcatter": ["M", "S"], + "advantaged": [], + "annul": ["L", "S"], + "backwardness's": [], + "Theodore's": [], + "Ecuador": ["M"], + "appropriately": [], + "Cindy's": [], + "clambered": [], + "swimming's": [], + "munificent": ["Y"], + "Leiden": ["M"], + "Mirfak": ["M"], + "outbalance": ["D", "S", "G"], + "salmons": [], + "irregularities's": [], + "bicentennials's": [], + "breadfruits": [], + "racialism's": [], + "blanches": [], + "amusement'ses": [], + "typist": ["S", "M"], + "pepping": [], + "slicking": [], + "thicken": ["D", "R", "J", "Z", "G"], + "Benton": ["M"], + "zoologists": [], + "peahen's": [], + "gubernatorial": [], + "blowups": [], + "confectionery": ["S", "M"], + "observablers": [], + "heroine's": [], + "Lemuel's": [], + "Capet's": [], + "clubfoot": ["M", "D"], + "Gena's": [], + "jabbering": [], + "stakeholder": ["M", "S"], + "balminess": ["M"], + "laying": [], + "assemblywoman": ["M"], + "newlyweds": [], + "Realtor": ["M"], + "chuffed": [], + "venison's": [], + "pressman": ["M"], + "annihilators's": [], + "historic": [], + "overwinter": ["S", "D", "G"], + "cerebration's": [], + "scattershot": [], + "survivor": ["S", "M"], + "leered": [], + "Navarro": ["M"], + "inseparable'ses": [], + "infomercials's": [], + "enchant": ["E", "L", "D", "G", "S"], + "stomp": ["G", "S", "M", "D"], + "notary's": [], + "Walden": ["M"], + "Malabar's": [], + "skepticism's": [], + "witchcraft": ["M"], + "pinon'ses": [], + "plaintiff's": [], + "couchette": ["S"], + "cannibal's": [], + "sacristy's": [], + "yakked": [], + "seizes": [], + "DVD": [], + "noshers": [], + "magician": ["S", "M"], + "FUD": ["S"], + "pheasants": [], + "geniuses": [], + "workrooms": [], + "Platonic": [], + "demurral": ["S", "M"], + "poltroons's": [], + "pursuer": ["M"], + "Gilliam": ["M"], + "roadster's": [], + "outraginged": [], + "agitating": [], + "countermelody": ["S"], + "redefile": [], + "Talbot": ["M"], + "tassel'sed": [], + "wain": ["M", "S"], + "centralizing": [], + "pullback'ses": [], + "exam": ["M", "S"], + "rant": ["Z", "G", "M", "D", "J", "R", "S"], + "hinterlands's": [], + "counterweight": ["M", "S"], + "peanut'ses": [], + "redetermine": [], + "Wanda's": [], + "overprices": [], + "outcries's": [], + "absences's": [], + "verier": [], + "quirking": [], + "lengths": [], + "matricide": ["M", "S"], + "iambi": [], + "vegetates": [], + "Sellers": ["M"], + "rioteder": [], + "oldest": [], + "holiest": [], + "ho's": [], + "pitilessness": ["M"], + "gridirons's": [], + "interpreters": [], + "tenanting": [], + "executablions": [], + "bloomer": ["M"], + "territorial's": [], + "glimpsinged": [], + "obtained": [], + "horrid": ["Y"], + "Albany": ["M"], + "molly": ["S", "M"], + "inexcusable": [], + "cocoa's": [], + "subsume": ["D", "S", "G"], + "gamins": [], + "scurvy": ["T", "R", "M"], + "funnyman": ["M"], + "rouses": [], + "postseason": ["S", "M"], + "kvetched": [], + "tinsels's": [], + "stuffily": [], + "Ann": ["M"], + "cratersing": [], + "quibbler's": [], + "obstruction": ["S", "M"], + "plainest": [], + "Camilla's": [], + "Baryshnikov": ["M"], + "equilateral": ["S", "M"], + "dealing": ["M"], + "chiefdom": ["M"], + "pope'ses": [], + "cruise's": [], + "Incorporated": [], + "assaying's": [], + "pastured": [], + "map's": [], + "sexists": [], + "pigmentation's": [], + "shirteds": [], + "mountainsides's": [], + "bordering": [], + "penetratingly": [], + "raptor": ["S"], + "Beardmore": ["M"], + "LIFO": [], + "thingamajigs": [], + "inhaler's": [], + "embargoes": [], + "clamberers": [], + "sallies's": [], + "palmetto's": [], + "Holstein's": [], + "costing": [], + "scored": [], + "snuffers": [], + "Zukor's": [], + "potbellies's": [], + "wryness's": [], + "sonorous": ["Y", "P"], + "tailback": ["M", "S"], + "ciaos": [], + "sufficiency": ["I", "M"], + "tokenism": ["M"], + "iceboat": ["S", "M"], + "deceptions": [], + "twangiest": [], + "crude": ["R", "M", "Y", "T", "P"], + "remuneration's": [], + "asymmetries's": [], + "clamping": [], + "tundra's": [], + "Aesculapius": ["M"], + "arraigned": [], + "puffins": [], + "polishing": [], + "peptic'ses": [], + "Dakar": ["M"], + "meliorating": [], + "jitteriest": [], + "courage": ["M"], + "kingdom": ["S", "M"], + "confabs": [], + "tuck's": [], + "embryology": ["M"], + "troll": ["S", "G", "M", "D"], + "grimaced": [], + "impaireding": [], + "rennet": ["M"], + "Angola's": [], + "Sphinx": ["M"], + "clod'ses": [], + "Switzerland": ["M"], + "emend": ["S", "D", "G"], + "loony's": [], + "patterneding": [], + "rubber's": [], + "smells's": [], + "electron'ses": [], + "Prozac's": [], + "Magyars": [], + "snowman": ["M"], + "pertinacity's": [], + "benign": ["Y"], + "specialized": [], + "opting": [], + "howling": [], + "wheelchairs": [], + "steeliest": [], + "peyote": ["M"], + "decoupages": [], + "miscasting": [], + "carcass": ["M", "S"], + "brilliantine": ["M"], + "pry's": [], + "fells": [], + "bears": [], + "subtotalsing": [], + "whatchamacallits": [], + "identification": ["M"], + "Aristarchus": ["M"], + "immerses": [], + "teaspoonfuls": [], + "purchase": ["D", "R", "S", "M", "Z", "G", "B"], + "Miskito": ["M"], + "drenches": [], + "Erick's": [], + "forensics": ["M"], + "lithography's": [], + "thirteenth": ["M"], + "mullet": ["M", "S"], + "commutators": [], + "dreadeding": [], + "vaporware": [], + "pub": ["S", "M"], + "Lynette's": [], + "slash'sed": [], + "cocktail'ses": [], + "smacked": [], + "Bosch": ["M"], + "potential'sly": [], + "narrative": ["S", "M"], + "boiled": [], + "vertigo": ["M"], + "heifer": ["S", "M"], + "Winnipeg": ["M"], + "poppa'ses": [], + "focally": [], + "foxgloves's": [], + "unsociable": [], + "sorehead'ses": [], + "Costner": ["M"], + "mermen": [], + "stomachaches's": [], + "skeleton": ["S", "M"], + "unsegmented": [], + "blinkered": [], + "wittiest": [], + "vaunts": [], + "drippings": [], + "cocktails": [], + "Cognac's": [], + "transfuseds": [], + "matchlocks": [], + "horsewhipping": [], + "paregoric": ["M"], + "oboes": [], + "liter": ["M"], + "emigre's": [], + "transsexual's": [], + "seafloors": [], + "prison's": [], + "compartmentalization": ["M"], + "bookworm's": [], + "goat's": [], + "thanksgivings": [], + "terapixels": [], + "kites": [], + "Lethe": ["M"], + "yardstick'ses": [], + "Goren": ["M"], + "intellect": ["M", "S"], + "spar": ["M", "S"], + "survivalists's": [], + "twists": [], + "Baha'i's": [], + "validity's": [], + "inveighed": [], + "flatfoot's": [], + "robustly": [], + "crier's": [], + "Libya's": [], + "steampunk": [], + "unburden": [], + "Western'ser": [], + "Adar": ["M"], + "dag": ["S"], + "collages's": [], + "solaces": [], + "lofteds": [], + "badmen": [], + "skintight": [], + "constipating": [], + "McAdam's": [], + "newsdealers's": [], + "pyelonephritis": [], + "glimmered": [], + "circlet'ses": [], + "undauntedly": [], + "kepi's": [], + "pants": [], + "yeses": [], + "comprehensibility": ["I", "M"], + "Janissary's": [], + "subroutine": ["S", "M"], + "motliest": [], + "radars": [], + "nebula's": [], + "swankeder": [], + "arbitratingen": [], + "nosebag": ["S"], + "nursed": [], + "birthstones's": [], + "undisbeliever": [], + "gruesomerly": [], + "sterilizer": ["M"], + "unevenly": [], + "snowinesser": [], + "bassoonist": ["S", "M"], + "airbase": ["S", "M"], + "reimbursesing": [], + "imprecating": [], + "urologist's": [], + "mean's": [], + "racehorse's": [], + "pron": [], + "abdicatingen": [], + "mantels": [], + "leviersing": [], + "lute'ses": [], + "alphabetizer": ["M"], + "topicality's": [], + "semiquavers": [], + "dispensable": [], + "prophesieder": [], + "laughingstock's": [], + "firmaments": [], + "pretensesens": [], + "Pawnees's": [], + "transponder": ["S", "M"], + "handcar's": [], + "babysits": [], + "distorted": [], + "airlines's": [], + "unfaithful": [], + "Buddhism's": [], + "Cheshire": ["M"], + "explainings": [], + "samplers": [], + "irregular'sly": [], + "victimize": ["G", "D", "S"], + "extraterritorial": [], + "planeload's": [], + "Iranian's": [], + "blister'sed": [], + "physiologic": [], + "raisin's": [], + "ducked": [], + "Deidre": ["M"], + "lifetimes": [], + "Dorcas's": [], + "protectionism's": [], + "silicon": ["S", "M"], + "poundsing": [], + "apprehensively": [], + "analyst's": [], + "familiar's": [], + "formula'ses": [], + "computer": ["M", "S"], + "bolero'ses": [], + "shrimpsers": [], + "Sir's": [], + "straitjacketed": [], + "earthling's": [], + "repressive": ["P", "Y"], + "substances": [], + "malingerer's": [], + "comfier": [], + "OMB's": [], + "quake'sing": [], + "gazed": [], + "hydrologists": [], + "pyrites's": [], + "docket's": [], + "submersibles": [], + "overpowering": ["Y"], + "subordination's": [], + "biggie": ["M", "S"], + "attunes": [], + "Trevelyan's": [], + "datives": [], + "violator's": [], + "chime'sers": [], + "cremations": [], + "pilasters": [], + "unimaginable": [], + "Elastoplast": ["M"], + "parade'sers": [], + "diagonal": ["S", "M", "Y"], + "backseat": ["S", "M"], + "tellers": [], + "backpackeder": [], + "clocks's": [], + "presser": ["M", "S"], + "Kathrine": ["M"], + "fretful": ["Y", "P"], + "apprenticeship's": [], + "poling": [], + "deliverymen": [], + "Galibi's": [], + "leakage'ses": [], + "ASCIIs": [], + "Masaryk's": [], + "sedans": [], + "reexplain": [], + "twill's": [], + "Whiteley's": [], + "noncommercial'ses": [], + "sleepovers's": [], + "aster'ses": [], + "storks": [], + "solidi": [], + "tintype'ses": [], + "slingback": ["S"], + "Alabamian's": [], + "Rae's": [], + "saleslady": ["S", "M"], + "footwork's": [], + "healers": [], + "sorters": [], + "belonging's": [], + "nonparticipant'ses": [], + "rustproofs": [], + "vivisection": ["M"], + "mellifluousness's": [], + "individuality's": [], + "nuzzleder": [], + "circulars": [], + "Prussians": [], + "viola": ["S", "M"], + "flimflams's": [], + "dispersal": ["M"], + "ghostwriter's": [], + "antipodean'ses": [], + "nonintoxicating": [], + "articulated": [], + "bellwether'ses": [], + "imponderable's": [], + "smuggled": [], + "Anderson": ["M"], + "prenups's": [], + "plumed": [], + "postsynaptic": [], + "Fortaleza": ["M"], + "transform'sed": [], + "hailing": [], + "slumdogs's": [], + "Curtis's": [], + "nonfluctuating": [], + "spunkiest": [], + "Nepal's": [], + "ladeden": [], + "antiquateds": [], + "closeder": [], + "clowneding": [], + "prefabricate": ["D", "S", "G", "N"], + "gyrator's": [], + "tingles": [], + "coal'sed": [], + "warmnessed": [], + "overrun's": [], + "stylishnessly": [], + "ceaselessness": ["M"], + "caveman": ["M"], + "arras": ["M", "S"], + "spymasters": [], + "agricultural": ["Y"], + "clapperboards": [], + "Richter": ["M"], + "optimistic": [], + "quadrilateral's": [], + "bulldozing": [], + "Rom": [], + "gemologist's": [], + "brass's": [], + "ASCII": ["S", "M"], + "lineaments's": [], + "shuttle's": [], + "knighthoods": [], + "aphelions": [], + "barbarism": ["S", "M"], + "Lindy's": [], + "thirtieth's": [], + "Suzette's": [], + "acceptably": ["U"], + "freshman": ["M"], + "stiller": [], + "apothecary": ["S", "M"], + "drupe's": [], + "sketch'sed": [], + "deodorizesers": [], + "joule": ["S", "M"], + "theoretically": [], + "checkups": [], + "electromagnets": [], + "ceramists": [], + "horsier": [], + "Greensleeves's": [], + "lotus": ["M", "S"], + "pushers": [], + "imperil": ["G", "S", "L", "D"], + "abnormally": [], + "saddensed": [], + "administrate": ["X", "D", "S", "G", "N", "V"], + "Valhalla": ["M"], + "intercession": ["S", "M"], + "Annabel": ["M"], + "fistulous's": [], + "unrewarded": [], + "summertime's": [], + "impartiality": ["M"], + "adrenaline": ["M"], + "diagramming": [], + "motivators's": [], + "vendors": [], + "landings": [], + "socialist's": [], + "childhood's": [], + "considerateness's": [], + "snaring": [], + "cauliflowers's": [], + "colludeds": [], + "pared": [], + "fountains's": [], + "Shavuot": ["M"], + "apple'ses": [], + "brushes": [], + "siding's": [], + "spendthrift": ["M", "S"], + "amazes": [], + "schoolchildren": ["M"], + "NZ": [], + "manhandlinged": [], + "contemporaneously": [], + "nationalistic": [], + "juicersing": [], + "somersaulting": [], + "matzos's": [], + "weevil'ses": [], + "Trondheim's": [], + "log's": [], + "mothball": ["G", "M", "D", "S"], + "pigswill": [], + "Rosemarie": ["M"], + "colophons": [], + "sinuosity": ["M"], + "trim": ["P", "M", "Y", "S"], + "ethology": ["M"], + "rive": ["C", "G", "D", "S"], + "dietitian": ["M", "S"], + "staphylococcus": ["M"], + "divineder": [], + "miler": ["M"], + "palatinate's": [], + "unseasonably": [], + "ordinate": ["M", "N", "S", "X"], + "pagan": ["S", "M"], + "braggers": [], + "unmourned": [], + "delta's": [], + "Burris's": [], + "mergersing": [], + "questions": [], + "ugly": ["R", "T", "P"], + "ungodliest": [], + "tendencies": [], + "exhibits": [], + "curator": ["K", "M", "S"], + "Buford's": [], + "spruce": ["D", "R", "S", "P", "M", "Y", "T", "G"], + "misfire'sing": [], + "pharynx's": [], + "metrics": [], + "kitsch's": [], + "mobile": ["M", "S"], + "OR": [], + "overactive": [], + "consolidation": ["M"], + "placatesing": [], + "quietens": [], + "billet's": [], + "repute": ["D", "S", "M", "G", "B"], + "thunder's": [], + "criminalizing": [], + "buffet's": [], + "stereotyped": [], + "doomster": ["S"], + "afterimage": ["M", "S"], + "dishevelments": [], + "abattoir": ["M", "S"], + "retrievals's": [], + "wilier": [], + "Charmaine": ["M"], + "surfed": [], + "adornment's": [], + "saunter'sed": [], + "Duluth": ["M"], + "rivulets": [], + "computing": ["M"], + "mainstreams's": [], + "sup": ["S", "Z", "M", "R"], + "expressionless": ["Y"], + "retentively": [], + "mimosas": [], + "preparations": [], + "skittle": ["S"], + "squeamishly": [], + "cardinals's": [], + "Wiesel's": [], + "individuals": [], + "mountaintop's": [], + "warmheartedness's": [], + "hazardeding": [], + "iris": ["M", "S"], + "ciao": ["S"], + "pueblo's": [], + "noblest": [], + "dirtier": [], + "desperation": ["M"], + "topsail": ["S", "M"], + "webs's": [], + "capo": ["S", "M"], + "usherettes's": [], + "utmost": ["M"], + "unbutton": [], + "hardworking": [], + "reciprocating": [], + "PMeding": [], + "Betsy's": [], + "aggravating": ["Y"], + "blonde's": [], + "homering's": [], + "leapersing": [], + "undercuts": [], + "uniformly": [], + "Carter": ["M"], + "laundryman's": [], + "crepe's": [], + "literati's": [], + "barricadeds": [], + "geopolitics's": [], + "Gladstones": [], + "Hume": ["M"], + "timidly": [], + "promoterers": [], + "evensong's": [], + "transformable": [], + "brooder's": [], + "smarted": [], + "rightwards": [], + "submarines": [], + "grander": [], + "ermines's": [], + "haberdasheries": [], + "Stanislavsky's": [], + "shepherdess'ses": [], + "practical": ["S", "M", "Y"], + "Dakotas's": [], + "battery": ["S", "M"], + "transplanted": [], + "electrocution": ["M"], + "reconciled": [], + "pedicuring": [], + "waitperson's": [], + "chainsaws": [], + "orgasms": [], + "Honduras's": [], + "certificating": [], + "harassinged": [], + "calibrations": [], + "joist": ["S", "M"], + "diversification": ["M"], + "equivocal": ["U", "Y"], + "garbings": [], + "paddleder": [], + "dithers": [], + "patriotically": [], + "regulator's": [], + "mating's": [], + "unadulterated": [], + "matchmaker's": [], + "hydrant": ["M", "S"], + "horsetail's": [], + "chore": ["M", "S"], + "mulberries": [], + "overachieved": [], + "accosteds": [], + "dissolutionness": [], + "guard's": [], + "snarleding": [], + "Oder's": [], + "disreputable": [], + "clear": ["J", "P", "T", "G", "M", "D", "R", "Y", "S"], + "pediatricians": [], + "juncos's": [], + "sweatband's": [], + "flakierness": [], + "curmudgeonly": [], + "IVs": [], + "smartypants": ["M"], + "panthers": [], + "ordeals's": [], + "Borgia": ["M"], + "flaws": [], + "fishcakes": [], + "relieversing": [], + "sportswriters's": [], + "sheet'ses": [], + "bottom's": [], + "rewrite": ["M", "G", "S"], + "federalization": ["M"], + "unabated": [], + "clippers's": [], + "Tanner's": [], + "sitarists": [], + "Balkan": ["M", "S"], + "convexity's": [], + "blitzed": [], + "Osage": ["M", "S"], + "medicating": [], + "Navy": [], + "Aruba's": [], + "obelisk": ["M", "S"], + "Pensacola": ["M"], + "decent": ["I", "Y"], + "mooch": ["Z", "G", "M", "D", "R", "S"], + "systemically": [], + "enslavingment": [], + "Kris": ["M"], + "advancing": [], + "Hahn": ["M"], + "statutes": [], + "continent's": [], + "assignee": ["M"], + "vicar's": [], + "understandably": [], + "basinful's": [], + "Hollie": ["M"], + "roses": [], + "workflow's": [], + "tepidity": ["M"], + "demolition's": [], + "encircling": [], + "poseds": [], + "puma'ses": [], + "sunbonnets's": [], + "demimondaine": ["S", "M"], + "barricaded": [], + "blossoming": [], + "catatonics": [], + "mismanaged": [], + "snobbishnessly": [], + "skirmishes": [], + "mackintosh'ses": [], + "holdup's": [], + "abidings": [], + "contented": ["E", "Y"], + "uselessly": [], + "convoy's": [], + "summery": [], + "cantankerous": ["P", "Y"], + "somnambulism": ["M"], + "access's": [], + "towersing": [], + "shotgunned": [], + "pedal's": [], + "acquire": ["Z", "G", "B", "D", "R", "S", "L"], + "centering": [], + "healer's": [], + "Riviera's": [], + "exterminating": [], + "continually": [], + "oxblood's": [], + "annotation's": [], + "Belg": [], + "shadowsing": [], + "blockbuster": ["S", "M"], + "countersigning": [], + "repleted": [], + "stout": ["T", "S", "M", "R", "Y", "P"], + "bakers": [], + "diggings": ["M"], + "subsumption": [], + "Eva": ["M"], + "subbasements's": [], + "graininess's": [], + "helplessness": ["M"], + "innkeeper's": [], + "winch": ["M", "D", "S", "G"], + "stinker's": [], + "particularize": ["D", "S", "G"], + "anxiously": [], + "befuddle": ["G", "L", "D", "S"], + "mashers": [], + "Kirghistan's": [], + "vexatious": ["Y"], + "sunburned": [], + "unflinching": ["Y"], + "Itaipu's": [], + "mount's": [], + "Welshman's": [], + "makeweight": ["S"], + "barrel": ["G", "S", "M", "D"], + "mackintoshes": [], + "haystack's": [], + "barrack'sed": [], + "busing's": [], + "untidier": [], + "uppercase's": [], + "errands's": [], + "lasheds": [], + "graphs": [], + "flush's": [], + "Melton's": [], + "gladden": ["G", "D", "S"], + "boasted": [], + "linkup": ["M", "S"], + "antifascist's": [], + "poisonings": [], + "entombeds": [], + "Cassie's": [], + "hospitalize": ["D", "S", "G"], + "layovers": [], + "lavalieres's": [], + "supercharginged": [], + "lustily": [], + "agonizingly": [], + "colanders": [], + "depraves": [], + "Shaffer": ["M"], + "dejecting": [], + "beefburgers's": [], + "nagger'ses": [], + "hydrofoils": [], + "columbines's": [], + "mentoring": [], + "antagonizes": [], + "table's": [], + "ellipsoidal": [], + "cocooned": [], + "signal": ["M", "D", "R", "Y", "S", "Z", "G"], + "northbound": [], + "ditch's": [], + "tracheotomies's": [], + "Sufi": ["M"], + "mothering": [], + "kicker": ["M"], + "nostalgically": [], + "Pharisaical": [], + "prepay": ["G", "S", "L"], + "topnotch": [], + "Calais": ["M"], + "typhoon": ["M", "S"], + "consistsed": [], + "collectible": ["S", "M"], + "scarred": [], + "illegallies": [], + "declining": [], + "diffuseness": ["M"], + "jackdaw's": [], + "bogeyeds": [], + "unethical": [], + "duckweed's": [], + "racket": ["S", "M", "D", "G"], + "chicks": [], + "thighs": [], + "bluff": ["Z", "T", "G", "P", "M", "D", "R", "Y", "S"], + "crankshafts": [], + "docket": ["S", "M", "D", "G"], + "inhabit": ["D", "G"], + "impacted": [], + "prohibiteding": [], + "foreignerser": [], + "peacetime": ["M"], + "marine's": [], + "junker's": [], + "philharmonic": ["S", "M"], + "jetport": ["M", "S"], + "Mondrian's": [], + "conservationist's": [], + "subcontractor": ["M", "S"], + "Novgorod's": [], + "ten": ["B", "M", "H"], + "economic": ["S"], + "Ware": ["M", "G"], + "serrated": [], + "Oneal's": [], + "want's": [], + "conflations": [], + "newspaper": ["M", "S"], + "preceptors's": [], + "Cathy's": [], + "Israelite": ["M"], + "bargain'sed": [], + "dona'ses": [], + "dispiriting": [], + "clamberersing": [], + "Iscariot": ["M"], + "necropolis'ses": [], + "bratwurst's": [], + "Corsica's": [], + "Catalina": ["M"], + "fermented": [], + "gulags": [], + "commandant's": [], + "globalizinged": [], + "arranged": [], + "subversive's": [], + "collated": [], + "extend": ["S", "Z", "G", "D", "R", "B"], + "armchairs": [], + "executions": [], + "feminism's": [], + "partisan's": [], + "dumbo": ["S"], + "primitive'sly": [], + "behinds": [], + "uninfected": [], + "antivenin'ses": [], + "oratory": ["S", "M"], + "pinyons's": [], + "searchlight's": [], + "evidenced": [], + "skirteding": [], + "oncologists's": [], + "daydreamersing": [], + "softcover": [], + "depository": ["S", "M"], + "poof'ses": [], + "decksing": [], + "essentials": [], + "phoneyed": [], + "anise's": [], + "typesetters": [], + "camouflager": ["M"], + "swash'sed": [], + "spittle's": [], + "Hanna": ["M"], + "materialistically": [], + "Oedipus": ["M"], + "Nebraskan": ["M", "S"], + "chick's": [], + "posed": [], + "Elastoplast's": [], + "childishness": ["M"], + "throttle'sers": [], + "Tracey": ["M"], + "Almohad's": [], + "headlong": [], + "attendeder": [], + "crudites's": [], + "taint's": [], + "crawl'sed": [], + "larceny's": [], + "conceptualization's": [], + "Irene's": [], + "sucks": [], + "endmost": [], + "Willard": ["M"], + "elliptical": ["Y"], + "Caucasians": [], + "sandwichesing": [], + "blotching's": [], + "behaved": [], + "relaxes": [], + "horsepower": ["M"], + "tampons's": [], + "weirdie's": [], + "flow": ["M", "D", "G", "S"], + "scenarists": [], + "boogeyman": ["M"], + "better": ["M", "D", "G", "L", "S"], + "total's": [], + "hosiery": ["M"], + "Knowles's": [], + "equateds": [], + "courthouses": [], + "lauded": [], + "insectivore": ["M", "S"], + "resoles": [], + "dogcatchers": [], + "sir'sen": [], + "sits": [], + "managing": [], + "cozen": ["S", "D", "G"], + "exterior's": [], + "painstakingly": [], + "ulster'ses": [], + "shagging": [], + "latticeds": [], + "hysteric's": [], + "monitors's": [], + "tycoons's": [], + "wrecked": [], + "sergeant's": [], + "starvation": ["M"], + "glossies": [], + "corporatism": [], + "Lela's": [], + "insuringable": [], + "missive": ["M", "S"], + "ratiocinates": [], + "foreword's": [], + "miniature'ses": [], + "bounciness's": [], + "electrocardiograms": [], + "parlaying": [], + "Rolland": ["M"], + "madras'ses": [], + "minute's": [], + "stunts's": [], + "unchaste": ["R", "T"], + "launderings": [], + "penal": [], + "purine": ["M", "S"], + "inflammations": [], + "pudenda": [], + "Wake": ["M"], + "showeder": [], + "leveler": ["M"], + "anemometers": [], + "daemon's": [], + "overdrives": [], + "dumdum": ["M", "S"], + "cinnabar": ["M"], + "botnets": [], + "donated": [], + "rotisserie": ["S", "M"], + "depiction": ["M", "S"], + "Hughes": ["M"], + "secondment": ["S"], + "labile": [], + "cavemen": [], + "ethylene": ["M"], + "sermons": [], + "agoraphobia": ["M"], + "paparazzi's": [], + "clamber'sed": [], + "tummies's": [], + "tintype": ["M", "S"], + "effluence's": [], + "scrunchies": [], + "noodling": [], + "puppy's": [], + "Pilates": ["M"], + "patriotism's": [], + "witch's": [], + "manliness": ["M"], + "henpecked": [], + "blinkeder": [], + "counterman's": [], + "adversary": ["S", "M"], + "hexing": [], + "supposes": [], + "turbines": [], + "licitly": [], + "riveting": [], + "foxily": [], + "subheads": [], + "deodorizer's": [], + "midday": ["M"], + "diluted": ["U"], + "inunapproachable": [], + "frigate's": [], + "tetrahedral": [], + "Crane's": [], + "oxidizing": [], + "wises": [], + "captains's": [], + "conditioner": ["S", "M"], + "firearm": ["S", "M"], + "overflight": ["M", "S"], + "Ting's": [], + "cloths": [], + "excitation": ["M"], + "Morrow's": [], + "ultrahigh": [], + "Furies's": [], + "summons'sed": [], + "maidenhair's": [], + "ruffled": ["U"], + "frothiness's": [], + "eBay": ["M"], + "reckoningsed": [], + "frustrating": ["Y"], + "redouble": [], + "Christmastimes": [], + "Odis": ["M"], + "quartermaster": ["M", "S"], + "academician's": [], + "decoy": ["G", "M", "D", "S"], + "Tycho's": [], + "fort'ses": [], + "stringiness's": [], + "heavies": [], + "sledgehammering": [], + "carafes": [], + "needs": [], + "prevarications": [], + "allergy's": [], + "Sarasota's": [], + "gaped": [], + "opalescence's": [], + "abducteds": [], + "raged": [], + "Basseterre": ["M"], + "Maupassant": ["M"], + "nosedive": ["D", "S", "M", "G"], + "kilo's": [], + "bolt": ["U", "S", "G", "D"], + "tremulously": [], + "reapportion": [], + "staffer": ["M", "S"], + "ovules": [], + "machined": [], + "vacuuming": [], + "groups": [], + "gelatin's": [], + "antigen": ["S", "M"], + "glory's": [], + "evenhanded": ["Y"], + "Semiramis's": [], + "equivalency": ["S", "M"], + "remorselessly": [], + "solaceds": [], + "Brownsville": ["M"], + "friar's": [], + "garnishing": [], + "lets": [], + "advocacy's": [], + "contingent's": [], + "writhe": ["M", "G", "D", "S"], + "underneath's": [], + "aspic": ["M", "S"], + "expiateds": [], + "Genoas's": [], + "sparserly": [], + "spellchecking": [], + "dourness": ["M"], + "farteding": [], + "driveways": [], + "punctures": [], + "limberness": ["M"], + "rigidity": ["M"], + "jitterbugging": [], + "oilcan": ["S"], + "relentlessness's": [], + "airports": [], + "stipulation": ["M"], + "starkest": [], + "inscribing": [], + "father": ["S", "G", "M", "D", "Y"], + "arability": ["M"], + "necktie's": [], + "quarterback's": [], + "Aurora": ["M"], + "reboiled": [], + "squirted": [], + "chompeder": [], + "suites": [], + "gunky": [], + "reservation's": [], + "nines": [], + "plantains": [], + "antipoverty": [], + "magnetometers": [], + "unluckily": [], + "responds": [], + "expiring": [], + "donkeys's": [], + "bookseller's": [], + "pomegranate": ["M", "S"], + "fresher": [], + "Sikkimese's": [], + "bewilderment": ["M"], + "naif'ses": [], + "Beelzebub": ["M"], + "spooreding": [], + "bayoneted": [], + "ivieds": [], + "viceroy's": [], + "enclosures": [], + "genera": [], + "brushwood": ["M"], + "kens": [], + "temblor": ["M", "S"], + "firefight's": [], + "relistsing": [], + "toggleds": [], + "ripple": ["D", "S", "M", "G"], + "retrieve's": [], + "forwarderly": [], + "sandwich's": [], + "burglars": [], + "Spielberg": ["M"], + "Dannie": ["M"], + "handings": [], + "tallyhoing": [], + "ward's": [], + "outfitter's": [], + "ibis'ses": [], + "fuller": ["M"], + "pastrami's": [], + "mortise": ["D", "S", "M", "G"], + "snarks": [], + "defrayal": ["M"], + "hoarse": ["Y", "T", "R", "P"], + "blathered": [], + "concreteds": [], + "dromedary": ["S", "M"], + "didactically": [], + "discretenessly": [], + "expandings": [], + "taskmistresses": [], + "ratiocination": ["M"], + "lawfulnessly": [], + "Hartford": ["M"], + "obsessionally": [], + "concordance": ["S", "M"], + "condemners": [], + "hitchhike'sers": [], + "venture": ["D", "S", "M", "G"], + "brazenness": ["M"], + "penalizes": [], + "glossiness": ["M"], + "clambers": [], + "birthrate's": [], + "steamer": ["M"], + "MST": ["M"], + "opts": [], + "collectivist's": [], + "shield'sed": [], + "stamps": [], + "photostatting": [], + "shortfall's": [], + "maladjustment": ["M"], + "takeout": ["M", "S"], + "Invar": ["M"], + "afford": ["G", "D", "S", "B"], + "kith": ["M"], + "Nokia's": [], + "penitentiary": ["S", "M"], + "hooversing": [], + "turnbuckles": [], + "flap": ["M", "S"], + "Nirvana's": [], + "gunshot'ses": [], + "boffo": [], + "Poitier's": [], + "surmise's": [], + "Maryanne's": [], + "gyrator": ["S", "M"], + "paywalls's": [], + "malfunctioning": [], + "itinerants": [], + "brotherly": [], + "recluses": [], + "birdie": ["M", "D", "S"], + "typewritten": [], + "imitative": ["P", "Y"], + "claustrophobic": [], + "Carpathian's": [], + "tree'sed": [], + "Canaries": ["M"], + "melancholia": ["M"], + "pollsters's": [], + "waspish": ["Y", "P"], + "preservationist's": [], + "tinnitus": ["M"], + "linnet'ses": [], + "outlaws": [], + "liter's": [], + "Wong's": [], + "wag": ["S", "Z", "G", "M", "D", "R"], + "pianist's": [], + "Kuwaiti's": [], + "crudeness": ["M"], + "stiffness": ["M"], + "neap'ses": [], + "methyl": ["M"], + "formalizes": [], + "Lee": ["M"], + "Dan's": [], + "Gothics": [], + "Hosea": ["M"], + "Villa": ["M"], + "briefing's": [], + "vaccinateds": [], + "objurgatingen": [], + "maze's": [], + "SGML's": [], + "Grass's": [], + "tokenism's": [], + "objurgations": [], + "lice": [], + "shortstop's": [], + "mediums": [], + "polished": ["U"], + "displace": [], + "skydiving": ["M"], + "loan's": [], + "canteding": [], + "bowdlerizesing": [], + "overcapitalizeds": [], + "jambalaya": ["M"], + "mobilizers": [], + "duodecimal": [], + "protracting": [], + "humanity": ["I", "S", "M"], + "sadnessly": [], + "Lorena's": [], + "Texaco's": [], + "conclave's": [], + "verbal": ["M", "Y", "S"], + "weighteds": [], + "williwaw'ses": [], + "afloat": [], + "Azerbaijanis": [], + "immaterialness's": [], + "blotter": ["M", "S"], + "phonics": ["M"], + "latrines": [], + "coffeehouse's": [], + "worthy's": [], + "thorny": ["P", "R", "T"], + "consignment's": [], + "monopolizer's": [], + "westbound": [], + "peak's": [], + "fathoms": [], + "molests": [], + "extraditeds": [], + "tom": ["S", "M"], + "Aileen's": [], + "greatcoat": ["S", "M"], + "hooky's": [], + "Australoid": ["M"], + "splits": [], + "influence's": [], + "faces": [], + "pother": ["S", "M", "D", "G"], + "automobile": ["D", "S", "M", "G"], + "cowhide": ["M", "S"], + "broth": ["M", "R", "Z"], + "typescript": ["M", "S"], + "punctuation": ["M"], + "archfiend": ["M", "S"], + "idea'ses": [], + "ramrod": ["S", "M"], + "Ophiuchus": ["M"], + "Morrison's": [], + "filminess": ["M"], + "bitchinesser": [], + "reflexives's": [], + "pagination's": [], + "contributions": [], + "smartest": [], + "caryatid": ["M", "S"], + "dribbler": ["M"], + "ID": ["S", "M"], + "deformity": ["S", "M"], + "Leo": ["S", "M"], + "thorium's": [], + "blowpipes": [], + "nonclerical'ses": [], + "parody": ["G", "D", "S", "M"], + "Phipps": ["M"], + "shimmied": [], + "excrescence": ["M", "S"], + "direst": [], + "plots": [], + "straight": ["S", "P", "X", "T", "M", "N", "R", "Y"], + "compromiseds": [], + "folder's": [], + "Kaohsiung's": [], + "silenter": [], + "quatrain'ses": [], + "maceration": ["M"], + "toluene's": [], + "tormenteding": [], + "wrongness": ["M"], + "eyedroppers's": [], + "Shoshones's": [], + "percale": ["M", "S"], + "bay's": [], + "pickiest": [], + "motherhood": ["M"], + "cult'ses": [], + "championing": [], + "crunchy": ["T", "R", "P"], + "lasersing": [], + "stupider": [], + "Douglass": ["M"], + "willingly": [], + "Xes": [], + "packaging": ["M"], + "categories's": [], + "carpetbaggers": [], + "witchesing": [], + "outpaced": [], + "perceptions's": [], + "dampness's": [], + "Maronite": ["M"], + "transgressions's": [], + "legionnaires": [], + "churchgoing": ["M"], + "tiling": ["M"], + "accurate": ["I", "Y"], + "beryl'ses": [], + "paps's": [], + "indispensable'ses": [], + "incisiveness's": [], + "headline's": [], + "Shackleton": ["M"], + "statesman's": [], + "pipelines": [], + "refectories's": [], + "shamming": [], + "depressor": ["M", "S"], + "bake'sers": [], + "stinginess": ["M"], + "watchable": ["U"], + "Shane": ["M"], + "clued": [], + "Dracula's": [], + "ennoble": ["D", "S", "G", "L"], + "convulsionsed": [], + "Charbray's": [], + "monotonous": ["P", "Y"], + "parky": [], + "carting's": [], + "butterflying": [], + "Christendom's": [], + "arbitration's": [], + "blabber": ["D", "G", "S"], + "laywoman's": [], + "Abilene's": [], + "centralize": ["C", "G", "D", "S"], + "bilabial's": [], + "raindrop": ["S", "M"], + "Podgorica": ["M"], + "contemporaneity": ["M"], + "whingers": [], + "clatter's": [], + "frigidity's": [], + "Harlan": ["M"], + "ferules's": [], + "Guinean's": [], + "overcastings": [], + "tsunami's": [], + "isthmus": ["M", "S"], + "isle's": [], + "prepossesseds": [], + "crispbreads": [], + "rehearsals": [], + "Willamette": ["M"], + "C": ["S", "M"], + "speleologist's": [], + "penumbrae": [], + "conrecession": [], + "keypad's": [], + "mismatching's": [], + "Bushido's": [], + "blurteds": [], + "hickories": [], + "fireplace": ["S", "M"], + "penises": [], + "microfloppies": [], + "homosexuals's": [], + "bathhouse": ["M", "S"], + "Valletta": ["M"], + "remuneration": ["M"], + "chantey's": [], + "Schiaparelli's": [], + "kissograms": [], + "ever": [], + "chucks": [], + "bloodletting's": [], + "strikebound": [], + "Spengler's": [], + "troopships": [], + "guaranteeing": [], + "earthwork": ["M", "S"], + "vanities": [], + "goaltender'ses": [], + "separator'ses": [], + "zeolite": ["S"], + "agglomerating": [], + "hell's": [], + "duplicated": [], + "pacifiersing": [], + "phrasing'ses": [], + "Svengali": ["M"], + "mutually": [], + "saxophone": ["M", "S"], + "Ebro": ["M"], + "firestorms": [], + "sweatpants": ["M"], + "stalks": [], + "headmasters": [], + "penning": [], + "moxie's": [], + "apses's": [], + "nonsustaining": [], + "lake": ["M", "S"], + "notice'sing": [], + "salubrious": ["I"], + "tendons": [], + "garnet": ["S", "M"], + "underpaid": [], + "transitionings": [], + "gestapo": ["M", "S"], + "instrumental's": [], + "megadeath": ["M"], + "lobe'ses": [], + "recouped": [], + "Urey": ["M"], + "likeliness": ["U", "M"], + "demimondaines's": [], + "Woolf": ["M"], + "geocaching": [], + "Sicily": ["M"], + "oval": ["M", "S"], + "equivocating": [], + "rubberizes": [], + "diskette'ses": [], + "raveleds": [], + "shine's": [], + "mortarboards's": [], + "collateds": [], + "amity": ["M"], + "lynches": [], + "jodhpurs": ["M"], + "PA": ["M"], + "pulpwood's": [], + "duffeder": [], + "foxhunt": ["G", "S"], + "tingle's": [], + "husbanded": [], + "Pilcomayo's": [], + "doctor": ["S", "M", "D", "G"], + "ecus": [], + "bearingable": [], + "Pravda": ["M"], + "metastasized": [], + "alehouses's": [], + "upstarts": [], + "permissive": ["P", "Y"], + "reinquire": [], + "slicing": [], + "mapping": ["S"], + "Calais's": [], + "steed": ["S", "M"], + "excuse's": [], + "veterans's": [], + "destroyers": [], + "causer": ["M"], + "shakedowns's": [], + "bespangles": [], + "flaunt": ["M", "D", "S", "G"], + "pudginess": ["M"], + "squawkeder": [], + "overland": [], + "attacks": [], + "pelvis": ["M", "S"], + "heredity's": [], + "pantaloons": ["M"], + "Ecuador's": [], + "bitterns's": [], + "munition": ["M", "D", "G", "S"], + "fall'sen": [], + "reeks": [], + "toothless": [], + "unearthliness": ["M"], + "nonbasic": [], + "enmeshesing": [], + "Puritan's": [], + "husbandmen": [], + "mod's": [], + "asked": ["U"], + "greenhorns": [], + "fiscallies": [], + "foresaw": [], + "islander's": [], + "embowers": [], + "whisperer": ["M"], + "nefarious": ["Y", "P"], + "proclaim": [], + "chyme's": [], + "goldbrick": ["Z", "G", "S", "M", "D", "R"], + "answered": ["U"], + "linguistics": ["M"], + "hawkeder": [], + "macaque'ses": [], + "brass'ses": [], + "recurrence's": [], + "sandpapereds": [], + "Antony's": [], + "symbols": [], + "odometers": [], + "sandpapering's": [], + "differers": [], + "hectogram": ["S", "M"], + "baritone": ["M", "S"], + "conventionalize": ["G", "D", "S"], + "toted": [], + "Norwegian": ["S", "M"], + "Cynthia's": [], + "mizzen": ["M", "S"], + "literalness's": [], + "acculturation's": [], + "ironic": [], + "extenuation's": [], + "jute": ["M"], + "statically": [], + "stopper": ["G", "S", "M", "D"], + "gathersings": [], + "liar": ["M", "S"], + "stanzas": [], + "Angoras's": [], + "stockade's": [], + "aideding": [], + "Bloom'ser": [], + "dreamworld's": [], + "vituperates": [], + "acceleratingen": [], + "vuvuzela'ses": [], + "transcendence's": [], + "dimwit": ["S", "M"], + "EKG's": [], + "neg": [], + "Selim": ["M"], + "Finley's": [], + "Shelia": ["M"], + "barracudas": [], + "Balearic": ["M"], + "Ronny": ["M"], + "sump'ses": [], + "widened": [], + "monogamy's": [], + "rootersing": [], + "atmospherically": [], + "surceases": [], + "performeder": [], + "buttons": [], + "clandestine": ["Y"], + "chariness's": [], + "siphon": ["G", "M", "D", "S"], + "night's": [], + "wheat's": [], + "flowerpots": [], + "toothsome": [], + "predication": ["M"], + "rubbishesing": [], + "tubercles": [], + "handstands's": [], + "painkilling": [], + "uniformedly": [], + "paving's": [], + "preoccupation": ["S", "M"], + "Runyon's": [], + "NBA's": [], + "oceanfronts's": [], + "Rasmussen": ["M"], + "Araucanian": ["M"], + "outcropping's": [], + "pininged": [], + "pinko": ["M", "S"], + "pliability": ["M"], + "pooch's": [], + "quills": [], + "bafflers": [], + "divestiture": ["M", "S"], + "fetus's": [], + "belayed": [], + "britches's": [], + "sleigheding": [], + "strangleholds": [], + "slanderous": [], + "jerkier": [], + "Colt's": [], + "inclines": [], + "dike": ["M", "G", "D", "S"], + "depicted": [], + "lateralsing": [], + "Mombasa's": [], + "Bella's": [], + "relaxant": ["M", "S"], + "syndicates's": [], + "repute'sing": [], + "intermezzi": [], + "heterosexual": ["M", "Y", "S"], + "pennyweight": ["M", "S"], + "scythes": [], + "simony's": [], + "guttier": [], + "crematory": ["S", "M"], + "actuarial": [], + "intonations": [], + "Z's": [], + "grandstand": ["S", "G", "M", "D"], + "geosynclines": [], + "hussars": [], + "windowsills's": [], + "refers": [], + "Brahmani": [], + "individualization's": [], + "unsolved": [], + "supperers": [], + "Deccan's": [], + "overdressed": [], + "upperclassmen": [], + "winterings": [], + "shufflers's": [], + "flurries's": [], + "fellowman's": [], + "wrath": ["M"], + "veriest": [], + "isomer'ses": [], + "vanilla's": [], + "diverted": [], + "letters": [], + "semibreves": [], + "Scorpius": ["M"], + "flirted": [], + "fink's": [], + "raffle": ["D", "S", "M", "G"], + "hearse's": [], + "suckled": [], + "straining": [], + "aviary's": [], + "roughest": [], + "clump'sed": [], + "Coke": ["S", "M"], + "humanist": ["S", "M"], + "prefix": ["M", "D", "S", "G"], + "paterfamilias'ses": [], + "dissident's": [], + "tricks's": [], + "tiepins": [], + "anomaly": ["S", "M"], + "circumscription'ses": [], + "spiraledly": [], + "blustereder": [], + "moated": [], + "diary": ["S", "M"], + "Shintoist": ["M", "S"], + "crossed": [], + "superhighways's": [], + "telephonist": ["S"], + "bumpkin's": [], + "centerfold's": [], + "embarking": [], + "microbe's": [], + "inciter'ses": [], + "whizkid": ["M"], + "nitrateds": [], + "friar": ["S", "M"], + "commonwealth's": [], + "quota's": [], + "Barr's": [], + "chortled": [], + "lax": ["T", "R", "Y", "P"], + "noontime's": [], + "mundanesly": [], + "nightshades's": [], + "station's": [], + "integrating": [], + "buttonholeds": [], + "gushesers": [], + "summarize": ["G", "D", "S"], + "jobs": [], + "crockery": ["M"], + "Annunciations's": [], + "catboats's": [], + "spiritual's": [], + "miscues's": [], + "enslaves": [], + "upraiseds": [], + "Hungarian's": [], + "comrade": ["S", "M", "Y"], + "reciprocal": ["S", "M", "Y"], + "crazier": [], + "frisked": [], + "Pompeii's": [], + "cloak's": [], + "presidencies": [], + "Pr": ["M"], + "lobbieds": [], + "uncannily": [], + "thy": [], + "Zenens": [], + "splashdown's": [], + "Zachery's": [], + "waver's": [], + "amphibian'ses": [], + "salty": ["R", "T", "P"], + "lipreaders": [], + "reclassification": [], + "careworn": [], + "blarneyeding": [], + "Louisville": ["M"], + "fever'sed": [], + "impairment'ses": [], + "caricaturing": [], + "constricted": [], + "feminines": [], + "ricochet": ["G", "M", "D", "S"], + "decoupages's": [], + "Mick": ["M"], + "reformatting": [], + "grandmother'sly": [], + "expunging": [], + "AV": [], + "Cheyennes's": [], + "phished": [], + "microbes": [], + "Algerians": [], + "enervating": [], + "Nagasaki's": [], + "skydivers": [], + "amenity's": [], + "Mahfouz": ["M"], + "macsing": [], + "loathingsers": [], + "unearth": [], + "ecotourists": [], + "respondent's": [], + "conger": ["S", "M"], + "baddie'ses": [], + "India's": [], + "perforation": ["M"], + "thanklessly": [], + "graters": [], + "milady's": [], + "salaam": ["S", "M", "D", "G"], + "rougheninged": [], + "Lucas": ["M"], + "encompasseds": [], + "Rizal": ["M"], + "diarists's": [], + "vacuole'ses": [], + "noise": ["D", "S", "M", "G"], + "Walton's": [], + "reprovingly": [], + "Po's": [], + "neckband": ["S"], + "fusion's": [], + "scrabble'sers": [], + "grief's": [], + "footfall's": [], + "textually": [], + "intermission": ["S", "M"], + "axial": ["Y"], + "waistbands": [], + "Greta": ["M"], + "plight'sed": [], + "Newton's": [], + "anther": ["M", "S"], + "littoral": ["S", "M"], + "Rutgers's": [], + "cottons": [], + "Saki's": [], + "resuscitates": [], + "Johannesburg": ["M"], + "enshrines": [], + "lankness": ["M"], + "quarry'sing": [], + "downloads": [], + "infamy's": [], + "bibliography": ["S", "M"], + "taffy's": [], + "overcoats": [], + "hydroelectricity": ["M"], + "psychiatrists's": [], + "aesthetics": ["M"], + "Cypriot'ses": [], + "oversubtle": [], + "dammed": [], + "gatecrashes": [], + "Masses": [], + "bricklaying's": [], + "QED": [], + "compositeds": [], + "solvesing": [], + "Sterne's": [], + "duskiest": [], + "Peruvian": ["M", "S"], + "apportionedment": [], + "bedizened": [], + "shipwrecking": [], + "revelry": ["S", "M"], + "quote's": [], + "teakettles's": [], + "doffing": [], + "begrudge": ["D", "S", "G"], + "kookaburra": ["S", "M"], + "IRC": [], + "demonstrator'ses": [], + "cuppas": [], + "downwards": [], + "Iva": ["M"], + "Levy": ["M"], + "Fotomat's": [], + "McKinney": ["M"], + "lid": ["S", "M"], + "vibraphonist'ses": [], + "credibly": ["I"], + "hypothalamus": ["M"], + "Margret": ["M"], + "blind": ["P", "Z", "T", "G", "M", "D", "R", "Y", "S"], + "Ramiro's": [], + "nonthreatening": [], + "tango's": [], + "two's": [], + "gaggles": [], + "scofflaws": [], + "assist's": [], + "aphorism": ["M", "S"], + "introspectively": [], + "info": ["M"], + "Bret's": [], + "fracture": ["M", "G", "D", "S"], + "courtiers's": [], + "pastilles": [], + "Darcy's": [], + "infinitesimal'sly": [], + "offed": [], + "tobacco'ses": [], + "nightdress": ["M", "S"], + "bypass'sed": [], + "tote'ses": [], + "judiciously": [], + "bearding": [], + "Walkman's": [], + "unfinished": [], + "cracker": ["M"], + "kings": [], + "minuets": [], + "executrices": [], + "herniated": [], + "nondepartmental": [], + "curtailments's": [], + "ballgame": ["M", "S"], + "lyricist": ["S", "M"], + "medico's": [], + "IE": [], + "saleswomen": [], + "pitched": [], + "federalizing": [], + "Elwood": ["M"], + "soused": [], + "GE": ["M"], + "husbanding's": [], + "annalist's": [], + "eggs": [], + "polythene": [], + "sundersing": [], + "spiraling": [], + "commercialization": ["M"], + "magisterially": [], + "wallows": [], + "mobilization": ["C", "M"], + "Apalachicola's": [], + "kicky": ["R", "T"], + "fibber": ["S", "M"], + "ashlars": [], + "woodies's": [], + "metricizinged": [], + "escutcheon's": [], + "hustings": ["M"], + "elaborateds": [], + "lighting's": [], + "confusingly": [], + "foamings": [], + "demodulate": [], + "Iquitos's": [], + "saltiness": ["M"], + "starkliness": [], + "shudder's": [], + "tactician'ses": [], + "stairwells's": [], + "wallopings": [], + "tidyingness": [], + "cyberpunk": ["S", "M"], + "blasphemer's": [], + "archduchess": ["M", "S"], + "seashell": ["S", "M"], + "headaches": [], + "subconsciousness": ["M"], + "foreseesable": [], + "Google's": [], + "honeyed": [], + "pumping's": [], + "Apollonian's": [], + "Bissau": ["M"], + "lowish": [], + "Adm": [], + "sluggers's": [], + "kettledrums's": [], + "voodooed": [], + "fumbleder": [], + "developments": [], + "laxity's": [], + "prizewinners": [], + "dissolvinged": [], + "antechamber": ["S", "M"], + "clang": ["Z", "G", "M", "D", "R", "S"], + "shadows": [], + "creepers": [], + "sanguine": ["Y"], + "pastiers": [], + "sweetie": ["S", "M"], + "good'sly": [], + "origination's": [], + "broil's": [], + "hoyden": ["M", "S"], + "grubbierness": [], + "tabor'ses": [], + "upstart": ["M", "D", "S", "G"], + "decorateds": [], + "hussy's": [], + "rowdier": [], + "hawthorn's": [], + "petal's": [], + "garage's": [], + "subprofessionals's": [], + "frothed": [], + "jotted": [], + "Balkans's": [], + "wench": ["M", "S"], + "Web'ser": [], + "usurpsed": [], + "defensive": ["M", "Y", "P"], + "corsage": ["M", "S"], + "masseds": [], + "mandarins": [], + "calligraphers's": [], + "milligrams": [], + "prizefight'ser": [], + "palm'sed": [], + "nurse'sers": [], + "causalities's": [], + "simplerness": [], + "blazed": [], + "evoking": [], + "shove's": [], + "pluralist'ses": [], + "deputies's": [], + "chine'ses": [], + "aperitif": ["M", "S"], + "denouement's": [], + "statelinesser": [], + "influences": [], + "loosening": [], + "detriment": ["S", "M"], + "meoweds": [], + "doorknobs": [], + "prostrating": [], + "powwowsing": [], + "Valkyries": [], + "jokersing": [], + "typification": ["M"], + "wheaten": [], + "bur": ["S", "M", "Y"], + "anchorman": ["M"], + "pentathlete": ["M", "S"], + "Brant's": [], + "peelsings": [], + "veterinary": ["S", "M"], + "Baggies": ["M"], + "resurgence": ["M", "S"], + "dalliance'ses": [], + "Providences": [], + "salaams": [], + "cuties": [], + "centrifuge'sing": [], + "Greeks's": [], + "outvoting": [], + "Luria": ["M"], + "copperhead's": [], + "transcend": ["G", "S", "D"], + "imitate": ["D", "S", "G", "N", "V", "X"], + "sousaphone'ses": [], + "GitHub's": [], + "obituary's": [], + "commendation": ["A", "M", "S"], + "dominoes": [], + "counterblasts": [], + "irrelevance's": [], + "mousier": [], + "thwarting": [], + "relativism's": [], + "impregnationed": [], + "box": ["Z", "G", "M", "D", "N", "R", "S"], + "meerschaums's": [], + "prate": ["M", "Z", "G", "D", "R", "S"], + "chenille": ["M"], + "spooring": [], + "hotheadeds": [], + "artisans": [], + "ventures": [], + "sailboard's": [], + "zebu": ["M", "S"], + "obloquy's": [], + "bins": [], + "deviant": ["S", "M"], + "jerked": [], + "heartening": [], + "bareheaded": [], + "persuadable": [], + "northeastwards": [], + "connect": ["A", "E", "D", "V", "G", "S"], + "enforcer": ["M"], + "accomplice": ["S", "M"], + "woundsing": [], + "Casablanca": ["M"], + "scrubbing": [], + "orgiastic": [], + "fence": ["D", "R", "S", "M", "Z", "G"], + "Johnnie": ["M"], + "purpose's": [], + "centavos's": [], + "Joni's": [], + "kiwifruits": [], + "aspic'ses": [], + "homophone": ["M", "S"], + "austerer": [], + "nap": ["S", "M"], + "Gallicism's": [], + "populousness": ["M"], + "objectificationing": [], + "melanomas": [], + "beaked": [], + "longish": [], + "Wotan's": [], + "politicizing": [], + "Shillong": ["M"], + "boatersing": [], + "Kareem": ["M"], + "Concords": [], + "quiet's": [], + "radiographers": [], + "butterflies's": [], + "tenantry": ["M"], + "feral": [], + "idiomatically": [], + "bondmen": [], + "steamrollering": [], + "CAD": ["M"], + "arrangedment": [], + "carnies's": [], + "flammables": [], + "suturing": [], + "breakaways": [], + "pomegranate's": [], + "pasteurizers": [], + "hottest": [], + "couriering": [], + "cocked": [], + "zens": [], + "vaulterers": [], + "carvings": [], + "Celia's": [], + "conjunctivas": [], + "clarificationing": [], + "prongs": [], + "retraces": [], + "fruits's": [], + "apologia's": [], + "Honecker's": [], + "immovability": ["M"], + "spyware's": [], + "spurnsed": [], + "lineal": ["Y"], + "Turkic's": [], + "overpopulationed": [], + "coevals's": [], + "perfumery's": [], + "aggravates": [], + "tiller": ["E", "M"], + "nicker": ["M", "D", "G"], + "historiographer's": [], + "imbalanced": [], + "behest": ["M", "S"], + "bobolink": ["S", "M"], + "wardens": [], + "Miro's": [], + "squanders": [], + "fareds": [], + "preoccupieds": [], + "perplexes": [], + "inflateds": [], + "airway's": [], + "boos": [], + "quadruples": [], + "Chennai's": [], + "demonstratives": [], + "Jenkins": ["M"], + "lassos": [], + "commemorated": [], + "blacktopped": [], + "bellicose": [], + "dementia": ["M"], + "brassiere's": [], + "photocells": [], + "relinquishes": [], + "gerrymandering's": [], + "ingestion": ["M"], + "Darren": ["M"], + "shirt's": [], + "quaking": [], + "gearing": ["M"], + "deductible's": [], + "sublimateds": [], + "fieriness": ["M"], + "goosebumps's": [], + "Brunelleschi": ["M"], + "unheeded": [], + "Nicholas's": [], + "escort'sed": [], + "dodges's": [], + "obliteratingen": [], + "trouncersing": [], + "wangle's": [], + "dragnets": [], + "cakewalks's": [], + "varnishing": [], + "Ronnie": ["M"], + "survivors": [], + "thousandth's": [], + "tusked": [], + "inconstancy": [], + "Chung": ["M"], + "illegal": ["M", "Y", "S"], + "provident": ["Y"], + "rays's": [], + "justness's": [], + "joking": ["Y"], + "catnip's": [], + "postludes": [], + "junkyard": ["M", "S"], + "anchormen": [], + "descriptiveness's": [], + "universally": [], + "standpipe": ["S", "M"], + "TB": ["M"], + "credulousness's": [], + "Herero's": [], + "criticism'ses": [], + "alive": [], + "sauced": [], + "millibar": ["M", "S"], + "deportation": ["M", "S"], + "Utahans": [], + "outcry": ["S", "M"], + "protocols": [], + "Luz": ["M"], + "Brazilian'ses": [], + "speleologists": [], + "typewriter": ["M"], + "sprinklings": [], + "Mantegna": ["M"], + "capsulizing": [], + "boundary's": [], + "Stoicism": ["M", "S"], + "silkily": [], + "Bahamas": ["M"], + "lamebraineds": [], + "fundamental'sly": [], + "Muhammadan": ["M", "S"], + "thermos": ["M", "S"], + "gougersing": [], + "penalization": ["M"], + "marina": ["M", "S"], + "friendship'ses": [], + "Tbilisi": ["M"], + "Cheops": ["M"], + "trachea": ["M"], + "Darrell": ["M"], + "Judd's": [], + "underskirt": ["S", "M"], + "slurring": [], + "successions": [], + "Swaziland": ["M"], + "tradition's": [], + "Zulus's": [], + "superannuate": ["G", "N", "D", "S"], + "inglorious": [], + "obstetrics": ["M"], + "Springsteen": ["M"], + "bossiest": [], + "Duisburg": ["M"], + "bleacher's": [], + "rem": ["M"], + "trencherman": ["M"], + "jugful'ses": [], + "Dawson": ["M"], + "distant": ["Y"], + "Browning's": [], + "homogenizing": [], + "smacking": [], + "predicate'sing": [], + "ogle": ["M", "Z", "G", "D", "R", "S"], + "dice": ["G", "D", "S"], + "discoversed": [], + "agonizeds": [], + "steady's": [], + "symbolization's": [], + "territorials": [], + "piecrusts": [], + "ensued": [], + "prefaceds": [], + "boardrooms": [], + "inhibited": [], + "transformer's": [], + "Garvey's": [], + "capitols": [], + "Linton": ["M"], + "sniffer": ["M"], + "niggards's": [], + "PAC": ["M"], + "wasteland": ["S", "M"], + "preamble'sing": [], + "arraignment's": [], + "touchdowns": [], + "persecutors's": [], + "steadiness's": [], + "northerlies's": [], + "runarounds's": [], + "rearrange": [], + "Ryder": ["M"], + "roar": ["Z", "G", "M", "D", "R", "S"], + "palomino": ["M", "S"], + "grantees": [], + "strenuousness": ["M"], + "amalgams's": [], + "guru'ses": [], + "somberness": ["M"], + "loanersing": [], + "scrunching": [], + "railway's": [], + "effing": [], + "fakir": ["S", "M"], + "bridles": [], + "nonissue": [], + "carotids": [], + "sissified": [], + "take'ses": [], + "digit": ["S", "M"], + "solstice'ses": [], + "bit's": [], + "coke": ["M", "G", "D", "S"], + "Godthaab": ["M"], + "aquas's": [], + "offbeat": ["M", "S"], + "implore": ["D", "S", "G"], + "semitransparent": [], + "hastes": [], + "dustbins's": [], + "harassed": [], + "doughier": [], + "abrasive": ["M", "Y", "P", "S"], + "taking's": [], + "charbroiling": [], + "boatsers": [], + "shadowboxinged": [], + "chastising": [], + "placekick'sed": [], + "lexicography's": [], + "hisseds": [], + "breeches": [], + "Cliburn": ["M"], + "grumblers": [], + "infections's": [], + "these": ["S"], + "biosphere's": [], + "canvasser's": [], + "whetstones": [], + "Martian": ["S", "M"], + "Gilman": [], + "no's": [], + "overweening": ["Y"], + "service's": [], + "benefiteding": [], + "niter": ["M"], + "loveliers": [], + "fidgeted": [], + "extortionist's": [], + "subliminged": [], + "disgruntlement": ["M"], + "flunkies's": [], + "niggard'sly": [], + "cosponsor's": [], + "nourishing": [], + "spheroid": ["S", "M"], + "folkways": [], + "exemplifyinged": [], + "kamikaze's": [], + "adjacency": ["M"], + "Columbia's": [], + "burghers": [], + "denial'ses": [], + "emoluments": [], + "Gawain's": [], + "Odell's": [], + "reach's": [], + "accessorizes": [], + "decimal's": [], + "featureds": [], + "Hubert": ["M"], + "overconscientious": [], + "epicure's": [], + "curse's": [], + "Zappa": ["M"], + "toddy": ["S", "M"], + "refuters": [], + "icebreaker's": [], + "pudgiest": [], + "Letitia": ["M"], + "Yiddish's": [], + "bombarding": [], + "codify": ["X", "D", "R", "S", "N", "Z", "G"], + "lire": [], + "salon'ses": [], + "orangeade's": [], + "paraphrase": ["D", "S", "M", "G"], + "Dzungaria": ["M"], + "silo": ["M", "S"], + "Mae": ["M"], + "tappet'ses": [], + "adman's": [], + "holdsers": [], + "racialists": [], + "Garcia": ["M"], + "bubo's": [], + "solarium": ["M"], + "astern": [], + "render": ["S", "G", "M", "D", "J"], + "photojournalist": ["S", "M"], + "potentiateds": [], + "rumblesings": [], + "promulgators": [], + "succeededs": [], + "herbivorous": [], + "awe's": [], + "incision's": [], + "genome's": [], + "anabolism": ["M"], + "improvisation's": [], + "disputation": ["S", "M"], + "darken": ["Z", "G", "D", "R"], + "grunting's": [], + "caregiver's": [], + "mod": ["S", "T", "M"], + "episodes": [], + "highchair'ses": [], + "pilferer's": [], + "tatterdemalions": [], + "aerodynamics": ["M"], + "Walpurgisnacht's": [], + "tangibly": ["I"], + "toasty": ["T", "R", "S"], + "towpaths": [], + "plundering's": [], + "hogback": ["S", "M"], + "assemblyman": ["M"], + "spearmint's": [], + "sleet": ["S", "M", "D", "G"], + "good's": [], + "thorniness": ["M"], + "fair's": [], + "spaciness": ["M"], + "Louvre's": [], + "fumigator's": [], + "tauterly": [], + "Cantor": ["M"], + "coronations": [], + "sculls": [], + "ooziest": [], + "partials": [], + "Gibbon's": [], + "penetrations": [], + "subdivides": [], + "Bailey": ["M"], + "dolling": [], + "gerontologist": ["M", "S"], + "incomparable": [], + "daunts": [], + "thwackers": [], + "roadies": [], + "Cains's": [], + "instants": [], + "FSF": ["M"], + "cos's": [], + "catalytic's": [], + "botanist": ["S", "M"], + "baubles's": [], + "plaque": ["S", "M"], + "socks": [], + "clefs": [], + "snaffle": ["D", "S", "M", "G"], + "referents's": [], + "goalpost": ["M", "S"], + "caroming's": [], + "gumshoe": ["M", "D", "S"], + "catkin's": [], + "aquamarines's": [], + "handsomeness": ["M"], + "producers": [], + "dessert's": [], + "Petrarch": ["M"], + "outrigger": ["S", "M"], + "enfranchiseds": [], + "misery's": [], + "noshing": [], + "quail's": [], + "bazaars": [], + "intellectuallies": [], + "mtge": [], + "gladdeninged": [], + "unfitting": [], + "sonorously": [], + "grapevine": ["S", "M"], + "hairdryers": [], + "Olympian's": [], + "muss": ["M", "D", "S", "G"], + "Spaniard": ["S", "M"], + "caramelizes": [], + "capering's": [], + "colorways": [], + "stylus'ses": [], + "extrinsic": [], + "trochee's": [], + "nearerly": [], + "holmium": ["M"], + "pinkest": [], + "unreliably": [], + "puttying": [], + "Mavis's": [], + "mag": ["S", "M"], + "pronounce": ["D", "S", "L", "G"], + "Mozilla's": [], + "botch": ["D", "R", "S", "Z", "G", "M"], + "Dolly": ["M"], + "headlock's": [], + "holdover": ["S", "M"], + "apologist": ["M", "S"], + "flood's": [], + "playeds": [], + "phisher's": [], + "perplexity's": [], + "accompaniments": [], + "Gillian's": [], + "recompile": ["G", "D"], + "Berkeley": ["M"], + "Linton's": [], + "Nola's": [], + "thunderously": [], + "Camelot's": [], + "rockfall's": [], + "undecidable": [], + "flaw's": [], + "foolscap": ["M"], + "teaspoon": ["S", "M"], + "reroute": [], + "macadamizeds": [], + "mouton": ["M"], + "languidly": [], + "chordate": ["S", "M"], + "jellybean'ses": [], + "boycotted": [], + "opaqueness": ["M"], + "legibly": [], + "submerseds": [], + "Cartwright's": [], + "constellation": ["S", "M"], + "chilling's": [], + "scrimp": ["S", "D", "G"], + "Disney": ["M"], + "soothsayers": [], + "litterersing": [], + "reorgeds": [], + "Guggenheim's": [], + "Jim": ["M"], + "tortes": [], + "thrashesers": [], + "chideds": [], + "averaged": [], + "felines's": [], + "popular": ["Y"], + "robotized": [], + "marks": [], + "carves": [], + "obdurateness's": [], + "Eichmann's": [], + "plumper": [], + "flub's": [], + "effervescence": ["M"], + "sorority": ["S", "M"], + "expositors's": [], + "wartier": [], + "steel'sed": [], + "solved": ["U"], + "yukking": [], + "uncover": [], + "Arizona": ["M"], + "precariousness's": [], + "overbids": [], + "shrike": ["M", "S"], + "parching": [], + "respiring": [], + "characterization": ["M", "S"], + "nickles": [], + "designing": [], + "terrestrials's": [], + "bloodshot": [], + "Whiteley": ["M"], + "petards": [], + "sulking": [], + "breakout's": [], + "understudying": [], + "Liberians": [], + "choosinesser": [], + "hunchesing": [], + "imputabled": [], + "peereding": [], + "avionics's": [], + "strikers": [], + "meteoroid's": [], + "buttonhole'sing": [], + "downturn's": [], + "Steinbeck's": [], + "misogynist": ["S", "M"], + "pools": [], + "doorplates's": [], + "trier": ["S", "M"], + "underclass": ["M", "S"], + "Windbreaker's": [], + "pixel's": [], + "greasersing": [], + "Muhammadans": [], + "sheave's": [], + "firetrap": ["M", "S"], + "leafstalk": ["M", "S"], + "effsed": [], + "recycle": [], + "grubbers": [], + "ford": ["M", "D", "G", "S", "B"], + "benzene": ["M"], + "meddleder": [], + "drainage": ["M"], + "algorithm": ["S", "M"], + "Surinamese": [], + "populace": ["M", "S"], + "rerecordinged": [], + "steroids": [], + "Kenny": ["M"], + "porcelain": ["S", "M"], + "praise'sing": [], + "stepmothers": [], + "frippery": ["S", "M"], + "Kohl": ["M"], + "wince's": [], + "hypnosis": ["M"], + "univalve's": [], + "finessed": [], + "diddlersing": [], + "lamebrains": [], + "Lhasa's": [], + "jardinieres's": [], + "cassia'ses": [], + "plantings": [], + "furlong": ["S", "M"], + "laboratory's": [], + "birthday'ses": [], + "fashion": ["Z", "G", "B", "M", "D", "R", "S"], + "timers": [], + "dolmen's": [], + "inundation's": [], + "mortar": ["M", "D", "S", "G"], + "platitudes": [], + "demurest": [], + "overstated": [], + "palenessed": [], + "inverting": [], + "Nightingale": ["M"], + "gargoyle": ["S", "M"], + "geophysicists": [], + "overreacting": [], + "gribble": ["S"], + "gadders": [], + "Prussian": ["M", "S"], + "sauce'sers": [], + "enamored": [], + "vole'ses": [], + "aphrodisiac": ["S", "M"], + "Lazarus's": [], + "tunneleder": [], + "boudoir's": [], + "jellieds": [], + "unsolvable": [], + "Kenyon": ["M"], + "consonants's": [], + "suede's": [], + "repudiation's": [], + "Roku's": [], + "auditioning": [], + "Godiva's": [], + "farmer's": [], + "remixesing": [], + "picturesquenessly": [], + "addablers": [], + "antelope's": [], + "hickeys": [], + "profanity": ["S", "M"], + "browsersing": [], + "stagnancy's": [], + "habit's": [], + "adducing": [], + "televisions": [], + "obstinacy": ["M"], + "itchy": ["R", "P", "T"], + "Hellman's": [], + "underlings": [], + "bogeys": [], + "virtuoso": ["M"], + "bagful'ses": [], + "introductions": [], + "Laurence": ["M"], + "execrable": [], + "registration": ["S", "M"], + "module": ["M", "S"], + "Witt": ["M"], + "neighborly": [], + "partakersing": [], + "tavern's": [], + "functionalities": [], + "Jr": ["M"], + "Sue": ["M"], + "bloke": ["M", "S"], + "foresight": ["M", "D"], + "meetup": ["M", "S"], + "Lansing": ["M"], + "kilns": [], + "taxablers": [], + "impressionables": [], + "nonpublic": [], + "Coimbatore": ["M"], + "dislodge": ["G", "D", "S"], + "inaugurating": [], + "stalactite": ["M", "S"], + "jumbled": [], + "interregnums's": [], + "hp": [], + "Navajoes": [], + "articular": [], + "mists": [], + "studying": [], + "Casey": ["M"], + "weensiest": [], + "troopers": [], + "plasticizes": [], + "Estonia": ["M"], + "loaf's": [], + "confute": ["D", "S", "G"], + "inced": [], + "nave": ["M", "S"], + "shabbily": [], + "pitfalls's": [], + "relational": [], + "cloche's": [], + "pediments": [], + "neocolonialist's": [], + "mirthless": ["Y"], + "romping": [], + "monodist": ["S", "M"], + "neurotransmitters's": [], + "inkstand's": [], + "mottleds": [], + "dollhouse's": [], + "Haas": ["M"], + "reactivate": [], + "Zoroastrianisms": [], + "hazier": [], + "ventures's": [], + "potentialities's": [], + "judicious": ["I", "Y", "P"], + "kooky": ["T", "P", "R"], + "terrorists": [], + "threadiest": [], + "splashed": [], + "solvent": ["I", "M", "S"], + "openhandedness": ["M"], + "plagiarizers": [], + "servings": [], + "hydrogen": ["M"], + "frailness's": [], + "hawthorn": ["M", "S"], + "Lassie's": [], + "psyches": [], + "prurience": ["M"], + "rootings": [], + "dramatics": ["M"], + "tsetse's": [], + "quadratics": [], + "horseds": [], + "counsels": [], + "bottleneck'ses": [], + "tonsillitis": ["M"], + "FHA's": [], + "pretesting": [], + "sociopath's": [], + "MBA's": [], + "ditz": ["M", "S"], + "gesticulateds": [], + "questioner's": [], + "jonquil": ["S", "M"], + "staleder": [], + "boondocks": ["M"], + "pong": ["G", "D", "S"], + "archiepiscopal": [], + "laser's": [], + "woodland's": [], + "marabou": ["M", "S"], + "salvages": [], + "comm": [], + "pagans's": [], + "seascapes's": [], + "neareder": [], + "perfumeries": [], + "shrilled": [], + "erg's": [], + "bosom's": [], + "commencesment": [], + "impairments": [], + "advertisinged": [], + "neglectfulliness": [], + "dotcom's": [], + "Trevelyan": ["M"], + "iamb": ["M", "S"], + "stowing": [], + "moonwalks": [], + "gibbon": ["M", "S"], + "age'sing": [], + "Maldonado": ["M"], + "shoot": ["Z", "G", "M", "R", "S", "J"], + "marshier": [], + "Steinmetz's": [], + "ohms": [], + "Janna's": [], + "subdivide": ["G", "D", "S"], + "kookiness's": [], + "interspersed": [], + "residues's": [], + "sleazeballs": [], + "reputably": ["E"], + "sandpit": ["S"], + "truncationed": [], + "arrival'ses": [], + "steal's": [], + "circuitousness": ["M"], + "cost": ["M", "D", "Y", "G", "S", "J"], + "catwalk's": [], + "comakers's": [], + "homered": [], + "Spenglerian's": [], + "shadings": [], + "supercomputer'ses": [], + "lovelier": [], + "voodoo'sed": [], + "circulateds": [], + "mackinaw": ["S", "M"], + "curfews's": [], + "slushierness": [], + "fenestration's": [], + "troublemaker": ["M", "S"], + "wavelets's": [], + "rondo": ["S", "M"], + "Maurine's": [], + "dioxins": [], + "objectifies": [], + "birdlike": [], + "Holsteins's": [], + "torpedo": ["G", "M", "D"], + "outdrawn": [], + "sequitur": [], + "headman's": [], + "sanatorium's": [], + "refuge": ["S", "M"], + "suitcase": ["S", "M"], + "permeation": ["M"], + "four's": [], + "saunterings": [], + "quarterfinals": [], + "datersing": [], + "hireling's": [], + "spanking's": [], + "aspirates": [], + "extortionists": [], + "tyrannous": [], + "brick's": [], + "moonshiners": [], + "progressives": [], + "conflagration'ses": [], + "thinned": [], + "reliefs's": [], + "pellucid": [], + "bloodhounds": [], + "jailhouses": [], + "wine'ses": [], + "starred": [], + "screenings's": [], + "carbon'ses": [], + "repose's": [], + "induces": [], + "viewpoint": ["M", "S"], + "tactless": ["P", "Y"], + "granule": ["M", "S"], + "contemptuousness's": [], + "animatingen": [], + "decidedly": [], + "toy'sed": [], + "Steuben's": [], + "smitten": [], + "Que": [], + "ferocity's": [], + "physic's": [], + "Shavian": ["M"], + "Lilly's": [], + "litotes's": [], + "swirl'sed": [], + "catatonia": ["M"], + "defector": ["M", "S"], + "kiloliters": [], + "glaciating": [], + "fatwa's": [], + "barium": ["M"], + "tonsil'ses": [], + "sett": ["B", "J", "Z", "G", "R", "S"], + "extravagance's": [], + "feasting": [], + "tr": [], + "denouncing": [], + "hatreds": [], + "meat's": [], + "people": ["M", "G", "D", "S"], + "plunder'sed": [], + "heehaws": [], + "perambulator": ["M", "S"], + "silverfish": ["M", "S"], + "trial's": [], + "Protagoras": ["M"], + "Dr": [], + "Stern": ["M"], + "spun": [], + "experimenteder": [], + "fixings's": [], + "layperson's": [], + "daemons": [], + "foreknows": [], + "burned": [], + "paralyze": ["D", "S", "G"], + "treadmill'ses": [], + "stepdads": [], + "hyper": [], + "minibike": ["S", "M"], + "equaledly": [], + "crappie": ["R", "S", "M", "T"], + "spoilerers": [], + "Windows": ["M"], + "stakeholder'ses": [], + "brotherers": [], + "ravishment": ["M"], + "belligerentlies": [], + "prelacy's": [], + "phoniers": [], + "teachesable": [], + "heeled": [], + "abashing": [], + "mitten's": [], + "aspen": ["M"], + "pussies": [], + "Imodium": ["M"], + "stormy": ["R", "P", "T"], + "fillings": [], + "dawning's": [], + "palliatives": [], + "challis": ["M"], + "detestation's": [], + "incarnadinesing": [], + "directional": [], + "finesses": [], + "niggler": ["M"], + "Canton": ["M"], + "Oracle": ["M"], + "rundowns": [], + "ricer": ["M"], + "prepossesses": [], + "bungalows": [], + "wellingtons": [], + "mysteriousness's": [], + "standardized": [], + "reflection's": [], + "hoax's": [], + "scrutinized": [], + "McGuffey": ["M"], + "mop": ["S", "Z", "G", "M", "D", "R"], + "valeted": [], + "unknown": ["S", "M"], + "Golan's": [], + "turret's": [], + "Alana's": [], + "percolator's": [], + "mynas": [], + "mounters": [], + "pinyon's": [], + "sodomy's": [], + "indispensable": ["M", "S"], + "exploit's": [], + "measureds": [], + "Lilliput": ["M"], + "perfumeries's": [], + "Hensley's": [], + "Marquez's": [], + "valetudinarian'ses": [], + "ageists's": [], + "Dawn": ["M"], + "machinationed": [], + "pejoratives": [], + "Sherrie's": [], + "jurisprudence": ["M"], + "standardization's": [], + "resuscitated": [], + "vitamin": ["M", "S"], + "hatchets's": [], + "intervention": ["S", "M"], + "mummy": ["S", "M"], + "Javanese": ["M"], + "shapeless": ["Y", "P"], + "tactfully": [], + "rectified": [], + "counselor": ["M", "S"], + "founts's": [], + "blintze's": [], + "Sutherland's": [], + "backseats's": [], + "Cenozoic's": [], + "hellion'ses": [], + "garages": [], + "advertisement": ["M", "S"], + "totem": ["S", "M"], + "Shorthorn": ["M"], + "correlationsed": [], + "interviewee": ["M", "S"], + "homewrecker's": [], + "omitting": [], + "shirttail": ["S", "M"], + "cannibalized": [], + "pathfinder's": [], + "feat'ses": [], + "OD's": [], + "totted": [], + "depict": ["G", "D", "S"], + "foresight's": [], + "obi": ["S", "M"], + "demurring": [], + "tracheal": [], + "O": ["S", "M"], + "stats": [], + "benzine": ["M"], + "trim'sly": [], + "hairstylist": ["S", "M"], + "biography's": [], + "blandishment's": [], + "sufferer's": [], + "persuadersing": [], + "motorbike's": [], + "contraventions": [], + "Raul": ["M"], + "snorters": [], + "comp'sed": [], + "baronetcy's": [], + "atonally": [], + "applauders": [], + "breakthrough": ["M"], + "conspiracies": [], + "plaintively": [], + "psephology": [], + "slosh": ["D", "S", "G"], + "Cuvier": ["M"], + "transmogrify": ["D", "S", "N", "G"], + "neologism's": [], + "dweller's": [], + "cliffhanging": [], + "upholsters": [], + "decadent'sly": [], + "astronaut's": [], + "derailleur's": [], + "Saturday'ses": [], + "solstice": ["M", "S"], + "laundress": ["M", "S"], + "stopped": ["U"], + "meet's": [], + "undertows": [], + "facts": [], + "treasonable's": [], + "titian": ["M"], + "favoring": [], + "inflationary": [], + "fabulously": [], + "tankers": [], + "Tirolean": [], + "readingses": [], + "obscurers": [], + "reputability's": [], + "defeatist'ses": [], + "milliard's": [], + "gang'sed": [], + "lyrics's": [], + "Nieves's": [], + "begot": [], + "filthy": ["R", "P", "T"], + "plan": ["Z", "M", "R", "S"], + "cotters": [], + "lateral": ["M", "D", "Y", "S", "G"], + "Luvs": ["M"], + "ripsaw": ["S", "M"], + "lashingings": [], + "cooperation": ["M"], + "hons": [], + "cutaway'ses": [], + "Ozzie": ["M"], + "fluctuatingen": [], + "hypoglycemia": ["M"], + "Ghats": ["M"], + "bircheds": [], + "subtopic's": [], + "brusquest": [], + "fulsomely": [], + "ruling's": [], + "discipline's": [], + "unwholesome": [], + "plaudits's": [], + "declassification": [], + "wonk'ses": [], + "dissenteder": [], + "ETD": [], + "flyway": ["S", "M"], + "offprints's": [], + "hereabouts": [], + "leggierness": [], + "deprecation": ["M"], + "spathe": ["S", "M"], + "clunkers": [], + "tipper's": [], + "Belmont's": [], + "start'sed": [], + "depositories's": [], + "Reich's": [], + "warmongers": [], + "Griffith": ["M"], + "aftertaste's": [], + "dogies's": [], + "netters": [], + "chordal": [], + "cockily": [], + "anorexic'ses": [], + "gnarlier": [], + "Jinan": ["M"], + "coasting": [], + "owl": ["S", "M"], + "hairstyle'ses": [], + "Douay": ["M"], + "acceptabling": [], + "wheelies": [], + "spinet": ["S", "M"], + "chicest": [], + "broacheds": [], + "notch's": [], + "Knossos's": [], + "shakier": [], + "heartthrob": ["M", "S"], + "Luisa": ["M"], + "quiltersing": [], + "aromas": [], + "Moussorgsky": ["M"], + "quickened": [], + "smartwatch's": [], + "bedsitters": [], + "thirstsing": [], + "builder's": [], + "knish's": [], + "diversions": [], + "Sanger's": [], + "landau's": [], + "customs": [], + "cindering": [], + "plantersing": [], + "swerve'sing": [], + "mischances's": [], + "burrowerers": [], + "wees's": [], + "consternation": ["M"], + "shines": [], + "vasectomies": [], + "firmness's": [], + "Boniface": ["M"], + "mulch's": [], + "overconfidence's": [], + "jolly's": [], + "maddened": [], + "overrode": [], + "landaus's": [], + "dresser's": [], + "dissectsed": [], + "implicitnessly": [], + "houseful's": [], + "wash'sed": [], + "subtext's": [], + "sassafras'ses": [], + "disable": ["D", "S", "G", "L"], + "woodpecker": ["M", "S"], + "incorrectly": [], + "motherland": ["M", "S"], + "called": ["U"], + "others": [], + "Ashley": ["M"], + "tropes": [], + "bandanna'ses": [], + "rightmost": [], + "Yaounde": ["M"], + "pseudosciences": [], + "Priscilla's": [], + "fetch": ["D", "R", "S", "Z", "G"], + "gems": [], + "enchantress'ses": [], + "gazillions": [], + "you": ["S", "M", "H"], + "chops's": [], + "consomme's": [], + "McDonald": ["M"], + "meadowlark's": [], + "imagination": ["M", "S"], + "fraternizer's": [], + "perniciousness's": [], + "pudding's": [], + "Malibu's": [], + "anchorite'ses": [], + "dorky": ["R", "T"], + "unseeingly": [], + "stratospheric": [], + "instructively": [], + "freeware": ["M"], + "sedater": [], + "brightener's": [], + "barberry": ["S", "M"], + "Crowley": ["M"], + "hick'ses": [], + "fireplug's": [], + "embroidery's": [], + "prickly": ["P", "R", "T"], + "floodplain'ses": [], + "deterrents": [], + "drips": [], + "snivelers": [], + "cordiality": ["M"], + "imprecision": ["M"], + "phenomenological": [], + "hacktivist'ses": [], + "phosphorus": ["M"], + "thumbtacks's": [], + "incurious": [], + "downspout": ["M", "S"], + "weathermen": [], + "churlish": ["P", "Y"], + "buccaneer": ["S", "G", "M", "D"], + "decelerateds": [], + "mistreatment": ["M"], + "riddled": [], + "lather": ["G", "M", "D"], + "engraver": ["M"], + "subs": [], + "subsidy": ["S", "M"], + "nonsensitive": [], + "dailies": [], + "ludicrousness": ["M"], + "FDR's": [], + "catboats": [], + "noncompliance's": [], + "educed": [], + "nativity": ["S", "M"], + "kind's": [], + "bachelor": ["S", "M"], + "Isolde": ["M"], + "geomagnetism's": [], + "Manitoba": ["M"], + "amounting's": [], + "surnames": [], + "billows": [], + "Hibernia's": [], + "purifieder": [], + "ministry": ["S", "M"], + "lecherously": [], + "disorientate": [], + "toddy's": [], + "splotcheds": [], + "chuckeds": [], + "Jacksonian": ["M"], + "claret": ["M", "S"], + "fluttery": [], + "shrinkage's": [], + "landlubber's": [], + "faction's": [], + "Athabasca's": [], + "jugular's": [], + "morbid": ["Y", "P"], + "surrealism": ["M"], + "fretsaw's": [], + "decries": [], + "plankings": [], + "heir's": [], + "eighteenths": [], + "sneakerers": [], + "impure": ["R", "Y", "T"], + "obscurantist": ["S", "M"], + "failures": [], + "modeler": ["M"], + "poss": [], + "billboards": [], + "vagus": [], + "Lucinda's": [], + "Antofagasta": ["M"], + "recompenses's": [], + "squirms": [], + "most'sly": [], + "joggle": ["D", "S", "M", "G"], + "jackknife's": [], + "zerosing": [], + "varietals's": [], + "highballs's": [], + "doings's": [], + "junketed": [], + "egoists's": [], + "Luke's": [], + "tripe's": [], + "workmates": [], + "rhubarb's": [], + "Dirac": ["M"], + "colorful": ["P", "Y"], + "deadline's": [], + "marker": ["M", "S"], + "potbellies": [], + "redisengage": [], + "distincter": [], + "headbangers": [], + "rattlesnakes": [], + "penthouse's": [], + "nonbeliever'ses": [], + "Clemson": ["M"], + "overwritten": [], + "noses": [], + "misapprehend": ["G", "S", "D"], + "breviary's": [], + "broadswords's": [], + "Diwali": ["M"], + "actualize": ["G", "D", "S"], + "rippers": [], + "lettereder": [], + "marsh": ["M", "S"], + "preconceived": [], + "screws": [], + "inexactly": [], + "flatware": ["M"], + "parachutists": [], + "intensifies": [], + "rattleder": [], + "aberrational": [], + "pedicabs": [], + "driveway's": [], + "slipway": ["S", "M"], + "fright": ["S", "X", "G", "M", "D", "N"], + "petroleum": ["M"], + "outface": ["G", "D", "S"], + "collector's": [], + "wordy": ["T", "P", "R"], + "incumbent": ["S", "M"], + "succeeding": [], + "cricket": ["M", "R", "S", "Z", "G"], + "incumbents": [], + "railroading": ["M"], + "joyousness": ["M"], + "minimal": ["Y"], + "needled": [], + "sashaysing": [], + "immunoglobulin": ["S"], + "sites": [], + "discerning": ["Y"], + "jadedness": ["M"], + "alluvial": ["M"], + "walloping": ["M"], + "emolument's": [], + "Ken's": [], + "attempt": ["A", "S", "D", "G"], + "scoots": [], + "suture'sing": [], + "Reva's": [], + "fluorite's": [], + "tameness's": [], + "Hohokam's": [], + "Flossie's": [], + "stipulation's": [], + "steers's": [], + "cubeder": [], + "culottes": [], + "soluble's": [], + "nudest": [], + "awesomeliness": [], + "intricacies's": [], + "sludge": ["M"], + "lullaby": ["S", "M"], + "overturn": ["D", "S", "G"], + "Creek": ["S", "M"], + "how's": [], + "churchwarden's": [], + "syrup": ["S", "M"], + "refitted": [], + "bins's": [], + "Burgess": ["M"], + "unscrew": [], + "overawes": [], + "priding": [], + "touristic": [], + "Zimbabweans's": [], + "underweight": ["M"], + "document": ["G", "M", "D", "S"], + "forerunner's": [], + "vastest": [], + "hummers": [], + "strict": ["R", "Y", "P", "T"], + "braked": [], + "cantilevered": [], + "usually": [], + "enlightens": [], + "empowersed": [], + "overpraiseds": [], + "taunts": [], + "underrate": ["G", "D", "S"], + "persists": [], + "existeding": [], + "sneakily": [], + "ruckuses": [], + "sidepieces": [], + "obliterated": [], + "bacon's": [], + "scoldsing": [], + "souffles's": [], + "waggling": [], + "declivity's": [], + "airfares's": [], + "generatesed": [], + "sunhats": [], + "overdosing": [], + "flippancy": ["M"], + "kt": [], + "conductresses": [], + "gangeding": [], + "raft'sed": [], + "cozier": [], + "apes's": [], + "Nagy's": [], + "renters": [], + "uninvited": [], + "roundworms's": [], + "muskox": ["M", "N"], + "comfiest": [], + "broods": [], + "dotted": [], + "Mexican's": [], + "Xes's": [], + "insurable": [], + "xerography": ["M"], + "wannabees": [], + "correlation's": [], + "st": [], + "boxroom": ["S"], + "taggers's": [], + "straps": [], + "glamorously": [], + "hammerlock's": [], + "shark's": [], + "Grant": ["M"], + "daydreamings": [], + "pen's": [], + "ceasefires": [], + "shadowboxed": [], + "purifiers": [], + "chars's": [], + "enumerators's": [], + "literals's": [], + "suet's": [], + "dissimilitude": ["S"], + "demulcent": ["S", "M"], + "returner": [], + "cudgelings": [], + "sheath's": [], + "warranties's": [], + "spoilage's": [], + "pertinacious": ["Y"], + "moonshot's": [], + "framersing": [], + "abductee": ["M", "S"], + "Estonian's": [], + "manufactures": [], + "timeshare": ["S"], + "Ratliff": ["M"], + "orphaning": [], + "Persia's": [], + "tailcoat'ses": [], + "nightcap's": [], + "flareds": [], + "shove'sing": [], + "similitude's": [], + "pilgrimage'ses": [], + "aitch'ses": [], + "bodkin": ["M", "S"], + "patrolled": [], + "masthead'ses": [], + "eleventh": ["M"], + "milker": ["M"], + "edibles": [], + "penurious": ["P", "Y"], + "illustrateds": [], + "caravansary": ["S", "M"], + "marrow": ["M", "S"], + "extemporizes": [], + "purveyed": [], + "recitative'ses": [], + "shuffler's": [], + "spectrometers": [], + "eradicateds": [], + "Felicia": ["M"], + "electrifying": [], + "gazer": ["M"], + "peculators": [], + "economizersing": [], + "Mendelian": ["M"], + "synchronizeds": [], + "keystone's": [], + "outflow": ["M", "S"], + "orbiters": [], + "gases": [], + "overcloudsing": [], + "castors": [], + "latitudinarian'ses": [], + "Palmyra": ["M"], + "slewing": [], + "cockings": [], + "Rostropovich's": [], + "chafeds": [], + "spume's": [], + "marquise": ["M"], + "alack": [], + "soundscapes": [], + "Alaskans": [], + "fishmonger": ["M", "S"], + "oat": ["S", "M", "N"], + "quadraphonic": [], + "overstockings": [], + "cooled": [], + "gelling": [], + "unfits": [], + "musing'sly": [], + "Torah": ["M"], + "mayoress": ["M", "S"], + "Basel": ["M"], + "Dena's": [], + "Amazons's": [], + "itchiness's": [], + "zip": ["U", "S"], + "adder": ["M"], + "albinism's": [], + "plain's": [], + "hopscotches": [], + "epic's": [], + "excursionists": [], + "pud": ["S"], + "consolidatingen": [], + "telltale": ["S", "M"], + "earthed": [], + "Palmer's": [], + "seduces": [], + "ASPCA": [], + "amorousliness": [], + "ebbed": [], + "static's": [], + "occasioning": [], + "painlessness's": [], + "melancholy's": [], + "irresolutely": [], + "Luger's": [], + "victimizinged": [], + "dishearteningly": [], + "wigglers": [], + "katydid": ["S", "M"], + "pulse'sing": [], + "birching": [], + "lawgiver'ses": [], + "gelding's": [], + "Ferber's": [], + "expatriating": [], + "cottoning's": [], + "someones": [], + "fidgeting": [], + "Florine": ["M"], + "Osborne's": [], + "butterball'ses": [], + "accomplices's": [], + "visualizations's": [], + "wretch": ["M", "S"], + "Guofeng's": [], + "expiry's": [], + "skillets": [], + "microphone": ["S", "M"], + "blasphemer": ["M"], + "heeds": [], + "overreacts": [], + "patriarchs": [], + "hairdressers's": [], + "Gorgas": ["M"], + "Nuremberg": ["M"], + "jacket's": [], + "week'sly": [], + "bozo's": [], + "brainwashing": ["M"], + "visioning": [], + "Bette's": [], + "cyclical": ["Y"], + "bandsman": ["M"], + "fusees": [], + "weeds": [], + "lineages": [], + "squarer": [], + "tuskeds": [], + "disbursingment": [], + "Vijayanagar's": [], + "widowers": [], + "rustics": [], + "grazers": [], + "stylizesing": [], + "transcended": [], + "instrumentals": [], + "nowhere's": [], + "prosceniums's": [], + "reject's": [], + "metricized": [], + "wish'sed": [], + "spiritual": ["M", "Y", "S"], + "renter's": [], + "skimpeding": [], + "Boeotian's": [], + "raggedly": [], + "Salome": ["M"], + "heptagon'ses": [], + "lodgings": ["M"], + "cornerstones": [], + "snifferers": [], + "effect's": [], + "breezeway": ["S", "M"], + "bags": [], + "futile": ["Y"], + "forfeit": ["G", "S", "M", "D"], + "triplies": [], + "codger": ["S", "M"], + "floggings": [], + "tragedienne's": [], + "informed": ["U"], + "Bible's": [], + "fraternization's": [], + "mannishliness": [], + "memorability": ["M"], + "vitiated": [], + "foist": ["S", "D", "G"], + "detonating": [], + "beetling": [], + "galleons": [], + "provocativeness": ["M"], + "typesetting": ["M"], + "stunt": ["G", "S", "M", "D"], + "satanism's": [], + "raga'ses": [], + "dinars's": [], + "rutting": [], + "carbon": ["M", "S"], + "transfusesens": [], + "lubrication's": [], + "telephony's": [], + "Ulster's": [], + "splayfeet": [], + "Josephus": ["M"], + "Jacobite": ["M"], + "Hadar": ["M"], + "waterfalls's": [], + "attic's": [], + "creditworthiness": [], + "expiation": ["M"], + "horrific": [], + "wisecrack'sed": [], + "Muscovy": ["M"], + "circuited": [], + "crumbing": [], + "captiousness's": [], + "loaf": ["M", "D", "R", "S", "Z", "G"], + "touched": ["U"], + "butterscotch's": [], + "freezers": [], + "hayride'ses": [], + "bicycles's": [], + "reprehend": ["D", "G", "S"], + "foreseen": ["U"], + "chunkier": [], + "perverseness": ["M"], + "callouses": [], + "ushered": [], + "polyandrous": [], + "organs": [], + "activationing": [], + "polarization": ["C", "M"], + "formulating": [], + "exhilaration's": [], + "Iraq": ["M"], + "wipers": [], + "abutting": [], + "guvs": [], + "Jung's": [], + "ceramicists": [], + "tomtit'ses": [], + "crufty": [], + "pottery": ["S", "M"], + "Appomattox": ["M"], + "weakeneder": [], + "amontillados's": [], + "expensive": ["I", "Y", "P"], + "stigmatizinged": [], + "flatworm's": [], + "psyching": [], + "expedite": ["D", "R", "S", "Z", "G", "N", "X"], + "hoppers": [], + "surging": [], + "upbringing": ["M", "S"], + "toying's": [], + "plebes": [], + "Utrillo": ["M"], + "Maine'sers": [], + "tenons's": [], + "superwoman": ["M"], + "slush's": [], + "Sq": [], + "coateding": [], + "spiciness": ["M"], + "huskiness's": [], + "enervated": [], + "Augean's": [], + "cerebellums": [], + "punctuated": [], + "zenith's": [], + "plugins": [], + "muscular": ["Y"], + "gnashing": [], + "Lateran's": [], + "Czechs": [], + "Pratchett": ["M"], + "overage's": [], + "pique": ["M", "G", "D", "S"], + "Aurelia": ["M"], + "skater": ["M"], + "aweigh": [], + "idly": [], + "macroeconomics": ["M"], + "enormous": ["P", "Y"], + "filer's": [], + "cedar'ses": [], + "tumid": [], + "Handy's": [], + "Mountbatten's": [], + "blahs": ["M"], + "Bamako": ["M"], + "cursing": [], + "recklessliness": [], + "yardmaster'ses": [], + "aromatically": [], + "heartbroken": [], + "Winthrop's": [], + "taunting's": [], + "northernmost": [], + "metalworkerers": [], + "fender's": [], + "BLTs": [], + "coronaries's": [], + "titivate": ["D", "S", "G", "N"], + "mightn't": [], + "portion'sed": [], + "turnpike's": [], + "acclimatization's": [], + "pest's": [], + "publicizinged": [], + "glimmeringings": [], + "scratchiest": [], + "schizos": [], + "embarrassed": ["U"], + "cashier'sed": [], + "roan's": [], + "poorly": [], + "theatrically": [], + "swordsmanship": ["M"], + "fella": ["S"], + "pain's": [], + "vulvae": [], + "charioteer's": [], + "Ljubljana's": [], + "ambuscadeds": [], + "hoarsest": [], + "Frigga's": [], + "windburn'sed": [], + "orients": [], + "subcategories": [], + "circumvention's": [], + "yodeler": ["M"], + "duckbill's": [], + "amaryllis's": [], + "seesawing": [], + "identifieder": [], + "sublimity's": [], + "tenseness": ["M"], + "Fresnel's": [], + "canniest": [], + "homeostasis's": [], + "demijohn's": [], + "chukka": ["M", "S"], + "Robles's": [], + "modernizersing": [], + "suppressing": [], + "Chibcha's": [], + "crybabies's": [], + "nerds": [], + "chancing": [], + "ammonia": ["M"], + "northerly": ["S", "M"], + "militarizesing": [], + "mollusks": [], + "shenanigan's": [], + "egret's": [], + "licensee'ses": [], + "blood": ["G", "M", "D", "S"], + "watermarkeding": [], + "skullcap": ["M", "S"], + "vagueness's": [], + "oxcarts": [], + "diplomacy": ["M"], + "Mediterranean'ses": [], + "mayflies": [], + "stents's": [], + "flatfish": ["M", "S"], + "Disney's": [], + "territories's": [], + "Mobutu": ["M"], + "twitcheds": [], + "Cronkite's": [], + "fistfuls": [], + "oligonucleotides": [], + "monograph's": [], + "Samsung's": [], + "institute'sers": [], + "Dorset's": [], + "shrikes": [], + "stern": ["S", "M", "R", "Y", "P", "T"], + "In": ["M"], + "undernourished": [], + "motor": ["S", "G", "M", "D"], + "cannabis's": [], + "loll": ["D", "S", "G"], + "triggers": [], + "thundershowers": [], + "appriseds": [], + "betraying": [], + "quadriplegics's": [], + "windbreaker's": [], + "energizersing": [], + "quay'ses": [], + "incineration's": [], + "Crockett": ["M"], + "Nestorius's": [], + "nipper": ["M", "S"], + "suppressed": [], + "Harpies's": [], + "madrassas": [], + "swarm'sed": [], + "effusiveness": ["M"], + "substantiates": [], + "straighteners": [], + "caroms": [], + "looseds": [], + "horoscope's": [], + "commissioners's": [], + "referrals's": [], + "subclass": [], + "tantalized": [], + "bandoleer": ["S", "M"], + "Quaoar": ["M"], + "blackamoors": [], + "casehardens": [], + "travelogue's": [], + "dodges": [], + "brassiest": [], + "tackle's": [], + "cleaned": [], + "Ludwig's": [], + "allotment's": [], + "definer": ["M", "S"], + "syringe's": [], + "kilohertz": ["M"], + "triples": [], + "castigator's": [], + "bunging": [], + "starkerly": [], + "supermen": [], + "Yggdrasil": ["M"], + "uninteresting": [], + "sodomites": [], + "Osborn": ["M"], + "snippier": [], + "millionaires": [], + "patcheds": [], + "duct": ["C", "K", "I", "F", "S"], + "Bray": ["M"], + "Scientology's": [], + "lumberyard": ["S", "M"], + "bequeatheding": [], + "hostility": ["S", "M"], + "escargot'ses": [], + "Murmansk's": [], + "slyly": [], + "fathering": [], + "interacts": [], + "hollies's": [], + "MT": ["M"], + "swami's": [], + "Nellie's": [], + "netbook": ["M", "S"], + "gnaws": [], + "Argentinian's": [], + "casket's": [], + "mashing": [], + "fiendishly": [], + "ampules": [], + "pigpen'ses": [], + "Poppins": ["M"], + "crocheting": ["M"], + "predecessors's": [], + "earthworm": ["M", "S"], + "euclidean": [], + "diabolically": [], + "incriminate": ["G", "N", "D", "S"], + "reinsurance": [], + "Freud's": [], + "lucky": ["U", "P", "T", "R"], + "collarbones": [], + "hooliganism's": [], + "Hammett": ["M"], + "outplace": ["L"], + "potently": [], + "mistrial": ["M", "S"], + "intrusion": ["S", "M"], + "roughed": [], + "captain'sed": [], + "invade": ["D", "R", "S", "Z", "G"], + "chaparrals's": [], + "luridnessly": [], + "overspecializeds": [], + "kanji": [], + "weers": [], + "mote's": [], + "decline's": [], + "renunciation's": [], + "Midwestern'ser": [], + "Taoist's": [], + "fanatic's": [], + "Meany's": [], + "inflicts": [], + "squishing's": [], + "Delacroix": ["M"], + "waxworks's": [], + "underbid": ["S"], + "Dulles's": [], + "abstractedness": ["M"], + "nightclubs": [], + "dowels's": [], + "pigpen": ["M", "S"], + "berth's": [], + "YWCA's": [], + "retrieval's": [], + "admiring": ["Y"], + "strep": ["M"], + "schmuck": ["M", "S"], + "upholding": [], + "alchemist": ["S", "M"], + "snowsuit": ["S", "M"], + "revolutionize": ["D", "S", "G"], + "jackhammer's": [], + "Latham's": [], + "plagiarisms's": [], + "squireds": [], + "beginner's": [], + "consolidations": [], + "lonesome": ["Y", "P"], + "JV": [], + "runaround": ["S", "M"], + "Khufu": ["M"], + "refuges's": [], + "dastard'sly": [], + "derangement": ["M"], + "channelings": [], + "findings": ["M"], + "debugged": [], + "complainer's": [], + "daddy's": [], + "neurosis's": [], + "forbidden": [], + "severance's": [], + "meteoric": [], + "culvert's": [], + "slaying": ["M"], + "factory": ["S", "M"], + "connived": [], + "involvement's": [], + "fries": [], + "greeter": ["M"], + "enthusiasms": [], + "Belgians's": [], + "renegadeds": [], + "scapula": ["M"], + "calla's": [], + "starlings's": [], + "ribbers's": [], + "bureaucracies's": [], + "cruse's": [], + "adverbial": ["S", "M", "Y"], + "monocleds": [], + "datelineds": [], + "musicale'ses": [], + "burnout": ["M", "S"], + "slithered": [], + "papering": [], + "scrapersing": [], + "mediocre": [], + "wreak": ["S", "G", "D"], + "switchers": [], + "Van": ["M"], + "reconserve": [], + "patricide": ["S", "M"], + "malapropism's": [], + "doomeding": [], + "thumbtacks": [], + "commensurately": [], + "fingerling": ["S", "M"], + "covens": [], + "tightens": [], + "huckster'sed": [], + "infielder": [], + "occidental": ["S", "M"], + "smokeder": [], + "understudieds": [], + "photoing": [], + "improvisations's": [], + "hobnobs": [], + "cecum": ["M"], + "Sevres's": [], + "brewpub's": [], + "jubilees's": [], + "carry's": [], + "readout": ["S", "M"], + "snappers": [], + "trucker": ["M"], + "thingummy": ["S"], + "dappleds": [], + "wagers": [], + "externalizesing": [], + "misquotation'ses": [], + "pl": [], + "volunteers": [], + "obsolesce": ["D", "S", "G"], + "borders": [], + "Dickensian": [], + "seductions": [], + "watermarking": [], + "eyelid's": [], + "predominate": ["Y", "G", "D", "S"], + "entered": [], + "analogized": [], + "muddiest": [], + "totems": [], + "Wyoming's": [], + "limitings": [], + "Alaska's": [], + "adorn": ["L", "G", "D", "S"], + "trickling": [], + "clumpy": ["T", "R"], + "seine's": [], + "Shelley's": [], + "insouciance": ["M"], + "ladybirds's": [], + "discretelication": [], + "marvelous": ["Y"], + "cleaner's": [], + "levelheadedness": ["M"], + "keepsakes": [], + "Ben's": [], + "celebrated": [], + "ladylove'ses": [], + "bisexuality's": [], + "Apollo": ["S", "M"], + "desiccators's": [], + "weekend'sed": [], + "PJ's": [], + "revivalist's": [], + "gourd": ["S", "M"], + "splitting": ["M", "S"], + "tollgate": ["S", "M"], + "applet": ["M", "S"], + "innovatesing": [], + "gadded": [], + "takeover": ["S", "M"], + "quesadilla": ["M", "S"], + "legitimacy": ["M"], + "asbestos": ["M"], + "Sylvie": ["M"], + "SSS": [], + "picture": ["M", "G", "D", "S"], + "boogieman's": [], + "neurasthenic'ses": [], + "Lollobrigida": ["M"], + "callousing": [], + "outermost": [], + "Jeri's": [], + "every": [], + "cleanly": ["U", "T", "P", "R"], + "Iranians's": [], + "diminishing": [], + "marshland's": [], + "satellited": [], + "firepower": ["M"], + "bulletin's": [], + "flour'sed": [], + "canyonings": [], + "kvetches": [], + "corrugation's": [], + "charmeder": [], + "Ypres's": [], + "expressiveness": ["M"], + "impetus'ses": [], + "whereby": [], + "Trident": ["M"], + "founds": [], + "manics": [], + "Dir": [], + "provisionally": [], + "creeper": ["M"], + "boggles": [], + "Alderamin": ["M"], + "piss's": [], + "symbolism": ["M"], + "gestation's": [], + "differ": ["D", "G"], + "acetate's": [], + "Gross's": [], + "AL": [], + "enumerate": ["D", "S", "G", "N", "X"], + "supply'sens": [], + "nonrigid": [], + "overriding": [], + "skilled": ["U"], + "plenaries's": [], + "tutor": ["S", "M", "D", "G"], + "cosponsors": [], + "stretcher's": [], + "genning": [], + "rector": ["S", "M"], + "caffeine": ["M"], + "defoliator": ["M", "S"], + "gentile's": [], + "belletrists": [], + "Enoch's": [], + "spasm's": [], + "molecules's": [], + "millinery": ["M"], + "diked": [], + "jamborees": [], + "nontenured": [], + "consciously": [], + "fool": ["M", "D", "G", "S"], + "Taiwanese's": [], + "poetaster'ses": [], + "crown'sed": [], + "sniffle'sing": [], + "operation's": [], + "Bond": ["M"], + "hobnail'sed": [], + "nappiest": [], + "transformersing": [], + "uniformed": [], + "equalizers": [], + "mortifyinged": [], + "Tennesseans's": [], + "Provencals": [], + "weatherizes": [], + "calculatingly": [], + "glitter'sed": [], + "plodder'ses": [], + "passivity": ["M"], + "preconceiveds": [], + "Sourceforge": ["M"], + "provocatively": [], + "neonates": [], + "eighths": [], + "ventured": [], + "footprints": [], + "Alberta's": [], + "assignation'ses": [], + "toffs": [], + "liberals": [], + "free": ["Y", "T", "D", "R", "S"], + "calumniate": ["G", "N", "D", "S"], + "tandem": ["S", "M"], + "opportunistic": [], + "gyps": [], + "defectors": [], + "tireder": [], + "hookah": ["M"], + "mummy's": [], + "cunt'ses": [], + "Kongo's": [], + "gamier": [], + "fuchsia'ses": [], + "lymphomas's": [], + "div": [], + "raping's": [], + "acreage's": [], + "Pankhurst's": [], + "forester's": [], + "emissaries": [], + "claimers's": [], + "moisterly": [], + "gay's": [], + "artichoke's": [], + "defalcation's": [], + "shrike'ses": [], + "Kafka": ["M"], + "counselings": [], + "kneaded": [], + "hug": ["S", "T", "M", "R"], + "acquaintances's": [], + "Baathist": ["M"], + "slackensers": [], + "loaner": ["M"], + "vibratory": [], + "crackerjacks": [], + "oar'sed": [], + "Novgorod": ["M"], + "encroachments's": [], + "Medan": ["M"], + "Leona's": [], + "nondeductible": ["M"], + "janglersing": [], + "adverse": ["P", "R", "Y", "T"], + "Pitcairn": ["M"], + "Fatimid": ["M"], + "buzzkills": [], + "Milquetoast": ["M"], + "circumscribed": [], + "brands": [], + "ambulance's": [], + "principalities's": [], + "torchlight": ["M"], + "gaucheness's": [], + "Oshawa": ["M"], + "import's": [], + "gasworks": ["M"], + "ambulation": ["M"], + "sagged": [], + "gulp": ["M", "D", "R", "S", "Z", "G"], + "wordeds": [], + "legmen": [], + "Liechtensteiners": [], + "cornered": [], + "holding's": [], + "Chihuahua": ["M", "S"], + "prioresses": [], + "inciter": ["M", "S"], + "Bulawayo": ["M"], + "Torvalds": ["M"], + "Livia's": [], + "luxuriantly": [], + "trumps": [], + "escarole": ["M", "S"], + "insulator's": [], + "Tb's": [], + "gorp's": [], + "universalizing": [], + "canter": ["C", "M"], + "swamis's": [], + "earthier": [], + "headwaters": ["M"], + "whelks's": [], + "homosexuality's": [], + "solemnifieds": [], + "nestle": ["G", "J", "D", "S"], + "denounceds": [], + "leapfrogs": [], + "implantsing": [], + "Ivy's": [], + "rotatory": [], + "belied": [], + "pins's": [], + "Murmansk": ["M"], + "Tibetan": ["M", "S"], + "hick": ["M", "S"], + "auxin's": [], + "scuffed": [], + "Bahia's": [], + "Nereid's": [], + "breastfed": [], + "Sumerians's": [], + "John": ["S", "M"], + "togas": [], + "headhuntsers": [], + "Sikh": ["M"], + "Ivanhoe's": [], + "palimony's": [], + "turkey": ["S", "M"], + "Praxiteles's": [], + "kill's": [], + "braveness's": [], + "hits's": [], + "Warner": ["M"], + "sanitation's": [], + "contractual": ["Y"], + "commandeered": [], + "encyclicals": [], + "newspaperwoman": ["M"], + "hypothesizesing": [], + "firer": ["M"], + "Icelander": ["M"], + "Wooten's": [], + "Mindanao's": [], + "jugging": [], + "unbosom": ["D", "G"], + "winces": [], + "Hershel": ["M"], + "cheapest": [], + "patina's": [], + "congestion": ["M"], + "ineradicable": [], + "housewife's": [], + "plies's": [], + "pewits": [], + "acquirable": [], + "impugns": [], + "tonalities": [], + "producer's": [], + "Ana": ["M"], + "catechism's": [], + "bookends": [], + "splendid": ["R", "Y", "T"], + "Moran's": [], + "abashed": ["U", "Y"], + "wastes's": [], + "gussy": ["D", "S", "G"], + "fib": ["Z", "S", "M", "R"], + "slimnesses": [], + "attestation's": [], + "safariing's": [], + "Bobby": ["M"], + "powwow": ["S", "G", "M", "D"], + "accursed": ["P"], + "catechizing": [], + "prion": ["S"], + "forensically": [], + "Elam's": [], + "globalist'ses": [], + "guru": ["M", "S"], + "Quirinal": ["M"], + "instancing": [], + "roadside's": [], + "Trinidadian's": [], + "Bridgeport's": [], + "tablespoons's": [], + "shags": [], + "liaison": ["M", "S"], + "Monmouth": ["M"], + "outward": ["Y", "S"], + "quoted": [], + "surcease": ["D", "S", "M", "G"], + "coterminous": [], + "Argonaut's": [], + "fulminating": [], + "dhoti's": [], + "heckleder": [], + "isobar's": [], + "pratfalls's": [], + "rehanging": [], + "laryngeal": [], + "ticket'sed": [], + "churlishly": [], + "forget": ["S"], + "presets": [], + "brigand's": [], + "insinuating": [], + "showtime": [], + "preschool": ["S", "Z", "M", "R"], + "Karroo": ["M"], + "Goldsmith's": [], + "confederate's": [], + "Sylvia's": [], + "manikins's": [], + "mispronunciation": ["S", "M"], + "demurrers": [], + "exhibition": ["M", "S"], + "caw": ["S", "M", "D", "G"], + "everglade's": [], + "Cretaceous": ["M"], + "whingersing": [], + "Heidi's": [], + "ripener": [], + "Greenpeace": ["M"], + "Cerberus": ["M"], + "aided": ["U"], + "actualizing": [], + "uncultivated": [], + "humidifyinged": [], + "hale": ["I", "T", "G", "D", "R", "S"], + "tights": ["M"], + "luminosity's": [], + "sultana's": [], + "immature": ["Y"], + "tanager'ses": [], + "persistsing": [], + "wireds": [], + "Pollux's": [], + "handsaws's": [], + "dirtying": [], + "subteen": ["S", "M"], + "downstage": [], + "shipwright's": [], + "coverlet's": [], + "Tonya": ["M"], + "McKay": ["M"], + "effete": ["Y", "P"], + "altar's": [], + "nuptial'ses": [], + "outnumbering": [], + "fazing": [], + "hippest": [], + "Pythias's": [], + "forth": [], + "heinously": [], + "evacuation": ["M"], + "Harrell": ["M"], + "slightness's": [], + "softwoods's": [], + "batch'sed": [], + "whiteneder": [], + "pint's": [], + "involves": [], + "riv": ["Z", "N", "R"], + "Nicola": ["S", "M"], + "plea's": [], + "petting's": [], + "clotheshorse'ses": [], + "Melendez's": [], + "supernumerary's": [], + "benedictions": [], + "impulsing": [], + "precises": [], + "landscapes": [], + "MB": ["M"], + "attachinged": [], + "eking": [], + "rapaciousness's": [], + "annoyances": [], + "overachieving": [], + "Atari": ["M"], + "testeding": [], + "cadre's": [], + "Ecuadorian's": [], + "Xi'an": ["M"], + "priciest": [], + "Realtor's": [], + "honorers": [], + "walloweds": [], + "sunhat": ["S"], + "withhold": ["S", "G"], + "cordoned": [], + "rake": ["M", "G", "D", "S"], + "commemorator": ["M", "S"], + "controller": ["M", "S"], + "countenanceds": [], + "prosecuting": [], + "seducing": [], + "overloaded": [], + "monkeyings": [], + "auricles": [], + "verify": ["D", "S", "N", "G"], + "courtesies": [], + "jean'ses": [], + "rejecting": [], + "expressionist": ["S", "M"], + "dike'sing": [], + "humidification": ["M"], + "wakefulness's": [], + "cunnilingus's": [], + "exploitingable": [], + "offensiveness's": [], + "bellowings": [], + "uppercuts": [], + "forehand's": [], + "porpoises": [], + "spirals": [], + "whiteners": [], + "outguesses": [], + "rosins": [], + "blundering": [], + "achoo": ["M"], + "polyurethane'ses": [], + "philanderers": [], + "reclinesers": [], + "interposition's": [], + "ferryboats": [], + "seafarers": [], + "librettist": ["M", "S"], + "sexologists": [], + "Nb's": [], + "discouragements": [], + "oddments's": [], + "cursive's": [], + "Bridget": ["M"], + "Seleucid": ["M"], + "sulfursing": [], + "dangers": [], + "pothooks": [], + "Rivers's": [], + "mesmerize": ["Z", "G", "D", "R", "S"], + "stratifying": [], + "Flaubert": ["M"], + "watercourse": ["S", "M"], + "headstand": ["S", "M"], + "excavating": [], + "tablespoons": [], + "entombment": ["M"], + "radically": [], + "rostrum's": [], + "droller": [], + "committed": ["A", "U"], + "logoff": ["S", "M"], + "Edward": ["S", "M"], + "tangent's": [], + "anthology's": [], + "fart's": [], + "undersexed": [], + "vindictivenessly": [], + "traveled": ["U"], + "housemaid": ["S", "M"], + "airmail'sed": [], + "follows": [], + "merrierness": [], + "theatrical": ["Y", "S"], + "redoing": [], + "unexceptionable": [], + "gauze's": [], + "artist's": [], + "servant'ses": [], + "Anglicization": [], + "mooning": [], + "Donn'ser": [], + "exclusion": ["M", "S"], + "perfecta's": [], + "reinforcinged": [], + "elopes": [], + "proprietresses": [], + "sorers": [], + "octavo's": [], + "idolized": [], + "XEmacs": ["M"], + "slayed": [], + "overcoming": [], + "operatesing": [], + "scholarships": [], + "suffragan's": [], + "Harvard": ["M"], + "nefariousness": ["M"], + "spinal": ["S", "M", "Y"], + "Wesson's": [], + "breadbox's": [], + "shan't": [], + "Delawareans's": [], + "causally": [], + "playground's": [], + "jazzesing": [], + "bumpeder": [], + "baritone'ses": [], + "eave": ["M", "S"], + "Pierrot's": [], + "hoarding": ["M"], + "gravitates": [], + "obviation": ["M"], + "snarky": ["T", "R"], + "poetry's": [], + "congregant'ses": [], + "flagrance": ["M"], + "social": ["S", "M", "Y"], + "sawbucks": [], + "Nahum's": [], + "cheerleaders's": [], + "Chopra": ["M"], + "variations": [], + "proceedings": [], + "ultramarine": ["M"], + "Webern": ["M"], + "hindrances's": [], + "berm": ["S", "M"], + "janitors's": [], + "embouchure": ["M"], + "obfuscating": [], + "Dangerfield's": [], + "baler": ["M"], + "paellas": [], + "emails's": [], + "antidote's": [], + "unripe": ["T", "R"], + "negating": [], + "Lepke": ["M"], + "hurling's": [], + "vinegary": [], + "rethink": ["S", "G", "M"], + "concisenessly": [], + "Wilde'ser": [], + "sentenceds": [], + "sordidnessly": [], + "accompaniment": ["M", "S"], + "continues": [], + "acknowledgments's": [], + "harvest'sed": [], + "hoedown": ["S", "M"], + "impregnably": [], + "nil's": [], + "Nader": ["M"], + "puffers": [], + "sensual": ["Y"], + "strippers": [], + "volleyball's": [], + "polemicist's": [], + "furies's": [], + "adieu's": [], + "Virgo": ["S", "M"], + "appointinged": [], + "syringes": [], + "candidliness": [], + "Erises": [], + "brackishness": ["M"], + "weirdest": [], + "lollipops": [], + "justificationsing": [], + "bagful's": [], + "measurably": [], + "catastrophic": [], + "snickerers": [], + "resentfully": [], + "deceit's": [], + "waxwings's": [], + "foot'sed": [], + "curtaining": [], + "strictest": [], + "platitudinous": [], + "maneds": [], + "milkiness's": [], + "postmodernist'ses": [], + "hatching": ["M"], + "Chippewa's": [], + "wounded": [], + "ripped": [], + "humidor's": [], + "contaminators": [], + "falcon's": [], + "lamming": [], + "ensuring": [], + "Yoknapatawpha's": [], + "sync'sed": [], + "hennaing": [], + "observer's": [], + "auntie's": [], + "countersigns's": [], + "gambling's": [], + "gargles's": [], + "hibachi": ["M", "S"], + "bucks": [], + "stridings": [], + "grocer's": [], + "Vt": [], + "carp": ["S", "Z", "G", "M", "D", "R"], + "brevets": [], + "irreparable": [], + "hydroplaneds": [], + "sandpiper": ["M", "S"], + "Levis's": [], + "clavichord's": [], + "Roseau": ["M"], + "accrual'ses": [], + "maniacs": [], + "Tweedledum": ["M"], + "expressionists's": [], + "gladsome": [], + "exhaust's": [], + "misspell": ["G", "D", "J", "S"], + "Demeter's": [], + "satisfieds": [], + "servomotor'ses": [], + "tripods": [], + "plenty's": [], + "quaff'sed": [], + "wailings": [], + "Fiji": ["M"], + "Kusch's": [], + "Croatian's": [], + "favoreding": [], + "reconsent": [], + "arborvitae's": [], + "plummet's": [], + "drum'ses": [], + "swarmings": [], + "slaver'sed": [], + "corals's": [], + "suspected": ["U"], + "Tito's": [], + "molder": ["G", "M", "D"], + "mailersing": [], + "petulant": ["Y"], + "Allie'ses": [], + "chauvinist's": [], + "faddiness": [], + "cats": [], + "Barth'ses": [], + "wellheads's": [], + "gamester's": [], + "overabundance's": [], + "blooming's": [], + "tubbier": [], + "lymphatic's": [], + "alphabetical": ["Y"], + "heretofore": [], + "hydrogenates": [], + "dens": [], + "phoniest": [], + "hoagie's": [], + "beckon": ["S", "G", "D"], + "Mb's": [], + "foils": [], + "tenements": [], + "grandiloquent": [], + "mammalian's": [], + "jogging": ["M"], + "hemstitch": ["M", "D", "S", "G"], + "lynch": ["J", "Z", "G", "D", "R", "S"], + "experiments": [], + "gravimeter": ["M", "S"], + "puncher": ["M"], + "embrasure": ["M", "S"], + "quiets": [], + "bloodies": [], + "gainers's": [], + "commotions's": [], + "shirked": [], + "beaus": [], + "receiveder": [], + "sluttish": [], + "scarfsing": [], + "winded": [], + "Emacs's": [], + "brazenedly": [], + "dismember": ["L", "G", "D"], + "mite's": [], + "actinium's": [], + "hex'sed": [], + "witheder": [], + "overtime's": [], + "truther": ["M"], + "exuding": [], + "demons": [], + "shoptalk's": [], + "schismatics": [], + "indisposition": [], + "dandies": [], + "tempestuousliness": [], + "hostilities": ["M"], + "cardinal'sly": [], + "pupateds": [], + "L'Oreal's": [], + "rouged": [], + "frontally": [], + "wildebeest": ["M", "S"], + "pond's": [], + "Vivienne's": [], + "pausing": [], + "Wolfgang": ["M"], + "warhorses's": [], + "flatterer": ["M"], + "expedients": [], + "COLA": [], + "strep's": [], + "Pareto's": [], + "spinelessly": [], + "pianissimo's": [], + "daggers": [], + "overshoots": [], + "vets": [], + "perch'sed": [], + "McKnight": ["M"], + "bolted": [], + "Morgans": [], + "fanboys": [], + "docility's": [], + "wing's": [], + "mute": ["M", "Y", "T", "G", "D", "R", "S", "P", "B"], + "predicate's": [], + "cookout's": [], + "humanitarian": ["M", "S"], + "wetters": [], + "irreversible": [], + "Hindenburg": ["M"], + "culinary": [], + "hazel's": [], + "synopsis's": [], + "reconfirmation": [], + "soundproofing": ["M"], + "underestimates's": [], + "imperatives's": [], + "ferric": [], + "befallen": [], + "tsarists": [], + "anions": [], + "flouterers": [], + "magnet'ses": [], + "illegally": [], + "mend": ["M", "D", "R", "S", "Z", "G"], + "Mooney's": [], + "flamers": [], + "backhandeder": [], + "fetcher's": [], + "federalist'ses": [], + "wear'ser": [], + "sin's": [], + "deflating": [], + "Price": ["M"], + "Letterman": ["M"], + "colleges": [], + "respectful": ["E", "Y"], + "oftentimes": [], + "geareding": [], + "spayings": [], + "handcart's": [], + "japan": ["S", "M"], + "squeakily": [], + "Clarence's": [], + "sportscast'ser": [], + "showered": [], + "hikinged": [], + "soundtracks's": [], + "chauvinism's": [], + "cassowary": ["S", "M"], + "bracero'ses": [], + "scarab's": [], + "pretrials": [], + "Swissair": ["M"], + "birdbaths": [], + "trundles": [], + "offensiveness": ["I", "M"], + "Toltec's": [], + "valencies's": [], + "coherency's": [], + "hangout": ["S", "M"], + "colorlessness's": [], + "Youngstown": ["M"], + "nacelles": [], + "tended": ["U"], + "satyr'ses": [], + "planking's": [], + "Genghis's": [], + "curriculum": ["M"], + "schizo's": [], + "unrepresented": [], + "stilt's": [], + "sanctifiesen": [], + "supermodels": [], + "actualization's": [], + "wording": ["S", "M"], + "microchip's": [], + "Blackpool's": [], + "turbidity": ["M"], + "gains": [], + "rays": [], + "canape'ses": [], + "religiousliness": [], + "pinhole's": [], + "deject": ["G", "D", "S"], + "blister": ["G", "M", "D", "S"], + "garroteder": [], + "catfish": ["M", "S"], + "something": ["S", "M"], + "locusts's": [], + "presser'ses": [], + "individualistic": [], + "electrocardiograph": ["M"], + "flexed": [], + "decennials's": [], + "reinvent": [], + "Srivijaya's": [], + "home's": [], + "liberty": ["S", "M"], + "cubicle'ses": [], + "relegation": [], + "Isaac's": [], + "paywalls": [], + "fatheadeds": [], + "constitutionally": [], + "plateauing": [], + "smoking": ["M"], + "punctiliousnessly": [], + "cookings": [], + "sawhorses's": [], + "titans": [], + "domestication's": [], + "rumors's": [], + "Stravinsky": ["M"], + "infantries's": [], + "intone": [], + "Swanson": ["M"], + "reemphasize": [], + "benumbs": [], + "lust'sed": [], + "Mesmer's": [], + "park'sed": [], + "rudder": ["S", "M"], + "mystical": ["Y"], + "messaged": [], + "magnanimity's": [], + "abilities": [], + "man": ["U", "S", "Y"], + "plebeians": [], + "ascribabled": [], + "evangelical": ["S", "M", "Y"], + "shortens": [], + "tyrannosaurs": [], + "repercussion": ["S"], + "snugness's": [], + "girlhoods's": [], + "subjectivity's": [], + "financially": [], + "idle's": [], + "explications": [], + "vault": ["S", "M", "D", "R", "Z", "G"], + "indistinct": [], + "Dachau's": [], + "expoundersing": [], + "smoothly": [], + "Currier": ["M"], + "slopped": [], + "nasalizes": [], + "betrayal's": [], + "UCLA": ["M"], + "bush'sed": [], + "adverbially": [], + "automobiling": [], + "instrumental": ["M", "Y", "S"], + "unexceptional": [], + "Illinoisan'ses": [], + "byte's": [], + "rigatoni": ["M"], + "motorbikeds": [], + "gladness's": [], + "drills": [], + "affixeds": [], + "reservoirs's": [], + "rhapsodized": [], + "height'sen": [], + "shot's": [], + "majority's": [], + "fragrantly": [], + "amerced": [], + "Muppet": ["M"], + "muddiness": ["M"], + "anesthetizations's": [], + "gesticulatesing": [], + "adaptable": [], + "pageant'ses": [], + "macrobiotics": ["M"], + "soaked": [], + "cylinder'ses": [], + "outclasseds": [], + "misconceiveds": [], + "fetishism": ["M"], + "upswing's": [], + "lurker": [], + "comaker's": [], + "Nivea": ["M"], + "massages's": [], + "encase": ["L", "D", "S", "G"], + "mystics's": [], + "Avesta's": [], + "libertine'ses": [], + "heavens": ["M"], + "jailbreaks's": [], + "goldbrick'sed": [], + "grampuses": [], + "peduncle": ["M", "S"], + "crate's": [], + "signorina": ["M", "S"], + "pacifistic": [], + "it'd": [], + "pleatings": [], + "freshwater's": [], + "rued": [], + "tremolo's": [], + "embryo": ["S", "M"], + "finalizes": [], + "Boise": ["M"], + "checkbook": ["S", "M"], + "nippiness's": [], + "scientist": ["S", "M"], + "transacted": [], + "monopolies": [], + "Tylenol's": [], + "gentians": [], + "kikes": [], + "dockyard": ["M", "S"], + "swat'ses": [], + "Hunspell's": [], + "circumcisingen": [], + "anglicisms": [], + "caulked": [], + "fireplug'ses": [], + "billow": ["G", "M", "D", "S"], + "shellac": ["M", "S"], + "periwigs's": [], + "steamersing": [], + "barracks": [], + "conflict": ["S", "G", "M", "D"], + "Erickson's": [], + "expectorants's": [], + "typicality's": [], + "fluoridatingen": [], + "Masaryk": ["M"], + "truancy's": [], + "describersing": [], + "numerate": ["X", "G", "N", "D", "S"], + "artist": ["M", "S"], + "airmailed": [], + "mots's": [], + "Gustav's": [], + "occurred": ["A"], + "loveliness": ["M"], + "snailing": [], + "adherence's": [], + "midge": ["S", "M"], + "mods": [], + "adulthood's": [], + "Ellington's": [], + "corridors": [], + "Catalonia's": [], + "dearies": [], + "anguishes": [], + "stable's": [], + "dirtieder": [], + "reflexively": [], + "advisement's": [], + "carbuncles": [], + "tortoiseshell": ["S", "M"], + "child": ["M"], + "addict'sed": [], + "worst's": [], + "mendacity": ["M"], + "thous": [], + "cheapener": [], + "flight's": [], + "bleding": [], + "satrap's": [], + "hornpipe'ses": [], + "airheads": [], + "conformity's": [], + "piglets": [], + "embellished": [], + "quivereding": [], + "quibblersing": [], + "mignonette's": [], + "knuckling": [], + "vacancies's": [], + "fondest": [], + "seetheds": [], + "persistently": [], + "backfire'sing": [], + "midget'ses": [], + "overprinted": [], + "interpenetrate": ["D", "S", "G", "N"], + "removal": ["S", "M"], + "Mitzi": ["M"], + "steadieder": [], + "unmentionable": ["M", "S"], + "inflation's": [], + "shoplifting's": [], + "rogue's": [], + "scruple'sing": [], + "nagger": ["M", "S"], + "arrest's": [], + "bandwagon's": [], + "beck's": [], + "reefed": [], + "sauce's": [], + "birded": [], + "secreted": [], + "lubeds": [], + "fumbler's": [], + "Pythagorean": ["M"], + "tobogganings": [], + "thankfully": [], + "exploiters": [], + "Medicare": ["S", "M"], + "ripoffs": [], + "committer": ["S"], + "pealsing": [], + "principal": ["S", "M", "Y"], + "headlineder": [], + "lethal": ["Y"], + "lorry's": [], + "irresponsibly": [], + "mortified": [], + "calligraphist's": [], + "fife": ["M", "Z", "R", "S"], + "pick": ["M", "D", "R", "S", "J", "Z", "G"], + "crooked": ["P", "T", "R", "Y"], + "hull": ["M", "D", "R", "S", "Z", "G"], + "hippos": [], + "yesterday'ses": [], + "riyal": ["M", "S"], + "cavils": [], + "picturing": [], + "Gypsy": ["S", "M"], + "betrayed": [], + "palatalization": ["M"], + "voucher": ["M"], + "equivocators's": [], + "rustlersing": [], + "liverwort'ses": [], + "signify": ["X", "D", "S", "N", "G"], + "animalcules": [], + "straddles's": [], + "canvas": ["M", "G", "D", "S"], + "homophobic": [], + "slithering's": [], + "shaky": ["R", "P", "T"], + "weest": [], + "doodah": [], + "shirred": [], + "goodsness": [], + "querulousliness": [], + "trooper's": [], + "conferral": ["M"], + "Baedeker's": [], + "immersing": [], + "apex'ses": [], + "margarita": ["M", "S"], + "interspersing": [], + "panoramic": [], + "warpeding": [], + "cipher": ["C", "G", "D", "S"], + "expostulated": [], + "timberline's": [], + "besot": ["S"], + "profitabling": [], + "parable": ["M", "S"], + "ambleder": [], + "sportscastings": [], + "troweling": [], + "boatswain's": [], + "consumables's": [], + "Mount": ["M"], + "inventions": [], + "sprawl's": [], + "hegiras's": [], + "Equuleus": ["M"], + "trellis'sed": [], + "scandalous": ["Y"], + "spleen": ["S", "M"], + "trundle's": [], + "Fay": ["M"], + "chimneys": [], + "wrangler's": [], + "hazelnut'ses": [], + "Ayyubid": ["M"], + "warren'ses": [], + "pancake": ["D", "S", "M", "G"], + "Ballard": ["M"], + "Herschel": ["M"], + "pappies's": [], + "materialism": ["M"], + "finesse": ["D", "S", "M", "G"], + "Estela": ["M"], + "temporizes": [], + "foulest": [], + "carport": ["S", "M"], + "backyard": ["S", "M"], + "smugness": ["M"], + "workmanship": ["M"], + "Dora": ["M"], + "stealing": [], + "burnisher": ["M"], + "hag's": [], + "mealiness": ["M"], + "whips": [], + "agitateds": [], + "interferon's": [], + "pinioning": [], + "Anglicans": [], + "bushwhacker": ["M"], + "alga's": [], + "oaring": [], + "bun": ["S", "M"], + "lunar": [], + "cosmogonist": ["S", "M"], + "easy": ["U", "R", "T", "P"], + "Quisling": ["M"], + "gums's": [], + "DOA": [], + "ramble": ["D", "R", "S", "M", "Z", "G", "J"], + "Lufthansa's": [], + "dug": [], + "mapmakers": [], + "hyena's": [], + "churlishnessly": [], + "septuagenarian'ses": [], + "charteds": [], + "wantonsness": [], + "lanyard": ["M", "S"], + "carcinoma'ses": [], + "rye's": [], + "Ottawa": ["S", "M"], + "entangled": [], + "communion's": [], + "ephedrine's": [], + "smiley": ["S", "M"], + "mount'sed": [], + "desirability's": [], + "exceptings": [], + "AB's": [], + "Silvia's": [], + "sonatina": ["S", "M"], + "Milford": ["M"], + "callings's": [], + "tender": ["S", "M", "D", "R", "Y", "T", "G", "P"], + "yellownesses": [], + "wherry": ["S", "M"], + "inshore": [], + "Thessaloniki": ["M"], + "Galilean": ["S", "M"], + "OE": [], + "soiree": ["S", "M"], + "stanches": [], + "steaming": [], + "consenting": [], + "starlings": [], + "cleanser": ["M"], + "Endymion": ["M"], + "scarped": [], + "Livingston's": [], + "standees": [], + "outrunning": [], + "stature's": [], + "Alta's": [], + "pensivenessly": [], + "marque'ses": [], + "obsessive's": [], + "goiter's": [], + "niceties's": [], + "developed": ["U"], + "Meghan's": [], + "unanswerable": [], + "Caribbean'ses": [], + "wisecracks": [], + "bilabial'ses": [], + "fractureds": [], + "tiaras's": [], + "roustabouts": [], + "lamppost": ["S", "M"], + "expiates": [], + "extracting": [], + "tattler": ["M"], + "calligraphers": [], + "timidity": ["M"], + "bubblier's": [], + "Alvin's": [], + "congratulateds": [], + "embezzlingment": [], + "sabra": ["M", "S"], + "unceremonious": [], + "percentage": ["S", "M"], + "lungfishes": [], + "bushierness": [], + "fermium's": [], + "lakefront": ["S"], + "plodding": ["S"], + "xcvii": [], + "handle": ["M", "Z", "G", "D", "R", "S"], + "fishnet": ["S", "M"], + "slanderinged": [], + "helpersing": [], + "icily": [], + "Lutheran": ["S", "M"], + "hear": ["A", "H", "G", "J", "S"], + "volleyed": [], + "heckle'sers": [], + "worthily": ["U"], + "unconstitutional": ["Y"], + "medicines": [], + "dauphin's": [], + "surmountings": [], + "perched": [], + "plaything's": [], + "downsized": [], + "basset's": [], + "Kissinger's": [], + "fusses": [], + "searing's": [], + "shushing": [], + "barbecued": [], + "makeshift's": [], + "destruction": ["M"], + "recitation": [], + "Ted": ["M"], + "ADC": [], + "beryls": [], + "ester": ["S", "M"], + "warm": ["P", "D", "R", "Y", "H", "Z", "T", "G", "S"], + "questioneder": [], + "deferral'ses": [], + "Lou's": [], + "floorwalker's": [], + "landholders's": [], + "amorphousness": ["M"], + "ibex": ["M", "S"], + "neatening": [], + "sequence's": [], + "costliest": [], + "cowardly": [], + "playwright": ["S", "M"], + "skip": ["M", "S"], + "antibodies": [], + "baseboard'ses": [], + "subtleties's": [], + "suppositions": [], + "duplication's": [], + "smelts": [], + "accumulate": ["X", "G", "N", "V", "D", "S"], + "epitomizinged": [], + "mermaid": ["S", "M"], + "glen's": [], + "educ": [], + "nested": [], + "lone": ["Y", "Z", "R"], + "terracing": [], + "leotards": [], + "Juliet's": [], + "rebuilt": [], + "outplay": ["G", "D", "S"], + "niches's": [], + "waggish": ["Y", "P"], + "gallstones": [], + "challengeder": [], + "cloister's": [], + "mistiness": ["M"], + "Norsemen": ["M"], + "yawing's": [], + "Camelopardalis": ["M"], + "oversimple": [], + "Cowper": ["M"], + "glaciateds": [], + "southpaws": [], + "fancied": [], + "scuba": ["M", "D", "S", "G"], + "enlargers": [], + "verbalize": ["G", "D", "S"], + "scorpion's": [], + "creamersing": [], + "esteems's": [], + "zany": ["R", "S", "M", "P", "T"], + "noisiest": [], + "truant'sed": [], + "emancipateds": [], + "blackball'sed": [], + "hayride": ["M", "S"], + "perceptions": [], + "negotiator": ["M", "S"], + "trilogies": [], + "overhang'ses": [], + "Zosma": ["M"], + "dictate'sing": [], + "debentures": [], + "Juanita's": [], + "banishes": [], + "Gabonese": ["M"], + "boating": ["M"], + "Casey's": [], + "Muhammadan'ses": [], + "coefficient's": [], + "superstructure'ses": [], + "reformists": [], + "roistered": [], + "hedgehopping": [], + "Agra's": [], + "patronages": [], + "dowereding": [], + "ellipse": ["M", "S"], + "queasily": [], + "deletion": ["M"], + "serenades": [], + "prettiness": ["M"], + "cabbed": [], + "quadruple": ["M", "G", "D", "S"], + "munitioning": [], + "combatant": ["S", "M"], + "snookers": [], + "myrtles": [], + "Weddell's": [], + "snubbed": [], + "funnyman's": [], + "Emerson": ["M"], + "cozensed": [], + "seconders": [], + "Wikipedia's": [], + "balms's": [], + "commercials's": [], + "achievinged": [], + "wanly": [], + "obsessive'sly": [], + "weldable": [], + "soiled": ["U"], + "nurturersing": [], + "infatuateds": [], + "hingesing": [], + "scalper's": [], + "crystal's": [], + "shorteden": [], + "outbox": ["M", "S"], + "abstracts": [], + "joggers's": [], + "ringworm": ["M"], + "defensed": [], + "afterthought": ["S", "M"], + "sodomizinged": [], + "concurrence's": [], + "gantlet'ses": [], + "aquaplane": ["M", "G", "D", "S"], + "Ellison's": [], + "notworks": [], + "hare'sing": [], + "bondwoman's": [], + "subjected": [], + "divan's": [], + "Laurel": ["M"], + "hydrolyzing": [], + "vengeance": ["M"], + "nymphomaniac": ["S", "M"], + "longhairs": [], + "grapple": ["M", "G", "D", "S"], + "shiner's": [], + "maddeneding": [], + "interlude'sing": [], + "shale's": [], + "outlay's": [], + "sand'sed": [], + "forceds": [], + "transmitter's": [], + "transects": [], + "thermoplastics's": [], + "Ohioans": [], + "trapezoidal": [], + "muscat": ["M", "S"], + "autoimmunity's": [], + "westernization's": [], + "swallow": ["G", "S", "M", "D"], + "unlikely": ["T"], + "outcrops": [], + "flake": ["D", "S", "M", "G"], + "happening's": [], + "headcase": ["S"], + "giggliest": [], + "servicewoman's": [], + "thinner": ["M", "S"], + "modification's": [], + "abasement": ["M"], + "spearhead'sed": [], + "racer's": [], + "garnishment": ["S", "M"], + "paella's": [], + "beets": [], + "Lamaism's": [], + "symbolizes": [], + "oats's": [], + "flatfeet": [], + "broadsheets's": [], + "Duffy": ["M"], + "Humphrey": ["S", "M"], + "apportioned": [], + "spectra": [], + "infanticides": [], + "smiling": ["Y"], + "sets": [], + "dawdle": ["Z", "G", "D", "R", "S"], + "pics's": [], + "complexioneds": [], + "computations's": [], + "residue's": [], + "rhymeder": [], + "rectangle'ses": [], + "Nissan": ["M"], + "Nikolai's": [], + "solstice's": [], + "precincts": [], + "thumbed": [], + "sobereder": [], + "cow": ["Z", "G", "S", "M", "D", "R"], + "blouse's": [], + "baneful": [], + "miserly": [], + "Burmese's": [], + "Yerevan": ["M"], + "guaranty": ["G", "D", "S", "M"], + "ventilator's": [], + "animals": [], + "dancer's": [], + "jockey's": [], + "emerald's": [], + "bodegas": [], + "underpass'ses": [], + "penitential": [], + "declination": ["M"], + "bespeaking": [], + "exuberant": ["Y"], + "wash's": [], + "honcho'ses": [], + "farther": [], + "rashesly": [], + "predeterminersing": [], + "bank": ["S", "Z", "G", "B", "M", "D", "R"], + "becomes": [], + "billowing's": [], + "shoelace's": [], + "airguns": [], + "stockists": [], + "gangrenes": [], + "curative": ["M", "S"], + "azimuth": ["M"], + "grindstone'ses": [], + "continentals": [], + "urological": [], + "Adam": ["S", "M"], + "carnally": [], + "derogatesing": [], + "statelessness": ["M"], + "eventful": ["U", "Y"], + "headbutted": [], + "altogether": [], + "charterer's": [], + "farmhands's": [], + "learner's": [], + "suffocationed": [], + "larvae": [], + "blithering": [], + "crossings's": [], + "Aztecan's": [], + "sevenths": [], + "bodywork's": [], + "animal's": [], + "balking": [], + "headshrinker's": [], + "Rev": [], + "defrocking": [], + "wiltsing": [], + "analogousness": ["M"], + "probables's": [], + "hurdle'sers": [], + "egoism": ["M"], + "Lear's": [], + "Schumpeter's": [], + "slangiest": [], + "sputtereding": [], + "intermingled": [], + "pontifical": ["Y"], + "calipering's": [], + "showoff": ["S", "M"], + "selection's": [], + "M's": [], + "internalization": ["M"], + "requisition'sed": [], + "council'ses": [], + "Workman": ["M"], + "Michaelmases": [], + "thereby": [], + "Quaternary's": [], + "romance's": [], + "bankrupt'sed": [], + "sax": ["M", "S"], + "shortcomings": [], + "laugh": ["B", "M", "D", "G"], + "sunken": [], + "shipment": ["A", "M"], + "Darrell's": [], + "Strickland": ["M"], + "bisection": ["M", "S"], + "male'sness": [], + "squishing": [], + "slothfulness": ["M"], + "existences": [], + "rubatos's": [], + "flimsiest": [], + "Goodall": ["M"], + "Strindberg's": [], + "coca's": [], + "Taipei": ["M"], + "tape": ["M", "S"], + "helplines": [], + "fecundationed": [], + "Epson": ["M"], + "entire": ["Y"], + "weirdies": [], + "barrow's": [], + "avalanche's": [], + "gyratingen": [], + "profaning": [], + "sweatpants's": [], + "distressed": [], + "gesticulate": ["D", "S", "G", "N", "X"], + "complacence's": [], + "drogues": [], + "ringtones": [], + "permutes": [], + "painstaking's": [], + "precludeds": [], + "Scaramouch's": [], + "soggy": ["R", "T", "P"], + "regards": ["M"], + "ISP": [], + "elasticated": [], + "cavalierly": [], + "grosser": [], + "albatross": ["M", "S"], + "buoy'sed": [], + "Rover": ["M"], + "dooms": [], + "chirpiest": [], + "repayment": [], + "prefect": ["S", "M"], + "badgerser": [], + "apples": [], + "upkeep's": [], + "pronged": [], + "VP": [], + "precipitate'sly": [], + "purifiersing": [], + "vivisecting": [], + "bleating": [], + "we": [], + "forecasting": [], + "hexeds": [], + "earmarks's": [], + "conjuration's": [], + "trues": [], + "trilogy": ["S", "M"], + "Houston's": [], + "slouchier": [], + "aye's": [], + "equatingen": [], + "bemire": ["G", "D", "S"], + "churner's": [], + "gleefulness": ["M"], + "multiculturalism's": [], + "enemies's": [], + "blamable": [], + "gunned": [], + "patronymic's": [], + "hymnbooks": [], + "anticline": ["S", "M"], + "biotech": [], + "broomstick": ["M", "S"], + "Ramadan'ses": [], + "Judd": ["M"], + "antitheses": [], + "intimatingen": [], + "RSFSR": [], + "blindlies": [], + "stampedes": [], + "surveyors's": [], + "bactericides": [], + "audacity": ["M"], + "Christendoms": [], + "Usenet'ses": [], + "abutment": ["M", "S"], + "resend": [], + "sensationalism's": [], + "surfeiting": [], + "bodkin'ses": [], + "dean's": [], + "deprecation's": [], + "inquisitive": ["Y", "P"], + "sills": [], + "anopheles": ["M"], + "Lemaitre's": [], + "posteriors": [], + "whaling's": [], + "distances's": [], + "vibratos": [], + "mechanics": ["M"], + "paneling": ["M"], + "hes": [], + "hiccup": ["G", "S", "M", "D"], + "upcountry": ["M"], + "Bryan's": [], + "hefteding": [], + "wolfing": [], + "Woolite's": [], + "sleepwalker": ["M"], + "Kathiawar": ["M"], + "lifeworks": [], + "quarterbacks": [], + "coheir's": [], + "equity's": [], + "hamburger": ["M"], + "ticklersing": [], + "stepchildren's": [], + "sense": ["M", "G", "D", "S"], + "appraisal": ["A", "M", "S"], + "candleder": [], + "disuse": [], + "acculturatesing": [], + "goatees": [], + "scolds": [], + "lung's": [], + "phony's": [], + "aligner": ["M", "S"], + "flywheels": [], + "abdication": ["M"], + "Ismail's": [], + "thru": [], + "jurors's": [], + "historiography's": [], + "cracklings's": [], + "fontanel": ["M", "S"], + "persistinged": [], + "scrabble": ["M", "Z", "G", "D", "R", "S"], + "jiving": [], + "transcribers": [], + "sambasing": [], + "trapezoids": [], + "wracks": [], + "torpor's": [], + "kinkiness": ["M"], + "Bridget's": [], + "rainmaker's": [], + "administrateds": [], + "lanker": [], + "boutiques": [], + "sacristan": ["M", "S"], + "ululates": [], + "Lou": ["M"], + "pops's": [], + "Billings": ["M"], + "poet": ["M", "S"], + "dotting": [], + "concretesness": [], + "Frankish": [], + "bobbin's": [], + "handbook'ses": [], + "engagesing": [], + "silkscreens's": [], + "forsworn": [], + "regex": ["M"], + "aesthetes": [], + "deliminator": [], + "prey's": [], + "exterminator": ["M", "S"], + "Bedouins": [], + "tribulations": [], + "appellations": [], + "crashes": [], + "beastlinesser": [], + "kissers": [], + "skateboarder's": [], + "subdue": ["D", "S", "G"], + "rheostat": ["S", "M"], + "huffily": [], + "Scot": ["S", "M"], + "shah's": [], + "Westinghouse": ["M"], + "varnish": ["G", "M", "D", "S"], + "dreamland's": [], + "bricked": [], + "toerags": [], + "microcomputer's": [], + "deincrease": [], + "commemorate": ["X", "G", "N", "V", "D", "S"], + "placebos's": [], + "curio's": [], + "deadening": [], + "demigod'ses": [], + "derebate": [], + "pinpoint'sed": [], + "promulgator": ["M", "S"], + "Nunki": ["M"], + "pensionable": [], + "critique'sing": [], + "forgathered": [], + "perforations": [], + "catcallings": [], + "rumpling": [], + "chagrins's": [], + "tricking": [], + "bequeaths": [], + "convivially": [], + "Velez's": [], + "ineligible'ses": [], + "unobserved": [], + "squash": ["G", "M", "D", "S"], + "humidifier's": [], + "Bacardi": ["M"], + "unashamed": [], + "Orion": ["M"], + "manumits": [], + "Marseilles": ["M"], + "genuflecting": [], + "intrusiveliness": [], + "Gay": ["M"], + "troublemaker'ses": [], + "simulations": [], + "aberration'ses": [], + "outfoxinged": [], + "revilers": [], + "Lanzhou's": [], + "Cornishes": [], + "Woodard's": [], + "atheists": [], + "psychobabble": ["M"], + "forests": [], + "adamantly": [], + "watcher": ["M"], + "woodcarving": ["S", "M"], + "ESPN": ["M"], + "abridgment'ses": [], + "action's": [], + "metatarsus": ["M"], + "Betsy": ["M"], + "flourish'sed": [], + "nuncios's": [], + "hags": [], + "skedaddled": [], + "blessedness": ["M"], + "brittlest": [], + "Naismith": ["M"], + "car": ["S", "M", "D", "R", "Z", "G"], + "abject": ["Y", "P"], + "subsidizinged": [], + "paperweight's": [], + "opposites's": [], + "educability's": [], + "dealersing": [], + "insist": ["S", "G", "D"], + "hatbox'ses": [], + "drillmasters": [], + "reductions's": [], + "terrain's": [], + "subdivision": ["S", "M"], + "postcolonial": [], + "vised": [], + "credibility's": [], + "frizz'sed": [], + "Baudelaire's": [], + "chapeau's": [], + "consultancies": [], + "peacekeepers": [], + "intelligible": ["U"], + "twixt": [], + "bones's": [], + "valediction's": [], + "flumes": [], + "cohering": [], + "vetted": [], + "Highness's": [], + "lewdly": [], + "dustmen": [], + "tackersing": [], + "loath": ["J", "Z", "G", "D", "R", "S"], + "monomania's": [], + "wariness": ["U", "M"], + "gladness": ["M"], + "gerontologist'ses": [], + "nucleoli": [], + "gloominess's": [], + "homogeneity": ["M"], + "cuddled": [], + "ninepin's": [], + "simplifies": [], + "irresoluteness's": [], + "faro's": [], + "barmiest": [], + "Dale": ["M"], + "Ware'sing": [], + "inconceivability": ["M"], + "ablate": ["X", "G", "N", "V", "D", "S"], + "Munster": ["M"], + "rollicking": ["M"], + "stoplight'ses": [], + "predictor'ses": [], + "disrecharge": [], + "hooksing": [], + "goblets": [], + "bureaucratic": [], + "halite": ["M"], + "labors": [], + "fissionable's": [], + "stymieing": [], + "chowder'ses": [], + "succotash": ["M"], + "retiree": ["S", "M"], + "bafflersing": [], + "soppier": [], + "nomads's": [], + "sacrilegiously": [], + "rampage": ["D", "S", "M", "G"], + "CNS's": [], + "cottonseed": ["M", "S"], + "feint'sed": [], + "moan's": [], + "quitclaim's": [], + "Millet": ["M"], + "compartment's": [], + "pate'ses": [], + "Pierrot": ["M"], + "haireds": [], + "grisliness": ["M"], + "rowing": ["M"], + "molds": [], + "unromantic": [], + "dissonant": [], + "metricize": ["G", "D", "S"], + "abortionist": ["M", "S"], + "scared": [], + "ewers": [], + "Green": ["S", "M"], + "drunk's": [], + "stonemason": ["M", "S"], + "synod": ["S", "M"], + "purveyor": ["S", "M"], + "bootlace": ["S"], + "reflation": [], + "ppr": [], + "jalapeno'ses": [], + "Fernando's": [], + "goddaughter'ses": [], + "priesthoods's": [], + "necklacings": [], + "wriggly": [], + "risked": [], + "grating'sly": [], + "oblivious": ["Y", "P"], + "world's": [], + "Algerian": ["S", "M"], + "Mullins": ["M"], + "prevaricator's": [], + "moor'sed": [], + "microgroove": ["S", "M"], + "wadeder": [], + "footpath's": [], + "lacerationens": [], + "antiphon": ["S", "M"], + "cabarets's": [], + "woofed": [], + "wears": [], + "skywriter": ["S", "M"], + "refitting": [], + "motoring's": [], + "escarole's": [], + "depletioned": [], + "sackcloth": ["M"], + "cheapness's": [], + "underdone": [], + "studios": [], + "potherbs's": [], + "banes": [], + "predawn": [], + "favor's": [], + "crematory's": [], + "Grieg's": [], + "blubber'sed": [], + "interlocks": [], + "monument": ["M", "S"], + "wasting": [], + "factotum's": [], + "Cheney's": [], + "assaultings": [], + "remotest": [], + "paginged": [], + "misidentifyinged": [], + "multiverse": ["S", "M"], + "Kelley": ["M"], + "hellholes": [], + "harangues": [], + "enlivens": [], + "accompanied": ["U"], + "acquaintances": [], + "persuaders": [], + "slapdash": [], + "keening": [], + "anaerobes's": [], + "funding": ["M"], + "transmitters's": [], + "rareness": ["M"], + "Natalie": ["M"], + "maneuverable": [], + "giggle": ["D", "R", "S", "M", "Z", "G"], + "repertoire": ["M", "S"], + "fisher": ["M"], + "dovetail": ["M", "D", "S", "G"], + "flabbergastinged": [], + "alight": ["G", "D", "S"], + "borstals": [], + "cosignersing": [], + "Grady": ["M"], + "loader'ses": [], + "Mansfield's": [], + "gorilla": ["M", "S"], + "outrageously": [], + "absentedly": [], + "bonbons": [], + "set's": [], + "acrobat'ses": [], + "copses": [], + "butties": [], + "Scientologists": [], + "Tevet": ["M"], + "contrives": [], + "Solis": ["M"], + "resubmit": [], + "nonnarcotics's": [], + "downings": [], + "deterred": ["U"], + "shimmereding": [], + "keenest": [], + "vicinity's": [], + "April's": [], + "aliveness's": [], + "pickaxeds": [], + "Harper's": [], + "classicism's": [], + "sleazily": [], + "Hokkaido": ["M"], + "carcinogen": ["S", "M"], + "impressionist": ["S", "M"], + "demanding": ["U"], + "font'ses": [], + "Rice": ["M"], + "goggles": ["M"], + "plovers's": [], + "stupefied": [], + "halftimes": [], + "censer's": [], + "inhibitings": [], + "shake'sers": [], + "miens": [], + "albuminous": [], + "sharplies": [], + "baccarat": ["M"], + "chastest": [], + "compactors": [], + "jellies's": [], + "shimmer'sed": [], + "solicitinged": [], + "Thurmond's": [], + "spotters": [], + "Turks": [], + "gust": ["E", "M", "D", "S", "G"], + "haymow": ["S", "M"], + "halts": [], + "beagles's": [], + "conveyeding": [], + "sophistication": ["M"], + "telemeters's": [], + "knotholes": [], + "ska": ["M"], + "rotunda": ["M", "S"], + "Tim's": [], + "parole's": [], + "spotlessly": [], + "Alaskan'ses": [], + "nymph's": [], + "classicist": ["M", "S"], + "direction": ["I", "M"], + "joinery": ["M"], + "enmesh": ["D", "S", "G", "L"], + "Parsifal's": [], + "polled": [], + "quickies": [], + "ufologists's": [], + "doleds": [], + "coliseum": ["M", "S"], + "rotatesing": [], + "councilman": ["M"], + "dream": ["S", "M", "D", "R", "Z", "G"], + "ragtime's": [], + "flexible": ["I"], + "Stephenson": ["M"], + "VFW's": [], + "Bloemfontein's": [], + "commendedable": [], + "orchestratingen": [], + "Dunkirk": ["M"], + "Henson": ["M"], + "drapers": [], + "letterheads": [], + "copulateds": [], + "biennially": [], + "rusk'ses": [], + "melodies's": [], + "boldfaced's": [], + "denuclearizeds": [], + "suggestiveliness": [], + "bell": ["S", "G", "M", "D"], + "barometer's": [], + "springtime": ["M"], + "infliction": ["M"], + "corporately": [], + "intimate": ["M", "Y", "G", "N", "D", "S", "X"], + "buffet": ["S", "M", "D", "G", "J"], + "epileptics's": [], + "soothsaying": ["M"], + "buttocks's": [], + "metricating": [], + "luckiest": [], + "battleship": ["S", "M"], + "umber's": [], + "earls": [], + "cpl": [], + "sipped": [], + "fleshpot": ["M", "S"], + "optional": ["Y"], + "minimalist's": [], + "jackpot'ses": [], + "conglomerations's": [], + "patient": ["I", "M", "S", "T"], + "prospects": [], + "gook's": [], + "festoon": ["G", "M", "D", "S"], + "humidors's": [], + "switchback's": [], + "rapturously": [], + "Seneca'ses": [], + "SE": ["M"], + "stepfather's": [], + "groat": ["S", "M"], + "castoff's": [], + "tempests": [], + "intermission's": [], + "coauthorings": [], + "Lipscomb": ["M"], + "wainscots": [], + "Mephisto": [], + "lurches": [], + "slaved": [], + "entombing": [], + "render'sed": [], + "dopiness's": [], + "bolus's": [], + "jemmies": [], + "divination's": [], + "part's": [], + "antelope": ["M", "S"], + "jaded": ["P", "Y"], + "triteness": ["F", "M"], + "pussyfoot": ["D", "S", "G"], + "dressed": [], + "protracted": [], + "reinforcements": [], + "humankind's": [], + "Veracruz": ["M"], + "accentuateds": [], + "stolidness": ["M"], + "stunting": [], + "bureau": ["S", "M"], + "tramways": [], + "flours's": [], + "publisher": ["M", "S"], + "Rickenbacker's": [], + "droppers's": [], + "resize": [], + "whirlybirds's": [], + "travelogues": [], + "epidemic's": [], + "flaunts": [], + "wonky": ["T", "R"], + "Chevy's": [], + "waspishness's": [], + "wardrobes's": [], + "bicentennials": [], + "polysyllable": ["M", "S"], + "Occam's": [], + "glider's": [], + "driftnets": [], + "tritium's": [], + "wetware": ["S"], + "ecumenically": [], + "yearbook'ses": [], + "emergeds": [], + "Ubuntu": ["M"], + "violincello": ["S"], + "pp": [], + "atrocities's": [], + "parka's": [], + "linksing": [], + "quickfire": [], + "Andres": ["M"], + "amendment": ["S", "M"], + "inanerly": [], + "eatables": [], + "throngs": [], + "astutest": [], + "Raffles": ["M"], + "relaxing": [], + "science'ses": [], + "forehead'ses": [], + "scope's": [], + "chalk": ["G", "M", "D", "S"], + "tang": ["M", "S"], + "oceanographers": [], + "drumlin": ["S", "M"], + "specialize": ["G", "D", "S"], + "twits": [], + "aviator's": [], + "wash": ["B", "J", "M", "D", "R", "S", "Z", "G"], + "hairpin": ["S", "M"], + "gather'sed": [], + "settee": ["M", "S"], + "vary": ["D", "S", "G"], + "prophetess": ["M", "S"], + "lattes": [], + "cardsharp's": [], + "Stoicisms": [], + "shellfire": ["M"], + "assoc": [], + "overwhelmsing": [], + "quisling": ["S", "M"], + "overstatesment": [], + "frizz": ["M", "D", "S", "Y", "G"], + "perspireds": [], + "serenity's": [], + "dispute": ["D", "R", "S", "M", "Z", "G", "B"], + "sidelines's": [], + "unrepresentative": [], + "feathering": [], + "knavery": ["M"], + "lavinged": [], + "whaleboats": [], + "Mancunian'ses": [], + "veneratesing": [], + "decency's": [], + "osteopath's": [], + "faultless": ["P", "Y"], + "exaction's": [], + "enlightened": ["U"], + "belching": [], + "insert": ["A", "G", "S", "D"], + "gazelles": [], + "glucose": ["M"], + "vociferating": [], + "elevates": [], + "grammatically": [], + "weedersing": [], + "ptomaine's": [], + "tailgates": [], + "smugger": [], + "pocks": [], + "care": ["S", "M"], + "cankereds": [], + "Josephine": ["M"], + "fleshpot's": [], + "appeasement": ["S", "M"], + "misjudges": [], + "Thackeray": ["M"], + "buglers": [], + "coquettish": ["Y"], + "checkeds": [], + "straitsens": [], + "laminating": [], + "Ptah's": [], + "micromanagement": ["M"], + "honk": ["M", "D", "R", "S", "Z", "G"], + "testily": [], + "unmoral": [], + "backwardsly": [], + "stepladder": ["M", "S"], + "housemaid's": [], + "Fido": ["M"], + "gussetsed": [], + "aerobically": [], + "warmhearted": ["P"], + "Brigham": ["M"], + "nest's": [], + "irritates": [], + "Durante's": [], + "inklings": [], + "Parr's": [], + "Tod": ["M"], + "stubbornerly": [], + "insoles's": [], + "whatshername": [], + "bluestocking": ["S", "M"], + "Phoenicia's": [], + "tatter": ["M", "D", "S", "G"], + "ruminative": ["Y"], + "perpetuated": [], + "drachma'ses": [], + "whinnying": [], + "congenital": [], + "Robertson's": [], + "enforcementers": [], + "snacked": [], + "enforcersing": [], + "crucifix'ses": [], + "Fotomat": ["M"], + "Mathews": ["M"], + "rattrap": ["S", "M"], + "goodness": ["M"], + "ungenerous": [], + "Coleridge's": [], + "choppiness's": [], + "enthralls": [], + "physiologically": [], + "pillories's": [], + "legals": [], + "multipliers": [], + "fission's": [], + "totter's": [], + "tortoise's": [], + "teacher's": [], + "nonsensical": ["Y"], + "Goodall's": [], + "incarnationed": [], + "childishly": [], + "premonitory": [], + "neurasthenic's": [], + "crackdown": ["M", "S"], + "Fitzroy's": [], + "almoner": ["S", "M"], + "aficionado": ["M", "S"], + "wife's": [], + "conductress": ["M", "S"], + "befriended": [], + "streamer": ["M"], + "catalog'sed": [], + "racecourse": ["S", "M"], + "antipathies's": [], + "Malacca's": [], + "plenitude": ["S", "M"], + "glower'sed": [], + "parrying": [], + "pretests": [], + "seconding": [], + "lineally": [], + "fusillades": [], + "dumpling": ["S", "M"], + "courtedly": [], + "protozoan's": [], + "broccoli": ["M"], + "measuring": [], + "cloudburst": ["S", "M"], + "ax": ["M", "D", "S", "G"], + "Laurie's": [], + "trifle's": [], + "ruining": [], + "beige's": [], + "breakup's": [], + "humanist's": [], + "outbursts's": [], + "growl'sed": [], + "duties": [], + "deflects": [], + "Orientalism": [], + "deism": [], + "Mexicali": ["M"], + "prepossession's": [], + "blanketing's": [], + "hoeder": [], + "livings": [], + "greetersing": [], + "altitude'ses": [], + "sailboarding's": [], + "porkiest": [], + "wholesaler": ["M"], + "zany'sness": [], + "elver": ["S", "M"], + "serape": ["S", "M"], + "pct": [], + "stigmatization": ["M"], + "optometrist": ["M", "S"], + "cracks": [], + "fertility": ["I", "M"], + "belletristic": [], + "cramming": [], + "technocracies's": [], + "climatic": [], + "emblems": [], + "dhow's": [], + "brig's": [], + "cotyledon": ["M", "S"], + "Sudanese's": [], + "speck'sed": [], + "modern": ["M", "Y", "P", "S"], + "crackup's": [], + "valor": ["M"], + "dexterity's": [], + "syllabub": ["S"], + "coaxed": [], + "outshine": ["G", "S"], + "doomsday's": [], + "stag": ["M", "D", "G", "S", "J"], + "spam's": [], + "alphabets": [], + "Pliocene": ["S", "M"], + "formulated": ["U"], + "victimizeds": [], + "curter": [], + "housebroken": [], + "tactically": [], + "marauder's": [], + "Heyerdahl": ["M"], + "Alcmena's": [], + "polonium's": [], + "misogamist": ["M", "S"], + "countenanced": [], + "carper": ["M"], + "reigneds": [], + "fundamentalist's": [], + "interrupting's": [], + "pharmacist": ["M", "S"], + "Weill": ["M"], + "synonyms": [], + "petals's": [], + "steeples": [], + "actuateds": [], + "Dejesus": ["M"], + "smidgen": ["M", "S"], + "preoccupying": [], + "domiciles": [], + "launchers": [], + "shortness": ["M"], + "newsgirls's": [], + "sister": ["A", "S", "M"], + "mime's": [], + "forays": [], + "spinally": [], + "sentries": [], + "expand": ["B", "G", "S", "D"], + "circumcised": ["U"], + "wrenches": [], + "bobs's": [], + "Elway's": [], + "drawings": [], + "arrogates": [], + "peon": ["M", "S"], + "Gaussian's": [], + "wanness": ["M"], + "feteds": [], + "buffoons": [], + "Montanans": [], + "wearings": [], + "Dina": ["M"], + "cartwheel's": [], + "teas": [], + "jeopardy": ["M"], + "fellowship'ses": [], + "horrors": [], + "shop": ["M", "S"], + "matzoh's": [], + "prolongations's": [], + "calipered": [], + "Agnes's": [], + "casino'ses": [], + "jabbers": [], + "bodyguard": ["M", "S"], + "Cerf's": [], + "cementing": [], + "guinea's": [], + "odyssey": ["M", "S"], + "uncap": ["S"], + "beetroot": ["S"], + "darkens": [], + "ambuscading": [], + "senescent": [], + "casesings": [], + "trekkers": [], + "cuttlefish": ["M", "S"], + "glasshouses": [], + "heartsick": ["P"], + "snaileding": [], + "strobe'ses": [], + "Mulligan's": [], + "forefingers": [], + "syllabifiesen": [], + "quads": [], + "airbrush'sed": [], + "downturn'ses": [], + "bothereding": [], + "begetters": [], + "pleasesing": [], + "decrescendo": [], + "bombardier": ["M", "S"], + "contorting": [], + "plot'ses": [], + "Cassiopeia's": [], + "plugins's": [], + "marital": ["Y"], + "dovish": [], + "housewarmings's": [], + "infect": ["A", "E", "S", "D", "G"], + "Tahitians": [], + "nebulousness's": [], + "baldnessed": [], + "defecationed": [], + "fem": [], + "humorously": [], + "darting's": [], + "clash": ["G", "M", "D", "S"], + "chloride": ["M", "S"], + "style": ["A", "D", "S", "G"], + "Sierras": [], + "Beowulf's": [], + "Benacerraf's": [], + "rattled": [], + "jollity": ["M"], + "bracelet": ["M", "S"], + "acclaimed": [], + "musicians": [], + "retort": ["G", "M", "D"], + "Thomas's": [], + "housetop's": [], + "fording": [], + "trawls": [], + "infrequent": ["Y"], + "leg": ["S", "M"], + "Tina's": [], + "subprime": [], + "Vancouver's": [], + "mire's": [], + "chorus'sed": [], + "wirehair'ses": [], + "amnesics": [], + "meld'sed": [], + "braisinged": [], + "Attucks": ["M"], + "pruner's": [], + "cues's": [], + "nascence's": [], + "burlesque": ["M", "G", "D", "S"], + "habiliments's": [], + "liquid": ["M", "S"], + "redefinition": [], + "sensuous": ["Y", "P"], + "choicer": [], + "labium": ["M"], + "asseverating": [], + "publicists": [], + "romped": [], + "Themistocles": ["M"], + "throttler's": [], + "elide": ["D", "S", "G"], + "ninepins's": [], + "informative": ["P", "Y"], + "argon": ["M"], + "quoin": ["S", "M"], + "crotchets": [], + "Tsiolkovsky": ["M"], + "bordello'ses": [], + "eatables's": [], + "tributes": [], + "Muriel's": [], + "racket's": [], + "detox": ["M", "D", "S", "G"], + "concludes": [], + "modeler's": [], + "atomizers": [], + "despotic": [], + "disposition's": [], + "centenarian's": [], + "musclemen": [], + "panders": [], + "speedup'ses": [], + "atomizersing": [], + "Bangladeshis's": [], + "pensions": [], + "quieterly": [], + "scalpeder": [], + "recusesing": [], + "undercharge's": [], + "Bacardi's": [], + "voiceless": ["P", "Y"], + "offstages": [], + "countenance": ["E", "G", "D", "S"], + "equivocators": [], + "carrel'ses": [], + "selloffs": [], + "cheating": [], + "nosecones": [], + "drinkerable": [], + "stupefieds": [], + "slither's": [], + "sluiceds": [], + "jingleds": [], + "confinement": ["M", "S"], + "intestinal": [], + "Arianism's": [], + "shrieks": [], + "enthrallment": ["M"], + "whiles": [], + "negatived": [], + "symbolizesing": [], + "simpering's": [], + "enmities's": [], + "edgings": [], + "workshops": [], + "plaited": [], + "lassies's": [], + "evict": ["S", "D", "G"], + "ascetic": ["M", "S"], + "Biggles's": [], + "sufficing": [], + "sculpting": [], + "blackmailersing": [], + "bogs's": [], + "progestin": ["S"], + "helpfully": [], + "princess'ses": [], + "Smuts's": [], + "showcases": [], + "paled": [], + "weatherstrip": ["S"], + "pastiest": [], + "unicorn": ["S", "M"], + "silverware": ["M"], + "catechists's": [], + "bedazzle": ["G", "D", "S", "L"], + "webbing": ["M"], + "region's": [], + "titlist's": [], + "Tuscany's": [], + "acres's": [], + "bowlings": [], + "guiders": [], + "BC's": [], + "triangulated": [], + "garfish": ["M", "S"], + "newness's": [], + "pecan's": [], + "censures": [], + "croupiers": [], + "Democrat's": [], + "misguides": [], + "Micky": ["M"], + "invalidism": ["M"], + "spell'sed": [], + "bagpipes": [], + "compatriot": ["M", "S"], + "ledens": [], + "baroque": ["M"], + "balloonists": [], + "intimidationed": [], + "hijab's": [], + "precision's": [], + "HIV": ["M"], + "Lester's": [], + "daftness's": [], + "lithographed": [], + "Scott": ["M"], + "setsquare": ["S"], + "carbuncle": ["S", "M"], + "fest's": [], + "mindedness": [], + "scoring": [], + "kibitz": ["Z", "G", "D", "R", "S"], + "undermanned": [], + "pummeling": [], + "past'ses": [], + "forges": [], + "commissaries's": [], + "philosophizer's": [], + "waled": [], + "fibrils": [], + "lacy": ["R", "T"], + "principles": [], + "gumball": ["S"], + "coupling's": [], + "titter'sed": [], + "divisive": ["P", "Y"], + "sideshows": [], + "haltings": [], + "Margie": ["M"], + "Lelia's": [], + "teasingly": [], + "sliverings": [], + "roadshows": [], + "median's": [], + "cure": ["K", "Z", "G", "B", "D", "R", "S"], + "laminateds": [], + "redbreast's": [], + "harmonizes": [], + "employ's": [], + "habituateds": [], + "transactor": ["M", "S"], + "grin'ses": [], + "brawn": ["M"], + "besieger's": [], + "kens's": [], + "guitar's": [], + "tearjerkers": [], + "Oct": ["M"], + "participatory": [], + "propositional": [], + "miniskirt's": [], + "maleficent": [], + "auscultatingen": [], + "aggregate'sing": [], + "abradinged": [], + "X": ["M"], + "gatecrasher's": [], + "wens": [], + "perfumes": [], + "supervising": [], + "wearied": ["U"], + "plasma": ["M"], + "sportscaster's": [], + "backhanders": [], + "angelfish's": [], + "supervened": [], + "hoodwinkeding": [], + "freckle's": [], + "tideway's": [], + "refashion": ["D", "G", "S"], + "fiery": ["R", "P", "T"], + "sultans": [], + "barroom": ["M", "S"], + "sizzleder": [], + "neigh's": [], + "martyrs": [], + "fender": ["C", "M"], + "charmersing": [], + "Adonises": [], + "ruffian's": [], + "martini": ["S", "M"], + "enlarged": [], + "sisal's": [], + "clasp's": [], + "sexology": ["M"], + "Jacklyn": ["M"], + "phaseds": [], + "scrabbled": [], + "Corinne's": [], + "may": ["M"], + "unreload": [], + "confinement's": [], + "fraught": [], + "ICC": [], + "preying's": [], + "mischief's": [], + "lureds": [], + "ministration": ["M", "S"], + "imprecateds": [], + "housetops's": [], + "luau'ses": [], + "electrotype's": [], + "shriekeds": [], + "glinting": [], + "drawls": [], + "nonexclusive": [], + "signaler": ["M"], + "doltishly": [], + "fellowman": ["M"], + "spouts's": [], + "rarer": [], + "stroppierness": [], + "Ctesiphon's": [], + "crawdads's": [], + "Agra": ["M"], + "establishesed": [], + "Forester": ["M"], + "constipated": [], + "assize": ["M", "S"], + "Rover's": [], + "handout's": [], + "curtails": [], + "displease": [], + "unevenness": [], + "inconstant": ["Y"], + "ampicillin": [], + "HOV": [], + "fleshing's": [], + "schoolmaster'ses": [], + "lovely's": [], + "through": [], + "travail": ["S", "G", "M", "D"], + "whitewalls": [], + "transacts": [], + "solubility": ["I", "M"], + "buskeder": [], + "shake's": [], + "Cartesian's": [], + "Hawkins's": [], + "wishbones": [], + "guesseder": [], + "hastiness": ["M"], + "prawnsing": [], + "remunerationsed": [], + "Tonto's": [], + "overrides": [], + "mingled": [], + "bouncer": ["M"], + "dimmed": ["U"], + "castlinged": [], + "sellouts": [], + "similarities": [], + "impulses": [], + "quarrel": ["S", "Z", "G", "M", "D", "R"], + "formalized": [], + "slop'sed": [], + "fasten": ["U", "A", "G", "D", "S"], + "toppling": [], + "woosers": [], + "dedicatinged": [], + "loaners": [], + "Jennings": ["M"], + "Tanzanian": ["S", "M"], + "Maoism's": [], + "crepes's": [], + "undervalueds": [], + "buyback's": [], + "clearances": [], + "roars": [], + "pup": ["S", "M"], + "spelling's": [], + "outspokenly": [], + "Terrence's": [], + "innkeeper'ses": [], + "sickroom": ["M", "S"], + "talkies": [], + "steam'sed": [], + "gooey": [], + "hecklers": [], + "pasteds": [], + "eerily": [], + "Taurus": ["M", "S"], + "encapsulation's": [], + "reddens": [], + "holdersing": [], + "Dawes": ["M"], + "vaporizer's": [], + "topdressing's": [], + "Harriett's": [], + "processing": [], + "Essex": ["M"], + "evacuee'ses": [], + "complicatinged": [], + "sandpits": [], + "selects": [], + "aquatics's": [], + "refulgence": ["M"], + "cannonballs": [], + "visage's": [], + "ransomer": ["M"], + "ungrammatical": [], + "Katy's": [], + "initialism": [], + "tourist's": [], + "fut": [], + "transcendentalist's": [], + "repudiator's": [], + "statues's": [], + "robusterly": [], + "complemented": [], + "nonpartisan's": [], + "grandnephew'ses": [], + "opaques": [], + "Hollander": ["M"], + "fuzziness's": [], + "crimes": [], + "Olen": ["M"], + "insectivore's": [], + "whoosh's": [], + "treasonous": [], + "passive": ["P", "M", "Y", "S"], + "perpetrators": [], + "Havoline": ["M"], + "Tongans": [], + "greasiness": ["M"], + "patterned": [], + "Adkins": ["M"], + "Indianapolis": ["M"], + "heuristics": ["M"], + "directness's": [], + "commercializeds": [], + "Pilcomayo": ["M"], + "Ingres": ["M"], + "conciliation": ["A", "M"], + "maharanis's": [], + "curmudgeonlies": [], + "Isfahan": ["M"], + "clapboard'sed": [], + "leisureliness": ["M"], + "headset's": [], + "Redford": ["M"], + "Hymen": ["M"], + "tamed": ["U"], + "piddly": [], + "ID's": [], + "reinvigorate": [], + "smocked": [], + "suppress": ["G", "D", "S"], + "dictionaries's": [], + "goalless": [], + "rankingsness": [], + "anachronistically": [], + "dark'sen": [], + "binoculars": [], + "panda's": [], + "newsreels": [], + "media's": [], + "lurching's": [], + "keyboards's": [], + "lawnmowers": [], + "suckering's": [], + "wellness": ["M"], + "personalities": [], + "kaddish'ses": [], + "zorch": [], + "savoriest": [], + "swampier": [], + "constructs": [], + "hemp's": [], + "psychical": ["Y"], + "enactsment": [], + "inexorably": [], + "peer's": [], + "weathercocks": [], + "briskets's": [], + "Tarawa": ["M"], + "rededicate": [], + "want'sed": [], + "lapidary's": [], + "thicklications": [], + "overexcited": [], + "mayoral": [], + "marlinespike": ["S", "M"], + "Truman's": [], + "swashbuckler": ["S", "M"], + "secretionsen": [], + "saddled": [], + "Exocet's": [], + "fringing": [], + "unanimous": ["Y"], + "capitulated": [], + "clonk": ["S", "M", "D", "G"], + "cowbirds": [], + "costume": ["M", "Z", "G", "D", "R", "S"], + "Lea": ["M"], + "reach'sed": [], + "copycats": [], + "unbidden": [], + "bonnier": [], + "novellas": [], + "bestrewsed": [], + "flowerbed": ["M", "S"], + "melodiousness": ["M"], + "porridge": ["M"], + "mower's": [], + "sachem's": [], + "Goteborg": ["M"], + "riffraff's": [], + "rumble's": [], + "copy's": [], + "Utahan": ["M", "S"], + "penology": ["M"], + "undergrounds": [], + "tortured": [], + "postman": ["M"], + "Luce's": [], + "predominateds": [], + "wrongheadedness's": [], + "Lyon's": [], + "disparate": ["Y"], + "festers": [], + "refuted": [], + "frackeding": [], + "lvi": [], + "suburbia": ["M"], + "prevailed": [], + "shouts": [], + "nee": [], + "parser": [], + "transposition's": [], + "Staples's": [], + "vindication": ["M"], + "mandolin's": [], + "Moss's": [], + "toner": ["I", "M"], + "homicide": ["M", "S"], + "achievements's": [], + "aimlessliness": [], + "Delawarean's": [], + "staph's": [], + "temperaments": [], + "sadomasochism": ["M"], + "virginals's": [], + "hyphenates": [], + "imminent": ["Y"], + "envision": ["D", "G", "S"], + "Triton's": [], + "honks": [], + "Texan": ["M", "S"], + "gratuitousness": ["M"], + "excretory": [], + "Fahd": ["M"], + "emollient": ["M", "S"], + "picador'ses": [], + "trafficking's": [], + "gangplanks": [], + "acridness's": [], + "muttered": [], + "Ara": ["M"], + "lappet": ["S", "M"], + "influx": [], + "colostomy": ["S", "M"], + "filibustering": [], + "fat'sed": [], + "pocketbooks": [], + "length's": [], + "major's": [], + "lam": ["S", "M"], + "congresswoman": ["M"], + "lovely": ["R", "S", "M", "T", "P"], + "Winkle's": [], + "abjure": ["Z", "G", "D", "R", "S"], + "tradeder": [], + "references": [], + "defineds": [], + "Scrabbles": [], + "shelvinged": [], + "smoothnessed": [], + "fund'sed": [], + "brassieres": [], + "cowpoke's": [], + "impoundings": [], + "hillbilly": ["S", "M"], + "ornerinesser": [], + "gamut": ["S", "M"], + "whip'ses": [], + "bullocks's": [], + "illustrator": ["S", "M"], + "matron's": [], + "Eisner": ["M"], + "bugles": [], + "Polyphemus's": [], + "ox's": [], + "levers": [], + "eliminatesing": [], + "cirrhosis": ["M"], + "electroscope": ["S", "M"], + "shirtwaist's": [], + "weepingses": [], + "CPU": ["M"], + "ewe's": [], + "calcification's": [], + "deducinged": [], + "bumbled": [], + "ragamuffin": ["M", "S"], + "foreseer": ["M"], + "nicknameds": [], + "handcuff": ["M", "D", "G", "S"], + "porringer's": [], + "sternness": ["M"], + "paras": [], + "roost'sed": [], + "kid": ["S", "M"], + "horehounds": [], + "REMs's": [], + "duke's": [], + "interdenominational": [], + "waterspout": ["S", "M"], + "squiffy": [], + "rerecorded": [], + "occlusions's": [], + "portraitist's": [], + "forager's": [], + "smashed": [], + "thermallies": [], + "expurgation's": [], + "topic's": [], + "threadeder": [], + "juggle'sers": [], + "fashioningable": [], + "demonstrates": [], + "carping's": [], + "bristliest": [], + "warrens": [], + "pleasurable": [], + "fessing": [], + "alters": [], + "mix's": [], + "succumb": ["G", "D", "S"], + "Felipe's": [], + "hesitant": ["Y"], + "symbol's": [], + "batik'ses": [], + "sway'sed": [], + "Maj": [], + "moroseness": ["M"], + "quiescently": [], + "misnamed": [], + "sultrierness": [], + "Eustachian": ["M"], + "glamorizeds": [], + "limbersing": [], + "juddered": [], + "suborders": [], + "acquirersing": [], + "missile": ["M", "S"], + "thriftier": [], + "rescinded": [], + "frosty": ["T", "P", "R"], + "Francine": ["M"], + "Wu": ["M"], + "aloofnessly": [], + "hammerer": ["M"], + "terminatingen": [], + "tummies": [], + "Lubavitcher's": [], + "Phipps's": [], + "outstation": ["M", "S"], + "slickerly": [], + "gully's": [], + "toreador's": [], + "Leann": ["M"], + "tensions": [], + "Maseru": ["M"], + "aardvark's": [], + "wallpaper'sed": [], + "improveds": [], + "secretion's": [], + "visionaries": [], + "dervish": ["M", "S"], + "Neva's": [], + "scowled": [], + "subliming": [], + "envenoms": [], + "poliomyelitis": ["M"], + "kvetcher's": [], + "balsa's": [], + "thermometer's": [], + "squirreling's": [], + "wheels": [], + "childproofsed": [], + "candied": [], + "beanpole": ["M", "S"], + "Te": ["M"], + "Madras's": [], + "Karo": ["M"], + "slobbered": [], + "thieveds": [], + "validationed": [], + "cathartic's": [], + "slots": [], + "laddies's": [], + "interlinksing": [], + "Rivas": ["M"], + "bed's": [], + "implosion's": [], + "loved": ["U"], + "ratiocinateds": [], + "traders": [], + "slags": [], + "Sartre's": [], + "clockeding": [], + "taunting": ["Y"], + "hotpots": [], + "farce's": [], + "forsythia's": [], + "manacleds": [], + "industriously": [], + "thriller": ["M"], + "sultan's": [], + "awardees": [], + "escapees": [], + "joggle'sing": [], + "dissembleder": [], + "enlistsment": [], + "Anglicans's": [], + "pusheder": [], + "pharmacies": [], + "gobbler's": [], + "piping's": [], + "orthogonal": [], + "pyromaniac": ["S", "M"], + "nickelodeon's": [], + "Devin": ["M"], + "paunches": [], + "infidelity": ["S"], + "dole's": [], + "outfit": ["S", "M"], + "traileder": [], + "combatants's": [], + "toes's": [], + "cablegram'ses": [], + "lion's": [], + "Iberian": ["M"], + "yuletide's": [], + "be": [], + "Frodo": ["M"], + "jadinged": [], + "lento": [], + "retinal": [], + "tangoing": [], + "glare": ["D", "S", "M", "G"], + "Sammy": ["M"], + "superintendence": ["M"], + "Pentecostalism": [], + "parleyeds": [], + "bovines": [], + "homiest": [], + "forestall": ["S", "G", "D"], + "Syria's": [], + "interlocking's": [], + "headed": [], + "empress'ses": [], + "centavo": ["S", "M"], + "position": ["C", "K", "E", "M", "S"], + "bulling": [], + "reedit": [], + "perjurers": [], + "boobies": [], + "kolas": [], + "unforgivable": [], + "backcombed": [], + "conjecture": ["M", "G", "D", "S"], + "cellphone": ["M", "S"], + "Gener": [], + "cacophonous": [], + "Imhotep": ["M"], + "immoralities's": [], + "leeway's": [], + "Bangkok's": [], + "staffing": ["M"], + "Chengdu": ["M"], + "prostrate": ["G", "N", "X", "D", "S"], + "mixesable": [], + "Bern's": [], + "flutists": [], + "weeniest": [], + "xrefs": [], + "clubs": [], + "appetizer": ["M", "S"], + "baits": [], + "divvied": [], + "Kimberley": ["M"], + "Magellanic's": [], + "openingsness": [], + "howitzers's": [], + "Hangul": ["M"], + "pontificate's": [], + "ocarinas": [], + "apiary's": [], + "Urban's": [], + "chimer": ["M"], + "heftiness's": [], + "laze": ["M", "G", "D", "S"], + "retrogressed": [], + "conventioneers": [], + "platypus's": [], + "Randall's": [], + "highbrow": ["S", "M"], + "househusband": ["S", "M"], + "Vanzetti": ["M"], + "Marci's": [], + "boohooed": [], + "settersing": [], + "muffler's": [], + "Donizetti": ["M"], + "ICBMs": [], + "Upton": ["M"], + "refutabled": [], + "Willie's": [], + "ferns": [], + "grandaunt'ses": [], + "dressed's": [], + "messiness's": [], + "BLT": ["S", "M"], + "Audrey's": [], + "pedagogue's": [], + "infuriate": ["G", "D", "S"], + "Majorca's": [], + "sneakiest": [], + "exhaustible": ["I"], + "replicatesing": [], + "salivates": [], + "excommunication": ["M"], + "Mohawks": [], + "overvalue": ["D", "S", "G"], + "horrendous": ["Y"], + "incommoded": [], + "obtrusivenessly": [], + "eagerly": [], + "seasonably": ["U"], + "kinsfolk": ["M"], + "Doris": ["M"], + "prosecution": ["M"], + "Draco's": [], + "microwave's": [], + "obscured": [], + "updaters": [], + "buskersing": [], + "Lockheed's": [], + "importance's": [], + "rash'ser": [], + "deficiency's": [], + "pecan": ["S", "M"], + "painfulnessly": [], + "supermodel": ["S", "M"], + "overtly": [], + "Donner's": [], + "preponderances's": [], + "finaglesers": [], + "casseroling": [], + "Chicana's": [], + "macerates": [], + "spoliation's": [], + "ump": ["S", "G", "M", "D"], + "cronyism": ["M"], + "analogically": [], + "insults's": [], + "cuckoldeds": [], + "pinfeathers's": [], + "perpetual's": [], + "Gomez's": [], + "Trey": ["M"], + "pooling": [], + "annexation": ["M", "S"], + "Aztecs": [], + "unfitted": [], + "Lithuanian's": [], + "gawkierness": [], + "CRTs's": [], + "Whitefield": ["M"], + "maidservants": [], + "latecomer": ["M", "S"], + "fending": [], + "quirked": [], + "mordant's": [], + "detonator": ["S", "M"], + "roe": ["S", "M"], + "minuscules": [], + "stuccoeding": [], + "bilberry": ["S"], + "birdwatchers's": [], + "metropolitan": [], + "blindfolding": [], + "schoolkid": ["S"], + "characterizeds": [], + "pardoning": [], + "throe": ["S", "M"], + "Lady's": [], + "ambulationsing": [], + "Wayne": ["M"], + "mast'sed": [], + "detoxify": ["D", "S", "G", "N"], + "operetta's": [], + "gauche": ["R", "P", "Y", "T"], + "paw": ["S", "G", "M", "D"], + "deletionsing": [], + "icons": [], + "from": [], + "Pliny": ["M"], + "hoot": ["M", "D", "R", "S", "Z", "G"], + "relaunch": [], + "midwife's": [], + "gallops's": [], + "quoit": ["S", "M", "D", "G"], + "harpoons": [], + "scrapingings": [], + "lake's": [], + "gossiped": [], + "zealot": ["M", "S"], + "everlastings": [], + "incumbency's": [], + "stepmother": ["S", "M"], + "drinks": [], + "catarrh's": [], + "goodbye": ["M", "S"], + "Wonderbra's": [], + "piss": ["Z", "G", "M", "D", "R", "S"], + "minuters": [], + "switcheder": [], + "Kyushu's": [], + "substantiationed": [], + "coefficients": [], + "stationery": ["M"], + "commendabling": [], + "fluctuated": [], + "exchequers": [], + "Shrek's": [], + "sickener": [], + "schoolfellow's": [], + "braineds": [], + "Tagalogs": [], + "rottennesser": [], + "perishable'ses": [], + "edible": ["S", "M", "P"], + "eggplant": ["M", "S"], + "camouflages": [], + "gantlet": ["M", "S"], + "thrush": ["M", "S"], + "depressants's": [], + "emends": [], + "way": ["S", "M"], + "memento'ses": [], + "wallflowers": [], + "Americas": [], + "grievinged": [], + "goddamned": [], + "Montana": ["M"], + "launching's": [], + "greenrooms": [], + "underling'ses": [], + "kickoff's": [], + "henna'sed": [], + "bullishness": ["M"], + "Himalayas's": [], + "creativeness": ["M"], + "DBMS's": [], + "Knopf": ["M"], + "medley'ses": [], + "tee": ["D", "S", "M", "H"], + "stencil'sed": [], + "intensest": [], + "pantomimic": [], + "poultice": ["D", "S", "M", "G"], + "mishits": [], + "accentuate": ["G", "N", "D", "S"], + "sunflower'ses": [], + "skoal's": [], + "apotheoses": [], + "watchfully": [], + "concubinage": ["M"], + "unrecoverable": [], + "uvula": ["S", "M"], + "typescripts": [], + "mils": [], + "extinguisher": ["M"], + "flinched": [], + "oblique": ["S", "M", "Y", "P"], + "Piraeus's": [], + "eagerest": [], + "precast": [], + "harasser's": [], + "gird": ["D", "R", "Z", "G", "S"], + "extortsing": [], + "findersing": [], + "gatekeeper'ses": [], + "flamboyance's": [], + "Bhutan": ["M"], + "daze'sing": [], + "gusty": ["R", "T"], + "endanger": ["S", "G", "D", "L"], + "frenzy's": [], + "Joplin's": [], + "domineering": ["Y"], + "squarenessed": [], + "chugged": [], + "functionalism": [], + "consummations": [], + "Stiltons": [], + "escapes": [], + "crabbers": [], + "jackknives": [], + "spangled": [], + "precociously": [], + "supermodels's": [], + "covets": [], + "torte": ["S", "M"], + "rivals": [], + "naif": ["M", "S"], + "glitter": ["M", "D", "S", "G"], + "pattern": ["S", "M", "D", "G"], + "continuous": ["E", "Y"], + "wickerwork": ["M"], + "conceivingable": [], + "slimmer": ["S"], + "marksing": [], + "yr": ["S"], + "paralyzed": [], + "daytime's": [], + "leather'ses": [], + "peppery": [], + "wastepaper": ["M"], + "refresher": ["M"], + "accuracy's": [], + "Ypsilanti's": [], + "outgunned": [], + "modifyingen": [], + "defensiveness": ["M"], + "fairway": ["S", "M"], + "chronologically": [], + "logical": ["Y"], + "superintended": [], + "incisor's": [], + "anesthetizing": [], + "pawnbroking": ["M"], + "mannerly": ["U"], + "Englishwomen's": [], + "systems": [], + "canalizinged": [], + "walkout": ["S", "M"], + "zircon": ["M", "S"], + "Julies's": [], + "radicals": [], + "leather": ["M", "S"], + "pea": ["S", "M"], + "blasphemersing": [], + "combine's": [], + "nightstick's": [], + "Wesleyan's": [], + "ancient": ["S", "P", "M", "R", "Y", "T"], + "pacemakers": [], + "hipness's": [], + "breech's": [], + "Pascal": ["S", "M"], + "linnets": [], + "excess's": [], + "proficient": ["M", "Y", "S"], + "peculators's": [], + "hempen": [], + "platens": [], + "reservedly": [], + "testatrix": ["M"], + "carom'sed": [], + "respireding": [], + "apogee's": [], + "puddle": ["D", "S", "M", "G"], + "rigmarole'ses": [], + "setup'ses": [], + "burgh's": [], + "foghorn's": [], + "adroitly": [], + "puked": [], + "curiousness's": [], + "Lynch": ["M"], + "smallholdings": [], + "phyla": [], + "conservativelies": [], + "monk'ses": [], + "crybaby's": [], + "genus's": [], + "biologic": [], + "available": ["U"], + "pecs": [], + "extruding": [], + "divisible": ["I"], + "chess's": [], + "yuccas's": [], + "hubris's": [], + "glue'sing": [], + "elixirs's": [], + "visas": [], + "multiprocessing": [], + "honchos": [], + "literser": [], + "corrector": [], + "workingwoman": ["M"], + "fossilized": [], + "Breakspear": ["M"], + "valet's": [], + "visuals": [], + "reconsecration": [], + "seesaw": ["S", "M", "D", "G"], + "thermos's": [], + "accepts": [], + "tenant": ["S", "M", "D", "G"], + "clogging": ["U"], + "potables": [], + "Schumann": ["M"], + "press's": [], + "sepulchering's": [], + "auscultate": ["G", "N", "D", "S", "X"], + "follicle'ses": [], + "Nichiren": ["M"], + "Tagore's": [], + "miniskirts": [], + "stemming": [], + "spreeds": [], + "starings": [], + "endocrinology": ["M"], + "reductase's": [], + "nightdress'ses": [], + "easiest": [], + "wait": ["M", "D", "R", "Z", "G", "S"], + "copyist'ses": [], + "erosive": [], + "survivors's": [], + "astrologers's": [], + "abler": [], + "drawers": [], + "jurisdictions's": [], + "immobilize": ["Z", "G", "D", "R", "S"], + "intro's": [], + "overdevelops": [], + "account": ["M", "D", "S", "B", "G"], + "viands's": [], + "Riemann": ["M"], + "phosphor's": [], + "blond's": [], + "bedbugs": [], + "proximate": [], + "daubed": [], + "imprecations": [], + "scrabble's": [], + "acre": ["S", "M"], + "musicologists": [], + "utilization": ["M"], + "ball'sed": [], + "shoats": [], + "coopering": [], + "KO's": [], + "geocentrically": [], + "challis's": [], + "burglarizing": [], + "pinwheels's": [], + "pierce": ["J", "G", "D", "S"], + "commissaries": [], + "glaciate": ["X", "G", "N", "D", "S"], + "comestibles's": [], + "alleviatingen": [], + "Idahoan's": [], + "boccie's": [], + "fiddle": ["D", "R", "S", "M", "Z", "G"], + "qualms": [], + "toucan": ["M", "S"], + "paroles": [], + "Friday's": [], + "molter's": [], + "Angeline's": [], + "magniloquent": [], + "sesame's": [], + "retirees": [], + "placedment": [], + "booting": [], + "novice'ses": [], + "franchise": ["E", "D", "S", "G"], + "amusement": ["M", "S"], + "essays's": [], + "apotheosis's": [], + "commandant": ["M", "S"], + "proved": ["U"], + "natures": [], + "deceased": ["M"], + "Paar": ["M"], + "cotters's": [], + "flours": [], + "illusionists": [], + "maneuver's": [], + "MA's": [], + "mocks": [], + "sconce": ["S", "M"], + "gerontologist's": [], + "catfish's": [], + "overestimates": [], + "imperialists": [], + "undervaluation's": [], + "deployments": [], + "Santeria": ["M"], + "grape's": [], + "urethra": ["M"], + "influencing": [], + "curtailsment": [], + "ex": ["M", "S"], + "rind": ["M", "S"], + "cry": ["Z", "G", "J", "D", "R", "S", "M"], + "renounced": [], + "carjacker's": [], + "hardships's": [], + "hula": ["M", "S"], + "boltsing": [], + "clencheds": [], + "rabidness's": [], + "megacycles's": [], + "heathenism's": [], + "caresseds": [], + "swellheaded": [], + "insides's": [], + "universalizes": [], + "typical": ["U", "Y"], + "nickelodeons's": [], + "fueling": [], + "qualified": ["U"], + "abraded": [], + "pretense": ["S", "X", "M", "N"], + "Byrd": ["M"], + "bazooka": ["S", "M"], + "mindless": ["Y", "P"], + "shot'ses": [], + "eighteen's": [], + "chucking's": [], + "hoeing": [], + "passives": [], + "blitz's": [], + "handclasp's": [], + "vulnerability": ["I", "M"], + "flush'sed": [], + "twitted": [], + "blurt": ["G", "D", "S"], + "overboard": [], + "counterpoints": [], + "stance's": [], + "putout": ["M", "S"], + "ascent": ["M", "S"], + "cozeneding": [], + "prehensile": [], + "trombonists": [], + "angst's": [], + "reflexive": ["S", "M", "Y"], + "socialistic": [], + "cosmetologists": [], + "craftsmanship's": [], + "spiking": [], + "fulmination's": [], + "aircraft's": [], + "mildewed": [], + "vices": [], + "insemination": ["M"], + "isl": [], + "sandblaster's": [], + "excavation": ["M"], + "plighting": [], + "RC": [], + "superimposeds": [], + "footling's": [], + "zoologist's": [], + "Hasbro's": [], + "washables's": [], + "geek": ["M", "S"], + "response'ses": [], + "connectivity's": [], + "prized": ["A"], + "asshole": ["M", "S", "!"], + "chord's": [], + "mutinieds": [], + "reverberationens": [], + "Carnegie's": [], + "ted": ["S"], + "coldnesses": [], + "snapped": ["U"], + "Bishop's": [], + "drays": [], + "naturism": [], + "beatificationed": [], + "cadginged": [], + "flail": ["S", "G", "M", "D"], + "dandling": [], + "rottweilers": [], + "buckeye's": [], + "tattletale": ["M", "S"], + "anthologize": ["D", "S", "G"], + "magics": [], + "prepossession": ["S", "M"], + "structuralists": [], + "despaired": [], + "celebrities's": [], + "habitats's": [], + "palmsing": [], + "blabbermouths": [], + "melodiousness's": [], + "loges": [], + "Ctesiphon": ["M"], + "ingratiationed": [], + "dilatation": ["M"], + "fontanel's": [], + "podiums's": [], + "admiralty": ["M"], + "anthropoid's": [], + "gloomier": [], + "suburb's": [], + "Webb": ["M"], + "purism": ["M"], + "lexicons": [], + "unconscious's": [], + "hydrogenateds": [], + "chariots": [], + "confirms": [], + "Kant": ["M"], + "voyager": ["M"], + "inaptness": [], + "ophthalmology's": [], + "close's": [], + "catalepsy's": [], + "raccoon's": [], + "teletext": ["M", "S"], + "somnolence's": [], + "staunchesly": [], + "defeatists": [], + "outpoints": [], + "Amerindian": ["M", "S"], + "discursiveness": ["M"], + "lowlanders": [], + "pinnacles": [], + "Gillette's": [], + "Scythia's": [], + "Jacques": ["M"], + "Jacobs": ["M"], + "snowier": [], + "SAP": ["M"], + "overlies": [], + "ambush's": [], + "professionalization": [], + "molars": [], + "hostsing": [], + "Gorey's": [], + "Mitchel's": [], + "declamatory": [], + "skivvies": [], + "cherish": ["D", "S", "G"], + "lifeless": ["Y", "P"], + "podcast": ["S", "M", "G"], + "rot's": [], + "RFCs": [], + "axiom's": [], + "bankbooks's": [], + "includinged": [], + "esp": [], + "incongruousnessly": [], + "auricle's": [], + "ulcerating": [], + "mule'ses": [], + "cardiogram": ["S", "M"], + "indigo": ["M"], + "feldspar": ["M"], + "blurb'ses": [], + "astonishment": ["M"], + "industry": ["S", "M"], + "watchwords": [], + "tarting": [], + "skyjackers": [], + "diskettes": [], + "ordaining": [], + "Cesar": ["M"], + "gyves": [], + "Weizmann": ["M"], + "escalloped": [], + "fizziest": [], + "deviates": [], + "Archibald": ["M"], + "symbol": ["M", "S"], + "totalizators's": [], + "Claiborne": ["M"], + "pascal's": [], + "etymologies's": [], + "denuclearizes": [], + "provender's": [], + "drawl's": [], + "cookware's": [], + "hashish": ["M"], + "Balfour's": [], + "contradictsed": [], + "click": ["B", "Z", "G", "M", "D", "R", "S"], + "unconfined": [], + "rarities's": [], + "executingen": [], + "troll's": [], + "Lumiere's": [], + "destroy": ["S", "Z", "G", "D", "R"], + "Timur": ["M"], + "dazing": [], + "botchesers": [], + "bypasseds": [], + "sediment's": [], + "reintroduce": [], + "intermarried": [], + "lonesomeliness": [], + "nisei": ["M"], + "mantelpiece's": [], + "stabilizesing": [], + "trilaterals": [], + "GP": ["M"], + "prodisposer": [], + "archer's": [], + "embassies": [], + "airstrike": ["M", "S"], + "reputedly": [], + "oleanders": [], + "1st": ["p"], + "potherb": ["S", "M"], + "Evita": ["M"], + "geldings": [], + "potpies": [], + "crannies": [], + "inclineds": [], + "keyboardist": ["S", "M"], + "oversimplification": ["M"], + "solecism": ["S", "M"], + "tither's": [], + "milksop's": [], + "aorta's": [], + "scandalize": ["D", "S", "G"], + "lithium's": [], + "prattlers": [], + "allergist": ["S", "M"], + "captives": [], + "Poznan's": [], + "success's": [], + "confrere'ses": [], + "obeisances": [], + "anchor": ["M", "D", "G", "S"], + "lye": ["M", "G"], + "comelier": [], + "Sakai's": [], + "stancher": [], + "Finch": ["M"], + "existent": [], + "monsoons": [], + "abridging": [], + "misconceptions": [], + "comics's": [], + "stars": [], + "unconstitutionality": [], + "cerulean's": [], + "Liberia's": [], + "lathes": [], + "photocopies's": [], + "anthropoid'ses": [], + "snoods's": [], + "cubs's": [], + "mentions's": [], + "invitations": [], + "flattensed": [], + "saltpeter": ["M"], + "brooks": [], + "blade's": [], + "Colosseum's": [], + "cytoplasmic": [], + "shill": ["G", "M", "D", "S", "J"], + "kitchen's": [], + "smasher's": [], + "adulterer": ["S", "M"], + "cosmogony's": [], + "scum'ses": [], + "reminiscing": [], + "EDT": [], + "iceboxes": [], + "pretenses": [], + "Kruger": ["M"], + "jungle": ["M", "S"], + "ATP": ["M"], + "Tawney": ["M"], + "contaminants's": [], + "unwaged": [], + "irenic": [], + "flunky's": [], + "architectures": [], + "bloodbath's": [], + "unacknowledged": [], + "tessellated": [], + "yam's": [], + "preconditioning": [], + "nonequivalent": ["M", "S"], + "overtax": ["G", "D", "S"], + "badness's": [], + "solemnization's": [], + "loyalism": ["M"], + "sandman": ["M"], + "skydive": ["D", "R", "S", "Z", "G"], + "cripplingly": [], + "Munchhausen's": [], + "peaking": [], + "ESPN's": [], + "poacher's": [], + "fumbles's": [], + "trusts": [], + "vocab": [], + "annelid": ["M", "S"], + "aborning": [], + "partnering": [], + "imbiber's": [], + "Webb's": [], + "reconsideration": [], + "recrudescence's": [], + "amplifiesens": [], + "hetero's": [], + "insurgences": [], + "jetport'ses": [], + "murkily": [], + "Io": ["M"], + "calibrators": [], + "boorish": ["P", "Y"], + "lambkins's": [], + "individualist'ses": [], + "Descartes": ["M"], + "undersigned": ["M"], + "dentin's": [], + "insouciant": [], + "assignation": ["M", "S"], + "horsetails's": [], + "incipience's": [], + "incumbencies": [], + "cappuccinos": [], + "banjoist's": [], + "wastefulnessly": [], + "caps's": [], + "weakener": ["M"], + "smooth": ["P", "D", "R", "Y", "T", "G"], + "refreshments's": [], + "haystacks's": [], + "carcinogens's": [], + "telecommutes": [], + "nefariousliness": [], + "beeps": [], + "survivals's": [], + "aboriginal'ses": [], + "Hicks's": [], + "tucker'sed": [], + "programmer": ["M", "S"], + "soaping": [], + "sentinel": ["M", "S"], + "Ojibwa": ["S", "M"], + "traducer's": [], + "electrocuted": [], + "Methodists": [], + "Cotswold's": [], + "nonscientific": [], + "carjackeder": [], + "Moira": ["M"], + "shrouding's": [], + "miracle": ["M", "S"], + "monosyllable": ["M", "S"], + "draineder": [], + "convoying": [], + "Sung": ["M"], + "stickier": [], + "swivel": ["M", "D", "G", "S"], + "panacea": ["S", "M"], + "cleanses": [], + "stickpin": ["M", "S"], + "strewing": [], + "doomsday": ["M"], + "Juniors's": [], + "impeachment": ["S", "M"], + "plash'sed": [], + "alloy'sed": [], + "primate'ses": [], + "jabberersing": [], + "smocking's": [], + "pastier": [], + "motivation's": [], + "kiln'sed": [], + "salary's": [], + "ablative'ses": [], + "visualization's": [], + "machinery's": [], + "nil": ["M"], + "absurd": ["T", "P", "R", "Y"], + "egalitarianism's": [], + "tasked": [], + "allegories's": [], + "exorcism's": [], + "switchblade": ["S", "M"], + "plural": ["S", "M"], + "eructed": [], + "blender": ["M"], + "exploration": ["M", "S"], + "ideals's": [], + "Stael": ["M"], + "fizzed": [], + "Bakunin's": [], + "stem'ses": [], + "nonsmoker's": [], + "foretaste'sing": [], + "Octobers": [], + "reducible": [], + "lowed": [], + "raiseder": [], + "mademoiselle'ses": [], + "ingenues": [], + "cottagers": [], + "sash'ses": [], + "foisting": [], + "mil's": [], + "Rock's": [], + "torpidity's": [], + "nowise": [], + "dandifying": [], + "retrospectsing": [], + "clinch'sed": [], + "debauch's": [], + "pun's": [], + "Suns's": [], + "overexercise": ["G", "D", "S"], + "headache's": [], + "quest": ["I", "F", "A", "M", "S"], + "resistless": [], + "woozierness": [], + "headache'ses": [], + "incarcerates": [], + "telekinesis's": [], + "scrimmage'sing": [], + "littoral's": [], + "Forster's": [], + "CPO": [], + "prod": ["M", "S"], + "electronics": ["M"], + "Libra's": [], + "sheltering": [], + "boardwalk's": [], + "bitcoin's": [], + "lubricants": [], + "topcoats": [], + "albinos": [], + "venality's": [], + "partisans's": [], + "pumping": [], + "checkup": ["M", "S"], + "rondos": [], + "transition'sed": [], + "om'sen": [], + "groupie": ["M", "S"], + "circularizesing": [], + "windfalls": [], + "doctors's": [], + "meningitis": ["M"], + "girlfriend'ses": [], + "Rochester's": [], + "harmonium": ["M", "S"], + "lubberlies": [], + "preference": ["M", "S"], + "Castro's": [], + "Beauvoir": ["M"], + "bendersing": [], + "coddleds": [], + "serifs": [], + "intransigence's": [], + "endocarditis": [], + "characterful": [], + "worthwhile": [], + "Apaches's": [], + "thunderersing": [], + "waterproofing's": [], + "ghost": ["S", "M", "D", "Y", "G"], + "Northeast'ses": [], + "tote": ["M", "S"], + "Myst": ["M"], + "breadbox": ["M", "S"], + "Willy": ["M"], + "meathead": ["M", "S"], + "nonreciprocating": [], + "levitatingen": [], + "astrophysicists": [], + "Forest": ["M", "R"], + "ting's": [], + "trademarking's": [], + "airtight": [], + "counts": [], + "HI": [], + "oriented": [], + "quatrain": ["M", "S"], + "suffer": ["D", "R", "Z", "G", "S", "J"], + "packages": [], + "exam'ses": [], + "guillotines": [], + "overarming": [], + "shirty": [], + "cripples": [], + "bidder'ses": [], + "caucused": [], + "Uzbek": ["M"], + "possessors": [], + "tush's": [], + "Picasso's": [], + "Humboldt": ["M"], + "nontarnishable": [], + "Superman": ["M"], + "Doberman": ["M"], + "amercements": [], + "yak": ["S", "M"], + "century": ["S", "M"], + "asininities's": [], + "Lakshmi": ["M"], + "guarantors": [], + "collapses": [], + "mistress": ["M", "S"], + "Addams's": [], + "kiwifruit's": [], + "crowbar": ["M", "S"], + "retrofit's": [], + "wussiest": [], + "mazurkas": [], + "swag's": [], + "shrapnel": ["M"], + "Unitas": ["M"], + "powerhouses's": [], + "milkshake": ["S", "M"], + "outfields's": [], + "innocence": ["M"], + "allure": ["M", "G", "L", "D", "S"], + "lollipop's": [], + "continuance'ses": [], + "rebirth": ["M"], + "seeded": ["U"], + "continents's": [], + "roadhouses": [], + "Galveston's": [], + "eases's": [], + "fossa": [], + "sulfides": [], + "sunburns": [], + "wattled": [], + "pitch'sed": [], + "sloughed": [], + "loping": [], + "fluke's": [], + "rhomboids": [], + "marketer's": [], + "wistfully": [], + "procedure's": [], + "squirreled": [], + "fumbles": [], + "machination's": [], + "proprietaries": [], + "multitudes's": [], + "Sunnite's": [], + "veneration": ["M"], + "gilt'ses": [], + "groins's": [], + "slicker's": [], + "galleries": [], + "hairnet": ["S", "M"], + "miscarrieds": [], + "feudalistic": [], + "paddle": ["M", "Z", "G", "D", "R", "S"], + "Au's": [], + "Lupe's": [], + "weakness'ses": [], + "sauntered": [], + "taboo's": [], + "silage": ["M"], + "rambunctiousness's": [], + "Emma": ["M"], + "hears": [], + "vehemency": ["M"], + "noway": ["S"], + "imbeciles": [], + "ropes": [], + "bazookas's": [], + "vicissitude": ["S", "M"], + "oddment": ["S", "M"], + "dapplinged": [], + "sprig's": [], + "quotation": ["S", "M"], + "antlers": [], + "Danae": ["M"], + "summoneder": [], + "peculating": [], + "perambulationsing": [], + "native'ses": [], + "distentions": [], + "visors": [], + "impeccable": [], + "assenting": [], + "Mennonite's": [], + "mounding": [], + "Lt": [], + "wealthiness": ["M"], + "Cornelia": ["M"], + "overviews": [], + "concoction's": [], + "Aventine": ["M"], + "pawnshop": ["M", "S"], + "honkies's": [], + "tunneled": [], + "marbled": [], + "provokeder": [], + "excitation's": [], + "Saatchi's": [], + "ferment's": [], + "grad'ser": [], + "reasonable": ["U", "P"], + "articulations": [], + "upraising": [], + "ironware's": [], + "umbras's": [], + "inconvocation": [], + "Reconstruction": ["M"], + "garlanded": [], + "steamboat's": [], + "fold's": [], + "L": ["M", "N"], + "oafs": [], + "moronically": [], + "Slovenian's": [], + "kayoing": [], + "incisive": ["P", "Y"], + "shuttling": [], + "bewail": ["D", "G", "S"], + "couples": [], + "clinchesers": [], + "Heidelberg's": [], + "Quebecois's": [], + "affirmed": [], + "subhead's": [], + "roasters": [], + "Bulgar's": [], + "haze": ["M", "Z", "G", "J", "D", "R", "S"], + "hods": [], + "scatterbrain'sed": [], + "slaveder": [], + "poos": [], + "buccaneering's": [], + "supersede": ["G", "D", "S"], + "hidebound": [], + "square": ["P", "D", "R", "S", "M", "Y", "T", "G"], + "Clouseau's": [], + "abbey's": [], + "Porto": ["M"], + "defeating": [], + "preyed": [], + "infiltrators's": [], + "radicalization's": [], + "complex'ses": [], + "interline": ["G", "D", "S", "J"], + "toxicologist's": [], + "harp's": [], + "quorum's": [], + "slouchiest": [], + "cocoa": ["S", "M"], + "sprinter": ["M"], + "labored": [], + "laxity": ["M"], + "squelched": [], + "Jamaicans": [], + "gadget's": [], + "murmurersing": [], + "Lina's": [], + "Escherichia's": [], + "skirmish'sed": [], + "logo's": [], + "torpedoed": [], + "excrement": ["M"], + "rubdown's": [], + "fetid": ["P"], + "doyens": [], + "Tharp's": [], + "hypnotic's": [], + "conservancy's": [], + "fantail": ["M", "S"], + "economizers": [], + "webinars": [], + "tarryinged": [], + "Creon's": [], + "palomino'ses": [], + "gloweder": [], + "jaunt": ["S", "G", "M", "D"], + "hightaileds": [], + "tiesed": [], + "item'ses": [], + "Thames": ["M"], + "anticking": [], + "printsing": [], + "birch's": [], + "woodcutter": ["S", "M"], + "glorification": ["M"], + "poureds": [], + "asparagus's": [], + "pompano's": [], + "volumes's": [], + "Samarkand's": [], + "foreigners": [], + "Albanians": [], + "Lords": [], + "gonad's": [], + "deferred": [], + "predicament's": [], + "triangulation": ["M"], + "alligators": [], + "Maoists": [], + "lines": [], + "aficionado's": [], + "boatman": ["M"], + "piddle's": [], + "whelp's": [], + "craning": [], + "espouses": [], + "flank'sed": [], + "signoras": [], + "sleights": [], + "tempts": [], + "pager's": [], + "alarm's": [], + "rainbows's": [], + "cliffs": [], + "hemispheres's": [], + "Toyota": ["M"], + "cavern": ["M", "S"], + "dosses": [], + "adulteresses": [], + "swims": [], + "cardiovascular": [], + "evangelizinged": [], + "Charlene": ["M"], + "replant": ["G", "S", "D"], + "hairbreadth's": [], + "pessary": ["S"], + "adventuresome": [], + "Kr": ["M"], + "cowcatcher": ["M", "S"], + "attempts": [], + "housefly's": [], + "indestructibility": [], + "idealistic": [], + "expediters": [], + "Hess's": [], + "Curitiba's": [], + "purchases": [], + "guilt's": [], + "participator'ses": [], + "devaluation": [], + "implementations": [], + "frontier": ["M", "S"], + "slumber'sed": [], + "segregateds": [], + "angle's": [], + "Evelyn": ["M"], + "pergolas's": [], + "haunches": [], + "O'Higgins's": [], + "petticoat": ["M", "S"], + "Andalusian": ["M"], + "digerati": ["M"], + "wingspan'ses": [], + "bicentenary": ["S", "M"], + "colloquies": [], + "obits": [], + "hollyhocks": [], + "faults": [], + "maleficence": ["M"], + "cosmetics's": [], + "lexicography": ["M"], + "householders": [], + "silting": [], + "lithographically": [], + "schoolteacher's": [], + "phlegmatically": [], + "airliftsing": [], + "hijacksings": [], + "videlicet": [], + "lung": ["M", "D", "S", "G"], + "divisors": [], + "apprehendinged": [], + "dead's": [], + "retell": [], + "flange'ses": [], + "peacefulness": ["M"], + "embargoing": [], + "obstinately": [], + "hamburgsers": [], + "kindness's": [], + "plunge": ["D", "R", "S", "M", "Z", "G"], + "frank'sed": [], + "photocopies": [], + "attenuation's": [], + "Johannes's": [], + "crowfoots's": [], + "varnish's": [], + "dissuading": [], + "surroundings": ["M"], + "audiometer": ["S", "M"], + "testiness's": [], + "Tomsk": ["M"], + "rulings": [], + "gentlefolks": ["M"], + "analyzesing": [], + "holdup'ses": [], + "iridescence's": [], + "ornateness's": [], + "scooters": [], + "supercharger's": [], + "penuriousnessly": [], + "polisher": ["M"], + "Jurassic's": [], + "hermits's": [], + "precinct": ["M", "S"], + "mimosa's": [], + "scarfed": [], + "kiwifruit": ["M", "S"], + "warrant": ["G", "M", "D", "S"], + "Maud": ["M"], + "lobotomies": [], + "rends": [], + "photosynthesis's": [], + "rissoles": [], + "shorterly": [], + "farmhouse": ["S", "M"], + "radiologists's": [], + "adaptation": ["M", "S"], + "valance'ses": [], + "inkling's": [], + "doughnut": ["S", "M"], + "frankfurter": ["M", "S"], + "standpipes": [], + "cleric'ses": [], + "conduit": ["S", "M"], + "hurtlesing": [], + "roundworms": [], + "demon'ses": [], + "hydrogenatinged": [], + "fibular": [], + "leash's": [], + "jerrybuilt": [], + "dispute's": [], + "medulla's": [], + "fiddling": [], + "intensities": [], + "mummified": [], + "shell's": [], + "secondments": [], + "naves": [], + "nonpartisans's": [], + "misconducts": [], + "finickier": [], + "litterer": ["M"], + "kinfolk": ["S", "M"], + "transcriber's": [], + "overpay": ["G", "S"], + "earthlying": [], + "slopeding": [], + "misaddresses": [], + "gabbles's": [], + "ensnareds": [], + "clarity's": [], + "scoffersing": [], + "fellest": [], + "cooped": [], + "spangle'sing": [], + "quack'sed": [], + "grimliness": [], + "playbooks": [], + "jewels": [], + "sucker'sed": [], + "bench's": [], + "megahertz": ["M"], + "outlier": ["S"], + "understateds": [], + "Bond's": [], + "sophists": [], + "shewed": [], + "Jehoshaphat's": [], + "ogress'ses": [], + "swede": ["S", "M"], + "gyppers": [], + "Hendricks's": [], + "tribulation": ["S", "M"], + "excoriateds": [], + "crazing": [], + "joustsers": [], + "independent": [], + "detractor": [], + "solemnity": ["S", "M"], + "cutlet": ["S", "M"], + "Yaqui's": [], + "washers": [], + "keypunching's": [], + "election's": [], + "draws": [], + "depriving": [], + "recompose": [], + "danseuse'ses": [], + "vesicular": [], + "metricizing": [], + "exalteding": [], + "heatstroke": ["M"], + "coercing": [], + "waivers": [], + "totalitarians's": [], + "Canon": ["M"], + "sterilized": [], + "endocrinologist's": [], + "Willis's": [], + "Eugenia's": [], + "Nelsen's": [], + "devotee's": [], + "matchbook's": [], + "missile'ses": [], + "quivery": [], + "SVN": ["M"], + "lavender's": [], + "woodshed's": [], + "adjudginged": [], + "diva": ["M", "S"], + "Head's": [], + "hangings": [], + "disdaineding": [], + "chapel": ["M", "S"], + "thrive": ["D", "S", "G"], + "provisional": ["Y"], + "trampeder": [], + "circuital": [], + "caravels's": [], + "mains": [], + "Hellene's": [], + "glissando": ["M"], + "polygraphs": [], + "Jennifer's": [], + "stillbirth": ["M"], + "patellae": [], + "cashiers": [], + "courtship": ["M", "S"], + "asperity": ["S", "M"], + "summerhouses": [], + "airlock": ["S", "M"], + "felon": ["S", "M"], + "somersault": ["M", "D", "G", "S"], + "positron's": [], + "climber's": [], + "woodworkers": [], + "evincing": [], + "bower": ["M"], + "prettyinged": [], + "cricked": [], + "transitive": ["I", "S", "M", "Y"], + "unfetter": [], + "appertaininged": [], + "orthodontics": ["M"], + "steamrollinged": [], + "participator": ["M", "S"], + "mapper's": [], + "Leeds's": [], + "picketer": [], + "employment's": [], + "dampening": [], + "finaglersing": [], + "whippletrees": [], + "phonies's": [], + "Louisianian's": [], + "poringed": [], + "seethe": ["D", "S", "G"], + "objectifyinged": [], + "inanest": [], + "bolstering's": [], + "multistory": [], + "changer's": [], + "Kirsten": ["M"], + "commentated": [], + "cocaine's": [], + "railcards": [], + "Ralph's": [], + "Virgie": ["M"], + "retinues": [], + "Kurdistan": ["M"], + "helplessness's": [], + "appropriatenessly": [], + "Federico's": [], + "salamanders's": [], + "Marne's": [], + "arboretums's": [], + "dreariness's": [], + "terrifieds": [], + "negro": [], + "pineapples": [], + "eglantine's": [], + "occupationally": [], + "conjurations": [], + "Vespucci": ["M"], + "straddles": [], + "quickness's": [], + "roved": [], + "rental's": [], + "Kuibyshev's": [], + "predominant": ["Y"], + "steweding": [], + "Gaia's": [], + "cellist": ["S", "M"], + "island's": [], + "carpools's": [], + "sentries's": [], + "wallopingsing": [], + "repatriate's": [], + "seaworthy": ["P"], + "tautology": ["S", "M"], + "Ratliff's": [], + "needlinged": [], + "electrotype": ["M", "S"], + "squandered": [], + "holder": ["M"], + "abates": [], + "woodbine": ["M"], + "Kentuckian's": [], + "Suriname's": [], + "encamping": [], + "playpens": [], + "solvers": [], + "kit'sed": [], + "fatwas": [], + "mask's": [], + "nonvocational": [], + "front's": [], + "outsets": [], + "Sinclair": ["M"], + "substitutioned": [], + "Hank": ["M"], + "staid": ["P", "R", "Y", "T"], + "goobers": [], + "Pope": ["M"], + "shore": ["M", "G", "D", "S"], + "pageboys's": [], + "contiguity's": [], + "select": ["C", "S", "G", "V", "D"], + "generously": [], + "confrontational": [], + "cultivars's": [], + "merciless": ["P", "Y"], + "libeled": [], + "barrios's": [], + "hoisting's": [], + "gyrations": [], + "nicksers": [], + "polyurethane": ["M", "S"], + "Jain's": [], + "astringent's": [], + "maximized": [], + "kayaks": [], + "signets": [], + "affiliations": [], + "Dee's": [], + "Wyomingite": ["S", "M"], + "wooziest": [], + "bunchier": [], + "PTO": [], + "tams": [], + "Coleman's": [], + "Sue's": [], + "shortcakes": [], + "hives": [], + "Jose": ["M"], + "mister": [], + "encapsulating": [], + "backcombsing": [], + "teacake's": [], + "reffed": [], + "emigrate": ["D", "S", "X", "G", "N"], + "David's": [], + "benefices's": [], + "strings": [], + "refuting": [], + "windsing": [], + "philippics": [], + "accrues": [], + "walleding": [], + "shinnied": [], + "corrective's": [], + "capacitance's": [], + "settler's": [], + "subdominant": [], + "patterning": [], + "Vanderbilt's": [], + "disgracefulness": [], + "serialized": [], + "pronunciation'ses": [], + "scion'ses": [], + "corns": [], + "eternal": ["Y", "P"], + "Annam's": [], + "Fielding's": [], + "Katharine's": [], + "redelight": [], + "subservience": ["M"], + "Leeward": ["M"], + "cunninger": [], + "perpetuation's": [], + "neoclassicism's": [], + "Bennie's": [], + "catalogings": [], + "rapporteur": ["S"], + "sundowns": [], + "graduation": ["M"], + "Liberal": [], + "amylase's": [], + "sleazier": [], + "remunerates": [], + "lake'ses": [], + "straggler": ["M"], + "lope": ["M", "G", "D", "S"], + "Knuth's": [], + "DDTs": [], + "denial's": [], + "preformsed": [], + "monotheist's": [], + "decoy'sed": [], + "empathizing": [], + "stiflingsing": [], + "speedsters's": [], + "objectives's": [], + "shouldereding": [], + "aerobatic": ["S"], + "gluttony's": [], + "opulence's": [], + "creditably": ["E"], + "jotting'ses": [], + "dash's": [], + "feedbags": [], + "unswerving": [], + "bulgier": [], + "squiggle": ["D", "S", "M", "G"], + "morons": [], + "towns": [], + "Murillo": ["M"], + "kibitzinged": [], + "cytosine's": [], + "solid'ser": [], + "entwineds": [], + "focus": ["A", "D", "S", "G"], + "Carmichael": ["M"], + "backhandersing": [], + "bridegroom's": [], + "surly": ["P", "T", "R"], + "staccato's": [], + "hope": ["M", "S"], + "luge": ["S"], + "gridlock'sed": [], + "container's": [], + "provosts": [], + "pi's": [], + "macing's": [], + "updraft's": [], + "fudges's": [], + "lottery": ["S", "M"], + "yelps": [], + "envelopes's": [], + "tittersing": [], + "servo's": [], + "Surabaya": ["M"], + "fermium": ["M"], + "pardoned": [], + "scareds": [], + "curettage": ["M"], + "Babel'ses": [], + "vivacity": ["M"], + "wrapper": ["S", "M"], + "undersecretary": ["S", "M"], + "bungler": ["M"], + "cheese's": [], + "muddiers": [], + "reequipped": [], + "flax's": [], + "cowling's": [], + "plied": [], + "Salisbury": ["M"], + "oligopoly": ["S", "M"], + "flair's": [], + "drab": ["M", "Y", "S", "P"], + "twinge's": [], + "crowfeet": [], + "Presbyterian's": [], + "astronomers's": [], + "troupes": [], + "trio's": [], + "yap's": [], + "nymphomaniac's": [], + "idyll": ["S", "M"], + "boxersing": [], + "frowzy": ["T", "P", "R"], + "merchantmen": [], + "contained": [], + "ogle's": [], + "potfuls's": [], + "crossing": ["S", "M"], + "out's": [], + "droplets's": [], + "Shaun's": [], + "calcifying": [], + "caveat's": [], + "xxii": [], + "cassette'ses": [], + "racketeer'sed": [], + "hymens's": [], + "materialists": [], + "surrounded": [], + "paltriest": [], + "gormandizer": ["M"], + "depreciatesing": [], + "riddle'sing": [], + "rabidly": [], + "spread'ser": [], + "Leviathan": ["M"], + "gravestones's": [], + "espaliersing": [], + "fuckhead": ["S", "!"], + "uterus's": [], + "guillotineds": [], + "archaism'ses": [], + "frazzling": [], + "nonactive": ["M", "S"], + "creations": [], + "Croesus": ["M"], + "overreacteding": [], + "scullions's": [], + "speculator'ses": [], + "stain'sed": [], + "IPO": [], + "reg": [], + "masterfully": [], + "hypocrite's": [], + "uterine": [], + "kernel": ["S", "M"], + "confessor": ["M", "S"], + "unadvertised": [], + "savagely": [], + "tranche": ["S"], + "ragwort": [], + "sequestrated": [], + "Genet's": [], + "Mesozoic": ["M"], + "nocturne'ses": [], + "naifs": [], + "correctness's": [], + "anointment": ["M"], + "preachesers": [], + "meteorologists": [], + "putz": ["S"], + "affordsable": [], + "sheerest": [], + "idem": [], + "trekkers's": [], + "maintops": [], + "Woods": ["M"], + "scalpels's": [], + "wild": ["M", "R", "Y", "S", "T", "P"], + "banishmented": [], + "updraft'ses": [], + "vilifies": [], + "auditions's": [], + "nobler": [], + "supercities's": [], + "affiancing": [], + "barrels": [], + "fraternizeder": [], + "grandchildren's": [], + "bedaub": ["G", "S", "D"], + "Zedekiah's": [], + "Karo's": [], + "Kip's": [], + "driftwood": ["M"], + "amusement's": [], + "agreemented": [], + "electrocution's": [], + "nonactives": [], + "acids's": [], + "coalings": [], + "powder": ["G", "S", "M", "D"], + "Federalist": ["M"], + "cob's": [], + "advances's": [], + "hallucinogen's": [], + "Pepys": ["M"], + "combination's": [], + "outrigger's": [], + "empowering": [], + "undercarriage": ["M", "S"], + "Goldman's": [], + "deactivation": [], + "hubbies": [], + "roman's": [], + "cube's": [], + "sprint": ["Z", "G", "S", "M", "D", "R"], + "Bulgarian": ["S", "M"], + "freelanceder": [], + "Ujungpandang": ["M"], + "hernia": ["S", "M"], + "stretchered": [], + "AVI": [], + "Armando's": [], + "decorously": [], + "contamination": ["C", "M"], + "frictions": [], + "picketersing": [], + "speaker's": [], + "screechy": ["T", "R"], + "hydroxides's": [], + "propellant's": [], + "mantlinged": [], + "composings": [], + "masturbate": ["G", "N", "D", "S"], + "softly": [], + "Gangtok": ["M"], + "fluoroscopic": [], + "Tuscaloosa": ["M"], + "awaken": ["A", "G", "D", "S"], + "devitalize": [], + "DuPont": ["M"], + "fossils's": [], + "invulnerability": [], + "idolater's": [], + "battle's": [], + "coordinates's": [], + "Jaclyn": ["M"], + "witheringsing": [], + "allowed": [], + "complies": [], + "suctioned": [], + "lordedly": [], + "groundnut's": [], + "monoxide": ["M", "S"], + "aviation": ["M"], + "awakenings": [], + "croonerers": [], + "vamoosesing": [], + "mini": ["M", "S"], + "profounder": [], + "loyaler": [], + "slavers": [], + "crosscuts": [], + "benefits's": [], + "wrestle": ["M", "Z", "G", "D", "R", "S"], + "nominative's": [], + "coruscating": [], + "colloquy's": [], + "arrest'sed": [], + "cassette": ["M", "S"], + "peptic's": [], + "sploshing": [], + "salver": ["M"], + "sourpuss": ["M", "S"], + "Joanna's": [], + "saxophone'ses": [], + "smartphones's": [], + "bikers": [], + "snuffle": ["M", "G", "D", "S"], + "reenlistment": [], + "blaminged": [], + "scolding's": [], + "yowleds": [], + "colonialism": ["M"], + "testifier": ["M"], + "resonances's": [], + "impolite": ["Y", "P"], + "vulcanized": [], + "dirigible'ses": [], + "motionless": ["Y", "P"], + "dace's": [], + "Frank's": [], + "Salyut": ["M"], + "Alzheimer's": [], + "bath": ["Z", "G", "M", "D", "R", "S"], + "antagonists's": [], + "bitterest": [], + "defensively": [], + "prudishness": ["M"], + "tenantry's": [], + "furling": [], + "shooinged": [], + "cookies": [], + "Princeton's": [], + "dispossession": ["M"], + "joyride'sers": [], + "suppression's": [], + "whistlers": [], + "avoided": [], + "acrylic's": [], + "pop's": [], + "micron": ["M", "S"], + "hemlock": ["S", "M"], + "parasympathetics": [], + "Oldsmobile": ["M"], + "Metamucil's": [], + "gifting": [], + "abseileds": [], + "iodize": ["D", "S", "G"], + "acerbating": [], + "viviparous": [], + "trencherman's": [], + "nutriments": [], + "airbus": ["M", "S"], + "appetites's": [], + "outperformings": [], + "leopards": [], + "cotyledon'ses": [], + "tenderfoot": ["M", "S"], + "hoodoosing": [], + "broadside's": [], + "suzerain": ["M", "S"], + "garret": ["S", "M"], + "Noxzema's": [], + "sweepersing": [], + "testifyinged": [], + "stupidity": ["S", "M"], + "Esperanza": ["M"], + "LC": [], + "forthcoming": ["M"], + "subheadings's": [], + "impediment's": [], + "thus": [], + "wiki": ["M", "S"], + "Dalmatia's": [], + "channelizeds": [], + "scuffling": [], + "pinkingness": [], + "attackersing": [], + "Kenyatta": ["M"], + "brainstorm's": [], + "gain": ["A", "D", "G", "S"], + "avers": [], + "unbid": [], + "taxonomist's": [], + "heresies": [], + "alpaca": ["M", "S"], + "cooperatesing": [], + "hoard": ["S", "Z", "G", "M", "D", "R", "J"], + "constitutional'sly": [], + "dirk": ["M", "S"], + "chinking's": [], + "ceaseless": ["Y", "P"], + "homicide'ses": [], + "centralism": [], + "kippereding": [], + "Irishman's": [], + "gallants": [], + "matchwood's": [], + "indifference": [], + "cybernetics": ["M"], + "treatable": [], + "savablings": [], + "Zachery": ["M"], + "mestizo": ["M", "S"], + "Marvell's": [], + "intercepts": [], + "infallibly": [], + "roughener": [], + "intercoms": [], + "triad": ["S", "M"], + "muscleds": [], + "liturgy": ["S", "M"], + "monarch": ["M"], + "gist's": [], + "falsies": [], + "Np's": [], + "steaminesser": [], + "it": ["U", "S", "M"], + "toured": [], + "officiate": ["D", "S", "G"], + "hydrogenation": ["M"], + "overexercises": [], + "signature": ["M", "S"], + "misunderstand": ["S", "G", "J"], + "purenessly": [], + "wafers": [], + "brandishesing": [], + "Hobbs": ["M"], + "nondenominational": [], + "Bordeaux": ["M"], + "dictionary": ["S", "M"], + "semantic": ["S"], + "incontestability's": [], + "hypochondriac": ["S", "M"], + "dopers": [], + "wittiness's": [], + "livinged": [], + "Mussorgsky's": [], + "abscissa": ["S", "M"], + "cajolingment": [], + "AIDS's": [], + "resonate": ["G", "D", "S"], + "yowled": [], + "nonacceptance": ["M"], + "banquette": ["S", "M"], + "vomited": [], + "humiliateds": [], + "thews": [], + "extrapolates": [], + "lilted": [], + "phraseology": ["M"], + "gildersing": [], + "gumboils's": [], + "annex": ["G", "M", "D", "S"], + "commendation's": [], + "latching": [], + "pallidness": ["M"], + "zinger's": [], + "profitably": ["U"], + "Demosthenes": ["M"], + "wafted": [], + "pebble'sing": [], + "rush'sed": [], + "sluggard": ["M", "S"], + "spectaculars": [], + "nameplate": ["M", "S"], + "foreshorteneds": [], + "stile": ["S", "M"], + "sacking": ["M"], + "Arizonan's": [], + "wreakinged": [], + "deanship's": [], + "bachelorhood's": [], + "penuriousness": ["M"], + "roebuck's": [], + "effed": [], + "gully": ["S", "M"], + "roundups": [], + "closely": [], + "lesson'ses": [], + "musculature's": [], + "girlhoods": [], + "desolatenessed": [], + "frotheding": [], + "beryl": ["M", "S"], + "Donaldson": ["M"], + "canoodles": [], + "samizdat": ["S"], + "ramble's": [], + "Prentice": ["M"], + "eyesight": ["M"], + "Mercury's": [], + "stalkingsers": [], + "bulkhead": ["M", "S"], + "Wests's": [], + "mailings's": [], + "prowled": [], + "schizophrenia": ["M"], + "steamrolled": [], + "Pomerania's": [], + "grout'sed": [], + "frowardness": ["M"], + "applet'ses": [], + "trematode'ses": [], + "defectivenessly": [], + "lastedly": [], + "clearly": [], + "Carla": ["M"], + "Emilio": ["M"], + "mammalians": [], + "RAF's": [], + "Eridanus's": [], + "traffic": ["S", "M"], + "Malaya's": [], + "woodier": [], + "remonstrance": [], + "Jewell's": [], + "rate'sers": [], + "pitchblende's": [], + "Yenisei": ["M"], + "precising": [], + "debaters": [], + "workarounds": [], + "thoughtfulness's": [], + "Zimbabweans": [], + "buffets": [], + "oracles's": [], + "undue": [], + "ware": ["M", "S"], + "fake's": [], + "adoptable": [], + "Lederberg's": [], + "ridge's": [], + "notebook'ses": [], + "elevating": [], + "cheerfulliness": [], + "rinsed": [], + "editor": ["S", "M"], + "possession": ["A", "S", "M"], + "greenhorn's": [], + "hosanna": ["S", "M"], + "schoolhouse's": [], + "quickening": [], + "shakersing": [], + "appendix's": [], + "bellman's": [], + "dysentery": ["M"], + "touteding": [], + "richness": ["M"], + "congas": [], + "climatologist": ["S", "M"], + "scaffold's": [], + "emplacement's": [], + "weightlifter'ses": [], + "midden's": [], + "switchback'ses": [], + "poof's": [], + "ordeal": ["S", "M"], + "ducking": [], + "egotistically": [], + "bosom": ["U", "S"], + "poopeds": [], + "pinons": [], + "knights": [], + "Schubert": ["M"], + "sates": [], + "Arcadian": ["M"], + "nonprofit's": [], + "Jenna's": [], + "beehive": ["M", "S"], + "banqueteder": [], + "reservoir": ["S", "M"], + "embattled": [], + "downsizing": ["M"], + "image'sing": [], + "user's": [], + "constituent's": [], + "censoriousness's": [], + "redheads's": [], + "inflating": [], + "troubling": [], + "awaits": [], + "brokereding": [], + "parsnip": ["M", "S"], + "loquacity's": [], + "twenty": ["S", "M", "H"], + "poke": ["M", "Z", "G", "D", "R", "S"], + "ridicules": [], + "jigsaw'sed": [], + "avatar's": [], + "gabbed": [], + "augustness": ["M"], + "spiffsed": [], + "brashly": [], + "mortgages": [], + "shucking": [], + "Nureyev": ["M"], + "paling's": [], + "barium's": [], + "bulldozes": [], + "prophet": ["S", "M"], + "hay": ["G", "S", "M", "D"], + "maintainers": [], + "alieneds": [], + "sureness": ["M"], + "rationalists's": [], + "obstructs": [], + "tomato": ["M"], + "rap'sed": [], + "encysting": [], + "clincheder": [], + "antimalarial": [], + "cannonaded": [], + "Python": ["M"], + "enigma": ["S", "M"], + "zoning's": [], + "pantywaist's": [], + "Airedales": [], + "colluded": [], + "besiege": ["Z", "G", "D", "R", "S"], + "butch's": [], + "Parker": ["M"], + "transom": ["S", "M"], + "cactus": ["M"], + "heavyhearted": [], + "oversupplying": [], + "soporific's": [], + "democratically": [], + "prescribing": [], + "sallower": [], + "custard": ["M", "S"], + "zing'sed": [], + "restudy": [], + "Polanski's": [], + "suckerers": [], + "Mondrian": ["M"], + "roomer's": [], + "cavities's": [], + "sheathings": [], + "Robbin": ["M", "S"], + "digression'ses": [], + "unfairerly": [], + "plateaus's": [], + "muffler": ["M"], + "Taejon": ["M"], + "allurements": [], + "rhapsodizeds": [], + "nutrias's": [], + "depravities's": [], + "Marley's": [], + "guff's": [], + "capacitors": [], + "executrix": ["M"], + "registrant": ["M", "S"], + "pinstripes's": [], + "plumps": [], + "plaudit": ["S", "M"], + "fog": ["C", "S"], + "midday's": [], + "quantifies": [], + "immersions": [], + "oysters": [], + "composts": [], + "nonpayment": ["S", "M"], + "laborerers": [], + "Legendre's": [], + "courtlying": [], + "boring": ["Y"], + "Franciscan's": [], + "Methodism's": [], + "floorwalkers's": [], + "libidinous": [], + "pinion's": [], + "espaliers": [], + "roostersing": [], + "tassel's": [], + "fathead": ["M", "D", "S"], + "bricklaying": ["M"], + "chunky": ["P", "T", "R"], + "bounty": ["S", "M"], + "Huggins's": [], + "beneficent": ["Y"], + "scholar": ["M", "Y", "S"], + "dago": ["S"], + "tasting": ["M"], + "inactivity": [], + "adenoids": [], + "bigness": ["M"], + "incorporates": [], + "rediscount": [], + "horticulturists": [], + "sketchersing": [], + "compromise's": [], + "outshouts": [], + "whorehouse'ses": [], + "electorally": [], + "metamorphism's": [], + "prostheses": [], + "obtuseness": ["M"], + "corporal": ["S", "M"], + "datatype": [], + "derive": ["B"], + "wrinkle": ["M", "G", "D", "S"], + "snuffs": [], + "Purim'ses": [], + "squealing": [], + "concordat": ["S", "M"], + "Baguio": ["M"], + "mesa": ["M", "S"], + "paralytics's": [], + "harrow's": [], + "kingdom's": [], + "brilliancy": ["M"], + "effectuatesing": [], + "rusticated": [], + "shake": ["M", "Z", "G", "R", "S"], + "jouncing": [], + "succulency": ["M"], + "laboriousness's": [], + "inkwell": ["M", "S"], + "bloodlessly": [], + "sailplane": ["M", "S"], + "Fla": [], + "beefing's": [], + "doglegs's": [], + "yearning's": [], + "girder": ["M"], + "indulgesing": [], + "cornet": ["S", "M"], + "mishmash'ses": [], + "extractions": [], + "exception": ["B", "S", "M"], + "harshest": [], + "descried": [], + "jaggeder": [], + "robotics": ["M"], + "cavalries": [], + "prostates": [], + "Lyra's": [], + "opera's": [], + "betokens": [], + "replicator": ["S"], + "bags's": [], + "fuzz'sed": [], + "bluffest": [], + "blunderbuss'ses": [], + "polygamist'ses": [], + "lxix": [], + "speckeding": [], + "masquerader": ["M"], + "Park's": [], + "moron": ["S", "M"], + "Keillor's": [], + "dissociation": ["M"], + "catechisms's": [], + "lozenge": ["S", "M"], + "compartments's": [], + "cal": [], + "macroscopic": [], + "privier": [], + "champ'sed": [], + "rearward": ["S"], + "stormiest": [], + "genealogies": [], + "nitrating": [], + "abductee'ses": [], + "assorts": [], + "backpackersing": [], + "trienniallies": [], + "wraparound": ["S", "M"], + "andantes": [], + "renegersing": [], + "scandalizesing": [], + "supplemental": [], + "sickie's": [], + "HPV": [], + "arbitraginged": [], + "cheeps": [], + "fooling": [], + "culmination's": [], + "curveds": [], + "hitch": ["U", "D", "S", "G"], + "editorial": ["S", "M", "Y"], + "cuff": ["M", "D", "G", "S"], + "restriction's": [], + "Judaism'ses": [], + "king's": [], + "turnabouts's": [], + "marsh's": [], + "plowshare": ["M", "S"], + "tolerance": ["I", "M"], + "purportedly": [], + "Sallust's": [], + "underwrote": [], + "beanpole's": [], + "sadist's": [], + "track": ["Z", "G", "S", "M", "D", "R"], + "tacitness": ["M"], + "defectively": [], + "grits's": [], + "covertness": ["M"], + "Dutchwoman": [], + "tiptoes": [], + "steadfast": ["Y", "P"], + "amber's": [], + "immortalizing": [], + "identify": ["Z", "G", "N", "D", "R", "S", "X"], + "ringmaster's": [], + "Polaroid'ses": [], + "adrenals": [], + "brusquer": [], + "ores": [], + "extemporaneousness's": [], + "Ritalin's": [], + "directorial": [], + "lameder": [], + "trustees": [], + "mortars": [], + "bobbleds": [], + "plunkeds": [], + "consents's": [], + "Kandinsky": ["M"], + "picks": [], + "counterinsurgencies": [], + "lefts": [], + "pal's": [], + "Liechtensteiners's": [], + "Armageddon": ["S", "M"], + "deportment's": [], + "labor": ["S", "M", "D", "R", "Z", "G"], + "schlock": ["M"], + "brininess's": [], + "cloddish": [], + "draconian": [], + "Peale's": [], + "quencher's": [], + "mug's": [], + "cottonwoods's": [], + "artistic": ["I"], + "putrefies": [], + "gamest": [], + "Armand": ["M"], + "encoded": [], + "zephyr": ["M", "S"], + "client": ["M", "S"], + "communicability's": [], + "vacuole": ["M", "S"], + "European's": [], + "contraceptives's": [], + "alley'ses": [], + "ans": [], + "chinkeds": [], + "Hakluyt": ["M"], + "Francisco": ["M"], + "guts": [], + "consultation": ["M", "S"], + "those": [], + "swarm's": [], + "Delicious's": [], + "biotechnology": ["M"], + "chariot's": [], + "Randall": ["M"], + "throatily": [], + "ctr": [], + "foulness": ["M"], + "grouchiness": ["M"], + "nonclericals": [], + "washerwoman's": [], + "petrifaction's": [], + "prideds": [], + "dissatisfaction": [], + "Cleopatra's": [], + "divider": ["M"], + "leaflet'sed": [], + "globalize": ["G", "D", "S"], + "turnoff": ["M", "S"], + "abbot's": [], + "purl's": [], + "illegalities": [], + "marinate": ["D", "S", "G", "N"], + "male's": [], + "imposition's": [], + "ferry": ["D", "S", "M", "G"], + "Italians": [], + "Limburger": ["M"], + "Berlinsers": [], + "horsepower's": [], + "offish": [], + "stripteasinged": [], + "stubby": ["R", "T"], + "bulk'sed": [], + "truckle's": [], + "pancaking": [], + "recognizeder": [], + "prolific": [], + "trysts": [], + "frisky": ["T", "R", "P"], + "hospitalization": ["S", "M"], + "syncopates": [], + "sadism": ["M"], + "throbbed": [], + "Jove's": [], + "targeteding": [], + "inspire": [], + "Shana": ["M"], + "scarcest": [], + "convents": [], + "Balkans": ["M"], + "Schwartz": ["M"], + "realer": [], + "jocundity": ["M"], + "reprise": ["S", "M", "G"], + "stovepipes's": [], + "kneeing": [], + "outhouses": [], + "palpitationed": [], + "helpers": [], + "epicenter": ["M", "S"], + "interdiction": ["M"], + "etiquette": ["M"], + "catacomb": ["S", "M"], + "pimpernel's": [], + "Twinkies's": [], + "cheek's": [], + "webbing's": [], + "fiduciaries": [], + "upsetting": [], + "Luanda's": [], + "conquer": ["A", "S", "D", "G"], + "Apia's": [], + "anesthetizations": [], + "sunshine": ["M"], + "Anabel's": [], + "gruffness's": [], + "Schindler": ["M"], + "cull's": [], + "pillion'ses": [], + "confiscates": [], + "tamarind's": [], + "appendectomy's": [], + "peaceably": [], + "atrophieds": [], + "tamer": ["M"], + "equivocateds": [], + "honeycombsing": [], + "abettor": ["S", "M"], + "copycat": ["M", "S"], + "swindlers": [], + "Rhenish": ["M"], + "dribblinged": [], + "affixing": [], + "hirsuteness's": [], + "figured": [], + "cavalrymen": [], + "beveled": [], + "flitting": [], + "smarten": ["D", "G"], + "skis": [], + "thatchersing": [], + "coruscatingen": [], + "misapplies": [], + "smell's": [], + "archaism": ["M", "S"], + "thieves": [], + "villager": ["M"], + "gaffe": ["S", "M"], + "floras": [], + "pianissimo": ["S", "M"], + "rangiest": [], + "muleteer'ses": [], + "unsmiling": [], + "Rwandan's": [], + "excised": [], + "photosynthesized": [], + "talent'sed": [], + "filibustereder": [], + "rumormonger": ["S", "M"], + "auburn's": [], + "encephalitic": [], + "cannibals": [], + "Am'sen": [], + "Hamiltonian": ["M"], + "coffeepots": [], + "singalongs": [], + "astigmatisms's": [], + "Appalachians": ["M"], + "magnifiersing": [], + "tawniest": [], + "troubleshooters": [], + "cation'ses": [], + "scalene": [], + "excursiveness's": [], + "borer's": [], + "coolies's": [], + "desecration's": [], + "reared": [], + "centered": [], + "bagginess's": [], + "assassinationens": [], + "Mercer's": [], + "snipped": [], + "bowdlerizing": [], + "logician'ses": [], + "kaddish's": [], + "unappreciated": [], + "bluebottles's": [], + "gallivants": [], + "ball's": [], + "waif'ses": [], + "copse": ["S", "M"], + "sillies's": [], + "rightist": ["S", "M"], + "gaiterses": [], + "tinkle's": [], + "Rachmaninoff": ["M"], + "outlined": [], + "obdurateness": ["M"], + "catatonic's": [], + "mantel's": [], + "perjure": ["D", "R", "S", "Z", "G"], + "fit": ["K", "A", "M", "S"], + "misconception's": [], + "magenta": ["M"], + "clack's": [], + "wanker": [], + "enjoysed": [], + "rendition": ["M", "S"], + "clot": ["M", "S"], + "Annam": ["M"], + "lolloping": [], + "jury's": [], + "reprom": [], + "classification's": [], + "checkout's": [], + "gladiola's": [], + "Vesuvius": ["M"], + "blitzing": [], + "tallieder": [], + "pickaxing's": [], + "Hayek": ["M"], + "hereon": [], + "underfloor": [], + "vermilion's": [], + "Catholicisms": [], + "swat": ["M", "S"], + "stepchild's": [], + "mountaineering": ["M"], + "permit": ["M", "S"], + "scrod's": [], + "smocks": [], + "rung": ["M", "S"], + "Andalusia": ["M"], + "liquidation's": [], + "Chaplinesque": [], + "dialysis": ["M"], + "universalized": [], + "Afr": [], + "espouse": ["G", "D", "S"], + "narcotics's": [], + "masthead": ["M", "S"], + "rations": [], + "caryatids": [], + "shorthand'sed": [], + "credulously": [], + "cabriolets's": [], + "plonks": [], + "pounces's": [], + "victual'sed": [], + "Spence's": [], + "nabob's": [], + "twittered": [], + "interlock'sed": [], + "perinea": [], + "gallery": ["S", "M"], + "tremendously": [], + "Atreus's": [], + "rechargeable": [], + "czarina's": [], + "flakes's": [], + "Barkley's": [], + "sequenceder": [], + "Diefenbaker": ["M"], + "freaky": ["R", "T"], + "deepener": [], + "Campanella": ["M"], + "elisions": [], + "scrimmaginged": [], + "nine's": [], + "fordeding": [], + "deadpan's": [], + "Macaulay's": [], + "reheard": [], + "philippic's": [], + "Mutsuhito": ["M"], + "electrode": ["S", "M"], + "southernmost": [], + "workingman": ["M"], + "Crest": ["M"], + "sidelong": [], + "photocell's": [], + "canister's": [], + "pock'sed": [], + "nuke's": [], + "slangier": [], + "extras's": [], + "fizz'sed": [], + "swag": ["M", "S"], + "chevrons": [], + "paddocked": [], + "navy's": [], + "impends": [], + "archbishopric's": [], + "discreeter": [], + "urology": ["M"], + "IMF": ["M"], + "firm'sed": [], + "raking": [], + "rebirths": [], + "glycogen's": [], + "ionization's": [], + "Pacific": ["M"], + "bittern": ["S", "M"], + "Treblinka": ["M"], + "traduceder": [], + "nonspirituals": [], + "obsessives's": [], + "Renaissances's": [], + "snapdragons": [], + "nonappearances": [], + "toiler's": [], + "phrases": [], + "sportscast": ["M", "R", "Z", "G", "S"], + "ambient": [], + "beautification's": [], + "sailboardersing": [], + "tats": [], + "cathedrals's": [], + "biretta's": [], + "Huerta's": [], + "jobshares": [], + "selloff": ["M", "S"], + "complements": [], + "dispensablers": [], + "delusion": ["M", "S"], + "scrubs": [], + "militate": ["G", "D", "S"], + "misgoverning": [], + "powerlessness's": [], + "carbuncles's": [], + "idealists": [], + "goosestep": ["S"], + "jubilantly": [], + "floodplain's": [], + "shortsness": [], + "massive": ["P", "Y"], + "emigres's": [], + "spinning": ["M"], + "bathysphere's": [], + "discombobulation's": [], + "drillmaster's": [], + "daresay": [], + "inscriptions": [], + "Zamenhof's": [], + "dabs": [], + "promulgatingen": [], + "intention'ses": [], + "improper": ["Y"], + "yapping": [], + "marigold": ["M", "S"], + "clouted": [], + "Lilliputian'ses": [], + "stagnation's": [], + "spread's": [], + "immutable": [], + "object": ["S", "G", "V", "M", "D"], + "boardwalks": [], + "absoluteness": ["M"], + "convict": ["G", "S", "M", "D"], + "millstream'ses": [], + "Chinatown": ["M"], + "Doe": ["M"], + "Weston's": [], + "pedophiles": [], + "Fidel's": [], + "shuttering": [], + "jackboot": ["S", "M", "D"], + "Candide's": [], + "floppiness's": [], + "flextime": ["M"], + "Andes": ["M"], + "dailiness's": [], + "nip's": [], + "bleaker": [], + "baffles": [], + "Sulla": ["M"], + "grumps's": [], + "Delilahs": [], + "bugging": ["C"], + "patriarch": ["M"], + "Rupert's": [], + "integration's": [], + "Mounties": [], + "twitch'sed": [], + "floodering": [], + "hiking": ["M"], + "seventy": ["S", "M", "H"], + "boogieds": [], + "expendings": [], + "monocotyledons's": [], + "regime": ["S", "M"], + "crusted": [], + "portability": ["M"], + "Goths": [], + "likability's": [], + "interspersion's": [], + "captioning": [], + "apish": ["Y"], + "steams": [], + "glazeds": [], + "illumination": ["M"], + "Pb": ["M"], + "fibrillateds": [], + "coziness's": [], + "fax'sed": [], + "plaint": ["S", "M", "V"], + "novitiate'ses": [], + "secrete": ["X", "N", "S"], + "supplyinged": [], + "exes": [], + "tombolas": [], + "preventative's": [], + "wayfarings's": [], + "VF": [], + "enlarging": [], + "Christi": ["M"], + "bagatelle's": [], + "decorate": ["A", "G", "N", "V", "D", "S"], + "synergy": ["S", "M"], + "beings": [], + "garcons": [], + "martyred": [], + "haunt": ["S", "M", "D", "R", "Z", "G"], + "rewritings": [], + "likens": [], + "pioneering's": [], + "transposing": [], + "counterargument": ["S"], + "scrutinizinged": [], + "woodchuck's": [], + "splitting's": [], + "breedser": [], + "initials": [], + "regulators": [], + "Marina's": [], + "internals": [], + "quaintest": [], + "chitterlings's": [], + "eternalness": ["M"], + "CA": [], + "hicks": [], + "finises": [], + "turnout's": [], + "regulator'ses": [], + "pursuance's": [], + "Chaldean's": [], + "vagaries": [], + "sillies": [], + "diggers": [], + "foredoom": ["D", "G", "S"], + "Prussian's": [], + "Lean's": [], + "characteristic's": [], + "seaways's": [], + "gritted": [], + "cringe'sing": [], + "facetiousness's": [], + "trifles": [], + "pavlovas": [], + "Sumeria's": [], + "closures's": [], + "stylistic": ["S"], + "eugenicist'ses": [], + "gaudierness": [], + "plank'sed": [], + "feeblest": [], + "commerce": ["M"], + "bearishnessly": [], + "politicization's": [], + "tercentennials's": [], + "max's": [], + "interdependent": ["Y"], + "dartboard'ses": [], + "Rn": ["M"], + "bucked": [], + "mikado'ses": [], + "intimated": [], + "panes": [], + "obstructed": ["U"], + "westward": ["S"], + "church'ses": [], + "triplicate's": [], + "dismemberment's": [], + "soviet": ["S", "M"], + "menstruatingen": [], + "glassed": [], + "latency": ["M"], + "remixes": [], + "Herakles": ["M"], + "defrock": ["D", "G"], + "renovator": ["M", "S"], + "dexterousness's": [], + "promulgator'ses": [], + "Herculaneum": ["M"], + "fraternizes": [], + "deigneds": [], + "choppers": [], + "assumptions": [], + "ampule": ["M", "S"], + "adorersing": [], + "remarkableness": ["M"], + "stupors": [], + "blurring": [], + "hydroponic": ["S"], + "lens": ["M", "S"], + "Alcestis": ["M"], + "dangsers": [], + "Iowas": [], + "censurers": [], + "runaways": [], + "Duvalier's": [], + "Cajuns": [], + "zillion's": [], + "paraders": [], + "Kempis's": [], + "fifer": ["M"], + "simper": ["G", "M", "D", "S"], + "range": ["C", "G", "D", "S"], + "unaccepted": [], + "pharmacologists": [], + "undermininged": [], + "hallmark'sed": [], + "mossbacks": [], + "lexicographer": ["M", "S"], + "bitterns": [], + "antiseptics's": [], + "Permalloy": ["M"], + "wackierness": [], + "digestions": [], + "firstborns's": [], + "moralizers": [], + "sarcasm": ["M", "S"], + "petard's": [], + "septa": [], + "thrifty": ["P", "T", "R"], + "EEOC": [], + "Puccini's": [], + "conservancies's": [], + "Brahman's": [], + "garrison'sed": [], + "plastic's": [], + "floridly": [], + "Confucianism's": [], + "avocado's": [], + "courageously": [], + "Allahabad's": [], + "neglecting": [], + "speakeasy's": [], + "shipbuilding": ["M"], + "polymer": ["S", "M"], + "codswallop": [], + "baccalaureate's": [], + "tattlinged": [], + "telephoner": ["M"], + "southeastwards": [], + "baptizing": [], + "blocking": [], + "reclines": [], + "slovenlier": [], + "invigoratesing": [], + "mortality": ["M"], + "salutes": [], + "cinch's": [], + "scum": ["M", "S"], + "guillemots": [], + "saggiest": [], + "continuance": ["E", "M", "S"], + "width's": [], + "imam": ["M", "S"], + "bee": ["R", "S", "M", "Z", "G", "J"], + "chancels's": [], + "minoxidil's": [], + "plant's": [], + "wraith's": [], + "chukkas": [], + "Fuentes": ["M"], + "Pentium's": [], + "woodcarver's": [], + "humblesers": [], + "rationalizing": [], + "vanilla": ["S", "M"], + "natty": ["P", "T", "R"], + "Pitts's": [], + "fizzle": ["D", "S", "M", "G"], + "Deandre": ["M"], + "strafing": [], + "gimme": ["S", "M"], + "leap'sed": [], + "terraces's": [], + "horribleness's": [], + "capabilities": [], + "fluoresce": ["D", "S", "G"], + "fib'ser": [], + "cheerier": [], + "valuated": [], + "Mauritian": ["S", "M"], + "hemmer": ["S", "M"], + "Amy": ["M"], + "quintuplinged": [], + "penguin's": [], + "bloodstock's": [], + "uneducated": [], + "tycoon's": [], + "dourly": [], + "yacht": ["S", "M", "D", "G"], + "caver": [], + "scandal": ["S", "M"], + "transiting": [], + "neurosurgeon'ses": [], + "woolly": ["R", "S", "M", "P", "T"], + "Tyndale's": [], + "sexuality's": [], + "dibs": ["M"], + "Hopis": [], + "sharply": [], + "cadence": ["D", "S", "M"], + "testicle": ["M", "S"], + "blacklist'sed": [], + "dragons": [], + "wither": ["J", "G", "D"], + "eventuated": [], + "spoke": ["S", "M"], + "pas's": [], + "sysops": [], + "whipping": ["S", "M"], + "Chile": ["M"], + "crates's": [], + "surcharging": [], + "brawniness": ["M"], + "Joel": ["M"], + "motorcyclist": ["M", "S"], + "holocaust": ["S", "M"], + "bitched": [], + "stinkers": [], + "automatics": [], + "dossiers": [], + "fathers": [], + "fawnersing": [], + "despaireding": [], + "abasheds": [], + "killing": ["M"], + "lube": ["M", "G", "D", "S"], + "flecksing": [], + "gilding": ["M"], + "cytologists": [], + "bestiaries's": [], + "griper's": [], + "ubiquitous": ["Y"], + "instrument": ["M", "D", "S", "G"], + "Emilio's": [], + "Bataan": ["M"], + "actinium": ["M"], + "battlement": ["S", "M"], + "colleen's": [], + "dedications's": [], + "jealousies": [], + "miscalculation": ["M"], + "violin's": [], + "privateer's": [], + "shopfitting": [], + "sparingly": [], + "upheaval": ["M", "S"], + "donas": [], + "commodore": ["S", "M"], + "league's": [], + "skisers": [], + "survive": ["D", "S", "G", "B"], + "scout": ["M", "D", "R", "S", "Z", "G"], + "inch's": [], + "latcheds": [], + "Rhodesia's": [], + "latish": [], + "bebops": [], + "mainlining": [], + "ivy's": [], + "wavier": [], + "incarnadines": [], + "riskiest": [], + "anticline's": [], + "insectivorous": [], + "crawlies": [], + "granulation": ["M"], + "Assyrians's": [], + "abrasively": [], + "bicameral": [], + "cowersing": [], + "compress": ["C", "G", "D", "S"], + "misconductings": [], + "credential's": [], + "spreaders": [], + "Ferrell": ["M"], + "wino's": [], + "earneder": [], + "marker's": [], + "Laos": ["M"], + "intermixing": [], + "sublets's": [], + "shipmate's": [], + "storyboards": [], + "maileder": [], + "Liverpool's": [], + "bloodbath": ["M"], + "Conrail": ["M"], + "typed": [], + "metabolized": [], + "collapse": ["M", "G", "D", "S"], + "arbitrageder": [], + "computerizeds": [], + "nervinesser": [], + "hijacks": [], + "forego": ["G"], + "halloo": ["M", "S", "G"], + "protectors": [], + "goo's": [], + "empiricist": ["S", "M"], + "presupposes": [], + "suspensions": [], + "marketerers": [], + "Peloponnese's": [], + "linoleum": ["M"], + "intransigent's": [], + "strangely": [], + "rap": ["S", "Z", "G", "M", "D", "R"], + "pagersing": [], + "raglans": [], + "Dropbox's": [], + "signature'ses": [], + "pleat'sed": [], + "beguilingly": [], + "Moira's": [], + "isotopes": [], + "angina's": [], + "still": ["I", "T", "G", "S", "D"], + "Micronesian": ["M"], + "alliances's": [], + "mused": [], + "retrains": [], + "menthol": ["M"], + "exhausts": [], + "ecru": ["M"], + "bowlfuls's": [], + "sensationalizinged": [], + "slagged": [], + "brag's": [], + "Willamette's": [], + "Arlene's": [], + "dyslexics": [], + "Ainu's": [], + "Juanita": ["M"], + "Eysenck's": [], + "fructified": [], + "carousersing": [], + "estimationed": [], + "herbicide": ["M", "S"], + "Palestinians's": [], + "servomotor": ["M", "S"], + "closeteding": [], + "Lorenz's": [], + "harbormasters": [], + "denotative": [], + "unplug": [], + "Talmudic": [], + "foreshortening": [], + "charity's": [], + "weaponizeds": [], + "visceral": ["Y"], + "video": ["G", "S", "M", "D"], + "tinder": ["M"], + "landholding": ["M", "S"], + "hamsters": [], + "Easters's": [], + "motherland'ses": [], + "bellhops": [], + "tufter's": [], + "caviler's": [], + "crenelates": [], + "starkly": [], + "Majuro": ["M"], + "countrysides": [], + "chiropractics": [], + "hotlinks": [], + "clannish": ["P"], + "Han's": [], + "industriousness": ["M"], + "butter's": [], + "Maimonides's": [], + "apprehend": ["G", "D", "S"], + "minnesingers": [], + "most": ["M", "Y"], + "extenuation": ["M"], + "wet's": [], + "mandible'ses": [], + "cornstalks's": [], + "crocus'ses": [], + "entraps": [], + "broadsword's": [], + "tussle's": [], + "shakedown's": [], + "darker": [], + "jonquils": [], + "able": ["U", "T"], + "Dempsey": ["M"], + "trifocals": ["M"], + "headpin": ["S", "M"], + "haystacks": [], + "dynamism": ["M"], + "wildcat's": [], + "purreds": [], + "jade's": [], + "twiddled": [], + "untamed": [], + "pedicuringed": [], + "chalkboard": ["S", "M"], + "jape's": [], + "Lavern": ["M"], + "pollution": ["M"], + "oversharesing": [], + "entitlements": [], + "phantasm's": [], + "recentness's": [], + "slippers's": [], + "redeliver": [], + "humping": [], + "Arabist": ["M", "S"], + "bandoleer's": [], + "variationens": [], + "fought": [], + "spankingings": [], + "immemorially": [], + "splices": [], + "swards's": [], + "lawsuit": ["M", "S"], + "inequity": [], + "Vogue's": [], + "Aristotelian": ["M"], + "reversals's": [], + "cowing": [], + "LAN's": [], + "calorie's": [], + "marquetry": ["M"], + "shading": ["M"], + "slanting": ["Y"], + "impassably": [], + "bedroom's": [], + "accountant": ["M", "S"], + "audiotapes's": [], + "catacombs": [], + "helicopter": ["S", "G", "M", "D"], + "impulsively": [], + "salvation": ["M"], + "processes": [], + "summereds": [], + "molted": [], + "contemning": [], + "gentiles": [], + "hasteneding": [], + "colonial'sly": [], + "squirm": ["S", "G", "M", "D"], + "piccalilli's": [], + "numerical": ["Y"], + "coineder": [], + "Morley's": [], + "grains": [], + "gainers": [], + "Jesus": ["M"], + "tight": ["S", "N", "R", "Y", "P", "X", "T"], + "sleaze": ["S", "M"], + "routs": [], + "imbrication's": [], + "reiterate": ["V"], + "underscore'sing": [], + "boleros": [], + "Brendan": ["M"], + "misidentified": [], + "secretaryship": ["M"], + "skateboardeder": [], + "angioplasty": ["S", "M"], + "ops's": [], + "Congolese": ["M"], + "dunghill": ["M", "S"], + "sauces": [], + "lowlinesser": [], + "sulfurous": [], + "furs": [], + "evasiveness's": [], + "Sennacherib's": [], + "spiderweb": ["M", "S"], + "eccentricity": ["S", "M"], + "abradeds": [], + "whitener's": [], + "campy": ["T", "R"], + "imperialism's": [], + "group's": [], + "soporific": ["M", "S"], + "tiddlers": [], + "unenviable": [], + "dividers": [], + "hosts": [], + "unpins": [], + "antes's": [], + "resupply": ["D", "S", "G"], + "ingratiates": [], + "gawkily": [], + "mummifieds": [], + "Formicas": [], + "dedicateds": [], + "ridgeds": [], + "Chaldean": ["M"], + "stances": [], + "securely": [], + "riffle'sing": [], + "Luna": ["M"], + "idealism": ["M"], + "brierser": [], + "striving": [], + "kidskin's": [], + "masterstrokes's": [], + "architectural": ["Y"], + "lamentation": ["M", "S"], + "dittos": [], + "sward": ["S", "M"], + "Onondaga": ["M", "S"], + "referendum'ses": [], + "optimums's": [], + "hightailed": [], + "tangelo": ["M", "S"], + "halyard'ses": [], + "Frankfurter's": [], + "enlistee's": [], + "cardiologist'ses": [], + "louvers": [], + "Cleopatra": ["M"], + "prints": [], + "Evian": ["M"], + "dross's": [], + "styptics's": [], + "eject": ["S", "D", "G"], + "clucked": [], + "scrappier": [], + "thee": ["S"], + "Scotland's": [], + "estimate's": [], + "relevancy's": [], + "Madam": [], + "trying": ["Y"], + "forfeited": [], + "chameleons's": [], + "horsebox": ["S"], + "headmistress'ses": [], + "debenture'ses": [], + "zoologists's": [], + "staffing's": [], + "torsion's": [], + "dramas": [], + "rattlesnake's": [], + "authoress's": [], + "toenail": ["M", "S"], + "romperers": [], + "coercive": [], + "assessinged": [], + "eminent": ["Y"], + "ostentatiously": [], + "glop": ["M"], + "epitaph's": [], + "stumpings": [], + "tribal": [], + "marooned": [], + "Windward's": [], + "outlasting": [], + "Hellenes": [], + "catbirds's": [], + "clew'sed": [], + "gigabyte": ["M", "S"], + "condonesing": [], + "foreman's": [], + "energy": ["S", "M"], + "quietism": [], + "tufters": [], + "homophones": [], + "wastrels's": [], + "caramelize": ["D", "S", "G"], + "Gay's": [], + "counterfeiters": [], + "anchovies's": [], + "analysts": [], + "creases": [], + "Anne": ["M"], + "assisting's": [], + "Vicky's": [], + "grazes's": [], + "petticoat's": [], + "lightheartedness": ["M"], + "levitated": [], + "boogie": ["M", "D", "S"], + "timberline'ses": [], + "dinners's": [], + "dishevelment": ["M"], + "observantly": [], + "backseat's": [], + "caries": ["M"], + "ornithology": ["M"], + "soloists": [], + "Bamako's": [], + "backdatinged": [], + "Watteau's": [], + "pieceds": [], + "adjutants": [], + "musket'ses": [], + "dryads's": [], + "parchments's": [], + "flatliness": [], + "sociopath": ["M"], + "friendly's": [], + "scraping": [], + "spoor's": [], + "Lutheranism's": [], + "turtleneck": ["S", "M", "D"], + "counterfeiting's": [], + "biconvex": [], + "Lord": ["S", "M"], + "structural": ["Y"], + "mufflers": [], + "mes": [], + "slalom": ["M", "S", "D", "G"], + "expatiated": [], + "libels": [], + "searchersing": [], + "tie's": [], + "comeback": ["M", "S"], + "vacuousness's": [], + "Golda": ["M"], + "beryllium": ["M"], + "Gatling": ["M"], + "Confucian": ["S", "M"], + "speedway": ["S", "M"], + "rams's": [], + "shearing": [], + "Janine's": [], + "foreshore": ["S"], + "needed": ["U"], + "bombsites": [], + "gaslight'ses": [], + "calibrator's": [], + "mingling": [], + "Hauptmann": ["M"], + "imports": [], + "open's": [], + "synopsis": ["M"], + "pores": [], + "rummage": ["D", "S", "M", "G"], + "bestridden": [], + "pewee's": [], + "prefixed": [], + "rangeds": [], + "resentsed": [], + "ridiculinged": [], + "indef": [], + "bequeathing": [], + "integration": ["E", "A", "M"], + "cavalries's": [], + "snowline": [], + "caned": [], + "draughtboard": ["S"], + "mortification": ["M"], + "jittery": ["R", "T"], + "lounge": ["M", "Z", "G", "D", "R", "S"], + "Admiralty": [], + "bowler": ["M"], + "understating": [], + "cultivator's": [], + "puristic": [], + "Assyrian": ["S", "M"], + "Sonja's": [], + "badliness": [], + "greatcoats's": [], + "reintegration": [], + "skittishliness": [], + "reimbursement": ["M", "S"], + "Scotswomen": ["M"], + "mark": ["A", "M", "D", "S", "G"], + "motorization": ["M"], + "AZ's": [], + "saddles": [], + "ethically": [], + "inspector'ses": [], + "spacecraft": ["M", "S"], + "unpaved": [], + "schoolboy's": [], + "racily": [], + "decorator": ["M", "S"], + "dwelt": ["I"], + "transmutesing": [], + "ecocide": ["M"], + "farrier": ["M", "S"], + "descendant'ses": [], + "photostatic": [], + "enthuse": ["D", "S", "G"], + "widowhood": ["M"], + "addict": ["G", "V", "M", "D", "S"], + "snuggling": [], + "pulsateds": [], + "surprisingings": [], + "woodiest": [], + "metatarsus's": [], + "quadruplication's": [], + "jellybean's": [], + "misdoes": [], + "debasement": [], + "puss'ses": [], + "bemiring": [], + "gameness": ["M"], + "bellieds": [], + "veg": ["M"], + "paradersing": [], + "purveyors's": [], + "macrobiotics's": [], + "tenanteding": [], + "downplays": [], + "dominate": ["D", "S", "G", "N"], + "scrolled": [], + "smoke's": [], + "manageress": ["S"], + "repel": ["S"], + "saunasing": [], + "notch'sed": [], + "Deloris's": [], + "Moro's": [], + "dabblers": [], + "burials's": [], + "interests's": [], + "conditions": [], + "apostatize": ["G", "D", "S"], + "schism": ["S", "M"], + "misaligned": [], + "straddleder": [], + "squiggling": [], + "systematizing": [], + "relegatingen": [], + "scripteding": [], + "England": ["M"], + "Spenglerian": ["M"], + "towels": [], + "damn's": [], + "urinalysis": ["M"], + "suffuse": ["D", "S", "G", "N"], + "scampering's": [], + "butt's": [], + "Almohad": ["M"], + "encounters": [], + "syncsing": [], + "debut": ["G", "M", "D"], + "Limousin": ["M"], + "pull'sed": [], + "heists": [], + "Josephs": [], + "lumberjacks": [], + "airless": ["P"], + "inextricably": [], + "prestidigitation": ["M"], + "turmeric's": [], + "sharecropped": [], + "straighter": [], + "reviler's": [], + "TKO's": [], + "bottleneck's": [], + "ionization": ["U", "M"], + "Marseillaise's": [], + "core'sers": [], + "sheaf's": [], + "black'sed": [], + "Chiclets's": [], + "Shenyang's": [], + "dissuasive": [], + "Kodaly's": [], + "transactors": [], + "Mauricio": ["M"], + "giraffes": [], + "Czech": ["M"], + "continents": [], + "Daugherty": ["M"], + "sitarist": ["M", "S"], + "Romes's": [], + "balloonist": ["M", "S"], + "pedigreeds": [], + "prescription's": [], + "spanner's": [], + "zapped": [], + "triangles's": [], + "cesspool'ses": [], + "Woodward's": [], + "harshness": ["M"], + "gatherersing": [], + "laxative": ["M", "S"], + "commandeereds": [], + "mackinaw's": [], + "Velveeta": ["M"], + "knit": ["M", "S"], + "lubricators": [], + "dalliers": [], + "jiggles's": [], + "Minnie": ["M"], + "scathing": ["Y"], + "Beatriz": ["M"], + "Ribbentrop": ["M"], + "bedazzlinged": [], + "silk'sen": [], + "betrayerers": [], + "boggled": [], + "purginged": [], + "stomacheder": [], + "doles": [], + "kowtowing": [], + "noose": ["S", "M"], + "nephew": ["S", "M"], + "stitch": ["A", "D", "S", "G"], + "erectors": [], + "scumming": [], + "pointer": ["M"], + "fuller's": [], + "prostration's": [], + "infinitesimally": [], + "congeries": ["M"], + "humorist'ses": [], + "articulatingen": [], + "luscious": ["P", "Y"], + "Ohio": ["M"], + "kickiest": [], + "campsites's": [], + "underplaying": [], + "motorists": [], + "PCs": [], + "rotary's": [], + "trekker's": [], + "tangles": [], + "tileder": [], + "upholdinger": [], + "gash": ["M", "D", "S", "G"], + "choral'sly": [], + "sprinkle'sers": [], + "Yule's": [], + "whiner": ["M"], + "lollop": ["G", "S", "D"], + "afterburner's": [], + "outlay": ["S", "G", "M"], + "statuette": ["M", "S"], + "provenances": [], + "conditioner's": [], + "effervesce": ["G", "D", "S"], + "bullings": [], + "contretemps": ["M"], + "throwerers": [], + "piece": ["D", "S", "M", "G"], + "faintness's": [], + "tiptoes's": [], + "demolishes": [], + "campfires": [], + "endow": ["S", "D", "L", "G"], + "form's": [], + "grandma'ses": [], + "Shaffer's": [], + "nitpicked": [], + "Scruggs": ["M"], + "dwarf": ["S", "G", "M", "D"], + "chopped": [], + "spruced": [], + "ACTH": ["M"], + "misconduct's": [], + "helpful": ["U", "Y"], + "Henrietta's": [], + "bouffants": [], + "famisheds": [], + "Luz's": [], + "flimflammed": [], + "topper's": [], + "pussyfooted": [], + "Simpsons's": [], + "Turkey": ["M"], + "sugarcoatinged": [], + "easeds": [], + "Prince": ["M"], + "pullout'ses": [], + "thew": ["M", "S"], + "mediocrities": [], + "indexeder": [], + "Wrigley's": [], + "Machiavellian": ["M"], + "butcher'sed": [], + "skates": [], + "sequestrationsing": [], + "yogi": ["M", "S"], + "launderers": [], + "puzzle'sers": [], + "minimum's": [], + "cannibalizes": [], + "fiends's": [], + "swig's": [], + "capitations's": [], + "slumbers's": [], + "etcher": ["M"], + "ON": [], + "conga": ["S", "M", "D", "G"], + "mussel'ses": [], + "icebergs": [], + "upholsterers": [], + "hotfootings": [], + "Arline": ["M"], + "fiat'ses": [], + "keysing": [], + "Arequipa": ["M"], + "gyrateds": [], + "remedial": [], + "rudders's": [], + "Roentgen": [], + "lifesavers": [], + "Torquemada": ["M"], + "renovators": [], + "lxvi": [], + "troy": ["S"], + "agglutinate": ["D", "S", "X", "G", "N"], + "Roger": ["M", "S"], + "sybarite's": [], + "windmill'sed": [], + "mushed": [], + "racists's": [], + "emulation": ["M"], + "standard's": [], + "paterfamiliases": [], + "southwest's": [], + "colorlessness": ["M"], + "owninged": [], + "slog": ["M", "S"], + "plunk's": [], + "fillips": [], + "hairstyle": ["M", "S"], + "movesable": [], + "bushwhacker's": [], + "pillows": [], + "chattererers": [], + "nonstarter's": [], + "resounds": [], + "promisingly": [], + "balsamic": [], + "owed": [], + "certifiesing": [], + "magnanimity": ["M"], + "grandiosity": ["M"], + "Franz": ["M"], + "tiredness": ["M"], + "schedule's": [], + "rookery's": [], + "biweekly's": [], + "bionics's": [], + "napalms": [], + "transition's": [], + "escalope": ["S"], + "mutton's": [], + "worsens": [], + "woozier": [], + "lobbyist": ["M", "S"], + "playfulnessly": [], + "biotin": ["M"], + "extractor": ["M", "S"], + "involuntarily": [], + "Poznan": ["M"], + "overvalues": [], + "henchman": ["M"], + "Victor's": [], + "dipole": ["S", "M"], + "shuns": [], + "notatinged": [], + "sunbelt": ["S", "M"], + "crassly": [], + "slammers's": [], + "realty's": [], + "gorily": [], + "elementally": [], + "pulsar's": [], + "hiatus'ses": [], + "blessings": [], + "compromisinged": [], + "wakefulness": ["M"], + "colonelcy": ["M"], + "untruth's": [], + "cuff'sed": [], + "empiricist's": [], + "eyelash": ["M", "S"], + "begum'ses": [], + "radicalism": ["M"], + "ternaries's": [], + "squeezersing": [], + "Linux's": [], + "branch'sed": [], + "temp": ["M", "D", "R", "Z", "T", "G", "S"], + "securing": [], + "flashlight": ["M", "S"], + "gnarls": [], + "meretriciousness": ["M"], + "lead": ["M", "D", "N", "R", "S", "Z", "G"], + "ejaculation": ["M"], + "availeds": [], + "infusion": [], + "Welshmen": ["M"], + "ballses": [], + "slications": [], + "scrambleds": [], + "rocketeds": [], + "outdistances": [], + "starchiest": [], + "tempestuously": [], + "receptiveness's": [], + "apportioning": [], + "Deirdre": ["M"], + "prissily": [], + "balaclava's": [], + "Tacitus's": [], + "creches's": [], + "vinyl": ["S", "M"], + "restring": ["S", "G"], + "carcass'ses": [], + "hobby": ["S", "M"], + "Libras": [], + "federal": ["S", "M", "Y"], + "gestalt": ["S"], + "happiest": [], + "sqq": [], + "chevron'ses": [], + "triumphant": ["Y"], + "underlie": ["S"], + "cobwebbier": [], + "nullifies": [], + "zither'ses": [], + "unnamed": [], + "Braille's": [], + "gradateds": [], + "discrepancies's": [], + "Bulgari's": [], + "poohed": [], + "aides's": [], + "Franciscans": [], + "slices's": [], + "underestimatingen": [], + "embroilment": ["M"], + "intimatelying": [], + "cotton": ["S", "G", "M", "D"], + "cultural": ["Y"], + "lengthinesser": [], + "painfulness's": [], + "federateds": [], + "triumphantly": [], + "resultant": ["S", "M"], + "mastermind's": [], + "Boris's": [], + "collegian's": [], + "tech's": [], + "flexion": [], + "Gouda's": [], + "squeegeed": [], + "grizzled": [], + "parking's": [], + "waltzeder": [], + "musketeer's": [], + "surcharges's": [], + "insurances's": [], + "forum": ["S", "M"], + "famished": [], + "tribulations's": [], + "portaging": [], + "disturbsed": [], + "bootstraps": [], + "sepulchering": [], + "respellinged": [], + "nitration's": [], + "sixties": [], + "gainsaying": [], + "carryalls's": [], + "rewriting": [], + "zipping": ["U"], + "polarity's": [], + "piper": ["M"], + "uptakes": [], + "lungs": [], + "boners": [], + "heap'sed": [], + "senator's": [], + "acerbatesing": [], + "passageway": ["M", "S"], + "reason'sed": [], + "Neapolitan": ["M"], + "nonproliferation's": [], + "blanker": [], + "naturals": [], + "plait'sed": [], + "seaplanes's": [], + "elitist's": [], + "persuasion": ["S", "M"], + "conciser": [], + "landfill": ["M", "S"], + "dissociates": [], + "recede": [], + "archly": [], + "tact's": [], + "upwardly": [], + "Neogene": ["M"], + "feminize": ["D", "S", "G"], + "O'Toole's": [], + "ornithology's": [], + "capitalize": ["A", "D", "S", "G"], + "admonishments": [], + "Pyongyang": ["M"], + "shrimp's": [], + "hush": ["M", "D", "S", "G"], + "undermine": ["G", "D", "S"], + "moralities": [], + "particulate's": [], + "swelter": ["S", "G", "M", "D"], + "outarguinged": [], + "incarnation": ["A", "M"], + "postilion": ["S", "M"], + "notarize": ["G", "D", "S"], + "starched": [], + "rapports": [], + "appendages's": [], + "herniate": ["G", "N", "D", "S"], + "invited": ["U"], + "coverts": [], + "amplifiers": [], + "snowshoe's": [], + "naught'ses": [], + "jumpier": [], + "Cantonese's": [], + "diff": ["D", "R", "Z", "G", "S"], + "pulp'sed": [], + "McLean": ["M"], + "signaleder": [], + "Rwandan": ["S", "M"], + "paddlers": [], + "ready": ["D", "R", "S", "T", "G", "P"], + "serpent's": [], + "whoreish": [], + "mateys": [], + "winterizeds": [], + "helpfulness": ["M"], + "valuer": ["S", "M"], + "exaggerator's": [], + "phonetically": [], + "snacking": [], + "monarchists": [], + "democracy's": [], + "Heywood": ["M"], + "shoplifter's": [], + "martyr'sed": [], + "ensuesing": [], + "patrol": ["M", "S"], + "Chattanooga's": [], + "incongruity": [], + "stomps's": [], + "lubricateds": [], + "anticlimax's": [], + "fresh": ["P", "N", "R", "Y", "X", "Z", "T"], + "incongruous": ["P", "Y"], + "scrapheap's": [], + "hardtops": [], + "shirkers": [], + "Wozzeck's": [], + "Tagus": ["M"], + "meatball'ses": [], + "derelicts": [], + "skua": ["S"], + "tyrannizing": [], + "Hamsun": ["M"], + "blocker": ["M", "S"], + "punster's": [], + "battledores": [], + "saltshakers's": [], + "inherit": ["E", "G", "S", "D"], + "hypodermic": ["M", "S"], + "Serbs": [], + "drill's": [], + "adored": [], + "misdeal'ses": [], + "coffin's": [], + "photographs": ["A"], + "merchantable": [], + "penniless": [], + "metallurgic": [], + "obsolescence": ["M"], + "keyboard'sed": [], + "Lamborghini": ["M"], + "thirtieth": ["M"], + "wimp": ["M", "D", "S", "G"], + "excursiveliness": [], + "humerus": ["M"], + "overoptimistic": [], + "instant'ser": [], + "wittersing": [], + "screwsing": [], + "restructure": [], + "brutally": [], + "sparkle": ["D", "R", "S", "M", "Z", "G"], + "pupatesing": [], + "gentrify": ["D", "S", "G", "N"], + "dendrites's": [], + "pharisee's": [], + "rattrap's": [], + "Brandi's": [], + "toms's": [], + "Thessalonians": [], + "fen": ["S", "M"], + "countermeasures": [], + "adjoining": [], + "conqueror": ["M", "S"], + "in": ["A", "S", "M"], + "yeshiva's": [], + "snore's": [], + "solarium's": [], + "feignsed": [], + "brooding": ["M", "Y"], + "overhauling": [], + "Marie": ["M"], + "chewed": [], + "duck": ["M", "D", "G", "S"], + "subtle": ["T", "R"], + "eroded": [], + "brassily": [], + "resumption": ["M", "S"], + "discommodeding": [], + "embezzles": [], + "follies's": [], + "springboks": [], + "Serbian'ses": [], + "straightforwardnesses": [], + "adjusters's": [], + "carthorse's": [], + "turnkey": ["M", "S"], + "grub": ["M", "S"], + "polytheist's": [], + "indies": [], + "Guatemalan'ses": [], + "cider": ["S"], + "barterers": [], + "furors": [], + "Benet": ["M"], + "supergrass": ["S"], + "gladdest": [], + "stork's": [], + "McKay's": [], + "Carborundum": ["M"], + "discontinue": [], + "arrest": ["A", "G", "M", "D", "S"], + "picketeder": [], + "siringed": [], + "fullings": [], + "dung": ["M", "D", "G", "S"], + "Robyn": ["M"], + "perpendicular's": [], + "cads": [], + "loutishnessly": [], + "adrenaline's": [], + "inelastic": [], + "apocryphal": ["Y"], + "excision": ["M"], + "housemaids's": [], + "vends": [], + "colorblind": ["P"], + "denudes": [], + "bicarbonates": [], + "Moldavia": ["M"], + "doll'sed": [], + "baksheesh's": [], + "T": ["M", "D", "G"], + "malformations's": [], + "albacores's": [], + "bravo": ["S", "M"], + "vermin's": [], + "Bugatti's": [], + "novelization's": [], + "philanthropist'ses": [], + "Nancy's": [], + "misreporteding": [], + "ionizesing": [], + "dungeding": [], + "headrest's": [], + "overdue": [], + "graveside'ses": [], + "furnishesing": [], + "wiseder": [], + "confidences's": [], + "brilliantly": [], + "logotype's": [], + "separatist": ["M", "S"], + "Co's": [], + "littleness's": [], + "evincesing": [], + "sportsperson": [], + "menageries": [], + "blowziest": [], + "catharses": [], + "bloodmobile'ses": [], + "rightest": [], + "boy's": [], + "vertices": [], + "Capra's": [], + "Sufism's": [], + "crag": ["M", "S"], + "flake'sing": [], + "staggers": [], + "fabric": ["S", "M"], + "viscountcies": [], + "flounced": [], + "tragedies": [], + "manicured": [], + "sandblaster": ["M"], + "Tigris's": [], + "defendants's": [], + "curb's": [], + "avoids": [], + "brigadier's": [], + "chamomile'ses": [], + "juicy": ["P", "T", "R"], + "intimidateds": [], + "outworkers": [], + "rattlebrained": [], + "glades": [], + "asterisk'sed": [], + "stashes": [], + "overloads": [], + "Sunni's": [], + "Medicaid's": [], + "metropolis'ses": [], + "taunter's": [], + "rosining": [], + "eyepiece'ses": [], + "visinged": [], + "garfish's": [], + "misdirection": ["M"], + "traipseds": [], + "radioisotope'ses": [], + "hammertoes": [], + "jetliner's": [], + "parceleds": [], + "harpooning": [], + "girth": ["M"], + "brogues": [], + "unremittingly": [], + "bouzoukis": [], + "Benjamin's": [], + "flowerbed'ses": [], + "Selznick": ["M"], + "stultifieds": [], + "rootlets's": [], + "baffle's": [], + "hydrology's": [], + "aborteds": [], + "Cockney": ["M"], + "Angevin": ["M"], + "Soyuz's": [], + "showplaces": [], + "skateboarding": ["M"], + "libeling's": [], + "outwork": ["M", "D", "R", "S", "Z", "G"], + "headphone's": [], + "Krugerrand": ["M"], + "cruets": [], + "glen'ses": [], + "subjunctives's": [], + "peewit": ["S"], + "incise": ["X", "G", "N", "V", "D", "S"], + "haloing": [], + "stiffens": [], + "nicely": [], + "stroking": [], + "vitrified": [], + "remind": [], + "startle": ["G", "D", "S"], + "notepads": [], + "tugs's": [], + "midyear": ["M", "S"], + "browser": ["M"], + "cogitator": ["M", "S"], + "expostulation's": [], + "dewier": [], + "crows": [], + "airworthiness's": [], + "flatware's": [], + "jihads's": [], + "mishaps": [], + "loggerhead's": [], + "cloverleaf": ["S", "M"], + "intimationed": [], + "repulsion": ["M"], + "features's": [], + "ordinary": ["S", "M", "P"], + "hippos's": [], + "acuters": [], + "rind'ses": [], + "reciprocates": [], + "griminess": ["M"], + "ranginess": ["M"], + "pleasant": ["U", "T", "Y", "P"], + "enveloper's": [], + "negligee's": [], + "pension": ["B", "Z", "G", "M", "D", "R", "S"], + "Mauricio's": [], + "Venezuela": ["M"], + "burnoose's": [], + "spuriously": [], + "sayings": [], + "lockets": [], + "singing's": [], + "anguishing's": [], + "cereal": ["M", "S"], + "debtor": ["M", "S"], + "Renaissance's": [], + "porousness": ["M"], + "sneezes": [], + "Orient": ["M"], + "cortisone": ["M"], + "figment's": [], + "wrestlers": [], + "dirges's": [], + "aortas": [], + "raw's": [], + "croftser": [], + "warily": ["U"], + "mooching's": [], + "adjourneding": [], + "Theresa": ["M"], + "cologne's": [], + "Superbowl": ["M"], + "addling": [], + "reconnaissance'ses": [], + "makers's": [], + "cloches's": [], + "doomsayers": [], + "driveshafts": [], + "simmering": [], + "plashing": [], + "Hades": ["M"], + "toreador": ["M", "S"], + "mugwump": ["M", "S"], + "seaward's": [], + "latrine": ["M", "S"], + "convergence's": [], + "toed": [], + "pawn": ["M", "D", "S", "G"], + "gyro's": [], + "phlegm's": [], + "mishandled": [], + "franchising": [], + "shine'ses": [], + "uvulars": [], + "Canterbury": ["M"], + "slackness": ["M"], + "disbelievingly": [], + "speechified": [], + "mover": ["A", "M"], + "invisible": [], + "symposium": ["M", "S"], + "mislabels": [], + "straightening": [], + "Eucharist's": [], + "sinewy": [], + "connivesers": [], + "opossum'ses": [], + "chalices": [], + "enclave'ses": [], + "beleaguer": ["G", "S", "D"], + "windows": [], + "Eeyore's": [], + "slivering": [], + "Palisades": ["M"], + "troubadour's": [], + "bushing": ["M"], + "wing": ["M", "D", "R", "Z", "G"], + "turps": [], + "Slovaks's": [], + "bijoux": [], + "pig's": [], + "prizewinner'ses": [], + "squelcheds": [], + "zinnia": ["M", "S"], + "Plasticine's": [], + "Maseru's": [], + "Sam's": [], + "venerates": [], + "intersecting": [], + "Crusades's": [], + "cartridge's": [], + "vitiatingen": [], + "slattern's": [], + "asphalted": [], + "weeping": [], + "primroses": [], + "dingus'ses": [], + "Shaula": ["M"], + "strewn": [], + "suppression": ["M"], + "metricizes": [], + "interstitial": [], + "copycat's": [], + "enfiladeds": [], + "Fay's": [], + "ambuscades": [], + "volley's": [], + "overproduction": ["M"], + "escapist's": [], + "Bianca's": [], + "Teutonic's": [], + "unmarked": [], + "scours": [], + "edgy": ["R", "T", "P"], + "alkalinity's": [], + "keying's": [], + "begriming": [], + "moonshine'sers": [], + "gluey": [], + "convulsive": ["Y"], + "Chechnya": ["M"], + "telephoneder": [], + "bios": [], + "streaking": [], + "grandparents": [], + "buttocks": [], + "beefcake's": [], + "redrawn": [], + "alarms": [], + "allure'sing": [], + "weapons": [], + "riverbank's": [], + "puke'sing": [], + "chinwags": [], + "addsed": [], + "four": ["M", "H", "S"], + "smellierness": [], + "alleluias's": [], + "agglomerated": [], + "blackish": [], + "inquirers": [], + "turtledoves's": [], + "Minolta's": [], + "homering": [], + "soaking": ["M"], + "charade's": [], + "donors": [], + "gourmand's": [], + "capstones": [], + "admireder": [], + "limper": [], + "swains": [], + "perishes": [], + "crowd": ["S", "M", "D", "G"], + "highlighted": [], + "drubbing": ["M", "S"], + "jumble's": [], + "flails": [], + "toward": ["S"], + "demitasse'ses": [], + "escalator": ["M", "S"], + "Zeke's": [], + "linesman's": [], + "reveler": ["M"], + "riyals": [], + "squealer": ["M"], + "chalking's": [], + "easing": [], + "thickheaded's": [], + "embolden": ["D", "G", "S"], + "vetoeding": [], + "DPs": [], + "Kasparov's": [], + "wigwam's": [], + "purifiesers": [], + "Tabasco's": [], + "Sterling": ["M"], + "corruptness": ["M"], + "flattersed": [], + "sweatband'ses": [], + "bottlers": [], + "borer": ["M"], + "Carib's": [], + "astounded": [], + "breastwork": ["M", "S"], + "bonobos": [], + "Cross": ["M"], + "teletexts": [], + "scoping": [], + "ambition": ["M", "S"], + "mantel'ses": [], + "adulterers": [], + "zephyr'ses": [], + "martinet'ses": [], + "affiliateds": [], + "decimate": ["D", "S", "G", "N"], + "bakeshop's": [], + "coagulating": [], + "Decker's": [], + "agglomerates": [], + "nightsticks": [], + "pivots": [], + "motels": [], + "thistle'ses": [], + "overfilleding": [], + "bankbook": ["S", "M"], + "stammering's": [], + "flatfoot": ["S", "M", "D"], + "aortic": [], + "cravingings": [], + "baldfaced": [], + "enplaning": [], + "skives": [], + "pedagogue": ["S", "M"], + "curability": ["M"], + "reviser's": [], + "tadpole": ["M", "S"], + "temporarily": [], + "despotically": [], + "bloodsuckers": [], + "Norfolk": ["M"], + "knickknack'ses": [], + "excl": [], + "undervaluing": [], + "jellyrolls": [], + "glottis": ["M", "S"], + "upsilons": [], + "obscurantist's": [], + "elem": [], + "illumines": [], + "Oracle's": [], + "crawls": [], + "hopefulness": ["M"], + "objectionable": ["U"], + "dervishes": [], + "cultist": ["M", "S"], + "booming": [], + "dogs": [], + "treble's": [], + "aggrieve": ["D", "S", "G"], + "salad's": [], + "cutbacks": [], + "visualizing": [], + "taxes": [], + "pleadings": [], + "elaborationed": [], + "groutsing": [], + "dump's": [], + "Jagger's": [], + "sepsis's": [], + "Wiggins": ["M"], + "fluid": ["S", "M", "Y"], + "buttoned": [], + "headwinds's": [], + "longshoreman": ["M"], + "enfilades's": [], + "jellyroll": ["S", "M"], + "epicure": ["S", "M"], + "letterpress": ["M"], + "ruff's": [], + "smolder": ["S", "G", "M", "D"], + "Senate'ses": [], + "pitchfork": ["M", "D", "S", "G"], + "breeze'sing": [], + "Trollope": ["M"], + "fluke": ["S", "M"], + "beakeder": [], + "incompatibilities": [], + "barrel's": [], + "trampolineds": [], + "foiled": [], + "Dorsey's": [], + "explication": ["M"], + "workroom's": [], + "aught": ["M", "S"], + "gibbet'sed": [], + "Arkansas's": [], + "slab": ["M", "S"], + "quintuple'sing": [], + "consulting": [], + "KFC's": [], + "bunker": ["S", "M"], + "lobby's": [], + "gatecrashers": [], + "quagmires": [], + "newton": ["M", "S"], + "clodhopper": ["M", "S"], + "beneficial": ["Y"], + "Genesis's": [], + "schwas": [], + "prehistorian": ["S"], + "Pliocenes": [], + "touchablings": [], + "carbonated": [], + "poppies's": [], + "chimney": ["M", "S"], + "peepshow'ses": [], + "tubeder": [], + "subalterns": [], + "grapeshot": ["M"], + "constitutional": ["M", "Y", "S"], + "Gauguin's": [], + "advantage'sing": [], + "conretest's": [], + "freezes": [], + "reflating": [], + "magpie": ["M", "S"], + "incommunicable": [], + "Harrington": ["M"], + "striker": ["M"], + "allegretto": ["M", "S"], + "Cameroon": ["S", "M"], + "univalves": [], + "accessorizing": [], + "Dietrich": ["M"], + "goldbrick's": [], + "hereafter": ["S", "M"], + "leapers": [], + "irritant's": [], + "Barbary": ["M"], + "emptier": [], + "cashbook": ["M", "S"], + "schmoozing": [], + "absolved": [], + "eclipsed": [], + "tendering": [], + "Estelle": ["M"], + "caused": [], + "birthplaces": [], + "tough": ["X", "T", "G", "M", "D", "N", "R", "Y", "P"], + "lackey": ["S", "M"], + "Jakarta's": [], + "touchpaper": ["S"], + "suaveness's": [], + "traditionalists": [], + "Timmy's": [], + "culprit's": [], + "leaseholders": [], + "safeguard's": [], + "aliens": [], + "eyeglass'ses": [], + "pimiento'ses": [], + "womanly": ["R", "P", "T"], + "nonparticipating": [], + "recitals": [], + "locale's": [], + "Dirichlet's": [], + "streetwalker": ["S", "M"], + "tethers's": [], + "patent's": [], + "associates": [], + "acquaintanceship": ["M"], + "timpanists": [], + "TDD": [], + "Lily": ["M"], + "teetotalism": ["M"], + "deadlocks": [], + "bore": ["D", "R", "S", "M", "Z", "G"], + "codpieces": [], + "theoretician": ["S", "M"], + "glazed": [], + "rectangles": [], + "lobs's": [], + "revisions": [], + "spat": ["M", "S"], + "fiendish": ["Y"], + "estuary's": [], + "inwardly": [], + "tootling": [], + "tympanist's": [], + "Campbell": ["M"], + "graceds": [], + "aspiration": ["M"], + "amortizeds": [], + "niggers's": [], + "bogs": [], + "ester's": [], + "hector": ["S", "M", "D", "G"], + "autoworker'ses": [], + "tollgate's": [], + "gossipy": [], + "oversuspicious": [], + "clutcheds": [], + "thingamabobs": [], + "Maritain": ["M"], + "sou's": [], + "entailsing": [], + "embarrassmented": [], + "photoed": [], + "concentration's": [], + "wallings": [], + "limpets": [], + "impostor": ["S", "M"], + "patent'sed": [], + "paleographer": ["M", "S"], + "Himalaya's": [], + "neateninged": [], + "communingen": [], + "ambulatory's": [], + "trousseau": ["M"], + "grok": ["S"], + "jumpeder": [], + "mention'sed": [], + "indentations": [], + "tapers": [], + "busying": [], + "waveform": [], + "fantasia's": [], + "anapests's": [], + "feathersing": [], + "pederasts": [], + "crupper": ["M", "S"], + "vespers": [], + "blueprint": ["M", "D", "G", "S"], + "misanthropes": [], + "aeronautic": ["S"], + "thinness's": [], + "duskiness": ["M"], + "Colgate": ["M"], + "embryological": [], + "lifelessly": [], + "paramount": [], + "moll'ses": [], + "bereft": [], + "synchronization's": [], + "pompoms's": [], + "smooched": [], + "hummer's": [], + "save": ["B", "J", "M", "Z", "G", "D", "R", "S"], + "transmittal": ["M"], + "synods's": [], + "overpaying": [], + "catty": ["T", "P", "R"], + "superscription's": [], + "Narragansett's": [], + "opeding": [], + "Cameroons": [], + "parentheses": [], + "Evangelical": [], + "sadomasochism's": [], + "minaret": ["M", "S"], + "bellybuttons's": [], + "humbling": [], + "Sodom": ["M"], + "Kusch": ["M"], + "overlays's": [], + "gibes": [], + "hierarchic": [], + "universes's": [], + "disproclaim": [], + "vexinged": [], + "acres": [], + "diligently": [], + "Burma's": [], + "tiramisu'ses": [], + "Lordships": [], + "gashesing": [], + "acupuncture": ["M"], + "carefulness": ["M"], + "localize": ["D", "S", "G"], + "advisories's": [], + "armor's": [], + "touch's": [], + "satirizeds": [], + "twist's": [], + "oarswoman": ["M"], + "Jockey's": [], + "shusheds": [], + "wildcards": [], + "steelworks's": [], + "sec": ["S", "M"], + "skylights": [], + "deadliest": [], + "Elvira": ["M"], + "stocks": [], + "pane": ["K", "M"], + "skulksed": [], + "madras's": [], + "Peale": ["M"], + "Katrina's": [], + "cornucopias": [], + "terseness's": [], + "Dionysian's": [], + "hallmarking's": [], + "projecting": [], + "omnibuses": [], + "puppeteer": ["S", "M"], + "nos": [], + "pinkness": ["M"], + "subtraction": ["S", "M"], + "Stan": ["M"], + "presenters": [], + "Mable's": [], + "goldsmith's": [], + "Onegin": ["M"], + "Kanpur": ["M"], + "pieder": [], + "wrasses": [], + "logins's": [], + "pis's": [], + "tieback'ses": [], + "Korea": ["M"], + "sine's": [], + "fragmenting's": [], + "emoted": [], + "emergence": ["A", "M"], + "voraciousnessly": [], + "massif's": [], + "ethnically": [], + "dodge'sers": [], + "Intelsat's": [], + "Demeter": ["M"], + "caretaker": ["M", "S"], + "evasion's": [], + "cupidity's": [], + "herpetologists": [], + "Alpert": ["M"], + "game": ["M", "Y", "T", "G", "D", "R", "S", "P"], + "tenterhook'ses": [], + "crossbowmen": [], + "remonstrate": ["D", "S", "G"], + "Rodriquez": ["M"], + "Alyson": ["M"], + "bewitchingly": [], + "contestable": ["I"], + "pilaf": ["S", "M"], + "Arnold": ["M"], + "MasterCard's": [], + "likability": ["M"], + "flashback's": [], + "Wobegon's": [], + "scorcher's": [], + "laced": [], + "adsorbs": [], + "Bizet's": [], + "incantations": [], + "Reggie": ["M"], + "languors": [], + "rustiness": ["M"], + "psychedelic's": [], + "retraceds": [], + "esteemeding": [], + "hype's": [], + "sideline": ["D", "S", "M", "G"], + "razzed": [], + "Sakhalin": ["M"], + "illegality": ["S", "M"], + "dawdler's": [], + "watched": [], + "quadrants": [], + "gulp'sed": [], + "agglutinatesens": [], + "Archie": ["M"], + "chokes": [], + "endpoint's": [], + "inanimateness": ["M"], + "reciprocateds": [], + "Peters": ["M", "N"], + "mummifyingen": [], + "bandanna": ["M", "S"], + "Micronesia's": [], + "bisector": ["S", "M"], + "sort's": [], + "harlequin's": [], + "producersing": [], + "entryway": ["M", "S"], + "Nintendo's": [], + "jobber": ["S", "M"], + "zapper's": [], + "silkworm's": [], + "slackest": [], + "fault's": [], + "costings": [], + "mummies": [], + "Philemon's": [], + "Barranquilla": ["M"], + "sinuosity's": [], + "equestrians": [], + "sharpnessens": [], + "droplets": [], + "council": ["M", "S"], + "bazaar": ["S", "M"], + "debate": ["B", "M", "Z", "R"], + "breakwater": ["S", "M"], + "minimizesing": [], + "Isis": ["M"], + "hackers": [], + "mastectomy": ["S", "M"], + "parenthesizesing": [], + "lecherousness": ["M"], + "pecked": [], + "besotting": [], + "salmonellae": [], + "Gregorian": ["M"], + "blitz": ["G", "M", "D", "S"], + "scrapping": [], + "wows": [], + "Zoroastrian's": [], + "sublet": ["S", "M"], + "reportage's": [], + "Erlenmeyer": ["M"], + "porterhouse's": [], + "sneers": [], + "huzzahs": [], + "difficult": ["Y"], + "conjoint": [], + "scrapyards's": [], + "quirkiness's": [], + "federation's": [], + "dirtballs": [], + "ninny's": [], + "herbicides": [], + "Lela": ["M"], + "sodomy": ["M"], + "popinjays": [], + "respiratory": [], + "vagrant": ["M", "S"], + "exploit'sed": [], + "panaceas": [], + "footballer's": [], + "objectifieds": [], + "aprons": [], + "payoff'ses": [], + "Provencal's": [], + "hypercritically": [], + "planinged": [], + "juiciness's": [], + "lessee's": [], + "decidinged": [], + "puddled": [], + "profaninged": [], + "condom": ["S", "M"], + "teargas": ["M", "S"], + "like's": [], + "imprecisely": [], + "doghouses": [], + "motherboards": [], + "belittlemented": [], + "brake's": [], + "volumes": [], + "rubbernecks": [], + "epigraphs": [], + "innocuousnessly": [], + "patentedly": [], + "circumlocution's": [], + "silkworm'ses": [], + "unlimber": [], + "grands's": [], + "tauter": [], + "dowel's": [], + "warhorse": ["S", "M"], + "Apatosaurus": [], + "arguments": [], + "Holt": ["M"], + "pans's": [], + "ensue": ["D", "S", "G"], + "thud'ses": [], + "excepted": [], + "paltry": ["R", "P", "T"], + "mangers": [], + "popup": ["M", "S"], + "muezzin's": [], + "syncs": [], + "ententes": [], + "digital": ["Y"], + "Tanganyika": ["M"], + "pitiless": ["P", "Y"], + "dickey's": [], + "idyllically": [], + "insolubly": [], + "Gnostic": ["M"], + "sylphic": [], + "Wagnerian": ["M"], + "YouTube": ["M"], + "misgovern": ["S", "D", "G", "L"], + "planet's": [], + "VAXes": [], + "spinnakers": [], + "Maiman's": [], + "geekiest": [], + "sidetracking": [], + "selector'ses": [], + "starlight's": [], + "difference": ["I", "M"], + "radio'sed": [], + "Persian": ["S", "M"], + "solemnized": [], + "nominations": [], + "inconclusiveness": [], + "keypads's": [], + "pronunciation": ["M", "S"], + "Cancun": ["M"], + "joyousness's": [], + "junkie's": [], + "morbidity's": [], + "pawnsing": [], + "fondly": [], + "caversing": [], + "proctors": [], + "electrocardiographs": [], + "nightclubs's": [], + "ferries": [], + "privation": ["C", "S", "M"], + "congruent": ["Y"], + "instantiateds": [], + "brew": ["M", "D", "R", "Z", "G", "S"], + "caret": ["M", "S"], + "lopping": [], + "Lucio": ["M"], + "whiffeding": [], + "carnivorous": ["P", "Y"], + "mickeys": [], + "runic": [], + "parity's": [], + "dabber": ["M", "S"], + "graphically": [], + "teabags": [], + "Dvorak": ["M"], + "mayflowers": [], + "coil's": ["A"], + "Padilla's": [], + "inborn": [], + "brotherhood'ses": [], + "Weinberg's": [], + "fragrances": [], + "Stolypin": ["M"], + "perimeter": ["S", "M"], + "pikers": [], + "baseds": [], + "Edwardo": ["M"], + "pledgeds": [], + "liveryman's": [], + "aegis": ["M"], + "scrubber's": [], + "glow": ["M", "D", "R", "Z", "G", "S"], + "prominence": ["M"], + "dominant": ["S", "M", "Y"], + "cannibalizeds": [], + "monkshood's": [], + "spindle": ["M", "G", "D", "S"], + "stableder": [], + "sublimest": [], + "minstrels": [], + "Duffy's": [], + "rapids": [], + "lowers": [], + "performing": [], + "runoffs": [], + "nerviest": [], + "cellos": [], + "pulsinged": [], + "maximal": ["Y"], + "majoring": [], + "affordability": [], + "peradventure": ["M"], + "superchargeder": [], + "member": ["E", "A", "S"], + "lion": ["M", "S"], + "dais's": [], + "jiggers": [], + "twenties's": [], + "casinos": [], + "Saab": ["M"], + "substratum": ["M"], + "boasteder": [], + "Spence": ["R", "M"], + "valances": [], + "rescuer": ["M"], + "upbeat'ses": [], + "Callie's": [], + "Berkshires's": [], + "secularizes": [], + "dashiki's": [], + "shift's": [], + "Jefferson's": [], + "Teasdale": ["M"], + "Sundanese's": [], + "Seoul's": [], + "demographically": [], + "timed": [], + "UN's": [], + "knighted": [], + "bureaucratized": [], + "seatinged": [], + "coalfield": ["S"], + "indium's": [], + "lean's": [], + "pill'sed": [], + "Brighton": ["M"], + "louvered": [], + "calcined": [], + "schmooze": ["D", "R", "S", "Z", "G"], + "asexuality": ["M"], + "mandatory": [], + "overture": ["M", "S"], + "enameler": ["M"], + "dorsally": [], + "semimonthly": ["S", "M"], + "squirtsing": [], + "Ms's": [], + "intermarriages": [], + "comer": [], + "windups's": [], + "vitriol": ["M"], + "eisteddfods": [], + "apprentice": ["D", "S", "M", "G"], + "inlaid": [], + "boonies's": [], + "chastening": [], + "overstimulated": [], + "sandbags": [], + "Benin's": [], + "skipper's": [], + "morrows": [], + "ads's": [], + "mesons": [], + "polemically": [], + "sprigged": [], + "Jungian's": [], + "brandies's": [], + "Lyly's": [], + "Zelig": ["M"], + "Liverpudlian": ["S", "M"], + "bordellos": [], + "elastic's": [], + "shape": ["A", "G", "D", "S"], + "fiction's": [], + "seismographer's": [], + "Saladin's": [], + "glockenspiels's": [], + "snobs": [], + "causative": [], + "surceases's": [], + "virtual": ["Y"], + "plume'ses": [], + "Hopkins's": [], + "rathskeller's": [], + "functionally": [], + "sidekick's": [], + "Rose's": [], + "micros": [], + "Marcie": ["M"], + "semblances": [], + "elicitation": ["M"], + "harassersing": [], + "segment's": [], + "haplessness": ["M"], + "toileteding": [], + "subsection": ["M", "S"], + "shelveds": [], + "Yanks's": [], + "diggers's": [], + "consumption's": [], + "nonspecific": [], + "Oceanus": ["M"], + "Huntington": ["M"], + "DOB": [], + "hangingsers": [], + "enfranchisinged": [], + "breezing": [], + "whitewash": ["M", "D", "S", "G"], + "courtship's": [], + "extreme's": [], + "Eaton": ["M"], + "chlorofluorocarbon": ["S", "M"], + "hitched": [], + "amoeba's": [], + "freshly": [], + "gender": ["M", "D", "S"], + "buzzesers": [], + "appetizer's": [], + "privilege": ["D", "S", "M", "G"], + "dollar": ["S", "M"], + "genome'ses": [], + "moisturize": ["Z", "G", "D", "R", "S"], + "bluets": [], + "posture'sing": [], + "pener": [], + "deserteder": [], + "aeronautics": ["M"], + "undisciplined": [], + "taxable": [], + "clutter'sed": [], + "barnstormer's": [], + "Ojibwas": [], + "swindle's": [], + "envelope": ["S", "M"], + "cookwares": [], + "beget": ["S"], + "arroyo's": [], + "vouchersing": [], + "hospitals": [], + "deg": [], + "cayuse'ses": [], + "majored": [], + "headbanging": [], + "bookmaking's": [], + "Kline": ["M"], + "compactor": ["S", "M"], + "congregationalists": [], + "Zambezi": ["M"], + "meters": [], + "Stacy's": [], + "living's": [], + "deliriousness": ["M"], + "Kirsten's": [], + "squeaks": [], + "maids": [], + "betokening": [], + "chinked": [], + "expeditious": ["P", "Y"], + "muezzin": ["M", "S"], + "revealingings": [], + "nauseousness": ["M"], + "Mithridates": ["M"], + "ADD": [], + "plague": ["D", "S", "M", "G"], + "formidable": [], + "nauseateds": [], + "endive's": [], + "entreaty": ["S", "M"], + "veep": ["M", "S"], + "ailsed": [], + "guild'ser": [], + "lamplighters": [], + "meander'sed": [], + "laundry's": [], + "Senegal's": [], + "hookahs": [], + "strophes's": [], + "whiteness": ["M"], + "Astoria": ["M"], + "infatuatesens": [], + "matchmaker'ses": [], + "crinolines's": [], + "succulence's": [], + "rabies": ["M"], + "nonparallel": ["M", "S"], + "campus": ["M", "S"], + "bothers's": [], + "aliment's": [], + "lunches": [], + "Minuit": ["M"], + "equestrian": ["S", "M"], + "thrusts": [], + "hods's": [], + "Lenoir": ["M"], + "wordiest": [], + "lasing": [], + "innovation": ["M"], + "Warren's": [], + "reassemble": [], + "Latisha's": [], + "corporatelication": [], + "unorganized": [], + "munitionings": [], + "constructional": [], + "frayings": [], + "bilingualism's": [], + "ruffs": [], + "rd": [], + "jabbereder": [], + "teargases": [], + "giggles's": [], + "elixir": ["S", "M"], + "seawall'ses": [], + "imponderable'ses": [], + "louver's": [], + "peeps": [], + "grainy": ["P", "T", "R"], + "coalescinged": [], + "Augean": ["M"], + "Nantes": ["M"], + "Chiquita's": [], + "envied": [], + "Staples": ["M"], + "underestimate": ["D", "S", "M", "G", "N", "X"], + "shampooer's": [], + "tumbrel's": [], + "Parsons": ["M"], + "bulldogged": [], + "despoilment's": [], + "Danubian": ["M"], + "boys": [], + "survivor's": [], + "diffuselying": [], + "Suva's": [], + "gossiper": ["M"], + "tidelands's": [], + "royalist": ["S", "M"], + "partially": [], + "breakable'ses": [], + "widely": [], + "revealings": [], + "canyon": ["M", "G", "S"], + "gangings": [], + "emendation": ["M", "S"], + "bookbinderies's": [], + "fenestration": ["M"], + "Hirohito's": [], + "opportune": ["I", "Y"], + "ploys": [], + "diffracting": [], + "Angle": ["M", "S"], + "downtown": ["M"], + "verifying": [], + "lazily": [], + "outbids": [], + "ocarina's": [], + "Erato's": [], + "barcaroles": [], + "ruminate": ["X", "G", "N", "V", "D", "S"], + "emanates": [], + "lightningeds": [], + "blackheads": [], + "wannabes": [], + "hospitalization's": [], + "plateden": [], + "chargeding": [], + "mallards": [], + "ferociousnessly": [], + "crusadinged": [], + "sticky": ["P", "T", "R", "S", "M"], + "vicars": [], + "scriveners": [], + "studiously": [], + "lidless": [], + "forceps's": [], + "postulating": [], + "attribution's": [], + "redisorder": [], + "distressing": ["Y"], + "bristle": ["D", "S", "M", "G"], + "hermit": ["S", "M"], + "sarong": ["S", "M"], + "artichokes": [], + "Hoosier's": [], + "agelessness's": [], + "sousaphones": [], + "toddles": [], + "sufferer": ["M"], + "copulating": [], + "hankerses": [], + "shepherd'sed": [], + "retch": ["D", "S", "G"], + "panther'ses": [], + "account's": [], + "fugues's": [], + "bromide": ["S", "M"], + "schoolfellows's": [], + "cohesiveness": ["M"], + "adze": ["S", "M"], + "Beaufort's": [], + "ravager's": [], + "chigger's": [], + "bulldozed": [], + "clerk'sed": [], + "Scorsese": ["M"], + "panhandles": [], + "elevated": [], + "uncollected": [], + "biodegradable": [], + "registrar's": [], + "pups's": [], + "Marne": ["M"], + "staggerings": [], + "hocksing": [], + "contextual": [], + "butternuts's": [], + "contradictions": [], + "electronica's": [], + "wooding": [], + "unilateral": ["Y"], + "Leopold": ["M"], + "grump": ["S", "M"], + "textile's": [], + "bravuras's": [], + "MiG's": [], + "dependably": [], + "transference": ["M"], + "intuitively": [], + "spendthrift'ses": [], + "temple": ["S", "M"], + "factors": [], + "endearingment": [], + "shortfalls": [], + "chaser": ["M"], + "shelve": ["G", "D", "S"], + "startlinged": [], + "eternity": ["S", "M"], + "theorem'ses": [], + "sidewalk'ses": [], + "institutional": ["Y"], + "proffer": ["G", "M", "D", "S"], + "renouncement's": [], + "Advent'ses": [], + "Barbary's": [], + "bolderly": [], + "culotte's": [], + "insipidity's": [], + "regimental": [], + "fulfills": [], + "Agatha's": [], + "trusties": [], + "semifinalist's": [], + "equalize": ["Z", "G", "D", "R", "S"], + "preadolescences": [], + "expectsed": [], + "showroom'ses": [], + "mufflinged": [], + "Frobisher's": [], + "flophouse'ses": [], + "suppler": [], + "asset'ses": [], + "corespondent's": [], + "maidservant": ["S", "M"], + "conjoiner": [], + "blaringed": [], + "newspaperman's": [], + "aperture": ["S", "M"], + "pigheadedness's": [], + "antihistamine": ["S", "M"], + "bobolinks": [], + "footings": [], + "Raoul": ["M"], + "carper's": [], + "number's": [], + "governablement": [], + "abhorrent": ["Y"], + "heedful": ["Y"], + "exuberance's": [], + "boles": [], + "rennin": ["M"], + "trusting": ["Y"], + "weathercock'ses": [], + "diameters's": [], + "trebleds": [], + "volcano": ["M"], + "mimicry's": [], + "assemblages's": [], + "hogged": [], + "byte": ["M", "S"], + "kinksing": [], + "dilettantism": ["M"], + "Chance's": [], + "promulgated": [], + "mole's": [], + "HSBC": ["M"], + "upstairs": [], + "Copernican's": [], + "Iowa": ["S", "M"], + "totterer": ["M"], + "Hindustan's": [], + "bicuspid'ses": [], + "esquire's": [], + "whinges": [], + "hater": ["M"], + "Schlitz": ["M"], + "necks": [], + "recurrences's": [], + "implacably": [], + "appeal's": [], + "organism's": [], + "lynched": [], + "cartographers": [], + "rack'sed": [], + "extenderable": [], + "fury's": [], + "overbuys": [], + "trio": ["M", "S"], + "copieds": [], + "stigma": ["S", "M"], + "choir": ["M", "S"], + "iridium's": [], + "interposition": ["M"], + "childlessness": ["M"], + "detour": [], + "dagger'ses": [], + "aerial": ["S", "M", "Y"], + "vended": [], + "breading": [], + "democracies's": [], + "totemic": [], + "irrevocably": [], + "outlooks": [], + "freeloaders": [], + "rumples's": [], + "T'sed": [], + "smellier": [], + "Tucker's": [], + "term": ["M", "D", "Y", "G", "S"], + "inductee": ["S", "M"], + "tippers": [], + "descrieds": [], + "author'sed": [], + "chastised": [], + "Cs": [], + "petrodollar'ses": [], + "Lacey's": [], + "moldingses": [], + "sequin": ["S", "M", "D"], + "unrequited": [], + "USO": [], + "inaccessibility": [], + "stank": [], + "capriciously": [], + "enterprise": ["M", "G", "S"], + "bollixing's": [], + "leatherette": ["M"], + "operators": [], + "Tasman": ["M"], + "freezable": [], + "desirability": ["U", "M"], + "glories's": [], + "nonresident'ses": [], + "peek's": [], + "gazpacho's": [], + "seizures": [], + "flattererers": [], + "swain's": [], + "overestimated": [], + "harmonization's": [], + "Missourians": [], + "flunkies": [], + "isotherms": [], + "magnifies": [], + "cuisine's": [], + "liberalized": [], + "Dipper's": [], + "theatricality's": [], + "aborigines": [], + "straddle's": [], + "misstatinged": [], + "quarterbacking": [], + "idylls's": [], + "dumbfounds": [], + "Krakow's": [], + "neolithic": [], + "DNA": ["M"], + "snicking": [], + "personality": ["S", "M"], + "worsts": [], + "bows's": [], + "immobilizeder": [], + "behindhand": [], + "override'sing": [], + "citified": [], + "animadvertings": [], + "bayberries": [], + "bits": [], + "frying": [], + "somersetting": [], + "Sumatrans's": [], + "scoreboard": ["S", "M"], + "sextons": [], + "unabashed": [], + "treason": ["B", "M"], + "backup": ["M", "S"], + "Hormuz's": [], + "stonemason'ses": [], + "crabbiness": ["M"], + "wolverines's": [], + "snorkeler's": [], + "detonated": [], + "worshiper": ["M"], + "wino": ["M", "S"], + "Alnitak": ["M"], + "picket's": [], + "marquis": ["M", "S"], + "backing": ["M"], + "whine'sers": [], + "Anselm's": [], + "sonnets's": [], + "steppingstone": ["S", "M"], + "outpourings": [], + "catkin'ses": [], + "snookered": [], + "loses": [], + "annalists": [], + "Laurel's": [], + "Candace's": [], + "meritocracy's": [], + "exp": [], + "waxing's": [], + "casualness's": [], + "deicer": ["M", "S"], + "oblationens": [], + "lovemaking": ["M"], + "cumbersome": ["P"], + "fricassees": [], + "criers": [], + "Banach's": [], + "adjourn": ["D", "G", "L", "S"], + "center": ["M", "D", "G"], + "kinds": [], + "sanitary": ["I", "U"], + "pratinged": [], + "wrestle's": [], + "Jupiter": ["M"], + "Procrustean": ["M"], + "saltier": [], + "hosing": [], + "rioter's": [], + "desiccates": [], + "Angara": ["M"], + "release": ["B"], + "insider's": [], + "dunghill's": [], + "tablas": [], + "jaybirds's": [], + "physicked": [], + "deadhead": ["S", "D", "G"], + "diminutive": ["S", "M"], + "sonnies": [], + "gazebo": ["S", "M"], + "resort": [], + "prepackage": ["D", "S", "G"], + "unfeelingly": [], + "cashiered": [], + "balustrades": [], + "madrasah": ["M"], + "unrehearsed": [], + "social'sly": [], + "underlays": [], + "disparaging": ["Y"], + "Senate": ["M", "S"], + "filtersers": [], + "insensibly": [], + "blatant": ["Y"], + "nod's": [], + "godfathers": [], + "Land's": [], + "blowing's": [], + "setters": [], + "polytechnic": ["M", "S"], + "kidders's": [], + "stride": ["M", "G", "S"], + "doilies": [], + "Hippocratic's": [], + "remembrances": [], + "earliest": [], + "impurer": [], + "encaseds": [], + "morphine": ["M"], + "sitter": ["S", "M"], + "eyelets's": [], + "people'sing": [], + "Cliff": ["M"], + "peppermint": ["S", "M"], + "circulations's": [], + "transpiring": [], + "transfuses": [], + "stripings": [], + "balderdash": ["M"], + "topology": [], + "goiters": [], + "tilt's": [], + "unremembered": [], + "Tetons's": [], + "hairstylists's": [], + "prefaces's": [], + "orifice'ses": [], + "interpolatesing": [], + "Madison": ["M"], + "pawned": [], + "threadbare": [], + "renunciations's": [], + "convalesceds": [], + "raffia": ["M"], + "retrieve'sers": [], + "fiberboard's": [], + "Bunin": ["M"], + "organized": ["U"], + "rightsizesing": [], + "gimmickry's": [], + "logbooks's": [], + "allele's": [], + "Basra's": [], + "ouch": [], + "lineage's": [], + "tandoori's": [], + "brink's": [], + "beautified": [], + "stash": ["M", "D", "S", "G"], + "luminosity": ["M"], + "posterity's": [], + "sieves": [], + "whaler's": [], + "yeps": [], + "belaboreding": [], + "bassets": [], + "increment": ["S", "M", "D"], + "screenwriting's": [], + "outstays": [], + "renounces": [], + "wholesales": [], + "fayest": [], + "administered": [], + "undershot": [], + "carbonizes": [], + "winninglies": [], + "tobacconist": ["S", "M"], + "pastureland's": [], + "shirting's": [], + "bunting": ["M"], + "opticians": [], + "demarcatingen": [], + "grosses": [], + "significance": ["I", "M"], + "servers's": [], + "weightlessly": [], + "quadriceps's": [], + "berries's": [], + "suggest": ["G", "V", "S", "D", "R"], + "measure's": [], + "standstills": [], + "ecumenical": ["Y"], + "hospitals's": [], + "counselor'ses": [], + "concerning": [], + "bungles's": [], + "footrest's": [], + "faceting": [], + "implyingen": [], + "videotape": ["D", "S", "M", "G"], + "adventurist": ["S"], + "smokehouse's": [], + "tussled": [], + "an": ["C", "S"], + "contumaciously": [], + "coinage's": [], + "bobby": ["S", "M"], + "orange": ["S", "M", "P"], + "timorousnessly": [], + "boozer": ["M"], + "miscalling": [], + "indistinctness": [], + "move'sers": [], + "variation's": [], + "Telugu's": [], + "hermits": [], + "doorway": ["S", "M"], + "balladeer'ses": [], + "enriching": [], + "philatelist's": [], + "hungers": [], + "cryings": [], + "afterburners": [], + "squabbleder": [], + "lemons's": [], + "bullies's": [], + "realizabling": [], + "shes's": [], + "discordantly": [], + "absurdities": [], + "trimly": [], + "shutters": [], + "Tillman's": [], + "defrocked": [], + "howled": [], + "spellings": [], + "mercers": [], + "brewings": [], + "precooksed": [], + "censure's": [], + "retractions": [], + "stewarded": [], + "charcoals": [], + "tourmaline's": [], + "incest's": [], + "disregardful": [], + "packinghouse": ["S", "M"], + "repent": ["S", "D", "G"], + "fakirs's": [], + "platen": ["M"], + "cilium": ["M"], + "diviner's": [], + "invites": [], + "northwesters's": [], + "Clancy": ["M"], + "thinking's": [], + "doodler": ["M"], + "hurtle": ["D", "S", "G"], + "pressingly": [], + "stomach's": [], + "seer": ["M"], + "giggle's": [], + "gladiatorial": [], + "Astaire": ["M"], + "masterstroke's": [], + "hyphenate's": [], + "Akihito": ["M"], + "Clio": ["M"], + "Weill's": [], + "concrete'sly": [], + "refinery": ["S"], + "awakening": ["S", "M"], + "Campinas": ["M"], + "ponder": ["S", "Z", "G", "D", "R"], + "infernal": ["Y"], + "cesium": ["M"], + "flashcube": ["S", "M"], + "epigraph": ["M"], + "rural": [], + "seediness's": [], + "dalliance": ["M", "S"], + "windchill's": [], + "Avignon": ["M"], + "Chavez's": [], + "taillight'ses": [], + "costumeder": [], + "redheads": [], + "genitives": [], + "cowslip": ["S", "M"], + "foresight'sed": [], + "professorship's": [], + "wistfulliness": [], + "Morton's": [], + "turned": [], + "sawyer": ["S", "M"], + "inefficacy": [], + "seawater's": [], + "carriageway": ["S"], + "anarchistic": [], + "Mejia": ["M"], + "inexcusably": [], + "horded": [], + "limitinged": [], + "irregularities": [], + "liquidizeder": [], + "clambake": ["M", "S"], + "nutrient": ["M", "S"], + "Spinx's": [], + "dumpiness": ["M"], + "cutting": ["M", "Y", "S"], + "alliterationsing": [], + "bribers": [], + "schmoozers": [], + "Gaines's": [], + "mercerizing": [], + "quietness": ["M"], + "Negroid's": [], + "I'd": [], + "lustsing": [], + "exertion": ["M", "S"], + "scrimshaw'sed": [], + "Polyhymnia's": [], + "kepis": [], + "tank's": [], + "celebrator": ["S", "M"], + "bishops": [], + "severeliness": [], + "jenny's": [], + "orated": [], + "aquamarine": ["S", "M"], + "freebased": [], + "justest": [], + "contaminating": [], + "Samaritan's": [], + "pinata'ses": [], + "Tyndale": ["M"], + "faunas": [], + "Colombia's": [], + "Perry's": [], + "Mashhad": ["M"], + "mallard": ["S", "M"], + "scuttleds": [], + "Reykjavik": ["M"], + "deleting": [], + "Tate": ["M"], + "extirpated": [], + "WA": [], + "leftism": ["M"], + "consulate": ["S", "M"], + "velds": [], + "hired": [], + "aboriginals": [], + "carp's": [], + "eland's": [], + "gravesides": [], + "Izod": ["M"], + "achy": ["T", "R"], + "Comintern": ["M"], + "bluesy": ["R", "T"], + "polyesters": [], + "fannies's": [], + "corners": [], + "backbite": ["Z", "G", "R", "S"], + "travesty's": [], + "solenoid's": [], + "Bork": ["M"], + "Monegasque": ["S", "M"], + "YWCA": ["M"], + "Singleton": ["M"], + "litigiousness's": [], + "abettors's": [], + "pile": ["M", "G", "D", "S", "J"], + "Fowler's": [], + "birthed": [], + "garbage": ["M"], + "Cardenas": ["M"], + "holler": ["M", "D", "G", "S"], + "topple": ["G", "D", "S"], + "imprinted": [], + "pleats": [], + "doubted": [], + "visual's": [], + "lazieder": [], + "pegboards": [], + "individualistically": [], + "rangerser": [], + "fuckheads": [], + "stalkers": [], + "telltales": [], + "crosses": [], + "misplaceds": [], + "coincidence": ["M", "S"], + "counteract": ["S", "G", "V", "D"], + "decidable": ["U"], + "luminaries": [], + "oneness": ["M"], + "Tanya's": [], + "laying's": [], + "eiders's": [], + "anguish'sed": [], + "lard's": [], + "Ozarks": ["M"], + "assassinations": [], + "Rayleigh": ["M"], + "peeress": ["M", "S"], + "propitiates": [], + "salaries's": [], + "burreding": [], + "cull'sed": [], + "solidus": ["M"], + "mycologist": ["S", "M"], + "otiose": [], + "Scotsmen's": [], + "yuppifieds": [], + "Yekaterinburg's": [], + "typos": [], + "decor'ses": [], + "fast's": [], + "submersible's": [], + "shrubbery's": [], + "bribe": ["D", "R", "S", "M", "Z", "G"], + "monochrome": ["M", "S"], + "tarting's": [], + "devouterly": [], + "bleeder's": [], + "hollows": [], + "metrication's": [], + "observesable": [], + "fee": ["S", "M"], + "cliffhangers's": [], + "bonehead'sed": [], + "bedspreads": [], + "steamiest": [], + "vasterly": [], + "marksmanship's": [], + "subtracts": [], + "bracken": ["M"], + "Perth": ["M"], + "softbound": [], + "gleameding": [], + "surmounting": [], + "babysitting": ["M"], + "mudpacks": [], + "appointment": ["E", "S", "M"], + "Trotsky's": [], + "commendsed": [], + "rerecording": [], + "concatenateds": [], + "brasserie": ["M", "S"], + "familiarity's": [], + "hillbillies": [], + "nobelium": ["M"], + "hinderers": [], + "quadrupled": [], + "reprehendeding": [], + "ethnographic": [], + "capillary": ["S", "M"], + "Coolidge": ["M"], + "coalitionist'ses": [], + "cottar's": [], + "respells": [], + "deflector": ["S", "M"], + "leery": ["R", "P", "T"], + "Dodoma's": [], + "genii": [], + "Wheatstone's": [], + "scumbags": [], + "amnesties's": [], + "wrongdoer's": [], + "hacks": [], + "tremulousness": ["M"], + "steamed": [], + "topcoat's": [], + "rates": [], + "erasing": [], + "lappets": [], + "exportables": [], + "nonpayments's": [], + "Zubenelgenubi's": [], + "dope's": [], + "hypnotism": ["M"], + "wipinged": [], + "administratesing": [], + "creatures": [], + "thank": ["S", "D", "G"], + "premiered": [], + "cent": ["S", "Z", "M", "R"], + "jamb's": [], + "Mervin's": [], + "givingser": [], + "falsie": ["S", "M"], + "incinerated": [], + "fps": [], + "transecteds": [], + "endorsement's": [], + "lintiest": [], + "Lars'sen": [], + "Tito": ["M"], + "urbanizeds": [], + "crackings": [], + "treetop": ["S", "M"], + "legate": ["C", "X", "M", "N", "S"], + "amortizes": [], + "Proserpine's": [], + "schoolboys": [], + "manifested": [], + "fin's": [], + "multiplicand'ses": [], + "apologists": [], + "Elysian": ["M"], + "actuator": ["S", "M"], + "nebula": ["M"], + "Bunche's": [], + "moorhen": ["S"], + "barkers": [], + "zoning": ["M"], + "pacesetters": [], + "Uighur's": [], + "embezzle": ["Z", "G", "L", "D", "R", "S"], + "discussants's": [], + "thesauri": [], + "Ezekiel": ["M"], + "dramatized": [], + "indulge": ["D", "S", "G"], + "Bruegel": [], + "stab": ["M", "Y", "S"], + "raveder": [], + "canape": ["M", "S"], + "freest": [], + "estimation": ["M"], + "baptism": ["M", "S"], + "Litton's": [], + "catalyze": ["G", "D", "S"], + "soundtracks": [], + "rose'ses": [], + "SIDS": ["M"], + "spanked": [], + "imitation's": [], + "space'sers": [], + "highlighter": ["M"], + "whupping": [], + "solitude": ["M"], + "harlot's": [], + "motorcycles's": [], + "Hindu's": [], + "newel": ["S", "M"], + "flappers": [], + "meetinghouses's": [], + "dispirited": [], + "terbium": ["M"], + "huckster": ["S", "G", "M", "D"], + "syndrome's": [], + "magazine": ["S", "M"], + "cosmetic": ["S", "M"], + "chutzpah": ["M"], + "telephones's": [], + "resumeds": [], + "Orin's": [], + "augusterly": [], + "purloins": [], + "unfashionable": [], + "script's": [], + "boohoos": [], + "misconceiving": [], + "void": ["M", "D", "S", "G", "B"], + "visage": ["M", "S"], + "fluorocarbon'ses": [], + "breastplate": ["S", "M"], + "curmudgeon": ["M", "Y", "S"], + "owning": [], + "thorn": ["S", "M"], + "bookmaker's": [], + "crinkle's": [], + "Xiaoping's": [], + "stipulatingen": [], + "molls": [], + "shortwave'ses": [], + "Mengzi": [], + "prioritized": [], + "gazette'sing": [], + "wikis": [], + "shrieking": [], + "brittleness": ["M"], + "trustworthiest": [], + "bake's": [], + "racism's": [], + "Wake's": [], + "ointment": ["S", "M"], + "coeval's": [], + "inveiglersing": [], + "grasp": ["S", "M", "D", "B", "G"], + "duplicatingen": [], + "Mir's": [], + "associative": [], + "steamship'ses": [], + "mascots": [], + "regalement's": [], + "focusesing": [], + "SJ": [], + "gantlets": [], + "rod's": [], + "Liliana's": [], + "miscarrying": [], + "nutting": [], + "confetti": ["M"], + "instructive": ["Y"], + "anticommunism's": [], + "diplomats": [], + "disunity": [], + "unresolved": [], + "groupie's": [], + "keypuncheder": [], + "Pace's": [], + "importation": ["M", "S"], + "pine": ["A", "G", "D", "S"], + "furze's": [], + "Burger": ["M"], + "cycles": [], + "dissing": [], + "blusheder": [], + "thimble's": [], + "suggestibility's": [], + "focal": ["Y"], + "fretsaw": ["M", "S"], + "endorphin'ses": [], + "fluoridated": [], + "taxicabs": [], + "Zion": ["S", "M"], + "matchlock": ["S", "M"], + "splendors": [], + "centralizer's": [], + "USN": [], + "Orientals": [], + "Vic's": [], + "harked": [], + "uprightness": ["M"], + "specif": [], + "transmission's": [], + "cues": [], + "Tartuffe": ["M"], + "wagered": [], + "McKee": ["M"], + "Philby": ["M"], + "explicateds": [], + "Fidel": ["M"], + "antediluvian": [], + "decor": ["M", "S"], + "scorpions": [], + "rougheden": [], + "honeydews's": [], + "YMMV": [], + "leapfrogged": [], + "fearlessness's": [], + "overclouding": [], + "Millicent's": [], + "jeopardized": [], + "downspout's": [], + "warehouses's": [], + "Sikkim": ["M"], + "nits's": [], + "dilatesing": [], + "Rodrick's": [], + "prickled": [], + "Guam": ["M"], + "overreactsed": [], + "Microsoft's": [], + "woodpile's": [], + "ecology's": [], + "rapid's": [], + "Coors": ["M"], + "fucker's": [], + "hake'ses": [], + "transmittable": [], + "Montague's": [], + "pucker'sed": [], + "hoarseness's": [], + "submerginged": [], + "gelignite": ["M"], + "cervix": ["M"], + "aqua's": [], + "invigilates": [], + "roils": [], + "tessellation's": [], + "Wankel's": [], + "merino's": [], + "Nigerian'ses": [], + "Pyle's": [], + "prickle's": [], + "hoicked": [], + "squad": ["S", "M"], + "juror's": [], + "might": ["M"], + "nudists's": [], + "Trappist": ["S", "M"], + "foppishness": ["M"], + "trespassed": [], + "handicapper'ses": [], + "Ziggy's": [], + "gypper's": [], + "proselytizer": ["M"], + "defoliated": [], + "T'ang's": [], + "selectivity": ["M"], + "indispensability's": [], + "Gerber": ["M"], + "Cranmer's": [], + "seeds": [], + "asteroid's": [], + "House's": [], + "cuddle's": [], + "Monegasque's": [], + "bolt's": [], + "waistline's": [], + "Charybdis's": [], + "shrewdness's": [], + "avatar": ["M", "S"], + "class's": [], + "arsenic": ["M"], + "interstate's": [], + "demagogically": [], + "mull": ["D", "S", "G"], + "unpeople": [], + "Wessex": ["M"], + "handbrakes": [], + "heartbreak": ["S", "M", "G"], + "chafed": [], + "inoculateds": [], + "acculturatingen": [], + "Lafayette": ["M"], + "media": ["S", "M"], + "poking": [], + "amplifieder": [], + "cataclysms": [], + "Cameroons's": [], + "Brandi": ["M"], + "preschooler": ["M"], + "gallivanting": [], + "alligator's": [], + "yest": [], + "felt's": [], + "provincial": ["S", "M", "Y"], + "assessor's": [], + "respectsing": [], + "apathetic": [], + "lea's": [], + "rostrum": ["M", "S"], + "vessel'ses": [], + "martingale's": [], + "Punic": ["M"], + "Jimmy": ["M"], + "tenures's": [], + "pusher": ["M"], + "penalized": [], + "idleder": [], + "toddleder": [], + "storyboard'ses": [], + "Apuleius": ["M"], + "inboxes": [], + "fleeciness": ["M"], + "pendsing": [], + "satisfaction": ["E", "M"], + "bellyful": ["M", "S"], + "teletypewriter'ses": [], + "ceasefire's": [], + "tourism's": [], + "antagonizeds": [], + "premeds": [], + "dusted": [], + "actuators's": [], + "labor'sed": [], + "ligate": ["G", "N", "D", "S"], + "orisons's": [], + "natl": [], + "Marta's": [], + "laxness's": [], + "dewclaw": ["S", "M"], + "potency's": [], + "individualization": ["M"], + "Simon's": [], + "cleverer": [], + "snowfalls": [], + "sojourn's": [], + "freer": [], + "miffed": [], + "utters": [], + "ecologically": [], + "determinant's": [], + "stabler": [], + "shooeds": [], + "fillets": [], + "carillons's": [], + "bonobo": ["M", "S"], + "indemonstrable": [], + "sandblasting": [], + "weeknight's": [], + "comparatively": [], + "nonexempt": ["M"], + "gnomic": [], + "cheep'sed": [], + "decadently": [], + "festival's": [], + "platoons": [], + "Kngwarreye's": [], + "meanness": ["M"], + "allegretto's": [], + "quirks": [], + "Ramon's": [], + "breastfeedings": [], + "distaste's": [], + "handhold": ["M", "S"], + "freckles's": [], + "lasciviously": [], + "Izanami's": [], + "consumptives": [], + "Medici's": [], + "hieroglyph's": [], + "smorgasbords's": [], + "boot's": [], + "bemired": [], + "walkovers": [], + "Cordelia's": [], + "calibrationed": [], + "fact": ["M", "S"], + "faculties": [], + "Patton": ["M"], + "overseeing": [], + "morphinged": [], + "Lacy's": [], + "breathalyzeder": [], + "schoolchildren's": [], + "thumb": ["S", "M", "D", "G"], + "nursinged": [], + "creeping": [], + "massively": [], + "whiteboard": ["S"], + "landmark": ["M", "S"], + "counterexample": ["S"], + "forwardness": ["M"], + "glenohumeral": [], + "lawmen": [], + "braze": ["D", "R", "S", "Z", "G"], + "compulsorily": [], + "approximate": ["D", "S", "X", "Y", "G", "N"], + "downloadables": [], + "saprophytes's": [], + "Burger's": [], + "receptive": ["P", "Y"], + "frolickers": [], + "swizzled": [], + "surfer": ["M"], + "underexposure": ["M", "S"], + "Utahan's": [], + "pocket'sed": [], + "conciliating": [], + "firesides": [], + "cleaver": ["M"], + "diverseness's": [], + "postmodern": [], + "gauziest": [], + "Godunov's": [], + "Frenchwomen": ["M"], + "hybrids": [], + "Merrick": ["M"], + "portable'ses": [], + "dungeon's": [], + "enfold": ["S", "G", "D"], + "antecedents's": [], + "steaks": [], + "paracetamol": ["S"], + "lancer": ["M"], + "hypochondria": ["M"], + "chipper'ses": [], + "cuddleds": [], + "burglar'ses": [], + "Grammy's": [], + "presumptuousness": ["M"], + "fittings's": [], + "mistreatmented": [], + "market": ["M", "D", "R", "Z", "G", "B", "S"], + "riposte's": [], + "centralized": [], + "percolators's": [], + "turd'ses": [], + "rasp's": [], + "restriction'ses": [], + "Snapple's": [], + "sailboard'ser": [], + "chemotherapeutic": [], + "refreshmented": [], + "rallies": [], + "gimcrack's": [], + "Mons": [], + "palliative": ["S", "M"], + "grille": ["M", "S"], + "Beirut's": [], + "Indore's": [], + "draperies": [], + "carpi": [], + "vein'sed": [], + "absences": [], + "ravine": ["S", "M"], + "poacher": ["M"], + "Cyrillic's": [], + "sporting": ["Y"], + "aliment": ["M", "D", "S", "G"], + "gropeder": [], + "Robitussin": ["M"], + "terrible": ["P"], + "shunting": [], + "newsstands's": [], + "oblation's": [], + "Galileo": ["M"], + "sambaed": [], + "enplaneds": [], + "Serena": ["M"], + "unheralded": [], + "noshersing": [], + "martian": ["S"], + "Cointreau": ["M"], + "Canadian's": [], + "tandems": [], + "Matthew": ["S", "M"], + "peg": ["S", "M"], + "permeated": [], + "spadeful's": [], + "Melanesian's": [], + "scarf's": [], + "outrages": [], + "Dramamine's": [], + "Pepsi's": [], + "creosoting": [], + "soybean'ses": [], + "Harmon's": [], + "outburst": ["S", "M"], + "indentation'ses": [], + "perambulated": [], + "anteroom": ["M", "S"], + "Oktoberfest": ["M"], + "VCR's": [], + "ordinary'sness": [], + "maxis": [], + "KO": ["M"], + "wonderfulness's": [], + "valedictory": ["S", "M"], + "packings": [], + "regionalisms": [], + "umpire": ["M", "G", "D", "S"], + "bungs": [], + "bestsellers": [], + "criminalizeds": [], + "Londoner": ["M"], + "Caravaggio": ["M"], + "unquote": [], + "mammogram's": [], + "Mauriac's": [], + "hand": ["U", "D", "G", "S"], + "Salvador's": [], + "semanticist's": [], + "Ascension": ["M"], + "mural's": [], + "bleeding's": [], + "cellphone's": [], + "flannelsing": [], + "aphasic's": [], + "crackerly": [], + "proximity's": [], + "Carly": ["M"], + "Galbraith": ["M"], + "poiseds": [], + "covertness's": [], + "highs": [], + "apprehension's": [], + "sublimity": ["M"], + "franking": [], + "Grenada": ["M"], + "grave'sly": [], + "modifying": [], + "indexes": [], + "interjection's": [], + "jades": [], + "marigolds": [], + "Omayyad's": [], + "Mamie": ["M"], + "underwear": ["M"], + "cooed": [], + "Tocantins's": [], + "fink'sed": [], + "pigment'sed": [], + "crook": ["S", "M", "D", "G"], + "agribusiness's": [], + "piranhas's": [], + "twingeds": [], + "Roberson": ["M"], + "provosts's": [], + "Baathist's": [], + "iterationsing": [], + "Goren's": [], + "covenanted": [], + "Jericho's": [], + "hymn'sed": [], + "neurology": ["M"], + "roentgen'ses": [], + "misanthropist's": [], + "proselytism": ["M"], + "acquaintance's": [], + "vanquisher's": [], + "stethoscope's": [], + "marquess": ["M", "S"], + "curie": ["S", "M"], + "palleds": [], + "inst": [], + "synthesizes": [], + "lives": [], + "steeps": [], + "mopiest": [], + "weeks": [], + "Romany": ["S", "M"], + "placekicker": ["M"], + "perching's": [], + "beepeder": [], + "shipyards": [], + "bunco'sed": [], + "Verna's": [], + "zygotes's": [], + "wally": ["S"], + "provincials's": [], + "compassionately": [], + "width": ["M"], + "crematorium": ["M", "S"], + "enforced": ["U"], + "gatherers": [], + "cutlass'ses": [], + "hygienists": [], + "prodigiously": [], + "plaints": [], + "saleswoman": ["M"], + "underpart": ["M", "S"], + "MA": ["M"], + "fumigator": ["S", "M"], + "reservists's": [], + "Micronesian's": [], + "porpoise'sing": [], + "appraisal'ses": [], + "farrier'ses": [], + "enhancements's": [], + "biophysicist's": [], + "chagrin'sed": [], + "cant": ["C", "Z", "R", "D", "G", "S"], + "bonkers": [], + "Boreas": ["M"], + "unicycles's": [], + "Baryshnikov's": [], + "sinkhole's": [], + "perchance": [], + "trendiness's": [], + "tongued": [], + "palatinates": [], + "gravedigger's": [], + "pace's": [], + "Bilbao": ["M"], + "minicab": ["S"], + "zealot's": [], + "Democritus": ["M"], + "microcircuits's": [], + "ABC's": [], + "expiationed": [], + "gildeder": [], + "dismay's": [], + "denier": ["M"], + "formulation's": [], + "naan": ["S"], + "trusteeships's": [], + "tributaries": [], + "Montanan's": [], + "humbly": [], + "anticyclonic": [], + "carpenter'sed": [], + "pickerel's": [], + "reception'ses": [], + "involvements": [], + "sinkable": ["U"], + "supervision's": [], + "effluvium": ["M"], + "seltzer'ses": [], + "thirsted": [], + "domicileds": [], + "paraprofessional'ses": [], + "debunk": [], + "copier's": [], + "electronics's": [], + "palimpsest": ["M", "S"], + "pansies's": [], + "dryer's": [], + "Montanan": ["S", "M"], + "pastors": [], + "patricians's": [], + "haycock's": [], + "priggishness's": [], + "yearbooks": [], + "armoring": [], + "Charon's": [], + "Mutsuhito's": [], + "stocky": ["R", "T", "P"], + "dose's": [], + "naught's": [], + "resat": [], + "hospital": ["S", "M"], + "midway'ses": [], + "disallow": [], + "dismal": ["Y"], + "disburse": ["D", "S", "G", "L"], + "bebop'ses": [], + "collareding": [], + "Swansea's": [], + "clipping": ["S", "M"], + "plant'sed": [], + "Mellon's": [], + "flummoxesing": [], + "perjured": [], + "grasshoppers": [], + "Amman": ["M"], + "polynomial": ["M", "S"], + "moves": [], + "approached": [], + "absent": ["D", "Y", "S", "G"], + "lovable": [], + "frees": [], + "heiresses": [], + "transfixesing": [], + "apostolic": [], + "nationality": ["S", "M"], + "oboist'ses": [], + "Nairobi": ["M"], + "naturalnessly": [], + "intaglios": [], + "expurgating": [], + "liking": ["M"], + "Plath": ["M"], + "palladium's": [], + "infestation'ses": [], + "tardinesser": [], + "daffiness": ["M"], + "racier": [], + "basement's": [], + "Tarazed": ["M"], + "maroonings": [], + "secludeds": [], + "intersecteds": [], + "Glenlivet": ["M"], + "reaffirmation": [], + "twelfth": ["M"], + "dishonest": [], + "resole": ["D", "S", "G"], + "mimickers": [], + "burial's": [], + "rotor": ["S", "M"], + "dines": [], + "Spencer's": [], + "geochemistry": ["M"], + "gentries's": [], + "bloodthirstiness's": [], + "cutest": [], + "throats": [], + "indicating": [], + "county's": [], + "ply": ["A", "G", "D", "S", "M"], + "withersing": [], + "gallimaufries's": [], + "joyfully": [], + "savor's": [], + "adopter's": [], + "Boltzmann": ["M"], + "disseminatingen": [], + "talon'ses": [], + "blunts": [], + "accelerates": [], + "Laius": ["M"], + "myxomatosis": [], + "indentation": ["M", "S"], + "banjoists": [], + "foremasts": [], + "spatulas's": [], + "idealization'ses": [], + "ironwood": ["M", "S"], + "violent": ["Y"], + "fours": [], + "unstrung": [], + "colony's": [], + "falsifying": [], + "ateliers's": [], + "punted": [], + "quantifiesers": [], + "crackdown'ses": [], + "bard": ["S", "M"], + "spines's": [], + "capsuling": [], + "detergent": ["S", "M"], + "marching": [], + "Domesday": ["M"], + "epaulets's": [], + "dynastic": [], + "casino": ["M", "S"], + "whipper's": [], + "homed": [], + "compaction": [], + "lunged": [], + "eschewing": [], + "meh": [], + "wearing": [], + "iteration's": [], + "concessionaire": ["M", "S"], + "Barrett": ["M"], + "stolon's": [], + "however": [], + "forkings": [], + "engraver's": [], + "Sullivan": ["M"], + "tainteds": [], + "shivery": [], + "calumnious": [], + "paratroopers": [], + "blackmailers": [], + "imperfect": ["S", "M", "Y", "P"], + "poulticeds": [], + "veep'ses": [], + "nonacademic": [], + "shed'ses": [], + "Benz": ["M"], + "Mohaves": [], + "imagoes": [], + "tortoni": ["M"], + "purlieus's": [], + "corkers": [], + "kicks": [], + "bricks's": [], + "dictators's": [], + "clit": ["S", "M"], + "sanctuary": ["S", "M"], + "concernedly": [], + "Eddington's": [], + "zonal": ["Y"], + "embellishments's": [], + "orrises": [], + "campground's": [], + "incline": ["E", "G", "D", "S"], + "needle's": [], + "furze": ["M"], + "dirigible": ["M", "S"], + "sleekness": ["M"], + "swirl": ["G", "S", "M", "D"], + "peevishnessly": [], + "raggedness's": [], + "leads": [], + "sunroofs": [], + "specific": ["M", "S"], + "appetite": ["S", "M"], + "pinto": ["M", "S"], + "kaleidoscopes": [], + "aboriginal": ["M", "S"], + "curtsy's": [], + "gleeful": ["Y", "P"], + "forename's": [], + "pianists": [], + "tinkering": [], + "outargued": [], + "flabbiness's": [], + "fussier": [], + "crosswalk's": [], + "righter": [], + "congregants": [], + "beehives": [], + "bullshit": ["M", "S", "!"], + "tormentor's": [], + "beatniks": [], + "shiftier": [], + "obliqueness's": [], + "Milford's": [], + "amplifiersing": [], + "bakeries's": [], + "wizardry": ["M"], + "preordain": ["G", "D", "S"], + "coolants": [], + "papyri": [], + "longevity's": [], + "leniency's": [], + "colt'ses": [], + "cryonics": [], + "aerial'sly": [], + "malefactors's": [], + "germinationed": [], + "squirt's": [], + "convenient": ["I", "Y"], + "banter": ["G", "S", "M", "D"], + "truncate": ["G", "N", "D", "S"], + "alternate's": [], + "babes's": [], + "react": ["V"], + "queereder": [], + "slighteder": [], + "delving": [], + "southwest'ser": [], + "pantsuit's": [], + "populace'ses": [], + "webcasts's": [], + "marathoner": ["M"], + "ransacking": [], + "cadences": [], + "productiveness": ["M"], + "maladroitly": [], + "geranium": ["M", "S"], + "muffing": [], + "postlude's": [], + "pectin's": [], + "alternatingen": [], + "single'sing": [], + "clings's": [], + "Reba": ["M"], + "curled": [], + "injector's": [], + "performer's": [], + "milf's": [], + "unifyinged": [], + "wangling": [], + "cannons": [], + "stalagmite's": [], + "scrunchy's": [], + "shorts": [], + "ducat": ["S", "M"], + "slumpeding": [], + "adultery": ["S", "M"], + "thrummed": [], + "creatingen": [], + "login": ["S", "M"], + "Brobdingnagian's": [], + "nonrandom": [], + "W's": [], + "gentlewoman's": [], + "grenades": [], + "platypus": ["M", "S"], + "fended": [], + "ingots": [], + "bilked": [], + "Flanagan": ["M"], + "Adriana's": [], + "passage'ses": [], + "Freud": ["M"], + "Berzelius": ["M"], + "serenade'sing": [], + "rooks": [], + "listener": ["M"], + "racist": ["S", "M"], + "renewabling": [], + "moisturized": [], + "biter's": [], + "fetes": [], + "flashguns": [], + "contentsment": [], + "hector's": [], + "style's": [], + "Ortega": ["M"], + "forefront": ["S", "M"], + "awing": [], + "extemporaneously": [], + "foray's": [], + "tarmacking": [], + "Simenon": ["M"], + "succor's": [], + "exterminated": [], + "utopia's": [], + "swimwear": [], + "forge's": [], + "spotted": [], + "skunk'sed": [], + "funereal": ["Y"], + "impreciselication": [], + "Heidelberg": ["M"], + "Salinger's": [], + "lectureship": ["S", "M"], + "photoengravers": [], + "demise's": [], + "trasheds": [], + "clangeder": [], + "reestablishment": [], + "oversimplification's": [], + "masseurs": [], + "crusade's": [], + "disheveled": [], + "proselyte": ["D", "S", "M", "G"], + "theorizeds": [], + "Singaporeans's": [], + "lissome": [], + "reconciling": [], + "baas's": [], + "electrostatic": ["S"], + "curtsieds": [], + "spousals": [], + "toninged": [], + "etymologists": [], + "hummingbird": ["S", "M"], + "mad's": [], + "Donahue's": [], + "reunsubscribe": [], + "analyze": ["A", "D", "S", "G"], + "dorms": [], + "closets": [], + "intermixed": [], + "pleasureds": [], + "flyleaves": [], + "solstices": [], + "musicality's": [], + "jeweling's": [], + "posse": ["M", "S"], + "squibs": [], + "Felecia's": [], + "bluntlies": [], + "perforatingen": [], + "promulgate": ["G", "N", "D", "S"], + "bleeping": [], + "rutabaga's": [], + "condolences": [], + "Creon": ["M"], + "coercersing": [], + "rotisseries's": [], + "backless": [], + "Nepalese's": [], + "Ina": ["M"], + "expressionistic": [], + "yessing": [], + "berates": [], + "storm'sed": [], + "containsable": [], + "airshows": [], + "homonyms": [], + "sacroiliac'ses": [], + "illness'ses": [], + "evacuates": [], + "candelabra": ["S", "M"], + "subjection's": [], + "recognizingable": [], + "diversities's": [], + "bicarbonate": ["M", "S"], + "wriggler": ["M"], + "infectious": ["P", "Y"], + "innumeracy": [], + "Muscat": ["M"], + "countersigned": [], + "specify": ["X", "N", "Z", "D", "R", "S", "G"], + "gadflies": [], + "sectionals": [], + "deuce's": [], + "broodiness": [], + "nuance'sed": [], + "Maalox": ["M"], + "whippoorwills": [], + "encamps": [], + "bromides's": [], + "bushmaster's": [], + "quartering": [], + "juggles": [], + "Christopher": ["M"], + "chatted": [], + "woolliness's": [], + "countersinking": [], + "one's": [], + "stargazes": [], + "sonsofbitches": [], + "thrushes": [], + "antiparticle's": [], + "instigatesing": [], + "magnitude's": [], + "motorizing": [], + "Minamoto": ["M"], + "paintersing": [], + "handcart'ses": [], + "patrolman": ["M"], + "edgeder": [], + "nonnative's": [], + "tipping": [], + "accomplishment's": [], + "mete": ["M", "Z", "G", "D", "R", "S"], + "sullied": ["U"], + "causticity": ["M"], + "Delius": ["M"], + "calcimines's": [], + "vamps": [], + "Rolex": ["M"], + "isomorphic": [], + "instructsed": [], + "allegory's": [], + "billingsgate": ["M"], + "Jonathon's": [], + "oversees": [], + "sandstorm's": [], + "baddie's": [], + "slipper": ["S", "M"], + "beanstalk": ["M", "S"], + "burglar": ["M", "S"], + "erasures": [], + "narky": [], + "unionization": [], + "sleeveds": [], + "harrier": ["M"], + "stingier": [], + "shell'sed": [], + "fops's": [], + "disbandment": ["M"], + "Harold's": [], + "wheedlesers": [], + "quarry's": [], + "bugbears's": [], + "handsaw's": [], + "thoroughfares": [], + "artlessness": ["M"], + "freemasonry": [], + "Kosygin": ["M"], + "dampness": ["M"], + "Obadiah": ["M"], + "remolds": [], + "discontented": [], + "shearersing": [], + "drifting": [], + "rathskellers": [], + "brochure": ["M", "S"], + "sieve's": [], + "Aquinas's": [], + "lousiness's": [], + "wearers": [], + "junketeer'ses": [], + "pearly": ["R", "T"], + "succinct": ["R", "Y", "T", "P"], + "skedaddle's": [], + "Burr": ["M"], + "saute": ["M", "S"], + "thymus": ["M", "S"], + "nuzzler": ["M"], + "sledder's": [], + "Colt": ["M"], + "retaught": [], + "Oklahoma": ["M"], + "corsairs": [], + "fiddled": [], + "overdraft": ["S", "M"], + "pussycat": ["M", "S"], + "Zionism": ["S", "M"], + "originally": [], + "filigrees's": [], + "antiquarianism's": [], + "hopefulness's": [], + "niter's": [], + "cocoas": [], + "seafarers's": [], + "torturing": [], + "Promethean's": [], + "entrants's": [], + "Lachesis": ["M"], + "fogging": ["C"], + "Michael": ["M"], + "swift's": [], + "headset": ["S", "M"], + "logotypes's": [], + "vicariousliness": [], + "vicarages's": [], + "carpetbagging": [], + "flattops": [], + "cheeseparing's": [], + "garnisheeing": [], + "glistened": [], + "coldly": [], + "voodooings": [], + "levees": [], + "Stalinist's": [], + "contradicted": [], + "deodorant's": [], + "dustless": [], + "solemnest": [], + "geothermal": [], + "determiner's": [], + "disablement's": [], + "sauceder": [], + "burgundies's": [], + "ring's": [], + "password's": [], + "sizzle'sers": [], + "Lynda's": [], + "rope": ["M", "Z", "G", "D", "R", "S"], + "atoms's": [], + "underhandedness's": [], + "wobblier": [], + "synonymy's": [], + "schoolbag'ses": [], + "gaslight": ["M", "S"], + "Kali's": [], + "bureaucratizeds": [], + "Proverbs": [], + "shuck's": [], + "tinsel": ["G", "S", "M", "D"], + "castanet's": [], + "wisecracksing": [], + "completingen": [], + "coolant's": [], + "muffin'ses": [], + "keenness": ["M"], + "Belau's": [], + "boorishness'ses": [], + "vituperateds": [], + "spare'sly": [], + "feast'sed": [], + "Stravinsky's": [], + "Mennonites": [], + "awfulliness": [], + "conclusion": ["M", "S"], + "pj's": [], + "Monrovia's": [], + "entreatingly": [], + "families": [], + "patron": ["M", "S"], + "tautest": [], + "Haydn": ["M"], + "silence": ["D", "R", "S", "M", "Z", "G"], + "refutation'ses": [], + "upbeats": [], + "lawmakers": [], + "Perseus": ["M"], + "earbuds": [], + "soliloquized": [], + "black's": [], + "smoothness's": [], + "nobleness's": [], + "poltroons": [], + "forbears's": [], + "southeasterly": [], + "hedgeder": [], + "egresses": [], + "damselflies": [], + "faking": [], + "remount": [], + "ramify": ["D", "S", "X", "N", "G"], + "Ishmael": ["M"], + "flounces": [], + "traps": [], + "redeemerers": [], + "poetry": ["M"], + "Podunk's": [], + "jibbed": [], + "dejected": ["Y"], + "Evangelina's": [], + "Aurelio's": [], + "dukedoms's": [], + "personification's": [], + "pyxes": [], + "cobbles": [], + "Gothic'ses": [], + "Pekingeses's": [], + "metadata": [], + "crippleder": [], + "Oglethorpe's": [], + "flycatcher": ["M", "S"], + "adornments": [], + "perspiration": ["M"], + "debonairnessly": [], + "dunner": [], + "lessor": ["M", "S"], + "decliners": [], + "collagen": [], + "engaged": [], + "dictator": ["S", "M"], + "advents's": [], + "rheumy": [], + "undertaking": ["M"], + "RI": [], + "breezeway's": [], + "subsideds": [], + "pinko's": [], + "cablecast's": [], + "smartening": [], + "mafias's": [], + "webinar": ["S", "M"], + "googlies": [], + "newest": [], + "believer'ses": [], + "palmetto": ["S", "M"], + "contracteding": [], + "bigamists's": [], + "Clem's": [], + "premiums's": [], + "terrifyinged": [], + "participatesing": [], + "aspired": [], + "chew's": [], + "embroidererers": [], + "warpaint": [], + "skiffs's": [], + "captain's": [], + "vision's": [], + "stenographer's": [], + "aftertastes": [], + "pennants": [], + "reprobate's": [], + "pendeds": [], + "strawberries": [], + "infinitesimal": ["S", "M", "Y"], + "corrosive'sly": [], + "exclusion'ses": [], + "circularizes": [], + "weed's": [], + "lighted": ["U"], + "Cambrian": ["S", "M"], + "legislating": [], + "irrecoverably": [], + "servitor": ["M", "S"], + "Irishwomen": ["M"], + "sublease's": [], + "calciferous": [], + "flabbierness": [], + "Yokohama's": [], + "raving's": [], + "gauze": ["M"], + "blackmails": [], + "feeling": ["M", "Y"], + "duenna'ses": [], + "underpart'ses": [], + "tampersing": [], + "private's": [], + "moratoriums": [], + "acquaintings": [], + "burps": [], + "Dorothea": ["M"], + "hydroplanes": [], + "legitimization's": [], + "Vishnu": ["M"], + "radiograms": [], + "quitclaims": [], + "canton": ["M", "L", "S"], + "lacerateds": [], + "Brooke's": [], + "intensifiesers": [], + "members": [], + "swizzlesing": [], + "Jame": ["S", "M"], + "plodder": ["M", "S"], + "rattlebrain'sed": [], + "cenotaph": ["M"], + "rejoices": [], + "lifter's": [], + "defectiveness's": [], + "cheated": [], + "fossilizeds": [], + "bindery": ["S", "M"], + "spike's": [], + "insomniacs": [], + "locators": [], + "splurge": ["D", "S", "M", "G"], + "insalubrious": [], + "boneheads's": [], + "plainsong": ["M"], + "Alfredo": ["M"], + "jardiniere": ["S", "M"], + "zodiacs": [], + "waversing": [], + "cajoler": ["M"], + "snobbishly": [], + "Brad's": [], + "choreography": ["M"], + "lucrativeliness": [], + "attachments": [], + "disruptively": [], + "nonspecialist'ses": [], + "hairlines's": [], + "unwoven": [], + "harnessesing": [], + "villainous": [], + "tab": ["S", "M"], + "Balfour": ["M"], + "silverfish's": [], + "tightness": ["M"], + "halteder": [], + "bivalves's": [], + "regurgitatingen": [], + "undesirable": ["M", "S"], + "scrupulous": ["U", "P", "Y"], + "puffball's": [], + "buttercup's": [], + "javelins": [], + "buildings": [], + "godlessness": ["M"], + "hoofers": [], + "Gore": ["M"], + "cinchona": ["S", "M"], + "vanishings": [], + "astronaut'ses": [], + "telecast's": [], + "seaming's": [], + "Ionics's": [], + "glide's": [], + "single": ["P", "M", "G", "D", "S"], + "bewitchmented": [], + "municipality's": [], + "ranking's": [], + "pollutant": ["M", "S"], + "specification's": [], + "Hercules": ["M"], + "amateurism's": [], + "tome": ["M", "S"], + "tweeds's": [], + "gripers": [], + "garsment": [], + "Soave": ["M"], + "bellowed": [], + "malingerer": ["M"], + "produced": [], + "uncolored": [], + "counterattack'sed": [], + "mortals": [], + "crudeness's": [], + "rook's": [], + "antipodean's": [], + "pesticides": [], + "Maytag": ["M"], + "latitude": ["M", "S"], + "softlications": [], + "Berlioz's": [], + "Lillie's": [], + "reopensed": [], + "Gurkha's": [], + "disposed": ["I"], + "synagogues": [], + "advisability": ["I", "M"], + "uncork": [], + "Lodge's": [], + "calked": [], + "dilates": [], + "crosscheck's": [], + "rayon": ["M"], + "weekend": ["S", "Z", "G", "M", "D", "R"], + "telegraphists": [], + "mutatingen": [], + "Colby's": [], + "uprising": ["S", "M"], + "parachuteds": [], + "theosophists": [], + "oleomargarine": ["M"], + "nudges": [], + "darkeninged": [], + "jalousie'ses": [], + "stuccoes": [], + "Soto's": [], + "pharmaceutical's": [], + "prophetess's": [], + "burning": [], + "fearfulness": ["M"], + "earthiness": ["M"], + "hared": [], + "charges": [], + "folksinger's": [], + "maltreatment": ["M"], + "vulture": ["S", "M"], + "layman's": [], + "worshipeder": [], + "timeder": [], + "negatesing": [], + "kneaders": [], + "trapped": [], + "enthroneds": [], + "perfectionist": ["S", "M"], + "Brooks's": [], + "purulence": ["M"], + "belligerence": ["M"], + "precedent's": [], + "Berber's": [], + "preemption's": [], + "floret's": [], + "spathes": [], + "undulates": [], + "spur's": [], + "egress": ["M", "S"], + "careerist": ["S", "M"], + "ferryboat": ["S", "M"], + "populatinged": [], + "extirpation's": [], + "puckishness": ["M"], + "sunfish'ses": [], + "mortgagee": ["M", "S"], + "Antonia": ["M"], + "traditionalist's": [], + "enjambments's": [], + "Sheri": ["M"], + "Deere": ["M"], + "stepparents's": [], + "lass's": [], + "Andalusia's": [], + "floodwater": ["M", "S"], + "Cu": ["M"], + "reflectively": [], + "bumbles": [], + "maharishis's": [], + "overgeneralized": [], + "Becket": ["M"], + "galvanization's": [], + "netting's": [], + "cost'sed": [], + "reinforce": ["L", "G", "D", "S"], + "Abigail's": [], + "cathedral's": [], + "paused": [], + "Robbin's": [], + "edict": ["S", "M"], + "bestreweding": [], + "monthly": ["S", "M"], + "overprotect": ["S", "D", "G", "V"], + "wallboard": ["M"], + "Maureen's": [], + "credit": ["E", "G", "S", "B", "M", "D"], + "blistering": ["Y"], + "outproduced": [], + "nut": ["S", "M"], + "abridgeds": [], + "incendiaries": [], + "destabilize": [], + "ghoulish": ["Y", "P"], + "insisted": [], + "wallflower's": [], + "modulation's": [], + "Ethelred": ["M"], + "Nick's": [], + "humorlessliness": [], + "Enterprise's": [], + "titleholders": [], + "occultism": ["M"], + "Hovhaness": ["M"], + "whatnot's": [], + "pregnancies's": [], + "LPNs's": [], + "actively": [], + "oncogene": ["S", "M"], + "carat'ses": [], + "massiveness's": [], + "postscripts": [], + "monetarist'ses": [], + "circumspectly": [], + "hemorrhaginged": [], + "enthrones": [], + "Cassius's": [], + "paste": ["D", "S", "M", "G"], + "scholarlies": [], + "unrated": [], + "mikinged": [], + "locums": [], + "mufti": ["S", "M"], + "LP": ["M"], + "woodpiles": [], + "Gladstone": ["M", "S"], + "Gregg's": [], + "parley": ["G", "M", "D", "S"], + "demonstrators": [], + "Marcelo": ["M"], + "avenger's": [], + "minibus's": [], + "keg's": [], + "coded": [], + "coke's": [], + "superposition's": [], + "niggaz": [], + "unlivable": [], + "mirthfulness": ["M"], + "crochetersing": [], + "cumbrous": [], + "marshaled": [], + "watercraft": ["M"], + "inadequate": [], + "jute's": [], + "expoundinged": [], + "loss": ["M", "S"], + "centigrams": [], + "gizmos's": [], + "ghetto's": [], + "sip's": [], + "troopeder": [], + "platoon'sed": [], + "hypnotist": ["M", "S"], + "baseboard": ["M", "S"], + "accreditation's": [], + "scarlatina's": [], + "Amadeus's": [], + "collaring": [], + "buff'sed": [], + "overdub's": [], + "photon's": [], + "stillness's": [], + "primaries": [], + "crippled": [], + "Philby's": [], + "playlist": ["M", "S"], + "REIT": [], + "dialings": [], + "epinephrine": ["M"], + "Rod's": [], + "metabolically": [], + "defoliants": [], + "extractings": [], + "prestidigitation's": [], + "wastersing": [], + "zeta": ["M", "S"], + "famine": ["S", "M"], + "ts": [], + "dimwit's": [], + "glistered": [], + "addlinged": [], + "overreactions": [], + "convertibles's": [], + "conjectural": [], + "marshmallows": [], + "Rama's": [], + "dowdiness's": [], + "minoreding": [], + "multiplexers": [], + "overwhelming": ["Y"], + "revenge'sing": [], + "scoffs": [], + "cephalic": [], + "persuasivenessly": [], + "scrappiest": [], + "instituteder": [], + "learn": ["A", "U", "G", "D", "S"], + "purchasable": [], + "leukocytes": [], + "backstroke'sing": [], + "disparages": [], + "Dewey's": [], + "firewood": ["M"], + "Guiana's": [], + "disafforest": [], + "juridic": [], + "Huddersfield": [], + "yowlsing": [], + "ducats": [], + "sateds": [], + "critics's": [], + "lunchbox": ["S"], + "pined": [], + "humanists's": [], + "demonstrativesness": [], + "maelstrom": ["S", "M"], + "rhapsodies's": [], + "milked": [], + "Norw": [], + "Mills": ["M"], + "whizzes": [], + "courage's": [], + "erotica": ["M"], + "habitat's": [], + "capitations": [], + "spindlinged": [], + "moraine's": [], + "impenitence": ["M"], + "Geller's": [], + "pellet's": [], + "necropolis": ["M", "S"], + "videodisc'ses": [], + "illogical": ["Y"], + "picayune": [], + "teething's": [], + "roomiest": [], + "Serbia's": [], + "barre": ["M", "G", "J", "D", "S"], + "complacent": ["Y"], + "Valois": ["M"], + "capsizeds": [], + "tanks": [], + "dread": ["S", "M", "D", "G"], + "Sanskrit's": [], + "Minneapolis": ["M"], + "dona": ["M", "S"], + "blahs's": [], + "workhorses": [], + "lorries": [], + "parfait": ["M", "S"], + "ftps": [], + "yeasts's": [], + "quibbled": [], + "Dijkstra's": [], + "recessives's": [], + "restyle": [], + "superveninged": [], + "antimacassar's": [], + "falsehoods's": [], + "drumlins": [], + "Mandarin": ["M"], + "Soweto's": [], + "Gilliam's": [], + "acclimatized": [], + "champing": [], + "SARS's": [], + "functionary": ["S", "M"], + "countersignature's": [], + "controverts": [], + "indexersing": [], + "carnation's": [], + "imponderable": ["M", "S"], + "overpopulated": [], + "davenport's": [], + "lumberyard's": [], + "flatly": [], + "dull": ["D", "R", "P", "T", "G", "S"], + "jennet's": [], + "decoration": ["A", "M"], + "custody's": [], + "dialectical": [], + "Kalmyk's": [], + "expressions's": [], + "blowup": ["M", "S"], + "valets's": [], + "camellia's": [], + "noncommittally": [], + "Diwali's": [], + "Kellogg": ["M"], + "temporary's": [], + "circulatesing": [], + "property's": [], + "crusty": ["T", "R", "P"], + "Offenbach's": [], + "handcarts": [], + "scroungersing": [], + "gatepost's": [], + "clothiers": [], + "petrologist": ["S", "M"], + "satirized": [], + "carpenters": [], + "Acapulco": ["M"], + "castigate": ["D", "S", "G", "N"], + "valency": ["S", "M"], + "molecular": [], + "joists": [], + "nincompoop's": [], + "birthing": [], + "infatuation": ["M"], + "floodgate": ["M", "S"], + "belaying": [], + "shuffler": ["S", "M"], + "punier": [], + "trussing": [], + "trapper's": [], + "moper's": [], + "darkie": ["S"], + "Riley's": [], + "alfalfa": ["M"], + "indignation": ["M"], + "welledness": [], + "celebrator's": [], + "skirts's": [], + "goshawk'ses": [], + "buss": ["M"], + "Vila's": [], + "CAP": [], + "hon's": [], + "soirees": [], + "orphan": ["S", "M", "D", "G"], + "douche's": [], + "smartness": ["M"], + "ligation's": [], + "fogyish": [], + "grooming": ["M"], + "Rivera": ["M"], + "grafter": ["M"], + "fractals's": [], + "hideously": [], + "muggles": [], + "dehydrate": [], + "readmitted": [], + "dielectric's": [], + "pantomimists": [], + "mollification": ["M"], + "hep": [], + "Haas's": [], + "ladsing": [], + "ratline's": [], + "grooviest": [], + "caribous's": [], + "dandify": ["G", "D", "S"], + "handbarrow's": [], + "nitrites's": [], + "disorientation": [], + "fussed": [], + "Tasman's": [], + "index'sed": [], + "handmade": [], + "ecliptic's": [], + "gut's": [], + "clearinghouse's": [], + "toke'sing": [], + "beret'ses": [], + "Eliot": ["M"], + "hackles": [], + "skirmish": ["Z", "G", "M", "D", "R", "S"], + "flux'ses": [], + "webmaster": ["S", "M"], + "Custer": ["M"], + "tenderly": [], + "scatters's": [], + "showpiece's": [], + "shibboleth's": [], + "wiretappers's": [], + "vegetables's": [], + "Ungava": ["M"], + "Salome's": [], + "exterior": ["M", "S"], + "millionaire's": [], + "cashew'ses": [], + "prognathous": [], + "interrupts": [], + "yous": [], + "dressmakers's": [], + "dyestuff": ["M"], + "forest": ["A", "C", "G", "D", "S"], + "jaggies": [], + "bladeds": [], + "reveille": ["M"], + "seconded": [], + "caliphate'ses": [], + "nobelium's": [], + "Osage'ses": [], + "demotic": [], + "feinted": [], + "sweetheart": ["S", "M"], + "ponders": [], + "neon's": [], + "misnomer'ses": [], + "sideboard": ["S", "M"], + "Tao": ["M"], + "disruption": ["S", "M"], + "approach": ["G", "B", "M", "D", "S"], + "Stella's": [], + "trivium's": [], + "feminizes": [], + "tartly": [], + "trillionths": [], + "conceitedness": ["M"], + "Stark's": [], + "Austerlitz's": [], + "Technicolor": ["M"], + "antisocial": ["Y"], + "commiseration's": [], + "bite'sers": [], + "chastisingment": [], + "stagger's": [], + "internationals's": [], + "supervisors": [], + "shucks": ["S"], + "paltriness": ["M"], + "heave'sers": [], + "av": ["R", "Z"], + "Aristides's": [], + "dopa's": [], + "Plataea's": [], + "sampled": [], + "gorse's": [], + "halberd's": [], + "Bacchus's": [], + "forbid": ["S"], + "cosmopolitanism's": [], + "Adriatic": ["M"], + "expertsness": [], + "billfolds": [], + "mealinesser": [], + "Prada": ["M"], + "baseless": [], + "ultrasound's": [], + "ruby": ["R", "S", "M", "T"], + "laurel's": [], + "conglomeration's": [], + "divans's": [], + "jumpiest": [], + "overcharging": [], + "fester's": [], + "Pope's": [], + "loincloths": [], + "lucrativeness": ["M"], + "limitation's": [], + "poincianas": [], + "sphincters": [], + "vilification's": [], + "sentimentalism": ["M"], + "turnoff's": [], + "scourgeds": [], + "Ch'in": ["M"], + "river": ["M"], + "teething": ["M"], + "comprehensive": ["P", "M", "Y", "S"], + "terbium's": [], + "gathering's": [], + "secreting": [], + "Narraganset": [], + "ossify": ["N", "G", "D", "S"], + "winnowersing": [], + "sulfide's": [], + "Shebeli": ["M"], + "waywardness's": [], + "thwart'sed": [], + "bristleds": [], + "irateness": ["M"], + "majolica": ["M"], + "McDowell": ["M"], + "sludgier": [], + "extract": ["M", "D", "G", "S"], + "linebacker's": [], + "question'sed": [], + "stepfather": ["S", "M"], + "menorah's": [], + "detective's": [], + "slaughterings": [], + "Nicaraguan": ["S", "M"], + "hardbound": [], + "outlet": ["S", "M"], + "cogitated": [], + "randomness'ses": [], + "vividness's": [], + "litterer's": [], + "toast": ["S", "M", "D", "R", "Z", "G"], + "upstages": [], + "Alcoa": ["M"], + "horas": [], + "elocutionists": [], + "Macao's": [], + "Tabrizes": [], + "chart": ["G", "M", "D", "S"], + "fawn": ["M", "D", "R", "Z", "G", "S"], + "verruca's": [], + "ichthyology": ["M"], + "Armageddons": [], + "tears": [], + "reinforcing": [], + "cuckoldry's": [], + "gamuts's": [], + "hinters": [], + "obeysing": [], + "mistreating": [], + "lightface's": [], + "wound": ["S", "G", "M", "D", "R"], + "lummoxes": [], + "gimmickry": ["M"], + "oxidizer": ["M"], + "flips": [], + "wrongdoer": ["S", "M"], + "mascaraing": [], + "pederasty": ["M"], + "Pentecostals": [], + "obsequiously": [], + "Dakota": ["S", "M"], + "automateds": [], + "potful's": [], + "harelip's": [], + "radial": ["S", "M", "Y"], + "inseminating": [], + "speculate": ["D", "S", "X", "G", "N", "V"], + "coo's": [], + "Zn's": [], + "girlishliness": [], + "comforting": ["Y"], + "leprosy": ["M"], + "indeed": [], + "diocesan's": [], + "nutria": ["S", "M"], + "Nestor's": [], + "Tangiers": [], + "megalomaniacs": [], + "frightsens": [], + "untrained": [], + "Dianna": ["M"], + "print": ["A", "M", "D", "S", "G"], + "survivals": [], + "jackboots": [], + "slayeder": [], + "snowballings": [], + "rooferers": [], + "employs": [], + "modicum": ["S", "M"], + "stepmothers's": [], + "symbolic": [], + "childproofs": [], + "Huggins": ["M"], + "pepsin": ["M"], + "squeamishness's": [], + "affiliation": ["E", "M"], + "Wheeling's": [], + "constructings": [], + "repaints": [], + "oblongs": [], + "overrunning": [], + "lovably": [], + "appalls": [], + "specs's": [], + "cloudbursts": [], + "decorousness's": [], + "Santiago": ["M"], + "Vandal": ["M", "S"], + "formalism": ["M"], + "strap's": [], + "amidship": ["S"], + "interring": ["E"], + "penchants's": [], + "opportunity": ["S", "M"], + "illimitable": [], + "staunchest": [], + "disembowelmenting": [], + "comportments": [], + "quartet's": [], + "manner's": [], + "stitching's": [], + "abductors": [], + "grudging": ["Y"], + "Rubaiyat's": [], + "coloration": ["E", "M"], + "brunches": [], + "minuscule": ["M", "S"], + "griffin's": [], + "Volga's": [], + "Salvadoreans": [], + "summing": [], + "spinal's": [], + "deceitful": ["Y", "P"], + "Tahiti's": [], + "nondiscrimination's": [], + "wavelength": ["M"], + "commitments": [], + "megachurch's": [], + "caller'ses": [], + "Grundy": ["M"], + "insistently": [], + "rungs": [], + "bacchanal's": [], + "curly": ["R", "P", "T"], + "Rickover": ["M"], + "Galilean's": [], + "frays": [], + "detectors": [], + "Pravda's": [], + "sunshade": ["M", "S"], + "imperfects's": [], + "chanteuse": ["M", "S"], + "Muhammad": ["M"], + "checkouts": [], + "fictitiously": [], + "disturbers": [], + "without": [], + "curfew": ["S", "M"], + "accelerationens": [], + "editings": [], + "docents": [], + "corps's": [], + "convenes": [], + "involveds": [], + "Ozzie's": [], + "servant's": [], + "latches": [], + "svelte": ["T", "R"], + "frill's": [], + "Germany": ["M"], + "Bertrand's": [], + "identities's": [], + "lids's": [], + "encomiums": [], + "landline's": [], + "sunflower": ["M", "S"], + "herculean": [], + "barrenness": ["M"], + "plea'ses": [], + "Tyre's": [], + "gondoliers's": [], + "writers": [], + "nutritiousliness": [], + "how": ["S", "M"], + "somersets's": [], + "crumbliness's": [], + "men's": [], + "acacia": ["M", "S"], + "widowersing": [], + "overshadowed": [], + "Charlie": ["M"], + "scrammed": [], + "tracking": [], + "tablespoonful's": [], + "Strickland's": [], + "borderland'ses": [], + "inunsupportable": [], + "humpsing": [], + "junipers's": [], + "wedged": [], + "inert": ["Y", "P"], + "filter'sed": [], + "Gestapos": [], + "watchtowers's": [], + "asseveration's": [], + "healthful": ["P", "Y"], + "improving": [], + "brightenersing": [], + "gape": ["M", "S"], + "firer's": [], + "originatesing": [], + "weatherizing": [], + "sprig": ["S", "M"], + "tyrannic": [], + "genealogist": ["M", "S"], + "cryptogram": ["S", "M"], + "abolitionism": ["M"], + "jemmying": [], + "boondogglers": [], + "sustains": [], + "larch": ["M", "S"], + "scupperings": [], + "tenaciousliness": [], + "alleviation": ["M"], + "ungraceful": ["Y"], + "alienatesing": [], + "usherettes": [], + "crucifix's": [], + "icesing": [], + "parentage": ["M"], + "haplessliness": [], + "merchandise": ["M", "Z", "G", "D", "R", "S"], + "bookend": ["M", "S"], + "putsches": [], + "orals": [], + "seltzers": [], + "entreaties": [], + "Fargo": ["M"], + "pincheds": [], + "sonar": ["S", "M"], + "taxidermists's": [], + "colonel": ["S", "M"], + "wiz": [], + "pencil": ["G", "M", "D", "J", "S"], + "kerosene": ["M"], + "Vichy's": [], + "junkeder": [], + "octane": ["M", "S"], + "beekeepers": [], + "peas": [], + "exclude": ["G", "D", "S"], + "diesel'sed": [], + "legalistic": [], + "purporting": [], + "hemstitch'sed": [], + "evil": ["M", "R", "Y", "T", "S", "P"], + "teethe": ["G", "D", "S"], + "prosthesis": ["M"], + "loftiness": ["M"], + "import'sed": [], + "weir'ses": [], + "destruct'sed": [], + "misreport": ["M", "D", "G", "S"], + "fatiguing": [], + "Sihanouk": ["M"], + "bits's": [], + "simpleness's": [], + "vetting": [], + "ado's": [], + "breakable's": [], + "fashionista'ses": [], + "turbo": ["S", "M"], + "microloan": ["M", "S"], + "alleviatesing": [], + "loafsers": [], + "roadkill's": [], + "fleabite": ["S"], + "Carmichael's": [], + "libeler": ["M"], + "roastersing": [], + "receptacles": [], + "lifeboats": [], + "reconstruction": [], + "Winfrey": ["M"], + "vulgarly": [], + "em": ["S"], + "mappings": [], + "Macedonian's": [], + "diplomat'ses": [], + "unmanly": ["T"], + "linkage": ["M", "S"], + "premonitions": [], + "Doppler": ["M"], + "softwood's": [], + "scandalously": [], + "deli's": [], + "aliyahs": [], + "forefoot's": [], + "squawks": [], + "effusion": ["M"], + "panoplies": [], + "Evert's": [], + "sat": [], + "Simone": ["M"], + "dogtrot'ses": [], + "expurgated": ["U"], + "palatalizes": [], + "merest": [], + "communicable": ["I"], + "stretchable": [], + "cardsharp": ["M", "R", "Z", "S"], + "malicious": ["P", "Y"], + "O'Hara": ["M"], + "ganglion's": [], + "florescence": ["I", "M"], + "unplaced": [], + "recto": ["M", "S"], + "drunk": ["S", "T", "M", "N", "R"], + "fixative": ["M", "S"], + "benediction": ["S", "M"], + "Ithacan": ["M"], + "expedience": ["I", "M"], + "imputations": [], + "hello": ["S", "M"], + "analysts's": [], + "disgruntlementing": [], + "dolefulness's": [], + "Belleek": ["M"], + "May'ser": [], + "shanty": ["S", "M"], + "roadwork": ["S", "M"], + "cheapen": ["D", "G"], + "fifteen": ["M", "H", "S"], + "gemologist'ses": [], + "fights's": [], + "acclimatize": ["D", "S", "G"], + "parricidal": [], + "pigeons": [], + "Hanuka": [], + "crow'sed": [], + "BITNET": [], + "vulgarizersing": [], + "myocardium": [], + "pinking": [], + "accusatives": [], + "Scaramouch": ["M"], + "permissions": [], + "futuristic": [], + "inspirational": [], + "mulishness": ["M"], + "affiancinged": [], + "corruption": ["M", "S"], + "amalgam's": [], + "oversights": [], + "Samoans's": [], + "mischance's": [], + "nonstarters": [], + "decelerators": [], + "Katina": ["M"], + "cleaningsness": [], + "tribunals": [], + "caution's": [], + "coverlet'ses": [], + "ionizer'ses": [], + "pries's": [], + "inbreed": ["S"], + "radioactive": ["Y"], + "prepackaging": [], + "rifleman's": [], + "entrance": ["L", "D", "S", "M", "G"], + "brochures": [], + "oblivion's": [], + "slenderest": [], + "fainterly": [], + "mark'sed": [], + "agitate": ["X", "G", "N", "D", "S"], + "Marquis": ["M"], + "Olsen's": [], + "thanksgiving's": [], + "suffixing": [], + "fixative's": [], + "aerosol's": [], + "euchres's": [], + "littersers": [], + "zone": ["A", "G", "D", "S"], + "glassfuls": [], + "zinc'ses": [], + "quirk": ["S", "M", "D", "G"], + "holidays's": [], + "tantalize": ["Z", "G", "D", "R", "S"], + "skim": ["M", "S"], + "IOU's": [], + "microloan's": [], + "Ghats's": [], + "beet": ["S", "M"], + "verdure": ["M"], + "hypocrisies": [], + "catchings": [], + "byword's": [], + "mimicking": [], + "stamp": ["S", "M", "D", "R", "Z", "G"], + "Dion": ["M"], + "vigilantes's": [], + "roast's": [], + "germ'ses": [], + "nigger": ["S", "M", "!"], + "Barlow": ["M"], + "efferent": [], + "unloved": [], + "assault": ["M", "D", "R", "G", "S"], + "coal's": [], + "horniest": [], + "asterisk's": [], + "audio": ["M", "S"], + "scandalizes": [], + "placket": ["S", "M"], + "blocker's": [], + "yeoman": ["M"], + "pouched": [], + "enroll": ["D", "L", "S", "G"], + "corer's": [], + "debater": ["M"], + "bustles's": [], + "Accra's": [], + "goner's": [], + "cheekbone's": [], + "keystones": [], + "lunge's": [], + "parrots": [], + "Scotia": ["M"], + "mouthpiece's": [], + "repeater": ["M"], + "cloves's": [], + "pusher's": [], + "intruders": [], + "Photostat's": [], + "damp's": [], + "conveyabled": [], + "Scottie": ["S", "M"], + "jail'sed": [], + "unprotected": [], + "procurement": ["M"], + "collocate": ["M", "G", "N", "D", "S", "X"], + "virgin's": [], + "feathering's": [], + "overspecializing": [], + "dietitian's": [], + "external'sly": [], + "cygnet": ["M", "S"], + "Cooley's": [], + "Spenserian": ["M"], + "Frisco's": [], + "rascal's": [], + "incumbencies's": [], + "vigilantist": ["M"], + "HDD": [], + "scourging": [], + "sopranos": [], + "Jeremy's": [], + "gruesomely": [], + "actually": [], + "mason": ["S", "M"], + "distanceds": [], + "abuses": [], + "rhesus's": [], + "seminarian's": [], + "mutinously": [], + "outback's": [], + "setts": [], + "secededs": [], + "unapparent": [], + "postures": [], + "cranberries's": [], + "knocking": [], + "Meagan's": [], + "pointillist's": [], + "Shepherd's": [], + "northeast's": [], + "unseat": [], + "musk": ["M"], + "tureens's": [], + "Gorgon": ["M"], + "terabits": [], + "Lindbergh": ["M"], + "constancy's": [], + "hominged": [], + "ambiguity's": [], + "rationality": ["M"], + "Witt's": [], + "beaten": ["U"], + "Cartier": ["M"], + "notarizinged": [], + "circumlocution": ["M", "S"], + "goalies's": [], + "epoxy": ["D", "S", "M", "G"], + "servitors": [], + "jealous": ["Y"], + "wallow'sed": [], + "hardness's": [], + "workman's": [], + "Semitics's": [], + "breather's": [], + "denizen's": [], + "Gutenberg": ["M"], + "diptych": ["M"], + "obtrude": ["D", "S", "G"], + "crickets": [], + "saprophyte": ["S", "M"], + "entrusting": [], + "captivates": [], + "zoomed": [], + "paneling's": [], + "carpet's": [], + "Mickey": ["M"], + "deathblow": ["M", "S"], + "expounded": [], + "emplacements's": [], + "blasphemy": ["S", "M"], + "phial": ["S", "M"], + "dermatologist": ["S", "M"], + "Fibonacci": ["M"], + "chastisement": ["S", "M"], + "stoked": [], + "lens'ses": [], + "wombs": [], + "shuffling": [], + "Gregory's": [], + "Omaha": ["M", "S"], + "dumpling's": [], + "overmastersed": [], + "sub": ["S", "M"], + "Helmholtz": ["M"], + "aging's": [], + "Serbian": ["M", "S"], + "declaringable": [], + "organize": ["A", "E", "S", "D", "G"], + "underestimates": [], + "adjures": [], + "fink": ["M", "D", "G", "S"], + "Atman's": [], + "shredder": ["M", "S"], + "dishes": [], + "ocelot": ["M", "S"], + "pilgrimage": ["M", "S"], + "harp": ["M", "D", "G", "S"], + "Villon's": [], + "fanny's": [], + "godfathers's": [], + "Elisabeth's": [], + "ungentle": [], + "brass": ["M", "S"], + "cerebrum": ["M", "S"], + "batcheds": [], + "hologram's": [], + "inkwells": [], + "icicle's": [], + "Brazos's": [], + "chap": ["S", "M"], + "cowhand": ["M", "S"], + "huaraches's": [], + "overseen": [], + "snarled": [], + "hero's": [], + "towhee": ["M", "S"], + "hydratingen": [], + "heated": ["U"], + "waistcoat": ["M", "S"], + "east": ["M"], + "turbochargeder": [], + "unbeknownst": [], + "subleased": [], + "Venus's": [], + "sixtieths": [], + "imperturbability's": [], + "hormone's": [], + "racketeereding": [], + "Isabella": ["M"], + "nonpolluting": [], + "fruitfulness": ["M"], + "freaked": [], + "scopinged": [], + "ungulate": ["M", "S"], + "forefather'ses": [], + "condolence": ["S", "M"], + "ventriloquists's": [], + "completionsed": [], + "tropic's": [], + "celibate'ses": [], + "pensioned": [], + "epithets's": [], + "recants": [], + "canyoning": [], + "sidewinder's": [], + "produce's": [], + "fascist's": [], + "founts": [], + "daredevil's": [], + "vocalizesing": [], + "shipping's": [], + "scorchersing": [], + "humanity's": [], + "cont": [], + "filers's": [], + "weirdo's": [], + "stonework's": [], + "countertenor'ses": [], + "numbing": [], + "hatreds's": [], + "peasants's": [], + "ovals": [], + "rangefinder": ["S"], + "Cannes": ["M"], + "burners": [], + "abbess's": [], + "station'sed": [], + "retrodden": [], + "lifework's": [], + "mud's": [], + "drawled": [], + "tinniness's": [], + "windowpanes": [], + "mukluks": [], + "acquirement's": [], + "Nunez": ["M"], + "sightless": [], + "shiers": [], + "board'sed": [], + "gatecrashed": [], + "prodigies": [], + "epic": ["M", "S"], + "Pentateuch's": [], + "meagerness": ["M"], + "cardinal": ["S", "M", "Y"], + "steamfitting's": [], + "diametrical": ["Y"], + "sepals": [], + "tenderheartedness's": [], + "diddles": [], + "wavelike": [], + "bergs's": [], + "flakiness's": [], + "nonunion": [], + "asset": ["M", "S"], + "concatenatingen": [], + "admissible": ["I"], + "brutalizeds": [], + "flub'ses": [], + "relentless": ["P", "Y"], + "multiplayer's": [], + "brigands's": [], + "quintupling": [], + "insurrectionist": ["S", "M"], + "insensibility": [], + "pies": [], + "Stonehenge's": [], + "rug": ["S", "M"], + "quantum": ["M"], + "crustier": [], + "moue": ["M", "S"], + "downsize": ["G", "D", "S"], + "brute": ["S", "M"], + "shrine'ses": [], + "team'sed": [], + "mayonnaise": ["M"], + "pervasiveness": ["M"], + "ethic's": [], + "finkeding": [], + "tinteding": [], + "glimpsed": [], + "waive": ["D", "R", "S", "Z", "G"], + "pastimes": [], + "magniloquence's": [], + "grit": ["M", "S"], + "relisted": [], + "brainstormeding": [], + "gobbet": ["S", "M"], + "smorgasbords": [], + "Lawson": ["M"], + "windstorm": ["M", "S"], + "multiplier": ["M"], + "immobilizersing": [], + "fallow'sed": [], + "patois's": [], + "impeccability's": [], + "Havel": ["M"], + "fingerprinting's": [], + "telescope'sing": [], + "legality": ["S", "M"], + "hosteler's": [], + "taxonomy": ["S", "M"], + "dowsesers": [], + "attitudinize": ["G", "D", "S"], + "forts": [], + "crumple's": [], + "Seymour": ["M"], + "wieldersing": [], + "compost's": [], + "leastwise": [], + "accenting": [], + "foxhounds's": [], + "glass'sed": [], + "politicizesing": [], + "loves": [], + "sphagnums": [], + "pricinged": [], + "mashups": [], + "Norton's": [], + "conferrer": ["M", "S"], + "command": ["S", "M", "D", "R", "L", "Z", "G"], + "expends": [], + "dill'ses": [], + "footholds": [], + "hora'ses": [], + "jolliness's": [], + "Deanna": ["M"], + "keynoter": ["M"], + "Galois": ["M"], + "Cornwall": ["M"], + "Brownshirt's": [], + "latchkey": ["S", "M"], + "isobar": ["M", "S"], + "elocutionary": [], + "cowherd's": [], + "tenors's": [], + "overcookeding": [], + "improbabilities": [], + "cassava's": [], + "panegyrics's": [], + "deadheading": [], + "fiddlers": [], + "millipedes": [], + "definable": ["I", "U"], + "bedsore": ["S", "M"], + "seductress'ses": [], + "ingredients": [], + "deadliness": ["M"], + "circulation's": [], + "spray's": [], + "cognate'ses": [], + "indemnity": ["S", "M"], + "Nevadian": [], + "titillated": [], + "branching": [], + "bradycardia": [], + "integrals": [], + "augmenteder": [], + "layoff": ["S", "M"], + "Angelico": ["M"], + "lapins's": [], + "slithering": [], + "rosily": [], + "Bardeen": ["M"], + "dustier": [], + "Iraq's": [], + "overshoe's": [], + "Terrance": ["M"], + "tailored": [], + "bevel'sed": [], + "denuded": [], + "choppering": [], + "Schumann's": [], + "accession": ["M", "D", "G", "S"], + "earphone": ["M", "S"], + "photometers": [], + "discouragement's": [], + "industrialists's": [], + "drunkard's": [], + "hierarchies": [], + "Graham's": [], + "Advent": ["M", "S"], + "celebrity": ["S", "M"], + "mineral'ses": [], + "achievement's": [], + "invaluably": [], + "yes'ses": [], + "colones": [], + "deviancy's": [], + "abrogations": [], + "countess": ["M", "S"], + "language": ["M", "S"], + "volleying": [], + "ownsing": [], + "prerecordings": [], + "Hewlett": ["M"], + "bunks": [], + "contingent'sly": [], + "aspiringed": [], + "resoluteness's": [], + "optometrists": [], + "locksmith's": [], + "riyal's": [], + "criticizer": ["M"], + "legionnaire": ["S", "M"], + "aplenty": [], + "vinous": [], + "Buffy": ["M"], + "Marge's": [], + "assassin's": [], + "waveder": [], + "chisels": [], + "alphabetizing": [], + "gorgeous": ["Y", "P"], + "optimisms's": [], + "motherboard's": [], + "marriage": ["A", "S", "M"], + "cordage": ["M"], + "seditious": [], + "synfuel's": [], + "breakfasted": [], + "soupcon's": [], + "critter": ["S", "M"], + "interrogative's": [], + "Adeline": ["M"], + "treasuries": [], + "Father's": [], + "monopolists": [], + "pact'ses": [], + "Latin's": [], + "savant's": [], + "bloodlessness's": [], + "slowcoaches": [], + "Tijuana's": [], + "stagnate": ["D", "S", "G", "N"], + "laparoscopic": [], + "drum's": [], + "thumpeding": [], + "lac's": [], + "spadix": ["M"], + "yarn": ["M", "S"], + "grappling": [], + "demonstrateds": [], + "pluck'sed": [], + "opiates": [], + "backaches": [], + "ultrasound'ses": [], + "whaleboat'ses": [], + "deputy": ["S", "M"], + "lorn": [], + "praying": [], + "Adams's": [], + "ensnarement's": [], + "porteds": [], + "rosiness": ["M"], + "Beatles's": [], + "buttressing": [], + "lambasteds": [], + "kamikazes": [], + "greenness's": [], + "commemorations": [], + "vulgarize": ["Z", "G", "D", "R", "S"], + "indexation": ["S", "M"], + "proponents's": [], + "architect": ["S", "M"], + "arrhythmia's": [], + "wheezing": [], + "denigration's": [], + "ballplayer": ["M", "S"], + "Ruhr's": [], + "wisecracked": [], + "telekinesis": ["M"], + "steamfitter": ["S", "M"], + "outfitter'ses": [], + "janitor's": [], + "Lon's": [], + "pertinence": ["M"], + "rollings": [], + "hedgerow's": [], + "overcharge's": [], + "Germans": [], + "guitars": [], + "paramours": [], + "niche's": [], + "budgeds": [], + "folklorists": [], + "waken": ["G", "S", "D"], + "peril": ["S", "G", "M", "D"], + "dissidence": ["M"], + "eavesdrops": [], + "flagellated": [], + "Hogarth": ["M"], + "dietetic": ["S"], + "repentant": ["Y"], + "Cypriot's": [], + "ovum": ["M"], + "frontiers": [], + "glittersing": [], + "realization's": [], + "hydrangeas": [], + "subtended": [], + "must's": [], + "albino'ses": [], + "motioning": [], + "moral": ["S", "M", "Y"], + "wrongheadedliness": [], + "Kohl's": [], + "blonder": [], + "almshouses": [], + "tattleder": [], + "implicationsed": [], + "scintillated": [], + "integrator": [], + "sententious": ["Y"], + "supersized": [], + "limerick's": [], + "nautilus": ["M", "S"], + "offprint's": [], + "helplessnessly": [], + "hairy": ["T", "R", "P"], + "income": [], + "chinos": [], + "dugouts": [], + "torching": [], + "spitings": [], + "Streisand": ["M"], + "GTE": ["M"], + "warehousing": [], + "compulsory's": [], + "aviatrices": [], + "planetariums's": [], + "Caldwell's": [], + "ears": [], + "try": ["A", "G", "D", "S"], + "mantel": ["M", "S"], + "Klee": ["M"], + "ulcerates": [], + "hoagie": ["M", "S"], + "perkiness's": [], + "warrant's": [], + "installments's": [], + "bluffed": [], + "convince": ["G", "D", "S"], + "morals": [], + "stilled": [], + "marvels": [], + "eliminate": ["X", "D", "S", "G", "N"], + "radarscopes": [], + "Teuton's": [], + "reforges": [], + "Rooney": ["M"], + "govern": ["D", "G", "S", "B", "L"], + "radishes": [], + "staunching": [], + "cloistral": [], + "Dumbo": ["M"], + "absorbents": [], + "quipped": [], + "lewderly": [], + "ionize": ["U", "D", "S", "G"], + "liners": [], + "idolization's": [], + "perpetrator's": [], + "treys": [], + "salaciousness's": [], + "Rita's": [], + "Candy": ["M"], + "henpeck": ["G", "S", "D"], + "stickiest": [], + "constituencies": [], + "skuas": [], + "knolls": [], + "illiberality's": [], + "spinals": [], + "coopered": [], + "bulk": ["M", "D", "G", "S"], + "brander's": [], + "chad": ["S"], + "Comanche'ses": [], + "wreathed": [], + "Deimos's": [], + "leadership": ["S", "M"], + "chokeder": [], + "coital": [], + "polynomial's": [], + "pooled": [], + "plutocrat's": [], + "Hall's": [], + "shear'sed": [], + "din": ["Z", "G", "S", "M", "D", "R"], + "opens": [], + "disengagement": [], + "yeshivas's": [], + "homesickness's": [], + "darn's": [], + "Erie's": [], + "Ag's": [], + "marjoram": ["M"], + "leprechaun's": [], + "sevens": [], + "doghouse": ["S", "M"], + "exigent": [], + "offshoot's": [], + "mailboxes": [], + "Tamera": ["M"], + "fondness's": [], + "Octavio": ["M"], + "reclamation": ["M"], + "Sn's": [], + "uptake's": [], + "mailbombs": [], + "remarkably": [], + "requitesers": [], + "Whigs": [], + "incrementalists": [], + "rogue": ["K", "S"], + "lifework'ses": [], + "semaphored": [], + "Mosaic": ["M"], + "blazoned": [], + "shapelessly": [], + "culleding": [], + "Botswana's": [], + "isolate'sing": [], + "countable": ["U"], + "welterweight's": [], + "shrinks": [], + "Dilbert'ses": [], + "bidirectionally": [], + "Pomeranian's": [], + "Ron": ["M"], + "subtrahend's": [], + "reappearance": [], + "imbecile": ["M", "S"], + "torpidly": [], + "twig": ["M", "S"], + "lilies": [], + "Afghanistan": ["M"], + "Georges": [], + "ovule'ses": [], + "Phoebe": ["M"], + "exhibited": [], + "Ag": ["M"], + "remorsefully": [], + "pillager's": [], + "rimed": [], + "licensees": [], + "passel's": [], + "derbies's": [], + "Rawalpindi": ["M"], + "notability": ["S", "M"], + "posture": ["M", "G", "J", "D", "S"], + "sawbones": ["M"], + "porting": [], + "fichu": ["S", "M"], + "qualitative": ["Y"], + "efficiency's": [], + "Lyman": ["M"], + "who're": [], + "Kuhn's": [], + "presumably": [], + "wipe": ["M", "Z", "G", "D", "R", "S"], + "coiner": ["M"], + "mudslingers": [], + "Northrup's": [], + "sandbox'ses": [], + "assignors": [], + "peatier": [], + "restrooms": [], + "cinder": ["G", "M", "D", "S"], + "like'sing": [], + "midwinter": ["M"], + "microsecond's": [], + "affirmations": [], + "icinesser": [], + "crayon'sed": [], + "mindlessness's": [], + "Dorthy": ["M"], + "conspectus's": [], + "belligerents": [], + "cultivation": ["M"], + "waterboards": [], + "flagellant": ["S"], + "distinguishing": [], + "dimmer": ["S", "M"], + "prosthesis's": [], + "solidifiesen": [], + "rob": ["S"], + "Hastings": ["M"], + "fade'ses": [], + "exobiology's": [], + "resentfulness's": [], + "skibobs": [], + "stockyard": ["M", "S"], + "Macedonian": ["S", "M"], + "harmonics's": [], + "igloos": [], + "oxygenation's": [], + "L'Oreal": ["M"], + "leaner": [], + "donation": ["M"], + "Ayers": ["M"], + "scalawag's": [], + "revocation": [], + "chainsawings": [], + "emancipates": [], + "muckiest": [], + "dishwater's": [], + "Februaries": [], + "download's": [], + "storesing": [], + "caramels's": [], + "fetching": ["Y"], + "norms": [], + "invokeds": [], + "unsteadily": [], + "observation": ["S", "M"], + "IVF": [], + "pepperonis": [], + "boudoir": ["S", "M"], + "feminine's": [], + "conciliators's": [], + "wastewater": [], + "collectivism's": [], + "biorhythm": ["M", "S"], + "interferon": ["M"], + "impediment": ["S", "M"], + "gimmicky": [], + "Hammarskjold's": [], + "scar": ["G", "M", "D", "S"], + "glaringly": [], + "grosseder": [], + "claviers": [], + "smokiest": [], + "sanitize": ["G", "D", "S"], + "parceled": [], + "radar": ["S", "M"], + "liverwurst's": [], + "Queen's": [], + "rogers": [], + "clearing's": [], + "Byers's": [], + "sleek": ["S", "D", "R", "Y", "T", "G", "P"], + "subcontinental": [], + "acceptsable": [], + "bodysuit's": [], + "scratched": ["U"], + "Slater's": [], + "wendsing": [], + "emaciates": [], + "fizzes": [], + "slough": ["G", "M", "D"], + "cattery": ["S"], + "Eileen's": [], + "tapestries": [], + "sunstroke's": [], + "Diderot": ["M"], + "underacts": [], + "butter'sed": [], + "Hawaiian": ["S", "M"], + "papergirls": [], + "traces's": [], + "doglike": [], + "amaranth's": [], + "Frau": ["M", "N"], + "bight": ["M", "S"], + "Janissary": ["M"], + "string's": [], + "DVRs's": [], + "inquietude": [], + "univalves's": [], + "classed": [], + "Huang": ["M"], + "senator'ses": [], + "createsing": [], + "hairsplitting": ["M"], + "captivation's": [], + "inflicting": [], + "cataclysm": ["M", "S"], + "techno": [], + "cheekbones": [], + "gangrene": ["D", "S", "M", "G"], + "milometers": [], + "manikin's": [], + "birdbath's": [], + "pantie": ["M", "S"], + "antis": [], + "sirloins's": [], + "Edmonton's": [], + "presentably": [], + "nonintellectual's": [], + "insurmountably": [], + "raspberry's": [], + "embrace": ["D", "S", "M", "G"], + "cotton's": [], + "gyrfalcons": [], + "ruddier": [], + "swells's": [], + "commingle": ["D", "S", "G"], + "terahertz's": [], + "camouflaging": [], + "mane's": [], + "scapegoats": [], + "nonappearance'ses": [], + "clit's": [], + "Petty's": [], + "weapon's": [], + "Delhi": ["M"], + "callback's": [], + "wellspring'ses": [], + "saltcellar's": [], + "giantess": ["M", "S"], + "jacked": [], + "aim's": [], + "substantives": [], + "quintessences": [], + "ethnicity": ["M"], + "homespun's": [], + "centennial's": [], + "engulfsment": [], + "flavoreds": [], + "classwork": ["M"], + "trysting": [], + "neutrality": ["M"], + "complexesly": [], + "seers": [], + "guessable": [], + "concentrateds": [], + "quantity": ["S", "M"], + "angler's": [], + "lividly": [], + "enumerable": [], + "podiatrists": [], + "workweeks's": [], + "wiener": ["S", "M"], + "supersaturated": [], + "straitening": [], + "pollster": ["S", "M"], + "alternation's": [], + "stripteases": [], + "abbreviateds": [], + "throbs": [], + "podcast'sing": [], + "luxuriates": [], + "burst's": [], + "gingersnaps's": [], + "satirize": ["D", "S", "G"], + "spirituals": [], + "ameliorate": ["G", "N", "V", "D", "S"], + "strangleholds's": [], + "Niagara": ["M"], + "forecaster": ["M"], + "modestly": [], + "Durhams": [], + "Adas's": [], + "incarceration": ["M"], + "laces": [], + "transcontinental": [], + "anteater's": [], + "aflutter": [], + "jalousie": ["M", "S"], + "greenhouses": [], + "philandering": ["M"], + "belladonna": ["M"], + "bookend's": [], + "canonizations's": [], + "Crows's": [], + "aerie's": [], + "asthma's": [], + "snipers": [], + "copters's": [], + "awakening's": [], + "stewarding's": [], + "thumped": [], + "Leonard's": [], + "motels's": [], + "definitely": [], + "archipelago": ["M", "S"], + "might's": [], + "reefeder": [], + "multiplicationers": [], + "taxiway": ["S"], + "jalapenos": [], + "mongered": [], + "scoldingings": [], + "equations": [], + "manglersing": [], + "uterus": ["M"], + "J": ["M", "D"], + "Kristen": ["M"], + "giro": ["S"], + "abstinence": ["M"], + "kitchenware": ["M"], + "moldy": ["T", "P", "R"], + "mentalities": [], + "drift": ["S", "M", "D", "R", "Z", "G"], + "Tad's": [], + "coinersing": [], + "neonate'ses": [], + "outracinged": [], + "empties": [], + "playbill'ses": [], + "discomfiteding": [], + "commenceds": [], + "garishness": ["M"], + "dumbwaiters": [], + "circumvented": [], + "readout's": [], + "Maker's": [], + "bus's": [], + "dallier's": [], + "Geraldine's": [], + "anorectics's": [], + "Augustus's": [], + "anaconda's": [], + "vomit'sed": [], + "lorded": [], + "antonyms's": [], + "cabochons": [], + "scopeds": [], + "rarefies": [], + "finagles": [], + "oracular": [], + "foreshortened": [], + "possessings": [], + "fallaciously": [], + "aquaplane's": [], + "tantrum's": [], + "Krasnodar": ["M"], + "retracing": [], + "permissiveness": ["M"], + "Lutheranism": ["M", "S"], + "racetrack'ses": [], + "conics's": [], + "cowpat": ["S"], + "frowziness's": [], + "technicalities": [], + "rough": ["M", "D", "N", "R", "Y", "X", "T", "G", "P"], + "murmurers": [], + "combustive": [], + "porcelains": [], + "elbows": [], + "Tucuman": ["M"], + "caulker's": [], + "denigrated": [], + "damnation": ["M"], + "noggin's": [], + "discounter": [], + "enactment's": [], + "busby's": [], + "enormities's": [], + "breasting": [], + "derogating": [], + "corruptliness": [], + "donnish": [], + "relieds": [], + "Jeanie's": [], + "microbreweries's": [], + "windfall'ses": [], + "Jenkins's": [], + "lolled": [], + "calligraphist'ses": [], + "masseur": ["S", "M"], + "eternity's": [], + "Katowice's": [], + "meticulousness's": [], + "ghouls's": [], + "granary": ["S", "M"], + "occurrence": ["S", "M"], + "Gwen's": [], + "crumbier": [], + "autobahns's": [], + "fraction's": [], + "mover's": [], + "Jewry's": [], + "invitationals": [], + "pickled": [], + "fretwork": ["M"], + "shenanigans": [], + "phalangers's": [], + "unrewritten": [], + "pronouncesment": [], + "lips": [], + "perpetrating": [], + "perkiest": [], + "daub'sed": [], + "SEATO": [], + "Colombo": ["M"], + "aquatic": ["S", "M"], + "anachronisms": [], + "misprint's": [], + "Ar's": [], + "roper": ["M"], + "patiently": [], + "petabyte's": [], + "Garibaldi's": [], + "sires": [], + "seaboard's": [], + "solecisms's": [], + "espalier": ["M", "D", "S", "G"], + "toothpick's": [], + "inkier": [], + "echelons": [], + "straightener's": [], + "FWIW": [], + "psychoanalysis's": [], + "unpleasant": [], + "Combs's": [], + "bares": [], + "overabundance": ["M"], + "haw'sed": [], + "assize'ses": [], + "brindle's": [], + "caboose's": [], + "Bethune's": [], + "calloused": [], + "intranet's": [], + "Zapata's": [], + "clerestory's": [], + "McCain's": [], + "positing": [], + "superconductor's": [], + "defeatism's": [], + "provideder": [], + "subconsciously": [], + "lyricism's": [], + "sportscasting": [], + "hazy": ["R", "T", "P"], + "amplification": ["M"], + "Ishim's": [], + "Dianna's": [], + "furriest": [], + "dingbat's": [], + "Aguinaldo's": [], + "showdown'ses": [], + "troubleshootings": [], + "hazards": [], + "gatherer's": [], + "balers": [], + "soleding": [], + "managements": [], + "grilles": [], + "permafrost's": [], + "meatloaf's": [], + "histogram's": [], + "unreadable": [], + "RV's": [], + "FUDs": [], + "milliseconds's": [], + "ageist's": [], + "combine": ["A", "D", "S", "G"], + "cookeries's": [], + "dotards's": [], + "encoders": [], + "microgrooves's": [], + "quill": ["S", "M"], + "applied": [], + "haste": ["S", "M"], + "implausibility's": [], + "curse": ["D", "S", "M", "G", "V"], + "uncompensated": [], + "zealots": [], + "flunking": [], + "Marquez": ["M"], + "Rosalyn's": [], + "Belgians": [], + "archfiends": [], + "Heracles": ["M"], + "collect": ["A", "S", "G", "V", "D"], + "Bruno's": [], + "perpetuating": [], + "saddest": [], + "tautological": ["Y"], + "plateau's": [], + "foodstuff": ["S", "M"], + "beak's": [], + "pictograph's": [], + "autobahn": ["S", "M"], + "burka's": [], + "xcvi": [], + "jawbreaker's": [], + "Sacramento's": [], + "interrelate": ["X", "D", "S", "G", "N"], + "carding's": [], + "pored": [], + "basest": [], + "prelates": [], + "hillside": ["S", "M"], + "daintiers": [], + "mansard": ["M", "S"], + "rosettes": [], + "Namibia's": [], + "titties": [], + "romances": [], + "dissociating": [], + "coronas's": [], + "factoreding": [], + "denotation": [], + "withers": ["M"], + "endorsersing": [], + "flyweights": [], + "rim's": [], + "donating": [], + "Thor's": [], + "nonobjective": [], + "opaquest": [], + "email": ["S", "M", "D", "G"], + "go": ["J", "M", "R", "H", "Z", "G"], + "vivariums": [], + "eyetooth": ["M"], + "sawing": [], + "telecommuteder": [], + "cattle": ["M"], + "fare'sing": [], + "Scythian": ["M"], + "befuddlement's": [], + "starvation's": [], + "buccaneer's": [], + "jolliest": [], + "sangfroid's": [], + "unretie": [], + "warehouseds": [], + "nepotism": ["M"], + "amending": [], + "blueish": [], + "simplifications": [], + "verb'ses": [], + "Enron": ["M"], + "clothed": [], + "bringersing": [], + "Shula's": [], + "cleanse": ["Z", "G", "D", "R", "S"], + "downplay": ["D", "S", "G"], + "rippers's": [], + "echoeding": [], + "Polly": ["M"], + "fitting's": [], + "psalteries's": [], + "mesdames": [], + "carbonate": ["M", "G", "N", "D", "S"], + "raptliness": [], + "waterspouts's": [], + "peruseds": [], + "Marseilles's": [], + "velodrome": ["S"], + "expounder": ["M"], + "harpooner's": [], + "cosmetician": ["M", "S"], + "clangorous": ["Y"], + "Pindar": ["M"], + "invigilator": ["S"], + "recall": [], + "gorgesing": [], + "Belarus": ["M"], + "circumference'ses": [], + "dethronementing": [], + "vulgarizes": [], + "fruiting": [], + "Cliburn's": [], + "availabling": [], + "skirmishing": [], + "episodes's": [], + "pulping's": [], + "solicitors": [], + "channelizesing": [], + "grovelling": [], + "description": ["S", "M"], + "eras": [], + "admiralty's": [], + "Ed'sen": [], + "jobholder": ["M", "S"], + "postseasons's": [], + "nightstand's": [], + "hemorrhoid'ses": [], + "glinted": [], + "sutlers": [], + "advertisement'ses": [], + "vagrant'ses": [], + "Corvette": ["M"], + "suborns": [], + "canter's": [], + "agitator'ses": [], + "methanol's": [], + "sanctums": [], + "congregations": [], + "sweatsuits": [], + "flutes": [], + "crescendos's": [], + "preexistence": ["M"], + "Schwartz's": [], + "plosives": [], + "hobbyhorse": ["M", "S"], + "rugrat's": [], + "why's": [], + "rappers's": [], + "enticement": ["M", "S"], + "nucleoside": [], + "sweaty": ["R", "T"], + "prostituting": [], + "tusk's": [], + "nucleons's": [], + "Idaho's": [], + "formaldehyde's": [], + "alpaca's": [], + "firmings": [], + "poinsettias": [], + "doorposts": [], + "trailed": [], + "quest'ses": [], + "Ashlee's": [], + "chug's": [], + "frequentest": [], + "accessibly": ["I"], + "chokecherry's": [], + "remitted": [], + "lentil": ["M", "S"], + "impress": ["M", "D", "S", "G", "V"], + "migrations's": [], + "juggernauts": [], + "applauder's": [], + "boil": ["S", "J", "Z", "G", "M", "D", "R"], + "unsystematic": [], + "Borneo": ["M"], + "rivinged": [], + "Jewess": ["M", "S"], + "Buffalo's": [], + "downspouts": [], + "camerawork": [], + "demystification": [], + "Connemara's": [], + "strychnine": ["M"], + "hematite's": [], + "subteens's": [], + "festivity's": [], + "droopiness": ["M"], + "tear": ["G", "M", "D", "S"], + "tuberculous": [], + "thralling": [], + "razz's": [], + "topsoil": ["M"], + "Allentown": ["M"], + "committeewoman's": [], + "fallibility": ["I", "M"], + "glob": ["M", "D", "G", "S"], + "stead": ["S", "M"], + "abstracted": ["Y", "P"], + "pyrite": ["S", "M"], + "dub's": [], + "archdeacon": ["S", "M"], + "enveloper": ["M"], + "swelleder": [], + "Jill": ["M"], + "dazzles": [], + "braces": [], + "traversals": [], + "immaterially": [], + "Jewel": ["M"], + "cadenzas": [], + "yew": ["S", "M"], + "hank's": [], + "interpolateds": [], + "attendant's": [], + "potpourris": [], + "Calgary": ["M"], + "axing": [], + "landfall'ses": [], + "externals": [], + "banter'sed": [], + "Elbe's": [], + "Spenser": ["M"], + "breakdown'ses": [], + "hosteled": [], + "gotten": [], + "steroid": ["M", "S"], + "convalescence'ses": [], + "pertained": [], + "samplingings": [], + "spines": [], + "topknots": [], + "intolerable": [], + "whoops": [], + "appellation's": [], + "posse'ses": [], + "crossover'ses": [], + "defrauds": [], + "Altaic": ["M"], + "inspectors": [], + "minioned": [], + "rapine": ["M"], + "clerestories's": [], + "slaying's": [], + "hurdlers": [], + "autograph": ["M", "D", "G"], + "formative": [], + "mart's": [], + "chomp'sed": [], + "dashboards's": [], + "integrity": ["M"], + "oxidization": ["M"], + "brigantines": [], + "evildoers": [], + "businesswoman's": [], + "tablespoon": ["S", "M"], + "raper's": [], + "Carmen": ["M"], + "louseds": [], + "satori": ["M"], + "Shanna's": [], + "Keynesian": ["M"], + "programmings's": [], + "telegram'ses": [], + "overload's": [], + "tuckers": [], + "Hayward": ["M"], + "ole": ["S", "M", "V"], + "stodge": [], + "logier": [], + "witness's": [], + "ligatured": [], + "abysmal": ["Y"], + "triplicate": ["M", "G", "D", "S"], + "ramrods": [], + "carton'ses": [], + "quantified": [], + "madame's": [], + "quickstep": ["M", "S"], + "randomize": ["D", "S", "G"], + "heartthrob'ses": [], + "conreserve's": [], + "accustomeds": [], + "desperado's": [], + "armchair's": [], + "looter's": [], + "twelve": ["S", "M"], + "odiousness's": [], + "Kislev": ["M"], + "activism's": [], + "Monroe's": [], + "prorateds": [], + "requisition's": [], + "closet": ["S", "M", "D", "G"], + "hunkiest": [], + "grower's": [], + "perfectible": [], + "splosheds": [], + "coco": ["M", "S"], + "Min": ["M"], + "pralines": [], + "swerves": [], + "daydreams": [], + "germinating": [], + "plangency's": [], + "overdeveloping": [], + "ashram's": [], + "serviceman": ["M"], + "dogmatist's": [], + "loops": [], + "tribune's": [], + "Abelard's": [], + "assignations": [], + "pauper'ses": [], + "ampersand'ses": [], + "gimp's": [], + "appetizer'ses": [], + "pizza'ses": [], + "gown'sed": [], + "bluejackets": [], + "inhaler": ["S", "M"], + "nappers": [], + "embarrassingly": [], + "diacritic": ["M", "S"], + "implodeds": [], + "extender's": [], + "softwood": ["S", "M"], + "attacking": [], + "bandaging": [], + "Guallatiri's": [], + "pashas's": [], + "ratings": [], + "scutcheons's": [], + "gamines's": [], + "grindsers": [], + "flouter": ["M"], + "sell": ["Z", "G", "M", "R", "S"], + "Bundesbank's": [], + "Snow": ["M"], + "thumbnails's": [], + "buckles": [], + "quarterdecks": [], + "Linnaeus's": [], + "enthuseds": [], + "comforter": ["M", "S"], + "rearing's": [], + "grepping": [], + "heady": ["R", "T", "P"], + "Kremlinology": [], + "seaboard": ["S", "M"], + "sirree's": [], + "bookcase'ses": [], + "holiness's": [], + "Buckley": ["M"], + "UL": [], + "reciprocatingen": [], + "bemoaneding": [], + "intangibly": [], + "elbowed": [], + "mutter": ["Z", "G", "J", "M", "D", "R", "S"], + "orangeades": [], + "site'sing": [], + "nudged": [], + "handicraft": ["M", "S"], + "except": ["G", "S", "D"], + "arbitrament's": [], + "tourney'ses": [], + "flouter's": [], + "Olivia": ["M"], + "flowchart's": [], + "petrologists's": [], + "accustomsing": [], + "clap": ["S", "M"], + "dormerses": [], + "corkeding": [], + "grafter's": [], + "displeasure": ["M"], + "preach": ["D", "R", "S", "Z", "G", "L"], + "Sevastopol's": [], + "foxhunts": [], + "cryptography": ["M"], + "terrorism's": [], + "disbarment": ["M"], + "loot'sed": [], + "depreciatingen": [], + "euthanizesing": [], + "Trump": ["M"], + "Chrysostom": ["M"], + "catalyses": [], + "chicle": ["M"], + "prudery's": [], + "nicest": [], + "clothesline's": [], + "prophesies's": [], + "absconder": ["M"], + "hobbits": [], + "Srinagar": ["M"], + "Belgium": ["M"], + "yarmulke": ["S", "M"], + "caperable": [], + "stewardesses": [], + "vieweder": [], + "Abyssinian's": [], + "barracuda's": [], + "Lucille": ["M"], + "Pacino's": [], + "rhapsodize": ["G", "D", "S"], + "want": ["M", "D", "G", "S"], + "injury": [], + "artiste'ses": [], + "Clarke": ["M"], + "sudsiest": [], + "roust": ["S", "D", "G"], + "Leavenworth": ["M"], + "trellising's": [], + "littering": [], + "propagator's": [], + "shambled": [], + "Poland's": [], + "washing's": [], + "jousted": [], + "fortifieder": [], + "timidest": [], + "crowneding": [], + "whiteden": [], + "adorablers": [], + "highland": ["M", "R", "Z", "S"], + "thorax's": [], + "perfumed": [], + "beepersing": [], + "droop'sed": [], + "Pasadena": ["M"], + "retaliatingen": [], + "neurotics": [], + "Stan's": [], + "technologies": [], + "lix": ["K"], + "longstanding": [], + "pitilessly": [], + "clangor's": [], + "xenophobia": ["M"], + "rightism": ["M"], + "kibble": ["D", "S", "M", "G"], + "Moguls": [], + "quirkiest": [], + "quints's": [], + "miked": [], + "Eggo's": [], + "sharpers": [], + "atonement": ["M"], + "titillatesing": [], + "mite": ["M", "Z", "R", "S"], + "yipping": [], + "enforcing": [], + "innards's": [], + "fullers": [], + "breastworks": [], + "boarding's": [], + "comprehensibility's": [], + "gabardines's": [], + "BASIC": ["S", "M"], + "gas's": [], + "niggleder": [], + "faculties's": [], + "alludinged": [], + "victories's": [], + "palfrey": ["S", "M"], + "disarmament": [], + "ferrying": [], + "journalese's": [], + "parricide": ["M", "S"], + "Vulgates": [], + "Egyptian": ["M", "S"], + "humbugging": [], + "Roxie": ["M"], + "bankable's": [], + "Nanjing": ["M"], + "groundwork": ["M"], + "antique's": [], + "row": ["S", "Z", "G", "M", "D", "R"], + "luck's": [], + "soda's": [], + "Pawnees": [], + "Carney's": [], + "Connors's": [], + "skulls's": [], + "ironclad'ses": [], + "fishcake": ["S", "M"], + "grandly": [], + "canon": ["M", "S"], + "wassaileding": [], + "cigarillo's": [], + "build's": [], + "southerners's": [], + "servomechanisms": [], + "dehydration": [], + "pomanders": [], + "blinker'sed": [], + "Magdalena's": [], + "zombie": ["M", "S"], + "stutters": [], + "harlots's": [], + "longs": [], + "Plath's": [], + "counteractsing": [], + "cardiograph": ["M"], + "stingily": [], + "frisson": ["S"], + "inexpiable": [], + "absentee'ses": [], + "channelizing": [], + "trussing's": [], + "voices": [], + "harboring": [], + "gabbing": [], + "mail's": [], + "fibrils's": [], + "begin": ["S"], + "funnelings": [], + "canceleder": [], + "arsenal's": [], + "kidnappings": [], + "resignations": [], + "belcheds": [], + "resettlement": [], + "eras's": [], + "ability": ["I", "E", "M", "S"], + "distaff": ["S", "M"], + "quilterers": [], + "structuralism": [], + "neatliness": [], + "Prius": ["M"], + "globs": [], + "talkatively": [], + "belligerent'sly": [], + "collatesens": [], + "absentees": [], + "spore's": [], + "redbreasts": [], + "fluxed": [], + "unusual": [], + "now's": [], + "Californian": ["S", "M"], + "symbiotic": [], + "wet": ["S", "M", "Y", "P"], + "smelteder": [], + "codeine": ["M"], + "machete's": [], + "Triangulum": ["M"], + "progesterone": ["M"], + "tidally": [], + "hijackings": [], + "sawbuck'ses": [], + "reinforcements's": [], + "Christchurch": ["M"], + "pride": ["M", "G", "D", "S"], + "monomaniacal": [], + "Darius": ["M"], + "fandango": ["M", "S"], + "liquefieds": [], + "scintillation's": [], + "scampering": [], + "shrewish": [], + "dishearten": [], + "phrasings": [], + "stage's": [], + "nobly": [], + "Semite's": [], + "redisintegration": [], + "marionette'ses": [], + "foreplay's": [], + "Fr's": [], + "braggart": ["S", "M"], + "recognizable": ["U"], + "KP": [], + "semiprofessional's": [], + "mawkishness": ["M"], + "teenagers": [], + "peignoir's": [], + "mechanistically": [], + "jun": [], + "stereotypes's": [], + "herpetologist": ["S", "M"], + "ruminations": [], + "connection'ses": [], + "serene": ["R", "P", "Y", "T"], + "accommodatingen": [], + "chickenshit": ["S", "!"], + "consumerists": [], + "gauged": [], + "shed's": [], + "treetop's": [], + "Lobachevsky's": [], + "mooted": [], + "Freeman": ["M"], + "Ethiopians": [], + "clash'sed": [], + "spendthrift's": [], + "garlic's": [], + "westernization": ["M"], + "Ivy": ["M"], + "sexiest": [], + "liquid'ses": [], + "oblique's": [], + "trusses": [], + "payslip": ["S", "M"], + "disheartening": ["Y"], + "toxicology's": [], + "Liebfraumilch": ["M"], + "pardon'sed": [], + "weightlessness's": [], + "sicker": [], + "smallholder": ["S"], + "methodologies's": [], + "Riggs": ["M"], + "catheterize": ["D", "S", "G"], + "throngs's": [], + "deputation": ["M", "S"], + "hoofed": [], + "moiety": ["S", "M"], + "huckster's": [], + "usage's": [], + "bologna": ["M"], + "dufferers": [], + "nonstandard": [], + "bungling": [], + "weatherboardsing": [], + "pull": ["Z", "G", "M", "D", "R", "S"], + "curtness's": [], + "signorinas": [], + "Neptune": ["M"], + "Rolaids's": [], + "commences": [], + "futz": ["D", "S", "G"], + "scrog": ["S"], + "paws": [], + "immigratingen": [], + "kindliest": [], + "Gonzales": ["M"], + "letterbox": ["S"], + "Bowman's": [], + "schnitzels's": [], + "rudders": [], + "spectacle": ["S", "M"], + "renovates": [], + "mixture's": [], + "placard's": [], + "stonewallsed": [], + "earache's": [], + "uploaded": [], + "subtendsed": [], + "Perkins's": [], + "headhunter": ["M"], + "stratosphere": ["S", "M"], + "Birdseye": ["M"], + "hitches": [], + "inexpedient": [], + "slathers": [], + "nonconducting": [], + "font's": [], + "Argos": ["M"], + "ahead": [], + "sot's": [], + "principles's": [], + "liverworts": [], + "lido's": [], + "bedbug": ["S", "M"], + "presidencies's": [], + "stunt's": [], + "Lorrie": ["M"], + "lionesses": [], + "mast": ["M", "D", "S"], + "ogles": [], + "molders": [], + "stopper's": [], + "skateboarders": [], + "feud's": [], + "eddies's": [], + "commentary": ["S", "M"], + "anger'sed": [], + "lapin": ["S", "M"], + "reorg's": [], + "Michaelmas": ["M", "S"], + "checking": [], + "sidesaddle's": [], + "bluebottle's": [], + "BTU": [], + "Vargas's": [], + "buzz'sed": [], + "base's": [], + "god": ["S", "M"], + "Hopewell": ["M"], + "permissibly": [], + "lobotomy's": [], + "quivering": [], + "ersatz'ses": [], + "pommel": ["S", "G", "M", "D"], + "pancakes": [], + "puddling": ["M"], + "cowcatcher'ses": [], + "ascents": [], + "martingales": [], + "implosions": [], + "mongooses": [], + "eruptive": [], + "Macumba": ["M"], + "banshee'ses": [], + "gangrene'sing": [], + "bottle's": [], + "Oranjestad's": [], + "wins": [], + "tasking": [], + "saxifrage's": [], + "ossifying": [], + "cleanseder": [], + "Chandler": ["M"], + "Melissa's": [], + "Josef's": [], + "comparison's": [], + "spurs": [], + "percipience's": [], + "exhalation": ["M", "S"], + "orchestrate": ["D", "S", "X", "G", "N"], + "uremia": ["M"], + "catcalls's": [], + "grinding's": [], + "regulative": [], + "poison'sed": [], + "mpg": [], + "slenderize": ["D", "S", "G"], + "Andres's": [], + "indited": [], + "trialed": [], + "spluttering": [], + "mulattoes": [], + "collidesing": [], + "tower's": [], + "chairs": [], + "feel's": [], + "Western's": [], + "caveat": ["M", "S"], + "craved": [], + "whist's": [], + "remain": ["S", "G", "D"], + "changed": ["U"], + "margaritas": [], + "Cm's": [], + "sparingness": [], + "Augustinian's": [], + "skating's": [], + "Serena's": [], + "jailbreak": ["S", "M"], + "tonsure": ["D", "S", "M", "G"], + "wagerer's": [], + "moussakas": [], + "moldeder": [], + "applicationsing": [], + "curiosity": ["S", "M"], + "capsizing": [], + "Herbert's": [], + "crooning": [], + "surer": [], + "spicing": [], + "belittlement": ["M"], + "Sweet's": [], + "veeps": [], + "stares": [], + "hunks": [], + "logotype": ["S", "M"], + "detente": ["S", "M", "N", "X"], + "lankly": [], + "proselytizeder": [], + "seine": ["M", "Z", "G", "D", "R", "S"], + "purposing": [], + "speedways": [], + "negativeness": ["M"], + "assaultering": [], + "transients's": [], + "bemiringed": [], + "driveled": [], + "grooved": [], + "palavers": [], + "interlocutors": [], + "oceans's": [], + "wienies's": [], + "diffuses": [], + "tenths": [], + "nutritious": ["Y", "P"], + "potsherds": [], + "Jovian": ["M"], + "voltages": [], + "miscalculates": [], + "urologist": ["M", "S"], + "Howard": ["M"], + "bittersweet": ["M", "S"], + "catnap's": [], + "forwarded": [], + "monkeyshines's": [], + "rugby": ["M"], + "noways": [], + "moateds": [], + "backpacker's": [], + "orphans": [], + "stinger": ["M"], + "Duke": ["M"], + "vocalization's": [], + "flotation's": [], + "systematically": [], + "souvenir's": [], + "marten's": [], + "captioneding": [], + "Frankfurt's": [], + "lowboy'ses": [], + "suspendersing": [], + "chipolatas": [], + "sacrifices": [], + "likensing": [], + "Athens": ["M"], + "savagery": ["S", "M"], + "pitchersing": [], + "baskinged": [], + "relatively": [], + "fold": ["A", "U", "S", "G", "D"], + "duel": ["M", "D", "R", "J", "Z", "G", "S"], + "blindly": [], + "thunderheads's": [], + "Roswell's": [], + "deference's": [], + "bungler's": [], + "medullas": [], + "ride's": [], + "vermiform": [], + "perfume": ["D", "R", "S", "M", "Z", "G"], + "cliometrician": ["M", "S"], + "cue'sing": [], + "laugheding": [], + "redemptive": [], + "oration's": [], + "wipes": [], + "motorways's": [], + "unmotivated": [], + "sweetmeat'ses": [], + "Chopin's": [], + "mos": [], + "Ceres's": [], + "bookbindery's": [], + "mummification": ["M"], + "wright's": [], + "pageantry": ["M"], + "attended": ["U"], + "lash": ["M", "D", "S", "G", "J"], + "dowager": ["M", "S"], + "Shana's": [], + "totes": [], + "expatiatingen": [], + "cambereds": [], + "layabouts": [], + "parabola's": [], + "Dakotan's": [], + "commercial": ["S", "M", "Y"], + "charabanc": ["M", "S"], + "absolute'sly": [], + "phenomenon'ses": [], + "illusion'ses": [], + "caressed": [], + "Kentucky's": [], + "bravo's": [], + "vivisecteding": [], + "jaundiceds": [], + "crackhead'ses": [], + "castigateds": [], + "warning": ["M"], + "yesterdays": [], + "outlays": [], + "spectacularly": [], + "misdone": [], + "liberalization's": [], + "registrars": [], + "lustier": [], + "shogunate's": [], + "specialty": ["S", "M"], + "notable's": [], + "hotplate's": [], + "siting": [], + "tedium": ["M"], + "nelson's": [], + "mortarsing": [], + "whipping's": [], + "ensconce": ["D", "S", "G"], + "Ln": [], + "candidate's": [], + "nickname'sing": [], + "aerated": [], + "coattail": ["S", "M"], + "shadowboxeds": [], + "Sonya's": [], + "houseproud": [], + "airmail's": [], + "listening": [], + "jaywalked": [], + "cloture": ["S", "M"], + "eyeopener": ["M", "S"], + "freeware's": [], + "transplanting": [], + "wales": [], + "menopausal": [], + "matchbooks's": [], + "annotator": ["M", "S"], + "goths": [], + "throttles's": [], + "Alphecca's": [], + "roomy": ["R", "T", "P"], + "Chaucer": ["M"], + "Rotterdam": ["M"], + "wellsprings": [], + "chemises": [], + "readies": [], + "channel'sed": [], + "aquaplaneds": [], + "Finnish's": [], + "lilo": ["S"], + "republicanism": ["M"], + "materiel": ["M"], + "undercarriages": [], + "dendrite": ["S", "M"], + "Protestantism": ["S", "M"], + "dubs": [], + "Christensen": ["M"], + "operator's": [], + "indisposed": [], + "commissioned": [], + "truckersing": [], + "In's": [], + "Kimberly's": [], + "rehang": ["S", "D", "G"], + "mg": [], + "bratwursts": [], + "onlooking": [], + "dropsy": ["M"], + "gastropod": ["S", "M"], + "wonk's": [], + "Absalom's": [], + "granularity's": [], + "obsessesing": [], + "defined": ["U"], + "beater": ["M"], + "mandrake": ["M", "S"], + "teen's": [], + "generating": [], + "prayeder": [], + "excrescence'ses": [], + "Hezbollah": ["M"], + "Celtic's": [], + "Jahangir's": [], + "ragweed": ["M"], + "mighty": ["T", "R", "P"], + "stitchery": ["M"], + "babushka": ["S", "M"], + "Dido's": [], + "masseuse's": [], + "rectifying": [], + "cuddles's": [], + "oppositely": [], + "tutu'ses": [], + "dating": [], + "website": ["S", "M"], + "phonologists": [], + "classing": [], + "Santiago's": [], + "ADP's": [], + "sleeplessly": [], + "minutes": [], + "maturates": [], + "DDS's": [], + "countermanding": [], + "economically": [], + "polyhedron": ["S", "M"], + "personality's": [], + "customize": ["D", "S", "G"], + "Mentholatum's": [], + "paleontologists": [], + "vernacular'ses": [], + "Lords's": [], + "admired": [], + "dipsos": [], + "iterated": [], + "stallsed": [], + "monophonic": [], + "securesly": [], + "Hench": ["M"], + "Luke": ["M"], + "transmigrated": [], + "frogmarcheds": [], + "milepost's": [], + "haul'sed": [], + "sweatshop's": [], + "paternalism's": [], + "commando": ["S", "M"], + "Mathewson": ["M"], + "choler": ["M"], + "stilts's": [], + "juices": [], + "ovenproof": [], + "ductility": ["M"], + "freewheelings": [], + "selectively": [], + "ascribing": [], + "Athena": ["M"], + "woolen": ["M"], + "Canada's": [], + "metamorphosis": ["M"], + "clarets": [], + "hay's": [], + "wakingings": [], + "overlain": [], + "dodgier": [], + "tuppenny": [], + "moundsing": [], + "breaching's": [], + "McPherson": ["M"], + "ontology's": [], + "Kinney's": [], + "Valencias's": [], + "booster's": [], + "epidemiologist": ["S", "M"], + "award": ["G", "M", "D", "S"], + "indefeasibly": [], + "whitewashes": [], + "correlated": ["U"], + "Mass": ["M", "S"], + "Langley": ["M"], + "extracteding": [], + "Mathews's": [], + "fabricating": [], + "flamenco'ses": [], + "ripeneding": [], + "cellmates": [], + "dialectics": ["M"], + "collective's": [], + "offs": [], + "limitations": [], + "deviation's": [], + "bonito": ["M", "S"], + "Peel": ["M"], + "zoomeds": [], + "workingmen": [], + "simmer'sed": [], + "Otis's": [], + "pilafs's": [], + "Niamey's": [], + "cracked": [], + "underhandednessly": [], + "mortises's": [], + "amendments": [], + "aspire": ["G", "D", "S"], + "distanced": [], + "prerequisites": [], + "previous": ["Y"], + "Formosa": ["M"], + "snored": [], + "hobs's": [], + "relics": [], + "mudguards": [], + "terminates": [], + "turban'sed": [], + "clicked": [], + "dysfunction's": [], + "Naomi": ["M"], + "imbroglio": ["S", "M"], + "deepening": [], + "blockbusting's": [], + "pawn'sed": [], + "Guernsey'ses": [], + "sailsings": [], + "Corinthian's": [], + "wagon'ser": [], + "wince": ["D", "S", "M", "G"], + "zippiest": [], + "executive's": [], + "testifiersing": [], + "sandstone's": [], + "federating": [], + "K'sen": [], + "fetlock'ses": [], + "jangle's": [], + "Mira's": [], + "rheumatically": [], + "twist": ["U", "S", "D", "G"], + "skiing": ["M"], + "preliminary's": [], + "huffiness's": [], + "archaeologists": [], + "universalize": ["D", "S", "G"], + "oarsman's": [], + "bicycler's": [], + "mysteries's": [], + "crossbreeding's": [], + "escarpment'ses": [], + "disbursed": [], + "fortieth": ["M"], + "casuists": [], + "dozily": [], + "yeast": ["S", "M"], + "huzzah": ["M", "D", "G"], + "lentil's": [], + "Jules's": [], + "unalloyed": [], + "erasablers": [], + "boilsings": [], + "Yellowknife": ["M"], + "antenna's": [], + "troubleshooting's": [], + "coastline": ["M", "S"], + "duckbill": ["S", "M"], + "workbook's": [], + "AA's": [], + "mesmerizeder": [], + "numberless": [], + "provenances's": [], + "devise": [], + "peace's": [], + "AFDC": [], + "Mervin": ["M"], + "interment": ["E", "M"], + "cozies": [], + "torturers": [], + "rebellion's": [], + "regressing": [], + "electronica": ["M"], + "stuffing": ["M"], + "bulletinings": [], + "Swahilis": [], + "sedately": [], + "Melchizedek's": [], + "Shakespearean's": [], + "quarreler's": [], + "coagulatingen": [], + "disablement": ["M"], + "cytology's": [], + "halls": [], + "locust": ["S", "M"], + "tern'ses": [], + "weapon": ["M", "S"], + "snowdrifts's": [], + "book's": [], + "tiffeding": [], + "discotheques's": [], + "highlight's": [], + "excrescent": [], + "decline": ["D", "R", "S", "M", "Z", "G"], + "trackballs": [], + "conservatism": ["M"], + "Feynman's": [], + "incoherent": [], + "tuners": [], + "divorcement": ["M", "S"], + "porgy's": [], + "magnesium": ["M"], + "Wilberforce's": [], + "draped": [], + "jitterbugger's": [], + "hostilely": [], + "uninjured": [], + "typifyinged": [], + "inclusion": ["M", "S"], + "fundamentals's": [], + "surrogates's": [], + "Landry": ["M"], + "crank": ["S", "M", "D", "G"], + "alienates": [], + "virago's": [], + "polliwogs's": [], + "penalties's": [], + "contorted": [], + "redress": [], + "pentagon'ses": [], + "Deng": ["M"], + "snorkeling's": [], + "crunch'sed": [], + "elucidation's": [], + "sackings": [], + "radiantly": [], + "involuntariness's": [], + "depositor": ["M", "S"], + "permissively": [], + "current": ["F", "A", "Y"], + "DOS's": [], + "chatter's": [], + "steamship": ["M", "S"], + "slab'ses": [], + "dew": ["M"], + "hotcake's": [], + "plotters": [], + "postmistresses": [], + "cubits's": [], + "shameds": [], + "violet": ["M", "S"], + "incongruousness's": [], + "boozes": [], + "drawbridges": [], + "obsequiousness": ["M"], + "tycoon": ["S", "M"], + "retches": [], + "breakage'ses": [], + "wrestlersing": [], + "affability's": [], + "ceaselessness's": [], + "guardrails's": [], + "dressing's": [], + "lap": ["S", "M"], + "smokehouse'ses": [], + "aroma's": [], + "meditatesing": [], + "headwaiters": [], + "fairing's": [], + "tinkling": [], + "trademarked": [], + "misunderstandingings": [], + "overruleds": [], + "Salk": ["M"], + "oilskin": ["M", "S"], + "penthouses": [], + "Lithuania's": [], + "seignior": ["S", "M"], + "splutter": ["G", "M", "D", "S"], + "Oxonian's": [], + "parsley": ["M"], + "tailboards": [], + "plats": [], + "decompress": [], + "swoosh's": [], + "uniformity's": [], + "pardonably": ["U"], + "paralleling": [], + "moonlighterers": [], + "supper's": [], + "usurper's": [], + "sheltered": [], + "merino": ["M", "S"], + "adjutant": ["S", "M"], + "overtaken": [], + "Cormack": ["M"], + "dialogue's": [], + "centenniallies": [], + "anomalously": [], + "dizziesness": [], + "drooling": [], + "daughterly": [], + "fartings": [], + "gazinged": [], + "Barclay's": [], + "lynching's": [], + "transpacific": [], + "switcher": ["M"], + "mullion'sed": [], + "felicitation": ["M"], + "Mary's": [], + "spluttering's": [], + "untypical": [], + "morasses": [], + "multiplication": ["M"], + "insult": ["S", "M", "D", "G"], + "Pantagruel's": [], + "Ike": ["M"], + "lusciously": [], + "braziers's": [], + "Togo's": [], + "obtrusive": ["U", "P", "Y"], + "flatfish'ses": [], + "cementerers": [], + "maybe's": [], + "vixens's": [], + "cramp's": [], + "animadverts": [], + "reconsign": [], + "Susanna": ["M"], + "fiftieths": [], + "unshod": [], + "tents's": [], + "Iqbal": ["M"], + "snacks's": [], + "embolization": [], + "sacrosanct": ["P"], + "vilest": [], + "clavichord": ["S", "M"], + "outwards": [], + "suffocate": ["G", "N", "D", "S"], + "episodically": [], + "Novocain'ses": [], + "nonsegregated": [], + "debug": [], + "knowingly": [], + "propagators": [], + "phase's": [], + "crosswalk": ["M", "S"], + "tho": [], + "showman's": [], + "feedersing": [], + "success'ses": [], + "babyhood": ["M"], + "syrups's": [], + "intoxication": ["M"], + "Jesuit'ses": [], + "galvanized": [], + "screeneding": [], + "symposium'ses": [], + "eland": ["S", "M"], + "epilogue'ses": [], + "habituate": ["G", "N", "D", "S"], + "sari's": [], + "Suleiman's": [], + "vibraphones": [], + "spiciest": [], + "laetrile": ["M"], + "brewers": [], + "headdress's": [], + "Delores": ["M"], + "straws's": [], + "Hicks": ["M"], + "dragged": [], + "coaxers": [], + "payee's": [], + "snuggle'sing": [], + "mauve": ["M"], + "costar's": [], + "scrapper": ["M", "S"], + "Demerol's": [], + "unimpeachable": [], + "stereo's": [], + "recognizably": [], + "columnist": ["S", "M"], + "dobbed": [], + "impending": [], + "Gibraltars": [], + "particulates's": [], + "inertness's": [], + "Toscanini's": [], + "leafy": ["R", "T"], + "adumbrate": ["G", "N", "D", "S"], + "herdsman": ["M"], + "loot's": [], + "incident's": [], + "Utahan'ses": [], + "Toledos": [], + "ninja's": [], + "keenlies": [], + "springierness": [], + "overexcitesing": [], + "sprout": ["G", "S", "M", "D"], + "Iguassu's": [], + "crunchiness": ["M"], + "vacuum's": [], + "tersest": [], + "keywords": [], + "decoupage'sing": [], + "gherkin's": [], + "Carney": ["M"], + "overhear": ["S", "G"], + "frills's": [], + "fightersing": [], + "fantasize": ["G", "D", "S"], + "Gestapos's": [], + "legatee's": [], + "masking": [], + "dental": ["Y"], + "breadboxes": [], + "pies's": [], + "giver's": [], + "suctions": [], + "believer's": [], + "doorbell's": [], + "faultiness": ["M"], + "cottontails": [], + "ravagers": [], + "blackouts's": [], + "stationer": ["M"], + "Fleming's": [], + "complicity": ["M"], + "bullheads": [], + "myriads": [], + "interject": ["G", "D", "S"], + "gunnels": [], + "unquenchable": [], + "midnight's": [], + "washed": ["U"], + "criminal's": [], + "drawn": ["A"], + "gown's": [], + "boluses": [], + "uninterested": [], + "hemorrhagic": [], + "fingersings": [], + "miscastsing": [], + "raffleds": [], + "effused": [], + "conformersable": [], + "inditing": [], + "obliging": ["Y"], + "committees's": [], + "coca": ["M"], + "Metamucil": ["M"], + "habitually": [], + "pork's": [], + "bulldozeder": [], + "Tabriz": ["M", "S"], + "grandpa": ["M", "S"], + "bumblebees": [], + "Ware's": [], + "apostatizeds": [], + "plebiscite's": [], + "nonalcoholic": [], + "semiconducting": [], + "exoplanet": ["M", "S"], + "aunties": [], + "floridness": ["M"], + "unctions": [], + "garble": ["D", "S", "G"], + "depriveds": [], + "sharper": ["M"], + "ligated": [], + "amounts": [], + "Nd's": [], + "enthusiastically": [], + "prowess's": [], + "Goodwin's": [], + "videoconferencing": [], + "brawleder": [], + "inexpressive": [], + "tender'sed": [], + "militants": [], + "evolveds": [], + "Batman's": [], + "unwelcome": ["G"], + "friendedly": [], + "termlying": [], + "wadsers": [], + "eruption'ses": [], + "remittances's": [], + "trombonist": ["M", "S"], + "Opal": ["M"], + "bluish": [], + "Mancini": ["M"], + "diploma's": [], + "cleanings": [], + "sniped": [], + "recuperates": [], + "rubbed": [], + "boudoirs": [], + "denatureding": [], + "vivarium": ["S", "M"], + "Borobudur": ["M"], + "broadens": [], + "February": ["S", "M"], + "droughts": [], + "sanitariums's": [], + "developsing": [], + "cockscombs's": [], + "Kurt": ["M"], + "coincide": ["D", "S", "G"], + "fibrillated": [], + "scrimmaged": [], + "schizophrenics": [], + "weighs": ["A"], + "grenadier's": [], + "concretionens": [], + "planned": ["U"], + "ushering": [], + "Jobs's": [], + "Vang": ["M"], + "perturbs": [], + "sunbeams": [], + "Aldan's": [], + "digitization": [], + "marabou'ses": [], + "apogees": [], + "remits": [], + "Staubach": ["M"], + "Harrison's": [], + "swains's": [], + "mama's": [], + "moderate": ["M", "Y", "G", "N", "P", "D", "S"], + "sensationalized": [], + "beclouding": [], + "behooves": [], + "ayes's": [], + "enlargersing": [], + "interpenetratingen": [], + "impressively": [], + "smooching": [], + "eyelashes": [], + "fraternity": ["F", "S", "M"], + "advocate'sing": [], + "Cuban": ["S", "M"], + "sterling's": [], + "ironwood'ses": [], + "Stolypin's": [], + "inchworms's": [], + "condensates": [], + "sacs's": [], + "declinersing": [], + "larcenist": ["S", "M"], + "dude's": [], + "grapples": [], + "chordates": [], + "hawkerers": [], + "blindfold'sed": [], + "clunked": [], + "hanging": ["M"], + "croon'sed": [], + "reduceder": [], + "treasure's": [], + "challenger's": [], + "ghost's": [], + "humanism": ["M"], + "bookplates": [], + "prize'sing": [], + "anthropology's": [], + "concubinage's": [], + "hairdo'ses": [], + "blazinged": [], + "frightensing": [], + "drawing's": [], + "destructively": [], + "Forester's": [], + "blackball": ["S", "G", "M", "D"], + "premed's": [], + "carotene's": [], + "governess": ["M", "S"], + "filers": [], + "lithographer's": [], + "rosewood'ses": [], + "cosmogonists": [], + "subverteding": [], + "expanse's": [], + "reigns": [], + "lanyards": [], + "Juneau": ["M"], + "armadillo's": [], + "trestle'ses": [], + "Caliban's": [], + "McClellan's": [], + "sometime": ["S"], + "Oxford's": [], + "doctrine": ["M", "S"], + "humiliation": ["M"], + "belie": ["D", "S"], + "methane's": [], + "dreadfulness's": [], + "anonymously": [], + "Robyn's": [], + "battleground": ["M", "S"], + "plainsman's": [], + "rollback's": [], + "polliwogs": [], + "tinted": [], + "wormwood": ["M"], + "forwardings": [], + "minxes": [], + "misleadings": [], + "larger": [], + "flash's": [], + "circumvent": ["D", "S", "G"], + "transitivity's": [], + "congers's": [], + "silly's": [], + "Galois's": [], + "restaurants's": [], + "Inglewood": [], + "panderings": [], + "foolhardiness": ["M"], + "bedding's": [], + "ragged": ["R", "Y", "T", "P"], + "Basque'ses": [], + "dive's": [], + "holographs": [], + "likableness": ["M"], + "centaur": ["S", "M"], + "provost": ["S", "M"], + "hypocrisy's": [], + "placings": [], + "disparagement": ["M"], + "consumer's": [], + "slims": [], + "goggles's": [], + "mnemonic": ["M", "S"], + "simulacrum": ["S"], + "Panza's": [], + "butlers": [], + "mismanage": ["L", "G", "D", "S"], + "pederast's": [], + "Aquafresh's": [], + "colonel's": [], + "trident's": [], + "tattletale's": [], + "tuftsers": [], + "aitch": ["M", "S"], + "Elsa's": [], + "hankering's": [], + "stance": ["I", "S", "M"], + "scoringed": [], + "Orval's": [], + "officiator": ["M", "S"], + "backfiringed": [], + "cornfield": ["S"], + "jimsonweed's": [], + "June's": [], + "Bunyan": ["M"], + "rectos": [], + "moose": ["M"], + "perkiness": ["M"], + "filterable": [], + "mourner's": [], + "Hershey's": [], + "Caiaphas": ["M"], + "unfaithfulness": [], + "superscribe": ["G", "D", "S"], + "impeachment's": [], + "senora": ["S", "M"], + "bulimia": ["M"], + "dowdily": [], + "escorted": [], + "Majorca": ["M"], + "especially": [], + "soaps": [], + "matched": ["U"], + "somersaultings": [], + "eclair": ["S", "M"], + "shareholder's": [], + "decrees": [], + "miscount's": [], + "coequal'sly": [], + "delftware's": [], + "Becquerel's": [], + "hymning": [], + "approved": ["U"], + "Kochab's": [], + "desertions": [], + "unguents's": [], + "unmerited": [], + "Preakness": ["M"], + "begonias": [], + "runabout's": [], + "schoolmasters": [], + "viewer": ["A", "M"], + "festivals": [], + "oviduct": ["S", "M"], + "Mattie's": [], + "booming's": [], + "Onega": ["M"], + "chainsaw's": [], + "contraveneds": [], + "freaks's": [], + "Mass'ses": [], + "Socratic's": [], + "aah": [], + "luckily": ["U"], + "loon": ["M", "S"], + "Newtonian's": [], + "connives": [], + "scissored": [], + "spirochete's": [], + "oubliette": ["M", "S"], + "Kalb": ["M"], + "quaky": [], + "expediter's": [], + "curdles": [], + "suspendsed": [], + "Diocletian's": [], + "breath": ["M", "D", "R", "S", "Z", "G", "B"], + "fates": [], + "spoof": ["S", "M", "D", "G"], + "Englishwoman": ["M"], + "turnarounds's": [], + "Carr's": [], + "panatella": ["S"], + "hungriness": ["M"], + "superabundances": [], + "substituteds": [], + "hamming": [], + "sesquicentennials": [], + "Communist's": [], + "anachronism's": [], + "cryogenics's": [], + "dyeder": [], + "biological": ["Y"], + "explicate": ["X", "G", "N", "D", "S"], + "effacesment": [], + "deathwatch'ses": [], + "misery": ["S", "M"], + "chippers": [], + "voicelessly": [], + "Elaine's": [], + "motivations's": [], + "outriggers's": [], + "UFOs": [], + "encampment": ["M", "S"], + "gook": ["M", "S"], + "though": [], + "tenders's": [], + "screamingly": [], + "spilled": [], + "mastectomy's": [], + "lessened": [], + "prose's": [], + "Hallmark": ["M"], + "contrarily": [], + "manager": ["M"], + "impalingment": [], + "avocations": [], + "excremental": [], + "scepter's": [], + "scrim": ["M", "S"], + "silky": ["T", "R", "P"], + "ratchet's": [], + "stenographers's": [], + "folders's": [], + "pikersing": [], + "dower's": [], + "poisonous": ["Y"], + "hammerhead": ["S", "M"], + "beguilement's": [], + "Goddard's": [], + "flabbergasts": [], + "looserens": [], + "polynomial'ses": [], + "evangelicals's": [], + "mewl": ["D", "S", "G"], + "subpoenaed": [], + "crimped": [], + "buffoon": ["S", "M"], + "registrant's": [], + "opus'ses": [], + "hairline's": [], + "instantaneous": ["Y"], + "canto": ["M", "S"], + "fasteder": [], + "protozoan": ["M", "S"], + "predates": [], + "Kane's": [], + "paveds": [], + "chunkiness": ["M"], + "credible": ["I"], + "painfullest": [], + "atrociously": [], + "durance's": [], + "Ruben": ["S", "M"], + "level'sed": [], + "McIntosh": ["M"], + "solemnities": [], + "fleetingly": ["M"], + "conses": [], + "tragedienne'ses": [], + "hasting": [], + "sofa's": [], + "Paganini": ["M"], + "semiautomatic": ["M", "S"], + "numeration": ["M"], + "whinged": [], + "acanthuses": [], + "cleavages": [], + "queer's": [], + "wrongdoings's": [], + "lettuce'ses": [], + "standard": ["M", "S"], + "unchastest": [], + "kinematics": ["M"], + "pituitary's": [], + "Sisyphus": ["M"], + "Passover's": [], + "nickel'ses": [], + "interrogatively": [], + "cloning": [], + "analysand's": [], + "floodwater's": [], + "tocsins's": [], + "quietest": [], + "dominion": ["S", "M"], + "Nietzsche": ["M"], + "uncoil": [], + "Biro's": [], + "context": [], + "maximums": [], + "snare's": [], + "universality's": [], + "nibble": ["M", "Z", "G", "D", "R", "S"], + "whistlersing": [], + "zones": [], + "overheatsing": [], + "encystsing": [], + "Sung's": [], + "quellinged": [], + "factotums": [], + "Jerseys": [], + "litigator's": [], + "interdependently": [], + "bulges's": [], + "amelioration's": [], + "moribund": [], + "arthritis's": [], + "Corina's": [], + "Pokemon's": [], + "hedonists": [], + "nuked": [], + "tend": ["I", "E", "F", "D", "G", "S"], + "hasted": [], + "verso": ["S", "M"], + "theses": [], + "album's": [], + "duplicateds": [], + "farted": [], + "successors's": [], + "tortures's": [], + "smith's": [], + "federatingen": [], + "maharajah": ["M"], + "enfeeblesment": [], + "rectifies": [], + "arrangers's": [], + "ma's": [], + "Chiba's": [], + "derogatingen": [], + "temporizinged": [], + "Pulaski's": [], + "sousaphone": ["M", "S"], + "alcove'ses": [], + "experiment'sed": [], + "bitmaps": [], + "cement's": [], + "dervish'ses": [], + "diorama": ["S", "M"], + "Douro": ["M"], + "dizziness's": [], + "encounter's": [], + "khans": [], + "tinsel's": [], + "pimento": ["M", "S"], + "listless": ["Y", "P"], + "district's": [], + "examined": [], + "strips": [], + "fugitive'ses": [], + "demurrals": [], + "reductionist": [], + "hibernator": ["M", "S"], + "PDT": [], + "espalier's": [], + "reputability": ["M"], + "Sofia's": [], + "abrogator": ["M", "S"], + "negative": ["M", "Y", "G", "P", "D", "S"], + "Jetway's": [], + "technologically": [], + "consolation": ["M", "S"], + "assailingable": [], + "agglutinating": [], + "natal": [], + "louvereds": [], + "barbarity's": [], + "videophones": [], + "adviser's": [], + "oms's": [], + "preventedable": [], + "Presley's": [], + "groomsers": [], + "toddler": ["M"], + "Jacobson's": [], + "Master": ["S"], + "Titicaca's": [], + "deckhands's": [], + "mouthpieces": [], + "tough's": [], + "ll": [], + "scorner's": [], + "moorhens": [], + "metabolisms's": [], + "peritoneum": ["M", "S"], + "rendezvousing": [], + "manic": ["S", "M"], + "tremolo": ["S", "M"], + "locoweed's": [], + "sauna'sed": [], + "motlier": [], + "proofreader": ["M"], + "pachyderm'ses": [], + "gratitude": ["I", "M"], + "fixated": [], + "resignedly": [], + "Powers": ["M"], + "raindrops": [], + "husbanding": [], + "picker's": [], + "Ayrshire": ["M"], + "village'sers": [], + "perjury": ["S", "M"], + "weariness": ["M"], + "accountancy's": [], + "shrug's": [], + "guilds": [], + "transducer": ["M", "S"], + "Meuse's": [], + "fosters": [], + "annulling": [], + "ingenuousness's": [], + "Frazier": ["M"], + "longitude's": [], + "skullcaps": [], + "Frankenstein": ["M"], + "sardonic": [], + "choroid": ["M", "S"], + "parrieds": [], + "irresponsibility": ["M"], + "revealed": ["U"], + "cauterize": ["G", "D", "S"], + "shoddily": [], + "Audra's": [], + "slut'ses": [], + "synthesis": ["M"], + "ergosterol": ["M"], + "breaking": [], + "gulped": [], + "lows": [], + "tizz": [], + "golfers": [], + "Aron": ["M"], + "Ordovician's": [], + "superposing": [], + "mitts": [], + "johnnycake's": [], + "purity": ["M"], + "barques": [], + "bemoaned": [], + "granularity": ["M"], + "saltines": [], + "heyday": ["S", "M"], + "lath's": [], + "aesthete'ses": [], + "analog's": [], + "sublimate": ["G", "N", "D", "S"], + "relentlessnessly": [], + "fecal": [], + "immolates": [], + "minuteman's": [], + "shinbones": [], + "jeer": ["M", "D", "S", "G"], + "peewee'ses": [], + "cutoff's": [], + "reexportsed": [], + "stamper": ["M"], + "forefinger": ["S", "M"], + "preservationists's": [], + "palettes's": [], + "executing": [], + "florets's": [], + "rocker's": [], + "forgoes": [], + "ravening": [], + "sharksing": [], + "Ortiz": ["M"], + "tinderbox's": [], + "prism's": [], + "oldness": ["M"], + "reverberateds": [], + "nihilism's": [], + "hyperthyroid": ["M"], + "Frye's": [], + "auguring's": [], + "Bakersfield": ["M"], + "firestorm'ses": [], + "headwords": [], + "replicators": [], + "dreameder": [], + "paternalistic": [], + "prefixeds": [], + "stallholder": ["S"], + "mimeographed": [], + "money'sed": [], + "windscreens's": [], + "paralyzeds": [], + "ghostly": ["R", "T", "P"], + "whaled": [], + "occupations": [], + "endocrine": ["M", "S"], + "chosen": [], + "hostilelies": [], + "Gospel": ["M", "S"], + "ornamenting's": [], + "feels": [], + "edgingsed": [], + "census's": [], + "albinism": ["M"], + "sealants": [], + "muskier": [], + "coll": [], + "disciplinarians's": [], + "intercommunicates": [], + "arthritis": ["M"], + "beltway": ["S", "M"], + "twaddlersing": [], + "kaddishes": [], + "itineraries's": [], + "recompenses": [], + "footer": [], + "disposal": ["S", "M"], + "blamelessly": [], + "granter": ["M"], + "centerpieces": [], + "continuinged": [], + "abominations": [], + "pillbox's": [], + "dogmatists's": [], + "Harte": ["M"], + "classified": ["U"], + "implosive": [], + "fiddlersing": [], + "esteem": ["E", "S", "M", "D", "G"], + "Ptolemy's": [], + "masturbation": ["M"], + "pip's": [], + "veneer": ["M", "D", "G", "S"], + "milted": [], + "heels": [], + "Crete": ["M"], + "closeting": [], + "aigrettes": [], + "saves": [], + "superhuman": [], + "eloquently": [], + "Livonia": ["M"], + "fends": [], + "regrade": [], + "limpest": [], + "ruckus's": [], + "Steinmetz": ["M"], + "drowningsed": [], + "carsickness": ["M"], + "spelleder": [], + "twin'sed": [], + "deleterious": [], + "exhaust": ["G", "V", "M", "D", "S"], + "acquiesce": ["D", "S", "G"], + "steppe": ["D", "R", "S", "M", "Z", "G"], + "approval's": [], + "fessings": [], + "jazzy": ["T", "R"], + "graybeards": [], + "botany": ["M"], + "oversea": ["S"], + "terminallies": [], + "neuter's": [], + "interludes": [], + "Bruckner": ["M"], + "five'sers": [], + "Sheridan's": [], + "wisp's": [], + "choreographeder": [], + "caricaturist's": [], + "upstarting": [], + "mopey": [], + "sketchiness": ["M"], + "slimming": ["M"], + "Merovingian's": [], + "Igor's": [], + "Asians": [], + "chronometers": [], + "parabola": ["S", "M"], + "bondholder'ses": [], + "puking": [], + "spoofs's": [], + "astrologist'ses": [], + "SF": [], + "evaluating": [], + "Garbo's": [], + "thermodynamics's": [], + "charming's": [], + "subcutaneously": [], + "savviers": [], + "mulligans": [], + "regionalism": ["M", "S"], + "Taylor": ["M"], + "dandruff": ["M"], + "Bostonian's": [], + "massaging": [], + "gripersing": [], + "enshrine": ["G", "L", "D", "S"], + "bitching's": [], + "graduations": [], + "ridiculing": [], + "Jake's": [], + "Brattain": ["M"], + "reciprocals": [], + "ravenous": ["Y"], + "gadder": ["S", "M"], + "Cayman": ["M"], + "postpones": [], + "pyrimidines": [], + "demiseds": [], + "subversiveness's": [], + "Reeves": ["M"], + "fondness": ["M"], + "snouts": [], + "midway": ["M", "S"], + "there": ["M"], + "Thebes": ["M"], + "courser's": [], + "peninsula": ["S", "M"], + "modulation": ["C", "M"], + "flunks": [], + "trotters": [], + "canalizing": [], + "draft": ["A", "S", "D", "G"], + "farsighted": ["P"], + "ramjets": [], + "shrine's": [], + "Delmonico": ["M"], + "deflect": ["D", "G", "V", "S"], + "bearishly": [], + "maiden": ["M", "Y"], + "thereupon": [], + "stalling": [], + "garland": ["M", "D", "G", "S"], + "touchstone": ["M", "S"], + "Adolfo's": [], + "ancientest": [], + "specifieder": [], + "underactsed": [], + "fraction": ["I", "S", "M"], + "immortal": ["M", "Y", "S"], + "septet's": [], + "liturgy's": [], + "rear's": [], + "puncture'sing": [], + "screenshot": ["S"], + "erotics": [], + "fasteners's": [], + "sellout": ["M", "S"], + "answerable": ["U"], + "curvaceousness": ["M"], + "crescent'ses": [], + "screwworm's": [], + "Somalis's": [], + "Mbini": ["M"], + "ingeniousness's": [], + "taxiing": [], + "elopements": [], + "abeyance's": [], + "goings": [], + "musclinged": [], + "wholesalinged": [], + "obscenities's": [], + "furrows": [], + "oppressiveliness": [], + "Anglicism's": [], + "relevancy": ["M"], + "fizz's": [], + "misfits": [], + "grizzliers": [], + "falsifiersing": [], + "ELF": ["M"], + "flints's": [], + "tulip": ["S", "M"], + "partnersing": [], + "includes": [], + "down": ["M", "D", "R", "Z", "G", "S"], + "pillowing's": [], + "panatellas": [], + "ministering": [], + "mistsers": [], + "calcite's": [], + "charlies": [], + "doggoners": [], + "bollix's": [], + "seamed": [], + "excisions": [], + "pagodas": [], + "Waco's": [], + "cote'ses": [], + "suffragist'ses": [], + "pedigree": ["M", "D", "S"], + "Laura": ["M"], + "wapiti's": [], + "freestyle": ["S", "M"], + "invitationals's": [], + "medicine'ses": [], + "squeaker": ["M"], + "harmfulliness": [], + "notifier": ["M"], + "Greeley": ["M"], + "shiftiness": ["M"], + "anesthesiologist's": [], + "barebacked": [], + "yawl's": [], + "Wald": ["M", "N"], + "courtyards": [], + "grommet": ["S", "M"], + "acuter": [], + "tomahawks": [], + "kc": [], + "tautener": [], + "buffetingings": [], + "corneas": [], + "Napier": ["M"], + "sprint's": [], + "hosteling's": [], + "amblersing": [], + "wobbleds": [], + "certificationens": [], + "chomping": [], + "architrave's": [], + "bowel's": [], + "trainman": ["M"], + "doteder": [], + "aftereffect": ["M", "S"], + "sawhorses": [], + "Darnell": ["M"], + "willfulnessly": [], + "arbitrating": [], + "octagonal": [], + "disembodiment": [], + "ties": [], + "tangentially": [], + "hockshop": ["M", "S"], + "evergreens's": [], + "Mandalay's": [], + "dumpsters's": [], + "fluster": ["M", "D", "S", "G"], + "this": [], + "mediator's": [], + "irrupting": [], + "peke's": [], + "website's": [], + "fiance": ["C", "M"], + "actress'ses": [], + "Camus": ["M"], + "clavier'ses": [], + "forswore": [], + "overbought": [], + "wist": [], + "circumlocution'ses": [], + "outfield": ["S", "M", "R", "Z"], + "wizard": ["S", "M", "Y"], + "finial": ["M", "S"], + "ribaldry": ["M"], + "subtraction's": [], + "Tuesday'ses": [], + "overmaster": ["S", "D", "G"], + "Beau": ["M"], + "evidence": ["M", "G", "D", "S"], + "Ferdinand's": [], + "sweltered": [], + "falteringly": [], + "exactitude's": [], + "cyclist": ["M", "S"], + "Estonia's": [], + "overexercisinged": [], + "nondetachable": [], + "moguls": [], + "decapitators": [], + "asserteds": [], + "insecticides": [], + "evolutionary": [], + "wagons's": [], + "investors's": [], + "auto": ["M", "S"], + "snowbanks": [], + "byway's": [], + "procrastinator's": [], + "marl": ["M"], + "Magyars's": [], + "unavailing": ["Y"], + "Ebert's": [], + "thyroids": [], + "penguins": [], + "lip": ["S", "M"], + "corresponded": [], + "inebriation": ["M"], + "glaciationsing": [], + "repetitious": ["Y", "P"], + "revenue": [], + "Burberry's": [], + "verandas": [], + "slump's": [], + "paraplegia's": [], + "western's": [], + "Cressida's": [], + "backwoods's": [], + "granule'ses": [], + "outpost's": [], + "embroiders": [], + "environment": ["M", "S"], + "running's": [], + "gnat": ["M", "S"], + "compulsive": ["Y", "P"], + "revetments": [], + "supportersing": [], + "negligible": [], + "required": [], + "authorization": ["M", "S"], + "manuscript's": [], + "amanuensis's": [], + "obliterating": [], + "Atkins's": [], + "anodizeds": [], + "Le's": [], + "mathematician": ["S", "M"], + "druid": ["S", "M"], + "Tuesdays": [], + "physiognomy's": [], + "drugged": [], + "puddings": [], + "punctilio": ["M"], + "ringlet'ses": [], + "defendant's": [], + "attachmenting": [], + "tankards": [], + "sequel": ["S", "M"], + "Parthenon": ["M"], + "outrankeds": [], + "don": ["S", "M"], + "gregariously": [], + "frippery's": [], + "naiverly": [], + "Stuart'ses": [], + "threateneding": [], + "waggle'sing": [], + "flyingable": [], + "pouf": ["S"], + "deponent's": [], + "Riefenstahl": ["M"], + "accomplishments": [], + "legends's": [], + "hundredth's": [], + "warmish": [], + "Koran'ses": [], + "wrongheaded": ["Y", "P"], + "Cannon's": [], + "yups": [], + "blossomed": [], + "signet's": [], + "roughingness": [], + "politburos": [], + "Laud": ["M", "R"], + "acupuncturists": [], + "idylls": [], + "Dictaphone": ["S", "M"], + "fitfulness": ["M"], + "sharpie'ses": [], + "scintillatesing": [], + "southwesterly": [], + "comfort": ["E", "S", "M", "D", "G"], + "Lucian's": [], + "sadomasochistic": [], + "preciseness's": [], + "TELNETTing": [], + "neutrally": [], + "Poole's": [], + "semesters's": [], + "poked": [], + "admiration's": [], + "considerateness": ["I", "M"], + "connotative": [], + "Phoenicians": [], + "blocked": [], + "hanging's": [], + "jeep": ["M", "S"], + "downsides": [], + "erudition": ["M"], + "cockade": ["S", "M"], + "obnoxiousliness": [], + "immortality": ["M"], + "Anshan's": [], + "shoelace'ses": [], + "chordates's": [], + "doomed": [], + "imperfectly": [], + "Ilyushin": ["M"], + "cirques": [], + "militarily": [], + "metals": [], + "students's": [], + "Orlon": ["M", "S"], + "commonness": ["U", "M"], + "armadas": [], + "telepathic": [], + "polity's": [], + "wadding's": [], + "grindersing": [], + "turnpikes": [], + "Sudan": ["M"], + "ingress's": [], + "effected": [], + "jumpsuit'ses": [], + "materialized": [], + "transportation": ["M"], + "harvesting": [], + "futurism's": [], + "telling": ["Y"], + "bankrupt's": [], + "petitioner": ["M"], + "meldsing": [], + "proboscis": ["M", "S"], + "turd's": [], + "element's": [], + "pitching": [], + "mountaineers": [], + "metricated": [], + "launch's": [], + "Cabernet's": [], + "amnesiac": ["M", "S"], + "beheld": [], + "flashbulbs's": [], + "Gacrux's": [], + "Oakland": ["M"], + "swoosh'sed": [], + "corroborated": ["U"], + "surfboarded": [], + "yellowed": [], + "footrest'ses": [], + "roaming's": [], + "pharmaceutic'ses": [], + "transformation's": [], + "chastiseder": [], + "annunciations's": [], + "cooper": ["M", "D", "G"], + "flamethrower's": [], + "canteen'ses": [], + "tempering": [], + "Sardinia": ["M"], + "collectibles": [], + "decorator's": [], + "MacBride's": [], + "workmanship's": [], + "glitzier": [], + "fleapits": [], + "Pekingeses": [], + "coach'sed": [], + "Italian": ["S", "M"], + "bandmasters's": [], + "log": ["S", "M"], + "disputed": ["U"], + "favorites": [], + "intuitiveness": ["M"], + "op": ["S", "M", "D", "G"], + "boccie": ["M"], + "picnic's": [], + "speeds's": [], + "spiritual'sly": [], + "heed's": [], + "heave": ["D", "R", "S", "M", "Z", "G"], + "propellant": ["M", "S"], + "indeterminately": [], + "unfathomable": [], + "raise's": [], + "Ava's": [], + "gliding's": [], + "savoriness's": [], + "Phelps": ["M"], + "trainspotter": ["S"], + "untangle": [], + "pamphleteer'ses": [], + "splayfooted": [], + "Ingrid": ["M"], + "justifyinged": [], + "conferring": [], + "reformatted": [], + "docking": [], + "rightist's": [], + "flushed": [], + "subcontract": ["M", "D", "S", "G"], + "polio": ["M", "S"], + "lengthwise": [], + "disgustedly": [], + "libertarian": ["S", "M"], + "decouple": [], + "colloids's": [], + "jibs": [], + "d'Arezzo": ["M"], + "Patel's": [], + "maximum's": [], + "necessitates": [], + "spacewalk'sed": [], + "tracts": [], + "superstition": ["M", "S"], + "Ida": ["M"], + "Napster": ["M"], + "OfficeMax's": [], + "blunderersing": [], + "introspection": ["M"], + "overratinged": [], + "shim": ["M", "S"], + "Canberra's": [], + "giants": [], + "vaquero's": [], + "shrinking": [], + "snaps": [], + "derisivenessly": [], + "warden'ses": [], + "trident": ["M", "S"], + "files": [], + "cropped": [], + "understaffed": [], + "Amerind's": [], + "valiance's": [], + "indifferent": [], + "biddable": [], + "openest": [], + "asymptotic": [], + "tendentiousness": ["M"], + "steamships": [], + "incunabula": [], + "Vientiane's": [], + "flopped": [], + "memento's": [], + "furthering": [], + "caller": ["M", "S"], + "stenosis": [], + "aquarium'ses": [], + "Jewess'ses": [], + "Behring's": [], + "migraine'ses": [], + "pollinationed": [], + "mahout'ses": [], + "SDI": [], + "inefficient": [], + "Grinch": ["M"], + "marksmen": [], + "throwback": ["S", "M"], + "satisfiesing": [], + "weirder": [], + "constraint": ["S", "M"], + "seeder": ["S", "M"], + "copyrights's": [], + "querulously": [], + "twiddlinged": [], + "monolithic": [], + "bootblack's": [], + "isomers": [], + "undersigned's": [], + "lurking": [], + "Rabin's": [], + "bear's": [], + "affectations": [], + "landline'ses": [], + "titivated": [], + "Marcia's": [], + "passiveness's": [], + "shack's": [], + "spotlessnessly": [], + "probabilities": [], + "biding": [], + "journey'sed": [], + "gloat's": [], + "Herbert": ["M"], + "acclimation's": [], + "probeds": [], + "confabulate": ["X", "D", "S", "G", "N"], + "Indochinese's": [], + "perplexed": ["Y"], + "lingoes": [], + "crieder": [], + "pannier": ["S", "M"], + "firescreens": [], + "correctableness": [], + "posits": [], + "mustachio'sed": [], + "diffidence": ["M"], + "holier": [], + "Jeff": ["M"], + "improperly": [], + "chats": [], + "permission'ses": [], + "bedroll's": [], + "professorships's": [], + "diffing": [], + "Malians": [], + "progressive'sly": [], + "rule'sers": [], + "overspending": [], + "Cochise's": [], + "medical": ["S", "M", "Y"], + "playhouse'ses": [], + "effective": ["I", "P", "Y"], + "dork": ["M", "S"], + "drought's": [], + "lesson": ["M", "S"], + "colonels": [], + "primogeniture's": [], + "angstrom'ses": [], + "clingy": ["R", "T"], + "scratchiness's": [], + "canalization's": [], + "entomb": ["D", "S", "G", "L"], + "debilities": [], + "emotionalizing": [], + "swordfish": ["M", "S"], + "fakirs": [], + "bucolics": [], + "promptness": ["M"], + "adjuration'ses": [], + "have": ["M", "G", "S"], + "mireds": [], + "locavore's": [], + "slurry's": [], + "Klan": ["M"], + "twineder": [], + "flattering": ["Y"], + "photographerers": [], + "sizzling": [], + "English'ser": [], + "wiliness": ["M"], + "pricier": [], + "Tanzania": ["M"], + "obtruded": [], + "hoodoo'sed": [], + "Philippine": ["S", "M"], + "loans": [], + "sideshow": ["M", "S"], + "contraries's": [], + "assures": [], + "leasehold": ["M", "R", "S", "Z"], + "infringements": [], + "sonars's": [], + "sidlinged": [], + "dollings": [], + "dummy": ["S", "M"], + "recompiling": [], + "digresses": [], + "deconstructionist": [], + "Ibsen": ["M"], + "metabolic": [], + "endocrinologist'ses": [], + "Andropov's": [], + "Proudhon": ["M"], + "genitally": [], + "wolf'sed": [], + "retrogradeds": [], + "dishcloth's": [], + "nippiness": ["M"], + "foaming": [], + "bombshells's": [], + "sectional": ["M", "S"], + "fillet's": [], + "apprisinged": [], + "Campos": ["M"], + "defiler": [], + "Glenna": ["M"], + "numbingness": [], + "hyphenate'sing": [], + "repudiateds": [], + "blessedness's": [], + "Cathay's": [], + "stoles's": [], + "mooringses": [], + "gremlins's": [], + "bear": ["S", "Z", "G", "B", "J", "M", "R"], + "evicteding": [], + "Mohave": ["S", "M"], + "semblances's": [], + "boast'sed": [], + "pharmacology's": [], + "preeminence's": [], + "schizoid": ["M", "S"], + "shutdown's": [], + "Kathie": ["M"], + "Reuters's": [], + "Samsonite": ["M"], + "backing's": [], + "seamanship's": [], + "compulsion'ses": [], + "bonobo's": [], + "manacle's": [], + "latchkeys's": [], + "bog's": [], + "limpness's": [], + "alimenting": [], + "logistics's": [], + "loud": ["R", "Y", "T", "P"], + "tanglesing": [], + "obeying": [], + "barnstormed": [], + "Hubble's": [], + "eons's": [], + "timepieces": [], + "Douglass's": [], + "hoyden'ses": [], + "yttrium": ["M"], + "Acadia's": [], + "mackerels's": [], + "competitors's": [], + "glacial": ["Y"], + "baritone's": [], + "castigating": [], + "stockroom": ["M", "S"], + "Cherokee": ["M", "S"], + "gravitationed": [], + "intranets": [], + "sniffs": [], + "mislay": ["G", "S"], + "shavesings": [], + "notorious": ["Y"], + "deciliter": ["M", "S"], + "tuttis": [], + "unimpressed": [], + "koala's": [], + "velveteen's": [], + "tasks": [], + "redial": [], + "sparred": [], + "vim": ["M"], + "coleslaw": ["M"], + "Rosanne's": [], + "inseams's": [], + "crocheted": [], + "impractically": [], + "unlikeness": [], + "indexations's": [], + "relaxants": [], + "jollinessed": [], + "Fijian's": [], + "capitalistic": [], + "Lenten's": [], + "gapes": [], + "glasnost's": [], + "meanders": [], + "landholding's": [], + "seahorse": ["M", "S"], + "publicity's": [], + "whither": [], + "referrers": [], + "snazziest": [], + "dadaist": ["M", "S"], + "crisp": ["S", "M", "D", "R", "Y", "T", "G", "P"], + "spares's": [], + "contortionist's": [], + "loin's": [], + "membership's": [], + "mariachi": ["M", "S"], + "tumescence's": [], + "dishevels": [], + "soluble'ses": [], + "interning": [], + "Mormons's": [], + "incrustations's": [], + "voidingable": [], + "cuneiform": ["M"], + "cobs's": [], + "liquors": [], + "frumps's": [], + "nickersing": [], + "furthers": [], + "china's": [], + "canonizeds": [], + "minaret'ses": [], + "likeness's": [], + "Syriac's": [], + "Frobisher": ["M"], + "Honduran": ["M", "S"], + "fresco": ["M"], + "biennial": ["M", "Y", "S"], + "weatherman": ["M"], + "gold'sen": [], + "evacuee's": [], + "berating": [], + "Comintern's": [], + "mailbombings": [], + "furlough": ["G", "M", "D"], + "holy": ["U", "R", "P", "T"], + "annulment's": [], + "ebonies's": [], + "killjoy": ["S", "M"], + "Bertelsmann's": [], + "product": [], + "anemic": [], + "ingeniousnessly": [], + "vitamins": [], + "zombies": [], + "humbugs": [], + "Thoreau": ["M"], + "trouncesers": [], + "spotlighted": [], + "frighteden": [], + "promptnesses": [], + "Tell": ["M", "R"], + "guestbooks": [], + "ambassadorship'ses": [], + "disreorganize": [], + "trickle": ["M", "G", "D", "S"], + "impotence's": [], + "charred": [], + "analysands": [], + "Tirol": ["M"], + "nasality's": [], + "tresses": [], + "Cambodian's": [], + "ilks": [], + "appliques": [], + "detox'sed": [], + "incidents": [], + "piped": [], + "Claudine": ["M"], + "underachievementers": [], + "legislator'ses": [], + "desalinizinged": [], + "nebulousness": ["M"], + "oviducts's": [], + "unexpected": ["Y", "P"], + "notices": [], + "Mormon": ["S", "M"], + "paineds": [], + "coaxer's": [], + "concern's": [], + "blatancy's": [], + "appraiseds": [], + "downshifting": [], + "Acton's": [], + "impressionism's": [], + "jottings": [], + "din'sed": [], + "Trollope's": [], + "strikesings": [], + "incapability": [], + "rapscallion's": [], + "cities": [], + "flatboats's": [], + "threats's": [], + "potability's": [], + "yer": [], + "sociable": ["S", "M"], + "homerooms": [], + "unclad": [], + "doses": [], + "unfurnished": [], + "waives": [], + "woos": [], + "notateds": [], + "precipitants": [], + "realizeds": [], + "supernaturally": [], + "clatter'sed": [], + "Laud'ser": [], + "chiggers": [], + "softener": ["M"], + "oncoming": [], + "mechanizing": [], + "nucleation": ["M"], + "housemates": [], + "confidently": [], + "Gustavo": ["M"], + "frustum's": [], + "majesties": [], + "turpentine's": [], + "cymbals": [], + "wrangler": ["M"], + "goshawk's": [], + "bird'sed": [], + "egregious": ["P", "Y"], + "Sylvester's": [], + "Beckett": ["M"], + "underdogs's": [], + "crosspieces": [], + "heeding": [], + "bummer's": [], + "Roqueforts's": [], + "pedometer's": [], + "breathlessness": ["M"], + "doltish": ["Y", "P"], + "Elysium's": [], + "gimme's": [], + "translator": ["S", "M"], + "Joyce": ["M"], + "Comanches": [], + "goody's": [], + "coffers": [], + "lactatingen": [], + "gits": [], + "workshop's": [], + "toughen": ["Z", "G", "D", "R"], + "bogey'sed": [], + "pisser": [], + "Anguilla's": [], + "bacteriologic": [], + "icier": [], + "humorlessness's": [], + "marmalade": ["M"], + "Charmin": ["M"], + "dynamited": [], + "paperhanger's": [], + "despicable": [], + "limo'ses": [], + "shout's": [], + "rapscallion": ["M", "S"], + "reformat": ["V"], + "offers": [], + "pterodactyl's": [], + "smokiness's": [], + "Rwandas": [], + "registrations's": [], + "correspondingly": [], + "groundsheet": ["S"], + "bobsledding": [], + "ballplayer'ses": [], + "envelopersing": [], + "Sikhism": [], + "counterpanes": [], + "monetarist": ["M", "S"], + "kibbleds": [], + "saxifrage": ["S", "M"], + "volley'sed": [], + "belfries's": [], + "Figueroa's": [], + "reagent": [], + "farces's": [], + "stomps": [], + "buff": ["A", "M", "D", "G", "S"], + "wound'sed": [], + "renovator's": [], + "evenhandedly": [], + "affirmation's": [], + "Laurasia": ["M"], + "perdition": ["M"], + "semiautomatic's": [], + "signalers": [], + "prepositionally": [], + "hankers": [], + "arbor": ["M", "S"], + "dickeys": [], + "reinfection": [], + "divine'sly": [], + "mewling": [], + "disrupted": [], + "kipperings": [], + "gawpeding": [], + "barbarities's": [], + "honestest": [], + "vodka": ["S", "M"], + "overreaching": [], + "girdings": [], + "coextensive": [], + "motocrosses": [], + "mannerism's": [], + "oval's": [], + "goldenest": [], + "piccolo's": [], + "backingsers": [], + "solder's": [], + "calcium": ["M"], + "cakes's": [], + "boastfulness": ["M"], + "biconcave": [], + "tundras": [], + "elocutionist's": [], + "cons": ["D", "S", "G"], + "preformed": [], + "Ramiro": ["M"], + "cropping": [], + "breaker's": [], + "deuterium's": [], + "lifer's": [], + "noncom'ses": [], + "associating": [], + "fitted": ["U", "A"], + "brawler's": [], + "mucilage's": [], + "Hatfield": ["M"], + "aisle's": [], + "eclat": ["M"], + "glummer": [], + "reopen": ["S", "D", "G"], + "ungainliest": [], + "ism's": [], + "skinheads": [], + "dreamboats": [], + "interregnum": ["S", "M"], + "fuddling": [], + "Beatty": ["M"], + "acknowledgments": [], + "Sindbad": ["M"], + "collards's": [], + "signeds": [], + "theologian": ["S", "M"], + "mystifying": [], + "craft": ["S", "M", "D", "G"], + "relieved": [], + "shutterbugs": [], + "oxyacetylene's": [], + "Melville's": [], + "tee's": [], + "gibe'sing": [], + "Bass's": [], + "cordial'sly": [], + "sweeping": ["M", "Y"], + "oilierness": [], + "Vulgates's": [], + "rapidity": ["M"], + "floggers's": [], + "probationer": ["M"], + "Bessel's": [], + "Sundays": [], + "provenance": ["S", "M"], + "dinosaur": ["S", "M"], + "benefaction": ["S", "M"], + "firmware": ["M"], + "unrealistically": [], + "McVeigh": ["M"], + "Amanda": ["M"], + "slackens": [], + "Cherry's": [], + "mending's": [], + "Juniors": [], + "toiled": [], + "nightingales's": [], + "MD": ["M"], + "shekel's": [], + "overflowed": [], + "habitations": [], + "asset's": [], + "predecessors": [], + "factoids's": [], + "Jamaican's": [], + "soothes": [], + "gaming": ["M"], + "peristalsis": ["M"], + "chef": ["S", "M"], + "otter": ["M", "S"], + "miasmas": [], + "blanket": ["G", "M", "D", "S"], + "puce": ["M"], + "tonging": [], + "nixeds": [], + "adversely": [], + "Guinean'ses": [], + "humoreding": [], + "complains": [], + "fistfight's": [], + "valedictorians": [], + "Tripitaka's": [], + "spinsterhood": ["M"], + "Joseph's": [], + "liberal": ["M", "Y", "P", "S"], + "copyrightings": [], + "pinfeathers": [], + "valuates": [], + "dabber'ses": [], + "Wolverhampton": [], + "fronts": [], + "gnat's": [], + "ping": ["G", "M", "D"], + "hallway": ["S", "M"], + "apologist'ses": [], + "Wed's": [], + "threesomes": [], + "timeserver's": [], + "adjoin": ["G", "D", "S"], + "stifferly": [], + "her": [], + "fauvist's": [], + "hoaxes": [], + "sharpshooting's": [], + "Simpsons": ["M"], + "wall's": [], + "apart": [], + "playbill": ["M", "S"], + "spiders": [], + "relative's": [], + "Popper": ["M"], + "fripperies": [], + "inciseds": [], + "complimentary": ["U"], + "worker": ["M", "S"], + "Landsteiner": ["M"], + "supererogatory": [], + "sandhogs's": [], + "transfigure": ["G", "D", "S"], + "altar'ses": [], + "evangelist'ses": [], + "honorableness": ["M"], + "militias's": [], + "peering": [], + "terrace": ["D", "S", "M", "G"], + "equipment's": [], + "Martin": ["M"], + "chortleder": [], + "avid": ["Y"], + "oxidization's": [], + "promontories": [], + "naughtily": [], + "ordered": [], + "jutting": [], + "pouter": ["M"], + "keypunch'sed": [], + "Elysium": ["S", "M"], + "wain's": [], + "auctioning": [], + "bondholders": [], + "Bakersfield's": [], + "Eiffel's": [], + "lateral's": [], + "sabotageds": [], + "helms": [], + "Olson's": [], + "mignonettes's": [], + "payload's": [], + "jinksing": [], + "showpieces": [], + "reciprocation": ["M"], + "monoplane's": [], + "Patterson": ["M"], + "muskiers": [], + "petaled": [], + "neutrals's": [], + "bellwether's": [], + "snoods": [], + "Nefertiti": ["M"], + "doggedness": ["M"], + "cascades": [], + "impecuniousnessly": [], + "Tanner": ["M"], + "Epicurus": ["M"], + "xciv": [], + "googles": [], + "gamins's": [], + "brownie'ses": [], + "palavering": [], + "libber": ["M", "S"], + "steeplejacks's": [], + "Galsworthy's": [], + "sows": [], + "Ann's": [], + "dueled": [], + "visitant'ses": [], + "rileds": [], + "Adas": [], + "plutonium's": [], + "ammeters's": [], + "monogamously": [], + "madam's": [], + "harbinger": ["S", "M"], + "wankings": [], + "revived": [], + "suffragettes's": [], + "perspex": [], + "perambulateds": [], + "tenterhook's": [], + "Colby": ["M"], + "doubleheader": ["M", "S"], + "drain'sed": [], + "schematics's": [], + "ninepins": ["M"], + "smuggling": ["M"], + "convoy": ["S", "M", "D", "G"], + "puff'sed": [], + "freshlications": [], + "crapshooter's": [], + "misinformed": [], + "tangosing": [], + "specific's": [], + "talkies's": [], + "plunderers": [], + "subplot's": [], + "transitsing": [], + "coruscation's": [], + "monitors": [], + "dodders's": [], + "defacer": ["S", "M"], + "Ankara": ["M"], + "rottener": [], + "seaplanes": [], + "nick's": [], + "portents": [], + "gyved": [], + "conspicuousness": ["I", "M"], + "bathed": [], + "microcircuits": [], + "militarizing": [], + "burdeninged": [], + "gungy": [], + "wellheads": [], + "pennant'ses": [], + "nether": [], + "preposition": ["S", "M"], + "cot's": [], + "bassist'ses": [], + "androids": [], + "bitter'ser": [], + "sixteenths": [], + "seventeen": ["S", "M", "H"], + "fight'ser": [], + "rodent": ["M", "S"], + "skateboarded": [], + "clanking": [], + "ripper's": [], + "nutcracker's": [], + "dish's": [], + "decreasingly": [], + "raising": [], + "convulsively": [], + "truces": [], + "Baffin": ["M"], + "irrupted": [], + "mainlineds": [], + "exasperatedly": [], + "refrain's": [], + "limousine": ["M", "S"], + "bunco's": [], + "tameder": [], + "crushes": [], + "radicalizeds": [], + "polisheder": [], + "rentals's": [], + "yammereder": [], + "topographer's": [], + "anchorpersons": [], + "lipreader's": [], + "tomfoolery": ["S", "M"], + "pronghorn": ["M", "S"], + "trilbies's": [], + "perniciousliness": [], + "athletes": [], + "tried": ["U"], + "reinvest": [], + "seawall's": [], + "harrow'sed": [], + "bomb'sed": [], + "Cebuano's": [], + "outlandish": ["P", "Y"], + "engulfmenting": [], + "Zaporozhye's": [], + "overdress's": [], + "identifyingen": [], + "Torricelli's": [], + "cookers": [], + "metering": [], + "dishabille": ["M"], + "implication's": [], + "suppressor's": [], + "nitrogenous": [], + "redyes": [], + "Hessian": ["M"], + "blights": [], + "Samaritans": [], + "coincided": [], + "Sikorsky's": [], + "plectrum": ["M", "S"], + "brigs": [], + "rightsizes": [], + "misuses's": [], + "Behring": ["M"], + "reversely": [], + "unverifiable": [], + "safeguardeding": [], + "untended": [], + "homely": ["P", "R", "T"], + "breaches": [], + "cabling": [], + "delineationens": [], + "coffeecake": ["S", "M"], + "gyve's": [], + "fell'sed": [], + "unfrock": ["D", "G"], + "adjudicative": [], + "lingerersing": [], + "Virginia": ["M"], + "rabidness": ["M"], + "bested": [], + "snake": ["D", "S", "M", "G"], + "vestige's": [], + "aloha's": [], + "snitch'sed": [], + "avowals's": [], + "prenups": [], + "mouthing's": [], + "European": ["M", "S"], + "taming": [], + "impairing": [], + "Magi": [], + "Lugosi's": [], + "walkies": [], + "shaded": [], + "nationalization's": [], + "necrology's": [], + "seemliest": [], + "overgeneralize": ["D", "S", "G"], + "percolated": [], + "whingeing": [], + "PST": ["M"], + "gamboling": [], + "medicament's": [], + "sweetcorn": [], + "outbreak'ses": [], + "sepulcher's": [], + "minstrelsy's": [], + "digestives": [], + "Tojo's": [], + "payrolls's": [], + "thanklessness": ["M"], + "Spackle's": [], + "Khwarizmi's": [], + "castigated": [], + "yeti": ["M", "S"], + "stream": ["M", "D", "R", "S", "Z", "G"], + "knot": ["M", "S"], + "succinctly": [], + "gullets": [], + "Leonardo": ["M"], + "lawyer": ["S", "M"], + "streetcar'ses": [], + "deputize": ["D", "S", "G"], + "biplane'ses": [], + "fare's": [], + "polyamory": ["S"], + "palliatingen": [], + "rattletraps's": [], + "phoneying": [], + "charlatans": [], + "scavengers": [], + "autodidacts's": [], + "Trina's": [], + "hitchhiker's": [], + "hectors's": [], + "Siemens's": [], + "pinwheel's": [], + "freshets": [], + "abridgment's": [], + "wrongdoers's": [], + "impoliteliness": [], + "malamute": ["M", "S"], + "ionosphere": ["M", "S"], + "masquerading": [], + "cleaves": [], + "christened": [], + "provenance's": [], + "pervert": ["S", "G", "M", "D"], + "Gestapo's": [], + "flog": ["S"], + "hiatus": ["M", "S"], + "visa's": [], + "veritably": [], + "copses's": [], + "impresses": [], + "licensed": ["U"], + "antenna": ["S", "M"], + "source's": [], + "legalizing": [], + "corrupting": [], + "bag": ["S", "M"], + "histrionically": [], + "bursts's": [], + "trinities's": [], + "tyrannosaurus'ses": [], + "Kickapoo": ["M"], + "sleepwalkersing": [], + "soakeding": [], + "strontium": ["M"], + "Basra": ["M"], + "inducements": [], + "Gibraltar's": [], + "bidet'ses": [], + "soundproof": ["G", "D", "S"], + "Catskills": ["M"], + "oops": [], + "expatiation's": [], + "yarn's": [], + "shipped": ["A"], + "subhuman's": [], + "Minuteman": ["M"], + "okras": [], + "sarge'ses": [], + "tidings": ["M"], + "sectarian's": [], + "raiment's": [], + "Wilmer": ["M"], + "repaintinged": [], + "scags": [], + "Belem's": [], + "siroccos": [], + "lighting": [], + "mayoralty's": [], + "academically": [], + "mugs's": [], + "sniffs's": [], + "fetter": ["U", "S", "G", "D"], + "censorial": [], + "idolizinged": [], + "plummetsing": [], + "Guadalajara's": [], + "ghouls": [], + "glycerol's": [], + "sarsaparillas": [], + "metabolism's": [], + "oscilloscopes": [], + "whitewashing": [], + "argot'ses": [], + "Jarlsberg": ["M"], + "presciently": [], + "headlininged": [], + "amazement": ["M"], + "quilted": [], + "effort": ["S", "M"], + "narrowlies": [], + "Marian": ["M"], + "codifier's": [], + "stirrups": [], + "thunderbolts": [], + "ruefulnessly": [], + "mendicancy": ["M"], + "hollownesses": [], + "prefectures": [], + "preservation's": [], + "airspace's": [], + "catholicity's": [], + "efflorescent": [], + "moppet's": [], + "Fates's": [], + "Catskill": ["S", "M"], + "timekeepers": [], + "imperiousness": ["M"], + "Matthews's": [], + "prophecy": ["S", "M"], + "librettist's": [], + "clinches": [], + "inactive": [], + "violas": [], + "Wichita": ["M"], + "jaw's": [], + "Hittite": ["S", "M"], + "lamentables": [], + "assumed": [], + "lecherousnessly": [], + "omega's": [], + "sprats": [], + "trailings": [], + "Tabriz's": [], + "fad's": [], + "firebox": ["M", "S"], + "consultations": [], + "seismologists": [], + "rival'sed": [], + "shoehorn'sed": [], + "Ostrogoth's": [], + "suzerain's": [], + "centipede": ["S", "M"], + "whensoever": [], + "attaining": [], + "gulled": [], + "coyer": [], + "Innocent": ["M"], + "Worms's": [], + "screenplay's": [], + "Arnulfo's": [], + "reality": ["U", "M"], + "Voronezh": ["M"], + "sealskin": ["M"], + "whack": ["S", "J", "Z", "G", "M", "D", "R"], + "ovulation's": [], + "jibing's": [], + "revive": ["D", "S", "G"], + "barnstormsed": [], + "impost": ["S", "M"], + "explained": ["U"], + "Dakar's": [], + "bustle'sing": [], + "outrage'sing": [], + "banging": [], + "equities": [], + "veges": [], + "obliginged": [], + "compliment": ["M", "D", "G", "S"], + "Dartmoor's": [], + "tapper'ses": [], + "caroling": [], + "upsurgeds": [], + "praiseds": [], + "Hawks": [], + "Gates": ["M"], + "schnoz": ["M", "S"], + "maillots": [], + "cyclone's": [], + "tenting": [], + "fibbed": [], + "whitecaps": [], + "granulationed": [], + "browbeaten": [], + "plausibility": ["M"], + "blockade'sers": [], + "depressor'ses": [], + "clapboard": ["M", "D", "G", "S"], + "finishing": [], + "snappishness": ["M"], + "reiteration": [], + "paralytic": ["S", "M"], + "gave": [], + "ballparks": [], + "observance'ses": [], + "unsifted": [], + "irradiateds": [], + "Ursa's": [], + "Marxism's": [], + "frightfulnessly": [], + "eradicating": [], + "Bhutan's": [], + "Worcestershire": ["M"], + "relaxation's": [], + "ably": [], + "bogey": ["G", "M", "D", "S"], + "outnumbereds": [], + "finitely": [], + "Udall's": [], + "stogie'ses": [], + "loutish": ["P", "Y"], + "cornflower": ["S", "M"], + "circumstance": ["M", "G", "D", "S"], + "hydrogenation's": [], + "forebodings": [], + "frieze's": [], + "answerphones": [], + "bookkeeping": ["M"], + "toecaps's": [], + "scratching": [], + "ergs": [], + "pare": ["S"], + "toddling": [], + "spacewalk": ["S", "G", "M", "D"], + "initialedly": [], + "hardstands's": [], + "Nembutal's": [], + "hamster'ses": [], + "Sven": ["M"], + "elbows's": [], + "headquartered": [], + "feminizeds": [], + "entwine": ["D", "S", "G"], + "alluremented": [], + "vellum's": [], + "dad's": [], + "excrement's": [], + "bleary": ["P", "R", "T"], + "chlorinate": ["G", "N", "D", "S"], + "evadesers": [], + "poster": ["M"], + "hairline": ["S", "M"], + "ultimate": ["M", "Y"], + "rime": ["M", "S"], + "testicle's": [], + "husk's": [], + "squareness": ["M"], + "mascot'ses": [], + "satiable": ["I"], + "resign": [], + "mails": [], + "pediment": ["M", "S"], + "placenta": ["S", "M"], + "cobber": ["S"], + "soul'ses": [], + "southernsers": [], + "monasticism's": [], + "resounding": ["Y"], + "coughs": [], + "facet'sed": [], + "stretching's": [], + "committals's": [], + "superhighway's": [], + "hockey's": [], + "spinning's": [], + "saxifrages's": [], + "Garth's": [], + "nickle": ["S"], + "bandit": ["S", "M"], + "fetishist's": [], + "warranty's": [], + "eater's": [], + "blame'sing": [], + "soar'sed": [], + "roadie": ["M", "S"], + "wattling": [], + "stripper's": [], + "marmoset's": [], + "eliminatingen": [], + "bedim": ["S"], + "dubiety's": [], + "wooinged": [], + "videocassette's": [], + "hydroelectrically": [], + "circlets": [], + "funded": ["U"], + "Todd": ["M"], + "kludge": ["G", "D", "S"], + "maser's": [], + "scutcheon": ["S", "M"], + "beautifiesers": [], + "end's": [], + "bailouts's": [], + "scorn'sed": [], + "intrusion's": [], + "cupful's": [], + "initialed": [], + "fennel's": [], + "bibliographies": [], + "cunning": ["M", "R", "Y", "T"], + "abnegated": [], + "Marlon's": [], + "legitimately": [], + "aspires": [], + "invitational's": [], + "insipidnessly": [], + "escutcheon": ["S", "M"], + "Korzybski": ["M"], + "trikes's": [], + "netted": [], + "studio": ["M", "S"], + "visa": ["M", "D", "S", "G"], + "coercingen": [], + "pruriently": [], + "distinguished": ["U"], + "mosaics": [], + "whelmsed": [], + "libraries": [], + "debarkation": ["M"], + "crooknecks": [], + "captivateds": [], + "Bermuda": ["S", "M"], + "womenfolks's": [], + "shakeouts": [], + "gripper's": [], + "he's": [], + "inventory'sing": [], + "rainwater's": [], + "loquaciousnessly": [], + "burnout's": [], + "bather": ["M"], + "captious": ["Y", "P"], + "tinware": ["M"], + "puzzle's": [], + "Phillipa": ["M"], + "scintillatingen": [], + "tideland's": [], + "due": ["S", "M"], + "reorg": ["M", "D", "S", "G"], + "retraced": [], + "heterosexuals": [], + "schoolmistress": ["M", "S"], + "spumeds": [], + "willpower": ["M"], + "prorogation": ["M"], + "postmasters": [], + "arthritic": ["M", "S"], + "decorating's": [], + "frigate'ses": [], + "wonder": ["M", "D", "G", "L", "S"], + "antiquate": ["G", "D", "S"], + "descriptivenessly": [], + "homeowner's": [], + "Courtney": ["M"], + "classiness's": [], + "clotted": [], + "presage": ["M", "G", "D", "S"], + "turbulent": ["Y"], + "Sunday'ses": [], + "blarney's": [], + "cookout": ["S", "M"], + "titian's": [], + "imprecationsing": [], + "virulence's": [], + "gypsters's": [], + "extensiveness": ["M"], + "Quakerism": ["S", "M"], + "moileds": [], + "fussing": [], + "dogcatcher": ["S", "M"], + "incinerator'ses": [], + "flak's": [], + "deflation": ["M"], + "flowered": [], + "Somme's": [], + "flapped": [], + "penalizing": [], + "pejoratives's": [], + "grouchiest": [], + "travelingings": [], + "contrarians's": [], + "muttony": [], + "poncy": [], + "Kirghizia": ["M"], + "environmentally": [], + "cluinged": [], + "Hewlett's": [], + "psychological": ["Y"], + "Crystal": ["M"], + "zinging": [], + "oft": [], + "scanner's": [], + "Cyprus's": [], + "peignoirs": [], + "hominy": ["M"], + "Moss": ["M"], + "Mon's": [], + "quoited": [], + "horsesing": [], + "Gauguin": ["M"], + "tipsiness": ["M"], + "gushingly": [], + "agony's": [], + "Beck'ser": [], + "pinnacles's": [], + "Nietzsche's": [], + "Friends's": [], + "imparted": [], + "chemo": ["M"], + "Mohammedan's": [], + "extemporaneousness": ["M"], + "overtaking": [], + "glancing": [], + "humorist": ["M", "S"], + "kibosh's": [], + "stagflation": ["M"], + "integrated": [], + "dawdles": [], + "ponied": [], + "Lowe's": [], + "rosebush'ses": [], + "vouching": [], + "ecosystem": ["M", "S"], + "minaret's": [], + "Reconstruction's": [], + "Hussein's": [], + "crapper": ["S"], + "hula'ses": [], + "Biddle": ["M"], + "mincer's": [], + "dint": ["M"], + "shoreline": ["M", "S"], + "clucking": [], + "gammas": [], + "sectarianism": ["M"], + "prognostic's": [], + "Alexis's": [], + "grassland'ses": [], + "chicness": ["M"], + "exploitative": [], + "demonstrably": [], + "Mme": ["S"], + "sunny": ["T", "R", "P"], + "Kennith's": [], + "barksing": [], + "opus's": [], + "anaerobically": [], + "phisheder": [], + "newsworthiness's": [], + "Mavis": ["M"], + "illusion's": [], + "respectfulness": ["M"], + "psychotherapist": ["M", "S"], + "mullsing": [], + "illustratingen": [], + "calcification": ["M"], + "causation": ["M"], + "Hogan": ["M"], + "clxii": [], + "tatty": ["T", "R", "S"], + "group'sed": [], + "coffeecakes": [], + "detaining": [], + "captureds": [], + "whipsaweding": [], + "jazzing": [], + "Soto": ["M"], + "photocopieder": [], + "ratline": ["S", "M"], + "scrounge": ["D", "R", "S", "Z", "G"], + "emoticons's": [], + "mugful'ses": [], + "Gray's": [], + "dodger": ["M"], + "hazard's": [], + "CAD's": [], + "barbiturates": [], + "handbill": ["M", "S"], + "Bettie's": [], + "gussying": [], + "sniffersing": [], + "plagiarist": ["S", "M"], + "lawman": ["M"], + "sole's": [], + "preconceiving": [], + "canvasbacks's": [], + "flared": [], + "voluptuaries": [], + "SCSI's": [], + "gurgle'sing": [], + "verdant": ["Y"], + "boltinged": [], + "feebleness's": [], + "wavebands": [], + "persuasively": [], + "Nan's": [], + "turnabouts": [], + "many's": [], + "bloopers": [], + "routinized": [], + "yelpeds": [], + "Leach": ["M"], + "monitions": [], + "compunctions's": [], + "jurist": ["M", "S"], + "reeving": [], + "dictation": ["M"], + "oblate": ["N", "X"], + "Linux": ["M", "S"], + "upshot's": [], + "cruses's": [], + "sang": ["S"], + "handmaidens's": [], + "Pablo's": [], + "Dexedrine": ["M"], + "proudest": [], + "disintegration": [], + "plumbersing": [], + "processioned": [], + "tack's": [], + "minors's": [], + "Donizetti's": [], + "equestrienne": ["S", "M"], + "scratch": ["G", "M", "D", "S"], + "freed": [], + "Zika": [], + "plazas": [], + "implacability": ["M"], + "unwearied": [], + "kiddies's": [], + "declarative": [], + "dribbling": [], + "newspaperwoman's": [], + "Mancunian": ["M", "S"], + "fluorides's": [], + "downer": ["M"], + "renumber": [], + "Mahdi's": [], + "blither": ["G"], + "Malay'ses": [], + "ravers": [], + "somersaults": [], + "Lillian's": [], + "periodontist": ["S", "M"], + "Flanagan's": [], + "ululated": [], + "feedbag's": [], + "knock": ["S", "Z", "G", "M", "D", "R"], + "poignancy's": [], + "Arizonian'ses": [], + "mph": [], + "riskierness": [], + "resuscitating": [], + "Bengal's": [], + "annihilator": ["S", "M"], + "summer": ["M", "D", "S", "G"], + "argyle'ses": [], + "injectors": [], + "saltines's": [], + "videodisc": ["M", "S"], + "maintop": ["S", "M"], + "sibyl's": [], + "wholeheartedness's": [], + "carer": ["M"], + "resourceful": ["Y", "P"], + "renascences": [], + "townsfolk's": [], + "Colgate's": [], + "vestal's": [], + "breastbone's": [], + "foxtrot": ["M", "S"], + "competitivenessly": [], + "Elise's": [], + "fay's": [], + "pendent": ["M", "S"], + "unkind": ["T"], + "drizzle'sing": [], + "Ryan": ["M"], + "campaigneder": [], + "timersing": [], + "distastefulness": [], + "compeer's": [], + "beachhead'ses": [], + "baskets": [], + "make": ["U", "A", "G", "S"], + "urn's": [], + "contingents": [], + "coequallies": [], + "burl's": [], + "overwhelminged": [], + "newcomers's": [], + "bending": [], + "mascaraed": [], + "lorgnette's": [], + "abuse": ["E", "G", "V", "D", "S"], + "Concepcion's": [], + "Danton": ["M"], + "besmearsing": [], + "apoplexies's": [], + "incandescently": [], + "loaned": [], + "awn": ["G", "J", "S", "M"], + "unfailingly": [], + "hydrologist": ["M", "S"], + "lorgnettes": [], + "steadier": [], + "rhinoceros's": [], + "plagiarists": [], + "Hottentot's": [], + "hulksing": [], + "Bi's": [], + "Garfield": ["M"], + "Agrippa's": [], + "codpiece'ses": [], + "sermon": ["S", "M"], + "bafflement's": [], + "Francisca": ["M"], + "warren": ["M", "S"], + "cordovan's": [], + "AFC": ["M"], + "little": ["M", "T", "R", "P"], + "snaffles": [], + "preciseder": [], + "saprophytic": [], + "documentary's": [], + "spitball": ["S", "M"], + "tarantella'ses": [], + "anorectic": ["S", "M"], + "gaugeds": [], + "transports": [], + "necessary's": [], + "Jeffery's": [], + "Alton": ["M"], + "conresign": [], + "Delbert": ["M"], + "apiarists's": [], + "fictionally": [], + "spoonerisms": [], + "spieling": [], + "rottenerly": [], + "Olmsted's": [], + "Buddy's": [], + "Dacrons": [], + "bringers": [], + "guinea": ["M", "S"], + "Otto": ["M"], + "facade's": [], + "admission's": [], + "flanksers": [], + "irruptions's": [], + "zephyr's": [], + "carny": ["S", "M"], + "annually": [], + "relic's": [], + "somber": ["P", "Y"], + "chaperoneding": [], + "sensationalizes": [], + "jollyingness": [], + "reprehended": [], + "Huber's": [], + "milt's": [], + "trippers": [], + "Frankfort": ["M"], + "mitt's": [], + "schnook's": [], + "Swiss": ["M", "S"], + "premeditatingen": [], + "June": ["S", "M"], + "paratrooperses": [], + "bighorns": [], + "Clint's": [], + "carafe'ses": [], + "introvert": ["M", "D", "S"], + "aquaculture's": [], + "roadbed's": [], + "hairbrush'ses": [], + "lusciousnessly": [], + "requirement": ["M", "S"], + "defaulter": ["S", "M"], + "beery": ["T", "R"], + "surtaxing": [], + "scythes's": [], + "pangs": [], + "stereoscope'ses": [], + "suttee": [], + "roofless": [], + "Rosalind's": [], + "largehearted": [], + "Kristin's": [], + "inseminateds": [], + "milliner's": [], + "anus's": [], + "floodlight'sed": [], + "hooky": ["M"], + "motto's": [], + "lichen": ["M", "S"], + "unhampered": [], + "Aimee": ["M"], + "ambulations": [], + "antibacterial's": [], + "innersoles's": [], + "honeymoon's": [], + "export": ["B", "S", "Z", "G", "M", "D", "R"], + "wacks": [], + "happeneding": [], + "snowplowsing": [], + "twain's": [], + "fuzzballs": [], + "girdersing": [], + "swiveleding": [], + "mileage": ["S", "M"], + "clansman": ["M"], + "Waterbury's": [], + "OKs's": [], + "fascicle's": [], + "micro's": [], + "Rayburn's": [], + "geom": [], + "Giannini": ["M"], + "fisheries's": [], + "imprecision's": [], + "wigging": [], + "deputizing": [], + "Elias": ["M"], + "robeds": [], + "boyhoods's": [], + "generation": ["A", "C", "M"], + "around": [], + "Baum": ["M"], + "matriarchies": [], + "Malay's": [], + "veneers": [], + "exodus": ["M", "S"], + "stave": ["D", "S", "M", "G"], + "Belau": ["M"], + "poolroom's": [], + "cosseting": [], + "suggested": [], + "curtest": [], + "asp'sen": [], + "reasonableness's": [], + "mockingbirds": [], + "venteding": [], + "plaits": [], + "constricting": [], + "cohorts": [], + "eatable's": [], + "GHQ": ["M"], + "ventriloquism's": [], + "nuttiness's": [], + "anchovy": ["S", "M"], + "concoction": ["M", "S"], + "plenipotentiary": ["S", "M"], + "scrumpinged": [], + "moistenerers": [], + "chortlers": [], + "careen": ["D", "G", "S"], + "some": [], + "kumquat's": [], + "laxative's": [], + "Baffin's": [], + "supervisor'ses": [], + "besmears": [], + "tattlersing": [], + "prophesier's": [], + "pantomimeds": [], + "morrow'ses": [], + "establish": ["A", "E", "S", "D", "G", "L"], + "sheepishly": [], + "myopic": [], + "engrave": ["Z", "G", "J", "D", "R", "S"], + "spreeing": [], + "watchman": ["M"], + "percolationed": [], + "scurrilousnessly": [], + "raven": ["M", "D", "S", "G"], + "telegraphed": [], + "Erick": ["M"], + "unpaid": [], + "houseboy's": [], + "paddlersing": [], + "bash's": [], + "kidder": ["S", "M"], + "Zions": [], + "typewritersing": [], + "aberrant": [], + "whetting": [], + "husbandry's": [], + "Algonquins": [], + "centrist": ["M", "S"], + "gov": [], + "comrades": [], + "congesteding": [], + "fanboys's": [], + "annulments": [], + "scandalizing": [], + "intensiveness's": [], + "cerebration": ["M"], + "creator'ses": [], + "bedraggles": [], + "grate's": [], + "avouched": [], + "Bibles": [], + "scrotum": ["M"], + "chamberlains": [], + "monstrance": ["A", "S", "M"], + "Napoleons": [], + "hedgersing": [], + "weightsings": [], + "Aegean": ["M"], + "crypt": ["S", "M"], + "virgules": [], + "oath": ["M"], + "blowhole": ["S"], + "worthier": [], + "Sebastian's": [], + "construction's": [], + "Malaysian'ses": [], + "mating": ["M"], + "Lakota's": [], + "industrializing": [], + "gracefulnessly": [], + "title'sing": [], + "Cf": ["M"], + "nutriment's": [], + "centiliter'ses": [], + "noncommercial's": [], + "hydrogenating": [], + "abusers": [], + "Virginia's": [], + "varnishes": [], + "camouflagers": [], + "casemented": [], + "toneless": ["Y"], + "paparazzo": [], + "complexions": [], + "beck": ["S", "M"], + "cnidarian's": [], + "trucksers": [], + "editing": [], + "smelted": [], + "Belmont": ["M"], + "seal's": [], + "forehands": [], + "theirs": [], + "McQueen's": [], + "graduateds": [], + "democracies": [], + "vanquishers": [], + "perpetrator'ses": [], + "pachysandra": ["M", "S"], + "medium's": [], + "hijacker": ["M"], + "obstructionist's": [], + "unlimited": [], + "subscribeding": [], + "tolerate": ["G", "N", "D", "S"], + "porpoised": [], + "tensity": ["I", "M"], + "fascinations": [], + "awakenings's": [], + "gazebos": [], + "join's": [], + "Smokey": ["M"], + "Orwell": ["M"], + "institutionalize": ["D", "S", "G"], + "compriseds": [], + "rove": ["Z", "G", "D", "R", "S"], + "disoblige": [], + "elevators": [], + "Honduran's": [], + "monkeyed": [], + "loomed": [], + "freeman": ["M"], + "Batista": ["M"], + "knave's": [], + "givers": [], + "Cheer's": [], + "passersing": [], + "cabbage's": [], + "Hull": ["M"], + "Ardabil": [], + "Gladys": ["M"], + "watchmaker'ses": [], + "overtone": ["M", "S"], + "riffeds": [], + "dried": [], + "dearth": ["M"], + "modulations": [], + "ejaculating": [], + "allegiance's": [], + "nudges's": [], + "cinched": [], + "terminal'sly": [], + "antidotes": [], + "flab's": [], + "prattling": [], + "campuses": [], + "ideogram": ["S", "M"], + "warning's": [], + "recollect": [], + "dulcimer's": [], + "chandelier's": [], + "philanthropies": [], + "paybacks": [], + "trailblazing": ["M"], + "catalyzes": [], + "misshape": ["G", "D", "S"], + "footfalls": [], + "potful": ["S", "M"], + "exemplar": ["S", "M"], + "lyrebird's": [], + "misjudged": [], + "pantomime's": [], + "denouncement's": [], + "fibbers": [], + "save'sers": [], + "ISO's": [], + "quadrillion": ["M"], + "manifests": [], + "Kasey": ["M"], + "ejectors's": [], + "devileding": [], + "tire": ["A", "G", "D", "S"], + "adverbs": [], + "deathblow'ses": [], + "billionaires": [], + "Foreman": ["M"], + "ruined": [], + "Lola's": [], + "deepeninged": [], + "defiant": ["Y"], + "Bannister's": [], + "stupefies": [], + "sewing": ["M"], + "Tiberius": ["M"], + "holdall": ["S"], + "normalizing": [], + "comfortable": ["P"], + "chauvinists's": [], + "wardroom": ["S", "M"], + "preciousness's": [], + "islets's": [], + "fireder": [], + "orchestrates": [], + "passages": [], + "Reinaldo": ["M"], + "wiener's": [], + "vulnerability's": [], + "searched": [], + "propose": [], + "rotation's": [], + "simian's": [], + "effect": ["S", "M", "D", "G", "V"], + "remonstrated": [], + "hatchery's": [], + "enclose": ["G", "D", "S"], + "slide'sers": [], + "reasoners": [], + "theism's": [], + "Gareth's": [], + "astringency's": [], + "peepersing": [], + "tagging": [], + "profanities": [], + "Palmolive": ["M"], + "trivalent": [], + "expedient'sly": [], + "sporeds": [], + "callbacks": [], + "spool'sed": [], + "ablative": ["M", "S"], + "wimpling": [], + "Maryann": ["M"], + "freights": [], + "mercantile": [], + "midsections": [], + "winkers": [], + "midterms": [], + "ambitious": ["Y", "P"], + "Keck": ["M"], + "slowed": [], + "dulcimer": ["M", "S"], + "conferrable": [], + "sensitiveness": ["M"], + "millions": [], + "dud's": [], + "phototropism": [], + "loggers": [], + "jot": ["S", "M"], + "saucersing": [], + "colloid's": [], + "oboe'ses": [], + "striations": [], + "depreciateds": [], + "screensavers": [], + "mold'sed": [], + "Hebert": ["M"], + "bub": ["S", "M"], + "brontosaurus": ["M", "S"], + "maypoles": [], + "multiform": [], + "underwriter's": [], + "tonnage": ["S", "M"], + "browses": [], + "prompting's": [], + "mournfully": [], + "wights": [], + "rune'ses": [], + "obstetric": ["S"], + "glorieds": [], + "undertaker": ["M"], + "speculator's": [], + "conciliate": ["D", "S", "G", "N"], + "followup": ["S"], + "mealier": [], + "eggcup's": [], + "snoops": [], + "oxfords's": [], + "Huntsville": ["M"], + "divvy": ["D", "S", "M", "G"], + "sloven'sly": [], + "nonassignable": [], + "sack'sed": [], + "antispasmodic's": [], + "sordidly": [], + "crayfishes": [], + "consumptive's": [], + "hymens": [], + "laboratories": [], + "constables": [], + "landsliding": [], + "Dalmatian's": [], + "predominance": ["M"], + "anticipateds": [], + "mind's": [], + "sledgehammerings": [], + "whey's": [], + "catchword'ses": [], + "withes's": [], + "coffeemaker's": [], + "prospectus's": [], + "pullets's": [], + "brier": ["M"], + "glorifies": [], + "lots's": [], + "jazzes": [], + "incapacitates": [], + "suburb": ["M", "S"], + "violable": ["I"], + "voltage's": [], + "LLB's": [], + "impertinently": [], + "anklebone's": [], + "wisecrackeds": [], + "smells": [], + "banqueter": ["M"], + "divisions": [], + "adhesives": [], + "obfuscationens": [], + "nonvoter'ses": [], + "bridle's": [], + "Bessemer's": [], + "speechless": ["Y", "P"], + "Bates": ["M"], + "clans": [], + "dimple": ["D", "S", "M", "G"], + "worlds's": [], + "pratersing": [], + "loss'ses": [], + "orbit": ["M", "D", "R", "Z", "G", "S"], + "actuary": ["S", "M"], + "pragmatically": [], + "shrivinged": [], + "lunch'sed": [], + "emissary": ["S", "M"], + "handbarrow": ["S", "M"], + "laments": [], + "interbreedings": [], + "brace'sers": [], + "retrogression": ["M"], + "Christchurch's": [], + "pence": [], + "Harbin": ["M"], + "accomplishment": ["M", "S"], + "formatted": ["A"], + "flannels": [], + "solidification's": [], + "rucksack's": [], + "apparels": [], + "zoned": [], + "Lodz": ["M"], + "Sacramento": ["M"], + "dinging": [], + "managers": [], + "purifies": [], + "manifestsing": [], + "readied": [], + "grabbing": [], + "biff": ["S", "G", "D"], + "lemonade's": [], + "mommy": ["S", "M"], + "Ruchbah's": [], + "seiner's": [], + "unearths": [], + "newscast's": [], + "grower": ["M", "S"], + "disinfectant's": [], + "tillage's": [], + "counterfeiting": [], + "humbled": [], + "sawmills": [], + "downbeat's": [], + "potholed": [], + "foregrounds": [], + "Katherine's": [], + "Ritalin": ["M"], + "diagnosis's": [], + "clicheds": [], + "denuclearize": ["G", "D", "S"], + "deafener": [], + "unadvised": [], + "kowtoweds": [], + "macabre": [], + "refundable": [], + "handheld": ["M", "S"], + "manged": [], + "mounts": [], + "taint": ["M", "D", "S", "G"], + "conquest's": [], + "grapple'sing": [], + "jabbed": [], + "habituates": [], + "blindfolds": [], + "consistories": [], + "plucksing": [], + "breastbone'ses": [], + "knock's": [], + "adolescences": [], + "EC": [], + "lavage's": [], + "taillight": ["M", "S"], + "birdying": [], + "sprinkler's": [], + "evisceratingen": [], + "presentings": [], + "subsidized": [], + "Comte": ["M"], + "exemplification's": [], + "slenderizeds": [], + "sleight's": [], + "bigoteds": [], + "pasture's": [], + "tantalizes": [], + "idiot's": [], + "foursomes": [], + "sterilizes": [], + "exorcist": ["S", "M"], + "tenable": ["U"], + "Bean": ["M"], + "droops": [], + "shackle": ["U", "G", "D", "S"], + "haven't": [], + "suede": ["M"], + "liquids": [], + "plainspoken": [], + "salesladies": [], + "loris'ses": [], + "peppermints's": [], + "auk": ["S", "M"], + "manhandled": [], + "chant's": [], + "candling": [], + "exoplanet'ses": [], + "Tricia": ["M"], + "spewer": ["M"], + "detritus's": [], + "pis": [], + "clippings": [], + "unedited": [], + "remoters": [], + "nattered": [], + "skimpier": [], + "Tet's": [], + "Mayan's": [], + "Frigidaire": ["M"], + "gamesters": [], + "Arnhem": ["M"], + "partial's": [], + "wisest": [], + "audiometers's": [], + "fugitive's": [], + "goon'ses": [], + "injectsed": [], + "pibroch's": [], + "lesserens": [], + "GHQ's": [], + "sexless": [], + "ultramodern": [], + "estimations": [], + "tittles": [], + "Breckenridge's": [], + "overawed": [], + "subtractions's": [], + "aberration's": [], + "participates": [], + "Huguenot's": [], + "sawbuck's": [], + "isolated": [], + "nephews": [], + "unitesed": [], + "Cassandra": ["S", "M"], + "undercoat'sed": [], + "federalization's": [], + "Latrobe's": [], + "ballots": [], + "purpler": [], + "mordants's": [], + "icing's": [], + "Finley": ["M"], + "reignsing": [], + "sprints's": [], + "clanged": [], + "Angolan": ["M", "S"], + "overnight": ["M", "S"], + "performs": [], + "progressed": [], + "bounteous": ["Y", "P"], + "dweeb's": [], + "demount": [], + "dices": ["I"], + "pilferage's": [], + "Garland's": [], + "inscription's": [], + "Ob's": [], + "hibiscus's": [], + "satyr's": [], + "audiovisual": ["S"], + "Cardozo's": [], + "cosmopolitan": ["M", "S"], + "tides": [], + "lardeder": [], + "titivateds": [], + "weaponized": [], + "flavor's": [], + "roamer": ["M"], + "crosschecks": [], + "frequency's": [], + "undesirables": [], + "Monsieur": ["M"], + "whits": [], + "hangups": [], + "Damion": ["M"], + "burping": [], + "auger's": [], + "palmistry": ["M"], + "flooded": [], + "tamperer": ["M"], + "intricate": ["Y"], + "vandalism's": [], + "grimnessing": [], + "slink": ["S", "G"], + "seismographic": [], + "jostleds": [], + "selected": [], + "reverentially": [], + "trillion": ["S", "M", "H"], + "stubbly": [], + "stunningly": [], + "tubbiest": [], + "policy's": [], + "ravishing": ["Y"], + "hackneyed": [], + "lunkhead'ses": [], + "national'sly": [], + "disrepossess": [], + "Elnora's": [], + "cubes": [], + "Roeg's": [], + "insufficiency": [], + "cockiness": ["M"], + "homepage'ses": [], + "pelts": [], + "separator's": [], + "wrack'sed": [], + "Art": ["M"], + "McIntyre": ["M"], + "evasive": ["Y", "P"], + "rattraps's": [], + "bugle": ["D", "R", "S", "M", "Z", "G"], + "sieving": [], + "maddeningly": [], + "sanatoriums's": [], + "sloops's": [], + "lungfish's": [], + "lowest": [], + "WI": [], + "grouted": [], + "bowwows's": [], + "exterminatingen": [], + "choices": [], + "apter": [], + "appealingly": [], + "plasterboard's": [], + "filmy": ["T", "P", "R"], + "imperialist's": [], + "gangbusters's": [], + "airstrikes": [], + "dealt": [], + "compasseds": [], + "peeress'ses": [], + "Urals": ["M"], + "glitziest": [], + "blazon'sed": [], + "variegation": ["M"], + "plaid'ses": [], + "quintet": ["S", "M"], + "artistry's": [], + "tranquilerly": [], + "gobbledygook": ["M"], + "landfill's": [], + "experiment's": [], + "curler": ["S", "M"], + "moldsers": [], + "candlesticks": [], + "hypnotherapists": [], + "foamy": ["R", "T", "P"], + "pannier's": [], + "chunkiest": [], + "Tartary": ["M"], + "suitcases": [], + "doorways": [], + "rid": ["S"], + "hires": [], + "buggereding": [], + "comeuppances's": [], + "clenched": [], + "clothing": ["M"], + "germicide'ses": [], + "hedge": ["D", "R", "S", "M", "Z", "G"], + "subculture'ses": [], + "yawner's": [], + "specificationsen": [], + "barrooms": [], + "blusterous": [], + "deeming": [], + "autographed": [], + "flosseds": [], + "Bart": ["M"], + "heretic": ["S", "M"], + "Thessalonian": ["S", "M"], + "Delmarva": ["M"], + "poucheds": [], + "reelect": [], + "demands": [], + "adverser": [], + "weightlessness": ["M"], + "Selena": ["M"], + "attainments": [], + "dreariest": [], + "fires": [], + "worthies": [], + "invented": [], + "sweltering's": [], + "upsilon": ["M", "S"], + "frequentlies": [], + "stingray": ["S", "M"], + "headstall": ["S", "M"], + "groundings": [], + "honeying's": [], + "fleeces": [], + "Septuagint's": [], + "jockeying's": [], + "outpointings": [], + "touchline": ["S"], + "expansiveness's": [], + "earldoms's": [], + "maelstrom's": [], + "Camembert": ["M", "S"], + "delft's": [], + "ennoblesing": [], + "copter's": [], + "wren": ["M", "S"], + "Btu": ["M"], + "burp": ["M", "D", "G", "S"], + "Oregonians's": [], + "scribblinged": [], + "bongo'ses": [], + "portended": [], + "spunks": [], + "absorbent's": [], + "wake's": [], + "cloves": [], + "hie": ["S"], + "crowdfundeding": [], + "allergists": [], + "ordainment's": [], + "bailey": ["S"], + "germicides": [], + "wangleder": [], + "version'ses": [], + "outlaw": ["S", "G", "M", "D"], + "oarswoman's": [], + "spirits": [], + "Sonny's": [], + "amelioratingen": [], + "escapee's": [], + "ragamuffin'ses": [], + "stationerers": [], + "dibbled": [], + "knottiest": [], + "rejection's": [], + "transvestites": [], + "alleviateds": [], + "contumacy's": [], + "county": ["S", "M"], + "Lorentz": ["M"], + "ragging": [], + "mothersing": [], + "tilts": [], + "tactician": ["M", "S"], + "Iranian": ["S", "M"], + "ambler's": [], + "peepholes": [], + "reassurance": [], + "slavered": [], + "darers": [], + "lube's": [], + "decal's": [], + "untimeliness": [], + "mendeder": [], + "muscled": [], + "megabucks": ["M"], + "nihilism": ["M"], + "whippletrees's": [], + "clad": ["U"], + "flatness": ["M"], + "overhaul'sed": [], + "below": [], + "unsportsmanlike": [], + "processor's": [], + "carp'sed": [], + "Clifton": ["M"], + "croissants": [], + "swede's": [], + "ramparts's": [], + "John's": [], + "fleeter": [], + "brooderers": [], + "deregulation": [], + "hatings": [], + "nutritionists's": [], + "extraordinary": [], + "sentimental": ["Y"], + "predators": [], + "ramshackle": [], + "demeaneds": [], + "Leary": ["M"], + "hydroxide's": [], + "jibing": [], + "neurasthenia": ["M"], + "nostrum'ses": [], + "ejecting": [], + "governess'ses": [], + "countdown": ["M", "S"], + "picots's": [], + "cruddier": [], + "AFN": [], + "ionizing": [], + "callous": ["P", "G", "D", "S", "Y"], + "Eocene's": [], + "gumdrop's": [], + "unasked": [], + "parities": [], + "extrusions": [], + "science's": [], + "terapixel'ses": [], + "relaid": [], + "vindictive": ["P", "Y"], + "nonresidential": [], + "Guillermo": ["M"], + "skulk": ["S", "D", "R", "Z", "G"], + "chateau's": [], + "patrimony": ["S", "M"], + "treacherous": ["P", "Y"], + "astrakhan's": [], + "twinkly": [], + "lesion'ses": [], + "tethers": [], + "Hepburn's": [], + "dink": ["R"], + "meditatively": [], + "radarscopes's": [], + "Picasso": ["M"], + "codifies": [], + "holiness": ["U", "M"], + "convoke": ["D", "S", "G"], + "mechanic's": [], + "louring": [], + "levelness": ["M"], + "camp": ["C", "S", "G", "D"], + "responsibility's": [], + "claimant": ["M", "S"], + "clavicles": [], + "runt": ["M", "S"], + "interdict's": [], + "midweek's": [], + "bile": ["M"], + "cassowary's": [], + "dismantle": [], + "hitcher's": [], + "amethysts's": [], + "hailstorm's": [], + "goldmines": [], + "Herzl": ["M"], + "Nibelung's": [], + "carhop's": [], + "preparedness's": [], + "schmoes": [], + "Jonathon": ["M"], + "northerner": ["M"], + "oppositions": [], + "reluctantly": [], + "ceca": [], + "vaulteder": [], + "Small": ["M"], + "shuffleds": [], + "hallmarked": [], + "rheumatoid": [], + "emitter'ses": [], + "harbor's": [], + "chalkeds": [], + "House": ["M"], + "celerity": ["M"], + "Actaeon's": [], + "inductions": [], + "exploiter": ["M"], + "donning": [], + "crone": ["S", "M"], + "stanchers": [], + "Deere's": [], + "economist": ["S", "M"], + "throttle": ["D", "R", "S", "M", "Z", "G"], + "fragmenteds": [], + "earthling'ses": [], + "positioning": ["K"], + "entertainer": ["M"], + "discriminate": ["G", "N", "D", "S"], + "Birkenstock's": [], + "dignities's": [], + "ward": ["A", "M", "D", "G", "S"], + "obfuscations": [], + "pressurized": [], + "Dodson's": [], + "lanyard'ses": [], + "mapmakers's": [], + "bencheds": [], + "plieds": [], + "NRA": [], + "gaspings": [], + "trifocals's": [], + "composted": [], + "desisted": [], + "lovelorn": [], + "scoutmaster'ses": [], + "dresser": ["M", "S"], + "plastering": [], + "rarebits": [], + "twining": [], + "sinned": [], + "blame": ["B", "M", "G", "D", "R", "S"], + "Acheson's": [], + "rubier": [], + "archaisms": [], + "vaunt'sed": [], + "cartographers's": [], + "flushest": [], + "faceteding": [], + "polygamists": [], + "dinette'ses": [], + "ideology's": [], + "letterbomb": ["S"], + "goadeding": [], + "ironmongers": [], + "spurred": [], + "endorser's": [], + "complimenteding": [], + "bazillion": ["S"], + "Kr's": [], + "wait's": [], + "Swaziland's": [], + "charlady": ["S"], + "haltering": [], + "pseudoscience": ["M", "S"], + "unconsummated": [], + "needles": [], + "holster": ["S", "M", "D", "G"], + "flyspeckeds": [], + "apprehensions": [], + "arbitrarily": [], + "advocate's": [], + "espousal": ["M"], + "viscount": ["S", "M"], + "tolerateds": [], + "treatise's": [], + "factorials": [], + "universe's": [], + "evidence'sing": [], + "katydids's": [], + "melodramatics's": [], + "microgrooves": [], + "parachutist": ["M", "S"], + "gargle's": [], + "nourishesment": [], + "neckerchiefs": [], + "kindergarten's": [], + "oligarch": ["M"], + "relishes": [], + "neonate": ["M", "S"], + "benefiting": [], + "gels's": [], + "spotter": ["M", "S"], + "blamelessness": ["M"], + "pendant": ["M", "S"], + "pulley's": [], + "Efrain": ["M"], + "queerer": [], + "harebell's": [], + "hairpiece'ses": [], + "refutes": [], + "grittiness": ["M"], + "bankbooks": [], + "conflation": ["M"], + "lopsidedness": ["M"], + "pocketed": [], + "flasher's": [], + "slagheap": ["S"], + "Earline's": [], + "kindest": [], + "keel's": [], + "Calderon": ["M"], + "wilderness'ses": [], + "bagpiper": ["M"], + "dualism": ["M"], + "excelled": [], + "Mamore's": [], + "Sc's": [], + "buncos": [], + "Good": ["M"], + "piling's": [], + "schoolbook": ["S", "M"], + "waterproof": ["S", "M", "D", "G"], + "preregistersing": [], + "Pottawatomie's": [], + "Shylock": ["M"], + "disavow": [], + "escalates": [], + "justness": ["M"], + "pentagons": [], + "insolently": [], + "indictments": [], + "offshoot": ["M", "S"], + "flightiest": [], + "brays's": [], + "schooling": ["M"], + "pillaged": [], + "mascara": ["G", "M", "D", "S"], + "educatingen": [], + "empathizeds": [], + "madcaps": [], + "umbels's": [], + "stray'sed": [], + "gobbles": [], + "hilariously": [], + "teem": ["G", "D", "S"], + "regeneracy": ["M"], + "downwind": [], + "oppressiveness": ["M"], + "Parmenides": [], + "Russel": ["M"], + "sheaves's": [], + "relentlessly": [], + "narrowerly": [], + "probate": ["M", "N"], + "bookbinder's": [], + "ditto'sed": [], + "retrospectivelies": [], + "Juliana": ["M"], + "crescents": [], + "freight's": [], + "tipple's": [], + "shootsings": [], + "byproducts": [], + "restorative's": [], + "Mideastern": [], + "dissoluble": ["I"], + "investiture'ses": [], + "gesture'sing": [], + "swag'ses": [], + "misalliances": [], + "gamer": [], + "mellowest": [], + "congest": ["S", "D", "G", "V"], + "freeloader": ["M"], + "teleology": [], + "wailing's": [], + "homilies's": [], + "hedonist's": [], + "play's": [], + "crawler": ["M"], + "Eugene's": [], + "dumbbells": [], + "troll'sed": [], + "chat's": [], + "swearword's": [], + "brioches's": [], + "word's": [], + "bustleds": [], + "recoveries": [], + "operettas's": [], + "riderless": [], + "calculatesens": [], + "stinker": ["M"], + "glockenspiels": [], + "Comdr": [], + "airbags": [], + "anticipationsed": [], + "September'ses": [], + "caucus's": [], + "expenditure's": [], + "Blackbeard's": [], + "catheterizeds": [], + "imprisonedment": [], + "chronologies": [], + "horrible": ["P"], + "pibrochs": [], + "Irwin": ["M"], + "erotica's": [], + "flanges": [], + "ins": [], + "crackpot'ses": [], + "solidifieds": [], + "diatoms": [], + "apparatus's": [], + "chinaware": ["M"], + "tutu": ["M", "S"], + "bleach's": [], + "unenterprising": [], + "polyandry's": [], + "technocracy's": [], + "vociferates": [], + "Tuscan": ["M"], + "Aguirre": ["M"], + "angioplasties's": [], + "travelers": [], + "mashes": [], + "Atalanta's": [], + "aliased": [], + "campaniles's": [], + "cuspidor": ["S", "M"], + "writing's": [], + "hurdled": [], + "marquisette's": [], + "painful": ["P", "Y"], + "coal": ["M", "D", "G", "S"], + "wondereding": [], + "shacksing": [], + "terrors": [], + "necrology": ["M"], + "preempts": [], + "puzzler's": [], + "variant'ses": [], + "hauteur": ["M"], + "knighthood": ["M", "S"], + "cheerful": ["Y", "P"], + "Dario": ["M"], + "graspable": [], + "jackdaw": ["M", "S"], + "xci": [], + "remapped": [], + "tussles's": [], + "hassles's": [], + "lifesaver's": [], + "davit'ses": [], + "entrenches": [], + "Guadeloupe": ["M"], + "adaptability's": [], + "Jacky's": [], + "pocketing": [], + "quieten": ["D", "G"], + "phrase's": [], + "orbitings": [], + "clockwork": ["S", "M"], + "Mimi's": [], + "falloff's": [], + "inheresing": [], + "polygamist": ["M", "S"], + "zetas": [], + "lumpiness's": [], + "concatenation": ["M"], + "somersaulteding": [], + "profiteer'sed": [], + "dude'ses": [], + "malinger": ["Z", "G", "S", "D", "R"], + "sugarcoat": ["G", "D", "S"], + "tridents": [], + "wholefoods": [], + "dalmatian'ses": [], + "extortion's": [], + "Protestantism's": [], + "nourishes": [], + "Barney": ["M"], + "drama's": [], + "novelette": ["S", "M"], + "pirate's": [], + "workweek's": [], + "Naples's": [], + "sprightlier": [], + "snowblowers": [], + "track's": [], + "counterpart": ["S", "M"], + "enjoinsing": [], + "nymphet": ["M", "S"], + "foreword": ["M", "S"], + "Fujiyama's": [], + "Moseley": ["M"], + "sprightly": ["R", "T", "P"], + "futzeds": [], + "gossipers": [], + "uncial": ["M"], + "preachersing": [], + "defalcating": [], + "colonoscopy's": [], + "guesstimate's": [], + "dejection": ["M"], + "splinter": ["M", "D", "G"], + "dollhouse": ["S", "M"], + "tanned": ["U"], + "awaking": [], + "fuselage": ["S", "M"], + "porcupine": ["S", "M"], + "Carmela's": [], + "exegetic": [], + "trip": ["M", "Y", "S"], + "handcart": ["M", "S"], + "tricycles": [], + "contagiousnessly": [], + "giving": [], + "hair": ["M", "D", "S"], + "volatilizesing": [], + "detaches": [], + "protoplasm's": [], + "buts": [], + "headerers": [], + "crispy": ["P", "R", "T"], + "warmheartedness": ["M"], + "geometrical": ["Y"], + "butterfingers's": [], + "ocelot's": [], + "wheeling": [], + "womanizeder": [], + "warehoused": [], + "roster's": [], + "satisfied": ["U"], + "conspirator": ["M", "S"], + "blackballsing": [], + "windscreen": ["S", "M"], + "stratagem": ["S", "M"], + "ADP": ["M"], + "badmouthinged": [], + "bane's": [], + "pragmatist's": [], + "Harrisburg": ["M"], + "smooths": [], + "Navarre's": [], + "swear": ["Z", "G", "S", "R"], + "downgrading": [], + "gutturals": [], + "Sallie's": [], + "bugger's": [], + "censoring": [], + "consistency's": [], + "stone's": [], + "replenishing": [], + "deterrent'ses": [], + "singletree's": [], + "designateds": [], + "invention": ["A", "M", "S"], + "Dover's": [], + "estimators's": [], + "courageousness": ["M"], + "perfectness": ["M"], + "cookbook": ["M", "S"], + "nitwit": ["M", "S"], + "pasted": [], + "Frigidaire's": [], + "legalese's": [], + "installation": ["M", "S"], + "mutilator": ["S", "M"], + "Patna": ["M"], + "hurricane'ses": [], + "meretriciously": [], + "embassies's": [], + "football": ["M", "R", "Z", "G", "S"], + "polygraphing's": [], + "populating": [], + "bulldozinged": [], + "cochlea": ["S", "M"], + "fill": ["A", "I", "D", "G", "S"], + "squirrel'sed": [], + "rupiah": ["M"], + "palimpsest's": [], + "boozy": ["T", "R"], + "skill's": [], + "mastodon": ["S", "M"], + "skin": ["M", "S"], + "citadel'ses": [], + "timelinesser": [], + "pleurisy's": [], + "dramatics's": [], + "Parsons's": [], + "amphetamines's": [], + "poohing's": [], + "outwore": [], + "personable": [], + "Huxley's": [], + "Methuselah's": [], + "Wednesday": ["M", "S"], + "hatersing": [], + "dumper": [], + "holidaying": [], + "laxer": [], + "parochial": ["Y"], + "Edda": ["M"], + "cooker's": [], + "Grass": ["M"], + "postcode": ["S"], + "forgathers": [], + "Bohemians's": [], + "Jacobson": ["M"], + "lemming's": [], + "boomed": [], + "Diann's": [], + "bloodlessness": ["M"], + "tromping": [], + "simulated": [], + "remorse": ["M"], + "Bayesian": ["M"], + "annoyeds": [], + "buckwheat's": [], + "orbit's": [], + "SOSes": [], + "input": [], + "heartrendingly": [], + "drawstrings": [], + "pandas": [], + "markkaa": [], + "silent's": [], + "podiatrist": ["S", "M"], + "Desiree": ["M"], + "taro'ses": [], + "buttressesing": [], + "calisthenics's": [], + "Hinayana's": [], + "polka'sed": [], + "cleans": [], + "Babbage": ["M"], + "gecko": ["S", "M"], + "inspiration's": [], + "officiates": [], + "ital": [], + "milf'ses": [], + "thermostat'ses": [], + "Mercuries": [], + "Altaic's": [], + "listener's": [], + "predetermininged": [], + "overachiever": ["M"], + "denizens": [], + "Prudence's": [], + "ricer's": [], + "netiquettes": [], + "fornicateds": [], + "Reyna": ["M"], + "shoddy": ["P", "R", "M", "T"], + "cuddling": [], + "trundled": [], + "wormed": [], + "Karen": ["M"], + "jihadists's": [], + "coupled": [], + "homey'sness": [], + "Duracell": ["M"], + "peritonitis": ["M"], + "crinolines": [], + "bassoon": ["M", "S"], + "promenadinged": [], + "Enkidu's": [], + "photosynthesis": ["M"], + "eisteddfod": ["S"], + "inregrown": [], + "Karamazov's": [], + "exhumation'ses": [], + "dowels": [], + "zeppelins": [], + "transposes": [], + "beholder": ["M"], + "commutative": [], + "frank's": [], + "venerate": ["D", "S", "G", "N"], + "poodles's": [], + "bone'sers": [], + "ringside's": [], + "guideposts": [], + "harbinger's": [], + "beefburger's": [], + "esteems": [], + "detoxeds": [], + "larked": [], + "freeload": ["S", "D", "R", "Z", "G"], + "accompanies": [], + "springings": [], + "Gospel's": [], + "tatamis": [], + "subjugate": ["G", "N", "D", "S"], + "Charley's": [], + "Wise": ["M"], + "gins's": [], + "lathesers": [], + "batting's": [], + "Terr": ["M"], + "sapiens": [], + "control": ["C", "S"], + "retaliation's": [], + "moggy": [], + "revertings": [], + "heisteding": [], + "youngster's": [], + "Ugandans": [], + "editable": [], + "homonyms's": [], + "maddening": ["Y"], + "Jeffersonian's": [], + "curves's": [], + "carbonation's": [], + "nibblersing": [], + "oak": ["S", "M", "N"], + "censures's": [], + "sizzle's": [], + "Cheerios's": [], + "postnasal": [], + "beseecher's": [], + "ceasinged": [], + "Lycurgus's": [], + "camphor": ["M"], + "fordsable": [], + "variegateds": [], + "headland's": [], + "Lollobrigida's": [], + "iridescent": ["Y"], + "brontosaur'ses": [], + "daybreak": ["M"], + "Syracuse's": [], + "gasped": [], + "champs": [], + "Moliere's": [], + "sower": ["S", "M"], + "calibratesens": [], + "cuddlier": [], + "Albigensian's": [], + "laming": [], + "gimlet'sed": [], + "adjuration": ["M", "S"], + "Geminis": [], + "diversificationed": [], + "Suffolk's": [], + "pass's": [], + "extrapolation": ["M"], + "squashing": [], + "exaggeratedly": [], + "Letterman's": [], + "macrology": ["S"], + "assimilation": ["M"], + "auspicious": ["I", "Y"], + "unrolleds": [], + "woozily": [], + "delude": ["G", "D", "S"], + "razzmatazz": ["M"], + "helipad": ["S"], + "mintage's": [], + "obstetrician's": [], + "cane's": [], + "Gabonese's": [], + "leatherneck": ["M", "S"], + "florescent": ["I"], + "eccentricities's": [], + "posited": [], + "pectoral": ["M", "S"], + "dyersing": [], + "pollinateds": [], + "ashes": [], + "localities's": [], + "southbound": [], + "crocodiles": [], + "wartime": ["M"], + "concomitant'sly": [], + "listeners": [], + "install": [], + "rear'sed": [], + "razzing": [], + "intracranial": [], + "Gainsborough's": [], + "hyacinths": [], + "Rex": ["M"], + "prearrangement's": [], + "Williams": ["M"], + "silenceder": [], + "immensity's": [], + "contrarianism": [], + "responsiveness": ["U", "M"], + "pressesed": [], + "teds": [], + "rainiest": [], + "racehorse": ["M", "S"], + "austerities": [], + "defraudeder": [], + "touching": ["Y"], + "powwowing's": [], + "Unions": [], + "sheet's": [], + "accusing": ["Y"], + "idler": ["M"], + "stooges": [], + "zestier": [], + "jostles": [], + "phantasm": ["M", "S"], + "chirruping's": [], + "microbiology's": [], + "chapbook'ses": [], + "pharmacist's": [], + "manageder": [], + "unhealed": [], + "Amherst's": [], + "uppity": [], + "carpentry": ["M"], + "understudy": ["G", "D", "S", "M"], + "glowworm'ses": [], + "axle": ["M", "S"], + "weft": ["M", "S"], + "sluice's": [], + "tightliness": [], + "defeat": ["M", "D", "R", "Z", "G", "S"], + "foolishness": ["M"], + "layer": ["C", "S", "M"], + "surfs": [], + "landslidings": [], + "change": ["M", "Z", "G", "D", "R", "S"], + "sweatiest": [], + "cur": ["S", "M", "Y"], + "thread'sed": [], + "trimaran'ses": [], + "invisibly": [], + "indelibly": [], + "composesed": [], + "cogitator'ses": [], + "trophies's": [], + "mitigation": ["M"], + "twopence": ["S", "M"], + "doorman": ["M"], + "download": ["M", "D", "B", "S", "G"], + "speech": ["M", "S"], + "unpopular": [], + "tartlies": [], + "chompersing": [], + "starfish'ses": [], + "disturbances's": [], + "tarsals": [], + "sweat'sed": [], + "cabin": ["M", "S"], + "Delawarean": ["S", "M"], + "admirablers": [], + "Provence's": [], + "drugstore's": [], + "invents": [], + "bacteria": ["M"], + "previewersing": [], + "Cretan's": [], + "Crookes": ["M"], + "antithetic": [], + "redcap's": [], + "emetics": [], + "rancor": ["M"], + "hit": ["S", "M"], + "hydrolysis's": [], + "inspection's": [], + "individualism": ["M"], + "elevatingen": [], + "pleasanter": [], + "outfaces": [], + "mindfulliness": [], + "ascendeds": [], + "Eliseo": ["M"], + "piercinged": [], + "scavenger's": [], + "mallet'ses": [], + "sexiness's": [], + "lingereder": [], + "funnel": ["M", "D", "G", "S"], + "tellingly": [], + "tome's": [], + "comedown": ["M", "S"], + "Bernbach's": [], + "widoweder": [], + "defibrillation": [], + "mammon": ["M"], + "stabilized": [], + "valves": [], + "crazes's": [], + "Hepplewhite's": [], + "farinaceous": [], + "vaulters": [], + "recondition": [], + "swimmer": ["S", "M"], + "snowfield's": [], + "worktop": ["S"], + "balconies's": [], + "Bekesy": ["M"], + "ephedrine": ["M"], + "wardress": ["S"], + "abreast": [], + "Tony's": [], + "cicada'ses": [], + "grievance'ses": [], + "Gresham's": [], + "Kirkpatrick's": [], + "mussel's": [], + "Veblen's": [], + "counteroffensive's": [], + "inception's": [], + "preordains": [], + "tirelessness": ["M"], + "telltale's": [], + "boarder": ["M"], + "haddocks's": [], + "scan": ["M", "S"], + "pewit's": [], + "mulching's": [], + "expositors": [], + "Ustinov's": [], + "whilst": [], + "war": ["S", "M"], + "inrush's": [], + "nymphomania's": [], + "Beadle": ["M"], + "hogshead": ["S", "M"], + "Lanny": ["M"], + "Blaine": ["M"], + "BMW": ["M"], + "charities's": [], + "scorching": [], + "scorecard'ses": [], + "flake's": [], + "Pascal's": [], + "whirring": [], + "rhyme": ["M", "Z", "G", "D", "R", "S"], + "flamboyant": ["Y"], + "airbases's": [], + "microcosmic": [], + "liberal's": [], + "manatees": [], + "trumpet": ["Z", "G", "M", "D", "R", "S"], + "describablers": [], + "timing's": [], + "safer": [], + "macrocosms": [], + "simulcasteds": [], + "Toltec": ["M"], + "decorations": [], + "baying": [], + "splintering": [], + "woodworker's": [], + "indenturing": [], + "calved": [], + "incredulity": [], + "Bib": [], + "prodded": [], + "flyaway": [], + "aphelion's": [], + "shot": ["M", "S"], + "furtiveliness": [], + "bastions": [], + "instant": ["M", "R", "Y", "S"], + "trainspotting": [], + "dowdiers": [], + "confectioneries's": [], + "conventionality": ["U", "M"], + "precariousness": ["M"], + "quartets's": [], + "downstairs": ["M"], + "kilogram's": [], + "tarot'ses": [], + "fame's": [], + "doubled": [], + "godliness": ["U", "M"], + "pities's": [], + "supple": ["T", "L", "P", "R"], + "underdevelopment's": [], + "mitt'sen": [], + "opt": ["S", "G", "D"], + "entertained": [], + "nominated": [], + "headpins": [], + "sourings": [], + "telecommutersing": [], + "shalt": [], + "cramping's": [], + "plowshares": [], + "hotcakes's": [], + "decontamination": [], + "Laundromat": ["M"], + "peasants": [], + "debate'sers": [], + "telephonists": [], + "Nieves": ["M"], + "bucketed": [], + "infotainment": ["M"], + "portioning's": [], + "corroborations": [], + "spot'ses": [], + "supporters": [], + "predictsed": [], + "trenchant": ["Y"], + "craps": ["M"], + "federatesing": [], + "subjugation": ["M"], + "redound": ["S", "D", "G"], + "Zest's": [], + "sobriety": ["I", "M"], + "waders": ["M"], + "heartstrings's": [], + "chronograph": ["M"], + "unneeded": [], + "conceptualizesing": [], + "opossums": [], + "flier": ["M"], + "spells": [], + "microaggression": ["S", "M"], + "rapists's": [], + "hapless": ["Y", "P"], + "Bradbury": ["M"], + "pocketeding": [], + "perception": ["S", "M"], + "doll": ["M", "D", "G", "S"], + "proven": ["U"], + "perceptively": [], + "conciserness": [], + "greenery's": [], + "hatching's": [], + "fate's": [], + "hive's": [], + "wormy": ["T", "R"], + "glossiness's": [], + "unlearn": [], + "buncoed": [], + "pudding": ["S", "M"], + "principally": [], + "vestry's": [], + "vibe'ses": [], + "liquidator's": [], + "hearty": ["R", "S", "M", "P", "T"], + "interlinear": [], + "foreclosing": [], + "elocutionists's": [], + "Lois's": [], + "veggie": ["S", "M"], + "schooling's": [], + "editorialized": [], + "cooperators's": [], + "slovenliest": [], + "loosened": [], + "Argentinian": ["M", "S"], + "evildoer": ["S", "M"], + "dependence's": [], + "nape'ses": [], + "antimony's": [], + "geology's": [], + "Eltanin's": [], + "Angus's": [], + "anode'ses": [], + "anteroom'ses": [], + "virgin'ses": [], + "proverbially": [], + "felicitate": ["G", "N", "X", "D", "S"], + "chitchatted": [], + "daters": [], + "overgeneralizing": [], + "disproportionate": [], + "Alan": ["M"], + "incidental": ["M", "Y", "S"], + "draftiest": [], + "splashing's": [], + "Appleton's": [], + "gazelle'ses": [], + "exhorteding": [], + "workplaces": [], + "appropriateds": [], + "oligarchic": [], + "psychologist": ["M", "S"], + "persimmon's": [], + "picky": ["P", "T", "R"], + "perking": [], + "detector's": [], + "cobs": [], + "presences's": [], + "photoengraver's": [], + "leasehold's": [], + "desensitize": [], + "diddums": [], + "milleder": [], + "Jessica's": [], + "grampus's": [], + "outfacinged": [], + "Nosferatu": ["M"], + "illustrated": [], + "auger": ["M", "S"], + "jangleder": [], + "hectors": [], + "traded": [], + "spay": ["D", "G", "S"], + "anyone's": [], + "cyanide's": [], + "mooing": [], + "quiescent": ["Y"], + "prohibitionist's": [], + "exfoliateds": [], + "standingsers": [], + "bartenders": [], + "Lakisha": ["M"], + "breaths": [], + "scuffle'sing": [], + "shutterbug": ["M", "S"], + "holinged": [], + "neutralized": [], + "excerpt's": [], + "sail": ["G", "M", "D", "S", "J"], + "lam's": [], + "thrush'ses": [], + "backgrounderses": [], + "Fulton's": [], + "blameworthiness": ["M"], + "wackiness's": [], + "Helene": ["M"], + "Iraqi'ses": [], + "moderately": [], + "Estes": ["M"], + "trespassers": [], + "lionhearted": [], + "nosecone's": [], + "executives's": [], + "Deon's": [], + "containerize": ["D", "S", "G"], + "coworker": ["M", "S"], + "shamefacedly": [], + "conditionals's": [], + "sallowness": ["M"], + "excavation's": [], + "leading's": [], + "clevis'ses": [], + "battalion": ["S", "M"], + "lumberjack's": [], + "spank's": [], + "escapeds": [], + "sheathinged": [], + "technocrats": [], + "protects": [], + "Tessie's": [], + "exculpating": [], + "unfazed": [], + "McKinley": ["M"], + "newsletter'ses": [], + "remove": [], + "infinite": ["M", "V"], + "nauseating": ["Y"], + "predicative": ["Y"], + "classifyingen": [], + "Cybele's": [], + "sainthood": ["M"], + "therm": ["S", "M"], + "Vegas's": [], + "salaam's": [], + "earl's": [], + "Crucifixion": ["M", "S"], + "yuppie's": [], + "Zimbabwean's": [], + "hide'sers": [], + "appareled": [], + "lushesly": [], + "maraca": ["M", "S"], + "summarizing": [], + "overburdened": [], + "melancholia's": [], + "cordage's": [], + "sherry": ["S", "M"], + "bricklayers": [], + "poltergeist's": [], + "searching": ["Y"], + "officiated": [], + "highlights's": [], + "stowed": [], + "drudginged": [], + "leisure'sly": [], + "abrogatingen": [], + "huffs": [], + "replantsed": [], + "unctions's": [], + "tourniquets": [], + "rivaleds": [], + "glissando's": [], + "channels's": [], + "bonito'ses": [], + "elegantly": [], + "lewder": [], + "guzzlesers": [], + "anointment's": [], + "tart": ["P", "T", "G", "M", "D", "R", "Y", "S"], + "milderly": [], + "runaround's": [], + "manila's": [], + "tremulous": ["P", "Y"], + "nanobots": [], + "ironclads": [], + "pewits's": [], + "sinew's": [], + "parallaxes": [], + "ambidextrously": [], + "antivivisectionist'ses": [], + "development's": [], + "shorties's": [], + "sleepyhead": ["M", "S"], + "erratas": [], + "finalists": [], + "chandler": ["M", "S"], + "genuflectings": [], + "Muhammad's": [], + "techies": [], + "Semite": ["M", "S"], + "rumination's": [], + "vitality's": [], + "disability": [], + "breathier": [], + "beholders": [], + "donned": [], + "inexhaustible": [], + "stubborn": ["R", "Y", "P", "T"], + "Amelia's": [], + "variably": ["I"], + "presideds": [], + "overvaluesing": [], + "Jersey'ses": [], + "cripple": ["D", "R", "S", "M", "Z", "G"], + "multiyear": [], + "teleworker": ["S"], + "motorcycle": ["D", "S", "M", "G"], + "Southeast'ses": [], + "Claude's": [], + "yokes": [], + "parasol's": [], + "trifecta's": [], + "sideman": ["M"], + "rompersing": [], + "wiggles's": [], + "BPOE": [], + "practicingable": [], + "unconvincing": [], + "Aristides": ["M"], + "outstaying": [], + "prodeduct": [], + "farewell": ["S", "M"], + "sale's": [], + "sonny": ["S", "M"], + "unrelated": [], + "oddness": ["M"], + "L'Ouverture": ["M"], + "dicey": [], + "raviolis's": [], + "repleteness": ["M"], + "ligaturing": [], + "imperial'sly": [], + "aerodynamically": [], + "pate": ["M", "S"], + "fifthly": [], + "express's": [], + "Rockne": ["M"], + "Deanna's": [], + "ponceds": [], + "year's": [], + "rote": ["M"], + "overtaxeds": [], + "snorter": ["M"], + "hungereding": [], + "fatheads": [], + "warehouse": ["D", "S", "M", "G"], + "bezel": ["M", "S"], + "odyssey's": [], + "sportsmanship": ["M"], + "tonight's": [], + "Maurice": ["M"], + "lemongrass": [], + "adoreder": [], + "steepeden": [], + "Dorthy's": [], + "sifting": [], + "bailable": [], + "masque'ses": [], + "adverb": ["S", "M"], + "headiest": [], + "identities": [], + "Eniwetok's": [], + "pastille'ses": [], + "declination's": [], + "Olympics's": [], + "lugging": [], + "manipulator": ["M", "S"], + "calcite": ["M"], + "vampire's": [], + "swankest": [], + "northwestern": [], + "loped": [], + "Kahlua": ["M"], + "anklets": [], + "repeated": ["Y"], + "Selena's": [], + "imaginingsing": [], + "Haiphong": ["M"], + "perfecteder": [], + "cairn's": [], + "Pinkerton's": [], + "ostlers": [], + "casseroles": [], + "fostering": [], + "commence": ["A", "D", "S", "L", "G"], + "appends": [], + "brazeder": [], + "tighter": [], + "rustproofed": [], + "idealism's": [], + "Mesopotamia's": [], + "speculators": [], + "Niagara's": [], + "harshness's": [], + "defied": [], + "termini": [], + "wildfires": [], + "bras's": [], + "pasty": ["P", "T", "R", "S", "M"], + "prong'sed": [], + "orzo": ["M"], + "nosy": ["R", "P", "T"], + "carpeted": [], + "grieving": [], + "exurbanites's": [], + "spinets": [], + "throes": [], + "Brinkley's": [], + "twig's": [], + "soundliers": [], + "peaks": [], + "kickier": [], + "protuberances": [], + "Coward": ["M"], + "insisting": ["Y"], + "onerousness": ["M"], + "earwigs's": [], + "brushed": [], + "wanderlust's": [], + "pygmy's": [], + "froth's": [], + "deletions": [], + "nonresidual's": [], + "dickers": [], + "Sirius's": [], + "renominate": [], + "steamroller's": [], + "lubricious": ["Y"], + "internedment": [], + "obedient": ["E", "Y"], + "holidaymakers": [], + "failure's": [], + "budded": [], + "acoustical": ["Y"], + "outplacement": ["M"], + "addresses": [], + "septuagenarians": [], + "fodder's": [], + "furrow": ["M", "D", "S", "G"], + "italic's": [], + "pocketknife's": [], + "substrate's": [], + "overhandeds": [], + "upstream": [], + "mouseder": [], + "cinder's": [], + "filibuster'sed": [], + "abominable": [], + "Nicolas": ["M"], + "selectivity's": [], + "conceptions": [], + "baby": ["T", "G", "D", "R", "S", "M"], + "disreconnect": [], + "Avicenna's": [], + "matrimonial": [], + "flan'ses": [], + "Aristotle's": [], + "sophomoric": [], + "accumulationsing": [], + "satellite'sing": [], + "Pollux": ["M"], + "chanting": [], + "meatiness": ["M"], + "plights": [], + "hen's": [], + "redundancy's": [], + "battlements's": [], + "carpets": [], + "eulogy's": [], + "nicked": [], + "forgathereding": [], + "schoolmate's": [], + "cheviot's": [], + "letterpress's": [], + "derogatory": [], + "onion": ["M"], + "Izhevsk": ["M"], + "costumers": [], + "westerner's": [], + "u": ["S"], + "gigawatt's": [], + "suspicious": ["Y"], + "Hebraisms": [], + "unrighteousness": [], + "tourney's": [], + "insurance's": [], + "scatting": [], + "mind": ["A", "D", "R", "S", "Z", "G"], + "contraltos": [], + "colorization's": [], + "Craft": ["M"], + "statistic's": [], + "relishing's": [], + "upturn's": [], + "Xeroxes": [], + "parachutes": [], + "identificationed": [], + "mitigateds": [], + "biffinged": [], + "circularizeds": [], + "Apple": ["M"], + "encrustations": [], + "jeans": ["M"], + "separate": ["X", "M", "Y", "G", "N", "V", "D", "S", "P"], + "slouchersing": [], + "compassing": [], + "immersible": [], + "relate": ["D", "R", "S", "X", "Z", "G", "N", "V"], + "Debian's": [], + "glamouring's": [], + "bootee'ses": [], + "sovereignty": ["M"], + "barbed": [], + "sculleder": [], + "armlet": ["M", "S"], + "surprisings": [], + "bowstring": ["S", "M"], + "pejoration": ["M"], + "summonersing": [], + "uvulas's": [], + "tryout's": [], + "nuzzler's": [], + "moiety's": [], + "forefingers's": [], + "depletingen": [], + "unwieldiest": [], + "potboiler": ["S", "M"], + "assumption's": [], + "footfall": ["M", "S"], + "columned": [], + "jogger": ["S", "M"], + "assay's": [], + "repetition's": [], + "regurgitate": ["D", "S", "G", "N"], + "Jeffrey's": [], + "postureds": [], + "parroting's": [], + "silt's": [], + "absenteeism": ["M"], + "reemployment": [], + "bundle": ["D", "S", "M", "G"], + "groans": [], + "EPA": ["M"], + "carny's": [], + "persecutor": ["S", "M"], + "Aswan": ["M"], + "monoclonal": [], + "cheer'sed": [], + "misalliance's": [], + "leucotomy": ["S"], + "vacillation": ["M"], + "sponsor'sed": [], + "angelical": ["Y"], + "Lavoisier": ["M"], + "soot's": [], + "rasp": ["G", "M", "D", "S"], + "disintend": [], + "stingersing": [], + "waggleds": [], + "lineage": ["M", "S"], + "plannings": [], + "analgesia's": [], + "concomitantlies": [], + "Miles's": [], + "intoxicants's": [], + "rumoreding": [], + "headstalls": [], + "satellite": ["D", "S", "M", "G"], + "arrowheads": [], + "lamebrain": ["M", "D", "S"], + "bayonets's": [], + "unworn": [], + "Kieth's": [], + "mischievous": ["Y", "P"], + "annoyed": [], + "excretionsing": [], + "docent's": [], + "goof": ["M", "D", "G", "S"], + "Coriolis's": [], + "spooned": [], + "journalists's": [], + "multivitamin": ["M", "S"], + "hypnotic": ["S", "M"], + "speller": ["M"], + "Brown's": [], + "Angkor": ["M"], + "loaf'sed": [], + "multiplications": [], + "gangrenes's": [], + "ping's": [], + "Spartan's": [], + "glimmerings": [], + "frenzy": ["D", "S", "M"], + "turnstiles": [], + "shopaholics": [], + "Anasazi": ["M"], + "Maryland'ser": [], + "remorselessness's": [], + "downfall": ["S", "M", "N"], + "singularities's": [], + "byroad": ["S", "M"], + "resonatinged": [], + "originals": [], + "quenchers": [], + "extraterrestrials": [], + "pekoe": ["M"], + "usernames": [], + "misdirecteding": [], + "barbarianism's": [], + "floodlighteds": [], + "relinquish": ["L", "D", "S", "G"], + "gripper": ["M"], + "pheromones": [], + "nowadays's": [], + "stave's": [], + "eavesdrop": ["S"], + "appendectomy": ["S", "M"], + "bettors": [], + "out": ["S", "J", "G", "M", "D", "R"], + "Mendeleev's": [], + "pilfered": [], + "rods's": [], + "burlesquing": [], + "smoldered": [], + "blast'sed": [], + "encumbering": [], + "rejuvenation's": [], + "clearinghouses": [], + "skinned": [], + "simple": ["T", "R", "P"], + "puncheons": [], + "Gilda": ["M"], + "ethane's": [], + "nutmeat's": [], + "gene'ses": [], + "gathereder": [], + "tantamount": [], + "revolutionizesing": [], + "Ecstasy": [], + "jiff's": [], + "outlives": [], + "rhinos": [], + "continental": ["S", "M"], + "inamoratas": [], + "codgers's": [], + "blasphemes": [], + "Heidi": ["M"], + "shallowly": [], + "story's": [], + "revaluation": [], + "allergens": [], + "forewoman's": [], + "sprain": ["G", "S", "M", "D"], + "innumerable": [], + "methamphetamine's": [], + "shoplifting": ["M"], + "Hermitage": ["M"], + "chessboard": ["M", "S"], + "euthanasia": ["M"], + "gutsier": [], + "squabble": ["M", "Z", "G", "D", "R", "S"], + "odes": [], + "alp's": [], + "cumber": ["S", "D", "G"], + "accouter": ["S", "G", "D"], + "helmsman": ["M"], + "Romania's": [], + "rums": [], + "peripherally": [], + "satiety's": [], + "gimcrackery": ["M"], + "stupefy": ["D", "S", "G"], + "orchestral": [], + "miter": ["M", "D", "G"], + "yuppify": ["G", "D", "S"], + "reapers": [], + "welfare's": [], + "landlocked": [], + "Sendai's": [], + "indirection": [], + "Dobro's": [], + "czarinas's": [], + "solemnization": ["M"], + "folds": [], + "schedules": [], + "remunerations": [], + "outfielders": [], + "Cooperstown": ["M"], + "induce": ["D", "R", "S", "Z", "G", "L"], + "previewed": [], + "ceremonial": ["S", "M", "Y"], + "sinner'ses": [], + "dams": [], + "thighbone": ["M", "S"], + "prerogatives": [], + "Belorussian'ses": [], + "Heep": ["M"], + "tessellation": ["M"], + "barnyard": ["S", "M"], + "contraindication": ["M"], + "catcall'sed": [], + "glitch's": [], + "expansible": [], + "met": [], + "jiveds": [], + "carcinoma's": [], + "morels's": [], + "antirrhinums": [], + "repudiationed": [], + "Ecclesiastes's": [], + "augury": ["S", "M"], + "bearishness": ["M"], + "stationing": [], + "asymmetric": [], + "fete'sing": [], + "daredevils": [], + "pair's": [], + "hwy": [], + "admiral'ses": [], + "emergencies's": [], + "contextualized": [], + "deceiver'ses": [], + "thatcher": ["M"], + "thwack": ["Z", "G", "S", "M", "D", "R"], + "nonsocial": [], + "redeposit": [], + "lemonades's": [], + "tumbles's": [], + "imperfection": ["M", "S"], + "rhapsody's": [], + "pouring": [], + "tumultuous": ["Y"], + "swellhead": ["M", "D", "S"], + "frugal": ["Y"], + "redraft": [], + "silencersing": [], + "Aphrodite's": [], + "journey's": [], + "tunny's": [], + "tercentenaries's": [], + "sternest": [], + "chitchat": ["S", "M"], + "nemeses": [], + "nakedness": ["M"], + "abased": [], + "Murasaki's": [], + "mercilessly": [], + "stallions": [], + "vacillatingen": [], + "Mulligan": ["M"], + "Davao": ["M"], + "shipyard's": [], + "eaves": [], + "poolrooms": [], + "Rankine": ["M"], + "Ruby's": [], + "Darnell's": [], + "spire's": [], + "lazing": [], + "chauffeuring's": [], + "destructs": [], + "revitalization": [], + "small": ["S", "M", "R", "T", "P"], + "morass'ses": [], + "debriefing": [], + "masculinity's": [], + "sassing": [], + "relieveder": [], + "lanyard's": [], + "hallway's": [], + "seagulls": [], + "raga's": [], + "physic": ["S", "M"], + "rebuttal'ses": [], + "Antipodes": [], + "primordially": [], + "colophon's": [], + "authoresses": [], + "jawboning": [], + "stroboscopes": [], + "meerschaums": [], + "hallows": [], + "periwigs": [], + "fictionalizes": [], + "assizes": [], + "epidermises": [], + "endorphin's": [], + "penciling's": [], + "quints": [], + "sclerotic": [], + "breakouts": [], + "puritans": [], + "roue": ["M", "S"], + "coursed": [], + "flatirons's": [], + "hordes": [], + "copyrighted": [], + "treacheries": [], + "Lincoln": ["M", "S"], + "Semitics": [], + "nukeds": [], + "fisheder": [], + "modernness's": [], + "freethinkers's": [], + "wallies": [], + "lamented": [], + "brander": ["M"], + "Arequipa's": [], + "perfections's": [], + "seiner": ["M"], + "imp'ser": [], + "underutilized": [], + "flustereds": [], + "hopscotched": [], + "homework'ser": [], + "karate's": [], + "intersect": ["G", "D", "S"], + "pottering": [], + "downtime": ["M"], + "objections's": [], + "stick": ["S", "M", "R", "Z", "G"], + "eliminated": [], + "balboa": ["S", "M"], + "Bugzilla": ["M"], + "gnashed": [], + "upwardsly": [], + "ingesting": [], + "Augsburg's": [], + "glutting": [], + "wonks": [], + "daydreameder": [], + "querieds": [], + "tropic'ses": [], + "deserving": ["U"], + "branch's": [], + "thievery": ["M"], + "stringy": ["P", "T", "R"], + "Cruz": ["M"], + "tidy": ["D", "R", "S", "M", "T", "G", "P"], + "erectnesses": [], + "diskette's": [], + "physically": [], + "Linus": ["M"], + "idols": [], + "Missy's": [], + "recapitalization": [], + "masturbates": [], + "gnawing": [], + "coffee's": [], + "dissipatingen": [], + "discouragements's": [], + "Knievel": ["M"], + "droopiness's": [], + "preoccupy": ["D", "S", "G"], + "guru's": [], + "desperation's": [], + "Caribs": [], + "mothballs": [], + "puckered": [], + "inserting": [], + "Portland": ["M"], + "solitaries's": [], + "thumping's": [], + "scaremonger's": [], + "configure": ["B"], + "moneys's": [], + "informants's": [], + "skate": ["M", "Z", "G", "D", "R", "S"], + "phoebe": ["M", "S"], + "lonesomely": [], + "amethyst's": [], + "egotists's": [], + "mystique": ["M"], + "livelihood": ["S", "M"], + "baddies": [], + "furry": ["Z", "T", "R", "P"], + "heap": ["M", "D", "G", "S"], + "ignore": ["G", "D", "S"], + "penury's": [], + "Subaru": ["M"], + "acetate": ["M", "S"], + "Bierce's": [], + "Hettie's": [], + "Bolton's": [], + "padded": [], + "consequence": ["S", "M"], + "Scythia": ["M"], + "telecaster": ["M"], + "prosperously": [], + "waviness": ["M"], + "scraggly": ["R", "T"], + "anacondas's": [], + "hobbler's": [], + "depositing's": [], + "precaution": ["M", "S"], + "windbreak'ser": [], + "Bigfoot": ["M"], + "polysyllabic": [], + "misled": [], + "desire": ["B"], + "rustings": [], + "endothelial": [], + "jobsworth": [], + "crawleder": [], + "fortunetellers's": [], + "condetour": [], + "whitewater's": [], + "tints": [], + "era's": [], + "Triassic": ["M"], + "mules": [], + "season'sed": [], + "slayingses": [], + "ilk's": [], + "Iowan": ["M", "S"], + "pavement'ses": [], + "Goliath": ["M"], + "Ry": [], + "warfare's": [], + "crinkle": ["D", "S", "M", "G"], + "superannuation": ["M"], + "drank": [], + "impersonation's": [], + "retarderers": [], + "momentum's": [], + "brickeding": [], + "potsherds's": [], + "cutworms": [], + "randomization": ["M"], + "Draco": ["M"], + "catnap": ["M", "S"], + "offloadsed": [], + "telephones": [], + "doormat": ["S", "M"], + "seamount's": [], + "interpenetrateds": [], + "semisolid": [], + "constipation": ["M"], + "bendier": [], + "dogcarts's": [], + "disreuse": [], + "kilocycles": [], + "conjunction": [], + "loyalties": [], + "tradition'ses": [], + "radiographer's": [], + "kahuna": ["S"], + "engineerings": [], + "Odessa's": [], + "remaindering's": [], + "xxx": [], + "burlap's": [], + "agreeableness": ["E", "M"], + "Germanic's": [], + "pilfer": ["Z", "G", "D", "R", "S"], + "freakishness's": [], + "sucker's": [], + "Chin": ["M"], + "architrave": ["S", "M"], + "outfaceds": [], + "Gonzales's": [], + "liquidizes": [], + "salinity's": [], + "weaneding": [], + "degree's": [], + "meat'ses": [], + "coliseum's": [], + "silly'sness": [], + "gallant'sly": [], + "hyperbole's": [], + "Kuhn": ["M"], + "rejection": ["S", "M"], + "moment'ses": [], + "entranceds": [], + "Haman": ["M"], + "lumberersing": [], + "sewer": ["M", "S"], + "immeasurable": [], + "bellyfuls": [], + "smallpox's": [], + "Pilgrims's": [], + "geological": ["Y"], + "Kelvin": ["M"], + "whaling": ["M"], + "mob": ["C", "S"], + "liposuction": ["M"], + "chihuahua": ["S", "M"], + "chiding": ["Y"], + "eldercare's": [], + "tinseled": [], + "shirttail's": [], + "aspirin'ses": [], + "hokes": [], + "stalest": [], + "luridness": ["M"], + "misprinting": [], + "herbicide'ses": [], + "disreestablishment": [], + "sittings's": [], + "bigamists": [], + "Del": ["M"], + "observation's": [], + "corniness's": [], + "cordilleras": [], + "injected": [], + "pervade": ["D", "S", "G"], + "bubbly's": [], + "unnumbered": [], + "therms's": [], + "chromium": ["M"], + "strike": ["M", "Z", "G", "R", "S", "J"], + "Horowitz's": [], + "forestallsing": [], + "precipices": [], + "Templar's": [], + "Indians": [], + "beach": ["M", "D", "S", "G"], + "honers": [], + "valuer's": [], + "quesadillas": [], + "thyme": ["M"], + "mortification's": [], + "warlock'ses": [], + "Manila's": [], + "equivocationsed": [], + "Leroy's": [], + "Alaric's": [], + "firewater's": [], + "sing": ["B", "Z", "G", "M", "D", "R", "Y", "S"], + "shiniest": [], + "brad": ["S", "M"], + "sties": [], + "archaists": [], + "crewed": [], + "Libya": ["M"], + "sagacity's": [], + "finisher's": [], + "groomers": [], + "bannock": ["M", "S"], + "unrelentingly": [], + "nudist": ["S", "M"], + "triumphing's": [], + "sprat": ["S", "M"], + "ignorance": ["M"], + "Louisianan": ["M", "S"], + "schoolmaster's": [], + "Boswell": ["M"], + "implausibilities's": [], + "Henri's": [], + "ilium": ["M"], + "overjoys": [], + "boron": ["M"], + "cockcrow": ["S", "M"], + "dopier": [], + "baffled": [], + "Vasquez": ["M"], + "foibles's": [], + "defalcates": [], + "Waterloo": ["M", "S"], + "light": ["C", "A", "S", "T", "G", "D"], + "cardiology's": [], + "fustiness": ["M"], + "varmint's": [], + "wrestled": [], + "plummeted": [], + "sprawls's": [], + "representing": [], + "hoodie'ses": [], + "quest's": [], + "glanceds": [], + "glimpsing": [], + "mapper'ses": [], + "hurrahing": [], + "shadowboxing": [], + "slaveholder's": [], + "theosophy's": [], + "sulkiness's": [], + "cordillera'ses": [], + "beacon's": [], + "harelipped": [], + "brooders": [], + "byword": ["S", "M"], + "crafting": [], + "sponge'sers": [], + "Ruth": ["M"], + "toadstool's": [], + "womanized": [], + "tiny": ["R", "T", "P"], + "abashment": ["M"], + "voiceds": [], + "lordlier": [], + "piffle": ["M", "G"], + "pitting": [], + "renovation's": [], + "brows": [], + "housing'ses": [], + "Tecumseh's": [], + "blubber's": [], + "Eddie's": [], + "clearance's": [], + "tendereder": [], + "underestimate's": [], + "yoga's": [], + "infinities's": [], + "ignition'ses": [], + "Kory": ["M"], + "breathlessness's": [], + "carversing": [], + "interchangeability": [], + "shambleds": [], + "greengrocer": ["S", "M"], + "Malthusian": ["S", "M"], + "Juggernaut's": [], + "tailgater": ["M"], + "Waring's": [], + "bestrews": [], + "usurp": ["S", "D", "R", "Z", "G"], + "Labradors": [], + "nag": ["S", "M"], + "snuffboxes": [], + "polytheist": ["S", "M"], + "bros's": [], + "toil'sed": [], + "sternum's": [], + "Taiping": ["M"], + "adorneds": [], + "Segovia's": [], + "attacheds": [], + "postmodernists": [], + "regularity's": [], + "drolleries": [], + "testy": ["P", "R", "T"], + "Minneapolis's": [], + "foyer's": [], + "penmen": [], + "genially": [], + "mustacheds": [], + "dejection's": [], + "Maoris": [], + "spin's": [], + "frontage's": [], + "twp": [], + "deniers": [], + "delinquent'sly": [], + "twistsed": [], + "irreproachably": [], + "Pisa": ["M"], + "laypersons": [], + "wingspreads's": [], + "harpoons's": [], + "tossup": ["M", "S"], + "depleted": [], + "waterfowl": ["S", "M"], + "impossibly": [], + "interception's": [], + "fatherhood's": [], + "spruces": [], + "hairdresser": ["S", "M"], + "Croesus's": [], + "meltdowns's": [], + "reenact": [], + "Barnes": ["M"], + "outargueds": [], + "Ephraim": ["M"], + "carroty": [], + "fishwife's": [], + "lading": ["M"], + "Zollverein's": [], + "crankiest": [], + "bebop's": [], + "Eucharist": ["M", "S"], + "Edmond": ["M"], + "tannery": ["S", "M"], + "satisfactorily": ["U"], + "moppet'ses": [], + "gabled": [], + "haring": [], + "carpet'sed": [], + "underpayings": [], + "gingerbread": ["M"], + "gesticulated": [], + "coalition": ["M", "S"], + "ballooning": [], + "thermoplastic": ["S", "M"], + "writablings": [], + "requiremented": [], + "cellar's": [], + "didn't": [], + "slummier": [], + "nullification": ["M"], + "allaying": [], + "Berger's": [], + "glutton": ["M", "S"], + "Homer's": [], + "gruffnesser": [], + "cowbell": ["M", "S"], + "remolded": [], + "cockney": ["S", "M"], + "Lennon's": [], + "peps": [], + "pylon": ["S", "M"], + "look'sed": [], + "mongrel's": [], + "comparability": ["M"], + "diced": [], + "ethnocentric": [], + "Makarios": ["M"], + "guider's": [], + "Dristan": ["M"], + "airs": [], + "cooperative's": [], + "Afrikaans": ["M"], + "shod": ["U"], + "mistrustful": ["Y"], + "insomnia's": [], + "instinctive": ["Y"], + "luring": [], + "alpaca'ses": [], + "cassocks": [], + "begging": [], + "channelization": ["M"], + "boostersing": [], + "saint'sed": [], + "repression'ses": [], + "hilarity": ["M"], + "fart": ["M", "D", "G", "S"], + "gainsayer's": [], + "rapacity's": [], + "whens": [], + "normality": ["M"], + "sonnets": [], + "cold'ser": [], + "UPS's": [], + "coroner": ["M", "S"], + "assure": ["A", "G", "D", "S"], + "daycare": ["M"], + "locoweed": ["S", "M"], + "horseshoe's": [], + "information": ["E", "M"], + "meats": [], + "moment's": [], + "windups": [], + "Vatican": ["M"], + "Potts": ["M"], + "figments": [], + "roadie's": [], + "docent": ["S", "M"], + "tomato's": [], + "mazurka'ses": [], + "bustle's": [], + "jockey": ["S", "G", "M", "D"], + "chambermaid's": [], + "heart's": [], + "cored": [], + "personalizeds": [], + "apprentices": [], + "overflyings": [], + "craw's": [], + "fungus": ["M"], + "officialdom": ["M"], + "mutationsing": [], + "indeterminacy": ["M"], + "caddying": [], + "predesignates": [], + "pituitaries": [], + "ejected": [], + "Mauser": ["M"], + "sunspot's": [], + "Avalon's": [], + "prawneds": [], + "orchard": ["S", "M"], + "eluding": [], + "conferee": ["S", "M"], + "differeding": [], + "trews": [], + "nonmetal's": [], + "Klein's": [], + "oedipal": [], + "ebb's": [], + "limpid": ["Y", "P"], + "copulatingen": [], + "booties's": [], + "banknotes": [], + "Assembly": [], + "promontory's": [], + "Barth": ["M", "S"], + "tarpaulin'ses": [], + "palsying": [], + "kibbles's": [], + "smokiness": ["M"], + "Abidjan": ["M"], + "town's": [], + "wit's": [], + "patronizingly": [], + "arena's": [], + "towing's": [], + "hockeds": [], + "gens": [], + "subverts": [], + "inherently": [], + "paunchier": [], + "excursionist": ["M", "S"], + "eccentrically": [], + "Pocahontas": ["M"], + "showpiece": ["S", "M"], + "hedge'sers": [], + "tutu's": [], + "essences's": [], + "kibitzing": [], + "mucking": [], + "challenges's": [], + "slowest": [], + "sectors's": [], + "safe'sly": [], + "raven's": [], + "steepens": [], + "extermination": ["M"], + "yardarm's": [], + "clung": [], + "bookie": ["M", "S"], + "wadersing": [], + "nightfall": ["M"], + "samesness": [], + "scud'ses": [], + "uproar's": [], + "Jinnah's": [], + "sightseers": [], + "handy": ["U", "T", "R"], + "comported": [], + "memorialized": [], + "heft": ["M", "D", "G", "S"], + "besmirch": ["G", "D", "S"], + "narcolepsy": ["M"], + "saxophone's": [], + "decay": ["G", "D"], + "Virginian's": [], + "abstains": [], + "simulator'ses": [], + "muskets": [], + "coinages's": [], + "dissoluteness": ["M"], + "island": ["S", "Z", "M", "R"], + "Botswana": ["M"], + "reconciliations": [], + "treaties's": [], + "pretext'ses": [], + "Frankfurt'ser": [], + "Seder's": [], + "sprintersing": [], + "megalith's": [], + "forfeiture's": [], + "positron": ["M", "S"], + "gator's": [], + "casually": [], + "Satanist": ["M"], + "pulverized": [], + "cathedral": ["S", "M"], + "excommunicatingen": [], + "waningness": [], + "solves": [], + "broach's": [], + "Babylonians": [], + "painlessness": ["M"], + "nutcase": ["S"], + "crossbow's": [], + "chip's": [], + "Charlemagne": ["M"], + "pedigree'sed": [], + "Cassidy": ["M"], + "farm": ["M", "D", "R", "Z", "G", "S", "J"], + "acceleration": ["M"], + "falcon'ser": [], + "disconcertingly": [], + "yowl'sed": [], + "Leviticus's": [], + "ghettoizinged": [], + "sanctimony's": [], + "lately": [], + "safarising": [], + "fantasying": [], + "furbishesing": [], + "racegoers": [], + "zodiac": ["M", "S"], + "appending": [], + "engravings": [], + "affixing's": [], + "dismay'sed": [], + "gently": [], + "blastoff's": [], + "ruing": [], + "conductress'ses": [], + "corolla'ses": [], + "droughts's": [], + "deferment": [], + "dictatorship": ["S", "M"], + "shaveder": [], + "headlamp": ["M", "S"], + "predicting": [], + "delineateds": [], + "catchment'ses": [], + "outings": [], + "vireos's": [], + "buggiest": [], + "entente's": [], + "briefness's": [], + "grate'sers": [], + "murk'ses": [], + "washroom'ses": [], + "Krystal": ["M"], + "actuation's": [], + "liftoff's": [], + "amphitheaters's": [], + "skivvy": ["D", "S", "M", "G"], + "Jarrod's": [], + "arsed": [], + "mandibular": [], + "surge'sing": [], + "watchword'ses": [], + "animadversion'ses": [], + "sales": [], + "crummy": ["P", "T", "R"], + "feigns": [], + "lineup": ["M", "S"], + "tallyho": ["M", "D", "G", "S"], + "bushmasters": [], + "sprinkler": ["M"], + "guesting's": [], + "divinest": [], + "cheerleader's": [], + "royalties": ["M"], + "matures": [], + "cementer": ["M"], + "glyph": [], + "milieus's": [], + "hems's": [], + "drawbridge": ["M", "S"], + "Crees": [], + "branched": [], + "transverselies": [], + "drillmaster": ["S", "M"], + "haggling": [], + "powwowing": [], + "battlersing": [], + "excitement's": [], + "horsewomen": [], + "mimeographs": [], + "nybble": ["S"], + "finality": ["M"], + "raffia's": [], + "menisci": [], + "walkway's": [], + "spit'sed": [], + "Mueller": ["M"], + "neigh'sed": [], + "augment": ["D", "R", "Z", "G", "S"], + "ode's": [], + "Pabst": ["M"], + "Cygnus's": [], + "firmed": [], + "desks's": [], + "Aramco's": [], + "TVs": [], + "provider": ["M"], + "rivalry": ["S", "M"], + "coolies": [], + "Muhammadanism": ["S", "M"], + "earthquakes": [], + "muskeg's": [], + "casuals": [], + "constellation's": [], + "Ono": ["M"], + "nannies": [], + "Magoo's": [], + "bushwhacking": [], + "postcard": ["S", "M"], + "debating's": [], + "batched": [], + "burbled": [], + "shuffles": [], + "demonstrating": [], + "candlinged": [], + "sleekingness": [], + "counties": [], + "outcroppings": [], + "tediousness's": [], + "belles": [], + "Vedas": [], + "snuggle's": [], + "cataclysm'ses": [], + "Humphrey's": [], + "agriculturist": ["M", "S"], + "Sverdlovsk": [], + "Holley's": [], + "campier": [], + "headdress": ["M", "S"], + "portieres": [], + "futilely": [], + "tuneup": ["S", "M"], + "emitter": ["M", "S"], + "Cunningham's": [], + "abseiled": [], + "Fergus's": [], + "Creighton": ["M"], + "Rodriguez's": [], + "malevolently": [], + "barf's": [], + "minimizeds": [], + "integrals's": [], + "aver": [], + "nitrification": ["M"], + "plundersers": [], + "fustian's": [], + "dories's": [], + "benches": [], + "adjournments": [], + "pragmatic'ses": [], + "moth": ["M"], + "entrapping": [], + "Althea's": [], + "inheres": [], + "mouthfeel": [], + "lends": [], + "unripened": [], + "Heloise's": [], + "hymneds": [], + "coveys's": [], + "subversives": [], + "fin": ["S", "M", "R"], + "defeatism": ["M"], + "stomach'sed": [], + "notary": ["S", "M"], + "apposition": ["M"], + "bearing's": [], + "intentionally": [], + "deck'sed": [], + "forsythias's": [], + "OMB": ["M"], + "refereed": [], + "pierceds": [], + "harems": [], + "Ottawa's": [], + "vesper'ses": [], + "Farragut": ["M"], + "heating": ["M"], + "relents": [], + "cushioning": [], + "chimersing": [], + "noncombat": [], + "vicuna's": [], + "chastisers": [], + "despotism's": [], + "narrates": [], + "prophesier": ["M"], + "marathons": [], + "cytologist": ["S", "M"], + "subjective": ["Y"], + "frustrationens": [], + "extruded": [], + "Uzbekistan": ["M"], + "caudal": ["Y"], + "Jefferey": ["M"], + "hideousness": ["M"], + "cedar": ["M", "S"], + "flatulence's": [], + "uncomplaining": ["Y"], + "evasions": [], + "bleat": ["G", "M", "D", "S"], + "denationalize": [], + "outdistance": ["G", "D", "S"], + "wielder's": [], + "Capitol's": [], + "proselytize": ["D", "R", "S", "Z", "G"], + "hock": ["M", "D", "S", "G"], + "intimacy": ["S", "M"], + "ravages's": [], + "vectoring": [], + "swindling": [], + "hilariousness": ["M"], + "slick'sed": [], + "retire": [], + "temporariness's": [], + "shiny": ["T", "R", "P"], + "fruited": [], + "overgrows": [], + "glosseds": [], + "humorless": ["Y", "P"], + "shire": ["M", "S"], + "ministered": [], + "defalcated": [], + "symposium's": [], + "cops's": [], + "vindication's": [], + "staging's": [], + "Hiroshima's": [], + "phonetician's": [], + "adjectives": [], + "honor'sed": [], + "sabbaths": [], + "mescaline's": [], + "affixed": [], + "autographeding": [], + "subjunctive's": [], + "chihuahua's": [], + "dale's": [], + "floodgate'ses": [], + "plugging": ["U"], + "strumpet": ["M", "S"], + "emulsified": [], + "felt'sed": [], + "righteously": [], + "potboiler's": [], + "collectible's": [], + "function'sed": [], + "plastereder": [], + "carbs": [], + "freedoms's": [], + "scrimmaging": [], + "overhauled": [], + "household'ser": [], + "skinnier's": [], + "playoffs": [], + "sadness's": [], + "kebabs's": [], + "coder's": [], + "yelping": [], + "brochette": ["S", "M"], + "purposes": [], + "palpitate": ["X", "G", "N", "D", "S"], + "fishhook": ["S", "M"], + "transceivers": [], + "package": ["A", "G", "D", "S"], + "vapidity's": [], + "Kagoshima's": [], + "shadow's": [], + "swarming": [], + "atwitter": [], + "remeasure": [], + "affix'sed": [], + "pitheads": [], + "pollinator": ["S", "M"], + "statistical": ["Y"], + "doublets": [], + "showbiz's": [], + "countersignature": ["M", "S"], + "romantically": [], + "ayatollah's": [], + "lodger's": [], + "recontraction": [], + "individualizeds": [], + "regard": ["E", "S", "M", "D", "G"], + "henpecksed": [], + "Sirs's": [], + "Small's": [], + "valance's": [], + "squawking": [], + "of": [], + "rustlers": [], + "neighbors's": [], + "alkyd": ["M", "S"], + "blunder's": [], + "Antonius": ["M"], + "cringe": ["D", "S", "M", "G"], + "relationship'ses": [], + "deductibles": [], + "reigned": [], + "formulaic": [], + "openeder": [], + "congratulatingen": [], + "commended": [], + "casterser": [], + "Golconda": ["M"], + "intermediatelies": [], + "Gloucester": ["M"], + "trademark's": [], + "Mandela's": [], + "capsicums's": [], + "HP": ["M"], + "coral": ["S", "M"], + "gatepost": ["M", "S"], + "paving": ["M", "S"], + "Linus's": [], + "pompoms": [], + "huffier": [], + "recessional": ["S", "M"], + "cradle'sing": [], + "Manning's": [], + "shortchanging": [], + "laterally": [], + "nobody's": [], + "invoke": ["D", "S", "G"], + "Chadian's": [], + "pondersers": [], + "misplacemented": [], + "fretfulness's": [], + "chapel's": [], + "fleapit": ["S"], + "solving": [], + "Hydra": ["M"], + "flavorless": [], + "cautious": ["I", "Y"], + "Kaitlin": ["M"], + "hardening": [], + "accidentally": [], + "tobaccos": [], + "drollest": [], + "technically": [], + "castor'ses": [], + "emollients": [], + "analyzers's": [], + "Tweed's": [], + "milking": [], + "rapidest": [], + "compote's": [], + "tenuity's": [], + "Jacqueline's": [], + "asymptotically": [], + "unspoiled": [], + "Jeanne's": [], + "rendition'ses": [], + "fatback": ["M"], + "applique": ["D", "S", "M"], + "dingy": ["R", "P", "T"], + "compulsories's": [], + "snowdrop": ["S", "M"], + "turpentine": ["M"], + "completion": ["M"], + "break'sers": [], + "billow'sed": [], + "jarringly": [], + "spectacles": ["M"], + "prophesiers": [], + "gasp's": [], + "seasoning's": [], + "glide'sers": [], + "bullshitter": ["S", "M", "!"], + "twelfth's": [], + "footprint": ["S", "M"], + "traversal's": [], + "efficiently": [], + "fret's": [], + "orthodontic": ["S"], + "incunabulum": ["M"], + "Anglicanisms": [], + "commitment": ["M", "S"], + "hobbies's": [], + "appropriates": [], + "lambaste": ["G", "D", "S"], + "Antarctica": ["M"], + "temped": [], + "impolitenesses": [], + "particularizesing": [], + "captives's": [], + "Born's": [], + "superimposinged": [], + "Summer'ses": [], + "backbites": [], + "nap's": [], + "lathe's": [], + "Trisha's": [], + "ale's": [], + "retros": [], + "eaters": [], + "burble": ["D", "S", "M", "G"], + "bloody": ["P", "T", "G", "D", "R", "S"], + "Keri's": [], + "lament'sed": [], + "practicable": [], + "graces": [], + "ravage'sers": [], + "Analects's": [], + "vaporized": [], + "constitutionalism": [], + "guesser's": [], + "trebled": [], + "default": [], + "cyclically": [], + "memorabilia's": [], + "popularized": [], + "newsreaders": [], + "missed": ["U"], + "cruciforms": [], + "chats's": [], + "invigorateds": [], + "lieutenants": [], + "songstresses": [], + "anchorage": ["M", "S"], + "Pippin's": [], + "attic": ["S", "M"], + "Billy": ["M"], + "Dell": ["M"], + "dazed": ["Y"], + "acquaint": ["A", "G", "S", "D"], + "systematize": ["G", "D", "S"], + "oleo's": [], + "crumb's": [], + "ringlet's": [], + "chipped": [], + "bickerer": ["M"], + "codding": [], + "puffs": [], + "fluoridating": [], + "whitehead'ses": [], + "braceros": [], + "bubbleds": [], + "schoolbags": [], + "cockneys's": [], + "quarantineds": [], + "rankerly": [], + "visaing": [], + "pedestrianization": [], + "mode's": [], + "institutioned": [], + "prejudice's": [], + "resignation": ["S", "M"], + "apprehended": [], + "eveningsness": [], + "premeditating": [], + "antebellum": [], + "Hertzsprung": ["M"], + "brevity's": [], + "centimeters": [], + "villeinage": ["M"], + "Timothy's": [], + "unsteady": ["T", "R", "P"], + "gussets": [], + "pharisaic": [], + "Guizot's": [], + "speleology": ["M"], + "crybabies": [], + "reliefs": [], + "yardmaster's": [], + "realist": ["S", "M"], + "straits": [], + "serializing": [], + "filtrate": ["I", "G", "N", "D", "S"], + "gravest": [], + "winkle'sing": [], + "textiles": [], + "outdistancing": [], + "walkaways": [], + "ANZUS": ["M"], + "Nicosia": ["M"], + "searching's": [], + "roadside": ["S", "M"], + "exhibitors": [], + "interlinkeds": [], + "eucalyptus'ses": [], + "laminate": ["M", "G", "N", "D", "S"], + "Delano's": [], + "rhos": [], + "JFK": ["M"], + "barefooted": [], + "marcheder": [], + "travel": ["M", "D", "R", "S", "Z", "G", "J"], + "vulgarerly": [], + "sponsor's": [], + "corseted": [], + "nitrocellulose": ["M"], + "haze's": [], + "shills": [], + "holes": [], + "neaterly": [], + "connivance's": [], + "robbing": [], + "bandage's": [], + "eyewitnesses": [], + "payday's": [], + "localizes": [], + "extravagant": ["Y"], + "perkier": [], + "magnanimous": ["Y"], + "buttery's": [], + "soupings": [], + "NHL": ["M"], + "doddered": [], + "betokeneds": [], + "venerable": [], + "typewriter's": [], + "corps'ses": [], + "statures": [], + "siphon's": [], + "exciter's": [], + "Ci": ["M"], + "swats": [], + "impalpable": [], + "Maurine": ["M"], + "Dexedrine's": [], + "expletive's": [], + "Ramirez": ["M"], + "glottis'ses": [], + "deification": ["M"], + "dimpled": [], + "nymphs": [], + "your": ["S"], + "rode": [], + "forearming": [], + "corpuscle's": [], + "Uzi's": [], + "untruer": [], + "abortion's": [], + "odium's": [], + "elides": [], + "digitized": [], + "contraption's": [], + "Kowloon": ["M"], + "repairable": [], + "contemplative": ["S", "M", "Y"], + "twat": ["S"], + "express": ["G", "V", "M", "D", "S", "Y"], + "sandwich'sed": [], + "web's": [], + "EST's": [], + "extradited": [], + "wainscot's": [], + "quirkier": [], + "palsieds": [], + "viscountcy": ["S", "M"], + "swaggers's": [], + "Lerner": ["M"], + "molecule's": [], + "Schmidt's": [], + "pizzas": [], + "Bristol's": [], + "greased": [], + "toastmistress's": [], + "leech": ["M", "D", "S", "G"], + "grubbiest": [], + "McGowan": ["M"], + "destruct": ["G", "V", "M", "D", "S"], + "allured": [], + "halfheartedness": ["M"], + "womanizes": [], + "Masters": ["M"], + "backlogged": [], + "Latiner": [], + "referral's": [], + "graft": ["S", "M", "D", "R", "Z", "G"], + "hemorrhoid's": [], + "squabbles": [], + "spearheadeds": [], + "buff's": [], + "wildfire'ses": [], + "propagandists": [], + "vaults": [], + "pastiches": [], + "emblazonedment": [], + "confabulationsed": [], + "wiglet": ["S", "M"], + "contributioned": [], + "Memling": ["M"], + "trapdoor": ["M", "S"], + "disaffiliation": [], + "marched": [], + "Lister": ["M"], + "WWW": ["M"], + "mummifying": [], + "notarizes": [], + "swishers": [], + "ablaze": [], + "ethos": ["M"], + "negativing": [], + "mound": ["S", "G", "M", "D"], + "newsdealer": ["S", "M"], + "nullified": [], + "Malacca": ["M"], + "liquidates": [], + "hatch's": [], + "storyboard's": [], + "bacteriology": ["M"], + "L'Enfant": [], + "Zn": ["M"], + "beseemeds": [], + "mobile's": [], + "decrease": [], + "tackers": [], + "ambrosial": [], + "pondering": [], + "reciprocationed": [], + "kleptocracy": [], + "verities": [], + "connectives": [], + "gunfight's": [], + "dazes's": [], + "appaloosa": ["M", "S"], + "sorts": [], + "welted": [], + "garrisoned": [], + "wholefood": ["S"], + "dunghill'ses": [], + "fights": [], + "sorcerer": ["M", "S"], + "dehydrators": [], + "concentratingen": [], + "purgatories": [], + "outpost'ses": [], + "tired": ["P", "R", "Y", "T"], + "renovator'ses": [], + "bullshit's": [], + "Sega": ["M"], + "takeout's": [], + "starts": [], + "Libyans's": [], + "going": ["M"], + "Wei": ["M"], + "stripling": ["M", "S"], + "seduceder": [], + "pickerel": ["M", "S"], + "mishap's": [], + "Continent": ["M"], + "groom'sed": [], + "pinned": ["U"], + "maxillae": [], + "shellac'ses": [], + "shafteds": [], + "monitored": [], + "ingrates's": [], + "gators": [], + "Woodhull's": [], + "Melva's": [], + "microchip'ses": [], + "better'sed": [], + "bluffers": [], + "crystallize": ["A", "D", "S", "G"], + "sally's": [], + "stockiest": [], + "stretchier": [], + "clerestory": ["S", "M"], + "arranger": ["S", "M"], + "exceeded": [], + "bachelorhood": ["M"], + "dankest": [], + "cosines": [], + "fraternizer": ["M"], + "jackbooted": [], + "eminences": [], + "rusks": [], + "multi": [], + "roadblock": ["M", "D", "S", "G"], + "intercommunication's": [], + "preempting": [], + "scaling": [], + "flatboat's": [], + "wandersings": [], + "lowland": ["S", "Z", "M", "R"], + "Shannon's": [], + "potbelly's": [], + "deplored": [], + "pique's": [], + "vigilantes": [], + "crispinesser": [], + "containing": [], + "eggshell's": [], + "existentialist'ses": [], + "Jeffrey": ["M"], + "hesitation's": [], + "hairdos": [], + "usu": [], + "hotheadedness's": [], + "honorably": ["E"], + "tooteder": [], + "fustian": ["M"], + "chancery": ["S", "M"], + "unsightliness's": [], + "steepness's": [], + "bureaucratizes": [], + "dairy": ["G", "S", "M"], + "sleepersing": [], + "allocatingen": [], + "blistereds": [], + "abdominal": [], + "saddle's": [], + "grotto's": [], + "sophomore's": [], + "untidy": ["P", "T", "R"], + "nontoxic": [], + "stoned": [], + "Gonzalez": ["M"], + "Dresden": ["M"], + "airbus's": [], + "acupuncture's": [], + "Zubenelgenubi": ["M"], + "pimientos": [], + "Saskatchewan's": [], + "uncleanness": [], + "conclusiveliness": [], + "acquitting": [], + "euphony's": [], + "sternum'ses": [], + "Maltese": ["M"], + "NT": [], + "bicarb'ses": [], + "preambleds": [], + "shocking": ["Y"], + "crookedness": ["M"], + "elephants": [], + "damped": [], + "Pushkin's": [], + "immortals": [], + "Manhattans's": [], + "shambles's": [], + "bookmark'sed": [], + "Bolivian'ses": [], + "barber": ["G", "M", "D"], + "enrollsing": [], + "Kubrick": ["M"], + "telecommuter": ["M"], + "accumulator": ["M", "S"], + "emaciated": [], + "shitted": ["!"], + "averred": [], + "straggler's": [], + "roughneckeds": [], + "closers": [], + "subsections": [], + "Jeanette": ["M"], + "trig": ["M"], + "exigency's": [], + "buffers": [], + "professionalized": [], + "vaginae": [], + "Apollinaire's": [], + "liverymen": ["C"], + "redeploy": [], + "resurrect": ["G", "S", "D"], + "popups": [], + "troweds": [], + "larded": [], + "miscreant's": [], + "clumpeding": [], + "standardizing": [], + "criticism's": [], + "sensable": [], + "Hindustani's": [], + "mucks": [], + "sandlot's": [], + "blazes": [], + "Phillips's": [], + "vichyssoise": ["M"], + "platters's": [], + "query's": [], + "lands": [], + "enlisteding": [], + "justifiably": ["U"], + "bigheads": [], + "bipolar": [], + "lighthouse's": [], + "inductee's": [], + "egomaniac": ["M", "S"], + "ataxics": [], + "medievalist'ses": [], + "afterlife's": [], + "scholarship's": [], + "suffragans": [], + "foaleding": [], + "overdose's": [], + "microwaving": [], + "misting": [], + "dressiness": ["M"], + "braise": ["G", "D", "S"], + "six": ["M", "S", "H"], + "Barrera": ["M"], + "Y": ["M"], + "testament's": [], + "chamber": ["S", "M", "D"], + "leaversing": [], + "oriental's": [], + "Barnabas": ["M"], + "pluses": [], + "dovecots": [], + "inarguable": [], + "Morse": ["M"], + "Babylonian's": [], + "invigorating": ["Y"], + "Puzo's": [], + "huddle'sing": [], + "permute": ["D", "S", "G"], + "behooving": [], + "nob": ["S", "Y"], + "soviet's": [], + "pliant": ["Y"], + "stolon'ses": [], + "cagoules": [], + "demesne": ["M", "S"], + "unflattering": [], + "arbitrager": ["M"], + "lashings": [], + "V": ["M"], + "crabs": [], + "law": ["S", "M"], + "joustersing": [], + "passer": ["M"], + "cadges": [], + "casualties": [], + "myrmidon's": [], + "gee": ["D", "S"], + "Plautus's": [], + "draper's": [], + "terminating": [], + "Kalahari's": [], + "theorist": ["S", "M"], + "bendy": ["T", "R"], + "sublimationed": [], + "Olivetti's": [], + "creationist": ["S", "M"], + "dress": ["A", "U", "G", "S", "D", "M"], + "O'Donnell": ["M"], + "machismo's": [], + "geode's": [], + "skylarking": [], + "Prozacs": [], + "Pei": ["M"], + "downdraft's": [], + "bungles": [], + "gutsy": ["R", "T"], + "levelheadedness's": [], + "engorgement's": [], + "brief": ["C", "S", "D", "T", "G", "J"], + "scrooge": ["M", "S"], + "bystander's": [], + "Klondike'ses": [], + "gaff'sed": [], + "mellows": [], + "suppurating": [], + "crunched": [], + "caffs": [], + "gashing": [], + "jailer's": [], + "pimping's": [], + "adjunct": ["M", "S"], + "pulsation": ["M"], + "Opel": ["M"], + "vacillating": [], + "proboscis'ses": [], + "scrupulousness": ["U", "M"], + "amatory": [], + "bodacious": [], + "kaiser": ["M", "S"], + "flincheds": [], + "wherefore": ["M", "S"], + "kirsch'ses": [], + "waterspouts": [], + "disunion": ["M"], + "adeptnesses": [], + "charisma's": [], + "pubertal": [], + "juts": [], + "virtues": [], + "dumping": [], + "cobwebbed": [], + "Chloe": ["M"], + "grievance": ["M", "S"], + "unchangeable": [], + "driblet'ses": [], + "hijack's": [], + "operations": [], + "cobblersing": [], + "manicure's": [], + "smithies": [], + "enamor": ["S", "G", "D"], + "billowing": [], + "even's": [], + "compelling": ["Y"], + "hydration's": [], + "gobbledygook's": [], + "mugshot": ["M", "S"], + "slot's": [], + "makeshift": ["S", "M"], + "snaking": [], + "deviltries": [], + "gridiron": ["S", "M"], + "date": ["D", "R", "S", "M", "Z", "G", "V"], + "interviewersing": [], + "Cayugas": [], + "thwackeder": [], + "Orleans": ["M"], + "philosophized": [], + "cremate": ["G", "N", "D", "S", "X"], + "minuend's": [], + "livelinesser": [], + "slightingness": [], + "Justice's": [], + "refreshment": ["S", "M"], + "lady's": [], + "Patterson's": [], + "mincemeat": ["M"], + "Hardin's": [], + "readerships's": [], + "McCray's": [], + "Quaalude": ["M"], + "smut's": [], + "broached": [], + "botanists": [], + "exospheres": [], + "heavies's": [], + "screwiest": [], + "pleasantness": ["U", "M"], + "ostracizes": [], + "AZT's": [], + "Av's": [], + "conrefine": [], + "Dacrons's": [], + "marques": [], + "Bonita": ["M"], + "silversmith": ["M"], + "swashbuckling's": [], + "ascertainablement": [], + "dinnerware's": [], + "sparkle's": [], + "deportation's": [], + "snowbirds": [], + "greeneder": [], + "matadors's": [], + "imbibeder": [], + "posterior's": [], + "h": ["N", "R", "S", "X", "Z", "G", "V", "J"], + "repetitiousness": ["M"], + "acrophobia": ["M"], + "unalienable": [], + "conversely": [], + "admin": ["S"], + "progestins": [], + "lawlessness": ["M"], + "crystallizeds": [], + "fundraisers": [], + "substantiateds": [], + "inflection": ["M", "S"], + "mustang": ["M", "S"], + "fashioned": [], + "convert's": [], + "mistakable": ["U"], + "murals's": [], + "calcified": [], + "subversively": [], + "dogtrots": [], + "jailerers": [], + "Zuni": ["M"], + "revertsed": [], + "multiplexersing": [], + "Isabel": ["M"], + "raveneds": [], + "Peiping": ["M"], + "juleps's": [], + "uncouth": ["Y"], + "vagabond's": [], + "crupper'ses": [], + "godson": ["S", "M"], + "runnel": ["S", "M"], + "downersing": [], + "synth": [], + "spongy": ["R", "P", "T"], + "knaves": [], + "differently": [], + "puberty": ["M"], + "sells": [], + "Kansan": ["M", "S"], + "talents's": [], + "Permian's": [], + "stream'sed": [], + "Reed": ["M"], + "pathfinders's": [], + "muenster": ["M"], + "pigmentation": ["M"], + "musketry": ["M"], + "implicit": ["P", "Y"], + "sassafrases": [], + "ultraconservative's": [], + "knurl'sed": [], + "salaaming": [], + "Ramsey's": [], + "kinfolks's": [], + "striptease": ["M", "Z", "G", "D", "R", "S"], + "inside'sers": [], + "letter's": [], + "amputation": ["M"], + "AI": ["S", "M"], + "kedgeree": [], + "content's": [], + "excavator's": [], + "fabrics's": [], + "premixed": [], + "payouts": [], + "confidantes's": [], + "denounces": [], + "desalinating": [], + "batheder": [], + "larva": ["M"], + "scrimped": [], + "exemplified": [], + "bobwhite'ses": [], + "Oman": ["M"], + "cayuse": ["M", "S"], + "sunbursts": [], + "grandniece": ["M", "S"], + "ODs's": [], + "undisguised": [], + "Barack": ["M"], + "toughest": [], + "rue'sing": [], + "essayist": ["S", "M"], + "entrap": ["L", "S"], + "squid's": [], + "Scotchwomen's": [], + "clippings's": [], + "boll": ["S", "M"], + "jounces": [], + "intermarriage": ["S", "M"], + "cohabitation's": [], + "climbs": [], + "scanners's": [], + "machinist": ["M", "S"], + "Aussies": [], + "kite": ["M", "S"], + "sketching": [], + "fixer's": [], + "equivalencies": [], + "craveds": [], + "solitaire": ["M", "S"], + "Bernstein": ["M"], + "housebreakersing": [], + "equivocate": ["G", "N", "X", "D", "S"], + "behoove": ["D", "S", "G"], + "Sep": [], + "codpiece's": [], + "lengthy": ["P", "R", "T"], + "salutes's": [], + "circus's": [], + "whiffletree": ["M", "S"], + "activity": ["I", "M"], + "tooth": ["M", "D"], + "tailgate's": [], + "unformed": [], + "biochemicals's": [], + "crotch'ses": [], + "baronies's": [], + "dumpster's": [], + "riotousnessly": [], + "hammock's": [], + "flair": ["S", "M"], + "contraindicating": [], + "guerrilla's": [], + "terminations's": [], + "aborted": [], + "bullfighter": ["M"], + "Connery": ["M"], + "diffract": ["G", "S", "D"], + "explosion": ["S", "M"], + "counterweights": [], + "makeover'ses": [], + "creole": ["S", "M"], + "postulation's": [], + "piggybacksing": [], + "polices's": [], + "unquestioned": [], + "intelligentsia's": [], + "stacks's": [], + "kisser": ["M"], + "rightness": ["M"], + "Gerard": ["M"], + "Drambuie's": [], + "barterer's": [], + "heavyset": [], + "psychiatrist": ["S", "M"], + "matron'sly": [], + "tidy's": [], + "inefficiency": [], + "misplaced": [], + "Goodwin": ["M"], + "stepparent's": [], + "expropriationsed": [], + "leash": ["U", "D", "S", "G"], + "john'ses": [], + "Oriya's": [], + "isolation's": [], + "napper": ["M", "S"], + "uninhabited": [], + "scurf's": [], + "chaff'sed": [], + "restrained": ["U"], + "smirked": [], + "cordiality's": [], + "wannest": [], + "confabs's": [], + "teleprocessing": ["M"], + "euthanized": [], + "poreds": [], + "chromatic": [], + "doggies's": [], + "engraves": [], + "beneficence": ["M"], + "allegation'ses": [], + "collard": ["S", "M"], + "decimeter": ["M", "S"], + "bovver": [], + "caws's": [], + "barrings": [], + "mammal": ["M", "S"], + "tile's": [], + "stanchions's": [], + "Morris's": [], + "oceans": [], + "homers": [], + "straightforwardness's": [], + "crowed": [], + "lowlifes's": [], + "Brian": ["M"], + "crackleds": [], + "misrepresents": [], + "portent": ["S", "M"], + "bedsteads's": [], + "unsettle": [], + "narrow's": [], + "IBM": ["M"], + "salines": [], + "leapfrogging": [], + "calluseds": [], + "hesitancy": ["M"], + "discretion's": [], + "Browne's": [], + "Daedalus": ["M"], + "preconditions": [], + "Barbour's": [], + "Pelee's": [], + "tyrants's": [], + "scribbling": [], + "rick'sed": [], + "liturgical": ["Y"], + "locoweeds": [], + "Sonja": ["M"], + "guaranties": [], + "sanction": ["G", "S", "M", "D"], + "Greenland": ["M"], + "drainpipe's": [], + "animadverted": [], + "centrifuges": [], + "metaphysical": ["Y"], + "alderman's": [], + "etude": ["S", "M"], + "anniversary's": [], + "limit's": [], + "eyefuls's": [], + "kayaked": [], + "police": ["D", "S", "M", "G"], + "screams's": [], + "manikin": ["S", "M"], + "sphinx": ["M", "S"], + "rowdily": [], + "constrictor": ["S", "M"], + "rout'ser": [], + "blasphemously": [], + "antlereds": [], + "djellaba's": [], + "munged": [], + "repatriatingen": [], + "equivalent": ["M", "Y", "S"], + "dragsters": [], + "nevus": ["M"], + "education's": [], + "zirconium's": [], + "ecumenism": ["M"], + "homogenizes": [], + "siphon'sed": [], + "voila": [], + "Iguassu": ["M"], + "unscrupulous": [], + "nachos's": [], + "artifices": [], + "pol'sed": [], + "snag": ["M", "S"], + "Severus's": [], + "shoetree'ses": [], + "candlestick": ["M", "S"], + "resume's": [], + "Serpens": ["M"], + "blasting": [], + "dicker": ["D", "G"], + "packageds": [], + "serendipity's": [], + "deliberative": [], + "germinal": ["M"], + "legionary's": [], + "extremities's": [], + "trouble'sing": [], + "Pharisee'ses": [], + "doorknob's": [], + "ophthalmic": [], + "fatherland": ["M", "S"], + "belfry": ["S", "M"], + "modulating": [], + "urinalyses": [], + "cubbyhole": ["M", "S"], + "lower": ["G", "D"], + "redevelopment": [], + "godhead's": [], + "Keith's": [], + "agility": ["M"], + "pluralizeds": [], + "Spears's": [], + "rawboned": [], + "featured": [], + "contraflow": ["S"], + "impressionist's": [], + "Nevsky's": [], + "prevailings": [], + "packinghouses": [], + "pugnacity": ["M"], + "switchblade's": [], + "nutmegs's": [], + "saith": [], + "America": ["S", "M"], + "faction": ["S", "M"], + "Rae": ["M"], + "Nicodemus": ["M"], + "ruffianlies": [], + "qualmish": [], + "finale'ses": [], + "herons's": [], + "mangiest": [], + "addressee": ["S", "M"], + "threaderers": [], + "bright": ["S", "P", "N", "R", "Y", "X", "T"], + "timbres": [], + "spear's": [], + "conformance": ["M"], + "ladings": [], + "hoodwinks": [], + "throwaways's": [], + "orchestrating": [], + "serenade's": [], + "leafstalk's": [], + "sturdiness": ["M"], + "clamorous": [], + "consequential": ["I", "Y"], + "lime'sing": [], + "tinged": [], + "simpered": [], + "excellency": ["S", "M"], + "keynotinged": [], + "bellow's": [], + "players": [], + "Felice's": [], + "Cayugas's": [], + "exquisiteliness": [], + "babying": [], + "nibblinged": [], + "amphora's": [], + "Etta": ["M"], + "Gullah's": [], + "swept": [], + "mutates": [], + "absolveds": [], + "nooky": [], + "monastic's": [], + "low": ["S", "Z", "T", "G", "M", "D", "R", "Y", "P"], + "comped": [], + "crucified": [], + "plagiarism": ["S", "M"], + "histologist's": [], + "trustworthiness's": [], + "housewarmings": [], + "patronizers": [], + "persecutionsed": [], + "understate": ["D", "S", "L", "G"], + "exhuming": [], + "sloped": [], + "bracero's": [], + "nylons's": [], + "mordantly": [], + "moms": [], + "tango'sed": [], + "pilferage": ["M"], + "tidbits's": [], + "auricular": [], + "notelet": ["S"], + "chancellorship's": [], + "disputation's": [], + "blazing": [], + "spendthrifts": [], + "edgewise": [], + "hastes's": [], + "catatonics's": [], + "bubble'sing": [], + "griddle's": [], + "opaquer": [], + "Barents": ["M"], + "Valium": ["M", "S"], + "Daryl's": [], + "schoolmate": ["S", "M"], + "regulate": ["C", "D", "S", "G", "N", "V"], + "moansers": [], + "afflicted": [], + "sizing": ["M"], + "superannuation's": [], + "formal'sly": [], + "photon": ["M", "S"], + "fireflies's": [], + "electroencephalography": ["M"], + "offendersing": [], + "attitudinizeds": [], + "forecourt": ["S", "M"], + "trespasses": [], + "priests": [], + "upheld": [], + "bragging": [], + "opaqued": [], + "herring's": [], + "scrabbler": ["M"], + "bellied": [], + "Menzies": ["M"], + "flaunt'sed": [], + "numbness": ["M"], + "gentlers": [], + "ornamentsing": [], + "leapsers": [], + "threatening": ["Y"], + "judgeship": ["M"], + "waits": [], + "sloshed": [], + "Al's": [], + "fleabag's": [], + "empiricists's": [], + "catechisms": [], + "generosities's": [], + "priestesses": [], + "disco's": [], + "infinitesimal's": [], + "mainmast's": [], + "lodger": ["M"], + "outstrips": [], + "Patrick's": [], + "Bowery": ["M"], + "globed": [], + "spilling": [], + "mart": ["M", "N", "S", "X"], + "monarchies": [], + "objectivity's": [], + "delved": [], + "viewersing": [], + "languishesing": [], + "postmarks's": [], + "Fabian": ["M", "S"], + "spouted": [], + "adage": ["M", "S"], + "gyration": ["M"], + "anodizing": [], + "snipersing": [], + "precariousnessly": [], + "quadruplicate": ["M", "G", "N", "D", "S"], + "transaction's": [], + "cardsharps": [], + "aye": ["S", "M"], + "Winchester'ses": [], + "pressers": [], + "skivvy's": [], + "sniff'sed": [], + "orderlies's": [], + "Galapagos's": [], + "Paraguayans": [], + "thousandth": ["M"], + "paintbrush": ["M", "S"], + "rig": ["S", "M"], + "intuitive": ["P", "Y"], + "vaulting's": [], + "Armonk's": [], + "tautness": ["M"], + "joy": ["S", "G", "M", "D"], + "granterers": [], + "bluster's": [], + "Astana's": [], + "cascara's": [], + "broadest": [], + "Doyle's": [], + "cynosure": ["M", "S"], + "policewoman's": [], + "dewlap": ["S", "M"], + "profiteered": [], + "Bantu": ["M", "S"], + "midwiferies's": [], + "burleds": [], + "Wall's": [], + "egocentrics": [], + "gob": ["S", "M"], + "divorced": [], + "premolar's": [], + "briefs": [], + "brigantine's": [], + "cabbing": [], + "loamier": [], + "cabals": [], + "overcookings": [], + "irregularity": ["S", "M"], + "roadworks's": [], + "overlay's": [], + "kindnesses": [], + "compounded": ["U"], + "dietitian'ses": [], + "luncheon": ["S", "M"], + "lecturer": ["M"], + "grizzlier": [], + "Acosta's": [], + "naturist": ["S"], + "windrows": [], + "Byron's": [], + "superciliousnessly": [], + "beanies": [], + "golfed": [], + "truck": ["S", "Z", "G", "M", "D", "R"], + "revivalism": ["M"], + "Spaniard's": [], + "pulsation's": [], + "fadings": [], + "Francoise's": [], + "anapestics": [], + "desertion's": [], + "serenest": [], + "localizesing": [], + "ambusheds": [], + "ultramarine's": [], + "breathalyzes": [], + "clubhouses's": [], + "moan'sed": [], + "delugeds": [], + "overstatement": ["M", "S"], + "Murine": ["M"], + "honest": ["E", "Y", "T"], + "premonition'ses": [], + "absolutest": [], + "inconsequential": [], + "edge's": [], + "sandmen": [], + "rusk": ["M", "S"], + "appaloosa'ses": [], + "catcall's": [], + "dignitary": ["S", "M"], + "weltered": [], + "mare'ses": [], + "mixed": ["U"], + "perusing": [], + "sexagenarian": ["S", "M"], + "latticed": [], + "Arabs": [], + "plagued": [], + "longboat": ["M", "S"], + "presentments": [], + "Sanka": ["M"], + "midair": ["M"], + "Confederates": [], + "bedtime's": [], + "mantled": [], + "strutted": [], + "jibes": [], + "dimer": [], + "deuncontrolled": [], + "Himalaya": ["S", "M"], + "migraine's": [], + "Diderot's": [], + "thew's": [], + "quilts's": [], + "equanimity's": [], + "lamb": ["M", "D", "S", "G"], + "floppily": [], + "admonitions": [], + "antipodeans": [], + "pros": [], + "nabobs": [], + "immobilizinged": [], + "brigadier": ["M", "S"], + "mavericks": [], + "overbalances": [], + "cypress'ses": [], + "teeming": [], + "ventilateds": [], + "schizos's": [], + "turnover'ses": [], + "soliloquy": ["M"], + "edit's": [], + "fettuccine": ["M"], + "stub'ses": [], + "snivel'sed": [], + "cereal's": [], + "Johnathon": ["M"], + "gunships": [], + "upraisesing": [], + "scurryinged": [], + "mugwump's": [], + "antigen's": [], + "keystone": ["M", "S"], + "mercy's": [], + "zodiac'ses": [], + "Odell": ["M"], + "surfboard": ["M", "D", "S", "G"], + "superberly": [], + "slaveholders": [], + "renegades": [], + "nameable": ["U"], + "Nazi's": [], + "beguines": [], + "smokes's": [], + "leptons": [], + "prevaricated": [], + "cheerers": [], + "sades": [], + "teaspoons's": [], + "usage": ["S", "M"], + "during": [], + "discomfit": ["D", "G"], + "backstopping": [], + "friendliness's": [], + "densities's": [], + "schnozzles's": [], + "optic'ses": [], + "emirate": ["M", "S"], + "judiciary's": [], + "salaries": [], + "durability": ["M"], + "avoiding": [], + "potting": [], + "view'sed": [], + "farting": [], + "hoaxed": [], + "wedgie's": [], + "pouncing": [], + "baa's": [], + "funfairs": [], + "enfranchise": ["E", "G", "D", "S", "L"], + "zippering": [], + "symbolically": [], + "spheres's": [], + "Derick": ["M"], + "binomial's": [], + "pillbox'ses": [], + "bumpiness": ["M"], + "whirled": [], + "peerage's": [], + "xylophonists": [], + "gleaner's": [], + "communionsed": [], + "chat": ["S", "M"], + "prestigious": [], + "Cinderellas": [], + "triumphal": [], + "jam's": [], + "physician's": [], + "chub's": [], + "roughening": [], + "azimuth's": [], + "lush's": [], + "cardiologist": ["M", "S"], + "glad'sly": [], + "avalanches's": [], + "featureless": [], + "pandemonium's": [], + "homelike": [], + "misnomer's": [], + "sarcastically": [], + "polemics": ["M"], + "misinterpretsing": [], + "interposing": [], + "windbag": ["S", "M"], + "Caracalla's": [], + "roadrunner": ["S", "M"], + "various": ["Y"], + "DeGeneres's": [], + "cabstands": [], + "maestro": ["S", "M"], + "Coriolanus": ["M"], + "vestals": [], + "revelersing": [], + "fakes": [], + "nature's": [], + "entangleds": [], + "zipper'sed": [], + "workroom'ses": [], + "creationism": ["S", "M"], + "ossificationing": [], + "readieder": [], + "towrope's": [], + "costumiers": [], + "impositions": [], + "gangrenous": [], + "railways's": [], + "steadfastly": [], + "tenderizersing": [], + "untarnished": [], + "Kalevala": ["M"], + "tournaments": [], + "fungal": [], + "asthmatically": [], + "stovepipes": [], + "sighing": [], + "hayseed'ses": [], + "DOS": ["M"], + "precipitous": ["Y"], + "Eurydice": ["M"], + "xxxiv": [], + "effervescently": [], + "acrobats": [], + "raper": ["M"], + "gobblersing": [], + "nations": [], + "interim's": [], + "elusive": ["Y", "P"], + "Cannes's": [], + "homeyness's": [], + "shortcake": ["M", "S"], + "condemnation": ["M", "S"], + "Zurich": ["M"], + "wood": ["M", "D", "N", "S", "G"], + "aroma'ses": [], + "Ouija": ["M", "S"], + "culminationsed": [], + "Sloan's": [], + "hedger's": [], + "evisceratesing": [], + "movement's": [], + "dropsical": [], + "meretriciousness's": [], + "beachhead": ["M", "S"], + "grumpiness's": [], + "Azerbaijani'ses": [], + "stocked": [], + "initialize": ["D", "S", "G"], + "overstock": ["G", "S", "D"], + "oddments": [], + "likelinesser": [], + "Frostbelt": ["M"], + "noisiness": ["M"], + "catcall": ["G", "S", "M", "D"], + "Bowell": ["M"], + "marshmallow": ["S", "M"], + "paleontology's": [], + "deferentially": [], + "tux's": [], + "responded": [], + "commissioner's": [], + "Godspeeds": [], + "neocons's": [], + "overseer's": [], + "diverged": [], + "rides": [], + "peelings": [], + "dizzieder": [], + "casehardenings": [], + "swift": ["P", "T", "S", "M", "R", "Y"], + "enlivenment's": [], + "pitapats": [], + "fetlocks": [], + "retraineding": [], + "hydrophones": [], + "purchase's": [], + "Pleistocene's": [], + "Clayton": ["M"], + "radiations": [], + "ballyhoos": [], + "forgivingness": [], + "baited": [], + "Chianti": ["M", "S"], + "pieceworkers": [], + "immortalizesing": [], + "cyanide": ["M"], + "franc's": [], + "nightwear's": [], + "Steinem": ["M"], + "carhops": [], + "terrariums's": [], + "antes": [], + "factorial": ["M", "S"], + "gummy": ["T", "R"], + "humidifies": [], + "Vesalius": ["M"], + "lintier": [], + "mythologizesing": [], + "consolidated": ["U"], + "careful": ["Y", "P"], + "struck": [], + "fiberboard": ["M"], + "fracks": [], + "repletesing": [], + "waggishness's": [], + "ran": ["A"], + "Vazquez's": [], + "untimely": ["T"], + "Hoosier'ses": [], + "aggrandizemented": [], + "assassinatingen": [], + "sufferings": [], + "saffron'ses": [], + "murk's": [], + "extortionately": [], + "skill": ["C", "S", "D"], + "resinous": [], + "naivete's": [], + "lecturing": [], + "emirates": [], + "diarrhea": ["M"], + "gravity's": [], + "encasesing": [], + "chorale's": [], + "randomizesing": [], + "MiG": ["M"], + "overhang": ["M", "S", "G"], + "snowbound": [], + "Singaporean's": [], + "redistributor": [], + "felteding": [], + "Vaseline's": [], + "reaping": [], + "Mont's": [], + "stitchery's": [], + "ibis": ["M", "S"], + "fornicate": ["G", "N", "D", "S"], + "stipulate": ["X", "D", "S", "G", "N"], + "Daley": ["M"], + "fieldworker": ["M"], + "frequenter": ["M"], + "overpaid": [], + "chord'ses": [], + "streamersing": [], + "fiascoes": [], + "foliage": ["M"], + "lodgersing": [], + "grandaunts": [], + "teak's": [], + "Hts": [], + "homeboy's": [], + "neck'sed": [], + "baking": [], + "smoldering": [], + "impurities": [], + "observance's": [], + "safeguard'sed": [], + "gibbeteds": [], + "resorption's": [], + "frumps": [], + "NyQuil": ["M"], + "Nashville": ["M"], + "Exchequer": [], + "prerequisite'ses": [], + "thunderbolts's": [], + "quibble'sers": [], + "Elul": ["M"], + "differentiatingen": [], + "overplay": ["G", "D", "S"], + "poise'sing": [], + "kudzus": [], + "ratios": [], + "eatery": ["S", "M"], + "indecisive": [], + "miscounted": [], + "fudges": [], + "electroplateds": [], + "misreportings": [], + "yammering's": [], + "unregenerate": [], + "Gloria's": [], + "Kanpur's": [], + "Maitreya's": [], + "angular": [], + "alarming's": [], + "isthmuses": [], + "funeral": ["M", "S"], + "rehanged": [], + "headliner": ["M"], + "evilsness": [], + "respect's": [], + "reality's": [], + "fraudulence": ["M"], + "opportunity's": [], + "carboy": ["M", "S"], + "rereads": [], + "coarse": ["R", "Y", "T", "P"], + "encapsulationsing": [], + "huffinesser": [], + "suicides's": [], + "lovechild's": [], + "rack's": [], + "Gutierrez": ["M"], + "appertaining": [], + "cockfight'sing": [], + "wrinklies's": [], + "streamers": [], + "typo'ses": [], + "Hormel": ["M"], + "lithest": [], + "homeopathy's": [], + "plagiarism's": [], + "Oceanus's": [], + "cheereder": [], + "busboy's": [], + "weft's": [], + "incidences": [], + "trickiness's": [], + "mealybug": ["S", "M"], + "godhead": ["M"], + "polyp's": [], + "desalinization": ["M"], + "breadcrumbs": [], + "winced": [], + "doddereding": [], + "oxcart": ["S", "M"], + "prunes": [], + "at": [], + "jasper": ["M"], + "encirclingment": [], + "Palestinians": [], + "sighing's": [], + "slogs": [], + "townsman's": [], + "assert": ["A", "G", "V", "D", "S"], + "captivators's": [], + "batterer's": [], + "polarizes": [], + "roomeder": [], + "kibbutzim": [], + "Eucharist'ses": [], + "whales's": [], + "congesting": [], + "hypothermia's": [], + "dogie's": [], + "goalie's": [], + "defterly": [], + "huzzah's": [], + "chitin's": [], + "attenuating": [], + "Jungfrau": ["M"], + "Hay's": [], + "chieftainships's": [], + "Brazos": ["M"], + "laryngitis's": [], + "earmarks": [], + "nutter": ["S"], + "inertial": [], + "snowboards": [], + "profitable": ["U"], + "excoriations": [], + "PM'sed": [], + "modernization's": [], + "glumliness": [], + "fugal": [], + "Nirvana": ["M"], + "mutinying": [], + "superintendents": [], + "Milo's": [], + "morphemes": [], + "plausible": [], + "Popocatepetl": ["M"], + "Lu": ["M"], + "functionings": [], + "Melisande": ["M"], + "reefing's": [], + "McLaughlin's": [], + "lulus": [], + "studlier": [], + "affirms": [], + "reinsert": [], + "specificity": ["M"], + "disparagement's": [], + "tune'ses": [], + "asleep": [], + "microcircuit": ["S", "M"], + "border's": [], + "gaiterers": [], + "neuterings": [], + "advertisements": [], + "doggoner": [], + "fowl'sed": [], + "fix's": [], + "specs": ["M"], + "interjection": ["S", "M"], + "possessiveness": ["M"], + "Opel's": [], + "yowl's": [], + "Jagger": ["M"], + "Chartres": ["M"], + "corrugatingen": [], + "Vietnamese's": [], + "Kikuyu": ["M"], + "maximize": ["G", "D", "S"], + "boyishliness": [], + "advert's": [], + "Connolly's": [], + "swampy": ["R", "T"], + "carpetbagger's": [], + "slutty": ["R", "T"], + "whoop'sed": [], + "syringing": [], + "mindsers": [], + "cloakroom's": [], + "novelties's": [], + "phantoms": [], + "impeaching": [], + "qt": ["S"], + "innocentlies": [], + "manicure'sing": [], + "brushesing": [], + "Tantalus": ["M"], + "alarmists's": [], + "Lyon": ["S", "M"], + "sprains": [], + "adagio": ["M", "S"], + "frostings's": [], + "lushness's": [], + "refuges": [], + "ethnographically": [], + "gentility": ["M"], + "Damocles's": [], + "rehire": [], + "Slackware's": [], + "starstruck": [], + "lounging": [], + "informatively": [], + "oozed": [], + "wisecracking": [], + "pitchblende": ["M"], + "colonization": ["A", "C", "M"], + "pea's": [], + "baffle'sers": [], + "Belize's": [], + "kneels": [], + "satiationed": [], + "S's": [], + "sandblast": ["Z", "G", "M", "D", "R", "S"], + "tottering's": [], + "dumbfoundeding": [], + "clears": [], + "bight's": [], + "swatches": [], + "overshadow": ["D", "S", "G"], + "emceed": [], + "salting": [], + "climbingable": [], + "armchair": ["M", "S"], + "homesteaders": [], + "insulation": ["M"], + "southerly": ["S", "M"], + "brain'sed": [], + "cosmonauts's": [], + "Burgoyne's": [], + "resuscitate": ["G", "N", "D", "S"], + "orchestra'ses": [], + "straw": ["G", "S", "M", "D"], + "rampageds": [], + "highlight": ["S", "M", "D", "R", "Z", "G"], + "preoccupiesing": [], + "veterinarian": ["M", "S"], + "poppies": [], + "statehood": ["M"], + "ordinance": ["S", "M"], + "CFC": ["M"], + "palladium": ["M"], + "Palermo's": [], + "ragtag": ["S"], + "hazarded": [], + "computerization": ["M"], + "icebound": [], + "orisons": [], + "Eros's": [], + "ministration's": [], + "idealizations": [], + "ileum": ["M"], + "supposition's": [], + "Avery's": [], + "bendsers": [], + "casement": ["M", "S"], + "misreporting": [], + "pinhead's": [], + "seducersing": [], + "dyspeptic": ["M", "S"], + "payrolls": [], + "tunefulness": ["M"], + "concession": [], + "brown": ["S", "M", "D", "R", "P", "T", "G"], + "cite's": [], + "flyswatter": ["M", "S"], + "prancingly": [], + "deal's": [], + "abductees": [], + "ashlar": ["M", "S"], + "kind": ["U", "P", "R", "Y", "T"], + "erosion": ["M"], + "exorcists": [], + "playwright's": [], + "liaison'ses": [], + "Nicole's": [], + "fair'ser": [], + "recommencement": [], + "hamstringings": [], + "Finnegan's": [], + "kelvin": ["S", "M"], + "namedropping's": [], + "meddle": ["Z", "G", "D", "R", "S"], + "radish'ses": [], + "enablers": [], + "assiduous": ["P", "Y"], + "predicating": [], + "earthen": [], + "monist": ["M", "S"], + "Phanerozoic's": [], + "seaport's": [], + "gormandizing": [], + "doomsayer": ["M", "S"], + "progesterone's": [], + "discouragingly": [], + "consolation's": [], + "misappropriation": ["M"], + "Israels": [], + "Hollis's": [], + "neocons": [], + "Arabist'ses": [], + "toasts's": [], + "Glover's": [], + "Pekings's": [], + "drovers": [], + "undercarriage'ses": [], + "subj": [], + "endorse": ["L", "Z", "G", "D", "R", "S"], + "scantness's": [], + "biped'ses": [], + "hooter's": [], + "biochemical": ["S", "M", "Y"], + "beatitudes": [], + "educational": ["Y"], + "theocratic": [], + "nonprofit": ["S", "M", "B"], + "pleasures": [], + "arrowhead": ["M", "S"], + "carbides": [], + "uprising's": [], + "Roger's": [], + "dockside": [], + "handcuff'sed": [], + "woe": ["S", "M"], + "ironwoods": [], + "velocity's": [], + "involving": [], + "cyclometer": ["M", "S"], + "basin's": [], + "exorcisesing": [], + "Nijinsky's": [], + "dogcart": ["S", "M"], + "jodhpurs's": [], + "hardhats": [], + "Wald's": [], + "outperforming": [], + "roundabouts's": [], + "enlarge": ["L", "Z", "G", "D", "R", "S"], + "tailor": ["S", "G", "M", "D"], + "salvaged": [], + "fumblersing": [], + "numismatists": [], + "diameters": [], + "bowleder": [], + "wigwam": ["S", "M"], + "experiences": [], + "synergies's": [], + "freeloader's": [], + "novella": ["M", "S"], + "accordance": ["M"], + "dimwits": [], + "sunbelt's": [], + "applicant": ["S", "M"], + "circulation": ["S", "M"], + "Inuktitut": ["M"], + "Levant's": [], + "racketeer": ["S", "M", "D", "G"], + "pinewood": ["S"], + "xenophobe": ["M", "S"], + "clematises": [], + "Allende": ["M"], + "hansom's": [], + "extortioners": [], + "compulsively": [], + "Chiclets": ["M"], + "SW's": [], + "clunks's": [], + "deodorization": ["M"], + "wingspreads": [], + "humbugs's": [], + "comprehend": ["S", "D", "G"], + "weeklies": [], + "skydivesers": [], + "enviously": [], + "Russia's": [], + "spurge's": [], + "scarpering": [], + "mockeries": [], + "gaps": [], + "Liverpool": ["M"], + "Altai": ["M"], + "touchiness's": [], + "cyclone": ["M", "S"], + "forearm": ["G", "S", "M", "D"], + "healings": [], + "crofts": [], + "flash": ["Z", "T", "G", "M", "D", "R", "S"], + "patron's": [], + "canning": [], + "PO": [], + "Bengals": [], + "aerodynamics's": [], + "NC": [], + "traverse'sing": [], + "elegy's": [], + "EverReady": ["M"], + "retrospected": [], + "Maryann's": [], + "Tammie": ["M"], + "Debs's": [], + "aerograms": [], + "fooled": [], + "tanning": ["M"], + "veal": ["M"], + "night": ["S", "M", "Y"], + "presorting": [], + "biofeedback's": [], + "honeysuckles's": [], + "staircase": ["M", "S"], + "wived": [], + "erythrocyte's": [], + "specialties": [], + "Betty": ["M"], + "forerunners": [], + "clergymen": [], + "congregatesens": [], + "gum": ["S", "M"], + "adrenal": ["M", "S"], + "amalgamateds": [], + "whinier": [], + "Urquhart's": [], + "plunges": [], + "burst'sing": [], + "ewe": ["R", "S", "M", "Z"], + "misdoings": [], + "loamiest": [], + "alluringly": [], + "effervescence's": [], + "limelight's": [], + "blabberings": [], + "Cetus's": [], + "sell's": [], + "acne's": [], + "singlinged": [], + "Lance": ["M"], + "lactationed": [], + "cupidity": ["M"], + "York's": [], + "embellishment's": [], + "electroencephalographic": [], + "hydras's": [], + "modest": ["Y"], + "Mendoza's": [], + "weaklings's": [], + "Melvin's": [], + "fuckeder": [], + "paddies's": [], + "raiser": ["M"], + "viewers": [], + "amputatingen": [], + "cannibalism's": [], + "gangrening": [], + "umping": [], + "autocracies": [], + "sidetrack": ["S", "M", "D", "G"], + "Tristan's": [], + "grapheding": [], + "filer": ["C", "S", "M"], + "Michelin": ["M"], + "differences": [], + "outpointeding": [], + "restfulliness": [], + "Whipple": ["M"], + "sauce": ["M", "Z", "G", "D", "R", "S"], + "Castlereagh's": [], + "Rigoletto": ["M"], + "Burberry": ["M"], + "missteps": [], + "liquidizer's": [], + "kickersing": [], + "purges": [], + "coaxing": ["Y"], + "sudden": ["P", "Y"], + "McGuffey's": [], + "pardonerable": [], + "marathon": ["S", "M", "R", "Z"], + "quintessence's": [], + "young's": [], + "Allyson": ["M"], + "Jephthah": ["M"], + "slavish": ["P", "Y"], + "piking": [], + "perverted": [], + "peewees": [], + "undulant": [], + "seafloor's": [], + "fault": ["C", "S", "M", "D", "G"], + "ethnologist": ["S", "M"], + "taskeds": [], + "crappies": [], + "underestimations": [], + "flesheds": [], + "bureaucrat's": [], + "continuities": [], + "profuseness": ["M"], + "wresting's": [], + "Vulcan": ["M"], + "rational": ["S", "M", "Y"], + "teacher": ["M"], + "mercenary's": [], + "mastheads": [], + "Keokuk": ["M"], + "filterers": [], + "pulverizesing": [], + "thirties": [], + "outnumber": ["D", "S", "G"], + "guillotine'sing": [], + "objector'ses": [], + "lisper's": [], + "beseem": ["D", "S", "G"], + "trophies": [], + "tun": ["S", "Z", "G", "M", "D", "R"], + "embalms": [], + "destinies": [], + "UFOs's": [], + "plainer": [], + "goofiness": ["M"], + "dippier": [], + "endpoint": ["S", "M"], + "Rossetti's": [], + "deathtraps": [], + "T'ang": ["M"], + "astir": [], + "danceder": [], + "rand's": [], + "unavoidably": [], + "oceanographer": ["S", "M"], + "Luftwaffe": ["M"], + "digestibility's": [], + "cornet's": [], + "microsurgery's": [], + "potable": ["S", "M"], + "meticulousliness": [], + "saltshaker": ["S", "M"], + "exitings": [], + "Preminger's": [], + "observatory's": [], + "august": ["P", "T", "R", "Y"], + "unredid": [], + "redeemersable": [], + "airway'ses": [], + "exhibitors's": [], + "creature": ["S", "M"], + "customhouse's": [], + "affirmativelies": [], + "peepbo": [], + "mealybugs": [], + "water's": [], + "eating": [], + "gumbos": [], + "mewled": [], + "chancelleries's": [], + "publish": ["A", "G", "D", "S"], + "peptide": ["S"], + "Luisa's": [], + "scurrying": [], + "Pegasus'ses": [], + "overwhelmed": [], + "anther's": [], + "choosers": [], + "drier's": [], + "battledore": ["S", "M"], + "deposit'sed": [], + "mentally": [], + "version's": [], + "specialisms": [], + "spooked": [], + "daemonic": [], + "accosting": [], + "nice": ["P", "Y", "T", "R"], + "outsmartinged": [], + "Somoza's": [], + "solve": ["E", "A", "D", "S", "G"], + "helpsings": [], + "harm'sed": [], + "vibe's": [], + "soapsuds": ["M"], + "bombeder": [], + "Tran's": [], + "hollowness": ["M"], + "pals": [], + "vanquishing": [], + "excommunicationed": [], + "courtships": [], + "interactive": ["Y"], + "patronizersing": [], + "footing": ["M"], + "cosigns": [], + "Clemenceau's": [], + "archdeacons": [], + "cleric": ["M", "S"], + "coagulants": [], + "metes": [], + "assuageds": [], + "tawny's": [], + "bookstore's": [], + "rogues": [], + "hogs's": [], + "houseparent's": [], + "parentage's": [], + "expelled": [], + "Sheol": ["M"], + "undiscovered": [], + "sub's": [], + "windbreaksers": [], + "Johannes": ["M"], + "occupier's": [], + "hide": ["M", "Z", "G", "J", "D", "R", "S"], + "occluded": [], + "bedazzlement": ["M"], + "iceboats's": [], + "larboard": ["S", "M"], + "keystroke": ["S", "M"], + "bracersing": [], + "visibility's": [], + "internationals": [], + "transmittance": ["M"], + "conflatingen": [], + "superconductor": ["S", "M"], + "trollops's": [], + "twiner's": [], + "fondue's": [], + "manure": ["M", "G", "D", "S"], + "entanglementing": [], + "chaplets": [], + "noggin": ["M", "S"], + "seaside": ["M", "S"], + "balloonist'ses": [], + "Dirk": ["M"], + "Merlin's": [], + "perversion": ["M"], + "chastisements": [], + "sledge": ["D", "S", "M", "G"], + "restricteding": [], + "pits": [], + "simpers": [], + "axiomatic": [], + "concave": ["Y", "P"], + "NutraSweet": ["M"], + "Longstreet": ["M"], + "hog's": [], + "broadcast's": [], + "rendition's": [], + "graph's": [], + "manufacture's": [], + "youngster'ses": [], + "quavereds": [], + "batterer": ["M"], + "airships": [], + "Marvin": ["M"], + "pursuersing": [], + "biopic's": [], + "worries": [], + "dirge's": [], + "beechnut'ses": [], + "macaw's": [], + "Twain": ["M"], + "ratificationed": [], + "confessions's": [], + "feedbag": ["S", "M"], + "implausibilities": [], + "deodorize": ["D", "R", "S", "Z", "G"], + "Sprite": ["M"], + "risks": [], + "soporifically": [], + "divide'sers": [], + "telephoned": [], + "nutritionist": ["S", "M"], + "innovatingen": [], + "indicationsed": [], + "Sargent": ["M"], + "craze": ["D", "S", "M", "G"], + "factotum": ["S", "M"], + "ingratiating": ["Y"], + "6": ["n", "m"], + "hemispheric": [], + "paralegals": [], + "controversial": ["Y"], + "frighten": ["D", "G"], + "cerulean": ["M"], + "storms's": [], + "authorizing": [], + "writes": [], + "categorization's": [], + "dive": ["M", "Z", "T", "G", "D", "R", "S"], + "equivalence": ["M", "S"], + "basement": ["C", "M", "S"], + "stealthiness": ["M"], + "colonialist'ses": [], + "brainstorming": ["M"], + "Pericles": ["M"], + "cyclamen": ["M", "S"], + "framework": ["S", "M"], + "winnowed": [], + "regressed": [], + "outshinings": [], + "OK'sed": [], + "scuff": ["M", "D", "S", "G"], + "cutesy": ["T", "R"], + "rapport's": [], + "exterminateds": [], + "hankie's": [], + "regions's": [], + "absentsing": [], + "prevents": [], + "shortcut": ["M", "S"], + "nauseously": [], + "sanitarian": ["S", "M"], + "leech's": [], + "whileds": [], + "spadeds": [], + "tranquilizersing": [], + "costedly": [], + "moodily": [], + "ravisher's": [], + "finishers": [], + "reverence's": [], + "Conn": ["M", "R"], + "carbonize": ["G", "D", "S"], + "April'ses": [], + "seedpods": [], + "escritoire": ["M", "S"], + "Hale": ["M"], + "vela": [], + "stockade'sing": [], + "referential": [], + "centuries": [], + "taprooms's": [], + "trough": ["M"], + "electrified": [], + "diminuendos's": [], + "aright": [], + "nighthawk's": [], + "hoof": ["M", "D", "R", "S", "Z", "G"], + "pyre": ["M", "S"], + "reportorial": [], + "happily": ["U"], + "stakeholder's": [], + "testimonial'ses": [], + "kips": [], + "Studebaker": ["M"], + "demonic": [], + "splatter's": [], + "pouting's": [], + "burden": ["U", "S", "G", "D"], + "throwaways": [], + "tigress'ses": [], + "Pomona's": [], + "saturation's": [], + "Quetzalcoatl's": [], + "contravened": [], + "rancher": ["M"], + "Xerxes": ["M"], + "arraignments": [], + "dystonia": [], + "cups": [], + "Inez's": [], + "Thule": ["M"], + "importunate": ["Y"], + "quantities's": [], + "megatons": [], + "exec's": [], + "blindsided": [], + "garishness's": [], + "vibes": ["M"], + "regathered": [], + "teachable": ["U"], + "Brown": ["M", "G"], + "visioned": [], + "establisheding": [], + "zoology's": [], + "stander": ["M"], + "value's": [], + "womble": ["S"], + "foxed": [], + "organist's": [], + "looming": [], + "conferrers": [], + "companion": ["S", "B", "M"], + "Fez": ["M"], + "Wyeth": ["M"], + "mollificationing": [], + "lotuses": [], + "padlock'sed": [], + "shogun": ["M", "S"], + "marination's": [], + "rebuttal": ["M", "S"], + "nursing's": [], + "chloral's": [], + "butterers": [], + "xviii": [], + "exhumations": [], + "venerability's": [], + "primmer": [], + "prizefighter's": [], + "packed": [], + "snowblower's": [], + "havens": [], + "procedural": [], + "hurler's": [], + "placardeding": [], + "entrancement": ["M"], + "maxi": ["M", "S"], + "spirochete": ["S", "M"], + "Saskatoon": ["M"], + "Bentley": ["M"], + "Johnathon's": [], + "Capella's": [], + "campsites": [], + "neptunium's": [], + "Adonis's": [], + "misdoing's": [], + "fascia": ["S", "M"], + "jesting": ["Y"], + "diastole's": [], + "haystack": ["S", "M"], + "hurries's": [], + "haven's": [], + "iterateds": [], + "tapering": [], + "lyncher's": [], + "sneakiness's": [], + "Kristina's": [], + "Japaneses": [], + "undeviating": [], + "days's": [], + "turpitude": ["M"], + "indigent": ["S", "M", "Y"], + "aristocracies": [], + "junkersing": [], + "pickles": [], + "firsts's": [], + "Mallory": ["M"], + "sodomizes": [], + "preppy's": [], + "impregnateds": [], + "tigers's": [], + "pupate": ["D", "S", "G"], + "manifoldeds": [], + "perilous": ["Y"], + "knells": [], + "hoveringed": [], + "incarnadine": ["D", "S", "G"], + "attention's": [], + "startleds": [], + "teamster'ses": [], + "smartly": [], + "monolingual": ["M", "S"], + "shoplifteder": [], + "evacuatesing": [], + "predicaments": [], + "lifteder": [], + "spiderweb'ses": [], + "effs": [], + "Fatah": ["M"], + "afforestation's": [], + "card'sed": [], + "searchlight'ses": [], + "superintendent's": [], + "discretion": ["I", "M"], + "huckstering's": [], + "rehabs": [], + "fuddled": [], + "card's": [], + "housemothers's": [], + "prospersed": [], + "juleps": [], + "raceways": [], + "semiprofessionals": [], + "Capt": [], + "torment'sed": [], + "somersault's": [], + "teaching": ["M"], + "Bordeaux's": [], + "flays": [], + "parlayed": [], + "mauve's": [], + "extroverts": [], + "backache's": [], + "Thales": ["M"], + "considerate": ["I", "P", "Y", "N"], + "haunts": [], + "frolic": ["S", "M"], + "Exocet": ["M"], + "situateds": [], + "rebidding": [], + "freewheels": [], + "tendinitis's": [], + "Quentin": ["M"], + "whore'sing": [], + "uphill's": [], + "ANSI": ["S"], + "laddie": ["S", "M"], + "Bishkek": ["M"], + "weaponry's": [], + "doper": ["M"], + "tuneups": [], + "Euripides": ["M"], + "jack": ["M", "D", "G", "S"], + "Lao's": [], + "audibles": [], + "fifteens": [], + "lumps": [], + "fastener's": [], + "pendent'ses": [], + "overdecoratesing": [], + "masterful": ["Y"], + "stabber'ses": [], + "BlackBerry's": [], + "rearm": [], + "glimpse'sing": [], + "fecklessness": [], + "enjoyable": [], + "million": ["H", "S", "M"], + "thirtieths": [], + "obliquity": ["M"], + "Carlos's": [], + "pock's": [], + "perishable": ["M", "S"], + "sardine's": [], + "anemones": [], + "Debs": ["M"], + "sleepier": [], + "shoat": ["M", "S"], + "Juarez": ["M"], + "finch": ["M", "S"], + "deafness's": [], + "clicking": [], + "guardianship's": [], + "logjam": ["S", "M"], + "druthers's": [], + "chandeliers's": [], + "birettas": [], + "vitrifies": [], + "Pavlova": ["M"], + "ABMs": [], + "schnozzle's": [], + "humanly": [], + "weakened": [], + "deliriums's": [], + "possessives": [], + "burdens": [], + "awardee": ["S"], + "remonstrates": [], + "extracts": [], + "prickersing": [], + "quasheds": [], + "broads's": [], + "untitled": [], + "journeyed": [], + "indigent's": [], + "images": [], + "consequences's": [], + "sentencinged": [], + "scoffeder": [], + "lose": ["Z", "G", "R", "S", "J"], + "liberty's": [], + "counterculture's": [], + "agriculturist'ses": [], + "lawnmower": ["S", "M"], + "crepes": [], + "grounded": [], + "Adirondack's": [], + "sent": ["F", "A", "U"], + "amazement's": [], + "cloverleafs": [], + "ticks": [], + "goringed": [], + "roughens": [], + "fazes": [], + "snoozeds": [], + "Federal'ses": [], + "Stockhausen": ["M"], + "hypersensitiveness's": [], + "relies": [], + "conceivable": ["I"], + "matrons": [], + "forbiddingly": [], + "oversimplifies": [], + "surged": [], + "peregrine'ses": [], + "regenerate": ["V"], + "drew": ["A"], + "quagmire's": [], + "cheerleaders": [], + "condenser's": [], + "playacts": [], + "stridently": [], + "subcategory's": [], + "perfectas": [], + "prefiguringed": [], + "beehive's": [], + "hitcher'ses": [], + "gunning": [], + "Maserati": ["M"], + "bellyache'sing": [], + "burgomaster's": [], + "bickerers": [], + "fricassee": ["D", "S", "M"], + "industrious": ["Y", "P"], + "cultivator": ["M", "S"], + "hibiscuses": [], + "piques": [], + "backside": ["S", "M"], + "Jordanian's": [], + "Xanadu": ["M"], + "Gabriela's": [], + "antipathy": ["S", "M"], + "plonkersing": [], + "reacquaint": [], + "tribunals's": [], + "belch's": [], + "yellowy": [], + "chloroforming": [], + "mealiness's": [], + "stockholders": [], + "ovens": [], + "inquiry's": [], + "instrumenteds": [], + "triangulationed": [], + "copulative's": [], + "trammed": [], + "minifloppies": [], + "poisoningsers": [], + "pickle'sing": [], + "unmentionables's": [], + "MHz": [], + "rimmed": [], + "furrier": ["M"], + "Chesapeake's": [], + "freezing": [], + "reweighs": [], + "pecker": [], + "merchandisers": [], + "gavottes": [], + "departure": ["S", "M"], + "decisiveness's": [], + "Volta": ["M"], + "employers": [], + "reclining": [], + "outguessing": [], + "sodded": [], + "confederacy's": [], + "gallimaufry": ["S", "M"], + "absolvesing": [], + "breakfasts": [], + "rainmaking's": [], + "organizer's": [], + "drag": ["M", "S"], + "harvested": ["U"], + "misnaming": [], + "kumquat'ses": [], + "inform": ["Z"], + "holistically": [], + "thunderclaps's": [], + "confides": [], + "solutionsen": [], + "scarceness's": [], + "breadcrumb's": [], + "ravisheder": [], + "FWD": [], + "fledged": ["U"], + "Dollie": ["M"], + "obtainmenting": [], + "urethral": [], + "abolished": [], + "Nat's": [], + "Duane": ["M"], + "ballerina": ["S", "M"], + "Pyle": ["M"], + "hunker": ["D", "G"], + "aquatint": ["S"], + "cosmogonies's": [], + "disbelieving": ["Y"], + "knobbly": [], + "compliment'sed": [], + "intellectualized": [], + "wordbooks": [], + "washout'ses": [], + "composure": ["E", "M"], + "Suarez's": [], + "prepubescents's": [], + "internationalist's": [], + "carryover's": [], + "belayinged": [], + "Frenchwoman's": [], + "sonnet's": [], + "sexually": [], + "amputate": ["G", "N", "D", "S", "X"], + "freebases": [], + "watersheds": [], + "tautologies's": [], + "hermaphrodite": ["S", "M"], + "deposit": ["A", "G", "M", "D", "S"], + "Mildred": ["M"], + "voicemails's": [], + "venting": [], + "toys": [], + "orthopedics's": [], + "sociable's": [], + "vitriolically": [], + "Hellman": ["M"], + "Mahayanist": ["M"], + "inveigling": [], + "bumpers": [], + "Nicodemus's": [], + "pickax": ["G", "M", "D", "S"], + "embossed": [], + "eclogue's": [], + "tithe'sers": [], + "yummy": ["T", "R"], + "homograph": ["M"], + "phishinged": [], + "Jesse's": [], + "asking": [], + "spiraling's": [], + "silts": [], + "sabot'ses": [], + "trailblazers": [], + "lick": ["M", "D", "J", "S", "G"], + "rathskeller": ["S", "M"], + "Corvallis's": [], + "personage's": [], + "condoms's": [], + "extensiveliness": [], + "inspirit": [], + "breatheder": [], + "Rembrandt": ["M"], + "muggiest": [], + "overhang's": [], + "townie's": [], + "whalers": [], + "exploit": ["Z", "G", "B", "M", "D", "R", "S"], + "mansard'ses": [], + "localization": ["M"], + "Tory": ["S", "M"], + "nudge": ["G", "D", "S", "M"], + "adapter's": [], + "interlinked": [], + "sabbath": ["M"], + "badger'sed": [], + "lukewarmness": ["M"], + "blogger'ses": [], + "mascara's": [], + "multiplexer's": [], + "plasters": [], + "gawpings": [], + "sight'sed": [], + "hemp": ["M", "N"], + "guerrilla": ["S", "M"], + "inspecteds": [], + "backslapping": ["M"], + "dessertspoonful": ["S"], + "psychosis": ["M"], + "Corinth": ["M"], + "snoot": ["S", "M"], + "resumes's": [], + "rapiers": [], + "noblewoman": ["M"], + "throttling": [], + "tyrannosaurus's": [], + "paradigmatic": [], + "gossamer": ["M"], + "Bennett's": [], + "Keenan's": [], + "tanking's": [], + "bug's": [], + "fingertip": ["M", "S"], + "embalmersing": [], + "johnny": ["S", "M"], + "pleader's": [], + "womenfolks": ["M"], + "lavsing": [], + "interconnections's": [], + "AIs's": [], + "burroweder": [], + "derailleurs": [], + "power'sed": [], + "backgrounder": ["M"], + "grandmotherlies": [], + "foolhardiness's": [], + "estrangeds": [], + "worked": [], + "refortifyinged": [], + "whackersing": [], + "HQ's": [], + "engrams": [], + "peculation's": [], + "burkas": [], + "brigand": ["S", "M"], + "Rhineland's": [], + "firebombs": [], + "surprising": ["U", "Y"], + "furious": ["Y"], + "arrhythmical": [], + "hydrant'ses": [], + "Poseidon": ["M"], + "Beaumont's": [], + "bedragglinged": [], + "Wilton's": [], + "Barron's": [], + "examplinged": [], + "reacquiring": [], + "mirthfulness's": [], + "propagandist": ["M", "S"], + "ravage": ["D", "R", "S", "M", "Z", "G"], + "abjured": [], + "ventricles": [], + "analytically": [], + "worrywarts's": [], + "Moriarty's": [], + "anthropomorphism": ["M"], + "notion": ["M", "S"], + "Imhotep's": [], + "prettifies": [], + "messmate's": [], + "San's": [], + "unofficially": [], + "diabetic's": [], + "impudent": ["Y"], + "liquefied": [], + "thou'ses": [], + "pollinatingen": [], + "griming": [], + "operatives's": [], + "Veronica": ["M"], + "sandbagger": ["S", "M"], + "lacquer'sed": [], + "utilized": [], + "undies's": [], + "Joycean": ["M"], + "ensign's": [], + "Meg's": [], + "avoidance's": [], + "batik's": [], + "kosher": ["D", "S", "G"], + "kola": ["M", "S"], + "exhaust'sed": [], + "guzzlersing": [], + "facets's": [], + "trolleybus'ses": [], + "whatever": [], + "overdecorates": [], + "nurture'sers": [], + "predisposition's": [], + "Excedrin": ["M"], + "perceptional": [], + "anchorages": [], + "when": ["M", "S"], + "groaning's": [], + "why": ["M"], + "Celina": ["M"], + "uncombed": [], + "Soc": [], + "braying": [], + "hidden": [], + "Kristen's": [], + "subtexts": [], + "secularization's": [], + "Basie": ["M"], + "technique's": [], + "mixer's": [], + "biographical": ["Y"], + "resuming": [], + "footnotes": [], + "underachievinged": [], + "dikeds": [], + "rupee's": [], + "textbook": ["S", "M"], + "Camille's": [], + "washroom": ["M", "S"], + "meow": ["M", "D", "S", "G"], + "outboard'ses": [], + "Romansh's": [], + "crooned": [], + "sweet's": [], + "scantiers": [], + "cyclotron": ["M", "S"], + "mahout": ["M", "S"], + "broth'ser": [], + "probablings": [], + "publishable": [], + "rood": ["M", "S"], + "build'ser": [], + "initialsing": [], + "thinkablers": [], + "cappuccinos's": [], + "fantasies": [], + "taser's": [], + "commingles": [], + "rehangsed": [], + "would": ["S"], + "rakishliness": [], + "cab": ["S", "M", "R", "Z"], + "cabin's": [], + "segregated": ["U"], + "geneses": [], + "thralls": [], + "nucleated": [], + "impetuous": ["Y", "P"], + "uncompounded": [], + "warbles": [], + "Mallomars": ["M"], + "adapters": [], + "corseting": [], + "fellows": [], + "ratatouille's": [], + "interviewer's": [], + "bash": ["G", "M", "D", "S"], + "unflinchingly": [], + "sarcasm's": [], + "reverential": ["Y"], + "foldout": ["M", "S"], + "Lesa": ["M"], + "Tyre": ["M"], + "Efren's": [], + "reciprocity's": [], + "macadam": ["M"], + "balalaika's": [], + "vacate": ["D", "S", "G"], + "redlining": ["M"], + "elucidation": ["M"], + "intrudeder": [], + "pricklinged": [], + "evokeds": [], + "mutiny's": [], + "Laundromat's": [], + "birdersing": [], + "grid": ["M", "S"], + "lengthening": [], + "Darwinism's": [], + "catalogs's": [], + "dolloping's": [], + "municipally": [], + "sissier": [], + "sandbox's": [], + "echos": [], + "undemocratic": [], + "awarded": [], + "dolphin": ["M", "S"], + "ratchet": ["G", "M", "D", "S"], + "paireds": [], + "woodlice": [], + "admires": [], + "snuggle": ["M", "G", "D", "S"], + "redistrictinged": [], + "knot's": [], + "swapping": [], + "Juggernaut": ["M"], + "surrealists": [], + "twaddling": [], + "origami": ["M"], + "preachingment": [], + "windward's": [], + "potatoes": [], + "Melissa": ["M"], + "trackersing": [], + "flotation": ["S", "M"], + "Ernest": ["M"], + "soothsayer's": [], + "scratchy": ["P", "R", "T"], + "grapplinged": [], + "snoot's": [], + "clerkship's": [], + "flatlet": ["S"], + "handmaid'sen": [], + "carport's": [], + "Essene's": [], + "conjurer's": [], + "associateds": [], + "kart's": [], + "flyswatter's": [], + "injection's": [], + "waistcoats": [], + "Pyrex's": [], + "soundbars": [], + "industrialist's": [], + "OpenOffice": ["M"], + "garrulousness": ["M"], + "undergoing": [], + "charily": [], + "Wave": [], + "litterers": [], + "demesne'ses": [], + "backpacking": ["M"], + "alphabetic": [], + "moister": [], + "rubatos": [], + "occupy": ["A", "D", "S", "G"], + "enchanted": [], + "hoovers": [], + "underfur": ["M"], + "lightens": [], + "amelioration": ["M"], + "Kansan'ses": [], + "repentance": ["M"], + "waterbirds's": [], + "devotion's": [], + "snaffling": [], + "boorishly": [], + "nonrefundable": [], + "washablings": [], + "Klansman": ["M"], + "marquis's": [], + "stanza": ["S", "M"], + "Zamora's": [], + "cord's": [], + "queenedly": [], + "intermediary's": [], + "euphemistic": [], + "bairn'ses": [], + "biffing": [], + "turtles's": [], + "spare": ["D", "R", "S", "M", "Y", "T", "G", "P"], + "Trevino's": [], + "mishears": [], + "partiality": ["M"], + "lisp'sed": [], + "questionings": [], + "recrudescence": ["M"], + "Tarantino's": [], + "whimperings": [], + "mopped": [], + "Gresham": ["M"], + "wonders": [], + "maid's": [], + "bustings": [], + "preliminaries": [], + "dollhouses": [], + "prettiers": [], + "limplies": [], + "stripteaser": ["M"], + "workaholic's": [], + "cytoplasm's": [], + "recognizes": [], + "putteder": [], + "dualism's": [], + "verballies": [], + "earliness's": [], + "gourdes": [], + "ketches": [], + "upsets's": [], + "lugubrious": ["Y", "P"], + "scythe's": [], + "Hamlin": ["M"], + "Georgian'ses": [], + "wisdom": ["M"], + "religion": ["S", "M"], + "poliomyelitis's": [], + "bonus's": [], + "Vegemite's": [], + "mediating": [], + "frangible": [], + "esophageal": [], + "Stanford's": [], + "mileages's": [], + "cereal'ses": [], + "Nelly": ["M"], + "whippersnapper": ["M", "S"], + "enablesers": [], + "observable": [], + "Rollins's": [], + "hing": [], + "Zoroastrianisms's": [], + "monetarism": ["M"], + "Kirkpatrick": ["M"], + "plank's": [], + "designing's": [], + "ambassadors's": [], + "crabbinesser": [], + "latitudes": [], + "osteoporosis": ["M"], + "espresso": ["M", "S"], + "cowshed": ["S"], + "gorge's": [], + "assonant's": [], + "perambulatingen": [], + "screenshots": [], + "Ross": ["M"], + "promulgator's": [], + "phisher": ["M"], + "speleological": [], + "consonantly": [], + "Daguerre's": [], + "hyperventilation's": [], + "timpanists's": [], + "nappier": [], + "wain'ses": [], + "conventionally": [], + "mongoloid's": [], + "directly": [], + "deficiencies's": [], + "ballsier": [], + "conservationism's": [], + "meshing": [], + "topographies's": [], + "stationmaster": ["S"], + "behoovesing": [], + "Anselmo": ["M"], + "Lully": ["M"], + "denaturation": [], + "paperbarks": [], + "exposes": [], + "filch": ["D", "S", "G"], + "unity's": [], + "conjugates": [], + "bilabial": ["M", "S"], + "mass": ["M", "D", "S", "G", "V"], + "talkative": ["P", "Y"], + "threescore'ses": [], + "Vietnamese": ["M"], + "outnumbers": [], + "Gruyere": ["S", "M"], + "answerings": [], + "piercingly": [], + "ego's": [], + "Jr's": [], + "damaskings": [], + "trick'sed": [], + "Case's": [], + "tucker's": [], + "redefine": [], + "patresfamilias": [], + "multimedia's": [], + "druggie": ["S", "M"], + "Stamford": ["M"], + "invigorate": ["A", "D", "S", "G"], + "Bendix": ["M"], + "semiotic": ["S"], + "succulent": ["S", "M"], + "snowbank": ["S", "M"], + "Pullman": ["M", "S"], + "photocell": ["M", "S"], + "gallows": ["M"], + "opcode": ["S"], + "stompings": [], + "walkway": ["S", "M"], + "gamester": ["M", "S"], + "loopholes": [], + "lolcat's": [], + "titling": [], + "ampere's": [], + "Dermot's": [], + "outdraw": ["G", "S"], + "panhandling": [], + "ancestry's": [], + "bays's": [], + "authoritativeliness": [], + "prefigured": [], + "photoing's": [], + "consecrates": [], + "knightsing": [], + "communism's": [], + "wangle'sers": [], + "Reginald": ["M"], + "gosling": ["S", "M"], + "Bright's": [], + "colorfully": [], + "persistent": ["Y"], + "supporting": [], + "asthmatics": [], + "neoplasm": ["M", "S"], + "cavers": [], + "inkblots's": [], + "verbal'sly": [], + "memorial's": [], + "renovating": [], + "grip's": [], + "jocular": ["Y"], + "Hall": ["M"], + "summations": [], + "Pabst's": [], + "mongrel": ["S", "M"], + "Riga": ["M"], + "enslaved": [], + "domain's": [], + "leghorn": ["M", "S"], + "literariness's": [], + "hue's": [], + "healthier": [], + "Jana's": [], + "IEEE": [], + "proctor'sed": [], + "thermostat": ["M", "S"], + "peonage": ["M"], + "Yaobang's": [], + "castanets": [], + "groveling": [], + "liquoring": [], + "Ankara's": [], + "Paley": ["M"], + "congeals": [], + "Godthaab's": [], + "constipationed": [], + "hardcover": ["S", "M"], + "dismaying": [], + "admixeds": [], + "Linnaeus": ["M"], + "personificationens": [], + "composites": [], + "requisitioning's": [], + "overcasts": [], + "doodles's": [], + "clone's": [], + "disquiet": ["G", "S", "M", "D"], + "grandstanding's": [], + "underestimateds": [], + "hones": [], + "Angara's": [], + "fertilizers": [], + "novelist": ["S", "M"], + "bleaches": [], + "sedates": [], + "Hung's": [], + "PowerPC's": [], + "charabanc's": [], + "officialism's": [], + "pullersing": [], + "saving's": [], + "spool": ["S", "M", "D", "G"], + "blobbing": [], + "panniers": [], + "jugfuls": [], + "hokier": [], + "enrollments": [], + "voluntaries's": [], + "Zechariah": ["M"], + "Linda's": [], + "Lauren's": [], + "meringue": ["M", "S"], + "buckets": [], + "virtues's": [], + "stepson": ["M", "S"], + "dishtowel": ["M", "S"], + "thicker": [], + "Alfonzo's": [], + "cruet's": [], + "roadrunners": [], + "innovator'ses": [], + "Venetian": ["S", "M"], + "Valerian": ["M"], + "pilleds": [], + "overspendsing": [], + "Scotties": [], + "cruelness's": [], + "Roach": ["M"], + "sagaciously": [], + "befoulings": [], + "offering's": [], + "manioc's": [], + "sightseer'ses": [], + "morgue'ses": [], + "excommunicates": [], + "codifications": [], + "dejectedly": [], + "chemical'sly": [], + "flatbeds's": [], + "sentiments": [], + "Silas's": [], + "sentimentalizing": [], + "hellishly": [], + "acropolis'ses": [], + "suckleds": [], + "downgrades": [], + "gauge's": [], + "witlessnessly": [], + "sensationalism": ["M"], + "Azana": ["M"], + "prefixesing": [], + "convalescence's": [], + "photoelectrically": [], + "blameworthiness's": [], + "minster's": [], + "Lucknow": ["M"], + "seas's": [], + "commemoratingen": [], + "flashcube's": [], + "escaped": [], + "label": ["A", "S", "D", "G"], + "purplest": [], + "castrates": [], + "nieces's": [], + "engravers": [], + "countersign's": [], + "tarantulas's": [], + "muskrat's": [], + "semifinalists": [], + "sequoia": ["M", "S"], + "atrophy's": [], + "snout": ["S", "M"], + "persuadinged": [], + "ROTC's": [], + "byre": ["S"], + "hexagons": [], + "nooks": [], + "Grecian's": [], + "quivers": [], + "fireplugs": [], + "tolerantly": [], + "biz's": [], + "saw's": [], + "lacerating": [], + "NATO": ["M"], + "Bradly": ["M"], + "Rudolf's": [], + "quadratic's": [], + "consisting": [], + "mouthiest": [], + "Shankara's": [], + "froward": ["P"], + "countermand'sed": [], + "Hargreaves's": [], + "welterweights's": [], + "bark": ["C", "S", "G", "D"], + "Jeremiah": ["M"], + "ninth": ["M"], + "agents": [], + "creakiness's": [], + "frumpy": ["T", "R"], + "maturation": ["M"], + "spew's": [], + "Hastings's": [], + "positiveness's": [], + "leniency": ["M"], + "Adolfo": ["M"], + "holdover's": [], + "Short's": [], + "Calhoun's": [], + "poosing": [], + "Estela's": [], + "riced": [], + "dyer": ["M"], + "lifestyles's": [], + "accommodationed": [], + "moonlighter": ["M"], + "miserliness": ["M"], + "pfennig": ["M", "S"], + "contemplatingen": [], + "Feb": ["M"], + "fussbudget'ses": [], + "diaper": ["S", "M", "D", "G"], + "kapok": ["M"], + "eared": [], + "lotus's": [], + "teammate'ses": [], + "stultify": ["D", "S", "N", "G"], + "stoppage": ["M", "S"], + "micromanagement's": [], + "deist'ses": [], + "wooer's": [], + "approvals": [], + "B'sen": [], + "foam'sed": [], + "negativenessed": [], + "earnings": ["M"], + "bottomed": [], + "wanderings": ["M"], + "raceder": [], + "priers": [], + "Pu's": [], + "academia's": [], + "fetishists": [], + "convulsion's": [], + "cartwheeled": [], + "consular": ["K"], + "anemometers's": [], + "crumpling": [], + "yardsticks": [], + "ramble'sers": [], + "dedisbar": [], + "adsorbent's": [], + "execution's": [], + "emerging": [], + "flicking": [], + "clink'sed": [], + "undervalues": [], + "jetport's": [], + "Baal": ["S", "M"], + "visor": ["S", "M"], + "transferables": [], + "marketplaces's": [], + "participle": ["M", "S"], + "senorita's": [], + "intuitsed": [], + "elope": ["D", "S", "G", "L"], + "oxidant'ses": [], + "liquidize": ["Z", "G", "D", "R", "S"], + "sheweds": [], + "Lucas's": [], + "amassing": [], + "rhymer's": [], + "offenses": [], + "conciliator": ["S", "M"], + "obnoxious": ["Y", "P"], + "diaper's": [], + "witnesseds": [], + "soberliness": [], + "periphery's": [], + "headgear's": [], + "falcon": ["S", "M", "R", "Z"], + "disfigurement's": [], + "fingertip's": [], + "scroungy": ["T", "R"], + "busyness": ["M"], + "fecundating": [], + "fandangos": [], + "rosewoods": [], + "Mindy's": [], + "Va": ["M"], + "righting": [], + "Grampians's": [], + "nutmeat": ["S", "M"], + "Hildebrand": ["M"], + "enchiladas": [], + "crosschecked": [], + "Marisol's": [], + "sees's": [], + "vocabularies's": [], + "city": ["S", "M"], + "Attila": ["M"], + "terrier": ["M"], + "excitably": [], + "browns": [], + "Machiavellian's": [], + "ripcord's": [], + "Khazar": ["M"], + "Paley's": [], + "Wednesday'ses": [], + "immigrated": [], + "inedible": [], + "enshrining": [], + "incorporating": [], + "baldness": ["M"], + "faille": ["M"], + "suppressants": [], + "peaces's": [], + "soak'sed": [], + "arranger's": [], + "McNaughton": ["M"], + "Platonism's": [], + "discovery": ["A", "S", "M"], + "incubus's": [], + "nineteen's": [], + "Ibiza's": [], + "conciliators": [], + "mouthing": [], + "pedicurist": ["M", "S"], + "eclectic's": [], + "Danial": ["M"], + "sportiest": [], + "abbreviates": [], + "Okla": [], + "oubliette'ses": [], + "hippie's": [], + "metallic": [], + "smuttiest": [], + "adumbrationed": [], + "dowses": [], + "rummaged": [], + "Electra": ["M"], + "insult'sed": [], + "misdirecting": [], + "ambidextrous": ["Y"], + "puppies's": [], + "asthma": ["M"], + "maltose": ["M"], + "register's": [], + "windowpane": ["S", "M"], + "pomp": ["M"], + "Hellenic's": [], + "subarctic": [], + "streptomycin's": [], + "nonnative": ["M", "S"], + "semesters": [], + "rump'sly": [], + "ruminant": ["M", "S"], + "spurt's": [], + "flagships's": [], + "sage": ["M", "Y", "T", "R", "S"], + "Winston": ["M"], + "bollards": [], + "encircleds": [], + "Vienna": ["M"], + "decoying's": [], + "revues": [], + "valise": ["S", "M"], + "mistaken": ["Y"], + "pennant": ["M", "S"], + "constantly": [], + "grind's": [], + "distributorships": [], + "captures": [], + "appose": ["G", "D", "S"], + "Erato": ["M"], + "victim's": [], + "sprouts": [], + "fuseds": [], + "conundrums's": [], + "Sherry": ["M"], + "resow": [], + "beetroots": [], + "geezer'ses": [], + "checks": [], + "bookstore": ["M", "S"], + "bombshell's": [], + "evangelizing": [], + "sprigs's": [], + "arcing": [], + "poofter": ["S"], + "Slinky's": [], + "sired": [], + "fifteenth's": [], + "Hersey's": [], + "Trinidad's": [], + "stir's": [], + "Branden's": [], + "Bengali's": [], + "tonelessly": [], + "motherfuckers": [], + "Micah's": [], + "Vivian's": [], + "transformsers": [], + "umbras": [], + "Vern": ["M"], + "advocate": ["M", "G", "D", "S"], + "rubidium's": [], + "fruitier": [], + "defrockeding": [], + "enclosures's": [], + "mincers": [], + "Hershey": ["M"], + "washstand's": [], + "lamas": [], + "swelling's": [], + "outselling": [], + "prorelapse": [], + "misrule": ["M", "G", "D", "S"], + "asylum": ["S", "M"], + "moping's": [], + "Wilhelm's": [], + "famish": ["D", "S", "G"], + "glaciates": [], + "conductible": [], + "Giza": ["M"], + "Kellogg's": [], + "psyched": [], + "HTML": ["M"], + "fecund": [], + "guvnors": [], + "donateds": [], + "ark": ["S", "M"], + "Burks": ["M"], + "radiography's": [], + "rivetsers": [], + "tocsin": ["S", "M"], + "Ariosto": ["M"], + "whinnies's": [], + "schnauzer's": [], + "hullabaloo's": [], + "provoke": ["D", "R", "S", "Z", "G"], + "bobcat'ses": [], + "aunt": ["S", "M"], + "Branden": ["M"], + "missuses": [], + "usurers": [], + "telecommunication'ses": [], + "treacheries's": [], + "vises": [], + "cauterizinged": [], + "tripod'ses": [], + "vainer": [], + "debauchee's": [], + "faxed": [], + "Naomi's": [], + "swindlersing": [], + "aboriginal's": [], + "outlet's": [], + "prudentially": [], + "brainchild": ["M"], + "whoring": [], + "buds's": [], + "telethon'ses": [], + "Starkey's": [], + "papists": [], + "dagoes": [], + "swingeing": [], + "hairball's": [], + "apprises": [], + "superannuationed": [], + "chariest": [], + "meditation's": [], + "lemon": ["S", "M"], + "squallsing": [], + "therewith": [], + "contortion": ["M", "S"], + "murderess's": [], + "embodiment": ["E", "M"], + "squeezebox": ["S"], + "viceregal": [], + "strata": [], + "Owen's": [], + "exasperatingen": [], + "Mafias": [], + "apparition": ["S", "M"], + "sandlotter": ["M", "S"], + "superlatives": [], + "aspidistra": ["M", "S"], + "censoriousness": ["M"], + "gaudy": ["R", "P", "T"], + "peroxidinged": [], + "thundercloud's": [], + "dixieland": ["M"], + "fleetly": [], + "newts": [], + "saddlesing": [], + "forms": [], + "Scottsdale's": [], + "fathomed": [], + "votary": ["S", "M"], + "custard'ses": [], + "siroccos's": [], + "intermissions": [], + "proofreads": [], + "leftmost": [], + "Giannini's": [], + "check'sed": [], + "teammate": ["M", "S"], + "Lethe's": [], + "Bic's": [], + "consumerist'ses": [], + "Parnell": ["M"], + "swinging": [], + "regressive": [], + "undulated": [], + "bonanza's": [], + "mutating": [], + "banding": [], + "batted": [], + "mumblers": [], + "Heine's": [], + "bagpipers": [], + "occlusions": [], + "agnosticism": ["M"], + "vocals": [], + "Defoe's": [], + "Ringo's": [], + "Panamanian": ["M", "S"], + "conversationalists's": [], + "scavenger": ["M"], + "tectonics's": [], + "noticeds": [], + "doorway's": [], + "fitful": ["Y", "P"], + "compo": ["S"], + "exponent's": [], + "Clarice's": [], + "satire's": [], + "stylish": ["P", "Y"], + "Formica'ses": [], + "cumulus's": [], + "assessor": ["M", "S"], + "conduceds": [], + "profitability's": [], + "presumptuous": ["Y", "P"], + "Louella's": [], + "dale": ["S", "M"], + "jemmied": [], + "couplet": ["M", "S"], + "garrotes": [], + "charged": ["U"], + "sheer'sed": [], + "boondoggling": [], + "3rd": ["p"], + "stringently": [], + "insulin": ["M"], + "usurped": [], + "vampires": [], + "betrayer": ["M"], + "parallax": ["M", "S"], + "foldaway": [], + "cablegram's": [], + "fricasseeds": [], + "cataracts": [], + "beveling's": [], + "rejects": [], + "dictated": [], + "exerciser's": [], + "impresario's": [], + "isolateds": [], + "buttress's": [], + "Reykjavik's": [], + "Kevin": ["M"], + "bitten": [], + "quarterbacking's": [], + "intermixeds": [], + "bathyscaphes's": [], + "bedfellow": ["S", "M"], + "fine's": ["F"], + "tempo's": [], + "compass'sed": [], + "silvered": [], + "federal's": [], + "gloat'sed": [], + "captures's": [], + "bootstrapped": [], + "caucuses": [], + "bobcats": [], + "Markov": ["M"], + "celandine's": [], + "stoutness": ["M"], + "fevered": [], + "cote's": [], + "malignancies": [], + "parthenogenesis's": [], + "hollowing": [], + "server": ["S", "M"], + "gobbler": ["M"], + "coaxersing": [], + "pachyderm": ["M", "S"], + "imploreds": [], + "concertinasing": [], + "turbos": [], + "Bauhaus": ["M"], + "extinguishersing": [], + "mantling": [], + "jammy": ["R", "T"], + "switch'sed": [], + "terrain": ["S", "M"], + "bathes": [], + "outstretches": [], + "vassals's": [], + "echolocation's": [], + "enthusiasm": ["M", "S"], + "Tami's": [], + "keyboardists's": [], + "lyricists": [], + "disharmonious": [], + "moi": [], + "dulcimer'ses": [], + "shrubberies's": [], + "bestirring": [], + "spiderweb's": [], + "expects": [], + "squirrel's": [], + "flattens": [], + "Vicente": ["M"], + "cemeteries": [], + "stanza's": [], + "alias": ["G", "M", "D", "S"], + "campaigned": [], + "competes": [], + "Trimurti's": [], + "stinkbugs's": [], + "Appalachian's": [], + "flimflam": ["S", "M"], + "foregrounding's": [], + "heckling's": [], + "whiz": ["M"], + "defog": [], + "redirection": [], + "funny's": [], + "immunoglobulins": [], + "hungered": [], + "gimps": [], + "entries's": [], + "Farrow": ["M"], + "waddling": [], + "sandstorm": ["S", "M"], + "breakout": ["M", "S"], + "diminuendos": [], + "decelerator's": [], + "avouching": [], + "Wigner": ["M"], + "startlingly": [], + "spooks's": [], + "taunteder": [], + "sensuality": ["M"], + "straggle": ["D", "R", "S", "Z", "G"], + "auk's": [], + "conventionalizes": [], + "Crichton": ["M"], + "Hecuba's": [], + "subtenants's": [], + "lopeds": [], + "percent's": [], + "porter's": [], + "hectometer's": [], + "openlies": [], + "mead's": [], + "betimes": [], + "Gadsden": ["M"], + "wheelwrights": [], + "pennyweights": [], + "grunge'ses": [], + "smutty": ["T", "R", "P"], + "waitpersons": [], + "then": ["M"], + "Pavlovian's": [], + "oscillators's": [], + "Curry's": [], + "epicures's": [], + "floors": [], + "lanes": [], + "Becker's": [], + "overemphasizeds": [], + "vassal's": [], + "inadvisability": [], + "Antofagasta's": [], + "supertanker": ["M", "S"], + "ulcerationsed": [], + "pseudy": [], + "schematic's": [], + "pipsqueaks's": [], + "moneymaking": ["M"], + "diffuseness's": [], + "wrest's": [], + "ratatouille": ["M"], + "instrumentalists": [], + "suppressant's": [], + "fortificationers": [], + "firefightersing": [], + "Mohamed's": [], + "polymaths": [], + "transcribing": [], + "painting's": [], + "Talleyrand": ["M"], + "offline": [], + "Avior's": [], + "concern'sed": [], + "Richie's": [], + "Bic": ["M"], + "spellcheckings": [], + "signor'ses": [], + "atavism's": [], + "shortlisted": [], + "syllabified": [], + "Sicilians": [], + "Kiwanis's": [], + "shortfall'ses": [], + "warblers": [], + "pekes": [], + "Kurd's": [], + "hugged": [], + "Monroe": ["M"], + "petrifies": [], + "drubbers": [], + "vulcanizes": [], + "fits": [], + "Varese's": [], + "carboys": [], + "tangle": ["U", "D", "S", "G"], + "centenaries": [], + "guzzlers": [], + "pajamas's": [], + "changes": [], + "firefly's": [], + "taprooms": [], + "Assam's": [], + "satelliteds": [], + "grandiosely": [], + "chronometer": ["S", "M"], + "auto's": [], + "star's": [], + "humanness": ["M"], + "eyesore": ["M", "S"], + "flavors": [], + "ranee's": [], + "platoon": ["S", "G", "M", "D"], + "basketwork's": [], + "Howe's": [], + "scriptural": [], + "househusbands": [], + "Turkmenistan's": [], + "syndicated": [], + "NoDoz's": [], + "knotty": ["T", "R"], + "skylark": ["S", "G", "M", "D"], + "rounder": [], + "unmixed": [], + "cotangent'ses": [], + "leveraged": [], + "bullets": [], + "pooling's": [], + "carpenterings": [], + "pillocks": [], + "grogginesser": [], + "purring": [], + "Galvani's": [], + "kludged": [], + "Tabatha's": [], + "codersing": [], + "messily": [], + "sandersing": [], + "electroencephalogram'ses": [], + "represents": [], + "conformist's": [], + "shuck'sed": [], + "platypuses": [], + "begums": [], + "acronym'ses": [], + "contemplateds": [], + "movement": ["S", "M"], + "Steinbeck": ["M"], + "bewaileding": [], + "Lamborghini's": [], + "smashers": [], + "carob's": [], + "joyrides": [], + "centrifugal": ["Y"], + "mistrials": [], + "marginalize": ["G", "D", "S"], + "tided": [], + "gadders's": [], + "pyorrhea": ["M"], + "deadener": [], + "lustful": ["Y"], + "charitable": ["P"], + "desecration": ["M"], + "Japs's": [], + "barbies": [], + "individual'sly": [], + "colleen": ["S", "M"], + "Hecate": ["M"], + "knurlsing": [], + "hearthstones's": [], + "subset's": [], + "Leger's": [], + "cosine's": [], + "purging": [], + "knell": ["S", "G", "M", "D"], + "emetic's": [], + "matriculate": ["D", "S", "G", "N"], + "arbitrament": ["S", "M"], + "nymphets": [], + "HMS": [], + "schnook": ["M", "S"], + "vanguards": [], + "teams": [], + "sorrowfully": [], + "cackled": [], + "auspiciousness's": [], + "kinder": [], + "head'sed": [], + "wishesers": [], + "Daedalus's": [], + "backwash's": [], + "nuders": [], + "stationment": [], + "punctilious": ["P", "Y"], + "flamboyance": ["M"], + "Reva": ["M"], + "hepatitis's": [], + "Kiribati": ["M"], + "hearingings": [], + "Dodge": ["M"], + "clienteles": [], + "prerequisite": ["M", "S"], + "suffragan": ["M", "S"], + "valve's": [], + "busheling's": [], + "commencing": [], + "Augustan": ["M"], + "gentles": [], + "nuns": [], + "webcam's": [], + "detonates": [], + "helper": ["M"], + "flowerbeds": [], + "ilea": [], + "folding": [], + "propulsive": [], + "downswing's": [], + "princes": [], + "harmonize": ["Z", "G", "D", "R", "S"], + "irritation": ["M"], + "cinching's": [], + "redlining's": [], + "saucinged": [], + "backlash'ses": [], + "streetwalkers's": [], + "Hanson": ["M"], + "adjustment": ["A", "M", "S"], + "merely": [], + "dusting": [], + "Ora": ["M"], + "anywhere": [], + "scalp's": [], + "resistersing": [], + "hayloft": ["S", "M"], + "chive's": [], + "nonage'ses": [], + "antifreeze": ["M"], + "menaced": [], + "porch's": [], + "jojoba": [], + "revetment's": [], + "Hesiod": ["M"], + "dottier": [], + "archbishop's": [], + "Herr's": [], + "credo's": [], + "deceiveds": [], + "radiated": [], + "groundsmen": [], + "aphorisms": [], + "torrent": ["S", "M"], + "bashing's": [], + "entertainer's": [], + "overwrote": [], + "Tawney's": [], + "reoccurring": [], + "Orestes's": [], + "assigner's": [], + "parings": [], + "alpines": [], + "citrus": ["M", "S"], + "confutes": [], + "Innocent's": [], + "goodbye'ses": [], + "marquees": [], + "divulginged": [], + "stylists's": [], + "alps": [], + "boner": ["M"], + "ankles": [], + "wee": ["R", "S", "M", "T"], + "strikingly": [], + "darkness's": [], + "improbability": ["S", "M"], + "scowl": ["M", "D", "S", "G"], + "taxonomist'ses": [], + "reteaching": [], + "turnkey's": [], + "Antonia's": [], + "paucity's": [], + "Wheatstone": ["M"], + "swamp": ["G", "S", "M", "D"], + "mishaps's": [], + "ape's": [], + "toothpicks": [], + "tightfisted": [], + "longueur": ["S", "M"], + "ionosphere'ses": [], + "scorneder": [], + "snicksed": [], + "tiebreaks": [], + "striated": [], + "feel'ser": [], + "crenelationed": [], + "compute": ["A", "D", "S", "G"], + "affronting's": [], + "landscaping": [], + "Davy's": [], + "perpetrate": ["D", "S", "G", "N"], + "dishonorably": [], + "Kidd": ["M"], + "waftings": [], + "States": [], + "Hawaiians's": [], + "okapi's": [], + "moneymakers": [], + "cattail": ["S", "M"], + "if": ["S", "M"], + "downshifted": [], + "stench": ["M", "S"], + "plushy": ["R", "T"], + "crankiness's": [], + "mockingly": [], + "Starkey": ["M"], + "debaucheries": [], + "commentating": [], + "histogram'ses": [], + "signori": [], + "bastionsed": [], + "fornicator'ses": [], + "holism": [], + "inconspicuous": [], + "ESP's": [], + "devout": ["P", "R", "Y", "T"], + "shoe'ses": [], + "sleep'ser": [], + "anion": ["M", "S"], + "wrest": ["S", "G", "M", "D"], + "scaring's": [], + "uprightliness": [], + "heaven'sly": [], + "paternity": ["M"], + "nonadministrative": [], + "awesome": ["Y", "P"], + "impoliteness's": [], + "fiscal'sly": [], + "chloroplast's": [], + "Louisa's": [], + "believer": ["E", "U", "M", "S"], + "capt": [], + "divorceds": [], + "incorruptibility": [], + "handled": [], + "effrontery's": [], + "Casals": ["M"], + "subscript'ses": [], + "garcon": ["S", "M"], + "trellis": ["G", "M", "D", "S"], + "snowbird": ["S", "M"], + "Masons": [], + "adipose": [], + "despairs's": [], + "wonderful": ["Y", "P"], + "mi's": [], + "Death's": [], + "MGM": ["M"], + "joked": [], + "banqueters": [], + "bias'sed": [], + "quilt's": [], + "fit's": [], + "Menelik": ["M"], + "flt": [], + "nicety": ["S", "M"], + "divulgeds": [], + "osier'ses": [], + "mussiest": [], + "communed": [], + "turkeys": [], + "gabble": ["D", "S", "M", "G"], + "pentameters": [], + "wayfarer's": [], + "upsurge's": [], + "sumptuousnessly": [], + "narcoses": [], + "portals": [], + "backpack's": [], + "flawlessness": ["M"], + "overpopulatingen": [], + "storerooms's": [], + "autobiography's": [], + "expressive": ["P", "Y"], + "saran's": [], + "galvanizeds": [], + "Poincare's": [], + "enrages": [], + "pocketfuls": [], + "abstainerers": [], + "owes": [], + "perishers": [], + "nattiness": ["M"], + "dafter": [], + "sensation's": [], + "shattered": [], + "intercedes": [], + "jungles": [], + "resistible": [], + "Corinthian'ses": [], + "communists's": [], + "rainmaking": ["M"], + "nonflying": [], + "gravid": [], + "chloroform": ["S", "G", "M", "D"], + "credulity's": [], + "Mencius": ["M"], + "must've": [], + "apple's": [], + "propensities's": [], + "Feds's": [], + "wotcha": [], + "demonstrativeness's": [], + "steamy": ["T", "P", "R"], + "Phyllis": ["M"], + "picnickers's": [], + "profoundness's": [], + "resident'ses": [], + "Web's": [], + "irregardless": [], + "loftiness's": [], + "geed": [], + "nonesuches": [], + "viscosity": ["M"], + "besmirchinged": [], + "overgrown": [], + "Giuliani": ["M"], + "collectivist": ["S", "M"], + "tongue's": [], + "exigencies's": [], + "kidding": [], + "trackball's": [], + "overflown": [], + "caftan'ses": [], + "ironsing": [], + "sexting": [], + "workstation'ses": [], + "renounceds": [], + "understated": [], + "perfecterly": [], + "disperses": [], + "stratifyingen": [], + "director'ses": [], + "pusillanimity's": [], + "replaceable": [], + "sloppiness's": [], + "penciledings": [], + "farseeing": [], + "Dixiecrat's": [], + "peter'sed": [], + "turban's": [], + "sauerkraut's": [], + "understandingable": [], + "liveries's": [], + "ranching": ["M"], + "Youngstown's": [], + "genuflecteding": [], + "sitcom's": [], + "villains": [], + "grimes's": [], + "pidgin'ses": [], + "whistleder": [], + "demurrers's": [], + "burgeoning": [], + "dunk's": [], + "extracted": [], + "bisections": [], + "Harrods": ["M"], + "Kampala": ["M"], + "flap'ses": [], + "kneadeder": [], + "doggonest": [], + "detentes": [], + "warty": ["T", "R"], + "moroseliness": [], + "Malinowski": ["M"], + "landscapers": [], + "hindering": [], + "wounder": [], + "dictate's": [], + "sacker": ["M"], + "Spock": ["M"], + "Minnesotans": [], + "hikersing": [], + "counterbalance's": [], + "recover": [], + "vagabondage": ["M"], + "ISIS": [], + "diviners": [], + "marquee": ["S", "M"], + "frankfurter's": [], + "inequality": ["S"], + "grievousnessly": [], + "alliance's": [], + "DOT": [], + "patrolman's": [], + "Babylonian": ["S", "M"], + "Dy's": [], + "dispossess": [], + "screwworms": [], + "Ursuline": ["M"], + "rarely": [], + "Bessie": ["M"], + "fidget'sed": [], + "resettle": [], + "weirdness's": [], + "incorporatingen": [], + "antidepressant'ses": [], + "sapphire": ["S", "M"], + "heparin": ["M"], + "natural's": [], + "dagger's": [], + "Agrippina's": [], + "numskull": ["M", "S"], + "logjams": [], + "horrifyingly": [], + "sinner": ["M", "S"], + "mouthfuls": [], + "Aisha's": [], + "whitefish": ["M", "S"], + "gratifieds": [], + "Rosales": ["M"], + "scurvier": [], + "misogynists's": [], + "warmblooded": [], + "boysenberry": ["S", "M"], + "plutocracy": ["S", "M"], + "Devonian's": [], + "wrecking": [], + "weekender": [], + "turbocharges": [], + "precaution's": [], + "squeezeboxes": [], + "foreleg": ["S", "M"], + "prodigally": [], + "Anna's": [], + "clunkerers": [], + "frontispieces": [], + "thresholds's": [], + "compel": ["S"], + "onset": ["M", "S"], + "sailboarding": ["M"], + "Permian": ["M"], + "serenenessly": [], + "philistinism": ["M"], + "diking": [], + "cleavers": [], + "Vera's": [], + "enigmatic": [], + "evaluated": [], + "shopfitter": ["S"], + "savory's": [], + "intermezzo'ses": [], + "alluded": [], + "SAM's": [], + "Sykes": ["M"], + "spillway's": [], + "largo": ["S", "M"], + "roomful's": [], + "irreconcilable": [], + "audibly": ["I"], + "combiner": ["M", "S"], + "cobble": ["D", "R", "S", "M", "Z", "G"], + "optically": [], + "downright": [], + "Nanak": ["M"], + "talented": ["U"], + "insatiably": [], + "aisle'ses": [], + "misconstrues": [], + "unrecorded": [], + "crosscheckeding": [], + "cockfights": [], + "tyranny's": [], + "sluggishness's": [], + "Karakorum's": [], + "Candice's": [], + "softies's": [], + "nubbin's": [], + "hurrah": ["G", "M", "D"], + "growls": [], + "flattop's": [], + "dreamed": ["U"], + "imitativeness's": [], + "meddlersing": [], + "gleefulness's": [], + "remonstrant's": [], + "Kathrine's": [], + "undistinguished": [], + "cabal'ses": [], + "pretentiously": [], + "strokeds": [], + "colas": [], + "putrefaction": ["M"], + "chicken'sed": [], + "pi'sed": [], + "shorter": [], + "milkmaid's": [], + "troves": [], + "Assyria's": [], + "rosin's": [], + "Root's": [], + "buckeding": [], + "linguistics's": [], + "Photostatting": [], + "jockstraps": [], + "renown's": [], + "thoroughbred's": [], + "Amy's": [], + "mugginess's": [], + "inseparability": [], + "drifteder": [], + "Gandhian": ["M"], + "lightener": ["M"], + "Sarnoff's": [], + "cough": ["M", "D", "G"], + "deliquesce": ["D", "S", "G"], + "quadrennial": [], + "checkerings": [], + "stingiest": [], + "proctor": ["G", "M", "D", "S"], + "mattresses": [], + "ceaselessliness": [], + "yearly": ["S", "M"], + "smeary": ["R", "T"], + "overpricing": [], + "shred": ["M", "S"], + "reprimands's": [], + "Rodrick": ["M"], + "Holmes": ["M"], + "vats's": [], + "aircrews": [], + "computerate": [], + "Barrymore's": [], + "hyena": ["S", "M"], + "adulteration": ["M"], + "kickoff": ["M", "S"], + "purchaser's": [], + "unwieldiness": ["M"], + "slowsness": [], + "expeditionary": [], + "goofier": [], + "brim'ses": [], + "aspirant'ses": [], + "abstemiousness": ["M"], + "jackrabbits": [], + "saline's": [], + "messieurs": [], + "observing": [], + "folder": ["S", "M"], + "payer's": [], + "centurions's": [], + "bugaboos's": [], + "jailed": [], + "cramping": ["M"], + "Biddle's": [], + "coupe": ["S", "M"], + "motes": [], + "busier": [], + "escapement's": [], + "unsafest": [], + "memorandums": [], + "gawkier": [], + "surgery": ["S", "M"], + "mountaineers's": [], + "crays": [], + "lockersing": [], + "seashores": [], + "imperfect'sly": [], + "lunatic's": [], + "radioisotope": ["M", "S"], + "artiste": ["M", "S"], + "gingersnap": ["S", "M"], + "stability's": [], + "reflexive'sly": [], + "deathwatch's": [], + "aliasing's": [], + "Melvin": ["M"], + "clove'sers": [], + "racism": ["M"], + "risk'sed": [], + "trainings": [], + "vassals": [], + "Cortland": ["M"], + "cataract's": [], + "tare": ["M", "S"], + "mustache": ["M", "D", "S"], + "crocus's": [], + "Corina": ["M"], + "perennial's": [], + "hauling": [], + "broadsiding": [], + "platformsing": [], + "evener": [], + "negotiation": ["A", "M"], + "Dalmatians's": [], + "Bolshoi": ["M"], + "angel's": [], + "prosody": ["S", "M"], + "necromancers's": [], + "pillareds": [], + "northwesters": [], + "Sandra": ["M"], + "them": [], + "fleeting's": [], + "Midway's": [], + "buster's": [], + "terrorizing": [], + "Safavid": ["M"], + "Madden's": [], + "Belgian": ["S", "M"], + "turbochargers": [], + "phylogeny": ["M"], + "watchdog": ["S", "M"], + "scullions": [], + "logistical": ["Y"], + "paw's": [], + "adjustments": [], + "hoking": [], + "democrat's": [], + "stew's": [], + "drollerness": [], + "colorfast": ["P"], + "shrilleder": [], + "miasma'ses": [], + "bazaars's": [], + "genes": ["S"], + "satellites": [], + "plastered": [], + "Annunciations": [], + "onus's": [], + "Arneb's": [], + "pickax's": [], + "shyly": [], + "lawful": ["U", "P", "Y"], + "orison": ["S", "M"], + "lockjaw": ["M"], + "ottoman": ["M", "S"], + "Drambuie": ["M"], + "Astarte's": [], + "Dada's": [], + "maneuver": ["M", "D", "G", "S", "B", "J"], + "inmates": [], + "transferring": [], + "key's": [], + "gadgets": [], + "hysterectomy's": [], + "redoubt": ["S", "B", "M"], + "terminateds": [], + "upturned": [], + "soapiness's": [], + "slumberous": [], + "bouquets": [], + "Shauna's": [], + "welders": [], + "buggers's": [], + "engaging": [], + "magicians": [], + "hatbox's": [], + "Visa": ["M"], + "composer": ["M", "S"], + "numbs": [], + "verse's": [], + "corsage's": [], + "trout's": [], + "birdied": [], + "viol'sable": [], + "centrifuge's": [], + "cachet'ses": [], + "sleekest": [], + "superficiality's": [], + "glutinously": [], + "gazumps": [], + "coordinate'sly": [], + "pratfalls": [], + "greatcoat's": [], + "cardholder": ["S"], + "dedicates": [], + "benefactresses": [], + "homage's": [], + "manhunts": [], + "Madrid's": [], + "nuttiness": ["M"], + "fullback": ["M", "S"], + "Kurt's": [], + "rottenly": [], + "hatemonger'ses": [], + "Delia": ["M"], + "haversacks": [], + "losing": ["M"], + "phototypesetting": [], + "shore'sing": [], + "Howell's": [], + "Beaufort": ["M"], + "Elvis": ["M"], + "slaloms": [], + "sack": ["Z", "G", "M", "D", "R", "J", "S"], + "jellying": [], + "slightly": [], + "moccasin's": [], + "laxatives": [], + "hydrophobic": [], + "lodgeder": [], + "acid": ["S", "M", "Y"], + "tither": ["M"], + "bighorn's": [], + "collage's": [], + "burrings": [], + "sharks": [], + "devastator": ["M", "S"], + "witticism": ["S", "M"], + "provider's": [], + "crofterers": [], + "coaxes": [], + "troupinged": [], + "urinates": [], + "jaywalker's": [], + "adagio's": [], + "paintingings": [], + "wanton's": [], + "spritz's": [], + "forepart'ses": [], + "reveals": [], + "explicationed": [], + "dirtiest": [], + "wheelbases's": [], + "pedantry's": [], + "small's": [], + "tenderize": ["Z", "G", "D", "R", "S"], + "lobbyists": [], + "chisel's": [], + "O'Casey": ["M"], + "transposeds": [], + "forename": ["M", "D", "S"], + "wuss'ses": [], + "backgrounders": [], + "eschatology": [], + "invalidedly": [], + "snail's": [], + "buccaneers": [], + "nonevent": ["M", "S"], + "lucking": [], + "millwright's": [], + "Ezra's": [], + "mainframes": [], + "zipped": ["U"], + "speckling": [], + "mullein's": [], + "orotundities's": [], + "hairiness's": [], + "cablegram": ["M", "S"], + "speak": ["S", "R", "Z", "G", "J"], + "conjugate": ["D", "S", "X", "G", "N"], + "chassis": ["M"], + "unreasonably": [], + "sambaing": [], + "hatchways's": [], + "snootier": [], + "whelping": [], + "palate": ["M", "B", "S"], + "tempura's": [], + "hypertensive": ["S", "M"], + "reprisals": [], + "leniently": [], + "chords": [], + "squattest": [], + "fed's": [], + "Xi'an's": [], + "colorfulnessly": [], + "eggheads": [], + "cowpuncher's": [], + "hairpiece": ["M", "S"], + "garrulity's": [], + "isolationists's": [], + "Greensboro": ["M"], + "ostracism's": [], + "nark": [], + "ratify": ["N", "D", "R", "S", "Z", "G"], + "scraggliest": [], + "straw's": [], + "pectin": ["M"], + "psaltery's": [], + "swellheadeds": [], + "topics's": [], + "Sjaelland's": [], + "golden": ["T", "R"], + "exceptions's": [], + "constructor's": [], + "blather": ["S", "M", "D", "G"], + "tempos": [], + "evader": ["M"], + "courageous": ["Y", "P"], + "Erica": ["M"], + "barracking": [], + "since": [], + "Bourbaki's": [], + "sandlotters": [], + "sunlamps's": [], + "godly": ["U", "R", "T", "P"], + "derogate": ["D", "S", "G", "N"], + "assignor'ses": [], + "skulduggery's": [], + "crimp's": [], + "betroth": ["D", "G"], + "boozersing": [], + "cameos": [], + "splinter'sed": [], + "phosphors": [], + "avitaminosis's": [], + "bemusementing": [], + "bethinks": [], + "leper's": [], + "lithograph'sed": [], + "alloying's": [], + "gape'ses": [], + "violoncellist's": [], + "thickos": [], + "dignified": ["U"], + "rehouse": [], + "duality's": [], + "assailant's": [], + "insemination's": [], + "ft": [], + "roadrunner's": [], + "visaed": [], + "ripples": [], + "bets": [], + "Pound's": [], + "bulks": [], + "rowdiness's": [], + "incidence": ["S", "M"], + "casseroles's": [], + "Allstate": ["M"], + "nitrification's": [], + "remittances": [], + "orchids": [], + "gratins": [], + "illusionists's": [], + "Dianne": ["M"], + "glosses": [], + "properly": [], + "Salonika's": [], + "exerciser": ["M"], + "southeast's": [], + "Christmastide's": [], + "Bennett": ["M"], + "wrongeder": [], + "fizzeds": [], + "handful": ["S", "M"], + "colostomy's": [], + "crab": ["M", "S"], + "micrometer": ["M", "S"], + "geophysicists's": [], + "fie": [], + "tenterhooks": [], + "purdah's": [], + "losersing": [], + "Murrumbidgee": ["M"], + "blunderbuss's": [], + "Ollie": ["M"], + "malting": [], + "apology": ["S", "M"], + "newsreel'ses": [], + "encroachments": [], + "glare'sing": [], + "geologists": [], + "forayed": [], + "Procrustean's": [], + "mechanisms": [], + "province'ses": [], + "capitulate": ["A", "D", "S", "X", "G", "N"], + "freehand": [], + "content'sed": [], + "Emilia": ["M"], + "Fisher": ["M"], + "impalas's": [], + "bridled": ["U"], + "duke": ["M", "S"], + "louderly": [], + "specters": [], + "maternity's": [], + "circularizing": [], + "exaggeratingen": [], + "prosecution's": [], + "Legendre": ["M"], + "pepsin's": [], + "receipteding": [], + "laymen": [], + "anniversary": ["S", "M"], + "reciprocal'sly": [], + "patentlies": [], + "waistline": ["M", "S"], + "MacBride": ["M"], + "abstraction's": [], + "superconductors's": [], + "multilevel": [], + "preserved": [], + "shiftierness": [], + "babieder": [], + "cute": ["Y", "P"], + "headman": ["M"], + "prudishliness": [], + "bootlegger": ["M", "S"], + "cheerer": ["M"], + "charladies": [], + "cutthroat's": [], + "etymologically": [], + "assembles": [], + "adolescences's": [], + "cloisonne's": [], + "motors": [], + "soppiest": [], + "bides": [], + "Gouda": ["S", "M"], + "pleasuring": [], + "noninflationary": [], + "jumpsuit": ["M", "S"], + "pickpocket": ["S", "M"], + "woody": ["T", "P", "R", "S", "M"], + "violation's": [], + "antique'sing": [], + "Verizon's": [], + "bleachesers": [], + "Rastafarianism": [], + "tosser": [], + "Hanna's": [], + "unsocial": [], + "evasions's": [], + "brainchildren": ["M"], + "yolks": [], + "heaps": [], + "jays's": [], + "fainteder": [], + "benedictions's": [], + "scatter": ["G", "J", "S", "M", "D"], + "Stafford": ["M"], + "jacking": [], + "regress's": [], + "permutesing": [], + "funerals": [], + "omicron'ses": [], + "tangier": [], + "skibob": ["S"], + "provable": [], + "photofinishing": ["M"], + "amoeba'ses": [], + "decode": [], + "choppiest": [], + "gm": [], + "regulars": [], + "speckles": [], + "droneds": [], + "Lie": ["M"], + "Marcos": ["M"], + "enshrouding": [], + "Weiss": ["M"], + "caricatured": [], + "misappropriatesing": [], + "aftershave's": [], + "irony": ["S", "M"], + "prattled": [], + "stagecraft's": [], + "misfilinged": [], + "commission": ["A", "C", "S", "G", "D"], + "pretense'sen": [], + "bale's": [], + "Uriel": ["M"], + "weened": [], + "guardhouses": [], + "contraception": ["M"], + "me": ["D", "S", "H"], + "straggly": ["T", "R"], + "Maria": ["M"], + "outgoingsing": [], + "high'ser": [], + "Greg": ["M"], + "hungrier": [], + "epistemology": [], + "ventilationed": [], + "Mannheim's": [], + "dominateds": [], + "chem": [], + "backseats": [], + "mutation's": [], + "interstice": ["M", "S"], + "Pius": ["M"], + "sports": [], + "outran": [], + "scripture": ["M", "S"], + "pilaf's": [], + "rumbas's": [], + "mad": ["S", "M", "Y", "P"], + "secureder": [], + "diffeder": [], + "roan'ses": [], + "strike's": [], + "bowstring's": [], + "boisterously": [], + "confabbing": [], + "carbonizinged": [], + "deathly": [], + "buccaneersing": [], + "keyboarder": ["M"], + "parade": ["M", "Z", "G", "D", "R", "S"], + "wonderfulness": ["M"], + "cheaper": [], + "hypochondria's": [], + "melodrama's": [], + "inverted": [], + "improvising": [], + "repleteds": [], + "excited": ["Y"], + "ounce": ["M", "S"], + "Mashhad's": [], + "denieder": [], + "irrelevancy's": [], + "brutishnessly": [], + "nationality's": [], + "cognomen's": [], + "oral's": [], + "debris": ["M"], + "waggle": ["M", "G", "D", "S"], + "waterborne": [], + "provoked": ["U"], + "grandmothers": [], + "Eggo": ["M"], + "Terr's": [], + "inappreciably": [], + "huddleds": [], + "spaciously": [], + "Bunsen": ["M"], + "dinnertime": ["M"], + "devolved": [], + "sideswipe'sing": [], + "atrocity's": [], + "nude": ["M", "T", "R", "S"], + "Neb": [], + "perseverance": ["M"], + "Brittney": ["M"], + "blueberry's": [], + "covetousliness": [], + "figurine's": [], + "originatingen": [], + "jinkeds": [], + "luxuriant": ["Y"], + "prizefight's": [], + "vaccinated": [], + "chilly": ["T", "P", "R"], + "savors": [], + "Brailles": [], + "blueprintings": [], + "outfought": [], + "numerations": [], + "trots": [], + "conviction's": [], + "undergrowth": ["M"], + "Flemish's": [], + "defrosters": [], + "earedly": [], + "hallowed": ["U"], + "debut's": [], + "retentiveliness": [], + "reinstatement's": [], + "mousetrap": ["S", "M"], + "porphyry": ["M"], + "Sn": ["M"], + "suzerains": [], + "subtleties": [], + "braid's": [], + "erratas's": [], + "bout": ["M", "S"], + "pacifyinged": [], + "Jarlsberg's": [], + "patting": [], + "earbud's": [], + "imperfectness's": [], + "Marcus's": [], + "comicality's": [], + "uttering": [], + "shoal's": [], + "excellency's": [], + "douches's": [], + "Tippecanoe's": [], + "ftpings": [], + "carnivores's": [], + "manifolding's": [], + "Mesolithic": ["M"], + "Taoisms": [], + "comestibles": [], + "jerking": [], + "fake'sers": [], + "upsilon's": [], + "knickknack's": [], + "Hebraic's": [], + "triads": [], + "diagnosesing": [], + "waviness's": [], + "rents": [], + "saint's": [], + "heather": ["M"], + "chiropractor": ["S", "M"], + "Taurus'ses": [], + "Graffias": ["M"], + "package's": [], + "undersells": [], + "corset'sed": [], + "Purina": ["M"], + "toughing's": [], + "cosignsed": [], + "balanced": [], + "cogwheel's": [], + "clatter": ["G", "M", "D", "S"], + "Silurians": [], + "trickle'sing": [], + "takeoff'ses": [], + "tunneling": [], + "suckles": [], + "changeovers's": [], + "Bolshevist's": [], + "heliports": [], + "ranted": [], + "Fredrick's": [], + "Erna": ["M"], + "hefty": ["P", "R", "T"], + "suits": [], + "tumble'sers": [], + "hydrant's": [], + "traducers": [], + "nightie's": [], + "wagoners": [], + "centralizer": ["M", "S"], + "healthierness": [], + "doomsayer's": [], + "noting": [], + "Dow": ["M"], + "Absalom": ["M"], + "supranational": [], + "stupid": ["T", "M", "R", "Y", "S"], + "interfile": ["G", "D", "S"], + "Hayward's": [], + "dismally": [], + "Sparta": ["M"], + "wielding": [], + "Mameluke": ["M"], + "documenting's": [], + "oles": [], + "hostility's": [], + "sympathetic": ["U"], + "incrustations": [], + "Woodrow": ["M"], + "socialite": ["S", "M"], + "lyrebirds": [], + "subsidiary": ["S", "M"], + "phalli": [], + "monsoons's": [], + "Sat's": [], + "um": [], + "fortes": [], + "skinning": [], + "inventive": ["P", "Y"], + "Reese's": [], + "topographers's": [], + "managersing": [], + "middleman's": [], + "Toronto": ["M"], + "prescribeds": [], + "addicting": [], + "overhangs": [], + "berrying": [], + "nipple": ["M", "S"], + "strangler": ["M"], + "seismic": [], + "rigging": ["M"], + "capsular": [], + "day's": [], + "billowy": [], + "kilotons": [], + "Amenhotep": ["M"], + "darter": ["M"], + "Colin": ["M"], + "stodgiest": [], + "rhinestone": ["S", "M"], + "Ball": ["M"], + "wrongdoings": [], + "faddist": ["M", "S"], + "leatherette's": [], + "egocentrically": [], + "deficit": ["S", "M"], + "unbecoming": [], + "swallows's": [], + "catechizesing": [], + "raddled": [], + "thorns's": [], + "phagocyte": ["S", "M"], + "Carl's": [], + "Tesla's": [], + "mutteringings": [], + "happens": [], + "viaduct's": [], + "clavier": ["M", "S"], + "blabbermouth": ["M"], + "protrusion": ["M", "S"], + "stillbirth's": [], + "birdeder": [], + "Rothko's": [], + "breast": ["S", "M", "D", "G"], + "panda": ["S", "M"], + "stepson'ses": [], + "enlivenmented": [], + "repenteding": [], + "firstly": [], + "stifles": [], + "audible": ["M", "S"], + "pustular": [], + "nonsense": ["M"], + "teat": ["M", "S"], + "fumigateds": [], + "hunkering": [], + "bolster's": [], + "fantasized": [], + "sequestersed": [], + "Pretoria's": [], + "sonority": ["M"], + "credit's": [], + "pearls": [], + "strikings": [], + "cozened": [], + "tranches": [], + "blackmail's": [], + "acrophobia's": [], + "junco's": [], + "archiveds": [], + "snotty": ["T", "P", "R"], + "humanize": ["C", "D", "S", "G"], + "exorcists's": [], + "machismo": ["M"], + "trochees": [], + "capered": [], + "welkin": ["M"], + "bacchanalia's": [], + "shtick'ses": [], + "eponymous": [], + "sprockets": [], + "outclassed": [], + "Englishmen": ["M"], + "catalyzing": [], + "librettist'ses": [], + "taters": [], + "mukluk": ["M", "S"], + "sash": ["M", "S"], + "gewgaws's": [], + "dinnereding": [], + "overacts": [], + "buzzes": [], + "prohibitions's": [], + "cuticle": ["M", "S"], + "cums": [], + "interluded": [], + "rumination": ["M"], + "Velcro": ["M", "S"], + "certificates": [], + "workweeks": [], + "almshouse's": [], + "unpractical": [], + "drives's": [], + "rescue's": [], + "thirstier": [], + "newscast'ser": [], + "reimburses": [], + "teargas'ses": [], + "Clements's": [], + "union's": [], + "concupiscence's": [], + "uninarguable": [], + "attendant": ["S", "M"], + "Gracchus's": [], + "Caerphilly's": [], + "Sherrie": ["M"], + "monocular": [], + "colonialist": ["M", "S"], + "speedboats": [], + "bookbindery": ["S", "M"], + "boysenberries": [], + "frontiersmen": [], + "airfare's": [], + "chieftain": ["M", "S"], + "uracil's": [], + "mansion": ["M"], + "fluctuateds": [], + "Bolivia's": [], + "bowlerers": [], + "runways": [], + "Basutoland": ["M"], + "Roger'ses": [], + "unhappiest": [], + "highlighter's": [], + "Laura's": [], + "hosanna's": [], + "concise": ["R", "P", "Y", "T", "N"], + "descendinged": [], + "groin's": [], + "modishly": [], + "primpsing": [], + "reached": [], + "obstacle'ses": [], + "stalls": [], + "dunning": [], + "withers's": [], + "Christianities's": [], + "bulldozer's": [], + "their": ["S"], + "Cryptozoic's": [], + "emancipation": ["M"], + "groupersing": [], + "tracheotomy's": [], + "spiritedly": [], + "curfews": [], + "DST": [], + "comrade's": [], + "butteries": [], + "kitten": ["M", "S"], + "Phoenician": ["S", "M"], + "aspirant": ["M", "S"], + "vegetable's": [], + "Rush's": [], + "foresters": [], + "offtrack": [], + "cockleshells's": [], + "accretion'ses": [], + "thwartings": [], + "repetitiousliness": [], + "deistic": [], + "grouching's": [], + "blunders": [], + "automakers's": [], + "Goth": ["M"], + "conker": [], + "speciousness's": [], + "sheepdog's": [], + "minglesing": [], + "stet": ["S"], + "frequencies": [], + "Kelvin's": [], + "dulled": [], + "holds": [], + "welcome": ["M", "G", "D", "S"], + "sulked": [], + "fluxing": [], + "Darrow": ["M"], + "cossetting": [], + "foresighted": [], + "Yoruba": ["M"], + "dishtowel's": [], + "warmonger": ["S", "M", "G"], + "pagan's": [], + "colorant's": [], + "cheap": ["P", "X", "T", "N", "R", "Y"], + "Frenchman": ["M"], + "installer's": [], + "buckler's": [], + "nobbling": [], + "bounds's": [], + "enclave's": [], + "heartbreaks's": [], + "annexing": [], + "violincellos": [], + "Bird": ["M"], + "gruffest": [], + "sentiment": ["S", "M"], + "jabot's": [], + "Susan": ["M"], + "dairywomen": [], + "tactful": ["Y", "P"], + "enervation": ["M"], + "ninjas's": [], + "Mercedes's": [], + "Yokohama": ["M"], + "Miller's": [], + "codicils": [], + "hairsplitters": [], + "librarian's": [], + "quietener": [], + "jinrikishas": [], + "crevasse": ["S", "M"], + "coyotes's": [], + "presidency's": [], + "modelersing": [], + "palled": [], + "Fijian": ["M", "S"], + "Cowley's": [], + "factorized": [], + "curacies's": [], + "beat'sen": [], + "garrulousness's": [], + "gamely": [], + "stargazers": [], + "councils": [], + "blindeder": [], + "coffeecake's": [], + "salmon's": [], + "darknessens": [], + "Clair": ["M"], + "transducer's": [], + "licking's": [], + "Koreans": [], + "sympathy's": [], + "folly": ["S", "M"], + "peon's": [], + "fantasizinged": [], + "hypnotist'ses": [], + "heedlessness": ["M"], + "slaughter'sed": [], + "copying": [], + "iambic's": [], + "impressibility's": [], + "bumbag": ["S"], + "fogs": [], + "Styron": ["M"], + "Bud's": [], + "neoprene's": [], + "battleship's": [], + "banquets": [], + "diversities": [], + "Millie's": [], + "viticulture's": [], + "goes": [], + "redismember": [], + "frivolity's": [], + "zanies": [], + "tankful's": [], + "blamelessness's": [], + "employer": ["S", "M"], + "Presbyterians": [], + "immune": [], + "Martial's": [], + "earths": ["U"], + "toothpastes": [], + "concatenatesing": [], + "Austerlitz": ["M"], + "dissented": [], + "overstayed": [], + "daisies": [], + "sixties's": [], + "Hegel's": [], + "pink": ["T", "G", "P", "M", "D", "R", "S"], + "idealist": ["S", "M"], + "dryness's": [], + "tensing": [], + "trombone": ["M", "S"], + "pro's": [], + "yellowish": [], + "Bartholdi": ["M"], + "fortunes": [], + "families's": [], + "boohooing's": [], + "Altair": ["M"], + "buggier": [], + "loudest": [], + "squarest": [], + "phalangers": [], + "amputees": [], + "shadowing": [], + "faultfinders's": [], + "retina's": [], + "lancet's": [], + "estranging": [], + "coxswain": ["M", "S"], + "army's": [], + "hazards's": [], + "entreaty's": [], + "toenail's": [], + "mythology": ["S", "M"], + "Masai": ["M"], + "matchmaking": ["M"], + "anal": ["Y"], + "handball'ses": [], + "contaminator": ["S", "M"], + "obey": ["E", "D", "S", "G"], + "overeat": ["G", "S", "N"], + "bromine": ["M"], + "binary": ["S", "M"], + "illegal'sly": [], + "cancer'ses": [], + "surveying": ["M"], + "nipple's": [], + "Tlaloc": ["M"], + "trapper": ["S", "M"], + "Roxie's": [], + "Leonor's": [], + "trainspotters": [], + "reaped": [], + "overheateds": [], + "cancelsers": [], + "snot's": [], + "spades": [], + "Luxembourgers": [], + "bullring'ses": [], + "flyspeck's": [], + "boniness's": [], + "oafishness's": [], + "Roscoe": ["M"], + "waterfall's": [], + "stockyard's": [], + "pacemaker's": [], + "Sparks's": [], + "sandblasted": [], + "Burks's": [], + "airdrop": ["S", "M"], + "tripper": ["S", "M"], + "lief": ["R", "T"], + "slushiest": [], + "husker's": [], + "massage": ["D", "S", "M", "G"], + "subsidies": [], + "rattles": [], + "dubiety": ["M"], + "carbine": ["S", "M"], + "baptisteries's": [], + "geomagnetism": ["M"], + "tippets": [], + "spiracle": ["S", "M"], + "snarling": ["Y"], + "pita's": [], + "tuttis's": [], + "Suez's": [], + "lift's": [], + "laboring": [], + "relatedness's": [], + "confectionery's": [], + "navigator's": [], + "ma'am": [], + "absentmindedly": [], + "waggle's": [], + "astrologically": [], + "fittest": [], + "shininess": ["M"], + "Callao's": [], + "reed": [], + "Balboa": ["M"], + "Martinique": ["M"], + "benefactress'ses": [], + "payout's": [], + "enlargement'ses": [], + "tubing's": [], + "Sheryl's": [], + "shebang'ses": [], + "trumpery's": [], + "linkers": [], + "tamers": [], + "nonexplosive": ["M", "S"], + "devolve": ["D", "S", "G"], + "muzziness": [], + "consummationsed": [], + "vibraharp": ["S", "M"], + "keelhaulings": [], + "rotor's": [], + "daubeder": [], + "retard'sed": [], + "travail's": [], + "Medina's": [], + "rhododendron's": [], + "Kurdish": ["M"], + "Lorrie's": [], + "Perseid's": [], + "miller": ["M"], + "Olympics": ["M"], + "inferring": [], + "Faulknerian": ["M"], + "vaingloriously": [], + "farmeder": [], + "menses's": [], + "quartz's": [], + "formalin": [], + "Izvestia's": [], + "flippies": [], + "Octavian": ["M"], + "rhymed": [], + "retroactively": [], + "chrysalises": [], + "slights's": [], + "agingings": [], + "hall'ses": [], + "sectary's": [], + "millennial": ["M"], + "lithographers": [], + "shuttered": [], + "proves": [], + "sickest": [], + "thunks": [], + "initiatives's": [], + "notaries's": [], + "Buchwald": ["M"], + "dire": ["Y", "T", "R"], + "hovel": ["S", "M"], + "unfix": ["G", "D", "S"], + "Krishnamurti's": [], + "cousins's": [], + "sill'ses": [], + "regroupeding": [], + "hoicks": [], + "residuum's": [], + "phototropic": [], + "suffocated": [], + "barraging": [], + "Judy": ["M"], + "analyses": ["A"], + "communities's": [], + "loo": [], + "frosting": ["S", "M"], + "overdid": [], + "liters": [], + "decadentlies": [], + "washboards's": [], + "ripeliness": [], + "vestiges": [], + "Fed": ["S", "M"], + "Norseman's": [], + "saplings": [], + "scoreless": [], + "insanitary": [], + "duffed": [], + "frizzesly": [], + "surrealistic": [], + "philanthropy's": [], + "wattle": ["M", "G", "D", "S"], + "barreling": [], + "resultants's": [], + "longer": [], + "paragraphing": [], + "blimp": ["M", "S"], + "urinationed": [], + "White": ["S", "M"], + "beefburger": ["S", "M"], + "covens's": [], + "Eurodollar": ["S", "M"], + "distorting": [], + "miser's": [], + "tees's": [], + "gumdrops": [], + "infinitude's": [], + "billeted": [], + "axially": [], + "sisterly": ["P"], + "subareas": [], + "joke'sers": [], + "hows": [], + "disgrace": [], + "sleepyheads": [], + "cushion": ["M", "D", "S", "G"], + "scats": [], + "reveleder": [], + "wildcard": ["M", "S"], + "converters's": [], + "inexpediency": [], + "cabana": ["S", "M"], + "gasholders": [], + "misruleds": [], + "treasurer's": [], + "Starr": ["M"], + "scoff": ["M", "D", "R", "S", "Z", "G"], + "camera'ses": [], + "Caph": ["M"], + "roadsters": [], + "tranquilizeder": [], + "gimbals": ["M"], + "Mozambican's": [], + "nickers": [], + "unworkable": [], + "comber": ["M"], + "Reno's": [], + "disjuncture": [], + "apportionment's": [], + "bashfulnessly": [], + "Formica's": [], + "unzipping": [], + "agitationsing": [], + "psychoanalyst's": [], + "hydrolyze": ["D", "S", "G"], + "flannelette": ["M"], + "predictions": [], + "duplex": ["M", "S"], + "headpin's": [], + "bombarded": [], + "endeavor'sed": [], + "physiotherapists": [], + "endowing": [], + "clots": [], + "tastelessnessly": [], + "goldfish'ses": [], + "ninetieth": ["M"], + "pacific": [], + "carbuncular": [], + "north'ser": [], + "lanceder": [], + "tingle": ["D", "S", "M", "G", "J"], + "Rosecrans's": [], + "oligarch's": [], + "evangelical'sly": [], + "infirmary": ["S", "M"], + "Bisquick's": [], + "encomium's": [], + "percolation's": [], + "Erse's": [], + "thirstiness's": [], + "importuning": [], + "cipher's": [], + "small'ser": [], + "spongeder": [], + "irrationality": ["M"], + "troublemaker's": [], + "pileup's": [], + "McCray": ["M"], + "acquiescence's": [], + "amphora": ["M"], + "interview's": [], + "cafeterias": [], + "streamlining": [], + "saucy": ["R", "P", "T"], + "antecedence": ["M"], + "ineluctably": [], + "Pugh": ["M"], + "brandish": ["D", "S", "G"], + "partings": [], + "Amaru's": [], + "complainant": ["M", "S"], + "throats's": [], + "enticement'ses": [], + "pugilists's": [], + "decollete": [], + "tangelo'ses": [], + "sacrificing": [], + "more'ses": [], + "hoedowns's": [], + "Fallopian": ["M"], + "Fates": ["M"], + "cloned": [], + "skittishly": [], + "texts": [], + "Guiyang": ["M"], + "haul": ["M", "D", "R", "Z", "G", "S"], + "Leeuwenhoek": ["M"], + "electroscopes": [], + "preponderated": [], + "smooch": ["M", "D", "S", "G"], + "equivalence'ses": [], + "shootout'ses": [], + "inflictsed": [], + "Auden's": [], + "belletrist's": [], + "tatting's": [], + "Rigel's": [], + "literature": ["M"], + "dodge's": [], + "Kansas's": [], + "perfecta": ["M", "S"], + "shipyard": ["S", "M"], + "Velazquez's": [], + "uproar": ["S", "M"], + "consumerism": ["M"], + "possibly": [], + "weatherperson": ["M", "S"], + "branching's": [], + "heights": [], + "morphia": ["M"], + "growsing": [], + "adulterant's": [], + "marshland": ["S", "M"], + "columnar": [], + "gratuitous": ["Y", "P"], + "dales": [], + "Raul's": [], + "rockers": [], + "biophysicists": [], + "wineglass's": [], + "payout'ses": [], + "oxidant": ["M", "S"], + "entities": [], + "waffling": [], + "festooneds": [], + "throwersing": [], + "mountain": ["S", "M"], + "flankers": [], + "jocoseness": ["M"], + "ministries": [], + "pf": [], + "concaveness": ["M"], + "pronouncement's": [], + "clearingsness": [], + "megawatt'ses": [], + "dying's": [], + "psychotics": [], + "snoozes's": [], + "neocolonialists": [], + "tangerine's": [], + "intensively": [], + "arbitragers": [], + "golfer": ["M"], + "canvasback": ["S", "M"], + "kinsmen": [], + "relentinged": [], + "Padang": [], + "deb": ["S", "M"], + "hooligan'ses": [], + "Walesa": ["M"], + "undying": [], + "Chile's": [], + "profligate'sly": [], + "fallowed": [], + "pasty's": [], + "factoid's": [], + "crapshooter": ["M", "S"], + "muskrat": ["M", "S"], + "URLs": [], + "ataxic's": [], + "campaigner": ["M"], + "circuitous": ["Y", "P"], + "shallow'ser": [], + "junks": [], + "feistiest": [], + "churches": [], + "Bligh": ["M"], + "clustered": [], + "inimitably": [], + "chimp's": [], + "Aleutians": [], + "last's": [], + "specials's": [], + "clergywoman's": [], + "sitarist'ses": [], + "manatees's": [], + "panteds": [], + "Gill's": [], + "Emory's": [], + "havings": [], + "unwell": [], + "animalcule": ["S", "M"], + "selloff'ses": [], + "statement": ["A", "M", "S"], + "Hyundai": ["M"], + "redecorate": [], + "blubbers's": [], + "purred": [], + "burro's": [], + "Sucrets's": [], + "jimmy'sing": [], + "exasperates": [], + "birthstones": [], + "oddest": [], + "complexioned": [], + "Pasquale": ["M"], + "pattering": [], + "allies's": [], + "manacle": ["D", "S", "M", "G"], + "topdressing": ["S", "M"], + "Mylar": ["M", "S"], + "settlinged": [], + "cursor": ["S", "M"], + "elderberries": [], + "conceives": [], + "gowned": [], + "geneticists": [], + "prefabricateds": [], + "villeins's": [], + "clxvi": [], + "lamplight": ["M", "R", "Z"], + "widescreen's": [], + "tones": [], + "loquacity": ["M"], + "deployment's": [], + "superstore": ["M", "S"], + "neurologist's": [], + "barefaced": ["Y"], + "overstretcheds": [], + "cachets": [], + "Nikita": ["M"], + "mitral": [], + "carrycots": [], + "ascription's": [], + "overdosed": [], + "specified": ["U"], + "Lancaster": ["M"], + "engorged": [], + "Swanee's": [], + "gametic": [], + "essayists's": [], + "interceptor": ["S", "M"], + "micromanages": [], + "flirtatiousliness": [], + "taper's": [], + "sleepiest": [], + "highball": ["S", "M"], + "timbrel": ["S", "M"], + "bathrobes": [], + "facilely": [], + "fictitious": ["Y"], + "hosannas's": [], + "chattel's": [], + "treachery's": [], + "matchmaking's": [], + "Faust's": [], + "coherence's": [], + "dusts": [], + "implements": [], + "Communists": [], + "washboard": ["S", "M"], + "superimpose": ["G", "D", "S"], + "belch'sed": [], + "bemires": [], + "misplacement's": [], + "counteraction": ["M", "S"], + "twice": [], + "guacamole's": [], + "musket's": [], + "acquisitions": [], + "Bakunin": ["M"], + "throwers": [], + "vitalization": ["A", "M"], + "odor's": [], + "beaut's": [], + "spinelessliness": [], + "Motorola's": [], + "underwriter": ["M"], + "stodgily": [], + "charlatans's": [], + "assessment": ["A", "S", "M"], + "footstep's": [], + "flavoring's": [], + "gables": [], + "flippy": ["S"], + "POW": ["M"], + "rood'ses": [], + "tadpoles": [], + "intolerant": [], + "hellcat'ses": [], + "fad": ["G", "S", "M", "D"], + "malfunctions": [], + "FDR": ["M"], + "muck'sed": [], + "stamens": [], + "fluently": [], + "graders": [], + "Woolongong": ["M"], + "notoriety's": [], + "Clovis": ["M"], + "wry": ["Y"], + "falconerers": [], + "sidling": [], + "hydrants": [], + "jackass's": [], + "dormant": [], + "pavement's": [], + "alabaster": ["M"], + "germanium's": [], + "dosimeter's": [], + "valence'ses": [], + "rearrest": [], + "tb": ["S"], + "expenditure": ["S", "M"], + "emulatingen": [], + "octopus": ["M", "S"], + "coattails's": [], + "abacus'ses": [], + "easterly": ["S", "M"], + "Nepali's": [], + "mislabeling": [], + "ingest": ["S", "D", "G"], + "jackknifeds": [], + "classless": ["P"], + "fictive": [], + "candlestick'ses": [], + "womb": ["M", "S"], + "artificially": [], + "Livy's": [], + "tailors": [], + "aridly": [], + "snippets": [], + "prater": ["M"], + "properties's": [], + "Mona's": [], + "novena": ["M", "S"], + "rusteding": [], + "smelts's": [], + "councilpersons": [], + "phenomenally": [], + "fractious": ["Y", "P"], + "rapidly": [], + "roadsides's": [], + "igniteds": [], + "agriculture's": [], + "freeloads": [], + "storekeeper": ["S", "M"], + "blobbed": [], + "pointiest": [], + "housemen": [], + "blundererers": [], + "owlets": [], + "merganser's": [], + "polypropylene's": [], + "microelectronics": ["M"], + "aestheticism's": [], + "antecedence's": [], + "effluvium's": [], + "explanation'ses": [], + "risen": [], + "wowsing": [], + "palpating": [], + "Mosaic's": [], + "intercepting's": [], + "plummy": [], + "cannibalize": ["G", "D", "S"], + "coffee": ["S", "M"], + "dilutes": [], + "diameter's": [], + "flypapers's": [], + "soullessly": [], + "overplaying": [], + "lateness's": [], + "atoninged": [], + "patriot": ["S", "M"], + "checkerboards": [], + "docudramas's": [], + "depiction'ses": [], + "clotheslines's": [], + "barrage'sing": [], + "misgoverneding": [], + "conflagration": ["M", "S"], + "glycogen": ["M"], + "applicability": ["M"], + "peep": ["M", "D", "R", "S", "Z", "G"], + "hackle": ["M", "S"], + "terrarium's": [], + "linguine's": [], + "roughage's": [], + "potheads's": [], + "buckaroos": [], + "circumventing": [], + "educates": [], + "cattails's": [], + "liaises": [], + "ling's": [], + "tagline'ses": [], + "prearrangement": ["M"], + "lamplighterers": [], + "comedown's": [], + "divvies": [], + "griddles": [], + "ancestresses": [], + "unsightliest": [], + "broach": ["M", "D", "S", "G"], + "nondrying": [], + "Tyson's": [], + "Walsh": ["M"], + "conceitednessly": [], + "squatters": [], + "slayings": [], + "Mohawk": ["S", "M"], + "biosensors": [], + "cockscomb": ["S", "M"], + "spat'ses": [], + "resulting": [], + "baa": ["S", "M", "D", "G"], + "wannabes's": [], + "retweet": [], + "fruit's": [], + "dunking": [], + "flashgun's": [], + "shoppe": ["M", "Z", "G", "D", "R", "S"], + "deviations": [], + "Percy's": [], + "musclebound": [], + "buying": [], + "innocent'sly": [], + "convincingly": [], + "reunion": [], + "Devon's": [], + "salsas": [], + "multitask": ["G", "S"], + "coinsurance's": [], + "loam's": [], + "Mamet's": [], + "asps": [], + "bobbles": [], + "floods's": [], + "tabulates": [], + "Marjory": ["M"], + "bonkersing": [], + "obstructiveness": ["M"], + "complexion'sed": [], + "nosheder": [], + "tracingsed": [], + "reconnaissances": [], + "muteness": ["M"], + "adjudicator's": [], + "blonds": [], + "poultice'sing": [], + "Ruchbah": ["M"], + "Peary's": [], + "wove": ["A"], + "guitar'ses": [], + "allow": ["E", "G", "D", "S"], + "bulldogging": [], + "Nepali'ses": [], + "silkiest": [], + "Gatorade": ["M"], + "edible'sness": [], + "pincushion's": [], + "rash": ["Z", "T", "M", "R", "S", "Y", "P"], + "savageness": ["M"], + "lakes": [], + "Durante": ["M"], + "inertliness": [], + "bolero": ["M", "S"], + "anorexic's": [], + "costarring": [], + "Norths": [], + "hast": ["D", "N", "X", "G"], + "snobbery's": [], + "lead'sed": [], + "counterrevolutionary's": [], + "oik": ["S"], + "helves": [], + "becalms": [], + "bargainersing": [], + "swap": ["M", "S"], + "nomenclature's": [], + "Watkins's": [], + "headmistress's": [], + "prevaricating": [], + "dram'ses": [], + "woodsy": ["R", "T", "P"], + "luxuriatesing": [], + "Burgundy": ["S", "M"], + "ponytail'ses": [], + "Mueller's": [], + "crueler": [], + "limps": [], + "precipitateds": [], + "smuggles": [], + "deckle": ["S"], + "beseech": ["Z", "G", "R", "S"], + "skirmishersing": [], + "timestamp's": [], + "simplify": ["D", "S", "X", "N", "G"], + "ruckeding": [], + "transferable": [], + "eyeless": [], + "Alaska": ["M"], + "nonspecializing": [], + "smokier": [], + "extreme'sly": [], + "incongruousness": ["M"], + "asphyxiatingen": [], + "subjectivity": ["M"], + "wellspring": ["M", "S"], + "confessions": [], + "invariability": [], + "gibberinged": [], + "eked": [], + "bezel's": [], + "gang": ["M", "D", "G", "S"], + "concept's": [], + "swabs": [], + "rentersing": [], + "Shetlands": ["M"], + "dehydrator's": [], + "chastisersing": [], + "perfecting": [], + "undecideds's": [], + "Krakow": ["M"], + "soberness": ["M"], + "fibers": [], + "hassleds": [], + "backstabber's": [], + "Natalia": ["M"], + "sousaphone's": [], + "dynamos": [], + "nervelessly": [], + "empyrean's": [], + "Poirot": ["M"], + "paintbrushes": [], + "gentrifieds": [], + "dormitories's": [], + "synchronizations's": [], + "dessertspoonfuls": [], + "recantsed": [], + "basksing": [], + "MCI": ["M"], + "lambasting": [], + "bloke'ses": [], + "druids": [], + "cantilevers": [], + "depraveds": [], + "antitrust": [], + "aeronautics's": [], + "modals": [], + "Guthrie": ["M"], + "lymphocyte's": [], + "modernism's": [], + "homophone's": [], + "consummately": [], + "ginormous": [], + "forfeits": [], + "townhouse'ses": [], + "timekeeper": ["M", "S"], + "San": ["M"], + "foxhounds": [], + "grebes": [], + "Galilee's": [], + "affluent": ["Y"], + "verificationing": [], + "intrigues": [], + "reequipping": [], + "vertical's": [], + "paceder": [], + "gurgling": [], + "corkscrew": ["S", "M", "D", "G"], + "direful": [], + "Bernese": [], + "Himmler's": [], + "Jackie": ["M"], + "cirrus's": [], + "scabbed": [], + "repertoire's": [], + "duns": [], + "ens's": [], + "heath": ["M", "N", "R", "X"], + "joyriding's": [], + "Illuminati": ["M"], + "hafnium": ["M"], + "subprofessional": ["S", "M"], + "primes": [], + "Delbert's": [], + "bailsmen": [], + "filtereder": [], + "weir": ["M", "S"], + "ESR": [], + "Franck": ["M"], + "statuesque": [], + "infected": ["U"], + "uxorious": [], + "former's": [], + "sake's": [], + "Fry's": [], + "wrinkles": [], + "chiaroscuro": ["M"], + "toads": [], + "Levi's": [], + "killersing": [], + "welt'sed": [], + "senility": ["M"], + "impacteding": [], + "residual's": [], + "highlighterers": [], + "spiral": ["S", "G", "M", "D", "Y"], + "greed's": [], + "washier": [], + "Marty's": [], + "stirred": [], + "unwritten": [], + "wayfarings": [], + "syndicateds": [], + "shouted": [], + "marking's": [], + "philosophy's": [], + "intervention's": [], + "IL": [], + "trashcan'ses": [], + "scarifies": [], + "pyrotechnical": [], + "equipped": ["U", "A"], + "exposing": [], + "paradoxically": [], + "Cantrell": ["M"], + "motherfucker": ["M", "S", "!"], + "yelleds": [], + "Herder": ["M"], + "shiv": ["Z", "M", "R", "S"], + "conclusion's": [], + "towboat'ses": [], + "mavens's": [], + "lieutenancy's": [], + "migrant": ["M", "S"], + "incontinence": [], + "roarers": [], + "oddity": ["S", "M"], + "ordinal's": [], + "stratified": [], + "bulls": [], + "Susana": ["M"], + "pluralized": [], + "shipwright": ["M", "S"], + "fairways": [], + "poacheder": [], + "incorporation": ["A", "M"], + "bodged": [], + "nominatingen": [], + "scull's": [], + "iceds": [], + "funnies's": [], + "reflex": [], + "windsock'ses": [], + "skived": [], + "phobic": ["M", "S"], + "laundry": ["S", "M"], + "chrysalis": ["M", "S"], + "row's": [], + "swansongs": [], + "windrows's": [], + "secs's": [], + "snoopy": ["T", "R"], + "foulard's": [], + "spates": [], + "grandam'ses": [], + "vending": [], + "saneness's": [], + "timbered": [], + "decibel'ses": [], + "contrast'sed": [], + "correspondeding": [], + "masseurs's": [], + "timothy": ["M"], + "norm": ["M", "S"], + "vestmented": [], + "galleria": ["M", "S"], + "jujitsu's": [], + "bequeathed": [], + "barmaids": [], + "travesties's": [], + "spooks": [], + "experimentation's": [], + "snowboardersing": [], + "uptown's": [], + "Calvert": ["M"], + "basques": [], + "windburned": [], + "outwardly": [], + "sprayer's": [], + "jugular": ["S", "M"], + "wakeds": [], + "Gutierrez's": [], + "fettered": [], + "plainsmen": [], + "inauguration": ["M"], + "Holland'ser": [], + "ventricles's": [], + "calicoes": [], + "lacquering": [], + "incrustation": ["S", "M"], + "crediting": [], + "lined": ["U"], + "touchscreen's": [], + "Dorian's": [], + "firetrap's": [], + "lobotomized": [], + "Allan's": [], + "chundereds": [], + "immobilizer": [], + "twisty": ["T", "R"], + "fishtails": [], + "dampeden": [], + "nosedives's": [], + "B": ["M", "N", "T"], + "misbehaves": [], + "anticyclone's": [], + "estruses": [], + "investigatory": [], + "battalions": [], + "baffleder": [], + "haciendas": [], + "wittiness": ["M"], + "rappels": [], + "bigamy's": [], + "Palmyra's": [], + "steadfastness": ["M"], + "trammeling": [], + "Caliban": ["M"], + "sweet": ["X", "T", "S", "M", "N", "R", "Y", "P"], + "summary's": [], + "way's": [], + "hypothyroid's": [], + "Heather's": [], + "bind's": [], + "pussier": [], + "latecomer'ses": [], + "warblersing": [], + "preponderatinged": [], + "expurgatesing": [], + "stiffening": ["M"], + "supplicate": ["G", "D", "S"], + "tyro": ["M", "S"], + "clotheshorses": [], + "bounders's": [], + "cliquey": [], + "herb'ses": [], + "shortage'ses": [], + "cockfight": ["M", "G", "S"], + "preclusion": ["M"], + "Shropshire": ["M"], + "oafishness": ["M"], + "stranding": [], + "penis's": [], + "oregano": ["M"], + "adsorbents": [], + "gazers": [], + "sky": ["G", "S", "M"], + "negativelying": [], + "appendices": [], + "clergyman's": [], + "ranches": [], + "uninstallers": [], + "yearlies": [], + "stepmom's": [], + "catchword": ["M", "S"], + "Afghan's": [], + "lightning": ["M", "D", "S"], + "Caerphilly": ["M"], + "valentines": [], + "beatingable": [], + "murdering": [], + "verbose": ["Y"], + "stepmom": ["M", "S"], + "chiaroscuro's": [], + "spoons's": [], + "bankroll's": [], + "prevarication": ["M"], + "cursive": ["E", "A", "Y"], + "Steiner": ["M"], + "peddleder": [], + "slurps": [], + "superabundance'ses": [], + "imprisonment": ["S", "M"], + "amplified": [], + "verdure's": [], + "crevasses's": [], + "cord": ["E", "A", "S", "G", "D", "M"], + "agglutination": ["M"], + "manuringed": [], + "drivel's": [], + "bloodline's": [], + "chilliness's": [], + "claques": [], + "scouter": [], + "demise'sing": [], + "Andaman": ["M"], + "tenderloins": [], + "Roberta's": [], + "postal": [], + "azalea": ["S", "M"], + "impunity's": [], + "cot": ["S", "M"], + "sulfureds": [], + "Decalogue": ["M"], + "Fugger": ["M"], + "newsprint": ["M"], + "ossifyinged": [], + "gamete": ["S", "M"], + "cane": ["S", "M"], + "swattereding": [], + "wildflower": ["S", "M"], + "systemics": [], + "crepe": ["S", "M"], + "melloweder": [], + "hairsbreadths": [], + "bodysuits's": [], + "simpletons's": [], + "crimsoneding": [], + "hassles": [], + "Aleut's": [], + "facetious": ["Y", "P"], + "paramecium's": [], + "complimented": [], + "archeder": [], + "festive": ["Y", "P"], + "rickshaw": ["M", "S"], + "Pecos's": [], + "diagnosis": ["M"], + "reading": ["M"], + "logoffs's": [], + "mesa's": [], + "acteding": [], + "translating": [], + "sublimation": ["M"], + "squeak's": [], + "ideograms's": [], + "jerk'sed": [], + "mailbox": ["M", "S"], + "novelettes": [], + "labor's": [], + "Olga": ["M"], + "Hermitage's": [], + "Delhi's": [], + "swagging": [], + "knockoff": ["S", "M"], + "Upton's": [], + "twine": ["S", "M"], + "Myanmar's": [], + "stories": [], + "napalmeds": [], + "comedies": [], + "prowlsers": [], + "Uruguay's": [], + "tweed": ["S", "M"], + "Afrikaners": [], + "selfies's": [], + "Scotsmen": ["M"], + "God's": [], + "mignonette": ["S", "M"], + "setter": ["M"], + "frowns's": [], + "tutorial's": [], + "swell'sed": [], + "credenza's": [], + "blendersing": [], + "Khoisan's": [], + "stationery's": [], + "nurturing": [], + "monastics": [], + "egos": [], + "thalamus's": [], + "Lauri": ["M"], + "prejudice": ["M", "G", "D", "S"], + "vivisectings": [], + "philanthropist's": [], + "onyxes": [], + "breakthrough's": [], + "Teflons": [], + "teachers": [], + "skirts": [], + "pulse": ["A", "M", "G", "D", "S"], + "honking": [], + "blazers": [], + "tromps": [], + "barracked": [], + "filberts": [], + "whereupon": [], + "veered": [], + "scrunchies's": [], + "drunkenness": ["M"], + "jumpers": [], + "Cajun'ses": [], + "creosotes": [], + "quilters": [], + "senoritas": [], + "wrongerly": [], + "breathes": [], + "employable": ["U"], + "tangible": ["I", "M", "S"], + "scaleds": [], + "sifter": ["M"], + "proprietorship": ["M"], + "overclouded": [], + "railings's": [], + "blanklies": [], + "stabilizer": ["M", "S"], + "giddy": ["R", "T", "P"], + "impelling": [], + "Schweppes": ["M"], + "muzzle's": [], + "bodega": ["M", "S"], + "fishponds": [], + "hallow": ["D", "S", "G"], + "deceiver": ["M", "S"], + "Saunders": ["M"], + "hurtfulliness": [], + "stack'sed": [], + "averers": [], + "haircuts's": [], + "anesthetizinged": [], + "dictatorial": ["Y"], + "shopping's": [], + "limit": ["C", "S", "Z", "G", "D", "R"], + "wafer": ["S", "M"], + "Cora's": [], + "mopersing": [], + "urbanization": ["M"], + "vest": ["I", "L", "D", "G", "S"], + "Guerrero": ["M"], + "coverlets": [], + "sidles": [], + "laborers": [], + "spacesuit's": [], + "yurt's": [], + "sachems": [], + "atolls": [], + "unman": [], + "brighteneder": [], + "predesignating": [], + "antiquarian's": [], + "catered": [], + "Depp": ["M"], + "earthly": ["R", "T"], + "Baku": ["M"], + "praline's": [], + "zebras's": [], + "bricks": [], + "heavy": ["R", "S", "M", "T", "P"], + "trawlers": [], + "excellent": ["Y"], + "alphabetized": [], + "punt": ["Z", "G", "M", "D", "R", "S"], + "civilian's": [], + "hardheadednessly": [], + "Lady": ["M"], + "impregnability": ["M"], + "cleanser's": [], + "Sheree": ["M"], + "grained": [], + "sorrowfulness's": [], + "anguish": ["G", "M", "D", "S"], + "homosexual's": [], + "duplexes": [], + "frowns": [], + "debauch'sed": [], + "goodlier": [], + "dinner'sed": [], + "attenders": [], + "untalented": [], + "shamed": [], + "obscurities's": [], + "lightship": ["M", "S"], + "angrily": [], + "Malagasy": ["M"], + "blackmailsers": [], + "devoutnesser": [], + "matters": [], + "widowing": [], + "nonpartisan": ["S", "M"], + "admissibility's": [], + "profiteerings": [], + "travesties": [], + "interlopers": [], + "treetops": [], + "worshipful": [], + "heathendom's": [], + "mensurable": [], + "memorials's": [], + "freakiest": [], + "crouches": [], + "teachablings": [], + "typist's": [], + "condemneder": [], + "Torrens's": [], + "terrorism": ["M"], + "reequip": [], + "prawn": ["M", "D", "S", "G"], + "cleansersing": [], + "reptile": ["S", "M"], + "chick": ["X", "M", "N", "S"], + "biotin's": [], + "staggereding": [], + "Copeland's": [], + "nutrient's": [], + "mediateds": [], + "importuned": [], + "swedes": [], + "kneed": [], + "gloom": ["M"], + "frustum'ses": [], + "sectioning": [], + "vicissitudes's": [], + "snooper's": [], + "fracture's": [], + "diffusion": ["M"], + "casserole'sing": [], + "Medina": ["M"], + "transmitter": ["S", "M"], + "performances": [], + "Jonathan": ["M"], + "bonniest": [], + "dandies's": [], + "hardliner": ["M", "S"], + "Krakatoa's": [], + "credential'sed": [], + "withstandings": [], + "freshers": [], + "gurus": [], + "brownie": ["M", "S"], + "exposes's": [], + "workhorses's": [], + "monstrosity": ["S", "M"], + "revelation's": [], + "O'Brien's": [], + "blankness": ["M"], + "goldmine": ["S", "M"], + "weekending's": [], + "italicization": ["M"], + "Lucius": ["M"], + "burbles's": [], + "rallieds": [], + "who'll": [], + "moos": [], + "vibration": ["M"], + "complainants": [], + "Shakespeare's": [], + "rupture's": [], + "Ballard's": [], + "metricates": [], + "intoner": [], + "percentile's": [], + "sheathe": ["U", "G", "D", "S"], + "dugout'ses": [], + "quakes": [], + "laudsing": [], + "goofballs": [], + "morocco": ["M"], + "Bass": ["M"], + "placid": ["Y"], + "heehaws's": [], + "blundered": [], + "carbines's": [], + "chariot": ["S", "M"], + "unbuckle": [], + "matricides": [], + "stalwart's": [], + "archfiend'ses": [], + "personal": ["M", "Y", "S"], + "bassoon's": [], + "scooping": [], + "sunscreen'ses": [], + "milady": ["S", "M"], + "submersed": [], + "raved": [], + "Huitzilopotchli's": [], + "typhoon'ses": [], + "temptations": [], + "zodiacal": [], + "extrapolate": ["X", "G", "N", "D", "S"], + "turtledove's": [], + "tossup'ses": [], + "mental": ["Y"], + "frazzle's": [], + "worker'ses": [], + "reverberating": [], + "Brits's": [], + "chimpanzees's": [], + "Rudolf": ["M"], + "pippins": [], + "gauntlets": [], + "majordomo'ses": [], + "walleyeds": [], + "Canaveral": ["M"], + "waiving": [], + "skiving": [], + "arctic's": [], + "disreappoint": [], + "labyrinthine": [], + "ruched": [], + "spaniels's": [], + "former": ["F", "I", "A", "M"], + "juveniles's": [], + "sweetmeat": ["M", "S"], + "clampdown's": [], + "scenario'ses": [], + "canine'ses": [], + "hubcap's": [], + "symbioses": [], + "uncontrollably": [], + "disfranchisement's": [], + "heist": ["S", "M", "D", "G"], + "equally": [], + "Geoffrey's": [], + "cavil's": [], + "monopolizers": [], + "sheepskin": ["M", "S"], + "adobes": [], + "salutation": ["M", "S"], + "strati": [], + "underfoot": [], + "portrayal's": [], + "seceded": [], + "adhesion's": [], + "carbides's": [], + "deputeds": [], + "barhopped": [], + "oversight": ["S", "M"], + "croquettes's": [], + "winemaker'ses": [], + "stepson's": [], + "dewdrop's": [], + "convictions": [], + "inception": ["S", "M"], + "buzzard's": [], + "sierra's": [], + "suture's": [], + "Ca's": [], + "Gingrich": ["M"], + "protestations": [], + "intern": ["G", "D", "L"], + "kirsch's": [], + "Canaanite'ses": [], + "unusable": [], + "Scythian's": [], + "offertories": [], + "griffon": ["S", "M"], + "unhallowed": [], + "liqueur's": [], + "bruises": [], + "murdering's": [], + "Bedouin's": [], + "afters": [], + "summonsing's": [], + "brutality's": [], + "Requiems": [], + "estrus": ["M", "S"], + "septet": ["S", "M"], + "cheesed": [], + "contortionist": ["S", "M"], + "cripplers": [], + "cult": ["M", "S"], + "harassmenters": [], + "bunted": [], + "snootiness": ["M"], + "puffiness's": [], + "passwords": [], + "AB": ["M"], + "normalcy's": [], + "Prudence": ["M"], + "loge": ["M", "S"], + "archdeacons's": [], + "personal's": [], + "booster": ["M"], + "preferential": ["Y"], + "heptagon": ["M", "S"], + "prevention's": [], + "bellyaching": [], + "spammer": ["S", "M"], + "adapt": ["B", "Z", "G", "V", "D", "R", "S"], + "maillots's": [], + "Carthaginian's": [], + "postmark'sed": [], + "murkier": [], + "torte's": [], + "tormentor'ses": [], + "potable's": [], + "anodize": ["G", "D", "S"], + "twitches": [], + "pursuer's": [], + "depot": [], + "Tiresias": ["M"], + "rad": ["S", "M"], + "Fermi's": [], + "Gilbert": ["M"], + "tiller's": [], + "swooshesing": [], + "Photostat'ses": [], + "swiftness's": [], + "compellingly": [], + "trombonist's": [], + "inceptions's": [], + "dividend's": [], + "irrigation's": [], + "epileptic": ["S", "M"], + "gleaming": [], + "blissfulliness": [], + "twaddle'sers": [], + "bidet's": [], + "Ramos's": [], + "authoritatively": [], + "puffy": ["P", "R", "T"], + "Stern's": [], + "dodder's": [], + "roughhouse's": [], + "Huff": ["M"], + "shippers": [], + "Swift": ["M"], + "Josue's": [], + "Vegemite": ["M"], + "twirls": [], + "Annapurna's": [], + "ambivalence's": [], + "toxic": [], + "clubfooted": [], + "impetuousliness": [], + "rectors's": [], + "rouge's": [], + "death": ["M", "Y"], + "recorder'ses": [], + "putrefied": [], + "defroster'ses": [], + "emptieder": [], + "cardiologists": [], + "braggart's": [], + "transpose": ["D", "S", "G"], + "limestone": ["M"], + "Salish": ["M"], + "thickness": ["M", "S"], + "reverencing": [], + "radial'sly": [], + "connection's": [], + "Bombay's": [], + "ungentlemanly": [], + "molester": ["M"], + "doorstepping": [], + "debatable's": [], + "curative's": [], + "sedate": ["D", "R", "S", "Y", "T", "G", "N", "V", "P"], + "grimaceds": [], + "zapping": [], + "clock's": [], + "thereafter": [], + "quadruple's": [], + "Fukuyama's": [], + "Barnard": ["M"], + "Bowen": ["M"], + "octet": ["S", "M"], + "Chimera'ses": [], + "knifeds": [], + "pawpaw'ses": [], + "significantly": [], + "doorstop'ses": [], + "eternities's": [], + "afterlife": ["M"], + "dishonesty": [], + "splotch'sed": [], + "worthless": ["P", "Y"], + "tumidity": ["M"], + "shots": [], + "inflecteding": [], + "lecturersing": [], + "crotchet's": [], + "skydiveder": [], + "supplements": [], + "articulationness": [], + "representinged": [], + "girderers": [], + "fucks's": [], + "impressed": ["U"], + "slave's": [], + "awaiting": [], + "Washingtonian": ["M", "S"], + "surfeiteds": [], + "Mahler's": [], + "dateline": ["M", "G", "D", "S"], + "sealed": [], + "decry": ["G", "D", "S"], + "warlords": [], + "Hungarians's": [], + "atypically": [], + "vintner": ["M", "S"], + "Patty's": [], + "emery's": [], + "workup": ["M", "S"], + "thermostatic": [], + "do": ["S", "J", "M", "R", "H", "Z", "G"], + "Iliads": [], + "Kazantzakis's": [], + "paroleds": [], + "founding": [], + "babble'sers": [], + "colophon": ["S", "M"], + "neurosurgeons": [], + "irrigatesing": [], + "condistend": [], + "tanbark": ["M"], + "manipulate": ["X", "G", "N", "V", "D", "S"], + "coypu's": [], + "vocalizeds": [], + "RFC": ["S"], + "moper": ["M"], + "cowl'sing": [], + "courier's": [], + "earthworm'ses": [], + "Babylonia": ["M"], + "Kornberg's": [], + "amiability's": [], + "kilteder": [], + "Oligocene's": [], + "rapprochements": [], + "exhibit'sed": [], + "serum": ["M", "S"], + "chilling": ["Y"], + "cerebellums's": [], + "flatcars": [], + "sunscreens": [], + "priorities's": [], + "sari": ["M", "S"], + "abasing": [], + "Shillong's": [], + "lunge": ["S", "M"], + "reduce": ["D", "R", "S", "Z", "G"], + "good": ["M", "Y", "S", "P"], + "germination's": [], + "enjoyed": [], + "Defoe": ["M"], + "mail'sed": [], + "soother": ["M"], + "chaffinch'ses": [], + "Prague's": [], + "Roquefort": ["S", "M"], + "playtime's": [], + "grafts": [], + "foreordains": [], + "moseysing": [], + "crayfish'ses": [], + "maidenly": [], + "drippiest": [], + "paddler": ["M"], + "jackboot's": [], + "pastas's": [], + "Henri": ["M"], + "quadruplicates": [], + "bibles": [], + "Siberia": ["M"], + "peopling": [], + "lazeds": [], + "Hannah": ["M"], + "rankleds": [], + "livable": ["U"], + "sleepwalkeder": [], + "Mongols's": [], + "Nate": ["M", "N"], + "gatecrashing": [], + "boom'sed": [], + "forestland": ["M"], + "condetestable": [], + "sin": ["A", "S", "M"], + "ultralight": ["S", "M"], + "Marylander's": [], + "estrous": [], + "governor's": [], + "redislocate": [], + "autopsieds": [], + "pridefully": [], + "Opposition": [], + "headmasters's": [], + "staidnesser": [], + "sages": [], + "delightful": ["Y"], + "sponge": ["D", "R", "S", "M", "Z", "G"], + "lionizes": [], + "interrelation": ["M"], + "maracas": [], + "seamounts": [], + "havoc's": [], + "Pontchartrain's": [], + "listlessly": [], + "Dominica": ["M"], + "gunship's": [], + "portioning": [], + "saunter's": [], + "Tamil'ses": [], + "surfersing": [], + "briber": ["M"], + "miser'sly": [], + "interactsing": [], + "inked": [], + "unspent": [], + "rascal": ["S", "M", "Y"], + "hyperactivity's": [], + "traitor's": [], + "screwball": ["M", "S"], + "oatcake": ["S", "M"], + "churchgoer's": [], + "neurotransmitter": ["S", "M"], + "violoncellist": ["S", "M"], + "NF": [], + "shrive": ["G", "D", "S"], + "clop'ses": [], + "munchies": ["M"], + "Seiko's": [], + "tourneys": [], + "rancorously": [], + "paralyses": [], + "feedback's": [], + "centrality's": [], + "illiterate's": [], + "inspector's": [], + "Pribilof": ["M"], + "electable": [], + "packsaddle": ["M", "S"], + "photons": [], + "resentment's": [], + "refortify": ["G", "D", "S"], + "talky": [], + "follower's": [], + "Sigurd": ["M"], + "upbraidsing": [], + "tribeswoman's": [], + "kowtows": [], + "lapping": [], + "malediction's": [], + "Coloradans": [], + "monomers's": [], + "troughs": [], + "monopolistic": [], + "kahunas": [], + "disagree": [], + "compensationsing": [], + "admonisheds": [], + "baronesses": [], + "Camry": ["M"], + "browsers": [], + "vestigial": ["Y"], + "overextend": ["D", "G", "S"], + "Milanese": [], + "teacup'ses": [], + "dowered": [], + "unflappably": [], + "Derby's": [], + "chrominged": [], + "valiant": ["Y"], + "Charlotte": ["M"], + "ballyhooing": [], + "trophy": ["S", "M"], + "cumin": ["M"], + "shoved": [], + "mesquites's": [], + "weapon'ses": [], + "fire'ses": [], + "paired": ["U"], + "pleurae": [], + "gigantic": [], + "winches": [], + "waitress": ["M", "S"], + "millstream's": [], + "supererogation": ["M"], + "editorship": ["M"], + "tensionens": [], + "cutout": ["S", "M"], + "grudge's": [], + "editors's": [], + "speechify": ["D", "S", "G"], + "Maldive's": [], + "racketeered": [], + "peristyle": ["S", "M"], + "Ptolemies's": [], + "shiitake's": [], + "rivaled": ["U"], + "monocle's": [], + "atrocity": ["S", "M"], + "Bell": ["M"], + "crosspatch's": [], + "shipboard'ses": [], + "buggiers": [], + "greyhound": ["S", "M"], + "Lent": ["S", "M", "N"], + "gridlock's": [], + "Ch": ["N"], + "describable": ["I"], + "undulationsing": [], + "apothegms": [], + "Pius's": [], + "asserting": [], + "Scotswomen's": [], + "Beck's": [], + "right's": [], + "mechanically": [], + "restaurant's": [], + "calumet": ["M", "S"], + "tattie": [], + "husksers": [], + "maltiest": [], + "neckline'ses": [], + "transmuteds": [], + "washstand": ["S", "M"], + "ramrod's": [], + "barker": ["S", "M"], + "televise": ["X", "G", "N", "D", "S"], + "objectors": [], + "northerlies": [], + "endless": ["P", "Y"], + "phylum": ["M"], + "leaden": [], + "foreheads": [], + "dose": ["M", "G", "D", "S"], + "prep'ses": [], + "Edna's": [], + "hygrometers": [], + "rougher": [], + "clarionings": [], + "unimposing": [], + "supersededs": [], + "fiasco's": [], + "underpinning's": [], + "dynasty": ["S", "M"], + "climatology's": [], + "strengthen": ["A", "G", "D", "S"], + "mainland's": [], + "barnacleds": [], + "tricycle": ["S", "M"], + "weave's": [], + "valentine": ["S", "M"], + "proper's": [], + "touchingly": [], + "grumpy": ["P", "R", "T"], + "downeder": [], + "Baluchistan": ["M"], + "expropriatingen": [], + "conferee's": [], + "intenser": [], + "entices": [], + "cramp": ["S", "M", "D", "G"], + "Boeing's": [], + "fustier": [], + "oils": [], + "facials's": [], + "lacksing": [], + "SAT": [], + "subscript's": [], + "psychopathology": [], + "renascent": [], + "fetchingly": [], + "avows": [], + "derv": [], + "sobriquets's": [], + "grandest": [], + "recommend": [], + "convinced": ["U"], + "prepare": ["G", "D", "S"], + "mackerels": [], + "birth's": [], + "Theravada's": [], + "sippers's": [], + "Salerno": ["M"], + "nondeliveries's": [], + "assignation's": [], + "outsells": [], + "retrospection": ["M"], + "intimatesens": [], + "folklorist's": [], + "cruisersing": [], + "allayinged": [], + "Walter": ["M"], + "signer": ["C", "M", "S"], + "canceled": [], + "threads": [], + "expository": [], + "stammerersing": [], + "Battle": ["M"], + "unfeeling": ["Y"], + "gremlins": [], + "infinitesimals": [], + "Kerouac": ["M"], + "adolescents": [], + "blissfully": [], + "culvert": ["M", "S"], + "plonksers": [], + "garbanzos's": [], + "useds": [], + "penchants": [], + "Ghibelline's": [], + "heaven's": [], + "exportation": ["M"], + "contemporary": [], + "nonporous": [], + "Hellene": ["S", "M"], + "marmosets's": [], + "periodicity's": [], + "nattiness's": [], + "mackerel's": [], + "acidify": ["G", "D", "S"], + "Revlon": ["M"], + "Confederacy's": [], + "amoxicillin": [], + "disc": ["M"], + "asseverates": [], + "exited": [], + "secondarily": [], + "average": ["M", "Y", "G", "D", "S"], + "tyrannies's": [], + "atomized": [], + "who'd": [], + "retrorocket'ses": [], + "benefit'sed": [], + "Niccolo's": [], + "pieces": [], + "invite'sing": [], + "babes": [], + "Berlioz": ["M"], + "pistons's": [], + "covert'sly": [], + "arriving": [], + "fleece": ["M", "Z", "G", "D", "R", "S"], + "adequate": ["I", "Y"], + "sanctifieds": [], + "reprovocation": [], + "motionses": [], + "channel's": [], + "freelance'sers": [], + "axioms": [], + "strop": ["S", "M"], + "Oran's": [], + "saturates": [], + "sightseer's": [], + "Mouthe": ["M"], + "schnitzel": ["S", "M"], + "substituting": [], + "siftersing": [], + "milliliter": ["M", "S"], + "misanthropy": ["M"], + "blunteder": [], + "LLD's": [], + "plagiarizer": ["M"], + "impediments": [], + "enthusiast's": [], + "Henrik": ["M"], + "vouchsafesing": [], + "UTC": [], + "edelweiss": ["M"], + "talkier": [], + "time": ["M", "Y", "Z", "G", "J", "D", "R", "S"], + "locale": ["M", "S"], + "maharajah's": [], + "rescinds": [], + "remediation": [], + "endowedment": [], + "firmaments's": [], + "assiduity's": [], + "letdown": ["S", "M"], + "regimens": [], + "canvasseder": [], + "battleaxe": ["M", "S"], + "tutelary": [], + "regiment": ["M", "D", "G", "S"], + "regatta's": [], + "overproduced": [], + "hoarier": [], + "capsizes": [], + "optimizes": [], + "hatcheries's": [], + "gumption's": [], + "undertaking's": [], + "eeriness": ["M"], + "masc": [], + "millimeter'ses": [], + "stuntman": [], + "Fridays": [], + "headhunting's": [], + "terribleness's": [], + "corral": ["S", "M"], + "km": [], + "Nyerere's": [], + "artifacts": [], + "shepherds": [], + "swingersing": [], + "corroded": [], + "emotionalism's": [], + "Mozart's": [], + "monocles's": [], + "Lucian": ["M"], + "Zyuganov's": [], + "entertainersing": [], + "zircon'ses": [], + "initiation": ["M"], + "ingratiatingen": [], + "hairdryer's": [], + "Blondel": ["M"], + "opposite'sly": [], + "ravines": [], + "intersex": [], + "Cortes'ses": [], + "uncoordinated": [], + "ennoblingment": [], + "betting": [], + "showmen": [], + "declamation's": [], + "elongations": [], + "pedicure's": [], + "corroboratesens": [], + "investigateds": [], + "arguing": [], + "mannequin": ["S", "M"], + "Stefan's": [], + "verbiages": [], + "sheepdogs": [], + "nasalizeds": [], + "emancipator": ["M", "S"], + "Grampians": ["M"], + "rampage's": [], + "practicing": [], + "chancier": [], + "reincarnation": [], + "piecework's": [], + "subtitles": [], + "sacristies's": [], + "Trajan's": [], + "giantess'ses": [], + "sail'sed": [], + "thrillerers": [], + "challenge's": [], + "Elizabeth's": [], + "oiling": [], + "devilries": [], + "object's": [], + "shell": ["M", "D", "R", "S", "G"], + "Alexandria's": [], + "inviolability": ["M"], + "blowjobs": [], + "annealeds": [], + "kissogram": ["S"], + "segregates": [], + "subway's": [], + "doffings": [], + "coercion's": [], + "wickets": [], + "Sweet": ["M"], + "megapixel's": [], + "jinx": ["M", "D", "S", "G"], + "banns": ["M"], + "merges": [], + "cloister'sed": [], + "smelly": ["R", "P", "T"], + "Tolyatti's": [], + "homeliers": [], + "downturns": [], + "Socrates's": [], + "Qom's": [], + "recruiters": [], + "Las": [], + "stencils": [], + "bedfellows": [], + "mullah": ["M"], + "padres's": [], + "renewal": ["M", "S"], + "Breton": ["M"], + "scrapie": [], + "unwinnable": [], + "bullets's": [], + "Ukrainians": [], + "tedium's": [], + "misconceives": [], + "Araguaya's": [], + "pollutant's": [], + "stuffier": [], + "corduroy's": [], + "bodega'ses": [], + "prostitute's": [], + "unhappily": [], + "nonmetallic": [], + "worldlier": [], + "femalenesses": [], + "climb'sed": [], + "culturinged": [], + "novices": [], + "extrusive": [], + "duplicationed": [], + "reline": ["D", "S", "G"], + "exaggeration": ["M"], + "flipper's": [], + "partitioneds": [], + "symbolizeds": [], + "Grenadines's": [], + "searing": ["Y"], + "Zworykin": ["M"], + "nonreturnables": [], + "cleanerly": [], + "Delta's": [], + "amoebas": [], + "rescued": [], + "pitches": [], + "productivity's": [], + "drool's": [], + "innkeepers": [], + "Brillo's": [], + "cps": [], + "ecru's": [], + "passageway's": [], + "centrifuging": [], + "materialization's": [], + "rediscursive": [], + "reevaluation": [], + "vigilantist's": [], + "maimsing": [], + "herbicidal": [], + "nearly": [], + "illegibility": ["M"], + "Radcliffe's": [], + "stroppier": [], + "bubo": ["M"], + "cots's": [], + "escrow": ["S", "M"], + "slothful": ["Y", "P"], + "wrongnessed": [], + "heed": ["M", "D", "G", "S"], + "sprayers": [], + "flatirons": [], + "Uris's": [], + "urbanologist's": [], + "spa": ["S", "M"], + "awfullest": [], + "azaleas's": [], + "flints": [], + "messmates's": [], + "bounders": [], + "sweatings": [], + "recuperatingen": [], + "tiresomeness's": [], + "Seyfert's": [], + "humpback's": [], + "colic": ["M"], + "pubes": ["M"], + "Omahas": [], + "attributing": [], + "avertinged": [], + "engrosseds": [], + "anathematize": ["D", "S", "G"], + "bacteria's": [], + "adenoid's": [], + "ceremony": ["S", "M"], + "military's": [], + "meniallies": [], + "infotainment's": [], + "repugnance's": [], + "privileges": [], + "gyrators": [], + "seaside's": [], + "trajectories": [], + "begrudged": [], + "autobahn's": [], + "wayfaring's": [], + "swifterly": [], + "soil": ["M", "D", "G", "S"], + "subcompacts": [], + "Shintoist'ses": [], + "smashing": [], + "cottoning": [], + "slimness's": [], + "examine": ["A", "G", "D", "S"], + "larva's": [], + "kayak'sed": [], + "drowning's": [], + "hoodie's": [], + "hoaxer's": [], + "halloos": [], + "roofer's": [], + "witticisms": [], + "maharishi": ["S", "M"], + "roasting": ["M"], + "charts": [], + "overgrazes": [], + "beneficiaries's": [], + "deliciousness": ["M"], + "segment": ["G", "S", "M", "D"], + "oversharing": [], + "returnee": ["S", "M"], + "swerve": ["M", "G", "D", "S"], + "volleyballs": [], + "Tevet's": [], + "blow'ser": [], + "broods's": [], + "U's": [], + "G'sen": [], + "barn": ["S", "M"], + "lawbreaking": ["M"], + "thermostat's": [], + "Mich": ["M"], + "backhandsers": [], + "raw'ser": [], + "oilskin's": [], + "imbues": [], + "rainwater": ["M"], + "grubbily": [], + "Cologne": ["M"], + "divvies's": [], + "electrocardiograph's": [], + "wailed": [], + "Gounod": ["M"], + "dandles": [], + "augmentersing": [], + "immanent": ["Y"], + "Mimosa": ["M"], + "logons's": [], + "perk's": [], + "conspectuses": [], + "strangle": ["Z", "G", "D", "R", "S"], + "menaces": [], + "brogan's": [], + "sizzlersing": [], + "paralytic's": [], + "sentinel's": [], + "proportionately": [], + "distorter": [], + "Enif": ["M"], + "felon's": [], + "garbing": [], + "terraces": [], + "friends": [], + "newline": ["S"], + "groove": ["M", "G", "D", "S"], + "harrier's": [], + "stomachache's": [], + "crucifixes": [], + "guessable's": [], + "Lula": ["M"], + "taboo'sed": [], + "thick": ["P", "M", "N", "R", "Y", "X", "T"], + "pressing'sly": [], + "woman": ["M"], + "penetrate": ["D", "S", "G", "N", "V", "X"], + "backdrop'ses": [], + "embraces's": [], + "miter'sed": [], + "destructibility": ["I", "M"], + "sowing": [], + "drowseds": [], + "ribald": [], + "reprises's": [], + "solaria": [], + "liberalization": ["S", "M"], + "swags": [], + "leaves's": [], + "Curt": ["M"], + "emulsifiers": [], + "gigolos's": [], + "compartmentalizes": [], + "Coloradoan": [], + "morphology": ["M"], + "Linux'ses": [], + "road": ["I", "M", "S"], + "toll's": [], + "declarersing": [], + "deserting's": [], + "mimicries's": [], + "whale's": [], + "insecurely": [], + "dodgersing": [], + "equatorial": [], + "cudgelsing": [], + "lucre": ["M"], + "reappraisal": [], + "joker's": [], + "immaterial": ["Y", "P"], + "interrelated": [], + "pizzeria": ["S", "M"], + "thumbprint's": [], + "negates": [], + "splitting'ses": [], + "Sandoval's": [], + "acceded": [], + "layoff's": [], + "froth": ["M", "D", "G"], + "rarefaction": ["M"], + "inflections": [], + "rags": [], + "phage": ["S"], + "flank's": [], + "falconers": [], + "preheats": [], + "assumptive": [], + "dietetics's": [], + "Carlene": ["M"], + "Tharp": ["M"], + "mesquites": [], + "fissure's": [], + "rhythmic": [], + "bacillary": [], + "trefoil's": [], + "subcontractor's": [], + "consistories's": [], + "revel'sed": [], + "Crow's": [], + "beginning": ["M", "S"], + "phrasing": ["M", "S"], + "coefficient'ses": [], + "critic's": [], + "accommodation's": [], + "fructifiesing": [], + "burpings": [], + "administrates": [], + "catalytic": ["M"], + "droid": ["S"], + "guerrillas's": [], + "amuseds": [], + "energized": [], + "saunas": [], + "elate": ["D", "S", "G", "N"], + "axletree": ["S", "M"], + "huddle's": [], + "ratters's": [], + "brinks": [], + "tenet": ["S", "M"], + "Cambodia": ["M"], + "bovine": ["S", "M"], + "chickenpox": ["M"], + "Craig": ["M"], + "proprietress'ses": [], + "enuresis": ["M"], + "undernourishment": ["M"], + "foists": [], + "suffixation's": [], + "fluffs's": [], + "asterisking's": [], + "assistants's": [], + "Brookes": [], + "troubleshooterers": [], + "scanties": [], + "existed": [], + "Jennie": ["M"], + "stillbirths": [], + "wankerers": [], + "outwearing": [], + "Catholicism's": [], + "suppleness's": [], + "confirmations": [], + "oblong's": [], + "dashed": [], + "fishcake's": [], + "Hamilton's": [], + "stepmom'ses": [], + "gauzier": [], + "samba'sed": [], + "pushiness": ["M"], + "abalones": [], + "Reinhardt's": [], + "receive": ["D", "R", "S", "Z", "G", "B"], + "preliminaries's": [], + "safaris": [], + "inflatable": ["S", "M"], + "standoffish": [], + "integer's": [], + "Utrillo's": [], + "brochettes": [], + "Romanesques": [], + "blitzing's": [], + "unpromising": [], + "hatefulnessly": [], + "silliness": ["M"], + "playthings": [], + "peptides": [], + "aggression's": [], + "hopes": [], + "erelong": [], + "sturdily": [], + "cabinetmaking": ["M"], + "baccy": [], + "retardation": ["M"], + "largeness's": [], + "Henley's": [], + "Minerva": ["M"], + "barbecues's": [], + "munchinged": [], + "creative'sly": [], + "boulevards's": [], + "opaquers": [], + "nibbled": [], + "marshiest": [], + "Hiroshima": ["M"], + "instateds": [], + "counterfoil's": [], + "mayflies's": [], + "housing": ["M", "S"], + "understanding'sly": [], + "enchantingly": [], + "schizophrenic's": [], + "rosters": [], + "Provo": ["M"], + "atelier": ["S", "M"], + "thinker": ["M"], + "trustfulness's": [], + "Drano's": [], + "fleshpots": [], + "violate": ["G", "N", "D", "S", "X"], + "tattletales": [], + "putter's": [], + "OHSA": ["M"], + "Dane": ["S", "M"], + "Kerry's": [], + "Sabina": ["M"], + "congealsment": [], + "kazoos": [], + "raceme'ses": [], + "quacking": [], + "venerating": [], + "Seine's": [], + "dissever": [], + "cream'sed": [], + "Golgotha's": [], + "graft'sed": [], + "deluded": [], + "detain": ["L", "G", "D", "S"], + "vaudevillians": [], + "decanter": [], + "boll's": [], + "objecting": [], + "condistraction": [], + "nonreciprocal": ["S", "M"], + "weariesness": [], + "requital": ["M"], + "concentrate": ["D", "S", "M", "G", "N", "X"], + "castoffs's": [], + "authenticating": [], + "curersing": [], + "aircraftman": [], + "sesquicentennial's": [], + "sanguinary": [], + "surcease's": [], + "dreamboat'ses": [], + "proliferation's": [], + "nonconductor's": [], + "coquette's": [], + "fonderly": [], + "YMHA": [], + "snafu": ["S", "M"], + "underacteding": [], + "Adrian's": [], + "incurred": [], + "hinter": ["M"], + "detriments's": [], + "pyromania's": [], + "companionable": [], + "foxtrots": [], + "proconsul": [], + "interviewed": [], + "starkness": ["M"], + "compulsory": ["S", "M"], + "legit": [], + "lagers": [], + "indwelt": [], + "Nazism": ["M", "S"], + "traits": [], + "bards": [], + "xerox'sed": [], + "Dostoevsky": ["M"], + "Jermaine's": [], + "jerkins": [], + "kibbling": [], + "quorate": ["I"], + "insolence": ["M"], + "nonsupporting": [], + "Boyd's": [], + "abstinent": [], + "zero's": [], + "skulkerers": [], + "inseparable's": [], + "tempestuousness's": [], + "channelization's": [], + "tropes's": [], + "sandpapered": [], + "reasonably": ["U"], + "reciter's": [], + "keyword'ses": [], + "pulverizing": [], + "smashup's": [], + "Madeline's": [], + "Rhiannon's": [], + "euphoric": [], + "shamrock": ["M", "S"], + "spunks's": [], + "pedagogically": [], + "soothsaying's": [], + "indubitable": [], + "microlight": ["M", "S"], + "suckings": [], + "Cherry": ["M"], + "uncles's": [], + "art": ["S", "M"], + "syndication": ["M"], + "joyriding": ["M"], + "rarefied": [], + "pleasuringed": [], + "zookeepers's": [], + "adjuster": ["S", "M"], + "woodmen": [], + "splatted": [], + "atoms": [], + "coursebook": ["S"], + "Baum's": [], + "nondramatic": [], + "speaker": ["M"], + "gainsayers": [], + "loganberries": [], + "treadmill": ["M", "S"], + "emergent": [], + "squinter": [], + "Suzuki's": [], + "lyncher": ["M"], + "senoritas's": [], + "angelfish'ses": [], + "renegotiate": [], + "teetersing": [], + "Aleppo": ["M"], + "throttleder": [], + "peonage's": [], + "love'sly": [], + "reinitialize": [], + "calypsos": [], + "std": [], + "substratum's": [], + "Eur": [], + "stenographic": [], + "Micmacs's": [], + "mulishness's": [], + "beaning": [], + "wordless": ["Y"], + "devolveds": [], + "desalination's": [], + "pact": ["M", "S"], + "ddsed": [], + "Anastasia": ["M"], + "ruleder": [], + "BASIC's": [], + "cadging": [], + "crossest": [], + "OB": [], + "fairground": ["M", "S"], + "virile": [], + "Comanche's": [], + "erudite": ["Y", "N"], + "Ariz": [], + "outflanksed": [], + "fanatically": [], + "interceptors": [], + "biddies": [], + "onion's": [], + "tollgates's": [], + "nontaxable": [], + "profiteer's": [], + "proofs": [], + "foursomes's": [], + "soccer": ["M"], + "lenses": [], + "commissar": ["S", "M"], + "carefulliness": [], + "liens": [], + "Mulder's": [], + "thrash's": [], + "goreds": [], + "cerement's": [], + "multitudes": [], + "delphinium'ses": [], + "sinless": [], + "Trekkie's": [], + "conspirator's": [], + "favoritism": ["M"], + "oceanfront": ["S", "M"], + "hydrometry": ["M"], + "tercentenary's": [], + "managerial": [], + "unwrapped": [], + "muskiest": [], + "Scot's": [], + "maturity's": [], + "wreathesing": [], + "rump": ["M", "Y", "S"], + "SWAK": [], + "tackleder": [], + "flare's": [], + "vociferously": [], + "turbofans": [], + "cayenne's": [], + "convalescesing": [], + "creaks": [], + "bromides": [], + "equestrianism's": [], + "unincorporated": [], + "ovoid's": [], + "trabecula": [], + "unitized": [], + "Bermuda's": [], + "plumbeder": [], + "delinquency's": [], + "expoundeder": [], + "geriatricians": [], + "reengage": [], + "virulence": ["M"], + "thrasher's": [], + "commissariat's": [], + "gyroscopic": [], + "kl": [], + "savoys": [], + "bratwurst": ["S", "M"], + "nostril": ["M", "S"], + "ocular's": [], + "Sukarno's": [], + "barfing's": [], + "resister": [], + "unprecedented": ["Y"], + "innervationed": [], + "misanthropist": ["M", "S"], + "Stephan": ["M"], + "Preston": ["M"], + "nominators's": [], + "heighteneding": [], + "splayfoot's": [], + "pavlova": ["S"], + "valeteding": [], + "sparkleder": [], + "recessionary": [], + "weakeners": [], + "nosily": [], + "choreography's": [], + "seacoast's": [], + "endurance": ["M"], + "transform": ["B", "S", "Z", "G", "M", "D", "R"], + "dud": ["G", "S", "M", "D"], + "marbleized": [], + "toothier": [], + "gonads's": [], + "goiters's": [], + "prank'ses": [], + "riposte": ["M", "G", "D", "S"], + "DNA's": [], + "Nestle": ["M"], + "antibacterial": ["M", "S"], + "Snow's": [], + "outgoes": [], + "persecutes": [], + "Monique": ["M"], + "zippy": ["T", "R"], + "lotteries": [], + "lyceum'ses": [], + "worldview's": [], + "legend's": [], + "retching": [], + "hungers's": [], + "floppy's": [], + "Morin": ["M"], + "athletics": ["M"], + "languishing": [], + "antiscience": [], + "boogieman": ["M"], + "DD's": [], + "Foreman's": [], + "Lin": ["M"], + "graveled": [], + "woodlands's": [], + "superstructures": [], + "televangelists": [], + "Toledo'ses": [], + "castration": ["M"], + "insurgent'ses": [], + "slacks's": [], + "sloucher's": [], + "Norberto": ["M"], + "pentagon": ["M", "S"], + "stickies's": [], + "rationalization'ses": [], + "Helvetius's": [], + "tower": ["G", "M", "D"], + "disconnected": ["P", "Y"], + "expropriation's": [], + "amplitudes": [], + "floss'sed": [], + "adjudicate": ["G", "N", "V", "X", "D", "S"], + "immolate": ["D", "S", "G", "N"], + "Cameroonian": ["M", "S"], + "quintuplet'ses": [], + "ax's": [], + "unproven": [], + "Pakistanis's": [], + "masks": [], + "tech": ["M"], + "interconnect": ["G", "D", "S"], + "redismount": [], + "assemblers": [], + "buggered": [], + "eviler": [], + "Nile": ["M"], + "snow": ["M", "D", "G", "S"], + "Aspell's": [], + "rationalism": ["M"], + "reservation'ses": [], + "outbalancesing": [], + "posies's": [], + "transit'sed": [], + "sledders's": [], + "assayeder": [], + "ignominiously": [], + "shoeshines's": [], + "rests": [], + "swimsuit's": [], + "deserts": [], + "wedge'sing": [], + "Ipswich": [], + "sheltering's": [], + "wetwares": [], + "Ameslan": ["M"], + "Ike's": [], + "storybook's": [], + "descriptive": ["P", "Y"], + "ejaculates": [], + "mature": ["Y", "T", "G", "D", "R", "S"], + "infraction": [], + "purposes's": [], + "Parker's": [], + "nuttier": [], + "gazumped": [], + "fracture'sing": [], + "fabrication": ["M"], + "cicerones": [], + "spokeswoman's": [], + "Israeli's": [], + "waivesers": [], + "primate": ["M", "S"], + "specific'ses": [], + "Gasser": ["M"], + "contestant": ["M", "S"], + "oxygenated": [], + "puritans's": [], + "emphatically": [], + "Ge": ["M"], + "overexerted": [], + "singsonging": [], + "deluding": [], + "congealment": ["M"], + "outrankinged": [], + "cabinetwork": ["M"], + "centimes's": [], + "Ora's": [], + "vendor'ses": [], + "switchboards's": [], + "backstroking": [], + "coquette": ["D", "S", "M", "G"], + "shingled": [], + "chivalrously": [], + "exhibitions": [], + "heats": [], + "wolfhounds's": [], + "anapestic": ["M", "S"], + "Tarzan": ["M"], + "cottontail": ["M", "S"], + "kinkier": [], + "prolapse": [], + "fisheries": [], + "revealing": ["Y"], + "facesed": [], + "innkeeper": ["M", "S"], + "genned": [], + "Shostakovitch's": [], + "incoherence": [], + "switchboards": [], + "perturbed": ["U"], + "prevaricatingen": [], + "dotes": [], + "weaversing": [], + "mishandles": [], + "earrings": [], + "Pushtu's": [], + "propriety's": [], + "balsam": ["S", "M"], + "baronage's": [], + "gumshoed": [], + "intros": [], + "condensers": [], + "Unitarianism": ["M", "S"], + "robed": [], + "overcharge'sing": [], + "cummerbund's": [], + "renaissance": ["M", "S"], + "toil's": [], + "consulship": ["M"], + "heresies's": [], + "var": ["S"], + "policeman": ["M"], + "itchiness": ["M"], + "antimicrobial": [], + "Vespasian's": [], + "scatological": [], + "Tereshkova": ["M"], + "archenemy's": [], + "ramps": [], + "substantive": ["S", "M", "Y"], + "rectitude": ["M"], + "misruling": [], + "domestically": [], + "contactsed": [], + "NBC": ["M"], + "amour": ["M", "S"], + "lightface": ["M", "D"], + "sodding": [], + "lams": [], + "matzohs": [], + "abacuses": [], + "fawn'sed": [], + "Horacio's": [], + "inaction": ["M"], + "modifications": [], + "botany's": [], + "Jews": [], + "mecca": ["S", "M"], + "predictabling": [], + "overestimateds": [], + "coxing": [], + "escargot": ["M", "S"], + "swim": ["M", "S"], + "trendy's": [], + "parvenu": ["M", "S"], + "margin": ["M", "S"], + "nonspiritual's": [], + "Sherman's": [], + "advancements": [], + "glitch": ["G", "M", "D", "S"], + "Elliott": ["M"], + "gambit's": [], + "imperishably": [], + "budgies's": [], + "favorite's": [], + "DOE": [], + "hobgoblin": ["M", "S"], + "sourpusses": [], + "Armani": ["M"], + "prepareds": [], + "fatalist's": [], + "internationalizes": [], + "firefightsers": [], + "iced": [], + "unloving": [], + "instrumentation": ["M"], + "rhapsodizinged": [], + "robin's": [], + "beach's": [], + "undrinkable": [], + "conjecture'sing": [], + "pejorative'sly": [], + "birdhouse's": [], + "Sagittarius's": [], + "officiatesing": [], + "uneconomical": [], + "cosmologist's": [], + "Acadia": ["M"], + "Gaza": ["M"], + "interrupt'sed": [], + "carapaces": [], + "local's": [], + "compered": [], + "underexposes": [], + "kebab": ["S", "M"], + "jabbers's": [], + "halloo'ses": [], + "venial": [], + "grumbles's": [], + "pastiness": ["M"], + "babe": ["S", "M"], + "roommates's": [], + "federalizinged": [], + "intersperses": [], + "embolisms": [], + "shoat's": [], + "fifties's": [], + "crouch'sed": [], + "conservancies": [], + "nippers": [], + "expectorating": [], + "Carborundum's": [], + "fertility's": [], + "calibratingen": [], + "undervalued": [], + "leader's": [], + "stepladder'ses": [], + "alp": ["S", "M"], + "ardor": ["M", "S"], + "guilt": ["M"], + "PRO": [], + "cleaved": [], + "liquefies": [], + "hemispherical": [], + "iceboats": [], + "darkened": [], + "0th": ["p", "t"], + "ramifieds": [], + "liquidity's": [], + "ague": ["M"], + "goofball": ["S", "M"], + "debutante": ["S", "M"], + "napalming": [], + "Eritrean": ["S", "M"], + "ground'sed": [], + "massif'ses": [], + "bedstead": ["S", "M"], + "exospheres's": [], + "bedecks": [], + "fouling": [], + "licks": [], + "liver's": [], + "assaileds": [], + "rag's": [], + "blondish": [], + "snappiness's": [], + "prizinged": [], + "Doyle": ["M"], + "contrabassoon": ["S"], + "mightily": [], + "surgeon'ses": [], + "vetoing": [], + "Potsdam's": [], + "fiat's": [], + "comment'sed": [], + "Excellency": ["S", "M"], + "aestheticism": ["M"], + "sensationalist": ["M", "S"], + "suspense'sen": [], + "expertly": [], + "blitz'sed": [], + "CompuServe's": [], + "office": ["M", "Z", "R", "S"], + "longitude": ["M", "S"], + "incumbency": ["S", "M"], + "O'Connor": ["M"], + "flopping": [], + "lobotomizes": [], + "enrichment": ["M"], + "complicates": [], + "Arawakan's": [], + "bumper's": [], + "dehydrators's": [], + "guesswork's": [], + "dates's": [], + "justice'ses": [], + "retrieved": [], + "freeway": ["M", "S"], + "Ziegfeld": ["M"], + "starerers": [], + "tenderness": ["M"], + "dominant'sly": [], + "hypoglycemia's": [], + "pronghorns": [], + "scrapheaps": [], + "dupe": ["M", "Z", "G", "D", "R", "S"], + "hunch": ["M", "D", "S", "G"], + "Larry": ["M"], + "draftiness": ["M"], + "boating's": [], + "Vuitton's": [], + "loris's": [], + "fiancee": ["M", "S"], + "lawfully": [], + "pacifier": ["M"], + "redcoats's": [], + "loveless": [], + "teat's": [], + "bowdlerization's": [], + "transom's": [], + "kart": ["M", "S"], + "jerkiness": ["M"], + "traceries": [], + "misplay's": [], + "buckram's": [], + "decipherable": ["U", "I"], + "Turkish's": [], + "Britten": ["M"], + "meddles": [], + "particularly": [], + "retractabling": [], + "compartmentalized": [], + "warplane'ses": [], + "phenacetin": ["M"], + "junior'ses": [], + "moppets": [], + "dances": [], + "Chablis's": [], + "mythic": [], + "loitering's": [], + "centenarian'ses": [], + "Wharton's": [], + "shoreline'ses": [], + "tippexeds": [], + "linguine": ["M"], + "currents": [], + "birdbrains's": [], + "screech'sed": [], + "tendentious": ["Y", "P"], + "nicknames's": [], + "linkups": [], + "maladroitness": ["M"], + "goad'sed": [], + "cohabitant's": [], + "sex": ["G", "M", "D", "S"], + "bullfrog": ["M", "S"], + "outvoted": [], + "swerve's": [], + "valveds": [], + "comprehended": [], + "baggily": [], + "chirography": ["M"], + "osculated": [], + "togging": [], + "musical's": [], + "hatpin": ["S"], + "ostler": ["S"], + "suit'sed": [], + "incarcerated": [], + "backslash's": [], + "rudder's": [], + "livers": [], + "Bayonne's": [], + "bifocals": ["M"], + "urination's": [], + "inscribeder": [], + "bike'sers": [], + "freezing's": [], + "clubbing": [], + "sublease": ["M", "G", "D", "S"], + "Asuncion": ["M"], + "tactical": ["Y"], + "tentativenessly": [], + "umlaut's": [], + "noncrystalline": [], + "subprogram": ["S"], + "alphabetizers": [], + "haggle": ["M", "Z", "G", "D", "R", "S"], + "refuel": [], + "prognostications": [], + "inboards": [], + "sauna's": [], + "checkbox": [], + "cor": [], + "writhe's": [], + "outscoreds": [], + "frond": ["S", "M"], + "Beebe's": [], + "showstoppers": [], + "factionalism's": [], + "Baals": [], + "its": [], + "accolade's": [], + "castigation's": [], + "genuflects": [], + "classical": ["M", "Y"], + "Columbine's": [], + "lidded": [], + "philharmonic's": [], + "cauldron's": [], + "humidifiersing": [], + "Kinney": ["M"], + "voyeur's": [], + "flushing": [], + "televising": [], + "impotency's": [], + "unpreparedness": [], + "rosier": [], + "Rapunzel's": [], + "espressos": [], + "godmother": ["S", "M"], + "atlas": ["M", "S"], + "Mouton's": [], + "outpointed": [], + "bleats": [], + "firearms's": [], + "pliers": ["M"], + "stouter": [], + "dollop": ["S", "G", "M", "D"], + "gameder": [], + "prolifically": [], + "processional": ["M", "S"], + "purifying": [], + "apt": ["I", "Y", "P", "T"], + "brazier's": [], + "Idahos's": [], + "HDTV": [], + "Ortiz's": [], + "wraparounds": [], + "notifications": [], + "personalities's": [], + "apparel'sed": [], + "bongs": [], + "fictionalized": [], + "skills": [], + "carver's": [], + "Blake's": [], + "flanking's": [], + "piteousliness": [], + "birthrate'ses": [], + "Seymour's": [], + "cloudiness's": [], + "serfdom's": [], + "mulling": [], + "amphetamine": ["S", "M"], + "shrivel": ["S", "G", "D"], + "indemnity's": [], + "Honda's": [], + "pagoda's": [], + "muggings": [], + "marketed": [], + "bittern's": [], + "lambdas's": [], + "starteding": [], + "druggie's": [], + "debtor's": [], + "Stout": ["M"], + "survivesing": [], + "overbearing": ["Y"], + "Barbra's": [], + "meetinghouses": [], + "bunglers": [], + "jockeys": [], + "dandifieds": [], + "mistrustfully": [], + "Arabic": ["M"], + "whittlers": [], + "stung": [], + "tempterers": [], + "septic": [], + "penetrability's": [], + "benefit": ["S", "M", "D", "G"], + "dedicator's": [], + "android": ["S", "M"], + "Tiberius's": [], + "consulted": [], + "extraordinarily": [], + "theretofore": [], + "nimbus's": [], + "choroid's": [], + "Lhotse": ["M"], + "Limbo": [], + "trills's": [], + "redneck": ["S", "M"], + "Pekings": [], + "mantle's": [], + "partitive": ["M", "S"], + "coroners": [], + "barest": [], + "chowing's": [], + "counterfeiter's": [], + "conscienceless": [], + "vocative": ["M", "S"], + "suctions's": [], + "initiateds": [], + "Tacitus": ["M"], + "Cambrians's": [], + "hydroplanes's": [], + "blackguard's": [], + "klutziness's": [], + "Guofeng": ["M"], + "cytology": ["M"], + "outed": [], + "authentication": ["M"], + "boilingsers": [], + "swarthier": [], + "Jarred": ["M"], + "megaphone's": [], + "reggae's": [], + "mauls": [], + "cloistered": [], + "chophouses's": [], + "kinfolks": ["M"], + "slandering": [], + "ultimatum's": [], + "Transylvanian's": [], + "flabbiness": ["M"], + "bikeder": [], + "chucked": [], + "catapulting's": [], + "Mouton": ["M"], + "Kano": ["M"], + "homonym's": [], + "overstuffed": [], + "baled": [], + "viols": [], + "crone's": [], + "deaconess's": [], + "steelworkers's": [], + "shattereds": [], + "meek": ["R", "Y", "P", "T"], + "laden": ["U"], + "worldliest": [], + "abrasiveness's": [], + "drainpipe": ["M", "S"], + "Lemuria's": [], + "parsec": ["M", "S"], + "compliance's": [], + "goodliest": [], + "fumigation": ["M"], + "electroplatesing": [], + "stubborner": [], + "subculture's": [], + "kilobytes's": [], + "hawsers's": [], + "stammereder": [], + "minutely": [], + "Mendoza": ["M"], + "traduce": ["D", "R", "S", "Z", "G"], + "treed": [], + "conked": [], + "squirmier": [], + "duff'sed": [], + "delusion'ses": [], + "escape'sing": [], + "banish": ["G", "L", "D", "S"], + "dons's": [], + "rutabagas": [], + "indispensably": [], + "clefts": [], + "digressing": [], + "ungovernable": [], + "interminglesing": [], + "Hopkins": ["M"], + "Debora": ["M"], + "tonics": [], + "puppetry's": [], + "berry's": [], + "sicklies": [], + "rigged": [], + "character'ses": [], + "Suharto's": [], + "kettles": [], + "deputesing": [], + "epaulets": [], + "roweled": [], + "antiquary": ["S", "M"], + "cumulonimbus": ["M"], + "fancying": [], + "mu": ["S", "M"], + "neutralization's": [], + "swath'sed": [], + "curries": [], + "onslaught's": [], + "beaut'ses": [], + "subsidization's": [], + "Southwests": [], + "dump'sed": [], + "helmsmen": [], + "faithlessness": ["M"], + "cajolery's": [], + "jurors": [], + "bier": ["M"], + "exploiting": [], + "spies's": [], + "spacing": ["M"], + "anchorperson": ["S", "M"], + "Akhmatova": ["M"], + "pet'ser": [], + "reminiscence": ["M", "S"], + "pinprick'ses": [], + "tarpaulin's": [], + "rinseds": [], + "Issachar": ["M"], + "postconsonantal": [], + "concerto": ["S", "M"], + "interventionists's": [], + "ceramicist": ["S", "M"], + "artiest": [], + "Racine": ["M"], + "hackwork": ["M"], + "nosegay": ["S", "M"], + "Michigander'ses": [], + "Wilhelmina's": [], + "unending": [], + "Curitiba": ["M"], + "adjuringed": [], + "pawnbroker": ["M", "S"], + "Isabelle": ["M"], + "exhale": ["D", "S", "G"], + "antonym's": [], + "instantiatesing": [], + "godlike": [], + "lemurs": [], + "project": ["G", "M", "D", "S"], + "slicks": [], + "Wood": ["S", "M"], + "pipeline's": [], + "persuading": [], + "repertoire'ses": [], + "loathsome": ["P", "Y"], + "watchdog's": [], + "hails": [], + "premiere": ["M", "S"], + "inventor": ["M", "S"], + "glassy": ["R", "T", "P"], + "Paraclete's": [], + "sizzled": [], + "Alabamans": [], + "grandparent": ["M", "S"], + "programmers": [], + "fingernails": [], + "extrapolateds": [], + "skinful": [], + "remix": ["D", "S", "G"], + "savage'sly": [], + "snark": ["S"], + "posthumously": [], + "declensions": [], + "predate": ["D", "S", "G"], + "Negroids": [], + "importeder": [], + "roping": [], + "bugbears": [], + "trolled": [], + "unresistant": [], + "thrice": [], + "jibe'ses": [], + "corroboration": ["M"], + "churning's": [], + "hemorrhage's": [], + "roebuck": ["S", "M"], + "Zzz": [], + "damns": [], + "Cullen's": [], + "PX": [], + "negroid": [], + "wader": ["M"], + "interfering": [], + "internationalizesing": [], + "twigs": [], + "calabashes": [], + "bionics": ["M"], + "induction": ["M", "S"], + "Cantu's": [], + "pickups": [], + "desirably": ["U"], + "sissy's": [], + "adhereds": [], + "Mao's": [], + "Bruno": ["M"], + "Huron's": [], + "pane's": [], + "freakier": [], + "modulo": [], + "goodies": [], + "mopier": [], + "cantaloupes's": [], + "aligninged": [], + "trainer": ["M"], + "trance'ses": [], + "clubfeet": [], + "lore's": [], + "severeness's": [], + "marmot's": [], + "dilators's": [], + "rescuer's": [], + "chopperings": [], + "biggish": [], + "Eminem": ["M"], + "signalizeds": [], + "painteder": [], + "resolutenessly": [], + "guardroom's": [], + "witchery's": [], + "bandanna's": [], + "cameras": [], + "enzymes's": [], + "Reynolds": ["M"], + "awkwardest": [], + "niece's": [], + "philologist": ["M", "S"], + "clarifiesen": [], + "gangway's": [], + "Meade's": [], + "doctored": [], + "postcard's": [], + "clipboard's": [], + "Wurlitzer": ["M"], + "snowy": ["P", "R", "T"], + "convective": [], + "fluorine": ["M"], + "sailboat'ses": [], + "spurting": [], + "arouseds": [], + "embosses": [], + "mot's": [], + "spawn": ["S", "M", "D", "G"], + "flasks's": [], + "tricklinged": [], + "tapelines": [], + "wearer's": [], + "cloakeding": [], + "Cal": ["M"], + "Janet": ["M"], + "cumulus": ["M"], + "VG": [], + "Scriptures": [], + "precondition's": [], + "hawk'sed": [], + "nettlinged": [], + "ex'ses": [], + "downside'ses": [], + "hootenannies's": [], + "retainersing": [], + "obtrudes": [], + "pueblos's": [], + "victory": ["S", "M"], + "heritage's": [], + "volume": ["S", "M"], + "Gaelic's": [], + "thickness's": [], + "comparably": ["I"], + "pancaked": [], + "reforgesing": [], + "deerskin's": [], + "Townes's": [], + "returnables's": [], + "sashay's": [], + "lilac's": [], + "landmass'ses": [], + "herderers": [], + "Marcelo's": [], + "incommodious": [], + "spoilage": ["M"], + "whorled": [], + "clarified": [], + "flypasts": [], + "sunburning": [], + "causeries's": [], + "slovenliness": ["M"], + "ordeals": [], + "Mfume's": [], + "vixen's": [], + "dentist'ses": [], + "daintier": [], + "Olav": ["M"], + "billboard's": [], + "overview's": [], + "Icelandic": ["M"], + "wilt'sed": [], + "anime": ["M"], + "stall": ["I", "S", "D", "G"], + "mulatto's": [], + "neutereding": [], + "affectionate": ["Y"], + "stepsister'ses": [], + "outreaches": [], + "Beatrice's": [], + "ride": ["M", "Z", "G", "R", "S"], + "neurotransmitter's": [], + "dilapidated": [], + "standby": ["M"], + "commemoration's": [], + "tenterhook": ["M", "S"], + "jobber's": [], + "subway": ["M", "S"], + "calamari's": [], + "wrongfulness's": [], + "truanting's": [], + "theorem": ["M", "S"], + "dearests": [], + "collectivizes": [], + "proliferatingen": [], + "chlorinatingen": [], + "souped": [], + "Wilbert": ["M"], + "Hanukkah's": [], + "tallow": ["M"], + "absolute's": [], + "middle'sing": [], + "fiction'ses": [], + "corpse's": [], + "flashbulb": ["S", "M"], + "collaborates": [], + "ponyinged": [], + "Torquemada's": [], + "Kaunas": ["M"], + "boycotting's": [], + "unnecessarily": [], + "dashiki": ["M", "S"], + "pinstripe's": [], + "evacuees": [], + "freckle": ["D", "S", "M", "G"], + "unselfishness": [], + "immobilization": ["M"], + "merchandiser's": [], + "proceeds": ["M"], + "repast": [], + "arches": [], + "itemization": ["M"], + "primeval": [], + "heartbeats": [], + "flecked": [], + "voraciousness's": [], + "Eiffel": ["M"], + "enervation's": [], + "workedings": [], + "benefice": ["S", "M"], + "lambdas": [], + "aggrandize": ["G", "L", "D", "S"], + "substation's": [], + "timidness": ["M"], + "leave": ["D", "R", "S", "M", "Z", "G", "J"], + "slumbers": [], + "dismissal": [], + "tailbacks": [], + "womanish": [], + "mistime": ["G", "D", "S"], + "Pinyin": [], + "Paige": ["M"], + "kilos": [], + "harnesseds": [], + "banning": [], + "urged": [], + "seam": ["G", "M", "D", "N", "S"], + "overburdensed": [], + "solidly": [], + "robbers": [], + "thrusting": [], + "orneriest": [], + "cultivators": [], + "Koranic": [], + "animists's": [], + "makeover": ["M", "S"], + "mellowing": [], + "Kuznets's": [], + "extraterrestrial'ses": [], + "blowout": ["S", "M"], + "Renaissance": ["S", "M"], + "gotta": [], + "while's": [], + "mudslide'ses": [], + "periodical'sly": [], + "buggies": [], + "rabbi": ["S", "M"], + "mealy": ["T", "P", "R"], + "hostelers": [], + "making'ses": [], + "playactsing": [], + "routinizing": [], + "womb's": [], + "Tonia's": [], + "valving": [], + "sycamore's": [], + "pal'sly": [], + "odiousliness": [], + "lucidness's": [], + "pointsers": [], + "strainer": ["A", "S", "M"], + "optimisms": [], + "sharecrops": [], + "residence's": [], + "emended": [], + "ecstasy's": [], + "bevies's": [], + "qty": [], + "successful": ["U", "Y"], + "diddlysquat": [], + "tiled": [], + "Marissa": ["M"], + "elodea's": [], + "eeriest": [], + "fluffiest": [], + "ruminants": [], + "sasses": [], + "clanswomen": [], + "eves's": [], + "jinrikisha's": [], + "bookkeeper'ses": [], + "pigmented": [], + "sinkholes's": [], + "point'sed": [], + "splotching": [], + "irresistible": [], + "autocracy": ["S", "M"], + "deadest": [], + "chlamydias": [], + "googleds": [], + "contrition's": [], + "bogyman": ["M"], + "trustingly": [], + "fry": ["G", "D", "S", "M"], + "Mejia's": [], + "bookmobiles's": [], + "malnourished": [], + "typification's": [], + "viewfinder's": [], + "consultative": [], + "Ljubljana": ["M"], + "impassivity": ["M"], + "competences": [], + "cookies's": [], + "megacycle": ["S", "M"], + "tramplers": [], + "breakdown": ["M", "S"], + "caboodle": ["M"], + "japinged": [], + "leaven'sed": [], + "battles": [], + "futurist's": [], + "Acts": ["M"], + "Commandment": [], + "hearts's": [], + "lyric's": [], + "convergence'ses": [], + "degeneracy's": [], + "interlock's": [], + "gremlin's": [], + "perfume's": [], + "tincture's": [], + "lust": ["M", "D", "R", "S", "G"], + "improvisation": ["S", "M"], + "reform": ["M", "Z"], + "leftists's": [], + "comedienne'ses": [], + "careenings": [], + "Solomon's": [], + "journeyeder": [], + "parasite": ["S", "M"], + "Burnside": ["M"], + "dredging": [], + "radicalize": ["D", "S", "G"], + "underclassmen": [], + "appertaineds": [], + "SPF": [], + "Requiem": ["M", "S"], + "acrostics": [], + "countertenors": [], + "rollick": ["S", "D", "G"], + "broaches": [], + "salutations": [], + "cuteliness": [], + "pedalsing": [], + "mistypes": [], + "assault'sed": [], + "cuss": ["F", "E", "G", "S", "D"], + "satori's": [], + "Macedonia's": [], + "Wilcox": ["M"], + "cruises": [], + "amendmenting": [], + "elision'ses": [], + "windiness": ["M"], + "legalism'ses": [], + "Siberian's": [], + "pheasant": ["M", "S"], + "devouring": [], + "curbed": [], + "mfrs": [], + "honkers": [], + "godsend": ["S", "M"], + "halterers": [], + "ridiculous": ["Y", "P"], + "Falwell": ["M"], + "ho'sed": [], + "vectors": [], + "verboten": [], + "multiverses's": [], + "Lance's": [], + "foreigner's": [], + "revivalism's": [], + "frappes": [], + "hangouts": [], + "millibar's": [], + "elaborating": [], + "sermonize": ["G", "D", "S"], + "chews": [], + "peeling": ["M"], + "protactinium": ["M"], + "arr": [], + "monopolizeder": [], + "incentive": ["E", "S"], + "superimposing": [], + "Erin": ["M"], + "puke's": [], + "glides": [], + "Natchez": ["M"], + "coach's": [], + "electrotypes": [], + "morale's": [], + "restiveliness": [], + "truncation": ["M"], + "bluepoints": [], + "attendsed": [], + "Evans's": [], + "principality": ["S", "M"], + "Sheba": ["M"], + "waysides's": [], + "winery": ["S", "M"], + "Bahamas's": [], + "oilier": [], + "conquering": [], + "flirting's": [], + "paraprofessional": ["M", "S"], + "stowaways": [], + "residue": ["S", "M"], + "Pollard's": [], + "restock": [], + "lack": ["M", "D", "S", "G"], + "antiquatinged": [], + "hypotenuses": [], + "scammed": [], + "Atlanta": ["M"], + "satanist": ["M", "S"], + "impressible": [], + "archive'sing": [], + "Siberians": [], + "fishesers": [], + "nothingness": ["M"], + "Havel's": [], + "dispensations": [], + "keynotes": [], + "prosecuted": [], + "Oxycontin's": [], + "onomatopoeia": ["M"], + "wog": ["S"], + "headwaiter": ["S", "M"], + "Quixotism": ["M"], + "antagonize": ["D", "S", "G"], + "rebutting": [], + "Canute": ["M"], + "spokeswomen": [], + "conglomerated": [], + "whirlwind's": [], + "spendersing": [], + "flowerpot": ["M", "S"], + "polarities's": [], + "curries's": [], + "derivative'ses": [], + "commuteder": [], + "Somalian": ["M", "S"], + "pediatrics": ["M"], + "Kolyma's": [], + "estimation's": [], + "bulldozers": [], + "Highness": ["M"], + "outlets": [], + "nae": [], + "cornerstone": ["S", "M"], + "retardant's": [], + "disrepute's": [], + "borrowings": [], + "haggardliness": [], + "dimples": [], + "jugulars's": [], + "plumpest": [], + "Scotswoman's": [], + "putative": [], + "wreathes": [], + "sportswoman's": [], + "distasteful": [], + "diviner": ["M"], + "queerlies": [], + "trappings's": [], + "schoolboy'ses": [], + "Quinton": ["M"], + "Ut": [], + "purchased": [], + "entrapped": [], + "Fukuyama": ["M"], + "pallsing": [], + "pan's": [], + "amours": [], + "comer's": [], + "bucking": [], + "copra's": [], + "whack'sed": [], + "armholes's": [], + "dumbbell's": [], + "Chicagoan": ["M"], + "reverence": ["D", "S", "M", "G"], + "Luce": ["M"], + "indictable": [], + "cedings": [], + "commemorates": [], + "ensembles": [], + "reshipping": [], + "primogenitor's": [], + "similarity": ["E", "S", "M"], + "powereds": [], + "scuttlinged": [], + "Louisiana": ["M"], + "Jo": ["M"], + "blond": ["P", "T", "M", "R", "S"], + "familiar'sly": [], + "scramblinged": [], + "exon's": [], + "canalizes": [], + "Amalia": ["M"], + "canasta's": [], + "tealight": ["M", "S"], + "reveille's": [], + "Liz": ["M"], + "irreligious": [], + "cornersing": [], + "bract's": [], + "snake's": [], + "distrustful": [], + "eyestrain's": [], + "modernize": ["D", "R", "S", "Z", "G"], + "carcinogenicity": ["M"], + "sophistry": ["S", "M"], + "larder's": [], + "lubes": [], + "preliterate": [], + "perpetrates": [], + "underclothes": ["M"], + "succeedinged": [], + "feaster's": [], + "recklessness's": [], + "banksers": [], + "Duran": ["M"], + "unoriginal": [], + "ashram": ["M", "S"], + "predeceasing": [], + "Houdini's": [], + "OSes": [], + "hides": [], + "phantom's": [], + "controverted": [], + "leg's": [], + "questioningable": [], + "stouthearted": [], + "pol's": [], + "cooper'sed": [], + "bid's": [], + "Wimbledon": ["M"], + "crampons": [], + "stretcher": ["M", "D", "G"], + "bearish": ["P", "Y"], + "orchestratesens": [], + "repainteds": [], + "cockscomb's": [], + "freesia": ["S"], + "deleverage": [], + "internist's": [], + "Blanca's": [], + "somnolence": ["M"], + "bereavesment": [], + "liferser": [], + "soldereder": [], + "rarefy": ["G", "D", "S"], + "indwellsing": [], + "monogamy": ["M"], + "dessert": ["S", "M"], + "": [], + "caravel's": [], + "adopters": [], + "alphabetizinged": [], + "possibles": [], + "verdict's": [], + "upstart's": [], + "Chelyabinsk": ["M"], + "Hiram": ["M"], + "undeserved": [], + "preforms": [], + "personifying": [], + "crucifies": [], + "pile'sing": [], + "solo": ["M", "D", "G", "S"], + "petsers": [], + "usurpers": [], + "adzes": [], + "commingled": [], + "severity's": [], + "EULAs": [], + "Phoenix": ["M"], + "Leger": ["M"], + "piton's": [], + "precipitately": [], + "unsporting": [], + "planetary": [], + "counterbalancing": [], + "bin's": [], + "druggists's": [], + "gearwheel's": [], + "jolting": [], + "fuzzeds": [], + "lolls": [], + "Zulu's": [], + "misdirectsed": [], + "malformation": ["S", "M"], + "etches": [], + "sappiness": ["M"], + "chirography's": [], + "tastierness": [], + "continuum's": [], + "vegged": [], + "brawl's": [], + "Blanche's": [], + "militarizes": [], + "sprinkling": ["M"], + "buttered": [], + "overestimating": [], + "allures": [], + "bicentennial's": [], + "redid": [], + "Marrakesh's": [], + "mayhem": ["M"], + "trendiest": [], + "techs": [], + "prateder": [], + "feederers": [], + "extenuate": ["D", "S", "G", "N"], + "tarantulas": [], + "humphed": [], + "triennially": [], + "conkerers": [], + "gays": [], + "unconstitutionally": [], + "incomprehension": [], + "lumberman's": [], + "lowing's": [], + "anesthetics": [], + "bump": ["M", "D", "R", "Z", "G", "S"], + "outguessed": [], + "batman": ["M"], + "Lubbock": ["M"], + "Lila's": [], + "Jun's": [], + "fullsness": [], + "misfortunes": [], + "logarithmic": [], + "Lane": ["M"], + "Niger": ["M"], + "attributable": [], + "Kamchatka": ["M"], + "sandcastle'ses": [], + "grouching": [], + "condiment's": [], + "mosaic": ["M", "S"], + "cliquish": ["Y", "P"], + "awash": [], + "Wilfredo's": [], + "pliers's": [], + "Minerva's": [], + "cupola'sed": [], + "desirableness's": [], + "downheartednessly": [], + "pestled": [], + "coonskins": [], + "pericardial": [], + "immaculately": [], + "malefaction": ["M"], + "overturning": [], + "holloweder": [], + "compensates": [], + "Virginian": ["S", "M"], + "sycophants": [], + "absolutism's": [], + "pastor": ["M", "S"], + "domains": [], + "Vanzetti's": [], + "Chevron": ["M"], + "sapsuckers's": [], + "ridiculousliness": [], + "partook": [], + "edifyingen": [], + "stagehand": ["M", "S"], + "doweled": [], + "bugling": [], + "neoprene": ["M"], + "allowance": ["S", "M"], + "clunker's": [], + "solemnizing": [], + "haft": ["M", "S"], + "gurneys": [], + "sorcery's": [], + "candle": ["M", "Z", "G", "D", "R", "S"], + "slobs": [], + "heard": ["A", "U"], + "cyberbully": ["S", "M"], + "Faraday": ["M"], + "prognostics": [], + "Olsen": ["M"], + "hillier": [], + "so": [], + "drape'sers": [], + "bugleder": [], + "buttonhole": ["D", "S", "M", "G"], + "neurological": ["Y"], + "unfocused": [], + "JavaScript's": [], + "EFL": [], + "bushingings": [], + "brazens": [], + "Valparaiso's": [], + "unmounted": [], + "tamest": [], + "fanciness's": [], + "straitjacket's": [], + "arceding": [], + "knockoff's": [], + "parseder": [], + "arsenal": ["M", "S"], + "backslider's": [], + "stripling's": [], + "Mirabeau": ["M"], + "biodegrades": [], + "bankingable": [], + "Yuletide'ses": [], + "sinkholes": [], + "cricking": [], + "puerperal": [], + "playgrounds's": [], + "reembark": [], + "grannies's": [], + "immortalized": [], + "hyenas": [], + "joysing": [], + "buildingings": [], + "Rheingau": ["M"], + "unbridled": [], + "diamondback's": [], + "carcinogen's": [], + "yard's": [], + "deal": ["S", "J", "Z", "G", "M", "R"], + "roundelays": [], + "glitterati": [], + "areas's": [], + "cobbler's": [], + "notabilities": [], + "foray'sed": [], + "sailors's": [], + "herpetologists's": [], + "betrayersing": [], + "commodes": [], + "envenoming": [], + "vacuousliness": [], + "epithet's": [], + "extortioner's": [], + "danishes": [], + "nuthatch's": [], + "melee's": [], + "overruled": [], + "Scientologist": ["S", "M"], + "codificationers": [], + "traversing": [], + "grommet's": [], + "pyrites": ["M"], + "Ac's": [], + "finny": [], + "depredation's": [], + "emerged": [], + "pricker's": [], + "Dial's": [], + "formulator": ["S", "M"], + "firedamp's": [], + "Hermite": ["M"], + "pressuring": [], + "satyrs": [], + "muse's": [], + "pilferinged": [], + "sarong's": [], + "lamaseries's": [], + "Alabama's": [], + "clumpier": [], + "deciders": [], + "Maoist's": [], + "whiffing": [], + "dunked": [], + "mistily": [], + "motorbike": ["M", "G", "D", "S"], + "overhand's": [], + "Markham's": [], + "reprieves's": [], + "collapse's": [], + "chooser's": [], + "wave'sers": [], + "vacillate": ["X", "G", "N", "D", "S"], + "unhandy": ["T"], + "beansprouts": [], + "REM": ["S", "M"], + "pooh'sed": [], + "outworks": [], + "inamoratas's": [], + "napkin's": [], + "slightness": ["M"], + "presented": [], + "Southerner's": [], + "jocoseness's": [], + "redye": ["D", "S"], + "ablating": [], + "forecloseds": [], + "boycotts": [], + "crampeding": [], + "processor": ["S", "M"], + "wheelchair's": [], + "fellow's": [], + "wold'ses": [], + "dissection": [], + "homosexuals": [], + "simplex": [], + "reabsorb": [], + "philanders": [], + "batteringsers": [], + "Justinian": ["M"], + "reticulation's": [], + "ear": ["S", "M", "D", "Y"], + "silliest": [], + "fulfill": ["L", "D", "G", "S"], + "genitive's": [], + "murderous": ["Y"], + "besmircheds": [], + "lived": [], + "Raphael": ["M"], + "noggins": [], + "antipodes's": [], + "cottoned": [], + "stiffenersing": [], + "fishpond": ["M", "S"], + "alludes": [], + "Crosby's": [], + "true's": [], + "timiderly": [], + "fussiest": [], + "soulless": ["Y", "P"], + "diagram": ["S", "M"], + "retorting's": [], + "Sheila's": [], + "bootleg'ses": [], + "Vidal": ["M"], + "caliber": ["S", "M"], + "wimpled": [], + "Tabitha's": [], + "undiscover": [], + "lyrical": ["Y"], + "heading": ["M"], + "diverts": [], + "cunning's": [], + "Yorkie's": [], + "Sephardi's": [], + "abjectness's": [], + "seductions's": [], + "reconstruct": ["V"], + "broilersing": [], + "stomached": [], + "connotation": [], + "inveteracy": ["M"], + "literati": ["M"], + "meanlyings": [], + "cementer's": [], + "printing's": [], + "who's": [], + "modulator'ses": [], + "Mexican'ses": [], + "spas's": [], + "bicyclists": [], + "wok'sen": [], + "castaway's": [], + "Hollis": ["M"], + "unbending": [], + "whitener": ["M"], + "couture's": [], + "whip": ["M", "S"], + "kuchen's": [], + "nonsexist": [], + "backspin": ["M"], + "globalists": [], + "smothering": [], + "perturbation's": [], + "fiefdoms": [], + "Theresa's": [], + "decelerated": [], + "persecutingen": [], + "deportee's": [], + "cosmology's": [], + "suspenseful": [], + "harvesters": [], + "acclimatesing": [], + "imitators's": [], + "tangled": [], + "loan'sed": [], + "bumph": [], + "wearingses": [], + "languages": [], + "amen": ["B"], + "Librium": ["M"], + "microeconomics": ["M"], + "measurement'ses": [], + "human": ["S", "M", "R", "Y", "T", "P"], + "revealsed": [], + "ostrich's": [], + "sporadically": [], + "perfumer": ["M"], + "squib's": [], + "requesting": [], + "cuffed": [], + "phallocentric": [], + "remembrance": ["M", "S"], + "endorsers": [], + "megaphoned": [], + "swizzles": [], + "intended's": [], + "equitation": ["M"], + "Damian's": [], + "speakersing": [], + "signposting": [], + "cermet's": [], + "stoups": [], + "serums": [], + "inkiest": [], + "unmentioned": [], + "crippling": ["Y"], + "ermine": ["S", "M"], + "cuttings": [], + "commercializing": [], + "imperative'sly": [], + "daze": ["D", "S", "M", "G"], + "yuk": ["S", "M"], + "incapacitating": [], + "compatriot'ses": [], + "metalworkersing": [], + "drollness": ["M"], + "radicchio's": [], + "slathereding": [], + "spearheads": [], + "plodder's": [], + "fissionable": [], + "docketed": [], + "Adventist'ses": [], + "international": ["S", "M", "Y"], + "waging's": [], + "outplayed": [], + "Cline": ["M"], + "flunky": ["S", "M"], + "obfuscationsed": [], + "Almach's": [], + "worship's": [], + "sphere's": [], + "lipid": ["S", "M"], + "typifying": [], + "towering's": [], + "Nukualofa's": [], + "encore'sing": [], + "unstudied": [], + "pikestaff": ["S", "M"], + "Bambi": ["M"], + "entangles": [], + "Kampala's": [], + "unfeasible": [], + "defy": ["G", "D", "S"], + "tippler": ["M"], + "rheumatics": [], + "incombustible": [], + "reoccupation": [], + "foldouts": [], + "monologists's": [], + "cleanness": ["U", "M"], + "bookplate": ["M", "S"], + "pelicans": [], + "outboards": [], + "Vicksburg": ["M"], + "earldom's": [], + "Terran": ["M"], + "argyle's": [], + "pusses": [], + "tawdry": ["R", "T", "P"], + "faceted": [], + "collocatingen": [], + "hardcovers's": [], + "idioms": [], + "ratcheting's": [], + "Rozelle's": [], + "venturesomely": [], + "cheateder": [], + "win": ["S", "G", "M", "D"], + "hellishness's": [], + "foundry's": [], + "teeds": [], + "enmeshed": [], + "Yugoslavs": [], + "fronteding": [], + "lentils": [], + "lunched": [], + "tenser": [], + "cannibalism": ["M"], + "tags's": [], + "Nathan's": [], + "summons": ["G", "M", "D", "S"], + "Fassbinder's": [], + "Styrofoam's": [], + "encapsulationed": [], + "lipids's": [], + "beluga": ["M", "S"], + "grandma": ["M", "S"], + "watchmakers": [], + "vanished": [], + "breakout'ses": [], + "powdery": [], + "merits": [], + "unpopularity": [], + "smashesers": [], + "persecution's": [], + "Valentine's": [], + "Osceola's": [], + "chainsaweding": [], + "seafood": ["M"], + "hybridism": ["M"], + "pretentiousness's": [], + "gators's": [], + "puckishness's": [], + "Jaxartes": ["M"], + "entitling": [], + "bottled": [], + "yellowest": [], + "physicians": [], + "placate": ["D", "S", "G", "N"], + "perihelion's": [], + "declares": [], + "Issac's": [], + "ASL": ["M"], + "hastiest": [], + "longingly": [], + "briers": [], + "twaddles": [], + "belying": [], + "stareder": [], + "sundries's": [], + "Gorgas's": [], + "politburo'ses": [], + "guide's": [], + "mainsails": [], + "bargaineder": [], + "grackle'ses": [], + "strengtheninged": [], + "clearances's": [], + "busgirls": [], + "blunting": [], + "goslings's": [], + "bollard": ["S"], + "Seagram's": [], + "leerierness": [], + "fetcher": ["M"], + "inductance": ["M"], + "teeter": ["M", "D", "S", "G"], + "unchallenged": [], + "Page": ["M"], + "escalatingen": [], + "snowsuits": [], + "numismatist": ["S", "M"], + "Aberdeen's": [], + "pier's": [], + "concertgoer": ["S"], + "leaves": [], + "wrong": ["S", "T", "G", "M", "P", "D", "R", "Y"], + "islands": [], + "yawneder": [], + "Handel's": [], + "pervading": [], + "robotizinged": [], + "outboastsing": [], + "crookeder": [], + "tomcats": [], + "gaffes's": [], + "kibitzes": [], + "Addie's": [], + "song's": [], + "paralegal's": [], + "dales's": [], + "choker's": [], + "funner": [], + "roundabout's": [], + "crosser": [], + "shave's": [], + "sonograms's": [], + "brutishness's": [], + "booth": ["M"], + "grounderings": [], + "waged": ["U"], + "remunerative": [], + "statecraft": ["M"], + "provolone": ["M"], + "burgher's": [], + "pantheism": ["M"], + "Mumford": ["M"], + "minersing": [], + "interchange's": [], + "fiduciary's": [], + "jots's": [], + "benefactions": [], + "keepsake's": [], + "oared": [], + "ix": [], + "backache'ses": [], + "post's": [], + "cooperators": [], + "premolars's": [], + "Asturias's": [], + "swamps": [], + "nervelessness": ["M"], + "communiques's": [], + "hospitably": ["I"], + "physiotherapist'ses": [], + "pleasure'sing": [], + "milkersing": [], + "picnicker": ["S", "M"], + "agreed": [], + "transfusion's": [], + "quarantined": [], + "pascal": ["M", "S"], + "Arthur": ["M"], + "darted": [], + "autoclave'ses": [], + "squawk's": [], + "anatomies": [], + "alleges": [], + "shelving": ["M"], + "vibraharp's": [], + "reunfrozen": [], + "nonnative'ses": [], + "hedonism": ["M"], + "Na's": [], + "involuntariness": ["M"], + "mike": ["M", "G", "D", "S"], + "dither": ["S", "M", "D", "R", "Z", "G"], + "mount": ["E", "A", "S", "G", "M", "D"], + "Hrothgar's": [], + "subsidization": ["M"], + "beard": ["M", "D", "G", "S"], + "sultana": ["S", "M"], + "canopied": [], + "halfpenny's": [], + "confiders": [], + "escapism": ["M"], + "Confucians": [], + "duplicator's": [], + "bowman's": [], + "aid'sed": [], + "domains's": [], + "Manchuria": ["M"], + "trainable": [], + "Freddie": ["M"], + "transgressors's": [], + "arrivinged": [], + "INRI": [], + "convulseds": [], + "plethora": ["M"], + "enlisting": [], + "kit": ["S", "G", "M", "D"], + "ovule": ["M", "S"], + "suckeder": [], + "transsexuals": [], + "pedestrianize": ["G", "D", "S"], + "northwester": ["M", "Y"], + "swirling": [], + "cumbers": [], + "forepersons's": [], + "apishly": [], + "bear'ser": [], + "phonologist": ["M", "S"], + "nature": ["C", "S"], + "BSD": ["S", "M"], + "gossip's": [], + "blunt": ["P", "T", "G", "D", "R", "Y", "S"], + "Webern's": [], + "Mazda's": [], + "senors": [], + "Cromwellian": ["M"], + "Kingstown": ["M"], + "deskill": ["G"], + "Quebec": ["M"], + "cope": ["M", "S"], + "hows's": [], + "overbuild": ["S", "G"], + "separatism's": [], + "inureds": [], + "commonplace's": [], + "fest": ["M", "R", "Z", "V", "S"], + "sugary": ["R", "T"], + "rollerskating's": [], + "suffragan'ses": [], + "pathfinder": ["S", "M"], + "plodded": [], + "proprietaries's": [], + "Zululand": [], + "Leticia": ["M"], + "gambleder": [], + "formality's": [], + "succeed": ["G", "D", "S"], + "cultivate": ["B", "D", "S", "G", "N"], + "omenens": [], + "South's": [], + "chestnut": ["S", "M"], + "devastation": ["M"], + "swellerings": [], + "formal's": [], + "curbstones": [], + "condensationens": [], + "Wednesday's": [], + "Jamal's": [], + "fruitiness's": [], + "nonresident's": [], + "runabout": ["M", "S"], + "rocks": [], + "cat": ["S", "M"], + "arresting": [], + "broadloom": ["M"], + "Cecelia": ["M"], + "Galloway": ["M"], + "scrub'ses": [], + "combinations's": [], + "millionairess": ["S"], + "artier": [], + "equaled": [], + "radiosonde's": [], + "overdress'sed": [], + "aspirations": [], + "Haw": [], + "Yakutsk": ["M"], + "ravel": ["U", "D", "S", "G"], + "legislature": ["S", "M"], + "regathers": [], + "unwieldiness's": [], + "bratwursts's": [], + "hotplates's": [], + "Grable": ["M"], + "utensil's": [], + "cross's": [], + "tetchily": [], + "factorizeds": [], + "coreder": [], + "tinsmith's": [], + "Saragossa's": [], + "Apple's": [], + "bypaths": [], + "consoling": ["Y"], + "cabbies": [], + "ivory": ["S", "M"], + "beguilers": [], + "conceit": ["S", "M", "D"], + "XXL": [], + "audits": [], + "threshers": [], + "ftpersing": [], + "tilled": [], + "Ringo": ["M"], + "formulatingen": [], + "ponderersing": [], + "cable": ["M", "G", "D", "S"], + "bookseller'ses": [], + "hobnails": [], + "Northeasts": [], + "slumlords": [], + "mezzanine's": [], + "lames": [], + "sledge'sing": [], + "nationalizesing": [], + "bight'ses": [], + "horizontals's": [], + "Fuji's": [], + "contemplatives": [], + "Tompkins": ["M"], + "passionflower": ["S", "M"], + "Etruscan's": [], + "collideds": [], + "peccaries": [], + "bidet": ["M", "S"], + "pullers": [], + "setup's": [], + "polymers's": [], + "Athabaskan's": [], + "balboa's": [], + "expansiveness": ["M"], + "involvemented": [], + "whittled": [], + "Uruguayan's": [], + "crestfallen": [], + "Hathaway": ["M"], + "knobby": ["T", "R"], + "vases": [], + "prepubescent": ["S", "M"], + "Figaro": ["M"], + "toadied": [], + "eruptsed": [], + "frog'ses": [], + "poplin": ["M"], + "playfulness": ["M"], + "psych": ["M", "D", "S", "G"], + "pensionersing": [], + "mozzarella": ["M"], + "dyslexic's": [], + "prototypical": [], + "expostulationsed": [], + "gormandizes": [], + "prizefighter": ["M"], + "frankincense's": [], + "horseshit": ["!"], + "pleading'sly": [], + "millennial's": [], + "contend": [], + "fallacious": ["Y"], + "ibidem": [], + "dorkiest": [], + "relativity": ["M"], + "styptics": [], + "Occidental": ["M", "S"], + "plucky": ["R", "P", "T"], + "modesty's": [], + "spangles": [], + "diktats": [], + "respondents's": [], + "exoskeletons": [], + "Gilberto's": [], + "bandies": [], + "Lyons": ["M"], + "filmstrip'ses": [], + "Chicano": ["M"], + "sandstorms": [], + "unitings": [], + "enchained": [], + "Cathy": ["M"], + "planet": ["S", "M"], + "naming": [], + "matriarchal": [], + "telemarketers's": [], + "edutainment": ["M"], + "downbeats": [], + "Elnath": ["M"], + "psychoanalytical": ["Y"], + "Avila": ["M"], + "professionalism": ["M"], + "mauler's": [], + "spookiness's": [], + "racetracks": [], + "revolvinged": [], + "bellyached": [], + "cassettes": [], + "blabs": [], + "ruddiest": [], + "bulletproofed": [], + "Havana's": [], + "slingshots's": [], + "Margrethe's": [], + "hemp'sen": [], + "vaudevillian": ["M", "S"], + "paradeder": [], + "lifeline's": [], + "gourmand": ["S", "M"], + "translucency's": [], + "jinni's": [], + "dwarfish": [], + "hire's": [], + "MIA": [], + "playing's": [], + "slobbed": [], + "lazybones": ["M"], + "lamp": ["M", "S"], + "superpower": ["S", "M"], + "trademarksing": [], + "embarks": [], + "survives": [], + "hatter's": [], + "Updike": ["M"], + "detoxifiesing": [], + "symptoms": [], + "switching": [], + "Kenneth's": [], + "individual": ["M", "Y", "S"], + "chipper's": [], + "Bermudians's": [], + "gypping": [], + "tog": ["S", "M"], + "tenens": [], + "Shelley": ["M"], + "accord": ["G", "M", "D", "S"], + "kelvins": [], + "Deanne's": [], + "subjecting": [], + "robin'ses": [], + "dynamic'ses": [], + "grind'ser": [], + "manumission's": [], + "tributaries's": [], + "squelch's": [], + "gunk": ["M"], + "frontsed": [], + "bandstand's": [], + "Dutch": ["M"], + "sadists": [], + "faxing's": [], + "samarium": ["M"], + "barefacedly": [], + "monopolization's": [], + "wordiness's": [], + "Parr": ["M"], + "officiousness": ["M"], + "muteness's": [], + "habitation": ["M", "S"], + "imperially": [], + "Guadalupe": ["M"], + "Uighur": ["M"], + "extirpatingen": [], + "pieceworker's": [], + "commode's": [], + "headstrong": [], + "runners's": [], + "launches": [], + "rotting": [], + "Corning": ["M"], + "Herzl's": [], + "protein's": [], + "flyover": ["M", "S"], + "subsiding": [], + "candlestick's": [], + "peepsers": [], + "presupposition": ["M", "S"], + "intrastate": [], + "pseudo": ["S"], + "Hodge's": [], + "bod'sed": [], + "fiefdom'ses": [], + "Ivorian": [], + "digitizeds": [], + "waitresses": [], + "fanatic": ["S", "M"], + "mezzanine": ["M", "S"], + "password": ["M", "S"], + "ascertainsable": [], + "scatteringings": [], + "yowl": ["M", "D", "S", "G"], + "Mo": ["M"], + "agoraphobia's": [], + "ample": ["T", "R"], + "correlate'sing": [], + "whipcord's": [], + "quiver": ["S", "M", "D", "G"], + "driveshaft": ["S", "M"], + "saxes": [], + "wkly": [], + "overlayings": [], + "Romeo's": [], + "yuccas": [], + "algorithmic": [], + "fingerboards": [], + "chips's": [], + "adjusteds": [], + "rick's": [], + "grin": ["M", "S"], + "preachment": ["M"], + "penitent'sly": [], + "carbonizing": [], + "technologist'ses": [], + "clumps's": [], + "edify": ["D", "R", "S", "Z", "G", "N"], + "mortuary": ["S", "M"], + "institutionalizesing": [], + "curdling": [], + "pigsties's": [], + "espadrille'ses": [], + "colloids": [], + "piston's": [], + "raveling": ["S"], + "unstoppable": [], + "ignoble": [], + "encouragingly": [], + "noshed": [], + "contributing": [], + "pekingeses": [], + "mausoleum's": [], + "polygon's": [], + "finishesing": [], + "listened": [], + "pal": ["S", "M", "Y"], + "confection'ser": [], + "concludeds": [], + "drainerers": [], + "distractedly": [], + "vat's": [], + "strop's": [], + "crossroads": ["M"], + "junkets": [], + "Ehrlich": ["M"], + "plotted": [], + "squiggles's": [], + "stiffnessens": [], + "bullock's": [], + "barbershop": ["M", "S"], + "nutpicks's": [], + "sponsoreding": [], + "capons": [], + "dazes": [], + "regurgitateds": [], + "Mohammedanisms": [], + "expansiveliness": [], + "centurion": ["S", "M"], + "fat": ["G", "S", "P", "M", "D"], + "concretely": [], + "darting": [], + "create": ["K", "A", "D", "S", "G", "N", "V"], + "renovatingen": [], + "endeavors's": [], + "Dawson's": [], + "used": ["U"], + "preposterously": [], + "plectrum'ses": [], + "genre's": [], + "vocal'sly": [], + "cartsers": [], + "ducting": [], + "Faustian": ["M"], + "flirt": ["S", "G", "M", "D"], + "blitheness's": [], + "Cessna": ["M"], + "mulcts": [], + "Danone's": [], + "sourest": [], + "result's": [], + "Arapaho": ["M", "S"], + "atmosphere'ses": [], + "impacts's": [], + "lobber's": [], + "woodlot": ["S", "M"], + "blooper's": [], + "malted'ses": [], + "Housman's": [], + "lockablers": [], + "reprieving": [], + "curtain'sed": [], + "assigning": [], + "mirages": [], + "apocalypse's": [], + "caramelized": [], + "upper's": [], + "depoliticize": [], + "admonishment's": [], + "Lyme": ["M"], + "Nimrod": ["M"], + "tweeds": ["M"], + "reforged": [], + "Antaeus's": [], + "gunfight": ["M", "R", "Z", "S"], + "sidelight'ses": [], + "tater's": [], + "PMS's": [], + "took": ["A"], + "cannot": [], + "depositories": [], + "explicable": ["I"], + "repositories": [], + "separatist's": [], + "absolutist": ["M", "S"], + "westerner": ["M"], + "postilions": [], + "paleface": ["M", "S"], + "IVs's": [], + "Icarus": ["M"], + "tuque's": [], + "marinara": ["M"], + "Candace": ["M"], + "Gardner": ["M"], + "tripling": [], + "friskier": [], + "spoilersing": [], + "bootleg's": [], + "ogle'sers": [], + "Ascella's": [], + "uprights": [], + "intend": [], + "microfiber's": [], + "polecat'ses": [], + "bladders": [], + "mystic's": [], + "swillings": [], + "paintbrush's": [], + "unpin": ["S"], + "teletypewriters": [], + "abstainer": ["M"], + "polysemous": [], + "lampooning's": [], + "screwballs": [], + "modifier": ["M"], + "honorific": ["M", "S"], + "stria": ["M"], + "acetylene's": [], + "jailhouse": ["S"], + "Joule": ["M"], + "Italian's": [], + "vandal's": [], + "nasals's": [], + "telemetries": [], + "embankmenting": [], + "Muller": ["M"], + "Huston's": [], + "peso'ses": [], + "leopards's": [], + "Horacio": ["M"], + "Billings's": [], + "willfully": [], + "sweetener'ses": [], + "glances": [], + "alternate": ["D", "S", "M", "Y", "G", "N", "V", "X"], + "hairbreadths": [], + "clef's": [], + "palls": [], + "peripatetic'ses": [], + "Souphanouvong's": [], + "fistulas": [], + "Spock's": [], + "Lassa": ["M"], + "opined": [], + "vignettist's": [], + "henpecking": [], + "bundling": [], + "Born": ["M"], + "Newark's": [], + "urbanologist": ["M", "S"], + "tasteder": [], + "Amtrak": ["M"], + "bids's": [], + "activist": ["M", "S"], + "analysand'ses": [], + "meticulousness": ["M"], + "exfoliatingen": [], + "atropine": ["M"], + "foregone": [], + "spectroscopic": [], + "spookiest": [], + "detracted": [], + "Auckland": ["M"], + "transiting's": [], + "volatilized": [], + "USDA's": [], + "galleding": [], + "coos": [], + "astoundingly": [], + "oohinged": [], + "spectacularlies": [], + "motherfucking": ["!"], + "nincompoops's": [], + "medievalist's": [], + "Charley": ["M"], + "Cochise": ["M"], + "lessor'ses": [], + "satinwood's": [], + "perambulating": [], + "chorally": [], + "bayeding": [], + "snouts's": [], + "Montcalm's": [], + "Stockton's": [], + "Constitution": [], + "Zarathustra": ["M"], + "heavenward": ["S"], + "tenseder": [], + "semiweeklies": [], + "tryst'sed": [], + "slouching": [], + "longueur's": [], + "Mai": ["M"], + "weaves": [], + "acclaiming": [], + "jiffy": ["S", "M"], + "nightclub's": [], + "saunters": [], + "voodooism's": [], + "barrages": [], + "companionsable": [], + "setback'ses": [], + "wagging": [], + "souse's": [], + "fugue": ["S", "M"], + "duff's": [], + "rustproof": ["S", "D", "G"], + "disruptsed": [], + "whiff's": [], + "overcrowds": [], + "hangnails": [], + "Robbins's": [], + "squadron's": [], + "sputter": ["M", "D", "G", "S"], + "squasheds": [], + "editeding": [], + "inaugurateds": [], + "PhD": ["M"], + "diamante": [], + "unjustifiably": [], + "dutiful": ["Y", "P"], + "smokescreens": [], + "toadstool'ses": [], + "Swiss's": [], + "gill": ["M", "S"], + "Ophiuchus's": [], + "gazetteer": ["M", "S"], + "clodhopper's": [], + "cartridge": ["M", "S"], + "sunbath'sed": [], + "playmates": [], + "nationalist": ["S", "M"], + "temporizers": [], + "petard'ses": [], + "selector's": [], + "cycleds": [], + "Jean": ["M"], + "wincing": [], + "prostrationens": [], + "Richthofen's": [], + "dab": ["S", "M"], + "tensions's": [], + "Bronte's": [], + "either": [], + "sols's": [], + "Joyner's": [], + "Kongo": ["M"], + "prates": [], + "anchored": [], + "sequesters": [], + "consonant'sly": [], + "dabbles": [], + "killdeers's": [], + "presort": ["D", "G", "S"], + "decisive": ["I", "P", "Y"], + "courtesies's": [], + "nickelodeons": [], + "apron's": [], + "Remington's": [], + "riflersing": [], + "sherries": [], + "bicameralism": ["M"], + "uncharitable": [], + "demonstration's": [], + "mallows": [], + "humiliatesing": [], + "wellies": [], + "flex'ses": [], + "dealer's": [], + "calligrapher": ["S", "M"], + "glossier": [], + "mordancy": ["M"], + "coursing": [], + "cheers": [], + "clavicle'ses": [], + "caloric": [], + "peels": [], + "flecking": [], + "cheapened": [], + "producer": ["A", "M"], + "binding": ["M", "S"], + "contingency": ["S", "M"], + "ethanol": ["M"], + "fountain": ["S", "M"], + "rhymester's": [], + "funereally": [], + "motley'ses": [], + "groundnuts": [], + "neediness": ["M"], + "violin": ["M", "S"], + "predominates": [], + "occurs": [], + "singular's": [], + "auscultation": ["M"], + "Gavin's": [], + "pomp's": [], + "trimness": ["M"], + "Iliad": ["S", "M"], + "fagging": [], + "ventilation's": [], + "pitiable": [], + "phosphorus's": [], + "systemic": ["M", "S"], + "allays": [], + "dinky's": [], + "underacted": [], + "uninstalleder": [], + "protozoic": [], + "existing": [], + "peculiarity's": [], + "paginates": [], + "lechers": [], + "Portugal": ["M"], + "topmasts's": [], + "medicatingen": [], + "separate's": [], + "aligner'ses": [], + "sportscast's": [], + "platformed": [], + "fumeds": [], + "drooped": [], + "cays": [], + "grins": [], + "entomologist'ses": [], + "wedder": [], + "coxcomb'ses": [], + "cataloged": [], + "bossism": ["M"], + "scrap": ["M", "D", "R", "S", "Z", "G", "J"], + "Ephesian's": [], + "typographer's": [], + "mastermind'sed": [], + "mongolism's": [], + "jackpot": ["M", "S"], + "abattoirs": [], + "moweder": [], + "perforates": [], + "tundras's": [], + "Tobago's": [], + "abdomen's": [], + "cackle": ["M", "Z", "G", "D", "R", "S"], + "trappable": [], + "organdy's": [], + "ingratiation's": [], + "toxicological": [], + "panhandler's": [], + "outgrowing": [], + "mahout's": [], + "arrogateds": [], + "dawdlers": [], + "dislodged": [], + "Kresge": ["M"], + "engenderinged": [], + "dapple's": [], + "Rocky's": [], + "liveware": [], + "guidebook's": [], + "wrappers": [], + "ridiculousness's": [], + "bagging": [], + "hatchback": ["M", "S"], + "Ferber": ["M"], + "ants's": [], + "irremediable": [], + "excoriatingen": [], + "franked": [], + "toecap's": [], + "purposely": [], + "overspreadings": [], + "tinglying": [], + "hothead": ["D", "S", "M"], + "illustrates": [], + "patience": ["M"], + "chorusing's": [], + "CIA": ["M"], + "stalkeder": [], + "shad'sed": [], + "Meuse": ["M"], + "overflights": [], + "bedposts's": [], + "Walt'ser": [], + "masked": [], + "anus'ses": [], + "gesundheit": [], + "Thanksgiving": ["M", "S"], + "handsomely": [], + "muskie's": [], + "footrest": ["M", "S"], + "digitalis": ["M"], + "daffiness's": [], + "Transylvania": ["M"], + "preponderances": [], + "jollier": [], + "Ecuadoran's": [], + "eligibility": ["I", "M"], + "Worcesters": [], + "expendables": [], + "oboists": [], + "garter's": [], + "statutorily": [], + "waterhole's": [], + "Stockton": ["M"], + "staffer's": [], + "ladyfinger's": [], + "coloring's": [], + "erst": [], + "Rickey": ["M"], + "backer's": [], + "embedding": [], + "Bowie's": [], + "spew": ["M", "D", "R", "Z", "G", "S"], + "layer's": [], + "meekliness": [], + "lintel": ["M", "S"], + "equivalency's": [], + "brandishes": [], + "fritter's": [], + "drizzle": ["M", "G", "D", "S"], + "pears": [], + "Chablis": ["M"], + "displeasure's": [], + "flippest": [], + "bastardization": ["M", "S"], + "pipe": ["M", "S"], + "heater": ["S", "M"], + "pauperism's": [], + "bedimmed": [], + "stinkersing": [], + "aversionsen": [], + "icemen": [], + "ho": ["S", "M", "D", "R", "Y", "Z"], + "affinity": ["S", "M"], + "commuted": [], + "Sargasso's": [], + "Cartier's": [], + "wallowing": [], + "mac": ["S", "G", "M", "D"], + "meetinghouse": ["S", "M"], + "semimonthly's": [], + "supplantsed": [], + "klutzier": [], + "bust'sed": [], + "boiling's": [], + "decorators": [], + "choppiness": ["M"], + "enumeration": ["M"], + "petrochemical's": [], + "expeditesers": [], + "mottlinged": [], + "commercialism": ["M"], + "schmaltziest": [], + "copycatted": [], + "Chin's": [], + "Tatars": [], + "parimutuel": ["M", "S"], + "linesman": ["M"], + "whip's": [], + "lisper": ["M"], + "defaulter's": [], + "sect": ["I", "M", "S"], + "jailersing": [], + "killer": ["M"], + "sandblast's": [], + "tent's": [], + "morpheme's": [], + "slit's": [], + "coquetting": [], + "completest": [], + "radioings": [], + "Mn's": [], + "cogitatingen": [], + "crookeding": [], + "y": ["F"], + "leewards": [], + "sorted's": [], + "anarchism's": [], + "Spartan": ["M", "S"], + "pillage'sers": [], + "blastoff'ses": [], + "uncounted": [], + "teaks": [], + "Antigone": ["M"], + "sightlier": [], + "perihelion": ["M"], + "tasering": [], + "concern": ["U", "M", "D"], + "ballsy": ["R", "T"], + "emailed": [], + "stalkings": [], + "mawkishnessly": [], + "lawmaking": ["M"], + "mismatch's": [], + "sunbelts's": [], + "varicolored": [], + "Beecher": ["M"], + "mourneder": [], + "robber's": [], + "dramatically": [], + "concertmaster": ["M", "S"], + "Bonita's": [], + "lepers": [], + "sol": ["S", "M"], + "subjugating": [], + "legendary": [], + "anklet": ["M", "S"], + "Purdue's": [], + "gangster": ["S", "M"], + "anytime": [], + "guiltiest": [], + "oscillation": ["M"], + "Britney": ["M"], + "licentiousliness": [], + "Blucher": ["M"], + "chairwoman": ["M"], + "Bayes": ["M"], + "tactics": [], + "nationalism": ["M"], + "politicians": [], + "aspenens": [], + "inland's": [], + "lecheder": [], + "plastering's": [], + "pollack's": [], + "serigraphs": [], + "slander": ["M", "Z", "G", "D", "R", "S"], + "cytologist's": [], + "underpayments's": [], + "Chernenko's": [], + "castings": [], + "pinpricks": [], + "mortarboard's": [], + "liberalizing": [], + "screamer's": [], + "flattop": ["S", "M"], + "Tara's": [], + "scrupulosity": ["M"], + "totsing": [], + "epidemiology's": [], + "mucilage": ["M"], + "unthinkably": [], + "lucubrates": [], + "rebuilds": [], + "mutagen": ["M", "S"], + "Englishwoman's": [], + "hauberk's": [], + "inconsiderateness": [], + "isms": [], + "Musharraf's": [], + "synthetic's": [], + "troupeder": [], + "duh": [], + "stylist's": [], + "Marquette's": [], + "Brahman": ["M", "S"], + "cavortings": [], + "villainy's": [], + "Russo": ["M"], + "dialog": [], + "discommoded": [], + "litigateds": [], + "fur's": [], + "shuttlecocking": [], + "Virgil": ["M"], + "gimletings": [], + "disturber": ["M"], + "wainwright'ses": [], + "Presbyterians's": [], + "abstention'ses": [], + "coincidence's": [], + "dissimulation": [], + "dolts": [], + "forklifts": [], + "reelection": [], + "marinade'sing": [], + "traceable": ["U"], + "prince": ["S", "M", "Y"], + "haunters": [], + "Condorcet": ["M"], + "airport's": [], + "gafferers": [], + "constituents": [], + "moonlighters": [], + "clarify": ["X", "D", "S", "N", "G"], + "grumpinesser": [], + "impracticality": ["M"], + "nonspirituals's": [], + "Emmy": ["M"], + "anticlimactically": [], + "waterway'ses": [], + "potty": ["P", "R", "S", "M", "T"], + "CST": ["M"], + "transportsers": [], + "overextended": [], + "mastiff's": [], + "mascaras": [], + "brr": [], + "cosignatory's": [], + "entrancingly": [], + "shrink'ses": [], + "siege's": [], + "fortifiers": [], + "needlessness": ["M"], + "elucidatesing": [], + "Wordsworth's": [], + "funding's": [], + "mauleder": [], + "beefsteak'ses": [], + "segues": [], + "Rilke's": [], + "predictive": [], + "relevance": ["M"], + "theatergoer": ["S", "M"], + "deflected": [], + "buttersing": [], + "dispositions's": [], + "leotard's": [], + "transept": ["M", "S"], + "bobble'sing": [], + "toners": [], + "plenipotentiaries's": [], + "eggcup": ["S", "M"], + "desolating": [], + "squalidly": [], + "classification": ["C", "A", "M"], + "battalions's": [], + "Rozelle": ["M"], + "parqueting": [], + "heralds's": [], + "Federalist's": [], + "sheikdom": ["M", "S"], + "Mugabe": ["M"], + "Odets": ["M"], + "O'Rourke": ["M"], + "intestacy": ["M"], + "Ill": [], + "Andorran": ["S", "M"], + "milker's": [], + "condensation's": [], + "pleonasm": ["M", "S"], + "knit'ses": [], + "punt's": [], + "migraine": ["M", "S"], + "Abner": ["M"], + "argues": [], + "Manley": ["M"], + "imperiousness's": [], + "annihilator's": [], + "parliamentary": [], + "beforehand": [], + "eyedroppers": [], + "Suharto": ["M"], + "spooled": [], + "cashless": [], + "lactateds": [], + "spittoons": [], + "taxi's": [], + "thread": ["S", "M", "D", "R", "Z", "G"], + "prognosis": ["M"], + "Alicia's": [], + "Reuters": ["M"], + "Zambians's": [], + "wowing's": [], + "stepsons": [], + "educated": ["U"], + "plumber's": [], + "gizzard's": [], + "curiously": [], + "meaningless": ["Y", "P"], + "conquest": ["A", "M"], + "Barquisimeto": ["M"], + "counterweight'ses": [], + "deformity's": [], + "symmetrically": [], + "Motorola": ["M"], + "vessel's": [], + "amnesia's": [], + "invite's": [], + "hazing's": [], + "underwired": [], + "anticipatingen": [], + "meatheads": [], + "gummiest": [], + "Dunedin": ["M"], + "Starr's": [], + "regularlies": [], + "dowry's": [], + "ungainly": ["R", "P", "T"], + "commotion's": [], + "Guyana's": [], + "paleography": ["M"], + "sentences": [], + "harpists": [], + "tetra's": [], + "something's": [], + "animation's": [], + "preventives's": [], + "dove'ses": [], + "perdurable": [], + "bedsides": [], + "Chaitin": ["M"], + "twittersing": [], + "halve": ["D", "S", "G"], + "Mozambicans's": [], + "fishbowl's": [], + "authenticity's": [], + "comets": [], + "plated": [], + "vitally": [], + "grease's": [], + "encoder": ["M"], + "description's": [], + "cantilevereding": [], + "hart": ["M", "S"], + "flagrance's": [], + "DTP": [], + "shieldeding": [], + "pursuits's": [], + "anatomists's": [], + "inflect": ["S", "D", "G"], + "vandals's": [], + "oases": [], + "Jensen": ["M"], + "silences's": [], + "inreconsideration": [], + "bolster": ["G", "M", "D", "S"], + "loge'ses": [], + "rottenest": [], + "constructive": ["Y", "P"], + "xi": ["S", "M"], + "ludicrously": [], + "Hagar's": [], + "bunkum": ["M"], + "dandelion's": [], + "zilch": ["M"], + "littler": [], + "gauge": ["D", "S", "M", "G"], + "effacement's": [], + "gobble's": [], + "beansing": [], + "ligament": ["M", "S"], + "inundecipherable": [], + "spellcheckersing": [], + "stent's": [], + "pentameters's": [], + "disadvantageous": [], + "fiancee'ses": [], + "Texas's": [], + "Klan's": [], + "stepfathers": [], + "Rumsfeld's": [], + "intersections": [], + "buskin": ["S", "M"], + "climbs's": [], + "formalities": [], + "freeholder's": [], + "pretensions's": [], + "Heller": ["M"], + "clocking": [], + "deportation'ses": [], + "splashing": [], + "equipment": ["M"], + "woodbine's": [], + "pleasantliness": [], + "Medea": ["M"], + "fleetest": [], + "cartridge'ses": [], + "vivisectionist's": [], + "Ehrlich's": [], + "runnier": [], + "hobbyhorses": [], + "restricts": [], + "cashiers's": [], + "convection": ["M"], + "hairpiece's": [], + "shindigs": [], + "expressionism": ["M"], + "Micawber's": [], + "pathologist": ["S", "M"], + "dragonfly's": [], + "provincially": [], + "Pa": ["M"], + "sparkles": [], + "Guinevere": ["M"], + "Satanism": ["M"], + "unpeeled": [], + "chapter's": [], + "stoppleds": [], + "boondoggled": [], + "motherboard": ["S", "M"], + "weatherproofings": [], + "Dunne": ["M"], + "homeopaths": [], + "caretaker'ses": [], + "trochee": ["S", "M"], + "jadedly": [], + "handsomenessly": [], + "crevice'ses": [], + "exurban": [], + "hubcaps": [], + "Zebedee": ["M"], + "schematic": ["S", "M"], + "warned": [], + "humming": [], + "unsafely": [], + "eat": ["Z", "G", "B", "S", "N", "R"], + "imploresing": [], + "huncheds": [], + "Yakut's": [], + "reweavings": [], + "suntan": ["M", "S"], + "tummy": ["S", "M"], + "seaway's": [], + "automatic's": [], + "marinara's": [], + "ideologically": [], + "ungainliness": ["M"], + "chapeaus's": [], + "hungover": [], + "microdots": [], + "microbial": [], + "rotogravure's": [], + "tanner's": [], + "scares": [], + "viciousness": ["M"], + "depressingly": [], + "Kerouac's": [], + "waggeries": [], + "Endymion's": [], + "estimator's": [], + "NORAD": ["M"], + "inverts": [], + "wits": ["M"], + "cigarillo'ses": [], + "deliriously": [], + "adolescent's": [], + "gangstas": [], + "chutney": ["M", "S"], + "blancheds": [], + "greenwood's": [], + "presbyter": ["S", "M"], + "Sabre": ["M"], + "foxing's": [], + "Greek": ["S", "M"], + "Bisquick": ["M"], + "Mizar": ["M"], + "nonparallel'ses": [], + "voluntarily": ["I"], + "porkers": [], + "lubber'sly": [], + "Nation": ["M"], + "earlobes's": [], + "chaise": ["M", "S"], + "muggy": ["P", "T", "R"], + "protrusion's": [], + "straitjacket'sed": [], + "powerboats": [], + "disrearrange": [], + "menials": [], + "Manuel": ["M"], + "moll": ["M", "S"], + "billycan": ["S"], + "sprinklers": [], + "translatable": ["U"], + "Tenochtitlan's": [], + "claps": [], + "lancets": [], + "Long's": [], + "enunciating": [], + "feud'sed": [], + "topazes": [], + "treadings": [], + "rejoicings": [], + "wheezily": [], + "scrimpeding": [], + "saffron": ["M", "S"], + "scrutinizeds": [], + "allover": [], + "recognize": ["D", "R", "S", "G", "B"], + "Nazisms": [], + "fattest": [], + "northwester's": [], + "prisoner": ["M"], + "serve's": ["A", "F"], + "bugle'sers": [], + "hall's": [], + "teleprinter's": [], + "Ono's": [], + "grokked": [], + "pretendeder": [], + "soliloquizing": [], + "betrayals": [], + "Barney's": [], + "sexist": ["M", "S"], + "madams's": [], + "seemeds": [], + "brouhahas": [], + "upbraiding": [], + "tearier": [], + "cavernously": [], + "inconsideration": [], + "handshakings's": [], + "Punjabi's": [], + "cowereding": [], + "Cisco": ["M"], + "highway": ["M", "S"], + "piglet": ["M", "S"], + "unmet": [], + "Valhalla's": [], + "Holly's": [], + "ordinance's": [], + "generosity": ["S", "M"], + "aromatherapist": ["M", "S"], + "unconcerned": [], + "slums": [], + "harridan's": [], + "flypapers": [], + "nasalizesing": [], + "puzzlement's": [], + "aside'ses": [], + "corduroy": ["M", "S"], + "farrows's": [], + "scatted": [], + "coral's": [], + "sullieds": [], + "Croat's": [], + "moldered": [], + "pantos": [], + "frappe's": [], + "westernmost": [], + "Fomalhaut": ["M"], + "silhouetting": [], + "Tabriz'ses": [], + "saddlebag's": [], + "mechanizes": [], + "chits's": [], + "comedians": [], + "strollersing": [], + "plebeian's": [], + "ravioli": ["S", "M"], + "Grotius's": [], + "munificently": [], + "bagatelles's": [], + "Ubangi": ["M"], + "openingings": [], + "hind'ser": [], + "brightlications": [], + "Yahtzee": ["M"], + "desert": ["S", "D", "R", "Z", "G", "M"], + "colonelcy's": [], + "misguidedly": [], + "accusersing": [], + "Aleutian": ["S", "M"], + "pointersing": [], + "trio'ses": [], + "pollen": ["M"], + "vermouth's": [], + "Harte's": [], + "trace's": [], + "isotropic": [], + "homiletic": [], + "copulates": [], + "blistery": [], + "UNIX's": [], + "Passover'ses": [], + "wigs": [], + "shade": ["M", "S"], + "hours": [], + "participated": [], + "guardrail's": [], + "pertainsed": [], + "redevitalize": [], + "incurable'ses": [], + "kibbles": [], + "best's": [], + "accommodate": ["X", "G", "N", "D", "S"], + "McKinley's": [], + "hopefulnesses": [], + "wracks's": [], + "sailing": ["M"], + "monotheistic": [], + "employments": [], + "rhymes": [], + "ugliness": ["M"], + "cordially": [], + "limbo": ["S", "M"], + "suggests": [], + "moues": [], + "f": ["C", "I", "A", "V", "T", "R"], + "humph": ["D", "G"], + "flaunting": ["Y"], + "Jamal": ["M"], + "traveleder": [], + "filibuster": ["M", "D", "R", "S", "Z", "G"], + "flesh's": [], + "ruffing": [], + "snatches": [], + "sadhus": [], + "combativeness's": [], + "posturing's": [], + "subordinated": [], + "Maryland": ["M", "R"], + "open'sed": [], + "philters": [], + "jilted": [], + "Turner's": [], + "contemplated": [], + "presides": [], + "imputation": ["S", "M"], + "mikes": [], + "excites": [], + "droops's": [], + "mismatched": [], + "initializes": [], + "yacht'sed": [], + "fastening": ["M", "S"], + "buns": [], + "maisonettes": [], + "originallies": [], + "minceder": [], + "deniable": ["U"], + "lookout's": [], + "upholstery": ["M"], + "gleamed": [], + "sassier": [], + "washy": ["T", "R"], + "Carnot's": [], + "recruit": ["L", "S", "M", "D", "R", "Z", "G"], + "neuroses": [], + "stets": [], + "scramming": [], + "raspberries's": [], + "vociferated": [], + "throwbacks": [], + "Madison's": [], + "maraudersing": [], + "junketeer's": [], + "tippex": ["G", "D", "S"], + "ethical": ["U", "Y"], + "enormity's": [], + "mouthwash'ses": [], + "anathematizeds": [], + "planteder": [], + "spryness's": [], + "entaileds": [], + "wristband": ["M", "S"], + "vortex": ["M", "S"], + "lectern'ses": [], + "terrazzo's": [], + "Zaire": ["M"], + "rasping's": [], + "percent'ses": [], + "periodicity": ["M"], + "reproaching's": [], + "forestland's": [], + "Gaul": ["S", "M"], + "persuaded": ["U"], + "invidious": ["Y", "P"], + "hatch'sed": [], + "stutter's": [], + "Chevrolet's": [], + "boarded": [], + "overdevelopsed": [], + "sturdierness": [], + "shrugging": [], + "candyinged": [], + "Justine's": [], + "breakdown's": [], + "turmeric": ["S", "M"], + "derivation": ["M", "S"], + "likest": [], + "byway": ["S", "M"], + "Wyo": [], + "conjugal": ["Y"], + "blessedliness": [], + "seafront's": [], + "transactor's": [], + "Nagpur": ["M"], + "limbering": [], + "Scotchman": ["M"], + "mysteriously": [], + "transferal'ses": [], + "cigarette'ses": [], + "forelegs": [], + "balm's": [], + "slime": ["M"], + "hilariousnessly": [], + "bigheads's": [], + "barista": ["M", "S"], + "monitions's": [], + "Dickson's": [], + "preside": ["G", "D", "S"], + "Martha's": [], + "tumult's": [], + "Julliard's": [], + "muttonchops's": [], + "Catholicism'ses": [], + "reams": [], + "pointier": [], + "woolen's": [], + "questioning": ["M", "Y"], + "conversant": [], + "frizzle": ["M", "G", "D", "S"], + "rooters": [], + "Mouthe's": [], + "moldings": [], + "heat's": [], + "dumps": [], + "iniquities": [], + "cavalier's": [], + "tizzy's": [], + "reservation": ["M", "S"], + "ox'sen": [], + "overflowing": [], + "seduction's": [], + "corded": [], + "government'ses": [], + "concurring": [], + "Stacy": ["M"], + "assorted": [], + "stegosaurus'ses": [], + "inflictive": [], + "brimless": [], + "vivariums's": [], + "carjacking's": [], + "newsreader": ["S"], + "seas": [], + "privateers's": [], + "poppy's": [], + "harlot": ["S", "M"], + "everyplace": [], + "basilisk": ["M", "S"], + "mournsers": [], + "pelmet": ["S"], + "italicizes": [], + "alongside": [], + "epidermal": [], + "sportively": [], + "pretzel": ["M", "S"], + "pates": [], + "byroads's": [], + "scoopfuls": [], + "impossibility": ["S", "M"], + "Hamlet": ["M"], + "Greg's": [], + "millisecond": ["S", "M"], + "mushiest": [], + "laziers": [], + "collar": ["S", "M", "D", "G"], + "bream'ses": [], + "Robbins": ["M"], + "orchid": ["S", "M"], + "Nippon's": [], + "rushing": [], + "prams": [], + "Pauli": ["M"], + "pediment'ses": [], + "timeliers": [], + "mattocks": [], + "territory's": [], + "barnstorm": ["S", "D", "R", "Z", "G"], + "robotics's": [], + "enciphersing": [], + "smirching": [], + "sublimer": [], + "nebular": [], + "legalized": [], + "hierarchically": [], + "walleye": ["D", "S", "M"], + "grandee": ["M", "S"], + "Beard": ["M"], + "geologies": [], + "Mathewson's": [], + "wrong's": [], + "Prometheus": ["M"], + "bunch'sed": [], + "Ceylon": ["M"], + "mispronunciation's": [], + "three": ["S", "M"], + "kaddish": ["M", "S"], + "botched": [], + "racquetball": ["S", "M"], + "joshersing": [], + "stateside": [], + "senselessness's": [], + "beginning'ses": [], + "unclouded": [], + "obscurantists's": [], + "accents": [], + "marshal'sed": [], + "mistrusting": [], + "indicates": [], + "Santana's": [], + "settle": ["A", "U", "G", "D", "S"], + "barrister'ses": [], + "laborer's": [], + "homeowner'ses": [], + "infuser's": [], + "inculcated": [], + "Millie": ["M"], + "bearably": ["U"], + "flimsier": [], + "architraves's": [], + "sinusitis's": [], + "meteorological": [], + "copingings": [], + "triflers": [], + "starfruit": [], + "Hector's": [], + "driftnet": ["S"], + "pterodactyl": ["M", "S"], + "steward's": [], + "gripe": ["S", "M"], + "merrymaker'ses": [], + "Javanese's": [], + "symptom's": [], + "erudition's": [], + "freakishliness": [], + "leitmotiv": ["M", "S"], + "expostulationens": [], + "drizzly": [], + "shampooersing": [], + "Judah's": [], + "mortgagees": [], + "daffodils's": [], + "unsteadier": [], + "Tommie's": [], + "causality": ["S", "M"], + "amorphously": [], + "jitterbug": ["M", "S"], + "pekingeses's": [], + "falsely": [], + "ibex'ses": [], + "Berlin'ser": [], + "roadblock'sed": [], + "Huck": ["M"], + "antimacassar": ["M", "S"], + "deadbeat": ["M", "S"], + "smashup": ["S", "M"], + "Hinduisms": [], + "engravingsed": [], + "arthritic's": [], + "watchful": ["Y", "P"], + "fores": [], + "guestrooms": [], + "supermom'ses": [], + "celeb": ["S"], + "sextuplets": [], + "circumflex's": [], + "Anouilh": ["M"], + "epithelium's": [], + "beautician's": [], + "oscillates": [], + "straightaways": [], + "apostasy": ["S", "M"], + "yens's": [], + "stuttered": [], + "monsignors's": [], + "Borlaug's": [], + "plaint's": [], + "pedalos": [], + "Lars's": [], + "fishtailings": [], + "bayed": [], + "activates": [], + "retro's": [], + "eloped": [], + "concertizing": [], + "broadcast": ["A", "M", "G", "S"], + "Fichte": ["M"], + "generic's": [], + "Michigan": ["M"], + "entertains": [], + "begrudgeds": [], + "expecting": [], + "waitstaff's": [], + "dominance's": [], + "supine": ["Y"], + "warriors's": [], + "heartburn's": [], + "cantons": [], + "Vespasian": ["M"], + "phonieder": [], + "cages's": [], + "audition'sed": [], + "underscores's": [], + "smithereens": ["M"], + "alphabetization": ["S", "M"], + "ghoulishness's": [], + "prevails": [], + "irradiating": [], + "quarrelsomeness's": [], + "palatable": ["U"], + "triplet's": [], + "lobbyist'ses": [], + "firework's": [], + "riverbed'ses": [], + "condemns": [], + "Middleton's": [], + "cheeriness": ["M"], + "treads's": [], + "detacheds": [], + "forefronts": [], + "Sarah's": [], + "backers": [], + "dinkier": [], + "grammatical": ["U", "Y"], + "cavernous": ["Y"], + "feigning": [], + "primitiveness's": [], + "sorcerer's": [], + "Pollyanna's": [], + "witcheds": [], + "televangelist": ["M", "S"], + "spottiest": [], + "faucets's": [], + "disseminates": [], + "rink'ses": [], + "spices's": [], + "presbyteries's": [], + "Piccadilly": ["M"], + "blankets": [], + "earplug": ["S", "M"], + "minorities's": [], + "supportablers": [], + "nosegay's": [], + "Burundians": [], + "mooch's": [], + "bisection'ses": [], + "abstractly": [], + "freshwater": ["M"], + "secant": ["S", "M"], + "imposingly": [], + "flyovers": [], + "Monte": ["M"], + "maddens": [], + "jokes": [], + "Algerians's": [], + "Gates's": [], + "bellyful'ses": [], + "basketry's": [], + "morale": ["M"], + "pushbikes": [], + "drove'sers": [], + "receivingable": [], + "counterpoise": ["M", "G", "D", "S"], + "drownings": [], + "stocktaking": ["M"], + "Fern's": [], + "writsers": [], + "extinguishabled": [], + "dwells": [], + "wirehair's": [], + "pep": ["S", "M"], + "whitetail'ses": [], + "wobblinged": [], + "detectsed": [], + "fluoresced": [], + "Wabash's": [], + "survival": ["S", "M"], + "footsies's": [], + "grimy": ["T", "R", "P"], + "EEC's": [], + "hotliness": [], + "developedment": [], + "hotfooteding": [], + "splotch's": [], + "blufflies": [], + "outcrop's": [], + "spaceport's": [], + "embroilment's": [], + "Tweedledee's": [], + "Orange's": [], + "propane": [], + "Theosophy's": [], + "mulligatawny's": [], + "kilted": [], + "cu": [], + "ignoramus's": [], + "burl": ["M", "D", "S"], + "spongierness": [], + "deprecatory": [], + "boyishly": [], + "debugging": [], + "loweder": [], + "sixpence": ["M", "S"], + "intensiveliness": [], + "butt": ["M", "D", "R", "Z", "G", "S"], + "chastise": ["D", "R", "S", "Z", "G", "L"], + "pervert's": [], + "Strauss's": [], + "globe": ["S", "M"], + "confiscation": ["M"], + "linefeed": [], + "downshift": ["S", "G", "D"], + "catalpas's": [], + "approaching": [], + "falsifier": ["M"], + "baronet's": [], + "supermarkets": [], + "vaccines": [], + "edging": ["M"], + "crosshatch": ["G", "D", "S"], + "plagiarized": [], + "outset": ["S", "M"], + "paparazzi": ["M"], + "silica": ["M"], + "blackbird's": [], + "liveds": [], + "enlargement": ["M", "S"], + "legations's": [], + "strongboxes": [], + "silhouettes's": [], + "gooses's": [], + "vestibule": ["M", "S"], + "materializes": [], + "currencies's": [], + "dully": [], + "harangued": [], + "sire'sing": [], + "umbel's": [], + "bobbed": [], + "tasering's": [], + "overcritical": [], + "neutrality's": [], + "perceive": ["B", "G", "D", "S"], + "cochineal's": [], + "hydrophone": ["S", "M"], + "obtusely": [], + "congressional": [], + "chivied": [], + "Sevres": ["M"], + "fetched": [], + "latency's": [], + "treacle's": [], + "roost": ["S", "M", "D", "R", "Z", "G"], + "dedicating": [], + "groundcloth": [], + "Errol": ["M"], + "quenchersing": [], + "change'sers": [], + "thanes": [], + "keens": [], + "riversen": [], + "Jonas's": [], + "opposing": [], + "emulators's": [], + "Dubai": ["M"], + "turbojets's": [], + "pantomimed": [], + "gape's": [], + "piggy": ["T", "R", "S", "M"], + "complication": ["M"], + "stigmatize": ["G", "D", "S"], + "tiling's": [], + "inapt": [], + "hangersing": [], + "lick's": [], + "trump": ["S", "G", "M", "D"], + "unshockable": [], + "cretinous": [], + "blowup's": [], + "whitey's": [], + "Poincare": ["M"], + "kiloton": ["S", "M"], + "gulper's": [], + "dropkick": ["M", "S"], + "chateaus": [], + "offbeat'ses": [], + "sixpences": [], + "senators": [], + "subsidizeder": [], + "acquisitiveness": ["M"], + "condominium's": [], + "interconnectinged": [], + "lavender": ["S", "M"], + "boohoo's": [], + "earnestness's": [], + "Olive": ["M", "R"], + "watermill'ses": [], + "cutesier": [], + "husk": ["M", "D", "R", "S", "Z", "G"], + "Fuji": ["M"], + "architraves": [], + "aboard": [], + "paleographers": [], + "quencheder": [], + "wooden": ["R", "Y", "T", "P"], + "anchor'sed": [], + "Gina": ["M"], + "interstate'ses": [], + "stipulationsed": [], + "wishes": [], + "internecine": [], + "legwork": ["M"], + "divining": [], + "brewpubs": [], + "opiningen": [], + "Erasmus's": [], + "demureness's": [], + "Charlottetown's": [], + "purgative": ["S", "M"], + "hypnotics": [], + "anapests": [], + "psychotherapists": [], + "interoffice": [], + "comportsing": [], + "shadowing's": [], + "regencies": [], + "rebirth's": [], + "seaports": [], + "windrow's": [], + "miler's": [], + "skater's": [], + "humanenessly": [], + "hustlersing": [], + "overdevelop": ["S", "D", "G"], + "unites": [], + "joysticks's": [], + "chessboards": [], + "sixteenth's": [], + "aux": [], + "Cathay": ["M"], + "countries's": [], + "precipitant's": [], + "entrancemented": [], + "worriersing": [], + "plash's": [], + "beatsers": [], + "encroach": ["G", "L", "D", "S"], + "Crucifixions": [], + "dollhouses's": [], + "taproot's": [], + "penetratingen": [], + "Dirac's": [], + "battlements": [], + "surgeries": [], + "Madagascan": ["S", "M"], + "enjoining": [], + "Gere": ["M"], + "succulence": ["M"], + "perusinged": [], + "snowblower": ["M", "S"], + "offenders": [], + "anoint": ["G", "D", "L", "S"], + "American's": [], + "neighbor": ["S", "M", "D", "Y", "G"], + "Nijinsky": ["M"], + "pickup": ["M", "S"], + "roughage": ["M"], + "envieds": [], + "reducing": [], + "indispensable's": [], + "tabbing": [], + "ultimatums": [], + "spake": [], + "horses": [], + "bullfighters": [], + "Minnesotans's": [], + "namedrop": [], + "wombat's": [], + "jangler's": [], + "Brewer's": [], + "snits": [], + "Gregg": ["M"], + "porthole": ["M", "S"], + "photostats": [], + "initiator": ["M", "S"], + "essayist's": [], + "coconuts's": [], + "foppishness's": [], + "barbered": [], + "hake's": [], + "phases": [], + "Utopian": ["S", "M"], + "tempt": ["S", "D", "R", "Z", "G"], + "attendees": [], + "closeness": ["M"], + "preparing": [], + "trespasser's": [], + "Leos": [], + "kin's": [], + "Pokemon": ["M"], + "Pisistratus's": [], + "logouts's": [], + "Cosby": ["M"], + "constantlies": [], + "sardine": ["M", "S"], + "diskette": ["M", "S"], + "argumentativenessly": [], + "CPU's": [], + "cloisonne": ["M"], + "blendeder": [], + "practice'sing": [], + "yobs": [], + "benedictory": [], + "mint'sed": [], + "layouts's": [], + "outlying": [], + "foxiness's": [], + "entrepreneurship": [], + "observed": ["U"], + "pencil'sed": [], + "morphing's": [], + "illuminatingen": [], + "individualizing": [], + "intimidation": ["M"], + "conduction's": [], + "offended": [], + "attire": ["D", "S", "M", "G"], + "fowl": ["M", "D", "G", "S"], + "cordon'sed": [], + "tricked": [], + "OPEC": ["M"], + "feeder's": [], + "listeden": [], + "overturnsing": [], + "experiential": [], + "dogfish": ["M", "S"], + "traction's": [], + "clumps": [], + "subletting": [], + "stepchild": ["M"], + "Janacek's": [], + "Gael's": [], + "Surya's": [], + "swank": ["T", "G", "S", "M", "D", "R"], + "frost's": [], + "succulents's": [], + "season": ["S", "G", "M", "D", "B", "J"], + "firings": [], + "fumigate": ["G", "N", "D", "S"], + "elector's": [], + "Bournemouth": ["M"], + "somersets": [], + "obesity's": [], + "stabilizes": [], + "conciliatory": [], + "makeover's": [], + "truthers's": [], + "Molina": ["M"], + "phoned": [], + "befriendsing": [], + "thorougherly": [], + "manager's": [], + "mugged": [], + "Bandung's": [], + "flakier": [], + "damsel's": [], + "amperes": [], + "mopeds": [], + "Rolodex's": [], + "exorbitantly": [], + "wingeder": [], + "outsourceds": [], + "re's": [], + "levels": [], + "Crabbe's": [], + "overstep": ["S"], + "shareware's": [], + "cyberbullies": [], + "titillatingen": [], + "bellybutton": ["S", "M"], + "knobs": [], + "overprints's": [], + "physique'ses": [], + "conceitedness's": [], + "radicalizes": [], + "catwalk": ["S", "M"], + "goodish": [], + "owls's": [], + "silting's": [], + "urea's": [], + "matinee": ["S", "M"], + "supplanteding": [], + "philosophies": [], + "discus'ses": [], + "foxfire": ["M"], + "revivalist": ["S", "M"], + "piteousness's": [], + "lookup": [], + "Turkic'ses": [], + "assertions": [], + "Benedict's": [], + "torched": [], + "shrillness": ["M"], + "hairlines": [], + "tarsus": ["M"], + "sluggishnessly": [], + "heedlessly": [], + "antecedent": ["S", "M"], + "chanteuses": [], + "any": [], + "kneeling": [], + "prophylactic": ["S", "M"], + "throat": ["S", "M"], + "madwoman": ["M"], + "ashtrays": [], + "minutemen": [], + "dimension": ["S", "M"], + "headwind": ["S", "M"], + "carbonate'sing": [], + "vehicular": [], + "fleeceder": [], + "whereat": [], + "continuities's": [], + "Tasha": ["M"], + "typographically": [], + "workouts's": [], + "quench": ["Z", "G", "D", "R", "S", "B"], + "Champlain": ["M"], + "corps": ["M", "S"], + "Lynne": ["M"], + "entourage": ["S", "M"], + "libations": [], + "miriest": [], + "moonlighted": [], + "deriding": [], + "Bragg": ["M"], + "triennials": [], + "FDIC's": [], + "tautologous": [], + "metatarsals": [], + "warrior's": [], + "fission": ["B", "M"], + "scarifiesing": [], + "Hummer": ["M"], + "washbowl": ["S", "M"], + "author": ["S", "M", "D", "G"], + "London": ["M", "R", "Z"], + "patrolwoman": ["M"], + "advancement's": [], + "cymbal's": [], + "quencher": ["M"], + "xcix": [], + "Gandhian's": [], + "napper'ses": [], + "resolute": ["P", "Y"], + "devour": ["S", "D", "G"], + "puck's": [], + "AA": ["M"], + "pawsing": [], + "jestingly": [], + "philology's": [], + "saline": ["S", "M"], + "lobber": ["M", "S"], + "instrumentalist's": [], + "snowmobile": ["D", "S", "M", "G"], + "build": ["S", "M", "R", "Z", "G", "J"], + "valuing": [], + "fusion": ["I", "F", "K", "S", "M"], + "jammed": [], + "desolatesly": [], + "capo's": [], + "bacteriological": [], + "phenobarbital's": [], + "salute": ["D", "S", "M", "G"], + "Homeric": ["M"], + "meter's": [], + "nocturne's": [], + "flounceds": [], + "impetuousness": ["M"], + "litherness": [], + "faceding": [], + "requiting": [], + "nuncios": [], + "pinyin": ["M"], + "verities's": [], + "asphyxiates": [], + "Chandrasekhar": ["M"], + "elixirs": [], + "outlaying's": [], + "showrooms": [], + "cuppa": ["S"], + "infinitives": [], + "sheerers": [], + "Bentley's": [], + "jackstraw": ["M", "S"], + "cumbering": [], + "trimlies": [], + "triceratops": ["M"], + "tunnelersing": [], + "familiarizinged": [], + "Beerbohm": ["M"], + "queen": ["G", "M", "D", "Y", "S"], + "Subaru's": [], + "steel's": [], + "dethroneds": [], + "goldfinches": [], + "biggest": [], + "penchant's": [], + "printmaking": [], + "battles's": [], + "pedant'ses": [], + "townswomen": [], + "remained": [], + "conductivity's": [], + "recontaminate": [], + "roosters": [], + "construction": ["C", "A", "M", "S"], + "Damascus's": [], + "exoticism's": [], + "scarp's": [], + "mdse": [], + "Xerox'ses": [], + "aviatrix's": [], + "neanderthal'ses": [], + "acme's": [], + "hieroglyphics": [], + "circumstantially": [], + "sender's": [], + "Mandelbrot's": [], + "owns": [], + "biospheres": [], + "inactivation": [], + "cash'sed": [], + "extincts": [], + "bootblacks's": [], + "Ionesco": ["M"], + "futons's": [], + "roux": [], + "parsley's": [], + "lanterns": [], + "planterers": [], + "choruses": [], + "thump's": [], + "barns": [], + "repeater's": [], + "druidism": ["M"], + "adopteds": [], + "shysters": [], + "Olivier": ["M"], + "tougherly": [], + "coiling": [], + "splashy": ["R", "T", "P"], + "gravelly": [], + "fabricationens": [], + "uninauthentic": [], + "alphabet": ["S", "M"], + "prude's": [], + "committeewoman": ["M"], + "Staten's": [], + "vino": ["M"], + "true": ["M", "T", "G", "D", "R", "S"], + "preview": ["M", "D", "R", "S", "Z", "G"], + "gruel's": [], + "southerlies": [], + "clinicians's": [], + "ghostlier": [], + "Herrick": ["M"], + "lamb'sed": [], + "scald": ["M", "D", "S", "G"], + "keystroke's": [], + "Seville": ["M"], + "blurted": [], + "housecleaning's": [], + "Sphinx's": [], + "supportive": [], + "cote": ["M", "S"], + "greediest": [], + "chirrup'sed": [], + "musicals": [], + "crape's": [], + "bluebird": ["M", "S"], + "Pentecosts": [], + "successively": [], + "nuncio": ["S", "M"], + "secludes": [], + "financial": ["Y"], + "winds": [], + "freebooters": [], + "sachet": ["S", "M"], + "pneumatically": [], + "layered": [], + "insinuation's": [], + "floras's": [], + "Vedas's": [], + "Marge": ["M"], + "Spielberg's": [], + "Du": [], + "cowherd": ["M", "S"], + "derricks": [], + "vibrations": [], + "monocotyledon": ["S", "M"], + "driving": [], + "reconcile": ["G", "D", "S", "B"], + "porcupine's": [], + "cedillas": [], + "ghastliness": ["M"], + "indivisibly": [], + "recommitting": [], + "executeds": [], + "barroom's": [], + "vintage's": [], + "fortuneteller's": [], + "exfoliating": [], + "grumble's": [], + "beguiles": [], + "bewailings": [], + "obelisks": [], + "bugled": [], + "coshed": [], + "apiarist": ["S", "M"], + "earwigs": [], + "Seminole": ["M", "S"], + "carousels's": [], + "Dacron": ["S", "M"], + "blast's": [], + "trampings": [], + "dilemma": ["M", "S"], + "blindfold's": [], + "apotheosis": ["M"], + "charterer'ses": [], + "neuralgia's": [], + "stolider": [], + "morally": [], + "Furtwangler": ["M"], + "concerteding": [], + "schemers": [], + "mittens": [], + "vanishesing": [], + "burritos": [], + "mouth's": [], + "ranee'ses": [], + "bleedinger": [], + "epitome": ["S", "M"], + "effervesceds": [], + "subroutines's": [], + "contact": ["A", "S", "D", "G"], + "sauciest": [], + "dovecote": ["S", "M"], + "squeaksers": [], + "bestseller'ses": [], + "newsrooms": [], + "metamorphism": ["M"], + "bourgeoisie's": [], + "semifinals": [], + "planeloads": [], + "tidingsed": [], + "fatalistically": [], + "additive": ["S", "M"], + "basketwork": ["M"], + "handbills": [], + "Romans": ["M"], + "headsets": [], + "glossiest": [], + "poms": [], + "hemispheres": [], + "denigrating": [], + "fructify": ["D", "S", "G"], + "Bryant's": [], + "Peron's": [], + "climbable": [], + "isthmian": [], + "indulgently": [], + "cesareans": [], + "fasted": [], + "bristles's": [], + "pluming": [], + "chunks": [], + "Tuscaroras": [], + "rapacious": ["P", "Y"], + "broadsided": [], + "and": [], + "green": ["G", "P", "S", "M", "D", "R", "Y", "T"], + "Pakistan's": [], + "unpretentious": [], + "metering's": [], + "hewer": ["M"], + "wrench's": [], + "porgy": ["S", "M"], + "pinkie": ["S", "M"], + "supersizinged": [], + "notified": [], + "devotion": ["M", "S"], + "plunder": ["S", "Z", "G", "M", "D", "R"], + "Congregationalist's": [], + "partway": [], + "Cunningham": ["M"], + "adumbration": ["M"], + "paleolithic": [], + "peculationed": [], + "bawl'sed": [], + "lime's": [], + "equitable": ["I"], + "encyst": ["L", "S", "G", "D"], + "splodges": [], + "when's": [], + "Trafalgar's": [], + "neurasthenic": ["M", "S"], + "investigation's": [], + "stabilizer'ses": [], + "hyphened": [], + "givens": [], + "salients": [], + "tins": [], + "lasso": ["S", "M", "D", "G"], + "variability's": [], + "ceramicist's": [], + "young": ["T", "M", "R"], + "atoll's": [], + "cozenage's": [], + "specie": ["S", "M"], + "defyinged": [], + "Sony's": [], + "kidnappers": [], + "elector'ses": [], + "grassy": ["T", "R"], + "topographer": ["S", "M"], + "treasures": [], + "bloodying": [], + "regaled": [], + "querulous": ["Y", "P"], + "colonizers": [], + "dignitaries": [], + "onionskin": ["M"], + "glowering's": [], + "parental": [], + "convinces": [], + "bearable": ["U"], + "stalkerings": [], + "rowel'sed": [], + "aigrette's": [], + "sims": [], + "Aquariuses": [], + "forgave": [], + "chainsawed": [], + "preeminently": [], + "obligatesens": [], + "threshing": [], + "scampered": [], + "frailties": [], + "cornflowers": [], + "latices": [], + "overcautious": [], + "Vassar": ["M"], + "overhasty": [], + "tonality": ["S", "M"], + "coachmen": [], + "superber": [], + "mosh": ["D", "S", "G"], + "rears": [], + "invincibility's": [], + "Berlins": [], + "nearby": [], + "slices": [], + "attracted": [], + "callowerness": [], + "monocles": [], + "peroxideds": [], + "devilry": ["S", "M"], + "commies's": [], + "mortician'ses": [], + "fleabag": ["S", "M"], + "awaiteds": [], + "battler": ["M"], + "vouchsafing": [], + "quadrilles": [], + "garnishment's": [], + "Gareth": ["M"], + "homeworkersing": [], + "abutted": [], + "anyway": ["S"], + "surfaced": [], + "champagnes": [], + "Tosca": ["M"], + "slatings": [], + "brooklet's": [], + "visa'sed": [], + "brown'sed": [], + "iPad": ["M"], + "viziers's": [], + "agrarian's": [], + "misgovernment's": [], + "canonize": ["D", "S", "G"], + "Pleiades": ["M"], + "leagued": [], + "felicitous": ["Y"], + "titles": [], + "lackeys": [], + "nearside": [], + "kennel's": [], + "caesuras": [], + "starlit": [], + "mall'ses": [], + "inalienability": ["M"], + "inhabiting": [], + "philippic": ["M", "S"], + "justification's": [], + "sourdoughs": [], + "counterclaims": [], + "candler": ["M"], + "moonscapes's": [], + "cuspidors's": [], + "irate": ["Y", "P"], + "fearings": [], + "awkward": ["R", "Y", "P", "T"], + "Rubbermaid's": [], + "accidentals's": [], + "alder'ses": [], + "professionalize": ["D", "S", "G"], + "expectorant": ["S", "M"], + "ligature": ["M", "G", "D", "S"], + "symbolizing": [], + "Lu's": [], + "Beatty's": [], + "Sulawesi": ["M"], + "azalea's": [], + "harpies": [], + "keno": ["M"], + "impetus": ["M", "S"], + "wormiest": [], + "Kelli's": [], + "beatifically": [], + "poppers's": [], + "detained": [], + "ballsed": [], + "creeks": [], + "colloquium'ses": [], + "deader": [], + "yawls": [], + "vetch": ["M", "S"], + "card": ["E", "S", "G", "M", "D"], + "novae": [], + "excusable": ["I"], + "patronizinged": [], + "editorially": [], + "xxvii": [], + "congruity's": [], + "referencinged": [], + "mournersing": [], + "newsy": ["T", "R"], + "shapelessness's": [], + "captain": ["S", "M", "D", "G"], + "stripe's": [], + "correspondents's": [], + "patient'ses": [], + "sunbonnet": ["S", "M"], + "respellsing": [], + "squints": [], + "countryside's": [], + "roistereder": [], + "plantain": ["S", "M"], + "yips's": [], + "thwacker's": [], + "Percheron": ["M"], + "cussing": [], + "fluoresceds": [], + "seating": ["M"], + "Ravel's": [], + "corsair'ses": [], + "purine's": [], + "advisories": [], + "dicier": [], + "afar": [], + "SOP": ["M"], + "protoplasmic": [], + "olfactory's": [], + "photoengravingsers": [], + "applying": [], + "incur": ["S", "B"], + "Acropolis": [], + "glued": ["U"], + "dispensation's": [], + "limeade": ["S", "M"], + "speculated": [], + "cairn'ses": [], + "qualifier": ["S", "M"], + "thrusts's": [], + "falsehood's": [], + "dragon's": [], + "Pasteur": ["M"], + "romanticizing": [], + "provided": ["U"], + "schematizinged": [], + "zip's": [], + "trimesters": [], + "crazed": [], + "twit": ["M", "S"], + "assize's": [], + "Rabelais's": [], + "tenor's": [], + "oasis": ["M"], + "steads": [], + "shank'ses": [], + "locals": [], + "dollies's": [], + "pencilingses": [], + "extortionist'ses": [], + "duckier": [], + "Peabody's": [], + "refreshment's": [], + "wineries": [], + "dapperest": [], + "Mahican's": [], + "granulation's": [], + "garlands": [], + "vendor's": [], + "territoriality": [], + "wharf": ["M"], + "escapade": ["M", "S"], + "landau": ["S", "M"], + "replicated": [], + "Epiphanies": [], + "Bergson's": [], + "trigonometric": [], + "yankeds": [], + "Tenn's": [], + "Catt's": [], + "viscus's": [], + "cloudburst's": [], + "halo's": [], + "cedars": [], + "minuends": [], + "marge": [], + "exhibiting": [], + "barnacles": [], + "Kwanzaa'ses": [], + "computers": [], + "confiscateds": [], + "Mani's": [], + "earwax's": [], + "Thrace's": [], + "mopers": [], + "bait's": [], + "embroileding": [], + "lambeds": [], + "TD": [], + "mavens": [], + "auto'ses": [], + "amphitheaters": [], + "naturalizesing": [], + "agitations": [], + "tragedy's": [], + "retribution": ["M", "S"], + "sternums": [], + "flight": ["M", "S"], + "disorganization": ["M"], + "Sumatra": ["M"], + "manure's": [], + "commissions": [], + "datelined": [], + "Lorre's": [], + "rutty": ["R", "T"], + "Moe": ["M"], + "Ticonderoga": ["M"], + "roadworks": [], + "conga's": [], + "rejoinders's": [], + "Chayefsky's": [], + "emptiness's": [], + "heptathlon's": [], + "Aquino's": [], + "dynamical": ["Y"], + "cocksucker's": [], + "interpolated": [], + "couching": [], + "ouzo": ["M", "S"], + "motionlessliness": [], + "Juarez's": [], + "pulses": [], + "intravenous'ses": [], + "moires's": [], + "rebate": ["M"], + "statingen": [], + "cookouts's": [], + "actuate": ["G", "N", "D", "S"], + "Mars'ses": [], + "polygon": ["S", "M"], + "oblong'ses": [], + "giblets's": [], + "exciters": [], + "forthwith": [], + "boat": ["S", "Z", "G", "M", "D", "R"], + "miserableness's": [], + "aqueduct's": [], + "dishesing": [], + "whacked": [], + "solemnify": ["D", "S", "G"], + "pimento's": [], + "muddles": [], + "tailgater's": [], + "redistrict": ["G", "D"], + "carrier's": [], + "dally": ["Z", "G", "D", "R", "S"], + "anchorperson's": [], + "taxation": ["M"], + "addendum": ["M"], + "paddles": [], + "folks": [], + "aces's": [], + "Wehrmacht's": [], + "profile": [], + "mannish": ["Y", "P"], + "briskness": ["M"], + "Weeks's": [], + "piqued": [], + "magnesia": ["M"], + "Aleutians's": [], + "appetizingly": [], + "muggle": ["M", "S"], + "kindlier": [], + "Warsaw's": [], + "hackneys": [], + "expansively": [], + "sty": ["S", "M"], + "waltzing's": [], + "foreseer's": [], + "tapestry": ["S", "M"], + "striven": [], + "compendious": [], + "docudramas": [], + "roundest": [], + "surcharged": [], + "concealable": [], + "deleted": [], + "wholewheat": [], + "hirelings": [], + "princesses": [], + "majestically": [], + "enacting": [], + "Grace": ["M"], + "telegraph": ["M", "D", "R", "Z", "G"], + "trundler's": [], + "scoopful'ses": [], + "clearway": ["S"], + "redevelop": [], + "woodcut": ["S", "M"], + "ape'sing": [], + "redundancy": ["S", "M"], + "ledger's": [], + "contractions": [], + "secretariat'ses": [], + "Brunswick's": [], + "Phoenicians's": [], + "fuehrers": [], + "Marriott's": [], + "overspent": [], + "minimizes": [], + "Carlyle's": [], + "splutters": [], + "retaken": [], + "impudently": [], + "odds's": [], + "corrupt": ["D", "R", "Y", "P", "S", "T", "G"], + "bettor's": [], + "tenderizers": [], + "setscrews": [], + "Hellenes's": [], + "fatherhood": ["M"], + "mutest": [], + "falsetto": ["S", "M"], + "Augusta's": [], + "wearerable": [], + "reversible": [], + "pees": [], + "ascertaineds": [], + "twiddle'sing": [], + "blur's": [], + "virtue's": [], + "twit's": [], + "overbearings": [], + "departed's": [], + "incarcerations": [], + "fire's": [], + "beast": ["M", "S"], + "gullible": [], + "transcendence": ["M"], + "lightweight's": [], + "broodeder": [], + "Cristina": ["M"], + "Rogelio": ["M"], + "OHSA's": [], + "Scotchmen": ["M"], + "capitalist's": [], + "fathomable": ["U"], + "overshadowing": [], + "gabfest": ["M", "S"], + "implementable's": [], + "wolfish": [], + "backfields's": [], + "pastern's": [], + "pinioned": [], + "crackups's": [], + "braes": [], + "casks": [], + "prefabrication": ["M"], + "impeachablement": [], + "gregariousness's": [], + "grog": ["M"], + "hate": ["M", "S"], + "Buddhas": [], + "Frunze": ["M"], + "signals": [], + "Anastasia's": [], + "consolidatesing": [], + "Kiev's": [], + "mere": ["M", "Y", "T", "S"], + "Caesar's": [], + "dissident'ses": [], + "Paderewski": ["M"], + "befuddleds": [], + "mesmerism": ["M"], + "dent": ["I", "S", "G", "M", "D"], + "breech": ["M", "S"], + "teared": [], + "picots": [], + "callsing": [], + "stardust's": [], + "Ghana's": [], + "Maura": ["M"], + "pretensions": [], + "bummers": [], + "doughtiest": [], + "birthrate": ["M", "S"], + "tektite": ["S", "M"], + "chardonnays": [], + "moorings": [], + "perspired": [], + "grungier": [], + "uplands": [], + "pads's": [], + "leisurewear's": [], + "profundity": ["S", "M"], + "expiate": ["G", "N", "D", "S"], + "sleazebags": [], + "entrepreneur": ["S", "M"], + "sunk": ["N"], + "antiphonal's": [], + "Rolaids": ["M"], + "whingeder": [], + "splays": [], + "housewife'sly": [], + "turnkey'ses": [], + "Darvon's": [], + "playpen's": [], + "federalist": ["M", "S"], + "doohickeys's": [], + "niceties": [], + "entrance's": [], + "sisterliness's": [], + "saluted": [], + "ball": ["S", "G", "M", "D"], + "probationer's": [], + "accordionist's": [], + "isomerism's": [], + "issued": [], + "gentlinged": [], + "straineds": [], + "Hull's": [], + "diversion's": [], + "woofers": [], + "Teller's": [], + "clinks": [], + "waxwork": ["S", "M"], + "butch'ser": [], + "veer's": [], + "antipastos": [], + "blintze": ["M"], + "putters": [], + "forefront's": [], + "cowlick's": [], + "Tm": ["M"], + "swards": [], + "billionth": ["M"], + "perceivabling": [], + "inreform": [], + "bandwidths": [], + "signified": [], + "scrooge's": [], + "essaying": [], + "direly": [], + "cutups": [], + "wantoning": [], + "shindig's": [], + "Dawkins": [], + "plane": ["C", "G", "D", "S"], + "deceives": [], + "sorties": [], + "emergesing": [], + "trashierness": [], + "amnestyinged": [], + "flameproofings": [], + "Heliopolis": ["M"], + "soddenly": [], + "downy": ["R", "T"], + "annihilatesing": [], + "anew": [], + "lubricatesing": [], + "nonplussing": [], + "complement's": [], + "Kroc": ["M"], + "Elisa's": [], + "Wilkinson": ["M"], + "empathizesing": [], + "Gill": ["M"], + "haymaking": [], + "encampment'ses": [], + "truism'ses": [], + "mafia": ["S", "M"], + "amazed": [], + "scribble": ["M", "Z", "G", "D", "R", "S"], + "admirer": ["M"], + "missives": [], + "Roseau's": [], + "walinged": [], + "leaning's": [], + "talkativenessly": [], + "keyword": ["M", "S"], + "oenophile": ["S", "M"], + "Dixielands's": [], + "emoticon": ["S", "M"], + "yesteryear": ["M"], + "styles": [], + "sachets": [], + "bodied": [], + "braille": ["M"], + "rappels's": [], + "hundredfold": [], + "crumpet's": [], + "kilobyte's": [], + "portend": ["S", "G", "D"], + "assail": ["G", "B", "D", "S"], + "throwaway's": [], + "sung": ["U"], + "testament": ["M", "S"], + "synchronous": ["Y"], + "Praetorian's": [], + "belongings": [], + "sliminess's": [], + "groovinged": [], + "dick'ser": [], + "banqueter's": [], + "nimblest": [], + "spearing": [], + "tininess's": [], + "sweaters": [], + "ABM": ["S", "M"], + "Baldwin's": [], + "supsers": [], + "spendables": [], + "backstage's": [], + "telemetry": ["S", "M"], + "tanager": ["M", "S"], + "bunk's": [], + "interrogations": [], + "tiramisu's": [], + "calorie'ses": [], + "gabbles": [], + "collie'sers": [], + "alehouse's": [], + "despiseds": [], + "divestiture'ses": [], + "readiness's": [], + "kidneys's": [], + "adversity": ["S", "M"], + "cave'sers": [], + "segueds": [], + "snit's": [], + "cancellations's": [], + "whimper": ["M", "D", "G", "S"], + "lookalikes": [], + "circumcises": [], + "polyphony": ["M"], + "usability": ["M"], + "deaths": [], + "bodies's": [], + "voluntary's": [], + "meticulous": ["Y", "P"], + "tales": [], + "probate'sen": [], + "stratify": ["D", "S", "G", "N"], + "cogwheels's": [], + "windjammers's": [], + "flyways's": [], + "Zen": ["M"], + "malevolence": ["M"], + "invent": ["A", "S", "G", "V", "D"], + "speciously": [], + "Bangkok": ["M"], + "infections": [], + "tartan": ["M", "S"], + "Thomistic's": [], + "e": ["F", "D", "S", "T"], + "gypsies's": [], + "presentments's": [], + "beaver": ["S", "G", "M", "D"], + "bastard": ["M", "S"], + "At": ["S", "M"], + "Copperfield": ["M"], + "papyrus's": [], + "restore": [], + "slipcases": [], + "pastime's": [], + "Omayyad": ["M"], + "interlaceds": [], + "hatting": [], + "circulatory": [], + "vacationist": ["S", "M"], + "Pyongyang's": [], + "could": [], + "defile": [], + "mien's": [], + "outlive": ["G", "D", "S"], + "caballero'ses": [], + "Squibb": ["M"], + "snottiness's": [], + "probationers": [], + "nicotine's": [], + "snookersing": [], + "scandalizeds": [], + "darling'ses": [], + "munchies's": [], + "underwriting": [], + "falseness's": [], + "drape's": [], + "screwinesser": [], + "fortifying": [], + "Indies's": [], + "Phaethon": ["M"], + "billionaires's": [], + "whopper's": [], + "thyself": [], + "encyclical's": [], + "announcer": ["M"], + "cohort's": [], + "Frisbee's": [], + "galvanism's": [], + "Chelsea's": [], + "sections's": [], + "krona's": [], + "childhoods": [], + "Walt's": [], + "considerings": [], + "stippleds": [], + "phials's": [], + "Griffin's": [], + "cook's": [], + "radiophone": ["S", "M"], + "JCS": [], + "Drudge": ["M"], + "epileptics": [], + "pantomime'sing": [], + "Parisian": ["M", "S"], + "chronologist": ["M", "S"], + "evened": [], + "Doctorow": ["M"], + "birth'sed": [], + "northeasterers": [], + "implementeder": [], + "yoke": ["U", "G", "D", "S"], + "indignantly": [], + "conquereding": [], + "thunderclouds": [], + "debauchee'ses": [], + "assessmenting": [], + "Rosalinda": ["M"], + "lacks": [], + "invective's": [], + "mountaineer's": [], + "sentinels": [], + "racketeers's": [], + "ambidexterity": ["M"], + "garbs": [], + "toothpicks's": [], + "federalist's": [], + "Oregon's": [], + "apprehendeds": [], + "didactic": [], + "Toscanini": ["M"], + "tabulators's": [], + "queuing": [], + "betrothal's": [], + "swastika's": [], + "masterclasses": [], + "guesstimates": [], + "breathalyzing": [], + "situated": [], + "nonallergic": [], + "metalwork'ser": [], + "blowguns": [], + "overpriced": [], + "Dedekind": ["M"], + "compulsories": [], + "thumbprints": [], + "flouteder": [], + "feastersing": [], + "entanglement's": [], + "sabbaticals": [], + "protocol's": [], + "hegira's": [], + "milkier": [], + "sheepdog": ["M", "S"], + "unearned": [], + "monoplane": ["S", "M"], + "stertorous": [], + "scrapers": [], + "screeches": [], + "husband'sed": [], + "reorientation": [], + "electrolysis's": [], + "alternately": [], + "plan'ser": [], + "vanity": ["S", "M"], + "bankroll": ["S", "G", "M", "D"], + "almanacs": [], + "prefabricatesing": [], + "bludgeoneding": [], + "slake": ["G", "D", "S"], + "invokes": [], + "paleography's": [], + "supply's": [], + "liturgists": [], + "shirkersing": [], + "energize": ["Z", "G", "D", "R", "S"], + "signalizes": [], + "vocals's": [], + "gloom's": [], + "scud": ["M", "S"], + "achene'ses": [], + "xxiv": [], + "lordlies": [], + "peelersing": [], + "emetics's": [], + "royalists": [], + "Rodgers": ["M"], + "evolution's": [], + "visitation's": [], + "legitimizes": [], + "pragmatist'ses": [], + "entryphones": [], + "peepers": [], + "discomposure": [], + "cheaply": [], + "corduroy'ses": [], + "anatomizesing": [], + "stumbling": [], + "dirndls": [], + "filler'ses": [], + "Antwan": ["M"], + "dreamlike": [], + "schoolmistress'ses": [], + "hoopsing": [], + "unseeing": ["Y"], + "logons": [], + "shittiest": [], + "Puck": ["M"], + "woodsheds": [], + "injections's": [], + "preternatural": ["Y"], + "hayed": [], + "disinquietude": [], + "gawking": [], + "mayors": [], + "atavist's": [], + "pensioners": [], + "cation's": [], + "baseline'ses": [], + "errata": ["S", "M"], + "sublimated": [], + "bunchy": ["R", "T"], + "glisteneds": [], + "Hester": ["M"], + "annual'sly": [], + "asphyxiations": [], + "captive": ["S", "M"], + "Mithra": ["M"], + "leaning": ["M"], + "splendor'ses": [], + "appliqueds": [], + "microfibers": [], + "tuple": ["S"], + "inland": ["M"], + "strips's": [], + "not": ["B"], + "Kaaba": ["M"], + "arbutus": ["M", "S"], + "papoose": ["M", "S"], + "especial": ["Y"], + "drubbed": [], + "cacklers": [], + "zounds": [], + "basaltic": [], + "aspartame": ["M"], + "snowflake's": [], + "disgorge": [], + "crash": ["M", "D", "S", "G"], + "mythologist's": [], + "antiseptically": [], + "rarity's": [], + "poufs": [], + "Laverne": ["M"], + "stirringsly": [], + "Maigret": ["M"], + "singulars": [], + "savagest": [], + "egoist's": [], + "bullish": ["Y", "P"], + "celebrators": [], + "weaver": ["M"], + "inline": [], + "horsefly": ["S", "M"], + "poltergeists": [], + "humanitarianism": ["M"], + "jackets": [], + "concretion": ["M"], + "vain": ["R", "Y", "T"], + "oriel's": [], + "avocados's": [], + "fooleries's": [], + "wanders": [], + "restatinged": [], + "skulked": [], + "enacteding": [], + "Tweedledee": ["M"], + "aesthetically": [], + "grouped": [], + "spaceship's": [], + "judicatory's": [], + "shirker's": [], + "godparents's": [], + "methodicalness": ["M"], + "alienation's": [], + "certifiable": [], + "node'ses": [], + "Margot": [], + "margin's": [], + "flashbacks": [], + "objurgates": [], + "diverteding": [], + "interfered": [], + "disreport": [], + "marriageability's": [], + "improved": ["U"], + "reindeer's": [], + "zine": ["S"], + "aphrodisiac's": [], + "ending": ["M"], + "nostalgia": ["M"], + "inflammability": [], + "sheetlike": [], + "repeaterers": [], + "ford's": [], + "muddy": ["P", "T", "G", "D", "R", "S"], + "Skye's": [], + "oblique'sly": [], + "blackberryings": [], + "sanctum's": [], + "lodestone'ses": [], + "agreeds": [], + "clairvoyant's": [], + "topiary's": [], + "gurgle's": [], + "gadabouts's": [], + "singsong'sed": [], + "sermonizing": [], + "foretaste's": [], + "regaledly": [], + "Sardinia's": [], + "Francois's": [], + "driveling's": [], + "workhouses's": [], + "quadratic'ses": [], + "tors": [], + "scribbler": ["M"], + "literately": [], + "lovey": ["S"], + "loitered": [], + "onyx's": [], + "enmeshing": [], + "Scriabin": ["M"], + "cork's": [], + "continueds": [], + "woodworkersing": [], + "defeater": ["M"], + "Jacob's": [], + "ogler": ["M"], + "piggery": ["S"], + "balmier": [], + "annuls": [], + "audience's": [], + "cobra": ["S", "M"], + "yawner": ["M"], + "colorized": [], + "astronautics's": [], + "lushness": ["M"], + "largesness": [], + "right'sed": [], + "arousal's": [], + "conservatoire": ["S"], + "confirmeding": [], + "dopersing": [], + "d'Estaing": ["M"], + "freshmen": [], + "Vindemiatrix's": [], + "Bonhoeffer": ["M"], + "student": ["S", "M"], + "stridden": [], + "heathen": ["M"], + "fragrance": ["M", "S"], + "GPS": [], + "Hinton": ["M"], + "vagrant's": [], + "Mia": ["M"], + "orientals": [], + "congruence's": [], + "Kim's": [], + "servant": ["M", "S"], + "acceptability": ["M"], + "general": ["S", "M", "Y"], + "housebreaker's": [], + "investigative": [], + "descended": [], + "subpoena'sed": [], + "society": ["S", "M"], + "discoverer'ses": [], + "wildcatter'ses": [], + "kangaroos": [], + "tootle": ["G", "D", "S"], + "Gewurztraminer": ["M"], + "hailstones": [], + "incitement'ses": [], + "beachcomber's": [], + "crutch'ses": [], + "Janis's": [], + "dislocate": [], + "Joshua's": [], + "tickleder": [], + "flare": ["D", "S", "M", "G"], + "enunciates": [], + "scattering": ["M"], + "hemophiliac's": [], + "Grenada's": [], + "spreadingable": [], + "archenemies's": [], + "barnacle's": [], + "roileds": [], + "seabird": ["M", "S"], + "leaflets": [], + "decideder": [], + "Mao": ["M"], + "upbeat": ["M", "S"], + "authentic": ["I", "U"], + "strongholds": [], + "foresightedness's": [], + "kayo'sed": [], + "grizzle": ["D", "S", "G"], + "Rhea": ["M"], + "lastly": [], + "roughneck's": [], + "surmised": [], + "praetor's": [], + "obligatory": [], + "magnifier": ["M"], + "inquisitively": [], + "egress'ses": [], + "busybody's": [], + "fracas": ["M", "S"], + "compliesens": [], + "Horn's": [], + "strangers": [], + "remake": [], + "sackers": [], + "bodily": [], + "junket'sed": [], + "Leda": ["M"], + "testators": [], + "handshakes": [], + "bonded": [], + "linnet's": [], + "punched": [], + "warehouse'sing": [], + "chalkier": [], + "cape's": [], + "cartel": ["M", "S"], + "curbside": [], + "melteds": [], + "banditry": ["M"], + "wains": [], + "challenger": ["M"], + "Ludwig": ["M"], + "provokers": [], + "robocallsing": [], + "fringe": ["I", "D", "S", "G"], + "expiation's": [], + "binnacle": ["S", "M"], + "Congo's": [], + "lurching": [], + "gusted": [], + "nonelectric": [], + "pikinged": [], + "plentiful": ["Y"], + "masterpiece'ses": [], + "cubbyholes": [], + "outworksers": [], + "friskily": [], + "loudhailer's": [], + "Sumatrans": [], + "Jane": ["M"], + "Brobdingnag's": [], + "mediated": ["U"], + "comradely": [], + "ingeniousness": ["M"], + "caters": [], + "vivas": [], + "offsite": [], + "petitioning's": [], + "Australia's": [], + "antioxidant's": [], + "pipework": [], + "cooperateds": [], + "ancestry": ["S", "M"], + "bloodsucking": [], + "gray's": [], + "catamarans's": [], + "Packard's": [], + "skeeters's": [], + "telegrams": [], + "memorize": ["D", "S", "G"], + "fretfulness": ["M"], + "Magdalene's": [], + "hoke": ["G", "D", "S"], + "Hoosier": ["M", "S"], + "cheesecake": ["S", "M"], + "Everglades": ["M"], + "tine's": [], + "saddens": [], + "sifts": [], + "misjudgesing": [], + "assesses": [], + "Baird": ["M"], + "evacuation's": [], + "forgoer": ["M"], + "seacoasts": [], + "raunchiness": ["M"], + "tessellationsing": [], + "confer": ["S"], + "hoodoos": [], + "pwned": [], + "auricles's": [], + "reek's": [], + "center'sed": [], + "cementersing": [], + "MST's": [], + "ingredient": ["M", "S"], + "automationed": [], + "honeying": [], + "Bourbon's": [], + "schemata": [], + "Carib'ses": [], + "employ": ["A", "D", "G", "L", "S"], + "Cormack's": [], + "finger": ["M", "D", "G", "S", "J"], + "shipwrecking's": [], + "Kim": ["M"], + "flaxen": [], + "resown": [], + "Y's": [], + "lung'sed": [], + "Etta's": [], + "acidifying": [], + "mushiness": ["M"], + "divinities": [], + "registers": [], + "wack'ser": [], + "accomplishing": [], + "anesthetics's": [], + "Gromyko's": [], + "curseds": [], + "Whitsunday's": [], + "hydrometry's": [], + "tabling": [], + "hyssop's": [], + "hobnobbed": [], + "maturinged": [], + "hagiographer's": [], + "canto's": [], + "hymnal's": [], + "ascribingable": [], + "Taichung's": [], + "matrix's": [], + "Britannia": ["M"], + "Hellenic": ["M"], + "whipped": [], + "chronic": [], + "wingspread": ["S", "M"], + "loveys": [], + "penile": [], + "cocoon'sed": [], + "groupeder": [], + "houseplant's": [], + "biochemicals": [], + "urbanity": ["M"], + "headsman": ["M"], + "bum's": [], + "Miami": ["M", "S"], + "salver's": [], + "quadriplegics": [], + "camisoles": [], + "misbehavinged": [], + "Marlene's": [], + "offertory": ["S", "M"], + "compunctions": [], + "blowlamps": [], + "Sherri": ["M"], + "spankeding": [], + "etching's": [], + "shamanic": [], + "gramophone's": [], + "Dulles": ["M"], + "cosmetologist's": [], + "upreared": [], + "baker": ["M"], + "silenterly": [], + "pergola": ["S", "M"], + "list's": [], + "spewed": [], + "forsakings": [], + "surprises's": [], + "disciplinarian's": [], + "Mondays": [], + "hickey's": [], + "touching's": [], + "aggregatingen": [], + "imaginatively": [], + "lexer": ["S"], + "enormity": ["S", "M"], + "leper": ["S", "M"], + "crofters": [], + "entangle": ["E", "D", "S", "L", "G"], + "grotty": ["T", "R"], + "acclimatingen": [], + "renegaded": [], + "kidney's": [], + "Eng's": [], + "turnarounds": [], + "chiefly": [], + "centrist's": [], + "condescend": [], + "alloyed": ["U"], + "monkeyeding": [], + "turtledove": ["S", "M"], + "Faulkner's": [], + "multitudinous": [], + "widescreen'ses": [], + "miniskirt": ["M", "S"], + "glace": ["S"], + "foreword'ses": [], + "parroteds": [], + "boutonniere": ["M", "S"], + "preserving": [], + "ghostliest": [], + "oglers": [], + "upholstered": [], + "Helen's": [], + "bowings": [], + "alternator's": [], + "spirituality's": [], + "asexually": [], + "resolver": [], + "parallelism's": [], + "loosed": [], + "leecheds": [], + "jukebox's": [], + "commercial's": [], + "actress's": [], + "scoped": [], + "Jacquard's": [], + "anatomical": ["Y"], + "gibber": ["G", "D", "S"], + "polarity": ["S", "M"], + "gulpeder": [], + "smocks's": [], + "blighting": [], + "Lutheranisms": [], + "pocketbook's": [], + "con": ["G", "S", "M"], + "stratospheres": [], + "Leos's": [], + "leaper's": [], + "effetely": [], + "haulers": [], + "loft": ["M", "D", "S", "G"], + "peeress's": [], + "billeteds": [], + "original's": [], + "gasometer": ["S"], + "incarnadining": [], + "informant's": [], + "tastes": [], + "rookery": ["S", "M"], + "taximeters": [], + "smears": [], + "backspin's": [], + "lumbar": [], + "convectional": [], + "call'sed": [], + "molteden": [], + "Ramadan's": [], + "Tatum's": [], + "tum": ["S"], + "nary": [], + "splinting's": [], + "Platte's": [], + "covetous": ["Y", "P"], + "defalcateds": [], + "mildeweding": [], + "wanton": ["M", "D", "Y", "S", "P", "G"], + "twinsets": [], + "gardened": [], + "immigration": ["M"], + "ambulate": ["D", "S", "X", "G", "N"], + "burglary's": [], + "moleskin": ["M"], + "excitement": ["S", "M"], + "predisposition": ["M", "S"], + "voodoos's": [], + "bayberry's": [], + "lambasted": [], + "Nolan's": [], + "fumy": ["R", "T"], + "killdeers": [], + "detonators": [], + "lemmingsing": [], + "eosinophil": ["S"], + "proceededs": [], + "Godspeed": ["S", "M"], + "rapiderly": [], + "tabs": [], + "Novartis's": [], + "Galatians's": [], + "piloteding": [], + "Brandt's": [], + "gonks": [], + "whippet's": [], + "recruiterers": [], + "minstrels's": [], + "rote's": [], + "sways": [], + "impact's": [], + "thrives": [], + "serum's": [], + "defeatist's": [], + "stalemate'sing": [], + "pattern's": [], + "Love": ["M"], + "kiddo": ["S", "M"], + "sumo": ["M"], + "differentiation's": [], + "hennas's": [], + "angularity": ["S", "M"], + "winglike": [], + "bow's": [], + "headline'sers": [], + "overexerciseds": [], + "tins's": [], + "incline's": [], + "reddest": [], + "adverbial's": [], + "huskers": [], + "sparklersing": [], + "multiply": ["N", "Z", "G", "D", "R", "S", "X"], + "waterbed'ses": [], + "zapper'ses": [], + "documentary": ["S", "M"], + "fateful": ["Y", "P"], + "priority": ["S", "M"], + "blankingness": [], + "north's": [], + "rec": ["M"], + "caliphate's": [], + "familiars": [], + "villa's": [], + "Zhengzhou's": [], + "pushcart's": [], + "grotesque's": [], + "scrawling": [], + "hailstorm'ses": [], + "whimsy": ["S", "M"], + "denseness": ["M"], + "ashram'ses": [], + "streak's": [], + "wholeness's": [], + "kindred's": [], + "Maimonides": ["M"], + "dispute'sers": [], + "kilo": ["M", "S"], + "astounding": ["Y"], + "unremarkable": [], + "wrongdoing's": [], + "temperate": ["I", "Y"], + "ponderer": ["M"], + "preconceptions": [], + "ranging": [], + "gloried": [], + "Baghdad's": [], + "Confucius": ["M"], + "remnant'ses": [], + "alightinged": [], + "Chekhovian": [], + "coccyges": [], + "preempt": ["G", "V", "S", "D"], + "shank": ["M", "S"], + "anapestic's": [], + "workmen": [], + "suspensions's": [], + "inspiration'ses": [], + "linkage's": [], + "lullabies's": [], + "beltways": [], + "mildness's": [], + "deification's": [], + "myna's": [], + "feature": ["D", "S", "M", "G"], + "assessor'ses": [], + "Ufa's": [], + "decaying": [], + "accursedness": ["M"], + "best'sed": [], + "lease": ["A", "D", "S", "M", "G"], + "ECG": ["M"], + "Philippe's": [], + "playbook'ses": [], + "tumbledown": [], + "coaster's": [], + "tram's": [], + "Eisner's": [], + "shoehorns": [], + "filial": [], + "sises": [], + "manufactured": [], + "gads": [], + "scorecard's": [], + "soundnesses": [], + "reunusable": [], + "Velma": ["M"], + "rhombus's": [], + "Kathryn's": [], + "stagnated": [], + "masturbating": [], + "exultantly": [], + "ruthlessly": [], + "gabby": ["R", "T", "P"], + "heartiness": ["M"], + "supersizeds": [], + "dieter": ["M"], + "gaucho": ["S", "M"], + "glaciationed": [], + "elevenses": [], + "altos's": [], + "pierces": [], + "suffragists": [], + "budgetary": [], + "Trojan'ses": [], + "gemstone": ["M", "S"], + "teaching's": [], + "Tulsidas": ["M"], + "Hudson's": [], + "permission's": [], + "assailants": [], + "forbore": [], + "carbonaceous": [], + "compeers's": [], + "nautilus'ses": [], + "triangle's": [], + "salad": ["M", "S"], + "insentient": [], + "broom's": [], + "chapters's": [], + "banishment's": [], + "glorifyinged": [], + "skeet": ["Z", "M", "R"], + "splintery": [], + "fiddle'sers": [], + "nonabsorbents": [], + "boys's": [], + "Kent's": [], + "amides": [], + "invigorates": [], + "versifiersing": [], + "congealing": [], + "urchin": ["S", "M"], + "heathenism": ["M"], + "palatially": [], + "civilities": [], + "birdcage": ["S"], + "fortnightlies": [], + "Saran's": [], + "stirrer's": [], + "flagrancy's": [], + "yegg's": [], + "Puritanism's": [], + "postbags": [], + "petal": ["S", "M", "D"], + "gibbeted": [], + "withdrawn": [], + "sissies's": [], + "mudflat'ses": [], + "downbeats's": [], + "men": ["M"], + "tease'sers": [], + "Dodoma": ["M"], + "uninterruptible": [], + "cabinet's": [], + "lurgy": [], + "Alta": ["M"], + "Chibcha": ["M"], + "wonderingly": [], + "checkmate": ["M", "G", "D", "S"], + "technocratic": [], + "unexploited": [], + "protections": [], + "hearings": [], + "PR": [], + "repositories's": [], + "saute'ses": [], + "thrower's": [], + "photography's": [], + "canoodling": [], + "lessons": [], + "psephologist": ["S"], + "absorbents's": [], + "punishing": ["Y"], + "reunequipped": [], + "huge": ["Y", "P"], + "crater'sed": [], + "slaw": ["M"], + "cosponsor'sed": [], + "mediocrities's": [], + "griddles's": [], + "unscrupulousness": [], + "director": ["M", "S"], + "breathing": ["M"], + "exiling": [], + "Heath": ["M", "R"], + "pertliness": [], + "amplifies": [], + "Suva": ["M"], + "Donovan": ["M"], + "nuzzlersing": [], + "Capetian": ["M"], + "scaffold'sing": [], + "Kissinger": ["M"], + "real": ["T", "M", "R", "Y", "P", "S"], + "fleshed": [], + "preserve's": [], + "bribes": [], + "graderers": [], + "Dschubba": ["M"], + "eta's": [], + "felicities": [], + "Tu": ["M"], + "Minsky's": [], + "onomatopoetic": [], + "cosponsorings": [], + "Aspidiske's": [], + "baskets's": [], + "wateriness": ["M"], + "fineness's": [], + "chunk'sed": [], + "Palikir's": [], + "pewter's": [], + "consolidate": ["X", "D", "S", "G", "N"], + "roes": [], + "taco's": [], + "Greer": ["M"], + "centiliter": ["M", "S"], + "Nicklaus": ["M"], + "ensurers": [], + "playback'ses": [], + "unharmed": [], + "peewee's": [], + "urgent": ["Y"], + "calculates": [], + "stilling": [], + "Spica": ["M"], + "philanthropist": ["M", "S"], + "quickie": ["S", "M"], + "chambers's": [], + "hyperthyroidism's": [], + "photojournalists's": [], + "related": [], + "archivist's": [], + "harmoniums": [], + "e'er": [], + "prodigies's": [], + "Valentin's": [], + "Coppertone": ["M"], + "watt": ["M", "S"], + "masculine": ["S", "M"], + "clobber'sed": [], + "privateers": [], + "miniaturists": [], + "stoke": ["D", "R", "S", "Z", "G"], + "blockading": [], + "credo": ["S", "M"], + "overwintersed": [], + "divest": ["S", "L", "D", "G"], + "inspiring": ["U"], + "lacier": [], + "dipping": [], + "chins's": [], + "vaguerly": [], + "Denise": ["M"], + "swaggerer": [], + "maneuversable": [], + "synchronizations": [], + "propitiatingen": [], + "chalkiness's": [], + "planks": [], + "revereds": [], + "trounceder": [], + "cabbies's": [], + "kiwi's": [], + "Prensa's": [], + "crankcases": [], + "parachuted": [], + "microbrewery's": [], + "collaborated": [], + "blowtorch'ses": [], + "footpaths": [], + "feigneding": [], + "kidnapped": [], + "lamps": [], + "Landsat": ["M"], + "Houyhnhnm": ["M"], + "rednecks's": [], + "wormier": [], + "nepotist": ["S", "M"], + "applejack's": [], + "frailties's": [], + "point's": [], + "futurist": ["M", "S"], + "sushi": ["M"], + "pupa's": [], + "inhabited": ["U"], + "Yucatan": ["M"], + "medium'ses": [], + "quadriceps": ["M", "S"], + "Ethiopian's": [], + "harrying": [], + "match": ["A", "M", "S"], + "macroeconomic": ["S"], + "bandier": [], + "Wolsey's": [], + "reserpine": ["M"], + "heinousness": ["M"], + "fallibility's": [], + "aggregated": [], + "steering": ["M"], + "materialists's": [], + "radioisotopes": [], + "minims": [], + "falsenesser": [], + "predeceased": [], + "supermoms": [], + "Collins": ["M"], + "piggishness": ["M"], + "competitive": ["P", "Y"], + "Hewitt's": [], + "overworking": [], + "Baguio's": [], + "interrogatesing": [], + "Guarani's": [], + "imaginings": [], + "mapped": ["A"], + "Caligula": ["M"], + "clout": ["S", "M", "D", "G"], + "quadratic": ["M", "S"], + "betrayal": ["S", "M"], + "Mortimer's": [], + "eyes": [], + "nullifiesing": [], + "Marcella": ["M"], + "snowmobiles's": [], + "inebriate'sing": [], + "deferrals": [], + "horrifying": ["Y"], + "inundates": [], + "vamp's": [], + "metacarpal": ["S", "M"], + "envisioneding": [], + "intolerably": [], + "sangria": ["M"], + "wildlife's": [], + "hoarders": [], + "resume": ["D", "S", "M", "G"], + "buckler'ses": [], + "apportions": [], + "horrifies": [], + "badly": [], + "interchanges's": [], + "boast": ["Z", "G", "M", "D", "R", "S"], + "cognition's": [], + "shoveleds": [], + "bickers": [], + "blowhard": ["M", "S"], + "butterscotch": ["M"], + "Jami's": [], + "popinjay's": [], + "papas": [], + "ruby's": [], + "grahams": [], + "shouter": ["M"], + "reclusive": [], + "brooch": ["M", "S"], + "headhunt": ["D", "R", "S", "Z", "G"], + "mongols": [], + "Fathers's": [], + "chapbook": ["M", "S"], + "transsexualism": ["M"], + "cardsharper's": [], + "announcers": [], + "agreements's": [], + "coatroom": ["S"], + "hustling": [], + "Lilia's": [], + "falser": [], + "girths": [], + "responsibly": [], + "whisker'sed": [], + "valor's": [], + "hogties": [], + "perdition's": [], + "accomplice's": [], + "dryly": [], + "bothered": [], + "oratorio": ["M", "S"], + "molting": [], + "glands's": [], + "bodysuits": [], + "mamboing's": [], + "solicitations's": [], + "outperform": ["G", "S", "D"], + "roasteder": [], + "resistance's": [], + "Uzis's": [], + "retrofits's": [], + "marvelously": [], + "skillfully": [], + "comminglesing": [], + "stoops": [], + "Malayan'ses": [], + "comas": [], + "temperance": ["I", "M"], + "soothe": [], + "Nov": ["M"], + "production's": [], + "tenants's": [], + "abyss's": [], + "individualism's": [], + "tonearms": [], + "sew": ["A", "S", "G", "D"], + "bums": [], + "obstetricians": [], + "betroths": [], + "timetableds": [], + "husheds": [], + "pinochle": ["M"], + "sunset": ["M", "S"], + "bunkings": [], + "purports": [], + "cyberpunks": [], + "heaters": [], + "Prentice's": [], + "trumpeter's": [], + "deform": [], + "ineffective": [], + "trammeled": ["U"], + "disenfranchisement": [], + "ludo": [], + "wormhole's": [], + "Jamar's": [], + "busgirl": ["M", "S"], + "tamarack'ses": [], + "loganberries's": [], + "selections's": [], + "bogeyman's": [], + "intransigents": [], + "blinked": [], + "forgery's": [], + "interceptors's": [], + "lodestar": ["M", "S"], + "feeler's": [], + "tantalizer": ["M"], + "observably": [], + "showierness": [], + "pertinacity": ["M"], + "costs": [], + "flashgun": ["S", "M"], + "cancan's": [], + "mentions": [], + "infarct": ["M", "S"], + "terrapin'ses": [], + "bumblebee": ["S", "M"], + "cashmere's": [], + "simultaneous": ["Y"], + "canst": [], + "drip": ["M", "S"], + "vascular": [], + "relines": [], + "deteriorates": [], + "Ashkhabad": ["M"], + "unconditioned": [], + "vulgarities": [], + "Smith's": [], + "Concords's": [], + "speakerers": [], + "outlaying": [], + "panted": [], + "prejudgment": ["S", "M"], + "Sydney": ["M"], + "scalawags": [], + "Dalmatians": [], + "shingles's": [], + "adept'sly": [], + "stilt": ["S", "M", "D"], + "walking": ["M"], + "consecrations": [], + "pervadeds": [], + "canister": ["S", "M"], + "financing": ["M"], + "perambulation": ["M"], + "shatter's": [], + "Lot's": [], + "channelizes": [], + "mooned": [], + "combustible'ses": [], + "panache": ["M"], + "dodgy": ["R", "T"], + "logician's": [], + "immolateds": [], + "attrition's": [], + "conservatory's": [], + "pass": ["M"], + "cockles": [], + "calculator's": [], + "celebratingen": [], + "heaters's": [], + "tyke": ["M", "S"], + "bushier": [], + "silica's": [], + "Durham'ses": [], + "Lamaisms": [], + "cultivatesing": [], + "Southey": ["M"], + "Arjuna's": [], + "emporiums's": [], + "insurrectionists": [], + "needful": ["Y"], + "leotards's": [], + "deputing": [], + "receptivenessly": [], + "entirety's": [], + "biannual": ["Y"], + "exceed": ["G", "S", "D"], + "subcompact's": [], + "oversubscribes": [], + "creatures's": [], + "numerationed": [], + "blastoff": ["M", "S"], + "overproduceds": [], + "granges's": [], + "DMCA": [], + "agoraphobic": ["M", "S"], + "contacteding": [], + "doorways's": [], + "callings": [], + "reamers": [], + "k": ["I", "F", "G", "S"], + "gallops": [], + "Americanization": ["M", "S"], + "hankeringsed": [], + "boxy": ["R", "T"], + "prow": ["M", "S"], + "Curry": ["R", "M"], + "enlargements": [], + "attire'sing": [], + "denigratesing": [], + "extolling": [], + "Walt": ["M", "R", "Z"], + "reanimate": [], + "leftest": [], + "perceivable": [], + "mishandleds": [], + "dullards": [], + "radon's": [], + "kudzu": ["S", "M"], + "hesitationens": [], + "grunted": [], + "genuinely": [], + "IBM's": [], + "chute's": [], + "coexists": [], + "traces": [], + "nonsecular": [], + "wink's": [], + "indices": [], + "transcends": [], + "someplace": [], + "Algieba's": [], + "splotchesing": [], + "mindlessliness": [], + "recipients": [], + "vowing": [], + "courted": [], + "stigmas": [], + "Janell's": [], + "pwninged": [], + "Lockean's": [], + "southeast'ser": [], + "germs": [], + "laminatingen": [], + "pyramid's": [], + "novelization": ["M", "S"], + "bailiwick's": [], + "Baptiste": ["M"], + "centripetal": ["Y"], + "chocolaty": [], + "unctuousness": ["M"], + "shoehorn's": [], + "quadruplet's": [], + "huzzahing": [], + "epicureans": [], + "galvanometer": ["M", "S"], + "subtotaling's": [], + "overpraisesing": [], + "Fabian's": [], + "cowbird": ["M", "S"], + "Alyssa's": [], + "charted": ["U"], + "forsake": ["G", "S"], + "it'll": [], + "capricious": ["P", "Y"], + "march's": [], + "terrazzos": [], + "blowpipe": ["S", "M"], + "admonitory": [], + "shanghaising": [], + "annotators": [], + "pipettes": [], + "dynamiteder": [], + "Lissajous": ["M"], + "Jason's": [], + "milligram'ses": [], + "installment": ["S", "M"], + "erratically": [], + "ayah": ["M"], + "crucifixion": ["S", "M"], + "reserved": ["U", "Y"], + "overcapitalizesing": [], + "majors": [], + "nondairy": [], + "heterogeneous": ["Y"], + "Eminem's": [], + "Baha'ullah": ["M"], + "cribbing": [], + "croonersing": [], + "Wilsonian": ["M"], + "journalistic": [], + "Eugenio's": [], + "Shoshone's": [], + "perspicuity's": [], + "rocket": ["M", "D", "S", "G"], + "gobbets": [], + "portlierness": [], + "confiscated": [], + "Gumbel": ["M"], + "underground'ses": [], + "schnauzer": ["S", "M"], + "redrawing": [], + "handmaiden's": [], + "East": ["S", "Z", "M", "R"], + "Ahmed": ["M"], + "Amer": [], + "hypothesizes": [], + "gaffings": [], + "enchilada's": [], + "Nisei's": [], + "abolitionists's": [], + "skylight's": [], + "Sinbad's": [], + "saxifrages": [], + "Lagos's": [], + "hardcore": [], + "planked": [], + "bicentennial": ["S", "M"], + "rancid": ["P"], + "propererly": [], + "hyperventilate": ["G", "N", "D", "S"], + "Eros'ses": [], + "infusers": [], + "Shaw": ["M"], + "navvy": ["S"], + "cobblestones's": [], + "housemasters": [], + "Chateaubriand": ["M"], + "blousing": [], + "visualizes": [], + "corsage'ses": [], + "Ferraro's": [], + "apron": ["M", "S"], + "codeine's": [], + "sketchier": [], + "Angolans": [], + "zigzag's": [], + "shredders": [], + "alias'sed": [], + "boatman's": [], + "scanteds": [], + "blacklisteds": [], + "needlework's": [], + "Gagarin": ["M"], + "area's": [], + "wore": [], + "manneredly": [], + "giggler's": [], + "beanstalk'ses": [], + "Lordship's": [], + "apocrypha's": [], + "prehistorically": [], + "accusatory": [], + "skirt's": [], + "redisarm": [], + "tinker'sed": [], + "mate's": [], + "loyalists's": [], + "neutrino": ["S", "M"], + "Cage's": [], + "battleships's": [], + "monastery's": [], + "jab's": [], + "automate": ["G", "N", "D", "S"], + "unprintable": [], + "Nanette": ["M"], + "merger": ["M"], + "barbaric": [], + "heartstrings": ["M"], + "nastiness's": [], + "ostentation's": [], + "twinkleds": [], + "depromote": [], + "Melody's": [], + "ruddiness": ["M"], + "rajahs": [], + "guzzling": [], + "prefabricated": [], + "condominium'ses": [], + "Alice's": [], + "neglectful": ["Y", "P"], + "overseesers": [], + "roweder": [], + "searches": [], + "prickling": [], + "gigapixel'ses": [], + "spaciousness": ["M"], + "stumbler": ["M"], + "consonance": ["S", "M"], + "guarantee'sed": [], + "windmillings": [], + "centrifugally": [], + "full's": [], + "idiopathic": [], + "irrelevance'ses": [], + "exquisiteness": ["M"], + "deforestation": [], + "alienabling": [], + "daguerreotypes": [], + "pavilions's": [], + "spattersing": [], + "malodorous": [], + "spacey": [], + "impassively": [], + "Liston": ["M"], + "prongeds": [], + "rennin's": [], + "kw": [], + "smugglersing": [], + "paraplegics's": [], + "desperate": ["Y", "N", "P"], + "pureed": [], + "irrational'sly": [], + "saran": ["M"], + "Gloria": ["M"], + "slew'sed": [], + "insulators": [], + "alderwoman": ["M"], + "Celtics": [], + "clarions": [], + "impacting": [], + "sampling": ["M"], + "Britain": ["M"], + "electrical": ["Y"], + "codifiesen": [], + "colleens's": [], + "movinged": [], + "hose": ["M", "G", "D", "S"], + "ancestors": [], + "longinglies": [], + "clipping's": [], + "chambermaids": [], + "crossly": [], + "hole": ["M", "G", "D", "S"], + "alms's": [], + "washbowls": [], + "dazeds": [], + "abidance's": [], + "eraser": ["M"], + "lumpen": [], + "doctor's": [], + "affluence": ["M"], + "halter": ["G", "M", "D"], + "Semarang's": [], + "Kan's": [], + "riverbank": ["S", "M"], + "skylark'sed": [], + "athletics's": [], + "outspokenliness": [], + "expressly": [], + "shipwreckeds": [], + "basilicas": [], + "Ecuadorian": ["S", "M"], + "Staten": ["M"], + "hematologist's": [], + "pretends": [], + "accentuation's": [], + "tourist": ["M", "S"], + "ghettoized": [], + "hygiene's": [], + "malarkey": ["M"], + "Pangaea": ["M"], + "refectories": [], + "megalopolises": [], + "Joel's": [], + "yarrow's": [], + "waited": [], + "uttered": [], + "Jun": ["M"], + "abstemiousness's": [], + "osteopathic": [], + "palatalizeds": [], + "Hanoi's": [], + "Rankine's": [], + "ceder's": [], + "warmness's": [], + "quadrupling": [], + "hacker": ["M"], + "fricassee's": [], + "stripling'ses": [], + "offsers": [], + "dramatization": ["S", "M"], + "squelches": [], + "innocuousness's": [], + "MO": [], + "butchery": ["S", "M"], + "burgers": [], + "metalwork": ["M", "R", "Z", "G"], + "footprints's": [], + "shiftily": [], + "operettas": [], + "stringer's": [], + "swore": [], + "shoos": [], + "stodginess": ["M"], + "Baal's": [], + "mordancy's": [], + "cash": ["G", "M", "D", "S"], + "fatal": ["Y"], + "saileds": [], + "canvas's": [], + "severally": [], + "castleds": [], + "preexisted": [], + "armies's": [], + "perpetrateds": [], + "proportionals": [], + "Hilario's": [], + "Jacquelyn": ["M"], + "storeroom's": [], + "Coptic's": [], + "extrusion": ["S", "M"], + "dwarfs": [], + "anatomizeds": [], + "destructed": [], + "grabs": [], + "mescalin": [], + "thermoplastics": [], + "Judaisms": [], + "Eris's": [], + "shrewdest": [], + "cornea": ["S", "M"], + "abort": ["G", "V", "D", "S"], + "Tupi's": [], + "nexus's": [], + "woodcarver": ["M", "S"], + "conflating": [], + "chestfuls's": [], + "caballero": ["M", "S"], + "tektites": [], + "linage's": [], + "redisclaim": [], + "ideological": ["Y"], + "transplantation's": [], + "legitimateds": [], + "Pushtu": ["M"], + "ureter's": [], + "episodic": [], + "Mithridates's": [], + "preys": [], + "sneakingly": [], + "botanically": [], + "verdantly": [], + "Mason": ["M", "S"], + "penetrateds": [], + "hotness": ["M"], + "magus's": [], + "provide": ["D", "R", "S", "Z", "G"], + "hockshop's": [], + "irrationals": [], + "variegated": [], + "clinkeder": [], + "apprentice's": [], + "ladybird's": [], + "convoys": [], + "bassinet'ses": [], + "hotheads's": [], + "Navajos": [], + "gherkin'ses": [], + "bootlegging's": [], + "curl": ["U", "D", "G", "S"], + "exaggerator'ses": [], + "greasier": [], + "brushstrokes": [], + "nub's": [], + "Reynaldo's": [], + "reclamation's": [], + "countywide": [], + "civilizations": [], + "palfreys": [], + "metronome's": [], + "bugler": ["M"], + "loin'ses": [], + "biopic'ses": [], + "jeopardy's": [], + "sculleries's": [], + "robberies": [], + "endemics": [], + "metro's": [], + "blasphemers": [], + "vitae": [], + "cumuli": [], + "dutch": [], + "melodramas": [], + "crispness's": [], + "librettos's": [], + "palaces": [], + "whorls's": [], + "weensing": [], + "clones": [], + "Hathaway's": [], + "dybbukim": [], + "tarragons": [], + "exhaling": [], + "revisionists's": [], + "knockersing": [], + "undress": [], + "behooveds": [], + "psychotherapist'ses": [], + "Havarti": ["M"], + "polestar's": [], + "vastness": ["M"], + "chubbinesser": [], + "farsightedness": ["M"], + "imputations's": [], + "ecclesiastics's": [], + "becoming": ["U", "Y"], + "weightingsing": [], + "annihilatingen": [], + "courtliness": ["M"], + "wildcatting": [], + "crouch": ["G", "M", "D", "S"], + "pap": ["S", "M"], + "stalking's": [], + "caplet'ses": [], + "dogtrotting": [], + "representative": ["M", "S"], + "snowfield": ["S", "M"], + "imprint's": [], + "layup's": [], + "uninsolvable": [], + "sawyers's": [], + "hydrocephalus": ["M"], + "nanoseconds": [], + "wholesome": ["U", "P"], + "premedical": [], + "Ives": ["M"], + "Dias": [], + "truffle'ses": [], + "crowdfundsed": [], + "bungle": ["D", "R", "S", "M", "Z", "G"], + "burnooses": [], + "gods": [], + "Folsom": ["M"], + "Spaniards": [], + "concurrences's": [], + "Barrett's": [], + "sitcoms": [], + "disillusioning": [], + "perverse": ["P", "X", "Y", "N"], + "woven": ["A", "U"], + "exhibitor": ["S", "M"], + "pantheism's": [], + "adventuring": [], + "metal's": [], + "orangeness": [], + "exaction": ["M"], + "Stu's": [], + "might've": [], + "cedillas's": [], + "pacts": [], + "punishes": [], + "traveler's": [], + "semiconductor'ses": [], + "Mayans": [], + "floss": ["M", "D", "S", "G"], + "Pilate's": [], + "enfolds": [], + "persisting": [], + "gawk": ["D", "G", "S"], + "watchbands": [], + "theremin's": [], + "sexpots": [], + "Capek": ["M"], + "Salvatore": ["M"], + "registering": [], + "slashesers": [], + "Oligocene": ["M"], + "retardants's": [], + "overbore": [], + "carol's": [], + "catcalls": [], + "hauleder": [], + "supervised": ["U"], + "plenums": [], + "groaning": [], + "cacti": [], + "holstering": [], + "wireless's": [], + "sees": [], + "homeroom'ses": [], + "assassinated": [], + "CB": [], + "gauntlet'ses": [], + "colloquially": [], + "condemnatory": [], + "infection's": [], + "messmate": ["S", "M"], + "luckiness": ["U", "M"], + "Winchesters": [], + "soul's": [], + "agglutinationsing": [], + "forestry": ["M"], + "inference": ["S", "M"], + "past's": [], + "cavorting": [], + "milsers": [], + "thingamajigs's": [], + "sniffy": ["R", "T"], + "Abel's": [], + "fleecer": ["M"], + "antiqueds": [], + "commonalities": [], + "burglary": ["S", "M"], + "viral": [], + "slack": ["P", "X", "Z", "T", "G", "M", "D", "N", "R", "Y", "S"], + "grovelinged": [], + "Taiyuan": ["M"], + "torture's": [], + "smuggest": [], + "psalmist's": [], + "Lon": ["M"], + "subdues": [], + "unsigned": [], + "bdrm": [], + "benching's": [], + "inseminate": ["D", "S", "G", "N"], + "relation's": [], + "worse": ["M"], + "adjustment's": [], + "trance's": [], + "reeking's": [], + "May": ["S", "M", "R"], + "conceit'sed": [], + "Kaifeng's": [], + "prejudiced": ["U"], + "Sophie": ["M"], + "honcho's": [], + "Geritol": ["M"], + "whelk'sed": [], + "careerists's": [], + "budget's": [], + "curdle": ["D", "S", "G"], + "homographs": [], + "idea's": [], + "dobbins": [], + "Althea": ["M"], + "start": ["A", "S", "M", "D", "G"], + "plausibly": [], + "dawning": [], + "milky": ["R", "T", "P"], + "depressants": [], + "glides's": [], + "Lambrusco's": [], + "keynote's": [], + "geranium's": [], + "He's": [], + "boisterousness": ["M"], + "jiggles": [], + "restive": ["Y", "P"], + "Windhoek": ["M"], + "donatingen": [], + "Christie": ["M"], + "strip's": [], + "bleeper's": [], + "bonnet's": [], + "nit": ["S", "M", "R"], + "VISTA": [], + "Monacan": [], + "unctuousliness": [], + "piglet'ses": [], + "starchily": [], + "roomersing": [], + "kilt's": [], + "tarball": ["S"], + "mensuration": ["M"], + "liberalness": ["M"], + "agglomeration": ["M"], + "exhalation's": [], + "laundries's": [], + "mom's": [], + "fridges's": [], + "divergesing": [], + "insidiousness": ["M"], + "zealousness's": [], + "interleaving": [], + "hamstrings's": [], + "streetcar's": [], + "Sussex": ["M"], + "reduplicate": [], + "Kasai": ["M"], + "combatant's": [], + "succubus": [], + "bellwethers": [], + "proprietor": ["S", "M"], + "joule's": [], + "japans's": [], + "prizefighting": ["M"], + "Polynesia's": [], + "tonnage's": [], + "careens": [], + "madrigal": ["S", "M"], + "mew's": [], + "granduncles": [], + "hints": [], + "grouse's": [], + "revealingly": [], + "enslavement's": [], + "soullessness": [], + "homeopathy": ["M"], + "conflagrations": [], + "loughs": [], + "honors": [], + "Lochinvar": ["M"], + "trowel's": [], + "Cromwellian's": [], + "regimentation's": [], + "bookmark's": [], + "pinsetters's": [], + "arrow'ses": [], + "pullbacks": [], + "began": [], + "sicken": ["D", "G"], + "Athabaskans's": [], + "bidders": [], + "quarrel's": [], + "hypertension's": [], + "abjurer's": [], + "ergs's": [], + "ballgowns": [], + "unbaked": [], + "commanded": [], + "inconspicuousness": [], + "enlisted": [], + "Yves's": [], + "Naphtali": ["M"], + "Dennis's": [], + "crannies's": [], + "stepmother's": [], + "scoursers": [], + "fete's": [], + "brainier": [], + "thatcher's": [], + "nook": ["M", "S"], + "organizational": ["Y"], + "playboys": [], + "consummatingen": [], + "springy": ["R", "P", "T"], + "discontent": [], + "slumberings": [], + "casein's": [], + "unlovelier": [], + "byways": [], + "operator": ["S", "M"], + "flibbertigibbet": ["S", "M"], + "Negress'ses": [], + "Duroc's": [], + "amortizations's": [], + "koans": [], + "theremins": [], + "stash's": [], + "CO's": [], + "punishments": [], + "Reeves's": [], + "glorification's": [], + "complications": [], + "amphetamine's": [], + "nays's": [], + "Alpine's": [], + "wastefulness": ["M"], + "Domesday's": [], + "serif'ses": [], + "b": ["K", "D", "T"], + "freedman": ["M"], + "recitatives": [], + "deserter's": [], + "Hyundai's": [], + "adorableness's": [], + "arrears's": [], + "trifler's": [], + "drabbest": [], + "bipartite": [], + "Cory's": [], + "Hereford's": [], + "impedimenta's": [], + "languor's": [], + "Felicia's": [], + "nonpareil's": [], + "elided": [], + "decadent": ["M", "Y", "S"], + "preludes": [], + "stampers": [], + "irresolution's": [], + "Houdini": ["M"], + "knife": ["D", "S", "M", "G"], + "helix": ["M"], + "varicose": [], + "screweds": [], + "bunt'sed": [], + "acquit": ["S"], + "Rh": ["M"], + "Stuart's": [], + "closeup's": [], + "sec's": [], + "J's": [], + "Sammie": ["M"], + "windows's": [], + "repulsiveness": ["M"], + "methodologically": [], + "bazookas": [], + "liner": ["M"], + "gentled": [], + "dissipation's": [], + "rotates": [], + "consumption": ["M"], + "Poconos": ["M"], + "nodule'ses": [], + "wheelbarrow's": [], + "torridly": [], + "furs's": [], + "arrogance's": [], + "outstrip": ["S"], + "crop'ses": [], + "rummy": ["M"], + "hearthstones": [], + "Harpy's": [], + "pilling": [], + "lexicographic": [], + "appendectomies": [], + "unregistered": [], + "countervailsed": [], + "befriend": ["S", "G", "D"], + "Alcyone": ["M"], + "subtotaling": [], + "commiserations": [], + "pshaws": [], + "complaints's": [], + "corporals": [], + "Zukor": ["M"], + "unsymmetrical": [], + "grapnel's": [], + "Honda": ["M"], + "Bahama": ["S", "M"], + "caramel's": [], + "Pennington's": [], + "ponytails": [], + "gulls": [], + "physicals": [], + "bunchiest": [], + "backstrokeds": [], + "climbeder": [], + "screwdriver's": [], + "interest'sed": [], + "distance'sing": [], + "wooed": [], + "opposites": [], + "preferment": ["M"], + "Scotchman's": [], + "perjuries's": [], + "bitching": [], + "yogurt's": [], + "tramway": ["S"], + "grunting": [], + "spikiest": [], + "churner": ["M"], + "song'ses": [], + "informal": ["Y"], + "heehawing": [], + "milieu": ["S", "M"], + "seaweed'ses": [], + "instituters": [], + "timeliness's": [], + "antimatter": ["M"], + "spiry": [], + "leis": [], + "bumblebee's": [], + "Kshatriya's": [], + "leukemic": ["S", "M"], + "Cincinnati": ["M"], + "admonishment": ["M", "S"], + "pumpernickel": ["M"], + "Taoism's": [], + "hoer": ["M"], + "operative": ["S", "M"], + "sunsets": [], + "accordant": [], + "creator": ["M", "S"], + "Somalian'ses": [], + "Grady's": [], + "detente'sen": [], + "mounting's": [], + "subcompact": ["S", "M"], + "communions": [], + "addressable": [], + "doubtersing": [], + "brambles": [], + "Young's": [], + "censoriousnessly": [], + "thingamajig": ["S", "M"], + "warder": ["M", "S"], + "seniority": ["M"], + "hardwired": [], + "microscope's": [], + "cawed": [], + "remarkableness's": [], + "whitecaps's": [], + "viewings": [], + "piggyback's": [], + "leitmotivs": [], + "radish": ["M", "S"], + "Pogo's": [], + "Risorgimento": ["M"], + "parathyroid'ses": [], + "historian's": [], + "Love's": [], + "Hegira's": [], + "belittlement's": [], + "delusively": [], + "seacoast": ["S", "M"], + "shiners": [], + "windswept": [], + "primmest": [], + "broncobuster": ["S", "M"], + "spellcheck": ["M", "D", "R", "Z", "G", "S"], + "qr": [], + "Zoroastrians": [], + "nasturtiums": [], + "Bahamian'ses": [], + "badgering's": [], + "conniption's": [], + "shakeups": [], + "pastern": ["M", "S"], + "surname": ["M", "S"], + "dropout": ["S", "M"], + "saltpeter's": [], + "guardedly": [], + "Olen's": [], + "Shirley's": [], + "Athens's": [], + "platoon's": [], + "spermicidal": [], + "clematis": ["M", "S"], + "neuritic": ["M", "S"], + "recuperation's": [], + "machinable": [], + "lunatic": ["S", "M"], + "laughter": ["M"], + "weaver's": [], + "peat's": [], + "rat's": [], + "lama's": [], + "overcrowd": ["S", "D", "G"], + "cloudy": ["R", "P", "T"], + "odalisque's": [], + "slackened": [], + "climbing": ["M"], + "confiscator's": [], + "causeway": ["S", "M"], + "yodeling": [], + "republicanism's": [], + "imprimatur": ["S", "M"], + "mandamus's": [], + "backstreet": ["S"], + "hoecakes": [], + "czarists's": [], + "homeder": [], + "freedom": ["S", "M"], + "ballrooms": [], + "obj": [], + "extent's": [], + "shortcake's": [], + "marchioness's": [], + "supremacists": [], + "bluers": [], + "Belorussians": [], + "boobs": [], + "hat'sed": [], + "decimated": [], + "Atahualpa's": [], + "Edwina": ["M"], + "produces": [], + "prickeder": [], + "distance": ["D", "S", "M", "G"], + "crud's": [], + "stratospheres's": [], + "transient'sly": [], + "pilinged": [], + "chieferly": [], + "incantation": ["S", "M"], + "quadruple'sing": [], + "guerrillas": [], + "Robby": ["M"], + "plaiteding": [], + "priestliness": ["M"], + "English": ["M", "R", "S"], + "fickler": [], + "gestureds": [], + "cardiopulmonary": [], + "whaler": ["M"], + "cacophony": ["S", "M"], + "attainable": ["U"], + "Irishwoman's": [], + "aphoristic": [], + "hiker's": [], + "czarina": ["S", "M"], + "Dot's": [], + "wheezy": ["P", "R", "T"], + "Hindi's": [], + "rich's": [], + "loneliness's": [], + "martyrings": [], + "Colbert": ["M"], + "listens": [], + "wantons": [], + "Hitler": ["M", "S"], + "psychotropic's": [], + "prefab": ["S", "M"], + "diaspora's": [], + "elevator's": [], + "slayer's": [], + "borrowing's": [], + "mongrels": [], + "evanescence's": [], + "skaters": [], + "wadi": ["M", "S"], + "tests": [], + "capsuleds": [], + "granny": ["S", "M"], + "dethroned": [], + "barhopping": [], + "ticktacktoe's": [], + "futzing": [], + "gangsters's": [], + "hemophilia": ["M"], + "ideal": ["S", "M", "Y"], + "relocation's": [], + "guts's": [], + "snappishness's": [], + "shadowed": [], + "soda": ["M", "S"], + "Friend": ["S", "M"], + "antiserum": ["M", "S"], + "birthright'ses": [], + "sumac": ["M"], + "transshipped": [], + "Roswell": ["M"], + "phantasmal": [], + "foyer": ["S", "M"], + "eyeballing's": [], + "voluble": [], + "museum's": [], + "callosities's": [], + "Target's": [], + "effectuateds": [], + "downplaying": [], + "adobe's": [], + "provokes": [], + "doeskin": ["M", "S"], + "handcrafts's": [], + "painterly": [], + "gloomy": ["T", "R", "P"], + "defrost": [], + "appropriationens": [], + "silicate'ses": [], + "releasable": [], + "shineder": [], + "crumble'sing": [], + "graded": ["U"], + "humanoid": ["S", "M"], + "canoe": ["M", "D", "S"], + "estate's": [], + "earnestness": ["M"], + "sterilizer's": [], + "Bilbao's": [], + "Leviticus": ["M"], + "saneness": ["M"], + "nova": ["M", "S"], + "GMT": ["M"], + "repeating's": [], + "lettering's": [], + "acerbates": [], + "bots": [], + "hollow's": [], + "seventeen's": [], + "bests": [], + "pertussis": ["M"], + "handlebar's": [], + "gobble'sers": [], + "Latvia's": [], + "burlesque'sing": [], + "Antoninus's": [], + "adjudicating": [], + "deter": ["S", "L"], + "horde": ["D", "S", "M", "G"], + "impersonators's": [], + "primitive's": [], + "Alabama": ["M"], + "moniker": ["S", "M"], + "Briton'ses": [], + "Arcadian's": [], + "Deborah's": [], + "Ir's": [], + "Mannheim": ["M"], + "shooter": ["M"], + "critiques": [], + "obverses's": [], + "pasties": [], + "monists": [], + "Jordan": ["M"], + "accretions": [], + "WNW's": [], + "jitneys's": [], + "scree": ["M", "D", "S"], + "Biscayne's": [], + "Gambians's": [], + "allusion's": [], + "Illinois's": [], + "turntable's": [], + "abjuration's": [], + "ureter": ["S", "M"], + "regex's": [], + "prestige": ["M"], + "nucleus's": [], + "misidentifying": [], + "dottiest": [], + "seventeens's": [], + "rowdy": ["P", "R", "S", "M", "T"], + "loggerheads's": [], + "petrochemicals's": [], + "mathematical": ["Y"], + "petulantly": [], + "misguiding": [], + "blandishment": ["S", "M"], + "cushy": ["R", "T"], + "seedling": ["M", "S"], + "trussed": [], + "annunciations": [], + "consomme": ["M"], + "bat's": [], + "naughtiness's": [], + "flambe's": [], + "Algol's": [], + "shine": ["M", "S"], + "enthronesment": [], + "Liza's": [], + "Sacajawea's": [], + "turducken": ["S", "M"], + "mailbox's": [], + "Prussian'ses": [], + "rots": [], + "industrialist": ["S", "M"], + "Ithaca": ["M"], + "dowsersing": [], + "servers": [], + "Essequibo's": [], + "Broadway's": [], + "Foley's": [], + "satanist'ses": [], + "underskirts": [], + "talliersing": [], + "Zealand's": [], + "bicentenary's": [], + "Ogbomosho": ["M"], + "resuscitators": [], + "gutted": [], + "thumbtack": ["S", "M"], + "activator'ses": [], + "papergirls's": [], + "unpracticed": [], + "dunks": [], + "implieds": [], + "lacuna's": [], + "extroverts's": [], + "malarkey's": [], + "easterlies": [], + "afghan": ["M", "S"], + "transfiguration's": [], + "Faeroe": ["M"], + "collator's": [], + "birthers": [], + "grouting": [], + "quizzed": [], + "scuppered": [], + "misstep": ["M", "S"], + "opals": [], + "dermatological": [], + "backtalk": ["M"], + "punkest": [], + "consecration's": [], + "cirrus": ["M"], + "poseur": ["S", "M"], + "marriages": [], + "motorcyclist'ses": [], + "discographies's": [], + "masker": ["M", "S"], + "asphyxiation's": [], + "reunemployment": [], + "butler's": [], + "attunesing": [], + "expenditures": [], + "cathode": ["S", "M"], + "Slackware": ["M"], + "Eros": ["M", "S"], + "dries's": [], + "wait'sed": [], + "swashbuckling": ["M"], + "Negresses": [], + "floury": [], + "policed": [], + "youngsters": [], + "tot": ["S", "G", "M", "D"], + "rained": [], + "maples's": [], + "landmark's": [], + "perfectibility's": [], + "clitoris'ses": [], + "PMs": [], + "moderate'sly": [], + "playhouse": ["M", "S"], + "councilpersons's": [], + "orthodontist's": [], + "romanticists's": [], + "schoolmarms's": [], + "Jacobi": ["M"], + "scantest": [], + "calmly": [], + "memorizes": [], + "designated": [], + "radiography": ["M"], + "Bowie": ["M"], + "respectable": [], + "foretasted": [], + "Pruitt": ["M"], + "Francoise": ["M"], + "newer": [], + "appositely": [], + "regard'sed": [], + "downward": ["S"], + "archdiocese'ses": [], + "minibikes's": [], + "Euler's": [], + "bolts": [], + "administrating": [], + "minor": ["S", "M", "D", "G"], + "allusion": ["S", "M"], + "pacinged": [], + "grandness": ["M"], + "vehicle": ["M", "S"], + "cudgeled": [], + "overmuches": [], + "fiddliest": [], + "endearmented": [], + "nosh'sed": [], + "repudiations": [], + "revivalists": [], + "unconsidered": [], + "gleaningings": [], + "lacerates": [], + "estimator": ["S", "M"], + "mangleder": [], + "groping": [], + "incorrigibly": [], + "haversacks's": [], + "transparent": ["Y"], + "sensualist": ["S", "M"], + "bindings": [], + "roomette": ["S", "M"], + "loweringed": [], + "Saks": ["M"], + "highlight'sed": [], + "Prussia": ["M"], + "carapace": ["S", "M"], + "categorizations": [], + "conservator": ["S", "M"], + "barter'sed": [], + "alkaloids's": [], + "dahlia": ["M", "S"], + "convent's": [], + "couturier'ses": [], + "painlessnessly": [], + "standard'ses": [], + "malignancies's": [], + "Holiday's": [], + "promoteder": [], + "Samuel": ["M"], + "encephalitis's": [], + "monosyllable'ses": [], + "erring": [], + "wordsmith": [], + "bottle": ["D", "R", "S", "M", "Z", "G"], + "coaxingly": [], + "believes": [], + "Safeway": ["M"], + "chicanery's": [], + "footing's": [], + "wok's": [], + "indeterminacy's": [], + "reps": [], + "profligates": [], + "insureds": [], + "slackers": [], + "scroungier": [], + "Glenn's": [], + "eighth's": [], + "houseplants": [], + "adherent": ["S", "M"], + "assaulted": [], + "sneakers": [], + "launder": ["D", "R", "Z", "G", "S"], + "Utah's": [], + "flounce's": [], + "absconding": [], + "rummage'sing": [], + "carious": [], + "cruising": [], + "authorizinged": [], + "doubloons": [], + "Luis": ["M"], + "bluer": [], + "referenced": [], + "wingers": [], + "extinctinged": [], + "emaileding": [], + "Hormel's": [], + "broadsword": ["S", "M"], + "infatuated": [], + "cowards's": [], + "infra": [], + "necking": ["M"], + "ream's": [], + "procreate": ["V"], + "glanced": [], + "pronounces": [], + "Hollerith": ["M"], + "lowboys": [], + "Maugham": ["M"], + "sleeplessnessly": [], + "vamped": [], + "fluorite": ["M"], + "Ayrshire's": [], + "Dominica's": [], + "milers's": [], + "overuseds": [], + "airwomen": [], + "transitional": ["Y"], + "whatsoever": [], + "beatifyingens": [], + "muggle'ses": [], + "Minnesota's": [], + "insectivores": [], + "fireproofed": [], + "lifeguard's": [], + "triage": ["M"], + "scrofula's": [], + "soybean": ["M", "S"], + "hedgehops": [], + "insubstantial": [], + "cuffings": [], + "chromosome's": [], + "organist'ses": [], + "hied": [], + "hearkensing": [], + "Brent's": [], + "pursued": [], + "mope'ses": [], + "aggrandizing": [], + "inviolably": [], + "seedinged": [], + "manhandling": [], + "inchworm's": [], + "mortuary's": [], + "Paleozoic's": [], + "confound": [], + "securer": [], + "Kalgoorlie": ["M"], + "carpetbags": [], + "carousal's": [], + "pawl's": [], + "jolly": ["T", "G", "P", "D", "R", "S", "M"], + "curbing": ["M"], + "prickliness": ["M"], + "Lloyd": ["M"], + "bold": ["P", "T", "R", "Y"], + "ironstone": ["M"], + "voles": [], + "Livia": ["M"], + "conflationsed": [], + "mollified": [], + "beys's": [], + "Fannie": ["M"], + "Aymara": ["M"], + "crystallographic": [], + "deserterers": [], + "perfidy": ["S", "M"], + "sprayed": [], + "mockery's": [], + "homosexual": ["S", "M"], + "irreversibly": [], + "gazetteer'ses": [], + "annoyance": ["M", "S"], + "Limburger's": [], + "implementation's": [], + "catalyzinged": [], + "frowned": [], + "diagonal's": [], + "herdersing": [], + "tuber": ["M"], + "perforated": [], + "subset": ["S", "M"], + "ulcers": [], + "whines": [], + "louse's": [], + "sienna's": [], + "calumniated": [], + "interlarding": [], + "macaroni": ["M", "S"], + "jounced": [], + "dicotyledon'ses": [], + "coeval": ["S", "M", "Y"], + "windcheater": ["S"], + "priestess'ses": [], + "Khachaturian's": [], + "shivs": [], + "capstone'ses": [], + "ablation": ["M"], + "sideshow'ses": [], + "morbidness": ["M"], + "Deadhead": ["M"], + "raise": ["M", "Z", "G", "D", "R", "S"], + "brigandage's": [], + "reinstalleding": [], + "haircut": ["S", "M"], + "jiggereding": [], + "encirclesing": [], + "pianos": [], + "designationens": [], + "fouleder": [], + "hitchesing": [], + "yieldings": [], + "courteous": ["E", "Y"], + "disturbances": [], + "inscription": ["M", "S"], + "pig": ["S", "M", "L"], + "Kaisers": [], + "backeder": [], + "savored": [], + "mastereding": [], + "racemes": [], + "sparsity's": [], + "chiseler's": [], + "method": ["M", "S"], + "blinis": [], + "vinyls's": [], + "changeling": ["S", "M"], + "tincturinged": [], + "Loewi's": [], + "squaw": ["S", "M"], + "copiesing": [], + "nukinged": [], + "inkwell'ses": [], + "Olive'ser": [], + "cooperativeness's": [], + "submissiveness's": [], + "busting": [], + "effectuates": [], + "jiggle's": [], + "monotheists": [], + "alloweds": [], + "lubrication": ["M"], + "blinding": ["Y"], + "bubs's": [], + "madness's": [], + "Esquire'ses": [], + "adders": [], + "outdistanced": [], + "filled": ["U"], + "brush'sed": [], + "solicitude": ["M"], + "pertinently": [], + "realerly": [], + "unabridged": ["M", "S"], + "workbench": ["M", "S"], + "appertains": [], + "pretense's": [], + "snitches": [], + "turbo's": [], + "meridian'ses": [], + "Underwood's": [], + "geometry": ["S", "M"], + "accustoming": [], + "demigod's": [], + "baccalaureates": [], + "wingnut's": [], + "foursome's": [], + "psychoses": [], + "insuring": [], + "constable": ["S", "M"], + "ducky": ["T", "R", "S", "M"], + "Slavs": [], + "presupposesing": [], + "evolved": [], + "contriveder": [], + "Quixotism's": [], + "bunching": [], + "sinning": [], + "socket's": [], + "senatorial": [], + "Marquita's": [], + "crabby": ["P", "R", "T"], + "Bukharin": ["M"], + "thieving's": [], + "vociferous": ["Y", "P"], + "Olaf": ["M"], + "message": ["M", "G", "D", "S"], + "mindsets": [], + "Canberra": ["M"], + "crush'sed": [], + "binge's": [], + "working": [], + "pretested": [], + "bandmaster's": [], + "mischievousliness": [], + "Coffey": ["M"], + "dispersing": [], + "scalloping": [], + "historicity": ["M"], + "piously": [], + "eyeballeds": [], + "FTC": [], + "Mennen": ["M"], + "legislative": ["Y"], + "heartens": [], + "precipitations": [], + "washerwoman": ["M"], + "bahts's": [], + "palette's": [], + "aught's": [], + "invalid": ["G", "M", "D", "Y", "S"], + "bluejackets's": [], + "deniability": [], + "reflecting": [], + "colonist's": [], + "Lynne's": [], + "defrauding": [], + "snowdrift's": [], + "Rodger": ["M", "S"], + "silences": [], + "Zoroaster's": [], + "entitleds": [], + "maniac'ses": [], + "litigatingen": [], + "headway": ["M"], + "pock": ["G", "M", "D", "S"], + "verdigrising's": [], + "leakiest": [], + "ailments": [], + "unceasingly": [], + "scrambling": [], + "boilerplate's": [], + "snowplow": ["S", "G", "M", "D"], + "Windows's": [], + "governable": ["U"], + "Carlton's": [], + "Reebok's": [], + "psychodramas": [], + "nudism": ["M"], + "obstreperously": [], + "Nita": ["M"], + "suborder's": [], + "dissembled": [], + "manageability": ["M"], + "mutual": ["Y"], + "motoring": [], + "hectometers": [], + "tentacleds": [], + "cummerbund": ["M", "S"], + "dioramas": [], + "heisting": [], + "rotatingen": [], + "trusteeships": [], + "audition": ["S", "M", "D", "G"], + "concoctsed": [], + "champagne's": [], + "sweateder": [], + "marinades": [], + "styled": [], + "eliminating": [], + "upsides's": [], + "inchworms": [], + "excerptings": [], + "indulgences": [], + "bartereder": [], + "chaplain's": [], + "pianos's": [], + "generalissimo": ["M", "S"], + "ambulating": [], + "consubstantiation": [], + "lacquer's": [], + "revolutionary": ["S", "M"], + "surrogates": [], + "PG": [], + "overemphasis's": [], + "uninhibited": ["Y"], + "Thanksgiving's": [], + "contiguity": ["M"], + "knocker": ["M"], + "orienteding": [], + "sendoff'ses": [], + "flatmates": [], + "bifurcated": [], + "rousting": [], + "Preston's": [], + "neoconservatives": [], + "conceitedly": [], + "permissible": [], + "vertebrate": ["I", "M", "S"], + "Karol's": [], + "tartaric": [], + "automatize": ["G", "D", "S"], + "paroxysms": [], + "boltholes": [], + "pest'ser": [], + "porterhouses's": [], + "chokecherries's": [], + "venal": ["Y"], + "thrift": ["S", "M"], + "termination": ["C", "S", "M"], + "hospitalizesing": [], + "mailers": [], + "reprieve's": [], + "unsoundness": [], + "appliance's": [], + "yodeler's": [], + "indictment's": [], + "nurseder": [], + "photo'sed": [], + "stronger": [], + "modicums's": [], + "etiologic": [], + "charmingly": [], + "cisterns": [], + "evolutionists's": [], + "unfairness": [], + "scrambler'ses": [], + "Barabbas": ["M"], + "millimeter's": [], + "incheds": [], + "bicep's": [], + "confideder": [], + "succeeds": [], + "racers": [], + "perusal's": [], + "surrenders": [], + "squalls": [], + "knifes's": [], + "honeycombing": [], + "windpipe's": [], + "Xhosa": ["M"], + "perjurer's": [], + "plutocracies's": [], + "orbitersing": [], + "Cowley": ["M"], + "follies": [], + "Bauer's": [], + "bandied": [], + "organizes": [], + "loftsing": [], + "constitute": ["A", "D", "S", "G", "N", "V"], + "perch": ["G", "M", "D", "S"], + "Hottentots": [], + "road's": [], + "cutoffs": [], + "vocational": ["Y"], + "tapir": ["M", "S"], + "lobotomize": ["D", "S", "G"], + "constricts": [], + "dimpling": [], + "pulling": [], + "shockers": [], + "gasbags": [], + "corridors's": [], + "jail's": [], + "tasted": ["U"], + "bestial": ["Y"], + "tailboard": ["S"], + "qualifieds": [], + "quaffing's": [], + "BYOB": [], + "murk": ["M", "S"], + "flavored": ["U"], + "outweighed": [], + "obscurely": [], + "peer": ["M", "D", "G"], + "tickle": ["D", "R", "S", "M", "Z", "G"], + "envisioned": [], + "Lilliputians": [], + "divot": ["S", "M"], + "Ginsberg": ["M"], + "wackos's": [], + "mo": ["C", "K", "H", "S"], + "adjective": ["M", "S"], + "stovepipe's": [], + "continental's": [], + "predetermination": ["M"], + "pole'ses": [], + "charades's": [], + "Amur": ["M"], + "cluttersing": [], + "deregeneration": [], + "strophe": ["S", "M"], + "replicatingen": [], + "squids": [], + "congruous": [], + "jigsaws": [], + "lymph's": [], + "madrasa's": [], + "bulge's": [], + "Alcatraz": ["M"], + "assailing": [], + "repudiation": ["M"], + "landlord's": [], + "Alberta": ["M"], + "foolhardinesser": [], + "intellectualizeds": [], + "peered": [], + "omnivorous": ["P", "Y"], + "scullers": [], + "messiness": ["M"], + "relegate": ["G", "N", "D", "S"], + "chinned": [], + "recourse": ["M"], + "lotions": [], + "Iran's": [], + "army": ["S", "M"], + "jewelsers": [], + "simplifieds": [], + "bu": [], + "indefensible": [], + "guile": ["M"], + "Darfur's": [], + "bates": [], + "astonisheds": [], + "shamelessly": [], + "acrobatically": [], + "Chevy": ["M"], + "milquetoasts's": [], + "serially": [], + "Sensurround": ["M"], + "misconception": ["S", "M"], + "stealthiness's": [], + "Dunbar's": [], + "truckleds": [], + "pelican's": [], + "snicker": ["M", "D", "G"], + "bookstores": [], + "plotter's": [], + "biodegradingable": [], + "overwork'sed": [], + "ridges": [], + "psyche": ["M"], + "explicitnessly": [], + "polleden": [], + "slope": ["S", "M"], + "essayeder": [], + "bikini": ["M", "S"], + "boozinged": [], + "Damocles": ["M"], + "highboy's": [], + "quests": [], + "raincoat": ["S", "M"], + "effacement": ["M"], + "nastier": [], + "Budapest's": [], + "staffer'ses": [], + "alkalinity": ["M"], + "Jaycee's": [], + "collocations": [], + "apprentices's": [], + "condoneds": [], + "Bloomingdale": ["M"], + "acidulous": [], + "fastest": [], + "contingencies's": [], + "attachable's": [], + "floundering": [], + "euphorically": [], + "bar": ["E", "C", "U", "T", "S"], + "captioned": [], + "fireguards": [], + "worm": ["M", "D", "S", "G"], + "blender's": [], + "humaneness's": [], + "wantonly": [], + "orator": ["S", "M"], + "redden": ["S", "D", "G"], + "Ice": [], + "mantes": [], + "zingings": [], + "liniment": ["S", "M"], + "Kuznetsk": ["M"], + "affiliating": [], + "July": ["S", "M"], + "gluttons": [], + "paterfamilias": ["M", "S"], + "wheelhouse's": [], + "CNS": ["M"], + "rowersing": [], + "hurtful": ["Y", "P"], + "rows": [], + "narrated": [], + "Freemasonries": [], + "contradistinctions": [], + "narcotize": ["G", "D", "S"], + "maniacally": [], + "assiduity": ["M"], + "Namibian": ["M", "S"], + "seconder": ["M"], + "besom's": [], + "weathered": [], + "stoppage's": [], + "ingress": ["M", "S"], + "voyagers": [], + "consignment": ["M", "S"], + "volatilize": ["D", "S", "G"], + "zucchini's": [], + "litheness": ["M"], + "singersing": [], + "complicate": ["G", "D", "S"], + "tiramisu": ["M", "S"], + "engram's": [], + "cumbersomeness's": [], + "Condorcet's": [], + "Edsel's": [], + "Bulganin's": [], + "tabletop": ["M", "S"], + "sojourning's": [], + "slum": ["M", "S"], + "earl": ["M", "S"], + "healthfulness": ["M"], + "rink": ["M", "S"], + "grand": ["S", "M", "R", "Y", "P", "T"], + "kamikaze": ["M", "S"], + "trowed": [], + "instincts": [], + "phagocytes's": [], + "passeder": [], + "golliwog": ["S"], + "tending": [], + "expressionlessly": [], + "fireworks's": [], + "tasers": [], + "demagogy's": [], + "overvalued": [], + "sedimentation": ["M"], + "oyster's": [], + "distillation": ["M"], + "blockhouse": ["M", "S"], + "tabbouleh": ["M"], + "Chuck": ["M"], + "coping's": [], + "balsam's": [], + "bouffant": ["S", "M"], + "attainability": ["M"], + "shipmates": [], + "approachingable": [], + "summaries": [], + "enclave": ["M", "S"], + "misplacement": ["M"], + "groucheds": [], + "catchphrase's": [], + "massacre'sing": [], + "Sonny": ["M"], + "menstruates": [], + "sirens": [], + "tougheden": [], + "hooter": ["M"], + "polka": ["M", "D", "S", "G"], + "Everest": ["M"], + "cosmogonist's": [], + "troubadour": ["M", "S"], + "brooklets": [], + "posy": ["S", "M"], + "Charon": ["M"], + "Nan": ["M"], + "mobster's": [], + "locker": ["M"], + "assessment's": [], + "vultures": [], + "scalp": ["M", "D", "R", "S", "Z", "G"], + "screwworms's": [], + "guardian's": [], + "system": ["S", "M"], + "beggarlying": [], + "sauntering": [], + "Fridays's": [], + "jabbererers": [], + "Dewayne's": [], + "airbag's": [], + "journal": ["M", "S"], + "Wed": ["M"], + "gimping": [], + "batching": [], + "thunderheads": [], + "integument's": [], + "counteroffers's": [], + "bluegill": ["M", "S"], + "diagnosed": [], + "mgr": [], + "presbyters": [], + "blameworthy": ["P"], + "angereds": [], + "overstimulatesing": [], + "barmaid's": [], + "pauperizesing": [], + "Balder": ["M"], + "reprobate": ["M", "S"], + "casaba": ["M", "S"], + "belligerence's": [], + "refulgence's": [], + "catechizes": [], + "thicket's": [], + "parries": [], + "corollaries's": [], + "timepiece's": [], + "nibbles": [], + "second'sed": [], + "Nembutal": ["M"], + "Qiqihar's": [], + "incognito'ses": [], + "profusely": [], + "pettiest": [], + "pickling": [], + "mainsail": ["M", "S"], + "Achebe's": [], + "Garrett's": [], + "muff'sed": [], + "eateries's": [], + "wop": ["S", "!"], + "Chardonnay": ["M"], + "marketersing": [], + "copperheads": [], + "Maltese's": [], + "vivace": [], + "grist'sly": [], + "garrote'sers": [], + "rarenessed": [], + "baseball": ["S", "M"], + "listingsens": [], + "Lindsay": ["M"], + "Cunard": ["M"], + "aniseed's": [], + "accelerate": ["G", "N", "X", "D", "S"], + "fibrillation's": [], + "Patagonian": ["M"], + "funicular's": [], + "stoker's": [], + "submission'ses": [], + "memorializeds": [], + "behavinged": [], + "tempted": [], + "skull": ["S", "M"], + "derelegation's": [], + "likewise": [], + "enrapturesing": [], + "cinematographer'ses": [], + "perfidiously": [], + "charge's": [], + "guideder": [], + "nervelessness's": [], + "flirtatious": ["Y", "P"], + "lifeboat": ["M", "S"], + "deposit's": [], + "Whitsunday'ses": [], + "guile's": [], + "rapidness's": [], + "danseuses": [], + "backstroke": ["M", "G", "D", "S"], + "Frostbelt's": [], + "amazing": ["Y"], + "waists's": [], + "Irishwoman": ["M"], + "troop": ["S", "Z", "G", "M", "D", "R"], + "typecasts": [], + "currants": [], + "col": ["S"], + "scimitar's": [], + "Justin's": [], + "evillest": [], + "uprightnesses": [], + "stripes": [], + "idealizeds": [], + "germ's": [], + "clapperboard": ["S"], + "impeller": ["M", "S"], + "howlsers": [], + "sharped": [], + "drafting": ["M"], + "hairdo": ["M", "S"], + "infarct's": [], + "imperiling": [], + "Saab's": [], + "dampeninged": [], + "dubious": ["Y", "P"], + "Madagascans": [], + "shouting": [], + "jetliners": [], + "aspen's": [], + "animations": [], + "helpline": ["S", "M"], + "woad": ["M"], + "refinement": ["S", "M"], + "crawl": ["S", "M", "D", "R", "Z", "G"], + "sunrise": ["S", "M"], + "Christianity's": [], + "subtropics's": [], + "underappreciated": [], + "misrule'sing": [], + "outbalanced": [], + "blarneys's": [], + "pauper's": [], + "infrasonic": [], + "ulcerous": [], + "liquid's": [], + "rums's": [], + "chancellors": [], + "lodestar's": [], + "manual's": [], + "blotter'ses": [], + "halfpenny": ["S", "M"], + "providently": [], + "localization's": [], + "hiccuped": [], + "evoked": [], + "surtitles": [], + "derivable": [], + "backfires": [], + "broadcasters": [], + "modificationsers": [], + "Seattle's": [], + "cockneys": [], + "rocketry": ["M"], + "snip's": [], + "frosh": ["M"], + "decelerates": [], + "disguisinged": [], + "deodorizersing": [], + "Wroclaw's": [], + "duplicity's": [], + "Belfast": ["M"], + "detected": ["U"], + "appreciator'ses": [], + "deconnotation": [], + "cashiering": [], + "bedroll": ["S", "M"], + "Cray's": [], + "selflessly": [], + "mothballeds": [], + "constraints's": [], + "tenderizer's": [], + "preamble's": [], + "homeworking": [], + "internists": [], + "upholds": [], + "girlishly": [], + "Shorthorn's": [], + "peaces": [], + "diffusingen": [], + "scarlatina": ["M"], + "router": ["M"], + "betwixt": [], + "Milton's": [], + "preferable": [], + "pretendings": [], + "screwy": ["P", "R", "T"], + "weal": ["M", "H", "S"], + "foolhardier": [], + "riper": [], + "earning": [], + "infrared's": [], + "snowdrift": ["S", "M"], + "leukemia": ["M"], + "accelerated": [], + "onerousness's": [], + "ragamuffins": [], + "conjunctiva": ["S", "M"], + "trisect": ["S", "D", "G"], + "graybeard": ["S", "M"], + "sameness's": [], + "promontories's": [], + "distortion's": [], + "orphan's": [], + "brawl": ["S", "D", "R", "Z", "G", "M"], + "narcissist'ses": [], + "stupefying": [], + "cossetsing": [], + "quartz": ["M"], + "underwriters": [], + "clunkiest": [], + "stuccoing": [], + "soundalike": ["S"], + "blusher's": [], + "resolve": ["R", "B", "M"], + "clavicle": ["M", "S"], + "Kane": ["M"], + "arc's": [], + "poetical": ["Y"], + "biopsies": [], + "doubters": [], + "Moscow's": [], + "anticoagulant": ["M", "S"], + "joyously": [], + "slippage": ["M", "S"], + "balloonist's": [], + "figureheads": [], + "welt's": [], + "pettifogger": ["S", "M"], + "prompted": ["U"], + "plagues's": [], + "visualize": ["D", "R", "S", "Z", "G"], + "railroader": ["M"], + "chamber'sed": [], + "calibrating": [], + "bravery's": [], + "animatesing": [], + "blini": ["M", "S"], + "planar": [], + "combative": [], + "Sana's": [], + "Muller's": [], + "Rowena": ["M"], + "Honiara's": [], + "affordable": [], + "misconstrued": [], + "hijackeder": [], + "oriel'ses": [], + "wrappings": [], + "shrimps": [], + "riposted": [], + "yipped": [], + "Pitt's": [], + "lumpish": [], + "grippe's": [], + "enmity's": [], + "songbook": ["S", "M"], + "brag": ["S", "M"], + "Mekong": ["M"], + "Aramco": ["M"], + "sycamore": ["M", "S"], + "Wilhelm": ["M"], + "brawniness's": [], + "doper's": [], + "populist": ["M", "S"], + "presbyopia's": [], + "starchiness's": [], + "babushkas": [], + "scat'ses": [], + "helperers": [], + "dirtiers": [], + "reverence'sing": [], + "mucksing": [], + "ungulates": [], + "softener's": [], + "struggles": [], + "Pansy's": [], + "slogans": [], + "lukewarmly": [], + "resplendent": ["Y"], + "ethics": ["M"], + "prepubescence": ["M"], + "fleecinged": [], + "campanologist": ["M", "S"], + "personalty": ["M"], + "given": ["S", "M"], + "politically": [], + "Bright": ["M"], + "biophysics's": [], + "chirruped": [], + "grog's": [], + "Ucayali's": [], + "willingness's": [], + "counterintelligence": ["M"], + "puff's": [], + "outputting": [], + "juntas's": [], + "deadbolts": [], + "Coffey's": [], + "adopted": [], + "severing": [], + "cocci": ["S"], + "frothier": [], + "savior's": [], + "overindulginged": [], + "strolled": [], + "gantry": ["S", "M"], + "abridgment": ["M", "S"], + "wildflower's": [], + "friedcake'ses": [], + "textureds": [], + "newsgirls": [], + "raillery": ["S", "M"], + "investor": ["S", "M"], + "desolateness": ["M"], + "parry's": [], + "Blatz": ["M"], + "roll": ["M", "D", "R", "Z", "G", "J", "S"], + "harmonium'ses": [], + "ruefulness's": [], + "transits": [], + "slight's": [], + "jackboots's": [], + "vocalization": ["M", "S"], + "Avicenna": ["M"], + "swashing's": [], + "lurcheds": [], + "rediscovery": [], + "engagement'ses": [], + "footbridges's": [], + "quoins's": [], + "walks": [], + "proselytized": [], + "federalism": ["M"], + "short'sed": [], + "wicked": ["T", "P", "R", "Y"], + "batiste": ["M"], + "comedy": ["S", "M"], + "authentications": [], + "prefecture": ["M", "S"], + "grazersing": [], + "dick": ["M", "R", "X", "Z", "S"], + "diapason": ["S", "M"], + "linguists's": [], + "moccasin": ["S", "M"], + "sculled": [], + "tiltings": [], + "Aurelia's": [], + "umbra's": [], + "convict'sed": [], + "inuring": [], + "engineer's": [], + "burghs": [], + "portmanteau'ses": [], + "Fukuoka's": [], + "tangible'ses": [], + "rinse's": [], + "pipsqueak's": [], + "sensationalists": [], + "melt": ["A", "D", "S", "G"], + "tersely": [], + "scrawls": [], + "purgers": [], + "darning": [], + "BO": [], + "nuzzles": [], + "vicennial": [], + "pushierness": [], + "dirtily": [], + "witted": [], + "babbleder": [], + "humanizesing": [], + "orthodontists's": [], + "tirelessness's": [], + "Snead": ["M"], + "beatitudes's": [], + "well'sed": [], + "hardhat'ses": [], + "ministrants": [], + "prosecutesens": [], + "mittsens": [], + "Tanzanians": [], + "weltering": [], + "Choctaws": [], + "radiotelegraph": ["M"], + "private": ["X", "M", "Y", "T", "N", "R", "S"], + "Miles": ["M"], + "prefix'sed": [], + "whimpered": [], + "Pamela": ["M"], + "porter": ["A", "S", "M"], + "theoretical": ["Y"], + "flowerless": [], + "roundish": [], + "piteously": [], + "replenisheds": [], + "Stallone's": [], + "bpm": [], + "anguisheds": [], + "Oberlin": ["M"], + "sharinged": [], + "henna": ["S", "M", "D", "G"], + "healthfulness's": [], + "Beatlemania": ["M"], + "optimums": [], + "beseechers": [], + "downerers": [], + "sweetest": [], + "Manasseh": ["M"], + "glutton'ses": [], + "whisper'sed": [], + "prattlersing": [], + "Zachariah's": [], + "glided": [], + "consanguineous": [], + "purism's": [], + "patrimonies": [], + "scram": ["S"], + "bludgeoning": [], + "salamander's": [], + "guessing": [], + "beguilingment": [], + "mumbles": [], + "gridirons": [], + "sidearm's": [], + "valved": [], + "summonsing": [], + "Saturnalia": ["M"], + "optimizers": [], + "tonsorial": [], + "flannel'sed": [], + "tinglingings": [], + "escort": ["S", "M", "D", "G"], + "coolerly": [], + "bullishliness": [], + "affiliate's": [], + "jest'sed": [], + "enormousness's": [], + "spot": ["C", "M", "S"], + "ladles": [], + "wrestleder": [], + "sciatica": ["M"], + "decoratively": [], + "imperfection'ses": [], + "misused": [], + "isotherms's": [], + "arousal": ["M"], + "neaten": ["G", "D"], + "identifier": [], + "deteriorateds": [], + "Otto's": [], + "AI's": [], + "heinousness's": [], + "Greens": [], + "imbecilities's": [], + "effortlessliness": [], + "Mobile's": [], + "rise": ["J", "M", "Z", "G", "R", "S"], + "leap's": [], + "lobotomy": ["S", "M"], + "sweepers": [], + "blood'sed": [], + "l": ["S", "D", "X", "T", "G", "J"], + "melodrama": ["M", "S"], + "Guido": [], + "surprise": ["D", "S", "M", "G", "J"], + "carpersing": [], + "lychgate": ["S"], + "mumbler's": [], + "pomaded": [], + "deputizesing": [], + "slackening": [], + "meditations": [], + "cols": [], + "turnabout": ["S", "M"], + "sunlit": [], + "unctuousness's": [], + "litanies": [], + "tared": [], + "troops": [], + "miasma's": [], + "insularity's": [], + "Kristi": ["M"], + "determined": ["U"], + "uninstalling": [], + "annalists's": [], + "Tulsa's": [], + "broadsheets": [], + "wingdings": [], + "letups": [], + "struts's": [], + "exhilarated": [], + "thrill": ["S", "M", "D", "R", "Z", "G"], + "reaffirm": [], + "corrosives's": [], + "inhalation": ["M", "S"], + "sects": [], + "raccoon": ["M"], + "resiliently": [], + "MIDI": ["M"], + "Almaty": ["M"], + "bruin": ["S", "M"], + "pejorative": ["S", "M", "Y"], + "coheirs's": [], + "lop": ["S"], + "saddened": [], + "uglier": [], + "indexing's": [], + "promulgation": ["M"], + "godhood's": [], + "checkroom's": [], + "Altair's": [], + "multitaskings": [], + "midi": ["M", "S"], + "handcrafting": [], + "Arizonians": [], + "bleacheder": [], + "slagging": [], + "Frisian's": [], + "demoralization": [], + "cobalt": ["M"], + "strung": ["U", "A"], + "Cincinnati's": [], + "Vaseline": ["S", "M"], + "platelet": ["S", "M"], + "enraging": [], + "straddle'sers": [], + "believably": ["U"], + "luau's": [], + "handspring's": [], + "grinds": [], + "internist'ses": [], + "implement's": [], + "ignominious": ["Y"], + "constructions": [], + "toy's": [], + "tussock": ["M", "S"], + "palindromes": [], + "rebel": ["M", "S"], + "Microsoft": ["M"], + "chromed": [], + "prognosticators": [], + "execrate": ["D", "S", "G", "N"], + "portrayal": ["M", "S"], + "imprisonsed": [], + "UT": ["M"], + "underflow": [], + "tonsillectomy": ["S", "M"], + "volunteerism's": [], + "Freemasonries's": [], + "mistreated": [], + "Gorky's": [], + "Anaxagoras's": [], + "goosing": [], + "ululation": ["M"], + "swipe": ["D", "S", "M", "G"], + "Polo": ["M"], + "pertainings": [], + "setups": [], + "relish's": [], + "underneath": ["M"], + "sledgehammered": [], + "Johnny": ["M"], + "machiningable": [], + "Arieses": [], + "flambe": ["M", "S"], + "overslept": [], + "pendulum's": [], + "Brain": ["M"], + "maceratingen": [], + "Copeland": ["M"], + "dikinged": [], + "photojournalist's": [], + "endorphins": [], + "restrictiveness": ["M"], + "hoosegow": ["S", "M"], + "vetch's": [], + "polarities": [], + "complicity's": [], + "lurkersing": [], + "Riyadh": ["M"], + "scion's": [], + "texting": [], + "thesaurus": ["M", "S"], + "lug's": [], + "Mongol's": [], + "Nome's": [], + "subscription": ["M", "S"], + "carpentereding": [], + "Roderick's": [], + "Hecuba": ["M"], + "monochrome's": [], + "editorship's": [], + "mastication": ["M"], + "niggling": [], + "Robby's": [], + "creditor's": [], + "sleepwear": ["M"], + "Maiman": ["M"], + "pressmen": [], + "gustatory": [], + "zestfulness": ["M"], + "coolest": [], + "finalizesing": [], + "masterworks": [], + "brickies": [], + "Zosma's": [], + "instantly": [], + "bakersing": [], + "grotto": ["M"], + "remoter": [], + "Leslie's": [], + "lodestone": ["M", "S"], + "pineapple's": [], + "sponged": [], + "buttoning": [], + "meds": [], + "Unitarianism's": [], + "Delmarva's": [], + "Cory": ["M"], + "hydrosphere's": [], + "baldric's": [], + "bulleding": [], + "vendettas's": [], + "unicycles": [], + "foulmouthed": [], + "varsities's": [], + "enc": [], + "obfuscateds": [], + "Bridgetown": ["M"], + "tremor": ["M", "S"], + "sadism's": [], + "rate": ["J", "X", "M", "Z", "G", "N", "D", "R", "S"], + "terrycloth's": [], + "unvoiced": [], + "Precambrian's": [], + "Iago": ["M"], + "redcaps": [], + "sputnik's": [], + "eagerness's": [], + "marshmallows's": [], + "dinky": ["R", "S", "M", "T"], + "TELNET": ["S"], + "Villa's": [], + "twerp's": [], + "garnishees": [], + "aggravate": ["G", "N", "X", "D", "S"], + "heuristic's": [], + "topmast's": [], + "chorallies": [], + "mild's": [], + "covenanting": [], + "saloon": ["S", "M"], + "backstage": ["M"], + "Vermont": ["Z", "M", "R"], + "excursively": [], + "Julies": [], + "pinholes": [], + "rankles": [], + "commissariats": [], + "grandstandsing": [], + "lottery's": [], + "ballasted": [], + "assayer": ["M"], + "idealists's": [], + "shies's": [], + "indemnifying": [], + "roasting's": [], + "amaretto": ["M"], + "designates": [], + "archness": ["M"], + "highlanderers": [], + "tumblers": [], + "cents": [], + "baronage": ["M", "S"], + "weighed": [], + "sauciness's": [], + "Moon's": [], + "scornersing": [], + "sendoff's": [], + "aide": ["S", "M"], + "postdoc": ["M", "S"], + "disreembark": [], + "dune": ["M", "S"], + "accuser": ["M"], + "growled": [], + "Freudian": ["M"], + "leapeder": [], + "gymslips": [], + "alluding": [], + "enclosinged": [], + "strapping": ["M"], + "gross'sed": [], + "oxtails": [], + "connecting": [], + "foe": ["S", "M"], + "glitters": [], + "ton": ["S", "M"], + "workloads": [], + "woolliest": [], + "Venetians": [], + "therms": [], + "Swahilis's": [], + "recommitted": [], + "milquetoasts": [], + "pathos": ["M"], + "adjourns": [], + "outsmarts": [], + "allegros": [], + "zippier": [], + "spiriting": [], + "twenty's": [], + "mismatcheds": [], + "graspabling": [], + "hullers": [], + "Ladonna's": [], + "improbabilities's": [], + "pomander's": [], + "pagoda'ses": [], + "shovelful": ["S", "M"], + "Tonga's": [], + "tub": ["S", "Z", "G", "M", "D", "R"], + "firebreaks's": [], + "Lieberman": ["M"], + "erred": [], + "substantiating": [], + "objectively": [], + "name": ["A", "G", "D", "S"], + "superwomen": [], + "comfort's": [], + "Karloff's": [], + "tricolors": [], + "misdiagnosed": [], + "occupant": ["S", "M"], + "divide's": [], + "lethargic": [], + "birdhouse'ses": [], + "Alpo's": [], + "Snoopy": ["M"], + "revolutionary's": [], + "caveats": [], + "emendation's": [], + "drugs": [], + "electroencephalograms": [], + "Edmond's": [], + "audiovisuals's": [], + "paradigm": ["S", "M"], + "nasalize": ["D", "S", "G"], + "imaged": [], + "Wellington's": [], + "Cambridge's": [], + "antagonized": [], + "enriches": [], + "vegetarianism": ["M"], + "dupersing": [], + "gaberdines": [], + "weavers": [], + "led": [], + "Loafer's": [], + "Shawna": ["M"], + "Esmeralda's": [], + "ERA": [], + "fundraiser'ses": [], + "anthem's": [], + "spacewalking": [], + "ouster": ["M"], + "fields": [], + "daguerreotypes's": [], + "screwing": [], + "Australians's": [], + "Moloch": ["M"], + "colossus": ["M"], + "Mazarin's": [], + "fatefulness": ["M"], + "Muppet's": [], + "NFL": ["M"], + "gaiety's": [], + "apace": [], + "softness": ["M"], + "Cronus": ["M"], + "polysyllable's": [], + "Nigerian": ["M", "S"], + "caterwauling": [], + "opera'ses": [], + "medially": [], + "veranda": ["S", "M"], + "forgiversing": [], + "excursion'ses": [], + "impulse's": [], + "exemplify": ["G", "D", "S", "X", "N"], + "remotely": [], + "Ottawas": [], + "prearrangementing": [], + "straddler's": [], + "roadhouses's": [], + "pancreatitis": [], + "zeppelin's": [], + "craziness's": [], + "Alsop's": [], + "dockeder": [], + "barbarized": [], + "atty": [], + "dray's": [], + "okapi": ["S", "M"], + "legroom": ["S", "M"], + "helpfulness's": [], + "shaming": [], + "sago": ["M"], + "Szymborska's": [], + "bole's": [], + "pithiness": ["M"], + "impulsingen": [], + "martinis's": [], + "obviously": [], + "organizer": ["M", "S"], + "clickersing": [], + "fathoms's": [], + "Multan": ["M"], + "hopefuls's": [], + "precondition": ["M", "D", "G", "S"], + "flamboyancy": ["M"], + "Winfred": ["M"], + "candidatures's": [], + "optimist's": [], + "ancestries's": [], + "diver's": [], + "LDC": [], + "parachute": ["D", "S", "M", "G"], + "limpet'ses": [], + "Denver's": [], + "calligraphy's": [], + "orienteering": [], + "Mistassini": ["M"], + "equator's": [], + "freethinker's": [], + "reject": ["G", "S", "M", "D"], + "palpates": [], + "wintertime": ["M"], + "Akkad": ["M"], + "jinrikisha": ["S", "M"], + "terminations": [], + "Bolshevism": ["M"], + "descale": [], + "housecleaneds": [], + "earthbound": [], + "vignettist": ["M", "S"], + "tortillas": [], + "elliptic": [], + "barre's": [], + "inguinal": [], + "greening": [], + "large": ["R", "S", "P", "M", "Y", "T"], + "Roberson's": [], + "litigates": [], + "occidentals": [], + "flagellum": ["M"], + "Kip": ["M"], + "keelhauled": [], + "apologizes": [], + "commutable": [], + "FBI": ["M"], + "fixture's": [], + "roisterersing": [], + "Spaniards's": [], + "Boer": ["S", "M"], + "gleaner": ["M"], + "migrate": ["A", "G", "D", "S"], + "phlegm": ["M"], + "Lancashire": ["M"], + "weightiness": ["M"], + "floridness's": [], + "scrag'ses": [], + "possum's": [], + "oncologist": ["S", "M"], + "bloodbaths": [], + "preconditioned": [], + "washout's": [], + "relent": ["S", "G", "D"], + "disincentive": [], + "rowel's": [], + "outlastsing": [], + "gridlocks": [], + "laud": ["M", "D", "S", "G", "B"], + "fjord's": [], + "nihilist's": [], + "liaisons": [], + "Hispanic's": [], + "expression": ["S", "M"], + "Gargantua's": [], + "futurities's": [], + "renewal'ses": [], + "PET's": [], + "moths": [], + "dimmers's": [], + "grandpa's": [], + "song": ["M", "S"], + "optic's": [], + "sandpiper's": [], + "assertiveliness": [], + "rubles's": [], + "burrito'ses": [], + "ambitiously": [], + "myrmidon'ses": [], + "greedily": [], + "brilliantlies": [], + "contemplatesing": [], + "corrective": ["S", "M"], + "attentions": [], + "grille'ses": [], + "octet's": [], + "steppe's": [], + "irrelevantly": [], + "anesthesiologists": [], + "knelling's": [], + "rehabilitation's": [], + "convoked": [], + "probationary": [], + "treadleds": [], + "acidity's": [], + "cappuccino": ["S", "M"], + "officiously": [], + "flashiness's": [], + "stoicism": ["M"], + "Ismael": ["M"], + "deice": [], + "hungriest": [], + "nobbleds": [], + "yachtsmen": [], + "puck'ser": [], + "derecommission": [], + "dixieland's": [], + "muskrat'ses": [], + "preoccupied": [], + "defalcatingen": [], + "rollicksed": [], + "underfeedings": [], + "blacklist's": [], + "spacewalk's": [], + "attitudinal": [], + "gawky": ["R", "P", "T"], + "pailful": ["S", "M"], + "stopple's": [], + "ssh": [], + "meniscus's": [], + "Wesleyan": ["M"], + "intrinsically": [], + "ransomed": [], + "sedatest": [], + "Balthazar": ["M"], + "uncharted": [], + "incompetency": [], + "nonspecialist's": [], + "slogans's": [], + "oxblood": ["M"], + "fortunate": ["U", "Y"], + "pigeonholes": [], + "Closure's": [], + "rampaging": [], + "copywriter's": [], + "whoppers's": [], + "pentacle'ses": [], + "dyke'ses": [], + "punctilio's": [], + "frag": ["S"], + "introducing": [], + "vectored": [], + "gazumpeding": [], + "cousins": [], + "gusset'ses": [], + "credits": [], + "cookers's": [], + "suspense's": [], + "Riggs's": [], + "equilaterals": [], + "bayberries's": [], + "helping": ["M"], + "riverside'ses": [], + "clothing's": [], + "diction": ["M"], + "yearn": ["G", "S", "J", "D"], + "permeability": ["M"], + "illusive": [], + "flinging's": [], + "racialist": ["M", "S"], + "chessboard's": [], + "poem's": [], + "telegraph'sed": [], + "orangeries": [], + "mosey": ["S", "G", "D"], + "Mohamed": ["M"], + "biaseds": [], + "determine": ["A", "G", "D", "S"], + "nave'ses": [], + "Thorazine's": [], + "whoopees": [], + "hoarserness": [], + "overrates": [], + "flag's": [], + "leafstalk'ses": [], + "horsewhip's": [], + "burnishing": [], + "CPR's": [], + "strikes": [], + "streaming": [], + "blisteringly": [], + "placements's": [], + "scrutineer": ["S"], + "scapulars": [], + "hecklersing": [], + "peke": ["M", "S"], + "arcade'ses": [], + "quarrying": [], + "sunburn": ["S", "G", "M", "D"], + "waders's": [], + "disembarkation": [], + "liking's": [], + "rigmaroles": [], + "Pantheon's": [], + "fleshly": ["T", "R"], + "comers": [], + "redecoration": [], + "Asgard": ["M"], + "Maricela's": [], + "deluging": [], + "salts": [], + "fairerly": [], + "radiating": [], + "Norwegians's": [], + "defacers's": [], + "profanation": ["M", "S"], + "previews": [], + "adventurousness": ["M"], + "eulogizersing": [], + "carping": [], + "polo's": [], + "Jarrett": ["M"], + "promises": [], + "droning": [], + "henpeckings": [], + "lubber's": [], + "Chernenko": ["M"], + "sidelined": [], + "excruciating": ["Y"], + "acquisition's": [], + "gamin": ["S", "M"], + "shutout's": [], + "sickliest": [], + "Sakhalin's": [], + "doe": ["S", "M"], + "colostrum": ["M"], + "Morison": ["M"], + "spacewomen": [], + "ratio's": [], + "brewpub": ["S", "M"], + "primogenitors": [], + "conclude": ["D", "S", "G"], + "canton'sment": [], + "eyewitness'ses": [], + "ferry's": [], + "roaster": ["M"], + "Cristina's": [], + "cretins": [], + "Irisher": [], + "memorizing": [], + "boinkeds": [], + "importantly": [], + "flintlock's": [], + "Lachesis's": [], + "dryads": [], + "Orion's": [], + "oviduct's": [], + "Mbini's": [], + "shouter's": [], + "Mirach": ["M"], + "restaurant": ["S", "M"], + "palmist's": [], + "commands's": [], + "foot's": [], + "obsessiveness": ["M"], + "Transcaucasia": ["M"], + "MSG's": [], + "dynasties": [], + "Elnora": ["M"], + "squelching": [], + "trick": ["G", "S", "M", "D"], + "obtainings": [], + "pelt's": [], + "gelled": [], + "jerkiness's": [], + "bluing's": [], + "appendixes": [], + "hothouse": ["S", "M"], + "bullheadedness's": [], + "Martinez": ["M"], + "pinto'ses": [], + "Netzahualcoyotl": ["M"], + "decider": [], + "throe's": [], + "disinc": [], + "Jezebel's": [], + "songsters": [], + "biodegradability's": [], + "Douala": ["M"], + "unchaster": [], + "Flynn": ["M"], + "Junker": ["S", "M"], + "oddity's": [], + "executor'ses": [], + "snuff's": [], + "spillage'ses": [], + "assemblymen": [], + "succinctness": ["M"], + "phaeton'ses": [], + "craggy": ["R", "P", "T"], + "picketing": [], + "fauvists's": [], + "grudge'sing": [], + "pantsuits": [], + "caudally": [], + "enameled": [], + "gouache": ["S"], + "grosbeak's": [], + "feathered": [], + "exultation": ["M"], + "province": ["M", "S"], + "schematizes": [], + "philology": ["M"], + "necklaced": [], + "figment": ["M", "S"], + "tinny": ["P", "R", "T"], + "shells": [], + "advisement": ["M"], + "Stygian": ["M"], + "ignorant": ["Y"], + "taintsing": [], + "ethologists": [], + "Arturo": ["M"], + "Lidia's": [], + "leukemic's": [], + "brains": [], + "evocative": ["Y"], + "gripes's": [], + "series's": [], + "insolent": ["Y"], + "Isherwood's": [], + "clustering": [], + "afterimage'ses": [], + "vocable'ses": [], + "noisome": [], + "motherly": [], + "hatters's": [], + "cloisters": [], + "epicures": [], + "crayoning": [], + "hobnob": ["S"], + "zeitgeist's": [], + "Hague's": [], + "roareder": [], + "translated": ["U"], + "debarment's": [], + "upgrading": [], + "pauperizeds": [], + "velars's": [], + "procrastinatesing": [], + "sixtieth's": [], + "windowsills": [], + "Eumenides's": [], + "creep's": [], + "Lobachevsky": ["M"], + "hydrocarbon": ["M", "S"], + "flights": [], + "varsity's": [], + "sharecropper's": [], + "roundhouse": ["S", "M"], + "enfeeblinged": [], + "magnificence's": [], + "anyways": [], + "insight'ses": [], + "bluffingness": [], + "Burbank's": [], + "parricide'ses": [], + "Heyerdahl's": [], + "PVC": ["M"], + "compatriot's": [], + "slapped": [], + "solitariness": ["M"], + "enchanteding": [], + "concussion": ["S", "M"], + "carpers": [], + "shard": ["M", "S"], + "cadged": [], + "Nisan": ["M"], + "solicitation": ["S", "M"], + "blockers": [], + "kissersing": [], + "classical's": [], + "dispelling": [], + "lipstick's": [], + "incarnating": [], + "gossamer's": [], + "Ultrasuede's": [], + "savanna": ["M", "S"], + "guesses": [], + "palms": [], + "knitter": ["S", "M"], + "carts": [], + "Mongols": [], + "ambassador's": [], + "Zambian": ["S", "M"], + "overarmings": [], + "soundbite": ["S"], + "cataloging": [], + "lipreading's": [], + "enfilade'sing": [], + "mallards's": [], + "whoopers": [], + "puzzlersing": [], + "suspended": [], + "Beaumont": ["M"], + "carpel's": [], + "darners": [], + "classic": ["M", "S"], + "chairperson's": [], + "unrefold": [], + "dispersingen": [], + "confiscatingen": [], + "toddlers": [], + "Kronecker": ["M"], + "enlightening": [], + "oratorical": ["Y"], + "submissively": [], + "sepia's": [], + "cabaret": ["S", "M"], + "payers's": [], + "ditch'sed": [], + "magnetically": [], + "candidacies's": [], + "vamoosed": [], + "stiles": [], + "coeducation's": [], + "teasel's": [], + "vegetation": ["M"], + "promethium": ["M"], + "ken": ["S", "M"], + "twistiest": [], + "tequila": ["S", "M"], + "Sterling's": [], + "underproduction": ["M"], + "artiness's": [], + "dungaree": ["M", "S"], + "discount": [], + "Orinoco": ["M"], + "insipidity": ["M"], + "amazon's": [], + "veterans": [], + "fedoras": [], + "cottager": ["M"], + "courtlinesser": [], + "oiliest": [], + "spookier": [], + "moonstones": [], + "scrimmage's": [], + "Munich": ["M"], + "imageds": [], + "simultaneously": [], + "rustic's": [], + "Samuel's": [], + "fraternity's": [], + "Sigmund's": [], + "fully": [], + "sawfly": ["S", "M"], + "interbreeding": [], + "exudes": [], + "partnership's": [], + "neutralization": ["M"], + "busied": [], + "cenobite's": [], + "sorceresses": [], + "radioman's": [], + "Boole": ["M"], + "countrywoman": ["M"], + "Vernon's": [], + "Colombian'ses": [], + "damping": [], + "irresolute": ["P", "Y", "N"], + "impressesing": [], + "Clorox's": [], + "monopoly": ["S", "M"], + "assertiveness's": [], + "apoplexies": [], + "environment's": [], + "morrow": ["M", "S"], + "Okhotsk": ["M"], + "behaviorist'ses": [], + "publisher'ses": [], + "brandersing": [], + "Ibo's": [], + "firearm's": [], + "embroidery": ["S", "M"], + "Pollard": ["M"], + "Warsaw": ["M"], + "statehood's": [], + "Clement's": [], + "chatelaine's": [], + "castigation": ["M"], + "gearwheels": [], + "flannel": ["S", "G", "M", "D"], + "crumbliness": ["M"], + "sobbed": [], + "grips": [], + "accolades": [], + "driveway": ["M", "S"], + "duplicating": [], + "advisersing": [], + "bassinets": [], + "exegeses": [], + "nasal": ["S", "M", "Y"], + "pegboard's": [], + "cafe's": [], + "manky": [], + "gruesomer": [], + "rooftops": [], + "coping": ["M"], + "approval": ["E", "M"], + "peskiness's": [], + "copywriters": [], + "shoddiness's": [], + "maven": ["S", "M"], + "flapjacks": [], + "metathesis": ["M"], + "watermill": ["M", "S"], + "Candy's": [], + "tailcoat's": [], + "doily's": [], + "agronomist'ses": [], + "Chivas's": [], + "Abrams's": [], + "ghoulishness": ["M"], + "stabilization's": [], + "EverReady's": [], + "painting": ["M"], + "dings": [], + "volubly": [], + "mowsers": [], + "advertiser's": [], + "smitesing": [], + "unalike": [], + "intermingling": [], + "pinkies's": [], + "milligram's": [], + "avengersing": [], + "exec": ["M", "S"], + "siltier": [], + "monasteries's": [], + "ETA": [], + "distributeds": [], + "petiole's": [], + "carburetors": [], + "Waco": ["M"], + "heredity": ["M"], + "mainstreameding": [], + "beekeeper": ["M", "S"], + "Michelob's": [], + "mower": ["M"], + "Chipewyan": ["M"], + "gunboats": [], + "cocktail's": [], + "fluctuating": [], + "efficiencies": [], + "cuffs": [], + "yellowhammers": [], + "butting": ["A"], + "tribeswoman": ["M"], + "bikersing": [], + "Anubis": ["M"], + "boneshaker": ["S"], + "accouterments": ["M"], + "serve": ["F", "A", "C", "G", "D", "S"], + "oyster": ["S", "M"], + "astringents": [], + "spritzersing": [], + "infernos": [], + "Helmholtz's": [], + "dinette": ["M", "S"], + "nests": [], + "postwomen": [], + "triumphing": [], + "trillions": [], + "sojournersing": [], + "booking": ["M"], + "nail's": [], + "barrennesses": [], + "cession": ["K", "A", "F", "S", "M"], + "scrimshawings": [], + "foaminess's": [], + "Osvaldo": ["M"], + "attacker": ["M"], + "cowlsings": [], + "swooping": [], + "covert": ["S", "P", "M", "Y"], + "completion's": [], + "sprog": ["S"], + "accented": ["U"], + "admirersing": [], + "tome'ses": [], + "overmastering": [], + "snags": [], + "presentliers": [], + "whiz's": [], + "pardoners": [], + "passionately": [], + "megaphoning": [], + "frizzlinged": [], + "sheerer": [], + "psalmists": [], + "knockdowns's": [], + "rinsing": [], + "fatefulliness": [], + "accumulation": ["M"], + "melodically": [], + "Frau's": [], + "stiletto's": [], + "insipidly": [], + "vesteding": [], + "exit'sed": [], + "swank'sed": [], + "sumps": [], + "overnice": [], + "astrophysicist'ses": [], + "shipbuilders": [], + "mold's": [], + "epigram's": [], + "handcrafteding": [], + "hypersensitivity's": [], + "uncorrected": [], + "objection'sable": [], + "Bern": ["M"], + "mishmash's": [], + "Islamophobic": [], + "pack's": [], + "bothers": [], + "blockhouse'ses": [], + "barney": ["S"], + "prodigallies": [], + "alchemist's": [], + "qualm'ses": [], + "administrator": ["M", "S"], + "DWI": [], + "bound'sing": [], + "bestrew": ["S", "D", "G"], + "podded": [], + "scourers": [], + "interstices": [], + "premixing": [], + "Mar": ["S", "M"], + "delineated": [], + "Athanasius": [], + "capitalization's": [], + "Nona's": [], + "exoskeleton": ["S", "M"], + "obstreperousness": ["M"], + "herding": [], + "pinyons": [], + "foreshadowing": [], + "unsophisticated": [], + "attn": [], + "hike'sers": [], + "pill": ["M", "D", "S", "G"], + "contaminated": ["U"], + "companionship's": [], + "intestines": [], + "valediction'ses": [], + "chow'sed": [], + "damp": ["S", "P", "X", "Z", "T", "G", "M", "D", "N", "R", "Y"], + "compulsion": ["M", "S"], + "analgesic's": [], + "riotous": ["P", "Y"], + "judgment's": [], + "DiCaprio's": [], + "bees's": [], + "snugness": ["M"], + "shenanigans's": [], + "prosperous": ["Y"], + "spied": [], + "tallboy's": [], + "huskinesser": [], + "bump's": [], + "deathwatch": ["M", "S"], + "tortilla": ["M", "S"], + "pluralist's": [], + "discolor": [], + "shooters": [], + "galumphs": [], + "extant": [], + "Gallicisms's": [], + "lifesaver": ["S", "M"], + "expounding": [], + "conchs": [], + "purified": [], + "eventuatinged": [], + "disablingment": [], + "subversion's": [], + "obstructionist": ["M", "S"], + "cholecystitis": [], + "fishtaileding": [], + "talismans": [], + "embed": ["S"], + "compositionens": [], + "caucus'sed": [], + "Rose": ["M"], + "Stefan": ["M"], + "sidelight": ["M", "S"], + "concealing": [], + "beat": ["S", "Z", "G", "B", "M", "N", "R", "J"], + "petition": ["Z", "G", "M", "D", "R", "S"], + "state": ["D", "R", "S", "M", "Y", "G", "N", "L", "X"], + "adiabatic": [], + "Langley's": [], + "regimenting": [], + "nu's": [], + "chanson": ["S", "M"], + "intellectual's": [], + "hooters": [], + "HR": [], + "negation": ["M"], + "leaningings": [], + "cupboard's": [], + "spellerers": [], + "ruffians": [], + "Alsop": ["M"], + "Yule": ["S", "M"], + "triumvirate": ["S", "M"], + "syndicalist": ["S"], + "mop'sed": [], + "Mars's": [], + "noted": [], + "register": ["G", "M", "D", "S"], + "coloratura's": [], + "majesty's": [], + "compiling": [], + "sequentially": [], + "oculists's": [], + "fascism": ["M"], + "agonizinged": [], + "wheres's": [], + "elision's": [], + "felting": [], + "crag'ses": [], + "pumpkin": ["M", "S"], + "imprisons": [], + "dastardliness's": [], + "Penney": ["M"], + "palpateds": [], + "Nerf": ["M"], + "boatloads": [], + "stonework": ["M"], + "Porter": ["M"], + "frumpish": [], + "Mailer": ["M"], + "medusae": [], + "cigar's": [], + "violin'ses": [], + "decolonization": [], + "trumping": [], + "carburetor's": [], + "rectory": ["S", "M"], + "unreachable": [], + "felicity": ["I", "S", "M"], + "charity": ["S", "M"], + "coronary's": [], + "commiserate": ["G", "N", "V", "D", "S", "X"], + "Indore": ["M"], + "scapegrace'ses": [], + "requitersing": [], + "impracticably": [], + "expires": [], + "ovulation": ["M"], + "alimented": [], + "misalignment": ["M"], + "outsmart": ["G", "D", "S"], + "multifaceted": [], + "sensualist's": [], + "median'ses": [], + "practically": [], + "Marietta's": [], + "monody's": [], + "telepathically": [], + "fade": ["M", "S"], + "chilblain": ["S", "M"], + "grilling's": [], + "thimblefuls": [], + "sped": [], + "Seton's": [], + "rubbish'sed": [], + "amendeds": [], + "antacid's": [], + "merrymaking's": [], + "inopportune": [], + "Normans": [], + "ascendant": ["S", "M"], + "impeller's": [], + "downgrades's": [], + "clutch's": [], + "regression's": [], + "headhunter's": [], + "mimetic": [], + "inventor'ses": [], + "Wiesenthal's": [], + "unsaturated": [], + "Tabernacles": [], + "substituent": [], + "callow": ["R", "P", "T"], + "thready": ["T", "R"], + "labeleding": [], + "propeller's": [], + "perusal'ses": [], + "denouements": [], + "immunologist's": [], + "gloomiest": [], + "consenteding": [], + "robber'ses": [], + "wedding's": [], + "flatbed's": [], + "prudence": ["M"], + "badger": ["G", "M", "D"], + "carpooled": [], + "decide": ["B", "Z", "G", "D", "R", "S"], + "devastating": ["Y"], + "guidepost": ["S", "M"], + "telephonersing": [], + "shopkeeper'ses": [], + "beetlinged": [], + "accommodates": [], + "triglyceride'ses": [], + "mulishnessly": [], + "dissenter": ["M"], + "nosiness": ["M"], + "Alden's": [], + "grinder's": [], + "buffoons's": [], + "Trekkie": ["M"], + "eulogistic": [], + "welterweights": [], + "richly": [], + "junkyards": [], + "supernaturals": [], + "chase'sers": [], + "Richardson's": [], + "creak'sed": [], + "barnstormer": ["M"], + "muzzled": [], + "dilutionens": [], + "evolution": ["M"], + "woolens": [], + "Semites": [], + "monist'ses": [], + "awakens": [], + "gulches": [], + "amniocentesis's": [], + "casuists's": [], + "undulation's": [], + "Frieda's": [], + "upsurges": [], + "blowpipe's": [], + "shad": ["G", "M", "D", "S", "J"], + "tonsillectomies": [], + "Backus's": [], + "yonks": [], + "logrolling's": [], + "classicist'ses": [], + "immortalizeds": [], + "preppiers": [], + "luster's": [], + "baldrics": [], + "landward": ["S"], + "damaginged": [], + "yearned": [], + "minimization": ["M"], + "clunky": ["T", "R"], + "aerially": [], + "Aral": ["M"], + "hesitance": ["M"], + "washbasins": [], + "Hernandez": ["M"], + "punchline": ["S"], + "spouteding": [], + "Parisian'ses": [], + "complementing": [], + "radiocarbon": ["M"], + "Cherokees": [], + "Capitoline": ["M"], + "Lee's": [], + "elm": ["S", "M"], + "blackhead": ["M", "S"], + "wiringed": [], + "blackface": [], + "backscratching": ["M"], + "peddle": ["Z", "G", "D", "R", "S"], + "thousands": [], + "worsted's": [], + "railways": [], + "defendants": [], + "Photostatted": [], + "composite'sly": [], + "aneurysm's": [], + "Stein": ["M", "R"], + "squeegeeing": [], + "novitiate's": [], + "Devi": ["M"], + "calf": ["M"], + "interventionism": ["M"], + "larding": [], + "supping": [], + "renovated": [], + "diagrams": [], + "vilifiesen": [], + "autumnal": [], + "decant": [], + "accretion": ["M", "S"], + "windmilling": [], + "fitter's": [], + "audaciousness": ["M"], + "bustiest": [], + "overplays": [], + "Copacabana": ["M"], + "burglarproof": [], + "codgers": [], + "substrates": [], + "bib's": [], + "martinet": ["M", "S"], + "jitterier": [], + "scent'ses": [], + "coexisteds": [], + "cusses": [], + "Harding": ["M"], + "woodcocks": [], + "psychos's": [], + "glorified": [], + "gameness's": [], + "impromptus's": [], + "residues": [], + "vigilantism": ["M"], + "ram's": [], + "presumeds": [], + "appeared": [], + "cryogenic": ["S"], + "conscious": ["U", "Y", "P"], + "bedsteads": [], + "O'Connor's": [], + "rascals": [], + "SSE": ["M"], + "aloofly": [], + "bypath's": [], + "shatters": [], + "glandular": [], + "orientateds": [], + "closeout'ses": [], + "licorices": [], + "halftime'ses": [], + "permanent'sly": [], + "shrilly": [], + "Restoration": ["M"], + "Kurdistan's": [], + "buriesing": [], + "hayseeds": [], + "capitulating": [], + "musheder": [], + "worseneds": [], + "SE's": [], + "Allhallows": ["M"], + "legionnaires's": [], + "muskoxen": [], + "abracadabra's": [], + "searchers": [], + "sloppiness": ["M"], + "twiner": ["M"], + "Ernestine": ["M"], + "Minoan'ses": [], + "tideways": [], + "overreachinged": [], + "decathlons": [], + "appended": [], + "Octavia": ["M"], + "vulgarities's": [], + "rockeder": [], + "jabber's": [], + "confuserers": [], + "fourscore": ["M"], + "vindictively": [], + "adulates": [], + "soliloquizesing": [], + "woman's": [], + "emulative": [], + "rendezvous": ["G", "M", "D", "S"], + "satiation": ["M"], + "minces's": [], + "obsoletes": [], + "silicon's": [], + "dispose": [], + "circumnavigated": [], + "wearable": ["U"], + "blizzard": ["S", "M"], + "demoing's": [], + "otherness": [], + "woodblock": ["M", "S"], + "binomials's": [], + "colossal": ["Y"], + "Uriah": ["M"], + "knurling": [], + "Strong": ["M"], + "removals's": [], + "crosscut's": [], + "Senegal": ["M"], + "downdraft'ses": [], + "automatism": ["M"], + "anticyclones": [], + "proletarian": ["M", "S"], + "supplenesser": [], + "outdoor": ["S"], + "wispiest": [], + "forestalls": [], + "recent": ["R", "Y", "T", "P"], + "Elbert's": [], + "snorkel": ["Z", "G", "M", "D", "R", "S"], + "clear'sed": [], + "recipient": ["S", "M"], + "czarist's": [], + "blend": ["Z", "G", "M", "D", "R", "S"], + "Tiresias's": [], + "stinking": [], + "Ashkenazim": ["M"], + "excluded": [], + "damage": ["M", "G", "D", "S"], + "hammiest": [], + "exculpatingen": [], + "potions": [], + "acquisitiveliness": [], + "bazaar's": [], + "Adolf": ["M"], + "chemise": ["M", "S"], + "fractal": ["S", "M"], + "justifications": [], + "jags": [], + "idiom's": [], + "raceme": ["M", "S"], + "overgrowsing": [], + "fawner": ["M"], + "pulps": [], + "nuts's": [], + "butchering": [], + "beep's": [], + "windbreaks": [], + "Ivory's": [], + "forecasts": [], + "herbivore's": [], + "abstentions": [], + "cognizance": ["A", "M"], + "monogram": ["S", "M"], + "bisexuallies": [], + "gloaming": ["S", "M"], + "fly's": [], + "funiculars": [], + "sapphires's": [], + "respectfulness's": [], + "pirates": [], + "magnitude": ["S", "M"], + "moonlighteder": [], + "dalliance's": [], + "peristaltic": [], + "hereof": [], + "Hindustanis": [], + "hegiras": [], + "antis's": [], + "scandalmonger's": [], + "flamethrower": ["S", "M"], + "hill": ["M", "S"], + "nevi": [], + "spanner": ["S", "M"], + "Edward's": [], + "tachographs": [], + "beach'sed": [], + "falsificationens": [], + "pussyfoots": [], + "Barber": ["M"], + "Michelangelo": ["M"], + "brews": [], + "transfuse": ["D", "S", "X", "G", "N"], + "theme": ["D", "S", "M"], + "vocalist": ["S", "M"], + "pertussis's": [], + "purgative's": [], + "gambol's": [], + "slewings": [], + "tobogganed": [], + "tarnisheds": [], + "ripens": [], + "carmines's": [], + "highlights": [], + "Lothario": ["S", "M"], + "murmuring's": [], + "wailer": ["M"], + "hooting": [], + "commissar's": [], + "clearlies": [], + "slates": [], + "fatuous": ["Y", "P"], + "doziest": [], + "poulterer's": [], + "air": ["S", "M", "D", "J", "G"], + "whoa": [], + "Pam": ["M"], + "rioted": [], + "snack's": [], + "pablum": ["M"], + "angel'ses": [], + "Jacob": ["S", "M"], + "putout'ses": [], + "clips's": [], + "hyphenations": [], + "vaporizeder": [], + "wasp": ["M", "S"], + "Vermonters": [], + "Orphic's": [], + "moraine": ["S", "M"], + "overspecializes": [], + "overacted": [], + "webcams": [], + "stalemating": [], + "literally": [], + "dogsbodies": [], + "Patagonian's": [], + "scarcer": [], + "certificate'sing": [], + "thermometer'ses": [], + "McDonnell": ["M"], + "poinciana's": [], + "hydrolyses": [], + "exhaustively": [], + "WATS's": [], + "frequentsers": [], + "postulateds": [], + "chancel's": [], + "sanity's": [], + "solace's": [], + "scourersing": [], + "peregrine": ["M", "S"], + "gargling": [], + "challengersing": [], + "Mott's": [], + "penetratesing": [], + "cassocks's": [], + "aeronautical": [], + "Yevtushenko's": [], + "huddles's": [], + "procrastination": ["M"], + "coloring": [], + "Ella's": [], + "Leach's": [], + "postcodes": [], + "sendersing": [], + "occurrences": [], + "stamen's": [], + "promoters": [], + "neared": [], + "conducesing": [], + "donations": [], + "orangutan's": [], + "chugging": [], + "excitersing": [], + "prowls": [], + "room": ["M", "D", "R", "Z", "G", "S"], + "Palembang": ["M"], + "Dooley's": [], + "accident'ses": [], + "Genoas": [], + "chaplain": ["M", "S"], + "peninsulas": [], + "Erlenmeyer's": [], + "nudes": [], + "bruise": ["D", "R", "S", "M", "Z", "G"], + "cuddliest": [], + "bearded": [], + "Connery's": [], + "royals's": [], + "filmstrips": [], + "virility": ["M"], + "asymmetry's": [], + "landscape's": [], + "deterioration's": [], + "dyspepsia": ["M"], + "laureate'ses": [], + "speedometer": ["M", "S"], + "flagon's": [], + "dingles's": [], + "grading": [], + "Mussorgsky": ["M"], + "firetruck": ["M", "S"], + "horological": [], + "Nichole's": [], + "bitch": ["G", "M", "D", "S"], + "placeholders": [], + "skeptical": ["Y"], + "maladroit": ["P", "Y"], + "rem's": [], + "memorials": [], + "knelling": [], + "liberalizations's": [], + "summering": [], + "coatrooms": [], + "cavilings": [], + "lolleds": [], + "float'sed": [], + "reconnoiters": [], + "waitperson'ses": [], + "elucidatingen": [], + "icebox'ses": [], + "despairs": [], + "int": [], + "unenforced": [], + "swooned": [], + "copied": [], + "expenses": [], + "pin's": [], + "Turgenev": ["M"], + "sanserif": [], + "repletes": [], + "hobblers": [], + "sclerosis's": [], + "fetidness": ["M"], + "marveleding": [], + "sublieutenant": ["S"], + "rhos's": [], + "poachersing": [], + "petrels": [], + "shutdown": ["S", "M"], + "tailpipes's": [], + "trills": [], + "Madden": ["M"], + "sidestroke'sing": [], + "senseds": [], + "nominee": ["M", "S"], + "ditto's": [], + "muck's": [], + "Fido's": [], + "polyurethane's": [], + "warn": ["J", "D", "G", "S"], + "quitter": ["S", "M"], + "theorists's": [], + "stimulating": [], + "bulkheads": [], + "racer": ["M"], + "bibliophile's": [], + "mussing": [], + "buoy's": [], + "throb's": [], + "withered": [], + "Mayra's": [], + "magpie'ses": [], + "leagues's": [], + "mongolism": ["M"], + "rancor's": [], + "abseil": ["M", "D", "S", "G"], + "alert'sed": [], + "Kickapoo's": [], + "pulverize": ["D", "S", "G"], + "greater": [], + "poisoneder": [], + "fuddles's": [], + "Bellamy": ["M"], + "sifter's": [], + "hardwoods": [], + "sunburn'sed": [], + "panel's": [], + "wordier": [], + "organ": ["M", "S"], + "Peel's": [], + "quenching": [], + "hoodlum's": [], + "unchanging": [], + "posturing": ["M"], + "sops's": [], + "background's": [], + "salivation's": [], + "Bayreuth": ["M"], + "Lucile": ["M"], + "pulinged": [], + "overproduction's": [], + "overshoes": [], + "gamy": ["R", "T", "P"], + "ribbons's": [], + "buncheds": [], + "paramedic'ses": [], + "lefters": [], + "Cobb": ["M"], + "mudslinger": ["S", "M"], + "rightfully": [], + "antitoxins": [], + "swathe": ["M"], + "partaker": ["M"], + "Lovelace's": [], + "jumbling": [], + "gumshoeds": [], + "trichinosis's": [], + "extrudeds": [], + "vermicelli": ["M"], + "tarmacked": [], + "dragoons's": [], + "whew": [], + "aqueduct'ses": [], + "sweetbreads": [], + "touchily": [], + "speechlessly": [], + "hoodie": ["M", "S"], + "lummox'ses": [], + "misbehave": ["G", "D", "S"], + "waterboardsing": [], + "coed'ses": [], + "chocolate": ["M", "S"], + "Cayenne": ["M"], + "transl": [], + "madwoman's": [], + "Plutarch": ["M"], + "muskellunge's": [], + "allowinged": [], + "backfireds": [], + "chinstraps": [], + "sublimers": [], + "meal's": [], + "rending": [], + "Sven's": [], + "watermill's": [], + "spectate": ["D", "S", "G"], + "autographs": [], + "scouteder": [], + "hulk's": [], + "newliness": [], + "Burr's": [], + "trustfully": [], + "harmlessly": [], + "directives's": [], + "disappearance": [], + "Burl": ["M"], + "braid'sed": [], + "hallmarkeds": [], + "regent": [], + "sesquicentennial": ["M", "S"], + "couched": [], + "sham": ["G", "M", "D", "S"], + "stillings": [], + "clonks": [], + "commemorative": [], + "amateur's": [], + "augmentation's": [], + "elder": ["S", "M", "Y"], + "checkpoints's": [], + "overturns": [], + "buttonholes": [], + "quadrupeds": [], + "mutilate": ["D", "S", "G", "N", "X"], + "wigwag's": [], + "senior's": [], + "crocodile's": [], + "particleboard": ["M"], + "biophysics": ["M"], + "madrassa's": [], + "Todd's": [], + "oppressesing": [], + "erectile": [], + "napper's": [], + "riddance's": [], + "burrito": ["M", "S"], + "toenails": [], + "immorality": ["S", "M"], + "eeriness's": [], + "wipeder": [], + "bugger'sed": [], + "balusters's": [], + "catamaran's": [], + "maintaining": [], + "Maurois's": [], + "prologue": ["S", "M"], + "contrivance'ses": [], + "basilisk's": [], + "bid'sing": [], + "mochas": [], + "breathiest": [], + "clown": ["S", "M", "D", "G"], + "odor'sed": [], + "interurban": [], + "freeholder": ["M"], + "coeducational": [], + "sawflies's": [], + "rogered": [], + "carcinogenic": ["M", "S"], + "Ti": ["M"], + "pays": [], + "Tyson": ["M"], + "docility": ["M"], + "football's": [], + "trended": [], + "talks": [], + "hyperlink's": [], + "bootstrap": ["M", "S"], + "inordinately": [], + "medics": [], + "cork": ["U", "D", "G", "S"], + "Finnegan": ["M"], + "tombings": [], + "embanking": [], + "Tunisians": [], + "understudied": [], + "sidestep'ses": [], + "ifs": [], + "despondence": ["M"], + "challengers": [], + "temporariness": ["M"], + "martially": [], + "cow'sed": [], + "diarist": ["S", "M"], + "curare's": [], + "surpriseds": [], + "Salween's": [], + "particularization": ["M"], + "bearsers": [], + "stoppers's": [], + "rebuke's": [], + "Blackburn's": [], + "shareholders's": [], + "nix's": [], + "plan's": [], + "ghastly": ["T", "P", "R"], + "tern's": [], + "adoption's": [], + "headboards": [], + "regressions": [], + "busheds": [], + "philosophize": ["D", "R", "S", "Z", "G"], + "venue": ["A", "S", "M"], + "paperweight": ["M", "S"], + "sunburst's": [], + "bootleggers": [], + "Brownshirt": ["M"], + "Hosea's": [], + "bulges": [], + "autoimmune": [], + "coxed": [], + "Petersen": ["M"], + "nonsuccessive": [], + "smartens": [], + "stragglier": [], + "Caledonia": ["M"], + "petrifiesing": [], + "entree'ses": [], + "bang": ["S", "G", "M", "D", "R"], + "Guinean": ["M", "S"], + "cartography's": [], + "fretsaw'ses": [], + "hectored": [], + "portage": ["D", "S", "M", "G"], + "globetrotters": [], + "commercialism's": [], + "satin": ["M"], + "houndsing": [], + "firehouses": [], + "sorting": [], + "collectivized": [], + "barer": [], + "Pluto": ["M"], + "Marjorie": ["M"], + "DECs": [], + "Afrocentrism": ["M"], + "reprove": [], + "transcript'ses": [], + "illuminated": [], + "spavined": [], + "detachable": [], + "misapprehensions": [], + "docks": [], + "retaliated": [], + "bogies": [], + "Saroyan's": [], + "lyricist's": [], + "moils": [], + "nutrient'ses": [], + "anklebone'ses": [], + "inanimatenessly": [], + "indexers": [], + "Long": ["M"], + "scuttle": ["M", "G", "D", "S"], + "farmhouses": [], + "Wilder's": [], + "Anguilla": ["M"], + "stroll's": [], + "tranquiler": [], + "bailsable": [], + "reticently": [], + "spritz'sed": [], + "Suzy": ["M"], + "pendant'ses": [], + "houseparent": ["S", "M"], + "precookings": [], + "townie": ["M", "S"], + "laud'sed": [], + "preacher": ["M"], + "concordat's": [], + "Regulus's": [], + "Arabist's": [], + "carrieder": [], + "corral's": [], + "invidiousness's": [], + "humanistic": [], + "deckles": [], + "johnny's": [], + "Bk's": [], + "exacterly": [], + "rebuke": ["D", "S", "M", "G"], + "bass'ses": [], + "souvenirs": [], + "portioned": [], + "ovationens": [], + "muters": [], + "cuspids": [], + "beauty's": [], + "rescindeding": [], + "terrestrially": [], + "cravenly": [], + "tackled": [], + "gyvinged": [], + "Gretzky's": [], + "Theosophy": ["M"], + "pressings's": [], + "closeups's": [], + "anticommunism": ["M"], + "Milwaukee's": [], + "errands": [], + "compressors": [], + "negotiations": [], + "upholder": ["M"], + "Brontosaurus": [], + "lowlife's": [], + "polytheism's": [], + "superstate": ["S"], + "mezzanines": [], + "goo": ["M"], + "frittersing": [], + "fitment": ["S"], + "caners": [], + "swamping": [], + "slimmed": [], + "binding'ses": [], + "ambiances": [], + "Aleuts": [], + "fume": ["M", "G", "D", "S"], + "fascistic": [], + "bonce": ["S"], + "sillier": [], + "devilishly": [], + "bumpkin": ["M", "S"], + "questionnaires": [], + "preps": [], + "land's": [], + "pleaderers": [], + "bereavement": ["M", "S"], + "sodomized": [], + "periwig": ["S", "M"], + "arbitrageurs's": [], + "manner'sed": [], + "claiming": [], + "jiff": ["M", "S"], + "voluminousness's": [], + "affixes": [], + "Maria's": [], + "nanotechnologies's": [], + "mired": [], + "swine's": [], + "retrogradesing": [], + "buttereding": [], + "consultant's": [], + "Twila": ["M"], + "tightness's": [], + "whosoever": [], + "tangelo's": [], + "unilateralism": [], + "Tadzhik's": [], + "peppering": [], + "palmtops": [], + "selfless": ["P", "Y"], + "philosophical": ["Y"], + "intravenous's": [], + "gymnasts": [], + "pretended": [], + "mulls": [], + "springiness": ["M"], + "vegetatingen": [], + "dauntless": ["Y", "P"], + "megalomania": ["M"], + "Zyrtec's": [], + "glowing": ["Y"], + "joblessness's": [], + "Roland's": [], + "sidekicks": [], + "lechery's": [], + "romance": ["M", "Z", "G", "D", "R", "S"], + "upended": [], + "clinch": ["M", "D", "R", "S", "Z", "G"], + "matador's": [], + "Cicero": ["M"], + "bankrolling's": [], + "emblazoninged": [], + "wassails's": [], + "Dewar": ["M"], + "Thimbu": ["M"], + "remaindered": [], + "frivolousness": ["M"], + "Niamey": ["M"], + "handspring": ["M", "S"], + "mummers": [], + "exposure'ses": [], + "deterioration": ["M"], + "honeylocust's": [], + "blacktops": [], + "faceless": [], + "chairman": ["M"], + "rite'ses": [], + "gestalts": [], + "rife": ["T", "R"], + "fest'ser": [], + "prototype's": [], + "basso'ses": [], + "furnished": ["U"], + "brainwashesing": [], + "stakeouts": [], + "incurring": [], + "airlessness": ["M"], + "bang'sed": [], + "alternated": [], + "Bacchanalia": ["M"], + "bacchanal": ["M", "S"], + "Tortola": ["M"], + "landfills": [], + "Reid's": [], + "smallpox": ["M"], + "snivels's": [], + "bogie": ["M", "S"], + "cinchonas's": [], + "weenie": ["M", "T", "R", "S"], + "witheringed": [], + "mettlesome": [], + "john's": [], + "Nair's": [], + "historian": ["M", "S"], + "compositor's": [], + "Frontenac": ["M"], + "filter": ["M", "D", "R", "B", "S", "Z", "G"], + "vats": [], + "ferret": ["G", "S", "M", "D"], + "Algol": ["M"], + "niggles": [], + "Pan": ["M"], + "wearying": [], + "loofah's": [], + "crayon's": [], + "extinguishers": [], + "paregoric's": [], + "daiquiri's": [], + "unequipped": [], + "Fredric's": [], + "gemstone's": [], + "dub": ["S", "M"], + "substantially": [], + "vegeburgers": [], + "betray": ["D", "R", "Z", "G", "S"], + "Higashiosaka": [], + "Adrenalin's": [], + "miscast": ["S", "G"], + "pimp": ["G", "M", "D", "Y", "S"], + "hastier": [], + "wassailed": [], + "impasto's": [], + "dispensaries": [], + "enveloped": [], + "licensee": ["M", "S"], + "contradicteding": [], + "motorize": ["D", "S", "G"], + "Armageddon's": [], + "resuscitator's": [], + "beanstalks": [], + "cleavage's": [], + "escalloping": [], + "subjoined": [], + "ferrule": ["M", "S"], + "Itasca": ["M"], + "ripeness's": [], + "supplementeding": [], + "multifariousness": ["M"], + "Hebrews": ["M"], + "balled": [], + "Pentecostal'ses": [], + "arousinged": [], + "restaurateur's": [], + "mythological": [], + "finagled": [], + "officiating": [], + "prod's": [], + "Mitchell's": [], + "differentials's": [], + "hitter's": [], + "Merton's": [], + "tackiness": ["M"], + "reliant": [], + "rationalization": ["M", "S"], + "grungiest": [], + "kayo's": [], + "clattering": [], + "CIA's": [], + "peroration'ses": [], + "overliesing": [], + "blending": [], + "Concorde": ["M"], + "calculating": ["Y"], + "iffiness": ["M"], + "weekend's": [], + "walk": ["M", "D", "R", "Z", "G", "S"], + "ninety's": [], + "evangelizeds": [], + "softenerers": [], + "outgrowth's": [], + "songstress's": [], + "parity": ["E", "S", "M"], + "fundamentalists": [], + "infuriating": ["Y"], + "Dixie's": [], + "ensure": ["Z", "G", "D", "R", "S"], + "sanders": [], + "ampersands": [], + "tarp": ["M", "S"], + "GATT's": [], + "cadenceds": [], + "indispensables": [], + "wetter's": [], + "Chekhov's": [], + "telly": ["S", "M"], + "Valery": ["M"], + "harry": ["D", "R", "S", "Z", "G"], + "satanic": [], + "babysitting's": [], + "floodlight's": [], + "developmentally": [], + "roustabout's": [], + "bivouacked": [], + "wining": [], + "equinoxes": [], + "electrolyte'ses": [], + "glistereds": [], + "Taney": ["M"], + "Memphis": ["M"], + "playschools": [], + "luncheonettes's": [], + "realizesable": [], + "pines": [], + "altruist": ["S", "M"], + "Chapman's": [], + "inhereds": [], + "impermeable": [], + "mowing": [], + "accused": [], + "cowries's": [], + "intangibility": [], + "boneyard": [], + "mezzos's": [], + "navigator": ["M", "S"], + "barmier": [], + "truthfully": [], + "grenades's": [], + "undertakingings": [], + "detriments": [], + "edges": [], + "receiving": [], + "raucousliness": [], + "griffins": [], + "conniptions": [], + "livens": [], + "halvesing": [], + "gory": ["R", "T", "P"], + "Mallarme": ["M"], + "judgmentally": [], + "sidepiece": ["M", "S"], + "Cupid": ["M"], + "sabbaticals's": [], + "endlessness": ["M"], + "keypad": ["S", "M"], + "fly": ["Z", "T", "G", "B", "D", "R", "S", "M"], + "ignorantly": [], + "undiplomatic": [], + "disturbeder": [], + "clitorides": [], + "objectifying": [], + "cupids": [], + "criminologist'ses": [], + "coiffure'sing": [], + "unlockeds": [], + "dysphoria": [], + "letterersing": [], + "Clinton's": [], + "tapestries's": [], + "nights": [], + "clingers": [], + "grow": ["A", "H", "S", "G"], + "brickie": ["S"], + "sickening": ["Y"], + "exceptionally": [], + "backups": [], + "magus": ["M"], + "declaratory": [], + "scrimping": [], + "bucktooth": ["M", "D"], + "lowlands": [], + "conjunctives's": [], + "reptile's": [], + "correlative'ses": [], + "mattock's": [], + "internationalists's": [], + "inveigleder": [], + "minor'sed": [], + "items": [], + "placeholder's": [], + "cloaks": [], + "illumining": [], + "weakener's": [], + "Hawkins": ["M"], + "mango's": [], + "wearyinged": [], + "financier'ses": [], + "interpreteds": [], + "domestic": ["S", "M"], + "eavesdroppers": [], + "adherent's": [], + "underlips's": [], + "soup's": [], + "detestably": [], + "impetuses": [], + "coagulators": [], + "oncogene's": [], + "pubs": [], + "Tudor": ["S", "M"], + "rhizome's": [], + "broadband": ["M"], + "finders": [], + "warpings": [], + "interest's": [], + "Sabin's": [], + "cowries": [], + "depressions": [], + "La": ["S", "M"], + "member's": [], + "activity's": [], + "respiration's": [], + "ravaged": [], + "trillings": [], + "burnished": [], + "bifurcates": [], + "envisaging": [], + "pouch'sed": [], + "statues": [], + "temperance's": [], + "intruding": [], + "effect'sed": [], + "royally": [], + "signatures": [], + "priceless": [], + "centavo's": [], + "elongates": [], + "appaloosa's": [], + "fez": ["M"], + "pugilist's": [], + "llamas": [], + "crops": [], + "blarneying": [], + "shark'sed": [], + "celibate's": [], + "appraising": [], + "dinghies's": [], + "manifesting": [], + "orangeade'ses": [], + "botulism": ["M"], + "Mrs's": [], + "infested": [], + "priories": [], + "tempos's": [], + "essential'ses": [], + "guesthouse": ["S"], + "topics": [], + "pedagogy's": [], + "aerators": [], + "restorer": ["S", "M"], + "fascias": [], + "anthill": ["S", "M"], + "cluttereds": [], + "Paterson's": [], + "coven": ["S", "M"], + "heaviness's": [], + "withheld": [], + "calibration's": [], + "Garcia's": [], + "concoctions": [], + "reconnoitereding": [], + "woodener": [], + "verdict": ["S", "M"], + "pitcher": ["M"], + "ladders's": [], + "testimony's": [], + "manglers": [], + "particular's": [], + "swimmers": [], + "watchband": ["M", "S"], + "lorgnettes's": [], + "duchy": ["S", "M"], + "phantasmagorias": [], + "euthenics": ["M"], + "mountainous": [], + "parkas's": [], + "Slovak": ["S", "M"], + "Cheddar's": [], + "fatigue'sed": [], + "notifier's": [], + "imperfect's": [], + "Sensurround's": [], + "attitude's": [], + "turfsing": [], + "evolvesing": [], + "conduced": [], + "embark": ["A", "E", "G", "D", "S"], + "stiffs": [], + "pawing": [], + "consistently": [], + "monstrosity's": [], + "salamander": ["S", "M"], + "chloroplasts": [], + "trollop": ["S", "M"], + "yodel's": [], + "fillies": [], + "cashing": [], + "divorce's": [], + "claimeds": [], + "squire": ["D", "S", "M", "G"], + "hermetic": [], + "chintzy": ["R", "T"], + "enfeeblement's": [], + "smashups's": [], + "settlers": [], + "fiercely": [], + "eventuating": [], + "athwart": [], + "remainder": ["G", "M", "D", "S"], + "everybody": ["M"], + "pokersing": [], + "ventureds": [], + "temptation'ses": [], + "Lucretius's": [], + "commando's": [], + "hyperbolas": [], + "hotted": [], + "Lidia": ["M"], + "fishnets's": [], + "duelist": ["S", "M"], + "neutralists": [], + "sophisticate": ["D", "S", "M", "G", "N"], + "shirring's": [], + "Waksman": ["M"], + "volunteer": ["S", "G", "M", "D"], + "scribe's": [], + "Hamitic's": [], + "indites": [], + "acidic": [], + "airstrip": ["S", "M"], + "multiplicands": [], + "irritable": [], + "transliterateds": [], + "hem's": [], + "bought": [], + "enchanting": ["Y"], + "trumpetersing": [], + "twilled": [], + "reforgeds": [], + "demagogic": [], + "swaybacked": [], + "clapping's": [], + "skim's": [], + "Maine's": [], + "carets": [], + "suburbans": [], + "menial'sly": [], + "handful's": [], + "blvd": [], + "scatterbrain": ["S", "M", "D"], + "pullout's": [], + "fallout": ["M"], + "batteries's": [], + "annexes": [], + "ventilatingen": [], + "Canon's": [], + "plaints's": [], + "dishevelment's": [], + "cytosine": ["M"], + "pertain": ["G", "S", "D"], + "outsource": ["D", "S", "G"], + "megalomania's": [], + "begum": ["M", "S"], + "replenishmenting": [], + "curingable": [], + "puce's": [], + "umlauts": [], + "gurgle": ["M", "G", "D", "S"], + "tenthly": [], + "Peru's": [], + "buckyballs's": [], + "legatee'ses": [], + "choir's": [], + "pelagic": [], + "impact": ["S", "M", "D", "G"], + "election'ses": [], + "impatiens": ["M"], + "berm's": [], + "freethinkers": [], + "inspectinged": [], + "balaclava'ses": [], + "Medicaid": ["S", "M"], + "Bucharest": ["M"], + "cancan'ses": [], + "backcloths": [], + "electrifier's": [], + "molestings": [], + "formless": ["P", "Y"], + "daddies": [], + "Jaime": ["M"], + "spoiling": [], + "homesteader's": [], + "intravenous": ["M", "S", "Y"], + "rapt": ["Y", "P"], + "towering": [], + "Oscar's": [], + "Thomas": ["M"], + "saucer": ["M"], + "bluesiest": [], + "uplifteding": [], + "redundant": ["Y"], + "Clarendon's": [], + "schmoozeder": [], + "autograph's": [], + "wheedleder": [], + "personal'sly": [], + "burial": ["A", "S", "M"], + "imps's": [], + "resurgence'ses": [], + "exclamations": [], + "uproars": [], + "supernumeraries's": [], + "bulb": ["M", "S"], + "ankle'ses": [], + "squishiest": [], + "forthrightly": [], + "bleeping's": [], + "gnasheds": [], + "unbearable": [], + "Dalian's": [], + "ejaculationsed": [], + "wale'sing": [], + "programmable": ["M", "S"], + "Mussolini's": [], + "Czechoslovakians's": [], + "Cr's": [], + "motorbike'sing": [], + "barge'sing": [], + "uncool": [], + "Hasidim": ["M"], + "delirium": ["S", "M"], + "cardamom's": [], + "timestamps": [], + "disgusted": ["Y"], + "obdurately": [], + "eclipseds": [], + "damask": ["M", "D", "G", "S"], + "Horne's": [], + "songbook's": [], + "beams": [], + "scatter's": [], + "archive's": [], + "cheapnessens": [], + "scantness": ["M"], + "surpassed": ["U"], + "hold": ["M", "R", "J", "S", "Z", "G"], + "richer": [], + "macrobiotic": ["S"], + "rhinitis's": [], + "ambulance'ses": [], + "fieldsman": [], + "molybdenum": ["M"], + "eccentric's": [], + "jackdaws": [], + "midshipman": ["M"], + "citadel": ["M", "S"], + "understatementing": [], + "lexicographical": [], + "larkeds": [], + "koshering": [], + "sanitarian's": [], + "decoder": [], + "splendidest": [], + "Asmara's": [], + "draperies's": [], + "yolk": ["M", "D", "S"], + "flowersed": [], + "dragnet": ["S", "M"], + "paperback": ["S", "M"], + "fishery": ["S", "M"], + "dialects": [], + "deeding": [], + "sunbeams's": [], + "Terkel's": [], + "Tarim": ["M"], + "teleconference'sing": [], + "tragedian's": [], + "medic's": [], + "frustration's": [], + "shrives": [], + "antifascist": ["M", "S"], + "baklava's": [], + "Elisha": ["M"], + "yellsing": [], + "cornerstone's": [], + "marzipan's": [], + "starchiness": ["M"], + "Colombian's": [], + "reproachable": [], + "FDIC": ["M"], + "welcomes": [], + "Sanford's": [], + "radical's": [], + "cotillions's": [], + "beside": ["S"], + "presbyopia": ["M"], + "fainest": [], + "Moore": ["M"], + "secularism": ["M"], + "middleman": ["M"], + "amontillado's": [], + "far": [], + "fitter'ses": [], + "hank'ser": [], + "jib": ["S", "G", "M", "D"], + "Hormuz": ["M"], + "studious": ["P", "Y"], + "glittery": [], + "nucleon": ["S", "M"], + "club'ses": [], + "hanker": ["G", "J", "D"], + "adheres": [], + "honey": ["S", "G", "M", "D"], + "Leadbelly": ["M"], + "liege's": [], + "dragonfly": ["S", "M"], + "Menander": ["M"], + "firebrands": [], + "mathematicians": [], + "Dorcas": ["M"], + "rubrics's": [], + "trustfulness": ["M"], + "participating": [], + "manipulation's": [], + "waverer": ["M"], + "mansesens": [], + "lionizeds": [], + "milteds": [], + "sentience's": [], + "rugrat": ["S", "M"], + "oiling's": [], + "biweeklies": [], + "stern's": [], + "mealtime": ["S", "M"], + "herd": ["M", "D", "R", "Z", "G", "S"], + "PMing": [], + "undivided": [], + "fugitive": ["M", "S"], + "singletons": [], + "ancients": [], + "possessing": [], + "scripted": ["U"], + "heavyweight'ses": [], + "childproofing": [], + "impermeably": [], + "trek'ses": [], + "Tennyson's": [], + "shrillness's": [], + "Igor": ["M"], + "mobilizer's": [], + "trivializeds": [], + "Celtics's": [], + "accordingly": [], + "spigot": ["S", "M"], + "secret": ["S", "G", "V", "M", "D", "Y"], + "snapdragon's": [], + "overpraises": [], + "correction": ["S", "M"], + "tonnages's": [], + "certification's": [], + "haggardness's": [], + "concessional": [], + "moles": [], + "Rolodex": ["M"], + "crowds": [], + "ergo": [], + "automates": [], + "travestieds": [], + "hormone": ["S", "M"], + "dialectic's": [], + "Sara's": [], + "PC": ["S", "M"], + "interruption'ses": [], + "kayak": ["S", "M", "D", "G"], + "cause": ["M", "Z", "G", "D", "R", "S"], + "fleecer's": [], + "Novocain's": [], + "toutings": [], + "emotion's": [], + "psychotherapies": [], + "behests": [], + "epoxy'sing": [], + "bestiary": ["S", "M"], + "termagant": ["M", "S"], + "provincial's": [], + "fatten": ["S", "D", "G"], + "adverb's": [], + "Paglia": ["M"], + "auditor": ["M", "S"], + "grilling": [], + "froggings": [], + "antennas's": [], + "conduction": ["M"], + "nicker's": [], + "South": ["M"], + "respiration": ["M"], + "steeling": [], + "miscue": ["D", "S", "M", "G"], + "histology": ["M"], + "strangulationed": [], + "hoerly": [], + "Levitt's": [], + "sequestrateds": [], + "memories": [], + "Osman's": [], + "inheritors": [], + "anthems": [], + "Lat": ["M"], + "tang's": [], + "ambush'sed": [], + "substance's": [], + "gentlemen": [], + "consonant": ["S", "M", "Y"], + "voyager's": [], + "steams's": [], + "Evita's": [], + "bittererly": [], + "Axis": [], + "Sun's": [], + "centimeter'ses": [], + "bribe'sers": [], + "crisps's": [], + "positioned": ["K"], + "afterthoughts": [], + "storing": [], + "incunabulum's": [], + "distribution": ["A", "M"], + "centerfolds": [], + "restrictively": [], + "ulcer's": [], + "castaway": ["M", "S"], + "coveted": [], + "newsgroup'ses": [], + "mackintosh's": [], + "christensing": [], + "rut's": [], + "bestiaries": [], + "consolidator's": [], + "relaxations's": [], + "redemption's": [], + "ascendinged": [], + "bipolarity": ["M"], + "sideswiped": [], + "quaff": ["G", "M", "D", "S"], + "shipowner": ["M", "S"], + "exclusives": [], + "standardizeds": [], + "crusher's": [], + "tryouts's": [], + "engineer'sed": [], + "minicam'ses": [], + "freeholders's": [], + "shoeshine": ["S", "M"], + "camisole": ["S", "M"], + "tacitnessly": [], + "Green's": [], + "Reading's": [], + "clomps": [], + "bikes": [], + "rejections": [], + "Shiraz": ["M"], + "roadhouse's": [], + "flunk'sed": [], + "ponderously": [], + "comeuppance": ["S", "M"], + "Kawabata": ["M"], + "Gershwin": ["M"], + "cursed": ["Y"], + "discriminator'ses": [], + "sabbatical": ["S", "M"], + "handshaking": [], + "metricate": ["G", "N", "D", "S"], + "Jivaro": ["M"], + "gymnastics": ["M"], + "daffiest": [], + "rooterers": [], + "Utopias": [], + "undercover": [], + "refugees": [], + "showcaseds": [], + "capitation's": [], + "abhor": ["S"], + "rangefinders": [], + "Hooke": ["R", "M"], + "Guevara's": [], + "promiscuously": [], + "Brooke'ses": [], + "starveling'ses": [], + "rectifiesers": [], + "anchorite": ["M", "S"], + "antigens": [], + "Algonquian's": [], + "Rosa's": [], + "Ireland's": [], + "theoreticians": [], + "cabochon": ["S", "M"], + "Sylvester": ["M"], + "adapteder": [], + "strafes": [], + "wrasse's": [], + "assessors": [], + "dingeding": [], + "outing's": [], + "tyrannosauruses": [], + "chloroplast": ["M", "S"], + "ablution's": [], + "reshuffle": [], + "lotteries's": [], + "biers": [], + "jester": ["M"], + "repairablers": [], + "blindest": [], + "extenders": [], + "banzais": [], + "exhaustive": ["Y", "P"], + "handlebar": ["M", "S"], + "Kauai's": [], + "commotion": ["S", "M"], + "tattiers": [], + "cabarets": [], + "Arizonian": ["M", "S"], + "rubberizing": [], + "ramblingings": [], + "bookablings": [], + "numbering": [], + "Pablum": ["M"], + "indoctrinated": [], + "piqueds": [], + "Corey's": [], + "clunkersing": [], + "cloches": [], + "chancy": ["P", "R", "T"], + "Argo's": [], + "facilitation's": [], + "Edenens": [], + "regrinding": [], + "prepubescent's": [], + "xylophone": ["S", "M"], + "coworker's": [], + "fag's": [], + "fervor": ["M"], + "blot's": [], + "braideds": [], + "sulfides's": [], + "motifs's": [], + "cashed": [], + "distention's": [], + "queue": ["M", "D", "S", "G"], + "vehicles": [], + "Seward": ["M"], + "squawk'sed": [], + "adventurer": ["M"], + "dhotis's": [], + "Rushmore": ["M"], + "rationalizesing": [], + "envelopes": [], + "Limoges's": [], + "yieldsing": [], + "sheriff": ["S", "M"], + "BIOS": [], + "pairing": ["S"], + "gay'ser": [], + "gymnasium'ses": [], + "hindmost": [], + "rooster": ["M"], + "shortlist": ["D", "G", "S"], + "lapses": [], + "superscribeds": [], + "snapshots": [], + "Woodhull": ["M"], + "fecundatingen": [], + "negligee'ses": [], + "fingerprint": ["S", "G", "M", "D"], + "prolongation": ["S", "M"], + "manful": ["Y"], + "guaranteeds": [], + "gunrunners": [], + "skivvies's": [], + "Semiramis": ["M"], + "blivets": [], + "republish": [], + "seasonings": [], + "piercing'sly": [], + "humeri": [], + "keyboarders": [], + "tooted": [], + "teaser's": [], + "strategics's": [], + "impersonateds": [], + "Ataturk": ["M"], + "Dusseldorf's": [], + "Amie": ["M"], + "joyfuller": [], + "chart's": [], + "auditioneding": [], + "rube'ses": [], + "emollient'ses": [], + "furnish": ["A", "D", "S", "G"], + "rationeding": [], + "paleographer's": [], + "cosmetic's": [], + "sanctuaries": [], + "porcelains's": [], + "yachting's": [], + "allele'ses": [], + "dimity": ["M"], + "householder's": [], + "immunization": ["S", "M"], + "scallops's": [], + "stipend's": [], + "Peter": ["M"], + "blackmailer": ["M"], + "cup's": [], + "carder'ses": [], + "tart'sed": [], + "ostracism": ["M"], + "accorded": [], + "sloop's": [], + "drake": ["S", "M"], + "zlotys": [], + "vignettist'ses": [], + "truth's": [], + "husky's": [], + "predeceasinged": [], + "foreman": ["M"], + "Stieglitz's": [], + "exurb": ["S", "M"], + "touristy": [], + "contagion's": [], + "indisputably": [], + "scorns": [], + "stomaching": [], + "wagon's": [], + "clumsierness": [], + "maxi's": [], + "sussing": [], + "Harris": ["M"], + "rupturing": [], + "Celia": ["M"], + "quadriplegia's": [], + "houseful": ["S", "M"], + "underbrush": ["M"], + "thundereder": [], + "righteous": ["U", "P"], + "Gallegos's": [], + "sport's": [], + "undulate": ["D", "S", "X", "G", "N"], + "Joan": ["M"], + "Kerensky": ["M"], + "tetracycline's": [], + "jackknifinged": [], + "prophesy'sers": [], + "subgroup'ses": [], + "Casio's": [], + "dissolutely": [], + "outdo": ["G"], + "teaseder": [], + "Oman's": [], + "establishing": [], + "shakes": [], + "zonked": [], + "Freemasons": [], + "Brut": ["M"], + "dare's": [], + "sidings": [], + "abating": [], + "piecemeal": [], + "spicule'ses": [], + "shunning": [], + "capsules": [], + "captaincy": ["S", "M"], + "contrast's": [], + "lysosomal": [], + "avail's": [], + "Northwests's": [], + "radiotherapy's": [], + "blotched": [], + "championed": [], + "encasement": ["M"], + "jacquard": ["M"], + "Astrakhan's": [], + "butteriers": [], + "misdid": [], + "lankerly": [], + "complaisance's": [], + "repute's": [], + "rower": ["M"], + "folios's": [], + "rimsing": [], + "pneumonia's": [], + "scaldeds": [], + "anklebones": [], + "pustule": ["S", "M"], + "Fenian": ["M"], + "brazer's": [], + "dysprosium": ["M"], + "Fomalhaut's": [], + "superiority": ["M"], + "wrinkleds": [], + "bunion's": [], + "Quaker'ses": [], + "aura": ["M", "S"], + "acre's": [], + "millage's": [], + "getting": [], + "fulls": [], + "Claus": ["M"], + "demagnetize": [], + "obesity": ["M"], + "Delawares": [], + "flyleaf": ["M"], + "foul'sed": [], + "separably": ["I"], + "catchingings": [], + "treason's": [], + "summersing": [], + "retchesing": [], + "butter": ["M", "D", "G"], + "fractures": [], + "compiler": ["M"], + "grove": ["S", "M"], + "forklift's": [], + "dotard": ["S", "M"], + "whirligig'ses": [], + "gallbladders": [], + "rehears": ["G", "D"], + "earnestliness": [], + "manege's": [], + "dancersing": [], + "defacer's": [], + "fronds's": [], + "expose's": [], + "loadable": [], + "lollipops's": [], + "prerecording": [], + "epigrams's": [], + "thwart": ["G", "S", "M", "D"], + "periodontal": [], + "dreads": [], + "decline'sers": [], + "tunnel's": [], + "anatomy": ["S", "M"], + "bullock": ["S", "M"], + "politicians's": [], + "sprout'sed": [], + "vanillas's": [], + "gain's": [], + "punishingly": [], + "starvings": [], + "lathed": [], + "Klingon": ["M"], + "particles's": [], + "suffragist's": [], + "wiriness": ["M"], + "hearkens": [], + "interlocutor": ["S", "M"], + "postmaster'ses": [], + "LCM": [], + "rubble's": [], + "Alkaid's": [], + "formidably": [], + "predating": [], + "digitalis's": [], + "milliards": [], + "expedition": ["M"], + "journals": [], + "another": [], + "dingles": [], + "fulmination": ["M"], + "flamed": [], + "tousled": [], + "vulgarism'ses": [], + "Baez": ["M"], + "patchinesser": [], + "unrollinged": [], + "mammal's": [], + "overhung": [], + "Berle's": [], + "sightseer": ["M", "S"], + "priest": ["S", "M", "Y"], + "tauntersing": [], + "legato's": [], + "overstretched": [], + "advent's": [], + "mulcting's": [], + "birdwatcher": ["S", "M"], + "mangrove's": [], + "discomfited": [], + "spayeding": [], + "Smithsonian's": [], + "heartily": [], + "tatties": [], + "enunciation": ["M"], + "gunsmith": ["M"], + "coordinate": ["D", "S", "M", "Y", "G", "N"], + "hiccough": ["D", "G"], + "coordinator": ["M", "S"], + "Wittgenstein's": [], + "dobermans": [], + "IRS's": [], + "tossup's": [], + "keeps": [], + "Amber": ["M"], + "parasitism's": [], + "teal's": [], + "fourteen": ["S", "M", "H"], + "legionnaire's": [], + "Damien": ["M"], + "homophobia's": [], + "ovary": ["S", "M"], + "Ti's": [], + "gloves": [], + "chivyinged": [], + "dissolve": ["A", "G", "D", "S"], + "Biggles": ["M"], + "spumy": [], + "Alpert's": [], + "litterbug": ["M", "S"], + "tampering": [], + "juxtapositions": [], + "firelight": ["Z", "M", "R"], + "depression": ["S", "M"], + "protean": [], + "prosecutingen": [], + "originator's": [], + "chewiness's": [], + "medico'ses": [], + "imputing": [], + "Turing": ["M"], + "official": ["M", "Y", "S"], + "gangling": [], + "timberlines": [], + "sabotages's": [], + "teetotaler": ["M"], + "overvaluation": ["S"], + "bleeds": [], + "setscrews's": [], + "kipped": [], + "gambols": [], + "fiesta's": [], + "omnivorousnessly": [], + "squeegee": ["M", "D", "S"], + "cranks's": [], + "needlewomen": [], + "Pakistanis": [], + "plague'sing": [], + "regal": ["D", "Y", "G"], + "metaled": [], + "pastries": [], + "responsiveness's": [], + "amnesiacs": [], + "frat'ses": [], + "eggcups": [], + "swindle'sers": [], + "obliques's": [], + "firewall'ses": [], + "romanticize": ["D", "S", "G"], + "snugger": [], + "discover": ["A", "S", "D", "G"], + "attentively": [], + "jester's": [], + "smell": ["S", "M", "D", "G"], + "agronomy": ["M"], + "sailor": ["S", "M"], + "swizzleds": [], + "neurologically": [], + "homologous": [], + "ringings": [], + "wringsers": [], + "Bender's": [], + "rough'sed": [], + "phenomena": [], + "lattice's": [], + "syllabicationed": [], + "seconderly": [], + "bookstalls": [], + "windoweding": [], + "Wilde": ["M", "R"], + "hangar'ses": [], + "ovulates": [], + "lughole": ["S"], + "artilleryman": ["M"], + "apothecaries's": [], + "patents": [], + "madhouse's": [], + "atlas's": [], + "stalkersing": [], + "simonizesing": [], + "Dumpster's": [], + "scaremongers's": [], + "brainy": ["P", "T", "R"], + "landlady": ["S", "M"], + "preventive": ["S", "M"], + "knockers": [], + "quirkiness": ["M"], + "mollycoddle's": [], + "anvil": ["M", "S"], + "currencies": [], + "clanking's": [], + "stereo": ["S", "M"], + "carvinged": [], + "jivinged": [], + "deafnessens": [], + "pacemaker": ["S", "M"], + "ticklish": ["Y", "P"], + "seahorses": [], + "metropolises": [], + "raiding": [], + "respelling": [], + "drivelers": [], + "coo'sed": [], + "amps's": [], + "sunbed": ["S"], + "pantsing": [], + "gawkeding": [], + "murderers": [], + "concupiscent": [], + "opinion": ["M"], + "samovar": ["S", "M"], + "Bernie": ["M"], + "geeing": [], + "pitchers": [], + "adviser": ["M"], + "blissfulness": ["M"], + "Heracles's": [], + "composited": [], + "canvassesers": [], + "reckoned": [], + "touchierness": [], + "sweating": [], + "blathers's": [], + "pinch": ["G", "M", "D", "S"], + "exterminatesens": [], + "mitochondrion": [], + "accelerationsed": [], + "bliss": ["M"], + "attainder": ["M"], + "hipbone'ses": [], + "suppliant": ["S", "M"], + "Amati's": [], + "hibernate": ["G", "N", "D", "S"], + "iniquities's": [], + "couturier's": [], + "jockeysing": [], + "abhorrence's": [], + "circumstance's": [], + "everything": ["M"], + "heterodoxy": ["M"], + "evenness's": [], + "stabling": [], + "sequels": [], + "discouraged": [], + "Mann's": [], + "utilizing": [], + "cirrhotics": [], + "selenographer's": [], + "roiling": [], + "wingspans": [], + "scars": [], + "lutenists's": [], + "redivided": [], + "vexeds": [], + "Flint's": [], + "privily": [], + "Dniester's": [], + "rambled": [], + "perturbations": [], + "ruins": [], + "deuterium": ["M"], + "bonsai": ["M"], + "joyriders": [], + "flatnesses": [], + "maillot's": [], + "horribleness": ["M"], + "electrician'ses": [], + "backstabbers": [], + "Winkle": ["M"], + "splay's": [], + "watchfulness's": [], + "Lakota": ["M"], + "moraines": [], + "mangoes": [], + "marsupial's": [], + "vestries": [], + "yardmaster": ["M", "S"], + "Cal's": [], + "chemist'ses": [], + "absurdity's": [], + "shoguns": [], + "misfortunes's": [], + "signings": [], + "scootsers": [], + "construinged": [], + "height's": [], + "roamer's": [], + "motive'ses": [], + "cramped": [], + "turgid": ["Y"], + "quahog": ["M", "S"], + "cheerlessness's": [], + "assent's": [], + "stewardess": ["M", "S"], + "slammer's": [], + "wondered": [], + "sermon's": [], + "nondescript": [], + "Lori": ["M"], + "guesting": [], + "enforcement's": [], + "inheritance": ["E", "M"], + "clot'ses": [], + "Korans": [], + "gumbo's": [], + "lightship's": [], + "lunacy's": [], + "daisy": ["S", "M"], + "fluoroscope's": [], + "rev": ["Z", "V", "M"], + "oversaw": [], + "segmented": ["U"], + "tealight's": [], + "assassinates": [], + "commenced": [], + "nuanceds": [], + "dunkings": [], + "meaningful": ["P", "Y"], + "gardenia": ["M", "S"], + "emancipator'ses": [], + "writable": [], + "wimp's": [], + "Grenoble's": [], + "outbuilding": ["M", "S"], + "snared": [], + "millimeter": ["M", "S"], + "vilify": ["D", "S", "N", "G"], + "inappreciable": [], + "Aleppo's": [], + "wintering": [], + "bandits's": [], + "hotels's": [], + "forages": [], + "legation's": ["A", "C"], + "erythrocytes": [], + "Cordoba's": [], + "keeningness": [], + "metalworker's": [], + "taken": ["A"], + "sortieing": [], + "tidiers": [], + "piton": ["M", "S"], + "dolphin'ses": [], + "crybaby": ["S", "M"], + "reactivity": [], + "prissier": [], + "book": ["S", "B", "J", "G", "M", "D"], + "riflers": [], + "xvi": [], + "goofierness": [], + "juveniles": [], + "vaporizers": [], + "diver": ["M"], + "tumultuously": [], + "preference's": [], + "neonatal": [], + "decennial's": [], + "geometer": [], + "crag's": [], + "reminiscent": ["Y"], + "fingerboard's": [], + "Newtonian": ["M"], + "blubbery": [], + "layers": [], + "transmissible": [], + "pleasuresable": [], + "wavers": [], + "incest": ["M"], + "numismatics": ["M"], + "daftest": [], + "roundabouts": [], + "Labradors's": [], + "understandablings": [], + "pardonable": ["U"], + "Como": ["M"], + "brownies": [], + "Fuchs": ["M"], + "raid": ["Z", "G", "M", "D", "R", "S"], + "rehearsed": ["U"], + "Camembert'ses": [], + "dishtowel'ses": [], + "federalizeds": [], + "shoppe's": [], + "tonic": ["S", "M"], + "scar'sed": [], + "crasserly": [], + "trackless": [], + "Bronte": ["M"], + "skitters": [], + "tangy": ["R", "T"], + "circumnavigate": ["X", "G", "N", "D", "S"], + "reconnect": [], + "sad": ["P", "Y"], + "taxicab": ["S", "M"], + "disloyal": [], + "codas": [], + "Pinochet's": [], + "churlishness's": [], + "caper's": [], + "foreordaining": [], + "reliance": ["M"], + "monopolization": ["M"], + "comparable": ["I"], + "hold'ser": [], + "uninhibitedly": [], + "CZ": [], + "nets's": [], + "meal": ["M", "S"], + "Zanzibar": ["M"], + "sandman's": [], + "hemstitchesing": [], + "blistered": [], + "Bellini": ["M"], + "fanatics's": [], + "generalist": ["M", "S"], + "Neal": ["M"], + "ubiquity's": [], + "impossibility's": [], + "living": ["M", "S"], + "dareder": [], + "reckonings": [], + "numblies": [], + "repetition'ses": [], + "courier'sed": [], + "technocracies": [], + "grayish": [], + "pad": ["S", "M"], + "retrieversing": [], + "endorser": ["M"], + "avoidance": ["M"], + "unprocessed": [], + "bestir": ["S"], + "delightedly": [], + "pretexts": [], + "calculate": ["A", "G", "N", "V", "D", "S", "X"], + "ordinations": [], + "intermittently": [], + "therapeutic": ["S"], + "prizefight": ["Z", "G", "S", "M", "R"], + "rustication": ["M"], + "garret's": [], + "twister": ["M", "S"], + "Albanian'ses": [], + "lichens": [], + "Malawi": ["M"], + "federalize": ["G", "D", "S"], + "desks": [], + "makings": ["M"], + "persiflage's": [], + "pipers": [], + "snail'sed": [], + "osprey": ["S", "M"], + "hermetically": [], + "dullard": ["S", "M"], + "campanologist's": [], + "bicycle'sers": [], + "accordeds": [], + "soup": ["M", "D", "G", "S"], + "surveillance's": [], + "overproduce": ["G", "D", "S"], + "stumpiest": [], + "infirm": [], + "unhealthy": ["T"], + "wets's": [], + "tollway's": [], + "harries": [], + "seven": ["M", "H", "S"], + "compactest": [], + "preventives": [], + "showoff's": [], + "blueprinting": [], + "bleach": ["M", "D", "R", "S", "Z", "G"], + "firmer": [], + "cruelness": ["M"], + "intravenousesly": [], + "silt": ["G", "M", "D", "S"], + "accesses": [], + "perniciousness": ["M"], + "Hoffa": ["M"], + "hardheaded": ["P", "Y"], + "galloping": [], + "Creoles's": [], + "Moet": ["M"], + "vaccinate": ["G", "N", "D", "S", "X"], + "gouge'sers": [], + "coffeemakers's": [], + "titivation's": [], + "cream": ["S", "M", "D", "R", "Z", "G"], + "Zenger's": [], + "per": [], + "burp's": [], + "campsite's": [], + "incantations's": [], + "arabesque": ["M", "S"], + "staunches": [], + "breastplate's": [], + "Zest": ["M"], + "becalmings": [], + "proveds": [], + "Ahmadinejad": ["M"], + "Carnot": ["M"], + "amusingly": [], + "aquifer's": [], + "brawling": [], + "inversely": [], + "marginal": ["Y", "S"], + "penumbra": ["M", "S"], + "soundproofs": [], + "songwriter's": [], + "liberality": ["M"], + "dish'sed": [], + "perspicuous": [], + "repudiated": [], + "multimedia": ["M"], + "Ruby": ["M"], + "garbageman": [], + "fendings": [], + "paperweights": [], + "mastermind": ["S", "G", "M", "D"], + "manga": ["M"], + "holdouts's": [], + "amoebic": [], + "philter": ["M", "S"], + "Garrick's": [], + "toneder": [], + "purchasers": [], + "tempter": ["M"], + "lavishesly": [], + "sexton": ["M", "S"], + "pussycat'ses": [], + "tastersing": [], + "dreamers": [], + "transmogrification": ["M"], + "regarded": [], + "predilection": ["S", "M"], + "burdensome": [], + "hauberks": [], + "Fairbanks": ["M"], + "domino": ["M"], + "Chicago's": [], + "tightsen": [], + "blase": [], + "sledgehammer": ["G", "S", "M", "D"], + "eugenically": [], + "bristled": [], + "highlanders": [], + "fingerprint's": [], + "lowdown's": [], + "assumes": [], + "irresponsibility's": [], + "ramification": ["M"], + "submersion": ["M"], + "nightmares's": [], + "gravestones": [], + "sourdough's": [], + "Luciano's": [], + "avuncularly": [], + "Mo's": [], + "torment": ["S", "M", "D", "G"], + "commodity's": [], + "reupholster": [], + "Cancer's": [], + "crossness": ["M"], + "upturns's": [], + "canasta": ["M"], + "Hanover": ["M"], + "tureens": [], + "overstimulate": ["D", "S", "G"], + "livability": ["M"], + "exchanges's": [], + "lifestyles": [], + "interlardings": [], + "handcars": [], + "Batu": ["M"], + "aquanauts": [], + "Cong": ["M"], + "Zibo": ["M"], + "dimser": [], + "negotiateds": [], + "helical": [], + "directory's": [], + "macrologies": [], + "effectual": ["I", "Y"], + "blaspheming": [], + "sprained": [], + "Farley's": [], + "clothespins's": [], + "flamingo'ses": [], + "fragmentary's": [], + "revenging": [], + "horticulture": ["M"], + "dudes": [], + "brig": ["M", "S"], + "reservoir's": [], + "hydrosphere": ["M"], + "clanks": [], + "Valencia": ["S", "M"], + "warble": ["M", "Z", "G", "D", "R", "S"], + "Deann's": [], + "intercommunicated": [], + "cryingsed": [], + "hone's": [], + "spiffy": ["T", "R"], + "underexposure's": [], + "hectogram's": [], + "counterclaim'sed": [], + "enmeshes": [], + "Shelly": ["M"], + "accessing": [], + "sensitiveness's": [], + "fishy": ["T", "R", "P"], + "caner's": [], + "interstice's": [], + "booger": ["S"], + "mound'sed": [], + "Shintoism'ses": [], + "Bunuel's": [], + "tumblersing": [], + "gingerbread's": [], + "Nunki's": [], + "emulate": ["D", "S", "G", "N", "V", "X"], + "Alejandra's": [], + "grounds": [], + "exception's": [], + "recidivists's": [], + "Melisa": ["M"], + "confrontation's": [], + "sconces's": [], + "snowman's": [], + "instance": ["G", "D"], + "kneads": [], + "coinings": [], + "hexagon'ses": [], + "hoardersing": [], + "embitter": ["G", "L", "D", "S"], + "airway": ["M", "S"], + "mizzenmasts": [], + "lasting": ["Y"], + "farewells's": [], + "stuntings": [], + "fazeds": [], + "crimson's": [], + "pasturage's": [], + "espied": [], + "extensional": [], + "Reilly": ["M"], + "palace'ses": [], + "banyan's": [], + "credulity": ["I", "M"], + "mixersing": [], + "streaks": [], + "Elohim": ["M"], + "seethes": [], + "nonobservance": ["M"], + "officerser": [], + "slayerers": [], + "quilting": ["M"], + "lolcat": ["S", "M"], + "nasty": ["P", "T", "R"], + "rhinoceros": ["M", "S"], + "Carthaginians": [], + "tularemia's": [], + "jinx's": [], + "downcast": [], + "congruities's": [], + "hairballs": [], + "extortion": ["M", "R", "Z"], + "railroads": [], + "basset": ["S", "M"], + "demurer": [], + "dexterous": ["Y", "P"], + "taped": [], + "harasser": ["M"], + "watchfulness": ["M"], + "persecutions": [], + "circumspect": ["Y"], + "budget": ["S", "G", "M", "D"], + "ineligibles": [], + "Norris": ["M"], + "felicitated": [], + "debridement": [], + "squealer's": [], + "scruffiest": [], + "keelhauling": [], + "flue": ["M", "S"], + "nurseries's": [], + "Encarta's": [], + "incapably": [], + "Calvinistic": [], + "unframed": [], + "hardheadedly": [], + "alphanumerically": [], + "tinkles's": [], + "Saudi": ["M", "S"], + "geocentric": [], + "instantiate": ["D", "S", "G"], + "rave's": [], + "defenselessliness": [], + "ascendance's": [], + "Valvoline's": [], + "kerfuffles": [], + "socialism": ["M"], + "mellowed": [], + "blinker's": [], + "Nazarene": ["M"], + "fatuity's": [], + "ext": [], + "Nimitz's": [], + "canvasback's": [], + "Nancy": ["M"], + "whinny's": [], + "inspection": ["S", "M"], + "poorer": [], + "rashes": [], + "warder's": [], + "subjugation's": [], + "unready": [], + "Coloradan's": [], + "years": [], + "married's": [], + "stardom's": [], + "prototypes": [], + "regret's": [], + "upthrust": ["G", "S", "M"], + "quorum": ["S", "M"], + "monotonically": [], + "gleefully": [], + "teameds": [], + "Hutchinson": ["M"], + "Olympus's": [], + "proposal": ["M", "S"], + "destroying": [], + "chewing": [], + "imprintersing": [], + "drizzling": [], + "bites": [], + "plundereder": [], + "newton'ses": [], + "bottleneck": ["M", "S"], + "achieving": [], + "interrogators": [], + "misuseds": [], + "selenography's": [], + "cataleptics": [], + "butternut": ["S", "M"], + "stooped": [], + "unreported": [], + "nonfactual": [], + "kookier": [], + "Blucher's": [], + "salesgirls's": [], + "shining's": [], + "pollute": ["Z", "G", "N", "D", "R", "S"], + "Cyclops's": [], + "rushers": [], + "sloshing": [], + "handlersing": [], + "need's": [], + "ET": [], + "garnishee": ["D", "S", "M"], + "decapitation": [], + "revileder": [], + "hireling": ["M", "S"], + "degenerate's": [], + "crystallizes": [], + "sriracha": [], + "balding": [], + "oxidizeder": [], + "Kirghiz's": [], + "Archean's": [], + "Tocqueville": ["M"], + "Arthur's": [], + "Terry's": [], + "bronchi": [], + "electing": [], + "premiership": ["M", "S"], + "Andrei": ["M"], + "Kirchhoff": ["M"], + "Lajos's": [], + "overexposeds": [], + "slurs": [], + "maser": ["S", "M"], + "befouled": [], + "bookcase's": [], + "hypothalami": [], + "squalidest": [], + "school'sed": [], + "haphazardly": [], + "ampere": ["M", "S"], + "voyage's": [], + "Southampton": ["M"], + "throws's": [], + "Mubarak's": [], + "celerity's": [], + "waggishly": [], + "comforts's": [], + "cetaceans": [], + "waif's": [], + "rt": [], + "snowplowed": [], + "poem": ["M", "S"], + "brawnier": [], + "perambulate": ["X", "G", "N", "D", "S"], + "Hesperus's": [], + "pylorus's": [], + "tree's": [], + "nerdier": [], + "foremost": [], + "hark": ["D", "G", "S"], + "Bernie's": [], + "Yumas's": [], + "Kaiser": ["M", "S"], + "apartment": ["M", "S"], + "imposes": [], + "Bolshevist": ["M"], + "soloings": [], + "Unix": ["S"], + "wingerers": [], + "parterre's": [], + "rupee": ["S", "M"], + "kicksers": [], + "hygrometer": ["S", "M"], + "cantor's": [], + "quintupleds": [], + "Asiatic's": [], + "ionic": [], + "natural": ["U", "P", "Y"], + "indemnities": [], + "ragouts's": [], + "phosphate's": [], + "greened": [], + "enunciatesing": [], + "Nebraska": ["M"], + "discretionary": [], + "autobiographers": [], + "gutters": [], + "inflows's": [], + "fourth's": [], + "retards's": [], + "spreadsheet": ["M", "S"], + "handrail'ses": [], + "tensely": [], + "Beadle's": [], + "dispenser's": [], + "festering's": [], + "Mnemosyne": ["M"], + "wildcat'ses": [], + "pots's": [], + "savvy": ["D", "R", "S", "M", "T", "G"], + "affliction": ["S", "M"], + "AC's": [], + "fishnets": [], + "conjunctivitis": ["M"], + "afforest": ["E", "G", "S", "D"], + "baileys": [], + "wastepaper's": [], + "excitements": [], + "trajectory": ["S", "M"], + "Media": ["M"], + "micro": ["S", "M"], + "Dzerzhinsky's": [], + "immersesing": [], + "aphelions's": [], + "sequestratingen": [], + "reciprocals's": [], + "garfish'ses": [], + "bevy's": [], + "threateningly": [], + "chary": ["T", "R", "P"], + "okay": ["M", "S", "G"], + "disengage": [], + "cloacae": [], + "guffaweding": [], + "infrequently": [], + "wort": ["M"], + "Baghdad": ["M"], + "hydrates": [], + "pommel'sed": [], + "leathers": [], + "abscondeder": [], + "scurrilousness": ["M"], + "circumspection": ["M"], + "villain": ["S", "M"], + "modding": [], + "slipknot": ["M", "S"], + "Isaiah": ["M"], + "fireproofsing": [], + "differentiate": ["D", "S", "G", "N"], + "bylaw": ["S", "M"], + "subversiveness": ["M"], + "irradiatingen": [], + "whir's": [], + "classifier's": [], + "embossesers": [], + "incarceratingen": [], + "libertarian's": [], + "rumbustious": [], + "educateds": [], + "Fredrick": ["M"], + "mollies's": [], + "chirping's": [], + "ladylike": ["U"], + "TV's": [], + "expulsion": ["M", "S"], + "deviate": ["D", "S", "M", "G", "N", "X"], + "ultralight's": [], + "mainstream's": [], + "whimper'sed": [], + "softball's": [], + "hurling": ["M"], + "humble": ["D", "R", "S", "Z", "T", "G", "J", "P"], + "Catalans's": [], + "falsities": [], + "rumple's": [], + "simpleness": ["M"], + "filleted": [], + "protozoa": [], + "sinecure's": [], + "maliciousness's": [], + "ruffedly": [], + "probabilistic": [], + "obliged": [], + "policies's": [], + "seller's": [], + "variable's": [], + "pinwheeling": [], + "haggard": ["Y", "P"], + "squatted": [], + "disputing": [], + "excessive": ["Y"], + "gemological": [], + "striptease's": [], + "collections": [], + "tetrameters": [], + "Shreveport": ["M"], + "trouper": ["M"], + "dethronement": ["M"], + "inducingment": [], + "odometer'ses": [], + "outfit's": [], + "gels": [], + "steelyard's": [], + "dime's": [], + "Granada's": [], + "arums's": [], + "impressionability": ["M"], + "palers": [], + "aspiring": [], + "familiarize": ["G", "D", "S"], + "scatteringses": [], + "frayed": [], + "patent": ["G", "M", "D", "Y", "S"], + "wiretapping": ["M"], + "blouse'sing": [], + "harlotry": ["M"], + "brushwood's": [], + "egress's": [], + "jumpsuits": [], + "underline's": [], + "Alcott": ["M"], + "envisaginged": [], + "weedsers": [], + "snappiness": ["M"], + "shrubby": ["R", "T"], + "Trappists's": [], + "calumniates": [], + "accuseder": [], + "deanery": ["S", "M"], + "adolescence": ["S", "M"], + "celebrates": [], + "pore's": [], + "expectoration": ["M"], + "hogsheads's": [], + "emaciationed": [], + "Illuminati's": [], + "Rhone": ["M"], + "paternally": [], + "runt's": [], + "Yugoslav'ses": [], + "confession": ["S", "M"], + "silence'sers": [], + "auctioneers's": [], + "drones's": [], + "auspiciously": [], + "baptizer": ["M"], + "suited": ["U"], + "actuality": ["S", "M"], + "boss": ["D", "S", "G", "M"], + "monodies": [], + "classroom'ses": [], + "abiding": ["Y"], + "STD": [], + "washroom's": [], + "waltzers": [], + "barkers's": [], + "dressers": [], + "dinar": ["S", "M"], + "coachload": ["S"], + "Berry": ["M"], + "noncontributing": [], + "bough's": [], + "Songhua": ["M"], + "cheesecakes's": [], + "excommunicated": [], + "pseudonym": ["S", "M"], + "Alyce": ["M"], + "sculptors": [], + "liniments": [], + "sapphires": [], + "par'sed": [], + "crush": ["M", "D", "R", "S", "Z", "G"], + "logarithms": [], + "toadieds": [], + "backtracking": [], + "dissecting": [], + "shortchange": ["D", "S", "G"], + "howsoever": [], + "gritter": ["S", "M"], + "Duisburg's": [], + "nonconformists": [], + "grimace'sing": [], + "button": ["U", "S", "D", "G"], + "foundeding": [], + "commentators's": [], + "Ikhnaton's": [], + "depositor'ses": [], + "hayrick's": [], + "shove": ["M", "G", "D", "S"], + "pithy": ["R", "T", "P"], + "Changsha's": [], + "drabness": ["M"], + "hoicking": [], + "misquoteds": [], + "slipshod": [], + "coursebooks": [], + "contradiction's": [], + "junking": [], + "precipitatelying": [], + "Milwaukee": ["M"], + "jolliers": [], + "mishandlesing": [], + "sidestepping": [], + "crossbeam's": [], + "frequenters": [], + "vulgarism": ["M", "S"], + "chance's": [], + "sublime": ["Y", "T", "G", "D", "R", "S"], + "Minnie's": [], + "manically": [], + "overfloweds": [], + "hummus": ["M"], + "deprivinged": [], + "heist'sed": [], + "navel's": [], + "pronunciations": [], + "remorselessness": ["M"], + "integral": ["S", "M", "Y"], + "concertmasters": [], + "darneder": [], + "Angkor's": [], + "drug'ses": [], + "culpable": ["I"], + "Ashkenazim's": [], + "antiabortionist'ses": [], + "ibuprofen's": [], + "quotability's": [], + "unknowns": [], + "declines's": [], + "COBOL": ["S", "M"], + "Aelfric's": [], + "rubs": [], + "Flores's": [], + "wheresoever": [], + "Isabel's": [], + "struggle's": [], + "fornicator's": [], + "discommode": ["D", "G"], + "intimidate": ["G", "N", "D", "S"], + "soulmates": [], + "rowans": [], + "firming": [], + "maced": [], + "barons": [], + "Boethius": ["M"], + "section's": [], + "flinty": ["T", "R"], + "truism": ["M", "S"], + "lumbereder": [], + "hubcap": ["S", "M"], + "medleys": [], + "pockmark's": [], + "Yangtze": ["M"], + "strapped": ["U"], + "cabdriver's": [], + "humorous": ["P", "Y"], + "sneerings": [], + "Boole's": [], + "ominousness": ["M"], + "conversationalist": ["S", "M"], + "uncritical": [], + "apparel": ["M", "D", "G", "S"], + "ambitiousness": ["M"], + "controversially": [], + "malice": ["M"], + "intermediate": ["M", "Y", "S"], + "narrow": ["P", "T", "G", "M", "D", "R", "Y", "S"], + "Sharp's": [], + "skewing": [], + "cantor": ["M", "S"], + "attacker's": [], + "pirateds": [], + "turduckens": [], + "aggravation's": [], + "galena's": [], + "crick'sed": [], + "outlasteds": [], + "candled": [], + "decontest": [], + "yieldingses": [], + "denizen'ses": [], + "migrating": [], + "lurked": [], + "marination": ["M"], + "summaries's": [], + "bureaucratization": ["M"], + "yanksing": [], + "disgruntles": [], + "illustrationsed": [], + "advisedly": [], + "traverseds": [], + "rhea": ["M", "S"], + "epidural": ["S"], + "Ginger": ["M"], + "sacristy": ["S", "M"], + "arrogate": ["G", "N", "D", "S"], + "tingles's": [], + "Cauchy's": [], + "keg": ["S", "M"], + "keyboardersing": [], + "irresoluteness": ["M"], + "meaningfulness's": [], + "iodizing": [], + "Valenti": ["M"], + "pluralities's": [], + "trackings": [], + "naive": ["R", "Y", "T"], + "grimiest": [], + "paternalism": ["M"], + "plumbing's": [], + "Cornelius's": [], + "bimbo's": [], + "flat'sly": [], + "raider's": [], + "defected": [], + "fishnet's": [], + "Tishri": ["M"], + "several": ["M", "Y"], + "recruitment's": [], + "bowwows": [], + "remoteness's": [], + "ponderer's": [], + "enfranchises": [], + "cobweb": ["S", "M"], + "rooftop's": [], + "traducer": ["M"], + "steamrollered": [], + "Tammany's": [], + "unequal": ["D", "Y"], + "Oppenheimer's": [], + "layout's": [], + "fuse": ["C", "A", "I", "F", "G", "D", "S"], + "boorishness": ["M", "S"], + "aspartame's": [], + "mastering": [], + "scarp'sed": [], + "marmoset": ["S", "M"], + "magistrates's": [], + "worthiest": [], + "devotionals's": [], + "paranormal": [], + "holed": [], + "increasing": ["Y"], + "boozer's": [], + "mitigated": ["U"], + "squeezable's": [], + "competeds": [], + "scholarship": ["M", "S"], + "politicos": [], + "Lockean": ["M"], + "upswing'ses": [], + "Clarissa": ["M"], + "Beeton": ["M"], + "veneratingen": [], + "dopey": [], + "malignant": ["Y"], + "wallaby": ["S", "M"], + "pins": [], + "tickled": [], + "twitching": [], + "silvers": [], + "Mormonisms's": [], + "recalcitrance's": [], + "chars": [], + "outwardlies": [], + "unprofessional": ["Y"], + "schoolyard's": [], + "stiflesings": [], + "gendered": [], + "circumferential": [], + "typecastings": [], + "sitar's": [], + "flattening": [], + "wars's": [], + "fledgling's": [], + "popup's": [], + "victualeding": [], + "Abyssinia's": [], + "portages": [], + "asterisk": ["G", "M", "D", "S"], + "pitch": ["M", "D", "R", "S", "Z", "G"], + "french": [], + "functionaries's": [], + "Irvin's": [], + "autodidact": ["S", "M"], + "abandonsed": [], + "sergeant": ["M", "S"], + "conclusive": ["I", "Y", "P"], + "sloppy": ["P", "T", "R"], + "gondoliers": [], + "sorrowing": [], + "misdemeanor'ses": [], + "palpitating": [], + "Cyclopes": ["M"], + "yellower": [], + "stackeding": [], + "assistant's": [], + "cobbleder": [], + "tarnished": ["U"], + "spotlights": [], + "dandiers": [], + "curlew": ["S", "M"], + "scarring": [], + "rootlet": ["S", "M"], + "solidification": ["M"], + "gribbles": [], + "Selma": ["M"], + "woodeden": [], + "developers": [], + "bulldoze": ["Z", "G", "D", "R", "S"], + "Nevis": ["M"], + "stakes": [], + "superveneds": [], + "munched": [], + "counseled": [], + "stutter": ["M", "D", "R", "S", "Z", "G"], + "chasteness's": [], + "gradient's": [], + "chemotherapy's": [], + "reproacheds": [], + "Castor's": [], + "rig's": [], + "fridge": ["S", "M"], + "govt": [], + "basin'ses": [], + "mishearings": [], + "regrets's": [], + "politico": ["S", "M"], + "Maris's": [], + "dynamiting": [], + "prophylaxes": [], + "invalidation": [], + "toxins": [], + "cay's": [], + "carat's": [], + "Beth": ["M"], + "vaporous": [], + "moonbeam'ses": [], + "shortages": [], + "acorns": [], + "undecideds": [], + "laundries": [], + "animator'ses": [], + "nutpick": ["S", "M"], + "Hungarians": [], + "eMusic's": [], + "cahoot's": [], + "recoverable": ["U"], + "perverseness's": [], + "constituent": ["S", "M"], + "inkwell's": [], + "emission": ["S", "M"], + "pistil": ["S", "M"], + "spritzers": [], + "Monica's": [], + "aplomb's": [], + "snaffles's": [], + "board's": [], + "lilt's": [], + "midsize": [], + "subjugatingen": [], + "rickets's": [], + "springboards": [], + "fragiler": [], + "pneumatic": [], + "revolvable": [], + "nonaddictive": [], + "kindlinged": [], + "ironstone's": [], + "Bjork": ["M"], + "Mohave's": [], + "Willy's": [], + "atrophy": ["D", "S", "M", "G"], + "symphony's": [], + "curtaining's": [], + "Marcel": ["M"], + "physicists's": [], + "chillings": [], + "Monegasques's": [], + "buckshot": ["M"], + "victorious": ["Y"], + "snoopeder": [], + "Sloane's": [], + "albacore's": [], + "Jeannine's": [], + "summitry": ["M"], + "interim": ["M"], + "heterosexual'sly": [], + "carbolic": [], + "Oppenheimer": ["M"], + "hombre'ses": [], + "Apennines's": [], + "carafe": ["M", "S"], + "grouser": ["M"], + "trolley's": [], + "bopping": [], + "Mumbai": ["M"], + "conditional'sly": [], + "tooterers": [], + "disobey": [], + "tellurium's": [], + "tearjerker'ses": [], + "reaper": ["M"], + "verandas's": [], + "haltering's": [], + "entirety": ["M"], + "pylorus": ["M"], + "chow": ["S", "G", "M", "D"], + "breviary": ["S", "M"], + "wussier": [], + "pronouncing": [], + "sierra": ["M", "S"], + "writ": ["M", "R", "B", "J", "S", "Z", "G"], + "janglers": [], + "stallholders": [], + "VI": ["M"], + "antifreeze's": [], + "guffawings": [], + "Valarie": ["M"], + "almanac": ["S", "M"], + "irradiation": ["M"], + "pressing": ["S", "M", "Y"], + "cormorant": ["S", "M"], + "marshal's": [], + "catchersing": [], + "stoplight": ["M", "S"], + "proportionate": ["E", "Y"], + "appertained": [], + "decaf's": [], + "reameder": [], + "libel's": [], + "pyromania": ["M"], + "ponces": [], + "Remarque": ["M"], + "gimcrackery's": [], + "windsocks": [], + "betidinged": [], + "blathering": [], + "guaranteed": [], + "jacaranda": ["M", "S"], + "Kuwaiti": ["S", "M"], + "equators's": [], + "sugarplums": [], + "familiarity": ["U", "M"], + "requiem": ["S", "M"], + "shuttereding": [], + "humbug": ["S", "M"], + "simplification's": [], + "parsnip's": [], + "quoins": [], + "forelegs's": [], + "conclusions": [], + "kidskin": ["M"], + "footy": [], + "Luciano": ["M"], + "chinstrap'ses": [], + "remissly": [], + "skywriters": [], + "marry": ["A", "G", "D", "S"], + "newsweekly's": [], + "housemaids": [], + "cubicle's": [], + "Horowitz": ["M"], + "Morgan's": [], + "unquestionable": [], + "trouser's": [], + "Malians's": [], + "sutured": [], + "kindergarten": ["M", "S"], + "production": ["A", "S", "M"], + "bobcat": ["M", "S"], + "Puebla": ["M"], + "premise's": [], + "artist'ses": [], + "boundary": ["S", "M"], + "psychologies's": [], + "Texas": ["M"], + "popovers's": [], + "agent'ses": [], + "paralyzingly": [], + "lindens": [], + "zing": ["M", "D", "R", "Z", "G"], + "burgeoneds": [], + "purser's": [], + "inventiveness": ["M"], + "foxing": [], + "inattention": [], + "LCD's": [], + "mentalists": [], + "immunizations": [], + "escarpment's": [], + "Rick's": [], + "recantation's": [], + "intimates": [], + "gin's": [], + "flameproofeding": [], + "opulently": [], + "extensive": ["Y", "P"], + "exempt": ["S", "G", "D"], + "tube": ["M", "S"], + "gentian's": [], + "busily": [], + "Oaxaca's": [], + "brickbats's": [], + "jadeite": ["M"], + "chairpersons's": [], + "refrigerator's": [], + "jewelries's": [], + "Sophia": ["M"], + "Campinas's": [], + "oenology's": [], + "dangerous": ["Y"], + "napping": [], + "thenceforth": [], + "disgorgement": ["M"], + "gorgeds": [], + "hypermedia": ["M"], + "oinking": [], + "Pullman'ses": [], + "morsels": [], + "discourages": [], + "sasseds": [], + "rompeder": [], + "brother": ["M", "Y"], + "implosion": ["M", "S"], + "changeableness": ["M"], + "applicability's": [], + "worsted": ["M"], + "Voltaire": ["M"], + "glowingly": [], + "chair's": [], + "turquoises's": [], + "midland's": [], + "generatings": [], + "Stephanie's": [], + "organizers": [], + "appalleds": [], + "appropriationsed": [], + "biters": [], + "Kuwait": ["M"], + "bellicosity": ["M"], + "dialectics's": [], + "Jonson's": [], + "pond": ["M", "S"], + "dismantlement": ["M"], + "hexagram's": [], + "Dmitri": ["M"], + "nonphysically": [], + "preponderance's": [], + "DE": [], + "dockings": [], + "unhurried": [], + "supervisions": [], + "ekesing": [], + "Zamboni": ["M"], + "iterating": [], + "anagram'ses": [], + "negatives": [], + "censureder": [], + "transmigrates": [], + "vehicle'ses": [], + "appurtenance": ["S", "M"], + "erector's": [], + "musicallies": [], + "quarries's": [], + "bonged": [], + "creosote": ["M", "G", "D", "S"], + "Cain": ["S", "M"], + "Capuchin's": [], + "hydrogenous": [], + "moaners": [], + "achievers": [], + "PVC's": [], + "backtrack": ["S", "D", "G"], + "consecration": ["A", "M"], + "frieze": ["S", "M"], + "spermicide'ses": [], + "bellyachinged": [], + "finial's": [], + "crawlers": [], + "faradized": [], + "equivalence's": [], + "wipersing": [], + "Sigismund's": [], + "cusp's": [], + "settling": [], + "shires": [], + "abstraction": ["S", "M"], + "flogged": [], + "smarty's": [], + "Xavier's": [], + "Brooklyn": ["M"], + "tightener's": [], + "cassava": ["S", "M"], + "stigmatizing": [], + "forklift": ["M", "S"], + "xii": [], + "crematoria": [], + "Theron's": [], + "revelries's": [], + "education": ["A", "M"], + "Goudas": [], + "Barcelona's": [], + "peyote's": [], + "ambuscadinged": [], + "rototiller's": [], + "stockier": [], + "boreholes": [], + "militiamen": [], + "soundproofinged": [], + "dabbleder": [], + "heat": ["A", "D", "G", "S"], + "pursinged": [], + "diatomic": [], + "corroborator's": [], + "illustrating": [], + "symbolized": [], + "cortisone's": [], + "inkblot": ["S", "M"], + "slack'sed": [], + "steaks's": [], + "Condillac": ["M"], + "modems's": [], + "starch's": [], + "iridium": ["M"], + "varlet's": [], + "pekingese": ["S", "M"], + "atrophied": [], + "vieds": [], + "undersecretaries's": [], + "diatribe": ["S", "M"], + "saltcellar": ["S", "M"], + "Stine": ["M"], + "biofeedback": ["M"], + "slaversing": [], + "Manson": ["M"], + "cremes's": [], + "idiots's": [], + "eglantines": [], + "mythologizes": [], + "crosspieces's": [], + "as": [], + "rhymersing": [], + "torrents": [], + "defectiveness": ["M"], + "woollies": [], + "decontrol": [], + "revolutionizes": [], + "memoir'ses": [], + "raincoat's": [], + "scad'ses": [], + "doghouses's": [], + "hostessed": [], + "mates": [], + "photographersing": [], + "derriere": ["S", "M"], + "highlighting": [], + "guarder's": [], + "hi": ["S", "D"], + "wrongest": [], + "sundered": [], + "crossroad's": [], + "flaw": ["M", "D", "G", "S"], + "endogenously": [], + "expandable": [], + "avaunt": [], + "superficiality": ["M"], + "plaudits": [], + "embarrassments": [], + "remodeled": [], + "legatee": ["M", "S"], + "bastes": [], + "realist's": [], + "consignee's": [], + "wandered": [], + "discordance": ["M"], + "scarpereding": [], + "checkoffs": [], + "departmentalizeds": [], + "meowing": [], + "etched": [], + "calypso's": [], + "splashdown'ses": [], + "expectancy's": [], + "Tallinn's": [], + "Avis's": [], + "inexorability": [], + "flies": [], + "mimed": [], + "laptops's": [], + "hussy": ["S", "M"], + "microwave": ["D", "S", "M", "G", "B"], + "chivies": [], + "sniffling": [], + "brunette's": [], + "bare": ["D", "R", "S", "P", "Y", "G"], + "ironing's": [], + "reconsort": [], + "dampeneder": [], + "orgasm's": [], + "shielded": [], + "dumdums": [], + "Songhua's": [], + "adulteratingen": [], + "giantess's": [], + "gouger's": [], + "serge's": [], + "chines": [], + "Blackwell's": [], + "sneeringly": [], + "desiccatingen": [], + "periscope": ["S", "M"], + "predesignate": ["G", "D", "S"], + "islanders": [], + "skipper": ["S", "M", "D", "G"], + "shepherdeding": [], + "coffeepot'ses": [], + "commendatory": [], + "cannonading": [], + "kronor": [], + "wavy": ["P", "R", "T"], + "acerbateds": [], + "Chesterton's": [], + "skeins": [], + "sizzlers": [], + "shoaling's": [], + "Norse": ["M"], + "bitumen": ["M"], + "freestones's": [], + "nunneries's": [], + "penuriousness's": [], + "parcel'sed": [], + "swathing's": [], + "levitation": ["M"], + "seasickness": ["M"], + "escalation": ["C", "M"], + "workaday": [], + "intractable": [], + "byes's": [], + "teleportation": [], + "burnishersing": [], + "butte's": [], + "castaway'ses": [], + "cockleshell's": [], + "sonority's": [], + "Estelle's": [], + "destinesing": [], + "Atlanta's": [], + "roundworm": ["S", "M"], + "missus": ["M", "S"], + "Puget": ["M"], + "Sheba's": [], + "uncustomary": [], + "freighteder": [], + "pronouncementing": [], + "Icelander's": [], + "steersman's": [], + "honing's": [], + "Horus's": [], + "ascendancy's": [], + "niggard's": [], + "compliance": ["M"], + "ingestsed": [], + "twofers": [], + "graciousness's": [], + "crossbreeds": [], + "fixersing": [], + "astonished": [], + "Parkinson's": [], + "tracks": [], + "bumpy": ["P", "R", "T"], + "mickey": ["M", "S"], + "tantalizersing": [], + "diddly": [], + "Salvadorean'ses": [], + "accident": ["M", "S"], + "blanchinged": [], + "apologize": ["G", "D", "S"], + "Sabine's": [], + "promenade": ["M", "G", "D", "S"], + "impenetrability": ["M"], + "musing's": [], + "gleam'sed": [], + "footerers": [], + "Snider": ["M"], + "worse's": [], + "nestlings": [], + "crunchier": [], + "Muslim": ["M", "S"], + "deluge's": [], + "tuts's": [], + "syllabus": ["M", "S"], + "hooks": [], + "miscalled": [], + "emo": ["S", "M"], + "background": ["M", "R", "Z", "S"], + "incertitude": [], + "proffered": [], + "nuking": [], + "prompter's": [], + "inflates": [], + "understatements": [], + "Cathryn's": [], + "Mirzam's": [], + "conformism": ["M"], + "lured": [], + "wax": ["G", "M", "D", "N", "S"], + "Heidegger": ["M"], + "lankness's": [], + "nonappearance": ["M", "S"], + "wails": [], + "dozing": [], + "warlock's": [], + "realizations": [], + "Don": ["S", "M"], + "hijacking": ["M"], + "hillock": ["M", "S"], + "windbags's": [], + "swigs": [], + "Tangier's": [], + "Gatun": ["M"], + "recluse's": [], + "Vito": ["M"], + "cur'sly": [], + "Rastaban": ["M"], + "litter's": [], + "golfer's": [], + "colonnades": [], + "worksheets": [], + "volleys's": [], + "Ottoman's": [], + "chairwoman's": [], + "tripping": [], + "dabber's": [], + "necklace'sing": [], + "enthronements": [], + "Madonnas": [], + "subversion": ["M"], + "reasoned": [], + "smirch'sed": [], + "maladies's": [], + "boilermakers's": [], + "limbereds": [], + "annualized": [], + "semblance": ["A", "S", "M"], + "spearhead's": [], + "ballseds": [], + "mat's": [], + "gradesing": [], + "rush": ["M", "D", "R", "S", "Z", "G"], + "baptists": [], + "terrains's": [], + "candidness's": [], + "stalactites": [], + "mourners": [], + "Bellamy's": [], + "Fichte's": [], + "Andre'ses": [], + "millennium's": [], + "prenup": ["S", "M"], + "bite": ["R", "S", "M", "Z"], + "shawl": ["M", "S"], + "cosmology": ["S", "M"], + "sots's": [], + "Hawaiian's": [], + "tiptops": [], + "journeying's": [], + "ineligible": ["M", "S"], + "availing": [], + "gear'sed": [], + "specifiersed": [], + "glaze": ["D", "S", "M", "G"], + "honeysuckle's": [], + "sprung": [], + "Rhee's": [], + "clop's": [], + "bulldogs": [], + "hairsplitters's": [], + "Bruckner's": [], + "injects": [], + "stingers": [], + "openness's": [], + "indispensability": ["M"], + "spook": ["S", "M", "D", "G"], + "cudgel'sed": [], + "Krupp": ["M"], + "manipulator'ses": [], + "lectern's": [], + "ablution": ["S", "M"], + "gassed": ["C"], + "campaign": ["S", "M", "D", "R", "Z", "G"], + "solidificationing": [], + "sepia": ["M"], + "lamenteding": [], + "flyby": ["M"], + "outright": [], + "Myron's": [], + "repentsed": [], + "ipecac's": [], + "medicaid's": [], + "embellishes": [], + "galleon": ["S", "M"], + "gamiest": [], + "kickback": ["S", "M"], + "conveyance'sing": [], + "hassle's": [], + "oatmeal": ["M"], + "harrumphs": [], + "liker": [], + "underside's": [], + "Gantry": ["M"], + "iteratingen": [], + "verrucas's": [], + "ditchesing": [], + "filmstrip's": [], + "Milosevic": ["M"], + "threshes": [], + "Mickie's": [], + "ambulance": ["M", "S"], + "clinger": ["M"], + "Tarkenton's": [], + "portrays": [], + "Shinto'ses": [], + "vulgarizing": [], + "scales": [], + "turtle's": [], + "furrier's": [], + "conformance's": [], + "Frontenac's": [], + "tongueless": [], + "guilder's": [], + "constipatingen": [], + "windshields": [], + "sallowness's": [], + "HT": [], + "sheaving": [], + "scotchs": [], + "tortes's": [], + "scooped": [], + "snow's": [], + "strengtheneds": [], + "computation's": [], + "toasts": [], + "parkway": ["M", "S"], + "clamminess": ["M"], + "sutler's": [], + "misapprehends": [], + "dominatesing": [], + "paintbrush'ses": [], + "telex's": [], + "futurologist'ses": [], + "couplet'ses": [], + "supervise": ["X", "G", "N", "D", "S"], + "Elbe": ["M"], + "lecherous": ["P", "Y"], + "spyglass": ["M", "S"], + "concessionary": [], + "Wisconsinites": [], + "compassion": ["M"], + "message'sing": [], + "surtaxeds": [], + "pigeon'ses": [], + "twilight": ["M"], + "fluttering": [], + "hardily": [], + "dealership's": [], + "skyjacksed": [], + "crank's": [], + "sleet's": [], + "Brewster": ["M"], + "eased": [], + "COBOLs": [], + "commodiously": [], + "soliloquizeds": [], + "boxier": [], + "filibustered": [], + "bedtimes's": [], + "pranged": [], + "Filipinos": [], + "kaffeeklatch": ["M", "S"], + "sharpenings": [], + "charades": [], + "swelled": [], + "battledore's": [], + "Dillard": ["M"], + "Cozumel": ["M"], + "humored": [], + "blinkereding": [], + "phone's": [], + "tithers": [], + "assortmented": [], + "Popper's": [], + "nonviolently": [], + "acrostic's": [], + "wig": ["S", "M"], + "hundreds's": [], + "propagated": [], + "refuse's": [], + "deceitfully": [], + "signorina'ses": [], + "milepost": ["M", "S"], + "bushing's": [], + "cupfuls": [], + "defend": [], + "workman": ["M"], + "jurymen": [], + "stratum": ["M"], + "postmaster": ["M", "S"], + "greathearted": [], + "newspeak": [], + "sauteed": [], + "gunny's": [], + "gerbils": [], + "Kayla": ["M"], + "Knapp": ["M"], + "torments": [], + "modernly": [], + "Molnar": ["M"], + "glories": [], + "slanders": [], + "washings's": [], + "Maris": ["M"], + "allegations": [], + "rhapsodies": [], + "Yuri": ["M"], + "discriminates": [], + "secondmenters": [], + "refractory's": [], + "low's": [], + "exemplifying": [], + "threat'sen": [], + "inkiness's": [], + "interjects": [], + "skewering": [], + "quarantine's": [], + "curia": ["M"], + "Quasimodo": ["M"], + "firmly": [], + "endways": [], + "auctioneers": [], + "untiring": ["Y"], + "Cook's": [], + "sensitizes": [], + "Malawi's": [], + "limitlessness's": [], + "jade": ["M", "G", "D", "S"], + "sailors": [], + "intermediate'sly": [], + "scarificationed": [], + "spams": [], + "spiritualistic": [], + "stubbornliness": [], + "whelps": [], + "businesspersons": [], + "glimmering": ["M"], + "trivializes": [], + "lightheartedness's": [], + "conquistadors's": [], + "enhance": ["L", "Z", "G", "D", "R", "S"], + "untenable": [], + "hothouse's": [], + "optimum's": [], + "puma's": [], + "junkers": [], + "interfiles": [], + "subaqua": [], + "hurrying": [], + "hit's": [], + "breaststroke": ["S", "M"], + "overrated": [], + "extraterritoriality's": [], + "infrastructure's": [], + "goshawks": [], + "bringser": [], + "plunderer": ["M"], + "lutenists": [], + "recasting": [], + "destinations": [], + "undid": [], + "cartoon's": [], + "cheerfulness's": [], + "generosities": [], + "OCR": [], + "Cuba's": [], + "stubbed": [], + "smelliness's": [], + "subaltern": ["M", "S"], + "signboard'ses": [], + "squeezed": [], + "Berg's": [], + "defenselessness": ["M"], + "pediatrics's": [], + "hilt'ses": [], + "justify": ["X", "G", "D", "S", "N"], + "sponger's": [], + "please": ["E", "D", "S", "G"], + "belled": ["A"], + "revokeds": [], + "Tsongkhapa's": [], + "poorboy": ["M"], + "antibiotic'ses": [], + "amercing": [], + "fever": ["S", "M", "D"], + "arbitrateds": [], + "baronies": [], + "enfranchising": [], + "Len's": [], + "biasing": [], + "adjournment's": [], + "Zephaniah": ["M"], + "courtlier": [], + "Yenisei's": [], + "turbos's": [], + "stressful": [], + "electrocutions": [], + "cellists": [], + "daintily": [], + "subcontinents": [], + "failure": ["S", "M"], + "unrulier": [], + "semicircle's": [], + "clothier": ["M", "S"], + "postponement's": [], + "crafteding": [], + "drift's": [], + "deterrence's": [], + "taxing's": [], + "Britisherers": [], + "redraws": [], + "fairylands": [], + "goods": ["M"], + "transgress": ["G", "D", "S"], + "upbraidinged": [], + "semiautomatic'ses": [], + "Ahmed's": [], + "percussionist": ["M", "S"], + "extroverted": [], + "groins": [], + "aggravation": ["M"], + "article": ["M", "D", "S"], + "cultism": ["M"], + "comedienne": ["M", "S"], + "preventable": ["U"], + "florin's": [], + "granddads's": [], + "isotherm": ["S", "M"], + "prescripts": [], + "Oregon": ["M"], + "freedman's": [], + "pelvises": [], + "marketeers": [], + "heedlessnessly": [], + "minded": ["P"], + "slacked": [], + "confinements": [], + "ungratefulness": [], + "joyful": ["Y", "P"], + "spumes": [], + "wed": ["A", "S"], + "pommeling": [], + "grasshopper'ses": [], + "erupteding": [], + "cypresses": [], + "alternators": [], + "Smyrna": [], + "spitballs": [], + "turbot": ["S", "M"], + "tongues": [], + "pirouetteds": [], + "rundown's": [], + "recidivism": ["M"], + "instantiates": [], + "waterings": [], + "intermixinged": [], + "girlhood": ["S", "M"], + "peeper's": [], + "nonlethal": [], + "rifleman": ["M"], + "reapeder": [], + "propriety": ["S", "M"], + "pathway's": [], + "overbookings": [], + "adsorbeding": [], + "dairymaids": [], + "prime's": [], + "revolutionist's": [], + "clergywoman": ["M"], + "appalling": ["Y"], + "datelining": [], + "insinuators": [], + "remorseful": ["Y"], + "drugstore": ["M", "S"], + "mobilizes": [], + "braiding's": [], + "page": ["M", "Z", "G", "D", "R", "S"], + "Mach": ["M"], + "enumerateds": [], + "snatchers": [], + "gazettinged": [], + "pedestal'ses": [], + "converse": ["Y"], + "Church": ["M"], + "Jamel's": [], + "piker": ["M"], + "sabers": [], + "reversal's": [], + "hoick": ["S", "G", "D"], + "considered": ["U"], + "envisaged": [], + "carapaces's": [], + "Squanto's": [], + "fabricatesing": [], + "unassuming": ["Y"], + "rodeos": [], + "peeving": [], + "problem": ["M", "S"], + "8th": ["p", "t"], + "topaz's": [], + "artiste's": [], + "McFarland": ["M"], + "jejunum's": [], + "inspections": [], + "fail'sed": [], + "Irvine": ["M"], + "quadrille'sen": [], + "Webster": ["M", "S"], + "hammerlocks": [], + "priapic": [], + "turnpike": ["M", "S"], + "babels": [], + "female": ["P", "S", "M"], + "Scarlatti's": [], + "Gethsemane": ["M"], + "boar's": [], + "lockers": [], + "dollopsing": [], + "corridor's": [], + "homogeneously": [], + "northeaster": ["M", "Y"], + "jiffies": [], + "decayed": [], + "hydrofoil's": [], + "grasshopper": ["M", "S"], + "lamina": ["M"], + "namesakes": [], + "instrumentality's": [], + "birder": ["M"], + "dabbler's": [], + "Dhaulagiri's": [], + "horseradishes": [], + "conveyance's": [], + "leaven": ["S", "G", "M", "D"], + "transliterating": [], + "reveling": [], + "triumvir'ses": [], + "indexations": [], + "anchorwomen": [], + "Menelik's": [], + "undertow's": [], + "complimentings": [], + "Gascony's": [], + "fervent": ["Y"], + "whizzbang'ses": [], + "tarnishes": [], + "Stromboli's": [], + "freakeding": [], + "earldom": ["S", "M"], + "lynx": ["M", "S"], + "misreported": [], + "horsey": [], + "pairs": [], + "bangle": ["S", "M"], + "evaporated": [], + "uneconomic": [], + "neoclassical": [], + "Madeiras": [], + "confidants": [], + "downswing": ["M", "S"], + "bruising": ["M"], + "atmosphere": ["M", "S"], + "lame": ["M", "Y", "Z", "T", "G", "D", "R", "S", "P"], + "throw'ser": [], + "upsets": [], + "Styx": ["M"], + "remedyinged": [], + "Irma": ["M"], + "abnegation's": [], + "muggle's": [], + "Bahamian": ["M", "S"], + "wallpaper": ["S", "M", "D", "G"], + "Janette's": [], + "curing": [], + "illicitness's": [], + "discreetest": [], + "noblewomen": [], + "microprocessors": [], + "inwards": [], + "ludicrousness's": [], + "pleura": ["M"], + "transcript's": [], + "Thailand": ["M"], + "Ofelia": ["M"], + "ripostinged": [], + "mage's": [], + "biopsied": [], + "cachet's": [], + "blunderbuss": ["M", "S"], + "Scotswoman": ["M"], + "johnnycake": ["M", "S"], + "millimeters": [], + "bent's": [], + "bathroom": ["S", "M"], + "transferred": [], + "Markab": ["M"], + "refashioned": [], + "inboard": ["M", "S"], + "commissioning": [], + "Britannic's": [], + "contagiousness's": [], + "backhandedly": [], + "vegans": [], + "stretcheder": [], + "etudes's": [], + "moorland": ["M", "S"], + "vaqueros": [], + "acceleration's": [], + "architectonics": ["M"], + "Rasalgethi": ["M"], + "photostats's": [], + "basteder": [], + "chlorination's": [], + "contrapuntally": [], + "hazmat": [], + "purls": [], + "alloyeds": [], + "stooge's": [], + "squalling": [], + "forwardly": [], + "stepdaughters": [], + "screameder": [], + "predeceases": [], + "Playtex": ["M"], + "complaints": [], + "unable": [], + "motorcycleds": [], + "Capek's": [], + "Buchanan": ["M"], + "staging": ["M"], + "doze's": [], + "aristocrats": [], + "corrugationens": [], + "simulating": [], + "tunnies's": [], + "ringlet": ["M", "S"], + "Hun": ["S", "M"], + "cupid": ["S", "M"], + "waverers": [], + "primped": [], + "charbroilinged": [], + "strike'sers": [], + "looters": [], + "whir'ses": [], + "deciduous": [], + "eddy's": [], + "emaciate": ["G", "N", "D", "S"], + "DuPont's": [], + "penetrability": ["M"], + "Porsche": ["M"], + "assemblesed": [], + "electrolysis": ["M"], + "interlaces": [], + "arguably": ["U"], + "Botticelli's": [], + "sorceress": ["M", "S"], + "stimulative": [], + "compeer": ["S", "M"], + "myrtle's": [], + "whiny": ["R", "T"], + "dextrose's": [], + "elitists": [], + "Thieu's": [], + "ledgers": [], + "mitochondria": [], + "gradsable": [], + "incompetent's": [], + "carded": [], + "gyroscope's": [], + "Buddy": ["M"], + "skoals's": [], + "Kemerovo's": [], + "obliviously": [], + "tossers": [], + "triumphs": [], + "professorship": ["S", "M"], + "oriole": ["S", "M"], + "woodblock's": [], + "glitch'sed": [], + "deadly": ["T", "P", "R"], + "answer": ["B", "M", "D", "G", "S"], + "flood'sed": [], + "capitulationsing": [], + "detainment's": [], + "appropriation": ["M"], + "unctuous": ["Y", "P"], + "meadows": [], + "shallot": ["M", "S"], + "Netherlands's": [], + "uppercut": ["M", "S"], + "possibles's": [], + "monopolize": ["D", "R", "S", "Z", "G"], + "slows": [], + "jibe's": [], + "Tia": ["M"], + "swanker": [], + "Boyd": ["M"], + "trashing": [], + "orgies": [], + "mutilators's": [], + "validating": [], + "shipper's": [], + "preponderance": ["S", "M"], + "towheaded": [], + "Michaelmas's": [], + "upsurge'sing": [], + "Baath": ["M"], + "volition's": [], + "restateds": [], + "overall's": [], + "holsters's": [], + "prescript": ["S", "V", "M"], + "Te's": [], + "hexes": [], + "girded": [], + "bolivars": [], + "Garner": ["M"], + "Margo's": [], + "psychesing": [], + "craven'sly": [], + "hypheneds": [], + "answerable's": [], + "Gogol's": [], + "microorganism's": [], + "Lyle": ["M"], + "queen'sed": [], + "motionlessness": ["M"], + "distinctions's": [], + "Dis's": [], + "ingrate": ["S", "M"], + "dartersing": [], + "lance's": [], + "thole's": [], + "upstroke": ["S", "M"], + "IPA": [], + "Cheviot": ["M"], + "ceder'ses": [], + "patter": ["M", "D", "G", "S"], + "evanescence": ["M"], + "homogenization": ["M"], + "theorist's": [], + "Wolfe": ["M"], + "deejay": ["M", "S"], + "patroons": [], + "urbanizes": [], + "substantial": ["I", "Y"], + "Shiva": ["M"], + "Morin's": [], + "minder": [], + "eardrums's": [], + "steelworker's": [], + "mulligatawny": ["M"], + "amputating": [], + "mousses": [], + "avast": [], + "sailboards": [], + "Er's": [], + "variant": ["M", "S"], + "multiculturalism": ["M"], + "Kuwaitis": [], + "alone": [], + "hypoglycemic's": [], + "larcenous": [], + "creamiest": [], + "speaks": [], + "Shawnee's": [], + "piddling": [], + "confederacies": [], + "Andean": ["M"], + "mammals": [], + "snarly": ["T", "R"], + "life": ["M", "Z", "R"], + "IRA": ["S", "M"], + "grater's": [], + "dovecotes": [], + "pileups": [], + "Olmec's": [], + "trenchermen": [], + "jinx'sed": [], + "mallet's": [], + "wearsers": [], + "compassion's": [], + "mooch'sed": [], + "dutifully": [], + "bowmen": [], + "Adler's": [], + "entrencheds": [], + "Cato": ["M"], + "snugged": [], + "giant's": [], + "mussels": [], + "Ark": ["M"], + "wrinklinged": [], + "cosignatory": ["S", "M"], + "receptor": ["S", "M"], + "recolonize": [], + "denominational": [], + "Gaels": [], + "zingy": ["R", "T"], + "measurement": ["M", "S"], + "lamebrain's": [], + "scurrieds": [], + "prearranging": [], + "senseless": ["P", "Y"], + "empowereding": [], + "freezings": [], + "suffrage's": [], + "storehouse": ["M", "S"], + "falsified": [], + "stickers": [], + "illegality's": [], + "virago": ["M"], + "scuffle's": [], + "madrigals": [], + "Weissmuller's": [], + "hoax": ["M", "D", "R", "S", "Z", "G"], + "Hangzhou's": [], + "grope'sers": [], + "cascade's": [], + "wreckers": [], + "possessesed": [], + "Wisconsinite's": [], + "sportive": ["Y"], + "remand": ["S", "G", "D"], + "Saxons": [], + "proceed": ["G", "J", "D", "S"], + "shoring": ["M"], + "cogs's": [], + "dispenser": ["M"], + "disjointedly": [], + "whelm": ["S", "D", "G"], + "Steve": ["M"], + "fruitfulliness": [], + "reference'sing": [], + "videocassette": ["S", "M"], + "impertinence's": [], + "laughingstocks's": [], + "crunching": [], + "Christmas'ses": [], + "growlersing": [], + "trapping": ["S"], + "recalcitrant": [], + "bozo'ses": [], + "Marcella's": [], + "freckle'sing": [], + "vintage'ses": [], + "joblessness": ["M"], + "vistas's": [], + "tamaracks": [], + "assumption": ["S", "M"], + "viper's": [], + "retardant": ["S", "M"], + "pamphlet's": [], + "opaquenessly": [], + "nonperson": ["M", "S"], + "jogged": [], + "laundromat'ses": [], + "deficiency": ["S", "M"], + "scrawly": [], + "pulsationed": [], + "naff": ["R", "T"], + "fatefully": [], + "vernacular": ["M", "S"], + "moviegoers's": [], + "masker's": [], + "pharisees's": [], + "thematic": [], + "unhealthiest": [], + "dahlias": [], + "ells's": [], + "Genoa's": [], + "pulverizeds": [], + "blockaded": [], + "pismire": ["S", "M"], + "Miriam's": [], + "GB": ["M"], + "laxative'ses": [], + "incineratesing": [], + "erectness's": [], + "birthmark'ses": [], + "overfeed": ["G", "S"], + "bayou's": [], + "smartphones": [], + "flower": ["C", "S", "D", "G"], + "misspent": [], + "brokers's": [], + "month'sly": [], + "woefuller": [], + "puffersing": [], + "Pasadena's": [], + "goofiest": [], + "curlews's": [], + "briefest": [], + "earnest": ["S", "M", "Y", "P"], + "extraditionsed": [], + "Ind": [], + "superheroes": [], + "brawled": [], + "siesta's": [], + "breading's": [], + "sprats's": [], + "toughie": ["S", "M"], + "Aeneid": ["M"], + "prepayings": [], + "excursionist'ses": [], + "overgrazed": [], + "psoriasis": ["M"], + "asynchronous": ["Y"], + "oeuvre": ["M", "S"], + "elephantine": [], + "underneaths": [], + "nightlife's": [], + "chills": [], + "reprogramming": [], + "easterner": ["M"], + "placesed": [], + "stetson'ses": [], + "biopics": [], + "passim": [], + "dooryards": [], + "leftist": ["S", "M"], + "musingly": [], + "starter's": [], + "UNICEF": ["M"], + "redundancies's": [], + "rescueder": [], + "dauntlessliness": [], + "severeds": [], + "skullcap's": [], + "fecundity's": [], + "impieties": [], + "coteries": [], + "nacho": ["S", "M"], + "upgraded": [], + "infamies's": [], + "cuts's": [], + "shies": [], + "Smith": ["M"], + "yaks": [], + "snorkelers": [], + "blenchesing": [], + "defenestrations": [], + "roughcast": [], + "brothel": ["M", "S"], + "coiner's": [], + "appellate": ["X", "N"], + "roman": ["M"], + "graduation's": [], + "ballsiest": [], + "boxed": [], + "villains's": [], + "gangsters": [], + "Kodachrome": ["M"], + "Meyer": ["M", "S"], + "Utopias's": [], + "Hokusai": ["M"], + "fakinged": [], + "wedlock": ["M"], + "regardless": [], + "stoic": ["S", "M"], + "sickouts": [], + "Mujib's": [], + "thoughts's": [], + "yokel": ["S", "M"], + "tarried": [], + "tamely": [], + "buxom": [], + "distributingen": [], + "ABS": [], + "factor": ["A", "S", "D", "G"], + "Solon's": [], + "uninfluenced": [], + "reserpine's": [], + "forecastle's": [], + "sugarcoating": [], + "tactility": ["M"], + "inn's": [], + "spanks": [], + "quintupled": [], + "wholesaled": [], + "widen": ["S", "D", "R", "Z", "G"], + "keno's": [], + "levering": [], + "trooping's": [], + "diciest": [], + "Jeanne": ["M"], + "viticulturist": ["M", "S"], + "sauteing": [], + "moderationness": [], + "Peters's": [], + "bluebells": [], + "watchstrap": ["S"], + "bonuses": [], + "chortler's": [], + "Robbie": ["M"], + "generalship's": [], + "Pryor's": [], + "slaughtereder": [], + "nonrestrictive": [], + "gulag": ["S", "M"], + "pettiness": ["M"], + "journal's": [], + "transitives": [], + "tapas": [], + "filthier": [], + "GnuPG": [], + "septets": [], + "faffed": [], + "amicability's": [], + "fornicationed": [], + "dependent": ["I", "M", "Y", "S"], + "treeing": [], + "Shah's": [], + "aeration's": [], + "undreamed": [], + "Parks": ["M"], + "RN": ["M"], + "despairing": ["Y"], + "scanned": [], + "puffins's": [], + "desecrating": [], + "aftermath's": [], + "objurgateds": [], + "concessionaires": [], + "shadeds": [], + "bulgy": ["R", "T"], + "Pocono's": [], + "chiropodist'ses": [], + "nohow": [], + "telegraphersing": [], + "reunwind": [], + "pillared": [], + "catchiest": [], + "savvying": [], + "oi": [], + "bushel's": [], + "solos": [], + "perfecter": [], + "shaving": ["M"], + "markdowns's": [], + "tag": ["S", "M"], + "seafront": ["S", "M"], + "Allegheny's": [], + "predisposes": [], + "toolkit": [], + "Deleon's": [], + "reconcilesable": [], + "misinterpretations": [], + "hart's": [], + "Platonist": ["M"], + "vulgarians": [], + "organizer'ses": [], + "sievinged": [], + "cabbage": ["M", "S"], + "mat'sed": [], + "Paramaribo": ["M"], + "assails": [], + "marts": [], + "Herakles's": [], + "terrapin's": [], + "Fran's": [], + "peso's": [], + "importing": [], + "misreport's": [], + "bestrode": [], + "discriminateds": [], + "Kalgoorlie's": [], + "outdoes": [], + "Masonite": ["M"], + "wraparound's": [], + "disembowelment's": [], + "overly": ["S", "G"], + "circumference's": [], + "wagsers": [], + "uppers": [], + "northwestwards": [], + "undated": [], + "creatives": [], + "smoldering's": [], + "chaise's": [], + "Nickelodeon's": [], + "cogency's": [], + "uniform'sed": [], + "inciter's": [], + "intrusively": [], + "dockerers": [], + "spacewoman's": [], + "arsing": [], + "storytelling's": [], + "mizzen'ses": [], + "Phidias": ["M"], + "Confucianism'ses": [], + "portageds": [], + "surtaxesing": [], + "Remington": ["M"], + "latch": ["U", "D", "S", "G"], + "emblazonment": ["M"], + "simulcast": ["G", "M", "D", "S"], + "pickiness": [], + "sympathizer": ["M"], + "gigawatt": ["S", "M"], + "shorebirds's": [], + "Kazakh": ["M"], + "Mahfouz's": [], + "hairpieces": [], + "yanking": [], + "Kwan": ["M"], + "heterogeneity's": [], + "invaded": [], + "annex'sed": [], + "jemmy": ["G", "D", "S"], + "futurism": ["M"], + "mongoose": ["M", "S"], + "quieter": [], + "wanes": [], + "arboretum's": [], + "readabilities's": [], + "buttonholing": [], + "Andorra": ["M"], + "cubings": [], + "carryovers": [], + "fluff's": [], + "Judea": ["M"], + "noncorrosive": [], + "statute'ses": [], + "medicateds": [], + "Cotopaxi's": [], + "curviest": [], + "suffixation": ["M"], + "durst": [], + "forgiveness": ["M"], + "Bayesian's": [], + "auctioneer's": [], + "frightfulness": ["M"], + "Modesto": ["M"], + "slimy": ["R", "T", "P"], + "trike's": [], + "Precambrian": ["M"], + "ward'sed": [], + "rues": [], + "installments": [], + "refrigerator": ["M", "S"], + "diminuendo": ["S", "M"], + "Herculaneum's": [], + "Redmond's": [], + "chinaware's": [], + "censure": ["B", "D", "R", "S", "M", "Z", "G"], + "dived": [], + "recursion": ["S"], + "Gordon": ["M"], + "agitation's": [], + "expos": [], + "diplomat": ["M", "S"], + "backbreaking": [], + "quicksilver": ["M"], + "universals": [], + "Ebony": ["M"], + "adventureder": [], + "canned": [], + "Moseley's": [], + "duds": [], + "participator's": [], + "purchase'sers": [], + "proctoring's": [], + "Lorie's": [], + "Naismith's": [], + "glutted": [], + "abruptest": [], + "anode's": [], + "jauntiest": [], + "reluctance's": [], + "iodizesing": [], + "prehistory's": [], + "armloads": [], + "UNESCO's": [], + "apostrophe'ses": [], + "flawlessly": [], + "musicianship": ["M"], + "hued": [], + "flowerings": [], + "brunching": [], + "hotness's": [], + "orangutans": [], + "routines": [], + "casts": [], + "finds": [], + "bellyacheds": [], + "Federals": [], + "theatergoers": [], + "optimizing": [], + "ascot": ["M", "S"], + "palatables": [], + "hotties": [], + "Valium's": [], + "tantalizeder": [], + "digicams": [], + "undocumented": [], + "baptized": ["U"], + "hairsplitting's": [], + "riflinged": [], + "swatheds": [], + "introversion's": [], + "woofersing": [], + "glamour's": [], + "comestible's": [], + "Ochoa's": [], + "trapshooting": ["M"], + "vivisectionists's": [], + "unhinge": [], + "Chandragupta's": [], + "Tinkerbell": ["M"], + "Mathew's": [], + "nullifieds": [], + "endowment's": [], + "calcimines": [], + "spittoon's": [], + "omelet's": [], + "stabbings": [], + "gusting": [], + "chickenshits": [], + "Giauque's": [], + "Norplant's": [], + "Hebraism's": [], + "swastikas": [], + "inseam's": [], + "obnoxiousness's": [], + "commentator's": [], + "cookouts": [], + "smite": ["S", "G"], + "betas's": [], + "patchwork": ["S", "M"], + "nuggets's": [], + "chirp'sed": [], + "prairie": ["S", "M"], + "cardamon": ["S"], + "loose": ["U", "D", "S", "T", "G"], + "allegorists": [], + "examineds": [], + "road'ses": [], + "Canute's": [], + "Roman's": [], + "infestinged": [], + "trios": [], + "habituated": [], + "host": ["M", "D", "S", "G"], + "Tibet": ["M"], + "Patrice's": [], + "Heinlein": ["M"], + "secret's": [], + "skivvying": [], + "choroids": [], + "renditions": [], + "hauled": [], + "coifs": [], + "indigestible": [], + "buckle": ["U", "D", "S", "G"], + "rustle's": [], + "Apollo's": [], + "rejoiceds": [], + "buckskin's": [], + "bedfellow's": [], + "loafeder": [], + "distresseding": [], + "poachesers": [], + "esplanades": [], + "supposed": ["Y"], + "flamingos": [], + "exurbia": ["M"], + "Chandra's": [], + "sugaring": [], + "Ibadan's": [], + "diminished": ["U"], + "toting's": [], + "weakness's": [], + "elegies": [], + "Paraguay": ["M"], + "ultimatum'ses": [], + "futurologists": [], + "refit": [], + "patronesses": [], + "roadshows's": [], + "nunneries": [], + "introversion": ["M"], + "Providence's": [], + "blimp'ses": [], + "Gentoo's": [], + "relative": ["M", "Y", "S"], + "namelessly": [], + "hydrolyzeds": [], + "dipped": [], + "scullion's": [], + "hogtying": [], + "undertows's": [], + "pediatric": ["S"], + "cusps": [], + "roil": ["G", "D", "S"], + "discomfiture": ["M"], + "sleighs": [], + "Freon": ["M"], + "demimondaine's": [], + "massaged": [], + "vanes": [], + "freethinking": ["M"], + "argument": ["M", "S"], + "mug": ["S", "M"], + "nonexplosives": [], + "punctures's": [], + "behavioral": ["Y"], + "shouldered": [], + "webmasters": [], + "trilobites's": [], + "molar": ["S", "M"], + "exabyte": ["M", "S"], + "tiresomely": [], + "outwit": ["S"], + "devotion'ses": [], + "ENE": ["M"], + "lack's": [], + "Hebrides": ["M"], + "fabrication's": [], + "flares's": [], + "Mahler": ["M"], + "strictly": [], + "rummage's": [], + "trudgeds": [], + "horticulture's": [], + "chant'sed": [], + "grotesqueness's": [], + "desperadoes": [], + "profundities's": [], + "mahatma's": [], + "Javier": ["M"], + "wail'sed": [], + "vivaciousness's": [], + "affray's": [], + "microphones's": [], + "pray": ["Z", "G", "D", "R", "S"], + "departmentalizinged": [], + "interactions's": [], + "Rutgers": ["M"], + "rebid": ["S"], + "clodhopper'ses": [], + "event": ["S", "M"], + "jawed": [], + "Scotsman's": [], + "unsuccessful": [], + "touchy": ["R", "P", "T"], + "foreplay": ["M"], + "Vladimir": ["M"], + "budged": [], + "inquisitional": [], + "phone'sing": [], + "notarizeds": [], + "Welles": ["M"], + "chemurgy": ["M"], + "Algonquian": ["S", "M"], + "alembics's": [], + "apostrophe": ["M", "S"], + "synonymous": [], + "wets": [], + "nearsightedness": ["M"], + "pluralist": ["M", "S"], + "agronomist": ["M", "S"], + "tarpon'ses": [], + "Democrats": [], + "abduct": ["D", "S", "G"], + "parcheds": [], + "ulster": ["M", "S"], + "advancemented": [], + "Rep": [], + "antiknock": ["M"], + "Spam's": [], + "rooms": [], + "Omdurman": ["M"], + "Pt's": [], + "encroachment": ["S", "M"], + "rares": [], + "certain": ["U", "Y"], + "monkshoods's": [], + "Bessemer": ["M"], + "WNW": ["M"], + "unkindliest": [], + "speechlessliness": [], + "ti'ser": [], + "misprints": [], + "inconceivability's": [], + "curers": [], + "OTB": [], + "directives": [], + "governs": [], + "reductions": [], + "Hotpoint": ["M"], + "sharecrop": ["S"], + "trees": [], + "dickered": [], + "indulged": [], + "pallidness's": [], + "cyberbullies's": [], + "combativeness": ["M"], + "subjugated": [], + "gimmes's": [], + "wellhead": ["S", "M"], + "halved": [], + "Cerenkov's": [], + "bedclothes's": [], + "middles": [], + "tailpipe": ["S", "M"], + "Nd": ["M"], + "dingus's": [], + "feisty": ["T", "R"], + "throes's": [], + "dwindleds": [], + "satirically": [], + "sherbets": [], + "corrode": ["G", "D", "S"], + "flatteringly": [], + "soft": ["N", "R", "Y", "X", "T", "P"], + "performers": [], + "Hohhot's": [], + "carrion": ["M"], + "Velasquez's": [], + "teat'ses": [], + "curlicuing": [], + "slumber's": [], + "ruffle": ["D", "S", "M", "G"], + "floppiers": [], + "tritium": ["M"], + "lob'sed": [], + "paler": [], + "accusation": ["M", "S"], + "expedience's": [], + "hopelessly": [], + "narcoleptic": [], + "tush": ["M", "S"], + "detox's": [], + "malathion's": [], + "drum": ["M", "S"], + "Gascony": ["M"], + "Lysol's": [], + "bashed": [], + "violist's": [], + "judiciary": ["S", "M"], + "reason": ["S", "M", "D", "R", "Z", "G", "B"], + "homburg's": [], + "rampages's": [], + "riffles": [], + "embroider": ["S", "D", "R", "Z", "G"], + "sneaked": [], + "backstretch'ses": [], + "adeptly": [], + "counterpoiseds": [], + "devils": [], + "satiric": [], + "pedals": [], + "Buckley's": [], + "annoyance's": [], + "popper's": [], + "mallow'ses": [], + "causerie": ["S", "M"], + "Ringling": ["M"], + "disgruntle": ["L", "G", "D", "S"], + "margin'ses": [], + "publicity": ["M"], + "purity's": [], + "goofings": [], + "Thanh": ["M"], + "Nagasaki": ["M"], + "palmistry's": [], + "oilskin'ses": [], + "sunrises's": [], + "rustics's": [], + "hatcheck's": [], + "longshoremen": [], + "articulatesens": [], + "Pentecostal": ["M", "S"], + "pottage": ["M"], + "doodads": [], + "aptly": [], + "periling's": [], + "initiates": [], + "presentiment": ["S", "M"], + "scubaeds": [], + "snowing": [], + "fluids's": [], + "iconoclasm's": [], + "swashes": [], + "treelike": [], + "pudginesser": [], + "backpedaleding": [], + "chips": [], + "brogue's": [], + "martin'ses": [], + "abscesseds": [], + "giros": [], + "infecting": [], + "Ashgabat": [], + "Max": ["M"], + "mountebank'ses": [], + "annotation": ["M"], + "albino's": [], + "alluringment": [], + "concordances": [], + "Francis": ["M"], + "flywheel's": [], + "calliopes": [], + "fundamentalism's": [], + "narcissus's": [], + "dimple's": [], + "pathogen's": [], + "omelets": [], + "daybed": ["M", "S"], + "incriminates": [], + "tells": [], + "covetousness": ["M"], + "memorizeds": [], + "trembles": [], + "fatteneding": [], + "meetsing": [], + "Nostradamus's": [], + "violet's": [], + "ruck": ["D", "G", "S"], + "scalpel": ["S", "M"], + "emigrationsing": [], + "Ithaca's": [], + "Acapulco's": [], + "talkativeness's": [], + "issuer": ["M", "S"], + "PLO's": [], + "realpolitik": ["M"], + "pitch's": [], + "poleaxed": [], + "standoff": ["M", "S"], + "eyeball'sed": [], + "Superior": ["M"], + "abated": ["U"], + "likenesses": [], + "sideline'sing": [], + "seedpod": ["M", "S"], + "shahs": [], + "serfdom": ["M"], + "tungsten": ["M"], + "Helene's": [], + "regrew": [], + "synfuel": ["M", "S"], + "Guangzhou": ["M"], + "runlet's": [], + "haranguinged": [], + "goldfish": ["M", "S"], + "tideway'ses": [], + "immunizeds": [], + "outside": ["M", "Z", "R", "S"], + "cruddy": ["T", "R"], + "guidelines's": [], + "lunging": [], + "inhalation's": [], + "bassoonists": [], + "locksmith": ["M"], + "neutrinos": [], + "rebate's": [], + "SUV": [], + "Mark": ["S", "M"], + "crisping": [], + "Raphael's": [], + "carpels": [], + "naturalism": ["M"], + "Windex's": [], + "sharper's": [], + "Lyme's": [], + "impregnability's": [], + "comparative'sly": [], + "highroad's": [], + "MSG": ["M"], + "USIA": [], + "draftswoman's": [], + "protectiveness": ["M"], + "exoneratingen": [], + "sentimentalization": ["M"], + "dimply": [], + "Zamboni's": [], + "disinterestedly": [], + "religiousness's": [], + "cumming": [], + "predicament'ses": [], + "overshares": [], + "quadrille": ["X", "M", "N", "S"], + "docents's": [], + "hurtfully": [], + "ordained": [], + "daily": ["P", "S", "M"], + "euphoniously": [], + "intermittent": ["Y"], + "Turpin": ["M"], + "noddle": ["M", "S"], + "jitterbugger": ["M"], + "discrepancy": ["S", "M"], + "acrimony's": [], + "papering's": [], + "squares's": [], + "itching": [], + "Dionne's": [], + "Tarzan's": [], + "typhoon's": [], + "Mayas": [], + "peregrinating": [], + "weathercock": ["M", "S"], + "assume": ["B", "G", "D", "S"], + "figure": ["F", "E", "G", "S", "D"], + "ghost'sed": [], + "weary": ["T", "G", "D", "R", "S", "P"], + "embalm": ["S", "Z", "G", "D", "R"], + "ruckings": [], + "microaggressions's": [], + "hypersensitivities's": [], + "Powhatan": ["M"], + "identity's": [], + "prevaileding": [], + "linemen": [], + "philatelists": [], + "vouch": ["D", "R", "S", "Z", "G"], + "recalcitrance": ["M"], + "tunefulliness": [], + "professed": ["Y"], + "glassware": ["M"], + "cornflowers's": [], + "commercializes": [], + "jellybeans": [], + "libation's": [], + "airdropping": [], + "Hellespont": ["M"], + "hammerlocks's": [], + "conduct": ["M", "D", "G", "V"], + "suborninged": [], + "codon": ["S"], + "redacting": [], + "duelings": [], + "warinesser": [], + "engraveder": [], + "caskets": [], + "elaborates": [], + "dimensionless": [], + "corneal": [], + "tailwind's": [], + "diacritical": [], + "Lonnie": ["M"], + "IN": [], + "Laotians": [], + "Goya": ["M"], + "brisket": ["S", "M"], + "cogitationsing": [], + "Gd's": [], + "fad'sed": [], + "thunderstorms's": [], + "LED": ["M"], + "jawboneds": [], + "astound": ["G", "D", "S"], + "womanliness": ["M"], + "psychos": ["S"], + "Marsha": ["M"], + "impecunious": ["P", "Y"], + "salvaging": [], + "quantifiable": [], + "voyaged": [], + "pries": [], + "wallop": ["M", "D", "S", "J", "G"], + "codependent's": [], + "Firefox's": [], + "refusals": [], + "Gracie's": [], + "zipper": ["M", "D", "G", "S"], + "outsmarted": [], + "hisses": [], + "denudation's": [], + "inviolable": [], + "criminology's": [], + "talker's": [], + "corporeality's": [], + "GHz": [], + "scone's": [], + "bickered": [], + "hutch": ["M", "S"], + "andante's": [], + "watercolor's": [], + "reverts": [], + "dingier": [], + "scotch's": [], + "Hebrew'ses": [], + "splurgeds": [], + "correlate's": [], + "boggleds": [], + "intercededs": [], + "oxcarts's": [], + "subventions": [], + "illness's": [], + "wheedlers": [], + "frigidliness": [], + "lavatorial": [], + "museum": ["M", "S"], + "femur": ["S", "M"], + "placidity's": [], + "WC": [], + "gulper": ["M"], + "dray": ["M", "S"], + "fug": [], + "reptilians": [], + "waggery's": [], + "biliousness": ["M"], + "birdbrained": [], + "nastily": [], + "stickily": [], + "Uriah's": [], + "madrasas's": [], + "rapist": ["S", "M"], + "Waldemar": ["M"], + "sachets's": [], + "renounce": ["L", "D", "S", "G"], + "Philippians's": [], + "emboldening": [], + "snowfall's": [], + "hoofs": [], + "parliamentarians's": [], + "hostel's": [], + "crests's": [], + "encumbersed": [], + "receptacles's": [], + "botnet": ["S", "M"], + "legislates": [], + "stippled": [], + "ear'sed": [], + "immense": ["Y"], + "camp's": [], + "crevice's": [], + "scroungeder": [], + "subtotal'sed": [], + "flyby's": [], + "isthmus's": [], + "putterersing": [], + "foyers": [], + "supposeds": [], + "mouthy": ["P", "T", "R"], + "mulct": ["S", "G", "M", "D"], + "breastbone": ["M", "S"], + "paste's": [], + "rices": [], + "timetables's": [], + "wantonlies": [], + "Annabel's": [], + "cleft's": [], + "jobshare": ["S"], + "grimedly": [], + "quantificationed": [], + "appeasements": [], + "plagiarize": ["D", "R", "S", "Z", "G"], + "gooses": [], + "varieties": [], + "cosigners": [], + "ceramist's": [], + "daemon'ses": [], + "accepting": [], + "colorize": ["D", "S", "G"], + "bygones's": [], + "chuckled": [], + "fortitude": ["M"], + "Dnepropetrovsk": ["M"], + "twinge'sing": [], + "rugrats": [], + "sabotages": [], + "chippie": [], + "masons": [], + "newsstands": [], + "formalist's": [], + "beggarly": [], + "muskellunges": [], + "abortionist'ses": [], + "strangeliers": [], + "gridlock": ["S", "M", "D"], + "tines": [], + "forepart's": [], + "chilliest": [], + "prosperity's": [], + "McMillan": ["M"], + "inferno'ses": [], + "metempsychoses": [], + "meteorology's": [], + "centennials": [], + "appendix": ["M", "S"], + "Walters": ["M"], + "daubs": [], + "herbalist": ["M", "S"], + "kiddos": [], + "estranges": [], + "rubberneckers": [], + "Cambodia's": [], + "Northeast": ["M", "S"], + "workstations": [], + "printout": ["S", "M"], + "crateder": [], + "stimulants": [], + "Dortmund": ["M"], + "humanizeds": [], + "saltiness's": [], + "mellowlies": [], + "trackeder": [], + "cybernetics's": [], + "Marcelino's": [], + "unwound": [], + "escapologist": ["S"], + "stockpiled": [], + "baptistery": ["S", "M"], + "stables's": [], + "beltways's": [], + "deletes": [], + "recording's": [], + "Peron": ["M"], + "drawbridge's": [], + "shallowness's": [], + "metier's": [], + "have'sing": [], + "frowardness's": [], + "Lowenbrau's": [], + "enigmatically": [], + "defecated": [], + "interrogativelies": [], + "collared": [], + "bailiff": ["S"], + "fertilizing": [], + "windmilleding": [], + "hatred": ["S", "M"], + "hexagon": ["M", "S"], + "bride": ["S", "M"], + "renting": [], + "masseuse'ses": [], + "AFC's": [], + "utter": ["S", "D", "Y", "G"], + "admixtures": [], + "ideology": ["S", "M"], + "melodrama'ses": [], + "greens's": [], + "tempera": ["L", "S", "M"], + "Constance": ["M"], + "hoary": ["T", "R", "P"], + "classics": [], + "disquiets's": [], + "tearjerker": ["M", "S"], + "Eritrea's": [], + "foundering's": [], + "arable": [], + "spoonfuls's": [], + "windmill's": [], + "atones": [], + "Excellencies": [], + "versos's": [], + "knowinglies": [], + "clingfilm": [], + "inures": [], + "weep'ser": [], + "cylinders": [], + "payslips's": [], + "piratically": [], + "tobacco": ["M", "S"], + "recycling's": [], + "semiprecious": [], + "decimatesing": [], + "picturesque": ["P", "Y"], + "officer's": [], + "kidnapping's": [], + "toothed": [], + "sentry's": [], + "sect'ses": [], + "locally": [], + "pirated": [], + "hardener's": [], + "womanliness's": [], + "bazillions": [], + "bowled": [], + "mink": ["M", "S"], + "human's": [], + "servicemen": [], + "Gemini": ["M", "S"], + "paterfamilias's": [], + "bulging": [], + "earwig's": [], + "bogeyman": ["M"], + "superstitiously": [], + "watercourse's": [], + "gouges's": [], + "woodenest": [], + "Corteses": [], + "tantalizers": [], + "Aaron": ["M"], + "biddy": ["S", "M"], + "sampler's": [], + "Scarlatti": ["M"], + "machinations": [], + "evaluations": [], + "Ufa": ["M"], + "illicitliness": [], + "dories": [], + "notepaper": ["M"], + "Wesson": ["M"], + "embroidersed": [], + "law's": [], + "impinges": [], + "Argentinians": [], + "Cary": ["M"], + "goodbye's": [], + "Lego's": [], + "comedian'ses": [], + "wand's": [], + "veejays": [], + "misapply": ["D", "S", "G", "N", "X"], + "captivators": [], + "beret": ["M", "S"], + "remnant's": [], + "wont'sed": [], + "switchblades's": [], + "elites": [], + "sander's": [], + "obscures": [], + "mainly": [], + "Goethals's": [], + "crescent's": [], + "psychopathy's": [], + "hashes": [], + "prevaricator": ["S", "M"], + "tabbed": [], + "incentives": [], + "contusionsed": [], + "monk's": [], + "springing": [], + "magistrates": [], + "bunt": ["M", "D", "G", "S", "J"], + "huts's": [], + "fifths": [], + "tumor's": [], + "bosseds": [], + "ravelings": [], + "palette": ["S", "M"], + "extraditingen": [], + "ranched": [], + "crunching's": [], + "Schnauzer": ["M"], + "copay's": [], + "gluts": [], + "betake": ["G", "S"], + "radiosurgery": [], + "Carpenter": ["M"], + "offense'ses": [], + "caulkeder": [], + "leave's": [], + "shimmying": [], + "marlinespikes's": [], + "snuffles": [], + "Sol's": [], + "legumes": [], + "badges": [], + "Procyon's": [], + "undecided's": [], + "exterminationsing": [], + "tugged": [], + "saucepans": [], + "chancery's": [], + "trippers's": [], + "groomersing": [], + "puree": ["M", "D", "S"], + "Ryder's": [], + "transpiration's": [], + "flat's": [], + "neocon": ["S", "M"], + "Brazilians": [], + "Enrico": ["M"], + "mailbox'ses": [], + "thane": ["S", "M"], + "Rwandans's": [], + "Normand": ["M"], + "Buick's": [], + "eclecticism": ["M"], + "buckleds": [], + "ewes's": [], + "demimonde": ["M"], + "moray": ["S", "M"], + "pique'sing": [], + "extractor's": [], + "ruttiest": [], + "vainerly": [], + "excise'sing": [], + "mantissas": [], + "juices's": [], + "linens's": [], + "spadework": ["M"], + "abbots": [], + "timeservers": [], + "investsed": [], + "underestimationens": [], + "toppleds": [], + "pimp's": [], + "sojourn'sed": [], + "Han": ["S", "M"], + "Geoffrey": ["M"], + "Doha": ["M"], + "cuckold's": [], + "flashing's": [], + "Lourdes's": [], + "vowsing": [], + "editorial's": [], + "commutersing": [], + "Hoffman's": [], + "anthills's": [], + "jouncy": [], + "ecu": ["S"], + "dissuade": ["G", "D", "S"], + "nonferrous": [], + "fortified": ["U"], + "heartlessness's": [], + "vivaria": [], + "quarto": ["M", "S"], + "archetype": ["M", "S"], + "marketplace": ["S", "M"], + "Wasatch": ["M"], + "unquiet": ["T", "R"], + "Zionisms": [], + "decor's": [], + "usurpation": ["M"], + "tableau": ["M"], + "immoderate": ["Y"], + "grumbler's": [], + "cozily": [], + "premolars": [], + "nitpickeder": [], + "persecution": ["M"], + "Custer's": [], + "crumbling": [], + "gerund": ["M", "S"], + "hardliner'ses": [], + "Scotch": ["M", "S"], + "Catalan": ["S", "M"], + "patches": [], + "Wilkins": ["M"], + "rambles": [], + "courier": ["M", "D", "S", "G"], + "gonorrhea's": [], + "emigratingen": [], + "bullion's": [], + "Gary": ["M"], + "marketeder": [], + "monorail": ["M", "S"], + "condensationses": [], + "exerts": [], + "overspecialization's": [], + "blazer's": [], + "sidearms": [], + "Kendrick": ["M"], + "comparison'ses": [], + "ogres": [], + "limbers": [], + "Austrian's": [], + "minoring": [], + "macadamizes": [], + "autonomous": ["Y"], + "dairymen": [], + "among": [], + "silhouette": ["D", "S", "M", "G"], + "Rochambeau": ["M"], + "purple's": [], + "gloveds": [], + "sharpeneding": [], + "rite's": [], + "fops": [], + "Klaus": ["M"], + "savanna'ses": [], + "puritan's": [], + "disclaimer": [], + "sulfuric": [], + "afforestation": ["M"], + "Olympic's": [], + "maundered": [], + "roentgen": ["M", "S"], + "caramelizeds": [], + "booklet's": [], + "Benacerraf": ["M"], + "furrierness": [], + "pleasantness's": [], + "circumvents": [], + "orator's": [], + "clowns": [], + "scanter": [], + "antiabortionists": [], + "undecipherable": [], + "herdsman's": [], + "Bahrain's": [], + "trendsetter": ["S"], + "Havanas": [], + "disseminate": ["G", "N", "D", "S"], + "boohoo": ["G", "M", "D", "S"], + "moldboards": [], + "unpunished": [], + "numb": ["Z", "T", "G", "P", "D", "R", "Y", "S"], + "countercultures": [], + "aspirators": [], + "length'sen": [], + "blameder": [], + "irritationsing": [], + "tarmac": ["M", "S"], + "canonical": ["Y"], + "Americanizinged": [], + "tamper": ["Z", "G", "D", "R"], + "wrangle'sers": [], + "Vaselines": [], + "rider's": [], + "inboard's": [], + "usual": ["U", "Y"], + "cowardliness": ["M"], + "drippier": [], + "budgerigar'ses": [], + "sacred": ["Y", "P"], + "leisurewear": ["M"], + "Frenches": [], + "rematch": [], + "Ziploc's": [], + "Palikir": ["M"], + "softeneder": [], + "postdatesing": [], + "superintendents's": [], + "loungersing": [], + "laze'sing": [], + "amortization": ["S", "M"], + "reprehensibility's": [], + "sarcoma'ses": [], + "miner's": [], + "starved": [], + "disdetract": [], + "escritoire'ses": [], + "ornately": [], + "defection's": [], + "Nora": ["M"], + "batiks": [], + "flattest": [], + "pends": [], + "Etna's": [], + "Bullwinkle": ["M"], + "pudendum's": [], + "Dominic's": [], + "grainiest": [], + "alkali": ["M"], + "lightly": [], + "caparison's": [], + "bub's": [], + "tween": [], + "bristles": [], + "golfs": [], + "seaweed's": [], + "promptness's": [], + "czarism": [], + "intensely": [], + "Bloom's": [], + "kaiser's": [], + "miner": ["M"], + "invulnerable": [], + "expectant": ["Y"], + "transsexual": ["S", "M"], + "prerequisite's": [], + "melancholics": [], + "spares": [], + "Hebert's": [], + "Hattie's": [], + "mandrill'ses": [], + "quintuple": ["M", "G", "D", "S"], + "indulges": [], + "albumen": ["M"], + "Communion's": [], + "scrimmage": ["M", "G", "D", "S"], + "ligatingen": [], + "distend": [], + "swordplay's": [], + "overloading": [], + "coziers": [], + "Malamud's": [], + "catchall": ["M", "S"], + "lech": ["M", "D", "R", "S", "Z", "G"], + "unwary": ["T"], + "potpourri's": [], + "Hohenlohe": ["M"], + "bellmen": [], + "taskmistress's": [], + "lasagna": ["M", "S"], + "aphid'ses": [], + "kidnapping": ["M", "S"], + "dominatingen": [], + "dissonances's": [], + "bullfinches": [], + "pundit's": [], + "inductees": [], + "Tuamotu's": [], + "synthesizers": [], + "screenplays": [], + "opponent's": [], + "swears": [], + "canvassersing": [], + "Methodism": ["S", "M"], + "plentifully": [], + "misaddressing": [], + "ambassadorial": [], + "wheedler's": [], + "confederation": [], + "deactivate": [], + "regathering": [], + "aid's": [], + "tarter": [], + "immensities's": [], + "outreach's": [], + "Giuliani's": [], + "allyinged": [], + "eschatological": [], + "lefties's": [], + "phoneds": [], + "steamrolling": [], + "Elsinore's": [], + "inflame": ["D", "S", "G"], + "prepaying": [], + "Moses's": [], + "miscounting": [], + "pug's": [], + "closeness's": [], + "annuitant": ["S", "M"], + "loophole's": [], + "xxxiii": [], + "aviatrix'ses": [], + "captor": ["M", "S"], + "frolicked": [], + "descendant": ["M", "S"], + "textures": [], + "hidingsed": [], + "brochette's": [], + "death'sly": [], + "securest": [], + "showboats": [], + "selectmen": [], + "hyssop": ["M"], + "sheeting": ["M"], + "bludgeon's": [], + "confraternity": [], + "Yanks": [], + "tripleds": [], + "serious": ["P", "Y"], + "spaceman": ["M"], + "barrener": [], + "swap'ses": [], + "purporteding": [], + "robe": ["E", "G", "D", "S"], + "Inquisition's": [], + "prophylactic's": [], + "equilibrium's": [], + "reverberation": ["M"], + "septum": ["M"], + "mollusks's": [], + "perfectibility": ["M"], + "shortstops": [], + "raincoats": [], + "squawkersing": [], + "diatonic": [], + "culling": [], + "girdle's": [], + "astronomy's": [], + "intellects": [], + "sextants": [], + "kiting's": [], + "outlived": [], + "Jason": ["M"], + "pimpleds": [], + "profoundest": [], + "sectioned": [], + "suburbia's": [], + "beachheads": [], + "canon's": [], + "Oklahoman's": [], + "sand": ["Z", "G", "M", "D", "R", "S"], + "boomerangs": [], + "disputes": [], + "malt'sed": [], + "rancidness's": [], + "cavileder": [], + "poseurs": [], + "astuteness's": [], + "preregistered": [], + "pillowed": [], + "ream": ["Z", "G", "M", "D", "R", "S"], + "Banach": ["M"], + "plopped": [], + "menace'sing": [], + "checkoffs's": [], + "babushka's": [], + "wreathing": [], + "maw's": [], + "Clare": ["M"], + "clackeds": [], + "calibrator": ["S", "M"], + "cinematic": [], + "wooded": [], + "restoration": ["S", "M"], + "camelhair": [], + "monitor": ["S", "M", "D", "G"], + "unbelieving": [], + "omission's": [], + "Negroid": ["S", "M"], + "ophthalmologists": [], + "tallness's": [], + "annuallies": [], + "adorers": [], + "clutching's": [], + "clematis's": [], + "riots": [], + "rosemary": ["M"], + "selenographers": [], + "borough's": [], + "takings's": [], + "hefting": [], + "Zhdanov": [], + "cableds": [], + "saccharin's": [], + "gargle'sing": [], + "maturers": [], + "corrections": [], + "appallingly": [], + "psychotics's": [], + "pinwheeled": [], + "acrimoniously": [], + "bravelied": [], + "eulogist": ["M", "S"], + "squadrons": [], + "mellifluous": ["P", "Y"], + "zodiac's": [], + "outspend": ["S", "G"], + "idlers": [], + "Haggai's": [], + "seventeenth": ["M"], + "plies": [], + "admonish": ["L", "D", "S", "G"], + "pelmets": [], + "service": ["E", "M", "S"], + "hippopotamus's": [], + "lampreys": [], + "elites's": [], + "spicy": ["P", "R", "T"], + "Abbas": ["M"], + "impurely": [], + "maximizinged": [], + "relations": [], + "nerviness": ["M"], + "consonant's": [], + "stretchmarks": [], + "rabbiting": [], + "borehole": ["S"], + "arbiter's": [], + "engorgementing": [], + "sweepingly": [], + "Annapolis's": [], + "slenderness": ["M"], + "ratcheted": [], + "Ham": ["M"], + "envenomed": [], + "authorizeds": [], + "Roach's": [], + "foreseers": [], + "plenitudes's": [], + "chantersing": [], + "bleeper": ["M"], + "rent'sed": [], + "avdp": [], + "helicoptersing": [], + "cranked": [], + "infidelities": [], + "chloroformed": [], + "cheetahs": [], + "dunderhead": ["M", "S"], + "acidifyinged": [], + "scapegrace's": [], + "doz": ["X", "G", "D", "N", "S"], + "flyspeck'sed": [], + "suasion": ["E", "M"], + "topic": ["S", "M"], + "shunned": [], + "Panmunjom": ["M"], + "gunfighterers": [], + "quickness": ["M"], + "broadcloth": ["M"], + "bogie'ses": [], + "straighten": ["Z", "G", "D", "R"], + "scrapper's": [], + "arm": ["E", "A", "G", "D", "S"], + "Burnett's": [], + "alkaloids": [], + "mintersing": [], + "bloc's": [], + "coauthored": [], + "abdicationed": [], + "dapple": ["M", "G", "D", "S"], + "contaminators's": [], + "swellhead's": [], + "fricasseed": [], + "rehash": [], + "trillionth's": [], + "Scruggs's": [], + "subplot": ["M", "S"], + "adroit": ["P", "Y"], + "Kodaly": ["M"], + "coaxesers": [], + "Kramer's": [], + "stopcocks": [], + "commie": ["S", "M"], + "Baez's": [], + "succulency's": [], + "sprints": [], + "dissolutelication": [], + "dolly": ["S", "M"], + "incarnated": [], + "outplays": [], + "gregariousness": ["M"], + "probings": [], + "extension": ["S", "M"], + "enterprisingly": [], + "Narragansett": ["M"], + "asperities": [], + "turbidity's": [], + "polyandry": ["M"], + "swiped": [], + "floppies's": [], + "Sumner": ["M"], + "debilitateds": [], + "sniffleds": [], + "students": [], + "militiaman's": [], + "ladder's": [], + "homesteads": [], + "flagons": [], + "twerking": [], + "Geneva's": [], + "anointing": [], + "decisivenessly": [], + "slumping": [], + "tarnish": ["G", "M", "D", "S"], + "pacy": ["R", "T"], + "inputting": [], + "aviatrix": ["M", "S"], + "callusesing": [], + "ck": [], + "monodic": [], + "gatehouses": [], + "Topsy's": [], + "liaison's": [], + "romanticizes": [], + "inducers": [], + "shovel": ["M", "D", "S", "G"], + "inflexibly": [], + "bombardment's": [], + "NeWSes": [], + "equestriennes's": [], + "unfriendly": ["T"], + "Norman's": [], + "sentimentalize": ["G", "D", "S"], + "forcefulness": ["M"], + "xiv": [], + "Pearlie's": [], + "Bloomer's": [], + "adenine": ["M"], + "mosque": ["M", "S"], + "Fargo's": [], + "indescribably": [], + "bluejacket": ["S", "M"], + "grunions": [], + "Megan's": [], + "ileum's": [], + "Zoroastrianism's": [], + "Uruguayans": [], + "readjust": [], + "protectionists": [], + "undergraduates": [], + "syllabication": ["M"], + "accusinged": [], + "longsighted": [], + "whisks": [], + "competitions": [], + "cenobite": ["M", "S"], + "prancers": [], + "revivify": [], + "maligned": [], + "directories's": [], + "skylark's": [], + "damply": [], + "wiggly": ["T", "R"], + "chattiness": ["M"], + "bedded": [], + "Ashurbanipal": ["M"], + "Molotov's": [], + "owls": [], + "stockading": [], + "southwest": ["Z", "M", "R"], + "panama'ses": [], + "histology's": [], + "appointed": [], + "Rove's": [], + "butler": ["S", "M"], + "faggots": [], + "waters": ["M"], + "aggregation's": [], + "homestretch'ses": [], + "transceivers's": [], + "saintlier": [], + "oping": [], + "teary": ["T", "R"], + "addleds": [], + "larder": ["M"], + "treks": [], + "cherished": [], + "imbibinged": [], + "milquetoast": ["S", "M"], + "endeavored": [], + "sacroiliac's": [], + "offshoots": [], + "impossible": ["S"], + "ponging": [], + "enclosed": ["U"], + "inconstantly": [], + "handicraft'ses": [], + "predecessor": ["S", "M"], + "sacrosanctness": ["M"], + "smearing": [], + "expostulateds": [], + "Elmer's": [], + "Nike": ["M"], + "temerity": ["M"], + "sashays": [], + "Cobain": ["M"], + "engorging": [], + "drawl": ["S", "M", "D", "G"], + "volubility": ["M"], + "unmentionable's": [], + "unrecross": [], + "laps": [], + "McCarthyism": ["M"], + "graduationed": [], + "playmate'ses": [], + "paratroops's": [], + "marginallies": [], + "Coleen": ["M"], + "lasers": [], + "butteder": [], + "totalizator's": [], + "condos's": [], + "pistachios's": [], + "junkier": [], + "spasmodic": [], + "rootkits's": [], + "comedowns": [], + "Marine's": [], + "melds": [], + "variously": [], + "debauchee": ["M", "S"], + "longhand's": [], + "notarization": ["M"], + "disparage": ["D", "S", "G", "L"], + "glitzy": ["T", "R"], + "congregant": ["M", "S"], + "governor": ["S", "M"], + "retread": ["D"], + "Nagoya's": [], + "peculates": [], + "lengthiest": [], + "boldness's": [], + "collars's": [], + "cyborg's": [], + "exile": ["D", "S", "M", "G"], + "patrons": [], + "lungeds": [], + "deforest": [], + "munificence's": [], + "barres": [], + "affirming": [], + "unobtrusive": [], + "eddy'sing": [], + "overweight's": [], + "scattered": [], + "recyclable's": [], + "congress'ses": [], + "Kurosawa": ["M"], + "bore's": [], + "concurrency": [], + "radioscopy's": [], + "coward'sly": [], + "Nauru's": [], + "creepier": [], + "illegal's": [], + "confirmatory": [], + "Wollstonecraft": ["M"], + "vigilantly": [], + "respective": ["Y"], + "overworks": [], + "cherries's": [], + "tread": ["A", "G", "S", "M"], + "fascinated": [], + "unemployable": [], + "diversion": ["M"], + "uninstructed": [], + "stipple's": [], + "skewered": [], + "seafloor": ["S", "M"], + "Garner's": [], + "Lohengrin's": [], + "corkscreweding": [], + "amateurishliness": [], + "noiselessness": ["M"], + "abridgments": [], + "hurtling": [], + "unshakable": [], + "Markham": ["M"], + "fabrications": [], + "easterner's": [], + "up": ["S"], + "bunch": ["M", "D", "S", "G"], + "inproscribe": [], + "fusiliers's": [], + "consul's": [], + "Boone": ["M"], + "aquaplaned": [], + "sump's": [], + "Hutchinson's": [], + "exorcism": ["S", "M"], + "prate'sers": [], + "levier's": [], + "pluralizinged": [], + "stopover": ["M", "S"], + "jurisdiction's": [], + "psychoanalyze": ["D", "S", "G"], + "proctoreds": [], + "nonexplosive's": [], + "numbersed": [], + "nightwatchmen": [], + "schizophrenia's": [], + "jaywalk": ["D", "R", "S", "Z", "G"], + "prodigal": ["M", "Y", "S"], + "gnash's": [], + "customsers": [], + "meanderedings": [], + "fusseds": [], + "analogies's": [], + "lemurs's": [], + "rookies": [], + "overdoing": [], + "steep": ["S", "M", "D", "N", "R", "Y", "P", "X", "T", "G"], + "sesquicentennial'ses": [], + "O'Neil": ["M"], + "ram": ["S", "M"], + "brewerers": [], + "Antares's": [], + "monument'ses": [], + "perfections": [], + "croup": ["M"], + "workaround": ["S"], + "Jody": ["M"], + "cradle's": [], + "Isaiah's": [], + "dictating": [], + "aristocracy's": [], + "rankness's": [], + "bacteriologist": ["S", "M"], + "pledges": [], + "habitues's": [], + "hasp's": [], + "Algenib": ["M"], + "ushers": [], + "beggaring": [], + "flyblown": [], + "enlarginged": [], + "thralleding": [], + "proceeds's": [], + "capital's": [], + "actor's": [], + "Ride": ["M"], + "prophetess'ses": [], + "Bedouin": ["S", "M"], + "fallible": ["P"], + "Seth's": [], + "Eroses": [], + "totalizators": [], + "fool's": [], + "glimmeringses": [], + "dieting": [], + "surplus's": [], + "EEO": [], + "Osaka's": [], + "Stamford's": [], + "equivocatingen": [], + "corporationsly": [], + "immunity": ["M"], + "snot": ["M", "S"], + "grouses": [], + "flanked": [], + "palatinate'ses": [], + "sycamores": [], + "stopcock": ["S", "M"], + "cress's": [], + "dominions": [], + "eccl": [], + "inalienability's": [], + "scalpsers": [], + "viva": ["M", "S"], + "turn's": [], + "Bengali": ["M"], + "stuck": ["U"], + "peelingsers": [], + "Oriental's": [], + "stockade": ["D", "S", "M", "G"], + "shibboleths": [], + "interested": ["U"], + "Martina": ["M"], + "newscaster's": [], + "oilcloths": [], + "gigawatts": [], + "yarns": [], + "shorty": ["S", "M"], + "floor'sed": [], + "Adonis'ses": [], + "excavations": [], + "gent": ["A", "M", "S"], + "ideally": [], + "crackup": ["S", "M"], + "nonreturnable's": [], + "jagged": ["T", "P", "R", "Y"], + "plumperly": [], + "text'ses": [], + "vexation's": [], + "lockout": ["M", "S"], + "tourism": ["M"], + "drives": [], + "Kolyma": ["M"], + "ferryboat's": [], + "microbe": ["M", "S"], + "banisters's": [], + "premiership's": [], + "saucers": [], + "cleaning's": [], + "thinkers": [], + "mechanism": ["S", "M"], + "modem": ["S", "M"], + "phoneme'ses": [], + "chuckles": [], + "dullest": [], + "stoner": ["M"], + "retorted": [], + "cowpats": [], + "daydreamer's": [], + "floodgates": [], + "dido's": [], + "violatingen": [], + "amoebae": [], + "placental": ["S"], + "splittings": [], + "feeder": ["M"], + "Nassau's": [], + "admonition'ses": [], + "pulverization": ["M"], + "coasts": [], + "lankiest": [], + "refinements": [], + "azure's": [], + "terrorists's": [], + "chine": ["M", "S"], + "follicle's": [], + "diabetics": [], + "frame'sers": [], + "helmet's": [], + "bro's": [], + "jowl'ses": [], + "humidly": [], + "osculateds": [], + "riskier": [], + "undertakes": [], + "hoodeds": [], + "colonnaded": [], + "auditoriums's": [], + "foodstuffs": [], + "Byronic": ["M"], + "selection": ["S", "M"], + "Humphreys": [], + "Huguenot": ["M", "S"], + "bachelor's": [], + "tweeters's": [], + "frisking": [], + "Azores": ["M"], + "Fr'sed": [], + "appreciably": ["I"], + "aggressive": ["P", "Y"], + "narrowed": [], + "gymkhana'ses": [], + "whirlybirds": [], + "Exxon's": [], + "hairspray": ["S"], + "violence": ["M"], + "prolongations": [], + "mustached": [], + "impersonally": [], + "fatality's": [], + "stegosauruses": [], + "blooms": [], + "mamba's": [], + "sulky": ["T", "R", "S", "M", "P"], + "reissue": [], + "podiatrists's": [], + "precanceling": [], + "masquerades": [], + "sharing": [], + "murderer's": [], + "Uccello's": [], + "squiggleds": [], + "crossbows's": [], + "sodium's": [], + "surfacing": [], + "druggies": [], + "funeral's": [], + "footman": ["M"], + "Goethals": ["M"], + "roebucks's": [], + "interfiled": [], + "godsends's": [], + "Sandburg": ["M"], + "whats": [], + "rostrums": [], + "pasterns": [], + "sieved": [], + "Danubian's": [], + "doubting": ["Y"], + "pantomiminged": [], + "battlers": [], + "adobe'ses": [], + "erection's": [], + "bawds's": [], + "tampon": ["S", "M"], + "sedateness's": [], + "revving": [], + "moment": ["M", "S"], + "deliciously": [], + "underfed": [], + "meed": ["M"], + "subsurface": ["M"], + "southeastern": [], + "bunion": ["S", "M"], + "nudist's": [], + "Nadine": ["M"], + "smoke": ["D", "R", "S", "M", "Z", "G"], + "condensate's": [], + "duvets's": [], + "Neolithic": [], + "eyedropper": ["S", "M"], + "Lynnette": ["M"], + "Giuseppe's": [], + "lumpens": [], + "bauds's": [], + "frostbitten": [], + "acuity": ["M"], + "timetable's": [], + "scourges's": [], + "pedicurists": [], + "backslappers's": [], + "displayable": [], + "purchaser": ["M"], + "sluggish": ["P", "Y"], + "marine'sers": [], + "Terrie's": [], + "gingersnaps": [], + "antiphonally": [], + "diversified": [], + "wallop'sed": [], + "axle'ses": [], + "ACLU": ["M"], + "workable": ["U"], + "unforeseen": [], + "accessories's": [], + "minorities": [], + "fir": ["Z", "G", "S", "J", "M", "D", "R", "H"], + "randiest": [], + "privates": [], + "sis": ["M", "S"], + "bombshell": ["S", "M"], + "slice": ["D", "R", "S", "M", "Z", "G"], + "waste": ["D", "R", "S", "M", "Z", "G"], + "worrier's": [], + "breaker": ["M"], + "bankrolling": [], + "denigrates": [], + "Jaycee": ["M", "S"], + "misanthropically": [], + "mean'ser": [], + "eyelids": [], + "allows": [], + "cellulose": ["M"], + "resembling": [], + "leucine": [], + "operates": [], + "Bowers's": [], + "abjectly": [], + "Stoicism's": [], + "Orange": ["M"], + "chubbier": [], + "Ruthie's": [], + "droppings's": [], + "consolation'ses": [], + "rejuvenates": [], + "waterboard": ["M", "D", "J", "S", "G"], + "Dino": ["M"], + "hardcover's": [], + "Delmonico's": [], + "Mongoloid": [], + "accentuationed": [], + "soapings": [], + "Pocono": ["S", "M"], + "stucco'sed": [], + "clarioning": [], + "mightiness": ["M"], + "personae": [], + "integuments": [], + "gimmick": ["M", "S"], + "exchange": ["D", "S", "M", "G"], + "suffers": [], + "parley'sed": [], + "molested": ["U"], + "prioritizeds": [], + "hayrides": [], + "Kening": [], + "neurotically": [], + "England's": [], + "yon": [], + "kludges": [], + "Bardeen's": [], + "flanks": [], + "crashed": [], + "hobby's": [], + "baptistery's": [], + "unimplemented": [], + "Sumatran": ["S", "M"], + "partsing": [], + "thaws": [], + "miscalculate": ["D", "S", "X", "G", "N"], + "nerviness's": [], + "crossbar": ["S", "M"], + "warlock": ["M", "S"], + "Woolworth's": [], + "stampededs": [], + "bewilderments": [], + "citizenship": ["M"], + "embalmsers": [], + "pulpierness": [], + "Venezuelans": [], + "stood": [], + "recentest": [], + "pox'ses": [], + "morpheme": ["M", "S"], + "ferryman's": [], + "inferential": [], + "calligraphists": [], + "feeble": ["R", "T", "P"], + "incompleteness": [], + "midget": ["M", "S"], + "par": ["S", "Z", "G", "M", "D", "R", "B", "J"], + "windflower": ["M", "S"], + "tackiest": [], + "loss's": [], + "globule": ["M", "S"], + "evenings": [], + "ministerial": [], + "sinews": [], + "postmortem": ["S", "M"], + "clouteding": [], + "improves": [], + "clammier": [], + "scrawl": ["S", "M", "D", "G"], + "trek's": [], + "streak'sed": [], + "merchandiser": ["M"], + "race's": [], + "guards": [], + "longueurs": [], + "dentin": ["M"], + "lousy": ["T", "P", "R"], + "Randolph's": [], + "villein": ["S", "M"], + "retrieves": [], + "ironware": ["M"], + "irritability": ["M"], + "nondrinker'ses": [], + "Astor": ["M"], + "bludgeonings": [], + "handbook": ["M", "S"], + "internal": ["S", "Y"], + "sitemaps": [], + "unbelief": [], + "Konrad's": [], + "raggedness": ["M"], + "tad": ["S", "M"], + "baaeding": [], + "handgun's": [], + "stoppled": [], + "Eskimos": [], + "redoubt's": [], + "limned": [], + "forgoer's": [], + "piazza'ses": [], + "legalize": ["G", "D", "S"], + "grievers": [], + "trinitrotoluene's": [], + "calcifyingen": [], + "Sharif": ["M"], + "nipple'ses": [], + "efforts": [], + "Masada": ["M"], + "snooze": ["D", "S", "M", "G"], + "chlorinateds": [], + "ratio": ["M", "S"], + "abandoning": [], + "stoweding": [], + "freshness": ["M"], + "confusers": [], + "callouseds": [], + "chalkboards's": [], + "embezzleder": [], + "transmutation's": [], + "Camille": ["M"], + "stabbing": ["M", "S"], + "PowerPoint": ["M"], + "exemptions's": [], + "cretins's": [], + "backhanded": ["Y"], + "complaining": [], + "palsyinged": [], + "rainstorms": [], + "forthrightness": ["M"], + "nesteds": [], + "jellyfish'ses": [], + "progenitor": ["S", "M"], + "mastication's": [], + "physiography": ["M"], + "gentries": [], + "dunces's": [], + "insanity": [], + "Doric's": [], + "stakes's": [], + "weatherproofsed": [], + "fared": [], + "McClain": ["M"], + "Tory's": [], + "rutabaga": ["S", "M"], + "hairiest": [], + "poppadom": ["S"], + "frontierswoman": [], + "breezeways's": [], + "throttled": [], + "Tenn": ["M"], + "Rod": ["M"], + "foremast's": [], + "larches": [], + "Xanthippe's": [], + "sacrament's": [], + "conj": [], + "stairway's": [], + "shutoffs's": [], + "staterooms": [], + "tragicomedy's": [], + "birdieds": [], + "honeys": [], + "bonding": ["M"], + "hostage": ["M", "S"], + "bootless": [], + "incubator's": [], + "tapped": ["U"], + "ploddings": [], + "Akita": ["M"], + "fuck'sing": [], + "symbolism's": [], + "disguised": ["U"], + "amateurishness": ["M"], + "tragedienne": ["M", "S"], + "cantered": [], + "recaps": [], + "Lapland'ser": [], + "evaluation's": [], + "Olivetti": ["M"], + "excavators's": [], + "Vanessa's": [], + "shirttails": [], + "imprimaturs's": [], + "unions": [], + "logos": [], + "yelpsing": [], + "swatters": [], + "Ericka's": [], + "evaders": [], + "overshoe": ["M", "S"], + "sheathed": [], + "Carrie's": [], + "curs": [], + "headbands": [], + "apoplexy's": [], + "fumigates": [], + "fanlights's": [], + "surfeit": ["M", "D", "S", "G"], + "lignite": ["M"], + "hailstone'ses": [], + "snowdrop's": [], + "globeding": [], + "gaucheness": ["M"], + "levelness's": [], + "speckle'sing": [], + "gullet'ses": [], + "hosteler": ["M"], + "sentimentalizeds": [], + "spastics": [], + "doodler's": [], + "oversimplifyingens": [], + "idealization": ["M", "S"], + "retinue's": [], + "filibuster's": [], + "soughing": [], + "quark'ses": [], + "spiff": ["S", "D", "G"], + "Locke's": [], + "caulkersing": [], + "foxhole'ses": [], + "outfights": [], + "cordoneding": [], + "overflows": [], + "tadpole's": [], + "waterway's": [], + "shantytowns": [], + "druthers": ["M"], + "sassafras": ["M", "S"], + "serendipity": ["M"], + "dampener's": [], + "Ghent's": [], + "spikierness": [], + "Mitty's": [], + "lists": [], + "stagehands": [], + "subtopics's": [], + "fiddleder": [], + "understudies's": [], + "rule's": [], + "trump's": [], + "Dexter's": [], + "parent'sed": [], + "silhouette'sing": [], + "criminality's": [], + "backbitinger": [], + "Easterner": [], + "Siam": ["M"], + "boastfulness's": [], + "mayonnaise's": [], + "ambassadors": [], + "pees's": [], + "foretasteds": [], + "parchment's": [], + "crewelwork": ["M"], + "foxtrotting": [], + "reorganization": [], + "squeak": ["S", "Z", "G", "M", "D", "R"], + "scolded": [], + "erectly": [], + "PTA's": [], + "decorator'ses": [], + "schnapps's": [], + "polygamist's": [], + "aligned": ["U"], + "leeward": ["S", "M"], + "porterhouses": [], + "Kong": ["M"], + "Magyar's": [], + "Ave": ["M"], + "Oprah's": [], + "internee": ["S", "M"], + "sumptuous": ["P", "Y"], + "riming": [], + "niff": [], + "hoist'sed": [], + "retrograde": ["D", "S", "G"], + "glowworm's": [], + "funfair": ["S"], + "smirching's": [], + "kleptomaniacs's": [], + "Lawrence": ["M"], + "foxgloves": [], + "spelldowns's": [], + "disorient": [], + "daytime": ["M"], + "pulsates": [], + "misstatesment": [], + "Leta's": [], + "Bartok": ["M"], + "clarinetists": [], + "footrace": ["M", "S"], + "Philly's": [], + "desecrate": ["D", "S", "G", "N"], + "convergence": ["M", "S"], + "disorganize": [], + "replanted": [], + "juror": ["S", "M"], + "irradiation's": [], + "mosque's": [], + "evadeder": [], + "overnight's": [], + "routine": ["M", "Y", "S"], + "softback": [], + "bandstands's": [], + "worm's": [], + "digressive": [], + "disinability": [], + "Quayle": ["M"], + "indeterminably": [], + "Bertie": ["M"], + "Stone": ["M"], + "fervidly": [], + "cue's": [], + "corer": ["M"], + "Ellie": ["M"], + "slick's": [], + "chastises": [], + "cloud's": [], + "brimstone": ["M"], + "oldener": [], + "vintner'ses": [], + "milieus": [], + "sunscreen": ["M", "S"], + "Stolichnaya's": [], + "scouts": [], + "doggerel's": [], + "Mulroney": ["M"], + "Brie": ["S", "M"], + "cessations": [], + "seahorse'ses": [], + "globetrotter": ["M", "S"], + "location": ["E", "S", "M"], + "mutilation's": [], + "cardamons": [], + "prejudging": [], + "abandons": [], + "equation": ["M"], + "snapshot's": [], + "stick'ser": [], + "felony": ["S", "M"], + "inanimateness's": [], + "Styrofoams's": [], + "sniffle's": [], + "refreshes": [], + "emanationsed": [], + "harpoonersing": [], + "Tlaloc's": [], + "rightness's": [], + "contemplative's": [], + "somewhats": [], + "lugubriousness's": [], + "wall'sed": [], + "arrow": ["M", "S"], + "amassed": [], + "guttersnipes": [], + "pawpaws": [], + "signposts": [], + "eremites": [], + "vigilante": ["S", "M"], + "excellence": ["M"], + "defective": ["M", "P", "Y", "S"], + "prophecies": [], + "Ovid": ["M"], + "taints": [], + "jobsworths": [], + "trample'sers": [], + "liquefiesing": [], + "violators's": [], + "opted": [], + "demurrer's": [], + "purview's": [], + "floweriness": ["M"], + "moistnessen": [], + "subordinate'sing": [], + "rehangs": [], + "brayings": [], + "lugsails's": [], + "wisteria's": [], + "declamation'ses": [], + "mullion's": [], + "Sihanouk's": [], + "suppuration's": [], + "tastelessly": [], + "shits's": [], + "platform": ["S", "G", "M", "D"], + "radiotherapist'ses": [], + "cutlets": [], + "oftenest": [], + "meritoriousness": ["M"], + "noun": ["K", "M", "S"], + "lymph": ["M"], + "obtrudeds": [], + "steady": ["T", "G", "P", "D", "R", "S", "M"], + "horologists": [], + "bacon": ["M"], + "Evan": ["S", "M"], + "plummets": [], + "homeliest": [], + "Araguaya": ["M"], + "Santayana's": [], + "Oxycontin": ["M"], + "schmoozes": [], + "Fernandez's": [], + "overqualified": [], + "moratoriums's": [], + "Ostrogoth": ["M"], + "Bushnell": ["M"], + "bade": [], + "deteriorate": ["D", "S", "G", "N"], + "etymologies": [], + "globular": [], + "collectsing": [], + "halloweds": [], + "ignites": [], + "alleyways's": [], + "unspecified": [], + "footed": [], + "redaction": ["M"], + "craftswomen": [], + "circuiteding": [], + "amethyst": ["S", "M"], + "Romanies": [], + "premieres": [], + "joyridersing": [], + "motorcade'ses": [], + "tits": [], + "fanlight's": [], + "divot's": [], + "fryers's": [], + "Benito": ["M"], + "creameries's": [], + "prefects's": [], + "Smetana's": [], + "hitter": ["S", "M"], + "gram": ["K", "M", "S"], + "Suez": ["M"], + "mediate": ["D", "S", "G", "N"], + "suspension": ["M"], + "breedersing": [], + "lengthily": [], + "haploid's": [], + "Arizonans": [], + "admissibly": [], + "Senate's": [], + "brightnessen": [], + "pumps": [], + "recursive": [], + "hemline": ["S", "M"], + "obstructiveness's": [], + "juniors": [], + "irradiatesing": [], + "windily": [], + "swapped": [], + "baron's": [], + "malcontent'ses": [], + "superpowers": [], + "toasteder": [], + "spectators": [], + "calendar's": [], + "impalement's": [], + "volunteerism": ["M"], + "imparts": [], + "bighorn": ["S", "M"], + "slingshots": [], + "blackout": ["S", "M"], + "murderersing": [], + "cosmoses": [], + "scrabbles": [], + "laborsaving": [], + "Puritan": ["M"], + "noodle's": [], + "steelyards's": [], + "resembleds": [], + "exponentially": [], + "toaster's": [], + "gawped": [], + "Leicester's": [], + "Ingram's": [], + "prominence's": [], + "pragmatics": [], + "diminution's": [], + "valuers": [], + "pewter'ses": [], + "properties": [], + "severenesser": [], + "oculists": [], + "forearm's": [], + "plow": ["G", "M", "D", "S"], + "doeskins": [], + "vassalage": ["M"], + "Capetian's": [], + "cobalt's": [], + "overgeneralizes": [], + "dicotyledons": [], + "bases": [], + "amnesiac's": [], + "Mesopotamian": [], + "resonances": [], + "cookhouses": [], + "groupings": [], + "stayed": [], + "idealizes": [], + "mulch": ["G", "M", "D", "S"], + "beratinged": [], + "pleonasm'ses": [], + "duckling's": [], + "pianofortes's": [], + "healed": ["U"], + "Pugh's": [], + "bulldozersing": [], + "metamorphoseds": [], + "hopper": ["M", "S"], + "infanticide'ses": [], + "Denebola": ["M"], + "snappily": [], + "Edwardian's": [], + "seedling'ses": [], + "hotels": [], + "bawdiest": [], + "digraph": ["M"], + "jumbos": [], + "Bible": ["M", "S"], + "commercialize": ["G", "D", "S"], + "corporate": ["X", "Y", "N"], + "drops": [], + "irrevocable": [], + "alien's": [], + "Indianans": [], + "morticians": [], + "lii": [], + "boxener": [], + "delusional": [], + "groundnut'ses": [], + "liveried": [], + "mender": ["M"], + "Bowen's": [], + "imitatesing": [], + "creakily": [], + "priestess's": [], + "brazening": [], + "wells": [], + "spunkier": [], + "semifinalist'ses": [], + "man's": ["F"], + "incidents's": [], + "troopsers": [], + "trudging": [], + "Aspell": ["M"], + "teareds": [], + "Wovoka's": [], + "daddies's": [], + "hunt's": [], + "insuperably": [], + "hollowness's": [], + "Lvov's": [], + "crustacean": ["S", "M"], + "Ethiopian": ["S", "M"], + "shrivels": [], + "leading": ["M"], + "horror": ["M", "S"], + "cliched": [], + "Malaprop": ["M"], + "clipper": ["S", "M"], + "reparation": ["M", "S"], + "modifier's": [], + "blunter": [], + "endlessnessly": [], + "greenflies": [], + "quinsy": ["M"], + "Lemuel": ["M"], + "loots": [], + "quickener": [], + "Dino's": [], + "jalopy's": [], + "abstemiously": [], + "cashier's": [], + "hogans": [], + "austerities's": [], + "irreducibly": [], + "stalagmite": ["M", "S"], + "Milan's": [], + "radiophones": [], + "regicide's": [], + "perceptivenessly": [], + "emulation's": [], + "Portland's": [], + "overarmed": [], + "reorgs": [], + "infrequence's": [], + "gradient": ["M", "S"], + "cataclysmic": [], + "absolutes": [], + "tribesmen": [], + "forecastle'ses": [], + "gluiest": [], + "thorn's": [], + "trend's": [], + "grandparent'ses": [], + "defeats": [], + "elodeas": [], + "largess's": [], + "churl's": [], + "necktie'ses": [], + "Rhonda's": [], + "quiescence": ["M"], + "tonsillitis's": [], + "circumflex'ses": [], + "aped": [], + "cranny's": [], + "interlaced": [], + "pestilences": [], + "psychology": ["S", "M"], + "pool": ["G", "M", "D", "S"], + "skate'sers": [], + "SOS": ["M"], + "repatriateds": [], + "pollinators": [], + "professionally": [], + "marooning": [], + "becalmsed": [], + "atomizer's": [], + "Lupus's": [], + "derby's": [], + "snapper's": [], + "adventurers": [], + "outproduces": [], + "executes": [], + "sow's": [], + "Pembroke": ["M"], + "divots's": [], + "pictorial's": [], + "episcopacy": ["M"], + "scrapbook": ["S", "M"], + "lacewing": ["S", "M"], + "superusers": [], + "idioms's": [], + "instructions": [], + "foreordained": [], + "Quasimodo's": [], + "quart's": [], + "sleepwalks": [], + "comprehension": ["I", "M"], + "godfather's": [], + "onesens": [], + "bigamy": ["M"], + "speculator": ["M", "S"], + "oriole's": [], + "Wovoka": ["M"], + "noninvasive": [], + "Hazel's": [], + "niches": [], + "tidewater's": [], + "stagnates": [], + "amnesty's": [], + "rosineding": [], + "parlance": ["M"], + "Bowery's": [], + "interpolating": [], + "weathers's": [], + "impulsiveness's": [], + "ghetto": ["S", "M"], + "kvetching": [], + "Tracy": ["M"], + "dominions's": [], + "hammertoe'ses": [], + "tubs": [], + "Nordic'ses": [], + "eructations's": [], + "riggers's": [], + "bunghole's": [], + "consisteding": [], + "pectic": [], + "thumb'sed": [], + "pretentiousness": ["M"], + "terrorizesing": [], + "huddle": ["D", "S", "M", "G"], + "tradeswomen": [], + "unindefinable": [], + "Atman": ["M"], + "pointlessness's": [], + "ask": ["S", "D", "G"], + "scurrilous": ["P", "Y"], + "Lucretia's": [], + "paragraphing's": [], + "palpitations": [], + "quarks": [], + "critiquing": [], + "autocracy's": [], + "Arabic's": [], + "Kaye": ["M"], + "totterer's": [], + "denominator": [], + "trafficked": [], + "orangery's": [], + "maroon's": [], + "Cascades": ["M"], + "spreader": ["M"], + "positively": [], + "bopped": [], + "stenciled": [], + "Ian": ["M"], + "squat": ["S", "M", "P"], + "airfoils's": [], + "Hollands": [], + "diet's": [], + "misrepresenteds": [], + "fungicides": [], + "backslapping's": [], + "Sarajevo": ["M"], + "hairsprays": [], + "regrouped": [], + "ironically": [], + "remapping": [], + "reply": [], + "bewilder": ["L", "S", "G", "D"], + "rainier": [], + "retailers": [], + "nameplates": [], + "Gucci": ["M"], + "wunderkind": ["S"], + "creativeness's": [], + "impostors's": [], + "ilium's": [], + "frizzly": [], + "salaamed": [], + "Blanchard": ["M"], + "convalescents's": [], + "helpings": [], + "bastard's": [], + "Shevat's": [], + "mercerized": [], + "transliterate": ["D", "S", "G", "N", "X"], + "depreciation's": [], + "snuffled": [], + "referees": [], + "valveless": [], + "recon": ["S"], + "nonclerical's": [], + "Colombo's": [], + "catheter's": [], + "Nimitz": ["M"], + "barbecue'sing": [], + "flatcar": ["S", "M"], + "Truth's": [], + "sheath": ["J", "M"], + "buckram": ["M"], + "feminists's": [], + "arrive": ["G", "D", "S"], + "prosier": [], + "treasurersing": [], + "penumbra's": [], + "germicide": ["M", "S"], + "recuses": [], + "textile": ["M", "S"], + "Albanian's": [], + "league": ["D", "S", "M", "G"], + "vulcanizinged": [], + "Penderecki": ["M"], + "sorehead's": [], + "curtsyinged": [], + "cosplay": [], + "nationalizes": [], + "proverb": [], + "Faustino's": [], + "demarcating": [], + "hull'sed": [], + "intriguer's": [], + "squiggled": [], + "pseudonyms": [], + "acrostics's": [], + "tinplate": ["M"], + "focused": ["U"], + "Lenin's": [], + "tallies": [], + "burger's": [], + "sensors": [], + "ribs": [], + "schemer's": [], + "meditate": ["D", "S", "G", "N", "V", "X"], + "dealer": ["M"], + "magnetizinged": [], + "ickier": [], + "recapitulate": [], + "ratcheteds": [], + "divorcement's": [], + "prepays": [], + "Lydians": [], + "fugue's": [], + "disembowel": ["S", "D", "L", "G"], + "urbanize": ["D", "S", "G"], + "quitter's": [], + "brat": ["S", "M"], + "raconteur's": [], + "Rockies's": [], + "rustiness's": [], + "razor'ses": [], + "herringbone": ["M"], + "anemia's": [], + "crusades": [], + "Zedekiah": ["M"], + "lure's": [], + "befouling": [], + "genuineness": ["M"], + "gimlets": [], + "causation's": [], + "pouching": [], + "flyweight": ["S", "M"], + "stabber's": [], + "interfileds": [], + "Leopoldo's": [], + "Amazon": ["S", "M"], + "shellackings": [], + "equitably": ["I"], + "suspicion's": [], + "signed": ["U"], + "steeds's": [], + "immortalize": ["D", "S", "G"], + "overhand": ["M", "D", "S"], + "sanded": [], + "desirous": [], + "forkfuls's": [], + "Mazama": ["M"], + "unreinitialized": [], + "grafting": [], + "Cherie": ["M"], + "badlands's": [], + "charting": [], + "presupposing": [], + "avocados": [], + "scrim'ses": [], + "blurb": ["M", "S"], + "philosophy": ["S", "M"], + "electioneerings": [], + "perk": ["M", "D", "S", "G"], + "ketch'ses": [], + "creditors": [], + "clonkeding": [], + "primroses's": [], + "hiatuses": [], + "eulogist's": [], + "Hafiz's": [], + "pulleys": [], + "shatter'sed": [], + "wanderer's": [], + "Flowers": ["M"], + "lookalike'ses": [], + "CBS": ["M"], + "vestibules": [], + "bringerers": [], + "linchpin's": [], + "geometries": [], + "alighteds": [], + "inanities's": [], + "tipplersing": [], + "agglutinatingen": [], + "NIMBY": [], + "franchisee": ["S", "M"], + "sidelines": [], + "taring": [], + "latticeworks's": [], + "citing": [], + "cocky": ["R", "T", "P"], + "sicked": [], + "Warren": ["M"], + "moisturizer's": [], + "threaten": ["D", "G"], + "congas's": [], + "spraysed": [], + "bounce'sers": [], + "nuptials": [], + "newsmen": [], + "postmarking": [], + "rockiness's": [], + "drizzlinged": [], + "substitutingen": [], + "retail": [], + "wallpapering": [], + "Nikon's": [], + "carved": [], + "cooperatingen": [], + "hexagon's": [], + "solace": ["D", "S", "M", "G"], + "passivized": [], + "sidestrokeds": [], + "aniseed": ["M"], + "scapulae": [], + "miscalculations": [], + "global": ["Y"], + "peril'sed": [], + "Tamera's": [], + "dotage": ["M"], + "reimbursement's": [], + "viler": [], + "surety's": [], + "loganberry's": [], + "delegate": ["G", "D"], + "Hamitic": ["M"], + "constrictive": [], + "kaffeeklatsches": [], + "bombardment": ["S", "M"], + "adopting": [], + "bullshit'ses": [], + "album": ["M", "N", "S"], + "caber": [], + "oodles": ["M"], + "haphazardness's": [], + "pols": [], + "perpendicular": ["S", "M", "Y"], + "sampler": ["M"], + "corm's": [], + "broileder": [], + "Rostov": ["M"], + "heartaches": [], + "Sibyl": ["M"], + "proinactive": [], + "chasms": [], + "tournament": ["S", "M"], + "towelettes": [], + "postmark's": [], + "empirically": [], + "cardio": [], + "swearings": [], + "darkest": [], + "cottonwoods": [], + "xxxvii": [], + "hetero": ["S", "M"], + "workout": ["S", "M"], + "orationens": [], + "thorougher": [], + "rabid": ["P", "Y"], + "Clarendon": ["M"], + "Bertie's": [], + "retirement'ses": [], + "capacious": ["P", "Y"], + "bibliographic": [], + "exerted": [], + "Montezuma": ["M"], + "Badlands's": [], + "romeo's": [], + "spec": ["M", "S"], + "closeouts": [], + "scapegoated": [], + "appearance": ["E", "A", "M", "S"], + "putrefieds": [], + "outbidding": [], + "outplacement's": [], + "reattempt": [], + "pastille's": [], + "apprentice'sing": [], + "duelersing": [], + "fortuitousness's": [], + "doc's": [], + "afforests": [], + "winterized": [], + "joying": [], + "palpatingen": [], + "neutralism's": [], + "hulled": [], + "rumples": [], + "petioles's": [], + "sense'sing": [], + "Cabrera's": [], + "greens": [], + "justice": ["I", "M", "S"], + "pelting": [], + "flattered": [], + "menthol's": [], + "Slovak's": [], + "openwork's": [], + "ultraviolet's": [], + "requisite'sen": [], + "mobilizeds": [], + "streamlines": [], + "lectureder": [], + "dance's": [], + "definiteness": ["I", "M"], + "urging": [], + "gamble's": [], + "Aurangzeb": ["M"], + "fiftieth": ["M"], + "skinflint's": [], + "tacking": [], + "immures": [], + "contraband's": [], + "premeditates": [], + "heralded": ["U"], + "filling": ["S", "M"], + "Dartmouth": ["M"], + "transience": ["M"], + "Heshvan": ["M"], + "Vijayanagar": ["M"], + "incidental's": [], + "Clark": ["M"], + "Internet's": [], + "hectograms's": [], + "photocopied": [], + "Kit": ["M"], + "jeweled": [], + "bandbox'ses": [], + "Lombardy's": [], + "EEG's": [], + "electroscope's": [], + "orris's": [], + "crosscurrents": [], + "Haldane's": [], + "doghouse's": [], + "abductee's": [], + "twiddly": [], + "pervasiveness's": [], + "Brits": [], + "freely": [], + "breaststrokes's": [], + "glans": ["M"], + "antedatinged": [], + "fashions": [], + "slammer": ["S", "M"], + "herdeder": [], + "machine's": [], + "Oxonian": ["M"], + "atoneds": [], + "shopkeeper's": [], + "cloth's": [], + "rainbows": [], + "battlefront's": [], + "laddered": [], + "Tombaugh's": [], + "butterballs": [], + "imprudently": [], + "Elysiums": [], + "interrogateds": [], + "proofreaderers": [], + "vacuums's": [], + "strands": [], + "freeze": ["U", "A", "G", "S"], + "despoil": [], + "sausage's": [], + "centerpiece": ["M", "S"], + "sunspots's": [], + "titheder": [], + "pacifically": [], + "trabecular": [], + "conceits's": [], + "flowchart": ["S", "M"], + "sweatshop'ses": [], + "defection": ["M", "S"], + "Union's": [], + "paginate": ["D", "S", "G", "N"], + "silver": ["G", "M", "D", "S"], + "thorax'ses": [], + "commutation'ses": [], + "Malaysians": [], + "plantains's": [], + "mineralogists": [], + "thudded": [], + "emitted": [], + "Lessie": ["M"], + "Vermeer": ["M"], + "fear'sed": [], + "disputer": ["M"], + "hearers": [], + "pulpiest": [], + "portholes": [], + "gazersing": [], + "webfeet": [], + "reecho": [], + "stewarding": [], + "groomsman": ["M"], + "mawkishly": [], + "monarchist'ses": [], + "flavoringings": [], + "vanadium's": [], + "pickerel'ses": [], + "Alba": ["M"], + "junkiers": [], + "abstractsness": [], + "simonize": ["D", "S", "G"], + "positivist": ["S"], + "Percival": ["M"], + "fiche": ["S", "M"], + "neophyte": ["M", "S"], + "mans": [], + "slim": ["P", "S"], + "inclusiveness's": [], + "brainlessly": [], + "marsh'ses": [], + "metastasis's": [], + "matinees": [], + "Shintoisms": [], + "backstrokinged": [], + "patience's": [], + "townie'ses": [], + "overspread": ["G", "S"], + "folio": ["S", "M"], + "rumbaed": [], + "vb": [], + "scuff'sed": [], + "martingale": ["M", "S"], + "vouched": [], + "iota": ["M", "S"], + "whit'sed": [], + "minicomputers": [], + "extends": [], + "climatologists": [], + "whitetails": [], + "fairest": [], + "whitewalls's": [], + "overprint'sed": [], + "haltered": [], + "weeknights": [], + "streamer's": [], + "Durant": ["M"], + "impugning": [], + "cussesed": [], + "friendless": [], + "aneurysms's": [], + "laxest": [], + "hyping": [], + "disputingable": [], + "tutor's": [], + "yessed": [], + "soaking's": [], + "memorizesing": [], + "globetrotter's": [], + "dadoes": [], + "downfield": [], + "marbleizing": [], + "cretaceous": [], + "stultification": ["M"], + "loaders": [], + "overacting": [], + "his": [], + "archaist'ses": [], + "pluckiest": [], + "faze": ["G", "D", "S"], + "slotted": [], + "costarred": [], + "taffies": [], + "nova'ses": [], + "gentry": ["S", "M"], + "surfaceds": [], + "bloodshed's": [], + "swayed": ["U"], + "contrition": ["M"], + "assuages": [], + "Lucknow's": [], + "uncivilized": [], + "sorbet's": [], + "mitt": ["M", "N", "S", "X"], + "blinker": ["M", "D", "G"], + "perfected": [], + "qualification": ["E", "M"], + "barrettes's": [], + "extrapolating": [], + "jugglery": ["M"], + "Fr": ["M", "D"], + "titan's": [], + "populates": [], + "cassowaries's": [], + "byplay's": [], + "urgency": ["M"], + "upperclasswomen": [], + "chancres's": [], + "compos": [], + "reverberation's": [], + "Gaiman": ["M"], + "roughly": [], + "theatrics's": [], + "biochemical's": [], + "decimation": ["M"], + "scrubbed": [], + "valuations": [], + "privileging": [], + "stake": ["D", "S", "M", "G"], + "chancre": ["S", "M"], + "O'Connell's": [], + "shalom": [], + "African's": [], + "blag": ["S"], + "trusteeship's": [], + "manifest's": [], + "quirk'sed": [], + "dwarf's": [], + "duel's": [], + "idolater": ["S", "M"], + "artificiality": ["M"], + "dhows": [], + "Cooley": ["M"], + "pushily": [], + "sterilizesers": [], + "yarmulkes": [], + "Schulz's": [], + "Norplant": ["M"], + "drawback": ["M", "S"], + "macadam's": [], + "wimpy": ["R", "T"], + "wiggle's": [], + "dromedaries": [], + "overlooking": [], + "bowstrings": [], + "disciplinarian": ["S", "M"], + "tabulationens": [], + "Maura's": [], + "dispensersing": [], + "uvula's": [], + "eyeliners": [], + "dealingsers": [], + "breweries's": [], + "civilizeds": [], + "loudspeaker's": [], + "doyennes": [], + "baddie": ["M", "S"], + "talker": ["M"], + "accelerator": ["S", "M"], + "magnetizes": [], + "spades's": [], + "sturdiness's": [], + "hangout's": [], + "coiffures": [], + "novelties": [], + "conveyancings": [], + "Myers": ["M"], + "refuter": ["M"], + "enact": ["A", "S", "L", "D", "G"], + "leak": ["M", "D", "S", "G"], + "fragmented": [], + "shirtsleeves's": [], + "diodes's": [], + "Middleton": ["M"], + "ailing": [], + "Cauchy": ["M"], + "sickroom's": [], + "tranquilizers": [], + "classing's": [], + "thousand": ["M", "H", "S"], + "terrors's": [], + "durability's": [], + "executor's": [], + "revivesing": [], + "deigns": [], + "imbecilities": [], + "falconer's": [], + "Sanka's": [], + "wavinged": [], + "weaving": ["M"], + "dust'sed": [], + "decibel's": [], + "Jenner's": [], + "impermissible": [], + "lien": ["M", "S"], + "retrorocket": ["M", "S"], + "edition'ses": [], + "chocks": [], + "inebriated": [], + "stateroom'ses": [], + "mummificationed": [], + "Marisa's": [], + "crusader": ["M"], + "Creole's": [], + "sleeplessness's": [], + "eclectics": [], + "macrame": ["M"], + "Moluccas": ["M"], + "slamming": [], + "quail": ["G", "M", "D", "S"], + "Fafnir": ["M"], + "shortwave": ["M", "S"], + "taiga": ["M", "S"], + "demagnetization": [], + "lynx'ses": [], + "stabbers": [], + "scrapes's": [], + "Wodehouse": ["M"], + "cornrowing": [], + "herald": ["S", "M", "D", "G"], + "version": ["A", "F", "I", "M", "S"], + "Android's": [], + "Cimabue's": [], + "apolitically": [], + "affiliation's": [], + "restringsing": [], + "Telemann's": [], + "toxicologist": ["S", "M"], + "Tropicana's": [], + "Claire's": [], + "fatigues": ["M"], + "Lulu's": [], + "mm": [], + "padlockeds": [], + "Aspen": ["M"], + "plywood": ["M"], + "stances's": [], + "Combs": ["M"], + "Khartoum's": [], + "discreetnesser": [], + "pointlessnessly": [], + "dank": ["P", "T", "R", "Y"], + "mensch's": [], + "underarm's": [], + "tortures": [], + "Osceola": ["M"], + "unthinking": ["Y"], + "impingesing": [], + "Shanna": ["M"], + "snapdragons's": [], + "mafia's": [], + "noncriminal": ["S", "M"], + "rosters's": [], + "rockery": ["S"], + "Sanforized": ["M"], + "orthographies's": [], + "snowstorms": [], + "As's": [], + "demonizes": [], + "boathouse's": [], + "Goldwater": ["M"], + "dumpiness's": [], + "storytellers": [], + "pah": [], + "Frank": ["S", "M"], + "spammer's": [], + "gobs": [], + "equivalent'sly": [], + "swellheads": [], + "militias": [], + "buddy's": [], + "Brownie": ["S"], + "McMahon": ["M"], + "whinnies": [], + "jitney's": [], + "embarkinged": [], + "spattering's": [], + "Moises": ["M"], + "snag'ses": [], + "tron": ["S"], + "magistracy's": [], + "spoileder": [], + "writingses": [], + "bison's": [], + "excitability's": [], + "quasi": [], + "pinching": [], + "ebullience": ["M"], + "spate": ["S", "M"], + "escapade's": [], + "PBS's": [], + "hosiery's": [], + "eschews": [], + "achieved": [], + "cantors": [], + "paranoids": [], + "smarmier": [], + "pranksters's": [], + "jeereds": [], + "fuddle": ["D", "S", "M", "G"], + "trowing": [], + "decorative": ["Y"], + "unities": [], + "implicate": ["D", "S", "G"], + "honeybees": [], + "simulcast'sed": [], + "abets": [], + "moleskin's": [], + "chintz's": [], + "scribes": [], + "bullhead'sed": [], + "handpicking": [], + "together": ["P"], + "crapes": [], + "Magsaysay's": [], + "commentaries's": [], + "snuffly": [], + "Chandon": ["M"], + "southeastward": ["S"], + "sailboat": ["M", "S"], + "demur'ser": [], + "overachieve": ["Z", "G", "D", "R", "S"], + "humiliate": ["D", "S", "G", "N", "X"], + "kindliness's": [], + "pink's": [], + "hitchhikes": [], + "nagware": [], + "nonsexual": [], + "reinstalling": [], + "Swed": ["N"], + "Ernesto": ["M"], + "portage'sing": [], + "forestallinged": [], + "hammerersing": [], + "titch": ["S"], + "purist": ["M", "S"], + "barf": ["S", "G", "M", "D", "Y"], + "Chandigarh": ["M"], + "dyslectic": ["S", "M"], + "Federal's": [], + "Kendall's": [], + "Can": ["M"], + "backpedaled": [], + "openerly": [], + "defenses's": [], + "dearest": ["S"], + "interpolate": ["X", "D", "S", "G", "N"], + "Yugoslavia": ["M"], + "Sofia": ["M"], + "interments": [], + "garnets": [], + "mace's": [], + "emblazon": ["G", "D", "L", "S"], + "undeceive": [], + "regularization": ["M"], + "evocation'ses": [], + "tercentenary": ["S", "M"], + "sort": ["F", "A", "S", "G", "D", "M"], + "salable": ["U"], + "manometer": ["S", "M"], + "hipsness": [], + "mimeds": [], + "perpetuateds": [], + "palm's": [], + "tuberose": ["M"], + "Faisalabad": ["M"], + "paddy's": [], + "Kitakyushu": ["M"], + "budgeting's": [], + "solitariness's": [], + "paeans": [], + "laptop": ["S", "M"], + "appeased": [], + "obeys": [], + "joviality's": [], + "vaunt": ["S", "M", "D", "G"], + "subscription'ses": [], + "flutter'sed": [], + "alkalizesing": [], + "transportable": [], + "entrant": ["S", "M"], + "Falasha": ["M"], + "forces's": [], + "revengeful": [], + "Mozambican": ["S", "M"], + "muting": [], + "Chi's": [], + "Iowas's": [], + "umlaut'ses": [], + "lackey's": [], + "harassing": [], + "headbutting": [], + "heateding": [], + "Chimborazo": ["M"], + "guardrail": ["S", "M"], + "odiously": [], + "cutups's": [], + "utilizingable": [], + "oversupply": ["G", "D", "S"], + "twopenny": [], + "grapnel": ["M", "S"], + "solenoid'ses": [], + "assignmenting": [], + "BBB's": [], + "jest": ["M", "D", "R", "S", "Z", "G"], + "apathy": ["M"], + "talebearers": [], + "quartermasters": [], + "craws": [], + "flukes's": [], + "misprint": ["G", "M", "D", "S"], + "respirator's": [], + "foray": ["S", "M", "D", "G"], + "guillotining": [], + "Sergio": ["M"], + "epitomizeds": [], + "peripheral": ["M", "Y", "S"], + "geode": ["S", "M"], + "cock": ["M", "D", "G", "S"], + "awls": [], + "inconveniencing": [], + "notching's": [], + "cathartics": [], + "goldbrickers": [], + "Haynes": ["M"], + "skyward": ["S"], + "fobs": [], + "crowded": ["U"], + "deviled": [], + "contributed": [], + "sticker": ["M"], + "fingerlings's": [], + "whale'sers": [], + "mandated": [], + "extrication's": [], + "requesteder": [], + "chattily": [], + "Formosan": ["M"], + "rosewater's": [], + "Lucretia": ["M"], + "miscounts": [], + "relay": ["D"], + "polemicist": ["S", "M"], + "green'sed": [], + "stater": [], + "shout": ["Z", "G", "M", "D", "R", "S"], + "WSW's": [], + "submersioned": [], + "overcareful": [], + "stickup'ses": [], + "dwellings": [], + "parenthesizeds": [], + "unisex's": [], + "courtesan's": [], + "nonfictional": [], + "ambulancewomen": [], + "televiseds": [], + "mailed": [], + "yams's": [], + "inferior": ["M", "S"], + "spellchecks": [], + "drill": ["S", "M", "D", "R", "Z", "G"], + "contumely's": [], + "Triangulum's": [], + "Shepherd": ["M"], + "beansprout": ["S"], + "Rutherford": ["M"], + "machinating": [], + "searchlights": [], + "chipboard": [], + "Seiko": ["M"], + "ripening": [], + "convalescences": [], + "hometown's": [], + "fructifies": [], + "Jacuzzi": ["M"], + "swallowtail's": [], + "caucusing": [], + "platefuls": [], + "Maldivian'ses": [], + "hardener": ["M"], + "sharersing": [], + "backsides": [], + "cradled": [], + "Salem's": [], + "apparatus'ses": [], + "hotbed'ses": [], + "irrigatingen": [], + "cluster's": [], + "awns's": [], + "precinct'ses": [], + "curacies": [], + "Dustbuster": ["M"], + "blinking's": [], + "Mississauga": ["M"], + "Bunker": ["M"], + "analyzer's": [], + "Tarim's": [], + "concatenate": ["X", "D", "S", "G", "N"], + "ballpark'ses": [], + "militarist": ["S", "M"], + "concealerers": [], + "defenestration": ["S"], + "unconcealed": [], + "evinced": [], + "party": ["G", "D", "S", "M"], + "Tabernacle's": [], + "Madeline": ["M"], + "balboas": [], + "fumbler": ["M"], + "Melbourne": ["M"], + "damp'sed": [], + "deigninged": [], + "demising": [], + "bodge": ["G", "D", "S"], + "brings": [], + "damned": ["T"], + "Donatello": ["M"], + "beadle": ["S", "M"], + "Mamie's": [], + "Chandrasekhar's": [], + "Ks": [], + "respecter": [], + "biomass": ["M"], + "ASCII's": [], + "osculations": [], + "blaming": [], + "Mara": ["M"], + "laziness": ["M"], + "obese": [], + "tempera's": [], + "Wodehouse's": [], + "putrefy": ["G", "D", "S"], + "kingfishers's": [], + "shorthanded": [], + "miscalculating": [], + "couplings": [], + "Bartholomew": ["M"], + "first'sly": [], + "preserves's": [], + "huntsman's": [], + "dehumidify": [], + "flipping": [], + "rejuvenate": ["D", "S", "G", "N"], + "knapsacks": [], + "aspiration's": [], + "calendars": [], + "Shiloh's": [], + "baffler": ["M"], + "transmutes": [], + "codex": ["M"], + "envisage": ["G", "D", "S"], + "distribution's": [], + "forequarter'ses": [], + "rave'sers": [], + "slashed": [], + "twisted": [], + "spotlight'sed": [], + "yo": [], + "pigsty": ["S", "M"], + "stingrays": [], + "guidebooks's": [], + "salvo's": [], + "acne": ["M"], + "chesterfield's": [], + "harpists's": [], + "perishable's": [], + "Yellowstone": ["M"], + "millpond": ["S", "M"], + "loquaciousness": ["M"], + "totality": ["S", "M"], + "peeing": [], + "eruption": ["M", "S"], + "televangelist's": [], + "Biscay's": [], + "subventions's": [], + "toxemia's": [], + "guava": ["S", "M"], + "Whitman's": [], + "stupid's": [], + "ominousliness": [], + "forwardliers": [], + "alertliness": [], + "gravimeters": [], + "brittlenesser": [], + "provender": ["M"], + "Unitarian'ses": [], + "Raleigh": ["M"], + "horseshoeing": [], + "divergence's": [], + "sweated": [], + "Brice's": [], + "Beijing's": [], + "widensed": [], + "poleaxeds": [], + "carousels": [], + "doctoral": [], + "drowse's": [], + "Diogenes": ["M"], + "practice": ["D", "S", "M", "G", "B"], + "harbored": [], + "anachronistic": [], + "raining's": [], + "valedictorian's": [], + "adjurations": [], + "propagandizeds": [], + "hounding": [], + "commons": [], + "compression's": [], + "imperils": [], + "ageists": [], + "apostasies's": [], + "Alford's": [], + "preceptor's": [], + "handiness's": [], + "Jay's": [], + "palliateds": [], + "famine's": [], + "Transylvania's": [], + "scaffolding's": [], + "crasser": [], + "perpetratingen": [], + "casting": ["A", "M"], + "Granada": ["M"], + "launders": [], + "peens": [], + "unapologetic": [], + "ash's": [], + "pharaoh": ["M"], + "dwarfsing": [], + "wimpsing": [], + "viceroys": [], + "sky's": [], + "scurry's": [], + "unalterably": [], + "demagoguery": ["M"], + "Murchison's": [], + "Yellowstone's": [], + "vouchsafes": [], + "Jacques's": [], + "sighting": ["M"], + "outbound": [], + "magicked": [], + "voluptuously": [], + "igloo's": [], + "wefts": [], + "shyness": ["M"], + "precipice": ["S", "M"], + "inculcate": ["D", "S", "G", "N"], + "Korean's": [], + "Ariel": ["M"], + "blanketed": [], + "veneered": [], + "fancywork's": [], + "sledging": [], + "congeries's": [], + "chastenessly": [], + "amnesic": ["S", "M"], + "cheaters": [], + "Martha": ["M"], + "warders": [], + "scratchiness": ["M"], + "adsorbing": [], + "inherited": [], + "Landon's": [], + "emanation": ["M"], + "knockout's": [], + "smartlications": [], + "mock": ["D", "R", "S", "Z", "G"], + "brood'sed": [], + "arthritic'ses": [], + "peaceful": ["P", "Y"], + "brunch": ["M", "D", "S", "G"], + "trifectas": [], + "riding": ["M"], + "freestyles's": [], + "sultriness": ["M"], + "lancet": ["S", "M"], + "comments": [], + "syllable": ["M", "S"], + "threesome's": [], + "outputted": [], + "ammeter": ["S", "M"], + "octave's": [], + "Catalan's": [], + "pretext's": [], + "dairywoman": ["M"], + "celebrateds": [], + "gratefully": [], + "farrows": [], + "Epcot": ["M"], + "sagas": [], + "thins": [], + "snowfields": [], + "requisitions": [], + "quiche": ["S", "M"], + "Portia": ["M"], + "gooseberries": [], + "Agassi": ["M"], + "endpoints's": [], + "winsome": ["Y", "T", "R", "P"], + "Fillmore's": [], + "woodcraft's": [], + "towboat": ["M", "S"], + "potentiating": [], + "completes": [], + "scurrility's": [], + "clocks": [], + "abolitionist's": [], + "formings": [], + "Abram's": [], + "rigid": ["Y", "P"], + "Tod's": [], + "XML": [], + "officiateds": [], + "wow's": [], + "mildew": ["S", "M", "D", "G"], + "financier's": [], + "nippiest": [], + "restating": [], + "muffs": [], + "unimpressive": [], + "gored": [], + "totalitarians": [], + "yachted": [], + "joggling": [], + "incompatibility": ["S"], + "acupuncturist's": [], + "Indochina": ["M"], + "surenessly": [], + "rewritten": [], + "spokesperson'ses": [], + "hyacinth": ["M"], + "turbine": ["S", "M"], + "Gene": ["M"], + "Donnell": ["M"], + "broadcasts": [], + "Formosan's": [], + "Lovecraft": ["M"], + "Pitt": ["S", "M"], + "Pygmalion": ["M"], + "adherents": [], + "taximeter": ["M", "S"], + "lampoons": [], + "mentioning": [], + "enrollment'ses": [], + "stroppiness": [], + "stall's": [], + "Abuja": ["M"], + "bilkersing": [], + "viceroy": ["M", "S"], + "Shakespearean": ["M"], + "cradles's": [], + "eggplant's": [], + "sampans's": [], + "worryinged": [], + "Au": ["M"], + "strumpets": [], + "adoring": ["Y"], + "weekday's": [], + "Left": [], + "spritzes": [], + "rapporteurs": [], + "shelled": [], + "palavers's": [], + "sudsy": ["T", "R"], + "twin": ["M", "D", "R", "S", "Z", "G"], + "reacquiresing": [], + "acclaim'sed": [], + "sinister": [], + "Chadian'ses": [], + "earbud": ["S", "M"], + "broncos's": [], + "determininged": [], + "amercement": ["S", "M"], + "Getty": ["M"], + "Babylon'ses": [], + "status": ["M", "S"], + "Cebuano": ["M"], + "mutably": [], + "prearranges": [], + "winger": [], + "translations": [], + "tailing": [], + "stoneware": ["M"], + "cajolement": ["M"], + "pitta": ["S"], + "benevolence's": [], + "suffragettes": [], + "emancipatingen": [], + "trip's": [], + "awfuller": [], + "streaky": ["T", "R"], + "whole'sness": [], + "postersing": [], + "climaxing": [], + "bends": [], + "Ithacan's": [], + "emotionally": [], + "stricture": ["S", "M"], + "diversity's": [], + "veileding": [], + "unstably": [], + "muffin": ["M", "S"], + "plethora's": [], + "Pilgrims": [], + "transmigrate": ["G", "N", "D", "S"], + "loading's": [], + "rowels's": [], + "sapless": [], + "Janjaweed": ["M"], + "telephoto": ["S", "M"], + "underparts": [], + "weigh's": [], + "gerund's": [], + "TOEFL": [], + "amorphous": ["P", "Y"], + "Manichean": ["M"], + "maxeds": [], + "ladled": [], + "Ronald": ["M"], + "hothouses's": [], + "clinkers": [], + "dumbest": [], + "savant": ["S", "M"], + "artifice'sers": [], + "satires's": [], + "wheedlersing": [], + "Elton": ["M"], + "meany's": [], + "scraped": [], + "Judea's": [], + "overdose'sing": [], + "rejoicing": ["M"], + "sewerage": ["M"], + "oxidizers": [], + "gainsayer": ["M"], + "congressmen": [], + "gliders": [], + "steer's": [], + "partieds": [], + "pirating": [], + "spark's": [], + "acquirabled": [], + "knelled": [], + "grappleds": [], + "emperor's": [], + "eternities": [], + "abrades": [], + "morel": ["S", "M"], + "shirted": [], + "bendables": [], + "impugnsed": [], + "boastersing": [], + "playgroups": [], + "praiseworthiness": ["M"], + "naturally": [], + "cuckolds": [], + "kookinesser": [], + "sewinged": [], + "Mindoro": ["M"], + "rockierness": [], + "Derrick's": [], + "mimicked": [], + "command'sed": [], + "abstain": ["D", "R", "Z", "G", "S"], + "audience'ses": [], + "conjugally": [], + "basil's": [], + "nibs's": [], + "minibikes": [], + "maiden's": [], + "Veda's": [], + "stammerer": ["M"], + "Lonnie's": [], + "notification": ["M"], + "printer": ["M", "S"], + "foulard": ["M"], + "arching": [], + "specifiable": [], + "sellotapeds": [], + "spinster": ["S", "M"], + "cent'ser": [], + "leas's": [], + "beverage's": [], + "prorefile": [], + "proclivities": [], + "kettle": ["S", "M"], + "bedaubs": [], + "critics": [], + "Myron": ["M"], + "bun's": [], + "jolts": [], + "outsides": [], + "muckraked": [], + "hectare's": [], + "morning's": [], + "fustierness": [], + "Hagiographa": ["M"], + "renovatesens": [], + "impoverishment's": [], + "peed": [], + "mouthful": ["M", "S"], + "Lemaitre": ["M"], + "esplanade'ses": [], + "repatriate": ["X", "D", "S", "M", "G", "N"], + "shapinged": [], + "circuit's": [], + "burnsable": [], + "ring'sed": [], + "Audubon's": [], + "Romanov": ["M"], + "qualificationed": [], + "London's": [], + "martyring": [], + "headscarves": [], + "asides": [], + "inn'ser": [], + "enthralling": [], + "oven": ["M", "S"], + "radiometry": ["M"], + "esophagi": [], + "phantasmagoria'ses": [], + "palpitates": [], + "paraplegia": ["M"], + "stinging": [], + "betas": [], + "forehead's": [], + "diffusesly": [], + "equal's": [], + "gorging": [], + "largos's": [], + "duopoly": ["S"], + "diplomatic": ["U"], + "Page's": [], + "purine'ses": [], + "standout's": [], + "phylactery's": [], + "vacationed": [], + "propelled": [], + "adult's": [], + "hedger": ["M"], + "turrets": [], + "fathom'sed": [], + "grip": ["M", "D", "R", "S", "Z", "G"], + "surrender's": [], + "gorp": ["M", "S"], + "interpretation's": [], + "trumping's": [], + "prosceniums": [], + "sandpaper": ["G", "M", "D", "S"], + "orangutan": ["S", "M"], + "obeisances's": [], + "spattering": [], + "packing": [], + "velocipede's": [], + "Guallatiri": ["M"], + "foam's": [], + "levitation's": [], + "acridest": [], + "Eleazar's": [], + "thatch's": [], + "patricides": [], + "pleurisy": ["M"], + "vaccination": ["M"], + "europium": ["M"], + "potash": ["M"], + "favorites's": [], + "Muse's": [], + "geckos": [], + "Haiti": ["M"], + "inexpressibly": [], + "Greene's": [], + "spears's": [], + "jiff'ses": [], + "prearrange": ["L", "G", "D", "S"], + "earlier": [], + "beauticians": [], + "purgeder": [], + "cabinetmakers": [], + "tenderizinged": [], + "Pillsbury": ["M"], + "potholes": [], + "pastiche": ["M", "S"], + "abscond": ["Z", "G", "S", "D", "R"], + "moralistically": [], + "defrauder": ["M"], + "Accra": ["M"], + "freight'sed": [], + "toupee'ses": [], + "disconnectedness": ["M"], + "wasteland's": [], + "Arlington's": [], + "flapping": [], + "duet": ["M", "S"], + "lamentations": [], + "anger": ["G", "M", "D", "S"], + "ghosted": [], + "permeability's": [], + "jousteder": [], + "generalities's": [], + "kiddie": ["S", "M"], + "scleroses": [], + "barflies's": [], + "overburdening": [], + "muff's": [], + "Republicanism": [], + "giants's": [], + "Geiger's": [], + "Bernhardt": ["M"], + "Holden": ["M"], + "tellies": [], + "okra": ["M", "S"], + "trader": ["M"], + "lasso's": [], + "maximizes": [], + "persons": [], + "concordant": [], + "megachurch": ["M", "S"], + "capsule'sing": [], + "intercommunicatingen": [], + "hurricane": ["M", "S"], + "impeachments": [], + "feminized": [], + "remissness": ["M"], + "sleeping": [], + "Uzbekistan's": [], + "opinions": [], + "fatalities's": [], + "Casanovas's": [], + "wallboard's": [], + "linchpins": [], + "ciabatta": ["S", "M"], + "lefties": [], + "chalets": [], + "scramblers": [], + "transpire": ["D", "S", "G"], + "reprobate'ses": [], + "vendeding": [], + "icebox's": [], + "divorce'sing": [], + "fabricators's": [], + "windup's": [], + "recovery's": [], + "saturateds": [], + "nonparticipant": ["M", "S"], + "Lippi's": [], + "sculptress's": [], + "dives": [], + "puller": ["M"], + "scorch's": [], + "Yalta's": [], + "scrapped": [], + "cashew's": [], + "Anderson's": [], + "talkeder": [], + "nighttime": ["M"], + "Bowman": ["M"], + "sculptural": [], + "triathlons's": [], + "veterinarians": [], + "Grendel's": [], + "objector's": [], + "nothingness's": [], + "tackles": [], + "chlordane": ["M"], + "Argentine's": [], + "Goldberg's": [], + "profusenessly": [], + "culminatesing": [], + "stubble": ["M"], + "independence": [], + "lubricity's": [], + "tabloid's": [], + "articulateness's": [], + "Tangier": ["M", "S"], + "suffixesing": [], + "termite's": [], + "intersperseds": [], + "chloroform'sed": [], + "peepshows": [], + "semiweeklies's": [], + "purr'sed": [], + "storekeeper's": [], + "Austria": ["M"], + "unexceptionably": [], + "clementine": ["S"], + "commanding": [], + "heresy": ["S", "M"], + "sockeyes's": [], + "pilothouse": ["S", "M"], + "mightier": [], + "Andrei's": [], + "races": [], + "Kirk's": [], + "firedamp": ["M"], + "packager": ["S", "M"], + "Gamble's": [], + "smothered": [], + "smorgasbord": ["S", "M"], + "agriculturalist's": [], + "combinations": [], + "confusedly": [], + "technicians": [], + "pesto": ["M"], + "Allan": ["M"], + "jams's": [], + "pluralizes": [], + "Cobb's": [], + "dissent": ["S", "M", "D", "R", "Z", "G"], + "odder": [], + "puma": ["M", "S"], + "rutabagas's": [], + "hyperlink'sed": [], + "impoverished": [], + "pugnacity's": [], + "scrubby": ["R", "T"], + "Rob's": [], + "skinflints": [], + "barbershops": [], + "medication's": [], + "pigtail": ["M", "S"], + "steepeninged": [], + "garlandings": [], + "viscountcies's": [], + "derrieres's": [], + "Morocco": ["M"], + "prospector's": [], + "Bertram's": [], + "billies": [], + "Khayyam": ["M"], + "dunno": [], + "lily's": [], + "Iliads's": [], + "gooseberries's": [], + "Wolsey": ["M"], + "Marius's": [], + "cockades's": [], + "crock's": [], + "grinderings": [], + "demagogues's": [], + "formlessness's": [], + "menservants": [], + "deadliness's": [], + "Byzantine": ["M", "S"], + "plurality's": [], + "bombastic": [], + "seersucker": ["M"], + "hashtag": ["S", "M"], + "burger": ["M"], + "blasteder": [], + "hoariest": [], + "trash's": [], + "megahertz's": [], + "Wassermann's": [], + "ascribable": [], + "panoramas": [], + "ambassadress's": [], + "declaring": [], + "multiple": ["M", "S"], + "showgirl's": [], + "accuser's": [], + "facial's": [], + "preregistration's": [], + "obliteration's": [], + "disagreeing": [], + "footsings": [], + "normalization": ["M"], + "recrudescinged": [], + "babblersing": [], + "Kurdish's": [], + "backfired": [], + "tattle's": [], + "Pablo": ["M"], + "endued": [], + "baronages": [], + "raging's": [], + "stuffedings": [], + "Southeast's": [], + "expertness": ["M"], + "rhinoplasty": [], + "lifebuoy's": [], + "eBay's": [], + "Kettering's": [], + "biologist's": [], + "pantyhose's": [], + "yarrow": ["M"], + "once": ["M"], + "stealth's": [], + "binnacles": [], + "deviousliness": [], + "breathed": [], + "dairywoman's": [], + "liaiseds": [], + "tricolors's": [], + "scullion": ["S", "M"], + "Iceland": ["M", "R", "Z"], + "delves": [], + "vitrificationed": [], + "doodle": ["D", "R", "S", "M", "Z", "G"], + "plectrum's": [], + "punisheds": [], + "rah": [], + "codependents": [], + "northern": ["Z", "R"], + "denouncemented": [], + "giveaways": [], + "greenhouse's": [], + "pauperizes": [], + "headliners": [], + "atoning": [], + "hearth's": [], + "Punic's": [], + "weltsers": [], + "pascal'ses": [], + "motive": ["M", "S"], + "grunts": [], + "puckish": ["Y", "P"], + "discussions": [], + "bipedal": [], + "outstretchesing": [], + "virginity": ["M"], + "jail": ["M", "D", "R", "Z", "G", "S"], + "boxing": ["M"], + "copyright": ["G", "S", "M", "D"], + "intoxicatesing": [], + "rumored": [], + "polymers": [], + "dainty's": [], + "peppermint's": [], + "inexplicably": [], + "nunnery's": [], + "dithereder": [], + "deplorably": [], + "megawatt's": [], + "defieds": [], + "dodgiest": [], + "Trieste": ["M"], + "buttonwoods": [], + "enquiringly": [], + "abstractedness's": [], + "Olympiad'ses": [], + "drams": [], + "Callie": ["M"], + "superseded": [], + "vitalizing": [], + "Braddock's": [], + "stallion": ["M", "S"], + "larval": [], + "concocted": [], + "clause'ses": [], + "endeavoring": [], + "woodwork": ["M", "R", "Z", "G"], + "windscreens": [], + "zeds": [], + "containable": [], + "portraitists": [], + "feeling's": [], + "google'sing": [], + "Sidney's": [], + "putrefaction's": [], + "behaviorism": ["M"], + "slackener": [], + "rhinovirus'ses": [], + "rescues": [], + "henceforth": [], + "Malthus": ["M"], + "launchers's": [], + "Xian's": [], + "cowlick": ["M", "S"], + "scraper's": [], + "inordinate": ["Y"], + "legislatures's": [], + "imperiously": [], + "compensatory": [], + "pecuniary": [], + "faffing": [], + "crumbs": [], + "crampons's": [], + "midsection's": [], + "sculptress'ses": [], + "tonsure's": [], + "hunchback'sed": [], + "lubriciously": [], + "commonwealths": [], + "Mysore": ["M"], + "discouragement": ["S", "M"], + "macro": ["S", "M"], + "radioman": ["M"], + "sodas": [], + "wilinged": [], + "cowcatchers": [], + "underwhelm": ["D", "G", "S"], + "wizards": [], + "nonseasonal": [], + "daughter's": [], + "Anshan": ["M"], + "presidency": ["S", "M"], + "psychobabble's": [], + "autocracies's": [], + "hardeneder": [], + "dissociated": [], + "infatuates": [], + "Val": ["M"], + "Simmental": ["M"], + "Excalibur": ["M"], + "abundance's": [], + "hedonistic": [], + "jihad": ["S", "M"], + "dingle's": [], + "filtrates": [], + "clamp's": [], + "pit's": [], + "refereeds": [], + "pictorial": ["M", "Y", "S"], + "prefab's": [], + "Bonneville": ["M"], + "enlarger": ["M"], + "Mayflower's": [], + "gabbier": [], + "Ginny's": [], + "asp's": [], + "puttees": [], + "shops": [], + "gouty": ["T", "R"], + "husks": [], + "notepaper's": [], + "listlessness": ["M"], + "don't": [], + "ghoulishly": [], + "terming": [], + "apertures's": [], + "slash": ["M", "D", "R", "S", "Z", "G"], + "Baltic": ["M"], + "retrogress": ["G", "V", "D", "S"], + "maria's": [], + "Confederacy": ["M"], + "smog": ["M", "S"], + "daffodil": ["S", "M"], + "access": ["M", "D", "S", "G"], + "bobble's": [], + "flareups": [], + "juggernauts's": [], + "rough's": [], + "Caleb's": [], + "shriek'sed": [], + "fortnights": [], + "wading's": [], + "restorers": [], + "cockatoo": ["S", "M"], + "videotapeds": [], + "bunked": [], + "prompts": [], + "mannerisms": [], + "bettering": [], + "grimes": [], + "kleptomaniac": ["S", "M"], + "miscountsing": [], + "sweatbands": [], + "shearer": ["M"], + "bass": ["M", "S"], + "sashayed": [], + "microelectronic": ["S"], + "Frodo's": [], + "Colombia": ["M"], + "brake'sing": [], + "dreaminess": ["M"], + "stage": ["S", "M"], + "delinquents": [], + "politerly": [], + "mentioned": ["U"], + "virologists": [], + "overthinking": [], + "hallucinated": [], + "wench'ses": [], + "straiteninged": [], + "unsuspectingly": [], + "caution": ["S", "M", "D", "G"], + "eggbeater'ses": [], + "exaggerateds": [], + "hellion": ["M", "S"], + "approximationsly": [], + "bombings": [], + "balloon": ["S", "G", "M", "D"], + "Jayson's": [], + "containerization's": [], + "Meighen": ["M"], + "astoundinged": [], + "propagandist's": [], + "propagandizes": [], + "ideologue's": [], + "loop's": [], + "boils": [], + "Chronicles": [], + "cooperated": [], + "deprecated": [], + "despises": [], + "joust'sed": [], + "carnivores": [], + "supremely": [], + "funkier": [], + "pusillanimity": ["M"], + "monocotyledon's": [], + "transcendentalist": ["S", "M"], + "crewelwork's": [], + "roofed": [], + "wimples's": [], + "inquorate": [], + "arrows": [], + "exoplanets": [], + "arose": [], + "pachysandra'ses": [], + "OS's": [], + "conceals": [], + "absurdness's": [], + "Poisson's": [], + "rationalistic": [], + "cylinder's": [], + "specifiesing": [], + "punning": [], + "devastate": ["G", "N", "D", "S"], + "bourgeois": ["M"], + "creeds's": [], + "liverish": [], + "unfaltering": [], + "particular": ["S", "M", "Y"], + "finked": [], + "Trappist's": [], + "ablations": [], + "hereabout": ["S"], + "Luann's": [], + "asphalts": [], + "Brenda": ["M"], + "imagines": [], + "sermonizeds": [], + "sapping": [], + "measles's": [], + "triumvirs": [], + "prudent": ["Y"], + "entree's": [], + "tinge": ["S", "M"], + "hindquarter'ses": [], + "polyvinyl": [], + "vainest": [], + "shipshape": [], + "simulates": [], + "overuse": ["D", "S", "M", "G"], + "sweeten": [], + "soundless": ["Y"], + "allegory": ["S", "M"], + "socialists": [], + "neatest": [], + "expatriates": [], + "distastes": [], + "millionth": ["M"], + "garters's": [], + "Belorussian's": [], + "dilators": [], + "interruption's": [], + "rescuing": [], + "Fizeau's": [], + "Pompadour's": [], + "stropping": [], + "garnishes": [], + "hiccougheding": [], + "backbiter's": [], + "Kettering": ["M"], + "sashaying's": [], + "brochettes's": [], + "sympathizer's": [], + "filo": [], + "commonplace'ses": [], + "skittles": [], + "outmoded": [], + "sunbathers": [], + "wilts": [], + "spurned": [], + "tearfully": [], + "regurgitatesing": [], + "warthogs": [], + "Tomlin's": [], + "arroyo'ses": [], + "woodpecker's": [], + "epistolary": [], + "admins": [], + "lobbies": [], + "professionalizes": [], + "suspects": [], + "inspectorate": ["M", "S"], + "tun's": [], + "dangling": [], + "misapprehending": [], + "decaffeinatesing": [], + "julep's": [], + "absence's": [], + "bleak": ["T", "P", "R", "Y"], + "mediation": ["A", "M"], + "eruption's": [], + "jitters's": [], + "goofs": [], + "subcontract's": [], + "forgeries's": [], + "panhandle": ["D", "R", "S", "M", "Z", "G"], + "duty": ["S", "M"], + "stripteaseder": [], + "skirmisher": [], + "maharishis": [], + "invalidism's": [], + "haunch'ses": [], + "bonhomie": ["M"], + "weightlifters": [], + "elicited": [], + "wringersing": [], + "unborn": [], + "turtlenecked": [], + "dependency's": [], + "cooperage": ["M"], + "halfwit's": [], + "pettifoggery": ["M"], + "instructed": ["U"], + "slat'sed": [], + "Nate's": [], + "Horus": ["M"], + "mythologists's": [], + "HS": [], + "glaciation's": [], + "excrescences": [], + "cheerlessly": [], + "concentrate's": [], + "geology": ["S", "M"], + "hairsbreadth": ["M"], + "saddler": ["S"], + "condescending": ["Y"], + "soldier's": [], + "blocs's": [], + "jack'sed": [], + "brothels": [], + "ambuscade's": [], + "swivel'sed": [], + "trouncer": ["M"], + "Chavez": ["M"], + "compatible": ["I", "M", "S"], + "Barnum's": [], + "affect": ["E", "G", "D", "S"], + "attractant's": [], + "domesticity's": [], + "Pillsbury's": [], + "exploring": [], + "sings": [], + "stdio": [], + "unseasoned": [], + "wack": ["M", "R", "T", "S"], + "copycatting": [], + "undergarment": ["S", "M"], + "lawbreaker": ["S", "M"], + "exponent": ["M", "S"], + "Nicaragua": ["M"], + "voracity": ["M"], + "rowdy's": [], + "truckle": ["M", "G", "D", "S"], + "writings": [], + "whiling": [], + "surpass": ["G", "D", "S"], + "pompadours's": [], + "stylishly": [], + "Tisha": ["M"], + "Stevenson": ["M"], + "tablelands's": [], + "undetected": [], + "jams": [], + "lander": [], + "gimleting": [], + "battiest": [], + "obsequiousnessly": [], + "dot's": [], + "beatifieds": [], + "ripoff": ["S", "M"], + "scoliosis's": [], + "condemner's": [], + "sprintings": [], + "consonances's": [], + "honeylocust": ["M"], + "conversationalist's": [], + "fulsomeness": ["M"], + "flashiness": ["M"], + "seediness": ["M"], + "johnnies's": [], + "Wharton": ["M"], + "solicitation's": [], + "abruptly": [], + "piddle": ["M", "G", "D", "S"], + "appendage's": [], + "homecoming": ["S", "M"], + "Felipe": ["M"], + "Saigon": ["M"], + "sniffers": [], + "carnal": ["Y"], + "navigational": [], + "fancieder": [], + "resisters": [], + "Segovia": ["M"], + "repeal": [], + "callousness": ["M"], + "Barbados's": [], + "suspicion": ["S", "M"], + "enumerator's": [], + "precooks": [], + "habit": ["I", "S", "B"], + "muskie": ["M"], + "fatsos": [], + "withering": ["Y"], + "extents's": [], + "y'all": [], + "Shetland's": [], + "vittles": ["M"], + "Stine's": [], + "main's": [], + "upholstering": [], + "landlady's": [], + "victimization's": [], + "bucksaws": [], + "Sadat": ["M"], + "tops's": [], + "Ferguson's": [], + "Windsors's": [], + "inventory's": [], + "priviest": [], + "psychoanalyzes": [], + "buries": [], + "bobbin'ses": [], + "Cyprus": ["M"], + "artists": [], + "creationists's": [], + "cardholders": [], + "Yiddish": ["M"], + "kneel": ["S", "G"], + "imp": ["S", "M", "R"], + "chamberlain": ["M", "S"], + "couriers": [], + "perturbation": ["S", "M"], + "Terkel": ["M"], + "perpetratesing": [], + "antler'sed": [], + "Susquehanna's": [], + "Cuzco": ["M"], + "watermarks": [], + "coordinates": [], + "unleaded's": [], + "cockfighting's": [], + "placebo's": [], + "cubists's": [], + "vicariousness's": [], + "CCTV": [], + "chorale'ses": [], + "snappish": ["Y", "P"], + "Weizmann's": [], + "shook": [], + "partition's": [], + "conventions": [], + "unexampled": [], + "furls": [], + "dedicatory": [], + "recalculation": [], + "ponderous": ["Y", "P"], + "Keith": ["M"], + "ripostes": [], + "scaffold": ["S", "M", "G"], + "lampoon's": [], + "glamorize": ["D", "S", "G"], + "straitlaced": [], + "Rasalhague": ["M"], + "antiviral'ses": [], + "Sasha's": [], + "percentages": [], + "refine": [], + "credence's": [], + "suddenly": [], + "terseness": ["M"], + "layers's": [], + "Haldane": ["M"], + "laceratesing": [], + "IV's": [], + "Russo's": [], + "imperiallies": [], + "saccharin": ["M"], + "bloom": ["Z", "G", "M", "D", "R", "S"], + "modernism": ["M"], + "vasoconstriction": [], + "Kennan": ["M"], + "buboes": [], + "tongue": ["M", "G", "D", "S"], + "flinch's": [], + "harness's": [], + "Arafat's": [], + "collateralize": [], + "overpraising": [], + "quarterfinal": ["S", "M"], + "muckraking": [], + "radials's": [], + "roommates": [], + "confidant's": [], + "fanged": [], + "micromanagesment": [], + "conservative": ["M", "Y", "S"], + "letter": ["Z", "G", "M", "D", "R", "S"], + "Beretta": ["M"], + "lasagna's": [], + "temperature": ["S", "M"], + "sniderly": [], + "outmatched": [], + "pregame's": [], + "piccolos": [], + "familiarized": [], + "fascists": [], + "Britney's": [], + "nonreciprocal's": [], + "nonmalignant": [], + "guttersnipe": ["M", "S"], + "plyinged": [], + "siestas": [], + "snicks": [], + "tied": [], + "demonetize": [], + "limped": [], + "renown'sed": [], + "ratiocinatingen": [], + "Eastman's": [], + "Pavlov's": [], + "spite's": [], + "dared": [], + "shiftlessness": ["M"], + "armada's": [], + "superchargers": [], + "tappers": [], + "Rembrandt's": [], + "muckeds": [], + "godawful": [], + "expressing": [], + "mealybugs's": [], + "catalyzed": [], + "become": ["S"], + "carapace's": [], + "slingbacks": [], + "diabetes's": [], + "repainting": [], + "strangeness's": [], + "brownstone's": [], + "mindbogglingly": [], + "carjacker": ["M"], + "formlessness": ["M"], + "walkaway'ses": [], + "auspices": [], + "belongs": [], + "junksers": [], + "Priestley": ["M"], + "amerce": ["G", "L", "D", "S"], + "twaddlers": [], + "bespangleds": [], + "politics": ["M"], + "framer's": [], + "bookworm": ["S", "M"], + "importer's": [], + "scavenged": [], + "aficionado'ses": [], + "railcard": ["S"], + "maggot": ["M", "S"], + "surplice's": [], + "scarping": [], + "eliminators": [], + "telly's": [], + "aspirin's": [], + "Prut": ["M"], + "noncollectable": [], + "versify": ["Z", "G", "N", "D", "R", "S"], + "prayed": [], + "riling": [], + "likelihood": ["U", "M"], + "awn's": [], + "fondants": [], + "Kathryn": ["M"], + "septets's": [], + "myelitis": ["M"], + "meliorates": [], + "belated": ["Y"], + "trolling's": [], + "moreish": [], + "pals's": [], + "scratcheds": [], + "wealthierness": [], + "catastrophe's": [], + "outsiderser": [], + "links": [], + "FORTRAN": ["M"], + "undefined": [], + "lee'sers": [], + "science": ["F", "M", "S"], + "howleder": [], + "recruitment": ["M"], + "echoic": [], + "leukemics's": [], + "decrieds": [], + "skippereding": [], + "mallard's": [], + "stagier": [], + "salesperson's": [], + "rehearing": [], + "dubiousliness": [], + "pestered": [], + "doesn't": [], + "amazonian": [], + "talebearer's": [], + "ope": ["S"], + "blaze'sers": [], + "flouts's": [], + "exploding": [], + "Christian's": [], + "immortal's": [], + "tillable": [], + "tailgatersing": [], + "corolla": ["M", "S"], + "boogieing": [], + "bloodmobiles": [], + "periling": [], + "straddling": [], + "turbofan's": [], + "strategical": ["Y"], + "passage's": [], + "Amerasian's": [], + "shack": ["M", "D", "S", "G"], + "optimism": ["S", "M"], + "our": ["S"], + "occasions": [], + "refer": ["B"], + "xylophones": [], + "dimes": [], + "clickablers": [], + "urinating": [], + "deathwatches": [], + "imbibing": [], + "muddled": [], + "basements": [], + "chocked": [], + "Lemuria": ["M"], + "gall's": [], + "overthought": [], + "breadwinner's": [], + "sensitiveliness": [], + "stauncheder": [], + "Wylie": ["M"], + "Americanize": ["G", "D", "S"], + "compassionate": ["Y"], + "skunk": ["S", "M", "D", "G"], + "watermark": ["M", "D", "G", "S"], + "sensitively": [], + "boathouses": [], + "Cotswold": ["M"], + "imaginablings": [], + "scruffier": [], + "shipping": ["M"], + "suckling": ["M"], + "coronation": ["S", "M"], + "confusing": ["Y"], + "legalese": ["M"], + "gawp": ["D", "G", "S"], + "tattoo": ["M", "D", "R", "S", "Z", "G"], + "stool": ["S", "M"], + "tailback's": [], + "he": ["M"], + "gearshift": ["M", "S"], + "Freya's": [], + "usurps": [], + "limeades's": [], + "dereforestation": [], + "ex's": [], + "factions": [], + "conflict'sed": [], + "professor's": [], + "sectional'ses": [], + "downhill's": [], + "inveigler": ["M"], + "flatterer's": [], + "lofty": ["P", "R", "T"], + "horsewhips's": [], + "speedway's": [], + "bestriding": [], + "BASICs's": [], + "objective's": [], + "flamesings": [], + "bespatters": [], + "Pontianak's": [], + "wogs": [], + "intensiveness": ["M"], + "staunchly": [], + "polytheistic": [], + "dilettantism's": [], + "Catherine's": [], + "farmstead'ses": [], + "wild's": [], + "fishiness's": [], + "Hz's": [], + "emerge": ["A", "D", "S", "G"], + "requiters": [], + "antrum": [], + "itineraries": [], + "reattach": [], + "shebang's": [], + "stiffly": [], + "jungle'ses": [], + "gardenia's": [], + "Chicana": ["M"], + "McDaniel's": [], + "draftees's": [], + "simultaneity": ["M"], + "cronies": [], + "townswoman's": [], + "bag's": [], + "lance": ["D", "R", "S", "M", "Z", "G"], + "thwackersing": [], + "logon": ["S", "M"], + "minicam's": [], + "pranks": [], + "caddie'sed": [], + "paralytics": [], + "anticlines": [], + "round": ["P", "S", "M", "D", "R", "Y", "Z", "T", "G"], + "tiring": [], + "atropine's": [], + "distention": ["S", "M"], + "keeneder": [], + "Oregonian": ["S", "M"], + "cogitator's": [], + "packagers's": [], + "oversleeping": [], + "surcingle's": [], + "bicycled": [], + "skulduggery": ["M"], + "retrogresseds": [], + "brays": [], + "depicts": [], + "mullioned": [], + "microwaves": [], + "perception's": [], + "Gordimer": ["M"], + "graphic": ["M", "S"], + "ambushing": [], + "commend": ["A", "S", "D", "B", "G"], + "brainwashing's": [], + "radiometers": [], + "anther'ses": [], + "bushesing": [], + "bootinged": [], + "moneylenders's": [], + "Norris's": [], + "loom": ["M", "D", "S", "G"], + "Vicki's": [], + "officers": [], + "beanfeasts": [], + "wads": [], + "immanently": [], + "tapsers": [], + "additive's": [], + "outmatching": [], + "Lucile's": [], + "Ginsberg's": [], + "cogently": [], + "fulsome": ["P", "Y"], + "exhalation'ses": [], + "Micah": ["M"], + "anons": [], + "crookneck's": [], + "typhoons": [], + "telephony": ["M"], + "textual": ["F", "Y"], + "trimmest": [], + "Neapolitan's": [], + "talebearer'ses": [], + "pesticide": ["M", "S"], + "pinewoods": [], + "farmersing": [], + "seesawed": [], + "nodule's": [], + "gunboat's": [], + "ghoul's": [], + "strait'sen": [], + "antiquates": [], + "brook'sed": [], + "effervesced": [], + "motormouths": [], + "palpation": ["M"], + "companionways": [], + "oiled": [], + "cardsharper": ["M"], + "oppressor": ["M", "S"], + "hacksaw": ["S", "M"], + "consonants": [], + "Grafton": ["M"], + "modernizers": [], + "petitioned": [], + "Mill": ["S", "M", "R"], + "forgeries": [], + "peregrinationsing": [], + "baggier": [], + "Saracen": ["M", "S"], + "Private": [], + "imprecated": [], + "Kazan's": [], + "solitary": ["S", "M", "P"], + "doomsters": [], + "yaw": ["S", "G", "M", "D"], + "Bigfoot's": [], + "waterfowls's": [], + "appellant's": [], + "stroller's": [], + "paunchiest": [], + "mystified": [], + "oilfields": [], + "caddies": [], + "pulping": [], + "sharer": ["M"], + "cronyism's": [], + "rapier": ["S", "M"], + "crunch": ["G", "M", "D", "R", "S"], + "Caleb": ["M"], + "impingement": ["M"], + "Regina": ["M"], + "Cyrano's": [], + "secants's": [], + "peacemaking": ["M"], + "basheds": [], + "finals's": [], + "abrupt": ["T", "P", "R", "Y"], + "swordsman": ["M"], + "Whistler": ["M"], + "Deuteronomy": ["M"], + "Helena": ["M"], + "Agnew's": [], + "shit": ["S", "M", "!"], + "Kentucky": ["M"], + "krill": ["M"], + "professionalizeds": [], + "got": [], + "leaksing": [], + "polarization's": [], + "blabbers": [], + "swings's": [], + "headstone": ["S", "M"], + "waft'sed": [], + "juniper": ["S", "M"], + "whirlwind'ses": [], + "loosensed": [], + "incisionsing": [], + "cardsharperses": [], + "preeneds": [], + "Hispanics's": [], + "abbreviating": [], + "literary": ["P"], + "abettor's": [], + "fees's": [], + "outlawsing": [], + "delver's": [], + "turtles": [], + "sucklings": [], + "exalts": [], + "suppers": [], + "lubing": [], + "overlapped": [], + "bender": ["M"], + "multivitamin'ses": [], + "whippoorwill": ["M", "S"], + "huh": [], + "bogus": [], + "Kenyan": ["S", "M"], + "response": ["M", "S"], + "spinnaker": ["S", "M"], + "cripple's": [], + "posts": [], + "pulleys's": [], + "kickstand": ["M", "S"], + "pigsty's": [], + "Bhutanese": ["M"], + "meannesses": [], + "tenability": ["M"], + "nonvirulent": [], + "underworld": ["M", "S"], + "threatens": [], + "Jared's": [], + "Tonto": ["M"], + "diapason's": [], + "soundness": ["U", "M"], + "gassiest": [], + "novelettes's": [], + "horizontal's": [], + "granulate": ["G", "N", "D", "S"], + "Watusi": ["M"], + "annexed": [], + "rudiment's": [], + "abandonment": ["M"], + "drumbeat": ["S", "M"], + "constituency's": [], + "juxtaposition's": [], + "compartmentalizeds": [], + "peerages's": [], + "GMT's": [], + "lurksers": [], + "horse's": [], + "bottler's": [], + "rudderless": [], + "concourses": [], + "ecotourism's": [], + "overworkeds": [], + "bridgework": ["M"], + "fortitude's": [], + "caddishness": ["M"], + "Karla's": [], + "pergolas": [], + "ASAP": [], + "descrying": [], + "dropsy's": [], + "peregrinated": [], + "Thursdays": [], + "artsy": ["T", "R"], + "Monday": ["S", "M"], + "bearskin'ses": [], + "personified": [], + "electrolyte": ["M", "S"], + "neutral's": [], + "soundalikes": [], + "transparencies's": [], + "hornpipe's": [], + "shimmy's": [], + "salversing": [], + "anatomizes": [], + "extinction": ["M", "S"], + "appear": ["A", "E", "S", "D", "G"], + "adolescent": ["S", "M"], + "excreta's": [], + "pentathlon'ses": [], + "hankie'ses": [], + "ethnocentrism's": [], + "grass": ["M", "D", "S", "G"], + "degenerative": [], + "foolhardily": [], + "competition": ["S", "M"], + "struggle'sing": [], + "scariness": ["M"], + "multimillionaire": ["S", "M"], + "cognoscente's": [], + "fibril": ["S", "M"], + "hoisted": [], + "politician": ["S", "M"], + "homage'ses": [], + "swirls": [], + "liverwort": ["M", "S"], + "vulturous": [], + "reopened": [], + "cheeseburgers": [], + "refute": ["B", "D", "R", "S", "Z", "G"], + "sac's": [], + "arbiters": [], + "Golgi": ["M"], + "surceased": [], + "reactionary": ["S", "M"], + "fuzziness": ["M"], + "cribbage's": [], + "steamroller": ["M", "D", "G"], + "grittiest": [], + "whiskeys": [], + "lagniappe": ["S", "M"], + "jackal": ["S", "M"], + "migrations": [], + "bootlegger'ses": [], + "maroons": [], + "Gideon": ["M"], + "books": [], + "twerps's": [], + "Noumea's": [], + "vigorous": ["Y"], + "familiarizing": [], + "denigration": ["M"], + "pareses": [], + "cardiac": [], + "Senates": [], + "arraigneding": [], + "wheat": ["M", "N"], + "camisoles's": [], + "crusading": [], + "Shockley's": [], + "smocking": ["M"], + "paychecks": [], + "Pisistratus": ["M"], + "collaborate": ["D", "S", "X", "G", "N", "V"], + "Snickers": ["M"], + "Monaco": ["M"], + "frogmarching": [], + "vivified": [], + "bacillus": ["M"], + "smoothie'ses": [], + "choke'sers": [], + "embezzler's": [], + "excite": ["B", "D", "R", "S", "L", "Z", "G"], + "turboprops": [], + "wastefulness's": [], + "portiere'ses": [], + "roughneck": ["G", "M", "D", "S"], + "iterator": ["S"], + "abrogates": [], + "malted": ["M", "S"], + "anthologizes": [], + "gallstone": ["M", "S"], + "Friedman's": [], + "redbreast": ["M", "S"], + "retrievals": [], + "kisses": [], + "cicatrix": ["M"], + "lame's": [], + "nuzzlers": [], + "playgoer's": [], + "delint": [], + "fogginess": ["M"], + "whalersing": [], + "courgettes": [], + "sympathizers": [], + "armada": ["M", "S"], + "blowgun'ses": [], + "inaugural's": [], + "firebombed": [], + "pinochle's": [], + "repetitively": [], + "celebrators's": [], + "hashish's": [], + "carton's": [], + "granulates": [], + "sweetener's": [], + "Leakey": ["M"], + "fresherly": [], + "dogs's": [], + "paramilitaries": [], + "advisers": [], + "bragged": [], + "negatingen": [], + "Sudetenland's": [], + "inflorescence": [], + "curtains": [], + "overrulinged": [], + "oncologists": [], + "equipage's": [], + "mantilla's": [], + "Wells": ["M"], + "heel'sed": [], + "misstates": [], + "endeared": [], + "epaulet": ["S", "M"], + "sprightliest": [], + "moonshots": [], + "locum": ["S"], + "fumble": ["D", "R", "S", "M", "Z", "G"], + "recitals's": [], + "popularity's": [], + "chichi": ["M", "S"], + "tutored": ["U"], + "naminged": [], + "geopolitical": [], + "Burch": ["M"], + "extortionerers": [], + "sociologists": [], + "pleat": ["M", "D", "G", "S"], + "windier": [], + "Guzman's": [], + "homeyness": ["M"], + "Hazlitt": ["M"], + "rouge": ["D", "S", "M", "G"], + "Canopus's": [], + "recrudescent": [], + "battle'sers": [], + "townhouse's": [], + "stages's": [], + "Mohawks's": [], + "bulletin'sed": [], + "snuffling": [], + "bedlams": [], + "raspeds": [], + "Medellin": ["M"], + "testamentary": [], + "plugin's": [], + "minefield": ["S", "M"], + "pessimist's": [], + "neutralizer's": [], + "hearer": ["S", "M"], + "tenpins's": [], + "dolloped": [], + "overeats": [], + "quaintness's": [], + "Taegu": ["M"], + "whore's": [], + "sorrows's": [], + "processionals": [], + "twins": [], + "duplex'ses": [], + "shipwright'ses": [], + "dupes": [], + "priory": ["S", "M"], + "hardiest": [], + "Southwest": ["M", "S"], + "upsurginged": [], + "xeroxes": [], + "secession's": [], + "punctiliously": [], + "premised": [], + "grateder": [], + "headword's": [], + "gatehouses's": [], + "Majesty": [], + "snowblower'ses": [], + "acts": [], + "outtakes": [], + "merchandise's": [], + "dadaist'ses": [], + "mailman": ["M"], + "Tillich": ["M"], + "Pissaro's": [], + "Unitarians": [], + "yipe": [], + "Marine": ["S", "M"], + "pawpaw": ["M", "S"], + "MIT": ["M"], + "feinteding": [], + "undeserving": [], + "opprobrious": ["Y"], + "panhandles's": [], + "triplexes": [], + "hooped": [], + "screen": ["S", "J", "M", "D", "G"], + "tactfulness's": [], + "gleaned": [], + "understudy's": [], + "centerpiece'ses": [], + "yardage": ["M", "S"], + "cede": ["F", "A", "G", "S", "D"], + "artfully": [], + "helicoptering's": [], + "playhouse's": [], + "bioethics": ["M"], + "selling's": [], + "Jenny's": [], + "barringings": [], + "crammed": [], + "Drake's": [], + "flags": [], + "duelerings": [], + "proliferated": [], + "Natchez's": [], + "trafficking": ["M"], + "faiths": [], + "Mapplethorpe": ["M"], + "shimmy'sing": [], + "engageds": [], + "Wilburn's": [], + "beseems": [], + "Saroyan": ["M"], + "Faeroe's": [], + "spotlight": ["G", "S", "M", "D"], + "mops": [], + "tightropes": [], + "swatted": [], + "blotters": [], + "gild'sed": [], + "gratifies": [], + "spaceport": ["S", "M"], + "violatesens": [], + "corkscrewing": [], + "Pym's": [], + "reintroduction": [], + "airwaves's": [], + "whammed": [], + "exigence": ["M", "S"], + "navels's": [], + "interferinged": [], + "reappear": [], + "ltd": [], + "musettes": [], + "tally'sers": [], + "rejoinder": ["S", "M"], + "fragment": ["G", "M", "D", "S"], + "delivered": ["U"], + "courting": [], + "omega": ["S", "M"], + "trespassing": [], + "rapprochement": ["S", "M"], + "freeholders": [], + "bbl": [], + "fatefulness's": [], + "fabricates": [], + "lumberer's": [], + "nonrenewable": [], + "granulateds": [], + "arctic": ["M", "S"], + "Cox": ["M"], + "sunfish": ["M", "S"], + "choosiness": ["M"], + "laughably": [], + "glutens": [], + "rationals": [], + "decidersing": [], + "forelock": ["M", "S"], + "slipstreams's": [], + "sniffed": [], + "blizzards": [], + "clinger's": [], + "Peking": ["S", "M"], + "feeders": [], + "Will": ["M"], + "gather's": [], + "lamers": [], + "defying": [], + "Prof": [], + "warmer's": [], + "tabloids": [], + "doubleheaders": [], + "Macao": ["M"], + "beadiest": [], + "Emacs": ["M"], + "modular": [], + "buttonwood": ["M", "S"], + "navigable": [], + "legume'ses": [], + "adhesion": ["M"], + "foreign": ["Z", "R", "P"], + "beacons": [], + "definite": ["I", "Y", "V", "P"], + "aforementioned": [], + "Grecian": ["M"], + "steamier": [], + "rattletraps": [], + "grantee": ["M", "S"], + "acquiring": [], + "reckless": ["Y", "P"], + "loudness": ["M"], + "snaffle'sing": [], + "timekeeper's": [], + "thundershowers's": [], + "interchangeably": [], + "disgraceful": [], + "immerse": ["X", "D", "S", "G", "N", "V"], + "thwack'sed": [], + "planeds": [], + "conditioning's": [], + "championship'ses": [], + "today": ["M"], + "tarsus's": [], + "chalky": ["P", "R", "T"], + "generals's": [], + "reamersing": [], + "congeniality": [], + "sirloins": [], + "screenwriter's": [], + "Rio's": [], + "fusions's": [], + "amphibious": ["Y"], + "Macumba's": [], + "uncapping": [], + "Noxzema": ["M"], + "DiMaggio's": [], + "seascape": ["S", "M"], + "alarm'sed": [], + "leatherneck's": [], + "hodgepodges's": [], + "Quetzalcoatl": ["M"], + "nematodes": [], + "cybersex": [], + "monomania": ["M"], + "insatiability": ["M"], + "calumet's": [], + "finalization's": [], + "exacerbate": ["G", "N", "D", "S"], + "cistern'ses": [], + "colonials's": [], + "ethologist'ses": [], + "respired": [], + "chardonnay": ["S", "M"], + "farmstead": ["M", "S"], + "expensiveliness": [], + "anathematizing": [], + "match's": [], + "purify": ["N", "D", "R", "S", "Z", "G"], + "maniocs": [], + "doggones": [], + "shelved": [], + "shadowbox": ["G", "D", "S"], + "absolves": [], + "inaudible": [], + "assembler": ["M", "S"], + "onset'ses": [], + "pelican'ses": [], + "Anibal's": [], + "Penney's": [], + "emphasizing": [], + "defray": [], + "scammers": [], + "spindle'sing": [], + "Layamon": ["M"], + "studentships": [], + "spurts": [], + "charismatic'ses": [], + "narwhals": [], + "transformed": [], + "candle'sers": [], + "foisteding": [], + "lifeline": ["M", "S"], + "serest": [], + "Internets": [], + "void'sed": [], + "elixir's": [], + "rowboat'ses": [], + "radiotelegraphs": [], + "contraindication's": [], + "greenery": ["M"], + "generalized": [], + "handsets": [], + "marbles": [], + "misidentifieds": [], + "footpath": ["M"], + "darkeners": [], + "Terpsichore's": [], + "manque": [], + "breakersing": [], + "formations's": [], + "degradable": [], + "epee's": [], + "Krebs": ["M"], + "decedents": [], + "absenteeism's": [], + "refined": ["U"], + "maybe": ["S", "M"], + "beavering's": [], + "shearer's": [], + "battered": [], + "pumas": [], + "binocular": ["M", "S"], + "tungsten's": [], + "blinds": [], + "fourths": [], + "coward": ["S", "M", "Y"], + "thrills": [], + "Reginae": ["M"], + "ecocide's": [], + "Cotton's": [], + "subcommittees": [], + "prevision'ses": [], + "Allhallows's": [], + "vile": ["Y", "T", "P", "R"], + "fishpond's": [], + "hammed": [], + "Tracie": ["M"], + "herald's": [], + "tasereds": [], + "consumable's": [], + "resurgence's": [], + "Dean": ["M"], + "preachers": [], + "Queens": ["M"], + "Arabian's": [], + "Ashcroft's": [], + "enhancer": [], + "ratlines's": [], + "flings": [], + "haphazardliness": [], + "timelessly": [], + "Donnie's": [], + "crocks": [], + "cotillion": ["S", "M"], + "crowd'sed": [], + "simmereds": [], + "sacra": [], + "whiteboards": [], + "leaving": [], + "icebreakers's": [], + "Garfield's": [], + "blitzkriegs": [], + "bloodthirstiness": ["M"], + "backbone'ses": [], + "Indianan's": [], + "mustsers": [], + "gurgles": [], + "seigniors's": [], + "ukuleles": [], + "statistic": ["M", "S"], + "expectations": [], + "emirate'ses": [], + "unfair": ["P", "T", "R", "Y"], + "Brigitte's": [], + "recuperateds": [], + "accusation'ses": [], + "babbles": [], + "snuffed": [], + "sharpeners": [], + "scooter": ["M"], + "Aurelius's": [], + "Barbadians": [], + "surges's": [], + "fracturing": [], + "Slavic's": [], + "crudest": [], + "SCSI": ["M"], + "dative": ["M", "S"], + "instruct": ["S", "D", "G", "V"], + "Hyades": ["M"], + "champers": [], + "dips's": [], + "parodist": ["S", "M"], + "tracks's": [], + "whitened": [], + "cottar": ["S", "M"], + "radars's": [], + "organism'ses": [], + "yep's": [], + "mange": ["D", "R", "M", "Z"], + "timelessness": ["M"], + "periodically": [], + "infrastructures's": [], + "vocalizes": [], + "Durham": ["M", "S"], + "wimple's": [], + "drainer's": [], + "Merriam": ["M"], + "tomboys": [], + "consuls's": [], + "tills": [], + "guardrooms": [], + "togs": ["M"], + "uncomprehending": ["Y"], + "enthrallsment": [], + "invigoration's": [], + "microscopes": [], + "milkshake's": [], + "spreadeagled": [], + "embraceable": [], + "kinswomen": [], + "litigated": [], + "flooder": [], + "bola's": [], + "Olin": ["M"], + "sprinkles": [], + "married": ["S", "M"], + "creamery's": [], + "dicing": [], + "Monty": ["M"], + "whizzbang": ["M", "S"], + "busked": [], + "brickbat's": [], + "Mon": ["S", "M"], + "sketched": [], + "Ginsu's": [], + "shipboards": [], + "Wang": ["M"], + "pretestings": [], + "diagrammatic": [], + "contentedly": [], + "parallel'sed": [], + "Xanthippe": ["M"], + "chatting": [], + "suffragette": ["S", "M"], + "honky": ["S", "M"], + "automatons": [], + "perilsing": [], + "fishmonger'ses": [], + "undomesticated": [], + "proportional": ["Y", "S"], + "indoctrinating": [], + "dosinged": [], + "requisitioning": [], + "Stetson": ["M"], + "anthracite": ["M"], + "homepages": [], + "harpooneder": [], + "pompadour's": [], + "Asperger's": [], + "greenback": ["M", "S"], + "obstacles": [], + "bating": [], + "uncommonness": [], + "computeds": [], + "emptied": [], + "trace'sers": [], + "Secretary": [], + "lie's": [], + "ellipsoids's": [], + "metathesis's": [], + "essayer": ["M"], + "lamentably": [], + "roulette's": [], + "drywall's": [], + "flyswatters": [], + "legrooms's": [], + "outguessinged": [], + "Indonesia": ["M"], + "twangier": [], + "retarded": [], + "Laplace's": [], + "earbuds's": [], + "ammo": ["M"], + "mahatmas": [], + "woe's": [], + "preemies": [], + "bemoan": ["D", "G", "S"], + "segment'sed": [], + "antidote'ses": [], + "haileding": [], + "timpanist's": [], + "dorsal": ["Y"], + "paranoia's": [], + "facilitateds": [], + "imprecate": ["D", "S", "X", "G", "N"], + "lexis": [], + "propellers": [], + "Ziegfeld's": [], + "hesens": [], + "Antone's": [], + "tater": ["M"], + "magnetizing": [], + "blare": ["M", "G", "D", "S"], + "patronizer's": [], + "Anglia": ["M"], + "calypso'ses": [], + "Lamarck's": [], + "paint'sed": [], + "enabler": ["M"], + "equalizersing": [], + "speck": ["S", "M", "D", "G"], + "Charbray": ["M"], + "Goodman's": [], + "electromagnetic": [], + "zed": ["S", "M"], + "accidental's": [], + "spuriousnessly": [], + "Myra": ["M"], + "trammels": [], + "reputes": [], + "gristmill's": [], + "attainment's": [], + "fortissimo": [], + "callas": [], + "bluebird'ses": [], + "togaed": [], + "chronicles": [], + "fichus's": [], + "scant": ["C", "D", "S", "T", "G"], + "ensconces": [], + "onions": [], + "snarfed": [], + "darning's": [], + "gateds": [], + "remember": ["D", "G"], + "adverteding": [], + "barometrically": [], + "harped": [], + "fortunetelling's": [], + "Sasquatch's": [], + "wellsing": [], + "Pedro": ["M"], + "tapeder": [], + "Twitter": ["M"], + "bespoke": [], + "rheostat's": [], + "murders": [], + "Newport": ["M"], + "skulkeder": [], + "merrymaker": ["M", "S"], + "picker": ["M"], + "Brandy's": [], + "outwitting": [], + "holstereding": [], + "classic's": [], + "uncaring": [], + "age": ["D", "S", "M", "G", "J"], + "melts": [], + "PMS": ["M"], + "Cruz's": [], + "hundreds": [], + "gentility's": [], + "jawbones's": [], + "Jap": ["S", "M"], + "general's": [], + "costars's": [], + "Heimlich": ["M"], + "dudgeon": ["M"], + "salved": [], + "invitation": ["S", "M"], + "Knight": ["M"], + "quilter": ["M"], + "windshield": ["S", "M"], + "denatured": [], + "spiritinged": [], + "wick'sed": [], + "viz": [], + "heppest": [], + "Melva": ["M"], + "dawned": [], + "Enid": ["M"], + "masqueraders": [], + "enlistment": ["A", "M"], + "delightfully": [], + "rank's": [], + "maltier": [], + "drinkersing": [], + "growlers": [], + "Richard": ["M", "S"], + "conjuncts": [], + "staples's": [], + "sniffiest": [], + "homer's": [], + "concertina's": [], + "gleaners": [], + "fluoroscopes's": [], + "perhaps": [], + "vesting": ["M"], + "Wisconsinite'ses": [], + "tribulation's": [], + "obligates": [], + "noonday's": [], + "fleetliness": [], + "herder": ["M"], + "stickleback's": [], + "corner's": [], + "armories's": [], + "sank": [], + "flakes": [], + "ulceration's": [], + "jerks": [], + "doorbell": ["M", "S"], + "musical'sly": [], + "rumor's": [], + "punctuates": [], + "strums": [], + "chronographs": [], + "Ronda's": [], + "stickpin'ses": [], + "manhandleds": [], + "slowcoach": ["S"], + "clutter's": [], + "millersing": [], + "pontifically": [], + "heedings": [], + "brigades": [], + "budgerigars": [], + "invoked": [], + "dissembles": [], + "sooth'sed": [], + "smoggiest": [], + "callosities": [], + "pooched": [], + "outbalances": [], + "Bertha's": [], + "tuples": [], + "invalided": [], + "mainline'sing": [], + "luxuriousness's": [], + "presents": [], + "backhoes": [], + "ganglion": ["M"], + "nursers": [], + "zaniness": ["M"], + "sateen": ["M"], + "beatnik": ["M", "S"], + "sugarings": [], + "calm's": [], + "affiliated": ["U"], + "Sumeria": ["M"], + "Hayek's": [], + "blintz'ses": [], + "decriminalization's": [], + "measurement's": [], + "almoner's": [], + "browse": ["D", "R", "S", "M", "Z", "G"], + "Aniakchak": ["M"], + "skipping": [], + "daylight's": [], + "stepparent": ["S", "M"], + "grosgrain": ["M"], + "relativelies": [], + "ritualistically": [], + "litterateur": ["M", "S"], + "bibliography's": [], + "mustering's": [], + "coalface": ["M", "S"], + "cheeriness's": [], + "Banjarmasin's": [], + "Studebaker's": [], + "waist": ["S", "M"], + "Weldon's": [], + "tertiary": [], + "auctioneer": ["S", "M"], + "scrimps": [], + "piddles": [], + "frugally": [], + "divergent": [], + "physics": ["M"], + "tapirs": [], + "discharge": [], + "Grey's": [], + "transforming's": [], + "defroster": ["M", "S"], + "Windward": ["M"], + "Ogilvy's": [], + "horsetail": ["S", "M"], + "generative": [], + "humanoids's": [], + "betakings": [], + "solidness": ["M"], + "huskies": [], + "cosmic": [], + "Karakorum": ["M"], + "briquettes": [], + "rubric": ["S", "M"], + "secondary": ["S", "M"], + "Wm": ["M"], + "aptitude": ["S", "M"], + "proficiency's": [], + "Monk": ["M"], + "Winters's": [], + "extra": ["S", "M"], + "harbormaster": ["S"], + "freshman's": [], + "roomer": ["M"], + "generalization": ["M", "S"], + "peachier": [], + "aconites": [], + "consultant'ses": [], + "judders": [], + "Grosz's": [], + "capitation": ["C", "S", "M"], + "irresolutelication": [], + "pickaxed": [], + "pilgrim's": [], + "unprecedentedly": [], + "utmost's": [], + "reneweds": [], + "obtainedable": [], + "they've": [], + "glower": ["G", "M", "D"], + "upending": [], + "Maricela": ["M"], + "laypeople": [], + "Tijuana": ["M"], + "lemmas": [], + "caissons's": [], + "Mitsubishi's": [], + "proliferateds": [], + "patella'ses": [], + "changers": [], + "monumental": ["Y"], + "prince's": [], + "coeducation": ["M"], + "officialese": [], + "commentaries": [], + "concrete": ["D", "S", "P", "M", "Y", "G", "N", "X"], + "vibraphonist's": [], + "palming": [], + "Hyderabad's": [], + "labials's": [], + "euphemism's": [], + "adjunct'ses": [], + "maypole's": [], + "byproduct": ["M", "S"], + "cabaret's": [], + "flail'sed": [], + "slinks": [], + "liquidator'ses": [], + "Utrecht": ["M"], + "altarpiece": ["S", "M"], + "opponents's": [], + "ridersing": [], + "sperm": ["S", "M"], + "curvatures's": [], + "bombardier'ses": [], + "Ila's": [], + "ataxic": ["M", "S"], + "enlivenment": ["M"], + "teaming": [], + "parishioner'ses": [], + "grudgeds": [], + "showgirl": ["M", "S"], + "epigrammatic": [], + "overgrazeds": [], + "bifurcation": ["M"], + "carnation'ses": [], + "laughingstocks": [], + "sysadmin": ["S"], + "beauties's": [], + "eulogists": [], + "imperiled": [], + "backpedal": ["S", "D", "G"], + "toking": [], + "Politburo": ["M"], + "anticked": [], + "Snead's": [], + "Hunter": ["M"], + "theta": ["S", "M"], + "antiquities": [], + "suppleness": ["M"], + "teardrop": ["S", "M"], + "trudge": ["M", "G", "D", "S"], + "dactylics": [], + "loyalty's": [], + "equalizer": ["M"], + "fomenting": [], + "armies": [], + "unstopped": [], + "heatwave": ["S"], + "Tull's": [], + "lifework": ["M", "S"], + "backstops's": [], + "careder": [], + "mam": ["S"], + "smackeder": [], + "bedizeninged": [], + "diesels's": [], + "stratus's": [], + "tribunal": ["S", "M"], + "contusesing": [], + "Rachmaninoff's": [], + "stout's": [], + "shoetree's": [], + "colonizesed": [], + "sarky": [], + "niche": ["S", "M"], + "Jerusalem": ["M"], + "Llewellyn": ["M"], + "nipper'ses": [], + "specklinged": [], + "blinders": [], + "tune": ["M", "S"], + "baa'sed": [], + "chests": [], + "ferryman": ["M"], + "cavalier": ["S", "M", "Y"], + "formalizinged": [], + "sundereds": [], + "obsolescence's": [], + "awakeneds": [], + "Yvette's": [], + "diets": [], + "rosebush": ["M", "S"], + "Pentium": ["S", "M"], + "Calgary's": [], + "croucheds": [], + "Assyria": ["M"], + "eliminationsed": [], + "breams": [], + "Manet's": [], + "Dutch's": [], + "carom": ["G", "M", "D", "S"], + "Ghibelline": ["M"], + "Holland's": [], + "bluffer": ["M"], + "bustier": [], + "Loretta": ["M"], + "unfriend": [], + "bind": ["A", "U", "G", "S"], + "passivize": ["D", "S", "G"], + "tenners": [], + "origin": ["S", "M"], + "fist": ["M", "S"], + "salients's": [], + "diversely": [], + "illusionist": ["S", "M"], + "pinyin's": [], + "ocean": ["S", "M"], + "dogmatism's": [], + "Victorian's": [], + "waitperson": ["M", "S"], + "matins": ["M"], + "Herodotus's": [], + "creosotinged": [], + "Warhol's": [], + "application's": [], + "costumes": [], + "Briticisms": [], + "Mendelssohn's": [], + "tendered": [], + "smugly": [], + "accordion's": [], + "Lepidus's": [], + "anthologies's": [], + "sidestep": ["M", "S"], + "languid": ["P", "Y"], + "kiloliter'ses": [], + "superposition": ["M"], + "mavericks's": [], + "comprehendeding": [], + "equestrienne's": [], + "imposer'ses": [], + "Indiana": ["M"], + "missive's": [], + "grappled": [], + "Amado's": [], + "boohoo'sed": [], + "pumpernickel's": [], + "oral'sly": [], + "swaying": [], + "weirdos": [], + "social's": [], + "cancan": ["M", "S"], + "bandoleers's": [], + "earnings's": [], + "nutshell's": [], + "beekeeping": ["M"], + "doolally": [], + "footballerers": [], + "slap'ses": [], + "empathize": ["D", "S", "G"], + "charmed": [], + "vinyl's": [], + "drearierness": [], + "atomically": [], + "tentacle's": [], + "thundering": [], + "purebred's": [], + "vehement": ["Y"], + "shaversing": [], + "lankiness's": [], + "uprear": ["G", "S", "D"], + "defecatingen": [], + "outstretched": [], + "propagation": ["M"], + "plaintive": ["Y"], + "flees": [], + "appliances": [], + "trap'ses": [], + "inculpate": ["D", "S", "G"], + "humpheding": [], + "Tupperware's": [], + "slivered": [], + "intersessions's": [], + "Timurid's": [], + "breakthroughs": [], + "expressways's": [], + "attributivelies": [], + "Victrola's": [], + "apiece": [], + "Harley": ["M"], + "ascribeds": [], + "Commonwealth": [], + "toddle's": [], + "commented": [], + "triers": [], + "puling": [], + "mutton": ["M"], + "wankeder": [], + "tendency's": [], + "Caspar": ["M"], + "conjuration'ses": [], + "combat'sed": [], + "blabbermouth's": [], + "gadflies's": [], + "baling": [], + "Redmond": ["M"], + "creak": ["S", "M", "D", "G"], + "Thanh's": [], + "tetanus": ["M"], + "sexing": [], + "destructiveness": ["M"], + "scarf": ["M", "D", "S", "G"], + "experimenter": ["M"], + "studding's": [], + "Hodgkin": ["M"], + "region": ["S", "M"], + "document's": [], + "doberman": ["M", "S"], + "memento": ["M", "S"], + "heresy's": [], + "lowlander's": [], + "suitor'ses": [], + "Mitchel": ["M"], + "lyres": [], + "chaste": ["P", "Y", "T", "R"], + "institutionalizing": [], + "antioxidants": [], + "tonic's": [], + "morns": [], + "compulsiveness's": [], + "ballet's": [], + "sacrificial": ["Y"], + "reliability": ["U", "M"], + "toured's": [], + "coheresing": [], + "blamer": [], + "yardmen": [], + "flambes": [], + "redundantly": [], + "muddiness's": [], + "Horne": ["M"], + "adjudication's": [], + "magnolia's": [], + "transcription's": [], + "liquidated": [], + "meatloaf": ["M"], + "adulteries": [], + "superheros": [], + "trace": ["J", "D", "R", "S", "M", "Z", "G"], + "dinette's": [], + "shuttleds": [], + "sporing": [], + "bastardization's": [], + "loincloth's": [], + "affirmeds": [], + "coerce": ["D", "R", "S", "Z", "G", "N", "V"], + "banquettes's": [], + "scrawled": [], + "Gaels's": [], + "tantalization's": [], + "threshold": ["S", "M"], + "djellabas": [], + "Tuscarora's": [], + "aromatherapists": [], + "monogram's": [], + "dreamersing": [], + "Kilimanjaro's": [], + "parricide's": [], + "blockage": ["M", "S"], + "coruscated": [], + "copyists": [], + "debarment": ["M"], + "potentates": [], + "hysteric": ["S", "M"], + "distinctly": [], + "pendulum": ["M", "S"], + "euphemisms's": [], + "driversing": [], + "canker": ["G", "M", "D", "S"], + "beetleds": [], + "mentoreds": [], + "televised": [], + "cad": ["S", "M"], + "uninsanitary": [], + "cattiness": ["M"], + "reexporteding": [], + "outbox'ses": [], + "douche": ["D", "S", "M", "G"], + "francium's": [], + "hims": [], + "ruffle's": [], + "impingement's": [], + "nosebleed": ["M", "S"], + "Yves": ["M"], + "monolingual'ses": [], + "backslid": [], + "Kaunda": ["M"], + "Iowa's": [], + "husbandman's": [], + "handicap": ["M", "S"], + "Central": [], + "gabs": [], + "fiferser": [], + "nondestructive": [], + "sleepy": ["R", "P", "T"], + "stylesing": [], + "precludinged": [], + "womanize": ["D", "R", "S", "Z", "G"], + "discontinuance": [], + "introspected": [], + "bobsledders": [], + "voter": ["S", "M"], + "overdresses": [], + "laywomen": [], + "technocrat'ses": [], + "leftist's": [], + "occupant's": [], + "elaboration": ["M"], + "blockage's": [], + "misrepresenting": [], + "adsorbsed": [], + "secessionist": ["M", "S"], + "Caucasus": ["M"], + "cheerily": [], + "hypertrophying": [], + "emergencies": [], + "qualificationsen": [], + "wordings's": [], + "tsetse": ["M", "S"], + "honorariums": [], + "gymnastically": [], + "stillness": ["M"], + "rubbishes": [], + "shuddered": [], + "rapiers's": [], + "menswear": ["M"], + "Kano's": [], + "worrying": ["Y"], + "rubbernecker": ["M"], + "nonprofessionals's": [], + "tarrier": [], + "smile": ["D", "S", "M", "G"], + "bike's": [], + "gyrate": ["D", "S", "G", "N", "X"], + "pawning": [], + "tensest": [], + "autobahns": [], + "stammeringly": [], + "obligeds": [], + "memsahibs": [], + "hybridized": [], + "ficus's": [], + "separating": [], + "taramasalata": [], + "iodizeds": [], + "tableaux": [], + "slayersing": [], + "snack'sed": [], + "cowsheds": [], + "commissariat": ["S", "M"], + "final'sly": [], + "Goodyear's": [], + "fear's": [], + "manumit": ["S"], + "Nev's": [], + "electives": [], + "gems's": [], + "predetermined": [], + "Swazi's": [], + "poof": ["M", "S"], + "sight": ["G", "M", "D", "Y", "S", "J"], + "closingings": [], + "furor": ["S", "M"], + "penitence's": [], + "obscurer": [], + "intrusive": ["Y", "P"], + "upends": [], + "soapbox'ses": [], + "Gotham": ["M"], + "archbishop": ["S", "M"], + "exclusion's": [], + "Randell": ["M"], + "lay's": [], + "ships": [], + "ferrymen": [], + "Maggie": ["M"], + "turnoffs": [], + "Tannhauser": ["M"], + "pep's": [], + "pauperism": ["M"], + "fleecers": [], + "beguiled": [], + "entersing": [], + "Colombians": [], + "distinctest": [], + "logjams's": [], + "reporter": [], + "multiprocessor's": [], + "Mondays's": [], + "Winchester's": [], + "acceptance's": [], + "tic's": [], + "rectilinear": [], + "nicknamed": [], + "Lina": ["M"], + "servomechanisms's": [], + "emanation's": [], + "sagers": [], + "Fromm's": [], + "reverberations": [], + "recitative": ["M", "S"], + "pleb": ["S"], + "fermenting": [], + "sitars": [], + "deadpan": ["M", "S"], + "luckless": [], + "umpire'sing": [], + "riffle": ["D", "S", "M", "G"], + "Rachel": ["M"], + "liberalizinged": [], + "fiduciary": ["S", "M"], + "amaranth": ["M"], + "unafraid": [], + "Baroda": ["M"], + "ruffling": [], + "luckier": [], + "exonerated": [], + "stump's": [], + "inspirations": [], + "fundamentalism": ["M"], + "navigate": ["D", "S", "G", "N"], + "rationing": [], + "emasculateds": [], + "ohm's": [], + "Hawking": ["M"], + "movies's": [], + "splutter's": [], + "fibroid": [], + "infallible": [], + "crooknecks's": [], + "Virgil's": [], + "appositive": ["S", "M"], + "amniotic": [], + "liquefaction's": [], + "camshaft's": [], + "macadamized": [], + "Morpheus": ["M"], + "motorway": ["S", "M"], + "kegs": [], + "chilblains's": [], + "untroubled": [], + "idolatry's": [], + "turnoff'ses": [], + "abbrev": ["S"], + "crystals": [], + "turtledoves": [], + "IP": [], + "Zeke": ["M"], + "urologist'ses": [], + "fountain's": [], + "Brahmans": [], + "familiarization's": [], + "repository's": [], + "snuggest": [], + "warder'ses": [], + "impended": [], + "belaboring": [], + "prepping": [], + "dukes": [], + "subprofessionals": [], + "steadfastness's": [], + "mangle": ["M", "Z", "G", "D", "R", "S"], + "preceded": [], + "megachurch'ses": [], + "raceway's": [], + "beds": [], + "maxing's": [], + "Patsy's": [], + "glaring": ["Y"], + "championship": ["M", "S"], + "platooning's": [], + "bot": ["S"], + "inconsolably": [], + "paternosters": [], + "binomials": [], + "swordfishes": [], + "forecloses": [], + "flashier": [], + "pizza's": [], + "adios": [], + "chancres": [], + "network": ["S", "G", "M", "D"], + "departments": [], + "confide": ["D", "R", "S", "Z", "G"], + "Pablum's": [], + "grammar": ["M", "S"], + "moralize": ["C", "G", "D", "S"], + "edified": [], + "nonprescription": [], + "Legree's": [], + "housebreak": ["R", "S", "Z", "G"], + "inductees's": [], + "paralegal'ses": [], + "MI": ["M"], + "flue's": [], + "touchdown's": [], + "Steadicam's": [], + "wanked": [], + "period's": [], + "Alejandra": ["M"], + "herb": ["M", "S"], + "downgradeds": [], + "nonconsecutive": [], + "untactful": [], + "affirminged": [], + "nutritiousness": ["M"], + "lemons": [], + "differentiated": ["U"], + "carnelian": ["M", "S"], + "Henry": ["M"], + "deluginged": [], + "arbitrariness": ["M"], + "turning's": [], + "creamier": [], + "barbells": [], + "infiltrators": [], + "griefs": [], + "totally": [], + "endowments": [], + "satanist's": [], + "declarer's": [], + "craps's": [], + "Babel": ["M", "S"], + "ill'sness": [], + "kelp's": [], + "Sankara's": [], + "Pompadour": ["M"], + "emigration": ["M"], + "impish": ["Y", "P"], + "meaner": [], + "purl'sed": [], + "Zwingli's": [], + "popper": ["S", "M"], + "inns": [], + "reweaving": [], + "blasters": [], + "pillorieds": [], + "bridge": ["D", "S", "M", "G"], + "peelers": [], + "slept": [], + "indistinguishable": [], + "revenuer": ["S", "M"], + "nymph": ["M"], + "electron's": [], + "knightliness's": [], + "silkierness": [], + "Arianism": ["M"], + "grumble": ["D", "R", "S", "M", "Z", "G", "J"], + "citizenry's": [], + "spectrum's": [], + "lipid's": [], + "peculator": ["S", "M"], + "somewhere": [], + "funk's": [], + "minion": ["M"], + "thievish": [], + "creameries": [], + "tippet": ["S", "M"], + "bandmasters": [], + "spermatozoon": ["M"], + "Bilbo": ["M"], + "counterclaims's": [], + "concerting": [], + "typesetter's": [], + "sleigh'sed": [], + "sepal": ["M", "S"], + "spirea's": [], + "pervert'sed": [], + "epistles": [], + "Isabella's": [], + "scallop": ["G", "S", "M", "D"], + "dickybirds": [], + "expensiveness": ["I", "M"], + "safflower'ses": [], + "grants": [], + "sampan": ["S", "M"], + "avian": [], + "rooteder": [], + "enactmented": [], + "Burke": ["M"], + "peppiness's": [], + "Helvetian": [], + "purpose'sly": [], + "mosquitoes": [], + "Carrier": ["M"], + "worryingly": [], + "peeved": [], + "hometown": ["M", "S"], + "prequel's": [], + "godmother's": [], + "undertakingser": [], + "Sand": ["Z", "M"], + "endangers": [], + "boulder's": [], + "slew": ["M", "D", "G", "S"], + "inglenook": ["S", "M"], + "omegas": [], + "arcs's": [], + "shirtwaists": [], + "flirts": [], + "primary": ["S", "M"], + "chowsing": [], + "neutralizers": [], + "sociology's": [], + "billboard": ["M", "S"], + "muleskinner's": [], + "Onion's": [], + "mosquito": ["M"], + "abbreviatingen": [], + "iciest": [], + "dirties": [], + "score's": [], + "pale'sly": [], + "hurtleds": [], + "demimondaines": [], + "broncobusters": [], + "prognosticator's": [], + "umiaks's": [], + "circuitry": ["M"], + "bottleder": [], + "nitwit'ses": [], + "bored": [], + "Athenian's": [], + "interspersion": ["M"], + "rhinitis": ["M"], + "cogitation's": [], + "oh's": [], + "suitableness": ["M"], + "Tirane": [], + "bungee's": [], + "Sargon": ["M"], + "snoweding": [], + "befouleding": [], + "Baptist's": [], + "gyrators's": [], + "geologies's": [], + "penetrative": [], + "exhumed": [], + "planting": ["M"], + "shellfishes": [], + "hint'sed": [], + "ventilating": [], + "overachieversing": [], + "hare's": [], + "tenacity": ["M"], + "Poona's": [], + "splatter'sed": [], + "teats": [], + "literalness": ["M"], + "belabors": [], + "beaker": ["M"], + "diode": ["S", "M"], + "momentariness": ["M"], + "debutante's": [], + "Mars": ["M", "S"], + "enfeebled": [], + "colognes's": [], + "preassigned": [], + "folk'ses": [], + "criminality": ["M"], + "Zubeneschamali": ["M"], + "yeshiva": ["S", "M"], + "Volgograd's": [], + "spiky": ["R", "P", "T"], + "scrapheaps's": [], + "introducinged": [], + "awkwardness": ["M"], + "matadors": [], + "strapping's": [], + "collarbone": ["S", "M"], + "warplanes": [], + "misconstrue": ["G", "D", "S"], + "Urania's": [], + "gadfly's": [], + "pot": ["C", "S", "M"], + "coriander": ["M"], + "Antwerp's": [], + "wreaked": [], + "Pena": ["M"], + "bamboozle": ["D", "S", "G"], + "phosphate'ses": [], + "tad's": [], + "bibliographer'ses": [], + "gasholder": ["S"], + "endearingly": [], + "indolence's": [], + "Nicaraguans's": [], + "rewire": [], + "cratering": [], + "bums's": [], + "laths": [], + "heckler's": [], + "nightshirts's": [], + "patio": ["S", "M"], + "billionth's": [], + "isolationism's": [], + "reassessment": [], + "timbers": [], + "stanzas's": [], + "asymmetries": [], + "innervation's": [], + "tangible's": [], + "shepherdess's": [], + "visibility": ["I", "M"], + "mantillas": [], + "enhanceder": [], + "exobiology": ["M"], + "doggone": ["T", "G", "R", "S"], + "Vonda": ["M"], + "stimulus's": [], + "Tanzanians's": [], + "scheme'sers": [], + "valley's": [], + "efficaciously": [], + "Fourier's": [], + "sinus's": [], + "impact'sed": [], + "testosterone's": [], + "Tyrone's": [], + "fantastic": [], + "francs": [], + "tellers's": [], + "surcharge": ["D", "S", "M", "G"], + "Courbet": ["M"], + "yokels": [], + "mycologist's": [], + "vibrationed": [], + "orders": [], + "Hondurans": [], + "buy": ["Z", "G", "S", "M", "R"], + "automated": [], + "Rte": [], + "IRAs": [], + "outlets's": [], + "senates's": [], + "rower's": [], + "geosyncline'ses": [], + "slings": [], + "privatizations": [], + "diuretics": [], + "fewer": [], + "chokecherry": ["S", "M"], + "conveyancing": [], + "purchases's": [], + "mythologies": [], + "cockle": ["S", "M"], + "teeniest": [], + "percussionists": [], + "liquidations": [], + "rial'ses": [], + "Escherichia": ["M"], + "Nadine's": [], + "cowgirl's": [], + "jet": ["S", "M"], + "click'sed": [], + "karmic": [], + "pigsties": [], + "Senior": ["M"], + "aspirateds": [], + "brainless": ["Y"], + "Rhineland": ["M"], + "costlier": [], + "frontiersman's": [], + "cordoning": [], + "prodigals": [], + "spliff": ["S"], + "rejuvenating": [], + "hobbit": ["S"], + "fichu's": [], + "cypress's": [], + "abortive": ["Y"], + "veto's": [], + "unflappable": [], + "Goethe": ["M"], + "chocs": [], + "superstition's": [], + "crossovers": [], + "wakings": [], + "lisle": ["M"], + "Basques": [], + "Minot": ["M"], + "bursae": [], + "slob'ses": [], + "Brandenburg's": [], + "greengrocers's": [], + "entrenchesing": [], + "cayuses": [], + "eggshell": ["S", "M"], + "elucidateds": [], + "hegira": ["S", "M"], + "grandniece's": [], + "swiftly": [], + "Zoroaster": ["M"], + "cutouts's": [], + "drudge'sing": [], + "Clio's": [], + "giblet": ["S", "M"], + "guldens": [], + "stinky": ["R", "T"], + "Jewish": ["P", "M"], + "underage": [], + "obsequy": ["M"], + "tattooing": [], + "soliloquy's": [], + "bowwow's": [], + "Canton's": [], + "dogwood's": [], + "baryon's": [], + "househusbands's": [], + "hid": [], + "indignation's": [], + "medallion's": [], + "wrestsing": [], + "consecratesing": [], + "pairwise": [], + "hordes's": [], + "Segre's": [], + "polliwog": ["S", "M"], + "transept's": [], + "unalterable": [], + "hello's": [], + "Christlike": [], + "babysat": [], + "Aglaia": ["M"], + "dome's": [], + "understandsing": [], + "Carol": ["M"], + "shows": [], + "emotive": ["Y"], + "noodles": [], + "corsets": [], + "genuflections": [], + "ventriloquist's": [], + "written": ["A", "U"], + "Nubian": ["M"], + "diva'ses": [], + "premeditated": ["U"], + "statuettes": [], + "scowl's": [], + "EFT": [], + "fichus": [], + "shopper's": [], + "routinizes": [], + "classierness": [], + "Rory's": [], + "orderings": [], + "protectivenessly": [], + "construction'ses": [], + "interpenetration": [], + "emigrating": [], + "regimes": [], + "voracity's": [], + "adrenal'ses": [], + "unease's": [], + "spectroscope": ["M", "S"], + "jammiest": [], + "nascence": ["A", "M"], + "embody": ["A", "E", "G", "S", "D"], + "penultimates": [], + "recording": ["M", "S"], + "Plano": [], + "Congress'ses": [], + "trench's": [], + "elk's": [], + "alleviating": [], + "muddied": [], + "state's": [], + "slickest": [], + "promotion": [], + "intersection's": [], + "weeder's": [], + "lifestyle's": [], + "precanceleding": [], + "sunlamp": ["S", "M"], + "conference'sing": [], + "hazelnuts": [], + "peristyles": [], + "processional'ses": [], + "lipstick'sed": [], + "commutes": [], + "woodwork's": [], + "missing": [], + "pilfereder": [], + "Oxfords's": [], + "choreographers": [], + "Kathleen's": [], + "intrepidity's": [], + "SUSE's": [], + "promulgateds": [], + "peanuts": [], + "categorizing": [], + "girting": [], + "cuddles": [], + "redneck's": [], + "moose's": [], + "yank": ["M", "D", "S", "G"], + "unpredictability": [], + "Winnebago": ["M"], + "Boone's": [], + "cloverleaf's": [], + "webfoot's": [], + "Sumter": ["M"], + "inflectsed": [], + "teasel": ["M", "S"], + "baiting's": [], + "Nanette's": [], + "waif": ["M", "S"], + "crappiest": [], + "inveighing": [], + "talc's": [], + "gigolo": ["S", "M"], + "schnoz'ses": [], + "protege": ["S", "M"], + "pastorals": [], + "insignificant": [], + "Pickford": ["M"], + "caparisoneding": [], + "solemness": ["M"], + "trimarans": [], + "checkerboards's": [], + "jollifications": [], + "checkmated": [], + "Falklands's": [], + "admirers": [], + "facilities's": [], + "rejects's": [], + "sailboarderers": [], + "substantiation": ["F", "M"], + "Como's": [], + "sties's": [], + "Laban": ["M"], + "macho": ["M"], + "gelid": [], + "Wooster's": [], + "creamerers": [], + "hazed": [], + "zestful": ["Y", "P"], + "terrazzo": ["M", "S"], + "Chattahoochee": ["M"], + "Mormons": [], + "groupware's": [], + "pebbles": [], + "litterbugs": [], + "greases": [], + "leakage's": [], + "Palmer": ["M"], + "cellar": ["M", "S"], + "Rambo": ["M"], + "emboldenings": [], + "fingerprinted": [], + "surefooted": [], + "prefers": [], + "pickaxing": [], + "defensible": ["I"], + "slippers": [], + "dramatists's": [], + "deerskin": ["M"], + "codfishes": [], + "burgomaster": ["S", "M"], + "marginalizing": [], + "dissuaded": [], + "flail's": [], + "frumpiest": [], + "auditing's": [], + "digests": [], + "wakeful": ["P", "Y"], + "grasp'sed": [], + "farroweding": [], + "bruitsed": [], + "keypunches": [], + "cogwheel": ["S", "M"], + "joyfulness's": [], + "talisman'ses": [], + "latheder": [], + "daring": ["M", "Y"], + "Guiana": ["M"], + "garbed": [], + "demonstratively": [], + "maillot": ["S", "M"], + "Hirohito": ["M"], + "heartland's": [], + "Antoinette": ["M"], + "edifiers": [], + "opining": [], + "iris's": [], + "buzzed": [], + "subcultures": [], + "ware's": [], + "Florida's": [], + "enduring": [], + "fails": [], + "molecules": [], + "teacakes's": [], + "summit's": [], + "tying": ["A", "U"], + "clayiest": [], + "bio's": [], + "duff": ["M", "D", "R", "Z", "G", "S"], + "rabbiteds": [], + "nasal'sly": [], + "luffing": [], + "feeding's": [], + "zygote's": [], + "Paglia's": [], + "turbojets": [], + "irking": [], + "buffing": [], + "affirmative": ["M", "Y", "S"], + "tykes": [], + "cribbed": [], + "uphill": ["M", "S"], + "playbook's": [], + "Chappaquiddick's": [], + "Mariano": ["M"], + "bean'sed": [], + "diligence's": [], + "axolotl's": [], + "Honiara": ["M"], + "Occident": [], + "fascinatingen": [], + "Thursdays's": [], + "handspring'ses": [], + "definer's": [], + "internship'ses": [], + "entwines": [], + "contriversing": [], + "superconducting": [], + "imbalance's": [], + "swanky": ["R", "P", "T"], + "efforts's": [], + "stoker": ["M"], + "matricide's": [], + "ecstatic": [], + "dermatologist's": [], + "steeplechase": ["M", "S"], + "caretaker's": [], + "sacrileges": [], + "oscillations": [], + "scull'sed": [], + "quits": [], + "Skye": ["M"], + "majoredly": [], + "scarpered": [], + "mesmerized": [], + "hamster": ["M", "S"], + "shuttlecockeds": [], + "actuality's": [], + "immaturity's": [], + "Soviet": ["M"], + "bodyguard's": [], + "Transvaal": ["M"], + "baseline": ["M", "S"], + "rippleds": [], + "wheeze'sing": [], + "clinics's": [], + "mausoleums": [], + "stiff": ["S", "M", "D", "N", "R", "Y", "P", "X", "T", "G"], + "mood'ses": [], + "boundlessness": ["M"], + "personifications": [], + "unparalleled": [], + "stanch": ["T", "G", "D", "R", "S"], + "Oglethorpe": ["M"], + "jaileder": [], + "greyhounds": [], + "Bahamian's": [], + "clitorises": [], + "McMahon's": [], + "lanthanum's": [], + "nurse": ["M", "Z", "G", "D", "R", "S"], + "dishcloth": ["M"], + "equatesing": [], + "cardigan": ["S", "M"], + "suppositories": [], + "Havana": ["M", "S"], + "improvidence": ["M"], + "diam": [], + "commandment's": [], + "countenancing": [], + "terrines": [], + "exudesing": [], + "make's": ["A"], + "ominousness's": [], + "frankly": [], + "trenchancy": ["M"], + "graveness's": [], + "upmarket": [], + "cigarillo": ["M", "S"], + "honkeder": [], + "irreconcilably": [], + "picklinged": [], + "teaspoons": [], + "shads": [], + "ticketing": [], + "combining": [], + "superciliousness's": [], + "heed'sed": [], + "freq": [], + "fashioners": [], + "tenancies's": [], + "target": ["M", "D", "G", "S"], + "gaffing": [], + "messesing": [], + "carpal": ["M", "S"], + "downgrade's": [], + "prompts's": [], + "unequivocal": [], + "cognomens's": [], + "destroyer": ["M"], + "cardiograph's": [], + "Aeroflot": ["M"], + "expendables's": [], + "Alaskan's": [], + "bridal's": [], + "Jaime's": [], + "musty": ["P", "T", "R"], + "immutability's": [], + "steamship's": [], + "Trina": ["M"], + "lid's": [], + "crucifix": ["M", "S"], + "scone'ses": [], + "edification's": [], + "poorhouse": ["S", "M"], + "lawmaking's": [], + "taunt's": [], + "starveds": [], + "psychotropic": ["M", "S"], + "dangersing": [], + "folklore's": [], + "busbies's": [], + "mismanagementing": [], + "seizing": [], + "varnisheds": [], + "Fibonacci's": [], + "sworn": [], + "outspreadings": [], + "sedge's": [], + "travelings": [], + "Pace": ["M"], + "drumlins's": [], + "decapitator's": [], + "pistols": [], + "nubs": [], + "transforming": [], + "export's": [], + "Si's": [], + "sorriest": [], + "CID": [], + "conrejoin": [], + "Jenner": ["M"], + "Bosch's": [], + "staphylococcus's": [], + "slobbereds": [], + "outraces": [], + "pocked": [], + "senoras's": [], + "markups": [], + "excepting": [], + "cheddar's": [], + "moieties": [], + "accidental": ["S", "M", "Y"], + "arrangement": ["A", "S", "M"], + "Odis's": [], + "drabsness": [], + "namesake's": [], + "moonshiner": ["M"], + "groggily": [], + "pirates's": [], + "inhumanly": [], + "upturn'sed": [], + "sized": [], + "sulk": ["M", "D", "G", "S"], + "signer's": [], + "thatched": [], + "supplier": ["M"], + "precipitations's": [], + "sectarian": ["M", "S"], + "JavaScript": ["M"], + "tiaras": [], + "Syriac": ["M"], + "encrustation": ["S", "M"], + "logoff's": [], + "starburst": ["S"], + "muleteers": [], + "railing": ["S", "M"], + "systoles's": [], + "court": ["S", "M", "D", "Y", "G"], + "captivation": ["M"], + "napkin": ["M", "S"], + "backsliders": [], + "luff": ["D", "S", "G"], + "lineman": ["M"], + "subsection'ses": [], + "befitting": ["Y"], + "Summer": ["M", "S"], + "wheelbase": ["S", "M"], + "nerdy": ["R", "T"], + "Ahab": ["M"], + "positiveness": ["M"], + "steersman": ["M"], + "completeness": ["I", "M"], + "curvature's": [], + "outflows": [], + "Dean's": [], + "fingerboards's": [], + "microns": [], + "partitive'ses": [], + "jokey": [], + "embankment's": [], + "saloon's": [], + "congratulatory": [], + "Arcadia's": [], + "Soddy's": [], + "corundum's": [], + "seekinger": [], + "showmanship": ["M"], + "danish": ["M", "S"], + "harboreds": [], + "poseur's": [], + "serf's": [], + "legislated": [], + "Tussaud": ["M"], + "tiebreaker's": [], + "monounsaturated": [], + "acknowledged": ["U"], + "deterministic": [], + "granddaughter's": [], + "samovars's": [], + "mint": ["M", "D", "R", "S", "Z", "G"], + "respectably": [], + "Menkalinan's": [], + "covers": [], + "blurriest": [], + "prepayment'ses": [], + "fish": ["M", "D", "R", "S", "Z", "G"], + "condiment'ses": [], + "Afros's": [], + "dismays's": [], + "daughters": [], + "pocket": ["S", "M", "D", "G"], + "ohmmeters": [], + "bassinet's": [], + "Romans's": [], + "Hui's": [], + "wiper": ["M"], + "Omani'ses": [], + "reprimands": [], + "gin": ["S", "M"], + "sarongs's": [], + "forequarters": [], + "orangeries's": [], + "plaintiff": ["S", "M"], + "investigations": [], + "sublease'sing": [], + "pupil": ["M", "S"], + "multidisciplinary": [], + "aromatic'ses": [], + "fungible": ["M", "S"], + "disquisition'ses": [], + "Naipaul's": [], + "blackhead's": [], + "pride'sing": [], + "furbishes": [], + "threesome": ["S", "M"], + "blimpish": [], + "Pharaoh": ["M"], + "darling": ["M", "S"], + "Wendy's": [], + "preheating": [], + "lampposts's": [], + "glory": ["D", "S", "M", "G"], + "phagocytes": [], + "array's": [], + "Ionic's": [], + "allergy": ["S", "M"], + "precludes": [], + "concertina": ["S", "G", "M", "D"], + "harpist": ["S", "M"], + "calla'ses": [], + "multipliersing": [], + "oinks": [], + "papa": ["M", "S"], + "environmentalists's": [], + "POW's": [], + "undisclosed": [], + "chromeds": [], + "Hebrew": ["M", "S"], + "commandmenters": [], + "wending": [], + "rugger": [], + "employed": [], + "hindered": ["U"], + "yum": [], + "interscholastic": [], + "satinged": [], + "ohms's": [], + "matchless": [], + "shimmers's": [], + "axioms's": [], + "Weierstrass": ["M"], + "instruction'ses": [], + "feminist's": [], + "nozzle'ses": [], + "flexibility's": [], + "guess's": [], + "special's": [], + "Ct": [], + "Pentateuch": ["M"], + "goalscorer": ["S"], + "Epimethius's": [], + "doctrinaire's": [], + "warlord": ["M", "S"], + "firmness": ["M"], + "fix": ["Z", "G", "B", "J", "M", "D", "R", "S"], + "thump'sed": [], + "cheapskate's": [], + "witlessly": [], + "Portugal's": [], + "choosier": [], + "mechanisms's": [], + "christening'ses": [], + "hellebore": ["M"], + "bankersing": [], + "numbness's": [], + "rte": [], + "petitioners": [], + "astrologist": ["M", "S"], + "spinnerets": [], + "Genet": ["M"], + "wielded": [], + "transcriber": ["M"], + "cobble's": [], + "lees": [], + "Augustine": ["M"], + "limericks's": [], + "oratories's": [], + "Labradorean": [], + "plausibility's": [], + "stockpot's": [], + "destiny": ["S", "M"], + "mesomorphs": [], + "princedom": ["S", "M"], + "mace": ["M", "S"], + "desolately": [], + "freewheeled": [], + "neighs": [], + "clobber's": [], + "OTC": [], + "posturings": [], + "twinges's": [], + "waddle's": [], + "deviancy": ["M"], + "nosegays's": [], + "Bridgette": ["M"], + "magnifieder": [], + "hasty": ["R", "T", "P"], + "cilantro": ["M"], + "brotherhoods": [], + "curate": ["D", "S", "M", "G", "V"], + "Com": [], + "beaver'sed": [], + "unoffensive": [], + "undershorts": ["M"], + "pearled": [], + "moldiness's": [], + "exteriors": [], + "breathtakingly": [], + "Dyson's": [], + "toner's": [], + "Seminole'ses": [], + "evangelicalism's": [], + "Adirondacks's": [], + "voters": [], + "refurbishments": [], + "Christmastime's": [], + "wedded": ["A"], + "irritably": [], + "chopsticks": [], + "care's": [], + "imitators": [], + "unrewoven": [], + "swindleder": [], + "Verne": ["M"], + "shinnieds": [], + "argueder": [], + "salamanders": [], + "homeroom": ["M", "S"], + "drudgery's": [], + "coterie": ["M", "S"], + "woodworm": ["S"], + "Saran": ["M"], + "blamable's": [], + "endoscope's": [], + "Salvadorians": [], + "rakish": ["Y", "P"], + "unmindful": [], + "hunkers": [], + "airsickness's": [], + "decadence": ["M"], + "vented": [], + "twitched": [], + "Jacobin": ["M"], + "ducal": [], + "SC's": [], + "crackle's": [], + "Mendez": ["M"], + "hitcheds": [], + "yuppifyinged": [], + "enlistees": [], + "fashion's": [], + "ichthyology's": [], + "rollicked": [], + "platforms": [], + "scrums": [], + "endangering": [], + "implementation": ["S", "M"], + "poisonersing": [], + "rantingser": [], + "breadwinners's": [], + "Bradshaw": ["M"], + "clinically": [], + "lamentable": [], + "vat": ["S", "M"], + "midwifing": [], + "firstborn": ["S", "M"], + "Proust's": [], + "globing": [], + "app's": [], + "dells's": [], + "Transvaal's": [], + "situations": [], + "Bianca": ["M"], + "busgirl'ses": [], + "crudely": [], + "shallower": [], + "anesthetize": ["G", "D", "S"], + "decontrolling": [], + "Fraser's": [], + "Corning's": [], + "nontrivial": [], + "suburbanites's": [], + "boost's": [], + "misquotes": [], + "defameder": [], + "imprintings": [], + "paratyphoid": ["M"], + "celibate": ["M", "S"], + "hyphensing": [], + "arthroscopic": [], + "legalizeds": [], + "DC": ["M"], + "straggled": [], + "diverging": [], + "synonym": ["S", "M"], + "destining": [], + "bushy": ["R", "P", "T"], + "overlaps": [], + "sewerage's": [], + "purring's": [], + "Calvinism": ["M", "S"], + "broadly": [], + "Salyut's": [], + "quantification's": [], + "vernacular's": [], + "trusted": [], + "Maccabees": [], + "Stafford's": [], + "kilobytes": [], + "mistakable's": [], + "Greene": ["M"], + "pinch's": [], + "bawls": [], + "strand": ["M", "D", "S", "G"], + "luster": ["M"], + "baseness": ["M"], + "yob": ["S"], + "capeskin": ["M"], + "Arawakan": ["M"], + "socioeconomic": [], + "wield": ["S", "D", "R", "Z", "G"], + "rasher": ["M"], + "praising": [], + "deliquescing": [], + "matureder": [], + "semitones's": [], + "saluteds": [], + "grassroots": [], + "shotguns's": [], + "epic'ses": [], + "carillons": [], + "jingoism": ["M"], + "kitting": [], + "midwifery's": [], + "Iran": ["M"], + "terrace'sing": [], + "haulersing": [], + "sprinkle": ["D", "R", "S", "J", "M", "Z", "G"], + "wringers": [], + "Kendra": ["M"], + "partridges": [], + "intellectually": [], + "steward": ["G", "M", "D", "S"], + "hysterectomy": ["S", "M"], + "nondisclosure": ["M"], + "vulgarian": ["M", "S"], + "Cajun": ["M", "S"], + "chided": [], + "pretty's": [], + "deeded": [], + "halibut": ["S", "M"], + "antidepressants": [], + "milk": ["M", "D", "R", "S", "Z", "G"], + "forwardest": [], + "reconnoitered": [], + "trendies's": [], + "compatibly": ["I"], + "Klondike": ["M", "S"], + "Tameka's": [], + "vituperation's": [], + "suicidal": [], + "sullyinged": [], + "wholes's": [], + "tithes's": [], + "tuna'ses": [], + "lancersing": [], + "diverselication": [], + "shame": ["M", "S"], + "analytic": [], + "fief's": [], + "Siddhartha's": [], + "bloodless": ["Y", "P"], + "tassels": [], + "bouffant's": [], + "populated": [], + "mutagen'ses": [], + "wheelie": ["S", "M"], + "shreds": [], + "dds": [], + "Rome's": [], + "lien'ses": [], + "loftinesser": [], + "snugging": [], + "emulating": [], + "lades": [], + "Toni": ["M"], + "sinner's": [], + "underclothing's": [], + "immunized": [], + "capaciousnessly": [], + "proprieties": ["M"], + "Heisenberg": ["M"], + "Coppola": ["M"], + "backslidersing": [], + "effacementing": [], + "perpetual": ["S", "M", "Y"], + "supplying": [], + "tailor'sed": [], + "broads": [], + "inrebuilt": [], + "chickweed's": [], + "suspecteding": [], + "bedazzled": [], + "inpatient": [], + "overdrew": [], + "sculptor": ["S", "M"], + "adamant": ["M", "Y"], + "Head": ["M"], + "Wilder": ["M"], + "woodchucks": [], + "TESOL": [], + "timber'sed": [], + "supplanted": [], + "musicologist": ["M", "S"], + "therefore": [], + "percents": [], + "unpick": ["G", "D", "S"], + "impotently": [], + "combs": [], + "redistort": [], + "biathlons's": [], + "armoring's": [], + "kabbalah": [], + "humidifieder": [], + "harasseder": [], + "exploitation": ["M"], + "Mascagni": ["M"], + "furthermore": [], + "page'sers": [], + "dogwood": ["M", "S"], + "adrift": [], + "bicyclist": ["S", "M"], + "scalper": ["M"], + "chorus": ["G", "M", "D", "S"], + "glideder": [], + "sheareder": [], + "effusing": [], + "Wynn": ["M"], + "moderation": ["M"], + "dermatology": ["M"], + "Hollerith's": [], + "Sybil": ["M"], + "testimony": ["S", "M"], + "greats's": [], + "immorality's": [], + "tumidity's": [], + "tarsing": [], + "dissents": [], + "Buck's": [], + "enclaves": [], + "embolism": ["M", "S"], + "prodigal'sly": [], + "thuggery": ["M"], + "wranglersing": [], + "Wolff": ["M"], + "binderies's": [], + "Colbert's": [], + "gents": [], + "adumbrating": [], + "tooled": [], + "inarticulateness": [], + "remoldinged": [], + "bouncersing": [], + "Calvinists": [], + "sledded": [], + "pagoda": ["M", "S"], + "unhelpful": [], + "bravest": [], + "doodlebug": ["S", "M"], + "confidante": ["S", "M"], + "glenoid": [], + "Hitchcock": ["M"], + "stinting": [], + "outbalancing": [], + "impassivity's": [], + "hauler": ["M"], + "chicaneries's": [], + "Brezhnev": ["M"], + "cleansing": [], + "symmetrical": ["Y"], + "kimono": ["M", "S"], + "quilting's": [], + "Spinoza": ["M"], + "striation": ["M", "S"], + "tactician's": [], + "lily": ["S", "M"], + "cohabitant'ses": [], + "recovery": ["S", "M"], + "housebound": [], + "poetaster's": [], + "demurers": [], + "producing": [], + "Wilcox's": [], + "haircut's": [], + "parsimoniously": [], + "resolesing": [], + "antagonism's": [], + "erogenous": [], + "auburn": ["M"], + "Tunguska's": [], + "sinew": ["M", "S"], + "teetering": [], + "hedonist": ["M", "S"], + "paunch's": [], + "tiff": ["M", "D", "G", "S"], + "Finns": [], + "exploringed": [], + "cook": ["A", "D", "G", "S"], + "codons": [], + "solemnifiesing": [], + "politesse's": [], + "occupies": [], + "will's": [], + "torment's": [], + "Sampson's": [], + "highwayman": ["M"], + "Foucault": ["M"], + "assortment": ["M", "S"], + "computationally": [], + "rockabilly": ["M"], + "rosebud": ["S", "M"], + "successors": [], + "ladyship": ["M", "S"], + "Callisto": ["M"], + "Thea's": [], + "boobing's": [], + "Bridges": ["M"], + "squeezinged": [], + "Lome": ["M"], + "spelling": ["M"], + "moor": ["M", "D", "J", "S", "G"], + "zoos's": [], + "pulchritude's": [], + "computesing": [], + "prattle'sers": [], + "presupposed": [], + "unknowns's": [], + "Jove": ["M"], + "pacesetter": ["S", "M"], + "canonizes": [], + "octave": ["M", "S"], + "chrome": ["M", "G", "D", "S"], + "tussocky": [], + "Robin's": [], + "Babylon": ["M", "S"], + "mortgagors": [], + "unction": ["S", "M"], + "Nicklaus's": [], + "agencies": [], + "motormen": [], + "packinghouse's": [], + "homogenizeds": [], + "Phrygia's": [], + "gecko's": [], + "outlandishly": [], + "restrain": [], + "burglarize": ["G", "D", "S"], + "serenaded": [], + "exactsness": [], + "nonreturnable": ["M", "S"], + "murmurer": ["M"], + "teamsters": [], + "cuspid's": [], + "taker": ["M", "S"], + "reviles": [], + "interrelationship's": [], + "miss's": [], + "cred": [], + "submitted": ["A"], + "addictions": [], + "Kiel's": [], + "Lexington's": [], + "deadens": [], + "bloodmobile's": [], + "cosines's": [], + "choreographing": [], + "forgone": [], + "actuates": [], + "meetinghouse's": [], + "reactionaries's": [], + "dubbers's": [], + "chancellor's": [], + "revolversing": [], + "missioner's": [], + "fragilest": [], + "cacao": ["M", "S"], + "twosomes's": [], + "plinths": [], + "playboy": ["S", "M"], + "ouzo's": [], + "pressurizing": [], + "Avon's": [], + "addend'ses": [], + "circumspection's": [], + "weightlifter": ["M", "S"], + "kits": [], + "cynics": [], + "beseechersing": [], + "Mingable": [], + "overdevelopeding": [], + "triggering": [], + "sideboards's": [], + "knell's": [], + "detoxesing": [], + "mirthlessly": [], + "avocation'ses": [], + "Wilmington": ["M"], + "wrasse": ["M", "S"], + "Missourian'ses": [], + "houseboats's": [], + "infertile": [], + "doing": ["U", "S", "M"], + "snowings": [], + "path's": [], + "conqueror's": [], + "keeled": [], + "surveyeding": [], + "dungings": [], + "carryall's": [], + "enlargement's": [], + "quadrivium": ["M"], + "tacks": [], + "makers": [], + "officeholders": [], + "Euphrates": ["M"], + "Slovenia's": [], + "merchant's": [], + "Godel's": [], + "gumshoe's": [], + "effortlessly": [], + "menorahs": [], + "howdy": [], + "demotion": [], + "psychotherapy": ["S", "M"], + "recontract": [], + "Cornish's": [], + "Czechia's": [], + "neutralists's": [], + "intersects": [], + "desolates": [], + "animatedly": [], + "hyperventilationed": [], + "elevations": [], + "stack's": [], + "paradinged": [], + "tatterdemalion's": [], + "Ontario": ["M"], + "toenail'ses": [], + "picador's": [], + "extinct": ["G", "D", "S"], + "bootee's": [], + "inhibition": ["S", "M"], + "puzzleder": [], + "lecture'sers": [], + "checkmates": [], + "Vicki": ["M"], + "Goebbels's": [], + "stonewallings": [], + "Kafka's": [], + "quickerly": [], + "Ont": [], + "mat": ["S", "Z", "G", "M", "D", "R"], + "vistas": [], + "writerable": [], + "Qingdao's": [], + "pecans's": [], + "doters": [], + "affianced": [], + "remembrance's": [], + "brutalizes": [], + "aversion's": [], + "varmint": ["M", "S"], + "butterfly": ["G", "D", "S", "M"], + "putrescence's": [], + "dimmer's": [], + "Nabokov": ["M"], + "careerings": [], + "filter's": [], + "spamming": [], + "Silesia": ["M"], + "expending": [], + "ransom'sed": [], + "caliphs": [], + "incidentals": [], + "spokesperson": ["M", "S"], + "leaking": [], + "swish": ["T", "G", "M", "D", "R", "S"], + "bolshie": [], + "hammerlock": ["S", "M"], + "Drano": ["M"], + "gymnasium's": [], + "flicker'sed": [], + "keystrokes's": [], + "modelings's": [], + "gloated": [], + "citrons": [], + "sickbays": [], + "sieveds": [], + "dossing": [], + "sittings": [], + "buss's": [], + "lvii": [], + "Nettie's": [], + "hiccoughing": [], + "painfully": [], + "concreteness": ["M"], + "stayersing": [], + "oldness's": [], + "Trinity's": [], + "quondam": [], + "investitures": [], + "talkiest": [], + "contemplatives's": [], + "anodyne's": [], + "Jeffery": ["M"], + "checked": ["U"], + "powersing": [], + "Dristan's": [], + "tympanum's": [], + "checkerboard": ["S", "M"], + "overclocking": [], + "militated": [], + "nymphet'ses": [], + "elapsed": [], + "firebombings": [], + "peak'sed": [], + "Longueuil": [], + "truest": [], + "websites": [], + "hypertensives's": [], + "classiness": ["M"], + "cardiology": ["M"], + "collarless": [], + "baud": ["S", "M"], + "voter's": [], + "calcareous": [], + "cows": [], + "ea": [], + "ventricle's": [], + "dossers": [], + "Derek's": [], + "skyjack": ["J", "Z", "G", "S", "D", "R"], + "Blondel's": [], + "Panza": ["M"], + "waterier": [], + "sweetening's": [], + "ballpoint": ["M", "S"], + "Hasidim's": [], + "bumblebees's": [], + "Bolshevik": ["S", "M"], + "unruliest": [], + "Vela": ["M"], + "creating": [], + "subversivesness": [], + "otter'ses": [], + "Thar's": [], + "reteach": ["G", "S"], + "maxim": ["S", "M"], + "ductile": [], + "subcontinent's": [], + "cheeks": [], + "Kirinyaga's": [], + "recognizing": [], + "forays's": [], + "stoop": ["G", "S", "M", "D"], + "Samar": ["M"], + "investors": [], + "birthright": ["M", "S"], + "dandruff's": [], + "snugglinged": [], + "sundresses": [], + "dote": ["S"], + "aloes's": [], + "adverted": [], + "Evansville": ["M"], + "depose": [], + "melange'ses": [], + "tip's": [], + "coordinating": [], + "inventories": [], + "implantation": ["M"], + "retractedable": [], + "talon's": [], + "nobodies's": [], + "absurdity": ["S", "M"], + "chutneys": [], + "falsity": ["S", "M"], + "Aron's": [], + "computing's": [], + "added": [], + "wares": [], + "errsed": [], + "experimenter's": [], + "Cervantes's": [], + "cheerinesser": [], + "shimming": [], + "bummers's": [], + "capos": [], + "Vader's": [], + "cluck": ["S", "M", "D", "G"], + "Gounod's": [], + "emigratesens": [], + "ledges": [], + "deride": ["G", "D", "S"], + "nonevent'ses": [], + "Re": ["M"], + "traditionalist": ["S", "M"], + "hacienda": ["S", "M"], + "curry": ["D", "S", "M", "G"], + "nippy": ["T", "P", "R"], + "bedhead": ["S"], + "scoot": ["D", "R", "S", "Z", "G"], + "photosynthetic": [], + "placatory": [], + "disgruntlement's": [], + "paratroops": ["M"], + "swaggerering": [], + "perisheder": [], + "mudslide": ["M", "S"], + "burst": ["S", "M", "G"], + "hipper": [], + "unauthenticated": [], + "applejack": ["M"], + "cellphones": [], + "Divine's": [], + "carousing": [], + "timbre's": [], + "alleles": [], + "capsized": [], + "vibes's": [], + "moistening": [], + "telecommuting's": [], + "interlinking": [], + "pestilence's": [], + "wrists": [], + "Barry's": [], + "carhop'ses": [], + "Catholicism": ["M", "S"], + "cocoon": ["S", "M", "D", "G"], + "Alsatians": [], + "Elizabethan's": [], + "honeymooning": [], + "valet": ["S", "M", "D", "G"], + "exaggeration's": [], + "ballpark's": [], + "prefixes": [], + "mulch'sed": [], + "intervocalic": [], + "mirthfully": [], + "ineptliness": [], + "bubbly": ["R", "M", "T"], + "kitties's": [], + "hesitancy's": [], + "components": [], + "Melbourne's": [], + "Altamira": ["M"], + "passed": [], + "Abel": ["M"], + "xcii": [], + "bluff's": [], + "implode": ["D", "S", "G"], + "abbess'ses": [], + "floweriest": [], + "Bulgarians": [], + "waging": [], + "Bilbo's": [], + "whirls": [], + "putt": ["Z", "G", "M", "D", "R", "S"], + "phenom'ses": [], + "riffraff": ["M"], + "shiploads's": [], + "schoolroom": ["S", "M"], + "wartime's": [], + "BBC": ["M"], + "goldfish's": [], + "robs": [], + "preconception's": [], + "winged": [], + "anesthetist": ["M", "S"], + "heavenlier": [], + "scuppereding": [], + "altruism": ["M"], + "gunwale's": [], + "legislation": ["M"], + "fluoride": ["S", "M"], + "splenectomy": [], + "subjecteds": [], + "barrister's": [], + "forwards": [], + "commiserated": [], + "calmest": [], + "artiness": ["M"], + "tankard's": [], + "legacies's": [], + "delegatinged": [], + "dineder": [], + "spuriousness's": [], + "invoice": [], + "McCormick": ["M"], + "community's": [], + "tensingen": [], + "bogymen": [], + "senescence's": [], + "Fermi": ["M"], + "hailings": [], + "shipyards's": [], + "crackled": [], + "Putnam's": [], + "cashew": ["M", "S"], + "nitpicks": [], + "phallic": [], + "yip": ["S", "M"], + "Ebonics's": [], + "mercenaries": [], + "minivans": [], + "expansionist": ["M", "S"], + "pedantically": [], + "beneficiary's": [], + "chain": ["U", "G", "D", "S"], + "avoidable": ["U"], + "banqueting": [], + "masseur's": [], + "skeet'ser": [], + "vivacious": ["P", "Y"], + "gyroscope'ses": [], + "closures": [], + "Abernathy's": [], + "agglomerations": [], + "thruway'ses": [], + "landline": ["M", "S"], + "reappraise": [], + "listensing": [], + "footlings": [], + "doubt'sed": [], + "dune'ses": [], + "erotically": [], + "Muslim's": [], + "bonces": [], + "gorillas": [], + "nonconstructive": [], + "tensers": [], + "crossbowman": ["M"], + "Duse": ["M"], + "workings's": [], + "accessibility's": [], + "leaveder": [], + "crimsons": [], + "counterattackeds": [], + "pew's": [], + "sorties's": [], + "slobbersing": [], + "Christ'ses": [], + "depictions": [], + "store's": [], + "discernment": ["M"], + "cynic's": [], + "floated": [], + "freebie": ["S", "M"], + "surmountable": ["I"], + "block's": [], + "abnegationed": [], + "darts": [], + "circularly": [], + "transpiration": ["M"], + "greenroom's": [], + "terminologies's": [], + "yuk's": [], + "jingle'sing": [], + "jaunting's": [], + "segueing": [], + "sens": [], + "contuse": ["X", "D", "S", "G", "N"], + "procreation's": [], + "affidavit": ["S", "M"], + "unwrap": [], + "barreds": [], + "sidinged": [], + "globalizes": [], + "fishmongers": [], + "unfunded": [], + "benedictine": [], + "grooveds": [], + "crabbiest": [], + "antithesis": ["M"], + "ascension's": [], + "RSVP": [], + "taut": ["P", "X", "T", "N", "R", "Y"], + "ingrates": [], + "satiate": ["G", "N", "D", "S"], + "nondrinker's": [], + "rafted": [], + "suggestiveness's": [], + "endorsements": [], + "receipts's": [], + "escarpment": ["M", "S"], + "networking": ["M"], + "invasion": ["M", "S"], + "topping's": [], + "easterlies's": [], + "caliph": ["M"], + "flycatcher'ses": [], + "fetishes": [], + "ventilated": [], + "subtopics": [], + "garlic": ["M"], + "cackle's": [], + "negation's": [], + "Bloomingdale's": [], + "refrainsing": [], + "instigator'ses": [], + "confab": ["S", "M"], + "pioneersing": [], + "Rhoda's": [], + "Horton's": [], + "thresh": ["M", "D", "R", "S", "Z", "G"], + "sunshade's": [], + "stress": ["M", "D", "S", "G"], + "bollockings": [], + "role's": [], + "halogens": [], + "Jasmine's": [], + "Nemesis's": [], + "irrigating": [], + "defeatersing": [], + "coattail's": [], + "iffiness's": [], + "saltine's": [], + "viseds": [], + "darters": [], + "menus": [], + "accompaniment's": [], + "cantaloupe": ["S", "M"], + "Medusa": ["M"], + "bureaucrat'ses": [], + "Lithuanian": ["M", "S"], + "foll": [], + "dillydalliesing": [], + "clones's": [], + "Melba's": [], + "licit": ["Y"], + "snob": ["M", "S"], + "nickered": [], + "respected": [], + "preserveder": [], + "winces's": [], + "Elbert": ["M"], + "walrus'ses": [], + "lubbers": [], + "Heisenberg's": [], + "assumable": [], + "hairs": [], + "missionary": ["S", "M"], + "determining": [], + "ceasefire": ["M", "S"], + "irresolutenessly": [], + "hagiographers": [], + "thanes's": [], + "swotting": [], + "toursing": [], + "aping": [], + "adverbials's": [], + "Sophoclean": ["M"], + "quirkeding": [], + "recessive's": [], + "buttonwood'ses": [], + "archdeacon's": [], + "exams": [], + "importersing": [], + "backstairs": [], + "univ": [], + "Kentuckians": [], + "Lombard": ["M"], + "excitedly": [], + "stretchereding": [], + "behaves": [], + "crowdeding": [], + "velvet": ["M"], + "snappier": [], + "manufacturer": ["M"], + "renewable": [], + "father'sed": [], + "backscratching's": [], + "Paraguayan'ses": [], + "Martel's": [], + "purist'ses": [], + "xerographic": [], + "minuteness": ["M"], + "hurdlersing": [], + "livelong": ["S"], + "encompassinged": [], + "bloodstream's": [], + "raciness's": [], + "puttied": [], + "deodorants": [], + "civics's": [], + "paroxysm": ["S", "M"], + "plexus'ses": [], + "coating": ["M"], + "inebriate's": [], + "hamlet": ["M", "S"], + "delineatingen": [], + "superiority's": [], + "Loyola's": [], + "griping": [], + "pariahs": [], + "lull's": [], + "legislators": [], + "bedsitter": ["S"], + "dorm's": [], + "homecoming's": [], + "impossibilities's": [], + "spider's": [], + "indoctrinates": [], + "scarab": ["S", "M"], + "toyed": [], + "bandstands": [], + "flammables's": [], + "Ramadans": [], + "pills": [], + "stilted": ["Y"], + "hassle'sing": [], + "considering": [], + "subbed": [], + "childhood": ["S", "M"], + "rationale'ses": [], + "twee": [], + "gavotte's": [], + "fibrous": [], + "aileron's": [], + "inciters": [], + "goersing": [], + "foliage's": [], + "hesitation": ["M"], + "Deena's": [], + "freshest": [], + "franchisesing": [], + "emeritus": [], + "commiserating": [], + "chessman's": [], + "southwesters": [], + "nightfall's": [], + "disciplines's": [], + "Land": ["M"], + "Giuseppe": ["M"], + "imaginations": [], + "kayaking": ["M"], + "dovecotes's": [], + "shittier": [], + "expectations's": [], + "advertorial": ["S", "M"], + "acclimatizesing": [], + "chirrupeds": [], + "greengages": [], + "trunk": ["S", "G", "M"], + "sloth's": [], + "bloodstain's": [], + "extendeder": [], + "sequinned": [], + "contraltos's": [], + "copulative": ["S", "M"], + "sweeper's": [], + "reinstatement": ["M"], + "Keats's": [], + "bacteriologists's": [], + "diversifyingen": [], + "brokenliness": [], + "attrition": ["M"], + "sewed": [], + "dolefully": [], + "quipsters's": [], + "jean's": [], + "illustrations": [], + "Yunnan's": [], + "shoveling": [], + "thrasheder": [], + "cooperage's": [], + "folios": [], + "mandate": ["D", "S", "M", "G"], + "pestle": ["M", "G", "D", "S"], + "gristmill'ses": [], + "stymie": ["M", "D", "S"], + "dynamism's": [], + "sorbet": ["S", "M"], + "denial": ["M", "S"], + "angelic": [], + "outhits": [], + "trombones": [], + "mortar's": [], + "twiddle": ["M", "G", "D", "S"], + "bridges": [], + "scrubbiest": [], + "Sanger": ["M"], + "underclass'ses": [], + "towel'sed": [], + "Spillane": ["M"], + "grafters": [], + "flexing": [], + "clingerers": [], + "gasbags's": [], + "scanners": [], + "Samuelson": ["M"], + "Beverly": ["M"], + "paperbacks": [], + "flaking": [], + "jawbreaker": ["M", "S"], + "middleweights": [], + "hydraulics": ["M"], + "palatalizinged": [], + "hook": ["U", "D", "S", "G"], + "deprive": ["G", "D", "S"], + "arrears": ["M"], + "liberatingen": [], + "Chris": ["M"], + "harelip": ["S", "M"], + "literalliness": [], + "google": ["D", "S", "M", "G"], + "roar's": [], + "aromatic's": [], + "company's": [], + "taro's": [], + "truce": ["S", "M"], + "washboards": [], + "truncates": [], + "Mujib": ["M"], + "sieve'sing": [], + "Noreen's": [], + "gazing": [], + "dictionary's": [], + "pearling's": [], + "studio'ses": [], + "drinking": [], + "gesticulation": ["M"], + "ascertainable": [], + "seethesing": [], + "drafting's": [], + "megs": [], + "hollowest": [], + "adapts": [], + "etudes": [], + "haulerers": [], + "ripest": [], + "ironed": [], + "shammed": [], + "knit's": [], + "parole": ["M", "G", "D", "S"], + "outwears": [], + "showstopper's": [], + "Brooklyn's": [], + "deviltries's": [], + "unceasing": ["Y"], + "confider": ["M"], + "thorough": ["R", "Y", "P", "T"], + "shillelagh's": [], + "RAF": ["M"], + "riveter": ["M"], + "appreciateds": [], + "fl": ["J", "D", "G"], + "Schenectady's": [], + "Taliesin": ["M"], + "lecithin": ["M"], + "username's": [], + "elegiacs": [], + "cartographer": ["S", "M"], + "sympathizes": [], + "Fitch's": [], + "semiprofessionals's": [], + "Ricardo": ["M"], + "jumblinged": [], + "Scipio": ["M"], + "fortuneteller": ["S", "M"], + "thesis": ["M"], + "throughout": [], + "ceremonious": ["U", "Y"], + "alienists's": [], + "vaultersing": [], + "piggies's": [], + "rafter": ["M"], + "overdependent": [], + "Everest's": [], + "diapers": [], + "Vic": ["M"], + "latex's": [], + "verbatim": [], + "miscalculated": [], + "pension'sed": [], + "constipateds": [], + "hinterlands": [], + "smithy's": [], + "bigheartedness's": [], + "firmeder": [], + "clubbers": [], + "understood": [], + "vacationists": [], + "antisepsis's": [], + "Listerine": ["M"], + "neuter'sed": [], + "bookmarking": [], + "wheatgerm": [], + "basic's": [], + "leasebacks": [], + "corrugates": [], + "bureaucratically": [], + "vanquisher": ["M"], + "Prescott": ["M"], + "embryo's": [], + "Polk's": [], + "nicknaming": [], + "sounders": [], + "Trondheim": ["M"], + "squaws's": [], + "equability": ["M"], + "glade's": [], + "Onion": ["M"], + "haploid'ses": [], + "Desdemona's": [], + "RR": [], + "weasel": ["M", "D", "Y", "S", "G"], + "Titus": ["M"], + "Syrians": [], + "pother'sed": [], + "flappers's": [], + "tragedians": [], + "that's": [], + "preoccupations's": [], + "forcibly": [], + "Unionist": [], + "Hitachi": ["M"], + "sear'sed": [], + "ruminateds": [], + "preamblinged": [], + "dredger's": [], + "sibylline": [], + "disresection": [], + "relaxersing": [], + "shrinkabling": [], + "northwards": [], + "retry": [], + "backhand'sed": [], + "excreted": [], + "Hal's": [], + "newels": [], + "contentious": ["Y", "P"], + "newsgirl": ["S", "M"], + "sawyer's": [], + "practices's": [], + "wagoner": ["M"], + "Kauai": ["M"], + "collects": [], + "coracles's": [], + "Stael's": [], + "stiffs's": [], + "chiropractor's": [], + "rate's": [], + "Wahhabi": ["M"], + "moray's": [], + "xor": [], + "gratification": ["M"], + "rivet": ["M", "D", "R", "S", "Z", "G"], + "bridegroom": ["S", "M"], + "wiki'ses": [], + "Hamilcar": ["M"], + "sizinged": [], + "wonderland's": [], + "payola's": [], + "dioxin": ["S", "M"], + "generalissimo's": [], + "bombast": ["M"], + "dawn'sed": [], + "dominged": [], + "full'sed": [], + "colonists": [], + "shamrocks": [], + "diagonal'sly": [], + "wouldst": [], + "expunges": [], + "stranger": ["M"], + "shopliftings": [], + "Democrat": ["S", "M"], + "cartage": ["M"], + "zoomsing": [], + "dodge": ["D", "R", "S", "M", "Z", "G"], + "incorporate": ["A", "D", "S", "G", "N"], + "conk": ["M", "D", "R", "Z"], + "scalawag'ses": [], + "ejaculatingen": [], + "profoundness": ["M"], + "consensus'ses": [], + "chain's": [], + "disks": [], + "prioritizing": [], + "seems": [], + "Malone": ["M"], + "legwarmers": [], + "peckeder": [], + "minds": [], + "generals": [], + "Laurent": ["M"], + "milestone'ses": [], + "strangulatingen": [], + "relativists": [], + "ill's": [], + "singers": [], + "felling": [], + "prieder": [], + "flextime's": [], + "hoecake": ["S", "M"], + "Bobbi's": [], + "pharmacologist": ["S", "M"], + "guild": ["S", "Z", "M", "R"], + "slip": ["M", "S"], + "acridity": ["M"], + "granter's": [], + "trilobite": ["S", "M"], + "annoyingly": [], + "blowout's": [], + "underside": ["M", "S"], + "Verona's": [], + "pallidliness": [], + "yawn'sed": [], + "corespondent": ["M", "S"], + "adorableness": ["M"], + "scraggy": ["T", "R"], + "pensioner's": [], + "delicatessens's": [], + "contingency's": [], + "lightinged": [], + "viability": ["M"], + "thousand's": [], + "dramatizesing": [], + "bathrobe's": [], + "leviathan'ses": [], + "phonographic": [], + "postulate'sing": [], + "necessaries": [], + "snowstorms's": [], + "rumplies": [], + "answer's": [], + "queen's": [], + "homelands": [], + "Kristy": ["M"], + "promptitude's": [], + "slingshot's": [], + "mannishly": [], + "propound": [], + "nutrients": [], + "enrichesment": [], + "deskilling": [], + "flirt's": [], + "sachems's": [], + "cutey": ["S"], + "realities": [], + "hoovered": [], + "bluffness's": [], + "retinues's": [], + "corniness": ["M"], + "Sukarno": ["M"], + "keybinding": ["S"], + "nematodes's": [], + "inextricable": [], + "shinersing": [], + "assisted": ["U"], + "Anglicanism's": [], + "digger's": [], + "snazzier": [], + "imbibe": ["Z", "G", "D", "R", "S"], + "Purana": ["M"], + "selectness's": [], + "pkg": [], + "afoul": [], + "apoptotic": [], + "Josephine's": [], + "bluet's": [], + "gabs's": [], + "knack'ser": [], + "plot": ["M", "S"], + "embroils": [], + "plexus": ["M", "S"], + "flee": ["S"], + "Yankees's": [], + "augmentative": [], + "Barbara's": [], + "afire": [], + "Sontag": ["M"], + "Nova": ["M"], + "Hillel's": [], + "hyphenation's": [], + "transmutation": ["S", "M"], + "morals's": [], + "nonequivalents": [], + "furrow's": [], + "dpt": [], + "westerners's": [], + "concentrate'sing": [], + "sybarites's": [], + "superposed": [], + "cartilage's": [], + "packer": ["M", "S"], + "persistence": ["M"], + "rumba'sed": [], + "Corsican": ["M"], + "hajjis's": [], + "twill'sed": [], + "Livingstone": ["M"], + "rockabilly's": [], + "crawling": [], + "dogsled": ["S"], + "phase'sing": [], + "girtings": [], + "voided": [], + "business's": [], + "Musharraf": ["M"], + "cog's": [], + "diocese": ["M", "S"], + "stair": ["S", "M"], + "sequels's": [], + "perpendicularity's": [], + "undergone": [], + "replica": ["S", "M"], + "labials": [], + "misapprehendsed": [], + "Delmer": ["M"], + "whippings's": [], + "ducklings's": [], + "histamine": ["M", "S"], + "discussant": ["S", "M"], + "iota's": [], + "Dallas": ["M"], + "climax's": [], + "fleet": ["S", "T", "G", "M", "D", "R", "Y", "P"], + "drover's": [], + "embraceds": [], + "Fahd's": [], + "tics": [], + "strews": [], + "snowshoeing": [], + "Sheffield's": [], + "collaborateds": [], + "overpricesing": [], + "clank'sed": [], + "gradates": [], + "tentatively": [], + "protect": ["G", "V", "S", "D"], + "revertible": [], + "zest": ["M", "S"], + "loafer": ["M"], + "placement": ["E", "A", "S", "M"], + "enmities": [], + "lurid": ["P", "Y"], + "prequel": ["M", "S"], + "asks": [], + "lecher": ["M"], + "cities's": [], + "consecratingen": [], + "vulcanizeds": [], + "curd": ["M", "S"], + "virgule": ["M", "S"], + "accredit": ["S", "G", "D"], + "backhoe": ["M", "S"], + "stresses": [], + "blastoffs": [], + "airbase's": [], + "hostile": ["M", "Y", "S"], + "revamping": ["M"], + "goodwill": ["M"], + "ingratiateds": [], + "quiz's": [], + "ornateliness": [], + "birch'sed": [], + "Buddhist's": [], + "brickbats": [], + "burgeons": [], + "Ford": ["M"], + "bumbags": [], + "resells": [], + "weepiest": [], + "adulated": [], + "habitues": [], + "trimonthly": [], + "barley's": [], + "situating": [], + "shotgun": ["S", "M"], + "warded": [], + "torpedoing's": [], + "rampart": ["S", "M"], + "wassail'sed": [], + "hoodwinking": [], + "outbalanceds": [], + "toasters": [], + "rigidness's": [], + "callosity": ["S", "M"], + "roundness's": [], + "irises": [], + "putty": ["G", "D", "S", "M"], + "slicked": [], + "certainty": ["U", "S", "M"], + "Hans": ["M", "N"], + "pwning": [], + "nab": ["S"], + "avocation's": [], + "opposition's": [], + "marriageable": [], + "Ark's": [], + "Bohr's": [], + "analyzable": [], + "bitumen's": [], + "Bernice": ["M"], + "foaminess": ["M"], + "glove'sing": [], + "heathendom": ["M"], + "rankeder": [], + "bachelors's": [], + "dastard": ["M", "Y", "S"], + "strongly": [], + "elates": [], + "sprinklesings": [], + "Mendel's": [], + "deformation": [], + "Sadducee's": [], + "innovation's": [], + "nonfat": [], + "barroom'ses": [], + "ramified": [], + "Julie": ["M"], + "superman's": [], + "informality": [], + "mananas": [], + "creamily": [], + "shrines": [], + "clothespin": ["S", "M"], + "Everett's": [], + "stupendous": ["Y"], + "frowzinesser": [], + "superimposition": ["M"], + "plasterers": [], + "toxin": ["S", "M"], + "forty's": [], + "WW": [], + "bullfightersing": [], + "Browne": ["M"], + "oenophile's": [], + "cottonseeds": [], + "rototiller": ["M", "S"], + "Timor's": [], + "moth's": [], + "multiracial": [], + "combings": ["M"], + "twitchy": ["R", "T"], + "apparent": ["Y"], + "thongs's": [], + "Sondra": ["M"], + "knackered": [], + "bastardy's": [], + "Miocene's": [], + "vise's": [], + "Brock's": [], + "borroweder": [], + "bound's": [], + "nova's": [], + "kidded": [], + "fund": ["A", "M", "D", "G", "S"], + "hurtled": [], + "cursor's": [], + "Chernobyl": ["M"], + "ult": [], + "seeking": [], + "hod": ["S", "M"], + "ingested": [], + "analogizinged": [], + "overshooting": [], + "truncateds": [], + "persevering": [], + "bandiest": [], + "porno": ["M"], + "home": ["M", "Y", "Z", "G", "D", "R", "S"], + "Sherri's": [], + "turnpike'ses": [], + "dissolution": [], + "overdubs's": [], + "deliverance": ["M"], + "equivalencies's": [], + "deliver": ["A", "D", "G", "S"], + "surf'sed": [], + "disdain's": [], + "dupeder": [], + "ritzier": [], + "surveying's": [], + "fueled": [], + "genuflection": ["M", "S"], + "squashing's": [], + "Estonians's": [], + "suppeder": [], + "stuns": [], + "snuffer": ["M"], + "overjoying": [], + "harrows": [], + "Butterfingers": ["M"], + "robocall": ["S", "G", "M", "D"], + "roundel": ["S"], + "Nehru's": [], + "invaluable": [], + "Joey's": [], + "banality's": [], + "radioeding": [], + "swaggers": [], + "spatula's": [], + "puffer's": [], + "butterfat's": [], + "slouches": [], + "mugwump'ses": [], + "preponderantly": [], + "superlative's": [], + "sesames": [], + "pontoons's": [], + "Samarkand": ["M"], + "Conner's": [], + "sienna": ["M"], + "prater's": [], + "Masada's": [], + "erodible": [], + "applicable": ["I"], + "woodchuck": ["M", "S"], + "slaughter's": [], + "executive": ["S", "M"], + "Lyman's": [], + "easygoing": [], + "impinging": [], + "concisely": [], + "Hines's": [], + "grizzlies's": [], + "vol": ["S"], + "Mixtec": ["M"], + "siccing": [], + "misinformation": ["M"], + "participle'ses": [], + "telegram's": [], + "sickrooms": [], + "kibbutz's": [], + "jousters": [], + "overexciting": [], + "optioning": [], + "wellness's": [], + "advise": ["L", "D", "R", "S", "Z", "G", "B"], + "head": ["M", "D", "R", "Z", "G", "J", "S"], + "Allen": ["M"], + "top's": [], + "dynamic": ["M", "S"], + "stumped": [], + "demolishesing": [], + "riverside": ["M", "S"], + "cutlet's": [], + "lever'sed": [], + "opal's": [], + "gizmo": ["S", "M"], + "nightstands's": [], + "borough": ["M"], + "jokers": [], + "trammeling's": [], + "parallelisms": [], + "buttonholes's": [], + "gaffs": [], + "aghast": [], + "resident's": [], + "typists": [], + "done": ["F", "A", "U"], + "wedges": [], + "commonality": ["S"], + "medicos": [], + "suave": ["R", "Y", "T", "P"], + "groveleder": [], + "conceptualizes": [], + "tithes": [], + "pronghorn's": [], + "pullovers's": [], + "palliating": [], + "hying": [], + "moderator's": [], + "Dudley's": [], + "Harrods's": [], + "juggle": ["M", "Z", "G", "D", "R", "S"], + "irruptions": [], + "Fizeau": ["M"], + "wherries": [], + "Pribilof's": [], + "appropriators": [], + "snowbank's": [], + "chis": [], + "latte's": [], + "grace'sing": [], + "cutlery": ["M"], + "spics": [], + "pancakes's": [], + "most's": [], + "dams's": [], + "significations": [], + "ceramic": ["S", "M"], + "undertow": ["S", "M"], + "rollmops": [], + "dogtrotted": [], + "epidurals": [], + "dodging": [], + "metiers": [], + "atria": [], + "Kwangju's": [], + "alienable": ["I", "U"], + "blockade": ["M", "Z", "G", "D", "R", "S"], + "scalawag": ["M", "S"], + "testifiers": [], + "Margret's": [], + "bribed": [], + "robocalled": [], + "patch": ["E", "G", "M", "D", "S"], + "pansies": [], + "gaunterness": [], + "procrastinator": ["M", "S"], + "argot": ["M", "S"], + "embroidering": [], + "lambskins": [], + "tablespoon's": [], + "crabber": ["S", "M"], + "alarm": ["G", "M", "D", "S"], + "subterfuge": ["S", "M"], + "strumming": [], + "dogmatist": ["S", "M"], + "hoard's": [], + "Monet": ["M"], + "Mesabi's": [], + "altars": [], + "coronal": ["M", "S"], + "biz": ["M"], + "rewarm": ["G", "S", "D"], + "Stilton": ["S", "M"], + "malignity": ["M"], + "spenderers": [], + "mores's": [], + "idyll's": [], + "daredevilry's": [], + "bladed": [], + "roastsings": [], + "hosted": [], + "relish'sed": [], + "yell": ["M", "D", "S", "G"], + "fossilizes": [], + "cuts": [], + "gesturinged": [], + "pone": ["M", "S"], + "repellents": [], + "knots": [], + "potties": [], + "masons's": [], + "assonance's": [], + "needy": ["P", "T", "R"], + "Anabaptist's": [], + "awhile": [], + "philological": [], + "roller": ["M"], + "barkeep'ser": [], + "laryngitis": ["M"], + "swivelings": [], + "craze's": [], + "encyclopedic": [], + "Nevadans": [], + "appraisal's": [], + "tenth": ["M", "Y"], + "tooleding": [], + "cowbell'ses": [], + "jumble": ["M", "G", "D", "S"], + "slumbering": [], + "nattier": [], + "poetess'ses": [], + "embittering": [], + "serenadeds": [], + "dialyzes": [], + "mispronunciations": [], + "tomfooleries": [], + "Lindy": ["M"], + "fossilization": ["M"], + "arduously": [], + "stonewalls": [], + "diffuse": ["D", "S", "Y", "G", "N", "V", "P"], + "miscasts": [], + "candidacy": ["S", "M"], + "Grant's": [], + "logins": [], + "caroming": [], + "incubation": ["M"], + "carveder": [], + "scotch'sed": [], + "underwhelmeding": [], + "grooves": [], + "oracle": ["S", "M"], + "IDs's": [], + "tuckered": [], + "auctioneding": [], + "bream": ["M", "S"], + "magazines's": [], + "enciphers": [], + "smasher": ["M"], + "obs": [], + "worn": ["U"], + "fulcrums": [], + "twin's": [], + "prerogative": ["S", "M"], + "baseboard's": [], + "ichthyologists": [], + "showplaces's": [], + "superstar's": [], + "monolinguals": [], + "Shakespeare": ["M"], + "yardarm'ses": [], + "club's": [], + "TBA": [], + "model": ["Z", "G", "S", "J", "M", "D", "R"], + "shortening's": [], + "bus'ses": [], + "nonexistence": ["M"], + "glycerin's": [], + "creaminess's": [], + "triangulation's": [], + "humblers": [], + "McGovern": ["M"], + "Thanksgivings": [], + "twaddle": ["M", "Z", "G", "D", "R", "S"], + "tastiest": [], + "biomass's": [], + "screamersing": [], + "bulimia's": [], + "nestlingsed": [], + "pauperized": [], + "interlude": ["M", "G", "D", "S"], + "misunderstood": [], + "termed": [], + "envoys's": [], + "julienne": [], + "rite": ["M", "S"], + "chidinged": [], + "sympathizersing": [], + "vulgarizeder": [], + "chase's": [], + "spanners": [], + "lodging": ["M"], + "provocative": ["P", "Y"], + "baldric": ["S", "M"], + "tissues": [], + "exam's": [], + "glacier's": [], + "overstretch": ["G", "D", "S"], + "Augustine's": [], + "doorman's": [], + "humdinger's": [], + "hydraulics's": [], + "subarea's": [], + "damaskeding": [], + "imperturbably": [], + "pantyliner": ["M"], + "prerecord": ["G", "S", "D"], + "Erika": ["M"], + "birdsong": [], + "Genghis": ["M"], + "sharkskin's": [], + "worktables": [], + "expurgates": [], + "seamen": [], + "exigencies": [], + "overfull": [], + "shortest": [], + "northwest": ["Z", "M", "R"], + "blackjacked": [], + "giggled": [], + "ids": [], + "carbonationed": [], + "generics": [], + "stucco": ["M", "D", "G"], + "Eunice": ["M"], + "increment's": [], + "mot": ["S", "M"], + "void's": [], + "castoff": ["S", "M"], + "cashes": [], + "envenom": ["S", "D", "G"], + "dallied": [], + "cruelty's": [], + "selenographer'ses": [], + "swill's": [], + "recoil's": [], + "stupid'ser": [], + "Falasha's": [], + "grout": ["S", "G", "M", "D"], + "Danielle's": [], + "terrifying": ["Y"], + "oustersing": [], + "sluggard'ses": [], + "solvents": [], + "creased": [], + "communicating": [], + "snowboard's": [], + "lowboy": ["M", "S"], + "favors": [], + "Stockholm": ["M"], + "circumstancing": [], + "secretory": [], + "Akiva": ["M"], + "exerciseder": [], + "abstractedliness": [], + "purview": ["M"], + "hunting's": [], + "thermally": [], + "germ": ["M", "S"], + "shoulder's": [], + "Lilly": ["M"], + "nonstriking": [], + "fistula": ["S", "M"], + "Crimean's": [], + "liniments's": [], + "gatepost'ses": [], + "hemostat's": [], + "tic": ["S", "M"], + "predator'ses": [], + "molehills's": [], + "VOA": [], + "lambastinged": [], + "rugs": [], + "newsgirl's": [], + "Nesselrode's": [], + "grenade's": [], + "Beverly's": [], + "indent": [], + "ostracized": [], + "Herbart's": [], + "belling": ["A"], + "confection's": [], + "blankest": [], + "finalization": ["M"], + "makeup's": [], + "gyving": [], + "quarter's": [], + "trifectas's": [], + "chaperons": [], + "guzzle": ["D", "R", "S", "Z", "G"], + "droopier": [], + "weeded": [], + "vane'ses": [], + "demurral's": [], + "Andorra's": [], + "pear's": [], + "snipes": [], + "skidpan": ["S"], + "UBS": ["M"], + "misdemeanor": ["M", "S"], + "treasure": ["D", "R", "S", "M", "Z", "G"], + "thoroughfare'ses": [], + "obscuresly": [], + "bonnet'ses": [], + "browsing": [], + "testers": [], + "origins": [], + "rodeo": ["M", "S"], + "tankard": ["M", "S"], + "miringed": [], + "sleeps": [], + "permuteds": [], + "bubble's": [], + "Tyndall": ["M"], + "Nukualofa": ["M"], + "riposte'sing": [], + "travailed": [], + "spinach's": [], + "vodkas": [], + "bleachersing": [], + "obverse's": [], + "position'ses": [], + "medicine's": [], + "sweepstakes's": [], + "glaziers": [], + "Flintstones": ["M"], + "elongatingen": [], + "elan": ["M"], + "shantung's": [], + "Huey": ["M"], + "dickerens": [], + "floe's": [], + "phonecards": [], + "sparkling": [], + "witter": ["S", "G", "D"], + "predictability's": [], + "liquidizers": [], + "calderas's": [], + "script'sed": [], + "luminously": [], + "detergents": [], + "scintillates": [], + "balcony": ["S", "M"], + "poster's": [], + "bullwhip": ["S"], + "maestros's": [], + "proprietors": [], + "warbleder": [], + "enshrinement": ["M"], + "schoolbooks's": [], + "ambushing's": [], + "hotheadedly": [], + "crenelating": [], + "roamersing": [], + "climes": [], + "harmoniously": [], + "introverteds": [], + "onlooker": ["S", "M"], + "Galatians": ["M"], + "inflammations's": [], + "semivowel": ["S", "M"], + "thickset": [], + "Kelsey": ["M"], + "subjugateds": [], + "coldblooded": [], + "inhalator'ses": [], + "referable": [], + "peignoir": ["S", "M"], + "coercesers": [], + "gladiolas": [], + "Locke": ["M"], + "synoptic": [], + "recondite": [], + "etas": [], + "Herrick's": [], + "passkey": ["M", "S"], + "embossers": [], + "wagtails's": [], + "Westerner": [], + "refashions": [], + "gushersing": [], + "decagon's": [], + "woof'sed": [], + "generation's": [], + "divine's": [], + "innervating": [], + "evaluatesens": [], + "spectatesing": [], + "voluminousliness": [], + "sim": ["S", "M"], + "fineds": [], + "slothfulliness": [], + "W'sed": [], + "progenitors": [], + "keyboarded": [], + "shrinkage": ["M"], + "syringeds": [], + "sidewalks": [], + "hoodlum": ["S", "M"], + "cultist's": [], + "ladles's": [], + "detectors's": [], + "gingersnap's": [], + "timelines": [], + "devastates": [], + "variegate": ["D", "S", "G", "N"], + "transvestite'ses": [], + "Coloradans's": [], + "dickering": [], + "ghostwriting": [], + "stockbreeder'ses": [], + "Narnia": ["M"], + "bastard'ses": [], + "cubs": [], + "untrimmed": [], + "leviathans": [], + "orgies's": [], + "grating's": [], + "eminently": [], + "circlinged": [], + "Phoenicia": ["M"], + "Zambia's": [], + "lattes's": [], + "businessman": ["M"], + "gratingings": [], + "LBJ": ["M"], + "girdeder": [], + "dazzled": [], + "whispersers": [], + "breadbasket's": [], + "open": ["Z", "T", "G", "J", "P", "M", "D", "R", "Y", "S"], + "caddishness's": [], + "interpreted": ["U"], + "outfitting": [], + "swan's": [], + "chin": ["S", "M"], + "nachos": [], + "chivalrous": ["P", "Y"], + "entombingment": [], + "tossing": [], + "Reagan": ["M"], + "hospitality": ["M"], + "glistersing": [], + "Hal": ["S", "M"], + "serial": ["S", "M", "Y"], + "Mr's": [], + "termedly": [], + "reuncapping": [], + "Hart": ["M"], + "inanities": [], + "photoengravings": [], + "nippinesser": [], + "whereon": [], + "coppers": [], + "roods": [], + "Maputo": ["M"], + "memorization's": [], + "frontages": [], + "showgrounds": [], + "insulting": ["Y"], + "tilling": [], + "blazoning": [], + "spillways": [], + "elongation's": [], + "Mikoyan": ["M"], + "vodka's": [], + "Azazel": ["M"], + "Hangzhou": ["M"], + "nerved": [], + "sculpture's": [], + "burnouts": [], + "noiselessnessly": [], + "Ripley": ["M"], + "blouseds": [], + "pursuing": [], + "eighteen": ["M", "H", "S"], + "protegee": ["S"], + "Clarke's": [], + "fatback's": [], + "brogue": ["S", "M"], + "Vulcan's": [], + "valises's": [], + "globalization's": [], + "Fosse's": [], + "frizzlying": [], + "Galahads": [], + "yelloweder": [], + "wasteful": ["P", "Y"], + "chummed": [], + "peerages": [], + "minions": [], + "ridiculed": [], + "spillover": ["S", "M"], + "dangleder": [], + "Novokuznetsk's": [], + "transverse's": [], + "wrist's": [], + "fusees's": [], + "Farrakhan": ["M"], + "audiophile": ["S", "M"], + "Vishnu's": [], + "insureder": [], + "tong's": [], + "Johnston's": [], + "hibernators": [], + "rivaling": [], + "goslings": [], + "redoubtable's": [], + "peppering's": [], + "overreacted": [], + "mobilizing": [], + "rednecks": [], + "amnesic's": [], + "Beyer's": [], + "astrologers": [], + "gather": ["S", "J", "Z", "G", "M", "D", "R"], + "vendetta's": [], + "coweder": [], + "consider": ["A", "G", "S", "D"], + "surrendersing": [], + "goners": [], + "dribble": ["M", "Z", "G", "D", "R", "S"], + "daffodils": [], + "withdrawing": [], + "ossification's": [], + "reweaves": [], + "flatworm": ["S", "M"], + "biggies": [], + "neutralist's": [], + "semicolons": [], + "television": ["M"], + "modal": ["S", "M"], + "Beefaroni": ["M"], + "documents": [], + "mediocrity's": [], + "pigeonholeds": [], + "spectroscopes": [], + "pitcheder": [], + "Palomar's": [], + "scotched": [], + "incognitos": [], + "furtheringed": [], + "Darin": ["M"], + "bowling": ["M"], + "electricity": ["M"], + "bivalve": ["S", "M"], + "bankcards": [], + "minuet's": [], + "nightspot'ses": [], + "clickeder": [], + "tattooed": [], + "customizes": [], + "stetson's": [], + "eyeliner": ["M", "S"], + "ontogeny's": [], + "patrolwomen": [], + "movie": ["S", "M"], + "ingrown": [], + "reactionary's": [], + "cockerel": ["S", "M"], + "numerator": ["M", "S"], + "Cunard's": [], + "transients": [], + "creamy": ["R", "P", "T"], + "ensnarement": ["M"], + "intercollegiate": [], + "Bjerknes's": [], + "daubsers": [], + "fascia's": [], + "remedied": [], + "blackamoor": ["M", "S"], + "mumps": ["M"], + "Bethany's": [], + "Shelly's": [], + "fruitlessness": ["M"], + "super's": [], + "Lollard": ["M"], + "viticulturist'ses": [], + "spousal": ["M", "S"], + "exultsed": [], + "appreciation's": [], + "tagliatelle": [], + "treeless": [], + "casserole's": [], + "retribution'ses": [], + "commodious": ["Y"], + "lusts": [], + "revilement's": [], + "shirt'sed": [], + "grubbiness's": [], + "squirm'sed": [], + "poplar's": [], + "loopier": [], + "cloying": ["Y"], + "arduousness's": [], + "ambrosia": ["M"], + "suddenness's": [], + "Buchwald's": [], + "Athabaskan": ["S", "M"], + "foreknowledge's": [], + "razeds": [], + "involved": [], + "chiropractics's": [], + "Assad's": [], + "MBA": ["M"], + "heart": ["S", "M"], + "panoramas's": [], + "dipsomaniac'ses": [], + "folklorist'ses": [], + "remonstrants's": [], + "trimmers's": [], + "slaw's": [], + "emphasizinged": [], + "thruway": ["M", "S"], + "subscripts": [], + "agonist": ["S"], + "cuteness": ["M"], + "stagger": ["M", "D", "G", "S"], + "jellyfish's": [], + "postmortems's": [], + "Lucien's": [], + "sofa'ses": [], + "squib": ["S", "M"], + "unbreakable": [], + "quaked": [], + "Schneider": ["M"], + "interfacing": [], + "geosyncline's": [], + "tufted": [], + "produceder": [], + "grievances": [], + "lunges": [], + "Saskatoon's": [], + "pastor's": [], + "creakierness": [], + "sync": ["M", "D", "S", "G"], + "decampment": ["M"], + "SUSE": ["M"], + "canyon'sing": [], + "proprietary": ["S", "M"], + "surname's": [], + "antinuclear": [], + "lolcats": [], + "seniority's": [], + "stranglehold": ["S", "M"], + "flavorings": [], + "Apr": ["M"], + "embarkeds": [], + "filly": ["S", "M"], + "bunkhouses's": [], + "weatherstripped": [], + "flickered": [], + "slasher's": [], + "nail": ["M", "D", "S", "G"], + "dislodginged": [], + "Alissa's": [], + "swishing's": [], + "Grosz": ["M"], + "irrigated": [], + "homicidal": [], + "headpins's": [], + "floorboard's": [], + "emigration's": [], + "motorboat": ["M", "S"], + "jocosenessly": [], + "Wigner's": [], + "thumbnail's": [], + "comptroller's": [], + "shovelfuls": [], + "smudged": [], + "aborigine": ["S", "M"], + "buildups's": [], + "midwifed": [], + "Revlon's": [], + "misc": [], + "overtone'ses": [], + "verdigris": ["G", "M", "D", "S"], + "Elbrus": ["M"], + "pluralism's": [], + "productions": [], + "shrimper": [], + "ballroom's": [], + "coinage": ["S", "M"], + "juggler": ["M"], + "formula's": [], + "solemnifying": [], + "litigate": ["D", "S", "G", "N"], + "Mitchell": ["M"], + "Faisal's": [], + "steakhouses": [], + "caliphate": ["M", "S"], + "queer": ["P", "T", "G", "M", "D", "R", "Y", "S"], + "sombernessly": [], + "sniffier": [], + "satire": ["S", "M"], + "passerby's": [], + "urinalysis's": [], + "embassy's": [], + "Hank's": [], + "divesteding": [], + "cellars": [], + "surreptitiously": [], + "urchins": [], + "jigs": [], + "hurrah'sed": [], + "monsoon's": [], + "romancer's": [], + "bucketful'ses": [], + "dredgersing": [], + "muskellunge'ses": [], + "nonconformist'ses": [], + "Algerian's": [], + "graveder": [], + "Goth's": [], + "raggediest": [], + "bout'ses": [], + "elan's": [], + "steelworkers": [], + "borscht": ["M"], + "Christians": [], + "nursemaid'ses": [], + "gives": [], + "monetized": [], + "Marks's": [], + "glee's": [], + "solacing": [], + "awful": ["Y", "P"], + "screening's": [], + "Capetown's": [], + "effectually": [], + "misquoted": [], + "Marvell": ["M"], + "Zoroastrian": ["M", "S"], + "regaling": [], + "supernumerary": ["S", "M"], + "radiophones's": [], + "sophisticate'sing": [], + "beanies's": [], + "philately": ["M"], + "moisturizer": ["M"], + "lilt": ["M", "D", "S", "G"], + "multiprocessors's": [], + "riders": [], + "splashily": [], + "curators": [], + "maladroitnessly": [], + "enthralled": [], + "claimant's": [], + "canonizesing": [], + "decapitationsing": [], + "brownie's": [], + "Tuvaluan": [], + "Vilma": ["M"], + "padre": ["S", "M"], + "talliers": [], + "gallantry": ["M"], + "Newfoundland's": [], + "Neruda": ["M"], + "appurtenances": [], + "rejig": [], + "fillet": ["M", "D", "G", "S"], + "odometer's": [], + "bouncer's": [], + "Humberto's": [], + "slighterly": [], + "invitees": [], + "darner's": [], + "enamelings": [], + "grabbiest": [], + "neatened": [], + "Lakeisha": ["M"], + "freightersing": [], + "Keaton": ["M"], + "wiring's": [], + "Waite": ["M"], + "Giovanni": ["M"], + "galvanize": ["D", "S", "G"], + "meetings": [], + "Florentine's": [], + "rations's": [], + "phonographs": [], + "hacktivist's": [], + "undesirably": [], + "Cote": ["M"], + "Caribbeans": [], + "punchers": [], + "veereding": [], + "covereds": [], + "duos's": [], + "adjournments's": [], + "radiationens": [], + "condensersing": [], + "condenses": [], + "tweeter's": [], + "wonkier": [], + "allocate": ["A", "D", "S", "G", "N"], + "hibernationed": [], + "colloq": [], + "gamblersing": [], + "Imodium's": [], + "Asturias": ["M"], + "blare'sing": [], + "causerie's": [], + "whinnieds": [], + "pulseds": [], + "illuminating": ["Y"], + "payday": ["M", "S"], + "transubstantiation's": [], + "coy": ["T", "P", "R", "Y"], + "composedly": [], + "electrocutingen": [], + "quarterfinal's": [], + "caddishliness": [], + "mistrusted": [], + "compassing's": [], + "bellows": [], + "endometriosis": [], + "describers": [], + "kinetic": ["S"], + "tsetses": [], + "stuntmen": [], + "hammertoe": ["M", "S"], + "lobotomizesing": [], + "emotingen": [], + "heartfelt": [], + "counterbalance'sing": [], + "feverishness": ["M"], + "strange": ["P", "R", "Y", "Z", "T"], + "scapegoating's": [], + "highbrow's": [], + "shorted": [], + "detachinged": [], + "speareding": [], + "riverbeds": [], + "flatmate": ["S"], + "Brummel": ["M"], + "homeless's": [], + "hooligan": ["M", "S"], + "scoff's": [], + "runaway'ses": [], + "crucifying": [], + "rile": ["G", "D", "S"], + "Imogene's": [], + "verged": [], + "excavates": [], + "grousing": [], + "clipboards": [], + "sacrifice'sing": [], + "susceptibilities": [], + "prejudge": ["G", "D", "S"], + "oubliette's": [], + "particulate": ["S", "M"], + "presage's": [], + "corset's": [], + "amounted": [], + "payoffs": [], + "whittler": ["M"], + "refrained": [], + "minces": [], + "gymnastic": ["S"], + "idealizing": [], + "genealogist'ses": [], + "sapper": ["S"], + "battens's": [], + "criticized": [], + "guilders's": [], + "liturgist's": [], + "disarrange": [], + "bisexual": ["M", "Y", "S"], + "evisceration's": [], + "converter": ["S", "M"], + "provoker's": [], + "decimates": [], + "spewerers": [], + "stairwells": [], + "Clair's": [], + "antlered": [], + "knead": ["S", "Z", "G", "D", "R"], + "syllabicateds": [], + "detestation": ["M"], + "racks": [], + "peninsular": [], + "barkinged": [], + "torturersing": [], + "mucus": ["M"], + "vestryman": ["M"], + "gathers": [], + "pained": [], + "seminal": [], + "onions's": [], + "bookcase": ["M", "S"], + "decaffeinating": [], + "predictable": ["U"], + "limitless": ["P"], + "multinationals's": [], + "disgruntled": [], + "cygnet'ses": [], + "Wonderbra": ["M"], + "cub": ["Z", "G", "S", "M", "D", "R"], + "Galen's": [], + "tuques's": [], + "vetches": [], + "Smollett": ["M"], + "Creeks": [], + "evens": [], + "emaciatingen": [], + "plebiscite'ses": [], + "creates": [], + "Haynes's": [], + "Joule's": [], + "defamation": ["M"], + "Tanisha's": [], + "declaration'ses": [], + "nonprofessional": ["S", "M"], + "ME": [], + "mastoid": ["S", "M"], + "clarifieds": [], + "rationalist": ["S", "M"], + "relieve": ["Z", "G", "D", "R", "S"], + "dock": ["M", "D", "R", "Z", "G", "S"], + "husbands": [], + "maverick": ["S", "M"], + "taigas": [], + "curves": [], + "mascot's": [], + "carcinoma": ["M", "S"], + "misrepresentation": ["M", "S"], + "erythromycin": [], + "oarsman": ["M"], + "dumbwaiters's": [], + "versificationed": [], + "birthdays": [], + "electorate": ["M", "S"], + "squish'sed": [], + "camel": ["M", "S"], + "chastenings": [], + "sailfish": ["M", "S"], + "addictive": [], + "prescribes": [], + "visualizeder": [], + "WV": [], + "northeast": ["M", "R", "Z"], + "navigatingen": [], + "crisps": [], + "advocated": [], + "girdles": [], + "populism": ["M"], + "limber": ["U", "D", "S", "G"], + "Nathaniel": ["M"], + "Jolson's": [], + "asphyxiation": ["M"], + "fendeder": [], + "serviceable": [], + "chagrin": ["G", "S", "M", "D"], + "beers": [], + "farthing": ["S", "M"], + "buttress'sed": [], + "cauldron": ["M", "S"], + "angioplasties": [], + "wordinesser": [], + "saunaing": [], + "schoolmarm's": [], + "meteder": [], + "Saki": ["M"], + "jaybird's": [], + "tiles": [], + "mode'ses": [], + "zingier": [], + "psychedelia": [], + "stinkbug's": [], + "Gil": ["M"], + "all": ["M"], + "tipsters": [], + "razzmatazz's": [], + "muleskinner'ses": [], + "Evenki's": [], + "grandaunt": ["M", "S"], + "pursuant": [], + "rationalizeds": [], + "reviveds": [], + "holocausts's": [], + "ungodly": ["T"], + "collectives": [], + "acmes": [], + "password'ses": [], + "decagons": [], + "hinteder": [], + "robuster": [], + "salmon": ["S", "M"], + "enviable": ["U"], + "ides": ["M"], + "grovelers": [], + "principality's": [], + "sneaks": [], + "leathery": [], + "Chayefsky": ["M"], + "encountered": [], + "rowdyism's": [], + "trafficker": ["S", "M"], + "Hickok's": [], + "hardness": ["M"], + "waylaysers": [], + "declined": [], + "dourness's": [], + "xerography's": [], + "husbandman": ["M"], + "projectiles's": [], + "sine": ["M", "S"], + "statuses": [], + "sublimed": [], + "Asquith's": [], + "sexagenarian's": [], + "angelica's": [], + "ISS": [], + "acetate'ses": [], + "roughnecking's": [], + "answers": [], + "Mobil's": [], + "antiphonals": [], + "reflationsed": [], + "obscurantism's": [], + "starching": [], + "briskets": [], + "watch": ["B", "Z", "G", "M", "D", "R", "S"], + "recirculate": [], + "shoot'ser": [], + "escort's": [], + "whets": [], + "yogis": [], + "peeked": [], + "Reinaldo's": [], + "sublimation's": [], + "axletrees": [], + "separators": [], + "roarer": ["M"], + "preferment's": [], + "marginals": [], + "upstroke's": [], + "disproportion": [], + "catchments": [], + "inflatesing": [], + "spiracle's": [], + "oaf": ["S", "M"], + "arterial": [], + "galumpheding": [], + "beriberi": ["M"], + "encasing": [], + "iTunes": ["M"], + "lambskin's": [], + "axles": [], + "quarterback'sed": [], + "unskilled": [], + "fraternized": [], + "dagger": ["M", "S"], + "Yb": ["M"], + "Brain's": [], + "vial's": [], + "decryption": [], + "lovebird": ["S", "M"], + "Draconian's": [], + "subvention's": [], + "courtesy's": [], + "tiniest": [], + "leak's": [], + "covetsed": [], + "gadget": ["S", "M"], + "fretfully": [], + "mussier": [], + "Gonzalo": ["M"], + "repressivenessly": [], + "crabgrass": ["M"], + "homburgs's": [], + "Appaloosa's": [], + "affirmative'sly": [], + "roans": [], + "Jana": ["M"], + "extravaganzas": [], + "colonized": [], + "Lexus": ["M"], + "antonyms": [], + "kvetching's": [], + "released": ["U"], + "plainerly": [], + "Byblos": ["M"], + "yielding's": [], + "knob": ["M", "S"], + "jacaranda's": [], + "sybarite": ["S", "M"], + "proficientlies": [], + "altruists's": [], + "volcano's": [], + "pleasure": ["M", "G", "D", "S", "B"], + "hacked": [], + "colonize": ["C", "A", "G", "S", "D"], + "Carolingian's": [], + "tamp": ["Z", "G", "D", "R", "S"], + "citadel's": [], + "munchkins": [], + "investigatesens": [], + "classifying": [], + "loggers's": [], + "nationalized": [], + "scour": ["D", "R", "S", "Z", "G"], + "putsch": ["M", "S"], + "Erhard's": [], + "Agrippina": ["M"], + "foolish": ["Y", "P"], + "millraces": [], + "tarriest": [], + "humus": ["M"], + "renders": [], + "eyepieces": [], + "Eddy's": [], + "Judith's": [], + "physiognomy": ["S", "M"], + "damnably": [], + "urinate": ["G", "N", "D", "S"], + "Stefanie": ["M"], + "dissension": ["S", "M"], + "halos": [], + "Marines": [], + "laddish": ["P"], + "shovelfuls's": [], + "Soyinka's": [], + "ferrous": [], + "correlates's": [], + "nominatives's": [], + "counterpane": ["S", "M"], + "hurrieds": [], + "giveback'ses": [], + "welkin's": [], + "portlier": [], + "cruftsed": [], + "squawk": ["S", "Z", "G", "M", "D", "R"], + "zoster": [], + "cruder's": [], + "annexation's": [], + "infringement": ["M", "S"], + "densities": [], + "weightiest": [], + "subjoineds": [], + "quiescence's": [], + "polities": [], + "Weyden's": [], + "oh": ["M"], + "vocable": ["M", "S"], + "likelihoods": [], + "Hottentot": ["S", "M"], + "filament": ["M", "S"], + "hobgoblin'ses": [], + "healer": ["M"], + "brainwave": ["S"], + "derangement's": [], + "jingle": ["D", "S", "M", "G"], + "adornmenting": [], + "Singaporeans": [], + "melons": [], + "sickles": [], + "option'sed": [], + "stouterly": [], + "pertness's": [], + "huntsmen": [], + "acumen's": [], + "calamari": ["S", "M"], + "McLuhan": ["M"], + "Baedeker": ["M", "S"], + "retrained": [], + "putter": ["M", "D", "R", "Z", "G"], + "conditionals": [], + "watching": [], + "acreage'ses": [], + "lovesick": [], + "jaywalking's": [], + "transformeder": [], + "cachepots": [], + "krill's": [], + "dunghills": [], + "murder's": [], + "cartloads's": [], + "comporting": [], + "ranters": [], + "immobility's": [], + "apocalypse": ["S", "M"], + "moodinesser": [], + "Daphne's": [], + "leach": ["D", "S", "G"], + "showboateding": [], + "optimizesing": [], + "unthinkingly": [], + "perpetuity's": [], + "cremated": [], + "Xenakis": ["M"], + "hygienic": ["U"], + "fidget's": [], + "psychotropic'ses": [], + "Debby": ["M"], + "paraffin's": [], + "fish's": [], + "mortise's": [], + "Thames's": [], + "vacuum'sed": [], + "aftermaths": [], + "leasers": [], + "trucks": [], + "monumentally": [], + "Sequoya": ["M"], + "atherosclerosis": ["M"], + "buy'ser": [], + "rottenness's": [], + "whooshed": [], + "tingled": [], + "generalists": [], + "resultant's": [], + "eccentricities": [], + "croissant": ["M", "S"], + "snafus's": [], + "endgame": ["S"], + "reach": ["M", "D", "S", "G", "B"], + "topplinged": [], + "sweep'ser": [], + "budges": [], + "translateds": [], + "Bruneian": ["M", "S"], + "impaled": [], + "petrodollars": [], + "naturalize": ["D", "S", "G"], + "gallery's": [], + "hustle's": [], + "washiest": [], + "guildhalls": [], + "gutlessness": ["M"], + "Poussin": ["M"], + "tail'sing": [], + "starlets": [], + "Melville": ["M"], + "Sevastopol": ["M"], + "panelists": [], + "defendant": ["S", "M"], + "truth": ["Z", "M", "R"], + "mutative": [], + "overeaten": [], + "menstruate": ["G", "N", "D", "S"], + "Sorbonne": ["M"], + "chase": ["M", "Z", "G", "D", "R", "S"], + "pardoning's": [], + "lumpierness": [], + "bidding": ["M"], + "noun'ses": [], + "Domingo's": [], + "bohemian's": [], + "villi": [], + "throughput": ["M"], + "strawberry": ["S", "M"], + "keen'sed": [], + "childminder": ["S"], + "swoop's": [], + "tarted": [], + "fourfold": [], + "Sikkimese": ["M"], + "browned": [], + "pioneer'sed": [], + "heartlands": [], + "maul'sed": [], + "sonograms": [], + "expositions's": [], + "tinkerers": [], + "dashikis": [], + "unsecured": [], + "asseveratesing": [], + "furn": [], + "expletive": ["M", "S"], + "chardonnay's": [], + "calabooses": [], + "lucked": [], + "BSDs": [], + "mill": ["M", "D", "R", "S", "Z", "G", "J"], + "posher": [], + "tooling": [], + "nylons": ["M"], + "Montana's": [], + "grooming's": [], + "jig": ["A", "S"], + "Atonement": [], + "suffered": [], + "mourninged": [], + "faults's": [], + "overstay": ["D", "S", "G"], + "wavelets": [], + "binman": [], + "coreligionists": [], + "fleeterly": [], + "Grunewald": ["M"], + "whispered": [], + "grassland's": [], + "Omar": ["M"], + "glassesing": [], + "segregationists": [], + "ecologists": [], + "fornicating": [], + "hexadecimals": [], + "Eumenides": ["M"], + "aggressor": ["S", "M"], + "sensitivity": ["I", "M"], + "joyed": [], + "dreadnought'ses": [], + "deputation's": [], + "retrospectives": [], + "worshiped": [], + "outscoringed": [], + "cliche'sed": [], + "fulminated": [], + "jukeboxes": [], + "probably": [], + "GUI": ["M"], + "Josiah's": [], + "unlawful": [], + "groundbreaking'ses": [], + "scrambles": [], + "bimetallism's": [], + "grist": ["M", "Y"], + "exhortation's": [], + "mkay": [], + "mustily": [], + "rejuvenatingen": [], + "poignantly": [], + "veins": [], + "billion's": [], + "boulders": [], + "jawlines": [], + "inquire": ["Z", "G", "D", "R"], + "pictorials": [], + "judiciaries": [], + "puzzle": ["M", "Z", "G", "D", "R", "S", "L"], + "crises": [], + "Jorge": ["M"], + "barges": [], + "behind": ["M", "S"], + "omniscience's": [], + "dung's": [], + "sardine'ses": [], + "earthwards": [], + "characterization'ses": [], + "Matt's": [], + "tyrannosaur'ses": [], + "manageable": ["U"], + "Erna's": [], + "poultice's": [], + "sturgeons": [], + "chaffed": [], + "puppet'ses": [], + "Peary": ["M"], + "holograms": [], + "nonfood": ["M"], + "fifteen's": [], + "emptiers": [], + "supplicates": [], + "progressiveness": ["M"], + "boarders": [], + "calcimine'sing": [], + "punchbags": [], + "Polish": ["M"], + "zoologically": [], + "chateaux": [], + "skycaps": [], + "webbed": [], + "Mathias's": [], + "quayside": ["S"], + "nonconformism": [], + "denouncements's": [], + "bur's": [], + "desideratum's": [], + "Berta": ["M"], + "somnolent": [], + "lunchtime'ses": [], + "snipe's": [], + "tidiness's": [], + "Elijah's": [], + "missilery's": [], + "Levi": ["S", "M"], + "Ashurbanipal's": [], + "stopper'sed": [], + "tattering": [], + "Plexiglases": [], + "tot's": [], + "Fundy": ["M"], + "cavorteding": [], + "mickey'ses": [], + "NHL's": [], + "washeder": [], + "pickup's": [], + "precognitive": [], + "infamies": [], + "NE's": [], + "equilaterals's": [], + "consigned": [], + "threshed": [], + "staircases": [], + "collapse'sing": [], + "issue'sing": [], + "kerfuffle": ["S"], + "spout'sed": [], + "flickersing": [], + "forgiven": [], + "ovulatingen": [], + "pinsetter's": [], + "mammalian'ses": [], + "shiv'ser": [], + "walkover'ses": [], + "crawler's": [], + "unlawfulness": [], + "cabal's": [], + "Leopold's": [], + "mambosing": [], + "bimetallic's": [], + "bait'sed": [], + "textural": [], + "drumsticks": [], + "commiserative": [], + "proteins's": [], + "prompterly": [], + "habituation's": [], + "mellifluousnessly": [], + "pepper's": [], + "palisade's": [], + "defect'sed": [], + "doctors": [], + "rigs's": [], + "girth's": [], + "woody's": [], + "borrowsed": [], + "Thanksgiving'ses": [], + "graveyard": ["M", "S"], + "casual": ["P", "M", "Y", "S"], + "shopkeepers": [], + "cambered": [], + "coppers's": [], + "observations's": [], + "uneasily": [], + "trimester": ["S", "M"], + "betrayings": [], + "localities": [], + "shinbones's": [], + "tearoom": ["S", "M"], + "Almoravid's": [], + "daunted": [], + "backspaces": [], + "Manila": ["S", "M"], + "fleetness's": [], + "chummiest": [], + "trousers": ["M"], + "guttersnipe's": [], + "hoopeds": [], + "telegraph's": [], + "undergarment's": [], + "governsable": [], + "peripatetics": [], + "heroism": ["M"], + "pollutants": [], + "righted": [], + "tougheners": [], + "gentleder": [], + "Lissajous's": [], + "curateds": [], + "selfishly": [], + "degassing": [], + "pads": [], + "Theodore": ["M"], + "receptors's": [], + "forcefulnessly": [], + "sanguinely": [], + "clique's": [], + "headwaters's": [], + "tanagers": [], + "putting": ["I"], + "anglophiles": [], + "absentmindedness": ["M"], + "houri's": [], + "referendum's": [], + "careering": [], + "Bernardo's": [], + "Megan": ["M"], + "permits": [], + "scruffily": [], + "nonbelligerent": ["M", "S"], + "uvular": ["M", "S"], + "lactate": ["G", "N", "D", "S"], + "incision": ["M"], + "pt": ["C"], + "sanctify": ["G", "D", "S", "N"], + "lurch'sed": [], + "backwardly": [], + "stomp'sed": [], + "teetered": [], + "moods": [], + "sponger": ["M"], + "collards": [], + "unemphatic": [], + "rethought": [], + "newborns": [], + "motility": ["M"], + "resenting": [], + "electrification's": [], + "Eisenhower": ["M"], + "handrail's": [], + "hammerhead's": [], + "heartland": ["M", "S"], + "Rudolph's": [], + "Birmingham": ["M"], + "nourishmenting": [], + "Noels": [], + "rousing": [], + "chloride'ses": [], + "soak": ["M", "D", "G", "S", "J"], + "stubbornly": [], + "advance's": [], + "seraglio": ["M", "S"], + "sonny's": [], + "Joy's": [], + "brainwasheds": [], + "comforter'ses": [], + "Craft's": [], + "beetle": ["M", "G", "D", "S"], + "data": [], + "encampments": [], + "beggar's": [], + "notice": ["M", "G", "D", "S"], + "newsman's": [], + "Reed's": [], + "O'Donnell's": [], + "coulomb's": [], + "synergism's": [], + "duct's": ["K"], + "Louisiana's": [], + "anticipations": [], + "precisely": [], + "Bonneville's": [], + "blowpipes's": [], + "dory": ["S", "M"], + "ovular": [], + "paddockings": [], + "CPA's": [], + "mere'sly": [], + "dispels": [], + "oboe": ["M", "S"], + "backwaters": [], + "Gilmore's": [], + "topknot": ["S", "M"], + "hydroplane": ["G", "D", "S", "M"], + "harming": [], + "gnomish": [], + "chancinged": [], + "molehill": ["S", "M"], + "Advil": ["M"], + "ravishingment": [], + "obstructive": ["Y", "P"], + "prods": [], + "chervil's": [], + "chalet's": [], + "poorhouses": [], + "millionths": [], + "appall": ["G", "D", "S"], + "mikado": ["M", "S"], + "scabbard": ["M", "S"], + "worker's": [], + "Guernsey's": [], + "narcissus": ["M"], + "regicide": ["M", "S"], + "substantives's": [], + "fillers": [], + "figment'ses": [], + "impala": ["S", "M"], + "Terra's": [], + "Limousin's": [], + "voodooing": [], + "speedometer's": [], + "schoolteacher'ses": [], + "rightlies": [], + "Ala": ["S"], + "progress's": [], + "immediacy": ["S", "M"], + "sobriquet's": [], + "belief": ["E", "U", "M"], + "screecheds": [], + "net's": [], + "doorstep'ses": [], + "firebricks's": [], + "chuck's": [], + "memorization": ["M"], + "rechristen": [], + "slickingness": [], + "Doug's": [], + "Brennan": ["M"], + "Nikita's": [], + "pellagra's": [], + "specks": [], + "grater": ["M"], + "callers": [], + "outstay": ["D", "G", "S"], + "annihilation's": [], + "verbs": [], + "Apennines": ["M"], + "lowermost": [], + "Ce's": [], + "eel's": [], + "logic's": [], + "solemnifies": [], + "overawe": ["D", "S", "G"], + "duet's": [], + "Atacama's": [], + "castigatesing": [], + "sweethearts": [], + "antedating": [], + "Lindsey": ["M"], + "Premyslid's": [], + "hog": ["S", "M"], + "cavilingings": [], + "meringue'ses": [], + "bullhorn's": [], + "triptychs": [], + "impairment": ["M", "S"], + "recidivism's": [], + "Leoncavallo's": [], + "diapering": [], + "tale'ses": [], + "philosophic": [], + "misguidance": ["M"], + "unappealing": [], + "tricentennial'ses": [], + "broth's": [], + "Kwanzaas": [], + "bastardization'ses": [], + "incompetent": ["M", "S"], + "posses": [], + "masers": [], + "electroencephalography's": [], + "Zealand": ["M"], + "issue's": [], + "unspoken": [], + "similes": [], + "Collin's": [], + "fruitiness": ["M"], + "telescope's": [], + "lawman's": [], + "thankful": ["Y", "P"], + "enviousness's": [], + "polishing's": [], + "incredulous": [], + "collocated": [], + "tunersing": [], + "assayers": [], + "phones's": [], + "edifies": [], + "hunk'ser": [], + "pleasantly": [], + "permanency's": [], + "bushels": [], + "heelings": [], + "levies": [], + "jailbirds": [], + "Stockhausen's": [], + "calcifies": [], + "bilingually": [], + "streptococcus": ["M"], + "congress's": [], + "deathblow's": [], + "kookiest": [], + "nonintellectual": ["M", "S"], + "noiselessness's": [], + "moonlights's": [], + "prohibitionist'ses": [], + "subtitles's": [], + "hashtags's": [], + "amplitude's": [], + "lout'ses": [], + "neoplasm'ses": [], + "unbelievable": [], + "wardresses": [], + "overpowersed": [], + "lubber": ["M", "Y", "S"], + "irresistibly": [], + "Taegu's": [], + "coon": ["M", "S", "!"], + "remuneratingen": [], + "prosecutions": [], + "billable": [], + "skirmishers": [], + "cripplersing": [], + "ferry'sing": [], + "ransom's": [], + "Meccas": [], + "I'm": [], + "Rimbaud": ["M"], + "spaying": [], + "denouement'ses": [], + "Ethan": ["M"], + "loomeds": [], + "unconventionality": [], + "sonar's": [], + "unconcern": [], + "tightened": [], + "concede": [], + "isolationism": ["M"], + "whittler's": [], + "xeroxeds": [], + "dunes": [], + "Yorkshire": ["M", "S"], + "Republicans's": [], + "buzzwords's": [], + "poorest": [], + "swishest": [], + "peek'sed": [], + "freelancer": ["M"], + "permissiveness's": [], + "markdown's": [], + "disparagesing": [], + "repackage": [], + "shootout": ["M", "S"], + "wiggle'sers": [], + "multiplicities's": [], + "math": [], + "nowadays": ["M"], + "surveyor's": [], + "hobo's": [], + "ifs's": [], + "impermeability's": [], + "minx": ["M", "S"], + "Croats's": [], + "extol": ["S"], + "easier": [], + "choking": [], + "notched": [], + "heavenwards": [], + "autopilots": [], + "seismological": [], + "thrill's": [], + "lodgesings": [], + "coalesceds": [], + "lacework": ["M"], + "Sanders": ["M"], + "longest": [], + "decagon": ["M", "S"], + "delta'ses": [], + "vaquero": ["M", "S"], + "nonzero": [], + "zeroth": [], + "nonsmoker": ["S", "M"], + "thrones": [], + "cowhand's": [], + "expense": ["M", "S"], + "cracklings": [], + "dell": ["S", "M"], + "grievous": ["P", "Y"], + "West": ["S", "M"], + "nonmember": ["M", "S"], + "floors's": [], + "inhalator's": [], + "climactic": [], + "angstrom's": [], + "wanderlusts": [], + "chorea's": [], + "chitchat's": [], + "stupidly": [], + "pettily": [], + "Mort's": [], + "playthings's": [], + "plutocracies": [], + "chokinged": [], + "bicentenaries's": [], + "git": ["S"], + "Alhena": ["M"], + "pattern'sed": [], + "chromosomes": [], + "colleges's": [], + "stepdaughter": ["S", "M"], + "tittering": [], + "extremists": [], + "imprudent": ["Y"], + "simultaneity's": [], + "seedcase's": [], + "mammies's": [], + "shakeout's": [], + "barkeeper's": [], + "stalks's": [], + "stickler": ["M", "S"], + "nobblinged": [], + "cuber's": [], + "gypster's": [], + "emotionalized": [], + "acclimated": [], + "Tupungato": ["M"], + "peppers": [], + "adversities": [], + "COBOL's": [], + "grounders": [], + "GUI's": [], + "filched": [], + "Djibouti": ["M"], + "supermom": ["M", "S"], + "Nosferatu's": [], + "helped": [], + "nonlinear": [], + "zydeco": ["M"], + "Everette's": [], + "gruesomeness's": [], + "lying's": [], + "chlorofluorocarbon's": [], + "deluge": ["M", "G", "D", "S"], + "recurrences": [], + "submarine'sers": [], + "appreciate": ["D", "S", "X", "G", "N", "V"], + "eggings": [], + "blossom'sed": [], + "genetics's": [], + "vapidness": ["M"], + "shipmate": ["S", "M"], + "aspirating": [], + "taxing": [], + "underclass's": [], + "somersetted": [], + "Nerf's": [], + "distractions": [], + "psychic'ses": [], + "rhapsodic": [], + "widow's": [], + "venue's": [], + "hire": ["A", "G", "D", "S"], + "toccata": ["S"], + "bush's": [], + "erectsing": [], + "Bathsheba": ["M"], + "declension": ["S", "M"], + "tobogganer's": [], + "musicale's": [], + "dethronesment": [], + "whereabouts's": [], + "yeggs": [], + "crab'ses": [], + "swipes": [], + "laboriously": [], + "drubbing's": [], + "islets": [], + "cafetiere": ["S"], + "Rastafarians": [], + "RD": [], + "Aeschylus": ["M"], + "resellsing": [], + "bigmouth's": [], + "wrinkle'sing": [], + "tatami'ses": [], + "riffles's": [], + "triads's": [], + "integument": ["S", "M"], + "Len": ["M"], + "Istanbul's": [], + "loafs": [], + "manipulating": [], + "misfit": ["S", "M"], + "blowtorch": ["M", "S"], + "minimalists": [], + "describeder": [], + "solemner": [], + "Caspian": ["M"], + "seashell's": [], + "packinghouses's": [], + "interviewers": [], + "frosted": [], + "attendersing": [], + "decelerating": [], + "Bearnaise": ["M"], + "glints's": [], + "deserved": ["U", "Y"], + "loser": ["M"], + "clockworks's": [], + "parfait's": [], + "fist'ses": [], + "layoffs": [], + "shoppe'sers": [], + "applier'ses": [], + "trimmer's": [], + "burrowers": [], + "revolutions": [], + "NSA's": [], + "adjudicated": [], + "dragooning": [], + "Byzantium's": [], + "worthlessness": ["M"], + "Shiraz's": [], + "semivowels's": [], + "lighthouse": ["M", "S"], + "bible": ["M", "S"], + "craggier": [], + "bouquet": ["S", "M"], + "copped": [], + "faultfinding's": [], + "menu's": [], + "belonging": ["M"], + "Pennington": ["M"], + "Thebes's": [], + "funerary": [], + "plumbsers": [], + "pules": [], + "languisheds": [], + "untying": [], + "deafeningly": [], + "pzazz": [], + "manias": [], + "appointee's": [], + "boinking": [], + "financed": [], + "widescreens": [], + "stag'sed": [], + "sensitivity's": [], + "horseradish's": [], + "restraint's": [], + "hybridizeds": [], + "decoying": [], + "Bhutto": ["M"], + "nonfattening": [], + "Becquerel": ["M"], + "bawdinesser": [], + "Heisman": ["M"], + "objurgationsing": [], + "lecture's": [], + "appellants": [], + "Choctaw": ["S", "M"], + "gymnast": ["M", "S"], + "caiman's": [], + "Cronus's": [], + "Zibo's": [], + "priggishness": ["M"], + "abscissas": [], + "universe": ["S", "M"], + "portable's": [], + "bolthole": ["S"], + "Dutchman": ["M"], + "horrified": [], + "series": ["M"], + "condensate": ["M", "N", "X", "S"], + "Efren": ["M"], + "davenport'ses": [], + "Verne's": [], + "fireproofeds": [], + "queerly": [], + "Agana": [], + "overshadowsing": [], + "hourglasses": [], + "understandable": [], + "antipathies": [], + "ratiocinate": ["G", "N", "D", "S"], + "sprinkleder": [], + "hardest": [], + "footsie's": [], + "hoop's": [], + "hand's": [], + "Valentin": ["M"], + "Manitoulin": ["M"], + "authorized": ["U"], + "joiner'ses": [], + "straightedges's": [], + "Lisbon": ["M"], + "stylizes": [], + "soar's": [], + "decolletages's": [], + "boroughs": [], + "fleeciest": [], + "lance'sers": [], + "desideratum": ["M"], + "contaminants": [], + "barrenest": [], + "pebblinged": [], + "nitrate's": [], + "subliminal": ["Y"], + "liberalnesses": [], + "buckboard's": [], + "Burgoyne": ["M"], + "landscaped": [], + "incestuously": [], + "rummest": [], + "haters": [], + "billionths": [], + "Knuths": [], + "purposeful": ["Y", "P"], + "horsemanship": ["M"], + "budgets": [], + "appropriateness's": [], + "teaspoonful": ["S", "M"], + "supremacist'ses": [], + "Schelling": ["M"], + "Ceausescu": ["M"], + "sophist'ses": [], + "sleeperers": [], + "Robert": ["M", "S"], + "crannied": [], + "tweak's": [], + "bout's": [], + "preservation": ["M"], + "oppresseds": [], + "flashers": [], + "marquises": [], + "Jungian": ["M"], + "handsomest": [], + "Rooney's": [], + "asseverateds": [], + "snapper'ses": [], + "dismembering": [], + "roadway's": [], + "happiness's": [], + "whackers": [], + "chitchatting": [], + "attache": ["B", "M"], + "prototyping": [], + "toastersing": [], + "magnetization's": [], + "unexciting": [], + "guessingable": [], + "decelerationed": [], + "climates": [], + "hardback": ["M", "S"], + "Safeway's": [], + "sheepfolds's": [], + "smash'sed": [], + "Slav": ["S", "M"], + "Madeira's": [], + "convener's": [], + "gentle": ["T", "G", "D", "R", "S", "P"], + "firebrick's": [], + "muscatel": ["S", "M"], + "bloomeder": [], + "ischemia": [], + "sower's": [], + "Cipro's": [], + "Schenectady": ["M"], + "peripatetic's": [], + "doormen": [], + "tardy": ["T", "P", "R"], + "sibilants's": [], + "ridge'sing": [], + "Folgers's": [], + "attachment": ["A", "M"], + "Occidental's": [], + "whitewasheds": [], + "television's": [], + "Barcelona": ["M"], + "windsurfeder": [], + "ascots": [], + "cognates": [], + "balances": [], + "prow'ses": [], + "wildlife": ["M"], + "Arabia's": [], + "certificationsed": [], + "harmonizersing": [], + "razzes": [], + "segfault": ["S"], + "euchred": [], + "gyro'ses": [], + "headsets's": [], + "Kwangju": ["M"], + "faculty": ["S", "M"], + "spore'sing": [], + "pushing's": [], + "tamale": ["S", "M"], + "irksing": [], + "towropes": [], + "jettisonsing": [], + "dilemma'ses": [], + "scoliosis": ["M"], + "unseal": [], + "hangup": ["M", "S"], + "seventeenths": [], + "starers": [], + "sackersing": [], + "skeet's": [], + "platefuls's": [], + "scotcheds": [], + "strawing": [], + "groundingses": [], + "tabors": [], + "scissoring": [], + "crankcase's": [], + "circular'sly": [], + "beeping": [], + "steamrolls": [], + "irrational": ["S", "M", "Y"], + "tragedies's": [], + "roughhousinged": [], + "counterrevolutionaries": [], + "Naphtali's": [], + "applesauce's": [], + "lounge'sers": [], + "realism's": [], + "absentee": ["M", "S"], + "violinist": ["S", "M"], + "flaky": ["T", "R", "P"], + "Martinez's": [], + "investingment": [], + "besought": [], + "valley": ["S", "M"], + "visionaries's": [], + "McNamara": ["M"], + "thuds": [], + "Vaughn's": [], + "firestorm's": [], + "transmigrationed": [], + "newsweeklies": [], + "deceivers": [], + "avowings": [], + "wickerwork's": [], + "counterfeits": [], + "ache'sing": [], + "vectorsing": [], + "mope": ["M", "S"], + "spelunking's": [], + "Sudan's": [], + "bet's": [], + "taminged": [], + "binning": [], + "crimp": ["S", "M", "D", "G"], + "beguiler": ["M"], + "schoolfellows": [], + "anatomist": ["S", "M"], + "yammer": ["S", "Z", "G", "M", "D", "R"], + "tallier": ["M"], + "crossbreed's": [], + "enticingly": [], + "maritally": [], + "Kaohsiung": ["M"], + "flamersing": [], + "dugout": ["M", "S"], + "stain": ["S", "M", "D", "G"], + "asap": [], + "implacable": [], + "gypper": ["S", "M"], + "specimens's": [], + "payphones": [], + "preoccupation's": [], + "tin": ["S", "M"], + "moneybag's": [], + "gestated": [], + "mainstreams": [], + "picking": [], + "Alcatraz's": [], + "billiard": ["S"], + "roundhouse's": [], + "scholasticism": [], + "measuresing": [], + "meteorologic": [], + "messaginged": [], + "frontbencher": [], + "stockyard'ses": [], + "Colette's": [], + "borderline": ["M", "S"], + "thiamine's": [], + "oxidize": ["Z", "G", "D", "R", "S"], + "delft": ["M"], + "dangerously": [], + "clampdowns": [], + "precociousness's": [], + "coveys": [], + "vols": [], + "tumescence": ["M"], + "tidiness": ["U", "M"], + "countervail": ["G", "S", "D"], + "Nicaraguans": [], + "squiring": [], + "Sang'ser": [], + "purports's": [], + "xeroxing": [], + "chalcedony": ["M"], + "projectionist": ["S", "M"], + "anxiousness's": [], + "rayon's": [], + "deliberate": ["X", "Y", "V", "P"], + "mollifying": [], + "terminationens": [], + "woefully": [], + "mulctsing": [], + "blindfolded": [], + "symmetries": [], + "Trisha": ["M"], + "elfin": [], + "triplex": ["M", "S"], + "warehouses": [], + "premium's": [], + "claim's": [], + "asymptomatic": [], + "fundamentalist": ["S", "M"], + "tinkle'sing": [], + "birching's": [], + "maneuverings": [], + "win's": [], + "sanitarians": [], + "ghat's": [], + "spillway'ses": [], + "design": ["A", "S", "D", "G"], + "Osgood": ["M"], + "sorest": [], + "dissidence's": [], + "PlayStation's": [], + "catbirds": [], + "tanker": ["M"], + "Habakkuk": ["M"], + "collaborator": ["M", "S"], + "pallor": ["M"], + "hardened": ["U"], + "lancing": [], + "treats's": [], + "hemstitching": [], + "furbish": ["A", "D", "S", "G"], + "abbreviatesing": [], + "Auschwitz's": [], + "stationers": [], + "spumoni": ["M"], + "Brut's": [], + "fervid": ["Y"], + "miniseries's": [], + "Yorkie": ["M"], + "incontrovertibly": [], + "hafnium's": [], + "replenish": ["L", "G", "D", "S"], + "ludicrous": ["Y", "P"], + "Brando's": [], + "associate": ["E", "D", "S", "G", "N", "V"], + "bigot's": [], + "nominal": ["Y"], + "cranberries": [], + "Azania's": [], + "tessellate": ["D", "S", "X", "G", "N"], + "wurst": ["S", "M"], + "lakefronts": [], + "Lohengrin": ["M"], + "contextualizesing": [], + "wend": ["D", "S", "G"], + "seismically": [], + "perennials": [], + "surprise'sing": [], + "aeratesing": [], + "phishing": [], + "yippee": [], + "bullpens's": [], + "reptilian": ["M", "S"], + "affiliates": [], + "Violet": ["M"], + "stables": [], + "subtotal's": [], + "nocturne": ["M", "S"], + "Hibernian": [], + "domineer": ["S", "G", "D"], + "stent": ["S", "M"], + "ranchers": [], + "schematized": [], + "proselytizes": [], + "affluence's": [], + "wherewith": [], + "cruelerly": [], + "Madagascar": ["M"], + "Seneca's": [], + "anywise": [], + "sobering": [], + "aniline's": [], + "videotapes's": [], + "CARE": [], + "Aborigines": [], + "mortgaginged": [], + "armrest": ["S", "M"], + "dietaries's": [], + "afterwards": [], + "outwits": [], + "Keaton's": [], + "halitosis": ["M"], + "sootier": [], + "sortieds": [], + "subcontinent": ["S", "M"], + "handily": [], + "haughtiness": ["M"], + "mortgaged": [], + "programmable's": [], + "duet'ses": [], + "second": ["S", "L", "Z", "G", "M", "D", "R", "Y"], + "accountability": ["M"], + "jailbird's": [], + "quadrillion's": [], + "zingerers": [], + "decree's": [], + "ideographs": [], + "dictionaries": [], + "anxieties's": [], + "umbilicus": ["M"], + "privy": ["R", "S", "M", "T"], + "burnout'ses": [], + "film'sed": [], + "Camelots": [], + "pluckiness": ["M"], + "tattle'sers": [], + "unpersuasive": [], + "Howrah": [], + "peanut's": [], + "slantsed": [], + "Pernod": ["M"], + "cardsharperers": [], + "Maccabeus": ["M"], + "boosts": [], + "Enrique's": [], + "notification's": [], + "magnificently": [], + "wordbook": ["S", "M"], + "primitivesness": [], + "artilleryman's": [], + "rabbeting": [], + "named": ["U"], + "woodsier": [], + "Noah's": [], + "archfiend's": [], + "decompression": [], + "Gallicism": ["S", "M"], + "moralizer's": [], + "quarts": [], + "conifers": [], + "shellsing": [], + "agar": ["M"], + "adulterant'ses": [], + "sheaved": [], + "Stowe": ["M"], + "cars's": [], + "moneymaking's": [], + "Vienna's": [], + "bones": [], + "prostrations": [], + "Ruhr": ["M"], + "roguishness": ["M"], + "corries": [], + "Tue": ["S"], + "carhop": ["M", "S"], + "guestbook": ["S", "M"], + "Sennett's": [], + "Lorene": ["M"], + "limbos's": [], + "cindering's": [], + "Maude's": [], + "stokes": [], + "buoyed": [], + "foresail'ses": [], + "tabulator": ["S", "M"], + "pursue": ["Z", "G", "D", "R", "S"], + "filigreeing": [], + "sating": [], + "Rukeyser": ["M"], + "capacitor": ["S", "M"], + "melt's": [], + "intonations's": [], + "forefather": ["M", "S"], + "Andaman's": [], + "tums": [], + "littered": [], + "sycophants's": [], + "computerizes": [], + "quacked": [], + "oboist's": [], + "upping": [], + "fares": [], + "filtration": ["I", "M"], + "mingleds": [], + "delusions": [], + "economies's": [], + "dairyings": [], + "gamed": [], + "scrutiny's": [], + "physical's": [], + "paperweight'ses": [], + "counterbalanceds": [], + "collegian'ses": [], + "depend": [], + "supermodel's": [], + "belligerency": ["M"], + "dunned": [], + "candelabrum's": [], + "fond": ["R", "Y", "T", "P"], + "toothbrush's": [], + "overpowereding": [], + "razed": [], + "teachings": [], + "ligature's": [], + "extradition's": [], + "cobwebs": [], + "constipates": [], + "handkerchief'ses": [], + "Mississippian's": [], + "construing": [], + "bluet": ["M", "S"], + "Buick": ["M"], + "steerabling": [], + "recross": [], + "Labrador's": [], + "rosary's": [], + "battier": [], + "caressesing": [], + "grouch": ["G", "M", "D", "S"], + "wimpier": [], + "highhandedly": [], + "thighbone's": [], + "Rhine": ["M"], + "pedestal": ["M", "S"], + "entwinesing": [], + "frigging": [], + "refillable's": [], + "bookmarks": [], + "selfish": ["U", "Y", "P"], + "ufology's": [], + "face's": [], + "spooleding": [], + "boldness": ["M"], + "propagate": ["D", "S", "G", "N"], + "chert": ["M"], + "brooches": [], + "soever": [], + "hockey": ["M"], + "scribblers": [], + "jugged": [], + "illnesses": [], + "hospice's": [], + "beseemed": [], + "labyrinth's": [], + "backyards": [], + "Major's": [], + "ironwood's": [], + "grimace": ["D", "S", "M", "G"], + "trainee": ["S", "M"], + "miscue'sing": [], + "nattily": [], + "pinwheel'sed": [], + "pigmenteds": [], + "necklace's": [], + "charlatanism's": [], + "firetraps": [], + "inning": ["M"], + "buffers's": [], + "wolfs": [], + "medically": [], + "municipal": ["S", "M", "Y"], + "balance's": [], + "tabloid": ["S", "M"], + "woofer's": [], + "lousier": [], + "Bataan's": [], + "perplexinged": [], + "haranguing": [], + "princeliness": ["M"], + "jangled": [], + "alleluia's": [], + "bordello's": [], + "thanklessnessly": [], + "busker": [], + "boundlessly": [], + "parterres's": [], + "taxi'sed": [], + "reprimand": ["G", "S", "M", "D"], + "medievalist": ["M", "S"], + "teapots": [], + "disproofs's": [], + "Huntsville's": [], + "unrealistic": [], + "glint's": [], + "bolas's": [], + "impingemented": [], + "sincerity's": [], + "Armour's": [], + "Babylonia's": [], + "Death": ["M"], + "Barbarossa's": [], + "mirthful": ["P", "Y"], + "Sabin": ["M"], + "coxinged": [], + "Orlando": ["M"], + "misersable": [], + "nitwits": [], + "plangency": ["M"], + "Seaborg's": [], + "impecuniously": [], + "athleticism": [], + "asst": [], + "grepped": [], + "sunbonnets": [], + "cannery's": [], + "optimists's": [], + "jukebox'ses": [], + "quadriplegic's": [], + "heatings": [], + "find": ["J", "M", "R", "Z", "G", "S"], + "mechanism's": [], + "ping'sed": [], + "postage": ["M"], + "glaciatingen": [], + "drizzled": [], + "canneries": [], + "screenwriters": [], + "Lorenz": ["M"], + "whelming": [], + "fawneder": [], + "crying": [], + "hyperspaces": [], + "glucagon": [], + "mastectomies": [], + "incised": [], + "weaseled": [], + "tribunal's": [], + "cudgeledings": [], + "longeds": [], + "mutterings": [], + "globetrotting": [], + "untasted": [], + "ersatz's": [], + "coagulant": ["M", "S"], + "Snider's": [], + "voluminously": [], + "slips": [], + "pragmatist": ["M", "S"], + "orally": [], + "blank'sed": [], + "roadblocking": [], + "cornrow's": [], + "popguns": [], + "deadlinesser": [], + "stutter'sed": [], + "offset'ses": [], + "osculation": ["M"], + "Renoir's": [], + "beefierness": [], + "overstating": [], + "nectarine's": [], + "Ticonderoga's": [], + "moonlights": [], + "emulated": [], + "midshipmen": [], + "irrigation": ["M"], + "antagonizing": [], + "emulateds": [], + "bluefish'ses": [], + "bong's": [], + "protrude": ["G", "D", "S"], + "apatite": ["M"], + "loudhailers": [], + "Busch's": [], + "Iraqi": ["M", "S"], + "gobbing": [], + "gonna": [], + "implanting": [], + "tugs": [], + "sidestroke": ["D", "S", "M", "G"], + "conjectureds": [], + "lifetime'ses": [], + "Hickman": ["M"], + "bankcard": ["S", "M"], + "kuchens's": [], + "insanest": [], + "coloringed": [], + "handmaids": [], + "contrariety": ["M"], + "directed": [], + "beardings": [], + "Fourier": ["M"], + "shortcake'ses": [], + "nonexempt's": [], + "productively": [], + "Ngaliema": ["M"], + "started": [], + "delectation": ["M"], + "bicycles": [], + "gite": ["S"], + "purposelessness": [], + "Gruyeres": [], + "training's": [], + "the": ["J", "G"], + "mister's": [], + "sharpshooters's": [], + "trouble's": [], + "northeaster'sly": [], + "wreaks": [], + "sheathing": ["M"], + "translucence": ["M"], + "imprecation's": [], + "leech'sed": [], + "language'ses": [], + "Rodin": ["M"], + "pawl": ["M", "S"], + "origination": ["M"], + "chit": ["S", "M"], + "lavatory's": [], + "greatness": ["M"], + "porosity's": [], + "embrasure's": [], + "Marmara": ["M"], + "piste": ["S"], + "faintly": [], + "linnet": ["M", "S"], + "procedure": ["S", "M"], + "secularists's": [], + "yanked": [], + "embrocation": ["M", "S"], + "rib": ["S", "M"], + "Eritrean's": [], + "brawling's": [], + "by's": [], + "garlandeding": [], + "calk's": [], + "wurst's": [], + "hospitalizeds": [], + "embezzlemented": [], + "ow": [], + "slaughterersing": [], + "halibut's": [], + "pics": [], + "ranking": ["M"], + "Whitehall's": [], + "crop": ["M", "S"], + "birdie'sed": [], + "gigged": [], + "gill's": [], + "cultureds": [], + "wing'sed": [], + "uppish": [], + "ancillary": ["S", "M"], + "grandchild": ["M"], + "croutons": [], + "certificateds": [], + "caterers": [], + "seven's": [], + "armament": ["A", "E", "M"], + "Pfc": [], + "wallpapers's": [], + "bulge'sing": [], + "Carolyn": ["M"], + "La's": [], + "abjection": ["M"], + "melees": [], + "equals": [], + "McKinney's": [], + "overcoat's": [], + "hospitality's": [], + "Downs": ["M"], + "fiber's": [], + "wool": ["M", "N", "X"], + "bombardier's": [], + "Sheree's": [], + "Marcel's": [], + "cheroot": ["M", "S"], + "unmarketable": [], + "funkinesser": [], + "waterwheels's": [], + "doge": ["M", "S"], + "handstand": ["S", "M"], + "elitism": ["M"], + "anorexia": ["M"], + "woofeder": [], + "inventor's": [], + "periodical": ["S", "M", "Y"], + "promise's": [], + "tarnish'sed": [], + "contribution": ["M"], + "Chou's": [], + "Mahicans": [], + "aerator's": [], + "dunk'sed": [], + "churchmen": [], + "quelling": [], + "leggy": ["R", "P", "T"], + "displacement": [], + "dweeb": ["S", "M"], + "Talley": ["M"], + "spinneret's": [], + "clue'sing": [], + "truffle": ["M", "S"], + "Whitehorse": ["M"], + "samba": ["M", "D", "S", "G"], + "leewards's": [], + "entryway's": [], + "recap's": [], + "Carmella's": [], + "soldered": [], + "baffling": [], + "eats": [], + "soundbar": ["S"], + "Bess": ["M"], + "pruning": [], + "edits": [], + "rambler": ["M"], + "pod": ["S", "M"], + "boombox'ses": [], + "gospels": [], + "carburetors's": [], + "forkful's": [], + "manufactureder": [], + "arraying's": [], + "perspiring": [], + "hoked": [], + "smiting": [], + "discipline": ["D", "S", "M", "G"], + "gnus's": [], + "cortices": [], + "Antony": ["M"], + "ciders": [], + "devours": [], + "pulpiness": ["M"], + "garrulous": ["P", "Y"], + "enterprises": [], + "Purdue": ["M"], + "anticipation's": [], + "chlamydia": ["M", "S"], + "steersmen": [], + "bordered": [], + "houseroom": [], + "underpay": ["G", "S", "L"], + "struggled": [], + "reaper's": [], + "valuables": [], + "leave'sers": [], + "yelp": ["M", "D", "S", "G"], + "slacker": ["M"], + "bickering": [], + "crutch": ["M", "S"], + "no": ["S", "M"], + "seedbed": ["M", "S"], + "reverie'ses": [], + "Tienanmen's": [], + "concavely": [], + "hocking": [], + "overtime": ["M", "S"], + "staring": [], + "flagellationed": [], + "Shaka": ["M"], + "DC's": [], + "antivenin": ["M", "S"], + "acknowledgment's": [], + "Guy": ["M"], + "disquietude": [], + "modeled": [], + "imprimatur's": [], + "doggoninger": [], + "cowpoke'ses": [], + "superiors": [], + "Dare": ["M"], + "FedEx's": [], + "loftily": [], + "Monera": ["M"], + "nonabsorbents's": [], + "Mauritanians's": [], + "phages": [], + "approbation": ["E", "M"], + "poetess": ["M", "S"], + "upper": ["S", "M"], + "falloffs's": [], + "manhunts's": [], + "watcher's": [], + "pluperfect": ["S", "M"], + "malapropism": ["S", "M"], + "mestizos": [], + "z": ["D", "N", "X", "T", "G", "J"], + "crosswise": [], + "guildhall": ["M", "S"], + "smirk's": [], + "hookworm'ses": [], + "Leda's": [], + "attributablions": [], + "nostril'ses": [], + "Sepoy's": [], + "alarmingly": [], + "barraged": [], + "winnows": [], + "cogitative": [], + "fancywork": ["M"], + "tango": ["M", "D", "S", "G"], + "dunging": [], + "overthrow's": [], + "barbiturate": ["S", "M"], + "ayatollah": ["M"], + "hinted": [], + "knows": [], + "leopardess": ["M", "S"], + "flew": [], + "unbind": [], + "Blevins's": [], + "playactinged": [], + "billed": [], + "Olympian": ["M", "S"], + "pinup": ["M", "S"], + "chickadee": ["S", "M"], + "roebucks": [], + "escrow's": [], + "Randy": ["M"], + "drier": ["M"], + "uplift": ["J", "S", "M", "D", "G"], + "elasticizes": [], + "vesicle": ["S", "M"], + "coverall's": [], + "varieds": [], + "scantly": [], + "crouched": [], + "Inca": ["S", "M"], + "waylayer's": [], + "pirouette'sing": [], + "reassure": [], + "annotator'ses": [], + "beetled": [], + "trainee's": [], + "roughnecks": [], + "strafe'sing": [], + "cups's": [], + "bled": [], + "disinfection's": [], + "runny": ["R", "T"], + "schmo": ["M"], + "strawberries's": [], + "somehow": [], + "unreal": [], + "bitcoins": [], + "bank's": [], + "dossersing": [], + "fifth'sly": [], + "discompose": [], + "foundling's": [], + "Mauryan's": [], + "foodies's": [], + "woad's": [], + "palpitation": ["M"], + "warble'sers": [], + "Mahavira's": [], + "Olympias's": [], + "develop": ["A", "S", "G", "D", "L"], + "colorway": ["S"], + "muesli": [], + "whoosh'sed": [], + "EST": ["M"], + "contacting": [], + "nursling's": [], + "pursuits": [], + "melanin": ["M"], + "refactor": [], + "hamper": ["G", "M", "D", "S"], + "sourdough": ["M"], + "bureaucratization's": [], + "pat": ["S", "M"], + "lessens": [], + "hoodwinkings": [], + "squawked": [], + "sanctioning": [], + "Deirdre's": [], + "LG's": [], + "glint'sed": [], + "disentangle": [], + "ingress'ses": [], + "footbridge's": [], + "report's": [], + "reboileding": [], + "bulrushes": [], + "Macon's": [], + "anally": [], + "huller's": [], + "urge's": [], + "proceeded": [], + "sharpshooter's": [], + "mullah's": [], + "basters": [], + "yobbo": ["S"], + "versatility": ["M"], + "Lebesgue": ["M"], + "extents": [], + "reportage": ["M"], + "wedgies": [], + "footnote's": [], + "orc": ["S", "M"], + "woebegone": [], + "deafeninged": [], + "disrepute'sable": [], + "dost": [], + "sandlotter'ses": [], + "Algiers's": [], + "saxophonist's": [], + "falconer": ["M"], + "encapsulatingen": [], + "Guggenheim": ["M"], + "clip": ["S", "M"], + "unpronounceable": [], + "assignments": [], + "line'sers": [], + "ravaging": [], + "saintedly": [], + "threading": [], + "shpt": [], + "waitress's": [], + "trice's": [], + "intelligent": ["Y"], + "frost": ["C", "S", "D", "G"], + "trimming": ["S", "M"], + "chatterings": [], + "zoologist": ["S", "M"], + "piroshki": ["M"], + "telemarketing": ["M"], + "bummest": [], + "Shevardnadze": ["M"], + "abolition's": [], + "exclusively": [], + "hummingbirds's": [], + "Minotaur": ["M"], + "peppercorns's": [], + "osmotic": [], + "tepee": ["S", "M"], + "septicemic": [], + "exorbitant": ["Y"], + "broccoli's": [], + "paraplegic": ["S", "M"], + "zaniest": [], + "dereclassify": [], + "tots": [], + "besmeared": [], + "supervisory": [], + "ham": ["S", "M"], + "bluster'sed": [], + "crossbowman's": [], + "whistled": [], + "escapee": ["M", "S"], + "papers": [], + "hexadecimal": ["S"], + "step'ses": [], + "cubit": ["S", "M"], + "insistsing": [], + "bobsleds's": [], + "fettuccine's": [], + "deluge'sing": [], + "uncontrolled": [], + "brusquenessly": [], + "bows": [], + "portals's": [], + "doubly": [], + "passable": [], + "contortion'ses": [], + "container": ["M"], + "liar'ses": [], + "blackcurrants": [], + "upsurge": ["M", "G", "D", "S"], + "Uganda's": [], + "footlockers": [], + "farewell's": [], + "squeak'sed": [], + "butchers": [], + "novenas": [], + "manageresses": [], + "inculpating": [], + "garage'sing": [], + "seclusive": [], + "cassowaries": [], + "posit": ["D", "S", "G", "V"], + "edemas's": [], + "lathered": [], + "insolvency": ["S"], + "statesmen": [], + "sanctimoniousness": ["M"], + "crackdown's": [], + "BA's": [], + "shortlies": [], + "hurricane's": [], + "unmeant": [], + "emojis": [], + "smother's": [], + "speedily": [], + "stoplight's": [], + "overcapitalizing": [], + "basking": [], + "overpasses": [], + "pumpeder": [], + "whops": [], + "industry's": [], + "commemorator's": [], + "Valarie's": [], + "pragmatic": ["M", "S"], + "hulleder": [], + "spoils": [], + "groveler": ["M"], + "daintiness's": [], + "besmirching": [], + "Ramsay's": [], + "Laurie": ["M"], + "Arrhenius's": [], + "tepee's": [], + "nonredeemable": [], + "fenderers": [], + "elitist": ["M", "S"], + "fuzziest": [], + "ACT": [], + "pontiff": ["S", "M"], + "mollycoddle'sing": [], + "Lipizzaner's": [], + "yore's": [], + "dodgeder": [], + "incestuous": ["P", "Y"], + "excitingly": [], + "fodders's": [], + "liability": ["A", "M"], + "Ne": ["M"], + "node": ["M", "S"], + "rotary": ["S", "M"], + "crack": ["S", "M", "D", "R", "Y", "Z", "G", "J"], + "vacationersing": [], + "convincinged": [], + "absented": [], + "insurgents": [], + "licenseds": [], + "strangulated": [], + "Tajikistan's": [], + "Dorset": ["M"], + "Benny's": [], + "scarecrow": ["M", "S"], + "numeracy's": [], + "individuate": ["D", "S", "G", "N"], + "handiest": [], + "Ruth's": [], + "veronica": ["M"], + "Abidjan's": [], + "Zimbabwean": ["S", "M"], + "ions": [], + "putrescent": [], + "squirrelsing": [], + "addend": ["M", "S"], + "crept": [], + "passkey's": [], + "piercing": ["M", "Y"], + "Dawn's": [], + "kingmaker": ["S"], + "beaver's": [], + "purser": ["M"], + "greetingses": [], + "prophesy": ["D", "R", "S", "M", "Z", "G"], + "eldritch": [], + "directer": [], + "railwaymen": [], + "heavyweights": [], + "cockatrice": ["S", "M"], + "razor's": [], + "provinged": [], + "petunia'ses": [], + "matte'sers": [], + "seals": [], + "exotically": [], + "girdling": [], + "sportingly": [], + "hucksterism": ["M"], + "defoliation": ["M"], + "imagery's": [], + "shoplift": ["D", "R", "Z", "G", "S"], + "contender'ses": [], + "perspicuity": ["M"], + "petite's": [], + "liposuction's": [], + "apostate's": [], + "farts": [], + "crawdad's": [], + "sentiments's": [], + "cave's": [], + "ignoramus'ses": [], + "flareups's": [], + "Beeton's": [], + "backbit": [], + "sugarless": [], + "Donaldson's": [], + "Aurelius": ["M"], + "penetrable": [], + "optioneding": [], + "usable": ["U", "A"], + "odored": [], + "boob'sed": [], + "lore": ["M"], + "exegetical": [], + "western": ["S", "Z", "M", "R"], + "crackheads": [], + "endear": ["S", "G", "L", "D"], + "pull's": [], + "wonderfulliness": [], + "ovations": [], + "ethnicity's": [], + "Onsager": ["M"], + "abbesses": [], + "Somalian's": [], + "contagious": ["P", "Y"], + "downsizinged": [], + "afterbirth": ["M"], + "frenzied": ["Y"], + "ramifying": [], + "utilitarians": [], + "Carrier's": [], + "alerting": [], + "automatism's": [], + "Woodstock's": [], + "roadway": ["S", "M"], + "Mogul": ["M", "S"], + "asexual": ["Y"], + "harvest": ["S", "M", "D", "R", "Z", "G"], + "gallbladder's": [], + "pieing": [], + "unassigned": [], + "headless": [], + "heirloom's": [], + "Goering's": [], + "Adriatic's": [], + "hypoglycemics's": [], + "chump'ses": [], + "Caterpillar's": [], + "dieresis": ["M"], + "Malta's": [], + "euro's": [], + "mixtures": [], + "juicing": [], + "thoughtfully": [], + "hostels": [], + "chophouse's": [], + "chest's": [], + "doorjambs": [], + "canoeists": [], + "occultist": ["S", "M"], + "see'sers": [], + "Fletcher": ["M"], + "culprits": [], + "coffin": ["S", "M", "D", "G"], + "placated": [], + "Gracchus": ["M"], + "rubberize": ["G", "D", "S"], + "cyborgs": [], + "packagers": [], + "gourd's": [], + "Liechtenstein": ["Z", "M", "R"], + "Bologna": ["M"], + "urinals's": [], + "opposes": [], + "unallowable": [], + "grease'sers": [], + "Co": ["M"], + "sepulchers": [], + "catchphrase": ["S", "M"], + "loudmouth": ["M", "D"], + "internationalizeds": [], + "Andromache": ["M"], + "inveigle": ["Z", "G", "D", "R", "S"], + "peccary": ["S", "M"], + "authorial": [], + "Hopis's": [], + "proneness's": [], + "excursionist's": [], + "kickbacks's": [], + "Kremlin": ["M"], + "detoxifieds": [], + "dollar's": [], + "prodescribe": [], + "boarding": ["M"], + "fakir's": [], + "frustrations": [], + "rheas": [], + "Ross's": [], + "shortage's": [], + "flummoxing": [], + "breakfasteding": [], + "lounged": [], + "Faisalabad's": [], + "Trotsky": ["M"], + "bootsing": [], + "harshly": [], + "dobbin": ["S", "M"], + "Arabists": [], + "euchreds": [], + "nonpartisans": [], + "serape's": [], + "Jeroboam": ["M"], + "Wooster": ["M"], + "Tess": ["M"], + "ruggederly": [], + "Dropbox": ["M"], + "virtuousness's": [], + "kisseder": [], + "forwarders": [], + "fumble's": [], + "klaxons": [], + "music": ["S", "M"], + "Pontchartrain": ["M"], + "Montevideo's": [], + "Davidson": ["M"], + "airbrush": ["M", "D", "S", "G"], + "Hmong": ["M"], + "Audrey": ["M"], + "yachts": [], + "stipples's": [], + "perambulationed": [], + "short": ["X", "T", "G", "M", "D", "N", "R", "Y", "S", "P"], + "pulpier": [], + "waterproofs's": [], + "headpiece'ses": [], + "defensiveness's": [], + "Sr's": [], + "fays's": [], + "overcomes": [], + "hobbler": ["M"], + "tower'sed": [], + "mongrels's": [], + "scopes": [], + "knave": ["S", "M"], + "intoxicates": [], + "robocall'sed": [], + "housed": [], + "schoolbag's": [], + "agony": ["S", "M"], + "satisfaction's": [], + "triplets's": [], + "bodeding": [], + "hunt'sed": [], + "extenuateds": [], + "realnesses": [], + "breaststrokes": [], + "worshiping": [], + "prig": ["M", "S"], + "countdown's": [], + "opium": ["M"], + "Vivekananda": ["M"], + "isolates's": [], + "xxviii": [], + "dinosaur's": [], + "numbereding": [], + "crew": ["M", "D", "G", "S"], + "plaintiffs's": [], + "Cyprian": ["M"], + "overfilled": [], + "Jansenist": ["M"], + "combines": [], + "crosscut": ["S", "M"], + "mindfulness": ["M"], + "purlieus": [], + "moldiest": [], + "kilter's": [], + "manuscripts": [], + "inheritor's": [], + "Apocalypse": ["M"], + "entourages": [], + "pawnshop's": [], + "hypertensive's": [], + "retrieval": ["S", "M"], + "divergeds": [], + "starry": ["T", "R"], + "eclogues": [], + "Aldebaran": ["M"], + "dormancy": ["M"], + "admirer's": [], + "complacence": ["M"], + "sighs": [], + "Prescott's": [], + "existentialist's": [], + "smut": ["M", "S"], + "warmest": [], + "backhander": ["M"], + "crated": [], + "timingings": [], + "fluidly": [], + "Taliban's": [], + "tide": ["M", "G", "J", "D", "S"], + "carnivals": [], + "urbanest": [], + "entailment": ["M"], + "stony": ["T", "R", "P"], + "billfold's": [], + "insurgencies": [], + "protuberance's": [], + "Ron's": [], + "rotogravure": ["M", "S"], + "slushy": ["R", "P", "T"], + "trematode's": [], + "Bancroft's": [], + "Titian": ["M"], + "grapeshot's": [], + "practicum": ["S", "M"], + "rarefieds": [], + "fishing": ["M"], + "inconclusive": [], + "piggish": ["P", "Y"], + "directions": [], + "stepchildren": ["M"], + "simian'ses": [], + "psychopathy": ["M"], + "monkshood": ["S", "M"], + "milkeder": [], + "Jay": ["M"], + "tomcat'ses": [], + "aimlessly": [], + "Moravia": ["M"], + "diocesans": [], + "croon": ["S", "M", "D", "R", "Z", "G"], + "escaroles": [], + "dropout's": [], + "gimlets's": [], + "windsurfing": ["M"], + "Rodrigo's": [], + "Quintilian": ["M"], + "dastardly": [], + "reputation": ["M", "S"], + "seventeens": [], + "enjoying": [], + "Angelou": ["M"], + "cockchafer": ["S"], + "inseminated": [], + "poplars": [], + "tallboy'ses": [], + "tearooms": [], + "paunch": ["M", "S"], + "compromise": ["M", "G", "D", "S"], + "undetectable": [], + "continual": ["Y"], + "Stowe's": [], + "roomerers": [], + "Mosley": ["M"], + "underpinning'ses": [], + "communicator's": [], + "dispensing": [], + "bolstering": [], + "forewarnsing": [], + "doughiest": [], + "firewall": ["M", "S"], + "songster'ses": [], + "pfennigs": [], + "risk": ["G", "M", "D", "S"], + "fossil": ["S", "M"], + "vincible": ["I"], + "hellos": [], + "Agni": ["M"], + "clangers": [], + "telegrapherers": [], + "grad's": [], + "farmlands": [], + "Ebro's": [], + "dogfights's": [], + "gravitational": [], + "humbler": ["M"], + "archipelago's": [], + "sophomores": [], + "vacuumed": [], + "whackingsers": [], + "proctor's": [], + "Arctic": ["M"], + "fantails": [], + "Jonathan's": [], + "saps": [], + "iniquitous": ["Y"], + "squall'sed": [], + "encore's": [], + "interpolates": [], + "pricksers": [], + "sitter's": [], + "deadpanned": [], + "glutinous": ["Y"], + "decadent's": [], + "corollary's": [], + "Crecy": ["M"], + "refortified": [], + "cuspidors": [], + "ciphered": [], + "exploratory": [], + "signallies": [], + "pothole's": [], + "Czerny's": [], + "fancifulness": ["M"], + "Australian": ["S", "M"], + "Daren": ["M"], + "observance": ["M", "S"], + "phlox": ["M"], + "foul": ["M", "D", "R", "Y", "T", "G", "S", "P"], + "attested": ["U"], + "suturinged": [], + "muff": ["M", "D", "S", "G"], + "flabby": ["R", "P", "T"], + "diffractsed": [], + "deterrent's": [], + "cricks's": [], + "sailcloth's": [], + "outcome's": [], + "Ameslan's": [], + "Xians's": [], + "banners": [], + "flirting": [], + "bowdlerizeds": [], + "driller's": [], + "Armand's": [], + "repented": [], + "mountaintops": [], + "emboldeneding": [], + "waterlines": [], + "bollixed": [], + "snarfsed": [], + "Araby": ["M"], + "parallelsing": [], + "constitutional's": [], + "counselor's": [], + "October's": [], + "commemorationsing": [], + "grottiest": [], + "wrens": [], + "masseuses": [], + "builds": [], + "stanched": [], + "Layla's": [], + "indentured": [], + "Eddie": ["M"], + "rub": ["S", "M"], + "mackerel": ["S", "M"], + "trenchancy's": [], + "oat'sen": [], + "describe": ["B", "Z", "G", "D", "R"], + "disentanglement": [], + "blackballs": [], + "jaggednesser": [], + "adverseness": ["M"], + "canoeing": [], + "alkalies": [], + "traffics's": [], + "easels": [], + "bulbs": [], + "overbite's": [], + "bureaucrat": ["M", "S"], + "cretin": ["S", "M"], + "zoom'sed": [], + "behave": ["G", "D", "S"], + "vulnerably": ["I"], + "fairnesses": [], + "wear's": [], + "warbler's": [], + "owl's": [], + "troop'sed": [], + "Milne's": [], + "chariness": ["M"], + "Biscay": ["M"], + "whore": ["S", "M", "G"], + "misadventure's": [], + "beckoninged": [], + "secondaries's": [], + "playroom": ["S", "M"], + "Winchell": ["M"], + "Ba's": [], + "milliner'ses": [], + "clueless": [], + "Leroy": ["M"], + "matteder": [], + "nonobligatory": [], + "committals": [], + "deckhand": ["S", "M"], + "tunneler's": [], + "pork": ["Z", "M", "R"], + "zoom's": [], + "exampleds": [], + "hearkened": [], + "bulwark": ["M", "S"], + "patroon": ["S", "M"], + "noises": [], + "master's": [], + "onrush'ses": [], + "presumed": [], + "mutilator's": [], + "undercurrent": ["S", "M"], + "Jacobin's": [], + "Crow": ["S", "M"], + "Japanese": ["M", "S"], + "marbleds": [], + "lovingly": [], + "catamaran": ["S", "M"], + "chastisement's": [], + "Cambodian": ["S", "M"], + "confutation": ["M"], + "perused": [], + "ribbons": [], + "unclasp": [], + "retroviruses": [], + "corncob's": [], + "reps's": [], + "meshes": [], + "Peggy": ["M"], + "coagulator'ses": [], + "sods": [], + "heedlessness's": [], + "prevaricatesing": [], + "parallelogram's": [], + "predatory": [], + "deflection's": [], + "butterfingers": ["M"], + "unloveliest": [], + "vestings": [], + "vibrato's": [], + "Ubangi's": [], + "Inchon": ["M"], + "daiquiri'ses": [], + "cliche": ["M", "D", "S"], + "suffix'sed": [], + "annotatesens": [], + "renovations": [], + "economists's": [], + "goldbrickeder": [], + "mu's": [], + "surgeon": ["M", "S"], + "lazied": [], + "Latina": [], + "privaters": [], + "cervix's": [], + "copilot": ["S", "M"], + "religious": ["M", "Y", "P"], + "Karroo's": [], + "Wotan": ["M"], + "ocker": ["S"], + "billet": ["G", "M", "D", "S"], + "owner'ses": [], + "dewdrops": [], + "redrawsing": [], + "finely": [], + "MacArthur": ["M"], + "spammed": [], + "ulnae": [], + "Asama's": [], + "lint's": [], + "mill'sed": [], + "populace's": [], + "electrostatics": ["M"], + "ruinous": ["Y"], + "ballast'sed": [], + "woodcock's": [], + "barista'ses": [], + "megastar": ["S"], + "perceptible": [], + "ineligibility": [], + "Trajan": ["M"], + "Slashdot": ["M"], + "unshackle": [], + "Chautauqua": ["M"], + "radiomen": [], + "sexologist": ["S", "M"], + "jaunting": [], + "feel": ["M", "R", "Z", "G", "S", "J"], + "adoringed": [], + "misprinting's": [], + "anemones's": [], + "tetrahedron'ses": [], + "fantastical": ["Y"], + "quad'ses": [], + "eyeopener's": [], + "Leakey's": [], + "tigerish": [], + "parsec's": [], + "upbraids": [], + "asininity": ["S", "M"], + "stabilize": ["C", "D", "S", "G"], + "shrubberies": [], + "unionists": [], + "cycle": ["A", "D", "S", "M", "G"], + "revers's": [], + "stepbrothers's": [], + "steeplejacks": [], + "thing": ["M"], + "portulaca's": [], + "leveled": [], + "Nativity's": [], + "redeemable": [], + "conflict's": [], + "Palermo": ["M"], + "depromotion": [], + "refusal": ["M", "S"], + "horology's": [], + "casualty": ["S", "M"], + "licorice's": [], + "advising": [], + "riskeds": [], + "Blevins": ["M"], + "amplest": [], + "plows": [], + "Douro's": [], + "bustersing": [], + "contralto": ["S", "M"], + "UFO's": [], + "retailer'ses": [], + "immunodeficiency's": [], + "coshes": [], + "given's": [], + "scrofula": ["M"], + "intemperate": [], + "lowsers": [], + "agrarianism": ["M"], + "soliloquizes": [], + "dogfight": ["S", "M"], + "Cameroonians": [], + "dilly": ["S", "M"], + "gruff": ["T", "P", "R", "Y"], + "erodesing": [], + "showcase": ["M", "G", "D", "S"], + "disturbingly": [], + "palaver'sed": [], + "signalman": ["M"], + "steelyard": ["S", "M"], + "silkscreen": ["S", "M"], + "reverenceds": [], + "conseds": [], + "acrobatics": ["M"], + "worryings": [], + "forfeitures's": [], + "volutes's": [], + "gallop": ["S", "M", "D", "G"], + "drizzles": [], + "ventilators": [], + "hatstand": ["S"], + "endocrinologists": [], + "Neanderthals": [], + "stultifiesen": [], + "setting's": [], + "tablespoonful": ["S", "M"], + "subbasement": ["S", "M"], + "superscribinged": [], + "belabored": [], + "blank's": [], + "rewedded": [], + "Shaula's": [], + "teachinger": [], + "grief": ["S", "M"], + "nonadhesive": [], + "Lenora": ["M"], + "moldering's": [], + "metabolizing": [], + "paladins's": [], + "cockatoo's": [], + "desecratingen": [], + "ebbs": [], + "Malabo's": [], + "consequent": ["Y"], + "Qom": ["M"], + "Eurodollars's": [], + "travel's": [], + "axon'ses": [], + "bovine's": [], + "Northeast's": [], + "manicureds": [], + "middlebrows's": [], + "cyclometer's": [], + "heliotropes's": [], + "hipster's": [], + "tinniest": [], + "bayonet's": [], + "downbeat": ["S", "M"], + "keypunchers": [], + "melodramatic": ["S"], + "lettuce's": [], + "copperplate": ["M"], + "Shaka's": [], + "demitasse": ["M", "S"], + "headmistresses": [], + "counterpetition": [], + "Falstaff's": [], + "skewer's": [], + "pentacle's": [], + "attractable": [], + "powwows": [], + "lookalike's": [], + "stragglersing": [], + "laceration's": [], + "disconcuss": [], + "Misty": ["M"], + "cooperative'sly": [], + "whack's": [], + "angularity's": [], + "backrests": [], + "clamber's": [], + "Ozymandias": ["M"], + "carousel's": [], + "spiffed": [], + "obfuscatingen": [], + "guarantor": ["M", "S"], + "mutinies": [], + "varietal": ["S", "M"], + "expatriation": ["M"], + "irradiates": [], + "guided": ["U"], + "Instamatic's": [], + "superscripts": [], + "graffito": ["M"], + "unmake": [], + "Ouija'ses": [], + "OPEC's": [], + "peeper": ["M"], + "speedup": ["M", "S"], + "towropes's": [], + "revolveder": [], + "multivitamins": [], + "carving": ["M"], + "speediest": [], + "stimulate": ["D", "S", "G", "N", "V"], + "disseminateds": [], + "BB's": [], + "underwhelms": [], + "mishandling": [], + "cushions": [], + "civilian'ses": [], + "annuity": ["S", "M"], + "proteges": [], + "missus's": [], + "Tropicana": ["M"], + "educationist": ["S"], + "gladiators's": [], + "Coy": ["M"], + "varied": ["U"], + "concludesing": [], + "embossersing": [], + "concentrates": [], + "McClain's": [], + "backup's": [], + "downfalls's": [], + "waterproof'sed": [], + "relegating": [], + "protons's": [], + "ht": [], + "redcoat": ["S", "M"], + "bigwig's": [], + "resoluteness": ["M"], + "expunginged": [], + "Vancouver": ["M"], + "moll's": [], + "fatuity": ["M"], + "ruffianly": [], + "steeled": [], + "minister'sed": [], + "locations's": [], + "Urdu": ["M"], + "glassblower'ses": [], + "astronautical": [], + "partitioning": [], + "lipsticks": [], + "minuteness's": [], + "mastered": [], + "tampinged": [], + "optimizations": [], + "suppuratingen": [], + "Loire's": [], + "accumulation's": [], + "critique": ["M", "G", "D", "S"], + "TWA": ["M"], + "shinning": [], + "bowsprit's": [], + "thralldom": ["M"], + "calamity's": [], + "kickeder": [], + "upbraid": ["S", "G", "D"], + "Ascension's": [], + "metamorphoses": [], + "namesakes's": [], + "duodenal": [], + "Methodisms": [], + "Smithsonian": ["M"], + "corrie": ["S"], + "modulator": ["M", "S"], + "philosophizers": [], + "fritz": ["M"], + "Domitian's": [], + "relater": ["M"], + "fuming": [], + "raillery's": [], + "divinity": ["S", "M"], + "merrily": [], + "airdrops": [], + "remembrance'ses": [], + "parersing": [], + "hussars's": [], + "zaps": [], + "zenith": ["M"], + "ditto": ["S", "M", "D", "G"], + "cancelersing": [], + "oceanographers's": [], + "dioxin's": [], + "matrimony's": [], + "waverersing": [], + "punter": ["M"], + "stylistics": [], + "earlobe": ["S", "M"], + "shoeing": [], + "fighting": ["I", "M"], + "disgorgement's": [], + "cannibalization's": [], + "angelfish": ["M", "S"], + "necklacing": [], + "Saxon's": [], + "grasped": [], + "storm": ["G", "S", "M", "D"], + "siege'ses": [], + "outraging": [], + "irremovable": [], + "Eritreans": [], + "sown": ["A"], + "Th": ["M"], + "danseuse's": [], + "Lorna's": [], + "fingereding": [], + "catafalque's": [], + "cannonade'sing": [], + "overindulge": ["G", "D", "S"], + "condolence's": [], + "fettering": [], + "Holsteins": [], + "fascinating": ["Y"], + "preview'sed": [], + "t": ["S", "D", "N", "X", "G", "B", "J"], + "Gandhi's": [], + "antler's": [], + "explicitly": [], + "broaching": [], + "regathereding": [], + "ethane": ["M"], + "Rochester": ["M"], + "chansons": [], + "yurt'ses": [], + "letdowns's": [], + "cosmopolitans": [], + "downshifts": [], + "Smithson": ["M"], + "pseudonyms's": [], + "transceiver": ["S", "M"], + "checkmate's": [], + "steeliness's": [], + "scalpersing": [], + "Bentham's": [], + "Ignacio": ["M"], + "abortively": [], + "queuesing": [], + "Coriolanus's": [], + "Jekyll's": [], + "conditioned": ["U"], + "autopsying": [], + "munchkin's": [], + "housesing": [], + "obelisk'ses": [], + "barfsing": [], + "scream": ["S", "M", "D", "R", "Z", "G"], + "periwinkle's": [], + "imago": ["M"], + "milometer": ["S"], + "digressions": [], + "chickeneding": [], + "agriculturalists": [], + "blighteder": [], + "crystalline": [], + "christeninged": [], + "nonabsorbent's": [], + "apostasy's": [], + "Pearson's": [], + "Aggie": ["M"], + "calcimined": [], + "watchdogs": [], + "Dena": ["M"], + "deregulate": [], + "lichen'ses": [], + "drinkings": [], + "prekindergartens": [], + "meant": ["U"], + "Hartman's": [], + "roundworm's": [], + "surfeit'sed": [], + "Parcheesi": ["M"], + "timekeeping": ["M"], + "Mexicali's": [], + "glad's": [], + "bluntly": [], + "earplug's": [], + "preserve": ["B", "D", "R", "S", "M", "Z", "G"], + "fricatives": [], + "nonattendance's": [], + "pistachio's": [], + "Elisabeth": ["M"], + "prognosticator'ses": [], + "cystic": [], + "carrot": ["M", "S"], + "dasher": ["M"], + "seesaweding": [], + "ravings's": [], + "Krystal's": [], + "dream'sed": [], + "erases": [], + "announcing": [], + "cankering": [], + "hag": ["S", "M"], + "resuppliesing": [], + "houseman": ["M"], + "endoscopy's": [], + "tirelessly": [], + "pulverization's": [], + "maneuverablings": [], + "Communism": [], + "Rubicon's": [], + "paperersing": [], + "clippers": [], + "federals": [], + "madcap's": [], + "anisette": ["M"], + "chessman": ["M"], + "rinds": [], + "anchorwoman's": [], + "postulated": [], + "walrus's": [], + "infirmity's": [], + "Instamatic": ["M"], + "cacophonies": [], + "Torricelli": ["M"], + "Scud's": [], + "Sparta's": [], + "renaissance's": [], + "rapid": ["P", "M", "R", "Y", "T", "S"], + "sluice'sing": [], + "ridership's": [], + "succinctest": [], + "summoner": ["M"], + "dewclaw's": [], + "wrongness's": [], + "Lucille's": [], + "seemliness": ["U", "M"], + "ululatingen": [], + "raileds": [], + "battlefronts": [], + "interleaveds": [], + "Mizar's": [], + "obviation's": [], + "ashrams": [], + "contempt": ["M"], + "Catullus": ["M"], + "kiloton's": [], + "graveling's": [], + "raggeder": [], + "betokeninged": [], + "effendis's": [], + "equivocator": ["S", "M"], + "differsing": [], + "neckerchief's": [], + "consignments": [], + "swashbucklers's": [], + "scrumptiously": [], + "mow'sed": [], + "Labrador": ["S", "M"], + "tutors": [], + "almanacs's": [], + "jobholder's": [], + "disbursements": [], + "August": ["M", "S"], + "ramrodding": [], + "impregnates": [], + "spaciest": [], + "spooning": [], + "standee's": [], + "sparely": [], + "songbirds's": [], + "papacy": ["S", "M"], + "temptsed": [], + "liveryman": ["C", "M"], + "okay's": [], + "signing's": ["C"], + "hawkersing": [], + "convivial": ["Y"], + "playacting's": [], + "indiscreet": ["Y"], + "assuming": [], + "fades": [], + "flute'sing": [], + "dewdrops's": [], + "guardsman's": [], + "collarbone's": [], + "hotbed's": [], + "diasporas": [], + "cryosurgery": ["M"], + "alphabetizeder": [], + "captivator's": [], + "insofar": [], + "desecrates": [], + "Wheaties's": [], + "D": ["M"], + "improbably": [], + "buggies's": [], + "avenue": ["M", "S"], + "Shavian's": [], + "damselfly": ["S", "M"], + "orates": [], + "toolboxes": [], + "bi's": [], + "superpower's": [], + "aerodromes": [], + "maxim's": [], + "vocative's": [], + "Hausa's": [], + "endogenous": ["Y"], + "learner": ["M", "S"], + "arraigns": [], + "dyslectics's": [], + "dainty": ["R", "S", "M", "T", "P"], + "twerksed": [], + "squaliderly": [], + "stoic's": [], + "Boleyn": ["M"], + "registries's": [], + "wrinkliers": [], + "copywriter'ses": [], + "gobblers": [], + "pas": [], + "BBB": ["M"], + "shapely": ["P", "T", "R"], + "chanticleer": ["M", "S"], + "hoggishly": [], + "presumptions's": [], + "playrooms": [], + "decimateds": [], + "worriedly": [], + "handmaidens": [], + "bidirectional": ["Y"], + "freeze's": [], + "unicorn's": [], + "intellect's": [], + "wholeheartedly": [], + "brasherly": [], + "pill's": [], + "fullness": ["M"], + "Romero": ["M"], + "burglarized": [], + "hilly": ["P", "R", "T"], + "pitchforking": [], + "Martian's": [], + "Barbour": ["M"], + "quad's": [], + "Aconcagua": ["M"], + "psychodrama'ses": [], + "Polynesian": ["M", "S"], + "Verde": ["M"], + "putties": [], + "proportionality": [], + "pigeon": ["M", "S"], + "graced": [], + "jenny": ["S", "M"], + "rugs's": [], + "horseflies's": [], + "pupil'ses": [], + "rainmakers": [], + "hazily": [], + "jaywalkeder": [], + "northerly's": [], + "entwined": [], + "corkscrew's": [], + "savageries's": [], + "Gertrude": ["M"], + "rubbisheds": [], + "treatment's": [], + "disheveleding": [], + "Hindemith's": [], + "heptathlons": [], + "awards": [], + "Ganymede's": [], + "muttering": ["M"], + "aught'ses": [], + "eventuality": ["S", "M"], + "prostate": ["M", "S"], + "feta": ["M"], + "unsteadierness": [], + "boyhoods": [], + "blandish": ["D", "S", "L", "G"], + "madrasah's": [], + "perfect's": [], + "spur'ses": [], + "coffeecakes's": [], + "princess's": [], + "Lamaze": ["M"], + "Cleveland": ["M"], + "hotly": [], + "Culbertson's": [], + "transistorized": [], + "deliberation": [], + "jerkin's": [], + "tilteding": [], + "Khoikhoi's": [], + "veers": [], + "Thessaly": ["M"], + "erythrocytes's": [], + "screw": ["U", "D", "S", "G"], + "uploading": [], + "fragmentation": ["M"], + "budgeted": [], + "punch": ["M", "D", "R", "S", "Z", "G"], + "elucidations": [], + "gelatin": ["M"], + "Cyril's": [], + "foldout's": [], + "thunders": [], + "athirst": [], + "Celeste": ["M"], + "pouch's": [], + "jeroboam": ["S"], + "bores": [], + "Sonia": ["M"], + "importation's": [], + "backside's": [], + "undercoat's": [], + "amortizesing": [], + "Yemenis's": [], + "sunblock'ses": [], + "Minos's": [], + "Cassatt": ["M"], + "entombsing": [], + "wrangle": ["D", "R", "S", "M", "Z", "G", "J"], + "circuity": ["M"], + "mouser": ["M"], + "emotional": ["U", "Y"], + "appetizing": ["Y"], + "bend'ser": [], + "Arizona's": [], + "voltmeter": ["S", "M"], + "melancholic": ["S"], + "regression'ses": [], + "seminarians": [], + "bobbysoxer's": [], + "cloakroom'ses": [], + "autocrats's": [], + "josher": ["M"], + "Boru's": [], + "prearranged": [], + "raters": [], + "loather's": [], + "kitchenette'ses": [], + "sirocco": ["S", "M"], + "machetes": [], + "Podhoretz": ["M"], + "watercress": ["M"], + "unbar": [], + "perisher": [], + "infuse": [], + "skimming": [], + "mistypings": [], + "cocooneding": [], + "inundateds": [], + "fastening'ses": [], + "firelighters": [], + "automatingen": [], + "brunette'ses": [], + "tribalism's": [], + "mercies": [], + "Bukhara": ["M"], + "miserable": [], + "motorcars": [], + "bullhead": ["M", "D", "S"], + "perfunctory": [], + "simplistic": [], + "Ampere's": [], + "scrawny": ["P", "T", "R"], + "decadency's": [], + "pilchards": [], + "apothegm's": [], + "hobo'ses": [], + "Cypriots": [], + "beaned": [], + "scavengersing": [], + "Judaic": [], + "widenerers": [], + "keypunch's": [], + "atherosclerosis's": [], + "sonatas": [], + "theology's": [], + "trances": [], + "flask": ["S", "M"], + "nags's": [], + "photojournalists": [], + "frailerly": [], + "Christmastide": ["M", "S"], + "valedictories's": [], + "outsider": ["M"], + "constriction's": [], + "Warner's": [], + "emancipation's": [], + "handeding": [], + "twerks": [], + "shag": ["M", "S"], + "informativeness's": [], + "Herder's": [], + "positivists": [], + "sweats": ["M"], + "vertical'sly": [], + "rarest": [], + "trot's": [], + "cowhides": [], + "saunter": ["M", "D", "G", "S"], + "Grenadian's": [], + "potash's": [], + "Scorpios's": [], + "nacelle's": [], + "tangoeds": [], + "persist": ["S", "G", "D"], + "flyswatter'ses": [], + "implementer": [], + "singsongeding": [], + "lunatics": [], + "percale's": [], + "Scandinavian": ["M", "S"], + "palmiest": [], + "edgiest": [], + "slider": ["M"], + "breves's": [], + "dust's": [], + "ahem": [], + "lispersing": [], + "interpretative": [], + "demised": [], + "boutonnieres": [], + "queue's": [], + "scampsers": [], + "squished": [], + "norther's": [], + "Courbet's": [], + "vague": ["R", "Y", "T", "P"], + "phalanger": ["S", "M"], + "cougheding": [], + "garrotinged": [], + "disrepair": ["M"], + "carpetbag'ses": [], + "fashionable's": [], + "Margo": ["M"], + "mores": ["M"], + "ruddiness's": [], + "outside'sers": [], + "reanalysis": [], + "standers": [], + "Morley": ["M"], + "grenadiers": [], + "brunets": [], + "autopsyinged": [], + "reimbursements": [], + "beggar": ["M", "D", "Y", "G", "S"], + "turnbuckle": ["S", "M"], + "hallucinogens's": [], + "solidnesses": [], + "narcosis": ["M"], + "pheasant'ses": [], + "gnarl": ["S", "M", "D", "G"], + "shootouts": [], + "penuche's": [], + "spruceder": [], + "askew": [], + "throne": ["S"], + "tallyhoed": [], + "waxes": [], + "wafting": [], + "crawliest": [], + "Bjerknes": ["M"], + "holler's": [], + "tenuousnessly": [], + "potentials": [], + "thoughtlessness's": [], + "stepsister's": [], + "calmer": [], + "server's": [], + "excessively": [], + "skipped": [], + "sword": ["S", "M"], + "puncheon'ses": [], + "dozed": [], + "twinersing": [], + "emaciating": [], + "augureds": [], + "spelldowns": [], + "politicizes": [], + "expiration": ["M"], + "downpour's": [], + "libeleder": [], + "overhaul's": [], + "Agustin's": [], + "outplayinged": [], + "queue'sed": [], + "counterpoises": [], + "preventsing": [], + "dawdlinged": [], + "calumniateds": [], + "textured": [], + "garnet's": [], + "aggressivenessly": [], + "cabins": [], + "grenadier'ses": [], + "ovulated": [], + "outlandishnessly": [], + "pussyfootsing": [], + "expelling": [], + "exemptions": [], + "dado": ["M"], + "NM": [], + "ti's": [], + "candidacy's": [], + "beech's": [], + "dine": ["S"], + "bowline's": [], + "dyadic": [], + "discriminator's": [], + "amalgamates": [], + "navigation's": [], + "Debouillet's": [], + "plagiarizersing": [], + "picante": [], + "momentariness's": [], + "flotilla'ses": [], + "Douay's": [], + "ship": ["A", "L", "S"], + "suppurates": [], + "unlikelihood": [], + "masturbatingen": [], + "gnocchi": [], + "Ainu": ["M"], + "appallinged": [], + "concierge": ["M", "S"], + "misconducteding": [], + "meteor": ["M", "S"], + "Etna": ["M"], + "bulgiest": [], + "muscularly": [], + "Ravel": ["M"], + "scrumpy": [], + "pluming's": [], + "banshees": [], + "primogenitor": ["S", "M"], + "notion'ses": [], + "cutout's": [], + "grandam": ["M", "S"], + "regulateds": [], + "prepackaged": [], + "preset": ["S"], + "overbalance": ["M", "G", "D", "S"], + "jig's": [], + "tapered": [], + "yous's": [], + "stopcocks's": [], + "limpness": ["M"], + "support's": [], + "Plantagenet's": [], + "miscalls": [], + "risking's": [], + "Hindustanis's": [], + "Huffman": ["M"], + "subtitle": ["D", "S", "M", "G"], + "swank's": [], + "It": [], + "faltered": [], + "bracelet's": [], + "drugging": [], + "ostrich": ["M", "S"], + "mislaid": [], + "undergraduate": ["S", "M"], + "femaleness": ["M"], + "rabbinate": ["M"], + "playfellow's": [], + "Stein's": [], + "superintendent": ["S", "M"], + "ticktock's": [], + "distinguishinged": [], + "desiccate": ["D", "S", "G", "N"], + "advertisersing": [], + "serving's": [], + "petitioneder": [], + "Lew": ["M"], + "Beelzebub's": [], + "Mahayana's": [], + "penumbra'ses": [], + "veejays's": [], + "uninterrupted": ["Y"], + "blade'sed": [], + "adjuncts": [], + "stunned": [], + "dist": [], + "reasonerers": [], + "Tlingit": ["M"], + "linguists": [], + "technicians's": [], + "juntas": [], + "tractor": ["F", "C", "K", "M", "S"], + "bruins's": [], + "Ed": ["M", "N", "X"], + "combingses": [], + "lymphoma": ["S", "M"], + "elimination": ["M"], + "relevant": ["Y"], + "goldbrickersing": [], + "beaning's": [], + "Corleone's": [], + "Gary's": [], + "Alissa": ["M"], + "tuition's": [], + "nonnegotiable": [], + "pillow'sed": [], + "sanctums's": [], + "tetchiest": [], + "nixed": [], + "herpetology's": [], + "clotting": [], + "abalone's": [], + "consolations": [], + "Jessie's": [], + "fancyingness": [], + "wrinkling": [], + "acolyte's": [], + "blockhouse's": [], + "manhood's": [], + "Lenten": ["M"], + "shriveled": [], + "telephoners": [], + "Nashville's": [], + "evading": [], + "paneled": [], + "brimming": [], + "dressesed": [], + "headstone's": [], + "Latisha": ["M"], + "diagnostician's": [], + "saturatingen": [], + "shutter'sed": [], + "runarounds": [], + "approximately": [], + "caravansary's": [], + "amputated": [], + "centralizes": [], + "hawkers": [], + "bathers": [], + "scorch'sed": [], + "Lollard's": [], + "smeared": [], + "abbey": ["M", "S"], + "toolings": [], + "Teasdale's": [], + "Faberge's": [], + "Lowery's": [], + "secularization": ["M"], + "wrestle'sers": [], + "slantingly": [], + "vocal's": [], + "morpheme'ses": [], + "outmaneuver": ["G", "D", "S"], + "underestimation": ["M"], + "tow'sed": [], + "Gabriel": ["M"], + "green's": [], + "goalies": [], + "formals's": [], + "endings": [], + "Berra's": [], + "aloofness": ["M"], + "funkeding": [], + "hostage's": [], + "fuddles": [], + "excel": ["S"], + "pocketful": ["S", "M"], + "Alcindor's": [], + "escapists": [], + "cafetieres": [], + "superscript'ses": [], + "catnapping": [], + "boatyard": ["S"], + "DI": [], + "announce": ["D", "R", "S", "L", "Z", "G"], + "savviest": [], + "patenting": [], + "Wang's": [], + "spooking": [], + "Herefords's": [], + "marcher": ["M"], + "Uzi": ["S", "M"], + "AIDS": ["M"], + "lutetium": ["M"], + "wonderment's": [], + "punitively": [], + "gondolas": [], + "periscopes's": [], + "motets": [], + "fakeder": [], + "selflessness's": [], + "stolon": ["M", "S"], + "disapproving": [], + "micros's": [], + "clumsy": ["T", "R", "P"], + "levies's": [], + "Salvadorans's": [], + "Wankel": ["M"], + "canonization's": [], + "etcheder": [], + "driveling": [], + "grubs": [], + "megacycles": [], + "rs": [], + "capsulizeds": [], + "antidote": ["M", "S"], + "gripsers": [], + "aloes": [], + "Rigoberto's": [], + "pantries's": [], + "Newfoundland": ["M", "R", "S"], + "militarization's": [], + "pilaster'ses": [], + "MVP": ["M"], + "sloes": [], + "yodeled": [], + "servo'ses": [], + "heedless": ["P", "Y"], + "consumptives's": [], + "acyclovir": ["M"], + "insurrection": ["S", "M"], + "gilding's": [], + "gar": ["S", "L", "M"], + "Mariana's": [], + "peccary's": [], + "annotator's": [], + "timekeeping's": [], + "Collin": ["S", "M"], + "geldedings": [], + "Zapotec": ["M"], + "openhearted": [], + "Photostats": [], + "horsehide's": [], + "trials's": [], + "Pentax": ["M"], + "sedateder": [], + "Vila": ["M"], + "signalsers": [], + "tinkers's": [], + "insurer": ["M"], + "touchable": [], + "commute'sers": [], + "ramblers": [], + "clubber": ["S"], + "vanadium": ["M"], + "clashes": [], + "Midlands": [], + "scaliness": ["M"], + "decease": [], + "show": ["J", "Z", "G", "M", "D", "R", "S"], + "earned": ["U"], + "Brahe": ["M"], + "narcosis's": [], + "Samoa's": [], + "hullabaloos": [], + "absed": [], + "suffragist": ["M", "S"], + "Lenny": ["M"], + "interlocutory": [], + "exterminators": [], + "insertion's": [], + "Hartline's": [], + "unsung": [], + "martensite": [], + "aerialist": ["M", "S"], + "irreconcilability's": [], + "Cinderella": ["M", "S"], + "exaggerate": ["X", "D", "S", "G", "N"], + "leeks": [], + "storage": ["M"], + "McCoy's": [], + "patrolwoman's": [], + "subsistsed": [], + "mitoses": [], + "lesbianism's": [], + "lamination's": [], + "conflatesing": [], + "interweavings": [], + "cameo'ses": [], + "Cadiz's": [], + "fanlights": [], + "Birmingham's": [], + "trouncers": [], + "cyclotron's": [], + "guardeder": [], + "overreach": ["G", "D", "S"], + "McKnight's": [], + "mortician's": [], + "insignificance": [], + "echelon's": [], + "Li": ["M", "Y"], + "whittles": [], + "pomposity's": [], + "antiparticle": ["S", "M"], + "boondoggler": ["M"], + "ind": [], + "adumbration's": [], + "quire's": [], + "barcarole's": [], + "cardiogram's": [], + "comments's": [], + "douched": [], + "sparsity": ["M"], + "dogtrot": ["M", "S"], + "constructionist's": [], + "notabilities's": [], + "tamps": [], + "inkling": ["S", "M"], + "dips": [], + "atom": ["S", "M"], + "MGM's": [], + "proficient'sly": [], + "sequencing": ["M"], + "marquess's": [], + "slither'sed": [], + "melodious": ["Y", "P"], + "shamans": [], + "perceptiveness": ["M"], + "twinkling's": [], + "Rowe": ["M"], + "multiple's": [], + "Capetown": ["M"], + "postseason's": [], + "darkeneder": [], + "speciousness": ["M"], + "neural": ["Y"], + "agitationed": [], + "miscalculatingen": [], + "pesteringed": [], + "showiness": ["M"], + "polluting": [], + "frogmarchinged": [], + "Constantinople": ["M"], + "necrotic": [], + "covenants": [], + "divined": [], + "ramp": ["G", "M", "S"], + "pedal'sed": [], + "excising": [], + "stratum's": [], + "shimmery": [], + "wobbliness": ["M"], + "click's": [], + "celebrities": [], + "signs": [], + "Moldova's": [], + "arranges": [], + "beadier": [], + "fourscore's": [], + "Brownsville's": [], + "formally": [], + "cosmetician's": [], + "washbasin": ["S", "M"], + "timorousness's": [], + "socialized": [], + "Dreyfus's": [], + "stoniness": ["M"], + "spatial": ["Y"], + "predatesing": [], + "strain": ["F", "A", "D", "S", "G"], + "acetonic": [], + "update'sing": [], + "foreknow": ["G", "S"], + "intimation's": [], + "fractiousness": ["M"], + "vixenish": ["Y"], + "nomenclature": ["M", "S"], + "fingermarks": [], + "psychotic's": [], + "mirror": ["G", "S", "M", "D"], + "gashed": [], + "frill": ["S", "M", "D"], + "gondolier's": [], + "Spirograph": ["M"], + "phonies": [], + "franks": [], + "winnowing": [], + "alb's": [], + "Shi'ite's": [], + "askance": [], + "overstocking": [], + "learner'ses": [], + "jackhammers": [], + "pummel": ["S", "G", "D"], + "endearment's": [], + "Quito": ["M"], + "goldfinch's": [], + "fowled": [], + "enmeshment": ["M"], + "fig's": [], + "Maddox": ["M"], + "junk's": [], + "Paleocene's": [], + "realism": ["M"], + "flinches": [], + "variegatesing": [], + "loudhailer": ["S", "M"], + "came": [], + "detracting": [], + "alpha'ses": [], + "nicer": [], + "h'm": [], + "sharpeden": [], + "axiom": ["S", "M"], + "cube": ["M", "S"], + "billionaire": ["S", "M"], + "montages": [], + "embowersing": [], + "exercises's": [], + "frangibility": ["M"], + "transporteder": [], + "intransigent'sly": [], + "welter'sed": [], + "hardball": ["M"], + "aggravateds": [], + "avoid": ["S", "D", "G", "B"], + "Liliuokalani's": [], + "solidified": [], + "dies's": [], + "while'sing": [], + "swarmed": [], + "tenderness's": [], + "astatine's": [], + "chummier": [], + "fleeting": [], + "rotundity's": [], + "Flores": ["M"], + "gelatinous": [], + "chambray": ["M"], + "inculpates": [], + "six's": [], + "Scottish": ["M"], + "tornadoes": [], + "leaneder": [], + "eardrum": ["S", "M"], + "outdraws": [], + "inhospitably": [], + "Wesak's": [], + "cultivatingen": [], + "feistier": [], + "viscus": ["M"], + "basics": [], + "commodities's": [], + "rear": ["G", "M", "D", "S"], + "drillerers": [], + "prop'ses": [], + "brancheds": [], + "Alana": ["M"], + "unexposed": [], + "gametes": [], + "busterers": [], + "defamers": [], + "oracle's": [], + "nightclubbed": [], + "permitted": [], + "cinematographic": [], + "tongings": [], + "pickpockets's": [], + "modishliness": [], + "Tamerlane's": [], + "lavisher": [], + "Guelph's": [], + "sightliest": [], + "flex": ["A", "M", "S"], + "forequarter": ["M", "S"], + "curiosities": [], + "discreetness": ["M"], + "Hydra's": [], + "jotters": [], + "expurgation": ["M"], + "Mercuries's": [], + "racing's": [], + "Terri": ["M"], + "ophthalmologist's": [], + "docketing": [], + "MS's": [], + "attractants": [], + "glimmer": ["M", "D", "G", "J", "S"], + "congregational": [], + "Clausius": ["M"], + "extenuated": [], + "manually": [], + "proliferating": [], + "patellas": [], + "Sarah": ["M"], + "holler'sed": [], + "unpredictably": [], + "Beijing": ["M"], + "pantomiming": [], + "elevatesing": [], + "sodium": ["M"], + "showingsers": [], + "ambassadresses": [], + "newlywed": ["S", "M"], + "bonfire's": [], + "Stein'ser": [], + "succor": ["S", "G", "M", "D"], + "handsprings": [], + "whet": ["S"], + "Clifford's": [], + "rabbeting's": [], + "Mojave's": [], + "misquotation": ["M", "S"], + "quietlications": [], + "checkmateds": [], + "snowboarded": [], + "gammas's": [], + "rest": ["G", "V", "M", "D", "S"], + "Judaeo": [], + "boo's": [], + "geniality's": [], + "denote": [], + "aridity's": [], + "overreached": [], + "Berliners's": [], + "correspondences's": [], + "inconvenienced": [], + "pad's": [], + "enchains": [], + "besom'ses": [], + "Vickie's": [], + "birdcages": [], + "pronghorn'ses": [], + "picturesquely": [], + "bashing": ["M"], + "waterwheels": [], + "analyst": ["S", "M"], + "manicure": ["M", "G", "D", "S"], + "precautionary": [], + "rapist's": [], + "episcopal": [], + "merchantman's": [], + "turmoils": [], + "playlists": [], + "woodcuts": [], + "Mahabharata": ["M"], + "Pict's": [], + "allegretto'ses": [], + "fight's": [], + "deciliter's": [], + "seldom": [], + "Estella's": [], + "meaninglessness's": [], + "bruiser": ["M"], + "muscatels": [], + "claimed": ["U"], + "leisured's": [], + "Diophantine's": [], + "huger": [], + "mysteriousnessly": [], + "grinding": [], + "sign's": ["C"], + "thwacking": [], + "sermons's": [], + "hardeninged": [], + "slag": ["M", "S"], + "muddyinged": [], + "paragraph's": [], + "ranees": [], + "Carolingian": ["M"], + "toastmistresses": [], + "cupboards's": [], + "formaldehyde": ["M"], + "Khwarizmi": ["M"], + "pestleds": [], + "Lubumbashi": ["M"], + "prosecutor'ses": [], + "unclearer": [], + "profaneness": ["M"], + "ergot's": [], + "hepatocytes": [], + "typify": ["N", "G", "D", "S"], + "engendering": [], + "Sancho": ["M"], + "cooking": ["M"], + "pumpersing": [], + "Pythias": ["M"], + "scrumpsing": [], + "minibuses": [], + "petabyte": ["M", "S"], + "Lessie's": [], + "placation's": [], + "analog'ses": [], + "legitimize": ["D", "S", "G"], + "patriarchates": [], + "Frisian'ses": [], + "invitee's": [], + "correction's": [], + "stench's": [], + "pulpwood": ["M"], + "pornography": ["M"], + "coalescence": ["M"], + "protectionism": ["M"], + "klutzy": ["T", "R", "P"], + "haulage": ["M"], + "breach'sed": [], + "Chung's": [], + "mayors's": [], + "Providences's": [], + "pianoforte's": [], + "Salas": ["M"], + "hunk's": [], + "geosyncline": ["M", "S"], + "nighties's": [], + "outwitted": [], + "justified": ["U"], + "excludes": [], + "excludinged": [], + "Tide's": [], + "anvils": [], + "overture's": [], + "bizarre": ["Y"], + "compulsion's": [], + "sacerdotal": [], + "eatener": [], + "superegos": [], + "Brazilian's": [], + "freestyle's": [], + "retinue": ["S", "M"], + "bluebonnet's": [], + "constitution": ["A", "M"], + "toxins's": [], + "clxi": [], + "furnaces's": [], + "admissibility": ["I", "M"], + "isle'ses": [], + "datebooks": [], + "sleight": ["S", "M"], + "Castilian": [], + "stick's": [], + "charcoal's": [], + "o": [], + "Pogo": ["M"], + "foolery": ["S", "M"], + "nettled": [], + "trillion's": [], + "Elisa": ["M"], + "relabel": [], + "rearguards": [], + "evangelism's": [], + "honoring's": [], + "sheave": ["D", "S", "M", "G"], + "monkey's": [], + "placer": ["S", "M"], + "providing": [], + "Homer": ["M"], + "Karla": ["M"], + "thane's": [], + "methadone": ["M"], + "Toulouse": ["M"], + "Hoovers": [], + "inditeds": [], + "figurehead's": [], + "escape": ["L", "M", "G", "D", "S"], + "mottles": [], + "gap's": [], + "carpus": ["M"], + "sickie": ["M", "S"], + "parfait'ses": [], + "tidied": [], + "semiweekly's": [], + "Schwarzenegger's": [], + "wherefores": [], + "ohmmeter'ses": [], + "empire": ["S", "M"], + "pickaxes": [], + "segments's": [], + "prodigious": ["Y"], + "corruptnesses": [], + "equinoctial": [], + "blackthorn": ["S", "M"], + "riddles": [], + "arrangements": [], + "horseback": ["M"], + "zeitgeist": ["S", "M"], + "rouging": [], + "asksed": [], + "Leif's": [], + "somebodies": [], + "geometry's": [], + "impassiveliness": [], + "daft": ["P", "T", "R", "Y"], + "Kringle's": [], + "Bruneians": [], + "Piccadilly's": [], + "tenures": [], + "henpecks": [], + "modishness's": [], + "Benita": ["M"], + "Hamlet's": [], + "confinement'ses": [], + "indicated": [], + "levy": ["D", "R", "S", "M", "Z", "G"], + "collateral'sly": [], + "popularly": [], + "Sang": ["M", "R"], + "stripper": ["M", "S"], + "gullet": ["M", "S"], + "Douglas": ["M"], + "bastardizing": [], + "bugles's": [], + "shinbone's": [], + "champ's": [], + "Skype": ["M"], + "Saul": ["M"], + "downside's": [], + "lover's": [], + "lucubrate": ["G", "N", "D", "S"], + "locket": ["M", "S"], + "milquetoast's": [], + "disinflation": [], + "vines": [], + "parchment": ["S", "M"], + "strobe": ["M", "S"], + "Alphard": ["M"], + "overindulges": [], + "Audion's": [], + "dreaminess's": [], + "sputtering": [], + "trike": ["S", "M"], + "pricked": [], + "homages": [], + "snood": ["S", "M"], + "evaluates": [], + "tingle'sing": [], + "kisser's": [], + "halinged": [], + "rose's": [], + "shorting": [], + "ligationed": [], + "screwiness's": [], + "taffy": ["S", "M"], + "Sudra's": [], + "dolled": [], + "bellybuttons": [], + "poop's": [], + "spinners": [], + "signposts's": [], + "Venezuelan's": [], + "enrage": ["G", "D", "S"], + "scoundrel's": [], + "bartenders's": [], + "incises": [], + "Onondaga'ses": [], + "distribute": ["A", "G", "N", "V", "D", "S"], + "organisms": [], + "Charybdis": ["M"], + "Southerners": [], + "enemas": [], + "breach": ["G", "M", "D", "S"], + "crispeder": [], + "intestate": [], + "McCoy": ["M"], + "waxwings": [], + "chargers": [], + "leitmotiv'ses": [], + "Bialystok": ["M"], + "Lucites's": [], + "splinters": [], + "yellow": ["M", "D", "R", "T", "G", "P", "S"], + "blending's": [], + "hurrahs": [], + "Rodriguez": ["M"], + "scope'sing": [], + "clapboarded": [], + "swoon": ["S", "G", "M", "D"], + "emf": ["S"], + "Krista's": [], + "Scots": [], + "octane's": [], + "Sears": ["M"], + "slip's": [], + "meiotic": [], + "cheeseparing": ["M"], + "matter's": [], + "dumpsites": [], + "sup'ser": [], + "autumn's": [], + "jealousy": ["S", "M"], + "overgrew": [], + "pa": ["S", "M", "H"], + "interrogating": [], + "birthersing": [], + "chesty": ["T", "R"], + "cosmetologist'ses": [], + "mugshot's": [], + "inspect": ["A", "G", "D", "S"], + "synthesizinged": [], + "flouters": [], + "chamber's": [], + "frog": ["M", "S"], + "fanatical": ["Y"], + "dogfish's": [], + "muckrake": ["D", "R", "S", "Z", "G"], + "profound": ["R", "Y", "T", "P"], + "falter": ["G", "S", "J", "M", "D"], + "lumber": ["M", "D", "R", "Z", "G", "S"], + "Cambodians": [], + "strikinger": [], + "tinges's": [], + "dispiriteds": [], + "PS's": [], + "turboprop": ["S", "M"], + "noddle'ses": [], + "aerates": [], + "rhubarb": ["M", "S"], + "velveteen": ["M"], + "abedly": [], + "yokels's": [], + "unguent": ["S", "M"], + "Gospels": [], + "ye": ["R", "S", "T"], + "gravy": ["S", "M"], + "fens's": [], + "muralist": ["S", "M"], + "hotshot": ["M", "S"], + "pizzazz's": [], + "redcoat's": [], + "lazy": ["D", "R", "S", "T", "G", "P"], + "Franks's": [], + "Changchun's": [], + "fiefs": [], + "polyethylene's": [], + "shaping": [], + "woodcut's": [], + "overcome": ["G", "S"], + "minicabs": [], + "crooks's": [], + "runways's": [], + "sunshine's": [], + "musician'sly": [], + "glazes's": [], + "charger's": [], + "little's": [], + "shoaled": [], + "demonstrability": [], + "telemetries's": [], + "idyllic": [], + "Julia's": [], + "walleyes's": [], + "tailgating": [], + "Weyden": ["M"], + "presidium": ["M"], + "distillery's": [], + "forehand'ses": [], + "committee": ["S", "M"], + "conflicts": [], + "elder'sly": [], + "persevereds": [], + "newsgroups": [], + "obsolescesing": [], + "fjord": ["S", "M"], + "culverts": [], + "parasitical": ["Y"], + "mustachio": ["S", "M", "D"], + "constant's": [], + "Utopia": ["S", "M"], + "lifelessness's": [], + "suiteding": [], + "Jewesses": [], + "escapades": [], + "tinderbox": ["M", "S"], + "sylphlike": [], + "somberly": [], + "presupposeds": [], + "slope's": [], + "afterbirth's": [], + "fawner's": [], + "innumerate": [], + "isotherm's": [], + "archived": [], + "etchesers": [], + "yearbook": ["M", "S"], + "transgresseds": [], + "unclogged": [], + "incompetents": [], + "yule": ["M"], + "deviationens": [], + "ordinances": [], + "proffers": [], + "canine's": [], + "Aeroflot's": [], + "Anacin": ["M"], + "cyclotron'ses": [], + "hypocritical": ["Y"], + "Monrovia": ["M"], + "sleeper's": [], + "stretching": [], + "facial": ["S", "M", "Y"], + "catafalques": [], + "abstract'sed": [], + "Birdseye's": [], + "laparotomy": [], + "butterier": [], + "overfed": [], + "vacillations": [], + "pornographer'ses": [], + "steppeder": [], + "miscegenation's": [], + "Galilee": ["M"], + "layering": ["M"], + "Prozac'ses": [], + "uploads": [], + "phis": [], + "Wozniak": ["M"], + "flounders": [], + "smileds": [], + "factions's": [], + "straws": [], + "Brant": ["M"], + "somnambulists": [], + "teethes": [], + "Eleanor": ["M"], + "forebodingsed": [], + "legitimatize": ["G", "D", "S"], + "foreknowings": [], + "instability": ["S"], + "tonsures's": [], + "epithets": [], + "Lestrade's": [], + "drumming": [], + "levitating": [], + "prolixity's": [], + "languidnessly": [], + "whites": [], + "regexps": [], + "acclimatizeds": [], + "additions": [], + "titivatesing": [], + "copulate": ["G", "N", "V", "D", "S"], + "mistyping": [], + "novels": [], + "deceased's": [], + "anathematized": [], + "aptitude's": [], + "tokes": [], + "suit's": [], + "countersinks's": [], + "stylishness's": [], + "pi": ["S", "M", "D", "R", "H", "Z", "G"], + "accomplishesment": [], + "knuckledusters": [], + "curriculum's": [], + "Slavs's": [], + "slat": ["M", "D", "G", "S"], + "stateswoman": ["M"], + "magnesia's": [], + "addiction's": [], + "reboils": [], + "fellers": [], + "dependent'sly": [], + "Cathleen": ["M"], + "assortment'ses": [], + "demographic's": [], + "Helga's": [], + "wangled": [], + "sightsings": [], + "reemerge": [], + "TB's": [], + "crunchers": [], + "Kaposi": ["M"], + "crufted": [], + "timeliness": ["U", "M"], + "reboot": [], + "outbreak": ["M", "S"], + "ponchos's": [], + "expropriators's": [], + "slowdowns": [], + "trumped": [], + "powder's": [], + "importable": [], + "earphone's": [], + "sextet'ses": [], + "mayhem's": [], + "Democrats's": [], + "Paraclete": ["M"], + "Bridgman's": [], + "perm": ["M", "D", "S", "G"], + "quips": [], + "Pl": [], + "repellent's": [], + "cannonadeds": [], + "resents": [], + "redskin's": [], + "Bonaparte's": [], + "capably": ["I"], + "nieces": [], + "Mrs": [], + "Provencal": ["M", "S"], + "Wilkerson": ["M"], + "calk'sed": [], + "acknowledging": [], + "scabies": ["M"], + "battering": [], + "Biden's": [], + "loop'sed": [], + "sciatic": [], + "tariff's": [], + "fizzling": [], + "unclogging": [], + "attune": ["D", "S", "G"], + "enablersing": [], + "ephemeral": ["Y"], + "Mohaves's": [], + "steepliness": [], + "serviceability's": [], + "axesing": [], + "drillmasters's": [], + "octane'ses": [], + "bismuth's": [], + "rowlock": ["S"], + "Sterno": ["M"], + "paddling": [], + "prudish": ["Y", "P"], + "earpiece": ["S"], + "suspecting": [], + "tinfoil": ["M"], + "cadet'ses": [], + "borrows": [], + "brick'sed": [], + "Novokuznetsk": ["M"], + "perihelia": [], + "femininely": [], + "parasites": [], + "mentalist": ["S", "M"], + "parboileds": [], + "tilleder": [], + "sunniest": [], + "gasmen": [], + "anecdote'ses": [], + "squeegee's": [], + "extrude": ["G", "D", "S"], + "advertising's": [], + "Lambert's": [], + "pwns": [], + "Yunnan": ["M"], + "intermediary": ["S", "M"], + "higherly": [], + "selfsame": [], + "freebase'sing": [], + "armholes": [], + "trustee": ["M", "S"], + "economized": [], + "skyscraper's": [], + "facilitation": ["M"], + "hoe's": [], + "torque's": [], + "soled": [], + "tubercle's": [], + "blini's": [], + "ergonomics": ["M"], + "horseback's": [], + "bulletined": [], + "grate": ["D", "R", "S", "M", "Z", "G", "J"], + "solemnities's": [], + "debilitation": ["M"], + "cabstands's": [], + "exquisitely": [], + "forecasterers": [], + "Inge": ["M"], + "escapinged": [], + "celebrationens": [], + "frailty's": [], + "Agustin": ["M"], + "lass'ses": [], + "maneuvereding": [], + "anion's": [], + "paranoiacs": [], + "splay": ["S", "M", "D", "G"], + "irreconcilability": ["M"], + "playground": ["S", "M"], + "gunnysacks": [], + "ailerons": [], + "amalgamation": ["M"], + "talus's": [], + "overblown": [], + "annoyance'ses": [], + "piggybackeds": [], + "atelier's": [], + "hierarchy's": [], + "suit": ["B", "M", "D", "G", "S"], + "secondeder": [], + "pontificates": [], + "suppurated": [], + "whammies's": [], + "Berlin's": [], + "tyrannizinged": [], + "blades": [], + "Sappho": ["M"], + "checksum": [], + "impasses's": [], + "curds": [], + "screeds": [], + "Calvin's": [], + "evokesing": [], + "underachieves": [], + "quartos": [], + "prayer": ["M"], + "overrateds": [], + "amidships": [], + "paraphrases": [], + "explicated": [], + "rancidness": ["M"], + "Boreas's": [], + "weirdness": ["M"], + "androids's": [], + "tonearm's": [], + "distilleries": [], + "sleigh": ["M", "D", "G"], + "remanded": [], + "nominateds": [], + "canvasing": [], + "new'ser": [], + "moralization": ["C", "M"], + "Atahualpa": ["M"], + "itinerant's": [], + "slothfully": [], + "hybridizesing": [], + "sunshiny": [], + "augured": [], + "scare": ["M", "S"], + "qualifiers": [], + "busheling": [], + "trendiers": [], + "custodian's": [], + "Gorgonzola": ["M"], + "trug": ["S"], + "inflecting": [], + "Saiph": ["M"], + "reindeer": ["M"], + "Carlin": ["M"], + "chigger": ["M", "S"], + "eighties's": [], + "UFO": ["S", "M"], + "Lucio's": [], + "principals's": [], + "Holstein": ["S", "M"], + "monetizinged": [], + "prevaricationens": [], + "urbanized": [], + "snagged": [], + "seareds": [], + "venturesomeness's": [], + "keypunchersing": [], + "exhibitionism's": [], + "preservabled": [], + "incomprehensibly": [], + "wiving": [], + "smuggling's": [], + "execution": ["Z", "M", "R"], + "dungaree'ses": [], + "torments's": [], + "weatherman's": [], + "eulogies": [], + "enthusiastic": ["U"], + "organizesed": [], + "settlers's": [], + "sharpie": ["M", "S"], + "template's": [], + "shaft'sed": [], + "perch's": [], + "volunteer's": [], + "copperheads's": [], + "parakeets's": [], + "Algeria": ["M"], + "inspectorate's": [], + "castle's": [], + "ninnies": [], + "admits": [], + "renew": ["D", "S", "B", "G"], + "Jess's": [], + "hyperthyroid's": [], + "capital'ses": [], + "fraternities": [], + "thumbs's": [], + "palm": ["M", "D", "S", "G"], + "funking": [], + "yesterday": ["M", "S"], + "hums's": [], + "pumices's": [], + "spousal's": [], + "zillion": ["M", "S"], + "headroom's": [], + "goulash": ["M", "S"], + "romeos": [], + "ringer": ["M"], + "nationalizeds": [], + "synthesis's": [], + "unsnarl": [], + "trap's": [], + "conciseness": ["M"], + "steepest": [], + "philologist'ses": [], + "stoking": [], + "redividinged": [], + "maundereding": [], + "pest": ["M", "R", "S", "Z"], + "Christians's": [], + "economizing": [], + "Beethoven": ["M"], + "paciest": [], + "cottages": [], + "combustibility": ["M"], + "secondhand": [], + "sneezing": [], + "rubberneck'sed": [], + "tunnel": ["J", "S", "M", "D", "R", "Z", "G"], + "caboodle's": [], + "put": ["I", "S", "M"], + "grouping": ["M"], + "subterranean": [], + "nonfatal": [], + "Vindemiatrix": ["M"], + "launcher": ["S", "M"], + "bedchambers": [], + "cacophony's": [], + "Ats's": [], + "ambiguously": [], + "catastrophically": [], + "Johanna": ["M"], + "luffeds": [], + "Gienah's": [], + "reformatories": [], + "Panasonic's": [], + "resits": [], + "leanest": [], + "sifteder": [], + "bendable": [], + "wagtail's": [], + "lifters": [], + "checkouts's": [], + "bullfinch's": [], + "vaporizersing": [], + "oceanology's": [], + "weatherboards": [], + "unpalatable": [], + "collocates": [], + "renal": [], + "flagmen": [], + "mopeds's": [], + "censor'sed": [], + "chuntered": [], + "floret": ["S", "M"], + "vamoose": ["D", "S", "G"], + "bray": ["D", "G", "S", "M"], + "standardize": ["D", "S", "G"], + "stirringly": [], + "sharpening": [], + "rigs": [], + "blithe": ["P", "Y", "T", "R"], + "risinger": [], + "brutalizing": [], + "maidservant's": [], + "tasteful": ["E", "P", "Y"], + "waddleds": [], + "atlases": [], + "Tyrolean": [], + "Toyota's": [], + "summoned": [], + "parer's": [], + "hooked": [], + "swab'ses": [], + "suburban": ["S", "M"], + "Jesuit": ["M", "S"], + "allege": ["G", "D", "S"], + "proper'ser": [], + "hiccupings": [], + "Lilian": ["M"], + "Cid": ["M"], + "appraisesing": [], + "protection's": [], + "biannually": [], + "ecclesiastical": ["Y"], + "weaseling": [], + "postmenopausal": [], + "Anselmo's": [], + "softhearted": [], + "repetitiously": [], + "tipsierness": [], + "merriment's": [], + "sleepierness": [], + "grunt": ["S", "G", "M", "D"], + "Venetian's": [], + "tailspin's": [], + "gr": [], + "dilatory": [], + "float": ["S", "M", "D", "R", "Z", "G"], + "thirteen": ["S", "M", "H"], + "Falstaff": ["M"], + "auditoriums": [], + "luncheds": [], + "telexed": [], + "cola": ["M", "S"], + "varnishing's": [], + "convalesce": ["D", "S", "G"], + "Sindhi": ["M"], + "distentions's": [], + "speechifieds": [], + "wasted": [], + "escapade'ses": [], + "boutique's": [], + "telecommuters": [], + "pigeonhole's": [], + "discrepant": [], + "acreage": ["M", "S"], + "diddling": [], + "Alistair's": [], + "old": ["T", "M", "N", "R", "P"], + "trouncing": [], + "stickup's": [], + "choosersing": [], + "spindly": ["T", "R"], + "incorporated": ["U"], + "wateriness's": [], + "cedesed": [], + "knishes": [], + "lucubrateds": [], + "organ'ses": [], + "archaist": ["M", "S"], + "wrinklies": [], + "optical": ["Y"], + "quirts": [], + "Chartres's": [], + "adhesive": ["P", "S", "M"], + "Brahmas": [], + "flatterersing": [], + "roundhouses": [], + "spicule's": [], + "plasterersing": [], + "microdots's": [], + "Th's": [], + "novel": ["S", "M"], + "integuments's": [], + "dielectric'ses": [], + "Miltonic": ["M"], + "grocer": ["M", "S"], + "Slovene's": [], + "variety's": [], + "shriving": [], + "faintest": [], + "permuted": [], + "freckled": [], + "apostles": [], + "ninety": ["H", "S", "M"], + "Crowley's": [], + "schoolsing": [], + "Essex's": [], + "apropos": [], + "oxidized": [], + "tripodal": [], + "opposition": ["M"], + "Dunlap's": [], + "pallets": [], + "globalism's": [], + "glance's": [], + "coincidentally": [], + "Yoko": ["M"], + "nastiness": ["M"], + "meatiest": [], + "caramelizesing": [], + "workflow": ["M", "S"], + "couscous's": [], + "speedwell's": [], + "desiccating": [], + "radiotelephone'ses": [], + "Johnston": ["M"], + "bespatterings": [], + "Welsh's": [], + "I": ["M"], + "fondues": [], + "Yosemite's": [], + "mutilations": [], + "Romulus's": [], + "esoterically": [], + "outline's": [], + "Danny": ["M"], + "denunciation's": [], + "stereoscopic": [], + "tomahawked": [], + "seductresses": [], + "fun": ["M"], + "sense's": [], + "ululate": ["D", "S", "G", "N", "X"], + "bacteriology's": [], + "dirndl": ["S", "M"], + "Dutchmen": ["M"], + "briskerly": [], + "ozone's": [], + "Holiday": ["M"], + "incapacitate": ["G", "D", "S"], + "cohabit": ["S", "G", "D"], + "chest'sed": [], + "ballyhoo'sed": [], + "haughty": ["P", "R", "T"], + "scalpels": [], + "kit's": [], + "begun": [], + "gofers": [], + "windflowers": [], + "massacred": [], + "plops": [], + "meld's": [], + "profaned": [], + "promenaded": [], + "Cruikshank's": [], + "slanteding": [], + "alterables": [], + "carnivorously": [], + "overgrowth's": [], + "gaunt": ["R", "P", "T"], + "arrhythmic": [], + "canonizing": [], + "superstructure's": [], + "beaters": [], + "piping": ["M"], + "frenzies": [], + "splashier": [], + "curvier": [], + "vexation": ["S", "M"], + "headland'ses": [], + "flume's": [], + "fumbled": [], + "jaywalkersing": [], + "andirons's": [], + "noseds": [], + "inertness": ["M"], + "upstate": ["M"], + "applies": [], + "radiometer'ses": [], + "linkmen": [], + "stenos's": [], + "parathion": ["M"], + "Balaton's": [], + "pr": [], + "violence's": [], + "manicuring": [], + "universalizeds": [], + "ninetieth's": [], + "postmodernist": ["M", "S"], + "corpulence's": [], + "laxerly": [], + "derogatorily": [], + "watermills": [], + "lure": ["M", "G", "D", "S"], + "verdigris's": [], + "reviled": [], + "epicenters": [], + "fawns": [], + "repudiators": [], + "Sinkiang": ["M"], + "yes's": [], + "rifted": [], + "misapprehension'ses": [], + "pollutes": [], + "slateding": [], + "ultrasounds": [], + "electrode's": [], + "Praetorian": ["M"], + "performative": [], + "fomented": [], + "verbenas's": [], + "achene": ["M", "S"], + "prosecutionsing": [], + "arum's": [], + "reimbursabled": [], + "mermaids's": [], + "sting": ["Z", "G", "S", "M", "R"], + "Zoroastrian'ses": [], + "polity": ["S", "M"], + "callusing": [], + "individuateds": [], + "antiviral": ["M", "S"], + "coninfusion": [], + "battlefield's": [], + "Mitford's": [], + "educing": [], + "parlor": ["M", "S"], + "reproachful": ["Y"], + "sundial's": [], + "infusers's": [], + "blanch": ["G", "D", "S"], + "demurenessly": [], + "Kandahar": ["M"], + "epileptic's": [], + "normalized": [], + "yield": ["J", "S", "G", "M", "D"], + "gatecrasheder": [], + "pusillanimously": [], + "escalator's": [], + "refillable": [], + "ought": [], + "Janus": ["M"], + "itemization's": [], + "rifles": [], + "Russell's": [], + "associatingen": [], + "opalescence": ["M"], + "brainstorms's": [], + "covenant": ["M", "D", "S", "G"], + "aura'ses": [], + "bank'sed": [], + "phloem's": [], + "spur": ["M", "S"], + "ratio'ses": [], + "dukedom's": [], + "anarchist": ["M", "S"], + "episode's": [], + "fundraiser": ["M", "S"], + "gladdened": [], + "toggle'sing": [], + "deems": [], + "Set's": [], + "husker": ["M"], + "draper": ["M"], + "suffix": ["M", "D", "S", "G"], + "tested": ["U"], + "duckbills": [], + "Franklin": ["M"], + "plumes": [], + "snipes's": [], + "deckhands": [], + "thumbscrew's": [], + "Nile's": [], + "irateliness": [], + "tribute's": [], + "prisoners's": [], + "seahorse's": [], + "grumps": [], + "homeopath's": [], + "great": ["S", "M", "R", "Y", "P", "T"], + "sprouted": [], + "sedan": ["M", "S"], + "monthly's": [], + "prenatal": ["Y"], + "Muskogee": ["M"], + "Karenina's": [], + "fleetness": ["M"], + "lathe": ["M"], + "dumbness": ["M"], + "decapitator": ["M", "S"], + "Trent": ["M"], + "misplaces": [], + "magpie's": [], + "adversary's": [], + "stippling's": [], + "Herefords": [], + "businessmen": [], + "planning": ["S"], + "flutter's": [], + "Kwakiutl": ["M"], + "pestering": [], + "ageds": [], + "disappear": [], + "highballs": [], + "piebalds": [], + "Jagiellon's": [], + "dilator": ["S", "M"], + "rapaciousness": ["M"], + "lather's": [], + "afternoon's": [], + "Aeolus's": [], + "knackeringed": [], + "bifurcations": [], + "immure": ["D", "S", "G"], + "midi's": [], + "bierers": [], + "Carmela": ["M"], + "pulsars's": [], + "alkali's": [], + "antibody": ["S", "M"], + "showplace": ["S", "M"], + "frontbencherser": [], + "Soave's": [], + "cache": ["M", "G", "D", "S"], + "accessible": ["I"], + "actuated": [], + "creditable's": [], + "effluents": [], + "Punjab's": [], + "hourglass'ses": [], + "escudo": ["S", "M"], + "aligner's": [], + "autodidacts": [], + "jimmy": ["D", "S", "M", "G"], + "replicationens": [], + "neutrals": [], + "islet": ["S", "M"], + "retrievers": [], + "hose'sing": [], + "paraphrase's": [], + "squealersing": [], + "danginged": [], + "moderatingen": [], + "hawker": ["M"], + "Hawking's": [], + "chaperonage's": [], + "amputationed": [], + "horde'sing": [], + "Iapetus": ["M"], + "fomentation's": [], + "trolling": [], + "sending": [], + "egregiously": [], + "separability's": [], + "crevices": [], + "Chen's": [], + "polystyrene": ["M"], + "megalomaniac's": [], + "blameless": ["Y", "P"], + "bluebell'ses": [], + "lama'ses": [], + "Gerable": [], + "wrinkled": ["U"], + "dogleg's": [], + "boondogglersing": [], + "intelligentsia": ["M"], + "superintends": [], + "mealymouthed": [], + "gestateds": [], + "bombsite": ["S"], + "reaching": [], + "spoonbills": [], + "Howe": ["M"], + "bob": ["S", "M"], + "killer's": [], + "tetchinesser": [], + "call": ["A", "S", "G", "M", "D"], + "crosspatch'ses": [], + "inscrutable": ["P"], + "cumulative": ["Y"], + "excuseds": [], + "knockout": ["S", "M"], + "handguns": [], + "Friedan": ["M"], + "assimilation's": [], + "Persians": [], + "sympathetically": ["U"], + "merino'ses": [], + "estrangesing": [], + "Pilate": ["M", "S"], + "likeliest": [], + "womanizing": [], + "pronounceable": ["U"], + "leaf's": [], + "poulticing": [], + "seeped": [], + "anatomist's": [], + "tinkerersing": [], + "monkey'sed": [], + "universes": [], + "accent": ["M", "D", "S", "G"], + "nightgown's": [], + "candlepower": ["M"], + "hornier": [], + "rubberneck": ["M", "D", "R", "S", "Z", "G"], + "bead'sed": [], + "wardrooms": [], + "studentship": ["S"], + "Whitehorse's": [], + "sweetheart's": [], + "choirmasters": [], + "cassette's": [], + "antilabor": [], + "plenipotentiary's": [], + "cervices": [], + "stolidest": [], + "lopsided": ["Y", "P"], + "meridians": [], + "journeyersing": [], + "indictinged": [], + "guesstimates's": [], + "clinker": ["M"], + "gastroenteritis": ["M"], + "salesmen": [], + "gladiators": [], + "diverticulitis": ["M"], + "ascetically": [], + "lamp's": [], + "uncombined": [], + "eschewed": [], + "wileds": [], + "Brazzaville's": [], + "bores's": [], + "stakeout's": [], + "buckings": [], + "beautifying": [], + "condominium": ["M", "S"], + "enamel'sed": [], + "subprograms": [], + "stern'ser": [], + "eclogues's": [], + "dawdling": [], + "zinfandel": ["M"], + "nor'easter": [], + "syndromes's": [], + "sleaze's": [], + "phoneme's": [], + "lawn's": [], + "blurs's": [], + "flypaper's": [], + "disconcerting": ["Y"], + "wackos": [], + "catechist's": [], + "mild": ["M", "R", "Y", "T", "P"], + "whir": ["M", "S"], + "Lesotho": ["M"], + "Paar's": [], + "drinkablings": [], + "restfuller": [], + "randoms": [], + "bunghole": ["M", "S"], + "roughshod": [], + "sowed": [], + "gainsays": [], + "lodestone's": [], + "colorizesing": [], + "asshole's": [], + "commensurate": ["I", "Y"], + "unbaptized": [], + "belts": [], + "abscess'sed": [], + "tripartite": [], + "overwrite": ["G", "S"], + "verbalizing": [], + "ultraconservatives": [], + "noel's": [], + "debauchesing": [], + "chanter": ["M"], + "adenine's": [], + "disassembly": [], + "palindrome's": [], + "discreeterly": [], + "subcategories's": [], + "lampshade's": [], + "Cranach": ["M"], + "tine": ["M", "S"], + "confiscationens": [], + "rootkit's": [], + "pillow's": [], + "balmy": ["R", "T", "P"], + "tryinged": [], + "acronyms": [], + "Philip'ses": [], + "sitar": ["S", "M"], + "suds": ["M"], + "pimples's": [], + "odium": ["M"], + "awake": ["G", "S"], + "minarets": [], + "Essene": ["M"], + "compression": ["C", "M"], + "daiquiri": ["M", "S"], + "saguaros": [], + "Chambers": ["M"], + "Chrystal's": [], + "naturists": [], + "racketed": [], + "mandarin": ["M", "S"], + "flycatcher's": [], + "king": ["M", "Y", "S"], + "polymerizes": [], + "hurricanes": [], + "platforming's": [], + "soloed": [], + "enlargementers": [], + "allegro": ["M", "S"], + "AMA": [], + "bicyclers": [], + "beagles": [], + "tourniquet's": [], + "Tull": ["M"], + "jaw'sed": [], + "telethon": ["M", "S"], + "classicists": [], + "songwriting": [], + "commit": ["A", "S"], + "placidly": [], + "foreshores": [], + "shipper": ["S", "M"], + "haves": [], + "dachshund's": [], + "Japanese'ses": [], + "cans": [], + "interlacing": [], + "joggles's": [], + "snuggleds": [], + "franchises": [], + "efficacy's": [], + "sharecropper'ses": [], + "aced": [], + "indigenous": [], + "smarter": [], + "bishoprics's": [], + "veil": ["U", "D", "G", "S"], + "eggbeaters": [], + "seamstresses": [], + "accumulator'ses": [], + "pullets": [], + "rectificationsen": [], + "queries's": [], + "contenders": [], + "sumptuousness's": [], + "prevalence's": [], + "xeroxesing": [], + "angoras": [], + "gratitude's": [], + "anthropologist": ["S", "M"], + "organismic": [], + "sews": [], + "meteorite's": [], + "Sal'sly": [], + "Illinois": ["M"], + "usefully": [], + "guild's": [], + "carnivorousnessly": [], + "glob'sed": [], + "brats's": [], + "bailout": ["S", "M"], + "deliriums": [], + "bursary's": [], + "tappet's": [], + "defeaterers": [], + "tunnelingses": [], + "surveyor": ["S", "M"], + "flag'ses": [], + "futurologist's": [], + "Lille's": [], + "seizinged": [], + "usurious": [], + "overdraws": [], + "summation's": [], + "revert": ["G", "S", "D"], + "Odom's": [], + "hypersensitivity": ["S", "M"], + "bewailed": [], + "calipering": [], + "billboard'ses": [], + "seceding": [], + "strops": [], + "ruminated": [], + "neurosurgical": [], + "fins": [], + "o'clock": [], + "PDF": [], + "sheared": [], + "Maldives": ["M"], + "satisfies": [], + "suckers": [], + "listsings": [], + "pashas": [], + "arched": [], + "trackball": ["S", "M"], + "Masonic": ["M"], + "metropolis": ["M", "S"], + "disingenuous": [], + "tush'ses": [], + "mastitis": [], + "easiness's": [], + "ascription": ["M"], + "hideaway's": [], + "Albireo": ["M"], + "sorrowed": [], + "mainland'ses": [], + "loris": ["M", "S"], + "tedious": ["P", "Y"], + "porno's": [], + "souvenirs's": [], + "kneecaps's": [], + "conflictsing": [], + "Lanny's": [], + "serves": [], + "Hegelian's": [], + "baster's": [], + "waterside": ["M", "S"], + "British": ["M", "R", "Z"], + "conceiveds": [], + "immensity": ["S", "M"], + "VoIP": [], + "coward's": [], + "v": ["A", "S"], + "galvanometers": [], + "urgently": [], + "paddled": [], + "badness": ["M"], + "holders": [], + "term's": [], + "attentive": ["I", "P", "Y"], + "onlookers's": [], + "attender": [], + "unacceptably": [], + "shriveds": [], + "Vientiane": ["M"], + "kinase": [], + "anchoreding": [], + "you've": [], + "Lassen": ["M"], + "Dravidian": ["M"], + "intermingles": [], + "chalcedony's": [], + "callus'sed": [], + "Dakotas": [], + "corr": [], + "chomp": ["Z", "G", "M", "D", "R", "S"], + "seismography's": [], + "associated": [], + "colonizer's": [], + "Grenoble": ["M"], + "Pynchon's": [], + "Navratilova's": [], + "mini's": [], + "coop's": [], + "foamed": [], + "Rankin's": [], + "remainder'sed": [], + "barrier": ["M", "S"], + "Paine's": [], + "corrodeds": [], + "coons": [], + "Stewart's": [], + "changeless": ["Y"], + "Wheeler": ["M"], + "J'sed": [], + "Pisa's": [], + "doughnuts's": [], + "affirmatively": [], + "polka's": [], + "precipices's": [], + "cozy's": [], + "hectic": [], + "dross": ["M"], + "Pfizer": ["M"], + "conqueror'ses": [], + "verbals": [], + "rubber": ["S", "M"], + "Carpenter's": [], + "greeningness": [], + "rages": [], + "Millet's": [], + "dogmatism": ["M"], + "decks": [], + "verdicts": [], + "corespondent'ses": [], + "snoopers": [], + "Rollerblade's": [], + "phaeton": ["M", "S"], + "croaky": ["R", "T"], + "federalism's": [], + "pantaloons's": [], + "sulfur": ["M", "D", "S", "G"], + "professorially": [], + "gracelessly": [], + "Stephanie": ["M"], + "ridge": ["M", "G", "D", "S"], + "lepers's": [], + "mayor's": [], + "vendettas": [], + "dyslectic's": [], + "Prohibition": [], + "unwanted": [], + "basilica": ["M", "S"], + "semi's": [], + "overcloud": ["S", "G", "D"], + "manifolds": [], + "calderas": [], + "shtick's": [], + "disreplace": [], + "miscalleds": [], + "worrieder": [], + "Compaq's": [], + "pipelines's": [], + "cutup's": [], + "lamplighter": ["M"], + "sufficed": [], + "Miocene": ["M"], + "makeups": [], + "Filofax": ["M"], + "winery's": [], + "syntax": ["M"], + "pekoe's": [], + "Hobart's": [], + "masterwork'ses": [], + "soldiered": [], + "dankly": [], + "overbuilding": [], + "Abuja's": [], + "clapboard's": [], + "carnage's": [], + "fave": ["S"], + "banner's": [], + "eulogizes": [], + "maunders": [], + "quintessentially": [], + "circuit": ["M", "D", "G", "S"], + "eradicator": ["M", "S"], + "steppes": [], + "amateur": ["S", "M"], + "Donatello's": [], + "softens": [], + "locavores": [], + "Epicurean": ["M"], + "southerner": ["M"], + "convulses": [], + "Mindy": ["M"], + "Reunion's": [], + "quarterlies's": [], + "Sagan": ["M"], + "Madeleine": ["M"], + "Pynchon": ["M"], + "scornsers": [], + "scapegoating": [], + "polyhedrons": [], + "handleder": [], + "twelvemonth": ["M"], + "dolly's": [], + "Zhivago": ["M"], + "waterfall": ["S", "M"], + "gating": [], + "expansionism's": [], + "corrosive": ["S", "M", "Y"], + "irons": [], + "unreseal": [], + "symbol'ses": [], + "drunkards": [], + "defraudings": [], + "nestleds": [], + "gym": ["S", "M"], + "investigate": ["G", "N", "V", "D", "S", "X"], + "hyperlinkings": [], + "begat": [], + "Agrippa": ["M"], + "Netzahualcoyotl's": [], + "Indus": ["M"], + "marjoram's": [], + "wallop's": [], + "dhow'ses": [], + "established": [], + "expressed": ["U"], + "escapee'ses": [], + "Sayers's": [], + "paradoxes": [], + "lascivious": ["Y", "P"], + "gigs's": [], + "Heep's": [], + "weaning": [], + "moralists": [], + "sparseness": ["M"], + "dustings": [], + "preconception": ["S", "M"], + "refutation's": [], + "busloads": [], + "calligrapher's": [], + "veronica's": [], + "steppingstone's": [], + "unfortunate": ["M", "S"], + "leeches": [], + "pachyderm's": [], + "relapse": [], + "Elysian's": [], + "newsboys's": [], + "subsidizing": [], + "blockades": [], + "colorblindness": ["M"], + "Randy's": [], + "magnetized": [], + "boorishness's": [], + "solicitousness": ["M"], + "Zaire's": [], + "mantra'ses": [], + "Queens's": [], + "bactericide": ["S", "M"], + "ventriloquism": ["M"], + "interdepartmental": [], + "trumpsing": [], + "symbolical": ["Y"], + "Dustin's": [], + "relaxation": ["S", "M"], + "Bonn's": [], + "conciliates": [], + "resembled": [], + "hookers": [], + "coruscate": ["G", "N", "D", "S"], + "grope's": [], + "segregation": ["C", "M"], + "Hofstadter's": [], + "Fawkes": ["M"], + "sauropods's": [], + "attained": [], + "Wilson": ["M"], + "abruptnesser": [], + "Brown'sing": [], + "composting": [], + "Corleone": ["M"], + "superb": ["R", "Y", "T"], + "bike": ["D", "R", "S", "M", "Z", "G"], + "rotateds": [], + "bit": ["C", "S", "M", "G"], + "flatfish's": [], + "distinctiveness": ["M"], + "muss's": [], + "prosaically": [], + "redisprove": [], + "Sisyphean's": [], + "possessives's": [], + "Juana's": [], + "ascribe": ["G", "B", "D", "S"], + "benignly": [], + "appropriated": ["U"], + "cyst's": [], + "Titus's": [], + "JPEG": [], + "apiaries's": [], + "imprecation": ["M"], + "punch'sed": [], + "embellishinged": [], + "existentialists": [], + "duality": ["M"], + "townhouse": ["M", "S"], + "anchorage'ses": [], + "pinwheels": [], + "carnivorousness's": [], + "Sudra": ["M"], + "blacklist": ["M", "D", "S", "G"], + "cajoler's": [], + "wimpeds": [], + "spurt'sed": [], + "fistulous": ["M"], + "ninja": ["S", "M"], + "asterisks": [], + "supplied": [], + "etas's": [], + "view": ["A", "M", "D", "R", "S", "Z", "G"], + "bedpan": ["S", "M"], + "humphing": [], + "rattly": [], + "ransomers": [], + "save's": [], + "muddling": [], + "wranglingings": [], + "dandier": [], + "maker": ["S", "M"], + "farrago's": [], + "housecleaned": [], + "orientatingen": [], + "variant's": [], + "chorus's": [], + "decathlete": ["S"], + "Plantagenet": ["M"], + "casement'ses": [], + "yearnsings": [], + "mixable": [], + "toadies": [], + "gasket": ["S", "M"], + "pa's": [], + "smartener": [], + "fulminationsing": [], + "progressesing": [], + "Falkland's": [], + "knack": ["S", "Z", "M", "R"], + "hearer's": [], + "cutters": [], + "rehung": [], + "reek'sed": [], + "envelopsment": [], + "vasectomy's": [], + "disrupt": ["G", "V", "S", "D"], + "memorializing": [], + "stalleding": [], + "unsubstantiated": [], + "wideness": ["M"], + "cupola's": [], + "spacesuit": ["S", "M"], + "inspectorates": [], + "stations": [], + "tunnelerers": [], + "architecture'ses": [], + "dozier": [], + "wingtip": ["S", "M"], + "privies": [], + "flounce'sing": [], + "snowmobiling": [], + "upstart'sed": [], + "halt's": [], + "Ibsen's": [], + "fusibility": ["M"], + "bevel's": [], + "Buber's": [], + "placatingen": [], + "backstory": ["S"], + "barrage": ["M", "G", "D", "S"], + "smoothie's": [], + "Matthews": ["M"], + "Alembert": ["M"], + "slakinged": [], + "dowers": [], + "claimable": ["A"], + "libelers": [], + "agreeing": ["E"], + "endurabling": [], + "puppeteers": [], + "seniors's": [], + "micromanaginged": [], + "lessor's": [], + "fracturinged": [], + "peafowl'ses": [], + "unquestioningly": [], + "edition's": [], + "truanting": [], + "difficulties": [], + "possessive'sly": [], + "cruppers": [], + "Marses": [], + "snoop": ["S", "M", "D", "R", "Z", "G"], + "Heinrich": ["M"], + "gluttony": ["M"], + "lotion": ["S", "M"], + "USP": [], + "hour's": [], + "catalog": ["Z", "G", "S", "M", "D", "R"], + "horse": ["U", "D", "S", "G"], + "dauntlessness's": [], + "Buchanan's": [], + "shoal'sed": [], + "sparing": ["U", "Y"], + "cerebrated": [], + "rectums's": [], + "rediscover": [], + "depth's": [], + "Ramona's": [], + "ongoing": [], + "concertmaster's": [], + "gunnysack'ses": [], + "Zionist": ["S", "M"], + "finaglers": [], + "shogunate": ["M"], + "apprehending": [], + "fleecy": ["R", "T", "P"], + "musts": [], + "governmental": [], + "muftis": [], + "herring": ["M", "S"], + "nasturtium": ["S", "M"], + "swaggering": [], + "Sonya": ["M"], + "Stokes's": [], + "photometer'ses": [], + "inhabitant": ["S", "M"], + "stroke'sing": [], + "encryption": [], + "Teuton": ["M", "S"], + "candles": [], + "pooches": [], + "Queen'ses": [], + "bugler's": [], + "chieftainships": [], + "incubateds": [], + "Argus's": [], + "likelihood's": [], + "desert's": [], + "praised": [], + "arisings": [], + "wayside's": [], + "rapersing": [], + "Guarnieri": ["M"], + "whey": ["M"], + "Coolidge's": [], + "overshadows": [], + "Durocher's": [], + "Puzo": ["M"], + "fifteenth": ["M"], + "copiousness's": [], + "Herzegovina": ["M"], + "moons": [], + "stopover's": [], + "counterman": ["M"], + "beam'sed": [], + "joylessness's": [], + "cam": ["S", "M"], + "dancing": ["M"], + "amateurs's": [], + "pom": ["S"], + "capable": ["I"], + "deadpan'ses": [], + "volition": ["M"], + "knockwursts": [], + "thereabout": ["S"], + "chewer": ["M"], + "overcrowding's": [], + "inhibit": ["G", "S", "D"], + "sorceress's": [], + "foible": ["S", "M"], + "pities": [], + "helpless": ["P", "Y"], + "saucepan's": [], + "purlieu": ["S", "M"], + "purled": [], + "knife'sing": [], + "insolubility": [], + "Bethlehem": ["M"], + "nominally": [], + "shortwave's": [], + "drowses": [], + "finch'ses": [], + "undercharge": ["M", "G", "D", "S"], + "strugglinged": [], + "safekeeping's": [], + "declarers": [], + "federate": ["F", "X", "D", "S", "G", "N"], + "consciousnesses": [], + "atoll'ses": [], + "ohm": ["S", "M"], + "flatus's": [], + "purchaseder": [], + "scout'sed": [], + "Wren's": [], + "sacrum": ["M"], + "primogenitors's": [], + "jails": [], + "stumps's": [], + "checkroom": ["M", "S"], + "comparability's": [], + "physiotherapist": ["M", "S"], + "convicted": [], + "nurtures": [], + "Goldman": ["M"], + "callback'ses": [], + "Alisa's": [], + "cum": ["S", "M"], + "highroad": ["M", "S"], + "bolls": [], + "bells": [], + "sorcery": ["M"], + "monsignor": ["S", "M"], + "clinic": ["S", "M"], + "Maccabeus's": [], + "befriends": [], + "puttee's": [], + "macro's": [], + "cancerous": [], + "accordionist": ["M", "S"], + "stenos": [], + "pontoons": [], + "domesticateds": [], + "till's": [], + "lettuce": ["M", "S"], + "pennon'ses": [], + "cropland": ["S", "M"], + "arachnid": ["M", "S"], + "liar's": [], + "sharpener": ["M", "S"], + "persuasion's": [], + "periscope's": [], + "gluttonously": [], + "scribbles": [], + "gusset's": [], + "Rich's": [], + "chestier": [], + "grunt'sed": [], + "triennial's": [], + "Gerald's": [], + "enunciated": [], + "hosepipe": ["S"], + "pronounceds": [], + "Aileen": ["M"], + "schooled": ["U"], + "scrapeder": [], + "offense": ["M", "S"], + "Napier's": [], + "drunkest": [], + "brutalities's": [], + "exaggerationsed": [], + "overstate": ["D", "S", "L", "G"], + "retrovirus's": [], + "Holden's": [], + "compendium's": [], + "atomizes": [], + "tollings": [], + "sarge": ["M", "S"], + "eightieths": [], + "armrest's": [], + "Madge": ["M"], + "Fosse": ["M"], + "Gillian": ["M"], + "rashers": [], + "cubing": [], + "stupendously": [], + "ratifying": [], + "figsment": [], + "harmonizer": ["M"], + "gyros": [], + "archway's": [], + "hideout's": [], + "lovebirds": [], + "pamphlet'ses": [], + "Keynes's": [], + "femur's": [], + "attainment": ["S", "M"], + "interrogation's": [], + "chaffing": [], + "Nam": ["M"], + "quartered": [], + "timeservers's": [], + "winking": [], + "heteros": [], + "shrapnel's": [], + "credence": ["M"], + "angiosperm's": [], + "beneficiaries": [], + "storefront's": [], + "pantheons's": [], + "pomadeds": [], + "bender's": [], + "teeminged": [], + "fight": ["S", "M", "R", "Z", "G"], + "Chapman": ["M"], + "Kroc's": [], + "lungfuls": [], + "curses's": [], + "Illinoisan's": [], + "hub's": [], + "Gruyere's": [], + "aftercare": ["M"], + "froths": [], + "wagerersing": [], + "pharmacological": [], + "scimitars's": [], + "bathmat": ["M", "S"], + "chimer's": [], + "Hennessy's": [], + "anemia": ["M"], + "robins": [], + "codification's": [], + "nothings's": [], + "modem's": [], + "praseodymium's": [], + "beeping's": [], + "lucidly": [], + "saddlery": [], + "peskiest": [], + "rain's": [], + "wheeler": [], + "controvertsing": [], + "hatefulness": ["M"], + "gesticulating": [], + "rehabbed": [], + "palatals": [], + "Estes's": [], + "copiously": [], + "insinuates": [], + "abbreviationens": [], + "clompeding": [], + "peril's": [], + "speedster's": [], + "shoehorneds": [], + "westernizing": [], + "touch'sed": [], + "vast'ser": [], + "interweaving": [], + "noncommunicable": [], + "detective": ["S", "M"], + "pixels": [], + "animated": ["Y"], + "owe": ["D", "S", "G"], + "betrayals's": [], + "trekker": ["S", "M"], + "norther": ["M", "Y"], + "paltrier": [], + "supplies": [], + "electrically": [], + "symmetry": ["S", "M"], + "simonizeds": [], + "inclining": [], + "dolmens": [], + "camping": ["M"], + "bespanglesing": [], + "taboos": [], + "bookmakers": [], + "porkies's": [], + "tailback'ses": [], + "pk": [], + "animal'ses": [], + "taxonomists": [], + "victuals's": [], + "kicked": [], + "academics": [], + "rusting": [], + "blowtorches": [], + "jag's": [], + "moped's": [], + "ignominy": ["S", "M"], + "immediatenessly": [], + "embittered": [], + "exogenous": [], + "covey's": [], + "pus's": [], + "vivacity's": [], + "layaway": ["M"], + "consignees": [], + "fishmonger's": [], + "bagfuls": [], + "devilishliness": [], + "ensilage": ["M"], + "harems's": [], + "flamer": [], + "marmosets": [], + "dots's": [], + "perversenessens": [], + "cagey": [], + "familiar": ["M", "Y", "S"], + "debilitates": [], + "dabbers": [], + "endoscopes": [], + "moltener": [], + "scorners": [], + "accumulated": [], + "toy": ["S", "G", "M", "D"], + "bursar's": [], + "triathlon": ["S", "M"], + "Tunguska": ["M"], + "Hangul's": [], + "dillies": [], + "declaimer": [], + "blustery": [], + "bigwigs": [], + "disabling": [], + "hatted": [], + "taxiways": [], + "train": ["Z", "G", "S", "M", "D", "R", "B"], + "factored": [], + "iconoclast's": [], + "detonation's": [], + "maraud": ["Z", "G", "D", "R", "S"], + "phosphorous": [], + "earaches": [], + "countesses": [], + "hailed": [], + "barcaroles's": [], + "leafage": ["M"], + "demography's": [], + "circumscriptions": [], + "seaman": ["M"], + "souse'sing": [], + "pushpins": [], + "evasiveliness": [], + "deservedly": [], + "abode": ["M", "S"], + "frenetic": [], + "jealousy's": [], + "typography's": [], + "Jami": ["M"], + "forceful": ["P", "Y"], + "inclined": [], + "auditions": [], + "captained": [], + "Gorbachev's": [], + "carboy'ses": [], + "staters": [], + "stogie's": [], + "interceptions": [], + "espies": [], + "pedaling's": [], + "bubbliest": [], + "Proserpina's": [], + "moistly": [], + "galoot": ["S", "M"], + "Anatolian's": [], + "gentlewoman": ["M"], + "Angela": ["M"], + "bustled": [], + "concealers": [], + "uneasiest": [], + "blowouts's": [], + "drat": [], + "bamboos": [], + "basing": [], + "phonied": [], + "spritzeder": [], + "hugging": [], + "restorer's": [], + "daisies's": [], + "omnipresence's": [], + "frustratingen": [], + "hype'sing": [], + "tipster'ses": [], + "coffeepot's": [], + "tongs": [], + "poke'sers": [], + "brogans": [], + "ringersing": [], + "Germanic": ["M"], + "phalanges": [], + "braggadocios": [], + "ten's": [], + "bursting": [], + "heuristics's": [], + "medicament": ["M"], + "beaterings": [], + "libertine": ["M", "S"], + "Rosemary's": [], + "injudicious": [], + "dipsomania's": [], + "rhino's": [], + "Dawes's": [], + "contemplate": ["D", "S", "G", "N", "V"], + "creamery": ["S", "M"], + "standstill": ["M", "S"], + "recur": ["S"], + "mitotic": [], + "kielbasas": [], + "inevitably": [], + "nonstarter": ["M", "S"], + "festooning's": [], + "digitally": [], + "voyage": ["M", "Z", "G", "D", "R", "S"], + "flayeding": [], + "abrogators": [], + "cribbage": ["M"], + "ousters": [], + "censer'ses": [], + "briquette's": [], + "Berenice": ["M"], + "bract": ["M", "S"], + "prodigy": ["S", "M"], + "Zamenhof": ["M"], + "strengthener": ["M", "S"], + "LPN": ["S", "M"], + "Damien's": [], + "arras's": [], + "furloughing's": [], + "bosoms": [], + "voyageur's": [], + "limpidity's": [], + "gusteds": [], + "garnishments's": [], + "boost": ["Z", "G", "M", "D", "R", "S"], + "youthfulness's": [], + "somerset": ["S", "M"], + "gardening": ["M"], + "tillers": [], + "farms": [], + "wright": ["M", "S"], + "buggy": ["R", "S", "M", "T"], + "thrums": [], + "jocundity's": [], + "lugged": [], + "Kristine's": [], + "geographies's": [], + "slayers": [], + "Twitter's": [], + "crackpot": ["M", "S"], + "spokeswoman": ["M"], + "lawsuit's": [], + "nationals": [], + "flabbier": [], + "Jerrold": ["M"], + "approximateds": [], + "comic's": [], + "Cains": [], + "Standish's": [], + "membrane": ["S", "M"], + "cherubic": [], + "eventide's": [], + "newfangled": [], + "earthiest": [], + "gaiety": ["M"], + "glockenspiel": ["S", "M"], + "honkies": [], + "allying": [], + "Recife's": [], + "sneakeder": [], + "daffier": [], + "atrocities": [], + "ranger's": [], + "strolling": [], + "minibus'ses": [], + "ripcord": ["M", "S"], + "Mayer's": [], + "bolivar": ["M", "S"], + "forsakes": [], + "doglegs": [], + "curbstones's": [], + "phony": ["P", "T", "G", "D", "R", "S", "M"], + "chimney'ses": [], + "weirdie'ses": [], + "redeactivate": [], + "Pacheco": ["M"], + "virginal's": [], + "aquaplaning": [], + "walloping's": [], + "maharajahs": [], + "pinched": [], + "pedestrianizeds": [], + "schmoozer": [], + "bestirs": [], + "chemist's": [], + "recipients's": [], + "demotinged": [], + "preterits's": [], + "neurotic's": [], + "teleconference's": [], + "strident": ["Y"], + "blackboard": ["M", "S"], + "fork's": [], + "piecework": ["M", "R", "Z"], + "pinon": ["M", "S"], + "southwards": [], + "supernovae": [], + "talents": [], + "sorters's": [], + "massif": ["M", "S"], + "intricacy's": [], + "ginning": [], + "Gustavus": ["M"], + "piebald's": [], + "waveband": ["S"], + "circumlocutory": [], + "sorrier": [], + "shampoos": [], + "distally": [], + "weepier": [], + "Fabian'ses": [], + "migration's": [], + "incubate": ["G", "N", "D", "S"], + "irrigateds": [], + "undershirts's": [], + "contentment": ["E", "M"], + "Oahu's": [], + "Saracens": [], + "privatest": [], + "commending": [], + "innervated": [], + "Armagnac": ["M"], + "subsidies's": [], + "drinkable": ["U"], + "assayed": [], + "egghead": ["S", "M"], + "misconstrueds": [], + "backpacking's": [], + "caimans": [], + "tramming": [], + "submission": ["M", "S"], + "Holocaust's": [], + "panchromatic": [], + "pastime": ["M", "S"], + "Levine": ["M"], + "drunkard'ses": [], + "slowpokes's": [], + "degas": [], + "hegemonic": [], + "departmentalizes": [], + "hothead's": [], + "webmaster's": [], + "environmentalists": [], + "Laramie's": [], + "drone's": [], + "tattooeder": [], + "Tuesday's": [], + "fitfulness's": [], + "otters": [], + "lances": [], + "transfixing": [], + "microorganism'ses": [], + "laceratingen": [], + "upright'sly": [], + "pesto's": [], + "slacknessens": [], + "Neogene's": [], + "foreseeing": [], + "caddishly": [], + "nightcap": ["S", "M"], + "ogler's": [], + "ire": ["M"], + "instigates": [], + "insatiable": [], + "chew'sed": [], + "trustier": [], + "notability's": [], + "toolbar's": [], + "applets": [], + "impeccably": [], + "experimental": ["Y"], + "curates": [], + "dieds": [], + "Pareto": ["M"], + "seamy": ["R", "T"], + "fiberfill's": [], + "lightenerers": [], + "which": [], + "tone": ["I", "Z", "G", "D", "R", "S"], + "songbooks": [], + "rotundness": ["M"], + "inimically": [], + "hipbath": [], + "endangeringed": [], + "gawked": [], + "Summer's": [], + "Richelieu": ["M"], + "heiress'ses": [], + "dissed": [], + "abundances's": [], + "mishit": ["S"], + "Kenyans's": [], + "rovinged": [], + "avoidably": ["U"], + "prospered": [], + "invalids": [], + "kiwis": [], + "Highlanders": [], + "plant": ["M", "D", "R", "Z", "G", "S", "J"], + "doubloons's": [], + "crucifieds": [], + "evacuee": ["M", "S"], + "Chilean'ses": [], + "confederacy": ["S", "M"], + "juicer's": [], + "demonstratingen": [], + "furnace's": [], + "inscrutably": [], + "Louella": ["M"], + "long": ["K", "D", "S", "T", "G"], + "infatuation's": [], + "rugby's": [], + "misapplicationens": [], + "patrolling": [], + "dawdler": ["M"], + "chevaliers": [], + "Aachen": ["M"], + "trueder": [], + "refracting": [], + "Seleucid's": [], + "savage's": [], + "newsworthy": ["P"], + "Sask": [], + "shallowest": [], + "Darin's": [], + "cordials's": [], + "collaterally": [], + "Blackpool": ["M"], + "Owens's": [], + "Islamism": ["M"], + "heaping": [], + "annuities": [], + "tuckeder": [], + "renting's": [], + "clipboard'ses": [], + "transmitters": [], + "recherche": [], + "stepsisters": [], + "aggrieved": [], + "midland'ses": [], + "Amway": ["M"], + "operand": ["S"], + "recombination": [], + "Ghanaian": [], + "homestretch's": [], + "Luddite'ses": [], + "derbies": [], + "grandaunt's": [], + "collusive": [], + "shuttled": [], + "ineluctable": [], + "groomeder": [], + "appealed": [], + "succinctness's": [], + "superscribing": [], + "surtaxed": [], + "PIN": [], + "overtures": [], + "blips": [], + "premise": ["D", "S", "M", "G"], + "teleprocessing's": [], + "leopardesses": [], + "brainwashed": [], + "foreigner": ["M"], + "ice": ["C", "D", "S", "G"], + "dubber's": [], + "percheds": [], + "colorization": ["M"], + "wounding's": [], + "snowplowing": [], + "administrations": [], + "condemnation'ses": [], + "toggle's": [], + "transformers": [], + "cutlers": [], + "Sulawesi's": [], + "contemn": ["S", "D", "G"], + "swells": [], + "mintage": ["M"], + "quiff": ["S"], + "hastily": [], + "gloving": [], + "ninnies's": [], + "frighteningly": [], + "patronage'ses": [], + "splicers": [], + "Midwest's": [], + "curlings": [], + "emaciation": ["M"], + "causes": [], + "mockers": [], + "reverting": [], + "monolith's": [], + "forsooth": [], + "surfeit's": [], + "frameworks": [], + "conferences": [], + "rationalize": ["D", "S", "G"], + "disarm": [], + "fryinged": [], + "centerboard": ["S", "M"], + "NEH": [], + "theaters's": [], + "chine's": [], + "advantages's": [], + "principalities": [], + "sonorousness's": [], + "aligneds": [], + "Tanisha": ["M"], + "morphia's": [], + "WP": [], + "milling": ["M"], + "expiatory": [], + "yahoos's": [], + "ricocheteds": [], + "xix": [], + "yelp'sed": [], + "ganders": [], + "earnests": [], + "treated": ["U"], + "inflammation's": [], + "excoriating": [], + "Roland": ["M"], + "raids": [], + "biped's": [], + "gleanings": ["M"], + "banger": [], + "generalities": [], + "despising": [], + "quirt": ["S", "M"], + "Levis": [], + "coracle": ["S", "M"], + "shopkeeper": ["M", "S"], + "fads's": [], + "rainbow": ["S", "M"], + "intestacy's": [], + "Witwatersrand's": [], + "signalization": ["M"], + "prompteder": [], + "Trinities": [], + "kraal": ["S", "M"], + "duke'ses": [], + "jaguars": [], + "adjudication": ["M"], + "quinsy's": [], + "contract's": [], + "Africa's": [], + "wobbles": [], + "x": [], + "hectares's": [], + "Gothic": ["M", "S"], + "stark": ["R", "Y", "P", "Z", "T"], + "guiltinesser": [], + "deconstruct": [], + "picnic'ses": [], + "disputably": ["I"], + "authenticates": [], + "unfitness": [], + "Waters": ["M"], + "bleat'sed": [], + "major": ["S", "G", "M", "D", "Y"], + "draping": [], + "persimmon": ["S", "M"], + "Allentown's": [], + "lusty": ["P", "T", "R"], + "entente": ["S", "M"], + "Martin's": [], + "Apache": ["S", "M"], + "shopfitters": [], + "strawed": [], + "hyphenation": ["M"], + "hosier": ["M", "S"], + "ponies's": [], + "campaniles": [], + "bad's": [], + "Sheri's": [], + "bucketfuls": [], + "maxing": [], + "observational": [], + "yoga": ["M"], + "southward's": [], + "tomb'sed": [], + "Hibernia": ["M"], + "arithmetician'ses": [], + "onetime": [], + "sync's": [], + "possums": [], + "treasuries's": [], + "goings's": [], + "epidemics's": [], + "Camacho's": [], + "backpedaling": [], + "gap": ["G", "S", "M", "D"], + "whitenings": [], + "Guadalcanal's": [], + "gusto's": [], + "wedgeds": [], + "pluck": ["M", "D", "S", "G"], + "fecklessly": [], + "judgeship's": [], + "rivalries's": [], + "squirmy": ["R", "T"], + "cartooneding": [], + "millstones's": [], + "Hayden's": [], + "plait's": [], + "annual": ["M", "Y", "S"], + "foundered": [], + "Baxter": ["M"], + "roveder": [], + "allotting": [], + "desiccants's": [], + "Waksman's": [], + "braille's": [], + "phonetic": ["S"], + "confectioneries": [], + "ranks": [], + "baryons": [], + "chagrinings": [], + "vertex": ["M", "S"], + "timetabling": [], + "Quirinal's": [], + "human'ser": [], + "puppets": [], + "spieds": [], + "Tannhauser's": [], + "petulance's": [], + "derrieres": [], + "cheekiness's": [], + "weirs": [], + "debarkation's": [], + "special'sly": [], + "coke'sing": [], + "nonliving's": [], + "bedlam": ["S", "M"], + "tightwad'ses": [], + "Carmine": ["M"], + "hymnals": [], + "lobbyist's": [], + "interdicted": [], + "sandbag's": [], + "Dilberts": [], + "malfunction": ["M", "D", "S", "G"], + "exhaustiveness": ["M"], + "plasticizing": [], + "eyelid": ["S", "M"], + "repeats": [], + "headliner's": [], + "trustsing": [], + "Naugahyde": ["M"], + "phial's": [], + "readouts's": [], + "Hussite's": [], + "anecdote": ["M", "S"], + "laundrywoman": ["M"], + "APC": [], + "umpire's": [], + "inveigler's": [], + "documentaries": [], + "leaners": [], + "plagueds": [], + "Ernie's": [], + "permuting": [], + "ticket's": [], + "convict's": [], + "recorders": [], + "amble": ["M", "Z", "G", "D", "R", "S"], + "plinth": ["M"], + "impulsive": ["P", "Y"], + "intercourse's": [], + "outreach": ["M", "D", "S", "G"], + "rounding": [], + "cakewalk": ["S", "M"], + "hairiness": ["M"], + "rhombus'ses": [], + "manured": [], + "sellotapesing": [], + "emceeing": [], + "snug'sly": [], + "Keven": ["M"], + "exploration's": [], + "unavailable": [], + "sleeve's": [], + "preschools": [], + "scab'ses": [], + "chameleon's": [], + "morn'sings": [], + "Bi": ["M"], + "rabbinic": [], + "Laurent's": [], + "blushes": [], + "aim'sed": [], + "shear": ["M", "D", "R", "S", "Z", "G"], + "encapsulation": ["M"], + "pauses's": [], + "tanker's": [], + "webmistress's": [], + "Hines": ["M"], + "swelter's": [], + "neutral'sly": [], + "pacifieder": [], + "crumpled": [], + "rare": ["Y", "T", "G", "P", "D", "R", "S"], + "murkiness's": [], + "Alpine": ["M"], + "copy": ["A", "D", "S", "G"], + "milksops": [], + "swimmers's": [], + "brochure'ses": [], + "ethologist's": [], + "prescript's": [], + "notifying": [], + "Eddington": ["M"], + "thunderclap": ["S", "M"], + "ministrations": [], + "therapy": ["S", "M"], + "gemologists": [], + "tramples's": [], + "Zimmerman's": [], + "lever": ["S", "G", "M", "D"], + "interface'sing": [], + "stockiness": ["M"], + "pox": ["M", "S"], + "tendril": ["S", "M"], + "inducements's": [], + "precipitation": ["M"], + "postseasons": [], + "maters": [], + "fastidious": ["P", "Y"], + "redheaded": [], + "casebooks": [], + "Atlas's": [], + "hipsters": [], + "spitefulness": ["M"], + "circuits": [], + "whup": ["S"], + "gobbets's": [], + "Mac": ["M"], + "NutraSweet's": [], + "incompetent'ses": [], + "Pratchett's": [], + "insists": [], + "nus": [], + "mistier": [], + "architects": [], + "caricaturist": ["S", "M"], + "ousts": [], + "wolf": ["M", "D", "S", "G"], + "mural": ["S", "M"], + "Tories": [], + "redoundsed": [], + "kicker's": [], + "dona's": [], + "poorboy's": [], + "smiths": [], + "counterarguments": [], + "oversimplifieds": [], + "gearings": [], + "hydroplaning": [], + "pressurizeds": [], + "resupplies": [], + "yam": ["S", "M"], + "housecleansing": [], + "spoonerism'ses": [], + "verdicts's": [], + "Cabernet": ["M"], + "MT's": [], + "rigidity's": [], + "philanderer": ["M"], + "irritations": [], + "thoughtfulness": ["M"], + "Isiah's": [], + "chaplain'ses": [], + "gulling": [], + "hilliness's": [], + "smelliest": [], + "impeachable": ["U"], + "buncoeding": [], + "milkshakes": [], + "letterer's": [], + "pueblos": [], + "appetites": [], + "implantable": [], + "bents": [], + "relatersing": [], + "submergence": ["M"], + "energy's": [], + "sullenness's": [], + "scrunched": [], + "housecoat": ["S", "M"], + "adequacy": ["I", "M"], + "flusters": [], + "cheesinesser": [], + "encores": [], + "impend": ["S", "D", "G"], + "billeting": [], + "herniating": [], + "Balanchine": ["M"], + "baldingness": [], + "Maori's": [], + "kilotons's": [], + "violator": ["S", "M"], + "stipendiary": ["S"], + "sprayer'ses": [], + "shipwrecks": [], + "Cebu": ["M"], + "significance's": [], + "shins": [], + "billy's": [], + "drudges": [], + "socket": ["S", "M"], + "Philadelphia": ["M"], + "cancels": [], + "stateless": ["P"], + "singly": [], + "kopeck": ["M", "S"], + "artificer's": [], + "broad'sen": [], + "berkelium's": [], + "burrower's": [], + "sprucers": [], + "shingleds": [], + "ooh": ["G", "D"], + "precisesly": [], + "polymath's": [], + "sougheding": [], + "palimpsest'ses": [], + "registrar'ses": [], + "tingly": [], + "last'sed": [], + "scoffer's": [], + "scald's": [], + "Quintilian's": [], + "marchioness": ["M", "S"], + "Rb": ["M"], + "sapped": [], + "ideas": [], + "sable'ses": [], + "callus's": [], + "Scrabble'ses": [], + "nonchalantly": [], + "choreographic": [], + "cecum's": [], + "stapled": [], + "Leopoldo": ["M"], + "sacroiliac": ["M", "S"], + "retest": [], + "Deneb's": [], + "Joyce's": [], + "photofinishing's": [], + "freedom's": [], + "gigabit": ["S", "M"], + "loiterersing": [], + "Kari's": [], + "warships": [], + "Libyan": ["S", "M"], + "brooded": [], + "gnash'sed": [], + "sprawling": [], + "moderators's": [], + "suppose": ["G", "D", "S"], + "guitarist": ["S", "M"], + "Golden": ["M"], + "roentgens": [], + "burkas's": [], + "contusion": ["M"], + "needn't": [], + "criminal'sly": [], + "resteds": [], + "repairman's": [], + "rifler": ["M"], + "deejays": [], + "portcullis'ses": [], + "Courtney's": [], + "dastardlies": [], + "gullet's": [], + "haiku's": [], + "amontillado": ["S", "M"], + "frontage": ["M", "S"], + "payed": [], + "ballasting": [], + "immanence's": [], + "hydrometer": ["S", "M"], + "encourages": [], + "diastolic": [], + "nominatives": [], + "intellectualizing": [], + "spear": ["S", "M", "D", "G"], + "surcharge's": [], + "clings": [], + "inreset": [], + "shampooers": [], + "calumet'ses": [], + "mildly": [], + "volleyball'ses": [], + "sidepiece's": [], + "temperamental": ["Y"], + "FAA": [], + "brattiest": [], + "misbehaved": [], + "Salk's": [], + "Lulu": ["M"], + "monocotyledons": [], + "profanation's": [], + "rubles": [], + "creosoteds": [], + "tin's": [], + "grotesquely": [], + "casualties's": [], + "chillingly": [], + "incrimination": ["M"], + "visioneds": [], + "Gauls's": [], + "COL": [], + "wide": ["Y", "T", "R", "P"], + "baseness's": [], + "necromancers": [], + "gingerly": [], + "stockbreeder's": [], + "firs": [], + "wrongfulnessly": [], + "mislabel": ["G", "S", "D"], + "egomaniac's": [], + "strayed": [], + "pocketbooks's": [], + "murder'sed": [], + "terabits's": [], + "leering": [], + "elections": [], + "hypothesizeds": [], + "putsch'ses": [], + "delayer": [], + "fastback's": [], + "dosimeter": ["S", "M"], + "mackinaws's": [], + "huffed": [], + "vermilion": ["M"], + "rebelled": [], + "worrywarts": [], + "gaps's": [], + "Baudelaire": ["M"], + "privies's": [], + "Matthias": ["M"], + "suction'sed": [], + "initiator's": [], + "predominatelying": [], + "dependencies": [], + "fixingable": [], + "Camilla": ["M"], + "chromosome": ["M", "S"], + "expansive": ["Y", "P"], + "crochets's": [], + "sedan'ses": [], + "compositelying": [], + "sleighing": [], + "Amaterasu's": [], + "spatula": ["S", "M"], + "leafstalks": [], + "batsman": ["M"], + "Mogul'ses": [], + "straplesses": [], + "stairs's": [], + "tummy's": [], + "mainmast": ["M", "S"], + "escalloping's": [], + "Northerner's": [], + "shade's": [], + "egotism": ["M"], + "mountebank's": [], + "marmot'ses": [], + "negotiated": [], + "sputterings": [], + "caroleder": [], + "absolute": ["P", "M", "Y", "T", "N", "S"], + "Boulez": ["M"], + "decaffeinate": ["D", "S", "G"], + "grapevines": [], + "hemstitches": [], + "gollies's": [], + "speleologist": ["M", "S"], + "superior's": [], + "Boyle": ["M"], + "unredone": [], + "varlet": ["S", "M"], + "outshouted": [], + "tintypes": [], + "upsurged": [], + "Bette": ["M"], + "meditatingen": [], + "Brasilia": ["M"], + "Haggai": ["M"], + "function's": [], + "indulgent": ["Y"], + "packers": [], + "ogled": [], + "greenroom": ["S", "M"], + "fastings": [], + "misdirects": [], + "alphabetization's": [], + "Pike's": [], + "panics's": [], + "seamier": [], + "careless": ["P", "Y"], + "broodiest": [], + "shagginess": ["M"], + "hideaways's": [], + "storied": [], + "gynecology's": [], + "croft": ["S", "R", "Z", "G"], + "heelless": [], + "trig's": [], + "recess": ["M", "D", "S", "G", "V"], + "josher's": [], + "marimbas": [], + "declarations": [], + "radicalizing": [], + "chairperson": ["S", "M"], + "Jude's": [], + "tracksuits": [], + "pleading": ["M", "Y"], + "redistribution": [], + "logoffs": [], + "muddier": [], + "hogwash's": [], + "telescope": ["D", "S", "M", "G"], + "dipole's": [], + "Mandrell's": [], + "stereotypeds": [], + "mononucleosis's": [], + "sofa": ["M", "S"], + "innocuously": [], + "Bonaventure's": [], + "nonsectarian": [], + "cheaperly": [], + "tomahawk'sed": [], + "Rosenberg": ["M"], + "reasons": [], + "dork's": [], + "owner": ["M", "S"], + "arboretum": ["S", "M"], + "surmises": [], + "inevitable": ["M"], + "malty": ["T", "R"], + "drug": ["M", "S"], + "Amiga": ["M"], + "peskinesser": [], + "trematode": ["M", "S"], + "nominations's": [], + "tortuousnessly": [], + "motorcycling": [], + "fruitlessness's": [], + "lust's": [], + "widow'sed": [], + "goblins's": [], + "shrimped": [], + "Reinhold": ["M"], + "Omar's": [], + "Balanchine's": [], + "fable": ["D", "S", "M"], + "peptics": [], + "fortune": ["M", "S"], + "Smolensk's": [], + "licentiates's": [], + "massacres": [], + "sensibility's": [], + "pacier": [], + "Therese's": [], + "Columbia": ["M"], + "PCP": ["M"], + "slouch's": [], + "big": ["P"], + "Levesque's": [], + "dumbbells's": [], + "thanks": [], + "grouchiness's": [], + "tambourine'ses": [], + "sailboats": [], + "jiffies's": [], + "exploitable": [], + "isometrics": ["M"], + "Lynn's": [], + "nigglers": [], + "splintersing": [], + "destruct's": [], + "baldrics's": [], + "Gomez": ["M"], + "barterersing": [], + "tacitly": [], + "powering": [], + "mainstays": [], + "etiologies": [], + "swell's": [], + "elidesing": [], + "tortuousness's": [], + "fusee": ["S", "M"], + "messy": ["P", "T", "R"], + "unexpectedliness": [], + "alacrity's": [], + "skyscrapers": [], + "acclimatizes": [], + "cloakrooms": [], + "graveyards": [], + "eclipsing": [], + "testify": ["Z", "G", "D", "R", "S"], + "paddockeding": [], + "wearisome": ["Y"], + "rusher's": [], + "dyslexia's": [], + "Conley": ["M"], + "enthused": [], + "kebabs": [], + "maulersing": [], + "kneecap": ["S", "M"], + "enclosure's": [], + "Libby's": [], + "rejectings": [], + "cosseted": [], + "cesspits": [], + "insistence": ["M"], + "stroboscope'ses": [], + "anythings's": [], + "nibblers": [], + "mayfly's": [], + "topspin": ["M"], + "interregnum's": [], + "hallucinationens": [], + "alibi'sed": [], + "deltas": [], + "reprofit": [], + "ref's": [], + "aperitif's": [], + "octanes": [], + "inducer's": [], + "Eloise": ["M"], + "Iqaluit": ["M"], + "Aelfric": ["M"], + "convertings": [], + "Indies": ["M"], + "AOL": ["M"], + "attestations's": [], + "flunk": ["S", "M", "D", "G"], + "haughtiest": [], + "incommunicado": [], + "spoonerism's": [], + "racquetball's": [], + "zigzags": [], + "moorland'ses": [], + "anyhow": [], + "toucans": [], + "spearfisheds": [], + "customers": [], + "underexposing": [], + "muscat's": [], + "parterre": ["S", "M"], + "catwalks's": [], + "retarder's": [], + "nonjudicial": [], + "phosphor": ["M", "S"], + "Christopher's": [], + "collectibles's": [], + "Delta": ["M"], + "Alvarez": ["M"], + "cruller": ["M", "S"], + "misuse": ["D", "S", "M", "G"], + "catch'ser": [], + "daguerreotyped": [], + "tercentenaries": [], + "pour": ["G", "D", "S", "J"], + "christening": ["M", "S"], + "Fredric": ["M"], + "preconditioneding": [], + "coveringed": [], + "parasitic": [], + "celled": [], + "carthorses": [], + "Liberia": ["M"], + "dumbfoundsed": [], + "Rockford": ["M"], + "dotards": [], + "elongated": [], + "guarani'ses": [], + "Sheraton": ["M"], + "hoods": [], + "diagrams's": [], + "Cyrus": ["M"], + "facial'sly": [], + "custody": ["M"], + "papist's": [], + "entertainers": [], + "Foch's": [], + "obviate": ["D", "S", "G", "N"], + "tarty": ["T"], + "outshouteds": [], + "genitourinary": [], + "magistrate": ["S", "M"], + "poncho": ["S", "M"], + "batter'sed": [], + "overcook": ["D", "G", "S"], + "goats": [], + "wavered": [], + "absolutists": [], + "annals": ["M"], + "Bettye's": [], + "downers": [], + "sweetbreads's": [], + "translates": [], + "bookplate's": [], + "turbojet": ["S", "M"], + "Glenda's": [], + "advert'sed": [], + "undaunted": ["Y"], + "passivization": [], + "scullery's": [], + "goalposts": [], + "regattas": [], + "botcher's": [], + "timestamp": ["S", "M", "D"], + "firebombing": [], + "hearses": [], + "Toynbee's": [], + "proinn": [], + "Hercules's": [], + "conspiracies's": [], + "backstrokes": [], + "Vlaminck": ["M"], + "junketsing": [], + "Kilauea": ["M"], + "paged": [], + "owesing": [], + "hallways's": [], + "OSHA": ["M"], + "enlightenmented": [], + "Jewell": ["M"], + "hotfooted": [], + "personify": ["G", "D", "S", "N", "X"], + "drivel'sed": [], + "posthypnotic": [], + "junket's": [], + "conservatism's": [], + "troposphere": ["S", "M"], + "histrionic": ["S"], + "outbuilding's": [], + "sparest": [], + "sandcastle": ["M", "S"], + "uncooperative": [], + "cockades": [], + "international'sly": [], + "stoneder": [], + "trenchers": [], + "pastor'ses": [], + "gingham": ["M"], + "redaction's": [], + "Connecticut's": [], + "horoscopes's": [], + "amorously": [], + "arguers": [], + "Pvt": [], + "overachievinged": [], + "freak's": [], + "seduced": [], + "Maigret's": [], + "odd": ["S", "T", "R", "Y", "L", "P"], + "workshy": [], + "drapery": ["S", "M"], + "hurry's": [], + "goblins": [], + "emotions": [], + "tracer's": [], + "radio": ["M", "D", "G", "S"], + "severinged": [], + "mucous": [], + "salience's": [], + "meditative": ["Y"], + "bulletineding": [], + "ballast": ["G", "S", "M", "D"], + "verse": ["A", "F", "N", "G", "M", "S", "D", "X"], + "frizzier": [], + "hazing": ["M"], + "cruller's": [], + "dispelled": [], + "breached": [], + "rallying": [], + "articulatelying": [], + "Lockheed": ["M"], + "spays": [], + "publicizes": [], + "defraudersing": [], + "noisemaker": ["M", "S"], + "Namibian's": [], + "salute'sing": [], + "Theocritus": ["M"], + "compactor's": [], + "medicare's": [], + "onerous": ["P", "Y"], + "fanzines": [], + "articulate": ["Y", "G", "N", "P", "D", "S", "X"], + "Wheeler's": [], + "stonier": [], + "forsook": [], + "exclusiveness": ["M"], + "headband'ses": [], + "cheeping": [], + "gymnasiums": [], + "body's": [], + "teleplay": ["M", "S"], + "toilette": ["M"], + "fervency's": [], + "effluent": ["M", "S"], + "repeating": ["M"], + "whipsawings": [], + "noontime": ["M"], + "top": ["S", "M"], + "willingnessly": [], + "democratizeds": [], + "atonality": ["M"], + "moaner": ["M"], + "tiddly": [], + "Peg's": [], + "fussesing": [], + "ordainmenting": [], + "cudgel": ["S", "G", "M", "D", "J"], + "locust's": [], + "subteen's": [], + "citesed": [], + "wreck'sed": [], + "carter": ["M"], + "neigheding": [], + "spokes": [], + "captivity's": [], + "Nahum": ["M"], + "ingratiate": ["G", "N", "D", "S"], + "pressured": [], + "Judaism's": [], + "salesclerks's": [], + "Santa's": [], + "naivest": [], + "overpowers": [], + "gardening's": [], + "manly": ["U", "T", "R"], + "detector": ["S", "M"], + "spigots's": [], + "adeptness's": [], + "variants": [], + "provocation": [], + "spiritless": [], + "rerecords": [], + "facilitating": [], + "Kharkov's": [], + "ungulate's": [], + "Nigel's": [], + "Gilbert's": [], + "perceived": ["U"], + "initially": [], + "acquisitiveness's": [], + "heritages": [], + "pothole": ["D", "R", "S", "M", "Z", "G"], + "definitively": [], + "chorister's": [], + "spit's": [], + "Synge's": [], + "narwhal's": [], + "dusty": ["R", "T", "P"], + "spyglasses": [], + "shoplifts": [], + "begotten": [], + "attraction'ses": [], + "convoyeding": [], + "heterosexuality": ["M"], + "trinkets": [], + "totalizator": ["S", "M"], + "raffling": [], + "jollies": [], + "locket's": [], + "discord": [], + "substrata": [], + "Tolstoy's": [], + "halogen": ["S", "M"], + "biologically": [], + "wolverine's": [], + "Thule's": [], + "motor's": [], + "blurrierness": [], + "altercations's": [], + "generalize": ["G", "D", "S"], + "commissionsing": [], + "baggiers": [], + "terminate": ["D", "S", "G", "N", "X"], + "stockbrokers": [], + "dissent's": [], + "psychosomatic": [], + "containerization": ["M"], + "Abyssinia": ["M"], + "sensing": [], + "prob": [], + "bookmobile's": [], + "misapprehendings": [], + "uncorroborated": [], + "prattler": ["M"], + "womanlier": [], + "ultras's": [], + "tabooeds": [], + "vehemence's": [], + "felons": [], + "sanction's": [], + "literariness": ["M"], + "dauphin'ses": [], + "impair": ["S", "D", "G", "L"], + "sleeteding": [], + "methotrexate": [], + "braising": [], + "hydras": [], + "wallow": ["M", "D", "S", "G"], + "tnpk": [], + "weekdays": [], + "welled": [], + "grates": [], + "toilings": [], + "schematically": [], + "corresponding": ["Y"], + "country's": [], + "Olivier's": [], + "Darlene's": [], + "millipede": ["S", "M"], + "leftwards": [], + "shampoo's": [], + "accumulateds": [], + "crawls's": [], + "ladyship'ses": [], + "improprieties": [], + "squad's": [], + "tenaciousness's": [], + "taking": ["S", "M"], + "recurred": [], + "modicum's": [], + "integratesed": [], + "succubi": [], + "deprecationed": [], + "stabilizeds": [], + "embodiment's": [], + "vampings": [], + "lyncheder": [], + "Instagram": ["M"], + "cringe's": [], + "tiler": ["M"], + "nightmarish": [], + "beckons": [], + "Marquita": ["M"], + "asparagus": ["M"], + "Protestantisms's": [], + "deflower": [], + "syllable's": [], + "Vlad's": [], + "but": ["A", "C", "S"], + "infinitive's": [], + "thighbone'ses": [], + "canoeists's": [], + "photoengraver": ["M"], + "heterodox": [], + "table": ["M", "G", "D", "S"], + "verisimilitude": ["M"], + "sectarians": [], + "equilateral's": [], + "lastlies": [], + "royalists's": [], + "sanctuary's": [], + "eggplants": [], + "remixeds": [], + "resist": ["S", "M", "D", "R", "Z", "G"], + "gametes's": [], + "macrame's": [], + "rephotographeding": [], + "Boulez's": [], + "corundum": ["M"], + "van's": [], + "sarge's": [], + "lefty": ["S", "M"], + "evaluate": ["A", "G", "N", "V", "D", "S", "X"], + "martyr's": [], + "leaseholder's": [], + "pediatrician": ["M", "S"], + "fistful": ["S", "M"], + "breed's": [], + "airlines": [], + "capstans's": [], + "shuttlecocking's": [], + "unrepeatable": [], + "ruptures": [], + "becloudeds": [], + "wings": [], + "Ewing's": [], + "session'ses": [], + "dough's": [], + "pledged": [], + "census": ["M", "D", "S", "G"], + "indicatives": [], + "Calvin": ["M"], + "Elliot's": [], + "milled": [], + "insidious": ["Y", "P"], + "rissole": ["S"], + "fort's": [], + "recesseds": [], + "linchpin": ["S", "M"], + "box's": [], + "Scrabble's": [], + "landslide": ["M", "G", "S"], + "heath's": [], + "adjourned": [], + "skull's": [], + "filbert's": [], + "tribes": [], + "bastardizinged": [], + "cheesy": ["T", "P", "R"], + "basically": [], + "steak": ["S", "M"], + "bylaws": [], + "foldsing": [], + "extremest": [], + "Kenyon's": [], + "Howard's": [], + "croons's": [], + "clothier's": [], + "Mondale's": [], + "chemotherapy": ["M"], + "moistener": ["M"], + "chomper": [], + "Omaha'ses": [], + "Assamese": ["M"], + "shewn": [], + "snogs": [], + "guarantee": ["M", "D", "S"], + "applaudinged": [], + "jasmines's": [], + "intercession's": [], + "laceds": [], + "whooped": [], + "nosher's": [], + "castrate": ["G", "N", "X", "D", "S"], + "chimpanzee": ["S", "M"], + "Taoism'ses": [], + "hammock": ["S", "M"], + "grittiness's": [], + "outgun": ["S"], + "Danae's": [], + "sobered": [], + "innersole's": [], + "Bogota": ["M"], + "purge'sers": [], + "polluter": ["M"], + "gazettes": [], + "bushel'sed": [], + "filliping": [], + "droop's": [], + "gunnery's": [], + "hobbling": [], + "ox": ["M", "N"], + "truthfulness": ["U", "M"], + "Randal": ["M"], + "hardwood": ["S", "M"], + "resenteding": [], + "schoolmates's": [], + "domestication": ["M"], + "whelk": ["S", "M", "D"], + "Chechen": ["M"], + "frightened": [], + "ibuprofen": ["M"], + "Barker": ["M"], + "awakened": [], + "clownish": ["Y", "P"], + "scrabbling": [], + "forelock's": [], + "systematizeds": [], + "windburn": ["M", "D"], + "datebook": ["S"], + "mollycoddled": [], + "trucked": [], + "ghastliness's": [], + "entrance'sing": [], + "acrid": ["P", "T", "R", "Y"], + "secondaries": [], + "going's": [], + "blighted": [], + "grislier": [], + "timing": ["M"], + "utilities's": [], + "rescuers": [], + "tittle": ["S", "M"], + "macaroni'ses": [], + "smear'sed": [], + "welder's": [], + "saddlebag": ["M", "S"], + "vied": [], + "macros's": [], + "whaleboat's": [], + "brokenness": ["M"], + "cyberspace": ["M", "S"], + "Ceylon's": [], + "plowman's": [], + "bellsing": [], + "frump's": [], + "scorersing": [], + "nephritic": [], + "radiophone's": [], + "fearsome": [], + "converters": [], + "totters": [], + "relatesens": [], + "exclaim": ["D", "G", "S"], + "armpit's": [], + "raggedest": [], + "compositions": [], + "gods's": [], + "scruplinged": [], + "weeps": [], + "rewarms": [], + "abstruseness's": [], + "Babel's": [], + "publishinged": [], + "river's": [], + "enameleder": [], + "pettifogging": [], + "incarnation's": [], + "fourteenth's": [], + "Royce": ["M"], + "sibyl": ["M", "S"], + "barrelings": [], + "wounding": [], + "caesuras's": [], + "neatness's": [], + "clasping": [], + "bumblesers": [], + "retainer": ["M"], + "bestially": [], + "traverses": [], + "seafarer's": [], + "squabbler": ["M"], + "Mozambicans": [], + "economizes": [], + "Knudsen's": [], + "bamboozling": [], + "emcee": ["D", "S", "M"], + "periphrasis's": [], + "irony's": [], + "blearinesser": [], + "energizing": [], + "witheringly": [], + "between": [], + "grail": [], + "merger's": [], + "casual'sly": [], + "rials": [], + "abridged": [], + "uprightly": [], + "peerless": [], + "jetty": ["S", "M"], + "Aesop's": [], + "catchers": [], + "casebook": ["S"], + "faultfinder": ["S", "M"], + "mission": ["A", "M", "S"], + "cluing": [], + "weeper": ["M"], + "cooperates": [], + "panic": ["S", "M"], + "brokers": [], + "brads's": [], + "perambulates": [], + "fowleding": [], + "osmium's": [], + "reunmake": [], + "erections": [], + "stalagmites": [], + "accomplish": ["D", "S", "L", "G"], + "orthodoxies's": [], + "downed": [], + "celery's": [], + "griddlecake's": [], + "versesed": [], + "forebodingings": [], + "stumblers": [], + "mundanely": [], + "downdrafts": [], + "sophomore": ["M", "S"], + "tartans": [], + "alias's": [], + "sopping": [], + "immersionsed": [], + "correlates": [], + "Gonzalo's": [], + "Giselle's": [], + "skiersing": [], + "threesomes's": [], + "Hooters's": [], + "unadventurous": [], + "flambeed": [], + "cinematographer's": [], + "predeterminer's": [], + "midlife": ["M"], + "noisier": [], + "delicious": ["P", "Y"], + "sensational": ["Y"], + "winier": [], + "warmonger's": [], + "dreamierness": [], + "Alkaid": ["M"], + "jokingly": [], + "centiliters": [], + "absoluteness's": [], + "undercutting": [], + "laboriousnessly": [], + "mac'sed": [], + "Mackenzie's": [], + "ingrowing": [], + "Israel's": [], + "micrometeorite's": [], + "dig": ["S", "M"], + "flubbed": [], + "hoots": [], + "miscued": [], + "modernity's": [], + "amiss": [], + "fib's": [], + "isobaric": [], + "condemnerers": [], + "toucan'ses": [], + "redness's": [], + "bumpersing": [], + "quintet's": [], + "transmittance's": [], + "disagreeableness": [], + "eager": ["P", "T", "R", "Y"], + "COD": [], + "flameder": [], + "cerebellar": [], + "selvage": ["M", "S"], + "cursorily": [], + "Samson": ["M"], + "versioned": [], + "distortions": [], + "biography": ["S", "M"], + "flogging's": [], + "cir": [], + "analyzer": ["S", "M"], + "plaque's": [], + "pongee's": [], + "centripetally": [], + "arraignsment": [], + "prey'sed": [], + "adenoidal": [], + "lavishest": [], + "precised": [], + "portraitist": ["S", "M"], + "least's": [], + "sponsored": [], + "menfolks's": [], + "hotfoot's": [], + "numerically": [], + "order's": [], + "hemstitched": [], + "postdates": [], + "navigability's": [], + "vase'ses": [], + "cordillera": ["M", "S"], + "rudiments": [], + "wringer's": [], + "chillness": ["M"], + "etymology's": [], + "activator": ["M", "S"], + "signal's": [], + "Ostwald": ["M"], + "saber": ["M", "S"], + "mullein": ["M"], + "biochemistry": ["M"], + "tasteless": ["P", "Y"], + "tremor'ses": [], + "handymen": [], + "groves": [], + "defector's": [], + "Geronimo": ["M"], + "stumbler's": [], + "roadworthy": [], + "outbursts": [], + "standpipe's": [], + "allergists's": [], + "Perseid": ["M"], + "haunter's": [], + "incinerator": ["M", "S"], + "emboldens": [], + "Schneider's": [], + "malpractice's": [], + "privileges's": [], + "gratifications": [], + "scandalmonger": ["S", "M"], + "wildebeests": [], + "OfficeMax": ["M"], + "shacking": [], + "muskox'sen": [], + "Theodoric": ["M"], + "Marcie's": [], + "bract'ses": [], + "forgery": ["S", "M"], + "overshadoweds": [], + "Natasha's": [], + "Olmsted": ["M"], + "payroll": ["S", "M"], + "cockpits": [], + "desktop": ["S", "M"], + "gorgeousness's": [], + "sweats's": [], + "harts": [], + "help'sed": [], + "tachometer": ["S", "M"], + "furtively": [], + "unaware": ["S"], + "chronicles's": [], + "rustlesings": [], + "moonstone": ["M", "S"], + "purveying": [], + "Katherine": ["M"], + "prevaricators's": [], + "injustice": [], + "glimpses": [], + "Tia's": [], + "violates": [], + "apoplexy": ["S", "M"], + "dangled": [], + "pompadour": ["S", "M", "D"], + "Caesar": ["S", "M"], + "network's": [], + "wainscotings's": [], + "fake": ["M", "Z", "G", "D", "R", "S"], + "Tokyo": ["M"], + "integral'sly": [], + "Truckee's": [], + "refrigerants": [], + "commodores's": [], + "Slocum's": [], + "phonological": ["Y"], + "noncommittal": ["Y"], + "apparitions": [], + "Benelux": ["M"], + "Reynolds's": [], + "stutterer": ["M"], + "Eileen": ["M"], + "works's": [], + "Rappaport's": [], + "chartreuse's": [], + "dubiousness": ["M"], + "Bantu'ses": [], + "cutters's": [], + "libertarians": [], + "odor": ["M", "D", "S"], + "acutely": [], + "Erasmus": ["M"], + "altercation": ["S", "M"], + "fledgling": ["M", "S"], + "shapelier": [], + "icebreaker": ["S", "M"], + "Ra": ["M"], + "pamphleteers": [], + "intentness": ["M"], + "Katmai's": [], + "rectification": ["M"], + "ringleader'ses": [], + "Okayama": [], + "requisitioned": [], + "wackiest": [], + "Bahama's": [], + "watered": [], + "superscribed": [], + "winnower": ["M"], + "Merino": ["M"], + "brioche's": [], + "ova": [], + "exhales": [], + "hedgehop": ["S"], + "Tolkien's": [], + "Ru": ["M", "H"], + "ashcans": [], + "west": ["M"], + "tunnelers": [], + "cravat's": [], + "stalemated": [], + "inventory": ["D", "S", "M", "G"], + "reconstrain": [], + "deputes": [], + "antiparticles's": [], + "Pliny's": [], + "rids": [], + "hostelries's": [], + "disguise": ["G", "D"], + "dithererers": [], + "spellbindinger": [], + "dying": ["M"], + "nation'ses": [], + "paternal": ["Y"], + "turn": ["A", "M", "D", "R", "S", "Z", "G"], + "illustrate": ["G", "N", "V", "X", "D", "S"], + "priestliness's": [], + "Oscar": ["M", "S"], + "sweatsuit": ["S"], + "tinkerer's": [], + "kippered": [], + "turfs": [], + "inestimably": [], + "technologist": ["M", "S"], + "vibrate": ["G", "N", "D", "S", "X"], + "prioritization": [], + "Africans's": [], + "Dempsey's": [], + "huskier": [], + "parsonage'ses": [], + "cupcakes": [], + "homemaker": ["S", "M"], + "bludgeon": ["M", "D", "G", "S"], + "Morphy": ["M"], + "protract": ["G", "D"], + "webisodes": [], + "slumdog": ["S", "M"], + "marina's": [], + "facets": [], + "goulash'ses": [], + "tonality's": [], + "graduate's": [], + "downfall'sen": [], + "choice": ["M", "T", "R", "S"], + "impatiens's": [], + "ileitis": ["M"], + "wadi'ses": [], + "pikestaffs's": [], + "assassinate": ["G", "N", "X", "D", "S"], + "formalist": ["M", "S"], + "humility": ["M"], + "locateds": [], + "autopilots's": [], + "shackle's": [], + "mirage": ["S", "M"], + "Jeannette's": [], + "torpedo's": [], + "contentiousliness": [], + "relinquishment's": [], + "shuttlecocks": [], + "fewest": [], + "pummelsing": [], + "Bruce's": [], + "bray's": [], + "piranhas": [], + "engulfment": ["M"], + "duel'sed": [], + "retort's": [], + "balsa'ses": [], + "barked": [], + "Jpn": [], + "Gibson's": [], + "jetsam's": [], + "lardsers": [], + "ideologist": ["S", "M"], + "WWII": [], + "escalations": [], + "hornblende": ["M"], + "boundaries's": [], + "dibbleds": [], + "cinchona's": [], + "bankrupts": [], + "connectable": [], + "hegemony's": [], + "modern'sly": [], + "Izhevsk's": [], + "circuitously": [], + "digressed": [], + "virulent": ["Y"], + "tapper": ["M", "S"], + "laundrywoman's": [], + "Rhenish's": [], + "partying": [], + "Ethernet": ["M"], + "chance'sing": [], + "smotherings": [], + "horsemanship's": [], + "controversies's": [], + "Adonis": ["M", "S"], + "thawing": [], + "Tennessee's": [], + "pleas": [], + "editorializeds": [], + "vacancy's": [], + "endoscope": ["M", "S"], + "newlywed's": [], + "discontinuation": [], + "impolitely": [], + "automotive": [], + "moodiest": [], + "landmines": [], + "condensate'sen": [], + "longueurs's": [], + "Kowloon's": [], + "nomad's": [], + "disputants": [], + "incensing": [], + "scorer": ["M"], + "cretinism": ["M"], + "sacks": [], + "teases": [], + "soundboard": ["M", "S"], + "ombudsmen": [], + "enfranchised": [], + "enjoyments": [], + "liqueurs's": [], + "Darth": ["M"], + "domesticate": ["D", "S", "G", "N"], + "pomegranates": [], + "contortion's": [], + "sunup's": [], + "interdicteds": [], + "cabers": [], + "phobia'ses": [], + "matzoh": ["M"], + "zanier": [], + "dairying": ["M"], + "adversities's": [], + "mastodons's": [], + "apothecaries": [], + "attends": [], + "Guayaquil's": [], + "lough": [], + "Ger": ["M"], + "dilutingen": [], + "haw's": [], + "Mensa": ["M"], + "mooting": [], + "entrenching": [], + "Glaswegian's": [], + "personalizing": [], + "granges": [], + "jingoist's": [], + "yowls": [], + "histogram": ["M", "S"], + "graduates": [], + "treat's": [], + "weighinged": [], + "emboss": ["D", "R", "S", "Z", "G"], + "counteroffensive": ["S", "M"], + "hatbox": ["M", "S"], + "seepinged": [], + "carouses": [], + "counteracted": [], + "Louisianan'ses": [], + "advisability's": [], + "muffins": [], + "Kyle": ["M"], + "Rosalie's": [], + "hijackers": [], + "atrociousnessly": [], + "topside": ["S", "M"], + "gratings": [], + "sinfulnessly": [], + "piousness's": [], + "hitchhike": ["D", "R", "S", "M", "Z", "G"], + "Baluchistan's": [], + "felicitations": [], + "Yugoslavian's": [], + "Jewry": ["M"], + "Leonid's": [], + "badminton": ["M"], + "varies": [], + "bromidic": [], + "muggers": [], + "lugs's": [], + "proliferation": ["M"], + "recyclable": ["S", "M"], + "sponsorings": [], + "generousness": ["M"], + "contestant'ses": [], + "rowdyism": ["M"], + "unqualified": [], + "versified": [], + "embargo's": [], + "gurney's": [], + "aphelia": [], + "soulfulliness": [], + "pavement": ["M", "S"], + "Hellenistic's": [], + "provisos": [], + "andantes's": [], + "thrived": [], + "almonds": [], + "fieldsmen": [], + "conifer's": [], + "trampled": [], + "marketer": ["M"], + "exasperation": ["M"], + "bedimming": [], + "India": ["M"], + "sneer": ["S", "J", "M", "D", "G"], + "questionnaire": ["S", "M"], + "maggots": [], + "experience'sed": [], + "squires": [], + "AM's": [], + "southwestward": ["S"], + "litchi's": [], + "Paramaribo's": [], + "overstimulateds": [], + "drools": [], + "Nestorius": ["M"], + "hemophiliac": ["M", "S"], + "thunderstorm's": [], + "nautilus's": [], + "subconscious'sly": [], + "Chanel's": [], + "martial": ["Y"], + "luffsing": [], + "obtuseness's": [], + "Merrill": ["M"], + "Correggio": ["M"], + "Capone's": [], + "slammers": [], + "Voldemort": ["M"], + "chichi's": [], + "therapist": ["S", "M"], + "blond'ser": [], + "hubs": [], + "proselytizesers": [], + "slitting": [], + "scarp": ["M", "D", "R", "S", "Z", "G"], + "jeremiads": [], + "extended": [], + "exude": ["D", "S", "G"], + "coho's": [], + "rousesing": [], + "elapsing": [], + "planetarium": ["S", "M"], + "firepower's": [], + "respectability's": [], + "lesion": ["M", "S"], + "Kenneth": ["M"], + "captains": [], + "forums": [], + "attire's": [], + "dossesers": [], + "toddlersing": [], + "cockade's": [], + "bronzes": [], + "trammel": ["S", "G", "M", "D"], + "melted": [], + "hashesing": [], + "elusiveliness": [], + "Audion": ["M"], + "weaklications": [], + "swirls's": [], + "stomachache": ["S", "M"], + "unperceptive": [], + "platelet's": [], + "Briticisms's": [], + "spindliest": [], + "Arabia": ["M"], + "pedestrian's": [], + "nonchalance's": [], + "blarneys": [], + "encumberings": [], + "apricot's": [], + "Panmunjom's": [], + "Goiania's": [], + "testicular": [], + "Koran's": [], + "quilts": [], + "fuckinged": [], + "Angelia": ["M"], + "boombox's": [], + "Stalingrad": ["M"], + "xylem": ["M"], + "magnates": [], + "waxwing": ["S", "M"], + "apocryphally": [], + "defoggers": [], + "nylon'ses": [], + "Xenophon's": [], + "drainer": ["M"], + "baselines": [], + "Alcyone's": [], + "Machiavelli": ["M"], + "monopolizersing": [], + "Americanizeds": [], + "coquettes": [], + "Bendix's": [], + "chessmen": [], + "statesmanlike": [], + "investeding": [], + "stickiness's": [], + "Poe": ["M"], + "scads": [], + "Hungary": ["M"], + "slipperier": [], + "Humvee's": [], + "consultant": ["M", "S"], + "Marla": ["M"], + "stalking": ["M"], + "contaminant's": [], + "pothereding": [], + "bowleg": ["S", "M"], + "granite's": [], + "teakettles": [], + "redeployment": [], + "Jung": ["M"], + "satanism": ["M"], + "bunking": [], + "evaporates": [], + "Katheryn's": [], + "villainy": ["S", "M"], + "ordinariness's": [], + "cheeked": [], + "limitlessness": ["M"], + "inflatables's": [], + "ajar": [], + "chauffeur'sed": [], + "depressive": ["S", "M"], + "astonishesment": [], + "liqueur": ["S", "M"], + "figuring": [], + "Begin": ["M"], + "flag": ["M", "S"], + "toddles's": [], + "Mancini's": [], + "chore's": [], + "showjumping": [], + "postural": [], + "checkers": ["M"], + "Tutankhamen": ["M"], + "elating": [], + "Dunkirk's": [], + "Rolando": ["M"], + "seines": [], + "horizon's": [], + "Delilah": ["M"], + "hypocritically": [], + "tier's": [], + "witness": ["M", "D", "S", "G"], + "Lewinsky's": [], + "heterogeneity": ["M"], + "disarray": [], + "verifiable": ["U"], + "impulsivenessly": [], + "ratting": [], + "Christensen's": [], + "preregisteringed": [], + "Belgrade's": [], + "impeacher's": [], + "everywhere": [], + "predictions's": [], + "floorboard'ses": [], + "smilingly": [], + "Cancer": ["S", "M"], + "boyhood": ["S", "M"], + "Nightingale's": [], + "hominy's": [], + "tightwad's": [], + "purseder": [], + "bedheads": [], + "zeppelin'ses": [], + "trickings": [], + "breadths": [], + "fuddle'sing": [], + "gradualness's": [], + "veer'sed": [], + "clanger": [], + "garnishments": [], + "clenching's": [], + "eczema's": [], + "ride'sers": [], + "chatterer": ["M"], + "utensils": [], + "Cabrini": ["M"], + "undermined": [], + "underwhelmings": [], + "Idahos": [], + "emblazoned": [], + "Harpies": [], + "decliner": ["M"], + "strait": ["M", "N", "S", "X"], + "Singh's": [], + "bamboo's": [], + "twaddlinged": [], + "turbulently": [], + "tempest": ["S", "M"], + "yegg": ["M", "S"], + "carrying": [], + "sodomite's": [], + "Richthofen": ["M"], + "infirmary's": [], + "smattering'ses": [], + "lounge's": [], + "tauteneding": [], + "soiling": [], + "Minot's": [], + "fattened": [], + "grossly": [], + "shave'sers": [], + "strollsers": [], + "electronic": ["S"], + "lawless": ["P", "Y"], + "reflector'ses": [], + "toughener's": [], + "beware": ["G", "D", "S"], + "Limbaugh": ["M"], + "ameliorateds": [], + "bravos's": [], + "teletext'ses": [], + "dog's": [], + "creepiness": ["M"], + "jostle's": [], + "codfish": ["M", "S"], + "berth": ["G", "M", "D"], + "Day": ["M"], + "slugging": [], + "nontechnical": [], + "disaffection": [], + "noised": [], + "roared": [], + "almanac's": [], + "esquires's": [], + "bottlenecks": [], + "Burnett": ["M"], + "cadre": ["M", "S"], + "Alexandra's": [], + "Dodgson's": [], + "sentence": ["M", "G", "D", "S"], + "ransoming": [], + "embryonic": [], + "counterclockwise": [], + "treacly": [], + "Marietta": ["M"], + "flyspeck": ["G", "M", "D", "S"], + "Roberts's": [], + "frequenterly": [], + "disseminationed": [], + "Marco'ses": [], + "crowing": [], + "refraining": [], + "funnily": [], + "shaman": ["S", "M"], + "spasmodically": [], + "tutting": [], + "pumices": [], + "android's": [], + "tailed": [], + "rollingses": [], + "welcome'sing": [], + "R's": [], + "boyishness's": [], + "behalf": ["M"], + "arbitrager's": [], + "croftersing": [], + "schoolgirl's": [], + "expropriationens": [], + "Dwight's": [], + "advocates": [], + "suggestive": ["Y", "P"], + "slouched": [], + "ransacked": [], + "pinup'ses": [], + "cataclysmal": [], + "skyrocketed": [], + "additives's": [], + "weld's": [], + "baggie's": [], + "launderersing": [], + "endings's": [], + "postlude": ["S", "M"], + "Hawaii's": [], + "dogged": ["P", "Y"], + "cult's": [], + "retaliates": [], + "mashup'ses": [], + "joeys": [], + "worthlessnessly": [], + "Siam's": [], + "Hodges's": [], + "flagstone'ses": [], + "masochist's": [], + "treaty": ["S", "M"], + "Flathead": [], + "Linotype's": [], + "Nyasa": ["M"], + "ciphers": [], + "referent": ["S", "M"], + "besting": [], + "drastic": [], + "putsch's": [], + "servicewoman": ["M"], + "hajji's": [], + "Pavarotti's": [], + "Arabs's": [], + "gunnel": ["M", "S"], + "baronet'ses": [], + "Jolson": ["M"], + "stabled": [], + "logarithm's": [], + "commitment'ses": [], + "idiomatic": ["U"], + "complex's": [], + "scarify": ["N", "D", "S", "G"], + "disputers": [], + "snipping": [], + "oscillator": ["S", "M"], + "skittersed": [], + "cupola": ["S", "M", "D"], + "sanity": ["I", "M"], + "dinkies": [], + "Frenchmen": ["M"], + "Brinkley": ["M"], + "sudsier": [], + "lodge": ["D", "R", "S", "J", "M", "Z", "G"], + "dill": ["M", "S"], + "sponge's": [], + "chair'sed": [], + "orangutans's": [], + "notional": ["Y"], + "subsequently": [], + "strainer's": [], + "travesty": ["G", "D", "S", "M"], + "clotheshorse's": [], + "mailer": ["M"], + "warbler": ["M"], + "yin": ["M"], + "compendium": ["S", "M"], + "larceny": ["S", "M"], + "kiloliter's": [], + "Biko": ["M"], + "Malachi": ["M"], + "implicated": [], + "geostationary": [], + "chamomile's": [], + "moody": ["T", "P", "R"], + "oppressor's": [], + "Gupta's": [], + "Inuits": [], + "demonizeds": [], + "obliteratesing": [], + "stigmas's": [], + "UNESCO": ["M"], + "ghostlying": [], + "Connors": ["M"], + "topdressings's": [], + "broiler": ["M"], + "toast'sed": [], + "polystyrene's": [], + "Shelby's": [], + "Caucasus's": [], + "capon": ["M", "S"], + "nip": ["S", "M"], + "scrimshawing": [], + "trapdoor's": [], + "strictures's": [], + "tonearm": ["S", "M"], + "couriersing": [], + "banking's": [], + "Urumqi's": [], + "microbiologist's": [], + "tramp's": [], + "piteous": ["Y", "P"], + "bluest": [], + "coleus'ses": [], + "Jeffry": ["M"], + "normally": [], + "tonguing": [], + "war's": [], + "stealthier": [], + "wearisomely": [], + "agronomists": [], + "juggle's": [], + "zithers": [], + "spoonful": ["S", "M"], + "signifying": [], + "entertainments": [], + "Sid": ["M"], + "rucksack'ses": [], + "tibia's": [], + "showersing": [], + "defenses": [], + "brusquely": [], + "cabinetmaker": ["M", "S"], + "Riley": ["M"], + "upperclasswoman": [], + "Cooperstown's": [], + "airlift's": [], + "satanical": ["Y"], + "bumble": ["D", "R", "S", "Z", "G"], + "drummed": [], + "filmeding": [], + "gradualism": ["M"], + "cola'ses": [], + "Negro": ["M", "S"], + "sunder": ["D", "S", "G"], + "Britt's": [], + "newsagent": ["S"], + "cruncher": [], + "metaphorically": [], + "Snowbelt": ["M"], + "sprite's": [], + "aliyah's": [], + "Crees's": [], + "unmeaning": [], + "lute's": [], + "Crusoe": ["M"], + "midwifinged": [], + "endpoints": [], + "crotches": [], + "Kepler's": [], + "inundation": ["M"], + "bedecking": [], + "blooding": [], + "drink": ["S", "M", "R", "B", "J", "Z", "G"], + "Sandy's": [], + "heroin": ["S", "M"], + "Carthage's": [], + "Chilean's": [], + "tutor'sed": [], + "rightsize": ["D", "S", "G"], + "drowsed": [], + "postoperative": [], + "Srinagar's": [], + "confiscator": ["S", "M"], + "kingdoms": [], + "magicians's": [], + "globes": [], + "pockets": [], + "infanticide's": [], + "revelries": [], + "padres": [], + "poinsettia's": [], + "vacancies": [], + "descant": ["M"], + "confidante's": [], + "nanny": ["S", "M"], + "snails": [], + "inheritings": [], + "teeter's": [], + "cooperatives": [], + "philanderer's": [], + "ti": ["M", "R", "Z"], + "lathering's": [], + "tailgateder": [], + "cablegrams": [], + "nymphomaniacs": [], + "Baedekers": [], + "savings's": [], + "caving's": [], + "bench'sed": [], + "APB": [], + "grinder": ["M"], + "Shields's": [], + "construable": [], + "kelp": ["M"], + "Sivan's": [], + "keyholes": [], + "voltmeters": [], + "Gulliver's": [], + "kayaks's": [], + "sculpture": ["D", "S", "M", "G"], + "harpies's": [], + "bathtub'ses": [], + "Gibraltar'ses": [], + "peso": ["M", "S"], + "minimize": ["D", "S", "G"], + "skieder": [], + "tolls": [], + "revivals": [], + "Chumash's": [], + "flustersing": [], + "antechambers's": [], + "money": ["S", "M", "D"], + "tick's": [], + "sharkskin": ["M"], + "corrupterly": [], + "tonight": ["M"], + "casabas": [], + "peddles": [], + "lavisheder": [], + "opal'ses": [], + "petrifieds": [], + "misreadingses": [], + "drowsy": ["R", "T", "P"], + "cincture's": [], + "faint": ["S", "M", "D", "R", "Y", "T", "G", "P"], + "approximatelying": [], + "cress": ["M"], + "imaginary": [], + "impeachments's": [], + "PRC's": [], + "nitration": ["M"], + "afterthoughts's": [], + "oilskins": ["M"], + "solemnerly": [], + "concierges": [], + "Egyptians": [], + "contention's": [], + "optimized": [], + "dissector": [], + "divides": [], + "venation's": [], + "fraud's": [], + "seafaring": ["M"], + "anthropology": ["M"], + "punsters": [], + "ion": ["U", "S", "M"], + "Gambia": ["M"], + "carburetor": ["S", "M"], + "Kojak": ["M"], + "pounce'sing": [], + "grave": ["D", "R", "S", "M", "Y", "T", "G", "P"], + "tamperers": [], + "smeariest": [], + "bulrush's": [], + "Wolf": ["M"], + "revolving": [], + "diarists": [], + "carries's": [], + "grill": ["S", "G", "M", "D", "J"], + "string": ["M", "D", "R", "S", "Z", "G"], + "greeters": [], + "nihilist'ses": [], + "portends": [], + "MIPS": [], + "Theiler's": [], + "montage's": [], + "longhair": ["M", "S"], + "agent's": [], + "offend": ["Z", "G", "D", "R", "S"], + "clothes": [], + "threepence's": [], + "perish": ["B", "D", "R", "S", "Z", "G"], + "brighteners": [], + "subsidiarity": [], + "Hertz's": [], + "learned": [], + "sizable": [], + "substations": [], + "yaw'sed": [], + "occasion": ["G", "M", "D", "S"], + "separateness": ["M"], + "classify": ["A", "C", "S", "D", "G", "N"], + "deaneries's": [], + "glorifieds": [], + "misdealing's": [], + "recitalist'ses": [], + "Booker": ["M"], + "soiree's": [], + "pilchard's": [], + "routed": [], + "Dylan": ["M"], + "castoffs": [], + "civet'ses": [], + "cask": ["S", "M"], + "daydreamed": [], + "participial's": [], + "propitious": ["Y"], + "Knox": ["M"], + "courseding": [], + "straddlers": [], + "transvestism": ["M"], + "ticklishliness": [], + "Annapolis": ["M"], + "superannuated": [], + "birthmark": ["M", "S"], + "impugned": [], + "biographers's": [], + "nascent": ["A"], + "ulterior": [], + "kumquat": ["M", "S"], + "plodders": [], + "rightsizeds": [], + "torpidity": ["M"], + "memorable": ["U"], + "grassier": [], + "hangouts's": [], + "clapboarding": [], + "considers": [], + "outraged": [], + "printings's": [], + "cornball's": [], + "pancreatic": [], + "political": ["Y"], + "greetingings": [], + "crowning": [], + "screwball's": [], + "dartboard's": [], + "forehead": ["M", "S"], + "indicative's": [], + "outspendsing": [], + "bloodsucker": ["S", "M"], + "mysterious": ["P", "Y"], + "boxwood": ["M"], + "contriver": ["M"], + "biscuit's": [], + "Romanticism": [], + "comber's": [], + "overmasters": [], + "Liege": ["M"], + "nasalizing": [], + "Bolivar": ["M"], + "thereon": [], + "devastator's": [], + "exporteder": [], + "banking": ["M"], + "humidifier": ["C", "M"], + "knish'ses": [], + "croupiest": [], + "technologies's": [], + "caliper": ["S", "G", "M", "D"], + "polygons": [], + "Hatteras's": [], + "compositingen": [], + "lintel's": [], + "slights": [], + "ascend": ["A", "G", "D", "S"], + "struggling": [], + "stalactite'ses": [], + "uric": [], + "businessman's": [], + "Negritude": [], + "becloudinged": [], + "editorializesing": [], + "veto'sed": [], + "mallow": ["M", "S"], + "sponging": [], + "podcast's": [], + "gabbiness's": [], + "angioplasty's": [], + "arson": ["M"], + "MacLeish": ["M"], + "shunted": [], + "UCLA's": [], + "undersecretaries": [], + "solidifying": [], + "muzak": [], + "Mahdi": ["M"], + "Lacey": ["M"], + "beacheds": [], + "lipreader": ["M"], + "excellencies's": [], + "phobia": ["M", "S"], + "lollsing": [], + "debatable": [], + "crackerjack'ses": [], + "meaningsness": [], + "cesspool": ["M", "S"], + "suaverly": [], + "pickax'sed": [], + "fellowship": ["M", "S"], + "skyjacks": [], + "seizure's": [], + "Acton": ["M"], + "plusher": [], + "Shebeli's": [], + "Judaical": [], + "frowzily": [], + "shoehorning's": [], + "disbursal": ["M"], + "dustsheets": [], + "dampenersing": [], + "annuitants": [], + "Tungus": ["M"], + "impeachersing": [], + "headshrinkers's": [], + "riverboats's": [], + "waistcoat's": [], + "equinox'ses": [], + "cums's": [], + "throaty": ["R", "T", "P"], + "harp'sed": [], + "Rubicon": ["M", "S"], + "scenarist'ses": [], + "yeah": ["M"], + "yeshivas": [], + "gracious": ["U", "Y"], + "shallowness": ["M"], + "virus's": [], + "Truth": ["M"], + "fortress's": [], + "TQM": [], + "brambly": [], + "splurge's": [], + "flanneling": [], + "redirect": [], + "speakerphone": ["S"], + "dallier": ["M"], + "descriptions's": [], + "deft": ["P", "T", "R", "Y"], + "centipedes": [], + "overambitious": [], + "epistle's": [], + "Morison's": [], + "foyers's": [], + "unitary": [], + "melodies": [], + "childishness's": [], + "steroidal": [], + "amplificationed": [], + "inadmissible": [], + "dauphins": [], + "meningeal": [], + "minting": [], + "routine'sly": [], + "Pd": ["M"], + "agreement": ["E", "S", "M"], + "thrombi": [], + "tailspins's": [], + "Smokey's": [], + "persona's": [], + "Margie's": [], + "live": ["A", "T", "G", "D", "S", "B"], + "Antichrists's": [], + "luffs": [], + "crisscross's": [], + "cat's": [], + "accentuated": [], + "twilit": [], + "Maputo's": [], + "municipalities": [], + "Pulitzer": ["M"], + "enough's": [], + "orphaned": [], + "sleazes's": [], + "glorify": ["G", "D", "S", "N"], + "binary's": [], + "railroadsers": [], + "sautes": [], + "synthesized": [], + "hoofeder": [], + "bacchanalian": ["M", "S"], + "rockfall": ["S", "M"], + "Wassermann": ["M"], + "pawnshops": [], + "resignation's": [], + "crawlspace": ["S", "M"], + "primulas": [], + "conch": ["M"], + "dividing": [], + "skimmed": [], + "shelving's": [], + "lineaments": [], + "yammer's": [], + "driveler": ["M"], + "dewberry": ["S", "M"], + "multifamily": [], + "pivoting": [], + "orchard's": [], + "ripples's": [], + "iconoclasts's": [], + "TWX": [], + "Brest": ["M"], + "glisten'sed": [], + "potentate'ses": [], + "cocos": [], + "hat's": [], + "maltreated": [], + "smarmy": ["R", "T"], + "Arline's": [], + "Ecuadorians": [], + "hoversing": [], + "taboosing": [], + "devote": [], + "capitulation": ["A", "M"], + "creativeliness": [], + "postdoctoral": [], + "foreclosure": ["M", "S"], + "punitive": ["Y"], + "whitecap's": [], + "unawares": [], + "bier's": [], + "diaries's": [], + "wheezes": [], + "Oldsmobile's": [], + "remodelinged": [], + "subfamily's": [], + "odiousness": ["M"], + "Judas'ses": [], + "guppy": ["S", "M"], + "baptizes": [], + "tiptoe": ["D", "S", "M"], + "intersections's": [], + "ingenious": ["P", "Y"], + "liken": ["S", "G", "D"], + "champing's": [], + "percales": [], + "wheezed": [], + "parishioner": ["M", "S"], + "hut": ["S", "M"], + "Sahel": ["M"], + "nonentity": ["S", "M"], + "Scottsdale": ["M"], + "solidest": [], + "outlaw'sed": [], + "goldfinch'ses": [], + "powerhouse's": [], + "coastguard": ["S"], + "Tuscarora": ["M", "S"], + "hypoglycemics": [], + "foal": ["M", "D", "G", "S"], + "studiedly": [], + "bales": [], + "services": [], + "brickyard": ["S"], + "jalopy": ["S", "M"], + "pendent's": [], + "pollination's": [], + "weensier": [], + "carbohydrate's": [], + "noblemen": [], + "lane's": [], + "Eloy's": [], + "Isuzu's": [], + "being": ["M"], + "timbrels": [], + "polisher's": [], + "dwarfing": [], + "Hogarth's": [], + "laundromat's": [], + "chronometers's": [], + "aircraftmen": [], + "settable": [], + "postdoc's": [], + "scrambled": [], + "vicegerent's": [], + "uniquely": [], + "divisors's": [], + "plebiscite": ["M", "S"], + "importance": ["M"], + "Rodgers's": [], + "imprint'sed": [], + "doom's": [], + "toque": ["S", "M"], + "roaching": [], + "stipends's": [], + "dimension's": [], + "extemporizinged": [], + "smacker's": [], + "VAT's": [], + "bulky": ["R", "T", "P"], + "boogers": [], + "someone's": [], + "drapersing": [], + "entwining": [], + "rosewood's": [], + "headdress'ses": [], + "despair": ["S", "M", "D", "G"], + "estimateds": [], + "speechlessness": ["M"], + "resolution's": [], + "resolutely": [], + "tattooists's": [], + "photocopiers": [], + "interchange'sing": [], + "antecedents": [], + "Rojas's": [], + "noticeably": [], + "sandals": [], + "stevedores": [], + "coracles": [], + "cognac's": [], + "Okeechobee": ["M"], + "capitols's": [], + "purchasingable": [], + "goatherd'ses": [], + "verdigriseds": [], + "jeering'sly": [], + "solidifies": [], + "amateurishness's": [], + "winnowings": [], + "walls": [], + "eugenic": ["S"], + "bioreactors": [], + "localizing": [], + "dreamworlds's": [], + "!": [], + "locales": [], + "Langmuir": ["M"], + "Haitian": ["M", "S"], + "bimetallics": [], + "baleen": ["M"], + "Mayer": ["M"], + "subjoin": ["G", "D", "S"], + "lips's": [], + "cherubim": [], + "jocks": [], + "discus": ["M", "S"], + "acidly": [], + "grazing": [], + "repatriation": ["M"], + "nevermore": [], + "syrupy": [], + "monger'sed": [], + "ream'sed": [], + "underpayment's": [], + "superintendeds": [], + "orphaneding": [], + "copings": [], + "syringes's": [], + "dispossession's": [], + "hoagie'ses": [], + "Daisy's": [], + "cheapens": [], + "peppercorn's": [], + "edge": ["M", "Z", "G", "J", "D", "R", "S"], + "prospering": [], + "ravioli's": [], + "Chambers's": [], + "repressions": [], + "sequencing's": [], + "chooses": [], + "newsiest": [], + "flame's": [], + "inaction's": [], + "underclassman": ["M"], + "consented": [], + "Fraulein": [], + "cozy": ["R", "S", "M", "T", "P"], + "crosscutting": [], + "creepily": [], + "caucuseds": [], + "lurks": [], + "homecomings": [], + "refutesers": [], + "Hollie's": [], + "discerneding": [], + "5th": ["p", "t"], + "flied": [], + "Mays": ["M"], + "Alas": [], + "tongeding": [], + "spastics's": [], + "leeriness's": [], + "Barbuda": ["M"], + "knuckle's": [], + "pursuit": ["S", "M"], + "conciliatesing": [], + "monseigneur's": [], + "deodorizes": [], + "eves": [], + "Moselle": ["M"], + "Gore's": [], + "pediatrician'ses": [], + "theosophist": ["S", "M"], + "Bessie's": [], + "baring": [], + "cornily": [], + "transcendentally": [], + "organdy": ["M"], + "pacifiesen": [], + "coffers's": [], + "broadener": [], + "Darby's": [], + "troika's": [], + "mungeds": [], + "weed'sed": [], + "basis": ["M"], + "buzzkills's": [], + "hearthrugs": [], + "evades": [], + "ockers": [], + "presumesable": [], + "counterinsurgencies's": [], + "appreciation": ["M"], + "fortune'ses": [], + "hijack": ["S", "J", "Z", "G", "M", "D", "R"], + "coiffureds": [], + "Jutland's": [], + "hoagies": [], + "gneiss": ["M"], + "fir's": [], + "gravamen's": [], + "Valerie's": [], + "headphone'ses": [], + "accident's": [], + "adult'ses": [], + "pollack": ["M", "S"], + "guy'sed": [], + "dissolveds": [], + "compositing": [], + "briefcase": ["S", "M"], + "inrelay": [], + "luncheons": [], + "galvanometer'ses": [], + "scammer": ["S"], + "petrochemical": ["S", "M"], + "noteworthiness": ["M"], + "rangers": [], + "diffractings": [], + "distributors": [], + "denting": [], + "pokes": [], + "graininess": ["M"], + "coup's": [], + "webisode'ses": [], + "anagram": ["M", "S"], + "Savage's": [], + "Orkney's": [], + "materials's": [], + "sorbets": [], + "troopship": ["M", "S"], + "crawdad": ["S", "M"], + "verminous": [], + "tithe's": [], + "Cash": ["M"], + "skateboard": ["M", "D", "R", "S", "Z", "G"], + "hahnium's": [], + "jitterbug'ses": [], + "scurrility": ["M"], + "mirrors's": [], + "antiquarians's": [], + "poisoners": [], + "widow": ["S", "M", "D", "R", "Z", "G"], + "Kyle's": [], + "Nebraskan'ses": [], + "Josefa's": [], + "room's": [], + "rampart's": [], + "hoodsing": [], + "panics": [], + "awoke": [], + "Malraux's": [], + "ecologist": ["M", "S"], + "greps": [], + "translators": [], + "poulterer": ["M", "S"], + "slot'ses": [], + "unread": ["B"], + "Savoyard": ["M"], + "meanders's": [], + "inquisitiveness": ["M"], + "fillet'sed": [], + "metamorphosing": [], + "Ustinov": ["M"], + "golds": [], + "disjunctive": [], + "closemouthed": [], + "petitions": [], + "decrying": [], + "dogmatists": [], + "mashesers": [], + "insulating": [], + "assimilatingen": [], + "keynote'sers": [], + "armorial": [], + "emblematically": [], + "waterproofing": ["M"], + "reddeneding": [], + "recuseds": [], + "tuts": [], + "prizewinner": ["M", "S"], + "Stalin's": [], + "Chicago": ["M"], + "Walls's": [], + "busybodies's": [], + "bombers": [], + "bigamist": ["S", "M"], + "Thomism's": [], + "Mancunian's": [], + "sweep's": [], + "salesman": ["M"], + "oarlock": ["S", "M"], + "comb'sed": [], + "folksiness": ["M"], + "jewel": ["S", "Z", "G", "M", "D", "R"], + "unreasonableness": [], + "conurbation's": [], + "limbo's": [], + "espiesing": [], + "discriminatory": [], + "latticework's": [], + "Marianne's": [], + "caulk": ["Z", "G", "M", "D", "R", "S"], + "caravan's": [], + "vandalize": ["D", "S", "G"], + "torridity": ["M"], + "misstep's": [], + "hintings": [], + "inretake": [], + "supplant": ["S", "D", "G"], + "candidness": ["M"], + "Mikhail": ["M"], + "transcribinged": [], + "eveneder": [], + "trot": ["M", "S"], + "beatified": [], + "samples's": [], + "Nepali": ["M", "S"], + "pathways": [], + "troubleshooter's": [], + "rackeds": [], + "skillfulness": ["M"], + "depressurization": [], + "Bolivians": [], + "choicers": [], + "technology's": [], + "rectally": [], + "piquancy's": [], + "algal": [], + "Burnside's": [], + "MM": [], + "burrow": ["S", "M", "D", "R", "Z", "G"], + "armorersing": [], + "walkerers": [], + "Nikkei": ["M"], + "Louie": ["M"], + "herbals": [], + "Atlas'ses": [], + "Sophocles": ["M"], + "Tisha's": [], + "dedication's": [], + "Cu's": [], + "guidepost's": [], + "anarchists": [], + "serialization": ["S", "M"], + "bondwoman": ["M"], + "beautifully": [], + "uncontroversial": [], + "tons": [], + "porcine": [], + "muttering's": [], + "native's": [], + "petcock's": [], + "umbilicus's": [], + "lampooning": [], + "insufferable": [], + "bionic": ["S"], + "plainness": ["M"], + "postindustrial": [], + "salted": ["U"], + "complexity": ["S", "M"], + "bucketful's": [], + "clonal": [], + "pappy": ["S", "M"], + "scepter'ses": [], + "standpoint's": [], + "spaceports": [], + "players's": [], + "mythologizing": [], + "boomers": [], + "anneals": [], + "strangulate": ["G", "N", "D", "S"], + "hoosegows": [], + "unmanliest": [], + "splatting": [], + "bearer's": [], + "acceptances's": [], + "total'sed": [], + "wen": ["M"], + "viscountess'ses": [], + "communion": ["M"], + "megaphone'sing": [], + "Pascals's": [], + "rookeries": [], + "sophisticatingen": [], + "gagging": [], + "stools's": [], + "consistence": ["M", "S"], + "caret's": [], + "puppeteer's": [], + "seized": [], + "vaccinationed": [], + "nonyielding": [], + "Loewi": ["M"], + "trundlinged": [], + "deepens": [], + "solenoids": [], + "wet'sly": [], + "Saharan": ["M"], + "barbarically": [], + "snap's": [], + "slide": ["R", "S", "M", "Z", "G"], + "misjudge": ["D", "S", "G"], + "footloose": [], + "sunstroke": ["M"], + "Parthenon's": [], + "Porrima": ["M"], + "signalman's": [], + "introspection's": [], + "Holloway": ["M"], + "gofer's": [], + "plasticizesing": [], + "fractions's": [], + "patronage": ["M", "S"], + "enumerated": [], + "silverfishes": [], + "anthill's": [], + "satyriasis": ["M"], + "cohabitants": [], + "recapitulation": [], + "dissension's": [], + "dosage's": [], + "legally": [], + "highborn": [], + "deign": ["G", "D", "S"], + "magnate's": [], + "brolly": ["S"], + "duper": ["M"], + "dignifieds": [], + "bantamweights's": [], + "afterglow's": [], + "unspeakably": [], + "hallucinating": [], + "gelds": [], + "conventicles": [], + "Bries's": [], + "waterlilies": [], + "tamablely": [], + "templates": [], + "institutionalizes": [], + "traced": [], + "guaranties's": [], + "Reichstag's": [], + "illustrator's": [], + "bogglinged": [], + "pulpy": ["R", "P", "T"], + "slowpokes": [], + "corollary": ["S", "M"], + "mountaineer": ["S", "M", "D", "G"], + "uncommonest": [], + "flakeds": [], + "questionablings": [], + "disk's": [], + "sham'sed": [], + "bibliophiles": [], + "defoliates": [], + "dd": ["S", "D", "G"], + "Chretien's": [], + "Clancy's": [], + "worshipers": [], + "antiseptics": [], + "carnivorousness": ["M"], + "shuckses": [], + "bygones": [], + "tatting": ["M"], + "Seychelles's": [], + "warble's": [], + "mooteds": [], + "spontaneous": ["Y"], + "hatches": [], + "dopiness": ["M"], + "bankruptcy": ["S", "M"], + "guileless": ["Y", "P"], + "blacking": ["M"], + "sergeant'ses": [], + "bohemians": [], + "scroll'sed": [], + "luck": ["M", "D", "S", "G"], + "floater": ["M"], + "dynamitersing": [], + "bucketing's": [], + "sass": ["G", "M", "D", "S"], + "parities's": [], + "crisis": ["M"], + "dildos": [], + "expectoratingen": [], + "stablers": [], + "tacos": [], + "Lindbergh's": [], + "ballad's": [], + "gingery": [], + "contrabassoons": [], + "communicants": [], + "bronze": ["D", "S", "M", "G"], + "vicariousness": ["M"], + "marketability's": [], + "lubricate": ["D", "S", "G", "N"], + "superhero": ["M", "S"], + "Samsung": ["M"], + "invincible": [], + "hands": [], + "firebrand": ["S", "M"], + "serviettes": [], + "milers": [], + "fixer": ["M"], + "Solzhenitsyn": ["M"], + "Earp": ["M"], + "disinterment": [], + "moshing": [], + "adulterant": ["M", "S"], + "initiation's": [], + "preliminary": ["S", "M"], + "bijou": ["M"], + "dope": ["M", "Z", "G", "D", "R", "S"], + "blackthorns's": [], + "monarch's": [], + "specialties's": [], + "Nicobar": ["M"], + "radical": ["S", "M", "Y"], + "coherency": ["M"], + "Carolina's": [], + "obligate": ["D", "S", "X", "G", "N"], + "bloomer's": [], + "boot": ["A", "S", "G", "D"], + "sociopolitical": [], + "combateding": [], + "Lipton": ["M"], + "Darrel's": [], + "diuretic'ses": [], + "sicko's": [], + "egoistical": ["Y"], + "launchpads's": [], + "flounder's": [], + "intransigently": [], + "paintball": [], + "witlessness": ["M"], + "downswing'ses": [], + "unexcused": [], + "corrugate": ["G", "N", "X", "D", "S"], + "referendum": ["M", "S"], + "gigging": [], + "handpicked": [], + "alarmeds": [], + "changinged": [], + "edifiesers": [], + "middleweight's": [], + "terry's": [], + "fashionersing": [], + "Spirograph's": [], + "flogger": ["S", "M"], + "Frenchwomen's": [], + "bolus": ["M", "S"], + "tends": [], + "homesteading": [], + "transatlantic": [], + "overnight'ses": [], + "Carrillo's": [], + "wisely": [], + "unrelearn": [], + "federalized": [], + "quarreleder": [], + "burglaries": [], + "liabilities": [], + "weedier": [], + "dropping": ["S"], + "instantaneously": [], + "inspectorate'ses": [], + "Erik": ["M"], + "racially": [], + "affront'sed": [], + "reburial": [], + "sedatives": [], + "roofs": [], + "candelabrum": ["M"], + "ferrule's": [], + "bleed": ["Z", "G", "R", "S"], + "bucolic'ses": [], + "rashliness": [], + "brassiere'ses": [], + "conservationist": ["S", "M"], + "hangnail's": [], + "Narnia's": [], + "sighting's": [], + "homegrown": [], + "Delphinus": ["M"], + "sponginess": ["M"], + "Manfred's": [], + "pitchman": ["M"], + "firsthand": [], + "sheathing's": [], + "hijackersing": [], + "dewlaps's": [], + "particularized": [], + "unencumbered": [], + "kibbutz'ses": [], + "exclusionary": [], + "mismatching": [], + "languished": [], + "shrub'ses": [], + "antiqued": [], + "momentary": ["P"], + "renderings": [], + "directors": [], + "saturating": [], + "abashmented": [], + "inducted": [], + "tactlessnessly": [], + "sensitivities": [], + "emitter's": [], + "litigatesing": [], + "suavity's": [], + "sting's": [], + "uprooted": [], + "iguana's": [], + "paladin": ["S", "M"], + "waileder": [], + "trompinged": [], + "bayonets": [], + "merrier": [], + "bewitching": ["Y"], + "spumed": [], + "Scotch'ses": [], + "intercessors": [], + "footnoteds": [], + "musicale": ["M", "S"], + "saintliness": ["M"], + "vapidness's": [], + "farmyard'ses": [], + "waffler": ["M"], + "chalet": ["M", "S"], + "surmising": [], + "shuffle'sing": [], + "deceptiveness's": [], + "trudge'sing": [], + "cantankerousnessly": [], + "holocaust's": [], + "cloaca's": [], + "mend'sed": [], + "Alighieri": ["M"], + "loon'ses": [], + "agonizes": [], + "processioning": [], + "stetsons": [], + "grudged": [], + "establishment": ["A", "E", "M"], + "divas": [], + "registereds": [], + "mispronouncing": [], + "larch'ses": [], + "offhand": [], + "blips's": [], + "sidesaddle'ses": [], + "zeden": [], + "luxuriance": ["M"], + "pitied": [], + "tramcar": ["S"], + "hymnbook": ["S", "M"], + "coercer": ["M"], + "wavinesser": [], + "lowness's": [], + "anorak": ["M", "S"], + "tercentennial": ["S", "M"], + "dents": [], + "peeler": ["M"], + "watermarked": [], + "turret": ["S", "M", "D"], + "decision": ["I", "M"], + "hook's": [], + "ING": ["M"], + "coasteder": [], + "semitrailer": ["M", "S"], + "preface": ["D", "S", "M", "G"], + "vandalized": [], + "Chalmers": [], + "entrenched": [], + "licensee's": [], + "jarful": ["M", "S"], + "machinist's": [], + "potency": ["M"], + "purposelessnessly": [], + "rollovers": [], + "clunk's": [], + "cheekeds": [], + "Bristol": ["M"], + "eroticism's": [], + "cinder'sed": [], + "nearsightedly": [], + "screwdriver": ["M", "S"], + "outdid": [], + "Guatemalans": [], + "Tessa's": [], + "swiveled": [], + "bethought": [], + "brazen": ["S", "D", "Y", "G", "P"], + "pedagogues": [], + "Judases": [], + "icecap's": [], + "celebs": [], + "chge": [], + "ides's": [], + "Gabon's": [], + "pointillist": ["S", "M"], + "legitimatizes": [], + "supercity's": [], + "reassess": [], + "malamute'ses": [], + "dadaists": [], + "dichotomy's": [], + "seismographer": ["M"], + "pacer": ["M"], + "enamors": [], + "diapereding": [], + "secretsing": [], + "reproaches": [], + "brother's": [], + "greenhorn": ["S", "M"], + "Yuletides": [], + "sandlots": [], + "broachesing": [], + "containerizesing": [], + "disclosesing": [], + "accretion's": [], + "outmaneuvered": [], + "kimono's": [], + "Laue's": [], + "budgies": [], + "resurrection": ["M", "S"], + "mutation": ["M"], + "marketability": ["M"], + "hoed": [], + "destabilization": [], + "broodier": [], + "tabby": ["S", "M"], + "flamingo": ["M", "S"], + "flockeding": [], + "spills's": [], + "adapter": ["M"], + "rebelliousness": ["M"], + "invalid'sed": [], + "needlewoman's": [], + "instituter's": [], + "flatulence": ["M"], + "excursive": ["Y", "P"], + "suck": ["M", "D", "R", "Z", "G", "S"], + "hootenanny's": [], + "biped": ["M", "S"], + "madman's": [], + "wight": ["S", "M"], + "contraveninged": [], + "marlinespikes": [], + "outlawing": [], + "buzzard'ses": [], + "sensor": ["S", "M"], + "slippy": [], + "expropriations": [], + "loather": ["M"], + "craftier": [], + "danish'ses": [], + "piebald": ["M", "S"], + "skippered": [], + "brooding'sly": [], + "combat's": [], + "dangeder": [], + "telemeter": ["S", "M"], + "adamant'sly": [], + "plates": [], + "excavated": [], + "bunker's": [], + "bunged": [], + "setback's": [], + "cautiousness's": [], + "toss": ["M", "D", "R", "S", "Z", "G"], + "euphonious": ["Y"], + "simper'sed": [], + "appendeds": [], + "erupted": [], + "saltshakers": [], + "moored": [], + "seltzer": ["M", "S"], + "impishly": [], + "querying": [], + "pungency's": [], + "citizen'ses": [], + "electrologists": [], + "racecourse's": [], + "plating": ["M"], + "commandment": ["M", "S"], + "originality's": [], + "northwest's": [], + "senly": [], + "washrag": ["M", "S"], + "blessedly": [], + "Hebrews's": [], + "firebug": ["S", "M"], + "intoxicating": [], + "student's": [], + "mangroves": [], + "piercingsing": [], + "Clapeyron": ["M"], + "nulls": [], + "resurrection'ses": [], + "terminologically": [], + "rearrangement": [], + "carpeteding": [], + "establishingment": [], + "potassium's": [], + "cashews": [], + "tomb's": [], + "monopolizing": [], + "immodestly": [], + "ct": [], + "retaliating": [], + "thanking": [], + "ribs's": [], + "battleaxe's": [], + "yuppie'ses": [], + "Bakelite's": [], + "Yankee": ["S", "M"], + "peculate": ["G", "N", "D", "S"], + "imperfectliness": [], + "predefined": [], + "angels": [], + "euphemistically": [], + "contrived": [], + "winterize": ["G", "D", "S"], + "examining": [], + "portraiture": ["M"], + "intergovernmental": [], + "frontispiece's": [], + "rampage'sing": [], + "unsoundly": [], + "moral's": [], + "florins's": [], + "morsel's": [], + "need'sed": [], + "turboprop's": [], + "quotients's": [], + "newsboys": [], + "bombardinged": [], + "attired": [], + "Orville": ["M"], + "ate": [], + "relined": [], + "narrate": ["G", "N", "V", "D", "S", "X"], + "bulletproofs": [], + "Earl": ["M"], + "buzzeder": [], + "Niebuhr's": [], + "thermal's": [], + "multiplex's": [], + "sneeze": ["D", "S", "M", "G"], + "incisor": ["M", "S"], + "hinge's": [], + "perforate": ["G", "N", "X", "D", "S"], + "hydroplaninged": [], + "armorer": ["M"], + "protrudeds": [], + "disposable": ["S", "M"], + "foresails": [], + "supersedes": [], + "elodeas's": [], + "embraced": [], + "electroplating": [], + "memo's": [], + "tappet": ["M", "S"], + "larkspur": ["S", "M"], + "stepbrothers": [], + "caliph's": [], + "croak'sed": [], + "neurasthenia's": [], + "Clearasil": ["M"], + "diversionness": [], + "overclocked": [], + "author's": [], + "oil'sed": [], + "sullenness": ["M"], + "photographer": ["M"], + "sanctified": [], + "slideshow's": [], + "Scotchwoman's": [], + "subfamilies": [], + "height": ["X", "S", "M", "N"], + "functioning": [], + "customers's": [], + "proceedingings": [], + "pantheons": [], + "pyramidings": [], + "monogramming": [], + "alignment": ["A", "M", "S"], + "Bender": ["M"], + "overdraft's": [], + "eviscerating": [], + "mayflower": ["M", "S"], + "nodes": [], + "slipways": [], + "striped": [], + "imperceptible": [], + "AM": ["M"], + "fuss's": [], + "diffs": [], + "pizzeria's": [], + "signet'ses": [], + "spammers's": [], + "artichoke": ["S", "M"], + "insiders": [], + "loft'sed": [], + "recrudesces": [], + "infectiousness's": [], + "flames": [], + "turtlenecks": [], + "ammunition's": [], + "gasworks's": [], + "Garry": ["M"], + "falloweding": [], + "circumstantial": ["Y"], + "waltzing": [], + "tollbooth's": [], + "Fleming": ["M"], + "happenstance's": [], + "kickball's": [], + "mutant": ["M", "S"], + "studied": ["U"], + "blare's": [], + "handsets's": [], + "spreadable": [], + "pricing": [], + "shamefully": [], + "sabra'ses": [], + "butterfly's": [], + "zaps's": [], + "beeline'ses": [], + "resoundinged": [], + "runabout'ses": [], + "metamorphose": ["G", "D", "S"], + "drifts's": [], + "wrapping's": [], + "Nanook": ["M"], + "smuttiness's": [], + "gentleman": ["M", "Y"], + "slice's": [], + "ombudsman's": [], + "ringer's": [], + "quarries": [], + "peacekeeping's": [], + "mushesers": [], + "cedilla's": [], + "girl's": [], + "mentors": [], + "egalitarian": ["S", "M"], + "overcharges": [], + "uncouple": [], + "cheering": [], + "landmine": ["S"], + "baster": ["M"], + "weldsers": [], + "offbeats": [], + "gouge": ["D", "R", "S", "M", "Z", "G"], + "Schopenhauer": ["M"], + "Ionian's": [], + "battalion's": [], + "seed": ["A", "G", "D", "S"], + "minicomputers's": [], + "propitiously": [], + "winkles": [], + "aggrandized": [], + "maligns": [], + "lounger's": [], + "massesing": [], + "dazzle's": [], + "silicosis's": [], + "frogging": ["S"], + "dignify": ["D", "S", "G"], + "Lat's": [], + "choirboy": ["M", "S"], + "bronchitis": ["M"], + "afterimages": [], + "apostates": [], + "Kosciusko": ["M"], + "regular's": [], + "largest": [], + "wiring": ["M"], + "periwinkle": ["S", "M"], + "chimeric": [], + "Dominican'ses": [], + "troubleshooter": ["M"], + "interfereds": [], + "Hilario": ["M"], + "Brazil": ["M"], + "Joaquin's": [], + "reincarnate": [], + "honeymoons": [], + "atomize": ["Z", "G", "D", "R", "S"], + "playwrights": [], + "aardvark": ["S", "M"], + "insomniac": ["S", "M"], + "jogging's": [], + "hairspring'ses": [], + "recessionals's": [], + "tentacles": [], + "unbent": [], + "palsies's": [], + "embroiled": [], + "Nicola's": [], + "turbocharged": [], + "Stallone": ["M"], + "breakages": [], + "facility": ["S", "M"], + "Acevedo's": [], + "novelists's": [], + "parodied": [], + "entitlesing": [], + "Frau'sen": [], + "destroyeder": [], + "extraditing": [], + "blossomeds": [], + "extendsers": [], + "divisional": [], + "caitiff": ["S", "M"], + "sultriness's": [], + "litigant": ["S", "M"], + "Piedmont": ["M"], + "hiding": ["M"], + "snaffled": [], + "crunchiest": [], + "Wilburn": ["M"], + "aerials's": [], + "partiality's": [], + "Huntley": ["M"], + "contemneding": [], + "ballistics": ["M"], + "broadcloth's": [], + "botches": [], + "colonially": [], + "electroencephalogram's": [], + "dagos": [], + "spec's": [], + "seafaring's": [], + "sis's": [], + "unnerve": [], + "communistic": [], + "scrappers": [], + "routinize": ["G", "D", "S"], + "witting": ["U", "Y"], + "nous": [], + "asthmatic": ["S", "M"], + "preterit's": [], + "dentists": [], + "Sarto": ["M"], + "bailed": [], + "yellow's": [], + "commendation'ses": [], + "officiousnessly": [], + "saucepans's": [], + "Albany's": [], + "bicuspid's": [], + "wellhead's": [], + "chivalry's": [], + "Anatolian": ["M"], + "letdowns": [], + "godchild": ["M"], + "palatalizing": [], + "ankh": ["M"], + "essayed": [], + "Urals's": [], + "superintendency": ["M"], + "vita's": [], + "jag": ["S", "M"], + "kilo'ses": [], + "rest'sed": [], + "dwell": ["S", "J", "Z", "G", "R"], + "constrictsed": [], + "mischievousness": ["M"], + "guarded": ["Y"], + "portfolio'ses": [], + "outmatches": [], + "Briggs": ["M"], + "convened": [], + "conman": [], + "Calcutta": ["M"], + "fairy's": [], + "waylayersing": [], + "Lanka": ["M"], + "acetates": [], + "time'sly": [], + "lighten": ["S", "D", "R", "Z", "G"], + "fighting's": [], + "compacteder": [], + "grizzly's": [], + "haughtiness's": [], + "granite": ["M"], + "lizard": ["M", "S"], + "transcendentalism's": [], + "puncturing": [], + "pyrimidine": ["M", "S"], + "dissolving": [], + "tarballs": [], + "cargo's": [], + "hos's": [], + "lactated": [], + "newt": ["M", "S"], + "congestsed": [], + "shamanistic": [], + "incubationed": [], + "masterly": [], + "mean": ["M", "R", "Y", "J", "P", "S", "T", "G"], + "worshipersing": [], + "revamping's": [], + "percolateds": [], + "dispersal's": [], + "woodcarving's": [], + "seventeenth's": [], + "drunks": [], + "possession's": [], + "bumper": ["M"], + "Providence": ["S", "M"], + "aloofness's": [], + "hairgrip": ["S"], + "sailfishes": [], + "serializations": [], + "knocked": [], + "referendums": [], + "blunderer": ["M"], + "Corey": ["M"], + "mail": ["J", "M", "D", "R", "S", "Z", "G"], + "pew": ["S", "M"], + "estrogen": ["M"], + "elevationsed": [], + "unclog": [], + "medial": ["A", "Y"], + "temperature's": [], + "Superglue's": [], + "suffice": ["D", "S", "G"], + "playfellow": ["S", "M"], + "Kiowas": [], + "harrumphing": [], + "campsite": ["S", "M"], + "halftone's": [], + "penance'ses": [], + "splinter's": [], + "bullhead's": [], + "bicyclist's": [], + "happened": [], + "barrack's": [], + "affection": ["E", "M"], + "pseudonym's": [], + "snifters's": [], + "miry": ["R", "T"], + "whipsaw's": [], + "raglan": ["S", "M"], + "excellencies": [], + "legume's": [], + "groomsman's": [], + "humoresque": [], + "gemologist": ["M", "S"], + "chrome's": [], + "curtaileds": [], + "Alexei's": [], + "buckler": ["M", "S"], + "compelled": [], + "cobwebbiest": [], + "acquirers": [], + "fortuitousness": ["M"], + "lighter": ["S", "M"], + "affray'ses": [], + "glitter's": [], + "cop's": [], + "comestible": ["S", "M"], + "opportunistically": [], + "bluebirds": [], + "cardigan's": [], + "puddle's": [], + "McCarthyism's": [], + "ruminatingen": [], + "finger's": [], + "pharyngitis's": [], + "warningsed": [], + "foreclosed": [], + "Superbowl's": [], + "slotting": [], + "thoroughbreds": [], + "Alyce's": [], + "republication": [], + "lintels": [], + "material": ["S", "M", "Y"], + "phenomenon": ["M", "S"], + "dripped": [], + "Galaxy": [], + "gushes": [], + "sheepskin'ses": [], + "vitalizings": [], + "fortification's": [], + "highness": ["M"], + "Escondido": [], + "waterproof's": [], + "containment": ["M"], + "chandlers": [], + "dunged": [], + "conducive": [], + "jujube": ["M", "S"], + "curtailinged": [], + "conventionality's": [], + "colloquialisms": [], + "BIA": [], + "flung": [], + "sough": ["M", "D", "G"], + "childlike": [], + "timepiece'ses": [], + "birder's": [], + "klutz'ses": [], + "leaf": ["M", "D", "S", "G"], + "regrowth": [], + "hipness": ["M"], + "Ward": ["M"], + "even'sed": [], + "smug": ["Y", "P"], + "bottom'sed": [], + "handicapper's": [], + "bedrolls": [], + "evidences": [], + "bulletproofing": [], + "warbonnet": ["S", "M"], + "glorifiesen": [], + "drinker": ["M"], + "histamine's": [], + "bouncing": [], + "jets": [], + "virtuousness": ["M"], + "hacking's": [], + "monosyllables": [], + "Dunne's": [], + "Leonel's": [], + "chairlifts": [], + "lawbreaking's": [], + "occupiers's": [], + "gauzierness": [], + "Kirchner": ["M"], + "puckers": [], + "ringmasters": [], + "subcommittees's": [], + "lamenting": [], + "Palladio": ["M"], + "jackrabbit": ["M", "S"], + "defoliatesing": [], + "ado": ["M"], + "segue'sing": [], + "instruments": [], + "lobbyinged": [], + "afghans": [], + "popularizesing": [], + "flatten": ["S", "D", "G"], + "runners": [], + "interchange": ["D", "S", "M", "G"], + "Chinook'ses": [], + "tolerances": [], + "librarianship": [], + "interrelating": [], + "Tabasco": ["S", "M"], + "Cognac": ["M"], + "speechifying": [], + "Oakley's": [], + "equalizer's": [], + "coconuts": [], + "Valois's": [], + "pelf's": [], + "ragsing": [], + "courtroom": ["M", "S"], + "slicer": ["M"], + "fungible's": [], + "starch": ["G", "M", "D", "S"], + "ascertainment's": [], + "arbitrationed": [], + "skiff's": [], + "proselyte's": [], + "shredder's": [], + "submissive": ["P", "Y"], + "chivalrousness": ["M"], + "incarnationsing": [], + "fraternizing": [], + "outmatch": ["G", "D", "S"], + "prorepose": [], + "weft'ses": [], + "snafus": [], + "loathsomeness": ["M"], + "cancellations": [], + "antisubmarine": [], + "lunacies's": [], + "Copenhagen": ["M"], + "ficklest": [], + "Ispell": ["M"], + "saleslady's": [], + "engineers": [], + "hack": ["M", "D", "R", "Z", "G", "S"], + "twain": ["M"], + "preying": [], + "flabbergasted": [], + "procrastinate": ["D", "S", "G", "N"], + "marketplace's": [], + "snippet": ["S", "M"], + "clairvoyants": [], + "telecastersing": [], + "trendier": [], + "silk": ["M", "N", "S"], + "explosiveness's": [], + "deposition": [], + "kiddos's": [], + "observe": ["D", "R", "S", "B", "Z", "G"], + "occlusive": [], + "missal": ["E", "S", "M"], + "stockiness's": [], + "weariest": [], + "standpoint": ["M", "S"], + "overanxious": [], + "swooning's": [], + "ellipsoid": ["S", "M"], + "swastikas's": [], + "perimeters": [], + "sirs": [], + "MASH": [], + "chronologist's": [], + "staved": [], + "broncs": [], + "nonbelligerent's": [], + "frump": ["S", "M"], + "endorphin": ["M", "S"], + "gill'ses": [], + "Buber": ["M"], + "kook's": [], + "scavenge": ["Z", "G", "D", "R", "S"], + "flyways": [], + "exclamation": ["S", "M"], + "imitation": ["M"], + "unlace": [], + "Grey": ["M"], + "knocksers": [], + "source'sing": [], + "cheer's": [], + "winegrower": ["M", "S"], + "Kansas": ["M"], + "zealot'ses": [], + "gropes": [], + "hooted": [], + "preoccupations": [], + "mutterersing": [], + "disreputably": [], + "underemployment's": [], + "payments's": [], + "wretches": [], + "whimpering": [], + "nonagenarian'ses": [], + "lavage": ["M"], + "congregationalism": ["M"], + "indicatively": [], + "zits": [], + "occasioning's": [], + "rhodium": ["M"], + "osteopathy's": [], + "hybridization": ["M"], + "mattereding": [], + "expired": ["U"], + "Creation": ["M"], + "plenitudes": [], + "devious": ["Y", "P"], + "monsoon": ["S", "M"], + "lummox's": [], + "sowers's": [], + "jacket'sed": [], + "boyishness": ["M"], + "customizesing": [], + "Armani's": [], + "canoeds": [], + "surveyed": [], + "Callao": ["M"], + "expanded": [], + "burglaries's": [], + "achromatic": [], + "gateway": ["M", "S"], + "Hurley": ["M"], + "unremitting": ["Y"], + "arrived": [], + "dutiable": [], + "Riyadh's": [], + "coccyx's": [], + "transmutabled": [], + "fricative": ["S", "M"], + "randomizing": [], + "rheostats": [], + "Galileo's": [], + "glean": ["S", "D", "R", "Z", "G", "J"], + "basketry": ["M"], + "linden": ["M", "S"], + "withe's": [], + "twitch's": [], + "comic": ["S", "M"], + "originator": ["S", "M"], + "Oscar'ses": [], + "cacophonies's": [], + "apostle's": [], + "politburo": ["M", "S"], + "fuss'sed": [], + "Sabik's": [], + "grenadier": ["M", "S"], + "Julian's": [], + "crumpleds": [], + "search": ["A", "Z", "G", "M", "D", "R", "S"], + "soundbites": [], + "conspired": [], + "attempt's": [], + "Fortaleza's": [], + "conically": [], + "flip'ses": [], + "anklet's": [], + "defense'sing": [], + "toxicity's": [], + "nubs's": [], + "wastage's": [], + "peace": ["S", "M"], + "doleful": ["Y", "P"], + "festooned": [], + "fluid'sly": [], + "archduke": ["M", "S"], + "chrism's": [], + "promo's": [], + "prefecture'ses": [], + "fishtailing": [], + "ballplayer's": [], + "tartness's": [], + "declaration": ["M", "S"], + "factional": [], + "stirrup": ["S", "M"], + "emos's": [], + "Hellenize's": [], + "Hagar": ["M"], + "Cumberland's": [], + "Etruria's": [], + "bobsleds": [], + "armadillos's": [], + "battereder": [], + "imposed": [], + "Tokugawa's": [], + "exhibitor's": [], + "kiosk": ["S", "M"], + "randomnesses": [], + "nudging": [], + "prizefightings": [], + "corrodinged": [], + "haughtier": [], + "underpasses": [], + "proudly": [], + "Kisangani": ["M"], + "depredations": [], + "Blackfeet's": [], + "Selassie's": [], + "Tammany": ["M"], + "amalgams": [], + "Callahan's": [], + "boxcar": ["S", "M"], + "Kawabata's": [], + "daubing": [], + "butterflied": [], + "knockwurst's": [], + "O'Keeffe": ["M"], + "condition": ["A", "G", "S", "D"], + "nonpluses": [], + "Gagarin's": [], + "job": ["S", "M"], + "caption": ["S", "M", "D", "G"], + "potentiallies": [], + "centralizer'ses": [], + "thralldom's": [], + "limousine's": [], + "occlude": ["G", "D", "S"], + "cinematography's": [], + "conditional's": [], + "zeta's": [], + "phoebes": [], + "misfileds": [], + "godlessness's": [], + "automatic": ["S", "M"], + "concealersing": [], + "diametrically": [], + "pasteurizinged": [], + "fez's": [], + "tenet's": [], + "stature": ["M", "S"], + "cribbers": [], + "squirting": [], + "saxophonists": [], + "eyelash's": [], + "pensioneder": [], + "crannieds": [], + "steed's": [], + "Eliza's": [], + "riot": ["Z", "G", "M", "D", "R", "S"], + "senator": ["M", "S"], + "barker's": [], + "curlicue'sing": [], + "mainlined": [], + "mountaintop": ["S", "M"], + "quizzers's": [], + "scourer's": [], + "prejudgments's": [], + "pinging": [], + "yammered": [], + "thesaurus'ses": [], + "Barr": ["M"], + "misdeed": ["M", "S"], + "shrank": [], + "bewareds": [], + "won's": [], + "artistically": [], + "spillway": ["M", "S"], + "coauthoring": [], + "computerizinged": [], + "gunner": ["M", "S"], + "cozening": [], + "Capulet's": [], + "prepuce'ses": [], + "convert": ["A", "G", "S", "D"], + "Uruguay": ["M"], + "Clemons": ["M"], + "backstroked": [], + "insults": [], + "upstarteds": [], + "audiologist": ["S", "M"], + "canvassers": [], + "beau": ["S", "M"], + "Andromache's": [], + "derecolonization": [], + "Manchuria's": [], + "embellishments": [], + "faithfulness's": [], + "fleeciness's": [], + "predict": ["B", "G", "V", "S", "D"], + "Lieut": [], + "plateau'sed": [], + "penthouses's": [], + "neanderthal's": [], + "USDA": ["M"], + "supernumeraries": [], + "retrofires": [], + "schizoids": [], + "vocations": [], + "intuitions": [], + "oms": [], + "fireball's": [], + "hedgehog'ses": [], + "recoveries's": [], + "depths": [], + "milestone's": [], + "library's": [], + "tallier's": [], + "automobileds": [], + "bluenose's": [], + "medications": [], + "bloodthirstierness": [], + "sadomasochist's": [], + "courtyard'ses": [], + "define": ["A", "G", "D", "S"], + "enlivensment": [], + "verruca": ["S", "M"], + "marlins": [], + "Can's": [], + "narcissistic": [], + "newsier": [], + "sneakier": [], + "pedalo": ["S"], + "brats": [], + "misapprehension's": [], + "yuck": [], + "cosignatories": [], + "lewdness": ["M"], + "humbler's": [], + "patrols": [], + "supremacy's": [], + "swallowtails": [], + "draftiness's": [], + "nonlegal": [], + "discographies": [], + "elbow'sed": [], + "Alnilam": ["M"], + "Carranza's": [], + "lightness": ["M"], + "genitive": ["M", "S"], + "reducesers": [], + "awkwardly": [], + "exclaimeding": [], + "changer": ["M"], + "similarly": [], + "heehaw's": [], + "inbreeds": [], + "graceless": ["P", "Y"], + "stutterer's": [], + "pistols's": [], + "enlist": ["A", "D", "G", "S", "L"], + "cambers": [], + "brine's": [], + "timorously": [], + "valedictories": [], + "grasps's": [], + "snipe": ["S", "M"], + "Dolby": ["M"], + "decaf": ["M", "S"], + "moisteneder": [], + "dognapper": [], + "gristmill": ["M", "S"], + "molded": [], + "commies": [], + "Sunnyvale": ["M"], + "Anzac's": [], + "Jedi's": [], + "ameliorating": [], + "chickpeas's": [], + "boilermaker's": [], + "siphoning's": [], + "feedback": ["M"], + "Ginsburg": ["M"], + "Bronson": ["M"], + "centrism": ["M"], + "goalkeeper's": [], + "subordinateds": [], + "metempsychosis": ["M"], + "SALT": ["M"], + "ejaculate": ["G", "N", "X", "D", "S"], + "Michelin's": [], + "Walker": ["M"], + "skier": ["M"], + "hammering": [], + "driftersing": [], + "marrying": [], + "uncomfortably": [], + "chaininged": [], + "Belushi's": [], + "mangy": ["T", "R", "P"], + "habituationed": [], + "expostulation": ["M"], + "quadrillions": [], + "culminations": [], + "superintend": ["D", "S", "G"], + "fistfight'ses": [], + "misappropriate": ["X", "D", "S", "G", "N"], + "wimples": [], + "decapitating": [], + "kenned": [], + "opener's": [], + "Hubbard": ["M"], + "Poconos's": [], + "constable's": [], + "individuating": [], + "biscuits's": [], + "Freddy's": [], + "soarings": [], + "burying": [], + "cuff's": [], + "merge": ["D", "R", "S", "Z", "G"], + "enlarger's": [], + "fans's": [], + "mummies's": [], + "classiest": [], + "salacity": ["M"], + "efflorescence's": [], + "democratizing": [], + "inured": [], + "prevalence": ["M"], + "Joplin": ["M"], + "ethnographers": [], + "intuitivenessly": [], + "repudiating": [], + "Richard'ses": [], + "gaspeding": [], + "Park": ["S", "M", "R"], + "Argonne": ["M"], + "plead": ["D", "R", "Z", "G", "S", "J"], + "honorer": ["S", "M"], + "Sumatra's": [], + "Northerner": ["M"], + "caption'sed": [], + "Pepin's": [], + "arbitrariness's": [], + "Paleocene": ["M"], + "reeleds": [], + "forepart": ["M", "S"], + "misjudgeds": [], + "grieversing": [], + "Rubbermaid": ["M"], + "charmer": ["M"], + "file": ["C", "A", "K", "G", "D", "S"], + "perished": [], + "Taoists": [], + "escorts": [], + "sendinger": [], + "Powell's": [], + "headships's": [], + "lowdown": ["M"], + "prowl's": [], + "underbids": [], + "adjudicatingen": [], + "becalmed": [], + "observations": [], + "restrictiveliness": [], + "handwork's": [], + "Punjabi": ["M"], + "tautens": [], + "irrigate": ["D", "S", "G", "N"], + "fiestas": [], + "slurpeding": [], + "doubleds": [], + "extirpating": [], + "dip": ["S", "M"], + "dead": ["X", "T", "M", "N", "R", "Y"], + "Tibet's": [], + "compass": ["G", "M", "D", "S"], + "precept's": [], + "remedies's": [], + "pundits's": [], + "Psalters": [], + "Dictaphones": [], + "adjoined": [], + "groove'sing": [], + "unionism's": [], + "rustle'sers": [], + "sidesaddles": [], + "sealing": [], + "eclair's": [], + "joyride": ["R", "S", "M", "Z", "G"], + "worldviews's": [], + "lightened": [], + "knockwursts's": [], + "generalissimo'ses": [], + "whereabouts": ["M"], + "frankeder": [], + "Kwanzaa": ["M", "S"], + "vacationing's": [], + "archenemy": ["S", "M"], + "samplings": [], + "nonindustrial": [], + "chattinesser": [], + "transmission'ses": [], + "shutterbug'ses": [], + "Cowper's": [], + "inheritsed": [], + "quadrangular": [], + "iPhone": ["M"], + "drawleding": [], + "ingratiation": ["M"], + "exaggerators": [], + "suture": ["M", "G", "D", "S"], + "headshrinker": ["S", "M"], + "schoolmistresses": [], + "moseying": [], + "Thucydides": ["M"], + "Titanic's": [], + "gradationsing": [], + "lavishing": [], + "falsehoods": [], + "unsoiled": [], + "ducks": [], + "NWT": [], + "Ali's": [], + "cloyeding": [], + "sandbars": [], + "subcontracted": [], + "Dionysus": ["M"], + "Munster's": [], + "vernaculars": [], + "dulling": [], + "Hohenlohe's": [], + "Arthurian's": [], + "Cherokee'ses": [], + "hokinged": [], + "Meagan": ["M"], + "topmost": [], + "infantryman's": [], + "bible's": [], + "consumerist's": [], + "precociousness": ["M"], + "visualization": ["S", "M"], + "ersatzes": [], + "hustle'sers": [], + "chorusing": [], + "careers": [], + "acupressure": ["M"], + "impurerly": [], + "thrums's": [], + "quavering": [], + "trunks": [], + "colorizes": [], + "bedims": [], + "disband": [], + "copula's": [], + "bolting": [], + "baryons's": [], + "subscribers": [], + "Mumbai's": [], + "turbocharging": [], + "toggles's": [], + "tumbrels's": [], + "nippier": [], + "album'sen": [], + "Terry": ["M"], + "luxuries's": [], + "successive": ["Y"], + "insignia's": [], + "trireme's": [], + "zines": [], + "standardizes": [], + "nucleate": ["D", "S", "G", "N"], + "flyspecked": [], + "unplayable": [], + "rabbets": [], + "credos's": [], + "Fahrenheit": ["M"], + "toughies's": [], + "chinstrap": ["M", "S"], + "historical": ["Y"], + "fantasizes": [], + "effaced": [], + "sharking": [], + "roundhouses's": [], + "ineptness": ["M"], + "direr": [], + "approximates": [], + "voice'sing": [], + "steepnessens": [], + "grindings": [], + "foretell": ["G", "S"], + "welterweight": ["S", "M"], + "declaresers": [], + "vitrification's": [], + "acclimateds": [], + "laughable": [], + "shortener": [], + "refreshments": ["M"], + "hoodlums's": [], + "linesmen": [], + "closet's": [], + "wheeze": ["D", "S", "M", "G"], + "faxing": [], + "liberality's": [], + "inhibiting": [], + "raided": [], + "jackets's": [], + "raw": ["P", "T", "M", "R"], + "overemphasized": [], + "icings": [], + "Croatia's": [], + "remap": [], + "jetports": [], + "curbings": [], + "Meredith's": [], + "stuffing's": [], + "meagernessly": [], + "laughable's": [], + "blossom": ["G", "M", "D", "S"], + "rapeder": [], + "shew": ["G", "D", "S"], + "steelmaker": ["S"], + "Trumbull's": [], + "cabdriver": ["S", "M"], + "motored": [], + "aspirated": [], + "Carina": ["M"], + "licentiousness's": [], + "dieseling": [], + "news's": [], + "puns": [], + "fryers": [], + "empathy": ["M"], + "quoteds": [], + "fluorescesing": [], + "sundering": [], + "exclusive": ["P", "M", "Y", "S"], + "neonate's": [], + "priories's": [], + "peskier": [], + "bleated": [], + "Sinai": ["M"], + "electricians": [], + "transposed": [], + "gelded": [], + "carcinogenic'ses": [], + "tinning": [], + "equates": [], + "infant'ses": [], + "disunion's": [], + "fraternities's": [], + "Grendel": ["M"], + "redacted": [], + "Dracula": ["M"], + "revel's": [], + "predominance's": [], + "Thompson's": [], + "suffusesing": [], + "dovetail'sed": [], + "foghorns": [], + "grandees": [], + "mingy": [], + "demulcents": [], + "crossfire'ses": [], + "determiner": ["S", "M"], + "Serb's": [], + "storm's": [], + "elevate": ["X", "D", "S", "G", "N"], + "geothermic": [], + "southpaws's": [], + "citrus's": [], + "brewery": ["S", "M"], + "underlips": [], + "taught": ["U", "A"], + "anklet'ses": [], + "placates": [], + "Sandoval": ["M"], + "portinged": [], + "engineering's": [], + "oil": ["S", "G", "M", "D"], + "territorial'ses": [], + "hallways": [], + "Hanover's": [], + "rubies": [], + "infuriated": [], + "bedstead's": [], + "unconscious": ["M"], + "Patagonia's": [], + "pang'ses": [], + "squeaky": ["T", "R", "P"], + "trashes": [], + "tether": ["S", "M", "D", "G"], + "halal's": [], + "weans": [], + "transliteration": ["M"], + "oxbow's": [], + "glandes": [], + "galaxy's": [], + "taxeder": [], + "scaffolding": ["M"], + "nag's": [], + "throttlers": [], + "pews's": [], + "greases's": [], + "jumper": ["M"], + "armature": ["M", "S"], + "faint'sed": [], + "vernier's": [], + "impulsed": [], + "backhand": ["M", "D", "R", "S", "Z", "G"], + "homily's": [], + "periodical's": [], + "shapeliness's": [], + "Mamore": ["M"], + "Bethany": ["M"], + "soared": [], + "tissue": ["S", "M"], + "ethnologists": [], + "combination": ["S", "M"], + "archive": ["D", "S", "M", "G"], + "edema": ["S", "M"], + "Socrates": ["M"], + "fairings": [], + "enthusesing": [], + "jeers": [], + "wilted": [], + "fatness's": [], + "Lordship": ["S", "M"], + "champ": ["Z", "G", "M", "D", "S"], + "knockouts's": [], + "viewership's": [], + "echoing": [], + "rightfulnessly": [], + "sassing's": [], + "codependent": ["S", "M"], + "cornering's": [], + "nonusers": [], + "ramming": [], + "conferrer's": [], + "sabotaging": [], + "magnification": ["M"], + "aptness": ["I", "M"], + "Lear": ["M"], + "strangler's": [], + "eighteenth's": [], + "churchwarden": ["M", "S"], + "chauffeur": ["G", "M", "D", "S"], + "Abdul": ["M"], + "thriller's": [], + "graftersing": [], + "ECG's": [], + "nibble'sers": [], + "woozy": ["T", "R", "P"], + "demob": [], + "jar's": [], + "readopt": [], + "coots": [], + "copybooks": [], + "dandelion": ["S", "M"], + "boneshakers": [], + "Mazzini's": [], + "ambrosia's": [], + "duchess": ["M", "S"], + "ruin'sed": [], + "diagnosing": [], + "Pearson": ["M"], + "unpolished": [], + "sailplanes": [], + "throttlersing": [], + "radar's": [], + "MySpace's": [], + "patronizing": ["Y"], + "gestures": [], + "businesswomen": [], + "Kafkaesque's": [], + "Sheridan": ["M"], + "undesirable'ses": [], + "cleft'ses": [], + "churchyards's": [], + "frontwards": [], + "rabble": ["M", "S"], + "lapwing's": [], + "bunkhouse": ["S", "M"], + "physios": [], + "disastrous": ["Y"], + "asphyxia": ["M"], + "rotation": ["M"], + "inquisitiveliness": [], + "Calvary": ["M"], + "conurbation'ses": [], + "beginning's": [], + "touslinged": [], + "Paris": ["M"], + "henceforward": [], + "burgeoned": [], + "piers": [], + "minion's": [], + "mistrals": [], + "perfect'sed": [], + "Nader's": [], + "nurtures's": [], + "Ganesha": ["M"], + "cosmonaut": ["S", "M"], + "eh": [], + "landholders": [], + "notably": [], + "wisterias": [], + "hueds": [], + "foresightedness": ["M"], + "ranchesers": [], + "facsimileds": [], + "dipsticks's": [], + "ambulanceman": [], + "greenbelts": [], + "ails": [], + "have's": [], + "MOOC": [], + "interrogatories's": [], + "scrags": [], + "LSD's": [], + "growling's": [], + "multilateral": ["Y"], + "phylogeny's": [], + "Kyrgyzstan's": [], + "parties": [], + "superposeds": [], + "unsavory": [], + "shelves": [], + "exasperated": ["Y"], + "parameter": ["M", "S"], + "hinges": [], + "Portia's": [], + "yelp's": [], + "Elva's": [], + "underestimation's": [], + "chute": ["M", "S"], + "libertine's": [], + "spitefullest": [], + "sufficesing": [], + "litigants's": [], + "humanization": ["C", "M"], + "garden's": [], + "Alexander'ses": [], + "pointers": [], + "botulinum": [], + "escutcheons": [], + "anesthetized": [], + "Pinocchio": ["M"], + "dogeared": [], + "greenish": [], + "gilds": [], + "sousing": [], + "floured": [], + "bafflesment": [], + "nattering": [], + "lucubrated": [], + "paraphrased": [], + "service'ses": [], + "landowner's": [], + "pendant's": [], + "Edsel": ["M"], + "alembic's": [], + "gross": ["P", "T", "G", "M", "D", "R", "S", "Y"], + "lighthouse'ses": [], + "eructations": [], + "compress's": [], + "tachycardia": ["M"], + "tart's": [], + "ordinary's": [], + "Menzies's": [], + "Hooters": ["M"], + "flatworms": [], + "Cmdr": [], + "willy": ["S"], + "Ecuadorans's": [], + "Dictaphone's": [], + "gust'sed": [], + "characterize": ["D", "S", "G"], + "obscener": [], + "Beatrix": ["M"], + "workplace's": [], + "ambit": [], + "amniocentesis": ["M"], + "Grenadian'ses": [], + "witnessesing": [], + "housebreaking's": [], + "kola'ses": [], + "impulsion's": [], + "idiosyncrasies": [], + "clerically": [], + "particular'sly": [], + "chairlift's": [], + "cliquishliness": [], + "profiteering's": [], + "topping": ["S", "M"], + "trieds": [], + "topicality": ["M"], + "enlightensing": [], + "uninto": [], + "beguileder": [], + "grateful": ["U", "Y", "P"], + "canopies": [], + "Sakha's": [], + "barman's": [], + "aerosols": [], + "glamour'sed": [], + "manual'sly": [], + "biographers": [], + "swoopsing": [], + "mugging'ses": [], + "nonrecognition": ["M"], + "telegraphic": [], + "chicory": ["S", "M"], + "Fleischer": ["M"], + "Antigua": ["M"], + "misdemeanors": [], + "instruction's": [], + "Mauro's": [], + "cells": [], + "daubing's": [], + "hypnotism's": [], + "Beiderbecke's": [], + "fangeds": [], + "nonconductors": [], + "economy's": [], + "noncooperation's": [], + "littereder": [], + "Islamic's": [], + "stormings": [], + "servomotor's": [], + "Internet": ["S", "M"], + "rascally": [], + "croupy": ["Z", "T", "R"], + "nepenthe": ["M"], + "Turgenev's": [], + "insulationed": [], + "maples": [], + "Metternich's": [], + "containment's": [], + "newt's": [], + "Westminster": ["M"], + "avenue's": [], + "sandbag": ["S", "M"], + "bombard": ["G", "D", "L", "S"], + "brewed": [], + "navigators": [], + "tankeder": [], + "wronging": [], + "admission": ["A", "M"], + "breakup": ["S", "M"], + "outspokenness's": [], + "blowflies": [], + "punctuateds": [], + "bouncy": ["R", "T", "P"], + "turncoats's": [], + "gasp'sed": [], + "angstroms": [], + "consequences": [], + "Attic's": [], + "Austronesian": ["M"], + "protuberant": [], + "hatred's": [], + "drapes": [], + "alveolars": [], + "coverall'ses": [], + "softball'ses": [], + "pillions": [], + "Minnesotan's": [], + "corruptness's": [], + "ptarmigan'ses": [], + "picot's": [], + "resumption's": [], + "minicams": [], + "dispensinged": [], + "transfers": [], + "dyer's": [], + "prosper": ["G", "S", "D"], + "earring's": [], + "canes's": [], + "mansard's": [], + "divergences": [], + "Koch": ["M"], + "typographic": [], + "manifestly": [], + "cybercafes": [], + "manana": ["M", "S"], + "Theron": ["M"], + "glares": [], + "Ethernet's": [], + "Charolais": ["M"], + "clinching": [], + "Yank's": [], + "Venusian": ["M"], + "shilled": [], + "Jonahs": [], + "Runyon": ["M"], + "calumniation": ["M"], + "exculpateds": [], + "parboiled": [], + "favorite": ["S", "M"], + "Hurley's": [], + "finding": ["M"], + "registry's": [], + "quake's": [], + "singeder": [], + "poky": ["T", "R"], + "Lothario's": [], + "Aaliyah": ["M"], + "hangover's": [], + "praseodymium": ["M"], + "handbags's": [], + "fingering": ["M"], + "joshes": [], + "tetchy": ["P", "R", "T"], + "Rene's": [], + "beggared": [], + "minerals": [], + "improvingable": [], + "antibody's": [], + "periods": [], + "doggednessly": [], + "steer": ["S", "M", "D", "B", "G"], + "Macedonians": [], + "defter": [], + "lugsails": [], + "underwires": [], + "astrologer's": [], + "Nureyev's": [], + "Bonaparte": ["M"], + "shysters's": [], + "tidieder": [], + "Alar's": [], + "contrivances": [], + "Lilliputian's": [], + "cabs's": [], + "note": ["F", "C", "S", "D", "G"], + "tucksers": [], + "cornices": [], + "modifiers": [], + "Gandhi": ["M"], + "wryer": [], + "Austin": ["M", "S"], + "pilgrim": ["M", "S"], + "Kevorkian's": [], + "Diaspora": ["M", "S"], + "gadgetry": ["M"], + "audiometers": [], + "mike's": [], + "feelerers": [], + "provenable": [], + "headiness's": [], + "apartheid": ["M"], + "juristic": [], + "Gwyn": ["M"], + "complimenting": [], + "foo": [], + "mandamus": ["M", "S"], + "substitutes": [], + "bobs": [], + "stoliderly": [], + "expulsions": [], + "cleaning": ["M"], + "vintner's": [], + "gate's": [], + "wolfhound": ["S", "M"], + "hustles": [], + "twirlers": [], + "everlasting's": [], + "intent'sly": [], + "nutrias": [], + "aeries": [], + "outreachesing": [], + "homey's": [], + "injecting": [], + "overbuy": ["G", "S"], + "wintergreen's": [], + "Marjorie's": [], + "rowboat's": [], + "subjoininged": [], + "perambulations": [], + "behalves": [], + "aslant": [], + "critiqued": [], + "unwarily": [], + "timepiece": ["M", "S"], + "apprehension": ["M", "S"], + "misdeal's": [], + "permitting": [], + "escalating": [], + "estimate": ["M", "G", "N", "D", "S", "X"], + "aspiratesens": [], + "travels": [], + "offset": ["M", "S"], + "nods's": [], + "kingfisher": ["S", "M"], + "convenesing": [], + "Lauri's": [], + "piggies": [], + "wildcats": [], + "snorer": ["M"], + "ungraded": [], + "ecologic": [], + "instigatingen": [], + "charade": ["S", "M"], + "binged": [], + "with": [], + "sterilizations's": [], + "sharecropper": ["M", "S"], + "fledgling'ses": [], + "Mesopotamia": ["M"], + "phosphor'ses": [], + "literals": [], + "fourposter": ["S", "M"], + "feedlot's": [], + "lapboards": [], + "gearbox's": [], + "Zelig's": [], + "interconnected": [], + "contrastings": [], + "abscission's": [], + "outfitter": ["M", "S"], + "Mira": ["M"], + "bandwidth": [], + "chiefer": [], + "natter'sed": [], + "guardsmen": [], + "evilness's": [], + "pinpoints": [], + "shallow's": [], + "outflanks": [], + "slenderized": [], + "oddities": [], + "gaffeder": [], + "commotions": [], + "flits": [], + "hr": ["S"], + "puncheon's": [], + "sparsely": [], + "assessments": [], + "spangly": [], + "ginned": [], + "chaplet": ["S", "M"], + "excavator": ["S", "M"], + "informativenessly": [], + "marries": [], + "suffocating": [], + "punctured": [], + "LLB": ["M"], + "firths": [], + "God": ["M"], + "endorsement'ses": [], + "Aborigine's": [], + "firms": [], + "yelled": [], + "boardinghouse's": [], + "COBOLs's": [], + "frizzy": ["T", "R"], + "subsist": ["S", "D", "G"], + "veilings": [], + "savage": ["D", "R", "S", "M", "Y", "T", "G", "P"], + "edition": ["M", "S"], + "substructures's": [], + "pogrom": ["S", "M"], + "bully'sing": [], + "slicer's": [], + "sickeningly": [], + "distemper's": [], + "paleness's": [], + "fixates": [], + "censurer": ["M"], + "pubic": [], + "abounding": [], + "snowmobile'sing": [], + "encouragements's": [], + "plat's": [], + "Gogol": ["M"], + "Montreal": ["M"], + "primrose's": [], + "shackling": [], + "secession": ["M"], + "esquire": ["S", "M"], + "roomettes's": [], + "Vonnegut": ["M"], + "fratricide's": [], + "daybeds": [], + "tildes's": [], + "amorousness": ["M"], + "glaze's": [], + "tryingly": [], + "smelt": ["S", "M", "D", "R", "Z", "G"], + "detachablement": [], + "trivium": ["M"], + "peduncle's": [], + "budget'sed": [], + "Mirabeau's": [], + "diaries": [], + "clonks's": [], + "grimace's": [], + "peeveds": [], + "closeup": ["S", "M"], + "carveries": [], + "dialogues": [], + "instructional": [], + "Brenton": ["M"], + "prospecteding": [], + "incognito": ["M", "S"], + "cropper's": [], + "spates's": [], + "lards": [], + "retrospective'sly": [], + "Degas": ["M"], + "narrators's": [], + "sixes": [], + "propel": ["S"], + "fleshliest": [], + "hosier'ses": [], + "psychoanalytically": [], + "raunchierness": [], + "latticework": ["S", "M"], + "medieval": [], + "quieteneding": [], + "cloistering": [], + "landholding'ses": [], + "farrier's": [], + "SO": ["S"], + "tips's": [], + "orderliness's": [], + "stills": [], + "witchcraft's": [], + "intensifier": ["M"], + "forte's": [], + "puritanism's": [], + "Isabelle's": [], + "Almighty": ["M"], + "bowline": ["S", "M"], + "psychiatrists": [], + "hijabs's": [], + "gestapos": [], + "sequence'sers": [], + "tort's": [], + "greenbelt": ["M", "S"], + "frostier": [], + "bumblersing": [], + "gunk's": [], + "Williams's": [], + "lingo": ["M"], + "Rudy": ["M"], + "Chinooks": [], + "cloisters's": [], + "blab's": [], + "splint": ["S", "Z", "G", "M", "D", "R"], + "chirpily": [], + "wheezinesser": [], + "subtend": ["S", "D", "G"], + "braggadocio": ["S", "M"], + "snorkel's": [], + "grand'ser": [], + "petticoats": [], + "buckeyes": [], + "Valentine": ["M"], + "burly": ["R", "P", "T"], + "figurine": ["M", "S"], + "Bukharin's": [], + "omelet": ["M", "S"], + "things": [], + "ammunition": ["M"], + "cock'sed": [], + "Armonk": ["M"], + "bauxite's": [], + "wren'ses": [], + "turbocharger's": [], + "junction's": [], + "camper'ses": [], + "Europa": ["M"], + "foil": ["M", "D", "G", "S"], + "dustpan's": [], + "lunchtimes": [], + "arcade": ["M", "S"], + "metronome'ses": [], + "Buck": ["M"], + "kowtowed": [], + "Shepard": ["M"], + "whirl": ["S", "M", "D", "G"], + "Janine": ["M"], + "creams": [], + "interludinged": [], + "arrowhead'ses": [], + "groaned": [], + "Dionysus's": [], + "taunted": [], + "Kelley's": [], + "misdeeds": [], + "Pepin": ["M"], + "spotlessness's": [], + "hymn": ["M", "D", "S", "G"], + "salami": ["S", "M"], + "cattlemen": [], + "Indy's": [], + "sushi's": [], + "eye's": [], + "republics": [], + "payload": ["S", "M"], + "Brandie": ["M"], + "larkspurs": [], + "wrigglinged": [], + "angling": ["M"], + "dashersing": [], + "communism": ["M"], + "braver": [], + "PCP's": [], + "arthropod's": [], + "gusher": ["M"], + "truncheons": [], + "encouragementing": [], + "friskiness": ["M"], + "moneyed": [], + "cassock's": [], + "pollutersing": [], + "motorcyclist's": [], + "prejudicinged": [], + "shorty's": [], + "Reyes's": [], + "customizeds": [], + "chairing's": [], + "audiophiles": [], + "blinded": [], + "restraints": [], + "draw'ser": [], + "dolphin's": [], + "tureen's": [], + "quiffs": [], + "clansman's": [], + "soareding": [], + "cambium": ["S", "M"], + "vulcanizing": [], + "egoistically": [], + "refers's": [], + "sorrow's": [], + "toolbars": [], + "luxuriousnessly": [], + "hairpin's": [], + "preciously": [], + "airplane's": [], + "discordance's": [], + "Bulgarian's": [], + "indiscretion": ["S"], + "crappies's": [], + "gigglier": [], + "criticizes": [], + "nettlesome": [], + "SST": [], + "moans": [], + "gluing": [], + "supersonic": [], + "quiet'sed": [], + "excused": ["U"], + "ferret's": [], + "anime's": [], + "caterwauled": [], + "puttering": [], + "shutoff's": [], + "Aquino": ["M"], + "pantie'ses": [], + "circumscription's": [], + "hysterical": ["Y"], + "overlaid": [], + "reformatory's": [], + "manhole's": [], + "grubbed": [], + "multiplex'sed": [], + "outfielderers": [], + "manics's": [], + "arbitrator": ["M", "S"], + "gustsing": [], + "sensitive": ["S", "M", "Y", "P"], + "derby": ["S", "M"], + "blowiest": [], + "mechanize": ["D", "S", "G"], + "scoffing": [], + "irksomely": [], + "traversed": [], + "patina": ["M", "S"], + "solvency's": [], + "convector": ["S"], + "lamplight'ser": [], + "sleepyhead's": [], + "Roget": ["M"], + "illusory": [], + "eatery's": [], + "debating": ["M"], + "toad": ["M", "S"], + "Paramount": ["M"], + "suicides": [], + "ecstasy": ["S", "M"], + "scrutinizes": [], + "dwarfed": [], + "stoats's": [], + "conduits": [], + "suffersings": [], + "garrisonsing": [], + "fecundate": ["G", "N", "D", "S"], + "advantageously": [], + "Continental's": [], + "appeaser's": [], + "xxvi": [], + "frankfurter'ses": [], + "equerry's": [], + "panacea's": [], + "fondlesing": [], + "Watts's": [], + "advance": ["L", "D", "S", "M", "G"], + "brashness": ["M"], + "rescues's": [], + "figurings": [], + "gratuities's": [], + "revoked": [], + "mixing": [], + "biologist": ["M", "S"], + "troposphere's": [], + "trashy": ["R", "P", "T"], + "animistic": [], + "stickups": [], + "wildest": [], + "glamorization": ["M"], + "haggises": [], + "quantification": ["M"], + "combos's": [], + "Tums": ["M"], + "determination": [], + "unhandiest": [], + "preemie's": [], + "Twp": [], + "muleskinner": ["M", "S"], + "furiously": [], + "ductility's": [], + "revolt": ["G", "D"], + "grip'sed": [], + "Vandal's": [], + "fortifier's": [], + "motocross'ses": [], + "Forbes": ["M"], + "pharmacologist's": [], + "blonde": ["M", "S"], + "beneficiary": ["S", "M"], + "deprofile's": [], + "dratted": [], + "adjectival": ["Y"], + "abrogationsing": [], + "millrace's": [], + "abseiling": [], + "inculpated": [], + "horehound": ["S", "M"], + "Grimm": ["M"], + "incinerating": [], + "emigrants's": [], + "fatigued": [], + "platensing": [], + "graffiti": [], + "dollop's": [], + "complied": [], + "philharmonics's": [], + "ravishingly": [], + "denyinged": [], + "rectify": ["X", "N", "D", "R", "S", "Z", "G"], + "dormouse's": [], + "unscientifically": [], + "Elanor's": [], + "Riga's": [], + "amputee": ["M", "S"], + "encumbrance'ses": [], + "Briton's": [], + "transplant'sed": [], + "Joshua": ["M"], + "praetor": ["S", "M"], + "cultivatabled": [], + "cinnabar's": [], + "grasshopper's": [], + "throb": ["S", "M"], + "potherbs": [], + "Bohemia": ["M"], + "ripper": ["S", "M"], + "pumper": ["M"], + "chewy": ["P", "T", "R"], + "gunman": ["M"], + "yet": [], + "combustion's": [], + "exerting": [], + "Amen's": [], + "windsurfed": [], + "massageds": [], + "ascends": [], + "limousines": [], + "fundeding": [], + "trellising": [], + "portendinged": [], + "lat": ["S"], + "humbleder": [], + "barbiturate's": [], + "sorehead": ["M", "S"], + "proponent's": [], + "lubricator'ses": [], + "lea": ["S", "M"], + "planed": [], + "dicotyledonous": [], + "primates": [], + "sharp's": [], + "Naipaul": ["M"], + "metallurgy's": [], + "updates": [], + "crayons": [], + "crankier": [], + "sneakersing": [], + "coelenterate": ["M", "S"], + "Islam'ses": [], + "mailbags's": [], + "chested": [], + "lookout'ses": [], + "pitted": [], + "knackers": [], + "towelingsing": [], + "pikestaff's": [], + "tambourines": [], + "immanence": ["M"], + "elatingen": [], + "Froissart's": [], + "else": [], + "milkiness": ["M"], + "bloodshed": ["M"], + "Johann": ["M"], + "interrogation": ["M"], + "pros's": [], + "Dinah's": [], + "squeakeder": [], + "rollerers": [], + "original": ["M", "Y", "S"], + "antipathetic": [], + "underthings's": [], + "weekendsers": [], + "raunchiest": [], + "reflationary": [], + "sapling's": [], + "metricationed": [], + "brightness": ["M"], + "MS": ["M"], + "antiphon's": [], + "Buchenwald": ["M"], + "flamencos": [], + "prophet's": [], + "mesh's": [], + "sanction'sed": [], + "onomatopoeic": [], + "tracing's": [], + "Libyans": [], + "vernal": [], + "Petty": ["M"], + "lira": ["M"], + "chin's": [], + "spaceman's": [], + "turntables": [], + "mineder": [], + "piroshki's": [], + "interconnection": ["S", "M"], + "lusting": [], + "lye'sing": [], + "burros's": [], + "portcullis": ["M", "S"], + "sore": ["M", "Y", "T", "R", "S", "P"], + "kitchens": [], + "starchy": ["P", "T", "R"], + "improviseder": [], + "fathomless": [], + "keep": ["M", "R", "S", "Z", "G"], + "zigzag": ["S", "M"], + "shimmy": ["D", "S", "M", "G"], + "drafters": [], + "moonwalk's": [], + "rectangle's": [], + "ascot'ses": [], + "storehouses": [], + "Palestinian": ["S", "M"], + "junketing": [], + "restlessnessly": [], + "Maeterlinck": ["M"], + "sensitized": [], + "jellies": [], + "blockbusters": [], + "sever": ["E", "T", "G", "D", "S"], + "renegotiation": [], + "Wilson's": [], + "implications": [], + "sleazeball": ["S"], + "bituminous": [], + "translator's": [], + "Addie": ["M"], + "incandescence": ["M"], + "lethargically": [], + "wakingsed": [], + "ciabattas's": [], + "biol": [], + "circumventeds": [], + "deathblows": [], + "grandness's": [], + "Inca's": [], + "cockchafers": [], + "glamoureds": [], + "shafted": [], + "Hong": [], + "matinee's": [], + "cummerbund'ses": [], + "monodists": [], + "fascias's": [], + "indiscretions": [], + "discouraging": ["Y"], + "tensed": [], + "arteriole": ["M", "S"], + "abjection's": [], + "geodesics": [], + "daguerreotype": ["D", "S", "M", "G"], + "redefuse": [], + "Cadillac's": [], + "swoop'sed": [], + "pepper": ["G", "M", "D", "S"], + "noes": [], + "Alger": ["M"], + "Parana": ["M"], + "overdo": ["G"], + "wealthiest": [], + "Acheson": ["M"], + "Merriam's": [], + "barter's": [], + "prejudgeds": [], + "Carmen's": [], + "dissertation": ["S", "M"], + "mettle's": [], + "pawed": [], + "hallucinations": [], + "airfreight's": [], + "foreshorten": ["D", "S", "G"], + "intellectualism's": [], + "Caph's": [], + "goblin": ["S", "M"], + "tetchiness": [], + "submarine": ["M", "Z", "R", "S"], + "instead": [], + "persecuted": [], + "smuttiness": ["M"], + "interrupted": [], + "miles": [], + "pyx'ses": [], + "Chomsky": ["M"], + "salesclerks": [], + "capaciousness's": [], + "Buckingham's": [], + "inaugurals's": [], + "academy's": [], + "steelier": [], + "undemanding": [], + "Chretien": ["M"], + "conversationally": [], + "effrontery": ["M"], + "cauliflowers": [], + "paced": [], + "nuthouse": ["S"], + "offshoring": [], + "cornings": [], + "fierceness's": [], + "blockadeder": [], + "bonking": [], + "braking": [], + "surtax's": [], + "nailbrush": ["M", "S"], + "escutcheons's": [], + "slip'ses": [], + "polkas": [], + "ICU": [], + "pablum's": [], + "fairgrounds": [], + "violinists's": [], + "underlininged": [], + "fuck": ["S", "M", "G", "D", "R", "Z", "!"], + "Corvus's": [], + "yawned": [], + "harpsichords": [], + "transportersing": [], + "brier's": [], + "bullion": ["M"], + "sophist's": [], + "juxtaposition": ["S", "M"], + "medley's": [], + "forested": [], + "fresheneder": [], + "gamers": [], + "unpicked": [], + "fated": [], + "flickeder": [], + "garden'sed": [], + "hussies": [], + "necking's": [], + "Ehrenberg": ["M"], + "majolica's": [], + "puzzles": [], + "sailboarder's": [], + "weatherstrips": [], + "extortionate": ["Y"], + "cousin": ["S", "M"], + "coddlesing": [], + "goldbricks's": [], + "glacier'ses": [], + "summoner's": [], + "listen's": [], + "veterinarian'ses": [], + "use's": [], + "mangierness": [], + "Vijayawada's": [], + "nacho's": [], + "poison": ["S", "J", "Z", "G", "M", "D", "R"], + "lemmings": [], + "inscriber": ["M"], + "Vitus's": [], + "arson's": [], + "wars": [], + "rumoring": [], + "Jaycee'ses": [], + "hillbillies's": [], + "dominance": ["M"], + "glibly": [], + "newbie's": [], + "imbuesing": [], + "spacial": [], + "subgroup": ["M", "S"], + "orioles": [], + "hiccup's": [], + "executable": [], + "clang'sed": [], + "skatinged": [], + "comprehensives": [], + "remembering": [], + "dosser": [], + "shoptalk": ["M"], + "duvet's": [], + "overjoyed": [], + "quint's": [], + "ureters": [], + "subsidiaries": [], + "tripod": ["M", "S"], + "unsafe": ["Y", "T", "R"], + "cleaver's": [], + "deplore": ["B", "G", "D", "S"], + "hibernator's": [], + "Ira's": [], + "commandeer": ["G", "D", "S"], + "yearlies's": [], + "apprehends": [], + "woefulliness": [], + "peregrine's": [], + "Tethys's": [], + "catatonic": ["S", "M"], + "unexpired": [], + "unruly": ["R", "T", "P"], + "premix": ["G", "D", "S"], + "endearsing": [], + "allergen": ["S", "M"], + "perfection's": [], + "whisker": ["M", "D"], + "Hallstatt": ["M"], + "Khan": ["M"], + "foretaste": ["D", "S", "M", "G"], + "capitalsly": [], + "autoclave": ["M", "S"], + "masochist": ["S", "M"], + "aspect": ["M", "S"], + "Merritt": ["M"], + "nation": ["M", "S"], + "handicapping": [], + "incapacitatinged": [], + "scan's": [], + "crossfires": [], + "contrast": ["M", "D", "G", "S"], + "homburg": ["S", "M"], + "unmissable": [], + "Belarus's": [], + "phenomenons": [], + "Dorian": ["M"], + "supremacist": ["M", "S"], + "majordomos": [], + "phonecard": ["S"], + "conventicle": ["M", "S"], + "old's": [], + "touchscreens": [], + "garnets's": [], + "decently": [], + "matronlies": [], + "slain": [], + "bathyspheres": [], + "tenure": ["D", "S", "M", "G"], + "misspend": ["G", "S"], + "Mycenaean's": [], + "welshers": [], + "spittoon": ["M", "S"], + "handwritten": [], + "Samaritan'ses": [], + "trigger'sed": [], + "dissipate": ["G", "N", "D", "S"], + "trilobites": [], + "raggedier": [], + "tryouts": [], + "yang's": [], + "Eloy": ["M"], + "inquiringed": [], + "mercurial": ["Y"], + "nettleds": [], + "lights": [], + "Stanislavsky": ["M"], + "coexisted": [], + "hulls": [], + "rigmarole's": [], + "Thomson's": [], + "stepfathers's": [], + "albatrosses": [], + "gildings": [], + "lampshades": [], + "unsinkable": [], + "AD's": [], + "unhindered": [], + "serrations": [], + "quivers's": [], + "gestational": [], + "stripy": [], + "danker": [], + "Lanka's": [], + "skyjacker": ["M"], + "Stewart": ["M"], + "hairdresser's": [], + "contrivance's": [], + "offensive": ["I", "P", "Y"], + "gibe's": [], + "cremains's": [], + "spurious": ["P", "Y"], + "raringness": [], + "Indian'ses": [], + "ptomaines": [], + "cornbread": ["M"], + "meltdown's": [], + "skewer": ["M", "D", "G"], + "encysts": [], + "positive'sly": [], + "gateway's": [], + "spinsterhood's": [], + "swelter'sed": [], + "villeins": [], + "outpatient": ["M", "S"], + "Missy": ["M"], + "plagiarisms": [], + "inconsistency": [], + "arrival's": [], + "gestates": [], + "representative's": [], + "management'ses": [], + "stopgap": ["S", "M"], + "medicinally": [], + "effacing": [], + "shortcut's": [], + "Armour": ["M"], + "Romanian'ses": [], + "quisling's": [], + "gamboled": [], + "prospective": ["Y"], + "fancier": ["M"], + "smolder'sed": [], + "receivable": [], + "dyeing": ["A"], + "Charleston": ["M", "S"], + "Khalid": ["M"], + "ambiguities's": [], + "dry'sly": [], + "disrecolor": [], + "scintillating": [], + "Tyndall's": [], + "tatterdemalion'ses": [], + "artifacts's": [], + "sleeplessness": ["M"], + "Romanesque'ses": [], + "insistence's": [], + "countermove": ["S"], + "gamine": ["S", "M"], + "Flo": ["M"], + "billfold": ["S", "M"], + "patisserie": ["S"], + "holmium's": [], + "catheterized": [], + "awaited": [], + "informativeness": ["M"], + "deeps": [], + "cryptographers": [], + "Gama": [], + "marijuana": ["M"], + "snoozes": [], + "Eris": ["M", "S"], + "incidentallies": [], + "solicitors's": [], + "wilting": [], + "noncontagious": [], + "songbird's": [], + "menace": ["M", "G", "D", "S"], + "byline": ["S", "M"], + "risings": [], + "infidel'ses": [], + "impedance's": [], + "pool'sed": [], + "plunge's": [], + "electioneereding": [], + "shapes": [], + "sweeps's": [], + "skyjackingsers": [], + "interment's": [], + "inessential": [], + "pillowslips": [], + "superstitions": [], + "co": ["E", "S", "D"], + "chatters": [], + "accessory's": [], + "gristle's": [], + "homesteadersing": [], + "leonine": [], + "spot's": [], + "Dilbert": ["M", "S"], + "nemesis's": [], + "ditzes": [], + "publicist": ["M", "S"], + "hesitance's": [], + "ribber's": [], + "German's": [], + "Bergson": ["M"], + "concordats's": [], + "stultificationing": [], + "cutback": ["M", "S"], + "Rowling's": [], + "violinists": [], + "Gaul's": [], + "forefather's": [], + "laws": [], + "gaff": ["M", "D", "R", "Z", "G", "S"], + "kvetch'sed": [], + "dallies": [], + "Wendell": ["M"], + "niggle's": [], + "earphone'ses": [], + "quarterback": ["G", "M", "D", "S"], + "uninformed": [], + "Rosanna": ["M"], + "had": [], + "speeder's": [], + "Uniroyal's": [], + "athletic": ["S"], + "Nantucket": ["M"], + "wirehair": ["M", "S"], + "vita": ["M"], + "virtuosity's": [], + "sociology": ["M"], + "bumpiness's": [], + "Revelations": ["M"], + "attraction": ["M", "S"], + "gauchos's": [], + "parasite's": [], + "Hammurabi's": [], + "Mullen": ["M"], + "guppies": [], + "fay'ser": [], + "songstress'ses": [], + "responses": [], + "bighead's": [], + "Marxist's": [], + "chirpy": ["P", "T", "R"], + "Donn": ["M", "R"], + "defers": [], + "coiffed": [], + "heathens": [], + "neurosis": ["M"], + "traversals's": [], + "fanzine's": [], + "winkersing": [], + "Underwood": ["M"], + "doggiers": [], + "Siberia's": [], + "injure": ["D", "R", "S", "Z", "G"], + "reapportionment": [], + "mousetrapping": [], + "Chesapeake": ["M"], + "Dooley": ["M"], + "freeloadersing": [], + "dumped": [], + "preceptors": [], + "coxswain's": [], + "butane's": [], + "foreskins": [], + "Yeats's": [], + "Melanesia's": [], + "temerity's": [], + "dummies's": [], + "housecoats's": [], + "aspirator's": [], + "hypertrophieds": [], + "motivating": [], + "overtires": [], + "Beasley": ["M"], + "boysenberries's": [], + "scuppering": [], + "spookiness": ["M"], + "typesetting's": [], + "narrateds": [], + "exploiter's": [], + "metabolite": ["S", "M"], + "hallmark's": [], + "geekier": [], + "coldest": [], + "phenomenon's": [], + "jailer": ["M"], + "domineered": [], + "hairstylists": [], + "mobilized": [], + "waywardnessly": [], + "Deborah": ["M"], + "spillovers's": [], + "gastrointestinal": [], + "metro": ["S", "M"], + "birthplace'ses": [], + "rift'sed": [], + "wiggler's": [], + "backdoor": [], + "pshaw's": [], + "grands": [], + "pesky": ["T", "P", "R"], + "pathological": ["Y"], + "lingerings": [], + "Federal": ["M", "S"], + "backslides": [], + "bluenose": ["M", "S"], + "immunizations's": [], + "pathetic": [], + "pajama": ["S"], + "fidgets": [], + "tropics's": [], + "paragraphs": [], + "quadriplegic": ["S", "M"], + "Semtex's": [], + "uncontested": [], + "sledgehammers": [], + "undependable": [], + "transferal": ["M", "S"], + "flinching's": [], + "XL": ["M"], + "townsfolk": ["M"], + "Thorpe's": [], + "beggaredly": [], + "manage": ["Z", "G", "D", "R", "S", "L"], + "Debra's": [], + "noonday": ["M"], + "demeaned": [], + "cryptographers's": [], + "Lacy": ["M"], + "mire'sing": [], + "writing": ["M"], + "Antonio's": [], + "carouser's": [], + "weatherized": [], + "underlying": [], + "grades": [], + "tempestuous": ["Y", "P"], + "Janie's": [], + "Jackie's": [], + "pistillate": [], + "insures": [], + "chieftainship": ["S", "M"], + "loudspeakers": [], + "quiver'sed": [], + "edifier's": [], + "fucked": [], + "egad": [], + "dormers": [], + "subheadingings": [], + "preschoolsers": [], + "alms": ["M"], + "counterrevolution's": [], + "hardier": [], + "Dvina's": [], + "gadding": [], + "droppers": [], + "attraction's": [], + "kilograms": [], + "Aeneas": ["M"], + "fungous": [], + "ceremonial's": [], + "anxiety": ["S", "M"], + "barnstormersing": [], + "possessor's": [], + "improvisinged": [], + "pawnbrokers": [], + "rifled": [], + "finery": ["A", "M"], + "ruff'sed": [], + "switchersing": [], + "riddles's": [], + "classmate's": [], + "Xiongnu": ["M"], + "Omnipotent": [], + "sawsing": [], + "excoriates": [], + "Elliott's": [], + "poulterer'ses": [], + "thriftiness": ["M"], + "ogre's": [], + "devil'sed": [], + "oaths": [], + "doodlebug's": [], + "disfranchise": [], + "unsnap": [], + "pinpointing": [], + "unkindest": [], + "introverted": [], + "grandfatherlies": [], + "chapatti": ["S"], + "circumcisionsed": [], + "aquatics": ["M"], + "bankrupting's": [], + "diagnostics": ["M"], + "Wellington": ["S", "M"], + "nincompoops": [], + "progress": ["M", "D", "S", "G", "V"], + "bagel": ["M", "S"], + "lobar": [], + "divesting": [], + "Moroccan's": [], + "root": ["M", "D", "R", "Z", "G", "S"], + "salivationed": [], + "resonance's": [], + "tasking's": [], + "shuteye's": [], + "hodgepodge's": [], + "leavers": [], + "Perelman": ["M"], + "shims": [], + "routinizinged": [], + "wreatheds": [], + "Potemkin": ["M"], + "waterline": ["M", "S"], + "secretary's": [], + "commemorators": [], + "skulks": [], + "incapacity": [], + "noddy": [], + "undercoatingses": [], + "exchange's": [], + "reptilian's": [], + "apothegm": ["S", "M"], + "splurged": [], + "mortician": ["M", "S"], + "prefabbing": [], + "Lotharios's": [], + "burros": [], + "blabs's": [], + "chairing": [], + "sparkly": [], + "candor's": [], + "gormandizeder": [], + "fancily": [], + "fascinates": [], + "jigsaws's": [], + "analysis": ["A", "M"], + "weevil": ["M", "S"], + "columbine's": [], + "campanile's": [], + "Post": ["M"], + "milkweeds": [], + "prefects": [], + "sleepwalker's": [], + "Lawson's": [], + "Carpathian": ["S", "M"], + "southeaster's": [], + "empowered": [], + "shinierness": [], + "hiss": ["M", "D", "S", "G"], + "Salado": ["M"], + "Xenia": ["M"], + "optimally": [], + "squire'sing": [], + "guttural": ["M", "S"], + "brandieds": [], + "aggravatingen": [], + "piousliness": [], + "curlicueds": [], + "hoedowns": [], + "overmastereding": [], + "canonization": ["S", "M"], + "clickable": [], + "defamation's": [], + "Bursa's": [], + "mentalist's": [], + "prickers": [], + "inverse": ["S", "M", "Y"], + "cateringsed": [], + "fence'sers": [], + "Sagan's": [], + "dander's": [], + "fluffs": [], + "orchards's": [], + "festivities's": [], + "girt's": [], + "houseboat's": [], + "impartially": [], + "arrivals": [], + "hangmen": [], + "Antonius's": [], + "readjustment": [], + "sadder": [], + "Fronde's": [], + "trawlersing": [], + "guidance": ["M"], + "Narcissus's": [], + "nitrate": ["D", "S", "M", "G", "N"], + "Quakerisms's": [], + "Bogart's": [], + "ligaments": [], + "dandifies": [], + "concepts's": [], + "plunk": ["M", "D", "S", "G"], + "verbally": [], + "deity": ["S", "M"], + "draft's": [], + "evolutionists": [], + "flouncy": [], + "gunmetal's": [], + "slummy": ["R", "T"], + "souse": ["D", "S", "M", "G"], + "berth'sed": [], + "toss'sed": [], + "marquetry's": [], + "queries": [], + "grapevine's": [], + "eviller": [], + "pitiably": [], + "yearling'ses": [], + "clattereds": [], + "annotated": [], + "levity": ["M"], + "naturalists's": [], + "obsessivenesses": [], + "Cimabue": ["M"], + "Downy's": [], + "teetotal": ["R", "Z"], + "novelizing": [], + "unseeded": [], + "chaplaincies": [], + "kindheartedness": ["M"], + "hardtop": ["S", "M"], + "circulate": ["A", "D", "S", "G"], + "qualm": ["M", "S"], + "teenager's": [], + "fluorescent": [], + "distortinged": [], + "Kirk": ["M"], + "conductive": [], + "guilty": ["P", "R", "T"], + "yetis": [], + "bauble": ["S", "M"], + "elitism's": [], + "funkings": [], + "porpoise's": [], + "lousing": [], + "Foster": ["M"], + "telegraphy": ["M"], + "Whirlpool": ["M"], + "invariably": [], + "discernments": [], + "intricacies": [], + "Luxembourgers's": [], + "protege's": [], + "grub's": [], + "declensions's": [], + "laburnum'ses": [], + "tenderized": [], + "trencher's": [], + "substantiate": ["G", "N", "D", "S", "X"], + "Ferlinghetti's": [], + "wellie": [], + "caparisoned": [], + "warfare": ["M"], + "pissing": [], + "DECed": [], + "Haitian'ses": [], + "overexertion": ["M"], + "Renoir": ["M"], + "disclosure": [], + "Swahili": ["S", "M"], + "radiator": ["S", "M"], + "bespangling": [], + "misfiling": [], + "baggage's": [], + "wharf's": [], + "spellcheckerers": [], + "Managua's": [], + "Nazi": ["S", "M"], + "Manchurian's": [], + "yolk's": [], + "Emmanuel": ["M"], + "bedevil": ["L", "G", "D", "S"], + "retracting": [], + "cablecast": ["G", "M", "S"], + "aborts": [], + "forkeding": [], + "relaxeder": [], + "cornfields": [], + "calligraphic": [], + "bullpen": ["S", "M"], + "zoo's": [], + "nutted": [], + "swimmingly": [], + "Pete": ["R", "M", "Z"], + "villain's": [], + "pram": ["M", "S"], + "justice's": [], + "bruin's": [], + "camper's": [], + "detectives's": [], + "once's": [], + "mountaineer'sed": [], + "inferior'ses": [], + "strikebreakers's": [], + "Hunt": ["M", "R"], + "US": ["M"], + "embracing": [], + "moonsing": [], + "gangplank": ["S", "M"], + "Deandre's": [], + "spewers": [], + "assuminged": [], + "Kremlin's": [], + "logjam's": [], + "mach's": [], + "proselyteds": [], + "marksmanship": ["M"], + "intermezzo's": [], + "Leila's": [], + "approving": ["E", "Y"], + "beanbag": ["M", "S"], + "clutching": [], + "fundraising": [], + "spunk's": [], + "pushover's": [], + "dictum's": [], + "steeplejack's": [], + "slang": ["M"], + "Nostradamus": ["M"], + "imam's": [], + "gastritis": ["M"], + "marsupials": [], + "ovaries": [], + "mangling": [], + "appease": ["L", "Z", "G", "D", "R", "S"], + "Alderamin's": [], + "halted": [], + "justifies": [], + "misstateds": [], + "Janna": ["M"], + "yeomen": [], + "majoritarians": [], + "Ramses's": [], + "slugged": [], + "Murphy": ["M"], + "ruineding": [], + "byline's": [], + "daylight'ses": [], + "oppressively": [], + "supercilious": ["P", "Y"], + "wherefore's": [], + "paymasters's": [], + "Scotland": ["M"], + "greenbelt'ses": [], + "surviving": [], + "salve'sers": [], + "hopscotchesing": [], + "temporaries's": [], + "rubbers's": [], + "Shari'a": ["M"], + "Clemens": ["M"], + "Albee": ["M"], + "resist'sed": [], + "bowersing": [], + "talcum's": [], + "bean": ["S", "G", "M", "D"], + "attention": ["I", "M"], + "iodide's": [], + "herders": [], + "perestroika's": [], + "scrounges": [], + "defogging": [], + "extender": ["M"], + "foregrounded": [], + "coleys": [], + "shouting's": [], + "Jeremiah's": [], + "Torrens": ["M"], + "contortions": [], + "mongoloids": [], + "cohorts's": [], + "sorter's": [], + "CinemaScope's": [], + "spirochetes's": [], + "depleteds": [], + "wholesomeness": ["U", "M"], + "injectors's": [], + "yours": [], + "vacationing": [], + "particularity's": [], + "reechoes": [], + "confection": ["S", "Z", "M", "R"], + "explorer's": [], + "future": ["M", "S"], + "interviewing's": [], + "smilax": ["M"], + "marionettes": [], + "undersigneding": [], + "furnishings's": [], + "sepulcher'sed": [], + "Borden": ["M"], + "ancestress'ses": [], + "barnacle'sed": [], + "angry": ["T", "R"], + "bighearted": ["P"], + "orient's": [], + "bonnets": [], + "escalator'ses": [], + "PT": [], + "gloats's": [], + "abjuration": ["S", "M"], + "barenessly": [], + "passel'ses": [], + "Dumas": ["M"], + "polytechnics": [], + "farad": ["S", "M"], + "crystallography": [], + "Turkmenistan": ["M"], + "Haydn's": [], + "monologues's": [], + "subhuman'ses": [], + "delicately": [], + "grounder": ["M"], + "ttys": [], + "stretcher'sed": [], + "electroshock": ["M"], + "collaboration": ["M"], + "gimlet's": [], + "bowsprits's": [], + "seek": ["Z", "G", "R", "S"], + "menacing": ["Y"], + "smugglers": [], + "Aryan'ses": [], + "Criollo's": [], + "lobbies's": [], + "neutron": ["S", "M"], + "sultanate'ses": [], + "zipper's": [], + "cone": ["M"], + "Emile": ["M"], + "Logan's": [], + "effluence": ["M"], + "molder's": [], + "pushchairs": [], + "hedgehogs": [], + "digestible": ["I"], + "logs's": [], + "apprising": [], + "ripoffs's": [], + "dads": [], + "pastel": ["M", "S"], + "story": ["D", "S", "M"], + "restaff": [], + "overwintereding": [], + "ropersing": [], + "asphalting": [], + "actionable": [], + "exclamations's": [], + "Aurangzeb's": [], + "Cochran's": [], + "prayerfully": [], + "formulate": ["A", "D", "S", "G", "N", "X"], + "Cantabrigian": ["M"], + "cursively": [], + "lavished": [], + "early": ["R", "T", "P"], + "robbery": ["S", "M"], + "underbelly's": [], + "preclude": ["G", "D", "S"], + "epicurean's": [], + "puffiest": [], + "titty": ["S"], + "genitalia": ["M"], + "luxurious": ["P", "Y"], + "curare": ["M"], + "facing": ["S", "M"], + "millionaires's": [], + "purleds": [], + "incumbent's": [], + "overlooked": [], + "Gerardo's": [], + "doodle's": [], + "Putin's": [], + "hookworm's": [], + "impatiences": [], + "rambunctiousness": ["M"], + "glowworm": ["M", "S"], + "door": ["I", "S"], + "Britisher": ["M"], + "sniveler": ["M"], + "seeing": ["S"], + "Sabre's": [], + "meting": [], + "porpoise": ["M", "G", "D", "S"], + "boneheaded": [], + "column'sed": [], + "innervates": [], + "throng's": [], + "egg's": [], + "subcontracting": [], + "corruptions": [], + "gambled": [], + "broodingly": [], + "Wales's": [], + "humblingings": [], + "fulfilling": ["U"], + "climates's": [], + "culminated": [], + "dining": [], + "misfiles": [], + "pulpeds": [], + "gorgeousliness": [], + "harmonics": [], + "Helsinki's": [], + "narration's": [], + "shirr's": [], + "maneuverability": ["M"], + "amber": ["M"], + "miscellaneously": [], + "claque": ["M", "S"], + "straw'sed": [], + "Coriolis": ["M"], + "manors": [], + "moderateness's": [], + "Tlingit's": [], + "chirrup's": [], + "suctioning": [], + "markup'ses": [], + "Duke's": [], + "bloat": ["Z", "G", "D", "R", "S"], + "eke": ["D", "S", "G"], + "Ojibwas's": [], + "alums's": [], + "reformed": ["U"], + "withdrawal": ["M", "S"], + "recurs": [], + "scrivener's": [], + "enunciation's": [], + "unjustifiable": [], + "condescendingly": [], + "uploadsed": [], + "Miguel": ["M"], + "matriculatesing": [], + "objurgated": [], + "artifices's": [], + "hooteder": [], + "Portuguese's": [], + "handshake's": [], + "Knight's": [], + "Swedish": ["M"], + "analgesia": ["M"], + "palatals's": [], + "quenchable": ["U"], + "holocausts": [], + "Lambert": ["M"], + "fragrance's": [], + "retort'sed": [], + "idealizesing": [], + "Madagascan's": [], + "inculcating": [], + "bronc's": [], + "Julianne's": [], + "romanticists": [], + "salesclerk's": [], + "enjoyably": [], + "Atlas": ["M", "S"], + "Burbank": ["M"], + "uppercase": ["M"], + "churn'sed": [], + "Kari": ["M"], + "denim'ses": [], + "Aaron's": [], + "miters": [], + "croupier's": [], + "pony's": [], + "cyborgs's": [], + "punching": [], + "angularities": [], + "Banting's": [], + "Dick's": [], + "tray'ses": [], + "punchiest": [], + "telegrapher": ["M"], + "carryover": ["M", "S"], + "fisher's": [], + "screes": [], + "weaklings": [], + "contributor": ["M", "S"], + "Ericka": ["M"], + "percentages's": [], + "defended": ["U"], + "nonelectrical": [], + "chads": [], + "floodlighting": [], + "turnbuckles's": [], + "microeconomics's": [], + "manse'sen": [], + "hippies's": [], + "Maritza's": [], + "sheeniest": [], + "twirler's": [], + "juster": [], + "speedsters": [], + "wicket": ["S", "M"], + "skidding": [], + "chiffonier'ses": [], + "framed": ["U"], + "relaxant's": [], + "palsies": [], + "substitution": ["M"], + "Mason'ses": [], + "SJW": [], + "postmarked": [], + "ironwork's": [], + "adulation": ["M"], + "cremains": ["M"], + "washstands": [], + "Excalibur's": [], + "indite": ["G", "D", "S"], + "excerpts": [], + "supplicant": ["M", "S"], + "airbrushing": [], + "fondues's": [], + "lunkheads": [], + "passably": [], + "spotlighting": [], + "cowlicks": [], + "grimmest": [], + "faun'ses": [], + "vulva": ["M"], + "Glen": ["M"], + "cascaras": [], + "genocides": [], + "honeysuckles": [], + "enamels": [], + "cough's": [], + "issuer's": [], + "Vilyui's": [], + "Aludra's": [], + "thickeneder": [], + "gleams": [], + "hallucinateds": [], + "gambler's": [], + "wolfhound's": [], + "arms": [], + "cage'sing": [], + "cruller'ses": [], + "unwarranted": [], + "trireme": ["S", "M"], + "halveds": [], + "Yosemite": ["M"], + "undercoat": ["G", "J", "S", "M", "D"], + "mordant'sly": [], + "occasion'sed": [], + "emulsificationed": [], + "crenelate": ["X", "G", "N", "D", "S"], + "couplet's": [], + "outlawed": [], + "emphysema": ["M"], + "jewelers": [], + "suntanned": [], + "imbalanceds": [], + "lacrosse": ["M"], + "intervene": ["G", "D", "S"], + "bisector's": [], + "infirmaries": [], + "clothe": ["U", "D", "S", "G"], + "pleaded": [], + "petrologist's": [], + "latter'sly": [], + "bicarbonate's": [], + "Spitsbergen": ["M"], + "Filofax's": [], + "Av": ["M"], + "instinct": ["V", "M", "S"], + "drenched": [], + "assess": ["A", "L", "G", "D", "S"], + "Buxtehude's": [], + "persuasiveness's": [], + "Svengali's": [], + "nuthouses": [], + "shortsightednessly": [], + "breadwinners": [], + "bathersing": [], + "mechanic'ses": [], + "Geo's": [], + "hypocrisies's": [], + "nigher": [], + "skulker": ["M"], + "swimming": ["M", "Y"], + "pg": [], + "umps": [], + "subsumesing": [], + "crosswind's": [], + "missiles": [], + "elongationens": [], + "Crucifixion'ses": [], + "algorithms": [], + "Celtic": ["S", "M"], + "barberry's": [], + "scragglier": [], + "customization's": [], + "blamed": [], + "unsupportable": [], + "anchorings": [], + "permanents's": [], + "pomposity": ["M"], + "reflected": [], + "compressed": ["U"], + "shirker": ["M"], + "porringers": [], + "tattereds": [], + "propitiatory": [], + "cupids's": [], + "exhortation": ["M", "S"], + "sods's": [], + "schoolgirls": [], + "crane's": [], + "overcooking": [], + "telescoping": [], + "consensual": [], + "mousetrapped": [], + "parochialism": ["M"], + "gradualism's": [], + "prate's": [], + "tossersing": [], + "Buford": ["M"], + "hampering's": [], + "rhombus": ["M", "S"], + "Anatolia's": [], + "crackling": ["M"], + "Richardson": ["M"], + "drowsiness's": [], + "modifiesens": [], + "equerry": ["S", "M"], + "achieves": [], + "externalization's": [], + "scalier": [], + "taskmasters": [], + "moneylender's": [], + "cloister": ["S", "M", "D", "G"], + "Leona": ["M"], + "pkwy": [], + "reediness's": [], + "jennies": [], + "theists's": [], + "goatherds": [], + "Trump's": [], + "grisly": ["R", "T", "P"], + "spearfish's": [], + "Moulton": ["M"], + "eloping": [], + "streetcars": [], + "Walsh's": [], + "Eve": ["M"], + "blizzards's": [], + "bleached": ["U"], + "will'sed": [], + "Hauptmann's": [], + "shyness's": [], + "poisoned": [], + "delivering": [], + "crossbar's": [], + "evildoing": ["M"], + "Paderewski's": [], + "flareup's": [], + "minoxidil": ["M"], + "bestows": [], + "pinyon": ["S", "M"], + "multiplicity": ["S", "M"], + "diminisheds": [], + "shoddier": [], + "Tammuz": ["M"], + "consumeder": [], + "stateroom": ["M", "S"], + "skyrocket": ["G", "S", "M", "D"], + "miscegenation": ["M"], + "ketchup's": [], + "restate": ["G", "D", "S"], + "should": [], + "anthropologists": [], + "adduceds": [], + "bairn": ["M", "S"], + "cashback's": [], + "managesment": [], + "Hampton": ["M"], + "Maxwell's": [], + "zoological": ["Y"], + "workbench'ses": [], + "Minos": ["M"], + "route": ["A", "D", "S", "G"], + "Haida's": [], + "French's": [], + "nonproliferation": ["M"], + "stretchers": [], + "ensures": [], + "cum's": [], + "inscribers": [], + "clotheshorse": ["M", "S"], + "instantlies": [], + "persecuting": [], + "barricade'sing": [], + "cottars's": [], + "congregationalist": ["M", "S"], + "snuffle'sing": [], + "leadener": [], + "disrespectful": [], + "fittingly": [], + "utterance's": [], + "horehounds's": [], + "bleepersing": [], + "obviateds": [], + "subtitle'sing": [], + "madmen": [], + "upturns": [], + "midterm's": [], + "Copperfield's": [], + "reinforcement's": [], + "exhibitionist": ["M", "S"], + "derisory": [], + "muddlinged": [], + "paperwork": ["M"], + "treasure'sers": [], + "Oscars": [], + "Andre": ["M", "S"], + "ditches": [], + "spinner": ["M", "S"], + "testimonies's": [], + "gores": [], + "enshrineds": [], + "appropriate": ["P", "Y", "G", "N", "X", "D", "S"], + "buffeted": [], + "constitution's": [], + "countersignings": [], + "Douala's": [], + "tameliers": [], + "horseshoes's": [], + "Nevada's": [], + "heapeding": [], + "flea's": [], + "Aztlan": ["M"], + "foundling": ["S", "M"], + "loudmouth'sed": [], + "palazzo": [], + "blurriness": ["M"], + "yourself": [], + "misguide": ["D", "S", "G"], + "Letha": ["M"], + "paring": ["M"], + "valentines's": [], + "mine's": [], + "popularization": ["M"], + "astronauts": [], + "vacationer": ["M"], + "regiment's": [], + "theology": ["S", "M"], + "Californians's": [], + "FYI": [], + "overpriceds": [], + "Julie's": [], + "substructure's": [], + "Daumier": ["M"], + "attar": ["M"], + "Morgan": ["S", "M"], + "restatement": [], + "eyesight's": [], + "leafsing": [], + "uracil": ["M"], + "vigilantism's": [], + "slighting": [], + "playgirl'ses": [], + "noncooperation": ["M"], + "toxin's": [], + "incorrigibility": ["M"], + "engraved": [], + "eldest": [], + "playmate": ["M", "S"], + "Jame's": [], + "blondes": [], + "decorates": [], + "culminating": [], + "eulogizing": [], + "skydiver's": [], + "hayrick": ["M", "S"], + "contriver's": [], + "skit'ses": [], + "accrual": ["M", "S"], + "basilica's": [], + "stowage": ["M"], + "lino": [], + "Bucharest's": [], + "Denmark": ["M"], + "gem": ["S", "M"], + "insured": ["S", "M"], + "wallet'ses": [], + "fishermen": [], + "finespun": [], + "broad": ["S", "M", "N", "R", "Y", "X", "T", "P"], + "lucubrating": [], + "slap's": [], + "hygienist's": [], + "syringed": [], + "bill'sed": [], + "southwester": ["M", "Y"], + "troubadours": [], + "decolletage's": [], + "repetitiveness's": [], + "parroting": [], + "sombrero'ses": [], + "bakeder": [], + "jangling": [], + "privatizes": [], + "thumbtack's": [], + "flagged": [], + "pump'sed": [], + "milkers": [], + "pullet's": [], + "cordite's": [], + "blackeden": [], + "vestment's": [], + "caseloads": [], + "vivisect": ["D", "G", "S"], + "Frankfort's": [], + "Proterozoic": ["M"], + "toffees's": [], + "ports": [], + "syphilitics's": [], + "hampered": ["U"], + "Fellini": ["M"], + "Dadaism": ["M"], + "Burmese": ["M"], + "jerky's": [], + "degree": ["M", "S"], + "cows's": [], + "concertinaed": [], + "canneries's": [], + "topside's": [], + "nonresidents": [], + "groundwater": ["M"], + "Zoe": ["M"], + "overfillings": [], + "jointsed": [], + "waltzes": [], + "boat's": [], + "ecology": ["M"], + "Velazquez": ["M"], + "rifle'sers": [], + "hikeder": [], + "parsnip'ses": [], + "magniloquence": ["M"], + "Taiping's": [], + "enables": [], + "implicitness": ["M"], + "entryway'ses": [], + "whitingings": [], + "barricades": [], + "juncture": ["F", "M", "S"], + "hereafters's": [], + "entertain": ["Z", "G", "D", "R", "S", "L"], + "freckly": [], + "folk": ["M", "S"], + "pram's": [], + "energies": [], + "retardants": [], + "sippers": [], + "midsummer": ["M"], + "tricolor's": [], + "ambassadress'ses": [], + "grebe's": [], + "easements's": [], + "sucklesings": [], + "Shanghai's": [], + "conceptualize": ["D", "S", "G"], + "tram'ses": [], + "relater's": [], + "humblingsness": [], + "Constable's": [], + "toecap": ["S", "M"], + "air's": [], + "flagon": ["M", "S"], + "banters": [], + "sweetliness": [], + "mongoose'ses": [], + "deaconess": ["M", "S"], + "camouflaginged": [], + "Blair": ["M"], + "wildfire": ["M", "S"], + "scold'sed": [], + "humped": [], + "Smetana": ["M"], + "outranked": [], + "superego": ["M", "S"], + "prehuman": [], + "innovators": [], + "runaway": ["M", "S"], + "biochemical'sly": [], + "shard'ses": [], + "eradicatesing": [], + "slouching's": [], + "braggarts": [], + "proclamation'ses": [], + "expandabling": [], + "deep'sen": [], + "Zappa's": [], + "turnabout's": [], + "corrects": [], + "punkers": [], + "kilts": [], + "midwives": [], + "saber'ses": [], + "empires": [], + "Shelton": ["M"], + "twentieth": ["M"], + "calve": ["G", "D", "S"], + "pedicureds": [], + "Jimenez's": [], + "Aramaic's": [], + "bloodthirsty": ["R", "P", "T"], + "creep": ["S", "M", "R", "Z", "G"], + "regency's": [], + "unvaried": [], + "guavas": [], + "demijohns's": [], + "strongbox'ses": [], + "trawling": [], + "presbyteries": [], + "desalinized": [], + "ventricular": [], + "subcategory": ["S", "M"], + "delversing": [], + "stinginess's": [], + "hinge": ["U", "D", "S", "G"], + "attributive'sly": [], + "bailout's": [], + "undercharged": [], + "impeach": ["Z", "G", "B", "L", "D", "R", "S"], + "railinged": [], + "snapshot": ["S", "M"], + "Swedes's": [], + "vampire": ["S", "M"], + "washbasin's": [], + "Sextans": ["M"], + "quizzes": [], + "inscrutableness's": [], + "locomotive": ["M", "S"], + "expositor": ["S", "M"], + "smasheder": [], + "contradict": ["S", "D", "G"], + "proteges's": [], + "biliousness's": [], + "cited": [], + "advertorials's": [], + "cohered": [], + "expressways": [], + "abattoir'ses": [], + "indulging": [], + "drab'sly": [], + "camouflage": ["M", "Z", "G", "D", "R", "S"], + "exacerbates": [], + "diaphragm's": [], + "mongereding": [], + "fussierness": [], + "adjuster's": [], + "iceman": ["M"], + "spuriousness": ["M"], + "disciple": ["S", "M"], + "downpour": ["M", "S"], + "font": ["M", "S"], + "edifices's": [], + "contain": ["S", "B", "L", "D", "R", "Z", "G"], + "Cousteau": ["M"], + "pornographic": [], + "retrospective's": [], + "advertisementers": [], + "minuted": [], + "overwhelmingly": [], + "expeditiousnessly": [], + "ruler's": [], + "creationisms": [], + "massacre": ["M", "G", "D", "S"], + "imperatively": [], + "twitching's": [], + "mapmaker's": [], + "kaffeeklatch'ses": [], + "aureoles": [], + "hawser": ["S", "M"], + "brow'ses": [], + "domesticating": [], + "tumbleweed": ["S", "M"], + "upholsterer's": [], + "alliterateds": [], + "class": ["G", "M", "D", "S"], + "hoodooing": [], + "fleck'sed": [], + "archaically": [], + "Cuzco's": [], + "stock's": [], + "reprogrammed": [], + "puffing": [], + "guarantying": [], + "violists": [], + "walkaway's": [], + "Panama's": [], + "wow": ["S", "G", "M", "D"], + "metacarpals": [], + "hazels": [], + "hesitatingen": [], + "internationalized": [], + "whelmed": [], + "decried": [], + "docket'sed": [], + "toastmistress'ses": [], + "ferrule'ses": [], + "playback's": [], + "technician": ["S", "M"], + "quines": [], + "whist": ["M"], + "Young": ["M"], + "promulgating": [], + "equipages": [], + "bubbling": [], + "dizzy": ["D", "R", "S", "P", "T", "G"], + "archbishops's": [], + "hobble": ["M", "Z", "G", "D", "R", "S"], + "wire's": [], + "motherlands": [], + "lucidnessly": [], + "resounded": [], + "date'sers": [], + "apostatized": [], + "hate's": [], + "ROM": ["M"], + "durance": ["M"], + "improvisersing": [], + "midlands": [], + "impound": ["D", "G", "S"], + "stone'sers": [], + "townspeople": ["M"], + "heftily": [], + "middlebrow's": [], + "outputs": [], + "umbels": [], + "shanties": [], + "correlateds": [], + "manacles's": [], + "effluent'ses": [], + "consent'sed": [], + "ovoid": ["M", "S"], + "brand": ["Z", "G", "M", "D", "R", "S"], + "whinnied": [], + "combingings": [], + "text": ["F", "M", "S"], + "dissonance": ["S", "M"], + "bisecteding": [], + "brokenness's": [], + "Southampton's": [], + "nihilist": ["M", "S"], + "slaves": [], + "windowsill's": [], + "Puritanisms": [], + "Gulliver": ["M"], + "bread's": [], + "vine's": [], + "crook's": [], + "ethnological": ["Y"], + "acoustics's": [], + "pockets's": [], + "chafinged": [], + "Bowell's": [], + "overestimatingen": [], + "Neil": ["M"], + "chestnuts's": [], + "caravans's": [], + "bypassing's": [], + "outfoxing": [], + "woodlands": [], + "sleeps's": [], + "kiosks": [], + "acculturation": ["M"], + "tomorrow": ["M", "S"], + "usher": ["S", "M", "D", "G"], + "achievements": [], + "mows": [], + "supercargoes": [], + "recycling": ["M"], + "faffings": [], + "clinker's": [], + "ignorance's": [], + "cornflakes's": [], + "Anton": ["M"], + "wheelwright's": [], + "dwellsings": [], + "whiteheads": [], + "Angeles's": [], + "usurpation's": [], + "teenybopper": ["M", "S"], + "jetties's": [], + "dioxides": [], + "wildcatter's": [], + "Horthy's": [], + "sentencing": [], + "cynical": ["Y"], + "multifariousnessly": [], + "Chinese": ["M"], + "warhorses": [], + "swathe's": [], + "Pomerania": ["M"], + "Dunbar": ["M"], + "fliest": [], + "sixth": ["M"], + "frizzes": [], + "became": [], + "informers": [], + "vaudevillian'ses": [], + "one'sen": [], + "papoose'ses": [], + "Devanagari's": [], + "Serbian's": [], + "Timex's": [], + "illuminesable": [], + "he'd": [], + "mappers": [], + "March": ["M", "S"], + "forelimb": ["M", "S"], + "penuche": ["M"], + "organza": ["M"], + "suck's": [], + "contenting": [], + "lumpectomy": ["S"], + "parakeet": ["S", "M"], + "blenches": [], + "overground": [], + "dilapidation": ["M"], + "procrastinated": [], + "luminescent": [], + "Tennessee": ["M"], + "prescriptions": [], + "Clementine": ["M"], + "stringer": ["M"], + "teenybopper's": [], + "fixed": ["Y"], + "poverty's": [], + "type's": [], + "imam'ses": [], + "Masai's": [], + "rubs's": [], + "stumbleder": [], + "choir'ses": [], + "Gnosticism": ["M"], + "sapsucker": ["S", "M"], + "toady's": [], + "predictor's": [], + "forefathers": [], + "antigenicity": ["M"], + "woodcutters's": [], + "chieftains": [], + "Swedish's": [], + "collegian": ["M", "S"], + "logging": ["M"], + "menopause": ["M"], + "twelvemonths": [], + "chicane'ses": [], + "seminary's": [], + "strongmen": [], + "ejections": [], + "idolization": ["M"], + "Miro": ["M"], + "beeline's": [], + "woodens": [], + "prat": ["S"], + "chub": ["S", "M"], + "scalloped": [], + "Nero": ["M"], + "president's": [], + "snit'ses": [], + "irreducible": [], + "Roslyn's": [], + "coucheds": [], + "compacting": [], + "auditing": [], + "subornation": ["M"], + "holeds": [], + "deathlike": [], + "droop": ["G", "S", "M", "D"], + "harrumphed": [], + "peel's": [], + "incrimination's": [], + "adverts's": [], + "Chen": ["M"], + "motorizeds": [], + "Bergen's": [], + "Anthony": ["M"], + "dioceses": [], + "rebukingly": [], + "Nubia's": [], + "notify": ["N", "D", "R", "S", "X", "Z", "G"], + "Nubia": ["M"], + "cassias": [], + "elicitation's": [], + "Potemkin's": [], + "heaviness": ["M"], + "mistiminged": [], + "rappelled": [], + "caff": ["C", "S"], + "Janet's": [], + "landsmen": [], + "Lula's": [], + "shirks": [], + "grizzleds": [], + "weaken": ["D", "R", "Z", "G"], + "fieriness's": [], + "mushy": ["P", "T", "R"], + "connective's": [], + "importers": [], + "Consuelo's": [], + "you're": [], + "frizzle'sing": [], + "mathematicians's": [], + "fishbowls": [], + "proletarian'ses": [], + "interlopinged": [], + "bikini's": [], + "uncrushable": [], + "Ting": ["M"], + "hullabaloo": ["S", "M"], + "sprain's": [], + "sicko'ses": [], + "usurping": [], + "silencer": ["M"], + "vatting": [], + "potholders": [], + "breastplates's": [], + "clawing": [], + "raps": [], + "fourth'sly": [], + "Lizzy's": [], + "metrically": [], + "bobbins": [], + "adorns": [], + "hymnbook's": [], + "parader": ["M"], + "Methodist": ["S", "M"], + "poundings's": [], + "immunologists": [], + "roweling": [], + "wainscoting's": [], + "unrewarding": [], + "happenstances": [], + "floodplain": ["M", "S"], + "garbles": [], + "newlyweds's": [], + "dialectal": [], + "untrammeled": [], + "childproof": ["G", "S", "D"], + "Novocain": ["M", "S"], + "ditty": ["S", "M"], + "skydiversing": [], + "kinkeds": [], + "rasping": [], + "pineapple": ["M", "S"], + "hinders": [], + "lookersing": [], + "lags": [], + "tallboys": [], + "topsides": [], + "avowing": [], + "agile": ["Y"], + "conjunctiva's": [], + "tamped": [], + "Mabel's": [], + "depilatories's": [], + "Psalms's": [], + "purvey": ["D", "S", "G"], + "stenciling's": [], + "clarioned": [], + "betrothals": [], + "fetuses": [], + "Utah": ["M"], + "gaffed": [], + "Moorish's": [], + "subsidize": ["Z", "G", "D", "R", "S"], + "namedropping": ["M"], + "prefabs's": [], + "sidewall": ["M", "S"], + "bleateds": [], + "smartypants's": [], + "outsourcing": ["M"], + "contraindicated": [], + "deceitfulliness": [], + "intrigue's": [], + "embarked": [], + "monstrous": ["Y"], + "fordings": [], + "mindfully": [], + "Jules": ["M"], + "counterpoint'sed": [], + "papacies's": [], + "iterate": ["A", "X", "G", "N", "V", "D", "S"], + "miracles": [], + "catapult's": [], + "agitates": [], + "incidentally": [], + "misfitting": [], + "relaxers": [], + "prison'ser": [], + "capstone": ["M", "S"], + "rug's": [], + "lifter": ["M"], + "benumb": ["D", "S", "G"], + "peep's": [], + "forelimb's": [], + "bubblegum": ["M"], + "sprite": ["S", "M"], + "wildcat": ["M", "S"], + "step's": [], + "slovenly": ["P", "T", "R"], + "snorts": [], + "sorrow": ["S", "M", "D", "G"], + "requiems's": [], + "brusheds": [], + "mattress'ses": [], + "Angevin's": [], + "Olajuwon's": [], + "oppresses": [], + "restfullest": [], + "intercepted": [], + "jays": [], + "peal's": [], + "juries's": [], + "putts": [], + "packsaddle'ses": [], + "microchip": ["M", "S"], + "fascicle": ["S", "M"], + "devoursed": [], + "experimented": [], + "parathyroids": [], + "Urban": ["M"], + "Delacruz's": [], + "resurrection's": [], + "hosiers": [], + "mentality": ["S", "M"], + "ideogram's": [], + "expresses": [], + "preservers": [], + "valedictorians's": [], + "Micmac": ["S", "M"], + "mispronounced": [], + "swills's": [], + "expensively": [], + "transcribeder": [], + "distortion'ses": [], + "slackness's": [], + "cosmetically": [], + "Farley": ["M"], + "homeowner": ["M", "S"], + "harsher": [], + "bedsores": [], + "stridency's": [], + "adage's": [], + "pedometers": [], + "bagels": [], + "valuable's": [], + "crocheteder": [], + "monition's": [], + "squirting's": [], + "undoubtedly": [], + "LibreOffice": ["M"], + "NCO": [], + "inventorieds": [], + "egging": [], + "feminine": ["S", "M", "Y"], + "Southey's": [], + "N'Djamena": [], + "flywheel'ses": [], + "stem's": [], + "rink's": [], + "implantation's": [], + "Fergus": ["M"], + "Bolshevik's": [], + "martin's": [], + "freeing": [], + "twinksly": [], + "mantis's": [], + "laid": ["I", "A"], + "bucksaw'ses": [], + "Antwerp": ["M"], + "Taft": ["M"], + "bicker'sed": [], + "ferules": [], + "UPS": ["M"], + "defaulters": [], + "gemology": ["M"], + "quarreling's": [], + "chordate's": [], + "ocher": ["M"], + "syrup's": [], + "peroxide": ["M", "G", "D", "S"], + "boogie's": [], + "bed": ["S", "M"], + "bubbles": [], + "chirpiness": [], + "iffy": ["R", "T", "P"], + "overtakes": [], + "moo's": [], + "tepidly": [], + "murrain's": [], + "megalomaniacs's": [], + "manureds": [], + "humanizing": [], + "sculler": ["M"], + "brusque": ["R", "P", "Y", "T"], + "leukocyte": ["M", "S"], + "followups": [], + "bypassed": [], + "rejigged": [], + "naif's": [], + "Treasury": ["S", "M"], + "sprier": [], + "pic's": [], + "eider's": [], + "polish'sed": [], + "stands's": [], + "Murillo's": [], + "gormandizersing": [], + "cutaway": ["M", "S"], + "gestapo's": [], + "sexton'ses": [], + "scaldsing": [], + "bewildersing": [], + "insight's": [], + "nosiness's": [], + "Adan": ["M"], + "overoptimism's": [], + "Brett's": [], + "headhunting": ["M"], + "Adhara's": [], + "turnings": [], + "workingman's": [], + "Monte's": [], + "equalized": [], + "inducersing": [], + "encyclopedia'ses": [], + "confuted": [], + "venturousnessly": [], + "complainant'ses": [], + "nipper's": [], + "desperateness": ["M"], + "telemarketing's": [], + "Kennedy": ["M"], + "icon": ["M", "S"], + "Worcester's": [], + "pegs": [], + "rockets": [], + "Deccan": ["M"], + "underclothing": ["M"], + "compacts's": [], + "quislings's": [], + "academia": ["M"], + "joyrode": [], + "felonies's": [], + "vibrantly": [], + "acidosis's": [], + "bumperers": [], + "youth's": [], + "dbl": [], + "flaccid": ["Y"], + "newsgroup": ["M", "S"], + "instrumentally": [], + "handball's": [], + "waybills's": [], + "everything's": [], + "absorbency": ["M"], + "defecation's": [], + "obtrusion": ["M"], + "outfoxes": [], + "Clifton's": [], + "clout'sed": [], + "scarecrow'ses": [], + "jollying": [], + "lost": [], + "vichyssoise's": [], + "kazoo's": [], + "poniard'ses": [], + "disqualify": [], + "pardonersing": [], + "seamstress": ["M", "S"], + "jg": [], + "currycombing's": [], + "deaconesses": [], + "fireballs": [], + "piggishnessly": [], + "Maronite's": [], + "Kutuzov's": [], + "attendee's": [], + "Galahad": ["S", "M"], + "purposefully": [], + "beseechinger": [], + "wile's": [], + "soapy": ["R", "P", "T"], + "Peshawar's": [], + "hush'sed": [], + "everlasting'sly": [], + "rec's": [], + "underfeeds": [], + "blacklists": [], + "Asoka": ["M"], + "Loafers": [], + "unionist's": [], + "predisposed": [], + "percentiles's": [], + "disciples's": [], + "validated": [], + "desalinize": ["G", "D", "S"], + "homoerotic": [], + "match'ses": [], + "confess": [], + "infirmity": ["S", "M"], + "effervescent": ["Y"], + "backboards's": [], + "tidemarks": [], + "OSHA's": [], + "widening": [], + "Intel's": [], + "Catholics": [], + "thrombosis": ["M"], + "intermarrying": [], + "alleyway": ["S", "M"], + "farrowed": [], + "wildfire's": [], + "Angus": ["M"], + "geocached": [], + "unrelieved": ["Y"], + "Eugenie": ["M"], + "soilings": [], + "staidness": ["M"], + "numeratingen": [], + "intermediates": [], + "inconveniencinged": [], + "haunteder": [], + "mensch": ["M", "S"], + "seemliness's": [], + "Amaru": ["M"], + "surgeons": [], + "calaboose": ["S", "M"], + "plagiarizeder": [], + "ciceroni": [], + "drivings": [], + "fished": [], + "cyclops": ["M"], + "Australians": [], + "attache's": [], + "gimmicks": [], + "hated": [], + "Caesars": [], + "clawed": [], + "cantata's": [], + "Saturn": ["M"], + "testers's": [], + "dandled": [], + "calmed": [], + "begrudging": ["Y"], + "fester'sed": [], + "Newsweek": ["M"], + "sarsaparilla's": [], + "woollier": [], + "austere": ["R", "Y", "T"], + "fumigationed": [], + "engrossing": [], + "beached": [], + "kingship": ["M"], + "promethium's": [], + "Borg's": [], + "Rimbaud's": [], + "beefburgers": [], + "moussed": [], + "pluperfects's": [], + "slogging": [], + "marquess'ses": [], + "obviousnessly": [], + "upliftingses": [], + "waistband": ["M", "S"], + "McNamara's": [], + "longbow": ["M", "S"], + "amino": [], + "clumpiest": [], + "cochleas's": [], + "dybbuks's": [], + "mistiness's": [], + "wagons": [], + "provinces": [], + "tenteding": [], + "aka": [], + "alludeds": [], + "rheumatism": ["M"], + "rattan": ["S", "M"], + "almond": ["M", "S"], + "seductiveness's": [], + "plushly": [], + "dyed": [], + "nauseates": [], + "Venezuelan": ["S", "M"], + "threescore's": [], + "density's": [], + "exclaimings": [], + "waxing": [], + "Tswana's": [], + "insecticide'ses": [], + "shays": [], + "Bonaventure": ["M"], + "cabana's": [], + "hangeder": [], + "genitals": ["M"], + "hemline's": [], + "spirit's": [], + "rune's": [], + "cicerones's": [], + "exterminations": [], + "envoys": [], + "peignoirs's": [], + "scatology's": [], + "endeavor's": [], + "tactfulness": ["M"], + "bivouac": ["M", "S"], + "jar": ["S", "M"], + "Ewing": ["M"], + "intrauterine": [], + "seismographers's": [], + "followings": [], + "undefended": [], + "gymnast'ses": [], + "continued": [], + "presorts": [], + "provocateurs": [], + "deflates": [], + "overclock": ["G", "D"], + "stabs": [], + "coroner'ses": [], + "nepenthe's": [], + "sleazy": ["P", "R", "T"], + "essay": ["S", "M", "D", "R", "Z", "G"], + "wrinklier": [], + "dimpleds": [], + "gasbag's": [], + "paramedicals": [], + "gore": ["M", "G", "D", "S"], + "overwork": ["G", "M", "D", "S"], + "leveling": [], + "Everglades's": [], + "Chandragupta": ["M"], + "horticulturalists": [], + "resumes": [], + "corm": ["M", "S"], + "camerawoman": ["M"], + "centurions": [], + "playgoer": ["M", "S"], + "peduncle'ses": [], + "crayfish": ["M", "S"], + "Alexanders": [], + "uninterpreted": [], + "Nesselrode": ["M"], + "carjackers": [], + "desktops": [], + "knish": ["M", "S"], + "Zechariah's": [], + "snap": ["U", "S"], + "adhesiveness's": [], + "lisping": [], + "colonoscopies's": [], + "Darby": ["M"], + "crest's": [], + "pennons": [], + "dovetails": [], + "butt'sed": [], + "wrecking's": [], + "detaineds": [], + "concussive": [], + "externalizing": [], + "grackles": [], + "lardier": [], + "fainting": [], + "compatible'ses": [], + "clutch": ["G", "M", "D", "S"], + "beguilement": ["M"], + "Cecile's": [], + "fobbed": [], + "rednesses": [], + "tumors": [], + "clapboards": [], + "nationalistically": [], + "rumpus'ses": [], + "organist": ["M", "S"], + "striae": [], + "shamefulness": ["M"], + "leveleder": [], + "stentorian": [], + "vileness": ["M"], + "loyalty": ["E", "M"], + "Filipino's": [], + "quadruplet": ["M", "S"], + "Eden": ["M"], + "proviso's": [], + "petite": ["M", "S"], + "Halsey": ["M"], + "coin'sed": [], + "cupcake": ["M", "S"], + "stupor's": [], + "pastureland": ["M"], + "capstan's": [], + "irrational's": [], + "galoot's": [], + "slenderizesing": [], + "simmering's": [], + "mobilizers's": [], + "theological": ["Y"], + "silly": ["T", "R", "S", "M", "P"], + "blancmange": ["M", "S"], + "farriers": [], + "citywide": [], + "perjures": [], + "bookshop's": [], + "baby's": [], + "blowhard's": [], + "disassemble": [], + "blatantly": [], + "bucolic": ["M", "S"], + "Lithuanians": [], + "Yahweh": ["M"], + "Musial's": [], + "Ladonna": ["M"], + "departmentalizing": [], + "perplexedly": [], + "Bellow's": [], + "cognate": ["M", "S"], + "ultimate'sly": [], + "hate'ses": [], + "Seebeck": ["M"], + "hikers": [], + "Suns": [], + "hippodromes": [], + "fourteenths": [], + "dogmatic": [], + "rice": ["M", "Z", "G", "D", "R", "S"], + "twines": [], + "framing": [], + "flattereder": [], + "registrants": [], + "scaremonger": ["S", "M", "G"], + "unvarnished": [], + "Costco": ["M"], + "southeaster'sly": [], + "quackeds": [], + "dogging": [], + "whitehead": ["M", "S"], + "Willard's": [], + "slammed": [], + "acolyte'ses": [], + "Copley's": [], + "repeaters": [], + "draggy": ["T", "R"], + "Angoras": [], + "molar's": [], + "retaking": [], + "playgoers": [], + "clonk'sed": [], + "blander": [], + "thistles": [], + "convicts": [], + "behaviorists": [], + "Lent's": [], + "conservators's": [], + "pulmonary": [], + "explosions": [], + "peritoneum'ses": [], + "adorer's": [], + "George": ["M", "S"], + "Appalachian": ["S", "M"], + "prosody's": [], + "upholsterer": ["M", "S"], + "fatalistic": [], + "seed's": [], + "mannishness": ["M"], + "S'sen": [], + "oratorios": [], + "lengthenens": [], + "wearily": [], + "gratified": [], + "aggressors's": [], + "irrepressible": [], + "scagged": [], + "transitory": [], + "sword's": [], + "careeneding": [], + "federal'sly": [], + "cutesiest": [], + "unhatched": [], + "granulating": [], + "semen": ["M"], + "redacts": [], + "Idahoan'ses": [], + "consolingly": [], + "defecting": [], + "downfall's": [], + "Jefferey's": [], + "escorteding": [], + "chortle": ["M", "Z", "G", "D", "R", "S"], + "HMO's": [], + "protections's": [], + "canons": [], + "scandium": ["M"], + "batsman's": [], + "permeationed": [], + "redundancies": [], + "quiches": [], + "chins": [], + "scarce": ["R", "Y", "T", "P"], + "bookend'ses": [], + "bruited": [], + "hegemony": ["M"], + "levees's": [], + "McKee's": [], + "honksers": [], + "restructurings": [], + "astrologer": ["S", "M"], + "excavatesens": [], + "Edith's": [], + "climber": ["M"], + "ubiquity": ["M"], + "rosaries": [], + "presume": ["G", "D", "S", "B"], + "Gullah": ["M"], + "fraternizers": [], + "dictationens": [], + "adores": [], + "thirty": ["H", "S", "M"], + "childminding": [], + "defensiveliness": [], + "forgiver's": [], + "cup": ["S", "M"], + "inaugurationsing": [], + "graciously": [], + "subordinates's": [], + "ending's": [], + "handshake": ["J", "M", "G", "S"], + "Lascaux": ["M"], + "spikes's": [], + "spices": [], + "heaver": ["M"], + "hexameters's": [], + "populousness's": [], + "survivalist": ["S", "M"], + "suavely": [], + "sparkier": [], + "outpatient's": [], + "topography": ["S", "M"], + "commendations": [], + "backcombeds": [], + "disk": ["M", "S"], + "rads's": [], + "advertise": ["L", "Z", "G", "D", "R", "S"], + "peripatetic": ["M", "S"], + "waitstaff": ["M"], + "Scots's": [], + "Kendrick's": [], + "traditionalists's": [], + "acknowledges": [], + "absconded": [], + "restriction": ["M", "S"], + "intramural": [], + "saggy": ["R", "T"], + "rakinged": [], + "bust's": [], + "Sharpe": ["M"], + "capsules's": [], + "Marxian": [], + "surfeits": [], + "Avon": ["M"], + "rapier's": [], + "tootsies": [], + "Christmas": ["M", "S"], + "theocracy's": [], + "cordial": ["S", "M", "Y"], + "grandam's": [], + "tootlinged": [], + "rip'sen": [], + "twitter's": [], + "Pr's": [], + "hilltop": ["M", "S"], + "pickpockets": [], + "abnegatingen": [], + "Mitch": ["M"], + "assassination": ["M"], + "abbes's": [], + "LNG": [], + "luxuriously": [], + "medalist's": [], + "nobbled": [], + "stolen": [], + "N": ["M", "D"], + "intercontinental": [], + "Roman'ses": [], + "conceptional": [], + "abbey'ses": [], + "meanie's": [], + "Kurtis": ["M"], + "anti": ["S", "M"], + "flukiest": [], + "apostates's": [], + "Westerners": [], + "guttered": [], + "hydraulically": [], + "stockrooms": [], + "Alabaman": ["M", "S"], + "Elgar's": [], + "detrimental": ["Y"], + "bravely": [], + "Carlin's": [], + "overthinks": [], + "mizzenmast": ["S", "M"], + "dominatrix's": [], + "sandbagger's": [], + "draftily": [], + "flint's": [], + "paper'sed": [], + "presentment": ["S", "M"], + "semicolon's": [], + "harmless": ["P", "Y"], + "raid's": [], + "xenophobia's": [], + "Tarawa's": [], + "pout": ["Z", "G", "M", "D", "R", "S"], + "watt's": [], + "Kshatriya": ["M"], + "captions": [], + "cheese": ["M", "G", "D", "S"], + "China's": [], + "honkersing": [], + "affronteds": [], + "utterances's": [], + "hallucinates": [], + "languishes": [], + "Dominican's": [], + "refrigeration": ["M"], + "compels": [], + "broadsheet's": [], + "views": [], + "tinfoil's": [], + "Seljuk": ["M"], + "Barnaul's": [], + "recd": [], + "romancers": [], + "josh": ["M", "D", "R", "S", "Z", "G"], + "Iberia's": [], + "Gawain": ["M"], + "deliriousliness": [], + "starling's": [], + "impeccability": ["M"], + "Maidenform": ["M"], + "shape's": [], + "godsons's": [], + "agility's": [], + "retrieving": [], + "Zinfandel": ["M"], + "rods": [], + "bystanders": [], + "Tasmania": ["M"], + "conservatoires": [], + "outfield'ser": [], + "transactor'ses": [], + "indicatives's": [], + "pharynx": ["M"], + "imitatingen": [], + "gladiolas's": [], + "eventualities's": [], + "tigers": [], + "unitizing": [], + "tableland's": [], + "underexposure'ses": [], + "rowers": [], + "interminably": [], + "boated": [], + "inmate's": [], + "knaves's": [], + "thermals": [], + "Gatling's": [], + "deceptive": ["Y", "P"], + "urticaria's": [], + "Thespian's": [], + "fanaticism": ["M"], + "luminaries's": [], + "idolize": ["G", "D", "S"], + "Shari": ["M"], + "catgut's": [], + "stakeout": ["S", "M"], + "haw": ["G", "S", "M", "D"], + "perversity's": [], + "root'sed": [], + "sulkiest": [], + "cask's": [], + "braininess": ["M"], + "Kitchener's": [], + "experimentersing": [], + "ageist": ["S", "M"], + "amaryllis'ses": [], + "Janjaweed's": [], + "contestant's": [], + "Welland's": [], + "eradication's": [], + "gratuitously": [], + "ency": [], + "commercials": [], + "loci": [], + "punishablement": [], + "brinkmanship": ["M"], + "Byron": ["M"], + "Stuart": ["M", "S"], + "scow's": [], + "probe's": [], + "slaughterhouse's": [], + "augustest": [], + "rattlesnake": ["S", "M"], + "degeneracy": ["M"], + "pairings": [], + "Appleseed's": [], + "tie": ["A", "U", "S", "D"], + "belted": [], + "sanatoriums": [], + "squire's": [], + "above's": [], + "cowpox": ["M"], + "pinpointsing": [], + "seance": ["S", "M"], + "escape's": [], + "tomatoes": [], + "vivifying": [], + "behaving": [], + "quieted": [], + "accomplished": ["U"], + "equivocalness's": [], + "haddocks": [], + "tartars": [], + "lucidness": ["M"], + "Goldwyn's": [], + "bronze'sing": [], + "Attila's": [], + "firmware's": [], + "mamboing": [], + "Dahomey": ["M"], + "whipper": ["M", "S"], + "understand": ["S", "G", "B", "J"], + "lapels": [], + "caravansaries": [], + "defogged": [], + "Ingres's": [], + "vandal": ["S", "M"], + "abide": ["G", "S"], + "fab": [], + "digestion's": [], + "disparageds": [], + "saws": [], + "notepad": ["S"], + "fableds": [], + "crapes's": [], + "calumnies": [], + "canard's": [], + "troupe": ["M", "Z", "G", "D", "R", "S"], + "legged": [], + "Chiba": ["M"], + "rapper": ["S", "M"], + "Pinochet": ["M"], + "Narmada's": [], + "arena'ses": [], + "magnum's": [], + "tallness": ["M"], + "concept": ["S", "M"], + "Saturn's": [], + "muzzle'sing": [], + "oculist": ["S", "M"], + "seasick": ["P"], + "wakefully": [], + "homeostasis": ["M"], + "harvester's": [], + "Burch's": [], + "qualifier's": [], + "singular": ["S", "M", "Y"], + "crossover": ["M", "S"], + "can": ["S", "M", "D", "R", "Z", "G"], + "generator's": [], + "harrowed": [], + "selfie's": [], + "Fokker": ["M"], + "effluvia": [], + "dial": ["A", "M", "D", "G", "S"], + "whetstone's": [], + "Sequoya's": [], + "dash'sed": [], + "unscientific": [], + "sunshades": [], + "Timbuktu": ["M"], + "immanency": ["M"], + "Donner": ["M"], + "aftertastes's": [], + "lugsail's": [], + "swamps's": [], + "depression's": [], + "diffidently": [], + "nailing": [], + "copybooks's": [], + "Einsteins": [], + "imitates": [], + "reformatories's": [], + "ensuing": [], + "pouts": [], + "ripsaws": [], + "Golgotha": ["M"], + "Richmond's": [], + "investing": [], + "attainability's": [], + "petticoat'ses": [], + "veracious": ["Y"], + "snooze's": [], + "interventions's": [], + "banjo": ["M", "S"], + "mango": ["M"], + "celestas": [], + "unconstrained": [], + "thermionic": [], + "borderlands": [], + "StairMaster": ["M"], + "armful": ["M", "S"], + "gatherer": ["M"], + "workbook": ["M", "S"], + "anticyclones's": [], + "whitenerings": [], + "Hopewell's": [], + "uphold": ["Z", "G", "R", "S"], + "moorlands": [], + "annihilates": [], + "cognoscente": ["M"], + "Pickett": ["M"], + "astral": [], + "maxillary": [], + "presentation's": [], + "foggiest": [], + "vigilant": ["Y"], + "drake's": [], + "imitatively": [], + "abrasiveliness": [], + "manner": ["M", "D", "Y", "S"], + "immersion": ["M"], + "cheeking": [], + "Colleen's": [], + "whit's": [], + "quarterdeck's": [], + "molesters": [], + "thenceforward": [], + "maturing": [], + "beaming's": [], + "adversarial": [], + "kronur": [], + "homogenization's": [], + "abidance": ["M"], + "wealth": ["M"], + "Blaine's": [], + "shillelaghs": [], + "creweding": [], + "Bentham": ["M"], + "bowlers": [], + "iconography": ["M"], + "reprice": [], + "foodie's": [], + "oxide'ses": [], + "octagon'ses": [], + "Fourth": [], + "glowersing": [], + "basilisks": [], + "nerve's": [], + "derogates": [], + "steering's": [], + "climbersing": [], + "tendency": ["S", "M"], + "bend": ["B", "S", "Z", "G", "M", "R"], + "stippling": ["M"], + "reluctance": ["M"], + "timekeeper'ses": [], + "fetus": ["M", "S"], + "whippersnapper'ses": [], + "Carroll": ["M"], + "schmaltz": ["M"], + "erratic": [], + "Maryellen's": [], + "eyes's": [], + "premium": ["S", "M"], + "demagogue's": [], + "firecracker": ["S", "M"], + "dissipates": [], + "canalized": [], + "qualities's": [], + "croup's": [], + "leaf'sed": [], + "metatarsal's": [], + "culminate": ["X", "D", "S", "G", "N"], + "cellulitis": [], + "mistrust's": [], + "overprotectsed": [], + "Yangtze's": [], + "firstborn's": [], + "words": [], + "Marin": ["M"], + "ghettoizes": [], + "outcries": [], + "idolatress": ["M", "S"], + "bend's": [], + "max": ["G", "M", "D", "S"], + "biddies's": [], + "bemusement": ["M"], + "mailings": [], + "concourse": ["S", "M"], + "kudos's": [], + "shirr'sed": [], + "likeds": [], + "Luxembourg's": [], + "whippings": [], + "strongman": ["M"], + "mutiny": ["G", "D", "S", "M"], + "Barclays": ["M"], + "specifications": [], + "sirloin": ["S", "M"], + "sentry": ["S", "M"], + "keen": ["M", "D", "R", "Y", "S", "T", "G", "P"], + "pruninged": [], + "thole": ["S", "M"], + "Grimm's": [], + "lyrics": [], + "gore's": [], + "caribou's": [], + "soar": ["M", "D", "G", "S"], + "kazoos's": [], + "brayeding": [], + "strokes": [], + "puttersing": [], + "Wisconsin's": [], + "DPs's": [], + "stain's": [], + "stopple'sing": [], + "cocaine": ["M"], + "envisioning": [], + "suffocation's": [], + "volubility's": [], + "falsehood": ["S", "M"], + "stiletto": ["S", "M"], + "sheriffs's": [], + "violating": [], + "deafened": [], + "adventuress'ses": [], + "counterbalance": ["M", "G", "D", "S"], + "Perm": ["M"], + "Gdansk's": [], + "encyclopedia's": [], + "oversleepings": [], + "Jerri's": [], + "authorize": ["A", "G", "D", "S"], + "congratulates": [], + "enhances": [], + "disbarment's": [], + "Argonaut": ["M", "S"], + "coached": [], + "Blanchard's": [], + "Upjohn's": [], + "Iris's": [], + "capability": ["I", "M"], + "blue": ["D", "R", "S", "P", "M", "T", "G"], + "Quentin's": [], + "workup's": [], + "Sheldon's": [], + "protest's": [], + "WWI": [], + "landmass": ["M", "S"], + "fetish's": [], + "amblers": [], + "flirtation's": [], + "legitimatized": [], + "Edwin": ["M"], + "pollution's": [], + "thunderclap's": [], + "noncontroversial": [], + "hobblinged": [], + "talked": [], + "waded": [], + "Javas's": [], + "insinuate": ["G", "N", "V", "D", "S", "X"], + "acrimoniousliness": [], + "bowlfuls": [], + "storyteller's": [], + "Alcuin": ["M"], + "peroration's": [], + "liquidators": [], + "gustiest": [], + "geologically": [], + "cupcake's": [], + "improvement'ses": [], + "layette'ses": [], + "postgraduates": [], + "inbuilt": [], + "hearties": [], + "grouched": [], + "bewitchment": ["M"], + "succorsing": [], + "amputations": [], + "hookup": ["M", "S"], + "rhythm's": [], + "vapeds": [], + "keelhaul": ["D", "G", "S"], + "fussiness's": [], + "ancient's": [], + "snakebite": ["M", "S"], + "yank's": [], + "gerunds": [], + "lithely": [], + "linked": [], + "teasels": [], + "Stokes": ["M"], + "randy": ["R", "T", "P"], + "crenelations": [], + "encrypteding": [], + "denunciations's": [], + "pacify": ["Z", "G", "D", "R", "S", "N"], + "carob'ses": [], + "roulette": ["M"], + "flightiness": ["M"], + "scansion's": [], + "cenobite'ses": [], + "KY": [], + "spinsters's": [], + "Bloomer": ["M"], + "Chongqing's": [], + "Benet's": [], + "palaver": ["G", "S", "M", "D"], + "Prozac": ["M", "S"], + "Busch": ["M"], + "smackers": [], + "untiringly": [], + "squashy": ["T", "R"], + "compasses": [], + "songs": [], + "carjackerers": [], + "undertake": ["Z", "G", "J", "R", "S"], + "favored": [], + "spate's": [], + "denied": [], + "originality": ["M"], + "Day's": [], + "shutoff": ["S", "M"], + "heckle": ["D", "R", "S", "M", "Z", "G"], + "intentional": ["U", "Y"], + "kaiser'ses": [], + "besieged": [], + "twirlersing": [], + "ductless": [], + "chauvinists": [], + "resource": [], + "slogan": ["S", "M"], + "caraway": ["S", "M"], + "susceptibilities's": [], + "amalgamationsing": [], + "elopesing": [], + "upstaging": [], + "fluctuation": ["M"], + "insulator'ses": [], + "Mazatlan's": [], + "wackest": [], + "requiring": [], + "divestsment": [], + "exclamation's": [], + "comfits": [], + "exhibition'ses": [], + "plunked": [], + "Juno": ["M"], + "encrustations's": [], + "latters": [], + "astringents's": [], + "precipitously": [], + "unpack": [], + "Maud's": [], + "consecrateds": [], + "curry's": [], + "floor's": [], + "sigma": ["M", "S"], + "hexagram": ["S", "M"], + "division": ["M", "S"], + "prattleder": [], + "Potomac": ["M"], + "Chester": ["M"], + "removal's": [], + "brushwork": ["M"], + "clouds's": [], + "vigilance": ["M"], + "majoritarians's": [], + "contextualize": ["D", "S", "G"], + "vestments": [], + "psychically": [], + "FPO": [], + "DVRs": [], + "capacitors's": [], + "Pasternak's": [], + "corduroys's": [], + "ghat": ["M", "S"], + "Westinghouse's": [], + "caws": [], + "neighbor'sed": [], + "besiegers": [], + "tragicomic": [], + "thickenings": [], + "turquoise": ["S", "M"], + "cockatrices's": [], + "unstuck": [], + "scoffers": [], + "Kristie's": [], + "imitator's": [], + "subsidence": ["M"], + "tentings": [], + "convent": ["S", "M"], + "hellfire": [], + "chortling": [], + "octagon": ["M", "S"], + "pleonasms": [], + "prepares": [], + "nitpicker's": [], + "appraisers": [], + "machinatingen": [], + "snorersing": [], + "hostessesing": [], + "navel": ["S", "M"], + "tubas": [], + "weeper's": [], + "diagnostics's": [], + "urethane": ["M"], + "prepossessed": [], + "cricketsers": [], + "grotesquesness": [], + "dispenseder": [], + "honey'sed": [], + "hearse": ["A", "S"], + "syllabicating": [], + "stagehand'ses": [], + "submerges": [], + "query'sing": [], + "cantonments": [], + "numerously": [], + "jerrycans": [], + "Fitzgerald": ["M"], + "wienies": [], + "frontward": ["S"], + "dunce": ["S", "M"], + "corrupted": [], + "ingestion's": [], + "gammon's": [], + "hostiles": [], + "notwithstanding": [], + "simmered": [], + "confabbed": [], + "worsting's": [], + "Popocatepetl's": [], + "diamonds": [], + "macerating": [], + "insecurity": [], + "palmettos": [], + "scoopeds": [], + "dredgeder": [], + "Mencken": ["M"], + "fain": ["R", "T"], + "bottomless": [], + "hawthorn'ses": [], + "demonstrated": [], + "concomitant": ["M", "Y", "S"], + "streakersing": [], + "goldfields": [], + "amulet'ses": [], + "Ozark's": [], + "griddle": ["S", "M"], + "retrofiringed": [], + "Dennis": ["M"], + "oxygenates": [], + "seismograph": ["Z", "M", "R"], + "eglantine": ["S", "M"], + "loyalist's": [], + "Patti": ["M"], + "chunking's": [], + "calypso": ["M", "S"], + "tractors": [], + "coyerly": [], + "banana": ["S", "M"], + "hybridize": ["D", "S", "G"], + "grandfathers": [], + "hoarser": [], + "befogs": [], + "peach'ses": [], + "environments": [], + "partaken": [], + "detonation": ["M"], + "middle": ["M", "G", "S"], + "constituency": ["S", "M"], + "counterfoil": ["M", "S"], + "antibiotic": ["M", "S"], + "trabecule": [], + "scroungesers": [], + "formulationens": [], + "dozen": ["M", "H"], + "pouters": [], + "Tues's": [], + "foolings": [], + "sedation": ["M"], + "stinted": [], + "RSV": [], + "Procter's": [], + "Bartlett": ["M"], + "torchbearers": [], + "zoology": ["M"], + "dissertation's": [], + "alt": ["S"], + "Quakerism's": [], + "powerhouses": [], + "megabyte'ses": [], + "microcomputer": ["M", "S"], + "schoolmarms": [], + "Montpelier": ["M"], + "bugaboo's": [], + "silo'ses": [], + "liquidized": [], + "crude's": [], + "sunroof": ["S", "M"], + "Galatia": ["M"], + "monkeying": [], + "carrier": ["M"], + "unaccountable": [], + "perspective's": [], + "covered": [], + "maliciousnessly": [], + "flows": [], + "putout's": [], + "vitreous": [], + "smile'sing": [], + "enterprisings": [], + "Cara's": [], + "shakeup": ["M", "S"], + "stricken": [], + "polyunsaturated": [], + "shanties's": [], + "rheostats's": [], + "Siberian'ses": [], + "sorrows": [], + "cajolement's": [], + "wintertime's": [], + "critiquinged": [], + "podcasts": [], + "pleated": [], + "stampede": ["M", "G", "D", "S"], + "Sullivan's": [], + "bohemianism": ["M"], + "Tex's": [], + "neodymium's": [], + "antsiest": [], + "Keven's": [], + "Gilligan's": [], + "inters": [], + "dippy": ["R", "T"], + "oratories": [], + "prepuces": [], + "ladylove's": [], + "northeastward": ["S"], + "Brianna": ["M"], + "Curt's": [], + "geeds": [], + "slavishness's": [], + "misusing": [], + "subplot'ses": [], + "semaphore'sing": [], + "bytes": [], + "intensive": ["M", "Y", "P", "S"], + "Kentuckian": ["M", "S"], + "Austin's": [], + "pursing": [], + "skyjackings": [], + "biscuits": [], + "besotted": [], + "distinctively": [], + "chilleder": [], + "bramble": ["M", "S"], + "cowed": [], + "scribbleder": [], + "Copenhagen's": [], + "bounty's": [], + "textbooks's": [], + "licentiate's": [], + "shellfish's": [], + "sandlotter's": [], + "Dublin's": [], + "abloom": [], + "squarers": [], + "daybed's": [], + "wrest'sed": [], + "Atropos's": [], + "Eduardo's": [], + "vantages's": [], + "Ila": ["M"], + "magnifying": [], + "steep'sed": [], + "fallibleness": ["M"], + "squeeze'sers": [], + "IV": ["S", "M"], + "Lupus": ["M"], + "badge's": [], + "hove": [], + "marsupial": ["M", "S"], + "implicates": [], + "seeminged": [], + "chaparral's": [], + "pompadours": [], + "spin": ["M", "S"], + "evacuating": [], + "panned": [], + "pudgier": [], + "Md's": [], + "hampers": [], + "broaden": ["D", "G"], + "Gatsby's": [], + "vacations": [], + "Buckner": ["M"], + "wreaths": [], + "Donovan's": [], + "adheringed": [], + "letups's": [], + "amazeds": [], + "lameness": ["M"], + "Miamis": [], + "volatility's": [], + "rathskellers's": [], + "unsubstantial": [], + "octavo'ses": [], + "tiara": ["S", "M"], + "copperhead": ["S", "M"], + "square's": [], + "subprofessional's": [], + "fishpond'ses": [], + "floored": [], + "skeeter": [], + "inquiringly": [], + "third": ["S", "M", "Y"], + "Skopje's": [], + "Kb": ["M"], + "characteristic": ["S", "M"], + "mystery": ["S", "M"], + "banquet": ["Z", "G", "M", "D", "R", "S"], + "catapults": [], + "policyholder'ses": [], + "sleeved": [], + "funky": ["P", "R", "T"], + "fireside's": [], + "quintuple's": [], + "gaberdines's": [], + "steadiers": [], + "criticizinged": [], + "daubers": [], + "ascendancy": ["M"], + "quoit's": [], + "eyeful": ["S", "M"], + "raiment": ["M"], + "tuna": ["M", "S"], + "trawl'sed": [], + "octal": [], + "rankest": [], + "playful": ["P", "Y"], + "excelling": [], + "bristle's": [], + "settles": [], + "somnambulism's": [], + "stigmatizeds": [], + "Corsica": ["M"], + "Dolores's": [], + "Brahmaputra's": [], + "gravediggers's": [], + "smother": ["G", "S", "M", "D"], + "minster": ["M", "S"], + "roues": [], + "colloquial": ["Y"], + "Ebonics": ["M"], + "splines": [], + "Roxy's": [], + "spindle's": [], + "chuckhole's": [], + "anise": ["M"], + "instructing": [], + "gannets's": [], + "worldview": ["S", "M"], + "neckline": ["M", "S"], + "bumbler's": [], + "consumerism's": [], + "Slovakia's": [], + "quintuplets": [], + "forelock'ses": [], + "Dushanbe": ["M"], + "Noreen": ["M"], + "antioxidant'ses": [], + "therapeutics's": [], + "quaffs": [], + "bereaves": [], + "sterilizeder": [], + "fraudulent": ["Y"], + "sphincter": ["M", "S"], + "pipping": [], + "claret'ses": [], + "roundnesses": [], + "busywork's": [], + "logouts": [], + "bandleaders": [], + "caisson's": [], + "Lew's": [], + "thrillingly": [], + "Rodney's": [], + "drupes's": [], + "exemption's": [], + "advances": [], + "unproved": [], + "scrollings": [], + "seamiest": [], + "despotism": ["M"], + "Santana": ["M"], + "flatland's": [], + "lady": ["S", "M"], + "dragonflies's": [], + "Dachau": ["M"], + "surfing's": [], + "perambulator'ses": [], + "hypotenuse": ["M", "S"], + "bosomy": [], + "postulationsed": [], + "foully": [], + "defecateds": [], + "Aconcagua's": [], + "agape": ["M"], + "untie": [], + "celibacy": ["M"], + "mama": ["M", "S"], + "stud'sly": [], + "skinnier": [], + "wampum's": [], + "Noel's": [], + "purification": ["M"], + "millennia": [], + "foibles": [], + "tantalizingly": [], + "failures's": [], + "humanizer's": [], + "congealmented": [], + "tuner": ["M"], + "jollily": [], + "afterglows": [], + "parsesing": [], + "tympani's": [], + "quake": ["M", "G", "D", "S"], + "globings": [], + "alleviation's": [], + "buttercup": ["S", "M"], + "suspending": [], + "literal'sly": [], + "splotch": ["M", "D", "S", "G"], + "maidenheads": [], + "becks": [], + "waffler's": [], + "signification's": [], + "bread'sed": [], + "submersible": ["M", "S"], + "leprechauns": [], + "frown'sed": [], + "cerebrum'ses": [], + "platy's": [], + "futzes": [], + "roundup'ses": [], + "manorial": [], + "orient": ["A", "E", "D", "G", "S"], + "miltsing": [], + "breathlessnessly": [], + "pentacles": [], + "inequitably": [], + "subtenant": ["S", "M"], + "shrubbier": [], + "sallow": ["R", "T", "P"], + "squinting's": [], + "moonwalk'ses": [], + "somebody's": [], + "schoolhouses": [], + "sternum": ["M", "S"], + "diminuendo's": [], + "repatriations": [], + "compote": ["S", "M"], + "panamas": [], + "winnowers": [], + "stencil's": [], + "harpsichordist": ["S", "M"], + "Obama": ["M"], + "aseptic": [], + "liberation": ["C", "M"], + "Marcuse": [], + "people's": [], + "Amener": [], + "ewes": [], + "craftiest": [], + "dunkeding": [], + "grit'ses": [], + "buckeye'ses": [], + "refill's": [], + "paring's": [], + "ringgit's": [], + "conservatory": ["S", "M"], + "overdose": ["M", "G", "D", "S"], + "consummation": [], + "enjambments": [], + "helmets's": [], + "Coy's": [], + "dishware's": [], + "nouns": [], + "Afros": [], + "Maryland's": [], + "carouseder": [], + "tiptoeing": [], + "Asquith": ["M"], + "pelleting": [], + "thorns": [], + "browbeatsen": [], + "Singer's": [], + "proud": ["R", "Y", "T"], + "shores": [], + "taxpayer's": [], + "salve's": [], + "semiconductor's": [], + "friars's": [], + "seesaws's": [], + "foraged": [], + "targetings": [], + "anticipated": ["U"], + "toastmaster's": [], + "dereserve": [], + "Cthulhu": ["M"], + "ant's": [], + "hoydens": [], + "concertinaing": [], + "retained": [], + "interbred": [], + "tainting": [], + "meteorites's": [], + "emergency's": [], + "reputing": [], + "Nebraska's": [], + "ambulances": [], + "dingoes": [], + "affronting": [], + "imports's": [], + "Shrek": ["M"], + "Hallie": ["M"], + "roadblock's": [], + "galvanizesing": [], + "pipeder": [], + "extemporaneousnessly": [], + "dowdiesness": [], + "indestructibly": [], + "beads": [], + "dwarf'sed": [], + "foodie": ["S", "M"], + "classic'ses": [], + "Palomar": ["M"], + "Abbott": ["M"], + "fortuitously": [], + "crumble": ["M", "G", "D", "S"], + "annulled": [], + "inaccuracies": [], + "reverent": ["Y"], + "headpiece's": [], + "worrywart": ["S", "M"], + "sleets's": [], + "filmings": [], + "initiative": ["S", "M"], + "surprise's": [], + "delinquent": ["S", "M", "Y"], + "salivating": [], + "triceps": ["M", "S"], + "slippages": [], + "becloud": ["G", "D", "S"], + "captors": [], + "tarriers": [], + "mated": [], + "explication's": [], + "purloinsing": [], + "trumpeting's": [], + "hairless": [], + "earningses": [], + "ringleaders": [], + "seafarer": ["S", "M"], + "Chinook's": [], + "Fauntleroy": ["M"], + "candies's": [], + "privatize": ["D", "S", "G"], + "rank": ["T", "G", "J", "P", "M", "D", "R", "Y", "S"], + "Beach's": [], + "wrinkly": ["T", "R", "S", "M"], + "coordinate's": [], + "impressivenessly": [], + "evolutionist's": [], + "dads's": [], + "charismatic's": [], + "conjugating": [], + "twig'ses": [], + "turducken's": [], + "maiming": [], + "Yugoslavians's": [], + "roll'sed": [], + "pantywaist": ["S", "M"], + "Marathon's": [], + "abjures": [], + "Golden's": [], + "Zs's": [], + "Cortes's": [], + "rarebit's": [], + "urbanologist'ses": [], + "breakwater's": [], + "francophone": [], + "Michele": ["M"], + "odometer": ["M", "S"], + "scallops": [], + "Andromeda": ["M"], + "Revere's": [], + "quaffeds": [], + "thing's": [], + "foundation": ["S", "M"], + "wieners's": [], + "deliriousness's": [], + "guessed": [], + "schoolmarm": ["S", "M"], + "teleprinter": ["M", "S"], + "appaloosas": [], + "immaculatenessly": [], + "chancel": ["S", "M"], + "graffito's": [], + "overbuilds": [], + "backed": [], + "miniaturizing": [], + "caution'sed": [], + "inference's": [], + "completers": [], + "moaneder": [], + "Verdun's": [], + "unitedly": [], + "Yesenia's": [], + "debuted": [], + "malice's": [], + "Ajax": ["M"], + "fetishistic": [], + "hunger": ["S", "M", "D", "G"], + "girder's": [], + "Loewe's": [], + "eyefuls": [], + "ichthyologist'ses": [], + "jabberers": [], + "street's": [], + "guideline": ["S", "M"], + "quanta": [], + "meditating": [], + "statute": ["M", "S"], + "swankierness": [], + "withstood": [], + "deadlocked": [], + "wedgie": ["M", "S"], + "calms": [], + "outreached": [], + "wickednesser": [], + "Mysore's": [], + "palely": [], + "lengthiness": ["M"], + "pokinged": [], + "neurons": [], + "buttock's": [], + "notarization's": [], + "grouseder": [], + "exploiteder": [], + "talisman": ["M", "S"], + "paramours's": [], + "tutorial": ["S", "M"], + "sicced": [], + "self's": [], + "reflexology": [], + "musketry's": [], + "griever's": [], + "undershorts's": [], + "stresseds": [], + "Bernadine": ["M"], + "dizziers": [], + "proliferates": [], + "eulogizers": [], + "hafts": [], + "tablespoonfuls's": [], + "tinderboxes": [], + "chemise's": [], + "spastic": ["S", "M"], + "redevaluation": [], + "furthered": [], + "cornier": [], + "spacer": ["M"], + "casement's": [], + "starch'sed": [], + "chronometer's": [], + "squibs's": [], + "upbringings": [], + "Viking'ses": [], + "flagpoles": [], + "potshot'ses": [], + "toluene": ["M"], + "frittered": [], + "midfielder": [], + "hallucinogen": ["S", "M"], + "graphical": ["Y"], + "takeoffs": [], + "impressions": [], + "motion's": [], + "Angeline": ["M"], + "ensconcesing": [], + "patchworks's": [], + "skeleton's": [], + "unweighted": [], + "nigglersing": [], + "Medicare's": [], + "competitiveness": ["M"], + "treadle's": [], + "webcast'sing": [], + "Cetus": ["M"], + "gormandizers": [], + "rotationens": [], + "Torrance": ["M"], + "trainloads": [], + "agog": [], + "Clyde's": [], + "outbacks": [], + "Spitz": ["M"], + "gigapixels": [], + "redyeds": [], + "quaintly": [], + "heifers's": [], + "conventionalized": [], + "honorific's": [], + "cryptically": [], + "macadamizinged": [], + "catnip": ["M"], + "abet": ["S"], + "polliwog's": [], + "riffled": [], + "unreborn": [], + "flyabled": [], + "Bujumbura": ["M"], + "popguns's": [], + "updrafts": [], + "admittance": ["M"], + "hectoreding": [], + "dispassionate": [], + "logotypes": [], + "craftsman": ["M"], + "fart'sed": [], + "smithies's": [], + "OK": ["S", "M", "D", "G"], + "bobble": ["M", "G", "D", "S"], + "TWA's": [], + "prying": [], + "eosinophilic": [], + "meritocracy": ["S", "M"], + "appeases": [], + "mfg": [], + "abdicatesens": [], + "perpetuals": [], + "revalue": [], + "technophobes": [], + "hangovers": [], + "anorak's": [], + "groat's": [], + "misfiring": [], + "thundershower's": [], + "exit's": [], + "Monera's": [], + "beatifications": [], + "incite": [], + "affiance": ["G", "D", "S"], + "abhors": [], + "badmouthing": [], + "tonics's": [], + "undersigning": [], + "oafishnessly": [], + "shuffle's": [], + "Bahia": ["M"], + "cellmate's": [], + "inauguratingen": [], + "humoring": [], + "exurbanite's": [], + "wishbone": ["S", "M"], + "dynamite's": [], + "inveighinged": [], + "sperm's": [], + "Jamar": ["M"], + "sunbelts": [], + "neuritic's": [], + "snivels": [], + "Jamestown": ["M"], + "adulterers's": [], + "tweaks": [], + "SASE": [], + "informational": [], + "dimwits's": [], + "overdoses": [], + "sombrero's": [], + "ceding": [], + "pervadesing": [], + "chugs": [], + "reminiscence's": [], + "horticulturist'ses": [], + "specter's": [], + "fuhrers": [], + "underwent": [], + "swineherds's": [], + "cats's": [], + "clapped": [], + "duck's": [], + "permanent": ["S", "M", "Y"], + "unitizesing": [], + "strengths": [], + "pearl's": [], + "recklessness": ["M"], + "shepherd": ["S", "M", "D", "G"], + "enduesing": [], + "overview'ses": [], + "prelate's": [], + "gambols's": [], + "fattensed": [], + "fundraiser's": [], + "supplication's": [], + "spank'sed": [], + "spores's": [], + "underachievement": [], + "overemphasizes": [], + "lawyer's": [], + "Longfellow's": [], + "cued": [], + "volutes": [], + "roosterers": [], + "transformation": ["S", "M"], + "monikers's": [], + "workouts": [], + "dregs's": [], + "bottoms": [], + "strewsed": [], + "fissure": ["S", "M"], + "sops": [], + "libretto": ["S", "M"], + "infrastructure": ["S", "M"], + "southeasters's": [], + "DeGeneres": ["M"], + "handier": [], + "shut": ["S"], + "pebbleds": [], + "bareness": ["M"], + "Lewinsky": ["M"], + "manifestation's": [], + "Avesta": ["M"], + "Miami's": [], + "sociologists's": [], + "9th": ["p", "t"], + "lull": ["M", "D", "S", "G"], + "absinthe's": [], + "spored": [], + "Saks's": [], + "refrigerates": [], + "shorthorn's": [], + "vivifies": [], + "biophysical": [], + "ache's": [], + "congressman": ["M"], + "genteelly": [], + "angleworms": [], + "lush'ser": [], + "springbok's": [], + "Reginae's": [], + "diaspora": ["S", "M"], + "tattooer's": [], + "overreaction": ["S", "M"], + "perennially": [], + "musicologist'ses": [], + "burrows's": [], + "planting's": [], + "KGB": ["M"], + "conjecturing": [], + "authentication's": [], + "ringgit": ["M", "S"], + "ridden": [], + "muumuu": ["M", "S"], + "colleague's": [], + "Seminole's": [], + "epitomizes": [], + "Tanzania's": [], + "yelling": [], + "plagiarist's": [], + "pollack'ses": [], + "roastings": [], + "psychologically": [], + "skimping": [], + "Stygian's": [], + "phrasinged": [], + "virtuoso's": [], + "rhymester": ["M", "S"], + "upthrustings": [], + "marmoreal": [], + "junk": ["M", "D", "R", "S", "Z", "G"], + "ambition'ses": [], + "largos": [], + "Belorussian": ["M", "S"], + "arraign": ["D", "G", "S", "L"], + "psycheds": [], + "recrudesce": ["G", "D", "S"], + "gates": [], + "overdecorate": ["D", "S", "G"], + "Sanders's": [], + "victualing": [], + "autograph'sed": [], + "gowneding": [], + "headiness": ["M"], + "drowsier": [], + "commandeering": [], + "continuing": [], + "puffballs": [], + "scoop'sed": [], + "proboscises": [], + "ease's": [], + "canoodlesing": [], + "misspoke": [], + "clubbed": [], + "scarcities": [], + "salmons's": [], + "connoisseur": ["S", "M"], + "griminess's": [], + "chamomile": ["M", "S"], + "seances": [], + "baleder": [], + "darkies": [], + "alewives": [], + "irresolution": ["M"], + "implement": ["G", "B", "M", "D", "R", "S"], + "helpmate": ["S", "M"], + "upthrusts's": [], + "rota": ["S"], + "firebombeds": [], + "cackleder": [], + "vulnerabilities": [], + "horticulturist's": [], + "bondsmen": [], + "numeral's": [], + "teardrops": [], + "vaporize": ["D", "R", "S", "Z", "G"], + "motorizesing": [], + "stake's": [], + "commonest": [], + "footstools": [], + "vesiculate": [], + "gruffness": ["M"], + "Cullen": ["M"], + "contention": ["S", "M"], + "forbearance": ["M"], + "sarcophagus's": [], + "twine's": [], + "frustrateds": [], + "Ramirez's": [], + "halloo's": [], + "glibliness": [], + "saintliness's": [], + "cokeds": [], + "impiousness": ["M"], + "farmyards": [], + "femininity's": [], + "via": [], + "spreading": [], + "Dixie": ["M"], + "analgesics": [], + "Zimmerman": ["M"], + "Shcharansky's": [], + "pluralism": ["M"], + "heals": [], + "assuring": [], + "housewives": [], + "grouchy": ["R", "T", "P"], + "delvinged": [], + "deduces": [], + "wristband's": [], + "anguish's": [], + "giraffe'ses": [], + "uncomplicated": [], + "halberd": ["S", "M"], + "sparkler": ["M"], + "diapasons": [], + "Foxes": [], + "starvingsing": [], + "alphabetizes": [], + "prating": [], + "wagering's": [], + "necessitateds": [], + "approbations": [], + "Ashcroft": ["M"], + "antigenic": [], + "broadening": [], + "envy": ["D", "S", "M", "G"], + "counteraction'ses": [], + "miser": ["S", "B", "M", "Y"], + "prescience's": [], + "misfeature": ["S"], + "Frances": ["M"], + "neuritics": [], + "holdalls": [], + "counsel'sed": [], + "coast's": [], + "GB's": [], + "LLD": ["M"], + "indebtedness's": [], + "ladling": [], + "savageness's": [], + "quinine": ["M"], + "outcast's": [], + "phat": [], + "Jefferson": ["M"], + "patchy": ["T", "P", "R"], + "chainsaw": ["M", "D", "G", "S"], + "phallus": ["M"], + "pepperoni": ["M", "S"], + "Sunnyvale's": [], + "reception": ["M", "S"], + "Canadian": ["S", "M"], + "activatesed": [], + "tropospheres's": [], + "causersing": [], + "cathode's": [], + "dosh": [], + "coastguards": [], + "shroudeds": [], + "grapefruits": [], + "falsifier's": [], + "creationisms's": [], + "daring's": [], + "shadily": [], + "limeys": [], + "coped": [], + "flare'sing": [], + "likable": ["P"], + "monotheism's": [], + "Durban": ["M"], + "headingses": [], + "glamorized": [], + "fondant's": [], + "Bumppo": ["M"], + "anarchy's": [], + "alertly": [], + "circumscription": ["M", "S"], + "contents": [], + "undercut": ["S", "M"], + "Borgs's": [], + "book'sed": [], + "slickly": [], + "Assam": ["M"], + "tomography": ["M"], + "metastasizes": [], + "endureds": [], + "conciliatingen": [], + "wordsmiths": [], + "interest": ["E", "S", "M", "D"], + "squish's": [], + "constructionist": ["C", "S"], + "WHO": ["M"], + "understanding": ["M", "Y"], + "voltmeter's": [], + "synthesizer": ["M"], + "Arlington": ["M"], + "periphrasis": ["M"], + "karat's": [], + "workaholic": ["S", "M"], + "endemic": ["M", "S"], + "newscasters": [], + "gated": [], + "telecommute": ["Z", "G", "D", "R", "S"], + "currycombsing": [], + "Barton": ["M"], + "Messianic": [], + "cataloger": ["M"], + "Gamay": ["M"], + "fighter'ses": [], + "Austen": ["M"], + "swordsmanship's": [], + "pseud": ["S"], + "Liberian's": [], + "huntress": ["M", "S"], + "predilections's": [], + "riff": ["G", "M", "D", "S"], + "beechnut": ["M", "S"], + "Perm's": [], + "judicatories": [], + "sabotage": ["D", "S", "M", "G"], + "theodolites": [], + "digests's": [], + "riled": [], + "spell": ["J", "S", "M", "D", "R", "Z", "G"], + "sector's": [], + "maestro's": [], + "perspires": [], + "Treasuries": [], + "reanalyses": [], + "oblige": ["E", "G", "D", "S"], + "hosp": [], + "northwester'sly": [], + "Surat": ["M"], + "micromanage": ["G", "D", "S", "L"], + "woofs": [], + "lord's": [], + "impededs": [], + "nuns's": [], + "Unitarian's": [], + "Spaatz's": [], + "course's": [], + "Chihuahuas": [], + "cerebrate": ["G", "N", "D", "S"], + "acceding": [], + "vermouth": ["M"], + "capeder": [], + "launderette's": [], + "exulting": [], + "sexpot's": [], + "jemmieds": [], + "vignette's": [], + "caviar's": [], + "beatnik's": [], + "clerics": [], + "torturer": ["M"], + "gimcrack": ["S", "M"], + "danglersing": [], + "senate's": [], + "Vanderbilt": ["M"], + "maneuvers": [], + "cigars": [], + "profiting": [], + "pituitaries's": [], + "translatesing": [], + "Cheerios": ["M"], + "mortgagor's": [], + "ambulancewoman": [], + "interminable": [], + "preschoolers's": [], + "assurances": [], + "Roslyn": ["M"], + "willed": [], + "emerges": [], + "prudishly": [], + "solidus's": [], + "marshaling": [], + "photometer's": [], + "pleasing": ["Y", "S"], + "civic": ["S"], + "Rickover's": [], + "apexes": [], + "shanghai": ["D", "S", "G"], + "Champollion's": [], + "respirator": ["S", "M"], + "Spaatz": ["M"], + "mutineer's": [], + "muezzins": [], + "Telemann": ["M"], + "lucre's": [], + "unbounded": [], + "conterminous": ["Y"], + "deadlock's": [], + "yawsing": [], + "asperity's": [], + "hatchway's": [], + "bargainer's": [], + "verse'ses": [], + "sashaying": [], + "stealthily": [], + "vehemently": [], + "Margery's": [], + "composing": [], + "Waldheim's": [], + "defensive'sly": [], + "armored": ["U"], + "inflects": [], + "hushesing": [], + "ionizes": [], + "cockier": [], + "rapsers": [], + "wombat": ["M", "S"], + "resultings": [], + "slops": ["M"], + "swordfish's": [], + "westernizeds": [], + "amoeba": ["M", "S"], + "hopping": [], + "Solis's": [], + "pacifiers": [], + "audit'sed": [], + "crouton'ses": [], + "boilings": [], + "actuaries": [], + "grout's": [], + "Melanesia": ["M"], + "algebras's": [], + "ringmaster": ["M", "S"], + "Marlboro": ["M"], + "electrolytic": [], + "note's": [], + "bistros": [], + "inertia": ["M"], + "boondocks's": [], + "intimidation's": [], + "chapbooks": [], + "hygrometer's": [], + "penitents": [], + "dipper's": [], + "hamburg'ser": [], + "smidgens": [], + "Beecher's": [], + "divinity's": [], + "Luann": ["M"], + "dadaism's": [], + "round's": [], + "renegotiable": [], + "latched": [], + "Nevadan": ["S", "M"], + "towel": ["J", "G", "S", "M", "D"], + "lays": [], + "conink": [], + "busyingness": [], + "impropriety": ["S", "M"], + "morsel": ["M", "S"], + "vaccine's": [], + "juries": [], + "concentrationens": [], + "draftsman": ["M"], + "deprived": [], + "uplifts": [], + "demilitarize": [], + "crux's": [], + "subpoenaeds": [], + "tieback": ["M", "S"], + "clothesline": ["S", "M"], + "smoochesing": [], + "cake'sing": [], + "scores": [], + "schmaltzy": ["T", "R"], + "Sophia's": [], + "Dschubba's": [], + "caustics": [], + "maxims": [], + "cardiologist's": [], + "headlight": ["M", "S"], + "Englishman's": [], + "soils": [], + "chaplaincy": ["S", "M"], + "regally": [], + "canalization": ["M"], + "encoring": [], + "crucify": ["D", "S", "G"], + "vapidliness": [], + "flirtatiously": [], + "Algonquians": [], + "Huerta": ["M"], + "bemoanings": [], + "diagnose": ["D", "S", "G"], + "goosesteps": [], + "minivan'ses": [], + "provost's": [], + "corded's": [], + "Christianity": ["S", "M"], + "imperilmented": [], + "unlikenessable": [], + "buttonhole's": [], + "sober": ["S", "D", "R", "Y", "P", "T", "G"], + "improvisations": [], + "subaltern'ses": [], + "Glastonbury's": [], + "overlook'sed": [], + "songbooks's": [], + "bedrocks": [], + "desalinizes": [], + "ramjet's": [], + "driftwood's": [], + "duller": [], + "reliance's": [], + "tardily": [], + "foundereds": [], + "dissonance's": [], + "enigmas": [], + "devastatingly": [], + "clayey": [], + "excrescence's": [], + "stereoscope": ["M", "S"], + "chancellor": ["M", "S"], + "chortlinged": [], + "epiglottis's": [], + "clientele": ["M", "S"], + "permeateds": [], + "real's": [], + "paving'ses": [], + "Aquila's": [], + "Greenland's": [], + "mashup's": [], + "snowboarding": ["M"], + "arrests": [], + "impoverisheds": [], + "skydiving's": [], + "flamenco's": [], + "Tomsk's": [], + "merganser'ses": [], + "grandma's": [], + "vigil's": [], + "Egypt": ["M"], + "confront": [], + "scuffle": ["M", "G", "D", "S"], + "onlooker's": [], + "boatload": ["S"], + "enticed": [], + "Charlene's": [], + "Roeg": ["M"], + "Sirs": [], + "cocking": [], + "shoring's": [], + "messeigneurs": [], + "hankering": ["M"], + "disappoint": [], + "pineds": [], + "progressively": [], + "grapes's": [], + "changeover": ["S", "M"], + "ecliptic": ["M"], + "noisily": [], + "amiably": [], + "delayeder": [], + "narrowly": [], + "nails": [], + "perceivinged": [], + "let's": [], + "coequals": [], + "reckonsings": [], + "Lardner's": [], + "Iroquoian": ["S", "M"], + "mewing": [], + "savaging": [], + "sustain": ["S", "D", "B", "G"], + "unheated": [], + "parson's": [], + "Hafiz": ["M"], + "custodianship's": [], + "overwrought": [], + "forgetful": ["Y", "P"], + "placements": [], + "shippers's": [], + "yammerersing": [], + "dues's": [], + "interpenetrated": [], + "blamelessliness": [], + "possibilities": [], + "recharge": [], + "tinkle": ["D", "S", "M", "G"], + "mopping": [], + "food'ses": [], + "exceptionables": [], + "regimen": ["S", "M"], + "Perelman's": [], + "draining": [], + "rereading": [], + "camcorder's": [], + "lament": ["B", "S", "M", "D", "G"], + "untried": [], + "mallets": [], + "soundscape": ["S"], + "postulates's": [], + "Ozymandias's": [], + "shying": [], + "unarguably": [], + "balkier": [], + "doubtful": ["P", "Y"], + "spoilsport's": [], + "macadamize": ["G", "D", "S"], + "cinema's": [], + "monologist's": [], + "trusseds": [], + "timescale": ["S"], + "assassins's": [], + "Serbians": [], + "codes": [], + "whirls's": [], + "Bermudans's": [], + "trample's": [], + "promptitude": ["M"], + "rejuvenatesing": [], + "floor": ["S", "M", "D", "G"], + "hustled": [], + "accidentals": [], + "xvii": [], + "heathener": [], + "inartistic": [], + "subheading's": [], + "Schweppes's": [], + "pessimism's": [], + "Hartman": ["M"], + "helpeder": [], + "vibraharps's": [], + "disgruntling": [], + "resplendently": [], + "Cobain's": [], + "Norwegian's": [], + "Camry's": [], + "Java": ["S", "M"], + "chunk": ["G", "M", "D", "S"], + "flattops's": [], + "splintereding": [], + "dietersing": [], + "ascension'ses": [], + "stapler's": [], + "trawl's": [], + "steno's": [], + "assistants": [], + "barelying": [], + "gadabouts": [], + "malocclusion": ["M"], + "moistenersing": [], + "blockbusting": ["M"], + "kingly": ["R", "T"], + "durable": [], + "supercharger": ["M"], + "enfiladed": [], + "blithesome": [], + "heartbeat": ["M", "S"], + "incalculably": [], + "zoos": [], + "phantom": ["S", "M"], + "deputations": [], + "horror's": [], + "overturneds": [], + "grumblersing": [], + "genocide": ["M", "S"], + "inveigled": [], + "slough's": [], + "crowns's": [], + "incursion's": [], + "hovers": [], + "bodybuilding": ["M"], + "spouse": ["S", "M"], + "secretedly": [], + "audio's": [], + "arsonists": [], + "hereafter's": [], + "females's": [], + "Khayyam's": [], + "auscultationed": [], + "spitfire": ["S", "M"], + "stupor'ses": [], + "safflower": ["M", "S"], + "labs's": [], + "crudities's": [], + "inflected": [], + "rollovers's": [], + "pardoner's": [], + "coddles": [], + "nightspots": [], + "tutoreding": [], + "Einstein'ses": [], + "rubbernecksers": [], + "Sinai's": [], + "Panamas": [], + "murks": [], + "pacifism's": [], + "faddist'ses": [], + "prodigy's": [], + "sensitives's": [], + "rarebit": ["M", "S"], + "cigarette": ["M", "S"], + "Ava": ["M"], + "possesses": [], + "Andromeda's": [], + "Lapps's": [], + "Leslie": ["M"], + "defamatory": [], + "curt": ["R", "Y", "T", "P"], + "semidarkness": ["M"], + "breathtaking": ["Y"], + "smartness's": [], + "Lyra": ["M"], + "arboreal": [], + "tabooed": [], + "censoreding": [], + "sluggard's": [], + "swizz": [], + "celebrant": ["S", "M"], + "Chippendale": ["M"], + "repeatedly": [], + "cads's": [], + "swayback": ["M", "D"], + "weakly": [], + "senor's": [], + "Gilead": ["M"], + "Hausdorff's": [], + "interventionism's": [], + "innervatingen": [], + "centenaries's": [], + "appreciator": ["M", "S"], + "recruitersing": [], + "chervil": ["M"], + "blackmail'sed": [], + "downmarket": [], + "palmate": [], + "actuatingen": [], + "musicianship's": [], + "mousetrap's": [], + "audited": [], + "excess'ses": [], + "tracings": [], + "paste'sing": [], + "directorate": ["S", "M"], + "Luigi": ["M"], + "catatonia's": [], + "pieces's": [], + "nutmegs": [], + "Escher": ["M"], + "immolatingen": [], + "stonkered": [], + "gosh": [], + "evasiveness": ["M"], + "minuting": [], + "nubbins": [], + "unpremeditated": [], + "biggie's": [], + "busies": [], + "prehistorians": [], + "sanctionings": [], + "Danton's": [], + "vicunas": [], + "sparked": [], + "breakpoints": [], + "checklists": [], + "gableds": [], + "pedagogical": ["Y"], + "roaring's": [], + "Coulomb's": [], + "expostulations": [], + "Sabrina": ["M"], + "robotize": ["G", "D", "S"], + "berate": ["G", "D", "S"], + "regularizes": [], + "genial": ["F", "Y"], + "herrings": [], + "generality's": [], + "substructure": ["S", "M"], + "conscript": [], + "fracases": [], + "overdressing's": [], + "reflations": [], + "S": ["M", "N"], + "mountainside's": [], + "befuddles": [], + "preponderates": [], + "ascertained": [], + "carriages": [], + "succeeded": [], + "doorpost": ["S"], + "eremite": ["M", "S"], + "moodier": [], + "emerald": ["M", "S"], + "alderman": ["M"], + "nutmeg": ["S", "M"], + "yids": [], + "syllabubs": [], + "prettified": [], + "broadside'sing": [], + "policewoman": ["M"], + "chirpier": [], + "mastiffs": [], + "epiphany": ["S", "M"], + "sexier": [], + "life'sers": [], + "deep": ["S", "P", "X", "T", "M", "N", "R", "Y"], + "innovate": ["X", "D", "S", "G", "N", "V"], + "practiceds": [], + "satchel's": [], + "foreshortensing": [], + "stringeder": [], + "modernist's": [], + "collector": ["M", "S"], + "ghostliness": ["M"], + "vegetate": ["G", "N", "V", "D", "S"], + "consummatelying": [], + "demonologies's": [], + "sybaritic": [], + "Mellon": ["M"], + "noncriminal's": [], + "moneys": [], + "was": [], + "ranginged": [], + "disbursement's": [], + "puffeder": [], + "thievesing": [], + "sheave'sing": [], + "insinuator": ["S", "M"], + "nonresistance": ["M"], + "surf": ["M", "D", "R", "Z", "G", "S"], + "Coloradan": ["S", "M"], + "fencer": ["M"], + "soundtrack's": [], + "trainees's": [], + "jollification": ["S", "M"], + "Chimeras": [], + "disc's": [], + "dissemblers": [], + "frogmarch": ["G", "D", "S"], + "genitals's": [], + "hop's": [], + "directorship": ["S", "M"], + "bedevils": [], + "Sanford": ["M"], + "texture": ["M", "G", "D", "S"], + "seaweeds": [], + "expectorates": [], + "creels's": [], + "speediness's": [], + "nonnarcotics": [], + "whimsies": [], + "eradication": ["M"], + "embowering": [], + "Rushdie's": [], + "airfoil's": [], + "iconic": [], + "Purus's": [], + "exemplars": [], + "ravishment's": [], + "pate's": [], + "armlet's": [], + "neanderthals": [], + "specialist'ses": [], + "pedestrianizinged": [], + "Putnam": ["M"], + "sackfuls": [], + "yuan": ["M"], + "renovation": ["M"], + "Demetrius": ["M"], + "flamage": [], + "Psalter": ["M", "S"], + "wholes": [], + "smidgen'ses": [], + "shits": [], + "privater": [], + "spatters": [], + "phenomenal": ["Y"], + "accentual": [], + "abscissas's": [], + "guzzleder": [], + "ramblersing": [], + "stepdaughter's": [], + "Lottie's": [], + "sprinteder": [], + "census'sed": [], + "reputingable": [], + "declare": ["D", "R", "S", "Z", "G", "B"], + "auxiliary": ["S", "M"], + "subverting": [], + "swam": [], + "motivator": ["S", "M"], + "Kunming's": [], + "spool's": [], + "Haleakala's": [], + "Iceland'ser": [], + "huckstersing": [], + "pupa": ["M"], + "soapier": [], + "confabulations": [], + "passageways": [], + "ceders": [], + "clincher's": [], + "crampon": ["S", "M"], + "slower": [], + "meritoriousness's": [], + "estate": ["S", "M"], + "spurge": ["M"], + "medal": ["S", "M"], + "slue": ["M", "G", "D", "S"], + "oakum's": [], + "futures": [], + "hyperglycemia's": [], + "impoverishment": ["M"], + "Atlantic's": [], + "guilders": [], + "submarginal": [], + "sunrises": [], + "publicans": [], + "anglicizeds": [], + "astronomic": [], + "Hunter's": [], + "harridan": ["M", "S"], + "watersides": [], + "bronzed": [], + "protection": ["S", "M"], + "ashtray": ["S", "M"], + "auntie": ["S", "M"], + "Holder": ["M"], + "speckle": ["M", "G", "D", "S"], + "gales": [], + "clannishness": ["M"], + "newbies": [], + "stress'sed": [], + "jersey'ses": [], + "eddieds": [], + "appeasement's": [], + "Vader": ["M"], + "disseminating": [], + "mergesers": [], + "synapse'ses": [], + "extrovert'sed": [], + "abashedly": [], + "grossing's": [], + "goon": ["M", "S"], + "unrepack": [], + "Rosenzweig": ["M"], + "Perth's": [], + "castigates": [], + "gentrified": [], + "Kevin's": [], + "popgun's": [], + "abusiveliness": [], + "tambourine's": [], + "circumnavigationed": [], + "pastry": ["S", "M"], + "minim": ["S", "M"], + "narrator's": [], + "integratings": [], + "misfits's": [], + "Skippy": ["M"], + "ineptitude's": [], + "harebells": [], + "cosmopolitanism": ["M"], + "banana's": [], + "crimps's": [], + "PCs's": [], + "questioning's": [], + "ornateness": ["M"], + "accelerators's": [], + "ploweds": [], + "Caucasian's": [], + "brontosauruses": [], + "gliding": ["M"], + "glens": [], + "capacitance": ["M"], + "Witwatersrand": ["M"], + "gaucherness": [], + "vacation's": [], + "MW": [], + "utterances": [], + "subvert": ["S", "D", "G"], + "appalled": [], + "vitiation": ["M"], + "crabwise": [], + "annotative": [], + "swaddled": [], + "sukiyaki": ["M"], + "mariners": [], + "paraphrases's": [], + "depravities": [], + "coauthor's": [], + "plinth's": [], + "neuralgia": ["M"], + "zealotry": ["M"], + "Nickelodeon": ["M"], + "Blankenship's": [], + "predated": [], + "colorfastness": ["M"], + "intendeds": [], + "heraldry": ["M"], + "oaks": [], + "plateaueding": [], + "philodendrons": [], + "replay": [], + "beeswax's": [], + "overexposing": [], + "slider's": [], + "competesing": [], + "shiftlessnessly": [], + "Prado": ["M"], + "pulse's": [], + "ballerinas's": [], + "bridesmaid's": [], + "buckskin'ses": [], + "compile": ["D", "R", "S", "Z", "G"], + "arsenic's": [], + "appointee": ["S", "M"], + "scariest": [], + "Baldwins": [], + "sweetbrier's": [], + "inexorable": [], + "loading": [], + "tuna's": [], + "wingless": [], + "contraception's": [], + "phaseout's": [], + "detentions": [], + "tradeswoman's": [], + "mane": ["M", "D", "S"], + "lepta": [], + "tubule": ["M", "S"], + "anticipates": [], + "fatwas's": [], + "musicality": ["M"], + "execrably": [], + "hypermedia's": [], + "notables": [], + "Koestler's": [], + "svelter": [], + "Trent's": [], + "I's": [], + "scrounging": [], + "aimeding": [], + "innatenessly": [], + "xxi": [], + "rhododendron": ["S", "M"], + "monger": ["M", "D", "G", "S"], + "chinning": [], + "mobility's": [], + "contaminatesing": [], + "Deena": ["M"], + "neglected": [], + "pix": ["M"], + "innovates": [], + "language's": [], + "opportunism": ["M"], + "tetrahedron's": [], + "turncoat": ["S", "M"], + "stiffeninged": [], + "sponginess's": [], + "nexus'ses": [], + "Hephaestus": ["M"], + "Gwendolyn's": [], + "gall": ["M", "D", "G", "S"], + "communique": ["S", "M"], + "Stacie": ["M"], + "nonconformity's": [], + "maidenhead": ["S", "M"], + "planes": [], + "Athenians's": [], + "treblinged": [], + "yearns": [], + "banquet's": [], + "curator's": [], + "dockland": ["S"], + "gnarling": [], + "misaddress": ["D", "S", "G"], + "kickers": [], + "powerful": ["Y"], + "helluva": [], + "starlet": ["M", "S"], + "expansion": ["M"], + "boondoggleder": [], + "scampi": ["M"], + "documentation": ["S", "M"], + "stroboscope's": [], + "generics's": [], + "multiplication's": [], + "village's": [], + "go'ser": [], + "nincompoop": ["S", "M"], + "newlines": [], + "cadres": [], + "beep": ["S", "Z", "G", "M", "D", "R"], + "votary's": [], + "dockyard'ses": [], + "Miaplacidus's": [], + "reigning": [], + "preshrinkings": [], + "mercerize": ["G", "D", "S"], + "gyrated": [], + "blackmaileder": [], + "animosities": [], + "sheetsing": [], + "insulin's": [], + "powerlessly": [], + "whitetail's": [], + "chinks": [], + "lisp's": [], + "incipiently": [], + "parvenu'ses": [], + "deodorizer": ["M"], + "diversionsly": [], + "frilled": [], + "repelling": [], + "Thurman's": [], + "cockcrows": [], + "Maritza": ["M"], + "revelers": [], + "inventoried": [], + "blubberings": [], + "ended": [], + "accessorizeds": [], + "reprocession": [], + "disinclination": [], + "Scopes": ["M"], + "carpal'ses": [], + "Mel": ["M"], + "frontier'ses": [], + "sausage'ses": [], + "egotistical": ["Y"], + "pedicures": [], + "cranks": [], + "emulsions": [], + "Vanuatu's": [], + "kitsch": ["M"], + "fled": [], + "blanketeds": [], + "converge": [], + "gabbiest": [], + "crimps": [], + "chowed": [], + "monarchism's": [], + "creme": ["S", "M"], + "microdot's": [], + "mementos": [], + "rebelliousliness": [], + "bamboos's": [], + "razzeds": [], + "specials": [], + "smelters": [], + "monsoonal": [], + "bimbos": [], + "slatterns": [], + "implored": [], + "insecticide's": [], + "Alonzo's": [], + "whence": [], + "pragmatism": ["M"], + "Swazi": ["S", "M"], + "adaptation'ses": [], + "slopes's": [], + "shakeup's": [], + "Muse": ["M"], + "beadle's": [], + "Chandra": ["M"], + "leaping": [], + "tray's": [], + "mandrill": ["M", "S"], + "Helios": ["M"], + "douseds": [], + "behaviors": [], + "watchband's": [], + "equities's": [], + "cache's": [], + "stow": ["D", "G", "S"], + "forelimb'ses": [], + "peeves's": [], + "electroscopes's": [], + "Aguilar's": [], + "stovepipe": ["S", "M"], + "subordination": ["I", "M"], + "Sabina's": [], + "abodes": [], + "biennials": [], + "Fredericton": ["M"], + "exculpatesing": [], + "affronted": [], + "chimp'ses": [], + "fifteenths": [], + "unsorted": [], + "transecting": [], + "rowed": [], + "venturing": [], + "layette's": [], + "divides's": [], + "merchandise'sers": [], + "butty": ["S"], + "welfare": ["M"], + "urinary": [], + "bevels": [], + "agitator's": [], + "getaway's": [], + "beneficially": [], + "radiate": ["D", "S", "G", "N", "X"], + "pillory": ["G", "D", "S", "M"], + "statistics": [], + "kissoff's": [], + "graphology": ["M"], + "bickerer's": [], + "pinafores": [], + "Singapore's": [], + "mulberry": ["S", "M"], + "Roosevelt's": [], + "misbehaving": [], + "famous": ["I", "Y"], + "ramie": ["M"], + "superviseds": [], + "rifting's": [], + "furriers": [], + "guillotines's": [], + "shards": [], + "impishness": ["M"], + "starker": [], + "percolator": ["S", "M"], + "carousers": [], + "smash": ["M", "D", "R", "S", "Z", "G"], + "fetchers": [], + "inputted": [], + "geomagnetic": [], + "trademark": ["S", "G", "M", "D"], + "leafleting": [], + "fend": ["C", "D", "R", "Z", "G", "S"], + "electrification": ["M"], + "milkshakes's": [], + "Iroquois": ["M"], + "spiritually": [], + "garment'ses": [], + "dumbfound": ["S", "D", "G"], + "hardheartedness's": [], + "imbueds": [], + "palanquins's": [], + "alright": [], + "Sunnite": ["M", "S"], + "gyve": ["M", "G", "D", "S"], + "lipsticking": [], + "welteder": [], + "Oreo's": [], + "surfboard's": [], + "caddied": [], + "Judaism": ["M", "S"], + "dorm": ["M", "R", "Z", "S"], + "reinforcement": ["S", "M"], + "Chickasaw": ["M", "S"], + "spore": ["D", "S", "M", "G"], + "mousse": ["M", "G", "D", "S"], + "handbook's": [], + "filed": [], + "recorded": ["U"], + "nationhood's": [], + "erectness": ["M"], + "Anglo": ["M"], + "shivereding": [], + "lucratively": [], + "pupating": [], + "Am's": [], + "catbird": ["S", "M"], + "Icelandic's": [], + "need": ["M", "D", "S", "G"], + "perpetrated": [], + "nirvana": ["M"], + "boomerang'sed": [], + "Callisto's": [], + "shortbread": ["M"], + "nights's": [], + "bunkers's": [], + "spine's": [], + "joggled": [], + "wiglets": [], + "romp": ["M", "D", "R", "Z", "G", "S"], + "captiously": [], + "millponds's": [], + "maundering": [], + "eczema": ["M"], + "investigating": [], + "tediously": [], + "calibrated": [], + "airdrops's": [], + "concertizesing": [], + "spars": [], + "Koufax": ["M"], + "lard'sed": [], + "demarcation's": [], + "adventitiously": [], + "congregateds": [], + "flimsiness's": [], + "libations's": [], + "dosages": [], + "Galsworthy": ["M"], + "photoengraving's": [], + "Mindanao": ["M"], + "Urdu's": [], + "motion": ["K", "C", "M"], + "snowiest": [], + "confutation's": [], + "motivate": ["C", "D", "S", "G"], + "cavity": ["F", "S", "M"], + "lass": ["M", "S"], + "earsplitting": [], + "haplessness's": [], + "flophouse's": [], + "hash'sed": [], + "Mormonism": ["S", "M"], + "seventieth's": [], + "pureness's": [], + "waggled": [], + "funked": [], + "soldierlies": [], + "edging's": [], + "quarto'ses": [], + "including": [], + "rubberized": [], + "carriage": ["S", "M"], + "fireman": ["M"], + "castor": ["M", "S"], + "cablecast'ses": [], + "evangelically": [], + "acquainting": [], + "doughtier": [], + "nonmember'ses": [], + "croquettes": [], + "ptarmigan's": [], + "realizing": [], + "bandsmen": [], + "puntersing": [], + "aquaplaninged": [], + "scherzo": ["M", "S"], + "infelicity": [], + "sparky": ["R", "T"], + "strode": [], + "boilermakers": [], + "kingmakers": [], + "skeptics": [], + "Budweiser": ["M"], + "Holocene": ["M"], + "accordionist'ses": [], + "arcade's": [], + "unwilling": [], + "Hegira": ["M"], + "missilery": ["M"], + "weatherboarding": [], + "amalgamatingen": [], + "hunksers": [], + "sough's": [], + "ferociousness's": [], + "parchmenting": [], + "strengthener'ses": [], + "snare'sing": [], + "disproofs": [], + "oratorio's": [], + "frieds": [], + "groundskeeper": ["S"], + "overtakings": [], + "theremins's": [], + "screenplays's": [], + "hut's": [], + "invitational": ["S", "M"], + "pickeder": [], + "Serb": ["S", "M"], + "midst's": [], + "nauseatingly": [], + "restructuring": ["S", "M"], + "DAT's": [], + "uncial's": [], + "Samoyed": ["M"], + "groupingses": [], + "journalist": ["S", "M"], + "bordello": ["M", "S"], + "verbal's": [], + "Fabians": [], + "conflicting's": [], + "jumbo": ["S", "M"], + "barge": ["M", "G", "D", "S"], + "hypos": [], + "determinant": ["S", "M"], + "fens": [], + "security's": [], + "Leonard": ["M"], + "cleverness's": [], + "bemuses": [], + "zany's": [], + "bankruptsing": [], + "albeit": [], + "penitence": ["M"], + "Gilligan": ["M"], + "rubbernecker's": [], + "on": ["Y"], + "gut": ["S", "M"], + "caneder": [], + "Spanish's": [], + "Kuwaitis's": [], + "souping": [], + "genocide'ses": [], + "exurbia's": [], + "biochemist's": [], + "Bologna's": [], + "feud": ["M", "D", "G", "S"], + "barbell": ["M", "S"], + "insecticide": ["M", "S"], + "goaded": [], + "Camemberts": [], + "armpits": [], + "planing": [], + "sixths": [], + "sophistries": [], + "catalog's": [], + "daylight": ["M", "S"], + "jumped": [], + "mart'sen": [], + "spyware": ["M"], + "Bella": ["M"], + "scribal": [], + "radii": [], + "writhinged": [], + "malt's": [], + "emulations": [], + "bawdily": [], + "Sontag's": [], + "semipros": [], + "sparrowhawks": [], + "telegraphs": [], + "hansom'ses": [], + "weaned": [], + "contusion's": [], + "initiate'sing": [], + "monopolies's": [], + "thwacker": ["M"], + "avg": [], + "tonier": [], + "loner": ["M"], + "wrench": ["M", "D", "S", "G"], + "irretrievably": [], + "infects": [], + "dodo'ses": [], + "uncatalogued": [], + "croaked": [], + "MP": ["M"], + "swill'sed": [], + "Isfahan's": [], + "diacritics": [], + "scripting": [], + "cruiser": ["M"], + "nasalized": [], + "toughs": [], + "Mauritius": ["M"], + "Wilkerson's": [], + "desalinateds": [], + "Ni": ["M"], + "Noels's": [], + "centenarian": ["M", "S"], + "inorganic": [], + "duties's": [], + "reminiscinged": [], + "hardback'ses": [], + "litigating": [], + "lancets's": [], + "clumped": [], + "hermitage": ["M", "S"], + "wineglass'ses": [], + "anted": [], + "centerboards's": [], + "sewing's": [], + "invigilateds": [], + "abseils": [], + "togaeds": [], + "outfox": ["G", "D", "S"], + "interracial": [], + "stopples's": [], + "precipitant": ["M", "S"], + "awarding's": [], + "snoots": [], + "Jill's": [], + "kissoff": ["S", "M"], + "hastens": [], + "starts's": [], + "Rushdie": ["M"], + "clump's": [], + "Liston's": [], + "terror": ["S", "M"], + "unpublished": [], + "scrapyards": [], + "Lents's": [], + "coffeemakers": [], + "progeny's": [], + "Namibian'ses": [], + "stoops's": [], + "nit'ser": [], + "barbarous": ["Y"], + "trotted": [], + "doctoreding": [], + "tuneup's": [], + "degrees": [], + "sprawl'sed": [], + "smoothies": [], + "sequential": ["F", "Y"], + "noun's": [], + "African": ["S", "M"], + "Godspeeds's": [], + "Kory's": [], + "appreciator's": [], + "anchorites": [], + "obsessions's": [], + "2": ["n", "m"], + "Negros": ["M"], + "okapis's": [], + "hens": [], + "moussinged": [], + "prostitutioned": [], + "purgatories's": [], + "disillusionment's": [], + "Playboy": ["M"], + "equators": [], + "disillusioningment": [], + "battened": [], + "sploshesing": [], + "borrower": ["M"], + "tuba": ["M", "S"], + "Tagalog": ["S", "M"], + "patched": [], + "mopsers": [], + "threes's": [], + "Centigrade": [], + "Whistler's": [], + "slippery": ["P", "R", "T"], + "knowledge's": [], + "patrimonial": [], + "articulation": ["M"], + "fret": ["M", "S"], + "radios": [], + "Saar": ["M"], + "transgender": ["S"], + "hemorrhage'sing": [], + "Suleiman": ["M"], + "brie'sers": [], + "idled": [], + "tartest": [], + "Maldive'ses": [], + "gammon": ["M"], + "emitting": [], + "propitiateds": [], + "rationalization's": [], + "resistances": [], + "levelnesses": [], + "Gorey": ["M"], + "showcasinged": [], + "mobilize": ["C", "D", "S", "G"], + "contumelies": [], + "jamboree": ["M", "S"], + "sculler's": [], + "lubed": [], + "footrests": [], + "etiolated": [], + "insight": ["M", "S"], + "chord": ["M", "S"], + "germinate": ["G", "N", "D", "S"], + "twangeding": [], + "zestiest": [], + "bale'sers": [], + "nose's": [], + "stoutest": [], + "Osman": ["M"], + "choirmaster's": [], + "Dame": ["M", "N"], + "expiated": [], + "workstation's": [], + "Zulus": [], + "profligately": [], + "gerbil's": [], + "doughty": ["R", "T"], + "latrine's": [], + "Albion": ["M"], + "atonality's": [], + "ostensibly": [], + "bluebonnet": ["S", "M"], + "candidacies": [], + "eleven": ["S", "M", "H"], + "brunchesing": [], + "Rio": ["S", "M"], + "gusseted": [], + "allegorically": [], + "discard": [], + "beggar'sed": [], + "monarchist": ["M", "S"], + "Indra": ["M"], + "politics's": [], + "suite's": [], + "yearning": ["M"], + "pedestrian": ["S", "M"], + "clench": ["G", "M", "D", "S"], + "summit'ses": [], + "roofers": [], + "undervalue": ["D", "S", "G"], + "lordships": [], + "spinsters": [], + "feast": ["S", "M", "D", "R", "Z", "G"], + "cubist": ["S", "M"], + "Randi's": [], + "kneecapped": [], + "scones": [], + "forgot": [], + "intriguing": ["Y"], + "intuition": ["S"], + "gloomily": [], + "nepotist's": [], + "heyday's": [], + "civically": [], + "Shirley": ["M"], + "women": ["M"], + "Montague": ["M"], + "hoping": [], + "Icarus's": [], + "tansy": ["M"], + "berrylike": [], + "aughts": [], + "forbidding": ["Y", "S"], + "regretted": [], + "largeness": ["M"], + "outdrawings": [], + "prostrated": [], + "Venice": ["M"], + "Glaser's": [], + "animus's": [], + "novena'ses": [], + "testator's": [], + "amphitheater's": [], + "stilettos's": [], + "represent": ["G", "D", "S"], + "Caledonia's": [], + "tricepses": [], + "zoophyte": ["S", "M"], + "abscess's": [], + "stuffs": [], + "Mountie": ["M", "S"], + "accountsable": [], + "carbonatingen": [], + "renaissances": [], + "precautions": [], + "Menominee": ["M"], + "physical": ["M", "Y", "S"], + "widerness": [], + "Bunuel": ["M"], + "separatists": [], + "stipple": ["D", "S", "M", "G"], + "megalopolis'ses": [], + "tomahawk": ["S", "G", "M", "D"], + "empties's": [], + "cannibalization": ["M"], + "tusk'sed": [], + "impalas": [], + "nosediving": [], + "Pinatubo": ["M"], + "tension's": [], + "Coventry": ["S", "M"], + "Sadie": ["M"], + "dictateds": [], + "Reinhardt": ["M"], + "elatedly": [], + "circadian": [], + "appurtenance's": [], + "breadlines": [], + "professional's": [], + "merited": ["U"], + "wildcard's": [], + "Emory": ["M"], + "songbird": ["S", "M"], + "Gaborone's": [], + "purgersing": [], + "moilsing": [], + "salient's": [], + "tailsed": [], + "aren't": [], + "armature'ses": [], + "necktie": ["M", "S"], + "anathemas": [], + "Segre": ["M"], + "leisured": [], + "slapping": [], + "mini'ses": [], + "windjammer's": [], + "highly": [], + "root's": [], + "Centaurus's": [], + "impassable": [], + "repatriates": [], + "determinism": ["M"], + "desserts": [], + "stabbed": [], + "rousteding": [], + "loathsomeness's": [], + "buttonwood's": [], + "mace'ses": [], + "ambiguity": ["S", "M"], + "superhero's": [], + "pasha": ["S", "M"], + "intransitive": [], + "punchbag": ["S"], + "salvos": [], + "anchors": [], + "neurologists's": [], + "criticisms": [], + "clitoris": ["M", "S"], + "nauseous": ["P", "Y"], + "Forest'ser": [], + "bookbinding's": [], + "slantwise": [], + "castrationens": [], + "weight": ["M", "D", "S", "J", "G"], + "reclinersing": [], + "petrel'ses": [], + "tintings": [], + "Aphrodite": ["M"], + "thigh's": [], + "Cahokia's": [], + "outcrop'ses": [], + "tensionsness": [], + "filtrateds": [], + "dooryard's": [], + "case'sing": [], + "shill'sed": [], + "dedicate": ["A", "G", "D", "S"], + "Madagascans's": [], + "wipe's": [], + "Medellin's": [], + "Libreville's": [], + "alienatingen": [], + "dinner's": [], + "numeric": [], + "leaven's": [], + "nodding": [], + "pullback": ["M", "S"], + "paperhangers's": [], + "dozeden": [], + "roofings": [], + "locality": ["S", "M"], + "machineds": [], + "addicteds": [], + "renews": [], + "overvaluations": [], + "Taney's": [], + "franchised": [], + "crocheter": ["M"], + "cornrow'sed": [], + "obligationsing": [], + "speck's": [], + "finances": [], + "steelyards": [], + "cheapskates": [], + "barriers": [], + "bouts": [], + "furors's": [], + "emendations": [], + "pm": [], + "Pm's": [], + "hemoglobin's": [], + "coupe's": [], + "ballets's": [], + "Oswald's": [], + "megabit's": [], + "lesbianism": ["M"], + "reinforced": [], + "inebriateds": [], + "pericardia": [], + "hypochondriacs": [], + "overplayinged": [], + "eternalness's": [], + "grandeur": ["M"], + "calligraphy": ["M"], + "functioneding": [], + "Angolan'ses": [], + "lads": [], + "tow": ["S", "Z", "G", "M", "D", "R"], + "excommunication's": [], + "enemy": ["S", "M"], + "doorstepped": [], + "tarn": ["M", "S"], + "introits": [], + "skips": [], + "hydroxides": [], + "Tipperary's": [], + "dismay": ["S", "M", "D", "G"], + "crustily": [], + "Franny": ["M"], + "inhabitable": ["U"], + "algae": [], + "Corine's": [], + "overruns's": [], + "adjudicators's": [], + "chatlines": [], + "stiffliness": [], + "pronominal's": [], + "Marianas": ["M"], + "overstimulates": [], + "palmist": ["S", "M"], + "flashbacks's": [], + "paternoster'ses": [], + "overexercising": [], + "balloteding": [], + "waggery": ["S", "M"], + "address": ["A", "G", "D", "S"], + "hominoid": ["S"], + "leukemics": [], + "destined": [], + "misinterpretation's": [], + "skylarks": [], + "impurities's": [], + "hotplate": ["S", "M"], + "cricket's": [], + "sprawlings": [], + "relight": [], + "jejune": [], + "taser": ["G", "M", "D", "S"], + "gyve'sing": [], + "rancidity's": [], + "Mameluke's": [], + "Yugo's": [], + "requites": [], + "hangup's": [], + "riffed": [], + "votes": [], + "Adelaide's": [], + "veejay": ["S", "M"], + "unsearchable": [], + "Unitas's": [], + "apportionment": ["A", "M"], + "maelstroms": [], + "Brno": ["M"], + "parroted": [], + "proselytes": [], + "sears": [], + "underwhelmed": [], + "metabolizeds": [], + "envelopers": [], + "Hollywood": ["M"], + "dammit": [], + "pillages": [], + "Mojaves's": [], + "invitees's": [], + "nasturtiums's": [], + "sisterhood's": [], + "tabletops": [], + "legatos": [], + "bartender": ["S", "M"], + "hosinged": [], + "legitimatelying": [], + "Manuela's": [], + "azaleas": [], + "techie": ["S"], + "congresspersons": [], + "characterless": [], + "commensurable": [], + "UPI's": [], + "Rolvaag's": [], + "abalones's": [], + "ulna's": [], + "gourmet's": [], + "victims": [], + "setback": ["M", "S"], + "pleadsings": [], + "calibrators's": [], + "devoureding": [], + "Castaneda": ["M"], + "spirituallies": [], + "amercement's": [], + "avouchesing": [], + "embalminged": [], + "jumpiness's": [], + "secularizing": [], + "testinesser": [], + "closure's": [], + "leakiness": ["M"], + "checker": ["M", "D", "G", "S"], + "grouser's": [], + "Siva": ["M"], + "lunatics's": [], + "Jainism's": [], + "armature's": [], + "naughtiest": [], + "chert's": [], + "gaminess": ["M"], + "imputed": [], + "Yorkshire's": [], + "dailiness": ["M"], + "proficient's": [], + "perms": [], + "ruttier": [], + "courtliness's": [], + "patio's": [], + "recenter": [], + "teammate's": [], + "Smirnoff's": [], + "synovial": [], + "rephrase": [], + "seer's": [], + "cocoons": [], + "electrocutionsing": [], + "chinchillas": [], + "coypu": ["S", "M"], + "listed": ["U"], + "chronicler's": [], + "Donnell's": [], + "rueds": [], + "equivocations": [], + "center's": [], + "shockeder": [], + "freeloadeder": [], + "tarragon": ["S", "M"], + "slaveholder'ses": [], + "radiotelephone": ["M", "S"], + "Albireo's": [], + "demarcates": [], + "relented": [], + "prolix": ["Y"], + "anus": ["M", "S"], + "overcrowded": [], + "drive": ["R", "S", "M", "Z", "G", "J"], + "Mugabe's": [], + "Anselm": ["M"], + "pomade": ["D", "S", "M", "G"], + "hundredth": ["M"], + "royal'sly": [], + "crack's": [], + "Israeli": ["S", "M"], + "befuddlement": ["M"], + "Pansy": ["M"], + "persuasions": [], + "tangential": ["Y"], + "Allegheny": ["S", "M"], + "congress": ["M", "S"], + "bowsprits": [], + "dehydrator": ["S", "M"], + "zeppelin": ["M", "S"], + "farce": ["S", "M"], + "simpletons": [], + "Sabbath": ["M"], + "jalopies": [], + "immensities": [], + "stunts": [], + "sugarcoats": [], + "camisole's": [], + "ode": ["S", "M"], + "inebriatingen": [], + "banknote's": [], + "Rigoberto": ["M"], + "bishopric": ["S", "M"], + "painkiller's": [], + "soot": ["M"], + "commute": ["B", "D", "R", "S", "M", "Z", "G"], + "bickererers": [], + "Shenandoah's": [], + "concealablement": [], + "Australasia": ["M"], + "catheter": ["S", "M"], + "sorrels's": [], + "pant'sed": [], + "stand's": [], + "poker": ["M"], + "Jordanians": [], + "electrician": ["M", "S"], + "vagarious": [], + "gorgons's": [], + "Sheila": ["M"], + "Genoa": ["S", "M"], + "moralizeds": [], + "Orkney": ["M"], + "heartlessness": ["M"], + "scummier": [], + "cigarettes": [], + "outranks": [], + "livability's": [], + "damping's": [], + "motivators": [], + "arras'ses": [], + "rocket'sed": [], + "novelizations": [], + "salutatorians": [], + "meteorite": ["S", "M"], + "lacinged": [], + "paginatingen": [], + "annotatingen": [], + "carbonates": [], + "divisiveness": ["M"], + "Jupiter's": [], + "returnees": [], + "redeem": ["R", "Z", "B"], + "gouging": [], + "casings": [], + "woodiness": ["M"], + "equerries": [], + "contestants": [], + "referee": ["D", "S", "M"], + "courses": [], + "ensured": [], + "bootlegger's": [], + "clangor": ["M"], + "migrated": [], + "roadrunners's": [], + "shrugs": [], + "viscosity's": [], + "acrimoniousness": ["M"], + "amnion": ["M", "S"], + "poke's": [], + "spookeding": [], + "gripes": [], + "Horatio": ["M"], + "marque": ["M", "S"], + "doves": [], + "Deimos": ["M"], + "Yerkes's": [], + "underrateds": [], + "sundown's": [], + "compensateds": [], + "apes": [], + "tiredly": [], + "suborn": ["S", "G", "D"], + "Slashdot's": [], + "manifestations": [], + "whistler's": [], + "marzipan": ["M"], + "comprehensions": [], + "monkeyshine's": [], + "idol": ["M", "S"], + "rhyme's": [], + "reprocess": [], + "Felicity's": [], + "deluges": [], + "drawstring'ses": [], + "paratrooperers": [], + "cabooses": [], + "spatting": [], + "stressesing": [], + "Davenport's": [], + "plights's": [], + "censurable": [], + "stoves's": [], + "dermis's": [], + "roadkill": ["M"], + "flack's": [], + "suitably": ["U"], + "appointive": [], + "millage": ["M"], + "telegraphically": [], + "extensible": [], + "solvency": ["I", "M"], + "implementations's": [], + "rocketing": [], + "stagings": [], + "larcenists": [], + "singletons's": [], + "scrawniness's": [], + "lifespan": ["S"], + "foreboded": [], + "secants": [], + "master": ["A", "D", "G", "S"], + "luminary": ["S", "M"], + "slag's": [], + "futurist'ses": [], + "Irishman": ["M"], + "Schuylkill's": [], + "siliceous": [], + "previsions": [], + "speaking": [], + "reenlist": [], + "kayak's": [], + "asseveratingen": [], + "repertory's": [], + "clay's": [], + "wastebasket'ses": [], + "colored's": [], + "crinkleds": [], + "victor": ["M", "S"], + "copula": ["S", "M"], + "furl's": [], + "uniforms's": [], + "breederers": [], + "lineman's": [], + "Mohammad": ["M"], + "guanine's": [], + "pantheist": ["S", "M"], + "concentrates's": [], + "burrowed": [], + "safflower's": [], + "reel": ["U", "G", "D", "S"], + "misuse's": [], + "Mar's": [], + "duster": ["M"], + "inhibitors's": [], + "quadrenniums": [], + "assumptions's": [], + "dumperers": [], + "payment's": [], + "doubt's": [], + "bucolic's": [], + "starter'ses": [], + "parlay's": [], + "syringe": ["D", "S", "M", "G"], + "memoirs": [], + "cleverly": [], + "diphthongs's": [], + "roughhoused": [], + "Rottweiler": ["M"], + "Neptune's": [], + "vacates": [], + "misplay": ["G", "M", "D", "S"], + "clasped": [], + "accoutered": [], + "tessellates": [], + "flashguns's": [], + "mewsing": [], + "longhorn": ["M", "S"], + "referenceds": [], + "bucktoothed": [], + "immortally": [], + "onyx": ["M", "S"], + "flouted": [], + "bond'sed": [], + "Tanzanian's": [], + "Floyd": ["M"], + "pericarditis": [], + "cartoon'sed": [], + "underscores": [], + "squeaker's": [], + "luckeds": [], + "uninstallersing": [], + "pronuclear": [], + "attract": ["S", "G", "V", "D", "B"], + "Appleseed": ["M"], + "Yggdrasil's": [], + "encode": ["D", "R", "S", "Z", "G"], + "buffer": ["S", "M", "D", "G"], + "congaing": [], + "fern'ses": [], + "sentimentalized": [], + "webinar's": [], + "fewness": ["M"], + "policemen": [], + "hazingings": [], + "yips": [], + "carpeder": [], + "liturgies": [], + "full": ["M", "D", "R", "Z", "T", "G", "S", "P"], + "couture": ["M"], + "intimately": [], + "endives": [], + "radiance's": [], + "draggiest": [], + "upgradeds": [], + "teacakes": [], + "botulism's": [], + "snort'sed": [], + "lieu": ["M"], + "ink": ["M", "D"], + "transporters": [], + "hieroglyph": ["M"], + "tollway": ["S", "M"], + "waste's": [], + "cover": ["A", "E", "U", "G", "D", "S"], + "centers's": [], + "sinew'ses": [], + "wheel's": [], + "annulments's": [], + "bedraggling": [], + "tormented": [], + "scuttle'sing": [], + "raggederly": [], + "heliotrope's": [], + "dolorously": [], + "obtrusively": [], + "aggregatesens": [], + "hole's": [], + "rustled": [], + "Hezekiah's": [], + "retrench": [], + "freebie's": [], + "mantillas's": [], + "vengeful": ["A", "Y"], + "insider": ["M"], + "chanceds": [], + "benchmarks": [], + "undertakings": [], + "hint's": [], + "serenerness": [], + "Gustav": ["M"], + "hatchbacks": [], + "Anabaptist": ["M"], + "Ximenes": ["M"], + "gratis": [], + "chancellery's": [], + "nuzzles's": [], + "Guadeloupe's": [], + "zealousliness": [], + "booking's": [], + "whisks's": [], + "laird": ["S", "M"], + "Southeast": ["M", "S"], + "newcomers": [], + "nabob": ["S", "M"], + "Francesca's": [], + "herbs": [], + "bridal": ["S", "M"], + "ferreted": [], + "secrets": [], + "wages": [], + "straightsness": [], + "billoweds": [], + "thesaurus's": [], + "fleshiest": [], + "crankily": [], + "tax's": [], + "corruption'ses": [], + "claque'ses": [], + "yaws": ["M"], + "handguns's": [], + "farmerers": [], + "profiteers": [], + "articulating": [], + "Conrad's": [], + "abjectliness": [], + "coming's": [], + "jumping": [], + "loused": [], + "deliquesced": [], + "hijabs": [], + "polyunsaturates": [], + "Synge": ["M"], + "toughly": [], + "royal's": [], + "rehabilitate": ["G", "N", "V", "D", "S"], + "autopilot's": [], + "percussionist'ses": [], + "Eli's": [], + "doubtlessly": [], + "girly": [], + "detente's": [], + "asphodels's": [], + "valuate": ["D", "S", "G"], + "irreverent": ["Y"], + "graveyard's": [], + "tatterdemalion": ["M", "S"], + "sensationalizeds": [], + "cruisers": [], + "giveaway'ses": [], + "winkle": ["D", "S", "M", "G"], + "prettifying": [], + "hippopotamus'ses": [], + "bakeries": [], + "elaborateness": ["M"], + "fattiness": ["M"], + "Tutankhamen's": [], + "forecastings": [], + "tighterly": [], + "campaignerers": [], + "scourged": [], + "thew'ses": [], + "energizers": [], + "Nice's": [], + "fretfulliness": [], + "wildcatters": [], + "renter": ["M"], + "helps": [], + "bossy": ["R", "T", "P"], + "capablers": [], + "mustard": ["M"], + "swearing": [], + "cobweb's": [], + "egregiousness": ["M"], + "Leland's": [], + "maintainable": [], + "pontificate": ["D", "S", "M", "G"], + "flattery's": [], + "fiefdom's": [], + "tail": ["A", "C", "S", "D", "M", "G"], + "signboards": [], + "kvetcher": ["M"], + "Heidegger's": [], + "Malplaquet": ["M"], + "arraignments's": [], + "pastiness's": [], + "compacts": [], + "warmer": ["M"], + "Sikhs": [], + "obsolescent": [], + "suns": [], + "stocking": ["S", "M"], + "agglomerationens": [], + "conflate": ["X", "D", "S", "G", "N"], + "cosign": ["Z", "G", "S", "D", "R"], + "flamboyantly": [], + "theories's": [], + "medallion": ["S", "M"], + "lopinged": [], + "oversimplificationing": [], + "steepening": [], + "bumming": [], + "terry": ["R", "M", "Z"], + "gambles": [], + "waterfowl's": [], + "fastens": [], + "oaks's": [], + "cheesing": [], + "Tungus's": [], + "tremolos": [], + "royalty": ["S", "M"], + "incrementalist": ["S", "M"], + "Sibelius": ["M"], + "coffer": ["S", "M"], + "unreasoning": [], + "opacity": ["M"], + "compressor's": [], + "damageable": [], + "horseplay's": [], + "brewer's": [], + "dogfight's": [], + "bogosity": [], + "loin": ["M", "S"], + "poisonsings": [], + "kneeds": [], + "encryptings": [], + "educationists": [], + "bestowal's": [], + "linguist": ["S", "M"], + "arbitraments": [], + "Pilgrim": ["S", "M"], + "populate": ["A", "C", "G", "D", "S"], + "camaraderie's": [], + "burble's": [], + "neediness's": [], + "spiral's": [], + "frailly": [], + "tropisms": [], + "terribleness": ["M"], + "muddily": [], + "Tertiary's": [], + "microfilmeds": [], + "unstressed": [], + "bloodiest": [], + "Zorro's": [], + "cleat's": [], + "brokerages": [], + "harpsichordists": [], + "inflow": ["S", "M"], + "tunnels": [], + "brasseries": [], + "squalider": [], + "baseman": ["M"], + "cement'sed": [], + "queasier": [], + "Wyatt's": [], + "journalism": ["M"], + "hush's": [], + "Stoics's": [], + "concordance's": [], + "bulimic": ["S", "M"], + "elvers's": [], + "Taejon's": [], + "likeness": ["U", "M"], + "Eisenhower's": [], + "balancing": [], + "loitering": ["M"], + "geek's": [], + "acquisition": ["M", "S"], + "mileposts": [], + "napoleon": ["S", "M"], + "submerged": [], + "postsings": [], + "piled": [], + "goddess's": [], + "o'er": [], + "attics's": [], + "internationalists": [], + "untreated": [], + "imprisonments": [], + "lodestar'ses": [], + "gallium": ["M"], + "waldos": [], + "interrelatingen": [], + "nookie": [], + "ares": [], + "actions's": [], + "godparent": ["S", "M"], + "appliances's": [], + "O'Toole": ["M"], + "protrusile": [], + "picot": ["S", "M"], + "whups": [], + "Jenna": ["M"], + "wrings": [], + "paralyzing": ["Y"], + "spending's": [], + "Cecelia's": [], + "backup'ses": [], + "finalists's": [], + "subject's": [], + "answereding": [], + "Jinan's": [], + "Hartford's": [], + "trivializing": [], + "embargo'sed": [], + "hairdryer'ses": [], + "longhorn's": [], + "Jones's": [], + "ravelsing": [], + "Sharlene's": [], + "misjudging": [], + "heaped": [], + "disease": [], + "loophole": ["M", "S"], + "calyx'ses": [], + "Hf": ["M"], + "collaboratesens": [], + "Er": ["M"], + "glossaries": [], + "chortler": ["M"], + "voraciously": [], + "bite's": [], + "consort": [], + "halfwits": [], + "arenas": [], + "overdecorated": [], + "bountifulness": ["M"], + "scatters": [], + "cyberspace's": [], + "prodigality": ["M"], + "Swedenborg": ["M"], + "wishlist's": [], + "cabby": ["S", "M"], + "waffle": ["M", "Z", "G", "D", "R", "S"], + "Farsi's": [], + "waterboardings": [], + "treadling": [], + "embers's": [], + "Watson": ["M"], + "staked": [], + "wigeon's": [], + "cluck's": [], + "agreement's": [], + "smartwatches": [], + "slumbered": [], + "airspace": ["M"], + "Ito": ["M"], + "robin": ["M", "S"], + "Honorable": [], + "evangelicals": [], + "punter's": [], + "vanguard": ["M", "S"], + "rhapsodizing": [], + "repurchased": [], + "frequenting": [], + "dulcet": [], + "methadone's": [], + "stores": [], + "call's": [], + "reliably": ["U"], + "organic": ["S", "M"], + "meter": ["G", "M", "D"], + "unscripted": [], + "indirectness": [], + "bringer": ["M"], + "trudges": [], + "balustrade'ses": [], + "gild": ["M", "D", "R", "Z", "G", "S"], + "catechist": ["S", "M"], + "hijacker's": [], + "divorcesment": [], + "orchestrated": [], + "Taurus's": [], + "painkiller'ses": [], + "pomades": [], + "opiate's": [], + "lyceum's": [], + "speedier": [], + "mamma's": [], + "argument's": [], + "airshow": ["S"], + "mute'sly": [], + "hiding's": [], + "gypsy": ["S", "M"], + "intoxicated": [], + "reinvention": [], + "Alfreda": ["M"], + "Sykes's": [], + "Arapahos": [], + "Siegfried": ["M"], + "dustbins": [], + "equipoise": ["M"], + "lariat's": [], + "soprano'ses": [], + "discomfiture's": [], + "grandfatheredly": [], + "beverages": [], + "sightseeing's": [], + "unseemliness": [], + "matchbox": ["M", "S"], + "masterminds": [], + "tonsures": [], + "Benito's": [], + "broker'sed": [], + "loanword'ses": [], + "fags's": [], + "keelhauls": [], + "smoked": [], + "tiding": [], + "compartmental": [], + "pulpit": ["S", "M"], + "lunacy": ["S", "M"], + "laurel": ["S", "M"], + "lovelies": [], + "ontology": ["M"], + "arminged": [], + "baroque's": [], + "implicitly": [], + "judder": ["G", "D", "S"], + "Lynch's": [], + "joiner's": [], + "pegboard": ["M", "S"], + "beasts": [], + "mainsail'ses": [], + "cheesecloth's": [], + "boars": [], + "midfielderers": [], + "prurient": ["Y"], + "Mirach's": [], + "schoolhouses's": [], + "dumpster": ["S", "M"], + "derivation's": [], + "interposed": [], + "dozes": [], + "Oklahoma's": [], + "swamp'sed": [], + "reducersing": [], + "OKs": [], + "obscurantists": [], + "sleeper": ["M"], + "Nobelist": ["M", "S"], + "aglow": [], + "babble": ["M", "Z", "G", "D", "R", "S"], + "tranquility": ["M"], + "expose": ["D", "S", "M", "G"], + "Bhutto's": [], + "couplings's": [], + "oscillators": [], + "bluffs": [], + "shitload": ["!"], + "compensatingen": [], + "Macbeth": ["M"], + "photogenically": [], + "comeliest": [], + "valence": ["M", "S"], + "eunuch's": [], + "roisterers": [], + "Sicily's": [], + "overpower": ["S", "D", "G"], + "interactively": [], + "steeple": ["M", "S"], + "anesthesia": ["M"], + "superlatively": [], + "impulsiveness": ["M"], + "plight": ["S", "M", "D", "G"], + "deliberateness's": [], + "palomino's": [], + "katakana": [], + "deadlines": [], + "portcullis's": [], + "ultra": ["S", "M"], + "murkiest": [], + "own": ["E", "S", "G", "D"], + "questionnaires's": [], + "manifolded": [], + "schusses": [], + "illustration": ["M"], + "encrypt": ["D", "G", "S"], + "motherhood's": [], + "squinted": [], + "senselessnessly": [], + "handpick": ["G", "D", "S"], + "voteds": [], + "imperfectness": ["M"], + "Gap": ["M"], + "sisterliness": ["M"], + "orphanage'ses": [], + "Mongolians's": [], + "conquersed": [], + "cogitateds": [], + "PASCAL": [], + "personalized": [], + "accrual's": [], + "ordinals": [], + "imaginative": ["U", "Y"], + "faience's": [], + "queried": [], + "encysted": [], + "praises's": [], + "ANSIs": [], + "shoemaker's": [], + "calisthenics": ["M"], + "overcompensatingen": [], + "messenger": ["S", "M"], + "chrysalis's": [], + "ninths": [], + "cascade'sing": [], + "dissatisfy": [], + "citron": ["M", "S"], + "modems": [], + "envoy's": [], + "stereotypes": [], + "vilenesser": [], + "albatross'ses": [], + "opportunely": [], + "hills": [], + "topdressings": [], + "socialization": ["M"], + "fruitcake'ses": [], + "effortlessness's": [], + "amphorae": [], + "shock": ["Z", "G", "M", "D", "R", "S"], + "spearfishing": [], + "smootheder": [], + "sucklingsing": [], + "voucher's": [], + "diktat": ["S"], + "crosiers": [], + "bassoonist's": [], + "sociability's": [], + "typography": ["M"], + "bonnet": ["M", "S"], + "guttural'ses": [], + "Katina's": [], + "scrubber": ["S", "M"], + "craw'ses": [], + "violoncellists": [], + "plushier": [], + "inky": ["R", "T", "P"], + "omnivorousness's": [], + "porgies": [], + "Cpl": [], + "girl": ["M", "S"], + "apparel's": [], + "valleys's": [], + "emanated": [], + "clanswoman": [], + "opacity's": [], + "raptness's": [], + "extravaganza's": [], + "altimeter": ["M", "S"], + "transoceanic": [], + "Alleghenies's": [], + "politicking": ["M"], + "Ashmolean": ["M"], + "dependencies's": [], + "canonizations": [], + "silverware's": [], + "shamanism": [], + "meretricious": ["Y", "P"], + "sunbathing's": [], + "damperly": [], + "balalaika": ["M", "S"], + "gyration's": [], + "enshroud": ["D", "G", "S"], + "thorax": ["M", "S"], + "fatty's": [], + "trample": ["D", "R", "S", "M", "Z", "G"], + "pastorates": [], + "Popeye": ["M"], + "hock'sed": [], + "banks": [], + "Westerns": [], + "maturate": ["G", "N", "D", "S"], + "chaotic": [], + "nausea's": [], + "suctioneding": [], + "cynosure'ses": [], + "paraded": [], + "industries": [], + "putt's": [], + "onlookers": [], + "wanness's": [], + "nightlight": ["S"], + "officiousness's": [], + "caravan": ["S", "M"], + "alphabetizersing": [], + "trickleds": [], + "Hf's": [], + "keyboardeder": [], + "bistro's": [], + "trapeziums": [], + "generalization'ses": [], + "Hazel": ["M"], + "stranglers": [], + "walkaway": ["M", "S"], + "punierness": [], + "foothill'ses": [], + "eyelash'ses": [], + "prezzies": [], + "Pusey": ["M"], + "Linotype": ["M"], + "rhinoceroses": [], + "indexer's": [], + "imprecates": [], + "dustcarts": [], + "workbenches": [], + "exhibition's": [], + "strapless": ["M", "S"], + "teems": [], + "recollection": [], + "spellingses": [], + "seaweed": ["M", "S"], + "ELF's": [], + "discreditably": [], + "excoriate": ["D", "S", "G", "N", "X"], + "mysteriousness": ["M"], + "Royal's": [], + "tardier": [], + "attest": ["S", "D", "G"], + "Chandigarh's": [], + "grads": [], + "sleeveless": [], + "shutterbug's": [], + "appropriator": ["S", "M"], + "housemistress": ["S"], + "aloha": ["M", "S"], + "propensities": [], + "matricide'ses": [], + "Interpol": ["M"], + "cabinets": [], + "diagnostically": [], + "Lorenzo": ["M"], + "administratingen": [], + "podium's": [], + "galumphing": [], + "forges's": [], + "shrewdly": [], + "inebriate": ["M", "G", "N", "D", "S"], + "mads": [], + "windbreakers": [], + "Messerschmidt's": [], + "blusters": [], + "hallucinatingen": [], + "Clara's": [], + "averted": [], + "Alaskan": ["M", "S"], + "pigeon's": [], + "march": ["Z", "G", "M", "D", "R", "S"], + "cassavas": [], + "cohesion": ["M"], + "Ira": ["M"], + "desiccant's": [], + "athlete'ses": [], + "evocations": [], + "rhetorically": [], + "optimize": ["D", "R", "S", "G"], + "Tuareg": ["M"], + "dishware": ["M"], + "doings": [], + "Tartary's": [], + "systolic": [], + "conferred": [], + "dentsing": [], + "jeremiad": ["M", "S"], + "vandalism": ["M"], + "vignette": ["D", "S", "M", "G"], + "OT": [], + "enumerations": [], + "slop": ["M", "D", "G", "S"], + "microfiber'ses": [], + "whoever": [], + "spacious": ["Y", "P"], + "spar's": [], + "soberer": [], + "chink's": [], + "conjure": ["D", "R", "S", "Z", "G"], + "jaundicing": [], + "rethinking": [], + "tiff'sed": [], + "gars": [], + "fanatics": [], + "newtons": [], + "pluckiness's": [], + "mocking": ["Y"], + "arks": [], + "sixfold": [], + "deifieds": [], + "segue": ["M", "G", "D", "S"], + "cools": [], + "prognosticating": [], + "Shijiazhuang's": [], + "Winston's": [], + "conduit's": [], + "all's": [], + "widens": [], + "directionless": [], + "whipsawed": [], + "protector'ses": [], + "chinchilla'ses": [], + "touchstones": [], + "Barron": ["M"], + "thrillersing": [], + "Boeotian": ["M"], + "colognes": [], + "Leila": ["M"], + "Urquhart": ["M"], + "nostril's": [], + "jasper's": [], + "achieve": ["B", "L", "Z", "G", "D", "R", "S"], + "affairs": [], + "halfway": [], + "botanists's": [], + "finish's": [], + "dicta": [], + "regulated": ["U"], + "afterers": [], + "biochemist": ["M", "S"], + "korma": [], + "tarteder": [], + "overeager": [], + "bloodier": [], + "dampnessens": [], + "shrub's": [], + "solderers": [], + "disaster": [], + "conical": ["Y"], + "slat's": [], + "unidirectional": [], + "Hammurabi": ["M"], + "Hipparchus's": [], + "brokenhearted": ["Y"], + "labeling": [], + "proclivity's": [], + "picnickers": [], + "annotating": [], + "conformists": [], + "subculture": ["M", "S"], + "canola's": [], + "squeamish": ["P", "Y"], + "cragginess's": [], + "acidifies": [], + "shrift": ["M"], + "Easts": [], + "Scheat's": [], + "benefices": [], + "Carnap's": [], + "descendants": [], + "Avior": ["M"], + "rejoin": [], + "simplicity": ["M"], + "meagerness's": [], + "finisheds": [], + "typescript'ses": [], + "yeastiest": [], + "multitasking's": [], + "indulgence's": [], + "erratum's": [], + "distal": ["Y"], + "forage'sers": [], + "cannelloni": ["M"], + "returnables": [], + "persuasions's": [], + "brookeding": [], + "poops": [], + "systole": ["S", "M"], + "learners": [], + "microscope": ["S", "M"], + "parksing": [], + "crashing": [], + "flimsiness": ["M"], + "memorized": [], + "dentally": [], + "palindrome'ses": [], + "sips": [], + "averageds": [], + "wetly": [], + "attributes's": [], + "Thucydides's": [], + "blacken": ["D", "G"], + "mortifies": [], + "starring": [], + "dramatists": [], + "philander": ["Z", "G", "D", "R", "S"], + "curvy": ["R", "T"], + "lamprey'ses": [], + "asthmatic's": [], + "quarterstaff": ["M"], + "Carnap": ["M"], + "Nichiren's": [], + "competence": ["I", "M"], + "vulcanize": ["G", "D", "S"], + "sorcerers": [], + "elusiveness's": [], + "inveiglers": [], + "sprinkling's": [], + "quandary's": [], + "scab's": [], + "propelling": [], + "recidivists": [], + "pederast": ["M", "S"], + "cursedly": [], + "graphic's": [], + "incisor'ses": [], + "upchucked": [], + "soundly": [], + "motocross's": [], + "bantams": [], + "Belgian's": [], + "spins": [], + "zeolites": [], + "senselessness": ["M"], + "caveder": [], + "cater": ["Z", "G", "J", "D", "R", "S"], + "ecumenicism's": [], + "tatami's": [], + "xv": [], + "hopefully": [], + "Ricky's": [], + "homilies": [], + "popularizes": [], + "intemperance": [], + "tortoiseshells's": [], + "clutch'sed": [], + "Louisianan's": [], + "shoe's": [], + "womanizersing": [], + "Manama's": [], + "refutersing": [], + "barbarisms": [], + "hoarsely": [], + "laundryman": ["M"], + "caterwaul'sed": [], + "revue's": [], + "demand'sed": [], + "polyester": ["M", "S"], + "retributive": [], + "detestable": [], + "roundly": [], + "power's": [], + "shipmates's": [], + "netbook's": [], + "predigesteds": [], + "decking's": [], + "twofold": [], + "brocades": [], + "cattily": [], + "secy": [], + "Liechtenstein's": [], + "bumptiously": [], + "pieced": [], + "talkie": ["R", "S", "M", "T"], + "assignment": ["A", "M", "S"], + "meatpacking's": [], + "gypsy's": [], + "flexibly": ["I"], + "zingeder": [], + "local'sly": [], + "lasso'sed": [], + "oafish": ["P", "Y"], + "kiloliter": ["M", "S"], + "spoonerism": ["M", "S"], + "Formica": ["M", "S"], + "rueful": ["P", "Y"], + "Kewpie's": [], + "owlet's": [], + "guying": [], + "parallelism": ["M", "S"], + "birdseed's": [], + "knucklehead'ses": [], + "hamstrung": [], + "conceptual": ["Y"], + "cohesion's": [], + "Messiahs": [], + "flirtatiousness": ["M"], + "merman": ["M"], + "res's": [], + "mildews": [], + "renowned": [], + "baptism's": [], + "historian'ses": [], + "FM": ["S", "M"], + "Dickerson's": [], + "slogged": [], + "micron'ses": [], + "modify": ["D", "R", "S", "X", "Z", "G", "N"], + "brusquerness": [], + "sculptor's": [], + "Trujillo": ["M"], + "tramped": [], + "UHF's": [], + "penguin": ["M", "S"], + "hydrofoil'ses": [], + "cabin'ses": [], + "brevity": ["M"], + "apostate": ["S", "M"], + "calcimining": [], + "peppercorn": ["S", "M"], + "McLaughlin": ["M"], + "countenance's": [], + "exploited": ["U"], + "guillotined": [], + "restroom's": [], + "Nike's": [], + "upshot": ["S", "M"], + "soupy": ["R", "T"], + "anesthesiology's": [], + "mullahs": [], + "Michigan's": [], + "cottagersing": [], + "Kossuth's": [], + "swath's": [], + "rightsizing": [], + "Dominican": ["M", "S"], + "institutingen": [], + "Landry's": [], + "overtook": [], + "telephonic": [], + "handiwork's": [], + "chickpea": ["S", "M"], + "congratulation": ["M"], + "baize's": [], + "Lagrangian's": [], + "underwrites": [], + "contagiously": [], + "ogre'ses": [], + "indict": ["G", "D", "S", "B", "L"], + "spammers": [], + "statistician": ["S", "M"], + "rollerblading": [], + "pearling": [], + "opcodes": [], + "tiddler": ["S"], + "cowhands": [], + "golferers": [], + "destructeds": [], + "expediencies": [], + "initiatingen": [], + "larboards": [], + "cucumber's": [], + "episcopate": ["M"], + "openers": [], + "asylums's": [], + "Giza's": [], + "creasing's": [], + "hall": ["M", "S"], + "executrix's": [], + "gaudiest": [], + "Laocoon": ["M"], + "fusillade": ["M", "S"], + "rain": ["G", "M", "D", "S"], + "lied'ser": [], + "spelunker": ["M", "S"], + "greediness": ["M"], + "pervasively": [], + "eatsen": [], + "formalists": [], + "ptomaine": ["S", "M"], + "plug": ["U", "S"], + "obis's": [], + "tawnier": [], + "Togolese's": [], + "fuzzing": [], + "Sec": [], + "headstands's": [], + "flogging": ["M", "S"], + "jimsonweed": ["M"], + "relevantly": [], + "motive's": [], + "undissolved": [], + "tar'sed": [], + "poppers": [], + "thrilleder": [], + "slurp's": [], + "ancestor": ["S", "M"], + "annihilateds": [], + "Japura": ["M"], + "kinking": [], + "legal'sly": [], + "heterodoxy's": [], + "silence's": [], + "mooing's": [], + "manioc": ["M", "S"], + "Spartans": [], + "incipience": ["M"], + "notesed": [], + "chicane's": [], + "nitroglycerin": ["M"], + "deflection": ["M", "S"], + "stacks": [], + "puppeteers's": [], + "kipper": ["M", "D", "G", "S"], + "Stephen'ses": [], + "solution's": ["A", "E"], + "nuzzled": [], + "Buffalo": ["M"], + "vitrine": ["S", "M"], + "Grace's": [], + "jaggedness's": [], + "tympanums's": [], + "Canaanite": ["M", "S"], + "calumny's": [], + "runner": ["S", "M"], + "gantry's": [], + "floodlit": [], + "militarization": ["C", "M"], + "classroom's": [], + "supertanker's": [], + "stared": [], + "Bizet": ["M"], + "parried": [], + "fraud": ["S"], + "retardersing": [], + "stranded": [], + "acquisitive": ["Y", "P"], + "rich": ["T", "M", "R", "S", "Y", "P"], + "placekicking": [], + "inexpert": ["Y"], + "momenta": [], + "seesaw's": [], + "bedrolls's": [], + "unit": [], + "raring": [], + "cambersing": [], + "caprice's": [], + "activating": [], + "prattle's": [], + "dilettantish": [], + "tangibleness's": [], + "Baudouin's": [], + "barmen": [], + "adhered": [], + "Ragnarok's": [], + "lassies": [], + "Malinda's": [], + "vivisects": [], + "menfolk": ["M", "S"], + "Watt's": [], + "whoosh": ["M", "D", "S", "G"], + "thickenersing": [], + "crumpet": ["M", "S"], + "kidders": [], + "intimateds": [], + "Whitman": ["M"], + "mistiest": [], + "candid": ["Y", "P"], + "infighting": [], + "tasselsing": [], + "snowflakes's": [], + "Kishinev's": [], + "Harley's": [], + "Mecca'ses": [], + "Aztecs's": [], + "armories": [], + "monarchist's": [], + "connoisseur's": [], + "politicizeds": [], + "dichotomy": ["S", "M"], + "schizo": ["S", "M"], + "gastropod's": [], + "Parks's": [], + "layaway's": [], + "comedic": [], + "buffered": [], + "grinning": [], + "spellersing": [], + "moratorium": ["S", "M"], + "misfeasance's": [], + "withholdsing": [], + "exotic": ["S", "M"], + "hemostat": ["M", "S"], + "teamwork": ["M"], + "monomer": ["S", "M"], + "saboteur": ["S", "M"], + "hind": ["M", "R", "Z", "S"], + "Vincent's": [], + "befall": ["S", "G", "N"], + "isolates": [], + "bienniums": [], + "Travis": ["M"], + "marshy": ["R", "T"], + "emaciation's": [], + "levitate": ["D", "S", "G", "N"], + "probity": ["M"], + "assays": [], + "taffies's": [], + "necessity's": [], + "flat": ["M", "Y", "P", "S"], + "goblet": ["S", "M"], + "ramp'ses": [], + "biggie'ses": [], + "loafer's": [], + "Langland": ["M"], + "Lysistrata": ["M"], + "schilling'ses": [], + "trashcan's": [], + "sax'ses": [], + "armistices": [], + "sphincter's": [], + "caduceus": ["M"], + "hugs": [], + "Puckett's": [], + "yielded": [], + "cockle's": [], + "cigarette's": [], + "feminizesing": [], + "transvestite's": [], + "replete": ["P", "D", "S", "G", "N"], + "firmerly": [], + "cloven": [], + "situatesens": [], + "Cohen": ["M"], + "expurgatingen": [], + "Barnabas's": [], + "cellists's": [], + "tackler's": [], + "hundredweight's": [], + "uneaten": [], + "meanness's": [], + "latest": ["M"], + "bandwagons": [], + "rallied": [], + "nationallies": [], + "fritters": [], + "morphed": [], + "ferretings": [], + "heparin's": [], + "coauthor": ["M", "D", "G", "S"], + "Gabriel's": [], + "oceanfront's": [], + "FY": [], + "darkening": [], + "planeload": ["M", "S"], + "conurbation": ["M", "S"], + "northers's": [], + "retrorockets": [], + "horn'sed": [], + "strip": ["G", "S", "M", "D"], + "immunology": ["M"], + "confectioner": ["M"], + "thawed": [], + "wanderlust": ["S", "M"], + "evocation": ["M", "S"], + "daughter'sly": [], + "Neruda's": [], + "committing": ["A"], + "touchings": [], + "pithily": [], + "geographers": [], + "subsoil": ["M"], + "colloid": ["S", "M"], + "lavenders": [], + "barricade's": [], + "pollacks": [], + "ideograph's": [], + "glans's": [], + "branded": ["U"], + "boomsers": [], + "panhandlers": [], + "bestowals": [], + "elaboratingen": [], + "cooperator": ["S", "M"], + "shebeen": ["S"], + "cordless": [], + "oppressor'ses": [], + "bids": [], + "Victorian'ses": [], + "Hiawatha": ["M"], + "buttercups's": [], + "cymbalist's": [], + "microfilm": ["G", "M", "D", "S"], + "intangible": [], + "Anthony's": [], + "railleries's": [], + "dipstick's": [], + "walkover's": [], + "censorship": ["M"], + "noxious": [], + "mooed": [], + "linkage'ses": [], + "chlorinating": [], + "denting's": [], + "teenage": ["R", "Z"], + "niggers": [], + "gooseds": [], + "encumbered": ["U"], + "excavatingen": [], + "channel": ["G", "S", "M", "D"], + "forelimbs": [], + "stakeouts's": [], + "swatch'ses": [], + "Majuro's": [], + "depiction's": [], + "registering's": [], + "cordillera's": [], + "sicks": [], + "verve": ["M"], + "vising": [], + "chuckle'sing": [], + "recognition": [], + "abbreviate": ["D", "S", "G", "N", "X"], + "viscose's": [], + "Rudy's": [], + "riot's": [], + "paybacks's": [], + "amity's": [], + "acmes's": [], + "appurtenant": [], + "ilia": [], + "hydrolyzesing": [], + "sketch's": [], + "carols": [], + "pelvic": [], + "earpieces": [], + "pizzerias": [], + "certifies": [], + "compensating": [], + "previewsers": [], + "itcheds": [], + "haircloth's": [], + "la": ["M"], + "finale's": [], + "rafteder": [], + "Wise's": [], + "lacewings": [], + "corker's": [], + "portulaca": ["M"], + "locomotion's": [], + "abdications": [], + "oakum": ["M"], + "capitalization": ["M"], + "infiltrate": [], + "tercentennial's": [], + "Davies": ["M"], + "Felecia": ["M"], + "boned": [], + "satirizesing": [], + "joyridden": [], + "precanceled": [], + "aces": [], + "apocalypses": [], + "minibike's": [], + "evaporators's": [], + "Tocqueville's": [], + "imbue": ["D", "S", "G"], + "canopies's": [], + "excretions": [], + "amortizable": [], + "staying": [], + "recrudescing": [], + "valuings": [], + "intricately": [], + "notates": [], + "debuting's": [], + "Little's": [], + "valedictorian": ["S", "M"], + "brackishness's": [], + "napless": [], + "Theodoric's": [], + "paywall's": [], + "superior'ses": [], + "foxtrot'ses": [], + "moviegoer's": [], + "scat": ["M", "S"], + "Schlesinger": ["M"], + "mule": ["M", "S"], + "ovenbird's": [], + "curb'sed": [], + "alcohol's": [], + "coif'ses": [], + "arbitrages": [], + "sheepherder's": [], + "snowsuit's": [], + "Seleucus's": [], + "Alva's": [], + "pallbearer's": [], + "freestones": [], + "consistency": ["I", "S", "M"], + "identical": ["Y"], + "Scorpio": ["S", "M"], + "cutie": ["S", "M"], + "Iaccoca's": [], + "breakfastings": [], + "starkness's": [], + "calk": ["S", "G", "M", "D"], + "keyboarder's": [], + "housekeepers": [], + "remorselessnessly": [], + "embolism'ses": [], + "blandishments's": [], + "Ola": ["M"], + "pailfuls": [], + "bearings's": [], + "goldenrod's": [], + "unclear": ["D", "R", "T"], + "ineffability": ["M"], + "beholden": [], + "Confucianism": ["M", "S"], + "Lea's": [], + "suffocates": [], + "Moloch's": [], + "foretastes": [], + "particulars": [], + "Felix": ["M"], + "Satan's": [], + "phrasebook": ["S"], + "Katelyn's": [], + "Nazareth's": [], + "Bahrain": ["M"], + "snowfall": ["S", "M"], + "entombment's": [], + "Maoisms": [], + "Eire": ["M"], + "Odysseus's": [], + "trashing's": [], + "Crimea": ["M"], + "ripeness": ["M"], + "misapplied": [], + "bemuseds": [], + "overprotecting": [], + "instar": [], + "Nathan": ["S", "M"], + "inseminates": [], + "divalent": [], + "Aldebaran's": [], + "monochrome'ses": [], + "chanter's": [], + "Mona": ["M"], + "Ariadne's": [], + "religious's": [], + "leviathan": ["M", "S"], + "macerated": [], + "robocalling": [], + "bandbox's": [], + "extincting": [], + "purses": [], + "anticlerical": [], + "lorgnette": ["S", "M"], + "circularity": ["M"], + "newsboy's": [], + "tomcat's": [], + "Johnathan": ["M"], + "could've": [], + "murdereder": [], + "elegance": ["I", "M"], + "arming": [], + "automation": ["M"], + "possums's": [], + "Gale": ["M"], + "validness's": [], + "reinfect": [], + "intercessor's": [], + "artfulnessly": [], + "sutures": [], + "litigators": [], + "debase": [], + "Strauss": ["M"], + "mastodons": [], + "offender's": [], + "tunneler": ["M"], + "Muhammadanisms": [], + "crackerjack's": [], + "brackish": ["P"], + "minesweeper": ["S", "M"], + "supervisor's": [], + "stodgy": ["R", "T", "P"], + "reasoning's": [], + "animus": ["M"], + "lacquered": [], + "dastard's": [], + "sanctification's": [], + "repetitiveness": ["M"], + "littorals's": [], + "tarsi": [], + "ablative's": [], + "matchboxes": [], + "motleys": [], + "providers": [], + "Coppola's": [], + "unconsecrated": [], + "yams": [], + "Christendom": ["M", "S"], + "confabulatingen": [], + "enlivened": [], + "lobotomizeds": [], + "recursions": [], + "Czechoslovakian's": [], + "damage's": [], + "figuresed": [], + "draftsmanship": ["M"], + "strictures": [], + "Federico": ["M"], + "nonpunishable": [], + "doges": [], + "corroborators's": [], + "intercessor": ["M", "S"], + "deception'ses": [], + "hypertext": ["M"], + "Sawyer's": [], + "compromised": [], + "nonconvertible": [], + "treetops's": [], + "hydrangea": ["S", "M"], + "frothy": ["T", "P", "R"], + "bracero": ["M", "S"], + "Seleucus": ["M"], + "stupidity's": [], + "assertively": [], + "Kuomintang": ["M"], + "halves": [], + "Mnemosyne's": [], + "pageantry's": [], + "dietings": [], + "pace": ["M", "Z", "G", "D", "R", "S"], + "magnetizable": [], + "skeletons": [], + "inertia's": [], + "immediacies": ["M"], + "headsman's": [], + "according's": [], + "armors": [], + "anatomically": [], + "barrister": ["M", "S"], + "lilies's": [], + "cavilersing": [], + "Comoran": [], + "knitter's": [], + "MVP's": [], + "persevere": ["D", "S", "G"], + "describer's": [], + "prepaid": [], + "uncorrelated": [], + "digs's": [], + "goodly": ["T", "R"], + "shivers": [], + "Kenya's": [], + "Rosario": ["M"], + "jasmines": [], + "glossaries's": [], + "sneakiness": ["M"], + "Janice": ["M"], + "barricading": [], + "handicaps": [], + "distributed": ["U"], + "unchaperoned": [], + "estimatesens": [], + "convoys's": [], + "someway": ["S"], + "syllabification's": [], + "Communists's": [], + "iniquity": ["S", "M"], + "knitting's": [], + "pewees's": [], + "distillery": ["S", "M"], + "vitrification": ["M"], + "antic's": [], + "doeskin'ses": [], + "waxier": [], + "congruently": [], + "transliterated": [], + "Desmond": ["M"], + "charlatanism": ["M"], + "bethinksing": [], + "underfunded": [], + "Elvin's": [], + "Dotson's": [], + "nursery": ["S", "M"], + "determinants's": [], + "podcasts's": [], + "sharpness's": [], + "sociability": ["M"], + "Fe": ["M"], + "druidism's": [], + "A's": [], + "Torres": ["M"], + "harriersing": [], + "fuzz's": [], + "militancy's": [], + "unconquerable": [], + "rabbinical": [], + "antiquing": [], + "phraseds": [], + "propellants": [], + "IUD": [], + "repatriating": [], + "roams": [], + "cluttered": ["U"], + "waterworks's": [], + "adulate": ["D", "S", "G", "N"], + "iPad's": [], + "Watkins": ["M"], + "lambskin": ["S", "M"], + "autonomic": [], + "peculatingen": [], + "citron's": [], + "scaremongers": [], + "nautically": [], + "personallies": [], + "interjections's": [], + "Fathers": [], + "nightstick": ["S", "M"], + "typinged": [], + "mariner's": [], + "nonskid": [], + "Sp": [], + "trey'ses": [], + "Roy's": [], + "maydays": [], + "ledger": ["M"], + "fusilier": ["S", "M"], + "pillar'sed": [], + "prophetical": ["Y"], + "changeably": [], + "squirreling": [], + "woodworking": ["M"], + "fumblingly": [], + "infuriatinged": [], + "crayola": ["S"], + "parimutuel'ses": [], + "exoticism": ["M"], + "reduplication": [], + "physique's": [], + "terrier's": [], + "yeasts": [], + "breviaries's": [], + "lesseninged": [], + "Shreveport's": [], + "NyQuil's": [], + "tickler": ["M"], + "ricersing": [], + "glassfuls's": [], + "hydraulic": ["S"], + "territories": [], + "swordsman's": [], + "geophysicist": ["S", "M"], + "misogynists": [], + "antiknock's": [], + "discloses": [], + "neglect's": [], + "inside's": [], + "blockeds": [], + "incubuses": [], + "caseworker's": [], + "collaborator's": [], + "nearlies": [], + "recessional's": [], + "inheritable": [], + "dependent's": [], + "prearrangeds": [], + "voluntary": ["S", "M"], + "hurl": ["M", "D", "R", "S", "Z", "G"], + "dairyman": ["M"], + "salons": [], + "diffusing": [], + "maltreat": ["G", "L", "D", "S"], + "likeninged": [], + "Havoline's": [], + "tawdriness's": [], + "Zachary's": [], + "geodesic": ["S", "M"], + "vowed": [], + "ionospheric": [], + "cymbalist": ["M", "S"], + "Fischer": ["M"], + "HTTP": [], + "Nationwide": ["M"], + "scrabblers": [], + "deprecating": ["Y"], + "noncumulative": [], + "traipsing": [], + "reprieved": [], + "prostrates": [], + "amicability": ["M"], + "Rolando's": [], + "ringtones's": [], + "swinger": ["M"], + "towel's": [], + "sentimentalist'ses": [], + "wakenings": [], + "lounginged": [], + "jive'sing": [], + "forename'sed": [], + "restfully": [], + "pothook": ["S", "M"], + "lip's": [], + "galled": [], + "coyness": ["M"], + "Geraldine": ["M"], + "extorting": [], + "nugatory": [], + "overstocks": [], + "grasp's": [], + "syllabuses": [], + "overreacheds": [], + "Rand's": [], + "stillsed": [], + "norm'ses": [], + "Bernardo": ["M"], + "Mazola": ["M"], + "microscopic": [], + "nozzles": [], + "pledge's": [], + "cubbyhole's": [], + "mockery": ["S", "M"], + "seedbed's": [], + "Phobos": ["M"], + "alibiing": [], + "flying's": [], + "shirrings": [], + "Saladin": ["M"], + "closure": ["E", "S", "M"], + "Olenek's": [], + "ark's": [], + "naughty": ["P", "T", "R"], + "effeminacy": ["M"], + "Ats": [], + "maggoty": [], + "applauder": ["M"], + "redone": [], + "trudginged": [], + "Haifa's": [], + "winemaker": ["M", "S"], + "couscous": ["M"], + "Tomas's": [], + "pestilence": ["S", "M"], + "Susie's": [], + "Cantonese": ["M"], + "horsetrading": [], + "temperas": [], + "Ir": ["M"], + "lambent": ["Y"], + "boycott's": [], + "panning": [], + "prognosticator": ["M", "S"], + "volute": ["S", "M"], + "darner": ["M"], + "drowse'sing": [], + "Malaysia": ["M"], + "friars": [], + "drapes's": [], + "living'ses": [], + "impalesing": [], + "pacifying": [], + "content": ["E", "S", "L", "M", "D", "G"], + "befriendinged": [], + "tricycles's": [], + "filbert": ["M", "S"], + "pottery's": [], + "dusky": ["R", "T", "P"], + "contraindicatingen": [], + "caddieds": [], + "bone": ["D", "R", "S", "M", "Z", "G"], + "forearms's": [], + "toques": [], + "asphaltings": [], + "Goodwill": ["M"], + "Tswana": ["M"], + "archangel'ses": [], + "jockstrap": ["M", "S"], + "porringer": ["S", "M"], + "patroness'ses": [], + "livestock's": [], + "dazzleder": [], + "Grinch's": [], + "effervesces": [], + "orthopedic": ["S"], + "dissemination's": [], + "sophist": ["M", "S"], + "hearkeninged": [], + "Mendocino": ["M"], + "Argentina": ["M"], + "carrion's": [], + "Pennsylvania's": [], + "vitrifyingen": [], + "caregivers": [], + "percipient": [], + "wobbliest": [], + "killdeer's": [], + "microbiology": ["M"], + "shorting's": [], + "masterings": [], + "Henderson's": [], + "Blavatsky": ["M"], + "smudgiest": [], + "feather's": [], + "squirming's": [], + "roomette's": [], + "winter": ["G", "S", "M", "D"], + "boors's": [], + "interlope": ["Z", "G", "D", "R", "S"], + "Mario": ["M"], + "outburst's": [], + "razz'sed": [], + "roguish": ["Y", "P"], + "radial's": [], + "bedside": ["S", "M"], + "immateriality": ["M"], + "feeler": ["M"], + "marblinged": [], + "astrakhan": ["M"], + "gulden'ses": [], + "retribution's": [], + "quadrennium": ["M", "S"], + "ceremonials": [], + "farmsteads": [], + "ensemble": ["S", "M"], + "test": ["A", "K", "F", "C", "D", "G", "S"], + "blackball's": [], + "cosed": [], + "goldbricked": [], + "postdated": [], + "congers": [], + "speedometers": [], + "audiences": [], + "cloy": ["D", "G", "S"], + "blanket'sed": [], + "Sheena": ["M"], + "guineas": [], + "backslash'ses": [], + "rumpus": ["M", "S"], + "finickiness": ["M"], + "fortresses": [], + "pharmacist'ses": [], + "Lassa's": [], + "shaggier": [], + "amorality": ["M"], + "alkyd's": [], + "khakis's": [], + "Croatia": ["M"], + "carobs": [], + "taros": [], + "Otis": ["M"], + "thwack's": [], + "prejudice'sing": [], + "Thrace": ["M"], + "tragedians's": [], + "germinateds": [], + "misspendings": [], + "Tadzhik": ["M"], + "iodized": [], + "rehab's": [], + "tension": ["E", "S", "M"], + "Chinatown's": [], + "attainder's": [], + "lair's": [], + "Ray": ["M"], + "flutist'ses": [], + "gallstone'ses": [], + "Doritos's": [], + "congregated": [], + "parkways": [], + "petitioning": [], + "bondsing": [], + "queasiness's": [], + "whupped": [], + "unconscionably": [], + "beluga's": [], + "firmliness": [], + "hackney": ["S", "M", "D", "G"], + "poppy": ["S", "M"], + "biographer": ["S", "M"], + "Omanis": [], + "tailgaters": [], + "rottenness": ["M"], + "cockerels": [], + "Victor": ["M"], + "house's": [], + "creoles's": [], + "superpowers's": [], + "hutches": [], + "housemaster": ["S"], + "inseparably": [], + "acolytes": [], + "capillaries's": [], + "vireos": [], + "appellationsen": [], + "dignifying": [], + "Tessie": ["M"], + "bunions": [], + "oscilloscope's": [], + "slidersing": [], + "mach": ["M"], + "humiliation's": [], + "swathing": [], + "tugboats": [], + "khaki's": [], + "groundskeepers": [], + "bless": ["G", "D", "S", "J"], + "swords's": [], + "bullheaded": ["P", "Y"], + "recipe's": [], + "Kingston": ["M"], + "accustom": ["D", "S", "G"], + "sacristan'ses": [], + "bracts": [], + "deferential": ["Y"], + "circuity's": [], + "rapeseed's": [], + "island'ser": [], + "unguent's": [], + "plaid's": [], + "unpicking": [], + "interrelationship'ses": [], + "isolationist's": [], + "structurally": [], + "breve's": [], + "flowed": [], + "frame's": [], + "cerebratingen": [], + "Chrysler's": [], + "exclusions": [], + "ricketiest": [], + "sublimates": [], + "interactivity": [], + "Peking's": [], + "beauties": [], + "winners": [], + "trickled": [], + "Truffaut's": [], + "swollen": [], + "Ed's": [], + "ferromagnetic": [], + "saints": [], + "dogmas": [], + "catafalque": ["M", "S"], + "daze's": [], + "fasteners": [], + "Marshall's": [], + "gravamen": ["M", "S"], + "Lotharios": [], + "jocund": ["Y"], + "fascinatingly": [], + "fumigated": [], + "overestimation": ["M"], + "pimple": ["D", "S", "M"], + "Matthias's": [], + "machinate": ["G", "N", "D", "S", "X"], + "Tupi": ["M"], + "eventual": ["Y"], + "trickery's": [], + "counterfoils": [], + "Yamoussoukro's": [], + "ICBM": ["S", "M"], + "inconjunction": [], + "matured": [], + "kraals": [], + "espadrille": ["M", "S"], + "Capuchin": ["M"], + "settingsers": [], + "insensitive": ["Y"], + "retrod": [], + "pipette": ["S", "M"], + "freeloaderers": [], + "Ethiopians's": [], + "housings": [], + "accompanying": [], + "inexpensiveness": [], + "reciprocated": [], + "dissuadinged": [], + "disciplines": [], + "buttresses": [], + "bigamist's": [], + "Communions": [], + "type": ["A", "G", "D", "S"], + "Rhine's": [], + "squadron": ["M", "S"], + "weaponizing": [], + "puck": ["Z", "M", "R", "S"], + "meniscus": ["M"], + "hammerheads": [], + "lassoeding": [], + "confessedly": [], + "uptick": ["S", "M"], + "Platonist's": [], + "trendies": [], + "Vegas": ["M"], + "disreassemble": [], + "furriness's": [], + "handicappers": [], + "nationalization'ses": [], + "versioning": [], + "filth": ["M"], + "negative'sly": [], + "Mahavira": ["M"], + "kilt": ["M", "D", "R", "S"], + "ossifieds": [], + "authored": [], + "clog": ["U", "S"], + "mocker's": [], + "core's": [], + "acclivities": [], + "outrun": ["S"], + "Tutsi's": [], + "locations": [], + "depreciate": ["D", "S", "G", "N"], + "archetype'ses": [], + "boobies's": [], + "valencies": [], + "sufferance": ["M"], + "McGowan's": [], + "waffles": [], + "cerements": [], + "charier": [], + "tieback's": [], + "rook": ["M", "D", "G", "S"], + "hack'sed": [], + "innumerably": [], + "scumbag": ["M", "S"], + "woodcutter's": [], + "turnover's": [], + "Sadie's": [], + "hell": ["M"], + "promiscuous": ["Y"], + "sensibilities": [], + "patient's": [], + "ferule": ["S", "M"], + "praters": [], + "bluestockings": [], + "officeholders's": [], + "griffon's": [], + "illumine": ["D", "S", "B", "G"], + "copyist": ["M", "S"], + "chipmunk's": [], + "solecism's": [], + "Dravidian's": [], + "reawaken": [], + "organelle": ["M", "S"], + "frizzle's": [], + "mustiness's": [], + "muzzy": ["P"], + "chronicling": [], + "cation": ["M", "S"], + "occupiesing": [], + "sideburns": ["M"], + "Sasha": ["M"], + "skivesers": [], + "teetotalism's": [], + "gerontology": ["M"], + "Verdun": ["M"], + "legwork's": [], + "radiotherapists": [], + "bigness's": [], + "propagandized": [], + "Valery's": [], + "selves": [], + "Noriega": ["M"], + "Essen": ["M"], + "populations": [], + "Lapp": ["S", "M"], + "warrantied": [], + "constraint's": [], + "mismanaging": [], + "brayed": [], + "melees's": [], + "bridge'sing": [], + "ensueds": [], + "heir'ses": [], + "nuke": ["M", "G", "D", "S"], + "easement's": [], + "predicate": ["M", "G", "N", "V", "D", "S"], + "justliness": [], + "muddle's": [], + "allot": ["L", "S"], + "fishwife": ["M"], + "sloth": ["M"], + "Rusty": ["M"], + "mutinged": [], + "baryon": ["S", "M"], + "extenuates": [], + "classifieding": [], + "oughtn't": [], + "interests": [], + "cupric": [], + "thromboses": [], + "kennels": [], + "evaded": [], + "ideals": [], + "Calvert's": [], + "harbingers's": [], + "gymnasium": ["M", "S"], + "swineherd's": [], + "foulsness": [], + "unpolitical": [], + "ghostwritinger": [], + "rooting": [], + "swatter": ["S", "M", "D", "G"], + "Vivienne": ["M"], + "rustler": ["M"], + "trolleybuses": [], + "tonsured": [], + "pretenderers": [], + "moist": ["X", "T", "P", "N", "R", "Y"], + "breakables": [], + "hepatocyte": ["S"], + "farthings's": [], + "resistors": [], + "dadaist's": [], + "Palmerston": ["M"], + "liftoffs's": [], + "smithy": ["S", "M"], + "coccis": [], + "dribblersing": [], + "stranglinged": [], + "massages": [], + "ropiest": [], + "windscreen's": [], + "modernists's": [], + "auction": ["M", "D", "G", "S"], + "everlastingly": [], + "cookbook'ses": [], + "what'ses": [], + "maniac": ["M", "S"], + "halfpennies": [], + "fractiousliness": [], + "double": ["A", "D", "S", "G"], + "verger's": [], + "pave": ["A", "G", "D", "S"], + "teleconferences": [], + "courtier": ["S", "M"], + "deed": ["G", "D"], + "combersing": [], + "squint's": [], + "tattier": [], + "sixteenth": ["M"], + "Melchior's": [], + "alerting's": [], + "idolatrous": [], + "regretful": ["Y"], + "coating's": [], + "prig's": [], + "haberdashers's": [], + "dominant's": [], + "tubercles's": [], + "recompense'sing": [], + "macadamias's": [], + "Mozambique's": [], + "gratifying": ["Y"], + "turnaround": ["S", "M"], + "grubber": ["M", "S"], + "uncapped": [], + "lankier": [], + "polkasing": [], + "sorriness": ["M"], + "tugboat'ses": [], + "kepi'ses": [], + "moonscape's": [], + "loansharking's": [], + "Tyler's": [], + "spellchecked": [], + "dippers": [], + "hothouses": [], + "encephalitis": ["M"], + "crookederly": [], + "tactlessly": [], + "function": ["M", "D", "G", "S"], + "convinceds": [], + "chant": ["Z", "G", "M", "D", "R", "S"], + "charmer's": [], + "souks": [], + "captions's": [], + "diatribes": [], + "Benton's": [], + "mizzenmast's": [], + "parachute's": [], + "huckleberries": [], + "narrowest": [], + "humbug's": [], + "pfennig's": [], + "piracy": ["M"], + "hobblersing": [], + "octogenarian": ["S", "M"], + "sharpie's": [], + "assonant": ["M", "S"], + "blossoming's": [], + "sidetrackeding": [], + "subdivisions's": [], + "Coulomb": ["M"], + "freedmen": [], + "hygienist": ["M", "S"], + "mildewing": [], + "Brenner": ["M"], + "Australoid's": [], + "Poiret": ["M"], + "ripsaws's": [], + "scallop's": [], + "cairn": ["M", "S"], + "fractional": ["Y"], + "manuscript'ses": [], + "fryer's": [], + "bijou's": [], + "wants": [], + "pilchard'ses": [], + "Nannie's": [], + "advt": [], + "plagiarizing": [], + "racquetballs": [], + "chauffeureds": [], + "bladder's": [], + "cocksuckers": [], + "flea'ses": [], + "cheeseboard": ["S"], + "externalize": ["D", "S", "G"], + "defroster's": [], + "Holbein": ["M"], + "monograms": [], + "minimalism": ["M"], + "eucalyptus": ["M", "S"], + "alternativelies": [], + "permission": ["M", "S"], + "Hays": ["M"], + "whistle": ["M", "Z", "G", "D", "R", "S"], + "miscarried": [], + "wispy": ["R", "T"], + "ford'sed": [], + "Thursday": ["S", "M"], + "encourageds": [], + "confiscate": ["D", "S", "G", "N", "X"], + "Cali's": [], + "Marx's": [], + "moisteners": [], + "hap'sly": [], + "permeating": [], + "twang": ["S", "M", "D", "G"], + "engraving": ["M"], + "barristers": [], + "weepers": [], + "antibiotics": [], + "scrapes": [], + "spritzing's": [], + "noncommercial": ["M", "S"], + "correctest": [], + "wiggleder": [], + "shovelful's": [], + "constipation's": [], + "mammary": [], + "ignition": ["M", "S"], + "prettiness's": [], + "overfill": ["D", "G", "S"], + "hoydenish": [], + "Catholic's": [], + "Cheri": ["M"], + "fireworks": [], + "moving": ["Y"], + "forearmed": [], + "arteriosclerosis's": [], + "killjoys's": [], + "allies": [], + "clerical": ["Y"], + "Pershing": ["M"], + "Wiesel": ["M"], + "staffs": [], + "magical": ["Y"], + "splash": ["G", "M", "D", "S"], + "beating's": [], + "decked": [], + "royalist's": [], + "immolating": [], + "flagpole": ["S", "M"], + "Josefa": ["M"], + "tinglings": [], + "washer": ["M"], + "cartons": [], + "angiosperm": ["S", "M"], + "prekindergartens's": [], + "glossy": ["P", "T", "R", "S", "M"], + "Mullen's": [], + "pandas's": [], + "retractable": [], + "countermeasures's": [], + "dengue": ["M"], + "universities's": [], + "edelweiss's": [], + "interfaces": [], + "antitank": [], + "Sepoy": ["M"], + "soundness's": [], + "numeration's": [], + "poise's": [], + "convalescence": ["M", "S"], + "cassavas's": [], + "riverbed's": [], + "Rosie's": [], + "baddest": [], + "laziest": [], + "oink's": [], + "hagiographers's": [], + "drilling": [], + "pleads": [], + "octaves": [], + "tolerance's": [], + "Cepheus": ["M"], + "swellest": [], + "whimpereding": [], + "safenesser": [], + "marshlands's": [], + "material'sly": [], + "arrangementing": [], + "entrepreneurs's": [], + "Jackson": ["M"], + "strictness": ["M"], + "bridle'sing": [], + "adumbratingen": [], + "trampolines": [], + "caroling's": [], + "fling's": [], + "betakes": [], + "devotional": ["S", "M"], + "dapper": ["T", "R"], + "locus's": [], + "Herr": ["M", "G"], + "image's": [], + "nervesing": [], + "baggie": ["M"], + "parametric": [], + "drawbacks": [], + "faux": [], + "climax": ["M", "D", "S", "G"], + "Behan": ["M"], + "twiddleds": [], + "herbalist's": [], + "bathysphere'ses": [], + "malefactors": [], + "external": ["M", "Y", "S"], + "price": ["A", "G", "D", "S"], + "Avila's": [], + "lambadas": [], + "airbuses": [], + "Gallup": ["M"], + "Prado's": [], + "cf": [], + "Bratislava": ["M"], + "Aida's": [], + "segmentation": ["M"], + "reflector's": [], + "pixie'ses": [], + "scapulars's": [], + "ballasts": [], + "sizzles": [], + "maraca'ses": [], + "premarital": [], + "youthfulliness": [], + "herb's": [], + "cool": ["M", "D", "R", "Y", "Z", "T", "G", "P", "S"], + "traumatizeds": [], + "crowns": [], + "detainees": [], + "artlessly": [], + "spacewalking's": [], + "boardwalk'ses": [], + "woodenness's": [], + "liveliness's": [], + "rhenium": ["M"], + "less": ["M", "N", "R", "X"], + "ailmenting": [], + "breezily": [], + "dear'ser": [], + "backstopped": [], + "precedes": [], + "Antarctic's": [], + "salarieds": [], + "Lana": ["M"], + "hies": [], + "limes": [], + "layover'ses": [], + "pitchesers": [], + "chimp": ["M", "S"], + "turner's": [], + "shirk": ["Z", "G", "D", "R", "S"], + "quarterdeck": ["M", "S"], + "heap's": [], + "decorum": ["M"], + "whitsens": [], + "partnership": ["M", "S"], + "shimmered": [], + "wagonerses": [], + "boondoggles": [], + "hobnailsing": [], + "Woodrow's": [], + "pastry's": [], + "circumnavigationsing": [], + "communicatingen": [], + "throw": ["S", "M", "R", "Z", "G"], + "savaged": [], + "quickeneding": [], + "outrageds": [], + "weld'sed": [], + "Cranmer": ["M"], + "novelizeds": [], + "Banks": ["M"], + "interrelationships": [], + "sourpuss'ses": [], + "bravura": ["S", "M"], + "greener": [], + "vicarages": [], + "caribous": [], + "spaniels": [], + "occludes": [], + "marvel'sed": [], + "bittersweets": [], + "parenting's": [], + "detoxifying": [], + "treasury's": [], + "screwdrivers": [], + "itinerary": ["S", "M"], + "terrestrial'sly": [], + "saturatesing": [], + "vestment": ["I", "M", "S"], + "quaver": ["M", "D", "S", "G"], + "schoolteacher": ["M", "S"], + "savor": ["M", "D", "S", "G"], + "triage's": [], + "prepayment's": [], + "touringed": [], + "wits's": [], + "hots's": [], + "tougher": [], + "ambulancemen": [], + "conch's": [], + "Manchus's": [], + "mergeder": [], + "fertilizesers": [], + "Henson's": [], + "Velez": ["M"], + "Philippines's": [], + "beastliness": ["M"], + "ramrodded": [], + "undersold": [], + "debouching": [], + "wronging's": [], + "zygote": ["S", "M"], + "propositioned": [], + "gauchos": [], + "vendetta": ["S", "M"], + "dopiest": [], + "mass'sed": [], + "compliantly": [], + "clique": ["S", "M"], + "giggleder": [], + "Paulette's": [], + "mailer's": [], + "jinxeds": [], + "bogeymen": [], + "Ojibwa's": [], + "Jacklyn's": [], + "Teflon's": [], + "nervy": ["T", "P", "R"], + "transporting's": [], + "endsings": [], + "anticlimaxes": [], + "internalize": ["G", "D", "S"], + "lightheartedliness": [], + "Rhodes's": [], + "Plato": ["M"], + "Durkheim's": [], + "Vesalius's": [], + "dairymaid'ses": [], + "clubfoot's": [], + "festoon's": [], + "puffin's": [], + "Aleut": ["M", "S"], + "PAC's": [], + "luncheonette's": [], + "pontiffs's": [], + "hydrocarbons": [], + "aftermath": ["M"], + "worships's": [], + "delineationsed": [], + "mule's": [], + "glamorization's": [], + "gussied": [], + "diaereses": [], + "Superfund's": [], + "FM's": [], + "cryptic": [], + "avaricious": ["Y"], + "parliaments's": [], + "overstrung": [], + "serenely": [], + "autopilot": ["S", "M"], + "limiest": [], + "burgles": [], + "Napoleonic": ["M"], + "recluses's": [], + "rationale": ["M", "S"], + "cruiseder": [], + "slender": ["P", "R", "T"], + "electrics": [], + "figs": [], + "parabolas": [], + "word": ["A", "D", "S", "G"], + "Lardner": ["M"], + "claspinged": [], + "marketing's": [], + "highlander": ["M"], + "gear": ["M", "D", "G", "S"], + "Tombaugh": ["M"], + "adhesiveness": ["M"], + "littlest": [], + "taxidermist": ["S", "M"], + "wretcheder": [], + "Vietcong": ["M"], + "quantity's": [], + "pluralistic": [], + "perquisites's": [], + "fevers's": [], + "tribunes": [], + "underway": [], + "when'ses": [], + "nervousness": ["M"], + "knowledge": ["M"], + "posteder": [], + "purrs": [], + "duckies": [], + "overlying": [], + "Lajos": ["M"], + "pushovers": [], + "napalm": ["M", "D", "S", "G"], + "inspecting": [], + "Honduras": ["M"], + "exeunt": [], + "blurtinged": [], + "chew": ["S", "Z", "G", "M", "D", "R"], + "Moho": ["M"], + "directive": ["S", "M"], + "vicious": ["Y", "P"], + "Scientologist's": [], + "leerier": [], + "ole's": [], + "booksable": [], + "molesting": [], + "suspect'sed": [], + "Knoxville's": [], + "burgeonsing": [], + "maternal": ["Y"], + "unconsciousness": [], + "fixtures": [], + "peregrination's": [], + "damasked": [], + "tithing": [], + "pastie": [], + "chanting's": [], + "encrypting": [], + "switches": [], + "snifter": ["S", "M"], + "honeybee": ["S", "M"], + "specialist": ["M", "S"], + "swaddlesing": [], + "mercantilism": ["M"], + "elective's": [], + "thoughtlessly": [], + "HM": [], + "unicorns": [], + "lassie": ["S", "M"], + "traineder": [], + "dinkies's": [], + "rendezvoused": [], + "garnersing": [], + "hedge's": [], + "Alioth's": [], + "bloodthirstily": [], + "devolution": ["M"], + "cuttlefish'ses": [], + "wraps": [], + "Nikki's": [], + "mutinyinged": [], + "annexing's": [], + "hurt": ["M", "S", "G"], + "salvage's": [], + "bundle'sing": [], + "roosting": [], + "kiddies": [], + "northerner's": [], + "oligopoly's": [], + "urbanity's": [], + "Guzman": ["M"], + "literate's": [], + "outscored": [], + "surtax": ["M", "D", "S", "G"], + "badinage": ["M"], + "Achaean": ["M"], + "waterside'ses": [], + "jars": [], + "Charolais's": [], + "George's": [], + "wannessed": [], + "conjuncture": [], + "downloadedable": [], + "hex": ["G", "M", "D", "S"], + "subterfuges's": [], + "Mike's": [], + "signal'sed": [], + "megabit": ["S", "M"], + "mattress": ["M", "S"], + "obscenity": ["S", "M"], + "toniest": [], + "solicitously": [], + "hounds": [], + "PowerPoint's": [], + "detract": ["G", "D"], + "underexposed": [], + "pissersing": [], + "papacies": [], + "libel": ["S", "Z", "G", "M", "D", "R"], + "testimonials": [], + "grew": ["A"], + "push's": [], + "Pam's": [], + "scatterbrains": [], + "internationalism": ["M"], + "baklava": ["M"], + "cinema'ses": [], + "caring's": [], + "Koontz": ["M"], + "snootiness's": [], + "affable": [], + "euchre's": [], + "lest": [], + "Toyoda": ["M"], + "sahib's": [], + "driblet": ["M", "S"], + "snubs": [], + "declivities": [], + "comatose": [], + "swished": [], + "Syrian": ["M", "S"], + "Sterno's": [], + "oenophiles's": [], + "gibed": [], + "woolgathering's": [], + "BBQ": [], + "denim": ["M", "S"], + "masticatingen": [], + "rejuvenated": [], + "societal": [], + "inculcatingen": [], + "middy's": [], + "putouts": [], + "jostling": [], + "compulsiveliness": [], + "whitewall": ["S", "M"], + "rewind's": [], + "arithmetician": ["M", "S"], + "bloodstreams's": [], + "homer'sed": [], + "facilitator'ses": [], + "leeward's": [], + "chokers": [], + "fumigating": [], + "unaccredited": [], + "guanine": ["M"], + "pasteurizing": [], + "laundrywomen": [], + "crib": ["M", "S"], + "triflinged": [], + "Host": ["S", "M"], + "pirouettes": [], + "misfiled": [], + "endothermic": [], + "boycottsing": [], + "brothel'ses": [], + "slated": [], + "mirrors": [], + "landmass's": [], + "cotangent": ["M", "S"], + "beleaguerings": [], + "airing": ["M"], + "noninterchangeable": [], + "automaker's": [], + "European'ses": [], + "IMO": [], + "polarized": [], + "waterways": [], + "headquartersed": [], + "majestic": [], + "conformism's": [], + "swig'ses": [], + "whaleboat": ["M", "S"], + "fluff": ["S", "M", "D", "G"], + "institution": ["M"], + "shockingly": [], + "tiebreak": ["R", "S", "Z"], + "oozier": [], + "faradize": ["D", "G"], + "Chaldea": [], + "bubblegum's": [], + "Lie's": [], + "bookie'ses": [], + "circumnavigations": [], + "splat's": [], + "rally's": [], + "petrol's": [], + "noodle'sing": [], + "Arrhenius": ["M"], + "pinion'sed": [], + "VIPs's": [], + "eructation's": [], + "fruiterer": ["S"], + "trades's": [], + "stoutliness": [], + "meningitis's": [], + "errata's": [], + "viscous": [], + "Halliburton": ["M"], + "romanticized": [], + "niggler's": [], + "postnatal": [], + "stagecoach's": [], + "buys's": [], + "urinatingen": [], + "inspiration": ["M", "S"], + "sampan's": [], + "antiabortionist": ["M", "S"], + "Nagoya": ["M"], + "Buchenwald's": [], + "clearer": [], + "blares": [], + "niceness": ["M"], + "letter'sed": [], + "newswoman": ["M"], + "lassoing": [], + "markeds": [], + "elocution": ["M"], + "analogue's": [], + "British'ser": [], + "Coors's": [], + "instrumentation's": [], + "godless": ["P", "Y"], + "escallop'sed": [], + "chops": [], + "crustal": [], + "yawed": [], + "homemakers": [], + "launched": [], + "symbiotically": [], + "officeholder's": [], + "nitpicking's": [], + "lavishinged": [], + "forlornly": [], + "glistening": [], + "neck": ["M", "D", "S", "G"], + "whippers": [], + "Alzheimer": ["M"], + "goggle'sing": [], + "Onsager's": [], + "overexerteding": [], + "drollness's": [], + "rearing": [], + "fleeced": [], + "passionflower's": [], + "crystallizing": [], + "transliterates": [], + "TeXes": [], + "freethinker": ["S", "M"], + "prizeds": [], + "ensurer": ["M"], + "wowing": [], + "cataloger's": [], + "quotidian": [], + "squealers": [], + "Bernanke": ["M"], + "chorister": ["S", "M"], + "whooperers": [], + "Axum": ["M"], + "excise's": [], + "boatswains's": [], + "Olivia's": [], + "cowbell's": [], + "testifieder": [], + "instrumentalists's": [], + "jellyroll's": [], + "Australia": ["M"], + "pockmarks": [], + "plagues": [], + "croakiest": [], + "cognizable": [], + "bursitis": ["M"], + "Woods's": [], + "battening": [], + "microwaved": [], + "medalist'ses": [], + "grime's": [], + "aspirate'sing": [], + "reuse": [], + "enforceder": [], + "foalings": [], + "multiplex": ["Z", "G", "M", "D", "R", "S"], + "Latin": ["M", "R", "S"], + "autonomously": [], + "squirming": [], + "sailboarders": [], + "cytologists's": [], + "untanned": [], + "fleshy": ["R", "T"], + "Innsbruck": [], + "Psalms": ["M"], + "carpenter": ["M", "D", "G", "S"], + "jellied": [], + "magnetos's": [], + "Keogh's": [], + "Lopez": ["M"], + "rill'ses": [], + "Hitler's": [], + "Vietnam": ["M"], + "scrubbier": [], + "vantage's": [], + "Kong's": [], + "circumstances": [], + "wiliness's": [], + "mantis'ses": [], + "mesosphere": ["S", "M"], + "toasted": [], + "biyearly": [], + "agreeableness's": [], + "occultist's": [], + "elated": ["Y"], + "thumbscrews": [], + "Pandora": ["M"], + "captaincy's": [], + "employee's": [], + "suddenness": ["M"], + "forceps": ["M"], + "taiga'ses": [], + "constraints": [], + "sibling": ["S", "M"], + "Leon's": [], + "protector's": [], + "sportscasters": [], + "conviction": ["M", "S"], + "unscheduled": [], + "fundamentally": [], + "fuddle's": [], + "Surabaya's": [], + "chaffinches": [], + "billets": [], + "resuscitation": ["M"], + "reedier": [], + "wary": ["U", "P", "R", "T"], + "indictsable": [], + "overlong": [], + "mundane": ["S", "Y"], + "quietus's": [], + "avocation": ["M", "S"], + "overcast's": [], + "auroras": [], + "Clem": ["X", "M"], + "vend": ["D", "G", "S"], + "NSFW": [], + "docketeding": [], + "siblings's": [], + "overwinters": [], + "trachea's": [], + "calumniators": [], + "droll": ["R", "P", "T"], + "chore'ses": [], + "pollster's": [], + "ambassadorship's": [], + "lodestones": [], + "aloft": [], + "glorifying": [], + "diabetics's": [], + "proffer's": [], + "bloodthirstier": [], + "spry": ["R", "Y", "T"], + "canopyinged": [], + "achievementers": [], + "clause": ["M", "S"], + "Georgian's": [], + "chippings": [], + "Cubans's": [], + "oilman": [], + "Medicaids": [], + "stagiest": [], + "Congregational": [], + "emerald'ses": [], + "sinks": [], + "reprocreate": [], + "undoing": [], + "slate's": [], + "device": [], + "angiosperms": [], + "autopsy's": [], + "trademark'sed": [], + "inserts": [], + "chopstick's": [], + "accosts": [], + "moved": ["U"], + "perspire": ["G", "D", "S"], + "overcapacity": ["M"], + "opaquing": [], + "bifurcation's": [], + "pardon": ["Z", "G", "M", "D", "R", "B", "S"], + "Wycherley's": [], + "perspective'ses": [], + "derelict's": [], + "whooping": [], + "channels": [], + "parolinged": [], + "Sheratan": ["M"], + "FNMA's": [], + "nelsons's": [], + "matting": ["M"], + "crackliers": [], + "Mantle": ["M"], + "primordial": ["Y"], + "portico's": [], + "myriads's": [], + "tract": ["C", "E", "K", "F", "A", "S"], + "calamine": ["M"], + "CVS's": [], + "surmounts": [], + "chasten": ["D", "G", "S"], + "affliction's": [], + "Paralympics": [], + "oldster's": [], + "consonances": [], + "reverently": [], + "traverse's": [], + "attracts": [], + "adjudge": ["G", "D", "S"], + "reuncapped": [], + "grampus": ["M", "S"], + "windy": ["R", "T", "P"], + "eccentrics": [], + "causality's": [], + "legging'ses": [], + "synaptic": [], + "sweetness": ["M"], + "Darrow's": [], + "Durocher": ["M"], + "ensembles's": [], + "soap": ["M", "D", "G", "S"], + "missal's": [], + "heralds": [], + "freshnessen": [], + "unworthy": ["T"], + "hubbub's": [], + "circlet's": [], + "suntraps": [], + "Irvin": ["M"], + "crescendo": ["C", "S", "M"], + "chundering": [], + "Diefenbaker's": [], + "exploded": [], + "Fulbright's": [], + "portray": ["S", "G", "D"], + "gringo'ses": [], + "dumbness's": [], + "washesers": [], + "write": ["S"], + "loggias": [], + "filtering": [], + "caries's": [], + "growing": ["I"], + "helicopter'sed": [], + "amorousness's": [], + "elands's": [], + "sacrifices's": [], + "veneering": [], + "armlet'ses": [], + "megabucks's": [], + "Zeffirelli's": [], + "riverbanks's": [], + "vein": ["M", "D", "G", "S"], + "Pullman's": [], + "psychiatrist's": [], + "Riviera'ses": [], + "residency": ["S", "M"], + "contraindicateds": [], + "malevolent": ["Y"], + "hypeder": [], + "Interpol's": [], + "marketeer's": [], + "stopples": [], + "intoxicants": [], + "mimeograph'sed": [], + "soliciting": [], + "fundamental's": [], + "highlightersing": [], + "examininged": [], + "resurrections": [], + "orthodontia's": [], + "heartbreaking": [], + "tallboy": ["M", "S"], + "roosted": [], + "lucubratingen": [], + "inch'sed": [], + "stalingness": [], + "propagatesing": [], + "amplify": ["N", "D", "R", "S", "X", "Z", "G"], + "squirmed": [], + "questioner": ["M"], + "gracefully": [], + "slugger's": [], + "inauspicious": [], + "sanctuaries's": [], + "collector'ses": [], + "bath's": [], + "misspeak": ["G", "S"], + "Errol's": [], + "overprint": ["S", "M", "D", "G"], + "metros": [], + "Oriya": ["M"], + "dreads's": [], + "neocolonialist'ses": [], + "Chartism's": [], + "stomacher's": [], + "magneto's": [], + "idiots": [], + "debilitation's": [], + "dietaries": [], + "truancy": ["M"], + "gist": ["M"], + "Monsanto's": [], + "millpond's": [], + "garbanzo": ["S", "M"], + "proprietary's": [], + "skate's": [], + "juice's": [], + "extricable": ["I"], + "misappropriation's": [], + "inscriber's": [], + "lavishly": [], + "swipes's": [], + "hubbubs's": [], + "restless": ["P", "Y"], + "honorarily": [], + "Elinor's": [], + "jugulars": [], + "corrections's": [], + "TVA": [], + "dulcimers": [], + "chiseler": ["M"], + "I'll": [], + "telescoped": [], + "tenderloins's": [], + "plackets's": [], + "anaerobes": [], + "owners": [], + "winemaker's": [], + "Glaswegians": [], + "myocardial": [], + "capos's": [], + "cleaneder": [], + "betaken": [], + "matriarchy": ["S", "M"], + "timer": ["M"], + "bulletproofeding": [], + "Hendrix": ["M"], + "gastronome": ["S"], + "mightiness's": [], + "landownings's": [], + "hardhearted": ["P", "Y"], + "leased": [], + "outplayeds": [], + "Munoz": ["M"], + "toms": [], + "tomfooleries's": [], + "McCarty's": [], + "grandnephews": [], + "Jap's": [], + "Thea": ["M"], + "earmuffs": [], + "hermaphrodites": [], + "depositing": [], + "forborne": [], + "Kashmirs's": [], + "juxtaposes": [], + "Dardanelles's": [], + "attribute's": [], + "cabstand": ["S", "M"], + "kettle's": [], + "yakking": [], + "poorness": ["M"], + "yells": [], + "eds": [], + "conquerable": ["U"], + "boggiest": [], + "chasteneding": [], + "tacked": [], + "Larousse's": [], + "boa": ["S", "M"], + "styleds": [], + "tokinged": [], + "flaw'sed": [], + "wellington's": [], + "discussion": ["S", "M"], + "scrummages": [], + "euchre'sing": [], + "tinderbox'ses": [], + "concocts": [], + "permissivenessly": [], + "rerecordeds": [], + "cessation": ["M", "S"], + "loyal": ["E", "T", "Y"], + "hays's": [], + "oriels": [], + "racinesser": [], + "ribbers": [], + "heretic's": [], + "bridge's": [], + "ocher's": [], + "bonds": [], + "interpolation's": [], + "pshaw": ["M", "S"], + "Kirkland's": [], + "fittings": [], + "skyjacked": [], + "exempts": [], + "presentation": ["A", "S", "M"], + "paleontologist's": [], + "captivator": ["S", "M"], + "tabulator's": [], + "chiefdom's": [], + "radioactivity's": [], + "birthplace": ["M", "S"], + "lineage'ses": [], + "helm's": [], + "airship's": [], + "Vauban's": [], + "haloed": [], + "textile'ses": [], + "chesterfield": ["S", "M"], + "kinswoman's": [], + "considerately": [], + "frogmen": [], + "Pei's": [], + "Charlestons": [], + "age's": [], + "startles": [], + "Canaveral's": [], + "medicated": [], + "responsibilities": [], + "Burl's": [], + "narcotics": [], + "Beerbohm's": [], + "Ritz": ["M"], + "presupposition's": [], + "Jarred's": [], + "bevel": ["G", "M", "D", "S"], + "vitals's": [], + "ergonomics's": [], + "chestful's": [], + "Shawna's": [], + "speculating": [], + "ulcerateds": [], + "residua": [], + "habitualliness": [], + "broker's": [], + "sniper": ["M"], + "Kerr": ["M"], + "numeracy": ["I", "M"], + "normalizes": [], + "soureder": [], + "ineptly": [], + "dolinged": [], + "crap'ses": [], + "sublimes": [], + "overfilling": [], + "Scala": ["M"], + "lagniappes": [], + "homeostatic": [], + "walleyed": [], + "inscrutableness": ["M"], + "whittlersing": [], + "countermanding's": [], + "coronet": ["M", "S"], + "dupinged": [], + "maligning": [], + "Sunbeam": ["M"], + "tellurium": ["M"], + "festiveliness": [], + "sadist": ["S", "M"], + "unpickeds": [], + "hostess's": [], + "Salvadorian": ["M", "S"], + "Murrumbidgee's": [], + "inuresing": [], + "sou": ["S", "M", "H"], + "Slovenes": [], + "arbutus'ses": [], + "seismographs": [], + "reprisals's": [], + "Caterpillar": ["M"], + "dimly": [], + "velars": [], + "rickshaw's": [], + "enteritis": ["M"], + "egrets's": [], + "portage's": [], + "cosponsored": [], + "geld": ["D", "J", "G", "S"], + "Oreo": ["M"], + "hener": [], + "manta's": [], + "ghastliest": [], + "above": ["M"], + "dweebs's": [], + "discernment's": [], + "malformation's": [], + "rigorous": ["Y", "P"], + "clownishliness": [], + "demagoguery's": [], + "lusterless": [], + "titillation": ["M"], + "predeceaseds": [], + "megalopolis": ["M", "S"], + "junipers": [], + "toothiest": [], + "dressinesser": [], + "shyster's": [], + "barque": ["S", "M"], + "preferablement": [], + "fatso": ["S"], + "dandelions": [], + "spelunker's": [], + "Brandeis's": [], + "wish": ["M", "D", "R", "S", "Z", "G"], + "pouffe": ["S"], + "counterbalances": [], + "rivener": [], + "hawser's": [], + "troth's": [], + "squiggle'sing": [], + "Fundy's": [], + "pileds": [], + "lowly": ["T", "P", "R"], + "auditioned": [], + "graphologists": [], + "urbanology": ["M"], + "miming": [], + "divert": ["S", "D", "G"], + "antihero's": [], + "yacht's": [], + "chrome'sing": [], + "sextuplet": ["S", "M"], + "misdealing": [], + "javelin": ["S", "M"], + "libido'ses": [], + "mafias": [], + "julep": ["S", "M"], + "newspaper'ses": [], + "sterility": ["M"], + "zingiest": [], + "proclivity": ["S", "M"], + "chitchats's": [], + "hos": [], + "Douglas's": [], + "curlicues's": [], + "Saratov's": [], + "til": [], + "cabanas's": [], + "Mathis": ["M"], + "mastodon's": [], + "AstroTurf's": [], + "Chippewas's": [], + "hype": ["M", "G", "D", "R", "S"], + "coquetry's": [], + "magnificent": ["Y"], + "extrusion's": [], + "sparkle'sers": [], + "clinkersing": [], + "disco'sing": [], + "lessees": [], + "minicam": ["M", "S"], + "diagnostic": ["S"], + "waybill": ["S", "M"], + "fiches's": [], + "webfoot": ["M"], + "Ada's": [], + "smacker": ["M"], + "skippers": [], + "reinvestment": [], + "sorted": ["U"], + "borers": [], + "copiousness": ["M"], + "advance'sing": [], + "milliliter's": [], + "forenoon's": [], + "braining": [], + "alteredable": [], + "vow'sed": [], + "croquette": ["S", "M"], + "gremlin": ["S", "M"], + "malediction": ["S", "M"], + "priority's": [], + "xterm's": [], + "contribute": ["X", "G", "N", "D"], + "occurrences's": [], + "antsier": [], + "bellyaches": [], + "monolith": ["M"], + "peacefulnessly": [], + "shimmer": ["S", "M", "D", "G"], + "Citigroup's": [], + "leafless": [], + "teakettle's": [], + "insuperable": [], + "broiled": [], + "clews": [], + "landlubber'ses": [], + "hereunto": [], + "stubbornness": ["M"], + "panting": [], + "mizzen's": [], + "scalping": [], + "inaccessibly": [], + "quarterly's": [], + "bucklers": [], + "reverberated": [], + "rotating": [], + "Yates's": [], + "jury": ["I", "S", "M"], + "cay": ["C", "S", "M"], + "backer": ["M"], + "rubiest": [], + "semidarkness's": [], + "snoots's": [], + "hairsprings": [], + "Prakrit's": [], + "faxeds": [], + "lunchtime": ["M", "S"], + "reapplication": [], + "carriersing": [], + "wildlies": [], + "Web": ["M", "R"], + "truthful": ["U", "Y", "P"], + "Goodrich's": [], + "civilized": ["U"], + "cheat": ["Z", "G", "M", "D", "R", "S"], + "Jocasta": ["M"], + "inquiring": ["Y"], + "radical'sly": [], + "Ruthie": ["M"], + "prophets": [], + "endears": [], + "Marguerite": ["M"], + "strafed": [], + "freebooter": ["S", "M"], + "reproach'sed": [], + "headphones": [], + "leprechaun'ses": [], + "Renascence": [], + "disconsolate": ["Y"], + "literate": ["S", "M", "Y"], + "attaches": [], + "lab": ["S", "M"], + "inveigles": [], + "bugged": ["C"], + "bis": [], + "alignmenting": [], + "pellagra": ["M"], + "clinician's": [], + "climaxed": [], + "tribalism": ["M"], + "rye": ["M"], + "Mick's": [], + "installation's": [], + "lifespans": [], + "basic'ses": [], + "seconds": [], + "osprey's": [], + "Roseann's": [], + "blockader's": [], + "derevise": [], + "audiologist's": [], + "stewardeds": [], + "Victoria's": [], + "booths": [], + "Auriga's": [], + "patios": [], + "thickest": [], + "decliner's": [], + "fathoming": [], + "masturbation's": [], + "taxonomist": ["M", "S"], + "retaliatesing": [], + "miserliness's": [], + "movables": [], + "Siddhartha": ["M"], + "hallucination": ["M"], + "Tommy": ["M"], + "polecat": ["M", "S"], + "rareder": [], + "Remus": ["M"], + "paid": ["A", "U"], + "Breckenridge": ["M"], + "gouge's": [], + "cantankerousness": ["M"], + "saunaeds": [], + "possessor": ["S", "M"], + "Luddite's": [], + "bathysphere": ["M", "S"], + "avitaminosis": ["M"], + "snows": [], + "maceration's": [], + "revealingses": [], + "seamanship": ["M"], + "excisingen": [], + "firing": [], + "shimmies": [], + "turfed": [], + "plain": ["M", "R", "Y", "T", "S", "P"], + "describer": ["M"], + "weightlessliness": [], + "duopolies": [], + "grosbeak": ["M", "S"], + "wallpapers": [], + "gentlefolk": ["M", "S"], + "dished": [], + "unmatched": [], + "unerring": ["Y"], + "investor's": [], + "totaledly": [], + "indenture": ["D", "G"], + "moodiness": ["M"], + "reportedly": [], + "easel's": [], + "haunt's": [], + "gumballs": [], + "Colosseum": ["M"], + "routine's": [], + "conjunct": ["V", "M", "S"], + "ebullition's": [], + "Sammy's": [], + "gambol": ["S", "M", "D", "G"], + "worriers": [], + "alchemists": [], + "offstage": ["S"], + "zenens": [], + "wintrier": [], + "postie": ["S"], + "Gibbs": ["M"], + "shrieksing": [], + "doodles": [], + "adulterating": [], + "linty": ["T", "R"], + "suffocation": ["M"], + "peephole'ses": [], + "Ophelia": ["M"], + "divvy'sing": [], + "blimey": [], + "obsesseds": [], + "priestlier": [], + "Champollion": ["M"], + "aesthete": ["M", "S"], + "parapet'ses": [], + "subscription's": [], + "conniption'ses": [], + "shrewdness": ["M"], + "spook's": [], + "Debouillet": ["M"], + "crumpet'ses": [], + "globe's": [], + "arouses": [], + "wallow's": [], + "mutineers's": [], + "outfielder's": [], + "gel": ["S", "M"], + "Stephens's": [], + "gesticulates": [], + "Moiseyev's": [], + "fessed": [], + "schist": ["M"], + "yrs": [], + "browbeats": [], + "earphones": [], + "Benetton": ["M"], + "squeamishnessly": [], + "drub": ["S"], + "archesly": [], + "substantiation's": [], + "showoffs's": [], + "insole's": [], + "rowing's": [], + "Peters'sen": [], + "transverse'sly": [], + "vicarious": ["Y", "P"], + "classifiesed": [], + "slowpoke": ["S", "M"], + "oceanographic": [], + "shantytowns's": [], + "yeomanry's": [], + "response's": [], + "endangerment's": [], + "extemporaneous": ["P", "Y"], + "gamines": [], + "gradeds": [], + "golfings": [], + "affirmation'ses": [], + "Chippendale's": [], + "Newcastle's": [], + "torridliness": [], + "children's": [], + "thermoplastic's": [], + "Paraguayan's": [], + "lumping": [], + "phonologist'ses": [], + "postscript": ["S", "M"], + "mugs": [], + "airliners": [], + "duodenum": ["M"], + "squalor's": [], + "igniting": [], + "nonradioactive": [], + "husking": [], + "Florida": ["M"], + "righterly": [], + "duplicity": ["M"], + "papooses": [], + "rapper's": [], + "swoon's": [], + "amphibians": [], + "flasher": ["M"], + "streak": ["M", "D", "R", "S", "Z", "G"], + "nonsmokers's": [], + "graduating": [], + "whirlwind": ["M", "S"], + "aquavit": ["M"], + "guilder": ["M"], + "sandblastersing": [], + "keyboards": [], + "desperado": ["M"], + "croon's": [], + "docked": [], + "amalgamations": [], + "conspirator'ses": [], + "Frost": ["M"], + "feet": [], + "mother'sed": [], + "manufacturersing": [], + "clouded": ["U"], + "nine'ses": [], + "Tokyoite": [], + "north": ["Z", "M", "R"], + "gravity": ["M"], + "underscored": [], + "Juvenal": ["M"], + "fertilizer": ["M"], + "comforts": [], + "methodology's": [], + "Winnipeg's": [], + "Swinburne": ["M"], + "speweder": [], + "humidors": [], + "drive's": [], + "actualities": [], + "coalition'ses": [], + "weal's": [], + "timetable": ["D", "S", "M", "G"], + "Timmy": ["M"], + "snorer's": [], + "envisionings": [], + "counterclaimed": [], + "moats": [], + "huntress'ses": [], + "tacker": ["M"], + "shard's": [], + "airdrop's": [], + "shorteningsing": [], + "Loren": ["M"], + "driveler's": [], + "oxbow": ["M", "S"], + "theme's": [], + "Miaplacidus": ["M"], + "mulcheds": [], + "cowman": ["M"], + "semipro": ["S"], + "cemeteries's": [], + "tenets": [], + "airline's": [], + "umber": ["M"], + "beanbags": [], + "quietly": [], + "acceptable": [], + "militating": [], + "windpipe": ["M", "S"], + "talon": ["M", "S"], + "adulatesing": [], + "spindled": [], + "laudanum": ["M"], + "insubordinate": [], + "thingies": [], + "forester'ses": [], + "genome": ["M", "S"], + "nadir": ["S", "M"], + "misapprehension": ["M", "S"], + "bran": ["M"], + "methanol": ["M"], + "trivial": ["Y"], + "hollerings": [], + "troglodyte's": [], + "impeachers": [], + "catapult": ["G", "M", "D", "S"], + "bestoweding": [], + "frequenter's": [], + "setbacks": [], + "furnaces": [], + "topographic": [], + "scrupling": [], + "grandee'ses": [], + "thermometers": [], + "slicks's": [], + "impersonator": ["S", "M"], + "kickstand's": [], + "beloveds's": [], + "delphinium": ["M", "S"], + "cankerous": [], + "candyfloss": [], + "lentil'ses": [], + "osmium": ["M"], + "McGuire's": [], + "polestar": ["S", "M"], + "court's": [], + "APO": [], + "mockingbird": ["S", "M"], + "sludge's": [], + "midweeks": [], + "models": [], + "ordinariness": ["M"], + "Cali": ["M"], + "Irene": ["M"], + "Gerald": ["M"], + "blabbereding": [], + "goatherd's": [], + "supers": [], + "Pentagon": ["M"], + "cream's": [], + "tug's": [], + "pepped": [], + "luckiness's": [], + "Zambians": [], + "laziness's": [], + "jags's": [], + "carrel's": [], + "attenuated": [], + "musicologist's": [], + "plenty": ["M"], + "marimbas's": [], + "pewit": ["S", "M"], + "chastity's": [], + "Malaysian's": [], + "nomination's": ["A"], + "tweak'sed": [], + "piranha": ["S", "M"], + "pried": [], + "slits": [], + "resurrected": [], + "groupers": [], + "Santos": ["M"], + "fruit'sed": [], + "limpidness's": [], + "Pennzoil's": [], + "recapitalize": [], + "manipulated": [], + "gambling": ["M"], + "equability's": [], + "expressionism's": [], + "storefront'ses": [], + "rudimentary": [], + "piquant": ["Y"], + "Ecuadorians's": [], + "washtub": ["M", "S"], + "chatterboxes": [], + "NASDAQ": ["M"], + "sir": ["S", "X", "M", "N"], + "osteoporosis's": [], + "Schick's": [], + "bewilderingly": [], + "Pharisee's": [], + "plumage": ["M"], + "maroon'sed": [], + "shrimpeder": [], + "courteousness's": [], + "hosting": [], + "authorities": [], + "lengthened": [], + "persistence's": [], + "speckleds": [], + "location's": ["A"], + "modelings": [], + "Silva's": [], + "taco'ses": [], + "accordion": ["M", "S"], + "barometer": ["M", "S"], + "consultancy": ["S", "M"], + "naps": [], + "semigloss": ["S"], + "masterminding": [], + "tactile": [], + "hyperventilated": [], + "rot": ["S", "M"], + "Silesia's": [], + "Fredericton's": [], + "Ha": ["M"], + "Barnum": ["M"], + "huff's": [], + "hospices": [], + "forgives": [], + "flasks": [], + "bedazzleds": [], + "paisley": ["S", "M"], + "compunction's": [], + "Salween": ["M"], + "underratinged": [], + "NPR's": [], + "strivings": [], + "projectors": [], + "glockenspiel's": [], + "Alexis": ["M"], + "pressurizers": [], + "Minolta": ["M"], + "cynically": [], + "suppository's": [], + "Turk's": [], + "playlist'ses": [], + "ladies": [], + "aforethought": [], + "hibernation": ["M"], + "pertaining": [], + "differentiateds": [], + "avariciously": [], + "blind's": [], + "implemented": ["U"], + "seclusion": ["M"], + "heptathlons's": [], + "eviscerates": [], + "nonactive's": [], + "misinterpreting": [], + "bullrings": [], + "minteder": [], + "pessimistically": [], + "waterhole": ["S", "M"], + "sitemap": ["S", "M"], + "artwork": ["M", "S"], + "salon's": [], + "whooper": ["M"], + "Williamson's": [], + "Accenture's": [], + "Plexiglas's": [], + "agitators": [], + "steamrolleder": [], + "ransoming's": [], + "overbookeding": [], + "salaams's": [], + "moil's": [], + "Finnbogadottir's": [], + "outlininged": [], + "thalami": [], + "turncoats": [], + "chunkiness's": [], + "takings": ["M"], + "dills": [], + "Liverpudlians's": [], + "leashed": [], + "weaved": [], + "lapel's": [], + "egregiousnessly": [], + "coups": [], + "highboy'ses": [], + "pawnbroker's": [], + "wrangling": [], + "underwater": [], + "emblazons": [], + "effendi's": [], + "abstemiousnessly": [], + "flushes": [], + "irritating": ["Y"], + "mammoths": [], + "pang": ["M", "S"], + "nonflowering": [], + "seborrhea": ["M"], + "wrongfulness": ["M"], + "sermonizinged": [], + "decision's": [], + "Hoffa's": [], + "fragility's": [], + "Dreiser's": [], + "tetchier": [], + "astigmatisms": [], + "goddaughter's": [], + "clearways": [], + "chivalrousness's": [], + "trumpeteder": [], + "decided": ["Y"], + "imbecile'ses": [], + "punctual": ["Y"], + "drip's": [], + "goose'sing": [], + "bluefishes": [], + "wayfarer'ses": [], + "syncope": ["M"], + "condenseder": [], + "proper": ["M", "R", "Y", "T"], + "splashiness's": [], + "adventurersing": [], + "collates": [], + "roistering": [], + "curium": ["M"], + "rubato": ["S", "M"], + "boardinghouse": ["M", "S"], + "leas": [], + "internship's": [], + "singlies": [], + "nonresistance's": [], + "schoolmarmish": [], + "petal'sed": [], + "tithed": [], + "Gregorio": ["M"], + "nutty": ["R", "T", "P"], + "nightingale's": [], + "impersonationens": [], + "madrigal's": [], + "veggies": [], + "matchmaker": ["M", "S"], + "dissolves": [], + "consumed": ["U"], + "Lorre": ["M"], + "branding's": [], + "Kevlar's": [], + "wise'sly": [], + "artfulness": ["M"], + "flocked": [], + "connoisseurs's": [], + "drapeder": [], + "nacre": ["M"], + "pinnacle": ["S", "M"], + "inscrutability's": [], + "slighter": [], + "polio'ses": [], + "elitist'ses": [], + "surfeitsing": [], + "assigninged": [], + "bassoonists's": [], + "sigh's": [], + "uplifting": [], + "interrupter": ["M"], + "continue": ["E", "G", "D", "S"], + "Wilkins's": [], + "savagery's": [], + "haywire": [], + "storyboard": ["M", "S"], + "twopences's": [], + "fruiterers": [], + "wolfram's": [], + "academic": ["S", "M"], + "Russians's": [], + "d'Estaing's": [], + "traipsed": [], + "subservience's": [], + "incomprehensible": [], + "wrasse'ses": [], + "pubis": ["M"], + "imprecatesens": [], + "nonmetal": ["S", "M"], + "hypothesize": ["D", "S", "G"], + "Terri's": [], + "oho": [], + "courageousliness": [], + "embroiling": [], + "faucet": ["S", "M"], + "potshot": ["M", "S"], + "soars": [], + "buoyancy's": [], + "scamper'sed": [], + "gouaches": [], + "hemophiliacs": [], + "shuffleboard": ["S", "M"], + "mincersing": [], + "Aquarius": ["M", "S"], + "Styrofoams": [], + "comersing": [], + "unworldliness": [], + "mousing": [], + "deviousness": ["M"], + "Dakotan": ["M"], + "llanos's": [], + "Sheena's": [], + "avow": ["E", "D", "G", "S"], + "sustainedable": [], + "adage'ses": [], + "overexposes": [], + "spurring": [], + "sweetie's": [], + "hearten": ["E", "S", "G", "D"], + "Korea's": [], + "proboscis's": [], + "confluence": ["M", "S"], + "proponent": ["S", "M"], + "seducers": [], + "Portsmouth's": [], + "illuminates": [], + "leashesing": [], + "tiffed": [], + "attires": [], + "Cedric": ["M"], + "riverbanks": [], + "wharves": [], + "interconnecting": [], + "beckoning": [], + "moderation's": [], + "manual": ["M", "Y", "S"], + "drifted": [], + "spam": ["M", "S"], + "scaliest": [], + "sciatica's": [], + "reel's": [], + "marabouts's": [], + "scampers": [], + "boxer": ["M"], + "Galbraith's": [], + "cypress": ["M", "S"], + "crematoriums": [], + "Nicene's": [], + "smithereens's": [], + "cahoot": ["M", "S"], + "trembled": [], + "Colon": ["M"], + "vivisectionist": ["S", "M"], + "consignor": [], + "Alyssa": ["M"], + "doll's": [], + "beaker's": [], + "plantlike": [], + "Molokai": ["M"], + "sixteens": [], + "prekindergarten": ["S", "M"], + "bandeaux": [], + "hopelessness": ["M"], + "blackthorn's": [], + "assholes": [], + "arousing": [], + "rattlebrain": ["S", "M", "D"], + "vastsness": [], + "plank": ["M", "D", "G", "S"], + "gleam": ["S", "M", "D", "G", "J"], + "nannies's": [], + "Wessex's": [], + "spawneding": [], + "blokes": [], + "announcementers": [], + "headlined": [], + "stethoscope": ["M", "S"], + "appointing": [], + "petrol": ["M"], + "Cooke": ["M"], + "subordinate's": [], + "Anglo's": [], + "dutifulness": ["M"], + "teacups": [], + "snubbing": [], + "stein's": [], + "wildfowl": ["M"], + "sextuplets's": [], + "squirrels": [], + "freeloadsed": [], + "flavor": ["M", "D", "S", "G", "J"], + "versification's": [], + "meliorated": [], + "itchesing": [], + "hangs": [], + "canonized": [], + "jadeds": [], + "tail's": [], + "episode": ["S", "M"], + "pointing": [], + "protocol'ses": [], + "Concetta": ["M"], + "nasturtium's": [], + "hunters": [], + "papal": [], + "sequencinged": [], + "duo": ["S", "M"], + "sobriety's": [], + "decoupage's": [], + "waxiest": [], + "Doreen's": [], + "Zairian": [], + "repulsive": ["Y", "P"], + "refraction": ["M"], + "Pavlova's": [], + "tickings": [], + "sit": ["S"], + "Bali's": [], + "nauseousness's": [], + "reformatory": ["S", "M"], + "crusher": ["M"], + "scandalmongers": [], + "frack": ["S", "D", "G"], + "jutted": [], + "porches": [], + "Amerinds's": [], + "certificate's": [], + "steadied": [], + "poignant": ["Y"], + "rodent's": [], + "kestrel'ses": [], + "Dave's": [], + "passels": [], + "privileged": ["U"], + "Landsat's": [], + "notarized": [], + "Boris": ["M"], + "spaceships's": [], + "captor'ses": [], + "Kiowa's": [], + "tinging": [], + "disruption's": [], + "fwy": [], + "sentinel'ses": [], + "undercoating's": [], + "cleats": [], + "feta's": [], + "drifts": [], + "cortical": [], + "beachesing": [], + "anglers": [], + "contortionists": [], + "Biden": ["M"], + "misquote": ["M", "G", "D", "S"], + "emceeds": [], + "German'ses": [], + "ca": [], + "depictinged": [], + "dachshunds": [], + "cease'sing": [], + "importables": [], + "Guadalajara": ["M"], + "costsings": [], + "boondoggle'sers": [], + "wham'ses": [], + "jitney": ["S", "M"], + "Decca": ["M"], + "Congreve": ["M"], + "Condillac's": [], + "quixotically": [], + "LPNs": [], + "streetwalkers": [], + "nonviable": [], + "enamoring": [], + "spellcheck'sed": [], + "geodesy's": [], + "agrarians": [], + "effaceds": [], + "amasseds": [], + "parapsychologist": ["M", "S"], + "breeziness": ["M"], + "Mercia": ["M"], + "Elvis's": [], + "edger": ["M"], + "HTML's": [], + "discovering": [], + "kited": [], + "servility's": [], + "tickets": [], + "imagination'ses": [], + "Anne's": [], + "ceaseds": [], + "rototiller'ses": [], + "carting": [], + "befallsing": [], + "shatterproof": [], + "eve": ["A", "S", "M"], + "rewrote": [], + "Salamis's": [], + "southward": ["M", "S"], + "Mazatlan": ["M"], + "groundbreaking": ["M", "S"], + "perceptiveness's": [], + "radarscope's": [], + "exquisite": ["Y", "P"], + "hotheaded": ["Y", "P"], + "flippers": [], + "archenemies": [], + "nanotechnologies": [], + "counterpanes's": [], + "staidly": [], + "convertibility's": [], + "Heraclitus": ["M"], + "premiere's": [], + "calculators's": [], + "isolation": ["M"], + "trestle's": [], + "traducersing": [], + "EKG": ["M"], + "prorates": [], + "hematite": ["M"], + "Janice's": [], + "homonym": ["S", "M"], + "joggles": [], + "Ziegler": ["M"], + "too": [], + "teletypewriter's": [], + "gravimeter's": [], + "skiffle": [], + "Lynn": ["M"], + "patties": [], + "gainings": [], + "craftily": [], + "laminae": [], + "Blavatsky's": [], + "wrestlinged": [], + "surroundsed": [], + "pioneering": [], + "narwhal'ses": [], + "disemboweling": [], + "keratin's": [], + "overeatsen": [], + "Tyree's": [], + "kayaking's": [], + "doubts": [], + "hubby": ["S", "M"], + "timeliest": [], + "breakfront's": [], + "complement": ["S", "G", "M", "D"], + "viable": [], + "dinosaurs": [], + "Ptolemaic's": [], + "schmo's": [], + "neurosurgeon": ["M", "S"], + "incandescent": ["Y"], + "throatier": [], + "Telugu": ["M"], + "degenerate": ["M", "V"], + "infancy's": [], + "shorthand": ["M", "D"], + "egomaniac'ses": [], + "seborrhea's": [], + "thinners": [], + "derideds": [], + "inanimate": ["P", "Y"], + "wondering": ["Y"], + "Pandora's": [], + "cavalry's": [], + "inelegant": [], + "loquacious": ["P", "Y"], + "wrangles's": [], + "leopardess's": [], + "sedentary": [], + "meditation": ["M"], + "Pygmies": [], + "chirpeds": [], + "Kerr's": [], + "girlfriends": [], + "scorchers": [], + "Fushun": ["M"], + "landownership": [], + "Kanchenjunga's": [], + "paragliding": [], + "Lilongwe's": [], + "sweepings's": [], + "Vladivostok's": [], + "Clive's": [], + "Mexicans": [], + "Jodi's": [], + "dactylic's": [], + "Georgians": [], + "showoffs": [], + "redactor's": [], + "Stilton's": [], + "palmists": [], + "bevies": [], + "Thu": [], + "strongrooms": [], + "Guadalupe's": [], + "Niebuhr": ["M"], + "spacemen": [], + "wardrobe's": [], + "Atropos": ["M"], + "pratfall's": [], + "promptingsness": [], + "evangelist": ["M", "S"], + "moonshine's": [], + "mailmen": [], + "scientists's": [], + "florists's": [], + "formats": [], + "irritatesens": [], + "yashmaks": [], + "middens": [], + "torque": ["M", "G", "D", "S"], + "Iowans": [], + "Watusi's": [], + "palliate": ["D", "S", "G", "N", "V"], + "tantrums": [], + "henchman's": [], + "renewsable": [], + "using": [], + "platys": [], + "reader": ["M"], + "flicker": ["G", "M", "D"], + "lioness": ["M", "S"], + "confab's": [], + "satiateds": [], + "superstar'ses": [], + "uniformlying": [], + "meritocratic": [], + "lullaby's": [], + "winner": ["S", "M"], + "edicts's": [], + "returnees's": [], + "sing'sed": [], + "proving": [], + "misconstruinged": [], + "pacersing": [], + "swooping's": [], + "whirlwinds": [], + "Holly": ["M"], + "gulp's": [], + "generalship": ["M"], + "overcapacity's": [], + "rediscord": [], + "estimators": [], + "cullings": [], + "acquaintance": ["S", "M"], + "chewier": [], + "wiping": [], + "mandolin'ses": [], + "preaches": [], + "shoelace": ["M", "S"], + "gamekeeper": ["M", "S"], + "gloppy": [], + "trusty's": [], + "carnies": [], + "officiant's": [], + "menhaden": ["M"], + "luxuriate": ["D", "S", "G", "N"], + "ism": ["C", "M"], + "drove's": [], + "amaze": ["L", "M", "G", "D", "S"], + "bedizens": [], + "mutilatingen": [], + "guestroom": ["S"], + "gallons": [], + "Nebr": [], + "weevil's": [], + "breadbaskets's": [], + "cacao'ses": [], + "jigsawed": [], + "deceit'ses": [], + "defrauder's": [], + "hustle": ["D", "R", "S", "M", "Z", "G"], + "kneadinged": [], + "Volstead": ["M"], + "bx": [], + "weakling's": [], + "bated": [], + "bismuth": ["M"], + "biochemists": [], + "confluent": [], + "squalidness": ["M"], + "euthanizing": [], + "downsizeds": [], + "freebase": ["M", "G", "D", "S"], + "domestics": [], + "windmilled": [], + "large's": [], + "unfit": ["S"], + "varietal's": [], + "synchronously": [], + "babysitter's": [], + "mandamuses": [], + "outweighs": [], + "cording": [], + "substances's": [], + "trotter's": [], + "attendances's": [], + "scooting": [], + "unsaid": [], + "Mickie": ["M"], + "restfulness's": [], + "nickname": ["D", "S", "M", "G"], + "milf": ["M", "S"], + "evacuationsed": [], + "dearth's": [], + "hiking's": [], + "bountifulliness": [], + "tipped": [], + "backslapper": ["S", "M"], + "novelty's": [], + "offense's": [], + "categories": [], + "bleakness": ["M"], + "gratin": ["S"], + "raucously": [], + "playact": ["S", "G", "D"], + "wrinkliest": [], + "contrary": ["P", "S", "M"], + "young'ser": [], + "tailwinds": [], + "plenipotentiaries": [], + "falcons's": [], + "Josh's": [], + "monastically": [], + "idea": ["M", "S"], + "Bobbie": ["M"], + "harmoniousness's": [], + "piccolo'ses": [], + "crookedest": [], + "Massasoit": ["M"], + "honer's": [], + "purposeless": ["P", "Y"], + "corbels's": [], + "guardsers": [], + "calendar": ["M", "D", "G", "S"], + "sidelineds": [], + "Allies": [], + "wiseacre": ["S", "M"], + "ransomware": [], + "widower's": [], + "curlicue": ["D", "S", "M", "G"], + "certainties's": [], + "crankshaft'ses": [], + "Payne's": [], + "squelch'sed": [], + "preface's": [], + "memoir": ["M", "S"], + "reeducate": [], + "posting": ["M"], + "numerateds": [], + "dermatitis": ["M"], + "aerogram": ["S"], + "verso's": [], + "narcotization": ["M"], + "teleprompters's": [], + "hybridizing": [], + "quenchesable": [], + "marines": [], + "friaries's": [], + "Frigga": ["M"], + "befitted": [], + "matriarchy's": [], + "charmless": [], + "showstopping": [], + "metros's": [], + "VAT": ["M"], + "fang'sed": [], + "unified": [], + "mobsters's": [], + "trendiness": ["M"], + "sunshade'ses": [], + "brainwash": ["D", "S", "G"], + "sire": ["C", "M", "G", "D", "S"], + "consultants": [], + "addendum's": [], + "cementers": [], + "descender": [], + "wavering's": [], + "deboucheds": [], + "noodlinged": [], + "friezes": [], + "pushover'ses": [], + "evergreens": [], + "snapping": ["U"], + "cavity's": [], + "hummocks": [], + "hampereds": [], + "thickens": [], + "handler": ["M"], + "modality": ["S"], + "squiggly": [], + "kitten'ses": [], + "collectivization's": [], + "retirees's": [], + "chugs's": [], + "thirsting": [], + "Appalachia's": [], + "nearness's": [], + "kroner": [], + "outrank": ["G", "D", "S"], + "skepticism": ["M"], + "watermelon's": [], + "saintlinesser": [], + "Hamburg's": [], + "blower": ["M"], + "billfolds's": [], + "dabblinged": [], + "leavens": [], + "predetermining": [], + "wallabies": [], + "menagerie's": [], + "specifically": [], + "Lorna": ["M"], + "Libra": ["M", "S"], + "inflorescent": [], + "Doonesbury's": [], + "masquerade'sers": [], + "Uranus's": [], + "cascades's": [], + "bullheadedness": ["M"], + "sinkablers": [], + "ponderers": [], + "subsidiaries's": [], + "untraceable": [], + "Librium's": [], + "defection'ses": [], + "beveling": [], + "straightedge's": [], + "polishers": [], + "embalmers": [], + "redbirds's": [], + "deciding": [], + "intoxicateds": [], + "smudges's": [], + "penman": ["M"], + "pendulum'ses": [], + "Osiris's": [], + "biceps": ["M"], + "mountaineering's": [], + "jetty's": [], + "wadis": [], + "miscommunication": ["S"], + "documentaries's": [], + "hermitage'ses": [], + "stably": ["U"], + "wood'sed": [], + "tolerably": ["I"], + "alkalizeds": [], + "fifth": ["M", "Y"], + "backwoodsman": ["M"], + "Oxus": ["M"], + "viaducts's": [], + "PCB": [], + "slummer": [], + "gassy": ["R", "T"], + "obviated": [], + "standardization": ["M"], + "peeves": [], + "stride'sing": [], + "discreteness's": [], + "timbres's": [], + "trenching": [], + "geldingsing": [], + "nonoperative": [], + "mesh'sed": [], + "statements": [], + "Instagram's": [], + "IKEA's": [], + "storminess's": [], + "paracetamols": [], + "suburbans's": [], + "shuttle": ["D", "S", "M", "G"], + "penologist's": [], + "presence": ["S", "M"], + "bodybuilders": [], + "keepers": [], + "crones's": [], + "houseboys's": [], + "movables's": [], + "perfusion": [], + "cooks": [], + "excerpted": [], + "more": ["M", "S"], + "transept'ses": [], + "fleshes": [], + "mossback": ["S", "M"], + "junketeds": [], + "Milo": ["M"], + "gusset": ["M", "S", "D", "G"], + "intertwineds": [], + "loggias's": [], + "aspidistra's": [], + "resonator's": [], + "pottinesser": [], + "mediator": ["M", "S"], + "Keogh": ["M"], + "payablement": [], + "connote": [], + "Diaghilev": ["M"], + "permanents": [], + "litany's": [], + "unsatisfactorily": [], + "vegetables": [], + "dirk's": [], + "surferers": [], + "decayinged": [], + "fornicator": ["M", "S"], + "optima": [], + "trekking": [], + "crankiness": ["M"], + "Chippewas": [], + "hamburg": ["S", "Z", "M", "R"], + "rifest": [], + "eaten": ["U"], + "dimples's": [], + "befuddlingment": [], + "eyelet": ["S", "M"], + "midfielders": [], + "secretaryship's": [], + "palatine": ["M", "S"], + "lyceum": ["M", "S"], + "tidier": [], + "decidablers": [], + "variances": [], + "callowness's": [], + "squeaked": [], + "conductors": [], + "pocketful's": [], + "occupieds": [], + "bats's": [], + "responsibility": ["S", "M"], + "sickened": [], + "underlay's": [], + "event's": [], + "libido's": [], + "backwaters's": [], + "Jacuzzi's": [], + "coop": ["M", "D", "R", "Z", "G", "S"], + "gnashesing": [], + "rat": ["S", "M"], + "photographing": [], + "lee's": [], + "starvelings": [], + "demarcation": ["M"], + "walleye's": [], + "Gideon's": [], + "deplane": [], + "cheeseburgers's": [], + "Bernbach": ["M"], + "RAMs's": [], + "Flint": ["M"], + "pocketfuls's": [], + "Izmir's": [], + "decimalization": [], + "sauropod's": [], + "scornful": ["Y"], + "laundress'ses": [], + "stationary": [], + "faerie": ["S", "M"], + "rollover": ["S", "M"], + "honoring": [], + "consumable": ["S", "M"], + "weep": ["M", "R", "J", "S", "Z", "G"], + "Sankara": ["M"], + "ranchersing": [], + "psychoneuroses": [], + "filchesing": [], + "fatter": [], + "verbiage's": [], + "ROM's": [], + "dethroning": [], + "surliness's": [], + "gay": ["T", "S", "P", "M", "R"], + "deist's": [], + "mother": ["M", "D", "Y", "S", "G"], + "excoriation's": [], + "tarsal": ["M", "S"], + "wrapping'ses": [], + "scrolls's": [], + "litchi'ses": [], + "invadeder": [], + "Pavlov": ["M"], + "XS": [], + "tuneder": [], + "jangle'sers": [], + "Michelson": ["M"], + "silken": [], + "ironmonger": ["S"], + "harvesterers": [], + "sensuousness": ["M"], + "licksing": [], + "gangland's": [], + "televangelist'ses": [], + "sign": ["A", "F", "C", "G", "D", "S"], + "sprocket": ["M", "S"], + "inhalers's": [], + "cache'sing": [], + "Dewitt's": [], + "segregationist": ["M", "S"], + "deridinged": [], + "contraindicationsed": [], + "Poitier": ["M"], + "segmentings": [], + "gender'sed": [], + "earthwork'ses": [], + "palatalization's": [], + "hoodoo's": [], + "newton's": [], + "Tunisian's": [], + "Ramsay": ["M"], + "Trudy's": [], + "continentals's": [], + "freeways": [], + "Kerry": ["M"], + "agrarianism's": [], + "incredibly": [], + "blotches": [], + "chocking's": [], + "premed": ["S", "M"], + "complicatedly": [], + "hosed": [], + "Pascals": [], + "qualifications": [], + "subscriber'ses": [], + "cronies's": [], + "drudge": ["M", "G", "D", "S"], + "stimulus": ["M"], + "earthliest": [], + "market'sed": [], + "Winifred": ["M"], + "Lassen's": [], + "phishersing": [], + "pandemic": ["S", "M"], + "theist": ["S", "M"], + "commoner": ["M", "S"], + "infant's": [], + "stockyards": [], + "vagabond": ["S", "M", "D", "G"], + "staffers": [], + "homework's": [], + "breadbaskets": [], + "alarmist": ["S", "M"], + "noticeboards": [], + "farmhand's": [], + "woken": [], + "creamers": [], + "banns's": [], + "shirtwaist'ses": [], + "thrall's": [], + "aloud": [], + "catalysis": ["M"], + "spieled": [], + "shackleds": [], + "dismembered": [], + "Braille": ["M", "S"], + "incarnadineds": [], + "berserk": [], + "fingerings": [], + "woodpecker'ses": [], + "corks": [], + "marinades's": [], + "tininess": ["M"], + "scene": ["M", "S"], + "transcribe": ["Z", "G", "D", "R", "S"], + "quoth": [], + "wantonnessing": [], + "Edmund's": [], + "Bryon's": [], + "aggregating": [], + "ROTC": ["M"], + "sheer's": [], + "Oort": ["M"], + "defoliateds": [], + "peroxides": [], + "afterthought's": [], + "fusibility's": [], + "liberation's": [], + "person'ses": [], + "logistic": ["S"], + "rectors": [], + "Stephens": ["M"], + "muskellunge": ["M", "S"], + "barbel": ["S", "M"], + "futon": ["S", "M"], + "jitterbugged": [], + "join": ["A", "F", "D", "S", "G"], + "mobility": ["M"], + "aspics": [], + "Hoff": ["M"], + "nonpaying": [], + "finickierness": [], + "dabble": ["Z", "G", "D", "R", "S"], + "crams": [], + "hybridization's": [], + "dupe's": [], + "Levesque": ["M"], + "tomtit's": [], + "aurora's": [], + "plait": ["M", "D", "G", "S"], + "liable": ["A"], + "shied": [], + "nimrod": ["M", "S"], + "slitter": [], + "doffs": [], + "backdates": [], + "toot": ["M", "D", "R", "Z", "G", "S"], + "militarists": [], + "congested": [], + "hubbubs": [], + "contraindicate": ["G", "N", "X", "D", "S"], + "ratiocinationed": [], + "straightness": ["M"], + "acerbate": ["D", "S", "G"], + "snackeding": [], + "iodine": ["M"], + "glass's": [], + "funnies": [], + "blackbird": ["S", "M"], + "joules": [], + "musics": [], + "Vulgate": ["S", "M"], + "forked": [], + "masksing": [], + "serration's": [], + "caissons": [], + "adv": [], + "haycocks": [], + "crockery's": [], + "knitters": [], + "abrasive's": [], + "conglomerations": [], + "rainfall's": [], + "conglomerate's": [], + "smelleding": [], + "outnumbered": [], + "costumed": [], + "perturbeding": [], + "sieges": [], + "tithersing": [], + "leadeden": [], + "ironclad's": [], + "divorcing": [], + "capping": ["U", "A"], + "archbishopric": ["S", "M"], + "demonstrate": ["X", "G", "N", "V", "D", "S"], + "shoddy's": [], + "Fukuoka": ["M"], + "Arizonan": ["S", "M"], + "Guatemala's": [], + "cassock": ["S", "M"], + "tenth's": [], + "nonenforceable": [], + "snout's": [], + "Beverley": ["M"], + "nectarine": ["M", "S"], + "photographic": [], + "convolution'ses": [], + "accordions": [], + "lamasery": ["S", "M"], + "graspedable": [], + "FedEx": ["M"], + "nickelodeon": ["S", "M"], + "dethrone": ["D", "S", "L", "G"], + "acupuncturists's": [], + "illiberality": ["M"], + "puffer": ["M"], + "inveterate": [], + "Whitfield": ["M"], + "giver": ["M"], + "propagateds": [], + "consensuses": [], + "outproducesing": [], + "besots": [], + "Dunant's": [], + "Luzon": ["M"], + "bait": ["S", "G", "M", "D"], + "tracery's": [], + "homogenizesing": [], + "sorer": [], + "rickshaws": [], + "extraneous": ["Y"], + "fitness": ["U", "M"], + "menstruation": ["M"], + "tablets's": [], + "foxhunting": [], + "explosive": ["S", "P", "M", "Y"], + "identifiesens": [], + "waiting": ["M"], + "removals": [], + "wheeziness's": [], + "leverageds": [], + "chubbiest": [], + "quirks's": [], + "stockholder": ["S", "M"], + "germinatingen": [], + "cryptographer": ["S", "M"], + "fill's": [], + "colorants's": [], + "shamelessness": ["M"], + "irrefutable": [], + "bozos": [], + "affrays": [], + "nurturers": [], + "declines": [], + "overindulgent": [], + "prosiest": [], + "rendings": [], + "Walesa's": [], + "interlacinged": [], + "inched": [], + "businesspersons's": [], + "shriven": [], + "Sutton's": [], + "coronet's": [], + "derecontaminate": [], + "floweding": [], + "slaveholder": ["M", "S"], + "Clearasil's": [], + "embanksment": [], + "explodeds": [], + "radiometer's": [], + "cupolas's": [], + "jellyfishes": [], + "Crater": ["M"], + "rhinoceros'ses": [], + "briber's": [], + "woodwinds": [], + "drolly": [], + "close": ["D", "R", "S", "M", "Y", "T", "G", "J", "P"], + "upchucksing": [], + "faithful's": [], + "eulogizeder": [], + "Orleans's": [], + "Mensa's": [], + "eliminator": ["S"], + "showed": [], + "Thurmond": ["M"], + "Adidas": ["M"], + "mangrove'ses": [], + "collaborationsing": [], + "bearlike": [], + "relisheds": [], + "Szymborska": ["M"], + "diphthong's": [], + "proxy": ["S", "M"], + "twittery": [], + "updateder": [], + "hokeds": [], + "excitementers": [], + "overhands": [], + "tor's": [], + "doublet": ["M", "S"], + "subdividinged": [], + "crispiest": [], + "specimen": ["S", "M"], + "swanned": [], + "fizz": ["M", "D", "S", "G"], + "polyclinics's": [], + "meringues": [], + "wolf's": [], + "Lippmann's": [], + "Gunther's": [], + "clarinets": [], + "newspapers": [], + "multitasking": ["M"], + "sob": ["S", "M"], + "taffeta": ["M"], + "anodyne": ["M", "S"], + "objectified": [], + "shrews": [], + "octagons": [], + "Selim's": [], + "unappreciative": [], + "introduceds": [], + "vinegar's": [], + "litterateurs": [], + "tablets": [], + "unwieldierness": [], + "scrooges": [], + "Sam": ["M"], + "worlds": [], + "singsongs": [], + "reaming's": [], + "molecularity": ["M"], + "dialysis's": [], + "girl'ses": [], + "steals's": [], + "cuboids": [], + "creation's": ["K"], + "tenant'sed": [], + "Srivijaya": ["M"], + "sackful": ["M", "S"], + "wackier": [], + "resourcefulness": ["M"], + "tipsy": ["R", "P", "T"], + "coursework": [], + "fantail's": [], + "windbreak's": [], + "plenteous": [], + "driveshaft's": [], + "extraditionable": [], + "adorable": [], + "imper": [], + "scent's": [], + "forgetfulliness": [], + "rethinking's": [], + "shrug": ["M", "S"], + "Dijon": ["M"], + "Sunbelt's": [], + "buttress": ["M", "D", "S", "G"], + "contract": ["M", "D", "G"], + "delivery": [], + "dissertations": [], + "pillion": ["M", "S"], + "twangs": [], + "bonersing": [], + "humphs": [], + "chorused": [], + "apportion": ["A", "G", "D", "L", "S"], + "goldmine's": [], + "zinnia'ses": [], + "hail'sed": [], + "reincorporation": [], + "Montgolfier": ["M"], + "interposes": [], + "jeering": ["M", "Y"], + "Harlow's": [], + "intensify": ["D", "R", "S", "Z", "G", "N"], + "Barnes's": [], + "catchall's": [], + "acheds": [], + "krona": ["M"], + "bequest's": [], + "flimsily": [], + "circumnavigating": [], + "cornrows": [], + "jib's": [], + "amplifying": [], + "SPCA": [], + "harmonization": ["M"], + "RF": [], + "Rockefeller": ["M"], + "passerby": ["M"], + "scalpel's": [], + "coruscateds": [], + "tortuous": ["P", "Y"], + "encumbrance": ["M", "S"], + "fibrillatingen": [], + "Chesterfield's": [], + "Congresses": [], + "descriptor": ["S"], + "inferred": [], + "powers": [], + "ease": ["E", "D", "S", "M"], + "Workman's": [], + "aristocracy": ["S", "M"], + "courtesy": ["E", "S", "M"], + "blog": ["S", "M"], + "Ladoga": ["M"], + "opprobriously": [], + "Akiva's": [], + "inlet": [], + "acetic": [], + "freelancers": [], + "crewmen": [], + "Larson's": [], + "drawback's": [], + "ghettoizeds": [], + "scuba's": [], + "bolder": [], + "lineament": ["S", "M"], + "circus'ses": [], + "marinade's": [], + "stoner's": [], + "mites": [], + "mezzos": [], + "Rockne's": [], + "spayed": [], + "Bulfinch": ["M"], + "schuss'sed": [], + "irradiate": ["D", "S", "G", "N"], + "keyword's": [], + "netbooks": [], + "Colfax": ["M"], + "Yong's": [], + "haloeding": [], + "ordure": ["M"], + "pilotings": [], + "indignity": [], + "higher": [], + "welshersing": [], + "Chiquita": ["M"], + "semitone's": [], + "dampeners": [], + "Borden's": [], + "typefaces": [], + "seepeds": [], + "Epicurean's": [], + "watching's": [], + "shakinger": [], + "tailoring's": [], + "adjudicationsed": [], + "ensnarementing": [], + "hobgoblin's": [], + "jackass'ses": [], + "Tammi's": [], + "evacuate": ["X", "D", "S", "G", "N"], + "override's": [], + "underclassman's": [], + "granaries's": [], + "menstruateds": [], + "defoliant": ["S", "M"], + "Shetland": ["S", "M"], + "Lyndon's": [], + "Grafton's": [], + "foppish": ["P"], + "disbursement": ["M", "S"], + "manuals": [], + "Hatteras": ["M"], + "billhook": ["S"], + "decorous": ["I", "Y"], + "resolve's": [], + "piddlinged": [], + "fraudster": ["S"], + "incisingen": [], + "Loews": ["M"], + "diagnoses": [], + "telephone": ["D", "R", "S", "M", "Z", "G"], + "midget's": [], + "encouraged": [], + "bodega's": [], + "maned": [], + "fanning": [], + "venerability": ["M"], + "Ayurveda": ["M"], + "Pruitt's": [], + "remaininged": [], + "depletion's": [], + "passingen": [], + "changeability's": [], + "variate": ["N", "X"], + "uprears": [], + "spleens's": [], + "Ch'in's": [], + "emptying": [], + "quiche's": [], + "friending": [], + "diocesan": ["M", "S"], + "relegationed": [], + "saboteurs's": [], + "casehardened": [], + "laetrile's": [], + "tauten": ["D", "G"], + "derailleur": ["S", "M"], + "superabundance's": [], + "schillings": [], + "torqueds": [], + "mercer'ses": [], + "caparison'sed": [], + "swampiest": [], + "murmured": [], + "alligator": ["M", "S"], + "Klansman's": [], + "violables": [], + "purloininged": [], + "pressurizer": ["S", "M"], + "buyersing": [], + "proportions's": [], + "Kulthumm's": [], + "blenched": [], + "anacondas": [], + "roughhouses": [], + "Gus": ["M"], + "gurgled": [], + "happeningings": [], + "palisade": ["S", "M"], + "mestizo'ses": [], + "welcomeds": [], + "sharked": [], + "Polyphemus": ["M"], + "fessesed": [], + "hexing's": [], + "Croatian": ["M", "S"], + "Carver's": [], + "steamers": [], + "embezzled": [], + "pinion": ["S", "M", "D", "G"], + "protrudinged": [], + "unworthiest": [], + "conducteding": [], + "handfuls": [], + "Alberto": ["M"], + "excess": ["V", "M", "S"], + "patsy": ["S", "M"], + "Bernard": ["M"], + "Me": [], + "Clemenceau": ["M"], + "palmtop": ["S", "M"], + "jeweling": [], + "scolding": ["M"], + "forty": ["S", "M", "H"], + "seedpod's": [], + "muggier": [], + "grenade": ["S", "M"], + "overweeningly": [], + "okra's": [], + "alimentsing": [], + "souffles": [], + "stairwell": ["S", "M"], + "hypothalamus's": [], + "Hague": ["M"], + "particulates": [], + "payroll's": [], + "McKenzie's": [], + "duckweed": ["M"], + "mushes": [], + "curating": [], + "grumbleder": [], + "engineering": ["M"], + "photoengrave": ["D", "R", "S", "J", "Z", "G"], + "Bohemia's": [], + "psycho": ["S", "M"], + "demonstrator": ["M", "S"], + "regard's": [], + "blandest": [], + "footballings": [], + "rumpus's": [], + "performsed": [], + "Annabelle's": [], + "borzoi's": [], + "italicizeds": [], + "plumbing": ["M"], + "backstroke's": [], + "sappiness's": [], + "valetudinarianism": ["M"], + "excavate": ["G", "N", "D", "S", "X"], + "Malay": ["M", "S"], + "captivities's": [], + "obdurate": ["P", "Y"], + "hickory's": [], + "portents's": [], + "meanly": [], + "chameleon": ["S", "M"], + "Crane": ["M"], + "splat": ["S", "M"], + "crematesens": [], + "Capri": ["M"], + "cossetinged": [], + "parquets": [], + "egos's": [], + "poll": ["G", "M", "D", "N", "S"], + "hamlets": [], + "impersonator's": [], + "interpolatingen": [], + "irregularly": [], + "audaciousliness": [], + "Jeeves's": [], + "Bunche": ["M"], + "stander's": [], + "deejay's": [], + "Melpomene": ["M"], + "collaborating": [], + "Caroline": ["M"], + "lyrically": [], + "tailspins": [], + "dipterous": [], + "patsies": [], + "cavilings's": [], + "modernness": ["M"], + "princeliness's": [], + "illicitly": [], + "comprised": [], + "suborder'ses": [], + "overflowsing": [], + "uninhabitable": [], + "tent": ["D", "G", "S", "M"], + "shewing": [], + "Calvinist": ["M", "S"], + "archaeological": ["Y"], + "hygiene": ["M"], + "Callahan": ["M"], + "loosener": [], + "soldiers": [], + "user": ["M", "S"], + "promised": [], + "versing's": [], + "Kommunizma's": [], + "almoners": [], + "opaqueder": [], + "categorized": [], + "grittier": [], + "transported": [], + "sunders": [], + "concerts": [], + "meander": ["S", "M", "D", "J", "G"], + "dial's": [], + "misnames": [], + "infirmities": [], + "democratization's": [], + "bestowals's": [], + "ignobly": [], + "Mani": ["M"], + "traveler": ["M"], + "wheels's": [], + "censurabled": [], + "dilutions": [], + "unnoticeable": [], + "industrially": [], + "Pottawatomie": ["M"], + "veraciously": [], + "Giotto": ["M"], + "briefness": ["M"], + "Cancers's": [], + "chance": ["M", "G", "D", "S"], + "destination's": [], + "satirist": ["S", "M"], + "Wilma": ["M"], + "Sexton": ["M"], + "towlines": [], + "keepsake'ses": [], + "scoopful": ["M", "S"], + "preheated": [], + "disputatiously": [], + "ataxic'ses": [], + "cumbersed": [], + "buttercream": [], + "madder": ["M", "S"], + "infers": [], + "rouges": [], + "potential's": [], + "salesmanship's": [], + "ungrateful": [], + "corpulent": [], + "foregrounding": [], + "underwireds": [], + "floats": [], + "shaft's": [], + "canines": [], + "intersectinged": [], + "kaleidoscope's": [], + "bottle'sers": [], + "propels": [], + "EDP": ["M"], + "falsest": [], + "launderer": ["M"], + "L'Ouverture's": [], + "wetness": ["M"], + "bobbing": [], + "jabber": ["S", "M", "D", "R", "Z", "G"], + "provincialism": ["M"], + "MTV's": [], + "violet'ses": [], + "Valentino's": [], + "applauded": [], + "Flaubert's": [], + "obviating": [], + "Alexandra": ["M"], + "gangbusters": ["M"], + "crossbeam'ses": [], + "Britannic": ["M"], + "DEA": [], + "Exodus's": [], + "substantiatingen": [], + "eggplant'ses": [], + "impugneder": [], + "mignonettes": [], + "Jonah's": [], + "debts's": [], + "wager's": [], + "housebreaksers": [], + "trad": [], + "Libreville": ["M"], + "untwist": [], + "saver": ["M"], + "iambus'ses": [], + "bedspreads's": [], + "huarache": ["S", "M"], + "looser": [], + "incentive's": [], + "sophisticates's": [], + "honeymooned": [], + "smears's": [], + "criminalize": ["C", "G", "D", "S"], + "wetland's": [], + "pantomimist": ["S", "M"], + "Shavuot's": [], + "Vanuatu": ["M"], + "ecumenism's": [], + "Arbitron": ["M"], + "smokersing": [], + "vicarage": ["S", "M"], + "Hess": ["M"], + "om's": [], + "dubbin": ["M"], + "teeing": [], + "glen": ["M", "S"], + "Iquitos": ["M"], + "Leanna's": [], + "molesteder": [], + "bunions's": [], + "howlersing": [], + "fit'ses": [], + "chronically": [], + "fumbling": ["Y"], + "collating": [], + "Rousseau": ["M"], + "saucily": [], + "bivalent": [], + "shinned": [], + "shipwreck'sed": [], + "warren's": [], + "nativity's": [], + "cigar": ["M", "S"], + "perjurer": ["M"], + "Buckingham": ["M"], + "rumba's": [], + "ACLU's": [], + "plaster'sed": [], + "overpopulation": ["M"], + "lg": [], + "wastrel": ["S", "M"], + "ideologue'ses": [], + "stepper": ["M"], + "capacity's": [], + "Forster": ["M"], + "hydrology": ["M"], + "parley's": [], + "nagger's": [], + "garment": ["M", "S"], + "over": ["M", "Y", "S"], + "shortsightedly": [], + "beta's": [], + "regroupings": [], + "forgoers": [], + "stepdad'ses": [], + "Nevada": ["M"], + "abductions's": [], + "brushstroke": ["S"], + "filigree's": [], + "Ukraine's": [], + "exclusiveness's": [], + "explosiveness": ["M"], + "eludes": [], + "workingwomen": [], + "morsel'ses": [], + "assenteds": [], + "scrabblersing": [], + "asteroid": ["M", "S"], + "welly": ["S"], + "Herod's": [], + "ache": ["D", "S", "M", "G"], + "conquistador's": [], + "glitched": [], + "APR": [], + "sportswear's": [], + "homeboys": [], + "leafiest": [], + "faulty": ["P", "R", "T"], + "kink": ["M", "D", "S", "G"], + "Satanist's": [], + "holly": ["S", "M"], + "twinset": ["S"], + "gnat'ses": [], + "janitor": ["S", "M"], + "obit'ses": [], + "alternate'sly": [], + "fainthearted": [], + "overindulgeds": [], + "partakinger": [], + "whiter": [], + "hoaxers": [], + "known": [], + "copulation's": [], + "acceptance": ["S", "M"], + "neighed": [], + "hooch": ["M"], + "Stieglitz": ["M"], + "declassify": [], + "gospel's": [], + "questing": [], + "Handy": ["M"], + "Idaho": ["S", "M"], + "guillemot": ["S"], + "transverse": ["M", "Y", "S"], + "Giotto's": [], + "Gujarati's": [], + "groks": [], + "cuckold'sed": [], + "feelgood": [], + "sexism's": [], + "verbosity's": [], + "Giraudoux's": [], + "rumble": ["D", "S", "J", "M", "G"], + "infirmaries's": [], + "deconstruction": [], + "vegeburger": ["S"], + "hateder": [], + "rehabilitated": [], + "Petain": ["M"], + "Rostand": ["M"], + "turmerics": [], + "grumblings": [], + "piggyback": ["M", "D", "S", "G"], + "cash's": [], + "Newcastle": ["M"], + "coninfuse": [], + "Gropius's": [], + "inventsing": [], + "dexterously": [], + "pamphlets": [], + "begrimed": [], + "petals": [], + "braggadocios's": [], + "Johnson": ["M"], + "fastidiousness": ["M"], + "postulates": [], + "fixity": ["M"], + "workhouses": [], + "motocross": ["M", "S"], + "mucked": [], + "transitives's": [], + "coldness's": [], + "shirt": ["G", "M", "D", "S"], + "gantries's": [], + "danglinged": [], + "orderliness": ["E", "M"], + "toastmaster": ["S", "M"], + "Asmara": ["M"], + "hereditary": [], + "breadboards's": [], + "headroom": ["M"], + "lifeblood": ["M"], + "respirators": [], + "birdbrain'sed": [], + "McAdam": ["M"], + "firebombsings": [], + "vane's": [], + "serveds": [], + "marvelings": [], + "prepubescence's": [], + "tile": ["M", "Z", "G", "D", "R", "S"], + "handicap's": [], + "carried": [], + "serf'ses": [], + "deponent": ["M", "S"], + "Pb's": [], + "Zephyrus's": [], + "Mayo": ["M"], + "ennobleds": [], + "radiometric": [], + "pestle'sing": [], + "modulus": [], + "dotingly": [], + "infinitival": [], + "endives's": [], + "sockeye's": [], + "shinsplints": ["M"], + "astringent'sly": [], + "gaminged": [], + "debouchinged": [], + "gastropods's": [], + "gaudiness's": [], + "Charlemagne's": [], + "tenor": ["S", "M"], + "drabber": [], + "Walpole's": [], + "congregant's": [], + "wiped": [], + "dillies's": [], + "Americanization'ses": [], + "Eco": ["M"], + "weepies": [], + "guesstimate'sing": [], + "cascaded": [], + "backpacker": ["M"], + "visasing": [], + "exploits": [], + "powerless": ["P", "Y"], + "suggester": [], + "timber's": [], + "skylight'ses": [], + "confessors": [], + "trappers": [], + "remedy": ["G", "D", "S", "M"], + "buffeting": [], + "newswoman's": [], + "goading": [], + "tuckereding": [], + "compensations": [], + "quenches": [], + "dominantly": [], + "studbook's": [], + "Weller": ["M"], + "seignior's": [], + "schmoozed": [], + "periodontist's": [], + "feline": ["S", "M"], + "introspective": ["Y"], + "impetuousness's": [], + "Hellenization's": [], + "sampling's": [], + "insecure": ["Y"], + "ambiance's": [], + "baluster's": [], + "psych'sed": [], + "mutilated": [], + "brunch's": [], + "gramophone": ["M", "S"], + "rusted": [], + "hammertoe's": [], + "steerage": ["M"], + "sinful": ["P", "Y"], + "option": ["S", "M", "D", "G"], + "laving": [], + "Laue": ["M"], + "reminiscently": [], + "pompousness": ["M"], + "obliquity's": [], + "elements": [], + "hatefulness's": [], + "afflicts": [], + "ensconced": [], + "quaver'sed": [], + "thyroid": ["M", "S"], + "Latvian'ses": [], + "vociferation's": [], + "headlamp'ses": [], + "Thai": ["S", "M"], + "counterinsurgency's": [], + "galleons's": [], + "Akron": ["M"], + "watchfulliness": [], + "Serpens's": [], + "escarole'ses": [], + "winker's": [], + "nutmeg's": [], + "tipsiest": [], + "bump'sed": [], + "material's": [], + "supermarket": ["S", "M"], + "Montezuma's": [], + "tempest's": [], + "ingresses": [], + "Dubai's": [], + "idolatress's": [], + "committeeman": ["M"], + "premise'sing": [], + "Clouseau": ["M"], + "clank": ["G", "M", "D", "S"], + "reservedness": ["M"], + "straighterly": [], + "vulgarian'ses": [], + "millionth's": [], + "Motrin": ["M"], + "Wolfe's": [], + "tooter": ["M"], + "Valium'ses": [], + "Diogenes's": [], + "placekickerers": [], + "Jerold's": [], + "schoolmaster": ["M", "S"], + "developing": [], + "ovulatesing": [], + "absurdly": [], + "radium's": [], + "collection": ["A", "M", "S"], + "crumble's": [], + "ideograph": ["M"], + "barnyards": [], + "arterioles": [], + "bugaboos": [], + "monomaniacs": [], + "repulsiveliness": [], + "jalousie's": [], + "inventiveness's": [], + "crosspatch": ["M", "S"], + "depositeds": [], + "sahib": ["M", "S"], + "bondage": ["M"], + "graze's": [], + "neglectsing": [], + "teenybopper'ses": [], + "tattooers": [], + "recessed": [], + "Sunkist": ["M"], + "reminiscence'ses": [], + "pericardium's": [], + "warnings": [], + "ousting": [], + "buttonsed": [], + "Louisianans": [], + "Musial": ["M"], + "Oranjestad": ["M"], + "microcircuit's": [], + "Anglican's": [], + "scoutmaster's": [], + "Lysol": ["M"], + "lifeguard": ["S", "M"], + "arthroscopy": [], + "hotbox's": [], + "soy's": [], + "overlook's": [], + "hill'ses": [], + "beauticians's": [], + "embittermented": [], + "bung's": [], + "Cohan's": [], + "calculable": ["I"], + "Darwinist": [], + "Chickasaw'ses": [], + "euthanizes": [], + "somebody": ["S", "M"], + "etchers": [], + "RayBan": ["M"], + "tyrannical": ["Y"], + "Aesop": ["M"], + "ore": ["S", "M"], + "loftier": [], + "inhalants's": [], + "flinch": ["G", "M", "D", "S"], + "whatsit": ["S"], + "bursaries's": [], + "outlook": ["M", "S"], + "Yb's": [], + "veniremen": [], + "ponchos": [], + "Moody": ["M"], + "driblet's": [], + "transfer'sable": [], + "furniture's": [], + "webmistress'ses": [], + "veg's": [], + "showiness's": [], + "cavalier'sly": [], + "temples's": [], + "prevaricate": ["D", "S", "G", "N", "X"], + "perfects": [], + "telecasters": [], + "lambkin's": [], + "dullard's": [], + "ants": [], + "capacities": [], + "trickiness": ["M"], + "succincterly": [], + "serpent'ses": [], + "shiatsu's": [], + "blinks": [], + "premixeds": [], + "affidavits": [], + "hotfooting": [], + "gaffes": [], + "librarian": ["M", "S"], + "escallopsing": [], + "delete": ["X", "G", "N", "D", "S"], + "dealing's": [], + "copier": ["S", "M"], + "nitrates's": [], + "lithograph's": [], + "bonier": [], + "recompilinged": [], + "abbe's": [], + "Heinz": ["M"], + "Creek's": [], + "xxv": [], + "daylights": ["M"], + "windblown": [], + "diatribes's": [], + "indestructible": [], + "coon'ses": [], + "delayers": [], + "toothy": ["R", "T"], + "androgyny": ["M"], + "receiver's": [], + "counterattack": ["G", "M", "D", "S"], + "spreadables": [], + "nappies": [], + "agglomeratingen": [], + "affinities": [], + "mangle'sers": [], + "faker": ["M"], + "cadger": ["M"], + "jasmine's": [], + "clairvoyant": ["M", "S"], + "buildup": ["S", "M"], + "evaporator's": [], + "Eliot's": [], + "cornbread's": [], + "ant": ["S", "M", "D"], + "nosebags": [], + "bloodlines's": [], + "scutcheons": [], + "filthiness's": [], + "consolidates": [], + "amphetamines": [], + "azimuths": [], + "Fullerton": ["M"], + "periwig's": [], + "bookbinderies": [], + "pervasivenessly": [], + "antedates": [], + "exploitable's": [], + "reedy": ["R", "T", "P"], + "knurls": [], + "present's": [], + "unpardonable": [], + "wage's": [], + "oversee": ["R", "S", "Z"], + "chaos's": [], + "comps": [], + "steadinessed": [], + "Bundestag's": [], + "Chadians": [], + "undeclared": [], + "kilometers": [], + "aeration": ["M"], + "farmsings": [], + "rotgut": ["M"], + "cessation'ses": [], + "rabbet'sed": [], + "DAR": [], + "criticize": ["Z", "G", "D", "R", "S"], + "Si": ["M"], + "yardmasters": [], + "curlews": [], + "crayolas": [], + "vindictiveness's": [], + "span": ["M", "S"], + "arc": ["S", "M", "D", "G"], + "wherein": [], + "remark": ["B"], + "Fremont": ["M"], + "amenably": [], + "Biko's": [], + "incendiaries's": [], + "Allegra's": [], + "socialize": ["D", "S", "G"], + "hits": [], + "compactings": [], + "sportswoman": ["M"], + "warpath": ["M"], + "Lagrangian": ["M"], + "handicapped": [], + "yearly's": [], + "Newfoundlands": [], + "packer'ses": [], + "Abelson": ["M"], + "legislate": ["D", "S", "G", "N", "V"], + "barnstormers": [], + "spanning": [], + "banked": [], + "pinkies": [], + "Bela": ["M"], + "pixel'ses": [], + "dolls": [], + "pegged": [], + "falsities's": [], + "taximeter'ses": [], + "handover": ["S"], + "berg's": [], + "Redeemer's": [], + "pretest": ["D", "G", "S"], + "japeds": [], + "Libyan's": [], + "sedan's": [], + "Danish": ["M"], + "economists": [], + "etchersing": [], + "grammarian": ["S", "M"], + "moderatelying": [], + "Bennie": ["M"], + "assertion": ["A", "M"], + "spumes's": [], + "Hellenism": ["M", "S"], + "Hilfiger's": [], + "Kaaba's": [], + "supersedinged": [], + "cluttering": [], + "cabbages": [], + "carpentry's": [], + "Swiss'ses": [], + "tootles": [], + "transistorize": ["D", "S", "G"], + "recruited": [], + "resiliency's": [], + "sheepishliness": [], + "cadre'ses": [], + "settlement's": [], + "triple's": [], + "Methodist's": [], + "controllable": ["U"], + "Lithuania": ["M"], + "flock'sed": [], + "messenger's": [], + "Jan": ["M"], + "Laurence's": [], + "alb": ["S", "M"], + "Slurpee": ["M"], + "bunnies": [], + "healthily": ["U"], + "checkmate'sing": [], + "raisersing": [], + "temples": [], + "trainman's": [], + "humanized": [], + "affability": ["M"], + "bedspread": ["S", "M"], + "spying": [], + "wack's": [], + "tyrannosaur's": [], + "Reich": ["M"], + "centrifuged": [], + "daylights's": [], + "uncleareder": [], + "coyly": [], + "forces": [], + "heapings": [], + "mash": ["M", "D", "R", "S", "Z", "G"], + "remunerate": ["G", "N", "V", "X", "D", "S"], + "Curacao's": [], + "electioneering": [], + "clubbable": [], + "solid": ["P", "S", "M", "R", "Y", "T"], + "Alar": ["M"], + "guidelines": [], + "stasheds": [], + "troika": ["M", "S"], + "clues": [], + "quoit'sed": [], + "chumps": [], + "hastensing": [], + "waterproofs": [], + "revers": ["M"], + "disgruntlinged": [], + "Crawford": ["M"], + "colorfulness's": [], + "plumpeder": [], + "surreal": [], + "infidel's": [], + "mansly": [], + "tricolor": ["S", "M"], + "assailants's": [], + "canard": ["M", "S"], + "princess": ["M", "S"], + "dauntinged": [], + "CFC's": [], + "Chaplin": ["M"], + "birthday's": [], + "pricks": [], + "drolleries's": [], + "moseyinged": [], + "T's": [], + "decennial": ["S", "M"], + "superintendsing": [], + "twitters": [], + "petite'ses": [], + "Saudi'ses": [], + "maulsers": [], + "racking's": [], + "Wayne's": [], + "Grumman": ["M"], + "conflicted": [], + "riboflavin's": [], + "Ahmadabad's": [], + "transcendings": [], + "caweding": [], + "drachma": ["M", "S"], + "peristyles's": [], + "haziest": [], + "nonagenarian's": [], + "elegy": ["S", "M"], + "handstand's": [], + "furleding": [], + "subtly": [], + "pictoriallies": [], + "Proserpina": ["M"], + "syllabicatingen": [], + "botnet's": [], + "Albania": ["M"], + "stereotype'sing": [], + "gatheringsers": [], + "blanks": [], + "slides's": [], + "Hannibal's": [], + "Valkyrie's": [], + "eradicator's": [], + "repulsiveness's": [], + "flit": ["M", "S"], + "shawl's": [], + "evidencing": [], + "slightest": [], + "maharani's": [], + "seat's": [], + "thicket'ses": [], + "Pena's": [], + "stirrers": [], + "addition's": [], + "mechanical": ["Y"], + "contactable": [], + "mushroom'sed": [], + "Yank": ["S", "M"], + "cicada": ["M", "S"], + "redounding": [], + "bakes": [], + "pinpoint's": [], + "McIntosh's": [], + "romeo": ["M", "S"], + "bellboy's": [], + "tidewater": ["M", "S"], + "poncing": [], + "stings's": [], + "refiner": ["S", "M"], + "debaucheries's": [], + "complainings": [], + "aubergines": [], + "chickadees's": [], + "Conestoga": ["M"], + "am": ["N"], + "Maryellen": ["M"], + "Trobriand's": [], + "appertain": ["G", "D", "S"], + "flamings": [], + "dethrones": [], + "laggards": [], + "Wendi": ["M"], + "polygamy": ["M"], + "bustling": [], + "Eurasian'ses": [], + "idiom": ["S", "M"], + "Lipton's": [], + "hobo": ["M", "S"], + "huntersing": [], + "mongol": ["S"], + "twosomes": [], + "multiplicity's": [], + "uncalled": [], + "kidneys": [], + "panoply's": [], + "nonprofessionals": [], + "hollower": [], + "customization": ["M"], + "abate": ["L", "G", "D", "S"], + "Crater's": [], + "handstands": [], + "Apostle": ["M"], + "mailbomb": ["G", "S", "D"], + "tributary": ["S", "M"], + "kluge": ["D", "S"], + "restraint'ses": [], + "nips's": [], + "curability's": [], + "incident": ["S", "M"], + "guarantees": [], + "melamine's": [], + "polygraph": ["G", "M", "D"], + "prostitutes": [], + "crocodiles's": [], + "chop's": [], + "purposefulness": ["M"], + "photo's": [], + "plankton's": [], + "Medicaids's": [], + "conclusion'ses": [], + "Gabrielle's": [], + "exacts": [], + "toleration's": [], + "hotting": [], + "battenings": [], + "trotter": ["S", "M"], + "ouzo'ses": [], + "avowals": [], + "myna": ["M", "S"], + "stubbier": [], + "misstatement's": [], + "oxidizer's": [], + "Downy": ["M"], + "luffed": [], + "mewls": [], + "windward": ["M"], + "heydays's": [], + "chorals": [], + "bereaveds": [], + "greeteder": [], + "phonologist's": [], + "Sundas": ["M"], + "NeWS": [], + "masques": [], + "corgis's": [], + "willow": ["S", "M"], + "fieriest": [], + "cadgeder": [], + "red's": [], + "bloodlessliness": [], + "influenza": ["M"], + "throat's": [], + "lag": ["S", "Z", "M", "R"], + "titles's": [], + "teabag": ["S"], + "investigators's": [], + "railroad'sed": [], + "vase": ["M", "S"], + "platters": [], + "eels": [], + "yammersers": [], + "radicchio": ["M"], + "grandmother's": [], + "drafter": ["S", "M"], + "withes": [], + "alimony": ["M"], + "Brussels's": [], + "arums": [], + "equivalently": [], + "wisdom's": [], + "colonnade'sed": [], + "terracotta": ["M"], + "contextualizes": [], + "impresseds": [], + "shilling's": [], + "interdependence": ["M"], + "monoxide's": [], + "Roberta": ["M"], + "synthesizersing": [], + "Nice": ["M"], + "twirl'sed": [], + "omnipotent": [], + "outriggers": [], + "pappy's": [], + "vehemency's": [], + "personalize": ["C", "D", "S", "G"], + "macron'ses": [], + "Eustachian's": [], + "landing's": [], + "confabulation": ["M"], + "squab": ["S", "M"], + "yammerer": ["M"], + "barnacle": ["M", "D", "S"], + "ethnics's": [], + "unaffiliated": [], + "arrogated": [], + "blacksmith's": [], + "swerveds": [], + "swots": [], + "slither": ["S", "G", "M", "D"], + "gypsies": [], + "miscarriage": ["M", "S"], + "pulleder": [], + "racialist'ses": [], + "Hereford": ["S", "M"], + "scientific": ["U"], + "trumpets": [], + "bastards": [], + "quadruplet'ses": [], + "codices": [], + "reformer": [], + "condo": ["S", "M"], + "preterits": [], + "Cypriot": ["M", "S"], + "furbelow": ["M"], + "hustles's": [], + "respondsing": [], + "singleton": ["S", "M"], + "counterintelligence's": [], + "snobbish": ["P", "Y"], + "monopolized": [], + "hussar": ["S", "M"], + "interference's": [], + "conning": [], + "subfamilies's": [], + "truncating": [], + "Ibo": ["M"], + "counselings's": [], + "soling": [], + "defibrillator": ["S"], + "twofer": ["S", "M"], + "Normandy's": [], + "porters": [], + "Marlborough": ["M"], + "noncompeting": [], + "radiology's": [], + "newborn's": [], + "vilifieds": [], + "scullery": ["S", "M"], + "seismographers": [], + "coaxial": [], + "flipper": ["M", "S"], + "semiannual": ["Y"], + "gonorrhea": ["M"], + "cowslips": [], + "qua": [], + "choicest": [], + "performance's": [], + "rely": ["G", "D", "S"], + "deductions's": [], + "grated": [], + "plantar": [], + "prospect'sed": [], + "fatheredly": [], + "temperateness's": [], + "sketchiest": [], + "notions": [], + "seasonally": [], + "Lenard": ["M"], + "showboat": ["M", "D", "G", "S"], + "actors": [], + "purveyeds": [], + "Marduk": ["M"], + "Independence": ["M"], + "icings's": [], + "Chihuahua'ses": [], + "plastics's": [], + "weights": [], + "hotheads": [], + "Tammy": ["M"], + "model's": [], + "cablinged": [], + "guarder": ["M"], + "flop": ["M", "S"], + "Moses": ["M"], + "parodies": [], + "rehabilitateds": [], + "equationable": [], + "impoverishmenting": [], + "transplanteding": [], + "chirp's": [], + "cambial": [], + "ambulatories": [], + "tangiest": [], + "grannies": [], + "impatience": ["M", "S"], + "Mapplethorpe's": [], + "hackerers": [], + "Bosnia": ["M"], + "miniaturized": [], + "bagpiper's": [], + "priggish": ["P"], + "testier": [], + "subsoil's": [], + "Charmin's": [], + "sax's": [], + "eventfulness's": [], + "sames": [], + "Korean": ["S", "M"], + "endorsinged": [], + "leeching": [], + "management": ["M", "S"], + "fashionistas": [], + "sometimes": [], + "Saussure's": [], + "apprehension'ses": [], + "unmediated": [], + "elegiac's": [], + "peal'sed": [], + "Francisco's": [], + "packet'ses": [], + "forming": [], + "cooking's": [], + "temporally": [], + "abseil'sed": [], + "overflying": [], + "truants": [], + "until": [], + "microfiber": ["M", "S"], + "ambassadress": ["M", "S"], + "misappropriatingen": [], + "swoosheds": [], + "shoestring's": [], + "PM": ["S", "M", "D", "G"], + "climatically": [], + "stadium": ["M", "S"], + "dissenters": [], + "moseys": [], + "apoplectic": [], + "trade": ["J", "D", "R", "S", "M", "Z", "G"], + "overindulged": [], + "Hofstadter": ["M"], + "Voyager": ["M"], + "fascicles": [], + "godliest": [], + "sheeny": ["T", "R"], + "shill's": [], + "radiogram's": [], + "Ephesian": ["M", "S"], + "potholersing": [], + "Monday's": [], + "falsettos": [], + "blemishing": [], + "cardigans's": [], + "aluminum": ["M"], + "hydrophone's": [], + "reentry": [], + "mimeograph": ["G", "M", "D"], + "stonersing": [], + "brainstorm": ["S", "M", "D", "G"], + "searchlight": ["M", "S"], + "awfulness's": [], + "whim'ses": [], + "Uganda": ["M"], + "sibilant's": [], + "thrust's": [], + "dolt's": [], + "bestiality": ["M"], + "nubbier": [], + "mainstreamed": [], + "stoical": ["Y"], + "paresis": ["M"], + "backbench": ["S"], + "jaggedly": [], + "surround": ["G", "S", "D", "J"], + "gunsmiths": [], + "wraiths": [], + "earfuls": [], + "Ives's": [], + "tragedian": ["S", "M"], + "triangle": ["S", "M"], + "Liebfraumilch's": [], + "mannerism": ["S", "M"], + "Reuben": ["M"], + "Earnestine's": [], + "overripe": ["M"], + "Amtrak's": [], + "beluga'ses": [], + "sink": ["B", "Z", "G", "M", "R", "S"], + "soupcon'ses": [], + "Greenwich's": [], + "performersing": [], + "Illinoisan": ["M", "S"], + "Montessori": ["M"], + "encores's": [], + "presupposition'ses": [], + "son's": [], + "fugues": [], + "dins's": [], + "preshrunk": [], + "headache": ["M", "S"], + "musicianly": [], + "nonresistant": [], + "compiled": [], + "piddle'sing": [], + "finagling": [], + "despondently": [], + "swagger's": [], + "versatility's": [], + "Merlot's": [], + "untouched": [], + "viewings's": [], + "morphing": ["M"], + "downside": ["M", "S"], + "natter": ["G", "M", "D", "S"], + "pleasantries": [], + "hindsight": ["M"], + "ragtime": ["M"], + "realistic": ["U"], + "suppressinged": [], + "assignor": ["M", "S"], + "firebox'ses": [], + "soundboard'ses": [], + "demographics": ["M"], + "softerly": [], + "octets's": [], + "poorhouse's": [], + "transfigured": [], + "immediacies's": [], + "bangeder": [], + "spoonbill's": [], + "Washington's": [], + "humidified": [], + "absence": ["S", "M"], + "extending": [], + "alpha": ["M", "S"], + "Matisse": ["M"], + "experimentally": [], + "abrogated": [], + "mumble": ["M", "Z", "G", "D", "R", "S"], + "cookbook's": [], + "foreshadowed": [], + "wastebasket's": [], + "matriarchs": [], + "dangs": [], + "noel": ["M", "S"], + "refection's": [], + "sidebars": [], + "fatalism's": [], + "uniformity": ["M"], + "maunder": ["S", "D", "G"], + "demobbing": [], + "fanaticism's": [], + "dumpy": ["P", "T", "R"], + "swans": [], + "Lusaka's": [], + "Cayuse": [], + "appreciationsing": [], + "hoist": ["S", "G", "M", "D"], + "giddily": [], + "illustriously": [], + "hyphenateds": [], + "shuddersing": [], + "edemas": [], + "resist's": [], + "singularities": [], + "dime'ses": [], + "housemate": ["S"], + "grapevines's": [], + "impropriety's": [], + "OED": [], + "crewman": ["M"], + "Kathmandu's": [], + "tortoiseshell's": [], + "ceramist'ses": [], + "sage's": [], + "lungfish'ses": [], + "logout's": [], + "update": ["M", "G", "D", "R", "S"], + "overenthusiastic": [], + "certs": [], + "boiler's": [], + "semitrailer'ses": [], + "Trippe": ["M"], + "transited": [], + "directorates's": [], + "Cervantes": ["M"], + "carjackersing": [], + "laughingstock": ["S", "M"], + "feigned": ["U"], + "Junior": ["S", "M"], + "diadem": ["S", "M"], + "Steuben": ["M"], + "pigged": [], + "soporific'ses": [], + "Goldie's": [], + "Lowe": ["M"], + "industrialization's": [], + "gouges": [], + "kibitzed": [], + "subjunctive": ["S", "M"], + "Haney": ["M"], + "halon": [], + "giraffe": ["M", "S"], + "currycomb's": [], + "woolenens": [], + "catharsis's": [], + "industries's": [], + "emptyingness": [], + "loanword's": [], + "Grumman's": [], + "underrating": [], + "EPA's": [], + "moviegoers": [], + "sinecure'ses": [], + "boredom": ["M"], + "recons": [], + "hydrofoil": ["M", "S"], + "misogamy's": [], + "esteemed": [], + "zebu'ses": [], + "sellotaped": [], + "singsongs's": [], + "rip": ["S", "X", "T", "M", "N", "R"], + "taps": [], + "stumps": [], + "unwholesomeness": [], + "zloties's": [], + "minored": [], + "fabrics": [], + "offensive's": [], + "sitarist's": [], + "semiprivate": [], + "Teresa": ["M"], + "backboards": [], + "affair'ses": [], + "robustest": [], + "Blackstone's": [], + "twiddling": [], + "drawstring's": [], + "trusteeship": ["S", "M"], + "warranting's": [], + "puzzlinged": [], + "remnants": [], + "trustee'ses": [], + "separated": [], + "rafts": [], + "do'ser": [], + "orangeade": ["M", "S"], + "salaried": [], + "barkeepers": [], + "gentian": ["S", "M"], + "separative": [], + "jaundices's": [], + "red": ["P", "S", "M"], + "muumuu's": [], + "bettor": ["M", "S"], + "couple's": [], + "antihero": ["M"], + "alteration'ses": [], + "wallopeds": [], + "styli": [], + "nondrinker": ["M", "S"], + "mounted": ["U"], + "mythologist": ["S", "M"], + "preeminent": ["Y"], + "reunite": [], + "prisoners": [], + "mandating": [], + "Chance": ["M"], + "unacquainted": [], + "ground": ["Z", "G", "M", "D", "R", "J", "S"], + "croplands's": [], + "watchtower's": [], + "serer": [], + "Carolinian": ["M"], + "dosed": [], + "weighbridges": [], + "chrysanthemum'ses": [], + "meccas": [], + "cratered": [], + "inviolability's": [], + "pistils's": [], + "streamlinesing": [], + "teeth": [], + "ruggeder": [], + "Funafuti's": [], + "licentiously": [], + "nautiluses": [], + "dourer": [], + "scowl'sed": [], + "jubilation's": [], + "torch'sed": [], + "savvy's": [], + "crowds's": [], + "coot'ses": [], + "Salvadoran": ["S", "M"], + "grapefruit'ses": [], + "pavings": [], + "sugars's": [], + "brake": ["M", "G", "D", "S"], + "mutable": [], + "paints": [], + "gibbers": [], + "seabed": ["S", "M"], + "Murat's": [], + "fern's": [], + "barricadinged": [], + "squintest": [], + "depress": [], + "giantesses": [], + "electrotype'ses": [], + "Peterson's": [], + "Antoninus": ["M"], + "beatitude's": [], + "counteractive": [], + "weekly's": [], + "Bloomsbury's": [], + "biretta": ["S", "M"], + "Yuletide": ["M", "S"], + "Nirenberg": ["M"], + "adjoins": [], + "dolomite's": [], + "ridgepoles's": [], + "unsupported": [], + "tympanists": [], + "glossy's": [], + "biographies's": [], + "Nichols's": [], + "radiogram'ses": [], + "Lordships's": [], + "fanfare": ["S", "M"], + "amendments's": [], + "encountering": [], + "pugilists": [], + "Tahitian's": [], + "farmings": [], + "banyans's": [], + "supersaturation": ["M"], + "hookah's": [], + "degassed": [], + "manumitting": [], + "advantage's": [], + "exacerbateds": [], + "croons": [], + "maritime": [], + "sharpens": [], + "sorbets's": [], + "slogan's": [], + "vituperatingen": [], + "terror's": [], + "artillery": ["M"], + "cockcrow's": [], + "accusingly": [], + "conveyor'ses": [], + "spreads": [], + "rapping": [], + "smirks": [], + "Helios's": [], + "dauber": ["M"], + "steadily": ["U"], + "deductively": [], + "pentagonal": [], + "yawners": [], + "Hippocrates's": [], + "inhalants": [], + "grains's": [], + "atmospherics's": [], + "oleo": ["M"], + "ineffectual": [], + "Septuagints": [], + "toadstools": [], + "ineffectiveness": [], + "stealthiest": [], + "orientatesing": [], + "juice'sers": [], + "September's": [], + "bleeped": [], + "candidly": [], + "distaffs": [], + "percussion's": [], + "Dewitt": ["M"], + "articleds": [], + "exacerbating": [], + "coolliers": [], + "Carlson's": [], + "incineratingen": [], + "Napoleon": ["M", "S"], + "alienating": [], + "appetite's": [], + "secretariat's": [], + "interlarded": [], + "termings": [], + "douching": [], + "syllabication's": [], + "omits": [], + "pluckier": [], + "earplugs": [], + "nappies's": [], + "thistledown": ["M"], + "gawd": [], + "whirs": [], + "carps": [], + "ogleder": [], + "SGML": ["M"], + "cowbird's": [], + "ventriloquy": ["M"], + "swabbed": [], + "eyetooth's": [], + "windjammer": ["S", "M"], + "yachtswoman's": [], + "inchworm": ["S", "M"], + "harnessing": [], + "matted": [], + "Valerian's": [], + "elapse": ["D", "S", "G"], + "painkillers": [], + "hyperparathyroidism": [], + "scrawniest": [], + "subcompacts's": [], + "glow'sed": [], + "supercharging": [], + "sins's": [], + "handpickinged": [], + "hormones": [], + "wingnuts's": [], + "troglodytes's": [], + "epee'ses": [], + "Mike": ["M"], + "public": ["A", "M"], + "froze": ["A", "U"], + "contraindicates": [], + "laggard's": [], + "semaphore": ["D", "S", "M", "G"], + "roosts": [], + "titivates": [], + "entrails's": [], + "swansong": ["S"], + "truffle's": [], + "lutes": [], + "escalation's": [], + "orchid's": [], + "Margrethe": ["M"], + "choreographer's": [], + "immortality's": [], + "pharynges": [], + "ringed": [], + "einsteinium": ["M"], + "Edinburgh": ["M"], + "path": ["M"], + "fauvist": ["S", "M"], + "positivenesses": [], + "conspiracy": ["S", "M"], + "imprisonment's": [], + "antibacterial'ses": [], + "Montgomery's": [], + "Shackleton's": [], + "Ural": ["S", "M"], + "unopened": [], + "emollient's": [], + "crowbars": [], + "Windbreaker": ["M"], + "Carboloy": ["M"], + "masterwork": ["M", "S"], + "shroud": ["G", "M", "D", "S"], + "Brecht's": [], + "mountable": [], + "dreaded": [], + "roustsed": [], + "eagle": ["M", "S"], + "slovenliness's": [], + "U": ["M"], + "grovel": ["Z", "G", "D", "R", "S"], + "nuisance's": [], + "stuffiness": ["M"], + "Claudia": ["M"], + "dysfunctional": [], + "webcam": ["M", "S"], + "saviors": [], + "bureaus": [], + "tide'sing": [], + "physiology's": [], + "hintersing": [], + "glare's": [], + "Chrystal": ["M"], + "humanerly": [], + "stunner": ["S"], + "broadened": [], + "structureds": [], + "encapsulations": [], + "idles": [], + "tables": [], + "mottle": ["G", "D", "S"], + "takes": [], + "elf's": [], + "carnivore": ["S", "M"], + "gimmes": [], + "overbidding": [], + "woodpile": ["S", "M"], + "pillageder": [], + "grouping's": [], + "cushier": [], + "prophesiersing": [], + "lute": ["M", "S"], + "nervousness's": [], + "catgut": ["M"], + "Vilyui": ["M"], + "panderersing": [], + "Nita's": [], + "amputation's": [], + "scissors": [], + "keep'ser": [], + "stinkier": [], + "NYC": [], + "knolls's": [], + "undercharge'sing": [], + "moires": [], + "Brzezinski": ["M"], + "Edgardo": ["M"], + "strudel": ["S", "M"], + "sables": [], + "fraternizersing": [], + "centime's": [], + "trimmed": ["U"], + "paean": ["S", "M"], + "vaccinations": [], + "billies's": [], + "gannet's": [], + "adjustable": [], + "blueprint'sed": [], + "atonementing": [], + "liberalizeds": [], + "recessesing": [], + "suitors": [], + "faith": ["M"], + "astrologists": [], + "dilute": ["D", "S", "G", "N", "X"], + "affectation's": [], + "Margarita": ["M"], + "buffetings": [], + "handyman": ["M"], + "tenuously": [], + "supplicant's": [], + "preterit": ["S", "M"], + "shieldings": [], + "visages": [], + "whatchamacallit's": [], + "romancing": [], + "cohere": ["D", "S", "G"], + "blockage'ses": [], + "blandishes": [], + "laughing": ["M", "Y"], + "garrotersing": [], + "postmeridian": [], + "arid": ["Y"], + "Elise": ["M"], + "Hubbard's": [], + "disarrangement's": [], + "Grotius": ["M"], + "depreciates": [], + "tinkerings": [], + "surtaxes": [], + "Latvians": [], + "gamete's": [], + "solar": [], + "glow's": [], + "seismograph'ser": [], + "ail": ["S", "D", "L", "G"], + "smuggleder": [], + "munchkin": ["S", "M"], + "vacantly": [], + "roomed": [], + "scoutmaster": ["M", "S"], + "sailplane'ses": [], + "situationsing": [], + "prawned": [], + "knowledgeable": [], + "lordliest": [], + "handbag": ["S", "M"], + "hostelersing": [], + "clamoring": [], + "signification": ["M"], + "Chaitanya's": [], + "hop'sed": [], + "fish'sed": [], + "prig'ses": [], + "Mfume": ["M"], + "upstaginged": [], + "repletion": ["M"], + "abracadabra": ["M"], + "indemnifies": [], + "Hyde": ["M"], + "dilatation's": [], + "bops": [], + "insurgences's": [], + "refuteder": [], + "kibbutzes": [], + "cerium's": [], + "dispensed": [], + "selfishness": ["U", "M"], + "fossilizing": [], + "flickering's": [], + "hokiest": [], + "phlegmatic": [], + "Pullmans": [], + "junkyard'ses": [], + "Mormonisms": [], + "megawatts": [], + "scurried": [], + "commonplace": ["M", "S"], + "lamina's": [], + "epigraph's": [], + "chieftainship's": [], + "mainframes's": [], + "dopamine": [], + "Hume's": [], + "turbocharger": ["M"], + "scholarly": [], + "tenderingness": [], + "hamlet's": [], + "toughie's": [], + "possessive's": [], + "Elbrus's": [], + "synagogue's": [], + "squabblersing": [], + "stronghold'ses": [], + "punk": ["T", "M", "R", "S"], + "advisable": ["I"], + "Dacron's": [], + "gentrification's": [], + "Faulkner": ["M"], + "supervisionsing": [], + "crypts's": [], + "conifers's": [], + "participators": [], + "Yahtzee's": [], + "scrimmageds": [], + "moaning": [], + "placentas": [], + "lonesomeness's": [], + "millstones": [], + "handcraft's": [], + "chores": [], + "sensualists's": [], + "sozzled": [], + "NBC's": [], + "gunslingers": [], + "drowsiest": [], + "florid": ["P", "Y"], + "handkerchiefs": [], + "jujube's": [], + "wannabee": ["S"], + "vendor": ["M", "S"], + "crosschecks's": [], + "pummelinged": [], + "monomaniac": ["M", "S"], + "authenticatingen": [], + "cross": ["A", "U", "G", "T", "S", "D"], + "convenience'ses": [], + "character": ["M", "S"], + "tethereding": [], + "resistant": ["U"], + "sores": [], + "skillets's": [], + "nightspot": ["M", "S"], + "Taiwanese": ["M"], + "Nanchang's": [], + "Pauli's": [], + "stint's": [], + "antiperspirant": ["S", "M"], + "shaken": ["U"], + "shuffle": ["A", "M", "G", "D", "S"], + "tittering's": [], + "rip's": [], + "crowbar'ses": [], + "troubles": [], + "Currier's": [], + "vomiting": [], + "alluviums": [], + "fiends": [], + "Po": ["M"], + "hers": [], + "Confederate": ["M", "S"], + "Wis": [], + "bantams's": [], + "magnetism": ["M"], + "flagrant": ["Y"], + "humongous": [], + "mobile'ses": [], + "missionaries's": [], + "jilt": ["M", "D", "S", "G"], + "copyrights": [], + "Meyers": ["M"], + "presuminged": [], + "prescient": ["Y"], + "Wilda's": [], + "interlocutors's": [], + "intensifiersing": [], + "perfumer's": [], + "cartels": [], + "facilitationed": [], + "coninduct": [], + "prostitute'sing": [], + "carpet": ["M", "D", "G", "S"], + "spireas's": [], + "graybeards's": [], + "churchyards": [], + "Tagore": ["M"], + "gathering": ["M"], + "kissesable": [], + "haler": [], + "scat's": [], + "lockstep's": [], + "hooker'ses": [], + "debauch": ["M", "D", "S", "G"], + "inimical": ["Y"], + "acuteness's": [], + "Bridalveil": ["M"], + "plimsoll": ["S"], + "empathetic": [], + "comp's": [], + "musing": ["M", "Y"], + "queererly": [], + "wanted": ["U"], + "currency": ["S", "M"], + "unexpectedness's": [], + "recreant's": [], + "prognosticationed": [], + "aspiratingen": [], + "regrettably": [], + "teacupfuls": [], + "reject'sed": [], + "Senecas": [], + "caught": ["U"], + "zealously": [], + "umiak's": [], + "embrace'sing": [], + "bodysuit": ["S", "M"], + "maddenings": [], + "abound": ["D", "S", "G"], + "Munich's": [], + "Elmo": ["M"], + "vuvuzela": ["M", "S"], + "sardines": [], + "wold's": [], + "vintages": [], + "myrrh": ["M"], + "allergen's": [], + "nauseated": [], + "smarts": ["M"], + "acerbated": [], + "becks's": [], + "barhops": [], + "accouters": [], + "agriculture": ["M"], + "refugees's": [], + "funnels": [], + "stockpiling": [], + "prose": ["M"], + "bassists": [], + "lifestyle": ["S", "M"], + "Alighieri's": [], + "shabbier": [], + "cattail's": [], + "outwith": [], + "gala's": [], + "drift'sed": [], + "dichotomous": [], + "magnify": ["Z", "G", "X", "D", "R", "S", "N"], + "anticipate": ["G", "N", "X", "D", "S"], + "gimp'sed": [], + "preseasons": [], + "perjureder": [], + "boulders's": [], + "transposition": ["M", "S"], + "licenses": [], + "risking": [], + "healthiness's": [], + "ally": ["G", "D", "S", "M"], + "gonerser": [], + "commingleds": [], + "alteration's": [], + "adeptliness": [], + "iconoclast": ["S", "M"], + "dictation's": [], + "appropriator's": [], + "sorriness's": [], + "palfreys's": [], + "friary": ["S", "M"], + "entails": [], + "professedly": [], + "bonehead": ["S", "M", "D"], + "sophistries's": [], + "toolbox": ["M", "S"], + "skoals": [], + "bales's": [], + "Mafia'ses": [], + "persimmons": [], + "digestibility": ["M"], + "compartmentalizing": [], + "environmental": ["Y"], + "exons": [], + "battled": [], + "directs": [], + "mousetraps": [], + "mockingbirds's": [], + "Tahitian": ["M", "S"], + "steepen": ["G", "D"], + "versus": [], + "Malaya": ["M"], + "nostrils": [], + "chlorinationed": [], + "glimmers": [], + "paramecium": ["M"], + "gallon": ["S", "M"], + "ruggedness": ["M"], + "Lebesgue's": [], + "nursemaid": ["M", "S"], + "oligarchy": ["S", "M"], + "repairmen": [], + "tut's": [], + "neoplasm's": [], + "cognate's": [], + "fictionalizesing": [], + "moisturizeder": [], + "healthcare": [], + "crucible's": [], + "leotard": ["S", "M"], + "imaginal": [], + "planers's": [], + "enlightenment": ["M"], + "sordidness": ["M"], + "Berliner": ["M"], + "jailbird": ["S", "M"], + "Kendall": ["M"], + "Siamese's": [], + "metempsychosis's": [], + "fracked": [], + "triglycerides": [], + "kookaburras": [], + "takers": [], + "alley's": [], + "relationship": ["M", "S"], + "duskier": [], + "chairmanships": [], + "iguana'ses": [], + "Trafalgar": ["M"], + "improvabled": [], + "predesignateds": [], + "Cokes's": [], + "anionic": [], + "witnessed": [], + "crocheters": [], + "showcase'sing": [], + "archival": [], + "dissimulate": [], + "spirituality": ["M"], + "shadowier": [], + "Fourneyron's": [], + "nurtured": [], + "symptomatic": [], + "fieldwork's": [], + "sobbing": ["Y"], + "foraying": [], + "Springfield's": [], + "Pulaski": ["M"], + "academicians": [], + "gumboil's": [], + "wrenchesing": [], + "curls": [], + "explosivesness": [], + "quark": ["M", "S"], + "abstracting": [], + "repose": [], + "musicology": ["M"], + "lynx's": [], + "hematology": ["M"], + "authoritative": ["Y", "P"], + "freebies's": [], + "focusing": [], + "institute": ["X", "M", "Z", "G", "N", "D", "R", "S"], + "authorization's": [], + "Samantha": ["M"], + "depreciation": ["M"], + "modeling": ["M"], + "normalization's": [], + "congruities": [], + "carcass's": [], + "headwinds": [], + "plastique": [], + "residential": [], + "pillion's": [], + "coup": ["A", "S"], + "ostracize": ["G", "D", "S"], + "chanciness": ["M"], + "shifteds": [], + "pilothouses's": [], + "vindicators": [], + "microfilming": [], + "pismire's": [], + "rotaries's": [], + "burliness": ["M"], + "shanghaieds": [], + "vegetable": ["S", "M"], + "buoyantly": [], + "allotment": ["S", "M"], + "afterlives": [], + "bullhorns": [], + "Patsy": ["M"], + "thrash'sed": [], + "crackhead": ["M", "S"], + "dream's": [], + "loam": ["M"], + "plunder's": [], + "staunchness's": [], + "individuation's": [], + "bettor'ses": [], + "newspapermen": [], + "Isis's": [], + "misuse'sing": [], + "floppies": [], + "currant'ses": [], + "befit": ["S"], + "specially": [], + "Philippines": ["M"], + "publicize": ["G", "D", "S"], + "Bordon": ["M"], + "unruliness's": [], + "Altiplano's": [], + "Beatriz's": [], + "publisher's": [], + "suggestions's": [], + "convolutions": [], + "nonplussed": [], + "lyceums": [], + "Bermudas": [], + "Max's": [], + "accomplisheds": [], + "spade'sing": [], + "signature's": [], + "homeland": ["M", "S"], + "conveners": [], + "quagmires's": [], + "fuzzily": [], + "countermands": [], + "puritanical": ["Y"], + "penknives": [], + "shackeds": [], + "Zenger": ["M"], + "viva's": [], + "tideland": ["S", "M"], + "flouncing": [], + "skidded": [], + "gang's": [], + "Theseus": ["M"], + "whiten": ["Z", "G", "D", "R", "J"], + "moistened": [], + "indicting": [], + "cosmogony": ["S", "M"], + "reparable": [], + "ravishersing": [], + "shame's": [], + "cynosures": [], + "silvering": [], + "stud's": [], + "outraceds": [], + "painted": ["U"], + "arthroscope": ["S", "M"], + "Benz's": [], + "Reading": ["M"], + "whimsical": ["Y"], + "jaggederly": [], + "excoriationens": [], + "whacker": ["M"], + "overlook": ["G", "M", "D", "S"], + "quashed": [], + "wasters": [], + "minuter": [], + "hairpins's": [], + "Fairbanks's": [], + "plunking": [], + "Sundanese": ["M"], + "cradles": [], + "catharsis": ["M"], + "chiming": [], + "cleannessers": [], + "cellulose's": [], + "godson's": [], + "paleness": ["M"], + "sicknesses": [], + "forger's": [], + "innerings": [], + "radicalized": [], + "doodled": [], + "sulfate's": [], + "Couperin's": [], + "bargainings": [], + "tint'sed": [], + "stringing": [], + "QC": [], + "impairment's": [], + "videophone's": [], + "logistically": [], + "roadie'ses": [], + "force'sing": [], + "recuperation": ["M"], + "hogbacks's": [], + "senora's": [], + "encounter": ["G", "S", "M", "D"], + "Safavid's": [], + "counterfoil'ses": [], + "overmodest": [], + "indecency": [], + "gutting": [], + "yeasty": ["R", "T"], + "lords": [], + "deserting": [], + "Puritanism": ["M", "S"], + "succession's": [], + "opaqueness's": [], + "steered": [], + "maces": [], + "moderatenessed": [], + "Hitachi's": [], + "Turin's": [], + "fixate": ["G", "N", "V", "D", "S", "X"], + "quotients": [], + "honorarium'ses": [], + "stash'sed": [], + "messengers": [], + "bobtails": [], + "practitioner": ["S", "M"], + "twelvemonth's": [], + "counteraction's": [], + "consolidation's": [], + "distillate": ["S", "M", "N", "X"], + "alliterated": [], + "engraversing": [], + "offertories's": [], + "dairying's": [], + "doggerel": ["M"], + "McIntyre's": [], + "inheritors's": [], + "handpickeds": [], + "coalfaces": [], + "Ramakrishna": ["M"], + "Yaobang": ["M"], + "hedgers": [], + "hoarfrost": ["M"], + "dovetaileds": [], + "revitalize": [], + "scamp's": [], + "underpins": [], + "nasal's": [], + "ramjet": ["S", "M"], + "Hartline": ["M"], + "swim's": [], + "lean": ["M", "D", "R", "S", "T", "G", "J", "P"], + "warships's": [], + "stroboscope": ["M", "S"], + "craftiness's": [], + "impregnation": ["M"], + "toolbox'ses": [], + "woofer": ["M"], + "futurity's": [], + "amendment's": [], + "decoys": [], + "Spartacus": ["M"], + "segfaults": [], + "Fry": ["M"], + "nimblenesser": [], + "patriarchate'ses": [], + "picketers": [], + "filler's": [], + "savior": ["S", "M"], + "molter": ["M"], + "subjoins": [], + "specter'ses": [], + "pelleteds": [], + "audibility": ["I", "M"], + "subsidinged": [], + "susceptible": ["I"], + "Alfred's": [], + "third's": [], + "teleconferencing": ["M"], + "chronology's": [], + "stove's": [], + "Pres": [], + "arises": [], + "unfreeze": [], + "break's": [], + "toadyism's": [], + "appealeds": [], + "ageism": ["M"], + "beneficently": [], + "multitasks": [], + "generalizations": [], + "hankies": [], + "pouffes": [], + "prophylactics's": [], + "goatskin'ses": [], + "anorexic": ["M", "S"], + "frenetically": [], + "thimble'ses": [], + "Croat": ["S", "M"], + "0": ["n", "m"], + "loggia": ["S", "M"], + "banqueting's": [], + "plaster": ["S", "Z", "G", "M", "D", "R"], + "DUI": [], + "intellectual'sly": [], + "invasion's": [], + "symmetric": [], + "Humvee": ["M"], + "geranium'ses": [], + "dosing": [], + "sedation's": [], + "grandpas": [], + "computerization's": [], + "bouillon'ses": [], + "mathematics's": [], + "exposition": ["S", "M"], + "purblind": [], + "Bodhidharma's": [], + "waters's": [], + "logicality's": [], + "Robt": ["M"], + "process": ["A", "G", "D", "S"], + "euthenics's": [], + "Oregonian's": [], + "milkweeds's": [], + "dis's": [], + "tuition": ["I", "M"], + "mounter": ["M", "S"], + "linchpins's": [], + "kidnap": ["S"], + "tediousness": ["M"], + "nonreciprocals": [], + "beard's": [], + "Xians": [], + "quahog's": [], + "miscarryinged": [], + "Nazis": [], + "chink'sed": [], + "crackpots": [], + "situates": [], + "liberalness's": [], + "tolerated": [], + "lout": ["M", "S"], + "comfortless": [], + "Mackenzie": ["M"], + "blasts": [], + "sequence": ["M", "Z", "G", "D", "R", "S"], + "limpet's": [], + "method's": [], + "millennium": ["M", "S"], + "domesticatesing": [], + "Messieurs": [], + "coatingses": [], + "racketeering's": [], + "assurance": ["A", "S", "M"], + "indoctrinateds": [], + "demitasse's": [], + "junctions's": [], + "lorises": [], + "blitzkrieg's": [], + "homestead": ["S", "M", "D", "R", "Z", "G"], + "mendicant's": [], + "carousel": ["S", "M"], + "substructures": [], + "Rothschild": ["M"], + "gradual": ["P", "Y"], + "cadence's": [], + "dissects": [], + "judge": ["A", "D", "S", "G"], + "subsurface's": [], + "Elsie's": [], + "Ellis": ["M"], + "approach's": [], + "bouillabaisse": ["S", "M"], + "ventriloquist": ["S", "M"], + "lout's": [], + "meld": ["M", "D", "S", "G"], + "soldier": ["M", "D", "Y", "S", "G"], + "throwing": [], + "Mesmer": ["M"], + "Judas": ["M", "S"], + "vegetative": [], + "fortification": ["M"], + "entertainment'ses": [], + "behaveds": [], + "eagles": [], + "adjudications": [], + "Jannie's": [], + "cauldrons": [], + "temperatures": [], + "opossum's": [], + "witnesses": [], + "rent's": [], + "Orwell's": [], + "udder": ["S", "M"], + "grousersing": [], + "carbonation": ["M"], + "whooper's": [], + "dialing": ["S"], + "flotilla": ["M", "S"], + "censorious": ["P", "Y"], + "Amerasian": ["M"], + "miraculous": ["Y"], + "prevaricateds": [], + "lettering": ["M"], + "Tulane's": [], + "speciousliness": [], + "packaging's": [], + "unprepossessing": [], + "basic": ["M", "S"], + "cottaging": [], + "vape": ["G", "D", "S"], + "hybrids's": [], + "sorta": [], + "looking": [], + "boosteder": [], + "committal": ["S", "M"], + "Gershwin's": [], + "airily": [], + "Zionisms's": [], + "buffaloes": [], + "soothersing": [], + "tarpons": [], + "racecourses's": [], + "triteness's": [], + "prefabricatingen": [], + "relic": ["M", "S"], + "can'sed": [], + "punt'sed": [], + "theory": ["S", "M"], + "Bavaria": ["M"], + "firefighting": ["M"], + "underthings": ["M"], + "sarcastic": [], + "swayback'sed": [], + "chanters": [], + "courtly": ["P", "R", "T"], + "bankrollsing": [], + "darkness": ["M"], + "rifteds": [], + "turnstile's": [], + "blemished": ["U"], + "carouse": ["D", "R", "S", "M", "Z", "G"], + "Nauru": ["M"], + "analyzing": [], + "careerist's": [], + "matter": ["M", "D", "G"], + "overachievers": [], + "metric": ["S"], + "Snickers's": [], + "redistricted": [], + "nodal": [], + "claustrophobia's": [], + "pluralization's": [], + "Bernadine's": [], + "inexplicable": [], + "rollover's": [], + "headship": ["S", "M"], + "chipper": ["M", "S"], + "vine'ses": [], + "darer": ["M"], + "extravaganza'ses": [], + "toddies": [], + "menacingly": [], + "spattered": [], + "crawlier": [], + "emotionless": [], + "oilcloth's": [], + "madcap": ["M", "S"], + "ensemble's": [], + "maharanis": [], + "immobility": ["M"], + "tit's": [], + "monasticism": ["M"], + "smelliness": ["M"], + "adsorbent": ["M", "S"], + "snug": ["M", "Y", "S", "P"], + "stutterersing": [], + "crayon": ["G", "S", "M", "D"], + "percentiles": [], + "hided": [], + "dread's": [], + "pikestaffs": [], + "intrusiveness's": [], + "grebe": ["S", "M"], + "extrapolations": [], + "arbitrage's": [], + "acridly": [], + "dean": ["M"], + "Valeria": ["M"], + "Monticello": ["M"], + "profession": ["S", "M"], + "guvnor": ["S"], + "nucleatingen": [], + "philanthropists": [], + "inseparables": [], + "nightclothes": ["M"], + "gentrifyingen": [], + "academies": [], + "piniest": [], + "militates": [], + "singer's": [], + "obsequies": [], + "notaries": [], + "roughhouse'sing": [], + "castle": ["M", "G", "D", "S"], + "minefields": [], + "endure": ["D", "S", "B", "G"], + "contextualization": [], + "puddle'sing": [], + "astute": ["P", "Y", "T", "R"], + "dairymaid": ["M", "S"], + "outages's": [], + "categorizes": [], + "reacquired": [], + "scrumped": [], + "voucheder": [], + "wetting": [], + "Utopia's": [], + "scintillas": [], + "nonstaining": [], + "misapplyingen": [], + "heroically": [], + "menfolks": ["M"], + "Gorgonzola's": [], + "filtrating": [], + "anomalies's": [], + "saloons": [], + "deedinged": [], + "Alabamians": [], + "haj": [], + "Squibb's": [], + "squeegeeds": [], + "Church's": [], + "watchtower": ["S", "M"], + "moldersing": [], + "stiffener's": [], + "compactly": [], + "Durex's": [], + "posted": [], + "bagginess": ["M"], + "redistribute": [], + "riles": [], + "adjutants's": [], + "docklands": [], + "collier": ["M"], + "singalong": ["S"], + "fallacy": ["S", "M"], + "contraindications": [], + "recto's": [], + "choruseds": [], + "unilaterally": [], + "backpacks": [], + "brontosaurs": [], + "Saatchi": ["M"], + "imposture": ["M", "S"], + "pluckily": [], + "doorkeeper": ["M", "S"], + "auctions": [], + "stabbing'ses": [], + "cop": ["G", "J", "S", "M", "D"], + "mullions": [], + "beautify": ["N", "D", "R", "S", "Z", "G"], + "puncher's": [], + "OTOH": [], + "fostersed": [], + "oral": ["M", "Y", "S"], + "assimilated": [], + "scintilla's": [], + "Rothschild's": [], + "mingles": [], + "overproducinged": [], + "transpolar": [], + "excursion": ["M", "S"], + "twinkled": [], + "fedora's": [], + "obduracy's": [], + "probable": ["S", "M"], + "coagulateds": [], + "vagina": ["S", "M"], + "individuality": ["M"], + "drags": [], + "interviewer": ["M"], + "peg's": [], + "spiel'sed": [], + "Thalia's": [], + "refreeze": [], + "kinship": ["M"], + "swatting": [], + "enigma's": [], + "newly": [], + "smugliness": [], + "respondents": [], + "scrunchesing": [], + "drear": [], + "twangy": ["R", "T"], + "turquoise's": [], + "licking": ["M"], + "uncompleted": [], + "Clarissa's": [], + "handcuffed": [], + "quavery": [], + "Sioux": ["M"], + "disciplinary": [], + "eyeds": [], + "cablecasting": [], + "coincidesing": [], + "garcons's": [], + "electrify": ["Z", "G", "N", "D", "R", "S"], + "Grail": ["M"], + "Pole": ["S", "M"], + "crawly": ["T", "R", "S", "M"], + "egalitarian's": [], + "doable": [], + "burgundy": ["S", "M"], + "thug": ["M", "S"], + "Coltrane": ["M"], + "pitchforks": [], + "leveling's": [], + "flutters": [], + "Elroy's": [], + "Dayan": [], + "fleding": [], + "phrenology's": [], + "graciousness": ["M"], + "wienie's": [], + "signatories": [], + "pogroms's": [], + "shortbread's": [], + "donkey": ["S", "M"], + "memes": [], + "Trinity": ["S", "M"], + "anglicize": ["G", "D", "S"], + "antiabortionist's": [], + "fairways's": [], + "rationally": [], + "mausoleums's": [], + "deadpanning": [], + "astray": [], + "Blair's": [], + "ignored": [], + "dicks": [], + "seminar'ses": [], + "consumabled": [], + "carcinogenicity's": [], + "obscurity": ["S", "M"], + "espaliering": [], + "reversion": [], + "iambic": ["S", "M"], + "adjournment": ["S", "M"], + "pregnancy's": [], + "catalpa's": [], + "tear's": [], + "shovels": [], + "bloops": [], + "dirk'ses": [], + "underrepresented": [], + "scorekeeper'ses": [], + "bestride": ["S", "G"], + "materialism's": [], + "cerebrovascular": [], + "Lean": ["M"], + "scuppers": [], + "hatters": [], + "humpeds": [], + "vuvuzelas": [], + "enthusiasm's": [], + "vacillationed": [], + "skinhead": ["M", "S"], + "tunnel'sed": [], + "gravitas": [], + "ragbag": ["M"], + "dipsomaniac": ["M", "S"], + "mastic": ["M"], + "Schwinger's": [], + "harpsichord": ["M", "S"], + "Yong": ["M"], + "impulseds": [], + "vaccinatesens": [], + "calendareding": [], + "flotsam": ["M"], + "smallest": [], + "assailed": [], + "scald'sed": [], + "Brunhilde": ["M"], + "presenterly": [], + "conspicuousnessly": [], + "begonia's": [], + "embezzlersing": [], + "impiousness's": [], + "hybrid": ["S", "M"], + "rabbi's": [], + "roadways's": [], + "Bess's": [], + "pogrom's": [], + "panto": ["S"], + "inquisitions": [], + "listenable": [], + "unshakably": [], + "Cambrians": [], + "enshroudings": [], + "Perseus's": [], + "collages": [], + "sultrily": [], + "dermis": ["M"], + "numerous": ["Y"], + "coyote": ["S", "M"], + "monitory": [], + "gallop's": [], + "mt": [], + "externalizations's": [], + "diddler's": [], + "censor's": [], + "vexations": [], + "slathering": [], + "undercurrents": [], + "nonnuclear": [], + "ibis's": [], + "legalization's": [], + "denser": [], + "bookplate'ses": [], + "Sahel's": [], + "pithier": [], + "cutworm's": [], + "flirtsing": [], + "townee": ["S"], + "crudites": ["M"], + "staidness's": [], + "sulfured": [], + "thrum's": [], + "petrology's": [], + "photograph": ["M", "D", "R", "Z", "G"], + "pointless": ["P", "Y"], + "nonuser'ses": [], + "daub": ["S", "Z", "G", "M", "D", "R"], + "dermatologists's": [], + "metatarsal": ["M", "S"], + "enterprise'sing": [], + "Ximenes's": [], + "susses": [], + "obviousness's": [], + "microwaves's": [], + "memorializes": [], + "reopening": [], + "poocheds": [], + "lion'ses": [], + "darkroom's": [], + "barbie": ["S"], + "averaging": [], + "scenario": ["M", "S"], + "beaded": [], + "Ito's": [], + "abhorred": [], + "shorten": ["J", "G", "D"], + "Maker": ["M"], + "neurally": [], + "bridgeheads": [], + "Arab": ["S", "M"], + "Galileans": [], + "carters": [], + "wherry's": [], + "huntress's": [], + "counseling": [], + "courtroom'ses": [], + "Compaq": ["M"], + "barnstorming": [], + "predictability": ["U", "M"], + "deceiving": ["Y"], + "Kyrgyzstan": ["M"], + "valency's": [], + "bobolink's": [], + "radiotherapy": ["M"], + "forecaster's": [], + "befog": ["S"], + "Esquire": ["M", "S"], + "fiercer": [], + "asseverate": ["D", "S", "G", "N"], + "chill'sed": [], + "neophilia": [], + "vocalization'ses": [], + "electrifiers": [], + "gull": ["M", "D", "S", "G"], + "cipheringed": [], + "failingings": [], + "whammies": [], + "star'sed": [], + "envenomeding": [], + "socialites's": [], + "arrowroot": ["M"], + "lovableness": ["M"], + "bails": [], + "mildew'sed": [], + "Dominick": ["M"], + "arbitraging": [], + "speleologist'ses": [], + "violinist's": [], + "edit": ["A", "D", "G", "S"], + "phonically": [], + "Belushi": ["M"], + "pugnacious": ["Y", "P"], + "Krasnodar's": [], + "lavishes": [], + "trounced": [], + "requested": [], + "naileds": [], + "narrowness's": [], + "pachysandra's": [], + "ciabatta's": [], + "desalinizeds": [], + "Canad": [], + "tussock'ses": [], + "oxford's": [], + "craters": [], + "inrushes": [], + "tribe": ["S", "M"], + "Akbar": ["M"], + "discretely": [], + "cognac": ["S", "M"], + "frail": ["R", "Y", "T", "P"], + "Friday": ["S", "M"], + "useless": ["Y", "P"], + "crabgrass's": [], + "sclerosis": ["M"], + "resonantly": [], + "Greece's": [], + "pertest": [], + "looniest": [], + "binocular's": [], + "interwar": [], + "epoch's": [], + "hibernatingen": [], + "Olduvai's": [], + "splinting": [], + "walleyes": [], + "Belize": ["M"], + "disreestablish": [], + "mudflat's": [], + "Cody's": [], + "slowing": [], + "potteries's": [], + "arugula": [], + "literal": ["S", "M", "Y", "P"], + "soybeans": [], + "comforteding": [], + "aspirate": ["M", "G", "N", "D", "S", "X"], + "Chloe's": [], + "speculatively": [], + "oxbow'ses": [], + "hurry": ["D", "S", "M", "G"], + "impregnate": ["G", "N", "D", "S"], + "quaintnesser": [], + "praline": ["S", "M"], + "regulatingen": [], + "buzz's": [], + "crumbedly": [], + "scrawls's": [], + "someday": [], + "caregiver": ["S", "M"], + "immobile": [], + "tender's": [], + "Padilla": ["M"], + "disputant's": [], + "lupine'ses": [], + "gutter's": [], + "receptivity": ["M"], + "regards's": [], + "sanitizeds": [], + "buskins's": [], + "XEmacs's": [], + "wonkiest": [], + "electromagnetism's": [], + "fluster's": [], + "moccasins's": [], + "Creole": ["S", "M"], + "zucchini": ["M", "S"], + "viciousliness": [], + "confabulateds": [], + "powered": [], + "sleepyhead'ses": [], + "reprehensible": [], + "assured": ["M", "Y", "S"], + "studbook'ses": [], + "Zapata": ["M"], + "Sherpa": ["M"], + "inhibitsed": [], + "4th": ["p", "t"], + "even": ["M", "D", "R", "Y", "T", "G", "S", "J", "P"], + "birdhouse": ["M", "S"], + "peasant's": [], + "reciters": [], + "Francisca's": [], + "numismatics's": [], + "monotones": [], + "direct": ["A", "S", "D", "G", "V", "T"], + "sicking": [], + "salesclerk": ["S", "M"], + "Peiping's": [], + "telecommunications": ["M"], + "savoriness": ["M"], + "artillery's": [], + "freezer": ["M", "S"], + "mythologies's": [], + "robbed": [], + "contaminant": ["S", "M"], + "sportscaster": ["M"], + "transcript": ["M", "S"], + "meretriciousliness": [], + "diagnosticians's": [], + "barbels": [], + "resit": ["S"], + "mushers": [], + "marvel": ["M", "D", "G", "S"], + "coterie's": [], + "primula": ["S"], + "salaciousness": ["M"], + "unsteadiness": [], + "Chesterton": ["M"], + "cartographer's": [], + "rashly": [], + "lobotomies's": [], + "playfully": [], + "spatter'sed": [], + "extracurricular": [], + "underarm": ["S", "M"], + "clericalism's": [], + "Bulgari": ["M"], + "McEnroe's": [], + "clumsiest": [], + "Rockies": ["M"], + "trains": [], + "SWAT": [], + "ratchets": [], + "buskerers": [], + "worry's": [], + "lifebuoy'ses": [], + "demented": ["Y"], + "sponges's": [], + "Tc's": [], + "Cheshire's": [], + "revolutionaries": [], + "botheration": [], + "relaxant'ses": [], + "devotedly": [], + "allocating": [], + "subtracting": [], + "keypads": [], + "Becky": ["M"], + "refurbishment": ["M", "S"], + "raining": [], + "Michelle's": [], + "crude'sly": [], + "tacklers": [], + "feelingly": [], + "denature": ["D", "G"], + "upsides": [], + "whiffed": [], + "robots": [], + "shamble's": [], + "riboflavin": ["M"], + "commodity": ["S", "M"], + "postprandial": [], + "lassos's": [], + "parapsychology's": [], + "Sanhedrin's": [], + "companionway'ses": [], + "sneakierness": [], + "antagonistically": [], + "whiled": [], + "seawalls": [], + "babysitter'ses": [], + "Chicagoan's": [], + "underweight's": [], + "Salvatore's": [], + "headlocks": [], + "honeycombeds": [], + "asterisking": [], + "bootlegs": [], + "Scotchmen's": [], + "Bellatrix's": [], + "camps": [], + "applyinged": [], + "mansions": [], + "grimed": [], + "leopardess'ses": [], + "retrospect's": [], + "recurrence": ["S", "M"], + "clotheslines": [], + "Ghazvanid": ["M"], + "salesroom": ["S"], + "gross's": [], + "zanies's": [], + "tingedly": [], + "annealed": [], + "steakhouse's": [], + "Duluth's": [], + "Lassie": ["M"], + "plus's": [], + "Norberto's": [], + "mortiseds": [], + "groan'sed": [], + "soapbox": ["M", "S"], + "Karina": ["M"], + "perm'sed": [], + "Nicholas": ["M"], + "results": [], + "preferred": [], + "scoffed": [], + "satisfy": ["E", "D", "S", "G"], + "earaches's": [], + "curses": [], + "frigidness's": [], + "electrocutesens": [], + "mooredings": [], + "discomfiting": [], + "legation": [], + "minstrel's": [], + "comportinged": [], + "semiannually": [], + "chewers": [], + "salesladies's": [], + "Oktoberfest's": [], + "barrette": ["S", "M"], + "Welles's": [], + "toilerers": [], + "allspice's": [], + "alkaline": [], + "veracity": ["M"], + "put's": [], + "tarrying": [], + "xylem's": [], + "axolotls's": [], + "reexamine": [], + "flawing": [], + "Castillo": ["M"], + "giftings": [], + "indefiniteness": [], + "tarragons's": [], + "obsession's": [], + "dowser's": [], + "toes": [], + "dazzler": ["M"], + "Pernod's": [], + "milkmen": [], + "voyages": [], + "scrounged": [], + "chromatin": ["M"], + "umpired": [], + "slack's": [], + "trait": ["S", "M"], + "stockbroking's": [], + "aspic's": [], + "chug": ["S", "M"], + "uptrend": [], + "inculpateds": [], + "linage": ["M"], + "constancy": ["I", "M"], + "agribusinesses": [], + "jolt's": [], + "viability's": [], + "bridges's": [], + "asinine": ["Y"], + "cholera": ["M"], + "postpone": ["D", "S", "G", "L"], + "carotids's": [], + "tailpieces": [], + "scapula's": [], + "subdivisions": [], + "songster": ["M", "S"], + "motioned": [], + "bannocks": [], + "vaccine": ["S", "M"], + "emblazonment's": [], + "subcontractsing": [], + "weighty": ["P", "T", "R"], + "commutators's": [], + "lifebelts": [], + "Kiwanis": ["M"], + "outset's": [], + "assassin": ["S", "M"], + "carpool'sed": [], + "Bremen": ["M"], + "headmistress": ["M", "S"], + "seminarian": ["S", "M"], + "digestive": ["S"], + "graver": [], + "scruff's": [], + "patriots's": [], + "threader": ["M"], + "Moe's": [], + "minimizing": [], + "crappie's": [], + "honeybee's": [], + "relative'sly": [], + "dumpeder": [], + "criminologists": [], + "unreserved": [], + "circuses": [], + "binaries's": [], + "pleura's": [], + "Garrett": ["M"], + "frugality's": [], + "rationalist's": [], + "lowbrows's": [], + "relished": [], + "silo's": [], + "doubtfully": [], + "pokeder": [], + "Josephson's": [], + "resentfulness": ["M"], + "plebe": ["M", "S"], + "Waikiki's": [], + "tenses's": [], + "mollusk": ["S", "M"], + "outsize": ["M", "S"], + "sickbed": ["S", "M"], + "Octobers's": [], + "walrus": ["M", "S"], + "Cash's": [], + "pugilist": ["S", "M"], + "monstrosities": [], + "reactants": [], + "warrior": ["S", "M"], + "tautologically": [], + "cohos": [], + "penalty's": [], + "expressway": ["S", "M"], + "Gingrich's": [], + "Holloway's": [], + "censuring": [], + "mutts": [], + "riviera": ["S"], + "cutup": ["S", "M"], + "shepherded": [], + "surrogacy's": [], + "bruiteding": [], + "sleuth": ["M", "G"], + "horseshoes": [], + "mummifies": [], + "Slinky": ["M"], + "chestnut's": [], + "harmonium's": [], + "chafing": [], + "superfluity's": [], + "anaconda": ["S", "M"], + "resemblance": [], + "dirtiness": ["M"], + "tablinged": [], + "Cather": ["M"], + "average'sly": [], + "dolor's": [], + "Carter's": [], + "lowliness": ["M"], + "abstention": ["M", "S"], + "slimmers": [], + "legitimates": [], + "Marisol": ["M"], + "incenses": [], + "witters": [], + "linkup'ses": [], + "sill's": [], + "hen": ["M"], + "Citroen": ["M"], + "straightnessens": [], + "trendily": [], + "drudged": [], + "crosstown": [], + "uniform's": [], + "corrected": ["U"], + "melting": [], + "confirmation": ["A", "S", "M"], + "strategists's": [], + "alacrity": ["M"], + "fuselages": [], + "lulu": ["S"], + "thundershower": ["S", "M"], + "safaried": [], + "acolyte": ["M", "S"], + "harmonizer's": [], + "behest'ses": [], + "entreatings": [], + "talus'ses": [], + "gauges's": [], + "fixatives": [], + "sands": [], + "perpetual'sly": [], + "Siva's": [], + "hised": [], + "Houyhnhnm's": [], + "nontransparent": [], + "pretendersing": [], + "horseplay": ["M"], + "chicane": ["M", "S"], + "sodomizing": [], + "hearing's": [], + "motivator's": [], + "defile's": [], + "rebels": [], + "wildflowers's": [], + "gift'sed": [], + "stripping": [], + "projectile": ["S", "M"], + "Medici": ["M"], + "timestamps's": [], + "motorcar's": [], + "Terence's": [], + "grafteder": [], + "fornicates": [], + "Albanian": ["M", "S"], + "token": ["S", "M"], + "tablings": [], + "Goldsmith": ["M"], + "interdisciplinary": [], + "porringers's": [], + "shoving": [], + "overdub": ["S", "M"], + "areal": [], + "Beaujolais": ["M"], + "Gretchen": ["M"], + "expend": ["G", "S", "B", "D"], + "stratifieds": [], + "opposeds": [], + "bluesier": [], + "thingamabob": ["S", "M"], + "posinged": [], + "minuses": [], + "ethnics": [], + "weasellies": [], + "maria": ["M"], + "thinkser": [], + "roguery's": [], + "shakedown": ["S", "M"], + "confuting": [], + "conceive": ["D", "S", "G", "B"], + "goalpost's": [], + "mountains": [], + "inbound": [], + "brace": ["M", "Z", "G", "D", "R", "S"], + "scrummage": ["S"], + "rib's": [], + "amendablement": [], + "subsets": [], + "alkaloid's": [], + "consequently": [], + "abducting": [], + "stratus": ["M"], + "utility's": [], + "forgetfulness's": [], + "arrange": ["A", "E", "S", "D", "L", "G"], + "tableware's": [], + "sheereder": [], + "gazetting": [], + "limn": ["D", "S", "G"], + "reducer's": [], + "triply": [], + "schools": [], + "marine": ["M", "Z", "R", "S"], + "lunchrooms": [], + "locomotive'ses": [], + "rarities": [], + "conveyable": [], + "turbulence": ["M"], + "busts": [], + "towrope": ["S", "M"], + "ritualized": [], + "mews": ["M"], + "hollow": ["M", "D", "R", "Y", "P", "S", "T", "G"], + "peep'sed": [], + "coitus": ["M"], + "Popsicle": ["M"], + "questions's": [], + "coloratura": ["M", "S"], + "fauna's": [], + "Bunin's": [], + "sorely": [], + "Noelle's": [], + "lamer": [], + "upland's": [], + "pepperoni's": [], + "harmful": ["Y", "P"], + "uncleanliness": [], + "torque'sing": [], + "Nashua's": [], + "nobs": [], + "household's": [], + "Antioch's": [], + "surmise": ["M", "G", "D", "S"], + "roadwork's": [], + "herniates": [], + "casuist": ["S", "M"], + "singlet": ["S"], + "brook": ["S", "M", "D", "G"], + "conjured": [], + "missions": [], + "quoiteding": [], + "counterspies's": [], + "Falwell's": [], + "pealed": [], + "consideratenessly": [], + "petrify": ["D", "S", "G"], + "elastics": [], + "Republican": ["S", "M"], + "unexpressed": [], + "pedicure": ["M", "G", "D", "S"], + "paltrierness": [], + "enamelingses": [], + "pharyngeal": [], + "blokish": [], + "counterpointing": [], + "garners": [], + "rafting": ["M"], + "populist'ses": [], + "Kant's": [], + "Hilton": ["M"], + "nonstrategic": [], + "belittlesing": [], + "girteding": [], + "colleague": ["M", "S"], + "tinpot": [], + "mas": [], + "flashiest": [], + "netherworld's": [], + "Valenzuela": ["M"], + "dowdy": ["R", "S", "P", "T"], + "nonavailability's": [], + "pirouetting": [], + "impenitently": [], + "yokeds": [], + "gauziness": ["M"], + "rights": [], + "reediest": [], + "enchantments": [], + "belayeds": [], + "phlebitis's": [], + "telemarketers": [], + "rim'sed": [], + "frowning": [], + "shamrock's": [], + "demure": ["P", "Y"], + "Toto's": [], + "RDA": [], + "richliness": [], + "bonding's": [], + "Mazama's": [], + "sweetens": [], + "devoutly": [], + "firecracker's": [], + "overdrives's": [], + "completer": [], + "onsets": [], + "geodes's": [], + "legwarmer": ["S"], + "brogues's": [], + "coordinatingen": [], + "Alcott's": [], + "standalone": [], + "availing's": [], + "underarms": [], + "OS": ["M"], + "nearsness": [], + "commissary": ["S", "M"], + "deliberately": [], + "bellyful's": [], + "plump": ["M", "D", "R", "Y", "S", "T", "G", "P"], + "cutoffs's": [], + "Yangon": ["M"], + "redskin": ["S", "M"], + "Prussia's": [], + "tires": [], + "rollers": [], + "bumpings": [], + "protons": [], + "tenderloin's": [], + "router's": [], + "sidestrokes": [], + "ohmmeter": ["M", "S"], + "tenon'sed": [], + "PET": ["M"], + "Bluetooth's": [], + "taxer": ["M"], + "lowered": [], + "Lagrange's": [], + "peek": ["M", "D", "S", "G"], + "festiveness's": [], + "interbreed": ["G", "S"], + "Balinese": ["M"], + "microcosms": [], + "suffragette's": [], + "Fuzhou's": [], + "rps": [], + "heal": ["D", "R", "H", "Z", "G", "S"], + "nucleates": [], + "expectantly": [], + "superfluously": [], + "confider's": [], + "name's": [], + "invincibly": [], + "underseas": [], + "windsurfer": ["M"], + "pioneers": [], + "deificationing": [], + "Maginot": ["M"], + "pastern'ses": [], + "miscarriage's": [], + "fallacies": [], + "sandpiper'ses": [], + "expulsion'ses": [], + "prioress": ["M", "S"], + "Orbison's": [], + "troubles's": [], + "decongestants": [], + "misheard": [], + "booed": [], + "imbibed": [], + "flagstaff'ses": [], + "italicization's": [], + "crotch": ["M", "S"], + "shrink's": [], + "tame": ["B", "Y", "Z", "T", "G", "D", "R", "S", "P"], + "oversupplieds": [], + "mealtime's": [], + "figure's": [], + "festively": [], + "scratchcard": ["S"], + "bereavementing": [], + "junket": ["M", "D", "S", "G"], + "conveyed": [], + "AIs": [], + "eatersing": [], + "subcommittee's": [], + "architectonic": ["S"], + "uncharged": [], + "shampoo": ["Z", "G", "M", "D", "R", "S"], + "Sinatra": ["M"], + "budgerigar's": [], + "Amerindian's": [], + "juggleder": [], + "stubs": [], + "metier": ["M", "S"], + "misaddressesing": [], + "numbed": [], + "thugs": [], + "jibbing": [], + "refrigerated": [], + "yep": ["S", "M"], + "blancmange's": [], + "scanning": [], + "cadet's": [], + "habituation": ["M"], + "reseed": [], + "brevets's": [], + "crochet": ["S", "M", "D", "R", "Z", "G"], + "softeners": [], + "browbeating": [], + "drollery": ["S", "M"], + "buyback": ["S", "M"], + "branch": ["G", "M", "D", "S"], + "embryos": [], + "arbutus's": [], + "stabbing's": [], + "tippled": [], + "tenderfoots": [], + "unrepentant": [], + "parallelograms's": [], + "galleria'ses": [], + "precipitate": ["X", "M", "Y", "G", "N", "D", "S"], + "potato": ["M"], + "garner": ["S", "G", "D"], + "diminutives": [], + "airstrike'ses": [], + "fluent": ["Y"], + "originate": ["D", "S", "G", "N"], + "Tyree": ["M"], + "nonclinical": [], + "she'll": [], + "Florence": ["M"], + "parch": ["L", "G", "D", "S"], + "speculatingen": [], + "muskmelon": ["S", "M"], + "apiary": ["S", "M"], + "saltwater": ["M"], + "Lola": ["M"], + "despoliation": [], + "Kochab": ["M"], + "desolation's": [], + "invades": [], + "unsure": [], + "diploma": ["S", "M"], + "virologists's": [], + "clerkeds": [], + "Pitcairn's": [], + "goldenrod": ["M"], + "Montreal's": [], + "endured": [], + "potentialities": [], + "preciseness": ["M"], + "envelopeder": [], + "Rather's": [], + "retrogression's": [], + "permutation": ["S", "M"], + "overflow": ["M", "D", "S", "G"], + "dilator's": [], + "horizons's": [], + "indicator's": [], + "caromeds": [], + "overridings": [], + "dawn's": [], + "Bernstein's": [], + "halt'sed": [], + "corollaries": [], + "Franglais's": [], + "bawlsing": [], + "Biro": ["M"], + "telemetry's": [], + "exorcise": ["D", "S", "G"], + "shipowner's": [], + "schmucks": [], + "shutter": ["S", "M", "D", "G"], + "contentiously": [], + "imitated": [], + "deceleration": ["M"], + "pride's": [], + "jato's": [], + "Lebanon": ["M"], + "tossesers": [], + "coordinators": [], + "oohed": [], + "nearing": [], + "incriminationed": [], + "servinged": [], + "potboilers": [], + "minuend": ["M", "S"], + "user'ses": [], + "airsick": ["P"], + "Viagra's": [], + "stuff's": [], + "Astana": ["M"], + "yeast's": [], + "Oceania's": [], + "multiplexer": ["M"], + "Beaumarchais's": [], + "pharmacy": ["S", "M"], + "drugstores": [], + "axon": ["M", "S"], + "caldera": ["S", "M"], + "schematics": [], + "stalemates's": [], + "matrimony": ["M"], + "refreshingly": [], + "armor": ["Z", "G", "M", "D", "R", "S"], + "agitprop's": [], + "polar": [], + "royals": [], + "butchery's": [], + "Hindemith": ["M"], + "Sunnite'ses": [], + "gaminess's": [], + "edifier": ["M"], + "fallings": [], + "Hebraic": ["M"], + "embalmeder": [], + "rumors": [], + "desertions's": [], + "Gordian": ["M"], + "Harpy": ["S", "M"], + "ascending": [], + "predetermineder": [], + "safeguards's": [], + "dentition's": [], + "Montevideo": ["M"], + "glasnost": ["M"], + "focuses": [], + "hymned": [], + "surprises": [], + "Meyer'ses": [], + "Laverne's": [], + "tattle": ["M", "Z", "G", "D", "R", "S"], + "halyards": [], + "bloodiness's": [], + "McCall": ["M"], + "slipknot's": [], + "soldiersing": [], + "ordination": ["M"], + "fanlight": ["S", "M"], + "find's": [], + "epsilon's": [], + "Gettysburg's": [], + "churns": [], + "argosy": ["S", "M"], + "unutterable": [], + "troubleshot": [], + "trays": [], + "perfectionism": ["M"], + "neath": [], + "geocaches": [], + "moderateds": [], + "rived": [], + "tucking": [], + "falloff": ["S", "M"], + "banishment": ["M"], + "grandstanded": [], + "bulkeding": [], + "liberators": [], + "Jilin's": [], + "eclipses": [], + "devoutest": [], + "bludgeons": [], + "inanimately": [], + "libidinal": [], + "retrace": ["G", "D", "S"], + "example": ["M", "G", "D", "S"], + "nutcracker": ["M", "S"], + "nagged": [], + "underdog's": [], + "vehemence": ["M"], + "plutocrats's": [], + "morality's": [], + "sarnie": ["S"], + "precook": ["G", "S", "D"], + "trove's": [], + "cutback'ses": [], + "bloating": [], + "paraphraseds": [], + "aggravationens": [], + "diversification's": [], + "nimbler": [], + "balersing": [], + "jackknifing": [], + "betterment's": [], + "karaoke's": [], + "Talmud's": [], + "traveling": ["M"], + "jibed": [], + "communication": ["M"], + "abnegates": [], + "debtors": [], + "Magsaysay": ["M"], + "albumin": ["M"], + "coffer's": [], + "descry": ["G", "D", "S"], + "syncopateds": [], + "villagers": [], + "sociologist": ["S", "M"], + "singsonged": [], + "weevils": [], + "Juliette's": [], + "barbarianism": ["M", "S"], + "institutions": [], + "flatters": [], + "season's": [], + "crick": ["S", "M", "D", "G"], + "mosque'ses": [], + "detached": [], + "exempting": [], + "FNMA": ["M"], + "brandisheds": [], + "bastardy": ["M"], + "erasable": [], + "intercommunicateds": [], + "sunspot": ["S", "M"], + "gibeds": [], + "rareness's": [], + "Ricky": ["M"], + "misrepresent": ["G", "D", "S"], + "passivizes": [], + "farmed": [], + "roles": [], + "overextends": [], + "Gethsemane's": [], + "tofu's": [], + "patch's": [], + "VCR": ["M"], + "absorption's": [], + "congregationalism's": [], + "northwesterly": [], + "clods": [], + "acting's": [], + "NSC": [], + "churchwarden'ses": [], + "codificationsed": [], + "calculus's": [], + "mars": [], + "polarizesing": [], + "downhearted": ["P", "Y"], + "intensified": [], + "constabulary's": [], + "Atria's": [], + "folksinging": ["M"], + "kindliness": ["M"], + "shutouts's": [], + "historicity's": [], + "hoist's": [], + "banjo'ses": [], + "washbasins's": [], + "suspects's": [], + "pawpaw's": [], + "tootleds": [], + "planted": [], + "wariness's": [], + "adducinged": [], + "immediate": ["P", "Y"], + "intertwines": [], + "vaporizing": [], + "Duchamp": ["M"], + "Matterhorn's": [], + "refroze": [], + "bespeak": ["S", "G"], + "boutique": ["S", "M"], + "narrative's": [], + "cony": ["M"], + "woodworkerers": [], + "appreciated": ["U"], + "repurchasing": [], + "smockeding": [], + "dichotomies's": [], + "wassailing": [], + "byways's": [], + "tidemark": ["S"], + "salvinged": [], + "guesswork": ["M"], + "explicationsing": [], + "semivowels": [], + "Maginot's": [], + "lie": ["D", "S", "M"], + "frigs": [], + "coverage's": [], + "prohibition's": [], + "flakiness": ["M"], + "customized": [], + "seconding's": [], + "deodorization's": [], + "brushoffs": [], + "Whitsunday": ["M", "S"], + "cataract'ses": [], + "benefaction's": [], + "spoiled": ["U"], + "fantasist": ["S"], + "zebras": [], + "conflicting": [], + "Titans": [], + "Ceres": ["M"], + "slander's": [], + "Cymbeline": ["M"], + "Seton": ["M"], + "putties's": [], + "meddled": [], + "other'ses": [], + "messeds": [], + "adventurer's": [], + "ornithologists": [], + "necessity": ["S", "M"], + "jerkin'ses": [], + "Michel": ["M"], + "obtruding": [], + "salivateds": [], + "inhabiteding": [], + "Capulet": ["M"], + "bedfellows's": [], + "clashing's": [], + "wieners": [], + "porker": ["M"], + "flightier": [], + "Muscovite's": [], + "hiccoughs": [], + "hydro's": [], + "modernizing": [], + "dishpan's": [], + "joey": ["S"], + "jerk's": [], + "thickets": [], + "purveysing": [], + "arraigning": [], + "gallantry's": [], + "permeatingen": [], + "moonstone'ses": [], + "clotures": [], + "Japan": ["M"], + "shams": [], + "identifiersing": [], + "lupine": ["M", "S"], + "conspicuously": [], + "riddance": ["M"], + "mantilla": ["S", "M"], + "insolence's": [], + "pales": [], + "editorializing": [], + "Oneidas": [], + "Devin's": [], + "humidification's": [], + "incarnates": [], + "bra's": [], + "Osgood's": [], + "asserted": [], + "pot's": [], + "coarsensed": [], + "exterminates": [], + "camshafts": [], + "frankincense": ["M"], + "constellations": [], + "misfireds": [], + "policy": ["S", "M"], + "juncture'ses": [], + "penmanship's": [], + "sadistically": [], + "readiest": [], + "safeguard": ["S", "M", "D", "G"], + "caveman's": [], + "splash'sed": [], + "reword": [], + "fixations": [], + "upset": ["S", "M"], + "wigwagging": [], + "traipse'sing": [], + "spitballs's": [], + "inglenooks's": [], + "pigskins": [], + "slurred": [], + "enlistees's": [], + "luxuriance's": [], + "bahts": [], + "mockeries's": [], + "milkmaids": [], + "furtherance's": [], + "anemone's": [], + "antipodal": ["S"], + "enzyme's": [], + "kinematic": ["S"], + "capitalizes": [], + "upholsterer'ses": [], + "crow": ["M", "D", "G", "S"], + "spigots": [], + "Nootka's": [], + "microwaveable": [], + "apelike": [], + "hostage'ses": [], + "demulcent's": [], + "Sade's": [], + "comets's": [], + "teardrops's": [], + "count'sed": [], + "threads's": [], + "humpbacks": [], + "discontentment": [], + "devotees": [], + "Johnie": ["M"], + "Detroit": ["M"], + "token's": [], + "gargleds": [], + "street": ["M", "S"], + "encroaches": [], + "Balzac": ["M"], + "zap": ["S", "M"], + "plutonium": ["M"], + "arise": ["G", "S"], + "crease's": [], + "anticlimax'ses": [], + "wankersing": [], + "buckling": [], + "heroines's": [], + "Emanuel's": [], + "Marion's": [], + "cults": [], + "mouthpiece'ses": [], + "slandered": [], + "driveshafts's": [], + "hombre": ["M", "S"], + "dingiest": [], + "Frankfurt": ["M", "R"], + "cc": [], + "scenically": [], + "ROFL": [], + "suzerainty": ["M"], + "iodides": [], + "lampposts": [], + "unexpectedly": [], + "annuitant's": [], + "complicating": [], + "balcony's": [], + "zincs": [], + "sensationalist'ses": [], + "knuckle'sing": [], + "mission'ses": [], + "friendsed": [], + "matey": ["S"], + "deprave": ["G", "D", "S"], + "active": ["I", "K", "Y"], + "NY": [], + "wagersing": [], + "airbeds": [], + "fob": ["S", "M"], + "manna's": [], + "doing's": [], + "Coventry's": [], + "exaggerations": [], + "southern'ser": [], + "undercoating": ["M"], + "conquerors": [], + "fritter": ["M", "D", "S", "G"], + "Dodson": ["M"], + "candidature's": [], + "deadened": [], + "Nineveh's": [], + "controversy": ["S", "M"], + "Beverley's": [], + "superintending": [], + "miscible": [], + "colonials": [], + "bong": ["S", "G", "M", "D"], + "wiry": ["R", "T", "P"], + "rearmament": [], + "Bill's": [], + "meg": ["S"], + "caraway's": [], + "crabbily": [], + "Yaroslavl": ["M"], + "glimmer'sed": [], + "patties's": [], + "partnership'ses": [], + "jacquard's": [], + "Benedictine's": [], + "lope's": [], + "acuity's": [], + "what's": [], + "bologna's": [], + "pertness": ["M"], + "Elsinore": ["M"], + "surcease'sing": [], + "superstitious": ["Y"], + "authoritativeness's": [], + "Yesenia": ["M"], + "Scotties's": [], + "abateds": [], + "interception": ["M", "S"], + "therapy's": [], + "introit's": [], + "kayo": ["M", "D", "S", "G"], + "miscreants": [], + "pathologically": [], + "pseudonymous": [], + "thumbnail": ["S", "M"], + "chokecherries": [], + "like": ["E", "M", "G", "D", "S", "T"], + "edibleness's": [], + "abrogation": ["M"], + "Tibetans": [], + "bandwagons's": [], + "mumblersing": [], + "Bjork's": [], + "adviseder": [], + "graduations's": [], + "baud's": [], + "noncaloric": [], + "wriggles": [], + "canker's": [], + "pumice's": [], + "Kampuchea's": [], + "deretail": [], + "mollycoddles's": [], + "fallibleness's": [], + "dazzlinged": [], + "preservative's": [], + "printed": [], + "outgrowths": [], + "Etruscan": ["M"], + "Hindustan": ["M"], + "initial'sed": [], + "Ogilvy": ["M"], + "hunch's": [], + "jugglers": [], + "palsy's": [], + "vizier": ["S", "M"], + "rectangular": [], + "reflectors": [], + "cellulite's": [], + "pecking": [], + "acriderly": [], + "multiplexing": [], + "emulsification": ["M"], + "percentage's": [], + "waning": [], + "steppe'sers": [], + "facilitates": [], + "pokeys": [], + "serials": [], + "blueprint's": [], + "Edwards": ["M"], + "Snell's": [], + "roadbeds": [], + "Janell": ["M"], + "anchorwoman": ["M"], + "expediency's": [], + "Learjet's": [], + "intestine": ["M", "S"], + "newscasts": [], + "transmute": ["B", "D", "S", "G"], + "leafage's": [], + "cumbereding": [], + "orris": ["M", "S"], + "conversation": ["M", "S"], + "granduncle": ["S", "M"], + "parrot'sed": [], + "sloop": ["S", "M"], + "oxidase": [], + "sleepover": ["S", "M"], + "narrower": [], + "groom's": [], + "snuglies": [], + "dentist": ["M", "S"], + "new": ["S", "T", "M", "R", "Y", "P"], + "enamelware": ["M"], + "progression's": [], + "intercessions": [], + "classwork's": [], + "Heisman's": [], + "breathesers": [], + "Rosario's": [], + "trinities": [], + "overchargeds": [], + "huckstering": [], + "godfather": ["S", "M"], + "waddle": ["D", "S", "M", "G"], + "millinery's": [], + "Mullins's": [], + "lapdog": ["S", "M"], + "orchids's": [], + "transsexualism's": [], + "rebukes's": [], + "augur's": [], + "embroidered": [], + "jounce's": [], + "antiserum's": [], + "desegregate": [], + "picturesqueness's": [], + "towline's": [], + "field": ["I", "S", "M", "R", "Z"], + "fucks": [], + "Beowulf": ["M"], + "promiscuity": ["M"], + "florins": [], + "bisecting": [], + "shellers": [], + "coach": ["M", "D", "S", "G"], + "causing": [], + "Elvin": ["M"], + "stumble": ["D", "R", "S", "M", "Z", "G"], + "fratricide": ["M", "S"], + "subsidizer's": [], + "scribbled": [], + "cumbered": [], + "launch": ["A", "G", "M", "D", "S"], + "conversion": [], + "exoplanet's": [], + "midtown's": [], + "Alvarez's": [], + "brocaded": [], + "pergola's": [], + "tachometer's": [], + "hung": [], + "liquidity": ["M"], + "enchain": ["D", "G", "S"], + "Faith's": [], + "desertification": [], + "polluters": [], + "jaunt's": [], + "Boulder's": [], + "uveitis": [], + "coolie's": [], + "chaplet's": [], + "brasserie's": [], + "clampdown'ses": [], + "bridals's": [], + "cravenliness": [], + "fandango'ses": [], + "improvement's": [], + "electors": [], + "doilies's": [], + "discoing": [], + "whose": [], + "overhauls": [], + "nonvoters": [], + "soil's": [], + "Chapultepec": ["M"], + "awns": [], + "Beth's": [], + "bedsit": ["S"], + "throws": [], + "betide": ["G", "D", "S"], + "fellows's": [], + "bass's": [], + "arborvitaes": [], + "diamond's": [], + "armfuls": [], + "modeling's": [], + "trow": ["D", "S", "G"], + "overproducing": [], + "Styron's": [], + "chunters": [], + "procession": ["G", "D"], + "caftan": ["M", "S"], + "novelization'ses": [], + "brightly": [], + "penguin'ses": [], + "comfortableness's": [], + "miscellaneous": ["Y"], + "Greece": ["M"], + "stringed": [], + "nanobot": ["S"], + "syndrome": ["S", "M"], + "Terran's": [], + "Chang": ["M"], + "Netherlander's": [], + "prodigality's": [], + "sleazes": [], + "dispenses": [], + "analyzers": [], + "contagion'ses": [], + "ally's": [], + "imperial": ["M", "Y", "S"], + "Iphigenia": ["M"], + "flimflams": [], + "endangersing": [], + "kilometer": ["M", "S"], + "whippersnappers": [], + "ominous": ["Y", "P"], + "hydrometer's": [], + "restlessness's": [], + "Zarathustra's": [], + "beeper": ["M"], + "grapple's": [], + "righteousness": ["U", "M"], + "foregoes": [], + "officer": ["M"], + "clipper's": [], + "surplice": ["M", "S"], + "predetermines": [], + "dishrag's": [], + "Jeanine's": [], + "misdeals": [], + "Fisk": ["M"], + "bartering": [], + "blancmanges": [], + "mistersing": [], + "immediately": [], + "Spitz's": [], + "icy": ["T", "P", "R"], + "Hector": ["M"], + "prated": [], + "drooping": [], + "duo's": [], + "suspender's": [], + "Mylar'ses": [], + "cankered": [], + "scarcity": ["S", "M"], + "starboard": ["M"], + "outfight": ["S", "G"], + "marinade": ["D", "S", "M", "G"], + "revisers": [], + "intensivenesses": [], + "timeserving's": [], + "sovereign's": [], + "genomes": [], + "presenteder": [], + "hangover'ses": [], + "bounces's": [], + "Luther's": [], + "impacts": [], + "eiderdowns": [], + "satchel": ["M", "S"], + "climatologists's": [], + "longboat'ses": [], + "score": ["M", "Z", "G", "D", "R", "S"], + "Inchon's": [], + "Dante's": [], + "Huygens's": [], + "delphinium's": [], + "wrongful": ["P", "Y"], + "Oakley": ["M"], + "overheard": [], + "noises's": [], + "androgen's": [], + "guesstimating": [], + "Stimson's": [], + "scimitars": [], + "transgressor's": [], + "environmentalist's": [], + "Bulgaria's": [], + "sample": ["D", "R", "S", "M", "Z", "G", "J"], + "Manhattan's": [], + "cameo": ["M", "S"], + "failingses": [], + "internees": [], + "Herculean": [], + "lactose": ["M"], + "vacated": [], + "defilement's": [], + "ekeds": [], + "animist's": [], + "Pym": ["M"], + "cenotaphs": [], + "vibrator": ["S", "M"], + "Tuscan's": [], + "blustersers": [], + "flaunt's": [], + "Curtis": ["M"], + "tattooersing": [], + "woodcutters": [], + "asphyxiatesens": [], + "bookmakers's": [], + "whorehouses": [], + "trimmings": ["M"], + "wholesaleder": [], + "kazoo": ["S", "M"], + "hum's": [], + "Gall's": [], + "Tobago": ["M"], + "sphagnum's": [], + "sloops": [], + "Syria": ["M"], + "envyingly": [], + "brazes": [], + "winch's": [], + "gaining": [], + "Finn's": [], + "Texaco": ["M"], + "workforce's": [], + "chime's": [], + "privilege'sing": [], + "cleanup's": [], + "requireding": [], + "contemptuous": ["Y", "P"], + "ocular": ["M", "S"], + "spinney": ["S"], + "jumbleds": [], + "trespasseder": [], + "Saundra's": [], + "Evan's": [], + "hogwash": ["M"], + "sigma'ses": [], + "downier": [], + "pretty": ["T", "G", "D", "R", "S", "M", "P"], + "drunkenly": [], + "beguilersing": [], + "allotted": [], + "maid": ["M", "N", "S", "X"], + "valuating": [], + "Cabot's": [], + "misalliance": ["M", "S"], + "bankruptcy's": [], + "Coronado": ["M"], + "antivirals": [], + "varmints": [], + "finish": ["A", "D", "S", "G"], + "TGIF": [], + "leggings": [], + "tawnier's": [], + "wasp's": [], + "pastorate": ["M", "S"], + "transfiguringed": [], + "Chattanooga": ["M"], + "hourglass": ["M", "S"], + "cleanlies": [], + "pots": [], + "messier": [], + "rampancy": ["M"], + "Tsiolkovsky's": [], + "lugs": [], + "Flossie": ["M"], + "soirees's": [], + "deflate": ["G", "N", "D", "S"], + "metamorphosis's": [], + "moratorium's": [], + "grossness": ["M"], + "tarot": ["M", "S"], + "bargainers": [], + "Bertrand": ["M"], + "pothead's": [], + "Brady's": [], + "foreperson": ["S", "M"], + "oxygenate": ["D", "S", "G", "N"], + "incompatibly": [], + "fingernails's": [], + "swattered": [], + "pricklinesser": [], + "hotshot's": [], + "Graceland": ["M"], + "cabriolet's": [], + "daftly": [], + "bud": ["S", "M"], + "progressive": ["P", "M", "Y", "S"], + "undimmed": [], + "bewilders": [], + "prattles": [], + "calcify": ["G", "N", "D", "S"], + "Confederate's": [], + "cirrhotic": ["S", "M"], + "earthworms": [], + "martsens": [], + "irksomeliness": [], + "alder's": [], + "grabber'ses": [], + "swimsuits's": [], + "mystics": [], + "purling": [], + "possessively": [], + "jog": ["S", "M"], + "kidnapping'ses": [], + "interveneds": [], + "Reyna's": [], + "kettles's": [], + "Marin's": [], + "conjuresers": [], + "refectory": ["S", "M"], + "justifiable": ["U"], + "daubersing": [], + "eulogizer's": [], + "Tammy's": [], + "betided": [], + "dateline'sing": [], + "bitterness": ["M"], + "lobes": [], + "empiric": [], + "conduct'sed": [], + "misshaping": [], + "peristalses": [], + "along": [], + "separation's": [], + "perineum's": [], + "sweatshop": ["M", "S"], + "arability's": [], + "Ned's": [], + "legitimized": [], + "starlet's": [], + "abundances": [], + "punishinged": [], + "fastback": ["S", "M"], + "Boniface's": [], + "tenderest": [], + "colonial's": [], + "poorerly": [], + "imbecile's": [], + "odalisques": [], + "hagglersing": [], + "incubators's": [], + "firebombingsing": [], + "steel": ["S", "M", "D", "G"], + "decoupageds": [], + "dictators": [], + "noninflammatory": [], + "barbarian's": [], + "siphoning": [], + "Rosetta's": [], + "reticulated": [], + "frontal": ["Y"], + "douses": [], + "gringo's": [], + "loudmouthed": [], + "Edna": ["M"], + "sues": [], + "Sidney": ["M"], + "braceder": [], + "Phillipa's": [], + "valence's": [], + "Harlequin": ["M"], + "inrush'ses": [], + "toga": ["M", "D", "S"], + "suppersing": [], + "tortilla'ses": [], + "unhand": [], + "attacked": [], + "underclothes's": [], + "Flory's": [], + "flans": [], + "condole": [], + "Bujumbura's": [], + "wielders": [], + "suitcases's": [], + "Ignacio's": [], + "footwear's": [], + "sweatshirts": [], + "stay'sed": [], + "Chimera": ["M", "S"], + "residual": ["M", "S"], + "founder": ["G", "M", "D", "S"], + "sprout's": [], + "handcuffeding": [], + "multilingualism's": [], + "unreleased": [], + "Balinese's": [], + "Penn's": [], + "recitalist's": [], + "Monterrey": ["M"], + "rutted": [], + "tasered": [], + "sacrificially": [], + "Meadows's": [], + "deceleration's": [], + "fraternization": ["M"], + "zircons": [], + "perplex": ["G", "D", "S"], + "pharisees": [], + "vibratesens": [], + "Cornish'ses": [], + "prehistory": ["M"], + "staff's": [], + "animists": [], + "cellist's": [], + "quarterstaff's": [], + "workshop'ses": [], + "louder": [], + "imperiousnessly": [], + "Mace's": [], + "euros": [], + "consumes": [], + "profitinged": [], + "berthing's": [], + "venturously": [], + "perplexing": [], + "triumvirates's": [], + "djellaba": ["M", "S"], + "Downs's": [], + "SBA": [], + "oldie": ["S", "M"], + "veggie's": [], + "beret's": [], + "Firefox": ["M"], + "demarcations": [], + "sheepish": ["Y", "P"], + "wine": ["M", "S"], + "mambas's": [], + "dioxide's": [], + "Ce": ["M"], + "theaters": [], + "poises": [], + "jabs's": [], + "Dominguez": ["M"], + "colonialists": [], + "filmed": [], + "tweet": ["A", "S", "D", "G"], + "moo": ["S", "G", "M", "D"], + "bisectors": [], + "sequencer": [], + "battery's": [], + "internalizing": [], + "brittleness's": [], + "Fritz": ["M"], + "jazz'sed": [], + "peas's": [], + "exclaims": [], + "burrito's": [], + "hulk": ["M", "S", "G"], + "blackberrying": [], + "stitch's": [], + "undercoatings": [], + "abdicating": [], + "currency's": [], + "Neanderthal": ["S", "M"], + "mantles": [], + "gadabout": ["S", "M"], + "learneds": [], + "Nichole": ["M"], + "hood": ["M", "D", "S", "G"], + "indications": [], + "tiffing": [], + "easels's": [], + "scintillateds": [], + "twelve's": [], + "sanctimoniousness's": [], + "peppiest": [], + "mayfly": ["S", "M"], + "schnoz's": [], + "Shikoku's": [], + "triplinged": [], + "confections": [], + "majorly": [], + "ramjets's": [], + "illegitimacy": ["M"], + "acrimonious": ["Y", "P"], + "GMO": [], + "Poole": ["M"], + "rhodium's": [], + "sassiest": [], + "umpireds": [], + "builds's": [], + "separateds": [], + "glistensing": [], + "disburseds": [], + "subtitle's": [], + "unwitting": [], + "boohooeds": [], + "Menkalinan": ["M"], + "muckraker": ["M"], + "agronomic": [], + "assets": [], + "escheweding": [], + "roomful": ["S", "M"], + "Irma's": [], + "plowshare'ses": [], + "individualize": ["G", "D", "S"], + "prepackagesing": [], + "floppier": [], + "play'sed": [], + "potential": ["M", "Y", "S"], + "sandboxes": [], + "Dillard's": [], + "yell's": [], + "waterboard's": [], + "seeding": [], + "Dali": ["M"], + "foreclosures": [], + "hernias": [], + "miter's": [], + "sedimentary": [], + "splasheds": [], + "showbiz": ["M"], + "latitudinarians": [], + "brainiest": [], + "Salinger": ["M"], + "Mexico's": [], + "Pickwick's": [], + "undersigns": [], + "titlist'ses": [], + "bratty": ["R", "T"], + "caginess's": [], + "paleface'ses": [], + "sociables": [], + "castration's": [], + "clobber": ["S", "M", "D", "G"], + "Roberts": ["M"], + "firebug's": [], + "lender's": [], + "oval'ses": [], + "ritual'sly": [], + "contrail": ["M", "S"], + "screaming": ["Y"], + "weepiers": [], + "liquoreding": [], + "ratingen": [], + "jitterbugs": [], + "Erebus's": [], + "Pentecost's": [], + "astigmatic": [], + "marauders": [], + "brute's": [], + "smarts's": [], + "prepayments": [], + "Saginaw's": [], + "smaller": [], + "extravagance'ses": [], + "deprogram": [], + "counteroffer": ["S", "M"], + "Imus": ["M"], + "gullibility": ["M"], + "flatlets": [], + "dares's": [], + "tint's": [], + "abs": ["M"], + "Darwinism": ["S", "M"], + "voiding": [], + "rollbacks's": [], + "adaptations": [], + "combiners": [], + "Paramount's": [], + "crossesed": [], + "crusaders": [], + "shivering": [], + "amplifier's": [], + "economizeder": [], + "prissiness": ["M"], + "tarry": ["T", "G", "D", "R", "S"], + "MPEG": [], + "chair": ["G", "M", "D", "S"], + "nonmetals": [], + "brandying": [], + "mete'sers": [], + "deterioratingen": [], + "harmlessness's": [], + "Heston": ["M"], + "paintings's": [], + "postage's": [], + "subsisting": [], + "spectroscopy": ["M"], + "boatyards": [], + "puttee": ["M", "S"], + "pouchesing": [], + "Cyclades": ["M"], + "Islamophobia": [], + "sweater's": [], + "whirligigs": [], + "negativingness": [], + "slithery": [], + "pillsing": [], + "Bethe": ["M"], + "Patricia's": [], + "sickout's": [], + "duck'sed": [], + "Pershing's": [], + "text's": [], + "lumber's": [], + "Robitussin's": [], + "Danial's": [], + "Wycliffe's": [], + "excerpt": ["M", "D", "G", "S"], + "fourteens": [], + "guacamole": ["M"], + "skirmisheder": [], + "Irrawaddy": ["M"], + "replacement": [], + "fuels": [], + "prelim's": [], + "predicatingen": [], + "touche": ["B", "J"], + "bouillabaisse's": [], + "unfasten": [], + "lasses": [], + "compactors's": [], + "patriarchate": ["M", "S"], + "waltzer": ["M"], + "acquires": [], + "endorses": [], + "grove's": [], + "sputter's": [], + "steins": [], + "christening's": [], + "dosimeters's": [], + "torchbearer'ses": [], + "chiropody's": [], + "transfixes": [], + "overtone's": [], + "bluesness": [], + "Aztec's": [], + "epistemological": [], + "ascent'ses": [], + "swisheder": [], + "cortege's": [], + "nose'sing": [], + "watchmaker's": [], + "machines's": [], + "pettishly": [], + "laysing": [], + "Hockney's": [], + "counterattacked": [], + "residencies": [], + "filleteding": [], + "bienniallies": [], + "tomography's": [], + "unabridgeds": [], + "crummier": [], + "cantilever's": [], + "Cyclades's": [], + "Suetonius": ["M"], + "usury's": [], + "Cantor's": [], + "swaddle": ["D", "S", "G"], + "presumptions": [], + "harbors": [], + "loafing": [], + "flytraps": [], + "cuspids's": [], + "elasticized": [], + "transplant": ["M", "D", "G", "S"], + "planner's": [], + "creativity's": [], + "rel": [], + "retouch": [], + "pulsating": [], + "finally": [], + "Lully's": [], + "sugarier": [], + "winksers": [], + "comment's": [], + "tangerines": [], + "britches": ["M"], + "mistrusts": [], + "mescal's": [], + "Enos": ["M"], + "walkersing": [], + "central'sly": [], + "evinces": [], + "lambswool": [], + "asphalt": ["M", "D", "G", "S"], + "ridgy": [], + "wiggle": ["D", "R", "S", "M", "Z", "G"], + "dwellers": [], + "churneder": [], + "Stuarts": [], + "grime": ["S", "M"], + "veganism": [], + "ctn": [], + "outraced": [], + "alphabetize": ["Z", "G", "D", "R", "S"], + "ogress": ["M", "S"], + "peoples": [], + "nationalist's": [], + "castling": [], + "voile's": [], + "dustersing": [], + "weatherstripping's": [], + "accurately": [], + "microfilming's": [], + "adulateds": [], + "denuclearizinged": [], + "askeding": [], + "Hooker's": [], + "sneaker's": [], + "sedulous": ["Y"], + "knickerbockers": ["M"], + "Johnny's": [], + "NB": [], + "sexily": [], + "Rafael": ["M"], + "standstill's": [], + "foreordainings": [], + "Cairo's": [], + "bottles's": [], + "boulder": ["S", "M"], + "reascend": [], + "botanical": ["Y"], + "fancies's": [], + "ineptness's": [], + "doldrums": ["M"], + "dangle": ["Z", "G", "D", "R", "S"], + "quietness's": [], + "Valencias": [], + "mistype": ["G", "S"], + "wafers's": [], + "Strabo's": [], + "sawmill": ["M", "S"], + "atrium": ["M"], + "bullfrog'ses": [], + "aggression": ["M"], + "puzzlesment": [], + "tiptoe's": [], + "remittance": ["S", "M"], + "euchre": ["D", "S", "M", "G"], + "Gujarat's": [], + "shoehorned": [], + "naturalization's": [], + "amulet": ["M", "S"], + "fabricateds": [], + "sleepwalked": [], + "sliest": [], + "poodles": [], + "enhancersing": [], + "loudmouths": [], + "alleyway's": [], + "Vorster": ["M"], + "atrioventricular": [], + "warehouse's": [], + "refortifying": [], + "sprang": [], + "hardheartednessly": [], + "Melisa's": [], + "temper": ["M", "D", "G"], + "arced": [], + "Ptolemaic": ["M"], + "unfairest": [], + "spice's": [], + "disinformation": [], + "exultation's": [], + "hankeringings": [], + "bey": ["S", "M"], + "Louis": ["M"], + "enplanesing": [], + "coastlines": [], + "moralistic": [], + "inventories's": [], + "linkup's": [], + "misinform": ["D", "G", "S"], + "soundlessly": [], + "tumbler's": [], + "roach'sed": [], + "smallness": ["M"], + "fellas": [], + "leakeds": [], + "balked": [], + "weeneds": [], + "Cs's": [], + "donors's": [], + "Zhengzhou": ["M"], + "oppressed": [], + "Talmudist": [], + "flauntsing": [], + "campanologist'ses": [], + "Willa": ["M"], + "sloppily": [], + "Br": ["M", "T"], + "Unixes": [], + "Lindsey's": [], + "millraces's": [], + "euphoria": ["M"], + "gangrene's": [], + "oscillateds": [], + "garaged": [], + "camel's": [], + "appendectomies's": [], + "unfixing": [], + "warthog": ["S", "M"], + "cobras's": [], + "leacheds": [], + "spiced": [], + "latterly": [], + "Noe's": [], + "shudders": [], + "you'll": [], + "bedroom": ["S", "M"], + "spriest": [], + "rube": ["M", "S"], + "centralization": ["C", "M"], + "retrogressive": [], + "flue'ses": [], + "baton's": [], + "likelier": [], + "commencement's": [], + "mapmaker": ["S", "M"], + "comicality": ["M"], + "UPI": ["M"], + "Minuteman's": [], + "asymmetrically": [], + "stammers": [], + "moonbeams": [], + "peripherallies": [], + "amends": [], + "rosemary's": [], + "publicizing": [], + "gruelingly": [], + "platter": ["S", "M"], + "fendersing": [], + "wren's": [], + "goodness's": [], + "fiestas's": [], + "washtubs": [], + "starcheds": [], + "Jayne's": [], + "waywardness": ["M"], + "grudge": ["M", "G", "D", "S"], + "estranged": [], + "blear": [], + "downstream": [], + "misreadings": [], + "Changsha": ["M"], + "scriptwriters's": [], + "singling": [], + "completeder": [], + "furtive": ["Y", "P"], + "milder": [], + "negligee": ["M", "S"], + "crossbred": [], + "cocks": [], + "TelePrompter's": [], + "nucleating": [], + "Nabokov's": [], + "gimcracks's": [], + "sundecks": [], + "Blackburn": ["M"], + "Clark's": [], + "toe's": [], + "squalled": [], + "chic": ["P", "T", "M", "R"], + "Gauls": [], + "abnegation": ["M"], + "dermatology's": [], + "heroins": [], + "pigtails": [], + "unmusical": [], + "contributors": [], + "tackiness's": [], + "soldiery": ["M"], + "reflexives": [], + "refresheder": [], + "blockheads": [], + "peter": ["G", "M", "D"], + "gaggles's": [], + "papa'ses": [], + "chemistry's": [], + "Bryon": ["M"], + "signage": ["M"], + "ungainlier": [], + "forearm'sed": [], + "subserviently": [], + "solubility's": [], + "speechifies": [], + "efficacious": ["Y"], + "conformation": [], + "poodle's": [], + "charms": [], + "roadshow's": [], + "Gunther": ["M"], + "companionable's": [], + "seaplane": ["S", "M"], + "star": ["M", "D", "R", "Z", "G", "S"], + "dashboard": ["S", "M"], + "Fields's": [], + "Gomulka's": [], + "rewindable": [], + "donates": [], + "Shcharansky": ["M"], + "equalization": ["M"], + "slopes": [], + "Rubin's": [], + "mutilates": [], + "McCullough's": [], + "satisfactions": [], + "seamens": [], + "verified": ["U"], + "glitches": [], + "crease": ["I", "C", "G", "M", "S", "D"], + "papered": [], + "stork": ["S", "M"], + "emancipatesing": [], + "NoDoz": ["M"], + "Californians": [], + "disperse": ["G", "N", "D", "S"], + "tramcars": [], + "unedifying": [], + "groceries's": [], + "cantaloupe's": [], + "heater's": [], + "appeasers": [], + "equipping": ["A"], + "transitivity": ["M"], + "ruffleds": [], + "reallocation": [], + "spermatozoa": [], + "unpinned": [], + "Lydian": ["S", "M"], + "fen's": [], + "renovateds": [], + "sac": ["S", "M"], + "charting's": [], + "satisfying": ["U"], + "epigrams": [], + "fuddleds": [], + "mistrial's": [], + "tannin's": [], + "donged": [], + "Stacey's": [], + "inarticulately": [], + "Faith": ["M"], + "toothpick": ["S", "M"], + "numerates": [], + "housewifely": [], + "Alexander's": [], + "fireboxes": [], + "waxwing's": [], + "gorgon's": [], + "federally": [], + "repletion's": [], + "Nazca's": [], + "epoxies": [], + "intuitiveness's": [], + "dongle's": [], + "malingerersing": [], + "gewgaw's": [], + "tapes": [], + "locksable": [], + "brightest": [], + "Scotia's": [], + "quadruped's": [], + "nicknames": [], + "fiddler": ["M"], + "kilneds": [], + "debilitated": [], + "caterpillar's": [], + "Guadalcanal": ["M"], + "checkmatinged": [], + "Farmer's": [], + "lets's": [], + "Kenton": ["M"], + "cyclist's": [], + "schoolrooms": [], + "knotholes's": [], + "Ptolemies": [], + "moldering": [], + "supercharges": [], + "quadruplicate's": [], + "auguster": [], + "harpooners": [], + "eagererly": [], + "battleaxes": [], + "ticking's": [], + "designatingen": [], + "timber": ["S", "M", "D", "G"], + "Macedonians's": [], + "gracefulness's": [], + "pittance's": [], + "newcomer": ["S", "M"], + "engendersing": [], + "benignity": ["M"], + "predicament": ["M", "S"], + "schoolgirls's": [], + "overcrowding": ["M"], + "impulsion": ["M"], + "offloaded": [], + "outshout": ["G", "D", "S"], + "graduate": ["X", "M", "G", "N", "D", "S"], + "Frito's": [], + "penknife": ["M"], + "Maldives's": [], + "gladsness": [], + "Sal's": [], + "yard": ["M", "S"], + "obstacle's": [], + "allurement'ses": [], + "skunk's": [], + "yardman": ["M"], + "reconspire": [], + "Auden": ["M"], + "amethysts": [], + "Savior's": [], + "slappers": [], + "Versailles's": [], + "perpetuity": ["M"], + "Khmer's": [], + "impieties's": [], + "puppet's": [], + "socializing": [], + "trice": ["M"], + "tinkled": [], + "thresh's": [], + "fowlings": [], + "reamer's": [], + "slashes": [], + "undersignings": [], + "dumpersing": [], + "fore's": [], + "compereds": [], + "succumbed": [], + "Dickson": ["M"], + "splattered": [], + "guard": ["S", "Z", "G", "M", "D", "R"], + "romancinged": [], + "elopeds": [], + "curve'sing": [], + "dowseder": [], + "haply": [], + "Alexandrian": [], + "infatuationsing": [], + "transgressed": [], + "dither'sed": [], + "chestiest": [], + "pyramids": [], + "Arkansan'ses": [], + "baldeder": [], + "spiniest": [], + "overgeneralizeds": [], + "preservable": [], + "nomenclatures": [], + "Erica's": [], + "custom's": [], + "lumberyards's": [], + "spinal'sly": [], + "jollied": [], + "miningen": [], + "spelunker'ses": [], + "nibbler's": [], + "culpability": ["M"], + "yelped": [], + "nickels": [], + "firecrackers": [], + "quibblers": [], + "employment": ["U", "A", "M"], + "whitings": [], + "catting": [], + "attitudinizes": [], + "palisades": [], + "Visigoth": ["M"], + "deprogramming": [], + "malpractices": [], + "watershed": ["M", "S"], + "rime'ses": [], + "demystify": [], + "Ferdinand": ["M"], + "robes": [], + "scummy": ["T", "R"], + "emulsifying": [], + "LBJ's": [], + "cerement'ses": [], + "abstractness's": [], + "armory's": [], + "theosophical": [], + "myrtle": ["S", "M"], + "tarpon's": [], + "impassioned": [], + "Cline's": [], + "rein": ["G", "D"], + "ambivalence": ["M"], + "supply": ["Z", "G", "D", "R", "S", "M", "X", "N"], + "unmade": [], + "pursueder": [], + "philandered": [], + "extincted": [], + "solder": ["Z", "G", "S", "M", "D", "R"], + "nonperformance's": [], + "cryptogram's": [], + "nonrecoverable": [], + "pones": [], + "disbandment's": [], + "newscasterers": [], + "redecolonize": [], + "Helsinki": ["M"], + "conveneds": [], + "waiveder": [], + "cuckoo": ["S", "M"], + "nearsightedliness": [], + "raffled": [], + "Iqaluit's": [], + "clamor": ["G", "M", "D", "S"], + "Kmart's": [], + "diffident": ["Y"], + "flycatchers": [], + "Basutoland's": [], + "Reid": ["M"], + "eclipse'sing": [], + "portfolio's": [], + "inhibitory": [], + "ictus's": [], + "burrower": ["M"], + "sag": ["S", "M"], + "pkt": [], + "tusks": [], + "maggot'ses": [], + "estuary": ["S", "M"], + "snowshoes": [], + "unconquered": [], + "disjointed": ["Y", "P"], + "invention's": [], + "summarized": [], + "Victorians": [], + "triple'sing": [], + "deliberationsly": [], + "stenographer": ["S", "M"], + "typhus's": [], + "extrasensory": [], + "showroom's": [], + "resistor's": [], + "avoidingable": [], + "epiglottises": [], + "Guillermo's": [], + "trivialities's": [], + "stockholders's": [], + "constrictions's": [], + "Asiatic": ["S", "M"], + "stiflingly": [], + "newsboy": ["S", "M"], + "urns": [], + "losesings": [], + "mots": [], + "prelude'ses": [], + "poop'sed": [], + "lonelier": [], + "folksiness's": [], + "cloudless": [], + "Aston": ["M"], + "ooze": ["M", "G", "D", "S"], + "disposals's": [], + "saliva": ["M"], + "look's": [], + "Rowland": ["M"], + "dimmers": [], + "Burlington": ["M"], + "rotunda'ses": [], + "supt": [], + "neighborhood": ["S", "M"], + "future's": [], + "Kirghiz": ["M"], + "heather's": [], + "hysterically": [], + "carnation": ["I", "M", "S"], + "tourmaline": ["M"], + "spears": [], + "sunblock": ["M", "S"], + "saltbox'ses": [], + "restrictsed": [], + "trainerable": [], + "suppositories's": [], + "corseting's": [], + "cusp'ses": [], + "grumpily": [], + "broiler's": [], + "Mayflower": ["M"], + "fief'ses": [], + "reinborn": [], + "untouchable's": [], + "Morales": ["M"], + "thicknesses": [], + "irreproachable": [], + "harangue": ["M", "G", "D", "S"], + "attireds": [], + "dachas": [], + "ceremonially": [], + "unessential": [], + "criminal": ["M", "Y", "S"], + "twinklingings": [], + "whopping": [], + "didst": [], + "entirely": [], + "ancestral": ["Y"], + "barefoot": ["D"], + "dizziness": ["M"], + "exemptsing": [], + "bedaubing": [], + "lakeside": [], + "withdrawals": [], + "Iris": ["M"], + "facsimiled": [], + "expressway's": [], + "cancans": [], + "piercing's": [], + "Jesse": ["M"], + "unsustainable": [], + "taggers": [], + "hock's": [], + "expense's": [], + "eulogized": [], + "motorbiking": [], + "hooking": [], + "plonkeder": [], + "minivan's": [], + "fruitinesser": [], + "Marcy": ["M"], + "collectivelies": [], + "wapiti": ["M", "S"], + "engrossed": [], + "abjurations": [], + "pastiche'ses": [], + "circumlocutions": [], + "slipper's": [], + "dreamy": ["R", "P", "T"], + "underachieversing": [], + "brownness": ["M"], + "navigated": [], + "Severn's": [], + "rotors's": [], + "Wald'sen": [], + "Piaf's": [], + "calculative": [], + "Donna": ["M"], + "oddment's": [], + "mawkish": ["P", "Y"], + "empiricism's": [], + "cilantro's": [], + "rafters": [], + "Indian's": [], + "SK": [], + "outscore": ["G", "D", "S"], + "hibachi's": [], + "Nescafe's": [], + "slapstick": ["M"], + "moonlight": ["S", "M", "D", "R", "Z", "G"], + "preheat": ["G", "S", "D"], + "quint": ["S", "M"], + "sprites's": [], + "trolleybus's": [], + "formation's": [], + "squaring": [], + "outfall": ["S"], + "enquirer": ["S"], + "making": ["M", "S"], + "neologism": ["S", "M"], + "repentance's": [], + "rilinged": [], + "shoreds": [], + "equine's": [], + "influence": ["M", "G", "D", "S"], + "deck": ["S", "G", "M", "D"], + "Kilroy": ["M"], + "variances's": [], + "maliciousness": ["M"], + "tamarinds": [], + "hogtieds": [], + "dry's": [], + "abacus": ["M", "S"], + "Bridger": ["M"], + "monkish": [], + "wanglers": [], + "descending": [], + "exporting": [], + "chimpanzees": [], + "campiest": [], + "colostomies": [], + "dentifrices": [], + "piersing": [], + "bower's": [], + "leakage": ["M", "S"], + "astigmatism": ["S", "M"], + "Circe": ["M"], + "cornets's": [], + "facials": [], + "prohibition": ["S", "M"], + "Kiowa": ["M", "S"], + "flashcubes's": [], + "scoreder": [], + "harpoon'sed": [], + "yummiest": [], + "incontinent": [], + "Saxony": ["M"], + "Leno's": [], + "dillydallied": [], + "passer's": [], + "eviscerate": ["D", "S", "G", "N"], + "preadolescences's": [], + "jurisprudence's": [], + "aerobics's": [], + "bargainer": ["M"], + "yellowness's": [], + "detonators's": [], + "carpooling": [], + "dust": ["M", "D", "R", "Z", "G", "S"], + "soldering": [], + "passivizing": [], + "Englishers": [], + "Nathaniel's": [], + "Nobel": ["M"], + "saver's": [], + "cosset": ["S", "G", "D"], + "scam'ses": [], + "Baldwins's": [], + "perpetuates": [], + "waitress'ses": [], + "Frunze's": [], + "kinglier": [], + "antidemocratic": [], + "newels's": [], + "Duroc": ["M"], + "anticommunists's": [], + "caplets": [], + "thieved": [], + "Photostat": ["M", "S"], + "peddlersing": [], + "sashay'sed": [], + "switchesers": [], + "shadierness": [], + "prerecords": [], + "astonishes": [], + "innocuous": ["P", "Y"], + "midstream's": [], + "chunter": ["D", "G", "S"], + "halest": [], + "thingamajig's": [], + "memo'ses": [], + "agribusiness'ses": [], + "encompassed": [], + "hilltops": [], + "proactive": [], + "Faraday's": [], + "farad's": [], + "pastiche's": [], + "pericardium": ["M"], + "wont's": [], + "amount's": [], + "tidings's": [], + "commemorateds": [], + "mimicker": ["S", "M"], + "fighter's": [], + "windbreaker": ["M"], + "inquisitor": ["S", "M"], + "phonology's": [], + "caplet's": [], + "engulfs": [], + "pressurization's": [], + "lambently": [], + "rice'sers": [], + "placebo": ["S", "M"], + "vacation": ["Z", "G", "M", "D", "R", "S"], + "sightseeing": ["M"], + "gentleman's": [], + "pended": [], + "Silurians's": [], + "Rivas's": [], + "grampus'ses": [], + "generational": [], + "censure'sers": [], + "consolidator": ["M", "S"], + "mastery": ["M"], + "redhead": ["S", "M", "D"], + "hanks": [], + "tendon": ["S", "M"], + "element": ["M", "S"], + "approve": ["E", "G", "D", "S"], + "docs's": [], + "malady": ["S", "M"], + "represented": ["U"], + "flummoxes": [], + "whitewashed": [], + "sedating": [], + "EULA": ["S"], + "creations's": [], + "bracelet'ses": [], + "shark": ["M", "D", "S", "G"], + "ledges's": [], + "buffereding": [], + "vegan": ["S", "M"], + "quaintness": ["M"], + "unwind": [], + "damnable": [], + "sylph": ["M"], + "coffineding": [], + "gumbo": ["S", "M"], + "Timurid": ["M"], + "slaughterer": ["M"], + "judgeds": [], + "Moors's": [], + "vanisheds": [], + "pooch'sed": [], + "barbarism's": [], + "pinups": [], + "schuss": ["G", "M", "D", "S"], + "layettes": [], + "incidental'sly": [], + "imbibers": [], + "involvements's": [], + "diveder": [], + "leaser's": [], + "Dee": ["M"], + "rototillers": [], + "approvingly": [], + "journalese": ["M"], + "expanse": ["X", "M", "N", "V", "S"], + "caterwaul": ["S", "M", "D", "G"], + "armor'sed": [], + "vivid": ["R", "Y", "T", "P"], + "perceptual": ["Y"], + "stereoscopes": [], + "sauropod": ["S", "M"], + "militateds": [], + "skeptics's": [], + "insurer's": [], + "smashersing": [], + "neon": ["M"], + "misanthrope's": [], + "webmasters's": [], + "undercoatingings": [], + "nonage's": [], + "digraph's": [], + "whisked": [], + "impassiveness's": [], + "browneder": [], + "Evangeline's": [], + "composition": ["C", "M"], + "impatience's": [], + "techniques's": [], + "hobnailing's": [], + "thrall'sed": [], + "tube'ses": [], + "malcontent's": [], + "seasoning": ["M"], + "causer's": [], + "fillipings": [], + "spathes's": [], + "Malcolm": ["M"], + "veggieburgers": [], + "surface's": [], + "hazel": ["S", "M"], + "antithetically": [], + "pail'ses": [], + "praetors": [], + "Cubans": [], + "puffinesser": [], + "acceptableness": ["M"], + "footstep'ses": [], + "cellar'ses": [], + "croissant'ses": [], + "physiotherapy's": [], + "son": ["S", "M"], + "partridge": ["S", "M"], + "apricots": [], + "confirming": [], + "extremities": [], + "ruffian": ["M", "Y", "S"], + "reorder": [], + "downgrade": ["D", "S", "M", "G"], + "unfed": [], + "absentee's": [], + "mysteries": [], + "workaholics's": [], + "fire": ["M", "S"], + "sketcher": ["M"], + "boozing": [], + "revamp": [], + "pushcarts's": [], + "shortness's": [], + "buskins": [], + "ganged": [], + "windowpanes's": [], + "sconces": [], + "bloodieder": [], + "aliments": [], + "seducer": ["M"], + "spillage": ["M", "S"], + "forages's": [], + "pontificated": [], + "haggish": [], + "Tripitaka": ["M"], + "brownstone'ses": [], + "Tojo": ["M"], + "onrushes": [], + "mouser's": [], + "frequents": [], + "crematorium's": [], + "abortionist's": [], + "forsaking": [], + "hookups": [], + "holstered": [], + "Antarctic": ["M"], + "ninjas": [], + "canticle'ses": [], + "Ouija's": [], + "weals": [], + "prudential": ["Y"], + "smudgy": ["T", "R"], + "polonaises": [], + "Visa's": [], + "strafe's": [], + "Hebrides's": [], + "Kellie": ["M"], + "Juvenal's": [], + "narcissism": ["M"], + "roamers": [], + "snowboarder": ["M"], + "testament'ses": [], + "lifeblood's": [], + "strums's": [], + "undulatesens": [], + "Buddhisms's": [], + "optimization": ["M", "S"], + "motorist": ["S", "M"], + "Aaliyah's": [], + "anorexics": [], + "osteopath": ["M"], + "voidsing": [], + "abductor'ses": [], + "Juan's": [], + "seasonality": [], + "hideousness's": [], + "merchants": [], + "conniveder": [], + "plastics": [], + "Webster's": [], + "suasion's": [], + "glossily": [], + "wouldn't": [], + "welcome's": [], + "singular'sly": [], + "snowball'sed": [], + "wangles": [], + "coacheds": [], + "Pyrex'ses": [], + "unmemorable": [], + "Anglican": ["S", "M"], + "detraction": [], + "burgomasters": [], + "Treasury's": [], + "campfires's": [], + "expeditions": [], + "profusion": [], + "constitutions": [], + "leeway": ["M"], + "bargeman": ["M"], + "dietary": ["S", "M"], + "Moore's": [], + "cruddiest": [], + "hourly": [], + "gimmick'ses": [], + "cadavers": [], + "witch": ["M", "D", "S", "G"], + "dater": ["M"], + "dedication": ["S", "M"], + "credentialed": [], + "Helicon's": [], + "augmentation'ses": [], + "breweries": [], + "tricksters's": [], + "torsos's": [], + "palpation's": [], + "passenger's": [], + "substantiations": [], + "fractals": [], + "schwa's": [], + "bounded": [], + "incorrigible": [], + "rules": [], + "talkiers": [], + "kaffeeklatch's": [], + "waverer's": [], + "humbleness": ["M"], + "Woodstock": ["M"], + "celandine": ["M"], + "discoverers": [], + "seamstress'ses": [], + "unblushing": ["Y"], + "outpouring's": [], + "showboated": [], + "celebrate": ["D", "S", "G", "N", "X"], + "metricateds": [], + "Hittites": [], + "snarfs": [], + "expatiationed": [], + "orbs": [], + "spurneding": [], + "hybrid's": [], + "hazer's": [], + "Alva": ["M"], + "brindled's": [], + "diplomas's": [], + "Ortega's": [], + "osmosis": ["M"], + "metalanguages": [], + "enemy's": [], + "fob's": [], + "continuation": ["E", "M", "S"], + "dumbly": [], + "hemisphere": ["S", "M"], + "tyro'ses": [], + "flingsed": [], + "advertorials": [], + "sandbar's": [], + "aerodrome's": [], + "lassitude's": [], + "polymerizinged": [], + "doggy's": [], + "trapeze": ["S", "M"], + "sealers's": [], + "deists": [], + "eremite'ses": [], + "Mohegan": [], + "suggestion's": [], + "signor": ["F", "M", "S"], + "sublimely": [], + "flattery": ["M"], + "drollery's": [], + "peripheral's": [], + "subhead": ["G", "J", "M", "S"], + "domestic's": [], + "effortlessness": ["M"], + "rearguard": ["M", "S"], + "Rena's": [], + "waistband's": [], + "synapse": ["M", "S"], + "prohibitory": [], + "Kuibyshev": ["M"], + "Fox's": [], + "isotope's": [], + "prattles's": [], + "sputter'sed": [], + "workday's": [], + "squatter's": [], + "contusingen": [], + "dauber's": [], + "Crows": [], + "earthquakes's": [], + "classical'sly": [], + "Indy": ["S", "M"], + "oxygenation": ["M"], + "creaking": [], + "benumbsing": [], + "hysterics": ["M"], + "polygonal": [], + "diatribe's": [], + "sifters": [], + "lyricism": ["M"], + "toppled": [], + "moonbeam": ["M", "S"], + "sloe's": [], + "ashiest": [], + "disinfectants": [], + "Rios's": [], + "wiling": [], + "transitioned": [], + "pause": ["D", "S", "M", "G"], + "Peugeot": ["M"], + "Achaean's": [], + "obsoleteds": [], + "Lincoln'ses": [], + "Atwood": ["M"], + "say's": [], + "darned": ["T", "R"], + "kick's": [], + "unsatisfied": [], + "pennon's": [], + "flan": ["M", "S"], + "proletariat's": [], + "harlots": [], + "compare'sing": [], + "castles": [], + "pshaw'ses": [], + "hellcats": [], + "Astor's": [], + "clayier": [], + "tenons": [], + "white's": [], + "dieteder": [], + "Gaelic": ["M"], + "epithelium": ["M"], + "democrat'ses": [], + "creaming": [], + "trematodes": [], + "Shawnee": ["S", "M"], + "equipoise's": [], + "handiness": ["M"], + "Hubert's": [], + "choosing": [], + "grackle's": [], + "monodies's": [], + "colonies's": [], + "effeminacy's": [], + "frequency": ["I", "M"], + "max'sed": [], + "mountings's": [], + "japans": [], + "bankbook's": [], + "submarine's": [], + "luridly": [], + "assertiveness": ["M"], + "publication's": [], + "Archimedes": ["M"], + "Titian's": [], + "bimbo'ses": [], + "flirty": [], + "stockholder's": [], + "quartets": [], + "teleprinter'ses": [], + "orphans's": [], + "wriggleder": [], + "bloc": ["S", "M"], + "codpiece": ["M", "S"], + "preshrinking": [], + "miscibility's": [], + "sententiously": [], + "disciplinarians": [], + "spoor'sed": [], + "waxworks": [], + "fulcrum'ses": [], + "caress's": [], + "tympanic": [], + "utilization's": [], + "Planck's": [], + "sultrier": [], + "vet": ["S", "M"], + "micks": [], + "buffalo": ["M", "D", "G"], + "supplementness": [], + "juggling": [], + "crutch's": [], + "terminology": ["S", "M"], + "doctorate's": [], + "quipsters": [], + "visitors": [], + "Dnepropetrovsk's": [], + "refraining's": [], + "aphasic": ["M", "S"], + "flimflamming": [], + "glares's": [], + "homier": [], + "squeegees": [], + "Philistine's": [], + "lasagna'ses": [], + "jabberer": ["M"], + "SAC": [], + "Lycra's": [], + "set": ["A", "I", "S", "M"], + "responding": [], + "lionizinged": [], + "ape": ["D", "S", "M", "G"], + "verdigrising": [], + "impetigo's": [], + "hitching": [], + "powderings": [], + "Dominion": [], + "chalkinesser": [], + "cashmere": ["M"], + "ukase": ["S", "M"], + "blamers": [], + "whoso": [], + "synthetics's": [], + "appraiser'ses": [], + "victim'ses": [], + "diadems's": [], + "Lutherans's": [], + "impeachmented": [], + "Bryant": ["M"], + "disyllabic": [], + "pommies": [], + "mellowness": ["M"], + "dump": ["M", "D", "R", "Z", "G", "S"], + "surgically": [], + "bathing's": [], + "department'ses": [], + "evildoers's": [], + "lambency": ["M"], + "infix": [], + "psalmists's": [], + "materializesing": [], + "remissnessly": [], + "behaviorist's": [], + "hospholipase": [], + "deathtrap'ses": [], + "linens": ["M"], + "tumbrel": ["S", "M"], + "truly": ["U"], + "Hitler'ses": [], + "Odets's": [], + "demon's": [], + "Hooke's": [], + "originates": [], + "Earle's": [], + "airbrush's": [], + "Ashmolean's": [], + "pottiness": [], + "convulsion": ["M"], + "Tangshan's": [], + "vanquishersing": [], + "dittoing": [], + "bestridesing": [], + "consolidationsed": [], + "suborbital": [], + "sediment'ses": [], + "meadow'ses": [], + "parlous": [], + "carjacks": [], + "preposition's": [], + "cafeteria": ["M", "S"], + "afforesting": [], + "family's": [], + "stragglesers": [], + "inclininged": [], + "fortifier": ["M"], + "prod'ses": [], + "philately's": [], + "failing's": [], + "gobble": ["D", "R", "S", "M", "Z", "G"], + "noteding": [], + "timer's": [], + "stultification's": [], + "ecological": ["Y"], + "townhouses": [], + "corker": ["S", "M"], + "squaws": [], + "skinniness's": [], + "BBS": [], + "metricizeds": [], + "clinking": [], + "triumvir": ["M", "S"], + "debauchery": ["S", "M"], + "fountainhead's": [], + "blame's": [], + "damsels": [], + "Cepheid": ["M"], + "policymaker": ["S"], + "en": ["S", "M"], + "droned": [], + "forgiving": ["U"], + "studyinged": [], + "overbuying": [], + "erupt": ["S", "D", "G", "V"], + "Wrangell's": [], + "contraptions": [], + "certitudes": [], + "quarrelsome": ["P"], + "dock's": [], + "inhumanely": [], + "hostilities's": [], + "spearheaded": [], + "plainclothesman's": [], + "sulkiers": [], + "Hopi's": [], + "Mercurochrome's": [], + "indicative": ["S", "M", "Y"], + "mixers": [], + "punnet": ["S"], + "instrumental'sly": [], + "viticulturist's": [], + "loader's": [], + "escalators": [], + "blip's": [], + "abroad": [], + "breastfeeds": [], + "kludging": [], + "lithium": ["M"], + "roamed": [], + "flavor'sed": [], + "betaking": [], + "mongering": [], + "panelsing": [], + "congressperson's": [], + "terapixel": ["M", "S"], + "pond'ses": [], + "administrator'ses": [], + "shining": [], + "sexologist's": [], + "dynamite": ["M", "Z", "G", "D", "R", "S"], + "ceilings": [], + "counterclaimings": [], + "misshapinged": [], + "sully": ["G", "D", "S"], + "sedition's": [], + "curator'ses": [], + "punctuality's": [], + "moderate's": [], + "evangelicalism": ["M"], + "felony's": [], + "scrum": ["S"], + "allergenic": [], + "tip": ["S", "M"], + "beseeches": [], + "mistletoe's": [], + "movie's": [], + "jackings": [], + "psalmist": ["S", "M"], + "bleep'sed": [], + "prepossessinged": [], + "Thermopylae": ["M"], + "nelson": ["S", "M"], + "megabyte's": [], + "lookeder": [], + "prompter": ["M"], + "schmoozersing": [], + "singablers": [], + "upchucking": [], + "Balkan's": [], + "decomposition": [], + "applicants": [], + "emergency": ["S", "M"], + "invader": ["M"], + "crosscheck": ["S", "M", "D", "G"], + "interpersonal": [], + "mar": ["S"], + "Bird's": [], + "forewent": [], + "Deity": [], + "body": ["D", "S", "M"], + "band's": [], + "limestone's": [], + "blandishmenting": [], + "Rhea's": [], + "dialectic": ["S", "M"], + "flow's": [], + "anachronism": ["S", "M"], + "uncleaner": [], + "sheikdoms": [], + "rupiah's": [], + "banjos": [], + "taxis": [], + "Jacobean": ["M"], + "buckeye": ["M", "S"], + "barters's": [], + "Emery": ["M"], + "Holiness": [], + "nurser": ["M"], + "Steve's": [], + "harpooner": ["M"], + "pigskin's": [], + "Ghana": ["M"], + "Mintaka's": [], + "Dickens": ["M"], + "Skylab's": [], + "gran": ["S"], + "crispingness": [], + "transsexuals's": [], + "deflecting": [], + "distillation's": [], + "wilderness": ["M", "S"], + "pounding's": [], + "discovered": ["U"], + "divide": ["D", "R", "S", "M", "Z", "G", "B"], + "indicator": ["M", "S"], + "shy's": [], + "rooming": [], + "winding": [], + "amp": ["S", "M", "Y"], + "Utopians's": [], + "corsair": ["M", "S"], + "allurement's": [], + "remediable": [], + "teriyaki": [], + "soapstone's": [], + "nick": ["M", "D", "R", "S", "Z", "G"], + "uplifts's": [], + "squirts": [], + "cosmeticians": [], + "bustierers": [], + "heptagon's": [], + "worded": [], + "beautifier": ["M"], + "reefing": [], + "trickster's": [], + "fertilizer's": [], + "grumbles": [], + "Seth": ["M"], + "sandlot": ["S", "M"], + "detecteding": [], + "shields": [], + "lobe's": [], + "Man's": [], + "Superfund": ["M"], + "reininged": [], + "Hera's": [], + "grayness": ["M"], + "chiseling": [], + "pilgrimage's": [], + "oblivion": ["M"], + "curbs": [], + "saviors's": [], + "serviced": [], + "aegis's": [], + "coelenterate'ses": [], + "sanctity": ["M"], + "gridlocked": [], + "taupe's": [], + "tippler's": [], + "attesteding": [], + "entrees": [], + "popinjay'ses": [], + "transformations": [], + "mulberry's": [], + "Taichung": ["M"], + "antiabortion": [], + "Ernest's": [], + "temperament'ses": [], + "Pennsylvanian'ses": [], + "Arapahoes": [], + "bandoleers": [], + "xerox's": [], + "commendably": [], + "pyrotechnic": ["S"], + "cuddly": ["T", "R"], + "unhesitating": [], + "cloaking": [], + "flush": ["M", "D", "R", "S", "T", "G"], + "blemish'sed": [], + "exurbs": [], + "barrow": ["S", "M"], + "middlemost": [], + "Anaxagoras": ["M"], + "beef": ["S", "G", "M", "D"], + "rubato's": [], + "mobilization's": [], + "admonishment'ses": [], + "snickered": [], + "MEGOs": [], + "quaversing": [], + "are'sable": [], + "commemoration": ["M"], + "lowlanders's": [], + "psychokinetic": [], + "bobsleighs": [], + "enchantress": ["M", "S"], + "Swanee": ["M"], + "Malays": [], + "greenmail": ["M"], + "titleholder's": [], + "Rydberg": ["M"], + "lantern": ["M", "S"], + "granny's": [], + "carelessly": [], + "key'sed": [], + "abominating": [], + "farads": [], + "cap's": [], + "widenersing": [], + "classy": ["T", "R", "P"], + "clapping": ["M"], + "Francine's": [], + "prelude's": [], + "mischances": [], + "Goodyear": ["M"], + "litter'sed": [], + "reestablish": [], + "dirt": ["M"], + "landslid": [], + "Rappaport": ["M"], + "having": [], + "acclivity": ["S", "M"], + "slumped": [], + "biopsy": ["G", "D", "S", "M"], + "grues": [], + "taxieds": [], + "retiree's": [], + "quadrilaterals": [], + "tormentor": ["M", "S"], + "compatriots": [], + "hypes": [], + "hamlet'ses": [], + "weaponize": ["G", "D", "S"], + "lionize": ["G", "D", "S"], + "doubtless": ["Y"], + "oxidant's": [], + "crinkly": ["R", "T"], + "jeroboams": [], + "gasket's": [], + "dibble'sing": [], + "expectorant's": [], + "knocks": [], + "ornamented": [], + "superannuateds": [], + "Collins's": [], + "facing's": [], + "runway's": [], + "Lateran": ["M"], + "lagoons's": [], + "Lord's": [], + "killjoy's": [], + "routing": [], + "papa's": [], + "bareness's": [], + "copperplate's": [], + "barberries": [], + "cordinged": [], + "sanctifyinged": [], + "fibbing": [], + "Jeannette": ["M"], + "adjure": ["G", "D", "S"], + "cowgirls": [], + "intimacy's": [], + "blacksmith": ["M"], + "periodontists's": [], + "tough'sed": [], + "awning": ["M"], + "roisters": [], + "Bactria": ["M"], + "pallor's": [], + "baptizer's": [], + "Amish's": [], + "Ali": ["M"], + "decryinged": [], + "glumly": [], + "seaworthiness's": [], + "Laud's": [], + "loathed": [], + "goober's": [], + "teas's": [], + "jazz's": [], + "cowlings": [], + "clingiest": [], + "enmeshingment": [], + "facings": [], + "attitudinized": [], + "resonated": [], + "goal": ["M", "S"], + "bib": ["S", "M"], + "Alfonso": ["M"], + "fact'ses": [], + "Wash's": [], + "fruiteding": [], + "Lavonne's": [], + "scalar": ["S"], + "sheds": [], + "AMD": ["M"], + "puttyinged": [], + "desertion": ["S", "M"], + "neuron": ["M", "S"], + "supercity": ["S", "M"], + "lugholes": [], + "tenements's": [], + "Cassandras": [], + "gibbereds": [], + "blisters": [], + "cockleshell": ["S", "M"], + "Prudential's": [], + "colloidal": [], + "stows": [], + "nonbeliever's": [], + "Oates's": [], + "surchargeds": [], + "beanie": ["S", "M"], + "Male": ["M"], + "uninviting": [], + "incubated": [], + "brought": [], + "cambiums": [], + "scenarist": ["M", "S"], + "pinnate": [], + "mutability": ["M"], + "lambency's": [], + "hogtied": [], + "tattooist's": [], + "reaction": [], + "retroactive": ["Y"], + "leer'sed": [], + "Carolina": ["M"], + "quacks": [], + "fibrillating": [], + "overemphasis": ["M"], + "ipecacs": [], + "bap": ["S"], + "portrayals": [], + "dressmaker's": [], + "intrigue": ["D", "R", "S", "M", "Z", "G"], + "empress's": [], + "storyteller'ses": [], + "shuteye": ["M"], + "undulation": ["M"], + "chemist": ["M", "S"], + "subpoenas": [], + "alcoholism": ["M"], + "Chimborazo's": [], + "branchlike": [], + "graved": [], + "educator": ["M", "S"], + "explores": [], + "Daguerre": ["M"], + "temps": [], + "Shawn": ["M"], + "overshareds": [], + "fertilizeder": [], + "counties's": [], + "sayings's": [], + "cassia's": [], + "Ishmael's": [], + "colorblindness's": [], + "dalliersing": [], + "renewing": [], + "nibbling": [], + "catalysts": [], + "wussy": ["R", "S", "M", "T"], + "grossers": [], + "schlemiels": [], + "accruing": [], + "Asoka's": [], + "Prague": ["M"], + "borderlines": [], + "brittle's": [], + "Supt": [], + "Eula": ["M"], + "frontbenches": [], + "Ham's": [], + "walruses": [], + "intensification's": [], + "handcuffing": [], + "kindheartedly": [], + "adapting": [], + "hallowing": [], + "frowneding": [], + "nurslings": [], + "skewersing": [], + "arts's": [], + "intimidates": [], + "refection": ["M"], + "diathermy's": [], + "grunion's": [], + "MacDonald": ["M"], + "wetliness": [], + "monitoring": [], + "amp'sly": [], + "sealers": [], + "psaltery": ["S", "M"], + "inventivenessly": [], + "crawliers": [], + "imperceptive": [], + "Voltaire's": [], + "coerceder": [], + "hat": ["Z", "G", "S", "M", "D", "R"], + "pondered": [], + "Brahmanism": ["S", "M"], + "agitated": [], + "Venuses": [], + "czarist": ["S", "M"], + "hatcheries": [], + "Bangalore": ["M"], + "reachingable": [], + "pluralists": [], + "Verona": ["M"], + "undercut's": [], + "tealights": [], + "seduce": ["D", "R", "S", "Z", "G"], + "vamping": [], + "hearthrug": ["S"], + "regulation": ["C", "M"], + "pointlessly": [], + "dockersing": [], + "fund's": [], + "diadems": [], + "toastmistress": ["M", "S"], + "weddings": [], + "billingsing": [], + "furlings": [], + "establishment's": [], + "Alps": ["M"], + "Catalina's": [], + "fatiguesing": [], + "conchie": ["S"], + "speedinesser": [], + "constructively": [], + "schnozzles": [], + "ditz's": [], + "Gallagher's": [], + "staineding": [], + "watcheder": [], + "revenges": [], + "ladybug": ["M", "S"], + "task's": [], + "Connolly": ["M"], + "Bartok's": [], + "anion'ses": [], + "Dons": [], + "immortalizes": [], + "marquees's": [], + "crayoned": [], + "attendants": [], + "Pearl": ["M"], + "incing": [], + "plugs": [], + "eavesdropper's": [], + "Thur": ["S"], + "chasteness": ["M"], + "goofed": [], + "snailed": [], + "Greek's": [], + "animalcule's": [], + "nubbin": ["M", "S"], + "vibrators": [], + "overclockinged": [], + "clvi": [], + "verticallies": [], + "sours": [], + "Mulder": ["M"], + "countess's": [], + "simulacra": [], + "testator": ["M", "S"], + "whitesness": [], + "impenetrability's": [], + "laudingable": [], + "messiah's": [], + "writ'ser": [], + "miffeds": [], + "crevasses": [], + "bulletining": [], + "revisionism's": [], + "resultants": [], + "ostracizeds": [], + "manifestos": [], + "deepness's": [], + "embosser's": [], + "mightierness": [], + "suburbanites": [], + "Ivanhoe": ["M"], + "vamp'sed": [], + "archangel's": [], + "pasturing": [], + "giveaway": ["M", "S"], + "balletic": [], + "adventurously": [], + "tenth'sly": [], + "Gladys's": [], + "pimpernel": ["M", "S"], + "floozy's": [], + "HST": [], + "agronomy's": [], + "extortinged": [], + "sixteen's": [], + "Dahomey's": [], + "commissioners": [], + "keeper": ["M"], + "outworking": [], + "Tancred's": [], + "weasel's": [], + "penitently": [], + "inexact": ["Y"], + "cutlets's": [], + "enthroninged": [], + "pronounced": [], + "stripey": [], + "willful": ["P", "Y"], + "algebra's": [], + "argumentation": ["M"], + "lasinged": [], + "dishwashers": [], + "geeky": ["R", "T"], + "tint": ["M", "D", "G", "S"], + "Armenians": [], + "tuberose's": [], + "present'sed": [], + "stanching": [], + "conservation's": [], + "handsaw": ["S", "M"], + "casing": ["M"], + "punishmenting": [], + "prospectors": [], + "thriftiest": [], + "mousiest": [], + "Lieberman's": [], + "tragicomedy": ["S", "M"], + "smites": [], + "anglicizing": [], + "tubal": [], + "novice": ["M", "S"], + "emotion": ["M"], + "brokerage": ["M", "S"], + "silents": [], + "tessellatesens": [], + "breathy": ["R", "T"], + "inferno's": [], + "paratrooper's": [], + "oscillationed": [], + "seedbeds": [], + "over's": [], + "embosseder": [], + "Twizzlers's": [], + "verdigrised": [], + "Wichita's": [], + "prefigures": [], + "Chianti'ses": [], + "postured": [], + "tor": ["S", "M"], + "expansionists": [], + "Fijian'ses": [], + "misinforming": [], + "attractant": ["M", "S"], + "fusillade'ses": [], + "courtesans": [], + "aspect's": [], + "Fred": ["M"], + "dwindled": [], + "frontbench": ["Z", "R", "S"], + "gnats": [], + "demographer's": [], + "grantsmanship's": [], + "hdqrs": [], + "broadcaster'ses": [], + "safeguarding": [], + "secretiveness": ["M"], + "lapsing's": [], + "shah": ["M"], + "revoke": ["D", "S", "G"], + "baseballs's": [], + "questioning'sly": [], + "misfire": ["M", "G", "D", "S"], + "majesty": ["S", "M"], + "latitude'ses": [], + "specious": ["Y", "P"], + "Protestant's": [], + "Gaines": ["M"], + "belligerent": ["M", "Y", "S"], + "Decembers": [], + "brusqueness's": [], + "meatier": [], + "ability'ses": [], + "Lavonne": ["M"], + "vegan's": [], + "tally": ["D", "R", "S", "M", "Z", "G"], + "phoneme": ["M", "S"], + "eights's": [], + "vivifiesing": [], + "quainterly": [], + "blurrier": [], + "Joann's": [], + "bargemen": [], + "robust": ["R", "Y", "P", "T"], + "recruiteder": [], + "Canada": ["M"], + "ravings": [], + "sequestration's": [], + "brokenly": [], + "taxpayer'ses": [], + "Emanuel": ["M"], + "scowls": [], + "trawls's": [], + "tyrants": [], + "wheedled": [], + "dyes": [], + "Episcopal": [], + "interlininged": [], + "circling": [], + "processioninged": [], + "masturbateds": [], + "dash": ["Z", "G", "M", "D", "R", "S"], + "axon's": [], + "bailiwick": ["M", "S"], + "Iceland's": [], + "sextet": ["M", "S"], + "parasol": ["M", "S"], + "prominently": [], + "Bork's": [], + "gawkiest": [], + "locus": ["M"], + "gunsmith's": [], + "fructifying": [], + "parlayeds": [], + "logout": ["S", "M"], + "haciendas's": [], + "twiddles": [], + "Ken": ["M"], + "companionway": ["M", "S"], + "birthright's": [], + "dingbats": [], + "Tetons": ["M"], + "tightwads": [], + "Helicon": ["M"], + "referrer": ["S", "M"], + "Burundian's": [], + "constants": [], + "stroll'sed": [], + "reanimation": [], + "Os": ["M"], + "bandannas": [], + "plantations": [], + "largish": [], + "dropkick'ses": [], + "histories": [], + "feelings": [], + "optimizer": [], + "tombs": [], + "dastardliness": ["M"], + "censorings": [], + "internalizinged": [], + "Selma's": [], + "incriminatory": [], + "kick": ["M", "D", "R", "S", "Z", "G"], + "beehive'ses": [], + "clang's": [], + "bolls's": [], + "hooligan's": [], + "intelligibility's": [], + "Ehrenberg's": [], + "Brandenburg": ["M"], + "huskiers": [], + "spherical": ["Y"], + "clarificationsed": [], + "aggravated": [], + "ruminating": [], + "definition": ["A", "M"], + "archives": [], + "overstrict": [], + "predestines": [], + "stopgaps": [], + "lugger's": [], + "Valenti's": [], + "skyjacker's": [], + "bridgeds": [], + "unambiguous": [], + "stapler": ["M"], + "hamburg's": [], + "hopelessliness": [], + "firestorm": ["M", "S"], + "overcoat": ["M", "S"], + "muleteer": ["M", "S"], + "hays": [], + "aconite's": [], + "anonymity's": [], + "domination's": [], + "pursersing": [], + "drool'sed": [], + "passbook": ["M", "S"], + "undergrad": ["S"], + "presumptuousness's": [], + "rosiest": [], + "shade'ses": [], + "plangent": [], + "impairingment": [], + "maltreateds": [], + "fare": ["M", "G", "D", "S"], + "weather": ["S", "M", "D", "G"], + "Steinem's": [], + "foxhound": ["S", "M"], + "clubhouse's": [], + "astride": [], + "etymology": ["S", "M"], + "aldermen": [], + "shapeliness": ["M"], + "shambles": ["M"], + "contract'sed": [], + "factories's": [], + "demographers's": [], + "believe": ["E", "D", "R", "S", "Z", "G"], + "thatch": ["M", "D", "R", "S", "Z", "G"], + "hamper'sed": [], + "horologic": [], + "woodlots's": [], + "revolutionizing": [], + "metaphorical": ["Y"], + "yikes": [], + "fluvial": [], + "mugshot'ses": [], + "assembly's": [], + "sheikdom's": [], + "supposition'ses": [], + "sunburnsing": [], + "dialogue": ["S", "M"], + "Mecca's": [], + "gangways": [], + "macros": [], + "storybooks": [], + "vaginally": [], + "iodizes": [], + "Karaganda's": [], + "dweller": ["M"], + "umbilici": [], + "antimatter's": [], + "bough": ["M"], + "Muscovite": ["M"], + "showcased": [], + "seizure": ["M", "S"], + "deletion's": [], + "hurls": [], + "King": ["M"], + "KB": ["M"], + "vinyls": [], + "coquetries's": [], + "lubricatingen": [], + "surpasseds": [], + "Poland": ["M"], + "wangle": ["M", "Z", "G", "D", "R", "S"], + "possibility's": [], + "printers": [], + "eschewsed": [], + "singletrees's": [], + "intrudesers": [], + "amide's": [], + "Brit's": [], + "trolleys's": [], + "signalizing": [], + "Wilford's": [], + "sharia's": [], + "lumber'sed": [], + "phrenology": ["M"], + "rantersing": [], + "Truman": ["M"], + "lifebuoy": ["M", "S"], + "cnidarians": [], + "druggist's": [], + "brim": ["M", "S"], + "spectating": [], + "steadyingness": [], + "knifing": [], + "partitioned": [], + "Jidda's": [], + "manliness's": [], + "sparrow's": [], + "cooleder": [], + "tux'ses": [], + "marketplaces": [], + "Oran": ["M"], + "Assad": ["M"], + "prawns": [], + "unequally": [], + "tiepin": ["S"], + "stanchion's": [], + "foilings": [], + "beeches": [], + "nadirs": [], + "lagged": [], + "freehold": ["Z", "M", "R", "S"], + "handbarrows's": [], + "converting": [], + "orgasm": ["S", "M"], + "decade'ses": [], + "enthronement's": [], + "circumventsing": [], + "pommy": ["S"], + "verve's": [], + "clutched": [], + "Patagonia": ["M"], + "chartreuse": ["M"], + "conservatories": [], + "Suzette": ["M"], + "tidelands": [], + "Jaxartes's": [], + "oculars": [], + "doubloon": ["S", "M"], + "Tegucigalpa's": [], + "Copernicus": ["M"], + "afflatus": ["M"], + "peasant": ["S", "M"], + "skinniest": [], + "cuttlefishes": [], + "bowlful": ["S", "M"], + "Gable": ["M"], + "hermaphroditic": [], + "encomium'ses": [], + "transfused": [], + "imams": [], + "burn's": [], + "shoplifted": [], + "revolutionists's": [], + "stay": ["M", "D", "R", "Z", "G", "S"], + "commenting": [], + "expected": [], + "aerodynamic": ["S"], + "mambos": [], + "activator's": [], + "cupfuls's": [], + "mudflap": ["S"], + "Clovis's": [], + "nurture": ["D", "R", "S", "M", "Z", "G"], + "escritoires": [], + "park": ["M", "D", "S", "G"], + "Leoncavallo": ["M"], + "toe": ["D", "S", "M"], + "requisites": [], + "gondolier": ["S", "M"], + "mothballed": [], + "unprovoked": [], + "gregarious": ["P", "Y"], + "misfired": [], + "antioxidant": ["M", "S"], + "endoscope'ses": [], + "newscaster": ["M"], + "needing": [], + "weaponry": ["M"], + "Bugatti": ["M"], + "stress's": [], + "commonness's": [], + "unpatriotic": [], + "playgrounds": [], + "payable": [], + "scabrous": [], + "supercities": [], + "towsers": [], + "tauntingly": [], + "boneless": [], + "intelligently": [], + "lollygag": ["S"], + "musketeers": [], + "panties": [], + "catarrh": ["M"], + "backsides's": [], + "diagrammed": [], + "supercargo": ["M"], + "strumpet's": [], + "oak'sen": [], + "paddocking": [], + "seasides": [], + "ebbeding": [], + "painsing": [], + "lobe": ["M", "S"], + "exhilaratesing": [], + "Chad": ["M"], + "Rourke": ["M"], + "deterrent": ["M", "S"], + "gallant's": [], + "impeacher": ["M"], + "aerialist'ses": [], + "Kuwait's": [], + "theosophist's": [], + "monseigneur": ["M"], + "itinerants's": [], + "bluing": ["M"], + "Anatole's": [], + "cottonmouths": [], + "against": [], + "kebab's": [], + "offload": ["S", "D", "G"], + "scoured": [], + "grocer'ses": [], + "adjusts": [], + "breakneck": [], + "womankind": ["M"], + "coulis": [], + "skunked": [], + "curtly": [], + "outhouses's": [], + "Arno": ["M"], + "seclude": ["G", "D", "S"], + "biorhythm's": [], + "frissons": [], + "burnish'sed": [], + "blackthorns": [], + "jubilees": [], + "numskull'ses": [], + "tusk": ["M", "D", "S"], + "pedicured": [], + "incriminating": [], + "bung'sed": [], + "Morse's": [], + "suggestions": [], + "Luzon's": [], + "osculate": ["D", "S", "X", "G", "N"], + "worth": ["M"], + "algebra": ["S", "M"], + "underscore's": [], + "Romanies's": [], + "skinless": [], + "scrap'sed": [], + "waitings": [], + "Cotopaxi": ["M"], + "fragility": ["M"], + "ambiance": ["M", "S"], + "pensiveness": ["M"], + "laminar": [], + "outflankings": [], + "hackney's": [], + "ballyhoos's": [], + "wildly": [], + "overbalancinged": [], + "howl'sed": [], + "corroborative": [], + "chlorinates": [], + "goutier": [], + "quarantine'sing": [], + "bozo": ["M", "S"], + "Ottawas's": [], + "wonderments": [], + "misunderstanding": ["M"], + "Clytemnestra": ["M"], + "vitalization's": [], + "saucepan": ["S", "M"], + "inflaming": [], + "instructs": [], + "virgins": [], + "twentieths": [], + "secretly": [], + "puppet": ["M", "S"], + "captivity": ["S", "M"], + "sketchy": ["R", "T", "P"], + "singularly": [], + "downplayeds": [], + "sweepstakes": ["M"], + "Alphonso": ["M"], + "flickers": [], + "plainsman": ["M"], + "Antichrist's": [], + "examination's": [], + "Thutmose": ["M"], + "microcosm's": [], + "bairn's": [], + "chaos": ["M"], + "sponsors": [], + "shuffleboards's": [], + "complexional": [], + "slap": ["M", "S"], + "whippets": [], + "doggies": [], + "lachrymose": [], + "escapology": [], + "preseasons's": [], + "hawkings": [], + "poppas": [], + "receives": [], + "surrendering": [], + "exponents": [], + "cerebra": [], + "tastefulnessly": [], + "participant's": [], + "purplers": [], + "incorporatesing": [], + "purchasersing": [], + "primpeds": [], + "whipper'ses": [], + "childbirths": [], + "sandpipers": [], + "midshipman's": [], + "Tampax": ["M"], + "Isuzu": ["M"], + "prohibitively": [], + "bastardizeds": [], + "Wilbur's": [], + "freighting": [], + "hound": ["S", "G", "M", "D"], + "zebus": [], + "taunt'sed": [], + "womanlike's": [], + "antiperspirant's": [], + "subtitleds": [], + "calabash": ["M", "S"], + "irrelevances": [], + "sportswriter's": [], + "unaddressed": [], + "finale": ["M", "S"], + "Volkswagen's": [], + "avalanches": [], + "Machiavelli's": [], + "domed": [], + "barcarole": ["S", "M"], + "nectarines": [], + "lib's": [], + "madrassas's": [], + "coupon": ["S", "M"], + "crocodile": ["S", "M"], + "castratingen": [], + "Altamira's": [], + "gastritis's": [], + "Chirico's": [], + "conveyance": ["M", "G", "S"], + "centrally": [], + "palavered": [], + "Alsatian's": [], + "Alvarado": ["M"], + "longitude'ses": [], + "flirtation": ["M", "S"], + "declivities's": [], + "affectinged": [], + "syllabifies": [], + "landed": [], + "fusiliers": [], + "unsuited": [], + "transposition'ses": [], + "timidity's": [], + "inhalant": ["S", "M"], + "industrializes": [], + "Thaddeus": ["M"], + "obligatingen": [], + "incense's": [], + "coolingness": [], + "gush's": [], + "tithe": ["D", "R", "S", "M", "Z", "G"], + "nowt": [], + "receivesers": [], + "revetment": ["S", "M"], + "backchat": [], + "fagoting": [], + "webs": [], + "Saturday's": [], + "gospel'ses": [], + "goalmouth": [], + "Faustian's": [], + "Bert's": [], + "fiddlesticks": [], + "smashups": [], + "Lycurgus": ["M"], + "franchisee's": [], + "connectivity": ["M"], + "concierge's": [], + "marmots": [], + "swiz": [], + "treadmill's": [], + "dumbliness": [], + "foretelling": [], + "hypertrophied": [], + "dandy": ["T", "R", "S", "M"], + "bereave": ["D", "S", "L", "G"], + "Berkshires": ["M"], + "campanology": ["M"], + "Calliope": ["M"], + "larch's": [], + "seigniors": [], + "transformables": [], + "agoraphobic's": [], + "alternating": [], + "purloining": [], + "logiest": [], + "fiddle's": [], + "puzzler": ["M"], + "dewberries": [], + "moralist": ["M", "S"], + "pleasantest": [], + "localized": [], + "freighter's": [], + "bookworms's": [], + "implication": ["M"], + "ignoring": [], + "spoke's": [], + "effeminate": ["Y"], + "trustee's": [], + "sunlight": ["M"], + "terrazzo'ses": [], + "coil": ["U", "A", "D", "G", "S"], + "mentalities's": [], + "Ellesmere's": [], + "sewer'ses": [], + "sorrow'sed": [], + "thorniness's": [], + "parish'ses": [], + "medical'sly": [], + "abduction": ["S", "M"], + "blobs": [], + "Eddy": ["M"], + "comperes": [], + "parkway'ses": [], + "shanghaiing": [], + "betrotheding": [], + "lockout's": [], + "requiteder": [], + "poser's": [], + "drills's": [], + "profligate": ["S", "M", "Y"], + "condor's": [], + "sextant": ["S", "M"], + "checkmating": [], + "stealth": ["M"], + "barbel's": [], + "pecksers": [], + "YT": [], + "pamphlet": ["M", "S"], + "epidemiological": [], + "enterprising": ["Y"], + "losers": [], + "clam": ["S", "M"], + "marshlands": [], + "oxyacetylene": ["M"], + "dumdum'ses": [], + "scout's": [], + "Camus's": [], + "braced": [], + "roughing": [], + "subside": ["G", "D", "S"], + "Vinson": ["M"], + "camerawomen": [], + "parkway's": [], + "outpointing": [], + "merchandises": [], + "straightened": [], + "precipitation's": [], + "interrupter's": [], + "ropier": [], + "veld": ["M", "S"], + "electrodynamics": [], + "chanciest": [], + "paging": [], + "inhibition's": [], + "welds": [], + "Nagpur's": [], + "facilitators": [], + "dilettantes": [], + "bitcoins's": [], + "print'sed": [], + "gizmo's": [], + "daredevil'ses": [], + "underground's": [], + "Nome": ["M"], + "bitterly": [], + "eliminations": [], + "splats's": [], + "longhand": ["M"], + "Meiji's": [], + "Burundi's": [], + "Bartlett's": [], + "fritter'sed": [], + "letterers": [], + "photo": ["S", "G", "M", "D"], + "plumpingness": [], + "snowmobile's": [], + "prohibited": [], + "Hals": ["M"], + "shipwrecked": [], + "precognition's": [], + "uncleanliest": [], + "endorsementers": [], + "lysosomes": [], + "Niccolo": ["M"], + "Maalox's": [], + "pounces": [], + "seventh's": [], + "jawbreaker'ses": [], + "haunch": ["M", "S"], + "barking": [], + "Rubinstein's": [], + "Disraeli's": [], + "coma'ses": [], + "systematizes": [], + "bystander'ses": [], + "reveries": [], + "seasonedable": [], + "aitch's": [], + "dissolution's": [], + "thwarted": [], + "tract's": [], + "quay's": [], + "Akita's": [], + "bicycle's": [], + "frightful": ["P", "Y"], + "deaf": ["P", "X", "T", "N", "R"], + "crushers": [], + "Kodiak's": [], + "tousle": ["G", "D", "S"], + "superposes": [], + "shuckeds": [], + "abductsing": [], + "trimmers": [], + "twaddle's": [], + "revilersing": [], + "Sinhalese's": [], + "palpitated": [], + "regnant": [], + "medicationsed": [], + "bullpens": [], + "frequented": ["U"], + "conveyor": ["M", "S"], + "heartwarming": [], + "diverticulitis's": [], + "alcoves": [], + "Algonquin": ["M", "S"], + "ensign'ses": [], + "teargassed": [], + "bang's": [], + "honorees": [], + "Hollands's": [], + "diddlesers": [], + "gainer's": [], + "crunch's": [], + "holography": ["M"], + "Felicity": ["M"], + "neuritic'ses": [], + "contender": ["M", "S"], + "boons": [], + "nightlife": ["M"], + "drubs": [], + "entitled": [], + "flame": ["D", "R", "S", "J", "M", "Z", "G"], + "tepidness": ["M"], + "Meir": ["M"], + "transmutations": [], + "settler": ["S", "M"], + "RN's": [], + "creepersing": [], + "supplies's": [], + "sled": ["M", "S"], + "inverse's": [], + "purport'sed": [], + "narrow'sed": [], + "loansharking": ["M"], + "skateboard'sed": [], + "standings": [], + "maligneds": [], + "catafalque'ses": [], + "fumigatingen": [], + "lonesomeness": ["M"], + "businesslike": [], + "burnisher's": [], + "jct": [], + "reconfiguration": [], + "Bali": ["M"], + "sample's": [], + "Gopher": [], + "lukewarm": ["Y", "P"], + "examiner'ses": [], + "outclass": ["D", "S", "G"], + "particulars's": [], + "Mia's": [], + "dawn": ["S", "G", "M", "D"], + "vying": [], + "songster's": [], + "hulk'ses": [], + "taunter": ["M"], + "caste's": [], + "rajah's": [], + "childlessness's": [], + "unresent": [], + "intention's": [], + "princedom's": [], + "innermost": [], + "groupware": ["M"], + "squisheds": [], + "gander's": [], + "ensnaresment": [], + "sketchiness's": [], + "Sistine's": [], + "trajectory's": [], + "unstated": [], + "locomotives": [], + "abidingly": [], + "extremist": ["M", "S"], + "bibs's": [], + "roast": ["Z", "G", "M", "D", "R", "S", "J"], + "outpaceds": [], + "tapper's": [], + "masochistic": [], + "mesmerizer's": [], + "khan's": [], + "Lhasas": [], + "arbitrator's": [], + "dexterousliness": [], + "Schumpeter": ["M"], + "swearword'ses": [], + "polyglots's": [], + "she": ["D", "S", "M"], + "clearness's": [], + "incl": [], + "merchandised": [], + "bacchanalian's": [], + "exurbs's": [], + "conferral's": [], + "crate'sers": [], + "methodology": ["S", "M"], + "anorak'ses": [], + "crumpets": [], + "sturdiest": [], + "lowland's": [], + "dower": ["S", "M", "D", "G"], + "warship's": [], + "bandbox": ["M", "S"], + "Baudouin": ["M"], + "ulcers's": [], + "seraphic": [], + "clitoral": [], + "shield": ["M", "D", "G", "S"], + "topaz'ses": [], + "clobbered": [], + "eucalyptus's": [], + "executioners's": [], + "contempt's": [], + "galumphed": [], + "majoritarian": ["S", "M"], + "Thurber": ["M"], + "Alonzo": ["M"], + "gratification's": [], + "scatter'sed": [], + "rucking": [], + "lockups": [], + "rakishness": ["M"], + "mangled": [], + "tincture": ["M", "G", "D", "S"], + "clairvoyant'ses": [], + "overpopulating": [], + "rootless": ["P"], + "oiliness's": [], + "gillies": [], + "plasterboard": ["M"], + "Scotchwoman": ["M"], + "Toto": ["M"], + "barringsed": [], + "adderable": [], + "curiae": [], + "preacheder": [], + "waterproofed": [], + "cheatersing": [], + "refsers": [], + "dithers's": [], + "liars": [], + "answerphone": ["S"], + "hector'sed": [], + "hymnsing": [], + "overcompensatesing": [], + "pyrotechnics's": [], + "ineligible's": [], + "Havana'ses": [], + "femurs": [], + "orchestrationsing": [], + "satiety": ["M"], + "extreme": ["P", "M", "Y", "T", "R", "S"], + "trip'sly": [], + "births": ["A"], + "mailbombing": [], + "Haney's": [], + "cyclopes": [], + "lull'sed": [], + "FDA": [], + "yaks's": [], + "semiyearly": [], + "claimants": [], + "telephoner's": [], + "epitaph": ["M"], + "surrealists's": [], + "faultfinder's": [], + "CT's": [], + "doting": ["Y"], + "denounce": ["L", "D", "S", "G"], + "plashesing": [], + "slacking's": [], + "retarder": ["M"], + "invertebrate": [], + "graph": ["M", "D", "G"], + "raffishness's": [], + "meddlesome": [], + "Odessa": ["M"], + "strandsing": [], + "shifting": [], + "ordinal": ["S", "M"], + "bullieds": [], + "gerontology's": [], + "negotiable": ["A"], + "enrolling": [], + "manicurist'ses": [], + "unbelievably": [], + "suspenders": [], + "competent": ["I", "Y"], + "streptococcal": [], + "southwestwards": [], + "Vermont's": [], + "nonbinding": [], + "reactants's": [], + "editorial'sly": [], + "HQ": ["M"], + "replication": ["M"], + "quizzer": ["S", "M"], + "tenement's": [], + "abeyance": ["M"], + "diverge": ["D", "S", "G"], + "timingsed": [], + "synchronicity": [], + "Advent's": [], + "broke": [], + "fortunetelling": ["M"], + "positivism": [], + "Morocco's": [], + "mast's": [], + "blacklegs": [], + "journo": ["S"], + "parimutuel's": [], + "seduction": ["S", "M"], + "lariats's": [], + "plea": ["M", "S"], + "siren": ["M"], + "dot": ["Z", "G", "S", "M", "D", "R"], + "intrinsic": [], + "modish": ["Y", "P"], + "maneuverability's": [], + "vintage": ["M", "S"], + "dissuadeds": [], + "mannequins's": [], + "Upjohn": ["M"], + "clogs": [], + "trivialization's": [], + "Mallarme's": [], + "abolitionist": ["S", "M"], + "beverages's": [], + "evaporator": ["S", "M"], + "flagstone": ["M", "S"], + "boorishnessly": [], + "howler's": [], + "fixative'ses": [], + "sarcoma's": [], + "Hungarian": ["S", "M"], + "functioned": [], + "recapping": [], + "extemporize": ["G", "D", "S"], + "barraginged": [], + "inamorata": ["S", "M"], + "lotion's": [], + "chockablock": [], + "Eng": ["M"], + "imprisoned": [], + "turtlenecks's": [], + "scrupulousnessly": [], + "venally": [], + "belloweding": [], + "naturalized": [], + "suntan's": [], + "Figaro's": [], + "macadamia's": [], + "Lillie": ["M"], + "expletives": [], + "Hale's": [], + "summonsers": [], + "lusciousness": ["M"], + "Ming": ["M"], + "balking's": [], + "euthanize": ["D", "S", "G"], + "neighborlying": [], + "neutralizersing": [], + "operational": ["Y"], + "luxuriousness": ["M"], + "puckishly": [], + "Mafioso's": [], + "contrail's": [], + "trisecteding": [], + "eider": ["S", "M"], + "overvalueds": [], + "Freda's": [], + "hobbyhorse'ses": [], + "long's": [], + "electromagnet": ["M", "S"], + "tonsuring": [], + "Soho": ["M"], + "starless": [], + "F's": [], + "acyclovir's": [], + "separately": [], + "adventures's": [], + "why'd": [], + "whited": [], + "Malayan": ["M", "S"], + "hater's": [], + "canonically": [], + "hypertrophy's": [], + "carersing": [], + "Bernard's": [], + "exhibiteds": [], + "relied": [], + "belting's": [], + "porn": ["M"], + "desolated": [], + "proofing": [], + "glumness's": [], + "cherisheds": [], + "cerium": ["M"], + "East's": [], + "pinging's": [], + "spectrometer": ["M", "S"], + "contradictory": [], + "trailersing": [], + "friendly": ["U", "P", "T", "R"], + "hue": ["D", "S", "M"], + "backhands": [], + "cloneds": [], + "groper's": [], + "organ's": [], + "bandaged": [], + "penalizesing": [], + "mayoress'ses": [], + "ghee": [], + "civilization's": [], + "Magellan's": [], + "benefactress's": [], + "servicewomen": [], + "mantra's": [], + "diverse": ["X", "Y", "N", "P"], + "wrecksers": [], + "anticipating": [], + "mannequins": [], + "feed's": [], + "Highlander": ["S", "M"], + "biology's": [], + "spoors": [], + "betrothed": ["M"], + "puttereder": [], + "hydrangeas's": [], + "malefactor": ["S", "M"], + "Orizaba's": [], + "apothegms's": [], + "concocting": [], + "summonsed": [], + "bowsprit": ["S", "M"], + "randiness's": [], + "indivisible": [], + "Aguirre's": [], + "inculcateds": [], + "systematization's": [], + "cessation's": [], + "protectorate": ["M", "S"], + "Philip": ["M", "S"], + "Epiphany's": [], + "herself": [], + "technocrat's": [], + "scoldeds": [], + "zit's": [], + "tits's": [], + "ostracizinged": [], + "Valdez": ["M"], + "Golan": ["M"], + "worktable": ["M", "S"], + "franchiser": ["S", "M"], + "creak's": [], + "enamorsing": [], + "mags": [], + "Caravaggio's": [], + "withholding": ["M"], + "fosterings": [], + "dials": [], + "wordbook's": [], + "nontraditional": [], + "pups": [], + "Cameroonian'ses": [], + "sojourners": [], + "Alex": ["M"], + "act": ["A", "S", "D", "G", "V"], + "Gobi's": [], + "spools": [], + "bilkinged": [], + "Fleischer's": [], + "Bultmann's": [], + "beak'sed": [], + "glint": ["S", "M", "D", "G"], + "grebes's": [], + "bayonet'sed": [], + "roundness": ["M"], + "cortege": ["M", "S"], + "Hooper's": [], + "importer": ["M"], + "gardenia'ses": [], + "billet'sed": [], + "bookmarkeding": [], + "reflates": [], + "celebration": ["M"], + "Tortola's": [], + "tuberculin's": [], + "burgher": ["M"], + "armed": ["U"], + "joysticks": [], + "phenoms": [], + "copyright's": [], + "beloved": ["S", "M"], + "bitchiest": [], + "lopsidedness's": [], + "walkways": [], + "curiousliness": [], + "coyest": [], + "energetic": [], + "attar's": [], + "pouringed": [], + "MFA": ["M"], + "Novocains": [], + "pliancy's": [], + "Aprils": [], + "snobby": ["R", "T"], + "polymerization's": [], + "sturdier": [], + "premiering's": [], + "tunelessly": [], + "Guadalquivir's": [], + "maledictions's": [], + "washerwomen": [], + "overtime'ses": [], + "damper's": [], + "adverbs's": [], + "Johnie's": [], + "Angelo's": [], + "thrall": ["S", "M", "D", "G"], + "configurable": [], + "ovulateds": [], + "segued": [], + "portrait's": [], + "Trailways": ["M"], + "dimensional": [], + "overstepping": [], + "scrumping": [], + "exploreder": [], + "RCA's": [], + "howitzer's": [], + "voluptuary": ["S", "M"], + "left": ["M", "R", "S", "T"], + "stages": [], + "transnational'ses": [], + "divulge": ["G", "D", "S"], + "numerologist's": [], + "egoists": [], + "quirky": ["R", "T", "P"], + "portrayal'ses": [], + "bowlersing": [], + "vapes": [], + "consulship's": [], + "destroyer's": [], + "cleanest": [], + "bod's": [], + "widower": ["M"], + "vigils": [], + "miscount": ["M", "D", "S", "G"], + "emails": [], + "Apocalypse's": [], + "narrating": [], + "redolence": ["M"], + "confine's": [], + "sockings": [], + "Gael": ["S", "M"], + "freebooter's": [], + "perennials's": [], + "pommelsing": [], + "macaques": [], + "ricocheted": [], + "snakebite's": [], + "burlesques": [], + "gradated": [], + "Septuagint": ["M", "S"], + "loatheder": [], + "nestling": ["M"], + "Zaporozhye": ["M"], + "Andrews": ["M"], + "candies": [], + "envelope's": [], + "architecture's": [], + "renouncesing": [], + "HBO's": [], + "androgenic": [], + "wivinged": [], + "posy's": [], + "gladiator's": [], + "transport's": [], + "hares": [], + "nightingale": ["S", "M"], + "structuralist": ["S"], + "meritoriously": [], + "Plasticine": ["M"], + "Toby": ["M"], + "slew's": [], + "practical'sly": [], + "stiffened": [], + "indiscriminately": [], + "humanities's": [], + "Canterbury's": [], + "misconduct'sed": [], + "denens": [], + "pinfeather": ["S", "M"], + "floe'ses": [], + "died": [], + "neededs": [], + "skunkeding": [], + "clan": ["S", "M"], + "warier": [], + "English's": [], + "Kisangani's": [], + "exterior'ses": [], + "relativity's": [], + "kilnsing": [], + "teemed": [], + "antiperspirants's": [], + "banknotes's": [], + "immaterialness": ["M"], + "classifiers": [], + "egocentric'ses": [], + "elucidating": [], + "sundress": ["S"], + "impersonations": [], + "Hershel's": [], + "queening's": [], + "HF's": [], + "trenchesing": [], + "opprobrium": ["M"], + "weathercock's": [], + "brushoff's": [], + "effectiveness's": [], + "besieging": [], + "dueler": ["M"], + "lofting": [], + "grassing": [], + "squareness's": [], + "recoil": [], + "middlings": [], + "apprenticeship": ["M", "S"], + "reunification": [], + "taste's": [], + "galvanic": [], + "mitigatesing": [], + "sanitariums": [], + "relegateds": [], + "sigh": ["G", "M", "D"], + "diplomatically": [], + "doodad's": [], + "extemporization": ["M"], + "caking": [], + "admixture's": [], + "sleepiness's": [], + "Faust": ["M"], + "percussive": [], + "dogma's": [], + "sandhogs": [], + "outworkersing": [], + "deadline": ["S", "M"], + "bashful": ["P", "Y"], + "Urania": ["M"], + "nailbrush'ses": [], + "Minnesotan": ["S", "M"], + "winnoweder": [], + "equalizes": [], + "corrupteder": [], + "remainders": [], + "equestrians's": [], + "revision": ["S", "M"], + "topography's": [], + "lieutenancy": ["M"], + "Romanesque": ["M", "S"], + "initiatory": [], + "airstrips": [], + "testatrix's": [], + "obstructeding": [], + "spicier": [], + "inclemency": [], + "lacking": [], + "Qatari's": [], + "abrasions": [], + "nobility": ["M"], + "codifying": [], + "zither's": [], + "Rolex's": [], + "contiguously": [], + "longings": [], + "fretwork's": [], + "deviously": [], + "machinateds": [], + "ballplayers": [], + "whitecap": ["S", "M"], + "diorama's": [], + "diameter": ["S", "M"], + "oeuvres": [], + "zigzagged": [], + "cathodes": [], + "slough'sed": [], + "fictions": [], + "boulevard": ["S", "M"], + "colleague'ses": [], + "landscapinged": [], + "types": [], + "grumbler": ["M"], + "stair's": [], + "sweep": ["Z", "G", "S", "M", "R", "J"], + "pellet'sed": [], + "knee'sed": [], + "bikinis": [], + "inches": [], + "room'sed": [], + "cruelest": [], + "basemen": [], + "gradatingen": [], + "fumiest": [], + "jump's": [], + "hypnotists": [], + "meteoroid": ["S", "M"], + "morbidness's": [], + "symmetry's": [], + "gushier": [], + "nephrite's": [], + "Clausius's": [], + "Tunisia's": [], + "dint's": [], + "mad'sly": [], + "eleventh's": [], + "erects": [], + "jouncinged": [], + "creditings": [], + "tweeter": ["S", "M"], + "inhospitable": [], + "tousleds": [], + "rehabilitating": [], + "rigorousness's": [], + "eighties": [], + "Matilda's": [], + "weighbridge": ["S"], + "Hebrew's": [], + "philistine'ses": [], + "dabbling": [], + "fireman's": [], + "arresteds": [], + "loonies's": [], + "burlier": [], + "vulnerable": ["I"], + "grandfatherly": [], + "cello": ["M", "S"], + "battleground'ses": [], + "foundations's": [], + "cirque's": [], + "pantheon": ["S", "M"], + "Jataka": ["M"], + "mudflats": [], + "bidden": ["U"], + "pilafs": [], + "transparency": ["S", "M"], + "meany": ["S", "M"], + "detoxification's": [], + "frailty": ["S", "M"], + "abbreviated": [], + "Zionists's": [], + "boy": ["S", "M"], + "Brandt": ["M"], + "Chisholm": ["M"], + "silhouette's": [], + "diabolic": [], + "allusions": [], + "paternoster's": [], + "alleging": [], + "Sassanian's": [], + "Polynesian'ses": [], + "deepnessens": [], + "delirium's": [], + "postmen": [], + "milliliter'ses": [], + "Cronkite": ["M"], + "caw's": [], + "laved": [], + "noble": ["R", "S", "P", "M", "T"], + "heckles's": [], + "simulatesing": [], + "radioactively": [], + "spoofs": [], + "Tempe": [], + "dynamite'sers": [], + "deacon": ["M", "S"], + "glutenous": [], + "introvert'sed": [], + "militarized": [], + "upgrades": [], + "apoptosis": [], + "lightheaded": [], + "enchaining": [], + "jockstrap's": [], + "Alabaman's": [], + "blemisheds": [], + "GPA": [], + "anesthetizes": [], + "simply": [], + "texture's": [], + "verbosity": ["M"], + "knavery's": [], + "concur": ["S"], + "window'sed": [], + "clamped": [], + "mobs": [], + "cloverleaves": [], + "rhea's": [], + "telecommuted": [], + "transmogrificationing": [], + "conceptualizing": [], + "destiny's": [], + "gollies": [], + "jousting": ["M"], + "velocities": [], + "borzois's": [], + "enemies": [], + "bathing": ["M"], + "savants": [], + "brilliant'sly": [], + "culminates": [], + "tumble": ["D", "R", "S", "M", "Z", "G"], + "dromedaries's": [], + "slippage's": [], + "lateraling": [], + "impermanence": ["M"], + "disturbersing": [], + "trickily": [], + "deluged": [], + "mined": [], + "Stevenson's": [], + "insincerity": [], + "podiatrist's": [], + "Brando": ["M"], + "granddad's": [], + "tomboy": ["M", "S"], + "stagehand's": [], + "burdensing": [], + "interpretive": [], + "enzyme": ["S", "M"], + "Levine's": [], + "rater": ["M"], + "belting": [], + "keypunch": ["Z", "G", "M", "D", "R", "S"], + "shed": ["M", "S"], + "endometrium": [], + "Maxine": ["M"], + "hollowliness": [], + "leases": [], + "Liechtenstein'ser": [], + "orifice's": [], + "morays": [], + "uninspiring": [], + "switchboard": ["S", "M"], + "saffrons": [], + "creditor": ["S", "M"], + "sexes": [], + "extinction'ses": [], + "suggesteder": [], + "peddlers": [], + "tripod's": [], + "marinas": [], + "exclusivelies": [], + "boob's": [], + "delvers": [], + "manglinged": [], + "mince": ["D", "R", "S", "M", "Z", "G"], + "flowcharts": [], + "Ms": ["S"], + "illiteracy": ["M"], + "gestating": [], + "titleds": [], + "squarish": [], + "haylofts's": [], + "jangles": [], + "bicarb's": [], + "Lenora's": [], + "sniveleder": [], + "fearlessness": ["M"], + "caribou": ["S", "M"], + "microbrewery": ["S", "M"], + "wacko's": [], + "conjointly": [], + "coif's": [], + "caustically": [], + "hutch's": [], + "copywriter": ["M", "S"], + "bisect": ["D", "G", "S"], + "droppings": ["M"], + "dispensation'ses": [], + "dessertspoon": ["S"], + "jato": ["M", "S"], + "adversaries": [], + "underplayings": [], + "raffles": [], + "takeoff's": [], + "daydreaming": [], + "testis's": [], + "rakeds": [], + "freebasinged": [], + "person": ["U", "M", "S"], + "extendinged": [], + "harem": ["S", "M"], + "lubricated": [], + "Fremont's": [], + "truanteds": [], + "ab": ["S", "D", "Y"], + "dormancy's": [], + "Wiesenthal": ["M"], + "kitties": [], + "nationalities's": [], + "captiousness": ["M"], + "landlubber": ["M", "S"], + "locos": [], + "peregrines": [], + "contrarians": [], + "Parkinson": ["M"], + "catfish'ses": [], + "stalemateds": [], + "projectile's": [], + "epoxy's": [], + "chucklinged": [], + "doge's": [], + "clotures's": [], + "upstate's": [], + "Marple": ["M"], + "twinkling": ["M"], + "aroused": [], + "domicile": ["D", "S", "M", "G"], + "gazetted": [], + "optic": ["M", "S"], + "intermediaries": [], + "disappointment": [], + "retracted": [], + "Ariosto's": [], + "internment": ["M"], + "Vicente's": [], + "sear": ["G", "M", "D", "S"], + "bipolarity's": [], + "muckrakersing": [], + "fajita": ["S", "M"], + "overhead": ["M", "S"], + "encoding": [], + "grievousness's": [], + "debarring": [], + "Tampa": ["M"], + "quoits's": [], + "skyings": [], + "curio": ["S", "M"], + "wiglet's": [], + "catalpas": [], + "Adrian": ["M"], + "sweatshops": [], + "dressiness's": [], + "Nunavut's": [], + "interrogatory's": [], + "Xochipilli": ["M"], + "apprehensiveness": ["M"], + "cartilaginous": [], + "amigos": [], + "pardonables": [], + "biophysicist'ses": [], + "strangest": [], + "barre'sing": [], + "sunlamps": [], + "bullshitted": ["!"], + "panama's": [], + "mendelevium": ["M"], + "ataxia's": [], + "footnote": ["M", "G", "D", "S"], + "coupons's": [], + "viewfinders": [], + "fossilize": ["G", "D", "S"], + "vowels's": [], + "orbs's": [], + "abhorring": [], + "beneficence's": [], + "chilled": [], + "tracker": ["M"], + "bivalve's": [], + "conversation'ses": [], + "stares's": [], + "submits": [], + "capital": ["M", "S", "Y"], + "brothel's": [], + "stagnatingen": [], + "herdsmen": [], + "unify": ["A", "G", "D", "S", "N"], + "protozoan'ses": [], + "complacency's": [], + "burglar's": [], + "Lamar": ["M"], + "indoctrination": ["M"], + "tarn'ses": [], + "composite's": [], + "wale": ["M", "G", "D", "S"], + "gunny": ["M"], + "acquaintsed": [], + "frustrates": [], + "reciprocate": ["G", "N", "D", "S"], + "platinum": ["M"], + "bounced": [], + "ducklings": [], + "manse's": [], + "Fuzhou": ["M"], + "simplifying": [], + "masculines's": [], + "applauding": [], + "choristers": [], + "puncheon": ["M", "S"], + "infinitive'ses": [], + "teleconference": ["M", "G", "D", "S"], + "generally": [], + "Asian": ["M", "S"], + "buoyeding": [], + "Thornton": ["M"], + "guest'sed": [], + "postpaid": [], + "pubis's": [], + "overmanned": [], + "fortress": ["M", "S"], + "tetrameter": ["S", "M"], + "scavenging": [], + "miscues": [], + "sickroom'ses": [], + "nook's": [], + "Paleolithic": ["M"], + "prognosticatingen": [], + "spearfish": ["G", "M", "D", "S"], + "Viacom": ["M"], + "consume": ["B", "D", "R", "S", "Z", "G"], + "primarily": [], + "imaginesable": [], + "randier": [], + "striking": ["Y"], + "climbing's": [], + "windflower's": [], + "gravies's": [], + "outsings": [], + "terabyte": ["M", "S"], + "intermarriage's": [], + "assembler'ses": [], + "industrialization": ["M"], + "phenomenology": [], + "Muriel": ["M"], + "treacherously": [], + "Burton": ["M"], + "monetary": [], + "Vorster's": [], + "xenon's": [], + "viscerally": [], + "footwear": ["M"], + "servility": ["M"], + "Amritsar": ["M"], + "soapbox's": [], + "Monty's": [], + "bypath": ["M"], + "geysers's": [], + "Huffman's": [], + "pink'sed": [], + "lings": [], + "assuringed": [], + "spout": ["S", "M", "D", "G"], + "laxness": ["M"], + "tendinitis": ["M"], + "intermarryinged": [], + "easement": ["S", "M"], + "marabout's": [], + "complex": ["M", "S", "Y"], + "contuseds": [], + "jock's": [], + "tartiest": [], + "antivenin's": [], + "fordable": [], + "dielectrics": [], + "trikes": [], + "pint": ["M", "S"], + "fattening": [], + "topically": [], + "Shenandoah": ["M"], + "jingoists's": [], + "wagon": ["Z", "S", "M", "R"], + "cheroot's": [], + "Zebedee's": [], + "jockey'sed": [], + "fresheninged": [], + "overpopulate": ["G", "N", "D", "S"], + "wideness's": [], + "smileys": [], + "provokingly": [], + "awkwardness's": [], + "corolla's": [], + "syncopatesing": [], + "magnificence": ["M"], + "ricked": [], + "tokeds": [], + "outmatchinged": [], + "momentously": [], + "shacks": [], + "alternator": ["S", "M"], + "peptic": ["M", "S"], + "everyday": [], + "drawls's": [], + "diaphragms": [], + "orationsed": [], + "subgroups": [], + "Baden": ["M"], + "chastiser": ["M"], + "minty": ["R", "T"], + "madhouses": [], + "sow": ["A", "S", "G", "D"], + "precisest": [], + "execratesing": [], + "chaparrals": [], + "apartheid's": [], + "Usenets": [], + "Tallinn": ["M"], + "precisingen": [], + "Surya": ["M"], + "Bunker's": [], + "octopus's": [], + "misdeed's": [], + "indebtedness": ["M"], + "hooligans": [], + "mislays": [], + "hitters": [], + "seem": ["G", "D", "S"], + "sick": ["P", "X", "T", "G", "D", "N", "R", "Y", "S"], + "Airedale'ses": [], + "Marx": ["M"], + "Euphrates's": [], + "slaughterhouses": [], + "weighting": [], + "pica's": [], + "cruiser's": [], + "hellhole's": [], + "Zulu": ["S", "M"], + "addressing": [], + "reader's": [], + "faucets": [], + "thrift's": [], + "sizzle": ["D", "R", "S", "M", "Z", "G"], + "videoed": [], + "initial": ["S", "G", "M", "D", "Y"], + "Volvo's": [], + "legality's": [], + "president'ses": [], + "kindergartner's": [], + "huntsers": [], + "buffalo's": [], + "Rosales's": [], + "subsonic": [], + "radiologist": ["S", "M"], + "humanoids": [], + "fairness": ["U", "M"], + "ricochet'sed": [], + "corduroys": ["M"], + "reformulation": [], + "pooed": [], + "watchword": ["M", "S"], + "loiter": ["Z", "G", "S", "D", "R"], + "horsewoman's": [], + "whalebone": ["M"], + "hydro": ["M"], + "dowser": ["M"], + "Orly": ["M"], + "connector": ["M", "S"], + "checkpoints": [], + "calamaris's": [], + "cutthroats": [], + "minutenessed": [], + "enamoringed": [], + "necropolis's": [], + "sandcastles": [], + "wieldsed": [], + "Jamaica": ["M"], + "Lincoln's": [], + "hawthorns": [], + "polishersing": [], + "issuance's": [], + "crappiers": [], + "bombing's": [], + "organizeding": [], + "thuggery's": [], + "dereed": [], + "sawhorse": ["S", "M"], + "Montaigne's": [], + "Menkar": ["M"], + "sensually": [], + "gossipings": [], + "swindles": [], + "break": ["B", "M", "Z", "G", "R", "S"], + "volatilizing": [], + "disturbance's": [], + "titans's": [], + "authenticate": ["X", "G", "N", "D", "S"], + "Knoxville": ["M"], + "lutanists": [], + "assortment's": [], + "handicrafts": [], + "breasts's": [], + "burrow'sed": [], + "Chasity": ["M"], + "sonatina's": [], + "winsomeness's": [], + "muster's": [], + "dobbing": [], + "mires": [], + "UBS's": [], + "editors": [], + "toasties": [], + "Kublai's": [], + "epidermis's": [], + "armadillos": [], + "mirth's": [], + "Robertson": ["M"], + "dictates's": [], + "applicably": [], + "ballot'sed": [], + "charterers": [], + "mummify": ["G", "N", "D", "S"], + "raffle's": [], + "albumen's": [], + "Helvetius": ["M"], + "Inuit's": [], + "coolness": ["M"], + "indexed": [], + "adventuress's": [], + "Dorothea's": [], + "binges": [], + "shamelessness's": [], + "arborvitaes's": [], + "histories's": [], + "dangler's": [], + "overuse's": [], + "apologizinged": [], + "gavotte'ses": [], + "miniaturist's": [], + "ibises": [], + "brutalizinged": [], + "disreembody": [], + "Harrell's": [], + "remainder's": [], + "whee": [], + "potassium": ["M"], + "waterboarded": [], + "Borodin": ["M"], + "Lamentations": [], + "sojourned": [], + "lase": ["Z", "G", "D", "R", "S"], + "falsifiesers": [], + "Bunsen's": [], + "trembles's": [], + "Amos": ["M"], + "houris": [], + "thou": ["M", "S"], + "glumness": ["M"], + "outpacinged": [], + "malnutrition's": [], + "voice's": [], + "filtrate's": [], + "murmurous": [], + "dyslexic": ["S", "M"], + "aphoristically": [], + "systematizinged": [], + "emulsion": ["M", "S"], + "lugubriously": [], + "causticity's": [], + "roadblocks": [], + "shortstop'ses": [], + "mildews's": [], + "competitiveness's": [], + "antimacassars": [], + "implodesing": [], + "renege": ["D", "R", "S", "Z", "G"], + "niggardliness": ["M"], + "Irving": ["M"], + "perching": [], + "profaneness's": [], + "daddy": ["S", "M"], + "behold": ["N", "R", "Z", "G", "S"], + "scrunch": ["M", "D", "S", "G"], + "Quisling's": [], + "voiced": ["U"], + "depilatory": ["S", "M"], + "Tania's": [], + "blessinged": [], + "sidebars's": [], + "reacquire": ["D", "S", "G"], + "craze'sing": [], + "truths": ["U"], + "boreder": [], + "scrupled": [], + "moat'sed": [], + "noncontributory": [], + "cruelties's": [], + "mimeographing's": [], + "totalitarian's": [], + "woollies's": [], + "acquired": [], + "PGP": [], + "Mons's": [], + "stripped": [], + "handset": ["S", "M"], + "stiffen": ["Z", "G", "D", "R"], + "No": ["S", "M"], + "penetration's": [], + "Steinway's": [], + "befits": [], + "reflections": [], + "accountants": [], + "subtractings": [], + "baptist": ["S"], + "jettisoning": [], + "orphanages": [], + "innocence's": [], + "understanding's": [], + "scuba'sed": [], + "periscopes": [], + "ripsens": [], + "blockhead": ["S", "M"], + "optician's": [], + "Schopenhauer's": [], + "beam": ["S", "G", "M", "D"], + "Sabrina's": [], + "invokesing": [], + "legerdemain": ["M"], + "unresponsive": [], + "sheepskin's": [], + "cavalcades": [], + "vocables": [], + "pollutioned": [], + "urbanely": [], + "intonation's": [], + "USSR's": [], + "ostentatious": ["Y"], + "gassing": ["C"], + "clambering": [], + "beebread": ["M"], + "dynamos's": [], + "Ismail": ["M"], + "dearer": [], + "theorists": [], + "Inc": [], + "recipes's": [], + "enfolding": [], + "spoonful's": [], + "substantiatesens": [], + "weeing": [], + "deputation'ses": [], + "terrarium": ["S", "M"], + "cover's": [], + "necessitatesing": [], + "legitimizeds": [], + "consonance's": [], + "practicably": [], + "thumps's": [], + "RFD": [], + "parapsychology": ["M"], + "chapattis": [], + "suggestiveness": ["M"], + "Rubicons": [], + "Topeka": ["M"], + "irregular": ["M", "Y", "S"], + "tutorship's": [], + "Koppel's": [], + "ballots's": [], + "basesment": [], + "lucrativeness's": [], + "Asian'ses": [], + "robinged": [], + "flax'sen": [], + "continuance's": [], + "compensate": ["D", "S", "X", "G", "N"], + "Hutu's": [], + "jumble'sing": [], + "Naples": ["M"], + "squads's": [], + "salience": ["M"], + "embezzlers": [], + "inflate": ["D", "S", "G", "N", "B"], + "okra'ses": [], + "causeway's": [], + "egg": ["G", "S", "M", "D"], + "mitering": [], + "radiogram": ["M", "S"], + "scouting": ["M"], + "onrush's": [], + "intellectualizes": [], + "piece's": [], + "boilers": [], + "XL's": [], + "doth": [], + "locution'ses": [], + "pus": ["M"], + "doers": [], + "noncombatant'ses": [], + "executionsing": [], + "rushed": [], + "Halon": ["M"], + "soap's": [], + "exemplary": [], + "Ramayana": ["M"], + "famed": [], + "jowl's": [], + "lusters": [], + "antique": ["D", "S", "M", "G"], + "ulsters": [], + "coquettes's": [], + "grayeder": [], + "smokehouse": ["M", "S"], + "readmission": [], + "cabinetwork's": [], + "dart'sed": [], + "runts": [], + "backwoods": ["M"], + "valedictory's": [], + "garnishingment": [], + "geocache": ["D", "S", "G"], + "tumor": ["S", "M"], + "contenteding": [], + "limiteder": [], + "lane'ses": [], + "fallacy's": [], + "wallflower'ses": [], + "castellated": [], + "lite": [], + "hushed": [], + "suffixed": [], + "ceilidhs": [], + "cobble'sers": [], + "dislodgeds": [], + "sneak": ["S", "M", "D", "R", "Z", "G"], + "calculi": [], + "sidetrack's": [], + "forgivable": ["U"], + "Carlo'ses": [], + "necessitate": ["D", "S", "G"], + "cleansers": [], + "tatsers": [], + "bream's": [], + "stairway'ses": [], + "litter": ["M", "D", "R", "S", "Z", "G"], + "guilelessness": ["M"], + "toothbrush'ses": [], + "legible": [], + "ossifies": [], + "compliment's": [], + "pacemakers's": [], + "blubbers": [], + "windshield's": [], + "donnybrooks": [], + "Latvia": ["M"], + "signet": ["M", "S"], + "Lubbock's": [], + "mark's": [], + "snorkeling": ["M"], + "suppuratesing": [], + "statelier": [], + "guffawed": [], + "vitiateds": [], + "inhalant's": [], + "Rosalie": ["M"], + "Weierstrass's": [], + "chock'sed": [], + "elvers": [], + "prisons": [], + "yearnings": [], + "afternoon'ses": [], + "phreaking": [], + "Ellison": ["M"], + "fusspot": ["S", "M"], + "cellophane's": [], + "confidentiality's": [], + "inarticulate": ["Y"], + "Jovian's": [], + "Lubumbashi's": [], + "programming": ["S", "M"], + "imputesing": [], + "relationship's": [], + "angel": ["M", "S"], + "semitropical": [], + "stipulated": [], + "terabyte's": [], + "giveback's": [], + "chirp": ["G", "M", "D", "S"], + "engine's": [], + "Cerenkov": ["M"], + "parascending": [], + "Czech's": [], + "Rolvaag": ["M"], + "marathoners": [], + "oceangoing": [], + "brocades's": [], + "checkerboard's": [], + "scrambler's": [], + "leisureliness's": [], + "speakers": [], + "intercoms's": [], + "oceanfronts": [], + "masquerade's": [], + "dibbles's": [], + "polytechnic'ses": [], + "lipped": [], + "chloroformsing": [], + "fro": [], + "devotee": ["S", "M"], + "stubbing": [], + "tomahawking's": [], + "forestalling": [], + "paradoxical": ["Y"], + "formation": ["C", "F", "A", "S", "M"], + "puckereding": [], + "laureateship": ["M"], + "piecrust": ["S", "M"], + "oviparous": [], + "coalesced": [], + "wickeder": [], + "Lily's": [], + "yolked": [], + "Espinoza's": [], + "fiction": ["M", "S"], + "headeder": [], + "molybdenum's": [], + "discourageds": [], + "pedestrians's": [], + "Vlaminck's": [], + "sweeps": [], + "apostatizes": [], + "Keisha's": [], + "Louisianian": ["M", "S"], + "emendeding": [], + "blenching": [], + "unshapely": [], + "chilliness": ["M"], + "cleanable": [], + "rivalsing": [], + "serology's": [], + "clay": ["M"], + "tilde's": [], + "jowly": ["T", "R"], + "razorbacks": [], + "livery's": [], + "remotes": [], + "policeds": [], + "engagements": [], + "federates": [], + "mud": ["M"], + "Molly": ["M"], + "curtsied": [], + "Resurrection": [], + "rapeseed": ["M"], + "Anchorage's": [], + "celibates": [], + "adduced": [], + "misalignment's": [], + "rang": ["Z", "R"], + "Poirot's": [], + "fontanel'ses": [], + "oversleep": ["G", "S"], + "assembled": [], + "homo": ["M", "S"], + "receptionists": [], + "corroboratory": [], + "boxen": [], + "storming": [], + "equines's": [], + "dollars": [], + "comfort'sed": [], + "taxer's": [], + "hundredths": [], + "other": ["M", "S", "P"], + "sheriff's": [], + "friend": ["U", "G", "S", "D", "Y"], + "divers": [], + "multicultural": [], + "frizzing": [], + "ingenuous": ["E", "Y"], + "ersatz": ["M", "S"], + "tickles's": [], + "gasometers": [], + "accumulates": [], + "dwindling": [], + "perens": [], + "pesticide's": [], + "wazoo": ["S"], + "densely": [], + "fetishist": ["S", "M"], + "bylaw's": [], + "literacy's": [], + "universal's": [], + "tipples's": [], + "boon's": [], + "arbiter": ["S", "M"], + "processors": [], + "hawing": [], + "factorization": [], + "nose": ["M", "G", "D", "S"], + "lupine's": [], + "taxers": [], + "Gladstone'ses": [], + "adorer": ["M"], + "mesospheres's": [], + "Norseman": ["M"], + "meliorateds": [], + "mutagen's": [], + "friskiness's": [], + "gait's": [], + "diacritic'ses": [], + "kroner's": [], + "assuredly": [], + "towheadeds": [], + "weatherperson's": [], + "Demavend's": [], + "globalizeds": [], + "wiriest": [], + "angered": [], + "skylines's": [], + "champion": ["G", "M", "D", "S"], + "Leavenworth's": [], + "bondholder's": [], + "wavelet's": [], + "verity's": [], + "evangelist's": [], + "cooperatively": [], + "gloominess": ["M"], + "sandstone": ["M"], + "factorizes": [], + "Americanization's": [], + "Palmerston's": [], + "manifesto": ["S", "M"], + "impendeding": [], + "bookshops": [], + "tannery's": [], + "coarseness's": [], + "schwa": ["M", "S"], + "faddy": ["P"], + "Mead's": [], + "beefsteaks": [], + "ashlar's": [], + "Gewurztraminer's": [], + "outargues": [], + "Percival's": [], + "lovers": [], + "keynoteder": [], + "lauds": [], + "habitability": ["M"], + "lefter": [], + "impenitent": ["Y"], + "Harding's": [], + "tritenessly": [], + "gunwale'ses": [], + "sizing's": [], + "nonconformist's": [], + "relation": ["M"], + "artistes": [], + "predesignatinged": [], + "rabbis's": [], + "fifty's": [], + "Cozumel's": [], + "ambulatories's": [], + "flunked": [], + "loadsed": [], + "minimalist'ses": [], + "goriest": [], + "fables": [], + "posers's": [], + "Hungary's": [], + "Thomson": ["M"], + "ousted": [], + "Nigel": ["M"], + "dauntlessness": ["M"], + "carve": ["J", "Z", "G", "D", "R", "S"], + "galactic": [], + "fastener": ["S", "M"], + "lockable": [], + "deviating": ["U"], + "approvinged": [], + "Massenet's": [], + "cruel": ["R", "Y", "P", "T"], + "sarsaparilla'ses": [], + "clerestories": [], + "ratbags": [], + "salutary": [], + "epidermis'ses": [], + "Airedale": ["M", "S"], + "yachteding": [], + "decoration's": [], + "duress's": [], + "dampen": ["Z", "G", "D", "R"], + "invariable": [], + "limiters": [], + "cherishes": [], + "nightgowns's": [], + "sago's": [], + "defect's": [], + "accumulations": [], + "risersing": [], + "automobiled": [], + "Themistocles's": [], + "Amazon's": [], + "ergonomically": [], + "lynxes": [], + "salient'sly": [], + "opener": ["M"], + "L's": [], + "meteors": [], + "ironies's": [], + "physiotherapy": ["M"], + "Georgia": ["M"], + "squats's": [], + "projection": ["S", "M"], + "romanticizeds": [], + "delinquently": [], + "entitlingment": [], + "atom's": [], + "leafier": [], + "Rommel": ["M"], + "bomb": ["S", "J", "Z", "G", "M", "D", "R"], + "frustums": [], + "Conservative": [], + "deceptiveness": ["M"], + "actives": [], + "pounds": [], + "comeback'ses": [], + "refreshers": [], + "solaced": [], + "bilingualism": ["M"], + "jewel's": [], + "undecided": ["S", "M"], + "lesson's": [], + "proof": ["A", "D", "G", "S", "M"], + "yew's": [], + "engagement": ["E", "M", "S"], + "leveragesing": [], + "maraschinos": [], + "lymphatics's": [], + "roughen": ["G", "D"], + "tawdriness": ["M"], + "Tweed": ["M"], + "muck": ["M", "D", "S", "G"], + "potato's": [], + "chargers's": [], + "brisking": [], + "jr": [], + "frigid": ["Y", "P"], + "histologists's": [], + "overstateds": [], + "abuts": [], + "Jennifer": ["M"], + "preoccupies": [], + "Abbas's": [], + "declaim": [], + "Hobbes's": [], + "beefsteak's": [], + "lichen's": [], + "macaroni's": [], + "side's": [], + "embrasure'ses": [], + "encrypts": [], + "colludesing": [], + "nephritis": ["M"], + "bowlful's": [], + "purple": ["M", "T", "R", "S"], + "bonito's": [], + "poincianas's": [], + "repentantly": [], + "purse'sers": [], + "prenuptial": [], + "personage'ses": [], + "pack": ["A", "U", "G", "S", "D"], + "illegals": [], + "saltiest": [], + "counterblast": ["S"], + "rattier": [], + "trusting's": [], + "bayous": [], + "intellectualizinged": [], + "gruesomest": [], + "conformer": [], + "puss's": [], + "cosmological": [], + "recidivist": ["S", "M"], + "pretentious": ["U", "Y"], + "transnational": ["M", "S"], + "Alisa": ["M"], + "muggins": [], + "beneath": [], + "chiminged": [], + "xxxviii": [], + "follicle": ["M", "S"], + "shirrsings": [], + "carports": [], + "enormousnessly": [], + "ink'sed": [], + "Jo's": [], + "arrayeds": [], + "squats": [], + "eels's": [], + "snowshoe": ["S", "M"], + "chaireds": [], + "kopeck's": [], + "netherworld": ["M"], + "tony": ["R", "T"], + "weight's": [], + "tensor": ["S"], + "septal": [], + "waspishliness": [], + "wobbly": ["R", "T", "P"], + "medicationens": [], + "filtered": ["U"], + "maximization": ["M"], + "knell'sed": [], + "Steele's": [], + "confidant": ["M", "S"], + "androgyny's": [], + "rhetoric's": [], + "Bernays": ["M"], + "mummery's": [], + "single's": [], + "Tashkent": ["M"], + "copilots's": [], + "coat": ["M", "D", "G", "J", "S"], + "Vallejo": [], + "tuns": [], + "Jehoshaphat": ["M"], + "toboggans": [], + "heaves's": [], + "guttering": [], + "amide'ses": [], + "microwaveds": [], + "township'ses": [], + "esophagus's": [], + "chihuahuas's": [], + "gleanersing": [], + "stressed": ["U"], + "goddesses": [], + "clomped": [], + "afforestsed": [], + "pilchard": ["M", "S"], + "Nikkei's": [], + "landeder": [], + "colossi": [], + "blurb's": [], + "moire": ["S", "M"], + "Amparo": ["M"], + "Boas": ["M"], + "hammier": [], + "desired": ["U"], + "Gina's": [], + "treat": ["A", "G", "S", "M", "D"], + "sheepfold's": [], + "crematingen": [], + "embroideries": [], + "cinemas": [], + "endemically": [], + "divination": ["M"], + "birds": [], + "isolate": ["D", "S", "M", "G", "N"], + "undernourishment's": [], + "bloused": [], + "salutatory": [], + "stagnateds": [], + "dabbled": [], + "davit": ["M", "S"], + "hart'ses": [], + "glaceing": [], + "gladioli": [], + "Niobe": ["M"], + "rogereds": [], + "ken's": [], + "clowns's": [], + "stupidlies": [], + "Churchill": ["M"], + "segue's": [], + "Chuck's": [], + "array": ["E", "G", "M", "D", "S"], + "globes's": [], + "arbiters's": [], + "shiploads": [], + "bimbo": ["M", "S"], + "hairbrush": ["M", "S"], + "blagged": [], + "backfield's": [], + "farsightedness's": [], + "dailies's": [], + "impugnings": [], + "detoxifies": [], + "clonked": [], + "benzyl": [], + "libido": ["M", "S"], + "Harriet's": [], + "educating": [], + "FSLIC": [], + "allocations": [], + "hilt": ["M", "S"], + "calcificationed": [], + "rubbers": [], + "vote": ["C", "G", "V", "D", "S"], + "Novosibirsk": ["M"], + "pimples": [], + "preachiest": [], + "trendy'sness": [], + "Episcopalian's": [], + "Nivea's": [], + "tack": ["Z", "G", "M", "D", "R", "S"], + "audible'ses": [], + "variegating": [], + "unsounderly": [], + "sporteding": [], + "shovel'sed": [], + "Savonarola": ["M"], + "demigoddess'ses": [], + "penciling": [], + "rally": ["D", "S", "M", "G"], + "peritoneal": [], + "succor'sed": [], + "woodiers": [], + "polymerizeds": [], + "bridleways": [], + "remaindering": [], + "banjoist": ["S", "M"], + "nest'sed": [], + "fulfillment's": [], + "orris'ses": [], + "selenographer": ["M", "S"], + "metacarpi": [], + "undercurrent's": [], + "hotboxes": [], + "cordite": ["M"], + "factor's": [], + "decimation's": [], + "pound": ["K", "D", "S", "G"], + "wildebeest's": [], + "blondness's": [], + "quick's": [], + "reefs": [], + "imbrication": ["M"], + "accruals": [], + "codfish's": [], + "toll'sed": [], + "broils's": [], + "trustiest": [], + "craft's": [], + "absorbed": [], + "scaring": [], + "mutterings's": [], + "dodgems": [], + "concretion's": [], + "smartwatch'ses": [], + "perambulator's": [], + "befouls": [], + "chromosome'ses": [], + "expropriateds": [], + "schussboomer's": [], + "chapter": ["S", "M"], + "Burt": ["M"], + "varsities": [], + "motherliness": ["M"], + "followsed": [], + "orbited": [], + "resection": [], + "Anglicanism'ses": [], + "ganglionic": [], + "disrobe": [], + "halfwits's": [], + "infirmities's": [], + "injections": [], + "swankiness's": [], + "buzzersing": [], + "quadrature": [], + "brimstone's": [], + "quilteder": [], + "estrangement'ses": [], + "speedster": ["S", "M"], + "conservancy": ["S", "M"], + "Tuscany": ["M"], + "religious'sly": [], + "nourish": ["D", "S", "L", "G"], + "Goudas's": [], + "preparatory": [], + "carver": ["M"], + "landscaper": ["M"], + "supplicationsen": [], + "dreadlocks's": [], + "radicals's": [], + "navigateds": [], + "wind's": [], + "peat": ["M"], + "Episcopalians": [], + "mercurially": [], + "jelleds": [], + "pearlsing": [], + "outplaying": [], + "jingles's": [], + "Beretta's": [], + "noise's": [], + "oilcans": [], + "Transcaucasia's": [], + "doyen": ["S", "M"], + "salivate": ["G", "N", "D", "S"], + "repulse": [], + "disableds": [], + "unrealized": [], + "icebergs's": [], + "utilizes": [], + "perpendicularly": [], + "land": ["M", "D", "R", "S", "G", "J"], + "yuckiest": [], + "intercessory": [], + "swirl's": [], + "roached": [], + "binder's": [], + "blackberries's": [], + "doorkeeper's": [], + "planners's": [], + "Holocene's": [], + "awakes": [], + "taxersing": [], + "solaces's": [], + "ministrant": ["M", "S"], + "rustlings": [], + "spoil's": [], + "furbishing": [], + "runtier": [], + "layoffs's": [], + "chatroom's": [], + "redactsed": [], + "Grieg": ["M"], + "cockcrows's": [], + "saga": ["M", "S"], + "thermodynamic": ["S"], + "currycombing": [], + "constituencies's": [], + "kipper's": [], + "undershirt's": [], + "abstinence's": [], + "redcurrant": ["S"], + "Perls": [], + "footplates": [], + "chomping's": [], + "Weaver's": [], + "possessors's": [], + "rounds's": [], + "Mississippians": [], + "overhearing": [], + "Tulsidas's": [], + "skiver": [], + "Sinclair's": [], + "chattering": [], + "boogeymen": [], + "dampened": [], + "submersion's": [], + "chances": [], + "yucca's": [], + "headstones": [], + "weathering's": [], + "archetypes": [], + "watercourses": [], + "check": ["A", "G", "M", "D", "S"], + "waitersing": [], + "trauma's": [], + "distressingly": [], + "undoes": [], + "Chevalier": ["M"], + "bowlegged": [], + "headmen": [], + "observatories's": [], + "dolt": ["M", "S"], + "lazyingness": [], + "Maytag's": [], + "park's": [], + "submissivenessly": [], + "skivvy'sing": [], + "bilge'ses": [], + "mimosas's": [], + "enacts": [], + "spelldown": ["S", "M"], + "nunnery": ["S", "M"], + "guidance's": [], + "harkings": [], + "grungy": ["R", "T"], + "es": [], + "Northrup": ["M"], + "tug": ["S", "M"], + "baobab's": [], + "ciphering": [], + "lithographic": [], + "pale's": [], + "alcohol": ["S", "M"], + "Bostonian": ["M"], + "thirteens's": [], + "autoworker": ["M", "S"], + "nucleation's": [], + "ambergris": ["M"], + "bucketsing": [], + "promiscuity's": [], + "granduncles's": [], + "sun": ["S", "M"], + "caitiffs": [], + "enplane": ["D", "S", "G"], + "Constantine's": [], + "telegraphese": [], + "necessarily": ["U"], + "fillip's": [], + "demurely": [], + "boardwalk": ["M", "S"], + "Spica's": [], + "worthlessly": [], + "brilliant": ["M", "Y", "S"], + "cabled": [], + "inauthentic": [], + "cadavers's": [], + "altarpieces's": [], + "bearing": ["M"], + "reveled": [], + "churned": [], + "duelingsers": [], + "airmails's": [], + "Esperanza's": [], + "Ziegler's": [], + "inquiries": [], + "peritoneum's": [], + "mattersing": [], + "masterpiece's": [], + "fifth's": [], + "Susie": ["M"], + "inevitable's": [], + "reprimand's": [], + "uprearsed": [], + "Thunderbird": ["M"], + "herbivores": [], + "nuggets": [], + "contradictions's": [], + "Nam's": [], + "unfairer": [], + "Hannibal": ["M"], + "paperers": [], + "finicky": ["R", "P", "T"], + "plight's": [], + "eggcups's": [], + "chloroforms": [], + "flatting": [], + "vibe": ["M", "S"], + "nickel's": [], + "vividerly": [], + "solicit": ["G", "D", "S"], + "splint's": [], + "Derrida": ["M"], + "Columbine": ["M"], + "brisksed": [], + "Faustus's": [], + "executioner": ["M"], + "outcast": ["M", "S"], + "vigilante's": [], + "lustrously": [], + "squall": ["S", "G", "M", "D"], + "cartography": ["M"], + "jockeying": [], + "transit": ["S", "G", "M", "D"], + "evacuateds": [], + "alleviated": [], + "condescension's": [], + "laboratory": ["S", "M"], + "Gotham's": [], + "sinners": [], + "grids": [], + "freewheeleding": [], + "looses": [], + "containmented": [], + "mechanistic": [], + "plenum": ["S"], + "exalting": [], + "contagiousness": ["M"], + "York": ["M"], + "Edwin's": [], + "hams's": [], + "imperilment": ["M"], + "cotillion's": [], + "hurdles": [], + "orifice": ["M", "S"], + "propagation's": [], + "Ofelia's": [], + "eyewash": ["M"], + "spires": [], + "Ac": ["M"], + "Delicious": ["M"], + "seeping": [], + "Hellenism'ses": [], + "psychics": [], + "existence'ses": [], + "Catherine": ["M"], + "Arminius": ["M"], + "Froissart": ["M"], + "oversensitive": ["P"], + "entomological": [], + "Zagreb": ["M"], + "cultism's": [], + "spaghetti": ["M"], + "regurgitation's": [], + "Dominique's": [], + "insurrectionists's": [], + "yokinged": [], + "broadlications": [], + "woefulness's": [], + "fermentation": ["M"], + "peccadillo's": [], + "pope": ["M", "S"], + "Hemingway's": [], + "rattlebrain's": [], + "alienateds": [], + "expanding": [], + "divertsed": [], + "filthily": [], + "amulet's": [], + "farads's": [], + "lisped": [], + "reclined": [], + "objective'sly": [], + "Horton": ["M"], + "Lora": ["M"], + "hangup'ses": [], + "abruptness's": [], + "pharmacologic": [], + "cosponsor": ["G", "S", "M", "D"], + "trammel'sed": [], + "clopped": [], + "junior's": [], + "quintessential": ["Y"], + "nuke'sing": [], + "complaisance": ["M"], + "jellos": [], + "Alberio": ["M"], + "novice's": [], + "mudslides": [], + "ecclesiastic's": [], + "vainglory": ["M"], + "organza's": [], + "shellfish'ses": [], + "Soyinka": ["M"], + "moron's": [], + "housefly": ["S", "M"], + "Samson's": [], + "checkup's": [], + "hived": [], + "virtually": [], + "speeches": [], + "roundelay": ["M", "S"], + "oversell": ["G", "S"], + "spheroids": [], + "Hay": ["S", "M"], + "combings's": [], + "antiphonallies": [], + "etude's": [], + "elephant": ["S", "M"], + "canal's": [], + "Hades's": [], + "Gwendoline's": [], + "espalier'sed": [], + "Novartis": ["M"], + "forced": ["U"], + "hawkish": ["P"], + "plenary's": [], + "lewdest": [], + "progresses": [], + "haughtinesser": [], + "precisers": [], + "woods": ["M"], + "warts": [], + "icicles's": [], + "awakings": [], + "reincite": [], + "Deloris": ["M"], + "sprierly": [], + "foundations": [], + "telemeter's": [], + "Hallstatt's": [], + "gigabits's": [], + "statehouses": [], + "Norfolk's": [], + "eyeballed": [], + "poultices's": [], + "raversing": [], + "tintinnabulations": [], + "extra's": [], + "engulfinged": [], + "steeleding": [], + "wattlinged": [], + "pennyworth": [], + "lingerie's": [], + "taskmaster": ["M", "S"], + "Miriam": ["M"], + "iambics": [], + "groupie'ses": [], + "attenuateds": [], + "dielectric": ["M", "S"], + "prompt's": [], + "Cuba": ["M"], + "restfulness": ["M"], + "semaphore's": [], + "hailstone's": [], + "Missourian's": [], + "recuse": ["D", "S", "G"], + "ups": [], + "sideman's": [], + "hotel's": [], + "Guyana": ["M"], + "renegeder": [], + "spurns": [], + "liaise": ["G", "D", "S"], + "rustication's": [], + "mossback's": [], + "basinfuls": [], + "Blondie's": [], + "alloying": [], + "elopement's": [], + "breakage": ["M", "S"], + "bunt's": [], + "abstention's": [], + "rumbles": [], + "fondling": [], + "crosscuts's": [], + "capitalistically": [], + "archduke'ses": [], + "Franglais": ["M"], + "nougat": ["M", "S"], + "souring": [], + "traditionalism's": [], + "vanity's": [], + "distinctions": [], + "noticeable": ["U"], + "cartilage": ["S", "M"], + "heroes": [], + "epilepsy's": [], + "cotillions": [], + "Sampson": ["M"], + "7": ["n", "m"], + "pullovers": [], + "Knudsen": ["M"], + "sneak'sed": [], + "behind'ses": [], + "withdraws": [], + "fringe's": [], + "pout'sed": [], + "neophyte's": [], + "honeybees's": [], + "egotists": [], + "get": ["S"], + "scintillation": ["M"], + "sunnierness": [], + "mezzo's": [], + "grandnephew's": [], + "stunk": [], + "admissions": [], + "tattooer": ["M"], + "Putin": ["M"], + "regurgitated": [], + "scarcely": [], + "Bultmann": ["M"], + "Parmesans": [], + "cantor'ses": [], + "regenerative": [], + "demanding's": [], + "aircraft": ["M"], + "porn's": [], + "banisheds": [], + "gnomes's": [], + "Hieronymus's": [], + "interlink": ["D", "S", "G"], + "hemming": [], + "tenpin": ["S", "M"], + "America's": [], + "oncogenes": [], + "stat": ["M", "S"], + "hauntingly": [], + "hippies": [], + "pythons's": [], + "banker's": [], + "degeneration": [], + "meanwhile's": [], + "mandibles": [], + "orgy": ["S", "M"], + "birdbrain": ["S", "M", "D"], + "Guineans": [], + "formic": [], + "entity": ["S", "M"], + "dragging": [], + "spectateds": [], + "Sui's": [], + "Edgar": ["M"], + "senders": [], + "watch's": [], + "wager": ["Z", "G", "M", "D", "R"], + "panegyric's": [], + "crossbars": [], + "Enoch": ["M"], + "goad's": [], + "shoddinesser": [], + "Iranians": [], + "ineptitude": ["M"], + "tagline's": [], + "ranch's": [], + "footballs": [], + "backbone's": [], + "sheer": ["M", "D", "R", "S", "P", "T", "G"], + "ghostwrites": [], + "apostatizinged": [], + "comelierness": [], + "hacker's": [], + "Jersey": ["M", "S"], + "lifeboat's": [], + "tortoise": ["M", "S"], + "Brahmanisms": [], + "collected": ["U"], + "Pechora's": [], + "saute's": [], + "ouzos": [], + "alphabet's": [], + "accusative": ["M", "S"], + "children": ["M"], + "quicklime's": [], + "Domitian": ["M"], + "bloated": [], + "Skinner's": [], + "biographically": [], + "defogger's": [], + "canoodled": [], + "countervailing": [], + "doubt": ["S", "M", "D", "R", "Z", "G"], + "adopt": ["A", "G", "V", "D", "S"], + "propagandize": ["G", "D", "S"], + "premiere'ses": [], + "ABMs's": [], + "clunks": [], + "placekicker's": [], + "Bobbie's": [], + "narration": ["M"], + "frivolous": ["P", "Y"], + "hotel": ["S", "M"], + "Feynman": ["M"], + "trudge's": [], + "electrocardiography": ["M"], + "destructiveness's": [], + "swanks": [], + "fags": [], + "gargled": [], + "Myrdal's": [], + "Reformation'ses": [], + "Brubeck": ["M"], + "hemmers's": [], + "halo": ["M", "D", "G", "S"], + "venture'sing": [], + "nun": ["S", "M"], + "jeer'sed": [], + "Rockefeller's": [], + "priory's": [], + "gullsing": [], + "rage'ses": [], + "department": ["M", "S"], + "Roxy": ["M"], + "wringing's": [], + "kill'sed": [], + "marathon'ser": [], + "Afro": ["S", "M"], + "Dustbuster's": [], + "lawlessly": [], + "caftan's": [], + "extinguisher's": [], + "cowrie": ["S", "M"], + "unholiness": [], + "plowman": ["M"], + "paperclip": ["S"], + "embargoed": [], + "jauntierness": [], + "disputeder": [], + "carbonizeds": [], + "halfheartedness's": [], + "label's": [], + "brigadiers": [], + "Dickens's": [], + "traumas": [], + "battlemented": [], + "malcontent": ["M", "S"], + "Bourbons": [], + "pothered": [], + "bl": ["D", "G"], + "nonrefillable": [], + "outlineds": [], + "magnate": ["S", "M"], + "Purus": ["M"], + "demonology": ["S", "M"], + "shorebirds": [], + "Windhoek's": [], + "soapstone": ["M"], + "dazzlersing": [], + "brandies": [], + "quarrel'sed": [], + "oxidation's": [], + "alliteratingen": [], + "seersucker's": [], + "ambiguities": [], + "victimizing": [], + "countdown'ses": [], + "jubilee's": [], + "civilly": [], + "hatchway": ["S", "M"], + "redemption": ["M"], + "cinctures": [], + "devilingment": [], + "emissions": [], + "diplomatist'ses": [], + "rawhide's": [], + "thirteenths": [], + "Tuskegee's": [], + "whitefish's": [], + "cackling": [], + "dunderhead'ses": [], + "airplay's": [], + "eiderdown": ["M", "S"], + "nonfiction's": [], + "lively": ["P", "R", "T"], + "cowl": ["M", "G", "S", "J"], + "kilocycle": ["S", "M"], + "fastballs": [], + "presenter's": [], + "expedites": [], + "sperms": [], + "ceremoniously": [], + "sealskin's": [], + "demoting": [], + "grandstanding": [], + "printing": ["S", "M"], + "adieu": ["M", "S"], + "correlate": ["X", "D", "S", "M", "G", "N", "V"], + "smokestack's": [], + "alterations": [], + "splotchier": [], + "mugger's": [], + "turrets's": [], + "thought": ["S", "M"], + "Verdi's": [], + "totalities": [], + "stipples": [], + "supported": ["U"], + "whole's": [], + "sawflies": [], + "demonstrable": ["I"], + "autobiographical": ["Y"], + "hurdle's": [], + "spellbindersing": [], + "hyperventilating": [], + "team": ["G", "M", "D", "S"], + "transectsing": [], + "discoverer's": [], + "mess'sed": [], + "hips": [], + "belieds": [], + "youthfully": [], + "lifetime's": [], + "arraignings": [], + "lettuces": [], + "Bean's": [], + "acids": [], + "dissensions": [], + "prairie's": [], + "clerkship": ["M"], + "guardian": ["S", "M"], + "Octavia's": [], + "hardihood": ["M"], + "obduratenessly": [], + "count's": [], + "aversions": [], + "guilelessly": [], + "portable": ["M", "S"], + "Golda's": [], + "spouses": [], + "petrologists": [], + "foamier": [], + "woodenerly": [], + "drummer's": [], + "Daisy": ["M"], + "blivet": ["S"], + "alcohols": [], + "maladroitness's": [], + "simonizing": [], + "syllabus'ses": [], + "attentivenessly": [], + "whatchamacallit": ["M", "S"], + "sparkler's": [], + "sequenced": [], + "devastateds": [], + "seeders": [], + "cartooned": [], + "prepossessing": ["U"], + "nameless": ["Y"], + "gourds": [], + "sentimentalization's": [], + "verifiesen": [], + "stigmatized": [], + "reactant's": [], + "Freemason": ["S", "M"], + "submarinerser": [], + "mahatma": ["S", "M"], + "tailcoat": ["M", "S"], + "brainstormed": [], + "ministersing": [], + "redoes": [], + "firehouse": ["S", "M"], + "Boeing": ["M"], + "leachesing": [], + "woodcocks's": [], + "jinks": [], + "Walpole": ["M"], + "hotfoots": [], + "calmeder": [], + "austerity": ["S", "M"], + "rectangle": ["M", "S"], + "acyl": [], + "encrusted": [], + "frantic": [], + "rightism's": [], + "Holland": ["Z", "S", "M", "R"], + "Wuhan's": [], + "strikebreaking": [], + "discuss": [], + "Listerine's": [], + "felicitation's": [], + "grogginess's": [], + "brutalization": ["M"], + "Fernandez": ["M"], + "chalices's": [], + "exchequer's": [], + "lord'sed": [], + "assuaginged": [], + "Rachelle's": [], + "Paula": ["M"], + "Euclid's": [], + "granddads": [], + "Congo": ["M"], + "crook'sed": [], + "Tunis's": [], + "gasoline": ["M"], + "tease": ["M", "Z", "G", "D", "R", "S"], + "constructors": [], + "stultifying": [], + "popularization's": [], + "gateposts": [], + "rainstorm": ["M", "S"], + "quarters": [], + "inhibitors": [], + "desktops's": [], + "twill": ["M", "D"], + "mash's": [], + "Capablanca's": [], + "deerstalkers": [], + "Cadiz": ["M"], + "hashed": [], + "games": [], + "readily": [], + "beclouded": [], + "compacter": [], + "indiscreetly": [], + "appearsed": [], + "mopish": [], + "Tell's": [], + "Marduk's": [], + "LAN": ["M"], + "mouthed": [], + "criminologist's": [], + "substrate'ses": [], + "affinities's": [], + "Jacksonville's": [], + "solders": [], + "skyjacking": ["M"], + "trapeze's": [], + "Yalu's": [], + "gore'sing": [], + "middies": [], + "Mafia's": [], + "madame": ["M"], + "prejudgments": [], + "inconvenient": [], + "Ming's": [], + "upraises": [], + "Sindbad's": [], + "inquiries's": [], + "gadabout's": [], + "cove": ["M", "S"], + "Gujranwala's": [], + "transmitting": [], + "slickness's": [], + "egalitarians's": [], + "princeliest": [], + "smolders": [], + "grill's": [], + "furbelow's": [], + "whackeder": [], + "pardoneder": [], + "briskeder": [], + "stagger'sed": [], + "carefree": [], + "extrapolationed": [], + "pockmark": ["M", "D", "G", "S"], + "entomologists": [], + "blacklies": [], + "communities": [], + "unyoke": [], + "poodle": ["S", "M"], + "recidivist's": [], + "Imelda's": [], + "funds": [], + "constant'sly": [], + "tarot's": [], + "comb": ["M", "D", "R", "Z", "G", "J", "S"], + "brutes": [], + "dinghy": ["S", "M"], + "East'ser": [], + "Little": ["M"], + "steeply": [], + "improbable": [], + "Ob": ["M"], + "wantoned": [], + "tastefully": [], + "Ganges": ["M"], + "revengeds": [], + "wider": [], + "liq": [], + "surcharge'sing": [], + "bleakly": [], + "Sacajawea": ["M"], + "Kenny's": [], + "curtailing": [], + "thirties's": [], + "Gray": ["M"], + "inculcatesing": [], + "malamute's": [], + "latitudinal": [], + "wanking": [], + "Paracelsus": ["M"], + "backlog'ses": [], + "toccatas": [], + "serenade": ["M", "G", "D", "S"], + "meteor's": [], + "talebearer": ["M", "S"], + "riptide": ["M", "S"], + "speculatesens": [], + "burrow's": [], + "definers": [], + "Halloween'ses": [], + "reopens": [], + "stave'sing": [], + "parliament's": [], + "allocateds": [], + "agonies's": [], + "depart": [], + "prevision": ["M", "S"], + "ovenbird": ["S", "M"], + "cruelty": ["S", "M"], + "nobble": ["G", "D", "S"], + "blubbered": [], + "romanced": [], + "unfulfilling": [], + "Ball's": [], + "cheerfulness": ["M"], + "clamberer's": [], + "idealization's": [], + "concisest": [], + "jihadist": ["S", "M"], + "stirring": ["S", "Y"], + "queer'sed": [], + "tonsils": [], + "dunderhead's": [], + "seemed": [], + "holiday's": [], + "inflationable": [], + "gate": ["M", "G", "D", "S"], + "rend": ["G", "S"], + "plywood's": [], + "resumption'ses": [], + "ostensible": [], + "barques's": [], + "epitaphs": [], + "volt'ses": [], + "dirtiness's": [], + "contemplative'sly": [], + "dairyman's": [], + "kept": [], + "animating": [], + "Bostons": [], + "erupts": [], + "vittles's": [], + "farrow's": [], + "typically": [], + "cantata'ses": [], + "standoffs": [], + "mewing's": [], + "intrusions": [], + "Washingtonians": [], + "summarizes": [], + "titillating": ["Y"], + "dumpsite": ["S"], + "healthfulnessly": [], + "innate": ["P", "Y"], + "rhesus'ses": [], + "tries": [], + "tidily": ["U"], + "scrutineers": [], + "V's": [], + "adding": [], + "radicalization": ["M"], + "trelliseds": [], + "relishing": [], + "lupus": ["M"], + "laddishness": [], + "productiveness's": [], + "dry": ["Z", "T", "G", "D", "R", "S", "M", "Y"], + "femurs's": [], + "bedpan's": [], + "Odyssey": ["M"], + "tippexed": [], + "Zelma's": [], + "hassocks": [], + "twigging": [], + "regrown": [], + "galvanization": ["M"], + "manacled": [], + "castsing": [], + "process's": [], + "Midwestern": ["M", "R"], + "needlessness's": [], + "wasabi": [], + "Kuznets": ["M"], + "caterpillar'ses": [], + "orgasmic": [], + "stickup": ["M", "S"], + "intimidatingly": [], + "cape": ["S", "M"], + "spectrum": ["M"], + "regulation's": [], + "civil": ["U", "Y"], + "abseilsing": [], + "hearing": ["A", "M"], + "frankingness": [], + "versifies": [], + "Jeremy": ["M"], + "particularizes": [], + "soapiness": ["M"], + "cosmonaut's": [], + "slashers": [], + "quotations's": [], + "MacArthur's": [], + "sportswomen": [], + "vitiationed": [], + "NJ": [], + "dadaism": ["M"], + "rewashing": [], + "hastening": [], + "blandness": ["M"], + "Pinter's": [], + "innovative": [], + "debouched": [], + "painter's": [], + "exempted": [], + "Sousa": ["M"], + "Bangui's": [], + "urologists": [], + "Poltava's": [], + "evaluation": ["A", "M"], + "desists": [], + "flattish": [], + "barfly's": [], + "shackles": [], + "fingernail": ["S", "M"], + "troves's": [], + "roughneck'sed": [], + "bradawl": ["S"], + "Gorbachev": ["M"], + "Bloomfield's": [], + "paintbox'ses": [], + "ivies": [], + "naffer": [], + "seminar's": [], + "exhortsed": [], + "economist's": [], + "unctuously": [], + "relocate": ["B"], + "hypocrites": [], + "complainers": [], + "automobiles's": [], + "Derrick": ["M"], + "concertsed": [], + "arithmetic": ["M"], + "cicerone": ["S", "M"], + "tiptoed": [], + "frogs": [], + "enlargeable": [], + "Fed's": [], + "separatelying": [], + "barn's": [], + "martinis": [], + "nun's": [], + "winterizing": [], + "porkier": [], + "sorter": ["S", "M"], + "idleness": ["M"], + "morn": ["M", "J", "S", "G"], + "Hans's": [], + "salveder": [], + "solidity": ["M"], + "triumvirates": [], + "toss's": [], + "goldsmiths": [], + "gummed": [], + "overheats": [], + "jacket": ["S", "M", "D"], + "Guinness": ["M"], + "paeans's": [], + "concert's": [], + "offensives": [], + "fellowship's": [], + "benefactors": [], + "palmists's": [], + "tremble'sing": [], + "iambuses": [], + "tropic": ["M", "S"], + "bleacher": ["M"], + "lightweights": [], + "aristocrats's": [], + "pretzel's": [], + "enamelsers": [], + "woodwind'ses": [], + "Burgundy's": [], + "infectiousnessly": [], + "malleable": [], + "approximated": [], + "graderses": [], + "balustrade's": [], + "Hayes": ["M"], + "Normand's": [], + "dyspeptic's": [], + "governments": [], + "monarchs": [], + "commutation": ["M", "S"], + "Ashley's": [], + "Andre's": [], + "interpolations": [], + "anything": ["S", "M"], + "piebald'ses": [], + "hots": ["M"], + "costuming": [], + "Spain": ["M"], + "ramifies": [], + "lengthiness's": [], + "druggist": ["S", "M"], + "vies": [], + "interruptersing": [], + "cushion's": [], + "saltboxes": [], + "haunch's": [], + "anchoring": [], + "bricking": [], + "Gatsby": ["M"], + "niceness's": [], + "hero": ["M"], + "Tamerlane": ["M"], + "jigger's": [], + "everybody's": [], + "adjured": [], + "foretasting": [], + "lodes": [], + "criminology": ["M"], + "swipeds": [], + "typecast": ["G", "S"], + "Kay": ["M"], + "fudge'sing": [], + "gadgets's": [], + "filamentous": [], + "landscape'sers": [], + "startups": [], + "probe'sing": [], + "embarkation's": [], + "tobogganer": ["M"], + "pigment": ["M", "D", "S"], + "prizewinner's": [], + "morbidity": ["M"], + "simplified": [], + "glower's": [], + "Perls's": [], + "bigmouths": [], + "crystallized": [], + "czar": ["M", "S"], + "strap": ["U", "S"], + "papillary": [], + "blob": ["S", "M"], + "stands": [], + "passkey'ses": [], + "unseen's": [], + "soling's": [], + "abominates": [], + "nightcaps's": [], + "videodiscs": [], + "merinos": [], + "prepuce's": [], + "Ragnarok": ["M"], + "sereneness's": [], + "oversold": [], + "abolishes": [], + "dividersing": [], + "lagoons": [], + "spots": [], + "huckleberry's": [], + "sustainsed": [], + "nonfood's": [], + "Stanley": ["M"], + "tetra": ["S", "M"], + "leaningsness": [], + "laudatory": [], + "gallstone's": [], + "downriver": [], + "doublespeak": ["M"], + "conscription's": [], + "revisionists": [], + "scow": ["M", "S"], + "stereotyping": [], + "articled": [], + "divisivenessly": [], + "Secretariat's": [], + "anniversaries's": [], + "breadline'ses": [], + "ninepin": ["M", "S"], + "stepmoms": [], + "automatically": [], + "sequester": ["S", "D", "G"], + "fieldwork": ["M", "R", "Z"], + "Es's": [], + "perforateds": [], + "realists's": [], + "preciser": [], + "rectum": ["S", "M"], + "insulation's": [], + "tightener": ["M"], + "immeasurably": [], + "internally": [], + "bicycler": ["M"], + "maltose's": [], + "shy'sly": [], + "muddleds": [], + "QWERTY": [], + "Bonner": ["M"], + "lied": ["M", "R"], + "headbutteds": [], + "oarlocks": [], + "propagandizinged": [], + "clamor's": [], + "Al": ["M"], + "tuning's": [], + "loanword": ["M", "S"], + "reoccurred": [], + "transect": ["D", "S", "G"], + "cattails": [], + "mulligan": ["S", "M"], + "undershoots": [], + "Aggie's": [], + "deadlock'sed": [], + "plugholes": [], + "munificence": ["M"], + "cartoons": [], + "middlemen": [], + "gout": ["M"], + "roundup": ["M", "S"], + "interloper": ["M"], + "maltreatmented": [], + "Afrocentrism's": [], + "stagnantly": [], + "drown": ["G", "S", "J", "D"], + "uncharitably": [], + "conservative's": [], + "Mayfair's": [], + "execratingen": [], + "stoup": ["S", "M"], + "daisy's": [], + "tosses": [], + "miscellanies": [], + "Mich's": [], + "broadness": ["M"], + "feign": ["S", "D", "G"], + "poncho's": [], + "hereto": [], + "slatternly": [], + "wonderfully": [], + "cheerfully": [], + "councilor'ses": [], + "sacramental": [], + "crosier": ["M", "S"], + "spends": [], + "humanism's": [], + "givebacks": [], + "guarantee's": [], + "odds": ["M"], + "Leicester": ["S", "M"], + "Memling's": [], + "dauntingly": [], + "invert'sed": [], + "creditors's": [], + "headwaiter's": [], + "graveness": ["M"], + "skier's": [], + "signaled": [], + "bewitched": [], + "tinnier": [], + "foameding": [], + "comedies's": [], + "provision": [], + "exhaustiveliness": [], + "romantic's": [], + "snip'sed": [], + "thetas's": [], + "Gielgud's": [], + "sentimentality": ["M"], + "mutant'ses": [], + "twister's": [], + "urinal": ["S", "M"], + "debited": [], + "crosshatches": [], + "lyre's": [], + "lumberer": ["M"], + "gatehouse's": [], + "Magdalena": ["M"], + "teetotalerers": [], + "humus's": [], + "Barnett": ["M"], + "strongbox's": [], + "existential": ["Y"], + "monstrosities's": [], + "photograph's": [], + "alcoholically": [], + "haphazardness": ["M"], + "programmed": ["A", "C"], + "encoreds": [], + "Vesuvius's": [], + "optometrist's": [], + "correlative": ["M", "S"], + "veneereding": [], + "shellacs": [], + "flecks": [], + "mountebank": ["M", "S"], + "directory": ["S", "M"], + "enchanter's": [], + "delayed": [], + "sump": ["M", "S"], + "bean's": [], + "Ugandan'ses": [], + "closing": ["M"], + "thoroughness's": [], + "judgesing": [], + "Sennacherib": ["M"], + "presumption": ["S", "M"], + "valorous": ["Y"], + "herewith": [], + "intrigue'sers": [], + "gonging": [], + "angina": ["M"], + "Tu's": [], + "parasols": [], + "pedicab's": [], + "genie": ["S", "M"], + "jeopardizing": [], + "mention": ["G", "S", "M", "D"], + "ridership": ["M"], + "votaries": [], + "expectorants": [], + "Mgr": [], + "crusade'sers": [], + "conniver": ["M"], + "daces": [], + "floppiest": [], + "acrobatics's": [], + "Darling's": [], + "footlights's": [], + "exhort": ["S", "D", "G"], + "Principe": ["M"], + "mornings": [], + "palaverings": [], + "tableland": ["S", "M"], + "stereophonic": [], + "ardor'ses": [], + "croupier": ["M"], + "mistinesser": [], + "countersink's": [], + "Advil's": [], + "testicle'ses": [], + "sleepwalk": ["Z", "G", "S", "D", "R"], + "boldfaced": [], + "Lysenko": ["M"], + "reptilian'ses": [], + "flairs's": [], + "cretonne's": [], + "Colorado": ["M"], + "Mercado": ["M"], + "nonburnable": [], + "escudos's": [], + "deciliters": [], + "Mlle": [], + "enchaineding": [], + "insurgence": ["S", "M"], + "Malaprop's": [], + "bonbon'ses": [], + "Saskatchewan": ["M"], + "vouchesers": [], + "maw": ["S", "M"], + "sailboard": ["M", "R", "Z", "G", "S"], + "apologias's": [], + "dirges": [], + "irreverence": ["M"], + "harpist's": [], + "twitchiest": [], + "tantra's": [], + "lunkhead's": [], + "Volga": ["M"], + "breacheds": [], + "aristocratically": [], + "borrowingings": [], + "potentiatinged": [], + "phoebe'ses": [], + "anticoagulant's": [], + "dictate": ["D", "S", "M", "G", "N", "X"], + "shindig": ["S", "M"], + "prangsing": [], + "Kiev": ["M"], + "reachesing": [], + "battlegrounds": [], + "pirouettes's": [], + "neater": [], + "elaborateness's": [], + "birthplace's": [], + "REM's": [], + "hyperlinks": [], + "byproduct's": [], + "prevision's": [], + "reprises": [], + "sediments": [], + "affectingly": [], + "pant": ["M", "D", "S", "G"], + "duchess's": [], + "birdies": [], + "myelitis's": [], + "nutters": [], + "Yemen": ["M"], + "aromatherapist'ses": [], + "trapezes": [], + "animator's": [], + "box'sed": [], + "humidor": ["S", "M"], + "cottonseed's": [], + "rosiness's": [], + "Robespierre": ["M"], + "profit": ["B", "G", "D"], + "overcharge": ["D", "S", "M", "G"], + "DAT": ["M"], + "conjugatingen": [], + "expansionism": ["M"], + "Rumpelstiltskin": ["M"], + "castigatingen": [], + "fainted": [], + "trim's": [], + "lining's": [], + "Wiles's": [], + "truckle'sing": [], + "clubhouses": [], + "proficiency": ["M"], + "doubtfulnessly": [], + "Alps's": [], + "cheeped": [], + "raglans's": [], + "Joaquin": ["M"], + "McLuhan's": [], + "chalkiest": [], + "hotheadedliness": [], + "intimidating": ["Y"], + "testiest": [], + "Candide": ["M"], + "broodmare's": [], + "censused": [], + "plexuses": [], + "outguns": [], + "pander'sed": [], + "Trinidadian'ses": [], + "praise's": [], + "basso's": [], + "teaspoonful's": [], + "Heston's": [], + "concoction'ses": [], + "Rock": ["M"], + "propulsion": ["M"], + "drupe": ["S", "M"], + "Dirichlet": ["M"], + "adenocarcinoma": [], + "genealogies's": [], + "escorts's": [], + "bullhorn": ["M", "S"], + "ant'sed": [], + "deferral": ["M", "S"], + "prefaced": [], + "fluffeding": [], + "gropersing": [], + "splice": ["D", "R", "S", "M", "Z", "G"], + "ultraviolet": ["M"], + "discombobulation": ["M"], + "modulated": [], + "Trudy": ["M"], + "eventuateds": [], + "Crichton's": [], + "Eaton's": [], + "preponderateds": [], + "Esau's": [], + "Stalin": ["M"], + "hectically": [], + "Sweeney's": [], + "permanence": ["M"], + "Verlaine": ["M"], + "seeps": [], + "neckeds": [], + "closer": [], + "plasticize": ["D", "S", "G"], + "appositive's": [], + "Pretoria": ["M"], + "paroling": [], + "bullied": [], + "Ernie": ["M"], + "Palestrina's": [], + "Claudius's": [], + "tricycle's": [], + "Honduran'ses": [], + "spume": ["D", "S", "M", "G"], + "Stoics": [], + "gamboleding": [], + "amply": [], + "sunbeds": [], + "fillip'sed": [], + "polemical": ["Y"], + "carpools": [], + "dumpsters": [], + "wormhole'ses": [], + "Eskimo": ["M", "S"], + "incarceration's": [], + "retrofire": ["G", "D", "S"], + "talkersing": [], + "tankard'ses": [], + "arraying": [], + "cinematography": ["M"], + "Claude": ["M"], + "Hecate's": [], + "jives": [], + "Hollander's": [], + "Andes's": [], + "November": ["M", "S"], + "Orwellian": ["M"], + "emotionalism": ["M"], + "totaled": [], + "odious": ["Y", "P"], + "kangaroo's": [], + "roameder": [], + "crowfoot's": [], + "portables": [], + "greedier": [], + "fomentation": ["M"], + "expressesly": [], + "Emily": ["M"], + "plateful's": [], + "fireplug": ["M", "S"], + "hardboard's": [], + "halitosis's": [], + "castled": [], + "statewide": [], + "Scandinavians": [], + "crumbled": [], + "intervenes": [], + "yodeleder": [], + "majorette's": [], + "lusciousness's": [], + "evangelized": [], + "boron's": [], + "snazzily": [], + "ornithological": [], + "statement's": [], + "nonhuman": [], + "lodgings's": [], + "noninfectious": [], + "bronchial": [], + "wrangle's": [], + "forward's": [], + "unretold": [], + "clumping": [], + "pathology": ["M"], + "interference": ["M"], + "trilby's": [], + "trapezium": ["S", "M"], + "glasshouse": ["S"], + "llamas's": [], + "toweder": [], + "brigades's": [], + "wienie": ["S", "M"], + "Berra": ["M"], + "fiercenesser": [], + "clapboardings": [], + "rendezvous'sed": [], + "bridesmaid": ["M", "S"], + "woodlouse": [], + "makeovers": [], + "uppermost": [], + "emigrants": [], + "shrew'ses": [], + "said": ["U"], + "spews": [], + "savoy'ses": [], + "arginine": [], + "Medan's": [], + "snarlsed": [], + "chuckhole": ["S", "M"], + "population": ["C", "M"], + "peristalsis's": [], + "haggler's": [], + "gingeredly": [], + "electromagnet's": [], + "breve": ["S", "M"], + "loyalest": [], + "antonym": ["S", "M"], + "uselessness's": [], + "pens": [], + "pharmaceutic": ["M", "S"], + "plumped": [], + "helot's": [], + "planner": ["S", "M"], + "deliverers": [], + "museum'ses": [], + "destinies's": [], + "boatswains": [], + "leggier": [], + "popularize": ["D", "S", "G"], + "smart's": [], + "Hansel": ["M"], + "terahertz": ["M"], + "outboast": ["D", "S", "G"], + "abounds": [], + "thrown": [], + "courthouse's": [], + "turning'ses": [], + "religiosity": [], + "peccadilloes": [], + "neighboredly": [], + "first's": [], + "lookalike": ["M", "S"], + "gimpeding": [], + "carpel'ses": [], + "plumply": [], + "prizefighters": [], + "moaner's": [], + "doltishliness": [], + "spadeful": ["M", "S"], + "prognoses": [], + "trouped": [], + "sneering": ["Y"], + "topographical": ["Y"], + "undervaluesing": [], + "Art's": [], + "colloquiums": [], + "provably": [], + "moodiness's": [], + "Robinson": ["M"], + "lowbrows": [], + "synthetically": [], + "reduced": [], + "Mistress": [], + "scudding": [], + "idle": ["M", "Z", "T", "G", "D", "R", "S", "P"], + "schwa'ses": [], + "forthrightness's": [], + "hams": [], + "beanie's": [], + "berths": [], + "departed": ["M"], + "usherette": ["S", "M"], + "Alexander": ["M", "S"], + "Jocelyn's": [], + "intelligence's": [], + "bemusement's": [], + "Sheol's": [], + "schleps's": [], + "headlight's": [], + "prow's": [], + "whimsy's": [], + "Duse's": [], + "garbanzo's": [], + "jumps": [], + "mollification's": [], + "marketers": [], + "niece": ["S", "M"], + "personifies": [], + "impugn": ["Z", "G", "S", "D", "R"], + "unteachable": [], + "ileitis's": [], + "multicolored": [], + "Cb": [], + "Americanized": [], + "logo": ["M", "S"], + "yoked": [], + "applieds": [], + "Krakatoa": ["M"], + "subcontractors": [], + "reconnaissance's": [], + "Amiga's": [], + "mongoloid": ["M", "S"], + "wangler's": [], + "soviets's": [], + "yellowness": ["M"], + "frontage'ses": [], + "unproductive": [], + "flustering": [], + "Boas's": [], + "comportment's": [], + "grokking": [], + "garroted": [], + "overstates": [], + "panhandler": ["M"], + "discerned": [], + "Angora's": [], + "comprehendsed": [], + "meerschaum": ["S", "M"], + "macaws's": [], + "sixpence'ses": [], + "geometrically": [], + "transshipping": [], + "parleying's": [], + "counterbalanced": [], + "forewomen": [], + "ANZUS's": [], + "parathyroid": ["M", "S"], + "Banneker": ["M"], + "nappiers": [], + "topper": ["M", "S"], + "methodological": ["Y"], + "agitator": ["M", "S"], + "sidleds": [], + "dioxide": ["S", "M"], + "triumphalism": [], + "supremacy": ["M"], + "premiums": [], + "goat": ["M", "S"], + "topologically": [], + "PayPal": ["M"], + "colander's": [], + "gazeder": [], + "avoucheds": [], + "masterstroke": ["S", "M"], + "polio's": [], + "whisker's": [], + "fouler": [], + "Peckinpah": ["M"], + "eave'ses": [], + "disinter": [], + "remedying": [], + "prim": ["Z", "G", "D", "R", "Y", "P"], + "loggia's": [], + "snugs": [], + "kissable": [], + "typeface's": [], + "blunderers": [], + "hordeds": [], + "lurkeder": [], + "Wozniak's": [], + "disassociation": [], + "heckled": [], + "throwbacks's": [], + "callousesly": [], + "impendsed": [], + "dissipated": [], + "imperialistic": [], + "protozoans": [], + "Dijkstra": ["M"], + "nestlingings": [], + "Mach's": [], + "steels's": [], + "vista's": [], + "temporaries": [], + "poinciana": ["S", "M"], + "jetliner": ["S", "M"], + "pity": ["G", "D", "S", "M"], + "forgettable": ["U"], + "horology": ["M"], + "Vermonter": ["M"], + "laity": ["M"], + "tantalization": ["M"], + "shoplifter": ["M"], + "porky": ["R", "S", "M", "T"], + "carnelian's": [], + "Kalmyk": ["M"], + "snickereding": [], + "sickbed's": [], + "frond's": [], + "Ptolemy": ["S", "M"], + "electroencephalograph": ["M"], + "lamely": [], + "sophistic": [], + "sisterhoods": [], + "films": [], + "tabla's": [], + "heehaw'sed": [], + "sooth": ["M", "D", "R", "S", "Z", "G"], + "sander": ["M"], + "Salazar": ["M"], + "shaving's": [], + "driver's": [], + "shredding": [], + "scarfs": [], + "hobnailed": [], + "culture'sing": [], + "discriminators": [], + "nickel": ["M", "S"], + "Beethoven's": [], + "handholds": [], + "natters": [], + "artless": ["P", "Y"], + "Minoan's": [], + "tearing": [], + "gloomierness": [], + "feverish": ["Y", "P"], + "moistens": [], + "mandamus'ses": [], + "superhighway": ["S", "M"], + "electrocardiogram'ses": [], + "ashed": [], + "pigeonholed": [], + "fluctuations": [], + "cores": [], + "devotionals": [], + "entreatsed": [], + "handkerchief": ["M", "S"], + "winkle's": [], + "slaver's": [], + "achieveder": [], + "remittance's": [], + "billsable": [], + "chit's": [], + "pongeds": [], + "hyperventilation": ["M"], + "fielder": ["I", "M"], + "Thimbu's": [], + "royalties's": [], + "crabber's": [], + "slicersing": [], + "Unions's": [], + "governorship": ["M"], + "ulna": ["M"], + "featherier": [], + "braziers": [], + "unhygienic": [], + "tangent'ses": [], + "dance'sers": [], + "arsonist's": [], + "referees's": [], + "taxidermists": [], + "assistance's": [], + "rabbles": [], + "analogs": [], + "exonerates": [], + "exfoliation": [], + "Semitic": ["S", "M"], + "victim": ["M", "S"], + "thatch'sed": [], + "Talleyrand's": [], + "spinnerets's": [], + "oz": [], + "brouhaha": ["S", "M"], + "chaise'ses": [], + "tap'sed": [], + "article's": [], + "theist's": [], + "bewilderment's": [], + "plumeds": [], + "cajoleder": [], + "despondency": ["M"], + "transport'sed": [], + "stumbles": [], + "titleholder'ses": [], + "interspersingen": [], + "stumbled": [], + "Oprah": ["M"], + "woodblocks": [], + "toddled": [], + "sacrament": ["M", "S"], + "calumets": [], + "Enid's": [], + "sightly": ["U", "T", "R"], + "petitionersing": [], + "leprous": [], + "decoupaged": [], + "darkener's": [], + "diffings": [], + "fluted": [], + "ghastlier": [], + "grower'ses": [], + "steadies": [], + "loomsing": [], + "belle": ["M", "S"], + "welter": ["G", "M", "D"], + "trodden": ["A"], + "differentiates": [], + "baht": ["S", "M"], + "detriment's": [], + "convalescing": [], + "linearity's": [], + "fandango's": [], + "habiliment": ["S", "M"], + "DECsed": [], + "cutler": ["S", "M"], + "turnip's": [], + "vulgarizers": [], + "Vietminh": ["M"], + "Denise's": [], + "bolero's": [], + "smokescreen's": [], + "millstream": ["M", "S"], + "doublespeak's": [], + "overlord'ses": [], + "tide's": [], + "relaters": [], + "mattes's": [], + "congresspeople": [], + "Sims's": [], + "suesing": [], + "carfare's": [], + "lunacies": [], + "Theodosius's": [], + "polypropylene": ["M"], + "zookeeper's": [], + "quotations": [], + "collateral's": [], + "vegging": [], + "ridgepoles": [], + "estimated": [], + "fairs": [], + "rated": ["U"], + "Giles": ["M"], + "keypunched": [], + "goddamn": ["D"], + "depressors": [], + "Wallenstein": ["M"], + "sourly": [], + "simplificationing": [], + "wholemeal": [], + "tawdriest": [], + "Bergman's": [], + "seeker": ["M"], + "squeals": [], + "shadiest": [], + "telecommunication": ["M", "S"], + "peritoneums": [], + "sloe": ["M", "S"], + "rawness": ["M"], + "gift": ["M", "D", "G", "S"], + "petrel": ["M", "S"], + "amnions": [], + "foreknew": [], + "Bundesbank": ["M"], + "replenishment": ["M"], + "pterodactyl'ses": [], + "chiffonier's": [], + "Marisa": ["M"], + "ecosystem's": [], + "spellbinders": [], + "vignettes": [], + "advertised": ["U"], + "berrieds": [], + "revered": [], + "intensive'sly": [], + "mks": [], + "spirited": ["Y"], + "agate's": [], + "pollutant'ses": [], + "mammography's": [], + "attuning": [], + "wholegrain": [], + "ravagersing": [], + "thwackings": [], + "wonderment": ["M"], + "incestuousnessly": [], + "meed's": [], + "laterness": [], + "Earline": ["M"], + "taller": [], + "notificationsers": [], + "individually": [], + "pigs's": [], + "ellipses": [], + "shored": [], + "onslaught'ses": [], + "exactnessed": [], + "marked": ["U"], + "harmonies": [], + "scything": [], + "minter": ["M"], + "garb'sed": [], + "flusheder": [], + "Cessna's": [], + "Monterrey's": [], + "Boeotia": ["M"], + "argent's": [], + "absently": [], + "unmentionables": ["M"], + "vermiculite's": [], + "chiselers": [], + "trailer's": [], + "goof'sed": [], + "miniaturizes": [], + "porch'ses": [], + "chapati": ["S"], + "limiter": [], + "correlative's": [], + "Thompson": ["M"], + "frolics's": [], + "superlatives's": [], + "nonresidual": ["M"], + "shiftless": ["P", "Y"], + "nerving": [], + "legislatures": [], + "Baroda's": [], + "clinicians": [], + "impanels": [], + "hope'ses": [], + "priestly": ["R", "T", "P"], + "philistine": ["M", "S"], + "basses": [], + "winegrower's": [], + "adjustinged": [], + "echinoderms": [], + "addable": [], + "kinetics": ["M"], + "knock'sed": [], + "secedes": [], + "Massenet": ["M"], + "Wiemar": ["M"], + "stipendiaries": [], + "hooded": [], + "amateurishly": [], + "stupidest": [], + "airport": ["S", "M"], + "oncologist's": [], + "filterersing": [], + "circlet": ["M", "S"], + "Natalia's": [], + "bangles's": [], + "polyhedral": [], + "inscribed": [], + "woof's": [], + "Cyrano": ["M"], + "piglet's": [], + "satrap": ["S", "M"], + "acorn": ["M", "S"], + "sombreros": [], + "virility's": [], + "interventionists": [], + "gallings": [], + "nybbles": [], + "Ivan's": [], + "poisons": [], + "aboundsing": [], + "Equuleus's": [], + "appealing's": [], + "jaywalksers": [], + "tyrannizeds": [], + "termites's": [], + "Kleenex's": [], + "coefficient": ["M", "S"], + "tanbark's": [], + "strawings": [], + "hoardsers": [], + "devolves": [], + "patchiness": ["M"], + "skid": ["M", "S"], + "prescriptively": [], + "finickiness's": [], + "impurest": [], + "civets": [], + "raindrop's": [], + "rotational": [], + "baptisms": [], + "boink": ["G", "D", "S"], + "Kamehameha's": [], + "manse": ["S", "X", "M", "N"], + "ammonia's": [], + "unprofitably": [], + "faddist's": [], + "allegation": ["M", "S"], + "discourage": ["L", "G", "D", "S"], + "aquifer": ["S", "M"], + "messiest": [], + "triggered": [], + "fiddly": ["T", "R"], + "disposables's": [], + "marking": ["S", "M"], + "inhered": [], + "funnel's": [], + "trapezoids's": [], + "apostasies": [], + "schoolwork's": [], + "aberrations": [], + "chantey": ["S", "M"], + "Confederate'ses": [], + "fingering's": [], + "Rorschach": ["M"], + "codded": [], + "merrymaking": ["M"], + "infuriates": [], + "flyleaf's": [], + "glowerers": [], + "preventing": [], + "fluorescing": [], + "exemplar's": [], + "goblin's": [], + "North's": [], + "pitons": [], + "bridegrooms": [], + "resumptions": [], + "skimmers's": [], + "hike": ["M", "Z", "G", "D", "R", "S"], + "undertaker's": [], + "chirrups": [], + "geezers": [], + "ancient'ser": [], + "misprinted": [], + "Podhoretz's": [], + "it's": [], + "rightward": ["S"], + "cornerstones's": [], + "weepie": [], + "retract": ["D", "B", "G"], + "sluttiest": [], + "lifetime": ["M", "S"], + "exactitude": ["M"], + "balancesing": [], + "McGovern's": [], + "squandereds": [], + "atypical": ["Y"], + "antitoxin": ["M", "S"], + "overtiringed": [], + "noncancerous": [], + "explicitness": ["M"], + "freebooters's": [], + "brazed": [], + "overachiever's": [], + "proscribed": [], + "naval": [], + "Sadr": ["M"], + "minus'ses": [], + "SSA": [], + "glassware's": [], + "linting": [], + "welcomed": [], + "outline": ["M", "G", "D", "S"], + "hardbacks": [], + "pace'sers": [], + "davenports": [], + "abseil's": [], + "admonished": [], + "Carlo": ["M", "S"], + "resilience's": [], + "Daimler": ["M"], + "agglomeration's": [], + "ringers": [], + "masker'ses": [], + "adulterate": ["G", "N", "D", "S"], + "offersing": [], + "Laval's": [], + "scuttling": [], + "mortgaging": [], + "Brigid's": [], + "majorette": ["M", "S"], + "temperament's": [], + "alumna's": [], + "logon's": [], + "paperboard's": [], + "scrummed": [], + "legging's": [], + "gift's": [], + "incremented": [], + "airways": [], + "paramilitary's": [], + "handler's": [], + "interpreter's": [], + "refrigeration's": [], + "tippers's": [], + "brougham's": [], + "Teletype": [], + "desertsed": [], + "Petrarch's": [], + "debarred": [], + "quoits": [], + "incestuousness": ["M"], + "profess": [], + "contemplating": [], + "schizophrenic": ["S", "M"], + "activation's": [], + "purgatory's": [], + "valleys": [], + "course": ["E", "D", "G", "M", "S"], + "flyway's": [], + "advertisement's": [], + "lubricant": ["S", "M"], + "choppereding": [], + "leaded": [], + "temptersing": [], + "idealized": [], + "quarreling": [], + "zings": [], + "tier'sed": [], + "shrew": ["M", "S"], + "pedicabs's": [], + "teleprompters": [], + "owlish": ["Y"], + "Capricorn's": [], + "resiliency": ["M"], + "outproduce": ["D", "S", "G"], + "hillock'ses": [], + "Potomac's": [], + "Euler": ["M"], + "antsy": ["T", "R"], + "commanders": [], + "cudgels": [], + "immoral": ["Y"], + "ataxia": ["M"], + "creepiness's": [], + "comedy's": [], + "Costco's": [], + "popcorn": ["M"], + "progenitor's": [], + "modeleder": [], + "hogsheads": [], + "Beasley's": [], + "quintuplet's": [], + "abnormality's": [], + "ensnares": [], + "factories": [], + "anapest": ["S", "M"], + "tempteder": [], + "emu's": [], + "advent": ["S", "M"], + "Loewe": ["M"], + "filler": ["M", "S"], + "gravediggers": [], + "rover": ["M"], + "nonetheless": [], + "doze": ["M"], + "cabby's": [], + "nu": ["S", "M"], + "housebreaking": ["M"], + "NPR": ["M"], + "quadruplicate'sing": [], + "happenings": [], + "favor": ["E", "S", "M", "D", "G"], + "preschooler's": [], + "Daniels": ["M"], + "bigamous": [], + "flop'ses": [], + "busbies": [], + "endues": [], + "abstractness'ses": [], + "hoarfrost's": [], + "external's": [], + "betokened": [], + "muskmelon's": [], + "BP": ["M"], + "refurbishment's": [], + "hairsplitter": ["S", "M"], + "spill'sed": [], + "domicile'sing": [], + "batsmen": [], + "risings's": [], + "honorarium's": [], + "addicts": [], + "catch": ["Z", "G", "J", "L", "M", "R", "S"], + "Democratic": [], + "modernizer's": [], + "poulticed": [], + "BitTorrent's": [], + "boxes": [], + "TelePrompter": ["M"], + "rampages": [], + "Actaeon": ["M"], + "obstructionism": ["M"], + "rompers": [], + "Brigadoon's": [], + "Procrustes's": [], + "nightdress's": [], + "rams": [], + "spitting": [], + "enchainings": [], + "Raoul's": [], + "snitching": [], + "circuitry's": [], + "grinned": [], + "chapters": [], + "attractedable": [], + "traipse's": [], + "Eritrea": ["M"], + "checker'sed": [], + "viking's": [], + "Nicolas's": [], + "kg": [], + "Doubleday's": [], + "micrometeorites": [], + "cries": [], + "Kashmirs": [], + "hydrodynamics's": [], + "ergosterol's": [], + "Gentry's": [], + "originators's": [], + "plungers": [], + "glazing": ["M"], + "ablest": [], + "anglicism": ["S"], + "marmot": ["M", "S"], + "dory's": [], + "mismanages": [], + "merit's": [], + "jabot": ["S", "M"], + "polygamy's": [], + "state'sly": [], + "knob's": [], + "chattereder": [], + "fetishism's": [], + "Adenauer": ["M"], + "tiptoeds": [], + "mineralogical": [], + "compact": ["T", "G", "S", "M", "D", "R", "Y", "P"], + "Delmar's": [], + "cybernetic": ["S"], + "adulatingen": [], + "knapsack's": [], + "rioting's": [], + "weepings": [], + "alewife's": [], + "fiduciaries's": [], + "Stark": ["M"], + "BB": ["M"], + "debar": [], + "companies's": [], + "modernizeder": [], + "Kirinyaga": ["M"], + "onshore": [], + "Slavonic's": [], + "staking": [], + "granddaughter": ["S", "M"], + "run's": [], + "ambulant": [], + "jumbles": [], + "pelted": [], + "peasantry's": [], + "stalactite's": [], + "few's": [], + "cloudierness": [], + "headstand's": [], + "questioners": [], + "slackly": [], + "Viola's": [], + "adversity's": [], + "galoots": [], + "therapists": [], + "jinn": [], + "peroxiding": [], + "schoolchild's": [], + "hooray": [], + "cares": [], + "aunts": [], + "pasteurizer": ["M"], + "defeat'sed": [], + "musketeer": ["M", "S"], + "Brewer": ["M"], + "prefacing": [], + "circumference": ["M", "S"], + "9": ["n", "m"], + "stiltedly": [], + "retraction": ["S"], + "spritzing": [], + "biodegradesing": [], + "stomachersing": [], + "thick'sen": [], + "fantasy's": [], + "cogwheels": [], + "megalomaniac": ["S", "M"], + "keeping": ["M"], + "earmark'sed": [], + "encl": [], + "background'ser": [], + "undignified": [], + "placateds": [], + "snakelike": [], + "oilskins's": [], + "skittering": [], + "evil'ser": [], + "ray": ["S", "M"], + "pinball": ["M"], + "tsetse'ses": [], + "parqueted": [], + "daguerreotype'sing": [], + "tubes": [], + "reproving": ["Y"], + "implanting's": [], + "orthodontia": ["M"], + "wooeder": [], + "brakinged": [], + "neurosurgeon's": [], + "mince's": [], + "Lazaro": ["M"], + "perquisite's": [], + "paysing": [], + "chemo's": [], + "Sally's": [], + "IQ": ["M"], + "mistranslated": [], + "prophets's": [], + "earwax": ["M"], + "Kinshasa": ["M"], + "Ayala": ["M"], + "we'd": [], + "healthfully": [], + "acceptableness's": [], + "Cheer": ["M"], + "appreciates": [], + "Speer": ["M"], + "jeopardize": ["G", "D", "S"], + "faultiness's": [], + "bobsledded": [], + "Lydians's": [], + "heatherens": [], + "Thai's": [], + "omniscience": ["M"], + "mitosis's": [], + "Aleutian's": [], + "oeuvre'ses": [], + "strudels's": [], + "lingerer": ["M"], + "gallop'sed": [], + "eugenicist": ["M", "S"], + "Booker's": [], + "madam": ["S", "M"], + "doohickey": ["S", "M"], + "fears": [], + "delinquency": ["S", "M"], + "grimly": [], + "Liberian": ["S", "M"], + "shrived": [], + "wanderers": [], + "fluidity's": [], + "fa": ["M"], + "Felice": ["M"], + "veteran's": [], + "poser": ["E", "K", "S", "M"], + "chamberlain's": [], + "condensation": ["M"], + "recliner": ["M"], + "rambler's": [], + "harvesteder": [], + "Apollos": [], + "Thracian's": [], + "Park'ser": [], + "bridgehead's": [], + "miscue's": [], + "wangler": ["M"], + "criterion's": [], + "Lusitania": ["M"], + "wireless'ses": [], + "interspersioned": [], + "did": ["A", "U"], + "certified": [], + "playable": ["E", "U"], + "smallness's": [], + "Walters's": [], + "generousnessly": [], + "defender": [], + "Whitley's": [], + "Dis": ["M"], + "dugout's": [], + "signalerly": [], + "mainline": ["M", "G", "D", "S"], + "postilion's": [], + "puddles's": [], + "highness's": [], + "transmission": ["M", "S"], + "Promethean": ["M"], + "revisionist": ["S", "M"], + "irrelevancy": ["M", "S"], + "bannock's": [], + "verniers": [], + "transgresses": [], + "thunk": ["S"], + "bucktooth'sed": [], + "Manx": ["M"], + "davits": [], + "sharpen": ["A", "D", "G", "S"], + "epidemics": [], + "interwoven": [], + "intaglio'ses": [], + "sundae's": [], + "paleontologists's": [], + "bush": ["M", "D", "S", "G", "J"], + "maraschino'ses": [], + "Laius's": [], + "elevens's": [], + "highhanded": ["P", "Y"], + "heads": [], + "hatstands": [], + "circumnavigateds": [], + "shredder'ses": [], + "choirmaster": ["S", "M"], + "swoop": ["S", "G", "M", "D"], + "hotsly": [], + "tulip's": [], + "Masefield's": [], + "vignetting": [], + "snarfeding": [], + "galoots's": [], + "reddened": [], + "sequestereding": [], + "sourpuss's": [], + "condiments": [], + "rule": ["M", "Z", "G", "J", "D", "R", "S"], + "fright'sed": [], + "devalue": [], + "bravingness": [], + "Arbitron's": [], + "steeplechases": [], + "triathletes": [], + "tintinnabulation'ses": [], + "cemetery's": [], + "avenge": ["Z", "G", "D", "R", "S"], + "tastings": [], + "Voldemort's": [], + "daredevilry": ["M"], + "woodsman's": [], + "Grover's": [], + "fastball's": [], + "parotid": [], + "vibrators's": [], + "crawlspace's": [], + "harlequin": ["S", "M"], + "knifed": [], + "pithiness's": [], + "roundels": [], + "destitution's": [], + "intertwine": ["G", "D", "S"], + "plutocracy's": [], + "freightings": [], + "sputa": [], + "anticommunist's": [], + "turbocharge": ["Z", "G", "D", "R", "S"], + "flax": ["M", "N"], + "emir'ses": [], + "blockhouses": [], + "blueness's": [], + "beatific": [], + "celebrating": [], + "anesthetist's": [], + "invested": [], + "apps's": [], + "patronize": ["Z", "G", "D", "R", "S"], + "sharpish": [], + "orgy's": [], + "Feds": ["M"], + "adjudicates": [], + "pails": [], + "comprehensiveness's": [], + "younger": [], + "supercomputer's": [], + "strictness's": [], + "snuffersing": [], + "antic": ["M", "S"], + "memorializesing": [], + "granddaddy": ["S", "M"], + "bloodily": [], + "pimiento": ["M", "S"], + "migrateds": [], + "muumuu'ses": [], + "umbrella": ["S", "M"], + "dangler": ["M"], + "checker's": [], + "gastric": [], + "resound": ["S", "G", "D"], + "Corot": ["M"], + "enema's": [], + "confluence's": [], + "submerses": [], + "poxes": [], + "sterling": ["M"], + "Furtwangler's": [], + "factionalism": ["M"], + "xenophobe'ses": [], + "interprets": [], + "acuteness": ["M"], + "finesse'sing": [], + "regrindings": [], + "legless": [], + "Serengeti's": [], + "capes": [], + "chariots's": [], + "extemporizing": [], + "picnicking": [], + "disrearmament": [], + "manifold'sed": [], + "satirists": [], + "flimsierness": [], + "macerate": ["D", "S", "G", "N"], + "gaffer": ["M"], + "particle": ["S", "M"], + "Kate's": [], + "initiators": [], + "cliometricians": [], + "distinctiveliness": [], + "apologist's": [], + "Zr's": [], + "womanhood's": [], + "sloucheder": [], + "arcades": [], + "peseta'ses": [], + "biweeklies's": [], + "real'ser": [], + "minicomputer's": [], + "meeker": [], + "dealership": ["S", "M"], + "nerveless": ["Y", "P"], + "lambda": ["S", "M"], + "Gabon": ["M"], + "objectives": [], + "Hollywood's": [], + "jurist's": [], + "bundle's": [], + "sedaters": [], + "boast's": [], + "pockeds": [], + "sketchily": [], + "definitions": [], + "kaleidoscopically": [], + "hobbled": [], + "mantelshelves": [], + "transliteratingen": [], + "Charlie's": [], + "abrasives": [], + "detaininged": [], + "dandifyinged": [], + "recantations": [], + "anachronisms's": [], + "Teddy": ["M"], + "takeaways": [], + "irrupt": ["D", "G", "V", "S"], + "Nova's": [], + "taus's": [], + "god's": [], + "alternative's": [], + "subtract": ["G", "S", "D"], + "litmus's": [], + "narcissist's": [], + "stauncher": [], + "potshot's": [], + "usurer's": [], + "lipsticksing": [], + "cholesterol's": [], + "whacksings": [], + "jeeringly": [], + "sixth's": [], + "Hoover'ses": [], + "lobster": ["M", "S"], + "whitening": ["M"], + "mineralogy's": [], + "thrombolytic": [], + "languidness's": [], + "Magyar": ["S", "M"], + "marketeers's": [], + "trial": ["A", "S", "M"], + "Maratha's": [], + "novas": [], + "persuader": ["M"], + "disturbing": ["Y"], + "whop": ["S"], + "aphrodisiacs's": [], + "participate": ["D", "S", "G", "N"], + "clits": [], + "metallurgists": [], + "yawn's": [], + "shithead": ["S", "!"], + "babel'ses": [], + "tattiest": [], + "Paleozoic": ["M"], + "chuckling": [], + "completionens": [], + "archer": ["M"], + "cuss's": [], + "heron": ["S", "M"], + "ombudsman": ["M"], + "reteaches": [], + "lenient": ["Y"], + "femoral": [], + "spade's": [], + "overcharges's": [], + "endemic'ses": [], + "loopy": ["R", "T"], + "shakeup'ses": [], + "ginseng's": [], + "clairvoyance": ["M"], + "thinsness": [], + "agate": ["M", "S"], + "Marta": ["M"], + "bulldog": ["S", "M"], + "mediators": [], + "trendsetters": [], + "coliseum'ses": [], + "pizzicato's": [], + "regressesing": [], + "bisexuality": ["M"], + "crested": [], + "syllabificationing": [], + "genteelliness": [], + "sightread": [], + "slaves's": [], + "exportable": [], + "repertories's": [], + "overpayings": [], + "gene's": [], + "intercom": ["S", "M"], + "desiccateds": [], + "truncatingen": [], + "viticulturists": [], + "spearhead": ["G", "M", "D", "S"], + "pottier": [], + "coalescent": [], + "transmogrifies": [], + "kneader's": [], + "Mott": ["M"], + "assigns": [], + "osmosis's": [], + "allegorist's": [], + "crotchets's": [], + "bearishness's": [], + "knits": [], + "paradox's": [], + "Manuel's": [], + "replicas's": [], + "cornucopia's": [], + "clarioneding": [], + "inflectional": [], + "separatingen": [], + "morbidliness": [], + "fluorescence": ["M"], + "jettisoned": [], + "Ray's": [], + "deficiencies": [], + "joust's": [], + "churn's": [], + "harelips": [], + "herd's": [], + "antipasto": ["M", "S"], + "video's": [], + "antispasmodic'ses": [], + "piaster's": [], + "guzzled": [], + "trendings": [], + "apprenticeds": [], + "October": ["S", "M"], + "clammily": [], + "dishcloths": [], + "gentleness's": [], + "wheedle": ["D", "R", "S", "Z", "G"], + "strangulation's": [], + "Venn's": [], + "itch's": [], + "frankfurters": [], + "manana's": [], + "windup": ["S", "M"], + "quizzers": [], + "indicatesing": [], + "reward": [], + "materializing": [], + "Cheryl": ["M"], + "laceration": ["M"], + "strategic": ["S"], + "previewing": [], + "juryman's": [], + "brashness's": [], + "avert": ["G", "D", "S"], + "sadomasochist'ses": [], + "iris'ses": [], + "meccas's": [], + "amble's": [], + "filmmakers": [], + "fantasieds": [], + "nighties": [], + "images's": [], + "primliness": [], + "indwells": [], + "immoralities": [], + "Netherlander": ["S", "M"], + "uncouthly": [], + "competed": [], + "teasinged": [], + "spokespeople": [], + "speech's": [], + "illiteracy's": [], + "glottises": [], + "plains": [], + "meteorites": [], + "shrubbiest": [], + "candidates": [], + "kindnesser": [], + "numskull's": [], + "disrupting": [], + "Warhol": ["M"], + "unsoundest": [], + "whys": [], + "busgirl's": [], + "Karyn's": [], + "syndicate'sing": [], + "fickleness's": [], + "Baltimore's": [], + "cabriolet": ["S", "M"], + "councilwoman's": [], + "tarries": [], + "accost's": [], + "megatons's": [], + "bridleds": [], + "wisps": [], + "roach": ["G", "M", "D", "S"], + "prefabbed": [], + "raced": [], + "Tunisia": ["M"], + "vomits's": [], + "emasculatingen": [], + "sandal": ["S", "M"], + "conceiving": [], + "plectra": [], + "clifftops": [], + "bouncers": [], + "bootees": [], + "educative": [], + "advises": [], + "Oxus's": [], + "rightsness": [], + "pith's": [], + "undo": [], + "khan'ses": [], + "armpit": ["M", "S"], + "visitor": ["M", "S"], + "unruffled": [], + "interventions": [], + "quicksands": [], + "complexes": [], + "sabot": ["M", "S"], + "damages": ["M"], + "shabbiest": [], + "dilettantes's": [], + "Herminia's": [], + "demographic": ["S", "M"], + "covering": [], + "ratification's": [], + "incorrect": ["Y"], + "zombie'ses": [], + "pinup's": [], + "petrology": ["M"], + "moil": ["M", "D", "S", "G"], + "boldly": [], + "receivership's": [], + "repelled": [], + "boodles": [], + "banes's": [], + "macaque": ["M", "S"], + "sacredliness": [], + "guillotine": ["D", "S", "M", "G"], + "descriptions": [], + "windowed": [], + "secessionists": [], + "skateboardsers": [], + "compactness": ["M"], + "bespattering": [], + "congratulations": [], + "Micheal": ["M"], + "genres": [], + "Bono's": [], + "noncorroding": [], + "wickedest": [], + "limiting": ["S"], + "perked": [], + "taffeta's": [], + "rugrats's": [], + "plover's": [], + "albacores": [], + "absurdist's": [], + "wantonness's": [], + "dissociate": ["G", "N", "D", "S"], + "creek's": [], + "reconvene": [], + "ensnaring": [], + "toothpaste": ["S", "M"], + "Mildred's": [], + "expounders": [], + "numbnessed": [], + "bonehead's": [], + "refugee's": [], + "Frenchman's": [], + "Rx": [], + "doodad": ["S", "M"], + "transference's": [], + "tokens": [], + "Beauregard": ["M"], + "earmarkeding": [], + "escapement": ["S", "M"], + "backstretch's": [], + "emboweringed": [], + "aromatherapy": ["M"], + "wiretap's": [], + "shoestring": ["S", "M"], + "churchman": ["M"], + "stetson": ["M", "S"], + "Na": ["M"], + "aggrievesing": [], + "ellipsoid's": [], + "lamest": [], + "interpenetrates": [], + "regress'sed": [], + "Schultz's": [], + "pottage's": [], + "unpleasing": [], + "adventure'sers": [], + "glove's": [], + "Athabaskans": [], + "japes": [], + "obligation's": [], + "rapport'ses": [], + "excesses": [], + "chyme": ["M"], + "butcher's": [], + "monster": ["S", "M"], + "childproofings": [], + "howitzer": ["S", "M"], + "hoecake's": [], + "curd's": [], + "polymerized": [], + "sexpot": ["M", "S"], + "incapable": [], + "shirring": ["M"], + "enforcers": [], + "pulsed": [], + "foes": [], + "terabit's": [], + "impasse's": [], + "weediest": [], + "ascendant's": [], + "forgiver": ["M"], + "reticence's": [], + "wheel": ["S", "M", "D", "R", "G"], + "upperclassman's": [], + "casehardeneding": [], + "Goolagong": ["M"], + "Dario's": [], + "tool": ["A", "D", "G", "S"], + "maxi'ses": [], + "Godzilla's": [], + "lacunae": [], + "solid's": [], + "refrigeratesing": [], + "excretion": ["M"], + "supplementing": [], + "Ferris": ["M"], + "confession's": [], + "slabs": [], + "smudge": ["D", "S", "M", "G"], + "monetizeds": [], + "tun'sed": [], + "clack": ["G", "M", "D", "S"], + "Intelsat": ["M"], + "hibernator'ses": [], + "Scott's": [], + "demonstration": ["M"], + "quinine's": [], + "publication": ["A", "S", "M"], + "Yalow's": [], + "Priam": ["M"], + "honey's": [], + "shinsplints's": [], + "conveys": [], + "Romanian": ["M", "S"], + "execution'ser": [], + "Mafia": ["M", "S"], + "silicate's": [], + "upgrade'sing": [], + "chicer": [], + "purposefulness's": [], + "include": ["G", "D", "S"], + "coincidence'ses": [], + "hoaxer": ["M"], + "cherry": ["S", "M"], + "Irish": ["M", "R"], + "counterpoint's": [], + "osculates": [], + "lustiness": ["M"], + "thereunto": [], + "mahogany": ["S", "M"], + "authorization'ses": [], + "oxen": [], + "expectings": [], + "Midway": ["M"], + "dozen's": [], + "dependable": ["U"], + "cremates": [], + "loneliness": ["M"], + "chenille's": [], + "relatives": [], + "potion": ["S", "M"], + "jihadist's": [], + "enough": ["M"], + "doorstops": [], + "Korzybski's": [], + "congressman's": [], + "laminated": [], + "frivolously": [], + "unmannerly": [], + "transnationals": [], + "conducted": [], + "elks": [], + "Lysistrata's": [], + "adagio'ses": [], + "obligatorily": [], + "scarper": ["D", "G"], + "enjoys": [], + "schilling": ["M", "S"], + "tasty": ["T", "R", "P"], + "vivarium's": [], + "Parnassus's": [], + "endueds": [], + "moonless": [], + "rumbaeding": [], + "decals": [], + "noncommercials": [], + "barrier'ses": [], + "atmospherics": ["M"], + "subpoena": ["G", "M", "D", "S"], + "parenthetical": ["Y"], + "lapel": ["S", "M"], + "shallot's": [], + "bestowed": [], + "equipage": ["M", "S"], + "immunological": [], + "liquidizer": ["M"], + "yuks": [], + "undergarments": [], + "sensations": [], + "slathersed": [], + "inaudibly": [], + "mammy's": [], + "Toronto's": [], + "Swazis": [], + "slanderers": [], + "lien's": [], + "fagot'sing": [], + "flossier": [], + "skin'ses": [], + "burred": [], + "sticking": [], + "coco'ses": [], + "dingo's": [], + "TLC's": [], + "acquirement": ["M"], + "USA": ["M"], + "parable's": [], + "experiment": ["M", "D", "R", "S", "Z", "G"], + "sophism's": [], + "donkeys": [], + "entrant's": [], + "Brownian's": [], + "sycophancy": ["M"], + "Luddite": ["M", "S"], + "share'sers": [], + "bourbons's": [], + "incessant": ["Y"], + "merchandising": ["M"], + "canard'ses": [], + "sewers": [], + "Rhodes": ["M"], + "dilutesing": [], + "Muhammadanism's": [], + "coiffures's": [], + "germicide's": [], + "overs": [], + "Aniakchak's": [], + "sterilization's": [], + "sanctimoniously": [], + "whatnot": ["M"], + "OKeding": [], + "quintets": [], + "atomizeder": [], + "climb's": [], + "wrackings": [], + "judicature": ["M"], + "charge": ["A", "E", "S", "D", "G", "M"], + "motorbiked": [], + "sickle'ses": [], + "truculent": ["Y"], + "tooter's": [], + "ionized": [], + "brides's": [], + "bluebell": ["M", "S"], + "sackful'ses": [], + "andante": ["S", "M"], + "blunderings": [], + "Les": ["M"], + "physiologist": ["M", "S"], + "subtenancy": ["M"], + "closes's": [], + "dding": ["K"], + "abuser'ses": [], + "yachtswoman": ["M"], + "copilots": [], + "peachy": ["T", "R"], + "Ohioan": ["S", "M"], + "waver'sed": [], + "calamities": [], + "shoots": [], + "echoes": ["A"], + "circular": ["S", "M", "Y"], + "jaundiced": [], + "desalinates": [], + "gypster": ["S", "M"], + "aisle": ["M", "S"], + "invader's": [], + "padlocking": [], + "signalmen": [], + "racketeding": [], + "sundry": ["S"], + "febrile": [], + "gleaneder": [], + "perinatal": [], + "dummy's": [], + "gentrifies": [], + "cowardice": ["M"], + "Schliemann": ["M"], + "Kirchhoff's": [], + "emblazonments": [], + "eights": [], + "Elvia's": [], + "miller's": [], + "truther's": [], + "switchingable": [], + "zloty": ["S", "M"], + "nearsightedness's": [], + "engines's": [], + "jiggling": [], + "temper's": [], + "racecourses": [], + "pallet's": [], + "minders": [], + "museds": [], + "Iphigenia's": [], + "onus'ses": [], + "exceedings": [], + "sighed": [], + "whisper's": [], + "periled": [], + "newsletters": [], + "testiness": ["M"], + "bravery": ["M"], + "haling": [], + "guested": [], + "David'ses": [], + "mountaineered": [], + "prefiguring": [], + "ignoringed": [], + "piccolo": ["M", "S"], + "thou's": [], + "Bharat": ["M"], + "betrays": [], + "commodities": [], + "chambermaid": ["M", "S"], + "cynics's": [], + "plaything": ["S", "M"], + "slanderer's": [], + "NE": ["M"], + "creche": ["S", "M"], + "phalanx's": [], + "freewheeling": [], + "swordfish'ses": [], + "Sunni": ["S", "M"], + "speculation's": [], + "emphatic": ["U"], + "winding's": [], + "slam's": [], + "putrid": [], + "jerkwater": [], + "quackery's": [], + "Orpheus's": [], + "babe's": [], + "whiting's": [], + "following's": [], + "housemother": ["S", "M"], + "brightens": [], + "granduncle's": [], + "tap's": [], + "goalkeeper": ["M", "S"], + "gurney": ["M", "S"], + "affectedly": [], + "grapefruit's": [], + "winterizes": [], + "carjackingses": [], + "McEnroe": ["M"], + "loudspeaker'ses": [], + "feature's": [], + "chopper'sed": [], + "imperceptibility's": [], + "aloha'ses": [], + "reformulate": [], + "also": [], + "poaching": ["M"], + "vergers": [], + "destructibility's": [], + "mercerizes": [], + "tranquilest": [], + "bowlines's": [], + "Sirius": ["M"], + "bleaching": [], + "doubloon's": [], + "Arizonans's": [], + "psychiatric": [], + "triad's": [], + "Mozambique": ["M"], + "guitarists's": [], + "guavas's": [], + "particle's": [], + "foolscap's": [], + "Appleton": ["M"], + "cognitional": [], + "Delphinus's": [], + "grumpier": [], + "stubble's": [], + "imitable": ["I"], + "aiding": [], + "chiropody": ["M"], + "peeping": [], + "Michiganders": [], + "minter's": [], + "Maoist": ["S", "M"], + "facecloth": ["M"], + "flabbergasting": [], + "Dunn's": [], + "livelongs": [], + "Elysee": ["M"], + "clangersing": [], + "babel": ["M", "S"], + "regardeding": [], + "course'ses": [], + "caraways": [], + "looteder": [], + "skein": ["M", "S"], + "copters": [], + "industriousness's": [], + "barbing": [], + "dame's": [], + "Gacrux": ["M"], + "Garbo": ["M"], + "goody": ["S", "M"], + "emcee's": [], + "acquaintanceship's": [], + "augustness's": [], + "octets": [], + "muss'sed": [], + "whacks": [], + "rattlebrains": [], + "physiognomies's": [], + "agriculturally": [], + "salad'ses": [], + "fillipeding": [], + "Frauen": [], + "haiku": ["M"], + "growth's": [], + "hesitateds": [], + "touches": [], + "shutting": [], + "aerospace": ["M"], + "promissory": [], + "poorness's": [], + "midrib": ["M", "S"], + "chicken": ["M", "D", "G"], + "warhead'ses": [], + "adequateness's": [], + "banters's": [], + "sensor's": [], + "bitingly": [], + "inveiglinged": [], + "antelopes": [], + "Gino's": [], + "philanthropy": ["S", "M"], + "seigneurs": [], + "harmonized": [], + "gone": ["Z", "R"], + "whiskersing": [], + "sobs": [], + "rubric's": [], + "combo's": [], + "swaddling": [], + "grain's": [], + "pennyweight's": [], + "hessian": [], + "clause's": [], + "sheaves": [], + "courthouse'ses": [], + "assignor's": [], + "VHF's": [], + "corroborating": [], + "adrenal's": [], + "patrician's": [], + "tapeworms": [], + "fright's": [], + "retest's": [], + "hustleder": [], + "tenderloin": ["S", "M"], + "seabirds": [], + "Cyclopes's": [], + "crisp'sed": [], + "faintness": ["M"], + "centenarians": [], + "boondogglinged": [], + "artworks": [], + "gauntest": [], + "rubbings": [], + "condition's": [], + "patrician": ["S", "M"], + "buttoneding": [], + "ficus": ["M"], + "rumblings's": [], + "bolus'ses": [], + "mange's": [], + "redbrick": [], + "speedy": ["T", "P", "R"], + "crochet's": [], + "Pontianak": ["M"], + "overload'sed": [], + "capability's": [], + "tuppence": [], + "punish": ["B", "L", "G", "D", "S"], + "Benchley": ["M"], + "intersessions": [], + "firelighter": [], + "spaceflight'ses": [], + "structuringed": [], + "hacienda's": [], + "penis'ses": [], + "abase": ["L", "G", "D", "S"], + "icicle": ["S", "M"], + "unfixes": [], + "fraudulently": [], + "gush": ["M", "D", "R", "S", "Z", "G"], + "dollars's": [], + "scuzzy": ["T", "R"], + "gayer": [], + "detergent's": [], + "Garry's": [], + "fullback's": [], + "mendicants's": [], + "Tulane": ["M"], + "singleds": [], + "stickpin's": [], + "creatively": [], + "Kraft": ["M"], + "impeded": ["U"], + "fascism's": [], + "Inuit'ses": [], + "runlet": ["S", "M"], + "materialize": ["D", "S", "G"], + "jailers": [], + "homebodies": [], + "thirst's": [], + "horseradish": ["M", "S"], + "truth'ser": [], + "Gillette": ["M"], + "grippe'sers": [], + "amniocenteses": [], + "cornballs": [], + "misnaminged": [], + "batten's": [], + "shiftiest": [], + "HHS": [], + "ticket": ["G", "S", "M", "D"], + "holistic": [], + "patios's": [], + "revolted": [], + "Seyfert": ["M"], + "modifiable": [], + "radius's": [], + "demises": [], + "etymologist's": [], + "profitability": ["M"], + "straitens": [], + "deployment": ["A", "M"], + "fortuitousliness": [], + "edifying": ["U"], + "impreciseness's": [], + "descriptively": [], + "Mordred's": [], + "tape's": [], + "Mg's": [], + "Tammie's": [], + "fences's": [], + "bracer's": [], + "splurge'sing": [], + "slot": ["M", "S"], + "apostrophe's": [], + "astonishmenting": [], + "Goteborg's": [], + "jugglinged": [], + "petites": [], + "film": ["M", "D", "G", "S"], + "clambereder": [], + "shackled": [], + "banalities": [], + "parting'ses": [], + "swap's": [], + "mailman's": [], + "untrue": ["R", "T"], + "womanizer's": [], + "medic": ["S", "M"], + "Indonesians": [], + "sulfuring": [], + "forgo": ["R", "Z", "G"], + "minibar": ["S"], + "reproach": ["G", "M", "D", "S", "B"], + "Marathon": ["M"], + "midways": [], + "joggle's": [], + "gravelsing": [], + "jangles's": [], + "voicelessness's": [], + "consequence's": [], + "spewing": [], + "prone": ["P"], + "daunteds": [], + "schussed": [], + "Tommy's": [], + "Tennesseans": [], + "Beyer": ["M"], + "Haifa": ["M"], + "sauropods": [], + "demodulation": [], + "queered": [], + "Johanna's": [], + "Eugenio": ["M"], + "upholsteringed": [], + "snowshoes's": [], + "skew's": [], + "fieldwork'ser": [], + "busboys": [], + "bougainvillea's": [], + "repulsion's": [], + "flytrap": ["S"], + "bros": [], + "transfiguring": [], + "boasters": [], + "trepidation's": [], + "Cecily": ["M"], + "preteens": [], + "bur'sly": [], + "chaplaincy's": [], + "junked": [], + "trait's": [], + "thigh": ["M"], + "appoint": ["A", "E", "L", "S", "V", "G", "D"], + "nonbreakable": [], + "Miskito's": [], + "fantail'ses": [], + "Parnassuses": [], + "brontosaur's": [], + "withholding's": [], + "forethought's": [], + "tabulate": ["D", "S", "G", "N", "X"], + "overprotective": [], + "Horthy": ["M"], + "shutout": ["S", "M"], + "O'Neill": ["M"], + "Johnathan's": [], + "cartel's": [], + "Aspen's": [], + "allayed": [], + "bicuspids": [], + "blazersing": [], + "tomboy's": [], + "saltinged": [], + "quo": ["H"], + "buskin's": [], + "Son": ["M"], + "link'sed": [], + "Fox": ["M", "S"], + "banjo's": [], + "expatriate": ["D", "S", "M", "G", "N"], + "swigging": [], + "streetcar": ["M", "S"], + "percolating": [], + "beagle's": [], + "tacitness's": [], + "sciences": [], + "just": ["R", "Y", "P", "T"], + "deportee": ["M", "S"], + "bowdlerizations": [], + "dazedly": [], + "elderberries's": [], + "ejaculation's": [], + "midnight": ["M"], + "lenience": ["M"], + "woodcarvings's": [], + "omnibus": ["M", "S"], + "acrostic": ["S", "M"], + "pantheon's": [], + "cottonsing": [], + "salves": [], + "Yules's": [], + "beavered": [], + "poinsettia": ["S", "M"], + "protectsed": [], + "subatomic": [], + "outgrowth": ["M"], + "strangulates": [], + "unaesthetic": [], + "visiting": [], + "karakul's": [], + "Tsongkhapa": ["M"], + "conspiracy's": [], + "congrats": ["M"], + "Sculley": ["M"], + "cons's": [], + "flaps": [], + "extinguishable": ["I"], + "preponderate": ["G", "D", "S"], + "circumscribeds": [], + "fating": [], + "inoculatinged": [], + "cockatrice's": [], + "taboo": ["M", "D", "S", "G"], + "Mohorovicic": ["M"], + "conspectus": ["M", "S"], + "slice'sers": [], + "Cheetos": ["M"], + "mowed": [], + "Louisa": ["M"], + "propulsion's": [], + "Vazquez": ["M"], + "vaporization": ["M"], + "medicals": [], + "encore": ["D", "S", "M", "G"], + "naysayer's": [], + "resented": [], + "tycoons": [], + "expo's": [], + "brutal": ["Y"], + "residual'ses": [], + "tantra": ["M"], + "barfedly": [], + "groundswells": [], + "watt'ses": [], + "lubricator's": [], + "Tertiary": ["M"], + "cootie": ["S", "M"], + "flutist's": [], + "main'sly": [], + "scissoringed": [], + "Tuamotu": ["M"], + "guttural's": [], + "nominator's": [], + "Albigensian": ["M"], + "tailgated": [], + "brownest": [], + "bimonthlies": [], + "Angelou's": [], + "diplomatist": ["M", "S"], + "affix's": [], + "buckskins": [], + "outpouring'ses": [], + "CRTs": [], + "qualification's": [], + "inheritor": ["S", "M"], + "newsgroup's": [], + "striding": [], + "Wales": ["M"], + "exchequers's": [], + "hikes": [], + "Novocaine": [], + "ignoramuses": [], + "demonized": [], + "disruptive": ["Y"], + "mate": ["M", "S"], + "juncos": [], + "showstopper'ses": [], + "heartensing": [], + "yarn'ses": [], + "Toby's": [], + "Mimosa's": [], + "ms": [], + "arbitrageur's": [], + "Merak's": [], + "snapdragon": ["S", "M"], + "Merthiolate": ["M"], + "demonstrative'sly": [], + "pick'sed": [], + "Mecca": ["M", "S"], + "ditcheds": [], + "reinf": [], + "adieu'ses": [], + "microcode": [], + "detachment": ["M", "S"], + "Ikhnaton": ["M"], + "peruke's": [], + "wriggle": ["M", "Z", "G", "D", "R", "S"], + "emporium": ["S", "M"], + "pursues": [], + "parapsychologist's": [], + "daguerreotyping": [], + "fitfully": [], + "leisure's": [], + "vicariously": [], + "chignon'ses": [], + "Rene": ["M"], + "depolarize": [], + "Macaulay": ["M"], + "hatter": ["S", "M"], + "dealerships": [], + "partnered": [], + "scruples": [], + "Orlando's": [], + "Montpelier's": [], + "caroused": [], + "sterilization": ["S", "M"], + "overbears": [], + "siege": ["M", "S"], + "cookery's": [], + "irregulars": [], + "freckles": [], + "franchisers's": [], + "unbosoming": [], + "Philemon": ["M"], + "bookable": [], + "ampule'ses": [], + "crazy's": [], + "crossbow": ["S", "M"], + "paginateds": [], + "Titicaca": ["M"], + "inconversion": [], + "avidity's": [], + "peafowls": [], + "fanciers": [], + "layouts": [], + "quietening": [], + "Akron's": [], + "misruled": [], + "raving": ["M"], + "hems": [], + "profounderly": [], + "Flora": ["M"], + "Muhammadanisms's": [], + "perkily": [], + "adaptability": ["M"], + "relativistic": [], + "pacesetters's": [], + "corpses": [], + "beech'ses": [], + "Ahriman": ["M"], + "Hobbs's": [], + "faithless": ["P", "Y"], + "vindicatesing": [], + "potheads": [], + "Unitarianisms": [], + "Kidd's": [], + "medians": [], + "blindfolds's": [], + "Frieda": ["M"], + "ideologues": [], + "compatibility": ["I", "M"], + "flange": ["M", "S"], + "oddball": ["S", "M"], + "Syrian's": [], + "surcharges": [], + "chinking": [], + "brooking": [], + "creameder": [], + "airtime": ["M"], + "reimbursed": [], + "curlew's": [], + "Americanism": ["M", "S"], + "capsulizesing": [], + "lustiest": [], + "school": ["S", "G", "M", "D"], + "harvest's": [], + "ailedment": [], + "grimaces's": [], + "db": [], + "negotiator'ses": [], + "mall's": [], + "Theodora": ["M"], + "sentiment's": [], + "temblor'ses": [], + "uninitiated": [], + "mescaline": ["M"], + "bootstrapping": [], + "antigens's": [], + "apricot'ses": [], + "Jezebels's": [], + "quick'sen": [], + "townswoman": ["M"], + "proportions": [], + "postboxes": [], + "moneybag": ["M", "S"], + "surgery's": [], + "predecease": ["G", "D", "S"], + "salespersons": [], + "transformations's": [], + "cleat'ses": [], + "pyramid": ["G", "S", "M", "D"], + "office'sers": [], + "exuded": [], + "unidentifiable": [], + "roof's": [], + "parlance's": [], + "scrimshawed": [], + "bureaucratize": ["G", "D", "S"], + "squared": [], + "hallucinogenic": ["S", "M"], + "hairpins": [], + "waltz'sed": [], + "promontory": ["S", "M"], + "mangeder": [], + "pooch": ["M", "D", "S", "G"], + "Salvadorans": [], + "eldercare": ["M"], + "googling": [], + "riddle's": [], + "gnash": ["M", "D", "S", "G"], + "fibula's": [], + "internationalist": ["S", "M"], + "analogues's": [], + "letterhead's": [], + "minstrel": ["S", "M"], + "predigestinged": [], + "gulping": [], + "sphagnum'ses": [], + "masticating": [], + "easements": [], + "worry": ["Z", "G", "D", "R", "S", "M", "J"], + "Gap's": [], + "baccalaureates's": [], + "ugh": [], + "Corfu": ["M"], + "appealing": ["U", "Y"], + "untruthfulness": [], + "lag's": [], + "affluently": [], + "Melchizedek": ["M"], + "scutcheon's": [], + "futurologist": ["M", "S"], + "pyx": ["M", "S"], + "heehaw": ["S", "M", "D", "G"], + "padre's": [], + "notifiable": [], + "progression": ["M", "S"], + "masher": ["M"], + "torrid": ["Y", "P"], + "doggiest": [], + "gerontologists": [], + "curried": [], + "refrigerate": ["D", "S", "G", "N"], + "gentlefolk'ses": [], + "freebaseds": [], + "purees": [], + "analgesic": ["S", "M"], + "quotability": ["M"], + "airfield": ["S", "M"], + "UT's": [], + "mistreatment's": [], + "interrogatory": ["S", "M"], + "located": [], + "unconscionable": [], + "thwarts's": [], + "verrucas": [], + "cartwheel": ["G", "M", "D", "S"], + "splotched": [], + "dressy": ["T", "P", "R"], + "muffled": [], + "seriously": [], + "psychiatry": ["M"], + "revision's": [], + "cantonal": [], + "outcomes": [], + "dungeons": [], + "idiocies": [], + "Tabernacle": ["M", "S"], + "afflicting": [], + "deflatingen": [], + "philharmonics": [], + "jerkiest": [], + "keep's": [], + "disbursement'ses": [], + "fleeted": [], + "liberalism": ["M"], + "nags": [], + "proportionallies": [], + "theodolite": ["S"], + "wardrobe": ["S", "M"], + "tallying": [], + "nonesuch": ["M", "S"], + "sniveling": [], + "toileted": [], + "grasslands": [], + "jealously": [], + "tripwires": [], + "toerag": ["S"], + "prancer's": [], + "quizzing": [], + "misogamist'ses": [], + "grosgrain's": [], + "ameliorates": [], + "appreciations": [], + "compacterly": [], + "workbench's": [], + "illiterate'sly": [], + "expurgateds": [], + "booties": [], + "tuneups's": [], + "glassblowers": [], + "Glaswegian": ["S", "M"], + "limning": [], + "Vernon": ["M"], + "nonstarter'ses": [], + "spellbinding": [], + "nobleness": ["M"], + "jinked": [], + "gaggle": ["S", "M"], + "approveds": [], + "crosswalk'ses": [], + "relaxed": [], + "midships": [], + "conifer": ["S", "M"], + "baroness'ses": [], + "gypsters": [], + "mischievousness's": [], + "Jayawardene's": [], + "kids's": [], + "carder": ["M", "S"], + "SOB's": [], + "formalization": ["M"], + "Mennonite": ["M", "S"], + "Racine's": [], + "jobbers": [], + "flapper": ["S", "M"], + "costume's": [], + "runner's": [], + "authenticity": ["M"], + "immigrant": ["S", "M"], + "ricotta's": [], + "crowdfunding": [], + "betideds": [], + "beamsing": [], + "retrogressing": [], + "antisocially": [], + "houseparents's": [], + "impersonal": ["Y"], + "digression": ["M", "S"], + "twang's": [], + "wusses": [], + "MySpace": ["M"], + "condors's": [], + "Karaganda": ["M"], + "immortallies": [], + "purl": ["G", "M", "D", "S"], + "hellish": ["Y", "P"], + "noneffective": [], + "delis": [], + "sickeneding": [], + "ratters": [], + "Teutonic": ["M"], + "Commons": ["M"], + "homeworkers": [], + "segregationist'ses": [], + "Alpo": ["M"], + "handsome": ["P", "Y", "T", "R"], + "neoconservative": ["S", "M"], + "diddlers": [], + "discerningly": [], + "antisepsis": ["M"], + "Rita": ["M"], + "accessorize": ["D", "S", "G"], + "arbutuses": [], + "perusals": [], + "errs": [], + "pageboy": ["S", "M"], + "mugwumps": [], + "referring": [], + "backyard's": [], + "trumpeted": [], + "salutatorian'ses": [], + "breeze's": [], + "patchily": [], + "pentagram's": [], + "tubfuls": [], + "fool'sed": [], + "transpositions": [], + "brightened": [], + "civics": ["M"], + "instate": ["A", "G", "D", "S"], + "cockfightings": [], + "fruitful": ["Y", "P"], + "tread's": [], + "nimbleness": ["M"], + "dehumanization": [], + "different": ["I", "Y"], + "artery's": [], + "plume": ["M", "S"], + "potentiality": ["S", "M"], + "possibilities's": [], + "barbershop's": [], + "Dagwood": ["M"], + "skirt": ["S", "M", "D", "G"], + "aftershock": ["S", "M"], + "despondence's": [], + "Milken": ["M"], + "forwarder's": [], + "icecaps": [], + "dynamiter": ["M"], + "past": ["A", "M", "S"], + "furor's": [], + "entertaining'sly": [], + "Nazis's": [], + "flysheets": [], + "clip's": [], + "portcullises": [], + "whatsits": [], + "typology's": [], + "rapscallion'ses": [], + "bandageds": [], + "smokescreens's": [], + "chattiness's": [], + "halfheartedly": [], + "elasticize": ["D", "S", "G"], + "revolver": ["M"], + "panpipes's": [], + "lashesing": [], + "innervation": ["M"], + "thickener": ["M"], + "oil's": [], + "staled": [], + "manhandle": ["G", "D", "S"], + "cholera's": [], + "maltsing": [], + "sugar": ["G", "S", "M", "D"], + "Berenice's": [], + "humans's": [], + "senility's": [], + "squawker": ["M"], + "humidity's": [], + "slowings": [], + "wristbands": [], + "rifle": ["M", "Z", "G", "D", "R", "S"], + "chewiest": [], + "tradition": ["M", "S"], + "equinox": ["M", "S"], + "frazzle'sing": [], + "Lenore": ["M"], + "reallocate": [], + "Cf's": [], + "model'sed": [], + "snidely": [], + "cheetah": ["M"], + "marlin's": [], + "semiautomatics": [], + "caster's": [], + "sandwiched": [], + "debilitating": [], + "bagpipe": ["M", "Z", "R", "S"], + "fearless": ["P", "Y"], + "thither": [], + "novitiate": ["M", "S"], + "trashcan": ["M", "S"], + "brew'sed": [], + "Phillip's": [], + "cowbird'ses": [], + "pearliest": [], + "stargaze": ["D", "R", "S", "Z", "G"], + "Herzegovina's": [], + "mag's": [], + "sterilize": ["D", "R", "S", "Z", "G"], + "sledding": [], + "outcome'ses": [], + "ens": [], + "refreshed": [], + "misspeaking": [], + "virgule'ses": [], + "tampered": [], + "Alisha's": [], + "murmur'sed": [], + "spritzer": ["M"], + "Lourdes": ["M"], + "popes": [], + "lucubrationed": [], + "exorcist's": [], + "guv": ["S"], + "unset": [], + "ceremonies": [], + "Madeira": ["S", "M"], + "gusseting": [], + "pasteboard": ["M"], + "whitewall's": [], + "makeshifts": [], + "countered": [], + "fictionalization": ["S", "M"], + "Romano": ["M"], + "interrupt": ["Z", "G", "M", "D", "R", "S"], + "unrestrained": [], + "paginating": [], + "starriest": [], + "brokerage's": [], + "Berlitz": ["M"], + "jump": ["M", "D", "R", "S", "Z", "G"], + "Vespucci's": [], + "Sierpinski's": [], + "blinder's": [], + "friendliness": ["U", "M"], + "Altman's": [], + "interjecteds": [], + "extempore": [], + "statesmanship": ["M"], + "morphology's": [], + "loaneder": [], + "shay'ses": [], + "act's": [], + "uproots": [], + "holey": [], + "lusteder": [], + "plate'ses": [], + "deleteds": [], + "truckload": ["S", "M"], + "Tudors": [], + "soon": ["R", "T"], + "grammar'ses": [], + "plaiting": [], + "subleases": [], + "mileages": [], + "Ezra": ["M"], + "dereliction": ["M"], + "damson'ses": [], + "miscalculateds": [], + "enfeebling": [], + "dickey": ["S", "M"], + "schismatic": ["S", "M"], + "minimized": [], + "ponieds": [], + "prostituted": [], + "coatings": [], + "pit": ["S", "M"], + "unbeaten": [], + "seize": ["G", "D", "S"], + "transships": [], + "epistle": ["S", "M"], + "Konrad": ["M"], + "Kb's": [], + "catacombs's": [], + "discontinuous": [], + "incisors": [], + "Benghazi": ["M"], + "interception'ses": [], + "spangle's": [], + "headboards's": [], + "pillars": [], + "springtime's": [], + "ankhs": [], + "firewall's": [], + "obsessiveness's": [], + "commentatesing": [], + "concerned": ["U", "Y"], + "fisticuffs's": [], + "capture's": [], + "peddler's": [], + "planetarium's": [], + "how're": [], + "underemployment": ["M"], + "muffed": [], + "snippets's": [], + "niobium's": [], + "chanson's": [], + "weaves's": [], + "administers": [], + "enhancinged": [], + "balloted": [], + "penultimates's": [], + "awning's": [], + "feebleness": ["M"], + "triviality's": [], + "indigo's": [], + "oven's": [], + "visibly": ["I"], + "Cruise": ["M"], + "Trudeau's": [], + "kooks": [], + "Burma": ["M"], + "derogation": ["M"], + "midpoint": ["M", "S"], + "Mainers": [], + "biennium'ses": [], + "Xe": ["S", "M"], + "instruction": ["M", "S"], + "eyewitness's": [], + "rudiment": ["S", "M"], + "literal's": [], + "snifter's": [], + "hassock's": [], + "Guayaquil": ["M"], + "hackney'sed": [], + "Azov": ["M"], + "readings": [], + "slugger": ["S", "M"], + "tiresome": ["P", "Y"], + "seductively": [], + "debt's": [], + "burr": ["M", "D", "G", "S"], + "ancestress": ["M", "S"], + "trapezium's": [], + "discriminating": ["U"], + "ER": [], + "seeder's": [], + "edifice": ["S", "M"], + "pimentos": [], + "pall": ["M", "D", "S", "G"], + "goblet's": [], + "polyphony's": [], + "spine": ["S", "M"], + "blotter's": [], + "spading": [], + "loudly": [], + "Conrail's": [], + "relievinged": [], + "bloodiness": ["M"], + "distinctness's": [], + "oppression's": [], + "wingding's": [], + "pectoral's": [], + "vagrancy": ["M"], + "Cockney's": [], + "weatherperson'ses": [], + "inoculation": ["M", "S"], + "clavier's": [], + "abductor's": [], + "blowgun": ["M", "S"], + "pinstripe": ["D", "S", "M"], + "dyes's": [], + "acupuncturist": ["S", "M"], + "wish's": [], + "Mandy's": [], + "overthinksing": [], + "unconfirmed": [], + "Alexandria": ["M"], + "sylvan": [], + "jackhammer'ses": [], + "rapists": [], + "queering's": [], + "dipstick": ["S", "M"], + "guestbooks's": [], + "donnybrook": ["M", "S"], + "RAM's": [], + "chewersing": [], + "importuninged": [], + "resignations's": [], + "handcuff's": [], + "angiosperms's": [], + "snuffing": [], + "monoplanes": [], + "Gondwanaland's": [], + "nudge's": [], + "stales": [], + "nonviolence": ["M"], + "wringer": ["M"], + "profoundly": [], + "Hendricks": ["M"], + "requital's": [], + "Congress": ["M", "S"], + "repeatably": [], + "quay": ["M", "S"], + "glazes": [], + "Hapsburg's": [], + "Pyotr's": [], + "subpoena's": [], + "guiltily": [], + "umbel": ["S", "M"], + "devilry's": [], + "spiels's": [], + "crusting": [], + "snaked": [], + "cs": [], + "wiretap": ["M", "S"], + "gateways": [], + "impression's": [], + "tailpipe's": [], + "pinheads": [], + "mashed": [], + "perpetrator": ["M", "S"], + "Seaborg": ["M"], + "Dodge's": [], + "cottars": [], + "sensitizesing": [], + "Lopez's": [], + "publicist'ses": [], + "nonirritating": [], + "damsons": [], + "imperial's": [], + "swayback's": [], + "antipodes": ["M"], + "builderers": [], + "languorously": [], + "tubful's": [], + "unobservant": [], + "transshipment's": [], + "entrepreneur's": [], + "semiconscious": [], + "manumissions's": [], + "faxes": [], + "route's": [], + "equalizinged": [], + "brights": ["M"], + "laterals": [], + "class'sed": [], + "goalkeeper'ses": [], + "tapir's": [], + "issue": ["A", "D", "S", "M", "G"], + "derisively": [], + "sportswear": ["M"], + "Bulganin": ["M"], + "wankers": [], + "heartrending": ["Y"], + "Orwellian's": [], + "kielbasa'ses": [], + "palpate": ["D", "S", "G", "N"], + "pedicab": ["S", "M"], + "showers": [], + "obfuscation's": [], + "brawler": ["M"], + "loathing's": [], + "viol's": [], + "accord's": [], + "morph": ["G", "D"], + "nucleateds": [], + "enlivening": [], + "compositely": [], + "mold": ["M", "D", "R", "J", "S", "Z", "G"], + "cracks's": [], + "jazz": ["M", "D", "S", "G"], + "skulls": [], + "roundup's": [], + "carton": ["M", "S"], + "pseudos": [], + "acceptation": ["M", "S"], + "smuttier": [], + "sport": ["S", "M", "D", "G", "V"], + "Tagalogs's": [], + "Gehrig's": [], + "fleck's": [], + "manometers": [], + "Garvey": ["M"], + "Marciano": ["M"], + "doubtfulness": ["M"], + "dupe'sers": [], + "laciest": [], + "capitalizing": [], + "eyewitness": ["M", "S"], + "coalface's": [], + "eloquence": ["M"], + "Aurora's": [], + "boinked": [], + "gibinged": [], + "delineating": [], + "slakes": [], + "adjudicatory": [], + "confidingly": [], + "emissaries's": [], + "corona": ["S", "M"], + "guttereding": [], + "clevererly": [], + "scold's": [], + "poniard's": [], + "spoil": ["C", "S", "D", "R", "Z", "G"], + "Brobdingnag": ["M"], + "toboggan'sed": [], + "housewares": ["M"], + "revelsers": [], + "discombobulateds": [], + "snob's": [], + "floateder": [], + "demeanor's": [], + "plagiarizes": [], + "smudgier": [], + "Indonesians's": [], + "vlf": [], + "pavements": [], + "charger": ["S", "M"], + "cerebrates": [], + "waltzersing": [], + "browsed": [], + "malignity's": [], + "logbooks": [], + "frightfulness's": [], + "Tate's": [], + "injures": [], + "envoy": ["S", "M"], + "westernsers": [], + "petunia's": [], + "mobilizer": ["S", "M"], + "wolfeds": [], + "warmeder": [], + "percentile": ["S", "M"], + "shovinged": [], + "speedup's": [], + "perm's": [], + "leghorns": [], + "Sebastian": ["M"], + "decoyed": [], + "minnow": ["S", "M"], + "workstation": ["M", "S"], + "descent": [], + "floes": [], + "narcotizing": [], + "specimens": [], + "joshers": [], + "buccaneered": [], + "visions": [], + "marvel's": [], + "nullifying": [], + "toughenersing": [], + "bobsledder'ses": [], + "gnawings": [], + "vociferousness": ["M"], + "forestation's": [], + "Oise": ["M"], + "whoop": ["S", "M", "D", "R", "Z", "G"], + "boxrooms": [], + "philodendron's": [], + "development": ["A", "S", "M"], + "Louise": ["M"], + "slaps": [], + "hitchers": [], + "scheduleds": [], + "pompadoured": [], + "lapwing'ses": [], + "mole": ["M", "S"], + "vocative'ses": [], + "whispering": [], + "Ozark": ["M", "S"], + "practicability": ["M"], + "Richmond": ["M"], + "kappas's": [], + "prophecies's": [], + "hairball": ["M", "S"], + "rustiest": [], + "arrowroot's": [], + "trans": ["I"], + "adversenesser": [], + "indolence": ["M"], + "Salvadoran's": [], + "Freetown": ["M"], + "triple": ["M", "G", "D", "S"], + "Dannie's": [], + "rape": ["M", "S"], + "sounderly": [], + "belatedly": [], + "outreacheds": [], + "takeouts": [], + "Owens": ["M"], + "fencers": [], + "retrovirus": ["M", "S"], + "homepage": ["M", "S"], + "Angelica": ["M"], + "weltering's": [], + "derepopulate": [], + "Leola": ["M"], + "fastbacks": [], + "tester's": [], + "psychoactive": [], + "scenes": [], + "backpedals": [], + "premises's": [], + "shrike's": [], + "untranslatable": [], + "Detroit's": [], + "Loafers's": [], + "medallions's": [], + "Lesotho's": [], + "rankle": ["D", "S", "G"], + "trims": [], + "masterwork's": [], + "harmony's": [], + "mi": ["M", "N", "X"], + "practicals's": [], + "oldies's": [], + "denigratingen": [], + "barbiturates's": [], + "voltage": ["M", "S"], + "mercenaries's": [], + "recipe": ["S", "M"], + "graham": ["S"], + "hatchecks's": [], + "jam": ["S", "M"], + "Elba's": [], + "unflaggingly": [], + "firstborns": [], + "Mayra": ["M"], + "brindled": [], + "cadgers": [], + "anchorpeople": [], + "achiever": ["M"], + "illogicality": ["M"], + "Yorktown's": [], + "kiosks's": [], + "vhf": [], + "archness's": [], + "Burundi": ["M"], + "benightedly": [], + "spliffs": [], + "backbitersing": [], + "ministrant'ses": [], + "skydives": [], + "repels": [], + "pesos": [], + "unladylike": [], + "asteroid'ses": [], + "dz": [], + "passbook's": [], + "touting": [], + "whirlpool'ses": [], + "mick": ["S"], + "Olenek": ["M"], + "posturingings": [], + "Southwest'ses": [], + "nectarine'ses": [], + "secretion": ["M"], + "toolmaker": ["M", "S"], + "plunksing": [], + "gauges": [], + "homeworkerers": [], + "Arkansans": [], + "harpsichord'ses": [], + "hasps": [], + "gangsta": ["S"], + "hobbyhorse's": [], + "breastplates": [], + "suitableness's": [], + "dusterers": [], + "futility": ["M"], + "anthropomorphic": [], + "presses": [], + "slushiness's": [], + "Robert's": [], + "caching": [], + "accosted": [], + "internalization's": [], + "taillight's": [], + "soberness's": [], + "huskeder": [], + "pencilings": [], + "eastbound": [], + "cloyed": [], + "doorknockers": [], + "herbalists": [], + "carcasses": [], + "defunct": [], + "fellerers": [], + "bravado": ["M"], + "Velveeta's": [], + "circulars's": [], + "inc": ["T", "G", "D"], + "Montrachet": ["M"], + "motherliness's": [], + "slipcover'ses": [], + "nonpayments": [], + "flightless": [], + "cramps's": [], + "almond's": [], + "ovate": ["N", "X"], + "contrariness": ["M"], + "nativities's": [], + "emulsifies": [], + "scrumming": [], + "Epicurus's": [], + "reclaimable": [], + "probinged": [], + "corporeal": ["Y"], + "chirped": [], + "Prophets": [], + "Gnostic's": [], + "Dreiser": ["M"], + "Harlem": ["M"], + "Giacometti's": [], + "timeworn": [], + "leavings": ["M"], + "sled'ses": [], + "scruffs's": [], + "looniers": [], + "mustering": [], + "occultists's": [], + "flotilla's": [], + "variation": ["M"], + "cords": [], + "burgled": [], + "mutations": [], + "beguines's": [], + "assaulteder": [], + "propping": [], + "purely": [], + "wildflowers": [], + "bollixing": [], + "imperilment's": [], + "naivete": ["M"], + "obsessions": [], + "penance": ["M", "S"], + "corporations": [], + "obligating": [], + "Anibal": ["M"], + "larcenists's": [], + "petroleum's": [], + "Freetown's": [], + "voyeur": ["M", "S"], + "worship": ["Z", "G", "S", "M", "D", "R"], + "demigoddess": ["M", "S"], + "zealotry's": [], + "concretelying": [], + "olfactories's": [], + "Shi'ite": ["M"], + "crumby": ["T", "R"], + "Bastille's": [], + "overbite'ses": [], + "honeymoon": ["Z", "G", "M", "D", "R", "S"], + "spiffiest": [], + "UNIX": ["M"], + "Samoset's": [], + "underlines": [], + "claw": ["C", "S", "G", "D"], + "furrowed": [], + "psychometric": [], + "tonsure'sing": [], + "saurian": [], + "serology": ["M"], + "scrappy": ["T", "R"], + "nailsing": [], + "foolishly": [], + "washables": [], + "domes": [], + "randomness": ["M", "S"], + "Aquila": ["M"], + "grader's": [], + "Alice": ["M"], + "handheld's": [], + "rambling": [], + "riptide'ses": [], + "pinkers": [], + "rooter": ["M"], + "Stoic": ["S", "M"], + "unforgiving": [], + "marquise's": [], + "collator": ["M", "S"], + "Czechoslovak": [], + "taciturnity": ["M"], + "wedges's": [], + "airing's": [], + "unfriendliness": [], + "cheweder": [], + "discussant's": [], + "quarantining": [], + "coattails": [], + "cable's": [], + "escrows": [], + "Amelia": ["M"], + "baobab": ["S", "M"], + "falsity's": [], + "polarizeds": [], + "megapixels's": [], + "plateaued": [], + "reckoning": ["M"], + "paraplegic's": [], + "turnips": [], + "volcanic": [], + "riskiness": ["M"], + "antedateds": [], + "safety's": [], + "rumbaing": [], + "sensitizeds": [], + "murkiness": ["M"], + "caper'sed": [], + "barrier's": [], + "foreground": ["G", "M", "D", "S"], + "nanoseconds's": [], + "commandants": [], + "ophthalmologists's": [], + "aceds": [], + "Palestine": ["M"], + "duplicitous": [], + "demolition'ses": [], + "Cl": ["M", "V"], + "schematizing": [], + "onsite": [], + "racking": [], + "maxims's": [], + "gallivantings": [], + "Boolean's": [], + "screech": ["G", "M", "D", "S"], + "Marconi": ["M"], + "wields": [], + "BR": [], + "protestation": ["M", "S"], + "hymnal'ses": [], + "mentalists's": [], + "Archimedes's": [], + "Columbus": ["M"], + "fiberglass": ["M"], + "lovinged": [], + "hairbreadth": ["M"], + "economics's": [], + "tsunamis's": [], + "carom's": [], + "scent": ["C", "M", "S"], + "Gustavo's": [], + "wildebeest'ses": [], + "hive": ["M", "G", "D", "S"], + "unmodified": [], + "morphs": [], + "saint": ["M", "D", "Y", "S"], + "redactors's": [], + "vale'ses": [], + "normalize": ["D", "S", "G"], + "catchier": [], + "performerers": [], + "NASCAR's": [], + "distancing": [], + "collarbones's": [], + "spills": [], + "engages": [], + "maximums's": [], + "commonweal": ["M", "H"], + "enduresable": [], + "farmhands": [], + "mortarboards": [], + "country": ["S", "M"], + "profession's": [], + "swashbucklers": [], + "imbiber": ["M"], + "Thomism": ["M"], + "timbering": [], + "siblings": [], + "carnality": ["M"], + "refiners": [], + "Jewess's": [], + "cagily": [], + "legislature's": [], + "Bradstreet": ["M"], + "pump": ["Z", "G", "M", "D", "R", "S"], + "stains": [], + "necrophiliac": ["S"], + "Mirfak's": [], + "wool's": [], + "spacecraft'ses": [], + "Mosley's": [], + "liberating": [], + "opening's": [], + "companionably": [], + "leasing": [], + "emigrations": [], + "mainlands": [], + "superintendence's": [], + "miniaturist'ses": [], + "backhand's": [], + "diaphanous": [], + "fleetingness": ["M"], + "optimization's": [], + "bourbon's": [], + "yeps's": [], + "hypnotically": [], + "audaciously": [], + "craziers": [], + "stepping": [], + "afterburner": ["M", "S"], + "Charity's": [], + "WYSIWYG": [], + "victimization": ["M"], + "stimulateds": [], + "warranteds": [], + "horseflesh's": [], + "attestsed": [], + "splendor": ["M", "S"], + "Barrie's": [], + "silenced": [], + "dosshouse": ["S"], + "modernliness": [], + "orthodoxy": ["S", "M"], + "lenience's": [], + "taxpaying": [], + "undersell": ["G", "S"], + "intake": [], + "oxygenating": [], + "id'sly": [], + "planking": ["M"], + "amusements": [], + "paltriness's": [], + "pantheists": [], + "invasive": [], + "misplacingment": [], + "trickles": [], + "saddlebags": [], + "explicates": [], + "Truffaut": ["M"], + "bushings": [], + "wished": [], + "payees's": [], + "housebreaks": [], + "fingerprintsing": [], + "scroungiest": [], + "chasubles": [], + "exiguity's": [], + "hennaeding": [], + "secondersing": [], + "swooshed": [], + "onerously": [], + "advantages": [], + "beef's": [], + "surety": ["S", "M"], + "nitpickersing": [], + "unlikeliest": [], + "topsails's": [], + "stockpilinged": [], + "oligopolies's": [], + "ripsaw's": [], + "chard's": [], + "craftspeople": [], + "handbag's": [], + "dustiness's": [], + "closingsness": [], + "cynicism's": [], + "pictograph": ["M"], + "speeder": ["M"], + "cracklesings": [], + "notch": ["G", "M", "D", "S"], + "piratical": ["Y"], + "lameliers": [], + "ashcan'ses": [], + "hairbrush's": [], + "alarmists": [], + "Bobby's": [], + "skydiver": ["M"], + "gilt's": [], + "amid": [], + "befuddlemented": [], + "slaking": [], + "perform": ["S", "D", "R", "Z", "G"], + "fanfares": [], + "diminution": ["S", "M"], + "disport": [], + "abominatingen": [], + "dropkicks": [], + "minesens": [], + "tinselings": [], + "Bradley's": [], + "Reaganomics": ["M"], + "sobriquet": ["S", "M"], + "More's": [], + "cribber": ["M", "S"], + "ridinger": [], + "miss": ["E", "D", "S", "G", "V"], + "wisher's": [], + "Cambridge": ["M"], + "disheveling": [], + "salamis's": [], + "jaggedness": ["M"], + "unifiesen": [], + "dockworker's": [], + "wingtips": [], + "czarinas": [], + "squash's": [], + "countersunk": [], + "marriages's": [], + "pretender's": [], + "tapping": [], + "tinge's": [], + "whodunit's": [], + "phonemic": [], + "roughhouse": ["M", "G", "D", "S"], + "mussy": ["T", "R"], + "torchlight's": [], + "Achernar's": [], + "skated": [], + "slenderness's": [], + "vacillated": [], + "houseboats": [], + "Citigroup": ["M"], + "fests": [], + "deities's": [], + "trickierness": [], + "chaises": [], + "tandems's": [], + "Angelita": ["M"], + "buckled": [], + "servos": [], + "splashiness": ["M"], + "villas's": [], + "peregrination": ["M"], + "Islamism's": [], + "sidewall's": [], + "acceptation's": [], + "cautioneding": [], + "unpleasantness": [], + "dotcoms's": [], + "hoop'sed": [], + "Diem's": [], + "mistake": ["B", "M", "G", "S"], + "orangery": ["S", "M"], + "marbleizes": [], + "balds": [], + "flash'sed": [], + "Catt": ["M"], + "snivelersing": [], + "evaporationed": [], + "abnormalities": [], + "hyphenationsed": [], + "resembles": [], + "anarchically": [], + "dis": ["M"], + "scariness's": [], + "irrupteding": [], + "reproducer": [], + "boulevards": [], + "RAM": ["S", "M"], + "sackerings": [], + "mainspring's": [], + "reprehension": ["M"], + "wheezeds": [], + "Angelina": ["M"], + "duchy's": [], + "corpulence": ["M"], + "classmate": ["M", "S"], + "dendrites": [], + "highwayman's": [], + "orthodox": ["U"], + "townsman": ["M"], + "Khrushchev": ["M"], + "ponies": [], + "tasseleds": [], + "manipulations": [], + "Amie's": [], + "wakening": [], + "toots": [], + "piteousness": ["M"], + "surmisinged": [], + "combers": [], + "sextets": [], + "bridles's": [], + "rumblings": [], + "elision": ["M", "S"], + "runabouts": [], + "lumbering's": [], + "cheerio": ["M", "S"], + "balalaika'ses": [], + "VIP": ["S", "M"], + "exults": [], + "middies's": [], + "haunted": [], + "shopping": ["M"], + "Roxanne": ["M"], + "propeller": ["S", "M"], + "rampant": ["Y"], + "sexist's": [], + "prohibiting": [], + "custodians": [], + "combos": [], + "options": [], + "namely": [], + "charter": ["A", "S", "G", "D"], + "punishment": ["M", "S"], + "crumbles": [], + "operetta": ["S", "M"], + "bellybutton's": [], + "deconsign": [], + "terabytes": [], + "trials": [], + "fracking": [], + "participants": [], + "suppliant's": [], + "scourer": ["M"], + "rectifiersing": [], + "compresseds": [], + "sufficiently": [], + "acquiescence": ["M"], + "EEC": ["M"], + "stag's": [], + "pedigreed": [], + "preciousness": ["M"], + "fluorine's": [], + "tuckering": [], + "baron": ["M", "S"], + "Ukrainian": ["S", "M"], + "responsible": [], + "vouchers": [], + "goofy": ["R", "P", "T"], + "welsher": ["M"], + "mange'sers": [], + "TNT": ["M"], + "imprinting": [], + "pubs's": [], + "fatigueds": [], + "twittereds": [], + "swings": [], + "cyan's": [], + "affects": [], + "amercingment": [], + "plenitude's": [], + "groundless": ["Y"], + "lampblack": ["M"], + "philatelist'ses": [], + "spoilsport'ses": [], + "strudels": [], + "boomerang": ["M", "D", "G", "S"], + "deduce": ["G", "D", "S"], + "antonymous": [], + "girds": [], + "Sumter's": [], + "Oceanside": [], + "maroon": ["M", "D", "G", "S"], + "flowerpot's": [], + "downloading": [], + "would've": [], + "stowaway": ["M", "S"], + "formalizing": [], + "Wollongong": ["M"], + "term'sed": [], + "pussy's": [], + "packet": ["M", "S"], + "dilation's": [], + "sureties": [], + "stilts": [], + "rescind": ["S", "D", "G"], + "circumnavigation": ["M"], + "taxidermist's": [], + "honeycomb'sed": [], + "Clive": ["M"], + "mien": ["M"], + "barbecue's": [], + "chillers": [], + "preadolescence": ["S", "M"], + "raise'sers": [], + "charlie": ["S"], + "portraysing": [], + "referrals": [], + "phonetics": ["M"], + "pissed": [], + "nerdiest": [], + "clocked": [], + "VLF": ["M"], + "blowing": [], + "police'sing": [], + "mantises": [], + "knowsable": [], + "Lochinvar's": [], + "scions": [], + "Augsburg": ["M"], + "Honolulu's": [], + "Fuzzbuster's": [], + "heme's": [], + "oddness's": [], + "paralegal": ["M", "S"], + "skylarking's": [], + "gruffer": [], + "gradients": [], + "sunbather's": [], + "encirclement's": [], + "participant": ["S", "M"], + "arbor's": [], + "Lutherans": [], + "explosive's": [], + "confrontations's": [], + "vitality": ["M"], + "heretical": [], + "tabulating": [], + "gracing": [], + "kinetically": [], + "heavers": [], + "unless": [], + "mesdemoiselles": [], + "playboys's": [], + "amaze'sing": [], + "Bismarck's": [], + "vanquishes": [], + "cachepots's": [], + "mix": ["Z", "G", "M", "D", "R", "S", "B"], + "boomerangeding": [], + "Ionesco's": [], + "abbreviations": [], + "jaundice's": [], + "alphas": [], + "byplay": ["M"], + "apse": ["S", "M"], + "aerobatics": ["M"], + "subsides": [], + "backwards": [], + "stereotype": ["D", "S", "M", "G"], + "Brazil's": [], + "airplanes": [], + "authoress": ["M", "S"], + "pule": ["G", "D", "S"], + "flailing": [], + "cesarean's": [], + "renegade": ["D", "S", "M", "G"], + "unsalted": [], + "pensiveness's": [], + "overreact": ["S", "D", "G"], + "stupefiesing": [], + "stumble'sers": [], + "membranous": [], + "fleecersing": [], + "Ashkhabad's": [], + "Altman": ["M"], + "mutuality": ["M"], + "exec'ses": [], + "uniqueness": ["M"], + "misrule's": [], + "retrain": ["D", "G", "S"], + "burgleds": [], + "practicals": [], + "Barrie": ["M"], + "fixating": [], + "Benedictine'ses": [], + "bays": [], + "outliers": [], + "schematizeds": [], + "interfaceds": [], + "aggressively": [], + "re": ["D", "S", "M", "Y", "T", "G", "V", "J"], + "pipe's": [], + "capillaries": [], + "waking": [], + "liability's": [], + "demobilize": [], + "chickpea's": [], + "northeasterly": [], + "inducement's": [], + "acclaimings": [], + "adversest": [], + "eradicated": [], + "overture'ses": [], + "psychopath's": [], + "derailment": ["S", "M"], + "Cicero's": [], + "arithmeticians": [], + "nebulae": [], + "Seinfeld": ["M"], + "staves's": [], + "ultrasonically": [], + "rubbish": ["M", "D", "S", "G"], + "bodes": [], + "crimsons's": [], + "borscht's": [], + "grotesque'sly": [], + "shellfish": ["M", "S"], + "Amritsar's": [], + "Smirnoff": ["M"], + "hypertrophy": ["D", "S", "M", "G"], + "buckskin": ["M", "S"], + "oversteps": [], + "pinwheelings": [], + "uncharacteristic": [], + "outvoteds": [], + "probed": [], + "squires's": [], + "onrushing": [], + "climes's": [], + "shadier": [], + "hypnotics's": [], + "swiveling": [], + "entrapment": ["M"], + "versed": ["U"], + "stratifiesing": [], + "analogousliness": [], + "concertizes": [], + "Baxter's": [], + "wincheds": [], + "slinkier": [], + "cemetery": ["S", "M"], + "honorific'ses": [], + "blanket's": [], + "pockmarkeding": [], + "backdrop's": [], + "transport": ["B", "S", "Z", "G", "M", "D", "R"], + "crumminess": ["M"], + "stifling": ["Y"], + "backslider": ["M"], + "sprawl": ["G", "S", "M", "D"], + "crawlspaces": [], + "cuckolding": [], + "filterer's": [], + "McMillan's": [], + "Bayreuth's": [], + "tensity's": [], + "worrywart's": [], + "propitiation": ["M"], + "actress": ["M", "S"], + "Augusts": [], + "turncoat's": [], + "volunteering": [], + "hunt": ["M", "D", "R", "S", "Z", "G"], + "discouragementing": [], + "ramification's": [], + "collides": [], + "that'll": [], + "code's": [], + "commuter's": [], + "leghorn'ses": [], + "coir": [], + "disapproval": [], + "impressiveness": ["M"], + "snakeds": [], + "cooked": ["U"], + "cartoons's": [], + "sniperers": [], + "slur's": [], + "interlined": [], + "disturbed": ["U"], + "terrific": [], + "timothy's": [], + "orthographies": [], + "Harrisburg's": [], + "Carthaginian'ses": [], + "demagogues": [], + "cottage's": [], + "repudiates": [], + "necklaceds": [], + "antiaircraft": [], + "outnumbersing": [], + "Cheryl's": [], + "rewove": [], + "blandishesment": [], + "clotheds": [], + "davenport": ["M", "S"], + "falsettos's": [], + "toggle": ["D", "S", "M", "G"], + "shellacked": [], + "Passover": ["M", "S"], + "unwonted": [], + "newborn": ["S", "M"], + "mutterer's": [], + "Gambian": ["S", "M"], + "gamester'ses": [], + "permafrost": ["M"], + "lordship's": [], + "Kathmandu": ["M"], + "dubiousness's": [], + "liberties": [], + "signore": [], + "Klimt's": [], + "Michiganite": [], + "spelldown's": [], + "soloing": [], + "gunpowder's": [], + "orthopedist": ["M", "S"], + "codependents's": [], + "Zane": ["M"], + "whingesers": [], + "surrogate": ["S", "M"], + "Osages": [], + "Adele": ["M"], + "tropically": [], + "orderlinesses": [], + "needle'sing": [], + "affiliate": ["E", "G", "N", "D", "S"], + "heatstroke's": [], + "chinchilla's": [], + "pinafore": ["M", "S"], + "forfeit'sed": [], + "nearest": [], + "chowder's": [], + "fillings's": [], + "washrooms": [], + "R": ["M"], + "particularizeds": [], + "tamperinged": [], + "oxfords": [], + "narcs": [], + "clevis's": [], + "imperialist": ["S", "M"], + "West's": [], + "Belshazzar's": [], + "Pyrenees": ["M"], + "Caedmon": ["M"], + "brutality": ["S", "M"], + "novels's": [], + "precancel's": [], + "ceiling'ses": [], + "gnarl's": [], + "MB's": [], + "Monongahela": ["M"], + "typo's": [], + "Fuzzbuster": ["M"], + "diving's": [], + "Arizonian's": [], + "pitapat's": [], + "whackings": [], + "pensive": ["P", "Y"], + "sup's": [], + "publisheds": [], + "sprinting": [], + "interjectinged": [], + "ointments": [], + "Borodin's": [], + "testates": [], + "contumely": ["S", "M"], + "destructivenessly": [], + "unremade": [], + "Donald": ["M"], + "baffle": ["M", "Z", "G", "D", "R", "S", "L"], + "hickories's": [], + "snowdrifts": [], + "regularization's": [], + "viper": ["S", "M"], + "nostalgic": [], + "screened": [], + "volleyball": ["M", "S"], + "crafty": ["R", "T", "P"], + "highlander's": [], + "vulgarization": ["M"], + "wasp'ses": [], + "starches": [], + "propagandizing": [], + "womenfolk": ["S", "M"], + "jut's": [], + "smut'ses": [], + "weedless": [], + "hospitalized": [], + "lawyers": [], + "scad": ["M", "S"], + "pregames's": [], + "acerbity": ["M"], + "introvert's": [], + "dosseder": [], + "goddaughter": ["M", "S"], + "bondage's": [], + "zeitgeists's": [], + "deportations": [], + "antithetical": ["Y"], + "Chimu": ["M"], + "carvery": ["S"], + "laundresses": [], + "begrimes": [], + "croak's": [], + "certainties": [], + "flashlight's": [], + "arrival": ["M", "S"], + "terrestrial": ["S", "M", "Y"], + "articulateness": ["I", "M"], + "powwow's": [], + "obliterates": [], + "monarchy": ["S", "M"], + "O'Keeffe's": [], + "dummies": [], + "Alhambra": ["M"], + "coitus's": [], + "blazon's": [], + "imperishable": [], + "Hefner's": [], + "uremia's": [], + "Jeffersonian": ["M"], + "fascinate": ["G", "N", "D", "S", "X"], + "confectioners": [], + "presuppose": ["D", "S", "G"], + "ponginged": [], + "ensign": ["M", "S"], + "humiliated": [], + "etching": ["M"], + "dullerness": [], + "airports's": [], + "More": ["M"], + "flyweights's": [], + "Montcalm": ["M"], + "Andy": ["M"], + "mandate'sing": [], + "disharmony": [], + "Dostoevsky's": [], + "nailbrushes": [], + "monastery": ["S", "M"], + "aqua": ["S", "M"], + "balefulness": ["M"], + "Khazar's": [], + "tradersing": [], + "tomorrows": [], + "seep": ["G", "D", "S"], + "emasculate": ["G", "N", "D", "S"], + "plumpness": ["M"], + "yin's": [], + "compactness's": [], + "shinniesing": [], + "shareholdings": [], + "reseal": ["B"], + "catches": [], + "uprisings's": [], + "counter'ses": [], + "bittiest": [], + "hemmers": [], + "Acts's": [], + "idiocy": ["S", "M"], + "Rory": ["M"], + "grammarian's": [], + "initiated": ["U"], + "Semitic's": [], + "Puerto": [], + "trumpery": ["M"], + "gator": ["S", "M"], + "skedaddlinged": [], + "guffaws": [], + "messengers's": [], + "auscultated": [], + "counterespionage": ["M"], + "Ulyanovsk": ["M"], + "embroideries's": [], + "oarlocks's": [], + "Sade": ["M"], + "grandson": ["M", "S"], + "compiler's": [], + "hassle": ["D", "S", "M", "G"], + "parents": [], + "coxcombs": [], + "Jon": ["M"], + "engrossment's": [], + "prayers": [], + "heavy's": [], + "kindergartners": [], + "decedent'ses": [], + "cardamom": ["S", "M"], + "Moog's": [], + "farmyard": ["M", "S"], + "orotundities": [], + "Jermaine": ["M"], + "larboard's": [], + "Riddle's": [], + "teacup's": [], + "grimmer": [], + "quarrelsers": [], + "selections": [], + "Syracuse": ["M"], + "fords": [], + "buildups": [], + "respecting": [], + "glue": ["M", "G", "D", "S"], + "nonfiction": ["M"], + "heaving": [], + "wheedles": [], + "vetoed": [], + "rebus": [], + "repair": ["B", "Z", "R"], + "provisos's": [], + "innocently": [], + "filament'ses": [], + "lamb's": [], + "vitrifaction": ["M"], + "dormice": [], + "supremos": [], + "hob": ["S", "M"], + "slinky": ["R", "T"], + "gravitate": ["G", "N", "D", "S"], + "Perrier's": [], + "calliope's": [], + "inferiority": ["M"], + "socializeds": [], + "gruelingings": [], + "ship's": [], + "Alhambra's": [], + "spat's": [], + "descendeds": [], + "pivot": ["M", "D", "G", "S"], + "giveback": ["M", "S"], + "neurotransmitters": [], + "Brahmagupta's": [], + "breed": ["S", "R", "Z", "G", "M"], + "renascence": ["S"], + "solitude's": [], + "caravansaries's": [], + "farina's": [], + "tiler's": [], + "sporadic": [], + "Baker's": [], + "Debora's": [], + "nanosecond's": [], + "contrivinged": [], + "expunged": [], + "scorpion": ["M", "S"], + "lutetium's": [], + "desiccator": ["S", "M"], + "talkers": [], + "GDP's": [], + "proselytes's": [], + "hatcheds": [], + "Pelee": ["M"], + "matron": ["M", "Y", "S"], + "weaselsing": [], + "scofflaw'ses": [], + "limb'ses": [], + "zoninged": [], + "labeled": ["U"], + "artlessnessly": [], + "musseds": [], + "pointed": ["Y"], + "embryologist's": [], + "electricity's": [], + "judiciaries's": [], + "nominee's": [], + "bromine's": [], + "azures": [], + "laurels": [], + "audios": [], + "treating": [], + "discomfort": [], + "numerologist'ses": [], + "incubator": ["S", "M"], + "proposition": [], + "slurps's": [], + "pulchritude": ["M"], + "alighting": [], + "Henrietta": ["M"], + "shriveling": [], + "fishtailed": [], + "woodshed": ["S", "M"], + "basket's": [], + "stouts": [], + "gazumpings": [], + "zinged": [], + "surgical": ["Y"], + "niggas": [], + "calls": [], + "coccus": ["M"], + "scummiest": [], + "jonquil's": [], + "untutored": [], + "Israel": ["S", "M"], + "purveyance": ["M"], + "sponsoring": [], + "ricking": [], + "extricationed": [], + "airspeed": [], + "tambourine": ["M", "S"], + "Castries's": [], + "rebelling": [], + "overdress": ["G", "M", "D", "S"], + "lamed": [], + "Assyrians": [], + "grimierness": [], + "sottish": [], + "posse's": [], + "peremptory": [], + "Fulani": ["M"], + "epicenter's": [], + "ravensing": [], + "plumb'sed": [], + "partitioning's": [], + "grandfathering": [], + "November'ses": [], + "Dada": ["M"], + "apiarists": [], + "oscillatory": [], + "feminist": ["S", "M"], + "erratum": ["M"], + "Messiah": ["M"], + "mortallies": [], + "appeasementers": [], + "flourishes": [], + "floating": [], + "compensated": ["U"], + "equinox's": [], + "clownishness": ["M"], + "corrodes": [], + "Gompers": ["M"], + "voluptuaries's": [], + "Samara": ["M"], + "winks": [], + "kneader": ["M"], + "tortoises": [], + "CBC": ["M"], + "Appaloosa": ["S", "M"], + "distributes": [], + "governeding": [], + "sticky's": [], + "obsessively": [], + "professionals": [], + "kilowatt": ["S", "M"], + "Cointreau's": [], + "Stephen": ["M", "S"], + "Abbasid": ["M"], + "theologies's": [], + "gerbil": ["M", "S"], + "squeezer's": [], + "Sumerian's": [], + "sinuous": ["Y"], + "levelers": [], + "Elma": ["M"], + "wellington": ["M", "S"], + "euphony": ["M"], + "ionizer's": [], + "corrugationsed": [], + "Waldo's": [], + "predilections": [], + "prefatory": [], + "aquamarines": [], + "constitutes": [], + "lockjaw's": [], + "Bayes's": [], + "rubbish's": [], + "violoncello": ["M", "S"], + "Taiwan": ["M"], + "truthfulness's": [], + "composed": [], + "locals's": [], + "kitted": [], + "peppercorns": [], + "erode": ["D", "S", "G"], + "rigatoni's": [], + "wartiest": [], + "conniving": [], + "crawled": [], + "Westminster's": [], + "finality's": [], + "coincidental": ["Y"], + "intervals's": [], + "Kislev's": [], + "dromedary's": [], + "deckchair": ["S"], + "crazies's": [], + "wishers": [], + "unexplored": [], + "chanceries's": [], + "astrologist's": [], + "koshers": [], + "allusions's": [], + "deviated": [], + "extradition": ["M"], + "toreadors": [], + "insinuatingen": [], + "deflections": [], + "graves": [], + "escapist": ["M", "S"], + "uranium's": [], + "fratricides": [], + "extravagance": ["M", "S"], + "detest": [], + "waifs": [], + "youths": [], + "molehills": [], + "anemometer's": [], + "equivocated": [], + "ransomsers": [], + "artifact's": [], + "Sierpinski": ["M"], + "kitschy": [], + "accusations": [], + "Coimbatore's": [], + "suing": [], + "instrumentalist": ["S", "M"], + "colorfastness's": [], + "rectories": [], + "Esterhazy": ["M"], + "impassiveness": ["M"], + "blemishes": [], + "Flo's": [], + "vim's": [], + "Elizabethan": ["S", "M"], + "finderers": [], + "promotional": [], + "usages's": [], + "bagged": [], + "wetters's": [], + "academic's": [], + "implodes": [], + "Norsemen's": [], + "Andersen": ["M"], + "lingeringly": [], + "telepathy": ["M"], + "OKing": [], + "Carrillo": ["M"], + "Trojan's": [], + "plagiarizesers": [], + "cartoon": ["S", "M", "D", "G"], + "hubby's": [], + "Xmas": ["M", "S"], + "greenly": [], + "expediteder": [], + "Christoper": ["M"], + "geologist'ses": [], + "growths": [], + "Alfonzo": ["M"], + "reined": [], + "leaseholder": ["M"], + "fatigues's": [], + "tracheotomy": ["S", "M"], + "kiwifruit'ses": [], + "screwed": [], + "predictors": [], + "baldest": [], + "arouse": ["G", "D", "S"], + "gibbons": [], + "snoops's": [], + "importation'ses": [], + "EMT": [], + "millipedes's": [], + "outvote": ["G", "D", "S"], + "quantifier's": [], + "Luftwaffe's": [], + "unconditional": ["Y"], + "eon": ["S", "M"], + "kickoff'ses": [], + "multistage": [], + "busieder": [], + "slowdown": ["S", "M"], + "thrashing's": [], + "Donnie": ["M"], + "talent's": [], + "truanted": [], + "Bhutanese's": [], + "steamrollersing": [], + "curacy": ["S", "M"], + "anterooms": [], + "fell": ["M", "D", "R", "Z", "T", "G", "S"], + "forecast's": [], + "incurables": [], + "upstrokes": [], + "serveries": [], + "Qaddafi": ["M"], + "tads's": [], + "montages's": [], + "Deana": ["M"], + "lei's": [], + "parthenogenesis": ["M"], + "nomenclature'ses": [], + "dandle": ["G", "D", "S"], + "mobbed": ["C"], + "wildness": ["M"], + "Samuelson's": [], + "metabolizesing": [], + "Lavern's": [], + "maize's": [], + "musician's": [], + "bodybuilder": ["S", "M"], + "amnestieds": [], + "outsell": ["G", "S"], + "teak": ["M", "S"], + "finite": ["I", "Y"], + "hirsute": ["P"], + "goober": ["S", "M"], + "whitewash'sed": [], + "fluoresces": [], + "terminological": ["Y"], + "subsided": [], + "decrepitude's": [], + "silicates": [], + "steelworks": ["M"], + "genius's": [], + "complacency": ["M"], + "told": ["A", "U"], + "couches": [], + "inseminatesing": [], + "medias's": [], + "pinches": [], + "transducers": [], + "puttee'ses": [], + "bibliographically": [], + "weaknesses": [], + "eyeball": ["G", "M", "D", "S"], + "tradings": [], + "broadness's": [], + "permanent's": [], + "outliveds": [], + "several's": [], + "Unilever's": [], + "innocuousness": ["M"], + "Winesap's": [], + "champeds": [], + "fumigators's": [], + "trinket": ["S", "M"], + "3": ["n", "m"], + "figureheads's": [], + "kissed": [], + "puts": [], + "puncheder": [], + "proteins": [], + "bellhops's": [], + "baseball's": [], + "titanium's": [], + "tirederly": [], + "irascibility": ["M"], + "vitalizesed": [], + "legs": [], + "thirsty": ["T", "P", "R"], + "pedigrees": [], + "necrophiliacs": [], + "mimics's": [], + "unlicensed": [], + "unluckiest": [], + "sharpies": [], + "pinto's": [], + "liefest": [], + "dearly": [], + "nucleolus's": [], + "nah": [], + "Halliburton's": [], + "claret's": [], + "tideway": ["M", "S"], + "coziness": ["M"], + "spearheading": [], + "passionflowers": [], + "thighbones": [], + "songfests's": [], + "nutrition's": [], + "smalls": [], + "polys": [], + "climax'sed": [], + "caviling": [], + "intensives": [], + "waiver": ["M"], + "Guinness's": [], + "Brenton's": [], + "kidney": ["S", "M"], + "Marianne": ["M"], + "harmonizing": [], + "arduousliness": [], + "derisiveness's": [], + "pluckierness": [], + "trust's": [], + "hobbies": [], + "peashooter's": [], + "airbases": [], + "classicism": ["M"], + "lugubriousness": ["M"], + "aluminum's": [], + "groped": [], + "offsets": [], + "Phoenician's": [], + "rivet's": [], + "enforces": [], + "widener's": [], + "thief's": [], + "earl'ses": [], + "Petain's": [], + "prologues's": [], + "linkeder": [], + "reviving": [], + "materialist": ["S", "M"], + "converted": ["U"], + "crosscurrent": ["M", "S"], + "citizenry": ["M"], + "health": ["M"], + "cartloads": [], + "cohereds": [], + "lymphoma's": [], + "gesture": ["M", "G", "D", "S"], + "catalyst": ["M", "S"], + "egregiousness's": [], + "conprotract": [], + "secretivenessly": [], + "utopias's": [], + "Persians's": [], + "handshakings": [], + "foppery": ["M"], + "devolution's": [], + "piked": [], + "staleness's": [], + "tallies's": [], + "angora'ses": [], + "testings": [], + "skunks": [], + "holsters": [], + "partisanship": ["M"], + "meanie": ["M"], + "graphic'ses": [], + "nonconforming": [], + "snootily": [], + "Jogjakarta": ["M"], + "cudgel's": [], + "scrawl'sed": [], + "lac": ["M"], + "obstruction's": [], + "Mississippi": ["M"], + "Nicaragua's": [], + "westerners": [], + "unformulated": [], + "glassblower's": [], + "rats's": [], + "slattern": ["S", "M", "Y"], + "candlewick": ["S", "M"], + "expeditingen": [], + "mishap": ["S", "M"], + "FHA": ["M"], + "teenyboppers": [], + "winker": ["M"], + "capacity": ["I", "M"], + "dance": ["M", "Z", "G", "D", "R", "S"], + "taskmaster's": [], + "clew's": [], + "agilely": [], + "halternecks": [], + "huskily": [], + "sulfur'sed": [], + "duffs": [], + "perfecta'ses": [], + "nutpicks": [], + "underproduction's": [], + "stockades's": [], + "dashingly": [], + "hydroponics's": [], + "dill's": [], + "imperfection's": [], + "rabbited": [], + "Garth": ["M"], + "threshersing": [], + "flagstaff's": [], + "Ukrainian's": [], + "diploids": [], + "haughtily": [], + "obtrudesing": [], + "Deming's": [], + "rejections's": [], + "incommode": ["G", "D"], + "formalist'ses": [], + "scrub's": [], + "encases": [], + "hovel's": [], + "loathing": ["M"], + "aubergine": ["S"], + "perturbing": [], + "Chrysler": ["M"], + "matchwood": ["M"], + "flurry": ["G", "D", "S", "M"], + "craftsmanship": ["M"], + "swishes": [], + "armload": ["S"], + "custodial": [], + "diminutions": [], + "fealty's": [], + "prancersing": [], + "graphite's": [], + "constructing": [], + "parches": [], + "Anasazi's": [], + "seizure'ses": [], + "presently": [], + "Quaker": ["M", "S"], + "impaneling": [], + "Pincus": ["M"], + "conduct's": [], + "overattentive": [], + "bongsing": [], + "barometric": [], + "foreboding": ["M"], + "shirreds": [], + "sauntereding": [], + "Lapp's": [], + "breathersing": [], + "postilions's": [], + "saluting": [], + "auxiliaries's": [], + "digit's": [], + "Nobelist'ses": [], + "neurosurgery's": [], + "Greens's": [], + "judicially": [], + "limnsing": [], + "probosces": [], + "rafting's": [], + "filibusters": [], + "limiter's": [], + "attires's": [], + "calculated": ["Y"], + "pleasured": [], + "subliminally": [], + "abuseds": [], + "cremationed": [], + "Sloane": ["M"], + "inhibitions": [], + "geocachesing": [], + "devastators": [], + "bestirred": [], + "typhus": ["M"], + "duckboards": [], + "pantheists's": [], + "motivations": [], + "koshered": [], + "headlamp's": [], + "renegades's": [], + "Edmonton": ["M"], + "fusible": [], + "spicules": [], + "frankness's": [], + "handcuffs": [], + "fairyland": ["S", "M"], + "startup": ["M", "S"], + "escallops": [], + "halter's": [], + "foundry": ["S", "M"], + "triplicating": [], + "funniness": ["M"], + "Fenian's": [], + "resubscribe": [], + "impurity's": [], + "swallowings": [], + "crisscross": ["G", "M", "D", "S"], + "bastingen": [], + "transform's": [], + "digits": [], + "achieversing": [], + "scows": [], + "edification": ["M"], + "interplay": ["M"], + "flammable": ["S", "M"], + "courts's": [], + "mumbletypeg's": [], + "annealing": [], + "gnu's": [], + "sensation'ses": [], + "solitaire'ses": [], + "plebe'ses": [], + "feelers": [], + "deathbeds's": [], + "plat": ["X", "G", "M", "D", "N", "S"], + "bantam": ["S", "M"], + "playoff's": [], + "rouse": ["D", "S", "G"], + "gloss'sed": [], + "hippie": ["S", "M"], + "advisemented": [], + "haws's": [], + "sentenced": [], + "due's": [], + "preregister": ["S", "G", "D"], + "diverting": [], + "essentially": [], + "Steiner's": [], + "coat's": [], + "atavists": [], + "Kitty's": [], + "preparinged": [], + "enticinged": [], + "preppies's": [], + "fluffing": [], + "evadersing": [], + "revel": ["J", "M", "D", "R", "S", "Z", "G"], + "stoniness's": [], + "llama": ["S", "M"], + "insides": [], + "airstrike's": [], + "savoriers": [], + "grownup": ["M", "S"], + "pilloweds": [], + "vial'ses": [], + "Maggie's": [], + "outgrew": [], + "pincushions": [], + "categorization": ["M", "S"], + "compoundables": [], + "minutia": ["M"], + "puncture's": [], + "simmers": [], + "repudiator": ["M", "S"], + "rummages's": [], + "totalitarianism's": [], + "swanking": [], + "courteously": [], + "meetups": [], + "tarnishing's": [], + "persona": ["S", "M"], + "honeymooning's": [], + "Knowles": ["M"], + "strays": [], + "burgh": ["M", "R", "Z"], + "Sb": ["M"], + "capstone's": [], + "meltsing": [], + "enactment": ["A", "S", "M"], + "floral": [], + "spook'sed": [], + "dacha'ses": [], + "gratificationsed": [], + "paw'sed": [], + "mogul's": [], + "chickenhearted": [], + "hajji": ["S", "M"], + "purport": ["S", "M", "D", "G"], + "Sat": ["M"], + "legume": ["M", "S"], + "taxman": [], + "begetting": [], + "freckling": [], + "corruptibility's": [], + "Dzerzhinsky": ["M"], + "bagel's": [], + "hippodrome": ["S", "M"], + "situate": ["D", "S", "X", "G", "N"], + "pointblank": [], + "vigilance's": [], + "sarcophagus": ["M"], + "caseworkers": [], + "niggardly": [], + "camouflage'sers": [], + "Chancellorsville": ["M"], + "resurrectsed": [], + "hacksaws": [], + "junker": ["M"], + "muzzling": [], + "unknowable": ["M"], + "staider": [], + "accusative'ses": [], + "Seagram": ["M"], + "psychopath": ["M"], + "intensive's": [], + "abnegating": [], + "Evangelina": ["M"], + "Alphecca": ["M"], + "kippering": [], + "port's": ["A"], + "amide": ["M", "S"], + "thanksgiving": ["S", "M"], + "pintos": [], + "ballads's": [], + "hummingbirds": [], + "winiest": [], + "herniation's": [], + "intonation": ["S", "M"], + "unpersuaded": [], + "prostate'ses": [], + "shinier": [], + "slapstick's": [], + "carcinogenics": [], + "bimonthlies's": [], + "wisecrack's": [], + "undertone": ["M", "S"], + "antiquary's": [], + "grouchily": [], + "quadrant's": [], + "millet": ["M"], + "wireless": ["M", "S"], + "possessions": [], + "humiliating": ["Y"], + "ultimately": [], + "pusillanimous": ["Y"], + "jauntiness's": [], + "extenuatingen": [], + "elegiacal": [], + "LPN's": [], + "jumper's": [], + "squeezeder": [], + "Bridges's": [], + "capitalists's": [], + "pedagogic": [], + "inflow's": [], + "phobia's": [], + "wholesale's": [], + "shriller": [], + "exchanged": [], + "algebraically": [], + "discotheque": ["S", "M"], + "inclusively": [], + "mousse's": [], + "Dolby's": [], + "performance": ["S", "M"], + "cambium's": [], + "Chuvash's": [], + "Lockwood": ["M"], + "predisposition'ses": [], + "hedgehog": ["M", "S"], + "thwacks's": [], + "handgun": ["S", "M"], + "Pentiums's": [], + "Magritte's": [], + "dewiest": [], + "grovels": [], + "confederacies's": [], + "Saudi's": [], + "murky": ["P", "T", "R"], + "dissociatingen": [], + "crotchety": [], + "wheal": ["S", "M"], + "wretch's": [], + "Manchurian": ["M"], + "overextendings": [], + "blacknessens": [], + "refuter's": [], + "chessboard'ses": [], + "volatility": ["M"], + "adjudges": [], + "cruciforms's": [], + "UV": ["M"], + "shooed": [], + "testified": [], + "perversity": ["M"], + "papayas": [], + "tenseness's": [], + "electroplates": [], + "fin'ser": [], + "ventilate": ["G", "N", "D", "S"], + "sovereigns's": [], + "unchecked": [], + "vibraharps": [], + "jumpiness": ["M"], + "damnabling": [], + "Venezuela's": [], + "Pomeranian": ["M"], + "hadn't": [], + "slather": ["S", "D", "G"], + "rho": ["S", "M"], + "dramatize": ["D", "S", "G"], + "scramble's": [], + "transmutable": [], + "fuehrer'ses": [], + "extrudinged": [], + "recorder's": [], + "kines": [], + "dirndls's": [], + "orientated": [], + "ceded": [], + "pinks": [], + "goadings": [], + "conniption": ["M", "S"], + "minx'ses": [], + "honer": ["M"], + "contrasting": [], + "LVN": [], + "frightfully": [], + "windlass's": [], + "clove": ["R", "S", "M", "Z"], + "Brice": ["M"], + "Solon": ["M"], + "psychodrama's": [], + "retsina": ["M"], + "collusion's": [], + "wolfed": [], + "antennas": [], + "pinkness's": [], + "clumsiness": ["M"], + "throatiness's": [], + "pussycat's": [], + "lookout": ["M", "S"], + "husbandry": ["M"], + "stalwartlies": [], + "rhododendrons": [], + "saltshaker's": [], + "uttermost's": [], + "macrocosm's": [], + "invaliding's": [], + "Jessie": ["M"], + "Leonidas": ["M"], + "Maghreb's": [], + "crime": ["S", "M"], + "sewsing": [], + "Yukon's": [], + "college": ["S", "M"], + "overexciteds": [], + "sortsing": [], + "Cotton": ["M"], + "stomachers": [], + "monopolizer": ["M"], + "monotone'ses": [], + "overstepped": [], + "Dallas's": [], + "lampblack's": [], + "bulkings": [], + "pachyderms": [], + "ironing": ["M"], + "educatesing": [], + "ruse'ses": [], + "wrongheadedly": [], + "RNA": ["M"], + "busiers": [], + "bluebell's": [], + "khakis": [], + "financiers": [], + "pushy": ["T", "R", "P"], + "mono": ["M"], + "crags": [], + "disconnect": [], + "bitter's": [], + "gym's": [], + "crimson": ["S", "M", "D", "G"], + "rabbeteds": [], + "mizzens": [], + "hasteden": [], + "turbulence's": [], + "scourge's": [], + "patroons's": [], + "penlight's": [], + "whipsaws": [], + "essayerers": [], + "sweatersing": [], + "practicum's": [], + "compliments": [], + "jihads": [], + "ambulatory": ["S", "M"], + "Morita": ["M"], + "footman's": [], + "bellhop's": [], + "softwoods": [], + "evicts": [], + "borax": ["M"], + "appropriating": [], + "ejection": ["M", "S"], + "analogy's": [], + "soreness": ["M"], + "fileds": [], + "docudrama": ["S", "M"], + "securers": [], + "ordereding": [], + "knottier": [], + "dreamland": ["M"], + "congenial": [], + "appeasinged": [], + "glassily": [], + "krauts": [], + "salaam'sed": [], + "volute's": [], + "derivatives": [], + "households's": [], + "sitemap's": [], + "Ahab's": [], + "boo'sed": [], + "Hammond": ["M"], + "desertersing": [], + "foments": [], + "taupe": ["M"], + "armband's": [], + "dreary": ["R", "P", "T"], + "lucks": [], + "Kinshasa's": [], + "plug's": [], + "fissures's": [], + "underwritinger": [], + "anthrax's": [], + "Bud": ["M"], + "soundproofing's": [], + "argon's": [], + "believeder": [], + "gimlet": ["G", "S", "M", "D"], + "Sudoku": ["M"], + "Eu": ["M"], + "blizzard's": [], + "Reinhold's": [], + "flannelette's": [], + "mentionings": [], + "quarterlies": [], + "importations": [], + "Pu": ["M"], + "teemeds": [], + "smallish": [], + "dealerships's": [], + "cruelliness": [], + "Maude": ["M"], + "landholder's": [], + "canoes": [], + "asininely": [], + "erectedly": [], + "clown's": [], + "orotundity": ["S", "M"], + "lugsail": ["S", "M"], + "rascals's": [], + "deeper": [], + "examiners": [], + "intimate's": [], + "Akkad's": [], + "Hunspell": ["M"], + "dyers": [], + "snorteder": [], + "Lynette": ["M"], + "birches": [], + "mutterers": [], + "catalyst's": [], + "atavists's": [], + "Protestants": [], + "shareware": ["M"], + "theta's": [], + "exigency": ["S", "M"], + "furlongs": [], + "undermost": [], + "business'ses": [], + "Mendelssohn": ["M"], + "Hus's": [], + "hallucinogens": [], + "leafeds": [], + "agonizing": ["Y"], + "episcopate's": [], + "bellman": ["M"], + "audit's": [], + "Fiberglas": ["M"], + "udders": [], + "unintelligibly": [], + "percolatingen": [], + "Izanagi's": [], + "continent": ["S", "M"], + "ufologist": ["S", "M"], + "treatings": [], + "extravagances": [], + "trawl": ["Z", "G", "S", "M", "D", "R"], + "weirderly": [], + "klutziness": ["M"], + "crosswind'ses": [], + "Fragonard's": [], + "harmoniousness": ["M"], + "croaks": [], + "exhumation": ["M", "S"], + "defeat's": [], + "standout'ses": [], + "scurries": [], + "atmospheric": ["S"], + "warrantying": [], + "groan's": [], + "Dutchman's": [], + "graying": [], + "probing": [], + "sowers": [], + "quintuples": [], + "wretchedness's": [], + "pomanders's": [], + "bootstrap'ses": [], + "toehold'ses": [], + "cathodic": [], + "embouchure's": [], + "UAR": [], + "timberland's": [], + "cockerels's": [], + "boxcar's": [], + "confined": ["U"], + "homelessness's": [], + "tiddlywinks's": [], + "magma's": [], + "leaders": [], + "righteousness's": [], + "Armenia": ["M"], + "protagonist's": [], + "voluminousness": ["M"], + "fruitless": ["P", "Y"], + "tailorsing": [], + "spillage's": [], + "countdowns": [], + "uncluttered": [], + "amaranths": [], + "franchise's": [], + "dismemberinged": [], + "ruffly": [], + "samurais's": [], + "ritualistic": [], + "adjudged": [], + "wk": ["Y"], + "rockfalls": [], + "objectsing": [], + "Dvina": ["M"], + "Katowice": ["M"], + "copyist's": [], + "sunless": [], + "Raymundo": ["M"], + "sortied": [], + "moonlighting": ["M"], + "philosopher'ses": [], + "Savonarola's": [], + "mane'sed": [], + "bucket": ["S", "G", "M", "D"], + "devoutness's": [], + "pemmican's": [], + "disencumber": [], + "barks": [], + "Armageddons's": [], + "silkiness": ["M"], + "gluttonous": ["Y"], + "imagining": [], + "Emery's": [], + "fifties": [], + "monarchism": ["M"], + "topcoats's": [], + "probables": [], + "intrigued": [], + "bowdlerization": ["M", "S"], + "thymine's": [], + "archaism's": [], + "notarizing": [], + "introduced": [], + "disgruntleds": [], + "huskersing": [], + "mouse's": [], + "Z'sen": [], + "paperhangers": [], + "curabled": [], + "reverences": [], + "Seward's": [], + "Curacao": ["M"], + "Hummer's": [], + "Indira's": [], + "frizzled": [], + "frazzle": ["M", "G", "D", "S"], + "blossom's": [], + "expectoration's": [], + "BFF": [], + "rift": ["G", "M", "D", "S"], + "maybes's": [], + "herder's": [], + "cartooning": [], + "humors's": [], + "bestowing": [], + "scrivener": ["S", "M"], + "Zworykin's": [], + "consanguinity's": [], + "Sutherland": ["M"], + "moxie": ["M"], + "postulatingen": [], + "scary": ["R", "T", "P"], + "privatizeds": [], + "Piedmont's": [], + "fogy": ["S", "M"], + "papist'ses": [], + "curative'ses": [], + "Os's": [], + "underplays": [], + "Denis's": [], + "Montoya": ["M"], + "tobogganers": [], + "coterie'ses": [], + "calks": [], + "defeated": ["U"], + "Schlesinger's": [], + "Mackinac": ["M"], + "Iago's": [], + "flies's": [], + "choc": ["S"], + "nursling": ["S", "M"], + "queerness": ["M"], + "deceit": ["M", "S"], + "pancreas's": [], + "Pavarotti": ["M"], + "deterrence": ["M"], + "bedsides's": [], + "transience's": [], + "role": ["M", "S"], + "telecommuter's": [], + "counterpoise'sing": [], + "pleasantry's": [], + "rattletrap's": [], + "stink'ser": [], + "Jody's": [], + "sculptured": [], + "reconciles": [], + "YouTube's": [], + "seeker's": [], + "cheapness": ["M"], + "rising's": [], + "misinformation's": [], + "embroiderersing": [], + "clampdown": ["M", "S"], + "tootled": [], + "watershed's": [], + "consistory": ["S", "M"], + "ferment": ["F", "C", "M", "S"], + "duplicator": ["M", "S"], + "balderdash's": [], + "goddammit": [], + "characteristics": [], + "erecting": [], + "flagstones": [], + "littorals": [], + "decree'sed": [], + "classifies": [], + "inevitability": ["M"], + "expeditiousness": ["M"], + "Indonesian's": [], + "natch": [], + "thaweding": [], + "vulture's": [], + "Borglum": ["M"], + "landladies's": [], + "verification": ["M"], + "superwoman's": [], + "squeezes": [], + "CRT": ["S", "M"], + "toppings's": [], + "bacteriologist's": [], + "Freddie's": [], + "preordaining": [], + "collectivists": [], + "landowning's": [], + "linebackers": [], + "retrainings": [], + "cheeseds": [], + "campaignersing": [], + "Housman": ["M"], + "pinioneding": [], + "skims": [], + "UNICEF's": [], + "droopiest": [], + "mime": ["M", "G", "D", "S"], + "constitutionallies": [], + "fume'sing": [], + "slasheder": [], + "existence's": [], + "Gibson": ["M"], + "Macintosh's": [], + "Elgar": ["M"], + "pandering": [], + "ditching": [], + "lipreading": ["M"], + "birdseed": ["M"], + "methyl's": [], + "teakettle": ["S", "M"], + "futurology": ["M"], + "lightheartedly": [], + "magpies": [], + "opes": [], + "stocksed": [], + "trumpeter": ["M"], + "japanning": [], + "veterinarian's": [], + "sold": [], + "forgivabler": [], + "Erich's": [], + "Bahamians": [], + "serialization's": [], + "talk": ["Z", "G", "M", "D", "R", "S"], + "voted": [], + "telegrapher's": [], + "aiming": [], + "floppiness": ["M"], + "reasons's": [], + "bequest": ["M", "S"], + "specialization'ses": [], + "kibitzers": [], + "repeatable": ["U"], + "desperately": [], + "denials": [], + "hostler": ["M", "S"], + "caromed": [], + "fodder": ["S", "M"], + "element'ses": [], + "churchgoing's": [], + "abjurations's": [], + "riyal'ses": [], + "persiflage": ["M"], + "creationists": [], + "regimentation": ["M"], + "brisked": [], + "porridge's": [], + "plowed": [], + "liverwort's": [], + "plunger": ["M"], + "adsorbed": [], + "alehouses": [], + "demesnes": [], + "Rafael's": [], + "teapot": ["M", "S"], + "Powhatan's": [], + "debaucheds": [], + "navels": [], + "datelininged": [], + "commutabled": [], + "giversing": [], + "suffererers": [], + "insulates": [], + "bonbon's": [], + "mowing's": [], + "ruthlessness": ["M"], + "Kannada's": [], + "puffed": [], + "consternation's": [], + "diocesan'ses": [], + "Kitakyushu's": [], + "Autumn's": [], + "elevateds": [], + "wealth's": [], + "Bukhara's": [], + "Aragon": [], + "Cabrini's": [], + "praiseworthiness's": [], + "exponent'ses": [], + "nabbed": [], + "insular": [], + "mistreat": ["L", "D", "G", "S"], + "absentmindedliness": [], + "risque": [], + "help": ["M", "D", "R", "Z", "G", "S", "J"], + "Shintoism's": [], + "transponders's": [], + "overpopulation's": [], + "seeks": [], + "verses": [], + "Giorgione": ["M"], + "cabooses's": [], + "scorned": [], + "marrows": [], + "indicators": [], + "fishily": [], + "rendersing": [], + "biopic": ["M", "S"], + "unintentional": [], + "quadrilaterals's": [], + "playgirls": [], + "subsection's": [], + "snatching": [], + "beading": ["M"], + "wooing": [], + "hologram'ses": [], + "allocated": [], + "Tobit's": [], + "protrudes": [], + "axed": [], + "excommunicating": [], + "deniersing": [], + "sell'ser": [], + "Jessica": ["M"], + "vocalize": ["D", "S", "G"], + "Vela's": [], + "habitable": [], + "viciousness's": [], + "Eisenstein's": [], + "staggered": [], + "Watergate's": [], + "Wac": [], + "Mandalay": ["M"], + "aquaplanes": [], + "ancientsness": [], + "sputnik'ses": [], + "nicker'sed": [], + "diners": [], + "deviants's": [], + "teamwork's": [], + "mum": [], + "preponderant": ["Y"], + "mausoleum": ["S", "M"], + "iciness": ["M"], + "dustpans": [], + "euphoria's": [], + "weave": ["D", "R", "S", "M", "Z", "G"], + "distributions": [], + "indissolubility": [], + "boxlike": [], + "forenames": [], + "seltzer's": [], + "mush's": [], + "maturities's": [], + "printer'ses": [], + "Izvestia": ["M"], + "bullshitters": [], + "admonishmented": [], + "Jonah": ["M"], + "Thespis's": [], + "mermaid's": [], + "toke's": [], + "shocking's": [], + "outstation'ses": [], + "handsomeness's": [], + "jaunty": ["R", "P", "T"], + "miminged": [], + "deplorabling": [], + "nonmetals's": [], + "serf": ["M", "S"], + "vanquisheder": [], + "castrateds": [], + "insulted": [], + "swoonsing": [], + "shoelaces": [], + "burg's": [], + "urchins's": [], + "spineless": ["Y", "P"], + "fall": ["M", "N", "G", "S"], + "expat": ["S"], + "habituating": [], + "hats": [], + "fitter": ["M", "S"], + "thoroughbred'ses": [], + "gibbet's": [], + "fielding": [], + "Fernando": ["M"], + "Negev's": [], + "crosswords": [], + "swanked": [], + "matzot": [], + "lipsticked": [], + "freers": [], + "ineffable": [], + "correlating": [], + "regularity": ["S", "M"], + "flange's": [], + "watermelon": ["S", "M"], + "standstill'ses": [], + "wholesale'sers": [], + "whinny": ["G", "D", "S", "M"], + "coveteding": [], + "cleaversing": [], + "palmier": [], + "laconically": [], + "bragger": ["M", "S"], + "my": [], + "Daumier's": [], + "figurine'ses": [], + "abstractnesses": [], + "jiffy's": [], + "Ptah": ["M"], + "relaxations": [], + "falter's": [], + "Carissa": ["M"], + "condiment": ["M", "S"], + "Mauritians": [], + "osculating": [], + "nuance": ["M", "D", "S"], + "defacers": [], + "slithersing": [], + "Paraguay's": [], + "punches": [], + "capitol": ["S", "M"], + "circumcisions": [], + "trimester's": [], + "Hersey": ["M"], + "Donetsk's": [], + "bastardizes": [], + "lecturers": [], + "denouncements": [], + "sterilizersing": [], + "stint'sed": [], + "American": ["M", "S"], + "mismatches": [], + "volatile": [], + "sideswipe's": [], + "reconcurrent": [], + "cossetted": [], + "jammier": [], + "horoscope": ["S", "M"], + "scabbing": [], + "racehorse'ses": [], + "impassible": [], + "busk": ["D", "R", "Z", "G", "S"], + "hiccup'sed": [], + "toiletries's": [], + "bluefish's": [], + "gaffe's": [], + "sutler'ses": [], + "sons's": [], + "grace": ["E", "D", "S", "M", "G"], + "ateliers": [], + "buckboard": ["M", "S"], + "northward": ["S"], + "Medusa's": [], + "sweltersing": [], + "redyed": [], + "itemize": ["G", "D", "S"], + "accuses": [], + "opera": ["M", "S"], + "Jarvis": ["M"], + "sequel's": [], + "drys": [], + "enfilades": [], + "penny": ["S", "M"], + "bantering": ["Y"], + "scow'ses": [], + "goosestepping": [], + "lipreads": [], + "columnist's": [], + "accompanieds": [], + "teden": [], + "berk": ["S"], + "nearshore": [], + "crafts": [], + "pageant": ["M", "S"], + "dartsers": [], + "pressure's": [], + "rhinestone's": [], + "fattiers": [], + "connivance": ["M"], + "Nola": ["M"], + "mesmeric": [], + "rubes": [], + "tramps": [], + "Benson": ["M"], + "embrasures": [], + "urogenital": [], + "inflammation": ["S", "M"], + "butterflies": [], + "daguerreotypeds": [], + "idiosyncrasy's": [], + "muscle's": [], + "Hilda's": [], + "Hunt'ser": [], + "compoundable": [], + "grandson's": [], + "gamecocks": [], + "Dadaism's": [], + "temperatures's": [], + "thyme's": [], + "outworker": [], + "dutifulliness": [], + "preen": ["D", "S", "G"], + "unsubscribe": [], + "outspoken": ["Y", "P"], + "breakfasting": [], + "karats's": [], + "refuge's": [], + "bumf": [], + "creditable": [], + "inscription'ses": [], + "impression": ["B", "S", "M"], + "autoworker's": [], + "honeydews": [], + "surgeds": [], + "conceptions's": [], + "cleaveder": [], + "Elijah": ["M"], + "sea": ["S", "M"], + "awesomeness's": [], + "toysing": [], + "dizzier": [], + "lippy": [], + "furrowing": [], + "bookkeepers": [], + "mockersing": [], + "ballads": [], + "Puckett": ["M"], + "wave": ["M", "Z", "G", "D", "R", "S"], + "cadaver": ["S", "M"], + "forbiddings": [], + "ulceratesing": [], + "chronicle": ["D", "R", "S", "M", "Z", "G"], + "hundred's": [], + "amortizing": [], + "togetherness's": [], + "hoicksing": [], + "Tucker": ["M"], + "patroon's": [], + "shaggy": ["T", "P", "R"], + "spurted": [], + "Winchell's": [], + "killers": [], + "inflexibility": [], + "appreciating": [], + "bandying": [], + "enhancers": [], + "caffeine's": [], + "arbitrates": [], + "timeout's": [], + "uncensored": [], + "repetitiveliness": [], + "Beardsley": ["M"], + "connectors": [], + "cloistereding": [], + "businesswoman": ["M"], + "transliteration's": [], + "Sol": ["M"], + "mixing's": [], + "boggle": ["G", "D", "S"], + "shoetree": ["M", "S"], + "detachment'ses": [], + "Kubrick's": [], + "bomb's": [], + "Jolene's": [], + "WiFi": [], + "brollies": [], + "furthermost": [], + "plays": [], + "zonally": [], + "audiotapes": [], + "moonshine": ["M", "Z", "R", "S"], + "notables's": [], + "Invar's": [], + "lace's": [], + "velour": ["M", "S"], + "tannest": [], + "glut": ["M", "N", "S"], + "Jayawardene": ["M"], + "zeta'ses": [], + "bounciest": [], + "resurvey": [], + "salable's": [], + "Graves": ["M"], + "GATT": ["M"], + "weightily": [], + "try's": [], + "Hirobumi": ["M"], + "extricated": [], + "tissue's": [], + "councilmen": [], + "artichokes's": [], + "pullouts": [], + "snub'ses": [], + "millisecond's": [], + "straighteninged": [], + "smartphone": ["S", "M"], + "pantechnicon": ["S"], + "kips's": [], + "newbie": ["M", "S"], + "Victoria": ["M"], + "Blantyre": ["M"], + "therefor": [], + "opaque": ["P", "Y", "T", "G", "D", "R", "S"], + "leghorn's": [], + "relationships": [], + "Holmes's": [], + "envelopment's": [], + "ashamed": ["U", "Y"], + "southeasters": [], + "freezer'ses": [], + "logicians": [], + "matriarch": ["M"], + "Samara's": [], + "incisivenessly": [], + "Claus's": [], + "excerpting": [], + "implausibly": [], + "gees": [], + "homepage's": [], + "ruminationsing": [], + "Colombian": ["M", "S"], + "remanding": [], + "Ulysses's": [], + "denitrification": [], + "trashiness": ["M"], + "replants": [], + "veggies's": [], + "beet's": [], + "weekday": ["S", "M"], + "positsing": [], + "curvatures": [], + "mulatto": ["M"], + "fleecing": [], + "untrustworthy": [], + "endocrinologist": ["M", "S"], + "search'sed": [], + "Lyell's": [], + "sprain'sed": [], + "heroin's": [], + "repossess": [], + "Ladyship'ses": [], + "ominously": [], + "Cambodians's": [], + "kibitzer's": [], + "woodenness": ["M"], + "sarnies": [], + "misdiagnoseds": [], + "bravura's": [], + "nineteenth's": [], + "inventorying": [], + "champion'sed": [], + "jowlier": [], + "cutter's": [], + "zither": ["M", "S"], + "tendings": [], + "evenly": [], + "juxtaposed": [], + "lubinged": [], + "reciprocal's": [], + "flintier": [], + "fluorocarbons": [], + "maniac's": [], + "diarrhea's": [], + "Turpin's": [], + "geyser's": [], + "exercise": ["D", "R", "S", "M", "Z", "G"], + "urine": ["M"], + "landowner": ["M", "S"], + "undergraduate's": [], + "nonwhite": ["M", "S"], + "bathwater": [], + "rubberizinged": [], + "subdivided": [], + "Chongqing": ["M"], + "blah": ["M"], + "tote's": [], + "associate's": [], + "dries": [], + "embarkation": ["E", "M"], + "bubbles's": [], + "annealinged": [], + "cobnuts": [], + "headers": [], + "jib'sed": [], + "bludgeon'sed": [], + "mistrial'ses": [], + "shred'ses": [], + "shilleds": [], + "gladdening": [], + "Velma's": [], + "understates": [], + "weaker": [], + "Minoan": ["M", "S"], + "drunkenness's": [], + "explanation's": [], + "Prensa": ["M"], + "airmail": ["G", "S", "M", "D"], + "payslip's": [], + "luxuries": [], + "tirade's": [], + "prier's": [], + "dun's": [], + "ufology": ["M"], + "traditions": [], + "amateurish": ["Y", "P"], + "pierced": [], + "Jocelyn": ["M"], + "crinkliest": [], + "widowed": [], + "restrainer": [], + "exhilarating": [], + "parboil": ["D", "S", "G"], + "successor's": [], + "curtailments": [], + "Dijon's": [], + "behead": ["D", "G", "S"], + "huzzaheding": [], + "owlishly": [], + "cylindrical": [], + "Premyslid": ["M"], + "Britain's": [], + "scufflinged": [], + "Decatur": ["M"], + "glop's": [], + "Spinx": ["M"], + "entail": ["D", "S", "G", "L"], + "corruptibility": ["I", "M"], + "defenselessness's": [], + "Phekda": ["M"], + "gringo": ["M", "S"], + "cricketers": [], + "misadventure'ses": [], + "ed's": [], + "coauthors": [], + "flotations's": [], + "altimeter's": [], + "lordships's": [], + "nope": [], + "emetic": ["S", "M"], + "colored": ["U"], + "Moog": ["M"], + "dikes": [], + "globalized": [], + "sitters's": [], + "Camden": ["M"], + "Abelard": ["M"], + "knife's": [], + "broadcastings": [], + "fife'sers": [], + "wheeziness": ["M"], + "Chase's": [], + "molasses's": [], + "Rebekah's": [], + "Hopi": ["S", "M"], + "aftershock's": [], + "Devanagari": ["M"], + "understatement's": [], + "madden": ["D", "G", "S"], + "impermanence's": [], + "prettifieds": [], + "hennas": [], + "mercantilism's": [], + "bedpans": [], + "bluffing": [], + "antennae": [], + "blackballing": [], + "Fuller's": [], + "Elvia": ["M"], + "coexistent": [], + "breathingable": [], + "zirconium": ["M"], + "Casablanca's": [], + "festivals's": [], + "Menander's": [], + "Reaganomics's": [], + "descries": [], + "rainy": ["R", "T"], + "humorousness": ["M"], + "savorsing": [], + "pissers": [], + "pinafore'ses": [], + "parryinged": [], + "Adventist": ["M", "S"], + "psychic": ["M", "S"], + "stamperers": [], + "retailer": ["M", "S"], + "methodologies": [], + "Winnebago's": [], + "frames": [], + "hearteninged": [], + "nerve": ["U", "D", "S", "G"], + "splats": [], + "preexistence's": [], + "ticker": ["M"], + "entertaineder": [], + "rarefaction's": [], + "investigatingen": [], + "landownings": [], + "Junes's": [], + "pastrami": ["M"], + "challenges": [], + "payout": ["M", "S"], + "austral": [], + "zygotes": [], + "mantas's": [], + "genteelness's": [], + "negativity": ["M"], + "rephotographed": [], + "dismays": [], + "menopause's": [], + "sleeted": [], + "Lysenko's": [], + "object'sed": [], + "Ruskin": ["M"], + "certitude": ["I", "M"], + "stand'ser": [], + "incisiveness": ["M"], + "ruff": ["M", "D", "Y", "G", "S"], + "nonempty": [], + "sooth's": [], + "chest": ["M", "D", "S"], + "diversifies": [], + "spouting": [], + "boogie'sed": [], + "crier": ["M"], + "settlements": [], + "Yoruba's": [], + "Masonite's": [], + "Dionne": ["M"], + "reasoneder": [], + "combated": [], + "esquires": [], + "read": ["Z", "G", "M", "R", "B", "J", "S"], + "spender's": [], + "stiflings": [], + "manumissions": [], + "psychologist'ses": [], + "straggliest": [], + "worried": ["Y"], + "Erie": ["M"], + "pallet'ses": [], + "enclosure": ["S", "M"], + "pilot's": [], + "predestination": ["M"], + "Dana": ["M"], + "alerted": [], + "fabricator's": [], + "torridness's": [], + "inchesing": [], + "gaping": [], + "onside": [], + "weatherproof": ["G", "S", "D"], + "floodlight": ["M", "D", "S", "G"], + "tracker's": [], + "cowling": ["M"], + "generalissimos": [], + "eavesdropping": [], + "Americanisms": [], + "dimnesses": [], + "moneymakers's": [], + "Bushnell's": [], + "jet's": [], + "Orval": ["M"], + "disservice": [], + "verbalization": ["M"], + "factoids": [], + "oceanology": ["M"], + "aftershaves's": [], + "landslide'sing": [], + "evaporateds": [], + "same": ["S", "P"], + "donnybrook'ses": [], + "netter": ["S"], + "slimiest": [], + "advanced": [], + "overworked": [], + "peskily": [], + "accession'sed": [], + "derange": [], + "Savior": ["M"], + "quickens": [], + "loafersing": [], + "econometric": [], + "tarpon": ["M", "S"], + "chronicler": ["M"], + "outperforms": [], + "poseurs's": [], + "screwier": [], + "San'a": [], + "Astaire's": [], + "vitrines's": [], + "slatterns's": [], + "pestlinged": [], + "Bethlehem's": [], + "laws's": [], + "canton's": [], + "darkener": ["M"], + "legato": ["S", "M"], + "snag's": [], + "homesteaderers": [], + "postmodernism": ["M"], + "cytoplasm": ["M"], + "anthologizing": [], + "cologne": ["S", "M"], + "slowerly": [], + "felled": [], + "lepton": ["M", "S"], + "Gruyeres's": [], + "subarea'ses": [], + "Vera": ["M"], + "sledges": [], + "facsimiles": [], + "gourde's": [], + "tyrannically": [], + "dole": ["F", "G", "D", "S"], + "BTW": [], + "indemnification": ["M"], + "cleanlier": [], + "sniffles's": [], + "discovereding": [], + "videotape's": [], + "quittance": ["M"], + "halal": ["M"], + "toggles": [], + "gadolinium's": [], + "scrams": [], + "illicit": ["Y", "P"], + "sponsor": ["M", "D", "G", "S"], + "Fri's": [], + "maltreatment's": [], + "fixatesens": [], + "Bradford's": [], + "rapacity": ["M"], + "banshee": ["M", "S"], + "Ascella": ["M"], + "intuited": [], + "belay": ["G", "D", "S"], + "moat's": [], + "schooldays": [], + "Joy": ["M"], + "croakier": [], + "gala'ses": [], + "forger": ["M"], + "semiconductor": ["M", "S"], + "palliatesing": [], + "pause's": [], + "umiak": ["S", "M"], + "unarmored": [], + "retinas's": [], + "alphabetically": [], + "accreditsing": [], + "malls": [], + "Firestone's": [], + "tissues's": [], + "pasteurized": ["U"], + "outback": ["M", "S"], + "interlocking": [], + "supervisioned": [], + "hash": ["A", "M", "D", "S", "G"], + "shutouts": [], + "stability": ["I", "M"], + "committeeman's": [], + "exit": ["M", "D", "G", "S"], + "Byronic's": [], + "heaven": ["S", "M", "Y"], + "augmenters": [], + "holster's": [], + "bittersweet'ses": [], + "bombardments's": [], + "assimilate": ["D", "S", "G", "N"], + "licentiousness": ["M"], + "boozeder": [], + "swan": ["M", "S"], + "caked": [], + "interleaves": [], + "creepiest": [], + "fillies's": [], + "loving": ["Y"], + "winchesing": [], + "Dirk's": [], + "Ataturk's": [], + "nonperforming": [], + "pledge": ["D", "S", "M", "G"], + "ignitinged": [], + "Zephaniah's": [], + "deli": ["S", "M"], + "squeakiness": ["M"], + "dullness": ["M"], + "gynecologist": ["S", "M"], + "brave": ["G", "P", "M", "Y", "D", "T", "R", "S"], + "sinuously": [], + "sandbaggers's": [], + "kernels": [], + "gooks": [], + "seedy": ["R", "P", "T"], + "Hung": ["M"], + "Yossarian's": [], + "hankerers": [], + "labial's": [], + "wherefore'ses": [], + "vasectomies's": [], + "naiads": [], + "pimplier": [], + "aged": [], + "Smuts": ["M"], + "glycerin": ["M"], + "handlebar'ses": [], + "Talmud": ["M", "S"], + "endocrine'ses": [], + "blessesings": [], + "onionness": [], + "unmovable": [], + "hansom": ["M", "S"], + "cleanlinesser": [], + "Bethe's": [], + "Oneal": ["M"], + "Francesca": ["M"], + "filibusterer": ["M"], + "sweatier": [], + "counterattacking": [], + "Gris": ["M"], + "unpickinged": [], + "moralizer'ses": [], + "woodiness's": [], + "dilation": ["M"], + "Rasalgethi's": [], + "gatecrashesers": [], + "obsequiousness's": [], + "felicitously": [], + "rad's": [], + "antagonizesing": [], + "spliced": [], + "Methodisms's": [], + "salesman's": [], + "accustomed": ["U"], + "Kerri's": [], + "blustered": [], + "mimes": [], + "needier": [], + "proclamations": [], + "calumniatingen": [], + "paternoster": ["M", "S"], + "privy's": [], + "impetigo": ["M"], + "fount": ["S", "M"], + "gauziness's": [], + "reread": ["S", "G"], + "faradizeding": [], + "burden's": [], + "tickling": [], + "flagellants": [], + "Cinderella's": [], + "courtroom's": [], + "Dillon": ["M"], + "spoofed": [], + "bomber's": [], + "hydroelectric": [], + "recyclables": [], + "plunks": [], + "Correggio's": [], + "shuttle'sing": [], + "mesquite's": [], + "structuring": [], + "topless": [], + "litmus": ["M"], + "endocrines": [], + "Tortuga's": [], + "Micmac's": [], + "triplet": ["S", "M"], + "pedometer": ["M", "S"], + "Winchester": ["M", "S"], + "gnarl'sed": [], + "recluse": ["S", "M", "V"], + "Czechia": ["M"], + "RAMs": [], + "wieldeder": [], + "foreclose": ["D", "S", "G"], + "feed'ser": [], + "fragrance'ses": [], + "employeding": [], + "broadside": ["M", "G", "D", "S"], + "lapdog's": [], + "eclairs's": [], + "marryinged": [], + "pinions": [], + "foredoomings": [], + "confabulation's": [], + "exorcises": [], + "barman": ["M"], + "Nibelung": ["M"], + "gassier": [], + "dairy's": [], + "Commons's": [], + "thrashes": [], + "eyebrows's": [], + "soughed": [], + "moltsers": [], + "darkerly": [], + "Taft's": [], + "tenderheartedness": ["M"], + "Khachaturian": ["M"], + "leapfrog'ses": [], + "regulatesing": [], + "retrofitting": [], + "Camelopardalis's": [], + "heliport'ses": [], + "mercerizeds": [], + "borrow": ["S", "D", "R", "Z", "G", "J"], + "Tammi": ["M"], + "rotors": [], + "archaeology": ["M"], + "lozenges": [], + "pragmatical": ["Y"], + "Malawian": ["S", "M"], + "fumigation's": [], + "execrated": [], + "huskiness": ["M"], + "Dewayne": ["M"], + "shrew's": [], + "phoenix": ["M", "S"], + "bombards": [], + "emoji": ["S", "M"], + "grave's": [], + "washstands's": [], + "pianissimos": [], + "fusspots": [], + "softened": [], + "PMs's": [], + "archangels": [], + "murmuringings": [], + "schoolyards": [], + "Blenheim": ["M"], + "receptions": [], + "cuckoldsing": [], + "coalescence's": [], + "eternally": [], + "triggersing": [], + "radio's": [], + "mythology's": [], + "slopings": [], + "Teresa's": [], + "Lisa": ["M"], + "Davao's": [], + "flatbed": ["S", "M"], + "attentiveness's": [], + "Cameroonian's": [], + "unbosomed": [], + "panther's": [], + "discreetly": [], + "Taoist": ["M", "S"], + "contemned": [], + "illiterates": [], + "clunker": ["M"], + "Pierce's": [], + "square'sly": [], + "bassoon'ses": [], + "minesweepers's": [], + "curtsy": ["G", "D", "S", "M"], + "Pomona": ["M"], + "Dewey": ["M"], + "enfilade": ["D", "S", "M", "G"], + "oversupplied": [], + "fantasizeds": [], + "stargazed": [], + "drains's": [], + "sickbeds": [], + "juvenile's": [], + "dalmatian": ["M", "S"], + "calender's": [], + "sweeter": [], + "conflagration's": [], + "webmistress": ["M", "S"], + "grab's": [], + "attenuation": ["M"], + "alphanumeric": [], + "naffest": [], + "railings": [], + "edginess's": [], + "deist": ["M", "S"], + "lieges's": [], + "leaseholdsers": [], + "arthroscope's": [], + "Pete'sers": [], + "prodeclaim": [], + "lithographs": [], + "Pakistan": ["M"], + "assimilateds": [], + "reproachesable": [], + "situatingen": [], + "Australopithecus": ["M"], + "huddles": [], + "applicationens": [], + "histologist": ["S", "M"], + "Lestrade": ["M"], + "wetbacks's": [], + "mild'ser": [], + "brim's": [], + "ached": [], + "nutritiously": [], + "teetereds": [], + "patrolmen": [], + "numbest": [], + "instigated": [], + "gram'ses": [], + "flairs": [], + "homemade": [], + "sequoia'ses": [], + "maize": ["S", "M"], + "serial'sly": [], + "post'sed": [], + "comedienne's": [], + "permutations": [], + "vast's": [], + "rarefyinged": [], + "haggle's": [], + "asseverated": [], + "broody": ["R", "M", "P", "T"], + "rubiers": [], + "adjacency's": [], + "gazebos's": [], + "contrarian": ["S", "M"], + "paranoid": ["S", "M"], + "unwrinkled": [], + "sateen's": [], + "cabriolets": [], + "acutes": [], + "ruggedly": [], + "supermarket's": [], + "goldfishes": [], + "Creation's": [], + "preemie": ["S", "M"], + "patronizer": ["M"], + "congregates": [], + "timbereding": [], + "cremation's": [], + "jellybean": ["M", "S"], + "janitorial": [], + "peripheral'sly": [], + "Septembers": [], + "matriculating": [], + "telethons": [], + "affection's": [], + "sirens's": [], + "rollingings": [], + "Amanda's": [], + "disturbance": ["S", "M"], + "meson's": [], + "sundials's": [], + "chloroforming's": [], + "annelids": [], + "calibrate": ["G", "N", "D", "S", "X"], + "intent's": [], + "healthiest": [], + "acquittal": ["M", "S"], + "pleasingly": [], + "sellout'ses": [], + "flambe'ses": [], + "fontanels": [], + "Grenadians": [], + "weakerly": [], + "ternary": ["S", "M"], + "serrate": ["X", "N", "D"], + "Vitim's": [], + "overfeedings": [], + "orifices": [], + "ABC": ["S", "M"], + "untruths": [], + "doggier": [], + "sidestepped": [], + "chalk'sed": [], + "frivolities's": [], + "underbrush's": [], + "consolatory": [], + "Schindler's": [], + "Wollstonecraft's": [], + "jawbreakers": [], + "McPherson's": [], + "apologetic": ["U"], + "howbeit": [], + "commandeder": [], + "Auriga": ["M"], + "moon'sed": [], + "Gauss": ["M"], + "Vaduz's": [], + "acclaims": [], + "daises": [], + "dabblersing": [], + "sentence's": [], + "buffs": [], + "tabernacles": [], + "messiahs": [], + "flip's": [], + "Bradbury's": [], + "coaster": ["M"], + "fir'sed": [], + "spellcheck's": [], + "Hellenization": ["M"], + "ad": ["S", "M"], + "immigrants": [], + "sculpts": [], + "uncanny": ["T"], + "stickiers": [], + "buckwheat": ["M"], + "hoax'sed": [], + "manufacturing's": [], + "didgeridoos": [], + "swearser": [], + "croquet's": [], + "insulator": ["M", "S"], + "Marco's": [], + "mingle": ["D", "S", "G"], + "overbearingly": [], + "hokey": [], + "bracketing's": [], + "contravention": ["S", "M"], + "recriminateds": [], + "orange'sness": [], + "savable": [], + "mullions's": [], + "overstatementing": [], + "receipt'sed": [], + "Patricia": ["M"], + "inadequacy": ["S"], + "wanderer": ["M"], + "kuchens": [], + "priestess": ["M", "S"], + "catchwords": [], + "vocationally": [], + "Scripture's": [], + "conviviality": ["M"], + "tinnitus's": [], + "colossally": [], + "viciously": [], + "terrorist": ["S", "M"], + "inclement": [], + "sociologically": [], + "infantryman": ["M"], + "muckraker's": [], + "contributor's": [], + "Tinkerbell's": [], + "autocratically": [], + "reticulation": ["M", "S"], + "bloodline": ["S", "M"], + "eta": ["S", "M"], + "impersonatingen": [], + "unforced": [], + "Eurasian's": [], + "bowling's": [], + "angrier": [], + "chuntering": [], + "noble's": [], + "vocalized": [], + "superhero'ses": [], + "Jack's": [], + "peck's": [], + "confabulating": [], + "chippy": ["S"], + "mellowinged": [], + "keyhole'ses": [], + "philippic'ses": [], + "typifies": [], + "nattiest": [], + "acetylene": ["M"], + "Baptiste's": [], + "declension's": [], + "concentrated": [], + "hovercraft's": [], + "semblance's": [], + "Tripoli": ["M"], + "pilothouses": [], + "turf": ["M", "D", "S", "G"], + "debacle'ses": [], + "inquirer": ["M"], + "coverall": ["M", "S"], + "Praxiteles": ["M"], + "gallows's": [], + "corpuscular": [], + "deviling": [], + "openhandedness's": [], + "Tran": ["M"], + "cruelly": [], + "levelersing": [], + "lobber'ses": [], + "loop": ["M", "D", "S", "G"], + "gussiesing": [], + "Quebec's": [], + "Janus's": [], + "Quincy": ["M"], + "waxed": [], + "ventricle": ["S", "M"], + "berryinged": [], + "journeyman": ["M"], + "puttieds": [], + "discipleship's": [], + "extricatingen": [], + "crumplinged": [], + "unrelenting": ["Y"], + "Cretans": [], + "fudging": [], + "printouts's": [], + "stained": ["U"], + "Daley's": [], + "confidence's": [], + "detectable": ["U"], + "spring's": [], + "pummeled": [], + "madrasas": [], + "memorial": ["S", "M"], + "abs's": [], + "napalmsing": [], + "superchargersing": [], + "teased": [], + "sharpensers": [], + "acclivities's": [], + "loopiest": [], + "jugglery's": [], + "yarmulke's": [], + "overhead's": [], + "subroutine's": [], + "disarmingly": [], + "Seeger": ["M"], + "pigeonholing": [], + "nameplate'ses": [], + "payingable": [], + "band": ["E", "S", "G", "D"], + "snit": ["M", "S"], + "authenticated": ["U"], + "mommies": [], + "placentals": [], + "Farrell's": [], + "negritude": ["M"], + "engrossmented": [], + "offhanded": ["P", "Y"], + "abusing": [], + "nettling": [], + "pectorals": [], + "dapples": [], + "charabancs": [], + "demotivate": [], + "reexporting": [], + "prosecutor": ["M", "S"], + "whooshesing": [], + "AOL's": [], + "Caracas's": [], + "anathemas's": [], + "ennobled": [], + "opposed": ["U"], + "assuaged": [], + "recessive": ["S", "M"], + "Gomorrah": ["M"], + "subornsing": [], + "softest": [], + "dashes": [], + "sling's": [], + "shutoffs": [], + "rue's": [], + "pomades's": [], + "spruceness's": [], + "soil'sed": [], + "eroticism": ["M"], + "lxii": [], + "adjoineds": [], + "lachrymal": [], + "brioches": [], + "Lego": ["M"], + "petrified": [], + "psychoanalysis": ["M"], + "hora": ["M", "S"], + "straddle": ["D", "R", "S", "M", "Z", "G"], + "Vikings": [], + "broaderly": [], + "obituary": ["S", "M"], + "whelp": ["S", "M", "D", "G"], + "keel": ["M", "D", "S", "G"], + "Lamb's": [], + "commissioninged": [], + "cos": ["M"], + "lullsing": [], + "Grahame": ["M"], + "thumps": [], + "orchestra": ["M", "S"], + "hipbaths": [], + "divisor": ["S", "M"], + "polymath": ["M"], + "morgue's": [], + "Frankel": ["M"], + "noncompliance": ["M"], + "aniline": ["M"], + "antedate": ["G", "D", "S"], + "extremist'ses": [], + "filibusterersing": [], + "Krasnoyarsk's": [], + "itemizing": [], + "robustness's": [], + "Exxon": ["M"], + "antipollution": [], + "dragoons": [], + "fundamental": ["S", "M", "Y"], + "vegetated": [], + "divines": [], + "Rigel": ["M"], + "parliamentarians": [], + "deputed": [], + "perishersing": [], + "perils": [], + "summat": [], + "enchantresses": [], + "comically": [], + "waffled": [], + "sandwicheds": [], + "mauling": [], + "caricature": ["M", "G", "D", "S"], + "indomitable": [], + "bosh's": [], + "exile'sing": [], + "Christmastide'ses": [], + "compound'sed": [], + "comprehends": [], + "Moll": ["M"], + "fictionalize": ["D", "S", "G"], + "voidable": [], + "economical": ["U", "Y"], + "overcapitalize": ["D", "S", "G"], + "garrisons": [], + "Chicano's": [], + "maintainersing": [], + "aviaries": [], + "arbor'ses": [], + "teamster's": [], + "republican": [], + "anodizinged": [], + "fanciest": [], + "crowfoots": [], + "rustler's": [], + "airfields": [], + "scam": ["M", "S"], + "curatives": [], + "justly": [], + "false": ["P", "R", "Y", "T"], + "kip": ["S", "M"], + "untoward": [], + "cornstarch's": [], + "immigrateds": [], + "gloves's": [], + "yup's": [], + "charitableness's": [], + "turbines's": [], + "recanting": [], + "bursa's": [], + "lifebelt": ["S"], + "simplifiesens": [], + "dippiest": [], + "hookworm": ["M", "S"], + "damask'sed": [], + "stimulated": [], + "manganese's": [], + "rotas": [], + "ructions": [], + "cell": ["S", "M", "D"], + "charteringed": [], + "clamminess's": [], + "bursitis's": [], + "loser's": [], + "absolutely": [], + "whispereder": [], + "biodegraded": [], + "veto": ["M", "D", "G"], + "avocational": [], + "shipwreck": ["G", "M", "D", "S"], + "lumberings": [], + "cobblestone's": [], + "underemployed": [], + "codependency": ["M"], + "bigger": [], + "osteopaths": [], + "frontbenchers": [], + "addles": [], + "don's": [], + "MRI's": [], + "Cinderella'ses": [], + "coupes's": [], + "made": ["A", "U"], + "inflexible": [], + "secure": ["D", "R", "S", "Y", "T", "G"], + "crooking": [], + "ecstasies": [], + "merging": [], + "Vandal'ses": [], + "copulas": [], + "overpass": ["M", "S"], + "Bonnie's": [], + "Brit": ["S", "M"], + "silage's": [], + "Northwests": [], + "bilge's": [], + "Qantas": ["M"], + "disrespect": [], + "sullenly": [], + "petitioner's": [], + "superconductivity": ["M"], + "cannier": [], + "venerated": [], + "comportment": ["M"], + "Roddenberry": ["M"], + "gardener's": [], + "coarser": [], + "ratbag": ["S"], + "Dominguez's": [], + "Proust": ["M"], + "Rosanna's": [], + "contains": [], + "favorable": ["U"], + "Congregationalist": ["M", "S"], + "dirt's": [], + "pushcart": ["S", "M"], + "mimicry": ["S", "M"], + "thumb's": [], + "overindulging": [], + "spearfished": [], + "rung'ses": [], + "thousandfold": [], + "wife": ["M", "Y"], + "bravers": [], + "Austins": [], + "impeacheder": [], + "premonition's": [], + "exists": [], + "bisexually": [], + "epidemiologist's": [], + "mutt'ses": [], + "fazinged": [], + "nicking": [], + "cottontail'ses": [], + "apogee": ["M", "S"], + "sough'sed": [], + "sweetish": [], + "pointlessness": ["M"], + "Pasternak": ["M"], + "pursuinged": [], + "malignsing": [], + "heydays": [], + "motorbikes": [], + "embrocation'ses": [], + "precooking": [], + "kingpin's": [], + "proctoring": [], + "cockatoos's": [], + "gobstoppers": [], + "tors's": [], + "batman's": [], + "gyp's": [], + "luncheonettes": [], + "xis's": [], + "arboretums": [], + "theatricality": ["M"], + "excellently": [], + "crackpot's": [], + "edger's": [], + "calliope": ["M", "S"], + "stopwatch's": [], + "informant": ["S", "M"], + "goatee": ["S", "M"], + "gossip'sed": [], + "judiciousness": ["I", "M"], + "swung": [], + "sophism": ["M"], + "flutes's": [], + "cuffing": [], + "allegation's": [], + "ordure's": [], + "indemnification's": [], + "hightail": ["D", "S", "G"], + "gag": ["S", "M"], + "Benedictine": ["M", "S"], + "undersea": ["S"], + "interpretation'ses": [], + "expurgations": [], + "disqualification": [], + "boding": [], + "wedgie'ses": [], + "adobe": ["M", "S"], + "equation's": [], + "choler's": [], + "leviers": [], + "untrod": [], + "dues": [], + "chooser": ["M"], + "undiluted": [], + "exchangeable": [], + "breakwaters's": [], + "spelunking": ["M"], + "Conner": ["M"], + "lightweights's": [], + "queasy": ["T", "P", "R"], + "milliseconds": [], + "shipwrights": [], + "geneticist": ["M", "S"], + "topknots's": [], + "steadies's": [], + "Lutheranism'ses": [], + "Coke's": [], + "foregoing": [], + "moderating": [], + "quarry": ["D", "S", "M", "G"], + "Arcadia": ["M"], + "crease'ses": [], + "globalist": ["M", "S"], + "networks": [], + "He": ["M"], + "pretext": ["M", "S"], + "newbie'ses": [], + "watershed'ses": [], + "Yugoslavians": [], + "knockdown's": [], + "sting'ser": [], + "contumelies's": [], + "elbow's": [], + "braved": [], + "predestinesing": [], + "Moravian": ["M"], + "honing": [], + "seizeds": [], + "drifterers": [], + "fol": [], + "Susana's": [], + "coquetteds": [], + "swaddles": [], + "Benetton's": [], + "adulteries's": [], + "secures": [], + "infarction": ["M"], + "Ishtar's": [], + "frills": [], + "waviest": [], + "Thessalonian's": [], + "pupated": [], + "velar": ["S", "M"], + "housefuls": [], + "draftswomen": [], + "gearbox'ses": [], + "crisscrossing's": [], + "highwaymen": [], + "lagers's": [], + "BS": ["M"], + "Kathleen": ["M"], + "spectacle's": [], + "dustbin": ["S", "M"], + "diligence": ["M"], + "notable": ["S", "M"], + "knee": ["M", "D", "S"], + "parodists": [], + "cementings": [], + "notion's": [], + "Lydia's": [], + "profligates's": [], + "spuming": [], + "nimrod's": [], + "scrabblinged": [], + "befuddled": [], + "burnable": ["S", "M"], + "coquetries": [], + "Shankara": ["M"], + "drifter": ["M"], + "plowshare's": [], + "digitizing": [], + "retainerers": [], + "lapsed": [], + "cottonwood's": [], + "confessionals": [], + "clacks": [], + "reefer's": [], + "planer's": [], + "obstructions's": [], + "laureate": ["M", "S"], + "disadvantage": [], + "ladyfingers": [], + "dusteder": [], + "Norton": ["M"], + "defalcatesens": [], + "letterhead'ses": [], + "pacifies": [], + "tinseling": [], + "majordomo": ["M", "S"], + "cortex's": [], + "vituperated": [], + "reserve": [], + "bollix": ["G", "M", "D", "S"], + "announceder": [], + "killsers": [], + "dreadfulnessly": [], + "bindery's": [], + "ageratum": ["M"], + "pawn's": [], + "erection": ["S", "M"], + "incommensurate": [], + "quantify": ["N", "D", "R", "S", "Z", "G"], + "palesings": [], + "kilters": [], + "warlord'ses": [], + "realty": ["M"], + "patriarchy": ["S", "M"], + "Hayworth": ["M"], + "multitude's": [], + "squeaking's": [], + "dumplings's": [], + "thumbscrew": ["S", "M"], + "Romero's": [], + "nightmare": ["S", "M"], + "millingings": [], + "dentistry's": [], + "taus": [], + "scofflaw": ["M", "S"], + "prom": ["M"], + "nurserymen": [], + "Caroline's": [], + "adulatory": [], + "Porto's": [], + "detonatingen": [], + "contingents's": [], + "kith's": [], + "campus's": [], + "isotopes's": [], + "investiture": ["M", "S"], + "crusadersing": [], + "Sabine": ["M"], + "schoolmistress's": [], + "peters's": [], + "abutment'ses": [], + "denudeds": [], + "muenster's": [], + "balladeer's": [], + "norther'sly": [], + "lumbering": ["M"], + "reforging": [], + "crudity": ["S", "M"], + "ticktock": ["M", "S"], + "anarchism": ["M"], + "ungainlierness": [], + "nigga's": [], + "curvaceous": ["P"], + "aggro": [], + "dazzler's": [], + "Zionism's": [], + "lowercase's": [], + "diastase": ["M"], + "marketables": [], + "thanklessness's": [], + "Bursa": ["M"], + "nighthawks's": [], + "preserve'sers": [], + "supplants": [], + "isobar'ses": [], + "renovate": ["D", "S", "X", "G", "N"], + "CBC's": [], + "Liechtensteiner": ["M"], + "numbers": [], + "control's": [], + "Cheyenne": ["S", "M"], + "biffsing": [], + "providential": ["Y"], + "hormonal": [], + "highest": [], + "theorizes": [], + "nullify": ["N", "D", "S", "G"], + "upstrokes's": [], + "score'sers": [], + "barnyards's": [], + "abstained": [], + "tan": ["S", "M"], + "slopping": [], + "frosh's": [], + "extensions's": [], + "collection's": [], + "frenzieds": [], + "feared": [], + "governings": [], + "Cuisinart": ["M"], + "fusspots's": [], + "proofings": [], + "Wonder": ["M"], + "enriched": [], + "parkas": [], + "slabbed": [], + "ear's": [], + "batter's": [], + "bindweed's": [], + "toothache'ses": [], + "rented": [], + "baste": ["Z", "G", "N", "X", "D", "R", "S"], + "beauteous": ["Y"], + "sparseness's": [], + "contradistinction's": [], + "metalworking's": [], + "computer'ses": [], + "somnambulists's": [], + "Col": ["M"], + "hideousliness": [], + "Gonzalez's": [], + "earthling": ["M", "S"], + "tilinged": [], + "Elysiums's": [], + "Iroquoians's": [], + "Moriarty": ["M"], + "parenting": ["M"], + "orientation": ["A", "E", "M"], + "Amenhotep's": [], + "reprimandings": [], + "maudlin": [], + "exclusive's": [], + "whether": [], + "accumulatingen": [], + "rousts": [], + "objectification": [], + "tsunamis": [], + "lipread": ["G", "R", "S"], + "containerized": [], + "egotism's": [], + "Rochambeau's": [], + "necrosis's": [], + "spiffier": [], + "been": [], + "ska's": [], + "freeman's": [], + "Gustavus's": [], + "joshesers": [], + "gradually": [], + "discotheque's": [], + "crassness's": [], + "paralyzes": [], + "oscilloscope'ses": [], + "weakness": ["M", "S"], + "Limbaugh's": [], + "veld'ses": [], + "Madge's": [], + "Catskills's": [], + "cachinged": [], + "Gucci's": [], + "ruffings": [], + "Lara": ["M"], + "larynx's": [], + "punctureds": [], + "backtalk's": [], + "handedness": [], + "zappy": [], + "approachable": ["U", "I"], + "splurges's": [], + "flock's": [], + "5": ["n", "m"], + "Xerxes's": [], + "dickhead": ["S"], + "clefs's": [], + "fortifies": [], + "eases": [], + "dressings": [], + "embarrasses": [], + "vocable's": [], + "contacts": [], + "salaciously": [], + "serrationsen": [], + "chimed": [], + "lowlifes": [], + "thwacks": [], + "Marc": ["M"], + "viaducts": [], + "Filipino'ses": [], + "ADM": [], + "laughed": [], + "judicial": ["Y"], + "wheal's": [], + "guardroom": ["S", "M"], + "secularist's": [], + "overprints": [], + "subsists": [], + "severely": [], + "godsons": [], + "Viagra": ["M"], + "preened": [], + "factorizing": [], + "pup's": [], + "rerecord": ["G", "D", "S"], + "protector": ["M", "S"], + "upturnings": [], + "entreats": [], + "elsewhere": [], + "invading": [], + "turreted": [], + "soundtrack": ["S", "M"], + "telexeds": [], + "Catawba's": [], + "usages": [], + "pabulum": ["M"], + "antipodean": ["M", "S"], + "approach'sed": [], + "Dartmouth's": [], + "lamentation'ses": [], + "neutralism": ["M"], + "mudflaps": [], + "encloseds": [], + "songwriters": [], + "Sherwood": ["M"], + "Campos's": [], + "coop'sed": [], + "restiveness": ["M"], + "Lascaux's": [], + "piston": ["S", "M"], + "chili": ["M"], + "soup'sed": [], + "confreres": [], + "Chelyabinsk's": [], + "cruses": [], + "streetlamp": ["S"], + "maturated": [], + "offing": ["M"], + "winsomely": [], + "O'Neil's": [], + "bloodlines": [], + "reveal": ["G", "J", "S", "D"], + "embargoeding": [], + "Jess": ["M"], + "antiquated": [], + "supernatural": ["S", "Y"], + "minimum": ["M", "S"], + "tollbooths": [], + "sandbank's": [], + "bewhiskered": [], + "beastliest": [], + "condemned": [], + "gendereds": [], + "hairstyle's": [], + "nudism's": [], + "nay's": [], + "californium": ["M"], + "medium": ["M", "S"], + "ratingsens": [], + "sketchbooks": [], + "dentifrice's": [], + "mullet'ses": [], + "Priestley's": [], + "cartoonist": ["M", "S"], + "invalidlies": [], + "backdateds": [], + "requester": [], + "marijuana's": [], + "bullfighting's": [], + "gazelle's": [], + "consecrate": ["A", "D", "S", "G", "N"], + "Rommel's": [], + "Myst's": [], + "Azerbaijani": ["M", "S"], + "parapet": ["M", "S"], + "shire's": [], + "entryways": [], + "compressor": ["S", "M"], + "quicklications": [], + "dirndl's": [], + "pearl": ["S", "G", "M", "D"], + "defrauderers": [], + "smirk'sed": [], + "Burgundian": ["M"], + "schlemiels's": [], + "contortionists's": [], + "Goldilocks": ["M"], + "titter's": [], + "hennaed": [], + "spinnakers's": [], + "entrustsing": [], + "voyageurs": [], + "Hansel's": [], + "recruiting": [], + "swingings": [], + "sparkedly": [], + "liquidating": [], + "portraits": [], + "shellacking": ["M", "S"], + "steeplejack": ["S", "M"], + "Mandingo's": [], + "prawn's": [], + "moochersing": [], + "euthanasia's": [], + "singsong's": [], + "childbirth": ["M"], + "punctuating": [], + "Adriana": ["M"], + "themed": [], + "headstones's": [], + "psittacosis": ["M"], + "claspeds": [], + "nobbles": [], + "cresting": [], + "disquietings": [], + "swiftness": ["M"], + "towhees": [], + "javelins's": [], + "chlorofluorocarbons's": [], + "viola's": [], + "Baggies's": [], + "vanning": [], + "detection's": [], + "corncrake": ["S"], + "parenthesized": [], + "abusively": [], + "escargot's": [], + "perplexities's": [], + "italics": ["M"], + "Frey's": [], + "tansy's": [], + "herdings": [], + "coupons": [], + "coreligionist": ["S"], + "thatchesers": [], + "magneto": ["S", "M"], + "standpipes's": [], + "sweets": [], + "Cybele": ["M"], + "importune": ["G", "D", "S"], + "Purcell's": [], + "Orville's": [], + "report": [], + "splicersing": [], + "pedestrians": [], + "springbok'ses": [], + "Georgetown": ["M"], + "rewrite's": [], + "apparatchiks": [], + "stoup's": [], + "outpatient'ses": [], + "primness": ["M"], + "rawest": [], + "Pollock's": [], + "strive": ["G", "S"], + "regulations": [], + "ogresses": [], + "dissecteding": [], + "deselection": [], + "into": [], + "dipsticks": [], + "growler": ["M"], + "descendant's": [], + "duds's": [], + "laudably": [], + "Yaren": [], + "MSW": [], + "publications": [], + "misspelled": [], + "hockshops": [], + "conceal": ["S", "D", "R", "Z", "G", "B", "L"], + "civilians": [], + "emigrateds": [], + "concert": ["E", "S", "D", "G"], + "flywheel": ["M", "S"], + "osculationsing": [], + "ideologists": [], + "hypnotized": [], + "covenantsing": [], + "defeatist": ["M", "S"], + "captivate": ["D", "S", "G", "N"], + "amercements's": [], + "altos": [], + "airbed": ["S"], + "infestation": ["M", "S"], + "louses": [], + "boas": [], + "intermediaries's": [], + "cells's": [], + "platooned": [], + "sorghum": ["M"], + "glowworms": [], + "markings's": [], + "guardrails": [], + "hectometer": ["M", "S"], + "Taine's": [], + "strangenesser": [], + "misunderstands": [], + "hon": ["S", "Z", "T", "G", "M", "D", "R"], + "marmalade's": [], + "courts": [], + "buster": ["M"], + "robot": ["M", "S"], + "lids": [], + "Bono": ["M"], + "humanizers": [], + "unimaginative": [], + "actualization": ["M"], + "hostesseds": [], + "sleepless": ["P", "Y"], + "marshes": [], + "main": ["M", "Y", "S"], + "sedge": ["M"], + "eggshells": [], + "awes": [], + "RP": [], + "democratize": ["G", "D", "S"], + "haulings": [], + "pantywaists": [], + "toying": [], + "guy": ["S", "G", "M", "D"], + "adjacently": [], + "Farrell": ["M"], + "seigneur's": [], + "leching": [], + "trowsing": [], + "outsold": [], + "electrocardiogram's": [], + "avowedly": [], + "vestryman's": [], + "bodybuilder's": [], + "Mindoro's": [], + "painter": ["M", "Y"], + "Isherwood": ["M"], + "outboasting": [], + "seaming": [], + "savageder": [], + "impugners": [], + "apprehensive": ["Y", "P"], + "telephone'sers": [], + "swashbuckler's": [], + "turnip": ["S", "M"], + "circumstanceds": [], + "clergies": [], + "freelancersing": [], + "dictatingen": [], + "BSD's": [], + "noodleds": [], + "Paris's": [], + "assortments": [], + "untidiness": [], + "frizzleds": [], + "supporteder": [], + "fancy'sers": [], + "Ramakrishna's": [], + "pancake's": [], + "familiarlies": [], + "compulsions": [], + "meritocracies's": [], + "polecats": [], + "hipster'ses": [], + "legacy": ["S", "M"], + "Tass": ["M"], + "urea": ["M"], + "criminalized": [], + "jacketed": [], + "reareds": [], + "divorces": [], + "resupplieds": [], + "fuel's": [], + "glycerol": ["M"], + "commandeers": [], + "demoted": [], + "ejector": ["S", "M"], + "tussleds": [], + "gravimeter'ses": [], + "eyeing": [], + "received": [], + "esteem'sed": [], + "weblog": ["M", "S"], + "sulfa's": [], + "fullness's": [], + "prayinged": [], + "letup's": [], + "taxicabs's": [], + "trash": ["G", "M", "D", "S"], + "Hanukkahs": [], + "splayeding": [], + "undiminished": [], + "sides": [], + "glisten's": [], + "splendiderly": [], + "cobwebby": ["R", "T"], + "engines": [], + "aunts's": [], + "camshaft": ["S", "M"], + "Brandie's": [], + "cantilever'sed": [], + "prangeds": [], + "hollyhock's": [], + "dreaming": [], + "smoothness": ["M"], + "grouper's": [], + "walnut's": [], + "Roche's": [], + "lollipop": ["S", "M"], + "streamsers": [], + "cements": [], + "pushersing": [], + "madcap'ses": [], + "queening": [], + "omnivore's": [], + "misprision": ["M"], + "resemblesing": [], + "Czechoslovakia's": [], + "denture'ses": [], + "Massey": ["M"], + "indirect": ["Y"], + "flanker": ["M"], + "sylph's": [], + "discussants": [], + "Rogers's": [], + "consumersing": [], + "accompanists's": [], + "Greensleeves": ["M"], + "puffing's": [], + "freelanced": [], + "wisp'ses": [], + "apricot": ["M", "S"], + "campground": ["S", "M"], + "NYSE": [], + "rice's": [], + "gaskets": [], + "brush": ["M", "D", "S", "G"], + "sealeding": [], + "solemnly": [], + "endlessness's": [], + "stainless": ["M"], + "miladies's": [], + "reforge": ["D", "S", "G"], + "accurateness's": [], + "overhanded": [], + "Holst": ["M"], + "bedrock's": [], + "Lesley": ["M"], + "Marseillaise": ["M", "S"], + "cur's": [], + "retains": [], + "penultimate": ["S", "M"], + "intact": [], + "synfuels": [], + "grandams": [], + "precursor": ["S", "M"], + "advice's": [], + "helix's": [], + "chapped": [], + "etiological": [], + "thetas": [], + "basketball": ["M", "S"], + "yellows": [], + "cupolaed": [], + "contributionsing": [], + "retrograding": [], + "dreamier": [], + "politest": [], + "howl": ["M", "D", "R", "S", "Z", "G"], + "soliciteds": [], + "papoose's": [], + "deposited": [], + "vouchsafed": [], + "closeups": [], + "logarithm": ["S", "M"], + "rustproofeding": [], + "pooping": [], + "Chernomyrdin's": [], + "pythons": [], + "bachelors": [], + "provability's": [], + "Willie": ["M"], + "fudge": ["D", "S", "M", "G"], + "premising": [], + "Cepheus's": [], + "cooperate": ["D", "S", "G", "N", "V"], + "intuit": ["S", "D", "G", "V"], + "Schnauzer's": [], + "partiallies": [], + "Morgans's": [], + "parenthood": ["M"], + "cranes": [], + "thrombosis's": [], + "labs": [], + "hoot's": [], + "coddling": [], + "notwork": ["S"], + "orig": [], + "Americanizes": [], + "Judas's": [], + "pewters": [], + "driven": [], + "kids": [], + "headpiece": ["M", "S"], + "dismissive": ["Y"], + "prefabricates": [], + "Cancers": [], + "scope": ["M", "G", "D", "S"], + "rashness": ["M"], + "commonly": [], + "snowballs": [], + "saddlebag'ses": [], + "Gage": ["M"], + "univalve": ["S", "M"], + "pedant": ["M", "S"], + "strangling": [], + "tildes": [], + "unrolling": [], + "Beryl's": [], + "collapsinged": [], + "suspenderers": [], + "Lancashire's": [], + "olives": [], + "depilatory's": [], + "thunderers": [], + "shotgun's": [], + "Jerrod": ["M"], + "annotate": ["D", "S", "X", "G", "N", "V"], + "dodged": [], + "hotter": [], + "Li'sly": [], + "decreeing": [], + "unstable": [], + "reeking": [], + "penology's": [], + "typologies's": [], + "manses": [], + "seventieth": ["M"], + "riff's": [], + "deadbeat'ses": [], + "sneezed": [], + "Sapporo": ["M"], + "fonts": [], + "Ganymede": ["M"], + "bookworms": [], + "accessionings": [], + "connivers": [], + "slave": ["D", "R", "S", "M", "Z", "G"], + "privately": [], + "counterfeit'sed": [], + "lead's": [], + "Brahman'ses": [], + "plushness": ["M"], + "holidayed": [], + "levered": [], + "milch": [], + "ambulateds": [], + "prediction": ["S", "M"], + "grandstand's": [], + "ripple'sing": [], + "groundnut": ["M", "S"], + "cursors": [], + "austerity's": [], + "skyrocket'sed": [], + "vital": ["S", "Y"], + "teaming's": [], + "Brahma'ses": [], + "Nelson": ["M"], + "deflated": [], + "psycho's": [], + "easterly's": [], + "mindfulness's": [], + "caroler": ["M"], + "manor": ["S", "M"], + "bitcoin": ["S", "M"], + "chairmen": [], + "deteriorated": [], + "sics": [], + "reprimand'sed": [], + "pothole'sers": [], + "encamped": [], + "overstatement'ses": [], + "sounder": ["M"], + "guestbook's": [], + "Troy": ["M"], + "rewash": ["G", "D", "S"], + "fanciful": ["Y", "P"], + "caller's": [], + "berks": [], + "tabbies's": [], + "biased": ["U"], + "blouses": [], + "Hodges": ["M"], + "knuckles's": [], + "stranger's": [], + "hijab": ["S", "M"], + "barbacoa": [], + "Stalingrad's": [], + "bobtails's": [], + "sledge's": [], + "crocuses": [], + "netball": [], + "eminence'ses": [], + "floundereds": [], + "lackadaisical": ["Y"], + "king'sly": [], + "Anatole": ["M"], + "literates's": [], + "faultlessness's": [], + "gentleman'sly": [], + "undergarments's": [], + "kangaroo": ["M", "S"], + "slaughter": ["M", "D", "R", "Z", "G", "S"], + "snappishly": [], + "immersion's": [], + "roomier": [], + "inflamesing": [], + "deficit's": [], + "gloatingly": [], + "specking": [], + "briefcases": [], + "joins": [], + "tragicomedies": [], + "Goldberg": ["M"], + "Broadways's": [], + "lighteners": [], + "Millicent": ["M"], + "leanness": ["M"], + "titled": ["U"], + "Magellan": ["M"], + "lifelines": [], + "Merle's": [], + "liberator": ["M", "S"], + "infection": ["A", "S", "M"], + "fibs": [], + "achene's": [], + "complicationsing": [], + "infests": [], + "Ci's": [], + "wiretapping's": [], + "religion's": [], + "compares": [], + "cheapo": [], + "enabling": [], + "unstained": [], + "carotene": ["M"], + "voices's": [], + "handclasp'ses": [], + "Palembang's": [], + "penuriously": [], + "Corrine": ["M"], + "cordons's": [], + "entomologist's": [], + "environmentalism": ["M"], + "reflection": ["M", "S"], + "oath's": [], + "calamitously": [], + "sealant": ["M", "S"], + "carload's": [], + "shoemaker": ["S", "M"], + "scoff'sed": [], + "meetup's": [], + "balk's": [], + "godlier": [], + "derringers": [], + "contingencies": [], + "Wooten": ["M"], + "impediments's": [], + "frameworks's": [], + "trails's": [], + "awareness": ["U", "M"], + "Doha's": [], + "expound": ["Z", "G", "D", "R", "S"], + "spokesman's": [], + "rejigger": [], + "suburban's": [], + "caliber's": [], + "Worcesters's": [], + "couch's": [], + "Pueblo's": [], + "index": ["Z", "G", "M", "D", "R", "S"], + "Rollerblade": ["M"], + "middlebrow": ["S", "M"], + "passive's": [], + "mealtimes": [], + "switchback": ["M", "S"], + "sundaes": [], + "Jehovah": ["M"], + "marshals's": [], + "WASP's": [], + "fawned": [], + "tuberous": [], + "Kent": ["M"], + "chandler'ses": [], + "HF": ["M"], + "interred": ["E"], + "pitchfork's": [], + "servery": ["S"], + "Maracaibo": ["M"], + "russet": ["S", "M"], + "weeknight": ["S", "M"], + "meekest": [], + "jading": [], + "cohabited": [], + "Holman's": [], + "poachers": [], + "cycles's": [], + "attachment's": [], + "defilement": ["M"], + "flameproofed": [], + "concomitants": [], + "desiccation's": [], + "counterrevolutions": [], + "Hoosiers": [], + "poolside": ["S"], + "bleeder": ["M"], + "cognomens": [], + "slaughterers": [], + "similarities's": [], + "blowtorch's": [], + "crest": ["S", "M", "D", "G"], + "brasses": [], + "barren": ["T", "P", "S", "M", "R"], + "inclusiveliness": [], + "showboat'sed": [], + "twiners": [], + "excusable's": [], + "chaster": [], + "connection": ["E", "M", "S"], + "frostings": [], + "Suarez": ["M"], + "roadbed": ["S", "M"], + "forenoons": [], + "Schulz": ["M"], + "torrential": [], + "malpractice": ["S", "M"], + "bootleg": ["M", "S"], + "belly's": [], + "scandalized": [], + "thiamine": ["M"], + "wills": [], + "Joe": ["M"], + "precepts": [], + "nonessential": [], + "tepidity's": [], + "covey": ["S", "M"], + "decaffeinateds": [], + "sherries's": [], + "medics's": [], + "Hausdorff": ["M"], + "bargained": [], + "raver": [], + "acquaints": [], + "coevally": [], + "ospreys's": [], + "misspending": [], + "interchanges": [], + "prehistoric": [], + "coconut's": [], + "convexly": [], + "pharaoh's": [], + "expire": ["D", "S", "G"], + "multiplies": [], + "mutants": [], + "motorcar": ["S", "M"], + "octave'ses": [], + "Blackstone": ["M"], + "abused": [], + "tracked": [], + "blackening": [], + "sonatinas": [], + "barkeep": ["Z", "M", "R", "S"], + "swampland's": [], + "brotherliness's": [], + "copiers's": [], + "craw": ["M", "S"], + "gradations": [], + "flaunteds": [], + "cockroach's": [], + "ukase's": [], + "motorcades": [], + "riches": [], + "bittier": [], + "aw": [], + "Pantheon": ["M"], + "Whitfield's": [], + "Rather": ["M"], + "Astrakhan": ["M"], + "homograph's": [], + "aphid's": [], + "introductory": [], + "souk": ["S"], + "trepidation": ["M"], + "probesable": [], + "Carole": ["M"], + "Yamagata": ["M"], + "sockets's": [], + "incumbents's": [], + "footsie": ["S", "M"], + "compares's": [], + "Deneb": ["M"], + "Annmarie": ["M"], + "curving": [], + "paprika": ["M"], + "genre": ["S", "M"], + "abbr": [], + "multiplying": [], + "troika'ses": [], + "ks": [], + "cumulonimbus's": [], + "timestamped": [], + "hastiness's": [], + "gladiola": ["S", "M"], + "melanoma": ["S", "M"], + "runoffs's": [], + "jouster": ["M"], + "lath": ["M", "D", "R", "S", "Z", "G"], + "rapture'ses": [], + "bedposts": [], + "shame'ses": [], + "Kermit": ["M"], + "kenning": [], + "gears": [], + "Pooh": ["M"], + "cosh": ["D", "S", "G"], + "paradise": ["S", "M"], + "tempo": ["S", "M"], + "weeding": [], + "refusal's": [], + "triceratops's": [], + "homemaking's": [], + "tyranny": ["S", "M"], + "singled": [], + "calving": [], + "gainsayersing": [], + "lithospheres's": [], + "doxology's": [], + "fullerers": [], + "mew'sed": [], + "peony's": [], + "choppier": [], + "engrosses": [], + "botcheder": [], + "Maldivian's": [], + "Nebuchadnezzar's": [], + "salacious": ["P", "Y"], + "governing": [], + "effervescinged": [], + "skewbalds": [], + "herbal": ["S"], + "tachometers's": [], + "impeachingable": [], + "pampersing": [], + "genius": ["M", "S"], + "breadth's": [], + "motorizes": [], + "quotes": [], + "Rosicrucian's": [], + "demolitions": [], + "consultings": [], + "tenoning": [], + "nailed": [], + "Cabral": ["M"], + "undergraduates's": [], + "UAW": [], + "issueds": [], + "Milagros": ["M"], + "stiles's": [], + "unification's": [], + "Schweitzer": ["M"], + "censor": ["M", "D", "G", "S"], + "Meier": ["M"], + "varnished": ["U"], + "Zeus's": [], + "immunologist'ses": [], + "overuses's": [], + "nirvana's": [], + "casework'ser": [], + "eruditelication": [], + "sirsens": [], + "stimulant's": [], + "authors": [], + "toga's": [], + "Sandra's": [], + "freestone": ["S", "M"], + "affordably": [], + "ambergris's": [], + "turtleneck's": [], + "hurdles's": [], + "globalizing": [], + "statehouse": ["M", "S"], + "combats": [], + "Matterhorn": ["M"], + "cloche": ["S", "M"], + "lamprey": ["M", "S"], + "coiffure's": [], + "caviled": [], + "Glasgow": ["M"], + "guppy's": [], + "compatibility's": [], + "males": [], + "cemented": [], + "Sivan": ["M"], + "faithful": ["U", "P", "Y"], + "Araby's": [], + "needlewoman": ["M"], + "machine": ["D", "S", "M", "G", "B"], + "biog": [], + "corniest": [], + "complementing's": [], + "Perry": ["R", "M"], + "that'd": [], + "rupturinged": [], + "Waterloos": [], + "Avernus's": [], + "drench": ["G", "D", "S"], + "deacon's": [], + "eureka": [], + "insane": ["T"], + "scatty": [], + "lappets's": [], + "toot'sed": [], + "whinnyinged": [], + "pragmatists": [], + "pirouette": ["D", "S", "M", "G"], + "dobro": [], + "shoppeder": [], + "nosebleed'ses": [], + "driller": ["M"], + "indulgence": ["S", "M"], + "preheatings": [], + "matador": ["S", "M"], + "Persepolis's": [], + "Ghazvanid's": [], + "tektites's": [], + "educator's": [], + "tobacconists": [], + "Cliff's": [], + "OK's": [], + "caballeros": [], + "mammograms": [], + "tulle": ["M"], + "shimmers": [], + "indigence": ["M"], + "petrolatum's": [], + "embarrassments's": [], + "reoccur": [], + "bods's": [], + "Leeds": ["M"], + "foresting": [], + "vaulting": ["M"], + "tenors": [], + "menstruated": [], + "consummates": [], + "Meade": ["M"], + "Brezhnev's": [], + "moon's": [], + "raisins": [], + "narcissists": [], + "broadcaster": ["M", "S"], + "Terrance's": [], + "tuneless": ["Y"], + "florets": [], + "sucker": ["G", "M", "D"], + "trivet": ["M", "S"], + "catalogersing": [], + "Lupercalia's": [], + "horizontals": [], + "infatuate": ["D", "S", "X", "G", "N"], + "Chang's": [], + "himself": [], + "mattered": [], + "carnage": ["M"], + "canvasses": [], + "anglicizes": [], + "weblog's": [], + "unobtainable": [], + "limed": [], + "quad": ["M", "S"], + "Morphy's": [], + "transparency's": [], + "perfectionism's": [], + "gumming": [], + "elapsesing": [], + "intermarry": ["G", "D", "S"], + "Teotihuacan's": [], + "newspaper's": [], + "ditherer": ["M"], + "negotiatingen": [], + "essential's": [], + "vulgarest": [], + "hardhat's": [], + "Lucifer's": [], + "polemic": ["M", "S"], + "Byzantium": ["M"], + "sniveled": [], + "ferret'sed": [], + "kitty": ["S", "M"], + "optimum": ["S", "M"], + "raineds": [], + "signers": [], + "adhering": [], + "Mill'ser": [], + "slovens's": [], + "deterioratesing": [], + "wrecker": ["M"], + "heave's": [], + "lesbian": ["S", "M"], + "faultiest": [], + "Aldrin's": [], + "wattleds": [], + "ringing's": [], + "exhibit": ["G", "M", "D", "S"], + "welsher's": [], + "dislodges": [], + "thong's": [], + "restoratives's": [], + "spindleds": [], + "machines": [], + "troglodyte": ["S", "M"], + "robustliness": [], + "nominate": ["A", "C", "G", "N", "V", "D", "S"], + "Zs": [], + "conk'sed": [], + "professionalism's": [], + "bicker": ["M", "D", "R", "Z", "G", "S"], + "disarming": ["Y"], + "saleswoman's": [], + "resists": [], + "bullfrogs": [], + "sputniks": [], + "firebreak's": [], + "gratuity": ["S", "M"], + "potentially": [], + "claimer": ["E", "C", "S", "M"], + "personnel": ["M"], + "bounden": [], + "reincorporate": [], + "indemnificationsen": [], + "musesings": [], + "commentators": [], + "womanlierness": [], + "Teddy's": [], + "vastness's": [], + "payola": ["M"], + "projector's": [], + "ascetic'ses": [], + "gondola's": [], + "accrued": [], + "Scandinavia": ["M"], + "fireside'ses": [], + "plunges's": [], + "unpardonably": [], + "Christmastime": ["M", "S"], + "Slater": ["M"], + "intuiteding": [], + "absurdist'ses": [], + "dehydrogenase": [], + "agribusiness": ["M", "S"], + "sunning": [], + "racked": [], + "blimps": [], + "Ijsselmeer": ["M"], + "unbarred": [], + "anterior": [], + "pulsations": [], + "shagginesser": [], + "campgrounds": [], + "culture": ["M", "G", "D", "S"], + "impute": ["B", "D", "S", "G"], + "Tudor's": [], + "speculationsing": [], + "Terrell's": [], + "Fez's": [], + "umpiringed": [], + "backgammon's": [], + "finery's": [], + "8": ["n", "m"], + "threatenens": [], + "scriptwriter's": [], + "griddlecakes": [], + "Trinities's": [], + "resin": [], + "repertoires": [], + "rheum": ["M"], + "completeness's": [], + "fielderers": [], + "fixings": ["M"], + "madrases": [], + "breeder's": [], + "fallow": ["S", "M", "D", "G"], + "squabs": [], + "recess'sed": [], + "unoccupied": [], + "earthshaking": [], + "showing's": [], + "bacchanalia": ["M"], + "deployinged": [], + "outscoring": [], + "contractor": [], + "courtier's": [], + "Olson": ["M"], + "signalizinged": [], + "dragster": ["S"], + "crowdfunded": [], + "mercies's": [], + "lather'sed": [], + "humbleness's": [], + "lures": [], + "slides": [], + "medicaid": ["M"], + "before": [], + "crufts": [], + "Bermudian's": [], + "woodchuck'ses": [], + "octavo": ["M", "S"], + "oppositionens": [], + "barehanded": [], + "undiscriminating": [], + "gallbladder": ["M", "S"], + "bottling": [], + "hayings": [], + "touts": [], + "gaucherie's": [], + "stairways": [], + "vengeance's": [], + "philandereder": [], + "Neanderthal's": [], + "PRC": ["M"], + "beleaguers": [], + "poulterers": [], + "princedoms's": [], + "lifelessness": ["M"], + "demonstrativeness": ["M"], + "leavening's": [], + "epicurean'ses": [], + "attenderers": [], + "jowl": ["M", "S"], + "westerly's": [], + "diuretic": ["M", "S"], + "integrate": ["A", "E", "V", "N", "G", "S", "D"], + "tidies": [], + "Mabel": ["M"], + "dibs's": [], + "brunched": [], + "bespatter": ["G", "S", "D"], + "Hokusai's": [], + "newsreel": ["M", "S"], + "sycamore'ses": [], + "subtopic": ["S", "M"], + "synonym's": [], + "sulfates's": [], + "Sikh's": [], + "cardinal's": [], + "ganglia": [], + "landless's": [], + "relaxer's": [], + "downhill": ["M", "S"], + "beer": ["M"], + "carnelians": [], + "haircloth": ["M"], + "eye": ["D", "S", "M"], + "bookish": [], + "Peshawar": ["M"], + "hellbent": [], + "maturation's": [], + "routeds": [], + "perfuming": [], + "Khan's": [], + "Gehenna": ["M"], + "predominated": [], + "macaque's": [], + "dolt'ses": [], + "forecourts's": [], + "Brigid": ["M"], + "sterns's": [], + "nucleic": [], + "bowdlerizes": [], + "mice": [], + "Einstein's": [], + "groveler's": [], + "acclimatizing": [], + "Lucinda": ["M"], + "latitudinarian": ["M", "S"], + "showpieces's": [], + "multipliesens": [], + "reunify": [], + "weedkiller": ["S"], + "channeling": [], + "pigpen's": [], + "Edith": ["M"], + "impressibility": ["M"], + "lei": ["S", "M"], + "undisturbed": [], + "jiggle'sing": [], + "reprieves": [], + "drinkingsers": [], + "tideds": [], + "commandant'ses": [], + "smokes": [], + "piggishness's": [], + "suppliersing": [], + "jardinieres": [], + "commutator": ["S", "M"], + "defoliatingen": [], + "counterpointed": [], + "waiterers": [], + "holdout": ["S", "M"], + "bruises's": [], + "Kurd": ["M"], + "addicted": [], + "evidently": [], + "EM": [], + "backspacing": [], + "misfeasance": ["M"], + "boxwood's": [], + "subdividing": [], + "bouquet's": [], + "immunology's": [], + "turkey's": [], + "tracers": [], + "mistrustsing": [], + "Stirling": ["M"], + "goaltender": ["M", "S"], + "pincers": [], + "tat": ["S", "Z", "R"], + "conjoin": [], + "grafterers": [], + "Andrianampoinimerina's": [], + "evildoer's": [], + "intercept'sed": [], + "lazybones's": [], + "putty's": [], + "Albert": ["M"], + "imprisonmenting": [], + "predator": ["M", "S"], + "surrealist's": [], + "emending": [], + "conservationists's": [], + "embarrassment": ["S", "M"], + "Balder's": [], + "Anglia's": [], + "dialect": ["S", "M"], + "dreamer's": [], + "shag'ses": [], + "doberman'ses": [], + "malfunctioneds": [], + "contemporaneity's": [], + "dreamworld": ["S", "M"], + "omnipotence's": [], + "twosome": ["S", "M"], + "hardeners": [], + "bipeds": [], + "paresis's": [], + "handfuls's": [], + "lamentation's": [], + "assents": [], + "Volcker": ["M"], + "whorl": ["S", "M", "D"], + "plighteding": [], + "tick": ["M", "D", "R", "Z", "G", "S"], + "elaborated": [], + "Delgado's": [], + "amour's": [], + "tetras's": [], + "sisters": [], + "foxtrotted": [], + "sampleder": [], + "jigsaw": ["S", "M", "D", "G"], + "basinful'ses": [], + "nauseousnessly": [], + "chutzpah's": [], + "tumescent": [], + "Chan's": [], + "lankiness": ["M"], + "embers": [], + "magnetizeds": [], + "Reilly's": [], + "acrylic": ["M", "S"], + "calculus": ["M"], + "cattleman": ["M"], + "toughens": [], + "knuckled": [], + "scrawl's": [], + "uses's": [], + "choosiest": [], + "sneer's": [], + "peregrinatesens": [], + "extremity": ["S", "M"], + "speargun": [], + "stitched": [], + "inbox'ses": [], + "Key": ["M"], + "crypt's": [], + "amputee'ses": [], + "disconnectedness's": [], + "wispier": [], + "logged": [], + "dogtrot's": [], + "searcher": ["A", "M"], + "mouses": [], + "institutersing": [], + "apologies": [], + "cellulars": [], + "notate": ["G", "D", "S"], + "hobnailing": [], + "Doppler's": [], + "liveliness": ["M"], + "Alcuin's": [], + "anatomists": [], + "orbital's": [], + "stonewalled": [], + "cog": ["S", "M"], + "clunkeder": [], + "gallons's": [], + "Halifax's": [], + "wimpiest": [], + "primeder": [], + "communal": ["Y"], + "Cardozo": ["M"], + "peepshow": ["M", "S"], + "wrecker's": [], + "culled": [], + "allspice": ["M"], + "teatime": ["S"], + "introit": ["S", "M"], + "bluebonnets's": [], + "shrouded": [], + "serving": [], + "mic": ["S"], + "dustiest": [], + "fastnesses": [], + "childproofed": [], + "actor": ["A", "M", "S"], + "giggle'sers": [], + "Sunnis": [], + "encipher": ["S", "G", "D"], + "remigrate": [], + "precancels's": [], + "readmit": [], + "itchier": [], + "VJ": [], + "thoughtlessness": ["M"], + "flinging": [], + "debts": [], + "iteration": ["A", "M"], + "negotiatesing": [], + "painstaking": ["M", "Y"], + "unarmed": [], + "allocation's": [], + "midgets": [], + "territorial": ["M", "S"], + "clicker": ["M"], + "Peoria's": [], + "Wallace": ["M"], + "Ferlinghetti": ["M"], + "camouflagersing": [], + "spiritualist'ses": [], + "chiller": ["M"], + "nuts": [], + "Tongan": ["M", "S"], + "churchyard": ["S", "M"], + "enrolled": [], + "sloucher": ["M"], + "Antichrist": ["S", "M"], + "fattier": [], + "fastsness": [], + "duded": [], + "includeds": [], + "prohibitive": ["Y"], + "imperceptibly": [], + "output": ["S", "M"], + "stewards": [], + "ferryboats's": [], + "besmear": ["D", "S", "G"], + "floaters": [], + "hardboard": ["M"], + "carjackings": [], + "trend'sed": [], + "emissary's": [], + "afield": [], + "downheartedness": ["M"], + "Jaipur's": [], + "ballcock's": [], + "birdlime": ["M"], + "pagination": ["M"], + "rigor'ses": [], + "hilariousness's": [], + "dinners": [], + "Herrera": ["M"], + "croppers": [], + "chard": ["M"], + "Horace": ["M"], + "Theseus's": [], + "frontiersman": ["M"], + "belletrist": ["M", "S"], + "Hezekiah": ["M"], + "Cepheid's": [], + "equivalent's": [], + "connive": ["D", "R", "S", "Z", "G"], + "hob's": [], + "firebrand's": [], + "accessioning": [], + "tattled": [], + "pasteurizeder": [], + "quid'ses": [], + "corporal's": [], + "cyclopedia'ses": [], + "attractively": [], + "monocle": ["D", "S", "M"], + "transistorizesing": [], + "pitilessnessly": [], + "elk": ["S", "M"], + "extremism": ["M"], + "gamble'sers": [], + "slummiest": [], + "Edda's": [], + "demode": [], + "clamming": [], + "enzymes": [], + "ecumenicism": ["M"], + "booziest": [], + "CNN": ["M"], + "stiffeneder": [], + "chanteder": [], + "meeting's": [], + "plop's": [], + "knowings": [], + "bedpost": ["S", "M"], + "vert": ["A"], + "tillage": ["M"], + "congregationalist'ses": [], + "grab'ses": [], + "ecclesiastics": [], + "outerwear": ["M"], + "Eric": ["M"], + "muter": [], + "Perrier": ["M"], + "held": [], + "leathernecks": [], + "semanticists": [], + "memberships's": [], + "barbarians's": [], + "plainclothes": [], + "suss": ["D", "S", "G"], + "rewashes": [], + "slinking": [], + "realpolitik's": [], + "mopes": [], + "overkill": ["M"], + "feasibility's": [], + "smiles's": [], + "overuses": [], + "goodnight": [], + "conjecture's": [], + "Eris'ses": [], + "cupped": [], + "Caedmon's": [], + "hipbones": [], + "fingerprinting": [], + "fuse's": ["A"], + "sanctum": ["S", "M"], + "apprenticeships": [], + "sempstress'ses": [], + "caseload's": [], + "enumerator": ["S", "M"], + "uncaught": [], + "Zens": [], + "greensward's": [], + "VD": ["M"], + "sear's": [], + "repack": [], + "haled": [], + "Leigh's": [], + "vigorously": [], + "gastropods": [], + "divestitures": [], + "commander": ["M"], + "flossy": ["R", "T"], + "Gibraltar": ["M", "S"], + "purgatorial": [], + "bunkhouse's": [], + "airtime's": [], + "rustier": [], + "Dior": ["M"], + "tour": ["C", "F", "S", "G", "D", "M"], + "trimness's": [], + "derrick's": [], + "suppository": ["S", "M"], + "honor": ["E", "S", "G", "M", "D", "B"], + "inaccessible": [], + "cochineal": ["M"], + "paperer's": [], + "Wikileaks": [], + "sumptuousness": ["M"], + "busybody": ["S", "M"], + "because": [], + "appareleding": [], + "Paine": ["M"], + "upturn": ["G", "S", "M", "D"], + "plonker": [], + "macing": [], + "crikey": [], + "catacomb's": [], + "palaver's": [], + "tinsmiths": [], + "riff'sed": [], + "groupies": [], + "Nicaea": ["M"], + "Parliament's": [], + "Javas": [], + "polytechnic's": [], + "Piaget": ["M"], + "aware": ["U", "P"], + "Hellespont's": [], + "girt": ["M", "D", "G", "S"], + "dazzlers": [], + "ulceratingen": [], + "snufferly": [], + "crocus": ["M", "S"], + "pointillists": [], + "waltzed": [], + "vaunted": [], + "napoleons's": [], + "motorcars's": [], + "arbors": [], + "fajita's": [], + "conjecturinged": [], + "phloem": ["M"], + "kayosing": [], + "Adams": ["M"], + "discotheques": [], + "peaksing": [], + "Godzilla": ["M"], + "Mk": [], + "barge's": [], + "delirious": ["Y", "P"], + "totalitarian": ["S", "M"], + "carpetings": [], + "puff": ["Z", "G", "M", "D", "R", "S"], + "Katie": ["M"], + "blush": ["Z", "G", "M", "D", "R", "S"], + "amnestying": [], + "theorized": [], + "disemboweled": [], + "abides": [], + "homeless": ["M", "P"], + "farm'sed": [], + "prickle": ["M", "G", "D", "S"], + "Croce": ["M"], + "indictablement": [], + "carrycot": ["S"], + "gridlocks's": [], + "attendances": [], + "Burroughs's": [], + "quotient's": [], + "elect's": [], + "lark": ["M", "D", "S", "G"], + "polyglot's": [], + "argot's": [], + "fearfulliness": [], + "piranha's": [], + "Tehran": [], + "occidental's": [], + "mergers": [], + "corrals": [], + "Rudyard": ["M"], + "stitching": ["M"], + "liberator's": [], + "liquidateds": [], + "siring": [], + "auditor'ses": [], + "imitateds": [], + "firebugs": [], + "denouncement": ["S", "M"], + "precipitates": [], + "sexiness": ["M"], + "towards": [], + "musically": [], + "Bohemian": ["S", "M"], + "relegated": [], + "blanched": [], + "bitters's": [], + "skirmish's": [], + "Vermonters's": [], + "lapdogs": [], + "nagging": [], + "coziest": [], + "equestrian's": [], + "convening": [], + "apposition's": [], + "xxxii": [], + "bushwhackersing": [], + "undertone'ses": [], + "metals's": [], + "tarmacadam": [], + "retsina's": [], + "carloads's": [], + "calendaring": [], + "bathrooms's": [], + "aspirins": [], + "recriminatingen": [], + "reservedness's": [], + "traumatizinged": [], + "boffin": ["S"], + "refractories": [], + "peculateds": [], + "kaleidoscopic": [], + "Rothko": ["M"], + "terrifies": [], + "beltsing": [], + "sandalwood": ["M"], + "sunspots": [], + "surfboards": [], + "mortgage": ["A", "G", "D", "S"], + "instinctual": [], + "immodesty's": [], + "opinionated": [], + "Myrtle": ["M"], + "alleviates": [], + "surrendereds": [], + "concealer": ["M"], + "halfpennies's": [], + "examples": [], + "nod": ["S", "M"], + "nimbus": ["M"], + "fuehrer": ["M", "S"], + "overbooking": [], + "whodunit'ses": [], + "gourde'ses": [], + "squeamishness": ["M"], + "admixinged": [], + "refund": ["B"], + "lasciviousness's": [], + "collaborator'ses": [], + "maul": ["M", "D", "R", "S", "Z", "G"], + "madhouses's": [], + "Afrikaans's": [], + "copious": ["P", "Y"], + "excavators": [], + "receipting": [], + "Arabian'ses": [], + "hosteds": [], + "medallions": [], + "dependability": ["M"], + "panels": [], + "outwear": ["G", "S"], + "facet's": [], + "electrolyte's": [], + "scriptwriters": [], + "Sauternes": [], + "commiseration": ["M"], + "economizesers": [], + "visitinged": [], + "mushrooms's": [], + "mukluk's": [], + "Parkinsonism": [], + "sward's": [], + "nickname's": [], + "hectograms": [], + "beam's": [], + "mages": [], + "locking": [], + "Rostand's": [], + "teariest": [], + "contrivers": [], + "jimmieds": [], + "assorting": [], + "profanes": [], + "ticktock'ses": [], + "photocell'ses": [], + "infernally": [], + "niggled": [], + "mortgagor'ses": [], + "leftovers": [], + "guzzles": [], + "autopsies's": [], + "sharp": ["M", "D", "N", "R", "Y", "S", "P", "X", "Z", "T", "G"], + "crabbiness's": [], + "nursery's": [], + "professors": [], + "kittens": [], + "enchanter'ses": [], + "distinction's": [], + "jinrikishas's": [], + "filcheds": [], + "effortless": ["Y", "P"], + "quotient": ["S", "M"], + "Blythe": ["M"], + "scurviest": [], + "valuable'ses": [], + "emeralds": [], + "vacuums": [], + "secrecy": ["M"], + "showstopper": ["M", "S"], + "unscratched": [], + "narcotized": [], + "inconsistent": [], + "Kathy": ["M"], + "flowcharts's": [], + "Boulder": ["M"], + "lockeder": [], + "illuminateds": [], + "Winters": ["M"], + "duffers": [], + "surrey'ses": [], + "dual": [], + "defininged": [], + "ghat'ses": [], + "mazurka's": [], + "Crockett's": [], + "hospitable": ["I"], + "truculently": [], + "nutmeats's": [], + "sprouts's": [], + "fistula's": [], + "irrelevancy'ses": [], + "amended": [], + "rapaciously": [], + "phosphorescence's": [], + "blacksnake's": [], + "blowjob": ["S", "M"], + "exegesis's": [], + "griper": ["M"], + "roaminged": [], + "spikiness's": [], + "tweed's": [], + "myrrh's": [], + "Principe's": [], + "indolent": ["Y"], + "shaft": ["M", "D", "S", "G"], + "strokinged": [], + "noncriminals": [], + "disparagingly": [], + "oceanographer's": [], + "splotches": [], + "predigesting": [], + "tipplers": [], + "scrolls": [], + "poochesing": [], + "illumineds": [], + "friezes's": [], + "gruel": ["G", "J", "M"], + "wetness's": [], + "panelings's": [], + "loophole'ses": [], + "Danes": [], + "gables's": [], + "allocation": ["A", "M"], + "cast's": [], + "orbiter's": [], + "retracinged": [], + "designer": [], + "purines": [], + "Jedi": ["M"], + "timider": [], + "mangle's": [], + "crisis's": [], + "quilt": ["S", "M", "D", "R", "Z", "G"], + "dementia's": [], + "allowable": ["U"], + "perceptibly": [], + "cottonmouth": ["M"], + "ensnare": ["D", "S", "L", "G"], + "peninsula's": [], + "impounded": [], + "authoritarian'ses": [], + "search's": [], + "vicegerents's": [], + "quickstep's": [], + "punteder": [], + "hoodooed": [], + "sackful's": [], + "rosette": ["S", "M"], + "lawgiver": ["M", "S"], + "griffin": ["S", "M"], + "straightedge": ["S", "M"], + "broodmare'ses": [], + "milt'sed": [], + "hairnet's": [], + "shogun's": [], + "Martinique's": [], + "alkalizes": [], + "Vulgate's": [], + "parent's": [], + "hypersensitivities": [], + "cannabis": ["M", "S"], + "hawed": [], + "assassinateds": [], + "righto": [], + "baiting": [], + "duplicators": [], + "worth's": [], + "invitations's": [], + "moderates": [], + "Chan": ["M"], + "chasinged": [], + "Robert'ses": [], + "duckings": [], + "strikebreakers": [], + "moonstone's": [], + "genie's": [], + "menages": [], + "telegrapheder": [], + "dietetics": ["M"], + "treaties": [], + "allowances": [], + "stat'ses": [], + "bargain": ["M", "D", "R", "Z", "G", "S"], + "bodice'ses": [], + "capsulizes": [], + "moguls's": [], + "cosmos": ["M", "S"], + "Andersen's": [], + "outsider's": [], + "Gale's": [], + "swatch": ["M", "S"], + "perversionsly": [], + "quarterstaves": [], + "titmice": [], + "rheumatic": ["M", "S"], + "serener": [], + "iterations": [], + "Polyhymnia": ["M"], + "munitions": [], + "upchuckinged": [], + "assimilatesing": [], + "telescopes": [], + "Richard's": [], + "sweatshirt's": [], + "anapest's": [], + "nesting": [], + "coercer's": [], + "communique's": [], + "antisemitism": ["M"], + "recto'ses": [], + "gaysness": [], + "Booth": ["M"], + "nurselings": [], + "breadcrumb": ["M", "S"], + "dazzling": ["Y"], + "betrothing": [], + "aspireds": [], + "shotguns": [], + "uncomfortable": [], + "harriesers": [], + "counterinsurgency": ["S", "M"], + "detersment": [], + "mudpack": ["S"], + "crumblinged": [], + "splaying": [], + "trainmen": [], + "Austria's": [], + "unzipped": [], + "conjureder": [], + "ordains": [], + "desolate": ["P", "D", "S", "Y", "G", "N"], + "moms's": [], + "Japan's": [], + "snug's": [], + "McLeod's": [], + "figurines": [], + "blends": [], + "greenmail's": [], + "firefight'ser": [], + "hurtfulness's": [], + "flatted": [], + "avails": [], + "Skype's": [], + "fumble'sers": [], + "Slovenian'ses": [], + "undercarriage's": [], + "fallow's": [], + "Hippocrates": ["M"], + "O'Brien": ["M"], + "dactylic": ["M", "S"], + "ropy": ["R", "T"], + "putterer's": [], + "sordid": ["P", "Y"], + "parboils": [], + "Vladivostok": ["M"], + "instigators": [], + "Sweden's": [], + "prided": [], + "Inquisition": ["M"], + "smash's": [], + "impersonation": ["M"], + "strangulating": [], + "snowplow's": [], + "harrowing": [], + "forbear's": [], + "quire": ["I", "A", "S"], + "slierly": [], + "dukedom": ["S", "M"], + "turpitude's": [], + "bicycleder": [], + "kidnapper'ses": [], + "toilette's": [], + "respect'sed": [], + "phonying": [], + "hollowed": [], + "Americana's": [], + "wane'ses": [], + "hippopotamus": ["M", "S"], + "concatenationsed": [], + "lawgiver's": [], + "garland's": [], + "addends": [], + "bloke's": [], + "anaerobe": ["S", "M"], + "virus": ["M", "S"], + "outsmarteds": [], + "Tut's": [], + "parallax'ses": [], + "adapted": [], + "welcoming": [], + "exabyte'ses": [], + "transfer's": [], + "pervasive": ["P", "Y"], + "explorersing": [], + "pestiferous": [], + "interlude's": [], + "physiography's": [], + "playlist's": [], + "eggbeater": ["M", "S"], + "nonexistent": [], + "drudging": [], + "mammy": ["S", "M"], + "footnotinged": [], + "glinteding": [], + "hidersing": [], + "springboard": ["M", "S"], + "residuum": ["M"], + "NAFTA's": [], + "Gastroenterology": [], + "nutcases": [], + "patisseries": [], + "loquaciously": [], + "twinklingsed": [], + "Huff's": [], + "slings's": [], + "hallucinogenic's": [], + "nectar's": [], + "beautificationed": [], + "stipulatesing": [], + "cravens's": [], + "conurbations": [], + "zinfandel's": [], + "Mitzi's": [], + "heartbreak'sing": [], + "association": ["E", "M"], + "davit's": [], + "twitter'sed": [], + "overhangsing": [], + "hardscrabble": [], + "predetermine": ["Z", "G", "D", "R", "S"], + "abstainer's": [], + "spice": ["D", "S", "M", "G"], + "attributions": [], + "Waldheim": ["M"], + "yogi'ses": [], + "commonweal's": [], + "clatters": [], + "Tintoretto": ["M"], + "gerrymander": ["G", "M", "D", "S"], + "does": ["A", "U"], + "aliases": [], + "chippies": [], + "blight": ["Z", "G", "M", "D", "R", "S"], + "streakeder": [], + "banyan": ["S", "M"], + "echoed": [], + "Taklamakan": ["M"], + "dormitory's": [], + "Francis's": [], + "Guatemala": ["M"], + "Cheviot's": [], + "jersey": ["M", "S"], + "mandrakes": [], + "repetition": ["M", "S"], + "preschoolers": [], + "leitmotiv's": [], + "trouts": [], + "cyberspaces": [], + "restrooms's": [], + "broadloom's": [], + "tipple": ["D", "R", "S", "M", "Z", "G"], + "deprivation": [], + "evasion": ["S", "M"], + "fur": ["S", "M"], + "actor'ses": [], + "mesas": [], + "coexistence's": [], + "politicized": [], + "DMZ": [], + "astutenessly": [], + "neckties": [], + "pixies": [], + "tranquilizer's": [], + "workhorse's": [], + "juice": ["D", "R", "S", "M", "Z", "G"], + "intellectualize": ["G", "D", "S"], + "glassful": ["S", "M"], + "gamesmanship's": [], + "belittleds": [], + "spadefuls": [], + "confrere": ["M", "S"], + "enjambment": ["S", "M"], + "repopulate": [], + "ebbs's": [], + "Italians's": [], + "cyclamen's": [], + "Mather's": [], + "draw": ["M", "R", "Z", "G", "S", "J"], + "hipbone's": [], + "torchbearer's": [], + "foreknowledge": ["M"], + "Marines's": [], + "Addams": ["M"], + "monarchies's": [], + "provability": ["M"], + "visitsing": [], + "nitpick": ["S", "Z", "G", "D", "R"], + "moppet": ["M", "S"], + "Jasmine": ["M"], + "Africans": [], + "flintlock": ["S", "M"], + "edutainment's": [], + "blitzes": [], + "paragon's": [], + "Tolkien": ["M"], + "guzzler's": [], + "misinterpret": ["S", "G", "D"], + "tumbleder": [], + "Alnitak's": [], + "maceratesing": [], + "claim": ["C", "K", "E", "A", "G", "D", "S"], + "legroom's": [], + "fizzing": [], + "Highlanders's": [], + "conjunctivitis's": [], + "pinkish": [], + "neuritis's": [], + "verbalizes": [], + "affianceds": [], + "calipersing": [], + "katydids": [], + "honeysing": [], + "eddied": [], + "Soho's": [], + "id": ["S", "M", "Y"], + "encrusts": [], + "policing": [], + "nosedive's": [], + "conciliator's": [], + "alignment'ses": [], + "quack's": [], + "nonnarcotic's": [], + "Noriega's": [], + "nickering": [], + "ozone": ["M"], + "Andretti's": [], + "outreach'sed": [], + "dancers": [], + "novene": [], + "bonks": [], + "bearersing": [], + "chevron": ["M", "S"], + "Iyar": ["M"], + "subordinates": [], + "horsiest": [], + "hydrometers's": [], + "pinatas": [], + "locavore": ["S", "M"], + "Gilberto": ["M"], + "rustinessen": [], + "etymologists's": [], + "comeuppance's": [], + "characteristically": ["U"], + "indivisibility": [], + "crispness": ["M"], + "sue": ["D", "S", "G"], + "suppuration": ["M"], + "shunt'ses": [], + "merchandisinged": [], + "Mr": ["S", "M"], + "Messiaen": ["M"], + "subtrahends": [], + "swagged": [], + "coed's": [], + "sorceress'ses": [], + "scarfing": [], + "serializations's": [], + "applause's": [], + "housekeeping's": [], + "lavish": ["P", "T", "G", "D", "R", "S", "Y"], + "sheers": [], + "restoratives": [], + "empathy's": [], + "wackiness": ["M"], + "tyke's": [], + "sobriquets": [], + "inquisitors": [], + "apse's": [], + "decimals": [], + "disposables": [], + "cosigner": ["M"], + "kayoeds": [], + "medicare": ["M"], + "akin": [], + "litotes": ["M"], + "remedieds": [], + "unbridgeable": [], + "leaked": [], + "Cagney": ["M"], + "truckles": [], + "radioactivity": ["M"], + "Veracruz's": [], + "fleetingly's": [], + "harlequins": [], + "Copland": ["M"], + "stickerers": [], + "paperboard": ["M"], + "pamper": ["D", "S", "G"], + "subbranch": ["M", "S"], + "coordinatelying": [], + "flailing's": [], + "archest": [], + "heartthrob's": [], + "proffering's": [], + "gentlesness": [], + "rundown": ["S", "M"], + "stockinette": ["M"], + "polyhedrons's": [], + "worshipings": [], + "gunman's": [], + "client's": [], + "fluteds": [], + "substitutions": [], + "globule'ses": [], + "astrolabes": [], + "changelings": [], + "Christoper's": [], + "excreta": ["M"], + "viperous": [], + "carnality's": [], + "Sharon's": [], + "anchovy's": [], + "deafer": [], + "replanting": [], + "ammo's": [], + "swarthiest": [], + "turfing": [], + "coolant": ["S", "M"], + "wastelands's": [], + "IQ's": [], + "stockpots": [], + "Gelbvieh": ["M"], + "ambushes": [], + "squint": ["S", "T", "G", "M", "D", "R"], + "binmen": [], + "emigrates": [], + "Dobro": ["M"], + "restricting": [], + "Patrica": ["M"], + "musics's": [], + "hoodooeds": [], + "vault'sed": [], + "homespun": ["M"], + "interleavesing": [], + "darkroom": ["M", "S"], + "procurator": [], + "crooner": ["M"], + "shirting": ["M"], + "gillions": [], + "wannabe's": [], + "carpenter's": [], + "oldish": [], + "branches": [], + "pityingly": [], + "loosing": [], + "unionism": ["M"], + "livelihood's": [], + "tattlers": [], + "bending's": [], + "dimensions": [], + "faffeding": [], + "closeout's": [], + "revilementers": [], + "proroguing": [], + "quadruplets": [], + "pizzerias's": [], + "privilegeds": [], + "cliquishly": [], + "Dorothy": ["M"], + "Tm's": [], + "Lorraine": ["M"], + "thieve": ["D", "S", "G"], + "pertly": [], + "French'ses": [], + "cohort": ["S", "M"], + "douches": [], + "stoneware's": [], + "bringer's": [], + "extraterrestrial's": [], + "conundrum": ["S", "M"], + "caterings": [], + "Mencken's": [], + "eclectics's": [], + "vow's": [], + "tubular": [], + "gratuitousliness": [], + "synopses": [], + "thatching's": [], + "earth's": [], + "sluice": ["D", "S", "M", "G"], + "epoxieds": [], + "citations": [], + "lamp'ses": [], + "Gangtok's": [], + "luncheonette": ["S", "M"], + "Della": ["M"], + "irkinged": [], + "mantras": [], + "clown'sed": [], + "prostrationsed": [], + "remonstrating": [], + "pastorate's": [], + "tabulators": [], + "pompous": ["Y", "P"], + "Zoloft's": [], + "congregationed": [], + "movies": [], + "parietal": [], + "Kleenex": ["M", "S"], + "Whittier's": [], + "engravingings": [], + "genealogy": ["S", "M"], + "Ariadne": ["M"], + "audio'ses": [], + "screamers": [], + "eddy": ["D", "S", "M", "G"], + "Eugenie's": [], + "Plautus": ["M"], + "molecularity's": [], + "muddies": [], + "beekeeper's": [], + "caste'sers": [], + "installers": [], + "bipartisan": [], + "talking": [], + "cargo": ["M"], + "orbitals": [], + "ratepayer": ["S"], + "sidekick": ["S", "M"], + "benevolently": [], + "bombersing": [], + "beveleds": [], + "librarians": [], + "Antigone's": [], + "balsas": [], + "representative'ses": [], + "Hiss's": [], + "organists": [], + "necrosis": ["M"], + "shebangs": [], + "delusive": ["Y"], + "quill's": [], + "Schrodinger": ["M"], + "binderies": [], + "cecal": [], + "chortle's": [], + "tepidliness": [], + "untruly": [], + "golf": ["M", "D", "R", "Z", "G", "S"], + "Waldo": ["M"], + "incinerates": [], + "birding": [], + "blackguards's": [], + "starrier": [], + "algorithms's": [], + "denture's": [], + "policyholder": ["M", "S"], + "garments": [], + "nationalize": ["C", "D", "S", "G"], + "pensioning's": [], + "prospectors's": [], + "Mesa": ["M"], + "councilperson's": [], + "implicating": [], + "mummer'ses": [], + "filename": ["S"], + "PC's": [], + "ounces": [], + "bumpiest": [], + "insurers": [], + "swisher": [], + "healersing": [], + "tenuity": ["M"], + "yuppie": ["M", "S"], + "urginged": [], + "Santa": ["M"], + "counterpart's": [], + "Dwayne": ["M"], + "Pliocene's": [], + "Ursa": ["M"], + "samurais": [], + "stablies": [], + "nighthawk": ["S", "M"], + "Boleyn's": [], + "misanthropic": [], + "rusticity": ["M"], + "mastery's": [], + "levier": ["M"], + "vacationist's": [], + "exiteding": [], + "fragments": [], + "stirrup's": [], + "byte'ses": [], + "pigeonholes's": [], + "fronting": [], + "rec'd": [], + "vampeding": [], + "Peabody": ["M"], + "douse": ["D", "S", "G"], + "occurrence's": [], + "goose's": [], + "pantyhose": ["M"], + "scotch": ["M", "D", "S", "G"], + "overstatement's": [], + "pratfall": ["S", "M"], + "Palestine's": [], + "oxidizinged": [], + "savager": [], + "electoral": ["Y"], + "redeform": [], + "laptops": [], + "gulch's": [], + "yuppified": [], + "videotex": [], + "roost's": [], + "waxierness": [], + "deckchairs": [], + "Mekong's": [], + "update's": [], + "Mobil": ["M"], + "therapists's": [], + "steals": [], + "vocalists's": [], + "AWACS": ["M"], + "wooer": ["M"], + "gibberish": ["M"], + "tunsers": [], + "mailshot": ["S"], + "diatoms's": [], + "infrastructural": [], + "soldierly": [], + "signboard's": [], + "fairingsness": [], + "farces": [], + "necklace": ["M", "G", "D", "S", "J"], + "Spears": ["M"], + "pip": ["S", "Z", "G", "M", "D", "R"], + "bodginged": [], + "superfluity": ["M"], + "venturousness": ["M"], + "pantsuit": ["S", "M"], + "sniveler's": [], + "stockpile'sing": [], + "agency": ["S", "M"], + "judged": [], + "target's": [], + "craftswoman": ["M"], + "atheist'ses": [], + "hilltop'ses": [], + "unmanageable": [], + "ionizeds": [], + "cicatrix's": [], + "syncing": [], + "mandolins": [], + "seeming": ["Y"], + "didoes": [], + "applicant's": [], + "Olajuwon": ["M"], + "intuiting": [], + "deliquesces": [], + "towboats": [], + "fortuitous": ["Y", "P"], + "goldbricking": [], + "napped": [], + "sacrilege'ses": [], + "Belmopan's": [], + "Hispanic": ["S", "M"], + "smile's": [], + "assignable": [], + "unstop": [], + "scanted": [], + "burneder": [], + "misogamy": ["M"], + "tackeder": [], + "readabilities": [], + "capturing": [], + "regiments": [], + "straddled": [], + "soothing": ["Y"], + "masterpiece": ["M", "S"], + "decades": [], + "nutshell'ses": [], + "interlardeding": [], + "manipulatingen": [], + "Salton's": [], + "cajolery": ["M"], + "downshiftinged": [], + "wart": ["M", "S"], + "Alpheratz's": [], + "capillarity's": [], + "wardeding": [], + "inappropriately": [], + "accustoms": [], + "wrongdoing": ["S", "M"], + "Russian": ["S", "M"], + "rerunning": [], + "slenderer": [], + "libertarians's": [], + "reacheds": [], + "misted": [], + "cowrie's": [], + "dilated": [], + "paper": ["S", "Z", "G", "M", "D", "R"], + "Payne": ["M"], + "underachievers": [], + "critiqueds": [], + "Judson": ["M"], + "castor's": [], + "disguising": [], + "postponement": ["S", "M"], + "semitones": [], + "Forrest": ["M"], + "irradiated": [], + "restorations": [], + "Weldon": ["M"], + "vino's": [], + "modernists": [], + "imbibersing": [], + "D's": [], + "Turks's": [], + "malathion": ["M"], + "crisp's": [], + "Ra's": [], + "nursemaid's": [], + "anticommunists": [], + "partitions": [], + "homo'ses": [], + "subsequent": ["Y"], + "Jimenez": ["M"], + "hoof's": [], + "departmentalize": ["G", "D", "S"], + "bastardize": ["G", "D", "S"], + "Mohawk's": [], + "misappropriations": [], + "Bertillon's": [], + "propitiate": ["D", "S", "G", "N"], + "whizzed": [], + "Tamika": ["M"], + "occasion's": [], + "supplemented": [], + "Cather's": [], + "clashed": [], + "overtimes": [], + "tonne's": [], + "ghosts's": [], + "midyear's": [], + "refresher's": [], + "only": [], + "snafu's": [], + "endeavor": ["G", "S", "M", "D"], + "pouteder": [], + "Huron": ["M"], + "legations": [], + "sportsman": ["M"], + "Samoyed's": [], + "rhino'ses": [], + "trail": ["Z", "G", "S", "M", "D", "R"], + "truculence": ["M"], + "Sondheim": ["M"], + "aggrandizeds": [], + "fuzzed": [], + "peons": [], + "datum": ["M"], + "Borlaug": ["M"], + "girlishness's": [], + "screwiness": ["M"], + "resolvable": [], + "glistering": [], + "Dunant": ["M"], + "visualizers": [], + "roofing": ["M"], + "weld": ["M", "D", "R", "B", "S", "Z", "G"], + "avenue'ses": [], + "prankster's": [], + "Ganges's": [], + "timeshares": [], + "eddying": [], + "misgoverned": [], + "Apr's": [], + "fiscal": ["M", "Y", "S"], + "debugger": ["S"], + "sogginess": ["M"], + "forswearing": [], + "countertenor's": [], + "Parnell's": [], + "overstretches": [], + "adulterationed": [], + "messmates": [], + "jumpersing": [], + "choked": [], + "afterward": ["S"], + "tense'sly": [], + "conglomerate": ["D", "S", "X", "M", "G", "N"], + "ablatives": [], + "defoliate": ["D", "S", "G", "N"], + "potters's": [], + "evildoing's": [], + "imbecility's": [], + "tempura": ["M"], + "party's": [], + "jokinged": [], + "faerie's": [], + "derailleurs's": [], + "fuhrer": ["S", "M"], + "birdhouses": [], + "archaist's": [], + "tickers": [], + "mycology": ["M"], + "tutelage's": [], + "stairwell's": [], + "evangelistic": [], + "being's": [], + "screenplay": ["S", "M"], + "acct": [], + "mammal'ses": [], + "Panasonic": ["M"], + "cockatoos": [], + "thrush's": [], + "find'ser": [], + "Caxton": ["M"], + "blackeneding": [], + "atrociousness's": [], + "beeped": [], + "schedulesing": [], + "beards": [], + "boom": ["S", "Z", "G", "M", "D", "R"], + "litterateur's": [], + "stagecoaches": [], + "formed": ["U"], + "cabbage'ses": [], + "gentlest": [], + "bedizen": ["G", "D", "S"], + "morels": [], + "Maximilian": ["M"], + "effusions": [], + "tangent": ["M", "S"], + "hatchery": ["S", "M"], + "modernist": ["S", "M"], + "zombie's": [], + "admixture": ["S", "M"], + "thunderer's": [], + "environs": ["M"], + "saga's": [], + "microprocessor": ["M", "S"], + "lulls": [], + "avionics": ["M"], + "gutsiest": [], + "gibbering": [], + "fell's": [], + "conducting": [], + "autobiographer's": [], + "distributing": [], + "charierness": [], + "dart's": [], + "DHS": [], + "indicate": ["X", "D", "S", "G", "N", "V"], + "cohabitation": ["M"], + "straying": [], + "herbicide's": [], + "reprehending": [], + "wakened": [], + "prepped": [], + "Mackinaw": ["M"], + "mams": [], + "oldster'ses": [], + "scumbag's": [], + "sporty": ["T", "P", "R"], + "bruiting": [], + "bedlams's": [], + "weaveder": [], + "appoints": [], + "oncogenes's": [], + "uprearing": [], + "naughts": [], + "jello": ["S"], + "turnstile": ["S", "M"], + "Margaret's": [], + "purge": ["M", "Z", "G", "D", "R", "S"], + "autonomy's": [], + "arks's": [], + "annexations": [], + "abashingment": [], + "pommeling's": [], + "lurch's": [], + "catsuits": [], + "piggier": [], + "cobbers": [], + "prof's": [], + "Doberman's": [], + "pedal": ["S", "G", "M", "D"], + "biennium's": [], + "figurehead": ["S", "M"], + "seesaws": [], + "marquesses": [], + "beeves": [], + "waterfalls": [], + "pascals": [], + "particularity": ["S", "M"], + "sellotape": ["D", "S", "G"], + "moosing": [], + "cogs": [], + "phase": ["D", "S", "M", "G"], + "pantechnicons": [], + "dopes": [], + "soporifics": [], + "capstan": ["S", "M"], + "lagniappes's": [], + "adjuration's": [], + "terrariums": [], + "wherewithal": ["M"], + "grassesing": [], + "westerlies": [], + "sploshed": [], + "nothingnesses": [], + "overaweds": [], + "sustenance's": [], + "necessitated": [], + "comfit": ["E", "S"], + "handmaid": ["X", "M", "N", "S"], + "whiteouts": [], + "endowmenting": [], + "soulfully": [], + "divorcee": ["M", "S"], + "gab's": [], + "accountability's": [], + "commutations": [], + "mimosa": ["S", "M"], + "bate": ["K", "A", "C", "G", "S", "D"], + "bug": ["C", "S"], + "amaryllis": ["M", "S"], + "withing": [], + "horologist": ["M", "S"], + "cascaras's": [], + "tailwinds's": [], + "Guam's": [], + "psychopaths": [], + "continence's": [], + "Drew's": [], + "attaininged": [], + "clipboard": ["M", "S"], + "abed": [], + "snitchesing": [], + "Saul's": [], + "tabbies": [], + "onto": [], + "gravamens": [], + "unsegregated": [], + "culmination": ["M"], + "Edwina's": [], + "bigmouth": ["M"], + "Darjeeling's": [], + "nostalgia's": [], + "Scriptures's": [], + "Apalachicola": ["M"], + "ardent": ["Y"], + "communicates": [], + "poetics": [], + "exposition's": [], + "remaster": [], + "cauliflower's": [], + "senior": ["S", "M"], + "raiser's": [], + "hummus's": [], + "featherbrained": [], + "icon's": [], + "Jeanine": ["M"], + "weigh": ["A", "G", "D"], + "dodder'sed": [], + "trivia's": [], + "terracotta's": [], + "pollinates": [], + "wiretappers": [], + "outage's": [], + "pages": [], + "hiked": [], + "haggis's": [], + "cactus's": [], + "Hamilton": ["M"], + "schlemiel": ["S", "M"], + "naysayer": ["M", "S"], + "altruists": [], + "glimpse's": [], + "smog'ses": [], + "Mandrell": ["M"], + "dinker": [], + "embodiesed": [], + "hemorrhageds": [], + "redesign": [], + "kW": [], + "charlatan": ["S", "M"], + "Miguel's": [], + "conventional": ["U", "Y"], + "artful": ["P", "Y"], + "demurrer": ["S", "M"], + "rebellious": ["Y", "P"], + "bacchanals": [], + "conservatives": [], + "brusqueness": ["M"], + "constructor": ["M", "S"], + "hap": ["M", "Y"], + "Leibniz": ["M"], + "waterproofeding": [], + "gingerings": [], + "prodigal's": [], + "Acrux's": [], + "houses": [], + "Lewis's": [], + "receipts": [], + "nondemocratic": [], + "encumbers": [], + "Nehemiah": ["M"], + "prowl": ["M", "D", "R", "S", "Z", "G"], + "trencher": ["M", "S"], + "circumferences": [], + "boldface": ["D", "M"], + "reorgsing": [], + "reticulations": [], + "ethnology": ["M"], + "example's": [], + "commendable": [], + "sourness's": [], + "granular": [], + "there's": [], + "harmonious": ["P", "Y"], + "postcards": [], + "gaga": [], + "charlatan's": [], + "claimant'ses": [], + "AWACS's": [], + "hoardings": [], + "front": ["F", "S", "D", "G"], + "considersed": [], + "photosensitive": [], + "blaster": ["M"], + "tigress's": [], + "seameden": [], + "blog's": [], + "tailgate'sers": [], + "districts": [], + "expressiveness's": [], + "seances's": [], + "wrapping": ["M", "S"], + "Hz": ["M"], + "stridency": ["M"], + "cattier": [], + "lactating": [], + "overzealous": [], + "glitching": [], + "stalemates": [], + "unwashed": [], + "contd": [], + "thoroughness": ["M"], + "loanwords": [], + "veggieburger": ["S"], + "spangles's": [], + "penknife's": [], + "expostulates": [], + "scuffing": [], + "griefs's": [], + "videos's": [], + "dreadnought": ["M", "S"], + "queued": [], + "stiffening's": [], + "squandering": [], + "pettiness's": [], + "Ijsselmeer's": [], + "tenacious": ["Y", "P"], + "eerie": ["R", "T"], + "mistake'sing": [], + "preexisting": [], + "snatchersing": [], + "bonanza'ses": [], + "embittereds": [], + "rumormongers's": [], + "firers": [], + "behooved": [], + "sirree": ["M"], + "Beltane": ["M"], + "latter": ["M", "Y"], + "clerked": [], + "enteric": [], + "wormhole": ["M", "S"], + "Souphanouvong": ["M"], + "propinquity's": [], + "magma": ["M"], + "brand's": [], + "stylishness": ["M"], + "alimenteds": [], + "porphyritic": [], + "nonaligned": [], + "Antonio": ["M"], + "clarinet": ["S", "M"], + "apologetically": [], + "gargoyles's": [], + "slur'ses": [], + "touchier": [], + "sugared": [], + "caftans": [], + "Robbie's": [], + "drogues's": [], + "Mauritius's": [], + "drone'sing": [], + "Sabbaths": [], + "reputable": [], + "wad's": [], + "swizzle": ["D", "S", "G"], + "Ola's": [], + "blackly": [], + "Eucharists": [], + "thresheder": [], + "hardenersing": [], + "ego": ["S", "M"], + "crabbed": [], + "myrmidons": [], + "haymow's": [], + "arresting's": [], + "skidpans": [], + "mends": [], + "superimposition's": [], + "unmarred": [], + "downhills": [], + "creatives's": [], + "Hilbert": ["M"], + "ligating": [], + "sunlamp's": [], + "swish's": [], + "crookneck": ["S", "M"], + "Almach": ["M"], + "speakings": [], + "canopieds": [], + "ignite": ["A", "G", "D", "S"], + "Chinook": ["M", "S"], + "tautened": [], + "district": ["A", "S"], + "stews": [], + "rue": ["D", "S", "M", "G"], + "waterfronts": [], + "prom's": [], + "punchlines": [], + "Moldovan": [], + "frustrated": [], + "dye'sers": [], + "Dumpster": ["M"], + "snogged": [], + "kismet's": [], + "snortersing": [], + "warriors": [], + "spec'ses": [], + "nosedive'sing": [], + "reoccupy": [], + "covertsness": [], + "occupied": ["U"], + "cockpit's": [], + "Luna's": [], + "precisionness": [], + "memories's": [], + "salutatorian's": [], + "meteorically": [], + "cub's": [], + "DD": ["M"], + "prerecordsed": [], + "acquireder": [], + "chicories's": [], + "sarges": [], + "abolishing": [], + "interstates": [], + "jailbreak's": [], + "demigod": ["M", "S"], + "shitting": ["!"], + "summerhouses's": [], + "cliche's": [], + "kerosene's": [], + "snips's": [], + "Avernus": ["M"], + "NBS": [], + "stays": [], + "Dedekind's": [], + "leaflet's": [], + "quarteredly": [], + "indoctrinate": ["G", "N", "D", "S"], + "recesses": [], + "whistlinged": [], + "benighted": ["Y"], + "eclipse's": [], + "hutch'ses": [], + "skillsed": [], + "glider": ["M"], + "demoed": [], + "jalapeno's": [], + "coolness's": [], + "roes's": [], + "determinants": [], + "finical": [], + "embarkations": [], + "gilts": [], + "fieldworker's": [], + "hoarder's": [], + "Guarnieri's": [], + "bogeying": [], + "downtrend": ["M", "S"], + "Arius's": [], + "Savoy": ["M"], + "vengefully": [], + "Fresnel": ["M"], + "Midas's": [], + "modulator's": [], + "tongueds": [], + "towers": [], + "prohibit": ["D", "G", "V", "S"], + "atomizer": ["M"], + "broncos": [], + "sleepovers": [], + "pamphleteer's": [], + "Josef": ["M"], + "directorships's": [], + "leis's": [], + "skimpily": [], + "boastfulnessly": [], + "spoonbill'ses": [], + "knoll's": [], + "mainstreaming": [], + "complainant's": [], + "burnables's": [], + "aggressiveness's": [], + "dye": ["D", "R", "S", "M", "Z", "G"], + "divider's": [], + "cardiomyopathy": [], + "tally's": [], + "seagull's": [], + "actuaries's": [], + "outlawing's": [], + "amputates": [], + "circle's": [], + "overexposed": [], + "slumdogs": [], + "assiduousnessly": [], + "nitpicker": ["M"], + "stoppered": [], + "knotted": [], + "hemorrhages": [], + "lamebrain'sed": [], + "backlogs": [], + "invite": ["D", "S", "M", "G"], + "Guiyang's": [], + "Graciela's": [], + "outflanking": [], + "hatemongers": [], + "browseder": [], + "Mont": ["M"], + "prosecutors": [], + "extremity's": [], + "plying": [], + "scallion'ses": [], + "beastlier": [], + "temptation's": [], + "loversing": [], + "spoonbill": ["M", "S"], + "decaffeinated": [], + "jettison's": [], + "samurai": ["S", "M"], + "many": ["M"], + "paintbox": ["M", "S"], + "deducing": [], + "Islams": [], + "pigs": [], + "belittles": [], + "longevity": ["M"], + "dryer": ["S", "M"], + "ads": [], + "Norman": ["M", "S"], + "viably": [], + "reinsertion": [], + "belonged": [], + "Yvonne": ["M"], + "pondereder": [], + "abnormal": ["Y"], + "coerced": [], + "lexicons's": [], + "elks's": [], + "stop's": [], + "garageds": [], + "Reverend's": [], + "alienist's": [], + "prissiness's": [], + "leap": ["M", "D", "R", "S", "Z", "G"], + "selecting": [], + "intensity": ["S"], + "autopsy": ["G", "D", "S", "M"], + "Sherlock": ["M"], + "avowal": ["E", "S", "M"], + "mew": ["S", "G", "M", "D"], + "methodicalness's": [], + "wick's": [], + "porthole'ses": [], + "joystick's": [], + "expediting": [], + "hangnail": ["M", "S"], + "marsupial'ses": [], + "handcraft'sed": [], + "peeleder": [], + "transcendental": ["Y"], + "Fugger's": [], + "ingenuity's": [], + "parabolic": [], + "snicker'sed": [], + "analyzeds": [], + "Gordian's": [], + "Passions's": [], + "polemic'ses": [], + "wainscoted": [], + "toadyism": ["M"], + "nonworking": [], + "allegro's": [], + "none": [], + "defense": ["D", "S", "M", "G", "V"], + "Betelgeuse's": [], + "repatriationsed": [], + "crawdads": [], + "solicitations": [], + "driers": [], + "lutenist": ["S", "M"], + "cheerleader": ["S", "M"], + "annelid'ses": [], + "unredress": [], + "naturalist's": [], + "blah's": [], + "expounds": [], + "crosier'ses": [], + "NW": ["M"], + "potbellieds": [], + "Fijians": [], + "globule's": [], + "honesty's": [], + "license'sing": [], + "Haley": ["M"], + "syndicate's": [], + "phasing": [], + "celebrations": [], + "interludeds": [], + "engrams's": [], + "Anabel": ["M"], + "torques": [], + "grain'sed": [], + "Chrysostom's": [], + "lapwing": ["M", "S"], + "keenly": [], + "ATM": ["M"], + "arbitrageur": ["S", "M"], + "swallowing": [], + "nacre's": [], + "fluffy": ["R", "P", "T"], + "miring": [], + "windsurfinged": [], + "countrymen": [], + "Crest's": [], + "sewn": ["A"], + "sprayeding": [], + "Russians": [], + "hymen's": [], + "costliness's": [], + "ancienter": [], + "epsilon": ["S", "M"], + "wept": [], + "vacillates": [], + "seraglio's": [], + "bishopric's": [], + "pleadeder": [], + "revisionist's": [], + "drubbings": [], + "Buffy's": [], + "anteaters": [], + "indescribable": [], + "hang'sed": [], + "colorizeds": [], + "brainwashes": [], + "Hobart": ["M"], + "hexed": [], + "overexposure": ["M"], + "market's": [], + "attractiveness's": [], + "Loki's": [], + "forewarned": [], + "sextet's": [], + "Fujitsu's": [], + "peashooter": ["S", "M"], + "glimpseds": [], + "conkers": [], + "cleanliness": ["U", "M"], + "prejudged": [], + "collations": [], + "pettifoggery's": [], + "restates": [], + "chasm'ses": [], + "obviatesing": [], + "careened": [], + "snoop'sed": [], + "doomings": [], + "shootings": [], + "McNeil's": [], + "dressmakers": [], + "Davis's": [], + "consigns": [], + "meaninglessly": [], + "pyromaniac's": [], + "Fokker's": [], + "Ostwald's": [], + "suburbanite": ["S", "M"], + "exothermic": [], + "carbonate's": [], + "chillinesser": [], + "birdsers": [], + "vipers's": [], + "conception": ["S", "M"], + "calcines": [], + "shortchanges": [], + "stilt'sed": [], + "retrograded": [], + "closefisted": [], + "encystment": ["M"], + "bet": ["S", "M"], + "gnus": [], + "contrivance": ["M", "S"], + "gunslingers's": [], + "hypothesizing": [], + "chives": [], + "morays's": [], + "MIRV": [], + "timpanist": ["S", "M"], + "postponingment": [], + "preshrank": [], + "skinflint'ses": [], + "Cromwell": ["M"], + "consulates": [], + "Briana": ["M"], + "shareholders": [], + "overexerting": [], + "backwash": ["M"], + "arisen": [], + "amontillados": [], + "compose": ["A", "E", "C", "G", "S", "D"], + "warbonnets": [], + "currant's": [], + "oomph": [], + "prejudiceds": [], + "caterer's": [], + "congregating": [], + "atheist": ["M", "S"], + "toppings": [], + "south's": [], + "involve": ["L", "D", "S", "G"], + "tragicomedies's": [], + "bossing's": [], + "folly's": [], + "utilizabled": [], + "aerie'ses": [], + "reversibility": [], + "autos": [], + "toxicologists's": [], + "Minsk's": [], + "heifer's": [], + "compilesers": [], + "seller": ["M"], + "chevalier": ["S", "M"], + "permanence's": [], + "argument'ses": [], + "clunkier": [], + "Miltonic's": [], + "nonclerical": ["M", "S"], + "carpool": ["S", "M", "D", "G"], + "commissariats's": [], + "biochemistry's": [], + "sowsing": [], + "palace's": [], + "bluestocking's": [], + "GOP": ["M"], + "antiseptic": ["S", "M"], + "Welshman": ["M"], + "licorice": ["S", "M"], + "oceanic": ["M"], + "cravats": [], + "anodized": [], + "pee'sers": [], + "cutler's": [], + "meths": [], + "hashtag's": [], + "end": ["G", "V", "S", "J", "M", "D"], + "Hilfiger": ["M"], + "dispirits": [], + "acknowledgment": ["S", "M"], + "midweek'ses": [], + "pasts": [], + "allergically": [], + "studs": [], + "spectator's": [], + "coloration's": [], + "keynotersing": [], + "Robson's": [], + "halftone'ses": [], + "ovoids": [], + "Bailey's": [], + "grubber'ses": [], + "inexpedience": [], + "cellulite": ["M"], + "Bratislava's": [], + "TA": [], + "launcheds": [], + "within": ["M"], + "seawall": ["M", "S"], + "pityinged": [], + "forecast": ["M", "R", "Z", "G", "S"], + "defenselessly": [], + "dumbwaiter": ["S", "M"], + "secondary's": [], + "scoldings": [], + "Eeyore": ["M"], + "stethoscopes": [], + "deer": ["M"], + "solution": [], + "poo": ["S", "G", "D"], + "pretzel'ses": [], + "gooier": [], + "occult's": [], + "kayoed": [], + "scubaed": [], + "garland'sed": [], + "stroll": ["M", "D", "R", "S", "Z", "G"], + "sitcom": ["S", "M"], + "Cadillac": ["M"], + "listing's": [], + "syllogisms": [], + "Aug's": [], + "hammers": [], + "annuitants's": [], + "passesable": [], + "cackler's": [], + "debacle": ["M", "S"], + "pathology's": [], + "drums": [], + "texturing": [], + "underpaysment": [], + "penned": [], + "countercultures's": [], + "Rico's": [], + "asheden": [], + "interchanging": [], + "calorific": [], + "presences": [], + "imputable": [], + "ceramist": ["M", "S"], + "Marches": [], + "whisperer's": [], + "Juneau's": [], + "Gaussian": ["M"], + "romps": [], + "assemblyman's": [], + "bandeau's": [], + "billowed": [], + "scrapbooks's": [], + "hurlers": [], + "scalps": [], + "applications": [], + "lendsers": [], + "whisperersing": [], + "birdbath": ["M"], + "disburses": [], + "Varese": ["M"], + "imperturbability": ["M"], + "marrow's": [], + "masterminded": [], + "myths": [], + "acquiresment": [], + "derisiveness": ["M"], + "sigh'sed": [], + "nuisances": [], + "hellishness": ["M"], + "Pecos": ["M"], + "equal": ["S", "M", "D", "Y", "G"], + "evermore": [], + "chattiest": [], + "protrusions": [], + "defame": ["Z", "G", "D", "R", "S"], + "familial": [], + "theistic": [], + "jock": ["M", "S"], + "feds's": [], + "highboys": [], + "immunologist": ["M", "S"], + "pustule's": [], + "puritanically": [], + "Enrique": ["M"], + "medal's": [], + "Delphi": ["M"], + "forever's": [], + "thresholds": [], + "aphorism'ses": [], + "cordovan": ["M"], + "torsion": ["M"], + "rustproofing": [], + "pipettes's": [], + "spotlight's": [], + "bareback": ["D"], + "perfumeder": [], + "bridged": [], + "blacktopping": [], + "houseds": [], + "elderberry": ["S", "M"], + "artifact": ["S", "M"], + "behavior's": [], + "conducing": [], + "Canaletto": ["M"], + "basilisk'ses": [], + "tightrope's": [], + "maven's": [], + "spy": ["G", "D", "S", "M"], + "Mercer": ["M"], + "vetch'ses": [], + "waffle'sers": [], + "chaineds": [], + "Raffles's": [], + "deeply": [], + "confidential": ["Y"], + "discipline'sing": [], + "bathhouse'ses": [], + "parsimony's": [], + "rivets": [], + "profaneds": [], + "numeral": ["S", "M"], + "we've": [], + "subparagraph": [], + "mishear": ["G", "S"], + "extenuating": [], + "Ananias's": [], + "stashesing": [], + "specialism": ["S"], + "obstinate": ["Y"], + "recklessly": [], + "hardy": ["P", "T", "R"], + "Tokay": ["M"], + "ceder": ["M", "S"], + "experimentation": ["M"], + "wassail": ["S", "M", "D", "G"], + "suffereder": [], + "checkpoint's": [], + "wounds": [], + "dwarfism's": [], + "authorities's": [], + "Myles": ["M"], + "fuehrer's": [], + "serine": [], + "barged": [], + "pampers": [], + "sager": [], + "disagreeably": [], + "valuatesing": [], + "week's": [], + "phenobarbital": ["M"], + "Leander's": [], + "kenneling": [], + "Cr": ["M", "T"], + "friedcake": ["M", "S"], + "caterpillar": ["M", "S"], + "conciliation's": [], + "phosphorescent": ["Y"], + "guillotine's": [], + "coda's": [], + "chattered": [], + "ash'sed": [], + "Beulah": ["M"], + "cheekbone": ["S", "M"], + "topographically": [], + "nonprejudicial": [], + "restrengthen": [], + "smudge'sing": [], + "winnowsed": [], + "muralists's": [], + "Glastonbury": ["M"], + "underfeed": ["G", "S"], + "linearly": [], + "mainstream'sed": [], + "parakeet's": [], + "microsecond": ["M", "S"], + "liming": [], + "abdicateds": [], + "presumes": [], + "stonemason's": [], + "vexations's": [], + "lilt'sed": [], + "suffocatingen": [], + "caprices": [], + "stimulatesing": [], + "agreeable": [], + "thaw": ["M", "D", "G", "S"], + "Establishment": [], + "RVs's": [], + "aural": ["Y"], + "cornea's": [], + "splicing": [], + "screensavers's": [], + "cutlery's": [], + "midterm": ["M", "S"], + "weakenerers": [], + "inflection'ses": [], + "syphilitic's": [], + "sunblock's": [], + "Rwy": [], + "inquest": [], + "hearsay's": [], + "assumeds": [], + "peacemaker'ses": [], + "crestless": [], + "parachutist's": [], + "catchphrases's": [], + "publican's": [], + "indecision": [], + "schusseds": [], + "buzzing": [], + "walkings": [], + "Best's": [], + "remixing": [], + "bounds": [], + "hooves": [], + "undertakers": [], + "stormier": [], + "Dvorak's": [], + "southern": ["S", "Z", "M", "R"], + "suicide's": [], + "crystallizesing": [], + "seaways": [], + "Gettysburg": ["M"], + "staphylococcal": [], + "populists": [], + "desistsed": [], + "encapsulateds": [], + "warding": [], + "coarsely": [], + "Elway": ["M"], + "hahnium": ["M"], + "hesitations": [], + "hunter's": [], + "dilemma's": [], + "query": ["D", "S", "M", "G"], + "Ryukyu's": [], + "breakfast's": [], + "brandishing": [], + "prances": [], + "mutilateds": [], + "disinterestednessly": [], + "duelists": [], + "freak": ["S", "M", "D", "G"], + "plural's": [], + "groomer's": [], + "biceps's": [], + "fortnightly": [], + "burns": [], + "blunder'sed": [], + "conjuring": [], + "besmearing": [], + "groundhog's": [], + "someways": [], + "crosscurrent's": [], + "nuzzle": ["D", "R", "S", "M", "Z", "G"], + "Baird's": [], + "landlines": [], + "sexeds": [], + "mirage's": [], + "permit'ses": [], + "bemusinged": [], + "divergence'ses": [], + "Dixieland": ["S", "M"], + "pair": ["A", "M", "D", "S", "G"], + "Armando": ["M"], + "demo's": [], + "Islamist's": [], + "memorandum'ses": [], + "features": [], + "loudhailers's": [], + "eyelids's": [], + "armory": ["S", "M"], + "innervateds": [], + "specialization": ["M", "S"], + "amorous": ["Y", "P"], + "opinionsed": [], + "comma": ["S", "M"], + "Esteban": ["M"], + "bibliographies's": [], + "snoozing": [], + "Gerber's": [], + "trampler": ["M"], + "glues": [], + "coed": ["M", "S"], + "tabby's": [], + "hydrogenate": ["C", "G", "D", "S"], + "scrumhalf": [], + "arpeggios": [], + "nonliterary": [], + "value": ["C", "A", "G", "S", "D"], + "psychopharmacology": [], + "werewolf's": [], + "itchierness": [], + "designate": ["D", "S", "G", "N", "X"], + "commentates": [], + "occupation": ["A", "M"], + "stagestruck": [], + "beleaguersed": [], + "crustierness": [], + "wonderingment": [], + "Aiken": ["M"], + "unwariest": [], + "jonquils's": [], + "franks's": [], + "wagering": [], + "smiley's": [], + "motorways": [], + "mow": ["S", "Z", "G", "M", "D", "R"], + "jaywalks": [], + "edibleness": ["M"], + "helium": ["M"], + "ransacks": [], + "Hilbert's": [], + "redoubtable": [], + "documentations": [], + "colorless": ["P", "Y"], + "Scylla's": [], + "shinbone": ["S", "M"], + "Juan": ["M"], + "backstabber'ses": [], + "hideder": [], + "Clytemnestra's": [], + "wheelbarrows's": [], + "Jacky": ["M"], + "skyrocketing": [], + "hardliners": [], + "electrologist's": [], + "euphemisms": [], + "psychoneurosis's": [], + "airstrip's": [], + "Antares": ["M"], + "cutouts": [], + "zest'ses": [], + "ejector's": [], + "provenience": ["M"], + "regrinds": [], + "thumbprints's": [], + "olfactory": ["S", "M"], + "worriment": ["M"], + "pictures": [], + "Germany's": [], + "danced": [], + "irreligion": [], + "serviette's": [], + "Darwinisms": [], + "exudeds": [], + "liquidizersing": [], + "roguishness's": [], + "humans": [], + "massiveness": ["M"], + "spleens": [], + "enliven": ["S", "L", "D", "G"], + "nudists": [], + "eradicable": ["I"], + "accounting's": [], + "characterized": [], + "pushiness's": [], + "bulrush'ses": [], + "dalmatians": [], + "ecotourist'ses": [], + "mustiest": [], + "Scribner": ["M"], + "criticizer's": [], + "censers": [], + "caged": [], + "replenishinged": [], + "reds's": [], + "allergies's": [], + "shtick": ["M", "S"], + "recap'ses": [], + "wrongfully": [], + "controller'ses": [], + "madras": ["M", "S"], + "normative": [], + "axiomatically": [], + "WSW": ["M"], + "steeps's": [], + "VTOL": [], + "coagulation": ["M"], + "workups": [], + "cruxes": [], + "airsickness": ["M"], + "interestingly": [], + "prodistract": [], + "thumbeding": [], + "tool's": [], + "appropriations": [], + "wrests": [], + "Wiley": ["M"], + "accounted": ["U"], + "teasersing": [], + "quotas's": [], + "Lyell": ["M"], + "Botox": [], + "Moon": ["M"], + "noisemakers": [], + "Cinerama's": [], + "enteringed": [], + "changeder": [], + "Angle's": [], + "basins": [], + "flintlocks's": [], + "presto": ["S", "M"], + "Lapland": ["M", "R"], + "responsively": [], + "souseds": [], + "approximatingen": [], + "despoilment": ["M"], + "swallow'sed": [], + "mainspring": ["M", "S"], + "doodlers": [], + "lancer's": [], + "pantsuits's": [], + "Epsom's": [], + "Starbucks": ["M"], + "vacuity": ["M"], + "she'd": [], + "channeled": [], + "gilded": [], + "mainlies": [], + "strainsing": [], + "dampener": ["M"], + "busking": [], + "retrenchments": [], + "gaunter": [], + "Britishers": [], + "tumbleweeds": [], + "fungi": [], + "proximal": [], + "blackest": [], + "gainful": ["Y"], + "timeline": ["M", "S"], + "battledores's": [], + "celebrants": [], + "lubricator": ["M", "S"], + "rinks": [], + "several'sly": [], + "deplete": ["G", "N", "D", "S"], + "mysticism's": [], + "fiberfill": ["M"], + "hesitatesing": [], + "grieveder": [], + "harem's": [], + "Frederic": ["M"], + "broodersing": [], + "policies": [], + "accelerating": [], + "floureding": [], + "outruns": [], + "handle's": [], + "foreskin": ["M", "S"], + "Tabitha": ["M"], + "saleroom": ["S"], + "Garland": ["M"], + "Xerox": ["M", "S"], + "splurging": [], + "supplementings": [], + "encased": [], + "characterization's": [], + "sidearms's": [], + "confidences": [], + "linearity": ["M"], + "bunches": [], + "Leeward's": [], + "plainchant": [], + "molehill's": [], + "Elena's": [], + "bast": ["M"], + "advocateds": [], + "whiffletree's": [], + "girdle'sing": [], + "redwood's": [], + "rapers": [], + "replicas": [], + "mungsing": [], + "spawn'sed": [], + "tonal": ["Y"], + "Platte": ["M"], + "conceptually": [], + "Qatari'ses": [], + "publican": ["A", "M", "S"], + "crucifixion's": [], + "flyspecking": [], + "limerick": ["S", "M"], + "stowaway's": [], + "clinch's": [], + "inward": ["S", "Y"], + "fortunately": [], + "dreamiest": [], + "Khulna's": [], + "conventions's": [], + "busload": ["S"], + "jewelersing": [], + "perspicacity's": [], + "wobble": ["M", "G", "D", "S"], + "deejay'ses": [], + "spunky": ["T", "R"], + "emancipating": [], + "forkful": ["S", "M"], + "butcher": ["M", "D", "G"], + "newsroom": ["M", "S"], + "gripped": [], + "slavery's": [], + "scaffolds": [], + "stuffed": [], + "Micawber": ["M"], + "tempers": [], + "contaminate": ["A", "C", "D", "S", "G"], + "interleukin": ["M"], + "triplets": [], + "headgear": ["M"], + "monosyllabic": [], + "Lanai's": [], + "pennies's": [], + "fiancees": [], + "rookings": [], + "asters": [], + "brandished": [], + "bullfight'ser": [], + "fudge's": [], + "fraternally": [], + "Marxists's": [], + "projecteds": [], + "paddle's": [], + "ranter": ["M"], + "porpoisinged": [], + "blitzkrieg'ses": [], + "kilograms's": [], + "counterspy's": [], + "quicksand'ses": [], + "neuters": [], + "macroeconomics's": [], + "friend's": [], + "bookkeeper's": [], + "bedeviled": [], + "disemboweledment": [], + "diasporas's": [], + "photocopy": ["D", "R", "S", "M", "Z", "G"], + "buccaneer'sed": [], + "adhere": ["G", "D", "S"], + "Fielding": ["M"], + "corsetsing": [], + "thymuses": [], + "errors": [], + "Lodge": ["M"], + "sugar's": [], + "Nevadan's": [], + "chums's": [], + "narratives's": [], + "iguana": ["M", "S"], + "Ilene": ["M"], + "Tc": ["M"], + "meanderings": ["M"], + "closes": [], + "antagonist's": [], + "conductress's": [], + "coyness's": [], + "overconfidence": ["M"], + "fixablings": [], + "seismology": ["M"], + "PayPal's": [], + "pederast'ses": [], + "angleworm": ["M", "S"], + "balboas's": [], + "sectaries": [], + "unfertilized": [], + "grille's": [], + "iffiest": [], + "senor'ses": [], + "Xmas'ses": [], + "Yuan": ["M"], + "raptors": [], + "licentious": ["Y", "P"], + "alabaster's": [], + "recognizers": [], + "miterser": [], + "miseries": [], + "prosy": ["R", "T"], + "scamper": ["G", "M", "D"], + "Tamil": ["M", "S"], + "antiviral's": [], + "transistor's": [], + "wicks": [], + "Timex": ["M"], + "diagram's": [], + "Passion's": [], + "pinstripes": [], + "correspondence's": [], + "attenuatesing": [], + "enlargeder": [], + "furlough's": [], + "hoop": ["M", "D", "S", "G"], + "misfile": ["G", "D", "S"], + "magnetization": ["C", "M"], + "fattiest": [], + "carpeting's": [], + "fifty": ["S", "M", "H"], + "cosponsors's": [], + "outcome": ["M", "S"], + "finest": [], + "gabardines": [], + "Right": [], + "Malian": ["S", "M"], + "fickle": ["R", "P", "T"], + "philodendron": ["S", "M"], + "extirpation": ["M"], + "trenched": [], + "hostlers": [], + "inwardsly": [], + "Cecilia": ["M"], + "mouthiness": ["M"], + "moviegoer": ["S", "M"], + "scalinged": [], + "radioing": [], + "dizziest": [], + "accosting's": [], + "loathings": [], + "comrades's": [], + "chapatis": [], + "derivative": ["M", "S"], + "slinkiest": [], + "weed": ["M", "D", "R", "S", "Z", "G"], + "pastures": [], + "overmuch": ["S"], + "Carr": ["M"], + "snatch's": [], + "calligraphist": ["M", "S"], + "existentialism": ["M"], + "lassoed": [], + "NRC": [], + "mimicker's": [], + "valetudinarianism's": [], + "Pyrrhic": ["M"], + "bedspread's": [], + "belt": ["S", "G", "M", "D"], + "kenneling's": [], + "fences": [], + "vacuumings": [], + "lexicon": ["S", "M"], + "arrested": [], + "predateds": [], + "Epictetus": ["M"], + "sedition": ["M"], + "Freemasonry's": [], + "extravagantly": [], + "pucks": [], + "crust'sed": [], + "detentes's": [], + "Burns's": [], + "holiers": [], + "Ugandan": ["M", "S"], + "unsafer": [], + "meow's": [], + "bursa": ["M"], + "fixable": [], + "gurglinged": [], + "lowing": [], + "presentable": [], + "Mayo's": [], + "oversimplifications": [], + "Mesa's": [], + "measly": ["R", "T"], + "cranium": ["S", "M"], + "Excellency's": [], + "geneticist'ses": [], + "thunderstruck": [], + "mollifieds": [], + "girlfriend's": [], + "repleteness's": [], + "Kinko's": [], + "plod": ["S"], + "slewed": [], + "Dona's": [], + "robot'ses": [], + "boundinged": [], + "xxxv": [], + "sidebar's": [], + "believesers": [], + "universality": ["M"], + "Adrienne's": [], + "StairMaster's": [], + "tawdrily": [], + "fluttersing": [], + "aired": [], + "vibrato": ["M", "S"], + "strides": [], + "cabinets's": [], + "trounce": ["D", "R", "S", "Z", "G"], + "Bandung": ["M"], + "Arnold's": [], + "begonias's": [], + "Della's": [], + "Sartre": ["M"], + "oxtail": ["S"], + "Negress": ["M", "S"], + "genres's": [], + "conned": [], + "locator's": [], + "puss": ["M", "S"], + "fluctuationed": [], + "pasta's": [], + "homesickness": ["M"], + "villages": [], + "subhuman": ["M", "S"], + "bicentenaries": [], + "flawlessnessly": [], + "locates": [], + "submersingen": [], + "grapes": [], + "ethological": [], + "warhead's": [], + "consignment'ses": [], + "Masonic's": [], + "brutes's": [], + "soloist's": [], + "hoyden's": [], + "dignity": ["I", "S", "M"], + "examination'ses": [], + "brainstorm'sed": [], + "mugful": ["M", "S"], + "wryness": ["M"], + "extraordinaire": [], + "sch": [], + "beguine": ["S", "M"], + "bee'sers": [], + "soundingsness": [], + "coley": ["S"], + "sour'sed": [], + "straggling": [], + "Jerome": ["M"], + "sunbathe": [], + "naiad": ["S", "M"], + "expedient": ["S", "M", "Y"], + "separatist'ses": [], + "nonevent's": [], + "mushroomed": [], + "poesy's": [], + "correlatives": [], + "flubbing": [], + "farragoes": [], + "locality's": [], + "Spenser's": [], + "tolerationed": [], + "maneuvered": [], + "sacrum's": [], + "composes": [], + "curios": [], + "mainsprings": [], + "government's": [], + "Burgess's": [], + "rowel": ["S", "M", "D", "G"], + "countersign": ["G", "S", "M", "D"], + "subtitling": [], + "heehaweding": [], + "breweder": [], + "plundered": [], + "promoter": ["M"], + "wavelengths": [], + "illustriousness": ["M"], + "balk'sed": [], + "spongecake's": [], + "appetizers": [], + "dishrags": [], + "Adhara": ["M"], + "brags": [], + "threadier": [], + "vertex'ses": [], + "pleasure's": [], + "ultra's": [], + "cornets": [], + "caseload'ses": [], + "Riviera": ["M", "S"], + "chipmunks's": [], + "Tianjin's": [], + "amperage's": [], + "Nguyen's": [], + "dispensary's": [], + "harebell": ["M", "S"], + "spiderwebs": [], + "p": ["N", "R", "X", "T", "G", "J"], + "Mingus's": [], + "shop'ses": [], + "dredge": ["D", "R", "S", "M", "Z", "G"], + "versing": [], + "knockwurst": ["S", "M"], + "homelessness": ["M"], + "elbowroom's": [], + "slate": ["S", "M"], + "sausages": [], + "Mbabane's": [], + "memoir's": [], + "bequest'ses": [], + "gladlies": [], + "monogamist'ses": [], + "foisted": [], + "riverfront": [], + "extract'sed": [], + "Florsheim's": [], + "correcterly": [], + "Carole's": [], + "glummest": [], + "blusterers": [], + "brazersing": [], + "grisliest": [], + "Di's": [], + "inclusion's": [], + "viewer's": [], + "velour'ses": [], + "incarnations": [], + "plainclothesmen": [], + "martyrdom": ["M"], + "easily": ["U"], + "plumbings": [], + "tenaciousness": ["M"], + "cumbersomeness": ["M"], + "vicissitudes": [], + "jokier": [], + "divestment": ["M"], + "worship'sed": [], + "Shiite's": [], + "belaborsed": [], + "loquaciousness's": [], + "duplication": ["A", "M"], + "bookmaking": ["M"], + "imagery": ["M"], + "barfing": [], + "tumbleweed's": [], + "suggestsed": [], + "bootblack": ["S", "M"], + "slipstream": ["S", "M"], + "spongiest": [], + "merchant'sable": [], + "reign": ["M", "D", "S", "G"], + "Indochina's": [], + "hosteleder": [], + "honeycomb's": [], + "restated": [], + "mirroring": [], + "graduated": [], + "tingling": ["M"], + "boil's": [], + "dowel": ["S", "M", "D", "G"], + "metropolis's": [], + "manipulatively": [], + "mallet": ["M", "S"], + "hyphenating": [], + "rolleder": [], + "choice's": [], + "upshots's": [], + "Moliere": ["M"], + "ascension": ["M", "S"], + "embankments": [], + "heme": ["M"], + "modules": [], + "unjust": ["Y"], + "expectorate": ["D", "S", "G", "N"], + "manikins": [], + "blueberries": [], + "Gaziantep's": [], + "Gwalior's": [], + "guardhouse's": [], + "humpbackeds": [], + "commissionaires": [], + "Wyatt": ["M"], + "booby": ["S", "M"], + "multimillionaires": [], + "pinstripeds": [], + "shyer": [], + "macaroon's": [], + "activation": ["I", "C", "A", "M"], + "motivated": ["U"], + "blacking's": [], + "ineducable": [], + "kegs's": [], + "bushiness": ["M"], + "neediest": [], + "Sasquatches": [], + "intoxicate": ["D", "S", "G", "N"], + "overtones": [], + "Byzantine's": [], + "vaccines's": [], + "preachment's": [], + "forestinged": [], + "lurched": [], + "budging": [], + "polices": [], + "Levy's": [], + "conception's": [], + "enigmas's": [], + "colonels's": [], + "Andrew": ["S", "M"], + "jaundice": ["D", "S", "M", "G"], + "apex's": [], + "frostbiting": [], + "misspellinged": [], + "windpipe'ses": [], + "advertorial's": [], + "classeds": [], + "flauntingly": [], + "cleaners": [], + "stalk's": [], + "placation": ["M"], + "stinkiest": [], + "enciphered": [], + "inkstands's": [], + "encodersing": [], + "lapped": [], + "bountifulness's": [], + "gig": ["S", "M"], + "reneger's": [], + "Jeannine": ["M"], + "infiltrator's": [], + "generators": [], + "mizzenmasts's": [], + "federation": ["F", "M"], + "genuflected": [], + "deceived": [], + "divisibility's": [], + "Mauritania's": [], + "unseemly": ["T"], + "eyeopener'ses": [], + "Rushmore's": [], + "bylines's": [], + "courtesans's": [], + "patricians": [], + "enrollment": ["M", "S"], + "Costello's": [], + "unjustly": [], + "damps": [], + "fetchesers": [], + "talc": ["M"], + "drawl'sed": [], + "poorhouses's": [], + "shakierness": [], + "Madrid": ["M"], + "cupcake'ses": [], + "belief's": [], + "addresseds": [], + "liaising": [], + "cosine": ["S", "M"], + "Europeans": [], + "Isidro": ["M"], + "stronghold": ["M", "S"], + "fuckerers": [], + "embankment": ["S", "M"], + "spectral": [], + "setup": ["M", "S"], + "Winthrop": ["M"], + "undercuts's": [], + "prekindergarten's": [], + "flutist": ["M", "S"], + "creep'ser": [], + "Allyson's": [], + "compact'sed": [], + "socializes": [], + "stolid": ["R", "Y", "T", "P"], + "obsessives": [], + "flashcubes": [], + "chestful": ["S", "M"], + "jounce": ["M", "G", "D", "S"], + "tatters": [], + "cholecystectomy": [], + "damaged": ["U"], + "evince": ["D", "S", "G"], + "truncheons's": [], + "imputes": [], + "grabbier": [], + "multidimensional": [], + "Davis": ["M"], + "advancements's": [], + "trampolining": [], + "landlubbers": [], + "Tamra": ["M"], + "dashboards": [], + "turning": ["M", "S"], + "technetium's": [], + "scapular's": [], + "interval": ["S", "M"], + "esteeming": [], + "Pythagoras's": [], + "scroungers": [], + "Keck's": [], + "cessions's": [], + "argyles": [], + "purebred": ["S", "M"], + "Onondagas": [], + "stockbroking": ["M"], + "suaveness": ["M"], + "marches": [], + "chicle's": [], + "keynoter's": [], + "applet's": [], + "joltersing": [], + "ages's": [], + "Wisconsin": ["M"], + "tormenting": ["Y"], + "alien'sed": [], + "gobsmacked": [], + "legibility's": [], + "chum's": [], + "mills": [], + "hooker": ["M", "S"], + "Ebola's": [], + "receivables's": [], + "stasis": [], + "keynoters": [], + "framer": ["M"], + "wearer": ["M"], + "discombobulating": [], + "Mondale": ["M"], + "proofreading": [], + "Heriberto": ["M"], + "vandalizes": [], + "prognostic": ["M", "S"], + "piloting": [], + "blockade's": [], + "harmoniousnessly": [], + "clavichords's": [], + "collocateds": [], + "cellular": ["S", "M"], + "separation": ["M"], + "hogback's": [], + "malfunction'sed": [], + "schmuck'ses": [], + "motel's": [], + "hath": [], + "Delaney": ["M"], + "clergy": ["S", "M"], + "operands": [], + "transplant's": [], + "capillarity": ["M"], + "irritated": [], + "bent": ["S", "M"], + "shipowners": [], + "convener'ses": [], + "excommunicatesens": [], + "Poisson": ["M"], + "Abilene": ["M"], + "harridan'ses": [], + "negotiability's": [], + "simplificationsen": [], + "controverteds": [], + "fluctuation's": [], + "Serra": ["M"], + "governance's": [], + "corkage": [], + "Aussie's": [], + "Mackinac's": [], + "concatenating": [], + "oddly": [], + "consciousliness": [], + "impudence's": [], + "cannoning": [], + "deviates's": [], + "erodeds": [], + "lovemaking's": [], + "hammerings": [], + "hydrolysis": ["M"], + "journalist's": [], + "rainmaker": ["S", "M"], + "equerries's": [], + "Artie's": [], + "serenading": [], + "incinged": [], + "abbreviation": ["M"], + "peppinesser": [], + "Luger": ["M"], + "bloodiers": [], + "hooping": [], + "vagrants": [], + "coolants's": [], + "petrolatum": ["M"], + "gulf's": [], + "drudge's": [], + "BBC's": [], + "lengthier": [], + "cam's": [], + "preemption": ["M"], + "rabbit": ["G", "M", "D", "S"], + "Maldivians": [], + "blurry": ["T", "R", "P"], + "vulgarizinged": [], + "Riel's": [], + "workflow'ses": [], + "occupier": ["S", "M"], + "neoconservative's": [], + "tomtits": [], + "ashore": [], + "personas's": [], + "philosophizersing": [], + "straightforward": ["Y", "P", "S"], + "kappas": [], + "misguidance's": [], + "pleaseds": [], + "Walls": ["M"], + "temperas's": [], + "dye's": [], + "prototype": ["M", "G", "S"], + "innersoles": [], + "divorcees": [], + "aerie": ["M", "S"], + "colder": [], + "bargeman's": [], + "shave": ["M", "Z", "G", "D", "R", "S", "J"], + "gardens": [], + "zaniness's": [], + "paintbox's": [], + "authoritarianism's": [], + "ban": ["S", "M"], + "suffusing": [], + "curliest": [], + "hurtfulness": ["M"], + "toiletings": [], + "scurrilousness's": [], + "emulates": [], + "manslaughter": ["M"], + "tense": ["D", "R", "S", "M", "Y", "T", "G", "N", "X", "P"], + "transporter": ["M"], + "Tippecanoe": ["M"], + "sequestrations": [], + "Krishna's": [], + "period": ["M", "S"], + "overshoe'ses": [], + "resourcefully": [], + "Montanans's": [], + "nightingales": [], + "turnkeys": [], + "fearlessnessly": [], + "bosses": [], + "piquing": [], + "braininess's": [], + "enactments": [], + "yeti'ses": [], + "immediacy's": [], + "famishing": [], + "chaplets's": [], + "LPG": [], + "importunity's": [], + "menstrual": [], + "plumb's": [], + "reeked": [], + "speakeasies's": [], + "audiology": ["M"], + "verification's": [], + "Canadians": [], + "reals": [], + "warmonger'sing": [], + "Hurst's": [], + "lynchinged": [], + "revolutionizeds": [], + "Erickson": ["M"], + "Afrikaner": ["S", "M"], + "Ouagadougou": ["M"], + "irascibly": [], + "tractable": ["I"], + "gull's": [], + "Tonya's": [], + "pommels": [], + "assort": ["G", "L", "D", "S"], + "freighted": [], + "scherzo's": [], + "supernaturalsly": [], + "vapinged": [], + "dissents's": [], + "iambus": ["M", "S"], + "Mandingo": ["M"], + "traumatized": [], + "nosiest": [], + "replace": [], + "triangulates": [], + "comforter's": [], + "turnersing": [], + "pageboys": [], + "rational's": [], + "husbandeds": [], + "Doonesbury": ["M"], + "Ana's": [], + "vehicle's": [], + "spacecrafts": [], + "Xavier": ["M"], + "potter's": [], + "cherishesing": [], + "blonders": [], + "canary": ["S", "M"], + "away": [], + "intelligibly": ["U"], + "impaneleding": [], + "counteroffensives": [], + "Calcutta's": [], + "Vivekananda's": [], + "mistress's": [], + "genuflection'ses": [], + "ricing": [], + "topped": [], + "subroutines": [], + "regularizing": [], + "paratroop": ["R", "Z", "S"], + "Alberto's": [], + "nonmilitary": [], + "plumping": [], + "unrebind": [], + "Cleo's": [], + "periphrastic": [], + "balalaikas": [], + "malefactor's": [], + "inundationsed": [], + "interfiling": [], + "synthesizeder": [], + "desultory": [], + "therein": [], + "exabyte's": [], + "rotundas": [], + "deinlay": [], + "generate": ["C", "A", "V", "N", "G", "S", "D"], + "joined": [], + "jackass": ["M", "S"], + "auditor's": [], + "jennets": [], + "epidermic": [], + "condensations": [], + "semivowel's": [], + "raconteurs": [], + "shallow": ["T", "P", "M", "R", "Y", "S"], + "generated": [], + "corpsman": ["M"], + "swinger's": [], + "clot's": [], + "buzzkill's": [], + "measure": ["A", "D", "S", "G"], + "Celts": [], + "Donna's": [], + "plenaries": [], + "evilest": [], + "decencies": [], + "equivocationens": [], + "reasoning": ["M"], + "overbuildsing": [], + "belched": [], + "conduce": ["D", "S", "G", "V"], + "hexameters": [], + "dimensions's": [], + "flues": [], + "anthropomorphous": [], + "tabernacles's": [], + "AZT": ["M"], + "codfish'ses": [], + "carving's": [], + "steeplechase's": [], + "cottager's": [], + "snake'sing": [], + "Angela's": [], + "malingerings": [], + "bejewel": ["S", "D", "G"], + "vectoring's": [], + "tiptop's": [], + "lean'sed": [], + "impromptus": [], + "microcomputer'ses": [], + "mistrusteds": [], + "cake": ["D", "S", "M", "G"], + "downscale": [], + "bouncily": [], + "Lila": ["M"], + "tangibles": [], + "oinkeds": [], + "shames": [], + "oriental": ["M", "S"], + "collecting": [], + "Lille": ["M"], + "shirtsleeve": ["S", "M"], + "Pythagoras": ["M"], + "wimple": ["D", "S", "M", "G"], + "infatuations": [], + "intercommunicatesing": [], + "agenda": ["S", "M"], + "precinct's": [], + "Seville's": [], + "breathalyzers": [], + "brightening": [], + "passkeys": [], + "sections": [], + "underlip": ["S", "M"], + "ported": [], + "bluestockings's": [], + "pellet": ["G", "M", "D", "S"], + "massed": [], + "Dusty's": [], + "ibexes": [], + "refresh": ["Z", "G", "L", "D", "R", "S"], + "kumquats": [], + "sportier": [], + "admirals": [], + "lampoon'sed": [], + "bicep": ["M", "S"], + "drunkennessly": [], + "pockmarking": [], + "placers's": [], + "sheepherders": [], + "fuhrer's": [], + "crown": ["S", "M", "D", "G"], + "suppurateds": [], + "resoundsing": [], + "pederasty's": [], + "gantries": [], + "Japs": [], + "peculiarities": [], + "rallies's": [], + "schlock's": [], + "def": ["Z"], + "invidiousness": ["M"], + "municipalities's": [], + "secluded": [], + "eraseder": [], + "canyons": [], + "transshipsment": [], + "envenomsed": [], + "uprootings": [], + "pelt": ["M", "D", "S", "G"], + "polyamories": [], + "anathematizes": [], + "clement": ["Y"], + "soviets": [], + "snip": ["M", "D", "R", "Z", "G", "S"], + "divineliers": [], + "consist": ["S", "D", "G"], + "piles": [], + "Czechoslovakian": ["S", "M"], + "subjects": [], + "scrumhalves": [], + "nosher": ["M"], + "greengage": ["M", "S"], + "acquittal'ses": [], + "gyppers's": [], + "Hanoverian": ["M"], + "closet'sed": [], + "potherb's": [], + "subsumeds": [], + "pianoforte": ["S", "M"], + "ems": [], + "dawdleder": [], + "summarily": [], + "crinkles's": [], + "leak'sed": [], + "Martel": ["M"], + "yawning": [], + "rollicks": [], + "ruffle'sing": [], + "Caruso": ["M"], + "hypotenuse'ses": [], + "pithead": ["S"], + "bureaus's": [], + "taxiing's": [], + "impersonators": [], + "Beirut": ["M"], + "lantern'ses": [], + "comfortableness": ["M"], + "motility's": [], + "fetidness's": [], + "batiste's": [], + "boosted": [], + "granulatingen": [], + "ebullition": ["M"], + "televisingen": [], + "Andrew's": [], + "televisionsing": [], + "Benedict": ["M"], + "betrothed's": [], + "mumble'sers": [], + "Nigerians": [], + "Rossini's": [], + "ardors": [], + "swarm": ["G", "S", "M", "D"], + "sensibly": ["I"], + "cringes's": [], + "Trinidadian": ["M", "S"], + "obduracy": ["M"], + "August'ses": [], + "anniversaries": [], + "highhandednessly": [], + "Topsy": ["M"], + "panel'sed": [], + "mouton's": [], + "partakes": [], + "sorroweding": [], + "rusk's": [], + "worldviews": [], + "corona's": [], + "miscalculation's": [], + "simonizes": [], + "vulgar": ["R", "Y", "T"], + "bobbled": [], + "Russ's": [], + "berg": ["S", "M"], + "genealogist's": [], + "phenotype": [], + "ruddy": ["R", "T", "P"], + "terrorizeds": [], + "Menelaus's": [], + "missals": [], + "cavil'sed": [], + "shrilling": [], + "flagman's": [], + "shorthorn": ["M", "S"], + "infield": [], + "Fronde": ["M"], + "Salvadorean": ["M", "S"], + "backrests's": [], + "Rosie": ["M"], + "enrollment's": [], + "folktale'ses": [], + "veld's": [], + "passport": ["M", "S"], + "acropolis's": [], + "rainmakers's": [], + "spelunkers": [], + "sanitizes": [], + "Lillian": ["M"], + "Casandra's": [], + "riffing's": [], + "Thad's": [], + "conditioning": ["M"], + "absurdest": [], + "TLC": ["M"], + "xylophonist": ["M", "S"], + "jotter'ses": [], + "gluier": [], + "compendiums": [], + "disconsolately": [], + "amused": [], + "Martians": [], + "Laocoon's": [], + "diphtheria": ["M"], + "stratagem's": [], + "granola's": [], + "trilling": [], + "pealing": [], + "contused": [], + "portrayinged": [], + "hurlsers": [], + "storerooms": [], + "initializeds": [], + "pokier": [], + "seamount'ses": [], + "portraitists's": [], + "ideologies's": [], + "alliterate": ["D", "S", "X", "G", "N", "V"], + "largers": [], + "igneous": [], + "negotiating": [], + "worksheet": ["M", "S"], + "divisor's": [], + "inauguration's": [], + "horseman's": [], + "inundating": [], + "grant": ["S", "M", "D", "R", "Z", "G"], + "convulsions": [], + "hangar": ["M", "S"], + "photography": ["M"], + "Malraux": ["M"], + "enfranchisement's": [], + "hacksaws's": [], + "beersing": [], + "deludes": [], + "Cork": [], + "systemic'ses": [], + "cowered": [], + "Saxon'ses": [], + "onstage": [], + "scorched": [], + "Kaiser's": [], + "articulately": [], + "translation's": [], + "reliability's": [], + "underpayments": [], + "Dare's": [], + "Floridian's": [], + "disconnectedly": [], + "calamaris": [], + "pitilessness's": [], + "grufferly": [], + "highball's": [], + "Edams's": [], + "querulousness": ["M"], + "hour": ["M", "Y", "S"], + "scoop": ["M", "D", "S", "G"], + "tilt": ["M", "D", "G", "S"], + "archivist": ["M", "S"], + "merchantables": [], + "Eisenstein": ["M"], + "ceilidh": [], + "exaltation": ["M"], + "bundleds": [], + "anthropological": ["Y"], + "Jekyll": ["M"], + "ugliest": [], + "schussboomer'ses": [], + "basilica'ses": [], + "radioisotope's": [], + "neutered": [], + "afflictions": [], + "whiskey's": [], + "gunrunning's": [], + "voyeurs": [], + "Karol": ["M"], + "certificate": ["M", "G", "N", "X", "D", "S"], + "funkiness": ["M"], + "caviler": ["M"], + "counteroffensives's": [], + "stoicism's": [], + "deviltry": ["S", "M"], + "lungsing": [], + "Cronin's": [], + "Fuentes's": [], + "muddying": [], + "alliterations": [], + "wenens": [], + "Februaries's": [], + "origins's": [], + "sodomizeds": [], + "chorales": [], + "miniature": ["M", "S"], + "steaminess's": [], + "lambkins": [], + "Ngaliema's": [], + "wafer's": [], + "hypertrophies": [], + "streetlights": [], + "offings": [], + "Freddy": ["M"], + "sister's": [], + "skycaps's": [], + "lumpiness": ["M"], + "Schliemann's": [], + "enamel": ["J", "S", "Z", "G", "M", "D", "R"], + "muster": ["G", "M", "D"], + "beryllium's": [], + "disciplining": [], + "freemen": [], + "consistence's": [], + "pharmacologists's": [], + "salads": [], + "slit'ses": [], + "experience": ["I", "M", "D"], + "Ungava's": [], + "Winifred's": [], + "powders": [], + "insurgency's": [], + "haberdasheries's": [], + "starveling": ["M", "S"], + "spectacular": ["M", "Y", "S"], + "solderer's": [], + "fitters": [], + "skewerers": [], + "uptown": ["M"], + "auroras's": [], + "bethinking": [], + "Sargasso": ["M"], + "tourniquet'ses": [], + "fannies": [], + "rain'sed": [], + "scarceness": ["M"], + "bawdiness": ["M"], + "schoolgirl": ["S", "M"], + "peaked": [], + "abstainings": [], + "Nair": ["M"], + "tali": [], + "duteous": ["Y"], + "immensely": [], + "captaincies": [], + "goods's": [], + "irritants": [], + "absentminded": ["Y", "P"], + "rosined": [], + "Dictaphones's": [], + "ingratiated": [], + "slivers's": [], + "nonrecurring": [], + "bloop's": [], + "swarms's": [], + "motorcade's": [], + "prouderly": [], + "zookeepers": [], + "southerly's": [], + "keel'sed": [], + "chocolates": [], + "Tuscarora'ses": [], + "factorizinged": [], + "Abdul's": [], + "Sandinista": ["M"], + "fascination's": [], + "liberties's": [], + "solids's": [], + "vaginas's": [], + "institutions's": [], + "Cygnus": ["M"], + "furring's": [], + "babysitters": [], + "centerfold'ses": [], + "mnemonic'ses": [], + "modulatingen": [], + "hushing": [], + "balefulnessly": [], + "misaddresseds": [], + "mac's": [], + "anodizes": [], + "stumble's": [], + "painfuller": [], + "trackballs's": [], + "Kiowa'ses": [], + "minters": [], + "bodices": [], + "spatulas": [], + "exhortations": [], + "grays": [], + "outer": [], + "hairier": [], + "saddening": [], + "disorderly": [], + "sloughs": [], + "stereoscope's": [], + "McCall's": [], + "actuationed": [], + "chimps": [], + "longboats": [], + "rancidity": ["M"], + "iron'sed": [], + "rails": [], + "sexuality": ["M"], + "brothers": [], + "Inonu": ["M"], + "pregnancy": ["S", "M"], + "force's": [], + "sleaziness's": [], + "doodahs": [], + "Rosetta": ["M"], + "financing's": [], + "Incas's": [], + "slog'ses": [], + "violationed": [], + "barred": ["U", "E", "C"], + "standing": ["M"], + "lxi": [], + "Masefield": ["M"], + "revisions's": [], + "voluptuousnessly": [], + "hider": ["M"], + "flounce": ["D", "S", "M", "G"], + "nourisheds": [], + "Apocrypha's": [], + "Samoans": [], + "shared": [], + "kingliest": [], + "karat": ["S", "M"], + "Hooker": ["M"], + "melamine": ["M"], + "itch": ["M", "D", "S", "G"], + "grapnels": [], + "amigo'ses": [], + "slideshow'ses": [], + "bombardiers": [], + "Bolivian's": [], + "shopfront": ["S"], + "Aquarius's": [], + "churners": [], + "cattle's": [], + "tankful": ["M", "S"], + "Will's": [], + "tombeding": [], + "lavishness": ["M"], + "delver": ["M"], + "creeps's": [], + "curd'ses": [], + "alibieds": [], + "tactility's": [], + "folktale": ["M", "S"], + "duenna": ["M", "S"], + "protraction": [], + "hellions": [], + "Essie": ["M"], + "mountainside": ["S", "M"], + "tailbone": ["S"], + "charabanc'ses": [], + "Hinayana": ["M"], + "directest": [], + "dotage's": [], + "loathsomely": [], + "howitzers": [], + "cleaner": ["M"], + "hatchesing": [], + "unicorns's": [], + "crawlersing": [], + "Porrima's": [], + "heroins's": [], + "Moro": ["M"], + "hamstrings": [], + "schism's": [], + "windmill": ["M", "D", "G", "S"], + "atrophies": [], + "strategy's": [], + "hiccoughed": [], + "manger": ["M"], + "ideologist's": [], + "exhaleds": [], + "countersigns": [], + "Singh": ["M"], + "teetotalers": [], + "plumbs": [], + "Representative": [], + "slacker's": [], + "meander's": [], + "Monet's": [], + "pleateding": [], + "reconcileds": [], + "Hoover": ["M", "S"], + "Tethys": ["M"], + "muskiness": ["M"], + "prevalent": [], + "overestimate": ["M", "G", "N", "D", "S"], + "pestsers": [], + "gregariousnessly": [], + "testifies": [], + "privation's": [], + "mission's": [], + "succoring": [], + "ascribes": [], + "eroding": [], + "tombing": [], + "butch": ["M", "R", "S", "Z"], + "shantung": ["M"], + "messageds": [], + "contravening": [], + "platforming": [], + "setting": ["M"], + "interiors": [], + "rivulet's": [], + "falserly": [], + "Sean": ["M"], + "preordaininged": [], + "refractive": [], + "diminutives's": [], + "brunt": ["M"], + "prophylaxis": ["M"], + "anemically": [], + "dotersing": [], + "Riverside": [], + "festivity": ["S", "M"], + "bible'ses": [], + "diversify": ["G", "N", "D", "S"], + "competencies": [], + "importunity": ["M"], + "promptest": [], + "embolism's": [], + "racersing": [], + "vultures's": [], + "illusions": [], + "barb": ["S", "Z", "G", "M", "D", "R"], + "irregularity's": [], + "sojourn": ["Z", "G", "M", "D", "R", "S"], + "primal": [], + "turbofans's": [], + "lignin": [], + "Kenton's": [], + "shoddier's": [], + "tubeless's": [], + "volunteered": [], + "Mohacs": ["M"], + "equality's": [], + "Congress's": [], + "teen'ses": [], + "Fuchs's": [], + "horticulturist": ["M", "S"], + "greasepaint": ["M"], + "venerateds": [], + "festoons": [], + "situation": ["M"], + "bungle's": [], + "shipload": ["S", "M"], + "observances": [], + "cementum's": [], + "jackals's": [], + "kinkinesser": [], + "sickbay": ["S"], + "overtaxes": [], + "mint's": [], + "adventurous": ["Y", "P"], + "drabness's": [], + "whooshing": [], + "percussion": ["A", "M"], + "limbs": [], + "annexation'ses": [], + "ambuscade'sing": [], + "jarful's": [], + "curliness": ["M"], + "winkled": [], + "policewomen": [], + "embalmed": [], + "scare'ses": [], + "butchered": [], + "Mazarin": ["M"], + "delphiniums": [], + "Medicares": [], + "Waite's": [], + "wizards's": [], + "lubricates": [], + "lob": ["S", "M", "D"], + "typographers": [], + "placed": ["U"], + "Thales's": [], + "felicitates": [], + "decoupaging": [], + "initiations's": [], + "gabfests": [], + "otherwise": [], + "caroler's": [], + "brownout's": [], + "follow": ["S", "D", "R", "Z", "G", "J"], + "cuttingly": [], + "spadework's": [], + "allegorist": ["M", "S"], + "josh'sed": [], + "typing's": [], + "oversights's": [], + "flapper's": [], + "goobers's": [], + "jollification's": [], + "warlocks": [], + "extremer": [], + "nominative": ["S", "M"], + "jaguar's": [], + "Rebekah": ["M"], + "combineds": [], + "envelops": [], + "Randell's": [], + "silversmiths": [], + "Pompeii": ["M"], + "express'sed": [], + "outgrowings": [], + "machination": ["M"], + "troupe'sers": [], + "Knox's": [], + "softening": [], + "midway's": [], + "oppression": ["M"], + "vicissitude's": [], + "leek's": [], + "Mayan'ses": [], + "Nixon's": [], + "Eco's": [], + "reconquer": [], + "ppm": [], + "godlessly": [], + "reactor": [], + "headlights": [], + "remotes's": [], + "anthrax": ["M"], + "Olympiad's": [], + "verger'ses": [], + "elation": ["M"], + "draftsman's": [], + "Ramanujan": ["M"], + "druggists": [], + "blaze's": [], + "sneeze'sing": [], + "bombingsers": [], + "Jurassic": ["M"], + "Asiatics": [], + "indubitably": [], + "cloaksed": [], + "renouncing": [], + "loosens": [], + "victual's": [], + "coworkers": [], + "questionersing": [], + "decrepit": [], + "dankness's": [], + "lapwings": [], + "teaspoonfuls's": [], + "rambles's": [], + "woolgathering": ["M"], + "overdubs": [], + "princes's": [], + "desolatingen": [], + "completely": [], + "torcheds": [], + "dressings's": [], + "meet'sings": [], + "slant'ses": [], + "prelim": ["S", "M"], + "Anchorage": ["M"], + "dynamiter's": [], + "Dali's": [], + "checkers's": [], + "sideways": [], + "foldinged": [], + "embeds": [], + "bandstand": ["S", "M"], + "tirade": ["S", "M"], + "misname": ["G", "D", "S"], + "oddities's": [], + "rootkits": [], + "alpacas": [], + "engagement's": [], + "powwowed": [], + "valuateds": [], + "pyrite's": [], + "burieds": [], + "remissness's": [], + "doomsayer'ses": [], + "mouthwash's": [], + "plop'ses": [], + "wabbit": ["S"], + "Harlow": ["M"], + "Nehru": ["M"], + "searcheder": [], + "gown": ["M", "D", "G", "S"], + "alliterates": [], + "thinkable": ["U"], + "albs": [], + "telecasting's": [], + "person's": [], + "Baltic's": [], + "thereat": [], + "quakinged": [], + "diesels": [], + "depressant": ["S", "M"], + "divots": [], + "distinguishesable": [], + "transoms's": [], + "Millay's": [], + "weariers": [], + "ministries's": [], + "flusher": [], + "overstaying": [], + "Continental": ["M"], + "temptress'ses": [], + "faithfulnessly": [], + "chunk's": [], + "diverseness": ["M"], + "tarantella's": [], + "Lichtenstein": ["M"], + "insipidness": [], + "Yacc's": [], + "Benzedrine's": [], + "botchers": [], + "repudiator'ses": [], + "screen's": [], + "adventurousliness": [], + "readers": [], + "Margery": ["M"], + "counterfactual": [], + "coveralls": [], + "basalt's": [], + "poetaster": ["M", "S"], + "Kringle": ["M"], + "outskirt": ["M", "S"], + "tuning": [], + "Sourceforge's": [], + "suitor": ["M", "S"], + "soundboards": [], + "plimsolls": [], + "tented": [], + "Vance": ["M"], + "Bret": ["M"], + "parsecs": [], + "baaed": [], + "careereding": [], + "razinged": [], + "Se's": [], + "AWOL's": [], + "wooliness": [], + "Jerold": ["M"], + "misfiringed": [], + "Micheal's": [], + "hatch": ["M", "D", "S", "G"], + "KS": [], + "caterwauls's": [], + "friendships": [], + "fractiously": [], + "desuetude's": [], + "succoring's": [], + "groove's": [], + "burglesing": [], + "survey's": [], + "schnook'ses": [], + "jugful's": [], + "pippin": ["S", "M"], + "schemer": ["M"], + "Indochinese": ["M"], + "attributives": [], + "sketcher's": [], + "discolorations": [], + "Herod": ["M"], + "bluster": ["M", "D", "R", "S", "Z", "G"], + "funneling": [], + "tans": [], + "shebang": ["M", "S"], + "lavatories": [], + "politician's": [], + "memory": ["S", "M"], + "efficacy": ["I", "M"], + "scale": ["C", "G", "D", "S"], + "physician": ["S", "M"], + "designeding": [], + "undersellings": [], + "Dramamines's": [], + "Dumas's": [], + "openly": [], + "astonishingly": [], + "rattlers": [], + "sleekerly": [], + "Turkics": [], + "senna's": [], + "educes": [], + "mining's": [], + "miniaturization": ["M"], + "sweller": [], + "Nikon": ["M"], + "spadix's": [], + "conchies": [], + "accountancy": ["M"], + "soberest": [], + "escalateds": [], + "pry": ["Z", "T", "G", "D", "R", "S", "M"], + "layover's": [], + "hoariness": ["M"], + "securities": [], + "hotpot": ["S"], + "Voronezh's": [], + "concord's": [], + "shipments": [], + "Honolulu": ["M"], + "fingers": [], + "roommate": ["S", "M"], + "maturating": [], + "fresco's": [], + "icon'ses": [], + "Robeson": ["M"], + "segregatesing": [], + "snickering": [], + "mints": [], + "miff": ["D", "S", "G"], + "Merton": ["M"], + "derision's": [], + "girts": [], + "gastronomically": [], + "extremely": [], + "reunfitted": [], + "lactation's": [], + "zips": [], + "Faulknerian's": [], + "coda'ses": [], + "quarrels": [], + "Northrop's": [], + "lectureship's": [], + "huzzah'sed": [], + "perpetuatesing": [], + "hornet'ses": [], + "cluster'sed": [], + "fantasizing": [], + "caped": [], + "valises": [], + "winegrowers": [], + "oxbows": [], + "snottiest": [], + "riotousness": [], + "allieds": [], + "queenliest": [], + "smokestacks's": [], + "adjusting": [], + "disreorient": [], + "nonparallel's": [], + "coileding": [], + "handle'sers": [], + "bathetic": [], + "hollowly": [], + "backslapper's": [], + "stomach": ["M", "D", "R", "Z", "G"], + "fundings": [], + "Darryl's": [], + "Bakelite": ["M"], + "missioners's": [], + "Hialeah": ["M"], + "flashest": [], + "commentator": ["S", "M"], + "Pickering's": [], + "rumormongers": [], + "snore": ["D", "R", "S", "M", "Z", "G"], + "blowlamp": ["S"], + "Sterne": ["M"], + "impiousnessly": [], + "magnetometer": ["S", "M"], + "mendicants": [], + "effulgence's": [], + "favors's": [], + "duchess'ses": [], + "barrows's": [], + "reconnaissance": ["M", "S"], + "meals": [], + "DJ": [], + "Cuvier's": [], + "cirri": [], + "fawnerers": [], + "xylophone's": [], + "aims": [], + "entries": [], + "abducts": [], + "candler's": [], + "Arthurian": ["M"], + "verniers's": [], + "Algonquians's": [], + "quids": [], + "Briticism's": [], + "mesquite": ["S", "M"], + "thespian": ["S", "M"], + "cowpokes": [], + "redegenerate": [], + "ones": [], + "perishabled": [], + "Sloan": ["M"], + "subtractions": [], + "dreams": [], + "coma's": [], + "Jilin": ["M"], + "STOL": [], + "circumcision's": [], + "cagoule": ["S"], + "Hood": ["M"], + "anesthetists": [], + "Mayan": ["M", "S"], + "hassock": ["S", "M"], + "percussionist's": [], + "facecloth's": [], + "alerts": [], + "stumping": [], + "circuiting": [], + "wretchedly": [], + "haversack's": [], + "camouflager's": [], + "Venus'ses": [], + "molt's": [], + "effusesing": [], + "Broadways": [], + "PP": [], + "periphrases": [], + "patchworks": [], + "escarpments": [], + "quells": [], + "squatter'ses": [], + "closeout": ["M", "S"], + "Basque": ["M", "S"], + "upstageds": [], + "abscondersing": [], + "oxygenatesing": [], + "choose": ["Z", "G", "R", "S"], + "warrant'sed": [], + "upswings": [], + "cartwheeling's": [], + "electroencephalograph's": [], + "etch": ["D", "R", "S", "Z", "G", "J"], + "sierra'ses": [], + "implicateds": [], + "cladding": ["M"], + "nappy": ["T", "R", "S", "M"], + "evacuations": [], + "slobber's": [], + "Nemesis": ["M"], + "mazes": [], + "homeschooling": ["M"], + "shocks": [], + "gammy": [], + "Hohenstaufen": ["M"], + "foreordain": ["G", "S", "D"], + "Pooh's": [], + "oscillatingen": [], + "nonperishable": [], + "mourned": ["U"], + "April": ["M", "S"], + "ragbag's": [], + "joint's": [], + "hoardeder": [], + "forthrightliness": [], + "balms": [], + "gorse": ["M"], + "amusementing": [], + "pant's": [], + "Meyers's": [], + "potions's": [], + "delineate": ["G", "N", "X", "D", "S"], + "desalination": ["M"], + "prophetically": [], + "reciters's": [], + "Irving's": [], + "flyspecks": [], + "Nicholson's": [], + "gearwheel": ["S", "M"], + "exiles": [], + "lovelies's": [], + "tollbooth": ["M"], + "barkeepers's": [], + "elucidates": [], + "Roosevelt": ["M"], + "nonesuch'ses": [], + "quick": ["M", "N", "R", "Y", "X", "T", "P"], + "amnestied": [], + "buffet'sed": [], + "beachfront": [], + "Camelot": ["M", "S"], + "nastiest": [], + "romanticism's": [], + "Stengel": ["M"], + "gaucher": [], + "conjures": [], + "basted": [], + "cambiums's": [], + "unconditionally": [], + "Seoul": ["M"], + "myrtles's": [], + "chinstrap's": [], + "segments": [], + "frazzled": [], + "Suwanee's": [], + "Maya's": [], + "nuclear": ["K"], + "API": [], + "USA's": [], + "worktops": [], + "equable": [], + "rubbernecked": [], + "ethyl's": [], + "mystifieds": [], + "factorsed": [], + "concertina'sed": [], + "granules": [], + "Vivaldi's": [], + "improvised": [], + "cruciform": ["S", "M"], + "miscreants's": [], + "legman's": [], + "Faye": ["M"], + "testable": ["C", "F"], + "foreparts": [], + "rebuildsing": [], + "therefrom": [], + "Araucanian's": [], + "subsidiary's": [], + "pheromone": ["M", "S"], + "creel's": [], + "actuating": [], + "Clausewitz": ["M"], + "rodeo'ses": [], + "convener": ["M", "S"], + "whacking's": [], + "possessive": ["S", "M", "Y", "P"], + "expanse'sen": [], + "kindly": ["U", "R", "T"], + "confiscation's": [], + "coonskin's": [], + "Olympia": ["S", "M"], + "Clapton's": [], + "seethed": [], + "vitriolic": [], + "shyster": ["S", "M"], + "oilfield": ["S"], + "strophes": [], + "mammoth": ["M"], + "uptakes's": [], + "Vivian": ["M"], + "fauvists": [], + "fiscally": [], + "oxcart's": [], + "ratifiesers": [], + "recognizer": [], + "termination's": [], + "underwear's": [], + "besetting": [], + "adolescence's": [], + "pleadingly": [], + "mortgageds": [], + "harnesses": [], + "detectives": [], + "virtualization": [], + "regularizeds": [], + "prissiest": [], + "ginger's": [], + "Blatz's": [], + "prerecorded": [], + "girls": [], + "cosmonauts": [], + "fascinateds": [], + "crankshaft's": [], + "tabor's": [], + "neighbored": [], + "gumboil": ["S", "M"], + "cuisine": ["S", "M"], + "Chartism": ["M"], + "stargazing": [], + "condense": ["D", "R", "S", "Z", "G"], + "bonfires": [], + "jiggled": [], + "alert's": [], + "photocopy's": [], + "aggressors": [], + "convokeds": [], + "espieds": [], + "practicums's": [], + "trundleder": [], + "puerility": ["M"], + "ciphereds": [], + "leafleting's": [], + "dissent'sed": [], + "wearier": [], + "candelabras's": [], + "broths": [], + "sanctimony": ["M"], + "predicateds": [], + "hijackingsers": [], + "faddish": ["P"], + "stirrers's": [], + "Xuzhou's": [], + "vest's": [], + "apparatuses": [], + "discreteness": ["M"], + "Chautauqua's": [], + "IOU": ["M"], + "Jones": ["M"], + "finagleder": [], + "pathless": [], + "absorbs": [], + "reactivation": [], + "excuse'sing": [], + "Louisianian'ses": [], + "pitas": [], + "amerceds": [], + "bushiest": [], + "tweeters": [], + "contracted": [], + "lilting": [], + "nethermost": [], + "czarists": [], + "pygmy": ["S", "M"], + "strainers": [], + "whorehouse": ["M", "S"], + "holographic": [], + "rankled": [], + "improviser's": [], + "interleukin's": [], + "Loyang": ["M"], + "tamperersing": [], + "vegetarianism's": [], + "increasingly": [], + "unhealthful": [], + "usher's": [], + "expatriate'sing": [], + "Mann": ["G", "M"], + "lapboard": ["S", "M"], + "airings": [], + "straight'sen": [], + "preensing": [], + "poetess's": [], + "invention'ses": [], + "numerating": [], + "wordage": ["M"], + "surrounding's": [], + "capitalists": [], + "B's": [], + "predicable": [], + "exorbitance's": [], + "belfries": [], + "censurersing": [], + "harebell'ses": [], + "subtler": [], + "damages's": [], + "vicuna": ["M", "S"], + "quip": ["M", "S"], + "sickinged": [], + "downheartedly": [], + "goldbricker": ["M"], + "democracy": ["S", "M"], + "bedevilinged": [], + "inner": [], + "riot'sed": [], + "Zeffirelli": ["M"], + "koshersing": [], + "tenuring": [], + "boded": [], + "faithfulness": ["U", "M"], + "broils": [], + "impersonating": [], + "opiate": ["S", "M"], + "semibreve": ["S"], + "uncultured": [], + "Aries": ["M", "S"], + "embezzlement": ["M"], + "Deanne": ["M"], + "hellion's": [], + "parse": ["D", "R", "S", "G"], + "palish": [], + "regularize": ["D", "S", "G"], + "Spillane's": [], + "overrules": [], + "cranial": [], + "tromped": [], + "cotyledon's": [], + "Moho's": [], + "briefed": [], + "decompose": [], + "czar's": [], + "truthers": [], + "compassed": [], + "commoner'ses": [], + "participation's": [], + "exhorting": [], + "statistic'ses": [], + "ordnance's": [], + "gaffer's": [], + "rhenium's": [], + "plunger's": [], + "depredation": ["S", "M"], + "volatilizeds": [], + "Polk": ["M"], + "stinks's": [], + "attribute'sing": [], + "touchscreen": ["M", "S"], + "historiographer": ["M", "S"], + "acceptances": [], + "traipses's": [], + "ornate": ["Y", "P"], + "Kublai": ["M"], + "teen": ["M", "S"], + "programmable'ses": [], + "autoclave's": [], + "chanteuse's": [], + "interleaved": [], + "impregnatingen": [], + "bloomed": [], + "swat's": [], + "despoiler": [], + "detoxed": [], + "ration": ["M", "D", "G"], + "matriculates": [], + "overlap's": [], + "biodegradeds": [], + "urbanology's": [], + "offensively": [], + "detonatesens": [], + "theologically": [], + "Scotches": [], + "heirs": [], + "Ymir": ["M"], + "commercial'sly": [], + "Scorpius's": [], + "sportsmen": [], + "handed": ["P"], + "forensic'ses": [], + "scupper's": [], + "thrust": ["G", "S", "M"], + "suspender": ["M"], + "evilly": [], + "sidewinders's": [], + "phased": [], + "Kramer": ["M"], + "pessimists's": [], + "add": ["S", "D", "R", "B", "Z", "G"], + "lambastes": [], + "commercializinged": [], + "nympho": ["S"], + "riddle": ["D", "S", "M", "G"], + "grasseds": [], + "excommunicate": ["G", "N", "D", "S", "X"], + "europium's": [], + "airs's": [], + "Rainier's": [], + "briefsed": [], + "wellspring's": [], + "Baptists": [], + "hatchets": [], + "helot": ["S", "M"], + "breather": ["M"], + "functions": [], + "coma": ["M", "S"], + "beggars": [], + "nationalists": [], + "affair": ["M", "S"], + "perfectionists's": [], + "augur": ["G", "M", "D", "S"], + "crashesing": [], + "straightway": [], + "picturinged": [], + "beautification": ["M"], + "hangers": [], + "RIP": [], + "inhibitor": ["S", "M"], + "receptiveness": ["M"], + "hemstitcheds": [], + "postponements's": [], + "j": ["F"], + "bilingual": ["S", "M", "Y"], + "oxymoron": ["M"], + "photographically": [], + "graphing": [], + "cilium's": [], + "ptarmigan": ["M", "S"], + "rickshaw'ses": [], + "semolina": ["M"], + "demand's": [], + "interviews": [], + "sussesing": [], + "ghettos's": [], + "referrers's": [], + "plum's": [], + "dimmest": [], + "Catiline's": [], + "flashed": [], + "jaws": [], + "carnival": ["M", "S"], + "coasterers": [], + "contraband": ["M"], + "consultation's": [], + "matter'sed": [], + "kirsches": [], + "grossesly": [], + "nakedly": [], + "clustersing": [], + "tiddlywinks": ["M"], + "hardlications": [], + "Katmai": ["M"], + "stylus": ["M", "S"], + "Angel's": [], + "obsolesceds": [], + "assured'sly": [], + "hatchet": ["S", "M"], + "marketingable": [], + "YMCA's": [], + "terrine": ["S"], + "counterpoised": [], + "dustpan": ["S", "M"], + "hagiography": ["S", "M"], + "poundage": ["M"], + "scrapper'ses": [], + "Ricardo's": [], + "Tamara's": [], + "courthouse": ["M", "S"], + "oversimplifying": [], + "necessary": ["S", "M"], + "Giovanni's": [], + "Gompers's": [], + "inklings's": [], + "consumables": [], + "dons": [], + "authoreding": [], + "maternally": [], + "impassive": ["Y", "P"], + "knifes": [], + "chubby": ["T", "P", "R"], + "underrated": [], + "devotional's": [], + "leavings's": [], + "fruitlessnessly": [], + "plaster's": [], + "gestured": [], + "acquiringable": [], + "halting": ["Y"], + "recused": [], + "catcalling": [], + "detecting": [], + "periodontics": ["M"], + "whistle's": [], + "costly": ["P", "T", "R"], + "menswear's": [], + "opponent": ["S", "M"], + "enciphering": [], + "powder'sed": [], + "ashtray's": [], + "rebuttal's": [], + "transient's": [], + "conjugation": ["M"], + "abortions": [], + "springily": [], + "discussion's": [], + "forte": ["S", "M"], + "Epstein's": [], + "syntheses": [], + "Bayonne": ["M"], + "honoree's": [], + "spontaneously": [], + "flawlessness's": [], + "Kresge's": [], + "funiculars's": [], + "tows": [], + "intestine'ses": [], + "blazoneding": [], + "assemble": ["A", "E", "G", "S", "D"], + "translucent": ["Y"], + "navigability": ["M"], + "jewelry's": [], + "downrange": [], + "Kierkegaard": ["M"], + "columnists's": [], + "plutocrats": [], + "Blanche": ["M"], + "overconfident": [], + "trey": ["M", "S"], + "communicant'ses": [], + "firescreen": ["S"], + "nonacceptance's": [], + "plaguing": [], + "unionist": ["M", "S"], + "flogging'ses": [], + "protectorate's": [], + "tillersing": [], + "thinly": [], + "xenophobe's": [], + "bagel'ses": [], + "knives": [], + "excitesment": [], + "catchphrases": [], + "musicales": [], + "withdrew": [], + "Hadar's": [], + "filly's": [], + "backrest's": [], + "heavenliest": [], + "disposable's": [], + "Amati": ["M"], + "resplendence": ["M"], + "Yeltsin": ["M"], + "hustings's": [], + "splendider": [], + "operatives": [], + "wallowed": [], + "haste's": [], + "Baedeker'ses": [], + "med": [], + "appositeness": ["M"], + "porosity": ["M"], + "hungriness's": [], + "reliable": ["U"], + "cyclopedia's": [], + "intervening": [], + "timberland": ["M"], + "sic": ["S"], + "polymerize": ["G", "D", "S"], + "bulkiest": [], + "oppressiveness's": [], + "electrons": [], + "breadbox'ses": [], + "byroads": [], + "Griffith's": [], + "Romanesque's": [], + "misunderstanding's": [], + "overruling": [], + "outgrows": [], + "hypnotize": ["G", "D", "S"], + "unperturbed": [], + "Issachar's": [], + "trilbies": [], + "place's": [], + "showgirls": [], + "hasheds": [], + "foolishliness": [], + "amaretto's": [], + "pardon's": [], + "smudges": [], + "lancers": [], + "hungry": ["P", "R", "T"], + "Ararat": ["M"], + "glibbest": [], + "referent's": [], + "Spencer": ["M"], + "reproof": [], + "girlish": ["Y", "P"], + "grasping": [], + "negligent": ["Y"], + "silk's": [], + "turgidly": [], + "druggies's": [], + "slobbering": [], + "masqueradeder": [], + "misdoing": ["M"], + "modded": [], + "vindicateds": [], + "respell": ["S", "G", "D"], + "fizzle's": [], + "cotes": [], + "geniality": ["F", "M"], + "wops": [], + "coif": ["M", "S"], + "fretted": [], + "paginated": [], + "imputation's": [], + "raptness": ["M"], + "Jerusalem's": [], + "invigorated": [], + "checkout": ["S", "M"], + "vaccinating": [], + "sauerkraut": ["M"], + "mermaids": [], + "gossiper's": [], + "purposed": [], + "Aeneas's": [], + "workmanlike": [], + "apposinged": [], + "phosphates": [], + "Princeton": ["M"], + "blackjacks": [], + "bitchily": [], + "riverside's": [], + "goatskin": ["M", "S"], + "Adderley's": [], + "thick's": [], + "inhuman": ["Y"], + "Summers": ["M"], + "federationsed": [], + "Balkhash's": [], + "ponderousliness": [], + "begs": [], + "bossily": [], + "choreographs": [], + "sheerness": ["M"], + "slackerly": [], + "dinghy's": [], + "breakers": [], + "ferniest": [], + "delusion's": [], + "Xian": ["S", "M"], + "grieve": ["Z", "G", "D", "R", "S"], + "Yalta": ["M"], + "bombs": [], + "playoff": ["S", "M"], + "parasol'ses": [], + "interpretations": [], + "smuggle": ["Z", "G", "D", "R", "S"], + "marquisette": ["M"], + "familiarizeds": [], + "cyst'ses": [], + "squeakers": [], + "volitional": [], + "wended": [], + "lumberers": [], + "watchman's": [], + "shelter'sed": [], + "Ahmad's": [], + "obscene": ["R", "Y", "T"], + "Abelson's": [], + "mid": [], + "Sarnoff": ["M"], + "speculateds": [], + "coleus": ["M", "S"], + "minuscule's": [], + "exacerbation's": [], + "Sandy": ["M"], + "hyperlink": ["G", "S", "M", "D"], + "hinds": [], + "dags": [], + "bungle'sers": [], + "accommodated": [], + "lychgates": [], + "bother's": [], + "brandy": ["G", "D", "S", "M"], + "coachesing": [], + "rampancy's": [], + "flawed": [], + "coronas": [], + "strafe": ["M", "G", "D", "S"], + "debuggers": [], + "perseveresing": [], + "Riefenstahl's": [], + "outside's": [], + "manipulation": ["M"], + "chlorine's": [], + "Bergerac": ["M"], + "tar's": [], + "rebroadcast": [], + "frostsed": [], + "anticlines's": [], + "armadillo": ["S", "M"], + "FOFL": [], + "exhorted": [], + "pomade's": [], + "afterglows's": [], + "fledglings": [], + "Lockwood's": [], + "insured's": [], + "insupportable": [], + "spring": ["G", "S", "M"], + "rook'sed": [], + "banyans": [], + "mahogany's": [], + "electorate's": [], + "hexagonal": [], + "warplane": ["M", "S"], + "savants's": [], + "rummer": [], + "poppa": ["M", "S"], + "Monsignor": ["S", "M"], + "subsidy's": [], + "strangles": [], + "staffeding": [], + "spill's": [], + "pacifier's": [], + "fabulous": ["Y"], + "argumentatively": [], + "calcimine": ["D", "S", "M", "G"], + "sultanas": [], + "doctrinal": [], + "episcopacy's": [], + "enchantress's": [], + "changersing": [], + "digesteding": [], + "levelsers": [], + "Cezanne": ["M"], + "dorm'ser": [], + "mossiest": [], + "undemonstrative": ["Y"], + "interpret": ["A", "G", "V", "D", "S"], + "impassibility's": [], + "adsorptions's": [], + "terminators": [], + "investigates": [], + "pendants": [], + "therm's": [], + "mailsers": [], + "saprophyte's": [], + "wingnut": ["S", "M"], + "Bhopal": ["M"], + "blueprinteding": [], + "compulsiveness": ["M"], + "coalescing": [], + "neoclassic": [], + "Runnymede's": [], + "sterile": [], + "shortlistings": [], + "gals": [], + "intercultural": [], + "dosages's": [], + "tomahawk's": [], + "faunas's": [], + "frolicker's": [], + "bawd": ["S", "M"], + "travails": [], + "confiscators's": [], + "gunnysack": ["M", "S"], + "regarding": [], + "dittoed": [], + "Hart's": [], + "league'sing": [], + "poleaxes": [], + "astronaut": ["M", "S"], + "online": [], + "hiragana": [], + "swearword": ["M", "S"], + "bond's": [], + "bleat's": [], + "wt": [], + "Orr": ["M"], + "triangulatingen": [], + "Vaughan's": [], + "thunderbolt": ["S", "M"], + "accoutersing": [], + "inmates's": [], + "Tupperware": ["M"], + "exasperating": ["Y"], + "domesticity": ["M"], + "profiterole's": [], + "intrepidly": [], + "calories": [], + "clopping": [], + "suite": ["S", "M"], + "showroom": ["M", "S"], + "miserably": [], + "careered": [], + "saddling": [], + "currying": [], + "garcon's": [], + "burnt": [], + "Friend's": [], + "hydrodynamics": ["M"], + "rippled": [], + "snoreder": [], + "washcloth": ["M"], + "Lilith": ["M"], + "bungee": ["S", "M"], + "blarney": ["S", "M", "D", "G"], + "thermometric": [], + "taster": ["M"], + "harsh": ["R", "Y", "T", "P"], + "love's": [], + "feasters": [], + "Grover": ["M"], + "arduousness": ["M"], + "crotch's": [], + "disparagingment": [], + "excises": [], + "Astarte": ["M"], + "Aladdin": ["M"], + "absinthe": ["M"], + "informally": [], + "butterfat": ["M"], + "bellboys's": [], + "pollinated": [], + "snakier": [], + "sapphire's": [], + "miscellany": ["S", "M"], + "sonorousness": ["M"], + "tutelage": ["M"], + "amalgamationed": [], + "premier": ["S", "G", "M", "D"], + "announcements": [], + "complected": [], + "prestige's": [], + "brontosaur": ["M", "S"], + "branders": [], + "addict's": [], + "votive": [], + "liberate": ["C", "D", "S", "G", "N"], + "quintets's": [], + "wheat'sen": [], + "prepossessions's": [], + "Nairobi's": [], + "interlard": ["D", "G", "S"], + "officialdom's": [], + "left'ser": [], + "weightier": [], + "accedinged": [], + "bride's": [], + "concentrating": [], + "mooching": [], + "execration": ["M"], + "dismantlement's": [], + "milliliters": [], + "N's": [], + "beholds": [], + "Dot": ["M"], + "silkiness's": [], + "metalanguage": ["M", "S"], + "pesticide'ses": [], + "are": ["S", "M", "B"], + "pedaled": [], + "offset's": [], + "ante": ["S", "M"], + "Mackinaw's": [], + "triplex's": [], + "reveresing": [], + "implied": [], + "discussions's": [], + "Herman's": [], + "Matilda": ["M"], + "Negro's": [], + "leather's": [], + "condemning": [], + "Pincus's": [], + "crispiness": ["M"], + "E's": [], + "chimeder": [], + "octogenarians": [], + "skeptically": [], + "stinger's": [], + "goodbyes": [], + "punchy": ["T", "R"], + "cachepot": ["S", "M"], + "disclaim": [], + "sidetrack'sed": [], + "Babbage's": [], + "keeping's": [], + "Carlo's": [], + "bucklesing": [], + "curleding": [], + "we're": [], + "tails": [], + "gable": ["D", "S", "M"], + "recriminations": [], + "gestatingen": [], + "nuder": [], + "speeders": [], + "unfriendliest": [], + "misplaying": [], + "feltings": [], + "potluck'ses": [], + "temperateness": ["M"], + "Teotihuacan": ["M"], + "avocado": ["S", "M"], + "nutritive": [], + "inmost": [], + "billings": [], + "augmentation": ["M", "S"], + "kiwi'ses": [], + "musher": [], + "conventicle's": [], + "delicate": ["I", "Y"], + "paddock's": [], + "nonfading": [], + "giant": ["S", "M"], + "mayoresses": [], + "Chisinau's": [], + "fruitcake": ["M", "S"], + "losses": [], + "palliated": [], + "hinterland's": [], + "paella'ses": [], + "truces's": [], + "silicons's": [], + "Turkey's": [], + "pars": [], + "faultlessly": [], + "haze'sers": [], + "holdings": [], + "washcloths": [], + "Eugenia": ["M"], + "auditorium": ["S", "M"], + "junkyard's": [], + "odyssey'ses": [], + "needlessly": [], + "stowage's": [], + "newscasts's": [], + "knurled": [], + "abstruseliness": [], + "prodeposition": [], + "Eyre": ["M"], + "brigantine'ses": [], + "flummox": ["D", "S", "G"], + "nephews's": [], + "piing": [], + "personas": [], + "whetstones's": [], + "Bolton": ["M"], + "arachnid'ses": [], + "jotter": ["M", "S"], + "macrons": [], + "mutt": ["M", "S"], + "moistest": [], + "raven'sed": [], + "pageant's": [], + "wheelbases": [], + "forfeitings": [], + "horselaughs": [], + "sidelights": [], + "vi": [], + "dribbler's": [], + "scarified": [], + "nonparticipants": [], + "jamming": [], + "astrological": ["Y"], + "nicotine": ["M"], + "frat": ["M", "S"], + "address's": [], + "materialistic": [], + "game's": [], + "cared": [], + "vexed": [], + "Chatterton": ["M"], + "coalitions": [], + "slide's": [], + "deflation's": [], + "proretest": [], + "spivs": [], + "drivers": [], + "beatable": ["U"], + "critters": [], + "faraway": [], + "birdieing": [], + "ideologies": [], + "vitiation's": [], + "newsman": ["M"], + "ambitions": [], + "bison": ["M"], + "bandwagon": ["S", "M"], + "glade": ["S", "M"], + "estimatingen": [], + "aspirators's": [], + "gearing's": [], + "bailiwicks": [], + "Doolittle's": [], + "anointments": [], + "joy's": [], + "landscaper's": [], + "afternoons": [], + "gimped": [], + "compounds": [], + "tougheneder": [], + "creed's": [], + "sonata's": [], + "airdromes": [], + "philologists": [], + "trustworthier": [], + "Leblanc": ["M"], + "carcinomas": [], + "eighty's": [], + "Tubman's": [], + "rufflying": [], + "interpenetrating": [], + "curatorial": [], + "villages's": [], + "elfish": [], + "tailcoats": [], + "gravel": ["S", "G", "M", "D", "Y"], + "balconies": [], + "mitten": ["M"], + "advocating": [], + "lacuna": ["M"], + "winnower's": [], + "ioctl": [], + "sustenance": ["M"], + "dreamboat": ["M", "S"], + "rebuild": ["S", "G"], + "landingings": [], + "Jillian's": [], + "extricating": [], + "assigner": ["M", "S"], + "triceps'ses": [], + "stonemasons": [], + "Newton": ["M"], + "acquiesced": [], + "ridgepole's": [], + "devil's": [], + "fitfulliness": [], + "osteoarthritis's": [], + "Debby's": [], + "Becket's": [], + "eulogizinged": [], + "anthropologically": [], + "copulated": [], + "worrier": ["M"], + "equivocation's": [], + "encystment's": [], + "quilter's": [], + "novella's": [], + "antiquaries": [], + "ravishesers": [], + "indemnities's": [], + "radiosonde": ["S", "M"], + "sluinged": [], + "iii": [], + "plagiarists's": [], + "Nicholson": ["M"], + "gainsay": ["Z", "G", "R", "S"], + "amplifications": [], + "wallpapereding": [], + "accumulators": [], + "hygrometers's": [], + "gamin's": [], + "Harrison": ["M"], + "cookie's": [], + "sale'ses": [], + "oversubscribing": [], + "trickier": [], + "perfectest": [], + "harking": [], + "inquirersing": [], + "Gog's": [], + "backbiter": ["M"], + "Chopin": ["M"], + "caterwauleding": [], + "trapshooting's": [], + "creeps": [], + "marginally": [], + "enhancement's": [], + "minuscule'ses": [], + "catalpa": ["S", "M"], + "appeasersing": [], + "sweatband": ["M", "S"], + "windrow": ["S", "M"], + "leechesing": [], + "blab": ["S", "M"], + "snorts's": [], + "statement'ses": [], + "dissipating": [], + "unmolested": [], + "Augustinian'ses": [], + "evaluatingen": [], + "ascended": [], + "demote": ["G", "D"], + "oinked": [], + "monasteries": [], + "flyover'ses": [], + "eateries": [], + "Gallic": ["M"], + "embroiderer's": [], + "theosophists's": [], + "campus'ses": [], + "demolishing": [], + "OD": ["S", "M"], + "archbishoprics's": [], + "haggles": [], + "minimalism's": [], + "trollops": [], + "floozy": ["S", "M"], + "grenadine": ["M"], + "electromagnetically": [], + "commute's": [], + "truckeder": [], + "dinguses": [], + "Dietrich's": [], + "chivalrousnessly": [], + "ancienterly": [], + "teach": ["Z", "G", "R", "S", "B", "J"], + "Vatican's": [], + "carrots": [], + "commits": [], + "galvanism": ["M"], + "Cyrillic": ["M"], + "noontide": ["M"], + "paddle'sers": [], + "experiencing": [], + "sequin'sed": [], + "engagingly": [], + "munch": ["G", "D", "S"], + "baser": [], + "torso": ["S", "M"], + "thief": ["M"], + "Barry": ["M"], + "blacks": [], + "stomp's": [], + "broken": ["Y", "P"], + "Gleason": ["M"], + "charbroils": [], + "oblation": ["M"], + "packager's": [], + "Rabat's": [], + "patchiness's": [], + "adroitness": ["M"], + "Che's": [], + "Eskimo's": [], + "repertory": ["S", "M"], + "Waterloo's": [], + "nonpareils": [], + "adaptive": [], + "collision's": [], + "maharishi's": [], + "mainlines": [], + "upstage": ["G", "D", "S"], + "Brady": ["M"], + "gnawed": [], + "transcriptions's": [], + "ceramic's": [], + "rewarding": ["U"], + "truthfulliness": [], + "linoleum's": [], + "protestation's": [], + "Renault": ["M"], + "creativity": ["M"], + "cockatrices": [], + "remunerated": [], + "mineralogist's": [], + "fibrosis": ["M"], + "objection's": [], + "seigneurs's": [], + "hazersing": [], + "rework": [], + "observers": [], + "glareds": [], + "repurchases": [], + "ding'sed": [], + "moneymaker": ["S", "M"], + "united": [], + "cloture's": [], + "tamale's": [], + "calumny": ["S", "M"], + "ghostwritten": [], + "woodwind's": [], + "gardener": ["M"], + "precedents's": [], + "cervical": [], + "flabbily": [], + "Laos's": [], + "topmast": ["S", "M"], + "Justine": ["M"], + "menu": ["M", "S"], + "sabots": [], + "ashier": [], + "multiplier's": [], + "bristling": [], + "municipality": ["S", "M"], + "devoured": [], + "opportunists": [], + "Mongolian's": [], + "deviance": ["M"], + "typewrites": [], + "tussling": [], + "Americas's": [], + "balkiest": [], + "solicits": [], + "conform": ["Z", "B"], + "underdeveloped": [], + "sociopaths": [], + "bargain's": [], + "Algiers": ["M"], + "Dubhe": ["M"], + "honeymooners": [], + "tracksuit": ["S"], + "miscallsing": [], + "airiness's": [], + "unease": ["M"], + "inequalities": [], + "reading's": [], + "Sigismund": ["M"], + "chucking": [], + "smuts": [], + "blackmail": ["M", "D", "R", "S", "Z", "G"], + "waste'sers": [], + "doily": ["S", "M"], + "cyclone'ses": [], + "turtle": ["S", "M"], + "misogamist's": [], + "polyp'ses": [], + "jumpily": [], + "sparrow": ["S", "M"], + "erector": ["M", "S"], + "detoxing": [], + "sandblasts": [], + "neophyte'ses": [], + "spotter'ses": [], + "accenteds": [], + "enter": ["A", "S", "G", "D"], + "worms": [], + "rustproofsed": [], + "opaquinged": [], + "next's": [], + "lechersing": [], + "dwarfing's": [], + "adoringly": [], + "gumshoes": [], + "chatterers": [], + "sheerness's": [], + "nihilistic": [], + "calico's": [], + "mottoes": [], + "swirly": [], + "psittacosis's": [], + "Hamlin's": [], + "colluding": [], + "Tillman": ["M"], + "streameder": [], + "granola": ["M"], + "rethink's": [], + "custodian'ses": [], + "cockiness's": [], + "shipload's": [], + "slideshows": [], + "stereotypical": [], + "handing": [], + "foredoomed": [], + "jeopardizes": [], + "overcame": [], + "digested": ["U"], + "kicking": [], + "snails's": [], + "arrays": [], + "conniversing": [], + "expounder's": [], + "integrity's": [], + "clinic's": [], + "recital's": [], + "candying": [], + "teleworkers": [], + "Washington": ["M"], + "biases": [], + "raciest": [], + "contaminateds": [], + "Galloway's": [], + "legitimatesly": [], + "Kommunizma": ["M"], + "astrolabe's": [], + "badlands": ["M"], + "fetters": [], + "liturgist": ["S", "M"], + "Somalia's": [], + "beechnut's": [], + "Salem": ["M"], + "zeds's": [], + "clawinged": [], + "frenziedly": [], + "distemper": ["M"], + "diminish": ["G", "D", "S"], + "drachma's": [], + "homewreckers": [], + "probate's": [], + "misgovernsed": [], + "droopings": [], + "motorboats": [], + "epees": [], + "Southerner": ["S", "M"], + "phlox's": [], + "wonderland'ses": [], + "topical": ["Y"], + "biffs": [], + "involution's": [], + "recriminates": [], + "absolutist's": [], + "slushiness": ["M"], + "wistfulness's": [], + "curiosities's": [], + "Giraudoux": ["M"], + "incensed": [], + "car's": [], + "crossover's": [], + "squares": [], + "lifesaving's": [], + "burbs": ["M"], + "ml": [], + "thunderer": ["M"], + "DVR's": [], + "expropriates": [], + "outgoing": [], + "counterfeit's": [], + "buntings": [], + "pap's": [], + "transpireds": [], + "crisply": [], + "mania": ["S", "M"], + "drainboard's": [], + "Myrna": ["M"], + "muskies": [], + "valetudinarians": [], + "Marlborough's": [], + "tyrannies": [], + "miniseries": ["M"], + "crusts's": [], + "correspondent": ["S", "M"], + "umbrella's": [], + "popping": [], + "checkbooks": [], + "phalanx'ses": [], + "dragooneding": [], + "hollers": [], + "toolmaker's": [], + "prosecuteds": [], + "stockpile's": [], + "curricular": [], + "mellowness's": [], + "Bertelsmann": ["M"], + "tutti": ["S", "M"], + "billiards's": [], + "maid'sen": [], + "archaeology's": [], + "sheepishness": ["M"], + "nonactive'ses": [], + "Laplace": ["M"], + "chloral": ["M"], + "smallholding": ["S"], + "varlets's": [], + "rhubarb'ses": [], + "Madagascar's": [], + "placating": [], + "fixatingen": [], + "goosestepped": [], + "see's": [], + "use": ["A", "E", "D", "S", "M", "G"], + "encasement's": [], + "distraught": [], + "Ronstadt's": [], + "Rustbelt's": [], + "Ariel's": [], + "Wren": ["M"], + "straitjacketing's": [], + "sarcasms": [], + "buffeteding": [], + "venison": ["M"], + "hillbilly's": [], + "vetoes": [], + "habitualness": ["M"], + "complexities's": [], + "illuminationens": [], + "hoosegows's": [], + "preteen'ses": [], + "resident": ["M", "S"], + "houseplant'ses": [], + "field's": [], + "Tad": ["M"], + "junta's": [], + "uncircumcised": [], + "excretingen": [], + "flourishing": [], + "opal": ["M", "S"], + "orienting": [], + "boilersing": [], + "constituteds": [], + "election": ["A", "M", "S"], + "chicory's": [], + "distract": ["D", "G"], + "frig": ["S"], + "estimating": [], + "provincials": [], + "bumping": [], + "panelings": [], + "sewage": ["M"], + "sociably": [], + "compareds": [], + "dispatch": [], + "acknowledgeds": [], + "myriad": ["S", "M"], + "PMed": [], + "hundredweights": [], + "arrogance": ["M"], + "traverse": ["D", "S", "M", "G"], + "smoochy": [], + "Jerrold's": [], + "skedaddle'sing": [], + "sheikhs": [], + "trinity": ["S", "M"], + "Sims": ["M"], + "enhancement": ["S", "M"], + "soreness's": [], + "Ugandan's": [], + "surviveds": [], + "midrib's": [], + "nonresident": ["M", "S"], + "surrounding": ["M"], + "solderersing": [], + "reposeful": [], + "Gromyko": ["M"], + "grumblingings": [], + "banister": ["S", "M"], + "epsilons": [], + "emigre": ["S", "M"], + "slakeds": [], + "Swedes": [], + "satsumas": [], + "ovum's": [], + "barging": [], + "waylays": [], + "estuaries's": [], + "garrulity": ["M"], + "paroled": [], + "sleepwear's": [], + "misdemeanor's": [], + "yore": ["M"], + "reevaluate": [], + "assuredlies": [], + "logician": ["M", "S"], + "revilesment": [], + "shouldn't": [], + "mitosis": ["M"], + "oaken": [], + "legging": ["M", "S"], + "cartwheeleds": [], + "Fannie's": [], + "bayou'ses": [], + "handovers": [], + "yawing": [], + "subjectively": [], + "gringos": [], + "jocose": ["P", "Y"], + "hallelujah": ["M"], + "unladen": [], + "retirements": [], + "honorarium": ["M", "S"], + "letterhead": ["M", "S"], + "dediscompose": [], + "pains": [], + "luau": ["M", "S"], + "Carey's": [], + "junior": ["M", "S"], + "draftsmen": [], + "saw": ["S", "G", "M", "D"], + "agent": ["A", "M", "S"], + "obit's": [], + "austererly": [], + "Ina's": [], + "Berle": ["M"], + "enthronements's": [], + "crenelatingen": [], + "conductor": ["M", "S"], + "rolls": [], + "nudginged": [], + "prepuce": ["M", "S"], + "Lamar's": [], + "sappy": ["P", "R", "T"], + "cantankerousness's": [], + "gangway": ["M", "S"], + "widowerers": [], + "hiphuggers": [], + "meas": [], + "Multics": [], + "Audra": ["M"], + "caplet": ["M", "S"], + "mistakings": [], + "desiccator's": [], + "lucubration": ["M"], + "fidgeting's": [], + "travailsing": [], + "Luella's": [], + "milkmaid'ses": [], + "minimums": [], + "slander'sers": [], + "goldmines's": [], + "portions": [], + "blissfulness's": [], + "quins": [], + "pacification": ["M"], + "hedonism's": [], + "Hyperion": ["M"], + "cognacs": [], + "tubed": [], + "sublets": [], + "pinko'ses": [], + "artistry": ["M"], + "tunnies": [], + "nebulously": [], + "visualizer": ["M"], + "trouts's": [], + "instigator": ["M", "S"], + "enlistee": ["S", "M"], + "deadlock": ["G", "S", "M", "D"], + "interactions": [], + "neutering": [], + "brawn's": [], + "hellos's": [], + "bilk": ["S", "Z", "G", "D", "R"], + "inversion": [], + "largely": [], + "madder's": [], + "probity's": [], + "inaudibility": [], + "Porfirio's": [], + "chumminess": ["M"], + "predicatively": [], + "obstructiveliness": [], + "Elroy": ["M"], + "shoppinged": [], + "relentsing": [], + "silliers": [], + "moocher's": [], + "tether'sed": [], + "belabor": ["S", "D", "G"], + "barmaid'ses": [], + "doggy": ["R", "S", "M", "T"], + "kibitzeder": [], + "taxonomic": [], + "photos": [], + "transfusion": ["M"], + "cornucopia'ses": [], + "Agassi's": [], + "lecherousness's": [], + "linden'ses": [], + "dockyards": [], + "porpoiseds": [], + "chaff": ["G", "M", "D", "S"], + "previeweder": [], + "marinateds": [], + "Singleton's": [], + "papaya": ["M", "S"], + "pianolas": [], + "yuan's": [], + "sagely": [], + "sexual": ["Y"], + "assayersing": [], + "Raquel": ["M"], + "ringlike": [], + "PARCs": [], + "chiropodist's": [], + "talent": ["S", "M", "D"], + "manometer's": [], + "exhume": ["D", "S", "G"], + "darlings": [], + "extirpationed": [], + "reptiles's": [], + "seatmate": ["S", "M"], + "adulterateds": [], + "thumping": ["M"], + "dabs's": [], + "gourmet": ["S", "M"], + "orchestration": ["M"], + "ave": [], + "inflows": [], + "meetingses": [], + "skyjackeder": [], + "coulombs": [], + "gatekeepers": [], + "boredom's": [], + "spruce's": [], + "cravings": [], + "Kleenex'ses": [], + "spectacular's": [], + "denseness's": [], + "slump": ["S", "M", "D", "G"], + "dereprogrammed": [], + "forsythias": [], + "fluoridation's": [], + "downpour'ses": [], + "Samoan": ["S", "M"], + "raincoats's": [], + "obtaining": [], + "philosopher's": [], + "psychologists": [], + "pocketknives": [], + "cod's": [], + "Cong's": [], + "hamstringing": [], + "spiteful": ["P", "Y"], + "chimera'ses": [], + "delinquent's": [], + "surfeder": [], + "mockingbird's": [], + "begrudgesing": [], + "explaineding": [], + "gatekeeper's": [], + "Jose's": [], + "whimpers": [], + "regresses": [], + "cautions's": [], + "playbill's": [], + "oppositelication": [], + "perturbations's": [], + "yawnersing": [], + "poppa's": [], + "linesings": [], + "petulance": ["M"], + "beat's": [], + "scabbiest": [], + "positron'ses": [], + "squealed": [], + "Vilnius's": [], + "titter": ["S", "G", "M", "D"], + "guarantied": [], + "angler": ["M"], + "tippexinged": [], + "smock's": [], + "badmouths": [], + "advisably": [], + "waist's": [], + "morons's": [], + "dowager'ses": [], + "martins": [], + "outbreaks": [], + "antihistamine's": [], + "ratifies": [], + "induction's": [], + "blooming": [], + "cloudier": [], + "winching": [], + "moltersing": [], + "poshest": [], + "facetiousness": ["M"], + "kilned": [], + "blobs's": [], + "dentifrices's": [], + "falsies's": [], + "bluebottles": [], + "writer": ["M"], + "Pentecostal's": [], + "financeds": [], + "tunas": [], + "singles's": [], + "Kahlua's": [], + "featuring": [], + "torpedoing": [], + "stingings": [], + "Hancock": ["M"], + "enshrinement's": [], + "gypsum's": [], + "Wyoming": ["M"], + "viscountcy's": [], + "credulous": ["I", "Y"], + "stem": ["M", "S"], + "packsaddles": [], + "righteder": [], + "Australopithecus's": [], + "aerateds": [], + "sneezes's": [], + "autoimmunity": ["M"], + "yd": [], + "garrets's": [], + "logger's": [], + "confidentiality": ["M"], + "mellifluousness": ["M"], + "sprayer": ["M", "S"], + "hieroglyphic'ses": [], + "twinkles": [], + "Piaf": ["M"], + "overripe's": [], + "havens's": [], + "shirtfronts's": [], + "cradleds": [], + "bullocks": [], + "Creed": [], + "sensinged": [], + "suzerainty's": [], + "stylus's": [], + "Dillon's": [], + "pianissimos's": [], + "prosaic": [], + "wad'sed": [], + "cites": [], + "Mentholatum": ["M"], + "spinet's": [], + "shorthorns": [], + "staunched": [], + "peradventure's": [], + "metinged": [], + "aspersion's": [], + "singleness": ["M"], + "retaliative": [], + "muckrakes": [], + "entrances's": [], + "hurdling's": [], + "EU": [], + "spottiness": ["M"], + "Xhosa's": [], + "cafeteria's": [], + "pooleds": [], + "hardheartedly": [], + "illus": ["V"], + "crossword'ses": [], + "Gregorian's": [], + "beatify": ["G", "X", "N", "D", "S"], + "moisture": ["M"], + "Slavic": ["M"], + "quahog'ses": [], + "fiddler's": [], + "Bering": ["M"], + "crossbones's": [], + "Evenki": ["M"], + "stadiums": [], + "vignetteds": [], + "lateral'sed": [], + "emanateds": [], + "inconvenience": ["G", "D"], + "hammersings": [], + "amount'sed": [], + "upriver": [], + "snare": ["D", "S", "M", "G"], + "study's": [], + "shares": [], + "jowls": [], + "eugenics's": [], + "deinterminable": [], + "incommoding": [], + "kiln's": [], + "embroil": ["D", "G", "L", "S"], + "simplification": ["M"], + "aftercare's": [], + "colonoscopies": [], + "valuation": ["C", "A", "M", "S"], + "Beefaroni's": [], + "transponders": [], + "metamorphosed": [], + "Hemingway": ["M"], + "blackout's": [], + "irks": [], + "bumps": [], + "dropper": ["S", "M"], + "feminine'sly": [], + "scorches": [], + "detection": ["M"], + "Gondwanaland": ["M"], + "sequestrationed": [], + "Daryl": ["M"], + "blindsides": [], + "stagnatesing": [], + "landaus": [], + "millponds": [], + "rifler's": [], + "menagerie": ["M", "S"], + "Franklin's": [], + "sardonically": [], + "pyramiding": [], + "telephotography's": [], + "dissenter's": [], + "bitter": ["P", "M", "R", "Y", "T", "S"], + "jabbing": [], + "fluorides": [], + "rewarmsed": [], + "Bellow": ["M"], + "magnetite": ["M"], + "fees": [], + "events": [], + "deliverings": [], + "Vang's": [], + "malformed": [], + "auger'ses": [], + "briefing": ["C", "M"], + "cw": [], + "cougar's": [], + "Hugo": ["M"], + "aerospace's": [], + "KGB's": [], + "LSD": ["M"], + "aigrette": ["M", "S"], + "horoscopes": [], + "geographer's": [], + "Athenians": [], + "rookie's": [], + "statuette'ses": [], + "CVS": ["M"], + "formulations": [], + "infantrymen": [], + "docker": [], + "bother'sed": [], + "generations": [], + "Lilian's": [], + "clacked": [], + "faring": [], + "advancement": ["S", "M"], + "lotto's": [], + "kissablers": [], + "bad'sly": [], + "sadomasochists": [], + "grandeur's": [], + "perfumers": [], + "manure'sing": [], + "racinged": [], + "retold": [], + "sugars": [], + "thaw'sed": [], + "misdealt": [], + "clangs": [], + "perukes": [], + "boileder": [], + "kickball": ["M"], + "tussle'sing": [], + "gilderers": [], + "calamitous": ["Y"], + "shantytown's": [], + "slouchy": ["T", "R"], + "bluntness's": [], + "backwoodsman's": [], + "flambeing": [], + "Pissaro": ["M"], + "controllers": [], + "climaxeds": [], + "riotously": [], + "Simone's": [], + "Merlin": ["M"], + "involvement": ["S", "M"], + "borderland's": [], + "horologist'ses": [], + "devastated": [], + "scalds": [], + "occupancy's": [], + "Joseph": ["M"], + "bananas": [], + "enchanter": ["M", "S"], + "vacationer's": [], + "rehearse": [], + "adequateness": ["M"], + "dissenting": [], + "sundae": ["M", "S"], + "hemorrhaging": [], + "disparity": [], + "Baikal": ["M"], + "mescal'ses": [], + "coleslaw's": [], + "role'ses": [], + "rambleder": [], + "sheltereds": [], + "heaversing": [], + "knee's": [], + "millipede's": [], + "dispiritinged": [], + "Altoids": ["M"], + "motorcade": ["M", "S"], + "toboggans's": [], + "testifier's": [], + "mindful": ["Y", "P"], + "sunbeam's": [], + "speeding": ["M"], + "gophers's": [], + "theater": ["S", "M"], + "occupants": [], + "greengage'ses": [], + "Barbarella": ["M"], + "consultancy's": [], + "refutation": ["M", "S"], + "bequeath": ["D", "G"], + "fingertip'ses": [], + "scotchesing": [], + "collocating": [], + "aquatically": [], + "coadjutors": [], + "Patrice": ["M"], + "Kroger's": [], + "PBS": ["M"], + "crackdowns": [], + "campanile": ["S", "M"], + "guider": ["M"], + "puckishliness": [], + "Ave's": [], + "dowers's": [], + "annoying": ["Y"], + "skittish": ["Y", "P"], + "illiterately": [], + "significationing": [], + "acrylic'ses": [], + "Billie": ["M"], + "suzerain'ses": [], + "lamebrained": [], + "atmosphere's": [], + "overprotects": [], + "saving": ["M"], + "divinities's": [], + "titivatingen": [], + "sauciness": ["M"], + "shirtsleeve's": [], + "pushes": [], + "Pinter": ["M"], + "roundelay'ses": [], + "Letitia's": [], + "breasts": [], + "astrolabe": ["S", "M"], + "Coward's": [], + "challenging": [], + "Ty's": [], + "stemless": [], + "dram": ["M", "S"], + "Reynaldo": ["M"], + "Yoknapatawpha": ["M"], + "signpost": ["G", "S", "M", "D"], + "diamondbacks": [], + "flocking's": [], + "hyphenate": ["X", "D", "S", "M", "G", "N"], + "magi's": [], + "Aubrey's": [], + "Mistassini's": [], + "hydrated": [], + "neatly": [], + "seminars": [], + "Lottie": ["M"], + "ejecteding": [], + "Joanne's": [], + "backpedalsed": [], + "whisper": ["M", "D", "R", "S", "Z", "G"], + "demand": ["G", "M", "D", "S"], + "innovator's": [], + "bards's": [], + "Gerard's": [], + "Nigerien": ["M"], + "potability": ["M"], + "smirches": [], + "interninged": [], + "Lesley's": [], + "boats": [], + "narc's": [], + "alibis": [], + "moveder": [], + "crumminess's": [], + "grilled": [], + "encloses": [], + "canceler's": [], + "dykes": [], + "suppressant'ses": [], + "baronetcies": [], + "premixinged": [], + "joyous": ["Y", "P"], + "decolletage": ["S", "M"], + "concertizeds": [], + "articulation's": [], + "antiwar": [], + "usurer": ["S", "M"], + "fatheaded": [], + "flex's": [], + "protractor": [], + "diphthongs": [], + "matchstick'ses": [], + "configurations": [], + "polyclinics": [], + "Ishtar": ["M"], + "lutanist": ["S", "M"], + "deigning": [], + "chainsaw'sed": [], + "pharisee": ["S", "M"], + "Aztec": ["S", "M"], + "gesticulationens": [], + "neglectfulness": ["M"], + "teasel'ses": [], + "notoriety": ["M"], + "Highlands": [], + "attempteding": [], + "gruffly": [], + "demonize": ["G", "D", "S"], + "Madonna": ["S", "M"], + "roast'sed": [], + "percale'ses": [], + "casuallies": [], + "emulsifier": ["M"], + "Rodger'ses": [], + "Shea": ["M"], + "lode's": [], + "profanely": [], + "biker's": [], + "aliment'sed": [], + "wintriest": [], + "vandals": [], + "ablationsing": [], + "goofballs's": [], + "exculpation's": [], + "edibility's": [], + "exhaustion": ["M"], + "manuscript": ["M", "S"], + "groundbreakings": [], + "partake": ["Z", "G", "R", "S"], + "altimeters": [], + "interlining's": [], + "charbroil": ["G", "D", "S"], + "kimonos": [], + "algorithm's": [], + "rusher": ["M"], + "simulcasts": [], + "detention's": [], + "breast'sed": [], + "amortizations": [], + "predestination's": [], + "Sana": ["M"], + "Winnie": ["M"], + "barely": [], + "enormously": [], + "diploids's": [], + "comprehensible": ["I"], + "unchanged": [], + "misidentify": ["G", "D", "S"], + "marginalizes": [], + "notifies": [], + "Haber's": [], + "Yankees": [], + "correspondence": ["S", "M"], + "pebbling": [], + "Rossini": ["M"], + "bulldozer": ["M"], + "forum's": [], + "disputations": [], + "plagiary": ["M"], + "incurable": ["M", "S"], + "sponges": [], + "psalm": ["M", "S"], + "cohabiting": [], + "movements's": [], + "unworthiness": [], + "amend": ["B", "L", "G", "D", "S"], + "combeder": [], + "toehold": ["M", "S"], + "canvas'sing": [], + "thyroid'ses": [], + "competition's": [], + "viking'ses": [], + "creature's": [], + "mistresses": [], + "equestrianism": ["M"], + "breezes": [], + "pluperfects": [], + "Salonika": ["M"], + "imago's": [], + "Rome": ["S", "M"], + "muzzily": [], + "neuter": ["M", "D", "G", "S"], + "overtired": [], + "territory": ["S", "M"], + "ribbed": [], + "administer": ["D", "G", "S"], + "tabulated": [], + "amphibiously": [], + "variance's": [], + "lousiness": ["M"], + "aspirant's": [], + "performances's": [], + "unsanitary": [], + "burr's": [], + "dustcart": ["S"], + "optics": ["M"], + "ratty": ["R", "T"], + "Kingston's": [], + "nitrate'sing": [], + "fountainheads": [], + "cryingings": [], + "plungeder": [], + "subhumans": [], + "doorplates": [], + "peaceable": [], + "spritzed": [], + "spotting": [], + "effecteding": [], + "affords": [], + "kettledrum": ["S", "M"], + "Marlin's": [], + "downgrade'sing": [], + "unsupervised": [], + "lineder": [], + "pinnacle's": [], + "curtaineds": [], + "canalizeds": [], + "insert's": [], + "whirling": [], + "suntans": [], + "parameter'ses": [], + "adjust": ["A", "G", "D", "S", "L"], + "garbanzos": [], + "Ashe's": [], + "birdwatcher's": [], + "streptomycin": ["M"], + "Chisholm's": [], + "softenersing": [], + "extensively": [], + "damming": [], + "Justinian's": [], + "gunfights": [], + "springs's": [], + "chapbook's": [], + "candlers": [], + "shutdowns": [], + "misspellings": [], + "cardamoms": [], + "concourses's": [], + "dockworker": ["M", "S"], + "demijohns": [], + "hatemonger": ["M", "S"], + "allegeds": [], + "libelsers": [], + "Penn": ["M"], + "authoring": [], + "Kwakiutl's": [], + "instituting": [], + "Vitim": ["M"], + "corncob'ses": [], + "unnatural": [], + "cranes's": [], + "sols": [], + "idealistically": [], + "acridness": ["M"], + "beanpole'ses": [], + "backward": ["P", "S", "Y"], + "rickeds": [], + "narroweder": [], + "surceasing": [], + "disturber's": [], + "Travolta's": [], + "fellowmen": [], + "wadge": ["S"], + "settees": [], + "kvetch's": [], + "umbilical": [], + "domiciled": [], + "inscrutability": ["M"], + "furrowsing": [], + "Devon": ["M"], + "signboard": ["M", "S"], + "bragger's": [], + "Bridgman": ["M"], + "washes": [], + "fencing": ["M"], + "Dyson": ["M"], + "caparisoning": [], + "dengue's": [], + "ogress's": [], + "doming": [], + "leafs": [], + "Gantry's": [], + "laminates": [], + "dogcatchers's": [], + "splatters's": [], + "exhilarateds": [], + "Mauro": ["M"], + "Wisconsinite": ["M", "S"], + "commandos's": [], + "Silurian's": [], + "ratted": [], + "confluence'ses": [], + "hogbacks": [], + "ATM's": [], + "bongo": ["M", "S"], + "heck": ["M"], + "hypotenuse's": [], + "gavotte": ["M", "S"], + "adjectivally": [], + "woofing": [], + "plunders": [], + "brontosaurus's": [], + "cataleptic's": [], + "Dhaka": ["M"], + "Hopper's": [], + "finis'ses": [], + "corn's": [], + "safeness": ["M"], + "arrogantly": [], + "client'ses": [], + "takeovers": [], + "mortarboard": ["S", "M"], + "cob": ["S", "M"], + "sternerly": [], + "prince'sly": [], + "fuelings": [], + "aperitif'ses": [], + "noise'sing": [], + "jolter's": [], + "tallow's": [], + "lynchersing": [], + "quarreled": [], + "Baals's": [], + "Jennie's": [], + "connected": ["U"], + "daily's": [], + "stuff'sed": [], + "Edwardian": ["M"], + "riskily": [], + "Huntley's": [], + "legitimate": ["D", "S", "Y", "G"], + "middlebrows": [], + "attackeder": [], + "devilries's": [], + "levy'sers": [], + "pelleted": [], + "boisterousness's": [], + "concourse's": [], + "tobacconists's": [], + "bacterial": [], + "disenchantment": [], + "mitereding": [], + "coerces": [], + "dramatist's": [], + "lode": ["M", "S"], + "livelihoods": [], + "hopelessness's": [], + "bewitchingment": [], + "nausea": ["M"], + "baggage": ["M"], + "forging": ["M"], + "meatiness's": [], + "velocipede'ses": [], + "limbered": [], + "heterogeneously": [], + "antispasmodic": ["M", "S"], + "imperialism": ["M"], + "athlete": ["M", "S"], + "valeting": [], + "generosity's": [], + "vindicator's": [], + "eyebrows": [], + "shareable": [], + "containerizing": [], + "imbroglios": [], + "TX": [], + "expendsable": [], + "flatland": ["M"], + "ornamental": [], + "sinuses": [], + "murderously": [], + "tardiest": [], + "cremation": ["M"], + "Chevalier's": [], + "parlor's": [], + "organelles": [], + "slumlord'ses": [], + "occultism's": [], + "cetacean'ses": [], + "teeters": [], + "crowfoot": ["S", "M"], + "impressionists": [], + "occidentals's": [], + "essences": [], + "churchwoman": [], + "cucumbers's": [], + "scintilla": ["M", "S"], + "Armstrong's": [], + "graph'sed": [], + "sidelining": [], + "optimization'ses": [], + "crustiest": [], + "practitioners's": [], + "scrimshaw's": [], + "cuffeding": [], + "encrustings": [], + "whiskys": [], + "healthy": ["U", "T", "R", "P"], + "mare": ["M", "S"], + "untimeliest": [], + "chauvinistic": [], + "marbleizinged": [], + "graveyard'ses": [], + "entry": ["A", "S", "M"], + "baton": ["M", "S"], + "understandings": [], + "boasting's": [], + "uprightness's": [], + "gained": [], + "sportspeople": [], + "retainsed": [], + "waxeden": [], + "cattinesser": [], + "brick": ["S", "M", "D", "G"], + "pacifists's": [], + "earthenware": ["M"], + "sipper": ["S", "M"], + "detractinged": [], + "bollixes": [], + "cultivable": [], + "gendarme's": [], + "hoaxersing": [], + "unpressed": [], + "jasmine": ["S", "M"], + "banshee's": [], + "parturition": ["M"], + "scribblersing": [], + "auditory": [], + "Dexter": ["M"], + "metatarsi": [], + "systematic": ["U"], + "pentagrams's": [], + "earthy": ["R", "T", "P"], + "spouts": [], + "Gospel'ses": [], + "pliancy": ["M"], + "theists": [], + "attiring": [], + "gaffersing": [], + "emptinessed": [], + "refreshing": ["Y"], + "photocopiersing": [], + "spruceness": ["M"], + "catlike": [], + "religions": [], + "ulcerate": ["X", "D", "S", "G", "N"], + "infiltration": [], + "formula": ["M", "S"], + "boiler": ["M"], + "pippin's": [], + "toleration": ["M"], + "rupture'sing": [], + "woodcarvings": [], + "woodlot's": [], + "robbery's": [], + "Borgia's": [], + "guises": [], + "theocracies's": [], + "officeholder": ["S", "M"], + "midi'ses": [], + "hurt's": [], + "besiegeder": [], + "voluminous": ["Y", "P"], + "cheeping's": [], + "dominated": [], + "southerlies's": [], + "crater": ["M", "D", "G"], + "Mamet": ["M"], + "projects": [], + "Mobutu's": [], + "quadrant'ses": [], + "template": ["S"], + "hydroelectricity's": [], + "privations": [], + "panel": ["S", "G", "J", "M", "D"], + "uncleanest": [], + "donkey's": [], + "upheaval'ses": [], + "amputee's": [], + "hankie": ["M", "S"], + "Maharashtra's": [], + "leanness's": [], + "understatesment": [], + "microbiologist": ["M", "S"], + "landlords": [], + "brushoff": ["S", "M"], + "krypton's": [], + "vasectomy": ["S", "M"], + "tautening": [], + "cabochons's": [], + "exoneration's": [], + "unions's": [], + "repurchase": ["G", "D", "S"], + "Kalb's": [], + "Rayleigh's": [], + "polytheists's": [], + "glass": ["M", "D", "S", "G"], + "pram'ses": [], + "potholes's": [], + "arrow's": [], + "Shelton's": [], + "tomfoolery's": [], + "adornment": ["M", "S"], + "warmth": ["M"], + "noncoms": [], + "Cd": ["M"], + "drain's": [], + "excursion's": [], + "surrey": ["M", "S"], + "overfeeding": [], + "picturesqueness": ["M"], + "reef'sed": [], + "twinks": [], + "vagabonds": [], + "aardvarks's": [], + "bootlegged": [], + "missionary's": [], + "neodymium": ["M"], + "threw": [], + "jerky'sness": [], + "binocular'ses": [], + "pornographically": [], + "jawline": ["S"], + "dividingable": [], + "shoddiest": [], + "overlaps's": [], + "plasheds": [], + "organization's": [], + "internships": [], + "wineglass": ["M", "S"], + "battle": ["L", "D", "R", "S", "M", "Z", "G"], + "aphasic'ses": [], + "earthlier": [], + "godparent's": [], + "touring": [], + "ferreting": [], + "trebles": [], + "Kama's": [], + "simulcasting": [], + "jousts": [], + "ahoy": [], + "conjunctive": ["S", "M"], + "interrupteder": [], + "Nathans's": [], + "tailed's": [], + "strained": [], + "appears": [], + "rifling's": [], + "procedures": [], + "fluky": ["R", "T"], + "runaway's": [], + "Independence's": [], + "lacework's": [], + "matchstick's": [], + "foistsed": [], + "grotesques": [], + "saltcellars's": [], + "Cinerama": ["M"], + "cosmologies": [], + "longhair'ses": [], + "USCG": [], + "pundits": [], + "Marilyn": ["M"], + "prickle'sing": [], + "gimpy": [], + "Asiago": [], + "limeds": [], + "drafts": [], + "billycans": [], + "debutantes's": [], + "caballero's": [], + "underworld's": [], + "proselytism's": [], + "impertinences": [], + "kittenish": [], + "self": ["M"], + "bombing": [], + "USPS": [], + "Athene": ["M"], + "fan's": [], + "Kishinev": ["M"], + "layover": ["M", "S"], + "obeisance's": [], + "Purana's": [], + "minus's": [], + "stepparents": [], + "sphere": ["S", "M"], + "Kimberley's": [], + "snarlingly": [], + "Tide": ["M"], + "micrometeorite": ["S", "M"], + "spitted": [], + "visions's": [], + "bobbysoxers": [], + "pronouncements's": [], + "asininities": [], + "feint's": [], + "leadsers": [], + "BM": ["M"], + "tirednesser": [], + "nonparallels": [], + "broomsticks": [], + "brainteasers": [], + "unsay": [], + "Varanasi's": [], + "overstatements": [], + "shortstop": ["M", "S"], + "delicateness": ["M"], + "rumpleds": [], + "Cornish": ["M", "S"], + "dongs": [], + "turfeds": [], + "autocrat's": [], + "housemistresses": [], + "excuse": ["D", "S", "B", "M", "G"], + "reprint": [], + "Rosella's": [], + "indemnifiesens": [], + "dimming": [], + "fishbowl": ["S", "M"], + "videophone": ["M", "S"], + "rehabilitative": [], + "lesions": [], + "fatalist": ["S", "M"], + "disenfranchise": [], + "Sanskrit": ["M"], + "watchablers": [], + "tautness's": [], + "harpy": ["S", "M"], + "Carlyle": ["M"], + "ladies's": [], + "kissing": [], + "vesicle's": [], + "husband": ["G", "M", "D", "S"], + "geophysics's": [], + "Clausewitz's": [], + "organelle'ses": [], + "inspects": [], + "Chiantis": [], + "inheriting": [], + "Loyola": ["M"], + "Baku's": [], + "solvent'ses": [], + "Wyomingites's": [], + "marketing": ["M"], + "hotelier'ses": [], + "incivility": [], + "counterfeit": ["Z", "G", "M", "D", "R", "S"], + "equivocalness": ["M"], + "roustabouts's": [], + "gush'sed": [], + "tendrils's": [], + "transubstantiation": ["M"], + "reimpose": [], + "tabulations": [], + "mega": [], + "Dem": ["G"], + "unite": ["A", "E", "G", "S", "D"], + "psychotherapist's": [], + "collie's": [], + "beastliness's": [], + "fibber's": [], + "officious": ["P", "Y"], + "audiometer's": [], + "Rodrigo": ["M"], + "deliciousnessly": [], + "geosynchronous": [], + "eight's": [], + "jackknife'sing": [], + "blighter": [], + "scurvy's": [], + "unsightly": ["P", "T"], + "DMD's": [], + "tailpipes": [], + "Brittany": ["S", "M"], + "originating": [], + "smart'sed": [], + "ramifiesens": [], + "aridity": ["M"], + "Mg": ["M"], + "famishesing": [], + "plotting": [], + "grimier": [], + "spongersing": [], + "bans": [], + "offered": [], + "carports's": [], + "matriarch's": [], + "knitters's": [], + "geeks": [], + "obscurantism": ["M"], + "Johannesburg's": [], + "hiveds": [], + "anticlimactic": [], + "Welshmen's": [], + "entombed": [], + "die's": [], + "chowing": [], + "regicides": [], + "cavalryman's": [], + "ouster's": [], + "Golgi's": [], + "Texan'ses": [], + "southwester's": [], + "minatory": [], + "bullfighterers": [], + "outfield's": [], + "muse'sing": [], + "magicking": [], + "thence": [], + "historically": [], + "yews's": [], + "grubstake's": [], + "Mason's": [], + "appreciators": [], + "obligation": ["M"], + "headbutts": [], + "improvident": ["Y"], + "oven'ses": [], + "adept's": [], + "barbarities": [], + "gunpoint": ["M"], + "augers": [], + "burring": [], + "illegitimacy's": [], + "vermicelli's": [], + "bullhorn'ses": [], + "simian": ["M", "S"], + "Oedipal": ["M"], + "compositors": [], + "sparrowhawk": ["S"], + "Frisian": ["M", "S"], + "visual'sly": [], + "cheesiness": ["M"], + "mackinaws": [], + "bevvies": [], + "tram": ["M", "S"], + "Reverend": ["M"], + "sarcomas": [], + "discourteous": [], + "Cochin": ["M"], + "parlay'sed": [], + "transliterations": [], + "shallows": [], + "whirlybird": ["S", "M"], + "mascot": ["M", "S"], + "scatology": ["M"], + "aphasia's": [], + "designating": [], + "chortles": [], + "jaybird": ["S", "M"], + "solemnizesing": [], + "commandeeringed": [], + "uneven": ["Y"], + "boomeranging": [], + "simmer's": [], + "bobwhites": [], + "cloverleafs's": [], + "underscoring": [], + "creaks's": [], + "krone": ["R", "M"], + "usurper": ["M"], + "trod": ["A", "U"], + "woolly's": [], + "fissile": [], + "Paleogene's": [], + "modulateds": [], + "nimby": [], + "patrol'ses": [], + "literates": [], + "Rastafarian's": [], + "bundled": [], + "allergens's": [], + "valuable": ["M", "S"], + "Holcomb": ["M"], + "notelets": [], + "engorginged": [], + "corgi's": [], + "conductivity": ["M"], + "ff": [], + "stuff": ["G", "S", "M", "D", "J"], + "hostler's": [], + "counter's": [], + "yea": ["S", "M"], + "dealsings": [], + "spooky": ["R", "P", "T"], + "onward": [], + "kopeck'ses": [], + "prophesying": [], + "detach": ["B", "L", "G", "D", "S"], + "Cantu": ["M"], + "compilation": ["S", "M"], + "Jeff's": [], + "avatars": [], + "bisection's": [], + "spiceds": [], + "basswoods": [], + "Xenakis's": [], + "enchantment's": [], + "diffusive": [], + "lavs": [], + "Biscayne": ["M"], + "Liliana": ["M"], + "Smollett's": [], + "marksman": ["M"], + "Les's": [], + "progressing": [], + "lewd": ["R", "Y", "P", "T"], + "Melchior": ["M"], + "equiv": [], + "resurrecting": [], + "dishwasher'ses": [], + "glades's": [], + "interval's": [], + "iridescence": ["M"], + "mayflower'ses": [], + "adventurists": [], + "handles": [], + "Marquette": ["M"], + "leaps": [], + "draftier": [], + "japan's": [], + "eclipse": ["D", "S", "M", "G"], + "oversupplies": [], + "bawl's": [], + "Tami": ["M"], + "clobbers's": [], + "solipsism": ["M"], + "abrogator's": [], + "instillation": ["M"], + "Glass's": [], + "pothering": [], + "throbbing": [], + "battens": [], + "fa's": [], + "turtleneck'sed": [], + "neaps": [], + "prokaryotic": [], + "sapsucker's": [], + "legalisms": [], + "chitterlings": ["M"], + "dauntlessly": [], + "kilning": [], + "Hun's": [], + "subjection": ["M"], + "willing": ["U", "P", "Y"], + "natter's": [], + "pooh's": [], + "Re's": [], + "barers": [], + "nonfreezing": [], + "alphabetizations": [], + "ravens": [], + "clumsier": [], + "allure's": [], + "erbium's": [], + "mystically": [], + "stabilization": ["C", "M"], + "Christianize": [], + "hover": ["S", "G", "D"], + "Epcot's": [], + "caricature's": [], + "inattentive": [], + "horny": ["T", "R"], + "sandbagging": [], + "resold": [], + "bridle": ["D", "S", "M", "G"], + "negligibly": [], + "rhymesters": [], + "dankerly": [], + "interviewee'ses": [], + "vessels": [], + "disembowelsed": [], + "telemeters": [], + "offspring's": [], + "waltz's": [], + "outmaneuveringed": [], + "grills": [], + "entailed": [], + "fonder": [], + "encrusteding": [], + "disgusting": ["Y"], + "expatiating": [], + "subeditors": [], + "whine's": [], + "sedulously": [], + "negligence": ["M"], + "Pusan's": [], + "cameraman's": [], + "Chukchi": ["M"], + "boodle": ["M", "S"], + "Allegra": ["M"], + "ma": ["S", "M", "H"], + "blowgun's": [], + "incarnatingen": [], + "alleviate": ["D", "S", "G", "N"], + "Elmer": ["M"], + "wholly": [], + "speedboats's": [], + "Fujitsu": ["M"], + "fashioner": ["M"], + "bask": ["S", "G", "D"], + "virgin": ["M", "S"], + "perceptually": [], + "Lahore's": [], + "sequins": [], + "belle'ses": [], + "motorists's": [], + "jock'ses": [], + "Austen's": [], + "wretch'ses": [], + "Marxism": ["S", "M"], + "Algonquin'ses": [], + "boor": ["S", "M"], + "tulips": [], + "belfry's": [], + "CV": [], + "palate'sable": [], + "porkiers": [], + "apologized": [], + "emu": ["S", "M"], + "escalated": [], + "iv": ["U"], + "turmoil": ["M", "S"], + "babbled": [], + "bejewels": [], + "earshot's": [], + "gigabyte'ses": [], + "administering": [], + "sleekeder": [], + "lessors": [], + "Singaporean": ["S", "M"], + "potholeder": [], + "dispel": ["S"], + "Azazel's": [], + "complexion": ["M", "D", "S"], + "knellsing": [], + "conventionalizinged": [], + "Hussein": ["M"], + "ta": [], + "waterbird": ["S", "M"], + "innateness": ["M"], + "developmental": ["Y"], + "fiscal's": [], + "clue's": [], + "profanation'ses": [], + "framers": [], + "climbers": [], + "they'll": [], + "slit": ["M", "S"], + "telecommunications's": [], + "refuse": [], + "hearthstone's": [], + "Hinduisms's": [], + "mortgagee's": [], + "stagecraft": ["M"], + "marabous": [], + "yaws's": [], + "hooding": [], + "hogging": [], + "bilberries": [], + "reface": [], + "national": ["M", "Y", "S"], + "pewee": ["S", "M"], + "democratization": ["M"], + "hemisphere's": [], + "savages's": [], + "inkblots": [], + "nonabsorbent": ["S", "M"], + "categorizinged": [], + "actresses": [], + "Garibaldi": ["M"], + "tailless": [], + "colloquy": ["M"], + "scrapings": [], + "Soddy": ["M"], + "twisteding": [], + "tolerating": [], + "shaftsing": [], + "rightsized": [], + "Colfax's": [], + "Letha's": [], + "fief": ["M", "S"], + "mole'ses": [], + "interveninged": [], + "fax": ["G", "M", "D", "S"], + "emotes": [], + "evilness": ["M"], + "absorbing": ["Y"], + "uppercut'ses": [], + "thickness'ses": [], + "premier's": [], + "pastorate'ses": [], + "observes": [], + "ventilators's": [], + "nineties's": [], + "formulatesing": [], + "humanities": ["M"], + "chamois": ["M"], + "optician": ["S", "M"], + "Dartmoor": ["M"], + "chiropractors": [], + "dolor": ["M"], + "Diann": ["M"], + "silhouetted": [], + "drippy": ["T", "R"], + "circa": [], + "threnodies's": [], + "quickstep'ses": [], + "hazingsed": [], + "packsaddle's": [], + "Thackeray's": [], + "photosynthesize": ["G", "D", "S"], + "electrifieder": [], + "Penelope's": [], + "Carlene's": [], + "Basie's": [], + "Butler": ["M"], + "headlines": [], + "stones": [], + "cornflakes": ["M"], + "amoral": ["Y"], + "misdirection's": [], + "liquorings": [], + "Gentoo": ["M"], + "collate": ["D", "S", "X", "G", "N"], + "snuffbox's": [], + "scabbiness": ["M"], + "guess'sed": [], + "westerly": ["S", "M"], + "Gilchrist's": [], + "innsing": [], + "sickness'ses": [], + "flustered": [], + "aura's": [], + "trapeziums's": [], + "windsurfs": [], + "downstate": ["M"], + "terrestrials": [], + "gingering": [], + "napalm'sed": [], + "dishpans's": [], + "torch's": [], + "Esau": ["M"], + "Lawanda": ["M"], + "separateness's": [], + "glove": ["D", "S", "M", "G"], + "miscellanies's": [], + "compare": ["B", "D", "S", "M", "G"], + "incompletely": [], + "lingering": ["Y"], + "Jayne": ["M"], + "splayfoot'sed": [], + "cotyledons": [], + "mandrills": [], + "sucking": [], + "shoveled": [], + "validness": ["M"], + "cicada's": [], + "voluptuousness's": [], + "hyphening": [], + "perforating": [], + "amplificationsers": [], + "internalizeds": [], + "hobbles": [], + "acetyl": [], + "Heifetz's": [], + "contentiousness's": [], + "manipulateds": [], + "Marmara's": [], + "restrung": [], + "sicknessens": [], + "watercolor": ["M", "S"], + "impenetrable": [], + "llama's": [], + "soulful": ["Y", "P"], + "reprise'sing": [], + "footprint's": [], + "rebuttals": [], + "scar's": [], + "triangles": [], + "tantalizer's": [], + "filing's": [], + "precluded": [], + "crawly's": [], + "Jude": ["M"], + "Cheyenne's": [], + "streetlight": ["S", "M"], + "lactates": [], + "deadwood's": [], + "ulnar": [], + "fingerprint'sed": [], + "geodesy": ["M"], + "simonized": [], + "heightenses": [], + "solvers's": [], + "concurs": [], + "parasitically": [], + "armistices's": [], + "tossups": [], + "ethos's": [], + "lifeboat'ses": [], + "raffishly": [], + "result": ["G", "S", "M", "D"], + "stimulates": [], + "Osiris": ["M"], + "portiere": ["M", "S"], + "ointment's": [], + "rockiest": [], + "Percy": ["M"], + "Bowditch's": [], + "trashed": [], + "carpentering": [], + "thunderhead's": [], + "supersaturating": [], + "Sheryl": ["M"], + "ovation": ["M"], + "scurry": ["G", "D", "S", "M"], + "chanceries": [], + "ghettos": [], + "reviler": ["M"], + "Huang's": [], + "gingers": [], + "partied": [], + "revocable": [], + "angering's": [], + "philologist's": [], + "subbasements": [], + "stormed": [], + "sporran": ["S"], + "hinged": [], + "cajolers": [], + "life's": [], + "plot's": [], + "bobbin": ["M", "S"], + "dicotyledon": ["M", "S"], + "Vince": ["M"], + "detergents's": [], + "monster's": [], + "elasticizesing": [], + "spreads's": [], + "distaffs's": [], + "salesperson'ses": [], + "harm": ["M", "D", "G", "S"], + "hod's": [], + "flamingo's": [], + "wanglersing": [], + "cellophane": ["M"], + "feat": ["M", "S"], + "Acuff's": [], + "proscribeding": [], + "urbanizing": [], + "pillager": ["M"], + "Peter's": [], + "parricides": [], + "bowdlerization'ses": [], + "hallucinogenics": [], + "decathlons's": [], + "doorjamb": ["S"], + "lacquer": ["G", "M", "D", "S"], + "slimness": ["M"], + "nit's": [], + "pincer": ["M", "S"], + "heckler": ["M"], + "comes": [], + "vitrify": ["G", "N", "D", "S"], + "targeted": [], + "innovator": ["M", "S"], + "ranklies": [], + "reconfigured": [], + "avoidsed": [], + "parsimony": ["M"], + "alike": ["U"], + "moralizing": [], + "borderland": ["M", "S"], + "flukier": [], + "reapinged": [], + "pinny": ["S"], + "Polaris's": [], + "Colette": ["M"], + "orphanage": ["M", "S"], + "pricklies": [], + "trendy": ["R", "S", "M", "P", "T"], + "Prut's": [], + "scourge": ["D", "S", "M", "G"], + "bitchiness": ["M"], + "Strong's": [], + "Nobel's": [], + "thallium": ["M"], + "unrestricted": [], + "heaths": [], + "interlopersing": [], + "outracing": [], + "Zuni's": [], + "extramural": [], + "scale's": [], + "art's": [], + "tourist'ses": [], + "ripen": ["D", "G"], + "Dyer's": [], + "Copacabana's": [], + "backslappers": [], + "Mubarak": ["M"], + "rasped": [], + "expedients's": [], + "Bloch's": [], + "corridor": ["S", "M"], + "manufacture'sers": [], + "exaggerated": ["Y"], + "helicopter's": [], + "oglersing": [], + "turbofan": ["S", "M"], + "cosmetician'ses": [], + "insulatingen": [], + "perturb": ["D", "G", "S"], + "elephantiasis's": [], + "hideouts": [], + "treasureder": [], + "gracelessness's": [], + "souvenir": ["S", "M"], + "causeways": [], + "seaward": ["M", "S"], + "lilacs's": [], + "misspoken": [], + "goner": ["M"], + "fireguard": ["S"], + "curable": [], + "commonnesser": [], + "outfitters": [], + "fajitas's": [], + "VHS": [], + "tall": ["T", "R", "P"], + "fellatio's": [], + "tricentennial": ["M", "S"], + "stateswomen": [], + "Maghreb": ["M"], + "noncomplying": [], + "amok": [], + "cod": ["S", "M"], + "barter": ["Z", "G", "S", "M", "D", "R"], + "Roku": ["M"], + "massacre's": [], + "rebuff": [], + "gristle": ["M"], + "Calvinist'ses": [], + "climacteric's": [], + "commas's": [], + "Quaoar's": [], + "citronella's": [], + "monogrammed": [], + "Iroquois's": [], + "Callas": ["M"], + "collaboratively": [], + "tequila's": [], + "crapshooters": [], + "Sarawak's": [], + "funniers": [], + "bimetallics's": [], + "drainersing": [], + "prognostication": ["M"], + "enslaving": [], + "hocked": [], + "superficially": [], + "viziers": [], + "underbellies's": [], + "loonie": ["M"], + "inhumanity": [], + "Decker": ["M"], + "stiffest": [], + "milliard'ses": [], + "melon's": [], + "antirrhinum": ["S"], + "unloose": [], + "dogcarts": [], + "thimbles": [], + "fascist": ["M", "S"], + "flanneling's": [], + "welshed": [], + "obsolescing": [], + "forebear'ses": [], + "dreams's": [], + "landfall's": [], + "railing's": [], + "lemonade": ["S", "M"], + "rivalry's": [], + "collie": ["R", "S", "M", "Z"], + "bliss's": [], + "greasiness's": [], + "scurfy": [], + "raped": [], + "exuberance": ["M"], + "squabs's": [], + "shrimping": [], + "perniciously": [], + "markup": ["M", "S"], + "uncomplimentary": [], + "ruminatively": [], + "stopgaps's": [], + "subsets's": [], + "croissant's": [], + "chicories": [], + "rasps": [], + "imminence's": [], + "hum": ["S", "M"], + "if's": [], + "scoundrels": [], + "diploid's": [], + "shiftlessness's": [], + "comeback's": [], + "anxiousliness": [], + "emendsed": [], + "venturousness's": [], + "Yangon's": [], + "Homeric's": [], + "Damon's": [], + "rhetoricians": [], + "benched": [], + "schlepped": [], + "Dominicans": [], + "stiffed": [], + "Cary's": [], + "advisory's": [], + "abattoir's": [], + "galumph": ["D", "G"], + "countrywomen": [], + "Slovenian": ["M", "S"], + "crib'ses": [], + "punster": ["S", "M"], + "jamboree'ses": [], + "elasticizeds": [], + "Kaifeng": ["M"], + "anchorage's": [], + "purplish": [], + "Irishmen's": [], + "railroadersing": [], + "goddess'ses": [], + "anatomizing": [], + "payoff's": [], + "Delia's": [], + "clownishly": [], + "Amundsen": ["M"], + "hypnotist's": [], + "debauchery's": [], + "Whittier": ["M"], + "overridden": [], + "disenchant": [], + "Hertzsprung's": [], + "quatrains": [], + "Corneille's": [], + "baler's": [], + "absorptive": [], + "mistletoe": ["M"], + "la's": [], + "apologia": ["S", "M"], + "syncope's": [], + "snowflake": ["S", "M"], + "sacroiliacs": [], + "anomaly's": [], + "bumptiousness's": [], + "credit'sed": [], + "signorina's": [], + "marinadeds": [], + "minnesinger's": [], + "countervailed": [], + "caesura": ["S", "M"], + "Hester's": [], + "misspelling": ["M"], + "gravingness": [], + "Lizzie": ["M"], + "cannery": ["S", "M"], + "dazzle": ["M", "Z", "G", "D", "R", "S"], + "snuggled": [], + "mobilizesing": [], + "gunrunner'ses": [], + "ransacksing": [], + "canteen's": [], + "limpidly": [], + "dodder": ["S", "M", "D", "G"], + "lattice'sed": [], + "hosteling": [], + "bondholder": ["M", "S"], + "analyzes": [], + "malign": ["D", "S", "G"], + "unconsumed": [], + "extrapolationsing": [], + "criminals": [], + "lecher's": [], + "sculptinged": [], + "uni": [], + "paddy": ["S", "M"], + "exemplificationsen": [], + "Hays's": [], + "poplin's": [], + "achievablement": [], + "launderer's": [], + "bewilderinged": [], + "skinny's": [], + "malingersed": [], + "negotiates": [], + "Georgina's": [], + "mismatch": ["G", "M", "D", "S"], + "schussing": [], + "landowning": ["S", "M"], + "enamel's": [], + "Quixote": ["M"], + "monologues": [], + "Heller's": [], + "sorrowfulliness": [], + "roach's": [], + "previously": [], + "verdigris'sed": [], + "recognizesing": [], + "retirement's": [], + "synceds": [], + "morose": ["Y", "P"], + "rosebuds's": [], + "skit": ["M", "S"], + "curtsying": [], + "trail'sed": [], + "printable": ["U"], + "mintiest": [], + "Niobe's": [], + "prions": [], + "craziness": ["M"], + "officiallies": [], + "accompaniment'ses": [], + "Karen's": [], + "carefuller": [], + "pirouette's": [], + "laudanum's": [], + "addled": [], + "kielbasi": [], + "kneelsing": [], + "fumigators": [], + "impoverishes": [], + "averring": [], + "Collier": ["M"], + "bugle's": [], + "pregame": ["S", "M"], + "richness's": [], + "presumable": [], + "identification's": [], + "toning": [], + "custards": [], + "horn": ["M", "D", "S"], + "corpuscles": [], + "infancy": ["M"], + "glut'sen": [], + "paramilitary": ["S", "M"], + "abandonment's": [], + "baffler's": [], + "Ru's": [], + "elegance's": [], + "roughness": ["M"], + "dodders": [], + "Tilsit": ["M"], + "unfixeds": [], + "thousandths": [], + "yolk'sed": [], + "sublimatingen": [], + "thereof": [], + "chevaliers's": [], + "fallowing": [], + "moderator": ["S", "M"], + "eschew": ["S", "D", "G"], + "butted": ["A"], + "Rumsfeld": ["M"], + "paralysis": ["M"], + "knot'ses": [], + "Zollverein": ["M"], + "antiquaries's": [], + "bushwhacked": [], + "flayings": [], + "Tennyson": ["M"], + "magnifiesen": [], + "aerobics": ["M"], + "foreshadows": [], + "pacey": [], + "curtness": ["M"], + "unrefined": [], + "swinish": [], + "haired": [], + "considerations": [], + "empirical": ["Y"], + "palate's": [], + "oxide's": [], + "militarism's": [], + "sailplane's": [], + "industrializeds": [], + "Debussy's": [], + "moneymaker's": [], + "dueling": [], + "murderess'ses": [], + "cowpunchers": [], + "magnified": [], + "murrain": ["M"], + "accompanist's": [], + "strolls": [], + "propitiating": [], + "wranglings": [], + "periodontists": [], + "backpacked": [], + "Kamchatka's": [], + "schmaltzier": [], + "van": ["S", "M"], + "mantle": ["E", "G", "D", "S"], + "crumple": ["M", "G", "D", "S"], + "amputateds": [], + "toffee's": [], + "haphazard": ["Y", "P"], + "waggishness": ["M"], + "glances's": [], + "rating": ["M"], + "entitlements's": [], + "cotangent's": [], + "sadhu": ["S"], + "peacock'ses": [], + "modified": ["U"], + "FMs": [], + "coaling": [], + "overate": [], + "urinals": [], + "gorgeously": [], + "underwhelming": [], + "probability": ["S", "M"], + "Caldwell": ["M"], + "inculpatesing": [], + "transacting": [], + "finisher'ses": [], + "amorphousnessly": [], + "Hermaphroditus": ["M"], + "unfortunate'ses": [], + "yoking": [], + "razes": [], + "peopled": [], + "lacteal": [], + "toils": [], + "nonsmokers": [], + "Cassius": ["M"], + "paternalist": ["S"], + "thoroughfare": ["M", "S"], + "vacateds": [], + "nobodies": [], + "misunderstandings": [], + "wailerers": [], + "ministering's": [], + "outtake": ["M", "S"], + "abnormalities's": [], + "congealeding": [], + "Elliot": ["M"], + "entitlement's": [], + "promising": ["Y"], + "iterates": [], + "crisper": [], + "Issac": ["M"], + "gulleds": [], + "naught": ["M", "S"], + "ravages": ["M"], + "itself": [], + "embezzler": ["M"], + "garter": ["S", "M"], + "Garrison": ["M"], + "Cornell": ["M"], + "freeholds": [], + "haws": [], + "uninitialized": [], + "recruits": [], + "ententes's": [], + "sadomasochist": ["M", "S"], + "shrub": ["M", "S"], + "imitating": [], + "cling's": [], + "dandelions's": [], + "staged": [], + "undertook": [], + "Hausa": ["M"], + "postpartum": [], + "abjuring": [], + "Avogadro": ["M"], + "unmistakably": [], + "Odin's": [], + "imploringly": [], + "submersing": [], + "nonnatives": [], + "subcontract'sed": [], + "heinous": ["Y", "P"], + "straightener": ["M"], + "nefariousness's": [], + "Nunavut": ["M"], + "fruity": ["T", "P", "R"], + "unclassified": [], + "gasohol's": [], + "italic": ["S", "M"], + "tattler's": [], + "upholdersing": [], + "PST's": [], + "ideologists's": [], + "pilesings": [], + "Molnar's": [], + "leveraging": [], + "narcotizinged": [], + "shoplifterers": [], + "sufferance's": [], + "iPhone's": [], + "Ramayana's": [], + "molesterers": [], + "sounder's": [], + "reflectsed": [], + "voraciousness": ["M"], + "shortchangesing": [], + "hamburger's": [], + "petcocks": [], + "aftershaves": [], + "interrogators's": [], + "techniques": [], + "endowment'ses": [], + "boarder's": [], + "nonuser's": [], + "boat'sed": [], + "overspends": [], + "preteen": ["M", "S"], + "mortificationing": [], + "punker": [], + "VHF": ["M"], + "suitcase's": [], + "credentialing": [], + "accounteds": [], + "pencils": [], + "postdocs": [], + "Gibbs's": [], + "sidecars": [], + "stoning": [], + "Lilliput's": [], + "factitious": [], + "teal": ["M", "S"], + "ringworm's": [], + "tutors's": [], + "collieries": [], + "clemency's": [], + "chronologists": [], + "mourning's": [], + "Callaghan's": [], + "Pilate'ses": [], + "pumpers": [], + "vigor": ["M"], + "audiologists": [], + "poetic": ["S"], + "burlesqueds": [], + "bivouac's": [], + "purveys": [], + "cogitate": ["D", "S", "X", "G", "N", "V"], + "salter": [], + "vivisectionists": [], + "tiredness's": [], + "Pol": ["M", "Y"], + "shortened": [], + "truncated": [], + "receipted": [], + "bustles": [], + "uncased": [], + "sympathizeder": [], + "pranceder": [], + "sullenest": [], + "loofah": ["M"], + "childless": ["P"], + "ascertain": ["G", "D", "S", "B", "L"], + "brightness's": [], + "bassist": ["M", "S"], + "Lora's": [], + "Josephson": ["M"], + "Cooper": ["M"], + "drawbridge'ses": [], + "undermining": [], + "patine": [], + "Gehrig": ["M"], + "bitch's": [], + "wealthier": [], + "Peterson": ["M"], + "Lent'sen": [], + "brocadeds": [], + "songfest": ["S", "M"], + "Purcell": ["M"], + "tiresomeness": ["M"], + "Earlene": ["M"], + "ferried": [], + "painless": ["P", "Y"], + "cavorted": [], + "Godhead's": [], + "Alejandro's": [], + "stinkbugs": [], + "ascent's": [], + "fudgeds": [], + "joyfulness": ["M"], + "shepherds's": [], + "savings": ["M"], + "rhinoviruses": [], + "illusion": ["E", "M", "S"], + "Llewellyn's": [], + "NASA's": [], + "windmills": [], + "hugeness": ["M"], + "Pat's": [], + "dereliction's": [], + "denuding": [], + "squads": [], + "counter": ["E", "M", "S"], + "quaint": ["P", "R", "Y", "T"], + "crocked": [], + "Croce's": [], + "angling's": [], + "legitimization": ["M"], + "pothooks's": [], + "scenarist's": [], + "conjectured": [], + "Suriname": ["M"], + "rubdowns": [], + "copper": ["S", "M"], + "sable": ["M", "S"], + "millwrights's": [], + "cabal": ["M", "S"], + "outdistanceds": [], + "tourney": ["M", "S"], + "tanners": [], + "schussboomer": ["M", "S"], + "smack'sed": [], + "catapulteds": [], + "Barbra": ["M"], + "sunrise's": [], + "ponytail": ["M", "S"], + "carerers": [], + "Msgr": [], + "Pickett's": [], + "someone'ses": [], + "misspelling's": [], + "Kashmir": ["S", "M"], + "scoureder": [], + "magnet": ["M", "S"], + "Lumiere": ["M"], + "dulls": [], + "sweater": ["M"], + "celibacy's": [], + "lowbrow": ["S", "M"], + "firefly": ["S", "M"], + "Port": ["M", "R"], + "remote's": [], + "blats": [], + "typology": ["S", "M"], + "carpals": [], + "remembered": ["U"], + "crewel's": [], + "sedimentation's": [], + "inexpertly": [], + "rapaciousnessly": [], + "adjourningment": [], + "followerers": [], + "paining": [], + "keels": [], + "costumier": ["S"], + "Nestle's": [], + "androgynous": [], + "similar": ["Y"], + "intervieweder": [], + "solemn": ["P", "T", "R", "Y"], + "Eldon's": [], + "Stockholm's": [], + "bared": [], + "Sears's": [], + "Angelique's": [], + "holdups": [], + "receipt": ["S", "M", "D", "G"], + "diptych's": [], + "jilts": [], + "Male's": [], + "benefactor'ses": [], + "par's": [], + "wot": [], + "practitioner's": [], + "belch": ["G", "M", "D", "S"], + "stonily": [], + "sledgehammers's": [], + "essayer's": [], + "electrologists's": [], + "extralegal": [], + "mics": [], + "Bulgarians's": [], + "carder's": [], + "paternity's": [], + "bars": [], + "Saigon's": [], + "tuneful": ["Y", "P"], + "elf": ["M"], + "biathlon's": [], + "entrails": ["M"], + "belt's": [], + "barbwire": ["M"], + "pizzazz": ["M"], + "loners": [], + "claptrap's": [], + "salving": [], + "saddleds": [], + "Brunelleschi's": [], + "dunnest": [], + "balky": ["R", "T"], + "chiropractic's": [], + "agendas's": [], + "supremacist's": [], + "Pushkin": ["M"], + "exhumes": [], + "superhighways": [], + "overdoseds": [], + "wroth": [], + "twerp": ["S", "M"], + "weeder": ["M"], + "Parana's": [], + "Delibes": ["M"], + "patch'sed": [], + "crossword": ["M", "S"], + "bronzeds": [], + "mushroom's": [], + "breathalyzersing": [], + "crazeds": [], + "yogurts": [], + "dedications": [], + "showman": ["M"], + "crosshatched": [], + "screeching's": [], + "peacefully": [], + "Lang": ["M"], + "drummers": [], + "adjustment'ses": [], + "blatancy": ["S", "M"], + "confirmation's": [], + "bhaji": [], + "Arden's": [], + "tilde": ["S", "M"], + "chased": [], + "peppy": ["T", "P", "R"], + "malady's": [], + "fightback": [], + "yeah's": [], + "noisemaker's": [], + "balsa": ["M", "S"], + "Ohioans's": [], + "Ni's": [], + "songwriter": ["S", "M"], + "bunny": ["S", "M"], + "pureeds": [], + "moderated": [], + "alcohols's": [], + "cyberpunk's": [], + "wagged": [], + "Carly's": [], + "tablecloth": ["M"], + "regretfully": [], + "pestilences's": [], + "catechism": ["S", "M"], + "fearful": ["Y", "P"], + "sequestering": [], + "hesitantly": [], + "ashcan's": [], + "standout": ["M", "S"], + "Duracell's": [], + "overlay": ["G", "S", "M"], + "tacklersing": [], + "waked": [], + "egg'sed": [], + "dowries's": [], + "assisteds": [], + "snickersing": [], + "grue": ["S"], + "hunkier": [], + "MI's": [], + "legginess's": [], + "hyphenatingen": [], + "spoilsed": [], + "Opal's": [], + "guessers": [], + "trowel": ["M", "D", "S", "G"], + "mimics": [], + "outfoxeds": [], + "bonsai's": [], + "nigger's": [], + "paraplegics": [], + "poundings": [], + "audiotape": ["S", "M"], + "Kabul's": [], + "backbone": ["M", "S"], + "grit's": [], + "dishpans": [], + "extinguish": ["Z", "G", "B", "D", "R", "S"], + "chatty": ["T", "P", "R"], + "rivieras": [], + "ditransitive": [], + "agreeably": ["E"], + "lavatory": ["S", "M"], + "newsroom'ses": [], + "opportunities's": [], + "panderer": ["M"], + "hoover": ["D", "S", "G"], + "bony": ["P", "T", "R"], + "nimble": ["T", "P", "R"], + "exhaustiveness's": [], + "Titania": ["M"], + "chicaneries": [], + "stencil": ["G", "M", "D", "S"], + "carloads": [], + "airlifts": [], + "slipcase": ["M", "S"], + "radiator's": [], + "sebaceous": [], + "Mauryan": ["M"], + "creche's": [], + "attorneys": [], + "Hudson": ["M"], + "isles": [], + "mothers": [], + "kilocycle's": [], + "appreciatingen": [], + "Stiltons's": [], + "genuflection's": [], + "primed": [], + "polygamous": [], + "Roanoke's": [], + "offer's": [], + "overclouds": [], + "detainee": ["M", "S"], + "gibbous": [], + "treasury": ["S", "M"], + "gabbling": [], + "pronominal": ["M"], + "reignite": [], + "desperatelication": [], + "tackles's": [], + "interrogated": [], + "greenbacks": [], + "amiable": [], + "task": ["G", "M", "D", "S"], + "astrophysical": [], + "toxicologists": [], + "OJ": [], + "Togo": ["M"], + "esters": [], + "gambits's": [], + "Basque's": [], + "waster": ["M"], + "splutter'sed": [], + "Marty": ["M"], + "squabbling": [], + "projectiles": [], + "exclaimed": [], + "unfrequented": [], + "moonlighter's": [], + "warns": [], + "obtainablement": [], + "riparian": [], + "clinks's": [], + "crenelateds": [], + "potpourris's": [], + "carbon's": [], + "chlorophyll's": [], + "appendinged": [], + "condone": ["D", "S", "G"], + "snappiest": [], + "effectuate": ["D", "S", "G"], + "unrepaid": [], + "Thelma": ["M"], + "equidistant": ["Y"], + "sheatheds": [], + "ditties's": [], + "wile'sing": [], + "Tass's": [], + "urges": [], + "toastiest": [], + "rerun": [], + "integer'ses": [], + "lisps": [], + "aside": ["M", "S"], + "cosigneder": [], + "plaid": ["M", "S"], + "surplussing": [], + "recitative's": [], + "galley": ["S", "M"], + "phonetics's": [], + "frequently": [], + "dynasty's": [], + "swifts's": [], + "pothers": [], + "pharmacopoeias": [], + "shrills": [], + "preferring": [], + "powdered": [], + "Taipei's": [], + "PowerPC": ["M"], + "gymnosperms": [], + "revenge's": [], + "proconsular": [], + "Danielle": ["M"], + "deaderly": [], + "beachcombers": [], + "gibbeting": [], + "sheepdog'ses": [], + "Gaiman's": [], + "morn's": [], + "videoings": [], + "replicate": ["D", "S", "G", "N", "X"], + "barring": ["E", "C", "U"], + "vividly": [], + "distributive": ["Y"], + "coin's": [], + "mailshots": [], + "Petersen's": [], + "FIFO": [], + "Crucifixion's": [], + "allusive": ["P", "Y"], + "perk'sed": [], + "womanliest": [], + "straightaways's": [], + "check's": [], + "drawing": ["M"], + "locusts": [], + "scandalmongers's": [], + "pinprick's": [], + "improvement": ["M", "S"], + "negotiator's": [], + "freeloading": [], + "deception's": [], + "storks's": [], + "millionairesses": [], + "airbag'ses": [], + "trefoil": ["S", "M"], + "outrider": ["M", "S"], + "cincheds": [], + "grad": ["M", "R", "Z", "S", "B"], + "mismanaginged": [], + "picnicker's": [], + "towpath": ["M"], + "whitefish'ses": [], + "Nineveh": ["M"], + "latecomer's": [], + "shekels": [], + "sailed": [], + "strategy": ["S", "M"], + "Di": ["S", "M"], + "Tongan's": [], + "jamb": ["M", "S"], + "auditors": [], + "reticulation'ses": [], + "regalia": ["M"], + "temporary": ["F", "S", "M"], + "playgirl's": [], + "prudes": [], + "offendeder": [], + "superstates": [], + "Jimmie": ["M"], + "academician'ses": [], + "condominiums": [], + "protestants": [], + "pushchair": ["S"], + "travailing's": [], + "Barlow's": [], + "benevolent": ["Y"], + "Amparo's": [], + "enticement's": [], + "secateurs": [], + "safflowers": [], + "dispersed": [], + "overprinteding": [], + "hydrotherapy": ["M"], + "Pinocchio's": [], + "incapacitated": [], + "Trimurti": ["M"], + "antimony": ["M"], + "eradicator'ses": [], + "countenancinged": [], + "garnisheed": [], + "cohabitsing": [], + "disproposition": [], + "stockinette's": [], + "beebread's": [], + "Hesse's": [], + "Noel": ["S", "M"], + "grievousness": ["M"], + "graphologist's": [], + "microchips": [], + "extendersing": [], + "habitue's": [], + "torqued": [], + "sublet's": [], + "quadrupedal": [], + "neophytes": [], + "vaccinatingen": [], + "asp": ["S", "M", "N", "X"], + "indication": ["M"], + "besmeareds": [], + "belling's": [], + "Whig": ["S", "M"], + "uncleaneder": [], + "solemnified": [], + "Katheryn": ["M"], + "aquariums": [], + "devilishness": ["M"], + "prostrateds": [], + "mustard's": [], + "transcendentalism": ["M"], + "meanderingsing": [], + "trued": [], + "misguideds": [], + "prudishness's": [], + "chambers": [], + "visitation": ["M", "S"], + "Tchaikovsky's": [], + "Fiona's": [], + "Wheaties": ["M"], + "protectionist": ["M", "S"], + "eighty": ["S", "M", "H"], + "siphoneds": [], + "yardstick": ["M", "S"], + "laundromat": ["M", "S"], + "much's": [], + "catching": [], + "Hutton": ["M"], + "railway": ["S", "M"], + "pistes": [], + "paginatesing": [], + "recharter": [], + "church's": [], + "rejoiced": [], + "limericks": [], + "midfield": ["R", "Z"], + "wax's": [], + "mediatingen": [], + "rollbacks": [], + "heftinesser": [], + "classrooms": [], + "overpraise": ["D", "S", "G"], + "teletypewriter": ["M", "S"], + "gaineding": [], + "warden's": [], + "chappies": [], + "thermal'sly": [], + "harbor": ["G", "M", "D", "S"], + "following": ["M"], + "geriatrician": ["S"], + "gunslinger": ["S", "M"], + "pilfers": [], + "Barents's": [], + "mulberries's": [], + "rapider": [], + "consolidators": [], + "bourgeoisie": ["M"], + "swigged": [], + "barbersing": [], + "benumbing": [], + "sunbaths": [], + "Fraser": ["M"], + "deficits": [], + "afterword": ["M", "S"], + "munitioned": [], + "nibs": [], + "Vaughan": ["M"], + "vestry": ["S", "M"], + "candidatures": [], + "Oklahoman": ["M"], + "turnout'ses": [], + "conflation's": [], + "heartwood's": [], + "mankind's": [], + "racialist's": [], + "prohibitionists": [], + "localizeds": [], + "paragon": ["M", "S"], + "Larsen": ["M"], + "decelerator": ["S", "M"], + "alternateds": [], + "discriminationed": [], + "vantages": [], + "deifyinged": [], + "synchronizes": [], + "witty": ["R", "P", "T"], + "coo": ["G", "S", "M", "D"], + "imbalances": [], + "chiropodist": ["M", "S"], + "blunted": [], + "potentiated": [], + "Grail's": [], + "abuser": ["M", "S"], + "sullenerly": [], + "Incas": [], + "deconferment": [], + "tulle's": [], + "slapper": ["S"], + "jinxes": [], + "dredger": ["M"], + "wigwags's": [], + "exacerbated": [], + "snoozed": [], + "Angelia's": [], + "unpredictable": [], + "phonograph's": [], + "giblets": [], + "beer's": [], + "grizzles": [], + "crossbreed": ["S", "G", "M"], + "reexports": [], + "termagant'ses": [], + "scallion's": [], + "piggyback'sed": [], + "fretting": [], + "desalt": [], + "prospect": ["M", "D", "G", "V", "S"], + "cottage'sers": [], + "forbearing": [], + "bedchamber": ["S"], + "ticktacktoe": ["M"], + "sinkhole": ["S", "M"], + "queues": [], + "undergo": ["G"], + "manufacturers": [], + "ninny": ["S", "M"], + "refraction's": [], + "neutralizes": [], + "odysseys": [], + "rich'ser": [], + "bulimarexia": ["M"], + "earache": ["S", "M"], + "riveters": [], + "thalidomide's": [], + "Price's": [], + "overcrowdeding": [], + "beacon": ["S", "M"], + "restitch": [], + "roused": [], + "wind": ["U", "A", "S", "G"], + "Montenegrin": ["M"], + "weekendersing": [], + "rheum's": [], + "vacuousness": ["M"], + "evidencinged": [], + "descryinged": [], + "characterizing": [], + "lipstickeds": [], + "rotisseries": [], + "igloo": ["S", "M"], + "inlay": [], + "autoworkers": [], + "bungholes": [], + "satellite's": [], + "annalist": ["S", "M"], + "haulage's": [], + "disputersing": [], + "Thad": ["M"], + "evasively": [], + "propinquity": ["M"], + "reconnoitering": [], + "wishbones's": [], + "constructiveness": ["M"], + "drawstring": ["M", "S"], + "bogey's": [], + "disputant": ["M", "S"], + "schoolfellow": ["S", "M"], + "intimation": ["M"], + "shepherding": [], + "blister's": [], + "lineament's": [], + "Metallica's": [], + "Beninese's": [], + "stinkbug": ["S", "M"], + "Erewhon's": [], + "motiveless": [], + "overborne": [], + "sackcloth's": [], + "quibble": ["D", "R", "S", "M", "Z", "G"], + "dhoti": ["S", "M"], + "slosheds": [], + "bewaring": [], + "bluegrass": ["M"], + "maxilla's": [], + "centerboard's": [], + "censusing": [], + "toughed": [], + "Sta": [], + "overweight": ["M"], + "laureate's": [], + "bushmen": [], + "twelfths": [], + "coequally": [], + "grunge's": [], + "heptagonal": [], + "Wimsey": ["M"], + "polytheists": [], + "coincides": [], + "cabala's": [], + "orations": [], + "Cerf": ["M"], + "nonspiritual": ["S", "M"], + "laggard'sly": [], + "jurisdiction": ["S", "M"], + "daring'sly": [], + "sandier": [], + "ginkgo": ["M"], + "sect's": [], + "tattles": [], + "swearersing": [], + "nevus's": [], + "bathe's": [], + "Tipperary": ["M"], + "underpayment": ["S", "M"], + "circleds": [], + "hymen": ["S", "M"], + "bearskin": ["M", "S"], + "urban": [], + "Alsace's": [], + "Punch": ["M"], + "hilarity's": [], + "feudalism": ["M"], + "personally": [], + "insufficient": [], + "flourished": [], + "Debbie": ["M"], + "screeched": [], + "gynecologist's": [], + "doyenne's": [], + "needless": ["Y", "P"], + "elaborations": [], + "Bries": [], + "updated": [], + "coopings": [], + "waxiness's": [], + "slatted": [], + "hypertensives": [], + "blink's": [], + "exaggerator": ["M", "S"], + "Maori'ses": [], + "leaseback's": [], + "lager's": [], + "neutron's": [], + "Tirol's": [], + "vivify": ["A", "D", "S", "G"], + "effusive": ["Y", "P"], + "chamberlain'ses": [], + "schoolteachers": [], + "saffron's": [], + "knob'ses": [], + "axeds": [], + "Gilmore": ["M"], + "poll's": [], + "campaign'sed": [], + "tomb": ["M", "D", "G", "S"], + "billhooks": [], + "crouton's": [], + "pearlies": [], + "childcare's": [], + "perimeters's": [], + "dishwasher's": [], + "recite": [], + "hypnoses": [], + "anesthetization's": [], + "pillowcase's": [], + "oxide": ["M", "S"], + "pluckeds": [], + "cajoling": [], + "termites": [], + "lickedings": [], + "Cleveland's": [], + "exposures": [], + "folk's": [], + "Brie's": [], + "immateriality's": [], + "meteor'ses": [], + "histograms": [], + "voting": [], + "scruff": ["S", "M"], + "sloven": ["S", "M", "Y"], + "silkscreen's": [], + "vow": ["S", "G", "M", "D"], + "polynomials": [], + "Constantinople's": [], + "tastelessness": ["M"], + "hedges's": [], + "whorl's": [], + "Pittsburgh's": [], + "hazeder": [], + "nicks": [], + "Kleenexes": [], + "eyeopeners": [], + "Jan's": [], + "exabytes": [], + "ransoms": [], + "outboasteds": [], + "bristly": ["T", "R"], + "stopover'ses": [], + "awoken": [], + "initialing's": [], + "wane's": [], + "pianofortes": [], + "expunge": ["G", "D", "S"], + "Solzhenitsyn's": [], + "Gomorrah's": [], + "broncobuster's": [], + "Monteverdi's": [], + "insetting": [], + "compotes": [], + "expose'sing": [], + "lieutenant's": [], + "irritant": ["S", "M"], + "auspice's": [], + "synthetic": ["S", "M"], + "Barbarella's": [], + "calfskin's": [], + "really": [], + "minutest": [], + "loons": [], + "fabricators": [], + "Toshiba's": [], + "flibbertigibbet's": [], + "technicalities's": [], + "consolidator'ses": [], + "surfacinged": [], + "longtime": [], + "supplieder": [], + "scumbag'ses": [], + "compeers": [], + "sharecroppers": [], + "crisped": [], + "bankroll'sed": [], + "exacerbatingen": [], + "unofficial": ["Y"], + "dominants's": [], + "Rabelaisian's": [], + "conformity": ["M"], + "dueleder": [], + "steamerers": [], + "snots": [], + "chickening": [], + "corvettes": [], + "brawny": ["R", "T", "P"], + "ministrant's": [], + "Oise's": [], + "neutrons": [], + "pleading's": [], + "cleverness": ["M"], + "vibraphone's": [], + "relativism": ["M"], + "illegible": [], + "scuffled": [], + "Bavarian": ["M"], + "metersing": [], + "barrage's": [], + "explicating": [], + "loyalist": ["S", "M"], + "pugs": [], + "cliffhanger's": [], + "omnivore": ["M", "S"], + "rowboat": ["M", "S"], + "Engels": ["M"], + "precociousliness": [], + "Berkshire": ["S", "M"], + "Cressida": ["M"], + "towelette's": [], + "overshot": [], + "prawn'sed": [], + "orphanage's": [], + "terrorist's": [], + "madly": [], + "wiseguys": [], + "erasure's": [], + "canteen": ["M", "S"], + "massing": [], + "kibitzer": ["M"], + "grindstones": [], + "jihad's": [], + "bawl": ["S", "G", "M", "D"], + "grizzly": ["T", "R", "S", "M"], + "scarcity's": [], + "voodoo": ["G", "S", "M", "D"], + "straightaway's": [], + "indoor": [], + "Begin's": [], + "plaques": [], + "Paleogene": ["M"], + "restitution": ["M"], + "denigrateds": [], + "scalars": [], + "cognacs's": [], + "brevet": ["S", "M"], + "billing's": [], + "Corsican's": [], + "authenticationed": [], + "Nichols": ["M"], + "bilking": [], + "bathtub": ["M", "S"], + "Ilene's": [], + "blowholes": [], + "shellacking'ses": [], + "ligatures": [], + "debut'sed": [], + "inaugurated": [], + "notoriously": [], + "McFadden's": [], + "ineffability's": [], + "Foch": ["M"], + "sempstress's": [], + "frontispiece": ["M", "S"], + "medals": [], + "geodesics's": [], + "Balthazar's": [], + "withdrawsing": [], + "misconstruction'ses": [], + "psychotically": [], + "apparently": [], + "jetliners's": [], + "frostbite's": [], + "refrigeratingen": [], + "prankster": ["S", "M"], + "chasers": [], + "meta": [], + "climatology": ["M"], + "microscopes's": [], + "calves": [], + "keying": [], + "fiddlier": [], + "cinematographers": [], + "animosity": ["S", "M"], + "Hiram's": [], + "toothache's": [], + "dissected": [], + "incredibility": [], + "peltsing": [], + "Tenochtitlan": ["M"], + "tightenersing": [], + "imponderables": [], + "rustlings's": [], + "prosciutto": ["M"], + "Wesley's": [], + "security": ["I", "S", "M"], + "sulfa": ["M"], + "blasphemy's": [], + "Stanford": ["M"], + "damselfly's": [], + "tendrils": [], + "nonconformist": ["M", "S"], + "revolting": ["Y"], + "vestal'ses": [], + "subornation's": [], + "enuresis's": [], + "hydra's": [], + "Cuisinart's": [], + "cinnamon's": [], + "kinks": [], + "lowercase": ["M"], + "slumps": [], + "Sydney's": [], + "Aristotelian's": [], + "misgivings": [], + "immolated": [], + "Idahoans": [], + "corrugated": [], + "inconsolable": [], + "computed": [], + "Jamel": ["M"], + "utilizable": [], + "spanned": [], + "broilerers": [], + "invigilators": [], + "blather's": [], + "diadem's": [], + "porkies": [], + "wisheder": [], + "Knickerbocker's": [], + "crown's": [], + "batter": ["J", "Z", "G", "S", "M", "D", "R"], + "hoped": [], + "begrime": ["D", "S", "G"], + "fallback": [], + "sporrans": [], + "predominantly": [], + "vaguer": [], + "fornication": ["M"], + "communally": [], + "emits": [], + "bushwhackeder": [], + "versifyingen": [], + "monition": ["S", "M"], + "blabbering": [], + "broodmare": ["M", "S"], + "optimizeder": [], + "Bill": ["M", "J"], + "toilet'sed": [], + "niffy": [], + "suspiciously": [], + "saris": [], + "thrum": ["S", "M"], + "glut's": [], + "honk'sed": [], + "regularly": [], + "forswears": [], + "Chanel": ["M"], + "dress's": [], + "essay'sed": [], + "tearooms's": [], + "Anacreon": ["M"], + "dawdled": [], + "prudery": ["M"], + "ghettoizing": [], + "signorine": [], + "QM": [], + "feedlots": [], + "tinctured": [], + "motorman": ["M"], + "ftp": ["Z", "G", "S"], + "backache": ["M", "S"], + "segregation's": [], + "conservators": [], + "Manhattan": ["S", "M"], + "conundrum's": [], + "deadpans": [], + "Kevlar": ["M"], + "physique": ["M", "S"], + "marrow'ses": [], + "mesmerizes": [], + "Bacall's": [], + "Salado's": [], + "uneasy": ["T"], + "clausal": [], + "briefcase's": [], + "consents": [], + "gold": ["M", "N", "S"], + "scrimshaw": ["M", "D", "G", "S"], + "rowdiest": [], + "footeder": [], + "indicateds": [], + "official's": [], + "construe": ["G", "D", "S"], + "cost's": [], + "fan": ["S", "M"], + "Everett": ["M"], + "choke's": [], + "Hodge": ["S", "M"], + "reciprocity": ["M"], + "rajah": ["M"], + "frontispiece'ses": [], + "scrupleds": [], + "televises": [], + "Maurice's": [], + "pipersing": [], + "travestying": [], + "apostle": ["M", "S"], + "wager'sed": [], + "tunefully": [], + "freezer's": [], + "atheism's": [], + "exculpate": ["D", "S", "G", "N"], + "dipper": ["S", "M"], + "Fisk's": [], + "offends": [], + "bola": ["S", "M"], + "slug": ["M", "S"], + "veering": [], + "ponderinged": [], + "reweave": ["G", "S"], + "yews": [], + "Ramada": ["M"], + "usefulnessly": [], + "coast'sed": [], + "item": ["M", "S"], + "conserve": [], + "specked": [], + "frog's": [], + "headstall's": [], + "desserts's": [], + "canopying": [], + "historians": [], + "Moldavian": [], + "arrowhead's": [], + "patients": [], + "unsold": [], + "systoles": [], + "replications": [], + "corner": ["G", "M", "D"], + "spats": [], + "brooked": [], + "demonstrativelies": [], + "hobbyists": [], + "peeler's": [], + "perpetuation": ["M"], + "brutish": ["P", "Y"], + "quotas": [], + "ruse": ["M", "S"], + "seared": [], + "ranch'sed": [], + "trillium": ["M"], + "pistachio": ["S", "M"], + "misstatements's": [], + "weatherstripping": ["M"], + "exportation's": [], + "Gautama": ["M"], + "decorousness": ["M"], + "Puccini": ["M"], + "nonvenomous": [], + "mistimes": [], + "bicep'ses": [], + "suchlike": [], + "captured": [], + "Lois": ["M"], + "exceedsed": [], + "surcingles": [], + "optimists": [], + "asteroids": [], + "blasphemies's": [], + "Lapland's": [], + "deafen": ["G", "D"], + "fleas": [], + "coulee": ["S", "M"], + "bezel'ses": [], + "sunset's": [], + "visualizersing": [], + "concision": ["M"], + "annulment": ["S", "M"], + "venomous": ["Y"], + "grandiloquence": ["M"], + "shaggiest": [], + "disquieted": [], + "shined": [], + "Bermudan": ["S", "M"], + "Bonn'ser": [], + "roadshow": ["S", "M"], + "miraculously": [], + "overburdenings": [], + "Dole": ["M"], + "Dramamine": ["S", "M"], + "verbena's": [], + "Muslim'ses": [], + "snatcher": ["M"], + "quantifieder": [], + "establishments": [], + "dissertations's": [], + "coffin'sed": [], + "workshop": ["M", "S"], + "Kwan's": [], + "Bill'sings": [], + "filigreed": [], + "appointment's": ["A"], + "locoweeds's": [], + "recanteding": [], + "grayed": [], + "miscommunications": [], + "mafioso's": [], + "slavery": ["M"], + "sparrows's": [], + "wheres": [], + "suntanning": [], + "sangria's": [], + "hour'sly": [], + "weatherization": ["M"], + "gorgon": ["S", "M"], + "buffoonery": ["M"], + "Cole's": [], + "spiritualist": ["M", "S"], + "footrace's": [], + "typewrote": [], + "paddler's": [], + "gymnosperms's": [], + "thwacked": [], + "form": ["C", "A", "I", "F", "D", "G", "S"], + "agglutinations": [], + "Hals's": [], + "vitalized": [], + "Ellesmere": ["M"], + "spent": ["U"], + "togs's": [], + "calibers": [], + "Emmett": ["M"], + "oysters's": [], + "hackle'ses": [], + "spritzer's": [], + "woodsheds's": [], + "current's": [], + "purger": ["M"], + "handlebars": [], + "wheelbarrow": ["S", "M"], + "Palmolive's": [], + "cleaninged": [], + "enclosing": [], + "allotments": [], + "croquet": ["M"], + "spiracles's": [], + "irritatingen": [], + "Rapunzel": ["M"], + "compilations's": [], + "truing": [], + "interesting": ["Y"], + "wattage's": [], + "Provence": ["M"], + "reboil": ["S", "D", "G"], + "paddlinged": [], + "wombles": [], + "samosa": ["S"], + "attain": ["A", "G", "D", "S"], + "beige": ["M"], + "Araceli": ["M"], + "prolixly": [], + "dingbat": ["M", "S"], + "insensate": [], + "reflateds": [], + "toweled": [], + "ostrich'ses": [], + "tantalum": ["M"], + "cockroaches": [], + "laboriousness": ["M"], + "tacit": ["P", "Y"], + "roadways": [], + "novelizesing": [], + "obloquy": ["M"], + "Yeager's": [], + "embrace's": [], + "cucumber": ["S", "M"], + "effervescing": [], + "mundanes": [], + "arbitrary": ["P"], + "consignee": ["M", "S"], + "radicalism's": [], + "Casio": ["M"], + "vagabonds's": [], + "craggiest": [], + "subtrahend": ["S", "M"], + "scavenges": [], + "infuriateds": [], + "pageder": [], + "Kerensky's": [], + "affect's": [], + "megabytes": [], + "precedence": ["M"], + "Best": ["M"], + "Aldan": ["M"], + "contemplatively": [], + "neologisms's": [], + "scalpers": [], + "Agnew": ["M"], + "alertness": ["M"], + "behaviorism's": [], + "Jidda": ["M"], + "simulateds": [], + "nobody": ["S", "M"], + "elands": [], + "medicates": [], + "reparations's": [], + "haricots": [], + "repay": [], + "Iapetus's": [], + "jewelries": [], + "trigger's": [], + "gratifyingen": [], + "sling'sing": [], + "jostlinged": [], + "absorption": ["M"], + "rusticateds": [], + "passports": [], + "sulkings": [], + "notated": [], + "nothing": ["P", "S", "M"], + "participial": ["M"], + "ladyship's": [], + "handrail": ["M", "S"], + "backsings": [], + "penologist'ses": [], + "sojourns": [], + "protester": [], + "lizards": [], + "radiologist's": [], + "faddists": [], + "pampas's": [], + "ditherers": [], + "compensation": ["M"], + "fleabags": [], + "vacillation's": [], + "inspired": ["U"], + "outrider'ses": [], + "Sextans's": [], + "stressing": [], + "formulates": [], + "entranced": [], + "hardhat": ["M", "S"], + "chides": [], + "trimesters's": [], + "mustachios's": [], + "exurbanites": [], + "castrationsed": [], + "laugh's": [], + "ruinously": [], + "Beiderbecke": ["M"], + "Inuit": ["M", "S"], + "troikas": [], + "lanolin's": [], + "mutability's": [], + "rafter's": [], + "dryers's": [], + "trousseaux": [], + "Jacobs's": [], + "GCC's": [], + "bristle'sing": [], + "tobogganing's": [], + "individualists": [], + "arbitrageurs": [], + "counterfeitersing": [], + "apparelings": [], + "formatting": ["M"], + "dolmens's": [], + "molly's": [], + "scrupulously": [], + "latitudinarian's": [], + "landslips": [], + "salerooms": [], + "mildness": ["M"], + "frilly": ["T", "R"], + "cartwheels": [], + "Crawford's": [], + "pardoner": ["M"], + "safeguards": [], + "affront": ["G", "M", "D", "S"], + "limy": ["R", "T"], + "Celt": ["S", "M"], + "fricatives's": [], + "predetermination's": [], + "Alfredo's": [], + "Emma's": [], + "circuitousliness": [], + "sackingses": [], + "sideboard's": [], + "canto'ses": [], + "deigned": [], + "modelers": [], + "Erwin": ["M"], + "Cupid's": [], + "roisteringed": [], + "starknessers": [], + "timbrel's": [], + "telescopic": [], + "catapulted": [], + "marinatingen": [], + "blessing": ["M"], + "outbid": ["S"], + "asceticism's": [], + "spike": ["D", "S", "M", "G"], + "feature'sing": [], + "vagabondage's": [], + "fraternize": ["Z", "G", "D", "R", "S"], + "molecule": ["S", "M"], + "sumac's": [], + "veritable": [], + "rosebuds": [], + "skinniness": ["M"], + "impales": [], + "Chomsky's": [], + "finickiest": [], + "blackguards": [], + "Curie": ["M"], + "kaolin": ["M"], + "endorsement": ["M", "S"], + "radioscopy": ["M"], + "arrangement's": ["E"], + "Edison's": [], + "inkblot's": [], + "inclusions": [], + "radicalizesing": [], + "Delaware": ["M", "S"], + "harvester": ["M"], + "latrine'ses": [], + "stoics's": [], + "primitive": ["S", "P", "M", "Y"], + "Protestant'ses": [], + "discoverer": ["M", "S"], + "gigahertz's": [], + "cockpit": ["S", "M"], + "halyard": ["M", "S"], + "dentures": [], + "blueberry": ["S", "M"], + "dubiously": [], + "Jephthah's": [], + "abuser's": [], + "harkeding": [], + "moneybag'ses": [], + "thumbing": [], + "gentler": [], + "Acosta": ["M"], + "bathrobe": ["S", "M"], + "amuse": ["L", "G", "D", "S"], + "sledgeds": [], + "ratlike": [], + "lifers": [], + "strongroom": ["S"], + "agates": [], + "awed": [], + "preservationists": [], + "riverboat": ["S", "M"], + "thickeners": [], + "Fm's": [], + "prescribe": ["D", "S", "G"], + "vulgarization's": [], + "gentile": ["S", "M"], + "interweave": ["G", "S"], + "destructive": ["P", "Y"], + "Bordon's": [], + "HUD": ["M"], + "awareness's": [], + "proportionally": [], + "combinesing": [], + "podiums": [], + "floppinesser": [], + "prevaricates": [], + "Octavio's": [], + "expressionist's": [], + "conductance": ["M"], + "Yahoo's": [], + "customizing": [], + "foremast'ses": [], + "questionerers": [], + "destines": [], + "listeneder": [], + "Schelling's": [], + "meeting": ["M"], + "lenitive": [], + "prefigureds": [], + "masher's": [], + "portliness's": [], + "maintainability": [], + "Matthew's": [], + "annexeds": [], + "mollify": ["D", "S", "N", "G"], + "nonacid": [], + "nitratingen": [], + "lavaliere": ["S", "M"], + "preamble": ["M", "G", "D", "S"], + "datum's": [], + "submersible'ses": [], + "sidewinders": [], + "item's": [], + "pillaging": [], + "neutralizeder": [], + "scraggier": [], + "intention": ["M", "S"], + "resealable": [], + "timelessness's": [], + "residences's": [], + "insensitivity": [], + "mincing": [], + "consulates's": [], + "intoxicant": ["S", "M"], + "parables": [], + "busybodies": [], + "VDT": [], + "bossiness": ["M"], + "nonprofits": [], + "synchronizing": [], + "smearier": [], + "conclaves's": [], + "squawker's": [], + "Playtex's": [], + "NAACP's": [], + "decoratingen": [], + "josh's": [], + "tempests's": [], + "mountaintops's": [], + "Doric": ["M"], + "Cavendish's": [], + "gruesome": ["R", "Y", "T", "P"], + "golfing": [], + "dodos": [], + "riser": ["M"], + "Spahn's": [], + "acquiescesing": [], + "Alfonso's": [], + "treaty's": [], + "wriggle'sers": [], + "dressier": [], + "chairlift": ["M", "S"], + "interlocked": [], + "Eurydice's": [], + "Idahoes": [], + "airletters": [], + "quitters": [], + "actualizeds": [], + "Lanai": ["M"], + "eosinophils": [], + "rabbeted": [], + "Kuomintang's": [], + "diagnosticians": [], + "uncross": [], + "misreads": [], + "longing": ["M", "Y", "S"], + "triter": [], + "vociferousness's": [], + "drogue": ["S", "M"], + "unravel": [], + "consummating": [], + "orbiteder": [], + "appropriation's": [], + "manslaughter's": [], + "deformities's": [], + "SEC's": [], + "nationalists's": [], + "clanging's": [], + "demijohn": ["S", "M"], + "shutter's": [], + "Brobdingnagian": ["M"], + "fathom's": [], + "ululationens": [], + "megalith": ["M"], + "farmland's": [], + "Hepplewhite": ["M"], + "ridicule": ["M", "G", "D", "S"], + "lapin's": [], + "primitives": [], + "seatmate's": [], + "muskox's": [], + "witchery": ["M"], + "cultivated": ["U"], + "olderness": [], + "Diana": ["M"], + "scene's": [], + "amorphousness's": [], + "roguishly": [], + "pseuds": [], + "trivialization": ["M"], + "miscarry": ["G", "D", "S"], + "winch'sed": [], + "peeksing": [], + "Hovhaness's": [], + "underline'sing": [], + "snorkeled": [], + "pushiest": [], + "snowballed": [], + "keened": [], + "squelching's": [], + "blots": [], + "planeload'ses": [], + "Flory": ["M"], + "getaway": ["S", "M"], + "reinformer": [], + "buyer": ["M"], + "chocolate'ses": [], + "earwig": ["S", "M"], + "stoats": [], + "gristly": [], + "blindfold": ["S", "M", "D", "G"], + "diner's": [], + "calking": [], + "bobbysoxers's": [], + "commodores": [], + "expatiate": ["G", "N", "D", "S"], + "nightclothes's": [], + "enforce": ["L", "Z", "G", "D", "R", "S"], + "noising": [], + "Bessel": ["M"], + "strikeout's": [], + "subtrahends's": [], + "platform'sed": [], + "qualify": ["E", "G", "X", "N", "D", "S"], + "Limpopo": ["M"], + "silencing": [], + "Latvian's": [], + "glamorizes": [], + "motor'sed": [], + "conjugateds": [], + "Scandinavia's": [], + "legionaries": [], + "Schiaparelli": ["M"], + "scuffsing": [], + "shortlisteding": [], + "foot": ["M", "D", "R", "Z", "G", "S", "J"], + "Boers's": [], + "vials": [], + "Virginians": [], + "ASL's": [], + "monsieur's": [], + "whichever": [], + "toadies's": [], + "stoppers": [], + "whomsoever": [], + "transmits": [], + "labels": [], + "biopsieds": [], + "irately": [], + "crowdfunds": [], + "sisterhood'ses": [], + "outworkeder": [], + "Lyly": ["M"], + "Masters's": [], + "hideous": ["Y", "P"], + "curdleds": [], + "irrelevant": ["Y"], + "Nazca": ["M"], + "sombrero": ["M", "S"], + "closing's": [], + "legions's": [], + "collaborationist": [], + "stamens's": [], + "upsilon'ses": [], + "steelworker": ["S", "M"], + "pooped": [], + "although": [], + "skinny": ["R", "M", "T", "P"], + "washer's": [], + "uncurl": [], + "doubter's": [], + "tavern'ses": [], + "adjective's": [], + "stolidly": [], + "hankerings": [], + "imbroglios's": [], + "flunk's": [], + "madder'ses": [], + "breezed": [], + "gargle": ["D", "S", "M", "G"], + "SC": ["M"], + "embargo": ["M", "D", "G"], + "sandlots's": [], + "Brunei's": [], + "tyro's": [], + "raindrops's": [], + "metalanguage's": [], + "seaport": ["M", "S"], + "presenter": ["M"], + "encrust": ["D", "G", "S"], + "criminally": [], + "fussy": ["T", "R", "P"], + "hydrationed": [], + "gavel": ["S", "M"], + "disproportional": [], + "couch": ["M", "D", "S", "G"], + "placers": [], + "oranges's": [], + "banteringly": [], + "Faberge": ["M"], + "adventures": [], + "surrealism's": [], + "impromptu": ["S", "M"], + "Muzak's": [], + "briskness's": [], + "fishbowls's": [], + "permsing": [], + "underpass": ["M", "S"], + "Noumea": ["M"], + "troublesomely": [], + "woodsman": ["M"], + "toothpastes's": [], + "checkereding": [], + "accusation's": [], + "Rubaiyat": ["M"], + "millwrights": [], + "Sharon": ["M"], + "emirs": [], + "prohibits": [], + "hygienist'ses": [], + "portion's": [], + "rheumatic'ses": [], + "rod": ["S", "M"], + "undismayed": [], + "basely": [], + "improviser": ["M"], + "Stevie's": [], + "stickiness": ["M"], + "bulking": [], + "meliorative": [], + "hedgerow": ["S", "M"], + "stalagmite'ses": [], + "staffsed": [], + "subordinate": ["D", "S", "M", "G", "N"], + "curmudgeons": [], + "vagary": ["S", "M"], + "councilwoman": ["M"], + "rapturous": ["Y"], + "banner": ["S", "M"], + "cardinals": [], + "truant's": [], + "Penny": ["M"], + "voodooism": ["M"], + "clearing": ["M"], + "Bharat's": [], + "dealings": [], + "fleck": ["S", "G", "M", "D"], + "promenade'sing": [], + "bred": ["I"], + "custodian": ["M", "S"], + "endoscopy": ["M"], + "subtlest": [], + "scribble's": [], + "connections": [], + "preventative'ses": [], + "Tompkins's": [], + "headcases": [], + "brink": ["S", "M"], + "Rubin": ["M"], + "scupper": ["M", "D", "G", "S"], + "believing": ["U"], + "Mandela": ["M"], + "unguents": [], + "swarthy": ["T", "R"], + "Saginaw": ["M"], + "prime'ses": [], + "mislabeled": [], + "promptly": [], + "Schuylkill": ["M"], + "safe's": [], + "defamed": [], + "cardsharp'ser": [], + "ague's": [], + "neighborhoods": [], + "boulevard's": [], + "killing's": [], + "honked": [], + "Ayers's": [], + "embryology's": [], + "colloquium": ["M", "S"], + "propped": [], + "tole": ["M"], + "rupture": ["M", "G", "D", "S"], + "filibusterer's": [], + "hellishliness": [], + "lens's": [], + "braves": [], + "swooning": [], + "weekly": ["S", "M"], + "coiled": [], + "physiologist'ses": [], + "instantiated": [], + "cranberry's": [], + "impressionability's": [], + "saucierness": [], + "begrimesing": [], + "sweetmeat's": [], + "springbok": ["M", "S"], + "geriatrics's": [], + "Thorpe": ["M"], + "Emily's": [], + "opportunist": ["S", "M"], + "ladle'sing": [], + "epiphanies": [], + "Tatar": ["M", "S"], + "timid": ["R", "Y", "T", "P"], + "thingumabob": ["S"], + "commodore's": [], + "telecasts": [], + "meandered": [], + "traitorously": [], + "empiricists": [], + "thug's": [], + "gamecock": ["M", "S"], + "wrongdoers": [], + "cheeky": ["T", "P", "R"], + "oiliness": ["M"], + "budgie": ["S", "M"], + "detains": [], + "Wendi's": [], + "para": ["M", "S"], + "misreport'sed": [], + "duelist's": [], + "sidetracked": [], + "pasteurize": ["Z", "G", "D", "R", "S"], + "bankrupt": ["S", "G", "M", "D"], + "Sherry's": [], + "tire's": [], + "longhair's": [], + "soundest": [], + "Ted's": [], + "seashores's": [], + "forgathersed": [], + "Wyomingite's": [], + "SAM": ["M"], + "chomps": [], + "bassos": [], + "cleanness's": [], + "Nicaraguan's": [], + "organics's": [], + "willowy": [], + "oubliettes": [], + "renegading": [], + "sorrel": ["S", "M"], + "passingly": [], + "margins": [], + "unfavorably": [], + "nurser's": [], + "Bootes's": [], + "proselytizers": [], + "snobbishness": ["M"], + "irritation's": [], + "avenging": [], + "2nd": ["p"], + "crinkle'sing": [], + "robocalls": [], + "pope's": [], + "homeland'ses": [], + "dybbuks": [], + "undigested": [], + "lavishness's": [], + "muncheds": [], + "scurvily": [], + "soothed": [], + "march'sed": [], + "whirligig": ["M", "S"], + "gasheds": [], + "drape": ["D", "R", "S", "M", "Z", "G"], + "jejunum": ["M"], + "clarifications": [], + "paintboxes": [], + "toboggan": ["Z", "G", "S", "M", "D", "R"], + "watches": [], + "preempted": [], + "shuts": [], + "zilch's": [], + "bilks": [], + "kettledrums": [], + "cpd": [], + "disunbarred": [], + "Brandeis": ["M"], + "understands": [], + "woundeder": [], + "bottlersing": [], + "railleries": [], + "saddlers": [], + "Pilates's": [], + "curtained": [], + "obnoxiously": [], + "swaddleds": [], + "beatener": [], + "susceptibility's": [], + "tattling": [], + "Farsi": ["M"], + "endangerment": ["M"], + "Averroes's": [], + "agendas": [], + "huffiness": ["M"], + "thumbnails": [], + "sashes": [], + "bejeweleding": [], + "Luxembourger": ["M"], + "tromp": ["S", "G", "D"], + "sebum": [], + "kn": [], + "elevation": ["M"], + "ploy": ["S"], + "Santeria's": [], + "chatter": ["M", "D", "R", "Z", "G", "S"], + "beagle": ["S", "M"], + "analogously": [], + "rattles's": [], + "phagocyte's": [], + "smother'sed": [], + "huskies's": [], + "politic": ["S"], + "Tunney": ["M"], + "Jetway": ["M"], + "guesthouses": [], + "spellbound": [], + "subbranch'ses": [], + "turbots's": [], + "heathenish": [], + "ears's": [], + "seguing": [], + "blonde'ses": [], + "overbites": [], + "hardwood's": [], + "unction's": [], + "anecdotal": ["Y"], + "metastasis": ["M"], + "sterility's": [], + "stopwatch'ses": [], + "postscripts's": [], + "sootiest": [], + "snide": ["R", "Y", "T"], + "floodwaters": [], + "draw's": [], + "chm": [], + "leaching": [], + "Fiberglas's": [], + "province's": [], + "liberalism's": [], + "likes": [], + "nosed": [], + "wordage's": [], + "directness": ["I", "M"], + "Albania's": [], + "icebox": ["M", "S"], + "chants": [], + "tympanum": ["S", "M"], + "seaplane's": [], + "rainstorm'ses": [], + "implementingable": [], + "wagtail": ["S", "M"], + "cuteness's": [], + "bloodsucker's": [], + "rusty": ["R", "P", "N", "T"], + "singe's": [], + "Scripture": ["S", "M"], + "earnests's": [], + "Floridians's": [], + "rested": [], + "strafeds": [], + "fornicatingen": [], + "filigrees": [], + "golly's": [], + "beepsers": [], + "dimity's": [], + "balls": ["D", "S", "G"], + "thoroughbred": ["M", "S"], + "autumn": ["S", "M"], + "Earnhardt's": [], + "handwriting": ["M"], + "mats": [], + "enfranchisesment": [], + "dishevelingment": [], + "flossiest": [], + "Aryan": ["M", "S"], + "shim's": [], + "Hokkaido's": [], + "widget": ["S"], + "squawkers": [], + "disincline": [], + "presaged": [], + "tenderfoot'ses": [], + "supposinged": [], + "upload": ["S", "D", "G"], + "briskingness": [], + "ABCs's": [], + "freelances's": [], + "Republican's": [], + "astonish": ["D", "S", "L", "G"], + "untranslated": [], + "footstool's": [], + "bifurcateds": [], + "Pippin": ["M"], + "poetesses": [], + "UHF": ["M"], + "enforceable": ["U"], + "unfamiliarity": [], + "Strasbourg's": [], + "calumniator's": [], + "entr'acte": [], + "elders": [], + "veiled": [], + "fumblers": [], + "coonskin'ses": [], + "gawkings": [], + "luncheon's": [], + "interrelatesing": [], + "inferiors": [], + "bull'sed": [], + "conspiring": [], + "clutches": [], + "buncos's": [], + "deceptively": [], + "debrief": [], + "cyclometer'ses": [], + "awes's": [], + "derelict": ["M", "S"], + "anesthesiologist": ["S", "M"], + "pirogi": ["M"], + "blooped": [], + "dashing": ["Y"], + "abhorrence": ["M"], + "timelier": [], + "thinkerable": [], + "corsages": [], + "latticeworks": [], + "auctioned": [], + "Fanny's": [], + "pilothouse's": [], + "rouge'sing": [], + "paradisaical": [], + "zookeeper": ["S", "M"], + "rebellion'ses": [], + "hereby": [], + "pow": [], + "whiskers": [], + "Marceau": ["M"], + "strays's": [], + "smorgasbord's": [], + "profs": [], + "chandler's": [], + "deflectors's": [], + "miracle's": [], + "indefatigably": [], + "imagined": [], + "billions": [], + "unstopping": [], + "forcefully": [], + "dude": ["M", "S"], + "scarecrow's": [], + "inculcation": ["M"], + "invidiously": [], + "Fitzpatrick": ["M"], + "intellect'ses": [], + "Jeremiahs": [], + "slaloming": [], + "incarcerate": ["X", "D", "S", "G", "N"], + "recipient's": [], + "meadow's": [], + "beading's": [], + "Calvinist's": [], + "whitehead's": [], + "bullfinch'ses": [], + "greet": ["Z", "G", "J", "S", "D", "R"], + "cyclops's": [], + "cockeyed": [], + "kinglies": [], + "possess": ["A", "E", "V", "G", "S", "D"], + "discriminant": [], + "unloosen": [], + "sophistry's": [], + "washbowls's": [], + "bisectors's": [], + "knobbier": [], + "Anaheim's": [], + "pettifogger's": [], + "conga'sed": [], + "rightists's": [], + "corrugation": ["M"], + "impressionable": [], + "Chad's": [], + "Terra": ["M"], + "quackery": ["M"], + "fixing": [], + "rightful": ["P", "Y"], + "sandblast'sed": [], + "rakishly": [], + "gradation's": [], + "checkrooms": [], + "professions's": [], + "Worms": ["M"], + "longways": [], + "postponeds": [], + "forsythia": ["S", "M"], + "jackboot'sed": [], + "spumoni's": [], + "pilled": [], + "Sarawak": ["M"], + "meaning": ["M"], + "emoticons": [], + "festered": [], + "chromosomal": [], + "aliveness": ["M"], + "modishness": ["M"], + "misconceive": ["G", "D", "S"], + "epigraphy's": [], + "photostat's": [], + "snickers": [], + "undershoot": ["S", "G"], + "mutes": [], + "bird's": [], + "Jaycees's": [], + "nestled": [], + "flaweding": [], + "pension's": [], + "bedazzlement's": [], + "combustion": ["M"], + "window": ["S", "M", "D", "G"], + "Delgado": ["M"], + "preventive's": [], + "tillerers": [], + "divorcee'ses": [], + "demoniac": [], + "dervish's": [], + "feasible": ["I", "U"], + "pillowslip'ses": [], + "laminged": [], + "pioneer's": [], + "nosecone": ["S", "M"], + "perceiveds": [], + "Ba": ["M"], + "Wahhabi's": [], + "shelling": [], + "cowls": [], + "tastiness": ["M"], + "parachutist'ses": [], + "navvies": [], + "migratinged": [], + "whipcord": ["M"], + "problematically": [], + "standee'ses": [], + "Shintoist's": [], + "installment's": [], + "pacing": [], + "stomachaches": [], + "troubleshooteder": [], + "catapulting": [], + "asteriskeds": [], + "hazard'sed": [], + "Celt's": [], + "bodgeds": [], + "Izmir": ["M"], + "subduesing": [], + "ubiquitously": [], + "humdingers": [], + "waterwheel's": [], + "macs": [], + "revise": [], + "Hittite's": [], + "zymurgy": ["M"], + "zeros": [], + "befogged": [], + "redeprogram": [], + "shrugged": [], + "Rachelle": ["M"], + "pickle's": [], + "concretions": [], + "bookingsing": [], + "smackerers": [], + "strife": ["M"], + "waterlogged": [], + "Finch's": [], + "brouhahas's": [], + "drilled": [], + "liberates": [], + "chlordane's": [], + "mainmast'ses": [], + "grist's": [], + "teachersing": [], + "wring'ser": [], + "magnetosphere": [], + "conversationalists": [], + "proviso": ["S", "M"], + "willpower's": [], + "implementers": [], + "caboose": ["S", "M"], + "workforce": ["M"], + "grandfather": ["G", "M", "D", "Y", "S"], + "hernias's": [], + "nightshade": ["S", "M"], + "projector'ses": [], + "carboy's": [], + "defoliator's": [], + "personnel's": [], + "matchlock's": [], + "Sussex's": [], + "murderer": ["M"], + "bedpans's": [], + "entropy": ["M"], + "smothers": [], + "pancreas": ["M", "S"], + "voyeurism": ["M"], + "glimmereding": [], + "perpetuals's": [], + "intersected": [], + "samarium's": [], + "cooperativeness": ["M"], + "race'sers": [], + "estates's": [], + "bridgework's": [], + "Kodachrome's": [], + "bounding": [], + "Goiania": ["M"], + "whirlpool": ["M", "S"], + "Narcissus": ["M"], + "wayward": ["P", "Y"], + "chipping": ["S"], + "audaciousness's": [], + "tenets's": [], + "orbitals's": [], + "shipment's": [], + "respray": [], + "opportunism's": [], + "anchorpersons's": [], + "dandleds": [], + "twofers's": [], + "cognizant": [], + "Liberace's": [], + "bounce": ["D", "R", "S", "M", "Z", "G"], + "recondone": [], + "Grahame's": [], + "roofersing": [], + "troubleds": [], + "beech": ["M", "S"], + "mastiffs's": [], + "nuzzle's": [], + "Dubcek's": [], + "wazoos": [], + "rovers": [], + "crumples": [], + "second's": [], + "subscriptions": [], + "evaluateds": [], + "banknote": ["S", "M"], + "nineteenth": ["M"], + "gritty": ["R", "T", "P"], + "airfare": ["S", "M"], + "Delores's": [], + "soc": [], + "choral": ["M", "Y", "S"], + "progressivelies": [], + "escapements": [], + "Abernathy": ["M"], + "Koreans's": [], + "pussyfooting": [], + "writhe'sing": [], + "boules": [], + "luminescence's": [], + "kowtow'sed": [], + "clauses": [], + "Laredo": ["M"], + "storieds": [], + "frugality": ["M"], + "predominating": [], + "liked": [], + "exhibiting's": [], + "panhandleder": [], + "faves": [], + "raffishness": ["M"], + "monoxides": [], + "gamble": ["D", "R", "S", "M", "Z", "G"], + "overcompensation's": [], + "alloys": [], + "showcasing": [], + "upendinged": [], + "breezier": [], + "convoy'sed": [], + "rendering": ["M"], + "profiteering": ["M"], + "clench'sed": [], + "overrun": ["S", "M"], + "Mmes": [], + "enterprise's": [], + "godliness's": [], + "geography": ["S", "M"], + "Cretaceous's": [], + "enviably": [], + "happier": [], + "deliverable": [], + "pureness": ["M"], + "reassertion": [], + "embellishmenting": [], + "egomaniacs": [], + "ween": ["D", "S", "G"], + "ghoulishliness": [], + "stapleder": [], + "humanness's": [], + "headbuttsing": [], + "streetlight's": [], + "Peruvians": [], + "misspends": [], + "hermit's": [], + "gonads": [], + "battlefield": ["M", "S"], + "curlier": [], + "Mascagni's": [], + "dimple'sing": [], + "sparers": [], + "Annie's": [], + "embraces": [], + "chauffeuring": [], + "newcomer's": [], + "unclaimed": [], + "yonder": [], + "splotchiest": [], + "clamoreds": [], + "dickensers": [], + "resistances's": [], + "ditty's": [], + "timezone": [], + "Dagwood's": [], + "juiceder": [], + "abbot'ses": [], + "vortexes": [], + "gourmands's": [], + "anthem'ses": [], + "tinware's": [], + "Aztecan": ["M"], + "insinuation": ["M"], + "enlists": [], + "Pusey's": [], + "womanizers": [], + "shiitakes": [], + "baps": [], + "canticle's": [], + "abode'ses": [], + "exertion'ses": [], + "barrette's": [], + "transvestism's": [], + "neurotic": ["M", "S"], + "intercede": ["G", "D", "S"], + "dizzied": [], + "evacuatingen": [], + "corgi": ["S", "M"], + "decorum's": [], + "indexation's": [], + "Feb's": [], + "instrumenting": [], + "skateboarding's": [], + "Stalinist": ["M"], + "redwoods": [], + "mollifiesen": [], + "wryly": [], + "textbook's": [], + "wodge": ["S"], + "whining": [], + "annotationsing": [], + "fine": ["C", "A", "F", "T", "G", "D", "S"], + "Cavour": ["M"], + "condescension": ["M"], + "underfur's": [], + "sliver's": [], + "Langmuir's": [], + "I've": [], + "Miltown": ["M"], + "breeding": ["I", "M"], + "plonk": ["D", "R", "S", "Z", "G"], + "championeds": [], + "brazensed": [], + "glossing": [], + "Walmart": ["M"], + "bewares": [], + "headquartering": [], + "murmur's": [], + "dictatorships's": [], + "eunuch": ["M"], + "gratifyingly": [], + "tickersing": [], + "impress'sed": [], + "worldwide": [], + "prance's": [], + "stepdad": ["M", "S"], + "sphinxes": [], + "squat'sness": [], + "electrocuting": [], + "standee": ["M", "S"], + "calibers's": [], + "accomplishmenting": [], + "defense's": [], + "complieds": [], + "generalizing": [], + "demoing": [], + "outscores": [], + "congealment's": [], + "Q": [], + "commune": ["X", "D", "S", "M", "G", "N"], + "danger": ["M"], + "leisurely": [], + "operated": [], + "larcenies": [], + "antitoxin's": [], + "Potter": ["M"], + "proposer": [], + "resonators's": [], + "conglomerate'sing": [], + "pillage": ["M", "Z", "G", "D", "R", "S"], + "eaglet": ["M", "S"], + "immunizing": [], + "toxicology": ["M"], + "wainscoteding": [], + "misspeakings": [], + "affirmation": ["A", "M", "S"], + "iterative": [], + "strikersing": [], + "tightly": [], + "Leningrad's": [], + "beefcake": ["M", "S"], + "native": ["M", "S"], + "legalizes": [], + "colludes": [], + "stalk": ["S", "M", "D", "R", "J", "Z", "G"], + "Nettie": ["M"], + "arabesque'ses": [], + "anvil'ses": [], + "allegiances": [], + "goalkeeping's": [], + "oboist": ["M", "S"], + "recline": ["D", "R", "S", "Z", "G"], + "Carmella": ["M"], + "decimal": ["S", "M"], + "globetrotter'ses": [], + "showboatings": [], + "about": [], + "geography's": [], + "clunking": [], + "sophisticated": ["U"], + "cremating": [], + "pastime'ses": [], + "Millikan": ["M"], + "longitudinally": [], + "doctrinaire": ["M", "S"], + "harassment": ["M"], + "Chaitin's": [], + "terrifyingly": [], + "forded": [], + "Schick": ["M"], + "countersignature'ses": [], + "mansards": [], + "pompously": [], + "determent": ["M"], + "heeling": [], + "recount": [], + "firetrap'ses": [], + "honeypots": [], + "complication's": [], + "mahouts": [], + "niftiest": [], + "aria's": [], + "argue": ["Z", "G", "D", "R", "S"], + "sources": [], + "rubicund": [], + "intriguer": ["M"], + "neutralizing": [], + "sounds": [], + "binned": [], + "miracle'ses": [], + "symphonies": [], + "savvier": [], + "boosting's": [], + "catchy": ["R", "T"], + "parson'ses": [], + "consuls": [], + "continuously": [], + "chickpeas": [], + "specialty's": [], + "dillydally": ["D", "S", "G"], + "metabolism": ["S", "M"], + "fortnight": ["M", "Y", "S"], + "pregnancies": [], + "kiss": ["M", "D", "R", "S", "B", "Z", "G"], + "gonged": [], + "cokes": [], + "watchersing": [], + "psalms": [], + "shuntsed": [], + "Murat": ["M"], + "rave": ["J", "M", "Z", "G", "D", "R", "S"], + "Tasmania's": [], + "broomstick's": [], + "snookereds": [], + "essence": ["S", "M"], + "iterators": [], + "potentiate": ["G", "D", "S"], + "Mendel": ["M"], + "conductibility's": [], + "garishly": [], + "raisin": ["S", "M"], + "bode": ["S"], + "lidos": [], + "loan": ["M", "D", "R", "S", "Z", "G"], + "readability": ["S", "M"], + "Altoids's": [], + "clod": ["M", "S"], + "slush": ["M"], + "trails": [], + "Coulter's": [], + "beatitude": ["S", "M"], + "tribesman's": [], + "donnybrook's": [], + "jerky": ["T", "R", "M", "P"], + "jerksing": [], + "revivalists's": [], + "civility": ["I", "S", "M"], + "statesmanship's": [], + "Saar's": [], + "blithely": [], + "correspond": ["S", "D", "G"], + "crankcase": ["S", "M"], + "Maldonado's": [], + "brilliants": [], + "inane": ["R", "Y", "T"], + "dingus": ["M", "S"], + "digesting": [], + "restrictions": [], + "amendinged": [], + "Eysenck": ["M"], + "Mainer's": [], + "Goff's": [], + "days": [], + "vagabond'sed": [], + "pastel'ses": [], + "eminence's": [], + "schmuck's": [], + "garb's": [], + "whitenersing": [], + "prettying": [], + "piquantly": [], + "turbaned": [], + "minister": ["S", "G", "M", "D"], + "Schwinn's": [], + "Caiaphas's": [], + "lightensed": [], + "firelight's": [], + "Pegasus": ["M", "S"], + "neat": ["N", "R", "Y", "P", "X", "T"], + "phosphorescently": [], + "fiat": ["M", "S"], + "Jerry": ["M"], + "thin": ["Y", "S", "P"], + "spites's": [], + "safariing": [], + "greenhouses's": [], + "assimilating": [], + "tenderhearted": ["P"], + "obstinacy's": [], + "bankrolled": [], + "spaceder": [], + "sufficient": ["I", "Y"], + "claustrophobia": ["M"], + "vise": ["A", "C", "M", "G", "D", "S"], + "edibility": ["M"], + "leucotomies": [], + "rosin'sed": [], + "osteoarthritis": ["M"], + "pomander": ["S", "M"], + "Cree's": [], + "module'ses": [], + "Latasha's": [], + "annoyinged": [], + "boughs": [], + "wussies's": [], + "accessorizesing": [], + "Karenina": ["M"], + "boar": ["S", "M"], + "animate": ["A", "D", "S", "G", "N"], + "unrolled": [], + "rivulet'ses": [], + "Delibes's": [], + "recap": ["M", "S"], + "Pauling's": [], + "centerfold": ["M", "S"], + "roisterer's": [], + "floss's": [], + "enumeration's": [], + "inhabitant's": [], + "Azores's": [], + "seasonal": ["Y"], + "canticle": ["M", "S"], + "sliver": ["G", "S", "M", "D"], + "relying": [], + "generalizes": [], + "improvises": [], + "abrade": ["G", "D", "S"], + "conjunct's": [], + "minuet": ["S", "M"], + "arm's": [], + "upholder's": [], + "damaging": [], + "Switz": [], + "sweetness's": [], + "hibernateds": [], + "cohabitinged": [], + "narc": ["M", "S"], + "bossesing": [], + "tubercular": [], + "Linwood": ["M"], + "repetitions": [], + "elongateds": [], + "hallowsing": [], + "Mauritian's": [], + "settings": [], + "subaltern's": [], + "everyone's": [], + "redivideds": [], + "lymphomas": [], + "snipings": [], + "ions's": [], + "bisectings": [], + "sarcoma": ["M", "S"], + "dynamic's": [], + "emasculationed": [], + "nominating": [], + "timeserving": ["M"], + "demography": ["M"], + "chicanery": ["S", "M"], + "plosive": ["S"], + "betook": [], + "productions's": [], + "driver": ["M"], + "microwavingable": [], + "mitigate": ["D", "S", "G", "N"], + "Hellenisms": [], + "lumberman": ["M"], + "woolliers": [], + "claiminged": [], + "amigo": ["M", "S"], + "crullers": [], + "readersing": [], + "legalities's": [], + "castigators": [], + "Catiline": ["M"], + "coronals": [], + "pwn": ["S", "G", "D"], + "objectify": ["N", "G", "D", "S"], + "unfortunate's": [], + "trill's": [], + "seafloors's": [], + "livest": [], + "interpolationsed": [], + "Dina's": [], + "conservationism": ["M"], + "bounteousness": ["M"], + "jovial": ["Y"], + "quenchinged": [], + "acacia's": [], + "curvature": ["S", "M"], + "staunchness": ["M"], + "depravinged": [], + "CinemaScope": ["M"], + "capeskin's": [], + "straightenersing": [], + "phew": [], + "expropriation": ["M"], + "sneaky": ["T", "R", "P"], + "organic's": [], + "enthuses": [], + "campinged": [], + "Beatrix's": [], + "materials": [], + "gymnastics's": [], + "barbell's": [], + "buggering": [], + "businessperson's": [], + "unfairly": [], + "hopeful": ["P", "S", "M", "Y"], + "decagon'ses": [], + "alienate": ["D", "S", "G", "N"], + "Manchus": [], + "backdrop": ["M", "S"], + "Leann's": [], + "ovarian": [], + "rush's": [], + "bribe's": [], + "ravished": [], + "tunny": ["S", "M"], + "gesticulations": [], + "minutia's": [], + "submissiveness": ["M"], + "patinas": [], + "leasebacks's": [], + "chinchilla": ["M", "S"], + "repeat's": [], + "shivers's": [], + "catalyst'ses": [], + "hajjis": [], + "grants's": [], + "plovers": [], + "chinless": [], + "councilman's": [], + "Pen's": [], + "plagiary's": [], + "touchpapers": [], + "workfare's": [], + "Mohammad's": [], + "Blackwell": ["M"], + "wrinkly's": [], + "dissemblinged": [], + "porphyry's": [], + "critically": [], + "sledged": [], + "sited": [], + "gurney'ses": [], + "broadband's": [], + "Melanesian": ["M"], + "threnody": ["S", "M"], + "muzzle": ["D", "S", "M", "G"], + "Good's": [], + "hoovering": [], + "pokey'ses": [], + "palatinate": ["M", "S"], + "stalk'sed": [], + "undermines": [], + "overcompensates": [], + "cartwheel'sed": [], + "megaton": ["S", "M"], + "Gelbvieh's": [], + "dumbwaiter's": [], + "explicitness's": [], + "specializes": [], + "Aberdeen": ["M"], + "electrifies": [], + "puddling's": [], + "grapnel'ses": [], + "trams": [], + "sinker's": [], + "sensationalize": ["G", "D", "S"], + "rosewood": ["M", "S"], + "afforestings": [], + "bubs": [], + "denationalization": [], + "howdah": ["M"], + "activators": [], + "brotherliness": ["M"], + "leitmotif'ses": [], + "stink": ["Z", "G", "S", "M", "R"], + "detrimentally": [], + "shawl'ses": [], + "angleworm's": [], + "Lowlands": [], + "envelop": ["S", "L", "D", "R", "Z", "G"], + "psychokinesis": [], + "gourmets": [], + "conglomerating": [], + "Nazism'ses": [], + "fluffierness": [], + "knockoffs": [], + "Diego": ["M"], + "soldier'sed": [], + "dominatrix": ["M"], + "nest": ["M", "D", "S", "G"], + "Titania's": [], + "blackamoor's": [], + "gardeneder": [], + "foiling": [], + "ratiocinating": [], + "inundations": [], + "she's": [], + "gangland": ["M"], + "hyperbola's": [], + "uproariously": [], + "rotations": [], + "pyres": [], + "interstice'ses": [], + "hypocrite'ses": [], + "auspices's": [], + "sexology's": [], + "lithographeder": [], + "plateau": ["S", "M", "D", "G"], + "dumpings": [], + "gastronomy's": [], + "subtracted": [], + "caricature'sing": [], + "hotfoot'sed": [], + "beastlier's": [], + "taciturnly": [], + "billionaire's": [], + "urethra's": [], + "shadowy": ["R", "T"], + "inseminatingen": [], + "imprisonments's": [], + "perversely": [], + "puzzlers": [], + "prickliest": [], + "beheadings": [], + "sprawled": [], + "simpering": ["Y"], + "exhibitionists": [], + "Wallis's": [], + "prior": ["M", "S"], + "microphones": [], + "bruiseder": [], + "transgressinged": [], + "reekeds": [], + "silteds": [], + "Wall'ser": [], + "slurp'sed": [], + "startup's": [], + "smoother": [], + "sulky's": [], + "bobsledder": ["M", "S"], + "tabs's": [], + "gripeder": [], + "resentment'ses": [], + "hajj": ["M"], + "satiatingen": [], + "Ampere": ["M"], + "pensionablers": [], + "groundhog": ["M", "S"], + "looksers": [], + "manservant": ["M"], + "sortinged": [], + "fragment'sed": [], + "whitewashesing": [], + "subsystems's": [], + "deadheadsed": [], + "additionally": [], + "hank": ["M", "R", "Z", "S"], + "touchscreen'ses": [], + "microlight'ses": [], + "foragersing": [], + "rezone": [], + "eloquence's": [], + "cardsing": [], + "Jubal": ["M"], + "corrupter": [], + "tendons's": [], + "Nazareth": ["M"], + "peke'ses": [], + "Goddard": ["M"], + "headhunters": [], + "greatliness": [], + "locate": ["E", "A", "G", "N", "D", "S"], + "teethinged": [], + "booby's": [], + "spewings": [], + "dobbins's": [], + "cussednessly": [], + "militia's": [], + "chill": ["J", "P", "Z", "T", "G", "M", "D", "R", "S"], + "interrelationsed": [], + "cloakroom": ["M", "S"], + "philanderersing": [], + "Annette's": [], + "stymies": [], + "containeder": [], + "squeeze": ["B", "M", "Z", "G", "D", "R", "S"], + "hoopla's": [], + "cancellation's": [], + "reservist": ["S", "M"], + "prosperings": [], + "rudely": [], + "fabricated": [], + "bulletin": ["M", "D", "G", "S"], + "resale": [], + "orbits": [], + "muralist's": [], + "Barton's": [], + "commuters": [], + "undemonstratively": [], + "twirly": [], + "manifestations's": [], + "animalcules's": [], + "phi's": [], + "turners": [], + "Mesozoic's": [], + "pd": [], + "wryest": [], + "rustling": [], + "pruned": [], + "manger's": [], + "skywriters's": [], + "denude": ["G", "D", "S"], + "reminisce": ["G", "D", "S"], + "pitfalls": [], + "mothballing's": [], + "strongbox": ["M", "S"], + "ethylene's": [], + "fireball'ses": [], + "clxiv": [], + "metalworker": ["M"], + "chairmanship's": [], + "wee's": [], + "tropism's": [], + "neigh": ["M", "D", "G"], + "bayonet": ["S", "M", "D", "G"], + "yodels's": [], + "ashtrays's": [], + "obit": ["M", "S"], + "precipitationed": [], + "sortie": ["D", "S", "M"], + "cartload's": [], + "fecundity": ["M"], + "alumina": ["M"], + "Laplander": [], + "finesseds": [], + "buggy's": [], + "salve": ["M", "Z", "G", "D", "R", "S"], + "croquette's": [], + "rapine's": [], + "outrageous": ["Y"], + "money's": [], + "terms": [], + "applesauce": ["M"], + "laboreder": [], + "P'sen": [], + "simulacrums": [], + "hazer": ["M"], + "propensity": ["S", "M"], + "tantrum": ["S", "M"], + "business": ["M", "S"], + "ambidexterity's": [], + "willfulness": ["M"], + "oafs's": [], + "moneylenders": [], + "miscarriage'ses": [], + "safers": [], + "underachiever's": [], + "statistician's": [], + "procrastinators": [], + "tendeding": [], + "amazinged": [], + "prologue's": [], + "gruntsing": [], + "Ruben's": [], + "bios's": [], + "legionaries's": [], + "perterly": [], + "megaliths": [], + "residents": [], + "Harrington's": [], + "particularities": [], + "barrenness's": [], + "Xingu's": [], + "carefullest": [], + "Cd's": [], + "Grenadian": ["M", "S"], + "liner's": [], + "leverage's": [], + "kilohertz's": [], + "syncopating": [], + "reverences's": [], + "attack's": [], + "certainty's": [], + "givens's": [], + "angled": [], + "hustler": ["M"], + "teleplays": [], + "quietus": ["M", "S"], + "iconoclasts": [], + "chastiser's": [], + "gemstones": [], + "deploys": [], + "ideal'sly": [], + "transparencies": [], + "contemptuously": [], + "cavil": ["Z", "G", "J", "M", "D", "R", "S"], + "Lynda": ["M"], + "divests": [], + "abnegateds": [], + "overarching": [], + "bedder": [], + "liftersing": [], + "burials": [], + "statuette's": [], + "Sherwood's": [], + "codifiersing": [], + "interpenetratesing": [], + "cadaverous": [], + "Menotti": ["M"], + "gavel's": [], + "Angles": [], + "Revelation": ["S", "M"], + "wardroom's": [], + "overtaxed": [], + "edgingings": [], + "rakes": [], + "quart'ses": [], + "superficial": ["Y"], + "Kris's": [], + "invests": [], + "assassins": [], + "scurrilously": [], + "scherzo'ses": [], + "gate'sing": [], + "Nikki": ["M"], + "Tobit": ["M"], + "pellets": [], + "mobilizations": [], + "paleontologist": ["S", "M"], + "threader's": [], + "habituatingen": [], + "badder": [], + "scheme's": [], + "flayed": [], + "Pennsylvanian": ["M", "S"], + "leans": [], + "firearms": [], + "protestant": ["S"], + "dosings": [], + "climaxesing": [], + "silos": [], + "heavyweight's": [], + "copies": [], + "woodsmen": [], + "flourisheds": [], + "supergrasses": [], + "ghastlinesser": [], + "clewing's": [], + "till": ["E", "D", "R", "Z", "G", "S"], + "transnational's": [], + "caravels": [], + "tipper": ["S", "M"], + "Pratt's": [], + "Shenyang": ["M"], + "frill'sed": [], + "Zachary": ["M"], + "mitigating": [], + "hauberk": ["S", "M"], + "parlaying's": [], + "adhesive's": [], + "ladleds": [], + "fabled": [], + "touchiness": ["M"], + "Cordelia": ["M"], + "bodkin's": [], + "insignia": ["M"], + "jabots's": [], + "reckoning's": [], + "outmatcheds": [], + "mythologized": [], + "gorp'ses": [], + "nuclei": [], + "mistral'ses": [], + "coppery": [], + "runes": [], + "splatters": [], + "amplitude": ["S", "M"], + "slipperinesser": [], + "intelligibility": ["M"], + "cameramen": [], + "sincerer": [], + "instrument'sed": [], + "leaved": [], + "archangel": ["M", "S"], + "mood's": [], + "fractured": [], + "boning": [], + "swiftest": [], + "lutanist's": [], + "Jolene": ["M"], + "pimpliest": [], + "simplicity's": [], + "Pearl's": [], + "overwintered": [], + "telex": ["M", "D", "S", "G"], + "suggesting": [], + "Inuktitut's": [], + "doctrines": [], + "extortion'ser": [], + "harmonizers": [], + "meridian": ["M", "S"], + "efface": ["D", "S", "L", "G"], + "presidents": [], + "pillorying": [], + "brooms": [], + "chivalry": ["M"], + "spermicide's": [], + "September": ["M", "S"], + "expiry": ["M"], + "plush'ser": [], + "drain": ["S", "M", "D", "R", "Z", "G"], + "ankh's": [], + "breves": [], + "installations": [], + "blanked": [], + "mutineer": ["S", "M"], + "Parmesan": ["M", "S"], + "pleased": [], + "vamoosing": [], + "soignee": [], + "superciliousness": ["M"], + "blaster's": [], + "houseparents": [], + "fallows's": [], + "mares": [], + "gabble'sing": [], + "disruptions": [], + "splattering": [], + "resewn": [], + "bearskins": [], + "messed": [], + "loveliness's": [], + "furled": [], + "despair'sed": [], + "sigma's": [], + "Tucson": ["M"], + "appropriators's": [], + "duets": [], + "Angstrom": ["M"], + "Krasnoyarsk": ["M"], + "homey": ["S", "M", "P"], + "mercury's": [], + "motiles": [], + "collectivizeds": [], + "clicker's": [], + "shall": [], + "hayseed's": [], + "tennis": ["M"], + "septum's": [], + "convoyed": [], + "Hegel": ["M"], + "handcrafted": [], + "overrate": ["G", "D", "S"], + "sibilants": [], + "shinnies": [], + "clipped": [], + "Skinner": ["M"], + "biodegrading": [], + "bunnies's": [], + "horrify": ["D", "S", "G"], + "windchill": ["M"], + "cornroweding": [], + "sunblocks": [], + "complaisant": ["Y"], + "lappet's": [], + "sailboarder": ["M"], + "typo": ["M", "S"], + "Rutledge": ["M"], + "sloshesing": [], + "schemersing": [], + "barginged": [], + "Somalis": [], + "astrophysicist's": [], + "Leghorn": ["M"], + "comfy": ["R", "T"], + "Anglicanism": ["M", "S"], + "parsimonious": ["Y"], + "key": ["S", "G", "M", "D"], + "Munro": ["M"], + "passions": [], + "forgetfulness": ["M"], + "cornering": [], + "referrer's": [], + "clacking": [], + "feasteder": [], + "pool's": [], + "Appalachia": ["M"], + "Handel": ["M"], + "intensification": ["M"], + "uttersed": [], + "Rob": ["M"], + "deprecatingly": [], + "housebroke": [], + "skinhead's": [], + "imaginable": ["U"], + "stayer": [], + "overindulgence": ["M"], + "liaisinged": [], + "caroled": [], + "nitrites": [], + "snaffleds": [], + "razz": ["G", "M", "D", "S"], + "bridging": [], + "fortieths": [], + "colonist": ["S", "M"], + "bankruptcies's": [], + "quirk's": [], + "rocker": ["M"], + "clearinghouse": ["S", "M"], + "corporals's": [], + "dipso": ["S"], + "instituted": [], + "putrescence": ["M"], + "hone'ses": [], + "principal'sly": [], + "misfitted": [], + "Eton's": [], + "rickets": ["M"], + "rusticity's": [], + "arachnid's": [], + "alumna": ["M"], + "stretchiest": [], + "Koizumi": ["M"], + "gauchest": [], + "spoofing": [], + "pawing's": [], + "Kazantzakis": ["M"], + "penis": ["M", "S"], + "mealybug's": [], + "archduchess'ses": [], + "deviate'sing": [], + "nasalization": ["M"], + "brownstone": ["M", "S"], + "tintinnabulation": ["M", "S"], + "adoptions's": [], + "poppets": [], + "fogginess's": [], + "quashes": [], + "deport": [], + "soundboard's": [], + "testing": [], + "Gadsden's": [], + "privets's": [], + "Menuhin's": [], + "squareder": [], + "aquanaut": ["M", "S"], + "starveling's": [], + "countrywide": [], + "strategically": [], + "demeanor": ["M"], + "fininged": [], + "Syrian'ses": [], + "resistance": ["S", "M"], + "Nordics": [], + "schoolmates": [], + "mintsers": [], + "agriculturists": [], + "hitchhike's": [], + "obeyeds": [], + "switcher's": [], + "sundials": [], + "Kenyan's": [], + "horn's": [], + "disconnection": [], + "pinata's": [], + "Keri": ["M"], + "admen": [], + "Thaddeus's": [], + "basting": [], + "greenhouse": ["S", "M"], + "Nikolai": ["M"], + "caddish": ["Y", "P"], + "unpreventable": [], + "Williamson": ["M"], + "watchband'ses": [], + "starling": ["S", "M"], + "Acrux": ["M"], + "veneer'sed": [], + "hypothyroid": ["M"], + "pimiento's": [], + "monitoreding": [], + "deputies": [], + "billy": ["S", "M"], + "rummaging": [], + "crossroads's": [], + "cruets's": [], + "showmanship's": [], + "spoofeding": [], + "hollereding": [], + "sleazinesser": [], + "manatee's": [], + "pugs's": [], + "sidewalk's": [], + "Aston's": [], + "candelabra's": [], + "plover": ["S", "M"], + "shovel's": [], + "civility's": [], + "karma": ["M"], + "tonsillectomies's": [], + "scents": [], + "fallening": [], + "antivenins": [], + "pigments": [], + "chronological": ["Y"], + "blancmange'ses": [], + "harderly": [], + "snitched": [], + "noblewoman's": [], + "weekdays's": [], + "conferencings": [], + "upmost": [], + "walling": [], + "medicals's": [], + "ores's": [], + "wriggle's": [], + "Ronstadt": ["M"], + "inundate": ["X", "D", "S", "G", "N"], + "fret'ses": [], + "proffering": [], + "counterpane's": [], + "acerbically": [], + "remarriage": [], + "overusing": [], + "equals's": [], + "transgressors": [], + "combined": ["U"], + "coarsens": [], + "peacetime's": [], + "Prakrit": ["M"], + "phrenologists": [], + "Seders": [], + "primer": ["M"], + "fazed": ["U"], + "rosebush's": [], + "inhabitants's": [], + "unimpaired": [], + "battlefields": [], + "cringing": [], + "Lorene's": [], + "knight's": [], + "Heine": ["M"], + "scorelines": [], + "cadgersing": [], + "adaptions": [], + "thyroid's": [], + "tethered": [], + "perorations": [], + "seedierness": [], + "Salish's": [], + "trajectories's": [], + "theater's": [], + "crosshatcheds": [], + "freighters": [], + "respondinged": [], + "demolisheds": [], + "orientate": ["E", "D", "S", "G", "N"], + "beastly": ["T", "P", "R", "M"], + "tradingsed": [], + "criticism": ["M", "S"], + "hucksterism's": [], + "harmonica's": [], + "appendicitis's": [], + "chukka'ses": [], + "trunking": [], + "deletioned": [], + "cocooning": [], + "glassblowing's": [], + "indention": ["M"], + "Haitians": [], + "clean": ["B", "J", "P", "Z", "T", "G", "D", "R", "Y", "S"], + "applicators's": [], + "quarreler": ["M"], + "penetrates": [], + "tectonic": ["S"], + "adverting": [], + "Eurodollars": [], + "poisoning": ["M"], + "stickler'ses": [], + "Cecil's": [], + "pitcher's": [], + "dinings": [], + "feudings": [], + "dabbler": ["M"], + "jars's": [], + "vinaigrette's": [], + "Chevrolet": ["M"], + "unadorned": [], + "skillfulness's": [], + "craftsman's": [], + "gradating": [], + "booklet": ["M", "S"], + "Missouri's": [], + "chromatography": [], + "Jodi": ["M"], + "broadcaster's": [], + "doubleheader'ses": [], + "unimpeded": [], + "gull'sed": [], + "albino": ["M", "S"], + "bumptiousness": ["M"], + "footnoted": [], + "winters's": [], + "submergeds": [], + "Lupe": ["M"], + "suction's": [], + "vacillationsing": [], + "MDT": [], + "heaver's": [], + "fined": [], + "chaffeds": [], + "limp": ["M", "D", "R", "Y", "S", "P", "T", "G"], + "matriculation": ["M"], + "neckerchief'ses": [], + "beefiest": [], + "Daimler's": [], + "turns": [], + "township": ["M", "S"], + "ferment'ses": [], + "uniform": ["S", "M", "D", "Y", "G"], + "mispronouncesing": [], + "F": ["M", "D"], + "pricklier": [], + "sectionalism": ["M"], + "articulates": [], + "expendable": ["S", "M"], + "scullersing": [], + "screw's": [], + "Pd's": [], + "harpoon": ["Z", "G", "S", "M", "D", "R"], + "Arkansas": ["M"], + "cherries": [], + "basement'ses": [], + "hominid's": [], + "flay": ["D", "G", "S"], + "kowtow's": [], + "martyrdom's": [], + "polyurethanes": [], + "Angelita's": [], + "corroding": [], + "Kansan's": [], + "lats": [], + "Phillips": ["M"], + "Welshwoman": [], + "beetle'sing": [], + "sophisticate's": [], + "Glaswegians's": [], + "psychotropics": [], + "honeycombed": [], + "pamphleteer": ["M", "S"], + "trons": [], + "byzantine": [], + "typographical": ["Y"], + "denigrate": ["D", "S", "G", "N"], + "burlesque's": [], + "enamelersing": [], + "bounciness": ["M"], + "spectator": ["S", "M"], + "diamond": ["S", "M"], + "acerbic": [], + "backs": [], + "cerement": ["M", "S"], + "jell": ["D", "S", "G"], + "epicenter'ses": [], + "Valenzuela's": [], + "speechwriters": [], + "slumlord": ["M", "S"], + "Sorbonne's": [], + "earldoms": [], + "compromises": [], + "Dundee": [], + "impregnating": [], + "thalamus": ["M"], + "sonnet": ["S", "M"], + "omicron's": [], + "verrucae": [], + "detail": [], + "floodgate's": [], + "commemorating": [], + "unfold": [], + "banquette's": [], + "drillers": [], + "souls": [], + "pantry's": [], + "adjudicators": [], + "kickstands": [], + "insistinged": [], + "ventilator": ["S", "M"], + "needlework": ["M"], + "homeliness's": [], + "spared": [], + "Cayuga": ["S", "M"], + "binds": [], + "kingpin": ["S", "M"], + "Jeannie": ["M"], + "masculinity": ["M"], + "discovery's": [], + "dartboard": ["M", "S"], + "terribly": [], + "mienens": [], + "Alistair": ["M"], + "thulium": ["M"], + "gibbet": ["G", "M", "D", "S"], + "Freon's": [], + "cantings": [], + "aster": ["E", "M", "S"], + "gorps": [], + "bourbons": [], + "jolt": ["M", "D", "R", "S", "Z", "G"], + "arranging": [], + "bulletproofsed": [], + "pharmacies's": [], + "remelt": [], + "diamonds's": [], + "pornographer's": [], + "stewardess'ses": [], + "transporting": [], + "Effie": ["M"], + "obscenities": [], + "pike'sers": [], + "lulled": [], + "backstair": ["S"], + "grippeder": [], + "stabber": ["M", "S"], + "denies": [], + "grotesque": ["S", "P", "M", "Y"], + "queerness's": [], + "taste": ["J", "M", "Z", "G", "D", "R", "S"], + "panpipes": ["M"], + "mutters": [], + "Bangladeshi's": [], + "aim": ["S", "M", "D", "G"], + "wisteria": ["S", "M"], + "Angelica's": [], + "explanation": ["M", "S"], + "routesing": [], + "hatemonger's": [], + "hypercritical": ["Y"], + "Kelly's": [], + "improvisational": [], + "embodied": [], + "wafteding": [], + "lash'sed": [], + "uninstalls": [], + "redwoods's": [], + "Ubuntu's": [], + "underwire": ["D", "S"], + "Cayuga's": [], + "wingspread's": [], + "appendicitis": ["M"], + "dismiss": [], + "unfixinged": [], + "leftovers's": [], + "unlatch": [], + "nonliving": ["M"], + "Arkwright's": [], + "gasses": [], + "cowings": [], + "milt": ["M", "D", "S", "G"], + "carpetbagger": ["M", "S"], + "blatancies": [], + "laughingly": [], + "Wozzeck": ["M"], + "studio's": [], + "signpost'sed": [], + "crochets": [], + "editorials": [], + "Thoreau's": [], + "urine's": [], + "troubleshooting": ["M"], + "mastic's": [], + "unfavorable": [], + "thud's": [], + "orthogonality": [], + "WMD": [], + "overrefined": [], + "huffy": ["P", "R", "T"], + "transistorizing": [], + "expurgate": ["D", "S", "G", "N", "X"], + "enveloping": [], + "gulden": ["M", "S"], + "abolishinged": [], + "clacking's": [], + "Cheri's": [], + "entrusts": [], + "shoreline's": [], + "crosschecking": [], + "enfolded": [], + "misreadingings": [], + "Heinz's": [], + "unwarrantable": [], + "villas": [], + "devilment's": [], + "sulfur's": [], + "Sharlene": ["M"], + "Lehman": ["M"], + "hooliganism": ["M"], + "agitatingen": [], + "Guernsey": ["M", "S"], + "cappuccino's": [], + "Rodger's": [], + "undershootsing": [], + "GDP": ["M"], + "teenager": ["M"], + "backspaces's": [], + "pandereder": [], + "asymmetry": ["S", "M"], + "meticulously": [], + "warmongering": ["M"], + "lifelong": [], + "bomber": ["M"], + "gendarme": ["M", "S"], + "palling": [], + "overthrows": [], + "carbide's": [], + "rheumatism's": [], + "sinker": ["M"], + "rationalized": [], + "shortcoming": ["M", "S"], + "Sept's": [], + "Morris": ["M"], + "cardigans": [], + "hawk": ["M", "D", "R", "Z", "G", "S"], + "induced": [], + "swervinged": [], + "antiserums": [], + "salsa's": [], + "normal": ["M", "Y"], + "kelvin's": [], + "cit": [], + "interviewee's": [], + "foretellings": [], + "rhetoricians's": [], + "outshouting": [], + "wielder": ["M"], + "rowdies's": [], + "purloined": [], + "hydroponics": ["M"], + "hydrolyzes": [], + "snivelerers": [], + "Mill's": [], + "quadrangles's": [], + "cinchonas": [], + "patrimonies's": [], + "frostiness": ["M"], + "steeliness": ["M"], + "Julia": ["M"], + "drenchinged": [], + "Elena": ["M"], + "dado's": [], + "chirruping": [], + "Peru": ["M"], + "brash": ["P", "T", "R", "Y"], + "suckling's": [], + "dehydrogenate": [], + "spurteding": [], + "ballot": ["S", "M", "D", "G"], + "damage'sing": [], + "backsliding": [], + "Singapore": ["M"], + "faucet's": [], + "straggleder": [], + "editor's": [], + "Ionian'ses": [], + "eyeballs": [], + "plums": [], + "lecturinged": [], + "abut": ["S", "L"], + "Jon's": [], + "flubs": [], + "Alaric": ["M"], + "Sabik": ["M"], + "NV": [], + "pharmaceutic's": [], + "throwback's": [], + "guarding": [], + "gumption": ["M"], + "hangnail'ses": [], + "prefrontal": [], + "curbstone": ["S", "M"], + "munches": [], + "kvetchers": [], + "harangue'sing": [], + "sim's": [], + "emancipator's": [], + "negotiate": ["A", "D", "S", "G", "N"], + "Olympiad": ["M", "S"], + "feline's": [], + "avarice": ["M"], + "omnipresent": [], + "jennies's": [], + "capitulatingen": [], + "fibrosis's": [], + "sluggers": [], + "rifle's": [], + "Gwendoline": ["M"], + "rectifier": ["M"], + "divestmented": [], + "ha": ["S", "H"], + "jiggly": [], + "hive'sing": [], + "approacheds": [], + "churnersing": [], + "oar's": [], + "queens": [], + "autocross": [], + "queenly": ["R", "T"], + "cure's": [], + "terminal": ["M", "Y", "S"], + "nutritionist's": [], + "sepulchered": [], + "mudguards's": [], + "Lane's": [], + "impressionists's": [], + "collatingen": [], + "Sabbath's": [], + "throng": ["G", "S", "M", "D"], + "spoons": [], + "Parisian's": [], + "offprint": ["S", "M"], + "candlewick's": [], + "Malian's": [], + "trivia": ["M"], + "beanpoles": [], + "tell": ["A", "G", "S"], + "playpen": ["S", "M"], + "decentralization": [], + "Puget's": [], + "dismayeding": [], + "distiller": [], + "cheating's": [], + "nephritis's": [], + "lullabies": [], + "correspondsed": [], + "curiousness": ["M"], + "Apollonian": ["M"], + "argots": [], + "recrudesceds": [], + "hectometer'ses": [], + "dark": ["P", "X", "T", "M", "N", "R", "Y"], + "eccentricity's": [], + "innocents": [], + "rut": ["S", "M"], + "bisexual's": [], + "grammar's": [], + "Michigander's": [], + "suffrage": ["M"], + "wheelering": [], + "lowboy's": [], + "confidant'ses": [], + "combating": [], + "sorrily": [], + "quarto's": [], + "tippets's": [], + "jots": [], + "Robin": ["M"], + "helicoptered": [], + "seriousness": ["M"], + "hoard'sed": [], + "audiotape's": [], + "overflow'sed": [], + "serendipitous": [], + "overcapitalizes": [], + "acclimates": [], + "studliest": [], + "deathless": ["Y"], + "upscale": [], + "Latasha": ["M"], + "Trujillo's": [], + "militarize": ["C", "D", "S", "G"], + "serum'ses": [], + "gleanerers": [], + "martens": [], + "perpetration": ["M"], + "churchwomen": [], + "tramplersing": [], + "directorate's": [], + "Somali's": [], + "sundeck": ["S"], + "preppies": [], + "huntresses": [], + "Maribel's": [], + "sportscasts": [], + "tonsureds": [], + "logo'ses": [], + "national's": [], + "supplanting": [], + "Turner": ["M"], + "audit": ["G", "M", "D", "S"], + "grayings": [], + "atheism": ["M"], + "nave's": [], + "wetter": ["S", "M"], + "felonious": [], + "yawl": ["M", "S"], + "atrocious": ["P", "Y"], + "braggarts's": [], + "vandalizing": [], + "civilizinged": [], + "Stimson": ["M"], + "caulkers": [], + "synergies": [], + "immolation's": [], + "clergy's": [], + "overselling": [], + "lido'ses": [], + "squirm's": [], + "Snake's": [], + "theatergoers's": [], + "brainwaves": [], + "ratchet'sed": [], + "basally": [], + "YWHA": [], + "effuseds": [], + "design's": [], + "Pacific's": [], + "pinkie's": [], + "pauperize": ["D", "S", "G"], + "pee's": [], + "pothead": ["S", "M"], + "likened": [], + "digitizes": [], + "beautifies": [], + "peddling": [], + "totality's": [], + "bloomers": [], + "blindnessers": [], + "verge": ["F", "D", "S", "G"], + "homemaker's": [], + "reborn": [], + "chastely": [], + "naysayers": [], + "transitiveness's": [], + "alluring": ["Y"], + "regionalism's": [], + "vouchsafe": ["D", "S", "G"], + "chattier": [], + "SW": ["M"], + "stopwatch": ["M", "S"], + "startling": ["Y"], + "extirpates": [], + "workhorse": ["S", "M"], + "salvo'ses": [], + "utensils's": [], + "peephole's": [], + "edamame": [], + "craving's": [], + "resurrects": [], + "acanthus's": [], + "hanger": ["M"], + "imbalance": ["D", "S", "M"], + "sleet'sed": [], + "physiques": [], + "heliport's": [], + "Ines": ["M"], + "unstrap": [], + "clamber": ["Z", "G", "M", "D", "R", "S"], + "funneleding": [], + "tendencies's": [], + "browses's": [], + "enrolls": [], + "exaggerates": [], + "Shawnees's": [], + "morningses": [], + "cerebrateds": [], + "butteriest": [], + "iodides's": [], + "sourerly": [], + "sublingual": [], + "secular": [], + "liftoffs": [], + "ocarina'ses": [], + "ovulating": [], + "shamefulnessly": [], + "physiology": ["M"], + "base": ["C", "D", "S", "L", "T", "G"], + "marathonerers": [], + "fedora": ["S", "M"], + "rocketed": [], + "Shylockian": ["M"], + "homo's": [], + "phaseouts": [], + "feint": ["S", "M", "D", "G"], + "primary's": [], + "midpoint's": [], + "swifter": [], + "pistons": [], + "heroine": ["S", "M"], + "corbels": [], + "stampeded": [], + "obscure": ["D", "R", "S", "Y", "T", "G"], + "beefsing": [], + "Gardner's": [], + "crassness": ["M"], + "kaffeeklatches": [], + "swines's": [], + "wizard's": [], + "Dominick's": [], + "saturate": ["D", "S", "G", "N"], + "Renault's": [], + "colander": ["S", "M"], + "Boltzmann's": [], + "washcloth's": [], + "procaine's": [], + "harmlessness": ["M"], + "Chengdu's": [], + "documenteds": [], + "legion": ["S", "M"], + "chambray's": [], + "Cedric's": [], + "eyeball's": [], + "tittered": [], + "acquainted": ["U"], + "Spenserian's": [], + "conic's": [], + "freelances": [], + "Redeemer": ["M"], + "PhD's": [], + "bipartisanship's": [], + "eulogizer": ["M"], + "couriered": [], + "wreckeder": [], + "quiches's": [], + "Bray's": [], + "equal'sed": [], + "Hoover's": [], + "desecratesing": [], + "pigheadedly": [], + "meatball": ["M", "S"], + "customhouses's": [], + "Argonauts": [], + "flanker's": [], + "acrobat": ["M", "S"], + "RV": ["S", "M"], + "repenting": [], + "flagpoles's": [], + "ethologist": ["M", "S"], + "oinksing": [], + "counterattack's": [], + "clothespin's": [], + "biasing's": [], + "brushwork's": [], + "scriveners's": [], + "lapins": [], + "mythical": [], + "hyperlinks's": [], + "oarswomen": [], + "Norma": ["M"], + "antiphons": [], + "Hobbes": ["M"], + "demarcate": ["D", "S", "G", "N", "X"], + "obstructing": [], + "allegoric": [], + "fiercerly": [], + "admonition": ["M", "S"], + "emoticon's": [], + "ungrudging": [], + "apically": [], + "Pharaoh's": [], + "midtown": ["M"], + "spunk": ["S", "M"], + "climacteric": ["M"], + "thinker's": [], + "photojournalism": ["M"], + "mistakenly": [], + "hagglers": [], + "Yaroslavl's": [], + "wench's": [], + "den": ["M"], + "aspens": [], + "shaking": [], + "germinal's": [], + "turbans's": [], + "masticationed": [], + "transaction": ["S", "M"], + "megaphones's": [], + "eighteenth": ["M"], + "Jamaica's": [], + "billeting's": [], + "magnums": [], + "obsequious": ["P", "Y"], + "frowzier": [], + "pupil's": [], + "obfuscated": [], + "Tbilisi's": [], + "caliper'sed": [], + "freshener's": [], + "bye": ["S", "M"], + "scooter's": [], + "rust'sed": [], + "jollity's": [], + "squishy": ["R", "T"], + "praiseworthy": ["P"], + "prerogatives's": [], + "synagogues's": [], + "altarpiece's": [], + "trust'sed": [], + "juncture's": [], + "separatism": ["M"], + "auscultates": [], + "rhomboid's": [], + "skim'ses": [], + "antenatal": [], + "6th": ["p", "t"], + "certify": ["D", "S", "G"], + "cheep's": [], + "Yumas": [], + "leek'ses": [], + "impala's": [], + "bandmaster": ["S", "M"], + "Vicksburg's": [], + "bicarbs": [], + "needlepoint's": [], + "bearablings": [], + "collocation's": [], + "keyboard": ["Z", "G", "S", "M", "D", "R"], + "royalty's": [], + "flaming": [], + "lollygagged": [], + "airbrushes": [], + "slothfulness's": [], + "armful's": [], + "blood's": [], + "recliners": [], + "innovations": [], + "clampeds": [], + "Secretariat": ["M"], + "lushest": [], + "bribing": [], + "Laredo's": [], + "liefer": [], + "emulsifiersing": [], + "scientifically": ["U"], + "Lithuanian'ses": [], + "friskeding": [], + "clingier": [], + "crackingings": [], + "computational": ["Y"], + "neutralizer": ["M"], + "raked": [], + "ukases": [], + "reminisced": [], + "jesters": [], + "vignetted": [], + "haggardness": ["M"], + "overcompensation": ["M"], + "napoleon's": [], + "gunfire": ["M"], + "hoodwinked": [], + "Abraham": ["M"], + "materially": [], + "bamboo": ["S", "M"], + "raiders": [], + "Sm's": [], + "eagle's": [], + "panorama": ["S", "M"], + "tolerable": ["I"], + "tenably": [], + "fancifulliness": [], + "quasar's": [], + "secularists": [], + "geologic": [], + "unspecific": [], + "nightspot's": [], + "folksinging's": [], + "mirier": [], + "vegetarian": ["S", "M"], + "paratrooper": ["M"], + "Delaware's": [], + "acidifieds": [], + "disfigurement": ["S", "M"], + "beady": ["R", "T"], + "cloud": ["S", "M", "D", "G"], + "hither": [], + "batters": [], + "jogger's": [], + "pungently": [], + "display": [], + "chestfuls": [], + "cringed": [], + "integrally": [], + "brooms's": [], + "Nisei": ["M"], + "mousersing": [], + "swath": ["G", "M", "D", "S"], + "avowal's": [], + "Yataro": ["M"], + "Kingings": [], + "mercifully": [], + "coopeder": [], + "lordliness": ["M"], + "edicts": [], + "lumberjacks's": [], + "bulimic's": [], + "isomer": ["M", "S"], + "coddled": [], + "homicide's": [], + "Khufu's": [], + "warhorse's": [], + "bronc": ["S", "M"], + "arraignment": ["S", "M"], + "intendeds's": [], + "polities's": [], + "intro": ["S", "M"], + "nonpolitical": [], + "doled": [], + "hominids's": [], + "NFL's": [], + "coder": ["C", "M"], + "calming": [], + "sacrificed": [], + "academical": ["Y"], + "motherland's": [], + "tut": ["S", "M"], + "teacake": ["S", "M"], + "prequels": [], + "Micronesia": ["M"], + "coeds": [], + "idlest": [], + "nooses": [], + "strikebreaker": ["S", "M"], + "Slovenia": ["M"], + "Schwinger": ["M"], + "palanquin's": [], + "alternatives": [], + "classifieds": [], + "Excellencies's": [], + "Fitzgerald's": [], + "mycologists": [], + "tripled": [], + "outstanding": ["Y"], + "mulishly": [], + "argumentativeness": ["M"], + "passivity's": [], + "virology's": [], + "Osvaldo's": [], + "Bradstreet's": [], + "congaed": [], + "mnemonics": [], + "isinglass": ["M"], + "heedfully": [], + "lavaliere's": [], + "wanderlusts's": [], + "cannonades": [], + "abolisheds": [], + "facsimiles's": [], + "Goff": ["M"], + "exercisers": [], + "sorority's": [], + "stockings's": [], + "Okhotsk's": [], + "aloe": ["S", "M"], + "chickadee's": [], + "portion": ["K", "S", "G", "M", "D"], + "exotics's": [], + "roadblockeds": [], + "cheerlessnessly": [], + "manipulationsing": [], + "cofferdam": ["M", "S"], + "jarful'ses": [], + "clinging": [], + "Kornberg": ["M"], + "camber'sed": [], + "pixie's": [], + "anthologists's": [], + "choirs": [], + "equivalences": [], + "firm": ["M", "D", "R", "Y", "P", "T", "G", "S"], + "insurersing": [], + "tunefulness's": [], + "clouds": [], + "tryout": ["S", "M"], + "bicycling": [], + "authenticationsing": [], + "unfledged": [], + "weaselly": [], + "orthodontist": ["S", "M"], + "underbidding": [], + "poem'ses": [], + "paint's": [], + "Simmons": ["M"], + "cassia": ["M", "S"], + "ghosts": [], + "nepotists": [], + "subnormal": [], + "scapegrace": ["M", "S"], + "Argonne's": [], + "homestretches": [], + "balminess's": [], + "rhyminged": [], + "harpsichordist's": [], + "condemner": ["M"], + "exposeds": [], + "hyacinth's": [], + "genus": ["M"], + "haricot": ["S"], + "Ladyship's": [], + "Donne": ["M"], + "wine's": [], + "nobsly": [], + "humpback'sed": [], + "lodging's": [], + "comet's": [], + "shelf": ["M"], + "sextants's": [], + "sunroof's": [], + "McQueen": ["M"], + "typologies": [], + "bantamweight": ["S", "M"], + "paperclips": [], + "filmmaker": ["S", "M"], + "Olga's": [], + "entanglement": ["E", "M"], + "parts": [], + "Kosygin's": [], + "Duane's": [], + "Midland": ["M", "S"], + "minute": ["P", "D", "R", "S", "M", "Y", "T", "G"], + "skippering": [], + "founder'sed": [], + "slimming's": [], + "eventuality's": [], + "vigesimal": [], + "dietitians": [], + "Hugh'ses": [], + "herniateds": [], + "lased": [], + "stormierness": [], + "vitrine's": [], + "druid's": [], + "craftiness": ["M"], + "evocation's": [], + "schoolboy": ["M", "S"], + "antilogarithms": [], + "gob's": [], + "Dangerfield": ["M"], + "aversion": ["M"], + "sorghum's": [], + "bellying": [], + "Torah's": [], + "sprogs": [], + "deserted": [], + "voicemail": ["S", "M"], + "taluses": [], + "misdiagnoses": [], + "radiographers's": [], + "pillowing": [], + "irreverently": [], + "actualities's": [], + "visionary's": [], + "anodynes": [], + "whippletree": ["S", "M"], + "parliament": ["S", "M"], + "becquerels": [], + "Cassandra's": [], + "alcoholic": ["M", "S"], + "ulcerated": [], + "yearlings": [], + "fusee's": [], + "wenches": [], + "apartments": [], + "loaded": [], + "annex's": [], + "ling": ["M"], + "Appomattox's": [], + "modernizes": [], + "interluding": [], + "antiparticles": [], + "comfortingly": [], + "derebut": [], + "freesias": [], + "emigres": [], + "clothespins": [], + "mushing": [], + "foundering": [], + "coexistence": ["M"], + "dogcatcher's": [], + "Kazakhstan's": [], + "jurisdictions": [], + "impartiality's": [], + "paddocks": [], + "disablesing": [], + "barbarians": [], + "d": ["N", "X", "G", "J"], + "tufts": [], + "male": ["M", "P", "S"], + "lieges": [], + "anomalies": [], + "Saragossa": ["M"], + "twosome's": [], + "antisemitic": [], + "flavoring": ["M"], + "ethnologically": [], + "misrulinged": [], + "hazings": [], + "churlishness": ["M"], + "broadsides": [], + "skylight": ["M", "S"], + "cordons": [], + "feces": ["M"], + "exuberantly": [], + "toothaches": [], + "furbished": [], + "shiv's": [], + "quandaries": [], + "Claudia's": [], + "interrogative'sly": [], + "cluck'sed": [], + "trompsing": [], + "plummeting's": [], + "guiltless": [], + "wicker": ["M"], + "expostulate": ["G", "N", "X", "D", "S"], + "noteworthiness's": [], + "gaudiness": ["M"], + "farrago": ["M"], + "stargazer's": [], + "Alvin": ["M"], + "Suzhou": ["M"], + "reveler's": [], + "churchgoers": [], + "blackmailer's": [], + "sedative": ["S", "M"], + "Helen": ["M"], + "weltersing": [], + "nonathletic": [], + "substantive's": [], + "dignity's": [], + "interbreeds": [], + "guinea'ses": [], + "wendeds": [], + "complementsing": [], + "amnesty": ["G", "D", "S", "M"], + "mustachios": [], + "Mattel": ["M"], + "award'sed": [], + "guffaw": ["M", "D", "G", "S"], + "scrawnier": [], + "Harbin's": [], + "commanderment": [], + "dame": ["S", "M"], + "Mongolic's": [], + "Charles": ["M"], + "intruder": ["M"], + "fwd": [], + "flunks's": [], + "outstation's": [], + "squabble'sers": [], + "preserves": [], + "gumdrops's": [], + "objectiveness's": [], + "Purina's": [], + "extraditablions": [], + "helmsman's": [], + "complying": [], + "timestamp'sed": [], + "anorectics": [], + "metabolizes": [], + "Argentinean": [], + "McVeigh's": [], + "laggardlies": [], + "micromanageds": [], + "sheep": ["M"], + "Thursday's": [], + "Wm's": [], + "Waring": ["M"], + "Olmec": ["M"], + "beep'sed": [], + "infinite's": [], + "toothbrushes": [], + "sanctifying": [], + "mismanagement's": [], + "NATO's": [], + "countermand's": [], + "odes's": [], + "abyss'ses": [], + "mortal's": [], + "usurpeder": [], + "lighthouses": [], + "virulently": [], + "duvet": ["S", "M"], + "underachieving": [], + "pickersing": [], + "exurbanite": ["S", "M"], + "counterfeited": [], + "reforest": [], + "extrajudicial": [], + "deprecatingen": [], + "jigged": ["A"], + "Daniel": ["S", "M"], + "globules": [], + "Templar": ["M"], + "Jerry's": [], + "semitrailers": [], + "strapless's": [], + "strolleder": [], + "dockets": [], + "metaphysically": [], + "hair's": [], + "kilometer's": [], + "brutalized": [], + "frigidity": ["M"], + "earmarking": [], + "jack's": [], + "Minsk": ["M"], + "uninstallables": [], + "reemergence": [], + "queerest": [], + "guides": [], + "anatomic": [], + "citation's": [], + "seiners": [], + "Melton": ["M"], + "legislatesing": [], + "drainers": [], + "factually": [], + "Cuchulain's": [], + "method'ses": [], + "document'sed": [], + "monetarist's": [], + "investigators": [], + "twiggy": ["T", "R"], + "mulches": [], + "female's": [], + "spaceflight's": [], + "download'sed": [], + "gearshift's": [], + "alto": ["S", "M"], + "westernized": [], + "pleader": ["M"], + "ashen": [], + "Delmer's": [], + "specifiers": [], + "iceboat's": [], + "notifiesens": [], + "laurels's": [], + "quaysides": [], + "individuated": [], + "grimness's": [], + "supercharge": ["Z", "G", "D", "R", "S"], + "cymbalists": [], + "Bosporus's": [], + "exhibitionist's": [], + "visor's": [], + "unconsolidated": [], + "Eben": ["M"], + "invasion'ses": [], + "elevenths": [], + "pawls": [], + "sorry": ["R", "T", "P"], + "mandrake'ses": [], + "gunrunning": ["M"], + "Gaea": ["M"], + "ancestress's": [], + "transducer'ses": [], + "tinges": [], + "juxtaposing": [], + "payday'ses": [], + "quietude's": [], + "fulled": [], + "Sandinista's": [], + "acridity's": [], + "parenthesize": ["D", "S", "G"], + "sounds's": [], + "ballpoint'ses": [], + "defaulters's": [], + "reproduce": [], + "leviathan's": [], + "retrospects": [], + "vindicated": [], + "lozenge's": [], + "forgings": [], + "Assyrian's": [], + "hawker's": [], + "poultices": [], + "Waugh's": [], + "reefersing": [], + "Gen": ["M"], + "thistle": ["M", "S"], + "exemptinged": [], + "layup": ["S", "M"], + "practitioners": [], + "hoofersing": [], + "parenthesis's": [], + "venireman": ["M"], + "richers": [], + "official'sly": [], + "defogger": ["S", "M"], + "tartar'ses": [], + "ripe": ["Y", "P"], + "tabloids's": [], + "slaughterer's": [], + "MP's": [], + "Whirlpool's": [], + "communicative": ["U"], + "mus": [], + "snookering": [], + "impermeability": ["M"], + "treasuring": [], + "divergence": ["M", "S"], + "exporter's": [], + "fauvism's": [], + "grackle": ["M", "S"], + "highchair's": [], + "layabout": ["S"], + "attribution": ["M"], + "stuffings": [], + "upfront": [], + "potentate's": [], + "cretinism's": [], + "dramatic": ["S"], + "Monegasques": [], + "Clint": ["M"], + "abstaineder": [], + "envisages": [], + "demist": [], + "wideners": [], + "broil": ["S", "M", "D", "R", "Z", "G"], + "Poppins's": [], + "vanguard's": [], + "halter'sed": [], + "fiance's": [], + "orb": ["S", "M"], + "Anubis's": [], + "bleach'sed": [], + "pawnbroker'ses": [], + "Lucien": ["M"], + "air'sed": [], + "ratifieder": [], + "carouses's": [], + "jokeder": [], + "shortchanged": [], + "scepters": [], + "Viking's": [], + "parodyinged": [], + "vassal": ["S", "M"], + "cookery": ["S", "M"], + "stipulations": [], + "vertically": [], + "exorcised": [], + "Tillich's": [], + "bobsled": ["S", "M"], + "uncompressed": [], + "system's": [], + "achoo's": [], + "kelvins's": [], + "barley": ["M"], + "testes": [], + "procrastinatingen": [], + "curterly": [], + "alcove's": [], + "milkweed's": [], + "Kansans": [], + "typeset": ["S"], + "hieing": [], + "plashes": [], + "seededs": [], + "Moscow": ["M"], + "slacklies": [], + "homeless'sness": [], + "dibbling": [], + "spottier": [], + "coxeds": [], + "supposition": ["M", "S"], + "handwoven": [], + "Ada": ["S", "M"], + "firelighters's": [], + "enjoins": [], + "illegalities's": [], + "thrashings's": [], + "jeep'ses": [], + "construeds": [], + "Carboniferous's": [], + "hamburgers": [], + "evocatively": [], + "defective'sness": [], + "preforming": [], + "Herr'sing": [], + "debacle's": [], + "admonition's": [], + "sprucely": [], + "mumbler": ["M"], + "finishes": [], + "gainfully": [], + "directorship's": [], + "fatalists": [], + "thirteen's": [], + "year'sly": [], + "breaching": [], + "homelier": [], + "nonentities": [], + "grates's": [], + "collaborative": ["Y"], + "spitball's": [], + "aqueduct": ["M", "S"], + "rottweiler": ["S"], + "nonalignment's": [], + "risotto": ["M", "S"], + "slob": ["M", "S"], + "lynching": ["M"], + "Goa": ["M"], + "tooters": [], + "Claudette": ["M"], + "wheelhouse'ses": [], + "rowdinesser": [], + "grubber's": [], + "fleshlier": [], + "stretched": [], + "gradualness": ["M"], + "transactings": [], + "suggestion": ["S", "M"], + "cockfight's": [], + "retrofiring": [], + "Amsterdam's": [], + "mainstay": ["M", "S"], + "Kit's": [], + "ghats": [], + "evaporators": [], + "ladybird": ["S", "M"], + "kuchen": ["S", "M"], + "communicably": [], + "Celina's": [], + "Streisand's": [], + "coarsened": [], + "Gambian's": [], + "abounded": [], + "buckyball": ["S", "M"], + "proofeding": [], + "metrical": ["Y"], + "Sakharov's": [], + "dreamer": ["M"], + "screwball'ses": [], + "petered": [], + "dosimeters": [], + "Bodleian": [], + "purgatory": ["S", "M"], + "strongman's": [], + "grandmotherly": [], + "drawer": ["M"], + "interrogate": ["D", "S", "G", "N", "V", "X"], + "radiation's": [], + "stationmasters": [], + "Bros": [], + "elodea": ["S", "M"], + "buckteeth": [], + "meteorologist": ["S", "M"], + "prunersing": [], + "allergist's": [], + "secessionist'ses": [], + "stingrays's": [], + "case's": [], + "strum's": [], + "Adidas's": [], + "blotch's": [], + "Fermat": ["M"], + "boss's": [], + "maisonette": ["M", "S"], + "gambol'sed": [], + "Loafer": ["S", "M"], + "equality": ["I", "M"], + "follicles": [], + "professionalizing": [], + "countermelodies": [], + "obsessive": ["P", "S", "M", "Y"], + "Ebola": ["M"], + "departmentalization": ["M"], + "matte": ["D", "R", "S", "M", "Z", "G"], + "hooey": ["M"], + "surgeries's": [], + "complainersing": [], + "cookbooks": [], + "missive'ses": [], + "smeareding": [], + "garrisoneds": [], + "materializeds": [], + "realists": [], + "saboteur's": [], + "ipecac": ["S", "M"], + "Saunders's": [], + "turnouts": [], + "coders": [], + "deploringed": [], + "Hamburg": ["M", "S"], + "aerators's": [], + "thrash": ["J", "M", "D", "R", "S", "Z", "G"], + "encodesers": [], + "dweebs": [], + "Menkar's": [], + "nonvoting": [], + "islanders's": [], + "tons's": [], + "roentgen's": [], + "redyeing": [], + "horizontal'sly": [], + "reservations": [], + "counterclaim's": [], + "hairnets": [], + "krauts's": [], + "impassibly": [], + "Bioko's": [], + "epoxying": [], + "Gilead's": [], + "Mantegna's": [], + "pricking": [], + "halibuts": [], + "photosing": [], + "certainly": [], + "obstacle": ["M", "S"], + "Alabaman'ses": [], + "incising": [], + "Naugahyde's": [], + "vaudeville's": [], + "Cocteau's": [], + "follower": ["M"], + "dreamerers": [], + "beheadeding": [], + "allureds": [], + "nightsticks's": [], + "sported": [], + "Estrada's": [], + "wheelbase's": [], + "kepi": ["M", "S"], + "relatedness": ["M"], + "muftis's": [], + "wrigglers": [], + "Christmas's": [], + "spanners's": [], + "homosexuality": ["M"], + "necklacinged": [], + "Swede's": [], + "USB": [], + "booing": [], + "down'sed": [], + "beardeding": [], + "backslide": ["R", "S", "Z", "G"], + "Tracie's": [], + "engrossingment": [], + "quills's": [], + "provolone's": [], + "boardinghouse'ses": [], + "palindrome": ["M", "S"], + "malpractices's": [], + "repave": [], + "vector'sed": [], + "Mauritanian": ["S", "M"], + "preponderating": [], + "innovating": [], + "Jobs": ["M"], + "Kempis": ["M"], + "screamed": [], + "anthropocentric": [], + "repellent": ["S", "M"], + "Enterprise": ["M"], + "climate": ["S", "M"], + "contumacious": ["Y"], + "abbreviation's": [], + "halloosing": [], + "pessaries": [], + "hardcovers": [], + "altimeter'ses": [], + "stageding": [], + "hobbleder": [], + "dare": ["D", "R", "S", "M", "Z", "G"], + "beanfeast": ["S"], + "unrest's": [], + "depleting": [], + "caitiffs's": [], + "spud's": [], + "cozenage": ["M"], + "guarantor'ses": [], + "eligible": [], + "mercerizinged": [], + "roughness's": [], + "unmanned": [], + "freshet'ses": [], + "Deuteronomy's": [], + "sessions": [], + "downloadsing": [], + "adaptersing": [], + "panhandle's": [], + "inundated": [], + "Mitterrand": ["M"], + "tightwad": ["M", "S"], + "parachuting": [], + "foothill's": [], + "sandblasters": [], + "Abe": ["M"], + "alluviums's": [], + "ether's": [], + "jobs's": [], + "dongles": [], + "motorist's": [], + "ancillaries": [], + "fatwa": ["S", "M"], + "novelize": ["D", "S", "G"], + "dragon": ["S", "M"], + "manholes's": [], + "procrastinating": [], + "censored": ["U"], + "genesis's": [], + "Doug": ["M"], + "Dayton's": [], + "amnesties": [], + "graphologist": ["M", "S"], + "hydrocephalus's": [], + "desiccatesing": [], + "personalizesing": [], + "zymurgy's": [], + "Fujiwara's": [], + "conditionings": [], + "surveys": [], + "soaped": [], + "slickers": [], + "teamed": [], + "dowdier": [], + "cueds": [], + "capitulateds": [], + "sterilizers": [], + "expansions": [], + "corroborators": [], + "Annapurna": ["M"], + "pretesteding": [], + "goggled": [], + "Hagiographa's": [], + "unsubtle": [], + "Lucretius": ["M"], + "houseman's": [], + "vitalizes": [], + "ricocheting's": [], + "sulk'sed": [], + "webcasting": [], + "toadying": [], + "litchi": ["M", "S"], + "salivated": [], + "isolatingen": [], + "scimitar": ["S", "M"], + "reparations": ["M"], + "concurrent": [], + "pointillists's": [], + "darling's": [], + "syncopate": ["D", "S", "G", "N"], + "hoistsing": [], + "Phoebe's": [], + "subtotals": [], + "aches's": [], + "kindred": ["M"], + "Katharine": ["M"], + "tinninesser": [], + "cowpox's": [], + "judiciousliness": [], + "hey": [], + "singulars's": [], + "foolproof": [], + "scrumptious": ["Y"], + "felines": [], + "Kirby": ["M"], + "aquarium's": [], + "betters": [], + "maximizeds": [], + "haymows": [], + "sultanates": [], + "summertime": ["M"], + "magnolia": ["M", "S"], + "Zara's": [], + "parades": [], + "borersing": [], + "slobber'sed": [], + "Scarborough's": [], + "salary": ["D", "S", "M"], + "Bernays's": [], + "pedicure'sing": [], + "hearsay": ["M"], + "vertebrate's": [], + "fictionalizing": [], + "entertaininged": [], + "spacing's": [], + "noels": [], + "lances's": [], + "workings": ["M"], + "walkover": ["M", "S"], + "overspecializinged": [], + "accessioned": [], + "sunfishes": [], + "Gilgamesh": ["M"], + "Lilongwe": ["M"], + "meddling": [], + "boatmen": [], + "Ky's": [], + "scientist's": [], + "forkfuls": [], + "spreed": [], + "headlock'ses": [], + "forwardsness": [], + "temptation": ["M", "S"], + "dickens": [], + "published": ["U"], + "hmm": [], + "augmenting": [], + "GCC": ["M"], + "tinsels": [], + "decimeters": [], + "amour'ses": [], + "Leninist's": [], + "cincture": ["S", "M"], + "Bayer": ["M"], + "seekersing": [], + "besieges": [], + "ballpoints": [], + "chock's": [], + "Phil'sly": [], + "whirred": [], + "screensaver's": [], + "folklore": ["M"], + "Restoration's": [], + "stoppable": ["U"], + "investment's": [], + "egocentricity": ["M"], + "cosmos's": [], + "brassy": ["P", "T", "R"], + "Cardiff": ["M"], + "trotting": [], + "wickederly": [], + "Yakima's": [], + "tickle'sers": [], + "hydrangea's": [], + "camcorders": [], + "blustering": [], + "unsteadiest": [], + "passionless": [], + "softy": ["S", "M"], + "handbags": [], + "hiders": [], + "ruminant'ses": [], + "musette": ["M", "S"], + "dogmatically": [], + "batteries": [], + "nears": [], + "dramatization's": [], + "Shapiro": ["M"], + "nipples": [], + "globulin": ["M"], + "deathlessly": [], + "exposure": ["M", "S"], + "Cyrus's": [], + "broodier's": [], + "zebu's": [], + "programmatic": [], + "capsule's": [], + "upheaval's": [], + "Eyck's": [], + "backcombs": [], + "eight": ["S", "M"], + "quotable": [], + "calumniator'ses": [], + "architect's": [], + "touchiest": [], + "marionette": ["M", "S"], + "mezzanine'ses": [], + "murder": ["Z", "G", "M", "D", "R", "S"], + "mouthiness's": [], + "asps's": [], + "debenture's": [], + "midwifery": ["S", "M"], + "hairgrips": [], + "computerizing": [], + "suffuses": [], + "interacted": [], + "syncopation's": [], + "vaulter's": [], + "likening": [], + "groomed": [], + "trilateral": ["S"], + "fooleries": [], + "gavels": [], + "barbs": [], + "noncombatants": [], + "gropes's": [], + "sheenier": [], + "breadfruits's": [], + "vindicator'ses": [], + "ingraining": [], + "puppetry": ["M"], + "Lancelot": ["M"], + "distinguishable": ["I"], + "restrict": ["S", "D", "G", "V"], + "ticker's": [], + "Cheney": ["M"], + "astronomers": [], + "cursoriness's": [], + "brilliantine's": [], + "Cabrera": ["M"], + "incontestability": ["M"], + "postmortems": [], + "submariner's": [], + "dowel'sed": [], + "broughams": [], + "Firestone": ["M"], + "uvular's": [], + "kook'ses": [], + "rusheder": [], + "pitfall": ["S", "M"], + "Boethius's": [], + "sheet": ["M", "S", "G"], + "tackling": [], + "Theodosius": ["M"], + "atoll": ["M", "S"], + "homage": ["M", "S"], + "principleds": [], + "sleeves's": [], + "Technicolor's": [], + "legitimacy's": [], + "jimmies": [], + "NCAA's": [], + "chomped": [], + "downtown's": [], + "roughened": [], + "lops": [], + "bigotries's": [], + "invaders": [], + "Qataris": [], + "refrigerants's": [], + "barren's": [], + "recriminatesing": [], + "photosynthesizeds": [], + "hermaphrodites's": [], + "mistimeds": [], + "specialists": [], + "Rodriquez's": [], + "pimpedly": [], + "swipe'sing": [], + "Kewpie": ["M"], + "scrota": [], + "hemostat'ses": [], + "elementary": [], + "stodgier": [], + "Alex's": [], + "vituperation": ["M"], + "freshen": ["Z", "G", "D", "R"], + "palisades's": [], + "witch'sed": [], + "phoenix's": [], + "dungarees": [], + "expediter": ["M"], + "meaninglessliness": [], + "forgoersing": [], + "metabolisms": [], + "frizziest": [], + "potbelly": ["D", "S", "M"], + "Zorro": ["M"], + "Tanganyika's": [], + "bye's": [], + "opalescent": [], + "reflatingen": [], + "yammerers": [], + "bibliographers": [], + "alembic": ["S", "M"], + "Donetsk": ["M"], + "weden": [], + "constrict": ["G", "V", "S", "D"], + "sharpshooters": [], + "predicts": [], + "interfaced": [], + "swankier": [], + "fumigant's": [], + "TM": [], + "nonchalant": ["Y"], + "phosphate": ["M", "S"], + "squabble's": [], + "Noelle": ["M"], + "mayoress's": [], + "sprucest": [], + "goad": ["M", "D", "G", "S"], + "Farmer": ["M"], + "minks": [], + "plundering": [], + "roe's": [], + "mauled": [], + "parenthood's": [], + "maximizing": [], + "ransomer's": [], + "contest's": [], + "maws's": [], + "manhandles": [], + "priest'sly": [], + "glazier's": [], + "succumbinged": [], + "sunned": [], + "goth": [], + "sculpted": [], + "nitwit's": [], + "rewrites": [], + "lurk": ["D", "R", "S", "Z", "G"], + "posies": [], + "crammer": ["S"], + "campgrounds's": [], + "surreptitiousness's": [], + "rival": ["M", "D", "S", "G"], + "quadriceps'ses": [], + "misrules": [], + "universal": ["M", "Y", "S"], + "execrates": [], + "Geo": ["M"], + "scooteder": [], + "canebrake's": [], + "batters's": [], + "Bolivia": ["M"], + "beholder's": [], + "prospect's": [], + "tactic": ["S", "M"], + "mewleds": [], + "desegregation": [], + "Zara": ["M"], + "Christs": [], + "celesta": ["M", "S"], + "warden": ["M", "S"], + "instant's": [], + "haycocks's": [], + "forgersing": [], + "readyingness": [], + "mysticism": ["M"], + "hiring": [], + "gal": ["S", "M"], + "slug'ses": [], + "eyedropper's": [], + "stockbroker": ["S", "M"], + "funeral'ses": [], + "oxymora": [], + "doggedly": [], + "capstans": [], + "winegrower'ses": [], + "superman": ["M"], + "sunscreen's": [], + "Leipzig": ["M"], + "smoggy": ["R", "T"], + "deters": [], + "plunged": [], + "bittersweet's": [], + "rings": [], + "Josue": ["M"], + "Cowell": ["M"], + "cartilages's": [], + "propitiated": [], + "moralizinged": [], + "apposed": [], + "airiest": [], + "anarchic": [], + "nexus": ["M", "S"], + "misinterpretinged": [], + "Eliza": ["M"], + "whelp'sed": [], + "ginger": ["G", "S", "M", "D", "Y"], + "unstintingly": [], + "arsonists's": [], + "compartmentalizesing": [], + "Guatemalan's": [], + "podding": [], + "Vaselines's": [], + "sealer's": [], + "ejaculations": [], + "Junes": [], + "curium's": [], + "paroxysmal": [], + "petrodollar": ["M", "S"], + "Angstrom's": [], + "chemicals": [], + "Jahangir": ["M"], + "rover's": [], + "crumblying": [], + "handpicks": [], + "dowries": [], + "jollieder": [], + "synchronizinged": [], + "venture's": [], + "calendar'sed": [], + "adventurousness's": [], + "ravish": ["D", "R", "S", "Z", "G", "L"], + "papery": [], + "seamlessly": [], + "flounder'sed": [], + "regeneration": [], + "engorges": [], + "reinlaid": [], + "loyally": [], + "rhinovirus's": [], + "transceiver's": [], + "infallibility": [], + "hookworms": [], + "steppes's": [], + "wheel'sed": [], + "relievers": [], + "Mohammedanism's": [], + "L'sen": [], + "foreshadow": ["G", "D", "S"], + "numismatist's": [], + "instantiating": [], + "Malawian's": [], + "colanders's": [], + "youthful": ["Y", "P"], + "intrusions's": [], + "caw'sed": [], + "salvage": ["D", "S", "M", "G"], + "waggeries's": [], + "leached": [], + "seascape's": [], + "cheepeds": [], + "despised": [], + "sweeping'sly": [], + "kudzu's": [], + "atherosclerotic": [], + "enveloperers": [], + "immovability's": [], + "panelist's": [], + "meninx's": [], + "dithered": [], + "tinker": ["Z", "G", "S", "M", "D", "R"], + "hesitating": ["U", "Y"], + "playwrights's": [], + "bolivar'ses": [], + "substantive'sly": [], + "musicology's": [], + "culottes's": [], + "omnivore'ses": [], + "harvestersing": [], + "smudging": [], + "dung'sed": [], + "indistinguishably": [], + "huffeds": [], + "outlandishness's": [], + "acquiescent": ["Y"], + "weblog'ses": [], + "Guinea": ["M"], + "hurl'sed": [], + "quarrelsomeness": ["M"], + "brimmed": [], + "secretiveness's": [], + "dick's": [], + "foxhole": ["M", "S"], + "collegiality's": [], + "wracking": [], + "weensy": ["R", "T"], + "Erector's": [], + "overreaction's": [], + "hustlers": [], + "teleological": [], + "continuation'ses": [], + "vuvuzela's": [], + "lingeringings": [], + "more's": [], + "jawing's": [], + "obedience": ["E", "M"], + "plugged": ["U"], + "slovens": [], + "fickleness": ["M"], + "capitalizesing": [], + "whirl's": [], + "selector": ["M", "S"], + "upbringing'ses": [], + "jawbone's": [], + "hackneying": [], + "esplanade": ["M", "S"], + "uniquer": [], + "crushersing": [], + "piffle'sing": [], + "parleyed": [], + "paydays": [], + "Trailways's": [], + "playfellows's": [], + "Glenlivet's": [], + "Godot's": [], + "Appaloosas": [], + "deference": ["M"], + "hippo's": [], + "repulsively": [], + "Leif": ["M"], + "attributeds": [], + "reptiles": [], + "countersign'sed": [], + "disturbings": [], + "leversing": [], + "consecutive": ["Y"], + "Persia": ["M"], + "chickens's": [], + "versifieder": [], + "fists": [], + "knightliness": ["M"], + "readability's": [], + "shucking's": [], + "Tahitian'ses": [], + "Apuleius's": [], + "snobbier": [], + "coffeehouse": ["M", "S"], + "yell'sed": [], + "humaneness": ["M"], + "housecoat's": [], + "outeder": [], + "marinates": [], + "walking's": [], + "stunted": [], + "freebase's": [], + "goblets's": [], + "syntax's": [], + "adduces": [], + "viking": ["M", "S"], + "levieder": [], + "ducts": [], + "pibroch": ["M"], + "Asperger": ["M"], + "Huxley": ["M"], + "patriarch's": [], + "regather": ["D", "G", "S"], + "syllabifying": [], + "sugarcoated": [], + "weakling": ["S", "M"], + "Latonya": ["M"], + "intercourse": ["M"], + "vesting's": [], + "gigabytes": [], + "appraise": ["A", "D", "S", "G"], + "aggravations": [], + "kookiness": ["M"], + "dappling": [], + "Socorro": ["M"], + "innerspring": [], + "inaner": [], + "meager": ["P", "Y"], + "humanists": [], + "Baptist": ["S", "M"], + "schussboomers": [], + "briefings": [], + "cavaliers's": [], + "walkers": [], + "Leanne's": [], + "Dane's": [], + "Ponce": ["M"], + "comingsment": [], + "Stuttgart": ["M"], + "generator": ["S", "M"], + "Tamara": ["M"], + "Merck's": [], + "moo'sed": [], + "moorsing": [], + "obsidian": ["M"], + "groom": ["S", "Z", "G", "M", "D", "R"], + "delay": ["Z", "D", "R"], + "boonies": ["M"], + "palfrey's": [], + "then's": [], + "enormities": [], + "leader": ["M"], + "whaleder": [], + "boutiques's": [], + "valid": ["Y"], + "coronation's": [], + "proofreadersing": [], + "duns's": [], + "flatcar's": [], + "gongeding": [], + "redisappearance": [], + "resurgent": [], + "colliding": [], + "snufflinged": [], + "Croatian'ses": [], + "appropriatingen": [], + "Pentagon's": [], + "retrospection's": [], + "professorial": ["Y"], + "Hebe": ["M"], + "hubris": ["M"], + "rulingsed": [], + "Charles's": [], + "albumens": [], + "cogitation": ["M"], + "merrymaker's": [], + "summerhouse": ["S", "M"], + "Delaney's": [], + "Kay's": [], + "bedtimes": [], + "Noyce": ["M"], + "tannin": ["M"], + "wrencheds": [], + "cookwares's": [], + "pharmacists": [], + "tablecloths": [], + "hooch's": [], + "stalemate": ["D", "S", "M", "G"], + "Bartholomew's": [], + "breakfront'ses": [], + "chide": ["G", "D", "S"], + "homicides": [], + "wolves": [], + "depraved": [], + "nonvoter": ["M", "S"], + "seventy's": [], + "favorably": ["U"], + "Brasilia's": [], + "jumpierness": [], + "Odom": ["M"], + "filmstrip": ["M", "S"], + "twas": [], + "gibing": [], + "ermine's": [], + "rhymer": ["M"], + "variables": [], + "kale": ["M"], + "flareup": ["S", "M"], + "lemur's": [], + "thimblefuls's": [], + "conferment": [], + "genens": [], + "quicksand": ["M", "S"], + "brittler's": [], + "reschedule": [], + "Nanjing's": [], + "merchandisersing": [], + "dongle": ["S", "M"], + "deuncouple": [], + "covenanteds": [], + "reconformation": [], + "peck'sed": [], + "liftsers": [], + "scorekeeper's": [], + "reduces": [], + "immigration's": [], + "Sperry": ["M"], + "rejudge": [], + "makeweights": [], + "marinatesing": [], + "rag'sed": [], + "Marcelino": ["M"], + "glints": [], + "prattle": ["D", "R", "S", "M", "Z", "G"], + "peeled": ["U"], + "bountiful": ["Y", "P"], + "drudgery": ["M"], + "zesty": ["R", "T"], + "channelized": [], + "sidebar": ["S", "M"], + "carillon": ["S", "M"], + "sucrose's": [], + "Reformation's": [], + "thinnest": [], + "sniffing": [], + "deathtrap's": [], + "islandsers": [], + "Tudors's": [], + "serration": ["M"], + "lungfish": ["M", "S"], + "dewiness's": [], + "tenureds": [], + "signifies": [], + "buffings": [], + "Drew": ["M"], + "slinksing": [], + "struts": [], + "floodlights": [], + "scheduled": ["U"], + "corralled": [], + "crabbing": [], + "snicker's": [], + "Lamb": ["M"], + "Quinn's": [], + "mercenary": ["S", "M"], + "kimono'ses": [], + "Swahili's": [], + "carbons": [], + "vaunteding": [], + "adagios": [], + "conquistadors": [], + "Olympias": [], + "flow'sed": [], + "Fm": ["M"], + "journeying": [], + "Clements": ["M"], + "narratesens": [], + "Myanmar": ["M"], + "absurder": [], + "greatest": [], + "Waterford's": [], + "changeovers": [], + "canceling": [], + "buttings": [], + "pilgrimages": [], + "campfire's": [], + "elapses": [], + "succored": [], + "unseemliest": [], + "Mordred": ["M"], + "suntan'ses": [], + "loungers": [], + "halfheartednessly": [], + "digits's": [], + "classifications": [], + "eyeliner's": [], + "speed": ["S", "M", "R", "Z", "G"], + "hiss'sed": [], + "Bobbi": ["M"], + "Dix": ["M"], + "belt'sed": [], + "LA": [], + "vocabulary's": [], + "Arabian": ["M", "S"], + "divorcement'ses": [], + "demeaning": [], + "interview'sed": [], + "quickly": [], + "wight's": [], + "crab's": [], + "externalized": [], + "Meyerbeer's": [], + "voodoo's": [], + "capitally": [], + "organizing": [], + "ennui's": [], + "levying": [], + "wobble's": [], + "donuts": [], + "corrugating": [], + "Macedon": ["M"], + "plumplies": [], + "lolly": ["S"], + "maelstroms's": [], + "sleigh's": [], + "cabstand's": [], + "wrestler's": [], + "obtains": [], + "exhortation'ses": [], + "Radcliffe": ["M"], + "conceptualization'ses": [], + "lapsing": [], + "patientest": [], + "spymaster": ["S"], + "trope": ["S", "M"], + "jovially": [], + "shewinged": [], + "Bangalore's": [], + "typesets": [], + "mikados": [], + "employees": [], + "noncustodial": [], + "Mali": ["M"], + "Tl's": [], + "mas's": [], + "carnelian'ses": [], + "hexameter": ["S", "M"], + "turnips's": [], + "nonoccurence": [], + "jumbo's": [], + "conspicuousness's": [], + "parturition's": [], + "USMC": [], + "loiterings": [], + "corkings": [], + "Java's": [], + "faulted": [], + "naiads's": [], + "screen'sed": [], + "trombone's": [], + "proscription": ["M", "S"], + "preformings": [], + "prodetraction": [], + "gyrfalcon's": [], + "instated": [], + "sandbars's": [], + "drubbing'ses": [], + "companionway's": [], + "louver'sed": [], + "createds": [], + "deftest": [], + "fop": ["S", "M"], + "dybbuk": ["S", "M"], + "HP's": [], + "concentrically": [], + "chocking": [], + "pronouncements": [], + "trolley": ["S", "M"], + "biennial'sly": [], + "sluicing": [], + "smidgen's": [], + "gardenersing": [], + "lineup's": [], + "Valiums": [], + "actuator's": [], + "eradicate": ["D", "S", "G", "N"], + "stylized": [], + "Jeeves": ["M"], + "intensifiers": [], + "Tahiti": ["M"], + "midriff's": [], + "spokesmen": [], + "Croatians": [], + "resonant": ["Y"], + "harmings": [], + "babiers": [], + "squealeder": [], + "cymbal'ses": [], + "paramour's": [], + "dinar's": [], + "disbursal's": [], + "apartment'ses": [], + "parenteds": [], + "Damon": ["M"], + "Belfast's": [], + "adept": ["M", "Y", "P", "S"], + "Hui": ["M"], + "tendentiously": [], + "Trident's": [], + "Capablanca": ["M"], + "Nicosia's": [], + "tonersing": [], + "flipped": [], + "broodily": [], + "ebb'sed": [], + "jailbreaks": [], + "chunking": [], + "frantically": [], + "earlobe's": [], + "nevertheless": [], + "motorman's": [], + "scabies's": [], + "jawing": [], + "conclusiveness": ["I", "M"], + "appositeness's": [], + "predecessor's": [], + "sleeksed": [], + "hushes": [], + "apothecary's": [], + "ravisher": ["M"], + "Hettie": ["M"], + "winningly": [], + "Rehnquist's": [], + "Spinoza's": [], + "yers": [], + "hypothyroidism's": [], + "perjuring": [], + "italics's": [], + "airbrusheds": [], + "goalpost'ses": [], + "estrus's": [], + "Texans": [], + "numerable": ["I"], + "aeratingen": [], + "unionize": [], + "pungent": ["Y"], + "catnaps": [], + "colds": [], + "blooping": [], + "flecking's": [], + "ottoman's": [], + "videotaping": [], + "cameraman": ["M"], + "embalmer's": [], + "feuding": [], + "trowels": [], + "improbability's": [], + "hasn't": [], + "penman's": [], + "humiliationens": [], + "pampering": [], + "jailings": [], + "mosques": [], + "reverberatesing": [], + "attribute": ["D", "S", "M", "G", "N", "V", "B", "X"], + "foul's": [], + "dower'sed": [], + "Mace": ["M"], + "piracy's": [], + "transfusions": [], + "temp'sed": [], + "switchbacks": [], + "moseyed": [], + "Aleichem": ["M"], + "combats's": [], + "negativity's": [], + "Target": ["M"], + "razorback's": [], + "lampshades's": [], + "superbly": [], + "solderings": [], + "depilatories": [], + "imperialists's": [], + "iniquity's": [], + "oxidizes": [], + "discus's": [], + "mommy's": [], + "bendiest": [], + "antiseptic's": [], + "joggers": [], + "contour": [], + "staircase'ses": [], + "nondisclosure's": [], + "snood's": [], + "areas": [], + "listlessness's": [], + "barrackeding": [], + "sutler": ["M", "S"], + "ages": [], + "indefeasible": [], + "poisoner's": [], + "barrens's": [], + "keelhauleding": [], + "blankly": [], + "contriteness": [], + "lending": [], + "metallurgy": ["M"], + "nick'sed": [], + "vernier": ["S", "M"], + "hibernating": [], + "raga": ["M", "S"], + "woodman": ["M"], + "trucker's": [], + "catalogs": [], + "tangelos": [], + "comprehensive's": [], + "armorers": [], + "analogues": [], + "Israelite's": [], + "firelight'ser": [], + "chump's": [], + "Gilgamesh's": [], + "guiding": [], + "orthopedist's": [], + "dysfunction": ["M", "S"], + "macho's": [], + "strangleder": [], + "deducted": [], + "disgust": [], + "Andalusian's": [], + "defects": [], + "siphoned": [], + "abortionists": [], + "Mombasa": ["M"], + "rewoven": [], + "supports": [], + "markedly": [], + "apprehensiveliness": [], + "monetarism's": [], + "irksome": ["Y", "P"], + "Mather": ["M"], + "sacristan's": [], + "trapezoid's": [], + "fizzesing": [], + "baize": ["M"], + "bacillus's": [], + "Tigris": ["M"], + "logs": [], + "authorizations": [], + "tweetsed": [], + "Harvey": ["M"], + "lump'sed": [], + "vicing": [], + "Artaxerxes's": [], + "dibble's": [], + "kibosh": ["M"], + "malachite": ["M"], + "spavin's": [], + "voodoos": [], + "snuffbox'ses": [], + "pedestrianizing": [], + "eclat's": [], + "shear's": [], + "Grus": ["M"], + "CPI's": [], + "dumpiest": [], + "melded": [], + "squealsers": [], + "Christine's": [], + "confessor'ses": [], + "carolers": [], + "Alma": ["M"], + "sock'sed": [], + "clunk'sed": [], + "fungible'ses": [], + "checkoff": ["S", "M"], + "Claudius": ["M"], + "prognosticate": ["X", "G", "N", "D", "S"], + "pandemonium": ["M"], + "puzzlement": ["M"], + "syntactic": [], + "prejudgment's": [], + "shocked": [], + "Don's": [], + "honk's": [], + "candida": [], + "windiest": [], + "considerably": [], + "footsteps": [], + "child's": [], + "gotchas": [], + "Missouri": ["M"], + "witherings": [], + "underbellies": [], + "impiously": [], + "potlucks": [], + "Malthusians's": [], + "walkways's": [], + "indentureding": [], + "gunpowder": ["M"], + "wives": [], + "Christa's": [], + "scorecard": ["M", "S"], + "speculations": [], + "scubasing": [], + "placekickers": [], + "replenished": [], + "Draconian": ["M"], + "prickerly": [], + "guitar": ["M", "S"], + "pulsars": [], + "corking": [], + "Brahe's": [], + "raspy": ["R", "T"], + "spiel": ["S", "M", "D", "G"], + "substation'ses": [], + "incarcerationsed": [], + "centralizers": [], + "distributor's": [], + "commutes's": [], + "reanalyze": [], + "manages": [], + "vodkas's": [], + "Jerome's": [], + "goat'ses": [], + "wheelie's": [], + "stubbiest": [], + "nemesis": ["M"], + "Creeds": [], + "convergent": [], + "convoking": [], + "impractical": ["Y"], + "bankruptcies": [], + "smacks's": [], + "bloodletting": ["M"], + "smattering": ["M", "S"], + "yardarms": [], + "folkloric": [], + "bio": ["S", "M"], + "sullies": [], + "misdiagnosinged": [], + "sovereignty's": [], + "acronym": ["M", "S"], + "seen": ["U"], + "pliability's": [], + "propagators's": [], + "choosy": ["T", "P", "R"], + "exorcising": [], + "prognosticationsing": [], + "fastbacks's": [], + "Abby's": [], + "coheir": ["S", "M"], + "Parisians": [], + "fierce": ["P", "R", "Y", "T"], + "stock": ["A", "G", "S", "D"], + "audiovisuals": ["M"], + "Wilhelmina": ["M"], + "Ignatius": ["M"], + "cheeseburger": ["S", "M"], + "predicted": [], + "wise's": [], + "cahoot'ses": [], + "handicapper": ["M", "S"], + "uh": [], + "byes": [], + "homesteader": ["M"], + "unstinting": ["Y"], + "pillories": [], + "fidgetsing": [], + "disdains": [], + "Calder's": [], + "neutralizesers": [], + "work's": [], + "humanizer": ["S", "M"], + "illusionist's": [], + "variety": ["S", "M"], + "decathlon": ["S", "M"], + "disassociate": [], + "Giauque": ["M"], + "Ramona": ["M"], + "porterhouse": ["S", "M"], + "roll's": [], + "beguiling": ["Y"], + "furbisheds": [], + "expatiates": [], + "Oliver's": [], + "convene": ["A", "D", "S", "G"], + "Moldavia's": [], + "gusts": [], + "suppertime": [], + "shorteninged": [], + "PDQ": [], + "slue's": [], + "conclave": ["S", "M"], + "deludinged": [], + "reaches": [], + "matzos": [], + "amusing": ["Y"], + "fitly": [], + "Rudyard's": [], + "Sunday": ["M", "S"], + "perishing": [], + "poppycock's": [], + "wit": ["S", "M"], + "translocation": [], + "mobbing": ["C"], + "postmarkeding": [], + "Mattie": ["M"], + "luridness's": [], + "umpteenth": [], + "cablecasting's": [], + "camerawoman's": [], + "dock'sed": [], + "commencements": [], + "mournfulness": ["M"], + "stateroom's": [], + "dear": ["S", "P", "T", "M", "R", "Y", "H"], + "lungful": ["S"], + "cogent": ["Y"], + "decreed": [], + "condors": [], + "Valkyrie": ["S", "M"], + "brazesers": [], + "forks": [], + "scapegoat's": [], + "exceptionable": ["U"], + "tradeswoman": ["M"], + "elegant": ["I", "Y"], + "Apollos's": [], + "wellnesses": [], + "stepdad's": [], + "Hillary": ["M"], + "discrimination's": [], + "tablespoonfuls": [], + "utopia": ["S", "M"], + "unconverted": [], + "who've": [], + "mewlsing": [], + "RCA": ["M"], + "satiation's": [], + "mantissa's": [], + "enhancementers": [], + "diluteds": [], + "roweleding": [], + "maladies": [], + "scrub": ["M", "S"], + "snorkel'sed": [], + "rectificationed": [], + "tradesmen": [], + "brunettes": [], + "returnee's": [], + "diffusion's": [], + "mousetraps's": [], + "literacy": ["M"], + "gong'sed": [], + "socialists's": [], + "boomerangings": [], + "postdate": ["D", "S", "G"], + "earmuffs's": [], + "immunizinged": [], + "outmaneuvers": [], + "creaked": [], + "clone": ["D", "S", "M", "G"], + "proprietorially": [], + "five": ["M", "Z", "R", "S"], + "wrenched": [], + "escorting": [], + "loaves": [], + "bodywork": ["M"], + "Chapultepec's": [], + "impulse": ["M", "G", "N", "V", "D", "S"], + "Gerry's": [], + "underpants": ["M"], + "Hendrick'ses": [], + "Kenya": ["M"], + "regularized": [], + "schoolbooks": [], + "conscientiousness": ["M"], + "appendix'ses": [], + "Webster'ses": [], + "barbarizesing": [], + "brownness's": [], + "baseboards": [], + "mandrill's": [], + "tumorous": [], + "supplementation": ["M"], + "discrete": ["P", "Y", "N"], + "Jogjakarta's": [], + "foggily": [], + "honorer's": [], + "Christmastime'ses": [], + "Miami'ses": [], + "masqueradersing": [], + "Algieba": ["M"], + "portionsing": [], + "Humboldt's": [], + "taskmistress": ["M", "S"], + "Rama": ["M"], + "moisturizers": [], + "ploy's": [], + "guttiest": [], + "Gish's": [], + "burliest": [], + "remembereding": [], + "Humberto": ["M"], + "Maoists's": [], + "addend's": [], + "bouzouki'ses": [], + "id's": [], + "rips": [], + "adsorption's": [], + "Nickolas": ["M"], + "pin": ["S", "M"], + "denomination": [], + "fiver": [], + "casings's": [], + "Polaroid": ["M", "S"], + "rhea'ses": [], + "derrick": ["S", "M"], + "evidence's": [], + "playhouses": [], + "slur": ["M", "S"], + "advents": [], + "octopuses": [], + "Chivas": ["M"], + "broadsideds": [], + "kindled": [], + "dexterousness": ["M"], + "underacting": [], + "scruncheds": [], + "spoilsport": ["M", "S"], + "personals": [], + "wussy's": [], + "abases": [], + "footling": ["M", "S"], + "helipads": [], + "delveder": [], + "clarinet's": [], + "bunched": [], + "O'Neill's": [], + "Marquesas's": [], + "adulator": ["M", "S"], + "feeding": ["M"], + "jocundly": [], + "swing": ["Z", "G", "S", "M", "R"], + "abrogateds": [], + "unmentionable'ses": [], + "enfeebles": [], + "clutter": ["M", "D", "S", "G"], + "humanely": [], + "unsurprising": [], + "newsdealer's": [], + "sycophant's": [], + "prism'ses": [], + "component's": [], + "fragmenting": [], + "Lars": ["M", "N"], + "accessibility": ["I", "M"], + "stronghold's": [], + "vindictiveness": ["M"], + "naysayer'ses": [], + "hibachi'ses": [], + "eliciteding": [], + "djellaba'ses": [], + "initial's": [], + "Johnnie's": [], + "bobbysoxer": ["S", "M"], + "Martina's": [], + "stretchering": [], + "No's": [], + "flops": [], + "hedonist'ses": [], + "bottoms's": [], + "roseate": [], + "spawning": [], + "Messerschmidt": ["M"], + "lecturer's": [], + "carrel": ["M", "S"], + "hideout'ses": [], + "intensifying": [], + "gymnosperm": ["S", "M"], + "renown": ["M", "D"], + "compressors's": [], + "Muskogee's": [], + "acerbity's": [], + "hajj's": [], + "spareness's": [], + "gulpsers": [], + "deodorizeder": [], + "lateraledly": [], + "Chilean": ["M", "S"], + "completed": ["U"], + "RayBan's": [], + "inclination": ["E", "M"], + "throng'sed": [], + "foxglove": ["S", "M"], + "bactericidal": [], + "multitude": ["S", "M"], + "gravely": [], + "hrs": [], + "jostle'sing": [], + "manicures": [], + "relieving": [], + "rendezvouses": [], + "foreclosure'ses": [], + "Poona": ["M"], + "Jerri": ["M"], + "doziness": [], + "rockbound": [], + "censer": ["M", "S"], + "pops": [], + "peckers": [], + "melange": ["M", "S"], + "versa": [], + "Jutland": ["M"], + "Scrooge's": [], + "bloodstains's": [], + "Irtish": ["M"], + "gigapixel": ["M", "S"], + "crystals's": [], + "fedoras's": [], + "tremulousnessly": [], + "honeymooner's": [], + "Alcindor": ["M"], + "individualist's": [], + "boniness": ["M"], + "psychiatry's": [], + "nonentity's": [], + "Ymir's": [], + "blundereder": [], + "behaviors's": [], + "shudder'sed": [], + "salon": ["M", "S"], + "parries's": [], + "rioting": ["M"], + "trimming's": [], + "centimeter's": [], + "etiology's": [], + "lubricity": ["M"], + "teller": ["S", "M"], + "revival'ses": [], + "permed": [], + "sangs": [], + "enforcinged": [], + "omegas's": [], + "Polaris": ["M"], + "imploded": [], + "Rosalyn": ["M"], + "peen": ["M", "S"], + "towhee'ses": [], + "pagers": [], + "comradeship": ["M"], + "infomercial's": [], + "covenant'sed": [], + "menorah": ["M"], + "clans's": [], + "pastille": ["M", "S"], + "school's": [], + "queering": [], + "losings": [], + "tapeworm's": [], + "expendabled": [], + "incidence's": [], + "aplomb": ["M"], + "INS": [], + "mettle": ["M"], + "toxicity": ["S", "M"], + "extincteds": [], + "hydrologist's": [], + "galvanometer's": [], + "brooklet": ["S", "M"], + "swedes's": [], + "headquarters's": [], + "emphases": [], + "Babylon's": [], + "elucidationens": [], + "jettison": ["M", "D", "S", "G"], + "chauvinism": ["M"], + "dowdies": [], + "noodle": ["M", "G", "D", "S"], + "overshootings": [], + "playgirl": ["M", "S"], + "specks's": [], + "ain't": [], + "piscatorial": [], + "awry": [], + "mastectomies's": [], + "undershirts": [], + "analogies": [], + "cnidarian": ["M", "S"], + "patenting's": [], + "Carmine's": [], + "immortal'sly": [], + "perceiving": [], + "voicing": [], + "harnessed": [], + "donor": ["S", "M"], + "mesomorph": ["M"], + "sublieutenants": [], + "unseasonable": [], + "pygmies's": [], + "effendi": ["S", "M"], + "wends": [], + "confused": ["Y"], + "swineherd": ["S", "M"], + "nutcracker'ses": [], + "dysfunction'ses": [], + "stud": ["M", "Y", "S"], + "vivider": [], + "pH": [], + "internationalizing": [], + "Pontiac's": [], + "prance'sers": [], + "olives's": [], + "Ronnie's": [], + "ambush": ["G", "M", "D", "S"], + "dowdiest": [], + "overachieveder": [], + "pettish": ["Y"], + "worksing": [], + "normal'sly": [], + "flapjack's": [], + "hitting": [], + "derail": [], + "prenup's": [], + "choosiness's": [], + "saying's": [], + "spacersing": [], + "wrested": [], + "Britt'sen": [], + "crusteding": [], + "Mediterraneans": [], + "shimmieds": [], + "groundlessly": [], + "regalement": ["M"], + "amenities": [], + "masticated": [], + "tonsillectomy's": [], + "taper'sed": [], + "disbelieve": [], + "duels": [], + "wreaksing": [], + "collective'sly": [], + "trampling": [], + "sloweder": [], + "Bernoulli's": [], + "adsorb": ["S", "D", "G"], + "forged": [], + "caulking": [], + "aureole's": [], + "Washingtonian's": [], + "weakfish": ["M", "S"], + "robotizing": [], + "finance's": [], + "modulates": [], + "universalizesing": [], + "spheroid's": [], + "coddle": ["D", "S", "G"], + "humidify": ["C", "Z", "G", "D", "R", "S"], + "Royce's": [], + "guardianship": ["M"], + "extractor'ses": [], + "torrents's": [], + "naturalists": [], + "aqualung'ses": [], + "outdoors": ["M"], + "busywork": ["M"], + "highroad'ses": [], + "samey": [], + "mechanizesing": [], + "pathologist's": [], + "platinum's": [], + "homesteads's": [], + "DEC": ["S", "D"], + "amenity": ["S", "M"], + "sprint'sed": [], + "occasioneds": [], + "Elnath's": [], + "holdouts": [], + "obtrusiveness's": [], + "odalisque": ["S", "M"], + "shutters's": [], + "prodetractor": [], + "threaders": [], + "AZ": ["M"], + "Neanderthals's": [], + "Siberian": ["M", "S"], + "unidentified": [], + "counterexamples": [], + "trysts's": [], + "staples": [], + "invigilate": ["G", "N", "D", "S"], + "buried": [], + "mugging's": [], + "centralist": [], + "upright's": [], + "boldest": [], + "deficits's": [], + "blenders": [], + "obstruct": ["D", "G", "V", "S"], + "twister'ses": [], + "deconnote": [], + "insurgent": ["M", "S"], + "Paraguayan": ["M", "S"], + "banzai": ["S", "M"], + "kingfishers": [], + "longhouse": ["S"], + "Nannie": ["M"], + "dashboard's": [], + "imperturbable": [], + "fusinged": [], + "tombed": [], + "churn": ["Z", "G", "M", "D", "R", "S"], + "fungicide's": [], + "straights": [], + "lockstep": ["M"], + "methodical": ["Y", "P"], + "Jurua's": [], + "broilers": [], + "Cheddar": ["M"], + "hike's": [], + "Wordsworth": ["M"], + "decolonize": [], + "light's": ["C"], + "doffed": [], + "dippers's": [], + "dreadnought's": [], + "invocation": [], + "hepatic": [], + "take": ["A", "I", "M", "S"], + "abaseds": [], + "contraptions's": [], + "kookaburras's": [], + "animadvert": ["G", "S", "D"], + "quaileds": [], + "insolvable": [], + "toothpaste's": [], + "skid'ses": [], + "misnomer": ["M", "S"], + "founder's": [], + "Shropshire's": [], + "satisfyingly": [], + "umbrellas": [], + "strafinged": [], + "citrus'ses": [], + "acing": [], + "Jezebel": ["S", "M"], + "fracksed": [], + "patted": [], + "workdays": [], + "shacklinged": [], + "gearbox": ["M", "S"], + "limeade's": [], + "drowned": [], + "embroilingment": [], + "inaccurate": [], + "toilet's": [], + "plastic": ["S", "M"], + "immigratesing": [], + "entourages's": [], + "labyrinths": [], + "untraveled": [], + "surest": [], + "beefs": [], + "pix's": [], + "shit's": [], + "balsams's": [], + "flaked": [], + "androgen": ["M"], + "em's": [], + "titchy": [], + "educe": ["D", "S", "G", "B"], + "pottiest": [], + "Milton": ["M"], + "subdued": [], + "charcoal": ["M", "S"], + "tiramisus": [], + "Barbados": ["M"], + "hauberks's": [], + "disputant'ses": [], + "Pythagorean's": [], + "centrists": [], + "subtexts's": [], + "buckyballs": [], + "carousals's": [], + "Bangladeshis": [], + "rickrack": ["M"], + "bathyscaphe": ["S", "M"], + "lofts": [], + "bumpkin'ses": [], + "affiliatingen": [], + "angostura": [], + "huff'sed": [], + "hemmed": [], + "scheming": [], + "angelically": [], + "Zsigmondy": ["M"], + "coalesces": [], + "serigraph": ["M"], + "stacking": [], + "sacrificeds": [], + "Clarice": ["M"], + "nontropical": [], + "lighters": [], + "gentiles's": [], + "Stanley's": [], + "lambada'ses": [], + "soundproofed": [], + "regicide'ses": [], + "Simmons's": [], + "nautical": ["Y"], + "curtain's": [], + "childhoods's": [], + "semaphores's": [], + "flagrantly": [], + "bergs": [], + "slants": [], + "unmerciful": [], + "staling": [], + "backwardness": ["M"], + "hertz": ["M"], + "Chisinau": ["M"], + "dopeder": [], + "nonsmoking": [], + "wheeziest": [], + "earful": ["S", "M"], + "flaccidly": [], + "isn't": [], + "concurred": [], + "threaded": [], + "brides": [], + "calyx's": [], + "ukases's": [], + "disequilibrium": [], + "reflect": ["G", "V", "S", "D"], + "toques's": [], + "hake": ["M", "S"], + "defacement's": [], + "summered": [], + "horseshoed": [], + "rebukes": [], + "Teflon": ["M", "S"], + "ironical": ["Y"], + "artisan": ["M", "S"], + "refinish": [], + "dissipationed": [], + "guide'sers": [], + "swankiness": ["M"], + "parallelograms": [], + "landslides": [], + "gamesness": [], + "Kristina": ["M"], + "masquerader's": [], + "Winfred's": [], + "grippe": ["M", "Z", "G", "D", "R"], + "automatized": [], + "subeditor": ["S"], + "caulks": [], + "negotiability": ["M"], + "Durer": ["M"], + "dysprosium's": [], + "gulps": [], + "flowereding": [], + "terminated": [], + "laity's": [], + "cussings": [], + "complexity's": [], + "ton's": [], + "obligated": [], + "capitalizeds": [], + "wallah": [], + "Loraine's": [], + "emailing": [], + "singletrees": [], + "undisputed": [], + "keyhole": ["M", "S"], + "Caucasoid": [], + "butterflieds": [], + "Bloch": ["M"], + "eyeful's": [], + "ceasefire'ses": [], + "replica's": [], + "muscularity's": [], + "Titanic": ["M"], + "Bacon's": [], + "trillions's": [], + "riveteder": [], + "canvasbacks": [], + "faithfuls": [], + "fricative's": [], + "carmine": ["S", "M"], + "pinball's": [], + "calibrateds": [], + "skitterings": [], + "sugar'sed": [], + "germinated": [], + "stolidity's": [], + "amicable": [], + "Afghani": ["M"], + "doxology": ["S", "M"], + "largo's": [], + "scruffiness": ["M"], + "lugger": ["M", "S"], + "novena's": [], + "workplace'ses": [], + "ellipsoids": [], + "cambering": [], + "Attucks's": [], + "inaccuracy": ["S"], + "exceeds": [], + "served": [], + "trounces": [], + "Pharisees": [], + "rill": ["M", "S"], + "Axum's": [], + "cheese'sing": [], + "greats": [], + "military": ["M"], + "sidemen": [], + "democratized": [], + "crookedly": [], + "AP's": [], + "voyaging": [], + "panelingings": [], + "graphologist'ses": [], + "mudslinger's": [], + "SVN's": [], + "decentralize": [], + "paperboy's": [], + "Poiret's": [], + "collocate'sing": [], + "ugliness's": [], + "giddiness's": [], + "naturalizing": [], + "holidaymaker": ["S"], + "basketball's": [], + "intersession": ["S", "M"], + "Whitehall": ["M"], + "grapefruit": ["M", "S"], + "qualifies": [], + "Gujarati": ["M"], + "enthusing": [], + "illustriousness's": [], + "baluster": ["S", "M"], + "Cahokia": ["M"], + "Volkswagen": ["M"], + "Milken's": [], + "allegedly": [], + "keen's": [], + "Hubble": ["M"], + "nisei's": [], + "mugshots": [], + "Marc's": [], + "adulthood": ["M"], + "catercorner": [], + "pain": ["M", "D", "S", "G"], + "shiver'sed": [], + "Malawians": [], + "microbreweries": [], + "quarter'sed": [], + "weening": [], + "Vincent": ["M"], + "boobing": [], + "maraudeder": [], + "carousals": [], + "dossier's": [], + "lyric": ["S", "M"], + "halters": [], + "convokesing": [], + "Braddock": ["M"], + "Irishmen": ["M"], + "mash'sed": [], + "gibbets": [], + "switch's": [], + "dairies": [], + "wrathfully": [], + "lifeguards's": [], + "poisinged": [], + "wail": ["M", "D", "R", "Z", "G", "S"], + "preacher's": [], + "neocolonialism's": [], + "mainstay's": [], + "hypothermia": ["M"], + "Zane's": [], + "astronautic": ["S"], + "trilogy's": [], + "funks": [], + "Claire": ["M"], + "analgesics's": [], + "invisibility": [], + "midyear'ses": [], + "knacksers": [], + "blockhead's": [], + "apportionments": [], + "reflatesing": [], + "heartwood": ["M"], + "sixteens's": [], + "filling's": [], + "Escher's": [], + "slickliers": [], + "fuses": [], + "exceeding": ["Y"], + "magnetos": [], + "relieves": [], + "lox's": [], + "Bluebeard": ["M"], + "Fatimid's": [], + "wingersing": [], + "thirst": ["S", "G", "M", "D"], + "encapsulated": [], + "abstractedly": [], + "bibliophiles's": [], + "maintain": ["Z", "G", "B", "D", "R", "S"], + "unwed": [], + "jestsers": [], + "gravies": [], + "wainscoting": ["M"], + "Izod's": [], + "shuttlecock'sed": [], + "bruise'sers": [], + "rehearsal'ses": [], + "overdraw": ["G", "S"], + "mainstay'ses": [], + "muteder": [], + "thrombus's": [], + "astronomer": ["S", "M"], + "Monk's": [], + "reverted": [], + "allele": ["M", "S"], + "rappel's": [], + "micrometeorites's": [], + "rendezvouseds": [], + "illuminations": [], + "officiator'ses": [], + "immunize": ["G", "D", "S"], + "Wilbert's": [], + "balloon's": [], + "mudroom's": [], + "ardor's": [], + "M'sing": [], + "graybeard's": [], + "untaught": [], + "Lavoisier's": [], + "outfoxed": [], + "footraces": [], + "expectancy": ["M"], + "acquits": [], + "pretension's": [], + "falsifiable": [], + "blogger's": [], + "sapwood": ["M"], + "circumscribinged": [], + "desecrated": [], + "calumnies's": [], + "beau's": [], + "parred": [], + "nibble's": [], + "Mac's": [], + "totter": ["Z", "G", "M", "D", "R", "S"], + "intriguingly": [], + "galls": [], + "lobby": ["G", "D", "S", "M"], + "tippexes": [], + "toiling": [], + "push": ["Z", "G", "M", "D", "R", "S"], + "Howells": ["M"], + "coring": [], + "hollering": [], + "linker": [], + "entertainsment": [], + "lade": ["S"], + "paperboys's": [], + "fuss": ["M", "D", "S", "G"], + "psychotherapies's": [], + "hinder": ["G", "D"], + "waterholes's": [], + "arena": ["M", "S"], + "C's": [], + "ladybugs": [], + "abstract's": [], + "quasar": ["M", "S"], + "insureds's": [], + "attending": [], + "patriarchy's": [], + "expiration's": [], + "balladeer": ["M", "S"], + "tailgatinged": [], + "foundsed": [], + "hornless": [], + "gray'sed": [], + "Sharron's": [], + "statisticians": [], + "lowerly": [], + "specifier": [], + "abolish": ["G", "D", "S"], + "desalinizing": [], + "bicyclists's": [], + "grubbing": [], + "warship": ["S", "M"], + "oleander": ["M", "S"], + "blondness": ["M"], + "upside's": [], + "ingratitude": [], + "carbines": [], + "electioneered": [], + "universal'sly": [], + "toddle": ["D", "R", "S", "M", "Z", "G"], + "traffic's": [], + "oriental'ses": [], + "hyphen's": [], + "HUD's": [], + "torsional": [], + "summon": ["D", "R", "S", "Z", "G"], + "underworld'ses": [], + "benchmark": ["M", "S"], + "stomping": [], + "assign's": [], + "wingnuts": [], + "Hickok": ["M"], + "hearths": [], + "exploitation's": [], + "akimbo": [], + "trouble": ["D", "S", "M", "G"], + "Einstein": ["M", "S"], + "Sudanese": ["M"], + "overexcite": ["D", "S", "G"], + "geographical": ["Y"], + "reviser'ses": [], + "Tuscaloosa's": [], + "Livingston": ["M"], + "beaut": ["M", "S"], + "buffoonery's": [], + "compings": [], + "mononucleosis": ["M"], + "initiator'ses": [], + "hamstring's": [], + "falloffs": [], + "bandsman's": [], + "landmasses": [], + "sugarcoateds": [], + "Castlereagh": ["M"], + "curlicue's": [], + "bruins": [], + "compartment": ["S", "M"], + "canyon's": [], + "Michigander": ["M", "S"], + "verbiage'ses": [], + "Montgolfier's": [], + "support'sed": [], + "seaport'ses": [], + "comply": ["N", "D", "S", "X", "G"], + "dunce's": [], + "crescendo's": [], + "Ernesto's": [], + "antagonisms": [], + "genuineness's": [], + "toileder": [], + "styluses": [], + "gazetteer's": [], + "glamouring": [], + "glads": [], + "pearl'sed": [], + "ventral": [], + "sing's": [], + "networked": [], + "vacuously": [], + "flushers": [], + "warpath's": [], + "image": ["D", "S", "M", "G"], + "creaky": ["R", "P", "T"], + "jazziest": [], + "decors": [], + "blackboards": [], + "delineations": [], + "commonalty": ["M"], + "milepost'ses": [], + "Jersey's": [], + "covenant's": [], + "camera": ["M", "S"], + "clear's": [], + "companion's": [], + "roguishliness": [], + "Pele's": [], + "ibid": [], + "xterm": ["M"], + "effectuated": [], + "unshorn": [], + "intermissions's": [], + "bursary": ["S", "M"], + "grouse'sers": [], + "eugenicist's": [], + "potpies's": [], + "grovelled": [], + "smokey": [], + "violas's": [], + "transistorizes": [], + "rand": ["M"], + "euchres": [], + "impoliteness": ["M", "S"], + "necklines": [], + "verging": [], + "hieroglyphic": ["M", "S"], + "cirque": ["M", "S"], + "trashier": [], + "Suzuki": ["M"], + "wanton'sed": [], + "digs": [], + "perspicaciously": [], + "nameds": [], + "experienced": [], + "canoeist": ["S", "M"], + "helm": ["M", "S"], + "futurists": [], + "Bantu's": [], + "oppress": ["D", "S", "G", "V"], + "reds": [], + "lankest": [], + "panelist'ses": [], + "incriminated": [], + "blithest": [], + "guesstimate": ["D", "S", "M", "G"], + "paunchy": ["R", "T"], + "bacchanalian'ses": [], + "patroness": ["M", "S"], + "lifeguards": [], + "split": ["S", "M"], + "trainers": [], + "diplomata": [], + "Atkinson's": [], + "progressions": [], + "clewsing": [], + "Hadrian's": [], + "velvety": [], + "wretched": ["T", "P", "R", "Y"], + "controvertible": ["I"], + "abetted": [], + "grandchild's": [], + "archbishops": [], + "overlie": [], + "grits": ["M"], + "taint'sed": [], + "Nick": ["M"], + "centipede's": [], + "Kannada": ["M"], + "hemorrhage": ["M", "G", "D", "S"], + "Hindenburg's": [], + "periwinkles's": [], + "bowlegs's": [], + "carousal": ["S", "M"], + "oozinged": [], + "calcifieds": [], + "interjecting": [], + "craven": ["S", "M", "Y", "P"], + "Flintstones's": [], + "rigorously": [], + "blandness's": [], + "overcompensated": [], + "Ginsburg's": [], + "advert": ["S", "M", "D", "G"], + "oldies": [], + "poniards": [], + "enticements": [], + "elegiac'ses": [], + "gibbeting's": [], + "megalithic": [], + "duration's": [], + "firmest": [], + "bedsore's": [], + "populous": ["P"], + "dynamitinged": [], + "serviceman's": [], + "dissenterers": [], + "Hermosillo": ["M"], + "unrecognizable": [], + "debonairly": [], + "prizewinning": [], + "carryalls": [], + "bullfinch": ["M", "S"], + "brattier": [], + "bailiwick'ses": [], + "garrets": [], + "incidences's": [], + "mislead": ["G", "S"], + "congratulating": [], + "betel's": [], + "blowup'ses": [], + "versos": [], + "adjacent": ["Y"], + "limbos": [], + "Superglue": ["M"], + "proprietorial": ["Y"], + "Himalayas": ["M"], + "stalemate's": [], + "juddereds": [], + "tidies's": [], + "butternut's": [], + "rescindsed": [], + "benefactor's": [], + "brougham": ["S", "M"], + "Toynbee": ["M"], + "agglomerateds": [], + "biodegradability": ["M"], + "meanderings's": [], + "smarting": [], + "inarticulacy": [], + "anticipation": ["M"], + "Saturnalia's": [], + "respite": [], + "tempting": ["Y"], + "spinier": [], + "Hittites's": [], + "suppliants's": [], + "promptliers": [], + "Casanova": ["S", "M"], + "grousers": [], + "bleeding": ["M"], + "clannishness's": [], + "gaze'sers": [], + "Francophile": [], + "Clemson's": [], + "Huguenots": [], + "subspecies": ["M"], + "Atreus": ["M"], + "encodeder": [], + "filminesser": [], + "militatinged": [], + "Cecile": ["M"], + "whiteninged": [], + "subsystems": [], + "breathalyze": ["Z", "G", "D", "R", "S"], + "Bacall": ["M"], + "allots": [], + "chaffinch's": [], + "longbows": [], + "delineation's": [], + "alternates's": [], + "tarnishing": [], + "watercolor'ses": [], + "metronomes": [], + "harebrained": [], + "reprized": [], + "fieldworkers": [], + "rescue": ["D", "R", "S", "M", "Z", "G"], + "paganism's": [], + "hedgerows": [], + "demigoddesses": [], + "hospitalizes": [], + "countervails": [], + "Confucian's": [], + "Scopes's": [], + "diaphragm": ["S", "M"], + "blacksnake": ["S", "M"], + "containers": [], + "auscultations": [], + "Attlee": ["M"], + "injection": ["S", "M"], + "mortgagee'ses": [], + "Sedna's": [], + "sane": ["I", "Y", "T", "R"], + "sleepwalksed": [], + "petard": ["M", "S"], + "consists": [], + "schleps": [], + "Samar's": [], + "methamphetamine": ["M"], + "refrigerating": [], + "blocks": [], + "undercoats's": [], + "cowardice's": [], + "kilowatts": [], + "badman's": [], + "legalistically": [], + "crackhead's": [], + "expedient's": [], + "scrolling": [], + "Thoth": ["M"], + "handcars's": [], + "dread'sed": [], + "victuals": [], + "polyglot": ["S", "M"], + "dermatitis's": [], + "concertgoers": [], + "allayeds": [], + "plum": ["G", "M", "D", "S"], + "hernial": [], + "engender": ["S", "G", "D"], + "Almaty's": [], + "Esteban's": [], + "factory's": [], + "ditch": ["M", "D", "S", "G"], + "comperesing": [], + "secretively": [], + "scuzziest": [], + "vault's": [], + "diggings's": [], + "ungracefully": [], + "looseness's": [], + "ironies": [], + "Huns's": [], + "showereding": [], + "dB": [], + "petunia": ["M", "S"], + "leaned": [], + "Munch's": [], + "weathereding": [], + "Christina's": [], + "presidium's": [], + "penitent's": [], + "pretend": ["D", "R", "Z", "G", "S"], + "parathyroid's": [], + "Tokay's": [], + "Dalmatian": ["S", "M"], + "quash": ["G", "D", "S"], + "anon": ["S"], + "goggle": ["D", "S", "M", "G"], + "interloper's": [], + "teletypes": [], + "hormones's": [], + "sidereal": [], + "catholic": [], + "VIPs": [], + "citronella": ["M"], + "picture'sing": [], + "hydrogenated": [], + "acidosis": ["M"], + "casserole": ["D", "S", "M", "G"], + "Holbein's": [], + "Gilchrist": ["M"], + "bushwhackers": [], + "dicotyledon's": [], + "tarps": [], + "goldsmith": ["M"], + "chasersing": [], + "Varanasi": ["M"], + "disambiguate": ["N"], + "augur'sed": [], + "niggle": ["M", "Z", "G", "D", "R", "S"], + "bedrooms": [], + "microwavable": [], + "Darfur": ["M"], + "year": ["M", "Y", "S"], + "mousers": [], + "Gretel's": [], + "cataleptic'ses": [], + "sawdust's": [], + "here's": [], + "godsends": [], + "departmentalized": [], + "smudgeds": [], + "Djibouti's": [], + "harmony": ["E", "M"], + "wobble'sing": [], + "professor": ["S", "M"], + "Atria": ["M"], + "Beryl": ["M"], + "zestfulliness": [], + "Legree": ["M"], + "poofters": [], + "underbelly": ["S", "M"], + "bunny's": [], + "alarmist's": [], + "brutalities": [], + "showdowns": [], + "molder'sed": [], + "Luxembourg'ser": [], + "Daniel's": [], + "buyers": [], + "subleasinged": [], + "trapezoid": ["S", "M"], + "twangs's": [], + "Japanese's": [], + "shouldering": [], + "pivoted": [], + "Gwendolyn": ["M"], + "inadvertently": [], + "boundlessness's": [], + "ill": ["S", "M", "P"], + "refiner's": [], + "superfluousliness": [], + "snarfing": [], + "addeder": [], + "happen": ["S", "D", "G", "J"], + "cleanliness's": [], + "toiler": ["M"], + "democrats": [], + "maturer": [], + "romp's": [], + "trauma": ["M", "S"], + "meridian's": [], + "hobbyist's": [], + "harangue's": [], + "wiseacres": [], + "remote": ["R", "S", "M", "Y", "T", "P"], + "complicit": [], + "underplayeding": [], + "circumscribes": [], + "unlock": ["D", "S", "G"], + "Benjamin": ["M"], + "deputy's": [], + "scorpion'ses": [], + "Marina": ["M"], + "jollies's": [], + "colliery's": [], + "seaworthiness": ["M"], + "clasp": ["U", "G", "D", "S"], + "scholarship'ses": [], + "4": ["n", "m"], + "marker'ses": [], + "servo": ["M", "S"], + "beefing": [], + "misconceivinged": [], + "clamping's": [], + "invitation's": [], + "gushing": ["Y"], + "obfuscate": ["G", "N", "X", "D", "S"], + "halftones": [], + "sacked": [], + "colons's": [], + "flogger's": [], + "shopaholic's": [], + "labium's": [], + "fritz's": [], + "upliftings": [], + "cruises's": [], + "figuration's": [], + "high's": [], + "expostulating": [], + "gewgaws": [], + "bouillon's": [], + "bestseller's": [], + "dachshund": ["M", "S"], + "likinged": [], + "lardersing": [], + "silks": [], + "rattling": [], + "Molokai's": [], + "proletarians": [], + "hub": ["S", "M"], + "sling": ["S", "M", "G"], + "accommodatingly": [], + "statuary's": [], + "blend's": [], + "irides": [], + "deer's": [], + "stokeder": [], + "translationable": [], + "Erma": ["M"], + "lordly": ["T", "P", "R"], + "Baath's": [], + "youngster": ["M", "S"], + "aches": [], + "wights's": [], + "Samaritan": ["M", "S"], + "nonuser": ["M", "S"], + "ocular'ses": [], + "sissies": [], + "probable's": [], + "incense": ["M", "G", "D", "S"], + "spade": ["D", "S", "M", "G"], + "gushy": ["T", "R"], + "nonpareil": ["M", "S"], + "windlasses": [], + "abridges": [], + "sumo's": [], + "Dial": ["M"], + "jested": [], + "anathematizesing": [], + "visage'ses": [], + "shinnying": [], + "penthouse": ["S", "M"], + "mountainsides": [], + "Vijayawada": ["M"], + "magnetic": [], + "ionospheres": [], + "whiskeder": [], + "unskillful": [], + "instrument's": [], + "laves": [], + "magnetometer's": [], + "apple": ["M", "S"], + "common's": [], + "jeopardizeds": [], + "noncompetitive": [], + "observer": ["M"], + "tapersing": [], + "Marius": ["M"], + "customhouses": [], + "goulashes": [], + "skins": [], + "fishhook's": [], + "tatted": [], + "eyesores": [], + "dioramas's": [], + "amazon'ses": [], + "ululation's": [], + "fizzles's": [], + "discrepancy's": [], + "inflameds": [], + "toboggan's": [], + "fleet'sed": [], + "Onassis's": [], + "risible": [], + "ionizer": ["M", "S"], + "Gog": ["M"], + "dingierness": [], + "bedrooms's": [], + "serif's": [], + "tacticians": [], + "deploreds": [], + "dipoles's": [], + "grenadine's": [], + "washersing": [], + "contributor'ses": [], + "depersonalize": [], + "muttereder": [], + "century's": [], + "nightshirt": ["S", "M"], + "wayfaring": ["S", "M"], + "astraddle": [], + "airlifted": [], + "towline'ses": [], + "basswood's": [], + "Vega": ["S", "M"], + "Yvette": ["M"], + "simulator's": [], + "inerrant": [], + "wrists's": [], + "entomologist": ["M", "S"], + "looked": [], + "painstaking'sly": [], + "according": ["Y"], + "toddle'sers": [], + "pursuers": [], + "Creator": ["M"], + "faille's": [], + "distastes's": [], + "cud's": [], + "persimmons's": [], + "shortchangeds": [], + "herpetologist's": [], + "peroxide'sing": [], + "salvo": ["M", "S"], + "pickier": [], + "wool'sen": [], + "faithlessly": [], + "verity": ["S", "M"], + "excerpteding": [], + "spavin": ["M", "D"], + "Cote's": [], + "pimpernel'ses": [], + "unseen": ["M"], + "upward": ["S", "Y"], + "ancestrally": [], + "appellants's": [], + "Panamanians": [], + "bloodeds": [], + "Pittman": ["M"], + "knavishly": [], + "gapings": [], + "samovars": [], + "ruminates": [], + "appointments's": [], + "secretive": ["P", "Y"], + "beclouds": [], + "fuchsias": [], + "Gorky": ["M"], + "gallantly": [], + "betrothals's": [], + "requiter": ["M"], + "friendliest": [], + "defalcate": ["D", "S", "X", "G", "N"], + "cistern": ["M", "S"], + "transmittal's": [], + "instigate": ["D", "S", "G", "N"], + "helicoptering": [], + "lessee'ses": [], + "aberration": ["M", "S"], + "Jacqueline": ["M"], + "aligners": [], + "water": ["G", "S", "M", "D"], + "Sundas's": [], + "highland'ser": [], + "drawsings": [], + "Cantabrigian's": [], + "grossed": [], + "presaginged": [], + "harness": ["U", "D", "S", "G"], + "shrimpersing": [], + "Dhaka's": [], + "encroachingment": [], + "dehumidifier": [], + "leavening": ["M"], + "ofttimes": [], + "tightest": [], + "vaunts's": [], + "loiterer": ["M"], + "forepersons": [], + "plagiarizer's": [], + "Cole": ["M"], + "snarliest": [], + "Wilfred": ["M"], + "jointing": [], + "stymie'sed": [], + "processional's": [], + "warp": ["M", "D", "G", "S"], + "supplement's": [], + "zinger": ["M"], + "midterm'ses": [], + "effuses": [], + "shuffleboard's": [], + "ING's": [], + "gourmets's": [], + "cunt": ["M", "S", "!"], + "aureoles's": [], + "inorganically": [], + "immured": [], + "pitapat": ["S", "M"], + "Midwestern's": [], + "tole's": [], + "sorrels": [], + "cobnut": ["S"], + "friendings": [], + "pimps": [], + "beaches": [], + "arty": ["P", "T", "R"], + "lolloped": [], + "cherubs": [], + "claps's": [], + "Yemenite": [], + "Serbia": ["M"], + "peers": [], + "Seychelles": ["M"], + "waterboard'sed": [], + "mortuaries": [], + "blankeder": [], + "recapped": [], + "fucker": ["M", "!"], + "voyaginged": [], + "weatherpersons": [], + "camper": ["M", "S"], + "tenderizing": [], + "dolefulliness": [], + "twopence's": [], + "goals": [], + "seamstress's": [], + "unblushingly": [], + "nonwhite'ses": [], + "quicker": [], + "juts's": [], + "Oliver": ["M"], + "inn": ["S", "G", "M", "R", "J"], + "dent's": [], + "Balearic's": [], + "Cl's": [], + "rant'sed": [], + "plushiest": [], + "radiotelephone's": [], + "lushers": [], + "parchinged": [], + "glowered": [], + "paleographer'ses": [], + "technocrat": ["M", "S"], + "Kiel": ["M"], + "clapper'ses": [], + "reverend": ["S", "M"], + "flagellum's": [], + "whammy's": [], + "leer's": [], + "reneging": [], + "Gothic's": [], + "tot'sed": [], + "Alpheratz": ["M"], + "dos": [], + "obtuse": ["Y", "T", "R", "P"], + "grange": ["S", "M"], + "Bergman": ["M"], + "ignitable": [], + "trinity's": [], + "placards's": [], + "numskulls": [], + "cripes": [], + "naivety's": [], + "comforters": [], + "herbivore": ["S", "M"], + "Linuxes": [], + "statue's": [], + "chairlift'ses": [], + "hunger'sed": [], + "tabular": [], + "trivialize": ["G", "D", "S"], + "medullas's": [], + "skimmers": [], + "psyche's": [], + "catcalled": [], + "splay'sed": [], + "homos": [], + "smuggler's": [], + "handset's": [], + "schnooks": [], + "substantively": [], + "tyrannosaurus": ["M", "S"], + "outsize'ses": [], + "canoeist's": [], + "muse": ["M", "G", "D", "S", "J"], + "blurred": [], + "toucan's": [], + "offing's": [], + "Ohio's": [], + "blazeder": [], + "spokes's": [], + "clashing": [], + "teller's": [], + "rarebit'ses": [], + "uncertain": [], + "Magritte": ["M"], + "Bauhaus's": [], + "derogated": [], + "tussle": ["D", "S", "M", "G"], + "hurtsing": [], + "ballyhoo": ["S", "M", "D", "G"], + "spaceflight": ["M", "S"], + "songbirds": [], + "tax": ["B", "Z", "G", "M", "D", "R", "S"], + "overlap": ["S", "M"], + "karakul": ["M"], + "Dixon": ["M"], + "enthusiast": ["M", "S"], + "Clarence": ["M"], + "acculturate": ["D", "S", "G", "N"], + "primping": [], + "untidiest": [], + "molasses": ["M"], + "woolly'sness": [], + "Hatfield's": [], + "zoophytic": [], + "lambsing": [], + "hissing": [], + "bluffness": ["M"], + "Octavian's": [], + "Susan's": [], + "kinked": [], + "nongranular": [], + "staunchers": [], + "cauldron'ses": [], + "necklacesings": [], + "confidesers": [], + "helves's": [], + "crookedness's": [], + "dark's": [], + "Magellanic": ["M"], + "underpinned": [], + "unflappability": ["M"], + "finer": [], + "hitch's": [], + "DiMaggio": ["M"], + "overeatings": [], + "Nasser": ["M"], + "storage's": [], + "yuks's": [], + "triennial'sly": [], + "determineds": [], + "deconstructionism": [], + "caseload": ["M", "S"], + "burr'sed": [], + "Schedar's": [], + "gabardine": ["S", "M"], + "interpretation": ["A", "M", "S"], + "Pickering": ["M"], + "indigently": [], + "paranoia": ["M"], + "Judah": ["M"], + "wagerers": [], + "leaseholds": [], + "baresness": [], + "dresses": [], + "incomprehensibility": [], + "Sikorsky": ["M"], + "mindlessness": ["M"], + "cymbal": ["M", "S"], + "lunch's": [], + "manicurist": ["M", "S"], + "calipers": [], + "kola's": [], + "shimmed": [], + "Waller": ["M"], + "conveniences": [], + "Howell'ses": [], + "Carolinian's": [], + "weatherproofing": [], + "eviction'ses": [], + "cretin's": [], + "floundersing": [], + "engulfing": [], + "wearies": [], + "scream'sed": [], + "snorkeler": ["M"], + "Mozart": ["M"], + "payware": [], + "gangway'ses": [], + "clinchers": [], + "mediatesing": [], + "chasubles's": [], + "irruptive": [], + "needling": [], + "kamikaze'ses": [], + "peanut": ["M", "S"], + "Krishna": ["M"], + "measlier": [], + "Archie's": [], + "splintsers": [], + "depressing": ["Y"], + "hairball'ses": [], + "Chukchi's": [], + "suffering": ["M"], + "conditioners's": [], + "paycheck'ses": [], + "webcam'ses": [], + "Attica": ["M"], + "agoraphobics": [], + "lilts": [], + "irresponsible": [], + "elegiac": ["M", "S"], + "integrates": [], + "curlers": [], + "aggregateds": [], + "rank'sed": [], + "Malawians's": [], + "awarding": [], + "Sinatra's": [], + "perversions": [], + "tripped": [], + "scrawleding": [], + "wilteds": [], + "underchargeds": [], + "lithograph": ["M", "D", "R", "Z", "G"], + "aflame": [], + "Spartacus's": [], + "accost'sed": [], + "sparklying": [], + "evanescent": [], + "whippersnapper's": [], + "conversational": ["Y"], + "Attic": ["M"], + "taxidermy's": [], + "worktable's": [], + "arch": ["P", "Z", "T", "G", "V", "M", "D", "R", "S", "Y"], + "specifies": [], + "brazier": ["S", "M"], + "stooping": [], + "Ca": ["M"], + "regimen's": [], + "rhythms's": [], + "telesales": [], + "pelvis's": [], + "changelings's": [], + "Valdez's": [], + "preconceives": [], + "scotches": [], + "chainsawing": [], + "technology": ["S", "M"], + "galosh'ses": [], + "depicteds": [], + "woefullest": [], + "baronets": [], + "deadlockings": [], + "audiological": [], + "audiologists's": [], + "killjoys": [], + "Leiden's": [], + "retributions": [], + "ritually": [], + "gigglersing": [], + "sympathies's": [], + "restorative": ["S", "M"], + "attackers": [], + "derringer": ["S", "M"], + "housetop": ["S", "M"], + "flatiron's": [], + "unflagging": ["Y"], + "wannabe": ["S", "M"], + "draftee": ["S", "M"], + "smelter": ["M"], + "monist's": [], + "Sappho's": [], + "PM's": [], + "serializinged": [], + "zipperings": [], + "forgiveness's": [], + "pat's": [], + "hoops": [], + "scrimpsed": [], + "bistro'ses": [], + "rundowns's": [], + "Constable": ["M"], + "Ireland": ["M"], + "westernizes": [], + "sound": ["J", "P", "S", "M", "D", "R", "Y", "Z", "T", "G"], + "narcotizeds": [], + "diamondback'ses": [], + "feldspar's": [], + "floppy": ["P", "R", "S", "M", "T"], + "pentameter's": [], + "aspersions": [], + "stymie's": [], + "Wilkes's": [], + "smalls's": [], + "fiancee's": [], + "bemusedly": [], + "calmnesses": [], + "Vlasic": ["M"], + "meditated": [], + "pullover": ["S", "M"], + "septicemia's": [], + "format": ["S", "M", "V"], + "hibernated": [], + "vandalizeds": [], + "protuberance'ses": [], + "Thornton's": [], + "sanctifies": [], + "communist's": [], + "deadbeat's": [], + "duplicator'ses": [], + "squanderinged": [], + "motorization's": [], + "portliness": ["M"], + "Thatcher's": [], + "sentimentalism's": [], + "clinician": ["S", "M"], + "counterespionage's": [], + "Joey": ["M"], + "feeling'sly": [], + "intended": ["S", "M"], + "wormsing": [], + "inseam": ["S", "M"], + "Canaan's": [], + "duding": [], + "bused": [], + "gizzard'ses": [], + "unison's": [], + "straightest": [], + "stubbornness's": [], + "condor": ["S", "M"], + "thirstily": [], + "tetracycline": ["M"], + "fornicators": [], + "majorities's": [], + "fete": ["M", "G", "D", "S"], + "oozeds": [], + "Armenia's": [], + "frolickers's": [], + "toehold's": [], + "emulators": [], + "lozenges's": [], + "Yahoo": ["M"], + "Fassbinder": ["M"], + "uplift'sed": [], + "industrialists": [], + "Gujranwala": ["M"], + "headfirst": [], + "jeweleder": [], + "gateau": [], + "plasticized": [], + "fining": [], + "ruin's": [], + "encapsulate": ["X", "G", "N", "D", "S"], + "parliamentarian's": [], + "winter's": [], + "purger's": [], + "snoop's": [], + "headmaster": ["S", "M"], + "misspells": [], + "forties's": [], + "adoption": ["S", "M"], + "snareds": [], + "shuttlecock's": [], + "reputation'ses": [], + "pooh": ["G", "M", "D"], + "Kara's": [], + "sty's": [], + "yeas": [], + "chunkeds": [], + "perfidious": ["Y"], + "winder's": [], + "gray": ["M", "D", "R", "T", "G", "S", "P"], + "carjack": ["J", "S", "D", "R", "Z", "G"], + "Darlene": ["M"], + "amalgamating": [], + "stockily": [], + "deputizeds": [], + "acculturating": [], + "mollycoddles": [], + "Castor": ["M"], + "Derek": ["M"], + "individuallies": [], + "leasers's": [], + "brevet's": [], + "handcar": ["S", "M"], + "distressful": [], + "legacies": [], + "sought": ["U"], + "mate'ses": [], + "indissolubly": [], + "Aden": ["M"], + "problematic": [], + "grade's": [], + "Josiah": ["M"], + "nostrums": [], + "hollyhock'ses": [], + "boggier": [], + "tighten": ["Z", "G", "D", "R"], + "fiche's": [], + "scuffs": [], + "demise": ["M", "G", "D", "S"], + "numerator'ses": [], + "thankeding": [], + "chancelleries": [], + "buzzard": ["M", "S"], + "burnishers": [], + "otter's": [], + "Darwin": ["M"], + "Gris's": [], + "Zen's": [], + "oaten": [], + "boatswain": ["S", "M"], + "chitinous": [], + "possible's": [], + "cops": [], + "falsifications": [], + "Trevor": ["M"], + "rectitude's": [], + "Henrik's": [], + "Sanchez's": [], + "rollback": ["S", "M"], + "ladylove": ["M", "S"], + "clarification": ["M"], + "winning": ["M", "Y", "S"], + "paternalists": [], + "promenade's": [], + "galley's": [], + "nacelles's": [], + "morning": ["M"], + "shipwreck's": [], + "followingings": [], + "peruse": ["G", "D", "S"], + "severer": [], + "eternalliness": [], + "scoffsers": [], + "overnights": [], + "frolic's": [], + "titleholder": ["M", "S"], + "reconciliation": ["S"], + "waned": [], + "mouthwatering": [], + "pistils": [], + "corroborator": ["S", "M"], + "ambles": [], + "suitable": [], + "Periclean": ["M"], + "shininess's": [], + "Amur's": [], + "Copernican": ["M"], + "blockaders": [], + "aquamarine's": [], + "pilings": [], + "heavier": [], + "microbe'ses": [], + "unredoes": [], + "attaching": [], + "bumbling": [], + "crutches": [], + "Pluto's": [], + "jambs": [], + "crayons's": [], + "offinged": [], + "industrial": ["Y"], + "sourcing": [], + "discography's": [], + "ax'sed": [], + "phylum's": [], + "ember's": [], + "sabotage's": [], + "tagline": ["M", "S"], + "blames": [], + "adeptness": ["M"], + "manila": ["M"], + "compendiums's": [], + "mudslide's": [], + "forebears": [], + "naturalist": ["S", "M"], + "worksheet's": [], + "Banjul": ["M"], + "declaw": [], + "confessional": ["S", "M"], + "revolvablers": [], + "moocheder": [], + "sharkeds": [], + "felicity's": [], + "supervisor": ["M", "S"], + "lettings": [], + "fantasy": ["D", "S", "M", "G"], + "rejoicinged": [], + "camel'ses": [], + "Shanghai": ["M"], + "dacha's": [], + "sanctimoniousliness": [], + "sympathies": ["M"], + "palpitation's": [], + "Ionians": [], + "Brian's": [], + "Marion": ["M"], + "Freemason's": [], + "kickoffs": [], + "afferent": [], + "aftershocks": [], + "Capone": ["M"], + "fervency": ["M"], + "rattans": [], + "brassiness's": [], + "wrath's": [], + "locating": [], + "giddiest": [], + "buy's": [], + "Parmesan's": [], + "jocosity's": [], + "where": ["S", "M"], + "incorporeal": [], + "parliamentarian": ["S", "M"], + "Triassic's": [], + "sloshes": [], + "duos": [], + "Lhasa'ses": [], + "incurable's": [], + "excerpt'sed": [], + "absents": [], + "Arapaho's": [], + "wanner": [], + "abominably": [], + "strobe's": [], + "Istanbul": ["M"], + "gutters's": [], + "urbanizesing": [], + "RNA's": [], + "raspiest": [], + "upland": ["M", "S"], + "immunodeficiency": ["M"], + "noninterference": ["M"], + "prostratingen": [], + "VLF's": [], + "tics's": [], + "trot'ses": [], + "nubbin'ses": [], + "countermandeds": [], + "situation's": [], + "elbow": ["S", "M", "D", "G"], + "moisture's": [], + "ecologist's": [], + "sanctions's": [], + "mason's": [], + "theatricallies": [], + "Fran": ["M"], + "flowerier": [], + "remortgage": [], + "hatpins": [], + "McCormick's": [], + "laburnum": ["M", "S"], + "suspect's": [], + "prophesy's": [], + "mender's": [], + "florescence's": [], + "assenting's": [], + "corpus's": [], + "epithet": ["S", "M"], + "tabor": ["M", "S"], + "studies": [], + "godforsaken": [], + "bentwood's": [], + "beauty": ["S", "M"], + "veerings": [], + "memberships": [], + "arbitrators": [], + "grisliness's": [], + "screeching": [], + "guysing": [], + "brouhaha's": [], + "orthographically": [], + "bounties": [], + "wastelands": [], + "cocksure": [], + "valance": ["M", "S"], + "esters's": [], + "Pt": ["M"], + "suburb'ses": [], + "criminallies": [], + "interlock": ["G", "M", "D", "S"], + "ursine": [], + "tiers": [], + "popgun": ["S", "M"], + "bridgehead": ["S", "M"], + "candy": ["G", "D", "S", "M"], + "Pindar's": [], + "alleluia": ["S", "M"], + "subtendeding": [], + "clevises": [], + "transversely": [], + "reimbursing": [], + "resupplied": [], + "guaranis": [], + "physicallies": [], + "Sinbad": ["M"], + "farming": ["M"], + "Ethiopia's": [], + "inhalator": ["M", "S"], + "prescience": ["M"], + "formatting's": [], + "heartened": [], + "Florsheim": ["M"], + "coarsening": [], + "outfightsing": [], + "undeniable": [], + "patchouli": [], + "guttersnipe'ses": [], + "perfumersing": [], + "weekended": [], + "fizzy": ["R", "T"], + "Thar": ["M"], + "landsman's": [], + "alteringed": [], + "electromagnetism": ["M"], + "deemsing": [], + "violoncello's": [], + "ecclesiastically": [], + "email'sed": [], + "economize": ["D", "R", "S", "Z", "G"], + "swerving": ["U"], + "baptizersing": [], + "viol": ["M", "B", "S"], + "verifieds": [], + "overexpose": ["G", "D", "S"], + "shrift's": [], + "pidgin's": [], + "flagstone's": [], + "vicinity": ["M"], + "whores": [], + "Bambi's": [], + "tentativeness's": [], + "leapfrog": ["M", "S"], + "callused": [], + "crucible": ["S", "M"], + "ensurer's": [], + "crests": [], + "podiatry": ["M"], + "Gallic's": [], + "licentiate": ["S", "M"], + "forewarning": [], + "typeface": ["M", "S"], + "Aquarius'ses": [], + "Bert": ["M"], + "nuthatch'ses": [], + "hassled": [], + "spindlier": [], + "Julian": ["M"], + "chigger'ses": [], + "egoist": ["S", "M"], + "mudslinging": ["M"], + "writersing": [], + "Esterhazy's": [], + "uncles": [], + "sipping": [], + "Tuskegee": ["M"], + "precise": ["D", "R", "S", "Y", "T", "G", "N", "P"], + "demureness": ["M"], + "transmigrateds": [], + "laundered": [], + "slickness": ["M"], + "prof'ses": [], + "Ursula": ["M"], + "rapidness": ["M"], + "lob's": [], + "gel's": [], + "pejoratively": [], + "eleven's": [], + "pressurizes": [], + "stunning": ["Y"], + "patterns's": [], + "tingable": [], + "clearheaded": [], + "subtitled": [], + "confectioner's": [], + "stratagems's": [], + "germinates": [], + "townees": [], + "borstal": ["S"], + "Englisher": [], + "butte": ["S", "M"], + "rankings": [], + "stunt'sed": [], + "backcloth": [], + "imprinters": [], + "asphalt'sed": [], + "Assamese's": [], + "Ladyships": [], + "fibrin": ["M"], + "cooties's": [], + "commonsense": [], + "desolateds": [], + "whoops's": [], + "cough'sed": [], + "individuatesing": [], + "stripteased": [], + "wiled": [], + "watchmaker": ["M", "S"], + "decedent's": [], + "flimflam's": [], + "dynamites": [], + "coopereding": [], + "trumpeters": [], + "cascading": [], + "dallying": [], + "udder's": [], + "overbalanceds": [], + "overprinting": [], + "wrenching": [], + "batchesing": [], + "scented": ["U"], + "performed": ["U"], + "dated": ["U"], + "deafest": [], + "stringers": [], + "insouciance's": [], + "cajoled": [], + "predigest": ["G", "D", "S"], + "privet's": [], + "kernel's": [], + "London'ser": [], + "fibulae": [], + "windcheaters": [], + "swoops": [], + "payees": [], + "Lizzy": ["M"], + "coastline'ses": [], + "appositives": [], + "weightiness's": [], + "lib": ["M"], + "businessperson": ["S", "M"], + "sixty": ["S", "M", "H"], + "lickingses": [], + "impregnable": [], + "forevermore": [], + "traffickers's": [], + "intimations": [], + "backfields": [], + "oink'sed": [], + "Marathi": ["M"], + "jogs": [], + "mere's": [], + "companies": [], + "woodwind": ["M", "S"], + "gerund'ses": [], + "unflavored": [], + "splayed": [], + "Frye": ["M"], + "hardliner's": [], + "toweling": ["M"], + "placekick's": [], + "bauble's": [], + "circled": [], + "delimit": [], + "organization": ["A", "S", "M"], + "biker": ["M"], + "unblock": [], + "protectiveness's": [], + "handling": [], + "Gaziantep": ["M"], + "paycheck's": [], + "casual's": [], + "farmland'ses": [], + "remonstrateds": [], + "testosterone": ["M"], + "lacewings's": [], + "strictliness": [], + "sisterhood": ["M", "S"], + "rhythmically": [], + "voyageur": ["S", "M"], + "espadrilles": [], + "antigenicity's": [], + "jostle": ["M", "G", "D", "S"], + "hippopotamuses": [], + "hatefully": [], + "hiving": [], + "embellishing": [], + "Aymara's": [], + "scalp'sed": [], + "balloting": [], + "Eva's": [], + "selectsing": [], + "schnozes": [], + "wimped": [], + "damson's": [], + "crankinesser": [], + "parleying": [], + "chock": ["G", "M", "D", "S"], + "preview's": [], + "imitativeness": ["M"], + "turbid": [], + "airflow": ["M"], + "Evangelist's": [], + "Lancaster's": [], + "foulings": [], + "Eastwood's": [], + "sharecropping": [], + "cheery": ["T", "P", "R"], + "microelectronics's": [], + "bogeyed": [], + "filtererable": [], + "theorem's": [], + "patriarchies's": [], + "nonnumerical": [], + "teletext's": [], + "chunderinged": [], + "bauds": [], + "tarmacs": [], + "grandsons": [], + "poppet": ["S"], + "Tutu": ["M"], + "cranky": ["P", "R", "T"], + "Azana's": [], + "prick'sed": [], + "fate'ses": [], + "Louisianians": [], + "brassiness": ["M"], + "incineration": ["M"], + "wainscot'sed": [], + "swathed": [], + "Moroccan": ["S", "M"], + "Monsignors's": [], + "pet": ["S", "Z", "M", "R"], + "objection": ["S", "M", "B"], + "dates": [], + "submerging": [], + "Irishwomen's": [], + "freelance's": [], + "concerns": [], + "hydrating": [], + "institute's": [], + "fuzzesing": [], + "stake'sing": [], + "Lamarck": ["M"], + "seaside'ses": [], + "Sui": ["M"], + "drizzle's": [], + "bullfights": [], + "verbosely": [], + "neoplastic": [], + "minestrone": ["M"], + "frighteneding": [], + "pitying": ["Y"], + "impossibilities": [], + "cooper's": [], + "misjudgments's": [], + "lolcats's": [], + "semantics": ["M"], + "yapped": [], + "Andrews's": [], + "philistinism's": [], + "hangman's": [], + "practices": [], + "Appalachians's": [], + "Iroquoians": [], + "busheled": [], + "plonkers": [], + "calculatingen": [], + "soothingly": [], + "weirdie": ["M", "S"], + "rooter's": [], + "utilitarian's": [], + "mantleds": [], + "oddball's": [], + "callowness": ["M"], + "TKO": ["M"], + "pompanos": [], + "hesitate": ["D", "S", "G", "N", "X"], + "Darla": ["M"], + "sooner": [], + "callus": ["M", "D", "S", "G"], + "tripos": [], + "insatiability's": [], + "satanists": [], + "Havarti's": [], + "vacuum": ["G", "S", "M", "D"], + "horseflesh": ["M"], + "utilitarianism's": [], + "breastfeeding": [], + "Thespian": ["M"], + "cushionsing": [], + "spermatozoon's": [], + "headingings": [], + "coning": [], + "alignment's": [], + "surgeon's": [], + "Smolensk": ["M"], + "vasomotor": [], + "insidiousliness": [], + "butane": ["M"], + "Navajos's": [], + "Sarasota": ["M"], + "engineered": [], + "pimping": [], + "tidying": [], + "waft's": [], + "dungaree's": [], + "preserver's": [], + "sleety": [], + "fatigue's": [], + "airlift": ["S", "G", "M", "D"], + "sickens": [], + "partisan": ["S", "M"], + "overbalance's": [], + "woodman's": [], + "constables's": [], + "linguistic": ["S"], + "coordinately": [], + "mandible's": [], + "weightings": [], + "midmost": [], + "endocrinology's": [], + "dickeys's": [], + "sally": ["D", "S", "M", "G"], + "satiated": [], + "glamorizing": [], + "swamped": [], + "joke's": [], + "ellipse'ses": [], + "honeycombs": [], + "quine": ["S"], + "colloquium's": [], + "temper'sed": [], + "handicraft's": [], + "retrieveder": [], + "plummet": ["S", "G", "M", "D"], + "limneds": [], + "unsightliness": ["M"], + "fogies's": [], + "idiocy's": [], + "cutaway's": [], + "scree's": [], + "anarchist's": [], + "meteoroids": [], + "exertsed": [], + "drill'sed": [], + "nonslip": [], + "prolixity": ["M"], + "rabbet": ["G", "M", "D", "S"], + "bedizeneds": [], + "hurting": [], + "facilitate": ["G", "N", "D", "S"], + "overstays": [], + "aptest": [], + "condemn": ["S", "D", "R", "Z", "G"], + "Pyotr": ["M"], + "domesticatingen": [], + "Internets's": [], + "calculateds": [], + "conspicuous": ["I", "P", "Y"], + "contractility": [], + "decathlon's": [], + "obviatingen": [], + "CRT's": [], + "ours": [], + "steelmakers": [], + "instep": [], + "wags": [], + "doddery": [], + "clack'sed": [], + "hackings": [], + "buys": [], + "fluting": ["M"], + "Ripley's": [], + "admixtures's": [], + "abjurers": [], + "Charmaine's": [], + "convulsed": [], + "countering": [], + "quizzical": ["Y"], + "Saratov": ["M"], + "flamings's": [], + "Wallis": ["M"], + "overemotional": [], + "Manchu's": [], + "ulcerations": [], + "kerchiefs": [], + "wise": ["M", "Y", "T", "G", "D", "R", "S"], + "wardrobes": [], + "hummer": ["S", "M"], + "resilience": ["M"], + "tartar's": [], + "stoppering": [], + "boodle's": [], + "temperately": [], + "burro": ["S", "M"], + "unchristian": [], + "throttler": ["M"], + "Maoisms's": [], + "semanticist'ses": [], + "blasphemed": [], + "Hodgkin's": [], + "noteworthy": ["P"], + "SOs": [], + "ungainliness's": [], + "doubling": [], + "uncaps": [], + "nudity's": [], + "vilificationing": [], + "unprovided": [], + "kine": ["S"], + "slacks": ["M"], + "miniaturize": ["G", "D", "S"], + "wastes": [], + "juxtaposesing": [], + "seminaries": [], + "navies": [], + "lobster's": [], + "offhandedly": [], + "picnicked": [], + "objurgation's": [], + "Nell": ["M"], + "grassiest": [], + "Stradivarius": ["M"], + "ointments's": [], + "broadcasting": ["M"], + "Ezekiel's": [], + "dredged": [], + "pneumococcus": [], + "palatalize": ["G", "D", "S"], + "crass": ["R", "Y", "T", "P"], + "objurgation": ["M"], + "caraways's": [], + "profanelying": [], + "Wendy": ["M"], + "beseemsing": [], + "Wood's": [], + "varieties's": [], + "taproots": [], + "Eritreans's": [], + "callower": [], + "transgenic": [], + "emblem": ["S", "M"], + "empyrean": ["M"], + "Monongahela's": [], + "Alioth": ["M"], + "poutersing": [], + "saturation": ["M"], + "waldo": ["S"], + "plain'ser": [], + "zwieback": ["M"], + "augmenter's": [], + "mortises": [], + "sixshooter's": [], + "stroboscopic": [], + "ringerings": [], + "Winnie's": [], + "aborigines's": [], + "defalcation": ["M"], + "respectfully": [], + "rev's": [], + "autobiographies's": [], + "magnetize": ["C", "G", "D", "S"], + "share's": [], + "unfashionably": [], + "exchanges": [], + "shearsers": [], + "Sachs": ["M"], + "stonewashed": [], + "semi": ["M", "S"], + "valueless": [], + "snatched": [], + "hunches": [], + "dearies's": [], + "allegro'ses": [], + "squaw's": [], + "floorboards": [], + "Troilus's": [], + "mantas": [], + "concessionaire's": [], + "unwisest": [], + "averse": ["X", "N"], + "dockworkers": [], + "fop's": [], + "esplanade's": [], + "Tortuga": ["M"], + "johnnycake'ses": [], + "Floridan": ["M"], + "patter'sed": [], + "kibbled": [], + "herniationed": [], + "declarable": [], + "beastly's": [], + "tediousnessly": [], + "peewee": ["M", "S"], + "attenuate": ["D", "S", "G", "N"], + "Myles's": [], + "chimney's": [], + "Kasai's": [], + "usury": ["M"], + "fifes": [], + "numismatists's": [], + "oligarchs": [], + "fellatio": ["M"], + "deludeds": [], + "pieceworker": ["M"], + "Odyssey's": [], + "mercer": ["M", "S"], + "schoolchild": ["M"], + "strollers": [], + "pidgins": [], + "rehabilitation": ["M"], + "problematical": ["Y"], + "clubland": [], + "anesthetist'ses": [], + "Dick": ["X", "M"], + "paratyphoid's": [], + "faeries": [], + "harks": [], + "agreements": [], + "sweetened": ["U"], + "relegates": [], + "cabdrivers's": [], + "encouragements": [], + "Sisyphus's": [], + "planets's": [], + "earthquake's": [], + "rasher's": [], + "sublimating": [], + "grantsmanship": ["M"], + "chimes": [], + "retrogrades": [], + "lumbererers": [], + "reorged": [], + "Gauss's": [], + "actualized": [], + "Getty's": [], + "parachutes's": [], + "chanteys's": [], + "tractability's": [], + "wont": ["M", "D"], + "developers's": [], + "Madelyn's": [], + "clappers": [], + "lewdliness": [], + "balsams": [], + "level": ["P", "S", "Z", "G", "M", "D", "R", "Y"], + "equallying": [], + "soaring": [], + "crunches": [], + "disbeliever": [], + "momentousness's": [], + "cams's": [], + "supersaturation's": [], + "fitting'sly": [], + "fanfare's": [], + "smelter's": [], + "illegibly": [], + "stringiest": [], + "urge'sing": [], + "vulgarer": [], + "viscount's": [], + "restively": [], + "characterizes": [], + "gabble's": [], + "exculpation": ["M"], + "perfidy's": [], + "tarots": [], + "Grundy's": [], + "knuckles": [], + "polonium": ["M"], + "holiday": ["S", "M", "D", "G"], + "tumbleweeds's": [], + "explainable": [], + "fourposters": [], + "appeaseder": [], + "acetaminophen": ["M"], + "tessellateds": [], + "oligarchy's": [], + "muskrats": [], + "disapprobation": [], + "carteder": [], + "forequarter's": [], + "unleaded": ["M"], + "yurts": [], + "shariah": [], + "thorniest": [], + "waistband'ses": [], + "Amen": ["M"], + "deploymenting": [], + "gracelessness": ["M"], + "gentlefolk's": [], + "rhyming": [], + "lovechild": ["M"], + "flier's": [], + "sloughing": [], + "neutralize": ["D", "R", "S", "Z", "G"], + "goer's": [], + "fairway's": [], + "shattering's": [], + "Ford's": [], + "fathom": ["S", "M", "D", "G", "B"], + "planers": [], + "windjammers": [], + "bribeder": [], + "infill": [], + "Pentiums": [], + "coordination": ["M"], + "genealogically": [], + "sympathizinged": [], + "Alphard's": [], + "marketable": ["U"], + "Nimrod's": [], + "ales": [], + "exerteding": [], + "philatelic": [], + "burrowing": [], + "Washingtonian'ses": [], + "subversive": ["S", "P", "M", "Y"], + "flickering": [], + "shampoo'sed": [], + "alignments": [], + "revolver's": [], + "entreaties's": [], + "Osaka": ["M"], + "unprejudiced": [], + "Esther's": [], + "policeman's": [], + "dyspeptic'ses": [], + "population's": [], + "obscuring": [], + "affording": [], + "alighted": [], + "foolhardy": ["T", "P", "R"], + "freehold's": [], + "cable'sing": [], + "corms": [], + "garroter's": [], + "phoniness": ["M"], + "Giorgione's": [], + "silver's": [], + "prorogued": [], + "uphills": [], + "mudroom'ses": [], + "foobar": [], + "results's": [], + "hulking": [], + "cowboys": [], + "phobic'ses": [], + "validity": ["I", "M"], + "residence": ["S", "M"], + "befalls": [], + "obliqueliness": [], + "eyeteeth": [], + "camellia": ["M", "S"], + "retaliation": ["M"], + "snapper": ["M", "S"], + "misappropriated": [], + "mesa'ses": [], + "necromancer": ["S", "M"], + "Mandarin's": [], + "Meghan": ["M"], + "remains": [], + "blighters": [], + "sensed": [], + "tiered": [], + "levelly": [], + "shebeens": [], + "knacker": ["G", "D"], + "sonic": [], + "difficultly": [], + "Terrence": ["M"], + "grabby": ["T", "R"], + "indexer": ["M"], + "dissolved": ["U"], + "vulgarized": [], + "Sparks": ["M"], + "locked": [], + "throngings": [], + "kneecap's": [], + "moshed": [], + "dancing's": [], + "pomading": [], + "cultures": [], + "win'sed": [], + "Schwarzenegger": ["M"], + "galleon's": [], + "genuflect": ["D", "G", "S"], + "outboxes": [], + "omnibus's": [], + "Nabisco": ["M"], + "succors": [], + "mechanization": ["M"], + "indisputable": [], + "defines": [], + "corroborate": ["G", "N", "V", "D", "S", "X"], + "frailest": [], + "jaywalker": ["M"], + "Anthropocene": [], + "segregating": [], + "duchies": [], + "tutus": [], + "Blu": [], + "lagsers": [], + "stride's": [], + "clump": ["S", "M", "D", "G"], + "curler's": [], + "motorcycle'sing": [], + "Roderick": ["M"], + "Frenchmen's": [], + "unfailing": ["Y"], + "entanglesment": [], + "sensationally": [], + "pretenders": [], + "veterinaries's": [], + "exigence'ses": [], + "solemnizeds": [], + "difficulty's": [], + "expressionists": [], + "Egyptian'ses": [], + "Ispell's": [], + "walkout's": [], + "filthierness": [], + "sidetracks's": [], + "telegraphing": [], + "fry's": [], + "Perez's": [], + "knightly": [], + "heartlessnessly": [], + "brilliance's": [], + "politer": [], + "externally": [], + "sensible": ["P"], + "thematically": [], + "fatalities": [], + "aerate": ["D", "S", "G", "N"], + "pander's": [], + "cascade": ["D", "S", "M", "G"], + "knickerbockers's": [], + "Ride's": [], + "bathyscaphes": [], + "fumier": [], + "simpler": [], + "stoically": [], + "bungleder": [], + "deduction's": [], + "deflationary": [], + "dork'ses": [], + "bedecked": [], + "censorship's": [], + "caravans": [], + "nerd's": [], + "jettisoneds": [], + "encompasses": [], + "floozies's": [], + "bombastically": [], + "achier": [], + "neptunium": ["M"], + "burbleds": [], + "electrifier": ["M"], + "ordnance": ["M"], + "deal'ser": [], + "Whitaker": ["M"], + "moldboard": ["S", "M"], + "Oz": ["M"], + "governess's": [], + "nanosecond": ["S", "M"], + "defenseds": [], + "titanic": [], + "sissiest": [], + "interlockeds": [], + "satiating": [], + "inducting": [], + "snail": ["S", "M", "D", "G"], + "papereder": [], + "pandemics": [], + "lexers": [], + "silvereds": [], + "boles's": [], + "unstructured": [], + "advanceds": [], + "featherless": [], + "peacemaker": ["M", "S"], + "resharpen": [], + "deplorable": [], + "vacatesing": [], + "semiotics's": [], + "alcoholics": [], + "utilitarian'ses": [], + "subsystem": ["S", "M"], + "mushrooming": [], + "rusticating": [], + "pickingsers": [], + "lubberly": [], + "mounter's": [], + "foodstuff's": [], + "cuing": [], + "blandished": [], + "lowering": [], + "Danelaw's": [], + "oeuvre's": [], + "hoers": [], + "maniacal": ["Y"], + "yardman's": [], + "dissimilar": [], + "countersinkings": [], + "drove": ["R", "S", "M", "Z"], + "mandolin": ["M", "S"], + "headwaiters's": [], + "inflammable": [], + "americium's": [], + "pinheads's": [], + "smooch'sed": [], + "stalwartly": [], + "wakens": [], + "hymeneal": [], + "Scotch's": [], + "filmiest": [], + "crouching's": [], + "Gaza's": [], + "moisturizersing": [], + "coronations's": [], + "pancakeds": [], + "statecraft's": [], + "sideswipe": ["D", "S", "M", "G"], + "discoloration": ["S"], + "weakfishes": [], + "edgily": [], + "Godard": ["M"], + "placentas's": [], + "Dumbledore's": [], + "Mohammedan": ["S", "M"], + "chiseleder": [], + "segregatingen": [], + "rubidium": ["M"], + "dodo": ["M", "S"], + "wean": ["D", "G", "S"], + "McClellan": ["M"], + "mulcted": [], + "Tony": ["M"], + "mongoose's": [], + "Rena": ["M"], + "count": ["E", "A", "S", "M", "D", "G"], + "steamfitting": ["M"], + "nonpoisonous": [], + "perpetration's": [], + "secludinged": [], + "Pilgrim's": [], + "blabbed": [], + "abolitionists": [], + "texted": [], + "Quechua": ["M"], + "Heinrich's": [], + "lug": ["S", "M"], + "sultanate's": [], + "profiteroles": [], + "Yerkes": ["M"], + "section": ["A", "E", "S", "M"], + "southwester'sly": [], + "Robinson's": [], + "chargeable": ["A"], + "pertains": [], + "unimportant": [], + "upbraided": [], + "altar": ["M", "S"], + "fernier": [], + "crucial": ["Y"], + "toast's": [], + "duster's": [], + "gongings": [], + "hunchbacks": [], + "Vedanta's": [], + "dells": [], + "scouting's": [], + "portal": ["S", "M"], + "Kazakhs": [], + "vowel's": [], + "unequaled": [], + "lightweight": ["S", "M"], + "concubine": ["M", "S"], + "foghorn": ["M", "S"], + "floundered": [], + "flammability's": [], + "aback": [], + "scratchpad": ["S"], + "revolution": ["S", "M"], + "inscribinged": [], + "inquisitorial": [], + "misjudgment's": [], + "afflictinged": [], + "geniculate": [], + "neutral": ["S", "M", "Y"], + "aloof": ["P", "Y"], + "kerchief": ["S", "M"], + "marten": ["M"], + "expletive'ses": [], + "wholeheartedness": ["M"], + "Diaspora's": [], + "headbutt": ["D", "S", "G"], + "collectivists's": [], + "Epimethius": ["M"], + "nylon": ["M", "S"], + "whetstone": ["S", "M"], + "Calhoun": ["M"], + "renewals": [], + "recordings": [], + "spitfires's": [], + "large'sly": [], + "bantamweight's": [], + "mussel": ["M", "S"], + "ratlines": [], + "grudgingly": [], + "institutes": [], + "recession": [], + "colorizing": [], + "provocativenessly": [], + "insect": [], + "diatom": ["S", "M"], + "superciliously": [], + "funniest": [], + "gal's": [], + "applicator": ["S", "M"], + "canoed": [], + "handmaiden": ["M"], + "fortnight's": [], + "thinking": [], + "Eocene": ["M"], + "penury": ["M"], + "suavest": [], + "Cathleen's": [], + "spiny": ["R", "T"], + "Millay": ["M"], + "sheilas": [], + "fibula": ["M"], + "trailblazing's": [], + "lightning'sed": [], + "Norwegians": [], + "elective'ses": [], + "gaff's": [], + "eulogy": ["S", "M"], + "Maddox's": [], + "twanging": [], + "griddlecake": ["S", "M"], + "WATS": ["M"], + "cunning'ser": [], + "waistline'ses": [], + "plummet'sed": [], + "cadmium": ["M"], + "hoggish": ["Y"], + "partition": ["G", "M", "D", "S"], + "won": ["M"], + "colons": [], + "Scylla": ["M"], + "sloganeering": [], + "catnapped": [], + "unriper": [], + "plainclothesman": ["M"], + "mortising": [], + "timeline's": [], + "postdoc'ses": [], + "bid": ["S", "M", "G"], + "Anglophile's": [], + "garroters": [], + "stallion's": [], + "Beardmore's": [], + "headshrinkers": [], + "aching": ["Y"], + "Negev": ["M"], + "eglantines's": [], + "comradeship's": [], + "scorecards": [], + "hotelier's": [], + "olden": [], + "Angelo": ["M"], + "conprotest": [], + "NIH": [], + "Barbadians's": [], + "annihilating": [], + "disinterestedness's": [], + "smoocheds": [], + "solemness's": [], + "acetone's": [], + "explain": ["A", "D", "G", "S"], + "Colon's": [], + "preeminence": ["M"], + "videos": [], + "lagging": ["M"], + "audiophiles's": [], + "adequacy's": [], + "Mycenae": ["M"], + "abrasivenesses": [], + "fluidity": ["M"], + "valuesed": [], + "ls": [], + "plumbers": [], + "systematized": [], + "bighorns's": [], + "straightforwardliness": [], + "systematization": ["M"], + "Depp's": [], + "Meier's": [], + "collectivize": ["D", "S", "G"], + "Wests": [], + "Cheever's": [], + "conservatively": [], + "Tania": ["M"], + "roisterer": ["M"], + "mine": ["M", "Z", "G", "N", "D", "R", "S", "X"], + "kph": [], + "subordinating": [], + "Siegfried's": [], + "excises's": [], + "ordination's": [], + "horsing": [], + "Cynthia": ["M"], + "repatriate'sing": [], + "blubbering": [], + "granted": [], + "weeniers": [], + "proconfess": [], + "emcees": [], + "perpendicularity": ["M"], + "blighting's": [], + "stuffy": ["R", "P", "T"], + "tarantella": ["M", "S"], + "stalker's": [], + "triangulateds": [], + "tobacco's": [], + "presages": [], + "Oldenburg's": [], + "vivisectional": [], + "optimist": ["S", "M"], + "Guarani": ["M"], + "perspiringed": [], + "mikado's": [], + "mutenessable": [], + "cosmetology's": [], + "pillowslip": ["M", "S"], + "groceries": [], + "pipsqueak": ["S", "M"], + "stetting": [], + "motorized": [], + "Kellie's": [], + "tranquil": ["R", "Y", "T"], + "refreshingment": [], + "relish": ["G", "M", "D", "S"], + "parsed": [], + "firth's": [], + "accuracy": ["I", "M"], + "shuttles": [], + "doughnut's": [], + "poesy": ["M"], + "actual": ["Y"], + "destinations's": [], + "chompers": [], + "fleabites": [], + "absorbance": [], + "patronymics's": [], + "entreated": [], + "chaotically": [], + "building's": [], + "inestimable": [], + "caving": ["M"], + "Foley": ["M"], + "shakiness's": [], + "Anatolia": ["M"], + "deceleratingen": [], + "decimeter's": [], + "stimulants's": [], + "delivereding": [], + "Tagalog's": [], + "further": ["S", "G", "D"], + "crushed": [], + "re'sly": [], + "anthropomorphism's": [], + "fields's": [], + "spongers": [], + "wherewithal's": [], + "unity": ["E", "M"], + "definiteness's": [], + "pooinged": [], + "disreinfect": [], + "flounder": ["M", "D", "S", "G"], + "barmy": ["R", "T"], + "org": [], + "savorier": [], + "showboat's": [], + "ruts's": [], + "placket's": [], + "chaperonage": ["M"], + "quadrangle's": [], + "scubaing": [], + "sounded": [], + "lariats": [], + "underexposeds": [], + "canoe'sed": [], + "offloading": [], + "Paige's": [], + "conceptualized": [], + "gushers": [], + "untouchable'ses": [], + "backstabbing": [], + "vigor's": [], + "unkempt": [], + "NASDAQ's": [], + "denuclearizing": [], + "generationing": [], + "windflower'ses": [], + "dillydallieds": [], + "streetwise": [], + "raucous": ["Y", "P"], + "separability": ["I", "M"], + "japanned": [], + "paragraph": ["G", "M", "D"], + "protruded": [], + "abstractions": [], + "infarct'ses": [], + "sunroofs's": [], + "ECMAScript's": [], + "earthworm's": [], + "minor's": [], + "yup": ["S", "M"], + "misapplying": [], + "porgies's": [], + "wretchedness": ["M"], + "worming": [], + "Runnymede": ["M"], + "baptize": ["Z", "G", "D", "R", "S"], + "irksomeness": ["M"], + "missionaries": [], + "chalkiness": ["M"], + "rummages": [], + "menage": ["M", "S"], + "globalism": ["M"], + "forenamed": [], + "dogie": ["S", "M"], + "cooker": ["S", "M"], + "Lawanda's": [], + "vaunt's": [], + "smugglinged": [], + "bleep": ["Z", "G", "M", "D", "R", "S"], + "Oxnard's": [], + "outfacing": [], + "Fiat": ["M"], + "Jasper's": [], + "blockages": [], + "frayeding": [], + "sexologists's": [], + "manageability's": [], + "pissoirs": [], + "lanai": ["S", "M"], + "funk'sed": [], + "instr": [], + "topcoat": ["S", "M"], + "bobwhite": ["M", "S"], + "Dubrovnik's": [], + "majoring's": [], + "searchingly": [], + "undershirt": ["S", "M"], + "lumberjack": ["S", "M"], + "cleareder": [], + "sweetbread": ["S", "M"], + "eviction": ["M", "S"], + "lye's": [], + "mechanizeds": [], + "fawning": [], + "schlemiel's": [], + "supersaturateds": [], + "cycle's": [], + "fiats": [], + "misnomers": [], + "cheats": [], + "preppiest": [], + "dames's": [], + "upside": ["S", "M"], + "crosspiece": ["S", "M"], + "sulk's": [], + "Tasha's": [], + "parolee": ["M", "S"], + "demographers": [], + "waved": [], + "oxygenateds": [], + "sprinkle's": [], + "knockoffs's": [], + "pastoral'ses": [], + "nonprofitable": [], + "banging's": [], + "Moldova": ["M"], + "lameness's": [], + "malfeasance's": [], + "eiders": [], + "quote": ["U", "D", "S", "G"], + "philanthropic": [], + "fretsaws": [], + "ump'sed": [], + "thoughtless": ["P", "Y"], + "rigger": ["S", "M"], + "abatement's": [], + "sleepwalkings": [], + "injurersing": [], + "matchsticks": [], + "stockaded": [], + "overdrawings": [], + "stored": [], + "messes": [], + "recruit's": [], + "tinned": [], + "benchmark'ses": [], + "twirleder": [], + "gushed": [], + "Emil's": [], + "prospected": [], + "extraditable": [], + "piecrusts's": [], + "extricate": ["G", "N", "D", "S"], + "spellchecker's": [], + "domineers": [], + "Durant's": [], + "Romney": ["M"], + "rumbas": [], + "Esq": ["M"], + "Sindhi's": [], + "rewarmed": [], + "wires": [], + "shafting": [], + "java": ["M"], + "Berliners": [], + "eyeglasses": [], + "meninx": ["M"], + "geodes": [], + "mutilatesing": [], + "obliqueness": ["M"], + "pigheadednessly": [], + "periwinkles": [], + "Desmond's": [], + "milting": [], + "architectonics's": [], + "noiseless": ["P", "Y"], + "sempstress": ["M", "S"], + "refill": ["B", "M"], + "Udall": ["M"], + "bullheadednessly": [], + "transitions": [], + "refocus": [], + "firewalls": [], + "nobility's": [], + "optometrist'ses": [], + "Blockbuster's": [], + "carpetbag's": [], + "assent'sed": [], + "sootheder": [], + "meringue's": [], + "costed": [], + "faultinesser": [], + "Olympic": ["S", "M"], + "needsing": [], + "sidewinder": ["S", "M"], + "missioners": [], + "Tabascos": [], + "wattles": [], + "position's": [], + "Angola": ["M"], + "obsessional": ["Y"], + "Danube": ["M"], + "tradesman's": [], + "wresting": [], + "temperamentally": [], + "hewing": [], + "Turing's": [], + "filth's": [], + "washrag's": [], + "weblogs": [], + "condos": [], + "Yoda": ["M"], + "influenced": ["U"], + "puckering": [], + "ECMAScript": ["M"], + "talkie's": [], + "dioxides's": [], + "fierier": [], + "wig's": [], + "Viking": ["M", "S"], + "yammer'sed": [], + "weariness's": [], + "unannounced": [], + "Lhotse's": [], + "dyke's": [], + "roster": ["S", "M"], + "microorganism": ["M", "S"], + "Czechoslovakians": [], + "Eyre's": [], + "educable": ["I"], + "sandbank'ses": [], + "respects": [], + "occupants's": [], + "herbivores's": [], + "Platonism": ["M"], + "stabilizing": [], + "steno": ["S", "M"], + "staphylococci": [], + "interrelations": [], + "popovers": [], + "deacon'ses": [], + "bridling": [], + "tasseled": [], + "multiplayer": ["M"], + "perplexeds": [], + "culpability's": [], + "blabbing": [], + "literature's": [], + "dibble": ["D", "S", "M", "G"], + "mariner": ["M"], + "tuxes": [], + "mulct'sed": [], + "gorier": [], + "Ethel's": [], + "abstractions's": [], + "indigence's": [], + "itemized": [], + "pollination": ["M"], + "obscurities": [], + "coyotes": [], + "communicated": [], + "unbarring": [], + "conclusiveness's": [], + "dreamily": [], + "downing": [], + "Sherlock's": [], + "exculpates": [], + "telegram": ["M", "S"], + "meekness": ["M"], + "concurrences": [], + "monstrously": [], + "Selassie": ["M"], + "kvetcheder": [], + "Rouault": ["M"], + "sandbags's": [], + "endorseder": [], + "organelle's": [], + "deviant's": [], + "tights's": [], + "assignee's": [], + "othersness": [], + "impiety's": [], + "mourn": ["S", "Z", "G", "D", "R"], + "midribs": [], + "moped": ["S", "M"], + "lark's": [], + "frappe": ["S", "M"], + "dandified": [], + "mustachioed": [], + "roughs": [], + "offloads": [], + "junta": ["S", "M"], + "Vandals": [], + "cheapeneding": [], + "markings": [], + "overlooking's": [], + "enameler's": [], + "existentially": [], + "waiting's": [], + "Jew's": [], + "blackguard": ["S", "M"], + "Tancred": ["M"], + "tapeline'ses": [], + "authorizes": [], + "Rizal's": [], + "Miltiades": ["M"], + "Sucre's": [], + "dragoon": ["S", "M", "D", "G"], + "metaphoric": [], + "Wells's": [], + "philodendrons's": [], + "survivalists": [], + "troweled": [], + "buzzkill": ["S", "M"], + "eutectic": [], + "simulatingen": [], + "doxologies": [], + "picketed": [], + "effeteness": ["M"], + "foxhole's": [], + "ins's": [], + "Gdansk": ["M"], + "intentness's": [], + "unsparing": [], + "Sperry's": [], + "case": ["L", "D", "S", "J", "M", "G"], + "graven": [], + "extremeness": ["M"], + "orbicular": [], + "shift": ["G", "M", "D", "S"], + "dieters": [], + "superlative'sly": [], + "vertex's": [], + "wastrels": [], + "banditry's": [], + "Sioux's": [], + "trauma'ses": [], + "shun": ["S"], + "sweethearts's": [], + "livesable": [], + "Eakins's": [], + "stocking's": [], + "Russian's": [], + "ossified": [], + "Rf's": [], + "shareder": [], + "punnets": [], + "burgherers": [], + "subscribing": [], + "louse": ["C", "D", "S", "G"], + "validateds": [], + "eclogue": ["S", "M"], + "horehound's": [], + "tanager's": [], + "mercury": ["M"], + "sparks's": [], + "corpse": ["M"], + "feminizing": [], + "prefabrication's": [], + "misteder": [], + "eightieth's": [], + "blowjob's": [], + "crewman's": [], + "ignoreds": [], + "sustainable": ["U"], + "palest": [], + "diptychs": [], + "administrator's": [], + "geographically": [], + "symphony": ["S", "M"], + "metaphysics's": [], + "armband'ses": [], + "protuberance": ["M", "S"], + "collapsing": [], + "mineralogist": ["M", "S"], + "eyestrain": ["M"], + "hampering": [], + "plumpness's": [], + "seashore": ["S", "M"], + "chuck'sed": [], + "suety": [], + "filmmaker's": [], + "retrogresses": [], + "sympathy": ["S", "M"], + "cartoonists": [], + "twitch": ["G", "M", "D", "S"], + "metal'sed": [], + "torso's": [], + "syphilis": ["M"], + "western'ser": [], + "needle": ["M", "G", "D", "S"], + "peskiness": ["M"], + "ampere'ses": [], + "colicky": [], + "snickeder": [], + "dwindlesing": [], + "Pratt": ["M"], + "meantime's": [], + "defoliating": [], + "burn'sed": [], + "dyslexics's": [], + "entrenchingment": [], + "mishearing": [], + "relocatable": [], + "refrains": [], + "tubersing": [], + "peccaries's": [], + "flouring": [], + "patina'ses": [], + "dawnsing": [], + "interruptions": [], + "guff": ["M"], + "topographers": [], + "trampolined": [], + "exciting": ["Y"], + "wrongly": [], + "standpoints": [], + "amenities's": [], + "beggary's": [], + "interaction's": [], + "tallish": [], + "grandliness": [], + "technocracy": ["S", "M"], + "caulk'sed": [], + "ninepin'ses": [], + "immaculate": ["P", "Y"], + "neglect": ["S", "G", "M", "D"], + "outrider's": [], + "adulterous": [], + "gash's": [], + "gun": ["S", "M"], + "lummox": ["M", "S"], + "cartel'ses": [], + "Frederick's": [], + "gloss's": [], + "venturous": ["P", "Y"], + "rosebud's": [], + "PPS": [], + "questionably": ["U"], + "officialism": ["M"], + "Cowell's": [], + "foundlings's": [], + "stickleback": ["S", "M"], + "union": ["A", "S", "M"], + "educate": ["A", "D", "S", "G", "N", "V"], + "gloriously": [], + "subarea": ["M", "S"], + "endorsing": [], + "dovetail's": [], + "intentliness": [], + "Doe's": [], + "pasteboard's": [], + "dinned": [], + "beggary": ["M"], + "JP": [], + "overdrafts's": [], + "thundery": [], + "corroborateds": [], + "reverenced": [], + "inability": [], + "Afghans's": [], + "antacids": [], + "buckboard'ses": [], + "bile's": [], + "composite": ["M", "Y", "G", "N", "X", "D", "S"], + "stopovers": [], + "reverberate": ["D", "S", "G", "N", "X"], + "kennel": ["S", "G", "M", "D"], + "petcock": ["S", "M"], + "crispiness's": [], + "purveyance's": [], + "haggardly": [], + "counterfeiter": ["M"], + "Dalmatia": ["M"], + "topographies": [], + "stiffness's": [], + "Pusan": ["M"], + "suspends": [], + "shrill": ["D", "R", "S", "P", "T", "G"], + "est": [], + "squeezing": [], + "confers": [], + "cytokines": [], + "brat's": [], + "limb's": [], + "damsel'ses": [], + "ignominies's": [], + "threadersing": [], + "cavities": [], + "analogousness's": [], + "habitue": ["S", "M"], + "tweediest": [], + "examiner": ["M", "S"], + "Itaipu": ["M"], + "plane's": [], + "Africa": ["M"], + "majorsing": [], + "radioed": [], + "crash's": [], + "undisbelief": [], + "Venice's": [], + "weather'sed": [], + "tenses": [], + "BlackBerry": ["M"], + "lampoonsing": [], + "screamerers": [], + "snottily": [], + "aerodrome": ["M", "S"], + "Hyde's": [], + "stammer's": [], + "Bronx's": [], + "mandates": [], + "third'sly": [], + "Epiphanies's": [], + "nothing's": [], + "shellac's": [], + "capriciousness": ["M"], + "terrapin": ["M", "S"], + "stationer's": [], + "highhandedness": ["M"], + "gap'sed": [], + "infantile": [], + "aerobatics's": [], + "Westphalia": ["M"], + "weekending": [], + "registries": [], + "plasticizeds": [], + "sycophancy's": [], + "velar's": [], + "calliope'ses": [], + "reconstructed": ["U"], + "antispasmodics": [], + "smogs": [], + "lodge'sers": [], + "hepatitis": ["M"], + "countervailings": [], + "eaglet'ses": [], + "prancer": ["M"], + "dc": [], + "cornball'ses": [], + "automatics's": [], + "vampires's": [], + "refinement's": [], + "orotund": [], + "debate's": [], + "launchpads": [], + "boisterous": ["Y", "P"], + "irredeemable": [], + "milieu's": [], + "homeowners": [], + "barbarity": ["S", "M"], + "hominoids": [], + "educesing": [], + "tenderizes": [], + "etchingings": [], + "propaganda": ["M"], + "disturbs": [], + "atrium's": [], + "Rankin": ["M"], + "cling": ["S", "M", "R", "Z", "G"], + "eggnog's": [], + "siding'ses": [], + "hermaphrodite's": [], + "blasphemous": ["Y"], + "capon's": [], + "conreversion": [], + "babbling": [], + "wickedly": [], + "panderer's": [], + "depressor's": [], + "annihilators": [], + "duteously": [], + "vitrifying": [], + "kindergartens": [], + "tripe": ["M"], + "Georgette's": [], + "reamer": ["M"], + "naiad's": [], + "tans's": [], + "licked": [], + "militaristic": [], + "Slav's": [], + "magnum'ses": [], + "Wesak": ["M"], + "theft's": [], + "mtg": [], + "Portuguese": ["M"], + "bedizening": [], + "passageway'ses": [], + "Chatterley's": [], + "gulags's": [], + "cyclamens": [], + "idle'sers": [], + "Descartes's": [], + "misfires": [], + "pursuance": ["M"], + "Corrine's": [], + "megadeath's": [], + "exploration'ses": [], + "widths": [], + "Chuvash": ["M"], + "stifleds": [], + "web": ["S", "M"], + "Procyon": ["M"], + "M": ["S", "M", "G", "B"], + "outfaced": [], + "peacocks": [], + "counted": ["U"], + "heeleding": [], + "caustics's": [], + "earthquake": ["S", "M"], + "meanwhile": ["M"], + "rendezvousing's": [], + "misguidesing": [], + "surfing": ["M"], + "Jean's": [], + "blackjackings": [], + "duckiest": [], + "discriminator": ["M", "S"], + "greyhounds's": [], + "damask's": [], + "demean": ["G", "D", "S"], + "enjoyment's": [], + "rummageds": [], + "encompassing": [], + "subspecies's": [], + "epoxied": [], + "powerhouse": ["S", "M"], + "kaffeeklatsch": ["M", "S"], + "bighead": ["S", "M"], + "Scheat": ["M"], + "capitalist": ["S", "M"], + "doseds": [], + "tattersing": [], + "pillowcases": [], + "infectiously": [], + "trickery": ["M"], + "lapboard's": [], + "Angora": ["S", "M"], + "vellum": ["M"], + "fidelity": ["I", "M"], + "unshaven": [], + "demonizinged": [], + "delta": ["M", "S"], + "Wilmington's": [], + "competitively": [], + "slaving": [], + "codicils's": [], + "sexpot'ses": [], + "ireful": [], + "skitter": ["G", "S", "D"], + "gyrfalcon'ses": [], + "Methodists's": [], + "threats": [], + "coco's": [], + "laments's": [], + "patriarchal": [], + "learns": [], + "hairdryer": ["M", "S"], + "ODs": [], + "gentleness": ["M"], + "Gage's": [], + "sociological": ["Y"], + "judo": ["M"], + "Mephistopheles's": [], + "trill'sed": [], + "sullenliness": [], + "publishers": [], + "thallium's": [], + "Phaedra": ["M"], + "vizier's": [], + "crappy": [], + "LyX's": [], + "kneecaps": [], + "orthopedics": ["M"], + "superego's": [], + "hoping's": [], + "overspecialize": ["G", "D", "S"], + "signalize": ["G", "D", "S"], + "disappointingly": [], + "aviator'ses": [], + "tarterly": [], + "optimistically": [], + "lininged": [], + "ornamenting": [], + "bloodhound": ["S", "M"], + "workmate": ["S"], + "damning's": [], + "breastwork's": [], + "vainglory's": [], + "heiress": ["M", "S"], + "xxiii": [], + "shrunk": ["N"], + "Jacquelyn's": [], + "exhausting": [], + "Hammett's": [], + "observatories": [], + "Tsitsihar's": [], + "excrete": ["X", "G", "N", "D", "S"], + "mortgagor": ["M", "S"], + "Nasser's": [], + "unto": [], + "ballistics's": [], + "were": [], + "outdoorsy": [], + "devastatingen": [], + "ceramics": ["M"], + "tier": ["M", "D"], + "solitaries": [], + "taxon": [], + "dustman": [], + "finals": [], + "pinfeather's": [], + "outta": [], + "Zeno": ["M"], + "silt'sed": [], + "Austrians's": [], + "manifest'sed": [], + "charging's": [], + "stringersing": [], + "debilitatesing": [], + "undischarged": [], + "knuckleduster": ["S"], + "splendorous": [], + "whitewater": ["M"], + "supposing": [], + "syn": ["H"], + "fanned": [], + "Nobelist's": [], + "lowbrow's": [], + "euthanizeds": [], + "compering": [], + "cobblestones": [], + "fandom": [], + "importunes": [], + "Olive's": [], + "freedoms": [], + "mocker": ["M"], + "welded": [], + "acrimoniousness's": [], + "outdone": [], + "sample'sers": [], + "tumbler": ["M"], + "Perez": ["M"], + "Melody": ["M"], + "humeral": [], + "blindside": ["D", "S", "G"], + "implanted": [], + "Leah's": [], + "outgrow": ["H", "G", "S"], + "encroaching": [], + "buoyant": ["Y"], + "jugs's": [], + "chino'ses": [], + "conquers": [], + "crinklier": [], + "steeping": [], + "extrication": ["M"], + "lilos": [], + "dabbed": [], + "snowplow'sed": [], + "misplay'sed": [], + "alchemy": ["M"], + "skyrockets": [], + "beardless": [], + "demandeds": [], + "fomentinged": [], + "secretarial": [], + "chlorine": ["M"], + "Qumran's": [], + "copyleft": [], + "immigrant's": [], + "southerner's": [], + "diodes": [], + "benzene's": [], + "flick'sed": [], + "Seneca": ["M", "S"], + "stop": ["U", "S"], + "immobilized": [], + "gainsaid": [], + "misprision's": [], + "cooperation's": [], + "sheered": [], + "antiques": [], + "nonreligious": [], + "tucked": [], + "edible's": [], + "Billie's": [], + "Gil's": [], + "spliceder": [], + "decadents": [], + "haircuts": [], + "cadenza's": [], + "foreground'sed": [], + "doodads's": [], + "sheeting's": [], + "vilified": [], + "hypocrisy": ["S", "M"], + "distributional": [], + "objects": [], + "carjacksed": [], + "bald": ["S", "T", "G", "P", "D", "R", "Y"], + "lawbreaker's": [], + "muscle": ["M", "G", "D", "S"], + "trouper's": [], + "stopwatches": [], + "Shriner": ["M"], + "proselytizing": [], + "cinnamon": ["M"], + "crosspatches": [], + "councilor": ["M", "S"], + "earring": ["S", "M"], + "marbleize": ["G", "D", "S"], + "smokescreen": ["S", "M"], + "partridge's": [], + "impotence": ["M"], + "Cage": ["M"], + "altitude": ["M", "S"], + "bracket": ["G", "M", "D", "S"], + "pemmican": ["M"], + "alders": [], + "chloroplast'ses": [], + "wiseacres's": [], + "goon's": [], + "beetle's": [], + "swilled": [], + "targets": [], + "Gracie": ["M"], + "pundit": ["S", "M"], + "puzzled": [], + "tick'sed": [], + "motherless": [], + "homeopathic": [], + "hoof'sed": [], + "treachery": ["S", "M"], + "kook": ["M", "S"], + "tombstone's": [], + "cottony": [], + "telegenic": [], + "Conn'ser": [], + "outsmarting": [], + "Kenmore's": [], + "tau": ["S", "M"], + "lousinesser": [], + "counterrevolutionaries's": [], + "ensureder": [], + "plateful": ["S", "M"], + "petcocks's": [], + "Oregonians": [], + "gabbiness": ["M"], + "arabesques": [], + "sawdust": ["M"], + "teammates": [], + "waysides": [], + "anymore": [], + "babies": [], + "apparatchik": ["S"], + "windfall": ["M", "S"], + "indwelling": [], + "ahchoo": [], + "nonnarcotic": ["S", "M"], + "caramel": ["S", "M"], + "Murrow's": [], + "inditinged": [], + "interplanetary": [], + "exercisersing": [], + "Judges": [], + "sable's": [], + "mistiming": [], + "retook": [], + "prizing": [], + "competence's": [], + "Mauriac": ["M"], + "flimsy": ["T", "R", "P"], + "lumbago's": [], + "Margaret": ["M"], + "agnostic": ["M", "S"], + "steroid'ses": [], + "unabridged's": [], + "cliques": [], + "semiskilled": [], + "Republicans": [], + "ayahs": [], + "strangeness": ["M"], + "thresher": ["M"], + "overvaluing": [], + "madrigals's": [], + "Angie": ["M"], + "boyfriend'ses": [], + "newswomen": [], + "occludeds": [], + "fictionalizations's": [], + "Schedar": ["M"], + "outskirt's": [], + "vicuna'ses": [], + "Esther": ["M"], + "applique's": [], + "swimmer's": [], + "thulium's": [], + "lbw": [], + "unpainted": [], + "liberated": [], + "wholehearted": ["Y", "P"], + "tranquilizes": [], + "Hunt's": [], + "readable": [], + "threescore": ["M", "S"], + "detect": ["S", "D", "G", "V", "B"], + "levelerly": [], + "grubbiness": ["M"], + "pleating": [], + "ounce'ses": [], + "unflappability's": [], + "addressee's": [], + "Gena": ["M"], + "hollyhock": ["M", "S"], + "acanthus": ["M", "S"], + "bobtail": ["S", "M"], + "cretonne": ["M"], + "gnashes": [], + "statutory": [], + "preregisters": [], + "glowings": [], + "scholastic": [], + "yurt": ["M", "S"], + "remonstrant": ["S", "M"], + "overwork's": [], + "Genevieve's": [], + "elopement": ["M", "S"], + "evensings": [], + "prepayment": ["M", "S"], + "claimers": [], + "Briggs's": [], + "singe'ses": [], + "chunked": [], + "Caloocan's": [], + "evaporation": ["M"], + "swords": [], + "reconstitution": [], + "blat": ["S"], + "rawer": [], + "Episcopalian'ses": [], + "bouzouki's": [], + "fort": ["M", "S"], + "contracting": [], + "Adan's": [], + "batting": ["M"], + "Allstate's": [], + "cochleae": [], + "garnishee's": [], + "soak's": [], + "flossesing": [], + "Franck's": [], + "corrosion's": [], + "fractions": [], + "Ferrell's": [], + "flintlocks": [], + "stealthy": ["T", "P", "R"], + "Bovary's": [], + "mosaic's": [], + "chemistry": ["M"], + "vertical": ["M", "Y", "S"], + "Rachel's": [], + "sunflowers": [], + "broader": [], + "Regina's": [], + "valetudinarian's": [], + "patented": [], + "peacemakers": [], + "wilderness's": [], + "grams": [], + "defecates": [], + "pasties's": [], + "actions": [], + "snorers": [], + "purificationed": [], + "Cameron": ["M"], + "abridgesing": [], + "helve's": [], + "mentorsing": [], + "balloons": [], + "nuzzle'sers": [], + "Lab": [], + "detoxified": [], + "facings's": [], + "outarguing": [], + "hareds": [], + "participatingen": [], + "inboard'ses": [], + "obverses": [], + "grating": ["M", "Y"], + "soursness": [], + "ichthyologist": ["M", "S"], + "deplores": [], + "blasphemies": [], + "discrimination": ["M"], + "ingenuously": [], + "blotto": [], + "Mable": ["M"], + "pertinent": ["Y"], + "astatine": ["M"], + "stateswoman's": [], + "betterments": [], + "solemnity's": [], + "Bertram": ["M"], + "presentiments's": [], + "invigilation": [], + "blink": ["Z", "G", "M", "D", "R", "S"], + "crating": [], + "animadversion's": [], + "conventicle'ses": [], + "repressively": [], + "Bedouins's": [], + "accessorized": [], + "Compton": ["M"], + "pylons": [], + "mustier": [], + "cosigned": [], + "splatter": ["G", "S", "M", "D"], + "decapitations": [], + "duple": [], + "cheering's": [], + "immaturely": [], + "messing": [], + "deadwood": ["M"], + "portentously": [], + "spree": ["D", "S", "M"], + "radiance": ["M"], + "disbar": [], + "magnolia'ses": [], + "foamiest": [], + "frags": [], + "aqueous": [], + "dative'ses": [], + "deadeninged": [], + "Americana": ["M"], + "tutorials's": [], + "angstrom": ["M", "S"], + "supervenes": [], + "connects": [], + "Kristy's": [], + "abstractness": ["M", "S"], + "jackals": [], + "Eliseo's": [], + "Dame'sen": [], + "undebarring": [], + "provincial'sly": [], + "res": [], + "visuals's": [], + "trading's": [], + "penny's": [], + "archaic": [], + "contrapuntal": ["Y"], + "lairds's": [], + "kenneled": [], + "eclairs": [], + "Jacobi's": [], + "excavationed": [], + "taxi": ["G", "M", "D", "S"], + "sidle's": [], + "sanitation": ["M"], + "brewer": ["M"], + "ringgit'ses": [], + "Vietcong's": [], + "maliciously": [], + "Kanchenjunga": ["M"], + "placekickeder": [], + "rock": ["Z", "G", "M", "D", "R", "S"], + "fashioneder": [], + "funnymen": [], + "toxicities": [], + "presaging": [], + "dressiest": [], + "guesstimated": [], + "Janis": ["M"], + "interview": ["Z", "G", "M", "D", "R", "S"], + "gougeder": [], + "misconduct": ["M", "D", "G", "S"], + "Vilma's": [], + "ecclesiastic": ["S", "M"], + "erodes": [], + "speedwell": ["M"], + "lazed": [], + "appreciable": ["I"], + "fats": [], + "Polynesian's": [], + "disobedient": [], + "transliteratesing": [], + "cannibal": ["S", "M"], + "farcically": [], + "overbuilt": [], + "incredible": [], + "Mediterranean's": [], + "workhouse": ["S", "M"], + "reconvert": [], + "confidentially": [], + "Wade": ["M"], + "Blake": ["M"], + "twinkle's": [], + "misplacing": [], + "Lima": ["M"], + "aster's": [], + "chiseled": [], + "compositor": ["S", "M"], + "plaza's": [], + "archduke's": [], + "misinterpretation": ["S", "M"], + "bonbon": ["M", "S"], + "Lexus's": [], + "nutriment'ses": [], + "garment's": [], + "litigious": ["P"], + "France's": [], + "desisting": [], + "jew": [], + "reimbursable": [], + "recouping": [], + "ringgits": [], + "Vaughn": ["M"], + "hombre's": [], + "vacating": [], + "accommodationsing": [], + "foxier": [], + "garbage's": [], + "monoxide'ses": [], + "wampum": ["M"], + "realignment": [], + "festooning": [], + "snowiness": ["M"], + "heritage": ["M", "S"], + "subtlety": ["S", "M"], + "chatterersing": [], + "spontaneity's": [], + "nonalignment": ["M"], + "eucalypti": [], + "censuseds": [], + "raceway'ses": [], + "flower's": [], + "piezoelectric": [], + "Uzis": [], + "cool'sed": [], + "inclusive": ["Y", "P"], + "Americanizing": [], + "Pequot": ["M"], + "seaward'ses": [], + "radarscope": ["S", "M"], + "Philips": ["M"], + "inside": ["R", "S", "M", "Z"], + "thyroidal": [], + "catfishes": [], + "Xiaoping": ["M"], + "underside'ses": [], + "repudiatingen": [], + "confidantes": [], + "baggy": ["P", "T", "R", "S"], + "Multan's": [], + "brooch'ses": [], + "guzzler": ["M"], + "pressies": [], + "spaces's": [], + "mailbag's": [], + "radiateds": [], + "copulas's": [], + "Zedong": ["M"], + "torridity's": [], + "cleat": ["M", "S"], + "buckaroos's": [], + "coypus": [], + "roadsters's": [], + "monarchic": [], + "dear's": [], + "seawater": ["M"], + "capsicums": [], + "cleric's": [], + "Demerol": ["M"], + "subs's": [], + "spectrometer's": [], + "trellis's": [], + "chitin": ["M"], + "psi's": [], + "festoon'sed": [], + "windbreak": ["S", "Z", "M", "R"], + "bohemians's": [], + "amount": ["G", "M", "D", "S"], + "overbid's": [], + "Boeotia's": [], + "capitalized": [], + "dishtowels": [], + "praises": [], + "persuadeder": [], + "options's": [], + "moonshines": [], + "curettage's": [], + "furloughs": [], + "truncheon": ["S", "M"], + "stammerers": [], + "eyesore'ses": [], + "straightness's": [], + "crassest": [], + "pimple's": [], + "vituperative": [], + "clarinetist": ["S", "M"], + "applicator's": [], + "whiskery": [], + "curie's": [], + "orchestrateds": [], + "gs": [], + "journalists": [], + "raised": [], + "maps": [], + "sleepwalking's": [], + "crosswalks": [], + "paraphernalia": ["M"], + "extricates": [], + "Siemens": ["M"], + "misdiagnosis's": [], + "gymkhana": ["M", "S"], + "incurs": [], + "aliasing": [], + "blinding's": [], + "choreographically": [], + "Wade's": [], + "fuck's": [], + "electrolytes": [], + "curlicues": [], + "crupper's": [], + "Bojangles's": [], + "waveringly": [], + "teak'ses": [], + "tugging": [], + "hubs's": [], + "singleness's": [], + "edgersing": [], + "totals": [], + "perquisite": ["S", "M"], + "superstition'ses": [], + "clove's": [], + "swatter'sed": [], + "trappings": ["M"], + "overexcites": [], + "backspace": ["D", "S", "M", "G"], + "Allahabad": ["M"], + "virology": ["M"], + "cardie": ["S"], + "tipster's": [], + "Huston": ["M"], + "frivolities": [], + "terriers": [], + "implacability's": [], + "Darcy": ["M"], + "contuses": [], + "counterrevolutions's": [], + "aquatints": [], + "shawls": [], + "jive's": [], + "Hamburgs": [], + "editorials's": [], + "seafronts's": [], + "Scriabin's": [], + "executioner's": [], + "notificationed": [], + "gauntlet": ["M", "S"], + "augmentations": [], + "camellia'ses": [], + "supersaturate": ["G", "N", "D", "S"], + "itchiest": [], + "trite": ["F", "P", "Y", "T"], + "veined": [], + "moralist's": [], + "undercurrents's": [], + "utterlying": [], + "infuriatingly": [], + "crewel": ["M"], + "gravestone": ["S", "M"], + "savvies": [], + "almshouse'ses": [], + "carafe's": [], + "interconnections": [], + "despot": [], + "Castries": ["M"], + "whipsaw": ["M", "D", "G", "S"], + "galore": [], + "sob's": [], + "freight": ["M", "D", "R", "Z", "G", "S"], + "scientists": [], + "vagaries's": [], + "jackasses": [], + "doppelgangers": [], + "baseman's": [], + "hiccuping": [], + "townsmen": [], + "toiletries": [], + "creakiness": ["M"], + "street'ses": [], + "Lombardy": ["M"], + "valedictions": [], + "housekeeping": ["M"], + "byproduct'ses": [], + "r": ["S"], + "termagant's": [], + "bugbear's": [], + "spritz": ["Z", "G", "M", "D", "R", "S"], + "monism": ["M"], + "Catskill's": [], + "Leland": ["M"], + "calksing": [], + "mugfuls": [], + "musk's": [], + "twinsers": [], + "aid": ["S", "M", "D", "G"], + "orthodoxy's": [], + "anchorman's": [], + "simile's": [], + "signaling": [], + "jocosity": ["M"], + "Capote": ["M"], + "dairies's": [], + "Caspian's": [], + "Mexico": ["M"], + "delinquents's": [], + "GTE's": [], + "numerated": [], + "bounce's": [], + "misdeal": ["G", "M", "S"], + "streetlamps": [], + "Maxine's": [], + "obelisk's": [], + "jealousies's": [], + "frostbites": [], + "ornaments": [], + "astounds": [], + "Horn": ["M"], + "roasted": [], + "trends's": [], + "moneybags": [], + "vitalsly": [], + "noisemaker'ses": [], + "echinoderm": ["S", "M"], + "windlass": ["M", "S"], + "ST": [], + "west's": [], + "herded": [], + "slick": ["S", "M", "D", "R", "Y", "Z", "T", "G", "P"], + "upon": [], + "barque's": [], + "asymmetrical": ["Y"], + "ayatollahs": [], + "caresses": [], + "atmospheres": [], + "bead": ["S", "G", "M", "D"], + "Alan's": [], + "gymslip": ["S"], + "Holocaust": ["M"], + "parquetsing": [], + "Reese": ["M"], + "nephrite": ["M"], + "somnambulist": ["S", "M"], + "comprehensive'sly": [], + "concertize": ["D", "S", "G"], + "quart": ["M", "S"], + "wheelbarrows": [], + "pinked": [], + "catteries": [], + "Omsk": ["M"], + "stayerers": [], + "sequestrates": [], + "bloateder": [], + "lode'ses": [], + "trollop's": [], + "differentials": [], + "equity": ["I", "S", "M"], + "busiest": [], + "strayings": [], + "Hope": ["M"], + "intersment": [], + "peepshow's": [], + "cribber's": [], + "practicality": ["S", "M"], + "interconnection's": [], + "cymbalist'ses": [], + "penances": [], + "Bolsheviks": [], + "tracer": ["M"], + "trespasser": ["M"], + "uniting": [], + "chintziest": [], + "Stefanie's": [], + "patroness's": [], + "within's": [], + "sojourner's": [], + "trisecting": [], + "larksing": [], + "turnout": ["M", "S"], + "rupees's": [], + "Bloomsbury": ["M"], + "combiner'ses": [], + "tweedier": [], + "pungency": ["M"], + "exported": [], + "dreadfully": [], + "repatriates's": [], + "Marxisms": [], + "manumission": ["S", "M"], + "surfings": [], + "wimping": [], + "interlopes": [], + "crazily": [], + "Gail's": [], + "pucker": ["M", "D", "G"], + "introspects": [], + "Islamabad's": [], + "ranee": ["M", "S"], + "love": ["M", "Y", "Z", "G", "D", "R", "S", "B"], + "Welsh": ["M"], + "schizoid'ses": [], + "indicative'sly": [], + "anybody": ["S", "M"], + "Wanda": ["M"], + "bezels": [], + "overstaffed": [], + "confiding": ["Y"], + "ornament'sed": [], + "bashfulness": ["M"], + "attenuates": [], + "ballerinas": [], + "profuseness's": [], + "cockroach": ["M", "S"], + "receiversing": [], + "humdinger": ["M", "S"], + "ladders": [], + "tolerant": ["I", "Y"], + "status's": [], + "civilize": ["G", "D", "S"], + "foretastes's": [], + "Lolita's": [], + "NSA": ["M"], + "restricted": ["U"], + "mutt's": [], + "muscle'sing": [], + "dogwoods": [], + "wreckersing": [], + "novella'ses": [], + "issuance": ["M"], + "containerers": [], + "caricaturists's": [], + "Viola": ["M"], + "forgets": [], + "Heath'ser": [], + "belittle": ["L", "D", "S", "G"], + "retrospective": ["M", "Y", "S"], + "towhead": ["M", "D", "S"], + "Ashikaga": ["M"], + "Greenspan": ["M"], + "docile": ["Y"], + "tackier": [], + "formulateds": [], + "zwieback's": [], + "housefuls's": [], + "ebony": ["S", "M"], + "reducers": [], + "proprietors's": [], + "Ismael's": [], + "mesmerizer": ["M"], + "Springfield": ["M"], + "commissars's": [], + "cornflower's": [], + "Pike": ["M"], + "rigger's": [], + "assemblies": [], + "variegates": [], + "malted's": [], + "Oahu": ["M"], + "Divine": ["M"], + "stiff'sed": [], + "iffier": [], + "asbestos's": [], + "whiplash's": [], + "aromatherapy's": [], + "honorary": [], + "sum's": [], + "jubilation": ["M"], + "spiders's": [], + "positives": [], + "barb'sed": [], + "felicitatingen": [], + "softer": [], + "squalidness's": [], + "implant": ["B", "S", "G", "M", "D"], + "Indonesian": ["S", "M"], + "solitary'sness": [], + "violets": [], + "Muzak": ["M"], + "luxuriateds": [], + "emulsion's": [], + "joylessness": ["M"], + "tangerine": ["M", "S"], + "disco": ["M", "G"], + "backbones": [], + "tangibility's": [], + "incitement": ["M", "S"], + "Waldensian": ["M"], + "CT": ["M"], + "gloats": [], + "Bodhisattva": ["M"], + "Maya": ["S", "M"], + "quail'sed": [], + "steak's": [], + "mama'ses": [], + "bogeying's": [], + "tamarack": ["M", "S"], + "lastsing": [], + "magnolias": [], + "anglophile": ["S"], + "journeys": [], + "obliviousness's": [], + "Jed": ["M"], + "bassets's": [], + "disquiets": [], + "allocates": [], + "bulkiness": ["M"], + "roister": ["Z", "G", "D", "R", "S"], + "Cumberland": ["M"], + "titters": [], + "embankinged": [], + "regimented": [], + "contemplation's": [], + "scarification": ["M"], + "idempotent": [], + "regiment'sed": [], + "whit": ["M", "D", "N", "R", "S", "X", "T", "G", "J"], + "junctions": [], + "Evian's": [], + "phantasmagoria's": [], + "monographs": [], + "humpbacked": [], + "parted": [], + "burlierness": [], + "peeder": [], + "eater": ["M"], + "Sousa's": [], + "ulcer": ["S", "M"], + "walkouts's": [], + "thereabouts": [], + "Swede": ["S", "M"], + "globulin's": [], + "police's": [], + "debaterser": [], + "regulator": ["M", "S"], + "assigners": [], + "klugeds": [], + "Xiongnu's": [], + "whodunit": ["M", "S"], + "fluttered": [], + "cadaver's": [], + "coriander's": [], + "headland": ["M", "S"], + "telephotography": ["M"], + "sunbathes": [], + "arithmetic's": [], + "dignities": [], + "tallyhos": [], + "honored": [], + "lesbians": [], + "blackjack": ["M", "D", "G", "S"], + "cookware": ["S", "M"], + "Hiss": ["M"], + "finking": [], + "bedeck": ["G", "S", "D"], + "supersaturatingen": [], + "philosophers": [], + "woes": [], + "hypnotizing": [], + "surfeited": [], + "formlessly": [], + "opp": [], + "VAX": [], + "rephotographs": [], + "ranged": [], + "bogyman's": [], + "tanning's": [], + "Vega's": [], + "fanboy's": [], + "borrowing": ["M"], + "bulgeds": [], + "Marriott": ["M"], + "jarfuls": [], + "attributingen": [], + "forensic's": [], + "knight": ["M", "D", "Y", "S", "G"], + "reprieve'sing": [], + "sinfulness's": [], + "fuzzes": [], + "Eugene": ["M"], + "clients": [], + "overmanning": [], + "nosecones's": [], + "happenstances's": [], + "buddies": [], + "heaviest": [], + "Gargantua": ["M"], + "Montesquieu": ["M"], + "Crux": ["M"], + "momentarily": [], + "theft": ["S", "M"], + "kilowatt's": [], + "egghead's": [], + "malignantly": [], + "fratricidal": [], + "reliquaries's": [], + "crinkled": [], + "virtuosity": ["M"], + "buzzword": ["S", "M"], + "cerebellum": ["S", "M"], + "imperfects": [], + "guard'sed": [], + "crispier": [], + "underlies": [], + "reappoint": [], + "spar'ses": [], + "mountains's": [], + "Sanchez": ["M"], + "slyness's": [], + "sympathized": [], + "contently": [], + "manpower's": [], + "epoch": ["M"], + "mercilessness's": [], + "Upanishads's": [], + "Mongolia's": [], + "stipple'sing": [], + "westerlies's": [], + "civilian": ["M", "S"], + "Arawak": ["M"], + "seasonablings": [], + "eagerness": ["M"], + "foreskin's": [], + "gravitating": [], + "enlarges": [], + "Alfreda's": [], + "geologist's": [], + "Gr": ["B"], + "thankfulness's": [], + "shinguard's": [], + "squeal's": [], + "libation": ["S", "M"], + "staccato": ["M", "S"], + "minestrone's": [], + "prisoner's": [], + "fancies": [], + "lawns": [], + "totalings": [], + "puffiness": ["M"], + "boateder": [], + "haying": [], + "abysmally": [], + "inoffensiveness": [], + "ridicule's": [], + "dousesing": [], + "separator": ["M", "S"], + "month": ["M", "Y"], + "anticyclone": ["S", "M"], + "acknowledge": ["D", "S", "G"], + "lobbed": [], + "artificers": [], + "chieflies": [], + "optimism's": [], + "dell's": [], + "bottom": ["S", "M", "D", "G"], + "giddiness": ["M"], + "equated": [], + "Mead": ["M"], + "shoestrings": [], + "foremast": ["M", "S"], + "conceit's": [], + "symptomatically": [], + "swordsmen": [], + "sculptures": [], + "commonerly": [], + "counterbalancinged": [], + "handwriting's": [], + "chrysalis'ses": [], + "relenting": [], + "Mohammedanisms's": [], + "splodge": ["S"], + "psych's": [], + "flan's": [], + "halt": ["M", "D", "R", "Z", "G", "S"], + "gimp": ["M", "D", "G", "S"], + "loitersed": [], + "suffusingen": [], + "incremental": ["Y"], + "systemic's": [], + "appliqueing": [], + "Cornwallis": ["M"], + "collators": [], + "introduction's": [], + "aquiline": [], + "Denny": ["M"], + "posers": [], + "engenders": [], + "Mari": ["S", "M"], + "superbest": [], + "Khalid's": [], + "hoseds": [], + "cartoonist'ses": [], + "deprecate": ["G", "N", "D", "S"], + "redo": ["G"], + "Langerhans's": [], + "cautioning": [], + "eluded": [], + "candlelight's": [], + "matersing": [], + "walkeder": [], + "tramp": ["Z", "G", "S", "M", "D", "R"], + "hunter": ["M"], + "gownings": [], + "passing": ["M", "Y"], + "counsel": ["J", "M", "D", "G", "S"], + "atishoo": [], + "clinical": ["Y"], + "line's": [], + "determiners": [], + "seaborne": [], + "fettle's": [], + "uncured": [], + "newsroom's": [], + "snares's": [], + "calvinged": [], + "whippoorwill'ses": [], + "doublesing": [], + "voyagersing": [], + "shiner": ["M"], + "hemmer's": [], + "baptism'ses": [], + "spotlightings": [], + "Makarios's": [], + "gonadal": [], + "sparer": [], + "bluepoint's": [], + "Rockwell's": [], + "standing's": [], + "piasters": [], + "inflicted": [], + "pasteurization's": [], + "mademoiselle": ["M", "S"], + "droids": [], + "firecrackers's": [], + "sucrose": ["M"], + "scrounger": ["M"], + "fussiness": ["M"], + "Jordanian'ses": [], + "household": ["S", "M", "R", "Z"], + "bravado's": [], + "Claudine's": [], + "Orlon's": [], + "Spokane's": [], + "battlefront": ["M", "S"], + "eiderdown's": [], + "scion": ["M", "S"], + "gravels": [], + "Kurtis's": [], + "sandpaper'sed": [], + "coupling": ["S", "M"], + "clenching": [], + "jurisdictional": [], + "NW's": [], + "Baudrillard's": [], + "gentry's": [], + "bibulous": [], + "maintained": [], + "Georgette": ["M"], + "sleeves": [], + "layperson": ["M", "S"], + "Ephesus": ["M"], + "smoothie": ["M", "S"], + "semanticist": ["M", "S"], + "piper's": [], + "truncheon's": [], + "husked": [], + "snowbanks's": [], + "Alyson's": [], + "Advents": [], + "peahen": ["M", "S"], + "smell'sed": [], + "beatersing": [], + "justifying": [], + "Amoco": ["M"], + "foundation's": [], + "fruitiest": [], + "sectional's": [], + "linersing": [], + "Shelia's": [], + "gradation": ["C", "M"], + "vignettists": [], + "sinecures": [], + "Darrel": ["M"], + "enthusiast'ses": [], + "q": [], + "marrieds": [], + "folklorist": ["M", "S"], + "longshoreman's": [], + "boyfriend's": [], + "preservative": ["S", "M"], + "intravenouses": [], + "frumpier": [], + "pterodactyls": [], + "Oberlin's": [], + "IDs": [], + "jellylike": [], + "creamierness": [], + "progeny": ["M"], + "Walpurgisnacht": ["M"], + "Bloom": ["M", "R"], + "spottiness's": [], + "interj": [], + "copulatives's": [], + "ch": ["I", "F", "V", "T"], + "giblet's": [], + "microfiche": ["M"], + "imprison": ["S", "D", "L", "G"], + "rebind": [], + "woodsiest": [], + "aileron": ["S", "M"], + "householder": ["M"], + "Pentax's": [], + "distillationens": [], + "crisscrossed": [], + "joyrides's": [], + "shorelines": [], + "perpetuate": ["D", "S", "G", "N"], + "wanglinged": [], + "lifeline'ses": [], + "coalition's": [], + "horizons": [], + "swab's": [], + "perter": [], + "jugglersing": [], + "vale": ["M", "S"], + "Faisal": ["M"], + "Falklands": ["M"], + "Sybil's": [], + "arroyo": ["M", "S"], + "beg": ["S"], + "potboilers's": [], + "pipe'ses": [], + "passiveness": ["M"], + "unprincipled": [], + "incandescence's": [], + "honcho": ["M", "S"], + "instancinged": [], + "dim": ["P", "S", "R", "Y"], + "Tripoli's": [], + "stagnating": [], + "quicken": ["D", "G"], + "tattoo'sed": [], + "succotash's": [], + "jingling": [], + "loads": [], + "blackberries": [], + "slid": [], + "repression": ["M", "S"], + "Lehman's": [], + "horsewhip": ["S", "M"], + "Chauncey": ["M"], + "Khulna": ["M"], + "placidity": ["M"], + "augury's": [], + "corroboration's": [], + "Irrawaddy's": [], + "sandpapering": [], + "hellcat's": [], + "Crimea's": [], + "novelist's": [], + "Shoshones": [], + "trough's": [], + "talkativeness": ["M"], + "cosignatories's": [], + "ferule's": [], + "respondent": ["S", "M"], + "behaviorist": ["M", "S"], + "subbasement's": [], + "philandering's": [], + "zooplankton": [], + "rage's": [], + "rosewater": ["M"], + "embitteringment": [], + "jewel'sed": [], + "queasiness": ["M"], + "nitrite": ["S", "M"], + "dissuades": [], + "redskins": [], + "settinger": [], + "milligram": ["M", "S"], + "handouts": [], + "bongos": [], + "matins's": [], + "developer's": [], + "Nippon": ["M"], + "greatness's": [], + "neutrino's": [], + "porcupines": [], + "Tulsa": ["M"], + "forfeit's": [], + "Vickie": ["M"], + "quadrille's": [], + "EEG": ["M"], + "pizzicati": [], + "purported": ["Y"], + "enjoyment": ["S", "M"], + "hols": [], + "sheepfolds": [], + "pyorrhea's": [], + "nurseryman's": [], + "canvasinged": [], + "quadruplicating": [], + "Crisco's": [], + "uncommitted": [], + "celery": ["M"], + "milts": [], + "hingeds": [], + "Hinton's": [], + "halterneck": ["S"], + "annotates": [], + "haringed": [], + "palazzi": [], + "peer'sed": [], + "nonjudgmental": [], + "nukes": [], + "ionizers": [], + "Gregory": ["M"], + "arsenals": [], + "clonking": [], + "remake's": [], + "worst'sed": [], + "ratified": [], + "Shasta's": [], + "straightforwards": [], + "superstores": [], + "Seuss": ["M"], + "premeditation's": [], + "lectureships's": [], + "accursedness's": [], + "mistook": [], + "whirlpools": [], + "piggeries": [], + "shortish": [], + "gondola": ["M", "S"], + "Dortmund's": [], + "Tangier'ses": [], + "snuffbox": ["M", "S"], + "cap'sed": [], + "maintains": [], + "they'd": [], + "N'sed": [], + "taro": ["M", "S"], + "writhes": [], + "rinses": [], + "presenting": [], + "undetermined": [], + "Csonka's": [], + "wearieder": [], + "carol'sed": [], + "aviator": ["M", "S"], + "untenanted": [], + "forebear's": [], + "lightest": [], + "Aquinas": ["M"], + "ecotourism": ["M"], + "incursion'ses": [], + "Toledo's": [], + "invoking": [], + "moistness": ["M"], + "owlet'ses": [], + "USS": [], + "albumin's": [], + "timescales": [], + "perks": [], + "supermom's": [], + "diathermy": ["M"], + "fastening's": [], + "staff": ["A", "S", "D", "G"], + "ensconcing": [], + "rinse": ["M", "G", "D", "S"], + "approximation's": [], + "cultivar's": [], + "lechery": ["M"], + "revolutionist": ["S", "M"], + "bawdier": [], + "poles": [], + "O'Casey's": [], + "carriages's": [], + "trash'sed": [], + "tootsie": ["S"], + "Guerrero's": [], + "Romes": [], + "demur's": [], + "windsurf": ["Z", "G", "D", "R", "S"], + "Jaclyn's": [], + "malefaction's": [], + "dumdum's": [], + "prepackages": [], + "siren's": [], + "preachier": [], + "playgroup": ["S"], + "pockmark'sed": [], + "wristband'ses": [], + "backboard's": [], + "Latoya's": [], + "wanderersing": [], + "homewreckers's": [], + "penologists": [], + "stint": ["G", "S", "M", "D"], + "estrus'ses": [], + "hobbyists's": [], + "fecundateds": [], + "priorities": [], + "pinkeder": [], + "attainments's": [], + "trundling": [], + "Aguinaldo": ["M"], + "languish": ["D", "S", "G"], + "regattas's": [], + "Thoroughbred's": [], + "Dy": ["M"], + "Nicene": ["M"], + "cheeses": [], + "Vuitton": ["M"], + "Aline's": [], + "scarcerly": [], + "chihuahuas": [], + "measliest": [], + "molestation's": [], + "adware": [], + "celebration's": [], + "Motown's": [], + "crenelation's": [], + "pompousliness": [], + "Cecily's": [], + "Burundian": ["M", "S"], + "moire's": [], + "attitudinizinged": [], + "cupolas": [], + "middy": ["S", "M"], + "weldeder": [], + "legginess": ["M"], + "embitterment's": [], + "joiner": ["F", "M", "S"], + "fluffier": [], + "mutilation": ["M"], + "avenginged": [], + "landholder": ["S", "M"], + "footballing": [], + "grandmas": [], + "propellers's": [], + "petrifaction": ["M"], + "hagiography's": [], + "swallows": [], + "sizeds": [], + "space's": [], + "Zimbabwe": ["M"], + "thawings": [], + "groomer": ["M"], + "guarantieds": [], + "Fullerton's": [], + "skimpsed": [], + "rives": [], + "warbonnet's": [], + "symbolize": ["D", "S", "G"], + "pulsar": ["S", "M"], + "impersonated": [], + "congresses": [], + "emphasized": [], + "Koufax's": [], + "zircon's": [], + "austerest": [], + "preciosity": ["M"], + "extroversion": ["M"], + "linguistically": [], + "weighing": [], + "spatter's": [], + "subtractsed": [], + "iconoclasm": ["M"], + "weightlifter's": [], + "pharyngitis": ["M"], + "tn": [], + "accost": ["G", "M", "D", "S"], + "paperwork's": [], + "tautologies": [], + "Merritt's": [], + "taiga's": [], + "stammer": ["Z", "G", "M", "D", "R", "S"], + "eructeding": [], + "scenery": ["M"], + "freeway's": [], + "ambassadorship": ["M", "S"], + "mounter'ses": [], + "dictator's": [], + "fraternal": ["Y"], + "farmhouse's": [], + "exert": ["S", "D", "G"], + "scriptures": [], + "tomes": [], + "pentathlons": [], + "Jayson": ["M"], + "Albion's": [], + "ospreys": [], + "stuffiness's": [], + "tushes": [], + "Malaysian": ["M", "S"], + "bottoming": [], + "godmothers": [], + "scalding": [], + "jackknifed": [], + "reproduction": [], + "nondiscrimination": ["M"], + "watchstraps": [], + "Tums's": [], + "slalomed": [], + "bondsman's": [], + "mistrust": ["M", "D", "S", "G"], + "Malabo": ["M"], + "millstone's": [], + "unhorse": [], + "purlieu's": [], + "Shintoism": ["M", "S"], + "Yerevan's": [], + "screensaver": ["S", "M"], + "keyboardists": [], + "negatively": [], + "Lyons's": [], + "million's": [], + "gentlemanly": ["U"], + "illustrative": ["Y"], + "boxeden": [], + "cyclic": [], + "entryphone": ["S"], + "chattels": [], + "Mountbatten": ["M"], + "glamorizesing": [], + "syllabifieds": [], + "sate": ["G", "D", "S"], + "kiddo's": [], + "tooting": [], + "passbook'ses": [], + "retards": [], + "consolidateds": [], + "fussbudgets": [], + "undulations": [], + "played": [], + "reasoningable": [], + "IDE": [], + "Trieste's": [], + "scarpeder": [], + "slalomsed": [], + "brisket's": [], + "downplaysing": [], + "compostsing": [], + "boil'sed": [], + "trowelsing": [], + "unassumingly": [], + "combed": ["U"], + "dodgers": [], + "dilateds": [], + "gauchely": [], + "coarsen": ["S", "D", "G"], + "jinxesing": [], + "bibs": [], + "jettisons": [], + "controversy's": [], + "Jackson's": [], + "humanitarians": [], + "abolitionism's": [], + "thwart's": [], + "crave": ["D", "S", "G", "J"], + "fertilized": ["U"], + "perishesers": [], + "rowdiers": [], + "danseuse": ["M", "S"], + "dosshouses": [], + "finis's": [], + "cnidarian'ses": [], + "surlier": [], + "currently": [], + "leasehold'ser": [], + "evictions": [], + "lowland'ser": [], + "electrocutes": [], + "vars": [], + "bellyinged": [], + "Hermosillo's": [], + "cries's": [], + "peters": [], + "exonerationed": [], + "straightaway": ["S", "M"], + "tablecloth's": [], + "winched": [], + "hemophiliac'ses": [], + "overextending": [], + "won't": [], + "Walkman": ["M"], + "loafers": [], + "bloopeder": [], + "capitol's": [], + "neutrinos's": [], + "identikit": ["S"], + "embodies": [], + "spout's": [], + "dewdrop": ["S", "M"], + "shakiest": [], + "doff": ["D", "G", "S"], + "Gandalf": ["M"], + "reneges": [], + "Cambrian's": [], + "groves's": [], + "lighteneder": [], + "breakwaters": [], + "bisque": ["M"], + "raider": ["M"], + "pipit's": [], + "doubleheader's": [], + "exhibit's": [], + "tackler": ["M"], + "conferencing": [], + "invigilatingen": [], + "abdomen": ["S", "M"], + "prouder": [], + "rattlings": [], + "barnacled": [], + "eighteens": [], + "rational'sly": [], + "flats": [], + "clifftop": ["S"], + "semicircles's": [], + "Graceland's": [], + "nonpersons": [], + "quakeds": [], + "mystify": ["C", "D", "S", "G", "N"], + "arpeggio's": [], + "shillsings": [], + "Macedon's": [], + "deviation": ["M"], + "reformative": [], + "wring's": [], + "Leanne": ["M"], + "spryness": ["M"], + "explodinged": [], + "diary's": [], + "subplots": [], + "yardage'ses": [], + "milkmaid": ["M", "S"], + "lousesing": [], + "Guyanese's": [], + "wallet's": [], + "levitateds": [], + "pan": ["S", "M"], + "thorium": ["M"], + "pubes's": [], + "overestimationed": [], + "dam's": [], + "encumbrance's": [], + "hammerers": [], + "testator'ses": [], + "substituted": [], + "congeal": ["S", "L", "D", "G"], + "fogy's": [], + "Isaac": ["M"], + "compound's": [], + "pother's": [], + "roofer": ["M"], + "bluebottle": ["S", "M"], + "instates": [], + "wittily": [], + "benching": [], + "feces's": [], + "cannonball": ["S", "M"], + "Burke's": [], + "gauntlet's": [], + "clix": [], + "MCI's": [], + "Sal": ["M", "Y"], + "Missourian": ["M", "S"], + "rhinovirus": ["M", "S"], + "liturgists's": [], + "corpuscle": ["M", "S"], + "scratch'sed": [], + "sooty": ["R", "T"], + "splinteder": [], + "availability": ["U", "M"], + "complain": ["D", "R", "Z", "G", "S"], + "barony": ["S", "M"], + "bossism's": [], + "CD's": [], + "plumiest": [], + "homeland's": [], + "randomizeds": [], + "Milosevic's": [], + "chart'sed": [], + "throatiness": ["M"], + "Hohenzollern's": [], + "Helena's": [], + "duodenum's": [], + "completenessly": [], + "anciently": [], + "sapience": ["M"], + "jargon": ["M"], + "permit's": [], + "simile'ses": [], + "epiphanies's": [], + "teleworking": [], + "discombobulates": [], + "abettors": [], + "Corfu's": [], + "overjoysed": [], + "railroad's": [], + "cherub'ses": [], + "subzero": [], + "cubical": [], + "seasonable": ["U"], + "abundantly": [], + "loathes": [], + "trollsing": [], + "greaseder": [], + "Sikkim's": [], + "minted": [], + "culvert'ses": [], + "finial'ses": [], + "Fujiwara": ["M"], + "postmistress'ses": [], + "adopter": ["M", "S"], + "monotone": ["M", "S"], + "snatching's": [], + "cordon": ["S", "M", "D", "G"], + "multiplyinged": [], + "deanery's": [], + "federalists": [], + "incubates": [], + "suspicions's": [], + "Mercator": ["M"], + "Manitoba's": [], + "glob's": [], + "blackamoor'ses": [], + "antiphonal'sly": [], + "whippoorwill's": [], + "aqualungs": [], + "crustaceans": [], + "apatite's": [], + "debouches": [], + "headlock": ["M", "S"], + "temptress's": [], + "headlight'ses": [], + "repository": ["S", "M"], + "transmit": ["S"], + "impressions's": [], + "diffed": [], + "abbot": ["M", "S"], + "Android": ["M"], + "obligingly": [], + "cockles's": [], + "bankrupted": [], + "Trevino": ["M"], + "folic": [], + "megastars": [], + "aimlessness": ["M"], + "poniard": ["M", "S"], + "Peruvian'ses": [], + "fatalists's": [], + "homeys's": [], + "hitchhiking": [], + "barometers": [], + "adversaries's": [], + "demitasses": [], + "emasculation's": [], + "quashinged": [], + "tout's": [], + "hayloft's": [], + "sickle": ["M", "S"], + "excoriation": ["M"], + "auspiciousness": ["M"], + "lawmaker": ["M", "S"], + "alien": ["B", "G", "M", "D", "S"], + "leagues": [], + "espy": ["D", "S", "G"], + "fibrin's": [], + "expatriateds": [], + "bedevilment's": [], + "August's": [], + "cankers": [], + "breastbones": [], + "Episcopalian": ["M", "S"], + "borderline's": [], + "heterosexually": [], + "Davies's": [], + "Kigali's": [], + "armistice": ["S", "M"], + "transfusionsing": [], + "Aegean's": [], + "twirl": ["S", "M", "D", "R", "Z", "G"], + "spinets's": [], + "preciousliness": [], + "thatches": [], + "Bohr": ["M"], + "misdiagnosing": [], + "teetheds": [], + "decisions": [], + "pulsing": [], + "sidestep's": [], + "rudeness": ["M"], + "hassocks's": [], + "preteen's": [], + "nailbrush's": [], + "breadcrumb'ses": [], + "covetously": [], + "smurfs": [], + "shoot's": [], + "gussies": [], + "Glaxo": ["M"], + "phoniness's": [], + "antivirus": [], + "hieroglyphic's": [], + "posthaste": [], + "revenuer's": [], + "wallflower": ["M", "S"], + "playfulness's": [], + "frosteding": [], + "serviceability": ["M"], + "embellisheds": [], + "pillage's": [], + "Burns": ["M"], + "Snake": ["M"], + "awnings": [], + "meiosis": ["M"], + "proscribing": [], + "dubbed": [], + "racketeer's": [], + "Autumn": ["M"], + "objected": [], + "titivation": ["M"], + "formulators's": [], + "Quincy's": [], + "telexes": [], + "pilferer": ["M"], + "unfeigned": [], + "cheroot'ses": [], + "hawks": [], + "yardages": [], + "Keller's": [], + "Landsteiner's": [], + "overshare": ["D", "S", "G"], + "preambling": [], + "Potter's": [], + "ladyships": [], + "famously": [], + "Frankfurter": ["M"], + "tempter's": [], + "Lusitania's": [], + "estimable": ["I"], + "frustration": ["M"], + "bulb's": [], + "Oneida'ses": [], + "computations": [], + "thunderbolt's": [], + "chanced": [], + "butches": [], + "malfunction's": [], + "foals": [], + "emo's": [], + "bollocks": [], + "proposal's": [], + "Esquire's": [], + "Pensacola's": [], + "accumulating": [], + "indefinite": [], + "assesseds": [], + "seaboards": [], + "valvular": [], + "spouse's": [], + "luggage": ["M"], + "waddled": [], + "secretariats": [], + "Closure": ["M"], + "Google": ["M"], + "soaksings": [], + "estimates": [], + "combustibility's": [], + "amplifier": ["M"], + "prophylactics": [], + "Lott": ["M"], + "showings": [], + "stir": ["M", "S"], + "Esperanto": ["M"], + "herringbone's": [], + "humidifiers": [], + "Cardin": ["M"], + "disillusionmented": [], + "commercialized": [], + "unbearably": [], + "nonstructural": [], + "qualm's": [], + "shoulders": [], + "exclusivity": ["M"], + "flute's": [], + "gravitation": ["M"], + "reproached": [], + "Tyrone": ["M"], + "earnest's": [], + "palettes": [], + "sulfurs": [], + "encrypted": [], + "generality": ["S", "M"], + "lunchboxes": [], + "onslaught": ["M", "S"], + "prosperity": ["M"], + "buccaneering": [], + "sendoff": ["M", "S"], + "periphery": ["S", "M"], + "centaur's": [], + "monopolizesers": [], + "sandy": ["R", "T", "P"], + "tiptops's": [], + "problems": [], + "snowflakes": [], + "kindle": ["A", "G", "D", "S"], + "stochastic": [], + "lag'ser": [], + "goatskins": [], + "blearier": [], + "metatheses": [], + "doping's": [], + "plankeding": [], + "shushes": [], + "virginal": ["S", "M"], + "compounding's": [], + "featherweight'ses": [], + "Julliard": ["M"], + "sureness's": [], + "blabbered": [], + "opuses": [], + "nonage": ["M", "S"], + "enrapture": ["D", "S", "G"], + "vulgarizer's": [], + "tourists": [], + "Scientologists's": [], + "witteringed": [], + "surplus": ["M", "S"], + "Unilever": ["M"], + "chickenfeed's": [], + "matchbook": ["S", "M"], + "footlocker": ["S", "M"], + "monorails": [], + "constipate": ["G", "N", "D", "S"], + "Khoisan": ["M"], + "backhander's": [], + "slagheaps": [], + "clips": [], + "mycologists's": [], + "caper": ["G", "M", "D"], + "bumbleder": [], + "maidenhood's": [], + "insinuations": [], + "overcapitalized": [], + "shirts": [], + "stickler's": [], + "seeders's": [], + "assemblywomen": [], + "pedophile": ["S"], + "mischievously": [], + "representation": [], + "recruits's": [], + "tale": ["M", "S"], + "scratch's": [], + "mousseds": [], + "breakinger": [], + "federations": [], + "signors": [], + "tonsil": ["M", "S"], + "whoppers": [], + "Tom's": [], + "mediocrity": ["S", "M"], + "muscling": [], + "hypinged": [], + "gazpacho": ["M"], + "unwearable": [], + "deathbed's": [], + "slowpoke's": [], + "REMs": [], + "squashes": [], + "drag'ses": [], + "forebodes": [], + "escapements's": [], + "mutinied": [], + "Herschel's": [], + "rehabbing": [], + "bowl's": [], + "strangerly": [], + "cogency": ["M"], + "streakiest": [], + "counteracting": [], + "verges": [], + "parallel's": [], + "rosin": ["S", "M", "D", "G"], + "Hallmark's": [], + "spruce'sly": [], + "electioneers": [], + "Denebola's": [], + "fawners": [], + "travelogue": ["M", "S"], + "dumpier": [], + "pensioner": ["M"], + "mocksers": [], + "optometry's": [], + "Cortes": ["M", "S"], + "enervateds": [], + "beseeching": ["Y"], + "fumigant'ses": [], + "conjunctive's": [], + "stamp'sed": [], + "nonadjacent": [], + "Erich": ["M"], + "pump's": [], + "impetuously": [], + "fetcheder": [], + "lawsuits": [], + "tapereding": [], + "accoutering": [], + "Waldemar's": [], + "stockroom's": [], + "interconnects": [], + "chignon": ["M", "S"], + "cupboard": ["S", "M"], + "buzzer's": [], + "lasts": [], + "histrionics's": [], + "lira's": [], + "Koontz's": [], + "biologist'ses": [], + "volleyings": [], + "nips": [], + "limpet": ["M", "S"], + "oxygen's": [], + "cresteding": [], + "Janette": ["M"], + "poetically": [], + "announces": [], + "caricaturinged": [], + "exculpatory": [], + "futzesing": [], + "copybook": ["S", "M"], + "seining": [], + "gawkiness": ["M"], + "Eichmann": ["M"], + "fluoridation": ["M"], + "PS": ["M"], + "awe'sing": [], + "Wilfred's": [], + "selflessnessly": [], + "nonagenarians": [], + "salivation": ["M"], + "Cossack's": [], + "Pentecost": ["S", "M"], + "requirement'ses": [], + "suppresses": [], + "dramatist": ["S", "M"], + "zoophytes": [], + "steamboats": [], + "Taylor's": [], + "loft's": [], + "cheek": ["G", "M", "D", "S"], + "stories's": [], + "lad'sed": [], + "scripts's": [], + "narcissist": ["M", "S"], + "capacitor's": [], + "snaffle's": [], + "expertness's": [], + "maimeds": [], + "skateboarder": ["M"], + "congratulated": [], + "canaries's": [], + "garnishees's": [], + "slipway's": [], + "horseshoe": ["D", "S", "M"], + "reinspect": [], + "beacons's": [], + "rucksacks": [], + "unemployment": [], + "smote": [], + "agency's": [], + "acclaim": ["M", "D", "G", "S"], + "Gwen": ["M"], + "unwatchable": [], + "low'sed": [], + "raze": ["G", "D", "S"], + "bombed": [], + "splendor's": [], + "parishioner's": [], + "pickings": ["M"], + "kinematics's": [], + "Tomlin": ["M"], + "overexposinged": [], + "shrink": ["M", "S", "B", "G"], + "caves's": [], + "gladiolus's": [], + "photocopier": ["M"], + "backersing": [], + "indicatingen": [], + "principals": [], + "minivan": ["M", "S"], + "oriel": ["M", "S"], + "scotching": [], + "dormitories": [], + "blanketing": [], + "mortifieds": [], + "VT": [], + "cowboy": ["S", "M"], + "Akbar's": [], + "dereface": [], + "egotist": ["S", "M"], + "hypnotizinged": [], + "temporizing": [], + "offspring": ["M"], + "settleds": [], + "collar's": [], + "Comte's": [], + "knowing": ["U", "Y", "S"], + "Tiffany's": [], + "bowl": ["M", "D", "R", "Z", "G", "S"], + "endlessly": [], + "affinity's": [], + "tattletale'ses": [], + "makes": [], + "habitsable": [], + "prude'ses": [], + "view's": [], + "congregationalist's": [], + "agriculturalist": ["M", "S"], + "bespoken": [], + "gamekeepers": [], + "hissesing": [], + "peeresses": [], + "romeo'ses": [], + "glossary's": [], + "existence": ["M", "S"], + "encounterings": [], + "shoplifters": [], + "airships's": [], + "sambaeds": [], + "epidemiologists": [], + "Dame's": [], + "handicap'ses": [], + "girding": [], + "slicker": ["M"], + "ethnology's": [], + "prowess": ["M"], + "marchers": [], + "period'ses": [], + "championships": [], + "steeplechase'ses": [], + "underdog": ["S", "M"], + "semifinalist": ["M", "S"], + "verbiage": ["M", "S"], + "Guyanese": ["M"], + "dinghies": [], + "ramificationsen": [], + "denunciation": ["S", "M"], + "misnameds": [], + "showcase's": [], + "sophisticates": [], + "Cosby's": [], + "ringmaster'ses": [], + "barracuda": ["S", "M"], + "bombsings": [], + "creeks's": [], + "sheepskins": [], + "Brahmanism's": [], + "bedridden": [], + "rowels": [], + "horselaugh": ["M"], + "swoosh": ["M", "D", "S", "G"], + "bipartisanship": ["M"], + "columbines": [], + "Sudetenland": ["M"], + "peaches": [], + "disdains's": [], + "sorrowful": ["Y", "P"], + "podiatry's": [], + "ostracizing": [], + "Esq's": [], + "violins": [], + "chaplaincies's": [], + "uniqueness's": [], + "stalled": [], + "phaeton's": [], + "webcast's": [], + "Rudolph": ["M"], + "enshrouded": [], + "plummeting": [], + "workhouse's": [], + "Perl's": [], + "herniatingen": [], + "stooge'ses": [], + "bypasses": [], + "habits": [], + "Hebraisms's": [], + "gasbag": ["S", "M"], + "duchesses": [], + "Zr": ["M"], + "postponements": [], + "header": ["M"], + "Stradivarius's": [], + "sharers": [], + "firings's": [], + "earningings": [], + "smartwatch": ["M", "S"], + "Rockford's": [], + "Unicode's": [], + "Kossuth": ["M"], + "vocalizations": [], + "specter": ["A", "M", "S"], + "fivers": [], + "pothers's": [], + "cowboys's": [], + "blotcheds": [], + "plump's": [], + "camels": [], + "savvies's": [], + "chamomiles": [], + "blimp's": [], + "Lesseps's": [], + "windowpane's": [], + "subcontracteds": [], + "rejoice": ["J", "G", "D", "S"], + "puberty's": [], + "Carmelo": ["M"], + "motif's": [], + "redbirds": [], + "tepees": [], + "headquarters": ["M"], + "pullover's": [], + "plump'sed": [], + "mufflersing": [], + "Trenton": ["M"], + "loadings": [], + "pointillism": ["M"], + "politicize": ["C", "D", "S", "G"], + "investigator": ["S", "M"], + "calculation": ["A", "M"], + "Aquitaine's": [], + "cargoes": [], + "brigadier'ses": [], + "reluctant": ["Y"], + "gauntness's": [], + "sternness's": [], + "sophisticating": [], + "badger's": [], + "revokes": [], + "pantheist's": [], + "imitations": [], + "cliometrician's": [], + "girdles's": [], + "regimenteding": [], + "cascadeds": [], + "logic": ["M"], + "congratulationsing": [], + "sen": [], + "preppy": ["T", "R", "S", "M"], + "oarsing": [], + "recumbent": [], + "seductress": ["M", "S"], + "stoppling": [], + "haberdasher's": [], + "shelter": ["G", "M", "D", "S"], + "mutational": [], + "trysteding": [], + "boathouse'ses": [], + "durum": ["M"], + "Pentecosts's": [], + "Mohacs's": [], + "fuhrers's": [], + "madwomen": [], + "urbaner": [], + "concupiscence": ["M"], + "deadlier": [], + "Ephesian'ses": [], + "wicksers": [], + "chatterbox'ses": [], + "bridegrooms's": [], + "flashy": ["R", "T", "P"], + "shakedowns": [], + "suffusion": ["M"], + "suspension's": [], + "oversubscribeds": [], + "flailed": [], + "cafes": [], + "Carla's": [], + "densest": [], + "phooey": [], + "Capricorn": ["M", "S"], + "Tokyo's": [], + "chaplains": [], + "license": ["M", "G", "D", "S"], + "Ramanujan's": [], + "waylayers": [], + "halfpence": [], + "hightailsing": [], + "waterboarding's": [], + "muses": [], + "bro": ["S", "M", "H"], + "disfranchisement": ["M"], + "painter'sly": [], + "Ginger's": [], + "flameproofs": [], + "honorable": [], + "experts": [], + "Alcestis's": [], + "quintuplet": ["M", "S"], + "Brahmaputra": ["M"], + "splicer's": [], + "rehangeding": [], + "tardiness's": [], + "assisting": [], + "cohesiveness's": [], + "cahoots": [], + "bronzing": [], + "feminines's": [], + "bespattersed": [], + "physical'sly": [], + "gooseberry's": [], + "Bergener": [], + "rub's": [], + "scuttlebutt's": [], + "mended": [], + "directories": [], + "vulgarizer": ["M"], + "H": ["M"], + "Nyasa's": [], + "traducing": [], + "examinations": [], + "Kerri": ["M"], + "caginess": ["M"], + "thoraxes": [], + "rattle'sers": [], + "yodelersing": [], + "overtaxinged": [], + "unfixed": [], + "Herodotus": ["M"], + "cootie's": [], + "trove": ["S", "M"], + "enmeshment's": [], + "controvert": ["D", "S", "G"], + "faithlessnessly": [], + "unexpectedness": ["M"], + "Alejandro": ["M"], + "envelopmented": [], + "prioritizesing": [], + "temporize": ["Z", "G", "D", "R", "S"], + "gazumping": [], + "downturn": ["M", "S"], + "lither": [], + "suggestibility": ["M"], + "animadversion": ["M", "S"], + "crossword's": [], + "step": ["I", "M", "S"], + "laze's": [], + "expropriating": [], + "truism's": [], + "nexuses": [], + "perjuries": [], + "vomit": ["S", "M", "D", "G"], + "sagebrush": ["M"], + "Brubeck's": [], + "veneer's": [], + "firebomb's": [], + "accomplishes": [], + "Malinowski's": [], + "quiver's": [], + "limeades": [], + "caseharden": ["D", "G", "S"], + "contrasts": [], + "imposers": [], + "Pampers's": [], + "legalism's": [], + "implementing": [], + "pealeds": [], + "taxonomies": [], + "Sucre": ["M"], + "ob": ["S"], + "Brittney's": [], + "checking's": [], + "feedlots's": [], + "climberers": [], + "poursings": [], + "Lena": ["M"], + "stateliest": [], + "braiseds": [], + "Torrance's": [], + "digest'sed": [], + "backbitten": [], + "achievement": ["S", "M"], + "whereto": [], + "papaya'ses": [], + "enchilada": ["S", "M"], + "egrets": [], + "Irvine's": [], + "huckleberries's": [], + "porker's": [], + "CST's": [], + "USAF": [], + "hauler's": [], + "cutely": [], + "dwindles": [], + "Yaqui": ["M"], + "gasoline's": [], + "Hammerstein's": [], + "unhappy": ["T"], + "camcorders's": [], + "Howells's": [], + "shady": ["R", "P", "T"], + "Adler": ["M"], + "biennial's": [], + "inherent": ["Y"], + "mariachis": [], + "brunet's": [], + "bedding": ["M"], + "innervate": ["G", "N", "D", "S"], + "gagged": [], + "germane": [], + "goggle's": [], + "volume's": [], + "spikiness": ["M"], + "bracinged": [], + "Cochabamba": ["M"], + "ethanol's": [], + "camouflage's": [], + "sentimentally": [], + "Jewishness": [], + "lollygags": [], + "woes's": [], + "gaiter's": [], + "variegatingen": [], + "shirttails's": [], + "polytheism": ["M"], + "Milquetoast's": [], + "storminess": ["M"], + "enervatingen": [], + "notifiers": [], + "sweetmeats": [], + "boardersing": [], + "chauvinistically": [], + "truckload's": [], + "stevedore's": [], + "archers": [], + "shogun'ses": [], + "gaudily": [], + "leagueds": [], + "cybercafe": ["S"], + "PBX": [], + "destructible": ["I"], + "borrowersing": [], + "PCMCIA": [], + "validation's": [], + "thankfulness": ["M"], + "streetwalker's": [], + "toolmakers": [], + "minefields's": [], + "allowing": [], + "syllogism's": [], + "tarmac's": [], + "accommodation": ["M"], + "larcenies's": [], + "detainmenting": [], + "tub'sed": [], + "adequately": [], + "tubby": ["T", "R"], + "filches": [], + "bankcards's": [], + "Philly": ["M"], + "Cartesian": ["M"], + "carnations": [], + "uninstallable": [], + "cards": [], + "strophic": [], + "cajolemented": [], + "jowliest": [], + "Almoravid": ["M"], + "whitening's": [], + "outflow's": [], + "fluoridateds": [], + "daydream'sed": [], + "frisks": [], + "gossiping": [], + "thrashing": ["M"], + "Catalans": [], + "philosophizing": [], + "marigold'ses": [], + "hackwork's": [], + "Alison's": [], + "sachet's": [], + "gunfight'ser": [], + "cigarillos": [], + "Scientology": ["M"], + "Zanuck's": [], + "groundswells's": [], + "tibial": [], + "curios's": [], + "requirements": [], + "trending": [], + "lashing": ["M"], + "Sputnik": ["M"], + "enliveneding": [], + "maypole": ["S", "M"], + "flora": ["S", "M"], + "flogs": [], + "shaker": ["M"], + "publicizeds": [], + "oscillator's": [], + "bobsled's": [], + "wastebasket": ["M", "S"], + "dowsers": [], + "houseflies": [], + "unexplained": [], + "barfly": ["S", "M"], + "panama": ["M", "S"], + "bulged": [], + "hovered": [], + "AC": ["M"], + "bidder": ["M", "S"], + "Damascus": ["M"], + "neatness": ["M"], + "negative's": [], + "Caruso's": [], + "anoraks": [], + "washtub's": [], + "squirmsing": [], + "Ky": ["M", "H"], + "ticketed": [], + "study": ["A", "G", "D", "S"], + "scummed": [], + "airfares": [], + "sweetbread's": [], + "boxcars": [], + "Rottweiler's": [], + "competitor": ["S", "M"], + "basil": ["M"], + "studieds": [], + "buttercups": [], + "implants": [], + "obscenest": [], + "doorplate": ["S", "M"], + "airmails": [], + "riven": [], + "Illinoisans": [], + "aqualung's": [], + "arguable": ["I", "U"], + "parsec'ses": [], + "firebox's": [], + "appliance": ["S", "M"], + "curl's": [], + "shirtfront's": [], + "fencer's": [], + "transactions's": [], + "filterer": ["M"], + "ambivalent": ["Y"], + "Marseillaises": [], + "hearty'sness": [], + "extinction's": [], + "reefers": [], + "Father": ["S", "M"], + "serif": ["M", "S"], + "lain": [], + "unimplementable": [], + "basketballs": [], + "sodden": ["Y"], + "cope'ses": [], + "entrusted": [], + "liquidizing": [], + "rostrum'ses": [], + "Pekingese": ["S", "M"], + "frizzed": [], + "Aristotle": ["M"], + "sequestration": ["M"], + "rumor'sed": [], + "rattan's": [], + "squeegee'sed": [], + "Amado": ["M"], + "jitneys": [], + "shoppers": [], + "Eleazar": ["M"], + "upchucks": [], + "worksheet'ses": [], + "houseboy": ["S", "M"], + "Karloff": ["M"], + "vivaciousness": ["M"], + "refugee": ["S", "M"], + "therapies's": [], + "Euclid": ["M"], + "ravageder": [], + "barbarizes": [], + "forgivesers": [], + "bloodstock": ["M"], + "masculine's": [], + "ell": ["S", "M"], + "copulation": ["M"], + "rout": ["M", "R", "Z", "S"], + "wallpapered": [], + "scarification's": [], + "fearlessly": [], + "infertility": [], + "retriever's": [], + "Armenian's": [], + "tequilas's": [], + "Sancho's": [], + "bummed": [], + "hippodrome's": [], + "motif": ["S", "M"], + "hernia's": [], + "bereaving": [], + "befittingly": [], + "Twizzlers": ["M"], + "dilly's": [], + "mercer's": [], + "Hasbro": ["M"], + "bit'sing": [], + "ascensions": [], + "advised": ["U", "Y"], + "ecclesial": [], + "Amundsen's": [], + "hotbeds": [], + "inglenooks": [], + "arrhythmia": ["M"], + "sangfroid": ["M"], + "humanoid's": [], + "lechesers": [], + "epidemiologists's": [], + "shocker": ["M"], + "difficulty": ["S", "M"], + "moneybox": ["S"], + "vibrates": [], + "acoustics": ["M"], + "fatness": ["M"], + "Tell'ser": [], + "laburnum's": [], + "apologizing": [], + "northwest'ser": [], + "Diego's": [], + "curmudgeon's": [], + "prowl'sed": [], + "thespians": [], + "Job's": [], + "disrecompose": [], + "consequentially": [], + "flossing": [], + "parteds": [], + "prewar": [], + "dietary's": [], + "plantsings": [], + "isometrics's": [], + "demo'sed": [], + "metallurgical": [], + "enameling": [], + "gripe's": [], + "Proteus's": [], + "burn": ["M", "D", "R", "Z", "G", "S", "B"], + "leadership's": [], + "ventings": [], + "Brenner's": [], + "dulleder": [], + "theologian's": [], + "ormolu": ["M"], + "groats": [], + "vindicatingen": [], + "hypnotherapist": ["S"], + "spearfish'sed": [], + "bundles's": [], + "orientating": [], + "repression's": [], + "Sheetrock's": [], + "somebodies's": [], + "lime": ["M", "G", "D", "S"], + "airbus'ses": [], + "taffrail": ["S", "M"], + "applaudersing": [], + "mikeds": [], + "spools's": [], + "explore": ["Z", "G", "D", "R", "S"], + "redactor": ["S", "M"], + "demigods": [], + "world": ["S", "M"], + "lumpiest": [], + "wallops": [], + "chiffon's": [], + "Spokane": ["M"], + "supervention": ["M"], + "Demavend": ["M"], + "jamb'ses": [], + "manganese": ["M"], + "shooting": ["M"], + "anatomize": ["D", "S", "G"], + "timeouts": [], + "Paleolithic's": [], + "triumvirate's": [], + "dishrag": ["S", "M"], + "bassoons": [], + "bombardedment": [], + "nakedness's": [], + "bookshop": ["S", "M"], + "aircrew": ["S"], + "amigo's": [], + "oddballs's": [], + "grumbling": [], + "quacking's": [], + "champions": [], + "untapped": [], + "curve's": [], + "royal": ["S", "M", "Y"], + "slavering": [], + "precedents": [], + "coinerers": [], + "soured": [], + "Iaccoca": ["M"], + "cosmogonists's": [], + "cyclotrons": [], + "intractability": [], + "earner": ["M"], + "coulees": [], + "habiliment's": [], + "cried": [], + "crooks": [], + "ripcord'ses": [], + "questioned": ["U"], + "honeysuckle": ["S", "M"], + "veneration's": [], + "Cokes": [], + "exaltsed": [], + "cleaving": [], + "cavern'ses": [], + "Idahoan": ["M", "S"], + "dead'sen": [], + "freebasing": [], + "Ian's": [], + "Malayans": [], + "Python's": [], + "continuity's": [], + "gatinged": [], + "rucks": [], + "conjunctives": [], + "Yamaha's": [], + "goop's": [], + "determinism's": [], + "calendared": [], + "smirks's": [], + "spiting": [], + "yachting": ["M"], + "severeness": ["M"], + "fobbing": [], + "initialing": [], + "January": ["S", "M"], + "Tet": ["M"], + "striptease'sers": [], + "license's": [], + "confabulated": [], + "carelessnessly": [], + "Pamirs": ["M"], + "pricker": ["M"], + "Chi": ["M"], + "expatriatingen": [], + "butternuts": [], + "trashiest": [], + "studbook": ["M", "S"], + "houseclean": ["D", "S", "G"], + "Ieyasu's": [], + "saysing": [], + "Pocahontas's": [], + "nurtureder": [], + "Sadat's": [], + "escudos": [], + "woodcutting's": [], + "leaky": ["P", "R", "T"], + "palpably": [], + "stiffer": [], + "fifers": [], + "legitimizesing": [], + "orthography": ["S", "M"], + "incontrovertible": [], + "responsive": ["U", "Y", "P"], + "Miltiades's": [], + "dockworker'ses": [], + "hider's": [], + "puts's": [], + "desiccators": [], + "jerkin": ["M", "S"], + "exasperatesing": [], + "epitomes's": [], + "shin'sed": [], + "postgraduate's": [], + "placeholder'ses": [], + "comprehending": [], + "roaches": [], + "Merle": ["M"], + "bods": [], + "salvage'sing": [], + "Rosicrucian": ["M"], + "buck'sed": [], + "blench": ["D", "S", "G"], + "Maupassant's": [], + "freestone's": [], + "retrospectively": [], + "weatherproofs": [], + "Constantine": ["M"], + "shrillest": [], + "universallies": [], + "pyruvate": [], + "warmongers's": [], + "scarecrows": [], + "Onondaga's": [], + "destineds": [], + "academics's": [], + "anonymity": ["M"], + "equatablions": [], + "lollops": [], + "flutter": ["M", "D", "S", "G"], + "quibbler": ["M"], + "cliometrics's": [], + "Ares's": [], + "tanked": [], + "skew'sed": [], + "electrodes's": [], + "found": ["F", "S", "D", "G"], + "weededer": [], + "paranoids's": [], + "semis": [], + "bargainerers": [], + "equidistantly": [], + "unschooled": [], + "rebutted": [], + "demonstrations": [], + "shuffleboards": [], + "Shell's": [], + "endowment": ["M", "S"], + "trainees": [], + "steppingstones": [], + "truckling": [], + "Hattie": ["M"], + "elective": ["M", "S"], + "plume's": [], + "Nintendo": ["M"], + "preciosity's": [], + "anthracite's": [], + "phone": ["D", "S", "M", "G"], + "inadvertence's": [], + "breaks": [], + "chiefs": [], + "pose's": ["A"], + "drainboards's": [], + "skewbald": ["S"], + "disfigure": [], + "Cryptozoic": ["M"], + "encroachmented": [], + "Coltrane's": [], + "Lucifer": ["M"], + "GPU": [], + "baobabs's": [], + "negated": [], + "maintainingable": [], + "obverse": ["S", "M"], + "polymerizing": [], + "clerk": ["G", "M", "D", "S"], + "Trappists": [], + "part": ["C", "D", "S", "G"], + "inferiority's": [], + "telescopically": [], + "customary": ["U"], + "videotapes": [], + "claimer's": [], + "Bergen": ["M"], + "Zwingli": ["M"], + "spitefuller": [], + "coastline's": [], + "alternation": ["M"], + "Karachi's": [], + "squiggle's": [], + "timeless": ["P", "Y"], + "propertieds": [], + "bursars": [], + "strip'sed": [], + "awestruck": [], + "Delmar": ["M"], + "motherfucker's": [], + "fluid's": [], + "adverserly": [], + "synergistic": [], + "Lucius's": [], + "spawns's": [], + "cine": [], + "pursuit's": [], + "preceding": [], + "freshenersing": [], + "twitter": ["M", "D", "S", "G"], + "forage's": [], + "deliverers's": [], + "unrecommitted": [], + "errant": ["I"], + "Vietnam's": [], + "initiatives": [], + "sterilizing": [], + "very": ["R", "T"], + "bathmat'ses": [], + "burnoose": ["M", "S"], + "whiskey'ses": [], + "scoreboards": [], + "nonobservance's": [], + "prosecute": ["D", "S", "X", "G", "N"], + "concerted": ["Y"], + "outclasses": [], + "injurer": ["M"], + "Hoff's": [], + "revolves": [], + "SD": [], + "Livonia's": [], + "gurgleds": [], + "occupying": [], + "flashbulbs": [], + "abstractings": [], + "Justin": ["M"], + "cramp'sed": [], + "massifs": [], + "housewares's": [], + "migrants": [], + "Byblos's": [], + "deadbolt": ["S", "M"], + "innuendos": [], + "chophouses": [], + "bookshops's": [], + "washbowl's": [], + "shufflers": [], + "propertied": [], + "noel'ses": [], + "fence's": [], + "obedience's": [], + "summation'ses": [], + "sunflower's": [], + "listenerers": [], + "vividest": [], + "bloatinged": [], + "prances's": [], + "pox's": [], + "realizable": [], + "boars's": [], + "Brampton": ["M"], + "Parkman's": [], + "flightiness's": [], + "paladin's": [], + "skimped": [], + "unpaired": [], + "Carolyn's": [], + "myopia": ["M"], + "thirstinesser": [], + "moue'ses": [], + "railroaders": [], + "judo's": [], + "pitchforked": [], + "Londonerers": [], + "Graves's": [], + "glisten": ["M", "D", "S", "G"], + "halftone": ["M", "S"], + "nightwear": ["M"], + "Mara's": [], + "overbids's": [], + "striplings": [], + "unperson": [], + "airfoil": ["S", "M"], + "skywriter's": [], + "texturinged": [], + "dactylic'ses": [], + "comparing": [], + "nonspecialists": [], + "difference's": [], + "upgradinged": [], + "itemizeds": [], + "confetti's": [], + "blotchy": ["T", "R"], + "ridiculeds": [], + "bananas's": [], + "qualities": [], + "warranted": ["U"], + "gyms": [], + "Uriel's": [], + "diversionary": [], + "venous": [], + "conspiratorially": [], + "mosquito's": [], + "jiggle": ["D", "S", "M", "G"], + "pertinence's": [], + "reflated": [], + "insularity": ["M"], + "Lupercalia": ["M"], + "supersaturationed": [], + "NAFTA": ["M"], + "Decatur's": [], + "regrind": ["G", "S"], + "marginalized": [], + "epilepsy": ["M"], + "SIDS's": [], + "father's": [], + "obstreperousliness": [], + "ya": [], + "cauterization": ["M"], + "thingamabobs's": [], + "rewarmings": [], + "endearments's": [], + "parkland": [], + "armhole's": [], + "habitualness's": [], + "topknot's": [], + "caiman'ses": [], + "shes": [], + "orthography's": [], + "neuralgic": [], + "dais'ses": [], + "interrupting": [], + "work": ["A", "D", "J", "S", "G"], + "respectability": ["M"], + "Menkent": ["M"], + "summation": ["F", "M", "S"], + "sadly": [], + "Seminoles": [], + "purist's": [], + "THC": [], + "realm": ["M", "S"], + "glazing's": [], + "intranet": ["M", "S"], + "dishy": [], + "Airedale's": [], + "embellishment": ["S", "M"], + "dozy": ["R", "T", "P"], + "breadfruit": ["S", "M"], + "granters": [], + "groundwater's": [], + "axes": [], + "sourer": [], + "anthropoid": ["M", "S"], + "humpback": ["M", "D", "S"], + "underfeeding": [], + "Bose": ["M"], + "keyboarding": [], + "Larousse": ["M"], + "predominately": [], + "accordionists": [], + "detonator's": [], + "buffaloeding": [], + "apron'ses": [], + "offal": ["M"], + "garlicky": [], + "gelcap": ["M"], + "incontestably": [], + "hateful": ["P", "Y"], + "progress'sed": [], + "chesterfields": [], + "defiance": [], + "tensile": [], + "pilloryinged": [], + "gleamingings": [], + "Luddites": [], + "repeatingable": [], + "enchantment": ["E", "M"], + "polkaeds": [], + "scrunchy": ["S", "M"], + "Lycra": ["M"], + "majesties's": [], + "ascot's": [], + "humorists": [], + "bracketed": [], + "toggling": [], + "ingenues's": [], + "Adeline's": [], + "noninclusive": [], + "bafflinged": [], + "tableds": [], + "beard'sed": [], + "turntable": ["S", "M"], + "gashes": [], + "bazooka's": [], + "deb's": [], + "Rasputin's": [], + "maskeds": [], + "mulched": [], + "Wurlitzer's": [], + "Shintoists": [], + "drowsing": [], + "audience": ["M", "S"], + "restrings": [], + "whimper's": [], + "understatement": ["S", "M"], + "killeder": [], + "shopfronts": [], + "tittles's": [], + "finches": [], + "railroader's": [], + "digraphs": [], + "fierierness": [], + "counteroffers": [], + "impostor's": [], + "ethnography": [], + "ruses": [], + "hoofer": [], + "armorer's": [], + "plaza'ses": [], + "Cleo": ["M"], + "continuation's": [], + "cuspid": ["S", "M"], + "Mantle's": [], + "transmuted": [], + "spoon": ["S", "M", "D", "G"], + "guides's": [], + "Bergerac's": [], + "phraseology's": [], + "overcasting": [], + "Sherman": ["M"], + "beefcake'ses": [], + "cosponsoring": [], + "whoosheds": [], + "inoculated": [], + "flagella": [], + "breakfront": ["M", "S"], + "extraction": ["S", "M"], + "insurrection's": [], + "militarism": ["M"], + "redepose": [], + "barbarizeds": [], + "rentals": [], + "innuendo's": [], + "rhetorician's": [], + "Robeson's": [], + "Karamazov": ["M"], + "yahoos": [], + "Gamow": ["M"], + "enters": [], + "sparkled": [], + "hypersensitive": ["P"], + "simians": [], + "knockeder": [], + "dampers": [], + "plumbingings": [], + "Cthulhu's": [], + "Capistrano's": [], + "Australasia's": [], + "ingot's": [], + "frustrationsed": [], + "tab's": [], + "close'sly": [], + "micrometer's": [], + "spreadsheet's": [], + "omnipotence": ["M"], + "interface's": [], + "onscreen": [], + "flicksers": [], + "fork'sed": [], + "Niger's": [], + "raconteur": ["S", "M"], + "uncleaned": [], + "wreck": ["S", "Z", "G", "M", "D", "R"], + "bluefish": ["M", "S"], + "GMAT": [], + "incontestable": [], + "Tao's": [], + "novitiates": [], + "transistors's": [], + "cannon": ["G", "M", "D", "S"], + "module's": [], + "arithmetician's": [], + "Nescafe": ["M"], + "narrations": [], + "altercations": [], + "motherlies": [], + "tariff'ses": [], + "tailpiece": ["S"], + "antithesis's": [], + "Chadwick's": [], + "Neil's": [], + "foremen": [], + "shunts": [], + "tampon's": [], + "felts": [], + "foredooming": [], + "acclaim's": [], + "proffereds": [], + "insinuated": [], + "traipses": [], + "temptresses": [], + "foreshortens": [], + "turduckens's": [], + "thoughtfulliness": [], + "neocon's": [], + "classified's": [], + "sunbeam": ["S", "M"], + "pulpits's": [], + "martingale'ses": [], + "gaucho's": [], + "brownouts's": [], + "spectacles's": [], + "ludicrousliness": [], + "Hyades's": [], + "roughhouseds": [], + "cackler": ["M"], + "soothesers": [], + "omens": [], + "bailiffs": [], + "piccalilli": ["M"], + "veterinary's": [], + "quibbleder": [], + "bejeweled": [], + "blacktop's": [], + "parable'ses": [], + "jog's": [], + "kowtow": ["G", "M", "D", "S"], + "matting's": [], + "monotheists's": [], + "objurgate": ["X", "G", "N", "D", "S"], + "nondepreciating": [], + "discipleship": ["M"], + "lofted": [], + "Chantilly": ["M"], + "committers": [], + "Burt's": [], + "reminisces": [], + "fertilization": ["M"], + "blagging": [], + "wapitis": [], + "closings": [], + "fleets": [], + "wolfsing": [], + "beefy": ["R", "P", "T"], + "sputters": [], + "windproof": [], + "repine": [], + "Crisco": ["M"], + "grownups": [], + "coauthoreding": [], + "excels": [], + "verisimilitude's": [], + "Reunion": ["M"], + "slipknot'ses": [], + "skimpiness's": [], + "toothily": [], + "rudiments's": [], + "compound": ["G", "M", "D", "B", "S"], + "poplars's": [], + "flask's": [], + "bleachers": [], + "raisers": [], + "dimness": ["M"], + "libelersing": [], + "ligneous": [], + "adulating": [], + "transitioning": [], + "furnishings": ["M"], + "circularity's": [], + "sicko": ["M", "S"], + "totting": [], + "manned": ["U"], + "paddock'sed": [], + "hoofsers": [], + "Crayola's": [], + "chubs": [], + "IKEA": ["M"], + "reprogram": [], + "gorgons": [], + "squeaking": [], + "signposted": [], + "viscountess's": [], + "strum": ["S", "M"], + "stoutness's": [], + "tabled": [], + "Theiler": ["M"], + "Franciscan": ["M", "S"], + "perseverance's": [], + "superior": ["M", "S"], + "repairer": ["M"], + "fact's": [], + "Krugerrand's": [], + "milkweed": ["S", "M"], + "shopworn": [], + "pause'sing": [], + "Micmacs": [], + "hazard": ["S", "M", "D", "G"], + "puritanism": ["M"], + "photostat": ["S", "M"], + "journeyer": ["M"], + "quibbles's": [], + "Lakshmi's": [], + "lours": [], + "punctuatingen": [], + "chewing's": [], + "titillatingly": [], + "dieseled": [], + "fate": ["M", "S"], + "biplanes": [], + "underclasses": [], + "locution's": [], + "dotty": ["R", "T"], + "nonprofit'sable": [], + "onrush": ["M", "S", "G"], + "Unitarianism'ses": [], + "derringers's": [], + "sage'sly": [], + "Timbuktu's": [], + "lauding": [], + "masterminding's": [], + "boyfriend": ["M", "S"], + "dastards": [], + "backings": [], + "redevalue": [], + "linear": ["Y"], + "layman": ["M"], + "Battle's": [], + "occult": ["M"], + "browse'sers": [], + "tweeted": [], + "moisturizing": [], + "UN": ["M"], + "Salvadorean's": [], + "shelf's": [], + "suppressors": [], + "Manchester": ["M"], + "parsonage's": [], + "heraldic": [], + "Salerno's": [], + "doodlebugs's": [], + "wailer's": [], + "bulwark's": [], + "jug's": [], + "Flowers's": [], + "astronomical": ["Y"], + "checkoff's": [], + "Zephyrus": ["M"], + "margarine": ["M"], + "enrageds": [], + "fracas'ses": [], + "silkworms": [], + "asphodels": [], + "micrometer'ses": [], + "cowman's": [], + "voracious": ["P", "Y"], + "cumin's": [], + "verifies": [], + "crippler": ["M"], + "spigot's": [], + "promote": ["D", "R", "Z", "G"], + "Daniels's": [], + "fearfully": [], + "Rickie": ["M"], + "hesitatingly": [], + "topper'ses": [], + "changeover's": [], + "unconformable": [], + "fax's": [], + "packs": [], + "evening": ["M"], + "SALT's": [], + "tyrannized": [], + "stagnant": ["Y"], + "averaginged": [], + "absorbency's": [], + "routinelies": [], + "unprofitable": [], + "Reggie's": [], + "hummock": ["S", "M"], + "letting": ["S"], + "practiced": ["U"], + "crossbars's": [], + "rally'sing": [], + "undamaged": [], + "guardersing": [], + "Pakistani's": [], + "Tanya": ["M"], + "misconstructions": [], + "merchandiseder": [], + "sass'sed": [], + "stintings": [], + "brad's": [], + "yield'sed": [], + "multinational": ["S", "M"], + "Tinkertoy's": [], + "insertion": ["A", "M"], + "soileding": [], + "breeding's": [], + "weenier": [], + "point": ["M", "D", "R", "S", "Z", "G"], + "profitless": [], + "bypass's": [], + "baloney's": [], + "polkaed": [], + "glowers": [], + "obligations": [], + "telemarketer": ["S", "M"], + "reamed": [], + "Hennessy": ["M"], + "kettledrum's": [], + "billion": ["M", "H", "S"], + "babblers": [], + "filtratingen": [], + "charm": ["Z", "G", "M", "D", "R", "S"], + "drowning": ["M"], + "ornithologist": ["M", "S"], + "bawled": [], + "brutishly": [], + "dourerly": [], + "Nazism's": [], + "solo's": [], + "avengers": [], + "afresh": [], + "swot": ["S"], + "farmhand": ["S", "M"], + "broody'sness": [], + "aspidistras": [], + "abstruse": ["Y", "P"], + "dollop'sed": [], + "hopsing": [], + "floats's": [], + "accent'sed": [], + "Somalians": [], + "additional": ["Y"], + "friendship's": [], + "debs's": [], + "tweak": ["S", "M", "D", "G"], + "ravine's": [], + "undergoes": [], + "steamroller'sed": [], + "Pearlie": ["M"], + "pimp'sed": [], + "barf'sed": [], + "scuzzier": [], + "barbecues": [], + "bodyguard'ses": [], + "titmouse's": [], + "backwater": ["S", "M"], + "curdlesing": [], + "Malinda": ["M"], + "semiofficial": [], + "maundersed": [], + "perplexities": [], + "Wonder's": [], + "granary's": [], + "sensation": ["M", "S"], + "beechnuts": [], + "quorums": [], + "wank": ["D", "R", "Z", "G", "S"], + "predigested": [], + "chatelaine": ["S", "M"], + "testifying": [], + "Barkley": ["M"], + "checkbooks's": [], + "lech'sed": [], + "bow": ["Z", "G", "S", "M", "D", "R"], + "previewer": [], + "pork'ser": [], + "webmistresses": [], + "technical": ["Y"], + "breakfast": ["M", "D", "G", "S"], + "Taiyuan's": [], + "fastenings": [], + "overcooked": [], + "gravedigger": ["S", "M"], + "proceeding's": [], + "stepladders": [], + "elects": [], + "gonorrheal": [], + "underachieved": [], + "reported": ["Y"], + "chaffs": [], + "departure's": [], + "executioners": [], + "totter'sed": [], + "repatriation's": [], + "plaintiffs": [], + "lacquers": [], + "protactinium's": [], + "greeting's": [], + "Brazzaville": ["M"], + "canteens": [], + "rooftop": ["S", "M"], + "medicate": ["G", "N", "X", "D", "S"], + "hypochondriacs's": [], + "Tamil's": [], + "cray": ["S"], + "heatproof": [], + "sacrosanctness's": [], + "shingles": [], + "tympanist": ["M", "S"], + "Flanders": ["M"], + "recommission": [], + "garnisheeds": [], + "coxswains": [], + "boastful": ["P", "Y"], + "vortex's": [], + "peddler": ["M"], + "fumigant": ["M", "S"], + "grosbeaks": [], + "heatedly": [], + "expiatingen": [], + "Tiber's": [], + "satinwood": ["S", "M"], + "thundercloud": ["M", "S"], + "Margarita's": [], + "Marlboro's": [], + "nitrogen": ["M"], + "rotunda's": [], + "quietuses": [], + "Bastille": ["M"], + "bewitches": [], + "glaziers's": [], + "quelled": [], + "adorably": [], + "Leviathan's": [], + "snores": [], + "unattended": [], + "gnarls's": [], + "reverends's": [], + "formfitting": [], + "fail's": [], + "throne's": [], + "borne": [], + "conveysable": [], + "supervene": ["G", "D", "S"], + "romanticism": ["M"], + "Parcheesi's": [], + "obtainment": ["M"], + "presumption's": [], + "crackersing": [], + "sexed": [], + "hungrinesser": [], + "Costello": ["M"], + "intercept": ["G", "M", "D", "S"], + "Cesar's": [], + "Manuela": ["M"], + "pollinator's": [], + "Puebla's": [], + "rubberneck's": [], + "dependentlies": [], + "metacarpus": ["M"], + "export'sed": [], + "kilt'sed": [], + "intercessions's": [], + "depressives": [], + "authoritarianism": ["M"], + "Glaser": ["M"], + "Rumpelstiltskin's": [], + "clock": ["S", "M", "D", "G"], + "spaghetti's": [], + "dateline's": [], + "distracteding": [], + "chuckleds": [], + "splicer": ["M"], + "masonry": ["M"], + "shone": [], + "teletype": ["S"], + "lowlandsers": [], + "Camacho": ["M"], + "Mandelbrot": ["M"], + "robustness": ["M"], + "faileding": [], + "fauns": [], + "Sufism": ["M"], + "encampsing": [], + "appearing": [], + "cony's": [], + "circumscribing": [], + "Rosendo's": [], + "signifieds": [], + "presidinged": [], + "coaleding": [], + "Gayle": ["M"], + "quasars": [], + "Quaker's": [], + "toad's": [], + "marble": ["M", "G", "D", "S"], + "derailment's": [], + "worsen": ["D", "S", "G"], + "redoubtably": [], + "leafleteds": [], + "reeve": ["G"], + "Vichy": ["M"], + "wold": ["M", "S"], + "knowable": [], + "codifiers": [], + "tentativeness": ["M"], + "ambassador": ["S", "M"], + "Cuchulain": ["M"], + "sleuth's": [], + "casaba's": [], + "selective": ["Y"], + "neighbor's": [], + "belugas": [], + "petted": [], + "diet": ["M", "D", "R", "Z", "G", "S"], + "diapered": [], + "repercussions": [], + "Hargreaves": ["M"], + "haunterers": [], + "rustierness": [], + "Sayers": ["M"], + "sheepfold": ["S", "M"], + "creosoted": [], + "headmaster's": [], + "disembowels": [], + "ricks": [], + "Messiaen's": [], + "waterwheel": ["S", "M"], + "magic": ["S", "M"], + "toppers": [], + "examination": ["A", "M", "S"], + "slayingings": [], + "missioner": ["S", "M"], + "turds": [], + "quip's": [], + "gaberdine's": [], + "tremendous": ["Y"], + "reminder's": [], + "transportation's": [], + "wavelet": ["S", "M"], + "singularity": ["S", "M"], + "gynecological": [], + "domiciliary": [], + "Mir": ["M"], + "Trumbull": ["M"], + "chassis's": [], + "Schubert's": [], + "scull": ["M", "D", "R", "S", "Z", "G"], + "changeableness's": [], + "ponytail's": [], + "Odysseus": ["M"], + "neatnessens": [], + "Hamilcar's": [], + "meanies": [], + "riffing": [], + "anteater": ["M", "S"], + "viburnum's": [], + "Khabarovsk": ["M"], + "ticklishly": [], + "desist": ["S", "D", "G"], + "shopaholic'ses": [], + "oftener": [], + "secretaries": [], + "repeat": ["S", "M", "D", "R", "Z", "G", "B"], + "luxuriated": [], + "typecasting": [], + "thralls's": [], + "know": ["S", "B"], + "squawksers": [], + "staleness": ["M"], + "cricketersing": [], + "lynchings": [], + "infrequency": [], + "withdrawal's": [], + "Faye's": [], + "swizzling": [], + "batesed": [], + "cg": [], + "Kayla's": [], + "cathodes's": [], + "entrust": ["S", "G", "D"], + "thermos'ses": [], + "Friends": [], + "nervier": [], + "Debussy": ["M"], + "forefoot": ["M"], + "ballcock'ses": [], + "rooking": [], + "Alsatian": ["S", "M"], + "Braque's": [], + "tribune'ses": [], + "Othello's": [], + "bareder": [], + "sallowest": [], + "antifascist'ses": [], + "girdle": ["D", "S", "M", "G"], + "Cretans's": [], + "bowleg's": [], + "masticate": ["G", "N", "D", "S"], + "rejuvenation": ["M"], + "cozens": [], + "arrayed": [], + "philanderinged": [], + "snappy": ["T", "R", "P"], + "embarrasseds": [], + "meerschaum's": [], + "off": ["S", "Z", "G", "D", "R", "J"], + "adenoids's": [], + "wishersing": [], + "faffs": [], + "Jagiellon": ["M"], + "aurally": [], + "hording": [], + "assay": ["Z", "G", "M", "D", "R", "S"], + "clone'sing": [], + "strobes": [], + "correctional": [], + "latchesing": [], + "Morales's": [], + "sourceds": [], + "skulker's": [], + "grazes": [], + "great's": [], + "counterparts's": [], + "pianola": ["S"], + "polemics's": [], + "mispronounce": ["D", "S", "G"], + "twit'ses": [], + "booklets": [], + "prison": ["S", "Z", "M", "R"], + "topflight": [], + "moonbeam's": [], + "mescal": ["M", "S"], + "PTA": ["M"], + "tuned": [], + "reassuringly": [], + "obscurity's": [], + "vestment'ses": [], + "dendrite's": [], + "aristocrat": ["S", "M"], + "screenwriting": ["M"], + "brazenlying": [], + "aneurysms": [], + "rendering's": [], + "immolation": ["M"], + "menses": ["M"], + "Kasparov": ["M"], + "dip's": [], + "ferocity": ["M"], + "toolbars's": [], + "Danish's": [], + "crank'sed": [], + "snider": [], + "jesteder": [], + "lyre'ses": [], + "splays's": [], + "jauntiness": ["M"], + "theologies": [], + "Afghan": ["S", "M"], + "calyxes": [], + "probabilities's": [], + "litigiousness": ["M"], + "niobium": ["M"], + "permeable": [], + "legacy's": [], + "girlhood's": [], + "wilderly": [], + "withdrawal'ses": [], + "pats's": [], + "undergrads": [], + "fullest": [], + "Latoya": ["M"], + "regalia's": [], + "Aspidiske": ["M"], + "ailerons's": [], + "renteder": [], + "vilely": [], + "multiplexed": [], + "desalinated": [], + "Mass's": [], + "poultry's": [], + "hurdle": ["D", "R", "S", "M", "Z", "G"], + "Gautama's": [], + "beautifier's": [], + "criersing": [], + "braids": [], + "masheder": [], + "Wilkes": ["M"], + "kiddie's": [], + "divorcements": [], + "sonatinas's": [], + "transcriptions": [], + "respectively": [], + "implying": [], + "needlessliness": [], + "averages": [], + "ladder": ["G", "S", "M", "D"], + "intense": ["Y", "T", "V", "R"], + "cottonwood": ["S", "M"], + "dreamworlds": [], + "sketchpads": [], + "Camelot'ses": [], + "turbocharginged": [], + "stymieds": [], + "asses": [], + "Kharkov": ["M"], + "candidate": ["M", "S"], + "matchstick": ["M", "S"], + "Bridger's": [], + "explanations": [], + "Jewel's": [], + "still's": [], + "chubbiness's": [], + "Powers's": [], + "headboard": ["S", "M"], + "Saturdays": [], + "blogger": ["M", "S"], + "pretty'sness": [], + "orators": [], + "cafeteria'ses": [], + "lapidary": ["S", "M"], + "abusive": ["Y", "P"], + "lunch": ["G", "M", "D", "S"], + "Zoe's": [], + "miffsing": [], + "litchis": [], + "forums's": [], + "emblems's": [], + "adventurism": [], + "Victorianism": [], + "Sandburg's": [], + "whisk's": [], + "overparticular": [], + "Traci": ["M"], + "daces's": [], + "prototypings": [], + "misfortune's": [], + "forbear'sing": [], + "resoleds": [], + "emporiums": [], + "rarers": [], + "exemplifieds": [], + "rookies's": [], + "fairground's": [], + "At's": [], + "turquoises": [], + "alarming": ["Y"], + "Hurst": ["M"], + "hymn's": [], + "firebugs's": [], + "laggardly": [], + "lightness's": [], + "Edison": ["M"], + "Estonians": [], + "statistically": [], + "retardeder": [], + "effigies": [], + "comptroller'ses": [], + "picadors": [], + "storekeepers": [], + "wholeheartedliness": [], + "lilteds": [], + "surrealist": ["S", "M"], + "panicked": [], + "misogyny": ["M"], + "esophagus": ["M"], + "McNeil": ["M"], + "hues": [], + "Lawrence's": [], + "scavenginged": [], + "outpaces": [], + "barbeder": [], + "receptor's": [], + "encircled": [], + "braided": [], + "gender's": [], + "sneersings": [], + "motivation": ["S", "M"], + "totterersing": [], + "rebelliously": [], + "blowy": ["T", "R"], + "nonaggression's": [], + "Ananias": ["M"], + "cold's": [], + "cannelloni's": [], + "delicatessens": [], + "industrialized": [], + "dander": ["M"], + "Saarinen's": [], + "subcontractor'ses": [], + "tweakeding": [], + "berms": [], + "trembleds": [], + "newborns's": [], + "proctored": [], + "extols": [], + "maple": ["S", "M"], + "fattiness's": [], + "pussies's": [], + "meninges": [], + "paths": [], + "veer": ["M", "D", "G", "S"], + "Carol's": [], + "gilt": ["M", "S"], + "smilax's": [], + "opposesing": [], + "lambada": ["M", "S"], + "foppery's": [], + "Borges's": [], + "invariant": [], + "Bernini": ["M"], + "binder": ["M", "S"], + "intimating": [], + "anathema": ["S", "M"], + "Heraclitus's": [], + "mare's": [], + "shipbuilder's": [], + "sleets": [], + "sallied": [], + "abstainersing": [], + "ramekin's": [], + "correspondents": [], + "engorgement": ["M"], + "maintainer": [], + "loursing": [], + "instigateds": [], + "potentiality's": [], + "pieceworkerers": [], + "rotted": [], + "exactest": [], + "disgustingly": [], + "Fischer's": [], + "compilersing": [], + "pessimist": ["S", "M"], + "taxpayer": ["M", "S"], + "prattler's": [], + "sepal's": [], + "accessories": [], + "telekinetic": [], + "ceiling": ["M", "S"], + "calumniator": ["M", "S"], + "Jubal's": [], + "machinated": [], + "clavichords": [], + "Pantagruel": ["M"], + "bobbies's": [], + "recolor": [], + "Valencia's": [], + "inevitability's": [], + "perigees's": [], + "exalted": [], + "cyberbully's": [], + "nonintervention's": [], + "steadying": [], + "pottiers": [], + "McClure": ["M"], + "irretrievable": [], + "cornflour": [], + "calmness's": [], + "scarpsers": [], + "lingings": [], + "positiveliness": [], + "aspirationed": [], + "Sergei": ["M"], + "hottie": ["S"], + "improve": ["G", "B", "D", "S", "L"], + "wattage": ["M"], + "childcare": ["M"], + "keeling": [], + "derriere's": [], + "Macy": ["M"], + "coops": [], + "outbuildings": [], + "accusative's": [], + "hustler's": [], + "pastries's": [], + "Harry's": [], + "mus's": [], + "mead": ["M"], + "calmerly": [], + "Enron's": [], + "abatinged": [], + "controls": [], + "egoism's": [], + "butcheries's": [], + "couturiers": [], + "yow": [], + "selectors": [], + "Kyushu": ["M"], + "surmount": ["D", "G", "S", "B"], + "creosote'sing": [], + "storefront": ["M", "S"], + "skewers": [], + "proofreader's": [], + "malt": ["M", "D", "S", "G"], + "spreadsheets": [], + "pongee": ["M"], + "cubits": [], + "knickknack": ["M", "S"], + "improvidently": [], + "potteries": [], + "investigator's": [], + "oaring's": [], + "phrase": ["A", "G", "D", "S"], + "apprehensiveness's": [], + "Shiloh": ["M"], + "trips": [], + "Cotonou": ["M"], + "Damian": ["M"], + "dissemination": ["M"], + "felonies": [], + "spurn": ["S", "D", "G"], + "waterboarding": ["M"], + "nonconductor'ses": [], + "ethic": ["S", "M"], + "mousy": ["P", "T", "R"], + "airlifting": [], + "caseds": [], + "pilaster": ["M", "S"], + "Melanie's": [], + "impresarios's": [], + "comparative": ["M", "Y", "S"], + "catchalls": [], + "faggots's": [], + "wristwatch": ["M", "S"], + "misgoverns": [], + "cowgirl'ses": [], + "encroacheds": [], + "Frost's": [], + "nubby": ["T", "R"], + "nuances": [], + "Congregationalist'ses": [], + "hew": ["Z", "G", "S", "D", "R"], + "epitome's": [], + "trenches": [], + "pagans": [], + "obi's": [], + "crucibles's": [], + "shorthand's": [], + "Badlands": ["M"], + "grounder's": [], + "spewer's": [], + "Jennings's": [], + "spacecraft's": [], + "orchestra's": [], + "impecuniousness": ["M"], + "sourish": [], + "fieldworkerers": [], + "foreground's": [], + "predeterminer": ["M"], + "triggereds": [], + "Foucault's": [], + "Kandinsky's": [], + "Cm": ["M"], + "diapasons's": [], + "gillion": ["S"], + "Rourke's": [], + "rebury": [], + "lexical": [], + "antacids's": [], + "sewer's": [], + "aliaseds": [], + "SOS's": [], + "sims's": [], + "scenarios": [], + "Kunming": ["M"], + "compatibles": [], + "oviducts": [], + "can't": [], + "presentations's": [], + "gabbled": [], + "Barker's": [], + "Greer's": [], + "Lorraine's": [], + "contradicting": [], + "grayer": [], + "complexion's": [], + "kennelsing": [], + "turnstiles's": [], + "Becky's": [], + "sawfly's": [], + "dense": ["P", "Y", "T", "R"], + "warp'sed": [], + "windlass'ses": [], + "chocoholic's": [], + "caparisons": [], + "deflection'ses": [], + "gorged": [], + "Sergio's": [], + "Nielsen": ["M"], + "fineness": ["M"], + "garb": ["M", "D", "G", "S"], + "stomped": [], + "pokiest": [], + "dray'ses": [], + "credential": ["S", "G", "M", "D"], + "mortal'sly": [], + "nourished": [], + "majority": ["S", "M"], + "Lufthansa": ["M"], + "sassy": ["R", "T"], + "pressings": [], + "excusing": [], + "windsurfer's": [], + "wand": ["M", "S"], + "decelerate": ["G", "N", "D", "S"], + "skews": [], + "foxhuntings": [], + "Parmesan'ses": [], + "floozies": [], + "bootlegging": ["M"], + "Europa's": [], + "ensnared": [], + "enthroned": [], + "unlocking": [], + "crooner's": [], + "gobbles's": [], + "immodest": ["Y"], + "tethering": [], + "ace's": [], + "thingamabob's": [], + "pilaster's": [], + "increase": [], + "investment": ["A", "E", "M"], + "demagogue": ["S", "M"], + "lanthanum": ["M"], + "Clementine's": [], + "mascaraeds": [], + "windbag's": [], + "chirrup": ["G", "M", "D", "S"], + "absenting": [], + "terminable": ["I", "C"], + "stoniest": [], + "hickey": ["S", "M"], + "terrestrial's": [], + "tendentiousliness": [], + "proprietorship's": [], + "undebar": [], + "bewails": [], + "exciteder": [], + "solvable": ["I", "U"], + "hair'sed": [], + "Calder": ["M"], + "nightgown": ["S", "M"], + "Pedro's": [], + "recreant": ["M", "S"], + "desuetude": ["M"], + "slug's": [], + "meme's": [], + "Laramie": ["M"], + "leaflet": ["G", "M", "D", "S"], + "sideswipes's": [], + "command's": [], + "playroom's": [], + "tabernacle's": [], + "assemblage's": [], + "carries": [], + "trouping": [], + "canker'sed": [], + "sweeper": ["M"], + "paved": ["U"], + "arthroscopes's": [], + "bullfight's": [], + "Ho's": [], + "overaggressive": [], + "Gropius": ["M"], + "jelly": ["G", "D", "S", "M"], + "galloped": [], + "synchronize": ["G", "D", "S"], + "imposition": ["M", "S"], + "rogeringed": [], + "Schlitz's": [], + "Averroes": ["M"], + "coaching": [], + "Usenet": ["M", "S"], + "must'ser": [], + "concurrence": ["S", "M"], + "glister": ["D", "S", "G"], + "capitulatesens": [], + "resisting": [], + "hysteria": ["M"], + "hallucinogenics's": [], + "clemency": ["I", "M"], + "redbird": ["S", "M"], + "hexameter's": [], + "kipper'sed": [], + "hitters's": [], + "soliloquies": [], + "Castillo's": [], + "cyclopedias": [], + "etymological": ["Y"], + "gunner's": [], + "flicker's": [], + "brae's": [], + "slanderersing": [], + "hesitated": [], + "hump's": [], + "wilds's": [], + "governed": ["U"], + "crusaded": [], + "calculations": [], + "kilter": ["M"], + "undefrock": [], + "smirking": [], + "yeoman's": [], + "lifebuoys": [], + "squeakiest": [], + "cuckoo's": [], + "tiff's": [], + "leers": [], + "antipersonnel": [], + "dexterity": ["M"], + "encirclement": ["M"], + "revivification": ["M"], + "swindle": ["D", "R", "S", "M", "Z", "G"], + "kneading": [], + "unbiased": [], + "Clement": ["M", "S"], + "malleability": ["M"], + "Cornell's": [], + "heretics": [], + "vibrateds": [], + "Aden's": [], + "bedsores's": [], + "reckon": ["S", "J", "D", "G"], + "Ahriman's": [], + "construct": ["C", "A", "D", "V", "G", "S"], + "promenading": [], + "murmurings": [], + "hon'sed": [], + "shower": ["M", "D", "G"], + "inquisition'ses": [], + "Clinton": ["M"], + "elasticity's": [], + "Remarque's": [], + "livestock": ["M"], + "realness": ["M"], + "wussies": [], + "Frederick": ["M"], + "shifted": [], + "reside": [], + "picaresque": [], + "clemently": [], + "rewarded": ["U"], + "constructed": [], + "fancy's": [], + "emasculating": [], + "NH": [], + "voideds": [], + "candlersing": [], + "starvesings": [], + "felicitateds": [], + "Irtish's": [], + "unstrapping": [], + "whiffs's": [], + "slipcase's": [], + "riving": [], + "automakers": [], + "garrote's": [], + "assaulting": [], + "psychic's": [], + "Verizon": ["M"], + "consulate's": [], + "thralled": [], + "ways's": [], + "immoderately": [], + "supreme": ["Y"], + "Yossarian": ["M"], + "outsources": [], + "nosedives": [], + "reads": [], + "bagful": ["M", "S"], + "imprecise": ["P", "Y", "N"], + "nightstands": [], + "babyhood's": [], + "excreting": [], + "Gestapo": ["S", "M"], + "potholer": [], + "ancientness": ["M"], + "disreappear": [], + "surtax'sed": [], + "agnostics": [], + "scruffiness's": [], + "Menominee's": [], + "tubercle": ["S", "M"], + "rick": ["G", "M", "D", "S"], + "warms": [], + "trebling": [], + "plurals's": [], + "Franz's": [], + "overawesing": [], + "Ashanti": ["M"], + "overstocked": [], + "blousinged": [], + "cliff's": [], + "furnisheds": [], + "cheekiness": ["M"], + "precipitant'ses": [], + "presorteding": [], + "cheater's": [], + "eyeglass": ["M", "S"], + "whopper": ["S", "M"], + "clinched": [], + "retrospecteds": [], + "coaches": [], + "ephemera's": [], + "officially": [], + "Phil's": [], + "inept": ["Y", "P"], + "mannered": [], + "legislation's": [], + "Tb": ["M"], + "tinder's": [], + "amt": [], + "timetable'sing": [], + "liberalliness": [], + "gradualnessly": [], + "Tarkington": ["M"], + "noninflected": [], + "greasy": ["P", "T", "R"], + "achenes": [], + "overdresseds": [], + "findings's": [], + "Nottingham": ["M"], + "atrociousness": ["M"], + "components's": [], + "penetrated": [], + "warblinged": [], + "orallies": [], + "deportee'ses": [], + "impracticable": [], + "endive": ["S", "M"], + "suction": ["S", "M", "D", "G"], + "stockings": [], + "ceasing": [], + "Wolfgang's": [], + "coastersing": [], + "caterwaul's": [], + "rickety": ["R", "T"], + "triglyceride's": [], + "infest": ["G", "D", "S"], + "buggery": [], + "exoskeleton's": [], + "purulent": [], + "corporation": ["I", "M"], + "craves": [], + "outguess": ["G", "D", "S"], + "transcendentalists's": [], + "corresponds": [], + "icecaps's": [], + "pastes's": [], + "transpired": [], + "defalcationsing": [], + "Juana": ["M"], + "tern": ["I", "M", "S"], + "shillelagh": ["M"], + "fife's": [], + "theosophic": [], + "trouncer's": [], + "soulmates's": [], + "usherette's": [], + "mortal": ["M", "Y", "S"], + "lonerser": [], + "manfully": [], + "essential": ["I", "M", "S"], + "jabber'sed": [], + "nauseatinged": [], + "tinctureds": [], + "allude": ["G", "D", "S"], + "Novembers": [], + "spicule": ["M", "S"], + "prompt": ["J", "P", "S", "M", "D", "R", "Y", "Z", "T", "G"], + "hatchways": [], + "bights": [], + "unsweetened": [], + "unvarying": [], + "suppressant": ["M", "S"], + "jugful": ["M", "S"], + "cryosurgery's": [], + "tallerness": [], + "zigzagging": [], + "Angel": ["M"], + "Cid's": [], + "ore's": [], + "soakings": [], + "meme'ses": [], + "splintered": [], + "smooch's": [], + "motivatesing": [], + "elms": [], + "prepositions's": [], + "Tommie": ["M"], + "Buddhism": ["S", "M"], + "Anton's": [], + "moldier": [], + "limits": [], + "Yuan's": [], + "bedbugs's": [], + "fury": ["S", "M"], + "driblets": [], + "concomitantly": [], + "cobbles's": [], + "structure's": [], + "microseconds": [], + "northers": [], + "consideratelication": [], + "estrangement's": [], + "pyloric": [], + "morrow's": [], + "straitened": [], + "whittle": ["Z", "G", "D", "R", "S"], + "mowersing": [], + "inferno": ["M", "S"], + "brickbat": ["S", "M"], + "blusterer's": [], + "codinged": [], + "domiciling": [], + "Velcro'ses": [], + "phones": [], + "traceries's": [], + "opineds": [], + "spitefulness's": [], + "curlierness": [], + "jiffs": [], + "dumplings": [], + "hoaxeder": [], + "boniest": [], + "virologist's": [], + "partnereds": [], + "raucousness's": [], + "straightly": [], + "Thor": ["M"], + "tympanums": [], + "creakeding": [], + "airheads's": [], + "basis's": [], + "ruled": [], + "wonder's": [], + "bronco": ["S", "M"], + "romanticist": ["S", "M"], + "petting": ["M"], + "Earnhardt": ["M"], + "whiteys's": [], + "troupers": [], + "buyouts": [], + "chlorofluorocarbons": [], + "moor's": [], + "hilts": [], + "Roy": ["M"], + "viscountess": ["M", "S"], + "forklift'ses": [], + "bowls": [], + "firework": ["S", "M"], + "isolationist": ["S", "M"], + "martinet's": [], + "transitiveness": ["M"], + "dedisbarred": [], + "hotcakes": [], + "trampoline": ["M", "G", "D", "S"], + "watchmen": [], + "flooreding": [], + "Scranton's": [], + "wooers": [], + "implement'sed": [], + "fountainhead'ses": [], + "mindset'ses": [], + "Potts's": [], + "marooneding": [], + "Whites's": [], + "squadron'ses": [], + "polymorphous": [], + "bourbon": ["S", "M"], + "dragonflies": [], + "chubs's": [], + "computerized": [], + "Venusian's": [], + "jackknifes": [], + "Anzac": ["M"], + "mountebanks": [], + "airstrips's": [], + "boors": [], + "Boston'ses": [], + "aperture's": [], + "Nicaea's": [], + "facetiousliness": [], + "catboat's": [], + "dovetailed": [], + "sternliness": [], + "leaseds": [], + "Suffolk": ["M"], + "damnsable": [], + "award's": [], + "phrased": [], + "ballooning's": [], + "nervously": [], + "yearbook's": [], + "Fatima": ["M"], + "memo": ["M", "S"], + "Filipino": ["M", "S"], + "impoliteness'ses": [], + "trotters's": [], + "hovels": [], + "showery": [], + "looting": ["M"], + "compliant": ["Y"], + "veils": [], + "hyphens": [], + "roarer's": [], + "confirm": ["A", "S", "D", "G"], + "humility's": [], + "sediment": ["M", "S"], + "Romansh": ["M"], + "gourde": ["M", "S"], + "facades": [], + "caustic's": [], + "slendernesser": [], + "Staci": ["M"], + "delftware": ["M"], + "bacterium's": [], + "ytterbium": ["M"], + "overall": ["S", "M"], + "mummification's": [], + "advantaging": [], + "congregation's": [], + "Valletta's": [], + "khaki": ["S", "M"], + "noncombatant": ["M", "S"], + "calamities's": [], + "Harper": ["M"], + "Navajo": ["S", "M"], + "credos": [], + "ferrets": [], + "unscented": [], + "streamlined": [], + "cove'ses": [], + "yuckier": [], + "secretariat": ["M", "S"], + "pavilion's": [], + "McCarty": ["M"], + "hesitates": [], + "fleeing": [], + "triplicatinged": [], + "chickenfeed": ["M"], + "quires": [], + "Hakka": ["M"], + "Olav's": [], + "Wednesdays": [], + "yachtsman's": [], + "honoree": ["S", "M"], + "cornice": ["M", "S"], + "klutziest": [], + "samples": [], + "fluorescence's": [], + "bling": [], + "athlete's": [], + "cowers": [], + "delight": [], + "lech's": [], + "dreariness": ["M"], + "larynx": ["M"], + "subduing": [], + "purples": [], + "bi": ["S", "M", "R", "Z"], + "promises's": [], + "meekness's": [], + "misjudgments": [], + "pylon's": [], + "guffaw's": [], + "neatener": [], + "Bangui": ["M"], + "gougers": [], + "bunch's": [], + "cadets": [], + "ukulele": ["S", "M"], + "circumcision": ["M"], + "grouchier": [], + "rumple": ["D", "S", "M", "G"], + "paying": [], + "snowballing": [], + "unruliness": ["M"], + "ornamentation": ["M"], + "radiators": [], + "comprisinged": [], + "consistence'ses": [], + "vagabonding": [], + "exemplars's": [], + "deviate's": [], + "firebreak": ["S", "M"], + "inoculating": [], + "wheelwright": ["M", "S"], + "Friedan's": [], + "empowers": [], + "irritability's": [], + "Viennese's": [], + "Mitford": ["M"], + "rise'sers": [], + "prostitutingen": [], + "woodblock'ses": [], + "jigsawing": [], + "docilely": [], + "Longfellow": ["M"], + "Yamagata's": [], + "fess": ["F", "K", "G", "S", "D"], + "welshing": [], + "housekeeper": ["M", "S"], + "deuces": [], + "deduction": ["S", "M"], + "pedestal's": [], + "enormousness": ["M"], + "roadblocksing": [], + "rats": [], + "reuncoil": [], + "fraternizinged": [], + "misshapeds": [], + "avail": ["B", "G", "M", "D", "S"], + "turgidity": ["M"], + "ethnographer": ["S"], + "Darrin's": [], + "Vanessa": ["M"], + "arch's": [], + "promenadeds": [], + "moonlighting's": [], + "cawing": [], + "cornice'ses": [], + "lugubriousliness": [], + "animators": [], + "summonses": [], + "retainers": [], + "skyjacking's": [], + "tiebacks": [], + "megacycle's": [], + "bikes's": [], + "prairies": [], + "shoaling": [], + "Talbot's": [], + "Garrison's": [], + "freephone": [], + "mastoid's": [], + "buttonholed": [], + "chasing": [], + "cowards": [], + "underpaying": [], + "transit's": [], + "grocers": [], + "littleness": ["M"], + "Pate": ["M"], + "hood'sed": [], + "vituperate": ["G", "N", "V", "D", "S"], + "Tut": ["M"], + "backdated": [], + "rental": ["S", "M"], + "privations's": [], + "sabbath's": [], + "agglomerate": ["D", "S", "M", "G", "N", "X"], + "Tinkertoy": ["M"], + "Rosenberg's": [], + "sanding's": [], + "nuanced": [], + "changeable": ["P"], + "bowstrings's": [], + "causalities": [], + "carryover'ses": [], + "thefts's": [], + "housecleaning": ["M"], + "statisticians's": [], + "Louise's": [], + "greenhorns's": [], + "gusseteding": [], + "watertight": [], + "tubing": ["M"], + "Garza": ["M"], + "coccyx": ["M"], + "ceiling's": [], + "enamelware's": [], + "Datamation": [], + "Lorena": ["M"], + "sludgiest": [], + "sum": ["S", "M"], + "misappropriateds": [], + "bedside's": [], + "Marple's": [], + "pager": ["M"], + "slangy": ["R", "T"], + "promulgation's": [], + "smatterings": [], + "agrees": [], + "unembarrassed": [], + "shop's": [], + "anythings": [], + "cowl's": [], + "read'ser": [], + "externallies": [], + "derisive": ["P", "Y"], + "communicant's": [], + "ensurersing": [], + "Cretan": ["S", "M"], + "itinerant": ["S", "M"], + "ticklishness": ["M"], + "Steinway": ["M"], + "prettiest": [], + "flute": ["D", "S", "M", "G"], + "recusing": [], + "loyalism's": [], + "sleuths": [], + "Venetians's": [], + "malingereder": [], + "Falkland": ["S", "M"], + "birched": [], + "Yang": ["M"], + "monogamists": [], + "Elvira's": [], + "oratingen": [], + "blues": [], + "scans": [], + "Alamo's": [], + "purposelying": [], + "raunchier": [], + "loftiest": [], + "resonators": [], + "briskest": [], + "Susanne's": [], + "Norbert's": [], + "convertible's": [], + "credulousness": ["M"], + "millrace": ["S", "M"], + "committeemen": [], + "deferring": [], + "wilder": [], + "Gable's": [], + "solitary's": [], + "gratify": ["G", "N", "X", "D", "S"], + "brilliancy's": [], + "ISBN": [], + "jangle": ["D", "R", "S", "M", "Z", "G"], + "freethinking's": [], + "abundant": ["Y"], + "falsie's": [], + "bungings": [], + "scherzos": [], + "furnishes": [], + "wolfhounds": [], + "premolar": ["S", "M"], + "cellular's": [], + "deodorant": ["S", "M"], + "countersink": ["G", "S", "M"], + "enthrallment's": [], + "courser": ["M", "S"], + "delayersed": [], + "pings": [], + "recompense's": [], + "skywriting": ["M"], + "haul's": [], + "terminologies": [], + "superglue": [], + "baptizers": [], + "soulmate's": [], + "krone's": [], + "frolicsome": [], + "stone": ["D", "R", "S", "M", "Z", "G"], + "Diasporas": [], + "melons's": [], + "riptide's": [], + "Easter": ["M"], + "baton'ses": [], + "diametric": [], + "Kaunas's": [], + "kraals's": [], + "neurotic'ses": [], + "impaired": ["U"], + "google's": [], + "cognoscenti": [], + "incursable": [], + "audiophile's": [], + "tolleding": [], + "heinousliness": [], + "Olduvai": ["M"], + "paymasters": [], + "trek": ["M", "S"], + "sanitizing": [], + "Vermeer's": [], + "Dzungaria's": [], + "tbsp": [], + "creasesed": [], + "hungering": [], + "blotchiest": [], + "seductress's": [], + "vulcanization's": [], + "strategies": [], + "overprotecteding": [], + "vibratingen": [], + "anthropologist's": [], + "hourlies": [], + "unmorality": [], + "amalgam": ["S", "M"], + "attributive": ["M", "Y", "S"], + "shrug'ses": [], + "spinneret": ["S", "M"], + "inquisitiveness's": [], + "unjustified": [], + "FD": [], + "generates": [], + "departmental": ["Y"], + "corbel's": [], + "phenom's": [], + "accouterments's": [], + "cottaginger": [], + "disquieting": [], + "clairvoyance's": [], + "drainpipe'ses": [], + "supersizes": [], + "ladderings": [], + "schooners": [], + "scrutinize": ["G", "D", "S"], + "welsh": ["Z", "G", "D", "R", "S"], + "shirkeder": [], + "proprietress": ["M", "S"], + "trick's": [], + "syllogistic": [], + "mimeograph's": [], + "Sjaelland": ["M"], + "predestine": ["D", "S", "G"], + "corned": [], + "bong'sed": [], + "automobiles": [], + "psalm'ses": [], + "hardware's": [], + "arguersing": [], + "tray": ["M", "S"], + "extrusions's": [], + "yobbos": [], + "adder's": [], + "tucker": ["M", "D", "G"], + "understudies": [], + "envious": ["P", "Y"], + "configuration": ["S"], + "cant's": [], + "custard's": [], + "writhed": [], + "pandemic's": [], + "misconstruction's": [], + "mispronounceds": [], + "deemed": [], + "hugeness's": [], + "underling's": [], + "grueling": ["Y"], + "slaughtering": [], + "sway": ["M", "D", "G", "S"], + "transitively": [], + "coronaries": [], + "heftiness": ["M"], + "coshing": [], + "backbiters": [], + "minus": ["M", "S"], + "knight'sed": [], + "clobbereding": [], + "fantasied": [], + "raunchiness's": [], + "Alford": ["M"], + "burnables": [], + "engross": ["G", "L", "D", "S"], + "wooziness": ["M"], + "Post's": [], + "thrashed": [], + "cheekily": [], + "farthermost": [], + "ruinings": [], + "mustered": [], + "Nb": ["M"], + "disbursing": [], + "mistreatings": [], + "Normandy": ["M"], + "advertising": ["M"], + "crushingly": [], + "fizzier": [], + "ventriloquists": [], + "manor's": [], + "gruelings's": [], + "infestations": [], + "weekenders": [], + "Sallust": ["M"], + "slabbing": [], + "toady'sing": [], + "taffrails": [], + "bettered": [], + "maulers": [], + "Kinsey's": [], + "print's": [], + "cotter": ["S", "M"], + "skiveder": [], + "partitives": [], + "punts": [], + "Moreno's": [], + "tessellating": [], + "padlock's": [], + "cravens": [], + "program": ["C", "A", "S"], + "stargazesers": [], + "fulfillment": ["M"], + "assertive": ["Y", "P"], + "mesomorph's": [], + "Barack's": [], + "capsicum": ["S", "M"], + "medication": ["M"], + "Tunisian": ["M", "S"], + "tress'ses": [], + "bigotries": [], + "commencement": ["A", "M"], + "stagnation": ["M"], + "nonwhite's": [], + "clicking's": [], + "hierarchy": ["S", "M"], + "godparents": [], + "filet": [], + "procrastinateds": [], + "commandersing": [], + "stenography's": [], + "panther": ["M", "S"], + "anagrams": [], + "pet's": [], + "drab's": [], + "IT": [], + "roiled": [], + "spareness": ["M"], + "Samantha's": [], + "retaliate": ["D", "S", "G", "N", "V", "X"], + "Jonas": ["M"], + "Philadelphia's": [], + "Revelations's": [], + "dime": ["M", "S"], + "fraudulence's": [], + "penlights's": [], + "ragtags": [], + "partly": [], + "effectiveness": ["I", "M"], + "bonk": ["S", "Z", "G", "D"], + "perfection": ["S", "M"], + "nurseries": [], + "skeptic's": [], + "falconry's": [], + "shortcut'ses": [], + "Arab's": [], + "phylacteries": [], + "hotbox": ["M", "S"], + "accumulator's": [], + "fenced": [], + "faster": [], + "Hillel": ["M"], + "mossy": ["T", "R"], + "gamut's": [], + "aggrieves": [], + "Hoyle's": [], + "stuffs's": [], + "divisiveness's": [], + "mushroomings": [], + "gazer's": [], + "Yugoslav's": [], + "Darwinian's": [], + "transparently": [], + "milksop'ses": [], + "championship's": [], + "hagiographies's": [], + "moss'ses": [], + "dasheder": [], + "exorciseds": [], + "inextinguishable": [], + "feting": [], + "perceptive": ["P", "Y"], + "Darvon": ["M"], + "ecstatically": [], + "bandsing": [], + "enfilading": [], + "computation": ["S", "M"], + "criticizeder": [], + "formulator's": [], + "spouses's": [], + "feted": [], + "taillights": [], + "focus's": [], + "Trevor's": [], + "benumbed": [], + "Epson's": [], + "expositions": [], + "fortieth's": [], + "succincter": [], + "legman": ["M"], + "Semarang": ["M"], + "Harry": ["M"], + "interpolation": ["M"], + "peaky": [], + "elateds": [], + "unquieter": [], + "humor'sed": [], + "oleander's": [], + "adieus": [], + "Sagittarius": ["M", "S"], + "coffeehouse'ses": [], + "Romanians": [], + "moonshot": ["M", "S"], + "barneys": [], + "sawmill'ses": [], + "nougat'ses": [], + "stevedores's": [], + "pipit'ses": [], + "mustang'ses": [], + "charcoal'ses": [], + "seagull'ses": [], + "epigraphy": ["M"], + "endgames": [], + "midyears": [], + "ballcock": ["M", "S"], + "glib": ["Y", "P"], + "percolates": [], + "romanticist's": [], + "Janelle's": [], + "Jock": ["M"], + "friendship": ["M", "S"], + "microgroove's": [], + "Anglicism": ["M", "S"], + "playtime": ["M"], + "Roscoe's": [], + "cubers": [], + "stretchablers": [], + "casters": [], + "juiced": [], + "bunchesing": [], + "reprimanding": [], + "gadolinium": ["M"], + "harmfulness": ["M"], + "crusadeder": [], + "backlash's": [], + "severance": ["S", "M"], + "sniper's": [], + "taproom's": [], + "stripteasers": [], + "engrossment": ["M"], + "skive": ["D", "R", "S", "Z", "G"], + "advisory": ["S", "M"], + "eventually": [], + "Snyder": ["M"], + "dossier": ["M", "S"], + "garbled": [], + "ebbing": [], + "patently": [], + "tang'ses": [], + "matzoth": [], + "ignores": [], + "bandeau": ["M"], + "osculatingen": [], + "run": ["A", "S", "M"], + "hugeliness": [], + "eccentrics's": [], + "fortress'ses": [], + "stoups's": [], + "manta": ["S", "M"], + "turbans": [], + "pizza": ["M", "S"], + "sweeties's": [], + "circumflexes": [], + "marl's": [], + "complement'sed": [], + "Patrica's": [], + "Bowditch": ["M"], + "welling": [], + "chiffon": ["M"], + "overtaxing": [], + "naturalizes": [], + "metastases": [], + "housecoats": [], + "reductive": [], + "hookeds": [], + "settled": [], + "cricks": [], + "bench": ["G", "M", "D", "S"], + "commandment'ses": [], + "springboard'ses": [], + "quitting": [], + "rhombuses": [], + "shushesing": [], + "losinger": [], + "launcher's": [], + "imputeds": [], + "perpendiculars's": [], + "overloadeds": [], + "dispensaries's": [], + "collection'ses": [], + "faltersings": [], + "grimacing": [], + "polonaise's": [], + "Exercycle": ["M"], + "nervous": ["Y", "P"], + "transected": [], + "pasteurizer's": [], + "Newfoundland'ser": [], + "greennesses": [], + "italicizinged": [], + "clamps": [], + "croplands": [], + "lame'sly": [], + "shire'ses": [], + "geckos's": [], + "asynchronously": [], + "encamp": ["L", "S", "G", "D"], + "cruise'sers": [], + "tenders": [], + "illiberal": ["Y"], + "Enrico's": [], + "playbills": [], + "snidest": [], + "initiations": [], + "blueness": ["M"], + "governorship's": [], + "carsickness's": [], + "desktop's": [], + "estuaries": [], + "Slovenians": [], + "stomacherers": [], + "colorlessnessly": [], + "pig'sment": [], + "bigoted": [], + "Kepler": ["M"], + "belongeding": [], + "biology": ["M"], + "oenology": ["M"], + "supermarkets's": [], + "buffering": [], + "menfolk's": [], + "carding": [], + "power": ["M", "D", "S", "G"], + "subpoenaing": [], + "sneaks's": [], + "possible": ["S", "M"], + "versions": [], + "supporter": ["M"], + "wen's": [], + "espionage's": [], + "Refugio": ["M"], + "tuxedos": [], + "jingly": [], + "uncut": [], + "iPod's": [], + "Orphic": ["M"], + "indicted": [], + "waterworks": ["M"], + "lizard'ses": [], + "soigne": [], + "vilifying": [], + "riverboats": [], + "pestle's": [], + "ephemerally": [], + "airwaves": ["M"], + "Aristophanes": ["M"], + "Marley": ["M"], + "tonnes's": [], + "mess's": [], + "dramatizes": [], + "ilk": ["S", "M"], + "toddler's": [], + "arbitragersing": [], + "constitutive": [], + "clearance": ["S", "M"], + "churchman's": [], + "toupees": [], + "minibars": [], + "WTO": [], + "Sean's": [], + "earthedly": [], + "advertiseder": [], + "flatworms's": [], + "advantage": ["E", "D", "S", "M", "G"], + "lumped": [], + "chis's": [], + "moldboard's": [], + "Memphis's": [], + "remodeleds": [], + "fourteenth": ["M"], + "schemes's": [], + "imbuing": [], + "Aguilar": ["M"], + "saved": ["U"], + "voyeurism's": [], + "prowler's": [], + "yeahs": [], + "doodling": [], + "magnetism's": [], + "railroadeder": [], + "monotheism": ["M"], + "commercialization's": [], + "ability's": [], + "foes's": [], + "lutanists's": [], + "webisode's": [], + "nightie": ["S", "M"], + "CNN's": [], + "preemptive": ["Y"], + "canvassing": [], + "redivide": ["G", "D", "S"], + "prospectus'ses": [], + "headbanger": ["S"], + "extrinsically": [], + "existsed": [], + "obviousness": ["M"], + "promise'sing": [], + "unerringly": [], + "undertakersing": [], + "safari": ["S", "G", "M", "D"], + "vibrant": ["Y"], + "eligibility's": [], + "throwaway": ["S", "M"], + "paisleys's": [], + "warneding": [], + "Jezebels": [], + "accruinged": [], + "demerit": [], + "sock's": [], + "finials": [], + "smoke'sers": [], + "Sondheim's": [], + "savers": [], + "darnsers": [], + "Playboy's": [], + "suckered": [], + "cuds's": [], + "quantifier": ["M"], + "vents": [], + "clomp": ["S", "D", "G"], + "crossbreeding": [], + "Janelle": ["M"], + "slyness": ["M"], + "flashcards": [], + "apiarist's": [], + "Pulitzer's": [], + "flavorsing": [], + "archiving": [], + "oligopolies": [], + "building": ["M"], + "extorts": [], + "sabra's": [], + "hyperlinking": [], + "headquarter": ["S", "D", "G"], + "armatures": [], + "diverges": [], + "christology": [], + "exchangeds": [], + "mutilating": [], + "Amerindian'ses": [], + "chivying": [], + "vulgarity": ["S", "M"], + "fuel": ["A", "D", "G", "S"], + "wiveds": [], + "significationsed": [], + "Agamemnon": ["M"], + "rubbishing": [], + "blogged": [], + "caucusesing": [], + "dressage": ["M"], + "abrasiveness": ["M"], + "realm's": [], + "unavailingly": [], + "unswayed": [], + "Mses": [], + "fortune's": [], + "veteran": ["S", "M"], + "feat's": [], + "exterminator's": [], + "subcutaneous": ["Y"], + "Cousteau's": [], + "Kobe's": [], + "Yakut": ["M"], + "managed": [], + "tiringed": [], + "calcining": [], + "secret'sed": [], + "footling'ses": [], + "sarsaparilla": ["M", "S"], + "choppy": ["T", "P", "R"], + "limier": [], + "Watts": ["M"], + "tradespeople": ["M"], + "cockerel's": [], + "anthropologists's": [], + "groundswell's": [], + "Dow's": [], + "shingle's": [], + "degradation": [], + "vocalizing": [], + "curlicued": [], + "tenpin's": [], + "Asimov's": [], + "chatelaines's": [], + "kohlrabi's": [], + "outweighinged": [], + "wink'sed": [], + "plastersers": [], + "Arafat": ["M"], + "Sellers's": [], + "avidly": [], + "irruption's": [], + "hoarded": [], + "liver": ["S"], + "centralization's": [], + "cleansinged": [], + "nadirs's": [], + "marching's": [], + "in's": [], + "spender": ["M"], + "moraines's": [], + "philosophically": [], + "utility": ["S", "M"], + "circumpolar": [], + "cliques's": [], + "taciturnity's": [], + "nasalization's": [], + "lawyers's": [], + "gasping": [], + "obstructionists": [], + "Congressional": [], + "plaice": [], + "caning": [], + "topples": [], + "breastwork'ses": [], + "outfielder": ["M"], + "Faustino": ["M"], + "dud'sed": [], + "parenthesizes": [], + "gazebo's": [], + "syndication's": [], + "studding": ["M"], + "schnauzers's": [], + "alehouse": ["S", "M"], + "openness": ["M"], + "sulfates": [], + "humerus's": [], + "buoy": ["M", "D", "G", "S"], + "spitefulnessly": [], + "codifieder": [], + "scoreboard's": [], + "milk'sed": [], + "Kodiak": ["M"], + "novelized": [], + "gatekeeper": ["M", "S"], + "rotate": ["D", "S", "G", "N", "X"], + "midges": [], + "pacifist's": [], + "cenobites": [], + "Huck's": [], + "Leninist": ["M"], + "ovation's": [], + "fume's": [], + "yea's": [], + "locks": [], + "maturest": [], + "thinner'ses": [], + "lushly": [], + "animateds": [], + "reexamination": [], + "stipends": [], + "snowfalls's": [], + "poolsides": [], + "featherweights": [], + "bongo's": [], + "salient": ["S", "M", "Y"], + "perineum": ["M"], + "Babylonians's": [], + "username": ["M", "S"], + "action": ["A", "S", "M"], + "fricasseeing": [], + "valetudinarian": ["M", "S"], + "Bran": ["M"], + "Freida": ["M"], + "commandos": [], + "exacteder": [], + "Solomon": ["M"], + "nimbly": [], + "squalid": ["P", "T", "R", "Y"], + "maintenance": ["M"], + "ditched": [], + "Btu's": [], + "woeful": ["Y", "P"], + "portmanteau's": [], + "rinsinged": [], + "mammies": [], + "topsail's": [], + "misbehavior": ["M"], + "dramas's": [], + "radiologists": [], + "pleaders": [], + "womb'ses": [], + "entrapment's": [], + "chattel'ses": [], + "unsanctioned": [], + "Berzelius's": [], + "humiliations": [], + "Murcia": [], + "attitudes's": [], + "troubleshoot": ["D", "R", "Z", "G", "S"], + "Major": ["M"], + "undervaluation": ["M"], + "denudation": ["M"], + "Plymouth's": [], + "burgerers": [], + "counterspy": ["S", "M"], + "depravity's": [], + "breakaway": ["M", "S"], + "enunciate": ["D", "S", "G", "N"], + "silencers": [], + "Rusty's": [], + "laundererers": [], + "carpentered": [], + "sleds": [], + "suckering": [], + "lashing's": [], + "crafts's": [], + "guess": ["Z", "G", "B", "M", "D", "R", "S"], + "menial's": [], + "witlessness's": [], + "reactant": ["S", "M"], + "busing": ["M"], + "entreating": ["Y"], + "prizefights": [], + "pooping's": [], + "weepersing": [], + "spaceports's": [], + "overgrowing": [], + "Ebeneezer's": [], + "anode": ["M", "S"], + "thinning": [], + "seraphs": [], + "jabbered": [], + "scratchpads": [], + "pits's": [], + "licensing": [], + "gavels's": [], + "passivizesing": [], + "Canadianism": [], + "greetsed": [], + "sines": [], + "monstrances's": [], + "ribbon's": [], + "soliderly": [], + "fluffiness's": [], + "haversack": ["S", "M"], + "shunt": ["M", "S", "D", "G"], + "jerkily": [], + "axons": [], + "unicycle's": [], + "thingummies": [], + "endocrine's": [], + "zippereding": [], + "trampers": [], + "breathing's": [], + "agencies's": [], + "gratuities": [], + "choosinger": [], + "dotard's": [], + "Langland's": [], + "emigrant's": [], + "welters": [], + "marbling": ["M"], + "promo": ["M"], + "outfits": [], + "graphite": ["M"], + "dogcart's": [], + "excusesable": [], + "expiresing": [], + "eventfully": [], + "Yale's": [], + "Micky's": [], + "mediates": [], + "gargoyle's": [], + "dungeons's": [], + "moisten": ["D", "R", "Z", "G"], + "kilogram": ["S", "M"], + "sorrowfulness": ["M"], + "aesthetics's": [], + "forbids": [], + "oscillatesens": [], + "educators": [], + "ale": ["S", "M", "V"], + "vicars's": [], + "Stevens": ["M"], + "gigolo's": [], + "exon'ses": [], + "escalate": ["C", "D", "S", "G", "N"], + "magnanimously": [], + "eyeopening": [], + "looted": [], + "butlers's": [], + "overpopulates": [], + "internationalize": ["D", "S", "G"], + "shoe": ["M", "S"], + "watering": [], + "nosh's": [], + "friskiest": [], + "photocopy'sers": [], + "muffeds": [], + "Gere's": [], + "cinders": [], + "McCullough": ["M"], + "thronged": [], + "spells's": [], + "toleratingen": [], + "transactions": [], + "footballers": [], + "Marie's": [], + "astrology's": [], + "marcher's": [], + "signing": [], + "lessen": ["G", "D"], + "lotto": ["M"], + "Spitsbergen's": [], + "carol": ["Z", "G", "M", "D", "R", "S"], + "speechifiesing": [], + "Miranda": ["M"], + "Saracen's": [], + "construed": [], + "crucifixions's": [], + "orcs's": [], + "Bethesda": ["M"], + "surplussed": [], + "coin": ["M", "D", "R", "Z", "G", "S"], + "pentameter": ["S", "M"], + "bard's": [], + "reattain": [], + "flux's": [], + "Deleon": ["M"], + "consciousness": ["U", "M"], + "coloratura'ses": [], + "sups": [], + "isometric": ["S"], + "beguilesers": [], + "hoopla": ["M"], + "legalism": ["M", "S"], + "smelterers": [], + "conjunct'ses": [], + "lexicographer'ses": [], + "airliner's": [], + "Puck's": [], + "mickey's": [], + "graze": ["D", "R", "S", "M", "Z", "G"], + "balladry": ["M"], + "thundering's": [], + "disloyalty": [], + "playacted": [], + "Arkansan": ["M", "S"], + "boundless": ["P", "Y"], + "nearsighted": ["Y", "P"], + "tidewaters": [], + "jaundices": [], + "bloop": ["Z", "G", "M", "D", "R", "S"], + "racial": ["Y"], + "highway'ses": [], + "embowered": [], + "parallels": [], + "mensches": [], + "flyspecking's": [], + "inquisitor's": [], + "siftinged": [], + "tubers": [], + "garneringed": [], + "granteder": [], + "Noemi": ["M"], + "solace'sing": [], + "hayride's": [], + "influential": ["Y"], + "spitfire's": [], + "Meighen's": [], + "outspread": ["G", "S"], + "fantasy'sing": [], + "breakaway's": [], + "lettered": ["U"], + "Rutledge's": [], + "vermin": ["M"], + "hotheadedness": ["M"], + "citadels": [], + "linseed": ["M"], + "pleat's": [], + "countenances": [], + "Aires's": [], + "disavowal": [], + "tufting": [], + "byres": [], + "rhizomes": [], + "equanimity": ["M"], + "Bach's": [], + "poaches": [], + "subtext": ["S", "M"], + "droopy": ["T", "P", "R"], + "savvied": [], + "singed": [], + "rearguard's": [], + "alleys": [], + "thoracic": [], + "consistencies's": [], + "quixotic": [], + "moderns": [], + "spongier": [], + "Burris": ["M"], + "anointed": [], + "fawnings": [], + "Bulfinch's": [], + "interrogator's": [], + "imprinterers": [], + "mediator'ses": [], + "brocade": ["D", "S", "M", "G"], + "disparaged": [], + "alumnae": [], + "sartorially": [], + "noticing": [], + "bastionens": [], + "obliviousliness": [], + "stagy": ["R", "T"], + "embodyings": [], + "plasma's": [], + "unwavering": [], + "Browning": ["M"], + "checkup'ses": [], + "misconducting": [], + "undulateds": [], + "warring": [], + "statuary": ["M"], + "planets": [], + "synods": [], + "keepsers": [], + "sixty's": [], + "tropospheres": [], + "absconds": [], + "vole": ["M", "S"], + "grievously": [], + "soluble": ["M", "S"], + "peregrinate": ["D", "S", "X", "G", "N"], + "Waller's": [], + "unprivileged": [], + "blemishing's": [], + "alimentary": [], + "biographic": [], + "scantily": [], + "Doritos": ["M"], + "stupidities's": [], + "Angle'ses": [], + "scuttlebutt": ["M"], + "Netherlands": ["M"], + "varying": ["U"], + "nonstop": [], + "sapling'ses": [], + "sleep": ["S", "M", "R", "Z", "G"], + "fudged": [], + "trainer's": [], + "treadle": ["D", "S", "M", "G"], + "Boolean": ["M"], + "Simpson": ["S", "M"], + "Host's": [], + "plunge'sers": [], + "anathema's": [], + "motorcycle's": [], + "whisk'sed": [], + "Leo's": [], + "salesrooms": [], + "Medea's": [], + "lick'sed": [], + "swankily": [], + "Staci's": [], + "husky": ["P", "R", "S", "M", "T"], + "doc": ["S", "M"], + "Bathsheba's": [], + "trainload'ses": [], + "honed": [], + "antecedent's": [], + "daffodil's": [], + "ragout's": [], + "cadet": ["M", "S"], + "aroma": ["M", "S"], + "professions": [], + "gamma's": [], + "miking": [], + "blanking": [], + "obsequy's": [], + "inflames": [], + "kayakeding": [], + "unprofessionally": [], + "slashing": [], + "psalteries": [], + "Mikhail's": [], + "cudgeling": [], + "diplomatists": [], + "clogged": ["U"], + "peeve's": [], + "formalize": ["G", "D", "S"], + "afterimage's": [], + "tepid": ["Y", "P"], + "milliard": ["M", "S"], + "sacker's": [], + "anoints": [], + "josheder": [], + "finkings": [], + "forefeet": [], + "cursors's": [], + "slandereder": [], + "sandblasteder": [], + "profligate's": [], + "wheelwright'ses": [], + "merciful": ["U", "Y"], + "microcosm'ses": [], + "chino": ["M", "S"], + "expertise": ["M"], + "offerings": [], + "failings": [], + "Carlos": ["M"], + "quietus'ses": [], + "liquidation": ["M"], + "shaver's": [], + "phosphoric": [], + "Bannister": ["M"], + "calcinesing": [], + "gunge": [], + "hooker's": [], + "Wu's": [], + "Kern's": [], + "dislodging": [], + "truss": ["G", "M", "D", "S"], + "apologies's": [], + "Merck": ["M"], + "wick": ["M", "D", "R", "S", "Z"], + "phonograph": ["M"], + "slop's": [], + "Pinatubo's": [], + "Penny's": [], + "frequenteder": [], + "flout'sed": [], + "slipcover": ["M", "S"], + "Asiatics's": [], + "poling's": [], + "Quebecois": ["M"], + "Yuletide's": [], + "enchantings": [], + "lobsters": [], + "harlequins's": [], + "Walloon's": [], + "skyrockets's": [], + "pollards": [], + "fading": ["U"], + "rearwards": [], + "inferior's": [], + "intermarriages's": [], + "Ashlee": ["M"], + "proceedingsed": [], + "drumbeat's": [], + "mismanagement": ["M"], + "Tamils": [], + "foreignness": ["M"], + "Creeks's": [], + "sewage's": [], + "helmeted": [], + "tyrant": ["S", "M"], + "newfound": [], + "exhumesing": [], + "desolatelying": [], + "mayor": ["S", "M"], + "regrettable": [], + "oatcakes": [], + "fanciness": ["M"], + "pore'sing": [], + "doltishness's": [], + "civilizes": [], + "snowboarding's": [], + "poppadoms": [], + "Banting": ["M"], + "Clemons's": [], + "containerizeds": [], + "peck": ["M", "D", "R", "S", "Z", "G"], + "commiserates": [], + "schooner": ["S", "M"], + "fruition": ["M"], + "vine": ["M", "S"], + "Callas's": [], + "cooings": [], + "permeates": [], + "wiseguy": ["S"], + "grassed": [], + "dovetailsing": [], + "funnier": [], + "stockbreeders": [], + "Pyrenees's": [], + "skatersing": [], + "alder": ["M", "S"], + "klutz's": [], + "rupees": [], + "consummated": ["U"], + "opinionens": [], + "scurf": ["M"], + "guesstimateds": [], + "swabbing": [], + "bumptiousnessly": [], + "foraging": [], + "phoneticians's": [], + "monument's": [], + "chains": [], + "livening": [], + "whorl'sed": [], + "accordion'ses": [], + "improvable": [], + "leaser": ["S", "M"], + "Bethune": ["M"], + "biking": [], + "Concord": ["S", "M"], + "truce's": [], + "groan": ["S", "G", "M", "D"], + "arteriosclerosis": ["M"], + "balladry's": [], + "joist's": [], + "paintwork": [], + "Murray's": [], + "crankcases's": [], + "parer": ["M"], + "shortlists": [], + "commitment's": [], + "Seurat": ["M"], + "budge": ["D", "S", "G"], + "multiplexes": [], + "cartoonist's": [], + "oily": ["R", "P", "T"], + "midden'ses": [], + "levitates": [], + "stokers": [], + "points": [], + "extraction's": [], + "haloings": [], + "wuss's": [], + "Quonset's": [], + "Danelaw": ["M"], + "brave's": [], + "recriminationens": [], + "Basho": ["M"], + "shelter's": [], + "duckbills's": [], + "admire": ["B", "Z", "G", "D", "R", "S"], + "forgers": [], + "wizardry's": [], + "omelet'ses": [], + "barrows": [], + "passivizeds": [], + "psychs": [], + "rattlesnakes's": [], + "lot's": [], + "undersized": [], + "nutritiousness's": [], + "excitabled": [], + "smackersing": [], + "housing's": [], + "droves's": [], + "Elsa": ["M"], + "undermentioned": [], + "bigots": [], + "backfiring": [], + "indomitably": [], + "bookbinding": ["M"], + "inveigh": ["G", "D"], + "certifications": [], + "Glass": ["M"], + "expressions": [], + "shortcrust": [], + "Mullikan's": [], + "blithenessly": [], + "Switzerland's": [], + "wast": [], + "qualifiers's": [], + "Pict": ["M"], + "bloaters": [], + "playboy's": [], + "frigidness": ["M"], + "Khrushchev's": [], + "rewashinged": [], + "gleefulliness": [], + "mink's": [], + "rial's": [], + "Olin's": [], + "approaches": [], + "encroachment's": [], + "pinged": [], + "returnable's": [], + "loured": [], + "sneeze's": [], + "rattiest": [], + "yellowingness": [], + "Hamburg'ses": [], + "dramatizeds": [], + "genuinenessly": [], + "unassailable": [], + "career": ["M", "D", "G", "S"], + "Randi": ["M"], + "quangos": [], + "tiredest": [], + "Bernice's": [], + "Pete's": [], + "admittedly": [], + "magnates's": [], + "gastronomes": [], + "breadline": ["M", "S"], + "reacquires": [], + "bolivares": [], + "cuckoos": [], + "supplicant'ses": [], + "amounteds": [], + "proselyted": [], + "contextualizeds": [], + "reels": [], + "intentions": [], + "Gerry": ["M"], + "primly": [], + "Marco": ["M", "S"], + "Topeka's": [], + "abusiveness's": [], + "Elma's": [], + "gazette's": [], + "scaled": [], + "perfumes's": [], + "legends": [], + "thornier": [], + "Carson": ["M"], + "gaberdine": ["S", "M"], + "transfusing": [], + "absorbeds": [], + "broad's": [], + "ingrate's": [], + "heraldeding": [], + "scoreboards's": [], + "argyle": ["M", "S"], + "intensifyingen": [], + "IED": [], + "argumentative": ["P", "Y"], + "teenier": [], + "puke": ["M", "G", "D", "S"], + "heartburn": ["M"], + "convulsing": [], + "distraction": ["S"], + "Gemini'ses": [], + "mealiest": [], + "tombstone'ses": [], + "distillate's": [], + "methodicalliness": [], + "sandals's": [], + "brother'sly": [], + "photographers": [], + "skids": [], + "brewersing": [], + "errors's": [], + "saucier": [], + "sightedly": [], + "unlocks": [], + "showdown": ["M", "S"], + "Gallo": ["M"], + "nib's": [], + "welsheder": [], + "unanimity": ["M"], + "stigmatizes": [], + "fee's": [], + "clash's": [], + "overbear": ["G", "S"], + "plantation": ["M", "S"], + "defoliator'ses": [], + "underrates": [], + "amulets": [], + "peal": ["A", "M", "D", "S", "G"], + "striation'ses": [], + "deliquesceds": [], + "ebullience's": [], + "archipelago'ses": [], + "falls": [], + "befoul": ["D", "G", "S"], + "fishhooks's": [], + "gifts": [], + "raunchy": ["T", "R", "P"], + "smarties": [], + "nodular": [], + "practice's": [], + "logically": [], + "seething": [], + "syllogism": ["M", "S"], + "Newark": ["M"], + "deckhand's": [], + "tentacled": [], + "blotch": ["G", "M", "D", "S"], + "offending": [], + "cuckold": ["M", "D", "S", "G"], + "runty": ["R", "T"], + "maidenhood": ["M"], + "sufficeds": [], + "bibliographical": ["Y"], + "putterer": ["M"], + "strontium's": [], + "governors": [], + "soups": [], + "clan's": [], + "folksiest": [], + "Magog's": [], + "tubule's": [], + "nine": ["M", "S"], + "glassiness's": [], + "hood's": [], + "notes": [], + "blowersing": [], + "taring's": [], + "rent": ["Z", "G", "M", "D", "R", "S"], + "Shelby": ["M"], + "teargas's": [], + "decibels": [], + "disparately": [], + "bagpiperser": [], + "preserversing": [], + "moonwalk": ["M", "S"], + "puncture": ["D", "S", "M", "G"], + "alliteration": ["M"], + "attach": ["A", "L", "G", "D", "S"], + "cloys": [], + "eaglet's": [], + "Hiawatha's": [], + "Geneva": ["M"], + "quails": [], + "bullying": [], + "firefighter's": [], + "romper's": [], + "copingses": [], + "suburbs": [], + "chauffeurs": [], + "leaks": [], + "changeling's": [], + "coagulated": [], + "peseta's": [], + "lionization's": [], + "soap'sed": [], + "vineyard's": [], + "colonizer'ses": [], + "desecrateds": [], + "monkeyshine": ["S", "M"], + "privatizations's": [], + "Cordilleras's": [], + "enzymatic": [], + "whirleding": [], + "December's": [], + "sore's": [], + "regime's": [], + "stimulant": ["S", "M"], + "knobbiest": [], + "Sheratan's": [], + "evoke": ["D", "S", "G"], + "labia": [], + "pollinating": [], + "minuteder": [], + "propagator": ["S", "M"], + "lashes": [], + "Macmillan": ["M"], + "exhibitionist'ses": [], + "shrillsness": [], + "placekicks": [], + "lightfaced": [], + "digress": ["G", "V", "D", "S"], + "autocrat": ["S", "M"], + "Preakness's": [], + "matriculated": [], + "arum": ["S", "M"], + "fusty": ["T", "R", "P"], + "stupor": ["M", "S"], + "thrifts": [], + "sleeting": [], + "Yemeni": ["S", "M"], + "move": ["A", "M", "Z", "G", "D", "R", "S", "B"], + "cutworm'ses": [], + "genealogical": ["Y"], + "sentimentalists": [], + "selectness": ["M"], + "salinity": ["M"], + "shrimp'sed": [], + "dilatingen": [], + "Motown": ["M"], + "Dan": ["M"], + "binge": ["M", "D", "S"], + "purchasing": [], + "ponged": [], + "Michelson's": [], + "balded": [], + "uncleared": [], + "millibar'ses": [], + "interventionist": ["S", "M"], + "fuckers": [], + "whitebait": [], + "sap's": [], + "washouts": [], + "underpays": [], + "zeniths": [], + "buds": [], + "pocking": [], + "viewpoint'ses": [], + "transmuting": [], + "balaclavas": [], + "defectives": [], + "Wiles": ["M"], + "brace's": [], + "jeer's": [], + "grommets": [], + "code": ["C", "Z", "G", "D", "R", "S"], + "irregular's": [], + "cheapening": [], + "sizer": [], + "pancreas'ses": [], + "yesteryear's": [], + "clingersing": [], + "bull's": [], + "calmness": ["M"], + "wright'ses": [], + "retcheds": [], + "parodying": [], + "expiating": [], + "pinpointing's": [], + "chaperon'sed": [], + "markets": [], + "spaciousliness": [], + "fondant'ses": [], + "ossification": ["M"], + "carjacking": ["M"], + "wildcard'ses": [], + "Somoza": ["M"], + "cougars": [], + "curate'sing": [], + "vocal": ["S", "M", "Y"], + "slant's": [], + "Elisha's": [], + "wreathe": [], + "roadsides": [], + "grumbled": [], + "bedclothes": ["M"], + "balks": [], + "gneiss's": [], + "Chardonnay's": [], + "MacDonald's": [], + "Silurian": ["S", "M"], + "judges": [], + "secured": ["U"], + "exhilaratingen": [], + "prong's": [], + "partial": ["M", "Y", "S"], + "breathless": ["P", "Y"], + "dreamboat's": [], + "fjords": [], + "holidays": [], + "window's": [], + "Klimt": ["M"], + "necroses": [], + "perjuresers": [], + "intercepting": [], + "niggas's": [], + "loneliest": [], + "unperceived": [], + "etiology": ["S", "M"], + "llano": ["S", "M"], + "slurped": [], + "Koizumi's": [], + "detention": ["M"], + "uprooting": [], + "Kenyans": [], + "earnest'sly": [], + "buggers": [], + "erotic": ["S"], + "valences": [], + "tippet's": [], + "veracity's": [], + "overplayeds": [], + "upgrade": ["M", "G", "D", "S"], + "Scorpios": [], + "premixes": [], + "tense's": [], + "posting's": [], + "kluges": [], + "parenthesizing": [], + "lithographerers": [], + "frillier": [], + "Burgundies's": [], + "fortifications": [], + "acacias": [], + "superstore'ses": [], + "dragoon's": [], + "bordering's": [], + "manufacturer's": [], + "cerebrating": [], + "Perkins": ["M"], + "grouper": ["M"], + "home'sly": [], + "tips": [], + "concertinaing's": [], + "shipbuilders's": [], + "Cerberus's": [], + "faulting": [], + "unsought": [], + "huzzahed": [], + "hurdler's": [], + "chunder": ["G", "D", "S"], + "nobleman": ["M"], + "sixtieth": ["M"], + "tirelessliness": [], + "monogamist": ["M", "S"], + "Copland's": [], + "photocopier's": [], + "absolve": ["D", "S", "G"], + "scabby": ["P", "T", "R"], + "launching": [], + "pavilion": ["S", "M"], + "Abigail": ["M"], + "dwindle": ["D", "S", "G"], + "Burgundies": [], + "weren't": [], + "drop": ["M", "S"], + "totalities's": [], + "crock": ["S", "M", "D"], + "Senghor": ["M"], + "endangered": [], + "nondeliveries": [], + "bluenose'ses": [], + "idiotically": [], + "retain": ["S", "D", "R", "Z", "G"], + "boozed": [], + "biplane": ["M", "S"], + "pseudoscience'ses": [], + "uncivil": [], + "cairns": [], + "uncountable": [], + "externalization": ["S", "M"], + "granule's": [], + "hunchback": ["S", "M", "D"], + "Kafkaesque": ["M"], + "openwork": ["M"], + "line": ["M", "Z", "G", "D", "R", "S", "J"], + "balling's": [], + "AWOL": ["M"], + "coniferous": [], + "luminescence": ["M"], + "surrender'sed": [], + "emotionalize": ["G", "D", "S"], + "schnozzle": ["S", "M"], + "superfluousness's": [], + "indefinable": [], + "enemas's": [], + "delegation's": [], + "Earl's": [], + "masochists's": [], + "esteem's": [], + "nape's": [], + "thud": ["M", "S"], + "graphed": [], + "emitters": [], + "simulcasting's": [], + "tads": [], + "overbold": [], + "masquerade": ["D", "R", "S", "M", "Z", "G"], + "neap": ["M", "S"], + "sidecars's": [], + "samplersing": [], + "Howell": ["M", "S"], + "toothbrush": ["M", "S"], + "newel's": [], + "bitterer": [], + "luaus": [], + "insult's": [], + "syndicates": [], + "viands": [], + "beholdings": [], + "backrest": ["S", "M"], + "Sharif's": [], + "hornet": ["M", "S"], + "firebomb'sed": [], + "anthropomorphize": [], + "harden": ["Z", "G", "D", "R"], + "windstorm's": [], + "cantileverings": [], + "boomeder": [], + "newspaperwomen": [], + "grandstand'sed": [], + "inkiness": ["M"], + "splints": [], + "cliometrician'ses": [], + "Challenger's": [], + "allay": ["G", "D", "S"], + "prospectuses": [], + "sandbar": ["S", "M"], + "Florine's": [], + "scaffolds's": [], + "piton'ses": [], + "ballooned": [], + "choppinesser": [], + "complexly": [], + "jungle's": [], + "brewpubs's": [], + "Bugzilla's": [], + "tuner's": [], + "matchlocks's": [], + "terrains": [], + "drama": ["S", "M"], + "caulk's": [], + "misconstruing": [], + "holography's": [], + "immovably": [], + "airman": ["M"], + "sanitarium": ["S", "M"], + "buttressed": [], + "wedging": [], + "whinersing": [], + "ketch's": [], + "braises": [], + "angleder": [], + "maybes": [], + "render's": [], + "sleekly": [], + "oligarchical": [], + "purloin": ["S", "G", "D"], + "eviscerated": [], + "nursing": ["M"], + "potholing": [], + "Manitoulin's": [], + "municipal'sly": [], + "rewashed": [], + "rogering": [], + "inaugurations": [], + "sportswriter": ["S", "M"], + "Maharashtra": ["M"], + "ridging": [], + "sassafras's": [], + "fasteneds": [], + "cartload": ["S", "M"], + "wishful": ["Y"], + "Elsie": ["M"], + "pridinged": [], + "extrapolation's": [], + "lour": ["D", "S", "G"], + "Lionel": ["M"], + "arabesque's": [], + "thinkersing": [], + "tercentennials": [], + "Bavarian's": [], + "pruner": ["M"], + "chalks": [], + "pollinate": ["G", "N", "D", "S"], + "creel": ["S", "M"], + "abdicates": [], + "fasting": [], + "Khorana": ["M"], + "sq": [], + "lumberyards": [], + "elocutionist": ["S", "M"], + "overarmsed": [], + "particularizing": [], + "monkeyshines": [], + "molt'sed": [], + "wagoner's": [], + "shanks": [], + "legislator's": [], + "packaginged": [], + "hubcaps's": [], + "cropland's": [], + "peruke'ses": [], + "dryinged": [], + "pentathletes": [], + "funny": ["T", "P", "R", "S", "M"], + "quitclaim": ["M", "S"], + "unplanned": [], + "pinnies": [], + "serial's": [], + "intrans": [], + "Mogadishu's": [], + "sundowns's": [], + "bandages's": [], + "piddled": [], + "lagging's": [], + "miffs": [], + "rarefying": [], + "berated": [], + "rantings": [], + "chafe": ["G", "D", "S"], + "fezzes": [], + "wallet": ["M", "S"], + "poi's": [], + "taffrails's": [], + "blackened": [], + "Kara": ["M"], + "accept": ["D", "S", "B", "G"], + "jousting's": [], + "ennui": ["M"], + "fattens": [], + "cousin's": [], + "harlotry's": [], + "evangelical's": [], + "nonspeaking": [], + "felted": [], + "mellow": ["P", "T", "G", "D", "R", "Y", "S"], + "lossless": [], + "cease's": [], + "compared": [], + "beautifieder": [], + "assureds": [], + "microloans": [], + "clambakes": [], + "appeal'sed": [], + "Epstein": ["M"], + "clergyman": ["M"], + "grillings": [], + "expertise's": [], + "pasture": ["D", "S", "M", "G"], + "junketeers": [], + "helices": [], + "hunk": ["M", "R", "S", "Z"], + "endows": [], + "protagonists's": [], + "sway's": [], + "ramp's": [], + "ocean's": [], + "caparisonings": [], + "piddleds": [], + "theoreticians's": [], + "Antietam": ["M"], + "landlord'ses": [], + "exigence's": [], + "cut": ["T", "S", "M", "R"], + "patsies's": [], + "habitation'ses": [], + "Grozny": [], + "quadruplicateds": [], + "Ucayali": ["M"], + "sealer": ["S", "M"], + "Breakspear's": [], + "kibbutz": ["M", "S"], + "comaker": ["S", "M"], + "congregation": ["M"], + "pone's": [], + "Bowers": ["M"], + "limelight": ["M"], + "intaglio": ["M", "S"], + "pharmaceutics": ["M"], + "Ursuline's": [], + "look": ["M", "D", "R", "S", "Z", "G"], + "duplicates": [], + "ancillaries's": [], + "Tunis": ["M"], + "retie": [], + "vets's": [], + "savoy": ["M", "S"], + "orison's": [], + "overspreads": [], + "hist": [], + "Allison's": [], + "mottled": [], + "hemostats": [], + "seined": [], + "proscription's": [], + "endemic's": [], + "aria": ["S", "M"], + "Bernanke's": [], + "underpass's": [], + "exercising": [], + "burdening": [], + "tour's": [], + "croak": ["S", "M", "D", "G"], + "epicurean": ["M", "S"], + "touted": [], + "wormholes": [], + "panhandlersing": [], + "irreverence's": [], + "extension's": [], + "flurry's": [], + "massacreds": [], + "Jamestown's": [], + "lark'sed": [], + "lousiest": [], + "hosannas": [], + "champed": [], + "flowerbed's": [], + "scrape": ["S", "M"], + "recreation": [], + "anticommunist": ["S", "M"], + "corruptible": ["I"], + "crusade": ["M", "Z", "G", "D", "R", "S"], + "Uzbek's": [], + "inequitable": [], + "confidersing": [], + "impresario": ["S", "M"], + "rooted": [], + "slipstream's": [], + "despicably": [], + "Gail": ["M"], + "amasses": [], + "insurrections's": [], + "Devi's": [], + "texture'sing": [], + "garish": ["P", "Y"], + "meadowlarks": [], + "flatfoots's": [], + "Newsweek's": [], + "vertebra": ["M"], + "Geronimo's": [], + "gleamings": [], + "helpline's": [], + "shrewdliness": [], + "rationale's": [], + "roomers": [], + "overrating": [], + "inducing": [], + "punting's": [], + "Nickolas's": [], + "waling": [], + "Hebe's": [], + "pragmatism's": [], + "inebriating": [], + "roacheds": [], + "moniker's": [], + "laundering": [], + "tracing": ["M"], + "conk's": [], + "muskmelons": [], + "laughs": [], + "detoxification": ["M"], + "narrator": ["S", "M"], + "Mogul's": [], + "reprimanded": [], + "nimbleness's": [], + "barkeep's": [], + "Jeri": ["M"], + "speculation": ["M"], + "vacuous": ["Y", "P"], + "endoscopic": [], + "Rwanda's": [], + "enfeeblement": ["M"], + "odderly": [], + "ontological": [], + "Corneille": ["M"], + "straddlersing": [], + "donging": [], + "luxuriation's": [], + "Jimmy's": [], + "chamois's": [], + "Delphic": ["M"], + "pluvial": [], + "alertnesses": [], + "O'Higgins": ["M"], + "tsp": [], + "Rowe's": [], + "pitifully": [], + "magically": [], + "Shinto's": [], + "contort": ["G", "D"], + "bemoans": [], + "noshesers": [], + "dynasties's": [], + "electorate'ses": [], + "hectare": ["S", "M"], + "renegers": [], + "unsound": ["P", "R", "Y", "T"], + "fathersing": [], + "carbohydrates": [], + "hugest": [], + "Bialystok's": [], + "stemmed": [], + "overemphasize": ["G", "D", "S"], + "theatricals's": [], + "yield's": [], + "borzois": [], + "fruitfulness's": [], + "Izanami": ["M"], + "basketball'ses": [], + "Xmases": [], + "hulks": [], + "stagnancy": ["M"], + "snakiest": [], + "trichina": ["M"], + "filleding": [], + "nondelivery": ["S", "M"], + "Piaget's": [], + "Yuma's": [], + "okaying": [], + "canary's": [], + "detachment's": [], + "simulcast's": [], + "Auschwitz": ["M"], + "kielbasa": ["M", "S"], + "resisteder": [], + "burgundy's": [], + "Shoshone": ["S", "M"], + "doorplate's": [], + "Ovid's": [], + "gladiolus": ["M"], + "geezer's": [], + "Rn's": [], + "Olympus": ["M"], + "remnant": ["M", "S"], + "Juno's": [], + "collide": ["D", "S", "G"], + "interact": ["S", "G", "V", "D"], + "hammer": ["M", "D", "R", "S", "J", "Z", "G"], + "stew": ["M", "D", "G", "S"], + "singes": [], + "whiskey": ["M", "S"], + "showier": [], + "clerks": [], + "superfluous": ["Y", "P"], + "wakes": [], + "uptempo": [], + "savagingness": [], + "lifesaving": ["M"], + "sheathes": [], + "xxxvi": [], + "platform's": [], + "ligateds": [], + "paucity": ["M"], + "see": ["R", "S", "M", "Z"], + "uncompromising": ["Y"], + "Nootka": ["M"], + "reputeds": [], + "hauteur's": [], + "engineer": ["M", "D", "G", "S"], + "whereas": [], + "Haidas's": [], + "nomad": ["S", "M"], + "negligence's": [], + "watch'sed": [], + "cotter's": [], + "karate": ["M"], + "effigy's": [], + "Pompeian": [], + "flourish": ["G", "M", "D", "S"], + "moshes": [], + "fragmentation's": [], + "Bengals's": [], + "load": ["A", "U", "G", "S", "D"], + "purifier": ["M"], + "scrapsers": [], + "calamity": ["S", "M"], + "bicarbonate'ses": [], + "Toledo": ["M", "S"], + "wrongheadedness": ["M"], + "Dollie's": [], + "deary's": [], + "outfalls": [], + "decapitator'ses": [], + "resent": ["L", "S", "D", "G"], + "spieleding": [], + "stoves": [], + "Donahue": ["M"], + "Hellenize": ["M"], + "inning's": [], + "manuring": [], + "adze's": [], + "precarious": ["P", "Y"], + "Scranton": ["M"], + "casheds": [], + "terabit": ["S", "M"], + "annunciation": ["S", "M"], + "Lexington": ["M"], + "slob's": [], + "malefic": [], + "deceits": [], + "photometer": ["M", "S"], + "spicinesser": [], + "untold": [], + "refereeing": [], + "huarache's": [], + "wriggled": [], + "flounces's": [], + "manga's": [], + "rebuke'sing": [], + "reproaching": [], + "stare": ["S", "M"], + "junco": ["S", "M"], + "Andropov": ["M"], + "Dec's": [], + "sandwiching": [], + "Lesseps": ["M"], + "Belgrade": ["M"], + "recopy": [], + "spiraled": [], + "Ventolin's": [], + "cetacean": ["M", "S"], + "company": ["S", "M"], + "elev": [], + "canes": [], + "Stradivari": [], + "roughlications": [], + "architecturally": [], + "brownout": ["S", "M"], + "plexus's": [], + "broadswords": [], + "mannerlies": [], + "paradigm's": [], + "Mex": [], + "Massey's": [], + "tractability": ["I", "M"], + "humdrum": ["M"], + "biodegrade": ["D", "S", "G", "B"], + "collectivizesing": [], + "neighborhood's": [], + "echelon": ["S", "M"], + "surefire": [], + "contretemps's": [], + "overcast": ["M", "G", "S"], + "diluting": [], + "warbonnets's": [], + "buttermilk's": [], + "Scottish's": [], + "peculator's": [], + "forswearsing": [], + "officiant": ["S", "M"], + "Manhattans": [], + "session's": [], + "fashionably": ["U"], + "petabyte'ses": [], + "Ester's": [], + "sliced": [], + "onus": ["M", "S"], + "Negro'ses": [], + "travelersing": [], + "unaccounted": [], + "arachnophobia": [], + "gadgetry's": [], + "Avalon": ["M"], + "nosinged": [], + "footwork": ["M"], + "terabyte'ses": [], + "Khorana's": [], + "relic'ses": [], + "riposteds": [], + "unaccustomed": [], + "worries's": [], + "nitpickers": [], + "exclusive'sly": [], + "idolaters's": [], + "smock": ["S", "M", "D", "G"], + "subtropic": ["S"], + "manors's": [], + "beatable's": [], + "moussaka": ["S"], + "canebrake": ["M", "S"], + "imbued": [], + "smokeless": [], + "Doreen": ["M"], + "HIV's": [], + "Beauvoir's": [], + "indelicate": [], + "ramekins": [], + "pretzels": [], + "selectman's": [], + "database's": [], + "calyx": ["M", "S"], + "obstructively": [], + "Aurelio": ["M"], + "Knievel's": [], + "emulsifieder": [], + "muscat'ses": [], + "kestrel": ["M", "S"], + "Eskimo'ses": [], + "couple": ["U", "C", "G", "S", "D"], + "neoconservatives's": [], + "authorship": ["M"], + "harmfully": [], + "caesura's": [], + "Rousseau's": [], + "osculatesens": [], + "everlastinglies": [], + "touchdown": ["S", "M"], + "mortareds": [], + "aphorism's": [], + "Yugo": ["M"], + "servile": [], + "embitterment": ["M"], + "communes": [], + "clattered": [], + "Ilyushin's": [], + "Bernadette's": [], + "neuron'ses": [], + "incorruptibly": [], + "lithesome": [], + "Klein": ["M"], + "elephants's": [], + "schoolyards's": [], + "baleen's": [], + "savageries": [], + "essayersing": [], + "Maisie's": [], + "afterburner'ses": [], + "nationally": [], + "superintendency's": [], + "missus'ses": [], + "Schrieffer's": [], + "hostess": ["M", "D", "S", "G"], + "digresseds": [], + "soprano": ["M", "S"], + "housekeeper's": [], + "rappers": [], + "Beauregard's": [], + "expansions's": [], + "Ashikaga's": [], + "puller's": [], + "radiation": ["M"], + "handiwork": ["M"], + "Yaounde's": [], + "thinness": ["M"], + "americium": ["M"], + "Turkestan": ["M"], + "diagonals": [], + "apostle'ses": [], + "cravats's": [], + "genies": [], + "slab's": [], + "harmlessnessly": [], + "species's": [], + "executors": [], + "nixes": [], + "evident": ["Y"], + "counterpointeding": [], + "muralists": [], + "cluster": ["M", "D", "S", "G"], + "lawn": ["M", "S"], + "technobabble": [], + "Saussure": ["M"], + "underpin": ["S"], + "noon's": [], + "Thelma's": [], + "peephole": ["M", "S"], + "netbook'ses": [], + "modifieder": [], + "junction": ["F", "I", "S", "M"], + "causeless": [], + "progression'ses": [], + "puzzling": [], + "Bonnie": ["M"], + "Thimphu": [], + "unwariness": [], + "vindicationsed": [], + "Europe's": [], + "fast'sed": [], + "whiffs": [], + "peculiarly": [], + "Corinthians": ["M"], + "marshals": [], + "sandcastle's": [], + "charging": [], + "designs": [], + "tipple'sers": [], + "dwellersing": [], + "Manchester's": [], + "idolatresses": [], + "hammy": ["T", "R"], + "arrogating": [], + "sued": [], + "pollinators's": [], + "chumminess's": [], + "dealers": [], + "wiglets's": [], + "refractsing": [], + "irruption": ["S", "M"], + "skyline's": [], + "Elizabethans": [], + "SA": [], + "dispatchers": [], + "institutionalization's": [], + "emulsifier's": [], + "coherence": ["I", "M"], + "Kropotkin's": [], + "ungracious": [], + "foxhound's": [], + "mumbletypeg": ["M"], + "qwerty": [], + "woodcarvers": [], + "liven": ["S", "G", "D"], + "foresteds": [], + "Egyptology": ["M"], + "patriot's": [], + "genies's": [], + "pathogenic": [], + "Hanukkah": ["M"], + "university's": [], + "Spahn": ["M"], + "squawking's": [], + "jarred": [], + "baptizinged": [], + "latchkeys": [], + "ordinaries": [], + "godmothers's": [], + "premierships": [], + "mystifyingen": [], + "groovier": [], + "pinwheel": ["G", "S", "M", "D"], + "showgirl'ses": [], + "Hindi": ["M"], + "captaineding": [], + "eradicates": [], + "bestrewing": [], + "spindles": [], + "Shetlands's": [], + "drudgeds": [], + "tranquilly": [], + "blandly": [], + "Turkic": ["M", "S"], + "rivulet": ["M", "S"], + "confident": ["Y"], + "Liz's": [], + "standardizesing": [], + "minority": ["S", "M"], + "Sicilians's": [], + "Katie's": [], + "limos": [], + "DVR": ["S", "M"], + "translate": ["D", "S", "G", "N", "B", "X"], + "girdled": [], + "Logan": ["M"], + "detoxifyingen": [], + "Cecil": ["M"], + "dinosaurs's": [], + "gobbet's": [], + "belly": ["G", "D", "S", "M"], + "McLean's": [], + "McFadden": ["M"], + "gaskets's": [], + "gunmetal": ["M"], + "impartial": ["Y"], + "cowmen": [], + "moonlight'sed": [], + "vivaciously": [], + "predictably": ["U"], + "thimble": ["M", "S"], + "Bernhardt's": [], + "chitchats": [], + "mystic": ["S", "M"], + "scribble'sers": [], + "placard'sed": [], + "filinged": [], + "peculiarities's": [], + "underhand": [], + "capriciousnessly": [], + "sinking": [], + "truckers": [], + "anagram's": [], + "culturing": [], + "Aristarchus's": [], + "successes": [], + "toeholds": [], + "Lodz's": [], + "succulent's": [], + "demanded": [], + "hagiographies": [], + "Zambian's": [], + "puled": [], + "tenement": ["S", "M"], + "drywall": ["M"], + "plusherly": [], + "dismemberment": ["M"], + "trencher'ses": [], + "app": ["S", "M"], + "stoutly": [], + "clamoring's": [], + "bimetallic": ["S", "M"], + "raconteurs's": [], + "catastrophe'ses": [], + "fruitfully": [], + "orbit'sed": [], + "ring": ["Z", "G", "M", "D", "R", "J"], + "Key's": [], + "shakeout": ["M", "S"], + "preordaineds": [], + "ruefulness": ["M"], + "bisexuals": [], + "hay'sed": [], + "slight'sed": [], + "valves's": [], + "polios": [], + "accededs": [], + "zillions": [], + "prigs": [], + "viruses": [], + "Peck": ["M"], + "disinterred": [], + "Burton's": [], + "chairwomen": [], + "tinker's": [], + "Taiwan's": [], + "guano's": [], + "soupiest": [], + "overreaches": [], + "dishwater": ["M"], + "carillon's": [], + "hurl's": [], + "fidget": ["S", "G", "M", "D"], + "cajolersing": [], + "monomers": [], + "intros's": [], + "enrichmenting": [], + "optometry": ["M"], + "erect": ["P", "S", "G", "D", "Y"], + "decapitated": [], + "Wolff's": [], + "strummed": [], + "handouts's": [], + "Darjeeling": ["M"], + "embower": ["S", "G", "D"], + "Stendhal": ["M"], + "now": ["M"], + "rocketry's": [], + "montage": ["S", "M"], + "relatingen": [], + "ladle's": [], + "curse'sing": [], + "strikeout'ses": [], + "Jenny": ["M"], + "swindled": [], + "distress": ["D", "G"], + "glance": ["D", "S", "M", "G"], + "impounding": [], + "Bayeux": ["M"], + "crazies": [], + "traumatizes": [], + "pedophilia": [], + "activatings": [], + "while": ["D", "S", "M", "G"], + "group": ["J", "S", "Z", "G", "M", "D", "R"], + "sexagenarians's": [], + "parrot's": [], + "diagrammatically": [], + "tastings's": [], + "overpopulateds": [], + "dowsed": [], + "cygnet's": [], + "Finnish": ["M"], + "halberds's": [], + "outback'ses": [], + "Oshkosh": ["M"], + "fable's": [], + "butterball's": [], + "stripteasing": [], + "sniffle": ["D", "S", "M", "G"], + "shoals": [], + "moonshot'ses": [], + "diagonals's": [], + "supplier's": [], + "abatementing": [], + "masochists": [], + "moralized": [], + "Laurasia's": [], + "quadruped": ["M", "S"], + "pantywaists's": [], + "woods's": [], + "bracer": ["M"], + "racketeers": [], + "tenderizeder": [], + "bullheadeds": [], + "juicers": [], + "sonnies's": [], + "exoneration": ["M"], + "jamboree's": [], + "prelates's": [], + "refrigerateds": [], + "jewelry": ["S", "M"], + "Buddha": ["S", "M"], + "benevolences's": [], + "chiropodists": [], + "hex's": [], + "cravenness": ["M"], + "navigator'ses": [], + "Attlee's": [], + "edict's": [], + "total": ["G", "S", "M", "D", "Y"], + "muscly": [], + "weasels": [], + "geophysicist's": [], + "Purim": ["M", "S"], + "mindlessly": [], + "deceitfulness": ["M"], + "Brownian": ["M"], + "hiya": [], + "frustratingly": [], + "kinsman's": [], + "haulier": ["S"], + "calcine": ["D", "S", "G"], + "corneas's": [], + "charter's": [], + "quaver's": [], + "xis": [], + "intimidatingen": [], + "glacier": ["M", "S"], + "insurances": [], + "Fushun's": [], + "dispatcher's": [], + "beholderers": [], + "undertones": [], + "psychosis's": [], + "Tarkenton": ["M"], + "weedkillers": [], + "pocketbook": ["S", "M"], + "Yang's": [], + "seismologic": [], + "downtrends": [], + "fleshesly": [], + "encourage": ["D", "S", "L", "G"], + "fastness'ses": [], + "pursed": [], + "rationalizations": [], + "schema": [], + "domain": ["S", "M"], + "Reasoner's": [], + "furtiveness's": [], + "complete": ["P", "Y", "T", "G", "N", "X", "D", "R", "S"], + "lazying": [], + "kinsfolk's": [], + "Carrie": ["R", "M"], + "obeyed": [], + "stipend": ["S", "M"], + "Wyomingites": [], + "Flatt": ["M"], + "earrings's": [], + "telecaster's": [], + "Swammerdam's": [], + "tricentennials": [], + "crackle": ["D", "S", "J", "M", "G"], + "thicket": ["M", "S"], + "gussieds": [], + "waterbed": ["M", "S"], + "minuend'ses": [], + "prescription": ["S", "M"], + "asshole'ses": [], + "complaineder": [], + "unfrozen": [], + "redcoats": [], + "Jimmie's": [], + "flamethrowers's": [], + "nosier": [], + "hyperactivity": ["M"], + "studly": ["R", "T"], + "offering": ["M"], + "Weiss's": [], + "Quakers": [], + "sidetracks": [], + "monogamist's": [], + "grandchildren": ["M"], + "Tampa's": [], + "allowances's": [], + "Audi": ["M"], + "semicircular": [], + "frighting": [], + "Tuesday": ["M", "S"], + "rulersing": [], + "trailblazer'ses": [], + "deviance's": [], + "worldly": ["U", "T", "P"], + "Chimera's": [], + "squabbled": [], + "wheals": [], + "less'sen": [], + "waterfront's": [], + "Joyner": ["M"], + "jelled": [], + "Andy's": [], + "colonialism's": [], + "unmoved": [], + "smurf": ["S"], + "trichinae": [], + "groundersing": [], + "pugnaciousness": ["M"], + "lapse": ["A", "K", "G", "M", "S", "D"], + "wisinged": [], + "doctoring": [], + "struggleds": [], + "pinata": ["M", "S"], + "gladly": [], + "diploid": ["S", "M"], + "bloodstains": [], + "capsuled": [], + "phoebe's": [], + "addressees": [], + "quarantine": ["M", "G", "D", "S"], + "chlorination": ["M"], + "deviltry's": [], + "watchmaking's": [], + "pure": ["P", "Y", "T", "R"], + "mochas's": [], + "onomatopoeia's": [], + "Deming": ["M"], + "harassment's": [], + "ashcan": ["M", "S"], + "talk'sed": [], + "participants's": [], + "simulator": ["E", "M", "S"], + "hurleder": [], + "denudinged": [], + "Fri": ["M"], + "cosmos'ses": [], + "moss's": [], + "messaging": [], + "spireas": [], + "hypertrophies's": [], + "decelerators's": [], + "jogs's": [], + "bumped": [], + "condemnsed": [], + "droves": [], + "uncommon": ["T"], + "snuffle's": [], + "trailers": [], + "scrogs": [], + "incarcerateds": [], + "brigands": [], + "commentary's": [], + "huff": ["M", "D", "S", "G"], + "Tammuz's": [], + "lack'sed": [], + "Nationwide's": [], + "nix": ["G", "M", "D", "S"], + "monopolizes": [], + "partnerships": [], + "infringement's": [], + "antibodies's": [], + "copes": [], + "drooled": [], + "enshroudeding": [], + "pub's": [], + "pacifism": ["M"], + "Bellini's": [], + "dactyls": [], + "waterbed's": [], + "filtrated": [], + "Mixtec's": [], + "leaderships": [], + "tunic": ["S", "M"], + "flatbeds": [], + "Visayans": ["M"], + "proneness": ["M"], + "eccentric": ["S", "M"], + "Matt": ["M"], + "aerosol'ses": [], + "dryness": ["M"], + "Pegasus's": [], + "sugariest": [], + "collapseds": [], + "spud": ["M", "S"], + "overseers": [], + "Windsor's": [], + "kleptomaniac's": [], + "Ramadan": ["M", "S"], + "doorstep's": [], + "sod": ["S", "M"], + "blockadersing": [], + "requisition": ["G", "M", "D"], + "Wagnerian's": [], + "structure": ["A", "G", "D", "S"], + "literate'sly": [], + "intents": [], + "mossbacks's": [], + "supplement'sed": [], + "ultras": [], + "receivables": ["M"], + "wursts": [], + "compost": ["S", "G", "M", "D"], + "specialization's": [], + "Melendez": ["M"], + "misfeatures": [], + "exporter": ["M"], + "nonhereditary": [], + "Barth's": [], + "tremble": ["D", "S", "M", "G"], + "prang": ["D", "S", "G"], + "Hohokam": ["M"], + "sawbuck": ["M", "S"], + "pickleds": [], + "slash's": [], + "entrancement's": [], + "drivelsers": [], + "offer": ["J", "G", "M", "D"], + "go's": [], + "artwork'ses": [], + "repeat'sed": [], + "raspberry": ["S", "M"], + "Shockley": ["M"], + "diplopia": [], + "bursar": ["S", "M"], + "crystal": ["S", "M"], + "truisms": [], + "Dalian": ["M"], + "Linwood's": [], + "epoxies's": [], + "artery": ["S", "M"], + "snicked": [], + "syphilitics": [], + "trundle": ["M", "Z", "G", "D", "R", "S"], + "Euterpe": ["M"], + "Pennsylvanians": [], + "exertion's": [], + "archaeologist's": [], + "savages": [], + "comings": [], + "Abby": ["M"], + "summarizinged": [], + "Van's": [], + "lumpsing": [], + "Berber": ["S", "M"], + "bookkeeper": ["M", "S"], + "spellbinds": [], + "refiners's": [], + "surceaseds": [], + "Reebok": ["M"], + "fantastically": [], + "Dryden's": [], + "peacemaker's": [], + "Traci's": [], + "headily": [], + "cowboy's": [], + "skirmished": [], + "fancy": ["D", "R", "S", "M", "Z", "T", "G", "P"], + "tessellations": [], + "adhesivenesses": [], + "stub": ["M", "S"], + "fulleder": [], + "waylay": ["R", "S", "Z", "G"], + "sails": [], + "postmodernist's": [], + "examines": [], + "Kutuzov": ["M"], + "Yamaha": ["M"], + "monetarists": [], + "turnsers": [], + "beholdener": [], + "squatness's": [], + "soften": ["D", "R", "Z", "G"], + "fools": [], + "influence'sing": [], + "sappier": [], + "pistol's": [], + "muumuus": [], + "raiding's": [], + "abandonments": [], + "crummiest": [], + "bogged": [], + "pyre's": [], + "conflated": [], + "antidepressant": ["M", "S"], + "filibustersers": [], + "autocrats": [], + "khan": ["M", "S"], + "averteds": [], + "unveil": [], + "bus": ["A", "M", "S"], + "expressively": [], + "logbook": ["S", "M"], + "givingings": [], + "scabbard's": [], + "diocese's": [], + "orientalists": [], + "compartments": [], + "comprises": [], + "precancels": [], + "rakishness's": [], + "Jericho": ["M"], + "dairymaid's": [], + "shortcoming'ses": [], + "pioneered": [], + "snoring": [], + "peregrinatingen": [], + "unknown's": [], + "embryologists": [], + "geodesic's": [], + "litigator'ses": [], + "canvased": [], + "platitudes's": [], + "syndicating": [], + "vitalize": ["C", "A", "G", "S", "D"], + "oilcloth": ["M"], + "expropriator's": [], + "Canaries's": [], + "railroad": ["S", "Z", "G", "M", "D", "R"], + "televangelism": ["M"], + "bloats": [], + "expostulatingen": [], + "Rabin": ["M"], + "slurry": ["M"], + "counterpoise's": [], + "Freudian's": [], + "curbing's": [], + "magnet's": [], + "mortaring": [], + "crib's": [], + "nocturnal": ["Y"], + "fishes": [], + "retying": [], + "windstorm'ses": [], + "manginess's": [], + "heists's": [], + "mixes": [], + "briefcases's": [], + "portaged": [], + "Shea's": [], + "gravitation's": [], + "hogshead's": [], + "alleyways": [], + "Antioch": ["M"], + "continuances": [], + "slouchers": [], + "drop'ses": [], + "distantly": [], + "foretells": [], + "tachyon": [], + "burdened": [], + "paperhanger": ["S", "M"], + "psychoanalytic": [], + "vamooseds": [], + "dent'sed": [], + "rickrack's": [], + "piss'sed": [], + "froth'sed": [], + "Schrieffer": ["M"], + "nightshades": [], + "tarantellas": [], + "outage": ["S", "M"], + "Periclean's": [], + "kale's": [], + "Lauren": ["M"], + "ellipsis's": [], + "captivated": [], + "fascinationed": [], + "accompanist": ["S", "M"], + "Sutton": ["M"], + "crews": [], + "manias's": [], + "jellsing": [], + "wart's": [], + "comb's": [], + "Ecclesiastes": ["M"], + "deadbolt's": [], + "thermal": ["M", "Y", "S"], + "corpsmen": [], + "earthiness's": [], + "luxury": ["S", "M"], + "casuistry": ["M"], + "month's": [], + "snorting": [], + "williwaw's": [], + "nationalism's": [], + "variables's": [], + "concordats": [], + "upcoming": [], + "brow's": [], + "beaks": [], + "deportees": [], + "hedging": [], + "Oldenburg": ["M"], + "schnauzers": [], + "encored": [], + "violateds": [], + "diphtheria's": [], + "disrecover": [], + "feverishliness": [], + "impaneled": [], + "malamutes": [], + "contentiousness": ["M"], + "exasperateds": [], + "kitchenette": ["M", "S"], + "pleasureful": [], + "adore": ["B", "Z", "G", "D", "R", "S"], + "garnished": [], + "perplexity": ["S", "M"], + "Cato's": [], + "copacetic": [], + "necessitating": [], + "dissembling": [], + "broncs's": [], + "narcotizes": [], + "Hus": ["M"], + "spirituous": [], + "merriness's": [], + "measured": ["U"], + "Norbert": ["M"], + "Soyuz": ["M"], + "bowler's": [], + "canopy": ["G", "D", "S", "M"], + "botanic": [], + "Rutan's": [], + "amble'sers": [], + "zooming": [], + "reproach's": [], + "outweigh": ["G", "D"], + "babysitter": ["M", "S"], + "salvers": [], + "Buckner's": [], + "Thalia": ["M"], + "selling": [], + "densenessly": [], + "poleaxinged": [], + "polygraph'sed": [], + "ionosphere's": [], + "Pleiades's": [], + "brakes": [], + "privets": [], + "mateder": [], + "townspeople's": [], + "wonderlands": [], + "Quezon's": [], + "Armagnac's": [], + "fornication's": [], + "softy's": [], + "Newman's": [], + "adoration": ["M"], + "braining's": [], + "Nigeria": ["M"], + "Lazarus": ["M"], + "granddaughters's": [], + "charmers": [], + "eggshells's": [], + "utilitarian": ["M", "S"], + "summits": [], + "dishrags's": [], + "unholiest": [], + "lobbying": [], + "tippling": [], + "trillionth": ["M"], + "Larsen's": [], + "backspaceds": [], + "salamis": [], + "Hephaestus's": [], + "rodents": [], + "stopperings": [], + "attractsing": [], + "Shaw's": [], + "Nanook's": [], + "hewersing": [], + "distension": [], + "gasman": [], + "DiCaprio": ["M"], + "Rachael's": [], + "stroke's": [], + "Wezen": ["M"], + "photojournalism's": [], + "era": ["S", "M"], + "overlord's": [], + "dementedly": [], + "guardrooms's": [], + "waxiness": ["M"], + "Fitzpatrick's": [], + "firebreaks": [], + "censured": [], + "mazurka": ["M", "S"], + "parched": [], + "portrayed": [], + "hang": ["M", "D", "R", "J", "Z", "G", "S"], + "shrubs": [], + "baggiest": [], + "liberateds": [], + "complainer": ["M"], + "ballpoint's": [], + "stoopings": [], + "occludinged": [], + "Ital": [], + "mouse": ["D", "R", "S", "M", "Z", "G"], + "batterersing": [], + "Argo": ["S", "M"], + "Blockbuster": ["M"], + "zits's": [], + "jollifications's": [], + "carpool's": [], + "gyp": ["S", "M"], + "barreled": [], + "mogul": ["S", "M"], + "linseed's": [], + "mandrake's": [], + "catapult'sed": [], + "whiners": [], + "sitemaps's": [], + "ingests": [], + "madliness": [], + "lipstick": ["M", "D", "S", "G"], + "auras": [], + "tarn's": [], + "Stoicism'ses": [], + "economies": [], + "Talmuds": [], + "misgovernment": ["M"], + "budgetsing": [], + "vortex'ses": [], + "boozier": [], + "snappierness": [], + "plughole": ["S"], + "daub's": [], + "enthrone": ["G", "D", "S", "L"], + "scatterbrained": [], + "synergism": ["M"], + "ablutions's": [], + "steameder": [], + "omniscient": [], + "Decalogue's": [], + "trucklinged": [], + "fagots's": [], + "unavailability": [], + "bassist's": [], + "hose's": [], + "iconoclastic": [], + "stableman's": [], + "apologizeds": [], + "reforestation": [], + "strains": [], + "patronymics": [], + "Earlene's": [], + "bangles": [], + "glaucoma's": [], + "harass": ["L", "Z", "G", "D", "R", "S"], + "Confucius's": [], + "Brandy": ["M"], + "Massachusetts": ["M"], + "skimmer": ["S", "M"], + "assured's": [], + "endurance's": [], + "razorback": ["M", "S"], + "sickness's": [], + "meiosis's": [], + "transmigrating": [], + "aorta'ses": [], + "godchildren's": [], + "Nunez's": [], + "header's": [], + "injuring": [], + "ills": [], + "infidels": [], + "mischance": ["S", "M"], + "Troyes": [], + "seminaries's": [], + "rhinestones's": [], + "Seine": ["M"], + "creepy": ["T", "P", "R"], + "intransigentlies": [], + "inattentiveness": [], + "Wuhan": ["M"], + "sawhorse's": [], + "painlessly": [], + "contrasted": [], + "explicatingen": [], + "corrugateds": [], + "bursaries": [], + "idealist's": [], + "schnitzels": [], + "fluting's": [], + "idiosyncrasy": ["S", "M"], + "encounter'sed": [], + "overlooks": [], + "triangulating": [], + "haunting": ["Y"], + "mightiest": [], + "birthrates": [], + "Ayyubid's": [], + "superconductivity's": [], + "pointeder": [], + "alto's": [], + "tournament's": [], + "flummoxeds": [], + "benevolence": ["S", "M"], + "schmaltz's": [], + "singer": ["M"], + "gracelessnessly": [], + "congressperson'ses": [], + "lanai's": [], + "California's": [], + "dragoon'sed": [], + "disjointedliness": [], + "nosierness": [], + "snobbery": ["M"], + "delegated": [], + "Barnaul": ["M"], + "python's": [], + "vergeds": [], + "judicatories's": [], + "twiggier": [], + "satay": [], + "gallant": ["S", "M", "Y"], + "created": [], + "teleprinters": [], + "proletariat": ["M"], + "embroilments": [], + "grownup'ses": [], + "parmigiana": [], + "tenner": ["S"], + "flamenco": ["M", "S"], + "contemptibly": [], + "agave's": [], + "Bermudas's": [], + "individuation": ["M"], + "fault'sed": [], + "sandbanks": [], + "sock": ["M", "D", "G", "S"], + "canticles": [], + "Negros's": [], + "titillates": [], + "pisseder": [], + "nimrod'ses": [], + "vainglorious": ["Y"], + "assiduousness": ["M"], + "Donn's": [], + "supplicated": [], + "armband": ["M", "S"], + "salespeople's": [], + "presorted": [], + "delegating": [], + "concussions's": [], + "learninged": [], + "anatomy's": [], + "snips": ["M"], + "Swinburne's": [], + "ligaturinged": [], + "colonnadeds": [], + "Tahoe's": [], + "dowdiness": ["M"], + "egalitarians": [], + "ruffed": [], + "snapshots's": [], + "birthstone": ["S", "M"], + "A": ["S", "M"], + "revulsion's": [], + "jolted": [], + "Arnhem's": [], + "flatterers": [], + "signor's": [], + "klaxon": ["S"], + "assembling": [], + "pantomime": ["M", "G", "D", "S"], + "Wrigley": ["M"], + "hayricks": [], + "danish's": [], + "florin": ["S", "M"], + "adulation's": [], + "avenged": [], + "brawlers": [], + "summarizeds": [], + "O'Connell": ["M"], + "Daren's": [], + "Hickman's": [], + "Baudrillard": ["M"], + "biopsy's": [], + "sleights's": [], + "anglersing": [], + "Mae's": [], + "loos": ["N", "R", "X"], + "abatement": ["M"], + "doppelganger": ["S"], + "tunics's": [], + "anchovies": [], + "Lydia": ["M"], + "acceptation'ses": [], + "Svalbard's": [], + "diabetes": ["M"], + "vacuole's": [], + "vaulted": [], + "combustible's": [], + "Trippe's": [], + "waffleder": [], + "tryst's": [], + "heartbreak's": [], + "Set": ["M"], + "overexertion's": [], + "separates": [], + "vocalic": [], + "Pyrexes": [], + "nighttime's": [], + "biweekly": ["S", "M"], + "nixing": [], + "fondle": ["D", "S", "G"], + "Huitzilopotchli": ["M"], + "naturalistic": [], + "epithelial": [], + "Aureomycin's": [], + "amassinged": [], + "blitzkrieg": ["M", "S"], + "tidal": ["Y"], + "threnody's": [], + "resonating": [], + "centime": ["S", "M"], + "evaluative": [], + "kitchen": ["S", "M"], + "mistral": ["M", "S"], + "Hellenist": [], + "cosigning": [], + "Townsend's": [], + "ruling": ["M"], + "daughter": ["S", "M", "Y"], + "vole's": [], + "paleface's": [], + "nerd'ses": [], + "glossary": ["S", "M"], + "tow's": [], + "stratification": ["M"], + "limb": ["M", "S"], + "olive": ["S", "M"], + "icicles": [], + "waft": ["M", "D", "G", "S"], + "starters": [], + "stenches": [], + "Circe's": [], + "burdock": ["M"], + "tipsily": [], + "currycombs": [], + "Kirov": ["M"], + "store": ["A", "D", "S", "G"], + "baguettes": [], + "ginkgoes": [], + "sufficiency's": [], + "heightens": [], + "juddering": [], + "statelying": [], + "maidenhair": ["M"], + "Wroclaw": ["M"], + "transverses": [], + "caramels": [], + "umping's": [], + "perforce": [], + "abdication's": [], + "squabbler's": [], + "heir": ["M", "S"], + "Adolph": ["M"], + "precipitating": [], + "jackrabbit's": [], + "distilleries's": [], + "somethings's": [], + "hiccups": [], + "interlineds": [], + "interlinks": [], + "Nero's": [], + "nauseate": ["G", "D", "S"], + "Cyclops": ["M"], + "filings": [], + "pegboard'ses": [], + "vulgarism's": [], + "wavereder": [], + "demonetization's": [], + "wear": ["M", "R", "B", "J", "S", "Z", "G"], + "reprise's": [], + "Bengal": ["S", "M"], + "syphilitic": ["S", "M"], + "declivity": ["S", "M"], + "boutonniere's": [], + "Valerie": ["M"], + "Goldwater's": [], + "Tina": ["M"], + "recheck": [], + "impertinence'ses": [], + "croweding": [], + "equivocation": ["M"], + "spacewoman": ["M"], + "roomings": [], + "millet's": [], + "persecute": ["G", "N", "X", "D", "S"], + "quark's": [], + "locomotive's": [], + "recessives": [], + "stroppily": [], + "riser's": [], + "encumber": ["E", "G", "S", "D"], + "March'ses": [], + "Randal's": [], + "impermanent": ["Y"], + "welderable": [], + "buntsings": [], + "Leninism": ["M"], + "gale's": [], + "pyx's": [], + "punsters's": [], + "leukemia's": [], + "coordination's": [], + "rads": [], + "silhouetteds": [], + "Northwest": ["S", "M"], + "Kalashnikov's": [], + "garblesing": [], + "relaxesers": [], + "numerationsing": [], + "survived": [], + "trap": ["M", "S"], + "nurseryman": ["M"], + "quashing": [], + "neglectfulness's": [], + "Husserl's": [], + "desolateness's": [], + "unselfish": [], + "white": ["S", "P", "M"], + "quieteden": [], + "repents": [], + "botch's": [], + "wriggler's": [], + "brood's": [], + "decoupage": ["D", "S", "M", "G"], + "flick's": [], + "Kyoto": ["M"], + "AR": [], + "jouster's": [], + "swanning": [], + "megapixels": [], + "probation'ser": [], + "parapets": [], + "acetaminophen's": [], + "Hardin": ["M"], + "Rostropovich": ["M"], + "banister's": [], + "sensuousness's": [], + "dossed": [], + "sickle's": [], + "Bach": ["M"], + "distort": ["G", "D", "R"], + "groansing": [], + "earmuff": ["S", "M"], + "creative": ["S", "M", "Y", "P"], + "mothball's": [], + "Wanamaker": ["M"], + "invalidate": [], + "vaults's": [], + "parent": ["G", "M", "D", "S"], + "sequences": [], + "bloatware": [], + "subheading": ["M"], + "critical": ["U", "Y"], + "flick": ["S", "Z", "G", "M", "D", "R"], + "restorations's": [], + "prepacked": [], + "hootsers": [], + "meter'sed": [], + "drummers's": [], + "squiggles": [], + "supplicateds": [], + "kerbside": [], + "cluckeding": [], + "Mort": ["M"], + "desiccants": [], + "Colorado's": [], + "portly": ["R", "P", "T"], + "mile'ses": [], + "transact": ["D", "G", "S"], + "schlep's": [], + "envisageds": [], + "dethronement's": [], + "snipeder": [], + "neocolonialism": ["M"], + "bivouacs": [], + "do's": [], + "trimmer": ["S", "M"], + "nightwatchman": [], + "bouillabaisses's": [], + "finessing": [], + "rangy": ["R", "T", "P"], + "specification": ["M"], + "dysfunctions": [], + "bamboozled": [], + "lanais": [], + "galling": [], + "columns's": [], + "radiotelegraphy": ["M"], + "Atwood's": [], + "prats": [], + "utterly": [], + "trencheds": [], + "hardtop's": [], + "pabulum's": [], + "retainer's": [], + "foodstuffs's": [], + "gamesmanship": ["M"], + "Phanerozoic": ["M"], + "agonies": [], + "snottier": [], + "bail'sed": [], + "warez": [], + "peals": [], + "Gordon's": [], + "morphemic": [], + "Didrikson": ["M"], + "charioteer": ["M", "S"], + "characterizations": [], + "microcosm": ["M", "S"], + "limitersing": [], + "flowing": [], + "orgasms's": [], + "grimaces": [], + "turbochargersing": [], + "secularize": ["D", "S", "G"], + "fantasia": ["S", "M"], + "drakes": [], + "Carranza": ["M"], + "clamored": [], + "rhomboids's": [], + "hypothetical": ["Y"], + "allegrettos": [], + "Eton": ["M"], + "Sheppard": ["M"], + "transiently": [], + "bunkers": [], + "ultrasonic": [], + "Marlon": ["M"], + "milkiest": [], + "Adana's": [], + "seance's": [], + "supers's": [], + "rippling": [], + "shiatsu": ["M"], + "devotees's": [], + "cursory": ["P"], + "undisplayable": [], + "gleansed": [], + "spas": [], + "whisking": [], + "roper's": [], + "impasses": [], + "haft's": [], + "disabled": [], + "grans": [], + "blackboard'ses": [], + "digest's": [], + "typhoid's": [], + "photoelectric": [], + "shortwaves": [], + "enabled": [], + "boisterousliness": [], + "summer's": [], + "coasts's": [], + "niggardliness's": [], + "geisha's": [], + "insecticidal": [], + "blackbirds": [], + "er": ["C"], + "Habakkuk's": [], + "burg": ["M", "R", "Z", "S"], + "foxtrot's": [], + "factual": ["Y"], + "twirlerers": [], + "Martial": ["M"], + "distaff's": [], + "dribbled": [], + "Bayer's": [], + "bani": [], + "genitive'ses": [], + "waiteder": [], + "chicness's": [], + "openhanded": ["P"], + "steer'sed": [], + "jink": ["D", "S", "G"], + "headboard's": [], + "listing": ["M"], + "Nelda's": [], + "terminal's": [], + "bob's": [], + "Tucuman's": [], + "fatherlands": [], + "steepener": [], + "tramlines": [], + "Augustan's": [], + "sodomite'ses": [], + "rectories's": [], + "whiner's": [], + "Cameron's": [], + "flatter": ["S", "D", "R", "Z", "G"], + "nourishment": ["M"], + "bewigged": [], + "individualized": [], + "Veblen": ["M"], + "citizenship's": [], + "salesgirl": ["S", "M"], + "Contreras's": [], + "doodle'sers": [], + "counterparts": [], + "Florence's": [], + "pothook's": [], + "Palestinian's": [], + "devouter": [], + "admonishes": [], + "agnostic'ses": [], + "wardings": [], + "monochromatic": [], + "mun": [], + "payloads's": [], + "curiosity's": [], + "madding": [], + "suborder": ["M", "S"], + "ah": [], + "oversexed": [], + "triremes's": [], + "advertiser": ["M"], + "Tutu's": [], + "blew": [], + "euchring": [], + "mumps's": [], + "lounges": [], + "syllabify": ["D", "S", "N", "G"], + "countermanded": [], + "pontificating": [], + "dancinged": [], + "rename": [], + "deodorants's": [], + "spend": ["B", "S", "R", "Z", "G"], + "Kristi's": [], + "ditsy": [], + "outliving": [], + "Vermont'ser": [], + "lumpectomies": [], + "aphelion": ["S", "M"], + "introspecting": [], + "dismembermenting": [], + "insertions": [], + "isomerism": ["M"], + "teddy": ["S"], + "decree": ["M", "D", "S"], + "paintsers": [], + "Ibadan": ["M"], + "schooners's": [], + "BBSes": [], + "rabble's": [], + "officiator's": [], + "pleonasm's": [], + "pacifists": [], + "Tracey's": [], + "shuddereds": [], + "poohs": [], + "Birkenstock": ["M"], + "disown": [], + "comparisons": [], + "sufferersing": [], + "triplicates": [], + "return": [], + "university": ["S", "M"], + "Maserati's": [], + "Dobbin": ["M"], + "pressurizinged": [], + "nearness": ["M"], + "prole": ["S"], + "bumbler": ["M"], + "dewlaps": [], + "apertures": [], + "viscose": ["M"], + "individual's": [], + "Heliopolis's": [], + "danging": [], + "indemnifications": [], + "wallabies's": [], + "influentially": [], + "Harlan's": [], + "slating": [], + "elephant's": [], + "ghoul": ["S", "M"], + "funneled": [], + "Hampshire's": [], + "Curie's": [], + "DOD": [], + "dewberries's": [], + "futurity": ["S", "M"], + "countess'ses": [], + "blowzier": [], + "naphtha": ["M"], + "Svalbard": ["M"], + "extremes": [], + "Andrianampoinimerina": ["M"], + "Olympia's": [], + "monger's": [], + "frittering": [], + "Asia's": [], + "drools's": [], + "corgis": [], + "Babels": [], + "treading": [], + "signaler's": [], + "hovercraft": ["M"], + "videodisc's": [], + "seedless": [], + "unblinking": ["Y"], + "businesses": [], + "incendiary": ["S", "M"], + "peeks": [], + "widener": ["M"], + "ratifiersing": [], + "mainframe": ["S", "M"], + "dope'sers": [], + "ramrods's": [], + "lions": [], + "mention's": [], + "contrary's": [], + "hansoms": [], + "photoengraved": [], + "parceling's": [], + "quinoa": [], + "incarcerating": [], + "tuxedos's": [], + "facet": ["S", "M", "D", "G"], + "foragers": [], + "radiographer": ["S", "M"], + "carsick": ["P"], + "commentings": [], + "wastrel's": [], + "edginess": ["M"], + "martini's": [], + "shapeds": [], + "palefaces": [], + "aquatic's": [], + "blags": [], + "spanking": ["M"], + "toadstool": ["M", "S"], + "raveled": [], + "villainies's": [], + "galaxies": [], + "rigorousness": ["M"], + "provoker": ["M"], + "deteriorating": [], + "echelons's": [], + "archways's": [], + "McCartney": ["M"], + "thunderclaps": [], + "awe": ["D", "S", "M", "G"], + "allurement": ["M", "S"], + "ancestors's": [], + "oozing": [], + "K": ["S", "M", "N", "G", "J"], + "speedersing": [], + "choker": ["M"], + "overcoat'ses": [], + "megabyte": ["M", "S"], + "multiplicative": [], + "murmurings's": [], + "shorebird's": [], + "fore'ses": [], + "doubles": [], + "taper": ["M", "D", "G"], + "neatens": [], + "emulsifiesers": [], + "jacks": [], + "ligatureds": [], + "Quezon": ["M"], + "archery's": [], + "unlike": ["P", "B"], + "Kendra's": [], + "infringement'ses": [], + "sluts": [], + "afoot": [], + "toiletry": ["S", "M"], + "patters": [], + "capillary's": [], + "brush's": [], + "scathingly": [], + "eraser's": [], + "tradesman": ["M"], + "urination": ["M"], + "soccer's": [], + "axletree's": [], + "leasheds": [], + "bedbug's": [], + "resistor'ses": [], + "gallium's": [], + "Marsala's": [], + "reclineder": [], + "ftping": [], + "persuade": ["B", "Z", "G", "D", "R", "S"], + "solidify": ["D", "S", "N", "G"], + "equaling": [], + "confessor's": [], + "rectifiable": [], + "metaphors": [], + "realization'ses": [], + "Earle": ["M"], + "portmanteaus": [], + "asphyxiating": [], + "cummerbunds": [], + "fortifiersing": [], + "warrants": [], + "reputations": [], + "anointedment": [], + "Heriberto's": [], + "punctiliousness": ["M"], + "hopscotcheds": [], + "torridness": ["M"], + "succulents": [], + "Shane's": [], + "fuminged": [], + "visitant": ["M", "S"], + "heartache": ["M", "S"], + "tank": ["Z", "G", "M", "D", "R", "S"], + "saltbox's": [], + "wishbone's": [], + "whiplash": ["M", "S"], + "reversals": [], + "jeremiad'ses": [], + "wild'ser": [], + "goads": [], + "frenzies's": [], + "IRA's": [], + "emir's": [], + "protectionist'ses": [], + "explanatory": [], + "whelmeding": [], + "brocade's": [], + "unlettered": [], + "cadenced": [], + "shepherd's": [], + "Netscape's": [], + "flyweight's": [], + "synergy's": [], + "regional": ["Y"], + "wisher": ["M"], + "grounding": ["M"], + "conjugation's": [], + "albums": [], + "epinephrine's": [], + "lemonades": [], + "Waldorf": ["M"], + "erasesable": [], + "forester": ["M", "S"], + "struggle": ["M", "G", "D", "S"], + "premeditation": ["M"], + "Kristin": ["M"], + "Turkish": ["M"], + "sculptresses": [], + "keratin": ["M"], + "roam": ["Z", "G", "D", "R", "S"], + "kowtowing's": [], + "Oshawa's": [], + "Ishim": ["M"], + "fumigants": [], + "rephotographing": [], + "jawbone": ["D", "S", "M", "G"], + "whimsically": [], + "reddish": [], + "complaisantly": [], + "socially": [], + "Permalloy's": [], + "riflemen": [], + "clovers": [], + "silkens": [], + "Unitarian": ["M", "S"], + "neighborliness": ["M"], + "opposite": ["S", "M", "Y", "N", "X"], + "orthographic": [], + "prosodies": [], + "antiperspirants": [], + "jauntily": [], + "brevetting": [], + "trench": ["A", "D", "S", "G"], + "bawling": [], + "aristocracies's": [], + "nephropathy": [], + "sacrilege": ["M", "S"], + "flotillas": [], + "cheesiest": [], + "blight'sed": [], + "trundler": ["M"], + "ensues": [], + "proscribe": ["D", "G"], + "indirectly": [], + "methods": [], + "spit": ["M", "D", "G", "S"], + "cool's": [], + "pic": ["S", "M"], + "corteges": [], + "Artemis": ["M"], + "southwesters's": [], + "bespangle": ["D", "S", "G"], + "canebrakes": [], + "tux": ["M", "S"], + "loureds": [], + "meatpacking": ["M"], + "organism": ["M", "S"], + "innocent's": [], + "horrendously": [], + "shocker's": [], + "chick'sen": [], + "duckpins": ["M"], + "Layla": ["M"], + "slobber": ["M", "D", "S", "G"], + "papillae": [], + "madrasahs": [], + "bedaubsed": [], + "preseason's": [], + "unsatisfactory": [], + "patella's": [], + "wards": [], + "buffer'sed": [], + "hidingings": [], + "admirable": [], + "sideburns's": [], + "underachieve": ["L", "Z", "G", "D", "R", "S"], + "tidewater'ses": [], + "pervertsing": [], + "mistreats": [], + "props": [], + "ropers": [], + "foursquare": [], + "mandrels": [], + "fructose's": [], + "screed": ["S"], + "Krista": ["M"], + "constructor'ses": [], + "dominatrices": [], + "Engels's": [], + "indentation's": [], + "entailment's": [], + "Sprint": ["M"], + "conquistador": ["S", "M"], + "foundries's": [], + "colderly": [], + "acute'sly": [], + "sailings": [], + "nonspecialist": ["M", "S"], + "mitigates": [], + "furl": ["U", "D", "G", "S"], + "holdout's": [], + "unfeminine": [], + "springboard's": [], + "supremo": ["S"], + "mucky": ["T", "R"], + "cloak": ["U", "S", "D", "G"], + "offal's": [], + "overexercised": [], + "tweaked": [], + "shepherdesses": [], + "valorously": [], + "tearing's": [], + "lacerated": [], + "pail": ["M", "S"], + "policyholder's": [], + "burs": [], + "senoras": [], + "miscueds": [], + "crosier's": [], + "Aleut'ses": [], + "outcast'ses": [], + "blocker'ses": [], + "yellowing": [], + "CAM": [], + "phonemically": [], + "prospectively": [], + "Umbriel's": [], + "Troilus": ["M"], + "administrative": ["Y"], + "mullion": ["S", "M", "D"], + "socialization's": [], + "Frances's": [], + "brighten": ["D", "R", "Z", "G"], + "megawatt": ["M", "S"], + "GI": [], + "predicates": [], + "appraiser's": [], + "monitor's": [], + "barnstormeder": [], + "trifle'sers": [], + "shipbuilding's": [], + "metabolites": [], + "univalent": [], + "chino's": [], + "pillboxes": [], + "listings": [], + "Aryan's": [], + "nebulous": ["P", "Y"], + "chive": ["M", "S"], + "component": ["S", "M"], + "empoweringment": [], + "tactlessness": ["M"], + "chancellorship": ["M"], + "jetties": [], + "barrack": ["M", "D", "G", "S"], + "memorability's": [], + "wreckage's": [], + "weatherproofed": [], + "basalt": ["M"], + "embroiderer": ["M"], + "kraut's": [], + "realize": ["D", "S", "B", "G"], + "snowboarders": [], + "least": ["M"], + "hyperspace": ["S"], + "breads": [], + "condign": [], + "Rigoletto's": [], + "registrar": ["M", "S"], + "faddishness": [], + "violated": [], + "metastatic": [], + "stepladder's": [], + "poi": ["M"], + "forethought": ["M"], + "footmen": [], + "bawds": [], + "browner": [], + "footballer": ["M"], + "blob's": [], + "Bullwinkle's": [], + "interlocutor's": [], + "Ukrainians's": [], + "logarithms's": [], + "desalinatingen": [], + "militarist's": [], + "instigation's": [], + "Hymen's": [], + "coffees": [], + "Monticello's": [], + "nonaggression": ["M"], + "perimeter's": [], + "liquidator": ["M", "S"], + "Wobegon": ["M"], + "Lamaism": ["S", "M"], + "faience": ["M"], + "flabbergastsing": [], + "markka": ["M"], + "thirsts": [], + "Yonkers's": [], + "blazer": ["M"], + "wordings": [], + "skinflint": ["M", "S"], + "liquidationed": [], + "chignons": [], + "progresseds": [], + "Bismarck": ["M"], + "titanium": ["M"], + "phoenixes": [], + "Hawaii": ["M"], + "immersed": [], + "spandex's": [], + "abaft": [], + "jackal's": [], + "imperviously": [], + "encyclopedias": [], + "peel'sed": [], + "jelling": [], + "whitefishes": [], + "catwalks": [], + "bore'sers": [], + "trawleder": [], + "vein's": [], + "encasemented": [], + "christenings": [], + "ramifications": [], + "Kelsey's": [], + "commingling": [], + "dearness": ["M"], + "horsed": [], + "folded": [], + "giggles": [], + "minesweepers": [], + "Porter's": [], + "splosh": ["D", "S", "G"], + "featheriest": [], + "sanely": [], + "Capet": ["M"], + "irascibility's": [], + "topsoil's": [], + "chlorinated": [], + "acidity": ["M"], + "backstories": [], + "greaterly": [], + "tholes's": [], + "myopia's": [], + "pallbearer": ["M", "S"], + "manhood": ["M"], + "bibliographer's": [], + "outguesseds": [], + "Barquisimeto's": [], + "mulligan's": [], + "pustules's": [], + "embarrassingment": [], + "Davenport": ["M"], + "coverage": ["M"], + "hardheartedness": ["M"], + "Rochelle": ["M"], + "encampment's": [], + "wrappers's": [], + "impressing": [], + "squashed": [], + "graveledly": [], + "prophetic": [], + "scrapyard": ["S", "M"], + "ivories's": [], + "heirlooms's": [], + "knew": [], + "fossils": [], + "wigeon": ["M"], + "operateds": [], + "promoted": [], + "metered": [], + "hiccups's": [], + "decafs": [], + "Warwick": ["M"], + "moonlight's": [], + "coruscationed": [], + "manacle'sing": [], + "tarsal'ses": [], + "announcersing": [], + "Mozilla": ["M"], + "impurity": ["S", "M"], + "unwise": ["R", "Y", "T"], + "Goodrich": ["M"], + "boondoggle": ["M", "Z", "G", "D", "R", "S"], + "aggrandizement": ["M"], + "irremediably": [], + "wiriness's": [], + "intramuscular": [], + "unanticipated": [], + "shootersing": [], + "cowherds": [], + "outmaneuvereds": [], + "insensitively": [], + "aids": [], + "contrarinesses": [], + "Delano": ["M"], + "fighterers": [], + "antisemitism's": [], + "freeway'ses": [], + "hewed": [], + "meres": [], + "sitcoms's": [], + "tremor's": [], + "fairy": ["S", "M"], + "opaquely": [], + "sellotapes": [], + "elongate": ["D", "S", "G", "N", "X"], + "insomniacs's": [], + "marlinespike's": [], + "Priscilla": ["M"], + "strategics": ["M"], + "itemizes": [], + "peripheries": [], + "stamper's": [], + "creams's": [], + "congressperson": ["M", "S"], + "slavishnessly": [], + "attorney'ses": [], + "knackering": [], + "blotch'sed": [], + "shampooing": [], + "Adderley": ["M"], + "ditherersing": [], + "cambric's": [], + "broadcast'sing": [], + "zestfully": [], + "GitHub": ["M"], + "bandboxes": [], + "reconnoiterings": [], + "crossbeams": [], + "angst": ["M"], + "reactionaries": [], + "Morrow": ["M"], + "sororities's": [], + "correcting": [], + "prototype'sing": [], + "later": [], + "legionary": ["S", "M"], + "harridans": [], + "begetter": ["S"], + "Adela's": [], + "Benita's": [], + "platonic": [], + "activist's": [], + "bosh": ["M"], + "corpora": [], + "correctness": ["I", "M"], + "Indra's": [], + "velocity": ["S", "M"], + "pigeonhole": ["D", "S", "M", "G"], + "minister's": [], + "Gentry": ["M"], + "cube'ses": [], + "snowball": ["G", "S", "M", "D"], + "Facebook's": [], + "gobbling": [], + "sh": [], + "timeouts's": [], + "airedings": [], + "disciples": [], + "tirades's": [], + "adoration's": [], + "riveter's": [], + "lit": ["Z", "R"], + "cares's": [], + "poundage's": [], + "verge's": [], + "plus'ses": [], + "ops": [], + "Elwood's": [], + "halo'sed": [], + "veil's": [], + "studiousness's": [], + "massacring": [], + "bathos's": [], + "Myrdal": ["M"], + "snowboarder's": [], + "deprogrammed": [], + "celebrants's": [], + "Tunisian'ses": [], + "Teri's": [], + "Acuff": ["M"], + "Drake": ["M"], + "douche'sing": [], + "counterpoising": [], + "thinlies": [], + "Darren's": [], + "wham": ["M", "S"], + "caisson": ["S", "M"], + "swotted": [], + "ransomersing": [], + "microlight's": [], + "swum": [], + "callowest": [], + "flu": ["M"], + "shirtwaist": ["M", "S"], + "pulp's": [], + "souffle's": [], + "unitizes": [], + "incessantly": [], + "Nashua": ["M"], + "wage'ses": [], + "darkenersing": [], + "Prokofiev's": [], + "vocabularies": [], + "fuselage's": [], + "stoop's": [], + "ammeters": [], + "tetras": [], + "muddle'sing": [], + "insurmountable": [], + "vista": ["S", "M"], + "cods's": [], + "bathrooms": [], + "spurning": [], + "boundaries": [], + "Phillip": ["S", "M"], + "pillagersing": [], + "yen": ["S", "M"], + "jabots": [], + "partridges's": [], + "roilinged": [], + "dough": ["M"], + "FAQ's": [], + "Internationale's": [], + "palimony": ["M"], + "sanctioned": ["U"], + "barbecueds": [], + "flatfooted": [], + "splashes": [], + "astrophysics's": [], + "Volgograd": ["M"], + "endurable": ["U"], + "Farrow's": [], + "ambition's": [], + "litanies's": [], + "Vitus": ["M"], + "despondent": ["Y"], + "trolleys": [], + "L'Amour's": [], + "Watergate": ["M"], + "electrificationed": [], + "beys": [], + "parabolas's": [], + "RSI": [], + "libraries's": [], + "jounceds": [], + "flatus": ["M"], + "overspecialized": [], + "Ayurveda's": [], + "entangling": [], + "Belgium's": [], + "horde's": [], + "orotundity's": [], + "backfire's": [], + "surplus'ses": [], + "Galen": ["M"], + "acquisitively": [], + "fortuity's": [], + "skint": [], + "bylaws's": [], + "Minoans": [], + "chagrining": [], + "jockstrap'ses": [], + "dreadlocks": ["M"], + "symmetries's": [], + "haven": ["S", "M"], + "rhetorical": ["Y"], + "ballpark": ["M", "S"], + "sallieds": [], + "nonsympathizer's": [], + "horned": [], + "inoculates": [], + "minimalist": ["M", "S"], + "rigmarole": ["M", "S"], + "invest": ["A", "S", "D", "G", "L"], + "thrilling": ["Y"], + "damning": [], + "Glenn": ["M"], + "dividends": [], + "poorliness": [], + "Beaujolais's": [], + "frankness": ["M"], + "dickereding": [], + "thrashings": [], + "conditionsed": [], + "glossed": [], + "outcropped": [], + "lesion's": [], + "programmer's": [], + "afforested": [], + "turnover": ["M", "S"], + "Nassau": ["M"], + "escalatesing": [], + "inapproachable": [], + "gastroenteritis's": [], + "postmortem's": [], + "reneger": ["M"], + "Louvre": ["M"], + "Baylor": ["M"], + "underpart's": [], + "separations": [], + "exact": ["S", "P", "D", "R", "Y", "T", "G"], + "inquireder": [], + "looker": ["M"], + "Gregorio's": [], + "inkstands": [], + "hump": ["M", "D", "S", "G"], + "twigged": [], + "formals": [], + "alter": ["G", "D", "B", "S"], + "Gibbon": ["M"], + "CDC": [], + "Citibank": ["M"], + "confirmed": ["U"], + "crescendos": [], + "forestry's": [], + "Ty": ["M"], + "riming's": [], + "dumpers": [], + "spans": [], + "overalls": ["M"], + "boldface's": [], + "microscopically": [], + "seedier": [], + "concealingable": [], + "enraginged": [], + "wadges": [], + "outfighting": [], + "brain's": [], + "minis": [], + "gonad": ["S", "M"], + "Sid's": [], + "inhibitor's": [], + "dynamics's": [], + "dharma": [], + "urchin's": [], + "glossiers": [], + "forward": ["M", "D", "R", "Y", "Z", "T", "G", "S", "P"], + "baked": ["U"], + "underexposures": [], + "boiling": [], + "semidetached": [], + "enlightenment's": [], + "rotundness's": [], + "surfer's": [], + "recourse's": [], + "decadency": ["M"], + "wale's": [], + "archways": [], + "Kawasaki's": [], + "alkalize": ["D", "S", "G"], + "microphone's": [], + "jests": [], + "secant's": [], + "Monsieur's": [], + "fiberglass's": [], + "souffle": ["S", "M"], + "vainly": [], + "affected": ["U", "Y"], + "offbeat's": [], + "zippers": [], + "impalpably": [], + "Vandyke's": [], + "lasagnas": [], + "recuperate": ["G", "N", "V", "D", "S"], + "Lorie": ["M"], + "acumen": ["M"], + "rhapsodizes": [], + "hinter's": [], + "nonperson's": [], + "pupae": [], + "barbell'ses": [], + "Liechtensteiner's": [], + "sprinklersing": [], + "McFarland's": [], + "neglect'sed": [], + "treacle": ["M"], + "DA": ["M"], + "meson": ["S", "M"], + "xenophobic": [], + "rackets's": [], + "adhesives's": [], + "metaphor'ses": [], + "Muensters": [], + "molding": ["M"], + "reinstate": [], + "swampland": ["M"], + "starboard's": [], + "Keisha": ["M"], + "cedar's": [], + "hilt's": [], + "madman": ["M"], + "Ellen": ["M"], + "symphonic": [], + "grantee's": [], + "dict": [], + "infarcts": [], + "frizz's": [], + "Markov's": [], + "transfix": ["D", "S", "G"], + "roversing": [], + "ejection's": [], + "tailor's": [], + "compedly": [], + "sunset'ses": [], + "believed": [], + "lent": [], + "mulled": [], + "vase's": [], + "formalization's": [], + "software's": [], + "severances's": [], + "understandingly": [], + "breathalyzer": [], + "Antoinette's": [], + "Zeno's": [], + "centiliter's": [], + "atomizinged": [], + "Erma's": [], + "bullet": ["S", "M"], + "machining": [], + "tapir'ses": [], + "updater": [], + "machinates": [], + "cribber'ses": [], + "snorkeleder": [], + "passionsers": [], + "gusto": ["M"], + "divan": ["S", "M"], + "batmen": [], + "friedcakes": [], + "detonateds": [], + "blintz": ["M", "S"], + "spotlit": [], + "ailed": [], + "pwnsing": [], + "morality": ["U", "M"], + "Pericles's": [], + "Latiners": [], + "supped": [], + "cripples's": [], + "scuttled": [], + "emasculates": [], + "illiteratelies": [], + "appropriateness": ["I", "M"], + "cashback": ["M"], + "onyx'ses": [], + "overlords": [], + "Crick": ["M"], + "tektite's": [], + "oppressive": ["Y", "P"], + "enquirers": [], + "December": ["S", "M"], + "Gila": ["M"], + "hotlink": ["S"], + "unenthusiastic": [], + "strew": ["G", "S", "D", "H"], + "abrasion'ses": [], + "papersers": [], + "acrimony": ["M"], + "blockheads's": [], + "surliest": [], + "jokiest": [], + "zippered": [], + "necessaries's": [], + "Riddle": ["M"], + "centenary's": [], + "orientation's": [], + "mistake's": [], + "networking's": [], + "obsessing": [], + "Fatah's": [], + "drawer's": [], + "punditry": ["M"], + "punishment's": [], + "weakens": [], + "louts": [], + "photographed": [], + "northeast'ser": [], + "erasersing": [], + "lulleds": [], + "flattened": [], + "Forbes's": [], + "reinforces": [], + "Beria": ["M"], + "cauterized": [], + "southwestern": [], + "fetchersing": [], + "submissions": [], + "voyageder": [], + "persuades": [], + "unanimity's": [], + "speleology's": [], + "psychoanalysts": [], + "fingerprints": [], + "differential's": [], + "damn'sed": [], + "huts": [], + "doter": ["M"], + "sets's": [], + "hefted": [], + "elemental": ["Y"], + "tealight'ses": [], + "melody": ["S", "M"], + "breathers": [], + "heretics's": [], + "chi": ["S", "M"], + "Vladimir's": [], + "unrevealed": [], + "hoses": [], + "undramatic": [], + "syndicalists": [], + "Slovakia": ["M"], + "shirtfront": ["S", "M"], + "tamarind'ses": [], + "Schroeder": ["M"], + "sauna": ["M", "D", "S", "G"], + "glucose's": [], + "backtracks": [], + "jujubes": [], + "particles": [], + "track'sed": [], + "referred": [], + "reversibly": [], + "talons": [], + "collusion": ["M"], + "rockier": [], + "apology's": [], + "Nina's": [], + "polymorphic": [], + "acronym's": [], + "bluenoses": [], + "quavered": [], + "agglutinateds": [], + "whim's": [], + "outwearings": [], + "adjourning": [], + "champersing": [], + "ornament's": [], + "dankness": ["M"], + "fertilization's": [], + "thistledown's": [], + "Cox's": [], + "prior's": [], + "transiency": ["M"], + "Dec": ["M"], + "conformists's": [], + "gutless": ["P"], + "chopper's": [], + "butts": [], + "bashfulness's": [], + "alarmed": [], + "larders": [], + "spilleding": [], + "obstreperousness's": [], + "cannonade's": [], + "unbroken": [], + "hoe": ["S", "M"], + "bell's": [], + "starfishes": [], + "Barranquilla's": [], + "meddler": ["M"], + "epitomize": ["G", "D", "S"], + "dogleg": ["S", "M"], + "gigahertz": ["M"], + "stating": [], + "tanner": ["S", "M"], + "imposer": ["M", "S"], + "zinc": ["M", "S"], + "read's": [], + "scheduling": [], + "gigabit's": [], + "dialeding": [], + "blathereding": [], + "godlessnessly": [], + "lookers": [], + "linking": [], + "holierness": [], + "tirades": [], + "outboard's": [], + "incarnadined": [], + "Whigs's": [], + "Ryan's": [], + "boob": ["S", "G", "M", "D"], + "parqueteds": [], + "tabla": ["M", "S"], + "bushelsing": [], + "legitimatizinged": [], + "sinusoidal": [], + "fireproofing": [], + "NSF": [], + "crepuscular": [], + "jimmying": [], + "dessertspoons": [], + "absurdist": ["M", "S"], + "contiguous": ["Y"], + "outboasted": [], + "obeisance": ["S", "M"], + "Libra'ses": [], + "ac": [], + "breakable": ["M", "S"], + "spoor": ["S", "M", "D", "G"], + "affirm": ["A", "G", "D", "S"], + "Mauritanians": [], + "defoliants's": [], + "bucktooth's": [], + "accompany": ["D", "S", "G"], + "broncobusters's": [], + "conformers": [], + "mustang's": [], + "accountant'ses": [], + "Briton": ["M", "S"], + "grunt's": [], + "Iraqis": [], + "indefinably": [], + "revival": ["M", "S"], + "condemnations": [], + "Maynard": ["M"], + "revering": [], + "coagulate": ["G", "N", "D", "S"], + "disastrously": [], + "purification's": [], + "cauterizeds": [], + "psst": [], + "decedent": ["M", "S"], + "juicily": [], + "pueblo": ["S", "M"], + "personification": ["M"], + "failing": ["M"], + "side": ["A", "G", "D", "S"], + "lithographing": [], + "pistachios": [], + "Kern": ["M"], + "procaine": ["M"], + "atop": [], + "rhythmical": ["Y"], + "skyrocket's": [], + "syrups": [], + "lectureships": [], + "criticizers": [], + "scratches": [], + "grab": ["M", "S"], + "chestnuts": [], + "unbolt": [], + "barns's": [], + "slight": ["S", "M", "D", "R", "Y", "T", "G", "P"], + "scallopings": [], + "swoons": [], + "wrong'sness": [], + "Sumerian": ["S", "M"], + "countersignatures": [], + "migraines": [], + "canisters": [], + "shoutersing": [], + "withe": ["D", "R", "S", "M", "Z", "G"], + "mutant's": [], + "demagogy": ["M"], + "ticking": ["M"], + "marginalizinged": [], + "availed": [], + "seducer's": [], + "axletrees's": [], + "riffle's": [], + "marina'ses": [], + "autobiographer": ["S", "M"], + "mythologize": ["D", "S", "G"], + "helmet": ["S", "M", "D"], + "masturbated": [], + "eclecticism's": [], + "poems": [], + "medusa": [], + "recompensing": [], + "senile": [], + "gyrationens": [], + "dachshund'ses": [], + "balloon'sed": [], + "temblors": [], + "whams": [], + "scrubbers's": [], + "rum's": [], + "portliest": [], + "speckled": [], + "cafes's": [], + "intimidated": [], + "garrisoning": [], + "porcupines's": [], + "industrialism's": [], + "gophers": [], + "Weaver": ["M"], + "Kasey's": [], + "chronology": ["S", "M"], + "recapture": [], + "mouthwashes": [], + "atonal": ["Y"], + "crenelation": ["M"], + "Brigham's": [], + "Dusty": ["M"], + "synfuel'ses": [], + "nobleman's": [], + "Jamaal's": [], + "chroniclersing": [], + "beheads": [], + "goodhearted": [], + "ergot": ["M"], + "coot's": [], + "plow's": [], + "webcast": ["S", "M", "G"], + "becalm": ["G", "S", "D"], + "lasciviousliness": [], + "gazump": ["D", "G", "S"], + "Antoine's": [], + "bonfire": ["M", "S"], + "brakeman": ["M"], + "stepdaughters's": [], + "bastion": ["M"], + "munition'sed": [], + "stains's": [], + "sussed": [], + "giggler": ["M"], + "glamoured": [], + "ethnologist's": [], + "expropriated": [], + "adverbial'sly": [], + "waterspout's": [], + "Yolanda's": [], + "astuteness": ["M"], + "eagle'ses": [], + "entitles": [], + "towelette": ["S", "M"], + "bilker's": [], + "sunbath": ["Z", "G", "M", "D", "R", "S"], + "listen'sed": [], + "cliometrics": ["M"], + "Ferris's": [], + "tees": [], + "adventuresses": [], + "handbill's": [], + "orchestras": [], + "attuned": [], + "departmentally": [], + "snorter's": [], + "karaoke'ses": [], + "backspace's": [], + "Lafitte's": [], + "couplets": [], + "purveyor's": [], + "Zimbabwe's": [], + "Philips's": [], + "stowings": [], + "aftermarket'ses": [], + "emptily": [], + "gondola'ses": [], + "drumlin's": [], + "H's": [], + "backlogging": [], + "Lenoir's": [], + "osculation's": [], + "truant": ["G", "M", "D", "S"], + "masteds": [], + "Liszt": ["M"], + "clawsing": [], + "weirdly": [], + "nonbelievers": [], + "Leblanc's": [], + "rake's": [], + "pimped": [], + "cheroots": [], + "psychedelics": [], + "characters": [], + "spikes": [], + "binders": [], + "crystallization": ["M"], + "pullback's": [], + "covering's": [], + "Packard": ["M"], + "sparring": [], + "fortifyingens": [], + "voters's": [], + "excelsior's": [], + "embosser": ["M"], + "Latvian": ["M", "S"], + "bidets": [], + "Fuller": ["M"], + "Hindu": ["S", "M"], + "Jed's": [], + "demolition": ["M", "S"], + "sizzles's": [], + "Disraeli": ["M"], + "shrivelsing": [], + "waterbeds": [], + "burner's": [], + "Selkirk's": [], + "disrupts": [], + "legals's": [], + "awkwardliness": [], + "rocketsing": [], + "stargazersing": [], + "Burgundian's": [], + "Eakins": ["M"], + "slipperiness's": [], + "quit": ["S"], + "Ypsilanti": ["M"], + "Budweiser's": [], + "colonnade's": [], + "stole's": [], + "flirtations": [], + "scenic": [], + "insusceptible": [], + "Dumbo's": [], + "upholster": ["A", "S", "G", "D"], + "Addison": ["M"], + "winterizinged": [], + "extendable": [], + "thirds's": [], + "electioneer": ["D", "G", "S"], + "dancer": ["M"], + "mournful": ["Y", "P"], + "blouse": ["M", "G", "D", "S"], + "squirt'sed": [], + "sacraments": [], + "Obadiah's": [], + "Fisher's": [], + "slut": ["M", "S"], + "burnishes": [], + "tequilas": [], + "penitentiary's": [], + "Yamoussoukro": ["M"], + "bullies": [], + "urns's": [], + "Numbers's": [], + "interchanged": [], + "stallion'ses": [], + "packet's": [], + "reinstalled": [], + "skivers": [], + "homestretch": ["M", "S"], + "vacillateds": [], + "prophetesses": [], + "mendsers": [], + "enabler's": [], + "impolitic": [], + "disinvestment": [], + "pronouncement": ["S", "M"], + "Romanov's": [], + "claw's": [], + "challenge": ["D", "R", "S", "M", "Z", "G"], + "ungulate'ses": [], + "nightclub": ["S", "M"], + "limpidity": ["M"], + "wheezes's": [], + "picnics": [], + "resonator": ["S", "M"], + "imbecility": ["S", "M"], + "ageratum's": [], + "yachtsman": ["M"], + "parasailing": [], + "Tabascos's": [], + "overhand'sed": [], + "applaudeder": [], + "wrigglersing": [], + "curs's": [], + "Priam's": [], + "unwieldy": ["T", "R", "P"], + "mislabelsed": [], + "Bulgaria": ["M"], + "wildernesses": [], + "pedagogy": ["M"], + "scripts": [], + "gladdeneds": [], + "ceremony's": [], + "tuba's": [], + "grafts's": [], + "NLRB": [], + "marble's": [], + "lyrebird": ["M", "S"], + "starchier": [], + "cox": ["G", "D", "S"], + "ballad": ["S", "M"], + "freshness's": [], + "howler": ["M"], + "chambermaid'ses": [], + "Communist": ["S", "M"], + "aigrette'ses": [], + "jackdaw'ses": [], + "culturally": [], + "moonshinerser": [], + "chopstick": ["S", "M"], + "abstrusely": [], + "doughnuts": [], + "ballgame's": [], + "exist": ["S", "D", "G"], + "transportables": [], + "accreditinged": [], + "cloaked": [], + "crevasse's": [], + "jetting": [], + "clasheds": [], + "hematologist": ["M", "S"], + "coolnesses": [], + "untouchables": [], + "wearersing": [], + "recuperative": [], + "mayoralty": ["M"], + "finished": ["U"], + "balustrade": ["M", "S"], + "videoing": [], + "Ephesus's": [], + "flesh'sed": [], + "exaggerating": [], + "enslavement": ["M"], + "scorning": [], + "snazzy": ["T", "R"], + "institutionalized": [], + "housework's": [], + "triangular": ["Y"], + "Campanella's": [], + "declarer": ["M"], + "lurkers": [], + "kinship's": [], + "backhoe'ses": [], + "efficient": ["I", "Y"], + "beguile": ["D", "R", "S", "Z", "G", "L"], + "frontierswomen": [], + "preconditionings": [], + "muleskinners": [], + "tonsil's": [], + "pampas": ["M"], + "greeted": [], + "antiheroes": [], + "dingbat'ses": [], + "foe's": [], + "beelines": [], + "trifler": ["M"], + "paean's": [], + "CompuServe": ["M"], + "handcrafts": [], + "Barrera's": [], + "sightlies": [], + "Knapp's": [], + "monuments": [], + "vintners": [], + "coringed": [], + "overprecise": [], + "Umbriel": ["M"], + "swineherds": [], + "furtiveness": ["M"], + "Volcker's": [], + "tallest": [], + "babel's": [], + "scheme": ["D", "R", "S", "M", "Z", "G"], + "septicemia": ["M"], + "relisting": [], + "Se": ["M", "H"], + "jigger": ["A", "S", "D", "G"], + "ellipse's": [], + "deadheaded": [], + "maidenheads's": [], + "Zoroastrianism": ["S", "M"], + "sleepover's": [], + "elm's": [], + "scintillate": ["D", "S", "G", "N"], + "fettersing": [], + "dignifies": [], + "weaving's": [], + "lathering": [], + "leaver": ["M"], + "detritus": ["M"], + "romancersing": [], + "modernizesers": [], + "joint": ["E", "G", "S", "D"], + "sacking's": [], + "Sagittariuses": [], + "cyclometers": [], + "announcement": ["M", "S"], + "woodworking's": [], + "buddings": [], + "Lichtenstein's": [], + "tan's": [], + "overuse'sing": [], + "Ur's": [], + "interrupters": [], + "Cardiff's": [], + "adman": ["M"], + "flagellation": ["M"], + "kiss'sed": [], + "aficionados": [], + "obnoxiousness": ["M"], + "silentest": [], + "gladder": [], + "problem's": [], + "zen": [], + "traipse": ["D", "S", "M", "G"], + "sop's": [], + "guy's": [], + "unworldly": [], + "bovines's": [], + "overreactions's": [], + "defeatings": [], + "delectably": [], + "doorkeepers": [], + "initialized": ["A", "U"], + "daydreamers": [], + "retaliateds": [], + "virtuousliness": [], + "Chris's": [], + "wrecks": [], + "crinoline's": [], + "coffeepot": ["M", "S"], + "prime": ["M", "S"], + "semaphores": [], + "sluttier": [], + "fascinatesens": [], + "abscondsed": [], + "Dixielands": [], + "paraphrase'sing": [], + "yielding": [], + "forefinger's": [], + "wittered": [], + "crisperly": [], + "quarterbacked": [], + "couriereds": [], + "crape": ["S", "M"], + "Alfred": ["M"], + "diplomas": [], + "notionally": [], + "prior'ses": [], + "decimeter'ses": [], + "humaner": [], + "marionette's": [], + "Marks": ["M"], + "whom": [], + "preordained": [], + "kaffeeklatsch'ses": [], + "tyrannizes": [], + "dwarfism": ["M"], + "misogynistic": [], + "roaster's": [], + "culprit": ["S", "M"], + "Tunney's": [], + "insinuateds": [], + "ailment": ["S", "M"], + "Gross": ["M"], + "Waterbury": ["M"], + "seraglio'ses": [], + "creation": ["A", "S", "M"], + "controller's": [], + "readouts": [], + "strops's": [], + "scorchesers": [], + "telegraphers": [], + "Kaunda's": [], + "rappel": ["S", "M"], + "winy": ["R", "T"], + "glaciated": [], + "masterclass": ["S"], + "hovels's": [], + "beginners's": [], + "Mowgli": ["M"], + "mothered": [], + "wicket's": [], + "sinology": [], + "unnameable": [], + "Americans": [], + "kitchenette's": [], + "stevedore": ["S", "M"], + "decisively": [], + "romaines": [], + "Orestes": ["M"], + "lecture": ["M", "Z", "G", "D", "R", "S"], + "precipitate's": [], + "sapient": [], + "incomplete": ["Y"], + "noticinged": [], + "twenties": [], + "militant's": [], + "Seinfeld's": [], + "stirrer": ["S", "M"], + "parcel": ["G", "M", "D", "S"], + "Xenophon": ["M"], + "generalist'ses": [], + "nymphomania": ["M"], + "regrouping": [], + "heirlooms": [], + "doorknob'ses": [], + "babier": [], + "Citroen's": [], + "lightface'sed": [], + "memorably": [], + "recurring": [], + "predominatinged": [], + "envies's": [], + "pressures's": [], + "skinhead'ses": [], + "heartache'ses": [], + "undergrowth's": [], + "exits": [], + "antiques's": [], + "Friedman": ["M"], + "Gambians": [], + "ritual": ["S", "M", "Y"], + "cirrhotic's": [], + "grovelersing": [], + "pewees": [], + "rollersing": [], + "beetles": [], + "hatched": ["U"], + "vomiteding": [], + "toolbar": ["S", "M"], + "diffracted": [], + "thickly": [], + "unlikable": [], + "density": ["S", "M"], + "Heath's": [], + "Barbadian's": [], + "aforesaid": [], + "crock'sed": [], + "slugs": [], + "relists": [], + "clergywomen": [], + "frolics": [], + "sitinged": [], + "quahogs": [], + "wranglers": [], + "dandiest": [], + "Lucia's": [], + "systole's": [], + "fecklessnessly": [], + "Jeep": ["M"], + "underlays's": [], + "guarantor's": [], + "Chandon's": [], + "steps": [], + "uncharacteristically": [], + "blackberry": ["G", "S", "M"], + "brazers": [], + "complained": [], + "miniaturist": ["M", "S"], + "wheatmeal": [], + "syllabicated": [], + "annuals": [], + "safeness's": [], + "easterners": [], + "exchanging": [], + "cardamoms's": [], + "homemakers's": [], + "platy": ["M"], + "vindicates": [], + "brave'sly": [], + "lectures": [], + "agonists": [], + "cadenzas's": [], + "prettify": ["G", "D", "S"], + "raves": [], + "invitingly": [], + "fronted": [], + "pappies": [], + "Sharron": ["M"], + "sated": [], + "transfusingen": [], + "asphalteding": [], + "fourposter's": [], + "muleteer's": [], + "diplomat's": [], + "graft's": [], + "George'ses": [], + "palatalized": [], + "aground": [], + "delouse": [], + "frets": [], + "checklist": ["M", "S"], + "phis's": [], + "insuresers": [], + "mystification": ["C", "M"], + "curacy's": [], + "sublimeder": [], + "maze": ["M", "S"], + "histamine'ses": [], + "Barbie's": [], + "kissoffs's": [], + "husk'sed": [], + "secretary": ["S", "M"], + "obtainable": ["U"], + "temping": [], + "harmed": ["U"], + "coronet'ses": [], + "arc'sed": [], + "aspirants": [], + "retarding": [], + "tickles": [], + "left's": [], + "exiguous": [], + "stagsings": [], + "absorbinged": [], + "Stoppard's": [], + "fondleds": [], + "proprietor's": [], + "chromatically": [], + "Galahads's": [], + "passionate": ["E", "Y"], + "redissolve": [], + "affiliationed": [], + "lopsidedliness": [], + "Marsala": ["M"], + "winder": ["S", "M"], + "remold": ["S", "G", "D"], + "evil's": [], + "Wimbledon's": [], + "ennoblement's": [], + "Beardsley's": [], + "placebos": [], + "increments": [], + "Shari'a's": [], + "niacin": ["M"], + "superego'ses": [], + "Peugeot's": [], + "disrepute": ["M", "B"], + "discuses": [], + "quibbling": [], + "Mack's": [], + "surcingles's": [], + "wirelesses": [], + "toot's": [], + "Antichrists": [], + "lobed": [], + "parcel's": [], + "snuffleds": [], + "backyards's": [], + "mesmerizersing": [], + "compilations": [], + "Stuyvesant": ["M"], + "oats": ["M"], + "spare's": [], + "perkeds": [], + "pushed": [], + "guises's": [], + "paramedical'ses": [], + "peppered": [], + "lessener": [], + "near": ["D", "R", "Y", "S", "P", "T", "G"], + "toque's": [], + "wrestles": [], + "Yugoslavian": ["S", "M"], + "marimba's": [], + "Midas": ["M"], + "Lester": ["M"], + "fusspot's": [], + "Arawak's": [], + "personages": [], + "Kans's": [], + "timidness's": [], + "futons": [], + "fixeder": [], + "sockets": [], + "sweltering": [], + "show's": [], + "dearths": [], + "subdueds": [], + "refortifieds": [], + "valve": ["D", "S", "M", "G"], + "taciturn": ["Y"], + "specifics": [], + "theosophy": ["M"], + "raptures": [], + "microsecond'ses": [], + "whopped": [], + "commoners": [], + "wristwatch's": [], + "taxpayers": [], + "equivalents": [], + "riversides": [], + "diddled": [], + "remit": ["S"], + "vigil": ["S", "M"], + "covert's": [], + "hornlike": [], + "increments's": [], + "listlessliness": [], + "herpes's": [], + "drubber": ["S", "M"], + "laxly": [], + "scruffs": [], + "antivivisectionists": [], + "maintenance's": [], + "callosity's": [], + "dictatorships": [], + "sheen's": [], + "chastens": [], + "meritoriousnessly": [], + "seafood's": [], + "parapet's": [], + "tappets": [], + "psychoanalyzing": [], + "Mahayanist's": [], + "insipid": ["P", "Y"], + "careening": [], + "impishness's": [], + "crosscurrent'ses": [], + "slut's": [], + "spatter": ["S", "G", "M", "D"], + "viewing": ["S", "M"], + "babiest": [], + "hypo's": [], + "physicists": [], + "Utes's": [], + "imminently": [], + "raciness": ["M"], + "facilitator": ["M", "S"], + "hospitalizing": [], + "skewereding": [], + "nominees": [], + "clinics": [], + "fustiest": [], + "citation'ses": [], + "chasm": ["M", "S"], + "clomping": [], + "levitatesing": [], + "attains": [], + "talisman's": [], + "captaining": [], + "Rawalpindi's": [], + "ogreish": [], + "pukeds": [], + "philistine's": [], + "handclasps": [], + "rutherfordium": ["M"], + "Kronecker's": [], + "altruistic": [], + "tartan'ses": [], + "gemstone'ses": [], + "potterings": [], + "Encarta": ["M"], + "ocarina": ["M", "S"], + "crowbar's": [], + "ranges": [], + "vitriol's": [], + "curate's": [], + "segmenting": [], + "cosmopolitan'ses": [], + "lucidity": ["M"], + "Port's": [], + "bk": [], + "deprecates": [], + "sparkles's": [], + "eminence": ["M", "S"], + "dalliances": [], + "present": ["L", "M", "D", "R", "Y", "Z", "G", "S", "B"], + "turn'sed": [], + "bronze's": [], + "pentagram": ["S", "M"], + "mantelpieces": [], + "paperbark": ["S"], + "barracudas's": [], + "saguaro": ["M", "S"], + "microbiologist'ses": [], + "poultry": ["M"], + "sheikh": ["M"], + "pineapple'ses": [], + "gibbered": [], + "TelePrompTer": [], + "resew": [], + "stimulatingen": [], + "Pfizer's": [], + "squash'sed": [], + "steeredable": [], + "sizzler": [], + "wretchednesser": [], + "routinely": [], + "oppressing": [], + "misapplication": ["M"], + "baristas": [], + "Sopwith's": [], + "archetypal": [], + "nationalizations": [], + "absurdists": [], + "beekeeper'ses": [], + "exosphere's": [], + "reef": ["Z", "G", "M", "D", "R", "S"], + "Milagros's": [], + "February's": [], + "cauterization's": [], + "enteritis's": [], + "dipoles": [], + "midpoint'ses": [], + "coracle's": [], + "capitals": [], + "relinquisheds": [], + "derides": [], + "Deng's": [], + "cuspidor's": [], + "suburbanite's": [], + "contraflows": [], + "rewind": ["M", "B"], + "chicanes": [], + "gizzard": ["M", "S"], + "loiterers": [], + "massacringed": [], + "remunerateds": [], + "Bollywood": ["M"], + "tooth's": [], + "nanotechnology": ["S", "M"], + "lenders": [], + "gofer": ["S", "M"], + "nondrinkers": [], + "Nona": ["M"], + "diffracts": [], + "Matisse's": [], + "sidesplitting": [], + "Rastaban's": [], + "quorums's": [], + "noontide's": [], + "vows": [], + "Maximilian's": [], + "refractory": ["S", "M"], + "Michelle": ["M"], + "senna": ["M"], + "tenfold": [], + "catechize": ["D", "S", "G"], + "drivingings": [], + "mudflat": ["M", "S"], + "automaker": ["S", "M"], + "monopolist": ["S", "M"], + "honker": ["M"], + "vegges": [], + "unreheard": [], + "pimpled": [], + "sturgeon's": [], + "goodlies": [], + "pail's": [], + "throatiest": [], + "Soviet's": [], + "innuendos's": [], + "heraldry's": [], + "Vermonter's": [], + "kibitzersing": [], + "neurosurgery": ["M"], + "dividable": [], + "sift": ["Z", "G", "D", "R", "S"], + "photograph'sed": [], + "crouching": [], + "deacons": [], + "sherbet's": [], + "cart": ["S", "Z", "G", "M", "D", "R"], + "append": ["G", "D", "S"], + "streakier": [], + "where's": [], + "siesta": ["M", "S"], + "parry": ["G", "D", "S", "M"], + "irrespective": [], + "Lilith's": [], + "wintergreen": ["M"], + "flight'ses": [], + "silicone's": [], + "peonies's": [], + "muddle": ["M", "G", "D", "S"], + "Sacco": ["M"], + "bewildering": ["Y"], + "tosseder": [], + "briefingings": [], + "elephantiasis": ["M"], + "deretraction": [], + "vigils's": [], + "stardom": ["M"], + "Nirenberg's": [], + "blend'sed": [], + "practicality's": [], + "feller": [], + "losing's": [], + "rung's": [], + "spinner'ses": [], + "dysphoric": [], + "Dardanelles": ["M"], + "divided": ["U"], + "cuttinglies": [], + "festal": [], + "crustacean's": [], + "coves": [], + "bingo": ["M"], + "hanger's": [], + "intercom's": [], + "Boyer": ["M"], + "inheritances": [], + "quailing": [], + "platooning": [], + "latchkey's": [], + "delineates": [], + "caryatid's": [], + "copiers": [], + "buyouts's": [], + "chrism": ["M"], + "Islamist": ["M"], + "inducement": ["S", "M"], + "Brahma's": [], + "scarfeds": [], + "Peggy's": [], + "mercuric": [], + "Psyche's": [], + "receptacle's": [], + "dingings": [], + "outtake'ses": [], + "waxwork's": [], + "sensitives": [], + "boilerplate": ["M"], + "beloved's": [], + "Hardy's": [], + "gestate": ["G", "N", "D", "S"], + "distributively": [], + "angelica": ["M"], + "varsity": ["S", "M"], + "capering": [], + "travestied": [], + "ballastings": [], + "storefronts": [], + "NR": [], + "tonearms's": [], + "dangles": [], + "prioress'ses": [], + "shifty": ["R", "P", "T"], + "graze'sers": [], + "tastinged": [], + "reserve's": [], + "pyre'ses": [], + "suitable's": [], + "rubbery": [], + "Slovenes's": [], + "snatch": ["Z", "G", "M", "D", "R", "S"], + "lazes": [], + "Visigoth's": [], + "choreographer": ["M"], + "hypothesis": ["M"], + "rapid'ser": [], + "hoists": [], + "detentionens": [], + "highways": [], + "multiplicand's": [], + "gaiter": ["M"], + "Mollie": ["M"], + "skylines": [], + "Nestor": ["M"], + "sketch": ["M", "D", "R", "S", "Z", "G"], + "recce": ["S"], + "silicons": [], + "solipsism's": [], + "pole": ["M", "S"], + "collation's": [], + "mage'ses": [], + "tropisms's": [], + "acculturates": [], + "fripperies's": [], + "alternators's": [], + "chanteuse'ses": [], + "tireds": [], + "commie's": [], + "codger's": [], + "refrigerant": ["S", "M"], + "aphasia": ["M"], + "Communions's": [], + "chinwag": ["S"], + "brandyinged": [], + "time's": [], + "melding": [], + "cratereding": [], + "Edwardo's": [], + "reconcede": [], + "Jeep's": [], + "irritants's": [], + "Heimlich's": [], + "oranges": [], + "hyperglycemia": ["M"], + "hijacking's": [], + "Percheron's": [], + "regular": ["M", "Y", "S"], + "drivel": ["S", "Z", "G", "M", "D", "R"], + "emblazoning": [], + "joinsing": [], + "velvet's": [], + "barricade": ["M", "G", "D", "S"], + "whirlybird's": [], + "Emmanuel's": [], + "sidestrokes's": [], + "alfalfa's": [], + "abuse's": [], + "fathering's": [], + "sliceder": [], + "centennial'sly": [], + "epilogue": ["M", "S"], + "rosary": ["S", "M"], + "bridgeheads's": [], + "nurture's": [], + "underlining": [], + "sherbets's": [], + "cables": [], + "retrenchment": ["M", "S"], + "bacilli": [], + "mist's": [], + "dolphins": [], + "gadfly": ["S", "M"], + "caricaturists": [], + "emancipate": ["D", "S", "G", "N"], + "rendezvous's": [], + "stairs": [], + "diatom's": [], + "WY": [], + "prestos": [], + "cryptograms's": [], + "upthrusting": [], + "connective'ses": [], + "homily": ["S", "M"], + "subscript": ["M", "S"], + "strewings": [], + "shingle": ["D", "S", "M", "G"], + "epics": [], + "middleweight": ["M", "S"], + "midst": ["M"], + "myriad's": [], + "batterers": [], + "volts": [], + "Satanism's": [], + "troubadour'ses": [], + "Omaha's": [], + "interchangeds": [], + "shitheads": [], + "disbelief": [], + "abridge": ["D", "S", "G"], + "masts": [], + "scoops": [], + "Aquafresh": ["M"], + "homophone'ses": [], + "crippler's": [], + "sinfully": [], + "brashest": [], + "derailments": [], + "Juliette": ["M"], + "demolished": [], + "greaser": [], + "Bierce": ["M"], + "altruism's": [], + "Linda": ["M"], + "tallyhoeding": [], + "afterglow": ["S", "M"], + "interdict": ["G", "M", "D", "S"], + "codicil": ["S", "M"], + "scorcher": ["M"], + "ketch": ["M", "S"], + "Jaguar's": [], + "guns": [], + "spread": ["Z", "G", "B", "S", "M", "R"], + "transfixed": [], + "departmentalization's": [], + "grazer's": [], + "barrels's": [], + "stalked": [], + "acropolis": ["M", "S"], + "Fields": ["M"], + "diamondback": ["M", "S"], + "ragamuffin's": [], + "stoles": [], + "Minnelli": ["M"], + "crinkles": [], + "Stella": ["M"], + "aphid": ["M", "S"], + "cubism": ["M"], + "beginners": [], + "Ogden": ["M"], + "Hampton's": [], + "exacerbation": ["M"], + "detainee'ses": [], + "overage": ["S", "M"], + "bestiary's": [], + "Ladoga's": [], + "Amber's": [], + "bitcheds": [], + "tighteninged": [], + "contentedness": ["M"], + "drownsings": [], + "uptight": [], + "exclusivity's": [], + "squishier": [], + "mainsail's": [], + "patron'ses": [], + "cyst": ["M", "S"], + "sine'ses": [], + "calculation's": [], + "acute": ["P", "M", "Y", "T", "R", "S"], + "cheeseboards": [], + "DMD": ["M"], + "marginalizeds": [], + "swish'sed": [], + "gites": [], + "blackcurrant": ["S"], + "milliner": ["M", "S"], + "disreplay": [], + "entertainment's": [], + "trope's": [], + "crooneder": [], + "greets": [], + "patriots": [], + "unbowed": [], + "hawsers": [], + "tolerates": [], + "gunship": ["M", "S"], + "adaption": ["S"], + "stationed": [], + "ablutions": [], + "Mauritians's": [], + "kindheartedness's": [], + "weeknights's": [], + "genesis": ["M"], + "glassiness": ["M"], + "laddering": [], + "stamps's": [], + "Austrians": [], + "pivot's": [], + "pay's": [], + "fluffiness": ["M"], + "dinged": [], + "impetuosity": ["M"], + "allegories": [], + "chalkboard's": [], + "passbooks": [], + "fulfilled": ["U"], + "newshounds": [], + "asphyxiationsing": [], + "ficklerness": [], + "haddock's": [], + "pleasurably": [], + "eventuate": ["G", "D", "S"], + "numerator's": [], + "Wynn's": [], + "fundamentals": [], + "viced": [], + "streakers": [], + "cosmologies's": [], + "Protestant": ["M", "S"], + "Tagus's": [], + "Carboloy's": [], + "intestine's": [], + "Zachariah": ["M"], + "forager": ["M"], + "staveds": [], + "noninterference's": [], + "Jamie's": [], + "costumer's": [], + "stripe": ["M", "S"], + "premeditatesing": [], + "earthwork's": [], + "blooper": ["M"], + "nasality": ["M"], + "hings": [], + "milksers": [], + "foodies": [], + "guarantyinged": [], + "greenerly": [], + "Baker": ["M"], + "melodiousliness": [], + "pompano'ses": [], + "prisms": [], + "tenure's": [], + "meadowlark'ses": [], + "phalanxes": [], + "slacking": [], + "carpal's": [], + "conduces": [], + "Ger's": [], + "filament's": [], + "grandparent's": [], + "Wendell's": [], + "glittered": [], + "review": [], + "BSA": [], + "hagiographer": ["S", "M"], + "cashing's": [], + "autobiographically": [], + "pantry": ["S", "M"], + "wordiness": ["M"], + "sprawls": [], + "blessing's": [], + "jumpsers": [], + "toll": ["M", "D", "G", "S"], + "prowleder": [], + "travelogue'ses": [], + "decongestant'ses": [], + "Modesto's": [], + "gleaning": [], + "vitrifieds": [], + "Santos's": [], + "superstar": ["M", "S"], + "conic": ["S", "M"], + "Wezen's": [], + "sickerly": [], + "populaces": [], + "laborersing": [], + "bookies": [], + "squeeze's": [], + "Senegalese": ["M"], + "Mongolia": ["M"], + "maladjustment's": [], + "rhododendrons's": [], + "mannishness's": [], + "interchangeable": [], + "choral's": [], + "chaps": [], + "bruisers": [], + "mortifying": [], + "termite": ["S", "M"], + "misgoverningment": [], + "cosmologists": [], + "Merak": ["M"], + "terrace's": [], + "magisterial": ["Y"], + "accentuation": ["M"], + "whiffletree'ses": [], + "acorn'ses": [], + "nonsense's": [], + "foreordainsed": [], + "howl's": [], + "homogenized": [], + "precancel'sed": [], + "Sadr's": [], + "liberalizes": [], + "measles": ["M"], + "approves": [], + "huntsman": ["M"], + "frilliest": [], + "odors": [], + "mansion's": [], + "numismatic": ["S"], + "Twain's": [], + "SLR": [], + "spiteding": [], + "escritoire's": [], + "objections": [], + "subscriber's": [], + "snowmobiles": [], + "wallowsing": [], + "clarinetist's": [], + "coopersing": [], + "Cheetos's": [], + "thaw's": [], + "Macy's": [], + "contribution's": [], + "infomercials": [], + "banishingment": [], + "presidential": [], + "communications": [], + "impulse'sing": [], + "loansers": [], + "chump": ["M", "S"], + "shagged": [], + "cumulatively": [], + "snowmobiled": [], + "relyinged": [], + "collectedly": [], + "campaign's": [], + "Tolstoy": ["M"], + "chrysanthemums": [], + "coruscation": ["M"], + "neighboring": [], + "torture'sers": [], + "pedicurist's": [], + "Arden": ["M"], + "Wright": ["M"], + "gobbled": [], + "grass's": [], + "roadbeds's": [], + "vibration's": [], + "woodworker": ["M"], + "foundries": [], + "important": ["Y"], + "machine'sing": [], + "coalitionists": [], + "absolution's": [], + "intrudes": [], + "kirsch": ["M", "S"], + "curious": ["Y", "P"], + "tempereding": [], + "faultily": [], + "jape": ["M", "G", "D", "S"], + "cabinetmaker's": [], + "mix'sed": [], + "launchpad's": [], + "semisweet": [], + "campanologists": [], + "dwellingsers": [], + "pout's": [], + "Purims": [], + "Aguascalientes": [], + "evader's": [], + "libber'ses": [], + "Thracian": ["M"], + "ringtone's": [], + "ratter's": [], + "malformations": [], + "Kilimanjaro": ["M"], + "ass'ses": [], + "dissociationed": [], + "inveighs": [], + "rhomboidal": [], + "Amazonian": [], + "spikeds": [], + "reshape": [], + "antagonisms's": [], + "Aruba": ["M"], + "Boston": ["M", "S"], + "recipes": [], + "utilize": ["G", "B", "D", "S"], + "Munoz's": [], + "abasementing": [], + "swearer": ["M"], + "vireo's": [], + "controverting": [], + "grade": ["C", "A", "D", "S", "G"], + "nefariously": [], + "mirror'sed": [], + "affordeds": [], + "corporeality": ["M"], + "woodland": ["S", "M"], + "featherweight's": [], + "glaze'sing": [], + "convexity": ["M"], + "beeper's": [], + "aboveboard": [], + "serapes's": [], + "russets": [], + "petition'sed": [], + "polluteder": [], + "fishier": [], + "gigolos": [], + "nonviolence's": [], + "copter": ["S", "M"], + "bedaubed": [], + "cods": [], + "abstruseness": ["M"], + "paramedics": [], + "vitiating": [], + "golfersing": [], + "drowsinged": [], + "fireproof": ["D", "S", "G"], + "polyethylene": ["M"], + "nonvocal": [], + "chap's": [], + "yeas's": [], + "encystinged": [], + "bis's": [], + "pecans": [], + "guardsman": ["M"], + "opencast": [], + "sacredly": [], + "treasures's": [], + "typifieds": [], + "ramping's": [], + "judgment": ["S", "M"], + "nigga": ["S", "M"], + "psychotherapy's": [], + "DA's": [], + "pacification's": [], + "sukiyaki's": [], + "houseplant": ["M", "S"], + "vacationists's": [], + "barmaid": ["M", "S"], + "Baltimore": ["M"], + "apartment's": [], + "Manfred": ["M"], + "excavateds": [], + "seventies's": [], + "buncoing": [], + "cabanas": [], + "Finland": ["M"], + "allegorical": ["Y"], + "ironwork": ["M"], + "manufacturing": ["M"], + "altitude's": [], + "ankle's": [], + "dot'sed": [], + "Talley's": [], + "lingerers": [], + "simplistically": [], + "accessions": [], + "ordinate'sen": [], + "Wii": ["M"], + "doorstop": ["M", "S"], + "chop": ["S", "M"], + "pantie's": [], + "category": ["S", "M"], + "allergic": [], + "alibi's": [], + "vaudevillian's": [], + "bets's": [], + "alpha's": [], + "retype": [], + "laddies": [], + "Cossack": ["M"], + "muskegs": [], + "ecstasies's": [], + "princelier": [], + "infantries": [], + "adventured": [], + "innovateds": [], + "bacterium": ["M"], + "parochialism's": [], + "console": [], + "flatfishes": [], + "bleedersing": [], + "BM's": [], + "proscenium": ["S", "M"], + "extraneously": [], + "Malayalam": ["M"], + "refrigerators": [], + "kindleds": [], + "pacifist": ["S", "M"], + "buffalo'sed": [], + "deifying": [], + "cinematographer": ["M", "S"], + "puttererers": [], + "recital": ["S", "M"], + "hunts": [], + "toasterers": [], + "bounder": ["S", "M"], + "consumers": [], + "hootersing": [], + "hominid": ["S", "M"], + "swearer's": [], + "iceberg": ["S", "M"], + "nitrogen's": [], + "filleting": [], + "alloy's": [], + "unfunny": [], + "Misty's": [], + "Nahuatl": ["M", "S"], + "Baywatch's": [], + "swearers": [], + "pardner": ["S"], + "grommets's": [], + "thong": ["S", "M"], + "positions": [], + "Whitefield's": [], + "koshereds": [], + "primrose": ["S", "M"], + "constitutesing": [], + "somersault'sed": [], + "sums": [], + "vegetarians's": [], + "extensions": [], + "mow's": [], + "appendage": ["S", "M"], + "Pickwick": ["M"], + "debris's": [], + "hornpipe": ["M", "S"], + "quicksand's": [], + "pompousness's": [], + "spittoon'ses": [], + "blini'ses": [], + "Benedictines": [], + "educability": ["M"], + "pauses": [], + "profanenessly": [], + "fibrillation": ["M"], + "polymer's": [], + "lastingly": [], + "nephew's": [], + "hacktivists": [], + "dishwasher": ["M", "S"], + "watchers": [], + "out'sed": [], + "comedown'ses": [], + "jumpy": ["T", "R", "P"], + "Lind": ["M"], + "outworked": [], + "cheat'sed": [], + "granddad": ["S", "M"], + "curated": [], + "miscalculatesens": [], + "cadge": ["Z", "G", "D", "R", "S"], + "bleeders": [], + "polonaise": ["S", "M"], + "assorteds": [], + "boxiest": [], + "uninstaller": [], + "ukuleles's": [], + "overprice": ["D", "S", "G"], + "ganders's": [], + "inure": ["D", "S", "G"], + "aquarium": ["M", "S"], + "Marat": ["M"], + "crackles": [], + "stand": ["S", "M", "R", "J", "Z", "G"], + "multiplexing's": [], + "bradawls": [], + "GED": [], + "shutdowns's": [], + "Holst's": [], + "Omsk's": [], + "Bolsheviki": [], + "noncomprehending": [], + "renunciations": [], + "Calvary's": [], + "bestselling": [], + "whalebone's": [], + "Sherpa's": [], + "Cocteau": ["M"], + "accessed": [], + "sidewalk": ["M", "S"], + "jingoistic": [], + "thinner's": [], + "smudge's": [], + "bilingual'sly": [], + "char's": [], + "blockbusters's": [], + "dissentersing": [], + "smoggier": [], + "cantonment'ses": [], + "telecommuting": ["M"], + "venation": ["M"], + "Chittagong": ["M"], + "broker": ["S", "M", "D", "G"], + "gangreneds": [], + "insistent": ["Y"], + "Rogers": ["M"], + "energetically": [], + "interrelationship": ["M", "S"], + "absolving": [], + "tandem's": [], + "raffish": ["Y", "P"], + "rope'sers": [], + "yttrium's": [], + "begrudges": [], + "prays": [], + "Schultz": ["M"], + "oldster": ["M", "S"], + "heuristically": [], + "sprainings": [], + "dong'sed": [], + "battleaxe'ses": [], + "Franny's": [], + "blightersing": [], + "piano's": [], + "spits": [], + "cricketing": [], + "adulators": [], + "polestars's": [], + "refrigerant's": [], + "stereos's": [], + "dandlinged": [], + "Asian's": [], + "sissiers": [], + "glimmer's": [], + "dames": [], + "nonindependent": [], + "hydrateds": [], + "insurrectionist's": [], + "Khartoum": ["M"], + "conductance's": [], + "Spartan'ses": [], + "slant": ["M", "S", "D", "G"], + "sutureds": [], + "barrens": [], + "swooshes": [], + "overgrazing": [], + "quicksteps": [], + "abjuratory": [], + "recreants": [], + "northeastern": [], + "discernible": ["I"], + "outranking": [], + "sidesteps": [], + "millstone": ["S", "M"], + "machinery": ["M"], + "enable": ["D", "R", "S", "Z", "G"], + "mammography": ["M"], + "consumerist": ["M", "S"], + "eigenvalue": ["S"], + "railroading's": [], + "Yekaterinburg": ["M"], + "poleaxing": [], + "scuttle's": [], + "disposal's": [], + "carnivore's": [], + "transpiresing": [], + "Anaheim": ["M"], + "sultry": ["R", "P", "T"], + "hopefuls": [], + "Timon": ["M"], + "definitive": ["Y"], + "deliveryman": [], + "predisposinged": [], + "mellower": [], + "saversing": [], + "Guantanamo's": [], + "expeditiousness's": [], + "fellings": [], + "finalist's": [], + "fiddles's": [], + "unaligned": [], + "readying": [], + "lethally": [], + "session": ["M", "S"], + "homeward": ["S"], + "cannonball's": [], + "animism's": [], + "graphology's": [], + "computes": [], + "actualizes": [], + "ebulliently": [], + "profundities": [], + "plectrums": [], + "concretes": [], + "ousteder": [], + "Moises's": [], + "armeds": [], + "bonanza": ["M", "S"], + "ritzy": ["R", "T"], + "ceramicists's": [], + "nubbiest": [], + "drawback'ses": [], + "Agatha": ["M"], + "stents": [], + "Loretta's": [], + "nabbing": [], + "wabbits": [], + "exportsers": [], + "cinch": ["G", "M", "D", "S"], + "down's": [], + "Corp": [], + "fogbound": [], + "nematode": ["S", "M"], + "anyone": ["M"], + "interpreter'ses": [], + "aardvarks": [], + "buskings": [], + "valuers's": [], + "spokesperson's": [], + "segregationist's": [], + "ganja": [], + "gizmos": [], + "sculling": [], + "environs's": [], + "handbrake": ["S"], + "savoreds": [], + "shallowlies": [], + "nationalization": ["M", "S"], + "intriguersing": [], + "thickener's": [], + "deduct": ["G", "V", "D"], + "furthersing": [], + "settee's": [], + "politely": [], + "Latino's": [], + "squeakierness": [], + "Forest's": [], + "overbid": ["S", "M"], + "linden's": [], + "cabinetmaking's": [], + "maternity": ["M"], + "prognosticates": [], + "predigests": [], + "gormandizer's": [], + "remade": [], + "pendulums": [], + "impossibles": [], + "attendee": ["S", "M"], + "dolloping": [], + "Coleridge": ["M"], + "Dubhe's": [], + "infrastructures": [], + "largess": ["M"], + "blurts": [], + "demoniacal": ["Y"], + "synagogue": ["S", "M"], + "tacking's": [], + "pampereds": [], + "economics": ["M"], + "columbine": ["S", "M"], + "Omani": ["M", "S"], + "maltreating": [], + "tribe's": [], + "twentieth's": [], + "reversal": ["S", "M"], + "housemother's": [], + "shielding": [], + "pregnant": [], + "grep": ["S"], + "gristmills": [], + "flossed": [], + "undesired": [], + "riverboat's": [], + "bilker": ["M"], + "muckrakeder": [], + "Borobudur's": [], + "seedcases": [], + "partitive's": [], + "signoras's": [], + "thriftily": [], + "Pacino": ["M"], + "dignifiesing": [], + "meow'sed": [], + "Laval": ["M"], + "hydra": ["S", "M"], + "Lr": [], + "Benin": ["M"], + "Pan's": [], + "landfalls": [], + "blur": ["S", "M"], + "leaped": [], + "prolongation's": [], + "doorknocker": ["S"], + "colonial": ["S", "M", "Y"], + "incorruptible": [], + "tetanus's": [], + "whitey": ["S", "M"], + "exonerate": ["G", "N", "D", "S"], + "yups's": [], + "habitats": [], + "jeweler": ["M"], + "weakfish'ses": [], + "kennel'sed": [], + "misquoting": [], + "Millard": ["M"], + "corvette": ["S", "M"], + "Folsom's": [], + "Hildebrand's": [], + "dreamless": [], + "stemware": ["M"], + "boardinghouses": [], + "accreditation": ["M"], + "avoirdupois's": [], + "ceaselessly": [], + "bash'sed": [], + "Castro": ["M"], + "canvaseds": [], + "Barabbas's": [], + "elaborate": ["Y", "G", "N", "D", "S", "P", "X"], + "menu'ses": [], + "chronicleder": [], + "tops": [], + "pathogens": [], + "enfilade's": [], + "sodomize": ["G", "D", "S"], + "extirpateds": [], + "Yevtushenko": ["M"], + "saltbox": ["M", "S"], + "piecework'ser": [], + "parablings": [], + "economizer": ["M"], + "extraditions": [], + "rangier": [], + "oarsmen": [], + "audition's": [], + "queenlies": [], + "maims": [], + "stalwart": ["M", "Y", "S"], + "dial'sed": [], + "versifiers": [], + "fleecier": [], + "blandisheds": [], + "swines": [], + "Las's": [], + "inflamed": [], + "latest's": [], + "Calvinism'ses": [], + "Job": ["S", "M"], + "kingpins's": [], + "somatic": [], + "anorexia's": [], + "phobic's": [], + "eliminateds": [], + "drawersing": [], + "encircle": ["D", "S", "G", "L"], + "belittling": [], + "medias": [], + "niggards": [], + "lorries's": [], + "refectory's": [], + "pugilistic": [], + "Margarito's": [], + "tumbrels": [], + "F'sed": [], + "Tex": ["M"], + "explosive'sly": [], + "Sarajevo's": [], + "epochal": [], + "rotund": ["P"], + "Dayton": ["M"], + "fabricator": ["S", "M"], + "draggier": [], + "Englishwomen": ["M"], + "Dramamines": [], + "rejuvenateds": [], + "ensilage's": [], + "pander": ["M", "D", "R", "Z", "G", "S"], + "give": ["Z", "G", "J", "R", "S"], + "whoopersing": [], + "Chaitanya": ["M"], + "clewing": [], + "tea's": [], + "coronets": [], + "coiners": [], + "horseflies": [], + "collator'ses": [], + "glittering": [], + "potholder": ["M", "S"], + "refs": [], + "marshaleding": [], + "stead's": [], + "toilersing": [], + "Chaney's": [], + "gawping": [], + "auspice": ["S", "M"], + "Yukon": ["M"], + "crust": ["S", "M", "D", "G"], + "vilification": ["M"], + "leopard": ["S", "M"], + "crosscheck'sed": [], + "toucheds": [], + "reopeneding": [], + "suspense": ["X", "M", "N"], + "volt's": [], + "educationalist": ["S"], + "meanies's": [], + "geneticist's": [], + "Velcro's": [], + "snippiest": [], + "cobwebs's": [], + "brokenheartedly": [], + "breadbasket": ["S", "M"], + "multiparty": [], + "Lowenbrau": ["M"], + "pryinged": [], + "fagots": [], + "entrepreneurs": [], + "deliberateness": ["M"], + "harps": [], + "keyboardings": [], + "Loyang's": [], + "constructiveliness": [], + "desalinate": ["G", "N", "D", "S"], + "griped": [], + "edifieder": [], + "bracket's": [], + "singlets": [], + "repeats's": [], + "accidents": [], + "gossip": ["M", "D", "R", "Z", "G", "S"], + "nonparticipant's": [], + "cantata": ["M", "S"], + "lap's": [], + "comakers": [], + "chlamydiae": [], + "autographing": [], + "rag": ["S", "G", "M", "D"], + "cereals": [], + "semiweekly": ["S", "M"], + "yashmak": ["S"], + "CATV": [], + "defecation": ["M"], + "ballcocks": [], + "flirt'sed": [], + "teed": [], + "greenfly": ["S"], + "appraised": [], + "hardship's": [], + "amortize": ["D", "S", "G", "B"], + "alum's": [], + "myth's": [], + "incestuousness's": [], + "meteorology": ["M"], + "shellacking's": [], + "memos": [], + "finch's": [], + "aft": ["R", "Z"], + "assessed": [], + "binnacles's": [], + "smartened": [], + "sunbatheder": [], + "unwiser": [], + "papergirl's": [], + "thunderous": ["Y"], + "contemptible": [], + "lackadaisically": [], + "classifier'ses": [], + "gutty": ["R", "T"], + "bleepeder": [], + "wonderland": ["M", "S"], + "antiserum'ses": [], + "announcer's": [], + "busteder": [], + "unperformed": [], + "legates": [], + "Tangshan": ["M"], + "Latinos's": [], + "align": ["A", "L", "G", "D", "S"], + "jeep's": [], + "chairman's": [], + "impugnersing": [], + "locavores's": [], + "Algonquin's": [], + "temperers": [], + "title": ["D", "S", "M", "G"], + "trampolininged": [], + "cataclysm's": [], + "Bacchus": ["M"], + "institutionalizeds": [], + "Stout's": [], + "Kazan": ["M"], + "Gautier's": [], + "castanet": ["M", "S"], + "Pitts": ["M"], + "flouts": [], + "goldfinch": ["M", "S"], + "misread": ["G", "J", "S"], + "overdrive's": [], + "baguette'ses": [], + "curacao": [], + "overseas": [], + "enshrouds": [], + "borzoi": ["S", "M"], + "mesospheres": [], + "heartbeat'ses": [], + "Eratosthenes's": [], + "meriting": [], + "undone": [], + "dependability's": [], + "scouters": [], + "delicacies's": [], + "Sasquatch'ses": [], + "consecrating": [], + "kilometer'ses": [], + "cannon's": [], + "hilltop's": [], + "Broadway": ["S", "M"], + "Dalton's": [], + "contradistinction'ses": [], + "impoundeding": [], + "goriness": ["M"], + "than": [], + "outshone": [], + "hairnets's": [], + "sculleries": [], + "backslashes": [], + "subterfuges": [], + "hellebore's": [], + "inter": ["E", "S", "L"], + "pressure": ["D", "S", "M", "G"], + "exhilaration": ["M"], + "disinfectant": ["M", "S"], + "Stetson's": [], + "safes": [], + "Sicilian's": [], + "Jerald's": [], + "fiverser": [], + "Zagreb's": [], + "dismissively": [], + "miseries's": [], + "lanais's": [], + "Keller": ["M"], + "familiarization": ["M"], + "Mississippians's": [], + "syncopated": [], + "speeding's": [], + "synagogal": [], + "astrology": ["M"], + "goaltenders": [], + "muskeg": ["M", "S"], + "Regor": ["M"], + "Loire": ["M"], + "undesirable's": [], + "Bryce": ["M"], + "deem": ["A", "S", "G", "D"], + "modification": ["M"], + "Namath's": [], + "whelk's": [], + "bands": [], + "orientations": [], + "mountings": [], + "sharpest": [], + "Iva's": [], + "passes": [], + "Avery": ["M"], + "betterment": ["M"], + "sex's": [], + "doer's": [], + "enticesment": [], + "pinpoint": ["S", "G", "M", "D"], + "blinkering": [], + "shin's": [], + "trigonometry": ["M"], + "virginals": [], + "fertilize": ["D", "R", "S", "Z", "G"], + "windsurfers": [], + "misprint'sed": [], + "fishery's": [], + "quoiting": [], + "sheikh's": [], + "junctures": [], + "reform's": [], + "heck's": [], + "compositors's": [], + "tendril's": [], + "cohesive": ["Y", "P"], + "guys": [], + "weekendeder": [], + "spacier": [], + "PD": [], + "Elinor": ["M"], + "spherically": [], + "Senegalese's": [], + "BLT's": [], + "ways": [], + "warlord's": [], + "vermiculite": ["M"], + "Lebanon's": [], + "Greta's": [], + "clef": ["S", "M"], + "Newfoundlander": [], + "Napoleon'ses": [], + "duffer's": [], + "sous": [], + "exhorts": [], + "listenable's": [], + "testimonial's": [], + "rowdiness": ["M"], + "embalmer": ["M"], + "Cathryn": ["M"], + "approbation's": [], + "gunboat": ["S", "M"], + "Liverpudlian's": [], + "negativeness's": [], + "firsts": [], + "bawling's": [], + "sidewalls": [], + "retrofit": ["S", "M"], + "hermitage's": [], + "hinterland": ["S", "M"], + "dirigible's": [], + "validatingen": [], + "glibness": ["M"], + "dryers": [], + "serfs": [], + "unrighteous": [], + "com": ["J", "L"], + "linen": ["S", "M"], + "relating": [], + "tweeting": [], + "influencinged": [], + "hairspring's": [], + "pair'sed": [], + "peculiar": ["Y"], + "dimwitted": [], + "Phaedra's": [], + "coaxer": ["M"], + "precluding": [], + "swing's": [], + "defensive's": [], + "misdo": ["J", "G"], + "Baikal's": [], + "overcast'sing": [], + "apogee'ses": [], + "Jewishness's": [], + "melee": ["S", "M"], + "hard": ["N", "R", "Y", "X", "T", "P"], + "scad's": [], + "modern's": [], + "vibraphone": ["M", "S"], + "withal": [], + "pillow": ["G", "M", "D", "S"], + "festerers": [], + "justifieds": [], + "GNU's": [], + "Anacreon's": [], + "clapper": ["M", "S"], + "Carey": ["M"], + "button's": [], + "doxologies's": [], + "Apocrypha": ["M"], + "peter's": [], + "casting's": [], + "regrets": [], + "Hensley": ["M"], + "regularities": [], + "coinsurance": ["M"], + "screwdriver'ses": [], + "garrulousnessly": [], + "Corvallis": ["M"], + "platoonsing": [], + "sensuousliness": [], + "senselessly": [], + "battledress": [], + "outcasts": [], + "flowering": ["S"], + "ranching's": [], + "Kings": [], + "Knickerbocker": ["M"], + "greed": ["M"], + "jobbers's": [], + "associations": [], + "caucus": ["M", "D", "S", "G"], + "Cagney's": [], + "Alvaro's": [], + "babysit": ["S"], + "interceptor's": [], + "mutilationens": [], + "hardtops's": [], + "deaconess'ses": [], + "parlay": ["G", "M", "D", "S"], + "skimps": [], + "lionization": ["M"], + "nearer": [], + "acknowledgesing": [], + "conglomeratesens": [], + "older": [], + "Hahn's": [], + "woodsiness": ["M"], + "gatecrash": ["D", "R", "S", "Z", "G"], + "winked": [], + "cannabises": [], + "volunteer'sed": [], + "forgather": ["S", "D", "G"], + "gusheder": [], + "parakeets": [], + "Shawnees": [], + "informants": [], + "layups's": [], + "tortuously": [], + "harmonizinged": [], + "pharmacy's": [], + "staggering": ["Y"], + "impelled": [], + "suffusion's": [], + "persuasive": ["P", "Y"], + "wanderingsers": [], + "artfulness's": [], + "anointinged": [], + "retrofireds": [], + "gunmen": [], + "Klee's": [], + "Wii's": [], + "complacently": [], + "deductive": ["Y"], + "discernsed": [], + "indwell": ["S", "G"], + "sources's": [], + "propositioning": [], + "pickerels": [], + "bracing": [], + "Reba's": [], + "PW": [], + "laudable": [], + "Britannica": ["M"], + "janitors": [], + "lift": ["M", "D", "R", "S", "Z", "G"], + "rotten": ["T", "P", "R", "Y"], + "employing": [], + "cherub": ["M", "S"], + "ammeter's": [], + "emery": ["M"], + "interlopeder": [], + "coleuses": [], + "lawbreakers's": [], + "turnbuckle's": [], + "Virgos": [], + "alga": ["M"], + "Pisces's": [], + "lintel'ses": [], + "parsons": [], + "uninstallsers": [], + "existentialist": ["M", "S"], + "Kalashnikov": ["M"], + "intermezzo": ["M", "S"], + "exhilarates": [], + "proton": ["S", "M"], + "slats": [], + "flavorsome": [], + "mudroom": ["M", "S"], + "Pharisaic": [], + "swankings": [], + "stems": [], + "soapeding": [], + "subterfuge's": [], + "lies's": [], + "severs": [], + "Anglophobe": [], + "dormer": ["M"], + "trilled": [], + "featherweight": ["M", "S"], + "back's": [], + "californium's": [], + "democratizes": [], + "centsers": [], + "beeline": ["M", "S"], + "Denny's": [], + "press": ["A", "C", "G", "S", "D"], + "mocha's": [], + "batch's": [], + "history's": [], + "hotelier": ["M", "S"], + "divinely": [], + "indiscipline": [], + "refurbish": [], + "seedcase'ses": [], + "torquinged": [], + "Blackfoot's": [], + "bentwood": ["M"], + "ophthalmologist": ["S", "M"], + "funnest": [], + "trail's": [], + "remission": [], + "peoplinged": [], + "Tallchief's": [], + "towhee's": [], + "Sakharov": ["M"], + "bloomersing": [], + "Khyber": ["M"], + "stoplights": [], + "noncombatant's": [], + "Bearnaise's": [], + "wuss": ["M", "S"], + "frogman": ["M"], + "pledging": [], + "courtiers": [], + "nonreciprocals's": [], + "rescuersing": [], + "alts": [], + "pillar's": [], + "garages's": [], + "finagle": ["D", "R", "S", "Z", "G"], + "Saharan's": [], + "iciness's": [], + "carbonateds": [], + "grandfather's": [], + "swatter's": [], + "Derick's": [], + "robe's": [], + "triumvir's": [], + "pruneder": [], + "carted": [], + "slipcover's": [], + "sag's": [], + "confluences": [], + "Ouijas": [], + "fatalism": ["M"], + "risky": ["R", "P", "T"], + "Essie's": [], + "fanciable": [], + "Mali's": [], + "warthog's": [], + "head's": [], + "meadowlark": ["M", "S"], + "sherbet": ["S", "M"], + "gannet": ["S", "M"], + "inexpensive": [], + "Vicky": ["M"], + "strengthens": [], + "transcribes": [], + "vignette'sing": [], + "faun's": [], + "chevron's": [], + "paramecia": [], + "scone": ["M", "S"], + "cowpuncher": ["S", "M"], + "fingerboard": ["S", "M"], + "ruse's": [], + "outgrown": [], + "bulbous": [], + "denounced": [], + "anglophone": ["S"], + "flummoxed": [], + "spike'sing": [], + "blankness's": [], + "klutzierness": [], + "humiliates": [], + "iodine's": [], + "clusters": [], + "mamba": ["S", "M"], + "muzzles": [], + "persecuteds": [], + "coursing's": [], + "benefited": [], + "padlocks": [], + "consciousness's": [], + "usefulness": ["M"], + "Latino": ["S", "M"], + "commodification": [], + "experimentsers": [], + "drying": [], + "misbehavior's": [], + "ruthlessliness": [], + "versifier": ["M"], + "ultralights": [], + "equitation's": [], + "palliative's": [], + "threatened": [], + "Fermat's": [], + "salesgirl's": [], + "retirement": ["M", "S"], + "lepton's": [], + "ballgown": ["S"], + "Golding": ["M"], + "blast": ["Z", "G", "M", "D", "R", "S"], + "accommodating": ["Y"], + "banished": [], + "tacky": ["R", "T", "P"], + "ceremoniousness": ["M"], + "nonbelligerents": [], + "smoothed": [], + "hostelry": ["S", "M"], + "apprise": ["G", "D", "S"], + "tepees's": [], + "walker's": [], + "homeys": [], + "array'sed": [], + "mainspring'ses": [], + "downtime's": [], + "clams's": [], + "blindness's": [], + "hereupon": [], + "haymows's": [], + "snivel": ["S", "M", "D", "R", "Z", "G"], + "conservative'sly": [], + "scamp'ser": [], + "spottily": [], + "highlighteder": [], + "assurances's": [], + "snoopier": [], + "reacquireds": [], + "fluency": ["M"], + "reembody": [], + "Enos's": [], + "rills": [], + "breasted": [], + "gateway'ses": [], + "Davy": ["S", "M"], + "wickets's": [], + "Thant": ["M"], + "Holt's": [], + "pharmaceutics's": [], + "stanchions": [], + "mound's": [], + "supervises": [], + "wiggling": [], + "synthesizer's": [], + "vanish": ["J", "D", "S", "G"], + "precooked": [], + "vests": [], + "ornithologist'ses": [], + "sleuthing": [], + "cheapskate'ses": [], + "eradicatingen": [], + "linkages": [], + "chorale": ["M", "S"], + "Guerra": ["M"], + "Onassis": ["M"], + "crazes": [], + "massivenessly": [], + "upraise": ["D", "S", "G"], + "subways": [], + "Ramos": ["M"], + "Macias's": [], + "recrimination": ["M"], + "perming": [], + "dinnertime's": [], + "yogi's": [], + "Gasser's": [], + "agree": ["E", "B", "L", "D", "S"], + "energizes": [], + "arcs": [], + "takeover's": [], + "screech's": [], + "fibs's": [], + "spendable": [], + "commissioner": ["S", "M"], + "tit": ["S", "M"], + "cooler's": [], + "scissoreds": [], + "wiles": [], + "translation": ["M"], + "warmongering's": [], + "Frankie": ["M"], + "calveds": [], + "substitutions's": [], + "bounteously": [], + "felons's": [], + "imperials": [], + "flibbertigibbets": [], + "veal's": [], + "elusively": [], + "stately": ["P", "R", "T"], + "vileness's": [], + "duplicate": ["A", "G", "N", "D", "S"], + "spinneys": [], + "Esquires": [], + "provokesers": [], + "trundle'sers": [], + "rep": ["S", "M"], + "subcontinents's": [], + "glitcheds": [], + "Xuzhou": ["M"], + "dragooned": [], + "hydroplaned": [], + "wastebaskets": [], + "clenches": [], + "suites's": [], + "Ore": ["N"], + "colonies": [], + "gnarled": [], + "stadium'ses": [], + "globalization": ["M"], + "stifle": ["D", "S", "J", "G"], + "benefice's": [], + "nontransferable": [], + "pettifoggers": [], + "cagier": [], + "bivouacking": [], + "rehearsing": [], + "newsdealers": [], + "William's": [], + "sagest": [], + "romance'sers": [], + "terminatesing": [], + "illustration's": [], + "misbegotten": [], + "obsession": ["S", "M"], + "limperly": [], + "potholers": [], + "gormandize": ["D", "R", "S", "Z", "G"], + "randomness's": [], + "overcrowdsed": [], + "sip": ["S", "M"], + "winsomest": [], + "gowns": [], + "derivations": [], + "wickedness": ["M"], + "specializing": [], + "bah": [], + "canal'ses": [], + "prehistorical": ["Y"], + "brill": [], + "fervor's": [], + "Angolan's": [], + "afghan'ses": [], + "quaffed": [], + "Newfoundlanders": [], + "spewersing": [], + "slipways's": [], + "stratifies": [], + "outages": [], + "mannequin's": [], + "passphrase": ["S"], + "approximating": [], + "nonreactive": [], + "Bell's": [], + "Marylou's": [], + "swifts": [], + "produce": ["A", "Z", "G", "D", "R", "S"], + "immunity's": [], + "dredge's": [], + "gluten": ["M"], + "coordinator'ses": [], + "pureeing": [], + "vanillas": [], + "hitchhikes's": [], + "Adirondack": ["S", "M"], + "daringly": [], + "Fanny": ["M"], + "Union": ["S", "M"], + "spacers": [], + "superseding": [], + "Basel's": [], + "screenwriters's": [], + "honorifics": [], + "taste'sers": [], + "centigrade": [], + "Cray": ["M"], + "balusters": [], + "nitpicksers": [], + "socialite's": [], + "Gemini's": [], + "faked": [], + "built": ["A", "I"], + "pedantry": ["M"], + "gotcha": ["S"], + "sandal's": [], + "performer": ["M"], + "adjudicator": ["S", "M"], + "negativism": ["M"], + "flintiest": [], + "discordant": ["Y"], + "share": ["M", "Z", "G", "D", "R", "S"], + "candieds": [], + "Kennedy's": [], + "violist'ses": [], + "sourced": [], + "feints": [], + "axis's": [], + "recriminated": [], + "Indiana's": [], + "avowed": ["Y"], + "guest": ["S", "G", "M", "D"], + "Ophelia's": [], + "detachments": [], + "warped": [], + "helper's": [], + "heftier": [], + "thingsing": [], + "Rodney": ["M"], + "Erin's": [], + "Glenna's": [], + "typewriting": ["M"], + "emotionalizeds": [], + "wormeds": [], + "monikers": [], + "Osbert's": [], + "salines's": [], + "stooge": ["M", "S"], + "homemaking": ["M"], + "Brillo": ["M"], + "dongles's": [], + "marksman's": [], + "unshaped": [], + "sidewall'ses": [], + "Briana's": [], + "crustiness": ["M"], + "stimulation's": [], + "societies": [], + "Oedipal's": [], + "overproduces": [], + "puny": ["T", "R", "P"], + "conscience": [], + "secedesing": [], + "spitefully": [], + "profiteroles's": [], + "Peloponnese": ["M"], + "eavesdropped": [], + "followed": [], + "wordbooks's": [], + "staplersing": [], + "jettison'sed": [], + "plainsong's": [], + "agrarian'ses": [], + "tilersing": [], + "anglophones": [], + "hairsbreadth's": [], + "disdain'sed": [], + "fairies": [], + "firth": ["M"], + "cobras": [], + "doohickey's": [], + "officials": [], + "herpetology": ["M"], + "Socratic": ["M"], + "pictureds": [], + "nymphomaniacs's": [], + "correlation": ["M"], + "fixture'ses": [], + "variable": ["I", "S", "M"], + "multifariousness's": [], + "jennet": ["M", "S"], + "Coppertone's": [], + "fractionally": [], + "hypothesis's": [], + "footless": [], + "winos": [], + "stakeholders": [], + "Wehrmacht": ["M"], + "handmaid's": [], + "Nelda": ["M"], + "Kaufman": ["M"], + "consent": ["S", "M", "D", "G"], + "Cassidy's": [], + "contumelious": [], + "theism": ["M"], + "millenniums": [], + "Ryukyu": ["M"], + "brocade'sing": [], + "restrictiveness's": [], + "rondos's": [], + "demographics's": [], + "vertebrates": [], + "marauds": [], + "stupiderly": [], + "pictured": [], + "taker'ses": [], + "fracas's": [], + "resurgences": [], + "winsing": [], + "wildfowl's": [], + "chili's": [], + "burlesqued": [], + "sextant's": [], + "ripcords": [], + "irrelevance": ["M", "S"], + "arrases": [], + "ballsesing": [], + "lies": [], + "alliteration's": [], + "aromatherapist's": [], + "proselyting": [], + "gags's": [], + "racketing": [], + "headwords's": [], + "flowerpot'ses": [], + "exultant": ["Y"], + "Ahmadinejad's": [], + "skycap's": [], + "judicature's": [], + "unforgotten": [], + "composition's": [], + "boost'sed": [], + "interplay's": [], + "snaky": ["R", "T"], + "anchor's": [], + "Mennen's": [], + "sincere": ["I", "Y", "T"], + "lab's": [], + "aggressiveness": ["M"], + "terrycloth": ["M"], + "sexy": ["P", "T", "R"], + "plush": ["M", "R", "Y", "T", "P"], + "visually": [], + "larkspurs's": [], + "retractile": [], + "crimpeding": [], + "prevent": ["D", "B", "S", "G", "V"], + "Weller's": [], + "windstorms": [], + "Rickey's": [], + "nutritionists": [], + "integers": [], + "Melinda": ["M"], + "Puritanism'ses": [], + "leaver's": [], + "undies": ["M"], + "Betty's": [], + "actuators": [], + "spinals's": [], + "haziness's": [], + "tasters": [], + "Bonn": ["M", "R"], + "Huguenot'ses": [], + "oozes": [], + "thrashersing": [], + "foothills": [], + "rift's": [], + "topspin's": [], + "screamer": ["M"], + "toff": ["S"], + "essence's": [], + "neglects": [], + "projections's": [], + "handcraft": ["S", "M", "D", "G"], + "Agricola": ["M"], + "pending": [], + "Jenifer's": [], + "depletes": [], + "anaerobic": [], + "overalls's": [], + "matchbox'ses": [], + "crosspiece's": [], + "Malta": ["M"], + "pyramidal": [], + "pistil's": [], + "antimacassar'ses": [], + "jotting": ["M", "S"], + "anthers": [], + "scruffierness": [], + "detonationed": [], + "contested": ["U"], + "sluices's": [], + "lecterns": [], + "Casanovas": [], + "makeshifts's": [], + "Hamill's": [], + "shadow": ["S", "G", "M", "D"], + "defective's": [], + "cutaneous": [], + "trefoils's": [], + "lymphocytes's": [], + "wpm": [], + "hyphen'sed": [], + "pelteds": [], + "Hilary's": [], + "disclosed": ["U"], + "Warwick's": [], + "videocassettes": [], + "vegetateds": [], + "scorekeeper": ["M", "S"], + "weekends": [], + "southeaster": ["M", "Y"], + "braised": [], + "easel": ["S", "M"], + "glorying": [], + "guideline's": [], + "Galibi": ["M"], + "orbiter": ["M"], + "Pahlavi": ["M"], + "purr": ["G", "M", "D", "S"], + "Yoko's": [], + "tigress": ["M", "S"], + "dobs": [], + "foggy": ["R", "T", "P"], + "Tues": ["M"], + "incognito's": [], + "henchmen": [], + "dragnet's": [], + "onslaughts": [], + "slowly": [], + "trafficker's": [], + "sysadmins": [], + "cooperating": [], + "graduatingen": [], + "cayenne": ["M"], + "sneereding": [], + "Bourbons's": [], + "Guy's": [], + "zappers": [], + "echo": ["A", "D", "G"], + "Antilles": ["M"], + "Karina's": [], + "gobbed": [], + "venues's": [], + "synchronization": ["S", "M"], + "counteroffer's": [], + "domesticates": [], + "prude": ["M", "S"], + "exemplifies": [], + "muslin's": [], + "hypothyroidism": ["M"], + "staunch": ["P", "D", "R", "S", "Y", "T", "G"], + "congestive": [], + "prophecy's": [], + "articulacy": ["I"], + "phrasal": [], + "willows": [], + "filigree": ["D", "S", "M"], + "pincushion'ses": [], + "cap": ["S", "M", "D", "R", "B", "Z"], + "Archean": ["M"], + "cutlass's": [], + "thrombotic": [], + "harmonicas": [], + "Glen's": [], + "Suzanne": ["M"], + "scarf'sed": [], + "prizefightersing": [], + "March's": [], + "pestling": [], + "thresher's": [], + "grammarians's": [], + "shieder": [], + "sculptress": ["M", "S"], + "Chagall's": [], + "moping": [], + "meddlers": [], + "unlocked": [], + "seductiveness": ["M"], + "paroxysm's": [], + "stationeder": [], + "mistimed": [], + "longbow's": [], + "lash's": [], + "Jonson": ["M"], + "erysipelas's": [], + "paraquat": ["M"], + "predisposeds": [], + "regulatory": [], + "autobiographic": [], + "can's": [], + "vocations's": [], + "seeings": [], + "assonant'ses": [], + "forearmings": [], + "feints's": [], + "paperback's": [], + "smartingness": [], + "impenetrably": [], + "authoritarians": [], + "Kilauea's": [], + "firehouses's": [], + "hindrance's": [], + "footballersing": [], + "Carissa's": [], + "specialist's": [], + "Kemp": ["M"], + "goosebumps": ["M"], + "interrelateds": [], + "specie's": [], + "dinginess": ["M"], + "adjunct's": [], + "smarteden": [], + "hawking": [], + "Herrera's": [], + "heralding": [], + "coalitionist": ["M", "S"], + "electroscopic": [], + "dome": ["M", "G", "D", "S"], + "smack's": [], + "impale": ["D", "S", "G", "L"], + "selfishliness": [], + "gouger": ["M"], + "rope's": [], + "multiplicand": ["M", "S"], + "abrasion's": [], + "mandalas's": [], + "bantam's": [], + "invitee": ["S", "M"], + "vapidity": ["M"], + "Brahms's": [], + "accumulative": [], + "complaint": ["S", "M"], + "berateds": [], + "counting": [], + "offhandedness's": [], + "carotid's": [], + "promptings": [], + "parenthetic": [], + "viva'ses": [], + "gulch": ["M", "S"], + "GA": [], + "repugnant": [], + "raviolis": [], + "bookmarks's": [], + "misters": [], + "rattler's": [], + "kaisers": [], + "spoiler's": [], + "vitiate": ["G", "N", "D", "S"], + "captivities": [], + "Abbasid's": [], + "nifty": ["T", "R"], + "Nelson's": [], + "embanked": [], + "ferrieds": [], + "destroyinged": [], + "maleficence's": [], + "drenching": [], + "circuitousness's": [], + "travailing": [], + "heartbreaks": [], + "atavism": ["M"], + "November's": [], + "blesseds": [], + "baron'ses": [], + "motorcycled": [], + "swills": [], + "backtracksed": [], + "Lamont's": [], + "ornamentation's": [], + "aimed": [], + "concubines": [], + "cams": [], + "Kandahar's": [], + "snarl's": [], + "bullring's": [], + "misaddressed": [], + "simpereds": [], + "Madonnas's": [], + "imperceptibility": ["M"], + "incarnate": ["A", "X", "G", "N", "D", "S"], + "princely": ["P", "R", "T"], + "burnisheder": [], + "decapitatingen": [], + "ululations": [], + "costar": ["S", "M"], + "masochism's": [], + "panelist": ["M", "S"], + "tampons": [], + "scuffleds": [], + "Murdoch's": [], + "daffy": ["P", "T", "R"], + "extras": [], + "coolly": [], + "taping": [], + "jackstraw's": [], + "Robbin'ses": [], + "flexibility": ["I", "M"], + "impoverishesment": [], + "Koppel": ["M"], + "tutted": [], + "bully's": [], + "cardsharpers": [], + "microfilm's": [], + "progenitors's": [], + "citizen's": [], + "garbling": [], + "academy": ["S", "M"], + "Christie's": [], + "gear's": [], + "connectings": [], + "hairbrushes": [], + "Guangzhou's": [], + "wipe'sers": [], + "newsstand's": [], + "parfaits": [], + "harpings": [], + "gilder's": [], + "receivership": ["M"], + "forties": [], + "swagger'sed": [], + "cuticle'ses": [], + "collisions": [], + "snowboardeder": [], + "liquidationsing": [], + "sawyers": [], + "toddies's": [], + "sniffer's": [], + "garden": ["S", "Z", "G", "M", "D", "R"], + "amalgamation's": [], + "garroter": ["M"], + "greenback's": [], + "filthiest": [], + "TVs's": [], + "en's": [], + "sentimentality's": [], + "seventies": [], + "porpoising": [], + "mujaheddin": [], + "Nigerian's": [], + "unforgettable": [], + "Ludhiana": ["M"], + "armchair'ses": [], + "pathogen": ["S", "M"], + "Crosby": ["M"], + "receptors": [], + "intercedinged": [], + "floater's": [], + "pursers": [], + "pavinged": [], + "Oxnard": ["M"], + "dipsomaniacs": [], + "jitterbug's": [], + "bibliographer": ["M", "S"], + "register'sed": [], + "cathartic": ["S", "M"], + "layperson'ses": [], + "incitements": [], + "shrimp": ["M", "D", "R", "S", "Z", "G"], + "Hindus": [], + "stray": ["G", "S", "M", "D"], + "resourcefulliness": [], + "loathersing": [], + "Ellie's": [], + "pullout": ["M", "S"], + "skip'ses": [], + "marbling's": [], + "orcs": [], + "fictionalization's": [], + "boustrophedon": [], + "zero": ["M", "D", "H", "S", "G"], + "bumptious": ["P", "Y"], + "raises": [], + "leveler's": [], + "capes's": [], + "tattoosers": [], + "engraving's": [], + "Balkan'ses": [], + "regatta": ["S", "M"], + "truck's": [], + "evangelic": [], + "overtiring": [], + "fuzz": ["M", "D", "S", "G"], + "naphthalene's": [], + "trucking's": [], + "hissed": [], + "scarves": [], + "wake": ["M", "G", "J", "D", "S"], + "smock'sed": [], + "thees": [], + "inapplicable": [], + "biologists": [], + "signalersing": [], + "distinctness": ["I", "M"], + "finned": [], + "Schwarzkopf": ["M"], + "miners": [], + "loot": ["M", "D", "R", "S", "Z", "G"], + "oceanography's": [], + "laddie's": [], + "ordinates": [], + "nucleon's": [], + "doggedness's": [], + "pivot'sed": [], + "haberdashery's": [], + "avoirdupois": ["M"], + "furloughing": [], + "ingredient'ses": [], + "orchards": [], + "sycophant": ["S", "M"], + "frankerly": [], + "hallucinate": ["G", "N", "X", "D", "S"], + "infestation's": [], + "straighteneder": [], + "monetarily": [], + "sphagnum": ["M", "S"], + "subtotal": ["S", "G", "M", "D"], + "canisters's": [], + "bickereder": [], + "contingent": ["S", "M", "Y"], + "rancorous": ["Y"], + "yogurt": ["S", "M"], + "snot'ses": [], + "necklaces": [], + "militant'sly": [], + "adventure": ["D", "R", "S", "M", "Z", "G"], + "thirstiness": ["M"], + "entailingment": [], + "Anglophile": ["M"], + "commune'sing": [], + "cabochon's": [], + "oilsing": [], + "lumpier": [], + "purposefulliness": [], + "waylaying": [], + "Rwandans": [], + "chalkboards": [], + "convicts's": [], + "tilers": [], + "unharness": [], + "parader's": [], + "ignoramus": ["M", "S"], + "nymphet's": [], + "laureateship's": [], + "manipulators": [], + "homogeneous": ["Y"], + "manicuringed": [], + "stat's": [], + "cannonballs's": [], + "allusively": [], + "fashionista's": [], + "trampleder": [], + "eave's": [], + "litheness's": [], + "reship": [], + "speederers": [], + "Glenda": ["M"], + "distinct": ["I", "Y", "T", "V", "P"], + "harmonically": [], + "surname'ses": [], + "mammoth's": [], + "prancing": ["Y"], + "unemotional": [], + "Shintos": [], + "limpeder": [], + "GM": ["M"], + "burl'sed": [], + "wholesomely": [], + "agriculturist's": [], + "prejudices": [], + "joules's": [], + "archipelagos": [], + "Australasian": [], + "barista's": [], + "counts's": [], + "elms's": [], + "sonorousliness": [], + "Tishri's": [], + "unintelligible": [], + "steadiest": [], + "secondly": [], + "mislayings": [], + "trades": [], + "honorsing": [], + "Moroccans's": [], + "gingivitis": ["M"], + "undelivered": [], + "motel": ["S", "M"], + "paranoid's": [], + "impedes": [], + "buddy": ["S", "M"], + "lams's": [], + "refile": [], + "undersecretary's": [], + "morocco's": [], + "Reginald's": [], + "sufferers": [], + "punchesers": [], + "hocks": [], + "nutrition": ["M"], + "ebb": ["S", "M", "D", "G"], + "prodding": [], + "corpsman's": [], + "conveyor's": [], + "mythologists": [], + "smoky": ["R", "T", "P"], + "vindicate": ["X", "D", "S", "G", "N"], + "appareling": [], + "omnivorously": [], + "exercised": [], + "Crecy's": [], + "thymus'ses": [], + "spooling": [], + "nurturer": ["M"], + "nuisance'ses": [], + "skulkers": [], + "brighter": [], + "Malayalam's": [], + "Frederic's": [], + "concocteding": [], + "forefronts's": [], + "risottos": [], + "bladder'ses": [], + "tiddlywink": ["S"], + "Onega's": [], + "kneadsers": [], + "clapboardeding": [], + "stilettos": [], + "becomingly": [], + "bogon": [], + "bill's": [], + "dampensers": [], + "Daugherty's": [], + "Carthage": ["M"], + "announcesment": [], + "stockbreeder": ["M", "S"], + "generalization's": [], + "arthritics": [], + "rabies's": [], + "easternmost": [], + "leprechaun": ["M", "S"], + "Tinseltown's": [], + "readablings": [], + "catamarans": [], + "clamors": [], + "justerly": [], + "situational": [], + "Allie": ["M", "S"], + "tintype's": [], + "pudgy": ["P", "R", "T"], + "Chittagong's": [], + "flagon'ses": [], + "mindersing": [], + "slump'sed": [], + "wodges": [], + "handhold's": [], + "recrudesced": [], + "Tegucigalpa": ["M"], + "Gould's": [], + "punctiliousness's": [], + "arbitrage'sers": [], + "intertwining": [], + "contacted": [], + "brown's": [], + "imperilings": [], + "silentlies": [], + "twirled": [], + "Griffin": ["M"], + "Excedrin's": [], + "Batman": ["M"], + "Coleman": ["M"], + "slenderizes": [], + "adds": [], + "cuteys": [], + "freighterers": [], + "marauding": [], + "Saxon": ["M", "S"], + "Nellie": ["M"], + "weeklies's": [], + "plowing": [], + "transitionally": [], + "outbuilding'ses": [], + "Alcibiades": ["M"], + "dike's": [], + "gunners": [], + "bastardized": [], + "instanced": [], + "semester": ["S", "M"], + "pittance'ses": [], + "funk": ["M", "D", "G", "S"], + "amplitudes's": [], + "burnable's": [], + "hostelry's": [], + "cheesecloth": ["M"], + "Rheingau's": [], + "determinate": [], + "scandals": [], + "windburn's": [], + "frizzling": [], + "extraterrestrial": ["M", "S"], + "gulch'ses": [], + "stripper'ses": [], + "sale": ["A", "B", "M", "S"], + "Bojangles": ["M"], + "ardently": [], + "retool": [], + "eyepiece": ["M", "S"], + "spikier": [], + "abscessesing": [], + "ayes": [], + "rappelling": [], + "belong": ["J", "D", "G", "S"], + "next": ["M"], + "jocosely": [], + "Israelis": [], + "nondiscriminatory": [], + "darn'sed": [], + "fielder's": [], + "tingeing": [], + "replicates": [], + "temporized": [], + "coinages": [], + "weaponless": [], + "canvassed": [], + "woke": [], + "readership": ["S", "M"], + "Marlowe's": [], + "pressurize": ["C", "G", "D", "S"], + "countermen": [], + "Wilford": ["M"], + "youngish": [], + "Ieyasu": ["M"], + "Frankel's": [], + "antagonistic": [], + "blacked": [], + "privateer": ["S", "M"], + "Butterfingers's": [], + "stutterers": [], + "reusable": [], + "mime'sing": [], + "Mowgli's": [], + "palanquins": [], + "concomitant's": [], + "Aborigine": ["M", "S"], + "patching": [], + "Tonga": ["M"], + "astrolabes's": [], + "schizoid's": [], + "hoecakes's": [], + "scowlsing": [], + "beatification": ["M"], + "WAC": [], + "enjoininged": [], + "silver'sed": [], + "promoter's": [], + "overload": ["G", "M", "D", "S"], + "gelcap's": [], + "dingily": [], + "Montrachet's": [], + "forwardness's": [], + "unsuitable": [], + "watchtowers": [], + "ratification": ["M"], + "idleness's": [], + "grid'ses": [], + "paisleys": [], + "beefcakes": [], + "delectable": [], + "pumice": ["S", "M"], + "Cassandras's": [], + "retaliations": [], + "preferentially": [], + "digger": ["S", "M"], + "whorls": [], + "Delius's": [], + "bombast's": [], + "microscopical": ["Y"], + "irreclaimable": [], + "causinged": [], + "mollycoddle": ["D", "S", "M", "G"], + "doltishness": ["M"], + "circularize": ["D", "S", "G"], + "swift'ser": [], + "ravel's": [], + "moochers": [], + "Luella": ["M"], + "O'Rourke's": [], + "nibbler": ["M"], + "mendelevium's": [], + "defacement": ["M"], + "generous": ["P", "Y"], + "therapist's": [], + "truck'sed": [], + "consults": [], + "bacchanalians": [], + "Molina's": [], + "furred": [], + "healthiness": ["U", "M"], + "observersing": [], + "referral": ["S", "M"], + "blushers": [], + "Delaware'ses": [], + "wursts's": [], + "border'sed": [], + "scarily": [], + "neurologist": ["S", "M"], + "bougainvilleas": [], + "therapies": [], + "Atlases": [], + "larges": [], + "refracted": [], + "septuagenarian's": [], + "jilting": [], + "internist": ["M", "S"], + "obliteration": ["M"], + "clime's": [], + "melanoma's": [], + "causeways's": [], + "fogies": [], + "troubleshoots": [], + "underdogs": [], + "justification": ["M"], + "soldiering": [], + "theologians's": [], + "beater's": [], + "friedcake's": [], + "laughing's": [], + "Taoist'ses": [], + "sappers": [], + "endorsed": [], + "sachem": ["S", "M"], + "talk's": [], + "Schwinn": ["M"], + "quickie's": [], + "Folgers": ["M"], + "buffets's": [], + "alphabets's": [], + "crucially": [], + "doodlebugs": [], + "prep's": [], + "Mideast": [], + "housework": ["M"], + "link's": [], + "detects": [], + "forenameds": [], + "vixen": ["S", "M"], + "liquor's": [], + "obituaries": [], + "footnote'sing": [], + "fantasias": [], + "nervelessliness": [], + "coked": [], + "offsetting": [], + "specificationers": [], + "renewed": [], + "Beach": ["M"], + "hawkishness": ["M"], + "antler": ["M", "D", "S"], + "fragrant": ["Y"], + "typewrite": ["R", "S", "Z", "G"], + "Eastman": ["M"], + "mountain's": [], + "Mongolian": ["S", "M"], + "berry": ["G", "D", "S", "M"], + "knockouts": [], + "fascist'ses": [], + "muffle": ["Z", "G", "D", "R", "S"], + "prettied": [], + "puddings's": [], + "implores": [], + "Rontgen": [], + "stretch's": [], + "tunnels's": [], + "filterables": [], + "crumb": ["S", "M", "D", "Y", "G"], + "gearshift'ses": [], + "antivivisectionist's": [], + "Ingram": ["M"], + "gunfire's": [], + "fishers": [], + "missals's": [], + "sapling": ["M", "S"], + "swim'ses": [], + "demonstrator's": [], + "Aborigine'ses": [], + "exasperation's": [], + "harping": [], + "Mayas's": [], + "brokering": [], + "religiousness": ["M"], + "classicist's": [], + "showing": ["M"], + "bunglersing": [], + "grippinged": [], + "meaning's": [], + "Shinto": ["M", "S"], + "toggled": [], + "choppered": [], + "paraquat's": [], + "snarlier": [], + "warps": [], + "cobra's": [], + "nozzle's": [], + "besieger": ["M"], + "racist's": [], + "ontogeny": ["M"], + "mousiness": ["M"], + "gunwale": ["M", "S"], + "charterer": ["M", "S"], + "rugged": ["P", "T", "R", "Y"], + "manning": ["U"], + "prelacy": ["M"], + "epistles's": [], + "anapestic'ses": [], + "quoting": [], + "Trinidad": ["M"], + "basked": [], + "breakage's": [], + "Lionel's": [], + "biorhythms": [], + "Richards": ["M"], + "pirate": ["D", "S", "M", "G"], + "mush": ["M", "D", "R", "S", "Z", "G"], + "static": ["S", "M"], + "lied's": [], + "fairing": ["M"], + "celebrant's": [], + "burgundies": [], + "grudges": [], + "Corvus": ["M"], + "Jamie": ["M"], + "Darrin": ["M"], + "predication's": [], + "newsflash": ["S"], + "chemical's": [], + "Poles": [], + "vegetating": [], + "Utopian's": [], + "alumina's": [], + "harmonizeder": [], + "Judith": ["M"], + "refinance": [], + "cowpunchers's": [], + "postmaster's": [], + "batterings": [], + "Yorktown": ["M"], + "Almighty's": [], + "inductively": [], + "unmissed": [], + "vanquishinged": [], + "wade": ["M", "S"], + "outing": ["M"], + "housewife": ["M", "Y"], + "operative's": [], + "oscillating": [], + "rusts": [], + "Juliet": ["M"], + "ovoid'ses": [], + "insubordination": [], + "seaman's": [], + "towels's": [], + "cockeding": [], + "Concepcion": ["M"], + "cravenness's": [], + "stream's": [], + "Verdi": ["M"], + "mahoganies's": [], + "hallooing": [], + "spites": [], + "proratesing": [], + "jackpot's": [], + "Crimean": ["M"], + "fluctuatesens": [], + "ivy": ["D", "S", "M"], + "misleads": [], + "earmarked": [], + "freeder": [], + "Devonian": ["M"], + "Caesars's": [], + "unmeasured": [], + "gizzards": [], + "kite'ses": [], + "militant": ["M", "Y", "S"], + "prosodies's": [], + "beachwear's": [], + "blackjackeding": [], + "Davids": [], + "transoms": [], + "Mendez's": [], + "astrophysics": ["M"], + "astringency": ["M"], + "ginkgo's": [], + "demurrals's": [], + "chunterings": [], + "uprisings": [], + "stated": ["U"], + "deck's": [], + "grizzling": [], + "implosion'ses": [], + "bust": ["M", "D", "R", "Z", "G", "S"], + "resonateds": [], + "presiding": [], + "Stirling's": [], + "herring'ses": [], + "doer": ["M"], + "pointedly": [], + "besets": [], + "lathersing": [], + "pulley": ["S", "M"], + "gamma": ["S", "M"], + "greensward": ["M"], + "perches": [], + "denim's": [], + "coaxeder": [], + "Lome's": [], + "comma's": [], + "bran's": [], + "inertly": [], + "rail's": [], + "fast": ["M", "D", "R", "T", "G", "S", "P"], + "fiefdom": ["M", "S"], + "balksing": [], + "bum": ["S", "M"], + "technetium": ["M"], + "scrap's": [], + "tarp's": [], + "workers": [], + "Hindus's": [], + "defames": [], + "phaseouts's": [], + "ingenuity": ["M"], + "AFB": [], + "strudel's": [], + "Gould": ["M"], + "pairsing": [], + "Scribner's": [], + "paragons": [], + "hyperventilates": [], + "scattering's": [], + "reddensed": [], + "Maeterlinck's": [], + "cunningerly": [], + "flirtation'ses": [], + "absolutism": ["M"], + "active's": [], + "johns": [], + "appeasing": [], + "besting's": [], + "posteriors's": [], + "geysers": [], + "couldn't": [], + "exciter": ["M"], + "farthing's": [], + "grouch'sed": [], + "freighter": ["M"], + "whale": ["D", "R", "S", "M", "Z", "G"], + "golliwogs": [], + "crisscross'sed": [], + "rubble": ["M"], + "practicability's": [], + "margarine's": [], + "wineglasses": [], + "alcoholic'ses": [], + "lignite's": [], + "freshens": [], + "coined": [], + "outspent": [], + "concatenation's": [], + "Marylou": ["M"], + "referencing": [], + "inconformer": [], + "castrating": [], + "lootsers": [], + "Honecker": ["M"], + "resumed": [], + "anchorite's": [], + "ranch": ["M", "D", "R", "S", "Z", "G"], + "cheekinesser": [], + "coding": [], + "palmeds": [], + "shareholding": ["S"], + "suppressible": [], + "whinging": [], + "netiquette": ["S"], + "trustiers": [], + "generousness's": [], + "Bulawayo's": [], + "suet": ["M"], + "foghorn'ses": [], + "razorback'ses": [], + "Gilda's": [], + "fractal's": [], + "reeducation": [], + "backpackers": [], + "emanations": [], + "Suzanne's": [], + "monopolists's": [], + "manana'ses": [], + "convenience": ["I", "M", "S"], + "gambits": [], + "molars's": [], + "technician's": [], + "spaceship": ["S", "M"], + "characterizesing": [], + "primate's": [], + "hazardous": ["Y"], + "toaster": ["M"], + "motet": ["S", "M"], + "beeswax": ["M"], + "Fulbright": ["M"], + "sharpness": ["M"], + "kiwi": ["M", "S"], + "anvil's": [], + "frustrate": ["G", "N", "X", "D", "S"], + "poundeds": [], + "boobsing": [], + "tactfulliness": [], + "citizen": ["M", "S"], + "Ozarks's": [], + "bragger'ses": [], + "jolt'sed": [], + "exporting's": [], + "butterflyinged": [], + "glacially": [], + "splashdowns": [], + "groundsheets": [], + "cut'ser": [], + "lapse's": [], + "caberers": [], + "states's": [], + "romaine'ses": [], + "worthinesser": [], + "unwisely": [], + "wow'sed": [], + "swaps": [], + "sibling's": [], + "blockadinged": [], + "chapping": [], + "mastiff": ["S", "M"], + "helpmates": [], + "tritely": [], + "timely": ["U", "P", "R", "T"], + "sourness": ["M"], + "loneliers": [], + "angle'sers": [], + "miscounteds": [], + "parented": [], + "pegs's": [], + "riding's": [], + "abscess": ["M", "D", "S", "G"], + "viewed": [], + "midwinter's": [], + "incitement's": [], + "precondition'sed": [], + "honeymooner": ["M"], + "rescission's": [], + "colonizings": [], + "houselights": ["M"], + "iTunes's": [], + "yodelers": [], + "great'ser": [], + "preseason": ["S", "M"], + "overbooked": [], + "chefs": [], + "urbanerly": [], + "alveolar": ["S"], + "tentative": ["P", "Y"], + "brig'ses": [], + "Laotians's": [], + "shaven": ["U"], + "welding": [], + "brinkmanship's": [], + "publishing's": [], + "Thutmose's": [], + "pockmarked": [], + "reparation'ses": [], + "Laban's": [], + "influenza's": [], + "comics": [], + "fountains": [], + "checklist's": [], + "meatball's": [], + "basso": ["M", "S"], + "buzzword's": [], + "interregnums": [], + "monograms's": [], + "breath's": [], + "romp'sed": [], + "immorally": [], + "communicatesens": [], + "extremers": [], + "monies": [], + "hackneys's": [], + "aborting": [], + "dumbfounded": [], + "winning's": [], + "gainsayinger": [], + "circles": [], + "handball": ["M", "S"], + "unarguable": [], + "sucked": [], + "kick'sed": [], + "wanedly": [], + "desensitization": [], + "transitions's": [], + "noncom": ["M", "S"], + "notches": [], + "looseness": ["M"], + "impecuniousness's": [], + "sacrament'ses": [], + "doted": [], + "supertanker'ses": [], + "communicate": ["G", "N", "V", "D", "S", "X"], + "scruple's": [], + "congratulationed": [], + "fauvism": ["M"], + "graces's": [], + "illogically": [], + "pipit": ["M", "S"], + "pita'ses": [], + "newerly": [], + "quarrieds": [], + "cranium's": [], + "brags's": [], + "gherkin": ["M", "S"], + "hemlocks's": [], + "better's": [], + "mishmashes": [], + "celluloid": ["M"], + "engine": ["S", "M"], + "chaffing's": [], + "representational": [], + "properer": [], + "aloe's": [], + "worthiness's": [], + "mirrorings": [], + "expireds": [], + "jived": [], + "cacklersing": [], + "anticipatory": [], + "registrant'ses": [], + "leaseback": ["S", "M"], + "egged": [], + "contest": [], + "countries": [], + "masturbatory": [], + "Ramon": ["M"], + "berets": [], + "piquinged": [], + "Tycho": ["M"], + "obscenerly": [], + "unlucky": ["T"], + "city's": [], + "caps": [], + "Brad": ["M", "Y"], + "coopers": [], + "cached": [], + "mom": ["S", "M"], + "doctrine'ses": [], + "Artemis's": [], + "strategies's": [], + "hedges": [], + "rather": [], + "Whitley": ["M"], + "overcloudinged": [], + "harbingers": [], + "Gaulish": [], + "foil's": [], + "tastier": [], + "Sony": ["M"], + "portiere's": [], + "doorstop's": [], + "Nantucket's": [], + "reelinged": [], + "loosely": [], + "stemware's": [], + "empresses": [], + "coffeehouses": [], + "drizzleds": [], + "hindrances": [], + "herpes": ["M"], + "troopship'ses": [], + "preferences": [], + "rasp'sed": [], + "character's": [], + "admixed": [], + "Sc": ["M"], + "gutter'sed": [], + "hibachis": [], + "cruelties": [], + "malaria's": [], + "Rivera's": [], + "preservationist": ["S", "M"], + "inrefill": [], + "oppose": ["D", "S", "G"], + "needfully": [], + "vaping": [], + "olive's": [], + "noncontinuous": [], + "melancholy": ["M"], + "melody's": [], + "enforcer's": [], + "Nell's": [], + "Eve's": [], + "excitable": [], + "immovable": [], + "outsourced": [], + "exfoliated": [], + "Fresno's": [], + "endue": ["D", "S", "G"], + "rivet'sed": [], + "Roth": ["M"], + "seriousnessly": [], + "exon": ["M", "S"], + "bauxite": ["M"], + "sketchbook": ["S"], + "emirate's": [], + "gloamings's": [], + "epidemically": [], + "pitchforksing": [], + "uptake": ["S", "M"], + "drop's": [], + "Jaycees": ["M"], + "info's": [], + "bifurcating": [], + "sickeden": [], + "swankiest": [], + "sticker's": [], + "minx's": [], + "aphasics": [], + "appraises": [], + "endowed": [], + "bookmobiles": [], + "pesters": [], + "Brennan's": [], + "thievery's": [], + "axis": ["M"], + "matriculatingen": [], + "sketches": [], + "moccasins": [], + "Pantaloon's": [], + "sameness": ["M"], + "consignee'ses": [], + "equate": ["D", "S", "G", "N", "B", "X"], + "winnings": [], + "chesterfields's": [], + "ribber": ["S", "M"], + "stamina": ["M"], + "grape": ["S", "M"], + "stitcheds": [], + "canny": ["U", "T", "R"], + "acrobatic": ["S"], + "hangars": [], + "initialization": [], + "Parthia's": [], + "vogue": ["S", "M"], + "Brahma": ["M", "S"], + "hemlock's": [], + "cow's": [], + "greenrooms's": [], + "comity": ["M"], + "vertebrate'ses": [], + "mailbags": [], + "equalization's": [], + "Ltd": [], + "circumnavigates": [], + "pleases": [], + "impracticality's": [], + "Kashmir's": [], + "Alamogordo's": [], + "peafowl": ["M", "S"], + "emfs": [], + "Obama's": [], + "Crystal's": [], + "figuratively": [], + "skirmishing's": [], + "Netflix": ["M"], + "nineteens's": [], + "recessing": [], + "pedaling": [], + "pillaginged": [], + "peekeds": [], + "illustrators": [], + "minnesinger": ["M", "S"], + "cicerone's": [], + "serpent": ["M", "S"], + "forgeder": [], + "polling": ["M"], + "Cornelius": ["M"], + "rumor": ["S", "M", "D", "G"], + "interviewees": [], + "cheviot": ["M"], + "confessed": ["Y"], + "bicyclersing": [], + "footstool": ["S", "M"], + "priviers": [], + "woolliness": ["M"], + "rash's": [], + "sags": [], + "deify": ["N", "G", "D", "S"], + "flipper'ses": [], + "bailsman's": [], + "gar's": [], + "lollopings": [], + "magnifications": [], + "pugnaciousness's": [], + "waffle's": [], + "criticizersing": [], + "spiritualists": [], + "dinnered": [], + "menace's": [], + "Merlot": ["M"], + "waterlily's": [], + "Honeywell": ["M"], + "paling": ["M"], + "unawareness": [], + "Steven'ses": [], + "mage": ["M", "S"], + "friended": [], + "scallop'sed": [], + "bookstall": ["S"], + "steppersing": [], + "nostrum": ["M", "S"], + "withstanding": [], + "vesicles": [], + "sowinged": [], + "anticancer": [], + "suppressors's": [], + "Scrooge": ["M"], + "consing": [], + "bolster'sed": [], + "Quechua's": [], + "Kigali": ["M"], + "tendon's": [], + "corncob": ["M", "S"], + "comment": ["G", "S", "M", "D"], + "brainteasers's": [], + "clime": ["S", "M"], + "reduction's": [], + "petunias": [], + "visit's": [], + "crumple'sing": [], + "niggard": ["S", "M", "Y"], + "phonic": ["S"], + "tatami": ["M", "S"], + "revisionism": ["M"], + "hop": ["S", "G", "M", "D"], + "riffs": [], + "minster'ses": [], + "foreclosesing": [], + "pronunciation's": [], + "Lenny's": [], + "poisoner": ["M"], + "chilblain's": [], + "outshines": [], + "Andrea": ["M"], + "effort's": [], + "denunciations": [], + "wised": [], + "elector": ["M", "S"], + "dims": [], + "pathetically": [], + "Titan": ["S", "M"], + "UPC": [], + "Yeltsin's": [], + "Gorgon's": [], + "rockfalls's": [], + "spreadsheet'ses": [], + "mathematically": [], + "nabs": [], + "comprehensively": [], + "Arno's": [], + "rabbiting's": [], + "Ho": ["M"], + "glassblower": ["M", "S"], + "gild's": [], + "malaise": ["M"], + "nominates": [], + "fingertips": [], + "energizeder": [], + "bulletins": [], + "vocation": ["F", "I", "K", "A", "S", "M"], + "hearers's": [], + "Marguerite's": [], + "cognitively": [], + "Muscat's": [], + "rock'sed": [], + "Z": ["S", "M", "N", "X", "T"], + "deputizes": [], + "urinated": [], + "spoored": [], + "pushcarts": [], + "comparison": ["M", "S"], + "cunts": [], + "typeface'ses": [], + "horologist's": [], + "murdered": [], + "inflict": ["S", "D", "G", "V"], + "Val's": [], + "frostiness's": [], + "Morton": ["M"], + "muckrakesers": [], + "fewness's": [], + "moralization's": [], + "ii": [], + "okays": [], + "slue'sing": [], + "haberdasher": ["S", "M"], + "pouting": [], + "Mendocino's": [], + "cliquishness's": [], + "ethnic's": [], + "nitro": [], + "bronchitis's": [], + "bobbling": [], + "underarms's": [], + "pucker's": [], + "hostesses": [], + "bumpinesser": [], + "meat": ["M", "S"], + "greetings": [], + "Guernseys": [], + "insurgency": ["S", "M"], + "hap's": [], + "Irish's": [], + "shoehorn": ["G", "M", "D", "S"], + "auguries's": [], + "Sosa's": [], + "hepper": [], + "making's": [], + "knitwear's": [], + "baroness's": [], + "killed": [], + "overpass's": [], + "Kentuckian'ses": [], + "starer": ["M"], + "lath'sed": [], + "bizarrely": [], + "unsuspected": [], + "Russell": ["M"], + "assonance": ["M"], + "senates": [], + "blossoms": [], + "outdoing": [], + "Tarbell's": [], + "disaffect": [], + "anthologist's": [], + "reasonableness": ["U", "M"], + "vial": ["M", "S"], + "amusinged": [], + "awningings": [], + "snippet's": [], + "ascertains": [], + "invert's": [], + "documenting": [], + "silted": [], + "Keats": ["M"], + "Cayman's": [], + "Ben": ["M"], + "immaterialliness": [], + "monarchy's": [], + "rectifications": [], + "Pierce": ["M"], + "scrapheap": ["S", "M"], + "embodying": [], + "reconnoiter": ["D", "G", "S"], + "knowledgeably": [], + "owned": [], + "incompatible": [], + "squeal": ["S", "Z", "G", "M", "D", "R"], + "deffer": [], + "sunburn's": [], + "sounding's": [], + "calabash's": [], + "batten'sed": [], + "guarani": ["M", "S"], + "Hillary's": [], + "authorship's": [], + "callousinged": [], + "neanderthal": ["M", "S"], + "summoners": [], + "debonairness": ["M"], + "condoned": [], + "uninstalled": [], + "incubatingen": [], + "seventh": ["M"], + "mumble's": [], + "voyage'sers": [], + "mayflower's": [], + "lambing": [], + "FAQs's": [], + "eventfulness": ["M"], + "McNaughton's": [], + "braving": [], + "clangorously": [], + "Iroquoian's": [], + "koan": ["S"], + "McDowell's": [], + "lightnings": [], + "legion's": [], + "genitalia's": [], + "general'sly": [], + "misstatement": ["S", "M"], + "claptrap": ["M"], + "accedes": [], + "cm": [], + "wanteding": [], + "legalities": [], + "concaveliness": [], + "always": [], + "candor": ["M"], + "hostel": ["Z", "G", "M", "D", "R", "S"], + "jounce'sing": [], + "bother": ["S", "M", "D", "G"], + "misplaying's": [], + "waterside's": [], + "huddling": [], + "marchionesses": [], + "fighters": [], + "reapply": [], + "doubteder": [], + "watchmaking": ["M"], + "leches": [], + "boycott'sed": [], + "planter": ["M"], + "Malachi's": [], + "imprimaturs": [], + "Asama": ["M"], + "invective": ["M"], + "sveltest": [], + "preaching": [], + "chalice's": [], + "geisha": ["M"], + "suspicions": [], + "antivivisectionist": ["M", "S"], + "pigment's": [], + "penance's": [], + "Kobe": ["M"], + "Alamo": ["M"], + "subcontracts": [], + "gourds's": [], + "heartsickness": ["M"], + "runniest": [], + "mistress'ses": [], + "bedsits": [], + "forfeitures": [], + "exhausted": [], + "alumnus": ["M"], + "convalesces": [], + "Yataro's": [], + "riotersing": [], + "Romulus": ["M"], + "floods": [], + "speakeasy": ["S", "M"], + "fluoride's": [], + "gunrunner's": [], + "everlasting": ["M", "Y", "S"], + "draughtboards": [], + "ritual's": [], + "thunderstorms": [], + "sabbatical's": [], + "putted": ["I"], + "xylene": [], + "Halley's": [], + "sidekicks's": [], + "obtain": ["D", "B", "L", "G", "S"], + "Contreras": ["M"], + "monotony's": [], + "cosheds": [], + "mirages's": [], + "essay's": [], + "yes": ["M", "S"], + "pews": [], + "terminally": [], + "pikeder": [], + "turntables's": [], + "gruesomeness": ["M"], + "seawards": [], + "botanist's": [], + "Aquitaine": ["M"], + "disturb": ["Z", "G", "S", "D", "R"], + "corninesser": [], + "funninesser": [], + "gum's": [], + "preambled": [], + "transitive'sly": [], + "jape'sing": [], + "Cavendish": ["M"], + "maladjusted": [], + "Cora": ["M"], + "panorama's": [], + "Malory's": [], + "southward'ses": [], + "fount's": [], + "timbers's": [], + "interjected": [], + "paraphernalia's": [], + "tweedy": ["R", "T"], + "celebrity's": [], + "seininged": [], + "ramping": [], + "hackersing": [], + "dirtyingness": [], + "interlining": ["M"], + "subgroup's": [], + "Sammie's": [], + "enfoldinged": [], + "peppiness": ["M"], + "flurries": [], + "trained": ["U"], + "truers": [], + "allegiance": ["M", "S"], + "Montaigne": ["M"], + "windbreakers's": [], + "DP's": [], + "shelters": [], + "Darling": ["M"], + "nurse's": [], + "canapes": [], + "nowhere": ["M"], + "dribble's": [], + "Jewish's": [], + "gustier": [], + "groats's": [], + "Tubman": ["M"], + "mycology's": [], + "HBO": ["M"], + "taskmistress'ses": [], + "precede": ["D", "S", "G"], + "creaminess": ["M"], + "hurler": ["M"], + "delicatessen": ["S", "M"], + "marrieds's": [], + "placekickings": [], + "capture": ["A", "D", "S", "M", "G"], + "grange's": [], + "prop's": [], + "discriminatingen": [], + "radish's": [], + "wining's": [], + "hasten": ["D", "G"], + "hare": ["M", "G", "D", "S"], + "flooding": [], + "salvageds": [], + "craziest": [], + "inadvertent": ["Y"], + "agonized": [], + "gentrification": ["M"], + "baguette": ["M", "S"], + "screechier": [], + "laywoman": ["M"], + "immediateness": ["M"], + "dogsbody": ["S"], + "hearthstone": ["S", "M"], + "slanderer": ["M"], + "tars": [], + "methought": [], + "calcimineds": [], + "paleontology": ["M"], + "trochaic": [], + "tularemia": ["M"], + "guaranty's": [], + "induct": ["D", "G", "V"], + "peripheries's": [], + "meathead's": [], + "flashcard": ["S", "M"], + "surge's": [], + "murals": [], + "climate's": [], + "ohs": [], + "surveyors": [], + "Stacey": ["M"], + "saguaro's": [], + "villus": ["M"], + "dribble'sers": [], + "purebreds": [], + "activated": [], + "expo'ses": [], + "Chasity's": [], + "fruition's": [], + "ridiculousness": ["M"], + "delight's": [], + "hgwy": [], + "brittler": [], + "birdie's": [], + "pokey's": [], + "modifies": [], + "audible's": [], + "longhorn'ses": [], + "scams": [], + "homogeneity's": [], + "Euterpe's": [], + "communicateds": [], + "recognized": ["U"], + "chloride's": [], + "vocabulary": ["S", "M"], + "prodemo": [], + "colliers": [], + "Baruch's": [], + "phrasebooks": [], + "bramble's": [], + "nonflammable": [], + "fascicles's": [], + "caravel": ["S", "M"], + "desiccation": ["M"], + "resupplying": [], + "grandee's": [], + "kindhearted": ["P", "Y"], + "alibied": [], + "topees": [], + "lithenessly": [], + "tasting's": [], + "gymnosperm's": [], + "microsurgery": ["M"], + "particularities's": [], + "Alger's": [], + "beckoned": [], + "indefensibly": [], + "cosmologist": ["S", "M"], + "emotionalizinged": [], + "intrigueder": [], + "wandereder": [], + "slighted": [], + "daylong": [], + "cattleman's": [], + "floridnessly": [], + "doubterers": [], + "entrenchments": [], + "Rayburn": ["M"], + "Richter's": [], + "dictatorship's": [], + "Mariupol": [], + "subvention": ["S", "M"], + "scuds": [], + "carriage's": [], + "domineeringed": [], + "compiles": [], + "preppier": [], + "misty": ["P", "R", "T"], + "Verlaine's": [], + "synthesizing": [], + "Moor's": [], + "grandfather'sed": [], + "dragons's": [], + "lectured": [], + "mend's": [], + "stateder": [], + "chancels": [], + "suitability's": [], + "chipmunks": [], + "slave'sers": [], + "collegiality": ["M"], + "fantasias's": [], + "infrequence": ["M"], + "segmentation's": [], + "friendlier": [], + "hybridizes": [], + "Bundestag": ["M"], + "halfback": ["S", "M"], + "bookmaker": ["S", "M"], + "Hinduism": ["S", "M"], + "sledgehammer'sed": [], + "spareribs's": [], + "Orbison": ["M"], + "tizzy": ["S", "M"], + "unleash": [], + "sole": ["F", "S", "D", "G", "M"], + "grass'sed": [], + "nonsupport's": [], + "swellings": [], + "snappishliness": [], + "tamperer's": [], + "affix": ["G", "M", "D", "S"], + "streaker's": [], + "Teri": ["M"], + "anxiousness": ["M"], + "Chamberlain": ["M"], + "disbarring": [], + "oneself": [], + "Heineken": ["M"], + "Baruch": ["M"], + "noticeboard": ["S"], + "Blankenship": ["M"], + "archduchess's": [], + "gratefulliness": [], + "atrophy'sing": [], + "carpetbagged": [], + "fourth": ["M", "Y"], + "solutes": [], + "thriving": [], + "flirtatiousness's": [], + "gabfest's": [], + "chilies": [], + "unsent": [], + "housekeeper'ses": [], + "chuntereding": [], + "Kropotkin": ["M"], + "dysentery's": [], + "pansy": ["S", "M"], + "answering": [], + "bedaubings": [], + "squatting": [], + "cutoff": ["S", "M"], + "opossum": ["M", "S"], + "balm": ["S", "M"], + "inf": ["Z", "T"], + "ruble's": [], + "flaccidity's": [], + "palmed": [], + "emanatingen": [], + "tiresomenessly": [], + "macadamia": ["S", "M"], + "Brandon": ["M"], + "blasphemeder": [], + "latch's": [], + "mirth": ["M"], + "spillovers": [], + "snowball's": [], + "crowings": [], + "refrozen": [], + "sips's": [], + "begum's": [], + "dunk": ["M", "D", "G", "S"], + "Jinny": ["M"], + "pleasings": [], + "poltergeist'ses": [], + "carouser": ["M"], + "proselyte'sing": [], + "tarantula": ["S", "M"], + "Olympian'ses": [], + "disjoint": [], + "implicatesing": [], + "pouch": ["M", "D", "S", "G"], + "drifter's": [], + "arias": [], + "Godhead": ["M"], + "savor'sed": [], + "hunkered": [], + "granddaddies": [], + "proxies's": [], + "godchildren": ["M"], + "earth": ["U", "D", "Y", "G"], + "conformable": ["U"], + "Presley": ["M"], + "slays": [], + "prospectus": ["M", "S"], + "brokered": [], + "Buxtehude": ["M"], + "potter'sed": [], + "unsheathe": [], + "glance'sing": [], + "dieseleding": [], + "spectroscope'ses": [], + "categorize": ["G", "D", "S"], + "diction's": [], + "pareder": [], + "Baylor's": [], + "infatuatingen": [], + "blissful": ["Y", "P"], + "strut's": [], + "imprecatingen": [], + "macron's": [], + "Japura's": [], + "Valentino": ["M"], + "vertebrae": [], + "collude": ["D", "S", "G"], + "rho's": [], + "rearguard'ses": [], + "Tsimshian's": [], + "stops": [], + "Zorn's": [], + "camera's": [], + "clompsed": [], + "enchantmented": [], + "lollies": [], + "admiringed": [], + "putzes": [], + "positional": ["K"], + "estimate'sing": [], + "Marva's": [], + "chintz": ["M"], + "gem's": [], + "spluttereds": [], + "peckersing": [], + "runnel's": [], + "exhaled": [], + "cloud'sed": [], + "anemone": ["S", "M"], + "ski's": [], + "horridly": [], + "bemused": ["Y"], + "ticktocks": [], + "Windsor": ["S", "M"], + "wrinkle's": [], + "childish": ["Y", "P"], + "airbag": ["M", "S"], + "embezzlement's": [], + "elucidate": ["D", "S", "G", "N", "X"], + "subtenancy's": [], + "spookierness": [], + "Venezuelans's": [], + "Sicilian": ["S", "M"], + "Marsha's": [], + "Antilles's": [], + "sparser": [], + "umlaut": ["M", "S"], + "manliest": [], + "Lizzie's": [], + "mine'sers": [], + "lining": ["M"], + "educeds": [], + "cupful": ["S", "M"], + "tenancy's": [], + "vertebral": [], + "Mathew": ["S", "M"], + "fourposters's": [], + "spiffeding": [], + "maintainabled": [], + "scrip": ["M", "S"], + "quitclaim'ses": [], + "blushed": [], + "steerage's": [], + "Achilles's": [], + "corny": ["P", "R", "T"], + "bowels": [], + "potters": [], + "Joni": ["M"], + "oweds": [], + "pismires": [], + "typographer": ["S", "M"], + "sphinx's": [], + "tinkers": [], + "sibyls": [], + "m": ["K", "A", "S"], + "Beau's": [], + "chansons's": [], + "tuberculosis's": [], + "jostled": [], + "snowplowing's": [], + "Azerbaijani's": [], + "burrs": [], + "consultancies's": [], + "variance": ["S", "M"], + "firetrucks": [], + "journeyers": [], + "stingy": ["R", "T", "P"], + "launderettes": [], + "alkalized": [], + "audacious": ["Y", "P"], + "seascapes": [], + "sploshes": [], + "tempestuousness": ["M"], + "garrison's": [], + "imploding": [], + "stokersing": [], + "mandala's": [], + "clowned": [], + "marriage's": [], + "scrapbook's": [], + "weatherizeds": [], + "toga'sed": [], + "washable's": [], + "serapes": [], + "triviality": ["S", "M"], + "doohickeys": [], + "Kalevala's": [], + "spavin'sed": [], + "sandbox": ["M", "S"], + "Challenger": ["M"], + "winnable": ["U"], + "sleepwalkers": [], + "knighthood'ses": [], + "watchdogs's": [], + "concubine'ses": [], + "groundcloths": [], + "weenie's": [], + "retention": ["M"], + "Nielsen's": [], + "coaled": [], + "exonerateds": [], + "expatiateds": [], + "cortex": ["M"], + "mandalas": [], + "tufter": ["M"], + "string'sed": [], + "undertone's": [], + "Capri's": [], + "hydrolyzed": [], + "Evert": ["M"], + "Yonkers": ["M"], + "baht's": [], + "gallivant": ["G", "S", "D"], + "empowerment's": [], + "longbow'ses": [], + "phys": [], + "Gaea's": [], + "leanings": [], + "misrepresentations": [], + "patella": ["M", "S"], + "playacting": ["M"], + "grace's": [], + "sullying": [], + "clambake'ses": [], + "courtyard": ["M", "S"], + "prerogative's": [], + "modulate": ["C", "G", "N", "D", "S"], + "taser'sed": [], + "gerontological": [], + "Fe's": [], + "Basho's": [], + "autonomy": ["M"], + "surtitle": ["S"], + "discourse": [], + "amps": [], + "soother's": [], + "casework's": [], + "takeoff": ["M", "S"], + "nominator": ["C", "S", "M"], + "salivary": [], + "urbanization's": [], + "gyroscopes": [], + "pervaded": [], + "lawnmowers's": [], + "gaggle's": [], + "polyunsaturateds": [], + "slog's": [], + "expectation's": [], + "aspersion": ["M", "S"], + "list'sed": [], + "bi'ser": [], + "resubmitted": [], + "romantic": ["M", "S"], + "marginalia's": [], + "kneadersing": [], + "illuminable": [], + "opine": ["G", "N", "X", "D", "S"], + "airiness": ["M"], + "maintaineder": [], + "hopscotch": ["M", "D", "S", "G"], + "intrepidity": ["M"], + "diaeresis's": [], + "javelin's": [], + "wacko": ["S", "M"], + "Dole's": [], + "salaameding": [], + "gesticulation's": [], + "adjudgeds": [], + "stereotype's": [], + "Jodie": ["M"], + "Hinduism's": [], + "unclearest": [], + "dido": ["M"], + "phylacteries's": [], + "chivy": ["G", "D", "S"], + "Babbitt": ["M"], + "signage's": [], + "aftertaste": ["S", "M"], + "tempters": [], + "particleboard's": [], + "Concord's": [], + "girders": [], + "Bolshevism's": [], + "extrapolated": [], + "Julio's": [], + "thrasher": ["M"], + "manifold's": [], + "tidiest": [], + "Castaneda's": [], + "artificial": ["Y"], + "physics's": [], + "rest's": [], + "Ferraro": ["M"], + "stags": [], + "ace'sing": [], + "microbiological": [], + "sparrows": [], + "Iberia": ["M"], + "Basil": ["M"], + "dissoluteness's": [], + "preconceive": ["G", "D", "S"], + "stubbornest": [], + "tougheninged": [], + "cheerios": [], + "mutely": [], + "histrionics": ["M"], + "analogizes": [], + "coarsest": [], + "Prada's": [], + "guarding's": [], + "knapsack": ["M", "S"], + "pooing": [], + "pugnaciously": [], + "pawns": [], + "boardroom": ["M", "S"], + "emojis's": [], + "doter's": [], + "coxcomb's": [], + "pressing's": [], + "Blondie": ["M"], + "retriever": ["M"], + "levity's": [], + "hopped": [], + "miffing": [], + "snuffs's": [], + "Flanders's": [], + "misapprehended": [], + "misrepresentinged": [], + "behemoth": ["M"], + "gormless": [], + "cull": ["M", "D", "G", "S"], + "dollies": [], + "Lippmann": ["M"], + "impressionism": ["M"], + "offshore": ["G"], + "sand's": [], + "recriminatory": [], + "lispers": [], + "steamfitters": [], + "squeezable": [], + "steamfitters's": [], + "narrowing's": [], + "Phobos's": [], + "creme's": [], + "ting'sed": [], + "bathhouse's": [], + "bat": ["S", "M"], + "payment": ["A", "S", "M"], + "articulatenessed": [], + "despair's": [], + "treatment'ses": [], + "hillock's": [], + "undercoats": [], + "psoriasis's": [], + "jawsing": [], + "range's": [], + "wane": ["M", "S"], + "wifely": [], + "carob": ["M", "S"], + "supercomputers": [], + "tholes": [], + "bucket'sed": [], + "harpooned": [], + "flap's": [], + "convention": ["S", "M"], + "utensil": ["S", "M"], + "thickened": [], + "clearerly": [], + "pugilism": ["M"], + "customer": ["M"], + "Resistance": [], + "Polaroids": [], + "fiches": [], + "Tom": ["M"], + "advocacy": ["M"], + "misgiving'ses": [], + "sendoffs": [], + "nigglinged": [], + "iambs": [], + "nacreous": [], + "Texan's": [], + "leukocyte'ses": [], + "videotape'sing": [], + "triceps's": [], + "lassie's": [], + "tugboat's": [], + "devolvesing": [], + "leeriest": [], + "contextualizing": [], + "nurslings's": [], + "platen's": [], + "parquetry's": [], + "groused": [], + "Kirov's": [], + "pallid": ["Y", "P"], + "Qatar's": [], + "blinkers": [], + "amalgamate": ["X", "G", "N", "D", "S"], + "surely": [], + "aliyah": ["M"], + "shamans's": [], + "Stephen's": [], + "besom": ["M", "S"], + "shaming's": [], + "Oxford": ["S", "M"], + "cravesing": [], + "spermicide": ["M", "S"], + "encouragesment": [], + "toughness's": [], + "Darla's": [], + "tangerine'ses": [], + "bedeviling": [], + "countryman's": [], + "forageder": [], + "bibliophile": ["S", "M"], + "yip's": [], + "encroached": [], + "squander": ["G", "D", "S"], + "stucco's": [], + "teapot's": [], + "catalysis's": [], + "boxing's": [], + "mistrust'sed": [], + "peroration": ["M", "S"], + "flicks": [], + "bitches": [], + "dickerses": [], + "override": ["M", "G", "S"], + "baker's": [], + "Seeger's": [], + "landmark'ses": [], + "hallucinationsed": [], + "Titans's": [], + "spyglass'ses": [], + "snuff'sed": [], + "slobbers": [], + "slipperiest": [], + "Aisha": ["M"], + "Chamberlain's": [], + "brandy's": [], + "vesper's": [], + "unsullied": [], + "merchantman": ["M"], + "puffball": ["S", "M"], + "buckshot's": [], + "blacktop": ["S", "M"], + "precancel": ["S", "M", "D", "G"], + "itched": [], + "abdomens's": [], + "spa's": [], + "photoengraves": [], + "coven's": [], + "civet": ["M", "S"], + "humorousnessly": [], + "flagellate": ["G", "N", "D", "S"], + "Rolland's": [], + "accomplices": [], + "skits": [], + "hipster": ["M", "S"], + "smeltersing": [], + "blackballing's": [], + "papist": ["M", "S"], + "hematologic": [], + "backwardnesses": [], + "environmentalist": ["S", "M"], + "kangaroo'ses": [], + "riffleds": [], + "crippleware": [], + "hope's": [], + "crosswind": ["M", "S"], + "Lippi": ["M"], + "prognosticated": [], + "cadmium's": [], + "hensers": [], + "Nora's": [], + "quittance's": [], + "glasseds": [], + "numbered": ["U"], + "bushwhack": ["D", "R", "S", "Z", "G"], + "dribbleder": [], + "imposition'ses": [], + "annunciation's": [], + "decapitationed": [], + "electeding": [], + "antagonist": ["S", "M"], + "Steven": ["M", "S"], + "minced": [], + "recriminate": ["D", "S", "G", "N", "X"], + "inscribe": ["Z", "G", "D", "R"], + "ruggedness's": [], + "Montesquieu's": [], + "downloaded": [], + "uncertainty": [], + "frisksed": [], + "bouillon": ["M", "S"], + "frivolity": ["S", "M"], + "silversmith's": [], + "Braque": ["M"], + "wand'ses": [], + "plateaus": [], + "boons's": [], + "underskirt's": [], + "blueprints": [], + "thoughtlessnessly": [], + "utilities": [], + "devils's": [], + "milkman's": [], + "heroics's": [], + "wainwright": ["M", "S"], + "spellers": [], + "audiology's": [], + "Balzac's": [], + "squashier": [], + "Edmund": ["M"], + "reputation's": [], + "Roche": ["M"], + "thankfulliness": [], + "rattlersing": [], + "chaperonings": [], + "Januaries's": [], + "miscreant": ["S", "M"], + "discriminated": [], + "scourges": [], + "whippet": ["M", "S"], + "heartache's": [], + "attests": [], + "kills": [], + "regression": ["M", "S"], + "hydrophobia": ["M"], + "overhanging": [], + "misplayeds": [], + "somerset's": [], + "chillest": [], + "hulas": [], + "variesing": [], + "jackstraws": [], + "skylarksing": [], + "knockdowns": [], + "Argentina's": [], + "polite": ["R", "Y", "T", "P"], + "Dobbin's": [], + "redact": ["S", "D", "G"], + "Schroeder's": [], + "megaphoneds": [], + "emulatesing": [], + "jobholder'ses": [], + "hurdleder": [], + "tomboyish": [], + "resisted": [], + "percolators": [], + "frangibility's": [], + "bobsleigh": ["M"], + "waiter's": [], + "yarmulkes's": [], + "ushereding": [], + "flooring": ["M"], + "huaraches": [], + "jest's": [], + "sheep's": [], + "idolizing": [], + "tigresses": [], + "tangs": [], + "obfuscation": ["M"], + "expo": ["M", "S"], + "chirping": [], + "aspect'ses": [], + "parkour": [], + "windless": [], + "magnificationsed": [], + "script": ["F", "S", "M", "D", "G"], + "operatic": [], + "Furies": ["M"], + "Robson": ["M"], + "pleasantries's": [], + "nonconformity": ["M"], + "diffraction's": [], + "dereforest": [], + "imitator": ["S", "M"], + "Iqbal's": [], + "ravines's": [], + "prejudicial": [], + "Es": [], + "adrenergic": [], + "Titan's": [], + "remitting": ["U"], + "impeding": [], + "knuckle": ["D", "S", "M", "G"], + "spice'sing": [], + "fuzzy": ["P", "T", "R"], + "beholding": [], + "stultified": [], + "collocation": ["M"], + "accommodations": [], + "sensuously": [], + "threefold": [], + "chiffoniers": [], + "attendants's": [], + "presbyters's": [], + "phoenix'ses": [], + "misstatements": [], + "besmirches": [], + "fullbacks": [], + "credenza": ["S", "M"], + "adepts": [], + "herniation": ["M"], + "candlepower's": [], + "annuity's": [], + "palsied": [], + "anatomies's": [], + "effaces": [], + "diffusely": [], + "slaughtered": [], + "provocativeness's": [], + "spellbinder's": [], + "bayoneting": [], + "concertinas": [], + "Sulla's": [], + "glaciation": ["M"], + "qualifying": [], + "intolerance": [], + "carry": ["Z", "G", "D", "R", "S", "M"], + "scarcities's": [], + "teacupful": ["M", "S"], + "Goldilocks's": [], + "arrogant": ["Y"], + "bell'sed": [], + "shampooing's": [], + "fleeteder": [], + "exploitersing": [], + "quip'ses": [], + "workaholics": [], + "foreboding's": [], + "longboat's": [], + "mitered": [], + "starting": [], + "mooneds": [], + "relive": [], + "deftness's": [], + "Rutan": ["M"], + "aspirin": ["M", "S"], + "otherworldly": [], + "augustly": [], + "impel": ["S"], + "acoustic": ["S"], + "vinaigrette": ["M"], + "establishes": [], + "pound's": [], + "bats": [], + "trustworthy": ["T", "P", "R"], + "emotionsed": [], + "betrothal": ["S", "M"], + "tumbling": ["M"], + "perv": ["S"], + "noisiness's": [], + "backstretch": ["M", "S"], + "foal'sed": [], + "wasps": [], + "strongest": [], + "ashesing": [], + "corespondents": [], + "embossing": [], + "drifters": [], + "airlocks": [], + "Persephone's": [], + "sergeants": [], + "frustum": ["M", "S"], + "holderings": [], + "chlamydia's": [], + "oscillate": ["G", "N", "D", "S", "X"], + "chroniclers": [], + "campaigning": [], + "kike": ["S"], + "meshesing": [], + "sandpapers": [], + "Quito's": [], + "bilge": ["M", "S"], + "sickish": [], + "speed'ser": [], + "spline": ["S"], + "consult": ["G", "S", "D"], + "ululatesing": [], + "pasteurizes": [], + "debilitate": ["D", "S", "G", "N"], + "Bhopal's": [], + "personage": ["M", "S"], + "overhaul": ["M", "D", "S", "G"], + "oversubscribesing": [], + "professionalizesing": [], + "hairdressers": [], + "vulcanization": ["M"], + "alkalizing": [], + "lootersing": [], + "discombobulated": [], + "geek'ses": [], + "Doctorow's": [], + "stumbles's": [], + "trammel's": [], + "fatings": [], + "triglyceride": ["M", "S"], + "widescreen": ["M", "S"], + "crofter": [], + "cormorant's": [], + "slanted": [], + "woodwork'ser": [], + "uplifted": [], + "flume": ["S", "M"], + "aromatics": [], + "shuffled": [], + "malingering": [], + "choreographersing": [], + "fenceder": [], + "avarice's": [], + "choreograph": ["D", "R", "Z", "G"], + "Spencerian": ["M"], + "fey": [], + "Brunei": ["M"], + "Athenian": ["S", "M"], + "pipsqueaks": [], + "fourteens's": [], + "inserted": [], + "prescribesing": [], + "artifice": ["R", "S", "M", "Z"], + "proconfusion": [], + "Brussels": ["M"], + "numbeder": [], + "lightship'ses": [], + "Alma's": [], + "unbends": [], + "cooperers": [], + "ingesteding": [], + "overarms": [], + "invigoratingly": [], + "paraphrasing": [], + "concessionaire'ses": [], + "adopts": [], + "cougars's": [], + "cubic": [], + "shock'sed": [], + "countermeasure's": [], + "fines": [], + "bluejeans's": [], + "Luther": ["M"], + "Oder": ["M"], + "isthmus'ses": [], + "poet'ses": [], + "wooziness's": [], + "sustaining": [], + "distributorship": ["S"], + "fathomingable": [], + "trimaran's": [], + "flak": ["M"], + "jaywalking": ["M"], + "raping": [], + "overexerts": [], + "egotistic": [], + "sneaking": ["Y"], + "sprucesness": [], + "duffer": ["M"], + "sons": [], + "overbalance'sing": [], + "reinstall": ["D", "G"], + "snowed": [], + "fitments": [], + "antiquities's": [], + "daycare's": [], + "Osborne": ["M"], + "kinkiest": [], + "steam's": [], + "peddled": [], + "Nantes's": [], + "crones": [], + "Eli": ["M"], + "Internationale": ["M"], + "tam": ["S", "M"], + "Ecuadoran": ["S", "M"], + "brightenerers": [], + "punctually": [], + "worldliness": ["U", "M"], + "jugs": [], + "food": ["M", "S"], + "unfortified": [], + "Lucite": ["S", "M"], + "concatenations": [], + "pitfall's": [], + "flapjack'ses": [], + "simpleminded": [], + "submerge": ["G", "D", "S"], + "slipknots": [], + "wire": ["A", "G", "D", "S"], + "backhoe's": [], + "hemorrhaged": [], + "conditional": ["S", "M", "Y"], + "misunderstandsing": [], + "cession's": [], + "overshoot": ["G", "S"], + "cinches": [], + "Aramaic": ["M"], + "envy's": [], + "incinerator's": [], + "ravishes": [], + "sepulcher": ["G", "M", "D", "S"], + "centurion's": [], + "sinkers": [], + "nonmilitant": [], + "superstore's": [], + "soupcons": [], + "ordinarily": [], + "eliciting": [], + "developments's": [], + "fashioning": [], + "Gavin": ["M"], + "Suzhou's": [], + "isometrically": [], + "passersby": [], + "competitors": [], + "never": [], + "retentive": ["Y", "P"], + "paintings": [], + "Spanglish": [], + "countertenor": ["M", "S"], + "hubbub": ["S", "M"], + "shred's": [], + "fastened": [], + "incalculable": [], + "Aladdin's": [], + "gravitateds": [], + "antarctic": [], + "crocheterers": [], + "tamer's": [], + "ephemera": ["M"], + "clop": ["M", "S"], + "misstating": [], + "trunksing": [], + "Clifford": ["M"], + "preemies's": [], + "L'Amour": ["M"], + "sharpshooter": ["S", "M"], + "devotions": [], + "toeing": [], + "determines": [], + "clouts": [], + "grumble'sers": [], + "denier's": [], + "Swazis's": [], + "tractably": ["I"], + "Mullikan": ["M"], + "rose": ["M", "S"], + "militarizeds": [], + "fluffed": [], + "tangibility": ["I", "M"], + "cured": ["U"], + "esoteric": [], + "entrances": [], + "careerists": [], + "brickyards": [], + "nominators": [], + "overstretching": [], + "decimatingen": [], + "statelessness's": [], + "outstripped": [], + "Agamemnon's": [], + "baptismal": [], + "precocious": ["Y", "P"], + "submitter": [], + "Gish": ["M"], + "unaccomplished": [], + "firmament": ["S", "M"], + "rattraps": [], + "violist": ["M", "S"], + "skewer'sed": [], + "aleatory": [], + "relinesing": [], + "mummer": ["M", "S"], + "impreciseness": ["M"], + "terminus's": [], + "misanthropes's": [], + "Sprite's": [], + "emerita": [], + "paperboys": [], + "Allison": ["M"], + "electrocardiography's": [], + "outstretching": [], + "toyboy": ["S"], + "tombola": ["S"], + "realized": ["U"], + "insultingly": [], + "Atlantis's": [], + "birthing's": [], + "spangle": ["D", "S", "M", "G"], + "Farrakhan's": [], + "libber's": [], + "ocelots": [], + "permutations's": [], + "conjugationsing": [], + "Aries's": [], + "consistory's": [], + "Ghent": ["M"], + "fluorocarbon": ["M", "S"], + "assemblings": [], + "spectroscopy's": [], + "sensitizing": [], + "illustrators's": [], + "ultimo": [], + "sanctions": [], + "countryside'ses": [], + "centimeter": ["M", "S"], + "overheat": ["D", "S", "G"], + "Berta's": [], + "lateness": ["M"], + "crossfire's": [], + "bldg": [], + "Pennsylvanian's": [], + "scrubbers": [], + "blacktops's": [], + "Rubens": ["M"], + "rashest": [], + "cuddle": ["D", "S", "M", "G"], + "sugarplum'ses": [], + "tattooist": ["S", "M"], + "skittishness's": [], + "dozenth": [], + "sideds": [], + "venereal": [], + "yahoo": ["S", "M"], + "spiralsing": [], + "flexes": [], + "Clara": ["M"], + "invites's": [], + "randiness": ["M"], + "crimes's": [], + "besiegersing": [], + "discourtesy": [], + "custodianship": ["M"], + "outstayed": [], + "debility's": [], + "stints's": [], + "emotively": [], + "Amsterdam": ["M"], + "solubles": [], + "sabotage'sing": [], + "scalped": [], + "analogizing": [], + "urinal's": [], + "subsidence's": [], + "irreplaceable": [], + "lockout'ses": [], + "gargoyles": [], + "dhotis": [], + "archdiocesan": [], + "undeterred": [], + "overthrew": [], + "flack": ["S", "M"], + "Maitreya": ["M"], + "badgers": [], + "stablemen": [], + "flaying": [], + "pulverizes": [], + "tidbit": ["S", "M"], + "blitheness": ["M"], + "jerkier's": [], + "Canopus": ["M"], + "ordinances's": [], + "epiglottis'ses": [], + "unthinkable": [], + "detonations": [], + "bucket's": [], + "exhausteds": [], + "disclosing": [], + "miscarries": [], + "Erik's": [], + "jeans's": [], + "growleder": [], + "Ollie's": [], + "defectivelies": [], + "carotid": ["S", "M"], + "Yakima": ["M"], + "porky's": [], + "piggishly": [], + "offer'sed": [], + "yokel's": [], + "elderberry's": [], + "nonequivalent's": [], + "melodramatics": ["M"], + "miscalculationsing": [], + "prognostication's": [], + "slowness's": [], + "backfield": ["S", "M"], + "gigabits": [], + "quieting": [], + "Tucson's": [], + "Lisa's": [], + "cortege'ses": [], + "infantry's": [], + "minsters": [], + "gossips": [], + "scrooge'ses": [], + "gifteding": [], + "commutation's": [], + "sunburning's": [], + "contraventions's": [], + "chuckholes's": [], + "bronco's": [], + "nonplus": ["S"], + "Case": ["M"], + "Nansen's": [], + "precursory": [], + "washrags": [], + "incinerateds": [], + "flurried": [], + "Carlsbad's": [], + "unspectacular": [], + "hilarious": ["P", "Y"], + "judderinged": [], + "drink'ser": [], + "cuckolded": [], + "Salamis": ["M"], + "bursts": [], + "Hindustani": ["S", "M"], + "slushier": [], + "palpitateds": [], + "maze'ses": [], + "cryptography's": [], + "boomerang's": [], + "diagnoseds": [], + "savanna's": [], + "lateraled": [], + "dashing's": [], + "anthologies": [], + "doweling": [], + "aftermarkets": [], + "robotizes": [], + "Marlowe": ["M"], + "playpens's": [], + "shortsightedness's": [], + "quipster": ["S", "M"], + "hanged": [], + "quadriplegia": ["M"], + "stopple": ["D", "S", "M", "G"], + "inmate": ["S", "M"], + "courtyard's": [], + "pastures's": [], + "voluntaries": [], + "proprieties's": [], + "bedeckings": [], + "unforeseeable": [], + "bramble'ses": [], + "gaucherie": ["M"], + "vaulter": ["M"], + "withholds": [], + "Rotarian's": [], + "Tuareg's": [], + "Essequibo": ["M"], + "briquette": ["M", "S"], + "botching": [], + "Eula's": [], + "cheat's": [], + "orphan'sed": [], + "boxer's": [], + "peremptorily": [], + "camellias": [], + "inaugurates": [], + "spoon'sed": [], + "clarion": ["M", "D", "G", "S"], + "acclimate": ["D", "S", "G", "N"], + "overheads": [], + "lobbied": [], + "Wilda": ["M"], + "illegitimately": [], + "quenchless": [], + "chubbiness": ["M"], + "smart": ["S", "M", "D", "N", "R", "Y", "X", "T", "G", "P"], + "prompt'sed": [], + "healeder": [], + "outpacing": [], + "Psalter'ses": [], + "totalitarianism": ["M"], + "Southwest's": [], + "repartee's": [], + "spindling": [], + "intrudersing": [], + "gasohol": ["M"], + "coauthor'sed": [], + "mystifiesing": [], + "saveder": [], + "coconut": ["S", "M"], + "anticlimax": ["M", "S"], + "rusticate": ["G", "D", "S"], + "objurgationed": [], + "guardians": [], + "Maine": ["M", "Z", "R"], + "writheds": [], + "doddering": [], + "photoengraversing": [], + "speakser": [], + "hawings": [], + "gynecologic": [], + "aesthete's": [], + "stench'ses": [], + "footplate": ["S"], + "bollix'sed": [], + "forgotten": ["U"], + "worsensing": [], + "thanksed": [], + "organics": [], + "omnipresence": ["M"], + "prune": ["M", "Z", "G", "D", "R", "S"], + "unmistakable": [], + "after": [], + "cultured": ["U"], + "moieties's": [], + "patronizeder": [], + "registrations": [], + "waddle'sing": [], + "Izaak": ["M"], + "clench's": [], + "angles": [], + "submergence's": [], + "scampi's": [], + "Sweden": ["M"], + "SSE's": [], + "deserters": [], + "overwritings": [], + "Simon": ["M"], + "Bran's": [], + "popover": ["S", "M"], + "amateurism": ["M"], + "capture'sing": [], + "jennet'ses": [], + "extorted": [], + "urticaria": ["M"], + "wearablings": [], + "setscrew": ["S", "M"], + "fastball": ["S", "M"], + "recentness": ["M"], + "retaliatory": [], + "nightclubbing": [], + "glasses": [], + "puttered": [], + "launchpad": ["S", "M"], + "thinks": [], + "hysterectomies's": [], + "wistful": ["Y", "P"], + "mechanic": ["M", "S"], + "exult": ["S", "D", "G"], + "legitimizing": [], + "mediation's": [], + "cavilers": [], + "nimbi": [], + "armament's": [], + "Gallo's": [], + "telegraphist": ["S", "M"], + "berries": [], + "subject'sed": [], + "rollickeding": [], + "elocution's": [], + "representatives": [], + "entrancing": ["Y"], + "causers": [], + "averagely": [], + "strychnine's": [], + "alpine": ["S"], + "Criollo": ["M"], + "billing": ["M"], + "banalities's": [], + "scythe": ["D", "S", "M", "G"], + "buyer's": [], + "sliding": [], + "acute's": [], + "contaminates": [], + "polarize": ["C", "D", "S", "G"], + "estrogen's": [], + "Hansen": ["M"], + "offhandednessly": [], + "hotkey": ["S"], + "tomboy'ses": [], + "Himalayan": [], + "Mosul's": [], + "sobers": [], + "prevailing": [], + "ringing": [], + "fruitlessly": [], + "Psalter's": [], + "pontificates's": [], + "retrenchment's": [], + "spending": ["M"], + "ketchup": ["M"], + "Rand": ["M"], + "Betelgeuse": ["M"], + "bedlam's": [], + "coagulationed": [], + "brunt's": [], + "Li's": [], + "motivational": [], + "retro'ses": [], + "boon": ["S", "M"], + "admonishing": [], + "platypus'ses": [], + "trembling": [], + "Perl": ["S", "M"], + "flicked": [], + "Clyde": ["M"], + "elimination's": [], + "explicit": ["P", "Y"], + "outperformsed": [], + "locomotion": ["M"], + "pilloried": [], + "hollies": [], + "bondman": ["M"], + "greenest": [], + "clumsiness's": [], + "bushes": [], + "cusp": ["M", "S"], + "vaudeville": ["M"], + "propitiation's": [], + "isolationists": [], + "murderess": ["M", "S"], + "tunics": [], + "Arron": ["M"], + "clever": ["P", "T", "R", "Y"], + "brainstorming's": [], + "Zion's": [], + "ratiocinated": [], + "acquiesces": [], + "belching's": [], + "scrunch's": [], + "theories": [], + "schadenfreude": [], + "preregistering": [], + "Munchhausen": ["M"], + "lumbago": ["M"], + "pod's": [], + "quartermaster's": [], + "Iraqi's": [], + "streptococcus's": [], + "immediateness's": [], + "headlands": [], + "semicolon": ["M", "S"], + "scythe'sing": [], + "dungeon": ["S", "M"], + "serenity": ["M"], + "morass's": [], + "tentacle": ["D", "S", "M"], + "radiotelegraph's": [], + "palpated": [], + "erg": ["S", "M"], + "textbooks": [], + "hallmarks": [], + "Banjarmasin": ["M"], + "collocationed": [], + "latitude's": [], + "galleys": [], + "repletingen": [], + "mouthier": [], + "velocipede": ["M", "S"], + "filbert'ses": [], + "overthrow": ["S", "M", "G"], + "iamb'ses": [], + "moldiness": ["M"], + "lupines": [], + "attaineds": [], + "subleasing": [], + "unsaleable": [], + "aggregates": [], + "untested": [], + "transfixeds": [], + "philosopher": ["M", "S"], + "slowness": ["M"], + "maimed": [], + "gambles's": [], + "Trudeau": ["M"], + "levering's": [], + "preparedness": ["U", "M"], + "crappier": [], + "rune": ["M", "S"], + "bubbled": [], + "Sumerians": [], + "Reno": ["M"], + "legatos's": [], + "bawdy": ["P", "R", "T"], + "windowsill": ["S", "M"], + "nail'sed": [], + "Peruvian's": [], + "Livy": ["M"], + "bilkers": [], + "remixed": [], + "croaking": [], + "gunnery": ["M"], + "salivatingen": [], + "emos": [], + "lavishers": [], + "infarction's": [], + "scrump": ["S", "G", "D"], + "crossroad'ses": [], + "unnervingly": [], + "songfests": [], + "debauching": [], + "wiretapper's": [], + "inquisitors's": [], + "poring": [], + "atlas'ses": [], + "n": ["I", "K", "T", "H"], + "Muenster": ["M", "S"], + "unrecognized": [], + "obtrusiveness": ["U", "M"], + "improvesment": [], + "forfeits's": [], + "impost's": [], + "holiday'sed": [], + "communicators": [], + "certificatingen": [], + "Albuquerque": ["M"], + "torture": ["D", "R", "S", "M", "Z", "G"], + "vowing's": [], + "apses": [], + "Fowler": ["M"], + "typificationing": [], + "extrovert": ["S", "M", "D"], + "flabbergast": ["S", "G", "D"], + "retrovirus'ses": [], + "ferrets's": [], + "loveliest": [], + "trespassesers": [], + "moneyboxes": [], + "shanghais": [], + "perfectly": [], + "Methuselah": ["M"], + "drogue's": [], + "petrochemicals": [], + "wiki's": [], + "doused": [], + "duffing": [], + "forbiddinglies": [], + "boyfriends": [], + "Hockney": ["M"], + "peppier": [], + "cashierings": [], + "G's": [], + "emplacement": ["S", "M"], + "overhaulsing": [], + "gamblers": [], + "kaput": [], + "Amarillo": ["M"], + "Peg": ["M"], + "lee": ["R", "S", "M", "Z"], + "abbeys": [], + "casino's": [], + "Eltanin": ["M"], + "sprinklings's": [], + "clamor'sed": [], + "Whitehead": ["M"], + "neglectfully": [], + "clothesing": [], + "adulteress's": [], + "mesmerizers": [], + "Trey's": [], + "shamelessliness": [], + "crappers": [], + "trustworthinesser": [], + "touchdowns's": [], + "doors": [], + "progressiveness's": [], + "bargeds": [], + "shortsighted": ["P", "Y"], + "tractor's": [], + "crochet'sed": [], + "relates": [], + "subscribe": ["U", "A", "S", "D", "G"], + "retrofitted": [], + "relateder": [], + "perambulation's": [], + "aperitifs": [], + "miscount'sed": [], + "imported": [], + "incrementalist's": [], + "phoning": [], + "Marianas's": [], + "biddy's": [], + "receptacle": ["S", "M"], + "spectates": [], + "superstructure": ["M", "S"], + "joints": [], + "librettos": [], + "mudrooms": [], + "pressures": [], + "downsizes": [], + "primacy's": [], + "cryogenics": ["M"], + "lunching's": [], + "Cochin's": [], + "prowlers": [], + "besieginged": [], + "overdrawn": [], + "honorableness's": [], + "espying": [], + "Cellini": ["M"], + "lava's": [], + "Vito's": [], + "lane": ["M", "S"], + "trouser": ["S", "M"], + "outtake's": [], + "triplex'ses": [], + "intelligence": ["M"], + "field'ser": [], + "fistfuls's": [], + "ABCs": [], + "adulterer's": [], + "treasonable": [], + "prayersing": [], + "belittled": [], + "peopleds": [], + "dowry": ["S", "M"], + "Rasmussen's": [], + "authenticateds": [], + "fringes": [], + "rouges's": [], + "mutuality's": [], + "redness": ["M"], + "truckloads": [], + "embryologist": ["M", "S"], + "highers": [], + "trespass'sed": [], + "Cassatt's": [], + "Moorish": ["M"], + "haggler": ["M"], + "linted": [], + "vomits": [], + "monomaniac's": [], + "behavior": ["S", "M"], + "whippet'ses": [], + "polysyllables": [], + "lusher": [], + "allocatesing": [], + "Townes": ["M"], + "housewarming's": [], + "Manson's": [], + "crimp'sed": [], + "tentacles's": [], + "abashes": [], + "candlewicks": [], + "carfare": ["M"], + "muscleman": [], + "flophouse": ["M", "S"], + "hostler'ses": [], + "forcing": [], + "poaching's": [], + "aristocrat's": [], + "coachman": ["M"], + "centrifuges's": [], + "cherub's": [], + "morphological": [], + "keenerly": [], + "heartier": [], + "both": [], + "queueds": [], + "fora": [], + "outstretcheds": [], + "music's": [], + "benders": [], + "indelicacy": [], + "permeds": [], + "sectarianism's": [], + "parasites's": [], + "analysand": ["M", "S"], + "lieutenant'ses": [], + "handbill'ses": [], + "asperities's": [], + "publicized": [], + "squeakiness's": [], + "reclassify": [], + "deeperly": [], + "Claudio's": [], + "operatically": [], + "Occidental'ses": [], + "shay's": [], + "trainersing": [], + "gracefulness": ["E", "M"], + "quadrangles": [], + "circumnavigatingen": [], + "Skippy's": [], + "fail": ["M", "D", "G", "J", "S"], + "sysop": ["S"], + "wolverine": ["S", "M"], + "countably": [], + "trisection's": [], + "obliviousness": ["M"], + "pneumonia": ["M"], + "fun's": [], + "mourner": ["M"], + "milestones": [], + "jato'ses": [], + "cogitators": [], + "anesthesiology": ["M"], + "advocatinged": [], + "spryly": [], + "Skopje": ["M"], + "perfidies's": [], + "Pryor": ["M"], + "swallow's": [], + "Kaposi's": [], + "limp'sed": [], + "translatablions": [], + "harpy's": [], + "parlors": [], + "staccatos": [], + "smarteneding": [], + "ungodliness": [], + "ghettoize": ["G", "D", "S"], + "toileting": [], + "dribblers": [], + "Raymond's": [], + "enacted": [], + "shoppes": [], + "torrent's": [], + "upgrade's": [], + "Violet's": [], + "deafening": ["Y"], + "videocassettes's": [], + "cochleas": [], + "parchments": [], + "hail's": [], + "anthologizeds": [], + "wigwagged": [], + "fishcakes's": [], + "carvingsers": [], + "imposing": ["U"], + "spurt": ["S", "M", "D", "G"], + "stainless's": [], + "diesel's": [], + "nanotechnology's": [], + "nonchargeable": [], + "archaeologically": [], + "churchgoers's": [], + "Maisie": ["M"], + "stopping": ["U"], + "bullring": ["M", "S"], + "mouthful'ses": [], + "frostbitings": [], + "traduced": [], + "McDonald's": [], + "seniors": [], + "busyness's": [], + "mayst": [], + "monotonousnessly": [], + "aims's": [], + "binder'ses": [], + "Inonu's": [], + "Schnabel's": [], + "slipped": [], + "estrange": ["L", "D", "S", "G"], + "transposesing": [], + "drumsticks's": [], + "balk": ["S", "G", "M", "D"], + "hyperbole": ["M"], + "felleder": [], + "cake's": [], + "flowings": [], + "lustrous": ["Y"], + "logbook's": [], + "credentialing's": [], + "Bart's": [], + "debauches": [], + "unrelievedly": [], + "jaywalkers": [], + "Fonda's": [], + "salvages's": [], + "marriageability": ["M"], + "moaned": [], + "dishevel": ["D", "G", "L", "S"], + "persecutors": [], + "tuckersing": [], + "events's": [], + "cottonseed'ses": [], + "quitters's": [], + "dais": ["M", "S"], + "expressivenessly": [], + "pinkeye's": [], + "instrumented": [], + "prioress's": [], + "Moroccans": [], + "trellises": [], + "Iblis's": [], + "slavishly": [], + "lover": ["M"], + "recessionals": [], + "encouragement": ["S", "M"], + "barbwire's": [], + "seasoned": ["U"], + "oversensitiveness": ["M"], + "posture's": [], + "optioned": [], + "flashcards's": [], + "disinterested": ["P", "Y"], + "motions": [], + "continuations": [], + "newsweeklies's": [], + "chemical": ["S", "M", "Y"], + "acreages": [], + "collectivizing": [], + "Kathiawar's": [], + "annotations": [], + "help's": [], + "seductive": ["Y", "P"], + "legate'sen": [], + "inasmuch": [], + "Hawthorne": ["M"], + "lightening": [], + "dribbles": [], + "recrystallize": [], + "McKenzie": ["M"], + "Greensboro's": [], + "Becker": ["M"], + "sturgeon": ["S", "M"], + "mariachi's": [], + "dactyl": ["M", "S"], + "masque": ["M", "S"], + "glissandi": [], + "savvieder": [], + "remonstratesing": [], + "apologias": [], + "fluxes": [], + "hideaways": [], + "transcribersing": [], + "enjambment's": [], + "hydrogen's": [], + "tattoo's": [], + "what": ["M", "S"], + "Katelyn": ["M"], + "shadiness": ["M"], + "Rosemarie's": [], + "piffle's": [], + "chimers": [], + "outstations": [], + "summoning": [], + "vacuoles": [], + "pearlier": [], + "nitroglycerin's": [], + "programmables": [], + "grantee'ses": [], + "universities": [], + "taxidermy": ["M"], + "damson": ["M", "S"], + "horror'ses": [], + "gallopeding": [], + "account'sed": [], + "Xanadu's": [], + "smirch": ["G", "M", "D", "S"], + "tout'sed": [], + "superposinged": [], + "unapproved": [], + "intervened": [], + "pretending": [], + "tinniness": ["M"], + "lockup'ses": [], + "rhino": ["M", "S"], + "culminatingen": [], + "homing": [], + "erupting": [], + "placementing": [], + "cannonade": ["M", "G", "D", "S"], + "moldinesser": [], + "flameproofing": [], + "wherries's": [], + "millwright": ["S", "M"], + "omit": ["S"], + "amaze's": [], + "Fitzroy": ["M"], + "Khoikhoi": ["M"], + "combo": ["S", "M"], + "centerboards": [], + "Swanson's": [], + "Karyn": ["M"], + "strumpet'ses": [], + "bloater": [], + "ballroom": ["M", "S"], + "E": ["S", "M"], + "wobbliness's": [], + "publications's": [], + "committeewomen": [], + "federalizes": [], + "guns's": [], + "circularized": [], + "archbishoprics": [], + "welter's": [], + "boneder": [], + "weirdo": ["M", "S"], + "lopsidedly": [], + "bowers": [], + "curvaceousness's": [], + "apical": ["Y"], + "Algenib's": [], + "Sb's": [], + "theremin": ["S", "M"], + "raidersing": [], + "sends": [], + "agglutinated": [], + "schedule": ["A", "D", "S", "G"], + "hoarderings": [], + "rodent'ses": [], + "abutments": [], + "pretender": ["M"], + "flood": ["S", "M", "D", "R", "G"], + "sustainability": [], + "importunately": [], + "cougar": ["S", "M"], + "prediction's": [], + "Wanamaker's": [], + "furlongs's": [], + "weak": ["P", "N", "R", "Y", "X", "T"], + "malenesses": [], + "pubescent": [], + "victories": [], + "wigglersing": [], + "cantering": [], + "midwiferies": [], + "breast's": [], + "precipice's": [], + "Moiseyev": ["M"], + "smarty": ["S", "M"], + "piousness": ["M"], + "overbalanced": [], + "alchemy's": [], + "operators's": [], + "cachet": ["M", "S"], + "improprieties's": [], + "incompetence": [], + "strandeds": [], + "Madeleine's": [], + "Freeman's": [], + "Goethe's": [], + "Inez": ["M"], + "passionflowers's": [], + "prevail": ["D", "G", "S"], + "stanchion": ["S", "M"], + "uneasiness": [], + "glibness's": [], + "mile's": [], + "etiquette's": [], + "tractor'ses": [], + "swirlings": [], + "puleds": [], + "dater's": [], + "Mainerser": [], + "stuccoed": [], + "mohair's": [], + "gloateding": [], + "faradizing": [], + "postmarks": [], + "seinersing": [], + "diabolical": ["Y"], + "nuptial's": [], + "tinctures": [], + "proofs's": [], + "Lakewood": [], + "llanos": [], + "veejay's": [], + "Andretti": ["M"], + "inrefuse": [], + "waltz": ["Z", "G", "M", "D", "R", "S"], + "whinger": [], + "narcotization's": [], + "heftings": [], + "QB": [], + "bilirubin": [], + "hospitalizations's": [], + "paramedical's": [], + "rape's": [], + "augments": [], + "turkeys's": [], + "asphodel": ["S", "M"], + "bitchier": [], + "privacy": ["M"], + "primaries's": [], + "predictor": ["M", "S"], + "manna": ["M"], + "Seuss's": [], + "leakier": [], + "Capra": ["M"], + "fed": ["S", "M"], + "menders": [], + "Lutheran's": [], + "hug'ser": [], + "foundlings": [], + "Delilah's": [], + "certifying": [], + "communists": [], + "spangleds": [], + "continua": [], + "thirds": [], + "Sahara's": [], + "hypochondriac's": [], + "thrumming": [], + "doe's": [], + "tinkerer": ["M"], + "pawnshop'ses": [], + "Stone's": [], + "extremist's": [], + "filenames": [], + "simpatico": [], + "Willemstad's": [], + "qualitatively": [], + "depressant's": [], + "Blackshirt's": [], + "singletree": ["S", "M"], + "fang": ["M", "D", "S"], + "solvent's": [], + "walled": [], + "nondelivery's": [], + "surrounds": [], + "mottling": [], + "Yugoslavia's": [], + "dockers": [], + "ErvIn's": [], + "stolidity": ["M"], + "oceanic's": [], + "tiger": ["S", "M"], + "dimness's": [], + "confrere's": [], + "juggler's": [], + "toting": [], + "prescriptions's": [], + "manures": [], + "Woolongong's": [], + "cornice's": [], + "restringing": [], + "scantiesness": [], + "gunshot": ["M", "S"], + "fashionista": ["M", "S"], + "jackknife": ["M", "G", "D", "S"], + "susseds": [], + "disinfect": [], + "threnodies": [], + "refashioneding": [], + "twaddler's": [], + "sacrifice": ["D", "S", "M", "G"], + "inhabitants": [], + "sultan'ses": [], + "slalom's": [], + "fridges": [], + "parliaments": [], + "quantitatively": [], + "Franco's": [], + "cell'sed": [], + "espaliered": [], + "Capitoline's": [], + "sensationalizing": [], + "Pol's": [], + "lament's": [], + "rectum's": [], + "twinning": [], + "immutability": ["M"], + "eigenvalues": [], + "GAO": [], + "Kaitlin's": [], + "colleens": [], + "doyens's": [], + "bilabials": [], + "bamboozlesing": [], + "Donald's": [], + "bowel": ["S", "M"], + "moldboards's": [], + "autism's": [], + "lubricating": [], + "tanking": [], + "chemists": [], + "atavist": ["S", "M"], + "vaccinates": [], + "Zurich's": [], + "crumb'sed": [], + "Dmitri's": [], + "flip": ["M", "S"], + "Paiutes's": [], + "cut's": [], + "boaster": ["M"], + "indicteds": [], + "vogues's": [], + "birther": ["M"], + "Savannah's": [], + "hopeless": ["Y", "P"], + "ski": ["S", "Z", "G", "M", "D", "R"], + "transcribed": [], + "tabulation's": [], + "greasepaint's": [], + "mendicant": ["S", "M"], + "feelersing": [], + "machinatesens": [], + "rues's": [], + "Chevron's": [], + "listenersing": [], + "Vauban": ["M"], + "beefiness": ["M"], + "hoodwink": ["D", "G", "S"], + "galaxies's": [], + "Leibniz's": [], + "mushroom": ["G", "S", "M", "D"], + "jerseys": [], + "menhaden's": [], + "increment'sed": [], + "Evangeline": ["M"], + "motile": ["S"], + "headhunted": [], + "pedagogues's": [], + "milfs": [], + "administratively": [], + "pushover": ["M", "S"], + "skid's": [], + "boinks": [], + "nonperformance": ["M"], + "zooms": [], + "laudeds": [], + "misreports": [], + "rust": ["M", "D", "G", "S"], + "coordinator's": [], + "Lepke's": [], + "maxes": [], + "flanking": [], + "limpidliness": [], + "Aachen's": [], + "votaries's": [], + "PA's": [], + "fruit": ["S", "M", "D", "G"], + "keepsake": ["M", "S"], + "skeptic": ["S", "M"], + "traffics": [], + "clasps": [], + "Aeneid's": [], + "copybook's": [], + "truelove's": [], + "revives": [], + "enchiladas's": [], + "biophysicist": ["M", "S"], + "educationalists": [], + "soonest": [], + "Estonian": ["S", "M"], + "shimmies's": [], + "numerators": [], + "nape": ["M", "S"], + "flashing": ["M"], + "punters": [], + "ethereally": [], + "divisibility": ["I", "M"], + "incisively": [], + "Norman'ses": [], + "telecommunication's": [], + "greedy": ["P", "T", "R"], + "inexperience": [], + "Gene's": [], + "destroyed": [], + "Hamsun's": [], + "breezy": ["R", "T", "P"], + "Ute": ["S", "M"], + "infesteds": [], + "foreignness's": [], + "Snoopy's": [], + "menially": [], + "preferably": [], + "Hernandez's": [], + "expression's": [], + "canting": [], + "target'sed": [], + "redactors": [], + "uprootsed": [], + "haltersing": [], + "eructation": ["S", "M"], + "Oriental'ses": [], + "six'ses": [], + "liaised": [], + "site": ["M", "G", "D", "S"], + "containersing": [], + "unbeatable": [], + "mope's": [], + "screechiest": [], + "vaquero'ses": [], + "galleries's": [], + "decathletes": [], + "kestrels": [], + "messiah": ["M"], + "brownfield": [], + "encouragement's": [], + "nasally": [], + "shimmer's": [], + "unreliable": [], + "rubdown": ["S", "M"], + "whoop's": [], + "misleading": ["Y"], + "insomnia": ["M"], + "precognition": ["M"], + "incursion": ["M", "S"], + "stampeder": [], + "Saddam": ["M"], + "Leicesters's": [], + "milling's": [], + "watermark's": [], + "politburo's": [], + "lightenersing": [], + "Maratha": ["M"], + "sloe'ses": [], + "quantifiers": [], + "adulterates": [], + "mishandle": ["D", "S", "G"], + "theatergoer's": [], + "forcible": [], + "gallbladder'ses": [], + "groundeder": [], + "scratchcards": [], + "mauler": ["M"], + "payoff": ["M", "S"], + "oat's": [], + "pain'sed": [], + "rookie": ["S", "M"], + "quinces's": [], + "debark": [], + "Maori": ["M", "S"], + "clearest": [], + "Lott's": [], + "Jinnah": ["M"], + "Wedgwood": ["M"], + "overwriting": [], + "special": ["S", "M", "Y"], + "Maureen": ["M"], + "nonsupporting's": [], + "logger": ["S", "M"], + "vouches": [], + "befuddling": [], + "Schweitzer's": [], + "groper": ["M"], + "jiltsing": [], + "tachycardia's": [], + "cadger's": [], + "vagina's": [], + "recommit": [], + "bland": ["P", "T", "R", "Y"], + "pestilential": [], + "Pampers": ["M"], + "gummier": [], + "overages's": [], + "insurgencies's": [], + "gadder's": [], + "ham's": [], + "landfall": ["M", "S"], + "are's": [], + "warheads": [], + "manometers's": [], + "tatter'sed": [], + "empathized": [], + "Botticelli": ["M"], + "monolingual's": [], + "moisturizes": [], + "Brokaw": ["M"], + "Schrodinger's": [], + "wirehairs": [], + "einsteinium's": [], + "concrete's": [], + "grown": ["A", "I"], + "sidle": ["M", "G", "D", "S"], + "hillsides's": [], + "nuisance": ["M", "S"], + "Barthes": [], + "hangdog": [], + "slum'ses": [], + "wiretapped": [], + "diversity": ["S", "M"], + "syllabicate": ["G", "N", "D", "S"], + "cateringings": [], + "individualizinged": [], + "raisins's": [], + "genteel": ["Y", "P"], + "overflight'ses": [], + "bowels's": [], + "inoperable": [], + "pillowcase'ses": [], + "investigated": [], + "soapiest": [], + "damn": ["S", "B", "G", "M", "D"], + "wattle's": [], + "pailfuls's": [], + "demographer": ["S", "M"], + "relineds": [], + "ransom": ["S", "Z", "G", "M", "D", "R"], + "Elva": ["M"], + "doersing": [], + "deadheadeding": [], + "casehardening": [], + "brood": ["S", "M", "D", "R", "Z", "G"], + "Fresno": ["M"], + "Patton's": [], + "surprised": [], + "submerse": ["G", "N", "D", "S"], + "agronomist's": [], + "creator's": [], + "cutback's": [], + "worldliness's": [], + "skying": [], + "toeds": [], + "Beria's": [], + "Cochabamba's": [], + "workout's": [], + "frigidly": [], + "meadow": ["M", "S"], + "coeval'sly": [], + "Barclays's": [], + "givings": [], + "highhandedness's": [], + "tuck": ["M", "D", "R", "S", "Z", "G"], + "ignited": [], + "farmland": ["M", "S"], + "datelines": [], + "stagflation's": [], + "Fagin": ["M"], + "hemstitch's": [], + "pollard": ["S"], + "ourselves": [], + "treadled": [], + "Waldensian's": [], + "should've": [], + "underskirts's": [], + "Holcomb's": [], + "unyielding": [], + "deductibles's": [], + "directorates": [], + "intercept's": [], + "thruways": [], + "underexpose": ["G", "D", "S"], + "ramificationing": [], + "granderly": [], + "Csonka": ["M"], + "fossil's": [], + "Norwich": ["M"], + "espionage": ["M"], + "spaciness's": [], + "nosebleed's": [], + "Andean's": [], + "poached": [], + "caption's": [], + "monodists's": [], + "xxix": [], + "frescoes": [], + "ascetics": [], + "skiers": [], + "crusader's": [], + "expended": [], + "severances": [], + "Hialeah's": [], + "optionally": [], + "bounces": [], + "enactments's": [], + "incenseds": [], + "crunchiness's": [], + "mantelpiece": ["S", "M"], + "Dolores": ["M"], + "extraterritoriality": ["M"], + "hypo": ["M", "S"], + "sullener": [], + "sandblasting's": [], + "spiffs": [], + "quirts's": [], + "Hilton's": [], + "Steven's": [], + "vector's": [], + "TEFL": [], + "mullet's": [], + "sonars": [], + "cram": ["S"], + "ringleader": ["M", "S"], + "hauntersing": [], + "resists's": [], + "Portsmouth": ["M"], + "contraction": ["S"], + "southerners": [], + "typographers's": [], + "attack": ["Z", "G", "M", "D", "R", "S"], + "Yorkshires": [], + "preemptively": [], + "fortuity": ["M"], + "turmoil'ses": [], + "privatizing": [], + "sermonizes": [], + "poohing": [], + "gulpers": [], + "rewound": [], + "dispatcher": ["M", "S"], + "ballet": ["S", "M"], + "commiseratingen": [], + "ceases": [], + "prognosis's": [], + "unambitious": [], + "mugging": ["M", "S"], + "collars": [], + "breathlessly": [], + "Thurman": ["M"], + "revolved": [], + "pensioning": [], + "cunningly": [], + "chaired": [], + "dizzying": [], + "stringency": ["M"], + "darnedest": [], + "lopped": [], + "Mexican": ["M", "S"], + "Talmud'ses": [], + "jabs": [], + "Marxisms's": [], + "ebony's": [], + "prompting": ["M"], + "gritters's": [], + "hallucination's": [], + "stockpot": ["S", "M"], + "farcical": ["Y"], + "polls": [], + "shown": [], + "bisque's": [], + "interweaves": [], + "scarpersing": [], + "swilling": [], + "Couperin": ["M"], + "host'sed": [], + "earnerers": [], + "Grammy": ["M"], + "Walterers": [], + "miserableness": ["M"], + "unfulfilled": [], + "satirists's": [], + "philanthropies's": [], + "primerly": [], + "nepotistic": [], + "daemon": ["M", "S"], + "entitle": ["D", "S", "G", "L"], + "copilot's": [], + "provoking": ["Y"], + "airliner": ["M"], + "buttery": ["T", "R", "S", "M"], + "flashes": [], + "meltdowns": [], + "database": ["S", "M"], + "steppingstones's": [], + "airwoman": [], + "appurtenances's": [], + "bailsman": ["M"], + "chukka's": [], + "chagrins": [], + "stylistically": [], + "drink's": [], + "singsong": ["S", "M", "D", "G"], + "Braille'ses": [], + "garlanding": [], + "cognition": ["A", "M"], + "Kaiser'ses": [], + "reputes's": [], + "brooding's": [], + "Stuyvesant's": [], + "uproot": ["G", "S", "D"], + "burled": [], + "humbugged": [], + "sacredness's": [], + "followersing": [], + "Amoco's": [], + "ejaculateds": [], + "sideswipes": [], + "thalidomide": ["M"], + "Rocco's": [], + "s": ["N", "Y", "X", "B"], + "ovulate": ["D", "S", "G", "N"], + "corked": [], + "swellhead'sed": [], + "maizes's": [], + "societies's": [], + "censuses": [], + "exporters": [], + "mandarin's": [], + "troupersing": [], + "plucking": [], + "ICBM's": [], + "splayfoot": ["M", "D"], + "beyond": [], + "regexp": ["S"], + "versifier's": [], + "appointees": [], + "wainscotsings": [], + "sulfide": ["S", "M"], + "scorch": ["M", "D", "R", "S", "Z", "G"], + "captiousliness": [], + "community": ["S", "M"], + "properest": [], + "brae": ["S", "M"], + "surcingle": ["S", "M"], + "tampeder": [], + "catalyzeds": [], + "Alphonso's": [], + "homophobia": ["M"], + "Seebeck's": [], + "wordlessly": [], + "poisoning's": [], + "peculated": [], + "subsidizers": [], + "Gallagher": ["M"], + "auction'sed": [], + "thumbs": [], + "bloom's": [], + "lope'sing": [], + "lot": ["S", "M"], + "liltsing": [], + "crispbread": ["S"], + "Massachusetts's": [], + "minuets's": [], + "hindquarter's": [], + "hang's": [], + "severed": [], + "layups": [], + "Barbuda's": [], + "llano's": [], + "scalded": [], + "readiness": ["M"], + "cabs": [], + "Jaipur": ["M"], + "Izanagi": ["M"], + "canoodleds": [], + "Greenlandic": [], + "putrefyinged": [], + "requisite's": [], + "droopinesser": [], + "mariachi'ses": [], + "Ella": ["M"], + "Greenwich": ["M"], + "nullification's": [], + "busted": [], + "neglecting's": [], + "sniffled": [], + "Abbott's": [], + "investiture's": [], + "honeypot": ["S"], + "butchesers": [], + "legatees": [], + "cambric": ["M"], + "Nottingham's": [], + "aweds": [], + "starbursts": [], + "jiggersed": [], + "briefly": [], + "ribbing": [], + "inoperative": [], + "Bruneian'ses": [], + "NP": [], + "unlighted": [], + "blackerly": [], + "coarserly": [], + "Mercurochrome": ["M"], + "ounce's": [], + "coquetted": [], + "retardation's": [], + "Selectric": ["M"], + "bookmark": ["S", "M", "D", "G"], + "Johns's": [], + "Torres's": [], + "Islamabad": ["M"], + "bairns": [], + "choirmasters's": [], + "sheathings's": [], + "trains's": [], + "electsed": [], + "cussed": ["P", "Y"], + "antihistamines": [], + "terry'sers": [], + "pentathlete'ses": [], + "colorlessly": [], + "shootout's": [], + "telethon's": [], + "Oct's": [], + "saga'ses": [], + "correctly": [], + "crossfire": ["M", "S"], + "cave": ["D", "R", "S", "M", "Z", "G"], + "inflatable's": [], + "straightens": [], + "placekicked": [], + "hunch'sed": [], + "argumentation's": [], + "pervs": [], + "discern": ["L", "S", "D", "G"], + "recitalists": [], + "hastened": [], + "Hellenism's": [], + "hickeys's": [], + "Fred's": [], + "burble'sing": [], + "cannoning's": [], + "P's": [], + "Epistle": [], + "outpace": ["G", "D", "S"], + "protected": ["U"], + "wretchedest": [], + "gentrifiesing": [], + "bursars's": [], + "stew'sed": [], + "neighing": [], + "Libby": ["M"], + "Coulter": ["M"], + "inadvertence": ["M"], + "pests": [], + "assuaging": [], + "stretchersing": [], + "stampeding": [], + "rocking's": [], + "goddaughters": [], + "Monteverdi": ["M"], + "afraid": ["U"], + "empowerment": ["M"], + "harriers": [], + "cashbook'ses": [], + "seigneur": ["S", "M"], + "Bede": ["M"], + "captive's": [], + "cleave": ["Z", "G", "D", "R", "S"], + "Seder": ["M", "S"], + "critters's": [], + "sandwich": ["M", "D", "S", "G"], + "planter's": [], + "eggs's": [], + "refusal'ses": [], + "maximum": ["S", "M"], + "meatloaves": [], + "antibacterials": [], + "launderette": ["S", "M"], + "versification": ["M"], + "costliness": ["M"], + "sloping": [], + "hacking": ["M"], + "epiglottis": ["M", "S"], + "monotonic": [], + "sustained": [], + "dejecteds": [], + "prostate's": [], + "firmament's": [], + "mailing": ["M"], + "pithiest": [], + "pocketknife": ["M"], + "sheepherder'ses": [], + "compere": ["D", "S", "G"], + "enrapturing": [], + "superscribes": [], + "theorizesing": [], + "overdubbed": [], + "bloodstain": ["S", "M", "D"], + "laughter's": [], + "Freemasonry": ["S", "M"], + "Floridan's": [], + "matronly": [], + "cans's": [], + "gulpersing": [], + "Franks": ["M"], + "annotateds": [], + "upsurging": [], + "concreting": [], + "Marian's": [], + "Lowery": ["M"], + "White's": [], + "spanks's": [], + "proprietress's": [], + "steal": ["S", "M", "H", "G"], + "overprotected": [], + "Midwest": ["M"], + "protegees": [], + "crayonings": [], + "tarts": [], + "Euripides's": [], + "incomparably": [], + "seabeds's": [], + "hijacked": [], + "shoppersing": [], + "Holley": ["M"], + "portent's": [], + "jeered": [], + "chutes": [], + "crasheds": [], + "strenuousness's": [], + "Sigurd's": [], + "ascendants's": [], + "repeatersing": [], + "horsehide": ["M"], + "pendents": [], + "Osborn's": [], + "commonplaces": [], + "myna'ses": [], + "steepness": ["M"], + "midsummer's": [], + "Kohinoor's": [], + "chirps": [], + "scorner": ["M"], + "Roqueforts": [], + "multipurpose": [], + "enshrined": [], + "lecithin's": [], + "dotcoms": [], + "altered": ["U"], + "dove's": [], + "delve": ["Z", "G", "D", "R", "S"], + "elver's": [], + "degrade": ["B"], + "meme": ["M", "S"], + "nonuniform": [], + "thoughts": [], + "polestars": [], + "empty": ["T", "G", "P", "D", "R", "S", "M"], + "weather's": [], + "vapidly": [], + "goal'ses": [], + "collage": ["S", "M"], + "sniffles": [], + "Paul's": [], + "endangeredment": [], + "phosphorescence": ["M"], + "blemish": ["G", "M", "D", "S"], + "backgrounds": [], + "garbleds": [], + "municipal's": [], + "damselflies's": [], + "imitativenessly": [], + "Passion": ["S", "M"], + "streaked": [], + "misinformeding": [], + "prawning": [], + "belches": [], + "pornographer": ["M", "S"], + "postbag": ["S"], + "separations's": [], + "umbra": ["S", "M"], + "virgule's": [], + "czar'ses": [], + "zest's": [], + "Okefenokee's": [], + "musicians's": [], + "upbringing's": [], + "acrylamide": [], + "minutes's": [], + "Hohhot": ["M"], + "nugget": ["S", "M"], + "transship": ["S", "L"], + "Horatio's": [], + "Mediterranean": ["M", "S"], + "headhuntersing": [], + "sportinesser": [], + "Monica": ["M"], + "bill": ["S", "B", "J", "G", "M", "D"], + "Wiemar's": [], + "cleanliest": [], + "unicellular": [], + "Shikoku": ["M"], + "kinda": [], + "Baldwin": ["S", "M"], + "antedated": [], + "Brokaw's": [], + "absentlies": [], + "quandaries's": [], + "sneer'sed": [], + "binomial": ["S", "M"], + "insentience": [], + "application": ["A", "M"], + "nontheatrical": [], + "missesing": [], + "Americanizations": [], + "bombardments": [], + "heckling": ["M"], + "diversifieds": [], + "threes": [], + "deformities": [], + "canvases": [], + "routers": [], + "sculptsing": [], + "charlatanry's": [], + "tightnessens": [], + "recontact": [], + "anecdotally": [], + "Karachi": ["M"], + "cheep": ["G", "M", "D", "S"], + "misinterprets": [], + "tartar": ["M", "S"], + "foileding": [], + "interrupt's": [], + "towline": ["M", "S"], + "burs's": [], + "repatriated": [], + "daunt": ["G", "D", "S"], + "Stonehenge": ["M"], + "laser": ["M"], + "keynoted": [], + "visual": ["S", "M", "Y"], + "LSAT": [], + "nitrates": [], + "wainscotings": [], + "persuasiveness": ["M"], + "selenium's": [], + "dazzle'sers": [], + "rethinksing": [], + "Stacie's": [], + "heliport": ["M", "S"], + "impudence": ["M"], + "Sallie": ["M"], + "Calvinisms": [], + "zed's": [], + "mucus's": [], + "joinery's": [], + "flieder": [], + "stripe'ses": [], + "Nazarene's": [], + "licentiates": [], + "Whitehead's": [], + "slackeden": [], + "leitmotif's": [], + "surf's": [], + "sickout": ["S", "M"], + "telecast": ["S", "Z", "G", "M", "R"], + "steamer's": [], + "derailments's": [], + "forecasters": [], + "cavalry": ["S", "M"], + "trinitrotoluene": ["M"], + "nullificationed": [], + "brigade's": [], + "projector": ["M", "S"], + "keelsing": [], + "IMF's": [], + "sprightliness": ["M"], + "joyless": ["P", "Y"], + "abundance": ["S", "M"], + "Queen": ["M", "S"], + "chopsticks's": [], + "Bavaria's": [], + "capped": ["U", "A"], + "creeperers": [], + "treasured": [], + "repairers": [], + "Pizarro": ["M"], + "metastasizeds": [], + "dudgeon's": [], + "Hawaiians": [], + "culture's": [], + "Allah's": [], + "breathalyzinged": [], + "installer": ["U", "M", "S"], + "chapel'ses": [], + "speechwriter": ["S"], + "adumbrateds": [], + "Lenard's": [], + "inimitable": [], + "brooder": ["M"], + "motets's": [], + "Sephardi": ["M"], + "Magnitogorsk": ["M"], + "sirloin's": [], + "frock": ["C", "U", "S"], + "kHz": [], + "manicurists": [], + "argued": [], + "lank": ["R", "Y", "T", "P"], + "auguries": [], + "biochemist'ses": [], + "foam": ["M", "D", "G", "S"], + "eugenicists": [], + "schismatics's": [], + "tripwire": ["S"], + "precis": ["M"], + "cuties's": [], + "rebukeds": [], + "satiny": [], + "Genesis": ["M"], + "devastationed": [], + "Lima's": [], + "upticks's": [], + "Sinkiang's": [], + "overdubbing": [], + "subtotaled": [], + "widows": [], + "recreant'ses": [], + "nitrite's": [], + "greengage's": [], + "divulging": [], + "censusesing": [], + "appellation": ["M"], + "Etruria": ["M"], + "castanet'ses": [], + "dismayed": ["U"], + "Nexis": ["M"], + "regroup": ["D", "G", "S"], + "indention's": [], + "swell": ["T", "G", "S", "M", "D", "R", "J"], + "late": ["Y", "T", "R", "P"], + "photoengraving": ["M"], + "hotshots": [], + "takeout'ses": [], + "fixedly": [], + "corers": [], + "Belinda": ["M"], + "spousal'ses": [], + "task'sed": [], + "nuthatches": [], + "leavened": ["U"], + "masqueraded": [], + "quizzer's": [], + "carpetbag": ["M", "S"], + "grandpa'ses": [], + "depraving": [], + "golfeder": [], + "oligarchies's": [], + "cricket'ser": [], + "training": ["M"], + "median": ["M", "S"], + "Indianapolis's": [], + "conquered": ["U"], + "greyhound's": [], + "overfond": [], + "canerers": [], + "pressed": ["U"], + "exile's": [], + "distances": [], + "Negroes": [], + "gratingly": [], + "blueder": [], + "recast": [], + "alums": [], + "push'sed": [], + "witnessing": [], + "Michele's": [], + "neurasthenics": [], + "Melinda's": [], + "spite": ["A", "S", "M"], + "semitone": ["S", "M"], + "persevered": [], + "carefully": [], + "employers's": [], + "holding": ["M"], + "goalmouths": [], + "stayings": [], + "users": [], + "shouters": [], + "filmier": [], + "jibe": ["M", "S"], + "sputnik": ["M", "S"], + "timeout": ["S", "M"], + "excursions": [], + "facsimile's": [], + "languors's": [], + "a": ["S"], + "creek": ["S", "M"], + "impatient": ["Y"], + "gluten's": [], + "mirrored": [], + "race": ["M", "Z", "G", "D", "R", "S"], + "monoplanes's": [], + "thorninesser": [], + "racket'sed": [], + "monitor'sed": [], + "grubstake": ["M"], + "lynchers": [], + "Henley": ["M"], + "newshound": ["S"], + "flatteneding": [], + "exhumation's": [], + "Bangladeshi": ["S", "M"], + "Pat": ["M"], + "shooing": [], + "potables's": [], + "Moluccas's": [], + "commends": [], + "OpenOffice's": [], + "deinactivation": [], + "psychopathic": [], + "pathway": ["M", "S"], + "pulpit's": [], + "Blvd": [], + "TeX": [], + "liberator'ses": [], + "Jeannie's": [], + "undeveloped": [], + "finesses's": [], + "flop's": [], + "bromide's": [], + "spellcheckers": [], + "rewarming": [], + "collided": [], + "crammers": [], + "strength's": [], + "tawdrier": [], + "emir": ["M", "S"], + "drieder": [], + "coshesing": [], + "casein": ["M"], + "payloads": [], + "pittance": ["M", "S"], + "rigidly": [], + "inducer": ["M"], + "sheets": [], + "domestics's": [], + "fathomeding": [], + "hurlersing": [], + "lisle's": [], + "gibbon'ses": [], + "Tereshkova's": [], + "badge": ["M", "Z", "R", "S"], + "spareder": [], + "Podgorica's": [], + "extinguished": [], + "decencies's": [], + "Vesta's": [], + "thronging": [], + "exalt": ["S", "D", "G"], + "burbling": [], + "pulsationsing": [], + "bookseller": ["M", "S"], + "deception": ["M", "S"], + "admiration": ["M"], + "anthologizesing": [], + "arrogationed": [], + "whelked": [], + "tactics's": [], + "bodybuilding's": [], + "baronetcy": ["S", "M"], + "aunt's": [], + "Soweto": ["M"], + "meandering": [], + "amnesiac'ses": [], + "trade's": [], + "dyslexia": ["M"], + "Refugio's": [], + "protectively": [], + "imposeds": [], + "gerrymander's": [], + "chiller's": [], + "scenery's": [], + "artificer": ["M"], + "enamelers": [], + "Madonna's": [], + "sawbones's": [], + "lapdogs's": [], + "defraud": ["D", "R", "Z", "G", "S"], + "slunk": [], + "Onegin's": [], + "voguish": [], + "Swift's": [], + "pulling's": [], + "Celsius's": [], + "founded": ["U"], + "Hansen's": [], + "harsherly": [], + "Argus": ["M"], + "buffoonish": [], + "uppercutting": [], + "consistent": ["I", "Y"], + "leftists": [], + "telecommutinged": [], + "unhook": [], + "subspace": [], + "carcinogens": [], + "honky's": [], + "fiscals": [], + "jubilant": ["Y"], + "disembark": [], + "landing": ["M"], + "carnival'ses": [], + "shelleder": [], + "lukewarmliness": [], + "gypsum": ["M"], + "castigator": ["S", "M"], + "bowlegs": [], + "equatable": [], + "coxswain'ses": [], + "monorail'ses": [], + "Macedonia": ["M"], + "jumbos's": [], + "lousily": [], + "eastern": ["Z", "R"], + "fellow": ["S", "M"], + "sound'sed": [], + "sharps": [], + "functionality": ["S"], + "payback's": [], + "probes": [], + "bloatersing": [], + "Starbucks's": [], + "Utes": [], + "blanderly": [], + "end'sed": [], + "resemble": ["D", "S", "G"], + "abominate": ["D", "S", "G", "N", "X"], + "autosuggestion": [], + "glands": [], + "Rice's": [], + "octopus'ses": [], + "sharia": ["M"], + "Bacchanalia's": [], + "polymeric": [], + "Lorenzo's": [], + "wafflersing": [], + "saprophytes": [], + "Loren's": [], + "collocate's": [], + "hardiness": ["M"], + "unaccountably": [], + "Exodus": ["M"], + "applauds": [], + "bronchus's": [], + "Fragonard": ["M"], + "counterclaim": ["G", "S", "M", "D"], + "Bernadette": ["M"], + "goosed": [], + "startled": [], + "reckons": [], + "Marlin": ["M"], + "latex": ["M"], + "scaleless": [], + "Carpathians's": [], + "seemly": ["U", "R", "T", "P"], + "liquidizinged": [], + "kludgeds": [], + "duckling": ["S", "M"], + "lovableness's": [], + "famines's": [], + "Duchamp's": [], + "enjoin": ["S", "G", "D"], + "sash's": [], + "sepulchral": [], + "historiographers": [], + "foxholes": [], + "vulgarity's": [], + "uvulas": [], + "photosynthesizing": [], + "charlatanry": ["M"], + "dose'sing": [], + "runlets": [], + "Dickinson": ["M"], + "peekaboo's": [], + "vulpine": [], + "collect's": [], + "coquettishly": [], + "final": ["S", "M", "Y"], + "coast": ["S", "M", "D", "R", "Z", "G"], + "rhyme'sers": [], + "alternatelying": [], + "nullity's": [], + "tremble's": [], + "clubfoot'sed": [], + "Hood's": [], + "conjurer": ["M"], + "pudendum": ["M"], + "Sahara": ["M"], + "seesaw'sed": [], + "ruthenium's": [], + "Abyssinian": ["M"], + "jailbirds's": [], + "dedicated": [], + "skywriting's": [], + "arduous": ["Y", "P"], + "bod": ["S", "M", "D", "G"], + "Phrygia": ["M"], + "gait": ["M", "R", "Z", "S"], + "Pyrrhic's": [], + "Malamud": ["M"], + "comforted": [], + "politicking's": [], + "procrastinates": [], + "restructurings's": [], + "porousness's": [], + "bullishly": [], + "Prince's": [], + "lacked": [], + "pert": ["R", "Y", "P", "T"], + "farming's": [], + "Senior's": [], + "Aeschylus's": [], + "tickets's": [], + "BA": ["M"], + "biathlon": ["S", "M"], + "galas": [], + "Terence": ["M"], + "unsaddle": [], + "sanatorium": ["S", "M"], + "canals": [], + "Stoic's": [], + "preoperative": [], + "Hallie's": [], + "omnivores": [], + "Mongolians": [], + "macron": ["M", "S"], + "gyps's": [], + "Nordic's": [], + "atilt": [], + "airmailing": [], + "Yankee's": [], + "prosciutto's": [], + "coats": [], + "contamination's": [], + "Magdalene": ["M"], + "sultriest": [], + "laborious": ["P", "Y"], + "asceticism": ["M"], + "cop'sed": [], + "terrifically": [], + "retrofired": [], + "wetland": ["S", "M"], + "wan": ["G", "P", "D", "Y"], + "rebelliousness's": [], + "alfresco": [], + "brainpower": [], + "babied": [], + "distillate'sen": [], + "hewer's": [], + "auctionings": [], + "upholstersing": [], + "moat": ["M", "D", "S"], + "bottles": [], + "spoliation": ["C", "M"], + "homeworker": [], + "foreleg's": [], + "reviser": ["M", "S"], + "effectively": [], + "forging's": [], + "overstayeds": [], + "regretting": [], + "Vietminh's": [], + "interlards": [], + "wowed": [], + "forecourt's": [], + "Tiber": ["M"], + "bleakness's": [], + "faint's": [], + "ragouts": [], + "revolutions's": [], + "cinctures's": [], + "drachmas": [], + "best": ["S", "G", "M", "D"], + "forward'sed": [], + "casualty's": [], + "imaging": [], + "laxliness": [], + "contender's": [], + "format's": [], + "locatingen": [], + "physiological": ["Y"], + "centrism's": [], + "enjoyablement": [], + "pressurizer's": [], + "McBride's": [], + "laugh'sed": [], + "lymphoid": [], + "homes": [], + "testimonies": [], + "bulletproof": ["S", "D", "G"], + "waldoes": [], + "pornographers": [], + "alleged": ["Y"], + "housetops": [], + "shipowner'ses": [], + "brine": ["M"], + "cider's": [], + "aviators": [], + "motheredly": [], + "wineries's": [], + "nonreturnable'ses": [], + "assessing": [], + "swasheds": [], + "GIF": [], + "impious": ["P", "Y"], + "chief": ["T", "M", "R", "Y", "S"], + "Steadicam": ["M"], + "lighthearted": ["Y", "P"], + "sinfulness": ["M"], + "tankersing": [], + "bay": ["S", "M", "D", "G"], + "sleuth'sing": [], + "Diophantine": ["M"], + "come's": [], + "bodging": [], + "excise": ["X", "D", "S", "M", "G", "N"], + "chafes": [], + "unexpurgated": [], + "Klaus's": [], + "Malone's": [], + "cars": [], + "gunrunner": ["M", "S"], + "oscilloscope": ["M", "S"], + "sprightliness's": [], + "farmyard's": [], + "robocall's": [], + "rating's": [], + "Ferguson": ["M"], + "soul": ["M", "S"], + "imbalances's": [], + "orthodontists": [], + "Dale's": [], + "remedies": [], + "officiators": [], + "hick's": [], + "psychologies": [], + "cultivar": ["S", "M"], + "raisinged": [], + "grumpiness": ["M"], + "tumults": [], + "scornfully": [], + "chewer's": [], + "Eu's": [], + "experimenters": [], + "blackness": ["M"], + "stickersing": [], + "towelings": [], + "beheaded": [], + "squashiest": [], + "positeds": [], + "Blythe's": [], + "clunk": ["S", "M", "D", "R", "Z", "G"], + "creasing": [], + "proffer'sed": [], + "gaslights": [], + "physicist's": [], + "Dutchmen's": [], + "Greenspan's": [], + "tolling": [], + "toughened": [], + "geometries's": [], + "Melba": ["M"], + "sculptureds": [], + "gambler": ["M"], + "values": [], + "drought": ["S", "M"], + "Okinawa's": [], + "circumscribe": ["G", "D", "S"], + "brie": ["M", "Z", "R"], + "intermix": ["G", "D", "S"], + "hypodermic's": [], + "hefts": [], + "zingers": [], + "cardies": [], + "doldrums's": [], + "Italy": ["M"], + "polarizing": [], + "perennial'sly": [], + "cirrhotics's": [], + "plebeian": ["M", "S"], + "turmoil's": [], + "Sand's": [], + "purifier's": [], + "boffins": [], + "twaddleder": [], + "sour": ["M", "D", "R", "Y", "T", "G", "S", "P"], + "spaniel's": [], + "chimera's": [], + "enjoyingable": [], + "adulteress'ses": [], + "Charleston'ses": [], + "livery": ["C", "S", "M"], + "energizer": ["M"], + "shantytown": ["S", "M"], + "skulkersing": [], + "prettifyinged": [], + "sexing's": [], + "Dave": ["M"], + "socked": [], + "alimony's": [], + "counseleding": [], + "Mary": ["M"], + "flippancy's": [], + "hokum's": [], + "predispose": ["G", "D", "S"], + "riveted": [], + "Gabriela": ["M"], + "insights": [], + "coos's": [], + "wagtails": [], + "monograph": ["M"], + "servomechanism": ["S", "M"], + "misapplication's": [], + "Pontiac": ["M"], + "Roget's": [], + "Fagin's": [], + "backwater's": [], + "undersides": [], + "Geller": ["M"], + "solderer": ["M"], + "Tim": ["M"], + "honesty": ["E", "M"], + "weightlifting's": [], + "misinterpreted": [], + "balder": [], + "freehold'ser": [], + "salsa'ses": [], + "hijack'sed": [], + "Denmark's": [], + "malarial": [], + "Catholic": ["M", "S"], + "stamping": [], + "corroboratingen": [], + "contingently": [], + "planetariums": [], + "correctives's": [], + "crowdfund": ["S", "D", "G"], + "doorsteps": [], + "Polish's": [], + "Tantalus's": [], + "zucchini'ses": [], + "bone's": [], + "dashers": [], + "chatterer's": [], + "Teflon'ses": [], + "Apollinaire": ["M"], + "Limoges": ["M"], + "mandate's": [], + "landless": ["M"], + "indissoluble": [], + "wort's": [], + "Lorelei": ["M"], + "peculation": ["M"], + "reproducible": [], + "strapless'ses": [], + "Marsh's": [], + "brain": ["G", "M", "D", "S"], + "mouse'sers": [], + "markka's": [], + "modelsings": [], + "stockpileds": [], + "poolroom'ses": [], + "stonewall": ["G", "S", "D"], + "fetus'ses": [], + "bedrocks's": [], + "priestliest": [], + "titillateds": [], + "barters": [], + "waterboardedings": [], + "Bangor's": [], + "Gd": ["M"], + "caterersing": [], + "Austrian": ["S", "M"], + "boondoggler's": [], + "spokesman": ["M"], + "Windex": ["M"], + "reimburseds": [], + "manifestation": ["S", "M"], + "Nicobar's": [], + "Kan": ["S", "M"], + "purgatives": [], + "tipsiness's": [], + "peerage": ["S", "M"], + "grocery's": [], + "adaptablers": [], + "panaceas's": [], + "mooched": [], + "polyp": ["M", "S"], + "scan'ses": [], + "roosteder": [], + "outlasted": [], + "filtration's": [], + "stancheder": [], + "fairylands's": [], + "macaroon": ["M", "S"], + "retentiveness": ["M"], + "Menelaus": ["M"], + "neutralist": ["S", "M"], + "reminisceds": [], + "Rastafarian'ses": [], + "understatements's": [], + "flocking": ["M"], + "corporeally": [], + "hairband": ["S"], + "ballgames": [], + "zloty's": [], + "airplay": ["M"], + "sheen": ["M"], + "fettle": ["M"], + "headphone": ["M", "S"], + "valued": [], + "drippings's": [], + "outrage's": [], + "harangueds": [], + "flashily": [], + "fiend": ["S", "M"], + "bewailing": [], + "outlivinged": [], + "wake'sing": [], + "workup'ses": [], + "nation's": [], + "princelinesser": [], + "Hessian's": [], + "benefits": [], + "vaporizer": ["M"], + "photosynthesizinged": [], + "unwiserly": [], + "editions": [], + "impregnation's": [], + "fumed": [], + "smallholders": [], + "Michelangelo's": [], + "embanks": [], + "comeliness": ["M"], + "tragedy": ["S", "M"], + "psephologists": [], + "licensinged": [], + "perpendiculars": [], + "BSDs's": [], + "autumns's": [], + "stampede's": [], + "changelessly": [], + "perfect": ["P", "T", "G", "M", "D", "R", "Y", "S"], + "chasm's": [], + "afflict": ["G", "D", "S"], + "tinting": [], + "decreasing": ["Y"], + "metalworkers": [], + "downsizing's": [], + "macadamizing": [], + "ecol": [], + "vociferatingen": [], + "caress'sed": [], + "wavelength's": [], + "sketcheder": [], + "cautioned": [], + "camber": ["M", "D", "S", "G"], + "lilliputian": [], + "Asia": ["M"], + "peps's": [], + "slalom'ses": [], + "rhythm": ["S", "M"], + "manservant's": [], + "Hearst": ["M"], + "rounded": [], + "oxymoron's": [], + "wayfarers": [], + "fluoridate": ["G", "N", "D", "S"], + "happenstance": ["S", "M"], + "schoolbook's": [], + "plaudit's": [], + "cyclamen'ses": [], + "simper's": [], + "pounce": ["D", "S", "M", "G"], + "hoovereds": [], + "fear": ["M", "D", "G", "S"], + "coronal's": [], + "cruised": [], + "perpendicular'sly": [], + "Watteau": ["M"], + "yogic": [], + "obstructionism's": [], + "aqualung": ["M", "S"], + "Byers": ["M"], + "headteachers": [], + "Clemens's": [], + "ricotta": ["M"], + "gypped": [], + "marketeer": ["S", "M"], + "Grus's": [], + "concierge'ses": [], + "rhythms": [], + "keys": [], + "apps": [], + "Canaanite's": [], + "witness'sed": [], + "fabric's": [], + "curved": [], + "fraying": [], + "nut's": [], + "diddler": ["M"], + "serotonin": [], + "brads": [], + "replenishment's": [], + "expurgationens": [], + "grouting's": [], + "Josie's": [], + "binnacle's": [], + "partners": [], + "expropriate": ["G", "N", "X", "D", "S"], + "drool": ["S", "M", "D", "G"], + "regresseds": [], + "bruise's": [], + "Bruneian's": [], + "minefield's": [], + "watercourses's": [], + "calf's": [], + "Pauline's": [], + "serge": ["M"], + "glum": ["Y", "P"], + "Woodward": ["M"], + "redcap": ["S", "M"], + "Augustus": ["M"], + "Heinlein's": [], + "LOGO": [], + "calfskin": ["M"], + "Marilyn's": [], + "technicolor": [], + "Cipro": ["M"], + "wisecrack": ["M", "D", "S", "G"], + "Christian": ["S", "M"], + "dubbers": [], + "revue'ses": [], + "masseuse": ["M", "S"], + "parasympathetic": ["S"], + "cakewalks": [], + "airfoils": [], + "cowslips's": [], + "typewriters": [], + "collaborators": [], + "affirmatives": [], + "conkeder": [], + "centavos": [], + "suffering's": [], + "erythrocyte": ["S", "M"], + "burbs's": [], + "Schuyler's": [], + "execrateds": [], + "shrine": ["M", "S"], + "glue's": [], + "Harriet": ["M"], + "tympani": ["M"], + "described": [], + "flammability": ["I", "M"], + "canards": [], + "lardiest": [], + "impanel": ["S", "D", "G"], + "lymphocyte": ["S", "M"], + "pharmacopoeia's": [], + "catastrophe": ["M", "S"], + "Nipponese's": [], + "reverie's": [], + "coachman's": [], + "couplesed": [], + "synod's": [], + "frothinesser": [], + "skeweder": [], + "idolizeds": [], + "twitchier": [], + "obbligatos": [], + "tariffs": [], + "melodiously": [], + "Fahrenheit's": [], + "spirally": [], + "stamina's": [], + "videophone'ses": [], + "arteriole'ses": [], + "styling": [], + "grandmother": ["M", "Y", "S"], + "transiency's": [], + "Rasta": [], + "Southeasts": [], + "fibrillates": [], + "catbird's": [], + "radium": ["M"], + "geoengineering": [], + "hearken": ["S", "G", "D"], + "jejuna": [], + "absurdnesser": [], + "conversations": [], + "hydrodynamic": ["S"], + "arrives": [], + "aftereffects": [], + "enplanes": [], + "supererogation's": [], + "broody's": [], + "pastoral": ["M", "S"], + "credibility": ["I", "M"], + "filminess's": [], + "Bombay": ["M"], + "flagellates": [], + "buckaroo": ["S", "M"], + "circumstanced": [], + "replication's": [], + "alternations": [], + "liturgies's": [], + "MacLeish's": [], + "regurgitating": [], + "Salinas's": [], + "emptiest": [], + "meowed": [], + "shoat'ses": [], + "deponent'ses": [], + "seating's": [], + "wheelies's": [], + "chemurgy's": [], + "circumvention": ["M"], + "littlerness": [], + "possessed": [], + "proxies": [], + "mufti's": [], + "pharaohs": [], + "clinkerers": [], + "quatrain's": [], + "lav": ["S", "G", "D"], + "bridals": [], + "dinnerware": ["M"], + "uninspired": [], + "shuttles's": [], + "thickenerings": [], + "cheesecakes": [], + "mfr": ["S"], + "gauntness": ["M"], + "paymaster": ["S", "M"], + "dissembler's": [], + "parading": [], + "monody": ["S", "M"], + "fasts": [], + "scarier": [], + "waiter": ["M"], + "sequencersing": [], + "Farragut's": [], + "cellmate": ["S", "M"], + "scamper's": [], + "justifiesen": [], + "dishabille's": [], + "coalface'ses": [], + "prioritize": ["D", "S", "G"], + "loathers": [], + "caterpillars": [], + "rapture": ["M", "S"], + "doling": [], + "Rogelio's": [], + "stumblersing": [], + "jawbones": [], + "raft's": [], + "gastronomic": [], + "admixes": [], + "powerfully": [], + "FAQs": [], + "downgraded": [], + "inkstand": ["S", "M"], + "Kelli": ["M"], + "crushing": ["Y"], + "squally": [], + "stout'ser": [], + "candelabras": [], + "freestyles": [], + "overflies": [], + "abalone": ["S", "M"], + "legibility": ["M"], + "anesthesia's": [], + "espousinged": [], + "merrymakers": [], + "therapeutically": [], + "muffling": [], + "incrustation's": [], + "council's": [], + "Atacama": ["M"], + "international's": [], + "Philippine's": [], + "shank's": [], + "specifying": [], + "Clapton": ["M"], + "paranoiac'ses": [], + "Lamaisms's": [], + "tether's": [], + "visualizations": [], + "hillocks": [], + "taxicab's": [], + "Krupp's": [], + "prezzie": ["S"], + "backlash": ["M", "S"], + "Zanzibar's": [], + "tenacity's": [], + "sagacious": ["Y"], + "uncompromisingly": [], + "gong's": [], + "refinements's": [], + "arrogatingen": [], + "cementeder": [], + "shakily": [], + "placekickersing": [], + "Ruiz": ["M"], + "deathbed": ["S", "M"], + "pious": ["Y", "P"], + "eyebrow": ["S", "M"], + "unnaturalness": [], + "dedicators's": [], + "enshrinemented": [], + "physicist": ["S", "M"], + "misguided": ["Y"], + "juggernaut": ["S", "M"], + "eviction's": [], + "splenetic": [], + "Bangladesh": ["M"], + "sitars's": [], + "Guatemalan": ["M", "S"], + "compunction": ["S", "M"], + "schizophrenics's": [], + "ambler": ["M"], + "empathizes": [], + "Erhard": ["M"], + "conferees": [], + "fatties's": [], + "unaccompanied": [], + "bonobo'ses": [], + "Klingon's": [], + "decking": [], + "inchoate": [], + "Zedong's": [], + "culpably": [], + "shouteder": [], + "kaleidoscope'ses": [], + "evangelizes": [], + "publican'ses": [], + "cartersing": [], + "accredits": [], + "heptathlon": ["S", "M"], + "catechists": [], + "substantiated": ["U"], + "Salvadorian's": [], + "depletion": ["M"], + "bacteriologists": [], + "Loraine": ["M"], + "mimicries": [], + "falsifyingen": [], + "Herman": ["M"], + "rectal": ["Y"], + "secretes": [], + "pelt'sed": [], + "poleaxe": ["G", "D", "S"], + "joyousliness": [], + "snobbiest": [], + "Kmart": ["M"], + "fifer's": [], + "fustiness's": [], + "genetically": [], + "centrals": [], + "grouches": [], + "showy": ["T", "R", "P"], + "hogs": [], + "grooms": [], + "interstellar": [], + "accrueds": [], + "Oates": ["M"], + "Punjab": ["M"], + "invulnerably": [], + "Bethesda's": [], + "caregivers's": [], + "highbrows's": [], + "hamburgers's": [], + "micron's": [], + "rampaged": [], + "gunslinger's": [], + "subconscious's": [], + "spin'ses": [], + "prefer": ["S", "B", "L"], + "lollygagging": [], + "cad's": [], + "para'ses": [], + "knickknacks": [], + "postscript's": [], + "Arron's": [], + "alumni": [], + "gourmands": [], + "pop": ["S", "M"], + "boardroom'ses": [], + "materialization": ["M"], + "Gall": ["M"], + "hounded": [], + "colorists": [], + "denture": ["I", "M", "S"], + "helplines's": [], + "bladder": ["M", "S"], + "phantasmagoria": ["M", "S"], + "interdicting's": [], + "probe": ["M", "G", "D", "S", "B", "J"], + "ironmongery": [], + "polluter's": [], + "hardstand": ["S", "M"], + "fleetingness's": [], + "village": ["R", "S", "M", "Z"], + "industrialize": ["D", "S", "G"], + "backgammon": ["M"], + "saturated": ["U"], + "emperor": ["M", "S"], + "salaciousnessly": [], + "harrows's": [], + "kitchenettes": [], + "mattering": [], + "fertile": ["I"], + "codependency's": [], + "galleria's": [], + "weddings's": [], + "gruelings": [], + "fouled": [], + "vomit's": [], + "disesteem": [], + "makings's": [], + "whereof": [], + "germicidal": [], + "conscription": ["M"], + "breathalyzed": [], + "rude": ["Y", "T", "R", "P"], + "Geffen's": [], + "gynecologists": [], + "stub's": [], + "bearer": ["M"], + "benefactor": ["M", "S"], + "tinkles": [], + "sphinx'ses": [], + "antagonists": [], + "wader's": [], + "eff": ["G", "S", "D"], + "heweder": [], + "illegibility's": [], + "meshed": [], + "solemnness": ["M"], + "Bridgett": ["M"], + "recommendation": [], + "carrot's": [], + "tulips's": [], + "posturingsed": [], + "burnish": ["Z", "G", "M", "D", "R", "S"], + "amounting": [], + "nightstand": ["S", "M"], + "systematical": ["Y"], + "asphyxiate": ["D", "S", "X", "G", "N"], + "places": [], + "thrustings": [], + "uninalienable": [], + "presentations": [], + "Cherokee's": [], + "chanticleer's": [], + "aquaculture": ["M"], + "helium's": [], + "topaz": ["M", "S"], + "belletrist'ses": [], + "damsel": ["M", "S"], + "buffoon's": [], + "treasurers": [], + "administrated": [], + "coroner's": [], + "Hanoverian's": [], + "enslave": ["D", "S", "G", "L"], + "splotchy": ["T", "R"], + "senescence": ["M"], + "musicological": [], + "baroness": ["M", "S"], + "malevolence's": [], + "maizes": [], + "indication's": [], + "tellies's": [], + "plans": [], + "crazy": ["P", "R", "S", "M", "T"], + "drunk'sen": [], + "hayseed": ["M", "S"], + "Gus's": [], + "convincing": ["U", "Y"], + "combustible": ["M", "S"], + "backroom": ["S"], + "hypotheses": [], + "exacerbationed": [], + "decorating": ["M"], + "staving": [], + "Reuther's": [], + "bushiness's": [], + "froufrou": ["M"], + "ringeder": [], + "Tylenol": ["M"], + "annular": [], + "hardens": [], + "methane": ["M"], + "sickness": ["M", "S"], + "Tristan": ["M"], + "preregistration": ["M"], + "coughing": [], + "yourselves": [], + "epitomes": [], + "diffraction": ["M"], + "Nash's": [], + "bemireds": [], + "halfbacks's": [], + "spotlessness": ["M"], + "outhitting": [], + "commissary's": [], + "stump'sed": [], + "Blackshirt": ["M"], + "cloudbursts's": [], + "colloquialisms's": [], + "roger": ["G", "D", "S"], + "rubbished": [], + "hackle's": [], + "middleweight'ses": [], + "coals": [], + "Wrangell": ["M"], + "gatecrasher": ["M"], + "deploring": [], + "indoctrinationed": [], + "gravers": [], + "scoutersing": [], + "imperilsment": [], + "Georgia's": [], + "nightshade's": [], + "carpus's": [], + "Eastsers": [], + "wordsing": [], + "Chaucer's": [], + "ancestries": [], + "Ester": ["M"], + "impartsed": [], + "ineligibly": [], + "blearily": [], + "referee's": [], + "tragic": [], + "warmness": ["M"], + "careerism": [], + "laud's": [], + "doberman's": [], + "restaurateur'ses": [], + "baritones": [], + "serviette'ses": [], + "traditional": ["Y"], + "hadst": [], + "Oslo": ["M"], + "nib": ["S", "M"], + "ytterbium's": [], + "reset": [], + "cancel": ["D", "R", "S", "Z", "G"], + "Benghazi's": [], + "millibars": [], + "Newman": ["M"], + "brainteaser": ["S", "M"], + "observeder": [], + "slag'ses": [], + "homeschooling's": [], + "ink's": [], + "paralleling's": [], + "chronicle's": [], + "powerlessness": ["M"], + "whined": [], + "subscribesed": [], + "coveting": [], + "Waters's": [], + "divvieds": [], + "psychogenic": [], + "revelings's": [], + "maturities": [], + "stole": ["S", "M"], + "waspishly": [], + "Strindberg": ["M"], + "brainchildren's": [], + "mixture": ["S", "M"], + "alluvial's": [], + "mesmerism's": [], + "amanuenses": [], + "risibility's": [], + "Dushanbe's": [], + "polyacrylamide": [], + "crack'sed": [], + "abominationens": [], + "geodetic": [], + "doctor'sed": [], + "cigar'ses": [], + "din's": [], + "anesthetic's": [], + "incautious": [], + "stalers": [], + "cotton'sed": [], + "ejects": [], + "coasters": [], + "winders": [], + "Josh": ["M"], + "stinkings": [], + "impracticability": [], + "migrates": [], + "rise's": [], + "scarpers": [], + "antagonism": ["S", "M"], + "dace": ["S", "M"], + "Cornwall's": [], + "cedes": [], + "gunpoint's": [], + "viscountesses": [], + "bleariest": [], + "clammy": ["P", "T", "R"], + "electrodes": [], + "bookie's": [], + "positive": ["M", "Y", "P", "S"], + "divorce": ["D", "S", "L", "M", "G"], + "Orinoco's": [], + "lawn'ses": [], + "goal's": [], + "pester": ["G", "D"], + "hopper'ses": [], + "restlessness": ["M"], + "bioethics's": [], + "artsier": [], + "pectoral'ses": [], + "dissidents": [], + "illogicality's": [], + "rustles": [], + "furlong's": [], + "Thurber's": [], + "furrow'sed": [], + "spaceflights": [], + "provenience's": [], + "comediennes": [], + "vikings": [], + "Hakka's": [], + "musical": ["M", "Y", "S"], + "conventioneer": ["S"], + "grilledings": [], + "swami": ["S", "M"], + "triers's": [], + "Malaysia's": [], + "rotter": ["S"], + "bilaterally": [], + "pilgrims": [], + "aide's": [], + "Ararat's": [], + "McGuire": ["M"], + "yammering": [], + "desalinization's": [], + "haggis": ["M", "S"], + "rape'ses": [], + "wherever": [], + "convoluted": [], + "ambushed": [], + "Satan": ["M"], + "meantime": ["M"], + "memory's": [], + "imprisoning": [], + "hobble'sers": [], + "disappointing": ["Y"], + "mystery's": [], + "surreptitious": ["P", "Y"], + "chases": [], + "groundwork's": [], + "smircheds": [], + "suffused": [], + "chowders": [], + "intimate'sly": [], + "accent's": [], + "principle": ["D", "S", "M"], + "Metternich": ["M"], + "reflects": [], + "getaways's": [], + "sensitization's": [], + "Seurat's": [], + "benediction's": [], + "orc's": [], + "deaden": ["G", "D"], + "reprising": [], + "granddaddies's": [], + "concealeder": [], + "carjacked": [], + "credentials": [], + "primersing": [], + "litterbug's": [], + "teleconferenceds": [], + "saltcellars": [], + "vendible": [], + "vote's": [], + "impersonates": [], + "forenoon'ses": [], + "eyelet's": [], + "marimba": ["S", "M"], + "excursiveness": ["M"], + "tierers": [], + "Booth's": [], + "excoriated": [], + "incommodinged": [], + "holdup": ["M", "S"], + "posterior": ["S", "M"], + "semitrailer's": [], + "oscillated": [], + "concubine's": [], + "certificated": [], + "unbleached": [], + "debauched": [], + "nonintervention": ["M"], + "appraiser": ["M", "S"], + "aggregationed": [], + "sandhog": ["S", "M"], + "unsnapped": [], + "chow's": [], + "terser": [], + "Rhodesian": [], + "supervention's": [], + "gals's": [], + "molters": [], + "cunnilingus": ["M"], + "mesosphere's": [], + "deface": [], + "escallop": ["S", "G", "M", "D"], + "archdiocese": ["M", "S"], + "elevens": ["S"], + "miscarriages": [], + "disfigurements's": [], + "rivetersing": [], + "tutorials": [], + "currycomb'sed": [], + "entrapments": [], + "cowherd'ses": [], + "jurywoman's": [], + "expedition's": [], + "Australian's": [], + "evade": ["D", "R", "S", "Z", "G"], + "suiting": ["M"], + "fierceness": ["M"], + "consisted": [], + "awkwarderly": [], + "unsaved": [], + "inching": [], + "number": ["A", "S", "D", "G"], + "stirrups's": [], + "mamma": ["M"], + "scrawniness": ["M"], + "mob's": [], + "ritualism's": [], + "mollusk's": [], + "faithfully": [], + "schlep": ["S", "M"], + "three's": [], + "Bruce": ["M"], + "homogenize": ["D", "S", "G"], + "inductance's": [], + "subway'ses": [], + "honestly": [], + "canine": ["M", "S"], + "Eucharistic": [], + "Diana's": [], + "Oersted": ["M"], + "browse's": [], + "paragraphed": [], + "grill'sed": [], + "yammerer's": [], + "zoneds": [], + "bemuse": ["L", "G", "D", "S"], + "Madelyn": ["M"], + "skip's": [], + "pats": [], + "antic'ses": [], + "sneerings's": [], + "mortise'sing": [], + "adjusted": [], + "ransack": ["S", "G", "D"], + "madhouse": ["S", "M"], + "scorcheder": [], + "chimera": ["M", "S"], + "jingles": [], + "gentians's": [], + "sender": ["M"], + "snog": ["S"], + "core": ["M", "Z", "G", "D", "R", "S"], + "theorems": [], + "fibril's": [], + "protruding": [], + "preparations's": [], + "dildo": ["S"], + "courtship'ses": [], + "dunderheads": [], + "gazette": ["M", "G", "D", "S"], + "houseboat": ["S", "M"], + "aimlessness's": [], + "bactericide's": [], + "hatchback's": [], + "tireless": ["Y", "P"], + "Pamirs's": [], + "Flemish": ["M"], + "Bettie": ["M"], + "nonwhites": [], + "badman": ["M"], + "vaporizesers": [], + "intimacies's": [], + "spotter's": [], + "dabbing": [], + "Hugo's": [], + "Jansen": ["M"], + "Zoloft": ["M"], + "italicize": ["G", "D", "S"], + "CPA": ["M"], + "concoct": ["S", "D", "G"], + "clementines": [], + "extradites": [], + "openings": [], + "appointees's": [], + "essays": [], + "philter'ses": [], + "sailor's": [], + "Managua": ["M"], + "Ethel": ["M"], + "craven's": [], + "Kristopher": ["M"], + "pulsatingen": [], + "troubled": ["U"], + "cuneiform's": [], + "Delphic's": [], + "farthings": [], + "raffishliness": [], + "chancellery": ["S", "M"], + "enduing": [], + "cookhouse": ["S"], + "fair": ["M", "R", "Y", "T", "G", "J", "P", "S"], + "cakeds": [], + "snooperers": [], + "caveat'ses": [], + "liverwurst": ["M"], + "mustangs": [], + "goldfield": ["S"], + "parsnips": [], + "verdigrises": [], + "cathedrals": [], + "twos": [], + "internationally": [], + "blow": ["S", "Z", "G", "M", "R"], + "hectoring": [], + "Pyrex": ["M", "S"], + "blacklisted": [], + "deviatingen": [], + "echinoderms's": [], + "Hippocratic": ["M"], + "Carl": ["M"], + "copyright'sed": [], + "Honshu": ["M"], + "communicator": ["S", "M"], + "forecastles": [], + "Laotian": ["S", "M"], + "genius'ses": [], + "coincidences": [], + "getup": ["M"], + "kindness": ["U", "M"], + "overthrown": [], + "kabuki": ["M"], + "scooted": [], + "nappy's": [], + "facecloths": [], + "prorogue": ["G", "D"], + "Elohim's": [], + "gateaux": [], + "innuendo": ["S", "M"], + "marinerser": [], + "razing": [], + "Murphy's": [], + "kielbasa's": [], + "expeditionens": [], + "shower's": [], + "Godard's": [], + "shortening": ["M"], + "Pharaohs": [], + "triumphalist": [], + "taster's": [], + "marigold's": [], + "hardtack's": [], + "twats": [], + "frothing": [], + "brindle": ["D", "M"], + "cruciform's": [], + "Rasputin": ["M"], + "drinkers": [], + "tendererly": [], + "CD": ["M"], + "helm'ses": [], + "genealogists": [], + "soppy": ["R", "T"], + "oratorically": [], + "Delacruz": ["M"], + "wielderers": [], + "twined": [], + "challenge'sers": [], + "choleric": [], + "buoying": [], + "Artie": ["M"], + "ski'sed": [], + "Wellingtons": [], + "grousinged": [], + "Delawareans": [], + "Bk": ["M"], + "liquor'sed": [], + "setsquares": [], + "shoal": ["G", "M", "D", "S"], + "airingsing": [], + "extemporization's": [], + "speculative": ["Y"], + "palliatives's": [], + "Plataea": ["M"], + "psychodrama": ["M", "S"], + "cause's": [], + "Modigliani": ["M"], + "storytelling": ["M"], + "toweling's": [], + "identified": ["U"], + "naturalization": ["M"], + "verb": ["K", "M", "S"], + "livelier": [], + "goofball's": [], + "bestsing": [], + "humid": ["Y"], + "joker": ["M"], + "autobiographies": [], + "Volstead's": [], + "franker": [], + "interpose": ["G", "D", "S"], + "pilgrim'ses": [], + "redcaps's": [], + "Moselle's": [], + "disintegrate": [], + "schist's": [], + "Redford's": [], + "interconnecteds": [], + "sandwiches": [], + "Navarro's": [], + "whirlpool's": [], + "lifeforms": [], + "carpetbagger'ses": [], + "perilously": [], + "tinsmith": ["M"], + "freckleds": [], + "normalizeds": [], + "presentment's": [], + "cookie": ["S", "M"], + "Geffen": ["M"], + "disinheritance": [], + "awkwarder": [], + "projectionists": [], + "notebook's": [], + "scamming": [], + "chrysanthemum's": [], + "bras": [], + "noisy": ["P", "T", "R"], + "Brutus": ["M"], + "interlinings": [], + "presser's": [], + "travail'sed": [], + "incantation's": [], + "upcountry's": [], + "honorees's": [], + "narwhal": ["M", "S"], + "papacy's": [], + "propellant'ses": [], + "monetizes": [], + "Minn": [], + "sadistic": [], + "bridleway": ["S"], + "fostered": [], + "unguarded": [], + "Allie's": [], + "pen": ["M"], + "contravene": ["G", "D", "S"], + "brazing": [], + "staircase's": [], + "automobile'sing": [], + "sedatesly": [], + "immuresing": [], + "modal's": [], + "disaffiliate": [], + "ftpers": [], + "gloved": [], + "cudgeling's": [], + "Netherlanders": [], + "scapegoat": ["S", "G", "M", "D"], + "fluoroscope": ["S", "M"], + "legendarily": [], + "Burlington's": [], + "scare's": [], + "polyglots": [], + "screens": [], + "metaphor's": [], + "missile's": [], + "ligates": [], + "cellulars's": [], + "liquidate": ["X", "G", "N", "D", "S"], + "rapscallions": [], + "dolleding": [], + "catheterizes": [], + "grinders": [], + "surfers": [], + "frank": ["S", "M", "D", "R", "Y", "T", "G", "P"], + "noncritical": [], + "unbend": ["S", "G"], + "Norwich's": [], + "cautionary": [], + "builtin": [], + "downplayed": [], + "arsonist": ["S", "M"], + "occasionally": [], + "booze's": [], + "tintinnabulation's": [], + "scholars": [], + "repellents's": [], + "damnedest": [], + "outlook's": [], + "standards": [], + "Backus": ["M"], + "emcees's": [], + "crapshooter'ses": [], + "dustbin's": [], + "hallmark": ["G", "M", "D", "S"], + "Duran's": [], + "roof": ["M", "D", "R", "Z", "G", "S"], + "blushing's": [], + "cutlass": ["M", "S"], + "riddling": [], + "intellectualism": ["M"], + "liberalizations": [], + "recording'ses": [], + "exoskeletons's": [], + "tittle's": [], + "carolersing": [], + "raspier": [], + "dedisbarring": [], + "parrot": ["G", "M", "D", "S"], + "sniping": [], + "milks": [], + "Woodard": ["M"], + "jut": ["S", "M"], + "inconsiderable": [], + "phish": ["Z", "G", "D", "R"], + "jeering's": [], + "gulf'ses": [], + "tincture'sing": [], + "sieve": ["M", "G", "D", "S"], + "pinpointed": [], + "adrenalin's": [], + "tents": [], + "abominatesing": [], + "blaze": ["M", "Z", "G", "D", "R", "S"], + "McConnell": ["M"], + "elideds": [], + "amenable": [], + "megalopolis's": [], + "recyclables's": [], + "sharer's": [], + "corrugations": [], + "stuttering": [], + "clavicle's": [], + "typewritesers": [], + "beliefs": [], + "remoldsing": [], + "mp": [], + "shrivelinged": [], + "Bullock's": [], + "flabbiest": [], + "Conley's": [], + "thirstiest": [], + "preparation's": [], + "hydration": ["C", "M"], + "paella": ["M", "S"], + "divorcee's": [], + "ipecacs's": [], + "swagger": ["S", "M", "D", "R", "G"], + "rotogravures": [], + "renegade'sing": [], + "objectiveliness": [], + "meaningfulnessly": [], + "uncloak": [], + "scarlet's": [], + "downstairs's": [], + "brights's": [], + "kidder's": [], + "bellwether": ["M", "S"], + "infrared": ["M"], + "Nate'sen": [], + "Seattle": ["M"], + "recantations's": [], + "unhappiness": [], + "pillock": ["S"], + "Achebe": ["M"], + "redder": [], + "gearshifts": [], + "scanner": ["S", "M"], + "Murrow": ["M"], + "churl'ses": [], + "peregrinateds": [], + "corruption's": [], + "resentful": ["Y", "P"], + "approximations": [], + "revelations": [], + "mumbleder": [], + "parvenu's": [], + "Riel": ["M"], + "reticence": ["M"], + "sahibs": [], + "Bissau's": [], + "Jaguar": ["M"], + "insistingly": [], + "unavoidable": [], + "imposesing": [], + "obsoletinged": [], + "churchyard's": [], + "installation'ses": [], + "moocher": ["M"], + "fliers": [], + "local": ["S", "M", "Y"], + "directorships": [], + "fox'sed": [], + "creditworthy": ["P"], + "Carpathians": ["M"], + "Fonda": ["M"], + "overeating": [], + "Doubleday": ["M"], + "send": ["Z", "G", "R", "S"], + "confusion": [], + "offertory's": [], + "taxation's": [], + "Pianola": ["M"], + "pettier": [], + "soullessliness": [], + "guidebook": ["S", "M"], + "Watt": ["S", "M"], + "animator": ["M", "S"], + "mendaciously": [], + "transacteding": [], + "taxied": [], + "south": ["M"], + "Toyoda's": [], + "g": ["S", "N", "X", "V", "B"], + "congestion's": [], + "delighted": ["Y"], + "chintzier": [], + "midstream": ["M"], + "cannibalizinged": [], + "bundles": [], + "skedaddle": ["M", "G", "D", "S"], + "bummer": ["S", "M"], + "scoreline": ["S"], + "oxford": ["S", "M"], + "fairingings": [], + "shower'sed": [], + "frighted": [], + "pantomimist's": [], + "cuddle'sing": [], + "antihistamines's": [], + "hidings": [], + "conferees's": [], + "prejudges": [], + "hem": ["S", "M"], + "downfallen": [], + "nonobservant": [], + "precis's": [], + "roue's": [], + "Joanne": ["M"], + "PE": [], + "squired": [], + "precursor's": [], + "pulpiness's": [], + "mandible": ["M", "S"], + "limbless": [], + "positrons": [], + "privatized": [], + "eiderdown'ses": [], + "Myrna's": [], + "knickers's": [], + "nonexistence's": [], + "yid": ["S"], + "squids's": [], + "Thurs": [], + "multivariate": [], + "launch'sed": [], + "mixer": ["M"], + "Aglaia's": [], + "viscounts's": [], + "misquotation's": [], + "shopaholic": ["M", "S"], + "osiers": [], + "grandiloquence's": [], + "ferments": [], + "masterstrokes": [], + "nightcaps": [], + "executives": [], + "sadists's": [], + "Galvani": ["M"], + "vans": [], + "bock's": [], + "Millikan's": [], + "newsworthiness": ["M"], + "Nkrumah's": [], + "skyjackersing": [], + "proselytizersing": [], + "seaway": ["S", "M"], + "landscapersing": [], + "Sunbelt": ["M"], + "thrashers": [], + "distill": [], + "Corinthians's": [], + "sounding": ["M"], + "nationalizing": [], + "epilogue's": [], + "marshal": ["S", "M", "D", "G"], + "Rb's": [], + "bagatelles": [], + "steers": [], + "Kelly": ["M"], + "radiators's": [], + "arguinged": [], + "assaying": [], + "aliening": [], + "five's": [], + "shopped": [], + "bereavements": [], + "lamplight's": [], + "shafts": [], + "bookshelf": ["M"], + "shadsings": [], + "croaks's": [], + "Salvadorian'ses": [], + "volleys": [], + "forage": ["D", "R", "S", "M", "Z", "G"], + "lend": ["R", "S", "Z", "G"], + "transcending": [], + "underwritersing": [], + "vested": [], + "electrologist": ["S", "M"], + "foxes": [], + "brunet": ["S", "M"], + "fuchsia": ["M", "S"], + "rehi": [], + "celesta'ses": [], + "afflicteds": [], + "framework's": [], + "Conway": ["M"], + "bastardizations": [], + "idlinged": [], + "melioratingen": [], + "swirled": [], + "3th": ["t", "c"], + "troublemakers": [], + "pansy's": [], + "jalopies's": [], + "roadster": ["S", "M"], + "abducted": [], + "intoxication's": [], + "vixens": [], + "appeasements's": [], + "Achilles": ["M"], + "argent": ["M"], + "Haskell": ["M"], + "such": [], + "Rick": ["M"], + "KKK's": [], + "drapery's": [], + "jellyfish": ["M", "S"], + "doge'ses": [], + "fibrillationed": [], + "reimburse": ["B", "D", "S", "G", "L"], + "cycling": [], + "gearboxes": [], + "unapproachable": [], + "bedrock": ["S", "M"], + "Madurai's": [], + "piggiers": [], + "aptness's": [], + "hoofing": [], + "mouthpiece": ["M", "S"], + "resonates": [], + "jalapeno": ["M", "S"], + "freeborn": [], + "knackers's": [], + "treats": [], + "slideshow": ["M", "S"], + "punditry's": [], + "weight'sed": [], + "Jodie's": [], + "coulomb": ["M", "S"], + "albs's": [], + "insightful": [], + "slaughterhouse'ses": [], + "delicacies": [], + "whittling": [], + "overseer": ["M"], + "triathlon's": [], + "bootlaces": [], + "uncleanerness": [], + "shrinksable": [], + "dissonances": [], + "Czerny": ["M"], + "plantation's": [], + "stalker": ["M"], + "necessities's": [], + "deploying": [], + "footsies": [], + "panhandled": [], + "buckboards": [], + "blackbirds's": [], + "reformist": ["S"], + "brakemen": [], + "chickweed": ["M"], + "dozensing": [], + "hominids": [], + "coypus's": [], + "subvertsed": [], + "zinnias": [], + "thespian's": [], + "microprocessor's": [], + "gable's": [], + "tyrannosaur": ["M", "S"], + "Demetrius's": [], + "hunched": [], + "Zamora": ["M"], + "Rhone's": [], + "farmer": ["M"], + "ration's": [], + "scenario's": [], + "Lena's": [], + "condoning": [], + "broil'sed": [], + "tizzies's": [], + "woks's": [], + "quince": ["S", "M"], + "chevalier's": [], + "slam'ses": [], + "eggheads's": [], + "hotblooded": [], + "unscathed": [], + "Valkyries's": [], + "animism": ["M"], + "predestining": [], + "modernizer": ["M"], + "Col's": [], + "debouch": ["G", "D", "S"], + "wrestling's": [], + "factoid": ["S", "M"], + "Annabelle": ["M"], + "pilfering": [], + "admixing": [], + "profiteereding": [], + "fertilizes": [], + "Antananarivo": ["M"], + "resuscitation's": [], + "paprika's": [], + "principal's": [], + "Nixon": ["M"], + "incorporateds": [], + "Danube's": [], + "abscesses": [], + "pipits": [], + "faultfinding": ["M"], + "nickereding": [], + "Brisbane": ["M"], + "Jansen's": [], + "trailblazer's": [], + "wailing": ["M"], + "buyout's": [], + "wildcatted": [], + "Stoppard": ["M"], + "pulped": [], + "Caspar's": [], + "forking": [], + "crocheter's": [], + "entitlement": ["S", "M"], + "opponents": [], + "payer": ["S", "M"], + "sparse": ["R", "Y", "T", "P"], + "fatuousliness": [], + "Allen's": [], + "rimless": [], + "Bridgette's": [], + "sensitive's": [], + "sidestroking": [], + "Marva": ["M"], + "coarseness": ["M"], + "costumersing": [], + "constrictors": [], + "grain": ["I", "S", "M", "D"], + "Hill's": [], + "moiled": [], + "mounding's": [], + "headstands": [], + "orchestration's": [], + "Borges": ["M"], + "feasted": [], + "Nevsky": ["M"], + "raffles's": [], + "apostleship": ["M"], + "schoolhouse": ["S", "M"], + "apeds": [], + "Batista's": [], + "dreading": [], + "Tricia's": [], + "Indianian": [], + "tenderer": [], + "plowmen": [], + "Hispaniola": ["M"], + "punk'ser": [], + "singable": [], + "assessments's": [], + "theatricals": ["M"], + "hairstyles": [], + "Paula's": [], + "prov": ["N", "B"], + "servomechanism's": [], + "bugs": [], + "feathery": ["T", "R"], + "seashells's": [], + "milk's": [], + "flea": ["M", "S"], + "fictionalizations": [], + "bloodthirstiest": [], + "tarpaulin": ["M", "S"], + "substitute'sing": [], + "yucky": ["T", "R"], + "prorated": [], + "Aludra": ["M"], + "echinoderm's": [], + "yahoo's": [], + "craniums": [], + "passphrases": [], + "identifiers": [], + "savories": [], + "effusively": [], + "birtheder": [], + "usual's": [], + "smolder's": [], + "MEGO": ["S"], + "Magnitogorsk's": [], + "gawps": [], + "Jul": [], + "discontort": [], + "hectares": [], + "Hadrian": ["M"], + "activist'ses": [], + "behest's": [], + "lamaseries": [], + "involuntary": ["P"], + "cocoas's": [], + "Darth's": [], + "bast's": [], + "lattice": ["M", "D", "S"], + "courtesan": ["S", "M"], + "blows": [], + "chaperon": ["M", "D", "G", "S"], + "cowbells": [], + "arriveds": [], + "source": ["A", "D", "S", "M", "G"], + "carpeting": ["M"], + "drunker": [], + "nodule": ["M", "S"], + "Beatles": ["M"], + "Leonor": ["M"], + "limey": ["S"], + "sympathizing": [], + "monotonousness": ["M"], + "blunterly": [], + "stoop'sed": [], + "waterlily": ["S", "M"], + "swelling": ["M"], + "homeboy": ["S", "M"], + "incrementalists's": [], + "interior's": [], + "carnivora": [], + "diacritic's": [], + "Tatar'ses": [], + "traversal": ["S", "M"], + "inconceivable": [], + "stratification's": [], + "rejoicingsing": [], + "blindingly": [], + "lucrative": ["Y", "P"], + "cunningest": [], + "vertiginous": [], + "newt'ses": [], + "illustratively": [], + "Estrada": ["M"], + "sink's": [], + "blindness": ["M"], + "auxiliary's": [], + "lobs": [], + "brinks's": [], + "falters": [], + "partisanship's": [], + "disdainfully": [], + "jitters": ["M"], + "poolroom": ["M", "S"], + "coagulator": ["M", "S"], + "president": ["M", "S"], + "politico's": [], + "categorization'ses": [], + "jambalaya's": [], + "condemnersing": [], + "stoat's": [], + "karaokes": [], + "moots": [], + "attractions": [], + "Nkrumah": ["M"], + "airplane'ses": [], + "BP's": [], + "routerses": [], + "hypothesized": [], + "tearful": ["Y"], + "strives": [], + "Nansen": ["M"], + "digitizinged": [], + "ivories": [], + "Pennsylvania": ["M"], + "counterattacks": [], + "Kirkland": ["M"], + "Brooke": ["M", "S"], + "recently": [], + "stare's": [], + "trackers": [], + "alderwoman's": [], + "zaniers": [], + "overexertsed": [], + "pyramided": [], + "screensings": [], + "fingerling's": [], + "cynic": ["S", "M"], + "Martians's": [], + "corncobs": [], + "perforation's": [], + "washrag'ses": [], + "darn": ["S", "Z", "G", "M", "D", "R"], + "maraschino's": [], + "milkman": ["M"], + "deploy": ["A", "L", "G", "D", "S"], + "Clotho": ["M"], + "reverend's": [], + "qualifyingens": [], + "born": ["I", "A", "U"], + "grandiosity's": [], + "Spain's": [], + "derision": ["M"], + "declamation": ["M", "S"], + "Rupert": ["M"], + "grantersing": [], + "Romany's": [], + "bodyguards": [], + "Edam": ["S", "M"], + "polyester'ses": [], + "hugely": [], + "squall's": [], + "showboating": [], + "bikini'ses": [], + "Loki": ["M"], + "proposals": [], + "bankrupting": [], + "diaeresis": ["M"], + "putterers": [], + "cordon's": [], + "contractually": [], + "shoes": [], + "dropouts": [], + "germination": ["M"], + "tillings": [], + "developer": ["S", "M"], + "payback": ["S", "M"], + "Worcestershire's": [], + "parallax's": [], + "physiologists": [], + "citings": [], + "transporter's": [], + "decal'ses": [], + "espoused": [], + "temperament": ["M", "S"], + "aurora": ["S", "M"], + "whizzbang's": [], + "pelican": ["M", "S"], + "cockney's": [], + "Berg'sen": [], + "renomination's": [], + "poise": ["M", "G", "D", "S"], + "strain's": [], + "disprovable": [], + "Presbyterianism'ses": [], + "DP": ["S", "M"], + "cutthroat": ["S", "M"], + "Hendrix's": [], + "ailment's": [], + "clank's": [], + "faced": [], + "extradite": ["G", "N", "B", "X", "D", "S"], + "thickeningsers": [], + "vociferatesing": [], + "interjections": [], + "censurer's": [], + "howls": [], + "herald'sed": [], + "wands": [], + "bustiers": [], + "moorland's": [], + "expresseds": [], + "hindsight's": [], + "winkles's": [], + "trunk's": [], + "dashiki'ses": [], + "monarchistic": [], + "constrictor's": [], + "enumerationens": [], + "bruncheds": [], + "hoarierness": [], + "Alison": ["M"], + "Zionists": [], + "womanizer": ["M"], + "hill's": [], + "promotersing": [], + "Ceylonese": [], + "sugarplum's": [], + "doorkeeper'ses": [], + "cremes": [], + "similitude": ["E", "M"], + "dispraise": [], + "honker's": [], + "taterser": [], + "stigmata": [], + "creed": ["S", "M"], + "heft'sed": [], + "supplementary": [], + "Salinas": ["M"], + "gulag's": [], + "minesweeper's": [], + "fever's": [], + "womenfolk's": [], + "abdicated": [], + "Dix's": [], + "Barclay": ["S", "M"], + "pandemics's": [], + "abrogation's": [], + "postwoman": [], + "flit'ses": [], + "tangos": [], + "modernnesses": [], + "litigants": [], + "Gatun's": [], + "meanerly": [], + "preterm": [], + "misspellingses": [], + "mensch'ses": [], + "townies": [], + "badge'sers": [], + "becquerel": ["S"], + "juryman": ["M"], + "Alhena's": [], + "smelt'sed": [], + "Bovary": ["M"], + "duplicate's": [], + "workdays's": [], + "fealty": ["M"], + "chill's": [], + "Casanova's": [], + "Hayworth's": [], + "porcelain's": [], + "unblinkingly": [], + "Numbers": ["M"], + "brooch's": [], + "twerkeding": [], + "Hollanderses": [], + "trainload": ["M", "S"], + "workbooks": [], + "wunderkinds": [], + "Murchison": ["M"], + "satchels": [], + "interaction": ["S", "M"], + "Pamela's": [], + "excommunicateds": [], + "i": ["U", "S"], + "impostors": [], + "geographies": [], + "nubile": [], + "mucilaginous": [], + "supp": ["D", "R", "Z", "G"], + "heroines": [], + "Danes's": [], + "stoners": [], + "coated": [], + "insidiously": [], + "Iowan's": [], + "obliques": [], + "multiplied": [], + "dentistry": ["M"], + "warbling": [], + "penfriend": ["S"], + "achingly": [], + "warbled": [], + "infelicitous": [], + "sonatas's": [], + "upticks": [], + "scrunch'sed": [], + "TV": ["S", "M"], + "conjuration": ["M", "S"], + "faun": ["M", "S"], + "reviling": [], + "reformers": [], + "casework": ["Z", "M", "R"], + "gustily": [], + "staph": ["M"], + "Mercia's": [], + "portmanteau": ["M", "S"], + "fallacies's": [], + "barbarizing": [], + "platting": [], + "squabblers": [], + "Spiro": ["M"], + "revolutionists": [], + "misanthropy's": [], + "bonksers": [], + "troop's": [], + "mutineers": [], + "mumblinged": [], + "McDaniel": ["M"], + "silvery": [], + "monoliths": [], + "debt": ["S", "M"], + "Goya's": [], + "innocent": ["M", "Y", "S"], + "cycle'sing": [], + "voluntarism's": [], + "Boccaccio's": [], + "wastage": ["M"], + "Bishop": ["M"], + "utopias": [], + "yardarm": ["M", "S"], + "affiances": [], + "om": ["S", "M", "N", "X"], + "GIGO": [], + "piggiest": [], + "shunteding": [], + "jibsing": [], + "celestial": ["Y"], + "Lakisha's": [], + "caffeinated": [], + "Jordan's": [], + "buttresseds": [], + "carvers": [], + "abjectness": ["M"], + "sleeked": [], + "anguishing": [], + "viand's": [], + "flux": ["I", "M", "S"], + "creamed": [], + "ashens": [], + "clumsily": [], + "airflow's": [], + "swelters": [], + "cannibalistic": [], + "blemish's": [], + "metastasizesing": [], + "Mimi": ["M"], + "underprivileged": [], + "outspreads": [], + "peel": ["M", "D", "R", "S", "J", "Z", "G"], + "fondant": ["M", "S"], + "bottler": ["M"], + "skullcap'ses": [], + "Vistula": ["M"], + "Zubeneschamali's": [], + "ukulele's": [], + "feelsings": [], + "chuckholes": [], + "occupiers": [], + "zingersing": [], + "d'Arezzo's": [], + "rainfall": ["S", "M"], + "Halon's": [], + "baccarat's": [], + "scrutinizing": [], + "tickle's": [], + "hamstring": ["G", "S", "M"], + "fulminate": ["D", "S", "X", "G", "N"], + "assented": [], + "lesser": [], + "orientings": [], + "grandiose": ["Y"], + "Danone": ["M"], + "saltwater's": [], + "Malayan's": [], + "softies": [], + "patronized": [], + "clankeds": [], + "Khomeini": ["M"], + "pepper'sed": [], + "that": ["M"], + "commemorator'ses": [], + "Ulster": ["M"], + "ravager": ["M"], + "pantries": [], + "whimsies's": [], + "laminate's": [], + "survivingable": [], + "shirr": ["G", "M", "D", "S", "J"], + "disrepair's": [], + "ripoff's": [], + "hertz's": [], + "scold": ["M", "D", "S", "G", "J"], + "volcanoes": [], + "palpable": [], + "scandal's": [], + "nightmares": [], + "ascertaininged": [], + "carriers": [], + "hound's": [], + "loathe": [], + "tiger's": [], + "christens": [], + "poppycock": ["M"], + "loonie's": [], + "sepal'ses": [], + "rollicking's": [], + "beleaguering": [], + "Erebus": ["M"], + "lxvii": [], + "Agassiz": ["M"], + "aerobic": ["S"], + "espaliereds": [], + "Marcus": ["M"], + "arrant": [], + "labelsed": [], + "platitude": ["S", "M"], + "ladybirds": [], + "Churriguera's": [], + "thrower": ["M"], + "rookeries's": [], + "modulationed": [], + "inconsiderate": [], + "alphabetizations's": [], + "CDT": [], + "Durham's": [], + "convolution": ["M", "S"], + "ignition's": [], + "streptococci": [], + "beauts": [], + "cosmogonies": [], + "animosities's": [], + "parochially": [], + "peroxided": [], + "dumbos": [], + "spheroids's": [], + "Protestantisms": [], + "supplicating": [], + "accede": ["G", "D", "S"], + "overcharged": [], + "nematode's": [], + "superimposed": [], + "emission's": [], + "folksingers's": [], + "ump's": [], + "whizzing": [], + "superscript": ["M", "S"], + "randomizes": [], + "foulerly": [], + "escargots": [], + "brokerage'ses": [], + "SEC": ["M"], + "overoptimism": ["M"], + "Scrabble": ["M", "S"], + "flagstaff": ["M", "S"], + "sparking": [], + "kindling": ["M"], + "aptitudes's": [], + "brisker": [], + "Ionics": [], + "roped": [], + "favoritism's": [], + "masochistically": [], + "randomization's": [], + "commentateds": [], + "teardrop's": [], + "armrests": [], + "Javier's": [], + "edibles's": [], + "boozers": [], + "merriment": ["M"], + "boomersing": [], + "andiron": ["S", "M"], + "arrangesed": [], + "possessiveliness": [], + "playback": ["M", "S"], + "Fiona": ["M"], + "dissensions's": [], + "structures": [], + "Nexis's": [], + "clams": [], + "resigned": ["Y"], + "distracted": ["Y"], + "Agassiz's": [], + "Transylvanian": ["M"], + "semifinal": ["S", "M"], + "Victorian": ["M", "S"], + "hating": [], + "espresso'ses": [], + "sideswipeds": [], + "tritest": [], + "spooneding": [], + "comberers": [], + "Magog": ["M"], + "submission's": [], + "mademoiselles": [], + "Pisces": ["M"], + "sophisticateds": [], + "inactivate": [], + "precursors": [], + "homesteadeder": [], + "soundcheck": ["S"], + "menacinged": [], + "soldieredly": [], + "poofs": [], + "letterboxes": [], + "Greeley's": [], + "raucousness": ["M"], + "shekel": ["S", "M"], + "shiftlessly": [], + "twerked": [], + "misdiagnosis": ["M"], + "upstanding": [], + "looks": [], + "tank'sed": [], + "resell": ["S", "G"], + "soloist": ["M", "S"], + "pharmacopoeia": ["M", "S"], + "brownerness": [], + "Visigoths": [], + "cannonadinged": [], + "hypnotherapy": ["M"], + "Adar's": [], + "gums": [], + "bolivar's": [], + "scintilla'ses": [], + "septuagenarian": ["M", "S"], + "negligently": [], + "metaphysics": ["M"], + "shamblinged": [], + "Hebraism": ["S", "M"], + "validate": ["I", "G", "N", "D", "S"], + "perverting": [], + "dilating": [], + "CPR": ["M"], + "duplex's": [], + "scandals's": [], + "discoveries": [], + "misfit's": [], + "Isiah": ["M"], + "stockroom'ses": [], + "stump": ["G", "S", "M", "D"], + "impishliness": [], + "crux'ses": [], + "greenfield": [], + "tandoori": ["M"], + "Genaro": ["M"], + "irrecoverable": [], + "agelessly": [], + "fencing's": [], + "falsification's": [], + "efflorescence": ["M"], + "flippant": ["Y"], + "mastoids's": [], + "serialize": ["G", "D", "S"], + "allusivenessly": [], + "demesne's": [], + "orbital": ["S", "M"], + "violoncello'ses": [], + "testimonial": ["M", "S"], + "snivel's": [], + "gradationed": [], + "banners's": [], + "entrenchment'ses": [], + "palpitationsing": [], + "durum's": [], + "upholstery's": [], + "malocclusion's": [], + "tableware": ["M"], + "laded": [], + "blessed": ["Y", "P"], + "cots": [], + "academician": ["M", "S"], + "sheaths": [], + "speechlessness's": [], + "fairies's": [], + "icecap": ["S", "M"], + "landscapeder": [], + "Fromm": ["M"], + "spotlights's": [], + "Summers's": [], + "insoluble": [], + "mosheds": [], + "Kieth": ["M"], + "Villon": ["M"], + "schisms": [], + "elongatesing": [], + "inflatingen": [], + "plainsness": [], + "Leonardo's": [], + "much": ["M"], + "steads's": [], + "strikeouts": [], + "ARC": [], + "Frisco": ["M"], + "Orr's": [], + "believersing": [], + "abduction's": [], + "exosphere": ["S", "M"], + "reverberatingen": [], + "teapot'ses": [], + "mutilators": [], + "runnels's": [], + "cranking": [], + "Muawiya's": [], + "subservient": ["Y"], + "axle's": [], + "Owen": ["S", "M"], + "sappiest": [], + "postdating": [], + "commoner's": [], + "rooftops's": [], + "Bactria's": [], + "chastened": [], + "jointly": ["F"], + "Dion's": [], + "charbroileds": [], + "bandit's": [], + "phlebitis": ["M"], + "elect": ["A", "S", "D", "G", "V"], + "besoms": [], + "uninfeasible": [], + "GP's": [], + "contentedness's": [], + "catboat": ["S", "M"], + "bury": ["A", "D", "S", "G"], + "Nyerere": ["M"], + "nuptial": ["M", "S"], + "elite's": [], + "rind's": [], + "Pasquale's": [], + "rehearsal's": [], + "rains": [], + "precious": ["Y", "P"], + "therapeutics": ["M"], + "menage'ses": [], + "occurring": ["A"], + "vituperating": [], + "misses": [], + "Arkhangelsk's": [], + "ranked": [], + "Marlene": ["M"], + "smokestacks": [], + "shortlisting": [], + "genetic": ["S"], + "ventriloquy's": [], + "uniquerness": [], + "fumes": [], + "straitjacket": ["S", "G", "M", "D"], + "basket": ["S", "M"], + "suppliers": [], + "Oersted's": [], + "signatory's": [], + "wafflers": [], + "tortellini's": [], + "Hesiod's": [], + "moused": [], + "lacquering's": [], + "vaster": [], + "hip": ["S", "P", "M"], + "propagates": [], + "ravened": [], + "headquartereding": [], + "Montserrat": ["M"], + "hatchback'ses": [], + "longing'sly": [], + "Cummings's": [], + "cupboards": [], + "Louisville's": [], + "ebullient": ["Y"], + "Gupta": ["M"], + "Sennett": ["M"], + "emigrant": ["S", "M"], + "charring": [], + "Beebe": ["M"], + "ameliorated": [], + "strophe's": [], + "decampment's": [], + "provocateur": ["S"], + "transforms": [], + "targeting": [], + "shakiness": ["M"], + "persnickety": [], + "Christianities": [], + "markers": [], + "defeater's": [], + "nonsurgical": [], + "elopingment": [], + "tenants": [], + "programmings": [], + "Lazaro's": [], + "hopscotching": [], + "gardensers": [], + "topmasts": [], + "gratefulness": ["U", "M"], + "tenured": [], + "Leola's": [], + "overpraised": [], + "Alicia": ["M"], + "truelove": ["S", "M"], + "dove": ["M", "S"], + "Bernini's": [], + "umpires": [], + "Napoleonic's": [], + "caster": ["M"], + "explodes": [], + "bloodmobile": ["M", "S"], + "Motrin's": [], + "apparitions's": [], + "untouchable": ["M", "S"], + "bespectacled": [], + "concordances's": [], + "highlands": [], + "courageousness's": [], + "sportswriters": [], + "almond'ses": [], + "legal's": [], + "ottomans": [], + "noiselessly": [], + "viand": ["S", "M"], + "Montgomery": ["M"], + "turf's": [], + "crucibles": [], + "triplicate'sing": [], + "pilots's": [], + "scissor": ["G", "D", "S"], + "microprocessor'ses": [], + "redividing": [], + "Welland": ["M"], + "sedative's": [], + "catkins": [], + "nuncio's": [], + "unobjectionable": [], + "hangman": ["M"], + "appearance'ses": [], + "forestation": ["A", "C", "M"], + "shaman's": [], + "crumblier": [], + "Tuvalu's": [], + "rifts": [], + "cheeriest": [], + "ashlar'ses": [], + "avidity": ["M"], + "clover's": [], + "relax": ["D", "R", "S", "Z", "G"], + "refurnish": [], + "obtrusion's": [], + "laps's": [], + "Pankhurst": ["M"], + "monologists": [], + "upset's": [], + "tradespeople's": [], + "redeactivation": [], + "concussion's": [], + "surpassinged": [], + "embrocation's": [], + "bludgeoned": [], + "belligerent's": [], + "freelance": ["D", "R", "S", "M", "Z", "G"], + "fatally": [], + "aborigine's": [], + "headstalls's": [], + "firewater": ["M"], + "boos's": [], + "summonseds": [], + "prune's": [], + "reflexive's": [], + "shuttlecock": ["G", "M", "D", "S"], + "dispatcher'ses": [], + "yule's": [], + "garnered": [], + "espouseds": [], + "classes": [], + "depopulation": [], + "confessionals's": [], + "prologues": [], + "coiffing": [], + "Rodolfo's": [], + "Clayton's": [], + "churchwardens": [], + "suffix's": [], + "bravos": [], + "warthogs's": [], + "elaborately": [], + "Chancellorsville's": [], + "boondoggle's": [], + "campfire": ["S", "M"], + "demonstrative's": [], + "ivory's": [], + "breathable": [], + "pancake'sing": [], + "snuffliers": [], + "redbreast'ses": [], + "Rickie's": [], + "idiotic": [], + "tampereder": [], + "exasperate": ["D", "S", "G", "N"], + "barbers": [], + "benignant": [], + "bartered": [], + "Amman's": [], + "cowhand'ses": [], + "majorities": [], + "enthrall": ["G", "D", "S", "L"], + "portfolio": ["M", "S"], + "convictings": [], + "evaporation's": [], + "tarrieder": [], + "steward'sed": [], + "infuser": ["S", "M"], + "IA": [], + "bloodstain'sed": [], + "judging": [], + "pilots": [], + "mite'sers": [], + "tranquilize": ["Z", "G", "D", "R", "S"], + "grant's": [], + "teleport": [], + "chundered": [], + "polyclinic's": [], + "fecundated": [], + "guilelessness's": [], + "rougeds": [], + "composer's": [], + "payee": ["S", "M"], + "printeds": [], + "sponsorship's": [], + "Wicca": ["M"], + "crates": [], + "happensed": [], + "rereadsing": [], + "slipstreams": [], + "January's": [], + "semifinals's": [], + "uninsured": [], + "Amarillo's": [], + "avoweding": [], + "glazier": ["S", "M"], + "aggregate": ["M", "G", "N", "D", "S", "X"], + "polsing": [], + "snottinesser": [], + "shorebird": ["S", "M"], + "curlers's": [], + "Kruger's": [], + "evensong": ["M"], + "tagger": ["S", "M"], + "heiress's": [], + "practicalities": [], + "bereavement's": [], + "tabbouleh's": [], + "crossness's": [], + "pippins's": [], + "bushman's": [], + "Jacobean's": [], + "objective": ["S", "M", "Y", "P"], + "impoverish": ["D", "S", "L", "G"], + "talking's": [], + "clambake's": [], + "adjudicateds": [], + "capriciousness's": [], + "stigmatization's": [], + "breeziness's": [], + "cadenza": ["S", "M"], + "dhow": ["M", "S"], + "legrooms": [], + "photoengravesings": [], + "Americanism's": [], + "excitements's": [], + "rendered": [], + "frightening": ["Y"], + "mercilessness": ["M"], + "pirogi's": [], + "nonrhythmic": [], + "nude's": [], + "gorgeousness": ["M"], + "effusiveness's": [], + "owner's": [], + "bidding's": [], + "Bacon": ["M"], + "imps": [], + "complicateds": [], + "cyborg": ["S", "M"], + "heel": ["M", "D", "G", "S"], + "moil'sed": [], + "raceme's": [], + "hemlines": [], + "misdiagnose": ["G", "D", "S"], + "togetherness": ["M"], + "linings": [], + "RVs": [], + "biopsying": [], + "malfeasance": ["M"], + "molestersing": [], + "circumstance'sing": [], + "ditz'ses": [], + "mommies's": [], + "overcompensating": [], + "spaceships": [], + "rebids": [], + "splits's": [], + "wassail's": [], + "quiet": ["S", "M", "D", "N", "R", "Y", "X", "T", "G", "P"], + "obliquely": [], + "Amherst": ["M"], + "affront's": [], + "Godspeed's": [], + "cakewalk's": [], + "enlighten": ["S", "G", "L", "D"], + "femaleness's": [], + "assassinating": [], + "syncopation": ["M"], + "coiffure": ["D", "S", "M", "G"], + "abrogate": ["X", "G", "N", "D", "S"], + "laminate'sing": [], + "syringe'sing": [], + "Genaro's": [], + "Stanton": ["M"], + "atavistic": [], + "plants": [], + "Hertz": ["M"], + "monomaniac'ses": [], + "vicegerent": ["S", "M"], + "snatch'sed": [], + "spadices": [], + "chairpersons": [], + "fridge's": [], + "safeties": [], + "seventieths": [], + "televisioned": [], + "Zyuganov": ["M"], + "prove": ["E", "A", "G", "D", "S"], + "vagabondeding": [], + "surges": [], + "vineyard": ["M", "S"], + "tumult": ["S", "M"], + "summit": ["M", "S"], + "grabbers": [], + "auguring": [], + "insomniac's": [], + "clickers": [], + "Leicesters": [], + "dubs's": [], + "lido": ["M", "S"], + "you'd": [], + "whistler": ["M"], + "decency": ["I", "S", "M"], + "hurriedly": [], + "overburdens": [], + "apposing": [], + "quadrivium's": [], + "breezes's": [], + "patriotic": ["U"], + "centerpiece's": [], + "exposed": ["U"], + "automatizeds": [], + "overgrazesing": [], + "caddie": ["M", "D", "S"], + "stumpy": ["T", "R"], + "Lusaka": ["M"], + "juggled": [], + "matchbox's": [], + "Yellowknife's": [], + "outbox's": [], + "Victrola": ["M"], + "empower": ["S", "D", "G", "L"], + "bureaucrats": [], + "abbess": ["M", "S"], + "poltroon": ["S", "M"], + "dirigibles": [], + "roundabout": ["S", "M"], + "planners": [], + "classifiable": [], + "insulate": ["G", "N", "D", "S"], + "colliery": ["S", "M"], + "languidness": ["M"], + "obstructionist'ses": [], + "outgo": ["M", "J", "G"], + "jade'sing": [], + "Presbyterianism's": [], + "browbeatening": [], + "constabulary": ["S", "M"], + "glossolalia": ["M"], + "camped": [], + "come'sers": [], + "lantern's": [], + "shopliftersing": [], + "sliders": [], + "Dejesus's": [], + "Marquesas": ["M"], + "ushers's": [], + "linguist's": [], + "rootkit": ["S", "M"], + "trammelsing": [], + "hillside's": [], + "enthusiasm'ses": [], + "Hopper": ["M"], + "masticates": [], + "surpluses": [], + "borrowed": [], + "absconder's": [], + "barbarian": ["S", "M"], + "distance's": [], + "imparteding": [], + "screams": [], + "chlorophyll": ["M"], + "touchstone'ses": [], + "Preminger": ["M"], + "vexing": [], + "Enkidu": ["M"], + "disinterest": [], + "poker's": [], + "cardboard": ["M"], + "corm'ses": [], + "inbred": [], + "toasting": [], + "profanations": [], + "kindheartednessly": [], + "iPod": ["M"], + "conventionalizing": [], + "nosegays": [], + "blowfly's": [], + "tactlessness's": [], + "freaks": [], + "hyperbolas's": [], + "bearers": [], + "lioness'ses": [], + "Slocum": ["M"], + "condensed": [], + "ringleader's": [], + "arthropod": ["M", "S"], + "empire's": [], + "hootenannies": [], + "bookbinders's": [], + "printings": [], + "northeasters": [], + "Semite'ses": [], + "sculpturing": [], + "chiffonier": ["M", "S"], + "risibility": ["M"], + "convertible": ["S", "M"], + "headband's": [], + "birders": [], + "negativeds": [], + "plackets": [], + "circumcise": ["X", "D", "S", "G", "N"], + "pluck's": [], + "couchettes": [], + "smoothing": [], + "yachtswomen": [], + "flaunted": [], + "birding's": [], + "cesarean": ["M", "S"], + "P": ["M", "N"], + "armistice's": [], + "geophysics": ["M"], + "yodel": ["S", "M", "D", "R", "Z", "G"], + "constructiveness's": [], + "misleadingly": [], + "moanersing": [], + "nerd": ["M", "S"], + "picketing's": [], + "disputable": ["I"], + "moue's": [], + "frolicking": [], + "nettles": [], + "duly": ["U"], + "bias's": [], + "gorge": ["E", "D", "S", "G"], + "unnerving": ["Y"], + "Batu's": [], + "chalk's": [], + "Alabamian": ["S", "M"], + "Glaxo's": [], + "pinstriped": [], + "pounceds": [], + "towing": [], + "coagulant's": [], + "bane": ["S", "M"], + "unification": ["A", "M"], + "sloven's": [], + "smith": ["M"], + "paranoiac's": [], + "rightly": [], + "Lamaze's": [], + "parers": [], + "guffaw'sed": [], + "troweleds": [], + "sonata": ["S", "M"], + "editorializes": [], + "coquette'sing": [], + "lordlinesser": [], + "masthead's": [], + "insurgence's": [], + "benzine's": [], + "ethyl": ["M"], + "widespread": [], + "glaciations": [], + "intrigues's": [], + "pulls": [], + "Rhoda": ["M"], + "blight's": [], + "thymus's": [], + "Sucrets": ["M"], + "disreorientation": [], + "clue": ["M", "G", "D", "S"], + "spacewalks": [], + "brandeder": [], + "naively": [], + "moiling": [], + "Hamhung": ["M"], + "libbers": [], + "Kevorkian": ["M"], + "vibrator's": [], + "underwrite": ["Z", "G", "R", "S"], + "Salazar's": [], + "wealthiness's": [], + "heaved": [], + "quin": ["S"], + "cantonment's": [], + "transfigureds": [], + "flout": ["S", "M", "D", "R", "Z", "G"], + "malignancy": ["S", "M"], + "peafowl's": [], + "Nefertiti's": [], + "boweder": [], + "meekly": [], + "distinction": ["S", "M"], + "mounded": [], + "fanfares's": [], + "seekers": [], + "erected": [], + "educingable": [], + "writer's": [], + "Gleason's": [], + "teethed": [], + "shoddiness": ["M"], + "narrowing": [], + "interfilinged": [], + "massage'sing": [], + "heifers": [], + "nix'sed": [], + "roaming": ["M"], + "gewgaw": ["S", "M"], + "beefsteak": ["M", "S"], + "Leary's": [], + "Sexton's": [], + "attributively": [], + "abortion'ses": [], + "charisma": ["M"], + "Hon": [], + "starter": ["M", "S"], + "conceits": [], + "satin's": [], + "Laotian's": [], + "isomeric": [], + "keystrokes": [], + "homburgs": [], + "caverns": [], + "concreted": [], + "finks": [], + "Gamble": ["M"], + "alteration": ["M", "S"], + "infesting": [], + "cab'ser": [], + "sincerity": ["I", "M"], + "RIF": [], + "splinted": [], + "lumbermen": [], + "compounding": [], + "mutate": ["X", "G", "N", "V", "D", "S"], + "pekineses": [], + "glitching's": [], + "pincer'ses": [], + "misers": [], + "hollowerly": [], + "trundlersing": [], + "premier'sed": [], + "xylophones's": [], + "okaysing": [], + "charm'sed": [], + "quislings": [], + "ddeding": [], + "orbiterers": [], + "stuttersers": [], + "zincking": [], + "changeability": ["M"], + "prismatic": [], + "whittleder": [], + "hardball's": [], + "Ouagadougou's": [], + "skycap": ["S", "M"], + "snootiest": [], + "freak'sed": [], + "inferences's": [], + "shrieked": [], + "premature": ["Y"], + "adverbials": [], + "admittance's": [], + "diaphragmatic": [], + "winders's": [], + "rapped": [], + "dowsing": [], + "austerely": [], + "villager's": [], + "subcommittee": ["S", "M"], + "statute's": [], + "wronged": [], + "portentousliness": [], + "playbook": ["M", "S"], + "Jesuits": [], + "bisected": [], + "invaliding": [], + "viceroy'ses": [], + "journal'ses": [], + "cozies's": [], + "CAI": [], + "regionally": [], + "multilaterally": [], + "Suwanee": ["M"], + "balladeers": [], + "periodontics's": [], + "musket": ["M", "S"], + "Lucites": [], + "notations's": [], + "joust": ["S", "Z", "G", "M", "D", "R"], + "Ar": ["M"], + "selflessness": ["M"], + "Banneker's": [], + "tuberculin": ["M"], + "semester's": [], + "begrudgingly": [], + "havoc": ["M"], + "harpoonings": [], + "Concorde's": [], + "fern": ["M", "S"], + "tailspin": ["S", "M"], + "participles": [], + "coadjutor'ses": [], + "ventilation": ["M"], + "MIT's": [], + "constituents's": [], + "hideaway": ["S", "M"], + "IRS": ["M"], + "instinctively": [], + "pharmaceutical": ["S", "M"], + "carat": ["M", "S"], + "arbitration": ["M"], + "defecating": [], + "Isidro's": [], + "directive's": [], + "typified": [], + "proponents": [], + "con's": [], + "nonrecognition's": [], + "embezzling": [], + "doctorate'ses": [], + "consumer": ["M"], + "dignitary's": [], + "juiciest": [], + "Randolph": ["M"], + "Tibetan's": [], + "Alec's": [], + "heftiest": [], + "ABA": [], + "insole": ["S", "M"], + "schuss's": [], + "headpieces": [], + "overhead'ses": [], + "Abram": ["M", "S"], + "disdain": ["S", "M", "D", "G"], + "Robespierre's": [], + "bookshelf's": [], + "chatelaines": [], + "rm": [], + "upkeep": ["M"], + "saboteurs": [], + "palatine'ses": [], + "flowers": [], + "unattributed": [], + "dissident": ["M", "S"], + "pushpin": ["S"], + "felicities's": [], + "repress": [], + "yens": [], + "redoubtsable": [], + "mournfulness's": [], + "sprinted": [], + "EOE": [], + "jinxed": [], + "outcropping": ["S", "M"], + "boggling": [], + "Damion's": [], + "vanned": [], + "colonizer": ["M", "S"], + "centrifuge": ["D", "S", "M", "G"], + "coalitionist's": [], + "shivered": [], + "adulterated": ["U"], + "fig": ["S", "L", "M"], + "Versailles": ["M"], + "Savoy's": [], + "superlative": ["S", "M", "Y"], + "rituals's": [], + "jilteds": [], + "afterword's": [], + "Campbell's": [], + "flagellatingen": [], + "Centaurus": ["M"], + "bickerersing": [], + "temptingly": [], + "requiem's": [], + "outdrawing": [], + "ewer": ["M"], + "workingses": [], + "shavers": [], + "emphasizeds": [], + "pneumococci": [], + "ligament's": [], + "Gurkha": ["M"], + "servitor'ses": [], + "militancy": ["M"], + "visited": [], + "babbler": ["M"], + "spurts's": [], + "stoics": [], + "omitted": [], + "costuminged": [], + "squeezer": ["M"], + "indiscernible": [], + "convertibility": ["M"], + "Diocletian": ["M"], + "instillation's": [], + "reappointment's": [], + "amuses": [], + "earliness": ["M"], + "Beninese": ["M"], + "amphibian's": [], + "gossipeder": [], + "thresh'sed": [], + "rumbleds": [], + "seasonsing": [], + "Trenton's": [], + "message's": [], + "cesspools": [], + "canersing": [], + "lighter's": [], + "Bayamon": [], + "capaciously": [], + "applaud": ["Z", "G", "D", "R", "S"], + "subjugates": [], + "gerrymander'sed": [], + "keystone'ses": [], + "poets": [], + "schnapps": ["M"], + "Dixiecrat": ["M"], + "callousnessing": [], + "legalizinged": [], + "somersaulted": [], + "stretchy": ["T", "R"], + "circle": ["M", "G", "D", "S"], + "plash": ["M", "D", "S", "G"], + "organizations": [], + "Oneida's": [], + "Qantas's": [], + "correctable": [], + "anticoagulant'ses": [], + "Fulton": ["M"], + "GNP": ["M"], + "baksheesh": ["M"], + "they're": [], + "confederate": ["M"], + "numerologist": ["M", "S"], + "Churchill's": [], + "fakers": [], + "blockbuster's": [], + "Rocky": ["S", "M"], + "bracket'sed": [], + "equivocally": [], + "sunburst": ["M", "S"], + "harmeding": [], + "Macon": ["M"], + "Lister's": [], + "variegation's": [], + "popinjay": ["M", "S"], + "Capricorn'ses": [], + "repurchaseds": [], + "stereos": [], + "soapsuds's": [], + "victual": ["S", "M", "D", "G"], + "depressives's": [], + "Vlad": ["M"], + "accesseds": [], + "McCain": ["M"], + "maleness": ["M"], + "unhealthily": [], + "intermezzos": [], + "eastwards": [], + "papilla's": [], + "palliation": ["M"], + "mastermindsing": [], + "salutation's": [], + "Crookes's": [], + "severity": ["M"], + "Akhmatova's": [], + "hiatus's": [], + "Lori's": [], + "transfiguration": ["M"], + "hometowns": [], + "aspersion'ses": [], + "beseeming": [], + "rep's": [], + "symbiosis": ["M"], + "misshapes": [], + "misapplieds": [], + "Ronny's": [], + "absolutions": [], + "railed": [], + "puree'sed": [], + "Royal": ["M"], + "beaming": [], + "salutation'ses": [], + "uppers's": [], + "ownership": ["M"], + "eavesdroppers's": [], + "savoy's": [], + "BASICs": [], + "gigglers": [], + "hornets": [], + "portrait": ["M", "S"], + "Horace's": [], + "thoroughly": [], + "realistically": ["U"], + "totterers": [], + "hostages": [], + "accession's": [], + "immigrate": ["D", "S", "G", "N"], + "punks": [], + "Wittgenstein": ["M"], + "charismatic": ["M", "S"], + "lunchroom's": [], + "Cheyennes": [], + "demarcateds": [], + "Noe": ["M"], + "gloat": ["S", "M", "D", "G"], + "collationsing": [], + "Junkers's": [], + "Miss": [], + "charitably": ["U"], + "patty": ["S", "M"], + "squidgy": [], + "scuff's": [], + "colonoscopy": ["S", "M"], + "cetacean's": [], + "Julio": ["M"], + "magi": ["M"], + "copper's": [], + "brazer": ["M"], + "blackjacking": [], + "bogging": [], + "coquetry": ["S", "M"], + "wishing": [], + "pressurization": ["M"], + "hora's": [], + "loom's": [], + "Cartwright": ["M"], + "trickle's": [], + "sill": ["M", "S"], + "kismet": ["M"], + "stoppage'ses": [], + "Alleghenies": ["M"], + "batty": ["R", "T"], + "sheila": ["S"], + "rockersing": [], + "hypnosis's": [], + "hammocks": [], + "burgh'ser": [], + "stylizing": [], + "festering": [], + "morosely": [], + "tripper's": [], + "longitudes": [], + "thatcheder": [], + "postludes's": [], + "slayer": ["M"], + "voltmeters's": [], + "jeweler's": [], + "agitation": ["M"], + "disruptions's": [], + "running": ["M"], + "trinket's": [], + "motto": ["M"], + "intersperse": ["G", "N", "D", "S"], + "springier": [], + "flannel's": [], + "Vonda's": [], + "wheeled": [], + "antacid": ["S", "M"], + "multimillionaires's": [], + "recess's": [], + "verticals": [], + "phantasm'ses": [], + "comport": ["L", "S", "G", "D"], + "hazelnut's": [], + "sharperly": [], + "parasitism": ["M"], + "bedpost's": [], + "almoners's": [], + "waleds": [], + "leases's": [], + "apprenticing": [], + "pinching's": [], + "chandelier": ["S", "M"], + "distinctiveness's": [], + "thickheaded": ["M"], + "ignominies": [], + "entombs": [], + "slues": [], + "tanners's": [], + "mongerings": [], + "Evans": ["M"], + "toughliness": [], + "realm'ses": [], + "valets": [], + "skewings": [], + "hipbone": ["M", "S"], + "ovaries's": [], + "begins": [], + "Mariana": ["S", "M"], + "onerousnessly": [], + "Cardenas's": [], + "snooper": ["M"], + "chuckle": ["M", "G", "D", "S"], + "twirler": ["M"], + "valuation's": [], + "Freda": ["M"], + "mishitting": [], + "spottinesser": [], + "adulterants": [], + "anopheles's": [], + "Salas's": [], + "trivets": [], + "mawkishness's": [], + "dissimulator": [], + "slurp": ["S", "M", "D", "G"], + "motherboards's": [], + "sitters": [], + "kvetch": ["Z", "G", "M", "D", "R", "S"], + "climbed": [], + "neuron's": [], + "Pygmy": ["S", "M"], + "noblesness": [], + "freeloaded": [], + "Boru": ["M"], + "underlip's": [], + "error's": [], + "supercharged": [], + "hassling": [], + "readerable": [], + "hypo'ses": [], + "timbre": ["S", "M"], + "perspective": ["M", "S"], + "crimsoned": [], + "needlepoint": ["M"], + "leakinesser": [], + "Scheherazade's": [], + "Maracaibo's": [], + "Chateaubriand's": [], + "slews": [], + "felicitationens": [], + "prophylaxis's": [], + "clobbers": [], + "admiral's": [], + "prudently": [], + "bravuras": [], + "splice'sers": [], + "question": ["S", "M", "D", "R", "Z", "G", "B", "J"], + "dinettes": [], + "nickeder": [], + "Arkhangelsk": ["M"], + "Harvey's": [], + "delivers": [], + "technologists": [], + "blintzes": [], + "tangle's": [], + "lawmaker's": [], + "parkeds": [], + "ribaldry's": [], + "disproof's": [], + "nonconductor": ["M", "S"], + "misquote'sing": [], + "aerodrome'ses": [], + "napalm's": [], + "essayists": [], + "sugarcane's": [], + "Pegasuses": [], + "dropouts's": [], + "egomania": ["M"], + "alps's": [], + "malleability's": [], + "puppy": ["S", "M"], + "bellicosity's": [], + "heathen's": [], + "negateds": [], + "shim'ses": [], + "angle": ["M", "Z", "G", "D", "R", "S"], + "Landon": ["M"], + "munchkins's": [], + "Weber's": [], + "instabilities": [], + "credited": [], + "slippage'ses": [], + "broom": ["S", "M"], + "diesel": ["S", "M", "D", "G"], + "socialism's": [], + "GNU": ["M"], + "inquirer's": [], + "Vesta": ["M"], + "pivoteding": [], + "strengthened": [], + "astringent": ["S", "M", "Y"], + "perfume'sers": [], + "health's": [], + "whole": ["S", "M", "P"], + "Hieronymus": ["M"], + "Scheherazade": ["M"], + "xiii": [], + "hokum": ["M"], + "slashersing": [], + "gland": ["S", "M"], + "test's": ["A", "F", "K"], + "rotogravure'ses": [], + "rapture's": [], + "knurl's": [], + "households": [], + "Galatea": ["M"], + "attesting": [], + "chillnessers": [], + "tragically": [], + "candidature": ["S", "M"], + "issuers": [], + "halyard's": [], + "Russ": ["M"], + "VA": [], + "appliques's": [], + "Annunciation's": [], + "interdicts": [], + "emphasis": ["M"], + "mischief": ["M"], + "Baywatch": ["M"], + "phantasmagorical": [], + "metacarpal's": [], + "contrariwise": [], + "spawns": [], + "Alton's": [], + "spell's": [], + "outperformed": [], + "attitudinizing": [], + "prideful": ["Y"], + "curer's": [], + "embryos's": [], + "calumniating": [], + "explosions's": [], + "infant": ["M", "S"], + "jockeyed": [], + "holidayeding": [], + "swishing": [], + "sweetening": ["M"], + "spellbinder": ["M"], + "bigwig": ["M", "S"], + "droplet": ["S", "M"], + "strengthening": [], + "accepted": ["U"], + "Muscovy's": [], + "appliqued": [], + "Jannie": ["M"], + "preservatives's": [], + "Swammerdam": ["M"], + "lieu's": [], + "lo": [], + "sequestrate": ["X", "G", "N", "D", "S"], + "FORTRAN's": [], + "absentmindedness's": [], + "psychoanalysts's": [], + "melanin's": [], + "xxxix": [], + "scruple": ["M", "G", "D", "S"], + "homeopath": ["M"], + "conundrums": [], + "entropy's": [], + "uselessliness": [], + "tel": [], + "phalanx": ["M", "S"], + "solidarity's": [], + "periodicals's": [], + "Muawiya": ["M"], + "adulteress": ["M", "S"], + "Berbers": [], + "babyish": [], + "circulates": [], + "warping": [], + "colon": ["S", "M"], + "first": ["S", "M", "Y"], + "rackets": [], + "Rex's": [], + "eremite's": [], + "nonthinking": [], + "Bluetooth": ["M"], + "headrest": ["M", "S"], + "Luria's": [], + "invigilated": [], + "staple'sers": [], + "Carthaginian": ["M", "S"], + "Nevadans's": [], + "mergansers": [], + "tetrameter's": [], + "reunfreeze": [], + "Torahs": [], + "anxieties": [], + "boogies": [], + "lemur": ["S", "M"], + "Donne's": [], + "smarties's": [], + "mandates's": [], + "Tainan": [], + "marque's": [], + "untainted": [], + "Cassie": ["M"], + "gillie": ["S"], + "plebs": [], + "cultivating": [], + "steamboat": ["M", "S"], + "fowl's": [], + "alienation": ["M"], + "Czechoslovakia": ["M"], + "Halsey's": [], + "cutthroats's": [], + "fryer": ["S", "M"], + "boombox": ["M", "S"], + "cobbler": ["M"], + "compete": ["D", "S", "G"], + "alertness's": [], + "stack": ["S", "M", "D", "G"], + "monotone's": [], + "halftime's": [], + "brutalization's": [], + "borrower's": [], + "aggregation": ["M"], + "Rhonda": ["M"], + "harrumph": ["G", "D"], + "ekes": [], + "humiliatingly": [], + "ingratiatingly": [], + "bleaknesser": [], + "thymine": ["M"], + "worshiper's": [], + "midwife": ["M", "G", "D", "S"], + "demonizing": [], + "mantissas's": [], + "cock's": [], + "momentous": ["P", "Y"], + "vaccination's": [], + "bearings": [], + "militantlies": [], + "empiricism": ["M"], + "introduce": ["A", "G", "D", "S"], + "Indus's": [], + "smelting": [], + "spinner's": [], + "Hammond's": [], + "resentments": [], + "ratepayers": [], + "Bolsheviks's": [], + "bird": ["S", "Z", "G", "M", "D", "R"], + "stile's": [], + "Bryan": ["M"], + "Rehnquist": ["M"], + "forestalled": [], + "fielded": [], + "taunt": ["Z", "G", "M", "D", "R", "S"], + "elasticity": ["M"], + "backgrounderers": [], + "dish": ["M", "D", "S", "G"], + "hungrily": [], + "waterway": ["M", "S"], + "kibble's": [], + "fishhooks": [], + "Quakerisms": [], + "cheered": [], + "sprocket'ses": [], + "nonce": ["M"], + "insolvent": [], + "Rosenzweig's": [], + "move's": [], + "plucked": [], + "buns's": [], + "philatelist": ["M", "S"], + "officiants's": [], + "looms": [], + "Western": ["M", "R", "S"], + "streams": [], + "hoodoo": ["M", "D", "S", "G"], + "Indonesia's": [], + "accouteringed": [], + "chicken's": [], + "Tess's": [], + "redegrade": [], + "ferociously": [], + "chophouse": ["S", "M"], + "wantonness": ["M"], + "carryout": [], + "nepotism's": [], + "mutterer": ["M"], + "Attica's": [], + "Concetta's": [], + "preface'sing": [], + "payments": [], + "authority": ["S", "M"], + "psi": ["S", "M"], + "nakednessly": [], + "provincialism's": [], + "waver": ["Z", "G", "M", "D", "R"], + "expatriate's": [], + "layering's": [], + "depressions's": [], + "humdinger'ses": [], + "transferal's": [], + "midwifes": [], + "appeal": ["G", "M", "D", "S"], + "tailoring": ["M"], + "pukinged": [], + "improvements": [], + "matsers": [], + "orthopedists": [], + "peachiest": [], + "Kalamazoo's": [], + "cookeries": [], + "eliminates": [], + "anhydrous": [], + "deliverer's": [], + "pipsers": [], + "semantics's": [], + "grunge": ["M", "S"], + "meddler's": [], + "anesthetization": ["S", "M"], + "procrastination's": [], + "Monsignors": [], + "bad": ["M", "Y", "P"], + "zinc's": [], + "gratefulness's": [], + "cicatrices": [], + "fleet's": [], + "hats's": [], + "speculates": [], + "reform'sers": [], + "sleeks": [], + "preening": [], + "Paulette": ["M"], + "ply's": [], + "tabernacle": ["S", "M"], + "congresswoman's": [], + "cheetah's": [], + "consensus's": [], + "knees": [], + "indefatigable": [], + "supplicants": [], + "novelette's": [], + "immaculateness's": [], + "Giles's": [], + "manicurist's": [], + "epitomized": [], + "mahoganies": [], + "traducesers": [], + "Krishnamurti": ["M"], + "capsulized": [], + "Veda": ["S", "M"], + "Chernobyl's": [], + "trisects": [], + "tornado": ["M"], + "bluntness": ["M"], + "custom'ser": [], + "termly": [], + "sprocket's": [], + "collaboratingen": [], + "grooving": [], + "hot": ["S", "Y", "P"], + "plaids": [], + "misstate": ["G", "D", "S", "L"], + "pref": [], + "nominee'ses": [], + "beachhead's": [], + "caterwauls": [], + "Marcos's": [], + "squirrel": ["S", "G", "M", "D"], + "SSW": ["M"], + "catchword's": [], + "bugaboo": ["S", "M"], + "crablike": [], + "wetlands's": [], + "McGee": ["M"], + "Malthusians": [], + "evenerly": [], + "ambiance'ses": [], + "bespangled": [], + "matzo's": [], + "welt": ["M", "D", "R", "S", "Z", "G"], + "pacified": [], + "counteding": [], + "taskmaster'ses": [], + "Poseidon's": [], + "jobbing": [], + "chronologies's": [], + "monthlies": [], + "freaking": [], + "pressman's": [], + "cornstalk": ["S", "M"], + "tenure'sing": [], + "chunders": [], + "Span": [], + "corrosion": ["M"], + "deepsness": [], + "contravention's": [], + "emaciateds": [], + "Iberian's": [], + "verbalization's": [], + "decipher": [], + "cancer": ["M", "S"], + "fluoridationed": [], + "cola's": [], + "contrarian's": [], + "attend": ["S", "D", "R", "Z", "G"], + "Kristopher's": [], + "earthenware's": [], + "servicing": [], + "snorkels": [], + "Alcibiades's": [], + "rehearsal": ["M", "S"], + "domicile's": [], + "frivolousnessly": [], + "bonhomie's": [], + "Rodolfo": ["M"], + "skimpy": ["R", "T", "P"], + "daredevil": ["M", "S"], + "garishnessly": [], + "concatenates": [], + "simile": ["M", "S"], + "Ohioan's": [], + "resentfulliness": [], + "spic": ["S"], + "keeleds": [], + "pathologists's": [], + "outstripping": [], + "viticulture": ["M"], + "parceling": [], + "reconcilable": [], + "capaciousness": ["M"], + "iconography's": [], + "formal": ["S", "M", "Y"], + "malfunctionsing": [], + "rattlebrains's": [], + "potpie": ["S", "M"], + "Man": ["M"], + "cussedness": [], + "dispersion's": [], + "telegraphy's": [], + "seabird's": [], + "ripping": [], + "cofferdams": [], + "repertories": [], + "maple's": [], + "aquifers": [], + "presumptive": [], + "goalie": ["S", "M"], + "enfeeble": ["G", "D", "S", "L"], + "goalscorers": [], + "headships": [], + "unenclosed": [], + "Josephus's": [], + "casuistic": [], + "flourishing's": [], + "urgency's": [], + "explains": [], + "unenforceable": [], + "wedlock's": [], + "tributary's": [], + "leaches": [], + "wingtips's": [], + "countryside": ["M", "S"], + "bisects": [], + "unappetizing": [], + "sinus": ["M", "S"], + "Emil": ["M"], + "tinkereder": [], + "anesthesiologists's": [], + "shrunken": [], + "rebellions": [], + "classifier": ["M", "S"], + "black": ["P", "X", "T", "G", "M", "D", "N", "R", "Y", "S"], + "bullfighting": ["M"], + "piaster'ses": [], + "habitability's": [], + "freestanding": [], + "journey": ["Z", "G", "M", "D", "R", "S"], + "blockader": ["M"], + "rotaries": [], + "e'en": [], + "almshouse": ["M", "S"], + "tiebreaksers": [], + "Presbyterianisms": [], + "gabardine's": [], + "intermarrieds": [], + "heroics": ["M"], + "coupon's": [], + "pussiest": [], + "odoreds": [], + "grainier": [], + "diastole": ["M"], + "seminar": ["M", "S"], + "naiver": [], + "sharping": [], + "unkindly": ["T"], + "obviates": [], + "uttermost": ["M"], + "shoulder'sed": [], + "maneuvering": [], + "Berliner's": [], + "windfall's": [], + "aesthetic": ["S"], + "stationersing": [], + "mailbag": ["S", "M"], + "oatcake's": [], + "Shostakovitch": ["M"], + "designsed": [], + "blind'sed": [], + "weaponizinged": [], + "bureaucracy's": [], + "birdlime's": [], + "conviction'ses": [], + "sponsorship": ["M"], + "Nelsen": ["M"], + "peahens": [], + "faultlessness": ["M"], + "hardship": ["S", "M"], + "trademarking": [], + "tarragon's": [], + "identifying": [], + "kinderly": [], + "membership": ["S", "M"], + "spankings": [], + "Kareem's": [], + "Rossetti": ["M"], + "remodels": [], + "Panamanian's": [], + "mentality's": [], + "spasms": [], + "blowier": [], + "striation's": [], + "monotonousness's": [], + "Georgina": ["M"], + "cradling": [], + "obfuscates": [], + "Clorets's": [], + "softness's": [], + "usurers's": [], + "obstetrics's": [], + "protractinged": [], + "Albert's": [], + "silkier": [], + "galosh": ["M", "S"], + "Ronald's": [], + "Oreg": [], + "battlefield'ses": [], + "Levant": ["M"], + "limping": [], + "upend": ["S", "G", "D"], + "piggy's": [], + "madams": [], + "brightsness": [], + "stricture's": [], + "grubby": ["T", "R", "P"], + "Henderson": ["M"], + "frazzles": [], + "saxophonist": ["S", "M"], + "slay": ["D", "R", "Z", "G", "J", "S"], + "unconnected": [], + "counterattacking's": [], + "oracles": [], + "fancier's": [], + "constabularies's": [], + "pantomimists's": [], + "Merrill's": [], + "ridginged": [], + "backbiting": [], + "terapixel's": [], + "tubule'ses": [], + "blurriness's": [], + "Gumbel's": [], + "glowering": [], + "Gatorade's": [], + "bearskin's": [], + "capitulations": [], + "Bechtel": ["M"], + "Whites": [], + "pied": [], + "broadminded": [], + "porch": ["M", "S"], + "guidebooks": [], + "Squanto": ["M"], + "bathmat's": [], + "spittle": ["M"], + "northwestward": ["S"], + "quantifying": [], + "hole'sing": [], + "secularizeds": [], + "trappers's": [], + "adulator's": [], + "Keillor": ["M"], + "barnstormerers": [], + "Bosporus": ["M"], + "reran": [], + "momentousness": ["M"], + "chartered": [], + "bedazzlesment": [], + "Hermite's": [], + "whoopee": ["S"], + "immunization's": [], + "dissipateds": [], + "snowstorm's": [], + "pattered": [], + "halibuts's": [], + "perfectness's": [], + "resonance": ["S", "M"], + "shiest": [], + "redhead'sed": [], + "lazinged": [], + "Pittsburgh": ["M"], + "levee's": [], + "Adventists": [], + "foothold'ses": [], + "ration'sed": [], + "conspiringed": [], + "swain": ["S", "M"], + "heptagons": [], + "disciple's": [], + "sueds": [], + "apex": ["M", "S"], + "stamped": [], + "sheller": [], + "robberies's": [], + "Ursula's": [], + "voluptuousness": ["M"], + "rambunctious": ["P", "Y"], + "Menkent's": [], + "perspicacity": ["M"], + "wax'sed": [], + "ratifiers": [], + "Silas": ["M"], + "protein": ["S", "M"], + "shortage": ["M", "S"], + "tranquilizer": ["M"], + "efficiency": ["I", "S", "M"], + "syndromes": [], + "cranny": ["D", "S", "M"], + "squatness": ["M"], + "precancerous": [], + "office's": [], + "Leningrad": ["M"], + "wrights": [], + "dappled": [], + "abrasive'sly": [], + "instrumentality": ["M"], + "reign'sed": [], + "tiara's": [], + "scaremonger'sing": [], + "accredited": ["U"], + "bestowal": ["S", "M"], + "widowhood's": [], + "stipulateds": [], + "schedulers": [], + "nods": [], + "Tatum": ["M"], + "perfumery": ["S", "M"], + "chiropractic": ["S", "M"], + "inappropriate": ["Y"], + "caressing": [], + "previewers": [], + "fetlock's": [], + "pounced": [], + "hematologist'ses": [], + "gunnysack's": [], + "whiting": ["M"], + "viscera": [], + "lambkin": ["S", "M"], + "thoroughgoing": [], + "debonair": ["P", "Y"], + "Liege's": [], + "principle's": [], + "edgers": [], + "mater": [], + "botchersing": [], + "spark'sed": [], + "quartet": ["S", "M"], + "muzzles's": [], + "nay": ["S", "M"], + "Louie's": [], + "wagereder": [], + "resentment": ["M", "S"], + "Plexiglas": ["M", "S"], + "hookup'ses": [], + "scrim's": [], + "snooker": ["M", "D", "S", "G"], + "Natasha": ["M"], + "pallbearer'ses": [], + "obtuserness": [], + "woodcutting": ["M"], + "conservatories's": [], + "subsystem's": [], + "Comoros": ["M"], + "convey": ["S", "B", "D", "G"], + "Pirandello": ["M"], + "overkill's": [], + "conceivesing": [], + "hazelnut": ["M", "S"], + "vanishingsed": [], + "draftsmanship's": [], + "neuritis": ["M"], + "oversight's": [], + "hallelujah's": [], + "flavorful": [], + "elboweding": [], + "renegade's": [], + "adverts": [], + "tremors": [], + "throttles": [], + "wainscot": ["S", "J", "M", "D", "G"], + "Tomas": ["M"], + "cease": ["C", "M", "G", "D", "S"], + "swan'ses": [], + "vacationeder": [], + "battling": [], + "polygons's": [], + "lairds": [], + "Shannon": ["M"], + "lectern": ["M", "S"], + "lefty's": [], + "mangles": [], + "deviateds": [], + "proportion's": [], + "disdaining": [], + "ejaculatory": [], + "nonpracticing": [], + "skeletal": [], + "beatifies": [], + "carefulness's": [], + "misrepresentation'ses": [], + "runoff's": [], + "exceptional": ["U", "Y"], + "goldbrickings": [], + "baronage'ses": [], + "fanzine": ["M", "S"], + "tamable": [], + "pokers": [], + "spaniel": ["S", "M"], + "Adkins's": [], + "fastidiously": [], + "categorically": [], + "baloney": ["M"], + "enjoined": [], + "tawny": ["T", "R", "M"], + "lube'sing": [], + "hunting": ["M"], + "capitulates": [], + "leftover": ["S", "M"], + "Beck": ["M", "R"], + "Sheffield": ["M"], + "rustleder": [], + "condensesers": [], + "prissy": ["P", "T", "R"], + "soda'ses": [], + "plankton": ["M"], + "Lafayette's": [], + "cramps": [], + "hitchhikersing": [], + "Blanca": ["M"], + "contemplation": ["M"], + "ordering": [], + "vessel": ["M", "S"], + "augurs": [], + "managinged": [], + "feeds": [], + "Leipzig's": [], + "Berlin": ["S", "Z", "M", "R"], + "bubble": ["D", "S", "M", "G"], + "silent": ["M", "R", "Y", "S", "T"], + "partaking": [], + "executed": [], + "solitaires": [], + "lumpy": ["T", "R", "P"], + "Fitch": ["M"], + "walnuts": [], + "visioninged": [], + "Desiree's": [], + "layette": ["M", "S"], + "clevis": ["M", "S"], + "hyphenated": [], + "insinuative": [], + "Tameka": ["M"], + "cultivator'ses": [], + "misadventure": ["M", "S"], + "bollixeds": [], + "pasting": [], + "waxens": [], + "Argentine": ["M"], + "sobererly": [], + "presage'sing": [], + "somberness's": [], + "chomp's": [], + "acropolises": [], + "Hamiltonian's": [], + "incursions": [], + "Freemasons's": [], + "Foster's": [], + "epee": ["M", "S"], + "boyhood's": [], + "ducat's": [], + "disposals": [], + "refashionings": [], + "rebound": [], + "tarsal's": [], + "creole's": [], + "crackling's": [], + "medievalists": [], + "Calif": [], + "bathrobes's": [], + "ligature'sing": [], + "unknowable's": [], + "rationalizes": [], + "affably": [], + "holdovers's": [], + "tollways": [], + "demobbed": [], + "standersing": [], + "socialites": [], + "warlike": [], + "Northwest's": [], + "pituitary": ["S", "M"], + "doctrinaires": [], + "disables": [], + "refrain'sed": [], + "renouncemented": [], + "lattices": [], + "injunction": [], + "defiantly": [], + "amenability": ["M"], + "keyboard's": [], + "manhunt": ["S", "M"], + "sunglasses": ["M"], + "dioxins's": [], + "cockscombs": [], + "corning": [], + "Litton": ["M"], + "siding": ["M", "S"], + "spoors's": [], + "airlock's": [], + "letterbombs": [], + "sis'ses": [], + "gilder": ["M"], + "highboy": ["M", "S"], + "plunk'sed": [], + "trailer": ["M"], + "capsulize": ["D", "S", "G"], + "lionized": [], + "engorge": ["L", "G", "D", "S"], + "Adana": ["M"], + "infinitesimals's": [], + "cheerlessness": ["M"], + "daunting": ["Y"], + "uninstallinged": [], + "bandy": ["D", "R", "S", "T", "G"], + "worthlessness's": [], + "externalizes": [], + "growler's": [], + "becalming": [], + "ledge": ["R", "S", "M", "Z"], + "shroud's": [], + "consecrated": ["U"], + "mutateds": [], + "looting's": [], + "supervision": ["M"], + "Vlasic's": [], + "joyrider's": [], + "deicer's": [], + "hullabaloos's": [], + "Kngwarreye": ["M"], + "disorderliness": [], + "derelict'ses": [], + "crimping": [], + "soapierness": [], + "rial": ["M", "S"], + "magnitudes's": [], + "lama": ["M", "S"], + "reminder": ["M"], + "daintiest": [], + "attempting": [], + "Ramada's": [], + "intercepteds": [], + "flub": ["M", "S"], + "snakes's": [], + "petabytes": [], + "windowless": [], + "burdock's": [], + "sail's": [], + "destroys": [], + "populism's": [], + "grownup's": [], + "foresail": ["M", "S"], + "reconfirm": [], + "intermarries": [], + "purulence's": [], + "whelped": [], + "landwards": [], + "counterpoisinged": [], + "penmanship": ["M"], + "frictions's": [], + "confiscations": [], + "skittishness": ["M"], + "pleasantry": ["S", "M"], + "frazzlinged": [], + "inset": [], + "aviatrixes": [], + "acupressure's": [], + "Kodak": ["M"], + "hailstorms": [], + "exhumeds": [], + "erstwhile": [], + "wiggles": [], + "scrimmages": [], + "sop": ["S", "M"], + "ordain": ["S", "D", "L", "G"], + "nonperson'ses": [], + "retorting": [], + "pubescence": ["M"], + "satchel'ses": [], + "dearsness": [], + "output's": [], + "academe's": [], + "ramparts": [], + "tamarack's": [], + "residuals": [], + "coulees's": [], + "lightproof": [], + "abash": ["G", "L", "D", "S"], + "bungalow'ses": [], + "unremarked": [], + "highbrows": [], + "Nigeria's": [], + "professional'sly": [], + "dissect": ["S", "D", "G"], + "roots": [], + "fulminates": [], + "inadequacies": [], + "cokinged": [], + "dialed": [], + "LED's": [], + "outproducing": [], + "builders": [], + "smugness's": [], + "evinceds": [], + "Goa's": [], + "animadverting": [], + "bassinet": ["M", "S"], + "bestrides": [], + "Asuncion's": [], + "guffawing": [], + "drupes": [], + "Staubach's": [], + "monodist's": [], + "tympanist'ses": [], + "lucksing": [], + "electorates": [], + "aides": [], + "citizens": [], + "pinsetter": ["S", "M"], + "tousles": [], + "zloties": [], + "Alembert's": [], + "portages's": [], + "lordsing": [], + "sedateness": ["M"], + "objectivity": ["M"], + "beltway's": [], + "annihilated": [], + "duenna's": [] + }, + "compoundRules": [ + "/(0|1|2|3|4|5|6|7|8|9)*(1)(0th|1th|2th|3th|4th|5th|6th|7th|8th|9th)/i", + "/(0|1|2|3|4|5|6|7|8|9)*(0|2|3|4|5|6|7|8|9)(0th|1st|2nd|3rd|4th|5th|6th|7th|8th|9th)/i" + ] } diff --git a/__tests__/english.test.ts b/__tests__/english.test.ts index 9e3e50f..35c98a9 100644 --- a/__tests__/english.test.ts +++ b/__tests__/english.test.ts @@ -6,13 +6,13 @@ let typo: ITypo; beforeAll(() => { const testDir = path.dirname(require.main.filename); - const dictData = JSON.parse(fs.readFileSync(`${testDir}/dictionaries/en_US.json`).toString()); - typo = createTypo( - dictData.dictionaryTable, - dictData.compoundRules, - dictData.replacementTable, - dictData.flags, - ); + const dictData = JSON.parse(fs.readFileSync(`${testDir}/dictionaries/en.json`).toString()); + typo = createTypo({ + compoundRules: dictData.compoundRules, + dictionaryTable: dictData.dictionaryTable, + flags: dictData.flags, + replacementTable: dictData.replacementTable, + }); }); test("correct words return true to check", () => { diff --git a/dictionaries/en_US/README.md b/dictionaries/en_US/README.md deleted file mode 100644 index bcdc117..0000000 --- a/dictionaries/en_US/README.md +++ /dev/null @@ -1,7 +0,0 @@ -2006-02-07 release. - ---- - -This dictionary is based on a subset of the original English wordlist created by Kevin Atkinson for Pspell and Aspell and thus is covered by his original LGPL license. The affix file is a heavily modified version of the original english.aff file which was released as part of Geoff Kuenning's Ispell and as such is covered by his BSD license. - -Thanks to both authors for their wonderful work. diff --git a/dictionaries/en_US/en_US.aff b/dictionaries/en_US/en_US.aff deleted file mode 100644 index 2ddd985..0000000 --- a/dictionaries/en_US/en_US.aff +++ /dev/null @@ -1,201 +0,0 @@ -SET ISO8859-1 -TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ' -NOSUGGEST ! - -# ordinal numbers -COMPOUNDMIN 1 -# only in compounds: 1th, 2th, 3th -ONLYINCOMPOUND c -# compound rules: -# 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.) -# 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.) -COMPOUNDRULE 2 -COMPOUNDRULE n*1t -COMPOUNDRULE n*mp -WORDCHARS 0123456789 - -PFX A Y 1 -PFX A 0 re . - -PFX I Y 1 -PFX I 0 in . - -PFX U Y 1 -PFX U 0 un . - -PFX C Y 1 -PFX C 0 de . - -PFX E Y 1 -PFX E 0 dis . - -PFX F Y 1 -PFX F 0 con . - -PFX K Y 1 -PFX K 0 pro . - -SFX V N 2 -SFX V e ive e -SFX V 0 ive [^e] - -SFX N Y 3 -SFX N e ion e -SFX N y ication y -SFX N 0 en [^ey] - -SFX X Y 3 -SFX X e ions e -SFX X y ications y -SFX X 0 ens [^ey] - -SFX H N 2 -SFX H y ieth y -SFX H 0 th [^y] - -SFX Y Y 1 -SFX Y 0 ly . - -SFX G Y 2 -SFX G e ing e -SFX G 0 ing [^e] - -SFX J Y 2 -SFX J e ings e -SFX J 0 ings [^e] - -SFX D Y 4 -SFX D 0 d e -SFX D y ied [^aeiou]y -SFX D 0 ed [^ey] -SFX D 0 ed [aeiou]y - -SFX T N 4 -SFX T 0 st e -SFX T y iest [^aeiou]y -SFX T 0 est [aeiou]y -SFX T 0 est [^ey] - -SFX R Y 4 -SFX R 0 r e -SFX R y ier [^aeiou]y -SFX R 0 er [aeiou]y -SFX R 0 er [^ey] - -SFX Z Y 4 -SFX Z 0 rs e -SFX Z y iers [^aeiou]y -SFX Z 0 ers [aeiou]y -SFX Z 0 ers [^ey] - -SFX S Y 4 -SFX S y ies [^aeiou]y -SFX S 0 s [aeiou]y -SFX S 0 es [sxzh] -SFX S 0 s [^sxzhy] - -SFX P Y 3 -SFX P y iness [^aeiou]y -SFX P 0 ness [aeiou]y -SFX P 0 ness [^y] - -SFX M Y 1 -SFX M 0 's . - -SFX B Y 3 -SFX B 0 able [^aeiou] -SFX B 0 able ee -SFX B e able [^aeiou]e - -SFX L Y 1 -SFX L 0 ment . - -REP 88 -REP a ei -REP ei a -REP a ey -REP ey a -REP ai ie -REP ie ai -REP are air -REP are ear -REP are eir -REP air are -REP air ere -REP ere air -REP ere ear -REP ere eir -REP ear are -REP ear air -REP ear ere -REP eir are -REP eir ere -REP ch te -REP te ch -REP ch ti -REP ti ch -REP ch tu -REP tu ch -REP ch s -REP s ch -REP ch k -REP k ch -REP f ph -REP ph f -REP gh f -REP f gh -REP i igh -REP igh i -REP i uy -REP uy i -REP i ee -REP ee i -REP j di -REP di j -REP j gg -REP gg j -REP j ge -REP ge j -REP s ti -REP ti s -REP s ci -REP ci s -REP k cc -REP cc k -REP k qu -REP qu k -REP kw qu -REP o eau -REP eau o -REP o ew -REP ew o -REP oo ew -REP ew oo -REP ew ui -REP ui ew -REP oo ui -REP ui oo -REP ew u -REP u ew -REP oo u -REP u oo -REP u oe -REP oe u -REP u ieu -REP ieu u -REP ue ew -REP ew ue -REP uff ough -REP oo ieu -REP ieu oo -REP ier ear -REP ear ier -REP ear air -REP air ear -REP w qu -REP qu w -REP z ss -REP ss z -REP shun tion -REP shun sion -REP shun cion diff --git a/dictionaries/en_US/en_US.dic b/dictionaries/en_US/en_US.dic deleted file mode 100644 index 4f69807..0000000 --- a/dictionaries/en_US/en_US.dic +++ /dev/null @@ -1,62120 +0,0 @@ -62118 -0/nm -1/n1 -2/nm -3/nm -4/nm -5/nm -6/nm -7/nm -8/nm -9/nm -0th/pt -1st/p -1th/tc -2nd/p -2th/tc -3rd/p -3th/tc -4th/pt -5th/pt -6th/pt -7th/pt -8th/pt -9th/pt -a -A -AA -AAA -Aachen/M -aardvark/SM -Aaren/M -Aarhus/M -Aarika/M -Aaron/M -AB -aback -abacus/SM -abaft -Abagael/M -Abagail/M -abalone/SM -abandoner/M -abandon/LGDRS -abandonment/SM -abase/LGDSR -abasement/S -abaser/M -abashed/UY -abashment/MS -abash/SDLG -abate/DSRLG -abated/U -abatement/MS -abater/M -abattoir/SM -Abba/M -Abbe/M -abb/S -abbess/SM -Abbey/M -abbey/MS -Abbie/M -Abbi/M -Abbot/M -abbot/MS -Abbott/M -abbr -abbrev -abbreviated/UA -abbreviates/A -abbreviate/XDSNG -abbreviating/A -abbreviation/M -Abbye/M -Abby/M -ABC/M -Abdel/M -abdicate/NGDSX -abdication/M -abdomen/SM -abdominal/YS -abduct/DGS -abduction/SM -abductor/SM -Abdul/M -ab/DY -abeam -Abelard/M -Abel/M -Abelson/M -Abe/M -Aberdeen/M -Abernathy/M -aberrant/YS -aberrational -aberration/SM -abet/S -abetted -abetting -abettor/SM -Abeu/M -abeyance/MS -abeyant -Abey/M -abhorred -abhorrence/MS -abhorrent/Y -abhorrer/M -abhorring -abhor/S -abidance/MS -abide/JGSR -abider/M -abiding/Y -Abidjan/M -Abie/M -Abigael/M -Abigail/M -Abigale/M -Abilene/M -ability/IMES -abjection/MS -abjectness/SM -abject/SGPDY -abjuration/SM -abjuratory -abjurer/M -abjure/ZGSRD -ablate/VGNSDX -ablation/M -ablative/SY -ablaze -abler/E -ables/E -ablest -able/U -abloom -ablution/MS -Ab/M -ABM/S -abnegate/NGSDX -abnegation/M -Abner/M -abnormality/SM -abnormal/SY -aboard -abode/GMDS -abolisher/M -abolish/LZRSDG -abolishment/MS -abolitionism/SM -abolitionist/SM -abolition/SM -abominable -abominably -abominate/XSDGN -abomination/M -aboriginal/YS -aborigine/SM -Aborigine/SM -aborning -abortionist/MS -abortion/MS -abortiveness/M -abortive/PY -abort/SRDVG -Abo/SM! -abound/GDS -about/S -aboveboard -aboveground -above/S -abracadabra/S -abrader/M -abrade/SRDG -Abraham/M -Abrahan/M -Abra/M -Abramo/M -Abram/SM -Abramson/M -Abran/M -abrasion/MS -abrasiveness/S -abrasive/SYMP -abreaction/MS -abreast -abridge/DSRG -abridged/U -abridger/M -abridgment/SM -abroad -abrogate/XDSNG -abrogation/M -abrogator/SM -abruptness/SM -abrupt/TRYP -ABS -abscess/GDSM -abscissa/SM -abscission/SM -absconder/M -abscond/SDRZG -abseil/SGDR -absence/SM -absenteeism/SM -absentee/MS -absentia/M -absentmindedness/S -absentminded/PY -absent/SGDRY -absinthe/SM -abs/M -absoluteness/SM -absolute/NPRSYTX -absolution/M -absolutism/MS -absolutist/SM -absolve/GDSR -absolver/M -absorb/ASGD -absorbed/U -absorbency/MS -absorbent/MS -absorber/SM -absorbing/Y -absorption/MS -absorptive -absorptivity/M -abstainer/M -abstain/GSDRZ -abstemiousness/MS -abstemious/YP -abstention/SM -abstinence/MS -abstinent/Y -abstractedness/SM -abstracted/YP -abstracter/M -abstractionism/M -abstractionist/SM -abstraction/SM -abstractness/SM -abstractor/MS -abstract/PTVGRDYS -abstruseness/SM -abstruse/PRYT -absurdity/SM -absurdness/SM -absurd/PRYST -Abuja -abundance/SM -abundant/Y -abused/E -abuse/GVZDSRB -abuser/M -abuses/E -abusing/E -abusiveness/SM -abusive/YP -abut/LS -abutment/SM -abutted -abutter/MS -abutting -abuzz -abysmal/Y -abyssal -Abyssinia/M -Abyssinian -abyss/SM -AC -acacia/SM -academe/MS -academia/SM -academical/Y -academicianship -academician/SM -academic/S -academy/SM -Acadia/M -acanthus/MS -Acapulco/M -accede/SDG -accelerated/U -accelerate/NGSDXV -accelerating/Y -acceleration/M -accelerator/SM -accelerometer/SM -accented/U -accent/SGMD -accentual/Y -accentuate/XNGSD -accentuation/M -acceptability/SM -acceptability's/U -acceptableness/SM -acceptable/P -acceptably/U -acceptance/SM -acceptant -acceptation/SM -accepted/Y -accepter/M -accepting/PY -acceptor/MS -accept/RDBSZVG -accessed/A -accessibility/IMS -accessible/IU -accessibly/I -accession/SMDG -accessors -accessory/SM -access/SDMG -accidence/M -accidentalness/M -accidental/SPY -accident/MS -acclaimer/M -acclaim/SDRG -acclamation/MS -acclimate/XSDGN -acclimation/M -acclimatisation -acclimatise/DG -acclimatization/AMS -acclimatized/U -acclimatize/RSDGZ -acclimatizes/A -acclivity/SM -accolade/GDSM -accommodated/U -accommodate/XVNGSD -accommodating/Y -accommodation/M -accommodativeness/M -accommodative/P -accompanied/U -accompanier/M -accompaniment/MS -accompanist/SM -accompany/DRSG -accomplice/MS -accomplished/U -accomplisher/M -accomplishment/SM -accomplish/SRDLZG -accordance/SM -accordant/Y -accorder/M -according/Y -accordionist/SM -accordion/MS -accord/SZGMRD -accost/SGD -accountability/MS -accountability's/U -accountableness/M -accountable/U -accountably/U -accountancy/SM -accountant/MS -account/BMDSGJ -accounted/U -accounting/M -accouter/GSD -accouterments -accouterment's -accoutrement/M -Accra/M -accreditation/SM -accredited/U -accredit/SGD -accretion/SM -accrual/MS -accrue/SDG -acct -acculturate/XSDVNG -acculturation/M -accumulate/VNGSDX -accumulation/M -accumulativeness/M -accumulative/YP -accumulator/MS -accuracy/IMS -accurate/IY -accurateness/SM -accursedness/SM -accursed/YP -accusal/M -accusation/SM -accusative/S -accusatory -accused/M -accuser/M -accuse/SRDZG -accusing/Y -accustomedness/M -accustomed/P -accustom/SGD -ac/DRG -aced/M -acerbate/DSG -acerbic -acerbically -acerbity/MS -ace/SM -acetaminophen/S -acetate/MS -acetic -acetone/SM -acetonic -acetylene/MS -Acevedo/M -Achaean/M -Achebe/M -ached/A -ache/DSG -achene/SM -Achernar/M -aches/A -Acheson/M -achievable/U -achieved/UA -achieve/LZGRSDB -achievement/SM -achiever/M -Achilles -aching/Y -achoo -achromatic -achy/TR -acidic -acidification/M -acidify/NSDG -acidity/SM -acidness/M -acidoses -acidosis/M -acid/SMYP -acidulous -acing/M -Ackerman/M -acknowledgeable -acknowledgedly -acknowledged/U -acknowledge/GZDRS -acknowledger/M -acknowledgment/SAM -ACLU -Ac/M -ACM -acme/SM -acne/MDS -acolyte/MS -Aconcagua/M -aconite/MS -acorn/SM -Acosta/M -acoustical/Y -acoustician/M -acoustic/S -acoustics/M -acquaintance/MS -acquaintanceship/S -acquainted/U -acquaint/GASD -acquiesce/GSD -acquiescence/SM -acquiescent/Y -acquirable -acquire/ASDG -acquirement/SM -acquisition's/A -acquisition/SM -acquisitiveness/MS -acquisitive/PY -acquit/S -acquittal/MS -acquittance/M -acquitted -acquitter/M -acquitting -acreage/MS -acre/MS -acridity/MS -acridness/SM -acrid/TPRY -acrimoniousness/MS -acrimonious/YP -acrimony/MS -acrobatically -acrobatic/S -acrobatics/M -acrobat/SM -acronym/SM -acrophobia/SM -Acropolis/M -acropolis/SM -across -acrostic/SM -Acrux/M -acrylate/M -acrylic/S -ACT -Actaeon/M -Acta/M -ACTH -acting/S -actinic -actinide/SM -actinium/MS -actinometer/MS -action/DMSGB -actions/AI -action's/IA -activate/AXCDSNGI -activated/U -activation/AMCI -activator/SM -active/APY -actively/I -activeness/MS -actives -activism/MS -activist/MS -activities/A -activity/MSI -Acton/M -actor/MAS -actress/SM -act's -Acts -act/SADVG -actuality/SM -actualization/MAS -actualize/GSD -actualizes/A -actual/SY -actuarial/Y -actuary/MS -actuate/GNXSD -actuation/M -actuator/SM -acuity/MS -acumen/SM -acupressure/S -acupuncture/SM -acupuncturist/S -acuteness/MS -acute/YTSRP -acyclic -acyclically -acyclovir/S -AD -adage/MS -adagio/S -Adah/M -Adair/M -Adaline/M -Ada/M -adamant/SY -Adamo/M -Adam/SM -Adamson/M -Adana/M -Adan/M -adaptability/MS -adaptable/U -adaptation/MS -adaptedness/M -adapted/P -adapter/M -adapting/A -adaption -adaptively -adaptiveness/M -adaptive/U -adaptivity -adapt/SRDBZVG -Adara/M -ad/AS -ADC -Adda/M -Addams -addenda -addend/SM -addendum/M -adder/M -Addia/M -addiction/MS -addictive/P -addict/SGVD -Addie/M -Addi/M -Addison/M -additional/Y -addition/MS -additive/YMS -additivity -addle/GDS -addressability -addressable/U -addressed/A -addressee/SM -addresser/M -addresses/A -address/MDRSZGB -Addressograph/M -adduce/GRSD -adducer/M -adduct/DGVS -adduction/M -adductor/M -Addy/M -add/ZGBSDR -Adelaida/M -Adelaide/M -Adela/M -Adelbert/M -Adele/M -Adelheid/M -Adelice/M -Adelina/M -Adelind/M -Adeline/M -Adella/M -Adelle/M -Adel/M -Ade/M -Adena/M -Adenauer/M -adenine/SM -Aden/M -adenoidal -adenoid/S -adeptness/MS -adept/RYPTS -adequacy/IMS -adequate/IPY -adequateness's/I -adequateness/SM -Adey/M -Adham/M -Adhara/M -adherence/SM -adherent/YMS -adherer/M -adhere/ZGRSD -adhesion/MS -adhesiveness/MS -adhesive/PYMS -adiabatic -adiabatically -Adiana/M -Adidas/M -adieu/S -Adi/M -Adina/M -adis -adipose/S -Adirondack/SM -adj -adjacency/MS -adjacent/Y -adjectival/Y -adjective/MYS -adjoin/SDG -adjoint/M -adjourn/DGLS -adjournment/SM -adjudge/DSG -adjudicate/VNGXSD -adjudication/M -adjudicator/SM -adjudicatory -adjunct/VSYM -adjuration/SM -adjure/GSD -adjustable/U -adjustably -adjust/DRALGSB -adjusted/U -adjuster's/A -adjuster/SM -adjustive -adjustment/MAS -adjustor's -adjutant/SM -Adkins/M -Adlai/M -Adler/M -adman/M -admen -administer/GDJS -administrable -administrate/XSDVNG -administration/M -administrative/Y -administrator/MS -administratrix/M -admirableness/M -admirable/P -admirably -admiral/SM -admiralty/MS -Admiralty/S -admiration/MS -admirer/M -admire/RSDZBG -admiring/Y -admissibility/ISM -admissible/I -admissibly -admission/AMS -admit/AS -admittance/MS -admitted/A -admittedly -admitting/A -admix/SDG -admixture/SM -Adm/M -Ad/MN -admonisher/M -admonish/GLSRD -admonishing/Y -admonishment/SM -admonition/MS -admonitory -adobe/MS -adolescence/MS -adolescent/SYM -Adolf/M -Adolfo/M -Adolphe/M -Adolph/M -Adolpho/M -Adolphus/M -Ado/M -ado/MS -Adonis/SM -adopted/AU -adopter/M -adoption/MS -adoptive/Y -adopt/RDSBZVG -adopts/A -adorableness/SM -adorable/P -adorably -Adora/M -adoration/SM -adore/DSRGZB -Adoree/M -Adore/M -adorer/M -adoring/Y -adorned/U -Adorne/M -adornment/SM -adorn/SGLD -ADP -Adrea/M -adrenalin -adrenaline/MS -Adrenalin/MS -adrenal/YS -Adria/MX -Adriana/M -Adriane/M -Adrian/M -Adrianna/M -Adrianne/M -Adriano/M -Adriatic -Adriena/M -Adrien/M -Adrienne/M -adrift -adroitness/MS -adroit/RTYP -ads -ad's -adsorbate/M -adsorbent/S -adsorb/GSD -adsorption/MS -adsorptive/Y -adulate/GNDSX -adulation/M -adulator/SM -adulatory -adulterant/SM -adulterated/U -adulterate/NGSDX -adulteration/M -adulterer/SM -adulteress/MS -adulterous/Y -adultery/SM -adulthood/MS -adult/MYPS -adultness/M -adumbrate/XSDVGN -adumbration/M -adumbrative/Y -adv -advance/DSRLZG -advancement/MS -advancer/M -advantage/GMEDS -advantageous/EY -advantageousness/M -Adventist/M -adventist/S -adventitiousness/M -adventitious/PY -adventive/Y -Advent/SM -advent/SVM -adventurer/M -adventuresome -adventure/SRDGMZ -adventuress/SM -adventurousness/SM -adventurous/YP -adverbial/MYS -adverb/SM -adversarial -adversary/SM -adverse/DSRPYTG -adverseness/MS -adversity/SM -advert/GSD -advertised/U -advertise/JGZSRDL -advertisement/SM -advertiser/M -advertising/M -advertorial/S -advice/SM -Advil/M -advisability/SIM -advisable/I -advisableness/M -advisably -advisedly/I -advised/YU -advisee/MS -advisement/MS -adviser/M -advise/ZRSDGLB -advisor/S -advisor's -advisory/S -advocacy/SM -advocate/NGVDS -advocation/M -advt -adze's -adz/MDSG -Aegean -aegis/SM -Aelfric/M -Aeneas -Aeneid/M -aeolian -Aeolus/M -aeon's -aerate/XNGSD -aeration/M -aerator/MS -aerialist/MS -aerial/SMY -Aeriela/M -Aeriell/M -Aeriel/M -aerie/SRMT -aeroacoustic -aerobatic/S -aerobically -aerobic/S -aerodrome/SM -aerodynamically -aerodynamic/S -aerodynamics/M -aeronautical/Y -aeronautic/S -aeronautics/M -aerosolize/D -aerosol/MS -aerospace/SM -Aeschylus/M -Aesculapius/M -Aesop/M -aesthete/S -aesthetically -aestheticism/MS -aesthetics/M -aesthetic/U -aether/M -aetiology/M -AF -AFAIK -afar/S -AFB -AFC -AFDC -affability/MS -affable/TR -affably -affair/SM -affectation/MS -affectedness/EM -affected/UEYP -affect/EGSD -affecter/M -affecting/Y -affectionate/UY -affectioned -affection/EMS -affectioning -affective/MY -afferent/YS -affiance/GDS -affidavit/SM -affiliated/U -affiliate/EXSDNG -affiliation/EM -affine -affinity/SM -affirm/ASDG -affirmation/SAM -affirmative/SY -affix/SDG -afflatus/MS -afflict/GVDS -affliction/SM -afflictive/Y -affluence/SM -affluent/YS -afford/DSBG -afforest/A -afforestation/SM -afforested -afforesting -afforests -affray/MDSG -affricate/VNMS -affrication/M -affricative/M -affright -affront/GSDM -Afghani/SM -Afghanistan/M -afghan/MS -Afghan/SM -aficionado/MS -afield -afire -aflame -afloat -aflutter -afoot -afore -aforementioned -aforesaid -aforethought/S -afoul -Afr -afraid/U -afresh -Africa/M -African/MS -Afrikaans/M -Afrikaner/SM -afro -Afrocentric -Afrocentrism/S -Afro/MS -afterbirth/M -afterbirths -afterburner/MS -aftercare/SM -aftereffect/MS -afterglow/MS -afterimage/MS -afterlife/M -afterlives -aftermath/M -aftermaths -aftermost -afternoon/SM -aftershave/S -aftershock/SM -afters/M -aftertaste/SM -afterthought/MS -afterward/S -afterworld/MS -Afton/M -aft/ZR -Agace/M -again -against -Agamemnon/M -agapae -agape/S -agar/MS -Agassiz/M -Agata/M -agate/SM -Agatha/M -Agathe/M -agave/SM -agedness/M -aged/PY -age/GJDRSMZ -ageism/S -ageist/S -agelessness/MS -ageless/YP -agency/SM -agenda/MS -agent/AMS -agented -agenting -agentive -ageratum/M -Aggie/M -Aggi/M -agglomerate/XNGVDS -agglomeration/M -agglutinate/VNGXSD -agglutination/M -agglutinin/MS -aggrandize/LDSG -aggrandizement/SM -aggravate/SDNGX -aggravating/Y -aggravation/M -aggregated/U -aggregate/EGNVD -aggregately -aggregateness/M -aggregates -aggregation/SM -aggregative/Y -aggression/SM -aggressively -aggressiveness/S -aggressive/U -aggressor/MS -aggrieved/Y -aggrieve/GDS -Aggy/SM -aghast -agile/YTR -agility/MS -agitated/Y -agitate/XVNGSD -agitation/M -agitator/SM -agitprop/MS -Aglaia/M -agleam -aglitter -aglow -Ag/M -Agna/M -Agnella/M -Agnese/M -Agnes/M -Agnesse/M -Agneta/M -Agnew/M -Agni/M -Agnola/M -agnosticism/MS -agnostic/SM -ago -agog -agonizedly/S -agonized/Y -agonize/ZGRSD -agonizing/Y -agony/SM -agoraphobia/MS -agoraphobic/S -Agosto/M -Agra/M -agrarianism/MS -agrarian/S -agreeable/EP -agreeableness/SME -agreeably/E -agreeing/E -agree/LEBDS -agreement/ESM -agreer/S -Agretha/M -agribusiness/SM -Agricola/M -agriculturalist/S -agricultural/Y -agriculture/MS -agriculturist/SM -Agrippa/M -Agrippina/M -agrochemicals -agronomic/S -agronomist/SM -agronomy/MS -aground -Aguascalientes/M -ague/MS -Aguie/M -Aguilar/M -Aguinaldo/M -Aguirre/M -Aguistin/M -Aguste/M -Agustin/M -ah -Ahab/M -Aharon/M -aha/S -ahead -ahem/S -Ahmadabad -Ahmad/M -Ahmed/M -ahoy/S -Ahriman/M -AI -Aida/M -Aidan/M -aided/U -aide/MS -aider/M -AIDS -aid/ZGDRS -Aigneis/M -aigrette/SM -Aiken/M -Aila/M -Ailbert/M -Ailee/M -Aileen/M -Aile/M -Ailene/M -aileron/MS -Ailey/M -Ailina/M -Aili/SM -ail/LSDG -ailment/SM -Ailsun/M -Ailyn/M -Aimee/M -Aime/M -aimer/M -Aimil/M -aimlessness/MS -aimless/YP -aim/ZSGDR -Aindrea/M -Ainslee/M -Ainsley/M -Ainslie/M -ain't -Ainu/M -airbag/MS -airbase/S -airborne -airbrush/SDMG -Airbus/M -airbus/SM -aircraft/MS -aircrew/M -airdrop/MS -airdropped -airdropping -Airedale/SM -Aires -airfare/S -airfield/MS -airflow/SM -airfoil/MS -airframe/MS -airfreight/SGD -airhead/MS -airily -airiness/MS -airing/M -airlessness/S -airless/P -airlift/MDSG -airliner/M -airline/SRMZ -airlock/MS -airmail/DSG -airman/M -airmass -air/MDRTZGJS -airmen -airpark -airplane/SM -airplay/S -airport/MS -airship/MS -airsickness/SM -airsick/P -airspace/SM -airspeed/SM -airstrip/MS -airtightness/M -airtight/P -airtime -airwaves -airway/SM -airworthiness/SM -airworthy/PTR -airy/PRT -Aisha/M -aisle/DSGM -aitch/MS -ajar -Ajax/M -Ajay/M -AK -aka -Akbar/M -Akihito/M -akimbo -Akim/M -akin -Akita/M -Akkad/M -Akron/M -Aksel/M -AL -Alabama/M -Alabaman/S -Alabamian/MS -alabaster/MS -alack/S -alacrity/SM -Aladdin/M -Alaine/M -Alain/M -Alair/M -Alameda/M -Alamogordo/M -Alamo/SM -ala/MS -Ala/MS -Alanah/M -Alana/M -Aland/M -Alane/M -alanine/M -Alan/M -Alanna/M -Alano/M -Alanson/M -Alard/M -Alaric/M -Alar/M -alarming/Y -alarmist/MS -alarm/SDG -Alasdair/M -Alaska/M -Alaskan/S -alas/S -Alastair/M -Alasteir/M -Alaster/M -Alayne/M -albacore/SM -alba/M -Alba/M -Albania/M -Albanian/SM -Albany/M -albatross/SM -albedo/M -Albee/M -albeit -Alberich/M -Alberik/M -Alberio/M -Alberta/M -Albertan/S -Albertina/M -Albertine/M -Albert/M -Alberto/M -Albie/M -Albigensian -Albina/M -albinism/SM -albino/MS -Albion/M -Albireo/M -alb/MS -Albrecht/M -albumen/M -albumin/MS -albuminous -album/MNXS -Albuquerque/M -Alcatraz/M -Alcestis/M -alchemical -alchemist/SM -alchemy/MS -Alcibiades/M -Alcmena/M -Alcoa/M -alcoholically -alcoholic/MS -alcoholism/SM -alcohol/MS -Alcott/M -alcove/MSD -Alcuin/M -Alcyone/M -Aldan/M -Aldebaran/M -aldehyde/M -Alden/M -Alderamin/M -alderman/M -aldermen -alder/SM -alderwoman -alderwomen -Aldin/M -Aldis/M -Aldo/M -Aldon/M -Aldous/M -Aldrich/M -Aldric/M -Aldridge/M -Aldrin/M -Aldus/M -Aldwin/M -aleatory -Alecia/M -Aleck/M -Alec/M -Aleda/M -alee -Aleece/M -Aleen/M -alehouse/MS -Aleichem/M -Alejandra/M -Alejandrina/M -Alejandro/M -Alejoa/M -Aleksandr/M -Alembert/M -alembic/SM -ale/MVS -Alena/M -Alene/M -aleph/M -Aleppo/M -Aler/M -alerted/Y -alertness/MS -alert/STZGPRDY -Alessandra/M -Alessandro/M -Aleta/M -Alethea/M -Aleutian/S -Aleut/SM -alewife/M -alewives -Alexa/M -Alexander/SM -Alexandra/M -Alexandre/M -Alexandria/M -Alexandrian/S -Alexandrina/M -Alexandr/M -Alexandro/MS -Alexei/M -Alexia/M -Alexina/M -Alexine/M -Alexio/M -Alexi/SM -Alex/M -alfalfa/MS -Alfa/M -Alfie/M -Alfi/M -Alf/M -Alfonse/M -Alfons/M -Alfonso/M -Alfonzo/M -Alford/M -Alfreda/M -Alfred/M -Alfredo/M -alfresco -Alfy/M -algae -algaecide -algal -alga/M -algebraic -algebraical/Y -algebraist/M -algebra/MS -Algenib/M -Algeria/M -Algerian/MS -Alger/M -Algernon/M -Algieba/M -Algiers/M -alginate/SM -ALGOL -Algol/M -Algonquian/SM -Algonquin/SM -algorithmic -algorithmically -algorithm/MS -Alhambra/M -Alhena/M -Alia/M -alias/GSD -alibi/MDSG -Alica/M -Alicea/M -Alice/M -Alicia/M -Alick/M -Alic/M -Alida/M -Alidia/M -Alie/M -alienable/IU -alienate/SDNGX -alienation/M -alienist/MS -alien/RDGMBS -Alighieri/M -alight/DSG -aligned/U -aligner/SM -align/LASDG -alignment/SAM -Alika/M -Alikee/M -alikeness/M -alike/U -alimentary -aliment/SDMG -alimony/MS -Ali/MS -Alina/M -Aline/M -alinement's -Alioth/M -aliquot/S -Alisa/M -Alisander/M -Alisha/M -Alison/M -Alissa/M -Alistair/M -Alister/M -Alisun/M -aliveness/MS -alive/P -Alix/M -aliyah/M -aliyahs -Aliza/M -Alkaid/M -alkalies -alkali/M -alkaline -alkalinity/MS -alkalize/SDG -alkaloid/MS -alkyd/S -alkyl/M -Allahabad/M -Allah/M -Alla/M -Allan/M -Allard/M -allay/GDS -Allayne/M -Alleen/M -allegation/SM -alleged/Y -allege/SDG -Allegheny/MS -allegiance/SM -allegiant -allegoric -allegoricalness/M -allegorical/YP -allegorist/MS -allegory/SM -Allegra/M -allegretto/MS -allegri -allegro/MS -allele/SM -alleluia/S -allemande/M -Allendale/M -Allende/M -Allene/M -Allen/M -Allentown/M -allergenic -allergen/MS -allergic -allergically -allergist/MS -allergy/MS -alleviate/SDVGNX -alleviation/M -alleviator/MS -Alley/M -alley/MS -Alleyn/M -alleyway/MS -Allhallows -alliance/MS -Allianora/M -Allie/M -allier -allies/M -alligator/DMGS -Alli/MS -Allina/M -Allin/M -Allison/M -Allissa/M -Allister/M -Allistir/M -alliterate/XVNGSD -alliteration/M -alliterative/Y -Allix/M -allocable/U -allocatable -allocate/ACSDNGX -allocated/U -allocation/AMC -allocative -allocator/AMS -allophone/MS -allophonic -allotment/MS -allotments/A -allotrope/M -allotropic -allots/A -allot/SDL -allotted/A -allotter/M -allotting/A -allover/S -allowableness/M -allowable/P -allowably -allowance/GSDM -allowed/Y -allowing/E -allow/SBGD -allows/E -alloyed/U -alloy/SGMD -all/S -allspice/MS -Allstate/M -Allsun/M -allude/GSD -allure/GLSD -allurement/SM -alluring/Y -allusion/MS -allusiveness/MS -allusive/PY -alluvial/S -alluvions -alluvium/MS -Allx/M -ally/ASDG -Allyce/M -Ally/MS -Allyn/M -Allys -Allyson/M -alma -Almach/M -Almaden/M -almagest -Alma/M -almanac/MS -Almaty/M -Almeda/M -Almeria/M -Almeta/M -almightiness/M -Almighty/M -almighty/P -Almira/M -Almire/M -almond/SM -almoner/MS -almost -Al/MRY -alms/A -almshouse/SM -almsman/M -alnico -Alnilam/M -Alnitak/M -aloe/MS -aloft -aloha/SM -Aloin/M -Aloise/M -Aloisia/M -aloneness/M -alone/P -along -alongshore -alongside -Alon/M -Alonso/M -Alonzo/M -aloofness/MS -aloof/YP -aloud -Aloysia/M -Aloysius/M -alpaca/SM -Alpert/M -alphabetical/Y -alphabetic/S -alphabetization/SM -alphabetizer/M -alphabetize/SRDGZ -alphabet/SGDM -alpha/MS -alphanumerical/Y -alphanumeric/S -Alphard/M -Alphecca/M -Alpheratz/M -Alphonse/M -Alphonso/M -Alpine -alpine/S -alp/MS -Alps -already -Alric/M -alright -Alsace/M -Alsatian/MS -also -Alsop/M -Alston/M -Altaic/M -Altai/M -Altair/M -Alta/M -altar/MS -altarpiece/SM -alterable/UI -alteration/MS -altercate/NX -altercation/M -altered/U -alternate/SDVGNYX -alternation/M -alternativeness/M -alternative/YMSP -alternator/MS -alter/RDZBG -Althea/M -although -altimeter/SM -Altiplano/M -altitude/SM -altogether/S -Alton/M -alto/SM -Altos/M -altruism/SM -altruistic -altruistically -altruist/SM -alt/RZS -ALU -Aludra/M -Aluin/M -Aluino/M -alumina/SM -aluminum/MS -alumnae -alumna/M -alumni -alumnus/MS -alum/SM -alundum -Alva/M -Alvan/M -Alvarado/M -Alvarez/M -Alvaro/M -alveolar/Y -alveoli -alveolus/M -Alvera/M -Alverta/M -Alvie/M -Alvina/M -Alvinia/M -Alvin/M -Alvira/M -Alvis/M -Alvy/M -alway/S -Alwin/M -Alwyn/M -Alyce/M -Alyda/M -Alyosha/M -Alysa/M -Alyse/M -Alysia/M -Alys/M -Alyson/M -Alyss -Alyssa/M -Alzheimer/M -AM -AMA -Amabelle/M -Amabel/M -Amadeus/M -Amado/M -amain -Amalea/M -Amalee/M -Amaleta/M -amalgamate/VNGXSD -amalgamation/M -amalgam/MS -Amalia/M -Amalie/M -Amalita/M -Amalle/M -Amanda/M -Amandie/M -Amandi/M -Amandy/M -amanuenses -amanuensis/M -Amara/M -amaranth/M -amaranths -amaretto/S -Amargo/M -Amarillo/M -amaryllis/MS -am/AS -amasser/M -amass/GRSD -Amata/M -amateurishness/MS -amateurish/YP -amateurism/MS -amateur/SM -Amati/M -amatory -amazed/Y -amaze/LDSRGZ -amazement/MS -amazing/Y -amazonian -Amazonian -amazon/MS -Amazon/SM -ambassadorial -ambassador/MS -ambassadorship/MS -ambassadress/SM -ambergris/SM -Amberly/M -amber/MS -Amber/YM -ambiance/MS -ambidexterity/MS -ambidextrous/Y -ambience's -ambient/S -ambiguity/MS -ambiguously/U -ambiguousness/M -ambiguous/YP -ambition/GMDS -ambitiousness/MS -ambitious/PY -ambit/M -ambivalence/SM -ambivalent/Y -amble/GZDSR -Amble/M -ambler/M -ambrose -Ambrose/M -ambrosial/Y -ambrosia/SM -Ambrosi/M -Ambrosio/M -Ambrosius/M -Ambros/M -ambulance/MS -ambulant/S -ambulate/DSNGX -ambulation/M -ambulatory/S -Ambur/M -ambuscade/MGSRD -ambuscader/M -ambusher/M -ambush/MZRSDG -Amby/M -Amdahl/M -ameba's -Amelia/M -Amelie/M -Amelina/M -Ameline/M -ameliorate/XVGNSD -amelioration/M -Amelita/M -amenability/SM -amenably -amended/U -amender/M -amendment/SM -amen/DRGTSB -amend/SBRDGL -amends/M -Amenhotep/M -amenity/MS -amenorrhea/M -Amerada/M -Amerasian/S -amercement/MS -amerce/SDLG -Americana/M -Americanism/SM -Americanization/SM -americanized -Americanize/SDG -American/MS -America/SM -americium/MS -Amerigo/M -Amerindian/MS -Amerind/MS -Amer/M -Amery/M -Ameslan/M -Ame/SM -amethystine -amethyst/MS -Amharic/M -Amherst/M -amiability/MS -amiableness/M -amiable/RPT -amiably -amicability/SM -amicableness/M -amicable/P -amicably -amide/SM -amid/S -amidships -amidst -Amie/M -Amiga/M -amigo/MS -Amii/M -Amil/M -Ami/M -amines -aminobenzoic -amino/M -amir's -Amish -amiss -Amitie/M -Amity/M -amity/SM -Ammamaria/M -Amman/M -Ammerman/M -ammeter/MS -ammo/MS -ammoniac -ammonia/MS -ammonium/M -Am/MR -ammunition/MS -amnesiac/MS -amnesia/SM -amnesic/S -amnesty/GMSD -amniocenteses -amniocentesis/M -amnion/SM -amniotic -Amoco/M -amoeba/SM -amoebic -amoeboid -amok/MS -among -amongst -Amontillado/M -amontillado/MS -amorality/MS -amoral/Y -amorousness/SM -amorous/PY -amorphousness/MS -amorphous/PY -amortization/SUM -amortized/U -amortize/SDG -Amory/M -Amos -amount/SMRDZG -amour/MS -Amparo/M -amperage/SM -Ampere/M -ampere/MS -ampersand/MS -Ampex/M -amphetamine/MS -amphibian/SM -amphibiousness/M -amphibious/PY -amphibology/M -amphitheater/SM -amphorae -amphora/M -ampleness/M -ample/PTR -amplification/M -amplifier/M -amplify/DRSXGNZ -amplitude/MS -ampoule's -amp/SGMDY -ampule/SM -amputate/DSNGX -amputation/M -amputee/SM -Amritsar/M -ams -Amsterdam/M -amt -Amtrak/M -amuck's -amulet/SM -Amundsen/M -Amur/M -amused/Y -amuse/LDSRGVZ -amusement/SM -amuser/M -amusingness/M -amusing/YP -Amway/M -Amye/M -amylase/MS -amyl/M -Amy/M -Anabal/M -Anabaptist/SM -Anabella/M -Anabelle/M -Anabel/M -anabolic -anabolism/MS -anachronism/SM -anachronistic -anachronistically -Anacin/M -anaconda/MS -Anacreon/M -anaerobe/SM -anaerobic -anaerobically -anaglyph/M -anagrammatic -anagrammatically -anagrammed -anagramming -anagram/MS -Anaheim/M -Analects/M -analgesia/MS -analgesic/S -Analiese/M -Analise/M -Anallese/M -Anallise/M -analogical/Y -analogize/SDG -analogousness/MS -analogous/YP -analog/SM -analogue/SM -analogy/MS -anal/Y -analysand/MS -analyses -analysis/AM -analyst/SM -analytical/Y -analyticity/S -analytic/S -analytics/M -analyzable/U -analyze/DRSZGA -analyzed/U -analyzer/M -Ana/M -anamorphic -Ananias/M -anapaest's -anapestic/S -anapest/SM -anaphora/M -anaphoric -anaphorically -anaplasmosis/M -anarchic -anarchical/Y -anarchism/MS -anarchistic -anarchist/MS -anarchy/MS -Anastasia/M -Anastasie/M -Anastassia/M -anastigmatic -anastomoses -anastomosis/M -anastomotic -anathema/MS -anathematize/GSD -Anatola/M -Anatole/M -Anatolia/M -Anatolian -Anatollo/M -Anatol/M -anatomic -anatomical/YS -anatomist/MS -anatomize/GSD -anatomy/MS -Anaxagoras/M -Ancell/M -ancestor/SMDG -ancestral/Y -ancestress/SM -ancestry/SM -Anchorage/M -anchorage/SM -anchored/U -anchorite/MS -anchoritism/M -anchorman/M -anchormen -anchorpeople -anchorperson/S -anchor/SGDM -anchorwoman -anchorwomen -anchovy/MS -ancientness/MS -ancient/SRYTP -ancillary/S -an/CS -Andalusia/M -Andalusian -Andaman -andante/S -and/DZGS -Andean/M -Andeee/M -Andee/M -Anderea/M -Andersen/M -Anders/N -Anderson/M -Andes -Andie/M -Andi/M -andiron/MS -Andonis/M -Andorra/M -Andover/M -Andra/SM -Andrea/MS -Andreana/M -Andree/M -Andrei/M -Andrej/M -Andre/SM -Andrew/MS -Andrey/M -Andria/M -Andriana/M -Andriette/M -Andris -androgenic -androgen/SM -androgynous -androgyny/SM -android/MS -Andromache/M -Andromeda/M -Andropov/M -Andros/M -Andrus/M -Andy/M -anecdotal/Y -anecdote/SM -anechoic -anemia/SM -anemically -anemic/S -anemometer/MS -anemometry/M -anemone/SM -anent -aneroid -Anestassia/M -anesthesia/MS -anesthesiologist/MS -anesthesiology/SM -anesthetically -anesthetic/SM -anesthetist/MS -anesthetization/SM -anesthetizer/M -anesthetize/ZSRDG -Anet/M -Anetta/M -Anette/M -Anett/M -aneurysm/MS -anew -Angara/M -Angela/M -Angeleno/SM -Angele/SM -angelfish/SM -Angelia/M -angelic -angelical/Y -Angelica/M -angelica/MS -Angelico/M -Angelika/M -Angeli/M -Angelina/M -Angeline/M -Angelique/M -Angelita/M -Angelle/M -Angel/M -angel/MDSG -Angelo/M -Angelou/M -Ange/M -anger/GDMS -Angevin/M -Angie/M -Angil/M -angina/MS -angiography -angioplasty/S -angiosperm/MS -Angkor/M -angle/GMZDSRJ -angler/M -Angles -angleworm/MS -Anglia/M -Anglicanism/MS -Anglican/MS -Anglicism/SM -Anglicization/MS -anglicize/SDG -Anglicize/SDG -angling/M -Anglo/MS -Anglophile/SM -Anglophilia/M -Anglophobe/MS -Anglophobia/M -Angola/M -Angolan/S -angora/MS -Angora/MS -angrily -angriness/M -angry/RTP -angst/MS -ngstrm/M -angstrom/MS -Anguilla/M -anguish/DSMG -angularity/MS -angular/Y -Angus/M -Angy/M -Anheuser/M -anhydride/M -anhydrite/M -anhydrous/Y -Aniakchak/M -Ania/M -Anibal/M -Anica/M -aniline/SM -animadversion/SM -animadvert/DSG -animalcule/MS -animal/MYPS -animated/A -animatedly -animately/I -animateness/MI -animates/A -animate/YNGXDSP -animating/A -animation/AMS -animator/SM -animism/SM -animistic -animist/S -animized -animosity/MS -animus/SM -anionic/S -anion/MS -aniseed/MS -aniseikonic -anise/MS -anisette/SM -anisotropic -anisotropy/MS -Anissa/M -Anita/M -Anitra/M -Anjanette/M -Anjela/M -Ankara/M -ankh/M -ankhs -anklebone/SM -ankle/GMDS -anklet/MS -Annabal/M -Annabela/M -Annabella/M -Annabelle/M -Annabell/M -Annabel/M -Annadiana/M -Annadiane/M -Annalee/M -Annaliese/M -Annalise/M -annalist/MS -annal/MNS -Anna/M -Annamaria/M -Annamarie/M -Annapolis/M -Annapurna/M -anneal/DRSZG -annealer/M -Annecorinne/M -annelid/MS -Anneliese/M -Annelise/M -Anne/M -Annemarie/M -Annetta/M -Annette/M -annexation/SM -annexe/M -annex/GSD -Annice/M -Annie/M -annihilate/XSDVGN -annihilation/M -annihilator/MS -Anni/MS -Annissa/M -anniversary/MS -Ann/M -Annmaria/M -Annmarie/M -Annnora/M -Annora/M -annotated/U -annotate/VNGXSD -annotation/M -annotator/MS -announced/U -announcement/SM -announcer/M -announce/ZGLRSD -annoyance/MS -annoyer/M -annoying/Y -annoy/ZGSRD -annualized -annual/YS -annuitant/MS -annuity/MS -annular/YS -annuli -annulled -annulling -annulment/MS -annul/SL -annulus/M -annum -annunciate/XNGSD -annunciation/M -Annunciation/S -annunciator/SM -Anny/M -anode/SM -anodic -anodize/GDS -anodyne/SM -anoint/DRLGS -anointer/M -anointment/SM -anomalousness/M -anomalous/YP -anomaly/MS -anomic -anomie/M -anon/S -anonymity/MS -anonymousness/M -anonymous/YP -anopheles/M -anorak/SM -anorectic/S -anorexia/SM -anorexic/S -another/M -Anouilh/M -Ansell/M -Ansel/M -Anselma/M -Anselm/M -Anselmo/M -Anshan/M -ANSI/M -Ansley/M -ans/M -Anson/M -Anstice/M -answerable/U -answered/U -answerer/M -answer/MZGBSDR -antacid/MS -Antaeus/M -antagonism/MS -antagonistic -antagonistically -antagonist/MS -antagonized/U -antagonize/GZRSD -antagonizing/U -Antananarivo/M -antarctic -Antarctica/M -Antarctic/M -Antares -anteater/MS -antebellum -antecedence/MS -antecedent/SMY -antechamber/SM -antedate/GDS -antediluvian/S -anteing -antelope/MS -ante/MS -antenatal -antennae -antenna/MS -anterior/SY -anteroom/SM -ant/GSMD -Anthea/M -Anthe/M -anthem/MGDS -anther/MS -Anthia/M -Anthiathia/M -anthill/S -anthologist/MS -anthologize/GDS -anthology/SM -Anthony/M -anthraces -anthracite/MS -anthrax/M -anthropic -anthropocentric -anthropogenic -anthropoid/S -anthropological/Y -anthropologist/MS -anthropology/SM -anthropometric/S -anthropometry/M -anthropomorphic -anthropomorphically -anthropomorphism/SM -anthropomorphizing -anthropomorphous -antiabortion -antiabortionist/S -antiaircraft -antibacterial/S -antibiotic/SM -antibody/MS -anticancer -Antichrist/MS -anticipated/U -anticipate/XVGNSD -anticipation/M -anticipative/Y -anticipatory -anticked -anticking -anticlerical/S -anticlimactic -anticlimactically -anticlimax/SM -anticline/SM -anticlockwise -antic/MS -anticoagulant/S -anticoagulation/M -anticommunism/SM -anticommunist/SM -anticompetitive -anticyclone/MS -anticyclonic -antidemocratic -antidepressant/SM -antidisestablishmentarianism/M -antidote/DSMG -Antietam/M -antifascist/SM -antiformant -antifreeze/SM -antifundamentalist/M -antigenic -antigenicity/SM -antigen/MS -antigone -Antigone/M -Antigua/M -antiheroes -antihero/M -antihistamine/MS -antihistorical -antiknock/MS -antilabor -Antillean -Antilles -antilogarithm/SM -antilogs -antimacassar/SM -antimalarial/S -antimatter/SM -antimicrobial/S -antimissile/S -antimony/SM -anting/M -Antin/M -antinomian -antinomy/M -antinuclear -Antioch/M -antioxidant/MS -antiparticle/SM -Antipas/M -antipasti -antipasto/MS -antipathetic -antipathy/SM -antipersonnel -antiperspirant/MS -antiphonal/SY -antiphon/SM -antipodal/S -antipodean/S -antipode/MS -Antipodes -antipollution/S -antipoverty -antiquarianism/MS -antiquarian/MS -antiquary/SM -antiquate/NGSD -antiquation/M -antique/MGDS -antiquity/SM -antiredeposition -antiresonance/M -antiresonator -anti/S -antisemitic -antisemitism/M -antisepses -antisepsis/M -antiseptically -antiseptic/S -antiserum/SM -antislavery/S -antisocial/Y -antispasmodic/S -antisubmarine -antisymmetric -antisymmetry -antitank -antitheses -antithesis/M -antithetic -antithetical/Y -antithyroid -antitoxin/MS -antitrust/MR -antivenin/MS -antiviral/S -antivivisectionist/S -antiwar -antler/SDM -Antofagasta/M -Antoine/M -Antoinette/M -Antonella/M -Antone/M -Antonetta/M -Antonia/M -Antonie/M -Antonietta/M -Antoni/M -Antonina/M -Antonin/M -Antonino/M -Antoninus/M -Antonio/M -Antonius/M -Anton/MS -Antonovics/M -Antony/M -antonymous -antonym/SM -antral -antsy/RT -Antwan/M -Antwerp/M -Anubis/M -anus/SM -anvil/MDSG -anxiety/MS -anxiousness/SM -anxious/PY -any -Anya/M -anybody/S -anyhow -Any/M -anymore -anyone/MS -anyplace -anything/S -anytime -anyway/S -anywhere/S -anywise -AOL/M -aorta/MS -aortic -AP -apace -apache/MS -Apache/MS -Apalachicola/M -apartheid/SM -apart/LP -apartment/MS -apartness/M -apathetic -apathetically -apathy/SM -apatite/MS -APB -aped/A -apelike -ape/MDRSG -Apennines -aper/A -aperiodic -aperiodically -aperiodicity/M -aperitif/S -aperture/MDS -apex/MS -aphasia/SM -aphasic/S -aphelia -aphelion/SM -aphid/MS -aphonic -aphorism/MS -aphoristic -aphoristically -aphrodisiac/SM -Aphrodite/M -Apia/M -apiarist/SM -apiary/SM -apical/YS -apices's -apiece -apishness/M -apish/YP -aplenty -aplomb/SM -APO -Apocalypse/M -apocalypse/MS -apocalyptic -apocryphalness/M -apocryphal/YP -apocrypha/M -Apocrypha/M -apogee/MS -apolar -apolitical/Y -Apollinaire/M -Apollonian -Apollo/SM -apologetically/U -apologetic/S -apologetics/M -apologia/SM -apologist/MS -apologize/GZSRD -apologizer/M -apologizes/A -apologizing/U -apology/MS -apoplectic -apoplexy/SM -apostasy/SM -apostate/SM -apostatize/DSG -apostleship/SM -apostle/SM -apostolic -apostrophe/SM -apostrophized -apothecary/MS -apothegm/MS -apotheoses -apotheosis/M -apotheosized -apotheosizes -apotheosizing -Appalachia/M -Appalachian/MS -appalling/Y -appall/SDG -Appaloosa/MS -appaloosa/S -appanage/M -apparatus/SM -apparel/SGMD -apparency -apparently/I -apparentness/M -apparent/U -apparition/SM -appealer/M -appealing/UY -appeal/SGMDRZ -appear/AEGDS -appearance/AMES -appearer/S -appease/DSRGZL -appeased/U -appeasement/MS -appeaser/M -appellant/MS -appellate/VNX -appellation/M -appellative/MY -appendage/MS -appendectomy/SM -appendices -appendicitis/SM -appendix/SM -append/SGZDR -appertain/DSG -appetite/MVS -appetizer/SM -appetizing/YU -Appia/M -Appian/M -applauder/M -applaud/ZGSDR -applause/MS -applecart/M -applejack/MS -Apple/M -apple/MS -applesauce/SM -Appleseed/M -Appleton/M -applet/S -appliance/SM -applicabilities -applicability/IM -applicable/I -applicably -applicant/MS -applicate/V -application/MA -applicative/Y -applicator/MS -applier/SM -appliqud -appliqu/MSG -apply/AGSDXN -appointee/SM -appoint/ELSADG -appointer/MS -appointive -appointment/ASEM -Appolonia/M -Appomattox/M -apportion/GADLS -apportionment/SAM -appose/SDG -appositeness/MS -apposite/XYNVP -apposition/M -appositive/SY -appraisal/SAM -appraised/A -appraisees -appraiser/M -appraises/A -appraise/ZGDRS -appraising/Y -appreciable/I -appreciably/I -appreciated/U -appreciate/XDSNGV -appreciation/M -appreciativeness/MI -appreciative/PIY -appreciator/MS -appreciatory -apprehend/DRSG -apprehender/M -apprehensible -apprehension/SM -apprehensiveness/SM -apprehensive/YP -apprentice/DSGM -apprenticeship/SM -apprise/DSG -apprizer/SM -apprizingly -apprizings -approachability/UM -approachable/UI -approach/BRSDZG -approacher/M -approbate/NX -approbation/EMS -appropriable -appropriated/U -appropriately/I -appropriateness/SMI -appropriate/XDSGNVYTP -appropriation/M -appropriator/SM -approval/ESM -approve/DSREG -approved/U -approver's/E -approver/SM -approving/YE -approx -approximate/XGNVYDS -approximation/M -approximative/Y -appurtenance/MS -appurtenant/S -APR -apricot/MS -Aprilette/M -April/MS -Apr/M -apron/SDMG -apropos -apse/MS -apsis/M -apter -aptest -aptitude/SM -aptness/SMI -aptness's/U -apt/UPYI -Apuleius/M -aquaculture/MS -aqualung/SM -aquamarine/SM -aquanaut/SM -aquaplane/GSDM -aquarium/MS -Aquarius/MS -aqua/SM -aquatically -aquatic/S -aquavit/SM -aqueduct/MS -aqueous/Y -aquiculture's -aquifer/SM -Aquila/M -aquiline -Aquinas/M -Aquino/M -Aquitaine/M -AR -Arabela/M -Arabele/M -Arabella/M -Arabelle/M -Arabel/M -arabesque/SM -Arabia/M -Arabian/MS -Arabic/M -arability/MS -Arabist/MS -arable/S -Arab/MS -Araby/M -Araceli/M -arachnid/MS -arachnoid/M -arachnophobia -Arafat/M -Araguaya/M -Araldo/M -Aral/M -Ara/M -Aramaic/M -Aramco/M -Arapahoes -Arapahoe's -Arapaho/MS -Ararat/M -Araucanian/M -Arawakan/M -Arawak/M -arbiter/MS -arbitrage/GMZRSD -arbitrager/M -arbitrageur/S -arbitrament/MS -arbitrarily -arbitrariness/MS -arbitrary/P -arbitrate/SDXVNG -arbitration/M -arbitrator/SM -arbor/DMS -arboreal/Y -arbores -arboretum/MS -arborvitae/MS -arbutus/SM -ARC -arcade/SDMG -Arcadia/M -Arcadian -arcana/M -arcane/P -arc/DSGM -archaeological/Y -archaeologist/SM -archaically -archaic/P -Archaimbaud/M -archaism/SM -archaist/MS -archaize/GDRSZ -archaizer/M -Archambault/M -archangel/SM -archbishopric/SM -archbishop/SM -archdeacon/MS -archdiocesan -archdiocese/SM -archduchess/MS -archduke/MS -Archean -archenemy/SM -archeologist's -archeology/MS -archer/M -Archer/M -archery/MS -archetypal -archetype/SM -archfiend/SM -archfool -Archibald/M -Archibaldo/M -Archibold/M -Archie/M -archiepiscopal -Archimedes/M -arching/M -archipelago/SM -architect/MS -architectonic/S -architectonics/M -architectural/Y -architecture/SM -architrave/MS -archival -archive/DRSGMZ -archived/U -archivist/MS -Arch/MR -archness/MS -arch/PGVZTMYDSR -archway/SM -Archy/M -arclike -ARCO/M -arcsine -arctangent -Arctic/M -arctic/S -Arcturus/M -Ardabil -Arda/MH -Ardath/M -Ardeen/M -Ardelia/M -Ardelis/M -Ardella/M -Ardelle/M -ardency/M -Ardene/M -Ardenia/M -Arden/M -ardent/Y -Ardine/M -Ardisj/M -Ardis/M -Ardith/M -ardor/SM -Ardra/M -arduousness/SM -arduous/YP -Ardyce/M -Ardys -Ardyth/M -areal -area/SM -areawide -are/BS -Arel/M -arenaceous -arena/SM -aren't -Arequipa/M -Ares -Aretha/M -Argentina/M -Argentinean/S -Argentine/SM -Argentinian/S -argent/MS -arginine/MS -Argonaut/MS -argonaut/S -argon/MS -Argonne/M -Argo/SM -argosy/SM -argot/SM -arguable/IU -arguably/IU -argue/DSRGZ -arguer/M -argumentation/SM -argumentativeness/MS -argumentative/YP -argument/SM -Argus/M -argyle/S -Ariadne/M -Ariana/M -Arianism/M -Arianist/SM -aria/SM -Aridatha/M -aridity/SM -aridness/M -arid/TYRP -Ariela/M -Ariella/M -Arielle/M -Ariel/M -Arie/SM -Aries/S -aright -Ari/M -Arin/M -Ario/M -Ariosto/M -arise/GJSR -arisen -Aristarchus/M -Aristides -aristocracy/SM -aristocratic -aristocratically -aristocrat/MS -Aristophanes/M -Aristotelean -Aristotelian/M -Aristotle/M -arithmetical/Y -arithmetician/SM -arithmetic/MS -arithmetize/SD -Arius/M -Ariz/M -Arizona/M -Arizonan/S -Arizonian/S -Arjuna/M -Arkansan/MS -Arkansas/M -Arkhangelsk/M -Ark/M -ark/MS -Arkwright/M -Arlana/M -Arlan/M -Arlee/M -Arleen/M -Arlena/M -Arlene/M -Arlen/M -Arleta/M -Arlette/M -Arley/M -Arleyne/M -Arlie/M -Arliene/M -Arlina/M -Arlinda/M -Arline/M -Arlington/M -Arlin/M -Arluene/M -Arly/M -Arlyne/M -Arlyn/M -Armada/M -armada/SM -armadillo/MS -Armageddon/SM -Armagnac/M -armament/EAS -armament's/E -Armand/M -Armando/M -Arman/M -arm/ASEDG -Armata/M -armature/MGSD -armband/SM -armchair/MS -Armco/M -armed/U -Armenia/M -Armenian/MS -armer/MES -armful/SM -armhole/MS -arming/M -Arminius/M -Armin/M -armistice/MS -armless -armlet/SM -armload/M -Armonk/M -armored/U -armorer/M -armorial/S -armory/DSM -armor/ZRDMGS -Armour/M -armpit/MS -armrest/MS -arm's -Armstrong/M -Ar/MY -army/SM -Arnaldo/M -Arneb/M -Arne/M -Arney/M -Arnhem/M -Arnie/M -Arni/M -Arnold/M -Arnoldo/M -Arno/M -Arnuad/M -Arnulfo/M -Arny/M -aroma/SM -aromatherapist/S -aromatherapy/S -aromatically -aromaticity/M -aromaticness/M -aromatic/SP -Aron/M -arose -around -arousal/MS -aroused/U -arouse/GSD -ARPA/M -Arpanet/M -ARPANET/M -arpeggio/SM -arrack/M -Arragon/M -arraignment/MS -arraign/SDGL -arrangeable/A -arranged/EA -arrangement/AMSE -arranger/M -arranges/EA -arrange/ZDSRLG -arranging/EA -arrant/Y -arras/SM -arrayer -array/ESGMD -arrear/SM -arrest/ADSG -arrestee/MS -arrester/MS -arresting/Y -arrestor/MS -Arrhenius/M -arrhythmia/SM -arrhythmic -arrhythmical -Arri/M -arrival/MS -arriver/M -arrive/SRDG -arrogance/MS -arrogant/Y -arrogate/XNGDS -arrogation/M -Arron/M -arrowhead/SM -arrowroot/MS -arrow/SDMG -arroyo/MS -arr/TV -arsenal/MS -arsenate/M -arsenic/MS -arsenide/M -arsine/MS -arsonist/MS -arson/SM -Artair/M -Artaxerxes/M -artefact's -Arte/M -Artemas -Artemis/M -Artemus/M -arterial/SY -arteriolar -arteriole/SM -arterioscleroses -arteriosclerosis/M -artery/SM -artesian -artfulness/SM -artful/YP -Arther/M -arthritic/S -arthritides -arthritis/M -arthrogram/MS -arthropod/SM -arthroscope/S -arthroscopic -Arthurian -Arthur/M -artichoke/SM -article/GMDS -articulable/I -articular -articulated/EU -articulately/I -articulateness/IMS -articulates/I -articulate/VGNYXPSD -articulation/M -articulator/SM -articulatory -Artie/M -artifact/MS -artificer/M -artifice/ZRSM -artificiality/MS -artificialness/M -artificial/PY -artillerist -artilleryman/M -artillerymen -artillery/SM -artiness/MS -artisan/SM -artiste/SM -artistically/I -artistic/I -artist/MS -artistry/SM -artlessness/MS -artless/YP -Art/M -art/SM -artsy/RT -Artur/M -Arturo/M -Artus/M -artwork/MS -Arty/M -arty/TPR -Aruba/M -arum/MS -Arvie/M -Arvin/M -Arv/M -Arvy/M -Aryan/MS -Aryn/M -as -As -A's -Asa/M -Asama/M -asap -ASAP -asbestos/MS -Ascella/M -ascend/ADGS -ascendancy/MS -ascendant/SY -ascender/SM -Ascension/M -ascension/SM -ascent/SM -ascertain/DSBLG -ascertainment/MS -ascetically -asceticism/MS -ascetic/SM -ASCII -ascot/MS -ascribe/GSDB -ascription/MS -ascriptive -Ase/M -aseptically -aseptic/S -asexuality/MS -asexual/Y -Asgard/M -ashame/D -ashamed/UY -Ashanti/M -Ashbey/M -Ashby/M -ashcan/SM -Ashely/M -Asher/M -Asheville/M -Ashia/M -Ashien/M -Ashil/M -Ashkenazim -Ashkhabad/M -Ashla/M -Ashland/M -Ashlan/M -ashlar/GSDM -Ashlee/M -Ashleigh/M -Ashlen/M -Ashley/M -Ashlie/M -Ashli/M -Ashlin/M -Ashly/M -ashman/M -ash/MNDRSG -Ashmolean/M -Ash/MRY -ashore -ashram/SM -Ashton/M -ashtray/MS -Ashurbanipal/M -ashy/RT -Asia/M -Asian/MS -Asiatic/SM -aside/S -Asilomar/M -Asimov -asinine/Y -asininity/MS -askance -ask/DRZGS -asked/U -asker/M -askew/P -ASL -aslant -asleep -Asmara/M -asocial/S -Asoka/M -asparagus/MS -aspartame/S -ASPCA -aspect/SM -Aspell/M -aspen/M -Aspen/M -asperity/SM -asper/M -aspersion/SM -asphalt/MDRSG -asphodel/MS -asphyxia/MS -asphyxiate/GNXSD -asphyxiation/M -aspic/MS -Aspidiske/M -aspidistra/MS -aspirant/MS -aspirate/NGDSX -aspirational -aspiration/M -aspirator/SM -aspire/GSRD -aspirer/M -aspirin/SM -asplenium -asp/MNRXS -Asquith/M -Assad/M -assailable/U -assailant/SM -assail/BGDS -Assamese/M -Assam/M -assassinate/DSGNX -assassination/M -assassin/MS -assaulter/M -assaultive/YP -assault/SGVMDR -assayer/M -assay/SZGRD -assemblage/MS -assemble/ADSREG -assembled/U -assembler/EMS -assemblies/A -assembly/EAM -assemblyman/M -assemblymen -Assembly/MS -assemblywoman -assemblywomen -assent/SGMRD -assert/ADGS -asserter/MS -assertional -assertion/AMS -assertiveness/SM -assertive/PY -assess/BLSDG -assessed/A -assesses/A -assessment/SAM -assessor/MS -asset/SM -asseverate/XSDNG -asseveration/M -asshole/MS! -assiduity/SM -assiduousness/SM -assiduous/PY -assign/ALBSGD -assignation/MS -assigned/U -assignee/MS -assigner/MS -assignment/MAS -assignor/MS -assigns/CU -assimilate/VNGXSD -assimilationist/M -assimilation/M -Assisi/M -assistance/SM -assistantship/SM -assistant/SM -assisted/U -assister/M -assist/RDGS -assize/MGSD -ass/MNS -assn -assoc -associable -associated/U -associate/SDEXNG -associateship -associational -association/ME -associative/Y -associativity/S -associator/MS -assonance/SM -assonant/S -assorter/M -assort/LRDSG -assortment/SM -asst -assuaged/U -assuage/SDG -assumability -assumer/M -assume/SRDBJG -assuming/UA -assumption/SM -assumptive -assurance/AMS -assure/AGSD -assuredness/M -assured/PYS -assurer/SM -assuring/YA -Assyria/M -Assyrian/SM -Assyriology/M -Astaire/SM -Astarte/M -astatine/MS -aster/ESM -asteria -asterisked/U -asterisk/SGMD -astern -asteroidal -asteroid/SM -asthma/MS -asthmatic/S -astigmatic/S -astigmatism/SM -astir -astonish/GSDL -astonishing/Y -astonishment/SM -Aston/M -Astoria/M -Astor/M -astounding/Y -astound/SDG -astraddle -Astrakhan/M -astrakhan/SM -astral/SY -Astra/M -astray -astride -Astrid/M -astringency/SM -astringent/YS -Astrix/M -astrolabe/MS -astrologer/MS -astrological/Y -astrologist/M -astrology/SM -astronautical -astronautic/S -astronautics/M -astronaut/SM -astronomer/MS -astronomic -astronomical/Y -astronomy/SM -astrophysical -astrophysicist/SM -astrophysics/M -Astroturf/M -AstroTurf/S -Asturias/M -astuteness/MS -astute/RTYP -Asuncin/M -asunder -Aswan/M -asylum/MS -asymmetric -asymmetrical/Y -asymmetry/MS -asymptomatic -asymptomatically -asymptote/MS -asymptotically -asymptotic/Y -asynchronism/M -asynchronous/Y -asynchrony -at -Atacama/M -Atahualpa/M -Atalanta/M -Atari/M -Atatrk/M -atavism/MS -atavistic -atavist/MS -ataxia/MS -ataxic/S -atelier/SM -atemporal -ate/S -Athabasca/M -Athabascan's -Athabaskan/MS -Athabaska's -atheism/SM -atheistic -atheist/SM -Athena/M -Athene/M -Athenian/SM -Athens/M -atheroscleroses -atherosclerosis/M -athirst -athlete/MS -athletically -athleticism/M -athletic/S -athletics/M -athwart -atilt -Atkins/M -Atkinson/M -Atlanta/M -Atlante/MS -atlantes -Atlantic/M -Atlantis/M -atlas/SM -Atlas/SM -At/M -Atman -ATM/M -atmosphere/DSM -atmospherically -atmospheric/S -atoll/MS -atomically -atomicity/M -atomic/S -atomics/M -atomistic -atomization/SM -atomize/GZDRS -atomizer/M -atom/SM -atonality/MS -atonal/Y -atone/LDSG -atonement/SM -atop -ATP -Atreus/M -atria -atrial -Atria/M -atrium/M -atrociousness/SM -atrocious/YP -atrocity/SM -atrophic -atrophy/DSGM -atropine/SM -Atropos/M -Ats -attach/BLGZMDRS -attached/UA -attacher/M -attach/S -attachment/ASM -attacker/M -attack/GBZSDR -attainabilities -attainability/UM -attainableness/M -attainable/U -attainably/U -attain/AGSD -attainder/MS -attained/U -attainer/MS -attainment/MS -attar/MS -attempt/ADSG -attempter/MS -attendance/MS -attendant/SM -attended/U -attendee/SM -attender/M -attend/SGZDR -attentional -attentionality -attention/IMS -attentiveness/IMS -attentive/YIP -attenuated/U -attenuate/SDXGN -attenuation/M -attenuator/MS -attestation/SM -attested/U -attester/M -attest/GSDR -Attic -Attica/M -attic/MS -Attila/M -attire/SDG -attitude/MS -attitudinal/Y -attitudinize/SDG -Attlee/M -attn -Attn -attorney/SM -attractant/SM -attract/BSDGV -attraction/MS -attractivenesses -attractiveness/UM -attractive/UYP -attractor/MS -attributable/U -attribute/BVNGRSDX -attributed/U -attributer/M -attributional -attribution/M -attributive/SY -attrition/MS -Attucks -attune/SDG -atty -ATV/S -atwitter -Atwood/M -atypical/Y -Aube/M -Auberge/M -aubergine/MS -Auberon/M -Auberta/M -Aubert/M -Aubine/M -Aubree/M -Aubrette/M -Aubrey/M -Aubrie/M -Aubry/M -auburn/SM -Auckland/M -auctioneer/SDMG -auction/MDSG -audaciousness/SM -audacious/PY -audacity/MS -Auden/M -audibility/MSI -audible/I -audibles -audibly/I -Audie/M -audience/MS -Audi/M -audiogram/SM -audiological -audiologist/MS -audiology/SM -audiometer/MS -audiometric -audiometry/M -audiophile/SM -audio/SM -audiotape/S -audiovisual/S -audited/U -audition/MDSG -auditorium/MS -auditor/MS -auditory/S -audit/SMDVG -Audra/M -Audre/M -Audrey/M -Audrie/M -Audrye/M -Audry/M -Audubon/M -Audy/M -Auerbach/M -Augean -auger/SM -aught/S -Augie/M -Aug/M -augmentation/SM -augmentative/S -augment/DRZGS -augmenter/M -augur/GDMS -augury/SM -Augusta/M -Augustan/S -Auguste/M -Augustina/M -Augustine/M -Augustinian/S -Augustin/M -augustness/SM -Augusto/M -August/SM -august/STPYR -Augustus/M -Augy/M -auk/MS -Au/M -Aundrea/M -auntie/MS -aunt/MYS -aunty's -aural/Y -Aura/M -aura/SM -Aurea/M -Aurelea/M -Aurelia/M -Aurelie/M -Aurelio/M -Aurelius/M -Aurel/M -aureole/GMSD -aureomycin -Aureomycin/M -Auria/M -auric -auricle/SM -auricular -Aurie/M -Auriga/M -Aurilia/M -Aurlie/M -Auroora/M -auroral -Aurora/M -aurora/SM -Aurore/M -Aurthur/M -Auschwitz/M -auscultate/XDSNG -auscultation/M -auspice/SM -auspicious/IPY -auspiciousnesses -auspiciousness/IM -Aussie/MS -Austen/M -austereness/M -austere/TYRP -austerity/SM -Austina/M -Austine/M -Austin/SM -austral -Australasia/M -Australasian/S -australes -Australia/M -Australian/MS -Australis/M -australites -Australoid -Australopithecus/M -Austria/M -Austrian/SM -Austronesian -authentically -authenticated/U -authenticate/GNDSX -authentication/M -authenticator/MS -authenticity/MS -authentic/UI -author/DMGS -authoress/S -authorial -authoritarianism/MS -authoritarian/S -authoritativeness/SM -authoritative/PY -authority/SM -authorization/MAS -authorize/AGDS -authorized/U -authorizer/SM -authorizes/U -authorship/MS -autism/MS -autistic/S -autobahn/MS -autobiographer/MS -autobiographic -autobiographical/Y -autobiography/MS -autoclave/SDGM -autocollimator/M -autocorrelate/GNSDX -autocorrelation/M -autocracy/SM -autocratic -autocratically -autocrat/SM -autodial/R -autodidact/MS -autofluorescence -autograph/MDG -autographs -autoignition/M -autoimmune -autoimmunity/S -autoloader -automaker/S -automata's -automate/NGDSX -automatically -automatic/S -automation/M -automatism/SM -automatize/DSG -automaton/SM -automobile/GDSM -automorphism/SM -automotive -autonavigator/SM -autonomic/S -autonomous/Y -autonomy/MS -autopilot/SM -autopsy/MDSG -autoregressive -autorepeat/GS -auto/SDMG -autostart -autosuggestibility/M -autotransformer/M -autoworker/S -autumnal/Y -Autumn/M -autumn/MS -aux -auxiliary/S -auxin/MS -AV -availability/USM -availableness/M -available/U -availably -avail/BSZGRD -availing/U -avalanche/MGSD -Avalon/M -Ava/M -avant -avarice/SM -avariciousness/M -avaricious/PY -avast/S -avatar/MS -avaunt/S -avdp -Aveline/M -Ave/MS -avenged/U -avenger/M -avenge/ZGSRD -Aventine/M -Aventino/M -avenue/MS -average/DSPGYM -Averell/M -Averill/M -Averil/M -Avernus/M -averred -averrer -averring -Averroes/M -averseness/M -averse/YNXP -aversion/M -avers/V -avert/GSD -Averyl/M -Avery/M -ave/S -aves/C -Avesta/M -avg -avian/S -aviary/SM -aviate/NX -aviation/M -aviator/SM -aviatrices -aviatrix/SM -Avicenna/M -Avictor/M -avidity/MS -avid/TPYR -Avie/M -Avigdor/M -Avignon/M -Avila/M -avionic/S -avionics/M -Avior/M -Avis -avitaminoses -avitaminosis/M -Avivah/M -Aviva/M -Aviv/M -avocado/MS -avocational -avocation/SM -Avogadro/M -avoidable/U -avoidably/U -avoidance/SM -avoider/M -avoid/ZRDBGS -avoirdupois/MS -Avon/M -avouch/GDS -avowal/EMS -avowed/Y -avower/M -avow/GEDS -Avram/M -Avril/M -Avrit/M -Avrom/M -avuncular -av/ZR -AWACS -await/SDG -awake/GS -awakened/U -awakener/M -awakening/S -awaken/SADG -awarder/M -award/RDSZG -awareness/MSU -aware/TRP -awash -away/PS -aweigh -awe/SM -awesomeness/SM -awesome/PY -awestruck -awfuller -awfullest -awfulness/SM -awful/YP -aw/GD -awhile/S -awkwardness/MS -awkward/PRYT -awl/MS -awning/DM -awn/MDJGS -awoke -awoken -AWOL -awry/RT -ax/DRSZGM -axehead/S -Axel/M -Axe/M -axeman -axial/Y -axillary -axiological/Y -axiology/M -axiomatically -axiomatic/S -axiomatization/MS -axiomatize/GDS -axiom/SM -axion/SM -axis/SM -axle/MS -axletree/MS -Ax/M -axolotl/SM -axon/SM -ayah/M -ayahs -Ayala/M -ayatollah -ayatollahs -aye/MZRS -Ayers -Aylmar/M -Aylmer/M -Aymara/M -Aymer/M -Ayn/M -AZ -azalea/SM -Azania/M -Azazel/M -Azerbaijan/M -azimuthal/Y -azimuth/M -azimuths -Azores -Azov/M -AZT -Aztecan -Aztec/MS -azure/MS -BA -Baal/SM -baa/SDG -Babara/M -Babar's -Babbage/M -Babbette/M -Babbie/M -babbitt/GDS -Babbitt/M -babbler/M -babble/RSDGZ -Babb/M -Babcock/M -Babel/MS -babel/S -babe/SM -Babette/M -Babita/M -Babka/M -baboon/MS -Bab/SM -babushka/MS -babyhood/MS -babyish -Babylonia/M -Babylonian/SM -Babylon/MS -babysat -babysit/S -babysitter/S -babysitting -baby/TDSRMG -Bacall/M -Bacardi/M -baccalaureate/MS -baccarat/SM -bacchanalia -Bacchanalia/M -bacchanalian/S -bacchanal/SM -Bacchic -Bacchus/M -bachelorhood/SM -bachelor/SM -Bach/M -bacillary -bacilli -bacillus/MS -backache/SM -backarrow -backbencher/M -backbench/ZR -backbiter/M -backbite/S -backbitten -backbit/ZGJR -backboard/SM -backbone/SM -backbreaking -backchaining -backcloth/M -backdate/GDS -backdrop/MS -backdropped -backdropping -backed/U -backer/M -backfield/SM -backfill/SDG -backfire/GDS -backgammon/MS -background/SDRMZG -back/GZDRMSJ -backhanded/Y -backhander/M -backhand/RDMSZG -backhoe/S -backing/M -backlash/GRSDM -backless -backlogged -backlogging -backlog/MS -backorder -backpacker/M -backpack/ZGSMRD -backpedal/DGS -backplane/MS -backplate/SM -backrest/MS -backscatter/SMDG -backseat/S -backside/SM -backslapper/MS -backslapping/M -backslash/DSG -backslider/M -backslide/S -backslid/RZG -backspace/GSD -backspin/SM -backstabber/M -backstabbing -backstage -backstair/S -backstitch/GDSM -backstop/MS -backstopped -backstopping -backstreet/M -backstretch/SM -backstroke/GMDS -backtalk/S -backtrack/SDRGZ -backup/SM -Backus/M -backwardness/MS -backward/YSP -backwash/SDMG -backwater/SM -backwood/S -backwoodsman/M -backwoodsmen -backyard/MS -baconer/M -Bacon/M -bacon/SRM -bacterial/Y -bacteria/MS -bactericidal -bactericide/SM -bacteriologic -bacteriological -bacteriologist/MS -bacteriology/SM -bacterium/M -Bactria/M -badder -baddest -baddie/MS -bade -Baden/M -badge/DSRGMZ -badger/DMG -badinage/DSMG -badland/S -Badlands/M -badman/M -badmen -badminton/MS -badmouth/DG -badmouths -badness/SM -bad/PSNY -Baedeker/SM -Baez/M -Baffin/M -bafflement/MS -baffler/M -baffle/RSDGZL -baffling/Y -bagatelle/MS -bagel/SM -bagful/MS -baggageman -baggagemen -baggage/SM -bagged/M -bagger/SM -baggily -bagginess/MS -bagging/M -baggy/PRST -Baghdad/M -bagpiper/M -bagpipe/RSMZ -Bagrodia/MS -bag/SM -baguette/SM -Baguio/M -bah -Baha'i -Bahama/MS -Bahamanian/S -Bahamian/MS -Baha'ullah -Bahia/M -Bahrain/M -bahs -Baikal/M -Bailey/SM -bail/GSMYDRB -Bailie/M -bailiff/SM -bailiwick/MS -Baillie/M -Bail/M -bailout/MS -bailsman/M -bailsmen -Baily/M -Baird/M -bairn/SM -baiter/M -bait/GSMDR -baize/GMDS -Baja/M -baked/U -bakehouse/M -Bakelite/M -baker/M -Baker/M -Bakersfield/M -bakery/SM -bakeshop/S -bake/ZGJDRS -baking/M -baklava/M -baksheesh/SM -Baku/M -Bakunin/M -balaclava/MS -balalaika/MS -balanced/A -balancedness -balancer/MS -balance's -balance/USDG -Balanchine/M -Balboa/M -balboa/SM -balcony/MSD -balderdash/MS -Balder/M -baldfaced -Bald/MR -baldness/MS -bald/PYDRGST -baldric/SM -Balduin/M -Baldwin/M -baldy -Balearic/M -baleen/MS -balefuller -balefullest -balefulness/MS -baleful/YP -Bale/M -bale/MZGDRS -baler/M -Balfour/M -Bali/M -Balinese -balkanization -balkanize/DG -Balkan/SM -balker/M -balk/GDRS -Balkhash/M -balkiness/M -balky/PRT -balladeer/MS -ballade/MS -balladry/MS -ballad/SM -Ballard/SM -ballast/SGMD -ballcock/S -ballerina/MS -baller/M -balletic -ballet/MS -ballfields -ballgame/S -ball/GZMSDR -ballistic/S -ballistics/M -Ball/M -balloonist/S -balloon/RDMZGS -balloter/M -ballot/MRDGS -ballpark/SM -ballplayer/SM -ballpoint/SM -ballroom/SM -ballsy/TR -ballyhoo/SGMD -balminess/SM -balm/MS -balmy/PRT -baloney/SM -balsam/GMDS -balsamic -balsa/MS -Balthazar/M -Baltic/M -Baltimore/M -Baluchistan/M -baluster/MS -balustrade/SM -Balzac/M -Ba/M -Bamako/M -Bamberger/M -Bambie/M -Bambi/M -bamboo/SM -bamboozle/GSD -Bamby/M -Banach/M -banality/MS -banal/TYR -banana/SM -Bancroft/M -bandager/M -bandage/RSDMG -bandanna/SM -bandbox/MS -bandeau/M -bandeaux -band/EDGS -bander/M -banding/M -bandit/MS -banditry/MS -bandmaster/MS -bandoleer/SM -bandpass -band's -bandsman/M -bandsmen -bandstand/SM -bandstop -Bandung/M -bandwagon/MS -bandwidth/M -bandwidths -bandy/TGRSD -banefuller -banefullest -baneful/Y -bane/MS -Bangalore/M -banger/M -bang/GDRZMS -bangkok -Bangkok/M -Bangladeshi/S -Bangladesh/M -bangle/MS -Bangor/M -Bangui/M -bani -banisher/M -banishment/MS -banish/RSDGL -banister/MS -Banjarmasin/M -banjoist/SM -banjo/MS -Banjul/M -bankbook/SM -bankcard/S -banker/M -bank/GZJDRMBS -banking/M -Bank/MS -banknote/S -bankroll/DMSG -bankruptcy/MS -bankrupt/DMGS -Banky/M -Ban/M -banned/U -Banneker/M -banner/SDMG -banning/U -Bannister/M -bannister's -bannock/SM -banns -banqueter/M -banquet/SZGJMRD -banquette/MS -ban/SGMD -banshee/MS -bans/U -bantam/MS -bantamweight/MS -banterer/M -bantering/Y -banter/RDSG -Banting/M -Bantu/SM -banyan/MS -banzai/S -baobab/SM -Baotou/M -baptismal/Y -baptism/SM -Baptiste/M -baptistery/MS -baptist/MS -Baptist/MS -baptistry's -baptized/U -baptizer/M -baptize/SRDZG -baptizes/U -Barabbas/M -Barbabas/M -Barbabra/M -Barbadian/S -Barbados/M -Barbaraanne/M -Barbara/M -Barbarella/M -barbarianism/MS -barbarian/MS -barbaric -barbarically -barbarism/MS -barbarity/SM -barbarize/SDG -Barbarossa/M -barbarousness/M -barbarous/PY -Barbary/M -barb/DRMSGZ -barbecue/DRSMG -barbed/P -Barbee/M -barbell/SM -barbel/MS -Barbe/M -barbeque's -barber/DMG -barbered/U -Barber/M -barberry/MS -barbershop/MS -Barbette/M -Barbey/M -Barbie/M -Barbi/M -barbital/M -barbiturate/MS -Barbour/M -Barbra/M -Barb/RM -Barbuda/M -barbwire/SM -Barby/M -barcarole/SM -Barcelona/M -Barclay/M -Bardeen/M -Barde/M -bardic -Bard/M -bard/MDSG -bareback/D -barefacedness/M -barefaced/YP -barefoot/D -barehanded -bareheaded -barelegged -bareness/MS -Barents/M -bare/YSP -barfly/SM -barf/YDSG -bargainer/M -bargain/ZGSDRM -barge/DSGM -bargeman/M -bargemen -bargepole/M -barhopped -barhopping -barhop/S -Bari/M -baritone/MS -barium/MS -barked/C -barkeeper/M -barkeep/SRZ -barker/M -Barker/M -bark/GZDRMS -Barkley/M -barks/C -barleycorn/MS -barley/MS -Barlow/M -barmaid/SM -barman/M -barmen -Bar/MH -Barnabas -Barnabe/M -Barnaby/M -barnacle/MDS -Barnard/M -Barnaul/M -Barnebas/M -Barnes -Barnett/M -Barney/M -barnful -barn/GDSM -Barnhard/M -Barnie/M -Barn/M -barnsful -barnstorm/DRGZS -barnstormer/M -Barnum/M -barnyard/MS -Barny/M -Baroda/M -barometer/MS -barometric -barometrically -baronage/MS -baroness/MS -baronetcy/SM -baronet/MS -baronial -Baron/M -baron/SM -barony/SM -baroque/SPMY -barque's -Barquisimeto/M -barracker/M -barrack/SDRG -barracuda/MS -barrage/MGSD -Barranquilla/M -barred/ECU -barre/GMDSJ -barrel/SGMD -barrenness/SM -barren/SPRT -Barrera/M -Barret/M -barrette/SM -Barrett/M -barricade/SDMG -Barrie/M -barrier/MS -barring/R -barrio/SM -Barri/SM -barrister/MS -Barr/M -Barron/M -barroom/SM -barrow/MS -Barry/M -Barrymore/MS -bars/ECU -barstool/SM -Barstow/M -Bartel/M -bartender/M -bartend/ZR -barterer/M -barter/SRDZG -bar/TGMDRS -Barthel/M -Barth/M -Bartholdi/M -Bartholemy/M -Bartholomeo/M -Bartholomeus/M -Bartholomew/M -Bartie/M -Bartlet/M -Bartlett/M -Bart/M -Bartk/M -Bartolemo/M -Bartolomeo/M -Barton/M -Bartram/M -Barty/M -barycenter -barycentre's -barycentric -Bary/M -baryon/SM -Baryram/M -Baryshnikov/M -basaltic -basalt/SM -basal/Y -Bascom/M -bas/DRSTG -baseball/MS -baseband -baseboard/MS -base/CGRSDL -baseless -baseline/SM -Basel/M -basely -Base/M -baseman/M -basemen -basement/CSM -baseness/MS -baseplate/M -base's -basetting -bashfulness/MS -bashful/PY -bash/JGDSR -Basho/M -Basia/M -BASIC -basically -basic/S -Basie/M -basilar -Basile/M -basilica/SM -Basilio/M -basilisk/SM -Basilius/M -Basil/M -basil/MS -basin/DMS -basinful/S -basis/M -basketball/MS -basketry/MS -basket/SM -basketwork/SM -bask/GSD -basophilic -Basque/SM -Basra/M -Basseterre/M -basset/GMDS -Bassett/M -bassinet/SM -bassist/MS -Bass/M -basso/MS -bassoonist/MS -bassoon/MS -bass/SM -basswood/SM -bastardization/MS -bastardized/U -bastardize/SDG -bastard/MYS -bastardy/MS -baste/NXS -baster/M -Bastian/M -Bastien/M -Bastille/M -basting/M -bastion/DM -bast/SGZMDR -Basutoland/M -Bataan/M -Batavia/M -batch/MRSDG -bated/U -bate/KGSADC -bater/AC -Bates -bathe -bather/M -bathetic -bathhouse/SM -bath/JMDSRGZ -bathmat/S -Batholomew/M -bathos/SM -bathrobe/MS -bathroom/SDM -baths -Bathsheba/M -bathtub/MS -bathwater -bathyscaphe's -bathysphere/MS -batik/DMSG -Batista/M -batiste/SM -Bat/M -batman/M -Batman/M -batmen -baton/SM -Batsheva/M -batsman/M -bat/SMDRG -batsmen -battalion/MS -batted -batten/SDMG -batter/SRDZG -battery/MS -batting/MS -battledore/MS -battledress -battlefield/SM -battlefront/SM -battle/GMZRSDL -battleground/SM -Battle/M -battlement/SMD -battler/M -battleship/MS -batty/RT -Batu/M -batwings -bauble/SM -Baudelaire/M -baud/M -Baudoin/M -Baudouin/M -Bauer/M -Bauhaus/M -baulk/GSDM -Bausch/M -bauxite/SM -Bavaria/M -Bavarian/S -bawdily -bawdiness/MS -bawd/SM -bawdy/PRST -bawler/M -bawl/SGDR -Baxie/M -Bax/M -Baxter/M -Baxy/M -Bayamon -Bayard/M -bayberry/MS -Bayda/M -Bayer/M -Bayes -Bayesian -bay/GSMDY -Baylor/M -Bay/MR -bayonet/SGMD -Bayonne/M -bayou/MS -Bayreuth/M -bazaar/MS -bazillion/S -bazooka/MS -BB -BBB -BBC -bbl -BBQ -BBS -BC -BCD -bdrm -beachcomber/SM -beachhead/SM -Beach/M -beach/MSDG -beachwear/M -beacon/DMSG -beading/M -Beadle/M -beadle/SM -bead/SJGMD -beadsman/M -beadworker -beady/TR -beagle/SDGM -beaker/M -beak/ZSDRM -Beale/M -Bealle/M -Bea/M -beam/MDRSGZ -beanbag/SM -bean/DRMGZS -beanie/SM -Bean/M -beanpole/MS -beanstalk/SM -bearable/U -bearably/U -beard/DSGM -bearded/P -beardless -Beard/M -Beardmore/M -Beardsley/M -bearer/M -bearing/M -bearishness/SM -bearish/PY -bearlike -Bear/M -Bearnaise/M -Bearnard/M -bearskin/MS -bear/ZBRSJG -Beasley/M -beasties -beastings/M -beastliness/MS -beastly/PTR -beast/SJMY -beatable/U -beatably/U -beaten/U -beater/M -beatific -beatifically -beatification/M -beatify/GNXDS -beating/M -beatitude/MS -Beatlemania/M -Beatles/M -beatnik/SM -beat/NRGSBZJ -Beatrice/M -Beatrisa/M -Beatrix/M -Beatriz/M -Beauchamps -Beaufort/M -Beaujolais/M -Beau/M -Beaumarchais/M -Beaumont/M -beau/MS -Beauregard/M -beauteousness/M -beauteous/YP -beautician/MS -beautification/M -beautifier/M -beautifully/U -beautifulness/M -beautiful/PTYR -beautify/SRDNGXZ -beaut/SM -beauty/SM -Beauvoir/M -beaux's -beaver/DMSG -Beaverton/M -Bebe/M -bebop/MS -becalm/GDS -became -because -Becca/M -Bechtel/M -Becka/M -Becker/M -Becket/M -Beckett/M -beck/GSDM -Beckie/M -Becki/M -beckon/SDG -Beck/RM -Becky/M -becloud/SGD -become/GJS -becoming/UY -Becquerel/M -bedaub/GDS -bedazzle/GLDS -bedazzlement/SM -bedbug/SM -bedchamber/M -bedclothes -bedded -bedder/MS -bedding/MS -bedeck/DGS -Bede/M -bedevil/DGLS -bedevilment/SM -bedfast -bedfellow/MS -Bedford/M -bedimmed -bedimming -bedim/S -bedizen/DGS -bedlam/MS -bedlinen -bedmaker/SM -bedmate/MS -bed/MS -Bedouin/SM -bedpan/SM -bedpost/SM -bedraggle/GSD -bedridden -bedrock/SM -bedroll/SM -bedroom/DMS -bedsheets -bedside/MS -bedsit -bedsitter/M -bedsore/MS -bedspread/SM -bedspring/SM -bedstead/SM -bedstraw/M -bedtime/SM -Beebe/M -beebread/MS -Beecher/M -beech/MRSN -beechnut/MS -beechwood -beefburger/SM -beefcake/MS -beef/GZSDRM -beefiness/MS -beefsteak/MS -beefy/TRP -beehive/MS -beekeeper/MS -beekeeping/SM -beeline/MGSD -Beelzebub/M -Bee/M -bee/MZGJRS -been/S -beeper/M -beep/GZSMDR -Beerbohm/M -beer/M -beermat/S -beery/TR -beeswax/DSMG -Beethoven/M -beetle/GMRSD -Beeton/M -beetroot/M -beet/SM -beeves/M -befall/SGN -befell -befit/SM -befitted -befitting/Y -befogged -befogging -befog/S -before -beforehand -befoul/GSD -befriend/DGS -befuddle/GLDS -befuddlement/SM -began -beget/S -begetting -beggar/DYMSG -beggarliness/M -beggarly/P -beggary/MS -begged -begging -Begin/M -beginner/MS -beginning/MS -begin/S -begone/S -begonia/SM -begot -begotten -begrime/SDG -begrudge/GDRS -begrudging/Y -beg/S -beguilement/SM -beguiler/M -beguile/RSDLZG -beguiling/Y -beguine/SM -begum/MS -begun -behalf/M -behalves -Behan/M -behave/GRSD -behavioral/Y -behaviorism/MS -behavioristic/S -behaviorist/S -behavior/SMD -behead/GSD -beheld -behemoth/M -behemoths -behest/SM -behindhand -behind/S -beholder/M -behold/ZGRNS -behoofs -behoove/SDJMG -behooving/YM -Behring/M -Beiderbecke/M -beige/MS -Beijing -Beilul/M -being/M -Beirut/M -Beitris/M -bejewel/SDG -Bekesy/M -Bekki/M -be/KS -belabor/MDSG -Bela/M -Belarus -belate/D -belatedness/M -belated/PY -Belau/M -belay/GSD -belch/GSD -beleaguer/GDS -Belem/M -Belfast/M -belfry/SM -Belgian/MS -Belgium/M -Belg/M -Belgrade/M -Belia/M -Belicia/M -belie -belief/ESUM -belier/M -believability's -believability/U -believable/U -believably/U -believed/U -believe/EZGDRS -believer/MUSE -believing/U -Belinda/M -Belita/M -belittlement/MS -belittler/M -belittle/RSDGL -Belize/M -belladonna/MS -Bella/M -Bellamy/M -Bellanca/M -Bellatrix/M -bellboy/MS -belled/A -Belle/M -belle/MS -belletristic -belletrist/SM -Belleville/M -bellflower/M -bell/GSMD -bellhop/MS -bellicoseness/M -bellicose/YP -bellicosity/MS -belligerence/SM -belligerency/MS -belligerent/SMY -Bellina/M -belling/A -Bellini/M -Bell/M -bellman/M -bellmen -Bellovin/M -bellow/DGS -Bellow/M -bellows/M -bells/A -bellwether/MS -Bellwood/M -bellyacher/M -bellyache/SRDGM -bellybutton/MS -bellyfull -bellyful/MS -belly/SDGM -Bel/M -Belmont/M -Belmopan/M -Beloit/M -belong/DGJS -belonging/MP -Belorussian/S -Belorussia's -belove/D -beloved/S -below/S -Belshazzar/M -belted/U -belt/GSMD -belting/M -Belton/M -Beltran/M -Beltsville/M -beltway/SM -beluga/SM -Belushi/M -Belva/M -belvedere/M -Belvia/M -bely/DSRG -beman -Be/MH -bemire/SDG -bemoan/GDS -bemused/Y -bemuse/GSDL -bemusement/SM -Benacerraf/M -Benares's -bencher/M -benchmark/GDMS -bench/MRSDG -bend/BUSG -bended -Bender/M -bender/MS -Bendick/M -Bendicty/M -Bendite/M -Bendix/M -beneath -Benedetta/M -Benedetto/M -Benedick/M -Benedicta/M -Benedictine/MS -benediction/MS -Benedict/M -Benedicto/M -benedictory -Benedikta/M -Benedikt/M -benefaction/MS -benefactor/MS -benefactress/S -benefice/MGSD -beneficence/SM -beneficent/Y -beneficialness/M -beneficial/PY -beneficiary/MS -benefiter/M -benefit/SRDMZG -Benelux/M -Benet/M -Benetta/M -Benetton/M -benevolence/SM -benevolentness/M -benevolent/YP -Bengali/M -Bengal/SM -Benghazi/M -Bengt/M -Beniamino/M -benightedness/M -benighted/YP -benignant -benignity/MS -benign/Y -Beninese -Benin/M -Benita/M -Benito/M -Benjamen/M -Benjamin/M -Benjie/M -Benji/M -Benjy/M -Ben/M -Bennett/M -Bennie/M -Benni/M -Bennington/M -Benn/M -Benny/M -Benoite/M -Benoit/M -Benson/M -Bentham/M -Bentlee/M -Bentley/MS -Bent/M -Benton/M -bents -bent/U -bentwood/SM -benumb/SGD -Benyamin/M -Benzedrine/M -benzene/MS -benzine/SM -Benz/M -Beograd's -Beowulf/M -bequeath/GSD -bequeaths -bequest/MS -berate/GSD -Berber/MS -bereave/GLSD -bereavement/MS -bereft -Berenice/M -Beret/M -beret/SM -Bergen/M -Bergerac/M -Berger/M -Berget/M -Berglund/M -Bergman/M -Berg/NRM -berg/NRSM -Bergson/M -Bergsten/M -Bergstrom/M -beribbon/D -beriberi/SM -Beringer/M -Bering/RM -Berkeley/M -berkelium/SM -Berke/M -Berkie/M -Berkley/M -Berkly/M -Berkowitz/M -Berkshire/SM -Berky/M -Berk/YM -Berle/M -Berliner/M -Berlin/SZRM -Berlioz/M -Berlitz/M -Berman/M -Ber/MG -berm/SM -Bermuda/MS -Bermudan/S -Bermudian/S -Bernadene/M -Bernadette/M -Bernadina/M -Bernadine/M -Berna/M -Bernardina/M -Bernardine/M -Bernardino/M -Bernard/M -Bernardo/M -Bernarr/M -Bernays/M -Bernbach/M -Bernelle/M -Berne's -Bernese -Bernete/M -Bernetta/M -Bernette/M -Bernhard/M -Bernhardt/M -Bernice/M -Berniece/M -Bernie/M -Berni/M -Bernini/M -Bernita/M -Bern/M -Bernoulli/M -Bernstein/M -Berny/M -Berra/M -Berrie/M -Berri/M -berrylike -Berry/M -berry/SDMG -berserker/M -berserk/SR -Berta/M -Berte/M -Bertha/M -Berthe/M -berth/MDGJ -berths -Bertie/M -Bertillon/M -Berti/M -Bertina/M -Bertine/M -Bert/M -Berton/M -Bertram/M -Bertrand/M -Bertrando/M -Berty/M -Beryle/M -beryllium/MS -Beryl/M -beryl/SM -Berzelius/M -bes -beseecher/M -beseeching/Y -beseech/RSJZG -beseem/GDS -beset/S -besetting -beside/S -besieger/M -besiege/SRDZG -besmear/GSD -besmirch/GSD -besom/GMDS -besot/S -besotted -besotting -besought -bespangle/GSD -bespatter/SGD -bespeak/SG -bespectacled -bespoke -bespoken -Bess -Bessel/M -Bessemer/M -Bessie/M -Bessy/M -best/DRSG -bestiality/MS -bestial/Y -bestiary/MS -bestirred -bestirring -bestir/S -Best/M -bestowal/SM -bestow/SGD -bestrew/DGS -bestrewn -bestridden -bestride/SG -bestrode -bestseller/MS -bestselling -bestubble/D -betaken -betake/SG -beta/SM -betatron/M -betcha -Betelgeuse/M -betel/MS -Bethanne/M -Bethany/M -bethel/M -Bethe/M -Bethena/M -Bethesda/M -Bethina/M -bethink/GS -Bethlehem/M -beth/M -Beth/M -bethought -Bethune -betide/GSD -betimes -bet/MS -betoken/GSD -betook -betrayal/SM -betrayer/M -betray/SRDZG -betrothal/SM -betrothed/U -betroth/GD -betroths -Betsey/M -Betsy/M -Betta/M -Betteanne/M -Betteann/M -Bette/M -betterment/MS -better/SDLG -Bettie/M -Betti/M -Bettina/M -Bettine/M -betting -bettor/SM -Bettye/M -Betty/SM -betweenness/M -between/SP -betwixt -Beulah/M -Bevan/M -bevel/SJGMRD -beverage/MS -Beverie/M -Beverlee/M -Beverley/M -Beverlie/M -Beverly/M -Bevin/M -Bevon/M -Bev's -Bevvy/M -bevy/SM -bewail/GDS -beware/GSD -bewhisker/D -bewigged -bewildered/PY -bewildering/Y -bewilder/LDSG -bewilderment/SM -bewitching/Y -bewitch/LGDS -bewitchment/SM -bey/MS -beyond/S -bezel/MS -bf -B/GT -Bhopal/M -Bhutanese -Bhutan/M -Bhutto/M -Bialystok/M -Bianca/M -Bianco/M -Bianka/M -biannual/Y -bias/DSMPG -biased/U -biathlon/MS -biaxial/Y -bibbed -Bibbie/M -bibbing -Bibbye/M -Bibby/M -Bibi/M -bible/MS -Bible/MS -biblical/Y -biblicists -bibliographer/MS -bibliographical/Y -bibliographic/S -bibliography/MS -bibliophile/MS -Bib/M -bib/MS -bibulous -bicameral -bicameralism/MS -bicarb/MS -bicarbonate/MS -bicentenary/S -bicentennial/S -bicep/S -biceps/M -bichromate/DM -bickerer/M -bickering/M -bicker/SRDZG -biconcave -biconnected -biconvex -bicuspid/S -bicycler/M -bicycle/RSDMZG -bicyclist/SM -biddable -bidden/U -bidder/MS -Biddie/M -bidding/MS -Biddle/M -Biddy/M -biddy/SM -bider/M -bide/S -bidet/SM -Bidget/M -bid/GMRS -bidiagonal -bidirectional/Y -bids/A -biennial/SY -biennium/SM -Bienville/M -Bierce/M -bier/M -bifocal/S -bifurcate/SDXGNY -bifurcation/M -bigamist/SM -bigamous -bigamy/SM -Bigelow/M -Bigfoot -bigged -bigger -biggest -biggie/SM -bigging -biggish -bighead/MS -bigheartedness/S -bighearted/P -bighorn/MS -bight/SMDG -bigmouth/M -bigmouths -bigness/SM -bigoted/Y -bigot/MDSG -bigotry/MS -big/PYS -bigwig/MS -biharmonic -bijection/MS -bijective/Y -bijou/M -bijoux -bike/MZGDRS -biker/M -bikini/SMD -Biko/M -bilabial/S -bilateralness/M -bilateral/PY -bilayer/S -Bilbao/M -bilberry/MS -Bilbo/M -bile/SM -bilge/GMDS -biliary -Bili/M -bilinear -bilingualism/SM -bilingual/SY -biliousness/SM -bilious/P -bilker/M -bilk/GZSDR -billboard/MDGS -biller/M -billet/MDGS -billfold/MS -billiard/SM -Billie/M -Billi/M -billing/M -billingsgate/SM -Billings/M -billionaire/MS -billion/SHM -billionths -bill/JGZSBMDR -Bill/JM -billow/DMGS -billowy/RT -billposters -Billye/M -Billy/M -billy/SM -Bil/MY -bi/M -Bi/M -bimbo/MS -bimetallic/S -bimetallism/MS -Bimini/M -bimodal -bimolecular/Y -bimonthly/S -binary/S -binaural/Y -binder/M -bindery/MS -binding/MPY -bindingness/M -bind/JDRGZS -bindle/M -binds/AU -bindweed/MS -binge/MS -bing/GNDM -Bingham/M -Binghamton/M -Bing/M -bingo/MS -Bini/M -Bink/M -Binky/M -binnacle/MS -binned -Binnie/M -Binni/M -binning -Binny/M -binocular/SY -binodal -binomial/SYM -bin/SM -binuclear -biochemical/SY -biochemist/MS -biochemistry/MS -biodegradability/S -biodegradable -biodiversity/S -bioengineering/M -bioethics -biofeedback/SM -biographer/M -biographic -biographical/Y -biograph/RZ -biography/MS -biog/S -Bioko/M -biol -biological/SY -biologic/S -biologist/SM -biology/MS -biomass/SM -biomedical -biomedicine/M -biometric/S -biometrics/M -biometry/M -biomolecule/S -biomorph -bionically -bionic/S -bionics/M -biophysical/Y -biophysicist/SM -biophysic/S -biophysics/M -biopic/S -biopsy/SDGM -biorhythm/S -BIOS -bioscience/S -biosphere/MS -biostatistic/S -biosynthesized -biotechnological -biotechnologist -biotechnology/SM -biotic -biotin/SM -bipartisan -bipartisanship/MS -bipartite/YN -bipartition/M -bipedal -biped/MS -biplane/MS -bipolar -bipolarity/MS -biracial -Birch/M -birch/MRSDNG -birdbath/M -birdbaths -birdbrain/SDM -birdcage/SM -birder/M -birdhouse/MS -birdieing -Birdie/M -birdie/MSD -birdlike -birdlime/MGDS -Bird/M -birdseed/MS -Birdseye/M -bird/SMDRGZ -birdsong -birdtables -birdwatch/GZR -birefringence/M -birefringent -biretta/SM -Birgit/M -Birgitta/M -Birkenstock/M -Birk/M -Birmingham/M -Biro/M -Biron/M -birthday/SM -birthmark/MS -birth/MDG -birthplace/SM -birthrate/MS -birthright/MS -birth's/A -births/A -birthstone/SM -bis -Biscay/M -Biscayne/M -biscuit/MS -bisect/DSG -bisection/MS -bisector/MS -biserial -bisexuality/MS -bisexual/YMS -Bishkek -bishop/DGSM -Bishop/M -bishopric/SM -Bismarck/M -Bismark/M -bismuth/M -bismuths -bison/M -bisque/SM -Bissau/M -bistable -bistate -bistro/SM -bisyllabic -bitblt/S -bitchily -bitchiness/MS -bitch/MSDG -bitchy/PTR -biter/M -bite/S -biting/Y -bitmap/SM -bit/MRJSZG -BITNET/M -bit's/C -bits/C -bitser/M -bitted -bitten -bitterness/SM -bittern/SM -bitternut/M -bitter/PSRDYTG -bitterroot/M -bittersweet/YMSP -bitting -bitty/PRT -bitumen/MS -bituminous -bitwise -bivalent/S -bivalve/MSD -bivariate -bivouacked -bivouacking -bivouac/MS -biweekly/S -biyearly -bizarreness/M -bizarre/YSP -Bizet/M -biz/M -bizzes -Bjorn/M -bk -b/KGD -Bk/M -blabbed -blabber/GMDS -blabbermouth/M -blabbermouths -blabbing -blab/S -blackamoor/SM -blackball/SDMG -blackberry/GMS -blackbirder/M -blackbird/SGDRM -blackboard/SM -blackbody/S -Blackburn/M -blackcurrant/M -blackener/M -blacken/GDR -Blackfeet -Blackfoot/M -blackguard/MDSG -blackhead/SM -blacking/M -blackish -blackjack/SGMD -blackleg/M -blacklist/DRMSG -blackmail/DRMGZS -blackmailer/M -Blackman/M -Blackmer/M -blackness/MS -blackout/SM -Blackpool/M -Black's -black/SJTXPYRDNG -blacksmith/MG -blacksmiths -blacksnake/MS -blackspot -Blackstone/M -blackthorn/MS -blacktop/MS -blacktopped -blacktopping -Blackwell/MS -bladder/MS -bladdernut/M -bladderwort/M -blade/DSGM -blah/MDG -blahs -Blaine/M -Blaire/M -Blair/M -Blakelee/M -Blakeley/M -Blake/M -Blakey/M -blame/DSRBGMZ -blamelessness/SM -blameless/YP -blamer/M -blameworthiness/SM -blameworthy/P -Blanca/M -Blancha/M -Blanchard/M -blanch/DRSG -Blanche/M -blancher/M -Blanch/M -blanc/M -blancmange/SM -blandishment/MS -blandish/SDGL -blandness/MS -bland/PYRT -Blane/M -Blankenship/M -blanketing/M -blanket/SDRMZG -blankness/MS -blank/SPGTYRD -Blanton/M -Blantyre/M -blare/DSG -blarney/DMGS -blas -blasphemer/M -blaspheme/RSDZG -blasphemousness/M -blasphemous/PY -blasphemy/SM -blaster/M -blasting/M -blastoff/SM -blast/SMRDGZ -blatancy/SM -blatant/YP -blather/DRGS -blatting -Blatz/M -Blavatsky/M -Blayne/M -blaze/DSRGMZ -blazer/M -blazing/Y -blazoner/M -blazon/SGDR -bl/D -bldg -bleach/DRSZG -bleached/U -bleacher/M -bleakness/MS -bleak/TPYRS -blear/GDS -blearily -bleariness/SM -bleary/PRT -bleater/M -bleat/RDGS -bleeder/M -bleed/ZRJSG -Bleeker/M -bleep/GMRDZS -blemish/DSMG -blemished/U -blench/DSG -blender/M -blend/GZRDS -Blenheim/M -blessedness/MS -blessed/PRYT -blessing/M -bless/JGSD -Blevins/M -blew -Bligh/M -blighter/M -blight/GSMDR -blimey/S -blimp/MS -blinded/U -blinder/M -blindfold/SDG -blinding/MY -blind/JGTZPYRDS -blindness/MS -blindside/SDG -blinker/MDG -blinking/U -blink/RDGSZ -blinks/M -Blinnie/M -Blinni/M -Blinny/M -blintze/M -blintz/SM -blip/MS -blipped -blipping -Blisse/M -blissfulness/MS -blissful/PY -Bliss/M -bliss/SDMG -blistering/Y -blister/SMDG -blistery -Blithe/M -blitheness/SM -blither/G -blithesome -blithe/TYPR -blitz/GSDM -blitzkrieg/SM -blizzard/MS -bloater/M -bloat/SRDGZ -blobbed -blobbing -blob/MS -Bloch/M -blockader/M -blockade/ZMGRSD -blockage/MS -blockbuster/SM -blockbusting/MS -blocker/MS -blockhead/MS -blockhouse/SM -block's -block/USDG -blocky/R -bloc/MS -Bloemfontein/M -bloke/SM -Blomberg/M -Blomquist/M -Blondelle/M -Blondell/M -blonde's -Blondie/M -blondish -blondness/MS -blond/SPMRT -Blondy/M -bloodbath -bloodbaths -bloodcurdling -bloodhound/SM -bloodied/U -bloodiness/MS -bloodlessness/SM -bloodless/PY -bloodletting/MS -bloodline/SM -bloodmobile/MS -bloodroot/M -bloodshed/SM -bloodshot -blood/SMDG -bloodsport/S -bloodstain/MDS -bloodstock/SM -bloodstone/M -bloodstream/SM -bloodsucker/SM -bloodsucking/S -bloodthirstily -bloodthirstiness/MS -bloodthirsty/RTP -bloodworm/M -bloodymindedness -bloody/TPGDRS -bloomer/M -Bloomer/M -Bloomfield/M -Bloomington/M -Bloom/MR -bloom/SMRDGZ -blooper/M -bloop/GSZRD -blossom/DMGS -blossomy -blotch/GMDS -blotchy/RT -blot/MS -blotted -blotter/MS -blotting -blotto -blouse/GMSD -blower/M -blowfish/M -blowfly/MS -blowgun/SM -blow/GZRS -blowing/M -blown/U -blowout/MS -blowpipe/SM -blowtorch/SM -blowup/MS -blowy/RST -blowzy/RT -BLT -blubber/GSDR -blubbery -Blucher/M -bludgeon/GSMD -blueback -Bluebeard/M -bluebell/MS -blueberry/SM -bluebill/M -bluebird/MS -bluebonnet/SM -bluebook/M -bluebottle/MS -bluebush -bluefish/SM -bluegill/SM -bluegrass/MS -blueing's -blueish -bluejacket/MS -bluejeans -blue/JMYTGDRSP -blueness/MS -bluenose/MS -bluepoint/SM -blueprint/GDMS -bluer/M -bluest/M -bluestocking/SM -bluesy/TR -bluet/MS -bluffer/M -bluffness/MS -bluff/SPGTZYRD -bluing/M -bluishness/M -bluish/P -Blumenthal/M -Blum/M -blunderbuss/MS -blunderer/M -blunder/GSMDRJZ -blundering/Y -bluntness/MS -blunt/PSGTYRD -blurb/GSDM -blur/MS -blurred/Y -blurriness/S -blurring/Y -blurry/RPT -blurt/GSRD -blusher/M -blushing/UY -blush/RSDGZ -blusterer/M -blustering/Y -blusterous -bluster/SDRZG -blustery -blvd -Blvd -Blythe/M -BM -BMW/M -BO -boarded -boarder/SM -boardgames -boardinghouse/SM -boarding/SM -board/IS -boardroom/MS -board's -boardwalk/SM -boar/MS -boa/SM -boaster/M -boastfulness/MS -boastful/YP -boast/SJRDGZ -boatclubs -boater/M -boathouse/SM -boating/M -boatload/SM -boatman/M -boat/MDRGZJS -boatmen -boatswain/SM -boatyard/SM -bobbed -Bobbee/M -Bobbe/M -Bobbette/M -Bobbie/M -Bobbi/M -bobbing/M -bobbin/MS -Bobbitt/M -bobble/SDGM -Bobbsey/M -Bobbye/M -Bobby/M -bobby/SM -bobbysoxer's -bobcat/MS -Bobette/M -Bobina/M -Bobine/M -Bobinette/M -Bob/M -bobolink/SM -Bobrow/M -bobsledded -bobsledder/MS -bobsledding/M -bobsled/MS -bobsleigh/M -bobsleighs -bobs/M -bob/SM -bobtail/SGDM -bobwhite/SM -Boca/M -Boccaccio/M -boccie/SM -bock/GDS -bockwurst -bodega/MS -Bodenheim/M -bode/S -Bodhidharma/M -bodhisattva -Bodhisattva/M -bodice/SM -bodied/M -bodiless -bodily -boding/M -bodkin/SM -bod/SGMD -bodybuilder/SM -bodybuilding/S -body/DSMG -bodyguard/MS -bodying/M -bodysuit/S -bodyweight -bodywork/SM -Boeing/M -Boeotia/M -Boeotian -Boer/M -Bogartian/M -Bogart/M -Bogey/M -bogeyman/M -bogeymen -bogey/SGMD -bogged -bogging -boggle/SDG -boggling/Y -boggy/RT -bogie's -bog/MS -Bogot/M -bogus -bogyman -bogymen -bogy's -Boheme/M -bohemianism/S -bohemian/S -Bohemian/SM -Bohemia/SM -Bohr/M -Boigie/M -boiled/AU -boiler/M -boilermaker/MS -boilerplate/SM -boil/JSGZDR -boils/A -Boise/M -Bois/M -boisterousness/MS -boisterous/YP -bola/SM -boldface/SDMG -boldness/MS -bold/YRPST -bole/MS -bolero/MS -Boleyn/M -bolivares -Bolivar/M -bolivar/MS -Bolivia/M -Bolivian/S -bollard/SM -bollix/GSD -boll/MDSG -Bologna/M -bologna/MS -bolometer/MS -bolo/MS -boloney's -Bolshevik/MS -Bolshevism/MS -Bolshevistic/M -Bolshevist/MS -Bolshoi/M -bolsterer/M -bolster/SRDG -bolted/U -bolter/M -bolt/MDRGS -Bolton/M -bolts/U -Boltzmann/M -bolus/SM -bombardier/MS -bombard/LDSG -bombardment/SM -bombastic -bombastically -bombast/RMS -Bombay/M -bomber/M -bombproof -bomb/SGZDRJ -bombshell/SM -Bo/MRZ -bona -bonanza/MS -Bonaparte/M -Bonaventure/M -bonbon/SM -bondage/SM -bonder/M -bondholder/SM -Bondie/M -bond/JMDRSGZ -Bond/M -bondman/M -bondmen -Bondon/M -bonds/A -bondsman/M -bondsmen -bondwoman/M -bondwomen -Bondy/M -boned/U -bonehead/SDM -boneless -Bone/M -bone/MZDRSG -boner/M -bonfire/MS -bong/GDMS -bongo/MS -Bonham/M -bonhomie/MS -Boniface/M -boniness/MS -Bonita/M -bonito/MS -bonjour -bonkers -Bonnee/M -Bonner/M -bonneted/U -bonnet/SGMD -Bonneville/M -Bonnibelle/M -bonnie -Bonnie/M -Bonni/M -Bonn/RM -Bonny/M -bonny/RT -bonsai/SM -Bontempo/M -bonus/SM -bony/RTP -bonzes -boob/DMSG -booby/SM -boodle/GMSD -boogeyman's -boogieing -boogie/SD -boo/GSDH -boohoo/GDS -bookbinder/M -bookbindery/SM -bookbinding/M -bookbind/JRGZ -bookcase/MS -booked/U -bookend/SGD -Booker/M -book/GZDRMJSB -bookie/SM -booking/M -bookishness/M -bookish/PY -bookkeeper/M -bookkeep/GZJR -bookkeeping/M -booklet/MS -bookmaker/MS -bookmaking/MS -bookmark/MDGS -bookmobile/MS -bookplate/SM -bookseller/SM -bookshelf/M -bookshelves -bookshop/MS -bookstall/MS -bookstore/SM -bookwork/M -bookworm/MS -Boolean -boolean/S -Boole/M -boom/DRGJS -boomerang/MDSG -boomer/M -boomtown/S -boondocks -boondoggle/DRSGZ -boondoggler/M -Boone/M -Boonie/M -boonies -boon/MS -Boony/M -boorishness/SM -boorish/PY -boor/MS -boosterism -booster/M -boost/SGZMRD -boot/AGDS -bootblack/MS -bootee/MS -Boote/M -Botes -Boothe/M -booth/M -Booth/M -booths -bootie's -bootlaces -bootlegged/M -bootlegger/SM -bootlegging/M -bootleg/S -Bootle/M -bootless -Boot/M -bootprints -boot's -bootstrapped -bootstrapping -bootstrap/SM -booty/SM -booze/DSRGMZ -boozer/M -boozy/TR -bopped -bopping -bop/S -borate/MSD -borax/MS -Bordeaux/M -bordello/MS -Borden/M -borderer/M -border/JRDMGS -borderland/SM -borderline/MS -Bordie/M -Bord/MN -Bordon/M -Bordy/M -Borealis/M -Boreas/M -boredom/MS -boreholes -borer/M -bore/ZGJDRS -Borges -Borgia/M -Borg/M -boric -boring/YMP -Boris -Bork/M -born/AIU -Borneo/M -borne/U -Born/M -Borodin/M -boron/SM -borosilicate/M -borough/M -boroughs -Borroughs/M -borrower/M -borrowing/M -borrow/JZRDGBS -borscht/SM -borstal/MS -Boru/M -borzoi/MS -Bosch/M -Bose/M -bosh/MS -Bosnia/M -Bosnian/S -bosom's -bosom/SGUD -bosomy/RT -boson/SM -Bosporus/M -boss/DSRMG -bossily -bossiness/MS -bossism/MS -bossy/PTSR -Bostitch/M -Bostonian/SM -Boston/MS -bosun's -Boswell/MS -botanical/SY -botanic/S -botanist/SM -botany/SM -botcher/M -botch/SRDGZ -botfly/M -bother/DG -bothersome -bothy/M -both/ZR -bot/S -Botswana/M -Botticelli/M -bottle/GMZSRD -bottleneck/GSDM -bottler/M -bottomlessness/M -bottomless/YP -bottommost -bottom/SMRDG -botulin/M -botulinus/M -botulism/SM -Boucher/M -boudoir/MS -bouffant/S -bougainvillea/SM -bough/MD -boughs -bought/N -bouillabaisse/MS -bouillon/MS -boulder/GMDS -Boulder/M -boulevard/MS -bouncer/M -bounce/SRDGZ -bouncily -bouncing/Y -bouncy/TRP -boundary/MS -bound/AUDI -boundedness/MU -bounded/UP -bounden -bounder/AM -bounders -bounding -boundlessness/SM -boundless/YP -bounds/IA -bounteousness/MS -bounteous/PY -bountifulness/SM -bountiful/PY -bounty/SDM -bouquet/SM -Bourbaki/M -bourbon/SM -Bourbon/SM -bourgeoisie/SM -bourgeois/M -Bourke/M -Bourne/M -Bournemouth/M -boutique/MS -bout/MS -boutonnire/MS -Bouvier -Bovary/M -bovine/YS -Bowditch/M -bowdlerization/MS -bowdlerize/GRSD -bowed/U -bowel/GMDS -Bowell/M -Bowen/M -bower/DMG -Bowers -Bowery/M -Bowes -bowie -Bowie/M -bowing/M -bowlder's -bowlegged -bowleg/SM -bowler/M -bowlful/S -bowl/GZSMDR -bowline/MS -bowling/M -bowman/M -Bowman/M -bowmen -bowser/M -bowsprit/SM -bows/R -bowstring/GSMD -bow/SZGNDR -bowwow/DMGS -boxcar/SM -box/DRSJZGM -boxer/M -boxful/M -boxing/M -boxlike -boxtops -boxwood/SM -boxy/TPR -Boyce/M -Boycey/M -Boycie/M -boycotter/M -boycott/RDGS -Boyd/M -Boyer/M -boyfriend/MS -boyhood/SM -boyishness/MS -boyish/PY -Boyle/M -Boy/MR -boy/MRS -boyscout -boysenberry/SM -bozo/SM -bpi -bps -BR -brace/DSRJGM -braced/U -bracelet/MS -bracer/M -brachia -brachium/M -bracken/SM -bracketed/U -bracketing/M -bracket/SGMD -brackishness/SM -brackish/P -bract/SM -Bradan/M -bradawl/M -Bradbury/M -Bradburys -bradded -bradding -Braddock/M -Brade/M -Braden/M -Bradford/M -Bradley/M -Bradly/M -Brad/MYN -Bradney/M -Bradshaw/M -brad/SM -Bradstreet/M -Brady/M -brae/SM -braggadocio/SM -braggart/SM -bragged -bragger/MS -braggest -bragging -Bragg/M -brag/S -Brahe/M -Brahma/MS -Brahmanism/MS -Brahman/SM -Brahmaputra/M -Brahmin's -Brahms -braider/M -braiding/M -braid/RDSJG -braille/DSG -Braille/GDSM -Brainard/SM -braincell/S -brainchild/M -brainchildren -brain/GSDM -braininess/MS -brainlessness/M -brainless/YP -Brain/M -brainpower/M -brainstorm/DRMGJS -brainstorming/M -brainteaser/S -brainteasing -brainwasher/M -brainwashing/M -brainwash/JGRSD -brainwave/S -brainy/RPT -braise/SDG -brake/DSGM -brakeman/M -brakemen/M -bramble/DSGM -brambling/M -brambly/RT -Bram/M -Brampton/M -bra/MS -Brana/M -branched/U -branching/M -branchlike -Branch/M -branch/MDSJG -Branchville/M -Brandais/M -Brandea/M -branded/U -Brandeis/M -Brandel/M -Brande/M -Brandenburg/M -Branden/M -brander/GDM -Brander/M -Brandice/M -Brandie/M -Brandi/M -Brandise/M -brandish/GSD -Brand/MRN -Brando/M -Brandon/M -brand/SMRDGZ -Brandt/M -Brandtr/M -brandy/GDSM -Brandy/M -Brandyn/M -brandywine -Braniff/M -Bran/M -branned -branning -Brannon/M -bran/SM -Brantley/M -Brant/M -Braque/M -brashness/MS -brash/PYSRT -Brasilia -brasserie/SM -brass/GSDM -brassiere/MS -brassily -brassiness/SM -brassy/RSPT -Bratislava/M -brat/SM -Brattain/M -bratty/RT -bratwurst/MS -Braun/M -bravadoes -bravado/M -brave/DSRGYTP -braveness/MS -bravery/MS -bravest/M -bravo/SDG -bravura/SM -brawler/M -brawl/MRDSGZ -brawniness/SM -brawn/MS -brawny/TRP -brayer/M -Bray/M -bray/SDRG -braze/GZDSR -brazenness/MS -brazen/PYDSG -brazer/M -brazier/SM -Brazilian/MS -Brazil/M -Brazos/M -Brazzaville/M -breacher/M -breach/MDRSGZ -breadbasket/SM -breadboard/SMDG -breadbox/S -breadcrumb/S -breadfruit/MS -breadline/MS -bread/SMDHG -breadth/M -breadths -breadwinner/MS -breakables -breakable/U -breakage/MS -breakaway/MS -breakdown/MS -breaker/M -breakfaster/M -breakfast/RDMGZS -breakfront/S -breaking/M -breakneck -breakout/MS -breakpoint/SMDG -break/SZRBG -breakthroughs -breakthrough/SM -breakup/SM -breakwater/SM -bream/SDG -Breanne/M -Brear/M -breastbone/MS -breastfed -breastfeed/G -breasting/M -breast/MDSG -breastplate/SM -breaststroke/SM -breastwork/MS -breathable/U -breathalyser/S -Breathalyzer/SM -breathe -breather/M -breathing/M -breathlessness/SM -breathless/PY -breaths -breathtaking/Y -breathy/TR -breath/ZBJMDRSG -Brecht/M -Breckenridge/M -bred/DG -bredes -breeching/M -breech/MDSG -breeder/I -breeder's -breeding/IM -breeds/I -breed/SZJRG -Bree/M -Breena/M -breeze/GMSD -breezeway/SM -breezily -breeziness/SM -breezy/RPT -Bremen/M -bremsstrahlung/M -Brena/M -Brenda/M -Brendan/M -Brenden/M -Brendin/M -Brendis/M -Brendon/M -Bren/M -Brenna/M -Brennan/M -Brennen/M -Brenner/M -Brenn/RNM -Brent/M -Brenton/M -Bresenham/M -Brest/M -brethren -Bret/M -Breton -Brett/M -breve/SM -brevet/MS -brevetted -brevetting -breviary/SM -brevity/MS -brew/DRGZS -brewer/M -Brewer/M -brewery/MS -brewing/M -brewpub/S -Brew/RM -Brewster/M -Brezhnev/M -Bria/M -Briana/M -Brian/M -Brianna/M -Brianne/M -Briano/M -Briant/M -briar's -bribe/GZDSR -briber/M -bribery/MS -Brice/M -brickbat/SM -brick/GRDSM -bricklayer/MS -bricklaying/SM -brickmason/S -brickwork/SM -brickyard/M -bridal/S -Bridalveil/M -bridegroom/MS -Bride/M -bride/MS -bridesmaid/MS -Bridewell/M -bridgeable/U -bridged/U -bridgehead/MS -Bridgeport/M -Bridger/M -Bridges -bridge/SDGM -Bridget/M -Bridgetown/M -Bridgette/M -Bridgett/M -Bridgewater/M -bridgework/MS -bridging/M -Bridgman/M -Bridie/M -bridled/U -bridle/SDGM -bridleway/S -briefcase/SM -briefed/C -briefing/M -briefness/MS -briefs/C -brief/YRDJPGTS -Brien/M -Brier/M -brier/MS -Brie/RSM -Brietta/M -brigade/GDSM -brigadier/MS -Brigadoon -brigandage/MS -brigand/MS -brigantine/MS -Brigg/MS -Brigham/M -brightener/M -brighten/RDZG -bright/GXTPSYNR -Bright/M -brightness/SM -Brighton/M -Brigida/M -Brigid/M -Brigit/M -Brigitta/M -Brigitte/M -Brig/M -brig/SM -brilliance/MS -brilliancy/MS -brilliantine/MS -brilliantness/M -brilliant/PSY -Brillo -Brillouin/M -brimful -brimless -brimmed -brimming -brim/SM -brimstone/MS -Brina/M -Brindisi/M -brindle/DSM -brine/GMDSR -briner/M -Briney/M -bringer/M -bring/RGZS -brininess/MS -Brinkley/M -brinkmanship/SM -brink/MS -Brinna/M -Brinn/M -Briny/M -briny/PTSR -brioche/SM -Brion/M -briquet's -briquette/MGSD -Brisbane/M -brisket/SM -briskness/MS -brisk/YRDPGTS -bristle/DSGM -bristly/TR -Bristol/M -bristol/S -Britain/M -Brita/M -Britannia/M -Britannic -Britannica/M -britches -Briticism/MS -Britisher/M -Britishly/M -British/RYZ -Brit/MS -Britney/M -Britni/M -Briton/MS -Britta/M -Brittaney/M -Brittani/M -Brittan/M -Brittany/MS -Britte/M -Britten/M -Britteny/M -brittleness/MS -brittle/YTPDRSG -Britt/MN -Brittne/M -Brittney/M -Brittni/M -Brnaba/M -Brnaby/M -Brno/M -broach/DRSG -broacher/M -broadband -broadcaster/M -broadcast/RSGZJ -broadcasts/A -broadcloth/M -broadcloths -broaden/JGRDZ -broadleaved -broadloom/SM -broadminded/P -broadness/S -broadsheet/MS -broadside/SDGM -broadsword/MS -broad/TXSYRNP -Broadway/SM -Brobdingnagian -Brobdingnag/M -brocade/DSGM -broccoli/MS -brochette/SM -brochure/SM -Brockie/M -Brock/M -Brocky/M -Broddie/M -Broddy/M -Broderick/M -Broderic/M -Brodie/M -Brod/M -Brody/M -brogan/MS -Broglie/M -brogue/MS -broiler/M -broil/RDSGZ -brokenhearted/Y -brokenness/MS -broken/YP -brokerage/MS -broker/DMG -broke/RGZ -Brok/M -bromide/MS -bromidic -bromine/MS -bronchial -bronchi/M -bronchiolar -bronchiole/MS -bronchiolitis -bronchitic/S -bronchitis/MS -broncho's -bronchus/M -broncobuster/SM -bronco/SM -bronc/S -Bron/M -Bronnie/M -Bronny/M -Bronson/M -Bronte -brontosaur/SM -brontosaurus/SM -Bronx/M -bronzed/M -bronze/SRDGM -bronzing/M -brooch/MS -brooder/M -broodiness/M -brooding/Y -broodmare/SM -brood/SMRDGZ -broody/PTR -Brookdale/M -Brooke/M -Brookfield/M -Brookhaven/M -brooklet/MS -Brooklyn/M -Brookmont/M -brook/SGDM -brookside -Brook/SM -broom/SMDG -broomstick/MS -Bros -Brose/M -bro/SH -bros/S -brothel/MS -brother/DYMG -brotherhood/SM -brotherliness/MS -brotherly/P -broths -broth/ZMR -brougham/MS -brought -brouhaha/MS -browbeat/NSG -brow/MS -Brownell/M -Browne/M -Brownian/M -Brownie/MS -brownie/MTRS -browning/M -Browning/M -brownish -Brown/MG -brownness/MS -brownout/MS -brownstone/MS -Brownsville/M -brown/YRDMSJGTP -browse -browser/M -brows/SRDGZ -brr -Br/TMN -Brubeck/M -brucellosis/M -Bruce/M -Brucie/M -Bruckner/M -Bruegel/M -Brueghel's -bruin/MS -bruised/U -bruise/JGSRDZ -bruiser/M -Bruis/M -bruit/DSG -Brumidi/M -Brummel/M -brunch/MDSG -Brunei/M -Brunelleschi/M -brunet/S -brunette/SM -Brunhilda/M -Brunhilde/M -Bruno/M -Brunswick/M -brunt/GSMD -brusher/M -brushfire/MS -brushlike -brush/MSRDG -brushoff/S -brushwood/SM -brushwork/MS -brushy/R -brusqueness/MS -brusque/PYTR -Brussels -brutality/SM -brutalization/SM -brutalized/U -brutalizes/AU -brutalize/SDG -brutal/Y -brute/DSRGM -brutishness/SM -brutish/YP -Brutus/M -Bruxelles/M -Bryana/M -Bryan/M -Bryant/M -Bryanty/M -Bryce/M -Bryna/M -Bryn/M -Brynna/M -Brynne/M -Brynner/M -Brynn/RM -Bryon/M -Brzezinski/M -B's -BS -BSA -BSD -Btu -BTU -BTW -bu -bubblegum/S -bubbler/M -bubble/RSDGM -bubbly/TRS -Buber/M -bub/MS -buboes -bubo/M -bubonic -buccaneer/GMDS -Buchanan/M -Bucharest/M -Buchenwald/M -Buchwald/M -buckaroo/SM -buckboard/SM -bucker/M -bucketful/MS -bucket/SGMD -buckeye/SM -buck/GSDRM -buckhorn/M -Buckie/M -Buckingham/M -buckled/U -buckler/MDG -buckle/RSDGMZ -buckles/U -Buckley/M -buckling's -buckling/U -Buck/M -Buckner/M -buckram/GSDM -bucksaw/SM -buckshot/MS -buckskin/SM -buckteeth -bucktooth/DM -buckwheat/SM -Bucky/M -bucolically -bucolic/S -Budapest/M -budded -Buddha/MS -Buddhism/SM -Buddhist/SM -Buddie/M -budding/S -Budd/M -buddy/GSDM -Buddy/M -budge/GDS -budgerigar/MS -budgetary -budgeter/M -budget/GMRDZS -budgie/MS -budging/U -Bud/M -bud/MS -Budweiser/MS -Buehring/M -Buena/M -buffaloes -Buffalo/M -buffalo/MDG -buff/ASGD -buffered/U -bufferer/M -buffer/RDMSGZ -buffet/GMDJS -bufflehead/M -buffoonery/MS -buffoonish -buffoon/SM -buff's -Buffy/M -Buford/M -bugaboo/SM -Bugatti/M -bugbear/SM -bug/CS -bugeyed -bugged/C -buggered -buggering -bugger/SCM! -buggery/M -bugging/C -buggy/RSMT -bugle/GMDSRZ -bugler/M -bug's -Buick/M -builder/SM -building/SM -build/SAG -buildup/MS -built/AUI -Buiron/M -Bujumbura/M -Bukhara/M -Bukharin/M -Bulawayo/M -Bulba/M -bulb/DMGS -bulblet -bulbous -Bulfinch/M -Bulganin/M -Bulgaria/M -Bulgarian/S -bulge/DSGM -bulgy/RT -bulimarexia/S -bulimia/MS -bulimic/S -bulk/GDRMS -bulkhead/SDM -bulkiness/SM -bulky/RPT -bulldogged -bulldogger -bulldogging -bulldog/SM -bulldoze/GRSDZ -bulldozer/M -bullet/GMDS -bulletin/SGMD -bulletproof/SGD -bullfighter/M -bullfighting/M -bullfight/SJGZMR -bullfinch/MS -bullfrog/SM -bullhead/DMS -bullheadedness/SM -bullheaded/YP -bullhide -bullhorn/SM -bullied/M -bullion/SM -bullishness/SM -bullish/PY -bull/MDGS -Bullock/M -bullock/MS -bullpen/MS -bullring/SM -bullseye -bullshit/MS! -bullshitted/! -bullshitter/S! -bullshitting/! -bullwhackers -Bullwinkle/M -bullyboy/MS -bullying/M -bully/TRSDGM -bulrush/SM -Bultmann/M -bulwark/GMDS -bumblebee/MS -bumble/JGZRSD -bumbler/M -bumbling/Y -Bumbry/M -bummed/M -bummer/MS -bummest -bumming/M -bumper/DMG -bump/GZDRS -bumpiness/MS -bumpkin/MS -Bumppo/M -bumptiousness/SM -bumptious/PY -bumpy/PRT -bum/SM -Bunche/M -bunch/MSDG -bunchy/RT -buncombe's -bunco's -Bundestag/M -bundled/U -bundle/GMRSD -bundler/M -Bundy/M -bungalow/MS -bungee/SM -bung/GDMS -bunghole/MS -bungle/GZRSD -bungler/M -bungling/Y -Bunin/M -bunion/SM -bunk/CSGDR -Bunker/M -bunker's/C -bunker/SDMG -bunkhouse/SM -bunkmate/MS -bunko's -bunk's -bunkum/SM -Bunnie/M -Bunni/M -Bunny/M -bunny/SM -Bunsen/SM -bun/SM -bunt/GJZDRS -bunting/M -Buuel/M -Bunyan/M -buoyancy/MS -buoyant/Y -buoy/SMDG -Burbank/M -burbler/M -burble/RSDG -burbs -Burch/M -burden's -burdensomeness/M -burdensome/PY -burden/UGDS -burdock/SM -bureaucracy/MS -bureaucratically -bureaucratic/U -bureaucratization/MS -bureaucratize/SDG -bureaucrat/MS -bureau/MS -burgeon/GDS -burger/M -Burger/M -Burgess/M -burgess/MS -burgher/M -burgh/MRZ -burghs -burglarize/GDS -burglarproof/DGS -burglar/SM -burglary/MS -burgle/SDG -burgomaster/SM -Burgoyne/M -Burg/RM -burg/SZRM -Burgundian/S -Burgundy/MS -burgundy/S -burial/ASM -buried/U -burier/M -Burke/M -Burk/SM -burlap/MS -burler/M -burlesquer/M -burlesque/SRDMYG -burley/M -Burlie/M -burliness/SM -Burlingame/M -Burlington/M -Burl/M -burl/SMDRG -burly/PRT -Burma/M -Burmese -bur/MYS -burnable/S -Burnaby/M -Burnard/M -burned/U -Burne/MS -burner/M -Burnett/M -burn/GZSDRBJ -burning/Y -burnisher/M -burnish/GDRSZ -burnoose/MS -burnout/MS -Burns -Burnside/MS -burnt/YP -burp/SGMD -burr/GSDRM -Burris/M -burrito/S -Burr/M -burro/SM -Burroughs/M -burrower/M -burrow/GRDMZS -bursae -bursa/M -Bursa/M -bursar/MS -bursary/MS -bursitis/MS -burster/M -burst/SRG -Burtie/M -Burt/M -Burton/M -Burty/M -Burundian/S -Burundi/M -bury/ASDG -busboy/MS -busby/SM -Busch/M -buses/A -busgirl/S -bus/GMDSJ -bushel/MDJSG -Bushido/M -bushiness/MS -bushing/M -bush/JMDSRG -bushland -Bush/M -bushman/M -bushmaster/SM -bushmen -Bushnell/M -bushwhacker/M -bushwhacking/M -bushwhack/RDGSZ -bushy/PTR -busily -businesslike -businessman/M -businessmen -business/MS -businesspeople -businessperson/S -businesswoman/M -businesswomen -busker/M -busk/GRM -buskin/SM -bus's/A -buss/D -bustard/MS -buster/M -bustle/GSD -bustling/Y -bust/MSDRGZ -busty/RT -busybody/MS -busy/DSRPTG -busyness/MS -busywork/SM -but/ACS -butane/MS -butcherer/M -butcher/MDRYG -butchery/MS -Butch/M -butch/RSZ -butene/M -Butler/M -butler/SDMG -butted/A -butte/MS -butterball/MS -buttercup/SM -buttered/U -butterfat/MS -Butterfield/M -butterfingered -butterfingers/M -butterfly/MGSD -buttermilk/MS -butternut/MS -butter/RDMGZ -butterscotch/SM -buttery/TRS -butting/M -buttock/SGMD -buttoner/M -buttonhole/GMRSD -buttonholer/M -button's -button/SUDG -buttonweed -buttonwood/SM -buttress/MSDG -butt/SGZMDR -butyl/M -butyrate/M -buxomness/M -buxom/TPYR -Buxtehude/M -buyback/S -buyer/M -buyout/S -buy/ZGRS -buzzard/MS -buzz/DSRMGZ -buzzer/M -buzzword/SM -buzzy -bx -bxs -byelaw's -Byelorussia's -bye/MZS -Byers/M -bygone/S -bylaw/SM -byliner/M -byline/RSDGM -BYOB -bypass/GSDM -bypath/M -bypaths -byplay/S -byproduct/SM -Byram/M -Byran/M -Byrann/M -Byrd/M -byre/SM -Byrle/M -Byrne/M -byroad/MS -Byrom/M -Byronic -Byronism/M -Byron/M -bystander/SM -byte/SM -byway/SM -byword/SM -byzantine -Byzantine/S -Byzantium/M -by/ZR -C -ca -CA -cabala/MS -caballed -caballero/SM -caballing -cabal/SM -cabana/MS -cabaret/SM -cabbage/MGSD -cabbed -cabbing -cabby's -cabdriver/SM -caber/M -Cabernet/M -cabinetmaker/SM -cabinetmaking/MS -cabinet/MS -cabinetry/SM -cabinetwork/MS -cabin/GDMS -cablecast/SG -cable/GMDS -cablegram/SM -cabochon/MS -caboodle/SM -caboose/MS -Cabot/M -Cabrera/M -Cabrini/M -cabriolet/MS -cab/SMR -cabstand/MS -cacao/SM -cacciatore -cache/DSRGM -cachepot/MS -cachet/MDGS -Cacilia/M -Cacilie/M -cackler/M -cackle/RSDGZ -cackly -CACM -cacophonist -cacophonous -cacophony/SM -cacti -cactus/M -CAD -cadaverous/Y -cadaver/SM -caddishness/SM -caddish/PY -Caddric/M -caddy/GSDM -cadence/CSM -cadenced -cadencing -cadent/C -cadenza/MS -cadet/SM -Cadette/S -cadge/DSRGZ -cadger/M -Cadillac/MS -Cadiz/M -Cad/M -cadmium/MS -cadre/SM -cad/SM -caducei -caduceus/M -Caedmon/M -Caesar/MS -caesura/SM -caf/MS -cafeteria/SM -caffeine/SM -caftan/SM -caged/U -Cage/M -cage/MZGDRS -cager/M -cagey/P -cagier -cagiest -cagily -caginess/MS -Cagney/M -Cahokia/M -cahoot/MS -Cahra/M -CAI -Caiaphas/M -caiman's -Caine/M -Cain/MS -Cairistiona/M -cairn/SDM -Cairo/M -caisson/SM -caitiff/MS -Caitlin/M -Caitrin/M -cajole/LGZRSD -cajolement/MS -cajoler/M -cajolery/SM -Cajun/MS -cake/MGDS -cakewalk/SMDG -calabash/SM -calaboose/MS -Calais/M -calamari/S -calamine/GSDM -calamitousness/M -calamitous/YP -calamity/MS -cal/C -calcareousness/M -calcareous/PY -calciferous -calcification/M -calcify/XGNSD -calcimine/GMSD -calcine/SDG -calcite/SM -calcium/SM -Calcomp/M -CalComp/M -CALCOMP/M -calculability/IM -calculable/IP -calculate/AXNGDS -calculated/PY -calculatingly -calculating/U -calculation/AM -calculative -calculator/SM -calculi -calculus/M -Calcutta/M -caldera/SM -Calder/M -Calderon/M -caldron's -Caldwell/M -Caleb/M -Caledonia/M -Cale/M -calendar/MDGS -calender/MDGS -calf/M -calfskin/SM -Calgary/M -Calhoun/M -Caliban/M -caliber/SM -calibrated/U -calibrater's -calibrate/XNGSD -calibrating/A -calibration/M -calibrator/MS -calicoes -calico/M -Calida/M -Calif/M -California/M -Californian/MS -californium/SM -calif's -Caligula/M -Cali/M -caliper/SDMG -caliphate/SM -caliph/M -caliphs -calisthenic/S -calisthenics/M -Callaghan/M -call/AGRDBS -Callahan/M -calla/MS -Calla/MS -Callao/M -callback/S -Callean/M -called/U -callee/M -caller/MS -Calley/M -Callida/M -Callie/M -calligrapher/M -calligraphic -calligraphist/MS -calligraph/RZ -calligraphy/MS -Calli/M -calling/SM -Calliope/M -calliope/SM -callisthenics's -Callisto/M -callosity/MS -callousness/SM -callous/PGSDY -callowness/MS -callow/RTSP -callus/SDMG -Cally/M -calming/Y -calmness/MS -calm/PGTYDRS -Cal/MY -Caloocan/M -caloric/S -calorie/SM -calorific -calorimeter/MS -calorimetric -calorimetry/M -Caltech/M -Calumet/M -calumet/MS -calumniate/NGSDX -calumniation/M -calumniator/SM -calumnious -calumny/MS -calvary/M -Calvary/M -calve/GDS -Calvert/M -calves/M -Calvinism/MS -Calvinistic -Calvinist/MS -Calvin/M -Calv/M -calyces's -Calypso/M -calypso/SM -calyx/MS -Ca/M -CAM -Camacho/M -Camala/M -camaraderie/SM -camber/DMSG -cambial -cambium/SM -Cambodia/M -Cambodian/S -Cambrian/S -cambric/MS -Cambridge/M -camcorder/S -Camden/M -camelhair's -Camella/M -Camellia/M -camellia/MS -Camel/M -Camelopardalis/M -Camelot/M -camel/SM -Camembert/MS -cameo/GSDM -camerae -cameraman/M -cameramen -camera/MS -camerawoman -camerawomen -Cameron/M -Cameroonian/S -Cameroon/SM -came/N -Camey/M -Camila/M -Camile/M -Camilla/M -Camille/M -Cami/M -Camino/M -camion/M -camisole/MS -Cam/M -cammed -Cammie/M -Cammi/M -cam/MS -Cammy/M -Camoens/M -camomile's -camouflage/DRSGZM -camouflager/M -campaigner/M -campaign/ZMRDSG -campanile/SM -campanological -campanologist/SM -campanology/MS -Campbell/M -Campbellsport/M -camper/SM -campesinos -campest -campfire/SM -campground/MS -camphor/MS -Campinas/M -camping/S -Campos -camp's -camp/SCGD -campsite/MS -campus/GSDM -campy/RT -Camry/M -camshaft/SM -Camus/M -Canaanite/SM -Canaan/M -Canada/M -Canadianism/SM -Canadian/S -Canad/M -Canaletto/M -canalization/MS -canalize/GSD -canal/SGMD -canap/S -canard/MS -Canaries -canary/SM -canasta/SM -Canaveral/M -Canberra/M -cancan/SM -cancelate/D -canceled/U -canceler/M -cancellation/MS -cancel/RDZGS -cancer/MS -Cancer/MS -cancerous/Y -Cancun/M -Candace/M -candelabra/S -candelabrum/M -Candice/M -candidacy/MS -Candida/M -candidate/SM -candidature/S -Candide/M -candidly/U -candidness/SM -candid/TRYPS -Candie/M -Candi/SM -candle/GMZRSD -candlelight/SMR -candlelit -candlepower/SM -candler/M -candlestick/SM -Candlewick/M -candlewick/MS -candor/MS -Candra/M -candy/GSDM -Candy/M -canebrake/SM -caner/M -cane/SM -canine/S -caning/M -Canis/M -canister/SGMD -cankerous -canker/SDMG -Can/M -can/MDRSZGJ -cannabis/MS -canned -cannelloni -canner/SM -cannery/MS -Cannes -cannibalism/MS -cannibalistic -cannibalization/SM -cannibalize/GSD -cannibal/SM -cannily/U -canninesses -canniness/UM -canning/M -cannister/SM -cannonade/SDGM -cannonball/SGDM -Cannon/M -cannon/SDMG -cannot -canny/RPUT -canoe/DSGM -canoeist/SM -Canoga/M -canonic -canonicalization -canonicalize/GSD -canonical/SY -canonist/M -canonization/MS -canonized/U -canonize/SDG -canon/SM -Canopus/M -canopy/GSDM -canst -can't -cantabile/S -Cantabrigian -cantaloupe/MS -cantankerousness/SM -cantankerous/PY -cantata/SM -cant/CZGSRD -canted/IA -canteen/MS -Canterbury/M -canter/CM -cantered -cantering -canticle/SM -cantilever/SDMG -canto/MS -cantonal -Cantonese/M -Canton/M -cantonment/SM -canton/MGSLD -Cantor/M -cantor/MS -Cantrell/M -cant's -cants/A -Cantu/M -Canute/M -canvasback/MS -canvas/RSDMG -canvasser/M -canvass/RSDZG -canyon/MS -CAP -capability/ISM -capableness/IM -capable/PI -capabler -capablest -capably/I -capaciousness/MS -capacious/PY -capacitance/SM -capacitate/V -capacitive/Y -capacitor/MS -capacity/IMS -caparison/SDMG -Capek/M -Capella/M -caper/GDM -capeskin/SM -cape/SM -Capet/M -Capetown/M -Caph/M -capillarity/MS -capillary/S -Capistrano/M -capitalism/SM -capitalistic -capitalistically -capitalist/SM -capitalization/SMA -capitalized/AU -capitalizer/M -capitalize/RSDGZ -capitalizes/A -capital/SMY -capita/M -Capitan/M -capitation/CSM -Capitoline/M -Capitol/MS -capitol/SM -capitulate/AXNGSD -capitulation/MA -caplet/S -cap/MDRSZB -Capone/M -capon/SM -capo/SM -Capote/M -capped/UA -capping/M -cappuccino/MS -Cappy/M -Capra/M -Caprice/M -caprice/MS -capriciousness/MS -capricious/PY -Capricorn/MS -Capri/M -caps/AU -capsicum/MS -capsize/SDG -capstan/MS -capstone/MS -capsular -capsule/MGSD -capsulize/GSD -captaincy/MS -captain/SGDM -caption/GSDRM -captiousness/SM -captious/PY -captivate/XGNSD -captivation/M -captivator/SM -captive/MS -captivity/SM -Capt/M -captor/SM -capture/AGSD -capturer/MS -capt/V -Capulet/M -Caputo/M -Caracalla/M -Caracas/M -caracul's -carafe/SM -Caralie/M -Cara/M -caramelize/SDG -caramel/MS -carapace/SM -carapaxes -carat/SM -Caravaggio/M -caravan/DRMGS -caravaner/M -caravansary/MS -caravanserai's -caravel/MS -caraway/MS -carbide/MS -carbine/MS -carbohydrate/MS -carbolic -Carboloy/M -carbonaceous -carbonate/SDXMNG -carbonation/M -Carbondale/M -Carbone/MS -carbonic -carboniferous -Carboniferous -carbonization/SAM -carbonizer/AS -carbonizer's -carbonizes/A -carbonize/ZGRSD -carbon/MS -carbonyl/M -carborundum -Carborundum/MS -carboy/MS -carbuncle/SDM -carbuncular -carburetor/MS -carburetter/S -carburettor/SM -carcase/MS -carcass/SM -Carce/M -carcinogenic -carcinogenicity/MS -carcinogen/SM -carcinoma/SM -cardamom/MS -cardboard/MS -card/EDRSG -Cardenas/M -carder/MS -carder's/E -cardholders -cardiac/S -Cardiff/M -cardigan/SM -cardinality/SM -cardinal/SYM -carding/M -Cardin/M -Cardiod/M -cardiogram/MS -cardiograph/M -cardiographs -cardioid/M -cardiologist/SM -cardiology/MS -cardiomegaly/M -cardiopulmonary -cardiovascular -card's -cardsharp/ZSMR -CARE -cared/U -careen/DSG -careerism/M -careerist/MS -career/SGRDM -carefree -carefuller -carefullest -carefulness/MS -careful/PY -caregiver/S -carelessness/MS -careless/YP -Care/M -Carena/M -Caren/M -carer/M -care/S -Caresa/M -Caressa/M -Caresse/M -caresser/M -caressing/Y -caressive/Y -caress/SRDMVG -caretaker/SM -caret/SM -careworn -Carey/M -carfare/MS -cargoes -cargo/M -carhopped -carhopping -carhop/SM -Caria/M -Caribbean/S -Carib/M -caribou/MS -caricature/GMSD -caricaturisation -caricaturist/MS -caricaturization -Carie/M -caries/M -carillonned -carillonning -carillon/SM -Caril/M -Carilyn/M -Cari/M -Carina/M -Carine/M -caring/U -Carin/M -Cariotta/M -carious -Carissa/M -Carita/M -Caritta/M -carjack/GSJDRZ -Carla/M -Carlee/M -Carleen/M -Carlene/M -Carlen/M -Carletonian/M -Carleton/M -Carley/M -Carlie/M -Carlina/M -Carline/M -Carling/M -Carlin/M -Carlita/M -Carl/MNG -carload/MSG -Carlo/SM -Carlota/M -Carlotta/M -Carlsbad/M -Carlson/M -Carlton/M -Carlye/M -Carlyle/M -Carly/M -Carlyn/M -Carlynne/M -Carlynn/M -Carma/M -Carmela/M -Carmelia/M -Carmelina/M -Carmelita/M -Carmella/M -Carmelle/M -Carmel/M -Carmelo/M -Carmencita/M -Carmen/M -Carmichael/M -Carmina/M -Carmine/M -carmine/MS -Carmita/M -Car/MNY -Carmon/M -carnage/MS -carnality/SM -carnal/Y -Carnap/M -carnation/IMS -Carnegie/M -carnelian/SM -Carney/M -carney's -carnival/MS -carnivore/SM -carnivorousness/MS -carnivorous/YP -Carnot/M -Carny/M -carny/SDG -carob/SM -Carola/M -Carolan/M -Carolann/M -Carolee/M -Carole/M -caroler/M -Carolina/MS -Caroline/M -Carolingian -Carolinian/S -Carolin/M -Caroljean/M -Carol/M -carol/SGZMRD -Carolus/M -Carolyne/M -Carolyn/M -Carolynn/M -Caro/M -carom/GSMD -Caron/M -carotene/MS -carotid/MS -carousal/MS -carousel/MS -carouser/M -carouse/SRDZG -carpal/SM -Carpathian/MS -carpel/SM -carpenter/DSMG -carpentering/M -Carpenter/M -carpentry/MS -carper/M -carpetbagged -carpetbagger/MS -carpetbagging -carpetbag/MS -carpeting/M -carpet/MDJGS -carpi/M -carping/Y -carp/MDRSGZ -carpool/DGS -carport/MS -carpus/M -carrageen/M -Carree/M -carrel/SM -carriage/SM -carriageway/SM -Carrie/M -carrier/M -Carrier/M -Carrillo/M -Carri/M -carrion/SM -Carrissa/M -Carr/M -Carroll/M -Carrol/M -carrot/MS -carroty/RT -carrousel's -carryall/MS -Carry/MR -carryout/S -carryover/S -carry/RSDZG -carsickness/SM -carsick/P -Carson/M -cartage/MS -cartel/SM -carte/M -carter/M -Carter/M -Cartesian -Carthage/M -Carthaginian/S -carthorse/MS -Cartier/M -cartilage/MS -cartilaginous -cartload/MS -cart/MDRGSZ -Cart/MR -cartographer/MS -cartographic -cartography/MS -carton/GSDM -cartoon/GSDM -cartoonist/MS -cartridge/SM -cartwheel/MRDGS -Cartwright/M -Carty/RM -Caruso/M -carve/DSRJGZ -carven -carver/M -Carver/M -carving/M -caryatid/MS -Caryl/M -Cary/M -Caryn/M -car/ZGSMDR -casaba/SM -Casablanca/M -Casals/M -Casandra/M -Casanova/SM -Casar/M -casbah/M -cascade/MSDG -Cascades/M -cascara/MS -casebook/SM -case/DSJMGL -cased/U -caseharden/SGD -casein/SM -caseload/MS -Case/M -casement/SM -caseworker/M -casework/ZMRS -Casey/M -cashbook/SM -cashew/MS -cash/GZMDSR -cashier/SDMG -cashless -Cash/M -cashmere/MS -Casie/M -Casi/M -casing/M -casino/MS -casket/SGMD -cask/GSDM -Caspar/M -Casper/M -Caspian -Cass -Cassandra/SM -Cassandre/M -Cassandry/M -Cassatt/M -Cassaundra/M -cassava/MS -casserole/MGSD -cassette/SM -Cassey/M -cassia/MS -Cassie/M -Cassi/M -cassino's -Cassiopeia/M -Cassite/M -Cassius/M -cassock/SDM -Cassondra/M -cassowary/SM -Cassy/M -Castaneda/M -castanet/SM -castaway/SM -castellated -caste/MHS -caster/M -cast/GZSJMDR -castigate/XGNSD -castigation/M -castigator/SM -Castile's -Castillo/M -casting/M -castle/GMSD -castoff/S -Castor/M -castor's -castrate/DSNGX -castration/M -Castries/M -Castro/M -casts/A -casualness/SM -casual/SYP -casualty/SM -casuistic -casuist/MS -casuistry/SM -cataclysmal -cataclysmic -cataclysm/MS -catacomb/MS -catafalque/SM -Catalan/MS -catalepsy/MS -cataleptic/S -Catalina/M -cataloger/M -catalog/SDRMZG -Catalonia/M -catalpa/SM -catalysis/M -catalyst/SM -catalytic -catalytically -catalyze/DSG -catamaran/MS -catapult/MGSD -cataract/MS -Catarina/M -catarrh/M -catarrhs -catastrophe/SM -catastrophic -catastrophically -catatonia/MS -catatonic/S -Catawba/M -catbird/MS -catboat/SM -catcall/SMDG -catchable/U -catchall/MS -catch/BRSJLGZ -catcher/M -catchment/SM -catchpenny/S -catchphrase/S -catchup/MS -catchword/MS -catchy/TR -catechism/MS -catechist/SM -catechize/SDG -catecholamine/MS -categoric -categorical/Y -categorization/MS -categorized/AU -categorize/RSDGZ -category/MS -Cate/M -catenate/NF -catenation/MF -catercorner -caterer/M -cater/GRDZ -Caterina/M -catering/M -Caterpillar -caterpillar/SM -caterwaul/DSG -catfish/MS -catgut/SM -Catha/M -Catharina/M -Catharine/M -catharses -catharsis/M -cathartic/S -Cathay/M -cathedral/SM -Cathee/M -Catherina/M -Catherine/M -Catherin/M -Cather/M -Cathe/RM -catheterize/GSD -catheter/SM -Cathie/M -Cathi/M -Cathleen/M -Cathlene/M -cathode/MS -cathodic -catholicism -Catholicism/SM -catholicity/MS -catholic/MS -Catholic/S -Cathrine/M -Cathrin/M -Cathryn/M -Cathyleen/M -Cathy/M -Catie/M -Catiline/M -Cati/M -Catina/M -cationic -cation/MS -catkin/SM -Catlaina/M -Catlee/M -catlike -Catlin/M -catnapped -catnapping -catnap/SM -catnip/MS -Cato/M -Catrina/M -Catriona/M -Catskill/SM -cat/SMRZ -catsup's -cattail/SM -catted -cattery/M -cattily -cattiness/SM -catting -cattle/M -cattleman/M -cattlemen -Catt/M -catty/PRST -Catullus/M -CATV -catwalk/MS -Caty/M -Caucasian/S -Caucasoid/S -Caucasus/M -Cauchy/M -caucus/SDMG -caudal/Y -caught/U -cauldron/MS -cauliflower/MS -caulker/M -caulk/JSGZRD -causality/SM -causal/YS -causate/XVN -causation/M -causative/SY -cause/DSRGMZ -caused/U -causeless -causerie/MS -causer/M -causeway/SGDM -caustically -causticity/MS -caustic/YS -cauterization/SM -cauterized/U -cauterize/GSD -cautionary -cautioner/M -caution/GJDRMSZ -cautiousness's/I -cautiousness/SM -cautious/PIY -cavalcade/MS -cavalierness/M -cavalier/SGYDP -cavalryman/M -cavalrymen -cavalry/MS -caveat/SM -caveatted -caveatting -cave/GFRSD -caveman/M -cavemen -Cavendish/M -caver/M -cavern/GSDM -cavernous/Y -cave's -caviar/MS -caviler/M -cavil/SJRDGZ -caving/MS -cavity/MFS -cavort/SDG -Cavour/M -caw/SMDG -Caxton/M -Caye/M -Cayenne/M -cayenne/SM -Cayla/M -Cayman/M -cayman/SM -cay's -cay/SC -Cayuga/M -cayuse/SM -Caz/M -Cazzie/M -c/B -CB -CBC -Cb/M -CBS -cc -Cchaddie/M -CCTV -CCU -CD -CDC/M -Cd/M -CDT -Ce -cease/DSCG -ceasefire/S -ceaselessness/SM -ceaseless/YP -ceasing/U -Ceausescu/M -Cebuano/M -Cebu/M -ceca -cecal -Cecelia/M -Cece/M -Cecile/M -Ceciley/M -Cecilia/M -Cecilio/M -Cecilius/M -Cecilla/M -Cecil/M -Cecily/M -cecum/M -cedar/SM -ceded/A -cede/FRSDG -ceder's/F -ceder/SM -cedes/A -cedilla/SM -ceding/A -Ced/M -Cedric/M -ceilidh/M -ceiling/MDS -Ceil/M -celandine/MS -Celanese/M -Celebes's -celebrant/MS -celebratedness/M -celebrated/P -celebrate/XSDGN -celebration/M -celebrator/MS -celebratory -celebrity/MS -Cele/M -Celene/M -celerity/SM -celery/SM -Celesta/M -celesta/SM -Celeste/M -celestial/YS -Celestia/M -Celestina/M -Celestine/M -Celestyna/M -Celestyn/M -Celia/M -celibacy/MS -celibate/SM -Celie/M -Celina/M -Celinda/M -Celine/M -Celinka/M -Celisse/M -Celka/M -cellarer/M -cellar/RDMGS -Celle/M -cell/GMDS -Cellini/M -cellist/SM -Cello/M -cello/MS -cellophane/SM -cellphone/S -cellular/SY -cellulite/S -celluloid/SM -cellulose/SM -Celsius/S -Celtic/SM -Celt/MS -cementa -cementer/M -cementum/SM -cement/ZGMRDS -cemetery/MS -cenobite/MS -cenobitic -cenotaph/M -cenotaphs -Cenozoic -censer/MS -censored/U -censor/GDMS -censorial -censoriousness/MS -censorious/YP -censorship/MS -censure/BRSDZMG -censurer/M -census/SDMG -centaur/SM -Centaurus/M -centavo/SM -centenarian/MS -centenary/S -centennial/YS -center/AC -centerboard/SM -centered -centerer/S -centerfold/S -centering/SM -centerline/SM -centerpiece/SM -center's -Centigrade -centigrade/S -centigram/SM -centiliter/MS -centime/SM -centimeter/SM -centipede/MS -Centralia/M -centralism/M -centralist/M -centrality/MS -centralization/CAMS -centralize/CGSD -centralizer/SM -centralizes/A -central/STRY -centrefold's -Centrex -CENTREX/M -centric/F -centrifugal/SY -centrifugate/NM -centrifugation/M -centrifuge/GMSD -centripetal/Y -centrist/MS -centroid/MS -cent/SZMR -centurion/MS -century/MS -CEO -cephalic/S -Cepheid -Cepheus/M -ceramicist/S -ceramic/MS -ceramist/MS -cerate/MD -Cerberus/M -cereal/MS -cerebellar -cerebellum/MS -cerebra -cerebral/SY -cerebrate/XSDGN -cerebration/M -cerebrum/MS -cerement/SM -ceremonial/YSP -ceremoniousness/MS -ceremoniousness's/U -ceremonious/YUP -ceremony/MS -Cerenkov/M -Ceres/M -Cerf/M -cerise/SM -cerium/MS -cermet/SM -CERN/M -certainer -certainest -certainty/UMS -certain/UY -cert/FS -certifiable -certifiably -certificate/SDGM -certification/AMC -certified/U -certifier/M -certify/DRSZGNX -certiorari/M -certitude/ISM -cerulean/MS -Cervantes/M -cervical -cervices/M -cervix/M -Cesarean -cesarean/S -Cesare/M -Cesar/M -Cesaro/M -cesium/MS -cessation/SM -cession/FAMSK -Cessna/M -cesspit/M -cesspool/SM -Cesya/M -cetacean/S -cetera/S -Cetus/M -Ceylonese -Ceylon/M -Cezanne/S -cf -CF -CFC -Cf/M -CFO -cg -Chablis/SM -Chaddie/M -Chadd/M -Chaddy/M -Chadian/S -Chad/M -Chadwick/M -chafe/GDSR -chafer/M -chaffer/DRG -chafferer/M -Chaffey/M -chaff/GRDMS -chaffinch/SM -Chagall/M -chagrin/DGMS -Chaim/M -chainlike -chain's -chainsaw/SGD -chain/SGUD -chairlady/M -chairlift/MS -chairman/MDGS -chairmanship/MS -chairmen -chairperson/MS -chair/SGDM -chairwoman/M -chairwomen -chaise/SM -chalcedony/MS -Chaldea/M -Chaldean/M -chalet/SM -chalice/DSM -chalkboard/SM -chalk/DSMG -chalkiness/S -chalkline -chalky/RPT -challenged/U -challenger/M -challenge/ZGSRD -challenging/Y -challis/SM -Chalmers -chamberer/M -Chamberlain/M -chamberlain/MS -chambermaid/MS -chamberpot/S -Chambers/M -chamber/SZGDRM -chambray/MS -chameleon/SM -chamfer/DMGS -chammy's -chamois/DSMG -chamomile/MS -champagne/MS -champaign/M -champ/DGSZ -champion/MDGS -championship/MS -Champlain/M -chanced/M -chance/GMRSD -chancellery/SM -chancellorship/SM -chancellor/SM -Chancellorsville/M -chancel/SM -Chance/M -chancery/SM -Chancey/M -chanciness/S -chancing/M -chancre/SM -chancy/RPT -Chandal/M -Chanda/M -chandelier/SM -Chandigarh/M -Chandler/M -chandler/MS -Chandragupta/M -Chandra/M -Chandrasekhar/M -Chandy/M -Chanel/M -Chane/M -Chaney/M -Changchun/M -changeabilities -changeability/UM -changeableness/SM -changeable/U -changeably/U -changed/U -change/GZRSD -changeless -changeling/M -changeover/SM -changer/M -changing/U -Chang/M -Changsha/M -Chan/M -Channa/M -channeler/M -channeling/M -channelization/SM -channelize/GDS -channellings -channel/MDRZSG -Channing/M -chanson/SM -Chantalle/M -Chantal/M -chanter/M -chanteuse/MS -chantey/SM -chanticleer/SM -Chantilly/M -chantry/MS -chant/SJGZMRD -chanty's -Chanukah's -Chao/M -chaos/SM -chaotic -chaotically -chaparral/MS -chapbook/SM -chapeau/MS -chapel/MS -chaperonage/MS -chaperoned/U -chaperone's -chaperon/GMDS -chaplaincy/MS -chaplain/MS -chaplet/SM -Chaplin/M -Chapman/M -chap/MS -Chappaquiddick/M -chapped -chapping -chapter/SGDM -Chara -charabanc/MS -characterful -characteristically/U -characteristic/SM -characterizable/MS -characterization/MS -characterize/DRSBZG -characterized/U -characterizer/M -characterless -character/MDSG -charade/SM -charbroil/SDG -charcoal/MGSD -Chardonnay -chardonnay/S -chard/SM -chargeableness/M -chargeable/P -charged/U -charge/EGRSDA -charger/AME -chargers -char/GS -Charil/M -charily -chariness/MS -Charin/M -charioteer/GSDM -Chariot/M -chariot/SMDG -Charis -charisma/M -charismata -charismatically -charismatic/S -Charissa/M -Charisse/M -charitablenesses -charitableness/UM -charitable/UP -charitably/U -Charita/M -Charity/M -charity/MS -charlady/M -Charla/M -charlatanism/MS -charlatanry/SM -charlatan/SM -Charlean/M -Charleen/M -Charlemagne/M -Charlena/M -Charlene/M -Charles/M -Charleston/SM -Charley/M -Charlie/M -Charline/M -Charlot/M -Charlotta/M -Charlotte/M -Charlottesville/M -Charlottetown/M -Charlton/M -Charmaine/M -Charmain/M -Charmane/M -charmer/M -Charmian/M -Charmine/M -charming/RYT -Charmin/M -Charmion/M -charmless -charm/SGMZRD -Charolais -Charo/M -Charon/M -charred -charring -charted/U -charter/AGDS -chartered/U -charterer/SM -charter's -chartist/SM -Chartres/M -chartreuse/MS -chartroom/S -chart/SJMRDGBZ -charwoman/M -charwomen -Charybdis/M -Charyl/M -chary/PTR -Chas -chase/DSRGZ -Chase/M -chaser/M -chasing/M -Chasity/M -chasm/SM -chassis/M -chastely -chasteness/SM -chasten/GSD -chaste/UTR -chastisement/SM -chastiser/M -chastise/ZGLDRS -Chastity/M -chastity/SM -chastity's/U -chasuble/SM -Chateaubriand -chteau/M -chateaus -chteaux -chtelaine/SM -chat/MS -Chattahoochee/M -Chattanooga/M -chatted -chattel/MS -chatterbox/MS -chatterer/M -Chatterley/M -chatter/SZGDRY -Chatterton/M -chattily -chattiness/SM -chatting -chatty/RTP -Chaucer/M -chauffeur/GSMD -Chaunce/M -Chauncey/M -Chautauqua/M -chauvinism/MS -chauvinistic -chauvinistically -chauvinist/MS -Chavez/M -chaw -Chayefsky/M -cheapen/DG -cheapish -cheapness/MS -cheapskate/MS -cheap/YRNTXSP -cheater/M -cheat/RDSGZ -Chechen/M -Chechnya/M -checkable/U -checkbook/MS -checked/UA -checkerboard/MS -checker/DMG -check/GZBSRDM -checklist/S -checkmate/MSDG -checkoff/SM -checkout/S -checkpoint/MS -checkroom/MS -check's/A -checks/A -checksummed -checksumming -checksum/SM -checkup/MS -Cheddar/MS -cheddar/S -cheekbone/SM -cheek/DMGS -cheekily -cheekiness/SM -cheeky/PRT -cheep/GMDS -cheerer/M -cheerfuller -cheerfullest -cheerfulness/MS -cheerful/YP -cheerily -cheeriness/SM -cheerio/S -Cheerios/M -cheerleader/SM -cheerlessness/SM -cheerless/PY -cheers/S -cheery/PTR -cheer/YRDGZS -cheeseburger/SM -cheesecake/SM -cheesecloth/M -cheesecloths -cheeseparing/S -cheese/SDGM -cheesiness/SM -cheesy/PRT -cheetah/M -cheetahs -Cheeto/M -Cheever/M -cheffed -cheffing -chef/SM -Chekhov/M -chelate/XDMNG -chelation/M -Chelsae/M -Chelsea/M -Chelsey/M -Chelsie/M -Chelsy/M -Chelyabinsk/M -chem -Che/M -chemic -chemical/SYM -chemiluminescence/M -chemiluminescent -chemise/SM -chemistry/SM -chemist/SM -chemotherapeutic/S -chemotherapy/SM -chemurgy/SM -Chengdu -Cheng/M -chenille/SM -Chen/M -Cheops/M -Chere/M -Cherey/M -Cherianne/M -Cherice/M -Cherida/M -Cherie/M -Cherilyn/M -Cherilynn/M -Cheri/M -Cherin/M -Cherise/M -cherisher/M -cherish/GDRS -Cherish/M -Cheriton/M -Cherlyn/M -Cher/M -Chernenko/M -Chernobyl/M -Cherokee/MS -cheroot/MS -Cherri/M -Cherrita/M -Cherry/M -cherry/SM -chert/MS -cherubic -cherubim/S -cherub/SM -chervil/MS -Cherye/M -Cheryl/M -Chery/M -Chesapeake/M -Cheshire/M -Cheslie/M -chessboard/SM -chessman/M -chessmen -chess/SM -Chesterfield/M -chesterfield/MS -Chester/M -Chesterton/M -chestful/S -chest/MRDS -chestnut/SM -Cheston/M -chesty/TR -Chet/M -Chevalier/M -chevalier/SM -Cheviot/M -cheviot/S -Chev/M -Chevrolet/M -chevron/DMS -Chevy/M -chewer/M -chew/GZSDR -chewiness/S -chewy/RTP -Cheyenne/SM -chg -chge -Chiang/M -chianti/M -Chianti/S -chiaroscuro/SM -Chiarra/M -Chiba/M -Chicagoan/SM -Chicago/M -Chicana/MS -chicane/MGDS -chicanery/MS -Chicano/MS -chichi/RTS -chickadee/SM -Chickasaw/SM -chickenfeed -chicken/GDM -chickenhearted -chickenpox/MS -Chickie/M -Chick/M -chickpea/MS -chickweed/MS -chick/XSNM -Chicky/M -chicle/MS -Chic/M -chicness/S -Chico/M -chicory/MS -chic/SYRPT -chide/GDS -chiding/Y -chiefdom/MS -chieftain/SM -chief/YRMST -chiffonier/MS -chiffon/MS -chigger/MS -chignon/MS -Chihuahua/MS -chihuahua/S -chilblain/MS -childbearing/MS -childbirth/M -childbirths -childcare/S -childes -child/GMYD -childhood/MS -childishness/SM -childish/YP -childlessness/SM -childless/P -childlikeness/M -childlike/P -childminders -childproof/GSD -childrearing -children/M -Chilean/S -Chile/MS -chile's -chilies -chili/M -chiller/M -chilliness/MS -chilling/Y -chilli's -chill/MRDJGTZPS -chillness/MS -chilly/TPRS -Chilton/M -Chi/M -chimaera's -chimaerical -Chimborazo/M -chime/DSRGMZ -Chimera/S -chimera/SM -chimeric -chimerical -chimer/M -Chimiques -chimney/SMD -chimpanzee/SM -chimp/MS -chi/MS -Chimu/M -Ch'in -China/M -Chinaman/M -Chinamen -china/MS -Chinatown/SM -chinchilla/SM -chine/MS -Chinese/M -Ching/M -chink/DMSG -chinless -Chin/M -chinned -chinner/S -chinning -chino/MS -Chinook/MS -chin/SGDM -chinstrap/S -chintz/SM -chintzy/TR -chipboard/M -Chipewyan/M -Chip/M -chipmunk/SM -chipped -Chippendale/M -chipper/DGS -Chippewa/MS -chipping/MS -chip/SM -Chiquia/M -Chiquita/M -chiral -Chirico/M -chirography/SM -chiropodist/SM -chiropody/MS -chiropractic/MS -chiropractor/SM -chirp/GDS -chirpy/RT -chirrup/DGS -chiseler/M -chisel/ZGSJMDR -Chisholm/M -Chisinau/M -chitchat/SM -chitchatted -chitchatting -chitinous -chitin/SM -chit/SM -Chittagong/M -chitterlings -chivalric -chivalrously/U -chivalrousness/MS -chivalrous/YP -chivalry/SM -chive/GMDS -chivvy/D -chivying -chlamydiae -chlamydia/S -Chloe/M -Chloette/M -Chlo/M -chloral/MS -chlorate/M -chlordane/MS -chloride/MS -chlorinated/C -chlorinates/C -chlorinate/XDSGN -chlorination/M -chlorine/MS -Chloris -chlorofluorocarbon/S -chloroform/DMSG -chlorophyll/SM -chloroplast/MS -chloroquine/M -chm -Ch/MGNRS -chockablock -chock/SGRDM -chocoholic/S -chocolate/MS -chocolaty -Choctaw/MS -choiceness/M -choice/RSMTYP -choirboy/MS -choirmaster/SM -choir/SDMG -chokeberry/M -chokecherry/SM -choke/DSRGZ -choker/M -chokes/M -choking/Y -cholera/SM -choleric -choler/SM -cholesterol/SM -choline/M -cholinesterase/M -chomp/DSG -Chomsky/M -Chongqing -choose/GZRS -chooser/M -choosiness/S -choosy/RPT -chophouse/SM -Chopin/M -chopped -chopper/SDMG -choppily -choppiness/MS -chopping -choppy/RPT -chop/S -chopstick/SM -chorale/MS -choral/SY -chordal -chordata -chordate/MS -chording/M -chord/SGMD -chorea/MS -chore/DSGNM -choreographer/M -choreographic -choreographically -choreographs -choreography/MS -choreograph/ZGDR -chorines -chorion/M -chorister/SM -choroid/S -chortler/M -chortle/ZGDRS -chorus/GDSM -chosen/U -chose/S -Chou/M -chowder/SGDM -chow/DGMS -Chretien/M -Chris/M -chrism/SM -chrissake -Chrisse/M -Chrissie/M -Chrissy/M -Christabella/M -Christabel/M -Christalle/M -Christal/M -Christa/M -Christan/M -Christchurch/M -Christean/M -Christel/M -Christendom/MS -christened/U -christening/SM -Christen/M -christen/SAGD -Christensen/M -Christenson/M -Christiana/M -Christiane/M -Christianity/SM -Christianize/GSD -Christian/MS -Christiano/M -Christiansen/M -Christians/N -Christie/SM -Christi/M -Christina/M -Christine/M -Christin/M -Christlike -Christmas/SM -Christmastide/SM -Christmastime/S -Christoffel/M -Christoffer/M -Christoforo/M -Christoper/M -Christophe/M -Christopher/M -Christoph/MR -Christophorus/M -Christos/M -Christ/SMN -Christye/M -Christyna/M -Christy's -Chrisy/M -chroma/M -chromate/M -chromatically -chromaticism/M -chromaticness/M -chromatic/PS -chromatics/M -chromatin/MS -chromatogram/MS -chromatograph -chromatographic -chromatography/M -chrome/GMSD -chromic -chromite/M -chromium/SM -chromosomal -chromosome/MS -chromosphere/M -chronically -chronicled/U -chronicler/M -chronicle/SRDMZG -chronic/S -chronograph/M -chronographs -chronography -chronological/Y -chronologist/MS -chronology/MS -chronometer/MS -chronometric -Chrotoem/M -chrysalids -chrysalis/SM -Chrysa/M -chrysanthemum/MS -Chrysler/M -Chrysostom/M -Chrystal/M -Chrystel/M -Chryste/M -chubbiness/SM -chubby/RTP -chub/MS -Chucho/M -chuck/GSDM -chuckhole/SM -chuckle/DSG -chuckling/Y -Chuck/M -chuff/DM -chugged -chugging -chug/MS -Chukchi/M -chukka/S -Chumash/M -chummed -chummily -chumminess/MS -chumming -chum/MS -chummy/SRTP -chumping/M -chump/MDGS -Chungking's -Chung/M -chunkiness/MS -chunk/SGDM -chunky/RPT -chuntering -churchgoer/SM -churchgoing/SM -Churchillian -Churchill/M -churchliness/M -churchly/P -churchman/M -church/MDSYG -churchmen -Church/MS -churchwarden/SM -churchwoman/M -churchwomen -churchyard/SM -churlishness/SM -churlish/YP -churl/SM -churner/M -churning/M -churn/SGZRDM -chute/DSGM -chutney/MS -chutzpah/M -chutzpahs -chutzpa/SM -Chuvash/M -ch/VT -chyme/SM -Ci -CIA -ciao/S -cicada/MS -cicatrice/S -cicatrix's -Cicely/M -Cicero/M -cicerone/MS -ciceroni -Ciceronian -Cicily/M -CID -cider's/C -cider/SM -Cid/M -Ciel/M -cigarette/MS -cigarillo/MS -cigar/SM -cilantro/S -cilia/M -ciliate/FDS -ciliately -cilium/M -Cilka/M -cinch/MSDG -cinchona/SM -Cincinnati/M -cincture/MGSD -Cinda/M -Cindee/M -Cindelyn/M -cinder/DMGS -Cinderella/MS -Cindie/M -Cindi/M -Cindra/M -Cindy/M -cine/M -cinema/SM -cinematic -cinematographer/MS -cinematographic -cinematography/MS -Cinerama/M -cinnabar/MS -Cinnamon/M -cinnamon/MS -ciphered/C -cipher/MSGD -ciphers/C -cir -circa -circadian -Circe/M -circler/M -circle/RSDGM -circlet/MS -circuital -circuit/GSMD -circuitousness/MS -circuitous/YP -circuitry/SM -circuity/MS -circulant -circularity/SM -circularize/GSD -circularness/M -circular/PSMY -circulate/ASDNG -circulation/MA -circulations -circulative -circulatory -circumcise/DRSXNG -circumcised/U -circumciser/M -circumcision/M -circumference/SM -circumferential/Y -circumflex/MSDG -circumlocution/MS -circumlocutory -circumnavigate/DSNGX -circumnavigational -circumnavigation/M -circumpolar -circumscribe/GSD -circumscription/SM -circumspection/SM -circumspect/Y -circumsphere -circumstance/SDMG -circumstantial/YS -circumvention/MS -circumvent/SBGD -circus/SM -Cirillo/M -Cirilo/M -Ciro/M -cirque/SM -cirrhoses -cirrhosis/M -cirrhotic/S -cirri/M -cirrus/M -Cissiee/M -Cissy/M -cistern/SM -citadel/SM -citations/I -citation/SMA -cit/DSG -cite/ISDAG -Citibank/M -citified -citizenry/SM -citizenship/MS -citizen/SYM -citrate/DM -citric -Citroen/M -citronella/MS -citron/MS -citrus/SM -city/DSM -cityscape/MS -citywide -civet/SM -civic/S -civics/M -civilian/SM -civility/IMS -civilizational/MS -civilization/AMS -civilizedness/M -civilized/PU -civilize/DRSZG -civilizer/M -civilizes/AU -civil/UY -civvies -ck/C -clack/SDG -cladding/SM -clads -clad/U -Claiborne/M -Claiborn/M -claimable -claimant/MS -claim/CDRSKAEGZ -claimed/U -claimer/KMACE -Claire/M -Clair/M -Clairol/M -clairvoyance/MS -clairvoyant/YS -clambake/MS -clamberer/M -clamber/SDRZG -clammed -clammily -clamminess/MS -clamming -clam/MS -clammy/TPR -clamorer/M -clamor/GDRMSZ -clamorousness/UM -clamorous/PUY -clampdown/SM -clamper/M -clamp/MRDGS -clamshell/MS -Clancy/M -clandestineness/M -clandestine/YP -clanger/M -clangor/MDSG -clangorous/Y -clang/SGZRD -clanking/Y -clank/SGDM -clan/MS -clannishness/SM -clannish/PY -clansman/M -clansmen -clapboard/SDGM -Clapeyron/M -clapped -clapper/GMDS -clapping -clap/S -Clapton/M -claptrap/SM -claque/MS -Clarabelle/M -Clara/M -Clarance/M -Clare/M -Claremont/M -Clarence/M -Clarendon/M -Claresta/M -Clareta/M -claret/MDGS -Claretta/M -Clarette/M -Clarey/M -Claribel/M -Clarice/M -Clarie/M -clarification/M -clarifier/M -clarify/NGXDRS -Clari/M -Clarinda/M -Clarine/M -clarinetist/SM -clarinet/SM -clarinettist's -clarion/GSMD -Clarissa/M -Clarisse/M -Clarita/M -clarities -clarity/UM -Clarke/M -Clark/M -Clarridge/M -Clary/M -clasher/M -clash/RSDG -clasped/M -clasper/M -clasp's -clasp/UGSD -classer/M -class/GRSDM -classical/Y -classicism/SM -classicist/SM -classic/S -classics/M -classifiable/U -classification/AMC -classificatory -classified/S -classifier/SM -classify/CNXASDG -classiness/SM -classless/P -classmate/MS -classroom/MS -classwork/M -classy/PRT -clatterer/M -clattering/Y -clatter/SGDR -clattery -Claudelle/M -Claudell/M -Claude/M -Claudetta/M -Claudette/M -Claudia/M -Claudian/M -Claudianus/M -Claudie/M -Claudina/M -Claudine/M -Claudio/M -Claudius/M -clausal -clause/MS -Clausen/M -Clausewitz/M -Clausius/M -Claus/NM -claustrophobia/SM -claustrophobic -clave/RM -clave's/F -clavichord/SM -clavicle/MS -clavier/MS -clawer/M -claw/GDRMS -Clayborne/M -Clayborn/M -Claybourne/M -clayey -clayier -clayiest -Clay/M -clay/MDGS -claymore/MS -Clayson/M -Clayton/M -Clea/M -cleanable -cleaner/MS -cleaning/SM -cleanliness/UMS -cleanly/PRTU -cleanness/MSU -cleanse -cleanser/M -cleans/GDRSZ -cleanup/MS -clean/UYRDPT -clearance/MS -clearcut -clearer/M -clearheadedness/M -clearheaded/PY -clearinghouse/S -clearing/MS -clearly -clearness/MS -clears -clear/UTRD -Clearwater/M -clearway/M -cleat/MDSG -cleavage/MS -cleaver/M -cleave/RSDGZ -Cleavland/M -clef/SM -cleft/MDGS -clematis/MS -clemence -Clemenceau/M -Clemence/M -clemency/ISM -Clemente/M -Clementia/M -Clementina/M -Clementine/M -Clementius/M -clement/IY -Clement/MS -clements -Clemmie/M -Clemmy/M -Clemons -Clemson/M -Clem/XM -clenches -clenching -clench/UD -Cleo/M -Cleon/M -Cleopatra/M -Clerc/M -clerestory/MS -clergyman/M -clergymen -clergy/MS -clergywoman -clergywomen -clericalism/SM -clerical/YS -cleric/SM -Clerissa/M -clerk/SGYDM -clerkship/MS -Cletis -Cletus/M -Cleveland/M -Cleve/M -cleverness/SM -clever/RYPT -Clevey/M -Clevie/M -clevis/SM -clew/DMGS -cl/GJ -Cliburn/M -clichd -clich/SM -clicker/M -click/GZSRDM -clientle/SM -client/SM -cliffhanger/MS -cliffhanging -Cliff/M -Clifford/M -cliff/SM -Clifton/M -climacteric/SM -climactic -climate/MS -climatic -climatically -climatological/Y -climatologist/SM -climatology/MS -climax/MDSG -climbable/U -climb/BGZSJRD -climbdown -climbed/U -climber/M -clime/SM -Clim/M -clinch/DRSZG -clincher/M -clinching/Y -Cline/M -clinger/MS -clinging -cling/U -clingy/TR -clinical/Y -clinician/MS -clinic/MS -clinker/GMD -clink/RDGSZ -clinometer/MIS -Clint/M -Clinton/M -Clio/M -cliometrician/S -cliometric/S -clipboard/SM -clipped/U -clipper/MS -clipping/SM -clip/SM -clique/SDGM -cliquey -cliquier -cliquiest -cliquishness/SM -cliquish/YP -clitoral -clitorides -clitoris/MS -Clive/M -cloacae -cloaca/M -cloakroom/MS -cloak's -cloak/USDG -clobber/DGS -cloche/MS -clocker/M -clockmaker/M -clock/SGZRDMJ -clockwatcher -clockwise -clockwork/MS -clodded -clodding -cloddishness/M -cloddish/P -clodhopper/SM -clod/MS -Cloe/M -clogged/U -clogging/U -clog's -clog/US -cloisonn -cloisonnes -cloister/MDGS -cloistral -Clo/M -clomp/MDSG -clonal -clone/DSRGMZ -clonk/SGD -clopped -clopping -clop/S -Cloris/M -closed/U -close/EDSRG -closefisted -closely -closemouthed -closeness/MS -closeout/MS -closer/EM -closers -closest -closet/MDSG -closeup/S -closing/S -closured -closure/EMS -closure's/I -closuring -clothbound -clothesbrush -clotheshorse/MS -clothesline/SDGM -clothesman -clothesmen -clothespin/MS -clothe/UDSG -cloth/GJMSD -clothier/MS -clothing/M -Clotho/M -cloths -Clotilda/M -clot/MS -clotted -clotting -cloture/MDSG -cloudburst/MS -clouded/U -cloudiness/SM -cloudlessness/M -cloudless/YP -cloudscape/SM -cloud/SGMD -cloudy/TPR -clout/GSMD -cloven -cloverleaf/MS -clover/M -clove/SRMZ -Clovis/M -clown/DMSG -clownishness/SM -clownish/PY -cloy/DSG -cloying/Y -clubbed/M -clubbing/M -clubfeet -clubfoot/DM -clubhouse/SM -club/MS -clubroom/SM -cluck/GSDM -clueless -clue/MGDS -Cluj/M -clump/MDGS -clumpy/RT -clumsily -clumsiness/MS -clumsy/PRT -clung -clunk/SGZRDM -clunky/PRYT -clustered/AU -clusters/A -cluster/SGJMD -clutch/DSG -cluttered/U -clutter/GSD -Cl/VM -Clyde/M -Clydesdale/M -Cly/M -Clytemnestra/M -Clyve/M -Clywd/M -cm -Cm/M -CMOS -cnidarian/MS -CNN -CNS -CO -coacher/M -coachman/M -coachmen -coach/MSRDG -coachwork/M -coadjutor/MS -coagulable -coagulant/SM -coagulate/GNXSD -coagulation/M -coagulator/S -coaler/M -coalesce/GDS -coalescence/SM -coalescent -coalface/SM -coalfield/MS -coalitionist/SM -coalition/MS -coal/MDRGS -coalminers -coarseness/SM -coarsen/SGD -coarse/TYRP -coastal -coaster/M -coastguard/MS -coastline/SM -coast/SMRDGZ -coated/U -Coates/M -coating/M -coat/MDRGZJS -coattail/S -coattest -coauthor/MDGS -coaxer/M -coax/GZDSR -coaxial/Y -coaxing/Y -Cobain/M -cobalt/MS -cobbed -Cobbie/M -cobbing -cobbler/M -cobble/SRDGMZ -cobblestone/MSD -Cobb/M -Cobby/M -coble/M -Cob/M -COBOL -Cobol/M -cobra/MS -cob/SM -cobwebbed -cobwebbing -cobwebby/RT -cobweb/SM -cocaine/MS -coca/MS -cocci/MS -coccus/M -coccyges -coccyx/M -Cochabamba/M -cochineal/SM -Cochin/M -Cochise/M -cochleae -cochlear -cochlea/SM -Cochran/M -cockade/SM -cockamamie -cockatoo/SM -cockatrice/MS -cockcrow/MS -cockerel/MS -cocker/M -cockeye/DM -cockeyed/PY -cockfighting/M -cockfight/MJSG -cock/GDRMS -cockily -cockiness/MS -cocklebur/M -cockle/SDGM -cockleshell/SM -Cockney -cockney/MS -cockpit/MS -cockroach/SM -cockscomb/SM -cockshies -cocksucker/S! -cocksure -cocktail/GDMS -cocky/RPT -cocoa/SM -coco/MS -coconut/SM -cocoon/GDMS -Cocteau/M -COD -coda/SM -codded -codding -coddle/GSRD -coddler/M -codebook/S -codebreak/R -coded/UA -Codee/M -codeine/MS -codename/D -codependency/S -codependent/S -coder/CM -code's -co/DES -codes/A -code/SCZGJRD -codetermine/S -codeword/SM -codex/M -codfish/SM -codger/MS -codices/M -codicil/SM -Codie/M -codification/M -codifier/M -codify/NZXGRSD -Codi/M -coding/M -codling/M -Cod/M -cod/MDRSZGJ -codpiece/MS -Cody/M -coedited -coediting -coeditor/MS -coedits -coed/SM -coeducational -coeducation/SM -coefficient/SYM -coelenterate/MS -coequal/SY -coercer/M -coerce/SRDXVGNZ -coercible/I -coercion/M -coerciveness/M -coercive/PY -coeval/YS -coexistence/MS -coexistent -coexist/GDS -coextensive/Y -cofactor/MS -coffeecake/SM -coffeecup -coffeehouse/SM -coffeemaker/S -coffeepot/MS -coffee/SM -cofferdam/SM -coffer/DMSG -Coffey/M -coffin/DMGS -Coffman/M -cogency/MS -cogent/Y -cogged -cogging -cogitate/DSXNGV -cogitation/M -cogitator/MS -cog/MS -Cognac/M -cognac/SM -cognate/SXYN -cognation/M -cognitional -cognition/SAM -cognitive/SY -cognizable -cognizance/MAI -cognizances/A -cognizant/I -cognomen/SM -cognoscente -cognoscenti -cogwheel/SM -cohabitant/MS -cohabitational -cohabitation/SM -cohabit/SDG -Cohan/M -coheir/MS -Cohen/M -cohere/GSRD -coherence/SIM -coherencies -coherency/I -coherent/IY -coherer/M -cohesion/MS -cohesiveness/SM -cohesive/PY -Cohn/M -cohoes -coho/MS -cohort/SM -coiffed -coiffing -coiffure/MGSD -coif/SM -coil/UGSAD -Coimbatore/M -coinage's/A -coinage/SM -coincide/GSD -coincidence/MS -coincidental/Y -coincident/Y -coined/U -coiner/M -coin/GZSDRM -coinsurance/SM -Cointon/M -cointreau -coital/Y -coitus/SM -coke/MGDS -Coke/MS -COL -COLA -colander/SM -Colan/M -Colas -cola/SM -colatitude/MS -Colbert/M -Colby/M -coldblooded -coldish -coldness/MS -cold/YRPST -Coleen/M -Cole/M -Coleman/M -Colene/M -Coleridge/M -coleslaw/SM -Colet/M -Coletta/M -Colette/M -coleus/SM -Colfax/M -Colgate/M -colicky -colic/SM -coliform -Colin/M -coliseum/SM -colitis/MS -collaborate/VGNXSD -collaboration/M -collaborative/SY -collaborator/SM -collage/MGSD -collagen/M -collapse/SDG -collapsibility/M -collapsible -collarbone/MS -collar/DMGS -collard/SM -collarless -collated/U -collateral/SYM -collate/SDVNGX -collation/M -collator/MS -colleague/SDGM -collectedness/M -collected/PY -collectible/S -collection/AMS -collective/SY -collectivism/SM -collectivist/MS -collectivity/MS -collectivization/MS -collectivize/DSG -collector/MS -collect/SAGD -Colleen/M -colleen/SM -college/SM -collegiality/S -collegian/SM -collegiate/Y -Collen/M -Collete/M -Collette/M -coll/G -collide/SDG -Collie/M -collie/MZSRD -collier/M -Collier/M -colliery/MS -collimate/C -collimated/U -collimates -collimating -collimation/M -collimator/M -collinear -collinearity/M -Colline/M -Collin/MS -collisional -collision/SM -collocate/XSDGN -collocation/M -colloidal/Y -colloid/MS -colloq -colloquialism/MS -colloquial/SY -colloquies -colloquium/SM -colloquy/M -collude/SDG -collusion/SM -collusive -collying -Colly/RM -Colman/M -Col/MY -Cologne/M -cologne/MSD -Colo/M -Colombia/M -Colombian/S -Colombo/M -colonelcy/MS -colonel/MS -colonialism/MS -colonialist/MS -colonial/SPY -colonist/SM -colonization/ACSM -colonize/ACSDG -colonized/U -colonizer/MS -colonizes/U -Colon/M -colonnade/MSD -colon/SM -colony/SM -colophon/SM -Coloradan/S -Coloradoan/S -Colorado/M -colorant/SM -coloration/EMS -coloratura/SM -colorblindness/S -colorblind/P -colored/USE -colorer/M -colorfastness/SM -colorfast/P -colorfulness/MS -colorful/PY -colorimeter/SM -colorimetry -coloring/M -colorization/S -colorize/GSD -colorizing/C -colorlessness/SM -colorless/PY -colors/EA -color/SRDMGZJ -colossal/Y -Colosseum/M -colossi -colossus/M -colostomy/SM -colostrum/SM -col/SD -colter/M -coltishness/M -coltish/PY -Colt/M -colt/MRS -Coltrane/M -Columbia/M -Columbian -Columbine/M -columbine/SM -Columbus/M -columnar -columnist/MS -columnize/GSD -column/SDM -Colver/M -Co/M -comae -comaker/SM -Comanche/MS -coma/SM -comatose -combatant/SM -combativeness/MS -combative/PY -combat/SVGMD -combed/U -comber/M -combinational/A -combination/ASM -combinatorial/Y -combinatoric/S -combinator/SM -combined/AU -combiner/M -combines/A -combine/ZGBRSD -combining/A -combo/MS -comb/SGZDRMJ -Combs/M -combusted -combustibility/SM -combustible/SI -combustion/MS -combustive -Comdex/M -Comdr/M -comeback/SM -comedian/SM -comedic -comedienne/SM -comedown/MS -comedy/SM -come/IZSRGJ -comeliness/SM -comely/TPR -comer/IM -comes/M -comestible/MS -cometary -cometh -comet/SM -comeuppance/SM -comfit's -comfit/SE -comfortability/S -comfortableness/MS -comfortable/U -comfortably/U -comforted/U -comforter/MS -comfort/ESMDG -comforting/YE -comfy/RT -comicality/MS -comical/Y -comic/MS -Cominform/M -comity/SM -com/LJRTZG -comm -Com/M -comma/MS -commandant/MS -commandeer/SDG -commander/M -commanding/Y -commandment/SM -commando/SM -command/SZRDMGL -commemorate/SDVNGX -commemoration/M -commemorative/YS -commemorator/S -commence/ALDSG -commencement/AMS -commencer/M -commendably -commendation/ASM -commendatory/A -commender/AM -commend/GSADRB -commensurable/I -commensurate/IY -commensurates -commensuration/SM -commentary/MS -commentate/GSD -commentator/SM -commenter/M -comment's -comment/SUGD -commerce/MGSD -commercialism/MS -commercialization/SM -commercialize/GSD -commercial/PYS -Commie -commie/SM -commingle/GSD -commiserate/VGNXSD -commiseration/M -commissariat/MS -commissar/MS -commissary/MS -commission/ASCGD -commissioner/SM -commission's/A -commitment/SM -commit/SA -committable -committal/MA -committals -committed/UA -committeeman/M -committeemen -committee/MS -committeewoman/M -committeewomen -committing/A -commode/MS -commodes/IE -commodiousness/MI -commodious/YIP -commodity/MS -commodore/SM -commonality/MS -commonalty/MS -commoner/MS -commonness/MSU -commonplaceness/M -commonplace/SP -common/RYUPT -commonsense -commons/M -Commons/M -commonweal/SHM -commonwealth/M -Commonwealth/M -commonwealths -Commonwealths -commotion/MS -communality/M -communal/Y -commune/XSDNG -communicability/MS -communicable/IU -communicably -communicant/MS -communicate/VNGXSD -communicational -communication/M -communicativeness/M -communicative/PY -communicator/SM -communion/M -Communion/SM -communique/S -communism/MS -Communism/S -communistic -communist/MS -Communist/S -communitarian/M -community/MS -communize/SDG -commutable/I -commutate/XVGNSD -commutation/M -commutative/Y -commutativity -commutator/MS -commute/BZGRSD -commuter/M -Comoros -compaction/M -compactness/MS -compactor/MS -compact/TZGSPRDY -companionableness/M -companionable/P -companionably -companion/GBSMD -companionship/MS -companionway/MS -company/MSDG -Compaq/M -comparabilities -comparability/IM -comparableness/M -comparable/P -comparably/I -comparativeness/M -comparative/PYS -comparator/SM -compare/GRSDB -comparer/M -comparison/MS -compartmental -compartmentalization/SM -compartmentalize/DSG -compartment/SDMG -compassionateness/M -compassionate/PSDGY -compassion/MS -compass/MSDG -compatibility/IMS -compatibleness/M -compatible/SI -compatibly/I -compatriot/SM -compeer/DSGM -compellable -compelled -compelling/YM -compel/S -compendious -compendium/MS -compensable -compensated/U -compensate/XVNGSD -compensation/M -compensator/M -compensatory -compete/GSD -competence/ISM -competency/IS -competency's -competent/IY -competition/SM -competitiveness/SM -competitive/YP -competitor/MS -comp/GSYD -compilable/U -compilation/SAM -compile/ASDCG -compiler/CS -compiler's -complacence/S -complacency/SM -complacent/Y -complainant/MS -complainer/M -complain/GZRDS -complaining/YU -complaint/MS -complaisance/SM -complaisant/Y -complected -complementariness/M -complementarity -complementary/SP -complementation/M -complementer/M -complement/ZSMRDG -complete/BTYVNGPRSDX -completed/U -completely/I -completeness/ISM -completer/M -completion/MI -complexional -complexion/DMS -complexity/MS -complexness/M -complex/TGPRSDY -compliance/SM -compliant/Y -complicatedness/M -complicated/YP -complicate/SDG -complication/M -complicator/SM -complicit -complicity/MS -complier/M -complimentary/U -complimenter/M -compliment/ZSMRDG -comply/ZXRSDNG -component/SM -comport/GLSD -comportment/SM -compose/CGASDE -composedness/M -composed/PY -composer/CM -composers -composite/YSDXNG -compositional/Y -composition/CMA -compositions/C -compositor/MS -compost/DMGS -composure/ESM -compote/MS -compounded/U -compounder/M -compound/RDMBGS -comprehend/DGS -comprehending/U -comprehensibility/SIM -comprehensibleness/IM -comprehensible/PI -comprehensibly/I -comprehension/IMS -comprehensiveness/SM -comprehensive/YPS -compressed/Y -compressibility/IM -compressible/I -compressional -compression/CSM -compressive/Y -compressor/MS -compress/SDUGC -comprise/GSD -compromiser/M -compromise/SRDGMZ -compromising/UY -Compton/M -comptroller/SM -compulsion/SM -compulsiveness/MS -compulsive/PYS -compulsivity -compulsorily -compulsory/S -compunction/MS -Compuserve/M -CompuServe/M -computability/M -computable/UI -computably -computational/Y -computation/SM -computed/A -computerese -computerization/MS -computerize/SDG -computer/M -compute/RSDZBG -computes/A -computing/A -comradely/P -comradeship/MS -comrade/YMS -Comte/M -Conakry/M -Conan/M -Conant/M -concatenate/XSDG -concaveness/MS -concave/YP -conceal/BSZGRDL -concealed/U -concealer/M -concealing/Y -concealment/MS -conceded/Y -conceitedness/SM -conceited/YP -conceit/SGDM -conceivable/IU -conceivably/I -conceive/BGRSD -conceiver/M -concentrate/VNGSDX -concentration/M -concentrator/MS -concentrically -Concepcin/M -conceptional -conception/MS -concept/SVM -conceptuality/M -conceptualization/A -conceptualizations -conceptualization's -conceptualize/DRSG -conceptualizing/A -conceptual/Y -concerned/YU -concern/USGD -concerted/PY -concert/EDSG -concertina/MDGS -concertize/GDS -concertmaster/MS -concerto/SM -concert's -concessionaire/SM -concessional -concessionary -concession/R -Concetta/M -Concettina/M -Conchita/M -conch/MDG -conchs -concierge/SM -conciliar -conciliate/GNVX -conciliation/ASM -conciliator/MS -conciliatory/A -conciseness/SM -concise/TYRNPX -concision/M -conclave/S -concluder/M -conclude/RSDG -conclusion/SM -conclusive/IPY -conclusiveness/ISM -concocter/M -concoction/SM -concoct/RDVGS -concomitant/YS -concordance/MS -concordant/Y -concordat/SM -Concorde/M -Concordia/M -Concord/MS -concourse -concreteness/MS -concrete/NGXRSDPYM -concretion/M -concubinage/SM -concubine/SM -concupiscence/SM -concupiscent -concurrence/MS -concur/S -concussion/MS -concuss/VD -condemnate/XN -condemnation/M -condemnatory -condemner/M -condemn/ZSGRDB -condensate/NMXS -condensation/M -condenser/M -condense/ZGSD -condensible -condescend -condescending/Y -condescension/MS -condign -condiment/SM -condition/AGSJD -conditionals -conditional/UY -conditioned/U -conditioner/MS -conditioning/M -condition's -condole -condolence/MS -condominium/MS -condom/SM -condone/GRSD -condoner/M -Condorcet/M -condor/MS -condo/SM -conduce/VGSD -conduciveness/M -conducive/P -conductance/SM -conductibility/SM -conductible -conduction/MS -conductive/Y -conductivity/MS -conductor/MS -conductress/MS -conduct/V -conduit/MS -coneflower/M -Conestoga -coney's -confabbed -confabbing -confab/MS -confabulate/XSDGN -confabulation/M -confectioner/M -confectionery/SM -confectionist -confection/RDMGZS -confect/S -Confederacy/M -confederacy/MS -confederate/M -Confederate/S -conferee/MS -conference/DSGM -conferrable -conferral/SM -conferred -conferrer/SM -conferring -confer/SB -confessed/Y -confessional/SY -confession/MS -confessor/SM -confetti/M -confidante/SM -confidant/SM -confidence/SM -confidentiality/MS -confidentialness/M -confidential/PY -confident/Y -confider/M -confide/ZGRSD -confiding/PY -configuration/ASM -configure/AGSDB -confined/U -confine/L -confinement/MS -confiner/M -confirm/AGDS -confirmation/ASM -confirmatory -confirmedness/M -confirmed/YP -confiscate/DSGNX -confiscation/M -confiscator/MS -confiscatory -conflagration/MS -conflate/NGSDX -conflation/M -conflicting/Y -conflict/SVGDM -confluence/MS -conformable/U -conformal -conformance/SM -conformational/Y -conform/B -conformer/M -conformism/SM -conformist/SM -conformities -conformity/MUI -confounded/Y -confound/R -confrre/MS -confrontational -confrontation/SM -confronter/M -confront/Z -Confucianism/SM -Confucian/S -Confucius/M -confusedness/M -confused/PY -confuse/RBZ -confusing/Y -confutation/MS -confute/GRSD -confuter/M -conga/MDG -congeal/GSDL -congealment/MS -congeniality/UM -congenial/U -congeries/M -conger/SM -congestion/MS -congest/VGSD -conglomerate/XDSNGVM -conglomeration/M -Cong/M -Congolese -Congo/M -congrats -congratulate/NGXSD -congratulation/M -congratulatory -congregate/DSXGN -congregational -Congregational -congregationalism/MS -congregationalist/MS -Congregationalist/S -congregation/M -congressional/Y -congressman/M -congressmen -Congress/MS -congress/MSDG -congresspeople -congressperson/S -congresswoman/M -congresswomen -Congreve/M -congruence/IM -congruences -congruency/M -congruential -congruent/YI -congruity/MSI -congruousness/IM -congruous/YIP -conicalness/M -conical/PSY -conic/S -conics/M -conifer/MS -coniferous -conjectural/Y -conjecture/GMDRS -conjecturer/M -conjoint -conjugacy -conjugal/Y -conjugate/XVNGYSDP -conjugation/M -conjunct/DSV -conjunctiva/MS -conjunctive/YS -conjunctivitis/SM -conjuration/MS -conjurer/M -conjure/RSDZG -conjuring/M -conker/M -conk/ZDR -Conley/M -Con/M -conman -connect/ADGES -connectedly/E -connectedness/ME -connected/U -connectible -Connecticut/M -connection/AME -connectionless -connections/E -connective/SYM -connectivity/MS -connector/MS -Connelly/M -Conner/M -Connery/M -connexion/MS -Conney/M -conn/GVDR -Connie/M -Conni/M -conniption/MS -connivance/MS -conniver/M -connive/ZGRSD -connoisseur/MS -Connor/SM -connotative/Y -Conn/RM -connubial/Y -Conny/M -conquerable/U -conquered/AU -conqueror/MS -conquer/RDSBZG -conquers/A -conquest/ASM -conquistador/MS -Conrade/M -Conrad/M -Conrado/M -Conrail/M -Conroy/M -Consalve/M -consanguineous/Y -consanguinity/SM -conscienceless -conscientiousness/MS -conscientious/YP -conscionable/U -consciousness/MUS -conscious/UYSP -conscription/SM -consecrated/AU -consecrates/A -consecrate/XDSNGV -consecrating/A -consecration/AMS -consecutiveness/M -consecutive/YP -consensus/SM -consenter/M -consenting/Y -consent/SZGRD -consequence -consequentiality/S -consequential/IY -consequentialness/M -consequently/I -consequent/PSY -conservancy/SM -conservationism -conservationist/SM -conservation/SM -conservatism/SM -conservativeness/M -Conservative/S -conservative/SYP -conservator/MS -conservatory/MS -con/SGM -considerable/I -considerables -considerably/I -considerateness/MSI -considerate/XIPNY -consideration/ASMI -considered/U -considerer/M -consider/GASD -considering/S -consign/ASGD -consignee/SM -consignment/SM -consist/DSG -consistence/S -consistency/IMS -consistent/IY -consistory/MS -consolable/I -Consolata/M -consolation/MS -consolation's/E -consolatory -consoled/U -consoler/M -console/ZBG -consolidated/AU -consolidate/NGDSX -consolidates/A -consolidation/M -consolidator/SM -consoling/Y -consomm/S -consonance/IM -consonances -consonantal -consonant/MYS -consortia -consortium/M -conspectus/MS -conspicuousness/IMS -conspicuous/YIP -conspiracy/MS -conspiratorial/Y -conspirator/SM -constable -Constable/M -constabulary/MS -constance -Constance/M -Constancia/M -constancy/IMS -Constancy/M -Constanta/M -Constantia/M -Constantina/M -Constantine/M -Constantin/M -Constantino/M -Constantinople/M -constant/IY -constants -constellation/SM -consternate/XNGSD -consternation/M -constipate/XDSNG -constipation/M -constituency/MS -constituent/SYM -constituted/A -constitute/NGVXDS -constitutes/A -constituting/A -Constitution -constitutionality's -constitutionality/US -constitutionally/U -constitutional/SY -constitution/AMS -constitutive/Y -constrain -constrainedly -constrained/U -constraint/MS -constriction/MS -constrictor/MS -constrict/SDGV -construable -construct/ASDGV -constructibility -constructible/A -constructional/Y -constructionist/MS -construction/MAS -constructions/C -constructiveness/SM -constructive/YP -constructor/MS -construe/GSD -Consuela/M -Consuelo/M -consular/S -consulate/MS -consul/KMS -consulship/MS -consultancy/S -consultant/MS -consultation/SM -consultative -consulted/A -consulter/M -consult/RDVGS -consumable/S -consumed/Y -consume/JZGSDB -consumerism/MS -consumerist/S -consumer/M -consuming/Y -consummate/DSGVY -consummated/U -consumption/SM -consumptive/YS -cont -contact/BGD -contacted/A -contact's/A -contacts/A -contagion/SM -contagiousness/MS -contagious/YP -containerization/SM -containerize/GSD -container/M -containment/SM -contain/SLZGBRD -contaminant/SM -contaminated/AU -contaminates/A -contaminate/SDCXNG -contaminating/A -contamination/CM -contaminative -contaminator/MS -contd -cont'd -contemn/SGD -contemplate/DVNGX -contemplation/M -contemplativeness/M -contemplative/PSY -contemporaneity/MS -contemporaneousness/M -contemporaneous/PY -contemptibleness/M -contemptible/P -contemptibly -contempt/M -contemptuousness/SM -contemptuous/PY -contentedly/E -contentedness/SM -contented/YP -content/EMDLSG -contention/MS -contentiousness/SM -contentious/PY -contently -contentment/ES -contentment's -conterminous/Y -contestable/I -contestant/SM -contested/U -contextualize/GDS -contiguity/MS -contiguousness/M -contiguous/YP -continence/ISM -Continental/S -continental/SY -continent/IY -Continent/M -continents -continent's -contingency/SM -contingent/SMY -continua -continuable -continual/Y -continuance/ESM -continuant/M -continuation/ESM -continue/ESDG -continuer/M -continuity/SEM -continuousness/M -continuous/YE -continuum/M -contortionist/SM -contortion/MS -contort/VGD -contour -contraband/SM -contrabass/M -contraception/SM -contraceptive/S -contract/DG -contractible -contractile -contractual/Y -contradict/GDS -contradiction/MS -contradictorily -contradictoriness/M -contradictory/PS -contradistinction/MS -contraflow/S -contrail/M -contraindicate/SDVNGX -contraindication/M -contralto/SM -contrapositive/S -contraption/MS -contrapuntal/Y -contrariety/MS -contrarily -contrariness/MS -contrariwise -contrary/PS -contra/S -contrasting/Y -contrastive/Y -contrast/SRDVGZ -contravene/GSRD -contravener/M -contravention/MS -Contreras/M -contretemps/M -contribute/XVNZRD -contribution/M -contributive/Y -contributorily -contributor/SM -contributory/S -contriteness/M -contrite/NXP -contrition/M -contrivance/SM -contriver/M -contrive/ZGRSD -control/CS -controllability/M -controllable/IU -controllably/U -controlled/CU -controller/SM -controlling/C -control's -controversialists -controversial/UY -controversy/MS -controvert/DGS -controvertible/I -contumacious/Y -contumacy/MS -contumelious -contumely/MS -contuse/NGXSD -contusion/M -conundrum/SM -conurbation/MS -convalesce/GDS -convalescence/SM -convalescent/S -convect/DSVG -convectional -convection/MS -convector -convene/ASDG -convener/MS -convenience/ISM -convenient/IY -conventicle/SM -conventionalism/M -conventionalist/M -conventionality/SUM -conventionalize/GDS -conventional/UY -convention/MA -conventions -convergence/MS -convergent -conversant/Y -conversationalist/SM -conversational/Y -conversation/SM -conversazione/M -converse/Y -conversion/AM -conversioning -converted/U -converter/MS -convert/GADS -convertibility's/I -convertibility/SM -convertibleness/M -convertible/PS -convexity/MS -convex/Y -conveyance/DRSGMZ -conveyancer/M -conveyancing/M -convey/BDGS -conveyor/MS -conviction/MS -convict/SVGD -convinced/U -convincer/M -convince/RSDZG -convincingness/M -convincing/PUY -conviviality/MS -convivial/Y -convoke/GSD -convolute/XDNY -convolution/M -convolve/C -convolved -convolves -convolving -convoy/GMDS -convulse/SDXVNG -convulsion/M -convulsiveness/M -convulsive/YP -Conway/M -cony/SM -coo/GSD -cookbook/SM -cooked/AU -Cooke/M -cooker/M -cookery/MS -cook/GZDRMJS -Cookie/M -cookie/SM -cooking/M -Cook/M -cookout/SM -cooks/A -cookware/SM -cooky's -coolant/SM -cooled/U -cooler/M -Cooley/M -coolheaded -Coolidge/M -coolie/MS -coolness/MS -cool/YDRPJGZTS -coon/MS! -coonskin/MS -cooperage/MS -cooperate/VNGXSD -cooperation/M -cooperativeness/SM -cooperative/PSY -cooperator/MS -cooper/GDM -Cooper/M -coop/MDRGZS -Coop/MR -coordinated/U -coordinateness/M -coordinate/XNGVYPDS -coordination/M -coordinator/MS -Coors/M -cootie/SM -coot/MS -copay/S -Copeland/M -Copenhagen/M -coper/M -Copernican -Copernicus/M -cope/S -copied/A -copier/M -copies/A -copilot/SM -coping/M -copiousness/SM -copious/YP -coplanar -Copland/M -Copley/M -copolymer/MS -copora -copped -Copperfield/M -copperhead/MS -copper/MSGD -copperplate/MS -coppersmith/M -coppersmiths -coppery -coppice's -copping -Coppola/M -copra/MS -coprolite/M -coprophagous -copse/M -cops/GDS -cop/SJMDRG -copter/SM -Coptic/M -copula/MS -copulate/XDSNGV -copulation/M -copulative/S -copybook/MS -copycat/SM -copycatted -copycatting -copyist/SM -copy/MZBDSRG -copyrighter/M -copyright/MSRDGZ -copywriter/MS -coquetry/MS -coquette/DSMG -coquettish/Y -Corabella/M -Corabelle/M -Corabel/M -coracle/SM -Coralie/M -Coraline/M -coralline -Coral/M -coral/SM -Coralyn/M -Cora/M -corbel/GMDJS -Corbet/M -Corbett/M -Corbie/M -Corbin/M -Corby/M -cordage/MS -corded/AE -Cordelia/M -Cordelie/M -Cordell/M -corder/AM -Cordey/M -cord/FSAEM -cordiality/MS -cordialness/M -cordial/PYS -Cordie/M -cordillera/MS -Cordilleras -Cordi/M -cording/MA -cordite/MS -cordless -Cord/M -Cordoba -cordon/DMSG -cordovan/SM -Cordula/M -corduroy/GDMS -Cordy/M -cored/A -Coreen/M -Corella/M -core/MZGDRS -Corenda/M -Corene/M -corer/M -corespondent/MS -Coretta/M -Corette/M -Corey/M -Corfu/M -corgi/MS -coriander/SM -Corie/M -Corilla/M -Cori/M -Corina/M -Corine/M -coring/M -Corinna/M -Corinne/M -Corinthian/S -Corinthians/M -Corinth/M -Coriolanus/M -Coriolis/M -Corissa/M -Coriss/M -corked/U -corker/M -cork/GZDRMS -Cork/M -corkscrew/DMGS -corks/U -Corliss/M -Corly/M -Cormack/M -corm/MS -cormorant/MS -Cornall/M -cornball/SM -cornbread/S -corncob/SM -corncrake/M -corneal -cornea/SM -Corneille/M -Cornela/M -Cornelia/M -Cornelius/M -Cornelle/M -Cornell/M -corner/GDM -cornerstone/MS -cornet/SM -Corney/M -cornfield/SM -cornflake/S -cornflour/M -cornflower/SM -corn/GZDRMS -cornice/GSDM -Cornie/M -cornily -corniness/S -Cornish/S -cornmeal/S -cornrow/GDS -cornstalk/MS -cornstarch/SM -cornucopia/MS -Cornwallis/M -Cornwall/M -Corny/M -corny/RPT -corolla/MS -corollary/SM -Coronado/M -coronal/MS -coronary/S -corona/SM -coronate/NX -coronation/M -coroner/MS -coronet/DMS -Corot/M -coroutine/SM -Corp -corporal/SYM -corpora/MS -corporate/INVXS -corporately -corporation/MI -corporatism/M -corporatist -corporeality/MS -corporeal/IY -corporealness/M -corp/S -corpse/M -corpsman/M -corpsmen -corps/SM -corpulence/MS -corpulentness/S -corpulent/YP -corpuscle/SM -corpuscular -corpus/M -corr -corralled -corralling -corral/MS -correctable/U -correct/BPSDRYTGV -corrected/U -correctional -correction/MS -corrective/YPS -correctly/I -correctness/MSI -corrector/MS -Correggio/M -correlated/U -correlate/SDXVNG -correlation/M -correlative/YS -Correna/M -correspond/DSG -correspondence/MS -correspondent/SM -corresponding/Y -Correy/M -Corrianne/M -corridor/SM -Corrie/M -corrigenda -corrigendum/M -corrigible/I -Corri/M -Corrina/M -Corrine/M -Corrinne/M -corroborated/U -corroborate/GNVXDS -corroboration/M -corroborative/Y -corroborator/MS -corroboratory -corrode/SDG -corrodible -corrosion/SM -corrosiveness/M -corrosive/YPS -corrugate/NGXSD -corrugation/M -corrupt/DRYPTSGV -corrupted/U -corrupter/M -corruptibility/SMI -corruptible/I -corruption/IM -corruptions -corruptive/Y -corruptness/MS -Corry/M -corsage/MS -corsair/SM -corset/GMDS -Corsica/M -Corsican/S -cortge/MS -Cortes/S -cortex/M -Cortez's -cortical/Y -cortices -corticosteroid/SM -Cortie/M -cortisone/SM -Cortland/M -Cort/M -Cortney/M -Corty/M -corundum/MS -coruscate/XSDGN -coruscation/M -Corvallis/M -corvette/MS -Corvus/M -Cory/M -Cos -Cosby/M -Cosetta/M -Cosette/M -cos/GDS -cosignatory/MS -cosign/SRDZG -cosily -Cosimo/M -cosine/MS -cosiness/MS -Cosme/M -cosmetically -cosmetician/MS -cosmetic/SM -cosmetologist/MS -cosmetology/MS -cosmic -cosmical/Y -cosmogonist/MS -cosmogony/SM -cosmological/Y -cosmologist/MS -cosmology/SM -Cosmo/M -cosmonaut/MS -cosmopolitanism/MS -cosmopolitan/SM -cosmos/SM -cosponsor/DSG -cossack/S -Cossack/SM -cosset/GDS -Costa/M -Costanza/M -costarred -costarring -costar/S -Costello/M -costiveness/M -costive/PY -costless -costliness/SM -costly/RTP -cost/MYGVJS -Costner/M -costumer/M -costume/ZMGSRD -cotangent/SM -Cote/M -cote/MS -coterie/MS -coterminous/Y -cotillion/SM -Cotonou/M -Cotopaxi/M -cot/SGMD -cottager/M -cottage/ZMGSRD -cottar's -cotted -cotter/SDM -cotton/GSDM -Cotton/M -cottonmouth/M -cottonmouths -cottonseed/MS -cottontail/SM -cottonwood/SM -cottony -cotyledon/MS -couching/M -couch/MSDG -cougar/MS -cougher/M -cough/RDG -coughs -couldn't -could/T -could've -coule/MS -Coulomb/M -coulomb/SM -councilman/M -councilmen -councilor/MS -councilperson/S -council/SM -councilwoman/M -councilwomen -counsel/GSDM -counsellings -counselor/MS -countability/E -countable/U -countably/U -countdown/SM -counted/U -count/EGARDS -countenance/EGDS -countenancer/M -countenance's -counteract/DSVG -counteraction/SM -counterargument/SM -counterattack/DRMGS -counterbalance/MSDG -counterclaim/GSDM -counterclockwise -counterculture/MS -countercyclical -counterespionage/MS -counterexample/S -counterfeiter/M -counterfeit/ZSGRD -counterflow -counterfoil/MS -counterforce/M -counter/GSMD -counterinsurgency/MS -counterintelligence/MS -counterintuitive -countermand/DSG -counterman/M -countermeasure/SM -countermen -counteroffensive/SM -counteroffer/SM -counterpane/SM -counterpart/SM -counterpoint/GSDM -counterpoise/GMSD -counterproductive -counterproposal/M -counterrevolutionary/MS -counterrevolution/MS -counter's/E -counters/E -countersignature/MS -countersign/SDG -countersink/SG -counterspy/MS -counterstrike -countersunk -countertenor/SM -countervail/DSG -counterweight/GMDS -countess/MS -countless/Y -countrify/D -countryman/M -countrymen -country/MS -countryside/MS -countrywide -countrywoman/M -countrywomen -county/SM -coup/ASDG -coupe/MS -Couperin/M -couple/ACU -coupled/CU -coupler/C -couplers -coupler's -couple's -couples/CU -couplet/SM -coupling's/C -coupling/SM -coupon/SM -coup's -courage/MS -courageously -courageousness/MS -courageous/U -courages/E -Courbet/M -courgette/MS -courier/GMDS -course/EGSRDM -courser's/E -courser/SM -course's/AF -courses/FA -coursework -coursing/M -Courtenay/M -courteousness/EM -courteousnesses -courteous/PEY -courtesan/MS -courtesied -courtesy/ESM -courtesying -court/GZMYRDS -courthouse/MS -courtier/SM -courtliness/MS -courtly/RTP -Court/M -Courtnay/M -Courtney/M -courtroom/MS -courtship/SM -courtyard/SM -couscous/MS -cousinly/U -cousin/YMS -Cousteau/M -couture/SM -couturier/SM -covalent/Y -covariance/SM -covariant/S -covariate/SN -covary -cove/DRSMZG -covenanted/U -covenanter/M -covenant/SGRDM -coven/SM -Covent/M -Coventry/MS -coverable/E -cover/AEGUDS -coverage/MS -coverall/DMS -coverer/AME -covering/MS -coverlet/MS -coversheet -covers/M -covertness/SM -covert/YPS -coveter/M -coveting/Y -covetousness/SM -covetous/PY -covet/SGRD -covey/SM -covington -cowardice/MS -cowardliness/MS -cowardly/P -Coward/M -coward/MYS -cowbell/MS -cowbird/MS -cowboy/MS -cowcatcher/SM -cowed/Y -cowering/Y -cower/RDGZ -cowgirl/MS -cowhand/S -cowherd/SM -cowhide/MGSD -Cowley/M -cowlick/MS -cowling/M -cowl/SGMD -cowman/M -cow/MDRSZG -cowmen -coworker/MS -Cowper/M -cowpoke/MS -cowpony -cowpox/MS -cowpuncher/M -cowpunch/RZ -cowrie/SM -cowshed/SM -cowslip/MS -coxcomb/MS -Cox/M -cox/MDSG -coxswain/GSMD -coy/CDSG -coyer -coyest -coyly -Coy/M -coyness/MS -coyote/SM -coypu/SM -cozenage/MS -cozen/SGD -cozily -coziness/MS -Cozmo/M -Cozumel/M -cozy/DSRTPG -CPA -cpd -CPI -cpl -Cpl -CPO -CPR -cps -CPU/SM -crabapple -crabbedness/M -crabbed/YP -Crabbe/M -crabber/MS -crabbily -crabbiness/S -crabbing/M -crabby/PRT -crabgrass/S -crablike -crab/MS -crackable/U -crackdown/MS -crackerjack/S -cracker/M -crackle/GJDS -crackling/M -crackly/RT -crackpot/SM -crackup/S -crack/ZSBYRDG -cradler/M -cradle/SRDGM -cradling/M -craftily -craftiness/SM -Craft/M -craft/MRDSG -craftsman/M -craftsmanship/SM -craftsmen -craftspeople -craftspersons -craftswoman -craftswomen -crafty/TRP -Craggie/M -cragginess/SM -Craggy/M -craggy/RTP -crag/SM -Craig/M -Cramer/M -crammed -crammer/M -cramming -cramper/M -cramp/MRDGS -crampon/SM -cram/S -Cranach/M -cranberry/SM -Crandall/M -crane/DSGM -cranelike -Crane/M -Cranford/M -cranial -cranium/MS -crankcase/MS -crankily -crankiness/MS -crank/SGTRDM -crankshaft/MS -cranky/TRP -Cranmer/M -cranny/DSGM -Cranston/M -crape/SM -crapped -crappie/M -crapping -crappy/RST -crapshooter/SM -crap/SMDG! -crasher/M -crashing/Y -crash/SRDGZ -crassness/MS -crass/TYRP -crate/DSRGMZ -crater/DMG -Crater/M -cravat/SM -cravatted -cravatting -crave/DSRGJ -cravenness/SM -craven/SPYDG -craver/M -craving/M -crawdad/S -crawfish's -Crawford/M -crawler/M -crawl/RDSGZ -crawlspace/S -crawlway -crawly/TRS -craw/SYM -crayfish/GSDM -Crayola/M -crayon/GSDM -Cray/SM -craze/GMDS -crazily -craziness/MS -crazy/SRTP -creakily -creakiness/SM -creak/SDG -creaky/PTR -creamer/M -creamery/MS -creamily -creaminess/SM -cream/SMRDGZ -creamy/TRP -creased/CU -crease/IDRSG -crease's -creases/C -creasing/C -created/U -create/XKVNGADS -creationism/MS -creationist/MS -Creation/M -creation/MAK -creativeness/SM -creative/YP -creativities -creativity/K -creativity's -Creator/M -creator/MS -creatureliness/M -creaturely/P -creature/YMS -crche/SM -credence/MS -credent -credential/SGMD -credenza/SM -credibility/IMS -credible/I -credibly/I -creditability/M -creditableness/M -creditable/P -creditably/E -credited/U -credit/EGBSD -creditor/MS -credit's -creditworthiness -credo/SM -credulity/ISM -credulous/IY -credulousness/SM -creedal -creed/C -creeds -creed's -creekside -creek/SM -Creek/SM -creel/SMDG -Cree/MDS -creeper/M -creepily -creepiness/SM -creep/SGZR -creepy/PRST -Creigh/M -Creight/M -Creighton/M -cremate/XDSNG -cremation/M -crematoria -crematorium/MS -crematory/S -creme/S -crenelate/XGNSD -crenelation/M -Creole/MS -creole/SM -Creon/M -creosote/MGDS -crepe/DSGM -crept -crescendoed -crescendoing -crescendo/SCM -crescent/MS -cress/S -crestfallenness/M -crestfallen/PY -cresting/M -crestless -crest/SGMD -Crestview/M -cretaceous -Cretaceously/M -Cretaceous/Y -Cretan/S -Crete/M -cretinism/MS -cretin/MS -cretinous -cretonne/SM -crevasse/DSMG -crevice/SM -crew/DMGS -crewel/SM -crewelwork/SM -crewman/M -crewmen -cribbage/SM -cribbed -cribber/SM -cribbing/M -crib/SM -Crichton/M -cricketer/M -cricket/SMZRDG -crick/GDSM -Crick/M -cried/C -crier/CM -cries/C -Crimea/M -Crimean -crime/GMDS -criminality/MS -criminalization/C -criminalize/GC -criminal/SYM -criminologist/SM -criminology/MS -crimper/M -crimp/RDGS -crimson/DMSG -cringer/M -cringe/SRDG -crinkle/DSG -crinkly/TRS -Crin/M -crinoline/SM -cripple/GMZDRS -crippler/M -crippling/Y -Crisco/M -crises -crisis/M -Cris/M -crisper/M -crispiness/SM -crispness/MS -crisp/PGTYRDS -crispy/RPT -criss -crisscross/GDS -Crissie/M -Crissy/M -Cristabel/M -Cristal/M -Crista/M -Cristen/M -Cristian/M -Cristiano/M -Cristie/M -Cristi/M -Cristina/M -Cristine/M -Cristin/M -Cristionna/M -Cristobal/M -Cristy/M -criteria -criterion/M -criticality -critically/U -criticalness/M -critical/YP -criticism/MS -criticized/U -criticize/GSRDZ -criticizer/M -criticizes/A -criticizingly/S -criticizing/UY -critic/MS -critique/MGSD -critter/SM -Cr/M -croaker/M -croak/SRDGZ -croaky/RT -Croatia/M -Croatian/S -Croat/SM -Croce/M -crocheter/M -crochet/RDSZJG -crockery/SM -Crockett/M -Crockpot/M -crock/SGRDM -crocodile/MS -crocus/SM -Croesus/SM -crofter/M -croft/MRGZS -croissant/MS -Croix/M -Cromwellian -Cromwell/M -crone/SM -Cronin/M -Cronkite/M -Cronus/M -crony/SM -crookedness/SM -crooked/TPRY -Crookes/M -crookneck/MS -crook/SGDM -crooner/M -croon/SRDGZ -cropland/MS -crop/MS -cropped -cropper/SM -cropping -croquet/MDSG -croquette/SM -Crosby/M -crosier/SM -crossarm -crossbarred -crossbarring -crossbar/SM -crossbeam/MS -crossbones -crossbowman/M -crossbowmen -crossbow/SM -crossbred/S -crossbreed/SG -crosscheck/SGD -crosscurrent/SM -crosscut/SM -crosscutting -crossed/UA -crosses/UA -crossfire/SM -crosshatch/GDS -crossing/M -Cross/M -crossness/MS -crossover/MS -crosspatch/MS -crosspiece/SM -crosspoint -crossproduct/S -crossroad/GSM -crossroads/M -crosstalk/M -crosstown -crosswalk/MS -crossway/M -crosswind/SM -crosswise -crossword/MS -cross/ZTYSRDMPBJG -crotchetiness/M -crotchet/MS -crotchety/P -crotchless -crotch/MDS -crouch/DSG -croupier/M -croup/SMDG -croupy/TZR -croton/MS -crowbait -crowbarred -crowbarring -crowbar/SM -crowdedness/M -crowded/P -crowd/MRDSG -crowfeet -crowfoot/M -crow/GDMS -Crowley/M -crowned/U -crowner/M -crown/RDMSJG -crozier's -CRT/S -crucial/Y -crucible/MS -crucifiable -crucifixion/MS -Crucifixion/MS -crucifix/SM -cruciform/S -crucify/NGDS -crudded -crudding -cruddy/TR -crudeness/MS -crude/YSP -crudits -crudity/MS -crud/STMR -cruelness/MS -cruelty/SM -cruel/YRTSP -cruet/MS -cruft -crufty -Cruikshank/M -cruise/GZSRD -cruiser/M -cruller/SM -crumb/GSYDM -crumble/DSJG -crumbliness/MS -crumbly/PTRS -crumby/RT -crumminess/S -crummy/SRTP -crump -crumpet/SM -crumple/DSG -crunch/DSRGZ -crunchiness/MS -crunchy/TRP -crupper/MS -crusade/GDSRMZ -crusader/M -cruse/MS -crushable/U -crusher/M -crushing/Y -crushproof -crush/SRDBGZ -Crusoe/M -crustacean/MS -crustal -crust/GMDS -crustily -crustiness/SM -crusty/SRTP -crutch/MDSG -Crux/M -crux/MS -Cruz/M -crybaby/MS -cry/JGDRSZ -cryogenic/S -cryogenics/M -cryostat/M -cryosurgery/SM -cryptanalysis/M -cryptanalyst/M -cryptanalytic -crypt/CS -cryptic -cryptically -cryptogram/MS -cryptographer/MS -cryptographic -cryptographically -cryptography/MS -cryptologic -cryptological -cryptologist/M -cryptology/M -Cryptozoic/M -crypt's -crystalline/S -crystallite/SM -crystallization/AMS -crystallized/UA -crystallizes/A -crystallize/SRDZG -crystallizing/A -crystallographer/MS -crystallographic -crystallography/M -Crystal/M -crystal/SM -Crysta/M -Crystie/M -Cs -C's -cs/EA -cs's -CST -ct -CT -Cthrine/M -Ct/M -ctn -ctr -Cuba/M -Cuban/S -cubbed -cubbing -cubbyhole/MS -cuber/M -cube/SM -cubical/Y -cubicle/SM -cubic/YS -cubism/SM -cubist/MS -cubit/MS -cub/MDRSZG -cuboid -Cuchulain/M -cuckold/GSDM -cuckoldry/MS -cuckoo/SGDM -cucumber/MS -cuddle/GSD -cuddly/TRP -cu/DG -cudgel/GSJMD -cud/MS -cue/MS -cuff/GSDM -Cuisinart/M -cuisine/MS -Culbertson/M -culinary -Cullan/M -cull/DRGS -cullender's -Cullen/M -culler/M -Culley/M -Cullie/M -Cullin/M -Cull/MN -Cully/M -culminate/XSDGN -culmination/M -culotte/S -culpability/MS -culpable/I -culpableness/M -culpably -culpa/SM -culprit/SM -cultism/SM -cultist/SM -cultivable -cultivated/U -cultivate/XBSDGN -cultivation/M -cultivator/SM -cult/MS -cultural/Y -cultured/U -culture/SDGM -Culver/MS -culvert/SM -Cu/M -cumber/DSG -Cumberland/M -cumbersomeness/MS -cumbersome/YP -cumbrous -cumin/MS -cummerbund/MS -Cummings -cumquat's -cum/S -cumulate/XVNGSD -cumulation/M -cumulative/Y -cumuli -cumulonimbi -cumulonimbus/M -cumulus/M -Cunard/M -cuneiform/S -cunnilingus/SM -Cunningham/M -cunningness/M -cunning/RYSPT -cunt/SM! -cupboard/SM -cupcake/SM -Cupertino/M -cupful/SM -cupidinously -cupidity/MS -Cupid/M -cupid/S -cup/MS -cupola/MDGS -cupped -cupping/M -cupric -cuprous -curability/MS -curable/IP -curableness/MI -curably/I -Curacao/M -curacy/SM -curare/MS -curate/VGMSD -curative/YS -curatorial -curator/KMS -curbing/M -curbside -curb/SJDMG -curbstone/MS -Curcio/M -curdle/SDG -curd/SMDG -cured/U -cure/KBDRSGZ -curer/MK -curettage/SM -curfew/SM -curfs -curiae -curia/M -cur/IBS -Curie/M -curie/SM -curiosity/SM -curio/SM -curiousness/SM -curious/TPRY -Curitiba/M -curium/MS -curler/SM -curlew/MS -curlicue/MGDS -curliness/SM -curling/M -curl/UDSG -curlycue's -curly/PRT -curmudgeon/MYS -Curran/M -currant/SM -curred/AFI -currency's -currency/SF -current/FSY -currently/A -currentness/M -Currey/M -curricle/M -curricula -curricular -curriculum/M -Currie/M -currier/M -Currier/M -curring/FAI -Curr/M -currycomb/DMGS -Curry/MR -curry/RSDMG -cur's -curs/ASDVG -curse/A -cursedness/M -cursed/YRPT -curse's -cursive/EPYA -cursiveness/EM -cursives -cursor/DMSG -cursorily -cursoriness/SM -cursory/P -curtailer/M -curtail/LSGDR -curtailment/SM -curtain/GSMD -Curtice/M -Curtis/M -Curt/M -curtness/MS -curtsey's -curtsy/SDMG -curt/TYRP -curvaceousness/S -curvaceous/YP -curvature/MS -curved/A -curved's -curve/DSGM -curvilinearity/M -curvilinear/Y -curving/M -curvy/RT -cushion/SMDG -Cushman/M -cushy/TR -cuspid/MS -cuspidor/MS -cusp/MS -cussedness/M -cussed/YP -cuss/EGDSR -cusses/F -cussing/F -cuss's -custard/MS -Custer/M -custodial -custodianship/MS -custodian/SM -custody/MS -customarily -customariness/M -customary/PS -customer/M -customhouse/S -customization/SM -customize/ZGBSRD -custom/SMRZ -cutaneous/Y -cutaway/SM -cutback/SM -cuteness/MS -cute/SPY -cutesy/RT -cuticle/SM -cutlass/MS -cutler/SM -cutlery/MS -cutlet/SM -cut/MRST -cutoff/MS -cutout/SM -cutter/SM -cutthroat/SM -cutting/MYS -cuttlebone/SM -cuttlefish/MS -cuttle/M -cutup/MS -cutworm/MS -Cuvier/M -Cuzco/M -CV -cw -cwt -Cyanamid/M -cyanate/M -cyanic -cyanide/GMSD -cyan/MS -cyanogen/M -Cybele/M -cybernetic/S -cybernetics/M -cyberpunk/S -cyberspace/S -Cybill/M -Cybil/M -Cyb/M -cyborg/S -Cyclades -cyclamen/MS -cycle/ASDG -cycler -cycle's -cycleway/S -cyclic -cyclical/SY -cycling/M -cyclist/MS -cyclohexanol -cycloidal -cycloid/SM -cyclometer/MS -cyclone/SM -cyclonic -cyclopean -cyclopedia/MS -cyclopes -Cyclopes -cyclops -Cyclops/M -cyclotron/MS -cyder/SM -cygnet/MS -Cygnus/M -cylinder/GMDS -cylindric -cylindrical/Y -Cy/M -cymbalist/MS -cymbal/SM -Cymbre/M -Cynde/M -Cyndia/M -Cyndie/M -Cyndi/M -Cyndy/M -cynical/UY -cynicism/MS -cynic/MS -cynosure/SM -Cynthea/M -Cynthia/M -Cynthie/M -Cynthy/M -cypher/MGSD -cypreses -cypress/SM -Cyprian -Cypriot/SM -Cyprus/M -Cyrano/M -Cyrille/M -Cyrillic -Cyrill/M -Cyrillus/M -Cyril/M -Cyrus/M -cystic -cyst/MS -cytochemistry/M -cytochrome/M -cytologist/MS -cytology/MS -cytolysis/M -cytoplasmic -cytoplasm/SM -cytosine/MS -cytotoxic -CZ -czarevitch/M -czarina/SM -czarism/M -czarist/S -czarship -czar/SM -Czech -Czechoslovakia/M -Czechoslovakian/S -Czechoslovak/S -Czechs -Czerniak/M -Czerny/M -D -DA -dabbed -dabber/MS -dabbing -dabbler/M -dabble/RSDZG -dab/S -Dacca's -dace/MS -Dacey/M -dacha/SM -Dachau/M -dachshund/SM -Dacia/M -Dacie/M -Dacron/MS -dactylic/S -dactyl/MS -Dacy/M -Dadaism/M -dadaism/S -Dadaist/M -dadaist/S -Dada/M -daddy/SM -Dade/M -dado/DMG -dadoes -dad/SM -Daedalus/M -Dael/M -daemonic -daemon/SM -Daffie/M -Daffi/M -daffiness/S -daffodil/MS -Daffy/M -daffy/PTR -daftness/MS -daft/TYRP -DAG -dagger/DMSG -Dag/M -Dagmar/M -Dagny/M -Daguerre/M -daguerreotype/MGDS -Dagwood/M -Dahlia/M -dahlia/MS -Dahl/M -Dahomey/M -Daile/M -dailiness/MS -daily/PS -Daimler/M -daintily -daintiness/MS -dainty/TPRS -daiquiri/SM -dairying/M -dairyland -dairymaid/SM -dairyman/M -dairymen -dairy/MJGS -dairywoman/M -dairywomen -Daisey/M -Daisie/M -Daisi/M -dais/SM -Daisy/M -daisy/SM -Dakar/M -Dakotan -Dakota/SM -Dale/M -Dalenna/M -dale/SMH -daleth/M -Daley/M -Dalhousie/M -Dalia/M -Dalian/M -Dalila/M -Dali/SM -Dallas/M -dalliance/SM -dallier/M -Dalli/MS -Dall/M -Dallon/M -dally/ZRSDG -Dal/M -Dalmatia/M -dalmatian/S -Dalmatian/SM -Daloris/M -Dalston/M -Dalt/M -Dalton/M -Daly/M -damageable -damaged/U -damage/MZGRSD -damager/M -damaging/Y -Damara/M -Damaris/M -Damascus/M -damask/DMGS -dame/SM -Dame/SMN -Damian/M -Damiano/M -Damien/M -Damion/M -Damita/M -dam/MDS -dammed -damming -dammit/S -damnably -damnation/MS -damnedest/MS -damned/TR -damn/GSBRD -damning/Y -Damocles/M -Damon/M -damped/U -dampener/M -dampen/RDZG -damper/M -dampness/MS -damp/SGZTXYRDNP -damselfly/MS -damsel/MS -damson/MS -Dana -Dana/M -Danbury/M -dancelike -dancer/M -dance/SRDJGZ -dandelion/MS -dander/DMGS -dandify/SDG -dandily -dandle/GSD -dandruff/MS -dandy/TRSM -Danelaw/M -Danella/M -Danell/M -Dane/SM -Danette/M -danger/DMG -Dangerfield/M -dangerousness/M -dangerous/YP -dangler/M -dangle/ZGRSD -dangling/Y -dang/SGZRD -Danial/M -Dania/M -Danica/M -Danice/M -Daniela/M -Daniele/M -Daniella/M -Danielle/M -Daniel/SM -Danielson/M -Danie/M -Danika/M -Danila/M -Dani/M -Danish -danish/S -Danita/M -Danit/M -dankness/MS -dank/TPYR -Danna/M -Dannel/M -Dannie/M -Danni/M -Dannye/M -Danny/M -danseuse/SM -Dan/SM -Dante/M -Danton/M -Danube/M -Danubian -Danville/M -Danya/M -Danyelle/M -Danyette/M -Danzig/M -Daphene/M -Daphna/M -Daphne/M -dapperness/M -dapper/PSTRY -dapple/SDG -Dara/M -Darbee/M -Darbie/M -Darb/M -Darby/M -Darcee/M -Darcey/M -Darcie/M -Darci/M -D'Arcy -Darcy/M -Darda/M -Dardanelles -daredevil/MS -daredevilry/S -Dareen/M -Darelle/M -Darell/M -Dare/M -Daren/M -darer/M -daresay -dare/ZGDRSJ -d'Arezzo -Daria/M -Darice/M -Darill/M -Dari/M -daringness/M -daring/PY -Darin/M -Dario/M -Darius/M -Darjeeling/M -darkener/M -darken/RDZG -dark/GTXYRDNSP -darkish -darkly/TR -darkness/MS -darkroom/SM -Darla/M -Darleen/M -Darlene/M -Darline/M -Darling/M -darlingness/M -Darlington/M -darling/YMSP -Darlleen/M -Dar/MNH -Darnall/M -darned/TR -Darnell/M -darner/M -darn/GRDZS -darning/M -Darn/M -Daron/M -DARPA/M -Darrelle/M -Darrell/M -Darrel/M -Darren/M -Darrick/M -Darrin/M -Darrow/M -Darryl/M -Darsey/M -Darsie/M -d'art -dartboard/SM -darter/M -Darth/M -Dartmouth/M -dart/MRDGZS -Darvon/M -Darwinian/S -Darwinism/MS -Darwinist/MS -Darwin/M -Darya/M -Daryle/M -Daryl/M -Daryn/M -Dasha/M -dashboard/SM -dasher/M -dash/GZSRD -dashiki/SM -dashing/Y -Dasie/M -Dasi/M -dastardliness/SM -dastardly/P -dastard/MYS -Dasya/M -DAT -database/DSMG -datafile -datagram/MS -data/M -Datamation/M -Datamedia/M -dataset/S -datedly -datedness -date/DRSMZGV -dated/U -dateless -dateline/DSMG -dater/M -Datha/M -dative/S -Datsun/M -datum/MS -dauber/M -daub/RDSGZ -Daugherty/M -daughter/MYS -Daumier/M -Daune/M -daunt/DSG -daunted/U -daunting/Y -dauntlessness/SM -dauntless/PY -dauphin/SM -Davao/M -Daveen/M -Dave/M -Daven/M -Davenport/M -davenport/MS -Daveta/M -Davey/M -Davida/M -Davidde/M -Davide/M -David/SM -Davidson/M -Davie/M -Davina/M -Davine/M -Davinich/M -Davin/M -Davis/M -Davita/M -davit/SM -Dav/MN -Davon/M -Davy/SM -dawdler/M -dawdle/ZGRSD -Dawes/M -Dawna/M -dawn/GSDM -Dawn/M -Dawson/M -daybed/S -daybreak/SM -daycare/S -daydreamer/M -daydream/RDMSZG -Dayle/M -daylight/GSDM -Day/M -Dayna/M -daysack -day/SM -daytime/SM -Dayton/M -dazed/PY -daze/DSG -dazzler/M -dazzle/ZGJRSD -dazzling/Y -db -DB -dbl -dB/M -DBMS -DC -DD -Ddene/M -DDS -DDT -DE -deacon/DSMG -deaconess/MS -deadbeat/SM -deadbolt/S -deadener/M -deadening/MY -deaden/RDG -deadhead/MS -deadline/MGDS -deadliness/SM -deadlock/MGDS -deadly/RPT -deadness/M -deadpanned -deadpanner -deadpanning -deadpan/S -dead/PTXYRN -deadwood/SM -deafening/MY -deafen/JGD -deafness/MS -deaf/TXPYRN -dealer/M -dealership/MS -dealing/M -deallocator -deal/RSGZJ -dealt -Deana/M -dean/DMG -Deandre/M -Deane/M -deanery/MS -Dean/M -Deanna/M -Deanne/M -Deann/M -deanship/SM -Dearborn/M -dearness/MS -dearth/M -dearths -dear/TYRHPS -deary/MS -deassign -deathbed/MS -deathblow/SM -deathless/Y -deathlike -deathly/TR -death/MY -deaths -deathtrap/SM -deathward -deathwatch/MS -debacle/SM -debarkation/SM -debark/G -debar/L -debarment/SM -debarring -debaser/M -debatable/U -debate/BMZ -debater/M -debauchedness/M -debauched/PY -debauchee/SM -debaucher/M -debauchery/SM -debauch/GDRS -Debbie/M -Debbi/M -Debby/M -Debee/M -debenture/MS -Debera/M -debilitate/NGXSD -debilitation/M -debility/MS -Debi/M -debit/DG -deb/MS -Deb/MS -debonairness/SM -debonair/PY -Deborah/M -Debora/M -Debor/M -debouch/DSG -Debra/M -debrief/GJ -debris/M -debtor/SM -debt/SM -Debussy/M -dbutante/SM -debut/MDG -decade/MS -decadency/S -decadent/YS -decaffeinate/DSG -decaf/S -decagon/MS -Decalogue/M -decal/SM -decamp/L -decampment/MS -decapitate/GSD -decapitator/SM -decathlon/SM -Decatur/M -decay/GRD -Decca/M -Deccan/M -decease/M -decedent/MS -deceitfulness/SM -deceitful/PY -deceit/SM -deceived/U -deceiver/M -deceives/U -deceive/ZGRSD -deceivingly -deceiving/U -decelerate/XNGSD -deceleration/M -decelerator/SM -December/SM -decency/ISM -decennial/SY -decent/TIYR -deception/SM -deceptiveness/SM -deceptive/YP -decertify/N -dechlorinate/N -decibel/MS -decidability/U -decidable/U -decidedness/M -decided/PY -decide/GRSDB -deciduousness/M -deciduous/YP -decile/SM -deciliter/SM -decimal/SYM -decimate/XNGDS -decimation/M -decimeter/MS -decipherable/IU -decipher/BRZG -decipherer/M -decisional -decisioned -decisioning -decision/ISM -decisive/IPY -decisiveness/MSI -deckchair -decker/M -Decker/M -deck/GRDMSJ -deckhand/S -decking/M -Deck/RM -declamation/SM -declamatory -declarable -declaration/MS -declaration's/A -declarative/SY -declarator/MS -declaratory -declare/AGSD -declared/U -declarer/MS -declension/SM -declination/MS -decliner/M -decline/ZGRSD -declivity/SM -Dec/M -DEC/M -DECNET -DECnet/M -deco -dcolletage/S -dcollet -decolletes -decolorising -decomposability/M -decomposable/IU -decompose/B -decompress/R -decongestant/S -deconstruction -deconvolution -decorated/AU -decorate/NGVDSX -decorates/A -decorating/A -decoration/ASM -decorativeness/M -decorative/YP -decorator/SM -decorousness/MS -decorousness's/I -decorous/PIY -decor/S -decorticate/GNDS -decortication/M -decorum/MS -decoupage/MGSD -decouple/G -decoy/M -decrease -decreasing/Y -decreeing -decree/RSM -decremental -decrement/DMGS -decrepit -decrepitude/SM -decriminalization/S -decriminalize/DS -decry/G -decrypt/GD -decryption -DECstation/M -DECsystem/M -DECtape/M -decustomised -Dedekind/M -Dede/M -dedicate/AGDS -dedicated/Y -dedication/MS -dedicative -dedicator/MS -dedicatory -Dedie/M -Dedra/M -deduce/RSDG -deducible -deductibility/M -deductible/S -deduction/SM -deductive/Y -deduct/VG -Deeanne/M -Deeann/M -deeded -Deedee/M -deeding -deed/IS -deed's -deejay/MDSG -Dee/M -deem/ADGS -deemphasis -Deena/M -deepen/DG -deepish -deepness/MS -deep/PTXSYRN -Deerdre/M -Deere/M -deerskin/MS -deer/SM -deerstalker/SM -deerstalking/M -Deeyn/M -deface/LZ -defacement/SM -defaecate -defalcate/NGXSD -defalcation/M -defamation/SM -defamatory -defamer/M -defame/ZR -defaulter/M -default/ZR -defeated/U -defeater/M -defeatism/SM -defeatist/SM -defeat/ZGD -defecate/DSNGX -defecation/M -defection/SM -defectiveness/MS -defective/PYS -defect/MDSVG -defector/MS -defendant/SM -defended/U -defenestrate/GSD -defenselessness/MS -defenseless/PY -defenses/U -defense/VGSDM -defensibility/M -defensible/I -defensibly/I -defensiveness/MS -defensive/PSY -deference/MS -deferential/Y -deferent/S -deferrable -deferral/SM -deferred -deferrer/MS -deferring -deffer -defiance/MS -defiant/Y -defibrillator/M -deficiency/MS -deficient/SY -deficit/MS -defier/M -defile/L -defilement/MS -definable/UI -definably/I -define/AGDRS -defined/U -definer/SM -definite/IPY -definiteness/IMS -definitional -definition/ASM -definitiveness/M -definitive/SYP -defis -deflate/XNGRSDB -deflationary -deflation/M -deflect/DSGV -deflected/U -deflection/MS -deflector/MS -defocus -defocussing -Defoe/M -defog -defogger/S -defoliant/SM -defoliator/SM -deformational -deform/B -deformed/U -deformity/SM -defrauder/M -defraud/ZGDR -defrayal/SM -defroster/M -defrost/RZ -deftness/MS -deft/TYRP -defunct/S -defying/Y -defy/RDG -def/Z -deg -Degas/M -degassing -degauss/GD -degeneracy/MS -degenerateness/M -degenerate/PY -degrade/B -degradedness/M -degraded/YP -degrading/Y -degrease -degree/SM -degum -Dehlia/M -dehumanize -dehydrator/MS -deicer/M -deice/ZR -deictic -Deidre/M -deification/M -deify/SDXGN -deign/DGS -Deimos/M -Deina/M -Deirdre/MS -deistic -deist/SM -Deity/M -deity/SM -deja -deject/DSG -dejectedness/M -dejected/PY -dejection/SM -Dejesus/M -DeKalb/M -DeKastere/M -Delacroix/M -Delacruz/M -Delainey/M -Dela/M -Delaney/M -Delano/M -Delawarean/SM -Delaware/MS -delay/D -delayer/G -Delbert/M -Delcina/M -Delcine/M -delectableness/M -delectable/SP -delectably -delectation/MS -delegable -Deleon/M -deleted/U -deleteriousness/M -deleterious/PY -delete/XBRSDNG -deletion/M -delfs -Delft/M -delft/MS -delftware/S -Delgado/M -Delhi/M -Delia/M -deliberateness/SM -deliberate/PVY -deliberativeness/M -deliberative/PY -Delibes/M -delicacy/IMS -delicate/IYP -delicatenesses -delicateness/IM -delicates -delicatessen/MS -deliciousness/MS -delicious/YSP -delicti -delightedness/M -delighted/YP -delightfulness/M -delightful/YP -Delilah/M -Delilahs -Delila/M -Delinda/M -delineate/SDXVNG -delineation/M -delinquency/MS -delinquent/SYM -deliquesce/GSD -deliquescent -deliriousness/MS -delirious/PY -delirium/SM -deli/SM -Delius/M -deliverables -deliverable/U -deliver/AGSD -deliverance/SM -delivered/U -deliverer/SM -delivery/AM -deliverymen/M -Della/M -Dell/M -dell/SM -Dellwood/M -Delly/M -Delmar/M -Delmarva/M -Delmer/M -Delmonico -Delmore/M -Delmor/M -Del/MY -Delora/M -Delores/M -Deloria/M -Deloris/M -Delphic -Delphi/M -Delphine/M -Delphinia/M -delphinium/SM -Delphinus/M -Delta/M -delta/MS -deltoid/SM -deluder/M -delude/RSDG -deluding/Y -deluge/SDG -delusional -delusion/SM -delusiveness/M -delusive/PY -deluxe -delve/GZSRD -delver/M -demagnify/N -demagogic -demagogue/GSDM -demagoguery/SM -demagogy/MS -demander/M -demand/GSRD -demandingly -demanding/U -demarcate/SDNGX -demarcation/M -Demavend/M -demean/GDS -demeanor/SM -dementedness/M -demented/YP -dementia/MS -Demerol/M -demesne/SM -Demeter/M -Demetra/M -Demetre/M -Demetria/M -Demetri/MS -Demetrius/M -demigod/MS -demijohn/MS -demimondaine/SM -demimonde/SM -demineralization/SM -Deming/M -demise/DMG -demit -demitasse/MS -demitted -demitting -Dem/MG -democracy/MS -Democratic -democratically/U -democratic/U -democratization/MS -democratize/DRSG -democratizes/U -Democrat/MS -democrat/SM -Democritus/M -dmod -demo/DMPG -demographer/MS -demographical/Y -demographic/S -demography/MS -demolisher/M -demolish/GSRD -demolition/MS -demonetization/S -demoniacal/Y -demoniac/S -demonic -demonology/M -demon/SM -demonstrable/I -demonstrableness/M -demonstrably/I -demonstrate/XDSNGV -demonstration/M -demonstrativenesses -demonstrativeness/UM -demonstratives -demonstrative/YUP -demonstrator/MS -demoralization/M -demoralizer/M -demoralizing/Y -DeMorgan/M -Demosthenes/M -demote/DGX -demotic/S -Demott/M -demount/B -Dempsey/M -demulcent/S -demultiplex -demureness/SM -demure/YP -demurral/MS -demurred -demurrer/MS -demurring -demur/RTS -demythologization/M -demythologize/R -den -Dena/M -dendrite/MS -Deneb/M -Denebola/M -Deneen/M -Dene/M -Deng/M -dengue/MS -deniable/U -denial/SM -Denice/M -denier/M -denigrate/VNGXSD -denigration/M -denim/SM -Denise/M -Deni/SM -denizen/SMDG -Den/M -De/NM -Denmark/M -Denna/M -denned -Dennet/M -Denney/M -Dennie/M -Denni/MS -denning -Dennison/M -Denny/M -denominate/V -denominational/Y -denote/B -denouement/MS -denounce/LZRSDG -denouncement/SM -denouncer/M -dense/FR -densely -denseness/SM -densitometer/MS -densitometric -densitometry/M -density/MS -dens/RT -dental/YS -dentifrice/SM -dentine's -dentin/SM -dent/ISGD -dentistry/MS -dentist/SM -dentition/MS -dent's -denture/IMS -denuclearize/GSD -denudation/SM -denude/DG -denuder/M -denunciate/VNGSDX -denunciation/M -Denver/M -denying/Y -Deny/M -Denys -Denyse/M -deny/SRDZG -deodorant/SM -deodorization/SM -deodorize/GZSRD -deodorizer/M -Deon/M -Deonne/M -deoxyribonucleic -depart/L -departmentalization/SM -departmentalize/DSG -departmental/Y -department/MS -departure/MS -dependability/MS -dependableness/M -dependable/P -dependably -Dependant/MS -depend/B -dependence/ISM -dependency/MS -dependent/IYS -dependent's -depicted/U -depicter/M -depiction/SM -depict/RDSG -depilatory/S -deplete/VGNSDX -depletion/M -deplorableness/M -deplorable/P -deplorably -deplorer/M -deplore/SRDBG -deploring/Y -deployable -deploy/AGDLS -deployment/SAM -depolarize -deponent/S -deportation/MS -deportee/SM -deport/LG -deportment/MS -depose -deposit/ADGS -depositary/M -deposition/A -depositor/SAM -depository/MS -depravedness/M -depraved/PY -deprave/GSRD -depraver/M -depravity/SM -deprecate/XSDNG -deprecating/Y -deprecation/M -deprecatory -depreciable -depreciate/XDSNGV -depreciating/Y -depreciation/M -depreciative/Y -depressant/S -depressible -depression/MS -depressive/YS -depressor/MS -depress/V -deprive/GSD -depth/M -depths -Dept/M -deputation/SM -depute/SDG -deputize/DSG -deputy/MS -dequeue -derail/L -drailleur/MS -derailment/MS -derange/L -derangement/MS -Derbyshire/M -derby/SM -Derby/SM -dereference/Z -Derek/M -dereliction/SM -derelict/S -Derick/M -deride/D -deriding/Y -derision/SM -derisiveness/MS -derisive/PY -derisory -derivable/U -derivate/XNV -derivation/M -derivativeness/M -derivative/SPYM -derive/B -derived/U -Derk/M -Der/M -dermal -dermatitides -dermatitis/MS -dermatological -dermatologist/MS -dermatology/MS -dermis/SM -Dermot/M -derogate/XDSNGV -derogation/M -derogatorily -derogatory -Derrek/M -Derrick/M -derrick/SMDG -Derrida/M -derrire/S -Derrik/M -Derril/M -derringer/SM -Derron/M -Derry/M -dervish/SM -Derward/M -Derwin/M -Des -desalinate/NGSDX -desalination/M -desalinization/MS -desalinize/GSD -desalt/G -descant/M -Descartes/M -descendant/SM -descended/FU -descendent's -descender/M -descending/F -descends/F -descend/ZGSDR -descent -describable/I -describe/ZB -description/MS -descriptiveness/MS -descriptive/SYP -descriptor/SM -descry/SDG -Desdemona/M -desecrater/M -desecrate/SRDGNX -desecration/M -deserter/M -desertification -desertion/MS -desert/ZGMRDS -deservedness/M -deserved/YU -deserve/J -deserving/Y -dshabill's -desiccant/S -desiccate/XNGSD -desiccation/M -desiccator/SM -desiderata -desideratum/M -designable -design/ADGS -designate/VNGSDX -designational -designation/M -designator/SM -designed/Y -designer/M -designing/U -Desi/M -desirabilia -desirability's -desirability/US -desirableness/SM -desirableness's/U -desirable/UPS -desirably/U -Desirae/M -desire/BR -desired/U -Desiree/M -desirer/M -Desiri/M -desirousness/M -desirous/PY -desist/DSG -desk/SM -desktop/S -Desmond/M -Desmund/M -desolateness/SM -desolate/PXDRSYNG -desolater/M -desolating/Y -desolation/M -desorption/M -despairer/M -despairing/Y -despair/SGDR -desperadoes -desperado/M -desperateness/SM -desperate/YNXP -desperation/M -despicable -despicably -despiser/M -despise/SRDG -despoil/L -despoilment/MS -despond -despondence/S -despondency/MS -despondent/Y -despotic -despotically -despotism/SM -dessert/SM -dessicate/DN -d'Estaing -destinate/NX -destination/M -destine/GSD -destiny/MS -destituteness/M -destitute/NXP -destitution/M -destroy/BZGDRS -destroyer/M -destructibility/SMI -destructible/I -destruction/SM -destructiveness/MS -destructive/YP -destructor/M -destruct/VGSD -desuetude/MS -desultorily -desultoriness/M -desultory/P -detachedness/M -detached/YP -detacher/M -detach/LSRDBG -detachment/SM -detailedness/M -detailed/YP -detainee/S -detainer/M -detain/LGRDS -detainment/MS -d'etat -detectability/U -detectable/U -detectably/U -detect/DBSVG -detected/U -detection/SM -detective/MS -detector/MS -dtente -detentes -detention/SM -detergency/M -detergent/SM -deteriorate/XDSNGV -deterioration/M -determent/SM -determinability/M -determinable/IP -determinableness/IM -determinacy/I -determinant/MS -determinateness/IM -determinate/PYIN -determination/IM -determinativeness/M -determinative/P -determinedly -determinedness/M -determined/U -determine/GASD -determiner/SM -determinism/MS -determinism's/I -deterministically -deterministic/I -deterred/U -deterrence/SM -deterrent/SMY -deterring -detersive/S -deter/SL -deters/V -detestableness/M -detestable/P -detestably -detestation/SM -dethrone/L -dethronement/SM -detonable -detonated/U -detonate/XDSNGV -detonation/M -detonator/MS -detour/G -detoxification/M -detoxify/NXGSD -detox/SDG -detract/GVD -detractive/Y -d'etre -detribalize/GSD -detrimental/SY -detriment/SM -detritus/M -Detroit/M -deuced/Y -deuce/SDGM -deus -deuterium/MS -deuteron/M -Deuteronomy/M -Deutsch/M -Deva/M -Devanagari/M -Devan/M -devastate/XVNGSD -devastating/Y -devastation/M -devastator/SM -develop/ALZSGDR -developed/U -developer/MA -developmental/Y -development/ASM -deviance/MS -deviancy/S -deviant/YMS -deviated/U -deviate/XSDGN -deviating/U -deviation/M -devilishness/MS -devilish/PY -devilment/SM -devilry/MS -devil/SLMDG -deviltry/MS -Devi/M -Devina/M -Devin/M -Devinne/M -deviousness/SM -devious/YP -devise/JR -deviser/M -Devland/M -Devlen/M -Devlin/M -Dev/M -devoice -devolution/MS -devolve/GSD -Devondra/M -Devonian -Devon/M -Devonna/M -Devonne/M -Devonshire/M -Devora/M -devoted/Y -devotee/MS -devote/XN -devotional/YS -devotion/M -devourer/M -devour/SRDZG -devoutness/MS -devout/PRYT -Devy/M -Dewain/M -dewar -Dewar/M -Dewayne/M -dewberry/MS -dewclaw/SM -dewdrop/MS -Dewey/M -Dewie/M -dewiness/MS -Dewitt/M -dewlap/MS -Dew/M -dew/MDGS -dewy/TPR -Dexedrine/M -dexes/I -Dex/M -dexter -dexterity/MS -Dexter/M -dexterousness/MS -dexterous/PY -dextrose/SM -DH -Dhaka -Dhaulagiri/M -dhoti/SM -dhow/MS -DI -diabase/M -diabetes/M -diabetic/S -diabolic -diabolicalness/M -diabolical/YP -diabolism/M -diachronic/P -diacritical/YS -diacritic/MS -diadem/GMDS -diaereses -diaeresis/M -Diaghilev/M -diagnometer/SM -diagnosable/U -diagnose/BGDS -diagnosed/U -diagnosis/M -diagnostically -diagnostician/SM -diagnostic/MS -diagnostics/M -diagonalize/GDSB -diagonal/YS -diagrammable -diagrammatic -diagrammaticality -diagrammatically -diagrammed -diagrammer/SM -diagramming -diagram/MS -Diahann/M -dialectal/Y -dialectical/Y -dialectic/MS -dialect/MS -dialed/A -dialer/M -dialing/M -dial/MRDSGZJ -dialogged -dialogging -dialog/MS -dials/A -dialysis/M -dialyzed/U -dialyzes -diam -diamagnetic -diameter/MS -diametric -diametrical/Y -diamondback/SM -diamond/GSMD -Diana/M -Diandra/M -Diane/M -Dianemarie/M -Dian/M -Dianna/M -Dianne/M -Diann/M -Diannne/M -diapason/MS -diaper/SGDM -diaphanousness/M -diaphanous/YP -diaphragmatic -diaphragm/SM -diarist/SM -Diarmid/M -diarrheal -diarrhea/MS -diary/MS -diaspora -Diaspora/SM -diastase/SM -diastole/MS -diastolic -diathermy/SM -diathesis/M -diatomic -diatom/SM -diatonic -diatribe/MS -Diaz's -dibble/SDMG -dibs -DiCaprio/M -dice/GDRS -dicer/M -dicey -dichloride/M -dichotomization/M -dichotomize/DSG -dichotomous/PY -dichotomy/SM -dicier -diciest -dicing/M -Dickensian/S -dickens/M -Dickens/M -dicker/DG -Dickerson/M -dickey/SM -dick/GZXRDMS! -Dickie/M -dickier -dickiest -Dickinson/M -Dickson/M -Dick/XM -Dicky/M -dicky's -dicotyledonous -dicotyledon/SM -dicta/M -Dictaphone/SM -dictate/SDNGX -dictation/M -dictatorialness/M -dictatorial/YP -dictator/MS -dictatorship/SM -dictionary/SM -diction/MS -dictum/M -didactically -didactic/S -didactics/M -did/AU -diddler/M -diddle/ZGRSD -Diderot/M -Didi/M -didn't -didoes -dido/M -Dido/M -didst -die/DS -Diefenbaker/M -Diego/M -dieing -dielectric/MS -diem -Diem/M -Diena/M -Dierdre/M -diereses -dieresis/M -diesel/GMDS -Diesel's -dies's -dies/U -dietary/S -dieter/M -Dieter/M -dietetic/S -dietetics/M -diethylaminoethyl -diethylstilbestrol/M -dietitian/MS -diet/RDGZSM -Dietrich/M -Dietz/M -difference/DSGM -difference's/I -differences/I -differentiability -differentiable -differential/SMY -differentiated/U -differentiate/XSDNG -differentiation/M -differentiator/SM -differentness -different/YI -differ/SZGRD -difficile -difficult/Y -difficulty/SM -diffidence/MS -diffident/Y -diffract/GSD -diffraction/SM -diffractometer/SM -diffuseness/MS -diffuse/PRSDZYVXNG -diffuser/M -diffusible -diffusional -diffusion/M -diffusiveness/M -diffusive/YP -diffusivity/M -digerati -digested/IU -digester/M -digestibility/MS -digestible/I -digestifs -digestion/ISM -digestive/YSP -digest/RDVGS -digger/MS -digging/S -digitalis/M -digitalization/MS -digitalized -digitalizes -digitalizing -digital/SY -digitization/M -digitizer/M -digitize/ZGDRS -digit/SM -dignified/U -dignify/DSG -dignitary/SM -dignity/ISM -digram -digraph/M -digraphs -digress/GVDS -digression/SM -digressiveness/M -digressive/PY -dig/TS -dihedral -Dijkstra/M -Dijon/M -dike/DRSMG -diker/M -diktat/SM -Dilan/M -dilapidate/XGNSD -dilapidation/M -dilatation/SM -dilated/YP -dilate/XVNGSD -dilation/M -dilatoriness/M -dilator/SM -dilatory/P -Dilbert/M -dilemma/MS -dilettante/MS -dilettantish -dilettantism/MS -diligence/SM -diligentness/M -diligent/YP -dilithium -Dillard/M -Dillie/M -Dillinger/M -dilling/R -dillis -Dill/M -Dillon/M -dill/SGMD -dillydally/GSD -Dilly/M -dilly/SM -dilogarithm -diluent -diluted/U -diluteness/M -dilute/RSDPXYVNG -dilution/M -Di/M -DiMaggio/M -dimensionality/M -dimensional/Y -dimensionless -dimension/MDGS -dimer/M -dime/SM -dimethylglyoxime -dimethyl/M -diminished/U -diminish/SDGBJ -diminuendo/SM -diminution/SM -diminutiveness/M -diminutive/SYP -Dimitri/M -Dimitry/M -dimity/MS -dimmed/U -dimmer/MS -dimmest -dimming -dimness/SM -dimorphism/M -dimple/MGSD -dimply/RT -dim/RYPZS -dimwit/MS -dimwitted -Dinah/M -Dina/M -dinar/SM -diner/M -dine/S -dinette/MS -dingbat/MS -ding/GD -dinghy/SM -dingily -dinginess/SM -dingle/MS -dingoes -dingo/MS -dingus/SM -dingy/PRST -dinky/RST -din/MDRZGS -dinned -dinner/SM -dinnertime/S -dinnerware/MS -Dinnie/M -dinning -Dinny/M -Dino/M -dinosaur/MS -dint/SGMD -diocesan/S -diocese/SM -Diocletian/M -diode/SM -Diogenes/M -Dione/M -Dionisio/M -Dionis/M -Dion/M -Dionne/M -Dionysian -Dionysus/M -Diophantine/M -diopter/MS -diorama/SM -Dior/M -dioxalate -dioxide/MS -dioxin/S -diphtheria/SM -diphthong/SM -diplexers -diploid/S -diplomacy/SM -diploma/SMDG -diplomata -diplomatically -diplomatic/S -diplomatics/M -diplomatist/SM -diplomat/MS -dipodic -dipody/M -dipole/MS -dipped -Dipper/M -dipper/SM -dipping/S -dippy/TR -dip/S -dipsomaniac/MS -dipsomania/SM -dipstick/MS -dipterous -diptych/M -diptychs -Dir -Dirac/M -directed/IUA -directionality -directional/SY -direction/MIS -directions/A -directive/SM -directivity/M -directly/I -directness/ISM -director/AMS -directorate/SM -directorial -directorship/SM -directory/SM -direct/RDYPTSVG -directrix/MS -directs/IA -direful/Y -direness/M -dire/YTRP -dirge/GSDM -Dirichlet/M -dirigible/S -dirk/GDMS -Dirk/M -dirndl/MS -dirtily -dirtiness/SM -dirt/MS -dirty/GPRSDT -Dis -disable/LZGD -disablement/MS -disabler/M -disabuse -disadvantaged/P -disagreeable/S -disallow/D -disambiguate/DSGNX -disappointed/Y -disappointing/Y -disarming/Y -disarrange/L -disastrous/Y -disband/L -disbandment/SM -disbar/L -disbarment/MS -disbarring -disbelieving/Y -disbursal/S -disburse/GDRSL -disbursement/MS -disburser/M -discerner/M -discernibility -discernible/I -discernibly -discerning/Y -discernment/MS -discern/SDRGL -disc/GDM -discharged/U -disciple/DSMG -discipleship/SM -disciplinarian/SM -disciplinary -disciplined/U -discipline/IDM -discipliner/M -disciplines -disciplining -disclosed/U -discography/MS -discolored/MP -discoloreds/U -discolor/G -discombobulate/SDGNX -discomfit/DG -discomfiture/MS -disco/MG -discommode/DG -disconcerting/Y -disconnectedness/S -disconnected/P -disconnecter/M -disconnect/R -disconsolate/YN -discordance/SM -discordant/Y -discord/G -discorporate/D -discotheque/MS -discount/B -discourage/LGDR -discouragement/MS -discouraging/Y -discoverable/I -discover/ADGS -discovered/U -discoverer/S -discovery/SAM -discreetly/I -discreetness's/I -discreetness/SM -discreet/TRYP -discrepancy/SM -discrepant/Y -discreteness/SM -discrete/YPNX -discretionary -discretion/IMS -discretization -discretized -discriminable -discriminant/MS -discriminated/U -discriminate/SDVNGX -discriminating/YI -discrimination/MI -discriminator/MS -discriminatory -discursiveness/S -discussant/MS -discussed/UA -discusser/M -discussion/SM -discus/SM -disdainfulness/M -disdainful/YP -disdain/MGSD -disease/G -disembowelment/SM -disembowel/SLGD -disengage/L -disfigure/L -disfigurement/MS -disfranchise/L -disfranchisement/MS -disgorge -disgrace/R -disgracer/M -disgruntle/DSLG -disgruntlement/MS -disguised/UY -disguise/R -disguiser/M -disgust -disgusted/Y -disgustful/Y -disgusting/Y -dishabille/SM -disharmonious -dishcloth/M -dishcloths -dishevel/LDGS -dishevelment/MS -dish/GD -dishonest -dishonored/U -dishpan/MS -dishrag/SM -dishtowel/SM -dishwasher/MS -dishwater/SM -disillusion/LGD -disillusionment/SM -disinfectant/MS -disinherit -disinterestedness/SM -disinterested/P -disinvest/L -disjoin -disjointedness/S -disjunctive/YS -disjunct/VS -disk/D -diskette/S -dislike/G -dislodge/LG -dislodgement/M -dismalness/M -dismal/PSTRY -dismantle/L -dismantlement/SM -dismay/D -dismayed/U -dismaying/Y -dis/MB -dismember/LG -dismemberment/MS -dismissive/Y -dismiss/RZ -Disneyland/M -Disney/M -disoblige/G -disorderedness/M -disordered/YP -disorderliness/M -disorderly/P -disorder/Y -disorganize -disorganized/U -disparagement/MS -disparager/M -disparage/RSDLG -disparaging/Y -disparateness/M -disparate/PSY -dispatch/Z -dispelled -dispelling -dispel/S -dispensable/I -dispensary/MS -dispensate/NX -dispensation/M -dispenser/M -dispense/ZGDRSB -dispersal/MS -dispersant/M -dispersed/Y -disperser/M -disperse/XDRSZLNGV -dispersible -dispersion/M -dispersiveness/M -dispersive/PY -dispirit/DSG -displace/L -display/AGDS -displayed/U -displeased/Y -displease/G -displeasure -disport -disposable/S -disposal/SM -dispose/IGSD -dispositional -disposition/ISM -disproportional -disproportionate/N -disproportionation/M -disprove/B -disputable/I -disputably/I -disputant/SM -disputation/SM -disputatious/Y -disputed/U -disputer/M -dispute/ZBGSRD -disquieting/Y -disquiet/M -disquisition/SM -Disraeli/M -disregardful -disrepair/M -disreputableness/M -disreputable/P -disrepute/M -disrespect -disrupted/U -disrupter/M -disrupt/GVDRS -disruption/MS -disruptive/YP -disruptor/M -dissatisfy -dissect/DG -dissed -dissembler/M -dissemble/ZGRSD -disseminate/XGNSD -dissemination/M -dissension/SM -dissenter/M -dissent/ZGSDR -dissertation/SM -disservice -disses -dissever -dissidence/SM -dissident/MS -dissimilar/S -dissing -dissipatedly -dissipatedness/M -dissipated/U -dissipater/M -dissipate/XRSDVNG -dissipation/M -dissociable/I -dissociate/DSXNGV -dissociated/U -dissociation/M -dissociative/Y -dissoluble/I -dissoluteness/SM -dissolute/PY -dissolve/ASDG -dissolved/U -dissonance/SM -dissonant/Y -dissuade/GDRS -dissuader/M -dissuasive -dist -distaff/SM -distal/Y -distance/DSMG -distantness/M -distant/YP -distaste -distemper -distend -distension -distention/SM -distillate/XNMS -distillation/M -distillery/MS -distincter -distinctest -distinction/MS -distinctiveness/MS -distinctive/YP -distinct/IYVP -distinctness/MSI -distinguishable/I -distinguishably/I -distinguish/BDRSG -distinguished/U -distinguisher/M -distort/BGDR -distorted/U -distorter/M -distortion/MS -distract/DG -distractedness/M -distracted/YP -distracting/Y -distrait -distraught/Y -distress -distressful -distressing/Y -distribute/ADXSVNGB -distributed/U -distributer -distributional -distribution/AM -distributiveness/M -distributive/SPY -distributivity -distributorship/M -distributor/SM -district/GSAD -district's -distrust/G -disturbance/SM -disturbed/U -disturber/M -disturbing/Y -disturb/ZGDRS -disulfide/M -disuse/M -disyllable/M -Dita/M -ditcher/M -ditch/MRSDG -dither/RDZSG -ditsy/TR -ditto/DMGS -ditty/SDGM -Ditzel/M -ditz/S -diuresis/M -diuretic/S -diurnal/SY -divalent/S -diva/MS -divan/SM -dived/M -divergence/SM -divergent/Y -diverge/SDG -diver/M -diverseness/MS -diverse/XYNP -diversification/M -diversifier/M -diversify/GSRDNX -diversionary -diversion/M -diversity/SM -divert/GSD -diverticulitis/SM -divertimento/M -dive/S -divestiture/MS -divest/LDGS -divestment/S -dividable -divide/AGDS -divided/U -dividend/MS -divider/MS -divination/SM -diviner/M -divine/RSDTZYG -divinity/MS -divisibility/IMS -divisible/I -divisional -division/SM -divisiveness/MS -divisive/PY -divisor/SM -divorce/MS -divorce/GSDLM -divorcement/MS -divot/MS -div/TZGJDRS -divulge/GSD -divvy/GSDM -Dixiecrat/MS -dixieland -Dixieland/MS -Dixie/M -Dix/M -Dixon/M -dizzily -dizziness/SM -dizzying/Y -dizzy/PGRSDT -DJ -Djakarta's -djellabah's -djellaba/S -d/JGVX -Djibouti/M -DMD -Dmitri/M -DMZ -DNA -Dnepropetrovsk/M -Dnepr's -Dnieper's -Dniester/M -Dniren/M -DOA -doable -DOB -Dobbin/M -dobbin/MS -Doberman -Dobro/M -docent/SM -docile/Y -docility/MS -docker/M -docket/GSMD -dock/GZSRDM -dockland/MS -dockside/M -dockworker/S -dockyard/SM -doc/MS -Doctor -doctoral -doctorate/SM -doctor/GSDM -Doctorow/M -doctrinaire/S -doctrinal/Y -doctrine/SM -docudrama/S -documentary/MS -documentation/MS -documented/U -document/RDMZGS -DOD -dodder/DGS -dodecahedra -dodecahedral -dodecahedron/M -Dode/M -dodge/GZSRD -Dodge/M -dodgem/S -dodger/M -Dodgson/M -Dodie/M -Dodi/M -Dodington/M -Dodoma/M -dodo/SM -Dodson/M -Dody/M -DOE -Doe/M -doe/MS -doer/MU -does/AU -doeskin/MS -doesn't -d'oeuvre -doff/SGD -dogcart/SM -dogcatcher/MS -dogeared -Doge/M -doge/SM -dogfight/GMS -dogfish/SM -dogfought -doggedness/SM -dogged/PY -doggerel/SM -dogging -doggone/RSDTG -doggy/SRMT -doghouse/SM -dogie/SM -doglegged -doglegging -dogleg/SM -dogma/MS -dogmatically/U -dogmatic/S -dogmatics/M -dogmatism/SM -dogmatist/SM -dogsbody/M -dog/SM -dogtooth/M -Dogtown/M -dogtrot/MS -dogtrotted -dogtrotting -dogwood/SM -dogy's -Doha/M -doh's -doily/SM -doing/MU -Dolby/SM -doldrum/S -doldrums/M -doled/F -dolefuller -dolefullest -dolefulness/MS -doleful/PY -Dole/M -dole/MGDS -doles/F -Dolf/M -doling/F -dollar/SM -Dolley/M -Dollie/M -Dolli/M -Doll/M -doll/MDGS -dollop/GSMD -Dolly/M -dolly/SDMG -dolmen/MS -dolomite/SM -dolomitic -Dolores/M -Dolorita/SM -dolorous/Y -dolor/SM -dolphin/SM -Dolph/M -doltishness/SM -doltish/YP -dolt/MS -domain/MS -dome/DSMG -Domenic/M -Domenico/M -Domeniga/M -Domesday/M -domestically -domesticate/DSXGN -domesticated/U -domestication/M -domesticity/MS -domestic/S -domicile/SDMG -domiciliary -dominance/MS -dominant/YS -dominate/VNGXSD -domination/M -dominator/M -dominatrices -dominatrix -domineer/DSG -domineeringness/M -domineering/YP -Dominga/M -Domingo/M -Dominguez/M -Dominica/M -Dominican/MS -Dominick/M -Dominic/M -Dominik/M -Domini/M -dominion/MS -Dominique/M -dominoes -domino/M -Domitian/M -Dom/M -Donahue/M -Donald/M -Donaldson/M -Donall/M -Donal/M -Donalt/M -Dona/M -dona/MS -Donatello/M -donate/XVGNSD -donation/M -donative/M -Donaugh/M -Donavon/M -done/AUF -Donella/M -Donelle/M -Donetsk/M -Donetta/M -dong/GDMS -dongle/S -Donia/M -Donica/M -Donielle/M -Donizetti/M -donkey/MS -Donna/M -Donnamarie/M -donned -Donnell/M -Donnelly/M -Donne/M -Donner/M -Donnie/M -Donni/M -donning -donnishness/M -donnish/YP -Donn/RM -donnybrook/MS -Donny/M -donor/MS -Donovan/M -don/S -Don/SM -don't -donut/MS -donutted -donutting -doodad/MS -doodlebug/MS -doodler/M -doodle/SRDZG -doohickey/MS -Dooley/M -Doolittle/M -doom/MDGS -doomsday/SM -Doonesbury/M -doorbell/SM -door/GDMS -doorhandles -doorkeeper/M -doorkeep/RZ -doorknob/SM -doorman/M -doormat/SM -doormen -doornail/M -doorplate/SM -doors/I -doorstep/MS -doorstepped -doorstepping -doorstop/MS -doorway/MS -dooryard/SM -dopamine -dopant/M -dopa/SM -dope/DRSMZG -doper/M -dopey -dopier -dopiest -dopiness/S -Doppler/M -Dorado/M -Doralia/M -Doralin/M -Doralyn/M -Doralynne/M -Doralynn/M -Dora/M -Dorcas -Dorchester/M -Doreen/M -Dorelia/M -Dorella/M -Dorelle/M -Dor/M -Dorena/M -Dorene/M -Doretta/M -Dorette/M -Dorey/M -Doria/M -Dorian/M -Doric -Dorice/M -Dorie/M -Dori/MS -Dorine/M -Dorisa/M -Dorise/M -Dorita/M -dork/S -dorky/RT -dormancy/MS -dormant/S -dormer/M -dormice -dormitory/SM -dorm/MRZS -dormouse/M -Dorolice/M -Dorolisa/M -Doro/M -Dorotea/M -Doroteya/M -Dorothea/M -Dorothee/M -Dorothy/M -Dorree/M -Dorrie/M -Dorri/SM -Dorry/M -dorsal/YS -Dorsey/M -Dorthea/M -Dorthy/M -Dortmund/M -Dory/M -dory/SM -DOS -dosage/SM -dose/M -dos/GDS -Dosi/M -dosimeter/MS -dosimetry/M -dossier/MS -dost -Dostoevsky/M -DOT -dotage/SM -dotard/MS -doter/M -dote/S -Doti/M -doting/Y -Dot/M -dot/MDRSJZG -Dotson/M -dotted -Dottie/M -Dotti/M -dottiness/M -dotting -Dotty/M -dotty/PRT -do/TZRHGJ -Douala/M -Douay/M -Doubleday/M -doubled/UA -double/GPSRDZ -doubleheader/MS -doubleness/M -doubler/M -doubles/M -doublespeak/S -doublethink/M -doublet/MS -doubleton/M -doubling/A -doubloon/MS -doubly -doubt/AGSDMB -doubted/U -doubter/SM -doubtfulness/SM -doubtful/YP -doubting/Y -doubtlessness/M -doubtless/YP -douche/GSDM -Dougherty/M -dough/M -doughs -doughty/RT -doughy/RT -Dougie/M -Douglas/M -Douglass -Doug/M -Dougy/M -dourness/MS -Douro/M -dour/TYRP -douser/M -douse/SRDG -dovecote/MS -Dover/M -dove/RSM -dovetail/GSDM -dovish -Dov/MR -dowager/SM -dowdily -dowdiness/MS -dowdy/TPSR -dowel/GMDS -dower/GDMS -Dow/M -downbeat/SM -downcast/S -downdraft/M -downer/M -Downey/M -downfall/NMS -downgrade/GSD -down/GZSRD -downheartedness/MS -downhearted/PY -downhill/RS -downland -download/DGS -downpipes -downplay/GDS -downpour/MS -downrange -downrightness/M -downright/YP -downriver -Downs -downscale/GSD -downside/S -downsize/DSG -downslope -downspout/SM -downstage/S -downstairs -downstate/SR -downstream -downswing/MS -downtime/SM -downtowner/M -downtown/MRS -downtrend/M -downtrodden -downturn/MS -downwardness/M -downward/YPS -downwind -downy/RT -dowry/SM -dowse/GZSRD -dowser/M -doxology/MS -doyenne/SM -doyen/SM -Doyle/M -Doy/M -doze -dozen/GHD -dozenths -dozer/M -doz/XGNDRS -dozy -DP -DPs -dpt -DPT -drabbed -drabber -drabbest -drabbing -drabness/MS -drab/YSP -drachma/MS -Draco/M -draconian -Draconian -Dracula/M -draft/AMDGS -draftee/SM -drafter/MS -draftily -draftiness/SM -drafting/S -draftsman/M -draftsmanship/SM -draftsmen -draftsperson -draftswoman -draftswomen -drafty/PTR -dragged -dragger/M -dragging/Y -draggy/RT -drag/MS -dragnet/MS -dragonfly/SM -dragonhead/M -dragon/SM -dragoon/DMGS -drainage/MS -drainboard/SM -drained/U -drainer/M -drainpipe/MS -drain/SZGRDM -Drake/M -drake/SM -Dramamine/MS -drama/SM -dramatically/U -dramatical/Y -dramatic/S -dramatics/M -dramatist/MS -dramatization/MS -dramatized/U -dramatizer/M -dramatize/SRDZG -dramaturgy/M -Drambuie/M -drammed -dramming -dram/MS -drank -Drano/M -draper/M -drapery/MS -drape/SRDGZ -drastic -drastically -drat/S -dratted -dratting -Dravidian/M -drawable -draw/ASG -drawback/MS -drawbridge/SM -drawer/SM -drawing/SM -drawler/M -drawling/Y -drawl/RDSG -drawly -drawn/AI -drawnly -drawnness -drawstring/MS -dray/SMDG -dreadfulness/SM -dreadful/YPS -dreadlocks -dreadnought/SM -dread/SRDG -dreamboat/SM -dreamed/U -dreamer/M -dreamily -dreaminess/SM -dreaming/Y -dreamland/SM -dreamlessness/M -dreamless/PY -dreamlike -dream/SMRDZG -dreamworld/S -dreamy/PTR -drearily -dreariness/SM -drear/S -dreary/TRSP -Dreddy/M -dredge/MZGSRD -dredger/M -Dredi/M -dreg/MS -Dreiser/M -Dre/M -drencher/M -drench/GDRS -Dresden/M -dress/ADRSG -dressage/MS -dressed/U -dresser/MS -dresser's/A -dresses/U -dressiness/SM -dressing/MS -dressmaker/MS -dressmaking/SM -dressy/PTR -drew/A -Drew/M -Drexel/M -Dreyfus/M -Dreyfuss -dribble/DRSGZ -dribbler/M -driblet/SM -drib/SM -dried/U -drier/M -drifter/M -drifting/Y -drift/RDZSG -driftwood/SM -driller/M -drilling/M -drillmaster/SM -drill/MRDZGS -drinkable/S -drink/BRSZG -drinker/M -dripped -dripping/MS -drippy/RT -drip/SM -driveler/M -drivel/GZDRS -driven/P -driver/M -drive/SRBGZJ -driveway/MS -drizzle/DSGM -drizzling/Y -drizzly/TR -Dr/M -drogue/MS -drollery/SM -drollness/MS -droll/RDSPTG -drolly -dromedary/MS -Drona/M -drone/SRDGM -droning/Y -drool/GSRD -droopiness/MS -drooping/Y -droop/SGD -droopy/PRT -drophead -dropkick/S -droplet/SM -dropout/MS -dropped -dropper/SM -dropping/MS -dropsical -drop/SM -dropsy/MS -drosophila/M -dross/SM -drought/SM -drover/M -drove/SRDGZ -drowner/M -drown/RDSJG -drowse/SDG -drowsily -drowsiness/SM -drowsy/PTR -drubbed -drubber/MS -drubbing/SM -drub/S -Drucie/M -Drucill/M -Druci/M -Drucy/M -drudge/MGSRD -drudger/M -drudgery/SM -drudging/Y -Drud/M -drugged -druggie/SRT -drugging -druggist/SM -Drugi/M -drugless -drug/SM -drugstore/SM -druidism/MS -druid/MS -Druid's -Dru/M -drumbeat/SGM -drumhead/M -drumlin/MS -drummed -drummer/SM -drumming -Drummond/M -drum/SM -drumstick/SM -drunkard/SM -drunkenness/SM -drunken/YP -drunk/SRNYMT -drupe/SM -Drury/M -Drusie/M -Drusilla/M -Drusi/M -Drusy/M -druthers -dryad/MS -Dryden/M -dryer/MS -dry/GYDRSTZ -dryish -dryness/SM -drys -drystone -drywall/GSD -D's -d's/A -Dshubba/M -DST -DTP -dualism/MS -dualistic -dualist/M -duality/MS -dual/YS -Duane/M -Dubai/M -dubbed -dubber/S -dubbing/M -dubbin/MS -Dubcek/M -Dubhe/M -dubiety/MS -dubiousness/SM -dubious/YP -Dublin/M -Dubrovnik/M -dub/S -Dubuque/M -ducal -ducat/SM -duce/CAIKF -duce's -Duchamp/M -duchess/MS -duchy/SM -duckbill/SM -ducker/M -duck/GSRDM -duckling/SM -duckpins -duckpond -duckweed/MS -ducky/RSMT -ducted/CFI -ductile/I -ductility/SM -ducting/F -duct/KMSF -ductless -duct's/A -ducts/CI -ductwork/M -dudder -dude/MS -dudgeon/SM -dud/GMDS -Dudley/M -Dud/M -duelist/MS -duel/MRDGZSJ -dueness/M -duenna/MS -due/PMS -duet/MS -duetted -duetting -duffel/M -duffer/M -duff/GZSRDM -Duffie/M -Duff/M -Duffy/M -Dugald/M -dugout/SM -dug/S -duh -DUI -Duisburg/M -dukedom/SM -duke/DSMG -Duke/M -Dukey/M -Dukie/M -Duky/M -Dulcea/M -Dulce/M -dulcet/SY -Dulcia/M -Dulciana/M -Dulcie/M -dulcify -Dulci/M -dulcimer/MS -Dulcinea/M -Dulcine/M -Dulcy/M -dullard/MS -Dulles/M -dullness/MS -dull/SRDPGT -dully -dulness's -Dulsea/M -Duluth/M -duly/U -Du/M -Dumas -dumbbell/MS -dumbfound/GSDR -dumbness/MS -Dumbo/M -dumb/PSGTYRD -dumbstruck -dumbwaiter/SM -dumdum/MS -dummy/SDMG -Dumont/M -dumper/UM -dumpiness/MS -dumpling/MS -dump/SGZRD -dumpster/S -Dumpster/S -Dumpty/M -dumpy/PRST -Dunant/M -Dunbar/M -Duncan/M -dunce/MS -Dunc/M -Dundee/M -dunderhead/MS -Dunedin/M -dune/SM -dungaree/SM -dungeon/GSMD -dunghill/MS -dung/SGDM -Dunham/M -dunker/M -dunk/GSRD -Dunkirk/M -Dunlap/M -Dun/M -dunned -Dunne/M -dunner -dunnest -dunning -Dunn/M -dunno/M -dun/S -Dunstan/M -duodecimal/S -duodena -duodenal -duodenum/M -duologue/M -duo/MS -duopolist -duopoly/M -dupe/NGDRSMZ -duper/M -dupion/M -duple -duplexer/M -duplex/MSRDG -duplicability/M -duplicable -duplicate/ADSGNX -duplication/AM -duplicative -duplicator/MS -duplicitous -duplicity/SM -Dupont/MS -DuPont/MS -durability/MS -durableness/M -durable/PS -durably -Duracell/M -durance/SM -Durand/M -Duran/M -Durante/M -Durant/M -durational -duration/MS -Durban/M -Drer/M -duress/SM -Durex/M -Durham/MS -during -Durkee/M -Durkheim/M -Dur/M -Durocher/M -durst -durum/MS -Durward/M -Duse/M -Dusenberg/M -Dusenbury/M -Dushanbe/M -dusk/GDMS -duskiness/MS -dusky/RPT -Dsseldorf -dustbin/MS -dustcart/M -dustcover -duster/M -dustily -dustiness/MS -dusting/M -Dustin/M -dustless -dustman/M -dustmen -dust/MRDGZS -dustpan/SM -Dusty/M -dusty/RPT -Dutch/M -Dutchman/M -Dutchmen -dutch/MS -Dutchwoman -Dutchwomen -duteous/Y -dutiable -dutifulness/S -dutiful/UPY -duty/SM -Duvalier/M -duvet/SM -duxes -Dvina/M -Dvork/M -Dwain/M -dwarfish -dwarfism/MS -dwarf/MTGSPRD -Dwayne/M -dweeb/S -dweller/SM -dwell/IGS -dwelling/MS -dwelt/I -DWI -Dwight/M -dwindle/GSD -dyadic -dyad/MS -Dyana/M -Dyane/M -Dyan/M -Dyanna/M -Dyanne/M -Dyann/M -dybbukim -dybbuk/SM -dyed/A -dyeing/M -dye/JDRSMZG -dyer/M -Dyer/M -dyes/A -dyestuff/SM -dying/UA -Dyke/M -dyke's -Dylan/M -Dy/M -Dynah/M -Dyna/M -dynamical/Y -dynamic/S -dynamics/M -dynamism/SM -dynamiter/M -dynamite/RSDZMG -dynamized -dynamo/MS -dynastic -dynasty/MS -dyne/M -dysentery/SM -dysfunctional -dysfunction/MS -dyslectic/S -dyslexia/MS -dyslexically -dyslexic/S -dyspepsia/MS -dyspeptic/S -dysprosium/MS -dystopia/M -dystrophy/M -dz -Dzerzhinsky/M -E -ea -each -Eachelle/M -Eada/M -Eadie/M -Eadith/M -Eadmund/M -eagerness/MS -eager/TSPRYM -eagle/SDGM -eaglet/SM -Eakins/M -Ealasaid/M -Eal/M -Eamon/M -earache/SM -eardrum/SM -earful/MS -ear/GSMDYH -Earhart/M -earing/M -earldom/MS -Earle/M -Earlene/M -Earlie/M -Earline/M -earliness/SM -Earl/M -earl/MS -earlobe/S -Early/M -early/PRST -earmark/DGSJ -earmuff/SM -earned/U -earner/M -Earnestine/M -Earnest/M -earnestness/MS -earnest/PYS -earn/GRDZTSJ -earning/M -earphone/MS -earpieces -earplug/MS -Earp/M -earring/MS -earshot/MS -earsplitting -Eartha/M -earthbound -earthed/U -earthenware/MS -earthiness/SM -earthliness/M -earthling/MS -earthly/TPR -earth/MDNYG -earthmen -earthmover/M -earthmoving -earthquake/SDGM -earthshaking -earths/U -earthward/S -earthwork/MS -earthworm/MS -earthy/PTR -Earvin/M -earwax/MS -earwigged -earwigging -earwig/MS -eased/E -ease/LDRSMG -easel/MS -easement/MS -easer/M -ease's/EU -eases/UE -easies -easily/U -easiness/MSU -easing/M -eastbound -easterly/S -Easter/M -easterner/M -Easterner/M -easternmost -Eastern/RZ -eastern/ZR -easter/Y -east/GSMR -Easthampton/M -easting/M -Eastland/M -Eastman/M -eastward/S -Eastwick/M -Eastwood/M -East/ZSMR -easygoingness/M -easygoing/P -easy/PUTR -eatables -eatable/U -eaten/U -eater/M -eatery/MS -eating/M -Eaton/M -eat/SJZGNRB -eavesdropped -eavesdropper/MS -eavesdropping -eavesdrop/S -eave/SM -Eba/M -Ebba/M -ebb/DSG -EBCDIC -Ebeneezer/M -Ebeneser/M -Ebenezer/M -Eben/M -Eberhard/M -Eberto/M -Eb/MN -Ebola -Ebonee/M -Ebonics -Ebony/M -ebony/SM -Ebro/M -ebullience/SM -ebullient/Y -ebullition/SM -EC -eccentrically -eccentricity/SM -eccentric/MS -eccl -Eccles -Ecclesiastes/M -ecclesiastical/Y -ecclesiastic/MS -ECG -echelon/SGDM -echinoderm/SM -echo/DMG -echoed/A -echoes/A -echoic -echolocation/SM -clair/MS -clat/MS -eclectically -eclecticism/MS -eclectic/S -eclipse/MGSD -ecliptic/MS -eclogue/MS -ecocide/SM -ecol -Ecole/M -ecologic -ecological/Y -ecologist/MS -ecology/MS -Eco/M -econ -Econometrica/M -econometricians -econometric/S -econometrics/M -economical/YU -economic/S -economics/M -economist/MS -economization -economize/GZSRD -economizer/M -economizing/U -economy/MS -ecosystem/MS -ecru/SM -ecstasy/MS -Ecstasy/S -ecstatically -ecstatic/S -ectoplasm/M -Ecuadoran/S -Ecuadorean/S -Ecuadorian/S -Ecuador/M -ecumenical/Y -ecumenicism/SM -ecumenicist/MS -ecumenic/MS -ecumenics/M -ecumenism/SM -ecumenist/MS -eczema/MS -Eda/M -Edam/SM -Edan/M -ed/ASC -Edda/M -Eddie/M -Eddi/M -Edd/M -Eddy/M -eddy/SDMG -Edee/M -Edeline/M -edelweiss/MS -Ede/M -edema/SM -edematous -eden -Eden/M -Edgard/M -Edgardo/M -Edgar/M -edge/DRSMZGJ -edgeless -edger/M -Edgerton/M -Edgewater/M -edgewise -Edgewood/M -edgily -edginess/MS -edging/M -edgy/TRP -edibility/MS -edibleness/SM -edible/SP -edict/SM -Edie/M -edification/M -edifice/SM -edifier/M -edifying/U -edify/ZNXGRSD -Edik/M -Edi/MH -Edinburgh/M -Edin/M -Edison/M -editable -Edita/M -edited/IU -Editha/M -Edithe/M -Edith/M -edition/SM -editorialist/M -editorialize/DRSG -editorializer/M -editorial/YS -editor/MS -editorship/MS -edit/SADG -Ediva/M -Edlin/M -Edmond/M -Edmon/M -Edmonton/M -Edmund/M -Edna/M -Edouard/M -EDP -eds -Edsel/M -Edsger/M -EDT -Eduard/M -Eduardo/M -educability/SM -educable/S -educated/YP -educate/XASDGN -educationalists -educational/Y -education/AM -educationists -educative -educator/MS -educ/DBG -educe/S -eduction/M -Eduino/M -edutainment/S -Edvard/M -Edwardian -Edwardo/M -Edward/SM -Edwina/M -Edwin/M -Ed/XMN -Edy/M -Edythe/M -Edyth/M -EEC -EEG -eek/S -eelgrass/M -eel/MS -e'en -EEO -EEOC -e'er -eerie/RT -eerily -eeriness/MS -Eeyore/M -effaceable/I -effacement/MS -effacer/M -efface/SRDLG -effectiveness/ISM -effectives -effective/YIP -effector/MS -effect/SMDGV -effectual/IYP -effectualness/MI -effectuate/SDGN -effectuation/M -effeminacy/MS -effeminate/SY -effendi/MS -efferent/SY -effervesce/GSD -effervescence/SM -effervescent/Y -effeteness/SM -effete/YP -efficacious/IPY -efficaciousness/MI -efficacy/IMS -efficiency/MIS -efficient/ISY -Effie/M -effigy/SM -effloresce -efflorescence/SM -efflorescent -effluence/SM -effluent/MS -effluvia -effluvium/M -effluxion -efflux/M -effortlessness/SM -effortless/PY -effort/MS -effrontery/MS -effulgence/SM -effulgent -effuse/XSDVGN -effusion/M -effusiveness/MS -effusive/YP -EFL -e/FMDS -Efrain/M -Efrem/M -Efren/M -EFT -egad -egalitarian/I -egalitarianism/MS -egalitarians -EGA/M -Egan/M -Egbert/M -Egerton/M -eggbeater/SM -eggcup/MS -egger/M -egg/GMDRS -eggheaded/P -egghead/SDM -eggnog/SM -eggplant/MS -eggshell/SM -egis's -eglantine/MS -egocentrically -egocentricity/SM -egocentric/S -egoism/SM -egoistic -egoistical/Y -egoist/SM -egomaniac/MS -egomania/MS -Egon/M -Egor/M -ego/SM -egotism/SM -egotistic -egotistical/Y -egotist/MS -egregiousness/MS -egregious/PY -egress/SDMG -egret/SM -Egyptian/S -Egypt/M -Egyptology/M -eh -Ehrlich/M -Eichmann/M -eiderdown/SM -eider/SM -eidetic -Eiffel/M -eigenfunction/MS -eigenstate/S -eigenvalue/SM -eigenvector/MS -eighteen/MHS -eighteenths -eightfold -eighth/MS -eighths -eightieths -eightpence -eight/SM -eighty/SHM -Eileen/M -Eilis/M -Eimile/M -Einsteinian -einsteinium/MS -Einstein/SM -Eire/M -Eirena/M -Eisenhower/M -Eisenstein/M -Eisner/M -eisteddfod/M -either -ejaculate/SDXNG -ejaculation/M -ejaculatory -ejecta -ejection/SM -ejector/SM -eject/VGSD -Ekaterina/M -Ekberg/M -eked/A -eke/DSG -EKG -Ekstrom/M -Ektachrome/M -elaborateness/SM -elaborate/SDYPVNGX -elaboration/M -elaborators -Elaina/M -Elaine/M -Elana/M -eland/SM -Elane/M -lan/M -Elanor/M -elans -elapse/SDG -el/AS -elastically/I -elasticated -elasticity/SM -elasticize/GDS -elastic/S -elastodynamics -elastomer/M -elatedness/M -elated/PY -elater/M -elate/SRDXGN -elation/M -Elayne/M -Elba/MS -Elbe/M -Elberta/M -Elbertina/M -Elbertine/M -Elbert/M -elbow/GDMS -elbowroom/SM -Elbrus/M -Elden/M -elderberry/MS -elderflower -elderliness/M -elderly/PS -elder/SY -eldest -Eldin/M -Eldon/M -Eldorado's -Eldredge/M -Eldridge/M -Eleanora/M -Eleanore/M -Eleanor/M -Eleazar/M -electable/U -elect/ASGD -elected/U -electioneer/GSD -election/SAM -electiveness/M -elective/SPY -electoral/Y -electorate/SM -elector/SM -Electra/M -electress/M -electricalness/M -electrical/PY -electrician/SM -electricity/SM -electric/S -electrification/M -electrifier/M -electrify/ZXGNDRS -electrocardiogram/MS -electrocardiograph/M -electrocardiographs -electrocardiography/MS -electrochemical/Y -electrocute/GNXSD -electrocution/M -electrode/SM -electrodynamics/M -electrodynamic/YS -electroencephalogram/SM -electroencephalographic -electroencephalograph/M -electroencephalographs -electroencephalography/MS -electrologist/MS -electroluminescent -electrolysis/M -electrolyte/SM -electrolytic -electrolytically -electrolyze/SDG -electro/M -electromagnetic -electromagnetically -electromagnetism/SM -electromagnet/SM -electromechanical -electromechanics -electromotive -electromyograph -electromyographic -electromyographically -electromyography/M -electronegative -electronically -electronic/S -electronics/M -electron/MS -electrophoresis/M -electrophorus/M -electroplate/DSG -electroscope/MS -electroscopic -electroshock/GDMS -electrostatic/S -electrostatics/M -electrotherapist/M -electrotype/GSDZM -electroweak -eleemosynary -Eleen/M -elegance/ISM -elegant/YI -elegiacal -elegiac/S -elegy/SM -elem -elemental/YS -elementarily -elementariness/M -elementary/P -element/MS -Elena/M -Elene/M -Eleni/M -Elenore/M -Eleonora/M -Eleonore/M -elephantiases -elephantiasis/M -elephantine -elephant/SM -elevated/S -elevate/XDSNG -elevation/M -elevator/SM -eleven/HM -elevens/S -elevenths -elev/NX -Elfie/M -elfin/S -elfish -elf/M -Elfreda/M -Elfrida/M -Elfrieda/M -Elga/M -Elgar/M -Elianora/M -Elianore/M -Elia/SM -Elicia/M -elicitation/MS -elicit/GSD -elide/GSD -Elie/M -eligibility/ISM -eligible/SI -Elihu/M -Elijah/M -Eli/M -eliminate/XSDYVGN -elimination/M -eliminator/SM -Elinore/M -Elinor/M -Eliot/M -Elisabeth/M -Elisabet/M -Elisabetta/M -Elisa/M -Elise/M -Eliseo/M -Elisha/M -elision/SM -Elissa/M -Elita/M -elite/MPS -elitism/SM -elitist/SM -elixir/MS -Elizabethan/S -Elizabeth/M -Elizabet/M -Eliza/M -Elka/M -Elke/M -Elkhart/M -elk/MS -Elladine/M -Ella/M -Ellary/M -Elle/M -Ellene/M -Ellen/M -Ellerey/M -Ellery/M -Ellesmere/M -Ellette/M -Ellie/M -Ellington/M -Elliot/M -Elliott/M -ellipse/MS -ellipsis/M -ellipsoidal -ellipsoid/MS -ellipsometer/MS -ellipsometry -elliptic -elliptical/YS -ellipticity/M -Elli/SM -Ellison/M -Ellissa/M -ell/MS -Ellswerth/M -Ellsworth/M -Ellwood/M -Elly/M -Ellyn/M -Ellynn/M -Elma/M -Elmer/M -Elmhurst/M -Elmira/M -elm/MRS -Elmo/M -Elmore/M -Elmsford/M -El/MY -Elna/MH -Elnar/M -Elnath/M -Elnora/M -Elnore/M -elocutionary -elocutionist/MS -elocution/SM -elodea/S -Elohim/M -Eloisa/M -Eloise/M -elongate/NGXSD -elongation/M -Elonore/M -elopement/MS -eloper/M -elope/SRDLG -eloquence/SM -eloquent/IY -Elora/M -Eloy/M -Elroy/M -els -Elsa/M -Elsbeth/M -else/M -Else/M -Elset/M -elsewhere -Elsey/M -Elsie/M -Elsi/M -Elsinore/M -Elspeth/M -Elston/M -Elsworth/M -Elsy/M -Eltanin/M -Elton/M -eluate/SM -elucidate/SDVNGX -elucidation/M -elude/GSD -elusiveness/SM -elusive/YP -elute/DGN -elution/M -Elva/M -elven -Elvera/M -elver/SM -elves/M -Elvia/M -Elvina/M -Elvin/M -Elvira/M -elvish -Elvis/M -Elvyn/M -Elwin/M -Elwira/M -Elwood/M -Elwyn/M -Ely/M -Elyn/M -Elyse/M -Elysees -Elyse/M -Elysha/M -Elysia/M -elysian -Elysian -Elysium/SM -Elyssa/M -EM -emaciate/NGXDS -emaciation/M -emacs/M -Emacs/M -email/SMDG -Emalee/M -Emalia/M -Ema/M -emanate/XSDVNG -emanation/M -emancipate/DSXGN -emancipation/M -emancipator/MS -Emanuele/M -Emanuel/M -emasculate/GNDSX -emasculation/M -embalmer/M -embalm/ZGRDS -embank/GLDS -embankment/MS -embarcadero -embargoes -embargo/GMD -embark/ADESG -embarkation/EMS -embarrassedly -embarrassed/U -embarrassing/Y -embarrassment/MS -embarrass/SDLG -embassy/MS -embattle/DSG -embeddable -embedded -embedder -embedding/MS -embed/S -embellished/U -embellisher/M -embellish/LGRSD -embellishment/MS -ember/MS -embezzle/LZGDRS -embezzlement/MS -embezzler/M -embitter/LGDS -embitterment/SM -emblazon/DLGS -emblazonment/SM -emblematic -emblem/GSMD -embodier/M -embodiment/ESM -embody/ESDGA -embolden/DSG -embolism/SM -embosom -embosser/M -emboss/ZGRSD -embouchure/SM -embower/GSD -embraceable -embracer/M -embrace/RSDVG -embracing/Y -embrasure/MS -embrittle -embrocation/SM -embroiderer/M -embroider/SGZDR -embroidery/MS -embroilment/MS -embroil/SLDG -embryologist/SM -embryology/MS -embryonic -embryo/SM -emceeing -emcee/SDM -Emelda/M -Emelen/M -Emelia/M -Emelina/M -Emeline/M -Emelita/M -Emelyne/M -emendation/MS -emend/SRDGB -emerald/SM -Emera/M -emerge/ADSG -emergence/MAS -emergency/SM -emergent/S -emerita -emeritae -emeriti -emeritus -Emerson/M -Emery/M -emery/MGSD -emetic/S -emf/S -emigrant/MS -emigrate/SDXNG -emigration/M -migr/S -Emilee/M -Emile/M -Emilia/M -Emilie/M -Emili/M -Emiline/M -Emilio/M -Emil/M -Emily/M -eminence/MS -Eminence/MS -eminent/Y -emirate/SM -emir/SM -emissary/SM -emission/AMS -emissivity/MS -emit/S -emittance/M -emitted -emitter/SM -emitting -Emlen/M -Emlyn/M -Emlynne/M -Emlynn/M -em/M -Em/M -Emmalee/M -Emmaline/M -Emmalyn/M -Emmalynne/M -Emmalynn/M -Emma/M -Emmanuel/M -Emmeline/M -Emmerich/M -Emmery/M -Emmet/M -Emmett/M -Emmey/M -Emmie/M -Emmi/M -Emmit/M -Emmott/M -Emmye/M -Emmy/SM -Emogene/M -emollient/S -emolument/SM -Emory/M -emote/SDVGNX -emotionalism/MS -emotionality/M -emotionalize/GDS -emotional/UY -emotionless -emotion/M -emotive/Y -empaneled -empaneling -empath -empathetic -empathetical/Y -empathic -empathize/SDG -empathy/MS -emperor/MS -emphases -emphasis/M -emphasize/ZGCRSDA -emphatically/U -emphatic/U -emphysema/SM -emphysematous -empire/MS -empirical/Y -empiricism/SM -empiricist/SM -empiric/SM -emplace/L -emplacement/MS -employability/UM -employable/US -employed/U -employee/SM -employer/SM -employ/LAGDS -employment/UMAS -emporium/MS -empower/GLSD -empowerment/MS -empress/MS -emptier/M -emptily -emptiness/SM -empty/GRSDPT -empyrean/SM -ems/C -EMT -emulate/SDVGNX -emulation/M -emulative/Y -emulator/MS -emulsification/M -emulsifier/M -emulsify/NZSRDXG -emulsion/SM -emu/SM -Emylee/M -Emyle/M -enabler/M -enable/SRDZG -enactment/ASM -enact/SGALD -enameler/M -enamelware/SM -enamel/ZGJMDRS -enamor/DSG -en/BM -enc -encamp/LSDG -encampment/MS -encapsulate/SDGNX -encapsulation/M -encase/GSDL -encasement/SM -encephalitic -encephalitides -encephalitis/M -encephalographic -encephalopathy/M -enchain/SGD -enchanter/MS -enchant/ESLDG -enchanting/Y -enchantment/MSE -enchantress/MS -enchilada/SM -encipherer/M -encipher/SRDG -encircle/GLDS -encirclement/SM -encl -enclave/MGDS -enclosed/U -enclose/GDS -enclosure/SM -encoder/M -encode/ZJGSRD -encomium/SM -encompass/GDS -encore/GSD -encounter/GSD -encouragement/SM -encourager/M -encourage/SRDGL -encouraging/Y -encroacher/M -encroach/LGRSD -encroachment/MS -encrustation/MS -encrust/DSG -encrypt/DGS -encrypted/U -encryption/SM -encumbered/U -encumber/SEDG -encumbrancer/M -encumbrance/SRM -ency -encyclical/SM -encyclopaedia's -encyclopedia/SM -encyclopedic -encyst/GSLD -encystment/MS -endanger/DGSL -endangerment/SM -endear/GSLD -endearing/Y -endearment/MS -endeavored/U -endeavorer/M -endeavor/GZSMRD -endemically -endemicity -endemic/S -ender/M -endgame/M -Endicott/M -ending/M -endive/SM -endlessness/MS -endless/PY -endmost -endnote/MS -endocrine/S -endocrinologist/SM -endocrinology/SM -endogamous -endogamy/M -endogenous/Y -endomorphism/SM -endorse/DRSZGL -endorsement/MS -endorser/M -endoscope/MS -endoscopic -endoscopy/SM -endosperm/M -endothelial -endothermic -endow/GSDL -endowment/SM -endpoint/MS -endue/SDG -endungeoned -endurable/U -endurably/U -endurance/SM -endure/BSDG -enduringness/M -enduring/YP -endways -Endymion/M -end/ZGVMDRSJ -ENE -enema/SM -enemy/SM -energetically -energetic/S -energetics/M -energized/U -energizer/M -energize/ZGDRS -energy/MS -enervate/XNGVDS -enervation/M -enfeeble/GLDS -enfeeblement/SM -enfilade/MGDS -enfold/SGD -enforceability/M -enforceable/U -enforced/Y -enforce/LDRSZG -enforcement/SM -enforcer/M -enforcible/U -enfranchise/ELDRSG -enfranchisement/EMS -enfranchiser/M -engage/ADSGE -engagement/SEM -engaging/Y -Engelbert/M -Engel/MS -engender/DGS -engineer/GSMDJ -engineering/MY -engine/MGSD -England/M -england/ZR -Englebert/M -Englewood/M -English/GDRSM -Englishman/M -Englishmen -Englishwoman/M -Englishwomen -Eng/M -engorge/LGDS -engorgement/MS -Engracia/M -engram/MS -engraver/M -engrave/ZGDRSJ -engraving/M -engrossed/Y -engrosser/M -engross/GLDRS -engrossing/Y -engrossment/SM -engulf/GDSL -engulfment/SM -enhanceable -enhance/LZGDRS -enhancement/MS -enhancer/M -enharmonic -Enid/M -Enif/M -enigma/MS -enigmatic -enigmatically -Eniwetok/M -enjambement's -enjambment/MS -enjoinder -enjoin/GSD -enjoyability -enjoyableness/M -enjoyable/P -enjoyably -enjoy/GBDSL -enjoyment/SM -Enkidu/M -enlargeable -enlarge/LDRSZG -enlargement/MS -enlarger/M -enlightened/U -enlighten/GDSL -enlightening/U -enlightenment/SM -enlistee/MS -enlister/M -enlistment/SAM -enlist/SAGDL -enliven/LDGS -enlivenment/SM -enmesh/DSLG -enmeshment/SM -enmity/MS -Ennis/M -ennoble/LDRSG -ennoblement/SM -ennobler/M -ennui/SM -Enoch/M -enormity/SM -enormousness/MS -enormous/YP -Enos -enough -enoughs -enplane/DSG -enqueue/DS -enquirer/S -enquiringly -enrage/SDG -enrapture/GSD -Enrica/M -enricher/M -Enrichetta/M -enrich/LDSRG -enrichment/SM -Enrico/M -Enrika/M -Enrique/M -Enriqueta/M -enrobed -enrollee/SM -enroll/LGSD -enrollment/SM -ens -ensconce/DSG -ensemble/MS -enshrine/DSLG -enshrinement/SM -enshroud/DGS -ensign/SM -ensilage/DSMG -enslavement/MS -enslaver/M -enslave/ZGLDSR -ensnare/GLDS -ensnarement/SM -Ensolite/M -ensue/SDG -ensurer/M -ensure/SRDZG -entailer/M -entailment/MS -entail/SDRLG -entangle/EGDRSL -entanglement/ESM -entangler/EM -entente/MS -enter/ASDG -entered/U -enterer/M -enteritides -enteritis/SM -enterprise/GMSR -Enterprise/M -enterpriser/M -enterprising/Y -entertainer/M -entertaining/Y -entertainment/SM -entertain/SGZRDL -enthalpy/SM -enthrall/GDSL -enthrallment/SM -enthrone/GDSL -enthronement/MS -enthuse/DSG -enthusiasm/SM -enthusiastically/U -enthusiastic/U -enthusiast/MS -enticement/SM -entice/SRDJLZG -enticing/Y -entire/SY -entirety/SM -entitle/GLDS -entitlement/MS -entity/SM -entomb/GDSL -entombment/MS -entomological -entomologist/S -entomology/MS -entourage/SM -entr'acte/S -entrails -entrainer/M -entrain/GSLDR -entrancement/MS -entrance/MGDSL -entranceway/M -entrancing/Y -entrant/MS -entrapment/SM -entrapped -entrapping -entrap/SL -entreating/Y -entreat/SGD -entreaty/SM -entre/S -entrench/LSDG -entrenchment/MS -entrepreneurial -entrepreneur/MS -entrepreneurship/M -entropic -entropy/MS -entrust/DSG -entry/ASM -entryway/SM -entwine/DSG -enumerable -enumerate/AN -enumerated/U -enumerates -enumerating -enumeration's/A -enumeration/SM -enumerative -enumerator/SM -enunciable -enunciated/U -enunciate/XGNSD -enunciation/M -enureses -enuresis/M -envelope/MS -enveloper/M -envelopment/MS -envelop/ZGLSDR -envenom/SDG -enviableness/M -enviable/U -enviably -envied/U -envier/M -enviousness/SM -envious/PY -environ/LGSD -environmentalism/SM -environmentalist/SM -environmental/Y -environment/MS -envisage/DSG -envision/GSD -envoy/SM -envying/Y -envy/SRDMG -enzymatic -enzymatically -enzyme/SM -enzymology/M -Eocene -EOE -eohippus/M -Eolanda/M -Eolande/M -eolian -eon/SM -EPA -epaulet/SM -pe/S -ephedrine/MS -ephemeral/SY -ephemera/MS -ephemerids -ephemeris/M -Ephesian/S -Ephesians/M -Ephesus/M -Ephraim/M -Ephrayim/M -Ephrem/M -epically -epicenter/SM -epic/SM -Epictetus/M -Epicurean -epicurean/S -epicure/SM -Epicurus/M -epicycle/MS -epicyclic -epicyclical/Y -epicycloid/M -epidemically -epidemic/MS -epidemiological/Y -epidemiologist/MS -epidemiology/MS -epidermal -epidermic -epidermis/MS -epidural -epigenetic -epiglottis/SM -epigrammatic -epigram/MS -epigrapher/M -epigraph/RM -epigraphs -epigraphy/MS -epilepsy/SM -epileptic/S -epilogue/SDMG -Epimethius/M -epinephrine/SM -epiphany/SM -Epiphany/SM -epiphenomena -episcopacy/MS -episcopalian -Episcopalian/S -Episcopal/S -episcopal/Y -episcopate/MS -episode/SM -episodic -episodically -epistemic -epistemological/Y -epistemology/M -epistle/MRS -Epistle/SM -epistolary/S -epistolatory -epitaph/GMD -epitaphs -epitaxial/Y -epitaxy/M -epithelial -epithelium/MS -epithet/MS -epitome/MS -epitomized/U -epitomizer/M -epitomize/SRDZG -epochal/Y -epoch/M -epochs -eponymous -epoxy/GSD -epsilon/SM -Epsom/M -Epstein/M -equability/MS -equableness/M -equable/P -equably -equaling -equality/ISM -equalization/MS -equalize/DRSGJZ -equalized/U -equalizer/M -equalizes/U -equal/USDY -equanimity/MS -equate/NGXBSD -equation/M -equatorial/S -equator/SM -equerry/MS -equestrianism/SM -equestrian/S -equestrienne/SM -equiangular -equidistant/Y -equilateral/S -equilibrate/GNSD -equilibration/M -equilibrium/MSE -equine/S -equinoctial/S -equinox/MS -equipage/SM -equipartition/M -equip/AS -equipment/SM -equipoise/GMSD -equipotent -equipped/AU -equipping/A -equiproportional -equiproportionality -equiproportionate -equitable/I -equitableness/M -equitably/I -equitation/SM -equity/IMS -equiv -equivalence/DSMG -equivalent/SY -equivocalness/MS -equivocal/UY -equivocate/NGSDX -equivocation/M -equivocator/SM -Equuleus/M -ER -ERA -eradicable/I -eradicate/SDXVGN -eradication/M -eradicator/SM -era/MS -Eran/M -erase/N -eraser/M -erasion/M -Erasmus/M -eras/SRDBGZ -Erastus/M -erasure/MS -Erato/M -Eratosthenes/M -erbium/SM -Erda/M -ere -Erebus/M -erect/GPSRDY -erectile -erection/SM -erectness/MS -erector/SM -Erek/M -erelong -eremite/MS -Erena/M -ergo -ergodic -ergodicity/M -ergonomically -ergonomics/M -ergonomic/U -ergophobia -ergosterol/SM -ergot/SM -erg/SM -Erhard/M -Erhart/M -Erica/M -Ericha/M -Erich/M -Ericka/M -Erick/M -Erickson/M -Eric/M -Ericson's -Ericsson's -Eridanus/M -Erie/SM -Erika/M -Erik/M -Erikson/M -Erina/M -Erin/M -Erinna/M -Erinn/M -eris -Eris -Eritrea/M -Erlang/M -Erlenmeyer/M -Erl/M -Er/M -Erma/M -Ermanno/M -Ermengarde/M -Ermentrude/M -Ermina/M -ermine/MSD -Erminia/M -Erminie/M -Ermin/M -Ernaline/M -Erna/M -Ernesta/M -Ernestine/M -Ernest/M -Ernesto/M -Ernestus/M -Ernie/M -Ernst/M -Erny/M -erode/SDG -erodible -erogenous -erosible -erosional -erosion/SM -erosiveness/M -erosive/P -Eros/SM -erotically -erotica/M -eroticism/MS -erotic/S -errancy/MS -errand/MS -errantry/M -errant/YS -errata/SM -erratically -erratic/S -erratum/MS -err/DGS -Errick/M -erring/UY -Erroll/M -Errol/M -erroneousness/M -erroneous/YP -error/SM -ersatz/S -Erse/M -Erskine/M -erst -erstwhile -Ertha/M -eructation/MS -eruct/DGS -erudite/NYX -erudition/M -erupt/DSVG -eruption/SM -eruptive/SY -Ervin/M -ErvIn/M -Erv/M -Erwin/M -Eryn/M -erysipelas/SM -erythrocyte/SM -es -e's -Es -E's -Esau/M -escadrille/M -escalate/CDSXGN -escalation/MC -escalator/SM -escallop/SGDM -escapable/I -escapade/SM -escapee/MS -escape/LGSRDB -escapement/MS -escaper/M -escapism/SM -escapist/S -escapology -escarole/MS -escarpment/MS -eschatology/M -Escherichia/M -Escher/M -eschew/SGD -Escondido/M -escort/SGMD -escritoire/SM -escrow/DMGS -escudo/MS -escutcheon/SM -Esdras/M -ESE -Eskimo/SM -ESL -Esma/M -Esmaria/M -Esmark/M -Esme/M -Esmeralda/M -esophageal -esophagi -esophagus/M -esoteric -esoterica -esoterically -esp -ESP -espadrille/MS -Espagnol/M -espalier/SMDG -especial/Y -Esperanto/M -Esperanza/M -Espinoza/M -espionage/SM -esplanade/SM -Esp/M -Esposito/M -espousal/MS -espouser/M -espouse/SRDG -espresso/SM -esprit/SM -espy/GSD -Esq/M -esquire/GMSD -Esquire/S -Esra/M -Essa/M -essayer/M -essayist/SM -essay/SZMGRD -essence/MS -Essene/SM -Essen/M -essentialist/M -essentially -essentialness/M -essential/USI -Essequibo/M -Essex/M -Essie/M -Essy/M -EST -established/U -establisher/M -establish/LAEGSD -establishment/EMAS -Establishment/MS -Esta/M -estate/GSDM -Esteban/M -esteem/EGDS -Estela/M -Estele/M -Estella/M -Estelle/M -Estell/M -Estel/M -Esterhzy/M -ester/M -Ester/M -Estes -Estevan/M -Esther/M -esthete's -esthetically -esthetic's -esthetics's -estimable/I -estimableness/M -estimate/XDSNGV -estimating/A -estimation/M -estimator/SM -Estonia/M -Estonian/S -estoppal -Estrada/M -estrange/DRSLG -estrangement/SM -estranger/M -Estrella/M -Estrellita/M -estrogen/SM -estrous -estrus/SM -est/RZ -estuarine -estuary/SM -et -ET -ETA -Etan/M -eta/SM -etc -etcetera/SM -etcher/M -etch/GZJSRD -etching/M -ETD -eternalness/SM -eternal/PSY -eternity/SM -ethane/SM -Ethan/M -ethanol/MS -Ethelbert/M -Ethelda/M -Ethelind/M -Etheline/M -Ethelin/M -Ethel/M -Ethelred/M -Ethelyn/M -Ethe/M -etherealness/M -ethereal/PY -etherized -Ethernet/MS -ether/SM -ethically/U -ethicalness/M -ethical/PYS -ethicist/S -ethic/MS -Ethiopia/M -Ethiopian/S -ethnically -ethnicity/MS -ethnic/S -ethnocentric -ethnocentrism/MS -ethnographers -ethnographic -ethnography/M -ethnological -ethnologist/SM -ethnology/SM -ethnomethodology -ethological -ethologist/MS -ethology/SM -ethos/SM -ethylene/MS -Ethyl/M -ethyl/SM -Etienne/M -etiologic -etiological -etiology/SM -etiquette/SM -Etna/M -Etruria/M -Etruscan/MS -Etta/M -Ettie/M -Etti/M -Ettore/M -Etty/M -tude/MS -etymological/Y -etymologist/SM -etymology/MS -EU -eucalypti -eucalyptus/SM -Eucharistic -Eucharist/SM -euchre/MGSD -euclidean -Euclid/M -Eudora/M -Euell/M -Eugene/M -Eugenia/M -eugenically -eugenicist/SM -eugenic/S -eugenics/M -Eugenie/M -Eugenio/M -Eugenius/M -Eugen/M -Eugine/M -Eulalie/M -Eula/M -Eulerian/M -Euler/M -eulogistic -eulogist/MS -eulogized/U -eulogize/GRSDZ -eulogizer/M -eulogy/MS -Eu/M -Eumenides -Eunice/M -eunuch/M -eunuchs -Euphemia/M -euphemism/MS -euphemistic -euphemistically -euphemist/M -euphonious/Y -euphonium/M -euphony/SM -euphoria/SM -euphoric -euphorically -Euphrates/M -Eurasia/M -Eurasian/S -eureka/S -Euripides/M -Eur/M -Eurodollar/SM -Europa/M -Europeanization/SM -Europeanized -European/MS -Europe/M -europium/MS -Eurydice/M -Eustace/M -Eustachian/M -Eustacia/M -eutectic -Euterpe/M -euthanasia/SM -euthenics/M -evacuate/DSXNGV -evacuation/M -evacuee/MS -evader/M -evade/SRDBGZ -Evaleen/M -evaluable -evaluate/ADSGNX -evaluated/U -evaluational -evaluation/MA -evaluative -evaluator/MS -Eva/M -evanescence/MS -evanescent -Evangelia/M -evangelic -evangelicalism/SM -Evangelical/S -evangelical/YS -Evangelina/M -Evangeline/M -Evangelin/M -evangelism/SM -evangelistic -evangelist/MS -Evangelist/MS -evangelize/GDS -Evania/M -Evan/MS -Evanne/M -Evanston/M -Evansville/M -evaporate/VNGSDX -evaporation/M -evaporative/Y -evaporator/MS -evasion/SM -evasiveness/SM -evasive/PY -Eveleen/M -Evelina/M -Eveline/M -Evelin/M -Evelyn/M -Eve/M -evened -evener/M -evenhanded/YP -evening/SM -Evenki/M -Even/M -evenness/MSU -even/PUYRT -evens -evensong/MS -eventfulness/SM -eventful/YU -eventide/SM -event/SGM -eventuality/MS -eventual/Y -eventuate/GSD -Everard/M -Eveready/M -Evered/M -Everest/M -Everette/M -Everett/M -everglade/MS -Everglades -evergreen/S -Everhart/M -everlastingness/M -everlasting/PYS -everliving -evermore -EverReady/M -eve/RSM -ever/T -every -everybody/M -everydayness/M -everyday/P -everyman -everyone/MS -everyplace -everything -everywhere -eve's/A -eves/A -Evey/M -evict/DGS -eviction/SM -evidence/MGSD -evidential/Y -evident/YS -Evie/M -evildoer/SM -evildoing/MS -evilness/MS -evil/YRPTS -evince/SDG -Evin/M -eviscerate/GNXDS -evisceration/M -Evita/M -Ev/MN -evocable -evocate/NVX -evocation/M -evocativeness/M -evocative/YP -evoke/SDG -evolute/NMXS -evolutionarily -evolutionary -evolutionist/MS -evolution/M -evolve/SDG -Evonne/M -Evvie/M -Evvy/M -Evy/M -Evyn/M -Ewan/M -Eward/M -Ewart/M -Ewell/M -ewe/MZRS -Ewen/M -ewer/M -Ewing/M -exacerbate/NGXDS -exacerbation/M -exacter/M -exactingness/M -exacting/YP -exaction/SM -exactitude/ISM -exactly/I -exactness/MSI -exact/TGSPRDY -exaggerate/DSXNGV -exaggerated/YP -exaggeration/M -exaggerative/Y -exaggerator/MS -exaltation/SM -exalted/Y -exalter/M -exalt/ZRDGS -examen/M -examination/AS -examination's -examine/BGZDRS -examined/AU -examinees -examiner/M -examines/A -examining/A -exam/MNS -example/DSGM -exampled/U -exasperate/DSXGN -exasperated/Y -exasperating/Y -exasperation/M -Excalibur/M -excavate/NGDSX -excavation/M -excavator/SM -Excedrin/M -exceeder/M -exceeding/Y -exceed/SGDR -excelled -excellence/SM -excellency/MS -Excellency/MS -excellent/Y -excelling -excel/S -excelsior/S -except/DSGV -exceptionable/U -exceptionalness/M -exceptional/YU -exception/BMS -excerpter/M -excerpt/GMDRS -excess/GVDSM -excessiveness/M -excessive/PY -exchangeable -exchange/GDRSZ -exchanger/M -exchequer/SM -Exchequer/SM -excise/XMSDNGB -excision/M -excitability/MS -excitableness/M -excitable/P -excitably -excitation/SM -excitatory -excited/Y -excitement/MS -exciter/M -excite/RSDLBZG -excitingly -exciting/U -exciton/M -exclaimer/M -exclaim/SZDRG -exclamation/MS -exclamatory -exclude/DRSG -excluder/M -exclusionary -exclusioner/M -exclusion/SZMR -exclusiveness/SM -exclusive/SPY -exclusivity/MS -excommunicate/XVNGSD -excommunication/M -excoriate/GNXSD -excoriation/M -excremental -excrement/SM -excrescence/MS -excrescent -excreta -excrete/NGDRSX -excreter/M -excretion/M -excretory/S -excruciate/NGDS -excruciating/Y -excruciation/M -exculpate/XSDGN -exculpation/M -exculpatory -excursionist/SM -excursion/MS -excursiveness/SM -excursive/PY -excursus/MS -excusable/IP -excusableness/IM -excusably/I -excuse/BGRSD -excused/U -excuser/M -exec/MS -execrableness/M -execrable/P -execrably -execrate/DSXNGV -execration/M -executable/MS -execute/NGVZBXDRS -executer/M -executional -executioner/M -execution/ZMR -executive/SM -executor/SM -executrices -executrix/M -exegeses -exegesis/M -exegete/M -exegetical -exegetic/S -exemplariness/M -exemplar/MS -exemplary/P -exemplification/M -exemplifier/M -exemplify/ZXNSRDG -exemption/MS -exempt/SDG -exerciser/M -exercise/ZDRSGB -exertion/MS -exert/SGD -Exeter/M -exeunt -exhalation/SM -exhale/GSD -exhausted/Y -exhauster/M -exhaustible/I -exhausting/Y -exhaustion/SM -exhaustiveness/MS -exhaustive/YP -exhaust/VGRDS -exhibitioner/M -exhibitionism/MS -exhibitionist/MS -exhibition/ZMRS -exhibitor/SM -exhibit/VGSD -exhilarate/XSDVNG -exhilarating/Y -exhilaration/M -exhortation/SM -exhort/DRSG -exhorter/M -exhumation/SM -exhume/GRSD -exhumer/M -exigence/S -exigency/SM -exigent/SY -exiguity/SM -exiguous -exile/SDGM -existence/MS -existent/I -existentialism/MS -existentialistic -existentialist/MS -existential/Y -existents -exist/SDG -exit/MDSG -exobiology/MS -exocrine -Exodus/M -exodus/SM -exogamous -exogamy/M -exogenous/Y -exonerate/SDVGNX -exoneration/M -exorbitance/MS -exorbitant/Y -exorcise/SDG -exorcism/SM -exorcist/SM -exorcizer/M -exoskeleton/MS -exosphere/SM -exothermic -exothermically -exotica -exotically -exoticism/SM -exoticness/M -exotic/PS -exp -expandability/M -expand/DRSGZB -expanded/U -expander/M -expanse/DSXGNVM -expansible -expansionary -expansionism/MS -expansionist/MS -expansion/M -expansiveness/S -expansive/YP -expatiate/XSDNG -expatiation/M -expatriate/SDNGX -expatriation/M -expectancy/MS -expectant/YS -expectational -expectation/MS -expected/UPY -expecting/Y -expectorant/S -expectorate/NGXDS -expectoration/M -expect/SBGD -expedience/IS -expediency/IMS -expedients -expedient/YI -expediter/M -expedite/ZDRSNGX -expeditionary -expedition/M -expeditiousness/MS -expeditious/YP -expeditor's -expellable -expelled -expelling -expel/S -expendable/S -expended/U -expender/M -expenditure/SM -expend/SDRGB -expense/DSGVM -expensive/IYP -expensiveness/SMI -experienced/U -experience/ISDM -experiencing -experiential/Y -experimentalism/M -experimentalist/SM -experimental/Y -experimentation/SM -experimenter/M -experiment/GSMDRZ -experted -experting -expertise/SM -expertize/GD -expertnesses -expertness/IM -expert/PISY -expert's -expiable/I -expiate/XGNDS -expiation/M -expiatory -expiration/MS -expired/U -expire/SDG -expiry/MS -explainable/UI -explain/ADSG -explained/U -explainer/SM -explanation/MS -explanatory -expletive/SM -explicable/I -explicate/VGNSDX -explication/M -explicative/Y -explicitness/SM -explicit/PSY -explode/DSRGZ -exploded/U -exploder/M -exploitation/MS -exploitative -exploited/U -exploiter/M -exploit/ZGVSMDRB -exploration/MS -exploratory -explore/DSRBGZ -explored/U -explorer/M -explosion/MS -explosiveness/SM -explosive/YPS -expo/MS -exponential/SY -exponentiate/XSDNG -exponentiation/M -exponent/MS -exportability -exportable -export/AGSD -exportation/SM -exporter/MS -export's -expose -exposed/U -exposer/M -exposit/D -exposition/SM -expositor/MS -expository -expos/RSDZG -expostulate/DSXNG -expostulation/M -exposure/SM -expounder/M -expound/ZGSDR -expressed/U -expresser/M -express/GVDRSY -expressibility/I -expressible/I -expressibly/I -expressionism/SM -expressionistic -expressionist/S -expressionless/YP -expression/MS -expressive/IYP -expressiveness/MS -expressiveness's/I -expressway/SM -expropriate/XDSGN -expropriation/M -expropriator/SM -expulsion/MS -expunge/GDSR -expunger/M -expurgated/U -expurgate/SDGNX -expurgation/M -exquisiteness/SM -exquisite/YPS -ex/S -ext -extant -extemporaneousness/MS -extemporaneous/YP -extempore/S -extemporization/SM -extemporizer/M -extemporize/ZGSRD -extendability/M -extendedly -extendedness/M -extended/U -extender/M -extendibility/M -extendibles -extend/SGZDR -extensibility/M -extensible/I -extensional/Y -extension/SM -extensiveness/SM -extensive/PY -extensor/MS -extent/SM -extenuate/XSDGN -extenuation/M -exterior/MYS -exterminate/XNGDS -extermination/M -exterminator/SM -externalities -externalization/SM -externalize/GDS -external/YS -extern/M -extinct/DGVS -extinction/MS -extinguishable/I -extinguish/BZGDRS -extinguisher/M -extirpate/XSDVNG -extirpation/M -extolled -extoller/M -extolling -extol/S -extort/DRSGV -extorter/M -extortionate/Y -extortioner/M -extortionist/SM -extortion/ZSRM -extracellular/Y -extract/GVSBD -extraction/SM -extractive/Y -extractor/SM -extracurricular/S -extradite/XNGSDB -extradition/M -extragalactic -extralegal/Y -extramarital -extramural -extraneousness/M -extraneous/YP -extraordinarily -extraordinariness/M -extraordinary/PS -extrapolate/XVGNSD -extrapolation/M -extra/S -extrasensory -extraterrestrial/S -extraterritorial -extraterritoriality/MS -extravagance/MS -extravagant/Y -extravaganza/SM -extravehicular -extravert's -extrema -extremal -extreme/DSRYTP -extremeness/MS -extremism/SM -extremist/MS -extremity/SM -extricable/I -extricate/XSDNG -extrication/M -extrinsic -extrinsically -extroversion/SM -extrovert/GMDS -extrude/GDSR -extruder/M -extrusion/MS -extrusive -exuberance/MS -exuberant/Y -exudate/XNM -exudation/M -exude/GSD -exultant/Y -exultation/SM -exult/DGS -exulting/Y -exurban -exurbanite/SM -exurbia/MS -exurb/MS -Exxon/M -Eyck/M -Eyde/M -Eydie/M -eyeball/GSMD -eyebrow/MS -eyed/P -eyedropper/MS -eyeful/MS -eye/GDRSMZ -eyeglass/MS -eyelash/MS -eyeless -eyelet/GSMD -eyelid/SM -eyeliner/MS -eyeopener/MS -eyeopening -eyepiece/SM -eyer/M -eyeshadow -eyesight/MS -eyesore/SM -eyestrain/MS -eyeteeth -eyetooth/M -eyewash/MS -eyewitness/SM -Eyre/M -eyrie's -Eysenck/M -Ezechiel/M -Ezekiel/M -Ezequiel/M -Eziechiele/M -Ezmeralda/M -Ezra/M -Ezri/M -F -FAA -Fabe/MR -Faberg/M -Faber/M -Fabiano/M -Fabian/S -Fabien/M -Fabio/M -fable/GMSRD -fabler/M -fabricate/SDXNG -fabrication/M -fabricator/MS -fabric/MS -fabulists -fabulousness/M -fabulous/YP -facade/GMSD -face/AGCSD -facecloth -facecloths -faceless/P -faceplate/M -facer/CM -face's -facetiousness/MS -facetious/YP -facet/SGMD -facial/YS -facileness/M -facile/YP -facilitate/VNGXSD -facilitation/M -facilitator/SM -facilitatory -facility/MS -facing/MS -facsimileing -facsimile/MSD -factional -factionalism/SM -faction/SM -factiousness/M -factious/PY -factitious -fact/MS -facto -factoid/S -factorial/MS -factoring/A -factoring's -factorisable -factorization/SM -factorize/GSD -factor/SDMJG -factory/MS -factotum/MS -factuality/M -factualness/M -factual/PY -faculty/MS -faddish -faddist/SM -fadedly -faded/U -fadeout -fader/M -fade/S -fading's -fading/U -fad/ZGSMDR -Fae/M -faerie/MS -Faeroe/M -faery's -Fafnir/M -fagged -fagging -faggoting's -Fagin/M -fag/MS -fagoting/M -fagot/MDSJG -Fahd/M -Fahrenheit/S -faence/S -failing's -failing/UY -fail/JSGD -faille/MS -failsafe -failure/SM -Faina/M -fain/GTSRD -fainter/M -fainthearted -faintness/MS -faint/YRDSGPT -Fairbanks -Fairchild/M -faired -Fairfax/M -Fairfield/M -fairgoer/S -fairground/MS -fairing/MS -fairish -Fairleigh/M -fairless -Fairlie/M -Fair/M -Fairmont/M -fairness's -fairness/US -Fairport/M -fairs -fair/TURYP -Fairview/M -fairway/MS -fairyland/MS -fairy/MS -fairytale -Faisalabad -Faisal/M -faithed -faithfulness/MSU -faithfuls -faithful/UYP -faithing -faithlessness/SM -faithless/YP -Faith/M -faiths -faith's -faith/U -fajitas -faker/M -fake/ZGDRS -fakir/SM -falafel -falconer/M -falconry/MS -falcon/ZSRM -Falito/M -Falkland/MS -Falk/M -Falkner/M -fallaciousness/M -fallacious/PY -fallacy/MS -faller/M -fallibility/MSI -fallible/I -fallibleness/MS -fallibly/I -falloff/S -Fallon/M -fallopian -Fallopian/M -fallout/MS -fallowness/M -fallow/PSGD -fall/SGZMRN -falsehood/SM -falseness/SM -false/PTYR -falsetto/SM -falsie/MS -falsifiability/M -falsifiable/U -falsification/M -falsifier/M -falsify/ZRSDNXG -falsity/MS -Falstaff/M -falterer/M -faltering/UY -falter/RDSGJ -Falwell/M -fa/M -famed/C -fame/DSMG -fames/C -familial -familiarity/MUS -familiarization/MS -familiarized/U -familiarizer/M -familiarize/ZGRSD -familiarizing/Y -familiarly/U -familiarness/M -familiar/YPS -family/MS -famine/SM -faming/C -famish/GSD -famously/I -famousness/M -famous/PY -fanaticalness/M -fanatical/YP -fanaticism/MS -fanatic/SM -Fanchette/M -Fanchon/M -fancied -Fancie/M -fancier/SM -fanciest -fancifulness/MS -fanciful/YP -fancily -fanciness/SM -fancying -fancy/IS -Fancy/M -fancywork/SM -fandango/SM -Fanechka/M -fanfare/SM -fanfold/M -fang/DMS -fangled -Fania/M -fanlight/SM -Fan/M -fanned -Fannie/M -Fanni/M -fanning -fanny/SM -Fanny/SM -fanout -fan/SM -fantail/SM -fantasia/SM -fantasist/M -fantasize/SRDG -fantastical/Y -fantastic/S -fantasy/GMSD -Fanya/M -fanzine/S -FAQ/SM -Faraday/M -farad/SM -Farah/M -Fara/M -Farand/M -faraway -Farber/M -farce/SDGM -farcical/Y -fare/MS -farer/M -farewell/DGMS -farfetchedness/M -far/GDR -Fargo/M -Farica/M -farinaceous -farina/MS -Farkas/M -Farlay/M -Farlee/M -Farleigh/M -Farley/M -Farlie/M -Farly/M -farmer/M -Farmer/M -farmhand/S -farmhouse/SM -farming/M -Farmington/M -farmland/SM -farm/MRDGZSJ -farmstead/SM -farmworker/S -Far/MY -farmyard/MS -faro/MS -farragoes -farrago/M -Farragut/M -Farrah/M -Farrakhan/M -Farra/M -Farrand/M -Farrell/M -Farrel/M -farrier/SM -Farris/M -Farr/M -farrow/DMGS -farseeing -farsightedness/SM -farsighted/YP -farther -farthermost -farthest -farthing/SM -fart/MDGS! -fas -fascia/SM -fascicle/DSM -fasciculate/DNX -fasciculation/M -fascinate/SDNGX -fascinating/Y -fascination/M -fascism/MS -Fascism's -fascistic -Fascist's -fascist/SM -fashionableness/M -fashionable/PS -fashionably/U -fashion/ADSG -fashioner/SM -fashion's -Fassbinder/M -fastback/MS -fastball/S -fasten/AGUDS -fastener/MS -fastening/SM -fast/GTXSPRND -fastidiousness/MS -fastidious/PY -fastness/MS -fatalism/MS -fatalistic -fatalistically -fatalist/MS -fatality/MS -fatal/SY -fatback/SM -fatefulness/MS -fateful/YP -fate/MS -Fates -fatheaded/P -fathead/SMD -father/DYMGS -fathered/U -fatherhood/MS -fatherland/SM -fatherless -fatherliness/M -fatherly/P -Father/SM -fathomable/U -fathomless -fathom/MDSBG -fatigued/U -fatigue/MGSD -fatiguing/Y -Fatima/M -fatness/SM -fat/PSGMDY -fatso/M -fatted -fattener/M -fatten/JZGSRD -fatter -fattest/M -fattiness/SM -fatting -fatty/RSPT -fatuity/MS -fatuousness/SM -fatuous/YP -fatwa/SM -faucet/SM -Faulknerian -Faulkner/M -fault/CGSMD -faultfinder/MS -faultfinding/MS -faultily -faultiness/MS -faultlessness/SM -faultless/PY -faulty/RTP -fauna/MS -Faunie/M -Faun/M -faun/MS -Fauntleroy/M -Faustian -Faustina/M -Faustine/M -Faustino/M -Faust/M -Faustus/M -fauvism/S -favorableness/MU -favorable/UMPS -favorably/U -favoredness/M -favored's/U -favored/YPSM -favorer/EM -favor/ESMRDGZ -favoring/MYS -favorings/U -favorite/SMU -favoritism/MS -favors/A -Fawkes/M -Fawne/M -fawner/M -fawn/GZRDMS -Fawnia/M -fawning/Y -Fawn/M -fax/GMDS -Fax/M -Faydra/M -Faye/M -Fayette/M -Fayetteville/M -Fayina/M -Fay/M -fay/MDRGS -Fayre/M -Faythe/M -Fayth/M -faze/DSG -FBI -FCC -FD -FDA -FDIC -FDR/M -fealty/MS -fearfuller -fearfullest -fearfulness/MS -fearful/YP -fearlessness/MS -fearless/PY -fear/RDMSG -fearsomeness/M -fearsome/PY -feasibility/SM -feasibleness/M -feasible/UI -feasibly/U -feaster/M -feast/GSMRD -feater/C -featherbed -featherbedding/SM -featherbrain/MD -feathered/U -feathering/M -featherless -featherlight -Featherman/M -feathertop -featherweight/SM -feathery/TR -feather/ZMDRGS -feat/MYRGTS -feats/C -featureless -feature/MGSD -Feb/M -febrile -February/MS -fecal -feces -fecklessness/M -feckless/PY -fecundability -fecundate/XSDGN -fecundation/M -fecund/I -fecundity/SM -federalism/SM -Federalist -federalist/MS -federalization/MS -federalize/GSD -Federal/S -federal/YS -federated/U -federate/FSDXVNG -federation/FM -federative/Y -Federica/M -Federico/M -FedEx/M -Fedora/M -fedora/SM -feds -Fed/SM -fed/U -feebleness/SM -feeble/TPR -feebly -feedback/SM -feedbag/MS -feeder/M -feed/GRZJS -feeding/M -feedlot/SM -feedstock -feedstuffs -feeing -feeler/M -feel/GZJRS -feelingly/U -feeling/MYP -feelingness/M -Fee/M -fee/MDS -feet/M -feigned/U -feigner/M -feign/RDGS -feint/MDSG -feisty/RT -Felder/M -Feldman/M -feldspar/MS -Felecia/M -Felicdad/M -Felice/M -Felicia/M -Felicio/M -felicitate/XGNSD -felicitation/M -felicitous/IY -felicitousness/M -felicity/IMS -Felicity/M -Felicle/M -Felic/M -Felike/M -Feliks/M -feline/SY -Felipa/M -Felipe/M -Felisha/M -Felita/M -Felix/M -Feliza/M -Felizio/M -fella/S -fellatio/SM -felled/A -feller/M -felling/A -Fellini/M -fellness/M -fellowman -fellowmen -fellow/SGDYM -fellowshipped -fellowshipping -fellowship/SM -fell/PSGZTRD -feloniousness/M -felonious/PY -felon/MS -felony/MS -felt/GSD -felting/M -Fe/M -female/MPS -femaleness/SM -feminineness/M -feminine/PYS -femininity/MS -feminism/MS -feminist/MS -femme/MS -femoral -fem/S -femur/MS -fenced/U -fencepost/M -fencer/M -fence/SRDJGMZ -fencing/M -fender/CM -fend/RDSCZG -Fenelia/M -fenestration/CSM -Fenian/M -fenland/M -fen/MS -fennel/SM -Fenwick/M -Feodora/M -Feodor/M -feral -Ferber/M -Ferdie/M -Ferdinanda/M -Ferdinande/M -Ferdinand/M -Ferdinando/M -Ferd/M -Ferdy/M -fer/FLC -Fergus/M -Ferguson/M -Ferlinghetti/M -Fermat/M -fermentation/MS -fermented -fermenter -ferment/FSCM -fermenting -Fermi/M -fermion/MS -fermium/MS -Fernanda/M -Fernande/M -Fernandez/M -Fernandina/M -Fernando/M -Ferne/M -fernery/M -Fern/M -fern/MS -ferny/TR -ferociousness/MS -ferocious/YP -ferocity/MS -Ferrari/M -Ferraro/M -Ferreira/M -Ferrell/M -Ferrel/M -Ferrer/M -ferreter/M -ferret/SMRDG -ferric -ferris -Ferris -ferrite/M -ferro -ferroelectric -ferromagnetic -ferromagnet/M -ferrous -ferrule/MGSD -ferryboat/MS -ferryman/M -ferrymen -ferry/SDMG -fertileness/M -fertile/YP -fertility/IMS -fertilization/ASM -fertilized/U -fertilizer/M -fertilizes/A -fertilize/SRDZG -ferule/SDGM -fervency/MS -fervent/Y -fervidness/M -fervid/YP -fervor/MS -fess/KGFSD -Fess/M -fess's -festal/S -fester/GD -festival/SM -festiveness/SM -festive/PY -festivity/SM -festoon/SMDG -fest/RVZ -fetal -feta/MS -fetcher/M -fetching/Y -fetch/RSDGZ -feted -fte/MS -fetich's -fetidness/SM -fetid/YP -feting -fetishism/SM -fetishistic -fetishist/SM -fetish/MS -fetlock/MS -fetter's -fetter/UGSD -fettle/GSD -fettling/M -fettuccine/S -fetus/SM -feudalism/MS -feudalistic -feudal/Y -feudatory/M -feud/MDSG -feverishness/SM -feverish/PY -fever/SDMG -fewness/MS -few/PTRS -Fey/M -Feynman/M -fey/RT -fez/M -Fez/M -fezzes -ff -FHA -fiance/S -fianc/MS -Fianna/M -Fiann/M -fiascoes -fiasco/M -Fiat/M -fiat/MS -fibbed -fibber/MS -fibbing -fiberboard/MS -fiber/DM -fiberfill/S -Fiberglas/M -fiberglass/DSMG -Fibonacci/M -fibrillate/XGNDS -fibrillation/M -fibril/MS -fibrin/MS -fibroblast/MS -fibroid/S -fibroses -fibrosis/M -fibrousness/M -fibrous/YP -fib/SZMR -fibulae -fibula/M -fibular -FICA -fices -fiche/SM -Fichte/M -fichu/SM -fickleness/MS -fickle/RTP -ficos -fictionalization/MS -fictionalize/DSG -fictional/Y -fiction/SM -fictitiousness/M -fictitious/PY -fictive/Y -ficus -fiddle/GMZJRSD -fiddler/M -fiddlestick/SM -fiddly -fide/F -Fidela/M -Fidelia/M -Fidelio/M -fidelity/IMS -Fidelity/M -Fidel/M -fidget/DSG -fidgety -Fidole/M -Fido/M -fiducial/Y -fiduciary/MS -fiefdom/S -fief/MS -fielded -fielder/IM -fielding -Fielding/M -Field/MGS -fieldstone/M -fieldworker/M -fieldwork/ZMRS -field/ZISMR -fiendishness/M -fiendish/YP -fiend/MS -fierceness/SM -fierce/RPTY -fierily -fieriness/MS -fiery/PTR -fie/S -fies/C -fiesta/MS -fife/DRSMZG -fifer/M -Fifi/M -Fifine/M -FIFO -fifteen/HRMS -fifteenths -fifths -fifth/Y -fiftieths -fifty/HSM -Figaro/M -figged -figging -fightback -fighter/MIS -fighting/IS -fight/ZSJRG -figment/MS -fig/MLS -Figueroa/M -figural -figuration/FSM -figurativeness/M -figurative/YP -figure/GFESD -figurehead/SM -figurer/SM -figure's -figurine/SM -figuring/S -Fijian/SM -Fiji/M -filamentary -filament/MS -filamentous -Filberte/M -Filbert/M -filbert/MS -Filberto/M -filch/SDG -filed/AC -file/KDRSGMZ -filename/SM -filer/KMCS -files/AC -filet's -filial/UY -Filia/M -filibusterer/M -filibuster/MDRSZG -Filide/M -filigreeing -filigree/MSD -filing/AC -filings -Filipino/SM -Filip/M -Filippa/M -Filippo/M -fill/BAJGSD -filled/U -filler/MS -filleting/M -fillet/MDSG -filling/M -fillip/MDGS -Fillmore/M -filly/SM -filmdom/M -Filmer/M -filminess/SM -filming/M -filmmaker/S -Filmore/M -film/SGMD -filmstrip/SM -filmy/RTP -Filofax/S -filtered/U -filterer/M -filter/RDMSZGB -filthily -filthiness/SM -filth/M -filths -filthy/TRSDGP -filtrated/I -filtrate/SDXMNG -filtrates/I -filtrating/I -filtration/IMS -finagler/M -finagle/RSDZG -finale/MS -finalist/MS -finality/MS -finalization/SM -finalize/GSD -final/SY -Fina/M -financed/A -finance/MGSDJ -finances/A -financial/Y -financier/DMGS -financing/A -Finch/M -finch/MS -findable/U -find/BRJSGZ -finder/M -finding/M -Findlay/M -Findley/M -fine/FGSCRDA -finely -fineness/MS -finery/MAS -fine's -finespun -finesse/SDMG -fingerboard/SM -fingerer/M -fingering/M -fingerless -fingerling/M -fingernail/MS -fingerprint/SGDM -finger/SGRDMJ -fingertip/MS -finial/SM -finical -finickiness/S -finicky/RPT -fining/M -finished/UA -finisher/M -finishes/A -finish/JZGRSD -finis/SM -finite/ISPY -finitely/C -finiteness/MIC -fink/GDMS -Finland/M -Finlay/M -Finley/M -Fin/M -Finnbogadottir/M -finned -Finnegan/M -finner -finning -Finnish -Finn/MS -finny/RT -fin/TGMDRS -Fiona/M -Fionna/M -Fionnula/M -fiord's -Fiorello/M -Fiorenze/M -Fiori/M -f/IRAC -firearm/SM -fireball/SM -fireboat/M -firebomb/MDSG -firebox/MS -firebrand/MS -firebreak/SM -firebrick/SM -firebug/SM -firecracker/SM -firedamp/SM -fired/U -firefight/JRGZS -firefly/MS -Firefox/M -fireguard/M -firehouse/MS -firelight/GZSM -fireman/M -firemen -fire/MS -fireplace/MS -fireplug/MS -firepower/SM -fireproof/SGD -firer/M -firesafe -fireside/SM -Firestone/M -firestorm/SM -firetrap/SM -firetruck/S -firewall/S -firewater/SM -firewood/MS -firework/MS -firing/M -firkin/M -firmament/MS -firmer -firmest -firm/ISFDG -firmly/I -firmness/MS -firm's -firmware/MS -firring -firstborn/S -firsthand -first/SY -firth/M -firths -fir/ZGJMDRHS -fiscal/YS -Fischbein/M -Fischer/M -fishbowl/MS -fishcake/S -fisher/M -Fisher/M -fisherman/M -fishermen/M -fishery/MS -fishhook/MS -fishily -fishiness/MS -fishing/M -fish/JGZMSRD -Fishkill/M -fishmeal -fishmonger/MS -fishnet/SM -fishpond/SM -fishtail/DMGS -fishtanks -fishwife/M -fishwives -fishy/TPR -Fiske/M -Fisk/M -fissile -fissionable/S -fission/BSDMG -fissure/MGSD -fistfight/SM -fistful/MS -fisticuff/SM -fist/MDGS -fistula/SM -fistulous -Fitchburg/M -Fitch/M -fitfulness/SM -fitful/PY -fitments -fitness/USM -fits/AK -fit's/K -fitted/UA -fitter/SM -fittest -fitting/AU -fittingly -fittingness/M -fittings -fit/UYPS -Fitzgerald/M -Fitz/M -Fitzpatrick/M -Fitzroy/M -fivefold -five/MRS -fiver/M -fixable -fixate/VNGXSD -fixatifs -fixation/M -fixative/S -fixedness/M -fixed/YP -fixer/SM -fixes/I -fixing/SM -fixity/MS -fixture/SM -fix/USDG -Fizeau/M -fizzer/M -fizzle/GSD -fizz/SRDG -fizzy/RT -fjord/SM -FL -flabbergast/GSD -flabbergasting/Y -flabbily -flabbiness/SM -flabby/TPR -flab/MS -flaccidity/MS -flaccid/Y -flack/SGDM -flagella/M -flagellate/DSNGX -flagellation/M -flagellum/M -flagged -flaggingly/U -flagging/SMY -flagman/M -flagmen -flag/MS -flagon/SM -flagpole/SM -flagrance/MS -flagrancy/SM -flagrant/Y -flagship/MS -flagstaff/MS -flagstone/SM -flail/SGMD -flair/SM -flaker/M -flake/SM -flakiness/MS -flak/RDMGS -flaky/PRT -Fla/M -flamb/D -flambeing -flambes -flamboyance/MS -flamboyancy/MS -flamboyant/YS -flamenco/SM -flamen/M -flameproof/DGS -flamer/IM -flame's -flame/SIGDR -flamethrower/SM -flamingo/SM -flaming/Y -flammability/ISM -flammable/SI -flam/MRNDJGZ -Flanagan/M -Flanders/M -flange/GMSD -flanker/M -flank/SGZRDM -flan/MS -flannel/DMGS -flannelet/MS -flannelette's -flapjack/SM -flap/MS -flapped -flapper/SM -flapping -flaps/M -flare/SDG -flareup/S -flaring/Y -flashback/SM -flashbulb/SM -flashcard/S -flashcube/MS -flasher/M -flashgun/S -flashily -flashiness/SM -flashing/M -flash/JMRSDGZ -flashlight/MS -flashy/TPR -flask/SM -flatbed/S -flatboat/MS -flatcar/MS -flatfeet -flatfish/SM -flatfoot/SGDM -flathead/M -flatiron/SM -flatland/RS -flatmate/M -flat/MYPS -flatness/MS -flatted -flattener/M -flatten/SDRG -flatter/DRSZG -flatterer/M -flattering/YU -flattery/SM -flattest/M -flatting -flattish -Flatt/M -flattop/MS -flatulence/SM -flatulent/Y -flatus/SM -flatware/MS -flatworm/SM -Flaubert/M -flaunting/Y -flaunt/SDG -flautist/SM -flavored/U -flavorer/M -flavorful -flavoring/M -flavorless -flavor/SJDRMZG -flavorsome -flaw/GDMS -flawlessness/MS -flawless/PY -flax/MSN -flaxseed/M -flayer/M -flay/RDGZS -fleabag/MS -fleabites -flea/SM -fleawort/M -fleck/GRDMS -Fledermaus/M -fledged/U -fledge/GSD -fledgling/SM -fleecer/M -fleece/RSDGMZ -fleeciness/SM -fleecy/RTP -fleeing -flee/RS -fleetingly/M -fleetingness/SM -fleeting/YP -fleet/MYRDGTPS -fleetness/MS -Fleischer/M -Fleischman/M -Fleisher/M -Fleming/M -Flemished/M -Flemish/GDSM -Flemishing/M -Flem/JGM -Flemming/M -flesher/M -fleshiness/M -flesh/JMYRSDG -fleshless -fleshly/TR -fleshpot/SM -fleshy/TPR -fletch/DRSGJ -fletcher/M -Fletcher/M -fletching/M -Fletch/MR -Fleurette/M -Fleur/M -flew/S -flews/M -flexed/I -flexibility/MSI -flexible/I -flexibly/I -flexitime's -flex/MSDAG -flextime/S -flexural -flexure/M -fl/GJD -flibbertigibbet/MS -flicker/GD -flickering/Y -flickery -flick/GZSRD -flier/M -flight/GMDS -flightiness/SM -flightless -flightpath -flighty/RTP -flimflammed -flimflamming -flimflam/MS -flimsily -flimsiness/MS -flimsy/PTRS -flincher/M -flinch/GDRS -flinching/U -flinger/M -fling/RMG -Flin/M -Flinn/M -flintiness/M -flintless -flintlock/MS -Flint/M -flint/MDSG -Flintstones -flinty/TRP -flipflop -flippable -flippancy/MS -flippant/Y -flipped -flipper/SM -flippest -flipping -flip/S -flirtation/SM -flirtatiousness/MS -flirtatious/PY -flirt/GRDS -flit/S -flitted -flitting -floater/M -float/SRDGJZ -floaty -flocculate/GNDS -flocculation/M -flock/SJDMG -floe/MS -flogged -flogger/SM -flogging/SM -flog/S -Flo/M -floodgate/MS -floodlight/DGMS -floodlit -floodplain/S -flood/SMRDG -floodwater/SM -floorboard/MS -floorer/M -flooring/M -floor/SJRDMG -floorspace -floorwalker/SM -floozy/SM -flophouse/SM -flop/MS -flopped -flopper/M -floppily -floppiness/SM -flopping -floppy/TMRSP -floral/SY -Flora/M -Florance/M -flora/SM -Florella/M -Florence/M -Florencia/M -Florentia/M -Florentine/S -Florenza/M -florescence/MIS -florescent/I -Flore/SM -floret/MS -Florette/M -Floria/M -Florian/M -Florida/M -Floridan/S -Floridian/S -floridness/SM -florid/YP -Florie/M -Florina/M -Florinda/M -Florine/M -florin/MS -Flori/SM -florist/MS -Flor/M -Florrie/M -Florri/M -Florry/M -Flory/M -floss/GSDM -Flossie/M -Flossi/M -Flossy/M -flossy/RST -flotation/SM -flotilla/SM -flotsam/SM -flounce/GDS -flouncing/M -flouncy/RT -flounder/SDG -flourisher/M -flourish/GSRD -flourishing/Y -flour/SGDM -floury/TR -flouter/M -flout/GZSRD -flowchart/SG -flowed -flowerbed/SM -flower/CSGD -flowerer/M -floweriness/SM -flowerless -flowerpot/MS -flower's -Flowers -flowery/TRP -flowing/Y -flow/ISG -flown -flowstone -Floyd/M -Flss/M -flt -flubbed -flubbing -flub/S -fluctuate/XSDNG -fluctuation/M -fluency/MS -fluently -fluent/SF -flue/SM -fluffiness/SM -fluff/SGDM -fluffy/PRT -fluidity/SM -fluidized -fluid/MYSP -fluidness/M -fluke/SDGM -fluky/RT -flume/SDGM -flummox/DSG -flu/MS -flung -flunkey's -flunk/SRDG -flunky/MS -fluoresce/GSRD -fluorescence/MS -fluorescent/S -fluoridate/XDSGN -fluoridation/M -fluoride/SM -fluorimetric -fluorinated -fluorine/SM -fluorite/MS -fluorocarbon/MS -fluoroscope/MGDS -fluoroscopic -flurry/GMDS -flushness/M -flush/TRSDPBG -fluster/DSG -fluter/M -flute/SRDGMJ -fluting/M -flutist/MS -flutter/DRSG -flutterer/M -fluttery -fluxed/A -fluxes/A -flux/IMS -fluxing -flyaway -flyblown -flyby/M -flybys -flycatcher/MS -flyer's -fly/JGBDRSTZ -flyleaf/M -flyleaves -Flynn/M -flyover/MS -flypaper/MS -flysheet/S -flyspeck/MDGS -flyswatter/S -flyway/MS -flyweight/MS -flywheel/MS -FM -Fm/M -FNMA/M -foal/MDSG -foaminess/MS -foam/MRDSG -foamy/RPT -fobbed -fobbing -fob/SM -focal/F -focally -Foch/M -foci's -focused/AU -focuser/M -focuses/A -focus/SRDMBG -fodder/GDMS -foe/SM -foetid -FOFL -fogbound -fogged/C -foggily -fogginess/MS -fogging/C -foggy/RPT -foghorn/SM -fogs/C -fog/SM -fogyish -fogy/SM -foible/MS -foil/GSD -foist/GDS -Fokker/M -foldaway/S -folded/AU -folder/M -foldout/MS -fold/RDJSGZ -folds/UA -Foley/M -foliage/MSD -foliate/CSDXGN -foliation/CM -folio/SDMG -folklike -folklore/MS -folkloric -folklorist/SM -folk/MS -folksiness/MS -folksinger/S -folksinging/S -folksong/S -folksy/TPR -folktale/S -folkway/S -foll -follicle/SM -follicular -follower/M -follow/JSZBGRD -followup's -folly/SM -Folsom -fol/Y -Fomalhaut/M -fomentation/SM -fomenter/M -foment/RDSG -Fonda/M -fondant/SM -fondle/GSRD -fondler/M -fondness/MS -fond/PMYRDGTS -fondue/MS -Fons -Fonsie/M -Fontainebleau/M -Fontaine/M -Fontana/M -fontanelle's -fontanel/MS -font/MS -Fonzie/M -Fonz/M -foodie/S -food/MS -foodstuff/MS -foolery/MS -foolhardily -foolhardiness/SM -foolhardy/PTR -foolishness/SM -foolish/PRYT -fool/MDGS -foolproof -foolscap/MS -footage/SM -football/SRDMGZ -footbridge/SM -Foote/M -footer/M -footfall/SM -foothill/SM -foothold/MS -footing/M -footless -footlights -footling -footlocker/SM -footloose -footman/M -footmarks -footmen -footnote/MSDG -footpad/SM -footpath/M -footpaths -footplate/M -footprint/MS -footrace/S -footrest/MS -footsie/SM -foot/SMRDGZJ -footsore -footstep/SM -footstool/SM -footwear/M -footwork/SM -fop/MS -fopped -foppery/MS -fopping -foppishness/SM -foppish/YP -forage/GSRDMZ -forager/M -forayer/M -foray/SGMRD -forbade -forbearance/SM -forbearer/M -forbear/MRSG -Forbes/M -forbidden -forbiddingness/M -forbidding/YPS -forbid/S -forbore -forborne -forced/Y -forcefield/MS -forcefulness/MS -forceful/PY -forceps/M -forcer/M -force/SRDGM -forcibleness/M -forcible/P -forcibly -fordable/U -Fordham/M -Ford/M -ford/SMDBG -forearm/GSDM -forebear/MS -forebode/GJDS -forebodingness/M -foreboding/PYM -forecaster/M -forecastle/MS -forecast/SZGR -foreclose/GSD -foreclosure/MS -forecourt/SM -foredoom/SDG -forefather/SM -forefeet -forefinger/MS -forefoot/M -forefront/SM -foregoer/M -foregoing/S -foregone -foregos -foreground/MGDS -forehand/S -forehead/MS -foreigner/M -foreignness/SM -foreign/PRYZS -foreknew -foreknow/GS -foreknowledge/MS -foreknown -foreleg/MS -forelimb/MS -forelock/MDSG -foreman/M -Foreman/M -foremast/SM -foremen -foremost -forename/DSM -forenoon/SM -forensically -forensic/S -forensics/M -foreordain/DSG -forepart/MS -forepaws -forepeople -foreperson/S -foreplay/MS -forequarter/SM -forerunner/MS -fore/S -foresail/SM -foresaw -foreseeable/U -foreseeing -foreseen/U -foreseer/M -foresee/ZSRB -foreshadow/SGD -foreshore/M -foreshorten/DSG -foresightedness/SM -foresighted/PY -foresight/SMD -foreskin/SM -forestaller/M -forestall/LGSRD -forestallment/M -forestation/MCS -forestations/A -forest/CSAGD -Forester/M -forester/SM -forestland/S -Forest/MR -forestry/MS -forest's -foretaste/MGSD -foreteller/M -foretell/RGS -forethought/MS -foretold -forevermore -forever/PS -forewarner/M -forewarn/GSJRD -forewent -forewoman/M -forewomen -foreword/SM -forfeiter/M -forfeiture/MS -forfeit/ZGDRMS -forfend/GSD -forgather/GSD -forgave -forged/A -forge/JVGMZSRD -forger/M -forgery/MS -forges/A -forgetfulness/SM -forgetful/PY -forget/SV -forgettable/U -forgettably/U -forgetting -forging/M -forgivable/U -forgivably/U -forgiven -forgiveness/SM -forgiver/M -forgive/SRPBZG -forgivingly -forgivingness/M -forgiving/UP -forgoer/M -forgoes -forgone -forgo/RSGZ -forgot -forgotten/U -for/HT -forkful/S -fork/GSRDM -forklift/DMSG -forlornness/M -forlorn/PTRY -formability/AM -formaldehyde/SM -formalin/M -formalism/SM -formalistic -formalist/SM -formality/SMI -formal/IY -formalization/SM -formalized/U -formalizer/M -formalizes/I -formalize/ZGSRD -formalness/M -formals -formant/MIS -format/AVS -formate/MXGNSD -formation/AFSCIM -formatively/I -formativeness/IM -formative/SYP -format's -formatted/UA -formatter/A -formatters -formatter's -formatting/A -form/CGSAFDI -formed/U -former/FSAI -formerly -formfitting -formic -Formica/MS -formidableness/M -formidable/P -formidably -formlessness/MS -formless/PY -Formosa/M -Formosan -form's -formulaic -formula/SM -formulate/AGNSDX -formulated/U -formulation/AM -formulator/SM -fornicate/GNXSD -fornication/M -fornicator/SM -Forrester/M -Forrest/RM -forsaken -forsake/SG -forsook -forsooth -Forster/M -forswear/SG -forswore -forsworn -forsythia/MS -Fortaleza/M -forte/MS -forthcome/JG -forthcoming/U -FORTH/M -forthrightness/SM -forthright/PYS -forthwith -fortieths -fortification/MS -fortified/U -fortifier/SM -fortify/ADSG -fortiori -fortissimo/S -fortitude/SM -fortnightly/S -fortnight/MYS -FORTRAN -Fortran/M -fortress/GMSD -fort/SM -fortuitousness/SM -fortuitous/YP -fortuity/MS -fortunateness/M -fortunate/YUS -fortune/MGSD -fortuneteller/SM -fortunetelling/SM -forty/SRMH -forum/MS -forwarder/M -forwarding/M -forwardness/MS -forward/PTZSGDRY -forwent -fossiliferous -fossilization/MS -fossilized/U -fossilize/GSD -fossil/MS -Foss/M -fosterer/M -Foster/M -foster/SRDG -Foucault/M -fought -foulard/SM -foulmouth/D -foulness/MS -fouls/M -foul/SYRDGTP -foundational -foundation/SM -founded/UF -founder/MDG -founder's/F -founding/F -foundling/MS -found/RDGZS -foundry/MS -founds/KF -fountainhead/SM -fountain/SMDG -fount/MS -fourfold -Fourier/M -fourpence/M -fourpenny -fourposter/SM -fourscore/S -four/SHM -foursome/SM -foursquare -fourteener/M -fourteen/SMRH -fourteenths -Fourth -fourths -Fourths -fourth/Y -fovea/M -fowler/M -Fowler/M -fowling/M -fowl/SGMRD -foxfire/SM -foxglove/SM -Foxhall/M -foxhole/SM -foxhound/SM -foxily -foxiness/MS -foxing/M -fox/MDSG -Fox/MS -foxtail/M -foxtrot/MS -foxtrotted -foxtrotting -foxy/TRP -foyer/SM -FPO -fps -fr -fracas/SM -fractal/SM -fractional/Y -fractionate/DNG -fractionation/M -fractioned -fractioning -fraction/ISMA -fractiousness/SM -fractious/PY -fracture/MGDS -fragile/Y -fragility/MS -fragmentarily -fragmentariness/M -fragmentary/P -fragmentation/MS -fragment/SDMG -Fragonard/M -fragrance/SM -fragrant/Y -frailness/MS -frail/STPYR -frailty/MS -framed/U -framer/M -frame/SRDJGMZ -framework/SM -framing/M -Francaise/M -France/MS -Francene/M -Francesca/M -Francesco/M -franchisee/S -franchise/ESDG -franchiser/SM -franchise's -Franchot/M -Francie/M -Francine/M -Francis -Francisca/M -Franciscan/MS -Francisco/M -Franciska/M -Franciskus/M -francium/MS -Francklin/M -Francklyn/M -Franck/M -Francoise/M -Francois/M -Franco/M -francophone/M -franc/SM -Francyne/M -frangibility/SM -frangible -Frankel/M -Frankenstein/MS -franker/M -Frankford/M -Frankfort/M -Frankfurter/M -frankfurter/MS -Frankfurt/RM -Frankie/M -frankincense/MS -Frankish/M -franklin/M -Franklin/M -Franklyn/M -frankness/MS -frank/SGTYRDP -Frank/SM -Franky/M -Fran/MS -Frannie/M -Franni/M -Franny/M -Fransisco/M -frantically -franticness/M -frantic/PY -Frants/M -Franzen/M -Franz/NM -frapp -frappeed -frappeing -frappes -Frasco/M -Fraser/M -Frasier/M -Frasquito/M -fraternal/Y -fraternity/MSF -fraternization/SM -fraternize/GZRSD -fraternizer/M -fraternizing/U -frat/MS -fratricidal -fratricide/MS -fraud/CS -fraud's -fraudsters -fraudulence/S -fraudulent/YP -fraught/SGD -Fraulein/S -Frau/MN -fray/CSDG -Frayda/M -Frayne/M -fray's -Fraze/MR -Frazer/M -Frazier/M -frazzle/GDS -freakishness/SM -freakish/YP -freak/SGDM -freaky/RT -freckle/GMDS -freckly/RT -Freda/M -Freddie/M -Freddi/M -Freddy/M -Fredek/M -Fredelia/M -Frederica/M -Frederich/M -Fredericka/M -Frederick/MS -Frederic/M -Frederico/M -Fredericton/M -Frederigo/M -Frederik/M -Frederique/M -Fredholm/M -Fredia/M -Fredi/M -Fred/M -Fredra/M -Fredrick/M -Fredrickson/M -Fredric/M -Fredrika/M -freebase/GDS -freebie/MS -freebooter/M -freeboot/ZR -freeborn -freedman/M -Freedman/M -freedmen -freedom/MS -freehand/D -freehanded/Y -freeholder/M -freehold/ZSRM -freeing/S -freelance/SRDGZM -Freeland/M -freeloader/M -freeload/SRDGZ -Free/M -freeman/M -Freeman/M -freemasonry/M -Freemasonry/MS -Freemason/SM -freemen -Freemon/M -freeness/M -Freeport/M -freestanding -freestone/SM -freestyle/SM -freethinker/MS -freethinking/S -Freetown/M -freeway/MS -freewheeler/M -freewheeling/P -freewheel/SRDMGZ -freewill -free/YTDRSP -freezable -freezer/SM -freeze/UGSA -freezing/S -Freida/M -freighter/M -freight/ZGMDRS -Fremont/M -Frenchman/M -French/MDSG -Frenchmen -Frenchwoman/M -Frenchwomen -frenetically -frenetic/S -frenzied/Y -frenzy/MDSG -freon/S -Freon/SM -freq -frequency/ISM -frequented/U -frequenter/MS -frequentest -frequenting -frequent/IY -frequentness/M -frequents -fresco/DMG -frescoes -fresh/AZSRNDG -freshener/M -freshen/SZGDR -fresher/MA -freshest -freshet/SM -freshly -freshman/M -freshmen -freshness/MS -freshwater/SM -Fresnel/M -Fresno/M -fretboard -fretfulness/MS -fretful/PY -fret/S -fretsaw/S -fretted -fretting -fretwork/MS -Freudian/S -Freud/M -Freya/M -Frey/M -friableness/M -friable/P -friary/MS -friar/YMS -fricasseeing -fricassee/MSD -frication/M -fricative/MS -Frick/M -frictional/Y -frictionless/Y -friction/MS -Friday/SM -fridge/SM -fried/A -Frieda/M -Friedan/M -friedcake/SM -Friederike/M -Friedman/M -Friedrich/M -Friedrick/M -friendlessness/M -friendless/P -friendlies -friendlily -friendliness/USM -friendly/PUTR -friend/SGMYD -friendship/MS -frier's -fries/M -frieze/SDGM -frigate/SM -Frigga/M -frigged -frigging/S -frighten/DG -frightening/Y -frightfulness/MS -frightful/PY -fright/GXMDNS -Frigidaire/M -frigidity/MS -frigidness/SM -frigid/YP -frig/S -frill/MDGS -frilly/RST -Fri/M -fringe/IGSD -fringe's -frippery/SM -Frisbee/MS -Frisco/M -Frisian/SM -frisker/M -friskily -friskiness/SM -frisk/RDGS -frisky/RTP -frisson/M -Frito/M -fritterer/M -fritter/RDSG -Fritz/M -fritz/SM -frivolity/MS -frivolousness/SM -frivolous/PY -frizz/GYSD -frizzle/DSG -frizzly/RT -frizzy/RT -Fr/MD -Frobisher/M -frocking/M -frock's -frock/SUDGC -frogged -frogging -frogman/M -frogmarched -frogmen -frog/MS -fro/HS -Froissart/M -frolicked -frolicker/SM -frolicking -frolic/SM -frolicsome -from -Fromm/M -frond/SM -frontage/MS -frontal/SY -Frontenac/M -front/GSFRD -frontier/SM -frontiersman/M -frontiersmen -frontispiece/SM -frontrunner's -front's -frontward/S -frosh/M -Frostbelt/M -frostbite/MS -frostbit/G -frostbiting/M -frostbitten -frost/CDSG -frosteds -frosted/U -frostily -frostiness/SM -frosting/MS -Frost/M -frost's -frosty/PTR -froth/GMD -frothiness/SM -froths -frothy/TRP -froufrou/MS -frowardness/MS -froward/P -frowner/M -frowning/Y -frown/RDSG -frowzily -frowziness/SM -frowzy/RPT -frozenness/M -frozen/YP -froze/UA -fructify/GSD -fructose/MS -Fruehauf/M -frugality/SM -frugal/Y -fruitcake/SM -fruiterer/M -fruiter/RM -fruitfuller -fruitfullest -fruitfulness/MS -fruitful/UYP -fruit/GMRDS -fruitiness/MS -fruition/SM -fruitlessness/MS -fruitless/YP -fruity/RPT -frumpish -frump/MS -frumpy/TR -Frunze/M -frustrater/M -frustrate/RSDXNG -frustrating/Y -frustration/M -frustum/SM -Frye/M -fryer/MS -Fry/M -fry/NGDS -F's -f's/KA -FSLIC -ft/C -FTC -FTP -fuchsia/MS -Fuchs/M -fucker/M! -fuck/GZJRDMS! -FUD -fuddle/GSD -fudge/GMSD -fuel/ASDG -fueler/SM -fuel's -Fuentes/M -fugal -Fugger/M -fugitiveness/M -fugitive/SYMP -fugue/GMSD -fuhrer/S -Fuji/M -Fujitsu/M -Fujiyama -Fukuoka/M -Fulani/M -Fulbright/M -fulcrum/SM -fulfilled/U -fulfiller/M -fulfill/GLSRD -fulfillment/MS -fullback/SMG -fuller/DMG -Fuller/M -Fullerton/M -fullish -fullness/MS -full/RDPSGZT -fullstops -fullword/SM -fully -fulminate/XSDGN -fulmination/M -fulness's -fulsomeness/SM -fulsome/PY -Fulton/M -Fulvia/M -fumble/GZRSD -fumbler/M -fumbling/Y -fume/DSG -fumigant/MS -fumigate/NGSDX -fumigation/M -fumigator/SM -fuming/Y -fumy/TR -Funafuti -functionalism/M -functionalist/SM -functionality/S -functional/YS -functionary/MS -function/GSMD -functor/SM -fundamentalism/SM -fundamentalist/SM -fundamental/SY -fund/ASMRDZG -funded/U -fundholders -fundholding -funding/S -Fundy/M -funeral/MS -funerary -funereal/Y -funfair/M -fungal/S -fungible/M -fungicidal -fungicide/SM -fungi/M -fungoid/S -fungous -fungus/M -funicular/SM -funk/GSDM -funkiness/S -funky/RTP -fun/MS -funned -funnel/SGMD -funner -funnest -funnily/U -funniness/SM -funning -funny/RSPT -furbelow/MDSG -furbisher/M -furbish/GDRSA -furiousness/M -furious/RYP -furlong/MS -furlough/DGM -furloughs -furl/UDGS -furn -furnace/GMSD -furnished/U -furnisher/MS -furnish/GASD -furnishing/SM -furniture/SM -furore/MS -furor/MS -fur/PMS -furred -furrier/M -furriness/SM -furring/SM -furrow/DMGS -furry/RTZP -furtherance/MS -furtherer/M -furthermore -furthermost -further/TGDRS -furthest -furtiveness/SM -furtive/PY -fury/SM -furze/SM -fusebox/S -fusee/SM -fuse/FSDAGCI -fuselage/SM -fuse's/A -Fushun/M -fusibility/SM -fusible/I -fusiform -fusilier/MS -fusillade/SDMG -fusion/KMFSI -fussbudget/MS -fusser/M -fussily -fussiness/MS -fusspot/SM -fuss/SRDMG -fussy/PTR -fustian/MS -fustiness/MS -fusty/RPT -fut -futileness/M -futile/PY -futility/MS -futon/S -future/SM -futurism/SM -futuristic/S -futurist/S -futurity/MS -futurologist/S -futurology/MS -futz/GSD -fuze's -Fuzhou/M -Fuzzbuster/M -fuzzily -fuzziness/SM -fuzz/SDMG -fuzzy/PRT -fwd -FWD -fwy -FY -FYI -GA -gabardine/SM -gabbed -Gabbey/M -Gabbie/M -Gabbi/M -gabbiness/S -gabbing -gabble/SDG -Gabby/M -gabby/TRP -Gabe/M -gaberdine's -Gabey/M -gabfest/MS -Gabie/M -Gabi/M -gable/GMSRD -Gable/M -Gabonese -Gabon/M -Gaborone/M -Gabriela/M -Gabriele/M -Gabriella/M -Gabrielle/M -Gabriellia/M -Gabriell/M -Gabriello/M -Gabriel/M -Gabrila/M -gab/S -Gaby/M -Gacrux/M -gadabout/MS -gadded -gadder/MS -gadding -gadfly/MS -gadgetry/MS -gadget/SM -gadolinium/MS -gad/S -Gadsden/M -Gaea/M -Gaelan/M -Gaelic/M -Gael/SM -Gae/M -gaffe/MS -gaffer/M -gaff/SGZRDM -gaga -Gagarin/M -gag/DRSG -Gage/M -gager/M -gage/SM -gagged -gagging -gaggle/SDG -gagwriter/S -gaiety/MS -Gaile/M -Gail/M -gaily -gain/ADGS -gainer/SM -Gaines/M -Gainesville/M -gainfulness/M -gainful/YP -gaining/S -gainly/U -gainsaid -gainsayer/M -gainsay/RSZG -Gainsborough/M -gaiter/M -gait/GSZMRD -Gaithersburg/M -galactic -Galahad/MS -Galapagos/M -gal/AS -gala/SM -Galatea/M -Galatia/M -Galatians/M -Galaxy/M -galaxy/MS -Galbraith/M -Galbreath/M -gale/AS -Gale/M -galen -galena/MS -galenite/M -Galen/M -gale's -Galibi/M -Galilean/MS -Galilee/M -Galileo/M -Galina/M -Gallagher/M -gallanted -gallanting -gallantry/MS -gallants -gallant/UY -Gallard/M -gallbladder/MS -Gallegos/M -galleon/SM -galleria/S -gallery/MSDG -galley/MS -Gallic -Gallicism/SM -gallimaufry/MS -galling/Y -gallium/SM -gallivant/GDS -Gall/M -gallonage/M -gallon/SM -galloper/M -gallop/GSRDZ -Galloway/M -gallows/M -gall/SGMD -gallstone/MS -Gallup/M -Gal/MN -Galois/M -galoot/MS -galore/S -galosh/GMSD -gal's -Galsworthy/M -galumph/GD -galumphs -galvanic -Galvani/M -galvanism/MS -galvanization/SM -galvanize/SDG -Galvan/M -galvanometer/SM -galvanometric -Galven/M -Galveston/M -Galvin/M -Ga/M -Gamaliel/M -Gama/M -Gambia/M -Gambian/S -gambit/MS -gamble/GZRSD -Gamble/M -gambler/M -gambol/SGD -gamecock/SM -gamekeeper/MS -gameness/MS -game/PJDRSMYTZG -gamesmanship/SM -gamesmen -gamester/M -gamest/RZ -gamete/MS -gametic -gamine/SM -gaminess/MS -gaming/M -gamin/MS -gamma/MS -gammon/DMSG -Gamow/M -gamut/MS -gamy/TRP -gander/DMGS -Gandhian -Gandhi/M -gangbusters -ganger/M -Ganges/M -gang/GRDMS -gangland/SM -ganglia/M -gangling -ganglionic -ganglion/M -gangplank/SM -gangrene/SDMG -gangrenous -gangster/SM -Gangtok/M -gangway/MS -Gan/M -gannet/SM -Gannie/M -Gannon/M -Ganny/M -gantlet/GMDS -Gantry/M -gantry/MS -Ganymede/M -GAO -gaoler/M -gaol/MRDGZS -gaper/M -gape/S -gaping/Y -gapped -gapping -gap/SJMDRG -garage/GMSD -Garald/M -garbageman/M -garbage/SDMG -garbanzo/MS -garb/DMGS -garbler/M -garble/RSDG -Garbo/M -Garcia/M -garon/SM -gardener/M -Gardener/M -gardenia/SM -gardening/M -garden/ZGRDMS -Gardie/M -Gardiner/M -Gard/M -Gardner/M -Gardy/M -Garek/M -Gare/MH -Gareth/M -Garey/M -Garfield/M -garfish/MS -Garfunkel/M -Gargantua/M -gargantuan -gargle/SDG -gargoyle/DSM -Garibaldi/M -Garik/M -garishness/MS -garish/YP -Garland/M -garland/SMDG -garlicked -garlicking -garlicky -garlic/SM -garment/MDGS -Gar/MH -Garner/M -garner/SGD -Garnet/M -garnet/SM -Garnette/M -Garnett/M -garnish/DSLG -garnisheeing -garnishee/SDM -garnishment/MS -Garold/M -garote's -garotte's -Garrard/M -garred -Garrek/M -Garreth/M -Garret/M -garret/SM -Garrett/M -Garrick/M -Garrik/M -garring -Garrison/M -garrison/SGMD -garroter/M -garrote/SRDMZG -Garrot/M -garrotte's -Garrott/M -garrulity/SM -garrulousness/MS -garrulous/PY -Garry/M -gar/SLM -garter/SGDM -Garth/M -Garvey/M -Garvin/M -Garv/M -Garvy/M -Garwin/M -Garwood/M -Gary/M -Garza/M -gasbag/MS -Gascony/M -gaseousness/M -gaseous/YP -gases/C -gas/FC -gash/GTMSRD -gasification/M -gasifier/M -gasify/SRDGXZN -gasket/SM -gaslight/DMS -gasohol/S -gasoline/MS -gasometer/M -Gaspard/M -Gaspar/M -Gasparo/M -gasper/M -Gasper/M -gasp/GZSRD -gasping/Y -gas's -gassed/C -Gasser/M -gasser/MS -Gasset/M -gassiness/M -gassing/SM -gassy/PTR -Gaston/M -gastric -gastritides -gastritis/MS -gastroenteritides -gastroenteritis/M -gastrointestinal -gastronome/SM -gastronomic -gastronomical/Y -gastronomy/MS -gastropod/SM -gasworks/M -gateau/MS -gateaux -gatecrash/GZSRD -gatehouse/MS -gatekeeper/SM -gate/MGDS -gatepost/SM -Gates -gateway/MS -gathered/IA -gatherer/M -gathering/M -gather/JRDZGS -gathers/A -Gatlinburg/M -Gatling/M -Gatorade/M -gator/MS -Gatsby/M -Gatun/M -gaucheness/SM -gaucherie/SM -gauche/TYPR -gaucho/SM -gaudily -gaudiness/MS -gaudy/PRST -gaugeable -gauger/M -Gauguin/M -Gaulish/M -Gaulle/M -Gaul/MS -Gaultiero/M -gauntlet/GSDM -Gauntley/M -gauntness/MS -gaunt/PYRDSGT -gauss/C -gausses -Gaussian -Gauss/M -gauss's -Gautama/M -Gauthier/M -Gautier/M -gauze/SDGM -gauziness/MS -gauzy/TRP -Gavan/M -gave -gavel/GMDS -Gaven/M -Gavin/M -Gav/MN -gavotte/MSDG -Gavra/M -Gavrielle/M -Gawain/M -Gawen/M -gawkily -gawkiness/MS -gawk/SGRDM -gawky/RSPT -Gayel/M -Gayelord/M -Gaye/M -gayety's -Gayla/M -Gayleen/M -Gaylene/M -Gayler/M -Gayle/RM -Gaylord/M -Gaylor/M -Gay/M -gayness/SM -Gaynor/M -gay/RTPS -Gaza/M -gazebo/SM -gaze/DRSZG -gazelle/MS -gazer/M -gazetteer/SGDM -gazette/MGSD -Gaziantep/M -gazillion/S -gazpacho/MS -GB -G/B -Gdansk/M -Gd/M -GDP -Gearalt/M -Gearard/M -gearbox/SM -gear/DMJSG -gearing/M -gearshift/MS -gearstick -gearwheel/SM -Geary/M -gecko/MS -GED -geegaw's -geeing -geek/SM -geeky/RT -geese/M -geest/M -gee/TDS -geezer/MS -Gehenna/M -Gehrig/M -Geiger/M -Geigy/M -geisha/M -gelatinousness/M -gelatinous/PY -gelatin/SM -gelcap -gelding/M -geld/JSGD -gelid -gelignite/MS -gelled -gelling -gel/MBS -Gelya/M -Ge/M -GE/M -Gemini/SM -gemlike -Gemma/M -gemmed -gemming -gem/MS -gemological -gemologist/MS -gemology/MS -gemstone/SM -gen -Gena/M -Genaro/M -gendarme/MS -gender/DMGS -genderless -genealogical/Y -genealogist/SM -genealogy/MS -Gene/M -gene/MS -generalissimo/SM -generalist/MS -generality/MS -generalizable/SM -generalization/MS -generalized/U -generalize/GZBSRD -generalizer/M -general/MSPY -generalness/M -generalship/SM -genera/M -generate/CXAVNGSD -generational -generation/MCA -generative/AY -generators/A -generator/SM -generically -generic/PS -generosity/MS -generously/U -generousness/SM -generous/PY -Genesco/M -genesis/M -Genesis/M -genes/S -genetically -geneticist/MS -genetic/S -genetics/M -Genet/M -Geneva/M -Genevieve/M -Genevra/M -Genghis/M -geniality/FMS -genially/F -genialness/M -genial/PY -Genia/M -genies/K -genie/SM -genii/M -genitalia -genitals -genital/YF -genitive/SM -genitourinary -genius/SM -Gen/M -Genna/M -Gennie/M -Gennifer/M -Genni/M -Genny/M -Genoa/SM -genocidal -genocide/SM -Geno/M -genome/SM -genotype/MS -Genovera/M -genre/MS -gent/AMS -genteelness/MS -genteel/PRYT -gentian/SM -gentile/S -Gentile's -gentility/MS -gentlefolk/S -gentlemanliness/M -gentlemanly/U -gentleman/YM -gentlemen -gentleness/SM -gentle/PRSDGT -gentlewoman/M -gentlewomen/M -gently -gentrification/M -gentrify/NSDGX -Gentry/M -gentry/MS -genuflect/GDS -genuflection/MS -genuineness/SM -genuine/PY -genus -Genvieve/M -geocentric -geocentrically -geocentricism -geochemical/Y -geochemistry/MS -geochronology/M -geodesic/S -geode/SM -geodesy/MS -geodetic/S -Geoff/M -Geoffrey/M -Geoffry/M -geog -geographer/MS -geographic -geographical/Y -geography/MS -geologic -geological/Y -geologist/MS -geology/MS -geom -Geo/M -geomagnetic -geomagnetically -geomagnetism/SM -geometer/MS -geometrical/Y -geometrician/M -geometric/S -geometry/MS -geomorphological -geomorphology/M -geophysical/Y -geophysicist/MS -geophysics/M -geopolitical/Y -geopolitic/S -geopolitics/M -Georas/M -Geordie/M -Georgeanna/M -Georgeanne/M -Georgena/M -George/SM -Georgeta/M -Georgetown/M -Georgetta/M -Georgette/M -Georgia/M -Georgiana/M -Georgianna/M -Georgianne/M -Georgian/S -Georgie/M -Georgi/M -Georgina/M -Georgine/M -Georg/M -Georgy/M -geostationary -geosynchronous -geosyncline/SM -geothermal -geothermic -Geralda/M -Geraldine/M -Gerald/M -geranium/SM -Gerard/M -Gerardo/M -Gerber/M -gerbil/MS -Gerda/M -Gerek/M -Gerhardine/M -Gerhard/M -Gerhardt/M -Gerianna/M -Gerianne/M -geriatric/S -geriatrics/M -Gerick/M -Gerik/M -Geri/M -Geritol/M -Gerladina/M -Ger/M -Germaine/M -Germain/M -Germana/M -germane -Germania/M -Germanic/M -germanium/SM -germanized -German/SM -Germantown/M -Germany/M -Germayne/M -germen/M -germicidal -germicide/MS -germinal/Y -germinated/U -germinate/XVGNSD -germination/M -germinative/Y -germ/MNS -Gerome/M -Geronimo/M -gerontocracy/M -gerontological -gerontologist/SM -gerontology/SM -Gerrard/M -Gerrie/M -Gerrilee/M -Gerri/M -Gerry/M -gerrymander/SGD -Gershwin/MS -Gerta/M -Gertie/M -Gerti/M -Gert/M -Gertruda/M -Gertrude/M -Gertrudis/M -Gertrud/M -Gerty/M -gerundive/M -gerund/SVM -Gery/M -gestalt/M -gestapo/S -Gestapo/SM -gestate/SDGNX -gestational -gestation/M -gesticulate/XSDVGN -gesticulation/M -gesticulative/Y -gestural -gesture/SDMG -gesundheit -getaway/SM -Gethsemane/M -get/S -getter/SDM -getting -Getty/M -Gettysburg/M -getup/MS -gewgaw/MS -Gewrztraminer -geyser/GDMS -Ghanaian/MS -Ghana/M -Ghanian's -ghastliness/MS -ghastly/TPR -ghat/MS -Ghats/M -Ghent/M -Gherardo/M -gherkin/SM -ghetto/DGMS -ghettoize/SDG -Ghibelline/M -ghostlike -ghostliness/MS -ghostly/TRP -ghost/SMYDG -ghostwrite/RSGZ -ghostwritten -ghostwrote -ghoulishness/SM -ghoulish/PY -ghoul/SM -GHQ -GI -Giacinta/M -Giacobo/M -Giacometti/M -Giacomo/M -Giacopo/M -Giana/M -Gianina/M -Gian/M -Gianna/M -Gianni/M -Giannini/M -giantess/MS -giantkiller -giant/SM -Giauque/M -Giavani/M -gibber/DGS -gibberish/MS -gibbet/MDSG -Gibbie/M -Gibb/MS -Gibbon/M -gibbon/MS -gibbousness/M -gibbous/YP -Gibby/M -gibe/GDRS -giber/M -giblet/MS -Gib/M -Gibraltar/MS -Gibson/M -giddap -giddily -giddiness/SM -Giddings/M -giddy/GPRSDT -Gide/M -Gideon/MS -Gielgud/M -Gienah/M -Giffard/M -Giffer/M -Giffie/M -Gifford/M -Giff/RM -Giffy/M -giftedness/M -gifted/PY -gift/SGMD -gigabyte/S -gigacycle/MS -gigahertz/M -gigantically -giganticness/M -gigantic/P -gigavolt -gigawatt/M -gigged -gigging -giggler/M -giggle/RSDGZ -giggling/Y -giggly/TR -Gigi/M -gig/MS -GIGO -gigolo/MS -gila -Gila/M -Gilberta/M -Gilberte/M -Gilbertina/M -Gilbertine/M -gilbert/M -Gilbert/M -Gilberto/M -Gilbertson/M -Gilburt/M -Gilchrist/M -Gilda/M -gilder/M -gilding/M -gild/JSGZRD -Gilead/M -Gilemette/M -Giles -Gilgamesh/M -Gilkson/M -Gillan/M -Gilles -Gillespie/M -Gillette/M -Gilliam/M -Gillian/M -Gillie/M -Gilligan/M -Gilli/M -Gill/M -gill/SGMRD -Gilly/M -Gilmore/M -Gil/MY -gilt/S -gimbaled -gimbals -Gimbel/M -gimcrackery/SM -gimcrack/S -gimlet/MDSG -gimme/S -gimmick/GDMS -gimmickry/MS -gimmicky -gimp/GSMD -gimpy/RT -Gina/M -Ginelle/M -Ginevra/M -gingerbread/SM -gingerliness/M -gingerly/P -Ginger/M -ginger/SGDYM -gingersnap/SM -gingery -gingham/SM -gingivitis/SM -Gingrich/M -ginkgoes -ginkgo/M -ginmill -gin/MS -ginned -Ginnie/M -Ginnifer/M -Ginni/M -ginning -Ginny/M -Gino/M -Ginsberg/M -Ginsburg/M -ginseng/SM -Gioconda/M -Giordano/M -Giorgia/M -Giorgi/M -Giorgio/M -Giorgione/M -Giotto/M -Giovanna/M -Giovanni/M -Gipsy's -giraffe/MS -Giralda/M -Giraldo/M -Giraud/M -Giraudoux/M -girded/U -girder/M -girdle/GMRSD -girdler/M -gird/RDSGZ -girlfriend/MS -girlhood/SM -girlie/M -girlishness/SM -girlish/YP -girl/MS -giro/M -girt/GDS -girth/MDG -girths -Gisela/M -Giselbert/M -Gisele/M -Gisella/M -Giselle/M -Gish/M -gist/MS -git/M -Giuditta/M -Giulia/M -Giuliano/M -Giulietta/M -Giulio/M -Giuseppe/M -Giustina/M -Giustino/M -Giusto/M -giveaway/SM -giveback/S -give/HZGRS -given/SP -giver/M -giving/Y -Giza/M -Gizela/M -gizmo's -gizzard/SM -Gk/M -glac/DGS -glacial/Y -glaciate/XNGDS -glaciation/M -glacier/SM -glaciological -glaciologist/M -glaciology/M -gladded -gladden/GDS -gladder -gladdest -gladding -gladdy -glade/SM -gladiatorial -gladiator/SM -Gladi/M -gladiola/MS -gladioli -gladiolus/M -gladly/RT -Glad/M -gladness/MS -gladsome/RT -Gladstone/MS -Gladys -glad/YSP -glamor/DMGS -glamorization/MS -glamorizer/M -glamorize/SRDZG -glamorousness/M -glamorous/PY -glance/GJSD -glancing/Y -glanders/M -glandes -glandular/Y -gland/ZSM -glans/M -glare/SDG -glaringness/M -glaring/YP -Glaser/M -Glasgow/M -glasnost/S -glassblower/S -glassblowing/MS -glassful/MS -glass/GSDM -glasshouse/SM -glassily -glassiness/SM -glassless -Glass/M -glassware/SM -glasswort/M -glassy/PRST -Glastonbury/M -Glaswegian/S -glaucoma/SM -glaucous -glazed/U -glazer/M -glaze/SRDGZJ -glazier/SM -glazing/M -gleam/MDGS -gleaner/M -gleaning/M -glean/RDGZJS -Gleason/M -Gleda/M -gleed/M -glee/DSM -gleefulness/MS -gleeful/YP -gleeing -Glendale/M -Glenda/M -Glenden/M -Glendon/M -Glenine/M -Glen/M -Glenna/M -Glennie/M -Glennis/M -Glenn/M -glen/SM -glibber -glibbest -glibness/MS -glib/YP -glide/JGZSRD -glider/M -glim/M -glimmer/DSJG -glimmering/M -glimpse/DRSZMG -glimpser/M -glint/DSG -glissandi -glissando/M -glisten/DSG -glister/DGS -glitch/MS -glitter/GDSJ -glittering/Y -glittery -glitz/GSD -glitzy/TR -gloaming/MS -gloater/M -gloating/Y -gloat/SRDG -globalism/S -globalist/S -global/SY -globe/SM -globetrotter/MS -glob/GDMS -globularity/M -globularness/M -globular/PY -globule/MS -globulin/MS -glockenspiel/SM -glommed -gloom/GSMD -gloomily -gloominess/MS -gloomy/RTP -glop/MS -glopped -glopping -gloppy/TR -Gloria/M -Gloriana/M -Gloriane/M -glorification/M -glorifier/M -glorify/XZRSDNG -Glori/M -glorious/IYP -gloriousness/IM -Glory/M -glory/SDMG -glossary/MS -gloss/GSDM -glossily -glossiness/SM -glossolalia/SM -glossy/RSPT -glottal -glottalization/M -glottis/MS -Gloucester/M -gloveless -glover/M -Glover/M -glove/SRDGMZ -glower/GD -glow/GZRDMS -glowing/Y -glowworm/SM -glucose/SM -glue/DRSMZG -glued/U -gluer/M -gluey -gluier -gluiest -glummer -glummest -glumness/MS -glum/SYP -gluon/M -glutamate/M -gluten/M -glutenous -glutinousness/M -glutinous/PY -glut/SMNX -glutted -glutting -glutton/MS -gluttonous/Y -gluttony/SM -glyceride/M -glycerinate/MD -glycerine's -glycerin/SM -glycerolized/C -glycerol/SM -glycine/M -glycogen/SM -glycol/MS -Glynda/M -Glynis/M -Glyn/M -Glynnis/M -Glynn/M -glyph/M -glyphs -gm -GM -GMT -gnarl/SMDG -gnash/SDG -gnat/MS -gnawer/M -gnaw/GRDSJ -gnawing/M -gneiss/SM -Gnni/M -gnomelike -GNOME/M -gnome/SM -gnomic -gnomish -gnomonic -gnosticism -Gnosticism/M -gnostic/K -Gnostic/M -GNP -gnu/MS -goad/MDSG -goalie/SM -goalkeeper/MS -goalkeeping/M -goalless -goal/MDSG -goalmouth/M -goalpost/S -goalscorer -goalscoring -goaltender/SM -Goa/M -goatee/SM -goatherd/MS -goat/MS -goatskin/SM -gobbed -gobbet/MS -gobbing -gobbledegook's -gobbledygook/S -gobbler/M -gobble/SRDGZ -Gobi/M -goblet/MS -goblin/SM -gob/SM -Godard/M -Godart/M -godchild/M -godchildren -goddammit -goddamn/GS -Goddard/M -Goddart/M -goddaughter/SM -godded -goddess/MS -godding -Gdel/M -godfather/GSDM -godforsaken -Godfree/M -Godfrey/M -Godfry/M -godhead/S -godhood/SM -Godiva/M -godlessness/MS -godless/P -godlikeness/M -godlike/P -godliness/UMS -godly/UTPR -God/M -godmother/MS -Godot/M -godparent/SM -godsend/MS -god/SMY -godson/MS -Godspeed/S -Godthaab/M -Godunov/M -Godwin/M -Godzilla/M -Goebbels/M -Goering/M -goer/MG -goes -Goethals/M -Goethe/M -gofer/SM -Goff/M -goggler/M -goggle/SRDGZ -Gogh/M -Gog/M -Gogol/M -Goiania/M -going/M -goiter/SM -Golan/M -Golconda/M -Golda/M -Goldarina/M -Goldberg/M -goldbricker/M -goldbrick/GZRDMS -Golden/M -goldenness/M -goldenrod/SM -goldenseal/M -golden/TRYP -goldfinch/MS -goldfish/SM -Goldia/M -Goldie/M -Goldilocks/M -Goldi/M -Goldina/M -Golding/M -Goldman/M -goldmine/S -gold/MRNGTS -goldsmith/M -Goldsmith/M -goldsmiths -Goldstein/M -Goldwater/M -Goldwyn/M -Goldy/M -Goleta/M -golfer/M -golf/RDMGZS -Golgotha/M -Goliath/M -Goliaths -golly/S -Gomez/M -Gomorrah/M -Gompers/M -go/MRHZGJ -gonadal -gonad/SM -gondola/SM -gondolier/MS -Gondwanaland/M -goner/M -gone/RZN -gong/SGDM -gonion/M -gonna -gonorrheal -gonorrhea/MS -Gonzales/M -Gonzalez/M -Gonzalo/M -Goober/M -goober/MS -goodbye/MS -goodhearted -goodie's -goodish -goodly/TR -Good/M -Goodman/M -goodness/MS -goodnight -Goodrich/M -good/SYP -goodwill/MS -Goodwin/M -Goodyear/M -goody/SM -gooey -goofiness/MS -goof/SDMG -goofy/RPT -Google/M -gooier -gooiest -gook/SM -goo/MS -goon/SM -goop/SM -gooseberry/MS -goosebumps -goose/M -goos/SDG -GOP -Gopher -gopher/SM -Goran/M -Goraud/M -Gorbachev -Gordan/M -Gorden/M -Gordian/M -Gordie/M -Gordimer/M -Gordon/M -Gordy/M -gore/DSMG -Gore/M -Goren/M -Gorey/M -Gorgas -gorged/E -gorge/GMSRD -gorgeousness/SM -gorgeous/YP -gorger/EM -gorges/E -gorging/E -Gorgon/M -gorgon/S -Gorgonzola/M -Gorham/M -gorilla/MS -gorily -goriness/MS -goring/M -Gorky/M -gormandizer/M -gormandize/SRDGZ -gormless -gorp/S -gorse/SM -gory/PRT -gos -goshawk/MS -gosh/S -gosling/M -gospeler/M -gospel/MRSZ -Gospel/SM -gossamer/SM -gossipy -gossip/ZGMRDS -gotcha/SM -Gteborg/M -Gotham/M -Gothart/M -Gothicism/M -Gothic/S -Goth/M -Goths -got/IU -goto -GOTO/MS -gotta -gotten/U -Gottfried/M -Goucher/M -Gouda/SM -gouge/GZSRD -gouger/M -goulash/SM -Gould/M -Gounod/M -gourde/SM -gourd/MS -gourmand/MS -gourmet/MS -gout/SM -gouty/RT -governable/U -governance/SM -governed/U -governess/SM -govern/LBGSD -governmental/Y -government/MS -Governor -governor/MS -governorship/SM -gov/S -govt -gown/GSDM -Goya/M -GP -GPA -GPO -GPSS -gr -grabbed -grabber/SM -grabbing/S -grab/S -Gracchus/M -grace/ESDMG -graceful/EYPU -gracefuller -gracefullest -gracefulness/ESM -Graceland/M -gracelessness/MS -graceless/PY -Grace/M -Gracia/M -Graciela/M -Gracie/M -graciousness/SM -gracious/UY -grackle/SM -gradate/DSNGX -gradation/MCS -grade/ACSDG -graded/U -Gradeigh/M -gradely -grader/MC -grade's -Gradey/M -gradient/RMS -grad/MRDGZJS -gradualism/MS -gradualist/MS -gradualness/MS -gradual/SYP -graduand/SM -graduate/MNGDSX -graduation/M -Grady/M -Graehme/M -Graeme/M -Graffias/M -graffiti -graffito/M -Graff/M -grafter/M -grafting/M -graft/MRDSGZ -Grafton/M -Grahame/M -Graham/M -graham/SM -Graig/M -grail/S -Grail/SM -grainer/M -grain/IGSD -graininess/MS -graining/M -grain's -grainy/RTP -gram/KSM -Gram/M -grammarian/SM -grammar/MS -grammaticality/M -grammaticalness/M -grammatical/UY -grammatic/K -gramme/SM -Grammy/S -gramophone/SM -Grampians -grampus/SM -Granada/M -granary/MS -grandam/SM -grandaunt/MS -grandchild/M -grandchildren -granddaddy/MS -granddad/SM -granddaughter/MS -grandee/SM -grandeur/MS -grandfather/MYDSG -grandiloquence/SM -grandiloquent/Y -grandiose/YP -grandiosity/MS -grandkid/SM -grandma/MS -grandmaster/MS -grandmother/MYS -grandnephew/MS -grandness/MS -grandniece/SM -grandpa/MS -grandparent/MS -grandson/MS -grandstander/M -grandstand/SRDMG -grand/TPSYR -granduncle/MS -Grange/MR -grange/MSR -Granger/M -granite/MS -granitic -Gran/M -Grannie/M -Granny/M -granny/MS -granola/S -grantee/MS -granter/M -Grantham/M -Granthem/M -Grantley/M -Grant/M -grantor's -grant/SGZMRD -grantsmanship/S -granularity/SM -granular/Y -granulate/SDXVGN -granulation/M -granule/SM -granulocytic -Granville/M -grapefruit/SM -grape/SDGM -grapeshot/M -grapevine/MS -grapheme/M -graph/GMD -graphical/Y -graphicness/M -graphic/PS -graphics/M -graphite/SM -graphologist/SM -graphology/MS -graphs -grapnel/SM -grapple/DRSG -grappler/M -grappling/M -grasper/M -graspingness/M -grasping/PY -grasp/SRDBG -grass/GZSDM -grasshopper/SM -grassland/MS -Grass/M -grassroots -grassy/RT -Grata/M -gratefuller -gratefullest -gratefulness/USM -grateful/YPU -grater/M -grates/I -grate/SRDJGZ -Gratia/M -Gratiana/M -graticule/M -gratification/M -gratified/U -gratifying/Y -gratify/NDSXG -grating/YM -gratis -gratitude/IMS -gratuitousness/MS -gratuitous/PY -gratuity/SM -gravamen/SM -gravedigger/SM -gravel/SGMYD -graven -graveness/MS -graver/M -graveside/S -Graves/M -grave/SRDPGMZTY -gravestone/SM -graveyard/MS -gravidness/M -gravid/PY -gravimeter/SM -gravimetric -gravitas -gravitate/XVGNSD -gravitational/Y -gravitation/M -graviton/SM -gravity/MS -gravy/SM -graybeard/MS -Grayce/M -grayish -Gray/M -grayness/S -gray/PYRDGTS -Grayson/M -graze/GZSRD -grazer/M -Grazia/M -grazing/M -grease/GMZSRD -greasepaint/MS -greaseproof -greaser/M -greasily -greasiness/SM -greasy/PRT -greatcoat/DMS -greaten/DG -greathearted -greatness/MS -great/SPTYRN -grebe/MS -Grecian/S -Greece/M -greed/C -greedily -greediness/SM -greeds -greed's -greedy/RTP -Greek/SM -Greeley/M -greenback/MS -greenbelt/S -Greenberg/M -Greenblatt/M -Greenbriar/M -Greene/M -greenery/MS -Greenfeld/M -greenfield -Greenfield/M -greenfly/M -greengage/SM -greengrocer/SM -greengrocery/M -greenhorn/SM -greenhouse/SM -greening/M -greenish/P -Greenland/M -Green/M -greenmail/GDS -greenness/MS -Greenpeace/M -greenroom/SM -Greensboro/M -Greensleeves/M -Greensville/M -greensward/SM -green/SYRDMPGT -Greentree/M -Greenville/M -Greenwich/M -greenwood/MS -Greer/M -greeter/M -greeting/M -greets/A -greet/SRDJGZ -gregariousness/MS -gregarious/PY -Gregg/M -Greggory/M -Greg/M -Gregoire/M -Gregoor/M -Gregorian -Gregorio/M -Gregorius/M -Gregor/M -Gregory/M -gremlin/SM -Grenada/M -grenade/MS -Grenadian/S -grenadier/SM -Grenadines -grenadine/SM -Grendel/M -Grenier/M -Grenoble/M -Grenville/M -Gresham/M -Gretal/M -Greta/M -Gretchen/M -Gretel/M -Grete/M -Grethel/M -Gretna/M -Gretta/M -Gretzky/M -grew/A -greybeard/M -greyhound/MS -Grey/M -greyness/M -gridded -griddlecake/SM -griddle/DSGM -gridiron/GSMD -gridlock/DSG -grids/A -grid/SGM -grief/MS -Grieg/M -Grier/M -grievance/SM -griever/M -grieve/SRDGZ -grieving/Y -grievousness/SM -grievous/PY -Griffie/M -Griffin/M -griffin/SM -Griffith/M -Griff/M -griffon's -Griffy/M -griller/M -grille/SM -grill/RDGS -grillwork/M -grimace/DRSGM -grimacer/M -Grimaldi/M -grime/MS -Grimes -griminess/MS -grimmer -grimmest -Grimm/M -grimness/MS -grim/PGYD -grimy/TPR -Grinch/M -grind/ASG -grinder/MS -grinding/SY -grindstone/SM -gringo/SM -grinned -grinner/M -grinning/Y -grin/S -griper/M -gripe/S -grippe/GMZSRD -gripper/M -gripping/Y -grip/SGZMRD -Griselda/M -grisliness/SM -grisly/RPT -Gris/M -Grissel/M -gristle/SM -gristliness/M -gristly/TRP -gristmill/MS -grist/MYS -Griswold/M -grit/MS -gritted -gritter/MS -grittiness/SM -gritting -gritty/PRT -Griz/M -grizzle/DSG -grizzling/M -grizzly/TRS -Gr/M -groaner/M -groan/GZSRDM -groat/SM -grocer/MS -grocery/MS -groggily -grogginess/SM -groggy/RPT -grog/MS -groin/MGSD -grokked -grokking -grok/S -grommet/GMDS -Gromyko/M -groofs -groomer/M -groom/GZSMRD -groomsman/M -groomsmen -Groot/M -groover/M -groove/SRDGM -groovy/TR -groper/M -grope/SRDJGZ -Gropius/M -grosbeak/SM -grosgrain/MS -Gross -Grosset/M -gross/GTYSRDP -Grossman/M -grossness/MS -Grosvenor/M -Grosz/M -grotesqueness/MS -grotesque/PSY -Grotius/M -Groton/M -grottoes -grotto/M -grouch/GDS -grouchily -grouchiness/MS -grouchy/RPT -groundbreaking/S -grounded/U -grounder/M -groundhog/SM -ground/JGZMDRS -groundlessness/M -groundless/YP -groundnut/MS -groundsheet/M -groundskeepers -groundsman/M -groundswell/S -groundwater/S -groundwork/SM -grouped/A -grouper/M -groupie/MS -grouping/M -groups/A -group/ZJSMRDG -grouse/GMZSRD -grouser/M -grouter/M -grout/GSMRD -groveler/M -grovelike -groveling/Y -grovel/SDRGZ -Grover/M -Grove/RM -grove/SRMZ -grower/M -grow/GZYRHS -growing/I -growingly -growler/M -growling/Y -growl/RDGZS -growly/RP -grown/IA -grownup/MS -grows/A -growth/IMA -growths/IA -grubbed -grubber/SM -grubbily -grubbiness/SM -grubbing -grubby/RTP -grub/MS -grubstake/MSDG -grudge/GMSRDJ -grudger/M -grudging/Y -grueling/Y -gruel/MDGJS -gruesomeness/SM -gruesome/RYTP -gruffness/MS -gruff/PSGTYRD -grumble/GZJDSR -grumbler/M -grumbling/Y -Grumman/M -grumpily -grumpiness/MS -grump/MDGS -grumpy/TPR -Grundy/M -Grnewald/M -grunge/S -grungy/RT -grunion/SM -grunter/M -grunt/SGRD -Grusky/M -Grus/M -Gruyre -Gruyeres -gryphon's -g's -G's -gs/A -GSA -gt -GU -guacamole/MS -Guadalajara/M -Guadalcanal/M -Guadalquivir/M -Guadalupe/M -Guadeloupe/M -Guallatiri/M -Gualterio/M -Guamanian/SM -Guam/M -Guangzhou -guanine/MS -guano/MS -Guantanamo/M -Guarani/M -guarani/SM -guaranteeing -guarantee/RSDZM -guarantor/SM -guaranty/MSDG -guardedness/UM -guarded/UYP -guarder/M -guardhouse/SM -Guardia/M -guardianship/MS -guardian/SM -guardrail/SM -guard/RDSGZ -guardroom/SM -guardsman/M -guardsmen -Guarnieri/M -Guatemala/M -Guatemalan/S -guava/SM -Guayaquil/M -gubernatorial -Gucci/M -gudgeon/M -Guelph/M -Guendolen/M -Guenevere/M -Guenna/M -Guenther/M -guernsey/S -Guernsey/SM -Guerra/M -Guerrero/M -guerrilla/MS -guessable/U -guess/BGZRSD -guessed/U -guesser/M -guesstimate/DSMG -guesswork/MS -guest/SGMD -Guevara/M -guffaw/GSDM -guff/SM -Guggenheim/M -Guglielma/M -Guglielmo/M -Guhleman/M -GUI -Guiana/M -guidance/MS -guidebook/SM -guided/U -guide/GZSRD -guideline/SM -guidepost/MS -guider/M -Guido/M -Guilbert/M -guilder/M -guildhall/SM -guild/SZMR -guileful -guilelessness/MS -guileless/YP -guile/SDGM -Guillaume/M -Guillema/M -Guillemette/M -guillemot/MS -Guillermo/M -guillotine/SDGM -guiltily -guiltiness/MS -guiltlessness/M -guiltless/YP -guilt/SM -guilty/PTR -Gui/M -Guinea/M -Guinean/S -guinea/SM -Guinevere/M -Guinna/M -Guinness/M -guise's -guise/SDEG -guitarist/SM -guitar/SM -Guiyang -Guizot/M -Gujarati/M -Gujarat/M -Gujranwala/M -gulag/S -gulch/MS -gulden/MS -gulf/DMGS -Gullah/M -gullet/MS -gulley's -gullibility/MS -gullible -Gulliver/M -gull/MDSG -gully/SDMG -gulp/RDGZS -gumboil/MS -gumbo/MS -gumboots -gumdrop/SM -gummed -gumminess/M -gumming/C -gum/MS -gummy/RTP -gumption/SM -gumshoeing -gumshoe/SDM -gumtree/MS -Gunar/M -gunboat/MS -Gunderson/M -gunfighter/M -gunfight/SRMGZ -gunfire/SM -gunflint/M -gunfought -Gunilla/M -gunk/SM -gunky/RT -Gun/M -gunman/M -gunmen -gunmetal/MS -gun/MS -Gunnar/M -gunned -gunnel's -Gunner/M -gunner/SM -gunnery/MS -gunning/M -gunnysack/SM -gunny/SM -gunpoint/MS -gunpowder/SM -gunrunner/MS -gunrunning/MS -gunship/S -gunshot/SM -gunslinger/M -gunsling/GZR -gunsmith/M -gunsmiths -Guntar/M -Gunter/M -Gunther/M -gunwale/MS -Guofeng/M -guppy/SM -Gupta/M -gurgle/SDG -Gurkha/M -gurney/S -guru/MS -Gusella/M -gusher/M -gush/SRDGZ -gushy/TR -Gus/M -Guss -gusset/MDSG -Gussie/M -Gussi/M -gussy/GSD -Gussy/M -Gustaf/M -Gustafson/M -Gusta/M -gustatory -Gustave/M -Gustav/M -Gustavo/M -Gustavus/M -gusted/E -Gustie/M -gustily -Gusti/M -gustiness/M -gusting/E -gust/MDGS -gustoes -gusto/M -gusts/E -Gusty/M -gusty/RPT -Gutenberg/M -Guthrey/M -Guthrie/M -Guthry/M -Gutierrez/M -gutlessness/S -gutless/P -gutser/M -gutsiness/M -gut/SM -guts/R -gutsy/PTR -gutted -gutter/GSDM -guttering/M -guttersnipe/M -gutting -gutturalness/M -guttural/SPY -gutty/RSMT -Guyana/M -Guyanese -Guy/M -guy/MDRZGS -Guzman/M -guzzle/GZRSD -guzzler/M -g/VBX -Gwalior/M -Gwendolen/M -Gwendoline/M -Gwendolin/M -Gwendolyn/M -Gweneth/M -Gwenette/M -Gwen/M -Gwenneth/M -Gwennie/M -Gwenni/M -Gwenny/M -Gwenora/M -Gwenore/M -Gwyneth/M -Gwyn/M -Gwynne/M -gymkhana/SM -gym/MS -gymnasia's -gymnasium/SM -gymnastically -gymnastic/S -gymnastics/M -gymnast/SM -gymnosperm/SM -gynecologic -gynecological/MS -gynecologist/SM -gynecology/MS -gypped -gypper/S -gypping -gyp/S -gypsite -gypster/S -gypsum/MS -gypsy/SDMG -Gypsy/SM -gyrate/XNGSD -gyration/M -gyrator/MS -gyrfalcon/SM -gyrocompass/M -gyro/MS -gyroscope/SM -gyroscopic -gyve/GDS -H -Haag/M -Haas/M -Habakkuk/M -habeas -haberdasher/SM -haberdashery/SM -Haber/M -Haberman/M -Habib/M -habiliment/SM -habitability/MS -habitableness/M -habitable/P -habitant/ISM -habitation/MI -habitations -habitat/MS -habit/IBDGS -habit's -habitualness/SM -habitual/SYP -habituate/SDNGX -habituation/M -habitu/MS -hacienda/MS -hacker/M -Hackett/M -hack/GZSDRBJ -hackler/M -hackle/RSDMG -hackney/SMDG -hacksaw/SDMG -hackwork/S -Hadamard/M -Hadar/M -Haddad/M -haddock/MS -hades -Hades -had/GD -hadji's -hadj's -Hadlee/M -Hadleigh/M -Hadley/M -Had/M -hadn't -Hadria/M -Hadrian/M -hadron/MS -hadst -haemoglobin's -haemophilia's -haemorrhage's -Hafiz/M -hafnium/MS -haft/GSMD -Hagan/M -Hagar/M -Hagen/M -Hager/M -Haggai/M -haggardness/MS -haggard/SYP -hagged -hagging -haggish -haggis/SM -haggler/M -haggle/RSDZG -Hagiographa/M -hagiographer/SM -hagiography/MS -hag/SMN -Hagstrom/M -Hague/M -ha/H -hahnium/S -Hahn/M -Haifa/M -haiku/M -Hailee/M -hailer/M -Hailey/M -hail/SGMDR -hailstone/SM -hailstorm/SM -Haily/M -Haiphong/M -hairball/SM -hairbreadth/M -hairbreadths -hairbrush/SM -haircare -haircloth/M -haircloths -haircut/MS -haircutting -hairdo/SM -hairdresser/SM -hairdressing/SM -hairdryer/S -hairiness/MS -hairlessness/M -hairless/P -hairlike -hairline/SM -hairnet/MS -hairpiece/MS -hairpin/MS -hairsbreadth -hairsbreadths -hair/SDM -hairsplitter/SM -hairsplitting/MS -hairspray -hairspring/SM -hairstyle/SMG -hairstylist/S -hairy/PTR -Haitian/S -Haiti/M -hajjes -hajji/MS -hajj/M -Hakeem/M -hake/MS -Hakim/M -Hakka/M -Hakluyt/M -halalled -halalling -halal/S -halberd/SM -halcyon/S -Haldane/M -Haleakala/M -Haleigh/M -hale/ISRDG -Hale/M -haler/IM -halest -Halette/M -Haley/M -halfback/SM -halfbreed -halfheartedness/MS -halfhearted/PY -halfpence/S -halfpenny/MS -halfpennyworth -half/PM -halftime/S -halftone/MS -halfway -halfword/MS -halibut/SM -halide/SM -Halie/M -Halifax/M -Hali/M -Halimeda/M -halite/MS -halitoses -halitosis/M -hallelujah -hallelujahs -Halley/M -halliard's -Hallie/M -Halli/M -Hallinan/M -Hall/M -Hallmark/M -hallmark/SGMD -hallo/GDS -halloo's -Halloween/MS -hallowing -hallows -hallow/UD -hall/SMR -Hallsy/M -hallucinate/VNGSDX -hallucination/M -hallucinatory -hallucinogenic/S -hallucinogen/SM -hallway/SM -Hally/M -halocarbon -halogenated -halogen/SM -halon -halo/SDMG -Halpern/M -Halsey/M -Hal/SMY -Halsy/M -halter/GDM -halt/GZJSMDR -halting/Y -halve/GZDS -halves/M -halyard/MS -Ha/M -Hamal/M -Haman/M -hamburger/M -Hamburg/MS -hamburg/SZRM -Hamel/M -Hamey/M -Hamhung/M -Hamid/M -Hamilcar/M -Hamil/M -Hamiltonian/MS -Hamilton/M -Hamish/M -Hamitic/M -Hamlen/M -Hamlet/M -hamlet/MS -Hamlin/M -Ham/M -Hammad/M -Hammarskjold/M -hammed -hammerer/M -hammerhead/SM -hammering/M -hammerless -hammerlock/MS -Hammerstein/M -hammertoe/SM -hammer/ZGSRDM -Hammett/M -hamming -hammock/MS -Hammond/M -Hammurabi/M -hammy/RT -Hamnet/M -hampered/U -hamper/GSD -Hampshire/M -Hampton/M -ham/SM -hamster/MS -hamstring/MGS -hamstrung -Hamsun/M -Hana/M -Hanan/M -Hancock/M -handbagged -handbagging -handbag/MS -handball/SM -handbarrow/MS -handbasin -handbill/MS -handbook/SM -handbrake/M -handcar/SM -handcart/MS -handclasp/MS -handcraft/GMDS -handcuff/GSD -handcuffs/M -handedness/M -handed/PY -Handel/M -hander/S -handful/SM -handgun/SM -handhold/M -handicapped -handicapper/SM -handicapping -handicap/SM -handicraftsman/M -handicraftsmen -handicraft/SMR -handily/U -handiness/SM -handiwork/MS -handkerchief/MS -handleable -handlebar/SM -handle/MZGRSD -handler/M -handless -handling/M -handmade -handmaiden/M -handmaid/NMSX -handout/SM -handover -handpick/GDS -handrail/SM -hand's -handsaw/SM -handset/SM -handshake/GMSR -handshaker/M -handshaking/M -handsomely/U -handsomeness/MS -handsome/RPTY -handspike/SM -handspring/SM -handstand/MS -hand/UDSG -handwork/SM -handwoven -handwrite/GSJ -handwriting/M -handwritten -Handy/M -handyman/M -handymen -handy/URT -Haney/M -hangar/SGDM -hangdog/S -hanged/A -hanger/M -hang/GDRZBSJ -hanging/M -hangman/M -hangmen -hangnail/MS -hangout/MS -hangover/SM -hangs/A -Hangul/M -hangup/S -Hangzhou -Hankel/M -hankerer/M -hanker/GRDJ -hankering/M -hank/GZDRMS -hankie/SM -Hank/M -hanky's -Hannah/M -Hanna/M -Hannibal/M -Hannie/M -Hanni/MS -Hanny/M -Hanoi/M -Hanoverian -Hanover/M -Hansel/M -Hansen/M -Hansiain/M -Han/SM -Hans/N -hansom/MS -Hanson/M -Hanuka/S -Hanukkah/M -Hanukkahs -Hapgood/M -haphazardness/SM -haphazard/SPY -haplessness/MS -hapless/YP -haploid/S -happed -happening/M -happen/JDGS -happenstance/SM -happily/U -happiness/UMS -happing -Happy/M -happy/UTPR -Hapsburg/M -hap/SMY -Harald/M -harangue/GDRS -haranguer/M -Harare -harasser/M -harass/LSRDZG -harassment/SM -Harbert/M -harbinger/DMSG -Harbin/M -harborer/M -harbor/ZGRDMS -Harcourt/M -hardback/SM -hardball/SM -hardboard/SM -hardboiled -hardbound -hardcore/MS -hardcover/SM -hardened/U -hardener/M -hardening/M -harden/ZGRD -hardhat/S -hardheadedness/SM -hardheaded/YP -hardheartedness/SM -hardhearted/YP -hardihood/MS -hardily -hardiness/SM -Harding/M -Hardin/M -hardliner/S -hardness/MS -hardscrabble -hardshell -hardship/MS -hardstand/S -hardtack/MS -hardtop/MS -hardware/SM -hardwire/DSG -hardwood/MS -hardworking -Hardy/M -hard/YNRPJGXTS -hardy/PTRS -harebell/MS -harebrained -harelip/MS -harelipped -hare/MGDS -harem/SM -Hargreaves/M -hark/GDS -Harland/M -Harlan/M -Harlem/M -Harlene/M -Harlen/M -Harlequin -harlequin/MS -Harley/M -Harlie/M -Harli/M -Harlin/M -harlotry/MS -harlot/SM -Harlow/M -Harman/M -harmed/U -harmer/M -harmfulness/MS -harmful/PY -harmlessness/SM -harmless/YP -harm/MDRGS -Harmonia/M -harmonically -harmonica/MS -harmonic/S -harmonics/M -Harmonie/M -harmonious/IPY -harmoniousness/MS -harmoniousness's/I -harmonium/MS -harmonization/A -harmonizations -harmonization's -harmonized/U -harmonizer/M -harmonizes/UA -harmonize/ZGSRD -Harmon/M -harmony/EMS -Harmony/M -harness/DRSMG -harnessed/U -harnesser/M -harnesses/U -Harold/M -Haroun/M -harper/M -Harper/M -harping/M -harpist/SM -harp/MDRJGZS -Harp/MR -harpooner/M -harpoon/SZGDRM -harpsichordist/MS -harpsichord/SM -harpy/SM -Harpy/SM -Harrell/M -harridan/SM -Harrie/M -harrier/M -Harriet/M -Harrietta/M -Harriette/M -Harriett/M -Harrington/M -Harriot/M -Harriott/M -Harrisburg/M -Harri/SM -Harrisonburg/M -Harrison/M -harrower/M -harrow/RDMGS -harrumph/SDG -Harry/M -harry/RSDGZ -harshen/GD -harshness/SM -harsh/TRNYP -Harte/M -Hartford/M -Hartley/M -Hartline/M -Hart/M -Hartman/M -hart/MS -Hartwell/M -Harvard/M -harvested/U -harvester/M -harvestman/M -harvest/MDRZGS -Harvey/MS -Harv/M -Harwell/M -Harwilll/M -has -Hasbro/M -hash/AGSD -Hasheem/M -hasher/M -Hashim/M -hashing/M -hashish/MS -hash's -Hasidim -Haskell/M -Haskel/M -Haskins/M -Haslett/M -hasn't -hasp/GMDS -hassle/MGRSD -hassock/MS -haste/MS -hastener/M -hasten/GRD -hast/GXJDN -Hastie/M -hastily -hastiness/MS -Hastings/M -Hasty/M -hasty/RPT -hatchback/SM -hatcheck/S -hatched/U -hatcher/M -hatchery/MS -hatchet/MDSG -hatching/M -hatch/RSDJG -Hatchure/M -hatchway/MS -hatefulness/MS -hateful/YP -hater/M -hate/S -Hatfield/M -Hathaway/M -hatless -hat/MDRSZG -hatred/SM -hatstands -hatted -Hatteras/M -hatter/SM -Hattie/M -Hatti/M -hatting -Hatty/M -hauberk/SM -Haugen/M -haughtily -haughtiness/SM -haughty/TPR -haulage/MS -hauler/M -haul/SDRGZ -haunch/GMSD -haunter/M -haunting/Y -haunt/JRDSZG -Hauptmann/M -Hausa/M -Hausdorff/M -Hauser/M -hauteur/MS -Havana/SM -Havarti -Havel/M -haven/DMGS -Haven/M -haven't -haver/G -haversack/SM -have/ZGSR -havocked -havocking -havoc/SM -Haw -Hawaiian/S -Hawaii/M -hawker/M -hawk/GZSDRM -Hawking -hawking/M -Hawkins/M -hawkishness/S -hawkish/P -Hawley/M -haw/MDSG -hawser/M -haws/RZ -Hawthorne/M -hawthorn/MS -haycock/SM -Hayden/M -Haydn/M -Haydon/M -Hayes -hayfield/MS -hay/GSMDR -Hayley/M -hayloft/MS -haymow/MS -Haynes -hayrick/MS -hayride/MS -hayseed/MS -Hay/SM -haystack/SM -haywain -Hayward/M -haywire/MS -Haywood/M -Hayyim/M -hazard/MDGS -hazardousness/M -hazardous/PY -haze/DSRJMZG -Hazel/M -hazel/MS -hazelnut/SM -Haze/M -hazer/M -hazily -haziness/MS -hazing/M -Hazlett/M -Hazlitt/M -hazy/PTR -HBO/M -hdqrs -HDTV -headache/MS -headband/SM -headboard/MS -headcount -headdress/MS -header/M -headfirst -headgear/SM -headhunter/M -headhunting/M -headhunt/ZGSRDMJ -headily -headiness/S -heading/M -headlamp/S -headland/MS -headlessness/M -headless/P -headlight/MS -headline/DRSZMG -headliner/M -headlock/MS -headlong -Head/M -headman/M -headmaster/MS -headmastership/M -headmen -headmistress/MS -headphone/SM -headpiece/SM -headpin/MS -headquarter/GDS -headrest/MS -headroom/SM -headscarf/M -headset/SM -headship/SM -headshrinker/MS -head/SJGZMDR -headsman/M -headsmen -headstall/SM -headstand/MS -headstock/M -headstone/MS -headstrong -headwaiter/SM -headwall/S -headwater/S -headway/MS -headwind/SM -headword/MS -heady/PTR -heal/DRHSGZ -healed/U -healer/M -Heall/M -healthfully -healthfulness/SM -healthful/U -healthily/U -healthiness/MSU -health/M -healths -healthy/URPT -heap/SMDG -heard/UA -hearer/M -hearing/AM -hearken/SGD -hearsay/SM -hearse/M -hears/SDAG -Hearst/M -heartache/SM -heartbeat/MS -heartbreak/GMS -heartbreaking/Y -heartbroke -heartbroken -heartburning/M -heartburn/SGM -hearted/Y -hearten/EGDS -heartening/EY -heartfelt -hearth/M -hearthrug -hearths -hearthstone/MS -heartily -heartiness/SM -heartland/SM -heartlessness/SM -heartless/YP -heartrending/Y -heartsickness/MS -heartsick/P -heart/SMDNXG -heartstrings -heartthrob/MS -heartwarming -Heartwood/M -heartwood/SM -hearty/TRSP -hear/ZTSRHJG -heatedly -heated/UA -heater/M -heathendom/SM -heathenish/Y -heathenism/MS -heathen/M -heather/M -Heather/M -heathery -Heathkit/M -heathland -Heathman/M -Heath/MR -heath/MRNZX -heaths -heatproof -heats/A -heat/SMDRGZBJ -heatstroke/MS -heatwave -heave/DSRGZ -heavenliness/M -heavenly/PTR -heaven/SYM -heavenward/S -heaver/M -heaves/M -heavily -heaviness/MS -Heaviside/M -heavyhearted -heavyset -heavy/TPRS -heavyweight/SM -Hebe/M -hebephrenic -Hebert/M -Heb/M -Hebraic -Hebraism/MS -Hebrew/SM -Hebrides/M -Hecate/M -hecatomb/M -heckler/M -heckle/RSDZG -heck/S -hectare/MS -hectically -hectic/S -hectogram/MS -hectometer/SM -Hector/M -hector/SGD -Hecuba/M -he'd -Heda/M -Hedda/M -Heddie/M -Heddi/M -hedge/DSRGMZ -hedgehog/MS -hedgehopped -hedgehopping -hedgehop/S -hedger/M -hedgerow/SM -hedging/Y -Hedi/M -hedonism/SM -hedonistic -hedonist/MS -Hedvige/M -Hedvig/M -Hedwiga/M -Hedwig/M -Hedy/M -heeded/U -heedfulness/M -heedful/PY -heeding/U -heedlessness/SM -heedless/YP -heed/SMGD -heehaw/DGS -heeler/M -heeling/M -heelless -heel/SGZMDR -Heep/M -Hefner/M -heft/GSD -heftily -heftiness/SM -hefty/TRP -Hegelian -Hegel/M -hegemonic -hegemony/MS -Hegira/M -hegira/S -Heida/M -Heidegger/M -Heidelberg/M -Heidie/M -Heidi/M -heifer/MS -Heifetz/M -heighten/GD -height/SMNX -Heimlich/M -Heindrick/M -Heineken/M -Heine/M -Heinlein/M -heinousness/SM -heinous/PY -Heinrich/M -Heinrick/M -Heinrik/M -Heinze/M -Heinz/M -heiress/MS -heirloom/MS -heir/SDMG -Heisenberg/M -Heiser/M -heister/M -heist/GSMRD -Hejira's -Helaina/M -Helaine/M -held -Helena/M -Helene/M -Helenka/M -Helen/M -Helga/M -Helge/M -helical/Y -helices/M -helicon/M -Helicon/M -helicopter/GSMD -heliocentric -heliography/M -Heliopolis/M -Helios/M -heliosphere -heliotrope/SM -heliport/MS -helium/MS -helix/M -he'll -hellbender/M -hellbent -hellcat/SM -hellebore/SM -Hellene/SM -Hellenic -Hellenism/MS -Hellenistic -Hellenist/MS -Hellenization/M -Hellenize -heller/M -Heller/M -Hellespont/M -hellfire/M -hell/GSMDR -hellhole/SM -Helli/M -hellion/SM -hellishness/SM -hellish/PY -Hellman/M -hello/GMS -Hell's -helluva -helmed -helmet/GSMD -Helmholtz/M -helming -helms -helm's -helmsman/M -helmsmen -helm/U -Helmut/M -Hloise/M -helot/S -helper/M -helpfulness/MS -helpful/UY -help/GZSJDR -helping/M -helplessness/SM -helpless/YP -helpline/S -helpmate/SM -helpmeet's -Helsa/M -Helsinki/M -helve/GMDS -Helvetian/S -Helvetius/M -Helyn/M -He/M -hematite/MS -hematologic -hematological -hematologist/SM -hematology/MS -heme/MS -Hemingway/M -hemisphere/MSD -hemispheric -hemispherical -hemline/SM -hemlock/MS -hemmed -hemmer/SM -hemming -hem/MS -hemoglobin/MS -hemolytic -hemophiliac/SM -hemophilia/SM -hemorrhage/GMDS -hemorrhagic -hemorrhoid/MS -hemostat/SM -hemp/MNS -h/EMS -hemstitch/DSMG -henceforth -henceforward -hence/S -Hench/M -henchman/M -henchmen -Henderson/M -Hendrick/SM -Hendrickson/M -Hendrika/M -Hendrik/M -Hendrix/M -henge/M -Henka/M -Henley/M -hen/MS -henna/MDSG -Hennessey/M -henning -henpeck/GSD -Henrie/M -Henrieta/M -Henrietta/M -Henriette/M -Henrik/M -Henri/M -Henryetta/M -henry/M -Henry/M -Hensley/M -Henson/M -heparin/MS -hepatic/S -hepatitides -hepatitis/M -Hepburn/M -Hephaestus/M -Hephzibah/M -hepper -heppest -Hepplewhite -hep/S -heptagonal -heptagon/SM -heptane/M -heptathlon/S -her -Heracles/M -Heraclitus/M -heralded/U -heraldic -herald/MDSG -heraldry/MS -Hera/M -herbaceous -herbage/MS -herbalism -herbalist/MS -herbal/S -Herbart/M -Herbert/M -herbicidal -herbicide/MS -Herbie/M -herbivore/SM -herbivorous/Y -Herb/M -herb/MS -Herby/M -Herc/M -Herculaneum/M -herculean -Herculean -Hercule/MS -Herculie/M -herder/M -Herder/M -herd/MDRGZS -herdsman/M -herdsmen -hereabout/S -hereafter/S -hereby -hereditary -heredity/MS -Hereford/SM -herein -hereinafter -here/IS -hereof -hereon -here's -heres/M -heresy/SM -heretical -heretic/SM -hereto -heretofore -hereunder -hereunto -hereupon -herewith -Heriberto/M -heritable -heritage/MS -heritor/IM -Herkimer/M -Herman/M -Hermann/M -hermaphrodite/SM -hermaphroditic -Hermaphroditus/M -hermeneutic/S -hermeneutics/M -Hermes -hermetical/Y -hermetic/S -Hermia/M -Hermie/M -Hermina/M -Hermine/M -Herminia/M -Hermione/M -hermitage/SM -Hermite/M -hermitian -hermit/MS -Hermon/M -Hermosa/M -Hermosillo/M -Hermy/M -Hernandez/M -Hernando/M -hernial -hernia/MS -herniate/NGXDS -Herod/M -Herodotus/M -heroes -heroically -heroics -heroic/U -heroine/SM -heroin/MS -heroism/SM -Herold/M -hero/M -heron/SM -herpes/M -herpetologist/SM -herpetology/MS -Herrera/M -Herrick/M -herringbone/SDGM -Herring/M -herring/SM -Herrington/M -Herr/MG -Herschel/M -Hersch/M -herself -Hersey/M -Hershel/M -Hershey/M -Hersh/M -Herta/M -Hertha/M -hertz/M -Hertz/M -Hertzog/M -Hertzsprung/M -Herve/M -Hervey/M -Herzegovina/M -Herzl/M -hes -Hesiod/M -hesitance/S -hesitancy/SM -hesitantly -hesitant/U -hesitater/M -hesitate/XDRSNG -hesitating/UY -hesitation/M -Hesperus/M -Hesse/M -Hessian/MS -Hess/M -Hester/M -Hesther/M -Hestia/M -Heston/M -heterodox -heterodoxy/MS -heterodyne -heterogamous -heterogamy/M -heterogeneity/SM -heterogeneousness/M -heterogeneous/PY -heterosexuality/SM -heterosexual/YMS -heterostructure -heterozygous -Hettie/M -Hetti/M -Hetty/M -Heublein/M -heuristically -heuristic/SM -Heusen/M -Heuser/M -he/VMZ -hew/DRZGS -Hewe/M -hewer/M -Hewet/M -Hewett/M -Hewie/M -Hewitt/M -Hewlett/M -Hew/M -hexachloride/M -hexadecimal/YS -hexafluoride/M -hexagonal/Y -hexagon/SM -hexagram/SM -hexameter/SM -hex/DSRG -hexer/M -hey -heyday/MS -Heyerdahl/M -Heywood/M -Hezekiah/M -hf -HF -Hf/M -Hg/M -hgt -hgwy -HHS -HI -Hialeah/M -hiatus/SM -Hiawatha/M -hibachi/MS -hibernate/XGNSD -hibernation/M -hibernator/SM -Hibernia/M -Hibernian/S -hibiscus/MS -hiccup/MDGS -hickey/SM -Hickey/SM -Hickman/M -Hickok/M -hickory/MS -hick/SM -Hicks/M -hi/D -hidden/U -hideaway/SM -hidebound -hideousness/SM -hideous/YP -hideout/MS -hider/M -hide/S -hiding/M -hid/ZDRGJ -hieing -hierarchal -hierarchic -hierarchical/Y -hierarchy/SM -hieratic -hieroglyph -hieroglyphic/S -hieroglyphics/M -hieroglyphs -Hieronymus/M -hie/S -hifalutin -Higashiosaka -Higgins/M -highball/GSDM -highborn -highboy/MS -highbrow/SM -highchair/SM -highfalutin -Highfield/M -highhandedness/SM -highhanded/PY -highish -Highlander/SM -Highlands -highland/ZSRM -highlight/GZRDMS -Highness/M -highness/MS -highpoint -high/PYRT -highroad/MS -highs -hight -hightail/DGS -highwayman/M -highwaymen -highway/MS -hijacker/M -hijack/JZRDGS -hiker/M -hike/ZGDSR -Hilario/M -hilariousness/MS -hilarious/YP -hilarity/MS -Hilarius/M -Hilary/M -Hilbert/M -Hildagarde/M -Hildagard/M -Hilda/M -Hildebrand/M -Hildegaard/M -Hildegarde/M -Hilde/M -Hildy/M -Hillard/M -Hillary/M -hillbilly/MS -Hillcrest/M -Hillel/M -hiller/M -Hillery/M -hill/GSMDR -Hilliard/M -Hilliary/M -Hillie/M -Hillier/M -hilliness/SM -Hill/M -hillman -hillmen -hillock/SM -Hillsboro/M -Hillsdale/M -hillside/SM -hilltop/MS -hillwalking -Hillyer/M -Hilly/RM -hilly/TRP -hilt/MDGS -Hilton/M -Hi/M -Himalaya/MS -Himalayan/S -Himmler/M -him/S -himself -Hinayana/M -Hinda/M -Hindemith/M -Hindenburg/M -hindered/U -hinderer/M -hinder/GRD -Hindi/M -hindmost -hindquarter/SM -hindrance/SM -hind/RSZ -hindsight/SM -Hinduism/SM -Hindu/MS -Hindustani/MS -Hindustan/M -Hines/M -hinger -hinge's -hinge/UDSG -Hinkle/M -Hinsdale/M -hinterland/MS -hinter/M -hint/GZMDRS -Hinton/M -Hinze/M -hipbone/SM -hipness/S -Hipparchus/M -hipped -hipper -hippest -hippie/MTRS -hipping/M -Hippocrates/M -Hippocratic -hippodrome/MS -hippo/MS -hippopotamus/SM -hip/PSM -hippy's -hipster/MS -hiragana -Hiram/M -hire/AGSD -hireling/SM -hirer/SM -Hirey/M -hiring/S -Hirohito/M -Hiroshi/M -Hiroshima/M -Hirsch/M -hirsuteness/MS -hirsute/P -his -Hispanic/SM -Hispaniola/M -hiss/DSRMJG -hisser/M -hissing/M -Hiss/M -histamine/SM -histidine/SM -histochemic -histochemical -histochemistry/M -histogram/MS -histological -histologist/MS -histology/SM -historian/MS -historic -historicalness/M -historical/PY -historicism/M -historicist/M -historicity/MS -historiographer/SM -historiography/MS -history/MS -histrionically -histrionic/S -histrionics/M -hist/SDG -Hitachi/M -Hitchcock/M -hitcher/MS -hitchhike/RSDGZ -hitch/UGSD -hither -hitherto -Hitler/SM -hitless -hit/MS -hittable -hitter/SM -hitting -Hittite/SM -HIV -hive/MGDS -h'm -HM -HMO -Hmong -HMS -hoarder/M -hoarding/M -hoard/RDJZSGM -hoarfrost/SM -hoariness/MS -hoar/M -hoarseness/SM -hoarse/RTYP -hoary/TPR -hoaxer/M -hoax/GZMDSR -Hobard/M -Hobart/M -hobbed -Hobbes/M -hobbing -hobbit -hobbler/M -hobble/ZSRDG -Hobbs/M -hobbyhorse/SM -hobbyist/SM -hobby/SM -Hobday/M -Hobey/M -hobgoblin/MS -Hobie/M -hobnail/GDMS -hobnobbed -hobnobbing -hobnob/S -Hoboken/M -hobo/SDMG -hob/SM -hoc -hocker/M -hockey/SM -hock/GDRMS -Hockney/M -hockshop/SM -hodge/MS -Hodge/MS -hodgepodge/SM -Hodgkin/M -ho/DRYZ -hod/SM -Hoebart/M -hoecake/SM -hoedown/MS -hoeing -hoer/M -hoe/SM -Hoffa/M -Hoff/M -Hoffman/M -Hofstadter/M -Hogan/M -hogan/SM -Hogarth/M -hogback/MS -hogged -hogger -hogging -hoggish/Y -hogshead/SM -hog/SM -hogtie/SD -hogtying -hogwash/SM -Hohenlohe/M -Hohenstaufen/M -Hohenzollern/M -Hohhot/M -hoister/M -hoist/GRDS -hoke/DSG -hokey/PRT -hokier -hokiest -Hokkaido/M -hokum/MS -Hokusai/M -Holbein/M -Holbrook/M -Holcomb/M -holdall/MS -Holden/M -holder/M -Holder/M -holding/IS -holding's -hold/NRBSJGZ -holdout/SM -holdover/SM -holdup/MS -hole/MGDS -holey -holiday/GRDMS -Holiday/M -holidaymaker/S -holier/U -Holiness/MS -holiness/MSU -holistic -holistically -hollandaise -Hollandaise/M -Hollander/M -Holland/RMSZ -holler/GDS -Hollerith/M -Holley/M -Hollie/M -Holli/SM -Hollister/M -Holloway/M -hollowness/MS -hollow/RDYTGSP -hollowware/M -Hollyanne/M -hollyhock/MS -Holly/M -holly/SM -Hollywood/M -Holman/M -Holmes -holmium/MS -Holm/M -Holocaust -holocaust/MS -Holocene -hologram/SM -holograph/GMD -holographic -holographs -holography/MS -Holstein/MS -holster/MDSG -Holst/M -Holt/M -Holyoke/M -holy/SRTP -holystone/MS -Holzman/M -Ho/M -homage/MGSRD -homager/M -hombre/SM -homburg/SM -homebody/MS -homebound -homeboy/S -homebuilder/S -homebuilding -homebuilt -homecoming/MS -home/DSRMYZG -homegrown -homeland/SM -homelessness/SM -homeless/P -homelike -homeliness/SM -homely/RPT -homemade -homemake/JRZG -homemaker/M -homemaking/M -homeomorphic -homeomorphism/MS -homeomorph/M -homeopath -homeopathic -homeopaths -homeopathy/MS -homeostases -homeostasis/M -homeostatic -homeowner/S -homeownership -homepage -Homere/M -homer/GDM -Homeric -homerists -Homer/M -homeroom/MS -Homerus/M -homeschooling/S -homesickness/MS -homesick/P -homespun/S -homesteader/M -homestead/GZSRDM -homestretch/SM -hometown/SM -homeward -homeworker/M -homework/ZSMR -homeyness/MS -homey/PS -homicidal/Y -homicide/SM -homier -homiest -homiletic/S -homily/SM -hominess's -homing/M -hominid/MS -hominy/SM -Hom/MR -homogamy/M -homogenate/MS -homogeneity/ISM -homogeneous/PY -homogenization/MS -homogenize/DRSGZ -homogenizer/M -homograph/M -homographs -homological -homologous -homologue/M -homology/MS -homomorphic -homomorphism/SM -homonym/SM -homophobia/S -homophobic -homophone/MS -homopolymers -homosexuality/SM -homosexual/YMS -homo/SM -homotopy -homozygous/Y -honcho/DSG -Honda/M -Hondo/M -Honduran/S -Honduras/M -Honecker/M -hone/SM -honestly/E -honest/RYT -honesty/ESM -honeybee/SM -honeycomb/SDMG -honeydew/SM -honey/GSMD -honeylocust -Honey/M -honeymooner/M -honeymoon/RDMGZS -honeysuckle/MS -Honeywell/M -hong/M -Honiara/M -honker/M -honk/GZSDRM -honky/SM -Hon/M -hon/MDRSZTG -Honolulu/M -honorableness/SM -honorable/PSM -honorables/U -honorablies/U -honorably/UE -honorarily -honorarium/SM -honorary/S -honored/U -honoree/S -honor/ERDBZGS -honorer/EM -Honoria/M -honorific/S -Honor/M -honor's -honors/A -Honshu/M -hooch/MS -hoodedness/M -hooded/P -hoodlum/SM -Hood/M -hood/MDSG -hoodoo/DMGS -hoodwinker/M -hoodwink/SRDG -hooey/SM -hoof/DRMSG -hoofer/M -hoofmark/S -hookah/M -hookahs -hookedness/M -hooked/P -Hooke/MR -hooker/M -Hooker/M -hookey's -hook/GZDRMS -hooks/U -hookup/SM -hookworm/MS -hooky/SRMT -hooliganism/SM -hooligan/SM -hooper/M -Hooper/M -hoopla/SM -hoop/MDRSG -hooray/SMDG -hoosegow/MS -Hoosier/SM -hootch's -hootenanny/SM -hooter/M -hoot/MDRSGZ -Hoover/MS -hooves/M -hoped/U -hopefulness/MS -hopeful/SPY -hopelessness/SM -hopeless/YP -Hope/M -hoper/M -hope/SM -Hopewell/M -Hopi/SM -Hopkinsian/M -Hopkins/M -hopped -Hopper/M -hopper/MS -hopping/M -hoppled -hopples -hopscotch/MDSG -hop/SMDRG -Horace/M -Horacio/M -Horatia/M -Horatio/M -Horatius/M -horde/DSGM -horehound/MS -horizon/MS -horizontal/YS -Hormel/M -hormonal/Y -hormone/MS -Hormuz/M -hornbeam/M -hornblende/MS -Hornblower/M -hornedness/M -horned/P -Horne/M -hornet/MS -horn/GDRMS -horniness/M -hornless -hornlike -Horn/M -hornpipe/MS -horny/TRP -horologic -horological -horologist/MS -horology/MS -horoscope/MS -Horowitz/M -horrendous/Y -horribleness/SM -horrible/SP -horribly -horridness/M -horrid/PY -horrific -horrifically -horrify/DSG -horrifying/Y -horror/MS -hors/DSGX -horseback/MS -horsedom -horseflesh/M -horsefly/MS -horsehair/SM -horsehide/SM -horselaugh/M -horselaughs -horseless -horselike -horsely -horseman/M -horsemanship/MS -horsemen -horseplayer/M -horseplay/SMR -horsepower/SM -horseradish/SM -horse's -horseshoeing -horseshoe/MRSD -horseshoer/M -horsetail/SM -horse/UGDS -horsewhipped -horsewhipping -horsewhip/SM -horsewoman/M -horsewomen -horsey -horsier -horsiest -horsing/M -Horst/M -hortatory -Horten/M -Hortense/M -Hortensia/M -horticultural -horticulture/SM -horticulturist/SM -Hort/MN -Horton/M -Horus/M -hosanna/SDG -Hosea/M -hose/M -hosepipe -hos/GDS -hosier/MS -hosiery/SM -hosp -hospice/MS -hospitable/I -hospitably/I -hospitality/MS -hospitality's/I -hospitalization/MS -hospitalize/GSD -hospital/MS -hostage/MS -hosteler/M -hostelry/MS -hostel/SZGMRD -hostess/MDSG -hostile/YS -hostility/SM -hostler/MS -Host/MS -host/MYDGS -hotbed/MS -hotblooded -hotbox/MS -hotcake/S -hotchpotch/M -hotelier/MS -hotelman/M -hotel/MS -hotfoot/DGS -hothead/DMS -hotheadedness/SM -hotheaded/PY -hothouse/MGDS -hotness/MS -hotplate/SM -hotpot/M -hot/PSY -hotrod -hotshot/S -hotted -Hottentot/SM -hotter -hottest -hotting -Houdaille/M -Houdini/M -hough/M -hounder/M -hounding/M -hound/MRDSG -hourglass/MS -houri/MS -hourly/S -hour/YMS -house/ASDG -houseboat/SM -housebound -houseboy/SM -housebreaker/M -housebreaking/M -housebreak/JSRZG -housebroke -housebroken -housebuilding -housecleaning/M -houseclean/JDSG -housecoat/MS -housefly/MS -houseful/SM -householder/M -household/ZRMS -househusband/S -housekeeper/M -housekeeping/M -housekeep/JRGZ -houselights -House/M -housemaid/MS -houseman/M -housemen -housemother/MS -housemoving -houseparent/SM -houseplant/S -houser -house's -housetop/MS -housewares -housewarming/MS -housewifeliness/M -housewifely/P -housewife/YM -housewives -houseworker/M -housework/ZSMR -housing/MS -Housman/M -Houston/M -Houyhnhnm/M -HOV -hovel/GSMD -hovercraft/M -hoverer/M -hover/GRD -hove/ZR -Howard/M -howbeit -howdah/M -howdahs -howdy/GSD -Howell/MS -Howe/M -however -Howey/M -Howie/M -howitzer/MS -howler/M -howl/GZSMDR -Howrah/M -how/SM -howsoever -hoyden/DMGS -hoydenish -Hoyle/SM -hoy/M -Hoyt/M -hp -HP -HQ -hr -HR -HRH -Hrothgar/M -hrs -h's -H's -HS -HST -ht -HTML -Hts/M -HTTP -Huang/M -huarache/SM -hubba -Hubbard/M -Hubble/M -hubbub/SM -hubby/SM -hubcap/SM -Huber/M -Hube/RM -Hubert/M -Huberto/M -Hubey/M -Hubie/M -hub/MS -hubris/SM -huckleberry/SM -Huck/M -huckster/SGMD -HUD -Huddersfield/M -huddler/M -huddle/RSDMG -Hudson/M -hue/MDS -Huerta/M -Huey/M -huffily -huffiness/SM -Huff/M -Huffman/M -huff/SGDM -huffy/TRP -hugeness/MS -huge/YP -hugged -hugger -hugging/S -Huggins -Hughie/M -Hugh/MS -Hugibert/M -Hugo/M -hug/RTS -Huguenot/SM -Hugues/M -huh -huhs -Hui/M -Huitzilopitchli/M -hula/MDSG -Hulda/M -hulk/GDMS -hullabaloo/SM -huller/M -hulling/M -Hull/M -hull/MDRGZS -hullo/GSDM -humane/IY -humaneness/SM -humaner -humanest -human/IPY -humanism/SM -humanistic -humanist/SM -humanitarianism/SM -humanitarian/S -humanity/ISM -humanization/CSM -humanized/C -humanizer/M -humanize/RSDZG -humanizes/IAC -humanizing/C -humankind/M -humannesses -humanness/IM -humanoid/S -humans -Humbert/M -Humberto/M -humbleness/SM -humble/TZGPRSDJ -humbly -Humboldt/M -humbugged -humbugging -humbug/MS -humdinger/MS -humdrum/S -Hume/M -humeral/S -humeri -humerus/M -Humfrey/M -Humfrid/M -Humfried/M -humidification/MC -humidifier/CM -humidify/RSDCXGNZ -humidistat/M -humidity/MS -humidor/MS -humid/Y -humiliate/SDXNG -humiliating/Y -humiliation/M -humility/MS -hummed -Hummel/M -hummer/SM -humming -hummingbird/SM -hummock/MDSG -hummocky -hummus/S -humongous -humored/U -humorist/MS -humorlessness/MS -humorless/PY -humorousness/MS -humorous/YP -humor/RDMZGS -humpback/SMD -hump/GSMD -humph/DG -Humphrey/SM -humphs -Humpty/M -hum/S -humus/SM -Humvee -hunchback/DSM -hunch/GMSD -hundredfold/S -hundred/SHRM -hundredths -hundredweight/SM -Hunfredo/M -hung/A -Hungarian/MS -Hungary/M -hunger/SDMG -Hung/M -hungover -hungrily -hungriness/SM -hungry/RTP -hunker/DG -hunky/RST -hunk/ZRMS -Hun/MS -hunter/M -Hunter/M -hunt/GZJDRS -hunting/M -Huntington/M -Huntlee/M -Huntley/M -Hunt/MR -huntress/MS -huntsman/M -huntsmen -Huntsville/M -hurdle/JMZGRSD -hurdler/M -hurl/DRGZJS -Hurlee/M -Hurleigh/M -hurler/M -Hurley/M -hurling/M -Huron/SM -hurray/SDG -hurricane/MS -hurriedness/M -hurried/UY -hurry/RSDG -Hurst/M -hurter/M -hurtfulness/MS -hurtful/PY -hurting/Y -hurtle/SDG -hurts -hurt/U -Hurwitz/M -Hus -Husain's -husbander/M -husband/GSDRYM -husbandman/M -husbandmen -husbandry/SM -Husein/M -hush/DSG -husker/M -huskily -huskiness/MS -husking/M -husk/SGZDRM -husky/RSPT -hussar/MS -Hussein/M -Husserl/M -hussy/SM -hustings/M -hustler/M -hustle/RSDZG -Huston/M -Hutchins/M -Hutchinson/M -Hutchison/M -hutch/MSDG -hut/MS -hutted -hutting -Hutton/M -Hutu/M -Huxley/M -Huygens/M -huzzah/GD -huzzahs -hwy -Hyacintha/M -Hyacinthe/M -Hyacinthia/M -Hyacinthie/M -hyacinth/M -Hyacinth/M -hyacinths -Hyades -hyaena's -Hyannis/M -Hyatt/M -hybridism/SM -hybridization/S -hybridize/GSD -hybrid/MS -Hyde/M -Hyderabad/M -Hydra/M -hydra/MS -hydrangea/SM -hydrant/SM -hydrate/CSDNGX -hydrate's -hydration/MC -hydraulically -hydraulicked -hydraulicking -hydraulic/S -hydraulics/M -hydrazine/M -hydride/MS -hydrocarbon/SM -hydrocephali -hydrocephalus/MS -hydrochemistry -hydrochloric -hydrochloride/M -hydrodynamical -hydrodynamic/S -hydrodynamics/M -hydroelectric -hydroelectrically -hydroelectricity/SM -hydrofluoric -hydrofoil/MS -hydrogenate/CDSGN -hydrogenate's -hydrogenation/MC -hydrogenations -hydrogen/MS -hydrogenous -hydrological/Y -hydrologist/MS -hydrology/SM -hydrolysis/M -hydrolyzed/U -hydrolyze/GSD -hydromagnetic -hydromechanics/M -hydrometer/SM -hydrometry/MS -hydrophilic -hydrophobia/SM -hydrophobic -hydrophone/SM -hydroplane/DSGM -hydroponic/S -hydroponics/M -hydro/SM -hydrosphere/MS -hydrostatic/S -hydrostatics/M -hydrotherapy/SM -hydrothermal/Y -hydrous -hydroxide/MS -hydroxy -hydroxylate/N -hydroxyl/SM -hydroxyzine/M -hyena/MS -hygiene/MS -hygienically -hygienic/S -hygienics/M -hygienist/MS -hygrometer/SM -hygroscopic -hying -Hy/M -Hyman/M -hymeneal/S -Hymen/M -hymen/MS -Hymie/M -hymnal/SM -hymnbook/S -hymn/GSDM -Hynda/M -hype/MZGDSR -hyperactive/S -hyperactivity/SM -hyperbola/MS -hyperbole/MS -hyperbolic -hyperbolically -hyperboloidal -hyperboloid/SM -hypercellularity -hypercritical/Y -hypercube/MS -hyperemia/M -hyperemic -hyperfine -hypergamous/Y -hypergamy/M -hyperglycemia/MS -hyperinflation -Hyperion/M -hypermarket/SM -hypermedia/S -hyperplane/SM -hyperplasia/M -hypersensitiveness/MS -hypersensitive/P -hypersensitivity/MS -hypersonic -hyperspace/M -hypersphere/M -hypertension/MS -hypertensive/S -hypertext/SM -hyperthyroid -hyperthyroidism/MS -hypertrophy/MSDG -hypervelocity -hyperventilate/XSDGN -hyperventilation/M -hyphenated/U -hyphenate/NGXSD -hyphenation/M -hyphen/DMGS -hypnoses -hypnosis/M -hypnotherapy/SM -hypnotically -hypnotic/S -hypnotism/MS -hypnotist/SM -hypnotize/SDG -hypoactive -hypoallergenic -hypocellularity -hypochondriac/SM -hypochondria/MS -hypocrisy/SM -hypocrite/MS -hypocritical/Y -hypodermic/S -hypo/DMSG -hypoglycemia/SM -hypoglycemic/S -hypophyseal -hypophysectomized -hypotenuse/MS -hypothalami -hypothalamic -hypothalamically -hypothalamus/M -hypothermia/SM -hypotheses -hypothesis/M -hypothesizer/M -hypothesize/ZGRSD -hypothetic -hypothetical/Y -hypothyroid -hypothyroidism/SM -hypoxia/M -hyssop/MS -hysterectomy/MS -hysteresis/M -hysteria/SM -hysterical/YU -hysteric/SM -Hyundai/M -Hz -i -I -IA -Iaccoca/M -Iago/M -Iain/M -Ia/M -iambi -iambic/S -iamb/MS -iambus/SM -Ian/M -Ianthe/M -Ibadan/M -Ibbie/M -Ibby/M -Iberia/M -Iberian/MS -Ibero/M -ibex/MS -ibid -ibidem -ibis/SM -IBM/M -Ibo/M -Ibrahim/M -Ibsen/M -ibuprofen/S -Icarus/M -ICBM/S -ICC -iceberg/SM -iceboat/MS -icebound -icebox/MS -icebreaker/SM -icecap/SM -ice/GDSC -Icelander/M -Icelandic -Iceland/MRZ -Ice/M -iceman/M -icemen -icepack -icepick/S -ice's -Ichabod/M -ichneumon/M -ichthyologist/MS -ichthyology/MS -icicle/SM -icily -iciness/SM -icing/MS -icky/RT -iconic -icon/MS -iconoclasm/MS -iconoclastic -iconoclast/MS -iconography/MS -icosahedra -icosahedral -icosahedron/M -ictus/SM -ICU -icy/RPT -I'd -ID -Idahoan/S -Idahoes -Idaho/MS -Idalia/M -Idalina/M -Idaline/M -Ida/M -idealism/MS -idealistic -idealistically -idealist/MS -idealization/MS -idealized/U -idealize/GDRSZ -idealizer/M -ideal/MYS -idealogical -idea/SM -ideate/SN -ideation/M -Idelle/M -Idell/M -idem -idempotent/S -identicalness/M -identical/YP -identifiability -identifiable/U -identifiably -identification/M -identified/U -identifier/M -identify/XZNSRDG -identity/SM -ideogram/MS -ideographic -ideograph/M -ideographs -ideological/Y -ideologist/SM -ideologue/S -ideology/SM -ides -Idette/M -idiocy/MS -idiolect/M -idiomatically -idiomatic/P -idiom/MS -idiopathic -idiosyncrasy/SM -idiosyncratic -idiosyncratically -idiotic -idiotically -idiot/MS -idleness/MS -idle/PZTGDSR -idler/M -id/MY -idolater/MS -idolatress/S -idolatrous -idolatry/SM -idolization/SM -idolized/U -idolizer/M -idolize/ZGDRS -idol/MS -ids -IDs -idyllic -idyllically -idyll/MS -IE -IEEE -Ieyasu/M -if -iffiness/S -iffy/TPR -Ifni/M -ifs -Iggie/M -Iggy/M -igloo/MS -Ignace/M -Ignacio/M -Ignacius/M -Ignatius/M -Ignazio/M -Ignaz/M -igneous -ignitable -ignite/ASDG -igniter/M -ignition/MS -ignobleness/M -ignoble/P -ignobly -ignominious/Y -ignominy/MS -ignoramus/SM -ignorance/MS -ignorantness/M -ignorant/SPY -ignorer/M -ignore/SRDGB -Igor/M -iguana/MS -Iguassu/M -ii -iii -Ijsselmeer/M -Ike/M -Ikey/M -Ikhnaton/M -ikon's -IL -Ilaire/M -Ila/M -Ilario/M -ilea -Ileana/M -Ileane/M -ileitides -ileitis/M -Ilene/M -ileum/M -ilia -iliac -Iliad/MS -Ilise/M -ilium/M -Ilka/M -ilk/MS -I'll -Illa/M -illegality/MS -illegal/YS -illegibility/MS -illegible -illegibly -illegitimacy/SM -illegitimate/SDGY -illiberality/SM -illiberal/Y -illicitness/MS -illicit/YP -illimitableness/M -illimitable/P -Illinoisan/MS -Illinois/M -illiquid -illiteracy/MS -illiterateness/M -illiterate/PSY -Ill/M -illness/MS -illogicality/SM -illogicalness/M -illogical/PY -illogic/M -ill/PS -illume/DG -illuminate/XSDVNG -Illuminati -illuminatingly -illuminating/U -illumination/M -illumine/BGSD -illusionary -illusion/ES -illusionist/MS -illusion's -illusiveness/M -illusive/PY -illusoriness/M -illusory/P -illustrated/U -illustrate/VGNSDX -illustration/M -illustrative/Y -illustrator/SM -illustriousness/SM -illustrious/PY -illus/V -illy -Ilona/M -Ilsa/M -Ilse/M -Ilysa/M -Ilyse/M -Ilyssa/M -Ilyushin/M -I'm -image/DSGM -Imagen/M -imagery/MS -imaginableness -imaginable/U -imaginably/U -imaginariness/M -imaginary/PS -imagination/MS -imaginativeness/M -imaginative/UY -imagined/U -imaginer/M -imagine/RSDJBG -imagoes -imago/M -imam/MS -imbalance/SDM -imbecile/YMS -imbecilic -imbecility/MS -imbiber/M -imbibe/ZRSDG -imbrication/SM -Imbrium/M -imbroglio/MS -imbruing -imbue/GDS -Imelda/M -IMF -IMHO -imitable/I -imitate/SDVNGX -imitation/M -imitativeness/MS -imitative/YP -imitator/SM -immaculateness/SM -immaculate/YP -immanence/S -immanency/MS -immanent/Y -Immanuel/M -immateriality/MS -immaterialness/MS -immaterial/PY -immatureness/M -immature/SPY -immaturity/MS -immeasurableness/M -immeasurable/P -immeasurably -immediacy/MS -immediateness/SM -immediate/YP -immemorial/Y -immenseness/M -immense/PRTY -immensity/MS -immerse/RSDXNG -immersible -immersion/M -immigrant/SM -immigrate/NGSDX -immigration/M -imminence/SM -imminentness/M -imminent/YP -immobile -immobility/MS -immobilization/MS -immobilize/DSRG -immoderateness/M -immoderate/NYP -immoderation/M -immodest/Y -immodesty/SM -immolate/SDNGX -immolation/M -immorality/MS -immoral/Y -immortality/SM -immortalized/U -immortalize/GDS -immortal/SY -immovability/SM -immovableness/M -immovable/PS -immovably -immune/S -immunity/SM -immunization/MS -immunize/GSD -immunoassay/M -immunodeficiency/S -immunodeficient -immunologic -immunological/Y -immunologist/SM -immunology/MS -immure/GSD -immutability/MS -immutableness/M -immutable/P -immutably -IMNSHO -IMO -Imogene/M -Imogen/M -Imojean/M -impaction/SM -impactor/SM -impact/VGMRDS -impaired/U -impairer/M -impair/LGRDS -impairment/SM -impala/MS -impale/GLRSD -impalement/SM -impaler/M -impalpable -impalpably -impanel/DGS -impartation/M -impart/GDS -impartiality/SM -impartial/Y -impassableness/M -impassable/P -impassably -impasse/SXBMVN -impassibility/SM -impassible -impassibly -impassion/DG -impassioned/U -impassiveness/MS -impassive/YP -impassivity/MS -impasto/SM -impatience/SM -impatiens/M -impatient/Y -impeachable/U -impeach/DRSZGLB -impeacher/M -impeachment/MS -impeccability/SM -impeccable/S -impeccably -impecuniousness/MS -impecunious/PY -impedance/MS -impeded/U -impeder/M -impede/S -imped/GRD -impedimenta -impediment/SM -impelled -impeller/MS -impelling -impel/S -impend/DGS -impenetrability/MS -impenetrableness/M -impenetrable/P -impenetrably -impenitence/MS -impenitent/YS -imperativeness/M -imperative/PSY -imperceivable -imperceptibility/MS -imperceptible -imperceptibly -imperceptive -imperf -imperfectability -imperfection/MS -imperfectness/SM -imperfect/YSVP -imperialism/MS -imperialistic -imperialistically -imperialist/SM -imperial/YS -imperil/GSLD -imperilment/SM -imperiousness/MS -imperious/YP -imperishableness/M -imperishable/SP -imperishably -impermanence/MS -impermanent/Y -impermeability/SM -impermeableness/M -impermeable/P -impermeably -impermissible -impersonality/M -impersonalized -impersonal/Y -impersonate/XGNDS -impersonation/M -impersonator/SM -impertinence/SM -impertinent/YS -imperturbability/SM -imperturbable -imperturbably -imperviousness/M -impervious/PY -impetigo/MS -impetuosity/MS -impetuousness/MS -impetuous/YP -impetus/MS -impiety/MS -impinge/LS -impingement/MS -imping/GD -impiousness/SM -impious/PY -impishness/MS -impish/YP -implacability/SM -implacableness/M -implacable/P -implacably -implantation/SM -implant/BGSDR -implanter/M -implausibility/MS -implausible -implausibly -implementability -implementable/U -implementation/A -implementations -implementation's -implemented/AU -implementer/M -implementing/A -implementor/MS -implement/SMRDGZB -implicant/SM -implicate/VGSD -implication/M -implicative/PY -implicitness/SM -implicit/YP -implied/Y -implode/GSD -implore/GSD -imploring/Y -implosion/SM -implosive/S -imply/GNSDX -impoliteness/MS -impolite/YP -impoliticness/M -impolitic/PY -imponderableness/M -imponderable/PS -importance/SM -important/Y -importation/MS -importer/M -importing/A -import/SZGBRD -importunateness/M -importunate/PYGDS -importuner/M -importune/SRDZYG -importunity/SM -imposable -impose/ASDG -imposer/SM -imposingly -imposing/U -imposition/SM -impossibility/SM -impossibleness/M -impossible/PS -impossibly -imposter's -impostor/SM -impost/SGMD -imposture/SM -impotence/MS -impotency/S -impotent/SY -impound/GDS -impoundments -impoverisher/M -impoverish/LGDRS -impoverishment/SM -impracticableness/M -impracticable/P -impracticably -impracticality/SM -impracticalness/M -impractical/PY -imprecate/NGXSD -imprecation/M -impreciseness/MS -imprecise/PYXN -imprecision/M -impregnability/MS -impregnableness/M -impregnable/P -impregnably -impregnate/DSXNG -impregnation/M -impresario/SM -impress/DRSGVL -impressed/U -impresser/M -impressibility/MS -impressible -impressionability/SM -impressionableness/M -impressionable/P -impression/BMS -impressionism/SM -impressionistic -impressionist/MS -impressiveness/MS -impressive/YP -impressment/M -imprimatur/SM -imprinter/M -imprinting/M -imprint/SZDRGM -imprison/GLDS -imprisonment/MS -improbability/MS -improbableness/M -improbable/P -improbably -impromptu/S -improperness/M -improper/PY -impropitious -impropriety/SM -improved/U -improvement/MS -improver/M -improve/SRDGBL -improvidence/SM -improvident/Y -improvisational -improvisation/MS -improvisatory -improviser/M -improvise/RSDZG -imprudence/SM -imprudent/Y -imp/SGMDRY -impudence/MS -impudent/Y -impugner/M -impugn/SRDZGB -impulse/XMVGNSD -impulsion/M -impulsiveness/MS -impulsive/YP -impunity/SM -impureness/M -impure/RPTY -impurity/MS -imputation/SM -impute/SDBG -Imus/M -IN -inaction -inactive -inadequate/S -inadvertence/MS -inadvertent/Y -inalienability/MS -inalienably -inalterableness/M -inalterable/P -Ina/M -inamorata/MS -inane/SRPYT -inanimateness/S -inanimate/P -inanity/MS -inappeasable -inappropriate/P -inarticulate/P -in/AS -inasmuch -inaugural/S -inaugurate/XSDNG -inauguration/M -inauthenticity -inbound/G -inbred/S -inbreed/JG -incalculableness/M -incalculably -incandescence/SM -incandescent/YS -incant -incantation/SM -incantatory -incapable/S -incapacitate/GNSD -incapacitation/M -incarcerate/XGNDS -incarceration/M -incarnadine/GDS -incarnate/AGSDNX -incarnation/AM -Inca/SM -incendiary/S -incense/MGDS -incentive/ESM -incentively -incept/DGVS -inception/MS -inceptive/Y -inceptor/M -incessant/Y -incest/SM -incestuousness/MS -incestuous/PY -inch/GMDS -inchoate/DSG -Inchon/M -inchworm/MS -incidence/MS -incidental/YS -incident/SM -incinerate/XNGSD -incineration/M -incinerator/SM -incipience/SM -incipiency/M -incipient/Y -incise/SDVGNX -incision/M -incisiveness/MS -incisive/YP -incisor/MS -incitement/MS -inciter/M -incite/RZL -incl -inclination/ESM -incline/EGSD -incliner/M -inclining/M -include/GDS -inclusion/MS -inclusiveness/MS -inclusive/PY -Inc/M -incognito/S -incoherency/M -income/M -incommode/DG -incommunicado -incomparable -incompetent/MS -incomplete/P -inconceivability/MS -inconceivableness/M -inconceivable/P -incondensable -incongruousness/S -inconsiderableness/M -inconsiderable/P -inconsistence -inconsolableness/M -inconsolable/P -inconsolably -incontestability/SM -incontestably -incontrovertibly -inconvenience/DG -inconvertibility -inconvertible -incorporable -incorporated/UE -incorporate/GASDXN -incorrect/P -incorrigibility/MS -incorrigibleness/M -incorrigible/SP -incorrigibly -incorruptible/S -incorruptibly -increase/JB -increaser/M -increasing/Y -incredibleness/M -incredible/P -incremental/Y -incrementation -increment/DMGS -incriminate/XNGSD -incrimination/M -incriminatory -incrustation/SM -inc/T -incubate/XNGVDS -incubation/M -incubator/MS -incubus/MS -inculcate/SDGNX -inculcation/M -inculpate/SDG -incumbency/MS -incumbent/S -incunabula -incunabulum -incurable/S -incurious -incursion/SM -ind -indebtedness/SM -indebted/P -indefatigableness/M -indefatigable/P -indefatigably -indefeasible -indefeasibly -indefinableness/M -indefinable/PS -indefinite/S -indelible -indelibly -indemnification/M -indemnify/NXSDG -indemnity/SM -indentation/SM -indented/U -indenter/M -indention/SM -indent/R -indenture/DG -Independence/M -indescribableness/M -indescribable/PS -indescribably -indestructibleness/M -indestructible/P -indestructibly -indeterminably -indeterminacy/MS -indeterminism -indexation/S -indexer/M -index/MRDZGB -India/M -Indiana/M -Indianan/S -Indianapolis/M -Indianian/S -Indian/SM -indicant/MS -indicate/DSNGVX -indication/M -indicative/SY -indicator/MS -indices's -indicter/M -indictment/SM -indict/SGLBDR -indifference -indigence/MS -indigenousness/M -indigenous/YP -indigent/SY -indigestible/S -indignant/Y -indignation/MS -indigo/SM -Indira/M -indirect/PG -indiscreet/P -indiscriminateness/M -indiscriminate/PY -indispensability/MS -indispensableness/M -indispensable/SP -indispensably -indisputableness/M -indisputable/P -indissolubleness/M -indissoluble/P -indissolubly -indistinguishableness/M -indistinguishable/P -indite/SDG -indium/SM -individualism/MS -individualistic -individualistically -individualist/MS -individuality/MS -individualization/SM -individualize/DRSGZ -individualized/U -individualizer/M -individualizes/U -individualizing/Y -individual/YMS -individuate/DSXGN -individuation/M -indivisibleness/M -indivisible/SP -indivisibly -Ind/M -Indochina/M -Indochinese -indoctrinate/GNXSD -indoctrination/M -indoctrinator/SM -indolence/SM -indolent/Y -indomitableness/M -indomitable/P -indomitably -Indonesia/M -Indonesian/S -indoor -Indore/M -Indra/M -indubitableness/M -indubitable/P -indubitably -inducement/MS -inducer/M -induce/ZGLSRD -inducible -inductance/MS -inductee/SM -induct/GV -induction/SM -inductiveness/M -inductive/PY -inductor/MS -indulge/GDRS -indulgence/SDGM -indulgent/Y -indulger/M -Indus/M -industrialism/MS -industrialist/MS -industrialization/MS -industrialized/U -industrialize/SDG -industrial/SY -industriousness/SM -industrious/YP -industry/SM -Indy/SM -inebriate/NGSDX -inebriation/M -inedible -ineducable -ineffability/MS -ineffableness/M -ineffable/P -ineffably -inelastic -ineligibly -ineluctable -ineluctably -ineptitude/SM -ineptness/MS -inept/YP -inequivalent -inerrant -inertial/Y -inertia/SM -inertness/MS -inert/SPY -Ines -inescapably -Inesita/M -Inessa/M -inestimably -inevitability/MS -inevitableness/M -inevitable/P -inevitably -inexact/P -inexhaustibleness/M -inexhaustible/P -inexhaustibly -inexorability/M -inexorableness/M -inexorable/P -inexorably -inexpedience/M -inexplicableness/M -inexplicable/P -inexplicably -inexplicit -inexpressibility/M -inexpressibleness/M -inexpressible/PS -inextricably -Inez/M -infamous -infamy/SM -infancy/M -infanticide/MS -infantile -infant/MS -infantryman/M -infantrymen -infantry/SM -infarction/SM -infarct/SM -infatuate/XNGSD -infatuation/M -infauna -infected/U -infecter -infect/ESGDA -infection/EASM -infectiousness/MS -infectious/PY -infective -infer/B -inference/GMSR -inferential/Y -inferiority/MS -inferior/SMY -infernal/Y -inferno/MS -inferred -inferring -infertile -infestation/MS -infester/M -infest/GSDR -infidel/SM -infighting/M -infill/MG -infiltrate/V -infiltrator/MS -infinitesimal/SY -infinite/V -infinitival -infinitive/YMS -infinitude/MS -infinitum -infinity/SM -infirmary/SM -infirmity/SM -infix/M -inflammableness/M -inflammable/P -inflammation/MS -inflammatory -inflatable/MS -inflate/NGBDRSX -inflater/M -inflationary -inflation/ESM -inflect/GVDS -inflectional/Y -inflection/SM -inflexibleness/M -inflexible/P -inflexion/SM -inflict/DRSGV -inflicter/M -infliction/SM -inflow/M -influenced/U -influencer/M -influence/SRDGM -influent -influential/SY -influenza/MS -infomercial/S -Informatica/M -informatics -informational -information/ES -informativeness/S -informative/UY -informatory -informed/U -informer/M -info/SM -infotainment/S -infra -infrared/SM -infrasonic -infrastructural -infrastructure/MS -infrequence/S -infringe/LR -infringement/SM -infringer/M -infuriate/GNYSD -infuriating/Y -infuriation/M -infuser/M -infuse/RZ -infusibleness/M -infusible/P -inf/ZT -Ingaberg/M -Ingaborg/M -Inga/M -Ingamar/M -Ingar/M -Ingeberg/M -Ingeborg/M -Ingelbert/M -Ingemar/M -ingeniousness/MS -ingenious/YP -ingnue/S -ingenuity/SM -ingenuous/EY -ingenuousness/MS -Inger/M -Inge/RM -Ingersoll/M -ingest/DGVS -ingestible -ingestion/SM -Inglebert/M -inglenook/MS -Inglewood/M -Inglis/M -Ingmar/M -ingoing -ingot/SMDG -ingrained/Y -Ingra/M -Ingram/M -ingrate/M -ingratiate/DSGNX -ingratiating/Y -ingratiation/M -ingredient/SM -Ingres/M -ingression/M -ingress/MS -Ingrid/M -Ingrim/M -ingrown/P -inguinal -Ingunna/M -inhabitable/U -inhabitance -inhabited/U -inhabiter/M -inhabit/R -inhalant/S -inhalation/SM -inhalator/SM -inhale/Z -inhere/DG -inherent/Y -inheritableness/M -inheritable/P -inheritance/EMS -inherit/BDSG -inherited/E -inheriting/E -inheritor/S -inheritress/MS -inheritrix/MS -inherits/E -inhibit/DVGS -inhibited/U -inhibiter's -inhibition/MS -inhibitor/MS -inhibitory -inhomogeneous -inhospitableness/M -inhospitable/P -inhospitality -Inigo/M -inimical/Y -inimitableness/M -inimitable/P -inimitably -inion -iniquitousness/M -iniquitous/PY -iniquity/MS -initialer/M -initial/GSPRDY -initialization/A -initializations -initialization's -initialize/ASDG -initialized/U -initializer/S -initiates -initiate/UD -initiating -initiation/SM -initiative/SM -initiator/MS -initiatory -injectable/U -inject/GVSDB -injection/MS -injector/SM -injunctive -injured/U -injurer/M -injure/SRDZG -injuriousness/M -injurious/YP -inkblot/SM -inker/M -inkiness/MS -inkling/SM -inkstand/SM -inkwell/SM -inky/TP -ink/ZDRJ -inland -inlander/M -inlay/RG -inletting -inly/G -inmost -Inna/M -innards -innateness/SM -innate/YP -innermost/S -innersole/S -innerspring -innervate/GNSDX -innervation/M -inner/Y -inning/M -Innis/M -innkeeper/MS -innocence/SM -Innocent/M -innocent/SYRT -innocuousness/MS -innocuous/PY -innovate/SDVNGX -innovation/M -innovative/P -innovator/MS -innovatory -Innsbruck/M -innuendo/MDGS -innumerability/M -innumerableness/M -innumerable/P -innumerably -innumerate -inn/ZGDRSJ -inoculate/ASDG -inoculation/MS -inoculative -inoffensive/P -Inonu/M -inopportuneness/M -inopportune/P -inordinateness/M -inordinate/PY -inorganic -inpatient -In/PM -input/MRDG -inquirer/M -inquire/ZR -inquiring/Y -inquiry/MS -inquisitional -inquisition/MS -Inquisition/MS -inquisitiveness/MS -inquisitive/YP -inquisitorial/Y -inquisitor/MS -INRI -inrush/M -ins -INS -insalubrious -insanitary -insatiability/MS -insatiableness/M -insatiable/P -insatiably -inscribe/Z -inscription/SM -inscrutability/SM -inscrutableness/SM -inscrutable/P -inscrutably -inseam -insecticidal -insecticide/MS -insectivore/SM -insectivorous -insecureness/M -insecure/P -inseminate/NGXSD -insemination/M -insensateness/M -insensate/P -insensible/P -insentient -inseparable/S -insert/ADSG -inserter/M -insertion/AMS -insetting -inshore -insider/M -inside/Z -insidiousness/MS -insidious/YP -insightful/Y -insigne's -insignia/SM -insignificant -insinuate/VNGXSD -insinuating/Y -insinuation/M -insinuator/SM -insipidity/MS -insipid/Y -insistence/SM -insistent/Y -insisting/Y -insist/SGD -insociable -insofar -insole/M -insolence/SM -insolent/YS -insolubleness/M -insoluble/P -insolubly -insomniac/S -insomnia/MS -insomuch -insouciance/SM -insouciant/Y -inspect/AGSD -inspection/SM -inspective -inspectorate/MS -inspector/SM -inspirational/Y -inspiration/MS -inspired/U -inspire/R -inspirer/M -inspiring/U -inspirit/DG -Inst -installable -install/ADRSG -installation/SM -installer/MS -installment/MS -instance/GD -instantaneousness/M -instantaneous/PY -instantiated/U -instantiate/SDXNG -instantiation/M -instant/SRYMP -instate/AGSD -inst/B -instead -instigate/XSDVGN -instigation/M -instigator/SM -instillation/SM -instinctive/Y -instinctual -instinct/VMS -instituter/M -institutes/M -institute/ZXVGNSRD -institutionalism/M -institutionalist/M -institutionalization/SM -institutionalize/GDS -institutional/Y -institution/AM -institutor's -instr -instruct/DSVG -instructed/U -instructional -instruction/MS -instructiveness/M -instructive/PY -instructor/MS -instrumentalist/MS -instrumentality/SM -instrumental/SY -instrumentation/SM -instrument/GMDS -insubordinate -insubstantial -insufferable -insufferably -insularity/MS -insular/YS -insulate/DSXNG -insulated/U -insulation/M -insulator/MS -insulin/MS -insult/DRSG -insulter/M -insulting/Y -insuperable -insuperably -insupportableness/M -insupportable/P -insurance/MS -insurance's/A -insure/BZGS -insured/S -insurer/M -insurgence/SM -insurgency/MS -insurgent/MS -insurmountably -insurrectionist/SM -insurrection/SM -intactness/M -intact/P -intaglio/GMDS -intake/M -intangible/M -integer/MS -integrability/M -integrable -integral/SYM -integrand/MS -integrate/AGNXEDS -integration/EMA -integrative/E -integrator/MS -integrity/SM -integument/SM -intellective/Y -intellect/MVS -intellectualism/MS -intellectuality/M -intellectualize/GSD -intellectualness/M -intellectual/YPS -intelligence/MSR -intelligencer/M -intelligentsia/MS -intelligent/UY -intelligibilities -intelligibility/UM -intelligibleness/MU -intelligible/PU -intelligibly/U -Intel/M -Intelsat/M -intemperate/P -intendant/MS -intendedness/M -intended/SYP -intender/M -intensification/M -intensifier/M -intensify/GXNZRSD -intensional/Y -intensiveness/MS -intensive/PSY -intentionality/M -intentional/UY -intention/SDM -intentness/SM -intent/YP -interaction/MS -interactive/PY -interactivity -interact/VGDS -interaxial -interbank -interbred -interbreed/GS -intercalate/GNVDS -intercalation/M -intercase -intercaste -interceder/M -intercede/SRDG -intercensal -intercept/DGS -interception/MS -interceptor/MS -intercession/MS -intercessor/SM -intercessory -interchangeability/M -interchangeableness/M -interchangeable/P -interchangeably -interchange/DSRGJ -interchanger/M -intercity -interclass -intercohort -intercollegiate -intercommunicate/SDXNG -intercommunication/M -intercom/SM -interconnectedness/M -interconnected/P -interconnect/GDS -interconnection/SM -interconnectivity -intercontinental -interconversion/M -intercorrelated -intercourse/SM -Interdata/M -interdenominational -interdepartmental/Y -interdependence/MS -interdependency/SM -interdependent/Y -interdiction/MS -interdict/MDVGS -interdisciplinary -interested/UYE -interest/GEMDS -interestingly/U -interestingness/M -interesting/YP -inter/ESTL -interface/SRDGM -interfacing/M -interfaith -interference/MS -interferer/M -interfere/SRDG -interfering/Y -interferometer/SM -interferometric -interferometry/M -interferon/MS -interfile/GSD -intergalactic -intergenerational -intergeneration/M -interglacial -intergovernmental -intergroup -interim/S -interindex -interindustry -interior/SMY -interj -interject/GDS -interjectional -interjection/MS -interlace/GSD -interlard/SGD -interlayer/G -interleave/SDG -interleukin/S -interlibrary -interlinear/S -interline/JGSD -interlingual -interlingua/M -interlining/M -interlink/GDS -interlisp/M -interlobular -interlocker/M -interlock/RDSG -interlocutor/MS -interlocutory -interlope/GZSRD -interloper/M -interlude/MSDG -intermarriage/MS -intermarry/GDS -intermediary/MS -intermediateness/M -intermediate/YMNGSDP -intermediation/M -interment/SME -intermeshed -intermetrics -intermezzi -intermezzo/SM -interminably -intermingle/DSG -intermission/MS -intermittent/Y -intermix/GSRD -intermodule -intermolecular/Y -internalization/SM -internalize/GDS -internal/SY -Internationale/M -internationalism/SM -internationalist/SM -internationality/M -internationalization/MS -internationalize/DSG -international/YS -internecine -internee/SM -interne's -Internet/M -INTERNET/M -internetwork -internist/SM -intern/L -internment/SM -internship/MS -internuclear -interocular -interoffice -interoperability -interpenetrates -interpersonal/Y -interplanetary -interplay/GSMD -interpol -interpolate/XGNVBDS -interpolation/M -Interpol/M -interpose/GSRD -interposer/M -interposition/MS -interpretable/U -interpret/AGSD -interpretation/MSA -interpretative/Y -interpreted/U -interpreter/SM -interpretive/Y -interpretor/S -interprocess -interprocessor -interquartile -interracial -interred/E -interregional -interregnum/MS -interrelatedness/M -interrelated/PY -interrelate/GNDSX -interrelation/M -interrelationship/SM -interring/E -interrogate/DSXGNV -interrogation/M -interrogative/SY -interrogator/SM -interrogatory/S -interrupted/U -interrupter/M -interruptibility -interruptible -interruption/MS -interrupt/VGZRDS -interscholastic -intersect/GDS -intersection/MS -intersession/MS -interspecies -intersperse/GNDSX -interspersion/M -interstage -interstate/S -interstellar -interstice/SM -interstitial/SY -intersurvey -intertask -intertwine/GSD -interurban/S -interval/MS -intervene/GSRD -intervener/M -intervenor/M -interventionism/MS -interventionist/S -intervention/MS -interview/AMD -interviewed/U -interviewee/SM -interviewer/SM -interviewing -interviews -intervocalic -interweave/GS -interwove -interwoven -intestacy/SM -intestinal/Y -intestine/SM -inti -intifada -intimacy/SM -intimal -intimateness/M -intimater/M -intimate/XYNGPDRS -intimation/M -intimidate/SDXNG -intimidating/Y -intimidation/M -into -intolerableness/M -intolerable/P -intolerant/PS -intonate/NX -intonation/M -intoxicant/MS -intoxicate/DSGNX -intoxicated/Y -intoxication/M -intra -intracellular -intracity -intraclass -intracohort -intractability/M -intractableness/M -intractable/P -intradepartmental -intrafamily -intragenerational -intraindustry -intraline -intrametropolitan -intramural/Y -intramuscular/Y -intranasal -intransigence/MS -intransigent/YS -intransitive/S -intraoffice -intraprocess -intrapulmonary -intraregional -intrasectoral -intrastate -intratissue -intrauterine -intravenous/YS -intrepidity/SM -intrepidness/M -intrepid/YP -intricacy/SM -intricateness/M -intricate/PY -intrigue/DRSZG -intriguer/M -intriguing/Y -intrinsically -intrinsic/S -introduce/ADSG -introducer/M -introduction/ASM -introductory -introit/SM -introject/SD -intro/S -introspection/MS -introspectiveness/M -introspective/YP -introspect/SGVD -introversion/SM -introvert/SMDG -intruder/M -intrude/ZGDSR -intrusion/SM -intrusiveness/MS -intrusive/SYP -intubate/NGDS -intubation/M -intuit/GVDSB -intuitionist/M -intuitiveness/MS -intuitive/YP -int/ZR -Inuit/MS -inundate/SXNG -inundation/M -inure/GDS -invader/M -invade/ZSRDG -invalid/GSDM -invalidism/MS -invariable/P -invariant/M -invasion/SM -invasive/P -invectiveness/M -invective/PSMY -inveigh/DRG -inveigher/M -inveighs -inveigle/DRSZG -inveigler/M -invent/ADGS -invented/U -invention/ASM -inventiveness/MS -inventive/YP -inventor/MS -inventory/SDMG -Inverness/M -inverse/YV -inverter/M -invertible -invert/ZSGDR -invest/ADSLG -investigate/XDSNGV -investigation/MA -investigator/MS -investigatory -investiture/SM -investment/ESA -investment's/A -investor/SM -inveteracy/MS -inveterate/Y -inviability -invidiousness/MS -invidious/YP -invigilate/GD -invigilator/SM -invigorate/ANGSD -invigorating/Y -invigoration/AM -invigorations -invincibility/SM -invincibleness/M -invincible/P -invincibly -inviolability/MS -inviolably -inviolateness/M -inviolate/YP -inviscid -invisibleness/M -invisible/S -invitational/S -invitation/MS -invited/U -invitee/S -inviter/M -invite/SRDG -inviting/Y -invocable -invocate -invoked/A -invoke/GSRDBZ -invoker/M -invokes/A -involuntariness/S -involuntary/P -involute/XYN -involution/M -involutorial -involvedly -involved/U -involve/GDSRL -involvement/SM -involver/M -invulnerability/M -invulnerableness/M -inwardness/M -inward/PY -ioctl -iodate/MGND -iodation/M -iodide/MS -iodinate/DNG -iodine/MS -iodize/GSD -Iolande/M -Iolanthe/M -Io/M -Iona/M -Ionesco/M -Ionian/M -ionic/S -Ionic/S -ionization's -ionization/SU -ionized/UC -ionize/GNSRDJXZ -ionizer's -ionizer/US -ionizes/U -ionizing/U -ionosphere/SM -ionospheric -ion's/I -ion/SMU -Iorgo/MS -Iormina/M -Iosep/M -iota/SM -IOU -Iowan/S -Iowa/SM -IPA -ipecac/MS -Iphigenia/M -ipso -Ipswich/M -IQ -Iqbal/M -Iquitos/M -Ira/M -Iranian/MS -Iran/M -Iraqi/SM -Iraq/M -IRA/S -irascibility/SM -irascible -irascibly -irateness/S -irate/RPYT -ireful -Ireland/M -ire/MGDS -Irena/M -Irene/M -irenic/S -iridescence/SM -iridescent/Y -irides/M -iridium/MS -irids -Irina/M -Iris -iris/GDSM -Irishman/M -Irishmen -Irish/R -Irishwoman/M -Irishwomen -Irita/M -irk/GDS -irksomeness/SM -irksome/YP -Irkutsk/M -Ir/M -Irma/M -ironclad/S -iron/DRMPSGJ -ironer/M -ironic -ironicalness/M -ironical/YP -ironing/M -ironmonger/M -ironmongery/M -ironside/MS -ironstone/MS -ironware/SM -ironwood/SM -ironworker/M -ironwork/MRS -irony/SM -Iroquoian/MS -Iroquois/M -irradiate/XSDVNG -irradiation/M -irrationality/MS -irrationalness/M -irrational/YSP -Irrawaddy/M -irreclaimable -irreconcilability/MS -irreconcilableness/M -irreconcilable/PS -irreconcilably -irrecoverableness/M -irrecoverable/P -irrecoverably -irredeemable/S -irredeemably -irredentism/M -irredentist/M -irreducibility/M -irreducible -irreducibly -irreflexive -irrefutable -irrefutably -irregardless -irregularity/SM -irregular/YS -irrelevance/SM -irrelevancy/MS -irrelevant/Y -irreligious -irremediableness/M -irremediable/P -irremediably -irremovable -irreparableness/M -irreparable/P -irreparably -irreplaceable/P -irrepressible -irrepressibly -irreproachableness/M -irreproachable/P -irreproachably -irreproducibility -irreproducible -irresistibility/M -irresistibleness/M -irresistible/P -irresistibly -irresoluteness/SM -irresolute/PNXY -irresolution/M -irresolvable -irrespective/Y -irresponsibility/SM -irresponsibleness/M -irresponsible/PS -irresponsibly -irretrievable -irretrievably -irreverence/MS -irreverent/Y -irreversible -irreversibly -irrevocableness/M -irrevocable/P -irrevocably -irrigable -irrigate/DSXNG -irrigation/M -irritability/MS -irritableness/M -irritable/P -irritably -irritant/S -irritate/DSXNGV -irritated/Y -irritating/Y -irritation/M -irrupt/GVSD -irruption/SM -IRS -Irtish/M -Irvine/M -Irving/M -Irvin/M -Irv/MG -Irwin/M -Irwinn/M -is -i's -Isaac/SM -Isaak/M -Isabelita/M -Isabella/M -Isabelle/M -Isabel/M -Isacco/M -Isac/M -Isadora/M -Isadore/M -Isador/M -Isahella/M -Isaiah/M -Isak/M -Isa/M -ISBN -Iscariot/M -Iseabal/M -Isfahan/M -Isherwood/M -Ishim/M -Ishmael/M -Ishtar/M -Isiahi/M -Isiah/M -Isidora/M -Isidore/M -Isidor/M -Isidoro/M -Isidro/M -isinglass/MS -Isis/M -Islamabad/M -Islamic/S -Islam/SM -islander/M -island/GZMRDS -Islandia/M -isle/MS -islet/SM -isl/GD -Ismael/M -ism/MCS -isn't -ISO -isobaric -isobar/MS -Isobel/M -isochronal/Y -isochronous/Y -isocline/M -isocyanate/M -isodine -isolate/SDXNG -isolationism/SM -isolationistic -isolationist/SM -isolation/M -isolator/MS -Isolde/M -isomeric -isomerism/SM -isomer/SM -isometrically -isometric/S -isometrics/M -isomorphic -isomorphically -isomorphism/MS -isomorph/M -isoperimetrical -isopleth/M -isopleths -isosceles -isostatic -isothermal/Y -isotherm/MS -isotonic -isotope/SM -isotopic -isotropic -isotropically -isotropy/M -Ispahan's -ispell/M -Ispell/M -Israeli/MS -Israelite/SM -Israel/MS -Issac/M -Issiah/M -Issie/M -Issi/M -issuable -issuance/MS -issuant -issued/A -issue/GMZDSR -issuer/AMS -issues/A -issuing/A -Issy/M -Istanbul/M -isthmian/S -isthmus/SM -Istvan/M -Isuzu/M -It -IT -Itaipu/M -ital -Italianate/GSD -Italian/MS -italicization/MS -italicized/U -italicize/GSD -italic/S -Ital/M -Italy/M -Itasca/M -itch/GMDS -itchiness/MS -Itch/M -itchy/RTP -ITcorp/M -ITCorp/M -it'd -Itel/M -itemization/SM -itemized/U -itemize/GZDRS -itemizer/M -itemizes/A -item/MDSG -iterate/ASDXVGN -iteration/M -iterative/YA -iterator/MS -Ithaca/M -Ithacan -itinerant/SY -itinerary/MS -it'll -it/MUS -Ito/M -its -itself -ITT -IUD/S -IV -Iva/M -Ivanhoe/M -Ivan/M -Ivar/M -I've -Ive/MRS -Iver/M -Ivette/M -Ivett/M -Ivie/M -iv/M -Ivonne/M -Ivor/M -Ivory/M -ivory/SM -IVs -Ivy/M -ivy/MDS -ix -Izaak/M -Izabel/M -Izak/M -Izanagi/M -Izanami/M -Izhevsk/M -Izmir/M -Izvestia/M -Izzy/M -jabbed -jabberer/M -jabber/JRDSZG -jabbing -Jabez/M -Jablonsky/M -jabot/MS -jab/SM -jacaranda/MS -Jacenta/M -Jacinda/M -Jacinta/M -Jacintha/M -Jacinthe/M -jackal/SM -jackass/SM -jackboot/DMS -jackdaw/SM -Jackelyn/M -jacketed/U -jacket/GSMD -jack/GDRMS -jackhammer/MDGS -Jackie/M -Jacki/M -jackknife/MGSD -jackknives -Jacklin/M -Jacklyn/M -Jack/M -Jackman/M -jackpot/MS -Jackqueline/M -Jackquelin/M -jackrabbit/DGS -Jacksonian -Jackson/SM -Jacksonville/M -jackstraw/MS -Jacky/M -Jaclin/M -Jaclyn/M -Jacobean -Jacobian/M -Jacobi/M -Jacobin/M -Jacobite/M -Jacobo/M -Jacobsen/M -Jacob/SM -Jacobs/N -Jacobson/M -Jacobus -Jacoby/M -jacquard/MS -Jacquard/SM -Jacqueline/M -Jacquelin/M -Jacquelyn/M -Jacquelynn/M -Jacquenetta/M -Jacquenette/M -Jacques/M -Jacquetta/M -Jacquette/M -Jacquie/M -Jacqui/M -jacuzzi -Jacuzzi/S -Jacynth/M -Jada/M -jadedness/SM -jaded/PY -jadeite/SM -Jade/M -jade/MGDS -Jaeger/M -Jae/M -jaggedness/SM -jagged/RYTP -Jagger/M -jaggers -jagging -jag/S -jaguar/MS -jailbird/MS -jailbreak/SM -jailer/M -jail/GZSMDR -Jaime/M -Jaimie/M -Jaine/M -Jainism/M -Jain/M -Jaipur/M -Jakarta/M -Jake/MS -Jakie/M -Jakob/M -jalapeo/S -jalopy/SM -jalousie/MS -Jamaal/M -Jamaica/M -Jamaican/S -Jamal/M -Jamar/M -jambalaya/MS -jamb/DMGS -jamboree/MS -Jamel/M -Jame/MS -Jameson/M -Jamestown/M -Jamesy/M -Jamey/M -Jamie/M -Jamill/M -Jamil/M -Jami/M -Jamima/M -Jamison/M -Jammal/M -jammed/U -Jammie/M -jamming/U -jam/SM -Janacek/M -Jana/M -Janaya/M -Janaye/M -Jandy/M -Janean/M -Janeczka/M -Janeen/M -Janeiro/M -Janek/M -Janela/M -Janella/M -Janelle/M -Janell/M -Janel/M -Jane/M -Janene/M -Janenna/M -Janessa/M -Janesville/M -Janeta/M -Janet/M -Janetta/M -Janette/M -Janeva/M -Janey/M -jangler/M -jangle/RSDGZ -jangly -Jania/M -Janice/M -Janie/M -Janifer/M -Janina/M -Janine/M -Janis/M -janissary/MS -Janith/M -janitorial -janitor/SM -Janka/M -Jan/M -Janna/M -Jannelle/M -Jannel/M -Jannie/M -Janos/M -Janot/M -Jansenist/M -Jansen/M -January/MS -Janus/M -Jany/M -Japanese/SM -Japan/M -japanned -japanner -japanning -japan/SM -jape/DSMG -Japura/M -Jaquelin/M -Jaquelyn/M -Jaquenetta/M -Jaquenette/M -Jaquith/M -Jarad/M -jardinire/MS -Jard/M -Jareb/M -Jared/M -jarful/S -jargon/SGDM -Jarib/M -Jarid/M -Jarlsberg -jar/MS -Jarrad/M -jarred -Jarred/M -Jarret/M -Jarrett/M -Jarrid/M -jarring/SY -Jarrod/M -Jarvis/M -Jase/M -Jasen/M -Jasmina/M -Jasmine/M -jasmine/MS -Jasmin/M -Jason/M -Jasper/M -jasper/MS -Jastrow/M -Jasun/M -jato/SM -jaundice/DSMG -jaundiced/U -jauntily -jauntiness/MS -jaunt/MDGS -jaunty/SRTP -Javanese -Java/SM -javelin/SDMG -Javier/M -jawbone/SDMG -jawbreaker/SM -jawline -jaw/SMDG -Jaxartes/M -Jayapura/M -jaybird/SM -Jaycee/SM -Jaye/M -Jay/M -Jaymee/M -Jayme/M -Jaymie/M -Jaynell/M -Jayne/M -jay/SM -Jayson/M -jaywalker/M -jaywalk/JSRDZG -Jazmin/M -jazziness/M -jazzmen -jazz/MGDS -jazzy/PTR -JCS -jct -JD -Jdavie/M -jealousness/M -jealous/PY -jealousy/MS -Jeana/M -Jeanelle/M -Jeane/M -Jeanette/M -Jeanie/M -Jeanine/M -Jean/M -jean/MS -Jeanna/M -Jeanne/M -Jeannette/M -Jeannie/M -Jeannine/M -Jecho/M -Jedd/M -Jeddy/M -Jedediah/M -Jedidiah/M -Jedi/M -Jed/M -jeep/GZSMD -Jeep/S -jeerer/M -jeering/Y -jeer/SJDRMG -Jeeves/M -jeez -Jefferey/M -Jeffersonian/S -Jefferson/M -Jeffery/M -Jeffie/M -Jeff/M -Jeffrey/SM -Jeffry/M -Jeffy/M -jehad's -Jehanna/M -Jehoshaphat/M -Jehovah/M -Jehu/M -jejuna -jejuneness/M -jejune/PY -jejunum/M -Jekyll/M -Jelene/M -jell/GSD -Jello/M -jello's -jellybean/SM -jellyfish/MS -jellying/M -jellylike -jellyroll/S -jelly/SDMG -Jemie/M -Jemimah/M -Jemima/M -Jemmie/M -jemmy/M -Jemmy/M -Jena/M -Jenda/M -Jenelle/M -Jenica/M -Jeniece/M -Jenifer/M -Jeniffer/M -Jenilee/M -Jeni/M -Jenine/M -Jenkins/M -Jen/M -Jenna/M -Jennee/M -Jenner/M -jennet/SM -Jennette/M -Jennica/M -Jennie/M -Jennifer/M -Jennilee/M -Jenni/M -Jennine/M -Jennings/M -Jenn/RMJ -Jenny/M -jenny/SM -Jeno/M -Jensen/M -Jens/N -jeopard -jeopardize/GSD -jeopardy/MS -Jephthah/M -Jerad/M -Jerald/M -Jeralee/M -Jeramey/M -Jeramie/M -Jere/M -Jereme/M -jeremiad/SM -Jeremiah/M -Jeremiahs -Jeremias/M -Jeremie/M -Jeremy/M -Jericho/M -Jeri/M -jerker/M -jerk/GSDRJ -jerkily -jerkiness/SM -jerkin/SM -jerkwater/S -jerky/RSTP -Jermaine/M -Jermain/M -Jermayne/M -Jeroboam/M -Jerold/M -Jerome/M -Jeromy/M -Jerrie/M -Jerrilee/M -Jerrilyn/M -Jerri/M -Jerrine/M -Jerrod/M -Jerrold/M -Jerrome/M -jerrybuilt -Jerrylee/M -jerry/M -Jerry/M -jersey/MS -Jersey/MS -Jerusalem/M -Jervis/M -Jes -Jessalin/M -Jessalyn/M -Jessa/M -Jessamine/M -jessamine's -Jessamyn/M -Jessee/M -Jesselyn/M -Jesse/M -Jessey/M -Jessica/M -Jessie/M -Jessika/M -Jessi/M -jess/M -Jess/M -Jessy/M -jest/DRSGZM -jester/M -jesting/Y -Jesuit/SM -Jesus -Jeth/M -Jethro/M -jetliner/MS -jet/MS -jetport/SM -jetsam/MS -jetted/M -jetting/M -jettison/DSG -jetty/RSDGMT -jeweler/M -jewelery/S -jewel/GZMRDS -Jewelled/M -Jewelle/M -jewellery's -Jewell/MD -Jewel/M -jewelry/MS -Jewess/SM -Jewishness/MS -Jewish/P -Jew/MS -Jewry/MS -Jezebel/MS -j/F -JFK/M -jg/M -jibbed -jibbing -jibe/S -jib/MDSG -Jidda/M -jiff/S -jiffy/SM -jigged -jigger/SDMG -jigging/M -jiggle/SDG -jiggly/TR -jig/MS -jigsaw/GSDM -jihad/SM -Jilin -Jillana/M -Jillane/M -Jillayne/M -Jilleen/M -Jillene/M -Jillian/M -Jillie/M -Jilli/M -Jill/M -Jilly/M -jilt/DRGS -jilter/M -Jimenez/M -Jim/M -Jimmie/M -jimmy/GSDM -Jimmy/M -jimsonweed/S -Jinan -jingler/M -jingle/RSDG -jingly/TR -jingoism/SM -jingoistic -jingoist/SM -jingo/M -Jinnah/M -jinni's -jinn/MS -Jinny/M -jinrikisha/SM -jinx/GMDS -jitney/MS -jitterbugged -jitterbugger -jitterbugging -jitterbug/SM -jitter/S -jittery/TR -jiujitsu's -Jivaro/M -jive/MGDS -Joachim/M -Joana/M -Joane/M -Joanie/M -Joan/M -Joanna/M -Joanne/SM -Joann/M -Joaquin/M -jobbed -jobber/MS -jobbery/M -jobbing/M -Jobey/M -jobholder/SM -Jobie/M -Jobi/M -Jobina/M -joblessness/MS -jobless/P -Jobrel/M -job/SM -Job/SM -Jobye/M -Joby/M -Jobyna/M -Jocasta/M -Joceline/M -Jocelin/M -Jocelyne/M -Jocelyn/M -jockey/SGMD -jock/GDMS -Jock/M -Jocko/M -jockstrap/MS -jocoseness/MS -jocose/YP -jocosity/SM -jocularity/SM -jocular/Y -jocundity/SM -jocund/Y -Jodee/M -jodhpurs -Jodie/M -Jodi/M -Jody/M -Joeann/M -Joela/M -Joelie/M -Joella/M -Joelle/M -Joellen/M -Joell/MN -Joelly/M -Joellyn/M -Joel/MY -Joelynn/M -Joe/M -Joesph/M -Joete/M -joey/M -Joey/M -jogged -jogger/SM -jogging/S -joggler/M -joggle/SRDG -Jogjakarta/M -jog/S -Johan/M -Johannah/M -Johanna/M -Johannes -Johannesburg/M -Johann/M -Johansen/M -Johanson/M -Johna/MH -Johnathan/M -Johnath/M -Johnathon/M -Johnette/M -Johnie/M -Johnna/M -Johnnie/M -johnnycake/SM -Johnny/M -johnny/SM -Johnsen/M -john/SM -John/SM -Johns/N -Johnson/M -Johnston/M -Johnstown/M -Johny/M -Joice/M -join/ADGFS -joined/U -joiner/FSM -joinery/MS -jointed/EYP -jointedness/ME -joint/EGDYPS -jointer/M -jointly/F -joint's -jointures -joist/GMDS -Jojo/M -joke/MZDSRG -joker/M -jokey -jokier -jokiest -jokily -joking/Y -Jolee/M -Joleen/M -Jolene/M -Joletta/M -Jolie/M -Joliet's -Joli/M -Joline/M -Jolla/M -jollification/MS -jollily -jolliness/SM -jollity/MS -jolly/TSRDGP -Jolson/M -jolt/DRGZS -jolter/M -Joly/M -Jolyn/M -Jolynn/M -Jo/MY -Jonah/M -Jonahs -Jonas -Jonathan/M -Jonathon/M -Jonell/M -Jone/MS -Jones/S -Jonie/M -Joni/MS -Jon/M -jonquil/MS -Jonson/M -Joplin/M -Jordain/M -Jordana/M -Jordanian/S -Jordan/M -Jordanna/M -Jordon/M -Jorey/M -Jorgan/M -Jorge/M -Jorgensen/M -Jorgenson/M -Jorie/M -Jori/M -Jorrie/M -Jorry/M -Jory/M -Joscelin/M -Josee/M -Josefa/M -Josefina/M -Josef/M -Joseito/M -Jose/M -Josepha/M -Josephina/M -Josephine/M -Joseph/M -Josephs -Josephson/M -Josephus/M -Josey/M -josh/DSRGZ -josher/M -Joshia/M -Josh/M -Joshuah/M -Joshua/M -Josiah/M -Josias/M -Josie/M -Josi/M -Josselyn/M -joss/M -jostle/SDG -Josue/M -Josy/M -jot/S -jotted -jotter/SM -jotting/SM -Joule/M -joule/SM -jounce/SDG -jouncy/RT -Jourdain/M -Jourdan/M -journalese/MS -journal/GSDM -journalism/SM -journalistic -journalist/SM -journalize/DRSGZ -journalized/U -journalizer/M -journey/DRMZSGJ -journeyer/M -journeyman/M -journeymen -jouster/M -joust/ZSMRDG -Jovanovich/M -Jove/M -joviality/SM -jovial/Y -Jovian -jowl/SMD -jowly/TR -Joya/M -Joyan/M -Joyann/M -Joycean -Joycelin/M -Joyce/M -Joye/M -joyfuller -joyfullest -joyfulness/SM -joyful/PY -joylessness/MS -joyless/PY -Joy/M -joy/MDSG -Joyner/M -joyousness/MS -joyous/YP -joyridden -joyride/SRZMGJ -joyrode -joystick/S -Jozef/M -JP -Jpn -Jr/M -j's -J's -Jsandye/M -Juana/M -Juanita/M -Juan/M -Juarez -Jubal/M -jubilant/Y -jubilate/XNGDS -jubilation/M -jubilee/SM -Judah/M -Judaic -Judaical -Judaism/SM -Judas/S -juddered -juddering -Judd/M -Judea/M -Jude/M -judge/AGDS -judger/M -judge's -judgeship/SM -judgmental/Y -judgment/MS -judicable -judicatory/S -judicature/MS -judicial/Y -judiciary/S -judicious/IYP -judiciousness/SMI -Judie/M -Judi/MH -Juditha/M -Judith/M -Jud/M -judo/MS -Judon/M -Judson/M -Judye/M -Judy/M -jugate/F -jugful/SM -jugged -Juggernaut/M -juggernaut/SM -jugging -juggler/M -juggle/RSDGZ -jugglery/MS -jug/MS -jugular/S -juice/GMZDSR -juicer/M -juicily -juiciness/MS -juicy/TRP -Juieta/M -jujitsu/MS -jujube/SM -juju/M -jujutsu's -jukebox/SM -juke/GS -Julee/M -Jule/MS -julep/SM -Julia/M -Juliana/M -Juliane/M -Julian/M -Julianna/M -Julianne/M -Juliann/M -Julie/M -julienne/GSD -Julienne/M -Julieta/M -Juliet/M -Julietta/M -Juliette/M -Juli/M -Julina/M -Juline/M -Julio/M -Julissa/M -Julita/M -Julius/M -Jul/M -Julys -July/SM -jumble/GSD -jumbo/MS -jumper/M -jump/GZDRS -jumpily -jumpiness/MS -jumpsuit/S -jumpy/PTR -jun -junco/MS -junction/IMESF -juncture/SFM -Juneau/M -June/MS -Junette/M -Jungfrau/M -Jungian -jungle/SDM -Jung/M -Junia/M -Junie/M -Junina/M -juniority/M -junior/MS -Junior/S -juniper/SM -junkerdom -Junker/SM -junketeer/SGDM -junket/SMDG -junk/GZDRMS -junkie/RSMT -junkyard/MS -Jun/M -Juno/M -junta/MS -Jupiter/M -Jurassic -juridic -juridical/Y -juried -jurisdictional/Y -jurisdiction/SM -jurisprudence/SM -jurisprudent -jurisprudential/Y -juristic -jurist/MS -juror/MS -Jurua/M -jury/IMS -jurying -juryman/M -jurymen -jurywoman/M -jurywomen -justed -Justen/M -juster/M -justest -Justice/M -justice/MIS -justiciable -justifiability/M -justifiable/U -justifiably/U -justification/M -justified/UA -justifier/M -justify/GDRSXZN -Justina/M -Justine/M -justing -Justinian/M -Justin/M -Justinn/M -Justino/M -Justis/M -justness/MS -justness's/U -justs -just/UPY -Justus/M -jute/SM -Jutish -Jutland/M -jut/S -jutted -jutting -Juvenal/M -juvenile/SM -juxtapose/SDG -juxtaposition/SM -JV -J/X -Jyoti/M -Kaaba/M -kabob/SM -kaboom -Kabuki -kabuki/SM -Kabul/M -Kacey/M -Kacie/M -Kacy/M -Kaddish/M -kaddish/S -Kaela/M -kaffeeklatch -kaffeeklatsch/S -Kafkaesque -Kafka/M -kaftan's -Kagoshima/M -Kahaleel/M -Kahlil/M -Kahlua/M -Kahn/M -Kaia/M -Kaifeng/M -Kaila/M -Kaile/M -Kailey/M -Kai/M -Kaine/M -Kain/M -kaiser/MS -Kaiser/SM -Kaitlin/M -Kaitlyn/M -Kaitlynn/M -Kaja/M -Kajar/M -Kakalina/M -Kalahari/M -Kala/M -Kalamazoo/M -Kalashnikov/M -Kalb/M -Kaleb/M -Kaleena/M -kaleidescope -kaleidoscope/SM -kaleidoscopic -kaleidoscopically -Kale/M -kale/MS -Kalgoorlie/M -Kalie/M -Kalila/M -Kalil/M -Kali/M -Kalina/M -Kalinda/M -Kalindi/M -Kalle/M -Kalli/M -Kally/M -Kalmyk -Kalvin/M -Kama/M -Kamchatka/M -Kamehameha/M -Kameko/M -Kamikaze/MS -kamikaze/SM -Kamilah/M -Kamila/M -Kamillah/M -Kampala/M -Kampuchea/M -Kanchenjunga/M -Kandace/M -Kandahar/M -Kandinsky/M -Kandy/M -Kane/M -kangaroo/SGMD -Kania/M -Kankakee/M -Kan/MS -Kannada/M -Kano/M -Kanpur/M -Kansan/S -Kansas -Kantian -Kant/M -Kanya/M -Kaohsiung/M -kaolinite/M -kaolin/MS -Kaplan/M -kapok/SM -Kaposi/M -kappa/MS -kaput/M -Karachi/M -Karaganda/M -Karakorum/M -karakul/MS -Karalee/M -Karalynn/M -Kara/M -Karamazov/M -karaoke/S -karate/MS -karat/SM -Karee/M -Kareem/M -Karel/M -Kare/M -Karena/M -Karenina/M -Karen/M -Karia/M -Karie/M -Karil/M -Karilynn/M -Kari/M -Karim/M -Karina/M -Karine/M -Karin/M -Kariotta/M -Karisa/M -Karissa/M -Karita/M -Karla/M -Karlan/M -Karlee/M -Karleen/M -Karlene/M -Karlen/M -Karlie/M -Karlik/M -Karlis -Karl/MNX -Karloff/M -Karlotta/M -Karlotte/M -Karly/M -Karlyn/M -karma/SM -Karmen/M -karmic -Karna/M -Karney/M -Karola/M -Karole/M -Karolina/M -Karoline/M -Karol/M -Karoly/M -Karon/M -Karo/YM -Karp/M -Karrah/M -Karrie/M -Karroo/M -Karry/M -kart/MS -Karylin/M -Karyl/M -Kary/M -Karyn/M -Kasai/M -Kasey/M -Kashmir/SM -Kaspar/M -Kasparov/M -Kasper/M -Kass -Kassandra/M -Kassey/M -Kassia/M -Kassie/M -Kassi/M -katakana -Katalin/M -Kata/M -Katee/M -Katelyn/M -Kate/M -Katerina/M -Katerine/M -Katey/M -Katha/M -Katharina/M -Katharine/M -Katharyn/M -Kathe/M -Katherina/M -Katherine/M -Katheryn/M -Kathiawar/M -Kathie/M -Kathi/M -Kathleen/M -Kathlin/M -Kath/M -Kathmandu -Kathrine/M -Kathryne/M -Kathryn/M -Kathye/M -Kathy/M -Katie/M -Kati/M -Katina/M -Katine/M -Katinka/M -Katleen/M -Katlin/M -Kat/M -Katmai/M -Katmandu's -Katowice/M -Katrina/M -Katrine/M -Katrinka/M -Kattie/M -Katti/M -Katuscha/M -Katusha/M -Katya/M -katydid/SM -Katy/M -Katz/M -Kauai/M -Kauffman/M -Kaufman/M -Kaunas/M -Kaunda/M -Kawabata/M -Kawasaki/M -kayak/SGDM -Kaycee/M -Kaye/M -Kayla/M -Kaylee/M -Kayle/M -Kayley/M -Kaylil/M -Kaylyn/M -Kay/M -Kayne/M -kayo/DMSG -Kazakh/M -Kazakhstan -Kazan/M -Kazantzakis/M -kazoo/SM -Kb -KB -KC -kcal/M -kc/M -KDE/M -Keane/M -Kean/M -Kearney/M -Keary/M -Keaton/M -Keats/M -kebab/SM -Keck/M -Keefe/MR -Keefer/M -Keegan/M -Keelby/M -Keeley/M -keel/GSMDR -keelhaul/SGD -Keelia/M -Keely/M -Keenan/M -Keene/M -keener/M -keen/GTSPYDR -keening/M -Keen/M -keenness/MS -keeper/M -keep/GZJSR -keeping/M -keepsake/SM -Keewatin/M -kegged -kegging -keg/MS -Keillor/M -Keir/M -Keisha/M -Keith/M -Kelbee/M -Kelby/M -Kelcey/M -Kelcie/M -Kelci/M -Kelcy/M -Kele/M -Kelila/M -Kellby/M -Kellen/M -Keller/M -Kelley/M -Kellia/M -Kellie/M -Kelli/M -Kellina/M -Kellogg/M -Kellsie/M -Kellyann/M -Kelly/M -kelp/GZMDS -Kelsey/M -Kelsi/M -Kelsy/M -Kelt's -Kelvin/M -kelvin/MS -Kelwin/M -Kemerovo/M -Kempis/M -Kemp/M -Kendall/M -Kendal/M -Kendell/M -Kendra/M -Kendre/M -Kendrick/MS -Kenilworth/M -Ken/M -Kenmore/M -ken/MS -Kenna/M -Kennan/M -Kennecott/M -kenned -Kennedy/M -kennel/GSMD -Kenneth/M -Kennett/M -Kennie/M -kenning -Kennith/M -Kenn/M -Kenny/M -keno/M -Kenon/M -Kenosha/M -Kensington/M -Kent/M -Kenton/M -Kentuckian/S -Kentucky/M -Kenya/M -Kenyan/S -Kenyatta/M -Kenyon/M -Keogh/M -Keokuk/M -kepi/SM -Kepler/M -kept -keratin/MS -kerbside -Kerby/M -kerchief/MDSG -Kerensky/M -Kerianne/M -Keriann/M -Keri/M -Kerk/M -Ker/M -Kermie/M -Kermit/M -Kermy/M -kerned -kernel/GSMD -kerning -Kern/M -kerosene/MS -Kerouac/M -Kerrie/M -Kerrill/M -Kerri/M -Kerrin/M -Kerr/M -Kerry/M -Kerstin/M -Kerwin/M -Kerwinn/M -Kesley/M -Keslie/M -Kessiah/M -Kessia/M -Kessler/M -kestrel/SM -ketch/MS -ketchup/SM -ketone/M -ketosis/M -Kettering/M -Kettie/M -Ketti/M -kettledrum/SM -kettleful -kettle/SM -Ketty/M -Kevan/M -Keven/M -Kevina/M -Kevin/M -Kevlar -Kev/MN -Kevon/M -Kevorkian/M -Kevyn/M -Kewaskum/M -Kewaunee/M -Kewpie/M -keyboardist/S -keyboard/RDMZGS -keyclick/SM -keyhole/MS -Key/M -Keynesian/M -Keynes/M -keynoter/M -keynote/SRDZMG -keypad/MS -keypuncher/M -keypunch/ZGRSD -keyring -key/SGMD -keystone/SM -keystroke/SDMG -keyword/SM -k/FGEIS -kg -K/G -KGB -Khabarovsk/M -Khachaturian/M -khaki/SM -Khalid/M -Khalil/M -Khan/M -khan/MS -Kharkov/M -Khartoum/M -Khayyam/M -Khmer/M -Khoisan/M -Khomeini/M -Khorana/M -Khrushchev/SM -Khufu/M -Khulna/M -Khwarizmi/M -Khyber/M -kHz/M -KIA -Kiah/M -Kial/M -kibble/GMSD -kibbutzim -kibbutz/M -kibitzer/M -kibitz/GRSDZ -kibosh/GMSD -Kickapoo/M -kickback/SM -kickball/MS -kicker/M -kick/GZDRS -kickoff/SM -kickstand/MS -kicky/RT -kidded -kidder/SM -kiddie/SD -kidding/YM -kiddish -Kidd/M -kiddo/SM -kiddying -kiddy's -kidless -kid/MS -kidnaper's -kidnaping's -kidnap/MSJ -kidnapped -kidnapper/SM -kidnapping/S -kidney/MS -kidskin/SM -Kieffer/M -kielbasa/SM -kielbasi -Kiele/M -Kiel/M -Kienan/M -kier/I -Kierkegaard/M -Kiersten/M -Kieth/M -Kiev/M -Kigali/M -Kikelia/M -Kikuyu/M -Kilauea/M -Kile/M -Kiley/M -Kilian/M -Kilimanjaro/M -kill/BJGZSDR -killdeer/SM -Killebrew/M -killer/M -Killian/M -Killie/M -killing/Y -killjoy/S -Killy/M -kiln/GDSM -kilobaud/M -kilobit/S -kilobuck -kilobyte/S -kilocycle/MS -kilogauss/M -kilogram/MS -kilohertz/M -kilohm/M -kilojoule/MS -kiloliter/MS -kilometer/SM -kilo/SM -kiloton/SM -kilovolt/SM -kilowatt/SM -kiloword -kilter/M -kilt/MDRGZS -Ki/M -Kimball/M -Kimbell/M -Kimberlee/M -Kimberley/M -Kimberli/M -Kimberly/M -Kimberlyn/M -Kimble/M -Kimbra/M -Kim/M -Kimmie/M -Kimmi/M -Kimmy/M -kimono/MS -Kincaid/M -kinda -kindergarten/MS -kindergrtner/SM -kinder/U -kindheartedness/MS -kindhearted/YP -kindle/AGRSD -kindler/M -kindliness/SM -kindliness's/U -kindling/M -kindly/TUPR -kindness's -kindness/US -kind/PSYRT -kindred/S -kinematic/S -kinematics/M -kinesics/M -kine/SM -kinesthesis -kinesthetically -kinesthetic/S -kinetically -kinetic/S -kinetics/M -kinfolk/S -kingbird/M -kingdom/SM -kingfisher/MS -kinglet/M -kingliness/M -kingly/TPR -King/M -kingpin/MS -Kingsbury/M -king/SGYDM -kingship/SM -Kingsley/M -Kingsly/M -Kingston/M -Kingstown/M -Kingwood/M -kink/GSDM -kinkily -kinkiness/SM -kinky/PRT -Kin/M -kin/MS -Kinna/M -Kinney/M -Kinnickinnic/M -Kinnie/M -Kinny/M -Kinsey/M -kinsfolk/S -Kinshasa/M -Kinshasha/M -kinship/SM -Kinsley/M -kinsman/M -kinsmen/M -kinswoman/M -kinswomen -kiosk/SM -Kiowa/SM -Kipling/M -Kip/M -kip/MS -Kippar/M -kipped -kipper/DMSG -Kipper/M -Kippie/M -kipping -Kipp/MR -Kippy/M -Kira/M -Kirbee/M -Kirbie/M -Kirby/M -Kirchhoff/M -Kirchner/M -Kirchoff/M -Kirghistan/M -Kirghizia/M -Kirghiz/M -Kiribati -Kiri/M -Kirinyaga/M -kirk/GDMS -Kirkland/M -Kirk/M -Kirkpatrick/M -Kirkwood/M -Kirov/M -kirsch/S -Kirsteni/M -Kirsten/M -Kirsti/M -Kirstin/M -Kirstyn/M -Kisangani/M -Kishinev/M -kismet/SM -kiss/DSRBJGZ -Kissee/M -kisser/M -Kissiah/M -Kissie/M -Kissinger/M -Kitakyushu/M -kitbag's -kitchener/M -Kitchener/M -kitchenette/SM -kitchen/GDRMS -kitchenware/SM -kiter/M -kite/SM -kith/MDG -kiths -Kit/M -kit/MDRGS -kitsch/MS -kitschy -kitted -kittenishness/M -kittenish/YP -kitten/SGDM -Kittie/M -Kitti/M -kitting -kittiwakes -Kitty/M -kitty/SM -Kiwanis/M -kiwifruit/S -kiwi/SM -Kizzee/M -Kizzie/M -KKK -kl -Klan/M -Klansman/M -Klara/M -Klarika/M -Klarrisa/M -Klaus/M -klaxon/M -Klee/M -Kleenex/SM -Klein/M -Kleinrock/M -Klemens/M -Klement/M -Kleon/M -kleptomaniac/SM -kleptomania/MS -Kliment/M -Kline/M -Klingon/M -Klondike/SDMG -kludger/M -kludge/RSDGMZ -kludgey -klutziness/S -klutz/SM -klutzy/TRP -Klux/M -klystron/MS -km -kn -knacker/M -knack/SGZRDM -knackwurst/MS -Knapp/M -knapsack/MS -Knauer/M -knavery/MS -knave/SM -knavish/Y -kneader/M -knead/GZRDS -kneecap/MS -kneecapped -kneecapping -knee/DSM -kneeing -kneeler/M -kneel/GRS -kneepad/SM -knell/SMDG -knelt -Knesset/M -knew -Kngwarreye/M -Knickerbocker/MS -knickerbocker/S -knickknack/SM -knick/ZR -Knievel/M -knife/DSGM -knighthood/MS -knightliness/MS -knightly/P -Knight/M -knight/MDYSG -knish/MS -knit/AU -knits -knitted -knitter/MS -knitting/SM -knitwear/M -knives/M -knobbly -knobby/RT -Knobeloch/M -knob/MS -knockabout/M -knockdown/S -knocker/M -knock/GZSJRD -knockoff/S -knockout/MS -knockwurst's -knoll/MDSG -Knopf/M -Knossos/M -knothole/SM -knot/MS -knotted -knottiness/M -knotting/M -knotty/TPR -knowable/U -knower/M -know/GRBSJ -knowhow -knowingly/U -knowing/RYT -knowings/U -knowledgeableness/M -knowledgeable/P -knowledgeably -knowledge/SM -Knowles -known/SU -Knox/M -Knoxville/M -knuckleball/R -knuckle/DSMG -knuckleduster -knucklehead/MS -Knudsen/M -Knudson/M -knurl/DSG -Knuth/M -Knutsen/M -Knutson/M -KO -koala/SM -Kobayashi/M -Kobe/M -Kochab/M -Koch/M -Kodachrome/M -Kodak/SM -Kodaly/M -Kodiak/M -Koenig/M -Koenigsberg/M -Koenraad/M -Koestler/M -Kohinoor/M -Kohler/M -Kohl/MR -kohlrabies -kohlrabi/M -kola/SM -Kolyma/M -Kommunizma/M -Kong/M -Kongo/M -Konrad/M -Konstance/M -Konstantine/M -Konstantin/M -Konstanze/M -kookaburra/SM -kook/GDMS -kookiness/S -kooky/PRT -Koo/M -Koontz/M -kopeck/MS -Koppers/M -Koralle/M -Koral/M -Kora/M -Koranic -Koran/SM -Kordula/M -Korea/M -Korean/S -Korella/M -Kore/M -Koren/M -Koressa/M -Korey/M -Korie/M -Kori/M -Kornberg/M -Korney/M -Korrie/M -Korry/M -Kort/M -Kory/M -Korzybski/M -Kosciusko/M -kosher/DGS -Kossuth/M -Kosygin/M -Kovacs/M -Kowalewski/M -Kowalski/M -Kowloon/M -kowtow/SGD -KP -kph -kraal/SMDG -Kraemer/M -kraft/M -Kraft/M -Krakatau's -Krakatoa/M -Krakow/M -Kramer/M -Krasnodar/M -Krasnoyarsk/M -Krause/M -kraut/S! -Krebs/M -Kremlin/M -Kremlinologist/MS -Kremlinology/MS -Kresge/M -Krieger/M -kriegspiel/M -krill/MS -Kringle/M -Krisha/M -Krishnah/M -Krishna/M -Kris/M -Krispin/M -Krissie/M -Krissy/M -Kristal/M -Krista/M -Kristan/M -Kristel/M -Kriste/M -Kristen/M -Kristian/M -Kristie/M -Kristien/M -Kristi/MN -Kristina/M -Kristine/M -Kristin/M -Kristofer/M -Kristoffer/M -Kristofor/M -Kristoforo/M -Kristo/MS -Kristopher/M -Kristy/M -Kristyn/M -Kr/M -Kroc/M -Kroger/M -krna/M -Kronecker/M -krone/RM -kronor -krnur -Kropotkin/M -Krueger/M -Kruger/M -Krugerrand/S -Krupp/M -Kruse/M -krypton/SM -Krystalle/M -Krystal/M -Krysta/M -Krystle/M -Krystyna/M -ks -K's -KS -k's/IE -kt -Kublai/M -Kubrick/M -kuchen/MS -kudos/M -kudzu/SM -Kuenning/M -Kuhn/M -Kuibyshev/M -Ku/M -Kumar/M -kumquat/SM -Kunming/M -Kuomintang/M -Kurdish/M -Kurdistan/SM -Kurd/SM -Kurosawa/M -Kurtis/M -Kurt/M -kurtosis/M -Kusch/M -Kuwaiti/SM -Kuwait/M -Kuznetsk/M -Kuznets/M -kvetch/DSG -kw -kW -Kwakiutl/M -Kwangchow's -Kwangju/M -Kwanzaa/S -kWh -KY -Kyla/M -kyle/M -Kyle/M -Kylen/M -Kylie/M -Kylila/M -Kylynn/M -Ky/MH -Kym/M -Kynthia/M -Kyoto/M -Kyrgyzstan -Kyrstin/M -Kyushu/M -L -LA -Laban/M -labeled/U -labeler/M -label/GAZRDS -labellings/A -label's -labial/YS -labia/M -labile -labiodental -labium/M -laboratory/MS -laboredness/M -labored/PMY -labored's/U -laborer/M -laboring/MY -laborings/U -laboriousness/MS -laborious/PY -labor/RDMJSZG -laborsaving -Labradorean/S -Labrador/SM -lab/SM -Lab/SM -laburnum/SM -labyrinthine -labyrinth/M -labyrinths -laced/U -Lacee/M -lace/MS -lacerate/NGVXDS -laceration/M -lacer/M -laces/U -lacewing/MS -Lacey/M -Lachesis/M -lachrymal/S -lachrymose -Lacie/M -lacing/M -lackadaisic -lackadaisical/Y -Lackawanna/M -lacker/M -lackey/SMDG -lack/GRDMS -lackluster/S -Lac/M -laconic -laconically -lacquerer/M -lacquer/ZGDRMS -lacrosse/MS -lac/SGMDR -lactate/MNGSDX -lactational/Y -lactation/M -lacteal -lactic -lactose/MS -lacunae -lacuna/M -Lacy/M -lacy/RT -ladder/GDMS -laddie/MS -laded/U -ladened -ladening -laden/U -lade/S -lading/M -ladle/SDGM -Ladoga/M -Ladonna/M -lad/XGSJMND -ladybird/SM -ladybug/MS -ladyfinger/SM -ladylike/U -ladylove/MS -Ladyship/MS -ladyship/SM -lady/SM -Lady/SM -Laetitia/M -laetrile/S -Lafayette/M -Lafitte/M -lager/DMG -laggard/MYSP -laggardness/M -lagged -lagging/MS -lagniappe/SM -lagoon/MS -Lagos/M -Lagrange/M -Lagrangian/M -Laguerre/M -Laguna/M -lag/ZSR -Lahore/M -laid/AI -Laidlaw/M -lain -Laina/M -Lainey/M -Laird/M -laird/MS -lair/GDMS -laissez -laity/SM -Laius/M -lake/DSRMG -Lakehurst/M -Lakeisha/M -laker/M -lakeside -Lakewood/M -Lakisha/M -Lakshmi/M -lallygagged -lallygagging -lallygag/S -Lalo/M -La/M -Lamaism/SM -Lamarck/M -Lamar/M -lamasery/MS -lama/SM -Lamaze -lambada/S -lambaste/SDG -lambda/SM -lambency/MS -lambent/Y -Lambert/M -lambkin/MS -Lamb/M -Lamborghini/M -lambskin/MS -lamb/SRDMG -lambswool -lamebrain/SM -lamed/M -lameness/MS -lamentableness/M -lamentable/P -lamentably -lamentation/SM -lament/DGSB -lamented/U -lame/SPY -la/MHLG -laminae -lamina/M -laminar -laminate/XNGSD -lamination/M -lam/MDRSTG -lammed -lammer -lamming -Lammond/M -Lamond/M -Lamont/M -L'Amour -lampblack/SM -lamplighter/M -lamplight/ZRMS -lampooner/M -lampoon/RDMGS -Lamport/M -lamppost/SM -lamprey/MS -lamp/SGMRD -lampshade/MS -LAN -Lanae/M -Lanai/M -lanai/SM -Lana/M -Lancashire/M -Lancaster/M -Lancelot/M -Lance/M -lancer/M -lance/SRDGMZ -lancet/MS -landau/MS -lander/I -landfall/SM -landfill/DSG -landforms -landholder/M -landhold/JGZR -landing/M -Landis/M -landlady/MS -landless -landlines -landlocked -landlord/MS -landlubber/SM -Land/M -landmark/GSMD -landmass/MS -Landon/M -landowner/MS -landownership/M -landowning/SM -Landry/M -Landsat -landscape/GMZSRD -landscaper/M -lands/I -landslide/MS -landslid/G -landslip -landsman/M -landsmen -land/SMRDJGZ -Landsteiner/M -landward/S -Landwehr/M -Lane/M -lane/SM -Lanette/M -Laney/M -Langeland/M -Lange/M -Langerhans/M -Langford/M -Langland/M -Langley/M -Lang/M -Langmuir/M -Langsdon/M -Langston/M -language/MS -languidness/MS -languid/PY -languisher/M -languishing/Y -languish/SRDG -languorous/Y -languor/SM -Lanie/M -Lani/M -Lanita/M -lankiness/SM -lankness/MS -lank/PTYR -lanky/PRT -Lanna/M -Lannie/M -Lanni/M -Lanny/M -lanolin/MS -Lansing/M -lantern/GSDM -lanthanide/M -lanthanum/MS -lanyard/MS -Lanzhou -Laocoon/M -Lao/SM -Laotian/MS -lapboard/MS -lapdog/S -lapel/MS -lapidary/MS -lapin/MS -Laplace/M -Lapland/ZMR -lapped -lappet/MS -lapping -Lapp/SM -lapsed/A -lapse/KSDMG -lapser/MA -lapses/A -lapsing/A -lap/SM -laps/SRDG -laptop/SM -lapwing/MS -Laraine/M -Lara/M -Laramie/M -larboard/MS -larcenist/S -larcenous -larceny/MS -larch/MS -larder/M -lard/MRDSGZ -Lardner/M -lardy/RT -Laredo/M -largehearted -largemouth -largeness/SM -large/SRTYP -largess/SM -largish -largo/S -lariat/MDGS -Lari/M -Larina/M -Larine/M -Larisa/M -Larissa/M -larker/M -lark/GRDMS -Lark/M -larkspur/MS -Larousse/M -Larry/M -Larsen/M -Lars/NM -Larson/M -larvae -larval -larva/M -laryngeal/YS -larynges -laryngitides -laryngitis/M -larynx/M -Laryssa/M -lasagna/S -lasagne's -Lascaux/M -lasciviousness/MS -lascivious/YP -lase -laser/M -lashed/U -lasher/M -lashing/M -lash/JGMSRD -Lassa/M -Lassen/M -Lassie/M -lassie/SM -lassitude/MS -lassoer/M -lasso/GRDMS -las/SRZG -lass/SM -laster/M -lastingness/M -lasting/PY -last/JGSYRD -Laszlo/M -Latasha/M -Latashia/M -latching/M -latchkey/SM -latch's -latch/UGSD -latecomer/SM -lated/A -late/KA -lately -latency/MS -lateness/MS -latent/YS -later/A -lateral/GDYS -lateralization -Lateran/M -latest/S -LaTeX/M -latex/MS -lathe/M -latherer/M -lather/RDMG -lathery -lathing/M -lath/MSRDGZ -Lathrop/M -laths -Latia/M -latices/M -Latina/SM -Latinate -Latino/S -Latin/RMS -latish -Latisha/M -latitude/SM -latitudinal/Y -latitudinarian/S -latitudinary -Lat/M -Latonya/M -Latoya/M -Latrena/M -Latrina/M -latrine/MS -Latrobe/M -lat/SDRT -latter/YM -latte/SR -lattice/SDMG -latticework/MS -latticing/M -Lattimer/M -Latvia/M -Latvian/S -laudably -laudanum/MS -laudatory -Lauderdale/M -lauder/M -Lauder/M -Laud/MR -laud/RDSBG -lauds/M -Laue/M -laughableness/M -laughable/P -laughably -laugh/BRDZGJ -laugher/M -laughing/MY -laughingstock/SM -laughs -laughter/MS -Laughton/M -Launce/M -launch/AGSD -launcher/MS -launching/S -launchpad/S -laundered/U -launderer/M -launderette/MS -launder/SDRZJG -laundress/MS -laundrette/S -laundromat/S -Laundromat/SM -laundryman/M -laundrymen -laundry/MS -laundrywoman/M -laundrywomen -Lauraine/M -Lauralee/M -Laural/M -laura/M -Laura/M -Laurasia/M -laureate/DSNG -laureateship/SM -Lauree/M -Laureen/M -Laurella/M -Laurel/M -laurel/SGMD -Laure/M -Laurena/M -Laurence/M -Laurene/M -Lauren/SM -Laurentian -Laurent/M -Lauretta/M -Laurette/M -Laurianne/M -Laurice/M -Laurie/M -Lauri/M -Lauritz/M -Lauryn/M -Lausanne/M -lavage/MS -lavaliere/MS -Laval/M -lava/SM -lavatory/MS -lave/GDS -Lavena/M -lavender/MDSG -Laverna/M -Laverne/M -Lavern/M -Lavina/M -Lavinia/M -Lavinie/M -lavishness/MS -lavish/SRDYPTG -Lavoisier/M -Lavonne/M -Lawanda/M -lawbreaker/SM -lawbreaking/MS -Lawford/M -lawfulness/SMU -lawful/PUY -lawgiver/MS -lawgiving/M -lawlessness/MS -lawless/PY -Law/M -lawmaker/MS -lawmaking/SM -lawman/M -lawmen -lawnmower/S -lawn/SM -Lawrence/M -Lawrenceville/M -lawrencium/SM -Lawry/M -law/SMDG -Lawson/M -lawsuit/MS -Lawton/M -lawyer/DYMGS -laxativeness/M -laxative/PSYM -laxer/A -laxes/A -laxity/SM -laxness/SM -lax/PTSRY -layabout/MS -Layamon/M -layaway/S -lay/CZGSR -layered/C -layer/GJDM -layering/M -layer's/IC -layette/SM -Layla/M -Lay/M -layman/M -laymen -Layne/M -Layney/M -layoff/MS -layout/SM -layover/SM -laypeople -layperson/S -lays/AI -Layton/M -layup/MS -laywoman/M -laywomen -Lazare/M -Lazar/M -Lazaro/M -Lazarus/M -laze/DSG -lazily -laziness/MS -lazuli/M -lazybones/M -lazy/PTSRDG -lb -LBJ/M -lbs -LC -LCD -LCM -LDC -leachate -Leach/M -leach/SDG -Leadbelly/M -leaded/U -leadenness/M -leaden/PGDY -leaderless -leader/M -leadership/MS -lead/SGZXJRDN -leadsman/M -leadsmen -leafage/MS -leaf/GSDM -leafhopper/M -leafiness/M -leafless -leaflet/SDMG -leafstalk/SM -leafy/PTR -leaguer/M -league/RSDMZG -Leah/M -leakage/SM -leaker/M -Leakey/M -leak/GSRDM -leakiness/MS -leaky/PRT -Lea/M -lea/MS -Leander/M -Leandra/M -leaner/M -leaning/M -Lean/M -Leanna/M -Leanne/M -leanness/MS -Leann/M -Leanora/M -Leanor/M -lean/YRDGTJSP -leaper/M -leapfrogged -leapfrogging -leapfrog/SM -leap/RDGZS -Lear/M -learnedly -learnedness/M -learned/UA -learner/M -learning/M -learns/UA -learn/SZGJRD -Leary/M -lease/ARSDG -leaseback/MS -leaseholder/M -leasehold/SRMZ -leaser/MA -lease's -leash's -leash/UGSD -leasing/M -leas/SRDGZ -least/S -leastwise -leatherette/S -leather/MDSG -leathern -leatherneck/SM -leathery -leaven/DMJGS -leavened/U -leavening/M -Leavenworth/M -leaver/M -leaves/M -leave/SRDJGZ -leaving/M -Lebanese -Lebanon/M -Lebbie/M -lebensraum -Lebesgue/M -Leblanc/M -lecher/DMGS -lecherousness/MS -lecherous/YP -lechery/MS -lecithin/SM -lectern/SM -lecturer/M -lecture/RSDZMG -lectureship/SM -led -Leda/M -Lederberg/M -ledger/DMG -ledge/SRMZ -LED/SM -Leeanne/M -Leeann/M -leech/MSDG -Leeds/M -leek/SM -Leelah/M -Leela/M -Leeland/M -Lee/M -lee/MZRS -Leena/M -leer/DG -leeriness/MS -leering/Y -leery/PTR -Leesa/M -Leese/M -Leeuwenhoek/M -Leeward/M -leeward/S -leeway/MS -leftism/SM -leftist/SM -leftmost -leftover/MS -Left/S -left/TRS -leftward/S -Lefty/M -lefty/SM -legacy/MS -legalese/MS -legalism/SM -legalistic -legality/MS -legalization/MS -legalize/DSG -legalized/U -legal/SY -legate/AXCNGSD -legatee/MS -legate's/C -legation/AMC -legato/SM -legendarily -legendary/S -Legendre/M -legend/SM -legerdemain/SM -Leger/SM -legged -legginess/MS -legging/MS -leggy/PRT -leghorn/SM -Leghorn/SM -legibility/MS -legible -legibly -legionary/S -legionnaire/SM -legion/SM -legislate/SDXVNG -legislation/M -legislative/SY -legislator/SM -legislature/MS -legitimacy/MS -legitimate/SDNGY -legitimation/M -legitimatize/SDG -legitimization/MS -legitimize/RSDG -legit/S -legless -legman/M -legmen -leg/MS -Lego/M -Legra/M -Legree/M -legroom/MS -legstraps -legume/SM -leguminous -legwork/SM -Lehigh/M -Lehman/M -Leia/M -Leibniz/M -Leicester/SM -Leiden/M -Leif/M -Leigha/M -Leigh/M -Leighton/M -Leilah/M -Leila/M -lei/MS -Leipzig/M -Leisha/M -leisureliness/MS -leisurely/P -leisure/SDYM -leisurewear -leitmotif/SM -leitmotiv/MS -Lek/M -Lelah/M -Lela/M -Leland/M -Lelia/M -Lemaitre/M -Lemar/M -Lemke/M -Lem/M -lemma/MS -lemme/GJ -Lemmie/M -lemming/M -Lemmy/M -lemonade/SM -lemon/GSDM -lemony -Lemuel/M -Lemuria/M -lemur/MS -Lena/M -Lenard/M -Lenci/M -lender/M -lend/SRGZ -Lenee/M -Lenette/M -lengthener/M -lengthen/GRD -lengthily -lengthiness/MS -length/MNYX -lengths -lengthwise -lengthy/TRP -lenience/S -leniency/MS -lenient/SY -Leningrad/M -Leninism/M -Leninist -Lenin/M -lenitive/S -Lenka/M -Len/M -Le/NM -Lenna/M -Lennard/M -Lennie/M -Lennon/M -Lenny/M -Lenoir/M -Leno/M -Lenora/M -Lenore/M -lens/SRDMJGZ -lent/A -lenticular -lentil/SM -lento/S -Lent/SMN -Leodora/M -Leoine/M -Leola/M -Leoline/M -Leo/MS -Leona/M -Leonanie/M -Leonard/M -Leonardo/M -Leoncavallo/M -Leonelle/M -Leonel/M -Leone/M -Leonerd/M -Leonhard/M -Leonidas/M -Leonid/M -Leonie/M -leonine -Leon/M -Leonora/M -Leonore/M -Leonor/M -Leontine/M -Leontyne/M -leopardess/SM -leopard/MS -leopardskin -Leopold/M -Leopoldo/M -Leopoldville/M -Leora/M -leotard/MS -leper/SM -Lepidus/M -Lepke/M -leprechaun/SM -leprosy/MS -leprous -lepta -lepton/SM -Lepus/M -Lerner/M -Leroi/M -Leroy/M -Lesa/M -lesbianism/MS -lesbian/MS -Leshia/M -lesion/DMSG -Lesley/M -Leslie/M -Lesli/M -Lesly/M -Lesotho/M -lessee/MS -lessen/GDS -Lesseps/M -lesser -lesses -Lessie/M -lessing -lesson/DMSG -lessor/MS -less/U -Lester/M -lest/R -Les/Y -Lesya/M -Leta/M -letdown/SM -lethality/M -lethal/YS -Letha/M -lethargic -lethargically -lethargy/MS -Lethe/M -Lethia/M -Leticia/M -Letisha/M -let/ISM -Letitia/M -Letizia/M -Letta/M -letterbox/S -lettered/U -letterer/M -letterhead/SM -lettering/M -letter/JSZGRDM -letterman/M -Letterman/M -lettermen -letterpress/MS -Lettie/M -Letti/M -letting/S -lettuce/SM -Letty/M -letup/MS -leukemia/SM -leukemic/S -leukocyte/MS -Leupold/M -Levant/M -leveeing -levee/SDM -leveled/U -leveler/M -levelheadedness/S -levelheaded/P -leveling/U -levelness/SM -level/STZGRDYP -leverage/MGDS -lever/SDMG -Levesque/M -Levey/M -Leviathan -leviathan/MS -levier/M -Levi/MS -Levine/M -Levin/M -levitate/XNGDS -levitation/M -Leviticus/M -Levitt/M -levity/MS -Lev/M -Levon/M -Levy/M -levy/SRDZG -lewdness/MS -lewd/PYRT -Lewellyn/M -Lewes -Lewie/M -Lewinsky/M -lewis/M -Lewis/M -Lewiss -Lew/M -lex -lexeme/MS -lexical/Y -lexicographer/MS -lexicographic -lexicographical/Y -lexicography/SM -lexicon/SM -Lexie/M -Lexi/MS -Lexine/M -Lexington/M -Lexus/M -Lexy/M -Leyden/M -Leyla/M -Lezley/M -Lezlie/M -lg -Lhasa/SM -Lhotse/M -liability/SAM -liable/AP -liaise/GSD -liaison/SM -Lia/M -Liam/M -Liana/M -Liane/M -Lian/M -Lianna/M -Lianne/M -liar/MS -libation/SM -libbed -Libbey/M -Libbie/M -Libbi/M -libbing -Libby/M -libeler/M -libel/GMRDSZ -libelous/Y -Liberace/M -liberalism/MS -liberality/MS -liberalization/SM -liberalized/U -liberalize/GZSRD -liberalizer/M -liberalness/MS -liberal/YSP -liberate/NGDSCX -liberationists -liberation/MC -liberator/SCM -Liberia/M -Liberian/S -libertarianism/M -libertarian/MS -libertine/MS -liberty/MS -libidinal -libidinousness/M -libidinous/PY -libido/MS -Lib/M -lib/MS -librarian/MS -library/MS -Libra/SM -libretoes -libretos -librettist/MS -libretto/MS -Libreville/M -Librium/M -Libya/M -Libyan/S -lice/M -licensed/AU -licensee/SM -license/MGBRSD -licenser/M -licenses/A -licensing/A -licensor/M -licentiate/MS -licentiousness/MS -licentious/PY -Licha/M -lichee's -lichen/DMGS -Lichtenstein/M -Lichter/M -licit/Y -licked/U -lickerish -licker/M -lick/GRDSJ -licking/M -licorice/SM -Lida/M -lidded -lidding -Lidia/M -lidless -lid/MS -lido/MS -Lieberman/M -Liebfraumilch/M -Liechtenstein/RMZ -lied/MR -lie/DRS -Lief/M -liefs/A -lief/TSR -Liege/M -liege/SR -Lie/M -lien/SM -lier/IMA -lies/A -Liesa/M -lieu/SM -lieut -lieutenancy/MS -lieutenant/SM -Lieut/M -lifeblood/SM -lifeboat/SM -lifebuoy/S -lifeforms -lifeguard/MDSG -lifelessness/SM -lifeless/PY -lifelikeness/M -lifelike/P -lifeline/SM -lifelong -life/MZR -lifer/M -lifesaver/SM -lifesaving/S -lifespan/S -lifestyle/S -lifetaking -lifetime/MS -lifework/MS -LIFO -lifter/M -lift/GZMRDS -liftoff/MS -ligament/MS -ligand/MS -ligate/XSDNG -ligation/M -ligature/DSGM -light/ADSCG -lighted/U -lightener/M -lightening/M -lighten/ZGDRS -lighter/CM -lightered -lightering -lighters -lightest -lightface/SDM -lightheaded -lightheartedness/MS -lighthearted/PY -lighthouse/MS -lighting/MS -lightly -lightness/MS -lightning/SMD -lightproof -light's -lightship/SM -lightweight/S -ligneous -lignite/MS -lignum -likability/MS -likableness/MS -likable/P -likeability's -liked/E -likelihood/MSU -likely/UPRT -likeness/MSU -liken/GSD -liker/E -liker's -likes/E -likest -like/USPBY -likewise -liking/SM -lilac/MS -Lilah/M -Lila/SM -Lilia/MS -Liliana/M -Liliane/M -Lilian/M -Lilith/M -Liliuokalani/M -Lilla/M -Lille/M -Lillian/M -Lillie/M -Lilli/MS -lilliputian/S -Lilliputian/SM -Lilliput/M -Lilllie/M -Lilly/M -Lil/MY -Lilongwe/M -lilting/YP -lilt/MDSG -Lilyan/M -Lily/M -lily/MSD -Lima/M -Limbaugh/M -limbered/U -limberness/SM -limber/RDYTGP -limbers/U -limbic -limbless -Limbo -limbo/GDMS -limb/SGZRDM -Limburger/SM -limeade/SM -lime/DSMG -limekiln/M -limelight/DMGS -limerick/SM -limestone/SM -limitability -limitably -limitation/MCS -limit/CSZGRD -limitedly/U -limitedness/M -limited/PSY -limiter/M -limiting/S -limitlessness/SM -limitless/PY -limit's -limn/GSD -Limoges/M -limo/S -limousine/SM -limper/M -limpet/SM -limpidity/MS -limpidness/SM -limpid/YP -limpness/MS -Limpopo/M -limp/SGTPYRD -Li/MY -limy/TR -linage/MS -Lina/M -linchpin/MS -Linc/M -Lincoln/SM -Linda/M -Lindbergh/M -Lindberg/M -linden/MS -Lindholm/M -Lindie/M -Lindi/M -Lind/M -Lindon/M -Lindquist/M -Lindsay/M -Lindsey/M -Lindstrom/M -Lindsy/M -Lindy/M -line/AGDS -lineage/SM -lineal/Y -Linea/M -lineament/MS -linearity/MS -linearize/SDGNB -linear/Y -linebacker/SM -lined/U -linefeed -Linell/M -lineman/M -linemen -linen/SM -liner/SM -line's -linesman/M -linesmen -Linet/M -Linette/M -lineup/S -lingerer/M -lingerie/SM -lingering/Y -linger/ZGJRD -lingoes -lingo/M -lingual/SY -lingua/M -linguine -linguini's -linguistically -linguistic/S -linguistics/M -linguist/SM -ling/ZR -liniment/MS -lining/SM -linkable -linkage/SM -linked/A -linker/S -linking/S -Link/M -link's -linkup/S -link/USGD -Lin/M -Linnaeus/M -Linnea/M -Linnell/M -Linnet/M -linnet/SM -Linnie/M -Linn/M -Linoel/M -linoleum/SM -lino/M -Linotype/M -linseed/SM -lintel/SM -linter/M -Linton/M -lint/SMR -linty/RST -Linus/M -Linux/M -Linwood/M -Linzy/M -Lionello/M -Lionel/M -lioness/SM -lionhearted -lionization/SM -lionizer/M -lionize/ZRSDG -Lion/M -lion/MS -lipase/M -lipid/MS -lip/MS -liposuction/S -lipped -lipper -Lippi/M -lipping -Lippmann/M -lippy/TR -lipread/GSRJ -Lipschitz/M -Lipscomb/M -lipstick/MDSG -Lipton/M -liq -liquefaction/SM -liquefier/M -liquefy/DRSGZ -liqueur/DMSG -liquidate/GNXSD -liquidation/M -liquidator/SM -liquidity/SM -liquidizer/M -liquidize/ZGSRD -liquidness/M -liquid/SPMY -liquorice/SM -liquorish -liquor/SDMG -lira/M -Lira/M -lire -Lisabeth/M -Lisa/M -Lisbeth/M -Lisbon/M -Lise/M -Lisetta/M -Lisette/M -Lisha/M -Lishe/M -Lisle/M -lisle/SM -lisper/M -lisp/MRDGZS -Lissajous/M -Lissa/M -Lissie/M -Lissi/M -Liss/M -lissomeness/M -lissome/P -lissomness/M -Lissy/M -listed/U -listener/M -listen/ZGRD -Listerine/M -lister/M -Lister/M -listing/M -list/JMRDNGZXS -listlessness/SM -listless/PY -Liston/M -Liszt/M -Lita/M -litany/MS -litchi/SM -literacy/MS -literalism/M -literalistic -literalness/MS -literal/PYS -literariness/SM -literary/P -literate/YNSP -literati -literation/M -literature/SM -liter/M -lite/S -litheness/SM -lithe/PRTY -lithesome -lithium/SM -lithograph/DRMGZ -lithographer/M -lithographic -lithographically -lithographs -lithography/MS -lithology/M -lithosphere/MS -lithospheric -Lithuania/M -Lithuanian/S -litigant/MS -litigate/NGXDS -litigation/M -litigator/SM -litigiousness/MS -litigious/PY -litmus/SM -litotes/M -lit/RZS -littrateur/S -litterbug/SM -litter/SZGRDM -Little/M -littleneck/M -littleness/SM -little/RSPT -Littleton/M -Litton/M -littoral/S -liturgical/Y -liturgic/S -liturgics/M -liturgist/MS -liturgy/SM -Liuka/M -livability/MS -livableness/M -livable/U -livably -Liva/M -lived/A -livelihood/SM -liveliness/SM -livelong/S -lively/RTP -liveness/M -liven/SDG -liver/CSGD -liveried -liverish -Livermore/M -Liverpool/M -Liverpudlian/MS -liver's -liverwort/SM -liverwurst/SM -livery/CMS -liveryman/MC -liverymen/C -lives/A -lives's -livestock/SM -live/YHZTGJDSRPB -Livia/M -lividness/M -livid/YP -livingness/M -Livingstone/M -Livingston/M -living/YP -Liv/M -Livonia/M -Livvie/M -Livvy/M -Livvyy/M -Livy/M -Lizabeth/M -Liza/M -lizard/MS -Lizbeth/M -Lizette/M -Liz/M -Lizzie/M -Lizzy/M -l/JGVXT -Ljubljana/M -LL -llama/SM -llano/SM -LLB -ll/C -LLD -Llewellyn/M -Lloyd/M -Llywellyn/M -LNG -lo -loadable -loaded/A -loader/MU -loading/MS -load's/A -loads/A -loadstar's -loadstone's -load/SURDZG -loafer/M -Loafer/S -loaf/SRDMGZ -loam/SMDG -loamy/RT -loaner/M -loaning/M -loan/SGZRDMB -loansharking/S -loanword/S -loathe -loather/M -loathing/M -loath/JPSRDYZG -loathness/M -loathsomeness/MS -loathsome/PY -loaves/M -Lobachevsky/M -lobar -lobbed -lobber/MS -lobbing -lobby/GSDM -lobbyist/MS -lobe/SM -lob/MDSG -lobotomist -lobotomize/GDS -lobotomy/MS -lobster/MDGS -lobularity -lobular/Y -lobule/SM -locale/MS -localisms -locality/MS -localization/MS -localized/U -localizer/M -localizes/U -localize/ZGDRS -local/SGDY -locatable -locate/AXESDGN -locater/M -locational/Y -location/EMA -locative/S -locator's -Lochinvar/M -loch/M -lochs -loci/M -lockable -Lockean/M -locked/A -Locke/M -locker/SM -locket/SM -Lockhart/M -Lockheed/M -Lockian/M -locking/S -lockjaw/SM -Lock/M -locknut/M -lockout/MS -lock's -locksmithing/M -locksmith/MG -locksmiths -lockstep/S -lock/UGSD -lockup/MS -Lockwood/M -locomotion/SM -locomotive/YMS -locomotor -locomotory -loco/SDMG -locoweed/MS -locus/M -locust/SM -locution/MS -lode/SM -lodestar/MS -lodestone/MS -lodged/E -lodge/GMZSRDJ -Lodge/M -lodgepole -lodger/M -lodges/E -lodging/M -lodgment/M -Lodovico/M -Lodowick/M -Lodz -Loeb/M -Loella/M -Loewe/M -Loewi/M -lofter/M -loftily -loftiness/SM -loft/SGMRD -lofty/PTR -loganberry/SM -Logan/M -logarithmic -logarithmically -logarithm/MS -logbook/MS -loge/SMNX -logged/U -loggerhead/SM -logger/SM -loggia/SM -logging/MS -logicality/MS -logicalness/M -logical/SPY -logician/SM -logic/SM -login/S -logion/M -logistical/Y -logistic/MS -logjam/SM -LOGO -logo/SM -logotype/MS -logout -logrolling/SM -log's/K -log/SM -logy/RT -Lohengrin/M -loincloth/M -loincloths -loin/SM -Loire/M -Loise/M -Lois/M -loiterer/M -loiter/RDJSZG -Loki/M -Lola/M -Loleta/M -Lolita/M -loller/M -lollipop/MS -loll/RDGS -Lolly/M -lolly/SM -Lombardi/M -Lombard/M -Lombardy/M -Lomb/M -Lome -Lona/M -Londonderry/M -Londoner/M -London/RMZ -Lonee/M -loneliness/SM -lonely/TRP -loneness/M -lone/PYZR -loner/M -lonesomeness/MS -lonesome/PSY -longboat/MS -longbow/SM -longed/K -longeing -longer/K -longevity/MS -Longfellow/M -longhair/SM -longhand/SM -longhorn/SM -longing/MY -longish -longitude/MS -longitudinal/Y -long/JGTYRDPS -Long/M -longness/M -longshoreman/M -longshoremen -longsighted -longs/K -longstanding -Longstreet/M -longsword -longterm -longtime -Longueuil/M -longueur/SM -longways -longword/SM -Loni/M -Lon/M -Lonna/M -Lonnard/M -Lonnie/M -Lonni/M -Lonny/M -loofah/M -loofahs -lookahead -lookalike/S -looker/M -look/GZRDS -lookout/MS -lookup/SM -looming/M -Loomis/M -loom/MDGS -loon/MS -loony/SRT -looper/M -loophole/MGSD -loop/MRDGS -loopy/TR -loosed/U -looseleaf -loosener/M -looseness/MS -loosen/UDGS -loose/SRDPGTY -looses/U -loosing/M -looter/M -loot/MRDGZS -loper/M -lope/S -Lopez/M -lopped -lopper/MS -lopping -lop/SDRG -lopsidedness/SM -lopsided/YP -loquaciousness/MS -loquacious/YP -loquacity/SM -Loraine/M -Lorain/M -Loralee/M -Loralie/M -Loralyn/M -Lora/M -Lorant/M -lording/M -lordliness/SM -lordly/PTR -Lord/MS -lord/MYDGS -lordship/SM -Lordship/SM -Loree/M -Loreen/M -Lorelei/M -Lorelle/M -lore/MS -Lorena/M -Lorene/M -Loren/SM -Lorentzian/M -Lorentz/M -Lorenza/M -Lorenz/M -Lorenzo/M -Loretta/M -Lorette/M -lorgnette/SM -Loria/M -Lorianna/M -Lorianne/M -Lorie/M -Lorilee/M -Lorilyn/M -Lori/M -Lorinda/M -Lorine/M -Lorin/M -loris/SM -Lorita/M -lorn -Lorna/M -Lorne/M -Lorraine/M -Lorrayne/M -Lorre/M -Lorrie/M -Lorri/M -Lorrin/M -lorryload/S -Lorry/M -lorry/SM -Lory/M -Los -loser/M -lose/ZGJBSR -lossage -lossless -loss/SM -lossy/RT -lost/P -Lothaire/M -Lothario/MS -lotion/MS -Lot/M -lot/MS -Lotta/M -lotted -Lotte/M -lotter -lottery/MS -Lottie/M -Lotti/M -lotting -Lott/M -lotto/MS -Lotty/M -lotus/SM -louden/DG -loudhailer/S -loudly/RT -loudmouth/DM -loudmouths -loudness/MS -loudspeaker/SM -loudspeaking -loud/YRNPT -Louella/M -Louie/M -Louisa/M -Louise/M -Louisette/M -Louisiana/M -Louisianan/S -Louisianian/S -Louis/M -Louisville/M -Lou/M -lounger/M -lounge/SRDZG -Lourdes/M -lour/GSD -louse/CSDG -louse's -lousewort/M -lousily -lousiness/MS -lousy/PRT -loutishness/M -loutish/YP -Loutitia/M -lout/SGMD -louver/DMS -L'Ouverture -Louvre/M -lovableness/MS -lovable/U -lovably -lovebird/SM -lovechild -Lovecraft/M -love/DSRMYZGJB -loved/U -Lovejoy/M -Lovelace/M -Loveland/M -lovelessness/M -loveless/YP -lovelies -lovelinesses -loveliness/UM -Lovell/M -lovelornness/M -lovelorn/P -lovely/URPT -Love/M -lovemaking/SM -lover/YMG -lovesick -lovestruck -lovingly -lovingness/M -loving/U -lowborn -lowboy/SM -lowbrow/MS -lowdown/S -Lowell/M -Lowe/M -lowercase/GSD -lower/DG -lowermost -Lowery/M -lowish -lowland/RMZS -Lowlands/M -lowlife/SM -lowlight/MS -lowliness/MS -lowly/PTR -lowness/MS -low/PDRYSZTG -Lowrance/M -lox/MDSG -loyaler -loyalest -loyal/EY -loyalism/SM -loyalist/SM -loyalty/EMS -Loyang/M -Loydie/M -Loyd/M -Loy/M -Loyola/M -lozenge/SDM -LP -LPG -LPN/S -Lr -ls -l's -L's -LSD -ltd -Ltd/M -Lt/M -Luanda/M -Luann/M -luau/MS -lubber/YMS -Lubbock/M -lube/DSMG -lubricant/SM -lubricate/VNGSDX -lubrication/M -lubricator/MS -lubricious/Y -lubricity/SM -Lubumbashi/M -Lucais/M -Luca/MS -Luce/M -lucent/Y -Lucerne/M -Lucho/M -Lucia/MS -Luciana/M -Lucian/M -Luciano/M -lucidity/MS -lucidness/MS -lucid/YP -Lucie/M -Lucien/M -Lucienne/M -Lucifer/M -Lucila/M -Lucile/M -Lucilia/M -Lucille/M -Luci/MN -Lucina/M -Lucinda/M -Lucine/M -Lucio/M -Lucita/M -Lucite/MS -Lucius/M -luck/GSDM -luckier/U -luckily/U -luckiness/UMS -luckless -Lucknow/M -Lucky/M -lucky/RSPT -lucrativeness/SM -lucrative/YP -lucre/MS -Lucretia/M -Lucretius/M -lucubrate/GNSDX -lucubration/M -Lucy/M -Luddite/SM -Ludhiana/M -ludicrousness/SM -ludicrous/PY -Ludlow/M -Ludmilla/M -ludo/M -Ludovico/M -Ludovika/M -Ludvig/M -Ludwig/M -Luella/M -Luelle/M -luff/GSDM -Lufthansa/M -Luftwaffe/M -luge/MC -Luger/M -luggage/SM -lugged -lugger/SM -lugging -Lugosi/M -lug/RS -lugsail/SM -lugubriousness/MS -lugubrious/YP -Luigi/M -Luisa/M -Luise/M -Luis/M -Lukas/M -Luke/M -lukewarmness/SM -lukewarm/PY -Lula/M -Lulita/M -lullaby/GMSD -lull/SDG -lulu/M -Lulu/M -Lu/M -lumbago/SM -lumbar/S -lumberer/M -lumbering/M -lumberjack/MS -lumberman/M -lumbermen -lumber/RDMGZSJ -lumberyard/MS -lumen/M -Lumire/M -luminance/M -luminary/MS -luminescence/SM -luminescent -luminosity/MS -luminousness/M -luminous/YP -lummox/MS -lumper/M -lumpiness/MS -lumpishness/M -lumpish/YP -lump/SGMRDN -lumpy/TPR -lunacy/MS -Luna/M -lunar/S -lunary -lunate/YND -lunatic/S -lunation/M -luncheonette/SM -luncheon/SMDG -luncher/M -lunch/GMRSD -lunchpack -lunchroom/MS -lunchtime/MS -Lundberg/M -Lund/M -Lundquist/M -lune/M -lunge/MS -lunger/M -lungfish/SM -lungful -lung/SGRDM -lunkhead/SM -Lupe/M -lupine/SM -Lupus/M -lupus/SM -Lura/M -lurcher/M -lurch/RSDG -lure/DSRG -lurer/M -Lurette/M -lurex -Luria/M -luridness/SM -lurid/YP -lurker/M -lurk/GZSRD -Lurleen/M -Lurlene/M -Lurline/M -Lusaka/M -Lusa/M -lusciousness/MS -luscious/PY -lushness/MS -lush/YSRDGTP -Lusitania/M -luster/GDM -lustering/M -lusterless -lustfulness/M -lustful/PY -lustily -lustiness/MS -lust/MRDGZS -lustrousness/M -lustrous/PY -lusty/PRT -lutanist/MS -lute/DSMG -lutenist/MS -Lutero/M -lutetium/MS -Lutheranism/MS -Lutheran/SM -Luther/M -luting/M -Lutz -Luxembourgian -Luxembourg/RMZ -Luxemburg's -luxe/MS -luxuriance/MS -luxuriant/Y -luxuriate/GNSDX -luxuriation/M -luxuriousness/SM -luxurious/PY -luxury/MS -Luz/M -Luzon/M -L'vov -Lyallpur/M -lyceum/MS -lychee's -lycopodium/M -Lycra/S -Lycurgus/M -Lyda/M -Lydia/M -Lydian/S -Lydie/M -Lydon/M -lye/JSMG -Lyell/M -lying/Y -Lyle/M -Lyly/M -Lyman/M -Lyme/M -lymphatic/S -lymph/M -lymphocyte/SM -lymphoid -lymphoma/MS -lymphs -Ly/MY -Lynchburg/M -lyncher/M -lynching/M -Lynch/M -lynch/ZGRSDJ -Lynda/M -Lyndell/M -Lyndel/M -Lynde/M -Lyndon/M -Lyndsay/M -Lyndsey/M -Lyndsie/M -Lyndy/M -Lynea/M -Lynelle/M -Lynette/M -Lynett/M -Lyn/M -Lynna/M -Lynnea/M -Lynnelle/M -Lynnell/M -Lynne/M -Lynnet/M -Lynnette/M -Lynnett/M -Lynn/M -Lynsey/M -lynx/MS -Lyon/SM -Lyra/M -lyrebird/MS -lyre/SM -lyricalness/M -lyrical/YP -lyricism/SM -lyricist/SM -lyric/S -Lysenko/M -lysine/M -Lysistrata/M -Lysol/M -Lyssa/M -LyX/M -MA -Maalox/M -ma'am -Mabelle/M -Mabel/M -Mable/M -Mab/M -macabre/Y -macadamize/SDG -macadam/SM -Macao/M -macaque/SM -macaroni/SM -macaroon/MS -Macarthur/M -MacArthur/M -Macaulay/M -macaw/SM -Macbeth/M -Maccabees/M -Maccabeus/M -Macdonald/M -MacDonald/M -MacDraw/M -Macedonia/M -Macedonian/S -Macedon/M -mace/MS -Mace/MS -macerate/DSXNG -maceration/M -macer/M -Macgregor/M -MacGregor/M -machete/SM -Machiavellian/S -Machiavelli/M -machinate/SDXNG -machination/M -machinelike -machine/MGSDB -machinery/SM -machinist/MS -machismo/SM -Mach/M -macho/S -Machs -Macias/M -Macintosh/M -MacIntosh/M -macintosh's -Mackenzie/M -MacKenzie/M -mackerel/SM -Mackinac/M -Mackinaw -mackinaw/SM -mackintosh/SM -mack/M -Mack/M -MacLeish/M -Macmillan/M -MacMillan/M -Macon/SM -MacPaint/M -macram/S -macrobiotic/S -macrobiotics/M -macrocosm/MS -macrodynamic -macroeconomic/S -macroeconomics/M -macromolecular -macromolecule/SM -macron/MS -macrophage/SM -macroscopic -macroscopically -macrosimulation -macro/SM -macrosocioeconomic -Mac/SGMD -mac/SGMDR -Macy/M -Madagascan/SM -Madagascar/M -Madalena/M -Madalyn/M -Mada/M -madame/M -Madame/MS -madam/SM -madcap/S -Maddalena/M -madded -madden/GSD -maddening/Y -Madden/M -madder/MS -maddest -Maddie/M -Maddi/M -madding -Maddox/M -Maddy/M -made/AU -Madeira/SM -Madelaine/M -Madeleine/M -Madelena/M -Madelene/M -Madelina/M -Madeline/M -Madelin/M -Madella/M -Madelle/M -Madel/M -Madelon/M -Madelyn/M -mademoiselle/MS -Madge/M -madhouse/SM -Madhya/M -Madison/M -Madlen/M -Madlin/M -madman/M -madmen -madness/SM -Madonna/MS -mad/PSY -Madras -madras/SM -Madrid/M -madrigal/MSG -Madsen/M -Madurai/M -madwoman/M -madwomen -Mady/M -Maegan/M -Maelstrom/M -maelstrom/SM -Mae/M -maestro/MS -Maeterlinck/M -Mafia/MS -mafia/S -mafiosi -mafioso/M -Mafioso/S -MAG -magazine/DSMG -Magdaia/M -Magdalena/M -Magdalene/M -Magdalen/M -Magda/M -Magellanic -Magellan/M -magenta/MS -magged -Maggee/M -Maggie/M -Maggi/M -magging -maggot/MS -maggoty/RT -Maggy/M -magi -magical/Y -magician/MS -magicked -magicking -magic/SM -Magill/M -Magi/M -Maginot/M -magisterial/Y -magistracy/MS -magistrate/MS -Mag/M -magma/SM -magnanimity/SM -magnanimosity -magnanimous/PY -magnate/SM -magnesia/MS -magnesite/M -magnesium/SM -magnetically -magnetic/S -magnetics/M -magnetism/SM -magnetite/SM -magnetizable -magnetization/ASCM -magnetize/CGDS -magnetized/U -magnetodynamics -magnetohydrodynamical -magnetohydrodynamics/M -magnetometer/MS -magneto/MS -magnetosphere/M -magnetron/M -magnet/SM -magnification/M -magnificence/SM -magnificent/Y -magnified/U -magnify/DRSGNXZ -magniloquence/MS -magniloquent -Magnitogorsk/M -magnitude/SM -magnolia/SM -Magnum -magnum/SM -Magnuson/M -Magog/M -Magoo/M -magpie/SM -Magritte/M -Magruder/M -mag/S -Magsaysay/M -Maguire/SM -Magus/M -Magyar/MS -Mahabharata -Mahala/M -Mahalia/M -maharajah/M -maharajahs -maharanee's -maharani/MS -Maharashtra/M -maharishi/SM -mahatma/SM -Mahavira/M -Mahayana/M -Mahayanist -Mahdi/M -Mahfouz/M -Mahican/SM -mahjong's -Mahler/M -Mahmoud/M -Mahmud/M -mahogany/MS -Mahomet's -mahout/SM -Maia/M -Maible/M -maidenhair/MS -maidenhead/SM -maidenhood/SM -maidenly/P -maiden/YM -maidservant/MS -maid/SMNX -maier -Maier/M -Maiga/M -Maighdiln/M -Maigret/M -mailbag/MS -mailbox/MS -mail/BSJGZMRD -mailer/M -Mailer/M -Maillol/M -maillot/SM -mailman/M -mailmen -Maiman/M -maimedness/M -maimed/P -maimer/M -Maimonides/M -Mai/MR -maim/SGZRD -mainbrace/M -Maine/MZR -Mainer/M -mainframe/MS -mainlander/M -mainland/SRMZ -mainliner/M -mainline/RSDZG -mainly -mainmast/SM -main/SA -mainsail/SM -mains/M -mainspring/SM -mainstay/MS -mainstream/DRMSG -maintainability -maintainable/U -maintain/BRDZGS -maintained/U -maintainer/M -maintenance/SM -maintop/SM -maiolica's -Maire/M -Mair/M -Maisey/M -Maisie/M -maisonette/MS -Maison/M -Maitilde/M -maize/MS -Maj -Maje/M -majestic -majestically -majesty/MS -Majesty/MS -majolica/SM -Majorca/M -major/DMGS -majordomo/S -majorette/SM -majority/SM -Major/M -Majuro/M -makable -Makarios/M -makefile/S -makeover/S -Maker/M -maker/SM -makeshift/S -make/UGSA -makeup/MS -making/SM -Malabar/M -Malabo/M -Malacca/M -Malachi/M -malachite/SM -maladapt/DV -maladjust/DLV -maladjustment/MS -maladministration -maladroitness/MS -maladroit/YP -malady/MS -Malagasy/M -malaise/SM -Mala/M -Malamud/M -malamute/SM -Malanie/M -malaprop -malapropism/SM -Malaprop/M -malarial -malaria/MS -malarious -malarkey/SM -malathion/S -Malawian/S -Malawi/M -Malayalam/M -Malaya/M -Malayan/MS -Malaysia/M -Malaysian/S -Malay/SM -Malchy/M -Malcolm/M -malcontentedness/M -malcontented/PY -malcontent/SMD -Maldive/SM -Maldivian/S -Maldonado/M -maledict -malediction/MS -malefaction/MS -malefactor/MS -malefic -maleficence/MS -maleficent -Male/M -Malena/M -maleness/MS -male/PSM -malevolence/S -malevolencies -malevolent/Y -malfeasance/SM -malfeasant -malformation/MS -malformed -malfunction/SDG -Malia/M -Malian/S -Malibu/M -malice/MGSD -maliciousness/MS -malicious/YU -malignancy/SM -malignant/YS -malign/GSRDYZ -malignity/MS -Mali/M -Malina/M -Malinda/M -Malinde/M -malingerer/M -malinger/GZRDS -Malinowski/M -Malissa/M -Malissia/M -mallard/SM -Mallarm/M -malleability/SM -malleableness/M -malleable/P -mallet/MS -Mallissa/M -Mallorie/M -Mallory/M -mallow/MS -mall/SGMD -Mal/M -malnourished -malnutrition/SM -malocclusion/MS -malodorous -Malone/M -Malorie/M -Malory/M -malposed -malpractice/SM -Malraux/M -Malta/M -malted/S -Maltese -Malthusian/S -Malthus/M -malting/M -maltose/SM -maltreat/GDSL -maltreatment/S -malt/SGMD -malty/RT -Malva/M -Malvina/M -Malvin/M -Malynda/M -mama/SM -mamba/SM -mambo/GSDM -Mame/M -Mamet/M -ma/MH -Mamie/M -mammalian/SM -mammal/SM -mammary -mamma's -mammogram/S -mammography/S -Mammon's -mammon/SM -mammoth/M -mammoths -mammy/SM -Mamore/M -manacle/SDMG -manageability/S -manageableness -manageable/U -managed/U -management/SM -manageress/M -managerial/Y -manager/M -managership/M -manage/ZLGRSD -Managua/M -Manama/M -maana/M -mananas -Manasseh/M -manatee/SM -Manaus's -Manchester/M -Manchu/MS -Manchuria/M -Manchurian/S -Mancini/M -manciple/M -Mancunian/MS -mandala/SM -Mandalay/M -Manda/M -mandamus/GMSD -Mandarin -mandarin/MS -mandate/SDMG -mandatory/S -Mandela -Mandelbrot/M -Mandel/M -mandible/MS -mandibular -Mandie/M -Mandi/M -Mandingo/M -mandolin/MS -mandrake/MS -mandrel/SM -mandrill/SM -Mandy/M -mange/GSD -mane/MDS -Manet/M -maneuverability/MS -maneuverer/M -maneuver/MRDSGB -Manfred/M -manful/Y -manganese/MS -mange/GMSRDZ -manger/M -manginess/S -mangler/M -mangle/RSDG -mangoes -mango/M -mangrove/MS -mangy/PRT -manhandle/GSD -Manhattan/SM -manhole/MS -manhood/MS -manhunt/SM -maniacal/Y -maniac/SM -mania/SM -manically -Manichean/M -manic/S -manicure/MGSD -manicurist/SM -manifestation/SM -manifesto/GSDM -manifest/YDPGS -manifolder/M -manifold/GPYRDMS -manifoldness/M -manikin/MS -Manila/MS -manila/S -manilla's -Mani/M -manioc/SM -manipulability -manipulable -manipulate/SDXBVGN -manipulative/PM -manipulator/MS -manipulatory -Manitoba/M -Manitoulin/M -Manitowoc/M -mankind/M -Mankowski/M -Manley/M -manlike -manliness/SM -manliness's/U -manly/URPT -manna/MS -manned/U -mannequin/MS -mannered/U -mannerism/SM -mannerist/M -mannerliness/MU -mannerly/UP -manner/SDYM -Mann/GM -Mannheim/M -Mannie/M -mannikin's -Manning/M -manning/U -mannishness/SM -mannish/YP -Manny/M -Manolo/M -Mano/M -manometer/SM -Manon/M -manorial -manor/MS -manpower/SM -manqu/M -man's -mansard/SM -manservant/M -manse/XNM -Mansfield/M -mansion/M -manslaughter/SM -Man/SM -Manson/M -mans/S -manta/MS -Mantegna/M -mantelpiece/MS -mantel/SM -mantes -mantilla/MS -mantissa/SM -mantis/SM -mantle/ESDG -Mantle/M -mantle's -mantling/M -mantra/MS -mantrap/SM -manual/SMY -Manuela/M -Manuel/M -manufacture/JZGDSR -manufacturer/M -manumission/MS -manumit/S -manumitted -manumitting -manure/RSDMZG -manuscript/MS -man/USY -Manville/M -Manx -many -Manya/M -Maoism/MS -Maoist/S -Mao/M -Maori/SM -Maplecrest/M -maple/MS -mapmaker/S -mappable -mapped/UA -mapper/S -mapping/MS -Mapplethorpe/M -maps/AU -map/SM -Maputo/M -Marabel/M -marabou/MS -marabout's -Maracaibo/M -maraca/MS -Mara/M -maraschino/SM -Marathi -marathoner/M -Marathon/M -marathon/MRSZ -Marat/M -marauder/M -maraud/ZGRDS -marbleize/GSD -marble/JRSDMG -marbler/M -marbling/M -Marceau/M -Marcela/M -Marcelia/M -Marcelino/M -Marcella/M -Marcelle/M -Marcellina/M -Marcelline/M -Marcello/M -Marcellus/M -Marcel/M -Marcelo/M -Marchall/M -Marchelle/M -marcher/M -marchioness/SM -March/MS -march/RSDZG -Marcia/M -Marciano/M -Marcie/M -Marcile/M -Marcille/M -Marci/M -Marc/M -Marconi/M -Marco/SM -Marcotte/M -Marcus/M -Marcy/M -Mardi/SM -Marduk/M -Mareah/M -mare/MS -Marena/M -Maren/M -Maressa/M -Margalit/M -Margalo/M -Marga/M -Margareta/M -Margarete/M -Margaretha/M -Margarethe/M -Margaret/M -Margaretta/M -Margarette/M -margarine/MS -Margarita/M -margarita/SM -Margarito/M -Margaux/M -Margeaux/M -Marge/M -Margery/M -Marget/M -Margette/M -Margie/M -Margi/M -marginalia -marginality -marginalization -marginalize/SDG -marginal/YS -margin/GSDM -Margit/M -Margo/M -Margot/M -Margrethe/M -Margret/M -Marguerite/M -Margy/M -mariachi/SM -maria/M -Maria/M -Mariam/M -Mariana/SM -Marian/MS -Marianna/M -Marianne/M -Mariann/M -Mariano/M -Maribelle/M -Maribel/M -Maribeth/M -Maricela/M -Marice/M -Maridel/M -Marieann/M -Mariejeanne/M -Mariele/M -Marielle/M -Mariellen/M -Mariel/M -Marie/M -Marietta/M -Mariette/M -Marigold/M -marigold/MS -Marijn/M -Marijo/M -marijuana/SM -Marika/M -Marilee/M -Marilin/M -Marillin/M -Marilyn/M -marimba/SM -Mari/MS -marinade/MGDS -Marina/M -marina/MS -marinara/SM -marinate/NGXDS -marination/M -mariner/M -Marine/S -marine/ZRS -Marin/M -Marinna/M -Marino/M -Mario/M -marionette/MS -Marion/M -Mariquilla/M -Marisa/M -Mariska/M -Marisol/M -Marissa/M -Maritain/M -marital/Y -Marita/M -maritime/R -Maritsa/M -Maritza/M -Mariupol/M -Marius/M -Mariya/M -Marja/M -Marje/M -Marjie/M -Marji/M -Marj/M -marjoram/SM -Marjorie/M -Marjory/M -Marjy/M -Markab/M -markdown/SM -marked/AU -markedly -marker/M -marketability/SM -marketable/U -Marketa/M -marketeer/S -marketer/M -market/GSMRDJBZ -marketing/M -marketplace/MS -mark/GZRDMBSJ -Markham/M -marking/M -Markism/M -markkaa -markka/M -Mark/MS -Markos -Markov -Markovian -Markovitz/M -marks/A -marksman/M -marksmanship/S -marksmen -markup/SM -Markus/M -Marla/M -Marlane/M -Marlboro/M -Marlborough/M -Marleah/M -Marlee/M -Marleen/M -Marlena/M -Marlene/M -Marley/M -Marlie/M -Marline/M -marlinespike/SM -Marlin/M -marlin/SM -marl/MDSG -Marlo/M -Marlon/M -Marlowe/M -Marlow/M -Marlyn/M -Marmaduke/M -marmalade/MS -Marmara/M -marmoreal -marmoset/MS -marmot/SM -Marna/M -Marne/M -Marney/M -Marnia/M -Marnie/M -Marni/M -maroon/GRDS -marquee/MS -Marquesas/M -marque/SM -marquess/MS -marquetry/SM -Marquette/M -Marquez/M -marquise/M -marquisette/MS -Marquis/M -marquis/SM -Marquita/M -Marrakesh/M -marred/U -marriageability/SM -marriageable -marriage/ASM -married/US -Marrilee/M -marring -Marriott/M -Marris/M -Marrissa/M -marrowbone/MS -marrow/GDMS -marry/SDGA -mar/S -Marseillaise/SM -Marseilles -Marseille's -marshal/GMDRSZ -Marshalled/M -marshaller -Marshall/GDM -Marshalling/M -marshallings -Marshal/M -Marsha/M -marshiness/M -marshland/MS -Marsh/M -marshmallow/SM -marsh/MS -marshy/PRT -Marsiella/M -Mar/SMN -marsupial/MS -Martainn/M -Marta/M -Martelle/M -Martel/M -marten/M -Marten/M -Martguerita/M -Martha/M -Marthe/M -Marthena/M -Martial -martial/Y -Martian/S -Martica/M -Martie/M -Marti/M -Martina/M -martinet/SM -Martinez/M -martingale/MS -martini/MS -Martinique/M -Martin/M -Martino/M -martin/SM -Martinson/M -Martita/M -mart/MDNGXS -Mart/MN -Marty/M -Martyn/M -Martynne/M -martyrdom/SM -martyr/GDMS -Marva/M -marvel/DGS -Marvell/M -marvelous/PY -Marve/M -Marven/M -Marvin/M -Marv/NM -Marwin/M -Marxian/S -Marxism/SM -Marxist/SM -Marx/M -Marya/M -Maryanna/M -Maryanne/M -Maryann/M -Marybelle/M -Marybeth/M -Maryellen/M -Maryjane/M -Maryjo/M -Maryland/MZR -Marylee/M -Marylinda/M -Marylin/M -Maryl/M -Marylou/M -Marylynne/M -Mary/M -Maryrose/M -Marys -Marysa/M -marzipan/SM -Masada/M -Masai/M -Masaryk/M -masc -Mascagni/M -mascara/SGMD -mascot/SM -masculineness/M -masculine/PYS -masculinity/SM -Masefield/M -maser/M -Maseru/M -MASH -Masha/M -Mashhad/M -mash/JGZMSRD -m/ASK -masked/U -masker/M -mask/GZSRDMJ -masks/U -masochism/MS -masochistic -masochistically -masochist/MS -masonic -Masonic -Masonite/M -masonry/MS -mason/SDMG -Mason/SM -masquerader/M -masquerade/RSDGMZ -masquer/M -masque/RSMZ -Massachusetts/M -massacre/DRSMG -massager/M -massage/SRDMG -Massasoit/M -Massenet/M -masseur/MS -masseuse/SM -Massey/M -massif/SM -Massimiliano/M -Massimo/M -massing/R -massiveness/SM -massive/YP -massless -mas/SRZ -Mass/S -mass/VGSD -mastectomy/MS -masterclass -mastered/A -masterfulness/M -masterful/YP -master/JGDYM -masterliness/M -masterly/P -mastermind/GDS -masterpiece/MS -mastership/M -Master/SM -masterstroke/MS -masterwork/S -mastery/MS -mast/GZSMRD -masthead/SDMG -masticate/SDXGN -mastication/M -mastic/SM -mastiff/MS -mastodon/MS -mastoid/S -masturbate/SDNGX -masturbation/M -masturbatory -matador/SM -Mata/M -matchable/U -match/BMRSDZGJ -matchbook/SM -matchbox/SM -matched/UA -matcher/M -matches/A -matchless/Y -matchlock/MS -matchmake/GZJR -matchmaker/M -matchmaking/M -matchplay -match's/A -matchstick/MS -matchwood/SM -mated/U -mate/IMS -Matelda/M -Mateo/M -materialism/SM -materialistic -materialistically -materialist/SM -materiality/M -materialization/SM -materialize/CDS -materialized/A -materializer/SM -materializes/A -materializing -materialness/M -material/SPYM -matriel/MS -mater/M -maternal/Y -maternity/MS -mates/U -mathematical/Y -Mathematica/M -mathematician/SM -mathematic/S -mathematics/M -Mathematik/M -Mather/M -Mathe/RM -Mathew/MS -Mathewson/M -Mathian/M -Mathias -Mathieu/M -Mathilda/M -Mathilde/M -Mathis -math/M -maths -Matias/M -Matilda/M -Matilde/M -matine/S -mating/M -matins/M -Matisse/SM -matriarchal -matriarch/M -matriarchs -matriarchy/MS -matrices -matricidal -matricide/MS -matriculate/XSDGN -matriculation/M -matrimonial/Y -matrimony/SM -matrix/M -matron/YMS -mat/SJGMDR -Matsumoto/M -matte/JGMZSRD -Mattel/M -Matteo/M -matter/GDM -Matterhorn/M -Matthaeus/M -Mattheus/M -Matthew/MS -Matthias -Matthieu/M -Matthiew/M -Matthus/M -Mattias/M -Mattie/M -Matti/M -matting/M -mattins's -Matt/M -mattock/MS -mattress/MS -matt's -Matty/M -maturate/DSNGVX -maturational -maturation/M -matureness/M -maturer/M -mature/RSDTPYG -maturity/MS -matzo/SHM -matzot -Maude/M -Maudie/M -maudlin/Y -Maud/M -Maugham/M -Maui/M -mauler/M -maul/RDGZS -maunder/GDS -Maupassant/M -Maura/M -Maureene/M -Maureen/M -Maure/M -Maurene/M -Mauriac/M -Maurice/M -Mauricio/M -Maurie/M -Maurine/M -Maurise/M -Maurita/M -Mauritania/M -Mauritanian/S -Mauritian/S -Mauritius/M -Maurits/M -Maurizia/M -Maurizio/M -Maurois/M -Mauro/M -Maury/M -Mauser/M -mausoleum/SM -mauve/SM -maven/S -maverick/SMDG -mavin's -Mavis/M -Mavra/M -mawkishness/SM -mawkish/PY -Mawr/M -maw/SGMD -max/GDS -Maxie/M -maxillae -maxilla/M -maxillary/S -Maxi/M -maximality -maximal/SY -maxima's -Maximilian/M -Maximilianus/M -Maximilien/M -maximization/SM -maximizer/M -maximize/RSDZG -Maxim/M -Maximo/M -maxim/SM -maximum/MYS -Maxine/M -maxi/S -Max/M -Maxtor/M -Maxwellian -maxwell/M -Maxwell/M -Maxy/M -Maya/MS -Mayan/S -Maybelle/M -maybe/S -mayday/S -may/EGS -Maye/M -mayer -Mayer/M -mayest -Mayfair/M -Mayflower/M -mayflower/SM -mayfly/MS -mayhap -mayhem/MS -Maynard/M -Mayne/M -Maynord/M -mayn't -Mayo/M -mayonnaise/MS -mayoral -mayoralty/MS -mayoress/MS -Mayor/M -mayor/MS -mayorship/M -mayo/S -maypole/MS -Maypole/SM -Mayra/M -May/SMR -mayst -Mazama/M -Mazarin/M -Mazatlan/M -Mazda/M -mazedness/SM -mazed/YP -maze/MGDSR -mazurka/SM -Mazzini/M -Mb -MB -MBA -Mbabane/M -Mbini/M -MC -McAdam/MS -McAllister/M -McBride/M -McCabe/M -McCain/M -McCall/M -McCarthyism/M -McCarthy/M -McCartney/M -McCarty/M -McCauley/M -McClain/M -McClellan/M -McClure/M -McCluskey/M -McConnell/M -McCormick/M -McCoy/SM -McCracken/M -McCray/M -McCullough/M -McDaniel/M -McDermott/M -McDonald/M -McDonnell/M -McDougall/M -McDowell/M -McElhaney/M -McEnroe/M -McFadden/M -McFarland/M -McGee/M -McGill/M -McGovern/M -McGowan/M -McGrath/M -McGraw/M -McGregor/M -McGuffey/M -McGuire/M -MCI/M -McIntosh/M -McIntyre/M -McKay/M -McKee/M -McKenzie/M -McKesson/M -McKinley/M -McKinney/M -McKnight/M -McLanahan/M -McLaughlin/M -McLean/M -McLeod/M -McLuhan/M -McMahon/M -McMartin/M -McMillan/M -McNamara/M -McNaughton/M -McNeil/M -McPherson/M -MD -Md/M -mdse -MDT -ME -Meade/M -Mead/M -meadowland -meadowlark/SM -meadow/MS -Meadows -meadowsweet/M -mead/SM -Meagan/M -meagerness/SM -meager/PY -Meaghan/M -meagres -mealiness/MS -meal/MDGS -mealtime/MS -mealybug/S -mealymouthed -mealy/PRST -meander/JDSG -meaneing -meanie/MS -meaningfulness/SM -meaningful/YP -meaninglessness/SM -meaningless/PY -meaning/M -meanness/S -means/M -meantime/SM -meant/U -meanwhile/S -Meany/M -mean/YRGJTPS -meany's -Meara/M -measle/SD -measles/M -measly/TR -measurable/U -measurably -measure/BLMGRSD -measured/Y -measureless -measurement/SM -measurer/M -measures/A -measuring/A -meas/Y -meataxe -meatball/MS -meatiness/MS -meatless -meatloaf -meatloaves -meat/MS -meatpacking/S -meaty/RPT -Mecca/MS -mecca/S -mechanical/YS -mechanic/MS -mechanism/SM -mechanistic -mechanistically -mechanist/M -mechanization/SM -mechanized/U -mechanizer/M -mechanize/RSDZGB -mechanizes/U -mechanochemically -Mechelle/M -med -medalist/MS -medallion/MS -medal/SGMD -Medan/M -meddle/GRSDZ -meddlesome -Medea/M -Medellin -Medfield/M -mediaeval's -medial/AY -medials -median/YMS -media/SM -mediateness/M -mediate/PSDYVNGX -mediation/ASM -mediator/SM -Medicaid/SM -medical/YS -medicament/MS -Medicare/MS -medicate/DSXNGV -medication/M -Medici/MS -medicinal/SY -medicine/DSMG -medico/SM -medic/SM -medievalist/MS -medieval/YMS -Medina/M -mediocre -mediocrity/MS -meditate/NGVXDS -meditation/M -meditativeness/M -meditative/PY -Mediterranean/MS -mediumistic -medium/SM -medley/SM -medulla/SM -Medusa/M -meed/MS -meekness/MS -meek/TPYR -meerschaum/MS -meeter/M -meetinghouse/S -meeting/M -meet/JGSYR -me/G -mega -megabit/MS -megabuck/S -megabyte/S -megacycle/MS -megadeath/M -megadeaths -megahertz/M -megalithic -megalith/M -megaliths -megalomaniac/SM -megalomania/SM -megalopolis/SM -Megan/M -megaphone/SDGM -megaton/MS -megavolt/M -megawatt/SM -megaword/S -Megen/M -Meggie/M -Meggi/M -Meggy/M -Meghan/M -Meghann/M -Meg/MN -megohm/MS -Mehetabel/M -Meier/M -Meighen/M -Meiji/M -Mei/MR -meioses -meiosis/M -meiotic -Meir/M -Meister/M -Meistersinger/M -Mejia/M -Mekong/M -Mela/M -Melamie/M -melamine/SM -melancholia/SM -melancholic/S -melancholy/MS -Melanesia/M -Melanesian/S -melange/S -Melania/M -Melanie/M -melanin/MS -melanoma/SM -Melantha/M -Melany/M -Melba/M -Melbourne/M -Melcher/M -Melchior/M -meld/SGD -mle/MS -Melendez/M -Melesa/M -Melessa/M -Melicent/M -Melina/M -Melinda/M -Melinde/M -meliorate/XSDVNG -melioration/M -Melisa/M -Melisande/M -Melisandra/M -Melisenda/M -Melisent/M -Melissa/M -Melisse/M -Melita/M -Melitta/M -Mella/M -Mellicent/M -Mellie/M -mellifluousness/SM -mellifluous/YP -Melli/M -Mellisa/M -Mellisent/M -Melloney/M -Mellon/M -mellowness/MS -mellow/TGRDYPS -Melly/M -Mel/MY -Melodee/M -melodically -melodic/S -Melodie/M -melodiousness/S -melodious/YP -melodrama/SM -melodramatically -melodramatic/S -Melody/M -melody/MS -Melonie/M -melon/MS -Melony/M -Melosa/M -Melpomene/M -meltdown/S -melter/M -melting/Y -Melton/M -melt/SAGD -Melva/M -Melville/M -Melvin/M -Melvyn/M -Me/M -member/DMS -membered/AE -members/EA -membership/SM -membrane/MSD -membranous -memento/SM -Memling/M -memoir/MS -memorabilia -memorability/SM -memorableness/M -memorable/P -memorably -memorandum/SM -memorialize/DSG -memorialized/U -memorial/SY -memoriam -memorization/MS -memorized/U -memorizer/M -memorize/RSDZG -memorizes/A -memoryless -memory/MS -memo/SM -Memphis/M -menace/GSD -menacing/Y -menagerie/SM -menage/S -Menander/M -menarche/MS -Menard/M -Mencius/M -Mencken/M -mendaciousness/M -mendacious/PY -mendacity/MS -Mendeleev/M -mendelevium/SM -Mendelian -Mendel/M -Mendelssohn/M -mender/M -Mendez/M -mendicancy/MS -mendicant/S -Mendie/M -mending/M -Mendocino/M -Mendoza/M -mend/RDSJGZ -Mendy/M -Menelaus/M -Menes/M -menfolk/S -menhaden/M -menial/YS -meningeal -meninges -meningitides -meningitis/M -meninx -menisci -meniscus/M -Menkalinan/M -Menkar/M -Menkent/M -Menlo/M -men/MS -Mennonite/SM -Menominee -menopausal -menopause/SM -menorah/M -menorahs -Menotti/M -Mensa/M -Mensch/M -mensch/S -menservants/M -mens/SDG -menstrual -menstruate/NGDSX -menstruation/M -mensurable/P -mensuration/MS -menswear/M -mentalist/MS -mentality/MS -mental/Y -mentholated -menthol/SM -mentionable/U -mentioned/U -mentioner/M -mention/ZGBRDS -mentor/DMSG -Menuhin/M -menu/SM -Menzies/M -meow/DSG -Mephistopheles/M -Merak/M -Mercado/M -mercantile -Mercator/M -Mercedes -mercenariness/M -mercenary/SMP -mercerize/SDG -Mercer/M -mercer/SM -merchandiser/M -merchandise/SRDJMZG -merchantability -merchantman/M -merchantmen -merchant/SBDMG -Mercie/M -mercifully/U -mercifulness/M -merciful/YP -mercilessness/SM -merciless/YP -Merci/M -Merck/M -mercurial/SPY -mercuric -Mercurochrome/M -mercury/MS -Mercury/MS -Mercy/M -mercy/SM -Meredeth/M -Meredithe/M -Meredith/M -Merell/M -meretriciousness/SM -meretricious/YP -mere/YS -merganser/MS -merger/M -merge/SRDGZ -Meridel/M -meridian/MS -meridional -Meridith/M -Meriel/M -Merilee/M -Merill/M -Merilyn/M -meringue/MS -merino/MS -Meris -Merissa/M -merited/U -meritocracy/MS -meritocratic -meritocrats -meritoriousness/MS -meritorious/PY -merit/SCGMD -Meriwether/M -Merla/M -Merle/M -Merlina/M -Merline/M -merlin/M -Merlin/M -Merl/M -mermaid/MS -merman/M -mermen -Merna/M -Merola/M -meromorphic -Merralee/M -Merrel/M -Merriam/M -Merrick/M -Merridie/M -Merrielle/M -Merrie/M -Merrilee/M -Merrile/M -Merrili/M -Merrill/M -merrily -Merrily/M -Merrimack/M -Merrimac/M -merriment/MS -merriness/S -Merritt/M -Merry/M -merrymaker/MS -merrymaking/SM -merry/RPT -Mersey/M -mer/TGDR -Merton/M -Mervin/M -Merv/M -Merwin/M -Merwyn/M -Meryl/M -Mesa -Mesabi/M -mesa/SM -mescaline/SM -mescal/SM -mesdames/M -mesdemoiselles/M -Meshed's -meshed/U -mesh/GMSD -mesmeric -mesmerism/SM -mesmerized/U -mesmerizer/M -mesmerize/SRDZG -Mesolithic/M -mesomorph/M -mesomorphs -meson/MS -Mesopotamia/M -Mesopotamian/S -mesosphere/MS -mesozoic -Mesozoic -mesquite/MS -mes/S -message/SDMG -messeigneurs -messenger/GSMD -Messerschmidt/M -mess/GSDM -Messiaen/M -messiah -Messiah/M -messiahs -Messiahs -messianic -Messianic -messieurs/M -messily -messiness/MS -messmate/MS -Messrs/M -messy/PRT -mestizo/MS -meta -metabolic -metabolically -metabolism/MS -metabolite/SM -metabolize/GSD -metacarpal/S -metacarpi -metacarpus/M -metacircular -metacircularity -metalanguage/MS -metalization/SM -metalized -metallic/S -metalliferous -metallings -metallography/M -metalloid/M -metallurgic -metallurgical/Y -metallurgist/S -metallurgy/MS -metal/SGMD -metalsmith/MS -metalworking/M -metalwork/RMJGSZ -Meta/M -metamathematical -metamorphic -metamorphism/SM -metamorphose/GDS -metamorphosis/M -metaphoric -metaphorical/Y -metaphor/MS -metaphosphate/M -metaphysical/Y -metaphysic/SM -metastability/M -metastable -metastases -metastasis/M -metastasize/DSG -metastatic -metatarsal/S -metatarsi -metatarsus/M -metatheses -metathesis/M -metathesized -metathesizes -metathesizing -metavariable -metempsychoses -metempsychosis/M -meteoric -meteorically -meteorite/SM -meteoritic/S -meteoritics/M -meteoroid/SM -meteorologic -meteorological -meteorologist/S -meteorology/MS -meteor/SM -meter/GDM -mete/ZDGSR -methadone/SM -methane/MS -methanol/SM -methinks -methionine/M -methodicalness/SM -methodical/YP -methodism -Methodism/SM -methodist/MS -Methodist/MS -method/MS -methodological/Y -methodologists -methodology/MS -methought -Methuen/M -Methuselah/M -Methuselahs -methylated -methylene/M -methyl/SM -meticulousness/MS -meticulous/YP -mtier/S -metonymy/M -Metrecal/M -metrical/Y -metricate/SDNGX -metricize/GSD -metrics/M -metric/SM -metronome/MS -metropolis/SM -metropolitanization -metropolitan/S -metro/SM -mets -Metternich/M -mettle/SDM -mettlesome -met/U -Metzler/M -Meuse/M -mewl/GSD -mew/SGD -mews/SM -Mex -Mexicali/M -Mexican/S -Mexico/M -Meyerbeer/M -Meyer/SM -mezzanine/MS -mezzo/S -MFA -mfg -mfr/S -mg -M/GB -Mg/M -MGM/M -mgr -Mgr -MHz -MI -MIA -Mia/M -Miami/SM -Miaplacidus/M -miasmal -miasma/SM -Micaela/M -Micah/M -mica/MS -micelles -mice/M -Michaela/M -Michaelangelo/M -Michaelina/M -Michaeline/M -Michaella/M -Michaelmas/MS -Michael/SM -Michaelson/M -Michail/M -Michale/M -Michal/M -Micheal/M -Micheil/M -Michelangelo/M -Michele/M -Michelina/M -Micheline/M -Michelin/M -Michelle/M -Michell/M -Michel/M -Michelson/M -Michigander/S -Michiganite/S -Michigan/M -Mich/M -Mickelson/M -Mickey/M -mickey/SM -Mickie/M -Micki/M -Mick/M -Micky/M -Mic/M -Micmac/M -micra's -microamp -microanalysis/M -microanalytic -microbe/MS -microbial -microbicidal -microbicide/M -microbiological -microbiologist/MS -microbiology/SM -microbrewery/S -microchemistry/M -microchip/S -microcircuit/MS -microcode/GSD -microcomputer/MS -microcosmic -microcosm/MS -microdensitometer -microdot/MS -microeconomic/S -microeconomics/M -microelectronic/S -microelectronics/M -microfiber/S -microfiche/M -microfilm/DRMSG -microfossils -micrography/M -microgroove/MS -microhydrodynamics -microinstruction/SM -microjoule -microlevel -microlight/S -micromanage/GDSL -micromanagement/S -micrometeorite/MS -micrometeoritic -micrometer/SM -Micronesia/M -Micronesian/S -micron/MS -microorganism/SM -microphone/SGM -Microport/M -microprocessing -microprocessor/SM -microprogrammed -microprogramming -microprogram/SM -micro/S -microscope/SM -microscopic -microscopical/Y -microscopy/MS -microsecond/MS -microsimulation/S -Microsystems -micros/M -Microsoft/M -microsomal -microstore -microsurgery/SM -MicroVAXes -MicroVAX/M -microvolt/SM -microwaveable -microwave/BMGSD -microword/S -midair/MS -midas -Midas/M -midband/M -midday/MS -midden/SM -middest -middlebrow/SM -Middlebury/M -middle/GJRSD -middleman/M -middlemen -middlemost -Middlesex/M -Middleton/M -Middletown/M -middleweight/SM -middling/Y -middy/SM -Mideastern -Mideast/M -midfield/RM -Midge/M -midge/SM -midget/MS -midi/S -midland/MRS -Midland/MS -midlife -midlives -midmorn/G -midmost/S -midnight/SYM -midpoint/MS -midrange -midrib/MS -midriff/MS -mid/S -midscale -midsection/M -midshipman/M -midshipmen -midship/S -midspan -midstream/MS -midst/SM -midsummer/MS -midterm/MS -midtown/MS -Midway/M -midway/S -midweek/SYM -Midwesterner/M -Midwestern/ZR -Midwest/M -midwicket -midwifery/SM -midwife/SDMG -midwinter/YMS -midwives -midyear/MS -mien/M -miff/GDS -mightily -mightiness/MS -mightn't -might/S -mighty/TPR -mignon -mignonette/SM -Mignon/M -Mignonne/M -migraine/SM -migrant/MS -migrate/ASDG -migration/MS -migrative -migratory/S -MIG/S -Miguela/M -Miguelita/M -Miguel/M -mikado/MS -Mikaela/M -Mikael/M -mike/DSMG -Mikel/M -Mike/M -Mikey/M -Mikhail/M -Mikkel/M -Mikol/M -Mikoyan/M -milady/MS -Milagros/M -Milanese -Milan/M -milch/M -mildew/DMGS -mildness/MS -Mildred/M -Mildrid/M -mild/STYRNP -mileage/SM -Milena/M -milepost/SM -miler/M -mile/SM -Mile/SM -milestone/MS -Milford/M -Milicent/M -milieu/SM -Milissent/M -militancy/MS -militantness/M -militant/YPS -militarily -militarism/SM -militaristic -militarist/MS -militarization/SCM -militarize/SDCG -military -militate/SDG -militiaman/M -militiamen -militia/SM -Milka/M -Milken/M -milker/M -milk/GZSRDM -milkiness/MS -milkmaid/SM -milkman/M -milkmen -milkshake/S -milksop/SM -milkweed/MS -milky/RPT -millage/S -Millard/M -Millay/M -millenarian -millenarianism/M -millennial -millennialism -millennium/MS -millepede's -miller/M -Miller/M -Millet/M -millet/MS -milliamp -milliampere/S -milliard/MS -millibar/MS -Millicent/M -millidegree/S -Millie/M -milligram/MS -millijoule/S -Millikan/M -milliliter/MS -Milli/M -millimeter/SM -milliner/SM -millinery/MS -milling/M -millionaire/MS -million/HDMS -millionth/M -millionths -millipede/SM -millisecond/MS -Millisent/M -millivoltmeter/SM -millivolt/SM -milliwatt/S -millpond/MS -millrace/SM -mill/SGZMRD -Mill/SMR -millstone/SM -millstream/SM -millwright/MS -Milly/M -mil/MRSZ -Mil/MY -Milne/M -Milo/M -Milquetoast/S -milquetoast/SM -Miltiades/M -Miltie/M -Milt/M -milt/MDSG -Miltonic -Milton/M -Miltown/M -Milty/M -Milwaukee/M -Milzie/M -MIMD -mime/DSRMG -mimeograph/GMDS -mimeographs -mimer/M -mimesis/M -mimetic -mimetically -mimicked -mimicker/SM -mimicking -mimicry/MS -mimic/S -Mimi/M -mi/MNX -Mimosa/M -mimosa/SM -Mina/M -minaret/MS -minatory -mincemeat/MS -mincer/M -mince/SRDGZJ -mincing/Y -Minda/M -Mindanao/M -mind/ARDSZG -mindbogglingly -minded/P -minder/M -mindfully -mindfulness/MS -mindful/U -mindlessness/SM -mindless/YP -Mindoro/M -min/DRZGJ -mind's -mindset/S -Mindy/M -minefield/MS -mineralization/C -mineralized/U -mineralogical -mineralogist/SM -mineralogy/MS -mineral/SM -miner/M -Miner/M -Minerva/M -mineshaft -mine/SNX -minestrone/MS -minesweeper/MS -Minetta/M -Minette/M -mineworkers -mingle/SDG -Ming/M -Mingus/M -miniature/GMSD -miniaturist/SM -miniaturization/MS -miniaturize/SDG -minibike/S -minibus/SM -minicab/M -minicam/MS -minicomputer/SM -minidress/SM -minify/GSD -minimalism/S -minimalistic -minimalist/MS -minimality -minimal/SY -minima's -minimax/M -minimization/MS -minimized/U -minimizer/M -minimize/RSDZG -minim/SM -minimum/MS -mining/M -minion/M -mini/S -miniseries -miniskirt/MS -ministerial/Y -minister/MDGS -ministrant/S -ministration/SM -ministry/MS -minivan/S -miniver/M -minke -mink/SM -Min/MR -Minna/M -Minnaminnie/M -Minneapolis/M -Minne/M -minnesinger/MS -Minnesota/M -Minnesotan/S -Minnie/M -Minni/M -Minn/M -Minnnie/M -minnow/SM -Minny/M -Minoan/S -Minolta/M -minor/DMSG -minority/MS -Minor/M -Minos -Minotaur/M -minotaur/S -Minot/M -minoxidil/S -Minsk/M -Minsky/M -minster/SM -minstrel/SM -minstrelsy/MS -mintage/SM -Mintaka/M -Minta/M -minter/M -mint/GZSMRD -minty/RT -minuend/SM -minuet/SM -Minuit/M -minuscule/SM -minus/S -minuteman -Minuteman/M -minutemen -minuteness/SM -minute/RSDPMTYG -minutiae -minutia/M -minx/MS -Miocene -MIPS -Miquela/M -Mirabeau/M -Mirabella/M -Mirabelle/M -Mirabel/M -Mirach/M -miracle/MS -miraculousness/M -miraculous/PY -mirage/GSDM -Mira/M -Miranda/M -Miran/M -Mireielle/M -Mireille/M -Mirella/M -Mirelle/M -mire/MGDS -Mirfak/M -Miriam/M -Mirilla/M -Mir/M -Mirna/M -Miro -mirror/DMGS -mirthfulness/SM -mirthful/PY -mirthlessness/M -mirthless/YP -mirth/M -mirths -MIRV/DSG -miry/RT -Mirzam/M -misaddress/SDG -misadventure/SM -misalign/DSGL -misalignment/MS -misalliance/MS -misanalysed -misanthrope/MS -misanthropic -misanthropically -misanthropist/S -misanthropy/SM -misapplier/M -misapply/GNXRSD -misapprehend/GDS -misapprehension/MS -misappropriate/GNXSD -misbegotten -misbehaver/M -misbehave/RSDG -misbehavior/SM -misbrand/DSG -misc -miscalculate/XGNSD -miscalculation/M -miscall/SDG -miscarriage/MS -miscarry/SDG -miscast/GS -miscegenation/SM -miscellanea -miscellaneous/PY -miscellany/MS -Mischa/M -mischance/MGSD -mischief/MDGS -mischievousness/MS -mischievous/PY -miscibility/S -miscible/C -misclassification/M -misclassified -misclassifying -miscode/SDG -miscommunicate/NDS -miscomprehended -misconceive/GDS -misconception/MS -misconduct/GSMD -misconfiguration -misconstruction/MS -misconstrue/DSG -miscopying -miscount/DGS -miscreant/MS -miscue/MGSD -misdeal/SG -misdealt -misdeed/MS -misdemeanant/SM -misdemeanor/SM -misdiagnose/GSD -misdid -misdirect/GSD -misdirection/MS -misdirector/S -misdoes -misdo/JG -misdone -miserableness/SM -miserable/SP -miserably -miser/KM -miserliness/MS -miserly/P -misery/MS -mises/KC -misfeasance/MS -misfeature/M -misfield -misfile/SDG -misfire/SDG -misfit/MS -misfitted -misfitting -misfortune/SM -misgauge/GDS -misgiving/MYS -misgovern/LDGS -misgovernment/S -misguidance/SM -misguidedness/M -misguided/PY -misguide/DRSG -misguider/M -Misha/M -mishandle/SDG -mishap/MS -mishapped -mishapping -misheard -mishear/GS -mishitting -mishmash/SM -misidentification/M -misidentify/GNSD -misinformation/SM -misinform/GDS -misinterpretation/MS -misinterpreter/M -misinterpret/RDSZG -misjudge/DSG -misjudging/Y -misjudgment/MS -Miskito -mislabel/DSG -mislaid -mislay/GS -misleader/M -mislead/GRJS -misleading/Y -misled -mismanage/LGSD -mismanagement/MS -mismatch/GSD -misname/GSD -misnomer/GSMD -misogamist/MS -misogamy/MS -misogynistic -misogynist/MS -misogynous -misogyny/MS -misperceive/SD -misplace/GLDS -misplacement/MS -misplay/GSD -mispositioned -misprint/SGDM -misprision/SM -mispronounce/DSG -mispronunciation/MS -misquotation/MS -misquote/GDS -misreader/M -misread/RSGJ -misrelated -misremember/DG -misreport/DGS -misrepresentation/MS -misrepresenter/M -misrepresent/SDRG -misroute/DS -misrule/SDG -missal/ESM -misshape/DSG -misshapenness/SM -misshapen/PY -Missie/M -missile/MS -missilery/SM -mission/AMS -missionary/MS -missioned -missioner/SM -missioning -missis's -Mississauga/M -Mississippian/S -Mississippi/M -missive/MS -Missoula/M -Missourian/S -Missouri/M -misspeak/SG -misspecification -misspecified -misspelling/M -misspell/SGJD -misspend/GS -misspent -misspoke -misspoken -mis/SRZ -miss/SDEGV -Miss/SM -misstate/GLDRS -misstatement/MS -misstater/M -misstep/MS -misstepped -misstepping -missus/SM -Missy/M -mistakable/U -mistake/BMGSR -mistaken/Y -mistaker/M -mistaking/Y -Mistassini/M -mister/GDM -Mister/SM -mistily -Misti/M -mistime/GSD -mistiness/S -mistletoe/MS -mist/MRDGZS -mistook -mistral/MS -mistranslated -mistranslates -mistranslating -mistranslation/SM -mistreat/DGSL -mistreatment/SM -Mistress/MS -mistress/MSY -mistrial/SM -mistruster/M -mistrustful/Y -mistrust/SRDG -Misty/M -mistype/SDGJ -misty/PRT -misunderstander/M -misunderstanding/M -misunderstand/JSRZG -misunderstood -misuser/M -misuse/RSDMG -miswritten -Mitchael/M -Mitchell/M -Mitchel/M -Mitch/M -miterer/M -miter/GRDM -mite/SRMZ -Mitford/M -Mithra/M -Mithridates/M -mitigated/U -mitigate/XNGVDS -mitigation/M -MIT/M -mitoses -mitosis/M -mitotic -MITRE/SM -Mitsubishi/M -mitten/M -Mitterrand/M -mitt/XSMN -Mitty/M -Mitzi/M -mitzvahs -mixable -mix/AGSD -mixed/U -mixer/SM -mixture/SM -Mizar/M -mizzenmast/SM -mizzen/MS -Mk -mks -ml -Mlle/M -mm -MM -MMe -Mme/SM -MN -mnemonically -mnemonics/M -mnemonic/SM -Mnemosyne/M -Mn/M -MO -moan/GSZRDM -moat/SMDG -mobbed -mobber -mobbing -mobcap/SM -Mobile/M -mobile/S -mobility/MS -mobilizable -mobilization/AMCS -mobilize/CGDS -mobilized/U -mobilizer/MS -mobilizes/A -Mobil/M -mob/MS -mobster/MS -Mobutu/M -moccasin/SM -mocha/SM -mockers/M -mockery/MS -mock/GZSRD -mockingbird/MS -mocking/Y -mo/CSK -modality/MS -modal/Y -modeled/A -modeler/M -modeling/M -models/A -model/ZGSJMRD -mode/MS -modem/SM -moderated/U -moderateness/SM -moderate/PNGDSXY -moderation/M -moderator/MS -modernism/MS -modernistic -modernist/S -modernity/SM -modernization/MS -modernized/U -modernizer/M -modernize/SRDGZ -modernizes/U -modernness/SM -modern/PTRYS -Modesta/M -Modestia/M -Modestine/M -Modesto/M -modest/TRY -Modesty/M -modesty/MS -modicum/SM -modifiability/M -modifiableness/M -modifiable/U -modification/M -modified/U -modifier/M -modify/NGZXRSD -Modigliani/M -modishness/MS -modish/YP -mod/TSR -Modula/M -modularity/SM -modularization -modularize/SDG -modular/SY -modulate/ADSNCG -modulation/CMS -modulator/ACSM -module/SM -moduli -modulo -modulus/M -modus -Moe/M -Moen/M -Mogadiscio's -Mogadishu -mogul/MS -Mogul/MS -mohair/SM -Mohamed/M -Mohammad/M -Mohammedanism/MS -Mohammedan/SM -Mohammed's -Mohandas/M -Mohandis/M -Mohawk/MS -Mohegan/S -Mohican's -Moho/M -Mohorovicic/M -Mohr/M -moiety/MS -moil/SGD -Moina/M -Moines/M -Moira/M -moire/MS -Moise/MS -Moiseyev/M -Moishe/M -moistener/M -moisten/ZGRD -moistness/MS -moist/TXPRNY -moisture/MS -moisturize/GZDRS -Mojave/M -molal -molarity/SM -molar/MS -molasses/MS -Moldavia/M -Moldavian/S -moldboard/SM -molder/DG -moldiness/SM -molding/M -mold/MRDJSGZ -Moldova -moldy/PTR -molecularity/SM -molecular/Y -molecule/MS -molehill/SM -mole/MTS -moleskin/MS -molestation/SM -molested/U -molester/M -molest/RDZGS -Moliere -Molina/M -Moline/M -Mollee/M -Mollie/M -mollification/M -mollify/XSDGN -Molli/M -Moll/M -moll/MS -mollusc's -mollusk/S -mollycoddler/M -mollycoddle/SRDG -Molly/M -molly/SM -Molnar/M -Moloch/M -Molokai/M -Molotov/M -molter/M -molt/RDNGZS -Moluccas -molybdenite/M -molybdenum/MS -Mombasa/M -momenta -momentarily -momentariness/SM -momentary/P -moment/MYS -momentousness/MS -momentous/YP -momentum/SM -momma/S -Mommy/M -mommy/SM -Mo/MN -mom/SM -Monaco/M -monadic -monad/SM -Monah/M -Mona/M -monarchic -monarchical -monarchism/MS -monarchistic -monarchist/MS -monarch/M -monarchs -monarchy/MS -Monash/M -monastery/MS -monastical/Y -monasticism/MS -monastic/S -monaural/Y -Mondale/M -Monday/MS -Mondrian/M -Monegasque/SM -Monera/M -monetarily -monetarism/S -monetarist/MS -monetary -monetization/CMA -monetize/CGADS -Monet/M -moneybag/SM -moneychangers -moneyer/M -moneylender/SM -moneymaker/MS -moneymaking/MS -money/SMRD -Monfort/M -monger/SGDM -Mongolia/M -Mongolian/S -Mongolic/M -mongolism/SM -mongoloid/S -Mongoloid/S -Mongol/SM -mongoose/SM -mongrel/SM -Monica/M -monies/M -Monika/M -moniker/MS -Monique/M -monism/MS -monist/SM -monition/SM -monitored/U -monitor/GSMD -monitory/S -monkeyshine/S -monkey/SMDG -monkish -Monk/M -monk/MS -monkshood/SM -Monmouth/M -monochromatic -monochromator -monochrome/MS -monocle/SDM -monoclinic -monoclonal/S -monocotyledonous -monocotyledon/SM -monocular/SY -monodic -monodist/S -monody/MS -monogamist/MS -monogamous/PY -monogamy/MS -monogrammed -monogramming -monogram/MS -monograph/GMDS -monographs -monolingualism -monolingual/S -monolithic -monolithically -monolith/M -monoliths -monologist/S -monologue/GMSD -monomaniacal -monomaniac/MS -monomania/MS -monomeric -monomer/SM -monomial/SM -mono/MS -Monongahela/M -mononuclear -mononucleoses -mononucleosis/M -monophonic -monoplane/MS -monopole/S -monopolistic -monopolist/MS -monopolization/MS -monopolized/U -monopolize/GZDSR -monopolizes/U -monopoly/MS -monorail/SM -monostable -monosyllabic -monosyllable/MS -monotheism/SM -monotheistic -monotheist/S -monotone/SDMG -monotonic -monotonically -monotonicity -monotonousness/MS -monotonous/YP -monotony/MS -monovalent -monoxide/SM -Monroe/M -Monro/M -Monrovia/M -Monsanto/M -monseigneur -monsieur/M -Monsignori -Monsignor/MS -monsignor/S -Mon/SM -monsoonal -monsoon/MS -monster/SM -monstrance/ASM -monstrosity/SM -monstrousness/M -monstrous/YP -montage/SDMG -Montague/M -Montaigne/M -Montana/M -Montanan/MS -Montcalm/M -Montclair/M -Monte/M -Montenegrin -Montenegro/M -Monterey/M -Monterrey/M -Montesquieu/M -Montessori/M -Monteverdi/M -Montevideo/M -Montezuma -Montgomery/M -monthly/S -month/MY -months -Monticello/M -Monti/M -Mont/M -Montmartre/M -Montoya/M -Montpelier/M -Montrachet/M -Montreal/M -Montserrat/M -Monty/M -monumentality/M -monumental/Y -monument/DMSG -mooch/ZSRDG -moodily -moodiness/MS -mood/MS -Moody/M -moody/PTR -Moog -moo/GSD -moonbeam/SM -Mooney/M -moon/GDMS -moonless -moonlight/GZDRMS -moonlighting/M -moonlit -Moon/M -moonscape/MS -moonshiner/M -moonshine/SRZM -moonshot/MS -moonstone/SM -moonstruck -moonwalk/SDG -Moore/M -moor/GDMJS -mooring/M -Moorish -moorland/MS -Moor/MS -moose/M -moot/RDGS -moped/MS -moper/M -mope/S -mopey -mopier -mopiest -mopish -mopped -moppet/MS -mopping -mop/SZGMDR -moraine/MS -morale/MS -Morales/M -moralistic -moralistically -moralist/MS -morality/UMS -moralization/CS -moralize/CGDRSZ -moralled -moraller -moralling -moral/SMY -Mora/M -Moran/M -morass/SM -moratorium/SM -Moravia/M -Moravian -moray/SM -morbidity/SM -morbidness/S -morbid/YP -mordancy/MS -mordant/GDYS -Mordecai/M -Mord/M -Mordred/M -Mordy/M -more/DSN -Moreen/M -Morehouse/M -Moreland/M -morel/SM -More/M -Morena/M -Moreno/M -moreover -Morey/M -Morgana/M -Morganica/M -Morgan/MS -Morganne/M -morgen/M -Morgen/M -morgue/SM -Morgun/M -Moria/M -Moriarty/M -moribundity/M -moribund/Y -Morie/M -Morin/M -morion/M -Morison/M -Morissa/M -Morita/M -Moritz/M -Morlee/M -Morley/M -Morly/M -Mormonism/MS -Mormon/SM -Morna/M -morning/MY -morn/SGJDM -Moroccan/S -Morocco/M -morocco/SM -Moro/M -moronic -moronically -Moroni/M -moron/SM -moroseness/MS -morose/YP -morpheme/DSMG -morphemic/S -Morpheus/M -morph/GDJ -morphia/S -morphine/MS -morphism/MS -morphologic -morphological/Y -morphology/MS -morphophonemic/S -morphophonemics/M -morphs -Morrie/M -morris -Morris/M -Morrison/M -Morristown/M -Morrow/M -morrow/MS -Morry/M -morsel/GMDS -Morse/M -mortality/SM -mortal/SY -mortarboard/SM -mortar/GSDM -Morten/M -mortgageable -mortgagee/SM -mortgage/MGDS -mortgagor/SM -mortice's -mortician/SM -Mortie/M -mortification/M -mortified/Y -mortifier/M -mortify/DRSXGN -Mortimer/M -mortise/MGSD -Mort/MN -Morton/M -mortuary/MS -Morty/M -Mosaic -mosaicked -mosaicking -mosaic/MS -Moscone/M -Moscow/M -Moseley/M -Moselle/M -Mose/MSR -Moser/M -mosey/SGD -Moshe/M -Moslem's -Mosley/M -mosque/SM -mosquitoes -mosquito/M -mos/S -mossback/MS -Mossberg/M -Moss/M -moss/SDMG -mossy/SRT -most/SY -Mosul/M -mote/ASCNK -motel/MS -mote's -motet/SM -mothball/DMGS -motherboard/MS -motherfucker/MS! -motherfucking/! -motherhood/SM -mothering/M -motherland/SM -motherless -motherliness/MS -motherly/P -mother/RDYMZG -moths -moth/ZMR -motif/MS -motile/S -motility/MS -motional/K -motioner/M -motion/GRDMS -motionlessness/S -motionless/YP -motion's/ACK -motions/K -motivated/U -motivate/XDSNGV -motivational/Y -motivation/M -motivator/S -motiveless -motive/MGSD -motley/S -motlier -motliest -mot/MSV -motocross/SM -motorbike/SDGM -motorboat/MS -motorcade/MSDG -motorcar/MS -motorcycle/GMDS -motorcyclist/SM -motor/DMSG -motoring/M -motorist/SM -motorization/SM -motorize/DSG -motorized/U -motorman/M -motormen -motormouth -motormouths -Motorola/M -motorway/SM -Motown/M -mottle/GSRD -mottler/M -Mott/M -mottoes -motto/M -moue/DSMG -moulder/DSG -moult/GSD -mound/GMDS -mountable -mountaineering/M -mountaineer/JMDSG -mountainousness/M -mountainous/PY -mountainside/MS -mountain/SM -mountaintop/SM -Mountbatten/M -mountebank/SGMD -mounted/U -mount/EGACD -mounter/SM -mounties -Mountie/SM -mounting/MS -Mount/M -mounts/AE -mourner/M -mournfuller -mournfullest -mournfulness/S -mournful/YP -mourning/M -mourn/ZGSJRD -mouser/M -mouse/SRDGMZ -mousetrapped -mousetrapping -mousetrap/SM -mousiness/MS -mousing/M -mousse/MGSD -Moussorgsky/M -mousy/PRT -Mouthe/M -mouthful/MS -mouthiness/SM -mouth/MSRDG -mouthorgan -mouthpiece/SM -mouths -mouthwash/SM -mouthwatering -mouthy/PTR -Mouton/M -mouton/SM -movable/ASP -movableness/AM -move/ARSDGZB -moved/U -movement/SM -mover/AM -moviegoer/S -movie/SM -moving/YS -mower/M -Mowgli/M -mowing/M -mow/SDRZG -moxie/MS -Moyer/M -Moyna/M -Moyra/M -Mozambican/S -Mozambique/M -Mozart/M -Mozelle/M -Mozes/M -Mozilla/M -mozzarella/MS -mp -MP -mpg -mph -MPH -MRI -Mr/M -Mrs -ms -M's -MS -MSG -Msgr/M -m's/K -Ms/S -MST -MSW -mt -MT -mtg -mtge -Mt/M -MTS -MTV -Muawiya/M -Mubarak/M -muchness/M -much/SP -mucilage/MS -mucilaginous -mucker/M -muck/GRDMS -muckraker/M -muckrake/ZMDRSG -mucky/RT -mucosa/M -mucous -mucus/SM -mudded -muddily -muddiness/SM -mudding -muddle/GRSDZ -muddleheaded/P -muddlehead/SMD -muddler/M -muddy/TPGRSD -mudflat/S -mudguard/SM -mudlarks -mud/MS -mudroom/S -mudslide/S -mudslinger/M -mudslinging/M -mudsling/JRGZ -Mueller/M -Muenster -muenster/MS -muesli/M -muezzin/MS -muff/GDMS -Muffin/M -muffin/SM -muffler/M -muffle/ZRSDG -Mufi/M -Mufinella/M -mufti/MS -Mugabe/M -mugged -mugger/SM -mugginess/S -mugging/S -muggy/RPT -mugshot/S -mug/SM -mugwump/MS -Muhammadanism/S -Muhammadan/SM -Muhammad/M -Muire/M -Muir/M -Mukden/M -mukluk/SM -mulattoes -mulatto/M -mulberry/MS -mulch/GMSD -mulct/SDG -Mulder/M -mule/MGDS -muleskinner/S -muleteer/MS -mulishness/MS -mulish/YP -mullah/M -mullahs -mullein/MS -Mullen/M -muller/M -Muller/M -mullet/MS -Mulligan/M -mulligan/SM -mulligatawny/SM -Mullikan/M -Mullins -mullion/MDSG -mull/RDSG -Multan/M -multi -Multibus/M -multicellular -multichannel/M -multicollinearity/M -multicolor/SDM -multicolumn -multicomponent -multicomputer/MS -Multics/M -MULTICS/M -multicultural -multiculturalism/S -multidimensional -multidimensionality -multidisciplinary -multifaceted -multifamily -multifariousness/SM -multifarious/YP -multifigure -multiform -multifunction/D -multilateral/Y -multilayer -multilevel/D -multilingual -multilingualism/S -multimedia/S -multimegaton/M -multimeter/M -multimillionaire/SM -multinational/S -multinomial/M -multiphase -multiple/SM -multiplet/SM -multiplex/GZMSRD -multiplexor's -multipliable -multiplicand/SM -multiplication/M -multiplicative/YS -multiplicity/MS -multiplier/M -multiply/ZNSRDXG -multiprocess/G -multiprocessor/MS -multiprogram -multiprogrammed -multiprogramming/MS -multipurpose -multiracial -multistage -multistory/S -multisyllabic -multitasking/S -multitude/MS -multitudinousness/M -multitudinous/YP -multiuser -multivalent -multivalued -multivariate -multiversity/M -multivitamin/S -mu/M -mumbler/M -mumbletypeg/S -mumble/ZJGRSD -Mumford/M -mummed -mummer/SM -mummery/MS -mummification/M -mummify/XSDGN -mumming -mum/MS -mummy/GSDM -mumps/M -muncher/M -Mnchhausen/M -munchies -Munch/M -munch/ZRSDG -Muncie/M -mundane/YSP -Mundt/M -munge/JGZSRD -Munich/M -municipality/SM -municipal/YS -munificence/MS -munificent/Y -munition/SDG -Munmro/M -Munoz/M -Munroe/M -Munro/M -mun/S -Munsey/M -Munson/M -Munster/MS -Muong/M -muon/M -Muppet/M -muralist/SM -mural/SM -Murasaki/M -Murat/M -Murchison/M -Murcia/M -murderer/M -murderess/S -murder/GZRDMS -murderousness/M -murderous/YP -Murdoch/M -Murdock/M -Mureil/M -Murial/M -muriatic -Murielle/M -Muriel/M -Murillo/M -murkily -murkiness/S -murk/TRMS -murky/RPT -Murmansk/M -murmurer/M -murmuring/U -murmurous -murmur/RDMGZSJ -Murphy/M -murrain/SM -Murray/M -Murrow/M -Murrumbidgee/M -Murry/M -Murvyn/M -muscatel/MS -Muscat/M -muscat/SM -musclebound -muscle/SDMG -Muscovite/M -muscovite/MS -Muscovy/M -muscularity/SM -muscular/Y -musculature/SM -muse -Muse/M -muser/M -musette/SM -museum/MS -mus/GJDSR -musher/M -mushiness/MS -mush/MSRDG -mushroom/DMSG -mushy/PTR -Musial/M -musicale/SM -musicality/SM -musicals -musical/YU -musician/MYS -musicianship/MS -musicked -musicking -musicological -musicologist/MS -musicology/MS -music/SM -musing/Y -Muskegon/M -muskeg/SM -muskellunge/SM -musketeer/MS -musketry/MS -musket/SM -musk/GDMS -muskie/M -muskiness/MS -muskmelon/MS -muskox/N -muskrat/MS -musky/RSPT -Muslim/MS -muslin/MS -mussel/MS -Mussolini/MS -Mussorgsky/M -muss/SDG -mussy/RT -mustache/DSM -mustachio/MDS -mustang/MS -mustard/MS -muster/GD -mustily -mustiness/MS -mustn't -must/RDGZS -must've -musty/RPT -mutability/SM -mutableness/M -mutable/P -mutably -mutagen/SM -mutant/MS -mutate/XVNGSD -mutational/Y -mutation/M -mutator/S -muted/Y -muteness/S -mute/PDSRBYTG -mutilate/XDSNG -mutilation/M -mutilator/MS -mutineer/SMDG -mutinous/Y -mutiny/MGSD -Mutsuhito/M -mutterer/M -mutter/GZRDJ -muttonchops -mutton/SM -mutt/ZSMR -mutuality/S -mutual/SY -muumuu/MS -muzak -Muzak/SM -Muzo/M -muzzled/U -muzzle/MGRSD -muzzler/M -MVP -MW -Myanmar -Mycah/M -Myca/M -Mycenaean -Mycenae/M -Mychal/M -mycologist/MS -mycology/MS -myelitides -myelitis/M -Myer/MS -myers -mylar -Mylar/S -Myles/M -Mylo/M -My/M -myna/SM -Mynheer/M -myocardial -myocardium/M -myopia/MS -myopically -myopic/S -Myrah/M -Myra/M -Myranda/M -Myrdal/M -myriad/S -Myriam/M -Myrilla/M -Myrle/M -Myrlene/M -myrmidon/S -Myrna/M -Myron/M -myrrh/M -myrrhs -Myrta/M -Myrtia/M -Myrtice/M -Myrtie/M -Myrtle/M -myrtle/SM -Myrvyn/M -Myrwyn/M -mys -my/S -myself -Mysore/M -mysteriousness/MS -mysterious/YP -mystery/MDSG -mystical/Y -mysticism/MS -mystic/SM -mystification/M -mystifier/M -mystify/CSDGNX -mystifying/Y -mystique/MS -Myst/M -mythic -mythical/Y -myth/MS -mythographer/SM -mythography/M -mythological/Y -mythologist/MS -mythologize/CSDG -mythology/SM -myths -N -NAACP -nabbed -nabbing -Nabisco/M -nabob/SM -Nabokov/M -nab/S -nacelle/SM -nacho/S -NaCl/M -nacre/MS -nacreous -Nada/M -Nadean/M -Nadeen/M -Nader/M -Nadia/M -Nadine/M -nadir/SM -Nadiya/M -Nadya/M -Nady/M -nae/VM -Nagasaki/M -nagged -nagger/S -nagging/Y -nag/MS -Nagoya/M -Nagpur/M -Nagy/M -Nahuatl/SM -Nahum/M -naiad/SM -naifs -nailbrush/SM -nailer/M -nail/SGMRD -Naipaul/M -Nair/M -Nairobi/M -Naismith/M -naive/SRTYP -naivet/SM -naivety/MS -Nakamura/M -Nakayama/M -nakedness/MS -naked/TYRP -Nakoma/M -Nalani/M -Na/M -Namath/M -nameable/U -name/ADSG -namedrop -namedropping -named's -named/U -nameless/PY -namely -nameplate/MS -namer/SM -name's -namesake/SM -Namibia/M -Namibian/S -naming/M -Nam/M -Nanak/M -Nana/M -Nananne/M -Nancee/M -Nance/M -Nancey/M -Nanchang/M -Nancie/M -Nanci/M -Nancy/M -Nanete/M -Nanette/M -Nanice/M -Nani/M -Nanine/M -Nanjing -Nanking's -Nan/M -Nannette/M -Nannie/M -Nanni/M -Nanny/M -nanny/SDMG -nanometer/MS -Nanon/M -Nanook/M -nanosecond/SM -Nansen/M -Nantes/M -Nantucket/M -Naoma/M -Naomi/M -napalm/MDGS -nape/SM -Naphtali/M -naphthalene/MS -naphtha/SM -Napier/M -napkin/SM -Naples/M -napless -Nap/M -Napoleonic -napoleon/MS -Napoleon/MS -napped -napper/MS -Nappie/M -napping -Nappy/M -nappy/TRSM -nap/SM -Nara/M -Narbonne/M -narc/DGS -narcissism/MS -narcissistic -narcissist/MS -narcissus/M -Narcissus/M -narcoleptic -narcoses -narcosis/M -narcotic/SM -narcotization/S -narcotize/GSD -Nariko/M -Nari/M -nark's -Narmada/M -Narragansett/M -narrate/VGNSDX -narration/M -narrative/MYS -narratology -narrator/SM -narrowing/P -narrowness/SM -narrow/RDYTGPS -narwhal/MS -nary -nasality/MS -nasalization/MS -nasalize/GDS -nasal/YS -NASA/MS -nascence/ASM -nascent/A -NASDAQ -Nash/M -Nashua/M -Nashville/M -Nassau/M -Nasser/M -nastily -nastiness/MS -nasturtium/SM -nasty/TRSP -natal -Natala/M -Natalee/M -Natale/M -Natalia/M -Natalie/M -Natalina/M -Nataline/M -natalist -natality/M -Natal/M -Natalya/M -Nata/M -Nataniel/M -Natasha/M -Natassia/M -Natchez -natch/S -Nate/XMN -Nathalia/M -Nathalie/M -Nathanael/M -Nathanial/M -Nathaniel/M -Nathanil/M -Nathan/MS -nationalism/SM -nationalistic -nationalistically -nationalist/MS -nationality/MS -nationalization/MS -nationalize/CSDG -nationalized/AU -nationalizer/SM -national/YS -nationhood/SM -nation/MS -nationwide -nativeness/M -native/PYS -Natividad/M -Nativity/M -nativity/MS -Natka/M -natl -Nat/M -NATO/SM -natter/SGD -nattily -nattiness/SM -Natty/M -natty/TRP -naturalism/MS -naturalistic -naturalist/MS -naturalization/SM -naturalized/U -naturalize/GSD -naturalness/US -natural/PUY -naturals -nature/ASDCG -nature's -naturist -Naugahyde/S -naughtily -naughtiness/SM -naught/MS -naughty/TPRS -Naur/M -Nauru/M -nausea/SM -nauseate/DSG -nauseating/Y -nauseousness/SM -nauseous/P -nautical/Y -nautilus/MS -Navaho's -Navajoes -Navajo/S -naval/Y -Navarro/M -navel/MS -nave/SM -navigability/SM -navigableness/M -navigable/P -navigate/DSXNG -navigational -navigation/M -navigator/MS -Navona/M -Navratilova/M -navvy/M -Navy/S -navy/SM -nay/MS -naysayer/S -Nazarene/MS -Nazareth/M -Nazi/SM -Nazism/S -NB -NBA -NBC -Nb/M -NBS -NC -NCAA -NCC -NCO -NCR -ND -N'Djamena -Ndjamena/M -Nd/M -Ne -NE -Neala/M -Neale/M -Neall/M -Neal/M -Nealon/M -Nealson/M -Nealy/M -Neanderthal/S -neap/DGS -Neapolitan/SM -nearby -nearly/RT -nearness/MS -nearside/M -nearsightedness/S -nearsighted/YP -near/TYRDPSG -neaten/DG -neath -neatness/MS -neat/YRNTXPS -Neb/M -Nebraska/M -Nebraskan/MS -Nebr/M -Nebuchadnezzar/MS -nebulae -nebula/M -nebular -nebulousness/SM -nebulous/PY -necessaries -necessarily/U -necessary/U -necessitate/DSNGX -necessitation/M -necessitous -necessity/SM -neckband/M -neckerchief/MS -neck/GRDMJS -necking/M -necklace/DSMG -neckline/MS -necktie/MS -necrology/SM -necromancer/MS -necromancy/MS -necromantic -necrophiliac/S -necrophilia/M -necropolis/SM -necropsy/M -necroses -necrosis/M -necrotic -nectarine/SM -nectarous -nectar/SM -nectary/MS -Neda/M -Nedda/M -Neddie/M -Neddy/M -Nedi/M -Ned/M -ne -needed/U -needer/M -needful/YSP -Needham/M -neediness/MS -needlecraft/M -needle/GMZRSD -needlepoint/SM -needlessness/S -needless/YP -needlewoman/M -needlewomen -needlework/RMS -needn't -need/YRDGS -needy/TPR -Neel/M -Neely/M -ne'er -nefariousness/MS -nefarious/YP -Nefen/M -Nefertiti/M -negated/U -negater/M -negate/XRSDVNG -negation/M -negativeness/SM -negative/PDSYG -negativism/MS -negativity/MS -negator/MS -Negev/M -neglecter/M -neglectfulness/SM -neglectful/YP -neglect/SDRG -negligee/SM -negligence/MS -negligent/Y -negligibility/M -negligible -negligibly -negotiability/MS -negotiable/A -negotiant/M -negotiate/ASDXGN -negotiation/MA -negotiator/MS -Negress/MS -negritude/MS -Negritude/S -Negroes -negroid -Negroid/S -Negro/M -neg/S -Nehemiah/M -Nehru/M -neighbored/U -neighborer/M -neighborhood/SM -neighborlinesses -neighborliness/UM -neighborly/UP -neighbor/SMRDYZGJ -neigh/MDG -neighs -Neila/M -Neile/M -Neilla/M -Neille/M -Neill/M -Neil/SM -neither -Nelda/M -Nelia/M -Nelie/M -Nelle/M -Nellie/M -Nelli/M -Nell/M -Nelly/M -Nelsen/M -Nels/N -Nelson/M -nelson/MS -nematic -nematode/SM -Nembutal/M -nemeses -nemesis -Nemesis/M -neoclassical -neoclassicism/MS -neoclassic/M -neocolonialism/MS -neocortex/M -neodymium/MS -Neogene -neolithic -Neolithic/M -neologism/SM -neomycin/M -neonatal/Y -neonate/MS -neon/DMS -neophyte/MS -neoplasm/SM -neoplastic -neoprene/SM -Nepalese -Nepali/MS -Nepal/M -nepenthe/MS -nephew/MS -nephrite/SM -nephritic -nephritides -nephritis/M -nepotism/MS -nepotist/S -Neptune/M -neptunium/MS -nerd/S -nerdy/RT -Nereid/M -Nerf/M -Nerissa/M -Nerita/M -Nero/M -Neron/M -Nerta/M -Nerte/M -Nertie/M -Nerti/M -Nert/M -Nerty/M -Neruda/M -nervelessness/SM -nerveless/YP -nerve's -nerve/UGSD -nerviness/SM -nerving/M -nervousness/SM -nervous/PY -nervy/TPR -Nessa/M -Nessie/M -Nessi/M -Nessy/M -Nesta/M -nester/M -Nester/M -Nestle/M -nestler/M -nestle/RSDG -nestling/M -Nestorius/M -Nestor/M -nest/RDGSBM -netball/M -nether -Netherlander/SM -Netherlands/M -nethermost -netherworld/S -Netscape/M -net/SM -Netta/M -Nettie/M -Netti/M -netting/M -nett/JGRDS -Nettle/M -nettle/MSDG -nettlesome -Netty/M -network/SJMDG -Netzahualcoyotl/M -Neumann/M -neuralgia/MS -neuralgic -neural/Y -neurasthenia/MS -neurasthenic/S -neuritic/S -neuritides -neuritis/M -neuroanatomy -neurobiology/M -neurological/Y -neurologist/MS -neurology/SM -neuromuscular -neuronal -neurone/S -neuron/MS -neuropathology/M -neurophysiology/M -neuropsychiatric -neuroses -neurosis/M -neurosurgeon/MS -neurosurgery/SM -neurotically -neurotic/S -neurotransmitter/S -neuter/JZGRD -neutralise's -neutralism/MS -neutralist/S -neutrality/MS -neutralization/MS -neutralized/U -neutralize/GZSRD -neutral/PYS -neutrino/MS -neutron/MS -neut/ZR -Nevada/M -Nevadan/S -Nevadian/S -Neva/M -never -nevermore -nevertheless -nevi -Nevile/M -Neville/M -Nevil/M -Nevin/SM -Nevis/M -Nev/M -Nevsa/M -Nevsky/M -nevus/M -Newark/M -newbie/S -newborn/S -Newbury/M -Newburyport/M -Newcastle/M -newcomer/MS -newed/A -Newell/M -newel/MS -newer/A -newfangled -newfound -newfoundland -Newfoundlander/M -Newfoundland/SRMZ -newish -newline/SM -newlywed/MS -Newman/M -newness/MS -Newport/M -news/A -newsagent/MS -newsboy/SM -newscaster/M -newscasting/M -newscast/SRMGZ -newsdealer/MS -newsed -newses -newsflash/S -newsgirl/S -newsgroup/SM -newsing -newsletter/SM -NeWS/M -newsman/M -newsmen -newspaperman/M -newspapermen -newspaper/SMGD -newspaperwoman/M -newspaperwomen -newsprint/MS -new/SPTGDRY -newsreader/MS -newsreel/SM -newsroom/S -news's -newsstand/MS -Newsweekly/M -newsweekly/S -Newsweek/MY -newswire -newswoman/M -newswomen -newsworthiness/SM -newsworthy/RPT -newsy/TRS -newt/MS -Newtonian -Newton/M -newton/SM -Nexis/M -next -nexus/SM -Neysa/M -NF -NFC -NFL -NFS -Ngaliema/M -Nguyen/M -NH -NHL -niacin/SM -Niagara/M -Niall/M -Nial/M -Niamey/M -nibbed -nibbing -nibbler/M -nibble/RSDGZ -Nibelung/M -nib/SM -Nicaean -Nicaragua/M -Nicaraguan/S -Niccolo/M -Nice/M -Nicene -niceness/MS -nicety/MS -nice/YTPR -niche/SDGM -Nicholas -Nichole/M -Nicholle/M -Nichol/MS -Nicholson/M -nichrome -nickelodeon/SM -nickel/SGMD -nicker/GD -Nickey/M -nick/GZRDMS -Nickie/M -Nicki/M -Nicklaus/M -Nick/M -nicknack's -nickname/MGDRS -nicknamer/M -Nickolai/M -Nickola/MS -Nickolaus/M -Nicko/M -Nicky/M -Nicobar/M -Nicodemus/M -Nicolai/MS -Nicola/MS -Nicolea/M -Nicole/M -Nicolette/M -Nicoli/MS -Nicolina/M -Nicoline/M -Nicolle/M -Nicol/M -Nico/M -Nicosia/M -nicotine/MS -Niebuhr/M -niece/MS -Niel/MS -Nielsen/M -Niels/N -Nielson/M -Nietzsche/M -Nieves/M -nifty/TRS -Nigel/M -Nigeria/M -Nigerian/S -Nigerien -Niger/M -niggardliness/SM -niggardly/P -niggard/SGMDY -nigger/SGDM! -niggler/M -niggle/RSDGZJ -niggling/Y -nigh/RDGT -nighs -nightcap/SM -nightclothes -nightclubbed -nightclubbing -nightclub/MS -nightdress/MS -nightfall/SM -nightgown/MS -nighthawk/MS -nightie/MS -Nightingale/M -nightingale/SM -nightlife/MS -nightlong -nightmare/MS -nightmarish/Y -nightshade/SM -nightshirt/MS -night/SMYDZ -nightspot/MS -nightstand/SM -nightstick/S -nighttime/S -nightwear/M -nighty's -NIH -nihilism/MS -nihilistic -nihilist/MS -Nijinsky/M -Nikaniki/M -Nike/M -Niki/M -Nikita/M -Nikkie/M -Nikki/M -Nikko/M -Nikolai/M -Nikola/MS -Nikolaos/M -Nikolaus/M -Nikolayev's -Nikoletta/M -Nikolia/M -Nikolos/M -Niko/MS -Nikon/M -Nile/SM -nilled -nilling -Nil/MS -nil/MYS -nilpotent -Nilsen/M -Nils/N -Nilson/M -Nilsson/M -Ni/M -nimbi -nimbleness/SM -nimble/TRP -nimbly -nimbus/DM -NIMBY -Nimitz/M -Nimrod/MS -Nina/M -nincompoop/MS -ninefold -nine/MS -ninepence/M -ninepin/S -ninepins/M -nineteen/SMH -nineteenths -ninetieths -Ninetta/M -Ninette/M -ninety/MHS -Nineveh/M -ninja/S -Ninnetta/M -Ninnette/M -ninny/SM -Ninon/M -Nintendo/M -ninth -ninths -Niobe/M -niobium/MS -nipped -nipper/DMGS -nippiness/S -nipping/Y -nipple/GMSD -Nipponese -Nippon/M -nippy/TPR -nip/S -Nirenberg/M -nirvana/MS -Nirvana/S -nisei -Nisei/MS -Nissa/M -Nissan/M -Nisse/M -Nissie/M -Nissy/M -Nita/M -niter/M -nitpick/DRSJZG -nitrate/MGNXSD -nitration/M -nitric -nitride/MGS -nitriding/M -nitrification/SM -nitrite/MS -nitrocellulose/MS -nitrogenous -nitrogen/SM -nitroglycerin/MS -nitrous -nitwit/MS -nit/ZSMR -Niven/M -nixer/M -nix/GDSR -Nixie/M -Nixon/M -NJ -Nkrumah/M -NLRB -nm -NM -no/A -NOAA -Noach/M -Noah/M -Noak/M -Noami/M -Noam/M -Nobelist/SM -nobelium/MS -Nobel/M -Nobe/M -Nobie/M -nobility/MS -Noble/M -nobleman/M -noblemen -nobleness/SM -noblesse/M -noble/TPSR -noblewoman -noblewomen -nob/MY -nobody/MS -Noby/M -nocturnal/SY -nocturne/SM -nodal/Y -nodded -nodding -noddle/MSDG -noddy/M -node/MS -NoDoz/M -nod/SM -nodular -nodule/SM -Noelani/M -Noella/M -Noelle/M -Noell/M -Noellyn/M -Noel/MS -noel/S -Noelyn/M -Noe/M -Noemi/M -noes/S -noggin/SM -nohow -noise/GMSD -noiselessness/SM -noiseless/YP -noisemaker/M -noisemake/ZGR -noisily -noisiness/MS -noisome -noisy/TPR -Nola/M -Nolana/M -Noland/M -Nolan/M -Nolie/M -Nollie/M -Noll/M -Nolly/M -No/M -nomadic -nomad/SM -Nome/M -nomenclature/MS -Nomi/M -nominalized -nominal/K -nominally -nominals -nominate/CDSAXNG -nomination/MAC -nominative/SY -nominator/CSM -nominee/MS -non -nonabrasive -nonabsorbent/S -nonacademic/S -nonacceptance/MS -nonacid/MS -nonactive -nonadaptive -nonaddictive -nonadhesive -nonadjacent -nonadjustable -nonadministrative -nonage/MS -nonagenarian/MS -nonaggression/SM -nonagricultural -Nonah/M -nonalcoholic/S -nonaligned -nonalignment/SM -nonallergic -Nona/M -nonappearance/MS -nonassignable -nonathletic -nonattendance/SM -nonautomotive -nonavailability/SM -nonbasic -nonbeliever/SM -nonbelligerent/S -nonblocking -nonbreakable -nonburnable -nonbusiness -noncaloric -noncancerous -noncarbohydrate/M -nonce/MS -nonchalance/SM -nonchalant/YP -nonchargeable -nonclerical/S -nonclinical -noncollectable -noncombatant/MS -noncombustible/S -noncommercial/S -noncommissioned -noncommittal/Y -noncom/MS -noncommunicable -noncompeting -noncompetitive -noncompliance/MS -noncomplying/S -noncomprehending -nonconducting -nonconductor/MS -nonconforming -nonconformist/SM -nonconformity/SM -nonconsecutive -nonconservative -nonconstructive -noncontagious -noncontiguous -noncontinuous -noncontributing -noncontributory -noncontroversial -nonconvertible -noncooperation/SM -noncorroding/S -noncorrosive -noncredit -noncriminal/S -noncritical -noncrystalline -noncumulative -noncustodial -noncyclic -nondairy -nondecreasing -nondeductible -nondelivery/MS -nondemocratic -nondenominational -nondepartmental -nondepreciating -nondescript/YS -nondestructive/Y -nondetachable -nondeterminacy -nondeterminate/Y -nondeterminism -nondeterministic -nondeterministically -nondisciplinary -nondisclosure/SM -nondiscrimination/SM -nondiscriminatory -nondramatic -nondrinker/SM -nondrying -nondurable -noneconomic -noneducational -noneffective/S -nonelastic -nonelectrical -nonelectric/S -nonemergency -nonempty -nonenforceable -nonentity/MS -nonequivalence/M -nonequivalent/S -none/S -nones/M -nonessential/S -nonesuch/SM -nonetheless -nonevent/MS -nonexchangeable -nonexclusive -nonexempt -nonexistence/MS -nonexistent -nonexplosive/S -nonextensible -nonfactual -nonfading -nonfat -nonfatal -nonfattening -nonferrous -nonfictional -nonfiction/SM -nonflammable -nonflowering -nonfluctuating -nonflying -nonfood/M -nonfreezing -nonfunctional -nongovernmental -nongranular -nonhazardous -nonhereditary -nonhuman -nonidentical -Nonie/M -Noni/M -noninclusive -nonindependent -nonindustrial -noninfectious -noninflammatory -noninflationary -noninflected -nonintellectual/S -noninteracting -noninterchangeable -noninterference/MS -nonintervention/SM -nonintoxicating -nonintuitive -noninvasive -nonionic -nonirritating -nonjudgmental -nonjudicial -nonlegal -nonlethal -nonlinearity/MS -nonlinear/Y -nonlinguistic -nonliterary -nonliving -nonlocal -nonmagical -nonmagnetic -nonmalignant -nonmember/SM -nonmetallic -nonmetal/MS -nonmigratory -nonmilitant/S -nonmilitary -Nonnah/M -Nonna/M -nonnarcotic/S -nonnative/S -nonnegative -nonnegotiable -nonnuclear -nonnumerical/S -nonobjective -nonobligatory -nonobservance/MS -nonobservant -nonoccupational -nonoccurence -nonofficial -nonogenarian -nonoperational -nonoperative -nonorthogonal -nonorthogonality -nonparallel/S -nonparametric -nonpareil/SM -nonparticipant/SM -nonparticipating -nonpartisan/S -nonpaying -nonpayment/SM -nonperformance/SM -nonperforming -nonperishable/S -nonperson/S -nonperturbing -nonphysical/Y -nonplus/S -nonplussed -nonplussing -nonpoisonous -nonpolitical -nonpolluting -nonporous -nonpracticing -nonprejudicial -nonprescription -nonprocedural/Y -nonproductive -nonprofessional/S -nonprofit/SB -nonprogrammable -nonprogrammer -nonproliferation/SM -nonpublic -nonpunishable -nonracial -nonradioactive -nonrandom -nonreactive -nonreciprocal/S -nonreciprocating -nonrecognition/SM -nonrecoverable -nonrecurring -nonredeemable -nonreducing -nonrefillable -nonrefundable -nonreligious -nonrenewable -nonrepresentational -nonresidential -nonresident/SM -nonresidual -nonresistance/SM -nonresistant/S -nonrespondent/S -nonresponse -nonrestrictive -nonreturnable/S -nonrhythmic -nonrigid -nonsalaried -nonscheduled -nonscientific -nonscoring -nonseasonal -nonsectarian -nonsecular -nonsegregated -nonsense/MS -nonsensicalness/M -nonsensical/PY -nonsensitive -nonsexist -nonsexual -nonsingular -nonskid -nonslip -nonsmoker/SM -nonsmoking -nonsocial -nonspeaking -nonspecialist/MS -nonspecializing -nonspecific -nonspiritual/S -nonstaining -nonstandard -nonstarter/SM -nonstick -nonstop -nonstrategic -nonstriking -nonstructural -nonsuccessive -nonsupervisory -nonsupport/GS -nonsurgical -nonsustaining -nonsympathizer/M -nontarnishable -nontaxable/S -nontechnical/Y -nontenured -nonterminal/MS -nonterminating -nontermination/M -nontheatrical -nonthinking/S -nonthreatening -nontoxic -nontraditional -nontransferable -nontransparent -nontrivial -nontropical -nonuniform -nonunion/S -nonuser/SM -nonvenomous -nonverbal/Y -nonveteran/MS -nonviable -nonviolence/SM -nonviolent/Y -nonvirulent -nonvocal -nonvocational -nonvolatile -nonvolunteer/S -nonvoter/MS -nonvoting -nonwhite/SM -nonworking -nonyielding -nonzero -noodle/GMSD -nook/MS -noonday/MS -noon/GDMS -nooning/M -noontide/MS -noontime/MS -noose/SDGM -nope/S -NORAD/M -noradrenalin -noradrenaline/M -Norah/M -Nora/M -Norbert/M -Norberto/M -Norbie/M -Norby/M -Nordhoff/M -Nordic/S -Nordstrom/M -Norean/M -Noreen/M -Norene/M -Norfolk/M -nor/H -Norina/M -Norine/M -normalcy/MS -normality/SM -normalization/A -normalizations -normalization's -normalized/AU -normalizes/AU -normalize/SRDZGB -normal/SY -Norma/M -Normand/M -Normandy/M -Norman/SM -normativeness/M -normative/YP -Normie/M -norm/SMGD -Normy/M -Norplant -Norrie/M -Norri/SM -Norristown/M -Norry/M -Norse -Norseman/M -Norsemen -Northampton/M -northbound -northeastern -northeaster/YM -Northeast/SM -northeastward/S -northeast/ZSMR -northerly/S -norther/MY -Northerner/M -northernmost -northern/RYZS -Northfield/M -northing/M -northland -North/M -northmen -north/MRGZ -Northrop/M -Northrup/M -norths -Norths -Northumberland/M -northward/S -northwestern -northwester/YM -northwest/MRZS -Northwest/MS -northwestward/S -Norton/M -Norwalk/M -Norway/M -Norwegian/S -Norwich/M -Norw/M -nosebag/M -nosebleed/SM -nosecone/S -nosedive/DSG -nosed/V -nosegay/MS -nose/M -Nosferatu/M -nos/GDS -nosh/MSDG -nosily -nosiness/MS -nosing/M -nostalgia/SM -nostalgically -nostalgic/S -Nostradamus/M -Nostrand/M -nostril/SM -nostrum/SM -nosy/SRPMT -notability/SM -notableness/M -notable/PS -notably -notarial -notarization/S -notarize/DSG -notary/MS -notate/VGNXSD -notational/CY -notation/CMSF -notative/CF -notch/MSDG -not/DRGB -notebook/MS -note/CSDFG -notedness/M -noted/YP -notepad/S -notepaper/MS -note's -noteworthiness/SM -noteworthy/P -nothingness/SM -nothing/PS -noticeable/U -noticeably -noticeboard/S -noticed/U -notice/MSDG -notifiable -notification/M -notifier/M -notify/NGXSRDZ -notional/Y -notion/MS -notoriety/S -notoriousness/M -notorious/YP -Notre/M -Nottingham/M -notwithstanding -Nouakchott/M -nougat/MS -Noumea/M -noun/SMK -nourish/DRSGL -nourished/U -nourisher/M -nourishment/SM -nous/M -nouveau -nouvelle -novae -Novak/M -Nova/M -nova/MS -novelette/SM -Novelia/M -novelist/SM -novelization/S -novelize/GDS -Novell/SM -novella/SM -novel/SM -novelty/MS -November/SM -novena/SM -novene -Novgorod/M -novice/MS -novitiate/MS -Nov/M -Novocaine/M -Novocain/S -Novokuznetsk/M -Novosibirsk/M -NOW -nowadays -noway/S -Nowell/M -nowhere/S -nowise -now/S -noxiousness/M -noxious/PY -Noyce/M -Noyes/M -nozzle/MS -Np -NP -NRA -nroff/M -N's -NS -n's/CI -NSF -n/T -NT -nth -nuance/SDM -nubbin/SM -nubby/RT -Nubia/M -Nubian/M -nubile -nub/MS -nuclear/K -nuclease/M -nucleated/A -nucleate/DSXNG -nucleation/M -nucleic -nuclei/M -nucleoli -nucleolus/M -nucleon/MS -nucleotide/MS -nucleus/M -nuclide/M -nude/CRS -nudely -nudeness/M -nudest -nudge/GSRD -nudger/M -nudism/MS -nudist/MS -nudity/MS -nugatory -Nugent/M -nugget/SM -nuisance/MS -nuke/DSMG -Nukualofa -null/DSG -nullification/M -nullifier/M -nullify/RSDXGNZ -nullity/SM -nu/M -numbered/UA -numberer/M -numberless -numberplate/M -number/RDMGJ -numbers/A -Numbers/M -numbing/Y -numbness/MS -numb/SGZTYRDP -numbskull's -numerable/IC -numeracy/SI -numeral/YMS -numerate/SDNGX -numerates/I -numeration/M -numerator/MS -numerical/Y -numeric/S -numerological -numerologist/S -numerology/MS -numerousness/M -numerous/YP -numinous/S -numismatic/S -numismatics/M -numismatist/MS -numskull/SM -Nunavut/M -nuncio/SM -Nunez/M -Nunki/M -nun/MS -nunnery/MS -nuptial/S -Nuremberg/M -Nureyev/M -nursemaid/MS -nurser/M -nurseryman/M -nurserymen -nursery/MS -nurse/SRDJGMZ -nursling/M -nurturer/M -nurture/SRDGZM -nus -nutate/NGSD -nutation/M -nutcracker/M -nutcrack/RZ -nuthatch/SM -nutmeat/SM -nutmegged -nutmegging -nutmeg/MS -nut/MS -nutpick/MS -Nutrasweet/M -nutria/SM -nutrient/MS -nutriment/MS -nutritional/Y -nutritionist/MS -nutrition/SM -nutritiousness/MS -nutritious/PY -nutritive/Y -nutshell/MS -nutted -nuttiness/SM -nutting -nutty/TRP -nuzzle/GZRSD -NV -NW -NWT -NY -Nyasa/M -NYC -Nydia/M -Nye/M -Nyerere/M -nylon/SM -nymphet/MS -nymph/M -nympholepsy/M -nymphomaniac/S -nymphomania/MS -nymphs -Nyquist/M -NYSE -Nyssa/M -NZ -o -O -oafishness/S -oafish/PY -oaf/MS -Oahu/M -Oakland/M -Oakley/M -Oakmont/M -oak/SMN -oakum/MS -oakwood -oar/GSMD -oarlock/MS -oarsman/M -oarsmen -oarswoman -oarswomen -OAS -oases -oasis/M -oatcake/MS -oater/M -Oates/M -oath/M -oaths -oatmeal/SM -oat/SMNR -Oaxaca/M -ob -OB -Obadiah/M -Obadias/M -obbligato/S -obduracy/S -obdurateness/S -obdurate/PDSYG -Obediah/M -obedience/EMS -obedient/EY -Obed/M -obeisance/MS -obeisant/Y -obelisk/SM -Oberlin/M -Oberon/M -obese -obesity/MS -obey/EDRGS -obeyer/EM -obfuscate/SRDXGN -obfuscation/M -obfuscatory -Obidiah/M -Obie/M -obi/MDGS -obit/SMR -obituary/SM -obj -objectify/GSDXN -objectionableness/M -objectionable/U -objectionably -objection/SMB -objectiveness/MS -objective/PYS -objectivity/MS -objector/SM -object/SGVMD -objurgate/GNSDX -objurgation/M -oblate/NYPSX -oblation/M -obligate/NGSDXY -obligational -obligation/M -obligatorily -obligatory -obliged/E -obliger/M -obliges/E -oblige/SRDG -obligingness/M -obliging/PY -oblique/DSYGP -obliqueness/S -obliquity/MS -obliterate/VNGSDX -obliteration/M -obliterative/Y -oblivion/MS -obliviousness/MS -oblivious/YP -oblongness/M -oblong/SYP -obloquies -obloquy/M -Ob/MD -obnoxiousness/MS -obnoxious/YP -oboe/SM -oboist/S -obos -O'Brien/M -obs -obscene/RYT -obscenity/MS -obscurantism/MS -obscurantist/MS -obscuration -obscureness/M -obscure/YTPDSRGL -obscurity/MS -obsequies -obsequiousness/S -obsequious/YP -obsequy -observability/M -observable/SU -observably -observance/MS -observantly -observants -observant/U -observational/Y -observation/MS -observatory/MS -observed/U -observer/M -observe/ZGDSRB -observing/Y -obsess/GVDS -obsessional -obsession/MS -obsessiveness/S -obsessive/PYS -obsidian/SM -obsolesce/GSD -obsolescence/S -obsolescent/Y -obsolete/GPDSY -obsoleteness/M -obstacle/SM -obstetrical -obstetrician/SM -obstetric/S -obstetrics/M -obstinacy/SM -obstinateness/M -obstinate/PY -obstreperousness/SM -obstreperous/PY -obstructed/U -obstructer/M -obstructionism/SM -obstructionist/MS -obstruction/SM -obstructiveness/MS -obstructive/PSY -obstruct/RDVGS -obtainable/U -obtainably -obtain/LSGDRB -obtainment/S -obtrude/DSRG -obtruder/M -obtrusion/S -obtrusiveness/MSU -obtrusive/UPY -obtuseness/S -obtuse/PRTY -obverse/YS -obviate/XGNDS -obviousness/SM -obvious/YP -Oby/M -ocarina/MS -O'Casey -Occam/M -occasional/Y -occasion/MDSJG -Occidental/S -occidental/SY -occident/M -Occident/SM -occipital/Y -occlude/GSD -occlusion/MS -occlusive/S -occulter/M -occultism/SM -occult/SRDYG -occupancy/SM -occupant/MS -occupational/Y -occupation/SAM -occupied/AU -occupier/M -occupies/A -occupy/RSDZG -occur/AS -occurred/A -occurrence/SM -occurring/A -oceanfront/MS -oceangoing -Oceania/M -oceanic -ocean/MS -oceanographer/SM -oceanographic -oceanography/SM -oceanology/MS -oceanside -Oceanside/M -Oceanus/M -ocelot/SM -ocher/DMGS -Ochoa/M -o'clock -O'Clock -O'Connell/M -O'Connor/M -Oconomowoc/M -OCR -octagonal/Y -octagon/SM -octahedral -octahedron/M -octal/S -octane/MS -octant/M -octave/MS -Octavia/M -Octavian/M -Octavio/M -Octavius/M -octavo/MS -octennial -octet/SM -octile -octillion/M -Oct/M -October/MS -octogenarian/MS -octopus/SM -octoroon/M -ocular/S -oculist/SM -OD -odalisque/SM -oddball/SM -oddity/MS -oddment/MS -oddness/MS -odd/TRYSPL -Odele/M -Odelia/M -Odelinda/M -Odella/M -Odelle/M -Odell/M -O'Dell/M -ode/MDRS -Ode/MR -Oderberg/MS -Oder/M -Odessa/M -Odets/M -Odetta/M -Odette/M -Odey/M -Odie/M -Odilia/M -Odille/M -Odin/M -odiousness/MS -odious/PY -Odis/M -odium/MS -Odo/M -odometer/SM -Odom/M -O'Donnell/M -odor/DMS -odoriferous -odorless -odorous/YP -ODs -O'Dwyer/M -Ody/M -Odysseus/M -Odyssey/M -odyssey/S -OE -OED -oedipal -Oedipal/Y -Oedipus/M -OEM/M -OEMS -oenology/MS -oenophile/S -o'er -O'Er -Oersted/M -oesophagi -oeuvre/SM -Ofelia/M -Ofella/M -offal/MS -offbeat/MS -offcuts -Offenbach/M -offender/M -offend/SZGDR -offense/MSV -offensively/I -offensiveness/MSI -offensive/YSP -offerer/M -offering/M -offer/RDJGZ -offertory/SM -offhand/D -offhandedness/S -offhanded/YP -officeholder/SM -officemate/S -officer/GMD -officership/S -office/SRMZ -officialdom/SM -officialism/SM -officially/U -official/PSYM -officiant/SM -officiate/XSDNG -officiation/M -officiator/MS -officio -officiousness/MS -officious/YP -offing/M -offish -offload/GDS -offprint/GSDM -offramp -offset/SM -offsetting -offshoot/MS -offshore -offside/RS -offspring/M -offstage/S -off/SZGDRJ -offtrack -Ofilia/M -of/K -often/RT -oftentimes -oft/NRT -ofttimes -Ogbomosho/M -Ogdan/M -Ogden/M -Ogdon/M -Ogilvy/M -ogive/M -Oglethorpe/M -ogle/ZGDSR -ogreish -ogre/MS -ogress/S -oh -OH -O'Hara -O'Hare/M -O'Higgins -Ohioan/S -Ohio/M -ohmic -ohmmeter/MS -ohm/SM -oho/S -ohs -OHSA/M -oilcloth/M -oilcloths -oiler/M -oilfield/MS -oiliness/SM -oilman/M -oil/MDRSZG -oilmen -oilseed/SM -oilskin/MS -oily/TPR -oink/GDS -ointment/SM -Oise/M -OJ -Ojibwa/SM -Okamoto/M -okapi/SM -Okayama/M -okay/M -Okeechobee/M -O'Keeffe -Okefenokee -Okhotsk/M -Okinawa/M -Okinawan/S -Oklahoma/M -Oklahoman/SM -Okla/M -OK/MDG -okra/MS -OKs -Oktoberfest -Olaf/M -Olag/M -Ola/M -Olav/M -Oldenburg/M -olden/DG -Oldfield/M -oldie/MS -oldish -oldness/S -Oldsmobile/M -oldster/SM -Olduvai/M -old/XTNRPS -ol -oleaginous -oleander/SM -O'Leary/M -olefin/M -Oleg/M -Ole/MV -Olenek/M -Olenka/M -Olen/M -Olenolin/M -oleomargarine/SM -oleo/S -oles -olfactory -Olga/M -Olia/M -oligarchic -oligarchical -oligarch/M -oligarchs -oligarchy/SM -Oligocene -oligopolistic -oligopoly/MS -Olimpia/M -Olin/M -olive/MSR -Olive/MZR -Oliver/M -Olivero/M -Olivette/M -Olivetti/M -Olivia/M -Olivier/M -Olivie/RM -Oliviero/M -Oliy/M -Ollie/M -Olly/M -Olmec -Olmsted/M -Olsen/M -Olson/M -Olva/M -Olvan/M -Olwen/M -Olympe/M -Olympiad/MS -Olympian/S -Olympia/SM -Olympic/S -Olympie/M -Olympus/M -Omaha/SM -Oman/M -Omar/M -ombudsman/M -ombudsmen -Omdurman/M -omega/MS -omelet/SM -omelette's -omen/DMG -Omero/M -omicron/MS -ominousness/SM -ominous/YP -omission/MS -omit/S -omitted -omitting -omnibus/MS -omni/M -omnipotence/SM -Omnipotent -omnipotent/SY -omnipresence/MS -omnipresent/Y -omniscience/SM -omniscient/YS -omnivore/MS -omnivorousness/MS -omnivorous/PY -oms -Omsk/M -om/XN -ON -onanism/M -Onassis/M -oncer/M -once/SR -oncogene/S -oncologist/S -oncology/SM -oncoming/S -Ondrea/M -Oneal/M -Onega/M -Onegin/M -Oneida/SM -O'Neil -O'Neill -oneness/MS -one/NPMSX -oner/M -onerousness/SM -onerous/YP -oneself -onetime -oneupmanship -Onfre/M -Onfroi/M -ongoing/S -Onida/M -onion/GDM -onionskin/MS -onlooker/MS -onlooking -only/TP -Onofredo/M -Ono/M -onomatopoeia/SM -onomatopoeic -onomatopoetic -Onondaga/MS -onrush/GMS -on/RY -ons -Onsager/M -onset/SM -onsetting -onshore -onside -onslaught/MS -Ontarian/S -Ontario/M -Ont/M -onto -ontogeny/SM -ontological/Y -ontology/SM -onus/SM -onward/S -onyx/MS -oodles -ooh/GD -oohs -oolitic -Oona/M -OOo/M -oops/S -Oort/M -ooze/GDS -oozy/RT -opacity/SM -opalescence/S -opalescent/Y -Opalina/M -Opaline/M -Opal/M -opal/SM -opaque/GTPYRSD -opaqueness/SM -opcode/MS -OPEC -Opel/M -opencast -opened/AU -opener/M -openhandedness/SM -openhanded/P -openhearted -opening/M -openness/S -OpenOffice.org/M -opens/A -openwork/MS -open/YRDJGZTP -operable/I -operandi -operand/SM -operant/YS -opera/SM -operate/XNGVDS -operatically -operatic/S -operationalization/S -operationalize/D -operational/Y -operation/M -operative/IP -operatively -operativeness/MI -operatives -operator/SM -operetta/MS -ope/S -Ophelia/M -Ophelie/M -Ophiuchus/M -ophthalmic/S -ophthalmologist/SM -ophthalmology/MS -opiate/GMSD -opine/XGNSD -opinionatedness/M -opinionated/PY -opinion/M -opioid -opium/MS -opossum/SM -opp -Oppenheimer/M -opponent/MS -opportune/IY -opportunism/SM -opportunistic -opportunistically -opportunist/SM -opportunity/MS -oppose/BRSDG -opposed/U -opposer/M -oppositeness/M -opposite/SXYNP -oppositional -opposition/M -oppress/DSGV -oppression/MS -oppressiveness/MS -oppressive/YP -oppressor/MS -opprobrious/Y -opprobrium/SM -Oprah/M -ops -opt/DSG -opthalmic -opthalmologic -opthalmology -optical/Y -optician/SM -optic/S -optics/M -optima -optimality -optimal/Y -optimise's -optimism/SM -optimistic -optimistically -optimist/SM -optimization/SM -optimize/DRSZG -optimized/U -optimizer/M -optimizes/U -optimum/SM -optionality/M -optional/YS -option/GDMS -optoelectronic -optometric -optometrist/MS -optometry/SM -opulence/SM -opulent/Y -opus/SM -op/XGDN -OR -oracle/GMSD -oracular -Oralee/M -Oralia/M -Oralie/M -Oralla/M -Oralle/M -oral/YS -Ora/M -orangeade/MS -Orange/M -orange/MS -orangery/SM -orangutan/MS -Oranjestad/M -Oran/M -orate/SDGNX -oration/M -oratorical/Y -oratorio/MS -orator/MS -oratory/MS -Orazio/M -Orbadiah/M -orbicular -orbiculares -orbital/MYS -orbit/MRDGZS -orb/SMDG -orchard/SM -orchestral/Y -orchestra/MS -orchestrate/GNSDX -orchestrater's -orchestration/M -orchestrator/M -orchid/SM -ordainer/M -ordainment/MS -ordain/SGLDR -ordeal/SM -order/AESGD -ordered/U -orderer -ordering/S -orderless -orderliness/SE -orderly/PS -order's/E -ordinal/S -ordinance/MS -ordinarily -ordinariness/S -ordinary/RSPT -ordinated -ordinate/I -ordinates -ordinate's -ordinating -ordination/SM -ordnance/SM -Ordovician -ordure/MS -oregano/SM -Oreg/M -Oregonian/S -Oregon/M -Orelee/M -Orelia/M -Orelie/M -Orella/M -Orelle/M -Orel/M -Oren/M -Ore/NM -ore/NSM -Oreo -Orestes -organdie's -organdy/MS -organelle/MS -organically/I -organic/S -organismic -organism/MS -organist/MS -organizable/UMS -organizational/MYS -organization/MEAS -organize/AGZDRS -organized/UE -organizer/MA -organizes/E -organizing/E -organ/MS -organometallic -organza/SM -orgasm/GSMD -orgasmic -orgiastic -orgy/SM -Oriana/M -oriel/MS -orientable -Oriental/S -oriental/SY -orientated/A -orientate/ESDXGN -orientates/A -orientation/AMES -orienteering/M -orienter -orient/GADES -orient's -Orient/SM -orifice/MS -orig -origami/MS -originality/SM -originally -original/US -originate/VGNXSD -origination/M -originative/Y -originator/SM -origin/MS -Orin/M -Orinoco/M -oriole/SM -Orion/M -orison/SM -Oriya/M -Orizaba/M -Orkney/M -Orland/M -Orlando/M -Orlan/M -Orleans -Orlick/M -Orlon/SM -Orly/M -ormolu/SM -or/MY -ornamental/SY -ornamentation/SM -ornament/GSDM -ornateness/SM -ornate/YP -orneriness/SM -ornery/PRT -ornithological -ornithologist/SM -ornithology/MS -orographic/M -orography/M -Orono/M -orotund -orotundity/MS -orphanage/MS -orphanhood/M -orphan/SGDM -Orpheus/M -Orphic -Orran/M -Orren/M -Orrin/M -orris/SM -Orr/MN -ors -Orsa/M -Orsola/M -Orson/M -Ortega/M -Ortensia/M -orthodontia/S -orthodontic/S -orthodontics/M -orthodontist/MS -orthodoxies -orthodoxly/U -Orthodox/S -orthodoxy's -orthodox/YS -orthodoxy/U -orthogonality/M -orthogonalization/M -orthogonalized -orthogonal/Y -orthographic -orthographically -orthography/MS -orthonormal -orthopedic/S -orthopedics/M -orthopedist/SM -orthophosphate/MS -orthorhombic -Ortiz/M -Orton/M -Orval/M -Orville/M -Orv/M -Orwellian -Orwell/M -o's -Osage/SM -Osaka/M -Osbert/M -Osborne/M -Osborn/M -Osbourne/M -Osbourn/M -Oscar/SM -Osceola/M -oscillate/SDXNG -oscillation/M -oscillator/SM -oscillatory -oscilloscope/SM -osculate/XDSNG -osculation/M -Osgood/M -OSHA -Oshawa/M -O'Shea/M -Oshkosh/M -osier/MS -Osiris/M -Oslo/M -Os/M -OS/M -Osman/M -osmium/MS -Osmond/M -osmoses -osmosis/M -osmotic -Osmund/M -osprey/SM -osseous/Y -Ossie/M -ossification/M -ossify/NGSDX -ostensible -ostensibly -ostentation/MS -ostentatiousness/M -ostentatious/PY -osteoarthritides -osteoarthritis/M -osteology/M -osteopathic -osteopath/M -osteopaths -osteopathy/MS -osteoporoses -osteoporosis/M -ostracise's -ostracism/MS -ostracize/GSD -Ostrander/M -ostrich/MS -Ostrogoth/M -Ostwald/M -O'Sullivan/M -Osvaldo/M -Oswald/M -Oswell/M -OT -OTB -OTC -Otes -Otha/M -Othelia/M -Othella/M -Othello/M -otherness/M -other/SMP -otherwise -otherworldly/P -otherworld/Y -Othilia/M -Othilie/M -Otho/M -otiose -Otis/M -OTOH -Ottawa/MS -otter/DMGS -Ottilie/M -Otto/M -Ottoman -ottoman/MS -Ouagadougou/M -oubliette/SM -ouch/SDG -oughtn't -ought/SGD -Ouija/MS -ounce/MS -our/S -ourself -ourselves -ouster/M -oust/RDGZS -outage/MS -outargue/GDS -outback/MRS -outbalance/GDS -outbidding -outbid/S -outboard/S -outboast/GSD -outbound/S -outbreak/SMG -outbroke -outbroken -outbuilding/SM -outburst/MGS -outcast/GSM -outclass/SDG -outcome/SM -outcropped -outcropping/S -outcrop/SM -outcry/MSDG -outdated/P -outdid -outdistance/GSD -outdoes -outdo/G -outdone -outdoor/S -outdoorsy -outdraw/GS -outdrawn -outdrew -outermost -outerwear/M -outface/SDG -outfall/MS -outfielder/M -outfield/RMSZ -outfight/SG -outfit/MS -outfitted -outfitter/MS -outfitting -outflank/SGD -outflow/SMDG -outfought -outfox/GSD -outgeneraled -outgoes -outgo/GJ -outgoing/P -outgrew -outgrip -outgrow/GSH -outgrown -outgrowth/M -outgrowths -outguess/SDG -outhit/S -outhitting -outhouse/SM -outing/M -outlaid -outlander/M -outlandishness/MS -outlandish/PY -outland/ZR -outlast/GSD -outlawry/M -outlaw/SDMG -outlay/GSM -outlet/SM -outliers -outline/SDGM -outlive/GSD -outlook/MDGS -outlying -outmaneuver/GSD -outmatch/SDG -outmigration -outmoded -outness/M -outnumber/GDS -outpaced -outpatient/SM -outperform/DGS -out/PJZGSDR -outplacement/S -outplay/GDS -outpoint/GDS -outpost/SM -outpouring/M -outpour/MJG -outproduce/GSD -output/SM -outputted -outputting -outrace/GSD -outrage/GSDM -outrageousness/M -outrageous/YP -outran -outrank/GSD -outr -outreach/SDG -outrider/MS -outrigger/SM -outright/Y -outrunning -outrun/S -outscore/GDS -outsell/GS -outset/MS -outsetting -outshine/SG -outshone -outshout/GDS -outsider/PM -outside/ZSR -outsize/S -outskirt/SM -outsmart/SDG -outsold -outsource/SDJG -outspend/SG -outspent -outspoke -outspokenness/SM -outspoken/YP -outspread/SG -outstanding/Y -outstate/NX -outstation/M -outstay/SDG -outstretch/GSD -outstripped -outstripping -outstrip/S -outtake/S -outvote/GSD -outwardness/M -outward/SYP -outwear/SG -outweigh/GD -outweighs -outwit/S -outwitted -outwitting -outwore -outwork/SMDG -outworn -ouzo/SM -oval/MYPS -ovalness/M -ova/M -ovarian -ovary/SM -ovate/SDGNX -ovation/GMD -ovenbird/SM -oven/MS -overabundance/MS -overabundant -overachieve/SRDGZ -overact/DGVS -overage/S -overaggressive -overallocation -overall/SM -overambitious -overanxious -overarching -overarm/GSD -overate -overattentive -overawe/GDS -overbalance/DSG -overbear/GS -overbearingness/M -overbearing/YP -overbidding -overbid/S -overbite/MS -overblown -overboard -overbold -overbook/SDG -overbore -overborne -overbought -overbuild/GS -overbuilt -overburdening/Y -overburden/SDG -overbuy/GS -overcame -overcapacity/M -overcapitalize/DSG -overcareful -overcast/GS -overcasting/M -overcautious -overcerebral -overcharge/DSG -overcloud/DSG -overcoating/M -overcoat/SMG -overcomer/M -overcome/RSG -overcommitment/S -overcompensate/XGNDS -overcompensation/M -overcomplexity/M -overcomplicated -overconfidence/MS -overconfident/Y -overconscientious -overconsumption/M -overcook/SDG -overcooled -overcorrection -overcritical -overcrowd/DGS -overcurious -overdecorate/SDG -overdependent -overdetermined -overdevelop/SDG -overdid -overdoes -overdo/G -overdone -overdose/DSMG -overdraft/SM -overdraw/GS -overdrawn -overdress/GDS -overdrew -overdrive/GSM -overdriven -overdrove -overdubbed -overdubbing -overdub/S -overdue -overeagerness/M -overeager/PY -overeater/M -overeat/GNRS -overeducated -overemotional -overemphases -overemphasis/M -overemphasize/GZDSR -overenthusiastic -overestimate/DSXGN -overestimation/M -overexcite/DSG -overexercise/SDG -overexert/GDS -overexertion/SM -overexploitation -overexploited -overexpose/GDS -overexposure/SM -overextend/DSG -overextension -overfall/M -overfed -overfeed/GS -overfill/GDS -overfishing -overflew -overflight/SM -overflow/DGS -overflown -overfly/GS -overfond -overfull -overgeneralize/GDS -overgenerous -overgraze/SDG -overgrew -overground -overgrow/GSH -overgrown -overgrowth/M -overgrowths -overhand/DGS -overhang/GS -overhasty -overhaul/GRDJS -overhead/S -overheard -overhearer/M -overhear/SRG -overheat/SGD -overhung -overincredulous -overindulgence/SM -overindulgent -overindulge/SDG -overinflated -overjoy/SGD -overkill/SDMG -overladed -overladen -overlaid -overlain -overland/S -overlap/MS -overlapped -overlapping -overlarge -overlay/GS -overleaf -overlie -overload/SDG -overlong -overlook/DSG -overlord/DMSG -overloud -overly/GRS -overmanning -overmaster/GSD -overmatching -overmodest -overmuch/S -overnice -overnight/SDRGZ -overoptimism/SM -overoptimistic -overpaid -overparticular -overpass/GMSD -overpay/LSG -overpayment/M -overplay/SGD -overpopulate/DSNGX -overpopulation/M -overpopulous -overpower/GSD -overpowering/Y -overpraise/DSG -overprecise -overpressure -overprice/SDG -overprint/DGS -overproduce/SDG -overproduction/S -overprotect/GVDS -overprotection/M -overqualified -overran -overrate/DSG -overreach/DSRG -overreaction/SM -overreact/SGD -overred -overrefined -overrepresented -overridden -overrider/M -override/RSG -overripe -overrode -overrule/GDS -overrunning -overrun/S -oversample/DG -oversaturate -oversaw -oversea/S -overseeing -overseen -overseer/M -oversee/ZRS -oversell/SG -oversensitiveness/S -oversensitive/P -oversensitivity -oversexed -overshadow/GSD -overshoe/SM -overshoot/SG -overshot/S -oversight/SM -oversimple -oversimplification/M -oversimplify/GXNDS -oversize/GS -oversleep/GS -overslept -oversoftness/M -oversoft/P -oversold -overspecialization/MS -overspecialize/GSD -overspend/SG -overspent -overspill/DMSG -overspread/SG -overstaffed -overstatement/SM -overstate/SDLG -overstay/GSD -overstepped -overstepping -overstep/S -overstimulate/DSG -overstock/SGD -overstraining -overstressed -overstretch/D -overstrict -overstrike/GS -overstrung -overstuffed -oversubscribe/SDG -oversubtle -oversupply/MDSG -oversuspicious -overtaken -overtake/RSZG -overtax/DSG -overthrew -overthrow/GS -overthrown -overtightened -overtime/MGDS -overtire/DSG -overtone/MS -overtook -overt/PY -overture/DSMG -overturn/SDG -overuse/DSG -overvalue/GSD -overview/MS -overweening -overweight/GSD -overwhelm/GDS -overwhelming/Y -overwinter/SDG -overwork/GSD -overwrap -overwrite/SG -overwritten -overwrote -overwrought -over/YGS -overzealousness/M -overzealous/P -Ovid/M -oviduct/SM -oviform -oviparous -ovoid/S -ovular -ovulate/GNXDS -ovulatory -ovule/MS -ovum/MS -ow/DYG -Owen/MS -owe/S -owlet/SM -owl/GSMDR -owlishness/M -owlish/PY -owned/U -own/EGDS -ownership/MS -owner/SM -oxalate/M -oxalic -oxaloacetic -oxblood/S -oxbow/SM -oxcart/MS -oxen/M -oxford/MS -Oxford/MS -oxidant/SM -oxidate/NVX -oxidation/M -oxidative/Y -oxide/SM -oxidization/MS -oxidized/U -oxidize/JDRSGZ -oxidizer/M -oxidizes/A -ox/MNS -Oxnard -Oxonian -oxtail/M -Oxus/M -oxyacetylene/MS -oxygenate/XSDMGN -oxygenation/M -oxygen/MS -oxyhydroxides -oxymora -oxymoron/M -oyster/GSDM -oystering/M -oz -Ozark/SM -Oz/M -ozone/SM -Ozymandias/M -Ozzie/M -Ozzy/M -P -PA -Pablo/M -Pablum/M -pablum/S -Pabst/M -pabulum/SM -PAC -pace/DRSMZG -Pace/M -pacemaker/SM -pacer/M -pacesetter/MS -pacesetting -Pacheco/M -pachyderm/MS -pachysandra/MS -pacific -pacifically -pacification/M -Pacific/M -pacifier/M -pacifism/MS -pacifistic -pacifist/MS -pacify/NRSDGXZ -package/ARSDG -packaged/U -packager/S -package's -packages/U -packaging/SM -Packard/SM -packed/AU -packer/MUS -packet/MSDG -pack/GZSJDRMB -packhorse/M -packinghouse/S -packing/M -packsaddle/SM -Packston/M -packs/UA -Packwood/M -Paco/M -Pacorro/M -pact/SM -Padang/M -padded/U -Paddie/M -padding/SM -paddle/MZGRSD -paddler/M -paddock/SDMG -Paddy/M -paddy/SM -Padget/M -Padgett/M -Padilla/M -padlock/SGDM -pad/MS -Padraic/M -Padraig/M -padre/MS -Padrewski/M -Padriac/M -paean/MS -paediatrician/MS -paediatrics/M -paedophilia's -paella/SM -paeony/M -Paganini/M -paganism/MS -pagan/SM -pageantry/SM -pageant/SM -pageboy/SM -paged/U -pageful -Page/M -page/MZGDRS -pager/M -paginate/DSNGX -Paglia/M -pagoda/MS -Pahlavi/M -paid/AU -Paige/M -pailful/SM -Pail/M -pail/SM -Paine/M -painfuller -painfullest -painfulness/MS -painful/YP -pain/GSDM -painkiller/MS -painkilling -painlessness/S -painless/YP -painstaking/SY -paint/ADRZGS -paintbox/M -paintbrush/SM -painted/U -painterly/P -painter/YM -painting/SM -paint's -paintwork -paired/UA -pair/JSDMG -pairs/A -pairwise -paisley/MS -pajama/MDS -Pakistani/S -Pakistan/M -palace/MS -paladin/MS -palaeolithic -palaeontologists -palaeontology/M -palanquin/MS -palatability/M -palatableness/M -palatable/P -palatalization/MS -palatalize/SDG -palatal/YS -palate/BMS -palatial/Y -palatinate/SM -Palatine -palatine/S -palaver/GSDM -paleface/SM -Palembang/M -paleness/S -Paleocene -Paleogene -paleographer/SM -paleography/SM -paleolithic -Paleolithic -paleontologist/S -paleontology/MS -Paleozoic -Palermo/M -pale/SPY -Palestine/M -Palestinian/S -Palestrina/M -palette/MS -Paley/M -palfrey/MS -palimony/S -palimpsest/MS -palindrome/MS -palindromic -paling/M -palisade/MGSD -Palisades/M -palish -Palladio/M -palladium/SM -pallbearer/SM -palletized -pallet/SMGD -pall/GSMD -palliate/SDVNGX -palliation/M -palliative/SY -pallidness/MS -pallid/PY -Pall/M -pallor/MS -palmate -palmer/M -Palmer/M -Palmerston/M -palmetto/MS -palm/GSMDR -palmist/MS -palmistry/MS -Palm/MR -Palmolive/M -palmtop/S -Palmyra/M -palmy/RT -Palo/M -Paloma/M -Palomar/M -palomino/MS -palpable -palpably -palpate/SDNGX -palpation/M -palpitate/NGXSD -palpitation/M -pal/SJMDRYTG -palsy/GSDM -paltriness/SM -paltry/TRP -paludal -Pa/M -Pamela/M -Pamelina/M -Pamella/M -pa/MH -Pamirs -Pam/M -Pammie/M -Pammi/M -Pammy/M -pampas/M -pamperer/M -pamper/RDSG -Pampers -pamphleteer/DMSG -pamphlet/SM -panacea/MS -panache/MS -Panama/MS -Panamanian/S -panama/S -pancake/MGSD -Panchito/M -Pancho/M -panchromatic -pancreas/MS -pancreatic -panda/SM -pandemic/S -pandemonium/SM -pander/ZGRDS -Pandora/M -panegyric/SM -pane/KMS -paneling/M -panelist/MS -panelization -panelized -panel/JSGDM -Pangaea/M -pang/GDMS -pangolin/M -panhandle/RSDGMZ -panicked -panicking -panicky/RT -panic/SM -panier's -panjandrum/M -Pankhurst/M -Pan/M -Panmunjom/M -panned -pannier/SM -panning -panoply/MSD -panorama/MS -panoramic -panpipes -Pansie/M -pan/SMD -Pansy/M -pansy/SM -Pantagruel/M -Pantaloon/M -pantaloons -pant/GDS -pantheism/MS -pantheistic -pantheist/S -pantheon/MS -panther/SM -pantie/SM -pantiled -pantograph/M -pantomime/SDGM -pantomimic -pantomimist/SM -pantry/SM -pantsuit/SM -pantyhose -pantyliner -pantywaist/SM -Panza/M -Paola/M -Paoli/M -Paolina/M -Paolo/M -papacy/SM -Papagena/M -Papageno/M -papal/Y -papa/MS -paparazzi -papaw/SM -papaya/MS -paperback/GDMS -paperboard/MS -paperboy/SM -paperer/M -papergirl/SM -paper/GJMRDZ -paperhanger/SM -paperhanging/SM -paperiness/M -paperless -paperweight/MS -paperwork/SM -papery/P -papillae -papilla/M -papillary -papist/MS -papoose/SM -Pappas/M -papped -papping -pappy/RST -paprika/MS -pap/SZMNR -papyri -papyrus/M -Paquito/M -parable/MGSD -parabola/MS -parabolic -paraboloidal/M -paraboloid/MS -Paracelsus/M -paracetamol/M -parachuter/M -parachute/RSDMG -parachutist/MS -Paraclete/M -parader/M -parade/RSDMZG -paradigmatic -paradigm/SM -paradisaic -paradisaical -Paradise/M -paradise/MS -paradoxic -paradoxicalness/M -paradoxical/YP -paradox/MS -paraffin/GSMD -paragon/SGDM -paragrapher/M -paragraph/MRDG -paragraphs -Paraguayan/S -Paraguay/M -parakeet/MS -paralegal/S -paralinguistic -parallax/SM -parallel/DSG -paralleled/U -parallelepiped/MS -parallelism/SM -parallelization/MS -parallelize/ZGDSR -parallelogram/MS -paralysis/M -paralytically -paralytic/S -paralyzedly/S -paralyzed/Y -paralyzer/M -paralyze/ZGDRS -paralyzingly/S -paralyzing/Y -paramagnetic -paramagnet/M -Paramaribo/M -paramecia -paramecium/M -paramedical/S -paramedic/MS -parameterization/SM -parameterize/BSDG -parameterized/U -parameterless -parameter/SM -parametric -parametrically -parametrization -parametrize/DS -paramilitary/S -paramount/S -paramour/MS -para/MS -Paramus/M -Paran -paranoiac/S -paranoia/SM -paranoid/S -paranormal/SY -parapet/SMD -paraphernalia -paraphrase/GMSRD -paraphraser/M -paraplegia/MS -paraplegic/S -paraprofessional/SM -parapsychologist/S -parapsychology/MS -paraquat/S -parasite/SM -parasitically -parasitic/S -parasitism/SM -parasitologist/M -parasitology/M -parasol/SM -parasympathetic/S -parathion/SM -parathyroid/S -paratrooper/M -paratroop/RSZ -paratyphoid/S -parboil/DSG -parceled/U -parceling/M -parcel/SGMD -Parcheesi/M -parch/GSDL -parchment/SM -PARC/M -pardonableness/M -pardonable/U -pardonably/U -pardoner/M -pardon/ZBGRDS -paregoric/SM -parentage/MS -parental/Y -parenteral -parentheses -parenthesis/M -parenthesize/GSD -parenthetic -parenthetical/Y -parenthood/MS -parent/MDGJS -pare/S -paresis/M -pares/S -Pareto/M -parfait/SM -pariah/M -pariahs -parietal/S -parimutuel/S -paring/M -parishioner/SM -parish/MS -Parisian/SM -Paris/M -parity/ESM -parka/MS -Parke/M -Parker/M -Parkersburg/M -park/GJZDRMS -Parkhouse/M -parking/M -Parkinson/M -parkish -parkland/M -parklike -Parkman -Park/RMS -parkway/MS -parlance/SM -parlay/DGS -parley/MDSG -parliamentarian/SM -parliamentary/U -parliament/MS -Parliament/MS -parlor/SM -parlous -Parmesan/S -parmigiana -Parnassus/SM -Parnell/M -parochialism/SM -parochiality -parochial/Y -parodied/U -parodist/SM -parody/SDGM -parolee/MS -parole/MSDG -paroxysmal -paroxysm/MS -parquetry/SM -parquet/SMDG -parrakeet's -parred -parricidal -parricide/MS -parring -Parrish/M -Parr/M -Parrnell/M -parrot/GMDS -parrotlike -parry/GSD -Parry/M -parse -parsec/SM -parsed/U -Parsee's -parser/M -Parsifal/M -parsimonious/Y -parsimony/SM -pars/JDSRGZ -parsley/MS -parsnip/MS -parsonage/MS -parson/MS -Parsons/M -partaken -partaker/M -partake/ZGSR -part/CDGS -parterre/MS -parter/S -parthenogeneses -parthenogenesis/M -Parthenon/M -Parthia/M -partiality/MS -partial/SY -participant/MS -participate/NGVDSX -participation/M -participator/S -participatory -participial/Y -participle/MS -particleboard/S -particle/MS -particolored -particularistic -particularity/SM -particularization/MS -particularize/GSD -particular/SY -particulate/S -parting/MS -partisanship/SM -partisan/SM -partition/AMRDGS -partitioned/U -partitioner/M -partitive/S -partizan's -partly -partner/DMGS -partnership/SM -partook -partridge/MS -part's -parturition/SM -partway -party/RSDMG -parvenu/SM -par/ZGSJBMDR -Pasadena/M -PASCAL -Pascale/M -Pascal/M -pascal/SM -paschal/S -pasha/MS -Paso/M -Pasquale/M -pas/S -passably -passage/MGSD -passageway/MS -Passaic/M -passband -passbook/MS -passel/MS -pass/M -passenger/MYS -passerby -passer/M -passersby -passim -passing/Y -passionated -passionate/EYP -passionateness/EM -passionates -passionating -passioned -passionflower/MS -passioning -passionless -passion/SEM -Passion/SM -passivated -passiveness/S -passive/SYP -passivity/S -pass/JGVBZDSR -passkey/SM -passmark -passover -Passover/MS -passport/SM -password/SDM -pasta/MS -pasteboard/SM -pasted/UA -pastel/MS -paste/MS -Pasternak/M -pastern/SM -pasteup -pasteurization/MS -pasteurized/U -pasteurizer/M -pasteurize/RSDGZ -Pasteur/M -pastiche/MS -pastille/SM -pastime/SM -pastiness/SM -pastoralization/M -pastoral/SPY -pastorate/MS -pastor/GSDM -past/PGMDRS -pastrami/MS -pastry/SM -past's/A -pasts/A -pasturage/SM -pasture/MGSRD -pasturer/M -pasty/PTRS -Patagonia/M -Patagonian/S -patch/EGRSD -patcher/EM -patchily -patchiness/S -patch's -patchwork/RMSZ -patchy/PRT -patellae -patella/MS -Patel/M -Pate/M -paten/M -Paten/M -patentee/SM -patent/ZGMRDYSB -paterfamilias/SM -pater/M -paternalism/MS -paternalist -paternalistic -paternal/Y -paternity/SM -paternoster/SM -Paterson/M -pate/SM -pathetic -pathetically -pathfinder/MS -pathless/P -path/M -pathname/SM -pathogenesis/M -pathogenic -pathogen/SM -pathologic -pathological/Y -pathologist/MS -pathology/SM -pathos/SM -paths -pathway/MS -Patience/M -patience/SM -patient/MRYTS -patient's/I -patients/I -patina/SM -patine -Patin/M -patio/MS -Pat/MN -pat/MNDRS -Patna/M -patois/M -Paton/M -patresfamilias -patriarchal -patriarchate/MS -patriarch/M -patriarchs -patriarchy/MS -Patrica/M -Patrice/M -Patricia/M -patrician/MS -patricide/MS -Patricio/M -Patrick/M -Patric/M -patrimonial -patrimony/SM -patriotically -patriotic/U -patriotism/SM -patriot/SM -patristic/S -Patrizia/M -Patrizio/M -Patrizius/M -patrolled -patrolling -patrolman/M -patrolmen -patrol/MS -patrolwoman -patrolwomen -patronage/MS -patroness/S -patronization -patronized/U -patronize/GZRSDJ -patronizer/M -patronizes/A -patronizing's/U -patronizing/YM -patronymically -patronymic/S -patron/YMS -patroon/MS -patsy/SM -Patsy/SM -patted -Patten/M -patten/MS -patterer/M -pattern/GSDM -patternless -patter/RDSGJ -Patterson/M -Pattie/M -Patti/M -patting -Pattin/M -Patton/M -Patty/M -patty/SM -paucity/SM -Paula/M -Paule/M -Pauletta/M -Paulette/M -Paulie/M -Pauli/M -Paulina/M -Pauline -Pauling/M -Paulita/M -Paul/MG -Paulo/M -Paulsen/M -Paulson/M -Paulus/M -Pauly/M -paunch/GMSD -paunchiness/M -paunchy/RTP -pauperism/SM -pauperize/SDG -pauper/SGDM -pause/DSG -Pavarotti -paved/UA -pave/GDRSJL -Pavel/M -pavement/SGDM -paver/M -paves/A -Pavia/M -pavilion/SMDG -paving/A -paving's -Pavla/M -Pavlova/MS -Pavlovian -Pavlov/M -pawl/SM -paw/MDSG -pawnbroker/SM -pawnbroking/S -Pawnee/SM -pawner/M -pawn/GSDRM -pawnshop/MS -pawpaw's -Pawtucket/M -paxes -Paxon/M -Paxton/M -payable/S -pay/AGSLB -payback/S -paycheck/SM -payday/MS -payed -payee/SM -payer/SM -payload/SM -paymaster/SM -payment/ASM -Payne/SM -payoff/MS -payola/MS -payout/S -payroll/MS -payslip/S -Payson/M -Payton/M -Paz/M -Pb/M -PBS -PBX -PCB -PC/M -PCP -PCs -pct -pd -PD -Pd/M -PDP -PDQ -PDT -PE -Peabody/M -peaceableness/M -peaceable/P -peaceably -peacefuller -peacefullest -peacefulness/S -peaceful/PY -peace/GMDS -peacekeeping/S -Peace/M -peacemaker/MS -peacemaking/MS -peacetime/MS -peach/GSDM -Peachtree/M -peachy/RT -peacock/SGMD -Peadar/M -peafowl/SM -peahen/MS -peaked/P -peakiness/M -peak/SGDM -peaky/P -pealed/A -Peale/M -peal/MDSG -peals/A -pea/MS -peanut/SM -Pearce/M -Pearla/M -Pearle/M -pearler/M -Pearlie/M -Pearline/M -Pearl/M -pearl/SGRDM -pearly/TRS -Pearson/M -pear/SYM -peartrees -Peary/M -peasanthood -peasantry/SM -peasant/SM -peashooter/MS -peats/A -peat/SM -peaty/TR -pebble/MGSD -pebbling/M -pebbly/TR -Pebrook/M -pecan/SM -peccadilloes -peccadillo/M -peccary/MS -Pechora/M -pecker/M -peck/GZSDRM -Peckinpah/M -Peck/M -Pecos/M -pectic -pectin/SM -pectoral/S -peculate/NGDSX -peculator/S -peculiarity/MS -peculiar/SY -pecuniary -pedagogical/Y -pedagogic/S -pedagogics/M -pedagogue/SDGM -pedagogy/MS -pedal/SGRDM -pedantic -pedantically -pedantry/MS -pedant/SM -peddler/M -peddle/ZGRSD -pederast/SM -pederasty/SM -Peder/M -pedestal/GDMS -pedestrianization -pedestrianize/GSD -pedestrian/MS -pediatrician/SM -pediatric/S -pedicab/SM -pedicure/DSMG -pedicurist/SM -pedigree/DSM -pediment/DMS -pedlar's -pedometer/MS -pedophile/S -pedophilia -Pedro/M -peduncle/MS -peeing -peekaboo/SM -peek/GSD -peeler/M -peeling/M -Peel/M -peel/SJGZDR -peen/GSDM -peeper/M -peephole/SM -peep/SGZDR -peepshow/MS -peepy -peerage/MS -peer/DMG -peeress/MS -peerlessness/M -peerless/PY -peeve/GZMDS -peevers/M -peevishness/SM -peevish/YP -peewee/S -pee/ZDRS -Pegasus/MS -pegboard/SM -Pegeen/M -pegged -Peggie/M -Peggi/M -pegging -Peggy/M -Peg/M -peg/MS -peignoir/SM -Pei/M -Peiping/M -Peirce/M -pejoration/SM -pejorative/SY -peke/MS -Pekinese's -pekingese -Pekingese/SM -Peking/SM -pekoe/SM -pelagic -Pelee/M -Pele/M -pelf/SM -Pelham/M -pelican/SM -pellagra/SM -pellet/SGMD -pellucid -Peloponnese/M -pelter/M -pelt/GSDR -pelvic/S -pelvis/SM -Pembroke/M -pemmican/SM -penalization/SM -penalized/U -penalize/SDG -penalty/MS -penal/Y -Pena/M -penance/SDMG -pence/M -penchant/MS -pencil/SGJMD -pendant/SM -pend/DCGS -pendent/CS -Penderecki/M -Pendleton/M -pendulous -pendulum/MS -Penelopa/M -Penelope/M -penetrability/SM -penetrable -penetrate/SDVGNX -penetrating/Y -penetration/M -penetrativeness/M -penetrative/PY -penetrator/MS -penguin/MS -penicillin/SM -penile -peninsular -peninsula/SM -penis/MS -penitence/MS -penitential/YS -penitentiary/MS -penitent/SY -penknife/M -penknives -penlight/MS -pen/M -Pen/M -penman/M -penmanship/MS -penmen -Penna -pennant/SM -penned -Penney/M -Pennie/M -penniless -Penni/M -penning -Pennington/M -pennis -Penn/M -pennon/SM -Pennsylvania/M -Pennsylvanian/S -Penny/M -penny/SM -pennyweight/SM -pennyworth/M -penologist/MS -penology/MS -Penrod/M -Pensacola/M -pensioner/M -pension/ZGMRDBS -pensiveness/S -pensive/PY -pens/V -pentacle/MS -pentagonal/SY -Pentagon/M -pentagon/SM -pentagram/MS -pentameter/SM -pent/AS -Pentateuch/M -pentathlete/S -pentathlon/MS -pentatonic -pentecostal -Pentecostalism/S -Pentecostal/S -Pentecost/SM -penthouse/SDGM -Pentium/M -penuche/SM -penultimate/SY -penumbrae -penumbra/MS -penuriousness/MS -penurious/YP -penury/SM -peonage/MS -peon/MS -peony/SM -people/SDMG -Peoria/M -Pepe/M -Pepillo/M -Pepi/M -Pepin/M -Pepita/M -Pepito/M -pepped -peppercorn/MS -pepperer/M -peppergrass/M -peppermint/MS -pepperoni/S -pepper/SGRDM -peppery -peppiness/SM -pepping -peppy/PRT -Pepsico/M -PepsiCo/M -Pepsi/M -pepsin/SM -pep/SM -peptic/S -peptidase/SM -peptide/SM -peptizing -Pepys/M -Pequot/M -peradventure/S -perambulate/DSNGX -perambulation/M -perambulator/MS -percale/MS -perceivably -perceive/DRSZGB -perceived/U -perceiver/M -percentage/MS -percentile/SM -percent/MS -perceptible -perceptibly -perceptional -perception/MS -perceptiveness/MS -perceptive/YP -perceptual/Y -percept/VMS -Perceval/M -perchance -perch/GSDM -perchlorate/M -perchlorination -percipience/MS -percipient/S -Percival/M -percolate/NGSDX -percolation/M -percolator/MS -percuss/DSGV -percussionist/MS -percussion/SAM -percussiveness/M -percussive/PY -percutaneous/Y -Percy/M -perdition/MS -perdurable -peregrinate/XSDNG -peregrination/M -peregrine/S -Perelman/M -peremptorily -peremptory/P -perennial/SY -pres -perestroika/S -Perez/M -perfecta/S -perfect/DRYSTGVP -perfecter/M -perfectibility/MS -perfectible -perfectionism/MS -perfectionist/MS -perfection/MS -perfectiveness/M -perfective/PY -perfectness/MS -perfidiousness/M -perfidious/YP -perfidy/MS -perforated/U -perforate/XSDGN -perforation/M -perforce -performance/MS -performed/U -performer/M -perform/SDRZGB -perfumer/M -perfumery/SM -perfume/ZMGSRD -perfunctorily -perfunctoriness/M -perfunctory/P -perfused -perfusion/M -Pergamon/M -pergola/SM -perhaps/S -Peria/M -pericardia -pericardium/M -Perice/M -Periclean -Pericles/M -perigee/SM -perihelia -perihelion/M -peril/GSDM -Perilla/M -perilousness/M -perilous/PY -Peri/M -perimeter/MS -perinatal -perinea -perineum/M -periodic -periodical/YMS -periodicity/MS -period/MS -periodontal/Y -periodontics/M -periodontist/S -peripatetic/S -peripheral/SY -periphery/SM -periphrases -periphrasis/M -periphrastic -periscope/SDMG -perishable/SM -perish/BZGSRD -perishing/Y -peristalses -peristalsis/M -peristaltic -peristyle/MS -peritoneal -peritoneum/SM -peritonitis/MS -periwigged -periwigging -periwig/MS -periwinkle/SM -perjurer/M -perjure/SRDZG -perjury/MS -per/K -perk/GDS -perkily -perkiness/S -Perkin/SM -perky/TRP -Perla/M -Perle/M -Perl/M -permafrost/MS -permalloy/M -Permalloy/M -permanence/SM -permanency/MS -permanentness/M -permanent/YSP -permeability/SM -permeableness/M -permeable/P -permeate/NGVDSX -Permian -permissibility/M -permissibleness/M -permissible/P -permissibly -permission/SM -permissiveness/MS -permissive/YP -permit/SM -permitted -permitting -Perm/M -perm/MDGS -permutation/MS -permute/SDG -Pernell/M -perniciousness/MS -pernicious/PY -Pernod/M -Peron/M -peroration/SM -Perot/M -peroxidase/M -peroxide/MGDS -perpend/DG -perpendicularity/SM -perpendicular/SY -perpetrate/NGXSD -perpetration/M -perpetrator/SM -perpetual/SY -perpetuate/NGSDX -perpetuation/M -perpetuity/MS -perplex/DSG -perplexed/Y -perplexity/MS -perquisite/SM -Perren/M -Perri/M -Perrine/M -Perry/MR -persecute/XVNGSD -persecution/M -persecutor/MS -persecutory -Perseid/M -Persephone/M -Perseus/M -perseverance/MS -persevere/GSD -persevering/Y -Pershing/M -Persia/M -Persian/S -persiflage/MS -persimmon/SM -Persis/M -persist/DRSG -persistence/SM -persistent/Y -persnickety -personableness/M -personable/P -personae -personage/SM -personality/SM -personalization/CMS -personalize/CSDG -personalized/U -personalty/MS -personal/YS -persona/M -person/BMS -personification/M -personifier/M -personify/XNGDRS -personnel/SM -person's/U -persons/U -perspective/YMS -perspex -perspicaciousness/M -perspicacious/PY -perspicacity/S -perspicuity/SM -perspicuousness/M -perspicuous/YP -perspiration/MS -perspire/DSG -persuaded/U -persuader/M -persuade/ZGDRSB -persuasion/SM -persuasively -persuasiveness/MS -persuasive/U -pertain/GSD -Perth/M -pertinaciousness/M -pertinacious/YP -pertinacity/MS -pertinence/S -pertinent/YS -pertness/MS -perturbation/MS -perturbed/U -perturb/GDS -pertussis/SM -pert/YRTSP -peruke/SM -Peru/M -perusal/SM -peruser/M -peruse/RSDZG -Peruvian/S -pervade/SDG -pervasion/M -pervasiveness/MS -pervasive/PY -perverseness/SM -perverse/PXYNV -perversion/M -perversity/MS -pervert/DRSG -perverted/YP -perverter/M -perviousness -peseta/SM -Peshawar/M -peskily -peskiness/S -pesky/RTP -peso/MS -pessimal/Y -pessimism/SM -pessimistic -pessimistically -pessimist/SM -pester/DG -pesticide/MS -pestiferous -pestilence/SM -pestilential/Y -pestilent/Y -pestle/SDMG -pesto/S -pest/RZSM -PET -Ptain/M -petal/SDM -Peta/M -petard/MS -petcock/SM -Pete/M -peter/GD -Peter/M -Petersburg/M -Petersen/M -Peters/N -Peterson/M -Peterus/M -Petey/M -pethidine/M -petiole/SM -petiteness/M -petite/XNPS -petitioner/M -petition/GZMRD -petition's/A -petitions/A -petits -Petkiewicz/M -Pet/MRZ -Petra/M -Petrarch/M -petrel/SM -petri -petrifaction/SM -petrify/NDSG -Petrina/M -Petr/M -petrochemical/SM -petrodollar/MS -petroglyph/M -petrolatum/MS -petroleum/MS -petrolled -petrolling -petrol/MS -petrologist/MS -petrology/MS -Petronella/M -Petronia/M -Petronilla/M -Petronille/M -pet/SMRZ -petted -petter/MS -Pettibone/M -petticoat/SMD -pettifogged -pettifogger/SM -pettifogging -pettifog/S -pettily -pettiness/S -petting -pettis -pettishness/M -pettish/YP -Petty/M -petty/PRST -petulance/MS -petulant/Y -Petunia/M -petunia/SM -Peugeot/M -Pewaukee/M -pewee/MS -pewit/MS -pew/SM -pewter/SRM -peyote/SM -Peyter/M -Peyton/M -pf -Pfc -PFC -pfennig/SM -Pfizer/M -pg -PG -Phaedra/M -Phaethon/M -phaeton/MS -phage/M -phagocyte/SM -Phaidra/M -phalanger/MS -phalanges -phalanx/SM -phalli -phallic -phallus/M -Phanerozoic -phantasmagoria/SM -phantasmal -phantasm/SM -phantasy's -phantom/MS -pharaoh -Pharaoh/M -pharaohs -Pharaohs -pharisaic -Pharisaic -Pharisaical -pharisee/S -Pharisee/SM -pharmaceutical/SY -pharmaceutic/S -pharmaceutics/M -pharmacist/SM -pharmacological/Y -pharmacologist/SM -pharmacology/SM -pharmacopoeia/SM -pharmacy/SM -pharyngeal/S -pharynges -pharyngitides -pharyngitis/M -pharynx/M -phase/DSRGZM -phaseout/S -PhD -pheasant/SM -Phebe/M -Phedra/M -Phekda/M -Phelia/M -Phelps/M -phenacetin/MS -phenobarbital/SM -phenolic -phenol/MS -phenolphthalein/M -phenomenal/Y -phenomena/SM -phenomenological/Y -phenomenology/MS -phenomenon/SM -phenotype/MS -phenylalanine/M -phenyl/M -pheromone/MS -phew/S -phialled -phialling -phial/MS -Phidias/M -Philadelphia/M -philanderer/M -philander/SRDGZ -philanthropic -philanthropically -philanthropist/MS -philanthropy/SM -philatelic -philatelist/MS -philately/SM -Philbert/M -Philco/M -philharmonic/S -Philipa/M -Philip/M -Philippa/M -Philippe/M -Philippians/M -philippic/SM -Philippine/SM -Philis/M -philistine/S -Philistine/SM -philistinism/S -Phillida/M -Phillie/M -Phillipa/M -Phillipe/M -Phillip/MS -Phillipp/M -Phillis/M -Philly/SM -Phil/MY -philodendron/MS -philological/Y -philologist/MS -philology/MS -Philomena/M -philosopher/MS -philosophic -philosophical/Y -philosophized/U -philosophizer/M -philosophizes/U -philosophize/ZDRSG -philosophy/MS -philter/SGDM -philtre/DSMG -Phineas/M -Phip/M -Phipps/M -phi/SM -phlebitides -phlebitis/M -phlegmatic -phlegmatically -phlegm/SM -phloem/MS -phlox/M -pH/M -Ph/M -phobia/SM -phobic/S -Phobos/M -Phoebe/M -phoebe/SM -Phoenicia/M -Phoenician/SM -Phoenix/M -phoenix/MS -phone/DSGM -phoneme/SM -phonemically -phonemic/S -phonemics/M -phonetically -phonetician/SM -phonetic/S -phonetics/M -phonically -phonic/S -phonics/M -phoniness/MS -phonographer/M -phonographic -phonograph/RM -phonographs -phonologic -phonological/Y -phonologist/MS -phonology/MS -phonon/M -phony/PTRSDG -phooey/S -phosphatase/M -phosphate/MS -phosphide/M -phosphine/MS -phosphoresce -phosphorescence/SM -phosphorescent/Y -phosphoric -phosphor/MS -phosphorous -phosphorus/SM -photocell/MS -photochemical/Y -photochemistry/M -photocopier/M -photocopy/MRSDZG -photoelectric -photoelectrically -photoelectronic -photoelectrons -photoengraver/M -photoengrave/RSDJZG -photoengraving/M -photofinishing/MS -photogenic -photogenically -photograph/AGD -photographer/SM -photographic -photographically -photograph's -photographs/A -photography/MS -photojournalism/SM -photojournalist/SM -photoluminescence/M -photolysis/M -photolytic -photometer/SM -photometric -photometrically -photometry/M -photomicrograph/M -photomicrography/M -photomultiplier/M -photon/MS -photorealism -photosensitive -photo/SGMD -photosphere/M -photostatic -Photostat/MS -Photostatted -Photostatting -photosyntheses -photosynthesis/M -photosynthesize/DSG -photosynthetic -phototypesetter -phototypesetting/M -phrasal -phrase/AGDS -phrasebook -phrasemaking -phraseology/MS -phrase's -phrasing/SM -phrenological/Y -phrenologist/MS -phrenology/MS -phylactery/MS -phylae -phyla/M -Phylis/M -Phyllida/M -Phyllis/M -Phyllys/M -phylogeny/MS -phylum/M -Phylys/M -phys -physicality/M -physical/PYS -physician/SM -physicist/MS -physicked -physicking -physic/SM -physiochemical -physiognomy/SM -physiography/MS -physiologic -physiological/Y -physiologist/SM -physiology/MS -physiotherapist/MS -physiotherapy/SM -physique/MSD -phytoplankton/M -Piaf/M -Piaget/M -Pia/M -pianism/M -pianissimo/S -pianistic -pianist/SM -pianoforte/MS -pianola -Pianola/M -piano/SM -piaster/MS -piazza/SM -pibroch/M -pibrochs -picador/MS -picaresque/S -pica/SM -Picasso/M -picayune/S -Piccadilly/M -piccalilli/MS -piccolo/MS -pickaback's -pickaxe's -pickax/GMSD -pickerel/MS -Pickering/M -picker/MG -picketer/M -picket/MSRDZG -Pickett/M -Pickford/M -pick/GZSJDR -pickle/SDMG -Pickman/M -pickoff/S -pickpocket/GSM -pickup/SM -Pickwick/M -picky/RT -picnicked -picnicker/MS -picnicking -picnic/SM -picofarad/MS -picojoule -picoseconds -picot/DMGS -Pict/M -pictograph/M -pictographs -pictorialness/M -pictorial/PYS -picture/MGSD -picturesqueness/SM -picturesque/PY -piddle/GSD -piddly -pidgin/SM -piebald/S -piece/GMDSR -piecemeal -piecer/M -piecewise -pieceworker/M -piecework/ZSMR -piedmont -Piedmont/M -pieing -pie/MS -Pierce/M -piercer/M -pierce/RSDZGJ -piercing/Y -Pierette/M -pier/M -Pier/M -Pierre/M -Pierrette/M -Pierrot/M -Pierson/M -Pieter/M -Pietra/M -Pietrek/M -Pietro/M -piety/SM -piezoelectric -piezoelectricity/M -piffle/MGSD -pigeon/DMGS -pigeonhole/SDGM -pigged -piggery/M -pigging -piggishness/SM -piggish/YP -piggyback/MSDG -Piggy/M -piggy/RSMT -pigheadedness/S -pigheaded/YP -piglet/MS -pigmentation/MS -pigment/MDSG -pig/MLS -Pigmy's -pigpen/SM -pigroot -pigskin/MS -pigsty/SM -pigswill/M -pigtail/SMD -Pike/M -pike/MZGDRS -piker/M -pikestaff/MS -pilaf/MS -pilaster/SM -Pilate/M -pilau's -pilchard/SM -Pilcomayo/M -pile/JDSMZG -pileup/MS -pilferage/SM -pilferer/M -pilfer/ZGSRD -Pilgrim -pilgrimage/DSGM -pilgrim/MS -piling/M -pillage/RSDZG -pillar/DMSG -pillbox/MS -pill/GSMD -pillion/DMGS -pillory/MSDG -pillowcase/SM -pillow/GDMS -pillowslip/S -Pillsbury/M -pilot/DMGS -pilothouse/SM -piloting/M -pimento/MS -pimiento/SM -pimpernel/SM -pimp/GSMYD -pimple/SDM -pimplike -pimply/TRM -PIN -pinafore/MS -piata/S -Pinatubo/M -pinball/MS -Pincas/M -pincer/GSD -Pinchas/M -pincher/M -pinch/GRSD -pincushion/SM -Pincus/M -Pindar/M -pineapple/MS -pined/A -Pinehurst/M -pine/MNGXDS -pines/A -pinfeather/SM -ping/GDRM -pinheaded/P -pinhead/SMD -pinhole/SM -pining/A -pinion/DMG -Pinkerton/M -pinkeye/MS -pink/GTYDRMPS -pinkie/SM -pinkish/P -pinkness/S -pinko/MS -pinky's -pinnacle/MGSD -pinnate -pinned/U -pinning/S -Pinocchio/M -Pinochet/M -pinochle/SM -pion/S -pinpoint/SDG -pinprick/MDSG -pin's -pinsetter/SM -Pinsky/M -pinstripe/SDM -pintail/SM -Pinter/M -pint/MRS -pinto/S -pinup/MS -pin/US -pinwheel/DMGS -pinyin -Pinyin -piny/RT -pioneer/SDMG -pion/M -Piotr/M -piousness/MS -pious/YP -pipeline/DSMG -pipe/MS -piper/M -Piper/M -Pipestone/M -pipet's -pipette/MGSD -pipework -piping/YM -pipit/MS -pip/JSZMGDR -Pip/MR -Pippa/M -pipped -pipping -pippin/SM -Pippo/M -Pippy/M -pipsqueak/SM -piquancy/MS -piquantness/M -piquant/PY -pique/GMDS -piracy/MS -Piraeus/M -Pirandello/M -piranha/SM -pirate/MGSD -piratical/Y -pirogi -pirogies -pirouette/MGSD -pis -Pisa/M -piscatorial -Pisces/M -Pisistratus/M -pismire/SM -Pissaro/M -piss/DSRG! -pistachio/MS -piste/SM -pistillate -pistil/MS -pistoleers -pistole/M -pistol/SMGD -piston/SM -pitapat/S -pitapatted -pitapatting -pita/SM -Pitcairn/M -pitchblende/SM -pitcher/M -pitchfork/GDMS -pitching/M -pitchman/M -pitchmen -pitch/RSDZG -pitchstone/M -piteousness/SM -piteous/YP -pitfall/SM -pithily -pithiness/SM -pith/MGDS -piths -pithy/RTP -pitiableness/M -pitiable/P -pitiably -pitier/M -pitifuller -pitifullest -pitifulness/M -pitiful/PY -pitilessness/SM -pitiless/PY -pitman/M -pit/MS -Pitney/M -piton/SM -pittance/SM -pitted -pitting -Pittman/M -Pittsburgh/ZM -Pittsfield/M -Pitt/SM -Pittston/M -pituitary/SM -pitying/Y -pity/ZDSRMG -Pius/M -pivotal/Y -pivot/DMSG -pivoting/M -pix/DSG -pixel/SM -pixie/MS -pixiness -pixmap/SM -Pizarro/M -pizazz/S -pi/ZGDRH -pizza/SM -pizzeria/SM -pizzicati -pizzicato -pj's -PJ's -pk -pkg -pkt -pkwy -Pkwy -pl -placard/DSMG -placate/NGVXDRS -placatory -placeable/A -placebo/SM -placed/EAU -place/DSRJLGZM -placeholder/S -placekick/DGS -placeless/Y -placement/AMES -placental/S -placenta/SM -placer/EM -places/EA -placidity/SM -placidness/M -placid/PY -placing/AE -placket/SM -plagiarism/MS -plagiarist/MS -plagiarize/GZDSR -plagiary/SM -plagued/U -plague/MGRSD -plaguer/M -plaice/M -plaid/DMSG -plainclothes -plainclothesman -plainclothesmen -Plainfield/M -plainness/MS -plainsman/M -plainsmen -plainsong/SM -plainspoken -plain/SPTGRDY -plaintiff/MS -plaintiveness/M -plaintive/YP -plaint/VMS -Plainview/M -plaiting/M -plait/SRDMG -planar -planarity -Planck/M -plan/DRMSGZ -planeload -planer/M -plane's -plane/SCGD -planetarium/MS -planetary -planetesimal/M -planet/MS -planetoid/SM -plangency/S -plangent -planking/M -plank/SJMDG -plankton/MS -planned/U -planner/SM -planning -Plano -planoconcave -planoconvex -Plantagenet/M -plantain/MS -plantar -plantation/MS -planter/MS -planting/S -plantlike -plant's -plant/SADG -plaque/MS -plash/GSDM -plasma/MS -plasmid/S -plasm/M -plasterboard/MS -plasterer/M -plastering/M -plaster/MDRSZG -plasterwork/M -plastically -plasticine -Plasticine/M -plasticity/SM -plasticize/GDS -plastic/MYS -plateau/GDMS -plateful/S -platelet/SM -platen/M -plater/M -plate/SM -platform/SGDM -Plath/M -plating/M -platinize/GSD -platinum/MS -platitude/SM -platitudinous/Y -plat/JDNRSGXZ -Plato/M -platonic -Platonic -Platonism/M -Platonist -platoon/MDSG -platted -Platte/M -platter/MS -Platteville/M -platting -platypus/MS -platys -platy/TR -plaudit/MS -plausibility/S -plausible/P -plausibly -Plautus/M -playability/U -playable/U -playacting/M -playact/SJDG -playback/MS -playbill/SM -Playboy/M -playboy/SM -play/DRSEBG -played/A -player's/E -player/SM -playfellow/S -playfulness/MS -playful/PY -playgirl/SM -playgoer/MS -playground/MS -playgroup/S -playhouse/SM -playing/S -playmate/MS -playoff/S -playpen/SM -playroom/SM -plays/A -Playtex/M -plaything/MS -playtime/SM -playwright/SM -playwriting/M -plaza/SM -pleader/MA -pleading/MY -plead/ZGJRDS -pleasanter -pleasantest -pleasantness/SMU -pleasantry/MS -pleasant/UYP -pleased/EU -pleaser/M -pleases/E -please/Y -pleasingness/M -pleasing/YP -plea/SM -pleas/RSDJG -pleasurableness/M -pleasurable/P -pleasurably -pleasureful -pleasure/MGBDS -pleasure's/E -pleasures/E -pleater/M -pleat/RDMGS -plebeian/SY -plebe/MS -plebiscite/SM -plectra -plectrum/SM -pledger/M -pledge/RSDMG -Pleiads -Pleistocene -plenary/S -plenipotentiary/S -plenitude/MS -plenteousness/M -plenteous/PY -plentifulness/M -plentiful/YP -plenty/SM -plenum/M -pleonasm/MS -plethora/SM -pleurae -pleural -pleura/M -pleurisy/SM -Plexiglas/MS -plexus/SM -pliability/MS -pliableness/M -pliable/P -pliancy/MS -pliantness/M -pliant/YP -plication/MA -plier/MA -plight/GMDRS -plimsolls -plinker/M -plink/GRDS -plinth/M -plinths -Pliny/M -Pliocene/S -PLO -plodded -plodder/SM -plodding/SY -plod/S -plopped -plopping -plop/SM -plosive -plot/SM -plotted/A -plotter/MDSG -plotting -plover/MS -plowed/U -plower/M -plowman/M -plowmen -plow/SGZDRM -plowshare/MS -ploy's -ploy/SCDG -plucker/M -pluckily -pluckiness/SM -pluck/SGRD -plucky/TPR -pluggable -plugged/UA -plugging/AU -plughole -plug's -plug/US -plumage/DSM -plumbago/M -plumbed/U -plumber/M -plumbing/M -plumb/JSZGMRD -plume/SM -plummer -plummest -plummet/DSG -plummy -plumper/M -plumpness/S -plump/RDNYSTGP -plum/SMDG -plumy/TR -plunder/GDRSZ -plunger/M -plunge/RSDZG -plunker/M -plunk/ZGSRD -pluperfect/S -pluralism/MS -pluralistic -pluralist/S -plurality/SM -pluralization/MS -pluralize/GZRSD -pluralizer/M -plural/SY -plushness/MS -plush/RSYMTP -plushy/RPT -plus/S -plussed -plussing -Plutarch/M -plutocracy/MS -plutocratic -plutocrat/SM -Pluto/M -plutonium/SM -pluvial/S -ply/AZNGRSD -Plymouth/M -plywood/MS -pm -PM -Pm/M -PMS -pneumatically -pneumatic/S -pneumatics/M -pneumonia/MS -PO -poacher/M -poach/ZGSRD -Pocahontas/M -pocketbook/SM -pocketful/SM -pocketing/M -pocketknife/M -pocketknives -pocket/MSRDG -pock/GDMS -pockmark/MDSG -Pocono/MS -podded -podding -podge/ZR -Podgorica/M -podiatrist/MS -podiatry/MS -podium/MS -pod/SM -Podunk/M -Poe/M -poem/MS -poesy/GSDM -poetaster/MS -poetess/MS -poetically -poeticalness -poetical/U -poetic/S -poetics/M -poet/MS -poetry/SM -pogo -Pogo/M -pogrom/GMDS -poignancy/MS -poignant/Y -Poincar/M -poinciana/SM -Poindexter/M -poinsettia/SM -pointblank -pointedness/M -pointed/PY -pointer/M -pointillism/SM -pointillist/SM -pointing/M -pointlessness/SM -pointless/YP -point/RDMZGS -pointy/TR -poise/M -pois/GDS -poi/SM -poisoner/M -poisoning/M -poisonous/PY -poison/RDMZGSJ -Poisson/M -poke/DRSZG -Pokemon/M -pokerface/D -poker/M -poky/SRT -Poland/M -Polanski/M -polarimeter/SM -polarimetry -polariscope/M -Polaris/M -polarity/MS -polarization/CMS -polarized/UC -polarize/RSDZG -polarizes/C -polarizing/C -polarogram/SM -polarograph -polarography/M -Polaroid/SM -polar/S -polecat/SM -polemical/Y -polemicist/S -polemic/S -polemics/M -pole/MS -Pole/MS -poler/M -polestar/S -poleward/S -pol/GMDRS -policeman/M -policemen/M -police/MSDG -policewoman/M -policewomen -policyholder/MS -policymaker/S -policymaking -policy/SM -poliomyelitides -poliomyelitis/M -polio/SM -Polish -polished/U -polisher/M -polish/RSDZGJ -polis/M -Politburo/M -politburo/S -politeness/MS -polite/PRTY -politesse/SM -politically -political/U -politician/MS -politicization/S -politicize/CSDG -politicked -politicking/SM -politico/SM -politic/S -politics/M -polity/MS -polka/SDMG -Polk/M -pollack/SM -Pollard/M -polled/U -pollen/GDM -pollinate/XSDGN -pollination/M -pollinator/MS -polliwog/SM -poll/MDNRSGX -pollock's -Pollock/SM -pollster/MS -pollutant/MS -polluted/U -polluter/M -pollute/RSDXZVNG -pollution/M -Pollux/M -Pollyanna/M -Polly/M -pollywog's -Pol/MY -Polo/M -polo/MS -polonaise/MS -polonium/MS -poltergeist/SM -poltroon/MS -polyandrous -polyandry/MS -polyatomic -polybutene/MS -polycarbonate -polychemicals -polychrome -polyclinic/MS -polycrystalline -polyelectrolytes -polyester/SM -polyether/S -polyethylene/SM -polygamist/MS -polygamous/Y -polygamy/MS -polyglot/S -polygonal/Y -polygon/MS -polygraph/MDG -polygraphs -polygynous -polyhedral -polyhedron/MS -Polyhymnia/M -polyisobutylene -polyisocyanates -polymath/M -polymaths -polymerase/S -polymeric -polymerization/SM -polymerize/SDG -polymer/MS -polymorphic -polymorphism/MS -polymorph/M -polymyositis -Polynesia/M -Polynesian/S -polynomial/YMS -Polyphemus/M -polyphonic -polyphony/MS -polyphosphate/S -polyp/MS -polypropylene/MS -polystyrene/SM -polysyllabic -polysyllable/SM -polytechnic/MS -polytheism/SM -polytheistic -polytheist/SM -polythene/M -polytonal/Y -polytopes -polyunsaturated -polyurethane/SM -polyvinyl/MS -Po/M -pomade/MGSD -pomander/MS -pomegranate/SM -Pomerania/M -Pomeranian -pommel/GSMD -Pomona/M -Pompadour/M -pompadour/MDS -pompano/SM -Pompeian/S -Pompeii/M -Pompey/M -pompom/SM -pompon's -pomposity/MS -pompousness/S -pompous/YP -pomp/SM -ponce/M -Ponce/M -Ponchartrain/M -poncho/MS -ponderer/M -ponderousness/MS -ponderous/PY -ponder/ZGRD -pond/SMDRGZ -pone/SM -pongee/MS -poniard/GSDM -pons/M -Pontchartrain/M -Pontiac/M -Pontianak/M -pontiff/MS -pontifical/YS -pontificate/XGNDS -pontoon/SMDG -pony/DSMG -ponytail/SM -pooch/GSDM -poodle/MS -poof/MS -pooh/DG -Pooh/M -poohs -Poole/M -pool/MDSG -poolroom/MS -poolside -Poona/M -poop/MDSG -poorboy -poorhouse/MS -poorness/MS -poor/TYRP -popcorn/MS -Popek/MS -pope/SM -Pope/SM -Popeye/M -popgun/SM -popinjay/MS -poplar/SM -poplin/MS -Popocatepetl/M -popover/SM -poppa/MS -popped -Popper/M -popper/SM -poppet/M -popping -Poppins/M -poppycock/MS -Poppy/M -poppy/SDM -poppyseed -Popsicle/MS -pop/SM -populace/MS -popularism -popularity/UMS -popularization/SM -popularize/A -popularized -popularizer/MS -popularizes/U -popularizing -popular/YS -populate/CXNGDS -populated/UA -populates/A -populating/A -population/MC -populism/S -populist/SM -populousness/MS -populous/YP -porcelain/SM -porch/SM -porcine -porcupine/MS -pore/ZGDRS -Porfirio/M -porgy/SM -poring/Y -porker/M -porky/TSR -pork/ZRMS -pornographer/SM -pornographic -pornographically -pornography/SM -porno/S -porn/S -porosity/SM -porousness/MS -porous/PY -porphyritic -porphyry/MS -porpoise/DSGM -porridge/MS -Porrima/M -porringer/MS -Porsche/M -portability/S -portables -portable/U -portably -port/ABSGZMRD -portage/ASM -portaged -portaging -portal/SM -portamento/M -portcullis/MS -ported/CE -Porte/M -portend/SDG -portentousness/M -portentous/PY -portent/SM -porterage/M -porter/DMG -porterhouse/SM -Porter/M -porter's/A -portfolio/MS -porthole/SM -Portia/M -porticoes -portico/M -Portie/M -portire/SM -porting/E -portion/KGSMD -Portland/M -portliness/SM -portly/PTR -portmanteau/SM -Port/MR -Prto/M -portraitist/SM -portrait/MS -portraiture/MS -portrayal/SM -portrayer/M -portray/GDRS -ports/CE -Portsmouth/M -Portugal/M -Portuguese/M -portulaca/MS -Porty/M -posed/CA -Poseidon/M -poser/KME -poses/CA -poseur/MS -pose/ZGKDRSE -posh/DSRGT -posing/CA -positifs -positionable -positional/KY -position/KGASMD -position's/EC -positions/EC -positiveness/S -positive/RSPYT -positivism/M -positivist/S -positivity -positron/SM -posit/SCGD -Posner/M -posse/M -possess/AGEDS -possessed/PY -possession/AEMS -possessional -possessiveness/MS -possessive/PSMY -possessor/MS -possibility/SM -possible/TRS -possibly -poss/S -possum/MS -postage/MS -postal/S -post/ASDRJG -postbag/M -postbox/SM -postcard/SM -postcode/SM -postcondition/S -postconsonantal -postdate/DSG -postdoctoral -posteriori -posterior/SY -posterity/SM -poster/MS -postfix/GDS -postgraduate/SM -posthaste/S -posthumousness/M -posthumous/YP -posthypnotic -postilion/MS -postindustrial -posting/M -postlude/MS -Post/M -postman/M -postmarital -postmark/GSMD -postmaster/SM -postmen -postmeridian -postmistress/MS -postmodern -postmodernist -postmortem/S -postnasal -postnatal -postoperative/Y -postorder -postpaid -postpartum -postpone/GLDRS -postponement/S -postpositions -postprandial -post's -postscript/SM -postsecondary -postulate/XGNSD -postulation/M -postural -posture/MGSRD -posturer/M -postvocalic -postwar -posy/SM -potability/SM -potableness/M -potable/SP -potage/M -potash/MS -potassium/MS -potatoes -potato/M -potbelly/MSD -potboiler/M -potboil/ZR -pot/CMS -Potemkin/M -potency/MS -potentate/SM -potentiality/MS -potential/SY -potentiating -potentiometer/SM -potent/YS -potful/SM -pothead/MS -potherb/MS -pother/GDMS -potholder/MS -pothole/SDMG -potholing/M -pothook/SM -potion/SM -potlatch/SM -potluck/MS -Potomac/M -potpie/SM -potpourri/SM -Potsdam/M -potsherd/MS -potshot/S -pottage/SM -Pottawatomie/M -potted -Potter/M -potter/RDMSG -pottery/MS -potting -Potts/M -potty/SRT -pouch/SDMG -Poughkeepsie/M -Poul/M -poulterer/MS -poultice/DSMG -poultry/MS -pounce/SDG -poundage/MS -pounder/MS -pound/KRDGS -Pound/M -pour/DSG -pourer's -Poussin/MS -pouter/M -pout/GZDRS -poverty/MS -POW -powderpuff -powder/RDGMS -powdery -Powell/M -powerboat/MS -powerfulness/M -powerful/YP -power/GMD -powerhouse/MS -powerlessness/SM -powerless/YP -Powers -Powhatan/M -pow/RZ -powwow/GDMS -pox/GMDS -Poznan/M -pp -PP -ppm -ppr -PPS -pr -PR -practicability/S -practicable/P -practicably -practicality/SM -practicalness/M -practical/YPS -practice/BDRSMG -practiced/U -practicer/M -practicum/SM -practitioner/SM -Pradesh/M -Prado/M -Praetorian -praetorian/S -praetor/MS -pragmatical/Y -pragmatic/S -pragmatics/M -pragmatism/MS -pragmatist/MS -Prague/M -Praia -prairie/MS -praise/ESDG -praiser/S -praise's -praiseworthiness/MS -praiseworthy/P -praising/Y -Prakrit/M -praline/MS -pram/MS -prancer/M -prance/ZGSRD -prancing/Y -prank/SMDG -prankster/SM -praseodymium/SM -Pratchett/M -prate/DSRGZ -prater/M -pratfall/MS -prating/Y -prattle/DRSGZ -prattler/M -prattling/Y -Pratt/M -Prattville/M -Pravda/M -prawn/MDSG -praxes -praxis/M -Praxiteles/M -pray/DRGZS -prayerbook -prayerfulness/M -prayerful/YP -prayer/M -PRC -preach/DRSGLZJ -preacher/M -preaching/Y -preachment/MS -preachy/RT -preadolescence/S -Preakness/M -preallocate/XGNDS -preallocation/M -preallocator/S -preamble/MGDS -preamp -preamplifier/M -prearrange/LSDG -prearrangement/SM -preassign/SDG -preauthorize -prebendary/M -Precambrian -precancel/DGS -precancerous -precariousness/MS -precarious/PY -precautionary -precaution/SGDM -precede/DSG -precedence/SM -precedented/U -precedent/SDM -preceptive/Y -preceptor/MS -precept/SMV -precess/DSG -precession/M -precinct/MS -preciosity/MS -preciousness/S -precious/PYS -precipice/MS -precipitable -precipitant/S -precipitateness/M -precipitate/YNGVPDSX -precipitation/M -precipitousness/M -precipitous/YP -preciseness/SM -precise/XYTRSPN -precision/M -prcis/MDG -preclude/GDS -preclusion/S -precociousness/MS -precocious/YP -precocity/SM -precode/D -precognition/SM -precognitive -precollege/M -precolonial -precomputed -preconceive/GSD -preconception/SM -precondition/GMDS -preconscious -precook/GDS -precursor/SM -precursory -precut -predate/NGDSX -predation/CMS -predator/SM -predatory -predecease/SDG -predecessor/MS -predeclared -predecline -predefine/GSD -predefinition/SM -predesignate/GDS -predestination/SM -predestine/SDG -predetermination/MS -predeterminer/M -predetermine/ZGSRD -predicable/S -predicament/SM -predicate/VGNXSD -predication/M -predicator -predictability/UMS -predictable/U -predictably/U -predict/BSDGV -predicted/U -prediction/MS -predictive/Y -predictor/MS -predigest/GDS -predilect -predilection/SM -predispose/SDG -predisposition/MS -predoctoral -predominance/SM -predominant/Y -predominate/YSDGN -predomination/M -preemie/MS -preeminence/SM -preeminent/Y -preemployment/M -preempt/GVSD -preemption/SM -preemptive/Y -preemptor/M -preener/M -preen/SRDG -preexist/DSG -preexistence/SM -preexistent -prefabbed -prefabbing -prefab/MS -prefabricate/XNGDS -prefabrication/M -preface/DRSGM -prefacer/M -prefatory -prefect/MS -prefecture/MS -preferableness/M -preferable/P -preferably -prefer/BL -preference/MS -preferential/Y -preferment/SM -preferred -preferring -prefiguration/M -prefigure/SDG -prefix/MDSG -preflight/SGDM -preform/DSG -pref/RZ -pregnancy/SM -pregnant/Y -preheat/GDS -prehensile -prehistoric -prehistorical/Y -prehistory/SM -preindustrial -preinitialize/SDG -preinterview/M -preisolated -prejudge/DRSG -prejudger/M -prejudgment/SM -prejudiced/U -prejudice/MSDG -prejudicial/PY -prekindergarten/MS -prelacy/MS -prelate/SM -preliminarily -preliminary/S -preliterate/S -preloaded -prelude/GMDRS -preluder/M -premarital/Y -premarket -prematureness/M -premature/SPY -prematurity/M -premedical -premeditated/Y -premeditate/XDSGNV -premeditation/M -premed/S -premenstrual -premiere/MS -premier/GSDM -premiership/SM -Preminger/M -premise/GMDS -premiss's -premium/MS -premix/GDS -premolar/S -premonition/SM -premonitory -prenatal/Y -Pren/M -Prenticed/M -Prentice/MGD -Prenticing/M -Prentiss/M -Prent/M -prenuptial -preoccupation/MS -preoccupy/DSG -preoperative -preordain/DSLG -prepackage/GSD -prepaid -preparation/SM -preparative/SYM -preparatory -preparedly -preparedness/USM -prepared/UP -prepare/ZDRSG -prepay/GLS -prepayment/SM -prepender/S -prepends -preplanned -preponderance/SM -preponderant/Y -preponderate/DSYGN -prepositional/Y -preposition/SDMG -prepossess/GSD -prepossessing/U -prepossession/MS -preposterousness/M -preposterous/PY -prepped -prepping -preppy/RST -preprepared -preprint/SGDM -preprocessed -preprocessing -preprocessor/S -preproduction -preprogrammed -prep/SM -prepubescence/S -prepubescent/S -prepublication/M -prepuce/SM -prequel/S -preradiation -prerecord/DGS -preregister/DSG -preregistration/MS -prerequisite/SM -prerogative/SDM -Pres -presage/GMDRS -presager/M -presbyopia/MS -presbyterian -Presbyterianism/S -Presbyterian/S -presbyter/MS -presbytery/MS -preschool/RSZ -prescience/SM -prescient/Y -Prescott/M -prescribed/U -prescriber/M -prescribe/RSDG -prescription/SM -prescriptive/Y -prescript/SVM -preselect/SGD -presence/SM -presentableness/M -presentable/P -presentably/A -presentational/A -presentation/AMS -presented/A -presenter/A -presentiment/MS -presentment/SM -presents/A -present/SLBDRYZGP -preservationist/S -preservation/SM -preservative/SM -preserve/DRSBZG -preserved/U -preserver/M -preset/S -presetting -preshrank -preshrink/SG -preshrunk -preside/DRSG -presidency/MS -presidential/Y -president/SM -presider/M -presidia -presidium/M -Presley/M -presoaks -presort/GDS -pres/S -press/ACDSG -pressed/U -presser/MS -pressingly/C -pressing/YS -pressman/M -pressmen -pressure/DSMG -pressurization/MS -pressurize/DSRGZ -pressurized/U -prestidigitate/NX -prestidigitation/M -prestidigitatorial -prestidigitator/M -prestige/MS -prestigious/PY -Preston/M -presto/S -presumably -presume/BGDRS -presumer/M -presuming/Y -presumption/MS -presumptive/Y -presumptuousness/SM -presumptuous/YP -presuppose/GDS -presupposition/S -pretax -preteen/S -pretended/Y -pretender/M -pretending/U -pretend/SDRZG -pretense/MNVSX -pretension/GDM -pretentiousness/S -pretentious/UYP -preterite's -preterit/SM -preternatural/Y -pretest/SDG -pretext/SMDG -Pretoria/M -pretreated -pretreatment/S -pretrial -prettify/SDG -prettily -prettiness/SM -pretty/TGPDRS -pretzel/SM -prevailing/Y -prevail/SGD -prevalence/MS -prevalent/SY -prevaricate/DSXNG -prevaricator/MS -preventable/U -preventably -preventative/S -prevent/BSDRGV -preventer/M -prevention/MS -preventiveness/M -preventive/SPY -preview/ZGSDRM -previous/Y -prevision/SGMD -prewar -prexes -preyer's -prey/SMDG -Priam/M -priapic -Pribilof/M -price/AGSD -priced/U -priceless -Price/M -pricer/MS -price's -pricey -pricier -priciest -pricker/M -pricking/M -prickle/GMDS -prickliness/S -prickly/RTP -prick/RDSYZG -prideful/Y -pride/GMDS -prier/M -priestess/MS -priesthood/SM -Priestley/M -priestliness/SM -priestly/PTR -priest/SMYDG -prigged -prigging -priggishness/S -priggish/PYM -prig/SM -primacy/MS -primal -primarily -primary/MS -primate/MS -primed/U -primely/M -primeness/M -prime/PYS -primer/M -Prime's -primeval/Y -priming/M -primitiveness/SM -primitive/YPS -primitivism/M -primmed -primmer -primmest -primming -primness/MS -primogenitor/MS -primogeniture/MS -primordial/YS -primp/DGS -primrose/MGSD -prim/SPJGZYDR -princedom/MS -princeliness/SM -princely/PRT -Prince/M -prince/SMY -princess/MS -Princeton/M -principality/MS -principal/SY -Principe/M -Principia/M -principled/U -principle/SDMG -printable/U -printably -print/AGDRS -printed/U -printer/AM -printers -printing/SM -printmaker/M -printmake/ZGR -printmaking/M -printout/S -Prinz/M -prioress/MS -priori -prioritize/DSRGZJ -priority/MS -prior/YS -priory/SM -Pris -Prisca/M -Priscella/M -Priscilla/M -prised -prise/GMAS -prismatic -prism/MS -prison/DRMSGZ -prisoner/M -Prissie/M -prissily -prissiness/SM -prissy/RSPT -pristine/Y -prithee/S -privacy/MS -privateer/SMDG -privateness/M -private/NVYTRSXP -privation/MCS -privative/Y -privatization/S -privatize/GSD -privet/SM -privileged/U -privilege/SDMG -privily -privy/SRMT -prized/A -prize/DSRGZM -prizefighter/M -prizefighting/M -prizefight/SRMGJZ -prizewinner/S -prizewinning -Pr/MN -PRO -proactive -probabilist -probabilistic -probabilistically -probability/SM -probable/S -probably -probated/A -probate/NVMX -probates/A -probating/A -probational -probationary/S -probationer/M -probation/MRZ -probation's/A -probative/A -prober/M -probity/SM -problematical/UY -problematic/S -problem/SM -proboscis/MS -prob/RBJ -procaine/MS -procedural/SY -procedure/MS -proceeder/M -proceeding/M -proceed/JRDSG -process/BSDMG -processed/UA -processes/A -processional/YS -procession/GD -processor/MS -proclamation/MS -proclivity/MS -proconsular -procrastinate/XNGDS -procrastination/M -procrastinator/MS -procreational -procreatory -procrustean -Procrustean -Procrustes/M -proctor/GSDM -proctorial -procurable/U -procure/L -procurement/MS -Procyon/M -prodded -prodding -prodigality/S -prodigal/SY -prodigiousness/M -prodigious/PY -prodigy/MS -prod/S -produce/AZGDRS -producer/AM -producible/A -production/ASM -productively/UA -productiveness/MS -productive/PY -productivities -productivity/A -productivity's -productize/GZRSD -product/V -Prof -profanation/S -profaneness/MS -profane/YPDRSG -profanity/MS -professed/Y -professionalism/SM -professionalize/GSD -professional/USY -profession/SM -professorial/Y -professorship/SM -professor/SM -proffer/GSD -proficiency/SM -proficient/YS -profitability/MS -profitableness/MU -profitable/UP -profitably/U -profiteer/GSMD -profiterole/MS -profit/GZDRB -profitless -profligacy/S -profligate/YS -proforma/S -profoundity -profoundness/SM -profound/PTYR -prof/S -profundity/MS -profuseness/MS -profuse/YP -progenitor/SM -progeny/M -progesterone/SM -prognathous -prognoses -prognosis/M -prognosticate/NGVXDS -prognostication/M -prognosticator/S -prognostic/S -program/CSA -programed -programing -programmability -programmable/S -programmed/CA -programmer/ASM -programming/CA -programmings -progression/SM -progressiveness/SM -progressive/SPY -progressivism -progress/MSDVG -prohibiter/M -prohibitionist/MS -prohibition/MS -Prohibition/MS -prohibitiveness/M -prohibitive/PY -prohibitory -prohibit/VGSRD -projected/AU -projectile/MS -projectionist/MS -projection/MS -projective/Y -project/MDVGS -projector/SM -Prokofieff/M -Prokofiev/M -prolegomena -proletarianization/M -proletarianized -proletarian/S -proletariat/SM -proliferate/GNVDSX -proliferation/M -prolifically -prolific/P -prolixity/MS -prolix/Y -prologize -prologue/MGSD -prologuize -prolongate/NGSDX -prolongation/M -prolonger/M -prolong/G -promenade/GZMSRD -promenader/M -Promethean -Prometheus/M -promethium/SM -prominence/MS -prominent/Y -promiscuity/MS -promiscuousness/M -promiscuous/PY -promise/GD -promising/UY -promissory -promontory/MS -promote/GVZBDR -promoter/M -promotiveness/M -promotive/P -prompted/U -prompter/M -promptitude/SM -promptness/MS -prompt/SGJTZPYDR -pro/MS -promulgate/NGSDX -promulgation/M -promulgator/MS -pron -proneness/MS -prone/PY -pronghorn/SM -prong/SGMD -pronominalization -pronominalize -pronounceable/U -pronouncedly -pronounced/U -pronounce/GLSRD -pronouncement/SM -pronouncer/M -pronto -pronunciation/SM -proofed/A -proofer -proofing/M -proofreader/M -proofread/GZSR -proof/SEAM -propaganda/SM -propagandistic -propagandist/SM -propagandize/DSG -propagated/U -propagate/SDVNGX -propagation/M -propagator/MS -propellant/MS -propelled -propeller/MS -propelling -propel/S -propensity/MS -properness/M -proper/PYRT -propertied/U -property/SDM -prophecy/SM -prophesier/M -prophesy/GRSDZ -prophetess/S -prophetic -prophetical/Y -prophet/SM -prophylactic/S -prophylaxes -prophylaxis/M -propinquity/MS -propionate/M -propitiate/GNXSD -propitiatory -propitiousness/M -propitious/YP -proponent/MS -proportionality/M -proportional/SY -proportionate/YGESD -proportioner/M -proportion/ESGDM -proportionment/M -proposal/SM -propped -propping -proprietary/S -proprietorial -proprietorship/SM -proprietor/SM -proprietress/MS -propriety/MS -proprioception -proprioceptive -prop/SZ -propulsion/MS -propulsive -propylene/M -prorogation/SM -prorogue -prosaic -prosaically -proscenium/MS -prosciutti -prosciutto/SM -proscription/SM -proscriptive -pros/DSRG -prosecute/SDBXNG -prosecution/M -prosecutor/MS -proselyte/SDGM -proselytism/MS -proselytize/ZGDSR -prose/M -proser/M -Proserpine/M -prosodic/S -prosody/MS -prospect/DMSVG -prospection/SM -prospectiveness/M -prospective/SYP -prospector/MS -prospectus/SM -prosper/GSD -prosperity/MS -prosperousness/M -prosperous/PY -prostate -prostheses -prosthesis/M -prosthetic/S -prosthetics/M -prostitute/DSXNGM -prostitution/M -prostrate/SDXNG -prostration/M -prosy/RT -protactinium/MS -protagonist/SM -Protagoras/M -protean/S -protease/M -protect/DVGS -protected/UY -protectionism/MS -protectionist/MS -protection/MS -protectiveness/S -protective/YPS -protectorate/SM -protector/MS -protges -protg/SM -protein/MS -proteolysis/M -proteolytic -Proterozoic/M -protestantism -Protestantism/MS -protestant/S -Protestant/SM -protestation/MS -protest/G -protesting/Y -Proteus/M -protocol/DMGS -protoplasmic -protoplasm/MS -prototype/SDGM -prototypic -prototypical/Y -protozoa -protozoan/MS -protozoic -protozoon's -protract/DG -protrude/SDG -protrusile -protrusion/MS -protrusive/PY -protuberance/S -protuberant -Proudhon/M -proud/TRY -Proust/M -provabilities -provability's -provability/U -provableness/M -provable/P -provably -prov/DRGZB -proved/U -proven/U -prove/ESDAG -provenance/SM -Provenal -Provencals -Provence/M -provender/SDG -provenience/SM -provenly -proverb/DG -proverbial/Y -Proverbs/M -prover/M -provide/DRSBGZ -provided/U -providence/SM -Providence/SM -providential/Y -provident/Y -provider/M -province/SM -provincialism/SM -provincial/SY -provisional/YS -provisioner/M -provision/R -proviso/MS -provocateur/S -provocativeness/SM -provocative/P -provoked/U -provoke/GZDRS -provoking/Y -provolone/SM -Provo/M -provost/MS -prowess/SM -prowler/M -prowl/RDSZG -prow/TRMS -proximal/Y -proximateness/M -proximate/PY -proximity/MS -Proxmire/M -proxy/SM -Prozac -prude/MS -Prudence/M -prudence/SM -Prudential/M -prudential/SY -prudent/Y -prudery/MS -Prudi/M -prudishness/SM -prudish/YP -Prudy/M -Prue/M -Pruitt/M -Pru/M -prune/DSRGZM -pruner/M -prurience/MS -prurient/Y -Prussia/M -Prussian/S -prussic -Prut/M -Pryce/M -pry/DRSGTZ -pryer's -prying/Y -P's -PS -p's/A -psalmist/SM -psalm/SGDM -Psalms/M -psalter -Psalter/SM -psaltery/MS -psephologist/M -pseudonymous -pseudonym/SM -pseudopod -pseudo/S -pseudoscience/S -pshaw/SDG -psi/S -psittacoses -psittacosis/M -psoriases -psoriasis/M -psst/S -PST -psychedelically -psychedelic/S -psyche/M -Psyche/M -psychiatric -psychiatrist/SM -psychiatry/MS -psychical/Y -psychic/MS -psychoacoustic/S -psychoacoustics/M -psychoactive -psychoanalysis/M -psychoanalyst/S -psychoanalytic -psychoanalytical -psychoanalyze/SDG -psychobabble/S -psychobiology/M -psychocultural -psychodrama/MS -psychogenic -psychokinesis/M -psycholinguistic/S -psycholinguistics/M -psycholinguists -psychological/Y -psychologist/MS -psychology/MS -psychometric/S -psychometrics/M -psychometry/M -psychoneuroses -psychoneurosis/M -psychopathic/S -psychopath/M -psychopathology/M -psychopaths -psychopathy/SM -psychophysical/Y -psychophysic/S -psychophysics/M -psychophysiology/M -psychosis/M -psycho/SM -psychosocial/Y -psychosomatic/S -psychosomatics/M -psychos/S -psychotherapeutic/S -psychotherapist/MS -psychotherapy/SM -psychotically -psychotic/S -psychotropic/S -psychs -psych/SDG -PT -PTA -Ptah/M -ptarmigan/MS -pt/C -pterodactyl/SM -Pt/M -PTO -Ptolemaic -Ptolemaists -Ptolemy/MS -ptomaine/MS -Pu -pubbed -pubbing -pubertal -puberty/MS -pubes -pubescence/S -pubescent -pubic -pubis/M -publican/AMS -publication/AMS -publicist/SM -publicity/SM -publicized/U -publicize/SDG -publicness/M -publics/A -public/YSP -publishable/U -published/UA -publisher/ASM -publishes/A -publishing/M -publish/JDRSBZG -pub/MS -Puccini/M -puce/SM -pucker/DG -Puckett/M -puck/GZSDRM -puckishness/S -puckish/YP -Puck/M -pudding/MS -puddle/JMGRSD -puddler/M -puddling/M -puddly -pudenda -pudendum/M -pudginess/SM -pudgy/PRT -Puebla/M -Pueblo/MS -pueblo/SM -puerile/Y -puerility/SM -puerperal -puers -Puerto/M -puffball/SM -puffer/M -puffery/M -puffiness/S -puffin/SM -Puff/M -puff/SGZDRM -puffy/PRT -Puget/M -pugged -pugging -Pugh/M -pugilism/SM -pugilistic -pugilist/S -pug/MS -pugnaciousness/MS -pugnacious/YP -pugnacity/SM -puissant/Y -puke/GDS -pukka -Pulaski/SM -pulchritude/SM -pulchritudinous/M -pule/GDS -Pulitzer/SM -pullback/S -pull/DRGZSJ -pullet/SM -pulley/SM -Pullman/MS -pullout/S -pullover/SM -pulmonary -pulpiness/S -pulpit/MS -pulp/MDRGS -pulpwood/MS -pulpy/PTR -pulsar/MS -pulsate/NGSDX -pulsation/M -pulse/ADSG -pulser -pulse's -pulverable -pulverization/MS -pulverized/U -pulverize/GZSRD -pulverizer/M -pulverizes/UA -puma/SM -pumice/SDMG -pummel/SDG -pumpernickel/SM -pump/GZSMDR -pumping/M -pumpkin/MS -punchbowl/M -punched/U -puncheon/MS -puncher/M -punch/GRSDJBZ -punchline/S -Punch/M -punchy/RT -punctilio/SM -punctiliousness/SM -punctilious/PY -punctualities -punctuality/UM -punctualness/M -punctual/PY -punctuate/SDXNG -punctuational -punctuation/M -puncture/SDMG -punditry/S -pundit/SM -pungency/MS -pungent/Y -Punic -puniness/MS -punished/U -punisher/M -punishment/MS -punish/RSDGBL -punitiveness/M -punitive/YP -Punjabi/M -Punjab/M -punk/TRMS -punky/PRS -pun/MS -punned -punning -punster/SM -punter/M -punt/GZMDRS -puny/PTR -pupae -pupal -pupa/M -pupate/NGSD -pupillage/M -pupil/SM -pup/MS -pupped -puppeteer/SM -puppetry/MS -puppet/SM -pupping -puppy/GSDM -puppyish -purblind -Purcell/M -purchasable -purchase/GASD -purchaser/MS -purdah/M -purdahs -Purdue/M -purebred/S -puree/DSM -pureeing -pureness/MS -pure/PYTGDR -purgation/M -purgative/MS -purgatorial -purgatory/SM -purge/GZDSR -purger/M -purify/GSRDNXZ -Purim/SM -Purina/M -purine/SM -purism/MS -puristic -purist/MS -puritanic -puritanical/Y -Puritanism/MS -puritanism/S -puritan/SM -Puritan/SM -purity/SM -purlieu/SM -purl/MDGS -purloin/DRGS -purloiner/M -purple/MTGRSD -purplish -purport/DRSZG -purported/Y -purposefulness/S -purposeful/YP -purposelessness/M -purposeless/PY -purpose/SDVGYM -purposiveness/M -purposive/YP -purr/DSG -purring/Y -purse/DSRGZM -purser/M -pursuance/MS -pursuant -pursuer/M -pursue/ZGRSD -pursuit/MS -purulence/MS -purulent -Purus -purveyance/MS -purvey/DGS -purveyor/MS -purview/SM -Pusan/M -Pusey/M -pushbutton/S -pushcart/SM -pushchair/SM -pushdown -push/DSRBGZ -pusher/M -pushily -pushiness/MS -Pushkin/M -pushover/SM -Pushtu/M -pushy/PRT -pusillanimity/MS -pusillanimous/Y -pus/SM -puss/S -pussycat/S -pussyfoot/DSG -pussy/TRSM -pustular -pustule/MS -putative/Y -Putin/M -put/IS -Putnam/M -Putnem/M -putout/S -putrefaction/SM -putrefactive -putrefy/DSG -putrescence/MS -putrescent -putridity/M -putridness/M -putrid/YP -putsch/S -putted/I -puttee/MS -putter/RDMGZ -putting/I -putt/SGZMDR -puttying/M -putty/SDMG -puzzle/JRSDZLG -puzzlement/MS -puzzler/M -PVC -pvt -Pvt/M -PW -PX -p/XTGJ -Pygmalion/M -pygmy/SM -Pygmy/SM -Pyhrric/M -pyknotic -Pyle/M -pylon/SM -pylori -pyloric -pylorus/M -Pym/M -Pynchon/M -Pyongyang/M -pyorrhea/SM -Pyotr/M -pyramidal/Y -pyramid/GMDS -pyre/MS -Pyrenees -Pyrex/SM -pyridine/M -pyrimidine/SM -pyrite/MS -pyroelectric -pyroelectricity/SM -pyrolysis/M -pyrolyze/RSM -pyromaniac/SM -pyromania/MS -pyrometer/MS -pyrometry/M -pyrophosphate/M -pyrotechnical -pyrotechnic/S -pyrotechnics/M -pyroxene/M -pyroxenite/M -Pyrrhic -Pythagoras/M -Pythagorean/S -Pythias -Python/M -python/MS -pyx/MDSG -q -Q -QA -Qaddafi/M -Qantas/M -Qatar/M -QB -QC -QED -Qingdao -Qiqihar/M -QM -Qom/M -qr -q's -Q's -qt -qty -qua -Quaalude/M -quackery/MS -quackish -quack/SDG -quadded -quadding -quadrangle/MS -quadrangular/M -quadrant/MS -quadraphonic/S -quadrapole -quadratical/Y -quadratic/SM -quadrature/MS -quadrennial/SY -quadrennium/MS -quadric -quadriceps/SM -quadrilateral/S -quadrille/XMGNSD -quadrillion/MH -quadripartite/NY -quadriplegia/SM -quadriplegic/SM -quadrivia -quadrivium/M -quadrupedal -quadruped/MS -quadruple/GSD -quadruplet/SM -quadruplicate/GDS -quadruply/NX -quadrupole -quad/SM -quadword/MS -quaffer/M -quaff/SRDG -quagmire/DSMG -quahog/MS -quail/GSDM -quaintness/MS -quaint/PTYR -quake/GZDSR -Quakeress/M -Quakerism/S -Quaker/SM -quaky/RT -qualification/ME -qualified/UY -qualifier/SM -qualify/EGXSDN -qualitative/Y -quality/MS -qualmish -qualm/SM -quandary/MS -quangos -quanta/M -Quantico/M -quantifiable/U -quantified/U -quantifier/M -quantify/GNSRDZX -quantile/S -quantitativeness/M -quantitative/PY -quantity/MS -quantization/MS -quantizer/M -quantize/ZGDRS -quantum/M -quarantine/DSGM -quark/SM -quarreler/M -quarrellings -quarrelsomeness/MS -quarrelsome/PY -quarrel/SZDRMG -quarrier/M -quarryman/M -quarrymen -quarry/RSDGM -quarterback/SGMD -quarterdeck/MS -quarterer/M -quarterfinal/MS -quartering/M -quarterly/S -quartermaster/MS -quarter/MDRYG -quarterstaff/M -quarterstaves -quartet/SM -quartic/S -quartile/SM -quarto/SM -quart/RMSZ -quartzite/M -quartz/SM -quasar/SM -quash/GSD -quasi -quasilinear -Quasimodo/M -Quaternary -quaternary/S -quaternion/SM -quatrain/SM -quaver/GDS -quavering/Y -quavery -Quayle/M -quayside/M -quay/SM -queasily -queasiness/SM -queasy/TRP -Quebec/M -Quechua/M -Queenie/M -queenly/RT -queen/SGMDY -Queensland/M -Queen/SM -queerness/S -queer/STGRDYP -queller/M -quell/SRDG -Que/M -quenchable/U -quenched/U -quencher/M -quench/GZRSDB -quenchless -Quentin/M -Quent/M -Querida/M -quern/M -querulousness/S -querulous/YP -query/MGRSD -quested/A -quester/AS -quester's -quest/FSIM -questing -questionableness/M -questionable/P -questionably/U -questioned/UA -questioner/M -questioning/UY -questionnaire/MS -question/SMRDGBZJ -quests/A -Quetzalcoatl/M -queued/C -queue/GZMDSR -queuer/M -queues/C -queuing/C -Quezon/M -quibble/GZRSD -quibbler/M -quiche/SM -quicken/RDG -quickie/MS -quicklime/SM -quickness/MS -quick/RNYTXPS -quicksand/MS -quicksilver/GDMS -quickstep/SM -quid/SM -quiesce/D -quiescence/MS -quiescent/YP -quieted/E -quieten/SGD -quieter/E -quieter's -quieting/E -quietly/E -quietness/MS -quiets/E -quietude/IEMS -quietus/MS -quiet/UTGPSDRY -Quillan/M -quill/GSDM -Quill/M -quilter/M -quilting/M -quilt/SZJGRDM -quincentenary/M -quince/SM -Quincey/M -quincy/M -Quincy/M -quinine/MS -Quinlan/M -Quinn/M -quinquennial/Y -quinsy/SM -Quinta/M -Quintana/M -quintessence/SM -quintessential/Y -quintet/SM -quintic -quintile/SM -Quintilian/M -Quintilla/M -quintillion/MH -quintillionth/M -Quintina/M -Quintin/M -Quint/M -quint/MS -Quinton/M -quintuple/SDG -quintuplet/MS -Quintus/M -quip/MS -quipped -quipper -quipping -quipster/SM -quired/AI -quire/MDSG -quires/AI -Quirinal/M -quiring/IA -quirkiness/SM -quirk/SGMD -quirky/PTR -quirt/SDMG -Quisling/M -quisling/SM -quitclaim/GDMS -quit/DGS -quite/SADG -Quito/M -quittance/SM -quitter/SM -quitting -quiver/GDS -quivering/Y -quivery -Quixote/M -quixotic -quixotically -Quixotism/M -quiz/M -quizzed -quizzer/SM -quizzes -quizzical/Y -quizzing -quo/H -quoin/SGMD -quoit/GSDM -quondam -quonset -Quonset -quorate/I -quorum/MS -quotability/S -quota/MS -quotation/SM -quoter/M -quote/UGSD -quot/GDRB -quotidian/S -quotient/SM -qwerty -qwertys -Rabat/M -rabbet/GSMD -Rabbi/M -rabbi/MS -rabbinate/MS -rabbinic -rabbinical/Y -rabbiter/M -rabbit/MRDSG -rabble/GMRSD -rabbler/M -Rabelaisian -Rabelais/M -rabidness/SM -rabid/YP -rabies -Rabi/M -Rabin/M -rabis -Rab/M -raccoon/SM -racecourse/MS -racegoers -racehorse/SM -raceme/MS -race/MZGDRSJ -racer/M -racetrack/SMR -raceway/SM -Rachael/M -Rachele/M -Rachelle/M -Rachel/M -Rachmaninoff/M -racialism/MS -racialist/MS -racial/Y -racily -Racine/M -raciness/MS -racism/S -racist/MS -racketeer/MDSJG -racket/SMDG -rackety -rack/GDRMS -raconteur/SM -racoon's -racquetball/S -racquet's -racy/RTP -radarscope/MS -radar/SM -Radcliffe/M -radded -radder -raddest -Raddie/M -radding -Raddy/M -radial/SY -radiance/SM -radian/SM -radiant/YS -radiate/XSDYVNG -radiation/M -radiative/Y -radiator/MS -radicalism/MS -radicalization/S -radicalize/GSD -radicalness/M -radical/SPY -radices's -radii/M -radioactive/Y -radioactivity/MS -radioastronomical -radioastronomy -radiocarbon/MS -radiochemical/Y -radiochemistry/M -radiogalaxy/S -radiogram/SM -radiographer/MS -radiographic -radiography/MS -radioisotope/SM -radiologic -radiological/Y -radiologist/MS -radiology/MS -radioman/M -radiomen -radiometer/SM -radiometric -radiometry/MS -radionics -radionuclide/M -radiopasteurization -radiophone/MS -radiophysics -radioscopy/SM -radio/SMDG -radiosonde/SM -radiosterilization -radiosterilized -radiotelegraph -radiotelegraphs -radiotelegraphy/MS -radiotelephone/SM -radiotherapist/SM -radiotherapy/SM -radish/MS -radium/MS -radius/M -radix/SM -Rad/M -radon/SM -rad/S -Raeann/M -Rae/M -RAF -Rafaela/M -Rafaelia/M -Rafaelita/M -Rafaellle/M -Rafaello/M -Rafael/M -Rafa/M -Rafe/M -Raffaello/M -Raffarty/M -Rafferty/M -raffia/SM -raffishness/SM -raffish/PY -raffle/MSDG -Raff/M -Rafi/M -Raf/M -rafter/DM -raft/GZSMDR -raga/MS -ragamuffin/MS -ragbag/SM -rage/MS -raggedness/SM -ragged/PRYT -raggedy/TR -ragging -rag/GSMD -raging/Y -raglan/MS -Ragnar/M -Ragnark -ragout/SMDG -ragtag/MS -ragtime/MS -ragweed/MS -ragwort/M -Rahal/M -rah/DG -Rahel/M -rahs -raider/M -raid/MDRSGZ -railbird/S -rail/CDGS -railer/SM -railhead/SM -railing/MS -raillery/MS -railroader/M -railroading/M -railroad/SZRDMGJ -rail's -railwaymen -railway/MS -raiment/SM -Raimondo/M -Raimund/M -Raimundo/M -Raina/M -rainbow/MS -raincloud/S -raincoat/SM -raindrop/SM -Raine/MR -Rainer/M -rainfall/SM -rainforest's -rain/GSDM -Rainier/M -rainless -rainmaker/SM -rainmaking/MS -rainproof/GSD -rainstorm/SM -rainwater/MS -rainy/RT -raise/DSRGZ -raiser/M -raising/M -raisin/MS -rajah/M -rajahs -Rajive/M -raj/M -Rakel/M -rake/MGDRS -raker/M -rakishness/MS -rakish/PY -Raleigh/M -Ralf/M -Ralina/M -rally/GSD -Ralph/M -Ralston/M -Ra/M -Ramada/M -Ramadan/SM -Ramakrishna/M -Rama/M -Raman/M -Ramayana/M -ramble/JRSDGZ -rambler/M -rambling/Y -Rambo/M -rambunctiousness/S -rambunctious/PY -ramekin/SM -ramie/MS -ramification/M -ramify/XNGSD -Ramirez/M -Ramiro/M -ramjet/SM -Ram/M -rammed -ramming -Ramo/MS -Ramona/M -Ramonda/M -Ramon/M -rampage/SDG -rampancy/S -rampant/Y -rampart/SGMD -ramp/GMDS -ramrodded -ramrodding -ramrod/MS -RAM/S -Ramsay/M -Ramses/M -Ramsey/M -ramshackle -ram/SM -rams/S -ran/A -Rana/M -Rancell/M -Rance/M -rancher/M -rancho/SM -ranch/ZRSDMJG -rancidity/MS -rancidness/SM -rancid/P -rancorous/Y -rancor/SM -Randall/M -Randal/M -Randa/M -Randee/M -Randell/M -Randene/M -Randie/M -Randi/M -randiness/S -Rand/M -rand/MDGS -Randolf/M -Randolph/M -randomization/SM -randomize/SRDG -randomness/SM -random/PYS -Randy/M -randy/PRST -Ranee/M -ranee/SM -ranged/C -rangeland/S -ranger/M -ranges/C -range/SM -rang/GZDR -ranginess/S -ranging/C -Rangoon/M -rangy/RPT -Rania/M -Ranice/M -Ranier/M -Rani/MR -Ranique/M -rani's -ranked/U -ranker/M -rank/GZTYDRMPJS -Rankine/M -ranking/M -Rankin/M -rankle/SDG -rankness/MS -Ranna/M -ransacker/M -ransack/GRDS -Ransell/M -ransomer/M -Ransom/M -ransom/ZGMRDS -ranter/M -rant/GZDRJS -ranting/Y -Raoul/M -rapaciousness/MS -rapacious/YP -rapacity/MS -rapeseed/M -rape/SM -Raphaela/M -Raphael/M -rapidity/MS -rapidness/S -rapid/YRPST -rapier/SM -rapine/SM -rapist/MS -rap/MDRSZG -rapped -rappelled -rappelling -rappel/S -rapper/SM -rapping/M -rapporteur/SM -rapport/SM -rapprochement/SM -rapscallion/MS -raptness/S -rapture/MGSD -rapturousness/M -rapturous/YP -rapt/YP -Rapunzel/M -Raquela/M -Raquel/M -rarebit/MS -rarefaction/MS -rarefy/GSD -rareness/MS -rare/YTPGDRS -rarity/SM -Rasalgethi/M -Rasalhague/M -rascal/SMY -rasher/M -rashness/S -rash/PZTYSR -Rasia/M -Rasla/M -Rasmussen/M -raspberry/SM -rasper/M -rasping/Y -rasp/SGJMDR -Rasputin/M -raspy/RT -Rastaban/M -Rastafarian/M -raster/MS -Rastus/M -ratchet/MDSG -rateable -rated/U -rate/KNGSD -ratepayer/SM -rater/M -rate's -Ratfor/M -rather -Rather/M -rathskeller/SM -ratifier/M -ratify/ZSRDGXN -rating/M -ratiocinate/VNGSDX -ratiocination/M -ratio/MS -rationale/SM -rationalism/SM -rationalistic -rationalist/S -rationality/MS -rationalization/SM -rationalizer/M -rationalize/ZGSRD -rationalness/M -rational/YPS -ration/DSMG -Ratliff/M -ratlike -ratline/SM -rat/MDRSJZGB -rattail -rattan/MS -ratted -ratter/MS -ratting -rattlebrain/DMS -rattle/RSDJGZ -rattlesnake/MS -rattletrap/MS -rattling/Y -rattly/TR -rattrap/SM -ratty/RT -raucousness/SM -raucous/YP -Raul/M -raunchily -raunchiness/S -raunchy/RTP -ravage/GZRSD -ravager/M -raveling/S -Ravel/M -ravel/UGDS -raven/JGMRDS -Raven/M -ravenous/YP -raver/M -rave/ZGDRSJ -Ravid/M -Ravi/M -ravine/SDGM -ravioli/SM -ravisher/M -ravishing/Y -ravish/LSRDZG -ravishment/SM -Raviv/M -Rawalpindi/M -rawboned -rawhide/SDMG -Rawley/M -Rawlings/M -Rawlins/M -Rawlinson/M -rawness/SM -raw/PSRYT -Rawson/M -Rayburn/M -Raychel/M -Raye/M -ray/GSMD -Rayleigh/M -Ray/M -Raymond/M -Raymondville/M -Raymund/M -Raymundo/M -Rayna/M -Raynard/M -Raynell/M -Rayner/M -Raynor/M -rayon/SM -Rayshell/M -Raytheon/M -raze/DRSG -razer/M -razorback/SM -razorblades -razor/MDGS -razz/GDS -razzmatazz/S -Rb -RBI/S -RC -RCA -rcpt -RCS -rd -RD -RDA -Rd/M -reabbreviate -reachability -reachable/U -reachably -reached/U -reacher/M -reach/GRB -reacquisition -reactant/SM -reacted/U -reaction -reactionary/SM -reactivity -readability/MS -readable/P -readably -readdress/G -Reade/M -reader/M -readership/MS -Read/GM -readied -readies -readily -readinesses -readiness/UM -reading/M -Reading/M -read/JGZBR -readopt/G -readout/MS -reads/A -readying -ready/TUPR -Reagan/M -Reagen/M -realisms -realism's -realism/U -realistically/U -realistic/U -realist/SM -reality/USM -realizability/MS -realizableness/M -realizable/SMP -realizably/S -realization/MS -realized/U -realize/JRSDBZG -realizer/M -realizes/U -realizing/MY -realm/M -realness/S -realpolitik/SM -real/RSTP -realtor's -Realtor/S -realty/SM -Rea/M -reamer/M -ream/MDRGZ -Reamonn/M -reanimate -reaper/M -reappraise/G -reap/SGZ -rear/DRMSG -rearguard/MS -rearmost -rearrange/L -rearward/S -reasonableness/SMU -reasonable/UP -reasonably/U -Reasoner/M -reasoner/SM -reasoning/MS -reasonless -reasons -reason/UBDMG -reassess/GL -reassuringly/U -reattach/GSL -reawakening/M -Reba/M -rebate/M -Rebbecca/M -Rebeca/M -Rebecca's -Rebecka/M -Rebekah/M -Rebeka/M -Rebekkah/M -rebeller -rebellion/SM -rebelliousness/MS -rebellious/YP -rebel/MS -Rebe/M -rebid -rebidding -rebind/G -rebirth -reboil/G -rebook -reboot/ZR -rebound/G -rebroadcast/MG -rebuke/RSDG -rebuking/Y -rebus -rebuttal/SM -rebutting -rec -recalcitrance/SM -recalcitrant/S -recalibrate/N -recantation/S -recant/G -recap -recappable -recapping -recast/G -recd -rec'd -recede -receipt/SGDM -receivable/S -received/U -receiver/M -receivership/SM -receive/ZGRSDB -recency/M -recension/M -recentness/SM -recent/YPT -receptacle/SM -receptionist/MS -reception/MS -receptiveness/S -receptive/YP -receptivity/S -receptor/MS -recessional/S -recessionary -recessiveness/M -recessive/YPS -recess/SDMVG -rechargeable -recheck/G -recherch -recherches -recidivism/MS -recidivist/MS -Recife/M -recipe/MS -recipiency -recipient/MS -reciprocal/SY -reciprocate/NGXVDS -reciprocation/M -reciprocity/MS -recitalist/S -recital/MS -recitative/MS -reciter/M -recite/ZR -recked -recking -recklessness/S -reckless/PY -reckoner/M -reckoning/M -reckon/SGRDJ -reclaim/B -reclamation/SM -recliner/M -recline/RSDZG -recluse/MVNS -reclusion/M -recode/G -recognizability -recognizable/U -recognizably -recognize/BZGSRD -recognizedly/S -recognized/U -recognizer/M -recognizingly/S -recognizing/UY -recoilless -recoinage -recolor/GD -recombinant -recombine -recommended/U -recompense/GDS -recompute/B -reconciled/U -reconciler/M -reconcile/SRDGB -reconditeness/M -recondite/YP -reconfigurability -reconfigure/R -reconnaissance/MS -reconnect/R -reconnoiter/GSD -reconquer/G -reconsecrate -reconstitute -reconstructed/U -Reconstruction/M -reconsult/G -recontact/G -recontaminate/N -recontribute -recook/G -recopy/G -recorded/AU -records/A -record/ZGJ -recourse -recoverability -recoverable/U -recover/B -recovery/MS -recreant/S -recreational -recriminate/GNVXDS -recrimination/M -recriminatory -recross/G -recrudesce/GDS -recrudescence/MS -recrudescent -recruiter/M -recruitment/MS -recruit/ZSGDRML -recrystallize -rectal/Y -rectangle/SM -rectangular/Y -recta's -rectifiable -rectification/M -rectifier/M -rectify/DRSGXZN -rectilinear/Y -rectitude/MS -recto/MS -rector/SM -rectory/MS -rectum/SM -recumbent/Y -recuperate/VGNSDX -recuperation/M -recur -recurrence/MS -recurrent -recurse/NX -recursion/M -recusant/M -recuse -recyclable/S -recycle/BZ -redact/DGS -redaction/SM -redactor/MS -redbird/SM -redbreast/SM -redbrick/M -redbud/M -redcap/MS -redcoat/SM -redcurrant/M -redden/DGS -redder -reddest -redding -reddish/P -Redd/M -redeclaration -redecorate -redeemable/U -redeem/BRZ -redeemed/U -redeemer/M -Redeemer/M -redemptioner/M -redemption/RMS -redemptive -redeposit/M -redetermination -Redford/M -Redgrave/M -redhead/DRMS -Redhook/M -redial/G -redirect/G -redirection -redlining/S -Redmond/M -redneck/SMD -redness/MS -redo/G -redolence/MS -redolent -Redondo/M -redouble/S -redoubtably -redound/GDS -red/PYS -redshift/S -redskin/SM -Redstone/M -reduced/U -reducer/M -reduce/RSDGZ -reducibility/M -reducible -reducibly -reductionism/M -reductionist/S -reduction/SM -reduct/V -redundancy/SM -redundant/Y -redwood/SM -redye -redyeing -Reeba/M -Reebok/M -Reece/M -reecho/G -reed/GMDR -reediness/SM -reeding/M -Reed/M -Reedville/M -reedy/PTR -reefer/M -reef/GZSDRM -reeker/M -reek/GSR -reeler/M -reel's -reel/USDG -Ree/MDS -Reena/M -reenforcement -reentrant -Reese/M -reestimate/M -Reeta/M -Reeva/M -reeve/G -Reeves -reexamine -refection/SM -refectory/SM -refer/B -refereed/U -refereeing -referee/MSD -reference/CGSRD -referenced/U -reference's -referencing/U -referendum/MS -referentiality -referential/YM -referent/SM -referral/SM -referred -referrer/S -referring -reffed -reffing -refile -refinance -refined/U -refine/LZ -refinement/MS -refinish/G -refit -reflectance/M -reflected/U -reflectional -reflection/SM -reflectiveness/M -reflective/YP -reflectivity/M -reflector/MS -reflect/SDGV -reflexion/MS -reflexiveness/M -reflexive/PSY -reflexivity/M -reflex/YV -reflooring -refluent -reflux/G -refocus/G -refold/G -reforestation -reforge/G -reformatory/SM -reform/B -reformed/U -reformer/M -reformism/M -reformist/S -refract/DGVS -refractiveness/M -refractive/PY -refractometer/MS -refractoriness/M -refractory/PS -refrain/DGS -refreshed/U -refreshing/Y -refresh/LB -refreshment/MS -refrigerant/MS -refrigerated/U -refrigerate/XDSGN -refrigeration/M -refrigerator/MS -refrozen -refry/GS -refugee/MS -refuge/SDGM -Refugio/M -refulgence/SM -refulgent -refund/B -refunder/M -refurbish/L -refurbishment/S -refusal/SM -refuse/R -refuser/M -refutation/MS -refute/GZRSDB -refuter/M -ref/ZS -reg -regale/L -regalement/S -regal/GYRD -regalia/M -Regan/M -regard/EGDS -regardless/PY -regather/G -regatta/MS -regency/MS -regeneracy/MS -regenerately -regenerateness/M -regenerate/U -Regen/M -reggae/SM -Reggie/M -Reggi/MS -Reggy/M -regicide/SM -regime/MS -regimen/MS -regimental/S -regimentation/MS -regiment/SDMG -Reginae -Reginald/M -Regina/M -Reginauld/M -Regine/M -regionalism/MS -regional/SY -region/SM -Regis/M -register's -register/UDSG -registrable -registrant/SM -registrar/SM -registration/AM -registrations -registry/MS -Reg/MN -regnant -Regor/M -regress/DSGV -regression/MS -regressiveness/M -regressive/PY -regressors -regretfulness/M -regretful/PY -regret/S -regrettable -regrettably -regretted -regretting -reground -regroup/G -regrow/G -regularity/MS -regularization/MS -regularize/SDG -regular/YS -regulate/CSDXNG -regulated/U -regulation/M -regulative -regulator/SM -regulatory -Regulus/M -regurgitate/XGNSD -regurgitation/M -rehabbed -rehabbing -rehabilitate/SDXVGN -rehabilitation/M -rehab/S -rehang/G -rehear/GJ -rehearsal/SM -rehearse -rehearsed/U -rehearser/M -rehears/R -reheat/G -reheating/M -Rehnquist -rehydrate -Reichenberg/M -Reich/M -Reichstags -Reichstag's -Reidar/M -Reider/M -Reid/MR -reign/MDSG -Reiko/M -Reilly/M -reimburse/GSDBL -reimbursement/MS -Reinald/M -Reinaldo/MS -Reina/M -reindeer/M -Reine/M -reinforced/U -reinforce/GSRDL -reinforcement/MS -reinforcer/M -rein/GDM -Reinhard/M -Reinhardt/M -Reinhold/M -Reinold/M -reinstate/L -reinstatement/MS -reinsurance -Reinwald/M -reissue -REIT -reiterative/SP -rejecter/M -rejecting/Y -rejection/SM -rejector/MS -reject/RDVGS -rejigger -rejoice/RSDJG -rejoicing/Y -rejoinder/SM -rejuvenate/NGSDX -rejuvenatory -relapse -relatedly -relatedness/MS -related/U -relater/M -relate/XVNGSZ -relational/Y -relation/M -relationship/MS -relativeness/M -relative/SPY -relativism/M -relativistic -relativistically -relativist/MS -relativity/MS -relator's -relaxant/SM -relaxation/MS -relaxedness/M -relaxed/YP -relax/GZD -relaxing/Y -relay/GDM -relearn/G -releasable/U -release/B -released/U -relenting/U -relentlessness/SM -relentless/PY -relent/SDG -relevance/SM -relevancy/MS -relevant/Y -reliability/UMS -reliables -reliable/U -reliably/U -reliance/MS -reliant/Y -relicense/R -relic/MS -relict/C -relict's -relief/M -relievedly -relieved/U -reliever/M -relieve/RSDZG -religionists -religion/SM -religiosity/M -religiousness/MS -religious/PY -relink/G -relinquish/GSDL -relinquishment/SM -reliquary/MS -relish/GSD -relive/GB -reload/GR -relocate/B -reluctance/MS -reluctant/Y -rel/V -rely/DG -rem -Re/M -remade/S -remainder/SGMD -remain/GD -remake/M -remand/DGS -remap -remapping -remarkableness/S -remarkable/U -remarkably -remark/BG -remarked/U -Remarque/M -rematch/G -Rembrandt/M -remeasure/D -remediableness/M -remediable/P -remedy/SDMG -remembered/U -rememberer/M -remember/GR -remembrance/MRS -remembrancer/M -Remington/M -reminisce/GSD -reminiscence/SM -reminiscent/Y -remissness/MS -remiss/YP -remit/S -remittance/MS -remitted -remitting/U -Rem/M -remnant/MS -remodel/G -remolding -remonstrant/MS -remonstrate/SDXVNG -remonstration/M -remonstrative/Y -remorsefulness/M -remorseful/PY -remorselessness/MS -remorseless/YP -remorse/SM -remoteness/MS -remote/RPTY -remoulds -removal/MS -REM/S -remunerated/U -remunerate/VNGXSD -remuneration/M -remunerativeness/M -remunerative/YP -Remus/M -Remy/M -Renado/M -Renae/M -renaissance/S -Renaissance/SM -renal -Renaldo/M -Rena/M -Renard/M -Renascence/SM -Renata/M -Renate/M -Renato/M -renaturation -Renaud/M -Renault/MS -rend -renderer/M -render/GJRD -rendering/M -rendezvous/DSMG -rendition/GSDM -rend/RGZS -Renee/M -renegade/SDMG -renege/GZRSD -reneger/M -Renelle/M -Renell/M -Rene/M -renewal/MS -renew/BG -renewer/M -Renie/M -rennet/MS -Rennie/M -rennin/SM -Renoir/M -Reno/M -renounce/LGRSD -renouncement/MS -renouncer/M -renovate/NGXSD -renovation/M -renovator/SM -renown/SGDM -Rensselaer/M -rentaller -rental/SM -renter/M -rent/GZMDRS -renumber/G -renumeration -renunciate/VNX -renunciation/M -Renville/M -reoccupy/G -reopen/G -reorganized/U -repack/G -repairable/U -repair/BZGR -repairer/M -repairman/M -repairmen -repairs/E -repaper -reparable -reparation/SM -reparteeing -repartee/MDS -repartition/Z -repast/G -repatriate/SDXNG -repave -repealer/M -repeal/GR -repeatability/M -repeatable/U -repeatably -repeated/Y -repeater/M -repeat/RDJBZG -repelled -repellent/SY -repelling/Y -repel/S -repentance/SM -repentant/SY -repent/RDG -repertoire/SM -repertory/SM -repetition -repetitiousness/S -repetitious/YP -repetitiveness/MS -repetitive/PY -repine/R -repiner/M -replace/RL -replay/GM -replenish/LRSDG -replenishment/S -repleteness/MS -replete/SDPXGN -repletion/M -replica/SM -replicate/SDVG -replicator/S -replug -reply/X -Rep/M -repopulate -reported/Y -reportorial/Y -reposeful -repose/M -repository/MS -reprehend/GDS -reprehensibility/MS -reprehensibleness/M -reprehensible/P -reprehensibly -reprehension/MS -representable/U -representational/Y -representativeness/M -Representative/S -representative/SYMP -representativity -represented/U -represent/GB -repression/SM -repressiveness/M -repressive/YP -repress/V -reprieve/GDS -reprimand/SGMD -reprint/M -reprisal/MS -reproacher/M -reproachfulness/M -reproachful/YP -reproach/GRSDB -reproaching/Y -reprobate/N -reprocess/G -reproducibility/MS -reproducible/S -reproducibly -reproductive/S -reproof/G -reprove/R -reproving/Y -rep/S -reptile/SM -reptilian/S -Republicanism/S -republicanism/SM -Republican/S -republic/M -republish/G -repudiate/XGNSD -repudiation/M -repudiator/S -repugnance/MS -repugnant/Y -repulse/VNX -repulsion/M -repulsiveness/MS -repulsive/PY -reputability/SM -reputably/E -reputation/SM -reputed/Y -repute/ESB -reputing -requested/U -request/G -Requiem/MS -requiem/SM -require/LR -requirement/MS -requisiteness/M -requisite/PNXS -requisitioner/M -requisition/GDRM -requital/MS -requited/U -requiter/M -requite/RZ -reread/G -rerecord/G -rerouteing -rerunning -res/C -rescale -rescind/SDRG -rescission/SM -rescue/GZRSD -reseal/BG -research/MB -reselect/G -resemblant -resemble/DSG -resend/G -resent/DSLG -resentfulness/SM -resentful/PY -resentment/MS -reserpine/MS -reservation/MS -reservednesses -reservedness/UM -reserved/UYP -reservist/SM -reservoir/MS -reset/RDG -resettle/L -reshipping -reshow/G -reshuffle/M -reside/G -residence/MS -residency/SM -residential/Y -resident/SM -resider/M -residua -residual/YS -residuary -residue/SM -residuum/M -resignation/MS -resigned/YP -resilience/MS -resiliency/S -resilient/Y -resin/D -resinlike -resinous -resiny -resistance/SM -Resistance/SM -resistantly -resistants -resistant/U -resisted/U -resistible -resistibly -resisting/U -resistiveness/M -resistive/PY -resistivity/M -resistless -resistor/MS -resist/RDZVGS -resize/G -resold -resole/G -resoluble -resoluteness/MS -resolute/PYTRV -resolvability/M -resolvable/U -resolved/U -resolvent -resonance/SM -resonant/YS -resonate/DSG -resonator/MS -resorption/MS -resort/R -resound/G -resourcefulness/SM -resourceful/PY -resp -respectability/SM -respectable/SP -respectably -respect/BSDRMZGV -respected/E -respectful/EY -respectfulness/SM -respecting/E -respectiveness/M -respective/PY -respect's/E -respects/E -respell/G -respiration/MS -respirator/SM -respiratory/M -resplendence/MS -resplendent/Y -respondent/MS -respond/SDRZG -responser/M -response/RSXMV -responsibility/MS -responsibleness/M -responsible/P -responsibly -responsiveness/MSU -responsive/YPU -respray/G -restart/B -restate/L -restaurant/SM -restaurateur/SM -rest/DRSGVM -rested/U -rester/M -restfuller -restfullest -restfulness/MS -restful/YP -restitution/SM -restiveness/SM -restive/PY -restlessness/MS -restless/YP -restorability -Restoration/M -restoration/MS -restorative/PYS -restorer/M -restore/Z -restrained/UY -restraint/MS -restrict/DVGS -restricted/YU -restriction/SM -restrictively -restrictiveness/MS -restrictives -restrictive/U -restroom/SM -restructurability -restructure -rest's/U -rests/U -restudy/M -restyle -resubstitute -resultant/YS -result/SGMD -resume/SDBG -resumption/MS -resurface -resurgence/MS -resurgent -resurrect/GSD -resurrection/SM -resurvey/G -resuscitate/XSDVNG -resuscitation/M -resuscitator/MS -retail/Z -retainer/M -retain/LZGSRD -retake -retaliate/VNGXSD -retaliation/M -retaliatory -Reta/M -retardant/SM -retardation/SM -retarder/M -retard/ZGRDS -retch/SDG -retention/SM -retentiveness/S -retentive/YP -retentivity/M -retest/G -Retha/M -rethought -reticence/S -reticent/Y -reticle/SM -reticular -reticulate/GNYXSD -reticulation/M -reticule/MS -reticulum/M -retinal/S -retina/SM -retinue/MS -retiredness/M -retiree/MS -retire/L -retirement/SM -retiring/YP -retort/GD -retract/DG -retractile -retrench/L -retrenchment/MS -retributed -retribution/MS -retributive -retrieval/SM -retriever/M -retrieve/ZGDRSB -retroactive/Y -retrofire/GMSD -retrofit/S -retrofitted -retrofitting -retroflection -retroflex/D -retroflexion/M -retrogradations -retrograde/GYDS -retrogression/MS -retrogressive/Y -retrogress/SDVG -retrorocket/MS -retro/SM -retrospection/MS -retrospective/SY -retrospect/SVGMD -retrovirus/S -retrovision -retry/G -retsina/SM -returnable/S -returned/U -returnee/SM -retype -Reube/M -Reuben/M -Reub/NM -Reunion/M -reuse/B -Reuters -Reuther/M -reutilization -Reuven/M -Reva/M -revanchist -revealed/U -revealingly -revealing/U -reveal/JBG -reveille/MS -revelation/MS -Revelation/MS -revelatory -revelry/MS -revel/SJRDGZ -revenge/MGSRD -revenger/M -revenuer/M -revenue/ZR -reverberant -reverberate/XVNGSD -reverberation/M -revere/GSD -Revere/M -reverencer/M -reverence/SRDGM -Reverend -reverend/SM -reverential/Y -reverent/Y -reverie/SM -reversal/MS -reverser/M -reverse/Y -reversibility/M -reversible/S -reversibly -reversioner/M -reversion/R -revers/M -reverter/M -revertible -revert/RDVGS -revet/L -revetment/SM -review/G -revile/GZSDL -revilement/MS -reviler/M -revise/BRZ -revised/U -revisionary -revisionism/SM -revisionist/SM -revitalize/ZR -revivalism/MS -revivalist/MS -revival/SM -reviver/M -revive/RSDG -revivification/M -revivify/X -Revkah/M -Revlon/M -Rev/M -revocable -revoke/GZRSD -revolter/M -revolt/GRD -revolting/Y -revolutionariness/M -revolutionary/MSP -revolutionist/MS -revolutionize/GDSRZ -revolutionizer/M -revolution/SM -revolve/BSRDZJG -revolver/M -revue/MS -revulsion/MS -revved -revving -rev/ZM -rewarded/U -rewarding/Y -rewarm/G -reweave -rewedding -reweigh/G -rewind/BGR -rewire/G -rework/G -rexes -Rex/M -Reyes -Reykjavik/M -re/YM -Rey/M -Reynaldo/M -Reyna/M -Reynard/M -Reynold/SM -rezone -Rf -RF -RFC -RFD -R/G -rhapsodic -rhapsodical -rhapsodize/GSD -rhapsody/SM -Rhea/M -rhea/SM -Rheba/M -Rhee/M -Rheims/M -Rheinholdt/M -Rhenish -rhenium/MS -rheology/M -rheostat/MS -rhesus/S -Rheta/M -rhetorical/YP -rhetorician/MS -rhetoric/MS -Rhetta/M -Rhett/M -rheumatically -rheumatic/S -rheumatics/M -rheumatism/SM -rheumatoid -rheum/MS -rheumy/RT -Rhiamon/M -Rhianna/M -Rhiannon/M -Rhianon/M -Rhinelander/M -Rhineland/RM -Rhine/M -rhinestone/SM -rhinitides -rhinitis/M -rhinoceros/MS -rhino/MS -rhinotracheitis -rhizome/MS -Rh/M -Rhoda/M -Rhodes -Rhodesia/M -Rhodesian/S -Rhodia/M -Rhodie/M -rhodium/MS -rhododendron/SM -rhodolite/M -rhodonite/M -Rhody/M -rhombic -rhomboidal -rhomboid/SM -rhombus/SM -rho/MS -Rhona/M -Rhonda/M -Rhone -rhubarb/MS -rhyme/DSRGZM -rhymester/MS -Rhys/M -rhythmical/Y -rhythmic/S -rhythmics/M -rhythm/MS -RI -rial/MS -Riane/M -Riannon/M -Rianon/M -ribaldry/MS -ribald/S -ribbed -Ribbentrop/M -ribber/S -ribbing/M -ribbon/DMSG -ribcage -rib/MS -riboflavin/MS -ribonucleic -ribosomal -ribosome/MS -Rica/M -Rican/SM -Ricard/M -Ricardo/M -Ricca/M -Riccardo/M -rice/DRSMZG -Rice/M -ricer/M -Richard/MS -Richardo/M -Richardson/M -Richart/M -Richelieu/M -richen/DG -Richey/M -Richfield/M -Richie/M -Richland/M -Rich/M -Richmond/M -Richmound/M -richness/MS -Richter/M -Richthofen/M -Richy/M -rich/YNSRPT -Rici/M -Rickard/M -Rickenbacker/M -Rickenbaugh/M -Rickert/M -rickets/M -rickety/RT -Rickey/M -rick/GSDM -Rickie/M -Ricki/M -Rick/M -Rickover/M -rickrack/MS -rickshaw/SM -Ricky/M -Ric/M -ricochet/GSD -Rico/M -Ricoriki/M -ricotta/MS -riddance/SM -ridden -ridding -riddle/GMRSD -Riddle/M -ride/CZSGR -Ride/M -rider/CM -riderless -ridership/S -ridge/DSGM -Ridgefield/M -ridgepole/SM -Ridgway/M -ridgy/RT -ridicule/MGDRS -ridiculer/M -ridiculousness/MS -ridiculous/PY -riding/M -rid/ZGRJSB -Riemann/M -Riesling/SM -rife/RT -riff/GSDM -riffle/SDG -riffraff/SM -rifled/U -rifle/GZMDSR -rifleman/M -riflemen -rifler/M -rifling/M -rift/GSMD -Riga/M -rigamarole's -rigatoni/M -Rigel/M -rigged -rigger/SM -rigging/MS -Riggs/M -righteousnesses/U -righteousness/MS -righteous/PYU -rightfulness/MS -rightful/PY -rightism/SM -rightist/S -rightmost -rightness/MS -Right/S -right/SGTPYRDN -rightsize/SDG -rights/M -rightward/S -rigidify/S -rigidity/S -rigidness/S -rigid/YP -rigmarole/MS -rig/MS -Rigoberto/M -Rigoletto/M -rigor/MS -rigorousness/S -rigorous/YP -Riki/M -Rikki/M -Rik/M -rile/DSG -Riley/M -Rilke/M -rill/GSMD -Rimbaud/M -rime/MS -rimer/M -rim/GSMDR -rimless -rimmed -rimming -Rinaldo/M -Rina/M -rind/MDGS -Rinehart/M -ringer/M -ring/GZJDRM -ringing/Y -ringleader/MS -ringlet/SM -ringlike -Ringling/M -Ring/M -ringmaster/MS -Ringo/M -ringside/ZMRS -ringworm/SM -rink/GDRMS -rinse/DSRG -Riobard/M -Rio/MS -Riordan/M -rioter/M -riotousness/M -riotous/PY -riot/SMDRGZJ -RIP -riparian/S -ripcord/SM -ripened/U -ripenesses -ripeness/UM -ripen/RDG -ripe/PSY -riper/U -ripest/U -Ripley/M -Rip/M -rip/NDRSXTG -ripoff/S -riposte/SDMG -ripped -ripper/SM -ripping -rippler/M -ripple/RSDGM -ripply/TR -ripsaw/GDMS -riptide/SM -Risa/M -RISC -risen -riser/M -rise/RSJZG -risibility/SM -risible/S -rising/M -risker/M -risk/GSDRM -riskily -riskiness/MS -risky/RTP -risotto/SM -risqu -rissole/M -Ritalin -Rita/M -Ritchie/M -rite/DSM -Ritter/M -ritualism/SM -ritualistic -ritualistically -ritualized -ritual/MSY -Ritz/M -ritzy/TR -rivaled/U -Rivalee/M -rivalry/MS -rival/SGDM -Riva/MS -rive/CSGRD -Rivera/M -riverbank/SM -riverbed/S -riverboat/S -river/CM -riverfront -riverine -Rivers -Riverside/M -riverside/S -Riverview/M -riveter/M -rivet/GZSRDM -riveting/Y -Riviera/MS -Rivi/M -Rivkah/M -rivulet/SM -Rivy/M -riv/ZGNDR -Riyadh/M -riyal/SM -rm -RMS -RN -RNA -Rn/M -roach/GSDM -Roach/M -roadbed/MS -roadblock/SMDG -roadhouse/SM -roadie/S -roadkill/S -road/MIS -roadrunner/MS -roadshow/S -roadside/S -roadsigns -roadster/SM -roadsweepers -roadway/SM -roadwork/SM -roadworthy -roam/DRGZS -Roana/M -Roanna/M -Roanne/M -Roanoke/M -roan/S -roar/DRSJGZ -roarer/M -roaring/T -Roarke/M -roaster/M -roast/SGJZRD -robbed -robber/SM -Robbert/M -robbery/SM -Robbie/M -Robbi/M -robbing -Robbin/MS -Robb/M -Robby/M -Robbyn/M -robe/ESDG -Robena/M -Robenia/M -Robers/M -Roberson/M -Roberta/M -Robert/MS -Roberto/M -Robertson/SM -robe's -Robeson/M -Robespierre/M -Robina/M -Robinet/M -Robinetta/M -Robinette/M -Robinett/M -Robinia/M -Robin/M -robin/MS -Robinson/M -Robinsonville/M -Robles/M -Rob/MZ -robotic/S -robotism -robotize/GDS -robot/MS -rob/SDG -Robson/M -Robt/M -robustness/SM -robust/RYPT -Roby/M -Robyn/M -Rocco/M -Rocha/M -Rochambeau/M -Rochella/M -Rochelle/M -Rochell/M -Roche/M -Rochester/M -Rochette/M -Roch/M -rockabilly/MS -rockabye -Rockaway/MS -rockbound -Rockefeller/M -rocker/M -rocketry/MS -rocket/SMDG -Rockey/M -rockfall/S -Rockford/M -rock/GZDRMS -Rockie/M -rockiness/MS -Rockland/M -Rock/M -Rockne/M -Rockville/M -Rockwell/M -Rocky/SM -rocky/SRTP -rococo/MS -Roda/M -rodded -Roddenberry/M -rodder -Roddie/M -rodding -Rodd/M -Roddy/M -rodent/MS -rodeo/SMDG -Roderich/M -Roderick/M -Roderic/M -Roderigo/M -rode/S -Rodger/M -Rodge/ZMR -Rodie/M -Rodi/M -Rodina/M -Rodin/M -Rod/M -Rodney/M -Rodolfo/M -Rodolphe/M -Rodolph/M -Rodrick/M -Rodrigo/M -Rodriguez/M -Rodrique/M -Rodriquez/M -rod/SGMD -roebuck/SM -Roentgen's -roentgen/SM -roe/SM -ROFL -Rogelio/M -roger/GSD -Rogerio/M -Roger/M -Roget/M -Rog/MRZ -rogued/K -rogue/GMDS -roguery/MS -rogues/K -roguing/K -roguishness/SM -roguish/PY -roil/SGD -Roi/SM -roisterer/M -roister/SZGRD -Rojas/M -Roland/M -Rolando/M -Roldan/M -role/MS -Roley/M -Rolfe/M -Rolf/M -Rolland/M -rollback/SM -rolled/A -Rollerblade/S -rollerskating -roller/SM -rollick/DGS -rollicking/Y -Rollie/M -rolling/S -Rollin/SM -Rollo/M -rollover/S -roll/UDSG -Rolodex -Rolph/M -Rolvaag/M -ROM -romaine/MS -Romain/M -Roma/M -romancer/M -romance/RSDZMG -Romanesque/S -Romania/M -Romanian/SM -Romano/MS -Romanov/M -roman/S -Romansh/M -Romans/M -Roman/SM -romantically/U -romanticism/MS -Romanticism/S -romanticist/S -romanticize/SDG -romantic/MS -Romany/SM -Romeo/MS -romeo/S -Romero/M -Rome/SM -Rommel/M -Romney/M -Romola/M -Romona/M -Romonda/M -romper/M -romp/GSZDR -Rom/SM -Romulus/M -Romy/M -Ronalda/M -Ronald/M -Rona/M -Ronda/M -rondo/SM -Ronica/M -Ron/M -Ronna/M -Ronnica/M -Ronnie/M -Ronni/M -Ronny/M -Ronstadt/M -Rontgen -Roobbie/M -rood/MS -roof/DRMJGZS -roofer/M -roofgarden -roofing/M -roofless -rooftop/S -rookery/MS -rook/GDMS -rookie/SRMT -roomer/M -roomette/SM -roomful/MS -roominess/MS -roommate/SM -room/MDRGZS -roomy/TPSR -Rooney/M -Rooseveltian -Roosevelt/M -rooster/M -roost/SGZRDM -rooted/P -rooter/M -rootlessness/M -rootless/P -rootlet/SM -Root/M -root/MGDRZS -rootstock/M -rope/DRSMZG -roper/M -roping/M -Roquefort/MS -Roquemore/M -Rora/M -Rorie/M -Rori/M -Rorke/M -Rorschach -Rory/M -Rosabella/M -Rosabelle/M -Rosabel/M -Rosaleen/M -Rosales/M -Rosalia/M -Rosalie/M -Rosalinda/M -Rosalinde/M -Rosalind/M -Rosaline/M -Rosalynd/M -Rosalyn/M -Rosa/M -Rosamond/M -Rosamund/M -Rosana/M -Rosanna/M -Rosanne/M -Rosario/M -rosary/SM -Roscoe/M -Rosco/M -Roseanna/M -Roseanne/M -Roseann/M -roseate/Y -Roseau -rosebud/MS -rosebush/SM -Rosecrans/M -Roseland/M -Roselia/M -Roseline/M -Roselin/M -Rosella/M -Roselle/M -Rose/M -Rosemaria/M -Rosemarie/M -Rosemary/M -rosemary/MS -rose/MGDS -Rosemonde/M -Rosenberg/M -Rosenblum/M -Rosendo/M -Rosene/M -Rosen/M -Rosenthal/M -Rosenzweig/M -Rosetta/M -Rosette/M -rosette/SDMG -rosewater -rosewood/SM -Roshelle/M -Rosicrucian/M -Rosie/M -rosily -Rosina/M -rosiness/MS -rosin/SMDG -Rosita/M -Roslyn/M -Rosmunda/M -Ros/N -Ross -Rossetti/M -Rossie/M -Rossi/M -Rossini/M -Rossy/M -Rostand/M -roster/DMGS -Rostov/M -rostra's -rostrum/SM -Roswell/M -Rosy/M -rosy/RTP -rota/MS -Rotarian/SM -rotary/S -rotated/U -rotate/VGNXSD -rotational/Y -rotation/M -rotative/Y -rotator/SM -rotatory -ROTC -rote/MS -rotgut/MS -Roth/M -Rothschild/M -rotisserie/MS -rotogravure/SM -rotor/MS -rototill/RZ -rot/SDG -rotted -rottenness/S -rotten/RYSTP -Rotterdam/M -rotter/M -rotting -rotunda/SM -rotundity/S -rotundness/S -rotund/SDYPG -Rouault/M -rou/MS -rouge/GMDS -roughage/SM -roughen/DG -rougher/M -roughhouse/GDSM -roughish -roughneck/MDSG -roughness/MS -roughs -roughshod -rough/XPYRDNGT -roulette/MGDS -roundabout/PSM -roundedness/M -rounded/P -roundelay/SM -roundels -rounder/M -roundhead/D -roundheadedness/M -roundheaded/P -roundhouse/SM -roundish -roundness/MS -roundoff -roundup/MS -roundworm/MS -round/YRDSGPZT -Rourke/M -rouse/DSRG -rouser/M -Rousseau/M -roustabout/SM -roust/SGD -route/ASRDZGJ -router/M -route's -rout/GZJMDRS -routine/SYM -routing/M -routinize/GSD -Rouvin/M -rover/M -Rover/M -rove/ZGJDRS -roving/M -Rowan/M -rowboat/SM -rowdily -rowdiness/MS -rowdyism/MS -rowdy/PTSR -rowel/DMSG -Rowe/M -Rowena/M -rowen/M -Rowen/M -rower/M -Rowland/M -Rowley/M -Row/MN -Rowney/M -row/SJZMGNDR -Roxana/M -Roxane/M -Roxanna/M -Roxanne/M -Roxie/M -Roxi/M -Roxine/M -Roxy/M -royalist/SM -Royall/M -Royal/M -royal/SY -royalty/MS -Royce/M -Roy/M -Rozalie/M -Rozalin/M -Rozamond/M -Rozanna/M -Rozanne/M -Rozele/M -Rozella/M -Rozelle/M -Roze/M -Rozina/M -Roz/M -RP -rpm -RPM -rps -RR -Rriocard/M -rs -r's -R's -RSFSR -RSI -RSV -RSVP -RSX -rt -rte -Rte -RTFM -r/TGVJ -Rubaiyat/M -rubato/MS -rubbed -rubberize/GSD -rubberneck/DRMGSZ -rubber/SDMG -rubbery/TR -rubbing/M -rubbish/DSMG -rubbishy -rubble/GMSD -rubdown/MS -rubella/MS -Rube/M -Ruben/MS -rube/SM -Rubetta/M -Rubia/M -Rubicon/SM -rubicund -rubidium/SM -Rubie/M -Rubik/M -Rubi/M -Rubina/M -Rubin/M -Rubinstein/M -ruble/MS -rubout -rubric/MS -rub/S -Ruby/M -ruby/MTGDSR -Ruchbah/M -ruck/M -rucksack/SM -ruckus/SM -ruction/SM -rudderless -rudder/MS -Ruddie/M -ruddiness/MS -Rudd/M -Ruddy/M -ruddy/PTGRSD -rudeness/MS -rude/PYTR -Rudie/M -Rudiger/M -rudimentariness/M -rudimentary/P -rudiment/SM -Rudolf/M -Rudolfo/M -Rudolph/M -Rudyard/M -Rudy/M -ruefulness/S -rueful/PY -rue/GDS -Rufe/M -ruff/GSYDM -ruffian/GSMDY -ruffled/U -ruffler/M -ruffle/RSDG -ruffly/TR -Rufus/M -Rugby's -rugby/SM -ruggedness/S -rugged/PYRT -Ruggiero/M -rugging -rug/MS -Ruhr/M -ruination/MS -ruiner/M -ruin/MGSDR -ruinousness/M -ruinous/YP -Ruiz/M -rulebook/S -ruled/U -rule/MZGJDRS -ruler/GMD -ruling/M -Rumanian's -Rumania's -rumba/GDMS -rumble/JRSDG -rumbler/M -rumbustious -rumen/M -Rumford/M -Ru/MH -ruminant/YMS -ruminate/VNGXSD -ruminative/Y -rummage/GRSD -rummager/M -Rummel/M -rummer -rummest -rummy/TRSM -rumored/U -rumorer/M -rumormonger/SGMD -rumor/ZMRDSG -Rumpelstiltskin/M -rump/GMYDS -rumple/SDG -rumply/TR -rumpus/SM -rum/XSMN -runabout/SM -runaround/S -run/AS -runaway/S -rundown/SM -rune/MS -Runge/M -rung/MS -runic -runlet/SM -runnable -runnel/SM -runner/MS -running/S -Runnymede/M -runny/RT -runoff/MS -runtime -runtiness/M -runt/MS -runty/RPT -runway/MS -Runyon/M -rupee/MS -Ruperta/M -Rupert/M -Ruperto/M -rupiah/M -rupiahs -Ruppert/M -Ruprecht/M -rupture/GMSD -rurality/M -rural/Y -Rurik/M -ruse/MS -Rushdie/M -rush/DSRGZ -rusher/M -rushes/I -rushing/M -Rush/M -Rushmore/M -rushy/RT -Ruskin/M -rusk/MS -Russell/M -Russel/M -russet/MDS -russetting -Russia/M -Russian/SM -Russo/M -Russ/S -Rustbelt/M -rustically -rusticate/GSD -rustication/M -rusticity/S -rustic/S -Rustie/M -rustiness/MS -Rustin/M -rustler/M -rustle/RSDGZ -rust/MSDG -rustproof/DGS -Rusty/M -rusty/XNRTP -rutabaga/SM -Rutger/SM -Ruthanne/M -Ruthann/M -Ruthe/M -ruthenium/MS -rutherfordium/SM -Rutherford/M -Ruthie/M -Ruthi/M -ruthlessness/MS -ruthless/YP -Ruth/M -Ruthy/M -Rutland/M -Rutledge/M -rut/MS -rutted -Rutter/M -Ruttger/M -rutting -rutty/RT -Ruy/M -RV -RVs -Rwandan/S -Rwanda/SM -Rwy/M -Rx/M -Ryan/M -Ryann/M -Rycca/M -Rydberg/M -Ryder/M -rye/MS -Ryley/M -Ry/M -Ryon/M -Ryukyu/M -Ryun/M -S -SA -Saab/M -Saar/M -Saba/M -sabbath -Sabbath/M -Sabbaths -sabbatical/S -sabered/U -saber/GSMD -Sabik/M -Sabina/M -Sabine/M -Sabin/M -sable/GMDS -sabotage/DSMG -saboteur/SM -sabot/MS -Sabra/M -sabra/MS -Sabrina/M -SAC -Sacajawea/M -saccharides -saccharine -saccharin/MS -Sacco/M -sacerdotal -Sacha/M -sachem/MS -sachet/SM -Sachs/M -sackcloth/M -sackcloths -sacker/M -sackful/MS -sack/GJDRMS -sacking/M -sacral -sacra/L -sacramental/S -sacrament/DMGS -Sacramento/M -sacredness/S -sacred/PY -sacrificer/M -sacrifice/RSDZMG -sacrificial/Y -sacrilege/MS -sacrilegious/Y -sacristan/SM -sacristy/MS -sacroiliac/S -sacrosanctness/MS -sacrosanct/P -sacrum/M -sac/SM -Sada/M -Sadat/M -Saddam/M -sadden/DSG -sadder -saddest -saddlebag/SM -saddler/M -saddle's -saddle/UGDS -Sadducee/M -Sadella/M -Sade/M -sades -Sadie/M -sadism/MS -sadistic -sadistically -sadist/MS -sadness/SM -sadomasochism/MS -sadomasochistic -sadomasochist/S -sad/PY -Sadr/M -Sadye/M -safari/GMDS -safeguard/MDSG -safekeeping/MS -safeness/MS -safeness's/U -safes -safety/SDMG -safe/URPTY -safflower/SM -saffron/MS -sagaciousness/M -sagacious/YP -sagacity/MS -saga/MS -Sagan/M -sagebrush/SM -sage/MYPS -sagged -sagger -sagging -saggy/RT -Saginaw/M -Sagittarius/MS -sago/MS -sag/TSR -saguaro/SM -Sahara/M -Saharan/M -Sahel -sahib/MS -Saidee/M -saids -said/U -Saigon/M -sailboard/DGS -sailboat/SRMZG -sailcloth/M -sailcloths -sailer/M -sailfish/SM -sail/GJMDRS -sailing/M -sailor/YMS -sailplane/SDMG -sainthood/MS -saintlike -saintliness/MS -saintly/RTP -saint/YDMGS -Saiph/M -saith -saiths -Sakai/M -sake/MRS -saker/M -Sakhalin/M -Sakharov/M -Saki/M -saki's -salaam/GMDS -salable/U -salaciousness/MS -salacious/YP -salacity/MS -Saladin/M -Salado/M -salad/SM -Salaidh/M -salamander/MS -salami/MS -salary/SDMG -Salas/M -Salazar/M -saleability/M -sale/ABMS -Saleem/M -Salem/M -Salerno/M -salesclerk/SM -salesgirl/SM -saleslady/S -salesman/M -salesmanship/SM -salesmen -salespeople/M -salesperson/MS -salesroom/M -saleswoman -saleswomen -salience/MS -saliency -salient/SY -Salim/M -Salina/MS -saline/S -salinger -Salinger/M -salinity/MS -Salisbury/M -Salish/M -saliva/MS -salivary -salivate/XNGSD -salivation/M -Salk/M -Sallee/M -Salle/M -Sallie/M -Salli/M -sallowness/MS -sallow/TGRDSP -Sallust/M -Sallyanne/M -Sallyann/M -sally/GSDM -Sally/M -salmonellae -salmonella/M -Salmon/M -salmon/SM -Sal/MY -Saloma/M -Salome/M -Salomi/M -Salomo/M -Salomone/M -Salomon/M -Salonika/M -salon/SM -saloonkeeper -saloon/MS -salsa/MS -salsify/M -SALT -saltcellar/SM -salted/UC -salter/M -salt/GZTPMDRS -saltine/MS -saltiness/SM -saltness/M -Salton/M -saltpeter/SM -salts/C -saltshaker/S -saltwater -salty/RSPT -salubriousness/M -salubrious/YP -salubrity/M -salutariness/M -salutary/P -salutation/SM -salutatory/S -saluter/M -salute/RSDG -Salvadoran/S -Salvadorian/S -Salvador/M -salvageable -salvage/MGRSD -salvager/M -salvation/MS -Salvatore/M -salve/GZMDSR -salver/M -Salvidor/M -salvo/GMDS -Salween/M -Salyut/M -Salz/M -SAM -Samantha/M -Samara/M -Samaria/M -Samaritan/MS -samarium/MS -Samarkand/M -samba/GSDM -sameness/MS -same/SP -Sam/M -Sammie/M -Sammy/M -Samoa -Samoan/S -Samoset/M -samovar/SM -Samoyed/M -sampan/MS -sampler/M -sample/RSDJGMZ -sampling/M -Sampson/M -Samsonite/M -Samson/M -Samuele/M -Samuel/SM -Samuelson/M -samurai/M -San'a -Sana/M -sanatorium/MS -Sanborn/M -Sanchez/M -Sancho/M -sanctification/M -sanctifier/M -sanctify/RSDGNX -sanctimoniousness/MS -sanctimonious/PY -sanctimony/MS -sanctioned/U -sanction/SMDG -sanctity/SM -sanctuary/MS -sanctum/SM -sandal/MDGS -sandalwood/SM -sandbagged -sandbagging -sandbag/MS -sandbank/SM -sandbar/S -sandblaster/M -sandblast/GZSMRD -sandbox/MS -Sandburg/M -sandcastle/S -Sande/M -Sanderling/M -sander/M -Sander/M -Sanderson/M -sandhill -sandhog/SM -Sandia/M -Sandie/M -Sandi/M -sandiness/S -Sandinista -sandlot/SM -sandlotter/S -sandman/M -sandmen -Sand/MRZ -Sandor/M -Sandoval/M -sandpaper/DMGS -sandpile -sandpiper/MS -sandpit/M -Sandra/M -Sandro/M -sand/SMDRGZ -sandstone/MS -sandstorm/SM -Sandusky/M -sandwich/SDMG -Sandye/M -Sandy/M -sandy/PRT -saned -sane/IRYTP -saneness/MS -saneness's/I -sanes -Sanford/M -Sanforized -Sanger/M -sangfroid/S -sangria/SM -Sang/RM -sang/S -sanguinary -sanguined -sanguine/F -sanguinely -sanguineness/M -sanguineous/F -sanguines -sanguining -Sanhedrin/M -saning -sanitarian/S -sanitarium/SM -sanitary/S -sanitate/NX -sanitation/M -sanitizer/M -sanitize/RSDZG -sanity/SIM -sank -Sankara/M -San/M -sans -sanserif -Sanskritic -Sanskritize/M -Sanskrit/M -Sansone/M -Sanson/M -Santa/M -Santana/M -Santayana/M -Santeria -Santiago/M -Santo/MS -sapience/MS -sapient -sapless -sapling/SM -sap/MS -sapped -sapper/SM -Sapphira/M -Sapphire/M -sapphire/MS -Sappho/M -sappiness/SM -sapping -Sapporo/M -sappy/RPT -saprophyte/MS -saprophytic -sapsucker/SM -sapwood/SM -Saraann/M -Saracen/MS -Saragossa/M -Sarah/M -Sarajane/M -Sarajevo/M -Sara/M -Saran/M -saran/SM -sarape's -Sarasota/M -Saratoga/M -Saratov/M -Sarawak/M -sarcasm/MS -sarcastic -sarcastically -sarcoma/MS -sarcophagi -sarcophagus/M -sardine/SDMG -Sardinia/M -sardonic -sardonically -Saree/M -Sarena/M -Sarene/M -Sarette/M -Sargasso/M -Sarge/M -Sargent/M -sarge/SM -Sargon/M -Sari/M -sari/MS -Sarina/M -Sarine/M -Sarita/M -Sarnoff/M -sarong/MS -Saroyan/M -sarsaparilla/MS -Sarto/M -sartorial/Y -sartorius/M -Sartre/M -Sascha/M -SASE -Sasha/M -sashay/GDS -Sashenka/M -sash/GMDS -Saskatchewan/M -Saskatoon/M -Sask/M -sassafras/MS -sass/GDSM -Sassoon/M -sassy/TRS -SAT -satanic -satanical/Y -Satanism/M -satanism/S -Satanist/M -satanist/S -Satan/M -satchel/SM -sat/DG -sateen/MS -satellite/GMSD -sate/S -satiable/I -satiate/GNXSD -satiation/M -satiety/MS -satin/MDSG -satinwood/MS -satiny -satire/SM -satiric -satirical/Y -satirist/SM -satirize/DSG -satirizes/U -satisfaction/ESM -satisfactorily/U -satisfactoriness/MU -satisfactory/UP -satisfiability/U -satisfiable/U -satisfied/UE -satisfier/M -satisfies/E -satisfy/GZDRS -satisfying/EU -satisfyingly -Sat/M -satori/SM -satrap/SM -saturated/CUA -saturater/M -saturates/A -saturate/XDRSNG -saturation/M -Saturday/MS -saturnalia -Saturnalia/M -saturnine/Y -Saturn/M -Satyanarayanan/M -satyriases -satyriasis/M -satyric -satyr/MS -sauce/DSRGZM -saucepan/SM -saucer/M -saucily -sauciness/S -saucy/TRP -Saudi/S -Saud/M -Saudra/M -sauerkraut/SM -Saukville/M -Saul/M -Sault/M -sauna/DMSG -Sauncho/M -Saunder/SM -Saunderson/M -Saundra/M -saunter/DRSG -saurian/S -sauropod/SM -sausage/MS -Saussure/M -saut/DGS -Sauternes/M -Sauveur/M -savage/GTZYPRSD -Savage/M -savageness/SM -savagery/MS -Savannah/M -savanna/MS -savant/SM -saved/U -saveloy/M -saver/M -save/ZGJDRSB -Savina/M -Savior/M -savior/SM -Saviour/M -Savonarola/M -savored/U -savorer/M -savorier -savoriest -savoriness/S -savoringly/S -savoring/Y -savor/SMRDGZ -savory/UMPS -Savoyard/M -Savoy/M -savoy/SM -savvy/GTRSD -sawbones/M -sawbuck/SM -sawdust/MDSG -sawer/M -sawfly/SM -sawhorse/MS -Saw/M -sawmill/SM -saw/SMDRG -sawtooth -Sawyere/M -Sawyer/M -sawyer/MS -Saxe/M -saxifrage/SM -Sax/M -sax/MS -Saxon/SM -Saxony/M -saxophone/MS -saxophonist/SM -Saxton/M -Sayer/M -sayer/SM -sayest -saying/MS -Sayre/MS -says/M -say/USG -Say/ZMR -SBA -Sb/M -SC -scabbard/SGDM -scabbed -scabbiness/SM -scabbing -scabby/RTP -scabies/M -scabrousness/M -scabrous/YP -scab/SM -scad/SM -scaffolding/M -scaffold/JGDMS -scalability -Scala/M -scalar/SM -scalawag/SM -scald/GJRDS -scaled/AU -scale/JGZMBDSR -scaleless -scalene -scaler/M -scales/A -scaliness/MS -scaling/A -scallion/MS -scalloper/M -scallop/GSMDR -scalloping/M -scalpel/SM -scalper/M -scalp/GZRDMS -scalping/M -scaly/TPR -scammed -scamming -scamper/GD -scampi/M -scamp/RDMGZS -scam/SM -Scan -scan/AS -scandal/GMDS -scandalized/U -scandalize/GDS -scandalmonger/SM -scandalousness/M -scandalous/YP -Scandinavia/M -Scandinavian/S -scandium/MS -scanned/A -scanner/SM -scanning/A -scansion/SM -scant/CDRSG -scantest -scantily -scantiness/MS -scantly -scantness/MS -scanty/TPRS -scapegoat/SGDM -scapegrace/MS -scape/M -scapulae -scapula/M -scapular/S -scarab/SM -Scaramouch/M -Scarborough/M -scarceness/SM -scarce/RTYP -scarcity/MS -scar/DRMSG -scarecrow/MS -scaremongering/M -scaremonger/SGM -scarer/M -scare/S -scarface -Scarface/M -scarf/SDGM -scarification/M -scarify/DRSNGX -scarily -scariness/S -scarlatina/MS -Scarlatti/M -Scarlet/M -scarlet/MDSG -Scarlett/M -scarp/SDMG -scarred -scarring -scarves/M -scary/PTR -scathe/DG -scathed/U -scathing/Y -scatological -scatology/SM -scat/S -scatted -scatterbrain/MDS -scatter/DRJZSG -scatterer/M -scattergun -scattering/YM -scatting -scavenge/GDRSZ -scavenger/M -SCCS -scenario/SM -scenarist/MS -scene/GMDS -scenery/SM -scenically -scenic/S -scented/U -scent/GDMS -scentless -scent's/C -scents/C -scepter/DMSG -scepters/U -sceptically -sch -Schaefer/M -Schaeffer/M -Schafer/M -Schaffner/M -Schantz/M -Schapiro/M -Scheat/M -Schedar/M -schedule/ADSRG -scheduled/U -scheduler/MS -schedule's -Scheherazade/M -Scheherezade/M -Schelling/M -schema/M -schemata -schematically -schematic/S -scheme/JSRDGMZ -schemer/M -schemta -Schenectady/M -scherzo/MS -Schick/M -Schiller/M -schilling/SM -schismatic/S -schism/SM -schist/SM -schizoid/S -schizomycetes -schizophrenia/SM -schizophrenically -schizophrenic/S -schizo/S -schlemiel/MS -schlepped -schlepping -schlep/S -Schlesinger/M -Schliemann/M -Schlitz/M -schlock/SM -schlocky/TR -Schloss/M -schmaltz/MS -schmaltzy/TR -Schmidt/M -Schmitt/M -schmoes -schmo/M -schmooze/GSD -schmuck/MS -Schnabel/M -schnapps/M -schnauzer/MS -Schneider/M -schnitzel/MS -schnook/SM -schnoz/S -schnozzle/MS -Schoenberg/M -Schofield/M -scholarship/MS -scholar/SYM -scholastically -scholastic/S -schoolbag/SM -schoolbook/SM -schoolboy/MS -schoolchild/M -schoolchildren -schooldays -schooled/U -schoolfellow/S -schoolfriend -schoolgirlish -schoolgirl/MS -schoolhouse/MS -schooling/M -schoolmarmish -schoolmarm/MS -schoolmaster/SGDM -schoolmate/MS -schoolmistress/MS -schoolroom/SM -schoolteacher/MS -schoolwork/SM -schoolyard/SM -school/ZGMRDJS -schooner/SM -Schopenhauer/M -Schottky/M -Schrieffer/M -Schrdinger/M -Schroeder/M -Schroedinger/M -Schubert/M -Schultz/M -Schulz/M -Schumacher/M -Schuman/M -Schumann/M -schussboomer/S -schuss/SDMG -Schuster/M -Schuyler/M -Schuylkill/M -Schwab/M -Schwartzkopf/M -Schwartz/M -Schwarzenegger/M -schwa/SM -Schweitzer/M -Schweppes/M -Schwinger/M -Schwinn/M -sci -sciatica/SM -sciatic/S -science/FMS -scientifically/U -scientific/U -scientist/SM -Scientology/M -scimitar/SM -scintilla/MS -scintillate/GNDSX -scintillation/M -scintillator/SM -scion/SM -Scipio/M -scissor/SGD -scleroses -sclerosis/M -sclerotic/S -Sc/M -scoffer/M -scofflaw/MS -scoff/RDGZS -scolder/M -scold/GSJRD -scolioses -scoliosis/M -scollop's -sconce/SDGM -scone/SM -scooper/M -scoop/SRDMG -scooter/M -scoot/SRDGZ -scope/DSGM -Scopes/M -scops -scorbutic -scorcher/M -scorching/Y -scorch/ZGRSD -scoreboard/MS -scorecard/MS -scored/M -scorekeeper/SM -scoreless -scoreline -score/ZMDSRJG -scorner/M -scornfulness/M -scornful/PY -scorn/SGZMRD -scorpion/SM -Scorpio/SM -Scorpius/M -Scorsese/M -Scotchgard/M -Scotchman/M -Scotchmen -scotch/MSDG -scotchs -Scotch/S -Scotchwoman -Scotchwomen -Scotia/M -Scotian/M -Scotland/M -Scot/MS -Scotsman/M -Scotsmen -Scotswoman -Scotswomen -Scottie/SM -Scotti/M -Scottish -Scott/M -Scottsdale/M -Scotty's -scoundrel/YMS -scourer/M -scourge/MGRSD -scourger/M -scouring/M -scour/SRDGZ -scouter/M -scouting/M -scoutmaster/SM -Scout's -scout/SRDMJG -scow/DMGS -scowler/M -scowl/SRDG -scrabble/DRSZG -scrabbler/M -Scrabble/SM -scragged -scragging -scraggly/TR -scraggy/TR -scrag/SM -scrambler/MS -scrambler's/U -scramble/UDSRG -scrammed -scramming -scram/S -Scranton/M -scrapbook/SM -scraper/M -scrape/S -scrapheap/SM -scrapped -scrapper/SM -scrapping -scrappy/RT -scrap/SGZJRDM -scrapyard/S -scratched/U -scratcher/M -scratches/M -scratchily -scratchiness/S -scratch/JDRSZG -scratchy/TRP -scrawler/M -scrawl/GRDS -scrawly/RT -scrawniness/MS -scrawny/TRP -screamer/M -screaming/Y -scream/ZGSRD -screecher/M -screech/GMDRS -screechy/TR -screed/MS -scree/DSM -screened/U -screening/M -screenplay/MS -screen/RDMJSG -screenwriter/MS -screwball/SM -screwdriver/SM -screwer/M -screw/GUSD -screwiness/S -screw's -screwup -screwworm/MS -screwy/RTP -Scriabin/M -scribal -scribble/JZDRSG -scribbler/M -scribe/CDRSGIK -scriber/MKIC -scribe's -Scribner/MS -scrimmager/M -scrimmage/RSDMG -scrimp/DGS -scrimshaw/GSDM -scrim/SM -Scripps/M -scrip/SM -scripted/U -script/FGMDS -scriptural/Y -scripture/MS -Scripture/MS -scriptwriter/SM -scriptwriting/M -scrivener/M -scriven/ZR -scrod/M -scrofula/MS -scrofulous -scrollbar/SM -scroll/GMDSB -Scrooge/MS -scrooge/SDMG -scrota -scrotal -scrotum/M -scrounge/ZGDRS -scroungy/TR -scrubbed -scrubber/MS -scrubbing -scrubby/TR -scrub/S -scruffily -scruffiness/S -scruff/SM -scruffy/PRT -Scruggs/M -scrummage/MG -scrum/MS -scrumptious/Y -scrunch/DSG -scrunchy/S -scruple/SDMG -scrupulosity/SM -scrupulousness's -scrupulousness/US -scrupulous/UPY -scrutable/I -scrutinized/U -scrutinizer/M -scrutinize/RSDGZ -scrutinizingly/S -scrutinizing/UY -scrutiny/MS -SCSI -scuba/SDMG -scudded -scudding -Scud/M -scud/S -scuff/GSD -scuffle/SDG -sculler/M -scullery/MS -Sculley/M -scullion/MS -scull/SRDMGZ -sculptor/MS -sculptress/MS -sculpt/SDG -sculptural/Y -sculpture/SDGM -scumbag/S -scummed -scumming -scum/MS -scummy/TR -scupper/SDMG -scurf/MS -scurfy/TR -scurrility/MS -scurrilousness/MS -scurrilous/PY -scurry/GJSD -scurvily -scurviness/M -scurvy/SRTP -scutcheon/SM -scuttlebutt/MS -scuttle/MGSD -scuzzy/RT -Scylla/M -scythe/SDGM -Scythia/M -SD -SDI -SE -seabed/S -seabird/S -seaboard/MS -Seaborg/M -seaborne -Seabrook/M -seacoast/MS -seafare/JRZG -seafarer/M -seafood/MS -seafront/MS -Seagate/M -seagoing -Seagram/M -seagull/S -seahorse/S -sealant/MS -sealed/AU -sealer/M -seal/MDRSGZ -sealskin/SM -seals/UA -seamail -seamanship/SM -seaman/YM -seamer/M -seaminess/M -seamlessness/M -seamless/PY -seam/MNDRGS -seams/I -seamstress/MS -Seamus/M -sea/MYS -seamy/TRP -Seana/M -sance/SM -Sean/M -seaplane/SM -seaport/SM -seaquake/M -Seaquarium/M -searcher/AM -searching/YS -searchlight/SM -search/RSDAGZ -sear/DRSJGT -searing/Y -Sears/M -seascape/SM -seashell/MS -seashore/SM -seasickness/SM -seasick/P -seaside/SM -seasonableness/M -seasonable/UP -seasonably/U -seasonality -seasonal/Y -seasoned/U -seasoner/M -seasoning/M -season/JRDYMBZSG -seatbelt -seated/A -seater/M -seating/SM -SEATO -seat's -Seattle/M -seat/UDSG -seawall/S -seaward/S -seawater/S -seaway/MS -seaweed/SM -seaworthinesses -seaworthiness/MU -seaworthy/TRP -sebaceous -Sebastian/M -Sebastiano/M -Sebastien/M -seborrhea/SM -SEC -secant/SM -secede/GRSD -secessionist/MS -secession/MS -secludedness/M -secluded/YP -seclude/GSD -seclusion/SM -seclusive -Seconal -secondarily -secondary/PS -seconder/M -secondhand -second/RDYZGSL -secrecy/MS -secretarial -secretariat/MS -secretaryship/MS -secretary/SM -secrete/XNS -secretion/M -secretiveness/S -secretive/PY -secretory -secret/TVGRDYS -sec/S -sectarianism/MS -sectarian/S -sectary/MS -sectionalism/MS -sectionalized -sectional/SY -section/ASEM -sectioned -sectioning -sect/ISM -sectoral -sectored -sector/EMS -sectoring -sects/E -secularism/MS -secularist/MS -secularity/M -secularization/MS -secularized/U -secularize/GSD -secular/SY -secured/U -securely/I -secure/PGTYRSDJ -security/MSI -secy -sec'y -sedan/SM -sedateness/SM -sedate/PXVNGTYRSD -sedation/M -sedative/S -sedentary -Seder/SM -sedge/SM -Sedgwick/M -sedgy/RT -sedimentary -sedimentation/SM -sediment/SGDM -sedition/SM -seditiousness/M -seditious/PY -seducer/M -seduce/RSDGZ -seduction/MS -seductiveness/MS -seductive/YP -seductress/SM -sedulous/Y -Seebeck/M -seed/ADSG -seedbed/MS -seedcase/SM -seeded/U -seeder/MS -seediness/MS -seeding/S -seedless -seedling/SM -seedpod/S -seed's -seedy/TPR -seeings -seeing's -seeing/U -seeker/M -seek/GZSR -seeking/Y -Seeley/M -See/M -seem/GJSYD -seeming/Y -seemliness's -seemliness/US -seemly/UTPR -seen/U -seepage/MS -seep/GSD -seer/SM -seersucker/MS -sees -seesaw/DMSG -seethe/SDGJ -see/U -segmental/Y -segmentation/SM -segmented/U -segment/SGDM -Segovia/M -segregant -segregated/U -segregate/XCNGSD -segregation/CM -segregationist/SM -segregative -Segre/M -segue/DS -segueing -Segundo/M -Se/H -Seidel/M -seigneur/MS -seignior/SM -Seiko/M -seine/GZMDSR -Seine/M -seiner/M -Seinfeld/M -seismic -seismically -seismographer/M -seismographic -seismographs -seismography/SM -seismograph/ZMR -seismologic -seismological -seismologist/MS -seismology/SM -seismometer/S -seize/BJGZDSR -seizer/M -seizing/M -seizin/MS -seizor/MS -seizure/MS -Seka/M -Sela/M -Selassie/M -Selby/M -seldom -selected/UAC -selectional -selection/MS -selectiveness/M -selective/YP -selectivity/MS -selectman/M -selectmen -selectness/SM -selector/SM -select/PDSVGB -Selectric/M -selects/A -Selena/M -selenate/M -Selene/M -selenite/M -selenium/MS -selenographer/SM -selenography/MS -Selestina/M -Seleucid/M -Seleucus/M -self/GPDMS -selfishness/SU -selfish/PUY -selflessness/MS -selfless/YP -selfness/M -Selfridge/M -selfsameness/M -selfsame/P -Selia/M -Selie/M -Selig/M -Selim/M -Selina/M -Selinda/M -Seline/M -Seljuk/M -Selkirk/M -Sella/M -sell/AZGSR -seller/AM -Sellers/M -Selle/ZM -sellout/MS -Selma/M -seltzer/S -selvage/MGSD -selves/M -Selznick/M -semantical/Y -semanticist/SM -semantic/S -semantics/M -semaphore/GMSD -Semarang/M -semblance/ASME -semen/SM -semester/SM -semiannual/Y -semiarid -semiautomated -semiautomatic/S -semicircle/SM -semicircular -semicolon/MS -semiconductor/SM -semiconscious -semidefinite -semidetached -semidrying/M -semifinalist/MS -semifinal/MS -semilogarithmic -semimonthly/S -seminal/Y -seminarian/MS -seminar/SM -seminary/MS -Seminole/SM -semiofficial -semioticians -semiotic/S -semiotics/M -semipermanent/Y -semipermeable -semiprecious -semiprivate -semiprofessional/YS -semipublic -semiquantitative/Y -Semiramis/M -semiretired -semisecret -semiskilled -semi/SM -semisolid/S -semistructured -semisweet -Semite/SM -Semitic/MS -semitic/S -semitone/SM -semitrailer/SM -semitrance -semitransparent -semitropical -semivowel/MS -semiweekly/S -semiyearly -semolina/SM -sempiternal -sempstress/SM -Semtex -sen -Sen -Sena/M -senate/MS -Senate/MS -senatorial -senator/MS -Sendai/M -sender/M -sends/A -send/SRGZ -Seneca/MS -Senegalese -Senegal/M -senescence/SM -senescent -senile/SY -senility/MS -seniority/SM -senior/MS -Senior/S -Sennacherib/M -senna/MS -Sennett/M -Seora/M -senora/S -senorita/S -senor/MS -sensately/I -sensate/YNX -sensationalism/MS -sensationalist/S -sensationalize/GSD -sensational/Y -sensation/M -sens/DSG -senselessness/SM -senseless/PY -sense/M -sensibility/ISM -sensibleness/MS -sensible/PRST -sensibly/I -sensitiveness/MS -sensitiveness's/I -sensitives -sensitive/YIP -sensitivity/ISM -sensitization/CSM -sensitized/U -sensitizers -sensitize/SDCG -sensor/MS -sensory -sensualist/MS -sensuality/MS -sensual/YF -sensuousness/S -sensuous/PY -Sensurround/M -sentence/SDMG -sentential/Y -sententious/Y -sentience/ISM -sentient/YS -sentimentalism/SM -sentimentalist/SM -sentimentality/SM -sentimentalization/SM -sentimentalize/RSDZG -sentimentalizes/U -sentimental/Y -sentiment/MS -sentinel/GDMS -sentry/SM -sent/UFEA -Seoul/M -sepal/SM -separability/MSI -separableness/MI -separable/PI -separably/I -separateness/MS -separates/M -separate/YNGVDSXP -separation/M -separatism/SM -separatist/SM -separator/SM -Sephardi/M -Sephira/M -sepia/MS -Sepoy/M -sepses -sepsis/M -septa/M -septate/N -September/MS -septennial/Y -septet/MS -septicemia/SM -septicemic -septic/S -septillion/M -sept/M -Sept/M -septuagenarian/MS -Septuagint/MS -septum/M -sepulcher/MGSD -sepulchers/UA -sepulchral/Y -seq -sequel/MS -sequenced/A -sequence/DRSJZMG -sequencer/M -sequence's/F -sequences/F -sequent/F -sequentiality/FM -sequentialize/DSG -sequential/YF -sequester/SDG -sequestrate/XGNDS -sequestration/M -sequin/SDMG -sequitur -Sequoia/M -sequoia/MS -Sequoya/M -Serafin/M -seraglio/SM -serape/S -seraphic -seraphically -seraphim's -seraph/M -seraphs -sera's -Serbia/M -Serbian/S -Serb/MS -Serbo/M -serenade/MGDRS -serenader/M -Serena/M -serendipitous/Y -serendipity/MS -serene/GTYRSDP -Serene/M -sereneness/SM -Serengeti/M -serenity/MS -sere/TGDRS -serfdom/MS -serf/MS -Sergeant/M -sergeant/SM -serge/DSGM -Sergei/M -Serge/M -Sergent/M -Sergio/M -serialization/MS -serialize/GSD -serial/MYS -series/M -serif/SMD -serigraph/M -serigraphs -seriousness/SM -serious/PY -sermonize/GSD -sermon/SGDM -serological/Y -serology/MS -serons -serous -Serpens/M -serpent/GSDM -serpentine/GYS -Serra/M -Serrano/M -serrate/GNXSD -serration/M -serried -serum/MS -servant/SDMG -serve/AGCFDSR -served/U -server/MCF -servers -serviceability/SM -serviceableness/M -serviceable/P -serviced/U -serviceman/M -servicemen -service/MGSRD -service's/E -services/E -servicewoman -servicewomen -serviette/MS -servilely -servileness/M -serviles -servile/U -servility/SM -serving/SM -servitor/SM -servitude/MS -servomechanism/MS -servomotor/MS -servo/S -sesame/MS -sesquicentennial/S -sessile -session/SM -setback/S -Seth/M -Set/M -Seton/M -set's -setscrew/SM -set/SIA -settable/A -sett/BJGZSMR -settee/MS -setter/M -setting/AS -setting's -settle/AUDSG -settlement/ASM -settler/MS -settling/S -setup/MS -Seumas/M -Seurat/M -Seuss/M -Sevastopol/M -sevenfold -sevenpence -seven/SMH -seventeen/HMS -seventeenths -sevenths -seventieths -seventy/MSH -severalfold -severalty/M -several/YS -severance/SM -severed/E -severeness/SM -severe/PY -severing/E -severity/MS -Severn/M -severs/E -sever/SGTRD -Severus/M -Seville/M -sewage/MS -Seward/M -sewerage/SM -sewer/GSMD -sewing/SM -sewn -sew/SAGD -sexagenarian/MS -sex/GMDS -sexily -sexiness/MS -sexism/SM -sexist/SM -sexless -sexologist/SM -sexology/MS -sexpot/SM -Sextans/M -sextant/SM -sextet/SM -sextillion/M -Sexton/M -sexton/MS -sextuple/MDG -sextuplet/MS -sexuality/MS -sexualized -sexual/Y -sexy/RTP -Seychelles -Seyfert -Seymour/M -sf -SF -Sgt -shabbily -shabbiness/SM -shabby/RTP -shack/GMDS -shackler/M -shackle's -Shackleton/M -shackle/UGDS -shad/DRJGSM -shaded/U -shadeless -shade/SM -shadily -shadiness/MS -shading/M -shadowbox/SDG -shadower/M -shadow/GSDRM -shadowiness/M -Shadow/M -shadowy/TRP -shady/TRP -Shae/M -Shafer/M -Shaffer/M -shafting/M -shaft/SDMG -shagged -shagginess/SM -shagging -shaggy/TPR -shag/MS -shah/M -shahs -Shaina/M -Shaine/M -shakable/U -shakably/U -shakeable -shakedown/S -shaken/U -shakeout/SM -shaker/M -Shaker/S -Shakespearean/S -Shakespeare/M -Shakespearian -shake/SRGZB -shakeup/S -shakily -shakiness/S -shaking/M -shaky/TPR -shale/SM -shall -shallot/SM -shallowness/SM -shallow/STPGDRY -Shalna/M -Shalne/M -shalom -Shalom/M -shalt -shamanic -shaman/SM -shamble/DSG -shambles/M -shamefaced/Y -shamefulness/S -shameful/YP -shamelessness/SM -shameless/PY -shame/SM -sham/MDSG -shammed -shammer -shamming -shammy's -shampoo/DRSMZG -shampooer/M -shamrock/SM -Shamus/M -Shana/M -Shanan/M -Shanda/M -Shandee/M -Shandeigh/M -Shandie/M -Shandra/M -shandy/M -Shandy/M -Shane/M -Shanghai/GM -Shanghaiing/M -shanghai/SDG -Shanie/M -Shani/M -shank/SMDG -Shannah/M -Shanna/M -Shannan/M -Shannen/M -Shannon/M -Shanon/M -shan't -Shanta/M -Shantee/M -shantis -Shantung/M -shantung/MS -shanty/SM -shantytown/SM -shape/AGDSR -shaped/U -shapelessness/SM -shapeless/PY -shapeliness/S -shapely/RPT -shaper/S -shape's -Shapiro/M -sharable/U -Sharai/M -Shara/M -shard/SM -shareable -sharecropped -sharecropper/MS -sharecropping -sharecrop/S -share/DSRGZMB -shared/U -shareholder/MS -shareholding/S -sharer/M -shareware/S -Shari'a -Sharia/M -sharia/SM -Shari/M -Sharity/M -shark/SGMD -sharkskin/SM -Sharla/M -Sharleen/M -Sharlene/M -Sharline/M -Sharl/M -Sharona/M -Sharon/M -Sharpe/M -sharpen/ASGD -sharpened/U -sharpener/S -sharper/M -sharpie/SM -Sharp/M -sharpness/MS -sharp/SGTZXPYRDN -sharpshooter/M -sharpshooting/M -sharpshoot/JRGZ -sharpy's -Sharron/M -Sharyl/M -Shasta/M -shat -shatter/DSG -shattering/Y -shatterproof -Shaughn/M -Shaula/M -Shauna/M -Shaun/M -shave/DSRJGZ -shaved/U -shaver/M -Shavian -shaving/M -Shavuot/M -Shawano/M -shawl/SDMG -shaw/M -Shaw/M -Shawna/M -Shawnee/SM -Shawn/M -Shaylah/M -Shayla/M -Shaylyn/M -Shaylynn/M -Shay/M -shay/MS -Shayna/M -Shayne/M -Shcharansky/M -sh/DRS -sheaf/MDGS -Shea/M -shearer/M -shear/RDGZS -sheather/M -sheathe/UGSD -sheath/GJMDRS -sheathing/M -sheaths -sheave/SDG -sheaves/M -Sheba/M -shebang/MS -Shebeli/M -Sheboygan/M -she'd -shedding -Shedir/M -sheds -shed's -shed/U -Sheelagh/M -Sheelah/M -Sheela/M -Sheena/M -sheen/MDGS -sheeny/TRSM -sheepdog/SM -sheepfold/MS -sheepherder/MS -sheepishness/SM -sheepish/YP -sheep/M -sheepskin/SM -Sheeree/M -sheerness/S -sheer/PGTYRDS -sheeting/M -sheetlike -sheet/RDMJSG -Sheetrock -Sheffielder/M -Sheffield/RMZ -Sheffie/M -Sheff/M -Sheffy/M -sheikdom/SM -sheikh's -sheik/SM -Sheilah/M -Sheila/M -shekel/MS -Shelagh/M -Shela/M -Shelba/M -Shelbi/M -Shelby/M -Shelden/M -Sheldon/M -shelf/MDGS -Shelia/M -she'll -shellacked -shellacking/MS -shellac/S -shelled/U -Shelley/M -shellfire/SM -shellfish/SM -Shellie/M -Shelli/M -Shell/M -shell/RDMGS -Shelly/M -Shel/MY -shelter/DRMGS -sheltered/U -shelterer/M -Shelton/M -shelve/JRSDG -shelver/M -shelves/M -shelving/M -she/M -Shem/M -Shena/M -Shenandoah/M -shenanigan/SM -Shenyang/M -Sheol/M -Shepard/M -shepherd/DMSG -shepherdess/S -Shepherd/M -Shep/M -Sheppard/M -Shepperd/M -Sheratan/M -Sheraton/M -sherbet/MS -sherd's -Sheree/M -Sheridan/M -Sherie/M -sheriff/SM -Sherill/M -Sherilyn/M -Sheri/M -Sherline/M -Sherlocke/M -sherlock/M -Sherlock/M -Sher/M -Sherman/M -Shermie/M -Sherm/M -Shermy/M -Sherpa/SM -Sherrie/M -Sherri/M -Sherry/M -sherry/MS -Sherwin/M -Sherwood/M -Sherwynd/M -Sherye/M -Sheryl/M -Shetland/S -Shevardnadze/M -shew/GSD -shewn -shh -shiatsu/S -shibboleth/M -shibboleths -shielded/U -shielder/M -shield/MDRSG -Shields/M -shiftily -shiftiness/SM -shiftlessness/S -shiftless/PY -shift/RDGZS -shifty/TRP -Shi'ite -Shiite/SM -Shijiazhuang -Shikoku/M -shill/DJSG -shillelagh/M -shillelaghs -shilling/M -Shillong/M -Shiloh/M -shimmed -shimmer/DGS -shimmery -shimming -shimmy/DSMG -shim/SM -Shina/M -shinbone/SM -shindig/MS -shiner/M -shine/S -shingle/MDRSG -shingler/M -shinguard -shininess/MS -shining/Y -shinned -shinning -shinny/GDSM -shin/SGZDRM -shinsplints -Shintoism/S -Shintoist/MS -Shinto/MS -shiny/PRT -shipboard/MS -shipborne -shipbuilder/M -shipbuild/RGZJ -shipload/SM -shipman/M -shipmate/SM -shipmen -shipment/AMS -shipowner/MS -shippable -shipped/A -shipper/SM -shipping/MS -ship's -shipshape -ship/SLA -shipwreck/GSMD -shipwright/MS -shipyard/MS -Shiraz/M -shire/MS -shirker/M -shirk/RDGZS -Shirlee/M -Shirleen/M -Shirlene/M -Shirley/M -Shirline/M -Shirl/M -Shir/M -shirr/GJDS -shirtfront/S -shirting/M -shirt/JDMSG -shirtless -shirtmake/R -shirtmaker/M -shirtsleeve/MS -shirttail/S -shirtwaist/SM -shit/S! -shitting/! -shitty/RT! -Shiva/M -shiverer/M -shiver/GDR -shivery -shiv/SZRM -shivved -shivving -shlemiel's -Shmuel/M -shoal/SRDMGT -shoat/SM -shocker/M -shocking/Y -Shockley/M -shockproof -shock/SGZRD -shoddily -shoddiness/SM -shoddy/RSTP -shod/U -shoehorn/GSMD -shoeing -shoelace/MS -shoemaker/M -shoemake/RZ -shoe/MS -shoer's -shoeshine/MS -shoestring/MS -shoetree/MS -shogunate/SM -shogun/MS -Shoji/M -Sholom/M -shone -shoo/DSG -shoofly -shook/SM -shooter/M -shootout/MS -shoot/SJRGZ -shopkeeper/M -shopkeep/RGZ -shoplifter/M -shoplifting/M -shoplift/SRDGZ -shop/MS -shopped/M -shopper/M -shoppe/RSDGZJ -shopping/M -shoptalk/SM -shopworn -shorebird/S -shore/DSRGMJ -shoreline/SM -Shorewood/M -shoring/M -shortage/MS -shortbread/MS -shortcake/SM -shortchange/DSG -shortcoming/MS -shortcrust -shortcut/MS -shortcutting -shortener/M -shortening/M -shorten/RDGJ -shortfall/SM -shorthand/DMS -Shorthorn/M -shorthorn/MS -shortie's -shortish -shortlist/GD -Short/M -shortness/MS -short/SGTXYRDNP -shortsightedness/S -shortsighted/YP -shortstop/MS -shortwave/SM -shorty/SM -Shoshana/M -Shoshanna/M -Shoshone/SM -Shostakovitch/M -shotgunned -shotgunner -shotgunning -shotgun/SM -shot/MS -shotted -shotting -shoulder/GMD -shouldn't -should/TZR -shout/SGZRDM -shove/DSRG -shoveler/M -shovelful/MS -shovel/MDRSZG -shover/M -showbiz -showbizzes -showboat/SGDM -showcase/MGSD -showdown/MS -shower/GDM -showery/TR -show/GDRZJS -showgirl/SM -showily -showiness/MS -showing/M -showman/M -showmanship/SM -showmen -shown -showoff/S -showpiece/SM -showplace/SM -showroom/MS -showy/RTP -shpt -shrank -shrapnel/SM -shredded -shredder/MS -shredding -shred/MS -Shreveport/M -shrewdness/SM -shrewd/RYTP -shrew/GSMD -shrewishness/M -shrewish/PY -shrieker/M -shriek/SGDRMZ -shrift/SM -shrike/SM -shrill/DRTGPS -shrillness/MS -shrilly -shrimp/MDGS -shrine/SDGM -shrinkage/SM -shrinker/M -shrinking/U -shrink/SRBG -shrivel/GSD -shriven -shrive/RSDG -Shropshire/M -shroud/GSMD -shrubbed -shrubbery/SM -shrubbing -shrubby/TR -shrub/SM -shrugged -shrugging -shrug/S -shrunk/N -shtick/S -shucker/M -shuck/SGMRD -shucks/S -shudder/DSG -shuddery -shuffleboard/MS -shuffled/A -shuffle/GDSRZ -shuffles/A -shuffling/A -Shulman/M -Shu/M -shunned -shunning -shun/S -shunter/M -shunt/GSRD -Shurlocke/M -Shurlock/M -Shurwood/M -shush/SDG -shutdown/MS -shuteye/SM -shutoff/M -shutout/SM -shut/S -shutterbug/S -shutter/DMGS -shuttering/M -shutting -shuttlecock/MDSG -shuttle/MGDS -shy/DRSGTZY -shyer -shyest -Shylockian/M -Shylock/M -shyness/SM -shyster/SM -Siamese/M -Siam/M -Siana/M -Sianna/M -Sian's -Sibbie/M -Sibby/M -Sibeal/M -Sibelius/M -Sibella/M -Sibelle/M -Sibel/M -Siberia/M -Siberian/S -sibilance/M -sibilancy/M -sibilant/SY -Sibilla/M -Sibley/M -sibling/SM -Sib/M -Sibylla/M -Sibylle/M -sibylline -Sibyl/M -sibyl/SM -Siciliana/M -Sicilian/S -Sicily/M -sickbay/M -sickbed/S -sickener/M -sickening/Y -sicken/JRDG -sicker/Y -sick/GXTYNDRSP -sickie/SM -sickish/PY -sickle/SDGM -sickliness/M -sickly/TRSDPG -sickness/MS -sicko/S -sickout/S -sickroom/SM -sic/S -sidearm/S -sideband/MS -sidebar/MS -sideboard/SM -sideburns -sidecar/MS -sided/A -sidedness -side/ISRM -sidekick/MS -sidelight/SM -sideline/MGDRS -sidelong -sideman/M -sidemen -sidepiece/S -sidereal -sider/FA -sides/A -sidesaddle/MS -sideshow/MS -sidesplitting -sidestepped -sidestepping -sidestep/S -sidestroke/GMSD -sideswipe/GSDM -sidetrack/SDG -sidewalk/MS -sidewall/MS -sidewards -sideway/SM -sidewinder/SM -siding/SM -sidle/DSG -Sid/M -Sidnee/M -Sidney/M -Sidoney/M -Sidonia/M -Sidonnie/M -SIDS -siege/GMDS -Siegel/M -Siegfried/M -Sieglinda/M -Siegmund/M -Siemens/M -Siena/M -sienna/SM -Sierpinski/M -sierra/SM -siesta/MS -sieve/GZMDS -Siffre/M -sifted/UA -sifter/M -sift/GZJSDR -Sigfrid/M -Sigfried/M -SIGGRAPH/M -sigh/DRG -sigher/M -sighs -sighted/P -sighter/M -sighting/S -sight/ISM -sightless/Y -sightliness/UM -sightly/TURP -sightread -sightseeing/S -sightsee/RZ -Sigismond/M -Sigismondo/M -Sigismund/M -Sigismundo/M -Sig/M -sigma/SM -sigmoid -Sigmund/M -signal/A -signaled -signaler/S -signaling -signalization/S -signalize/GSD -signally -signalman/M -signalmen -signals -signal's -signatory/SM -signature/MS -signboard/MS -signed/FU -signer/SC -signet/SGMD -sign/GARDCS -significance/IMS -significantly/I -significant/YS -signification/M -signify/DRSGNX -signing/S -Signora/M -signora/SM -signore/M -signori -signories -signorina/SM -signorine -Signor/M -signor/SFM -signpost/DMSG -sign's -signs/F -Sigrid/M -Sigurd/M -Sigvard/M -Sihanouk/M -Sikhism/MS -Sikh/MS -Sikhs -Sikkimese -Sikkim/M -Sikorsky/M -silage/GMSD -Silas/M -Sileas/M -siled -Sile/M -silence/MZGRSD -silencer/M -silentness/M -silent/TSPRY -Silesia/M -silhouette/GMSD -silica/SM -silicate/SM -siliceous -silicide/M -silicone/SM -silicon/MS -silicoses -silicosis/M -silken/DG -silk/GXNDMS -silkily -silkiness/SM -silkscreen/SM -silkworm/MS -silky/RSPT -silliness/SM -sill/MS -silly/PRST -silo/GSM -siltation/M -silt/MDGS -siltstone/M -silty/RT -Silurian/S -Silvain/M -Silva/M -Silvana/M -Silvan/M -Silvano/M -Silvanus/M -silverer/M -silverfish/MS -Silverman/M -silver/RDYMGS -silversmith/M -silversmiths -Silverstein/M -silverware/SM -silvery/RTP -Silvester/M -Silvia/M -Silvie/M -Silvio/M -Si/M -SIMD -Simenon/M -Simeon/M -simian/S -similar/EY -similarity/EMS -simile/SM -similitude/SME -Simla/M -simmer/GSD -Simmonds/M -Simmons/M -Simmonsville/M -Sim/MS -Simms/M -Simona/M -Simone/M -Simonette/M -simonize/SDG -Simon/M -Simonne/M -simony/MS -simpatico -simper/GDS -simpleminded/YP -simpleness/S -simple/RSDGTP -simpleton/SM -simplex/S -simplicity/MS -simplified/U -simplify/ZXRSDNG -simplistic -simplistically -simply -Simpson/M -simulacrum/M -Simula/M -SIMULA/M -simulate/XENGSD -simulation/ME -simulative -simulator/SEM -simulcast/GSD -simultaneity/SM -simultaneousness/M -simultaneous/YP -Sinai/M -Sinatra/M -since -sincere/IY -sincereness/M -sincerer -sincerest -sincerity/MIS -Sinclair/M -Sinclare/M -Sindbad/M -Sindee/M -Sindhi/M -sinecure/MS -sinecurist/M -sine/SM -sinew/SGMD -sinewy -sinfulness/SM -sinful/YP -Singaporean/S -Singapore/M -sing/BGJZYDR -Singborg/M -singeing -singer/M -Singer/M -singe/S -singing/Y -singlehanded/Y -singleness/SM -single/PSDG -Singleton/M -singleton/SM -singletree/SM -singlet/SM -singsong/GSMD -singularity/SM -singularization/M -singular/SY -Sinhalese/M -sinisterness/M -sinister/YP -sinistral/Y -sinkable/U -sinker/M -sink/GZSDRB -sinkhole/SM -Sinkiang/M -sinking/M -sinlessness/M -sinless/YP -sin/MAGS -sinned -sinner/MS -sinning -sinter/DM -sinuosity/MS -sinuousities -sinuousness/M -sinuous/PY -sinusitis/SM -sinus/MS -sinusoidal/Y -sinusoid/MS -Siobhan/M -Siouxie/M -Sioux/M -siphon/DMSG -siphons/U -sipped -sipper/SM -sipping -sip/S -sired/C -sire/MS -siren/M -sires/C -siring/C -Sirius/M -sirloin/MS -Sir/MS -sirocco/MS -sirred -sirring -sirup's -sir/XGMNDS -sisal/MS -Sisely/M -Sisile/M -sis/S -Sissie/M -sissified -Sissy/M -sissy/TRSM -sister/GDYMS -sisterhood/MS -sisterliness/MS -sisterly/P -sister's/A -Sistine -Sisyphean -Sisyphus/M -sit/AG -sitarist/SM -sitar/SM -sitcom/SM -site/DSJM -sits -sitter/MS -sitting/SM -situate/GNSDX -situational/Y -situationist -situation/M -situ/S -situs/M -Siusan/M -Siva/M -Siward/M -sixfold -sixgun -six/MRSH -sixpence/MS -sixpenny -sixshooter -sixteen/HRSM -sixteenths -sixths -sixth/Y -sixtieths -sixty/SMH -sizableness/M -sizable/P -sized/UA -size/GJDRSBMZ -sizer/M -sizes/A -sizing/M -sizzler/M -sizzle/RSDG -SJ -Sjaelland/M -SK -ska/S -skateboard/SJGZMDR -skater/M -skate/SM -skat/JMDRGZ -skedaddle/GSD -skeet/RMS -skein/MDGS -skeletal/Y -skeleton/MS -Skell/M -Skelly/M -skeptical/Y -skepticism/MS -skeptic/SM -sketchbook/SM -sketcher/M -sketchily -sketchiness/MS -sketch/MRSDZG -sketchpad -sketchy/PRT -skew/DRSPGZ -skewer/GDM -skewing/M -skewness/M -skidded -skidding -skid/S -skiff/GMDS -skiing/M -skilfully -skill/DMSG -skilled/U -skillet/MS -skillfulnesses -skillfulness/MU -skillful/YUP -skilling/M -skimmed -skimmer/MS -skimming/SM -ski/MNJSG -skimp/GDS -skimpily -skimpiness/MS -skimpy/PRT -skim/SM -skincare -skindive/G -skinflint/MS -skinhead/SM -skinless -skinned -Skinner/M -skinner/SM -skinniness/MS -skinning -skinny/TRSP -skin/SM -skintight -Skip/M -skipped -Skipper/M -skipper/SGDM -Skippie/M -skipping -Skipp/RM -Skippy/M -skip/S -Skipton/M -skirmisher/M -skirmish/RSDMZG -skirter/M -skirting/M -skirt/RDMGS -skit/GSMD -skitter/SDG -skittishness/SM -skittish/YP -skittle/SM -skivvy/GSDM -skoal/SDG -Skopje/M -skulduggery/MS -skulker/M -skulk/SRDGZ -skullcap/MS -skullduggery's -skull/SDM -skunk/GMDS -skycap/MS -skydiver/SM -skydiving/MS -Skye/M -skyhook -skyjacker/M -skyjack/ZSGRDJ -Skylab/M -skylarker/M -skylark/SRDMG -Skylar/M -Skyler/M -skylight/MS -skyline/MS -Sky/M -sky/MDRSGZ -skyrocket/GDMS -skyscraper/M -skyscrape/RZ -skyward/S -skywave -skyway/M -skywriter/MS -skywriting/MS -slabbed -slabbing -slab/MS -slacken/DG -slacker/M -slackness/MS -slack/SPGTZXYRDN -Slade/M -slagged -slagging -slag/MS -slain -slake/DSG -slaked/U -slalom/SGMD -slammed -slammer/S -slamming -slam/S -slander/MDRZSG -slanderousness/M -slanderous/PY -slang/SMGD -slangy/TR -slanting/Y -slant/SDG -slantwise -slapdash/S -slaphappy/TR -slap/MS -slapped -slapper -slapping -slapstick/MS -slash/GZRSD -slashing/Y -slater/M -Slater/M -slate/SM -slather/SMDG -slating/M -slat/MDRSGZ -slatted -slattern/MYS -slatting -slaughterer/M -slaughterhouse/SM -slaughter/SJMRDGZ -slave/DSRGZM -slaveholder/SM -slaver/GDM -slavery/SM -Slavic/M -slavishness/SM -slavish/YP -Slav/MS -Slavonic/M -slaw/MS -slay/RGZS -sleaze/S -sleazily -sleaziness/SM -sleazy/RTP -sledded -sledder/S -sledding -sledgehammer/MDGS -sledge/SDGM -sled/SM -sleekness/S -sleek/PYRDGTS -sleeper/M -sleepily -sleepiness/SM -sleeping/M -sleeplessness/SM -sleepless/YP -sleepover/S -sleep/RMGZS -sleepwalker/M -sleepwalk/JGRDZS -sleepwear/M -sleepyhead/MS -sleepy/PTR -sleet/DMSG -sleety/TR -sleeveless -sleeve/SDGM -sleeving/M -sleigh/GMD -sleighs -sleight/SM -sleken/DG -slenderize/DSG -slenderness/MS -slender/RYTP -slept -Slesinger/M -sleuth/GMD -sleuths -slew/DGS -slice/DSRGZM -sliced/U -slicer/M -slicker/M -slickness/MS -slick/PSYRDGTZ -slider/M -slide/S -slid/GZDR -slight/DRYPSTG -slighter/M -slighting/Y -slightness/S -slime/SM -sliminess/S -slimline -slimmed -slimmer/S -slimmest -slimming/S -slimness/S -slim/SPGYD -slimy/PTR -sling/GMRS -slingshot/MS -slings/U -slink/GS -slinky/RT -slipcase/MS -slipcover/GMDS -slipknot/SM -slippage/SM -slipped -slipper/GSMD -slipperiness/S -slippery/PRT -slipping -slipshod -slip/SM -slipstream/MDGS -slipway/SM -slither/DSG -slithery -slit/SM -slitted -slitter/S -slitting -sliver/GSDM -slivery -Sloane/M -Sloan/M -slobber/SDG -slobbery -slob/MS -Slocum/M -sloe/MS -sloganeer/MG -slogan/MS -slogged -slogging -slog/S -sloop/SM -slop/DRSGZ -sloped/U -slope/S -slopped -sloppily -sloppiness/SM -slopping -sloppy/RTP -slosh/GSDM -slothfulness/MS -slothful/PY -sloth/GDM -sloths -slot/MS -slotted -slotting -slouch/DRSZG -sloucher/M -slouchy/RT -slough/GMD -sloughs -Slovakia/M -Slovakian/S -Slovak/S -Slovene/S -Slovenia/M -Slovenian/S -slovenliness/SM -slovenly/TRP -sloven/YMS -slowcoaches -slowdown/MS -slowish -slowness/MS -slow/PGTYDRS -slowpoke/MS -SLR -sludge/SDGM -sludgy/TR -slue/MGDS -sluggard/MS -slugged -slugger/SM -slugging -sluggishness/SM -sluggish/YP -slug/MS -sluice/SDGM -slumberer/M -slumber/MDRGS -slumberous -slumlord/MS -slummed -slummer -slumming -slum/MS -slummy/TR -slump/DSG -slung/U -slunk -slur/MS -slurp/GSD -slurred -slurried/M -slurring -slurrying/M -slurry/MGDS -slushiness/SM -slush/SDMG -slushy/RTP -slut/MS -sluttish -slutty/TR -Sly/M -slyness/MS -sly/RTY -smacker/M -smack/SMRDGZ -smallholders -smallholding/MS -smallish -Small/M -smallness/S -smallpox/SM -small/SGTRDP -smalltalk -smalltime -Smallwood/M -smarmy/RT -smarten/GD -smartness/S -smartypants -smart/YRDNSGTXP -smasher/M -smash/GZRSD -smashing/Y -smashup/S -smattering/SM -smearer/M -smear/GRDS -smeary/TR -smeller/M -smelliness/MS -smell/SBRDG -smelly/TRP -smelter/M -smelt/SRDGZ -Smetana/M -smidgen/MS -smilax/MS -smile/GMDSR -smiley/M -smilies -smiling/UY -smirch/SDG -smirk/GSMD -Smirnoff/M -smite/GSR -smiter/M -smith/DMG -smithereens -Smithfield/M -Smith/M -smiths -Smithsonian/M -Smithson/M -Smithtown/M -smithy/SM -smitten -Smitty/M -Sm/M -smocking/M -smock/SGMDJ -smoggy/TR -smog/SM -smoke/GZMDSRBJ -smokehouse/MS -smokeless -smoker/M -smokescreen/S -smokestack/MS -Smokey/M -smokiness/S -smoking/M -smoky/RSPT -smoldering/Y -smolder/SGD -Smolensk/M -Smollett/M -smooch/SDG -smoothen/DG -smoother/M -smoothie/SM -smoothness/MS -smooths -smooth/TZGPRDNY -smrgsbord/SM -smote -smother/GSD -SMSA/MS -SMTP -Smucker/M -smudge/GSD -smudginess/M -smudgy/TRP -smugged -smugger -smuggest -smugging -smuggle/JZGSRD -smuggler/M -smugness/MS -smug/YSP -smut/SM -Smuts/M -smutted -smuttiness/SM -smutting -smutty/TRP -Smyrna/M -snack/SGMD -snaffle/GDSM -snafu/DMSG -snagged -snagging -snag/MS -snail/GSDM -Snake -snakebird/M -snakebite/MS -snake/DSGM -snakelike -snakeroot/M -snaky/TR -snapback/M -snapdragon/MS -snapped/U -snapper/SM -snappily -snappiness/SM -snapping/U -snappishness/SM -snappish/PY -snappy/PTR -snapshot/MS -snapshotted -snapshotting -snap/US -snare/DSRGM -snarer/M -snarf/JSGD -snarler/M -snarling/Y -snarl/UGSD -snarly/RT -snatch/DRSZG -snatcher/M -snazzily -snazzy/TR -Snead/M -sneaker/MD -sneakily -sneakiness/SM -sneaking/Y -sneak/RDGZS -sneaky/PRT -Sneed/M -sneerer/M -sneer/GMRDJS -sneering/Y -sneeze/SRDG -Snell/M -snicker/GMRD -snick/MRZ -snideness/M -Snider/M -snide/YTSRP -sniffer/M -sniff/GZSRD -sniffle/GDRS -sniffler/M -sniffles/M -snifter/MDSG -snigger's -sniper/M -snipe/SM -snipped -snipper/SM -snippet/SM -snipping -snippy/RT -snip/SGDRZ -snitch/GDS -snit/SM -sniveler/M -snivel/JSZGDR -Sn/M -snobbery/SM -snobbishness/S -snobbish/YP -snobby/RT -snob/MS -Snodgrass/M -snood/SGDM -snooker/GMD -snook/SMRZ -snooper/M -snoop/SRDGZ -Snoopy/M -snoopy/RT -snootily -snootiness/MS -snoot/SDMG -snooty/TRP -snooze/GSD -snore/DSRGZ -snorkel/ZGSRDM -snorter/M -snort/GSZRD -snot/MS -snotted -snottily -snottiness/SM -snotting -snotty/TRP -snout/SGDM -snowball/SDMG -snowbank/SM -Snowbelt/SM -snowbird/SM -snowblower/S -snowboard/GZDRJS -snowbound -snowcapped -snowdrift/MS -snowdrop/MS -snowfall/MS -snowfield/MS -snowflake/MS -snow/GDMS -snowily -snowiness/MS -Snow/M -snowman/M -snowmen -snowmobile/GMDRS -snowplough/M -snowploughs -snowplow/SMGD -snowshed -snowshoeing -snowshoe/MRS -snowshoer/M -snowstorm/MS -snowsuit/S -snowy/RTP -snubbed -snubber -snubbing -snub/SP -snuffbox/SM -snuffer/M -snuff/GZSYRD -snuffle/GDSR -snuffler/M -snuffly/RT -snugged -snugger -snuggest -snugging -snuggle/GDS -snuggly -snugness/MS -snug/SYP -Snyder/M -so -SO -soaker/M -soak/GDRSJ -soapbox/DSMG -soapiness/S -soap/MDRGS -soapstone/MS -soapsud/S -soapy/RPT -soar/DRJSG -soarer/M -soaring/Y -sobbed -sobbing/Y -soberer/M -soberness/SM -sober/PGTYRD -sobriety/SIM -sobriquet/MS -sob/SZR -Soc -soccer/MS -sociabilities -sociability/IM -sociable/S -sociably/IU -socialism/SM -socialistic -socialist/SM -socialite/SM -sociality/M -socialization/SM -socialized/U -socializer/M -socialize/RSDG -socially/U -social/SY -societal/Y -society/MS -socio -sociobiology/M -sociocultural/Y -sociodemographic -socioeconomically -socioeconomic/S -sociolinguistics/M -sociological/MY -sociologist/SM -sociology/SM -sociometric -sociometry/M -sociopath/M -sociopaths -socket/SMDG -sock/GDMS -Socorro/M -Socrates/M -Socratic/S -soc/S -soda/SM -sodded -sodden/DYPSG -soddenness/M -sodding -Soddy/M -sodium/MS -sod/MS -sodomite/MS -sodomize/GDS -Sodom/M -sodomy/SM -soever -sofa/SM -Sofia/M -Sofie/M -softball/MS -softbound -softener/M -soften/ZGRD -softhearted -softie's -softness/MS -soft/SPXTYNR -software/MS -softwood/SM -softy/SM -soggily -sogginess/S -soggy/RPT -Soho/M -soign -soiled/U -soil/SGMD -soire/SM -sojourn/RDZGSM -solace/GMSRD -solacer/M -solaria -solarium/M -solar/S -solder/RDMSZG -soldier/MDYSG -soldiery/MS -sold/RU -solecism/MS -soled/FA -solemness -solemnify/GSD -solemnity/MS -solemnization/SM -solemnize/GSD -solemnness/SM -solemn/PTRY -solenoid/MS -soler/F -soles/IFA -sole/YSP -sol/GSMDR -solicitation/S -solicited/U -solicitor/MS -solicitousness/S -solicitous/YP -solicit/SDG -solicitude/MS -solidarity/MS -solidi -solidification/M -solidify/NXSDG -solidity/S -solidness/SM -solid/STYRP -solidus/M -soliloquies -soliloquize/DSG -soliloquy/M -soling/NM -solipsism/MS -solipsist/S -Solis/M -solitaire/SM -solitary/SP -solitude/SM -Sollie/M -Solly/M -Sol/MY -solo/DMSG -soloist/SM -Solomon/SM -Solon/M -Soloviev/M -solstice/SM -solubility/IMS -soluble/SI -solute/ENAXS -solute's -solution/AME -solvable/UI -solvating -solve/ABSRDZG -solved/EU -solvency/IMS -solvent/IS -solvently -solvent's -solver/MEA -solves/E -solving/E -Solzhenitsyn/M -Somalia/M -Somalian/S -Somali/MS -soma/M -somatic -somberness/SM -somber/PY -sombre -sombrero/SM -somebody'll -somebody/SM -someday -somehow -someone'll -someone/SM -someplace/M -somersault/DSGM -Somerset/M -somerset/S -somersetted -somersetting -Somerville/M -something/S -sometime/S -someway/S -somewhat/S -somewhere/S -some/Z -sommelier/SM -Somme/M -somnambulism/SM -somnambulist/SM -somnolence/MS -somnolent/Y -Somoza/M -sonar/SM -sonata/MS -sonatina/SM -Sondheim/M -Sondra/M -Sonenberg/M -songbag -songbird/SM -songbook/S -songfest/MS -songfulness/M -songful/YP -Songhai/M -Songhua/M -song/MS -songster/MS -songstress/SM -songwriter/SM -songwriting -Sonia/M -sonic/S -Sonja/M -Son/M -sonnet/MDSG -Sonnie/M -Sonni/M -Sonnnie/M -Sonny/M -sonny/SM -Sonoma/M -Sonora/M -sonority/S -sonorousness/SM -sonorous/PY -son/SMY -Sontag/M -sonuvabitch -Sonya/M -Sony/M -soonish -soon/TR -soothe -soother/M -sooth/GZTYSRDMJ -soothingness/M -soothing/YP -sooths -soothsayer/M -soothsay/JGZR -soot/MGDS -sooty/RT -SOP -Sophey/M -Sophia/SM -Sophie/M -Sophi/M -sophism/SM -sophister/M -sophistical -sophisticatedly -sophisticated/U -sophisticate/XNGDS -sophistication/MU -sophistic/S -sophist/RMS -sophistry/SM -Sophoclean -Sophocles/M -sophomore/SM -sophomoric -Sophronia/M -soporifically -soporific/SM -sopped -sopping/S -soppy/RT -soprano/SM -sop/SM -Sopwith/M -sorbet/SM -Sorbonne/M -sorcerer/MS -sorceress/S -sorcery/MS -Sorcha/M -sordidness/SM -sordid/PY -sorehead/SM -soreness/S -Sorensen/M -Sorenson/M -sore/PYTGDRS -sorghum/MS -sorority/MS -sorrel/SM -Sorrentine/M -sorrily -sorriness/SM -sorrower/M -sorrowfulness/SM -sorrowful/YP -sorrow/GRDMS -sorry/PTSR -sorta -sortable -sorted/U -sorter/MS -sort/FSAGD -sortieing -sortie/MSD -sort's -sos -SOS -Sosa/M -Sosanna/M -Soto/M -sot/SM -sottish -soubriquet's -souffl/MS -sough/DG -soughs -sought/U -soulfulness/MS -soulful/YP -soulless/Y -soul/MDS -sound/AUD -soundboard/MS -sounders -sounder's -sounder/U -soundest -sounding/AY -soundings -sounding's -soundless/Y -soundly/U -soundness/UMS -soundproof/GSD -soundproofing/M -sound's -sounds/A -soundtrack/MS -soupon/SM -soup/GMDS -Souphanouvong/M -soupy/RT -source/ASDMG -sourceless -sourdough -sourdoughs -sourish -sourness/MS -sourpuss/MS -sour/TYDRPSG -Sousa/M -sousaphone/SM -sous/DSG -souse -sou/SMH -Southampton/M -southbound -southeastern -southeaster/YM -Southeast/MS -southeast/RZMS -southeastward/S -southerly/S -souther/MY -southerner/M -Southerner/MS -southernisms -southernmost -southern/PZSYR -Southey/M -Southfield/M -southing/M -southland/M -South/M -southpaw/MS -south/RDMG -souths -Souths -southward/S -southwestern -southwester/YM -Southwest/MS -southwest/RMSZ -southwestward/S -souvenir/SM -sou'wester -sovereignty/MS -sovereign/YMS -soviet/MS -Soviet/S -sow/ADGS -sowbelly/M -sowens/M -sower/DS -Soweto/M -sown/A -sox's -soybean/MS -Soyinka/M -soy/MS -Soyuz/M -Spaatz/M -spacecraft/MS -space/DSRGZMJ -spaceflight/S -spaceman/M -spacemen -spaceport/SM -spacer/M -spaceship/MS -spacesuit/MS -spacewalk/GSMD -Spacewar/M -spacewoman -spacewomen -spacey -spacial -spacier -spaciest -spaciness -spacing/M -spaciousness/SM -spacious/PY -Spackle -spade/DSRGM -spadeful/SM -spader/M -spadework/SM -spadices -spadix/M -Spafford/M -spaghetti/SM -Spahn/M -Spain/M -spake -Spalding/M -Spam/M -spa/MS -Span -spandex/MS -spandrels -spangle/GMDS -Spanglish/S -Spaniard/SM -spanielled -spanielling -spaniel/SM -Spanish/M -spanker/M -spanking/M -spank/SRDJG -span/MS -spanned/U -spanner/SM -spanning -SPARC/M -SPARCstation/M -spar/DRMGTS -spareness/MS -spare/PSY -spareribs -sparer/M -sparing/UY -sparker/M -sparkle/DRSGZ -sparkler/M -Sparkman/M -Sparks -spark/SGMRD -sparky/RT -sparling/SM -sparred -sparrer -sparring/U -sparrow/MS -sparseness/S -sparse/YP -sparsity/S -spars/TR -Spartacus/M -Sparta/M -spartan -Spartan/S -spasm/GSDM -spasmodic -spasmodically -spastic/S -spate/SM -spathe/MS -spatiality/M -spatial/Y -spat/MS -spatted -spatter/DGS -spatterdock/M -spatting -spatula/SM -spavin/DMS -spawner/M -spawn/MRDSG -spay/DGS -SPCA -speakable/U -speakeasy/SM -speaker/M -Speaker's -speakership/M -speaking/U -speak/RBGZJS -spearer/M -spearfish/SDMG -spearhead/GSDM -spearmint/MS -spear/MRDGS -Spears -spec'd -specialism/MS -specialist/MS -specialization/SM -specialized/U -specialize/GZDSR -specializing/U -special/SRYP -specialty/MS -specie/MS -specif -specifiability -specifiable -specifiably -specifically -specification/SM -specificity/S -specific/SP -specified/U -specifier/SM -specifies -specify/AD -specifying -specimen/SM -spec'ing -speciousness/SM -specious/YP -speck/GMDS -speckle/GMDS -spec/SM -spectacle/MSD -spectacular/SY -spectator/SM -specter/DMS -specter's/A -spectralness/M -spectral/YP -spectra/M -spectrogram/MS -spectrographically -spectrograph/M -spectrography/M -spectrometer/MS -spectrometric -spectrometry/M -spectrophotometer/SM -spectrophotometric -spectrophotometry/M -spectroscope/SM -spectroscopic -spectroscopically -spectroscopy/SM -spectrum/M -specularity -specular/Y -speculate/VNGSDX -speculation/M -speculative/Y -speculator/SM -sped -speech/GMDS -speechlessness/SM -speechless/YP -speedboat/GSRM -speedboating/M -speeder/M -speedily -speediness/SM -speedometer/MS -speed/RMJGZS -speedster/SM -speedup/MS -speedway/SM -speedwell/MS -speedy/PTR -speer/M -speleological -speleologist/S -speleology/MS -spellbinder/M -spellbind/SRGZ -spellbound -spelldown/MS -spelled/A -speller/M -spelling/M -spell/RDSJGZ -spells/A -spelunker/MS -spelunking/S -Spencerian -Spencer/M -Spence/RM -spender/M -spend/SBJRGZ -spendthrift/MS -Spenglerian -Spengler/M -Spense/MR -Spenserian -Spenser/M -spent/U -spermatophyte/M -spermatozoa -spermatozoon/M -spermicidal -spermicide/MS -sperm/SM -Sperry/M -spew/DRGZJS -spewer/M -SPF -sphagnum/SM -sphere/SDGM -spherical/Y -spheric/S -spherics/M -spheroidal/Y -spheroid/SM -spherule/MS -sphincter/SM -Sphinx/M -sphinx/MS -Spica/M -spic/DGM -spicebush/M -spice/SM -spicily -spiciness/SM -spicule/MS -spicy/PTR -spider/SM -spiderweb/S -spiderwort/M -spidery/TR -Spiegel/M -Spielberg/M -spiel/GDMS -spier/M -spiffy/TDRSG -spigot/MS -spike/GMDSR -Spike/M -spiker/M -spikiness/SM -spiky/PTR -spillage/SM -Spillane/M -spillover/SM -spill/RDSG -spillway/SM -spinach/MS -spinal/YS -spindle/JGMDRS -spindly/RT -spinelessness/M -spineless/YP -spine/MS -spinet/SM -spininess/M -spinnability/M -spinnaker/SM -spinneret/MS -spinner/SM -spinning/SM -Spinoza/M -spin/S -spinsterhood/SM -spinsterish -spinster/MS -spiny/PRT -spiracle/SM -spiraea's -spiral/YDSG -spire/AIDSGF -spirea/MS -spire's -spiritedness/M -spirited/PY -spirit/GMDS -spiritless -spirits/I -spiritualism/SM -spiritualistic -spiritualist/SM -spirituality/SM -spiritual/SYP -spirituous -spirochete/SM -Spiro/M -spiry/TR -spitball/SM -spite/CSDAG -spitefuller -spitefullest -spitefulness/MS -spiteful/PY -spite's/A -spitfire/SM -spit/SGD -spitted -spitting -spittle/SM -spittoon/SM -Spitz/M -splashdown/MS -splasher/M -splash/GZDRS -splashily -splashiness/MS -splashy/RTP -splat/SM -splatted -splatter/DSG -splatting -splayfeet -splayfoot/MD -splay/SDG -spleen/SM -splendidness/M -splendid/YRPT -splendorous -splendor/SM -splenetic/S -splicer/M -splice/RSDGZJ -spline/MSD -splinter/GMD -splintery -splint/SGZMDR -splits/M -split/SM -splittable -splitter/MS -splitting/S -splodge/SM -splotch/MSDG -splotchy/RT -splurge/GMDS -splutterer/M -splutter/RDSG -Sp/M -Spock/M -spoilables -spoilage/SM -spoil/CSZGDR -spoiled/U -spoiler/MC -spoilsport/SM -Spokane/M -spoke/DSG -spoken/U -spokeshave/MS -spokesman/M -spokesmen -spokespeople -spokesperson/S -spokeswoman/M -spokeswomen -spoliation/MCS -spongecake -sponge/GMZRSD -sponger/M -sponginess/S -spongy/TRP -sponsor/DGMS -sponsorship/S -spontaneity/SM -spontaneousness/M -spontaneous/PY -spoof/SMDG -spookiness/MS -spook/SMDG -spooky/PRT -spool/SRDMGZ -spoonbill/SM -spoonerism/SM -spoonful/MS -spoon/GSMD -spoor/GSMD -sporadically -sporadic/Y -spore/DSGM -sporran/MS -sportiness/SM -sporting/Y -sportiveness/M -sportive/PY -sportscast/RSGZM -sportsmanlike/U -sportsman/MY -sportsmanship/MS -sportsmen -sportswear/M -sportswoman/M -sportswomen -sportswriter/S -sport/VGSRDM -sporty/PRT -Sposato/M -spotlessness/MS -spotless/YP -spotlight/GDMS -spotlit -spot/MSC -spotted/U -spotter/MS -spottily -spottiness/SM -spotting/M -spotty/RTP -spousal/MS -spouse/GMSD -spouter/M -spout/SGRD -sprain/SGD -sprang/S -sprat/SM -sprawl/GSD -sprayed/UA -sprayer/M -spray/GZSRDM -sprays/A -spreadeagled -spreader/M -spread/RSJGZB -spreadsheet/S -spreeing -spree/MDS -sprigged -sprigging -sprightliness/MS -sprightly/PRT -sprig/MS -springboard/MS -springbok/MS -springeing -springer/M -Springfield/M -springily -springiness/SM -springing/M -springlike -spring/SGZR -Springsteen/M -springtime/MS -springy/TRP -sprinkle/DRSJZG -sprinkler/DM -sprinkling/M -Sprint/M -sprint/SGZMDR -sprite/SM -spritz/GZDSR -sprocket/DMGS -sprocketed/U -Sproul/M -sprout/GSD -spruce/GMTYRSDP -spruceness/SM -sprue/M -sprung/U -spryness/S -spry/TRY -SPSS -spudded -spudding -spud/MS -Spuds/M -spume/DSGM -spumone's -spumoni/S -spumy/TR -spun -spunk/GSMD -spunky/SRT -spurge/MS -spuriousness/SM -spurious/PY -spur/MS -spurn/RDSG -spurred -spurring -spurt/SGD -sputa -Sputnik -sputnik/MS -sputter/DRGS -sputum/M -spy/DRSGM -spyglass/MS -sq -sqq -sqrt -squabbed -squabber -squabbest -squabbing -squabbler/M -squabble/ZGDRS -squab/SM -squadded -squadding -squadron/MDGS -squad/SM -squalidness/SM -squalid/PRYT -squaller/M -squall/GMRDS -squally/RT -squalor/SM -squamous/Y -squander/GSRD -Squanto -square/GMTYRSDP -squareness/SM -squarer/M -Squaresville/M -squarish -squash/GSRD -squashiness/M -squashy/RTP -squatness/MS -squat/SPY -squatted -squatter/SMDG -squattest -squatting -squawker/M -squawk/GRDMZS -squaw/SM -squeaker/M -squeakily -squeakiness/S -squeak/RDMGZS -squeaky/RPT -squealer/M -squeal/MRDSGZ -squeamishness/SM -squeamish/YP -squeegee/DSM -squeegeeing -squeeze/GZSRDB -squeezer/M -squelcher/M -squelch/GDRS -squelchy/RT -squibbed -Squibb/GM -squibbing -Squibbing/M -squib/SM -squidded -squidding -squid/SM -squiggle/MGDS -squiggly/RT -squinter/M -squint/GTSRD -squinting/Y -squirehood -squire/SDGM -squirm/SGD -squirmy/TR -squirrel/SGYDM -squirter/M -squirt/GSRD -squish/GSD -squishy/RTP -Sr -Srinagar/M -SRO -S's -SS -SSA -SSE -ssh -s's/KI -SSS -SST -SSW -ST -stabbed -stabber/S -stabbing/S -stability/ISM -stabilizability -stabilization/CS -stabilization's -stabilize/CGSD -stabilizer/MS -stableman/M -stablemate -stablemen -stableness/UM -stable/RSDGMTP -stabler/U -stable's/F -stables/F -stablest/U -stabling/M -stably/U -stab/YS -staccato/S -Stacee/M -Stace/M -Stacey/M -Stacia/M -Stacie/M -Staci/M -stackable -stacker/M -stack's -stack/USDG -Stacy/M -stadias -stadia's -stadium/MS -Stael/M -Stafani/M -staff/ADSG -Staffard/M -staffer/MS -Stafford/M -Staffordshire/M -staffroom -staff's -Staford/M -stag/DRMJSGZ -stagecoach/MS -stagecraft/MS -stagehand/MS -stager/M -stage/SM -stagestruck -stagflation/SM -stagged -staggerer/M -stagger/GSJDR -staggering/Y -staggers/M -stagging -staginess/M -staging/M -stagnancy/SM -stagnant/Y -stagnate/NGDSX -stagnation/M -stagy/PTR -Stahl/M -staidness/MS -staid/YRTP -stained/U -stainer/M -stainless/YS -stain/SGRD -staircase/SM -stair/MS -stairway/SM -stairwell/MS -stake/DSGM -stakeholder/S -stakeout/SM -stalactite/SM -stalag/M -stalagmite/SM -stalemate/SDMG -staleness/MS -stale/PGYTDSR -Staley/M -Stalingrad/M -Stalinist -Stalin/SM -stalker/M -stalk/MRDSGZJ -stall/DMSJG -stalled/I -stallholders -stallion/SM -Stallone/M -stalls/I -stalwartness/M -stalwart/PYS -Sta/M -stamen/MS -Stamford/M -stamina/SM -staminate -stammer/DRSZG -stammerer/M -stammering/Y -stampede/MGDRS -stampeder/M -stamped/U -stamper/M -stamp/RDSGZJ -stance/MIS -stancher/M -stanch/GDRST -stanchion/SGMD -standalone -standardization/AMS -standardized/U -standardize/GZDSR -standardizer/M -standardizes/A -standard/YMS -standby -standbys -standee/MS -Standford/M -standing/M -Standish/M -standoffish -standoff/SM -standout/MS -standpipe/MS -standpoint/SM -stand/SJGZR -standstill/SM -Stanfield/M -Stanford/M -Stanislas/M -Stanislaus/M -Stanislavsky/M -Stanislaw/M -stank/S -Stanleigh/M -Stanley/M -Stanly/M -stannic -stannous -Stanton/M -Stanwood/M -Stan/YMS -stanza/MS -staph/M -staphs -staphylococcal -staphylococci -staphylococcus/M -stapled/U -stapler/M -Stapleton/M -staple/ZRSDGM -starboard/SDMG -starchily -starchiness/MS -starch/MDSG -starchy/TRP -stardom/MS -star/DRMGZS -stardust/MS -stare/S -starfish/SM -Stargate/M -stargaze/ZGDRS -staring/U -Starkey/M -Stark/M -starkness/MS -stark/SPGTYRD -Starla/M -Starlene/M -starless -starlet/MS -starlight/MS -starling/MS -Starlin/M -starlit -Star/M -starred -starring -Starr/M -starry/TR -starship -starstruck -start/ASGDR -starter/MS -startle/GDS -startling/PY -startup/SM -starvation/MS -starveling/M -starver/M -starve/RSDG -stash/GSD -stasis/M -stat/DRSGV -statecraft/MS -stated/U -statehood/MS -statehouse/S -Statehouse's -state/IGASD -statelessness/MS -stateless/P -stateliness/MS -stately/PRT -statement/MSA -Staten/M -stater/M -stateroom/SM -stateside -state's/K -states/K -statesmanlike -statesman/MY -statesmanship/SM -statesmen -stateswoman -stateswomen -statewide -statical/Y -static/S -statics/M -stationarity -stationary/S -stationer/M -stationery/MS -stationmaster/M -station/SZGMDR -statistical/Y -statistician/MS -statistic/MS -Statler/M -stator/SM -statuary/SM -statue/MSD -statuesque/YP -statuette/MS -stature/MS -status/SM -statute/SM -statutorily -statutory/P -Stauffer/M -staunchness/S -staunch/PDRSYTG -stave/DGM -Stavro/MS -stay/DRGZS -stayer/M -std -STD -stdio -steadfastness/MS -steadfast/PY -steadily/U -steadiness's -steadiness/US -steading/M -stead/SGDM -steady/DRSUTGP -steakhouse/SM -steak/SM -stealer/M -stealing/M -steal/SRHG -stealthily -stealthiness/MS -stealth/M -stealths -stealthy/PTR -steamboat/MS -steamer/MDG -steamfitter/S -steamfitting/S -steamily -steaminess/SM -steamroller/DMG -steamroll/GZRDS -steam/SGZRDMJ -steamship/SM -steamy/RSTP -Stearne/M -Stearn/SM -steed/SM -Steele/M -steeliness/SM -steelmaker/M -steel/SDMGZ -steelworker/M -steelwork/ZSMR -steelyard/MS -steely/TPRS -Steen/M -steepen/GD -steeper/M -steeplebush/M -steeplechase/GMSD -steeplejack/MS -steeple/MS -steepness/S -steep/SYRNDPGTX -steerage/MS -steerer/M -steer/SGBRDJ -steersman/M -steersmen -steeves -Stefa/M -Stefania/M -Stefanie/M -Stefan/M -Stefano/M -Steffane/M -Steffen/M -Steffie/M -Steffi/M -stegosauri -stegosaurus/S -Steinbeck/SM -Steinberg/M -Steinem/M -Steiner/M -Steinmetz/M -Stein/RM -stein/SGZMRD -Steinway/M -Stella/M -stellar -stellated -Ste/M -stemless -stemmed/U -stemming -stem/MS -stemware/MS -stench/GMDS -stenciler/M -stencil/GDRMSZ -stencillings -Stendhal/M -Stendler/M -Stengel/M -stenographer/SM -stenographic -stenography/SM -steno/SM -stenotype/M -stentorian -stepbrother/MS -stepchild/M -stepchildren -stepdaughter/MS -stepfather/SM -Stepha/M -Stephana/M -Stephanie/M -Stephani/M -Stephan/M -Stephannie/M -Stephanus/M -Stephenie/M -Stephen/MS -Stephenson/M -Stephie/M -Stephi/M -Stephine/M -stepladder/SM -step/MIS -stepmother/SM -stepparent/SM -stepper/M -steppe/RSDGMZ -steppingstone/S -stepsister/SM -stepson/SM -stepwise -stereographic -stereography/M -stereo/GSDM -stereophonic -stereoscope/MS -stereoscopic -stereoscopically -stereoscopy/M -stereotype/GMZDRS -stereotypic -stereotypical/Y -sterile -sterility/SM -sterilization/SM -sterilized/U -sterilize/RSDGZ -sterilizes/A -Sterling/M -sterling/MPYS -sterlingness/M -sternal -Sternberg/M -Sterne/M -Stern/M -sternness/S -Sterno -stern/SYRDPGT -sternum/SM -steroidal -steroid/MS -stertorous -Stesha/M -stethoscope/SM -stet/MS -stetson/MS -Stetson/SM -stetted -stetting -Steuben/M -Stevana/M -stevedore/GMSD -Steve/M -Stevena/M -Steven/MS -Stevenson/M -Stevie/M -Stevy/M -steward/DMSG -stewardess/SM -Steward/M -stewardship/MS -Stewart/M -stew/GDMS -st/GBJ -sticker/M -stickily -stickiness/SM -stickleback/MS -stickle/GZDR -stickler/M -stick/MRDSGZ -stickpin/SM -stickup/SM -sticky/GPTDRS -Stieglitz/M -stiffen/JZRDG -stiff/GTXPSYRND -stiffness/MS -stifle/GJRSD -stifler/M -stifling/Y -stigma/MS -stigmata -stigmatic/S -stigmatization/C -stigmatizations -stigmatization's -stigmatize/DSG -stigmatized/U -stile/GMDS -stiletto/MDSG -stillbirth/M -stillbirths -stillborn/S -stiller/MI -stillest -Stillman/M -Stillmann/M -stillness/MS -still/RDIGS -Stillwell/M -stilted/PY -stilt/GDMS -Stilton/MS -Stimson/M -stimulant/MS -stimulated/U -stimulate/SDVGNX -stimulation/M -stimulative/S -stimulator/M -stimulatory -stimuli/M -stimulus/MS -Stine/M -stinger/M -sting/GZR -stingily -stinginess/MS -stinging/Y -stingray/MS -stingy/RTP -stinkbug/S -stinker/M -stink/GZRJS -stinking/Y -stinkpot/M -Stinky/M -stinky/RT -stinter/M -stinting/U -stint/JGRDMS -stipendiary -stipend/MS -stipple/JDRSG -stippler/M -stipulate/XNGSD -stipulation/M -Stirling/M -stirred/U -stirrer/SM -stirring/YS -stirrup/SM -stir/S -stitch/ASDG -stitcher/M -stitchery/S -stitching/MS -stitch's -St/M -stoat/SM -stochastic -stochastically -stochasticity -stockade/SDMG -stockbreeder/SM -stockbroker/MS -stockbroking/S -stocker/SM -Stockhausen/M -stockholder/SM -Stockholm/M -stockily -stockiness/SM -stockinet's -stockinette/S -stocking/MDS -stockist/MS -stockpile/GRSD -stockpiler/M -stockpot/MS -stockroom/MS -stock's -stock/SGAD -stocktaking/MS -Stockton/M -stockyard/SM -stocky/PRT -Stoddard/M -stodge/M -stodgily -stodginess/S -stodgy/TRP -stogy/SM -stoical/Y -stoichiometric -stoichiometry/M -stoicism/SM -Stoicism/SM -stoic/MS -Stoic/MS -stoke/DSRGZ -stoker/M -stokes/M -Stokes/M -STOL -stole/MDS -stolen -stolidity/S -stolidness/S -stolid/PTYR -stolon/SM -stomachache/MS -stomacher/M -stomach/RSDMZG -stomachs -stomp/DSG -stonecutter/SM -stone/DSRGM -Stonehenge/M -stoneless -Stone/M -stonemason/MS -stoner/M -stonewall/GDS -stoneware/MS -stonewashed -stonework/SM -stonewort/M -stonily -stoniness/MS -stony/TPR -stood -stooge/SDGM -stool/SDMG -stoop/SDG -stopcock/MS -stopgap/SM -stoplight/SM -stopover/MS -stoppable/U -stoppage/MS -Stoppard/M -stopped/U -stopper/GMDS -stopping/M -stopple/GDSM -stop's -stops/M -stop/US -stopwatch/SM -storage/SM -store/ADSRG -storefront/SM -storehouse/MS -storekeeper/M -storekeep/ZR -storeroom/SM -store's -stork/SM -stormbound -stormer/M -Stormie/M -stormily -Stormi/M -storminess/S -Storm/M -storm/SRDMGZ -stormtroopers -Stormy/M -stormy/PTR -storyboard/MDSG -storybook/MS -story/GSDM -storyline -storyteller/SM -storytelling/MS -Stouffer/M -stoup/SM -stouten/DG -stouthearted -Stout/M -stoutness/MS -stout/STYRNP -stove/DSRGM -stovepipe/SM -stover/M -stowage/SM -stowaway/MS -Stowe/M -stow/GDS -Strabo/M -straddler/M -straddle/ZDRSG -Stradivari/SM -Stradivarius/M -strafe/GRSD -strafer/M -straggle/GDRSZ -straggly/RT -straightaway/S -straightedge/MS -straightener/M -straighten/ZGDR -straightforwardness/MS -straightforward/SYP -straightjacket's -straightness/MS -straight/RNDYSTXGP -straightway/S -strain/ASGZDR -strained/UF -strainer/MA -straining/F -strains/F -straiten/DG -straitjacket/GDMS -straitlaced -straitness/M -strait/XTPSMGYDNR -stranded/P -strand/SDRG -strangeness/SM -strange/PYZTR -stranger/GMD -stranglehold/MS -strangle/JDRSZG -strangles/M -strangulate/NGSDX -strangulation/M -strapless/S -strapped/U -strapping/S -strap's -strap/US -Strasbourg/M -stratagem/SM -strata/MS -strategical/Y -strategic/S -strategics/M -strategist/SM -strategy/SM -Stratford/M -strati -stratification/M -stratified/U -stratify/NSDGX -stratigraphic -stratigraphical -stratigraphy/M -stratosphere/SM -stratospheric -stratospherically -stratum/M -stratus/M -Strauss -Stravinsky/M -strawberry/SM -strawflower/SM -straw/SMDG -strayer/M -stray/GSRDM -streak/DRMSGZ -streaker/M -streaky/TR -streamed/U -streamer/M -stream/GZSMDR -streaming/M -streamline/SRDGM -streetcar/MS -streetlight/SM -street/SMZ -streetwalker/MS -streetwise -Streisand/M -strengthen/AGDS -strengthener/MS -strength/NMX -strengths -strenuousness/SM -strenuous/PY -strep/MS -streptococcal -streptococci -streptococcus/M -streptomycin/SM -stress/DSMG -stressed/U -stressful/YP -stretchability/M -stretchable/U -stretch/BDRSZG -stretcher/DMG -stretchy/TRP -strew/GDHS -strewn -striae -stria/M -striate/DSXGN -striated/U -striation/M -stricken -Strickland/M -strict/AF -stricter -strictest -strictly -strictness/S -stricture/SM -stridden -stridency/S -strident/Y -strider/M -stride/RSGM -strife/SM -strikebreaker/M -strikebreaking/M -strikebreak/ZGR -strikeout/S -striker/M -strike/RSGZJ -striking/Y -Strindberg/M -stringed -stringency/S -stringent/Y -stringer/MS -stringiness/SM -stringing/M -string's -string/SAG -stringy/RTP -striper/M -stripe/SM -strip/GRDMS -stripling/M -stripped/U -stripper/MS -stripping -stripteaser/M -striptease/SRDGZM -stripy/RT -strive/JRSG -striven -striver/M -strobe/SDGM -stroboscope/SM -stroboscopic -strode -stroke/ZRSDGM -stroking/M -stroller/M -stroll/GZSDR -Stromberg/M -Stromboli/M -Strom/M -strongbow -strongbox/MS -Strongheart/M -stronghold/SM -strongish -Strong/M -strongman/M -strongmen -strongroom/MS -strong/YRT -strontium/SM -strophe/MS -strophic -stropped -stropping -strop/SM -strove -struck -structuralism/M -structuralist/SM -structural/Y -structured/AU -structureless -structures/A -structure/SRDMG -structuring/A -strudel/MS -struggle/GDRS -struggler/M -strummed -strumming -strumpet/GSDM -strum/S -strung/UA -strut/S -strutted -strutter/M -strutting -strychnine/MS -Stuart/MS -stubbed/M -stubbing -Stubblefield/MS -stubble/SM -stubbly/RT -stubbornness/SM -stubborn/SGTYRDP -stubby/SRT -stub/MS -stuccoes -stucco/GDM -stuck/U -studbook/SM -studded -studding/SM -Studebaker/M -studentship/MS -student/SM -studiedness/M -studied/PY -studier/SM -studio/MS -studiousness/SM -studious/PY -stud/MS -study/AGDS -stuffily -stuffiness/SM -stuffing/M -stuff/JGSRD -stuffy/TRP -stultify/NXGSD -Stu/M -stumble/GZDSR -stumbling/Y -stumpage/M -stumper/M -stump/RDMSG -stumpy/RT -stung -stunk -stunned -stunner/M -stunning/Y -stun/S -stunted/P -stunt/GSDM -stupefaction/SM -stupefy/DSG -stupendousness/M -stupendous/PY -stupidity/SM -stupidness/M -stupid/PTYRS -stupor/MS -sturdily -sturdiness/SM -sturdy/SRPT -sturgeon/SM -Sturm/M -stutter/DRSZG -Stuttgart/M -Stuyvesant/M -sty/DSGM -Stygian -styled/A -style/GZMDSR -styles/A -styli -styling/A -stylishness/S -stylish/PY -stylistically -stylistic/S -stylist/MS -stylites -stylization/MS -stylize/DSG -stylos -stylus/SM -stymieing -stymie/SD -stymy's -styptic/S -styrene/MS -Styrofoam/S -Styx/M -suable -Suarez/M -suasion/EMS -suaveness/S -suave/PRYT -suavity/SM -subaltern/SM -subarctic/S -subareas -Subaru/M -subassembly/M -subatomic/S -subbasement/SM -subbed -subbing -subbranch/S -subcaste/M -subcategorizing -subcategory/SM -subchain -subclassifications -subclass/MS -subclauses -subcommand/S -subcommittee/SM -subcompact/S -subcomponent/MS -subcomputation/MS -subconcept -subconsciousness/SM -subconscious/PSY -subconstituent -subcontinental -subcontinent/MS -subcontractor/SM -subcontract/SMDG -subcultural -subculture/GMDS -subcutaneous/Y -subdirectory/S -subdistrict/M -subdivide/SRDG -subdivision/SM -subdued/Y -subdue/GRSD -subduer/M -subexpression/MS -subfamily/SM -subfield/MS -subfile/SM -subfreezing -subgoal/SM -subgraph -subgraphs -subgroup/SGM -subharmonic/S -subheading/M -subhead/MGJS -subhuman/S -subindex/M -subinterval/MS -subj -subject/GVDMS -subjection/SM -subjectiveness/M -subjective/PSY -subjectivist/S -subjectivity/SM -subjoin/DSG -subjugate/NGXSD -subjugation/M -subjunctive/S -sublayer -sublease/DSMG -sublet/S -subletting -sublimate/GNSDX -sublimation/M -sublime/GRSDTYP -sublimeness/M -sublimer/M -subliminal/Y -sublimity/SM -sublist/SM -subliterary -sublunary -submachine -submarginal -submarine/MZGSRD -submariner/M -submerge/DSG -submergence/SM -submerse/XNGDS -submersible/S -submersion/M -submicroscopic -submission/SAM -submissiveness/MS -submissive/PY -submit/SA -submittable -submittal -submitted/A -submitter/S -submitting/A -submode/S -submodule/MS -sub/MS -subnational -subnet/SM -subnetwork/SM -subnormal/SY -suboptimal -suborbital -suborder/MS -subordinately/I -subordinates/I -subordinate/YVNGXPSD -subordination/IMS -subordinator -subornation/SM -suborn/GSD -subpage -subparagraph/M -subpart/MS -subplot/MS -subpoena/GSDM -subpopulation/MS -subproblem/SM -subprocess/SM -subprofessional/S -subprogram/SM -subproject -subproof/SM -subquestion/MS -subrange/SM -subregional/Y -subregion/MS -subrogation/M -subroutine/SM -subsample/MS -subschema/MS -subscribe/ASDG -subscriber/SM -subscripted/U -subscription/MS -subscript/SGD -subsection/SM -subsegment/SM -subsentence -subsequence/MS -subsequent/SYP -subservience/SM -subservient/SY -subset/MS -subsidence/MS -subside/SDG -subsidiarity -subsidiary/MS -subsidization/MS -subsidized/U -subsidizer/M -subsidize/ZRSDG -subsidy/MS -subsistence/MS -subsistent -subsist/SGD -subsocietal -subsoil/DRMSG -subsonic -subspace/MS -subspecies/M -substance/MS -substandard -substantially/IU -substantialness/M -substantial/PYS -substantiated/U -substantiate/VGNSDX -substantiation/MFS -substantiveness/M -substantive/PSYM -substantivity -substation/MS -substerilization -substitutability -substituted/U -substitute/NGVBXDRS -substitutionary -substitution/M -substitutive/Y -substrata -substrate/MS -substratum/M -substring/S -substructure/SM -subsume/SDG -subsurface/S -subsystem/MS -subtable/S -subtask/SM -subteen/SM -subtenancy/MS -subtenant/SM -subtend/DS -subterfuge/SM -subterranean/SY -subtest -subtext/SM -subtitle/DSMG -subtleness/M -subtle/RPT -subtlety/MS -subtly/U -subtopic/SM -subtotal/GSDM -subtracter/M -subtraction/MS -subtract/SRDZVG -subtrahend/SM -subtree/SM -subtropical -subtropic/S -subtype/MS -subunit/SM -suburbanite/MS -suburbanization/MS -suburbanized -suburbanizing -suburban/S -suburbia/SM -suburb/MS -subvention/MS -subversion/SM -subversiveness/MS -subversive/SPY -subverter/M -subvert/SGDR -subway/MDGS -subzero -succeeder/M -succeed/GDRS -successfulness/M -successful/UY -succession/SM -successiveness/M -successive/YP -success/MSV -successor/MS -successorship -succinctness/SM -succinct/RYPT -succored/U -succorer/M -succor/SGZRDM -succotash/SM -succubus/M -succulence/SM -succulency/MS -succulent/S -succumb/SDG -such -suchlike -sucker/DMG -suck/GZSDRB -suckle/SDJG -suckling/M -Sucre/M -sucrose/MS -suction/SMGD -Sudanese/M -Sudanic/M -Sudan/M -suddenness/SM -sudden/YPS -Sudetenland/M -sud/S -suds/DSRG -sudsy/TR -sued/DG -suede/SM -Suellen/M -Sue/M -suer/M -suet/MS -Suetonius/M -suety -sue/ZGDRS -Suez/M -sufferance/SM -sufferer/M -suffering/M -suffer/SJRDGZ -suffice/GRSD -sufficiency/SIM -sufficient/IY -suffixation/S -suffixed/U -suffix/GMRSD -suffocate/XSDVGN -suffocating/Y -Suffolk/M -suffragan/S -suffrage/MS -suffragette/MS -suffragist/SM -suffuse/VNGSDX -suffusion/M -Sufi/M -Sufism/M -sugarcane/S -sugarcoat/GDS -sugarless -sugarplum/MS -sugar/SJGMD -sugary/TR -suggest/DRZGVS -suggester/M -suggestibility/SM -suggestible -suggestion/MS -suggestiveness/MS -suggestive/PY -sugillate -Suharto/M -suicidal/Y -suicide/GSDM -Sui/M -suitability/SU -suitableness/S -suitable/P -suitably/U -suitcase/MS -suited/U -suite/SM -suiting/M -suit/MDGZBJS -suitor/SM -Sukarno/M -Sukey/M -Suki/M -sukiyaki/SM -Sukkoth's -Sukkot/S -Sula/M -Sulawesi/M -Suleiman/M -sulfaquinoxaline -sulfa/S -sulfate/MSDG -sulfide/S -sulfite/M -sulfonamide/SM -sulfur/DMSG -sulfuric -sulfurousness/M -sulfurous/YP -sulk/GDS -sulkily -sulkiness/S -sulky/RSPT -Sulla/M -sullenness/MS -sullen/TYRP -sullied/U -Sullivan/M -sully/GSD -Sully/M -sulphate/SM -sulphide/MS -sulphuric -sultana/SM -sultanate/MS -sultan/SM -sultrily -sultriness/SM -sultry/PRT -Sulzberger/M -sumach's -sumac/SM -Sumatra/M -Sumatran/S -sumer/F -Sumeria/M -Sumerian/M -summability/M -summable -summand/MS -summarily -summarization/MS -summarized/U -summarize/GSRDZ -summarizer/M -summary/MS -summation/FMS -summed -Summerdale/M -summerhouse/MS -summer/SGDM -Summer/SM -summertime/MS -summery/TR -summing -summit/GMDS -summitry/MS -summoner/M -summon/JSRDGZ -summons/MSDG -sum/MRS -Sumner/M -sumo/SM -sump/SM -sumptuousness/SM -sumptuous/PY -Sumter/M -Sun -sunbaked -sunbathe -sunbather/M -sunbathing/M -sunbaths -sunbath/ZRSDG -sunbeam/MS -Sunbelt/M -sunblock/S -sunbonnet/MS -sunburn/GSMD -sunburst/MS -suncream -sundae/MS -Sundanese/M -Sundas -Sunday/MS -sunder/SDG -sundial/MS -sundowner/M -sundown/MRDSZG -sundris -sundry/S -sunfish/SM -sunflower/MS -sunglass/MS -Sung/M -sung/U -sunk/SN -sunlamp/S -sunless -sunlight/MS -sunlit -sun/MS -sunned -Sunni/MS -sunniness/SM -sunning -Sunnite/SM -Sunny/M -sunny/RSTP -Sunnyvale/M -sunrise/GMS -sunroof/S -sunscreen/S -sunset/MS -sunsetting -sunshade/MS -Sunshine/M -sunshine/MS -sunshiny -sunspot/SM -sunstroke/MS -suntanned -suntanning -suntan/SM -sunup/MS -superabundance/MS -superabundant -superannuate/GNXSD -superannuation/M -superbness/M -superb/YRPT -supercargoes -supercargo/M -supercharger/M -supercharge/SRDZG -superciliousness/SM -supercilious/PY -supercity/S -superclass/M -supercomputer/MS -supercomputing -superconcept -superconducting -superconductivity/SM -superconductor/SM -supercooled -supercooling -supercritical -superdense -super/DG -superego/SM -supererogation/MS -supererogatory -superficiality/S -superficial/SPY -superfine -superfix/M -superfluity/MS -superfluousness/S -superfluous/YP -superheat/D -superheroes -superhero/SM -superhighway/MS -superhumanness/M -superhuman/YP -superimpose/SDG -superimposition/MS -superintendence/S -superintendency/SM -superintendent/SM -superintend/GSD -superiority/MS -Superior/M -superior/SMY -superlativeness/M -superlative/PYS -superlunary -supermachine -superman/M -Superman/M -supermarket/SM -supermen -supermodel -supermom/S -supernal -supernatant -supernaturalism/M -supernaturalness/M -supernatural/SPY -supernormal/Y -supernovae -supernova/MS -supernumerary/S -superordinate -superpose/BSDG -superposition/MS -superpower/MS -superpredicate -supersaturate/XNGDS -supersaturation/M -superscribe/GSD -superscript/DGS -superscription/SM -superseder/M -supersede/SRDG -supersensitiveness/M -supersensitive/P -superset/MS -supersonically -supersonic/S -supersonics/M -superstar/SM -superstition/SM -superstitious/YP -superstore/S -superstructural -superstructure/SM -supertanker/SM -supertitle/MSDG -superuser/MS -supervene/GSD -supervention/S -supervised/U -supervise/SDGNX -supervision/M -supervisor/SM -supervisory -superwoman/M -superwomen -supineness/M -supine/PSY -supper/DMG -supplanter/M -supplant/SGRD -supplemental/S -supplementary/S -supplementation/S -supplementer/M -supplement/SMDRG -suppleness/SM -supple/SPLY -suppliant/S -supplicant/MS -supplicate/NGXSD -supplication/M -supplier/AM -suppl/RDGT -supply/MAZGSRD -supportability/M -supportable/UI -supported/U -supporter/M -supporting/Y -supportive/Y -support/ZGVSBDR -supposed/Y -suppose/SRDBJG -supposition/MS -suppository/MS -suppressant/S -suppressed/U -suppressible/I -suppression/SM -suppressive/P -suppressor/S -suppress/VGSD -suppurate/NGXSD -suppuration/M -supp/YDRGZ -supra -supranational -supranationalism/M -suprasegmental -supremacist/SM -supremacy/SM -supremal -supremeness/M -supreme/PSRTY -supremo/M -sup/RSZ -supt -Supt/M -Surabaya/M -Surat/M -surcease/DSMG -surcharge/MGSD -surcingle/MGSD -surd/M -sured/I -surefire -surefooted -surely -sureness/MS -sureness's/U -sure/PU -surer/I -surest -surety/SM -surfaced/UA -surface/GSRDPZM -surfacer/AMS -surfaces/A -surfacing/A -surfactant/SM -surfboard/MDSG -surfeit/SDRMG -surfer/M -surfing/M -surf/SJDRGMZ -surged/A -surge/GYMDS -surgeon/MS -surgery/MS -surges/A -surgical/Y -Suriname -Surinamese -Surinam's -surliness/SM -surly/TPR -surmiser/M -surmise/SRDG -surmountable/IU -surmount/DBSG -surname/GSDM -surpassed/U -surpass/GDS -surpassing/Y -surplice/SM -surplus/MS -surplussed -surplussing -surprised/U -surprise/MGDRSJ -surpriser/M -surprising/YU -surrealism/MS -surrealistic -surrealistically -surrealist/S -surreality -surreal/S -surrender/DRSG -surrenderer/M -surreptitiousness/S -surreptitious/PY -surrey/SM -surrogacy/S -surrogate/SDMNG -surrogation/M -surrounding/M -surround/JGSD -surtax/SDGM -surveillance/SM -surveillant -surveyed/A -surveying/M -survey/JDSG -surveyor/MS -surveys/A -survivability/M -survivable/U -survivalist/S -survival/MS -survive/SRDBG -survivor/MS -survivorship/M -Surya/M -Sus -Susana/M -Susanetta/M -Susan/M -Susannah/M -Susanna/M -Susanne/M -Susann/M -susceptibilities -susceptibility/IM -susceptible/I -Susette/M -sushi/SM -Susie/M -Susi/M -suspected/U -suspecter/M -suspect/GSDR -suspecting/U -suspend/DRZGS -suspended/UA -suspender/M -suspenseful -suspense/MXNVS -suspension/AM -suspensive/Y -suspensor/M -suspicion/GSMD -suspiciousness/M -suspicious/YP -Susquehanna/M -Sussex/M -sustainability -sustainable/U -sustain/DRGLBS -sustainer/M -sustainment/M -sustenance/MS -Susy/M -Sutherland/M -Sutherlan/M -sutler/MS -Sutton/M -suture/GMSD -SUV -Suva/M -Suwanee/M -Suzanna/M -Suzanne/M -Suzann/M -suzerain/SM -suzerainty/MS -Suzette/M -Suzhou/M -Suzie/M -Suzi/M -Suzuki/M -Suzy/M -Svalbard/M -svelte/RPTY -Svend/M -Svengali -Sven/M -Sverdlovsk/M -Svetlana/M -SW -swabbed -swabbing -swabby/S -Swabian/SM -swab/MS -swaddle/SDG -swagged -swagger/GSDR -swagging -swag/GMS -Swahili/MS -swain/SM -SWAK -swallower/M -swallow/GDRS -swallowtail/SM -swam -swami/SM -swamper/M -swampland/MS -swamp/SRDMG -swampy/RPT -Swanee/M -swankily -swankiness/MS -swank/RDSGT -swanky/PTRS -swanlike -swan/MS -swanned -swanning -Swansea/M -Swanson/M -swappable/U -swapped -swapper/SM -swapping -swap/S -sward/MSGD -swarmer/M -swarm/GSRDM -swarthiness/M -Swarthmore/M -swarthy/RTP -swart/P -Swartz/M -swashbuckler/SM -swashbuckling/S -swash/GSRD -swastika/SM -SWAT -swatch/MS -swathe -swather/M -swaths -swath/SRDMGJ -swat/S -swatted -swatter/MDSG -swatting -swayback/SD -sway/DRGS -swayer/M -Swaziland/M -Swazi/SM -swearer/M -swear/SGZR -swearword/SM -sweatband/MS -sweater/M -sweatily -sweatiness/M -sweatpants -sweat/SGZRM -sweatshirt/S -sweatshop/MS -sweaty/TRP -Swedenborg/M -Sweden/M -swede/SM -Swede/SM -Swedish -Swed/MN -Sweeney/SM -sweeper/M -sweepingness/M -sweeping/PY -sweep/SBRJGZ -sweeps/M -sweepstakes -sweepstake's -sweetbread/SM -sweetbrier/SM -sweetcorn -sweetened/U -sweetener/M -sweetening/M -sweeten/ZDRGJ -sweetheart/MS -sweetie/MS -sweeting/M -sweetish/Y -Sweet/M -sweetmeat/MS -sweetness/MS -sweetshop -sweet/TXSYRNPG -swellhead/DS -swelling/M -swell/SJRDGT -swelter/DJGS -sweltering/Y -Swen/M -Swenson/M -swept -sweptback -swerve/GSD -swerving/U -swifter/M -swift/GTYRDPS -Swift/M -swiftness/MS -swigged -swigging -swig/SM -swill/SDG -swimmer/MS -swimming/MYS -swim/S -swimsuit/MS -Swinburne/M -swindle/GZRSD -swindler/M -swineherd/MS -swine/SM -swingeing -swinger/M -swinging/Y -swing/SGRZJB -swingy/R -swinishness/M -swinish/PY -Swink/M -swipe/DSG -swirling/Y -swirl/SGRD -swirly/TR -swish/GSRD -swishy/R -swiss -Swiss/S -switchback/GDMS -switchblade/SM -switchboard/MS -switcher/M -switch/GBZMRSDJ -switchgear -switchman/M -switchmen/M -switchover/M -Switzerland/M -Switzer/M -Switz/MR -swivel/GMDS -swizzle/RDGM -swob's -swollen -swoon/GSRD -swooning/Y -swoop/RDSG -swoosh/GSD -swop's -sword/DMSG -swordfish/SM -swordplayer/M -swordplay/RMS -swordsman/M -swordsmanship/SM -swordsmen -swordtail/M -swore -sworn -swot/S -swum -swung -s/XJBG -sybarite/MS -sybaritic -Sybila/M -Sybilla/M -Sybille/M -Sybil/M -Sybyl/M -sycamore/SM -sycophancy/S -sycophantic -sycophantically -sycophant/SYM -Sydelle/M -Sydel/M -Syd/M -Sydney/M -Sykes/M -Sylas/M -syllabicate/GNDSX -syllabication/M -syllabicity -syllabic/S -syllabification/M -syllabify/GSDXN -syllabi's -syllable/SDMG -syllabub/M -syllabus/MS -syllabusss -syllogism/MS -syllogistic -Sylow/M -sylphic -sylphlike -sylph/M -sylphs -Sylvania/M -Sylvan/M -sylvan/S -Sylvester/M -Sylvia/M -Sylvie/M -Syman/M -symbiont/M -symbioses -symbiosis/M -symbiotic -symbol/GMDS -symbolical/Y -symbolics/M -symbolic/SM -symbolism/MS -symbolist/MS -symbolization/MAS -symbolized/U -symbolize/GZRSD -symbolizes/A -Symington/M -symmetric -symmetrically/U -symmetricalness/M -symmetrical/PY -symmetrization/M -symmetrizing -symmetry/MS -Symon/M -sympathetically/U -sympathetic/S -sympathized/U -sympathizer/M -sympathize/SRDJGZ -sympathizing/MYUS -sympathy/MS -symphonic -symphonists -symphony/MS -symposium/MS -symptomatic -symptomatically -symptomatology/M -symptom/MS -syn -synagogal -synagogue/SM -synapse/SDGM -synaptic -synchronism/M -synchronization's -synchronization/SA -synchronize/AGCDS -synchronized/U -synchronizer/MS -synchronousness/M -synchronous/YP -synchrony -synchrotron/M -syncopate/VNGXSD -syncopation/M -syncope/MS -sync/SGD -syndicalist -syndicate/XSDGNM -syndic/SM -syndrome/SM -synergism/SM -synergistic -synergy/MS -synfuel/S -Synge/M -synod/SM -synonymic -synonymous/Y -synonym/SM -synonymy/MS -synopses -synopsis/M -synopsized -synopsizes -synopsizing -synoptic/S -syntactical/Y -syntactics/M -syntactic/SY -syntax/MS -syntheses -synthesis/M -synthesized/U -synthesize/GZSRD -synthesizer/M -synthesizes/A -synthetically -synthetic/S -syphilis/MS -syphilitic/S -syphilized -syphilizing -Syracuse/M -Syriac/M -Syria/M -Syrian/SM -syringe/GMSD -syrup/DMSG -syrupy -sys -systematical/Y -systematics/M -systematic/SP -systematization/SM -systematized/U -systematizer/M -systematize/ZDRSG -systematizing/U -systemically -systemic/S -systemization/SM -system/MS -systole/MS -systolic -Szilard/M -Szymborska/M -TA -Tabasco/MS -Tabatha/M -Tabbatha/M -tabbed -Tabbie/M -Tabbi/M -tabbing -Tabbitha/M -Tabb/M -tabbouleh -tabboulehs -tabby/GSD -Tabby/M -Taber/M -Tabernacle/S -tabernacle/SDGM -Tabina/M -Tabitha/M -tabla/MS -tableau/M -tableaux -tablecloth/M -tablecloths -table/GMSD -tableland/SM -tablespoonful/MS -tablespoon/SM -tablet/MDGS -tabletop/MS -tableware/SM -tabling/M -tabloid/MS -Tab/MR -taboo/GSMD -Tabor/M -tabor/MDGS -Tabriz/SM -tab/SM -tabula -tabular/Y -tabulate/XNGDS -tabulation/M -tabulator/MS -tachometer/SM -tachometry -tachycardia/MS -tachyon/SM -tacitness/MS -taciturnity/MS -taciturn/Y -Tacitus/M -tacit/YP -tacker/M -tack/GZRDMS -tackiness/MS -tackler/M -tackle/RSDMZG -tackling/M -tacky/RSTP -Tacoma/M -taco/MS -tact/FSM -tactfulness/S -tactful/YP -tactical/Y -tactician/MS -tactic/SM -tactile/Y -tactility/S -tactlessness/SM -tactless/PY -tactual/Y -Taddeo/M -Taddeusz/M -Tadd/M -Tadeas/M -Tadeo/M -Tades -Tadio/M -Tad/M -tadpole/MS -tad/SM -Tadzhikistan's -Tadzhikstan/M -Taegu/M -Taejon/M -taffeta/MS -taffrail/SM -Taffy/M -taffy/SM -Taft/M -Tagalog/SM -tagged/U -tagger/S -tagging -Tagore/M -tag/SM -Tagus/M -Tahitian/S -Tahiti/M -Tahoe/M -Taichung/M -taiga/MS -tailback/MS -tail/CMRDGAS -tailcoat/S -tailer/AM -tailgate/MGRSD -tailgater/M -tailing/MS -taillessness/M -tailless/P -taillight/MS -tailor/DMJSGB -Tailor/M -tailpipe/SM -tailspin/MS -tailwind/SM -Tainan/M -Taine/M -taint/DGS -tainted/U -Taipei/M -Taite/M -Tait/M -Taiwanese -Taiwan/M -Taiyuan/M -Tajikistan -takeaway/S -taken/A -takeoff/SM -takeout/S -takeover/SM -taker/M -take/RSHZGJ -takes/IA -taking/IA -Taklamakan/M -Talbert/M -Talbot/M -talcked -talcking -talc/SM -talcum/S -talebearer/SM -talented/M -talentless -talent/SMD -taler/M -tale/RSMN -tali -Talia/M -Taliesin/M -talion/M -talismanic -talisman/SM -talkativeness/MS -talkative/YP -talker/M -talk/GZSRD -talkie/M -talky/RST -Talladega/M -Tallahassee/M -Tallahatchie/M -Tallahoosa/M -tallboy/MS -Tallchief/M -Talley/M -Talleyrand/M -Tallia/M -Tallie/M -Tallinn/M -tallish -tallness/MS -Tallou/M -tallow/DMSG -tallowy -tall/TPR -Tallulah/M -tally/GRSDZ -tallyho/DMSG -Tally/M -Talmudic -Talmudist/MS -Talmud/MS -talon/SMD -talus/MS -Talyah/M -Talya/M -Ta/M -tamable/M -tamale/SM -tamarack/SM -Tamarah/M -Tamara/M -tamarind/MS -Tamar/M -Tamarra/M -Tamas -tambourine/MS -tamed/U -Tameka/M -tameness/S -Tamera/M -Tamerlane/M -tame/SYP -Tamika/M -Tamiko/M -Tamil/MS -Tami/M -Tam/M -Tamma/M -Tammany/M -Tammara/M -tam/MDRSTZGB -Tammie/M -Tammi/M -Tammy/M -Tampa/M -Tampax/M -tampered/U -tamperer/M -tamper/ZGRD -tampon/DMSG -tamp/SGZRD -Tamqrah/M -Tamra/M -tanager/MS -Tanaka/M -Tana/M -Tananarive/M -tanbark/SM -Tancred/M -tandem/SM -Tandie/M -Tandi/M -tandoori/S -Tandy/M -Taney/M -T'ang -Tanganyika/M -tangelo/SM -tangency/M -tangential/Y -tangent/SM -tangerine/MS -tang/GSYDM -tangibility/MIS -tangible/IPS -tangibleness's/I -tangibleness/SM -tangibly/I -Tangier/M -tangle's -tangle/UDSG -tango/MDSG -Tangshan/M -tangy/RST -Tanhya/M -Tania/M -Tani/M -Tanisha/M -Tanitansy/M -tankard/MS -tanker/M -tankful/MS -tank/GZSRDM -Tan/M -tan/MS -tanned/U -Tannenbaum/M -Tanner/M -tanner/SM -tannery/MS -tannest -Tanney/M -Tannhuser/M -Tannie/M -tanning/SM -tannin/SM -Tann/RM -Tanny/M -Tansy/M -tansy/SM -tantalization/SM -tantalized/U -tantalize/GZSRD -tantalizingly/S -tantalizingness/S -tantalizing/YP -tantalum/MS -Tantalus/M -tantamount -tantra/S -tantrum/SM -Tanya/M -Tanzania/M -Tanzanian/S -taoism -Taoism/MS -Taoist/MS -taoist/S -Tao/M -tao/S -Tapdance/M -taped/U -tapeline/S -taperer/M -taper/GRD -tape/SM -tapestry/GMSD -tapeworm/MS -tapioca/MS -tapir/MS -tap/MSDRJZG -tapped/U -tapper/MS -tappet/MS -tapping/M -taproom/MS -taproot/SM -taps/M -Tarah/M -Tara/M -tarantella/MS -tarantula/MS -Tarawa/M -Tarazed/M -Tarbell/M -tardily -tardiness/S -tardy/TPRS -tare/MS -target/GSMD -tar/GSMD -tariff/DMSG -Tarim/M -Tarkington/M -tarmacked -tarmacking -tarmac/S -tarnished/U -tarnish/GDS -tarn/MS -taro/MS -tarot/MS -tarpapered -tarpaulin/MS -tarp/MS -tarpon/MS -tarragon/SM -Tarrah/M -Tarra/M -Tarrance/M -tarred/M -tarring/M -tarry/TGRSD -Tarrytown/M -tarsal/S -tarsi -tarsus/M -tartan/MS -tartaric -Tartar's -tartar/SM -Tartary/M -tartness/MS -tart/PMYRDGTS -Tartuffe/M -Taryn/M -Tarzan/M -Tasha/M -Tashkent/M -Tasia/M -task/GSDM -taskmaster/SM -taskmistress/MS -Tasmania/M -Tasmanian/S -tassellings -tassel/MDGS -Tass/M -tasted/EU -tastefulness/SME -tasteful/PEY -taste/GZMJSRD -tastelessness/SM -tasteless/YP -taster/M -taste's/E -tastes/E -tastily -tastiness/MS -tasting/E -tasty/RTP -tatami/MS -Tatar/SM -Tate/M -tater/M -Tatiana/M -Tatiania/M -tat/SRZ -tatted -tatterdemalion/SM -tattered/M -tatter/GDS -tatting/SM -tattler/M -tattle/RSDZG -tattletale/SM -tattooer/M -tattooist/MS -tattoo/ZRDMGS -tatty/R -Tatum/M -taught/AU -taunter/M -taunting/Y -taunt/ZGRDS -taupe/SM -Taurus/SM -tau/SM -tauten/GD -tautness/S -tautological/Y -tautologous -tautology/SM -taut/PGTXYRDNS -taverner/M -tavern/RMS -tawdrily -tawdriness/SM -tawdry/SRTP -Tawney/M -Tawnya/M -tawny/RSMPT -Tawsha/M -taxable/S -taxably -taxation/MS -taxed/U -taxicab/MS -taxidermist/SM -taxidermy/MS -taxi/MDGS -taximeter/SM -taxing/Y -taxiway/MS -taxonomic -taxonomically -taxonomist/SM -taxonomy/SM -taxpayer/MS -taxpaying/M -tax/ZGJMDRSB -Taylor/SM -Tb -TB -TBA -Tbilisi/M -tbs -tbsp -Tchaikovsky/M -Tc/M -TCP -TD -TDD -Te -teabag/S -teacake/MS -teacart/M -teachable/P -teach/AGS -teacher/MS -teaching/SM -teacloth -teacupful/MS -teacup/MS -Teador/M -teahouse/SM -teakettle/SM -teak/SM -teakwood/M -tealeaves -teal/MS -tea/MDGS -teammate/MS -team/MRDGS -teamster/MS -teamwork/SM -teapot/MS -tearaway -teardrop/MS -tearer/M -tearfulness/M -tearful/YP -teargas/S -teargassed -teargassing -tearjerker/S -tearoom/MS -tear/RDMSG -teary/RT -Teasdale/M -tease/KS -teasel/DGSM -teaser/M -teashop/SM -teasing/Y -teaspoonful/MS -teaspoon/MS -teas/SRDGZ -teatime/MS -teat/MDS -tech/D -technetium/SM -technicality/MS -technicalness/M -technical/YSP -technician/MS -Technicolor/MS -Technion/M -technique/SM -technocracy/MS -technocratic -technocrat/S -technological/Y -technologist/MS -technology/MS -technophobia -technophobic -techs -tectonically -tectonic/S -tectonics/M -Tecumseh/M -Tedda/M -Teddie/M -Teddi/M -Tedd/M -Teddy/M -teddy/SM -Tedie/M -Tedi/M -tediousness/SM -tedious/YP -tedium/MS -Ted/M -Tedman/M -Tedmund/M -Tedra/M -tee/DRSMH -teeing -teem/GSD -teemingness/M -teeming/PY -teenager/M -teenage/RZ -Teena/M -teen/SR -teenybopper/SM -teeny/RT -teepee's -teeshirt/S -teeter/GDS -teethe -teether/M -teething/M -teethmarks -teeth/RSDJMG -teetotaler/M -teetotalism/MS -teetotal/SRDGZ -TEFL -Teflon/MS -Tegucigalpa/M -Teheran's -Tehran -TEirtza/M -tektite/SM -Tektronix/M -telecast/SRGZ -telecommunicate/NX -telecommunication/M -telecommute/SRDZGJ -telecoms -teleconference/GMJSD -Teledyne/M -Telefunken/M -telegenic -telegrammed -telegramming -telegram/MS -telegraphic -telegraphically -telegraphist/MS -telegraph/MRDGZ -telegraphs -telegraphy/MS -telekineses -telekinesis/M -telekinetic -Telemachus/M -Telemann/M -telemarketer/S -telemarketing/S -telemeter/DMSG -telemetric -telemetry/MS -teleological/Y -teleology/M -telepathic -telepathically -telepathy/SM -telephone/SRDGMZ -telephonic -telephonist/SM -telephony/MS -telephotography/MS -telephoto/S -teleprinter/MS -teleprocessing/S -teleprompter -TelePrompter/M -TelePrompTer/S -telescope/GSDM -telescopic -telescopically -teletext/S -telethon/MS -teletype/SM -Teletype/SM -teletypewriter/SM -televangelism/S -televangelist/S -televise/SDXNG -television/M -televisor/MS -televisual -telex/GSDM -Telex/M -tell/AGS -Teller/M -teller/SDMG -telling/YS -Tell/MR -telltale/MS -tellurium/SM -telly/SM -Telnet/M -TELNET/M -telnet/S -telomeric -tel/SY -Telugu/M -temblor/SM -temerity/MS -Tempe/M -temperamental/Y -temperament/SM -temperance/IMS -tempera/SLM -temperately/I -temperateness's/I -temperateness/SM -temperate/SDGPY -temperature/MS -tempered/UE -temper/GRDM -tempering/E -temper's/E -tempers/E -tempest/DMSG -tempestuousness/SM -tempestuous/PY -template/FS -template's -Temple/M -Templeman/M -temple/SDM -Templeton/M -Temp/M -tempoes -tempo/MS -temporal/YS -temporarily -temporarinesses -temporariness/FM -temporary/SFP -temporize/GJZRSD -temporizer/M -temporizings/U -temporizing/YM -temp/SGZTMRD -temptation/MS -tempted -tempter/S -tempt/FS -tempting/YS -temptress/MS -tempura/SM -tenabilities -tenability/UM -tenableness/M -tenable/P -tenably -tenaciousness/S -tenacious/YP -tenacity/S -tenancy/MS -tenanted/U -tenant/MDSG -tenantry/MS -tench/M -tended/UE -tendency/MS -tendentiousness/SM -tendentious/PY -tendered -tenderer -tenderest -tenderfoot/MS -tender/FS -tenderheartedness/MS -tenderhearted/YP -tendering -tenderizer/M -tenderize/SRDGZ -tenderloin/SM -tenderly -tenderness/SM -tending/E -tendinitis/S -tend/ISFRDG -tendon/MS -tendril/SM -tends/E -tenebrous -tenement/MS -tenet/SM -Tenex/M -TENEX/M -tenfold/S -ten/MHB -Tenneco/M -tenner -Tennessean/S -Tennessee/M -Tenney/M -tennis/SM -Tenn/M -Tennyson/M -Tenochtitlan/M -tenon/GSMD -tenor/MS -tenpin/SM -tense/IPYTNVR -tenseness's/I -tenseness/SM -tensile -tensional/I -tension/GMRDS -tensionless -tensions/E -tension's/I -tensity/IMS -tensorial -tensor/MS -tenspot -tens/SRDVGT -tentacle/MSD -tentativeness/S -tentative/SPY -tented/UF -tenterhook/MS -tenter/M -tent/FSIM -tenths -tenth/SY -tenting/F -tenuity/S -tenuousness/SM -tenuous/YP -tenure/SDM -Teodoor/M -Teodora/M -Teodorico/M -Teodor/M -Teodoro/M -tepee/MS -tepidity/S -tepidness/S -tepid/YP -tequila/SM -Tera/M -teratogenic -teratology/MS -terbium/SM -tercel/M -tercentenary/S -tercentennial/S -Terence/M -Terencio/M -Teresa/M -Terese/M -Tereshkova/M -Teresina/M -Teresita/M -Teressa/M -Teriann/M -Teri/M -Terkel/M -termagant/SM -termcap -termer/M -terminable/CPI -terminableness/IMC -terminal/SYM -terminate/CXNV -terminated/U -terminates -terminating -termination/MC -terminative/YC -terminator/SM -termini -terminological/Y -terminology/MS -terminus/M -termite/SM -term/MYRDGS -ternary/S -tern/GIDS -tern's -terpsichorean -Terpsichore/M -terrace/MGSD -terracing/M -terracotta -terrain/MS -Terra/M -terramycin -Terrance/M -Terran/M -terrapin/MS -terrarium/MS -terrazzo/SM -Terrell/M -Terrel/M -Terre/M -Terrence/M -terrestrial/YMS -terribleness/SM -terrible/P -terribly -Terrie/M -terrier/M -terrifically -terrific/Y -terrify/GDS -terrifying/Y -Terrijo/M -Terrill/M -Terri/M -terrine/M -territoriality/M -Territorial/SM -territorial/SY -Territory's -territory/SM -terrorism/MS -terroristic -terrorist/MS -terrorized/U -terrorizer/M -terrorize/RSDZG -terror/MS -terr/S -terrycloth -Terrye/M -Terry/M -terry/ZMRS -terseness/SM -terse/RTYP -Tersina/M -tertian -Tertiary -tertiary/S -Terza/M -TESL -Tesla/M -TESOL -Tessa/M -tessellate/XDSNG -tessellation/M -tesseral -Tessie/M -Tessi/M -Tess/M -Tessy/M -testability/M -testable/U -testamentary -testament/SM -testate/IS -testator/MS -testatrices -testatrix -testbed/S -testcard -tested/AKU -tester/MFCKS -testes/M -testicle/SM -testicular -testifier/M -testify/GZDRS -testily -testimonial/SM -testimony/SM -testiness/S -testing/S -testis/M -testosterone/SM -test/RDBFZGSC -tests/AK -test's/AKF -testy/RTP -tetanus/MS -tetchy/TR -tether/DMSG -tethered/U -Tethys/M -Tetons -tetrachloride/M -tetracycline/SM -tetrafluoride -tetragonal/Y -tetrahalides -tetrahedral/Y -tetrahedron/SM -tetrameron -tetrameter/SM -tetra/MS -tetrasodium -tetravalent -Teutonic -Teuton/SM -Texaco/M -Texan/S -Texas/MS -Tex/M -TeX/M -textbook/SM -text/FSM -textile/SM -Textron/M -textual/FY -textural/Y -textured/U -texture/MGSD -T/G -Thacher/M -Thackeray/M -Thaddeus/M -Thaddus/M -Thadeus/M -Thad/M -Thailand/M -Thaine/M -Thain/M -Thai/S -thalami -thalamus/M -Thales/M -Thalia/M -thalidomide/MS -thallium/SM -thallophyte/M -Thames -than -Thane/M -thane/SM -Thanh/M -thanker/M -thankfuller -thankfullest -thankfulness/SM -thankful/YP -thanklessness/SM -thankless/PY -thanksgiving/MS -Thanksgiving/S -thank/SRDG -Thant/M -Thar/M -Thatcher/M -thatching/M -thatch/JMDRSZG -Thatch/MR -that'd -that'll -that/MS -thaumaturge/M -thaw/DGS -Thaxter/M -Thayer/M -Thayne/M -THC -the -Theadora/M -Thea/M -theatergoer/MS -theatergoing/MS -theater/SM -theatricality/SM -theatrical/YS -theatric/S -theatrics/M -Thebault/M -Thebes -Theda/M -Thedrick/M -Thedric/M -thee/DS -theeing -theft/MS -Theiler/M -their/MS -theism/SM -theistic -theist/SM -Thekla/M -Thelma/M -themas -thematically -thematics -thematic/U -theme/MS -them/GD -Themistocles/M -themselves -thence -thenceforth -thenceforward/S -Theobald/M -theocracy/SM -theocratic -Theocritus/M -theodolite/MS -Theodora/M -Theodore/M -Theodoric/M -Theodor/M -Theodosia/M -Theodosian -Theodosius/M -theologian/SM -theological/Y -theologists -theology/MS -Theo/M -theorem/MS -theoretical/Y -theoretician/MS -theoretic/S -theoretics/M -theorist/SM -theorization/SM -theorize/ZGDRS -theory/MS -theosophic -theosophical -theosophist/MS -Theosophy -theosophy/SM -therapeutically -therapeutic/S -therapeutics/M -therapist/MS -therapy/MS -Theravada/M -thereabout/S -thereafter -thereat -thereby -there'd -therefor -therefore -therefrom -therein -there'll -there/MS -thereof -thereon -Theresa/M -Therese/M -Theresina/M -Theresita/M -Theressa/M -thereto -theretofore -thereunder -thereunto -thereupon -therewith -Therine/M -thermal/YS -thermionic/S -thermionics/M -thermistor/MS -therm/MS -thermocouple/MS -thermodynamical/Y -thermodynamic/S -thermodynamics/M -thermoelastic -thermoelectric -thermoformed -thermoforming -thermogravimetric -thermoluminescence/M -thermometer/MS -thermometric -thermometry/M -thermonuclear -thermopile/M -thermoplastic/S -thermopower -thermo/S -thermosetting -thermos/S -Thermos/SM -thermostable -thermostatically -thermostatic/S -thermostatics/M -thermostat/SM -thermostatted -thermostatting -Theron/M -thesauri -thesaurus/MS -these/S -Theseus/M -thesis/M -thespian/S -Thespian/S -Thespis/M -Thessalonian -Thessalonki/M -Thessaly/M -theta/MS -thew/SM -they -they'd -they'll -they're -they've -th/GNJX -Thia/M -thiamine/MS -Thibaud/M -Thibaut/M -thickener/M -thickening/M -thicken/RDJZG -thicket/SMD -thickheaded/M -thickish -thickness/MS -thickset/S -thick/TXPSRNY -thief/M -Thiensville/M -Thieu/M -thievery/MS -thieve/SDJG -thievishness/M -thievish/P -thighbone/SM -thigh/DM -thighs -thimble/DSMG -thimbleful/MS -Thimbu/M -Thimphu -thine -thingamabob/MS -thingamajig/SM -thing/MP -thinkableness/M -thinkable/U -thinkably/U -think/AGRS -thinker/MS -thinkingly/U -thinking/SMYP -thinned -thinner/MS -thinness/MS -thinnest -thinning -thinnish -thin/STPYR -thiocyanate/M -thiouracil/M -third/DYGS -thirster/M -thirst/GSMDR -thirstily -thirstiness/S -thirsty/TPR -thirteen/MHS -thirteenths -thirtieths -thirty/HMS -this -this'll -thistledown/MS -thistle/SM -thither -Th/M -tho -thole/GMSD -Thomasa/M -Thomasina/M -Thomasine/M -Thomasin/M -Thoma/SM -Thomism/M -Thomistic -Thom/M -Thompson/M -Thomson/M -thong/SMD -thoracic -thorax/MS -Thorazine -Thoreau/M -thoriate/D -Thorin/M -thorium/MS -Thor/M -Thornburg/M -Thorndike/M -Thornie/M -thorniness/S -Thorn/M -thorn/SMDG -Thornton/M -Thorny/M -thorny/PTR -thoroughbred/S -thoroughfare/MS -thoroughgoing -thoroughness/SM -thorough/PTYR -Thorpe/M -Thorstein/M -Thorsten/M -Thorvald/M -those -Thoth/M -thou/DSG -though -thoughtfully -thoughtfulness/S -thoughtful/U -thoughtlessness/MS -thoughtless/YP -thought/MS -thousandfold -thousand/SHM -thousandths -Thrace/M -Thracian/M -thralldom/S -thrall/GSMD -thrash/DSRZGJ -thrasher/M -thrashing/M -threadbare/P -threader/M -threading/A -threadlike -thread/MZDRGS -thready/RT -threatener/M -threaten/GJRD -threatening/Y -threat/MDNSXG -threefold -three/MS -threepence/M -threepenny -threescore/S -threesome/SM -threnody/SM -thresh/DSRZG -thresher/M -threshold/MDGS -threw -thrice -thriftily -thriftiness/S -thriftless -thrift/SM -thrifty/PTR -thriller/M -thrilling/Y -thrill/ZMGDRS -thriver/M -thrive/RSDJG -thriving/Y -throatily -throatiness/MS -throat/MDSG -throaty/PRT -throbbed -throbbing -throb/S -throeing -throe/SDM -thrombi -thromboses -thrombosis/M -thrombotic -thrombus/M -Throneberry/M -throne/CGSD -throne's -throng/GDSM -throttle/DRSZMG -throttler/M -throughout -throughput/SM -throughway's -through/Y -throwaway/SM -throwback/MS -thrower/M -thrown -throwout -throw/SZGR -thrummed -thrumming -thrum/S -thrush/MS -thruster/M -thrust/ZGSR -Thruway/MS -thruway/SM -Thunderbird/M -Thu -Thucydides/M -thudded -thudding -thud/MS -thuggee/M -thuggery/SM -thuggish -thug/MS -Thule/M -thulium/SM -thumbnail/MS -thumbscrew/SM -thumb/SMDG -thumbtack/GMDS -thump/RDMSG -thunderbolt/MS -thunderclap/SM -thundercloud/SM -thunderer/M -thunderhead/SM -thundering/Y -thunderous/Y -thundershower/MS -thunderstorm/MS -thunderstruck -thundery -thunder/ZGJDRMS -thunk -Thurber/M -Thurman/M -Thur/MS -Thursday/SM -Thurstan/M -Thurston/M -thus/Y -thwack/DRSZG -thwacker/M -thwarter/M -thwart/GSDRY -thy -thyme/SM -thymine/MS -thymus/SM -thyratron/M -thyristor/MS -thyroglobulin -thyroidal -thyroid/S -thyronine -thyrotoxic -thyrotrophic -thyrotrophin -thyrotropic -thyrotropin/M -thyroxine/M -thyself -Tia/M -Tianjin -tiara/MS -Tiberius/M -Tiber/M -Tibetan/S -Tibet/M -tibiae -tibial -tibia/M -Tibold/M -Tiburon/M -ticker/M -ticket/SGMD -tick/GZJRDMS -ticking/M -tickler/M -tickle/RSDZG -ticklishness/MS -ticklish/PY -ticktacktoe/S -ticktock/SMDG -tic/MS -Ticonderoga/M -tidal/Y -tidbit/MS -tiddlywinks/M -tide/GJDS -tideland/MS -tidewater/SM -tideway/SM -tidily/U -tidiness/USM -tidying/M -tidy/UGDSRPT -tie/AUDS -tieback/MS -Tiebold/M -Tiebout/M -tiebreaker/SM -Tieck/M -Tiena/M -Tienanmen/M -Tientsin's -tier/DGM -Tierney/M -Tiertza/M -Tiffanie/M -Tiffani/M -tiffany/M -Tiffany/M -tiff/GDMS -Tiffie/M -Tiffi/M -Tiff/M -Tiffy/M -tigerish -tiger/SM -tightener/M -tighten/JZGDR -tightfisted -tightness/MS -tightrope/SM -tight/STXPRNY -tightwad/MS -tigress/SM -Tigris/M -Tijuana/M -tike's -Tilda/M -tilde/MS -Tildie/M -Tildi/M -Tildy/M -tile/DRSJMZG -tiled/UE -Tiler/M -tiles/U -tiling/M -tillable -tillage/SM -till/EGSZDR -tiller/GDM -tiller's/E -Tillich/M -Tillie/M -Tillman/M -Tilly/M -tilth/M -tilt/RDSGZ -Ti/M -timber/DMSG -timbering/M -timberland/SM -timberline/S -timbrel/SM -timbre/MS -Timbuktu/M -ti/MDRZ -timebase -time/DRSJMYZG -timekeeper/MS -timekeeping/SM -timelessness/S -timeless/PY -timeliness/SMU -timely/UTRP -timeout/S -timepiece/MS -timer/M -timescale/S -timeserver/MS -timeserving/S -timeshare/SDG -timespan -timestamped -timestamps -timetable/GMSD -timeworn -Timex/M -timezone/S -timidity/SM -timidness/MS -timid/RYTP -Timi/M -timing/M -Timmie/M -Timmi/M -Tim/MS -Timmy/M -Timofei/M -Timon/M -timorousness/MS -timorous/YP -Timoteo/M -Timothea/M -Timothee/M -Timotheus/M -Timothy/M -timothy/MS -timpani -timpanist/S -Timur/M -Tina/M -tincture/SDMG -tinderbox/MS -tinder/MS -Tine/M -tine/SM -tinfoil/MS -tingeing -tinge/S -ting/GYDM -tingle/SDG -tingling/Y -tingly/TR -Ting/M -tinily -tininess/MS -tinker/SRDMZG -Tinkertoy -tinkle/SDG -tinkling/M -tinkly -tin/MDGS -tinned -tinner/M -tinnily -tinniness/SM -tinning/M -tinnitus/MS -tinny/RSTP -tinplate/S -tinsel/GMDYS -Tinseltown/M -tinsmith/M -tinsmiths -tinter/M -tintinnabulation/MS -Tintoretto/M -tint/SGMRDB -tintype/SM -tinware/MS -tiny/RPT -Tioga/M -Tiphanie/M -Tiphani/M -Tiphany/M -tipi's -tip/MS -tipoff -Tippecanoe/M -tipped -Tipperary/M -tipper/MS -tippet/MS -tipping -tippler/M -tipple/ZGRSD -tippy/R -tipsily -tipsiness/SM -tipster/SM -tipsy/TPR -tiptoeing -tiptoe/SD -tiptop/S -tirade/SM -Tirana's -Tirane -tired/AYP -tireder -tiredest -tiredness/S -tirelessness/SM -tireless/PY -tire/MGDSJ -tires/A -Tiresias/M -tiresomeness/S -tiresome/PY -tiring/AU -Tirolean/S -Tirol/M -tiro's -Tirrell/M -tis -Tisha/M -Tish/M -tissue/MGSD -titanate/M -Titania/M -titanic -titanically -Titanic/M -titanium/SM -titan/SM -Titan/SM -titbit's -titer/M -tither/M -tithe/SRDGZM -tithing/M -Titian/M -titian/S -Titicaca/M -titillate/XSDVNG -titillating/Y -titillation/M -titivate/NGDSX -titivation/M -titled/AU -title/GMSRD -titleholder/SM -titling/A -titmice -titmouse/M -tit/MRZS -Tito/SM -titrate/SDGN -titration/M -titted -titter/GDS -titting -tittle/SDMG -titular/SY -Titus/M -tizzy/SM -TKO -Tlaloc/M -TLC -Tlingit/M -Tl/M -TM -Tm/M -tn -TN -tnpk -TNT -toad/SM -toadstool/SM -toady/GSDM -toadyism/M -toaster/M -toastmaster/MS -toastmistress/S -toast/SZGRDM -toasty/TRS -tobacconist/SM -tobacco/SM -tobaggon/SM -Tobago/M -Tobe/M -Tobey/M -Tobiah/M -Tobias/M -Tobie/M -Tobi/M -Tobin/M -Tobit/M -toboggan/MRDSZG -Tobye/M -Toby/M -Tocantins/M -toccata/M -Tocqueville -tocsin/MS -to/D -today'll -today/SM -Toddie/M -toddler/M -toddle/ZGSRD -Todd/M -Toddy/M -toddy/SM -Tod/M -toecap/SM -toeclip/S -TOEFL -toehold/MS -toeing -toe/MS -toenail/DMGS -toffee/SM -tofu/S -toga/SMD -toge -togetherness/MS -together/P -togged -togging -toggle/SDMG -Togolese/M -Togo/M -tog/SMG -Toiboid/M -toilet/GMDS -toiletry/MS -toilette/SM -toil/SGZMRD -toilsomeness/M -toilsome/PY -Toinette/M -Tojo/M -tokamak -Tokay/M -toke/GDS -tokenism/SM -tokenized -token/SMDG -Tokugawa/M -Tokyoite/MS -Tokyo/M -Toland/M -told/AU -Toledo/SM -tole/MGDS -tolerability/IM -tolerable/I -tolerably/I -tolerance/SIM -tolerant/IY -tolerate/XVNGSD -toleration/M -Tolkien -tollbooth/M -tollbooths -toll/DGS -Tolley/M -tollgate/MS -tollhouse/M -tollway/S -Tolstoy/M -toluene/MS -Tolyatti/M -tomahawk/SGMD -Tomasina/M -Tomasine/M -Toma/SM -Tomaso/M -tomatoes -tomato/M -Tombaugh/M -tomb/GSDM -Tombigbee/M -tomblike -tombola/M -tomboyish -tomboy/MS -tombstone/MS -tomcat/SM -tomcatted -tomcatting -Tome/M -tome/SM -tomfoolery/MS -tomfool/M -Tomi/M -Tomkin/M -Tomlin/M -Tom/M -tommed -Tommie/M -Tommi/M -tomming -tommy/M -Tommy/M -tomographic -tomography/MS -tomorrow/MS -Tompkins/M -Tomsk/M -tom/SM -tomtit/SM -tonality/MS -tonal/Y -tonearm/S -tone/ISRDZG -tonelessness/M -toneless/YP -toner/IM -tone's -Tonga/M -Tongan/SM -tong/GRDS -tongueless -tongue/SDMG -tonguing/M -Tonia/M -tonic/SM -Tonie/M -tonight/MS -Toni/M -Tonio/M -tonk/MS -tonnage/SM -tonne/MS -Tonnie/M -tonsillectomy/MS -tonsillitis/SM -tonsil/SM -ton/SKM -tonsorial -tonsure/SDGM -Tonto/M -Tonya/M -Tonye/M -Tony/M -tony/RT -toodle -too/H -took/A -tool/AGDS -toolbox/SM -tooler/SM -tooling/M -toolkit/SM -toolmaker/M -toolmake/ZRG -toolmaking/M -tool's -toolsmith -Toomey/M -tooter/M -toot/GRDZS -toothache/SM -toothbrush/MSG -tooth/DMG -toothily -toothless -toothmarks -toothpaste/SM -toothpick/MS -tooths -toothsome -toothy/TR -tootle/SRDG -tootsie -Tootsie/M -toots/M -tootsy/MS -topaz/MS -topcoat/MS -topdressing/S -Topeka/M -toper/M -topflight -topgallant/M -topiary/S -topicality/MS -topical/Y -topic/MS -topknot/MS -topless -topmast/MS -topmost -topnotch/R -topocentric -topographer/SM -topographic -topographical/Y -topography/MS -topological/Y -topologist/MS -topology/MS -topped -topper/MS -topping/MS -topple/GSD -topsail/MS -topside/SRM -top/SMDRG -topsoil/GDMS -topspin/MS -Topsy/M -toque/MS -Torah/M -Torahs -torchbearer/SM -torchlight/S -torch/SDMG -toreador/SM -Tore/M -tore/S -Torey/M -Torie/M -tori/M -Tori/M -Torin/M -torment/GSD -tormenting/Y -tormentor/MS -torn -tornadoes -tornado/M -toroidal/Y -toroid/MS -Toronto/M -torpedoes -torpedo/GMD -torpidity/S -torpid/SY -torpor/MS -Torquemada/M -torque/MZGSRD -Torrance/M -Torre/MS -torrence -Torrence/M -Torrens/M -torrential -torrent/MS -Torrey/M -Torricelli/M -torridity/SM -torridness/SM -torrid/RYTP -Torrie/M -Torrin/M -Torr/XM -Torry/M -torsional/Y -torsion/IAM -torsions -torsi's -tor/SLM -torso/SM -tors/S -tort/ASFE -tortellini/MS -torte/MS -torten -tortilla/MS -tortoiseshell/SM -tortoise/SM -Tortola/M -tortoni/MS -tort's -Tortuga/M -tortuousness/MS -tortuous/PY -torture/ZGSRD -torturous -torus/MS -Tory/SM -Tosca/M -Toscanini/M -Toshiba/M -toss/SRDGZ -tossup/MS -totaler/M -totalistic -totalitarianism/SM -totalitarian/S -totality/MS -totalizator/S -totalizing -total/ZGSRDYM -totemic -totem/MS -toter/M -tote/S -toting/M -tot/MDRSG -Toto/M -totted -totterer/M -tottering/Y -totter/ZGRDS -totting -toucan/MS -touchable/U -touch/ASDG -touchdown/SM -touch -touched/U -toucher/M -touchily -touchiness/SM -touching/SY -touchline/M -touchscreen -touchstone/SM -touchy/TPR -toughen/DRZG -toughener/M -toughness/SM -toughs -tough/TXGRDNYP -Toulouse/M -toupee/SM -toured/CF -tourer/M -tour/GZSRDM -touring/F -tourism/SM -touristic -tourist/SM -touristy -tourmaline/SM -tournament/MS -tourney/GDMS -tourniquet/MS -tour's/CF -tours/CF -tousle/GSD -touter/M -tout/SGRD -Tova/M -Tove/M -towardliness/M -towardly/P -towards -toward/YU -towboat/MS -tow/DRSZG -towelette/S -towel/GJDMS -toweling/M -tower/GMD -towering/Y -towhead/MSD -towhee/SM -towline/MS -towner/M -Townes -Towney/M -townhouse/S -Townie/M -townie/S -Townley/M -Town/M -Townsend/M -townsfolk -township/MS -townsman/M -townsmen -townspeople/M -town/SRM -townswoman/M -townswomen -Towny/M -towpath/M -towpaths -towrope/MS -Towsley/M -toxemia/MS -toxicity/MS -toxicological -toxicologist/SM -toxicology/MS -toxic/S -toxin/MS -toyer/M -toymaker -toy/MDRSG -Toynbee/M -Toyoda/M -Toyota/M -toyshop -tr -traceability/M -traceableness/M -traceable/P -trace/ASDG -traceback/MS -traced/U -Tracee/M -traceless/Y -Trace/M -tracepoint/SM -tracer/MS -tracery/MDS -trace's -Tracey/M -tracheae -tracheal/M -trachea/M -tracheotomy/SM -Tracie/M -Traci/M -tracing/SM -trackage -trackball/S -trackbed -tracked/U -tracker/M -trackless -tracksuit/SM -track/SZGMRD -tractability/SI -tractable/I -tractably/I -tract/ABS -Tractarians -traction/KSCEMAF -tractive/KFE -tractor/FKMASC -tract's -tracts/CEFK -Tracy/M -trademark/GSMD -trader/M -tradesman/M -tradesmen -tradespeople -tradespersons -trade/SRDGZM -tradeswoman/M -tradeswomen -traditionalism/MS -traditionalistic -traditionalist/MS -traditionalized -traditionally -traditional/U -tradition/SM -traduce/DRSGZ -Trafalgar/M -trafficked -trafficker/MS -trafficking/S -traffic/SM -tragedian/SM -tragedienne/MS -tragedy/MS -tragically -tragicomedy/SM -tragicomic -tragic/S -trailblazer/MS -trailblazing/S -trailer/GDM -trails/F -trailside -trail/SZGJRD -trainable -train/ASDG -trained/U -trainee/MS -traineeships -trainer/MS -training/SM -trainman/M -trainmen -trainspotter/S -traipse/DSG -trait/MS -traitorous/Y -traitor/SM -Trajan/M -trajectory/MS -trammed -trammeled/U -trammel/GSD -tramming -tram/MS -trample/DGRSZ -trampler/M -trampoline/GMSD -tramp/RDSZG -tramway/M -trance/MGSD -tranche/SM -Tran/M -tranquility/S -tranquilized/U -tranquilize/JGZDSR -tranquilizer/M -tranquilizes/A -tranquilizing/YM -tranquillize/GRSDZ -tranquillizer/M -tranquilness/M -tranquil/PTRY -transact/GSD -transactional -transaction/MS -transactor/SM -transalpine -transaminase -transatlantic -Transcaucasia/M -transceiver/SM -transcendence/MS -transcendentalism/SM -transcendentalist/SM -transcendental/YS -transcendent/Y -transcend/SDG -transconductance -transcontinental -transcribe/DSRGZ -transcriber/M -transcription/SM -transcript/SM -transcultural -transducer/SM -transduction/M -transect/DSG -transept/SM -transferability/M -transferal/MS -transfer/BSMD -transferee/M -transference/SM -transferor/MS -transferral/SM -transferred -transferrer/SM -transferring -transfiguration/SM -transfigure/SDG -transfinite/Y -transfix/SDG -transformational -transformation/MS -transform/DRZBSG -transformed/U -transformer/M -transfuse/XSDGNB -transfusion/M -transgression/SM -transgressor/S -transgress/VGSD -trans/I -transience/SM -transiency/S -transient/YS -transistorize/GDS -transistor/SM -Transite/M -transitional/Y -transition/MDGS -transitivenesses -transitiveness/IM -transitive/PIY -transitivity/MS -transitoriness/M -transitory/P -transit/SGVMD -transl -translatability/M -translatable/U -translated/AU -translate/VGNXSDB -translational -translation/M -translator/SM -transliterate/XNGSD -translucence/SM -translucency/MS -translucent/Y -transmigrate/XNGSD -transmissible -transmission/MSA -transmissive -transmit/AS -transmittable -transmittal/SM -transmittance/MS -transmitted/A -transmitter/SM -transmitting/A -transmogrification/M -transmogrify/GXDSN -transmutation/SM -transmute/GBSD -transnational/S -transoceanic -transom/SM -transonic -transpacific -transparency/MS -transparentness/M -transparent/YP -transpiration/SM -transpire/GSD -transplantation/S -transplant/GRDBS -transpolar -transponder/MS -transportability -transportable/U -transportation/SM -transport/BGZSDR -transpose/BGSD -transposed/U -transposition/SM -Transputer/M -transsexualism/MS -transsexual/SM -transship/LS -transshipment/SM -transshipped -transshipping -transubstantiation/MS -Transvaal/M -transversal/YM -transverse/GYDS -transvestism/SM -transvestite/SM -transvestitism -Transylvania/M -trapdoor/S -trapeze/DSGM -trapezium/MS -trapezoidal -trapezoid/MS -trap/MS -trappable/U -trapped -trapper/SM -trapping/S -Trappist/MS -trapshooting/SM -trashcan/SM -trashiness/SM -trash/SRDMG -trashy/TRP -Trastevere/M -trauma/MS -traumatic -traumatically -traumatize/SDG -travail/SMDG -traveled/U -traveler/M -travelog's -travelogue/S -travel/SDRGZJ -Traver/MS -traversal/SM -traverse/GBDRS -traverser/M -travertine/M -travesty/SDGM -Travis/M -Travus/M -trawler/M -trawl/RDMSZG -tray/SM -treacherousness/SM -treacherous/PY -treachery/SM -treacle/DSGM -treacly -treader/M -treadle/GDSM -treadmill/MS -tread/SAGD -Treadwell/M -treas -treason/BMS -treasonous -treasure/DRSZMG -treasurer/M -treasurership -treasury/SM -Treasury/SM -treatable -treated/U -treater/S -treatise/MS -treatment/MS -treat's -treat/SAGDR -treaty/MS -treble/SDG -Treblinka/M -treeing -treeless -treelike -tree/MDS -treetop/SM -trefoil/SM -Trefor/M -trekked -trekker/MS -Trekkie/M -trekking -trek/MS -trellis/GDSM -Tremaine/M -Tremain/M -trematode/SM -Tremayne/M -tremble/JDRSG -trembler/M -trembles/M -trembly -tremendousness/M -tremendous/YP -tremolo/MS -tremor/MS -tremulousness/SM -tremulous/YP -trenchancy/MS -trenchant/Y -trencherman/M -trenchermen -trencher/SM -trench/GASD -trench's -trendily -trendiness/S -trend/SDMG -trendy/PTRS -Trenna/M -Trent/M -Trenton/M -trepanned -trepidation/MS -Tresa/M -Trescha/M -trespasser/M -trespass/ZRSDG -Tressa/M -tressed/E -tresses/E -tressing/E -tress/MSDG -trestle/MS -Trevar/M -Trevelyan/M -Trever/M -Trevino/M -Trevor/M -Trev/RM -Trey/M -trey/MS -triableness/M -triable/P -triadic -triad/MS -triage/SDMG -trial/ASM -trialization -trialled -trialling -triamcinolone -triangle/SM -triangulable -triangularization/S -triangular/Y -triangulate/YGNXSD -triangulation/M -Triangulum/M -Trianon/M -Triassic -triathlon/S -triatomic -tribalism/MS -tribal/Y -tribe/MS -tribesman/M -tribesmen -tribeswoman -tribeswomen -tribulate/NX -tribulation/M -tribunal/MS -tribune/SM -tributary/MS -tribute/EGSF -tribute's -trice/GSDM -tricentennial/S -triceps/SM -triceratops/M -trichinae -trichina/M -trichinoses -trichinosis/M -trichloroacetic -trichloroethane -trichotomy/M -trichromatic -Tricia/M -trickery/MS -trick/GMSRD -trickily -trickiness/SM -trickle/DSG -trickster/MS -tricky/RPT -tricolor/SMD -tricycle/SDMG -trident/SM -tridiagonal -tried/UA -triennial/SY -trier/AS -trier's -tries/A -Trieste/M -triffid/S -trifle/MZGJSRD -trifler/M -trifluoride/M -trifocals -trigged -trigger/GSDM -triggest -trigging -triglyceride/MS -trigonal/Y -trigonometric -trigonometrical -trigonometry/MS -trigram/S -trig/S -trihedral -trike/GMSD -trilateral/S -trilby/SM -trilingual -trillion/SMH -trillionth/M -trillionths -trillium/SM -trill/RDMGS -trilobite/MS -trilogy/MS -trimaran/MS -Trimble/M -trimer/M -trimester/MS -trimmed/U -trimmer/MS -trimmest -trimming/MS -trimness/S -trimodal -trimonthly -trim/PSYR -Trimurti/M -Trina/M -Trinidad/M -trinitarian/S -trinitrotoluene/SM -trinity/MS -Trinity/MS -trinketer/M -trinket/MRDSG -triode/MS -trio/SM -trioxide/M -tripartite/N -tripartition/M -tripe/MS -triphenylarsine -triphenylphosphine -triphenylstibine -triphosphopyridine -triple/GSD -triplet/SM -triplex/S -triplicate/SDG -triplication/M -triply/GDSN -Trip/M -tripodal -tripod/MS -tripoli/M -Tripoli/M -tripolyphosphate -tripos/SM -tripped -Trippe/M -tripper/MS -tripping/Y -Tripp/M -trip/SMY -triptych/M -triptychs -tripwire/MS -trireme/SM -Tris -trisect/GSD -trisection/S -trisector -Trisha/M -Trish/M -trisodium -Trista/M -Tristam/M -Tristan/M -tristate -trisyllable/M -tritely/F -triteness/SF -trite/SRPTY -tritium/MS -triton/M -Triton/M -triumphal -triumphalism -triumphant/Y -triumph/GMD -triumphs -triumvirate/MS -triumvir/MS -triune -trivalent -trivet/SM -trivia -triviality/MS -trivialization/MS -trivialize/DSG -trivial/Y -trivium/M -Trixie/M -Trixi/M -Trix/M -Trixy/M -Trobriand/M -trochaic/S -trochee/SM -trod/AU -trodden/UA -trodes -troff/MR -troglodyte/MS -troika/SM -Trojan/MS -troll/DMSG -trolled/F -trolleybus/S -trolley/SGMD -trolling/F -trollish -Trollope/M -trollop/GSMD -trolly's -trombone/MS -trombonist/SM -tromp/DSG -Trondheim/M -trooper/M -troopship/SM -troop/SRDMZG -trope/SM -Tropez/M -trophic -trophy/MGDS -tropical/SY -tropic/MS -tropism/SM -tropocollagen -troposphere/MS -tropospheric -troth/GDM -troths -trot/S -Trotsky/M -trotted -trotter/SM -trotting -troubadour/SM -troubled/U -trouble/GDRSM -troublemaker/MS -troubler/M -troubleshooter/M -troubleshoot/SRDZG -troubleshot -troublesomeness/M -troublesome/YP -trough/M -troughs -trounce/GZDRS -trouncer/M -troupe/MZGSRD -trouper/M -trouser/DMGS -trousseau/M -trousseaux -Troutman/M -trout/SM -trove/SM -troweler/M -trowel/SMDRGZ -trow/SGD -Troyes -Troy/M -troy/S -Trstram/M -truancy/MS -truant/SMDG -truce/SDGM -Truckee/M -trucker/M -trucking/M -truckle/GDS -truckload/MS -truck/SZGMRDJ -truculence/SM -truculent/Y -Truda/M -Trudeau/M -Trude/M -Trudey/M -trudge/SRDG -Trudie/M -Trudi/M -Trudy/M -true/DRSPTG -truelove/MS -Trueman/M -trueness/M -truer/U -truest/U -truffle/MS -truism/SM -Trujillo/M -Trula/M -truly/U -Trumaine/M -Truman/M -Trumann/M -Trumbull/M -trump/DMSG -trumpery/SM -trumpeter/M -trumpet/MDRZGS -Trump/M -truncate/NGDSX -truncation/M -truncheon/MDSG -trundle/GZDSR -trundler/M -trunk/GSMD -trunnion/SM -trusser/M -trussing/M -truss/SRDG -trusted/EU -trusteeing -trustee/MDS -trusteeship/SM -truster/M -trustful/EY -trustfulness/SM -trustiness/M -trusting/Y -trust/RDMSG -trusts/E -trustworthier -trustworthiest -trustworthiness/MS -trustworthy/UP -trusty/PTMSR -Truth -truthfulness/US -truthful/UYP -truths/U -truth/UM -TRW -trying/Y -try/JGDRSZ -tryout/MS -trypsin/M -tryst/GDMS -ts -T's -tsarevich -tsarina's -tsarism/M -tsarist -tsetse/S -Tsimshian/M -Tsiolkovsky/M -Tsitsihar/M -tsp -tsunami/MS -Tsunematsu/M -Tswana/M -TTL -tty/M -ttys -Tuamotu/M -Tuareg/M -tubae -tubal -tuba/SM -tubbed -tubbing -tubby/TR -tubeless -tubercle/MS -tubercular/S -tuberculin/MS -tuberculoses -tuberculosis/M -tuberculous -tuber/M -tuberose/SM -tuberous -tube/SM -tubing/M -tub/JMDRSZG -Tubman/M -tubular/Y -tubule/SM -tucker/GDM -Tucker/M -tuck/GZSRD -Tuckie/M -Tuck/RM -Tucky/M -Tucson/M -Tucuman/M -Tudor/MS -Tue/S -Tuesday/SM -tufter/M -tuft/GZSMRD -tufting/M -tugboat/MS -tugged -tugging -tug/S -tuition/ISM -Tulane/M -tularemia/S -tulip/SM -tulle/SM -Tulley/M -Tull/M -Tully/M -Tulsa/M -tum -tumbledown -tumbler/M -tumbleweed/MS -tumble/ZGRSDJ -tumbrel/SM -tumescence/S -tumescent -tumidity/MS -tumid/Y -tummy/SM -tumor/MDS -tumorous -Tums/M -tumult/SGMD -tumultuousness/M -tumultuous/PY -tumulus/M -tunableness/M -tunable/P -tuna/SM -tundra/SM -tun/DRJZGBS -tune/CSDG -tunefulness/MS -tuneful/YP -tuneless/Y -tuner/M -tune's -tuneup/S -tung -tungstate/M -tungsten/SM -Tunguska/M -Tungus/M -tunic/MS -tuning/A -tuning's -Tunisia/M -Tunisian/S -Tunis/M -tunned -tunneler/M -tunnel/MRDSJGZ -tunning -tunny/SM -tupelo/M -Tupi/M -tuple/SM -tuppence/M -Tupperware -Tupungato/M -turban/SDM -turbid -turbidity/SM -turbinate/SD -turbine/SM -turbocharged -turbocharger/SM -turbofan/MS -turbojet/MS -turboprop/MS -turbo/SM -turbot/MS -turbulence/SM -turbulent/Y -turd/MS -tureen/MS -turf/DGSM -turfy/RT -Turgenev/M -turgidity/SM -turgidness/M -turgid/PY -Turing/M -Turin/M -Turkestan/M -Turkey/M -turkey/SM -Turkic/SM -Turkish -Turkmenistan/M -turk/S -Turk/SM -turmeric/MS -turmoil/SDMG -turnabout/SM -turnaround/MS -turn/AZGRDBS -turnbuckle/SM -turncoat/SM -turned/U -turner/M -Turner/M -turning/MS -turnip/SMDG -turnkey/MS -turnoff/MS -turnout/MS -turnover/SM -turnpike/MS -turnround/MS -turnstile/SM -turnstone/M -turntable/SM -turpentine/GMSD -Turpin/M -turpitude/SM -turquoise/SM -turret/SMD -turtleback/MS -turtledove/MS -turtleneck/SDM -turtle/SDMG -turves's -turvy -Tuscaloosa/M -Tuscan -Tuscany/M -Tuscarora/M -Tuscon/M -tush/SDG -Tuskegee/M -tusker/M -tusk/GZRDMS -tussle/GSD -tussock/MS -tussocky -Tussuad/M -Tutankhamen/M -tutelage/MS -tutelary/S -Tut/M -tutored/U -tutorial/MS -tutor/MDGS -tutorship/S -tut/S -Tutsi -tutted -tutting -tutti/S -Tuttle/M -tutu/SM -Tuvalu -tuxedo/SDM -tux/S -TVA -TV/M -TVs -twaddle/GZMRSD -twaddler/M -Twain/M -twain/S -TWA/M -twang/MDSG -twangy/TR -twas -tweak/SGRD -tweediness/M -Tweedledee/M -Tweedledum/M -Tweed/M -twee/DP -tweed/SM -tweedy/PTR -tween -tweeter/M -tweet/ZSGRD -tweezer/M -tweeze/ZGRD -twelfth -twelfths -twelvemonth/M -twelvemonths -twelve/MS -twentieths -twenty/MSH -twerp/MS -twice/R -twiddle/GRSD -twiddler/M -twiddly/RT -twigged -twigging -twiggy/RT -twig/SM -Twila/M -twilight/MS -twilit -twill/SGD -twiner/M -twine/SM -twinge/SDMG -Twinkie -twinkler/M -twinkle/RSDG -twinkling/M -twinkly -twinned -twinning -twin/RDMGZS -twirler/M -twirling/Y -twirl/SZGRD -twirly/TR -twisted/U -twister/M -twists/U -twist/SZGRD -twisty -twitch/GRSD -twitchy/TR -twit/S -twitted -twitterer/M -twitter/SGRD -twittery -twitting -twixt -twofer/MS -twofold/S -two/MS -twopence/SM -twopenny/S -twosome/MS -twp -Twp -TWX -Twyla/M -TX -t/XTJBG -Tybalt/M -Tybie/M -Tybi/M -tycoon/MS -tyeing -Tye/M -tying/UA -tyke/SM -Tylenol/M -Tyler/M -Ty/M -Tymon/M -Tymothy/M -tympani -tympanist/SM -tympanum/SM -Tynan/M -Tyndale/M -Tyndall/M -Tyne/M -typeahead -typecast/SG -typed/AU -typedef/S -typeface/MS -typeless -type/MGDRSJ -types/A -typescript/SM -typeset/S -typesetter/MS -typesetting/SM -typewriter/M -typewrite/SRJZG -typewriting/M -typewritten -typewrote -typhoid/SM -Typhon/M -typhoon/SM -typhus/SM -typicality/MS -typically -typicalness/M -typical/U -typification/M -typify/SDNXG -typing/A -typist/MS -typographer/SM -typographic -typographical/Y -typography/MS -typological/Y -typology/MS -typo/MS -tyrannic -tyrannicalness/M -tyrannical/PY -tyrannicide/M -tyrannizer/M -tyrannize/ZGJRSD -tyrannizing/YM -tyrannosaur/MS -tyrannosaurus/S -tyrannous -tyranny/MS -tyrant/MS -Tyree/M -tyreo -Tyrolean/S -Tyrol's -Tyrone/M -tyrosine/M -tyro/SM -Tyrus/M -Tyson/M -tzarina's -tzar's -Tzeltal/M -u -U -UAR -UART -UAW -Ubangi/M -ubiquitous/YP -ubiquity/S -Ucayali/M -Uccello/M -UCLA/M -Udale/M -Udall/M -udder/SM -Udell/M -Ufa/M -ufologist/S -ufology/MS -UFO/S -Uganda/M -Ugandan/S -ugh -ughs -uglification -ugliness/MS -uglis -ugly/PTGSRD -Ugo/M -uh -UHF -Uighur -Ujungpandang/M -UK -ukase/SM -Ukraine/M -Ukrainian/S -ukulele/SM -UL -Ula/M -Ulberto/M -ulcerate/NGVXDS -ulceration/M -ulcer/MDGS -ulcerous -Ulick/M -Ulises/M -Ulla/M -Ullman/M -ulnae -ulna/M -ulnar -Ulrica/M -Ulrich/M -Ulrick/M -Ulric/M -Ulrika/M -Ulrikaumeko/M -Ulrike/M -Ulster/M -ulster/MS -ult -ulterior/Y -ultimas -ultimate/DSYPG -ultimateness/M -ultimatum/MS -ultimo -ultracentrifugally -ultracentrifugation -ultracentrifuge/M -ultraconservative/S -ultrafast -ultrahigh -ultralight/S -ultramarine/SM -ultramodern -ultramontane -ultra/S -ultrashort -ultrasonically -ultrasonic/S -ultrasonics/M -ultrasound/SM -ultrastructure/M -Ultrasuede -ultraviolet/SM -Ultrix/M -ULTRIX/M -ululate/DSXGN -ululation/M -Ulyanovsk/M -Ulysses/M -um -umbel/MS -umber/GMDS -Umberto/M -umbilical/S -umbilici -umbilicus/M -umbrage/MGSD -umbrageous -umbra/MS -umbrella/GDMS -Umbriel/M -Umeko/M -umiak/MS -umlaut/GMDS -umpire/MGSD -ump/MDSG -umpteen/H -UN -unabated/Y -unabridged/S -unacceptability -unacceptable -unaccepted -unaccommodating -unaccountability -unaccustomed/Y -unadapted -unadulterated/Y -unadventurous -unalienability -unalterableness/M -unalterable/P -unalterably -Una/M -unambiguity -unambiguous -unambitious -unamused -unanimity/SM -unanimous/Y -unanticipated/Y -unapologetic -unapologizing/M -unappeasable -unappeasably -unappreciative -unary -unassailableness/M -unassailable/P -unassertive -unassumingness/M -unassuming/PY -unauthorized/PY -unavailing/PY -unaware/SPY -unbalanced/P -unbar -unbarring -unbecoming/P -unbeknown -unbelieving/Y -unbiased/P -unbid -unbind/G -unblessed -unblinking/Y -unbodied -unbolt/G -unbreakability -unbred -unbroken -unbuckle -unbudging/Y -unburnt -uncap -uncapping -uncatalogued -uncauterized/MS -unceasing/Y -uncelebrated -uncertain/P -unchallengeable -unchangingness/M -unchanging/PY -uncharacteristic -uncharismatic -unchastity -unchristian -uncial/S -uncivilized/Y -unclassified -uncle/MSD -unclouded/Y -uncodable -uncollected -uncoloredness/M -uncolored/PY -uncombable -uncommunicative -uncompetitive -uncomplicated -uncomprehending/Y -uncompromisable -unconcerned/P -unconcern/M -unconfirmed -unconfused -unconscionableness/M -unconscionable/P -unconscionably -unconstitutional -unconsumed -uncontentious -uncontrollability -unconvertible -uncool -uncooperative -uncork/G -uncouple/G -uncouthness/M -uncouth/YP -uncreate/V -uncritical -uncross/GB -uncrowded -unction/IM -unctions -unctuousness/MS -unctuous/PY -uncustomary -uncut -undated/I -undaunted/Y -undeceive -undecided/S -undedicated -undefinability -undefinedness/M -undefined/P -undelete -undeliverability -undeniableness/M -undeniable/P -undeniably -undependable -underachiever/M -underachieve/SRDGZ -underact/GDS -underadjusting -underage/S -underarm/DGS -underbedding -underbelly/MS -underbidding -underbid/S -underbracing -underbrush/MSDG -undercarriage/MS -undercharge/GSD -underclassman -underclassmen -underclass/S -underclothes -underclothing/MS -undercoating/M -undercoat/JMDGS -underconsumption/M -undercooked -undercount/S -undercover -undercurrent/SM -undercut/S -undercutting -underdeveloped -underdevelopment/MS -underdog/MS -underdone -undereducated -underemphasis -underemployed -underemployment/SM -underenumerated -underenumeration -underestimate/NGXSD -underexploited -underexpose/SDG -underexposure/SM -underfed -underfeed/SG -underfloor -underflow/GDMS -underfoot -underfund/DG -underfur/MS -undergarment/SM -undergirding -undergoes -undergo/G -undergone -undergrad/MS -undergraduate/MS -underground/RMS -undergrowth/M -undergrowths -underhand/D -underhandedness/MS -underhanded/YP -underheat -underinvestment -underlaid -underlain/S -underlay/GS -underlie -underline/GSDJ -underling/MS -underlip/SM -underloaded -underly/GS -undermanned -undermentioned -undermine/SDG -undermost -underneath -underneaths -undernourished -undernourishment/SM -underpaid -underpants -underpart/MS -underpass/SM -underpay/GSL -underpayment/SM -underperformed -underpinned -underpinning/MS -underpin/S -underplay/SGD -underpopulated -underpopulation/M -underpowered -underpricing -underprivileged -underproduction/MS -underrate/GSD -underregistration/M -underreported -underreporting -underrepresentation/M -underrepresented -underscore/SDG -undersealed -undersea/S -undersecretary/SM -undersell/SG -undersexed -undershirt/SM -undershoot/SG -undershorts -undershot -underside/SM -undersigned/M -undersign/SGD -undersized -undersizes -undersizing -underskirt/MS -undersold -underspecification -underspecified -underspend/G -understaffed -understandability/M -understandably -understanding/YM -understand/RGSJB -understate/GSDL -understatement/MS -understocked -understood -understrength -understructure/SM -understudy/GMSD -undertaken -undertaker/M -undertake/SRGZJ -undertaking/M -underthings -undertone/SM -undertook -undertow/MS -underused -underusing -underutilization/M -underutilized -undervaluation/S -undervalue/SDG -underwater/S -underway -underwear/M -underweight/S -underwent -underwhelm/DGS -underwood/M -Underwood/M -underworld/MS -underwrite/GZSR -underwriter/M -underwritten -underwrote -under/Y -undeserving -undesigned -undeviating/Y -undialyzed/SM -undiplomatic -undiscerning -undiscriminating -undo/GJ -undoubted/Y -undramatic -undramatized/SM -undress/G -undrinkability -undrinkable -undroppable -undue -undulant -undulate/XDSNG -undulation/M -unearthliness/S -unearthly/P -unearth/YG -unease -uneconomic -uneducated -unemployed/S -unencroachable -unending/Y -unendurable/P -unenergized/MS -unenforced -unenterprising -UNESCO -unethical -uneulogized/SM -unexacting -unexceptionably -unexcited -unexpectedness/MS -unfading/Y -unfailingness/M -unfailing/P -unfamiliar -unfashionable -unfathomably -unfavored -unfeeling -unfeigned/Y -unfelt -unfeminine -unfertile -unfetchable -unflagging -unflappability/S -unflappable -unflappably -unflinching/Y -unfold/LG -unfoldment/M -unforced -unforgeable -unfossilized/MS -unfraternizing/SM -unfrozen -unfulfillable -unfunny -unfussy -ungainliness/MS -ungainly/PRT -Ungava/M -ungenerous -ungentle -unglamorous -ungrammaticality -ungrudging -unguent/MS -ungulate/MS -unharmonious -unharness/G -unhistorical -unholy/TP -unhook/DG -unhydrolyzed/SM -unhygienic -Unibus/M -unicameral -UNICEF -unicellular -Unicode/M -unicorn/SM -unicycle/MGSD -unicyclist/MS -unideal -unidimensional -unidiomatic -unidirectionality -unidirectional/Y -unidolized/MS -unifiable -unification/MA -unifier/MS -unifilar -uniformity/MS -uniformness/M -uniform/TGSRDYMP -unify/AXDSNG -unilateralism/M -unilateralist -unilateral/Y -unimodal -unimpeachably -unimportance -unimportant -unimpressive -unindustrialized/MS -uninhibited/YP -uninominal -uninsured -unintellectual -unintended -uninteresting -uninterruptedness/M -uninterrupted/YP -unintuitive -uninviting -union/AEMS -unionism/SM -unionist/SM -Unionist/SM -unionize -Union/MS -UniPlus/M -unipolar -uniprocessor/SM -uniqueness/S -unique/TYSRP -Uniroyal/M -unisex/S -UniSoft/M -unison/MS -Unisys/M -unitarianism/M -Unitarianism/SM -unitarian/MS -Unitarian/MS -unitary -unite/AEDSG -united/Y -uniter/M -unitize/GDS -unit/VGRD -unity/SEM -univ -Univac/M -univalent/S -univalve/MS -univariate -universalism/M -universalistic -universality/SM -universalize/DSRZG -universalizer/M -universal/YSP -universe/MS -university/MS -Unix/M -UNIX/M -unjam -unkempt -unkind/TP -unkink -unknightly -unknowable/S -unknowing -unlabored -unlace/G -unlearn/G -unlikeable -unlikeliness/S -unlimber/G -unlimited -unlit -unliterary -unloose/G -unlucky/TP -unmagnetized/MS -unmanageably -unmannered/Y -unmask/G -unmeaning -unmeasured -unmeetable -unmelodious -unmemorable -unmemorialized/MS -unmentionable/S -unmerciful -unmeritorious -unmethodical -unmineralized/MS -unmissable -unmistakably -unmitigated/YP -unmnemonic -unmobilized/SM -unmoral -unmount/B -unmovable -unmoving -unnaturalness/M -unnavigable -unnerving/Y -unobliging -unoffensive -unofficial -unorganized/YP -unorthodox -unpack/G -unpaintable -unpalatability -unpalatable -unpartizan -unpatronizing -unpeople -unperceptive -unperson -unperturbed/Y -unphysical -unpick/G -unpicturesque -unpinning -unpleasing -unploughed -unpolarized/SM -unpopular -unpractical -unprecedented/Y -unpredictable/S -unpreemphasized -unpremeditated -unpretentiousness/M -unprincipled/P -unproblematic -unproductive -unpropitious -unprovable -unproven -unprovocative -unpunctual -unquestionable -unraisable -unravellings -unreadability -unread/B -unreal -unrealizable -unreasoning/Y -unreceptive -unrecordable -unreflective -unrelenting/Y -unremitting/Y -unrepeatability -unrepeated -unrepentant -unreported -unrepresentative -unreproducible -unrest/G -unrestrained/P -unrewarding -unriddle -unripe/P -unromantic -unruliness/SM -unruly/PTR -unsaleable -unsanitary -unsavored/YP -unsavoriness/M -unseal/GB -unsearchable -unseasonal -unseeing/Y -unseen/S -unselfconsciousness/M -unselfconscious/P -unselfishness/M -unsellable -unsentimental -unset -unsettledness/M -unsettled/P -unsettling/Y -unshapely -unshaven -unshorn -unsighted -unsightliness/S -unskilful -unsociability -unsociable/P -unsocial -unsound/PT -unspeakably -unspecific -unspectacular -unspoilt -unspoke -unsporting -unstable/P -unstigmatized/SM -unstilted -unstinting/Y -unstopping -unstrapping -unstudied -unstuffy -unsubdued -unsubstantial -unsubtle -unsuitable -unsuspecting/Y -unswerving/Y -unsymmetrical -unsympathetic -unsystematic -unsystematized/Y -untactful -untalented -untaxing -unteach/B -untellable -untenable -unthinking -until/G -untiring/Y -unto -untouchable/MS -untowardness/M -untoward/P -untraceable -untrue -untruthfulness/M -untwist/G -Unukalhai/M -unusualness/M -unutterable -unutterably -unvocalized/MS -unvulcanized/SM -unwaivering -unwarrantable -unwarrantably -unwashed/PS -unwearable -unwearied/Y -unwed -unwedge -unwelcome -unwell/M -unwieldiness/MS -unwieldy/TPR -unwind/B -unwomanly -unworkable/S -unworried -unwrap -unwrapping -unyielding/Y -unyoke -unzip -up -Upanishads -uparrow -upbeat/SM -upbraid/GDRS -upbringing/M -upbring/JG -UPC -upchuck/SDG -upcome/G -upcountry/S -updatability -updater/M -update/RSDG -Updike/M -updraft/SM -upend/SDG -upfield -upfront -upgradeable -upgrade/DSJG -upheaval/MS -upheld -uphill/S -upholder/M -uphold/RSGZ -upholster/ADGS -upholsterer/SM -upholstery/MS -UPI -upkeep/SM -uplander/M -upland/MRS -uplifter/M -uplift/SJDRG -upload/GSD -upmarket -upon -upped -uppercase/GSD -upperclassman/M -upperclassmen -uppercut/S -uppercutting -uppermost -upper/S -upping -uppish -uppity -upraise/GDS -uprated -uprating -uprear/DSG -upright/DYGSP -uprightness/S -uprise/RGJ -uprising/M -upriver/S -uproariousness/M -uproarious/PY -uproar/MS -uproot/DRGS -uprooter/M -ups -UPS -upscale/GDS -upset/S -upsetting/MS -upshot/SM -upside/MS -upsilon/MS -upslope -upstage/DSRG -upstairs -upstandingness/M -upstanding/P -upstart/MDGS -upstate/SR -upstream/DSG -upstroke/MS -upsurge/DSG -upswing/GMS -upswung -uptake/SM -upthrust/GMS -uptight -uptime -Upton/M -uptown/RS -uptrend/M -upturn/GDS -upwardness/M -upward/SYP -upwelling -upwind/S -uracil/MS -Ural/MS -Urania/M -uranium/MS -Uranus/M -uranyl/M -Urbain/M -Urbana/M -urbane/Y -urbanism/M -urbanite/SM -urbanity/SM -urbanization/MS -urbanize/DSG -Urban/M -urbanologist/S -urbanology/S -Urbano/M -urban/RT -Urbanus/M -urchin/SM -Urdu/M -urea/SM -uremia/MS -uremic -ureter/MS -urethane/MS -urethrae -urethral -urethra/M -urethritis/M -Urey/M -urge/GDRSJ -urgency/SM -urgent/Y -urger/M -Uriah/M -uric -Uriel/M -urinal/MS -urinalyses -urinalysis/M -urinary/MS -urinate/XDSNG -urination/M -urine/MS -Uri/SM -URL -Ur/M -urning/M -urn/MDGS -urogenital -urological -urologist/S -urology/MS -Urquhart/M -Ursala/M -Ursa/M -ursine -Ursola/M -Urson/M -Ursula/M -Ursulina/M -Ursuline/M -urticaria/MS -Uruguayan/S -Uruguay/M -Urumqi -US -USA -usability/S -usable/U -usably/U -USAF -usage/SM -USART -USCG -USC/M -USDA -us/DRSBZG -used/U -use/ESDAG -usefulness/SM -useful/YP -uselessness/MS -useless/PY -Usenet/M -Usenix/M -user/M -USG/M -usherette/SM -usher/SGMD -USIA -USMC -USN -USO -USP -USPS -USS -USSR -Ustinov/M -usu -usuals -usual/UPY -usurer/SM -usuriousness/M -usurious/PY -usurpation/MS -usurper/M -usurp/RDZSG -usury/SM -UT -Utahan/SM -Utah/M -Uta/M -Ute/M -utensil/SM -uteri -uterine -uterus/M -Utica/M -utile/I -utilitarianism/MS -utilitarian/S -utility/MS -utilization/MS -utilization's/A -utilize/GZDRS -utilizer/M -utilizes/A -utmost/S -Utopia/MS -utopianism/M -utopian's -Utopian/S -utopia/S -Utrecht/M -Utrillo/M -utterance/MS -uttered/U -utterer/M -uttermost/S -utter/TRDYGS -uucp/M -UV -uvula/MS -uvular/S -uxorious -Uzbekistan -Uzbek/M -Uzi/M -V -VA -vacancy/MS -vacantness/M -vacant/PY -vacate/NGXSD -vacationist/SM -vacationland -vacation/MRDZG -vaccinate/NGSDX -vaccination/M -vaccine/SM -vaccinial -vaccinia/M -Vachel/M -vacillate/XNGSD -vacillating/Y -vacillation/M -vacillator/SM -Vaclav/M -vacua's -vacuity/MS -vacuo -vacuolated/U -vacuolate/SDGN -vacuole/SM -vacuolization/SM -vacuousness/MS -vacuous/PY -vacuum/GSMD -Vader/M -Vaduz/M -vagabondage/MS -vagabond/DMSG -vagarious -vagary/MS -vaginae -vaginal/Y -vagina/M -vagrancy/MS -vagrant/SMY -vagueing -vagueness/MS -vague/TYSRDP -Vail/M -vaingloriousness/M -vainglorious/YP -vainglory/MS -vain/TYRP -val -valance/SDMG -Valaree/M -Valaria/M -Valarie/M -Valdemar/M -Valdez/M -Valeda/M -valediction/MS -valedictorian/MS -valedictory/MS -Vale/M -valence/SM -Valencia/MS -valency/MS -Valene/M -Valenka/M -Valentia/M -Valentijn/M -Valentina/M -Valentine/M -valentine/SM -Valentin/M -Valentino/M -Valenzuela/M -Valera/M -Valeria/M -Valerian/M -Valerie/M -Valerye/M -Valry/M -vale/SM -valet/GDMS -valetudinarianism/MS -valetudinarian/MS -Valhalla/M -valiance/S -valiantness/M -valiant/SPY -Valida/M -validated/AU -validate/INGSDX -validates/A -validation/AMI -validity/IMS -validnesses -validness/MI -valid/PIY -Valina/M -valise/MS -Valium/S -Valkyrie/SM -Vallejo -Valle/M -Valletta/M -valley/SM -Vallie/M -Valli/M -Vally/M -Valma/M -Val/MY -Valois/M -valor/MS -valorous/Y -Valparaiso/M -Valry/M -valuable/IP -valuableness/IM -valuables -valuably/I -valuate/NGXSD -valuation/CSAM -valuator/SM -value/CGASD -valued/U -valuelessness/M -valueless/P -valuer/SM -value's -values/E -valve/GMSD -valveless -valvular -Va/M -vamoose/GSD -vamp/ADSG -vamper -vampire/MGSD -vamp's -vanadium/MS -Vance/M -Vancouver/M -vandalism/MS -vandalize/GSD -vandal/MS -Vandal/MS -Vanda/M -Vandenberg/M -Vanderbilt/M -Vanderburgh/M -Vanderpoel/M -Vandyke/SM -vane/MS -Vanessa/M -Vang/M -vanguard/MS -Vania/M -vanilla/MS -vanisher/M -vanish/GRSDJ -vanishing/Y -vanity/SM -Van/M -Vanna/M -vanned -Vannie/M -Vanni/M -vanning -Vanny/M -vanquisher/M -vanquish/RSDGZ -van/SMD -vantage/MS -Vanuatu -Vanya/M -Vanzetti/M -vapidity/MS -vapidness/SM -vapid/PY -vaporer/M -vaporing/MY -vaporisation -vaporise/DSG -vaporization/AMS -vaporize/DRSZG -vaporizer/M -vapor/MRDJGZS -vaporous -vapory -vaquero/SM -VAR -Varanasi/M -Varese/M -Vargas/M -variability/IMS -variableness/IM -variable/PMS -variables/I -variably/I -variance/I -variances -variance's -Varian/M -variant/ISY -variate/MGNSDX -variational -variation/M -varicolored/MS -varicose/S -variedly -varied/U -variegate/NGXSD -variegation/M -varier/M -varietal/S -variety/MS -various/PY -varistor/M -Varityping/M -varlet/MS -varmint/SM -varnished/U -varnisher/M -varnish/ZGMDRS -var/S -varsity/MS -varying/UY -vary/SRDJG -vascular -vasectomy/SM -Vaseline/DSMG -vase/SM -Vasili/MS -Vasily/M -vasomotor -Vasquez/M -vassalage/MS -vassal/GSMD -Vassar/M -Vassili/M -Vassily/M -vastness/MS -vast/PTSYR -v/ASV -VAT -Vatican/M -vat/SM -vatted -vatting -vaudeville/SM -vaudevillian/SM -Vaudois -Vaughan/M -Vaughn/M -vaulter/M -vaulting/M -vault/ZSRDMGJ -vaunter/M -vaunt/GRDS -VAXes -Vax/M -VAX/M -Vazquez/M -vb -VCR -VD -VDT -VDU -vealed/A -vealer/MA -veal/MRDGS -veals/A -Veblen/M -vectorial -vectorization -vectorized -vectorizing -vector's/F -vector/SGDM -Veda/MS -Vedanta/M -veejay/S -veep/S -veer/DSG -veering/Y -vegan/SM -Vega/SM -Vegemite/M -veges -vegetable/MS -vegetarianism/MS -vegetarian/SM -vegetate/DSNGVX -vegetation/M -vegetative/PY -vegged -veggie/S -vegging -veg/M -vehemence/MS -vehemency/S -vehement/Y -vehicle/SM -vehicular -veiling/MU -veil's -veil/UGSD -vein/GSRDM -veining/M -vela/M -Vela/M -velarize/SDG -velar/S -Velsquez/M -Velzquez -Velcro/SM -veld/SM -veldt's -Velez/M -Vella/M -vellum/MS -Velma/M -velocipede/SM -velocity/SM -velor/S -velour's -velum/M -Velveeta/M -velveteen/MS -velvet/GSMD -Velvet/M -velvety/RT -venality/MS -venal/Y -venation/SM -vend/DSG -vender's/K -vendetta/MS -vendible/S -vendor/MS -veneerer/M -veneer/GSRDM -veneering/M -venerability/S -venerable/P -venerate/XNGSD -veneration/M -venereal -venetian -Venetian/SM -Venezuela/M -Venezuelan/S -vengeance/MS -vengeful/APY -vengefulness/AM -venialness/M -venial/YP -Venice/M -venireman/M -veniremen -venison/SM -Venita/M -Venn/M -venomousness/M -venomous/YP -venom/SGDM -venous/Y -venter/M -ventilated/U -ventilate/XSDVGN -ventilation/M -ventilator/MS -vent/ISGFD -ventral/YS -ventricle/MS -ventricular -ventriloquies -ventriloquism/MS -ventriloquist/MS -ventriloquy -vent's/F -Ventura/M -venture/RSDJZG -venturesomeness/SM -venturesome/YP -venturi/S -venturousness/MS -venturous/YP -venue/MAS -Venusian/S -Venus/S -veraciousness/M -veracious/YP -veracities -veracity/IM -Veracruz/M -Veradis -Vera/M -verandahed -veranda/SDM -verbalization/MS -verbalized/U -verbalizer/M -verbalize/ZGRSD -verballed -verballing -verbal/SY -verbatim -verbena/MS -verbiage/SM -verb/KSM -verbose/YP -verbosity/SM -verboten -verdant/Y -Verde/M -Verderer/M -verdict/SM -verdigris/GSDM -Verdi/M -verdure/SDM -Vere/M -Verena/M -Verene/M -verge/FGSD -Verge/M -verger/SM -verge's -Vergil's -veridical/Y -Veriee/M -verifiability/M -verifiableness/M -verifiable/U -verification/S -verified/U -verifier/MS -verify/GASD -Verile/M -verily -Verina/M -Verine/M -verisimilitude/SM -veritableness/M -veritable/P -veritably -verity/MS -Verlag/M -Verlaine/M -Verla/M -Vermeer/M -vermicelli/MS -vermiculite/MS -vermiform -vermilion/MS -vermin/M -verminous -Vermonter/M -Vermont/ZRM -vermouth/M -vermouths -vernacular/YS -vernal/Y -Verna/M -Verne/M -Vernen/M -Verney/M -Vernice/M -vernier/SM -Vern/NM -Vernon/M -Vernor/M -Verona/M -Veronese/M -Veronica/M -veronica/SM -Veronika/M -Veronike/M -Veronique/M -verrucae -verruca/MS -versa -Versailles/M -Versatec/M -versatileness/M -versatile/YP -versatility/SM -versed/UI -verse's -verses/I -verse/XSRDAGNF -versicle/M -versification/M -versifier/M -versify/GDRSZXN -versing/I -version/MFISA -verso/SM -versus -vertebrae -vertebral/Y -vertebra/M -vertebrate/IMS -vertebration/M -vertex/SM -vertical/YPS -vertices's -vertiginous -vertigoes -vertigo/M -verve/SM -very/RT -Vesalius/M -vesicle/SM -vesicular/Y -vesiculate/GSD -Vespasian/M -vesper/SM -Vespucci/M -vessel/MS -vestal/YS -Vesta/M -vest/DIGSL -vestibular -vestibule/SDM -vestige/SM -vestigial/Y -vesting/SM -vestment/ISM -vestryman/M -vestrymen -vestry/MS -vest's -vesture/SDMG -Vesuvius/M -vetch/SM -veteran/SM -veterinarian/MS -veterinary/S -veter/M -veto/DMG -vetoes -vet/SMR -vetted -vetting/A -Vevay/M -vexation/SM -vexatiousness/M -vexatious/PY -vexed/Y -vex/GFSD -VF -VFW -VG -VGA -vhf -VHF -VHS -VI -via -viability/SM -viable/I -viably -viaduct/MS -Viagra/M -vial/MDGS -viand/SM -vibe/S -vibraharp/MS -vibrancy/MS -vibrant/YS -vibraphone/MS -vibraphonist/SM -vibrate/XNGSD -vibrational/Y -vibration/M -vibrato/MS -vibrator/SM -vibratory -vibrio/M -vibrionic -viburnum/SM -vicarage/SM -vicariousness/MS -vicarious/YP -vicar/SM -vice/CMS -viced -vicegerent/MS -vicennial -Vicente/M -viceregal -viceroy/SM -Vichy/M -vichyssoise/MS -vicing -vicinity/MS -viciousness/S -vicious/YP -vicissitude/MS -Vickers/M -Vickie/M -Vicki/M -Vicksburg/M -Vicky/M -Vick/ZM -Vic/M -victimization/SM -victimized/U -victimizer/M -victimize/SRDZG -victim/SM -Victoir/M -Victoria/M -Victorianism/S -Victorian/S -victoriousness/M -victorious/YP -Victor/M -victor/SM -victory/MS -Victrola/SM -victualer/M -victual/ZGSDR -vicua/S -Vidal/M -Vida/M -videlicet -videocassette/S -videoconferencing -videodisc/S -videodisk/SM -video/GSMD -videophone/SM -videotape/SDGM -Vidovic/M -Vidovik/M -Vienna/M -Viennese/M -Vientiane/M -vier/M -vie/S -Vietcong/M -Viet/M -Vietminh/M -Vietnamese/M -Vietnam/M -viewed/A -viewer/AS -viewer's -viewfinder/MS -viewgraph/SM -viewing/M -viewless/Y -view/MBGZJSRD -viewpoint/SM -views/A -vigesimal -vigilance/MS -vigilante/SM -vigilantism/MS -vigilantist -vigilant/Y -vigil/SM -vignette/MGDRS -vignetter/M -vignetting/M -vignettist/MS -vigor/MS -vigorousness/M -vigorous/YP -vii -viii -Vijayawada/M -Viki/M -Viking/MS -viking/S -Vikki/M -Vikky/M -Vikram/M -Vila -vile/AR -vilely -vileness/MS -vilest -Vilhelmina/M -vilification/M -vilifier/M -vilify/GNXRSD -villager/M -village/RSMZ -villainousness/M -villainous/YP -villain/SM -villainy/MS -Villa/M -villa/MS -Villarreal/M -ville -villeinage/SM -villein/MS -villi -Villon/M -villus/M -Vilma/M -Vilnius/M -Vilyui/M -Vi/M -vi/MDR -vim/MS -vinaigrette/MS -Vina/M -Vince/M -Vincent/MS -Vincenty/M -Vincenz/M -vincible/I -Vinci/M -Vindemiatrix/M -vindicate/XSDVGN -vindication/M -vindicator/SM -vindictiveness/MS -vindictive/PY -vinegar/DMSG -vinegary -vine/MGDS -vineyard/SM -Vinita/M -Vin/M -Vinnie/M -Vinni/M -Vinny/M -vino/MS -vinous -Vinson/M -vintage/MRSDG -vintager/M -vintner/MS -vinyl/SM -violable/I -Viola/M -Violante/M -viola/SM -violate/VNGXSD -violator/MS -Viole/M -violence/SM -violent/Y -Violet/M -violet/SM -Violetta/M -Violette/M -violinist/SM -violin/MS -violist/MS -viol/MSB -violoncellist/S -violoncello/MS -viper/MS -viperous -VIP/S -viragoes -virago/M -viral/Y -vireo/SM -Virge/M -Virgie/M -Virgilio/M -Virgil/M -virginal/YS -Virgina/M -Virginia/M -Virginian/S -Virginie/M -virginity/SM -virgin/SM -Virgo/MS -virgule/MS -virile -virility/MS -virologist/S -virology/SM -virtual/Y -virtue/SM -virtuosity/MS -virtuosoes -virtuoso/MS -virtuousness/SM -virtuous/PY -virulence/SM -virulent/Y -virus/MS -visage/MSD -Visakhapatnam's -Visa/M -visa/SGMD -Visayans -viscera -visceral/Y -viscid/Y -viscoelastic -viscoelasticity -viscometer/SM -viscose/MS -viscosity/MS -viscountcy/MS -viscountess/SM -viscount/MS -viscousness/M -viscous/PY -viscus/M -vise/CAXNGSD -viselike -vise's -Vishnu/M -visibility/ISM -visible/PI -visibly/I -Visigoth/M -Visigoths -visionariness/M -visionary/PS -vision/KMDGS -vision's/A -visitable/U -visitant/SM -visitation/SM -visited/U -visit/GASD -visitor/MS -vis/MDSGV -visor/SMDG -VISTA -vista/GSDM -Vistula/M -visualization/AMS -visualized/U -visualizer/M -visualizes/A -visualize/SRDZG -visual/SY -vitae -vitality/MS -vitalization/AMS -vitalize/ASDGC -vital/SY -vita/M -Vita/M -vitamin/SM -Vite/M -Vitia/M -vitiate/XGNSD -vitiation/M -viticulture/SM -viticulturist/S -Vitim/M -Vito/M -Vitoria/M -vitreous/YSP -vitrifaction/S -vitrification/M -vitrify/XDSNG -vitrine/SM -vitriolic -vitriol/MDSG -vitro -vittles -Vittoria/M -Vittorio/M -vituperate/SDXVGN -vituperation/M -vituperative/Y -Vitus/M -vivace/S -vivaciousness/MS -vivacious/YP -vivacity/SM -viva/DGS -Vivaldi -Viva/M -vivaria -vivarium/MS -vivaxes -Vivekananda/M -vive/Z -Vivia/M -Viviana/M -Vivian/M -Vivianna/M -Vivianne/M -vividness/SM -vivid/PTYR -Vivie/M -Viviene/M -Vivien/M -Vivienne/M -vivifier -vivify/NGASD -Vivi/MN -viviparous -vivisect/DGS -vivisectional -vivisectionist/SM -vivisection/MS -Viviyan/M -Viv/M -vivo -Vivyan/M -Vivyanne/M -vixenish/Y -vixen/SM -viz -vizier/MS -vizor's -VJ -Vladamir/M -Vladimir/M -Vladivostok/M -Vlad/M -VLF -VLSI -VMS/M -VOA -vocable/SM -vocab/S -vocabularian -vocabularianism -vocabulary/MS -vocalic/S -vocalise's -vocalism/M -vocalist/MS -vocalization/SM -vocalized/U -vocalizer/M -vocalize/ZGDRS -vocal/SY -vocation/AKMISF -vocational/Y -vocative/KYS -vociferate/NGXSD -vociferation/M -vociferousness/MS -vociferous/YP -vocoded -vocoder -vodka/MS -voe/S -Vogel/M -vogue/GMSRD -vogueing -voguish -voiceband -voiced/CU -voice/IMGDS -voicelessness/SM -voiceless/YP -voicer/S -voices/C -voicing/C -voidable -void/C -voided -voider/M -voiding -voidness/M -voids -voil -voile/MS -volar -volatileness/M -volatile/PS -volatility/MS -volatilization/MS -volatilize/SDG -volcanically -volcanic/S -volcanism/M -volcanoes -volcano/M -vole/MS -Volga/M -Volgograd/M -vol/GSD -volitionality -volitional/Y -volition/MS -Volkswagen/SM -volleyball/MS -volleyer/M -volley/SMRDG -Vol/M -Volstead/M -voltage/SM -voltaic -Voltaire/M -Volta/M -volt/AMS -Volterra/M -voltmeter/MS -volubility/S -voluble/P -volubly -volume/SDGM -volumetric -volumetrically -voluminousness/MS -voluminous/PY -voluntarily/I -voluntariness/MI -voluntarism/MS -voluntary/PS -volunteer/DMSG -voluptuary/SM -voluptuousness/S -voluptuous/YP -volute/S -Volvo/M -vomit/GRDS -Vonda/M -Von/M -Vonnegut/M -Vonnie/M -Vonni/M -Vonny/M -voodoo/GDMS -voodooism/S -voraciousness/MS -voracious/YP -voracity/MS -Voronezh/M -Vorster/M -vortex/SM -vortices's -vorticity/M -votary/MS -vote/CSDG -voter/SM -vote's -votive/YP -voucher/GMD -vouchsafe/SDG -vouch/SRDGZ -vowelled -vowelling -vowel/MS -vower/M -vow/SMDRG -voyage/GMZJSRD -voyager/M -voyageur/SM -voyeurism/MS -voyeuristic -voyeur/MS -VP -vs -V's -VT -Vt/M -VTOL -vulcanization/SM -vulcanized/U -vulcanize/SDG -Vulcan/M -vulgarian/MS -vulgarism/MS -vulgarity/MS -vulgarization/S -vulgarize/GZSRD -vulgar/TSYR -Vulgate/SM -Vulg/M -vulnerability/SI -vulnerable/IP -vulnerably/I -vulpine -vulturelike -vulture/SM -vulturous -vulvae -vulva/M -vying -Vyky/M -WA -Waals -Wabash/M -WAC -Wacke/M -wackes -wackiness/MS -wacko/MS -wacky/RTP -Waco/M -Wac/S -wadded -wadding/SM -waddle/GRSD -Wade/M -wader/M -wade/S -wadi/SM -wad/MDRZGS -Wadsworth/M -wafer/GSMD -waffle/GMZRSD -Wafs -wafter/M -waft/SGRD -wag/DRZGS -waged/U -wager/GZMRD -wage/SM -wagged -waggery/MS -wagging -waggishness/SM -waggish/YP -waggle/SDG -waggly -Wagnerian -Wagner/M -wagoner/M -wagon/SGZMRD -wagtail/SM -Wahl/M -waif/SGDM -Waikiki/M -wailer/M -wail/SGZRD -wain/GSDM -Wain/M -wainscot/SGJD -Wainwright/M -wainwright/SM -waistband/MS -waistcoat/GDMS -waister/M -waist/GSRDM -waistline/MS -Waite/M -waiter/DMG -Waiter/M -wait/GSZJRD -Wait/MR -waitpeople -waitperson/S -waitress/GMSD -waiver/MB -waive/SRDGZ -Wakefield/M -wakefulness/MS -wakeful/PY -Wake/M -wake/MGDRSJ -waken/SMRDG -waker/M -wakeup -Waksman/M -Walbridge/M -Walcott/M -Waldemar/M -Walden/M -Waldensian -Waldheim/M -Wald/MN -Waldo/M -Waldon/M -Waldorf/M -wale/DRSMG -Wales -Walesa/M -Walford/M -Walgreen/M -waling/M -walkabout/M -walkaway/SM -walker/M -Walker/M -walk/GZSBJRD -walkie -Walkman/S -walkout/SM -walkover/SM -walkway/MS -wallaby/MS -Wallace/M -Wallache/M -wallah/M -Wallas/M -wallboard/MS -Wallenstein/M -Waller/M -wallet/SM -walleye/MSD -wallflower/MS -Wallie/M -Wallis -Walliw/M -Walloon/SM -walloper/M -walloping/M -wallop/RDSJG -wallower/M -wallow/RDSG -wallpaper/DMGS -wall/SGMRD -Wall/SMR -Wally/M -wally/S -walnut/SM -Walpole/M -Walpurgisnacht -walrus/SM -Walsh/M -Walter/M -Walther/M -Walton/M -waltzer/M -Walt/ZMR -waltz/MRSDGZ -Walworth/M -Waly/M -wampum/SM -Wanamaker/M -Wanda/M -wanderer/M -wander/JZGRD -wanderlust/SM -Wandie/M -Wandis/M -wand/MRSZ -wane/S -Waneta/M -wangler/M -wangle/RSDGZ -Wang/M -Wanids/M -Wankel/M -wanna -wannabe/S -wanned -wanner -wanness/S -wannest -wanning -wan/PGSDY -Wansee/M -Wansley/M -wanted/U -wanter/M -want/GRDSJ -wantonness/S -wanton/PGSRDY -wapiti/MS -warble/GZRSD -warbler/M -warbonnet/S -ward/AGMRDS -Warde/M -warden/DMGS -Warden/M -warder/DMGS -Ward/MN -wardrobe/MDSG -wardroom/MS -wardship/M -wards/I -warehouseman/M -warehouse/MGSRD -Ware/MG -ware/MS -warfare/SM -Warfield/M -war/GSMD -warhead/MS -Warhol/M -warhorse/SM -warily/U -warinesses/U -wariness/MS -Waring/M -warless -warlike -warlock/SM -warlord/MS -warmblooded -warmed/A -warmer/M -warmheartedness/SM -warmhearted/PY -warmish -warmness/MS -warmongering/M -warmonger/JGSM -warms/A -warmth/M -warmths -warm/YRDHPGZTS -warned/U -warner/M -Warner/M -warn/GRDJS -warning/YM -Warnock/M -warpaint -warpath/M -warpaths -warper/M -warplane/MS -warp/MRDGS -warranted/U -warranter/M -warrant/GSMDR -warranty/SDGM -warred/M -warrener/M -Warren/M -warren/SZRM -warring/M -warrior/MS -Warsaw/M -wars/C -warship/MS -warthog/S -wartime/SM -wart/MDS -warty/RT -Warwick/M -wary/URPT -Wasatch/M -washable/S -wash/AGSD -washbasin/SM -washboard/SM -washbowl/SM -Washburn/M -washcloth/M -washcloths -washday/M -washed/U -washer/GDMS -washerwoman/M -washerwomen -washing/SM -Washingtonian/S -Washington/M -Wash/M -Washoe/M -washout/SM -washrag/SM -washroom/MS -washstand/SM -washtub/MS -washy/RT -wasn't -WASP -waspishness/SM -waspish/PY -Wasp's -wasp/SM -was/S -wassail/GMDS -Wasserman/M -Wassermann/M -wastage/SM -wastebasket/SM -wastefulness/S -wasteful/YP -wasteland/MS -wastepaper/MS -waster/DG -waste/S -wastewater -wast/GZSRD -wasting/Y -wastrel/MS -Watanabe/M -watchable/U -watchband/SM -watchdogged -watchdogging -watchdog/SM -watched/U -watcher/M -watchfulness/MS -watchful/PY -watch/JRSDGZB -watchmake/JRGZ -watchmaker/M -watchman/M -watchmen -watchpoints -watchtower/MS -watchword/MS -waterbird/S -waterborne -Waterbury/M -watercolor/DMGS -watercolorist/SM -watercourse/SM -watercraft/M -watercress/SM -waterer/M -waterfall/SM -waterfowl/M -waterfront/SM -Watergate/M -waterhole/S -Waterhouse/M -wateriness/SM -watering/M -water/JGSMRD -waterless -waterlily/S -waterline/S -waterlogged -waterloo -Waterloo/SM -waterman/M -watermark/GSDM -watermelon/SM -watermill/S -waterproof/PGRDSJ -watershed/SM -waterside/MSR -watersider/M -Waters/M -waterspout/MS -watertightness/M -watertight/P -Watertown/M -waterway/MS -waterwheel/S -waterworks/M -watery/PRT -Watkins -WATS -Watson/M -wattage/SM -Watteau/M -Wattenberg/M -Watterson/M -wattle/SDGM -Watt/MS -watt/TMRS -Watusi/M -Wat/ZM -Waugh/M -Waukesha/M -Waunona/M -Waupaca/M -Waupun/M -Wausau/M -Wauwatosa/M -waveband/MS -waveform/SM -wavefront/MS -waveguide/MS -Waveland/M -wavelength/M -wavelengths -wavelet/SM -wavelike -wavenumber -waver/GZRD -wavering/YU -Waverley/M -Waverly/M -Wave/S -wave/ZGDRS -wavily -waviness/MS -wavy/SRTP -waxer/M -waxiness/MS -wax/MNDRSZG -waxwing/MS -waxwork/MS -waxy/PRT -wayfarer/MS -wayfaring/S -waylaid -Wayland/M -Waylan/M -waylayer/M -waylay/GRSZ -wayleave/MS -Waylen/M -Waylin/M -Waylon/M -Way/M -waymarked -way/MS -Wayne/M -Waynesboro/M -wayside/MS -waywardness/S -wayward/YP -WC -we -weakener/M -weaken/ZGRD -weakfish/SM -weakish -weakliness/M -weakling/SM -weakly/RTP -weakness/MS -weak/TXPYRN -weal/MHS -wealthiness/MS -wealth/M -wealths -wealthy/PTR -weaner/M -weanling/M -wean/RDGS -weapon/GDMS -weaponless -weaponry/MS -wearable/S -wearer/M -wearied/U -wearily -weariness/MS -wearing/Y -wearisomeness/M -wearisome/YP -wear/RBSJGZ -wearying/Y -weary/TGPRSD -weasel/SGMDY -weatherbeaten -weathercock/SDMG -weatherer/M -Weatherford/M -weathering/M -weatherize/GSD -weatherman/M -weather/MDRYJGS -weathermen -weatherperson/S -weatherproof/SGPD -weatherstripped -weatherstripping/S -weatherstrip/S -weaver/M -Weaver/M -weaves/A -weave/SRDGZ -weaving/A -webbed -Webber/M -webbing/MS -Webb/RM -weber/M -Weber/M -Webern/M -webfeet -webfoot/M -Web/MR -website/S -web/SMR -Webster/MS -Websterville/M -we'd -wedded/A -Weddell/M -wedder -wedding/SM -wedge/SDGM -wedgie/RST -Wedgwood/M -wedlock/SM -Wed/M -Wednesday/SM -wed/SA -weeder/M -weediness/M -weedkiller/M -weedless -wee/DRST -weed/SGMRDZ -weedy/TRP -weeing -weekday/MS -weekender/M -weekend/SDRMG -weekly/S -weeknight/SM -Weeks/M -week/SYM -weenie/M -ween/SGD -weeny/RSMT -weeper/M -weep/SGZJRD -weepy/RST -weevil/MS -weft/SGMD -Wehr/M -Weibull/M -Weidar/M -Weider/M -Weidman/M -Weierstrass/M -weighed/UA -weigher/M -weigh/RDJG -weighs/A -weighted/U -weighter/M -weightily -weightiness/SM -weighting/M -weight/JMSRDG -weightlessness/SM -weightless/YP -weightlifter/S -weightlifting/MS -weighty/TPR -Weill/M -Wei/M -Weinberg/M -Weiner/M -Weinstein/M -weirdie/SM -weirdness/MS -weirdo/SM -weird/YRDPGTS -weir/SDMG -Weisenheimer/M -Weiss/M -Weissman/M -Weissmuller/M -Weizmann/M -Welbie/M -Welby/M -Welcher/M -Welches -welcomeness/M -welcome/PRSDYG -welcoming/U -welder/M -Weldon/M -weld/SBJGZRD -Weldwood/M -welfare/SM -welkin/SM -we'll -Welland/M -wellbeing/M -Weller/M -Wellesley/M -Welles/M -wellhead/SM -Wellington/MS -wellington/S -Wellman/M -wellness/MS -well/SGPD -Wells/M -wellspring/SM -Wellsville/M -Welmers/M -Welsh -welsher/M -Welshman/M -Welshmen -welsh/RSDGZ -Welshwoman/M -Welshwomen -welter/GD -welterweight/MS -welt/GZSMRD -wencher/M -wench/GRSDM -Wendall/M -Wenda/M -wend/DSG -Wendeline/M -Wendell/M -Wendel/M -Wendie/M -Wendi/M -Wendye/M -Wendy/M -wen/M -Wenonah/M -Wenona/M -went -Wentworth/M -wept/U -were -we're -weren't -werewolf/M -werewolves -Werner/M -Wernher/M -Werther/M -werwolf's -Wes -Wesleyan -Wesley/M -Wessex/M -Wesson/M -westbound -Westbrooke/M -Westbrook/M -Westchester/M -wester/DYG -westerly/S -westerner/M -westernization/MS -westernize/GSD -westernmost -Western/ZRS -western/ZSR -Westfield/M -Westhampton/M -Westinghouse/M -westing/M -Westleigh/M -Westley/M -Westminster/M -Westmore/M -West/MS -Weston/M -Westphalia/M -Westport/M -west/RDGSM -westward/S -Westwood/M -wetback/MS -wetland/S -wetness/MS -wet/SPY -wettable -wetter/S -wettest -wetting -we've -Weyden/M -Weyerhauser/M -Weylin/M -Wezen/M -WFF -whacker/M -whack/GZRDS -whaleboat/MS -whalebone/SM -whale/GSRDZM -Whalen/M -whaler/M -whaling/M -whammed -whamming/M -wham/MS -whammy/S -wharf/SGMD -Wharton/M -wharves -whatchamacallit/MS -what'd -whatever -what/MS -whatnot/MS -what're -whatsoever -wheal/MS -wheatgerm -Wheaties/M -Wheatland/M -wheat/NMXS -Wheaton/M -Wheatstone/M -wheedle/ZDRSG -wheelbarrow/GSDM -wheelbase/MS -wheelchair/MS -wheeler/M -Wheeler/M -wheelhouse/SM -wheelie/MS -wheeling/M -Wheeling/M -Wheelock/M -wheel/RDMJSGZ -wheelwright/MS -whee/S -wheeze/SDG -wheezily -wheeziness/SM -wheezy/PRT -Whelan/M -whelk/MDS -Wheller/M -whelm/DGS -whelp/DMGS -whence/S -whenever -when/S -whensoever -whereabout/S -whereas/S -whereat -whereby -where'd -wherefore/MS -wherein -where/MS -whereof -whereon -where're -wheresoever -whereto -whereupon -wherever -wherewith -wherewithal/SM -wherry/DSGM -whether -whet/S -whetstone/MS -whetted -whetting -whew/GSD -whey/MS -which -whichever -whiff/GSMD -whiffle/DRSG -whiffler/M -whiffletree/SM -whig/S -Whig/SM -while/GSD -whilom -whilst -whimmed -whimming -whimper/DSG -whimsey's -whimsicality/MS -whimsical/YP -whim/SM -whimsy/TMDRS -whine/GZMSRD -whining/Y -whinny/GTDRS -whiny/RT -whipcord/SM -whiplash/SDMG -Whippany/M -whipped -whipper/MS -whippersnapper/MS -whippet/MS -whipping/SM -Whipple/M -whippletree/SM -whippoorwill/SM -whipsaw/GDMS -whips/M -whip/SM -whirligig/MS -whirlpool/MS -whirl/RDGS -whirlwind/MS -whirlybird/MS -whirly/MS -whirred -whirring -whir/SY -whisker/DM -whiskery -whiskey/SM -whisk/GZRDS -whisperer/M -whisper/GRDJZS -whispering/YM -whist/GDMS -whistleable -whistle/DRSZG -whistler/M -Whistler/M -whistling/M -Whitaker/M -Whitby/M -Whitcomb/M -whitebait/M -whitecap/MS -whiteface/M -Whitefield/M -whitefish/SM -Whitehall/M -Whitehead/M -whitehead/S -Whitehorse/M -Whiteleaf/M -Whiteley/M -White/MS -whitener/M -whiteness/MS -whitening/M -whiten/JZDRG -whiteout/S -white/PYS -whitespace -whitetail/S -whitewall/SM -whitewash/GRSDM -whitewater -Whitewater/M -whitey/MS -Whitfield/M -whither/DGS -whitier -whitiest -whiting/M -whitish -Whitley/M -Whitlock/M -Whit/M -Whitman/M -Whitney/M -whit/SJGTXMRND -Whitsunday/MS -Whittaker/M -whitter -Whittier -whittle/JDRSZG -whittler/M -whiz -whizkid -whizzbang/S -whizzed -whizzes -whizzing -WHO -whoa/S -who'd -whodunit/SM -whoever -wholegrain -wholeheartedness/MS -wholehearted/PY -wholemeal -wholeness/S -wholesale/GZMSRD -wholesaler/M -wholesomeness/USM -wholesome/UYP -whole/SP -wholewheat -who'll -wholly -whom -who/M -whomever -whomsoever -whoopee/S -whooper/M -whoop/SRDGZ -whoosh/DSGM -whop -whopper/MS -whopping/S -who're -whorehouse/SM -whoreish -whore/SDGM -whorish -whorl/SDM -whose -whoso -whosoever -who've -why -whys -WI -Wiatt/M -Wichita/M -wickedness/MS -wicked/RYPT -wicker/M -wickerwork/MS -wicketkeeper/SM -wicket/SM -wick/GZRDMS -wicking/M -widemouthed -widener/M -wideness/S -widen/SGZRD -wide/RSYTP -widespread -widgeon's -widget/SM -widower/M -widowhood/S -widow/MRDSGZ -width/M -widths -widthwise -Wieland/M -wielder/M -wield/GZRDS -Wiemar/M -wiener/SM -wienie/SM -Wier/M -Wiesel/M -wife/DSMYG -wifeless -wifely/RPT -wigeon/MS -wigged -wigging/M -Wiggins -wiggler/M -wiggle/RSDGZ -wiggly/RT -wight/SGDM -wiglet/S -wigmaker -wig/MS -Wigner/M -wigwagged -wigwagging -wigwag/S -wigwam/MS -Wilberforce/M -Wilbert/M -Wilbur/M -Wilburn/M -Wilburt/M -Wilcox/M -Wilda/M -wildcat/SM -wildcatted -wildcatter/MS -wildcatting -wildebeest/SM -Wilde/MR -Wilden/M -Wilder/M -wilderness/SM -wilder/P -wildfire/MS -wildflower/S -wildfowl/M -wilding/M -wildlife/M -wildness/MS -Wildon/M -wild/SPGTYRD -wile/DSMG -Wileen/M -Wilek/M -Wiley/M -Wilford/M -Wilfred/M -Wilfredo/M -Wilfrid/M -wilfulness's -Wilhelmina/M -Wilhelmine/M -Wilhelm/M -Wilie/M -wilily -wiliness/MS -Wilkerson/M -Wilkes/M -Wilkins/M -Wilkinson/M -Willabella/M -Willa/M -Willamette/M -Willamina/M -Willard/M -Willcox/M -Willdon/M -willed/U -Willem/M -Willemstad/M -willer/M -Willetta/M -Willette/M -Willey/M -willfulness/S -willful/YP -Williamsburg/M -William/SM -Williamson/M -Willied/M -Willie/M -willies -Willi/MS -willinger -willingest -willingness's -willingness/US -willing/UYP -Willisson/M -williwaw/MS -Will/M -Willoughby/M -willower/M -Willow/M -willow/RDMSG -willowy/TR -willpower/MS -will/SGJRD -Willy/SDM -Willyt/M -Wilma/M -Wilmar/M -Wilmer/M -Wilmette/M -Wilmington/M -Wilona/M -Wilone/M -Wilow/M -Wilshire/M -Wilsonian -Wilson/M -wilt/DGS -Wilt/M -Wilton/M -wily/PTR -Wimbledon/M -wimp/GSMD -wimpish -wimple/SDGM -wimpy/RT -wince/SDG -Winchell/M -wincher/M -winchester/M -Winchester/MS -winch/GRSDM -windbag/SM -windblown -windbreak/MZSR -windburn/GSMD -winded -winder/UM -windfall/SM -windflower/MS -Windham/M -Windhoek/M -windily -windiness/SM -winding/MS -windjammer/SM -windlass/GMSD -windless/YP -windmill/GDMS -window/DMGS -windowless -windowpane/SM -Windows -windowsill/SM -windpipe/SM -windproof -windrow/GDMS -wind's -winds/A -windscreen/MS -windshield/SM -windsock/MS -Windsor/MS -windstorm/MS -windsurf/GZJSRD -windswept -windup/MS -wind/USRZG -Windward/M -windward/SY -Windy/M -windy/TPR -wineglass/SM -winegrower/SM -Winehead/M -winemake -winemaster -wine/MS -winery/MS -Winesap/M -wineskin/M -Winfield/M -Winfred/M -Winfrey/M -wingback/M -wingding/MS -wingeing -winger/M -wing/GZRDM -wingless -winglike -wingman -wingmen -wingspan/SM -wingspread/MS -wingtip/S -Winifield/M -Winifred/M -Wini/M -winker/M -wink/GZRDS -winking/U -Winkle/M -winkle/SDGM -winless -Win/M -winnable -Winnah/M -Winna/M -Winnebago/M -Winne/M -winner/MS -Winnetka/M -Winnie/M -Winnifred/M -Winni/M -winning/SY -Winnipeg/M -Winn/M -winnow/SZGRD -Winny/M -Winograd/M -wino/MS -Winonah/M -Winona/M -Winooski/M -Winsborough/M -Winsett/M -Winslow/M -winsomeness/SM -winsome/PRTY -Winston/M -winterer/M -wintergreen/SM -winterize/GSD -Winters -winter/SGRDYM -wintertime/MS -Winthrop/M -wintriness/M -wintry/TPR -winy/RT -win/ZGDRS -wipe/DRSZG -wiper/M -wirehair/MS -wireless/MSDG -wireman/M -wiremen -wirer/M -wire's -wires/A -wiretap/MS -wiretapped -wiretapper/SM -wiretapping -wire/UDA -wiriness/S -wiring/SM -wiry/RTP -Wisc -Wisconsinite/SM -Wisconsin/M -wisdoms -wisdom/UM -wiseacre/MS -wisecrack/GMRDS -wised -wisely/TR -Wise/M -wiseness -wisenheimer/M -Wisenheimer/M -wises -wise/URTY -wishbone/MS -wishfulness/M -wishful/PY -wish/GZSRD -wishy -wising -Wis/M -wisp/MDGS -wispy/RT -wist/DGS -wisteria/SM -wistfulness/MS -wistful/PY -witchcraft/SM -witchdoctor/S -witchery/MS -witch/SDMG -withal -withdrawal/MS -withdrawer/M -withdrawnness/M -withdrawn/P -withdraw/RGS -withdrew -withe/M -wither/GDJ -withering/Y -Witherspoon/M -with/GSRDZ -withheld -withholder/M -withhold/SJGZR -within/S -without/S -withs -withstand/SG -withstood -witlessness/MS -witless/PY -Wit/M -witness/DSMG -witnessed/U -wit/PSM -witted -witter/G -Wittgenstein/M -witticism/MS -Wittie/M -wittily -wittiness/SM -wittings -witting/UY -Witt/M -Witty/M -witty/RTP -Witwatersrand/M -wive/GDS -wives/M -wizard/MYS -wizardry/MS -wizen/D -wiz's -wk/Y -Wm/M -WNW -woad/MS -wobble/GSRD -wobbler/M -wobbliness/S -wobbly/PRST -Wodehouse/M -woebegone/P -woefuller -woefullest -woefulness/SM -woeful/PY -woe/PSM -woke -wok/SMN -Wolcott/M -wold/MS -Wolfe/M -wolfer/M -Wolff/M -Wolfgang/M -wolfhound/MS -Wolfie/M -wolfishness/M -wolfish/YP -Wolf/M -wolfram/MS -wolf/RDMGS -Wolfy/M -Wollongong/M -Wollstonecraft/M -Wolsey/M -Wolverhampton/M -wolverine/SM -Wolverton/M -wolves/M -woman/GSMYD -womanhood/MS -womanish -womanized/U -womanizer/M -womanize/RSDZG -womanizes/U -womankind/M -womanlike -womanliness/SM -womanly/PRT -wombat/MS -womb/SDM -womenfolk/MS -women/MS -wonderer/M -wonderfulness/SM -wonderful/PY -wonder/GLRDMS -wondering/Y -wonderland/SM -wonderment/SM -wondrousness/M -wondrous/YP -Wong/M -wonk/S -wonky/RT -wonned -wonning -won/SG -won't -wontedness/MU -wonted/PUY -wont/SGMD -Woodard/M -Woodberry/M -woodbine/SM -woodblock/S -Woodbury/M -woodcarver/S -woodcarving/MS -woodchopper/SM -woodchuck/MS -woodcock/MS -woodcraft/MS -woodcut/SM -woodcutter/MS -woodcutting/MS -woodenness/SM -wooden/TPRY -woodgrain/G -woodhen -Woodhull/M -Woodie/M -woodiness/MS -woodland/SRM -Woodlawn/M -woodlice -woodlot/S -woodlouse/M -woodman/M -Woodman/M -woodmen -woodpecker/SM -woodpile/SM -Woodrow/M -woodruff/M -woo/DRZGS -woodshedded -woodshedding -woodshed/SM -woodside -Wood/SM -woodsman/M -woodsmen -wood/SMNDG -woodsmoke -woods/R -Woodstock/M -woodsy/TRP -Woodward/MS -woodwind/S -woodworker/M -woodworking/M -woodwork/SMRGZJ -woodworm/M -woodyard -Woody/M -woody/TPSR -woofer/M -woof/SRDMGZ -Woolf/M -woolgatherer/M -woolgathering/M -woolgather/RGJ -woolliness/MS -woolly/RSPT -Woolongong/M -wool/SMYNDX -Woolworth/M -Woonsocket/M -Wooster/M -Wooten/M -woozily -wooziness/MS -woozy/RTP -wop/MS! -Worcestershire/M -Worcester/SM -wordage/SM -word/AGSJD -wordbook/MS -Worden/M -wordily -wordiness/SM -wording/AM -wordless/Y -wordplay/SM -word's -Wordsworth/M -wordy/TPR -wore -workability's -workability/U -workableness/M -workable/U -workably -workaday -workaholic/S -workaround/SM -workbench/MS -workbook/SM -workday/SM -worked/A -worker/M -workfare/S -workforce/S -work/GZJSRDMB -workhorse/MS -workhouse/SM -working/M -workingman/M -workingmen -workingwoman/M -workingwomen -workload/SM -workmanlike -Workman/M -workman/MY -workmanship/MS -workmate/S -workmen/M -workout/SM -workpiece/SM -workplace/SM -workroom/MS -works/A -worksheet/S -workshop/MS -workspace/S -workstation/MS -worktable/SM -worktop/S -workup/S -workweek/SM -worldlier -worldliest -worldliness/USM -worldly/UP -worldwide -world/ZSYM -wormer/M -wormhole/SM -worm/SGMRD -Worms/M -wormwood/SM -wormy/RT -worn/U -worried/Y -worrier/M -worriment/MS -worrisome/YP -worrying/Y -worrywart/SM -worry/ZGSRD -worsen/GSD -worse/SR -worshiper/M -worshipfulness/M -worshipful/YP -worship/ZDRGS -worsted/MS -worst/SGD -worth/DG -worthily/U -worthinesses/U -worthiness/SM -Worthington/M -worthlessness/SM -worthless/PY -Worth/M -worths -worthwhile/P -Worthy/M -worthy/UTSRP -wort/SM -wost -wot -Wotan/M -wouldn't -would/S -wouldst -would've -wound/AU -wounded/U -wounder -wounding -wounds -wound's -wove/A -woven/AU -wovens -wow/SDG -Wozniak/M -WP -wpm -wrack/SGMD -wraith/M -wraiths -Wrangell/M -wrangle/GZDRS -wrangler/M -wraparound/S -wrap/MS -wrapped/U -wrapper/MS -wrapping/SM -wraps/U -wrasse/SM -wrathful/YP -wrath/GDM -wraths -wreak/SDG -wreathe -wreath/GMDS -wreaths -wreckage/MS -wrecker/M -wreck/GZRDS -wrenching/Y -wrench/MDSG -wren/MS -Wren/MS -Wrennie/M -wrester/M -wrestle/JGZDRS -wrestler/M -wrestling/M -wrest/SRDG -wretchedness/SM -wretched/TPYR -wretch/MDS -wriggle/DRSGZ -wriggler/M -wriggly/RT -Wright/M -wright/MS -Wrigley/M -wringer/M -wring/GZRS -wrinkled/U -wrinkle/GMDS -wrinkly/RST -wristband/SM -wrist/MS -wristwatch/MS -writable/U -write/ASBRJG -writer/MA -writeup -writhe/SDG -writing/M -writ/MRSBJGZ -written/UA -Wroclaw -wrongdoer/MS -wrongdoing/MS -wronger/M -wrongfulness/MS -wrongful/PY -wrongheadedness/MS -wrongheaded/PY -wrongness/MS -wrong/PSGTYRD -Wronskian/M -wrote/A -wroth -wrought/I -wrung -wry/DSGY -wryer -wryest -wryness/SM -W's -WSW -wt -W/T -Wuhan/M -Wu/M -Wurlitzer/M -wurst/SM -wuss/S -wussy/TRS -WV -WW -WWI -WWII -WWW -w/XTJGV -WY -Wyatan/M -Wyatt/M -Wycherley/M -Wycliffe/M -Wye/MH -Wyeth/M -Wylie/M -Wylma/M -Wyman/M -Wyndham/M -Wyn/M -Wynne/M -Wynnie/M -Wynn/M -Wynny/M -Wyo/M -Wyomingite/SM -Wyoming/M -WYSIWYG -x -X -Xanadu -Xanthippe/M -Xanthus/M -Xaviera/M -Xavier/M -Xebec/M -Xe/M -XEmacs/M -Xenakis/M -Xena/M -Xenia/M -Xenix/M -xenon/SM -xenophobe/MS -xenophobia/SM -xenophobic -Xenophon/M -Xenos -xerographic -xerography/MS -xerox/GSD -Xerox/MGSD -Xerxes/M -Xever/M -Xhosa/M -Xi'an -Xian/S -Xiaoping/M -xii -xiii -xi/M -Ximenes/M -Ximenez/M -Ximian/SM -Xingu/M -xis -xiv -xix -XL -Xmas/SM -XML -Xochipilli/M -XOR -X's -XS -xterm/M -Xuzhou/M -xv -xvi -xvii -xviii -xx -XXL -xylem/SM -xylene/M -Xylia/M -Xylina/M -xylophone/MS -xylophonist/S -Xymenes/M -Y -ya -yacc/M -Yacc/M -yachting/M -yachtsman -yachtsmen -yachtswoman/M -yachtswomen -yacht/ZGJSDM -yack's -Yagi/M -yahoo/MS -Yahweh/M -Yakima/M -yakked -yakking -yak/SM -Yakut/M -Yakutsk/M -Yale/M -Yalies/M -y'all -Yalonda/M -Yalow/M -Yalta/M -Yalu/M -Yamaha/M -yammer/RDZGS -Yamoussoukro -yam/SM -Yanaton/M -Yance/M -Yancey/M -Yancy/M -Yang/M -Yangon -yang/S -Yangtze/M -Yankee/SM -yank/GDS -Yank/MS -Yaounde/M -yapped -yapping -yap/S -Yaqui/M -yardage/SM -yardarm/SM -Yardley/M -Yard/M -yardman/M -yardmaster/S -yardmen -yard/SMDG -yardstick/SM -yarmulke/SM -yarn/SGDM -Yaroslavl/M -yarrow/MS -Yasmeen/M -Yasmin/M -Yates -yaw/DSG -yawl/SGMD -yawner/M -yawn/GZSDR -yawning/Y -Yb/M -yd -Yeager/M -yeah -yeahs -yearbook/SM -yearling/M -yearlong -yearly/S -yearner/M -yearning/MY -yearn/JSGRD -year/YMS -yea/S -yeastiness/M -yeast/SGDM -yeasty/PTR -Yeats/M -yecch -yegg/MS -Yehudi/M -Yehudit/M -Yekaterinburg/M -Yelena/M -yell/GSDR -yellowhammers -yellowish -Yellowknife/M -yellowness/MS -Yellowstone/M -yellow/TGPSRDM -yellowy -yelper/M -yelp/GSDR -Yeltsin -Yemeni/S -Yemenite/SM -Yemen/M -Yenisei/M -yenned -yenning -yen/SM -Yentl/M -yeomanry/MS -yeoman/YM -yeomen -yep/S -Yerevan/M -Yerkes/M -Yesenia/M -yeshiva/SM -yes/S -yessed -yessing -yesterday/MS -yesteryear/SM -yet -ye/T -yeti/SM -Yetta/M -Yettie/M -Yetty/M -Yevette/M -Yevtushenko/M -yew/SM -y/F -Yggdrasil/M -Yiddish/M -yielded/U -yielding/U -yield/JGRDS -yikes -yin/S -yipe/S -yipped -yippee/S -yipping -yip/S -YMCA -YMHA -Ymir/M -YMMV -Ynes/M -Ynez/M -yo -Yoda/M -yodeler/M -yodel/SZRDG -Yoder/M -yoga/MS -yoghurt's -yogi/MS -yogurt/SM -yoke/DSMG -yoked/U -yokel/SM -yokes/U -yoking/U -Yoknapatawpha/M -Yokohama/M -Yoko/M -Yolanda/M -Yolande/M -Yolane/M -Yolanthe/M -yolk/DMS -yon -yonder -Yong/M -Yonkers/M -yore/MS -Yorgo/MS -Yorick/M -Yorke/M -Yorker/M -yorker/SM -Yorkshire/MS -Yorktown/M -York/ZRMS -Yoruba/M -Yosemite/M -Yoshiko/M -Yoshi/M -Yost/M -you'd -you'll -youngish -Young/M -youngster/MS -Youngstown/M -young/TRYP -you're -your/MS -yourself -yourselves -you/SH -youthfulness/SM -youthful/YP -youths -youth/SM -you've -Yovonnda/M -yow -yowl/GSD -Ypres/M -Ypsilanti/M -yr -yrs -Y's -Ysabel/M -YT -ytterbium/MS -yttrium/SM -yuan/M -Yuba/M -Yucatan -yucca/MS -yuck/GSD -yucky/RT -Yugo/M -Yugoslavia/M -Yugoslavian/S -Yugoslav/M -Yuh/M -Yuki/M -yukked -yukking -Yukon/M -yuk/S -yule/MS -Yule/MS -yuletide/MS -Yuletide/S -Yul/M -Yulma/M -yum -Yuma/M -yummy/TRS -Yunnan/M -yuppie/SM -yup/S -Yurik/M -Yuri/M -yurt/SM -Yves/M -Yvette/M -Yvon/M -Yvonne/M -Yvor/M -YWCA -YWHA -Zabrina/M -Zaccaria/M -Zachariah/M -Zacharia/SM -Zacharie/M -Zachary/M -Zacherie/M -Zachery/M -Zach/M -Zackariah/M -Zack/M -zagging -Zagreb/M -zag/S -Zahara/M -Zaire/M -Zairian/S -Zak/M -Zambezi/M -Zambia/M -Zambian/S -Zamboni -Zamenhof/M -Zamora/M -Zandra/M -Zane/M -Zaneta/M -zaniness/MS -Zan/M -Zanuck/M -zany/PDSRTG -Zanzibar/M -Zapata/M -Zaporozhye/M -Zappa/M -zapped -zapper/S -zapping -zap/S -Zarah/M -Zara/M -Zared/M -Zaria/M -Zarla/M -Zealand/M -zeal/MS -zealot/MS -zealotry/MS -zealousness/SM -zealous/YP -Zea/M -Zebadiah/M -Zebedee/M -Zeb/M -zebra/MS -Zebulen/M -Zebulon/M -zebu/SM -Zechariah/M -Zedekiah/M -Zed/M -Zedong/M -zed/SM -Zeffirelli/M -Zeiss/M -zeitgeist/S -Zeke/M -Zelda/M -Zelig/M -Zellerbach/M -Zelma/M -Zena/M -Zenger/M -Zenia/M -zenith/M -zeniths -Zen/M -Zennist/M -Zeno/M -Zephaniah/M -zephyr/MS -Zephyrus/M -Zeppelin's -zeppelin/SM -Zerk/M -zeroed/M -zeroing/M -zero/SDHMG -zestfulness/MS -zestful/YP -zest/MDSG -zesty/RT -zeta/SM -zeugma/M -Zeus/M -Zhdanov/M -Zhengzhou -Zhivago/M -Zhukov/M -Zia/M -Zibo/M -Ziegfeld/MS -Ziegler/M -zig -zigged -zigging -Ziggy/M -zigzagged -zigzagger -zigzagging -zigzag/MS -zilch/S -zillion/MS -Zilvia/M -Zimbabwean/S -Zimbabwe/M -Zimmerman/M -zincked -zincking -zinc/MS -zing/GZDRM -zingy/RT -zinnia/SM -Zionism/MS -Zionist/MS -Zion/SM -zip/MS -zipped/U -zipper/GSDM -zipping/U -zippy/RT -zips/U -zirconium/MS -zircon/SM -Zita/M -Zitella/M -zither/SM -zit/S -zloty/SM -Zn/M -zodiacal -zodiac/SM -Zoe/M -Zola/M -Zollie/M -Zolly/M -Zomba/M -zombie/SM -zombi's -zonal/Y -Zonda/M -Zondra/M -zoned/A -zone/MYDSRJG -zones/A -zoning/A -zonked -Zonnya/M -zookeepers -zoological/Y -zoologist/SM -zoology/MS -zoom/DGS -zoophyte/SM -zoophytic -zoo/SM -Zorah/M -Zora/M -Zorana/M -Zorina/M -Zorine/M -Zorn/M -Zoroaster/M -Zoroastrianism/MS -Zoroastrian/S -Zorro/M -Zosma/M -zounds/S -Zr/M -Zs -Zsazsa/M -Zsigmondy/M -z/TGJ -Zubenelgenubi/M -Zubeneschamali/M -zucchini/SM -Zukor/M -Zulema/M -Zululand/M -Zulu/MS -Zuni/S -Zrich/M -Zuzana/M -zwieback/MS -Zwingli/M -Zworykin/M -Z/X -zydeco/S -zygote/SM -zygotic -zymurgy/S diff --git a/examples/node/index.js b/examples/node/index.js deleted file mode 100644 index 4a03926..0000000 --- a/examples/node/index.js +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Before running, ensure that you have done - * $ npm install typo-js - */ - -var Typo = require("typo-js"); -var dictionary = new Typo( "en_US" ); - -var is_spelled_correctly = dictionary.check("mispelled"); - -console.log( "Is 'mispelled' spelled correctly? " + is_spelled_correctly ); - -var is_spelled_correctly = dictionary.check("misspelled"); - -console.log( "Is 'misspelled' spelled correctly? " + is_spelled_correctly ); - -var array_of_suggestions = dictionary.suggest("mispeling"); - -console.log( "Spelling suggestions for 'mispeling': " + array_of_suggestions.join( ', ' ) ); \ No newline at end of file diff --git a/src/typo.ts b/src/typo.ts index 35bc8f9..7d2ed78 100644 --- a/src/typo.ts +++ b/src/typo.ts @@ -8,7 +8,7 @@ export function createTypo(dictData: IDictData): ITypo { } export interface IDictData { - compoundRules: RegExp[]; + compoundRules: string[]; dictionaryTable: {[key: string]: string[]}; flags: {[key: string]: string}; replacementTable: string[][]; @@ -33,7 +33,10 @@ class Typo implements ITypo { private replacementTable: IReplacementEntry[]; constructor(dictData: IDictData) { - this.compoundRules = dictData.compoundRules; + this.compoundRules = dictData.compoundRules.map((rule) => { + const ruleSet = rule.split("/").slice(1); + return new RegExp(ruleSet[0], ruleSet[1]); + }); this.dictionaryTable = dictData.dictionaryTable; this.flags = dictData.flags; this.replacementTable = dictData.replacementTable.map((entry: string[]) => { @@ -45,6 +48,7 @@ class Typo implements ITypo { // Remove leading and trailing whitespace const trimmedWord = aWord.replace(/^\s\s*/, "").replace(/\s\s*$/, ""); + debugger; if (this.checkExact(trimmedWord)) { return true; } diff --git a/tests/README.md b/tests/README.md deleted file mode 100644 index 6fffd5b..0000000 --- a/tests/README.md +++ /dev/null @@ -1,4 +0,0 @@ -These tests can be run by loading the entire Typo.js project as a Chrome -extension and then clicking the Typo.js Testing Harness icon in the browser. -A manifest.json file is included in the project root to make this as easy -as possible. \ No newline at end of file diff --git a/tests/british.html b/tests/british.html deleted file mode 100644 index f2979ec..0000000 --- a/tests/british.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Typo.js British English Test Suite - - - - - - - - -

Typo.js British English Test Suite

-

-
-

-
    - - \ No newline at end of file diff --git a/tests/british.js b/tests/british.js deleted file mode 100644 index 18dc860..0000000 --- a/tests/british.js +++ /dev/null @@ -1,25 +0,0 @@ -function run() { - var utilityDict = new Typo(); - var affData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/en_GB/en_GB.aff")); - var wordData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/en_GB/en_GB.dic")); - - var hashDict = new Typo("en_GB", affData, wordData); - - testDictionary(hashDict); - - var dict = new Typo("en_GB", null, null, { dictionaryPath : "tests/dictionaries", asyncLoad : true, loadedCallback : function () { - testDictionary(dict); - }}); -} - -function testDictionary(dict) { - test("Dictionary object attributes are properly set", function () { - equal(dict.dictionary, "en_GB"); - }); - - test("Correct checking of words", function () { - equal(dict.check("wefwef"), false); - }); -} - -addEventListener( "load", run, false ); \ No newline at end of file diff --git a/tests/dictionaries/de_DE/LICENSE b/tests/dictionaries/de_DE/LICENSE deleted file mode 100644 index a71d75d..0000000 --- a/tests/dictionaries/de_DE/LICENSE +++ /dev/null @@ -1,342 +0,0 @@ -From https://github.com/elastic/hunspell/blob/master/dicts/de_DE/README_de_DE.txt - - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19yy name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. \ No newline at end of file diff --git a/tests/dictionaries/de_DE/de_DE.aff b/tests/dictionaries/de_DE/de_DE.aff deleted file mode 100644 index a72019d..0000000 --- a/tests/dictionaries/de_DE/de_DE.aff +++ /dev/null @@ -1,501 +0,0 @@ -SET ISO8859-1 -TRY esianrtolcdugmphbyfvkwESIANRTOLCDUGMPHBYFVKW - - -PFX G N 1 -PFX G 0 ge . - - - -PFX U Y 1 -PFX U 0 un . - - - -PFX V Y 1 -PFX V 0 ver . - - - -SFX F N 7 -SFX F 0 nen in -SFX F e in e -SFX F e innen e -SFX F 0 in [^i]n -SFX F 0 innen [^i]n -SFX F 0 in [^en] -SFX F 0 innen [^en] - - - - - -SFX L N 12 -SFX L 0 tlich n -SFX L 0 tliche n -SFX L 0 tlicher n -SFX L 0 tliches n -SFX L 0 tlichem n -SFX L 0 tlichen n -SFX L 0 lich [^n] -SFX L 0 liche [^n] -SFX L 0 licher [^n] -SFX L 0 liches [^n] -SFX L 0 lichem [^n] -SFX L 0 lichen [^n] - - - - - - -SFX H N 2 -SFX H 0 heit . -SFX H 0 heiten . - - -SFX K N 2 -SFX K 0 keit . -SFX K 0 keiten . - - - -SFX M N 12 -SFX M 0 chen [^s][^s] -SFX M 0 chens [^s][^s] -SFX M 0 chen [^e] -SFX M 0 chens [^e] -SFX M ass sschen ass -SFX M ass sschens ass -SFX M oss sschen oss -SFX M oss sschens oss -SFX M uss sschen uss -SFX M uss sschens uss -SFX M e chen e -SFX M e chens e - - - -SFX A Y 46 -SFX A 0 r e -SFX A 0 n e -SFX A 0 m e -SFX A 0 s e -SFX A 0 e [^elr] -SFX A 0 er [^elr] -SFX A 0 en [^elr] -SFX A 0 em [^elr] -SFX A 0 es [^elr] -SFX A 0 e [^e][rl] -SFX A 0 er [^e][rl] -SFX A 0 en [^e][rl] -SFX A 0 em [^e][rl] -SFX A 0 es [^e][rl] -SFX A 0 e [^u]er -SFX A 0 er [^u]er -SFX A 0 en [^u]er -SFX A 0 em [^u]er -SFX A 0 es [^u]er -SFX A er re uer -SFX A er rer uer -SFX A er ren uer -SFX A er rem uer -SFX A er res uer -SFX A 0 e [eil]el -SFX A 0 er [eil]el -SFX A 0 en [eil]el -SFX A 0 em [eil]el -SFX A 0 es [eil]el -SFX A el le [^eil]el -SFX A el ler [^eil]el -SFX A el len [^eil]el -SFX A el lem [^eil]el -SFX A el les [^eil]el -SFX A lig elig [^aeiouhlr]lig -SFX A lig elige [^aeiouhlr]lig -SFX A lig eliger [^aeiouhlr]lig -SFX A lig eligen [^aeiouhlr]lig -SFX A lig eligem [^aeiouhlr]lig -SFX A lig eliges [^aeiouhlr]lig -SFX A erig rig [^hi]erig -SFX A erig rige [^hi]erig -SFX A erig riger [^hi]erig -SFX A erig rigen [^hi]erig -SFX A erig rigem [^hi]erig -SFX A erig riges [^hi]erig - - - -SFX C Y 80 -SFX C 0 ere [^elr] -SFX C 0 erer [^elr] -SFX C 0 eren [^elr] -SFX C 0 erem [^elr] -SFX C 0 eres [^elr] -SFX C 0 re e -SFX C 0 rer e -SFX C 0 ren e -SFX C 0 rem e -SFX C 0 res e -SFX C 0 ere [^e][lr] -SFX C 0 erer [^e][lr] -SFX C 0 eren [^e][lr] -SFX C 0 erem [^e][lr] -SFX C 0 eres [^e][lr] -SFX C el lere el -SFX C el lerer el -SFX C el leren el -SFX C el lerem el -SFX C el leres el -SFX C er rere uer -SFX C er rerer uer -SFX C er reren uer -SFX C er rerem uer -SFX C er reres uer -SFX C 0 ere [^u]er -SFX C 0 erer [^u]er -SFX C 0 eren [^u]er -SFX C 0 erem [^u]er -SFX C 0 eres [^u]er -SFX C lig eligere [^aeiouhlr]lig -SFX C lig eligerer [^aeiouhlr]lig -SFX C lig eligeren [^aeiouhlr]lig -SFX C lig eligerem [^aeiouhlr]lig -SFX C lig eligeres [^aeiouhlr]lig -SFX C erig rigere [^hi]erig -SFX C erig rigerer [^hi]erig -SFX C erig rigeren [^hi]erig -SFX C erig rigerem [^hi]erig -SFX C erig rigeres [^hi]erig -SFX C 0 este [ksuxz] -SFX C 0 ester [ksuxz] -SFX C 0 esten [ksuxz] -SFX C 0 estem [ksuxz] -SFX C 0 estes [ksuxz] -SFX C 0 ste et -SFX C 0 ster et -SFX C 0 sten et -SFX C 0 stem et -SFX C 0 stes et -SFX C 0 este [^e]t -SFX C 0 ester [^e]t -SFX C 0 esten [^e]t -SFX C 0 estem [^e]t -SFX C 0 estes [^e]t -SFX C 0 ste [^kstxz] -SFX C 0 ster [^kstxz] -SFX C 0 sten [^kstxz] -SFX C 0 stem [^kstxz] -SFX C 0 stes [^kstxz] -SFX C 0 ste nd -SFX C 0 ster nd -SFX C 0 sten nd -SFX C 0 stem nd -SFX C 0 stes nd -SFX C 0 este [^n]d -SFX C 0 ester [^n]d -SFX C 0 esten [^n]d -SFX C 0 estem [^n]d -SFX C 0 estes [^n]d -SFX C lig eligste [^aeiouhlr]lig -SFX C lig eligster [^aeiouhlr]lig -SFX C lig eligsten [^aeiouhlr]lig -SFX C lig eligstem [^aeiouhlr]lig -SFX C lig eligstes [^aeiouhlr]lig -SFX C erig rigste [^hi]erig -SFX C erig rigster [^hi]erig -SFX C erig rigsten [^hi]erig -SFX C erig rigstem [^hi]erig -SFX C erig rigstes [^hi]erig - - - - - - -SFX E Y 1 -SFX E 0 e . - - -SFX f Y 4 -SFX f ph f ph -SFX f ph fen ph -SFX f phie fie phie -SFX f phie fien phie - - -SFX N Y 1 -SFX N 0 n . - - -SFX P Y 1 -SFX P 0 en . - - - -SFX p Y 24 -SFX p auf ufe auf -SFX p auf ufen auf -SFX p aus user haus -SFX p aus usern haus -SFX p arkt rkte markt -SFX p arkt rkten markt -SFX p ang nge ang -SFX p ang ngen ang -SFX p u e u -SFX p u en u -SFX p o e o -SFX p o en o -SFX p aum ume aum -SFX p aum umen aum -SFX p ag ge ag -SFX p ag gen ag -SFX p ug ge ug -SFX p ug gen ug -SFX p all lle all -SFX p all llen all -SFX p ass sse ass -SFX p ass ssen ass -SFX p uss sse uss -SFX p uss ssen uss - - - - - -SFX R Y 3 -SFX R 0 er [^e] -SFX R 0 ern [^e] -SFX R 0 r e - - -SFX S Y 1 -SFX S 0 s . - - -SFX q Y 2 -SFX q s sse s -SFX q s ssen s - - -SFX Q Y 3 -SFX Q s sse s -SFX Q s ssen s -SFX Q s sses s - - - - - -SFX T Y 1 -SFX T 0 es . - - - - -SFX J Y 12 -SFX J n ung [bgkpsz]eln -SFX J n ungen [bgkpsz]eln -SFX J eln lung eln -SFX J n ung ern -SFX J en ung en -SFX J eln lungen eln -SFX J n ungen ern -SFX J en ungen en -SFX J 0 ung [^n] -SFX J 0 ungen [^n] -SFX J el lung el -SFX J el lungen el - - -SFX B N 12 -SFX B n bar e[lr]n -SFX B n bare e[lr]n -SFX B n baren e[lr]n -SFX B n barer e[lr]n -SFX B n bares e[lr]n -SFX B n barem e[lr]n -SFX B en bar en -SFX B en bare en -SFX B en baren en -SFX B en barer en -SFX B en bares en -SFX B en barem en - - -SFX D Y 6 -SFX D 0 d n -SFX D 0 de n -SFX D 0 den n -SFX D 0 der n -SFX D 0 des n -SFX D 0 dem n - - - -SFX W Y 8 -SFX W en 0 [^imn]en -SFX W en 0 eien -SFX W en 0 [^bght][mn]en -SFX W en 0 [^c]hnen -SFX W n 0 e[lr]n -SFX W st 0 [^s]st -SFX W t 0 sst -SFX W t 0 [^s]t - - - - - - - - - - - - - -SFX I Y 16 -SFX I n 0 en -SFX I eln le eln -SFX I n e eln -SFX I ern re ern -SFX I n e ern -SFX I n t e[lr]n -SFX I n t [dt]en -SFX I en t [^dimnt]en -SFX I en t eien -SFX I n t [^e]ien -SFX I n t chnen -SFX I en t [^c]h[mn]en -SFX I n t [^aehilmnour][mn]en -SFX I en t [aeilmnour][mn]en -SFX I n e un -SFX I n t un - - -SFX X Y 26 -SFX X n t e[lr]n -SFX X n t [dtw]en -SFX X en t eien -SFX X n t [^e]ien -SFX X en t [^ditmnw]en -SFX X n t chnen -SFX X en t [^c]h[mn]en -SFX X n t [^aehilmnour][mn]en -SFX X en t [aeilmnour][mn]en -SFX X n t un -SFX X st 0 tst -SFX X n st e[lr]n -SFX X n st [dtw]en -SFX X en st [^dimnstwzx]en -SFX X en st eien -SFX X n st [^e]ien -SFX X n st chnen -SFX X en st [^c]h[mn]en -SFX X n st [^aehilmnour][mn]en -SFX X en st [aeilmnour][mn]en -SFX X n st un -SFX X n st [sxz]en -SFX X n st ssen -SFX X n st schen -SFX X t st [^sz]t -SFX X t est zt - - -SFX Y Y 36 -SFX Y n te e[lr]n -SFX Y n te [dtw]en -SFX Y en te [^dimntw]en -SFX Y en te eien -SFX Y n te [^e]ien -SFX Y n te chnen -SFX Y en te [^c]h[mn]en -SFX Y n te [^aehilmnour][mn]en -SFX Y en te [aeilmnour][mn]en -SFX Y n test e[lr]n -SFX Y n test [dtw]en -SFX Y en test [^dimntw]en -SFX Y en test eien -SFX Y n test [^e]ien -SFX Y n test chnen -SFX Y en test [^c]h[mn]en -SFX Y n test [^aehilmnour][mn]en -SFX Y en test [aeilmnour][mn]en -SFX Y n tet e[lr]n -SFX Y n tet [dtw]en -SFX Y en tet [^dimntw]en -SFX Y en tet eien -SFX Y n tet [^e]ien -SFX Y n tet chnen -SFX Y en tet [^c]h[mn]en -SFX Y n tet [^aehilmnour][mn]en -SFX Y en tet [aeilmnour][mn]en -SFX Y n ten e[lr]n -SFX Y n ten [dtw]en -SFX Y en ten [^dimntw]en -SFX Y en ten eien -SFX Y n ten [^e]ien -SFX Y n ten chnen -SFX Y en ten [^c]h[mn]en -SFX Y n ten [^aehilmnour][mn]en -SFX Y en ten [aeilmnour][mn]en - - - -SFX Z Y 13 -SFX Z 0 st [^hsz] -SFX Z 0 st [^c]h -SFX Z 0 st [^s]ch -SFX Z 0 est [dfkstz] -SFX Z 0 est ch -SFX Z 0 est [au] -SFX Z 0 est ie -SFX Z 0 est [io]ss -SFX Z 0 t [^dt] -SFX Z 0 et [dt] -SFX Z 0 n e -SFX Z 0 en ie -SFX Z 0 en [^e] - - -SFX O Y 21 -SFX O n tes e[lr]n -SFX O n tes [dtw]en -SFX O en tes [^dmntw]en -SFX O n tes chnen -SFX O en tes [^c]h[mn]en -SFX O n tes [^aehilmnour][mn]en -SFX O en tes [aeilmnour][mn]en -SFX O n ter e[lr]n -SFX O n ter [dtw]en -SFX O en ter [^dmntw]en -SFX O n ter chnen -SFX O en ter [^c]h[mn]en -SFX O n ter [^aehilmnour][mn]en -SFX O en ter [aeilmnour][mn]en -SFX O n tem e[lr]n -SFX O n tem [dtw]en -SFX O en tem [^dmntw]en -SFX O n tem chnen -SFX O en tem [^c]h[mn]en -SFX O n tem [^aehilmnour][mn]en -SFX O en tem [aeilmnour][mn]en - -REP 15 -REP f ph -REP ph f -REP ss -REP ss -REP s ss -REP ss s -REP i ie -REP ie i -REP ee e -REP o oh -REP oh o -REP a ah -REP ah a -REP e eh -REP eh e - diff --git a/tests/dictionaries/de_DE/de_DE.dic b/tests/dictionaries/de_DE/de_DE.dic deleted file mode 100644 index e2db0dd..0000000 --- a/tests/dictionaries/de_DE/de_DE.dic +++ /dev/null @@ -1,80471 +0,0 @@ -80470 -bte/N -btissin/F -chtens -chtung/P -cker/N -derchen/S -ffin/F -gide -gypten/S -gypter/FNS -hnlichkeit/P -hre/N -hrenkranz -ltestenrat/T -mter/N -mterverteilung -nderns -nderung/P -nderungsantrag/STp -nderungsgesetz/E -nderungsindex -nderungsketten -nderungsrichtlinie -nderungsstand -nderungstabelle/N -nderungswnsche/N -nderungswunsch/ST -nderungszeichnung/P -nderungszeit/P -ngste/N -ngstigens -ngstigung/P -ngstlichkeit -pfel/N -quator/S -quatorialafrika -quatorialstrmung -quivalents -quivalenz/P -quivalenzklasse/N -quivalenzklassenbildung -quivalenzrelation/P -ra -rgernis/Qq -rgers -rmel/NS -rmelkanal/S -rmeltrick/S -rsche/N -rzte/FN -rzteberuf/EPST -rztebesprechung/P -rzteblatt/ST -rztegruppe/N -rztehonorar/EPS -rztekammer/N -rzteorganisation/P -rzteroman/P -rzteschaft -rztestreik/PS -rztetag/EPST -rztetreffen/S -rztetreuhand -rzteverbnde/N -rzteverband/ST -rztevereinigung/P -sthet/P -sthetik -thanol/S -ther/S -thiopien -thiopier/FNS -thyl -tna -tzens -tzung/P -ugelchen/S -uerlichkeit/P -uerns -uerung/P -xte/N -ABC -ABM -ACL -ACPI -ADAC -ADSL -AEG -AG -AGP -AI -AKW -AMD -ANSI -AOK -AOL -API -ARD -ASCII -ASTA -AT -ATM -Aachen/S -Aal/EPST -Aas/T -Aasgeier/NS -Abnderns -Abnderung/P -Abnderungsantrag/STp -Abnderungsvorschlag/STp -Abakus -Abarbeitens -Abarbeitung/P -Abarbeitungsgeschwindigkeit/P -Abarbeitungsreihenfolge/N -Abart/P -Abb -Abb. -Abbau/S -Abbaubarkeit/P -Abbaufortschritt/S -Abbaufortschrittsmessung -Abbaufront -Abbaugert -Abbaugerusche -Abbauleistung -Abbauleitzentrale/N -Abbaumaschine/N -Abbaumaterial/S -Abbaumenge/N -Abbaumglichkeit/P -Abbausituation/P -Abbausysteme/N -Abbauwerkzeug/EPST -Abberufens -Abberufung/P -Abbestellens -Abbestellung/P -Abbild/JRT -Abblendlicht/RST -Abblendschalter/NS -Abbrnde/N -Abbrand/S -Abbremsens -Abbremsgeschwindigkeit/P -Abbremsung/P -Abbremsverhalten/S -Abbruch/S -Abbrucharbeit/P -Abbruchbedingung/P -Abbruchobjekt/EPST -Abbruchunternehmen/S -Abbruchunternehmer/S -Abbuchens -Abbuchung/P -Abdankens -Abdankung/P -Abdeckblech/EPS -Abdeckens -Abdecker/NS -Abdeckerei/P -Abdeckkappe/N -Abdeckklappe/N -Abdeckmaterial/S -Abdeckplane/N -Abdeckplatte/N -Abdeckrahmen/S -Abdeckung/P -Abdichtens -Abdichtfuge/N -Abdichtung/P -Abdrift -Abdrosselns -Abdrosselung/P -Abdrosslung/P -Abdruck/ST -Abel/S -Abend/EP -Abendandacht/P -Abendanzug/STp -Abendblatt/ST -Abendbrot -Abenddmmerung/P -Abendessen/S -Abendgala -Abendgarderobe/N -Abendgebete/NS -Abendgesellschaft/P -Abendgymnasien -Abendgymnasium/S -Abendhimmel/NS -Abendkleid/RST -Abendkurs/EPT -Abendland/ST -Abendluft -Abendmahl/S -Abendnachricht/P -Abendprogramm/EPS -Abendrte/N -Abendrots -Abendschau/P -Abendschuhe/N -Abendschule/N -Abendsonne/N -Abendspaziergang/STp -Abendstern/EPST -Abendstudio -Abendunterhaltung/P -Abendunterricht -Abendvorstellung -Abendwind/E -Abendzeitung/P -Abenteuer/NS -Abenteuerfilm/EPS -Abenteuerlust -Abenteuerreise/N -Abenteuerroman/EPS -Abenteurer/FNS -Abenteurernatur/P -Abenteurertyp/P -Aberglaube/N -Aberkennens -Aberkennung/P -Aberwitz -Abessinien -Abessinienkrieg -Abeter/S -Abfahrten -Abfahrtshang/Sp -Abfahrtslufer/FN -Abfahrtsrennen -Abfahrtsstelle/N -Abfahrtsstrecke/N -Abfall/Sp -Abfallaufbereitung -Abfalleimer/N -Abfallgraben -Abfallkurve/N -Abfallpapier/S -Abfallprodukt/EPST -Abfallstoffe/N -Abfangjger/NS -Abfangrakete/N -Abfassens -Abfassung/P -Abfertigens -Abfertigung/P -Abfertigungsschalter/NS -Abfertigungsstelle/N -Abfindens -Abfindung/P -Abflachens -Abflachung/P -Abflug/Sp -Abflugflughafen -Abflugland -Abfluss/Tp -Abflusskanle/N -Abflusskanal/S -Abflussrohr/EPS -Abflussverstopfung/P -Abfrdermenge/N -Abfolge/N -Abfragesprache/N -Abfhrens -Abfhrmittel/NS -Abfhrung/P -Abfllanlage/N -Abfllens -Abfllfiliale/N -Abfllstation/P -Abfllung/P -Abgabe -Abgabebereitschaft -Abgabedruck -Abgabengesetze/N -Abgabenneigung -Abgabepreise/N -Abgaberate/N -Abgabesache/N -Abgang/Sp -Abgangszeugnis/Qq -Abgas/EPT -Abgasentgiftung -Abgaswerte -Abgelten/JS -Abgeordnetenausweis/E -Abgeordnetenbnke/N -Abgeordnetengruppe/N -Abgeordnetenhaus/Tp -Abgeordnetenimmunitt -Abgeordnetenmandat/ES -Abgeschiedenheit -Abgeschlossenheit -Abgespanntheit -Abglanz -Abgleich -Abgtter/N -Abgott/S -Abgrenzens -Abgrenzung/P -Abgriff/P -Abgriffspannung/P -Abgrnde/N -Abgrund/ST -Abguss/Tp -Abhngigkeit/P -Abhngigkeitsverhltnis/Qq -Abhrten/JS -Abhandeln/JS -Abhang/S -Abhebens -Abhebung/P -Abhilfe/N -Abhrgert/EPST -Abhrmanahme/N -Abhrmglichkeit/P -Abholens -Abholung/P -Abi -Abitur/S -Abiturient/FP -Abiturientenzahlen -Abk -Abk. -Abkapselns -Abkapselung/P -Abkapslung/P -Abkehr -Abklrens -Abklrung/P -Abklatsch -Abklingverhalten -Abkmmling/EPS -Abkocher/NS -Abkommens -Abkopplen/JS -Abkhlens -Abkhlung/P -Abkhlungspause -Abkrzens -Abkrzung/P -Abkrzungszeichen/S -Abkunft -Abladens -Abladepltze/N -Abladeplatz/T -Ablader/NS -Abladung/P -Abladungspreise -Ablage -Ablageraum/STp -Ablagerns -Ablagerung/P -Ablagerungsplatz -Ablass/T -Ablassbrief/EPST -Ablasshandel/S -Ablativ/S -Ablauf/STp -Ablaufdiagramm/EPS -Ablauffolge/N -Ablaufsteuerung/P -Ablaufsteuerwerk/S -Ablaufverkehr/S -Ablaut/EPST -Ableger/NS -Ablehnens -Ablehnung/P -Ableistens -Ableistung/P -Ableitens -Ableitung/P -Ableitungskanle/N -Ableitungskanal/S -Ableitungsregel/N -Ablenkbarkeit/P -Ablenkens -Ablenkung/P -Ablenkungsmanver/NS -Ablesens -Ableseperiode -Ablesung/P -Ablichtens -Ablichtung/P -Ablieferns -Ablieferung/P -Ablieferungsgewicht -Ablsens -Ablsesumme/N -Ablsung/P -Ablsungskredit -Abmrsche/N -Abmachens -Abmachung/P -Abmagerns -Abmagerung/P -Abmagerungskuren -Abmahnens -Abmahner/NS -Abmahnung/P -Abmarsch/S -Abmeldens -Abmeldung/P -Abmessens -Abmessung/P -Abmilderns -Abmilderung/P -Abmischens -Abmischung/P -Abnahme -Abnahmebescheinigung/P -Abnahmemenge/N -Abnahmepreis/EPT -Abnahmeprotokoll/PS -Abnahmestckzahl/P -Abnehmer/NS -Abnehmerkreis/EPT -Abnehmerschaft -Abneigen/JS -Abntzens -Abntzung/P -Abnutzens -Abnutzung/P -Abnutzungskosten -Abo -Abonnement/S -Abonnementsabbestellung/P -Abonnementsangebot/E -Abonnementsgebhr/P -Abonnementspreis/EPT -Abonnementvorstellung/P -Abonnent/P -Abordnens -Abordnung/P -Abort/EPST -Abortfrau/P -Abortus -Abplatten/JS -Abprall/ST -Abraham/S -Abraum/S -Abrechnens -Abrechnung/P -Abrechnungsperiode -Abrechnungsunterlagen -Abrechnungsverfahren/S -Abrechnungszeitraum/STp -Abrede/N -Abreibens -Abreibung/P -Abreikante/N -Abreivorrichtung -Abreisetag/EPST -Abrieb -Abriegelns -Abriegelung/P -Abrieglung/P -Abrissbirne/N -Abrisse/S -Abrisskante/N -Abrollwiderstand/T -Abrstens -Abrstung/P -Abrstungsbeteuerung/P -Abrstungsdebatte/N -Abrstungsexperte/N -Abrstungsfrage/N -Abrstungsgesprch/EPT -Abrstungskommission/P -Abrstungskonferenz/P -Abrstungspolitik -Abrstungsproblem/PS -Abrstungsrede/N -Abrstungsverhandlung/P -Abrstungsvorschlag/Sp -Abruf/JS -Abrufauftrag/STp -Abrundens -Abrundung/P -Abs -Abs. -Abstze/N -Absahner/FNS -Absatz/T -Absatzaussicht/P -Absatzausweitung -Absatzeinbue/N -Absatzende/N -Absatzerfahrung/P -Absatzfinanzierung/P -Absatzflaute/N -Absatzfrderung/P -Absatzgebiete/NS -Absatzkonjunktur -Absatzkosten -Absatzkrise/N -Absatzlnder/N -Absatzmarkt/STp -Absatzmglichkeit/P -Absatzproblem/EPS -Absatzrckgang/S -Absatzsteigerung/P -Absatzstockung/P -Absatzverhltnis/Qq -Absatzverluste/N -Absatzvolumen/S -Absatzzahl/P -Absatzzuwachs -Abschtzens -Abschtzung/P -Abschaffens -Abschaffung/P -Abschaltens -Abschaltgrenze/N -Abschaltkriterien -Abschaltrelais -Abschaltsystem -Abschaltung/P -Abschaltvorgang/Sp -Abschaum/ST -Abscheidens -Abscheider/NS -Abscheidung/P -Abscheu/S -Abscheulichkeit/P -Abschiebens -Abschiebung/P -Abschiede/S -Abschieds -Abschiedsbesuch/EPS -Abschiedsbrief/EPST -Abschiedsempfang -Abschiedsfeier/N -Abschiedsgeschenk/EPS -Abschiedsgesuche/NS -Abschiedskuss/Tp -Abschiedsparade/N -Abschiedsrede/N -Abschiedsschmerz/EPT -Abschiedsspiel/EPS -Abschiedstrank/EST -Abschiedswort/EPST -Abschirmdienst -Abschirmeffekt/EPS -Abschirmens -Abschirmplatte/N -Abschirmung/P -Abschirmzuleitung/P -Abschlachtens -Abschlachtung/P -Abschlagszahlung/P -Abschleppdienst/EPT -Abschleppfahrer/S -Abschleppfirma -Abschleppgurt/PS -Abschleppseil/EPST -Abschleppwagen/S -Abschluss/Tp -Abschlussarbeit/P -Abschlussball/Sp -Abschlussbericht/EPST -Abschlussbesprechung/P -Abschlusseinheit/P -Abschlusserklrung/P -Abschlussexamen/S -Abschlussexamina -Abschlussfeier/N -Abschlussformel/N -Abschlussgesprch/EPST -Abschlussprotokoll/EPS -Abschlussprfung/P -Abschlussrechnung -Abschlussreferat/S -Abschlussschnitt/PST -Abschlussspiel/EPS -Abschlussspringen/S -Abschlussstecker/NS -Abschlussttigkeit/P -Abschlussteil/EPS -Abschlusstreffen/S -Abschlussuntersuchung/P -Abschlussverhandlung/P -Abschlusswiderstand/S -Abschlusszahlung/P -Abschlusszeichen/S -Abschlusszeugnis/Qq -Abschlussziffer/N -Abschmiernippel/NS -Abschneider -Abschneidevorrichtung/P -Abschneidvorrichtung/P -Abschnittes -Abschnitts -Abschnrens -Abschnrung/P -Abschpfens -Abschpfung/P -Abschottens -Abschottklappe/N -Abschottung/P -Abschottzylinder/NS -Abschreckens -Abschreckung/P -Abschreckungseffekt/EPST -Abschreckungserfolg/PS -Abschreckungsmittel/NS -Abschreckungswaffe/N -Abschreibegrenze/N -Abschreibens -Abschreiber/NS -Abschreibung/P -Abschreibungsdauer -Abschreibungserfordernis/Qq -Abschreibungsgeschft/EPST -Abschreibungshotel/S -Abschreibungsmglichkeit/P -Abschreibungsvolumen/S -Abschrift/P -Abschrfens -Abschrfung/P -Abschuss/Tp -Abschussbasen -Abschussbasis -Abschussliste -Abschussrampe/N -Abschussstelle/N -Abschussvorrichtung/P -Abschwchens -Abschwchung/P -Abschweifens -Abschweifung/P -Abschwung/S -Abseitsposition -Abseitsstellung -Absendens -Absender/NS -Absendung/P -Absenkens -Absenkung/P -Absetzbewegung/P -Absetzens -Absetzung/P -Absetzungsantrag/Sp -Absicherns -Absicherung/P -Absicht/P -Absichtlichkeit -Absichtserklrung/P -Absinkens -Absolutheitsanspruch -Absolutismus -Absolutposition -Absolvent/FP -Absolvierens -Absolvierung/P -Absonderns -Absonderung/P -Absorption/P -Abspaltens -Abspaltung/P -Abspannwerke/N -Abspeicherung/P -Absperrens -Absperrmanahme/N -Absperrung/P -Abspieler/NS -Absprache -Absprnge/N -Absprung/S -Absprunghfen -Abspulens -Abstnde/N -Abstammens -Abstammung/P -Abstammungslehre/N -Abstand/ST -Abstandhalter/NS -Abstandsberechnung/P -Abstandsbereich/P -Abstandsecho/S -Abstandsgrenze/N -Abstandsplttchen -Abstandswerte/NS -Abstecher/NS -Abstellens -Abstellflche/N -Abstellgleis/EPT -Abstellkammer/N -Abstellraum/STp -Abstellung/P -Abstellzeit/P -Abstieg/EPS -Abstiegskampf/S -Abstiegskandidat/P -Abstimmens -Abstimmung/P -Abstimmungsbedarf -Abstimmungsergebnis/Qq -Abstimmungsfrage/N -Abstimmungsmechanismus -Abstimmungsmodi -Abstimmungsmodus -Abstimmungsniederlage/N -Abstimmungsbertragung/P -Abstimmungsunterschied/ES -Abstinenz -Absto/JTp -Abstrahlcharakteristik/P -Abstrahlwinkel/NS -Abstraktion/P -Abstraktionsebene/N -Abstraktionsfunktion/P -Abstraktionsgrad -Abstraktionsniveau/S -Abstreifer/NS -Abstrich/EPS -Absttzens -Absttzung/P -Abstufens -Abstufung/P -Absturz/T -Absturzgebiet/EPST -Absturzort/ES -Absturzursache/N -Absud/EPT -Absurditt/P -Abszess/EPT -Abszisse/N -Abt/T -Abtastens -Abtastgrenze/N -Abtasthebel/NS -Abtastrate/N -Abtastung/P -Abtauchens -Abtei/P -Abteil/JS -Abteilfenster/S -Abteilungsleiter/FNS -Abteilungsstufe -Abtransport -Abtreibens -Abtreibung/P -Abtreibungsparagraph/Pf -Abtreibungspille/N -Abtrennens -Abtrennung/P -Abtretens -Abtreter/N -Abtretung/P -Abtrieb/S -Abtritt/EPS -Abtrnnigkeit -Aburteilens -Aburteilung/P -Abwgens -Abwgung/P -Abwlzens -Abwlzung/P -Abwrme -Abwrtsbewegung/P -Abwrtskompatibliltt -Abwrtsrevision -Abwrtstrend/S -Abwsser/N -Abwahl/P -Abwandelns -Abwandelung/P -Abwanderns -Abwanderung/P -Abwandlung/P -Abwasch -Abwaschbecken/S -Abwasser/S -Abwassertechnik -Abwechselns -Abwechselung/P -Abwechslung/P -Abweg/EPS -Abwehr -Abwehraufgabe/N -Abwehrbereitschaft -Abwehrbuch -Abwehrchef/S -Abwehrdienst/T -Abwehrdienststelle/N -Abwehrfehler/N -Abwehrkmpfe/N -Abwehrkrfte/N -Abwehrmauer/N -Abwehrmglichkeit/P -Abwehrorgan/P -Abwehrpotential/EPS -Abwehrpotenzial/EPS -Abwehrriegel/N -Abwehrschlacht/P -Abwehrspieler/NS -Abwehrstelle/N -Abwehrstoff/EPST -Abwehrsystem/EPS -Abweichens -Abweichung/P -Abweisens -Abweisung/P -Abwendens -Abwendung/P -Abwerbens -Abwerbung/P -Abwertens -Abwertung/P -Abwertungsanhnger/NS -Abwertungslnder/N -Abwertungsspanne/N -Abwesenheit -Abwickelns -Abwickelrichtung -Abwickelung/P -Abwicklung/P -Abwind/PT -Abwrackgelnde/NS -Abwrfe/N -Abwurf/ST -Abwurfquote/N -Abzhlbarkeit -Abzahlens -Abzahlung/P -Abzahlungsgeschft/EPS -Abzahlungsgesetz/EPT -Abzahlungskauf/STp -Abzahlungsvertrag/STp -Abzehren/JS -Abzeichen/S -Abzeichenaktion -Abziehbild/RST -Abzug/STp -Abzugsbgel/NS -Abzugsfhigkeit -Abzugsfenster/NS -Abzugshebel/NS -Abzugsverfahren/S -Abzweigens -Abzweigung/P -Access -Accessoire/S -Account/S -Accounting/S -Aceton/S -Achilles -Achillesferse/N -Achim/S -Achse/N -Achsel/N -Achselhhle/N -Achselzuckens -Achsenmchte/N -Achslast/P -Achsmchte/N -Achtbarkeit -Achteck/EPST -Achtens -Achterbahn/P -Achterdeck/S -Achtern -Achters -Achtklssler/FNS -Achtlosigkeit -Achtsamkeit/P -Achtstundentag/P -Achtung/P -Achtungsbeifall/S -Achtzigerjahre/N -Achtzylinder/N -Acidum -Acker/S -Ackerbau/RS -Ackerbaubetrieb/EPS -Ackerbauer/NS -Ackerboden/S -Ackerflche/N -Ackergule/N -Ackergaul/ST -Ackergerte/N -Ackermann/S -Ackerschlepperfabrik -Ackerwagen -Acryl/S -Acrylglas -Action -Ada -Adquatheit -Adam/S -Adamek/S -Adamsapfel -Adamskostm/S -Adaptec -Adapter/NS -Adaptergehuse/NS -Adapterkabel/NS -Adapterkarte/N -Adapterleiste/N -Adaptermodul/NS -Adapterplatine/N -Adaptierens -Adaptierung/P -Adaption/P -Adaptionsplatine -Addition/P -Additionsfunktion/P -Additivs -Adebar -Adel/JS -Adelns -Adelsgeschlecht/RS -Adelspalste/N -Adelsstand/T -Adelstnde/N -Adelstitel/N -Adelsverschwrung/P -Adenauer/S -Ader/N -Aderlass/ET -Adhsionsbruch -Adiabat/EPS -Adidas -Adipositas -Adjektiv/EPS -Adjunktion/P -Adjutant/P -Adler/NS -Adlerhorst/EPT -Adlernase/N -Administration/P -Administrator/FPS -Admiral/EFPS -Admiralfahrer/NS -Admiralitt/P -Admiralsmarsch -Admiralstbe/N -Admiralstab/ST -Adobe -Adoleszent -Adolf/S -Adolph/S -Adonis -Adoption/P -Adoptionsrecht/S -Adoptiveltern -Adoptivtochter -Adorno/S -Adrenalin/S -Adressat/EP -Adressberechnung/P -Adressbit/S -Adressbcher/N -Adressbuch/ST -Adressbus/Qq -Adressdatei/P -Adresse/N -Adressenangabe/N -Adressenaustausch/S -Adressengenerierung -Adressenkatalog -Adressenliste/N -Adresserweiterung/P -Adressgenerator/P -Adressgenerierung -Adressierung -Adressierungsart/P -Adresskarte/N -Adressliste/N -Adressoffset/S -Adressraum/STp -Adressraumerweiterung -Adressregister/S -Adressverwaltung -Adria/N -Adrian/EST -Adrianopel -Advent -Adventsschmuck -Adventssonntag/EPS -Adventszeit -Adverb/S -Adverbien -Advokat/P -Aerodynamik/R -Aeronautik -Aerosole/N -Aerostatik -AfA -Affre/N -Affe/N -Affekt/EPST -Affekthandlung/P -Affektiertheit/P -Affektion/P -Affektivitt -Affenfleisch/ST -Affenhaus/Tp -Affenkommentar -Affenliebe -Affenmensch/P -Affenschande -Affentheater/S -Afferenz/P -Affinitt/P -Affront/S -Afghane/FN -Afghanistan -Afrika/S -Afrikaarmee -Afrikafront -Afrikaner/FNS -Afrikareferat -Afrolook -After/S -Agadir -Agave/N -Agenda -Agende/N -Agent/FP -Agentenabwehr -Agentenaustausch/S -Agentenfilm/EPS -Agentenjagd/P -Agentenliste/N -Agentennetz/EP -Agentenorganisation/P -Agentenring/EPST -Agententtigkeit/P -Agentur/P -Agenturmeldung/P -Agfa -Aggregat/EPT -Aggregatzustnde/N -Aggregatzustand/ST -Aggression/P -Aggressionskontrolle -Aggressionspolitik -Aggressionstrieb/ES -Aggressivitt/P -Aggressor/P -Agio/S -Agitation/P -Agitationskampagne -Agitationsmaterial -Agitator/FPS -Agonie -Agrarausfuhr/P -Agrarchemikalie/N -Agrarerzeugnis/Qq -Agrarexperte/N -Agrarexporte/NS -Agrarfinanzfrage/N -Agrarfinanzierungspolitik -Agrarfinanzverordnung -Agrarfonds -Agrarfunktionren -Agrargebiet/EPST -Agrargesellschaft/P -Agrarhaushalt/EPS -Agrarimport/EPS -Agrarkonferenz/P -Agrarland/S -Agrarmarkt/STp -Agrarmarktordnung -Agrarpartei/P -Agrarparteiler -Agrarpolitik/R -Agrarpreisregelung/P -Agrarprodukt/P -Agrarproduktion -Agrarreform/P -Agrarsektor/PS -Agrarstaat/PST -Agrarstruktur -Agrarwirtschaft -Agronom/P -Ahle/N -Ahndens -Ahndung/P -Ahnenforschung/P -Ahnenkult/S -Ahnens -Ahnentafel/N -Ahnfrau/P -Ahnherr/NP -Ahnung/P -Ahnungslosigkeit -Ahorn/S -Aids -Airbag/S -Airbrush -Airbus -Airline/S -Ajatollah/S -Akaba -Akademie/N -Akademiemitglied/RST -Akademieprofessor/P -Akademieveranstaltung/P -Akademiker/FNS -Akademikerschaft -Akademikertochter -Akklamation/P -Akklimatisierens -Akklimatisierung/P -Akkolade/N -Akkomodation -Akkord/EPST -Akkordarbeit/PR -Akkordarbeiter/FNS -Akkordeon/S -Akkordlhne/N -Akkordlohn/S -Akkordmodulation/P -Akkordwesen/S -Akkreditierens -Akkreditierung/P -Akkreditierungsschreiben -Akkreditiv/S -Akku/S -Akkubetrieb/S -Akkubohrer/S -Akkumulation -Akkumulator/PS -Akkumulatorenbatterie/N -Akkumulatorfahrzeug/EP -Akkupunktur -Akkuratesse -Akkusativ/EPS -Akkusativobjekt/EPST -Akne -Akontozahlung/P -Akquisiteur/EFPS -Akquisition/P -Akribie -Akrobat/FP -Akrobatenkunststck/EPS -Akrobatik -Akronym/EPS -Akropolis -Akt/EPST -Aktant/P -Aktenbnde/N -Aktenberg/EPS -Aktendeckel/NS -Akteneinsicht -Aktenfotokopie/N -Aktenklammer/N -Aktenkoffer/NS -Aktenkofferformat/S -Aktenmappe/N -Aktennachlass/Tp -Aktennotiz/P -Aktenordner/N -Aktenpaket/PS -Aktenstck/PS -Aktenstudium -Aktentasche/N -Aktenvermerk/EPS -Aktenzeichen/S -Akteur/EFPS -Aktfigur/P -Aktgemlde/NS -Aktie/N -Aktienanlage/N -Aktienauswahl -Aktienbesitz/ET -Aktienbestnde/N -Aktienbrse/N -Aktienbrauerei -Aktienertrag/STp -Aktienexperte/N -Aktienfonds -Aktiengeschft/ES -Aktiengesellschaft/P -Aktiengesetze/N -Aktiengewinn/EPS -Aktienhandel/S -Aktienindex/EPT -Aktienindices -Aktienindizes -Aktieninhaber/FNS -Aktieninvestment/S -Aktienkapital/S -Aktienkauf/Sp -Aktienkurs/EPT -Aktienmarkt/STp -Aktienmehrheit -Aktienoption/P -Aktienpaket/EPS -Aktienpreis/EPT -Aktienrecht/EPS -Aktienumstze -Aktienumtausch -Aktion/P -Aktionr/EFPS -Aktionrsbrief -Aktionrskreisen -Aktionrsrechte -Aktionrsregisterverwalter -Aktionrsvereinigungen -Aktionrsversammlung -Aktionrsvertreter -Aktionrszeitschrift -Aktionismus -Aktionsausschuss/Tp -Aktionsbewegung -Aktionsgemeinschaft -Aktionsgruppe -Aktionshaus/Tp -Aktionslos -Aktionspartei -Aktionsplan/S -Aktionsprogramme -Aktionsradius -Aktionssemantik/P -Aktionsstrategie -Aktionstrupps -Aktiva -Aktivbezge/N -Aktivgeschft -Aktivierens -Aktivierung/P -Aktivierungssegment/E -Aktivierungstendenzen -Aktivist/P -Aktivistenbewegung -Aktivitt/P -Aktivittsmessung -Aktivittsschub -Aktivittssteigerung -Aktivposten/S -Aktivrechtsschutz -Aktivsaldo -Aktivsein -Aktivseite -Aktor/P -Aktstudie/N -Aktualisierens -Aktualisierung/P -Aktualitt -Aktuar/EPS -Akupressur/P -Akupunktur/P -Akustik -Akustiksensor/P -Akzeleration -Akzent/EPST -Akzentsetzung/P -Akzentuierens -Akzentuierung/P -Akzentverschiebung/P -Akzept/EPT -Akzeptanz -Akzeptkredite -Akzeptkreditvolumen -Akzepttausch -Alabaster/S -Aladin/S -Alarm/EPS -Alarmanlage/N -Alarmausgang -Alarmbereitschaft/P -Alarmglocke/N -Alarmkette/N -Alarmklingel/N -Alarmknopf -Alarmmeldung/P -Alarmruf/EPS -Alarmsendung/P -Alarmsignal -Alarmsonderstab -Alarmbung -Alarmzeichen -Alarmzustand -Alaska -Alaskastrae -Alb/P -Albaner/FNS -Albanien -Albatros/Qq -Albdruck -Albernheit/P -Alberts -Albinismus -Albino/S -Albion/S -Albrecht/S -Albtraum/STp -Album -Alchemie -Alchemist/P -Alchimie -Aldi -Alemanne/FN -Alembert/S -Alex -Alexander/S -Alexanderschlacht -Alexandra/S -Alexandria/S -Alf/S -Alfa -Alfons -Alfred/S -Alge/N -Algebra -Algebraisierung/P -Algebren -Algerien -Algerienpolitik -Algerier/FNS -Algier/S -Algorithmen -Algorithmenfamilie/N -Algorithmentheorie/N -Algorithmisierbarkeit -Algorithmus -Aliase -Alibi/S -Alice/S -Alimente/N -Alkali/PS -Alkohol -Alkoholbestandteil/EPS -Alkoholeinwirkung -Alkoholgehalt/EPST -Alkoholgenuss/Tp -Alkoholhersteller/FNS -Alkoholika -Alkoholiker/FNS -Alkoholismus -Alkoholkonsum/S -Alkoholmissbrauch/S -Alkoholspiegel -Alkoholsteuern -Alkoholtest/S -Alkoholvergiftung/P -Alkoholvertrglichkeitstest -Alkoholvorrat -Alkoholzusatz -Alkoven/S -Allah/S -Allee/N -Alleebaum/STp -Allegorie/N -Alleinausschank -Alleinbesitz/EPT -Alleinerbe/FS -Alleinflug/STp -Alleingang/Sp -Alleingestelltsein -Alleinherren -Alleinherrschaft -Alleinherrscher/FS -Alleinhersteller -Alleinimport -Alleininhaber/FNS -Alleinrechten -Alleinsein/S -Alleinstellungsmerkmal/EPS -Alleinverkauf/STp -Alleinvertreter/FNS -Alleinvertretungsanbefugnis/q -Alleinvertretungsanspruch -Alleinvertrieb/EPST -Allergie/N -Allergiefrdernd/AEPT -Allerheiligen -Allerweltsgesicht -Allg. -Allgu -Allgegenwart/P -Allgemeinbildung -Allgemeingut -Allgemeinheit -Allgemeininteresse/S -Allgemeinmedizin -Allgemeinstimmung -Allgemeintendenz -Allgemeinverfassung -Allgemeinwissen/S -Allgemeinzustand/ST -Allheilmittel/NS -Allianz/P -Allianzsystem -Allmacht -Allquantifizierung/P -Allquantor/PS -Allradkipper -Allroundeinsatz -Allroundtalent -Alls -Alltglichkeit/P -Alltag/ST -Alltagsablauf/Sp -Alltagsarbeit/P -Alltagsbetrieb/S -Alltagsfragen -Alltagsfreuden -Alltagsgeschft/ST -Alltagsmanieren -Alltagsmenschen -Alltagspelz -Alltagsschwchen -Alltagstonart -Alltagsverhalten -Allwetterjger -Allwissenheit -Allzustndigkeit -Allzweckfahrzeuges -Alm/P -Almanach/EPS -Almgrund -Almmusik -Almosen/S -Almosengeben/S -Almwirt -Alp/P -Alpdruck -Alpenblick -Alpencup -Alpenferien -Alpengarten -Alpengebiet -Alpenglhen -Alpenjger -Alpenkette -Alpenlnder/N -Alpenland -Alpenmilch -Alpenpokal -Alpenpokalspiel -Alpenrose -Alpenstrae/N -Alpenveilchen -Alpenverein/EPS -Alpenvorland -Alpenwelt -Alphabet/EPS -Alpinist/FP -Alptraum/STp -Alster -Alsterdorf -Alsternhe -Alsterufer -Altre/N -Altaktie -Altamerikaner -Altamira -Altar/S -Altarbild -Altargemlden -Altbabylonisch/AEPT -Altbau/S -Altbauten -Altbauwohnung/P -Altbayern -Altbundesprsident/P -Altbundestrainer/N -Altenheim/EPST -Altenhilfe -Altenholz -Altenklub -Altenpension -Altenrenten -Altentagessttte/N -Altenteiler -Altenwerk -Altenwohnsitz/E -Alternativeinstellung -Alternativfrage/N -Alternativfragestellung/P -Alternativkandidat/FP -Alternativlsung/P -Alternativmethode/N -Alternativplan -Alternativverfahren -Alternativvorschlag/Sp -Alternativwahl/P -Alterns -Alters -Altersaufbau/S -Alterserscheinung/P -Altersfaktor/P -Altersfalte/N -Altersgenosse/FN -Altersgrenzen -Altersgrnde/N -Altersgruppe/N -Altersheim/EPST -Altershilfe/N -Altersklasse/N -Altersmdigkeit -Alterspension -Altersrente/N -Altersruhegeld -Altersschichten -Altersschwche/N -Alterssicherung -Alterssitz -Altersstarrsinn -Altersstufe/N -Altersunterschied/EPST -Altersversicherung/P -Altersversorgung/P -Alterswert -Alterswohnsitz -Altertum/S -Altertumsforscher/NS -Altertumskunde/N -Alterung/P -Alterungsprozess/EPT -Altgerte/N -Altgeselle/N -Altgold -Altguthaben -Althausbesitzer -Altherren -Altherrenschaft -Altkanzler/S -Altknig/EPS -Altkommunist/P -Altkunde/FN -Altlast/P -Altmaterial/S -Altmeister/NS -Altmetall/EPS -Altl/EPS -Altsterreichisch/AEPT -Altona -Altpapier/S -Altphilologe/N -Altphilologie -Altpreuisch/AEPT -Altschulden -Altsparergesetz -Altsparguthaben -Altstadt -Altstadtsanierung -Altstadtsprche -Altstadtwidersprche -Altwagen/S -Altwageneintausch -Altwarenhndler/FNS -Altweibersommer/S -Alu -Alufelgen -Alugehuse/NS -Aluminium/S -Aluminiumblech -Aluminiumfolie/N -Aluminiumgehuse/N -Aluminiumhalle/N -Aluminiumkonzern/EPS -Aluminiumproduzent/P -Aluminiumpulver -Aluminiumrinnen -Aluminiumwerk -Alumodell -Aluplttchen -Aluplatte/N -Alzheimer/S -Amadeus -Amateur/EFPS -Amateurband/S -Amateurboxen -Amateurboxmeisterschaft -Amateurdetektiv -Amateurfotograf -Amateurfunk/S -Amateurfunkbetrieb -Amateurfunkdienst -Amateurfunkfrequenzen -Amateurfunkprfung -Amateurfunkverbnde -Amateurfuball/S -Amateurgrundstze/N -Amateurklub -Amateurkrfte -Amateurligen -Amateurmannschaft -Amateurprinzipien -Amateurregel/N -Amateursport/S -Amateursteher/NS -Amateurverteidiger/N -Amateurvorstellung/P -Amazonas -Amazone/N -Ambiente -Ambition/P -Ambivalenz/P -Amboss/EPT -Ambulanz/P -Ameise/N -Ameisenbr/P -Ameisenhaufen/S -Ameisensure/N -Ameisenstaat/PS -Amerika/S -Amerikahaus -Amerikaner/FNS -Amerikanertums -Amerikareise/N -Ami/S -Aminosure/N -Amme/N -Ammenmrchen/S -Ammoniak -Ammonit -Ammonium/S -Amnesie/N -Amnestie/N -Amnestiegesetz/EP -Amnestievorlage/N -Amnesty/S -Amok -Amoklufer/FNS -Amor/S -Amortisation/P -Ampel/N -Ampere -Amphetamin/EPS -Amphibie/N -Amphibienfahrzeuge -Amphitheater/S -Amplitude/N -Amplitudenbereich -Amplitudendmpfung -Amplitudenmodulation -Amplitudenregelung -Amplitudenverteilung -Amplitudenwerte -Ampulle/N -Amputation/P -Amsel/N -Amsterdam/RS -Amsterdamer/FNS -Amt/ST -Amtmann -Amtsrzte/FN -Amtsanmaung/P -Amtsantritt/EPST -Amtsarzt/T -Amtsbefugnis/q -Amtsbereich/EPS -Amtsbezeichnung/P -Amtsbezirk/ET -Amtsbltter/N -Amtsblatt/T -Amtsbrder/N -Amtsbruder/S -Amtschef -Amtschinesisch -Amtsdiener/NS -Amtseid/EPST -Amtseinfhrung/P -Amtsenthebung/P -Amtsenthebungsverfahren/S -Amtsfhrung -Amtsgebude/N -Amtsgeheimnis/Qq -Amtsgericht/EPST -Amtsgerichtsgefngnis/Qq -Amtsgeschft/EPST -Amtsgewalt -Amtshandlung/P -Amtshilfe/N -Amtsinhaber/FNS -Amtskollege/N -Amtsleiter -Amtsmissbrauch/S -Amtsmonate -Amtsmhle/N -Amtsnachfolger/N -Amtsniederlegung/P -Amtsobersekretr -Amtsperiode/N -Amtsperson/P -Amtspflicht/P -Amtsraum/STp -Amtsrichter/FNS -Amtssitz -Amtssprache -Amtsstelle/N -Amtsstellung -Amtsstube/N -Amtsstunde/N -Amtstermin -Amtstrger/N -Amtstracht/P -Amtsbernahme/N -Amtsberschreitung/P -Amtsunterschlagung -Amtsverbrechen -Amtsverletzung/P -Amtsverwaltung -Amtsvorgnger/N -Amtsvormund/T -Amtsvorstand -Amtsvorsteher/FNS -Amtswechsel/S -Amtsweg/P -Amtswohnsitz -Amtswohnung -Amtszeichen/S -Amtszeit/P -Amtszimmer -Amsement/S -Amulett/EPST -Ansthesist/FP -Ansthetika -Ansthetikum/S -Anachoret/P -Anachronismen -Anachronismus -Analogausgnge -Analogausgabe -Analogausgang/ST -Analogbus -Analogeingang/p -Analogie/N -Analogkanle -Analogkarten -Analogmultiplexer -Analogon/S -Analogschalter -Analogsignal/EPS -Analogspannung/P -Analogspannungsspeicher -Analogteil/S -Analogtor -Analogwandler -Analogwert/E -Analphabet/FP -Analphabetentum -Analphabetismus -Analysator/PS -Analyseaufwand -Analyseergebnis/Qq -Analysegerte/N -Analysehilfsmittel/N -Analysemethode/N -Analysen/I -Analysephase/N -Analyseschritt/EPST -Analyseverfahren/S -Analysierbarkeit -Analysis -Analyst/P -Analytik/R -Analytiker/FNS -Anamnese -Anapher/N -Anarchie/N -Anarchismus -Anarchist/FP -Anatol/S -Anatolien -Anatomie/N -Anbau/RS -Anbauabsicht/P -Anbauer/NS -Anbauflche/N -Anbaugebiete/N -Anbaumethode/N -Anbauplatte -Anbeginn -Anbetens -Anbeter/FNS -Anbetracht -Anbetung/P -Anbieter/FNS -Anbindens -Anbindung/P -Anblick/S -Anbringens -Anbringung/P -Anbrche/N -Anbruch/S -Andacht/P -Andachtshalle/N -Andalusien -Andalusier/FNS -Anden -Andenken/S -Andenkenlden -Anderkonten -Andeutens -Andeutung/P -Andorra -Andrngen -Andrang/ST -Andrea/S -Androgene/N -Androhens -Androhung/P -Androide/N -Andromeda/S -Andromedanebel -Andruck/S -Andruckbgel/NS -Andy/S -Aneignens -Aneignung/P -Aneinanderreihen/JS -Anekdote/N -Anemone/N -Anempfehlen/JS -Anerbieten/S -Anerkennens -Anerkenntnis/q -Anerkennung/P -Anerkennungswrdigkeit -Anflligkeit/P -Anfnger/FNS -Anfahrten -Anfahrtermin -Anfahrtsweg/EPS -Anfahrverzgerung -Anfall/Sp -Anfang/p -Anfangsbedingung/P -Anfangsbestand/S -Anfangsbetrag/STp -Anfangsbuchstabe/N -Anfangsdruck/S -Anfangserfolg/EPS -Anfangsgehlter/N -Anfangsgehalt/ST -Anfangsgehaltswnsche/N -Anfangsgewinn/ES -Anfangsgrnde/N -Anfangsjahr/PS -Anfangskante/N -Anfangskapital/T -Anfangskoordinate/N -Anfangskurs/EPT -Anfangspassage/N -Anfangsphase/N -Anfangsplanung/P -Anfangsproblem/EPS -Anfangsschwierigkeit/P -Anfangssituation/P -Anfangsstadien -Anfangsstadium/S -Anfangstempo/S -Anfangstermin/S -Anfangstest/S -Anfangsunterricht/T -Anfangsverlust/EPST -Anfangswert/EPST -Anfangszeit/P -Anfangszeitpunkt/EPS -Anfechtens -Anfechtung/P -Anfechtungsklage/N -Anfeindens -Anfeindung/P -Anfertigens -Anfertigung/P -Anflug/STp -Anforderns -Anforderung/P -Anforderungsdefinition/P -Anforderungsdetail/S -Anforderungserfassung/P -Anforderungskatalog/EST -Anforderungsliste/N -Anforderungsprofil/PS -Anforderungsschreiben/S -Anfgens -Anfgung/P -Anfhrens -Anfhrer/FNS -Anfhrung/P -Anfhrungsstrich/EPST -Anfhrungszeichen/S -Angabe -Angeber/FNS -Angeberei/P -Angebot/EST -Angebotsbereich/EPST -Angebotsliste/N -Angebotsmappe/N -Angebotspalette/N -Angebotspreis/EPT -Angebotsstand/S -Angebotssteigerung/P -Angebotsvoraussetzung/P -Angehrigkeit -Angel -Angela/S -Angelegenheit/P -Angelei -Angelgelegenheit/P -Angelgert/EPST -Angelhaken/S -Angelika/S -Angelpunkt/EPST -Angelrute/N -Angelsachse/N -Angelsport/S -Angelteich/EPST -Angemessenheit -Angepasstheit/P -Angesicht/RT -Angestammtheit -Angestelltengehlter -Angestelltenkrankenkasse -Angestelltenverhltnis/Qq -Angewhnens -Angewhnung/P -Angewohnheit/P -Angina -Angleichens -Angleichung/P -Angler/FNS -Anglerglck/S -Angliederns -Angliederung/P -Anglistik -Anglizismen -Anglizismus -Anglokanadier/FNS -Angola -Angorawolle -Angreifer/FNS -Angriff/EPS -Angriffsdrohung/P -Angriffsflche/N -Angriffsflge/N -Angriffskrieg/EPST -Angriffspause -Angriffspunkt -Angriffsseite -Angriffsspiel -Angriffstaktik -Angriffsbung/P -Angriffswaffen -Angriffswirbel -Angstblick -Angstdioden -Angstentscheidung -Angstgefhl/EPST -Angsthase/N -Angstmoment/EPS -Angstneurose/N -Angstschwei/ET -Angstschwelle -Angstzustnde/N -Angstzustand/ST -Anhnger/FNS -Anhngerbau/S -Anhngerfabrik/P -Anhngerschaft/P -Anhngerzahl/P -Anhnglichkeit -Anhngsel/NS -Anhufens -Anhufung/P -Anhalt/R -Anhalter/FNS -Anhaltspunkt/EPST -Anhang/S -Anhebens -Anhebung/P -Anhieb/S -Anhhe/N -Anhrens -Anhrung/P -Anhrungsrecht/S -Anhrungsverfahren/S -Anilin/S -Animation/P -Animierens -Animierung/P -Animositt/P -Anis -Anita/S -Ankara -Ankathete/N -Ankauf/Sp -Ankaufgeschft/EPST -Ankaufkredit/EPST -Ankaufkurs/EPT -Ankaufspreis/EPT -Ankaufswoche/N -Anke/RS -Anker/S -Ankerbohrmaschine/N -Ankergrnde/N -Ankergrund/S -Ankerkette/N -Ankermanver/NS -Ankerpflcke/N -Ankerpltze/N -Ankerplatz/T -Ankerstellung/P -Ankeruhr/P -Ankerwicklung/P -Ankerwinde/N -Ankick -Anklger/FNS -Anklagebnke/N -Anklagebank/P -Anklagebehrde/N -Anklageerhebung/P -Anklagematerial/S -Anklagepunkt/EPST -Anklagerede/N -Anklageschrift/P -Anklagevertreter/FNS -Anklang/Sp -Anklemmung -Anknpfens -Anknpfung/P -Ankmmling/EPS -Ankoppelns -Ankoppelung/P -Ankopplung/P -Ankndigens -Ankndigung/P -Ankndigungstafel/N -Anknfte/N -Ankunft -Ankunftshalle/N -Ankunftszeit/P -Ankurbelns -Ankurbelung/P -Ankurblung/P -Anlage/N -Anlagebedarf/S -Anlagebedrfnis/Qq -Anlageberater/FNS -Anlageberatung/P -Anlagebeschreibung/P -Anlagebetrag/Sp -Anlagebrief/P -Anlagedauer -Anlageempfehlung/P -Anlageentscheidung/P -Anlageerfolg/EPST -Anlageform/P -Anlagegeschft/P -Anlagegesellschaft/P -Anlagegter/N -Anlageinstrument/EPST -Anlagekapital/S -Anlagekapitalien -Anlagekauf/Sp -Anlageklima/S -Anlagekunde/N -Anlageland/ST -Anlagemittel/N -Anlagenauslastung -Anlagenbau/ST -Anlagenbereich/EPST -Anlagengeschft/EPST -Anlagenplanung/P -Anlagensteuerung -Anlagenteil/EPST -Anlagenzugang/Sp -Anlageobjekt/EPST -Anlagepapier/EPS -Anlagephilosophie/N -Anlagepolitik/P -Anlageproblem/EPS -Anlagestrategie/N -Anlagettigkeit/P -Anlagetipp/S -Anlageverkauf/Sp -Anlagevermittler/FNS -Anlagevermgen/S -Anlagevolk/T -Anlagewert/EPST -Anlagezweck/EPST -Anlass/RTp -Anlasser/NS -Anlauf/Sp -Anlaufbahn/P -Anlaufhfen -Anlaufschwierigkeit/P -Anlaufstelle/N -Anlaufzeit/P -Anlaut/EPT -Anlegemanver/NS -Anlegens -Anlegeplatz/T -Anleger/N -Anlegergeld/RST -Anlegergruppe/N -Anlegermagazin/EPS -Anlegerschar/P -Anlegerschutz/T -Anlegerverhalten/S -Anlegervolk/S -Anlegestelle/N -Anlehnens -Anlehnung/P -Anleihe/N -Anleihebedarf/S -Anleiheerls/T -Anleihemarkt/STp -Anleiheplne/N -Anleiheschuld/P -Anleitens -Anleitung/P -Anlernling/EPS -Anlieferns -Anlieferung/P -Anliegens -Anlieger/NS -Anliegerstaat/P -Anm -Anm. -Anmrsche/N -Anmarsch/T -Anmaens -Anmaung/P -Anmeldeformular/EPS -Anmeldefrist/P -Anmeldegebhr/P -Anmeldens -Anmeldepflicht/P -Anmelder/NS -Anmeldeschein/EPST -Anmeldestelle/N -Anmeldevordruck/EPST -Anmeldevorschrift/P -Anmeldung/P -Anmerkens -Anmerkung/P -Anmietens -Anmietung/P -Anmut/J -Annherns -Annherung/P -Annherungspolitik/P -Annherungsversuch/EPST -Anna/S -Annahme/N -Annahmefrist/P -Annahmeschluss/T -Annahmestelle/N -Annahmeverweigerung/P -Annalen -Anne/S -Annehmlichkeit/P -Anneliese/S -Annemarie/S -Annette/S -Annexe/NS -Annexion/P -Annie/S -Annonce/N -Annoncenbro/S -Annullierens -Annullierung/P -Anode/N -Anomalie/N -Anonymitt/P -Anorak/S -Anordnens -Anordnung/P -Anordnungsplne/N -Anpassens -Anpasshardware -Anpassung/P -Anpassungsnderung/P -Anpassungsdruck/S -Anpassungsfhigkeit/P -Anpassungsprogramm/EPS -Anpassungsprozess/EPT -Anpassungsschwierigkeit/P -Anpassungssumme/N -Anpassungsvermgen/S -Anpfiff/EPS -Anpflanzens -Anpflanzung/P -Anprall/S -Anprechverzgerung/P -Anpreisens -Anpreisung/P -Anpressdruck/S -Anprobe/N -Anrechnens -Anrechnung/P -Anrechnungsverfahren/S -Anrechnungsverordnung/P -Anrecht/EPS -Anrechtskarte/N -Anregens -Anregung/P -Anregungsenergie/N -Anregungsmittel/NS -Anreicherns -Anreicherung/P -Anreicherungsschritt -Anreisetermin/EPS -Anreiz/T -Anrisses -Anrollens -Anruf/JST -Anrufbeantworter/NS -Anrufer/FS -Anstze/N -Ansager/FNS -Ansammelns -Ansammlung/P -Ansatz/T -Ansatzpunkt/EPST -Ansatzstck/EPS -Ansbach/S -Anschaffens -Anschaffung/P -Anschaffungsdarlehen -Anschaffungskosten -Anschaffungspreis/EPT -Anschaffungswert/EPT -Anschauens -Anschaulichkeit -Anschauung/P -Anschauungsform/P -Anschauungsmaterial/S -Anschauungsunterricht/T -Anschauungsweise/N -Anschein/S -Anschiss/EPT -Anschlag/STp -Anschlagbrett/T -Anschlagkontrolle -Anschlagmaschine -Anschlagsule/N -Anschlagzettel/NS -Anschlugebhr/P -Anschluss/Tp -Anschlussadapter -Anschlussarten -Anschlussbelegung/P -Anschlussblock -Anschlussbuchse/N -Anschlussbuchung/P -Anschlussdaten -Anschlussdose/N -Anschlussdrhte/N -Anschlussersuchen -Anschlussfehler -Anschlussforderung -Anschlussgleis -Anschlusskabel/NS -Anschlusskarte -Anschlusskennung -Anschlussklemme/N -Anschlussleiste -Anschlussleitung/P -Anschlusslinie/N -Anschlussmglichkeit/P -Anschlussmodus -Anschlussort -Anschlussplan -Anschlussplatine -Anschlussrohr -Anschlussschrank -Anschlussspannung/P -Anschlussstation/P -Anschlussstecker/S -Anschlussstelle/N -Anschlussstck/EPS -Anschlusstreffer/S -Anschlussverbindung/P -Anschlussvereinbarung -Anschlussverteilung -Anschlussvorschlag/STp -Anschlusszeit -Anschlusszug/STp -Anschnallgurt/EPST -Anschnitt/EPT -Anschreibekredite -Anschrift/P -Anschub/S -Anschuldigens -Anschuldigung/P -Ansehens -Ansehnlichkeit/P -Ansicht/P -Ansichtskarte/N -Ansichtssache -Ansichtssendung/P -Ansiedelns -Ansiedler/NS -Ansiedlung/P -Ansinnen/S -Anspannens -Anspannung/P -Anspielens -Anspielung/P -Ansporn/S -Ansprache -Ansprechbarkeit -Ansprechhhe -Ansprechpartner/NS -Ansprechzeit -Ansprche/N -Anspruch/S -Anspruchsberechtigung/P -Anspruchslosigkeit -Anspruchsniveau/S -Anstalt/P -Anstaltsinsasse/N -Anstand/S -Anstandsdame/N -Anstandsrcke -Anstandsunterricht -Ansteckens -Anstecknadel/N -Ansteckung/P -Anstellens -Anstellung/P -Anstellungsbedingung/P -Anstellungsprfung/P -Anstellungsvertrag/Tp -Ansteuerboard/S -Ansteuerelektronik/P -Ansteuerkarte -Ansteuerleitung -Ansteuerlogik -Ansteuerns -Ansteuerplatinen -Ansteuerspannung -Ansteuerung/P -Ansteuerungsleitung -Ansteuerungszeit -Ansteuerverstrker -Ansteuerzeit -Anstieg/EPS -Anstiegszeit/P -Anstiftens -Anstifter/FNS -Anstiftung/P -Ansto/Tp -Anstreicher/NS -Anstrengens -Anstrengung/P -Anstrich/EPS -Ansturm/S -Antagonismus -Antarktika -Antarktis -Anteil/EPS -Anteilnahme -Anteilschein/EPST -Anteilsinhaber -Anteilsscheine -Anteilswert -Anteilumlauf/Sp -Anteilwert/T -Antenne/N -Antennenanlage/N -Antennentrger -Anthologie/N -Anthrazitfeinkohlen -Anthropoide/N -Anthropologe/N -Anthropologie -Anthroposoph/P -Anthroposophie -Antialiasing -Antialkoholiker/FNS -Antibabypille/N -Antibiotika -Antibiotikum/S -Antichrist -Antidot/ES -Antiemetikum/S -Antifaschismus -Antifaschist/P -Antigen/EP -Antiheld -Antihistaminika -Antiinflationspolitik -Antikrper -Antikomintern -Antikonformismus -Antikriegslyrik -Antillen -Antilleninsel -Antilope/N -Antimaterie -Antimykotikum/S -Antipathie/N -Antiquar/EFPS -Antiquariat/EPST -Antiquariatskatalog/E -Antiquariatslisten -Antiquitt/P -Antisemit/P -Antisemitismus -Antiserum -Antithese/N -Antizipation/P -Antje/S -Antlitz/ET -Anton/S -Antonio/S -Antonius -Antrag/STp -Antragsformular/EPS -Antragsfrist/P -Antragstellen/JS -Antragsteller/FNS -Antragszeitraum/Sp -Antriebe -Antriebs -Antriebsgetriebe -Antriebsmittel -Antriebsmotor/PS -Antriebsrder -Antriebsrechner -Antriebsschlitten -Antriebsstrung/P -Antriebssystem -Antriebsberwachung -Antriebswelle -Antriebszylinder -Antritte/NS -Antritts -Antrittsball/Sp -Antrittsbesuch/EPS -Antrittsgepck -Antrittsrede/N -Antrittstermin/EPS -Antrittsvorstellung -Antwort -Antwortbogen -Antwortkarte/N -Antwortnote -Antwortscheine -Antwortspiel -Antworttext/EPST -Antwortzeit/P -Anverwandlung -Anverwandte/N -Anwlte/N -Anwrter/FNS -Anwahl -Anwalt/ST -Anwaltsbro -Anwaltserfahrung/P -Anwaltsgebhr/P -Anwaltskammer -Anwaltskosten -Anwaltspraxis -Anwaltsrecht -Anwaltsspiel -Anwaltstochter -Anwaltszwang -Anwandeln/JS -Anwandelung/P -Anwar/S -Anwartschaft/P -Anweisens -Anweisung/P -Anweisungsfolge/N -Anweisungssequenz/P -Anweisungsteil/EPS -Anwendbarkeit -Anwendens -Anwender/FNS -Anwenderhinweis/EPT -Anwenderoberflche -Anwenderproblem/EPS -Anwenderprogramm/E -Anwenderseite/N -Anwendersicht/P -Anwendersoftware -Anwendung/P -Anwendungsbeispiel/EPS -Anwendungsbereich/EPS -Anwendungsbeziehung/P -Anwendungsbezug/STp -Anwendungsentwicklung/P -Anwendungsexperten -Anwendungsfeld/R -Anwendungsfolie -Anwendungsgebiet/EPST -Anwendungshinweis/EPT -Anwendungsideen -Anwendungskriterien -Anwendungsmglichkeit/P -Anwendungsmodule -Anwendungspalette -Anwendungsprogramm/EPS -Anwendungsprogrammierer -Anwendungsprogrammierung -Anwendungssituation/P -Anwendungssoftware -Anwendungsspektrum/S -Anwendungssystem/EPS -Anwendungstechniker/NS -Anwendungsuntersttzung/P -Anwerben/JS -Anwerbestopp/S -Anwesen/S -Anwesenheit -Anwesenheitsliste/N -Anwesenheitspflicht -Anwesenheitsrecht -Anwesenheitstag -Anwesenheitszeit/P -Anwohner/NS -Anz -Anz. -Anzahl/J -Anzahlungsrate/N -Anzeichen/S -Anzeigeaufgaben -Anzeigebalken -Anzeigebereich/EPS -Anzeigecharakteristik -Anzeigeeinheit/P -Anzeigeelemente/N -Anzeigefeld/RT -Anzeigefunktionen -Anzeigegenauigkeit -Anzeigegert/EPST -Anzeigemglichkeit -Anzeigemonitor -Anzeigenaufkommen -Anzeigenauftrge -Anzeigenbltter/N -Anzeigenblatt/ST -Anzeigenbro/S -Anzeigeneinnahmen -Anzeigenelemente -Anzeigenentziehung -Anzeigenfeld/T -Anzeigengesellschaft -Anzeigengruppen -Anzeigeninhalte -Anzeigenkampagne -Anzeigenkunden -Anzeigenpreise -Anzeigenrubrik -Anzeigenteil/EPS -Anzeigentreiber -Anzeigenvolumen -Anzeigepflicht -Anzeigeplatine -Anzeiger -Anzeigesoftware -Anzeigesystem/EPS -Anzeigetafel/N -Anzeigeteil -Anzeigetreiber -Anziehens -Anziehung/P -Anziehungskrfte/N -Anziehungskraft -Anziehungspunkt/EPST -Anzglichkeit/P -Anzug/STp -Apache/N -Apartheid -Apartment -Apartmenthaus/Tp -Apartmenthotel -Aperitif/S -Apertur/P -Apfel/S -Apfelbume/MN -Apfelbaum/STp -Apfelmost -Apfelmus/T -Apfelschimmel -Apfelsine/N -Apfeltorte/N -Apfelwein/S -Apfelweinkneipe -Aphorismus -Aphrodite/S -Apokalypse -Apoll/S -Apollo/S -Apologet/P -Apostel/NS -Apostelbrief -Apostelfrsten -Aposteltanne -Apostroph/EPS -Apotheke/NR -Apothekenbesitzers -Apothekenrume/N -Apotheker/FNS -Apothekerrezept -Appalachen -Apparat/EPS -Apparateglasblser -Apparatur/P -Appartement/S -Appartementhaus/Tp -Appartementtr/EP -Appartementwohnung -Appell/EPS -Appellationsgericht -Appetenz/P -Appetit/S -Applaus/T -Applet/SW -Applikation/P -Applikationsberatung/P -Applikationsebene/N -Applikationsprogramm/E -Applikationsprozess/EPT -Applikationssoftware -Applikationstechnologie/N -Applikationsversion/P -Approbation/P -Approximation/P -Aprikose/N -April/S -Aprilscherz/EPT -Apside -Apsis -Apulien -Aquarell/EPS -Aquarien -Aquarium/S -Aquitanien -Araber/FNS -Araberliga -Arabeske/N -Arabien -Arafat/S -Aral -Araldit -Ararat -Arbeit/R -Arbeitens -Arbeiter/FNS -Arbeiterbewegung -Arbeiterdemostration -Arbeiterfakultt -Arbeiterfrage -Arbeiterfront -Arbeitergeberseite -Arbeiterheer -Arbeiterkammern -Arbeiterklasse -Arbeiterkonferenz -Arbeiterparadies/P -Arbeiterpartei/P -Arbeiterpriestern -Arbeiterrat -Arbeiterrentenversicherung -Arbeiterrevolution -Arbeiterschaft -Arbeiterschichten -Arbeiterschulung -Arbeitersiedlung/P -Arbeitervereine -Arbeitervereinigung -Arbeitervertreter -Arbeiterwehr -Arbeiterwohlfahrt -Arbeiterwohnhaus/Tp -Arbeitgeber/FNS -Arbeitgeberbeisitzer -Arbeitgeberkreisen -Arbeitgebertagung -Arbeitgeberverbnden -Arbeitgebervereinigung/P -Arbeitnehmer/FNS -Arbeitnehmerbeisitzer -Arbeitnehmerkreise -Arbeitnehmerrechten -Arbeitnehmerschaft -Arbeitnehmervertreter -Arbeitnehmervertretung -Arbeitsmter/N -Arbeitsablauf/Sp -Arbeitsamkeit -Arbeitsamt/ST -Arbeitsamtsbnken -Arbeitsanweisung/P -Arbeitsanzug/STp -Arbeitsarray/S -Arbeitsatmosphre/N -Arbeitsaufkommen -Arbeitsaufwand/ST -Arbeitsausfall/Sp -Arbeitsausschuss/Tp -Arbeitsbedingung/P -Arbeitsbefreiung/P -Arbeitsbeginn/S -Arbeitsbelastung/P -Arbeitsbereich/EPST -Arbeitsbericht/EPS -Arbeitsbeschaffung/P -Arbeitsbeschaffungsmanahme/N -Arbeitsbescheinigung/P -Arbeitsbeschreibung/P -Arbeitsbesuch/EPS -Arbeitsbetrieb -Arbeitsbewltigung -Arbeitsbgen -Arbeitsbreite -Arbeitsbrigaden -Arbeitsdaten -Arbeitsdienst/EPST -Arbeitsdirectory -Arbeitseifer/S -Arbeitseinheit/P -Arbeitseinsatz/T -Arbeitseinstellung/P -Arbeitsende -Arbeitsentgelt/EPS -Arbeitsentgeltung -Arbeitserlaubnis/q -Arbeitserleichterung/P -Arbeitsessen/S -Arbeitsfhigkeit/P -Arbeitsfanatiker/NS -Arbeitsfeld/RST -Arbeitsflche/N -Arbeitsfrderung -Arbeitsfolge/N -Arbeitsfrage/N -Arbeitsfreude/N -Arbeitsfrieden/S -Arbeitsfront -Arbeitsgang/Sp -Arbeitsgebiet/EPS -Arbeitsgemeinschaft/P -Arbeitsgert/EPS -Arbeitsgericht/EPT -Arbeitsgruppe/N -Arbeitshaus/Tp -Arbeitshilfe -Arbeitshypothese/N -Arbeitsinspektion -Arbeitsjahr/EPST -Arbeitsjubilum -Arbeitskmpfe/N -Arbeitskalender -Arbeitskamerad/P -Arbeitskampf/ST -Arbeitskleidung/P -Arbeitsklima/S -Arbeitskollege/N -Arbeitskolonnen -Arbeitskommandos -Arbeitskonferenz -Arbeitskopie/N -Arbeitskrfte/N -Arbeitskraft -Arbeitskraftreserve/N -Arbeitskredit -Arbeitskreis/EPT -Arbeitslager/NS -Arbeitslast/P -Arbeitsleben/S -Arbeitslehre -Arbeitsleistung/P -Arbeitsliste -Arbeitslhne/N -Arbeitslosenentwicklung -Arbeitslosengeld/RST -Arbeitslosenkurve -Arbeitslosenproblem/EPS -Arbeitslosenquote -Arbeitslosenrate/N -Arbeitslosenstatistik/P -Arbeitslosenuntersttzung/P -Arbeitslosenversicherung/P -Arbeitslosenversicherungsbeitrag/Sp -Arbeitslosenziffer/N -Arbeitslosigkeit -Arbeitsmantel -Arbeitsmarkt/STp -Arbeitsmaschine/N -Arbeitsmaterial/S -Arbeitsmedizin -Arbeitsmethode/N -Arbeitsministerien -Arbeitsmittel/NS -Arbeitsmglichkeit/P -Arbeitsmtze -Arbeitsnorm -Arbeitsordnung -Arbeitsorganisation -Arbeitspaket/EPST -Arbeitspapier/EPS -Arbeitspause/N -Arbeitspflicht/P -Arbeitsphase/N -Arbeitsplne/N -Arbeitspltze/N -Arbeitsplan/S -Arbeitsplanung/P -Arbeitsplatz/T -Arbeitsplatzcomputer/NS -Arbeitsplatzwechsel/S -Arbeitsprogramm/S -Arbeitsprotokoll/EPS -Arbeitsprozess/EPT -Arbeitspunkt/EPST -Arbeitsraum/Sp -Arbeitsrecht/S -Arbeitsreihenfolge -Arbeitsrichtung/P -Arbeitsringes -Arbeitsruhe -Arbeitsschluss -Arbeitsschritt/EPS -Arbeitsschwerpunkt/EPS -Arbeitssitzung/P -Arbeitsspeicher/S -Arbeitssttte/N -Arbeitsstab/S -Arbeitsstelle/N -Arbeitsstil/EPS -Arbeitsstoff/EPS -Arbeitsstunde/N -Arbeitssuchende/NR -Arbeitstag/EPS -Arbeitstakt/EPS -Arbeitsteam/S -Arbeitsteilung -Arbeitstemperatur/P -Arbeitstext/EPST -Arbeitstier/EPS -Arbeitstisch/EPT -Arbeitstreffen/S -Arbeitsberlastung -Arbeitsumgebung/P -Arbeitsumstnde/N -Arbeitsunfall/Sp -Arbeitsunlust -Arbeitsunterbrechung/P -Arbeitsunterlage/N -Arbeitsventil -Arbeitsverhltnis/Qq -Arbeitsverteilung/P -Arbeitsvertrag/Sp -Arbeitsverwaltung/P -Arbeitsvolumen -Arbeitsvorbereitung/P -Arbeitsvorgabe/N -Arbeitsvorgang/Sp -Arbeitsweise/N -Arbeitswelt -Arbeitswiderstand/T -Arbeitswille/N -Arbeitswoche/N -Arbeitszeit/P -Arbeitszeitaufwand -Arbeitszeitpolitik -Arbeitszeitregelung -Arbeitszimmer/NS -Arbeitszwang/Sp -Arbeitszyklus -Archologe/N -Archologie -Arche -Archenholz -Archimedes -Archipel/EPS -Architekt/FP -Architektenbro -Architektengruppe -Architektonik -Architektur/P -Architekturepoche -Architekturstudenten -Archiv/EPS -Archivdisketten -Archivgebude -Archivierens -Archivierung/P -Archivierungskonzept/EPS -Archivierungssystem/EPS -Archivkopien -Areal/EPS -Arena -Arenen -Argau -Argentinien/S -Arglist -Arglosigkeit -Argon/S -Argonaut/P -Argument/EPST -Argumentanzahl -Argumentation/P -Argumentationshilfe/N -Argumentationslinie/N -Argumentauswertung/P -Argumentbereich/EPS -Argumentgruppen -Argumentkennzeichner -Argumentliste/N -Argumenttyp/P -Argumentwert/P -Argus -Argusaugen -Argwohn/S -Ariadne/S -Ariane/S -Arie/NR -Arier/NS -Aristokrat/FP -Aristokratenfamilien -Aristokratie -Aristoteles -Arithmetik -Arizona -Arkade/N -Arkadenhof -Arkansas -Arktis -Arktisforscher -Armachse/N -Armada -Armagnac -Armatur/P -Armaturenbranche -Armaturenbrett/S -Armaturenbrettern -Armaturenfabrik -Armbnder/N -Armband/ST -Armbanduhr/P -Armbinde/N -Armbrche/N -Armbrste -Armbruch/ST -Armbrust -Armee/N -Armeeblatt -Armeechef -Armeeeinheit/P -Armeefhrung -Armeekosten -Armeeministerium -Armeeoffizier/EPS -Armeerat -Armeestrke/N -Armeetradition -Armeeuniformen -Armenhaus/Tp -Armenien -Armenier/FNS -Armenviertel/N -Armflgeln -Armhaltung/P -Armhebel -Armkettchen -Armlehne/N -Armreif/P -Arms -Armseligkeit -Armsessel -Armstellung -Armstrong/S -Armut -Armutsgebiet/EPS -Armutszeugnis/Qq -Arndt/S -Arnika -Arno/S -Arnold/S -Aroma/S -Aromen -Arosa -Arrangement/S -Arrangierens -Array/S -Arrest/EPST -Arroganz -Arrondieren/JS -Arrondissement/S -Arsch -Arschgeige/N -Arschlcher/N -Arschloch/S -Arsen/S -Arsenal/EPS -Art/W -Artaxerxes -Artefakt/EPST -Artemis -Artenreichtum/S -Artentod -Artenverarmung -Artenwandel -Arterhaltung -Arterie/N -Arterienverkalkung/P -Arteriosklerose -Artgenosse/N -Arthritis -Arthrose/N -Arthur/S -Artigkeit/P -Artikel/NS -Artikelnummer/N -Artikelreihe -Artikelstamm -Artikulation/P -Artikulationsfhigkeit -Artikulationssttte/N -Artillerie -Artillerieangriff -Artilleriebeschuss/Tp -Artillerieeinheit/P -Artilleriefeuer -Artischocke/N -Artist/FP -Artus -Arznei/P -Arzneikosten -Arzneimittel/NS -Arzneimittelgesetz -Arzneimittelhersteller -Arzneimittelindustrie -Arzneimittelpreise -Arzneimittelprfung -Arzneischrnke/N -Arzneischrank -Arzneiware/N -Arzt/T -Arztberuf -Arztehepaar -Arztfrau -Arztgeschichten -Arzthelfer/FNS -Arzthonorare -Arztpraxen -Arztpraxis -Arztroman -Arztsohn -Arzttochter -Arztzimmer -Asbest -Asbestfasern -Asbestgewinnung -Asbestverarbeitung -Aschaffenburg/S -Asche -Aschenbahn/P -Aschenbecher/NS -Aschenberg -Aschenbrdel/S -Aschenputtel/S -Aschenstummel -Aschermittwoch/S -Ascona -Asiat/FP -Asien/S -Asienabteilung -Asienbild -Asienexperte -Asienkenntnisse -Asienkonferenz -Asienliteratur -Asienzone -Askese -Asket/P -Aspekt/EPST -Asphalt/S -Asphaltbahnen -Asphaltschlangen -Asphaltstrae/N -Aspik -Aspirant/P -Aspiration/P -Aspirin -Ass/EPT -Assekuranz/P -Assembler/NS -Assemblerprogramm/EPS -Assessor/P -Assimilation -Assisi -Assistent/FP -Assistenz/P -Assistenzrzte/FN -Assistenzarzt/T -Assistenzarztstelle -Assoziation/P -Assoziationslust -Assoziationsrat -Assoziationstechnik -Assoziativitt -Assuanstaudamm -Assyrien -Ast/RT -Asterblte -Asterix -Asteroid/P -Asteroidengrtel -Asthma -Astlcher/N -Astoria/S -Astrid/S -Astrologe/FN -Astrologie -Astronaut/P -Astronautentraining -Astronautik -Astronomie -Astrophysiker/N -Asyl/S -Asylant/P -Asylrecht/EPST -Asymmetrie/N -Asymptote/N -Asynchronmotor/PS -Atari -Atelier/S -Atelierfest -Atelierleiter -Atem/S -Atembeschwerde -Atemlosigkeit -Atemnot -Atempause/N -Atemtechnik -Atembung/P -Atemvorrat -Atemwege -Atemzug/Sp -Atheismus -Atheist/FP -Athen/ET -Athlet/FP -Athletenfigur -Athletik -Atlant/P -Atlanta/S -Atlantik/S -Atlantikkonferenzen -Atlantikkste -Atlantikpakt -Atlantikwall -Atlantis -Atlas -Atlasgebirge -Atmens -Atmosphre/N -Atmung/P -Atmungsorgan/EPS -Atmungstherapie -Atoll/EPS -Atom/EPS -Atomabkommen -Atomantrieb -Atomarbeit -Atomaufrstung -Atombehrde -Atombetrieb -Atombewaffnung -Atombombe/NR -Atombombenabwurf -Atombombenangriff -Atombombenproduktion/P -Atombombenversuch -Atombrennstoff -Atomenergie -Atomenergiebehrde -Atomenergiekommission/P -Atomenergieprojekte -Atomexplosion/P -Atomflugzeugtrger -Atomforscher/S -Atomforschung/P -Atomfragen -Atomgemeinschaft -Atomgesetz -Atomium -Atomkomitee/S -Atomkommission -Atomkraftwerk/EPST -Atomkrieg/S -Atomkriegskatastrophe -Atommchte -Atommodell -Atommunition -Atomphysik -Atompilz -Atompolitik -Atompotential/EPS -Atompotenzial/EPS -Atomraketen -Atomreaktor/S -Atomschirm -Atomsperrvertrag/STp -Atomsphre -Atomsprengkpfe -Atomsprengkopf -Atomsprengsatz -Atomstopp -Atomstrahlen -Atomstreitkraft -Atomtest/S -Atomversuch -Atomversuchsbung/P -Atomvertrag/STp -Atomwaffe/N -Atomwaffenbegrenzung -Atomwaffenherstellung -Atomwaffenversuche -Atomwissenschaftler -Atomzeitalter/S -Atomzertrmmerung -Attach/S -Attacke/N -Attentter/NS -Attentat/EPST -Attentatsdrohung/P -Attentatsopfer -Attentatsserie -Attentatsversuch -Attest/EPST -Attika -Attila/S -Attitde/N -Attraktion/P -Attraktivitt -Attrappe/N -Attrappenversuche -Attribuierens -Attribuierung/P -Attribut/EPS -At -Aubergine/N -Audi -Audienz/P -Auditorien -Auditorium/S -Audrey/S -Aue/N -Auerhhne/N -Auerhahn/S -Auerochse/N -Aufarbeiten/JS -Aufbau/ST -Aufbaublech -Aufbaufinanzierung -Aufbaugesellschaft -Aufbaukurs/EPT -Aufbauphase/N -Aufbauplne/N -Aufbauplan/S -Aufbauprinzip/S -Aufbauprogramm/EPS -Aufbaus/M -Aufbauschen/JS -Aufbaustudium/S -Aufbautermin/EPS -Aufbauwerk/EPS -Aufbauzeit/P -Aufbereitens -Aufbereitung/P -Aufbereitungsanlage/N -Aufbesserns -Aufbesserung/P -Aufbewahrens -Aufbewahrung/P -Aufbewahrungsort/EPT -Aufbieten/JS -Aufbrche/N -Aufbruch/S -Aufbruchstimmung -Aufdeckens -Aufdeckung/P -Aufdruck/S -Aufeinanderfolge -Aufenthalt/EPST -Aufenthaltserlaubnis/q -Aufenthaltsfrist/P -Aufenthaltsgenehmigung/P -Aufenthaltsjahr/EPS -Aufenthaltsort/EPST -Aufenthaltspreis/EPT -Aufenthaltsraum/Sp -Aufenthaltsverbot/EPST -Aufenthaltsverlngerung -Auferstehens -Auferstehung/P -Auferstehungsfest -Auffcherns -Auffcherung/P -Aufflligkeit/P -Auffahrtsweg -Auffangbecken/S -Auffassens -Auffassung/P -Auffassungsgabe/N -Auffassungsvermgen/S -Auffindbarkeit/P -Auffindens -Auffindung/P -Aufflackern/S -Aufforderns -Aufforderung/P -Aufforstens -Aufforstung/P -Auffrischens -Auffrischung/P -Auffhrens -Auffhrung/P -Auffhrungsstatistik -Auffhrungsstil/EPS -Auffllens -Auffllung/P -Aufgabe -Aufgabenbereich/EPS -Aufgabenbeschreibung/P -Aufgabenfeld/RST -Aufgabenheft/EPST -Aufgabenkreis/EPT -Aufgabenschein/EPS -Aufgabenschwerpunkt/EPST -Aufgabenstellung/P -Aufgang/STp -Aufgebot/ES -Aufgeklrtheit -Aufgeld/RST -Aufgeschlossenheit -Aufgliederns -Aufgliederung/P -Aufguss/Tp -Aufhngens -Aufhnger/NS -Aufhngung/P -Aufhufens -Aufhufung/P -Aufhebens -Aufhebung/P -Aufhebungsbeschluss/Tp -Aufheiterns -Aufheiterung/P -Aufheizens -Aufheizung/P -Aufhellens -Aufhellung/P -Aufhetzens -Aufhetzer/FNS -Aufhetzung/P -Aufholbedarf/S -Aufkufe/NR -Aufkufer/N -Aufkauf/STp -Aufklrens -Aufklrer/N -Aufklrung/P -Aufklrungsauftrag/STp -Aufklrungsbeitrag/STp -Aufklrungsbcher -Aufklrungsflugzeug -Aufklrungskampagne/N -Aufklrungsmglichkeit/P -Aufkleber/S -Aufl -Aufl. -Aufladens -Auflader/N -Aufladevorgang/S -Aufladung/P -Auflage/N -Auflageflche/N -Auflagenerhhung/P -Auflagenzahl/P -Auflagenziffer/N -Auflassens -Auflassung/P -Auflauf/Sp -Auflehnens -Auflehnung/P -Aufliegeschema -Auflistens -Auflistung/P -Auflsens -Auflsung/P -Auflsungsbeschluss/Tp -Auflsungserscheinung/P -Auflsungsprozess/EP -Auflockerns -Auflockerung/P -Auflockerungstendenz/P -Aufloderns -Aufmrsche/N -Aufmachens -Aufmachung/P -Aufmarsch/T -Aufmarschbewegung -Aufmerksamkeit/P -Aufmunterns -Aufmunterung/P -Aufnahme -Aufnahmeantrag/STp -Aufnahmebedingung/P -Aufnahmebeitrag/Sp -Aufnahmebereitschaft -Aufnahmedauer/N -Aufnahmefhigkeit/P -Aufnahmegebhr/P -Aufnahmegert/EPST -Aufnahmekopf -Aufnahmekraft -Aufnahmeprfung/P -Aufnahmevermgen/S -Aufnehmer/N -Aufopferns -Aufopferung/P -Aufpasser/FNS -Aufpolierung -Aufprall/S -Aufpreis/EPT -Aufputschmittel/NS -Aufputz/T -Aufrauens -Aufrauung/P -Aufrechnens -Aufrechnung/P -Aufrechterhalten/JS -Aufrechtstehen/S -Aufregens -Aufregung/P -Aufrichtens -Aufrichtigkeit -Aufrichtung/P -Aufriss/EPT -Aufrstens -Aufrstung/P -Aufrstungsprogramm/EPS -Aufruf/RS -Aufrufer/NS -Aufrufkontext/EPT -Aufrufstelle/N -Aufruhr/S -Aufstze/N -Aufsatz/T -Aufschaukeln -Aufschlag/Sp -Aufschlageisen -Aufschlagspiel -Aufschlagstelle -Aufschlagznder -Aufschlsselns -Aufschlsselung/P -Aufschlsslung/P -Aufschluss/Tp -Aufschneider/NS -Aufschneiderei/P -Aufschnitt/ET -Aufschrei/S -Aufschrift/P -Aufschbe/N -Aufschttungsebene -Aufschub/S -Aufschwung/S -Aufsehens -Aufseher/FNS -Aufsicht/P -Aufsichtsbehrde/N -Aufsichtsorgan/EPS -Aufsichtsperson/P -Aufsichtspersonal/S -Aufsichtspflicht -Aufsichtsrte/N -Aufsichtsrat/T -Aufsichtsratsgremien -Aufsichtsratsitze -Aufsichtsratsmitglied/R -Aufsichtsratsvergtung -Aufsichtsratvertreter -Aufspaltens -Aufspaltung/P -Aufsplittung -Aufstnde/N -Aufstands -Aufstandsbewegung/P -Aufstecknetzteil -Aufsteiger/N -Aufstellens -Aufstellort/EPS -Aufstellplne/N -Aufstellplan/S -Aufstellung/P -Aufstellungsplanung/P -Aufstiegs -Aufstiegschance/N -Aufstiegskandidat/P -Aufstockens -Aufstockmglichkeit/P -Aufstockung/P -Aufstrich/EPS -Aufsuchung -Aufsummierens -Aufsummierung/P -Auftakt/EPS -Aufteilens -Aufteilung/P -Auftrag/JSTp -Auftraggeber/NS -Auftragsabschluss/Tp -Auftragsabwicklung -Auftragsangebot/EPST -Auftragsannahme/N -Auftragsausfall/S -Auftragsbearbeitung -Auftragsbestnde/N -Auftragsbesttigung/P -Auftragsbestand/T -Auftragseingang/S -Auftragseinheit/P -Auftragseinwerbung/P -Auftragsentwicklung -Auftragsergnzung -Auftragserteilung/P -Auftragserweiterung/P -Auftragsfernschreiber -Auftragsformular/EPS -Auftragsforschung -Auftragsgre/N -Auftragslage/N -Auftragsnummer/N -Auftragsordner/NS -Auftragsphase/N -Auftragssperre/N -Auftragssumme/N -Auftragstrend/S -Auftragsvergabe/N -Auftragsverhandlung/P -Auftragsvolumen/S -Auftragswerk/EPS -Auftragswert/T -Auftragswesen/S -Auftrennens -Auftrennung/P -Auftretens -Auftrieb/EPS -Auftriebskrfte/N -Auftriebskraft -Auftritte/NS -Auftritts -Auftrittsverbot/EPST -Aufwnde/N -Aufwrmens -Aufwrmbung/P -Aufwrmung/P -Aufwrtsbewegung/P -Aufwrtsentwicklung/P -Aufwrtskorrektur/P -Aufwrtsspirale/N -Aufwrtstrend/S -Aufwrtswelle/N -Aufwachmeldung/P -Aufwallens -Aufwallung/P -Aufwand/S -Aufwartefrau/P -Aufwartens -Aufwartung/P -Aufweichens -Aufweichung/P -Aufwendens -Aufwendung/P -Aufwertens -Aufwertung/P -Aufwickelrolle -Aufwickelvorrichtung/P -Aufwind/EPT -Aufwurf -Aufzhlens -Aufzhlung/P -Aufzeichnens -Aufzeichnung/P -Aufzeichnungstrger -Aufzucht -Aufzug/Sp -Aufzuganlage -Aug/EPT -Augapfel/S -Augenrzte/FN -Augenarzt/T -Augenaufschlag/Sp -Augenblick/EPST -Augenbrauen -Augendeckel -Augenfehler -Augenfleck -Augenheilkunde -Augenhhe -Augenhhlen -Augenlicht/S -Augenlid/R -Augenma/EPT -Augenmerk -Augenoperation/P -Augenpaare -Augenpartie -Augenschein/S -Augenschmerzen -Augenstellung -Augentierchen/S -Augenbel -Augenweide/N -Augenwinkel/N -Augenwischerei/P -Augenzeuge/N -Augenzeugenberichten -Augenzwinkern -Augmentation/P -Augsburg/R -Augsburger/FNS -August/S -Augustabend -Augustin/S -Augustinerstift -Augustus -Auktion/P -Auktionskosten -Auktionsverkauf/Sp -Aula -Aura -Aurel/S -Aureole/N -Auenabmessung/P -Auenamt -Auenanlage/N -Auenansicht/P -Auenantenne/N -Auenbahn -Auenbeleuchtung -Auenbeschichtung/P -Auenbeziehung/P -Auenbezirk/EPS -Auenborder -Auenbordmotor/PS -Auendienst/T -Auendienstmitarbeiter/FNS -Auendienstorganisation/P -Auendruck/S -Auenfassade/N -Auenflche/N -Auengehuse/N -Auengruppe/N -Auenhandel/S -Auenhandelsberater -Auenhandelsbereich/S -Auenhandelsbilanz -Auenhandelsdirektor -Auenhandelsgeschfte -Auenhandelsgesellschaft -Auenhandelsgesetz -Auenhandelskammer -Auenhandelsminister -Auenhandelsministerium -Auenhandelspolitik -Auenhandelssituation -Auenhandelsspezialist -Auenhandelsstatistik -Auenhandelsumsatz -Auenhandelsunternehmen -Auenhandelsverbnde -Auenhandelszahlen -Auenhaut -Aueninstallation -Auenkante/N -Auenleiter -Auenlinie/N -Auenmae/N -Auenminister/NS -Auenministerium/S -Auenministerkonferenz -Auenministertagung -Auenpolitik/R -Auenposten/S -Auenprfung/P -Auenraum/STp -Auenreihe/N -Auenseite/NR -Auenseiter/FNS -Auenspiegel -Auenstnde/N -Auenstecker -Auenstelle/N -Auenstrmer -Auentemperatur/P -Auentr/P -Auenverhltnis/Qq -Auenverteidiger -Auenvertretung/P -Auenwnde/N -Auenwelt -Auenwirtschaft -Auenwirtschaftsverordnung -Auerachtlassen/JS -Auerbetriebnahme/N -Ausarbeitens -Ausarbeitung/P -Ausartens -Ausartung/P -Ausbau/S -Ausbaudach/T -Ausbaueinheit/P -Ausbaufunktion/P -Ausbaugert -Ausbaugestell/EPST -Ausbaugruppen -Ausbauingenieure -Ausbauinitiierung -Ausbaumanahmen -Ausbaunummer -Ausbauparameter -Ausbauplne -Ausbausimulator/P -Ausbaustellung -Ausbausteuergerte -Ausbausteuerung/P -Ausbaustrecke -Ausbaustufe -Ausbesserns -Ausbesserung/P -Ausbesserungsarbeit/P -Ausbeutens -Ausbeutung/P -Ausbeutungsmglichkeit -Ausbildens -Ausbilder/NS -Ausbilderprfung/P -Ausbildung/P -Ausbildungsabschnitt/EPS -Ausbildungsbedingung/P -Ausbildungsbeihilfe/N -Ausbildungsbetrieb/EPS -Ausbildungsdauer -Ausbildungsfrderung -Ausbildungsjahr/EPS -Ausbildungslehrgang/Sp -Ausbildungsmandat -Ausbildungsmglichkeit/P -Ausbildungsordnung -Ausbildungspltze/N -Ausbildungsplan -Ausbildungsprobleme -Ausbildungsprogramm -Ausbildungssttte/N -Ausbildungsttigkeit -Ausbildungsteile -Ausbildungsunterlagen -Ausbildungswesen/S -Ausbildungszeit/P -Ausbildungszentrum -Ausbildungszulage -Ausbildungszweck/EPS -Ausblick/EPS -Ausbrecher/NS -Ausbrecherknig -Ausbreitens -Ausbreitung/P -Ausbreitungsbedingung/P -Ausbreitungsflssigkeit -Ausbreitungsmedium -Ausbreitungsvolumen -Ausbreitungsweg/EPS -Ausbrche/N -Ausbruch/S -Ausbruchsversuch/EPS -Ausbrgerns -Ausbrgerung/P -Ausbuchtens -Ausbuchtung/P -Auschwitz -Ausdauer -Ausdehnens -Ausdehnung/P -Ausdehnungskoeffizient/P -Ausdehnungsmglichkeit/P -Ausdehnungsvermgen/S -Ausdrckstift -Ausdruck/ST -Ausdrucksbewegung/P -Ausdrucksform/P -Ausdrucksfunktion/P -Ausdruckskraft -Ausdruckskunst -Ausdrucksmittel/NS -Ausdrucksmglichkeit/P -Ausdrucksweise/N -Ausdnnens -Ausdnnung/P -Ausdnsten/JS -Auseinandersetzen/JS -Ausfahrten -Ausfall/Sp -Ausfallberechnung/P -Ausfallgarantie/N -Ausfallmuster -Ausfallquote/N -Ausfallrate/N -Ausfallstrae/N -Ausfallursache/N -Ausfallwahrscheinlichkeit/P -Ausfallzeit/P -Ausfertigens -Ausfertigung/P -Ausflchte/N -Ausflgler/FNS -Ausflucht -Ausflug/Sp -Ausflugsdampfer -Ausflugsfahrt/P -Ausflugskarten -Ausflugslokal -Ausflugsmglichkeit/P -Ausflugsort/P -Ausflugspunkt -Ausflugsverkehr -Ausflugsziel -Ausfluss/Tp -Ausflusshahn -Ausformens -Ausformung/P -Ausfhrens -Ausfhrlichkeit -Ausfhrung/P -Ausfhrungsbestimmung/P -Ausfhrungsform/P -Ausfhrungsgeschwindigkeit/P -Ausfhrungsgesetz/EPT -Ausfhrungsreihenfolge/N -Ausfhrungszeit/P -Ausfllanleitung/P -Ausfllens -Ausfllung/P -Ausfuhr -Ausfuhrbeschrnkung -Ausfuhrbestimmung/P -Ausfuhrerfahrung/P -Ausfuhrerls -Ausfuhrgenehmigung -Ausfuhrgeschft -Ausfuhrindustrie -Ausfuhrkontrakt/ST -Ausfuhrkredite -Ausfuhrliste -Ausfuhrlizenzen -Ausfuhrmglichkeit/P -Ausfuhrquote -Ausfuhrsperre/N -Ausfuhrverbot/EPST -Ausfuhrwert -Ausfuhrzlle/N -Ausfuhrzoll/S -Ausgabe -Ausgabeaufschlag/Sp -Ausgabebaugruppen -Ausgabebehandlung -Ausgabeeinheit/P -Ausgabeermchtigung -Ausgabefunktion -Ausgabegeschwindigkeit -Ausgabekanle -Ausgabekanal -Ausgabekarte -Ausgabeknoten -Ausgabekommando/S -Ausgabemglichkeit/P -Ausgabemodul/E -Ausgabenanstze/N -Ausgabenanstieg/S -Ausgabenposten/S -Ausgabenseite/N -Ausgabensenkung/P -Ausgabenverpflichtung/P -Ausgabenvolumen/S -Ausgabenwirtschaft -Ausgaberechner -Ausgabespannung -Ausgabestelle/N -Ausgabetag/EPST -Ausgabetreiber -Ausgabezahl -Ausgang/STp -Ausgangsbasis -Ausgangsbus -Ausgangsdruck/S -Ausgangsfunktion/P -Ausgangshypothese/N -Ausgangsimpuls -Ausgangskanle -Ausgangslage/N -Ausgangsleistung/P -Ausgangsmaterial -Ausgangspin/S -Ausgangsposition/P -Ausgangspunkt/EPT -Ausgangsregister -Ausgangsseite -Ausgangssignal -Ausgangssituation/P -Ausgangsspannung/P -Ausgangsspannungsbereich -Ausgangsstellung -Ausgangsstromstrke -Ausgangstest/S -Ausgangstext -Ausgangstransistor -Ausgangszustand/ST -Ausgasung -Ausgeber/N -Ausgeburt/P -Ausgeglichenheit -Ausgehsperre/N -Ausgehverbot/EPT -Ausgelassenheit -Ausgereiftheit -Ausgesetztheit/P -Ausgestaltens -Ausgestaltung/P -Ausgewogenheit -Ausgleich/JRS -Ausgleicher/NS -Ausgleichsanspruch -Ausgleichsbetrag/STp -Ausgleichsfunktion/P -Ausgleichsposten -Ausgleichsregelung -Ausgleichsrente -Ausgleichstreffer -Ausgleichsvertrag/STp -Ausgleichszahlung/P -Ausgleichszonen -Ausgliederns -Ausgliederung/P -Ausgrabens -Ausgrabung/P -Ausgrenzen/JS -Ausguck -Ausguss/Tp -Aushndigens -Aushndigung/P -Aushngeschild/R -Aushrtevorgang/ST -Aushandlung -Aushang/S -Aushebens -Aushebung/P -Aushilfe/N -Aushilfskellner -Aushhlens -Aushhlung/P -Ausklammerns -Ausklammerung/P -Auskoppeln/JS -Ausknfte/N -Auskunft -Auskunftsbro/S -Auskunftsdienst -Auskunftsersuchens -Auskunftserteilung -Auskunftsklausel -Auskunftsperson/P -Auskunftspflichtig/P -Auskunftsstelle/N -Auskunftsverfahren/S -Auskunftsverkehr/S -Auslnder/FNS -Auslndergesetz -Auslnderguthaben -Auslnderhass/T -Auslnderlager -Auslndersperre -Auslufe/NR -Auslufer/N -Ausladens -Ausladung/P -Auslage/N -Auslagerns -Auslagerung/P -Ausland/ST -Auslandsabnehmer -Auslandsabonnement -Auslandsaktien -Auslandsangebot -Auslandsanlagen -Auslandsarbeit -Auslandsaufenthalt/EPS -Auslandsbanken -Auslandsbasen -Auslandsbedarf -Auslandsbetriebe -Auslandsbeziehung/P -Auslandsbutter -Auslandschuld -Auslandsdeutscher -Auslandserfahrung/P -Auslandsfahrer -Auslandsfakultt -Auslandsfirmen -Auslandsgelder -Auslandsgeschfte -Auslandsgesellschaften -Auslandsgesprche -Auslandsgrundbesitz -Auslandsheimkehrer -Auslandshilfe -Auslandsimmobilien -Auslandsinvestitionen -Auslandsinvestoren -Auslandsjournal -Auslandskapital -Auslandskonzessionen -Auslandskorrespondent/P -Auslandskunden -Auslandsleser -Auslandslieferanten -Auslandsmagazin/EPS -Auslandsmarkt/Tp -Auslandspapiere -Auslandspass/Tp -Auslandspltze -Auslandspresse -Auslandsprojekte -Auslandsreferat -Auslandsreise/N -Auslandsscheck -Auslandsschulden -Auslandsschuldenlast -Auslandssender/N -Auslandsstudenten -Auslandsttigkeit -Auslandstournee/N -Auslandsunternehmen -Auslandsverkauf/Sp -Auslandsvermgen -Auslandsvertreter -Auslandsvertretung/P -Auslandswechsel -Auslandswerte -Auslandszahlung/P -Auslass/J -Auslassens -Auslassungszeichen/S -Auslasten/JS -Auslauf/STp -Auslaufmodell/EPS -Auslaut/T -Auslegens -Ausleger/NS -Auslegerarme -Auslegerbefestigung -Auslegerbewegung/P -Auslegergeometrie -Auslegerneigung/P -Auslegersteuerung -Auslegerteile -Auslegerzylindern -Auslegesteuerung -Auslegung/P -Ausleihens -Ausleiher/FNS -Ausleihung/P -Ausleihungsgeschft -Auslenken/JS -Auslesens -Ausleseprozess/EPT -Ausleseverfahren/S -Auslesung/P -Auslieferer/N -Auslieferns -Auslieferung/P -Auslieferungsantrag/STp -Auslieferungsfall -Auslieferungstermin -Auslieferungsvertrag/STp -Auslschens -Auslschung/P -Auslseeffekt -Auslsemechanismen -Auslsens -Auslser/NS -Auslsung/P -Auslobung/P -Auslosens -Auslosung/P -Ausmrsche/N -Ausmarsch/T -Ausma/EPT -Ausmerzens -Ausmerzung/P -Ausmessens -Ausmessung/P -Ausmndung -Ausnahme -Ausnahmebestimmung/P -Ausnahmebewilligung -Ausnahmeerscheinung/P -Ausnahmefall/STp -Ausnahmegenehmigung/P -Ausnahmeliste -Ausnahmepreise -Ausnahmesituation/P -Ausnahmetarife -Ausnahmewnsche -Ausnahmezustnde/N -Ausnahmezustand/T -Ausntzens -Ausntzung/P -Ausnutzens -Ausnutzung/P -Ausnutzungsgrad/EPST -Ausplnderns -Ausplnderung/P -Ausprgens -Ausprgung/P -Auspuff/EPST -Auspuffgase/S -Ausrechnens -Ausrechnung/P -Ausreier/FNS -Ausreiseerlaubnis/q -Ausreisegenehmigung -Ausreisevisen -Ausreisevisum/S -Ausrichtens -Ausrichtung/P -Ausritt/T -Ausrottens -Ausrottung/P -Ausrstens -Ausrster/NS -Ausrstung/P -Ausrstungsgegenstnde/N -Ausrstungsteil/EPS -Ausruf/S -Ausrufezeichen/S -Ausrufungszeichen/S -Ausrutscher/NS -Aussaat -Aussagegehalt/ST -Aussagekraft -Ausschnke/N -Ausschaltens -Ausschalter/N -Ausschaltfunktion/P -Ausschaltung/P -Ausschank/ST -Ausschau -Ausscheidens -Ausscheidung/P -Ausscheidungskmpfe -Ausscheidungskampf -Ausscheidungsspiel -Ausscheidungswettbewerbe -Ausschlag/Sp -Ausschluss/Tp -Ausschlussfrist -Ausschlussverfahren/S -Ausschnitt/EPST -Ausschpfens -Ausschpfung/P -Ausschreibens -Ausschreibung/P -Ausschreitens -Ausschreitung/P -Ausschttens -Ausschttung/P -Ausschuss/Tp -Ausschussberatung/P -Ausschussbericht -Ausschussmitglied/R -Ausschusssitzung/P -Ausschusstagung/P -Ausschussvorsitzende/NR -Ausschussware/N -Ausschweifens -Ausschweifung/P -Aussehens -Aussendens -Aussendung/P -Aussetzens -Aussetzer/NS -Aussetzung/P -Aussicht/P -Aussichtslage/N -Aussichtslosigkeit -Aussichtspunkt/EPT -Aussichtstrme/N -Aussichtsturm -Aussiedler/N -Ausshnens -Ausshnung/P -Ausshnungspartner -Aussonderungswege -Ausspannung -Aussparens -Aussparung/P -Aussperrens -Aussperrung/P -Ausspielens -Ausspielung/P -Aussprache -Aussprche/N -Ausspruch/S -Ausstnde/N -Ausstaffierens -Ausstaffierung/P -Ausstand/ST -Ausstattens -Ausstatter/N -Ausstattung/P -Ausstattungschef -Aussteigens -Aussteiger/NS -Aussteigermentalitt -Aussteigerparadies -Aussteigewarnung/P -Ausstellens -Aussteller/FNS -Ausstellerfirmen -Ausstellergruppe -Ausstellfenster -Ausstellung/P -Ausstellungsdatum -Ausstellungsflche -Ausstellungsgegenstnde -Ausstellungshallen -Ausstellungslokal -Ausstellungsmglichkeit -Ausstellungsplakat -Ausstellungsspiegel -Ausstellungsstand -Ausstellungsstck/EPST -Ausstellungstag/EPS -Aussterbens -Aussteuern/JSW -Ausstieg/EPST -Ausstiegsdaten -Ausstiegspunkt -Ausstiegssignal/E -Ausstiegswarnung/P -Aussto/JTp -Ausstrahlens -Ausstrahlung/P -Ausstrahlungskraft -Ausstrmens -Ausstrmung/P -Austausch/ST -Austauschbarkeit -Austauschfolie -Austauschgert/E -Austauschkarten -Austauschmglichkeit/P -Austauschplatinen -Austauschprogramm/EP -Austauschrechner -Austauschstudent/FP -Austauschteile -Austauschverfahren -Austauschvertrag/STp -Austeilens -Austeilung/P -Austenit/EPS -Auster/N -Austragens -Austragung/P -Austragungssttte/N -Australien -Australier/FNS -Austreibens -Austreibung/P -Austriazismen -Austriazismus -Austritt/EPT -Austrittsdse/N -Austrittserklrung/P -Austrittskosten -Austrittsmglichkeit -Ausbens -Ausbung/P -Ausuferns -Ausuferung/P -Ausverkauf/Sp -Ausverkaufspreise/N -Auswrtsspiel/EPS -Auswahl -Auswahlband -Auswahlkatalog -Auswahlkomitee/S -Auswahlliste/N -Auswahlmen -Auswahlmglichkeit/P -Auswahloperation/P -Auswahloperator/P -Auswahlsendung/P -Auswahlsignal -Auswahlspieler -Auswahlverfahren/S -Auswanderer/NS -Auswandererberatungsstelle -Auswanderns -Auswanderung/P -Auswanderungspolitik -Auswechselns -Auswechselung/P -Auswechslung/P -Ausweg/EPS -Ausweichmglichkeit/P -Ausweichstelle/N -Ausweis/JT -Ausweisinhaber -Ausweiskarten -Ausweiskontrolle -Ausweispapier/EPS -Ausweispflicht -Ausweisungsbefehl/EPS -Ausweisungsbeschluss/Tp -Ausweiszwang -Ausweitens -Ausweitung/P -Auswerteeinheit/P -Auswerteelektronik -Auswertekarte -Auswertens -Auswerterechner -Auswertesoftware -Auswerteteil -Auswerteverfahren -Auswertezyklus -Auswertung/P -Auswertungsreihenfolge/N -Auswirkens -Auswirkung/P -Auswchse/N -Auswrfe/N -Auswuchs/T -Auswurf/S -Auszahlens -Auszahlung/P -Auszahlungsautomat/P -Auszahlungsverfgung -Auszehren/JS -Auszeichnens -Auszeichnung/P -Auszeit -Auszug/STp -Auszugsschiene/N -Autarkie -Authentifizierens -Authentifizierung/P -Authentisierens -Authentisierung/P -Authentizitt -Auto/S -Autoausstellung -Autobahn/P -Autobahnanschluss/Tp -Autobahnauffahrt -Autobahnausfahrten -Autobahnbau -Autobahnbrcke -Autobahneinfahrten -Autobahnfahrt -Autobahngebhren -Autobahnkreuz -Autobahnparkpltze -Autobahnsteuer -Autobahnstrecken -Autobahntote -Autobahnzubringer/NS -Autobatterie -Autobiographie/Nf -Autobox -Autobrcke -Autobus/Qq -Autobusbahnhfe -Autobusbahnhof/S -Autobushaltestelle -Autobuslinie -Autobusreifen -Autobusreisen -Autodidakt/P -Autodidaktik -Autodiebe -Autodiebstahl -Autodienst -Autodrom -Autofhren -Autofabrik/P -Autofahren/S -Autofahrer/NS -Autofahrt/P -Autofriedhfen -Autofriedhof -Autogeschft -Autogramm/EPS -Autogrammjger -Autogrammsammlung -Autogrammstunde -Autograph/P -Autohndler/N -Autohalde -Autohandel -Autohersteller -Autohilfen -Autohupe/N -Autoimport -Autoinsasse -Autokarosserie/N -Autokarte -Autokauf/Sp -Autokino/S -Autoknacker -Autokolonne -Autokonzern/E -Autokult -Autolack -Automagazin/EPS -Automarkt/STp -Automat/P -Automatengeschft -Automatenhndler -Automatenknacker -Automatentheorie -Automatik/P -Automatikablauf/Sp -Automatikbetrieb -Automatikdatei/P -Automatikfahrt/P -Automatikfunktion/P -Automatikprogramm/S -Automatikprogrammierung -Automatikregelung/P -Automatikstart -Automatiktypen -Automatikzyklen -Automatikzyklus -Automation/P -Automatisierens -Automatisierung/P -Automatisierungsgrad/EPST -Automatisierungsstufen -Automatismus -Automechaniker/S -Automobil/EPS -Automobilabsatz -Automobilbau -Automobilbereich -Automobilfabrik -Automobilfirma -Automobilfirmen -Automobilhandlung -Automobilimporte -Automobilisten -Automobilklub/S -Automobilkonzern/E -Automobilproduzenten -Automobilrennen -Automobilrevue -Automobilunternehmen -Automobilverbnde -Automobilverkufer -Automobilwerk/E -Automobilwirtschaft -Automorphismen -Automorphismus -Automotor/PS -Automuseum -Autonamen -Autonomie -Autonomiebestrebung/P -Autonummer -Autopilot -Autopreis/EPT -Autopsie/N -Autor/FPS -Autoruber -Autoreise -Autoreisenden -Autorenkollektiv/S -Autorennplne -Autorenrecht/E -Autoreparaturwerkstatt -Autorisierens -Autorisierung/P -Autoritt/P -Autorittsverlust/ST -Autorschaft -Autoschau -Autoschlange/N -Autoschlssel -Autositze -Autoskooter/N -Autosport -Autostimulationsfunktion -Autostopp -Autostrae/N -Autoteile -Autotelefon -Autotr/P -Autouhren -Autounfall/Sp -Autoverkufer -Autoverkehr/S -Autoverleih/EPRS -Autoverleiher/NS -Autovermietung -Autoverwertung -Autoveteran -Autowerk -Autowerksttten -Autowerkstatt -Autowrack/S -Autozeitschrift -Autozentrum -Autozubehr/EPS -Autozusammensto/Tp -Auvergne -Avantgarde/N -Avantgardefilme -Aversion/P -Aviv -Avocado/S -Avogadro/S -Axel/S -Axiom/EPS -Axt -Azalee/N -Azetat/EPS -Azoren -Azteken -Aztekenreich -Azur -BASF -BBC -BGB -BH -BIOS -BKA -BLZ -BMW -BND -BP -BRD -BSE -BTX -BVG -Bche/N -Bchlein/S -Bcker/FNS -Bckerei/P -Bckergehilfe -Bckergesellen -Bckerjunge -Bckerlehre -Bckermeister -Bder/N -Blde -Blle/N -Bnde/NR -Bndel/S -Bnden -Bnder/N -Bnderriss/EPT -Bndigens -Bndigung/P -Bnke/NR -Bnker/NS -Br/FP -Brendreck -Brenkrfte -Brenmtze/N -Brte/N -Bsse/N -Buche/N -Buerin/F -Bume/N -Babel -Baby/S -Babyboom -Babyjahr -Babylon -Babylonier -Babynahrung -Babypflege -Babysachen -Babysocken -Bach/ST -Bachufer -Backblech/EPS -Backenbrte/N -Backenbart -Backenknochen -Backenzhne/N -Backenzahn/S -Backfisch/E -Backgammon -Background/S -Backhuhn -Backfen -Backofen/S -Backpulver/S -Backslash/S -Backstein/E -Backstube -Backup/S -Backware/N -Backwarenindustrie -Backzeit -Bad/T -Badeanlagen -Badeanstalt/P -Badeanzug/STp -Badeeinrichtung -Badeerlebnis/Qq -Badegste -Badegast/T -Badegelegenheit -Badehaus/Tp -Badehose/N -Badekappen -Badekostm -Badekur -Bademntel/N -Bademantel -Bademeister/NS -Badeort/ET -Badesaison -Badestrnde -Badestrand/T -Badetcher -Badetuch/T -Badewanne/N -Badewasser -Badezimmer/N -Badezimmerwand -Badminton -Bafg -Bagatelle/N -Bagdad -Bagger/S -Baggerarbeit/P -Baggerarm/EPST -Baggerbetrieb -Baggerfahrer -Baggergerte -Baggerlffel/S -Baggermaschine/N -Baggerobjekte -Baggerposition -Baggerreichweite -Baggerschaufel -Baggersee/NS -Baggerstandort -Baggersteuerung -Bahamas -Bahnangestellter -Bahnanleihe -Bahnarbeiter/FNS -Bahnbeamte/NR -Bahnbrecher/NS -Bahndmme/N -Bahndamm/T -Bahnexpress/EPT -Bahnfahrt/P -Bahnfracht/P -Bahngebiet -Bahngleis/EPT -Bahngleisanschluss/Tp -Bahnhfe/N -Bahnhof/ST -Bahnhofsanlagen -Bahnhofskiosk/E -Bahnhofskommission -Bahnhofspennern -Bahnhofsplatz -Bahnhofstrae -Bahnhofswartesaal -Bahnhofswirtschaft -Bahnknotenpunkt -Bahnkurve/N -Bahnlasten -Bahnlinie/N -Bahnreise/N -Bahnrekord -Bahnservice -Bahnsteig/EPT -Bahnsteigkante -Bahnstrung/P -Bahnstrecken -Bahntarife/N -Bahnbergang/Tp -Bahnverwaltung/P -Bahnwrter -Bahnweg -Bahnwerke -Bahrain -Bahre/N -Bahrein -Bai/P -Baiser -Baisse/N -Baissedeckung/P -Baissemeldung/P -Baissier/S -Bajonett/EPS -Bajonettflansch -Bajonettverschluss/Tp -Bakschisch -Bakterie/N -Bakterienkultur -Bakterientrger -Bakteriologe/N -Balance/N -Balanceakt/EPST -Balancierens -Balancierung/P -Balboa -Balearen -Bali -Balkan -Balkankrieg -Balkanlnder -Balkanpakt -Balken/S -Balkenanzeige/N -Balkendarstellung/P -Balkenform -Balkenlettern -Balkennummerierung -Balkenwaage/N -Balkon/EPS -Balkonfenster -Ball/JS -Ballade/N -Ballannahme -Ballartisten -Ballast/T -Ballaststoffe/N -Ballbesucher -Balldame -Ballduelle -Ballens -Ballerina -Ballerinen -Ballerspiel/EPS -Ballett/ST -Ballettabende -Ballettchef -Ballettdirektor/P -Ballettleistung/P -Ballettleiter -Ballettmeister -Ballettmusik -Ballettpartituren -Ballettratten -Ballettromantik -Balletttnzer/FNS -Ballettwettbewerb -Ballgesellschaft -Ballistik -Balljungen -Ballkleider/N -Ballkleides -Ballnchte -Ballnacht -Ballon/EPS -Ballonfahrer/FNS -Ballonflug/STp -Ballonmtze -Ballonsatellit -Ballpassagen -Ballsle/N -Ballsaal/ST -Ballspiele/N -Ballspielplatz -Ballungsgebiet/EPST -Ballungsraum/STp -Ballungszentrum -Ballwechsel -Ballwurfmaschinen -Balsam/S -Balte/FN -Baltikum -Balzverhalten -Bamberg -Bambi -Bambus -Banalitt/P -Banane/N -Bananenladung -Bananenparadiese -Bananenrepublik -Banause/N -Banausentum -Bandage/N -Bandagist/P -Bandanlage/N -Bandaufnahme -Bandbreite/N -Bande/S -Bandenchef -Bandenmitglieder -Bandensystem -Bandes -Bandfabrik -Bandfrderer/S -Bandit/P -Banditeninsel -Bandkeramik -Bandpass/Tp -Bands -Bandscheiben -Bandspeicherung -Bandstahlwerkzeug -Bangemnner -Bangkok -Bangladesh -Banjo/S -Bank/PR -Bankaktivitten -Bankangestellten -Bankangestellter -Bankanweisung -Bankarbeitstag -Bankaufsichtsbehrde -Bankauskunft -Bankbeamte/N -Bankbescheinigung/P -Bankbosse -Bankbrgschaften -Bankbuch -Bankcomputer -Bankdarlehen -Bankdaten -Bankdirektor/PS -Bankdividende -Bankeinlagen -Bankenapparat -Bankenaufsichtsbehrde -Bankenausschuss/Tp -Bankenautomation/P -Bankenbeteiligung -Bankenfachpresse -Bankengagements -Bankengelder -Bankengemeinschaft -Bankengeschft -Bankengewerbe -Bankengruppe -Bankenhandel -Bankenkonsortium -Bankenkrach -Bankenkrise -Bankenmentalitt -Bankenprobleme -Bankenpublikums -Bankensoftware -Bankenstory/S -Bankensystems -Bankentage -Bankenverstaatlichung -Bankenvorstnde -Bankenwelt -Bankenwesen -Bankenzusammenbrche -Bankenzusammenbruch/S -Banker/NS -Bankerfahrung -Bankett/EPS -Bankfach -Bankfeiertag/E -Bankfiliale -Bankfirmen -Bankgarantie/N -Bankgebhren -Bankgefge/N -Bankgeheimnis/Qq -Bankgeschft/P -Bankgesellschaft/P -Bankgewerbe -Bankgruppen -Bankguthaben -Bankhallen -Bankhalter/N -Bankhaus/Tp -Bankier/S -Bankinstitut -Bankkarten -Bankkaufmann -Bankkonten -Bankkonto/S -Bankkredite -Bankkreisen -Bankkrise -Bankkunde/N -Bankkurs -Bankleiter -Bankleitzahl -Banklizenz -Bankmanager -Banknote/N -Banknotendeckung -Banknotenkurse -Banknotenumlauf/Sp -Bankpleite -Bankpleitenwelle -Bankprsident -Bankpraktiker -Bankprofis -Bankruber/S -Bankreferenzen -Bankregel -Bankreport -Bankrotterklrung/P -Bankschtzwert -Bankschalter -Bankschlieung/P -Banksonderkonto -Bankspesen -Bankstelle -Banktitel -Banktransaktionen -Banktresor -Bankberfall/Sp -Bankberweisung/P -Bankunternehmen -Bankverbindung -Bankverkehr -Bankwelt -Bankwesen/S -Bankzinsen -Bankzusammenbruch -Bann/R -Bannens -Banner/NS -Bannertrger -Bannstrahl -Bannung/P -Bantamgewichtsmeister -Bantu -Baptist/P -Baptisterium/S -Baracke/N -Barackenlager -Baranzahlung -Barausschttung -Barauszahlung/P -Barbados -Barbar/P -Barbara/S -Barbarei -Barbarella/S -Barbarentrupps -Barbarossa/S -Barbesitzerin -Barbestnde/N -Barbestand/T -Barbetrag/STp -Barbetrieb -Barbie/RS -Barbier/EPS -Barcelona -Barclays -Barcode/S -Bardame/N -Barde/N -Bareinnahme/N -Bareinzahlung -Barentssee -Bargeld/RST -Bargeldbestnde -Bargeldbestand -Bargeldmenge -Bargeldtransaktion/P -Bargeldumlauf/Sp -Bariton/EPS -Barium -Bark/EP -Barkasse/N -Barkauf/Sp -Barleistung -Barliquiditt -Barmherzigkeit -Barmittel -Barnabas -Barock -Barockorchester -Barockstadt -Barometer -Barometerstnde -Barometerstand/T -Baron/EFPS -Barrakuda/S -Barrel -Barren/S -Barreserve/N -Barriere/N -Barrikade/N -Bars -Barschaft/P -Bart/T -Barterrasse/N -Bartholdy/S -Barttrger/N -Bartwuchs -Barberschuss/Tp -Barverdienst -Barverkauf/Sp -Barverkaufspreis -Barverlust/EPT -Barzahlung/P -Basalt -Basaltplateau -Basar/EPS -Baseball -Baseballsaison -Basel -Basen/I -Basic -Basilika -Basis -Basisadresse/N -Basisarbeit/P -Basisbaustein/EPS -Basisblcke/N -Basisblock/S -Basisdaten -Basisdatentyp/PS -Basisertrag/STp -Basisfirmware -Basisgre/N -Basisjahr/EPS -Basislager/S -Basismaterial -Basismischung -Basisoperation/P -Basispaket/EPST -Basispreis/EPT -Basisrate/N -Basissoftware -Basisstrecke/N -Basissystem/EPS -Basistechnik/P -Basistyp/PS -Basisvektor/PS -Basiswhrung/P -Basiswissen/S -Basiszinsen -Basken -Baskenland/T -Baskenmtze/N -Basketball/Sp -Basketballkmpfe -Basler/N -Bass/T -Bassfigur -Bassgeige/N -Bassin/S -Bassist/P -Bassschlssel/NS -Bassstimme/N -Bast/T -Bastard/EPST -Bastelei/P -Bastelstube/N -Bastelstunde/N -Bastille -Bastion/P -Bataillon/EPS -Bataillonsstrke -Batik/P -Batist/ET -Bator -Batterie/N -Batterieanschluss/Tp -Batteriesure/N -Batteriespannung -Batteriestromversorgung -Batterieversorgung -Batteriewechsel -Batzen -Bau/RS -Baumter/N -Bauabfall/Sp -Bauabschnitt/EPS -Bauabteilung -Bauamt -Bauanleitung/P -Bauantrag/STp -Bauarbeiter/FNS -Bauart/P -Bauauflage/N -Bauausgaben -Baubeginn -Bauberatung -Baubereich -Bauberuf -Baubeschrnkung -Baubestandteile -Bauboom -Baubreite/N -Baubro -Bauch/T -Bauchdecke -Bauchgrimmen -Bauchlandung/P -Bauchmuskel/N -Bauchreden -Bauchredner/N -Bauchschmerzen -Bauchspeicheldrse -Bauchtnzerin -Bauchweh -Baud -Baudarlehen -Baudenkmler -Baudirektor -Baudrate/N -Baudratenbestimmung -Bauelement/EPST -Bauer/NS -Bauernaufstand -Bauerndorf -Bauernerhebung/P -Bauernfngerei -Bauernfamilien -Bauernfrau/P -Bauernfhrer -Bauerngut -Bauernhaus/Tp -Bauernhfe/N -Bauernhof/T -Bauernjunge -Bauernkonkurse -Bauernkunst -Bauernland -Bauernpartei -Bauernprsident -Bauernrevolte -Bauernschaft -Bauernschrank -Bauernshne -Bauernstaat -Bauernsthle -Bauerntrampel -Bauerntum -Bauernverband -Bauernwirtschaft -Bauersfrau -Baufachmann -Baufachschule -Baufirma -Baufirmen -Bauflche -Bauform/P -Baufortschritt -Baufhrung -Baugebiete -Baugelnde/S -Baugenehmigung/P -Baugerten -Baugerst/ET -Baugeschft/EPS -Baugewerbe/S -Baugre/N -Baugrnden -Baugrube -Baugrundstck -Baugruppe/N -Baugruppenlieferant -Baugruppentrger -Bauhandwerker/NS -Bauherr/FNP -Bauholz/T -Bauhtte -Bauingenieur/PS -Bauingenieurwesen -Baujahr/EPS -Bauksten -Baukasten/S -Baukastensystem/EPS -Baukaufmann -Baukeramik -Baukrper -Baukolonnen -Baukomplex -Baukonjunktur -Baukonto -Baukontrolleur -Baukreditbank -Baukunst -Bauland -Baulandmangel -Baulast -Bauleistung/P -Baulwe -Baum/ST -Baumanahme/N -Baumaschinen -Baumaschinenfabrik -Baumaschinenfertigung -Baumaterialien -Baumdarstellung -Baumeister/S -Baumethoden -Baumgruppen -Baumhhle/N -Bauminister -Bauministerium -Baumkronen -Baumschere -Baumschule/N -Baumspitzen -Baumsprache/N -Baumstmme/N -Baumstamm/S -Baumstrnke -Baumstmpfe -Baumstumpf -Baumuster -Baumusterprfung/P -Baumwipfel -Baumwollartikel -Baumwollbekleidung -Baumwollbranche -Baumwollernte -Baumwollerzeugnis/Qq -Baumwollexport -Baumwollfarmer -Baumwollfelder -Baumwollgewebe -Baumwollproduktion -Baumwollsituation -Baumwollverarbeiter -Baumwollvorrte -Baumwollware/N -Baumwollweiwaren -Baumzapfen -Bauordnungsrecht -Bauparzelle/N -Bauplne -Baupltze/N -Bauplan/ST -Bauplanung -Bauplatz/T -Baupolizei -Baupreisen -Baupreiserhhung -Baupreissituation/P -Bauprojekt/S -Baureihe/N -Baurisiko -Bauruinen -Baustze/N -Bausatz/T -Bauschlosser/NS -Bausektor -Bauskizzen -Bauspardarlehen -Bauspareinlagen -Bausparern -Bausparkasse/N -Bausparkassenkatastrophe -Bausparkassenkrise -Bausparkassensicherungsfonds -Bausparprmie -Bausparsumme/N -Bausparvertrag/Tp -Bausparwesen -Bausperren -Baustadtrat -Baustein/EPST -Baustelle/N -Baustellenbesetzung -Baustellenbesuch/S -Baustil/EPT -Baustoff/EPT -Baustofffirma -Baustoffhandlung/P -Baustoffindustrie/N -Baustufe/N -Bausubstanz -Bausumme/N -Bauttigkeit/P -Bautechniker/S -Bauteil/EPS -Bauteilekosten -Bauteilename/N -Bauteileseite -Bauteilseite -Bautrger/S -Bautrgerakrobaten -Bautrgergesellschaften -Bautrgerpleiten -Bauunternehmen -Bauunternehmer/NS -Bauverlag -Bauvorhaben/S -Bauvorschriften -Bauweise/N -Bauwelt -Bauwerk/EPST -Bauwert -Bauwirtschaft -Bauxit -Bauzeit/P -Bauzuschuss/Tp -Bauzustand -Bavaria/S -Bayer/FN -Bayern/SW -Bayeux -Bayonne -Bayreuth -Bazillen -Bazillus -Bde -Bea/S -Beachtens -Beachtung/P -Beamer/NS -Beamte/FNR -Beamtenabbau -Beamtenapparate -Beamtenbeleidigung -Beamtenbesoldung -Beamtenbund/T -Beamteneid -Beamtenerfahrung/P -Beamtengehlter -Beamtengesetz -Beamtengruppe -Beamtenordnung -Beamtenschaft -Beamtenstellen -Beanspruchens -Beanspruchung/P -Beanstandens -Beanstandung/P -Beantragens -Beantragung/P -Beantragungsfrist/P -Beantwortens -Beantwortung/P -Bearbeitens -Bearbeiter/FNS -Bearbeitung/P -Bearbeitungsfunktion/P -Beate/S -Beatfan -Beatgruppe/N -Beatles -Beatlokal -Beatmens -Beatmung/P -Beatmusik -Beatplatte -Beatrice/S -Beatrix -Beaufschlagens -Beaufschlagung/P -Beaufsichtigens -Beaufsichtigung/P -Beauftragens -Beauftragung/P -Beaujolais -Bebauens -Bebauung/P -Bebauungsplan/S -Becher/S -Becken/S -Beckenbauer/S -Becker/S -Beckmann/S -Becquerel/S -Bedachtsamkeit -Bedarfs -Bedarfsuerung/P -Bedarfsartikel/NS -Bedarfsfall/S -Bedarfsidentitt -Bedarfssituation/P -Bedeckens -Bedeckung/P -Bedenkentrger/N -Bedenklichkeit/P -Bedenkzeit/P -Bedeutens -Bedeutsamkeit -Bedeutung/P -Bedeutungserweiterung/P -Bedeutungslosigkeit -Bedienanleitung/P -Bedienbarkeit -Bedienebene/N -Bedieneinheit/P -Bedieneinrichtung/P -Bedienelement/EPST -Bedienens -Bediener/NS -Bedieneroberflche/N -Bedienfeld/S -Bedienfolie -Bedienfunktion/P -Bedienkomfort -Bedienmannschaft/P -Bedienmglichkeit/P -Bedienoberflche/N -Bedienperson/P -Bedienpersonal/S -Bedienpult -Bedienstete/NR -Bedientastatur/P -Bedientaste/N -Bedienung/P -Bedienungsanleitung/P -Bedienungseinrichtung/P -Bedienungselement/EPST -Bedienungsweise/N -Bedienwnsche/N -Bedingens -Bedingung/P -Bedrngnis/q -Bedrohens -Bedrohung/P -Bedrohungsngste/N -Bedrouille -Bedrckens -Bedrckung/P -Bedrfnis/Qq -Bedrfnisanstalt/P -Bedrfnisreduzierung/P -Bedrftigkeit -Beefsteak/S -Beeinflussbarkeit -Beeinflussens -Beeinflussung/P -Beeinflussungsfhigkeit -Beeinflussungsmittel -Beeintrchtigens -Beeintrchtigung/P -Beelzebub -Beendigens -Beendigung/P -Beengens -Beengtheit -Beengung/P -Beerdigens -Beerdigung/P -Beerdigungsinstitut/EPS -Beere/N -Beet/EPT -Beethoven/S -Befhigens -Befhigung/P -Befehl/S -Befehlsangebot -Befehlsausfhrung -Befehlscode/S -Befehlseingang/Sp -Befehlsfolge/N -Befehlsform/P -Befehlsgerten -Befehlshaber/NS -Befehlsliste -Befehlsmodus -Befehlssatz -Befehlssequenzen -Befehlsstruktur/P -Befehlston/S -Befehlsvorrat -Befehlswrter/N -Befehlswort/EPST -Befehlszeile -Befestigens -Befestigung/P -Befestigungsbleche -Befestigungsgewinde -Befestigungslcher -Befestigungsschraube -Befestigungsteil -Befestigungswand -Befeuchtens -Befeuchtung/P -Befindlichkeit/P -Befleckens -Befleckung/P -Befrderns -Befrderung/P -Befrderungszahl -Befolgens -Befolger -Befolgung/P -Befragens -Befrager -Befragung/P -Befragungsaktion/P -Befragungsgruppe/N -Befragungstag -Befreiens -Befreier/FNS -Befreiung/P -Befreiungsantrag/STp -Befreiungsarmee/N -Befreiungsbewegung -Befreiungsfeier -Befreiungsfront -Befreiungskomitee/S -Befreiungsorganisation/P -Befreiungsschlag/STp -Befremdens -Befremdung/P -Befriedens -Befriedigens -Befriedigung/P -Befriedung/P -Befruchtens -Befruchtung/P -Befrchtens -Befrchtung/P -Befrwortens -Befrworter/N -Befrwortung/P -Befugnis/q -Befund/ET -Begabtenauslese/N -Begabtenfrderung -Begabung/P -Begattens -Begattung/P -Begebenheit/P -Begegnens -Begegnung/P -Begehens -Begehrlichkeit/P -Begehrtheit -Begehung/P -Begeisterns -Begeisterung/P -Begeisterungsruf/EPS -Begierde/N -Beginns -Beglaubigens -Beglaubigung/P -Beglaubigungsschreiben/S -Begleichens -Begleichung/P -Begleitbrief/EPST -Begleitens -Begleiter/FNS -Begleitergruppe -Begleiterscheinung/P -Begleitheft/EPST -Begleitmusik -Begleitnote -Begleitperson/P -Begleitpersonal/S -Begleitschiff -Begleitschreiben/S -Begleitumstnde/N -Begleitumstand/T -Begleitung/P -Beglckwnschung -Begnadigens -Begnadigung/P -Begnadigungsaktion/P -Begonie/N -Begrbnis/Qq -Begradigen/JS -Begrenzens -Begrenztheit -Begrenzung/P -Begrenzungslinie/N -Begrenzungsmauer -Begrenzungswarnung -Begriffe/S -Begriffs -Begriffsbestimmung/P -Begriffsbildung/P -Begriffsebene/N -Begriffserklrung/P -Begriffsvermgen/S -Begriffsverwirrung/P -Begriffswrterbuch -Begrndens -Begrnder/FNS -Begrndung/P -Begrndungsschritt/EPS -Begrens -Begrung/P -Begrungsansprache -Begrungsempfang -Begrungsfeierlichkeit/P -Begrungskanon -Begrungskuss/Tp -Begrungspalaver -Begrungsworte -Begnstigens -Begnstigung/P -Begutachtens -Begutachtung/P -Behbigkeit -Behlter/NS -Behlterbau -Behltnis/Qq -Behndigkeit -Behaglichkeit -Behandelns -Behandelung/P -Behandlung/P -Behandlungserfolge/N -Behandlungsgert -Behandlungsmethode/N -Behang/STp -Beharrlichkeit -Behauptens -Behauptung/P -Behausens -Behausung/P -Behaviorist/P -Behebens -Behebung/P -Behebungsversuch/EPS -Beheizens -Beheizung/P -Behelf/ST -Behelligens -Behelligung/P -Beherrschens -Beherrscher -Beherrschtheit -Beherrschung/P -Beherztheit -Behinderns -Behindertenwerkstatt -Behinderung/P -Behrde/N -Behrdenauftrge -Behrdenbauten -Behrdendeutsch -Behrdenfehler -Behrdengeschft -Behrdenleiter -Behrdenstellen -Behrdenwillkr -Behr/S -Behutsamkeit -Beibehaltens -Beibehaltung/P -Beiblatt/S -Beichtgeheimnis/Qq -Beichtkind/RST -Beichtsthlen -Beichtstuhl/T -Beichtvtern -Beichtvater/S -Beiersdorf -Beifahrer/FNS -Beifahrersitz -Beifall/S -Beifallsruf/EPS -Beifallsstrme/N -Beifallssturm -Beifgens -Beifgung/P -Beigeschmack/ST -Beihilfe/N -Beil/EPST -Beilage/N -Beilagennderung/P -Beilagscheiben -Beilegens -Beilegung/P -Beileid -Beileidsbesuche -Beileidsbrief/ET -Beileidskundgebung/P -Beileidstelegramme -Beimengens -Beimengung/P -Beimischungszwecke -Bein/EGMPST -Beiname/N -Beinamen/S -Beinarbeit -Beinbrche/N -Beinbruch -Beine/GMNS -Beinhaus -Beinmuskeln -Beinpaar -Beinprothesen -Beinverletzung/P -Beipflichtens -Beipflichtung/P -Beirte/N -Beirat/ST -Beiratstreffen/S -Beirut/S -Beisammensein -Beischlfer -Beischlaf -Beisein/S -Beisetzens -Beisetzung/P -Beisitzer/FN -Beisitzrecht -Beispiel/EPS -Beispieldialog/EPS -Beispielfall/Sp -Beispiellosigkeit/P -Beispielprogramm/E -Beistanderklrung -Beistandsbemhung/P -Beistandserklrung -Beistandskredit -Beistandspakt -Beistandsvertrge -Beistellens -Beistellnetzteil -Beistellung/P -Beitrag/STp -Beitragsaufkommen/S -Beitragseinnahme/N -Beitragserhhung/P -Beitragshhe/N -Beitragspflicht -Beitragsrckerstattung/P -Beitragsrckvergtung -Beitragsbertrge -Beitragszahlung/P -Beitragszuwachs -Beitritte/N -Beitritts -Beitrittsantrag/STp -Beitrittsbedingung/P -Beitrittsgebhr -Beiwagen/S -Beiwrter/N -Beiwort/ST -Bejahens -Bejahung/P -Bekmpfens -Bekmpfung/P -Bekanntenkreis/EPT -Bekanntgabe -Bekanntgeben/S -Bekanntheit -Bekanntheitsgrad/T -Bekanntmachen/JS -Bekanntschaft/P -Bekanntwerden/S -Bekehrens -Bekehrung/P -Bekennerschreiben/S -Bekenntnis/Qq -Bekenntnisfreiheit -Bekleidens -Bekleidung/P -Bekleidungsbranche -Bekleidungsindustrie -Bekleidungskonjunktur -Bekleidungspreise -Bekleidungsproduktion -Bekleidungstextilien -Bekleidungsvorschriften -Bekleidungswerk/T -Beklemmens -Beklemmung/P -Bekmmlichkeit -Bekstigen/JS -Bekrftigens -Bekrftigung/P -Bekmmernis/q -Bekundens -Bekundung/P -Belstigens -Belstigung/P -Beladens -Beladezentrum -Beladung/P -Belag/STp -Belagerer/N -Belagerns -Belagerung/P -Belagerungszustnden -Belagerungszustand/T -Belang/EPS -Belanglosigkeit/P -Belastbarkeit -Belastens -Belastung/P -Belastungsanzeige -Belastungsgrad -Belastungsgrenze/N -Belastungsprobe/N -Belastungstest/S -Belastungsunterlagen -Belastungszeugen -Belebens -Belebung/P -Belebungsmanahme/N -Beleg/JST -Belegausdruck -Belegens -Belegnummer -Belegschaft/P -Belegschaftsmitglieder -Belegschaftsvertreter -Belegschaftszunahme -Belegschein/EPT -Belegstelle/N -Belegungsliste/N -Belehrens -Belehrung/P -Beleidigens -Beleidigung/P -Beleidigungsverfahren -Beleihens -Beleihung/P -Beleihungsfhigkeit -Beleihungsgrenze/N -Beleihungsmastbe -Beleihungsrichtlinien -Belesenheit -Beleuchtens -Beleuchtung/P -Beleuchtungskrper -Beleuchtungstechnik -Belfast -Belgien/S -Belgier/FNS -Belgrad/S -Belgrader -Belichtens -Belichtung/P -Belichtungsdauer -Belichtungsmesser/NS -Belichtungstabellen -Belichtungszeit/P -Beliebigkeit -Beliebtheit -Beliebtheitsgrad -Belieferns -Belieferung/P -Belize -Belletristik -Belobigen/JS -Belohnens -Belohnung/P -Belustigens -Belustigung/P -Bemalens -Bemalung/P -Bemaens -Bemaung/P -Bemerkens -Bemerkung/P -Bemessens -Bemessung/P -Bemhens -Bemhung/P -Bemusterns -Bemusterung/P -Ben/S -Benachrichtigens -Benachrichtigung/P -Benachteiligens -Benachteiligung/P -Benchmark/S -Benediktiner/FNS -Benediktinerabtei -Benediktinermnche -Benefiz/EPT -Benehmens -Benelux -Beneluxhfen -Beneluxstaaten -Benennens -Benennung/P -Benetton -Bengel/NS -Benjamin/S -Benommenheit -Benotens -Benotung/P -Benotungssystem/EPS -Bentley/S -Bentzer -Benutzbarkeit -Benutzens -Benutzer/NS -Benutzerebene/N -Benutzerhufigkeit -Benutzerinterface/S -Benutzerkomfort -Benutzernummer -Benutzeroberflche/N -Benutzerprogramm/EPS -Benutzerwnsche/N -Benutzung/P -Benutzungshinweis/EPT -Benutzungsmglichkeit/P -Benutzungsrecht/EPST -Benz -Benzin/S -Benzindmpfe -Benzindiebe -Benzinfass/T -Benzinflecken -Benzingutscheine -Benzinkanister/N -Benzinkosten -Benzinmarken -Benzinmarkt/STp -Benzinmotor/PS -Benzinpreis -Benzinsynthese -Benzintank/S -Benzinuhr/P -Benzinverbrauch/S -Benzinzufuhr -Benzol -Beo/S -Beobachtens -Beobachter/FNS -Beobachterperspektive/N -Beobachtertruppe -Beobachtung/P -Beobachtungsgabe/N -Beobachtungsgruppen -Beobachtungsplatz -Beobachtungsposten/S -Beobachtungsstation/P -Beobachtungstrme -Beobachtungsturm/ST -Bepflanzens -Bepflanzung/P -Beplanken/JS -Bequemlichkeit/P -Bequemlichkeitsdepot/S -Bequemlichkeitsgrnde/N -Beratens -Berater/FNS -Beraterhonorar -Beraterverhltnis/Qq -Beratervertrag/STp -Beratschlager/NS -Beratschlagungsstelle/N -Beratung/P -Beratungsaufgabe/N -Beratungsausschuss/Tp -Beratungsbro/S -Beratungsgegenstnde/N -Beratungsgegenstand/ST -Beratungsgesellschaft/P -Beratungslehrer -Beratungsnotwendigkeit -Beratungsphase/N -Beratungspunkt/EPST -Beratungsraum/STp -Beratungsstelle/N -Beratungsttigkeit/P -Beratungstisch/ST -Beratungsverfahren/S -Beraubens -Beraubung/P -Berauschens -Berauschtheit -Berauschung/P -Berechenbarkeit -Berechenbarkeitstheorie/N -Berechnens -Berechnung/P -Berechnungsergebnis/Qq -Berechnungsfall/Sp -Berechnungsgrundlage/N -Berechnungsmaterial -Berechnungsmethode/N -Berechnungspreise -Berechnungsunterlagen -Berechnungsverfahren/S -Berechnungsvorschriften -Berechtigens -Berechtigung/P -Berechtigungsgrundlagen -Berechtigungsnachweis/PT -Berechtigungsschein/EPST -Beredsamkeit -Bereich/EPST -Bereicherns -Bereicherung/P -Bereichsbegrenzung/P -Bereichsgrenze/N -Bereichsmaximum -Bereichsminimum -Bereichsmitte -Bereichsberschreitung/P -Bereifen/JS -Bereinigens -Bereinigung/P -Bereinigungsprozess/EPT -Bereitens -Bereithaltens -Bereithaltung/P -Bereitschaft/P -Bereitschaftsdienst/EPT -Bereitschaftsleiter -Bereitschaftsmanahme -Bereitschaftsmeldung/P -Bereitschaftspolizist -Bereitstellens -Bereitstellung/P -Bereitstellungsrume/N -Bereitung/P -Bereitwilligkeit -Berg/JST -Bergamt -Bergarbeiter/FNS -Bergarbeiterdorf -Bergarbeiterschaft -Bergarbeiterstreik -Bergbach -Bergbad -Bergbahn -Bergbau/S -Bergbauaktien -Bergbauanwendung -Bergbauausfhrung -Bergbauausrstung/P -Bergbaubereich -Bergbaueinsatz -Bergbauelektronik -Bergbauergebnis/Qq -Bergbauforschung -Bergbaugebiet -Bergbaugehuse -Bergbaugesellschaft/P -Bergbaukomponenten -Bergbaumeinung -Bergbaunachwuchs -Bergbauprmien -Bergbauprodukte -Bergbaustecker -Bergbautarife -Bergbautechnik -Bergbautechnologie -Bergbauten -Bergbauversion/P -Bergbauzulieferer -Bergbauzwecke -Bergbehrde -Bergbesteigung/P -Bergbewohner/FNS -Bergdorf -Bergens -Bergfhrer/NS -Berggasthof -Berggelnde -Berggewerkschaft -Berggipfel -Bergheim -Berghotel -Berghtte -Bergkette/N -Bergkrankheit -Bergkristall/EPS -Bergland -Bergler -Bergleute/N -Berglift -Bergmnner/N -Bergmann -Bergmannsbetreuung -Bergmannsglck -Bergmannslhne -Bergmassiv/EPS -Bergnot -Bergpension -Bergpredigten -Bergrettungsaktion -Bergrettungsdienst -Bergrutsch/EPT -Bergschuh/EPS -Bergschule -Bergspitze -Bergsport -Bergstmme -Bergstationen -Bergsteiger/FNS -Bergsteigerdrama -Bergsteigerei -Bergsturz -Bergungsaktion/P -Bergungsarbeiten -Bergungsexperten -Bergungsflotte -Bergungskapitn -Bergungskommando -Bergungsmanver -Bergungsschiff -Bergungsversuch/E -Bergwlder -Bergwacht -Bergwanderung -Bergwerk/EPS -Bergwerksbesitz -Bergwerksbetriebe -Bergwerksgesellschaft -Bergwerksleitung -Bergwerksmesse -Bergwerksunglck -Bergwerksunternehmen -Bergwerksverein -Bericht/ST -Berichterstatten/JS -Berichterstatter/FNS -Berichtigens -Berichtigung/P -Berichtigungsbuchung/P -Berichtsbnde -Berichtsheft/EPST -Berichtskritik -Berichtszeitraum/S -Beriemen/JS -Berieselns -Berieselung/P -Berieslung/P -Berkeley/S -Berlin/RS -Berliner/FNS -Berlinfrderungsgesetz -Berlinverhandlung/P -Bermudas -Bermudashorts -Bern/GR -Bernadotte/S -Bernd/S -Bernhard/S -Bernhardiner/S -Bernhardt/SW -Bernoulli/S -Bernstein/S -Berserker/S -Bert/S -Berta/S -Bertelsmann -Berthold/S -Bercksichtigung/P -Berhmtheit/P -Berhrens -Berhrung/P -Berhrungsflche/N -Berhrungslinie/N -Berhrungspunkt/EPST -Beruf/JST -Beruferaten -Berufoffiziere -Berufsanfnger/NS -Berufsangabe -Berufsausbildung/P -Berufsausbung -Berufsbekleidung/P -Berufsberater/FNS -Berufsberatung -Berufsbild/RST -Berufsbildung -Berufsbildungsgesetz -Berufsbildungszentrum -Berufsboxen -Berufsboxer/NS -Berufschance/N -Berufserfolg -Berufsfachschule -Berufsfahrer -Berufsfeld/RT -Berufsflugzeugfhrer -Berufsforschung -Berufsfortbildung -Berufsgeheimnis/Qq -Berufsgenossenschaft -Berufsgrnde/N -Berufsgrundbildungsjahr -Berufsgruppe/N -Berufsinstanz -Berufsjahr/EPS -Berufsjubilum -Berufskleidung -Berufskrankheit/P -Berufskunde -Berufslaufbahn -Berufsleben/S -Berufsliste -Berufsmusikern -Berufsoffizier/S -Berufsordnung -Berufsorganisation/P -Berufspraktikum -Berufsradfahrer -Berufsreife -Berufsrisiko -Berufsschichten -Berufsschule/N -Berufsspieler/NS -Berufssportler/S -Berufsstand -Berufstennis -Berufsunfhigkeit -Berufsunfall/Sp -Berufsverbnde -Berufsverband -Berufsverbot -Berufsvereinigung/P -Berufsverkehr/S -Berufsvertretung/P -Berufsvorschulen -Berufswahl -Berufswelt -Berufszeichen -Berufsziel -Berufszweig/EPST -Berufungsgericht/EPST -Berufungsinstanzen -Berufungslisten -Berufungspraktiken -Berufungsrecht/EPST -Berufungsverfahren -Berufungsvorschlge -Beruhigens -Beruhigung/P -Beruhigungsmittel/NS -Beruhigungspillen -Beruhigungstabletten -Beryll -Besnftigens -Besnftigung/P -Bestze/N -Besatz/JRT -Besatzungsangehrigen -Besatzungsbehrden -Besatzungsetat -Besatzungsmchte/N -Besatzungsmacht -Besatzungspersonal -Besatzungsrecht -Besatzungssoldat -Besatzungstruppen -Besatzungszeit -Besatzungszone -Beschdigens -Beschdigung/P -Beschftigens -Beschftigung/P -Beschftigungsdauer -Beschftigungslosigkeit -Beschftigungsmglichkeit/P -Beschftigungsniveau -Beschftigungsprogramm/P -Beschftigungsquote -Beschftigungsrckgang -Beschftigungsverhltnis/Qq -Beschftigungszahl/P -Beschmens -Beschmung/P -Beschaffenheit -Beschaffens -Beschaffung/P -Beschaffungsprogramm -Beschaffungsstelle/N -Beschaffungsverfahren/S -Beschaltens -Beschaltung/P -Beschattens -Beschattung/P -Beschaulichkeit/P -Bescheid/JST -Bescheidenheit -Bescheidens -Bescheinigens -Bescheinigung/P -Bescherens -Bescherung/P -Beschichtens -Beschichtung/P -Beschieens -Beschieung/P -Beschimpfens -Beschimpfung/P -Beschiss -Beschlag/STp -Beschlagenheit -Beschleunigens -Beschleuniger/S -Beschleunigung/P -Beschleunigungskrften -Beschleunigungsmessung -Beschleunigungsvektoren -Beschleunigungsversuch -Beschleunigungswerte -Beschluss/Tp -Beschlussfhigkeit -Beschlussfassen/JS -Beschlussunfhigkeit -Beschneidens -Beschneidung/P -Beschnigens -Beschnigung/P -Beschrnkens -Beschrnktheit/P -Beschrnkung/P -Beschreibens -Beschreibung/P -Beschreibungsformalismen -Beschreibungsmglichkeit/P -Beschreibungssprache/N -Beschreibungstext -Beschriftens -Beschriftung/P -Beschtzer/FNS -Beschuldigen/JS -Beschuss -Beschwerde/N -Beschwerdebrief/EPS -Beschwerderecht -Beschwerdeverfahren -Beschwerens -Beschwerung/P -Beschwichtigens -Beschwichtigung/P -Beschwichtigungspolitik -Beschwrens -Beschwrung/P -Beschwrungsformel/N -Beseitigens -Beseitigung/P -Besen/S -Besenstiel/EPS -Besessenheit -Besetzens -Besetztzeichen/S -Besetzung/P -Besetzungsaktion/P -Besetzungsliste/N -Besichtigens -Besichtigung/P -Besichtigungsfahrten -Besichtigungsflug/STp -Besichtigungsreise/N -Besichtigungsrunde -Besichtigungstermin/EPS -Besiedelns -Besiedelung/P -Besiedlung/P -Besiegens -Besiegung/P -Besinnens -Besinnung/P -Besinnungsfrage -Besinnungslosigkeit -Besitz/JRT -Besitzer/FNS -Besitzergreifen/JS -Besitzerrecht/P -Besitzfirma -Besitzlosigkeit -Besitznachweis/EPT -Besitznahme/N -Besitzstnde/N -Besitzstand -Besitzsteuern -Besitztitel -Besitztmer/N -Besitztum/S -Besitzwechsel -Besoldens -Besoldung/P -Besoldungserhhung -Besoldungsgesetz -Besoldungsgruppe -Besoldungsordnung -Besoldungsproblem/EPS -Besoldungsunterschiede -Besonderheit/P -Besonnenheit -Besorgens -Besorgnis/q -Besorgung/P -Bespannens -Bespannung/P -Bespitzeln/JS -Besprechens -Besprechung/P -Besprechungsgegenstand -Besprechungsnotiz -Besprechungsprotokoll/S -Besserns -Besserung/P -Besserungsanstalt/P -Besserungshoffnung/P -Besserwisser/NS -Bestnde/N -Bestndigkeit -Bestrkens -Bestrkung/P -Besttigens -Besttigung/P -Besttigungsanforderung -Besttigungsvermerk/EPS -Bestallen/JS -Bestandes -Bestands -Bestandsnderung/P -Bestandsaufnahme/N -Bestandserhhung/P -Bestandsliste/N -Bestandsrenten -Bestandssicherung -Bestandsberblick -Bestandsvernderung/P -Bestandsverminderung/P -Bestandteil/EPS -Bestattens -Bestattung/P -Bestattungsamt -Bestattungsinstitut/EPST -Bestattungsvorsorge -Bestechens -Bestechlichkeit -Bestechung/P -Bestechungsgeld/RST -Bestechungsprozess/EPT -Besteck/EPT -Besteckindustrie -Bestehens -Besteigens -Besteigung/P -Bestellnderung -Bestellbedingung/P -Bestellbezeichnung/P -Bestellbcher/N -Bestellbuch -Bestelleingang -Bestellens -Besteller/NS -Bestellformular/EPS -Bestellliste/N -Bestellnr -Bestellnr. -Bestellnummer/N -Bestellschein/EPS -Bestelltexten -Bestellumfngen -Bestellung/P -Bestellzettel/NS -Besteuerns -Besteuerung/P -Besteuerungsinteresse -Besteuerungspraktiken -Besteuerungsrechte -Besteuerungsverfahren/S -Bestie/N -Bestimmens -Bestimmtheit/P -Bestimmung/P -Bestimmungsbuch -Bestimmungsgrnde -Bestimmungshafen -Bestimmungslndern -Bestimmungsland/T -Bestimmungsort/EPST -Bestleistung/P -Bestnr -Bestnr. -Bestrafens -Bestrafung/P -Bestrahlens -Bestrahlung/P -Bestrahlungsgert -Bestrebens -Bestrebung/P -Bestseller -Bestckens -Bestckung/P -Bestckungsoption/P -Bestckungsplne -Bestckungsplan -Bestckungsvarianten -Bestckungsversion/P -Bestrmens -Bestrmung/P -Bestrzens -Bestrzung/P -Bestuhlen/JS -Bestzeit/P -Besuch/RST -Besucher/FNS -Besucherstamm -Besucherstrom -Besucherzahlen -Besucherziffern -Besuchsbericht -Besuchsfahrten -Besuchsgenehmigung/P -Besuchsperiode -Besuchsprogramm/S -Besuchsprotokoll -Besuchsregelung/P -Besuchstage -Besuchstermin -Besuchsverbote -Besuchszeit/P -Besuchsziel -Bettigens -Bettigung/P -Bettigungsfeld/S -Bettigungskolben -Bettigungsmglichkeit/P -Bettigungsschritten -Betubens -Betubung/P -Betubungsmittel/NS -Betaversion/P -Beteiligens -Beteiligung/P -Beteiligungsangebot/T -Beteiligungsbesitz -Beteiligungsertrag/STp -Beteiligungsfirma -Beteiligungsformen -Beteiligungskapital -Beteiligungsmglichkeit/P -Beteiligungspolitik -Beteiligungsquote -Beteiligungsrechte -Beteiligungstitel -Betel -Beteuerns -Beteuerung/P -Betrens -Betrung/P -Betonarten -Betonbalken -Betonbandeisen -Betondamm -Betondecke/N -Betondruck/S -Betondruckregelung -Betoneinfllung -Betonens -Betonfrderleistung -Betonfrdermenge -Betonierdruck -Betoniereinrichtung -Betoniergeschwindigkeit -Betonierleistung -Betonierregelung -Betoniersteuerung -Betoniersystem -Betonkltzen -Betonmauer -Betonmischer -Betonpfeiler -Betonpiste -Betonplatten -Betonpumpe -Betonpumpenverstellung -Betonregelung -Betons -Betonsorten -Betonstbe -Betonstahl -Betonturm -Betonumrandung -Betonung/P -Betonwarenfabrik -Betonwerk -Betonwste -Betracht/JR -Betrachtens -Betrachter/FNS -Betrachtungseinheit -Betrachtungsflchen -Betrachtungsweise/N -Betrag/STp -Betragssumme/N -Betrauens -Betrauung/P -Betreff -Betreibens -Betreiber/NS -Betretens -Betretung/P -Betreuens -Betreuer/FNS -Betreuung/P -Betreuungsbetrieb -Betreuungsgehilfen -Betriebe/S -Betriebs -Betriebsablauf/Sp -Betriebsabmachung/P -Betriebsabschluss/Tp -Betriebsabteilung/P -Betriebsamkeit -Betriebsangehrige/NR -Betriebsanlage/N -Betriebsanleitung/P -Betriebsanzeige/N -Betriebsart/P -Betriebsausflug/STp -Betriebsausgabe/N -Betriebsbahnhof -Betriebsbedingung/P -Betriebsbereich/EPS -Betriebsbereitschaft -Betriebsbeschreibung/P -Betriebsbuchhalter -Betriebsdaten -Betriebsdatenerfassung -Betriebsdauer -Betriebsdirektor/P -Betriebseinkommen -Betriebseinnahmen -Betriebseinrichtung/P -Betriebserde -Betriebserfahrung -Betriebsergebnis/Qq -Betriebsertrag/STp -Betriebsfahrt -Betriebsferien -Betriebsfest/EPST -Betriebsforderung -Betriebsgebude/N -Betriebsgeheimnis/Qq -Betriebsgerichte -Betriebsgesellschaft/P -Betriebsgre/N -Betriebsgrundstck -Betriebshalle/N -Betriebshinweis/EPT -Betriebshygiene -Betriebsingenieur -Betriebsinhaber/NS -Betriebsjahren -Betriebskalkulation -Betriebskapital -Betriebsklima/S -Betriebskollegen -Betriebskoordinaten -Betriebskosten -Betriebslehre -Betriebsleiter/NS -Betriebsleitung/P -Betriebsmaterial -Betriebsmeister -Betriebsmittel/NS -Betriebsmodus -Betriebsneubau -Betriebsorganisation/P -Betriebspanne -Betriebspannung -Betriebsparameter -Betriebspause/N -Betriebsprogramme -Betriebsprfer -Betriebsprfung/P -Betriebspsychologie -Betriebsrte/N -Betriebsrat/ST -Betriebsratmitglied -Betriebsratsmitglieder -Betriebsratssitzung/P -Betriebsraum/STp -Betriebsreinhaltung -Betriebsrentenansprche -Betriebsrisiko/S -Betriebsschlieung -Betriebsschluss -Betriebsschreinereien -Betriebssicherheit -Betriebssituation/P -Betriebssoftware -Betriebsspannung/P -Betriebssttte/N -Betriebsstrung/P -Betriebsstoffe/N -Betriebsstopp -Betriebsstrom/S -Betriebsstunden -Betriebsstundenzhler -Betriebssystem/EPS -Betriebssystemfehler -Betriebstechnik -Betriebsteile -Betriebstemperatur -Betriebsberschuss/Tp -Betriebsberwachung -Betriebsumgebung/P -Betriebsumstnden -Betriebsunfall/Sp -Betriebsunterbrechung/P -Betriebsurlaub -Betriebsvernderung -Betriebsverfassungsgesetz -Betriebsverhalten -Betriebsverlagerungsplne -Betriebsverlust/EPS -Betriebsvermgen/S -Betriebsversammlung/P -Betriebsversuche -Betriebsweise/N -Betriebswirt/EFPST -Betriebswirtschaft -Betriebswirtschaftler/N -Betriebswirtschaftslehre -Betriebswochen -Betriebszeit/P -Betriebszugehrigkeit -Betriebszulassung -Betriebszustnde/N -Betriebszustand/ST -Betriebszweig/EPS -Betriebverlagerung -Betroffenheit -Betroffensein -Betrbnis/q -Betrger/FNS -Betrgerei/P -Betruges -Betrugs -Betrugsaktionen -Betrugsdezernat -Betrugsmanver -Betrugsskandal -Betrunkenheit -Betstunde/N -Bett/MT -Bettauflage/N -Bettbezug/STp -Bettdecke/N -Bettelbrief/EPS -Bettelei -Bettelgang -Bettelmnch/EPST -Bettelorganisation/P -Betteltour/P -Bettenbau -Bettfeder/N -Bettflaschen -Bettgenossin -Bettgestell/PS -Bettina/S -Bettlaken/S -Bettlektre -Bettler/NS -Bettnsser/FN -Bettnachbar/FNS -Bettpreise -Bettsitten -Betttruhe -Betttcher/N -Betttuch/S -Bettberzug/STp -Bettwsche -Betty/S -Bettzeug -Beugehaft -Beugens -Beugung/P -Beugungsform/P -Beule/N -Beunruhigens -Beunruhigung/P -Beurkundens -Beurkundung/P -Beurlaubens -Beurlaubung/P -Beurteilens -Beurteilung/P -Beurteilungskriterien -Beutel/S -Beutelfabrik -Beutelschneider/NS -Beutetier -Bevlkerns -Bevlkerung/P -Bevlkerungsanteil -Bevlkerungsbaum/STp -Bevlkerungsdichte -Bevlkerungsdruck -Bevlkerungsdurchschnitt -Bevlkerungsexplosion/P -Bevlkerungsfragen -Bevlkerungsgruppen -Bevlkerungshchststand -Bevlkerungskreise/N -Bevlkerungsmehrheit -Bevlkerungspolitik -Bevlkerungsproblem/EPS -Bevlkerungsschichten -Bevlkerungsschwund -Bevlkerungsberschuss/Tp -Bevlkerungswachstum/S -Bevlkerungsziffer -Bevlkerungszuwachs -Bevollmchtigens -Bevollmchtigung/P -Bevormundens -Bevormundung/P -Bevorzugens -Bevorzugung/P -Bewhrens -Bewhrung/P -Bewhrungsfristen -Bewhrungshilfe -Bewhrungsprobe/N -Bewltigens -Bewltigung/P -Bewsserns -Bewsserung/P -Bewsserungsanlagen -Bewsserungsnetz -Bewsserungsprojekte -Bewachens -Bewacher/NS -Bewachung/P -Bewachungsketten -Bewachungspersonal -Bewaffnens -Bewaffnung/P -Bewahrens -Bewahrer/NS -Bewahrung/P -Bewandtnis/q -Bewegens -Beweggrnde/N -Beweggrund/ST -Beweglichkeit -Bewegung/P -Bewegungsablauf/Sp -Bewegungsart/P -Bewegungscharakteristik -Bewegungseindruck/S -Bewegungsfreiheit -Bewegungsgleichung/P -Bewegungskette/N -Bewegungskorrelation -Bewegungspause -Bewegungsprofilen -Bewegungsrichtung/P -Bewegungssensoren -Bewegungssignale -Bewegungsspielraum/Sp -Bewegungssteuerung -Bewegungsstopp -Bewegungsunterbrechung -Beweihrucherns -Beweihrucherung/P -Beweis/RT -Beweisaufnahme/N -Beweisbarkeit -Beweisens -Beweiser/NS -Beweisfhrung/P -Beweisidee/N -Beweiskrfte/N -Beweiskraft -Beweismaterial/S -Beweismaterialien -Beweisschritt/EPS -Beweissicherung -Beweisstck/EPT -Beweissystem/EPS -Beweisverpflichtungen -Bewerbens -Bewerber/FNS -Bewerberangebot -Bewerbung/P -Bewerbungsfrist/P -Bewerbungsschreiben/S -Bewerbungsunterlagen -Bewertens -Bewertung/P -Bewertungsgutachten/S -Bewertungskriterien -Bewertungsmastbe/N -Bewertungsmethode/N -Bewertungsschema -Bewertungsverfahren/S -Bewertungsverlust -Bewilligens -Bewilligung/P -Bewilligungsausschuss/Tp -Bewirtens -Bewirtschaftens -Bewirtschaftung/P -Bewirtung/P -Bewirtungskosten -Bewlken/JS -Bewlkungszunahme -Bewohnbarkeit -Bewohner/FNS -Bewunderer/NS -Bewunderin/F -Bewunderns -Bewunderung/P -Bewunderungsrufe -Bewusstheit -Bewusstlosigkeit -Bewusstsein/S -Bewusstseinsbildung -Bezahlens -Bezahlung/P -Bezauberns -Bezauberung/P -Bezeichnens -Bezeichner/NS -Bezeichnung/P -Bezeugens -Bezeugung/P -Beziehens -Bezieher -Beziehung/P -Bezierkurve/N -Bezirk/EPS -Bezirksmter -Bezirksausgaben -Bezirksdirektion/P -Bezirksdirektor -Bezirksebene -Bezirksliga -Bezirksorganisation/P -Bezirksparade -Bezirksrte -Bezirksrat -Bezirksregierung -Bezirkssekretr -Bezirkssparkasse -Bezirkstierschau -Bezirksverband -Bezirksversammlung -Bezirksvertreter -Bezirksvorsitzende -Bezug/STp -Bezugnahme -Bezugsfrist/P -Bezugsmae/N -Bezugsmglichkeit/P -Bezugspotential/EPS -Bezugspotenzial/EPS -Bezugspreis/EPT -Bezugspunkt/EPST -Bezugsquelle/N -Bezugsquellennachweis/EPT -Bezugsrahmen/S -Bezugsrecht/EPST -Bezugsschein/EPS -Bezugsspannung -Bezugssystem/EPS -Bezwingens -Bezwinger/FNS -Bezwingung/P -Biafra -Biarritz -Bias -Bibel/N -Bibelbearbeitung/P -Bibelkreis/EPT -Bibelsprchen -Bibelspruch/S -Biber/N -Biberpelz -Bibliographie/Nf -Bibliothek/P -Bibliothekar/EFPS -Bibliotheksfunktion/P -Bibliotheksgeschichte -Biedenkopf/S -Biedermeiersessel -Biegens -Biegsamkeit -Biegung/P -Bielefeld -Biene/N -Bienenhaus/Tp -Bienenknigin/F -Bienenschlag/STp -Bienenschwrmen -Bienenschwarm/T -Bienenstcken -Bienenstock/T -Bienenwaben -Bienenwachs/T -Bienenzchter/FNS -Bier/EPS -Bierabend -Bierbar -Bierbrauer/NS -Bierbrauereien -Bierdeckeln -Bierfsser/N -Bierfass/MT -Biergarten -Bierglsern -Bierglas/T -Bierimport -Bierkonzern -Bierkrug/STp -Bierlachen -Bierlokale -Biermarkt/STp -Bierpreiserhhung -Bierschnke -Bierschwemme -Biersteuer -Biersteuergesetz -Bierstuben -Biertisch -Biertrinker -Bierwirtschaft/P -Bierzelt -Biest/RT -Bieter/FGNS -Bigamie -Bigband/S -Bijektion/P -Bijektivitt -Bikini/S -Bilanz/P -Bilanzbesprechung -Bilanzbuchhalter -Bilanzerstellung -Bilanzierens -Bilanzierung/P -Bilanzierungsgrnden -Bilanzierungsrichtlinien -Bilanzkurs/EPT -Bilanzposition/P -Bilanzrelationen -Bilanzsicherheit -Bilanzsitzung -Bilanzstellung -Bilanzstichtage -Bilanzsumme -Bilanztermin -Bilanzunterlagen -Bilanzverlust -Bilanzverschleierung/P -Bilanzvolumen -Bilanzzahlen -Bild/JMRT -Bildaufbau/S -Bildausdruck -Bildausschnitt/EPS -Bildbnde/N -Bildband/S -Bildbeitrag/STp -Bildbereich/EPS -Bildberichterstatter/N -Bilddarstellung/P -Bilddruck -Bildens -Bilderbogen/S -Bilderbcher/N -Bilderbuch/T -Bilderfolge/N -Bildergeschichte/N -Bilderkasten -Bilderrtsel/N -Bilderrahmen/S -Bilderreichtum -Bildersaal -Bilderschau -Bilderschrift -Bilderskandal -Bilderstrmer/N -Bildersturm -Bilderteil -Bildflche/N -Bildflimmern -Bildfolge/N -Bildfragment/EPS -Bildgeschehen -Bildgeschichte/N -Bildgieerei -Bildhauer/FNS -Bildhauerei -Bildinhalt/EPST -Bildlegende -Bildmaterial/S -Bildnis/Qq -Bildprospekt/EPST -Bildpunkt/EPST -Bildqualitt/P -Bildraum/STp -Bildreihe -Bildrhre/N -Bildrhrenhals -Bildromane -Bildschrfe -Bildschema -Bildschirm/EPST -Bildschirmanzeige/N -Bildschirmauflsung/P -Bildschirmaufteilung -Bildschirmausfall -Bildschirmausgabe -Bildschirmbereiche -Bildschirmdarstellung/P -Bildschirmeingabe -Bildschirmeinheit/P -Bildschirmfeld/RST -Bildschirmflche/N -Bildschirmfunktionen -Bildschirmgehuse/S -Bildschirmgerte -Bildschirmgrafik -Bildschirmgre -Bildschirmgruppen -Bildschirmliebling -Bildschirmmaske/N -Bildschirmmeldung/P -Bildschirmprogramm/EPS -Bildschirmrand -Bildschirmseite/N -Bildschirmsoftware -Bildschirmtext -Bildschirmumschaltung -Bildschirmunterhaltung -Bildschirmzeile -Bildsendung -Bildstrung/P -Bildstreifen/S -Bildtafel/N -Bildteppiche/N -Bildbertragung/P -Bildungsanstalt/P -Bildungsbeamten -Bildungsbedrfnis/Qq -Bildungsbehrden -Bildungsberatung/P -Bildungschance/N -Bildungseinrichtung/P -Bildungsfrderung -Bildungsgesamtplan -Bildungsgesetz/EPT -Bildungsgrad/EPS -Bildungsgut -Bildungshilfe -Bildungshunger -Bildungsinteresse -Bildungsinvestitionen -Bildungskapazitten -Bildungskommission -Bildungslcke/N -Bildungsminister -Bildungsmisere -Bildungsmittel -Bildungsnotstand -Bildungspolitik -Bildungsprogramm/EPS -Bildungsprojekt -Bildungsrate -Bildungsreform -Bildungsreserven -Bildungsroman -Bildungssttte/N -Bildungsstand -Bildungsstelle -Bildungsstoff -Bildungsveranstaltung/P -Bildungsweg/EPS -Bildungswesen/S -Bildungswilligen -Bildungszentren -Bildungsziele -Bildungszwecke -Bildvernderung -Bildverarbeitung -Bildverarbeitungsrechner -Bildverzeichnis/Qq -Bildverzerrung -Bildwandler -Bildwechsel -Bildwerke -Bildwiederholfrequenz -Bildzeitung -Bildzuschrift -Bill/S -Billard -Billardkugel/N -Billet/S -Billiarde/N -Billigens -Billigfliegern -Billiggerten -Billiggtern -Billiglsung/P -Billigsoftware -Billigstkaufauftrge -Billigung/P -Billion/P -Billy/S -Binrbaum/Sp -Binrcode/S -Binrdatei/P -Binrdaten -Binrformat/EPS -Binrwort/EPS -Binaries -Binary -Bindegewebe -Bindeglied/RT -Bindehaut -Bindehautentzndung/P -Bindehautreizung -Bindemittel/S -Bindens -Bindeplatz -Binder/N -Bindestrich/EPST -Bindewrter/N -Bindewort/ST -Bindfden -Bindfaden -Bindung/P -Bindungsbereich/EPS -Bindungsprfgert -Bindungsregel/N -Bindungsrelation/P -Bindungsumgebung/P -Bindungsverflschung/P -Bingen -Binnenformen -Binnengewsser/N -Binnengrenze/N -Binnenhfen -Binnenhafen/S -Binnenhandel/S -Binnenklima -Binnenlnder -Binnenland/T -Binnenmarkt/STp -Binnenmeer -Binnennachfrage -Binnenschiff/EPS -Binnenschiffe/NR -Binnenschifffahrt/P -Binnenschifffahrtsstrae/N -Binnenschifffahrtsstreit -Binnenschiffsflotte -Binnensee/NS -Binnenverkehr/S -Binnenwasserstrae/N -Binnenzlle -Binnenzollsenkung -Binom/EPS -Binominialkoeffizient/P -Binominialreihe/N -Binse/N -Binsenweisheit/P -Biochemie -Biochemiker/FNS -Biograph/P -Biographie/Nf -Bioladen -Biologe/FN -Biologie -Biomasse -Biopsie/N -Biorhythmus -Biosatellit -Biotechnologie -Biotop/EPS -Biplot/S -Birgit/S -Birke/N -Birkenau -Birmingham -Birnbaum/S -Birne/N -Bischfe/N -Bischof/S -Bischofsamt/T -Bischofskollegen -Bischofskonferenz -Bischofsprotest -Bischofssitz -Bischofsstadt -Bischofsverweser -Bischofswahlen -Bischofswahlgesetz -Bisimulation -Biskaya -Biskuit/S -Bismarck/S -Bismut/S -Bisse/GS -Bistmer/N -Bistum/S -Bistumsblatt -Bistumsgrenze/N -Bit/S -Bitbus/Qq -Bitlnge/N -Bitmap/S -Bitmaske/N -Bitmaskierung -Bitmuster -Bitnummer/N -Bitpattern -Bitport/S -Bitstrom/T -Bittbrief/EPS -Bitterkeit/P -Bitternis/q -Bittgesuch/EPT -Bittschreiben/S -Bittschrift/P -Bittsteller/FNS -Bitumen -Bitzuordnung -Biwak/S -Bizeps -Bjrn/S -Blhens -Blhung/P -Blschen/S -Blser/N -Blserakzente -Blserquintett -Blsse -Blsshuhn/S -Blttchen/S -Bltterteig/EPT -Bltterwald -Blackjack -Blacklist/S -Blamage/N -Blankoscheck -Blankovollmachten -Blasenfreiheit -Blasinstrument/EPST -Blaskapelle/N -Blatt/T -Blattanfang/S -Blatteinzug/Sp -Blattgrn/S -Blattluse/N -Blattlaus -Blattrand/ST -Blattvorschub/S -Blaubeere/N -Blaubeertorte -Blaupause/N -Blautanne/N -Blauwal/PS -Blech/ST -Blechbchse/N -Blecheimer/N -Blecheinleger -Blechfrontplatte -Blechgehuse -Blechgeschirr/ST -Blechhtte/N -Blechinstrument/EPT -Blechkanister/N -Blechkonstruktion/P -Blechlaschen -Blechnapf/S -Blechschaden/S -Blechscheren -Blechstreifen -Blechtablett -Blechteile -Blechwalzwerk -Blechwarenindustrie -Blei/S -Bleiberecht/S -Bleikugel -Bleioxyd/S -Bleisoldaten -Bleistift/EPST -Bleistiftanspitzer/N -Bleivergiftung -Blendens -Blendung/P -Blesshuhn/S -Blickes -Blickfnge/NR -Blickfnger/NS -Blickfang/STp -Blickfeld/RST -Blickpunkt/EPST -Blickrichtung/P -Blicks -Blickwinkel/NS -Blinddrme/N -Blinddarm/S -Blindenanstalt -Blindenarbeit -Blindenbcherei -Blindenhund/EPT -Blindenschrift -Blindflug -Blindgnger/NS -Blindheit -Blindschleiche/N -Blinkalgorithmus -Blinkanzeige/N -Blinker -Blinkleuchte/N -Blinklicht/R -Blinkwarnung -Blitz/T -Blitzableiter/NS -Blitzaktion/P -Blitzbesuch -Blitzeinschlag/STp -Blitzkarriere/N -Blitzlicht/RT -Blitzlichtaufnahmen -Blitzpistole -Blitzschlag/STp -Blitzstrahl -Blitzturniere -Blitzverfahren -Blitzwrterbcher -Blitzwrterbuch -Blitzzug/STp -Blcke/N -Bldelei/P -Bldheit/P -Bldian -Bldsinn/S -Ble/N -Blockade/N -Blockadezeit -Blockanfang/S -Blockbefehle/N -Blockbildung/P -Blockbuster -Blockes -Blockflte/N -Blockform -Blockfunktion/P -Blockgrafik -Blockgraphik -Blockhaus/Tp -Blockierens -Blockierung/P -Blockkondensator/P -Blockmarkierung/P -Blockprfzeichen -Blocks -Blocksatz -Blockschachtelung -Blockschaltbild/RST -Blockschema -Blockstruktur -Blocktastatur -Blondine/N -Blolegens -Blolegung/P -Blostellens -Blostellung/P -Blouson/S -Blmchen/S -Blmlein -Blte/N -Bltennektar -Bltenstaub -Bltezeit -Bluejeans -Blues -Bluff -Blume/N -Blumenbeet/E -Blumenbindearbeiten -Blumenbukett -Blumenfest -Blumenfrau -Blumengaben -Blumengebiete -Blumengeschft/ET -Blumenhndler/N -Blumenksten -Blumenketten -Blumenkinder -Blumenkohl -Blumenkrnze -Blumenladen -Blumenpracht -Blumenriviera -Blumenschmuck -Blumenstcke -Blumenstrue -Blumenstrau/T -Blumentpfe/N -Blumentopf/ST -Bluse/N -Blut/JST -Blutabnahme -Blutarmut -Blutbder/N -Blutbad/ST -Blutbahn -Blutbank -Blutbild/RST -Blutdruck/S -Blutdruckmesser -Blutegel/S -Blutentnahme -Bluterguss/Tp -Blutgefe/N -Blutgefzellen -Blutgerinnsel/NS -Blutgruppe/N -Blutgruppenfaktor -Bluthochzeit -Bluthunde -Blutkreislauf/Sp -Blutlache/N -Blutmischung -Blutopfer -Blutpftze -Blutprobe/N -Blutprobenuntersuchung -Blutsauerstoff -Blutschnder/S -Blutspende/NR -Blutspendenaktionen -Blutspender/NS -Blutspenderschaft -Blutspuren -Blutsturz -Blutsverwandten -Blutsverwandtschaft/P -Bluttat -Bluttransfusion/P -Blutuntersuchung -Blutvergieen -Blutvergiftung/P -Blutverlust/EPT -Blutwrste -Blutzirkulation -Blutzucker -Blutzuckergehalt -B/EP -Bblingen -Bcke/N -Bden -Bgen -Bhmen -Bllerschuss/Tp -Brse/N -Brsenabteilung -Brsenangestellten -Brsenauftrge -Brsenausschuss/Tp -Brsenaussichten -Brsenberater -Brsenbericht/ET -Brsenbltter/N -Brsenblattanzeige -Brsenblattes -Brsenbrief -Brsencrash -Brsendaten -Brsendesaster -Brsendiensten -Brsendingen -Brseneinbrchen -Brsenentscheidung/P -Brsenentwicklung -Brseneuphorie -Brsengang/S -Brsengerchten -Brsengeschft/ET -Brsengeschichte -Brsengesetz -Brsengewinne/R -Brsenhndler -Brsenhausse -Brsenindex/T -Brsenjahre -Brsenjournalist -Brsenkrach -Brsenkurs/ET -Brsenlage -Brsenmakler/S -Brsenmodell -Brsennotierung/P -Brsenpapiere -Brsenpapiers -Brsenpflichtblatt -Brsenpltze -Brsenplatz -Brsenpreise/N -Brsenprospekt -Brsenpublikationen -Brsensaal -Brsenschlusses -Brsenschwche -Brsenspekulant/P -Brsenspekulation/P -Brsenstunde -Brsentage/N -Brsentendenz -Brsentrend -Brsenumstze -Brsenverein/S -Brsenverfassung -Brsenverlaufs -Brsenwerten -Brsenwoche -Brsenzeit/P -Brsenzeitung -Brsenzettel/NS -Brsianer/FNS -Bsartigkeit/P -Bschung/P -Bschungsprofilierung -Bsewicht/EPT -Bswilligkeit -Boa/S -Bob/S -Bobfahren -Bobkonstruktion -Bobrennen -Bobverband/T -Boccia -Bocciakugeln -Bochum/R -Bock/ST -Bockbier -Bockfu/T -Bocksprnge/N -Bocksprung/S -Bockwrste/N -Bockwurst -Bocuse/S -Boden/S -Bodenaushub/S -Bodenbearbeitungsgert/P -Bodenbelag/STp -Bodenbesteuerung -Bodenbewertung -Bodenbewirtschaftung -Bodenblech/EPS -Bodenerhebung/P -Bodenfeind/E -Bodenfliesen -Bodenfrostgrenze -Bodengehuse -Bodengte -Bodenkammer/N -Bodenkr -Bodenlage -Bodenmeiel/S -Bodennhe -Bodenniveau/S -Bodenpersonal/S -Bodenplatte/N -Bodenpreis/EPT -Bodenprobe/N -Bodenrakete -Bodenreform -Bodenreformgesetz -Bodenschtze/N -Bodenschatz/T -Bodensee/S -Bodenseeraum/ST -Bodenstation/P -Bodentrockenheit -Bodenturnen/S -Bodenversuch/E -Bodenwelle/N -Bodenwert/EPST -Boeing -Bogenfenster/NS -Bogengang/Tp -Bogenlampen -Bogenma/ET -Bogens -Bogota -Bohle/N -Bohne/N -Bohnenkaffee/S -Bohnenstange/N -Bohr/JRS -Bohrachse -Bohranlage/N -Bohrantrieb/S -Bohrbetrieb -Bohrens -Bohrer/NS -Bohrgebiet -Bohrgert -Bohrgesellschaften -Bohrgestnge/NS -Bohrhaken/S -Bohrinsel -Bohrkatze -Bohrkopf/S -Bohrkopfantrieb -Bohrkopfglocke -Bohrkopfklappen -Bohrkopfmittelpunkt -Bohrkopfradius -Bohrkopfvolumen -Bohrkopfwinkel -Bohrlafette -Bohrlcher -Bohrloch -Bohrmaschine/N -Bohrprogramm -Bohrstange/N -Bohrtrme/N -Bohrturm -Bohrvorhaben -Bohrvorschub/S -Bohrwagen -Boiler/NS -Boje/N -Bolero -Bolivien -Bollwerk/ST -Bologna -Bolognese -Bolschewik/P -Bolschewiki -Bolschewist/P -Bolschoi/S -Boltzmann/S -Bolzano/S -Bolzen/S -Bombardement/S -Bombardierens -Bombardierung/P -Bombay -Bombe/NR -Bombenabwurf -Bombenalarm -Bombenangriff/PS -Bombenangst -Bombenanschlag/STp -Bombenattentat/E -Bombenaufschlag/STp -Bombenerfolge/NS -Bombenexplosionen -Bombenflug/Sp -Bombenflugzeug -Bombenform -Bombengeschft/EPT -Bombenjungen -Bombenkampagne -Bombenleger -Bombenopfer -Bombenschuss/Tp -Bombenspuren -Bombenstimmung -Bombenteppichen -Bombenterror -Bombenverdienste -Bombenwerfer -Bomber/S -Bomberkommando -Bomberpilot -Bon/NS -Bonbedrucken -Bonbon/S -Bonboniere/N -Bonbonniere/N -Bondertrge -Bondhandel -Bondinhaber -Bondkurse -Bondmarkt/Tp -Bondportefeuille -Bondpreis/E -Bondrucker/NS -Bonerkennung -Bonerkennungslcher -Bonerkennungsloch/T -Bongo -Bonieren -Bonifikation/P -Bonittsabwertung/P -Bonittsbewertung/P -Bonittsprfung/P -Bonlnge/N -Bonmot -Bonn/RS -Bonpapier -Bonsai -Bonsynchronisierung -Bonus -Bonze/N -Bonzeile -Boogie -Booklet/S -Boom/S -Boomgrnden -Boomkinder -Boomphase -Boomzeiten -Boot/ST -Bootdiskette/N -Bootfahren -Bootimage/S -Bootkonzept/EPS -Bootmanager/NS -Bootmechanismus -Bootmen/S -Bootparameter/NS -Bootphase -Bootprompt/S -Bootreihenfolge -Bootsbau -Bootsbaumeister -Bootsektor/PS -Bootsfahrt/P -Bootsfhrers -Bootsgattung/P -Bootshaus/Tp -Bootsklassen -Bootsmnner/N -Bootsmann -Bootsrumpf -Bootsschau -Bootsschuppen -Bootstrapping -Bootstrip -Bootstrmmer -Bootsvermieter -Bootvorgang -Bord -Bordeaux -Bordelektronik -Bordell/EPS -Bordflugzeug/EPS -Bordfunker/FNS -Bordhund -Bordmechaniker/FNS -Bordstein/EPS -Bordre/N -Bordvorfhrung/P -Bordwnde -Bordwaffen -Boris -Borke/N -Borkenkfer -Borland -Borste/N -Borte/N -Borussia -Bosch -Bosheit/P -Bosnien/S -Bosporus -Boss/EPT -Boston -Botanik/R -Botaniker/FNS -Botanikstunde -Botank -Bote/FG -Botendienst/EPT -Botenflieger -Botengang/STp -Botschaft/PR -Botschafter/FNS -Botschafteraustausch -Botschaftergesprch/E -Botschafterkonferenz -Botschafterposten -Botschafterwechsel -Botschaftsangestellten -Botschaftsarztes -Botschaftsmitglieds -Botschaftspersonal -Botschaftsportal -Botschaftssprecher -Bottich/EPS -Boucl/S -Bougainville -Bouillabaisse -Bouillon -Bouillonwrfel -Boulevard/S -Boulevardlustspiel -Boulevardpresse -Boulevardzeitung -Bourbone/N -Bourgogne -Bourre/S -Boutique/N -Bowiemesser -Bowle -Bowling -Box/R -Boxer/FNS -Boxeraufstand -Boxerhund -Boxeuropameister -Boxfans -Boxhandschuh -Boxheld -Boxidol -Boxkmpfe/N -Boxkampftag -Boxlizenz -Boxmarkt/ST -Boxring -Boxsaison -Boxsport/S -Boxtitel -Boxunion -Boxveranstaltung -Boxverband/T -Boxweltmeister -Boy/S -Boykott/S -Boykottpolitik -Bozener -Brnde/N -Bruche/GN -Bruchen/G -Brute/N -Brutigam/S -Brabant -Brachland -Brackwasser -Brahmane/N -Brahmanentum -Brahmanismus -Brahms -Brainstorming/S -Branche/N -Branchendaten -Branchendurchschnitt -Branchenentwicklung/P -Branchenerfahrener -Branchenerfahrung/P -Branchenfhrer -Branchengliederung -Branchenkenntnis/q -Branchenkollegen -Branchenkreisen -Branchenrendite -Branchenverzeichnis/Qq -Brand/JS -Brandblase/N -Brandenburg/R -Brandfackel -Brandflecken/S -Brandgefahr -Brandgerche/N -Brandgeruch -Brandmal/EPT -Brandmalerei -Brandmarken -Brandmarkung -Brandmauer/N -Brandplatz -Brandreden -Brandsalbe -Brandschden -Brandschaden/S -Brandsohle/N -Brandsttte -Brandstelle/N -Brandstifter/FNS -Brandstiftung/P -Brandt/SW -Brandungswelle/N -Brandursachen -Brandwunde/N -Brandzeichen -Branntwein/S -Branntweinbrennerei/P -Branntweinsteuer -Branntweinsteuersatzes -Branntweinvorrte -Brasilianer/FNS -Brasilien -Bratpfel -Bratapfel/S -Bratkartoffeln -Bratpfanne/N -Bratschenkonzert -Bratspie/EPT -Bratwrste/N -Bratwurst -Braubeteiligung/P -Brauch/GST -Brauchbarkeit -Brauchs/G -Brauchtum -Brauerbund -Brauerei/P -Brauereiaktien -Brauereibesitzer -Brauereifonds -Brauereigewerbe/S -Braugerste -Braugewerbe/S -Braumeister -Braunhemden -Braunkohle -Braunkohlenlieferung/P -Braunkohlenwerk -Braunkohlesand -Braunschweig/S -Braunschweiger/S -Braunstein -Brausebad -Brausepulver/NS -Brausttte -Brautausstattung -Brautfhrer/NS -Brautgemach -Brautjungfern -Brautkleid/RT -Brautleute -Brautmutter -Brautnchten -Brautnacht -Brautpaar/EPS -Brautschau -Brautschleier/NS -Brautvater -Brautwerber -Brauwirtschaft -Bravour -Bravourstck -Bravourstckchen -Bravur -Breakcontroller -Breaksignal/E -Brecheisen/S -Brechens/G -Brecher/NS -Brechmittel/NS -Brechstange/N -Brechung/P -Brechungsindex -Brechungswinkel/N -Bredouille -Bregenz -Brei/EPS -Breisach -Breitbandigkeit -Breitbandkabelnetz/EP -Breitbandnetzwerk -Breitengrad/EPST -Breitenkreis/EPT -Breitenleistung -Breitensport/S -Breitschrift -Breitseite/N -Breitwand -Bremen/S -Bremer/FNS -Bremerhaven/S -Bremsabstnde -Bremsaktion/P -Bremsbelag/STp -Bremseffekt -Bremsens -Bremser/S -Bremsfunktion/P -Bremskltze/N -Bremsklotz -Bremskurs -Bremslicht/R -Bremsmanver -Bremspedal/PS -Bremsprobe -Bremsspur/P -Bremsstrecke -Bremsung/P -Bremsventil/EPS -Bremsversuch/EPS -Bremsvorgang/ST -Bremsvorrichtung -Bremsweg/EPS -Bremswegparameter/S -Bremswirkung -Brenndauer -Brenner/NS -Brennerei/P -Brennerpass/T -Brennhlzer/N -Brennholz/T -Brennkunst -Brennmaterial/S -Brennnessel/N -Brennpunkt/EPT -Brennpunktlage -Brennspiegel/NS -Brennspiritus -Brennstben -Brennstoff/EPT -Brennstoffkosten -Brennstoffverbrauch -Brennstoffversorgung -Brennstoffzellen -Brennweite/N -Brenzligkeit -Bresche/N -Breslau -Brest -Brett/MRST -Bretterbuden -Bretterwnden -Bretterzune/N -Bretterzaun -Brettmitte -Bretton -Brettspiel/EPS -Breughel/S -Brevier/S -Brezel -Brie -Brief/EPST -Briefadresse/N -Briefaktion/P -Briefanreden -Briefbeschwerer/N -Briefbgen -Briefbogen/S -Briefbote -Briefbund -Briefempfnger -Briefgeheimnis/Qq -Briefksten -Briefkarten -Briefkasten/S -Briefkastenfirmen -Briefkastengesellschaft/P -Briefkopf/S -Briefmappe -Briefmarke/N -Briefmarkenberge -Briefmarkenhandelshauses -Briefmarkensammeln/J -Briefmarkensammler/FNS -Briefmarkenverkaufs -Briefmonolog -Briefnotiz/P -Briefffner/NS -Briefpapier/S -Briefporti -Briefporto/S -Briefsache/N -Briefschlitz -Briefschreiberin -Briefstil -Brieftasche/N -Brieftauben -Brieftelegramm/EPS -Brieftrger/N -Briefumschlag/Sp -Briefwechsel/NS -Brigade/N -Brigadefhrer -Brigadegeneral -Brigadier/S -Brighton -Brigitte/S -Brikett/EPS -Brikettbestnde -Brikettfabrik -Brikettfabrikation -Brikettherstellung -Brikettpreis/E -Brikettpresse/N -Brillantbrosche -Brillantring/EPT -Brillanz -Brille/N -Brillenaustausch -Brillenglser/N -Brillenschlangen -Brillentrger/FNS -Brimborium -Bringschuld -Brisanz -Brise/N -Bristol -Bristolkanal -Brite/FN -Britenwhrung -Brixen -Brtchen/S -Brtchenhlften -Brtchenjungen -Brtchenpreis -Broadcast/S -Brockdorf -Brocken/S -Brockhaus -Brokat -Brokdorf -Broker/FNS -Brokerhaus/Tp -Brokerkontos -Brokerkreisen -Brokerspesen -Brokerverbindung -Brombeere/N -Brombeergestrpp -Brombeerstrucher/N -Brombeerstrauch/T -Bronchialasthma -Bronchien -Bronchitis -Bronze -Bronzegruppe -Bronzemedaillengewinner/FNS -Bronzeplastik -Bronzezeit -Brosame/N -Brosche/N -Broschre/N -Brot/EPT -Brotaufstrich/EPS -Brotbeutel/NS -Broterwerb/EPS -Broterwerbers -Brotfabriken -Brotgeber/N -Brotgetreideernte -Brotkasten -Brotkrbe/N -Brotkorb/ST -Brotkrume/N -Brotmesser -Brotpreis -Brotpreiserhhung/P -Brotrinde/N -Brotschneidemaschine -Brotschnitte/N -Brotteig -Brotzeit -Browser/NS -Brche/N -Brchigkeit/P -Brcke/N -Brckenamt -Brckenbau -Brckenbaupolier -Brckenbaustelle -Brckenbauten -Brckenbauunternehmer -Brckenkpfe/N -Brckenkommandant -Brckenkopf/T -Brckenkrne -Brckenpfeiler/NS -Brckenprojekt -Brckenzoll -Brder/GMN -Brderlichkeit -Brderorden -Brderschaft -Brgge -Brskierens -Brskierung/P -Brssel -Brstens -Brstung/P -Brter -Bruch/S -Bruchband -Bruchbude/N -Bruchkantenausbaugestell -Bruchlandung/P -Bruchlast -Bruchraumbedsung -Bruchrechnung/P -Bruchschaden/S -Bruchstein/EPT -Bruchstelle/N -Bruchstrich/EPS -Bruchstck/EPT -Bruchteil/EPS -Bruchzahl/P -Bruder/S -Bruderbundes -Brudermrder -Brudermord -Bruderpartei -Bruderschaft/P -Bruderstreit -Brudervolk -Bruderzwist -Brummbr/P -Brummbass/Tp -Brummer/S -Brummschdel/NS -Brunch -Brunhild/ET -Brunnen/S -Brunnenschacht -Brunnenvergiftung -Brunst -Brustbein/T -Brustbeschwerden -Brustbilder/N -Brustbildes -Brustfell/S -Brustkasten/S -Brustkorb/T -Brustkrebs/T -Brustschwimmer -Brusttaschen -Brustton/S -Brustumfngen -Brustumfang/T -Brustwarzen -Brustweite -Brustwickel -Brut/X -Brutalitt -Brutapparat/T -Brutei/R -Brutgewohnheit/P -Bruthenne/N -Brutkasten/S -Brutofen/S -Brutpflege -Brutreaktor -Brutsttte/N -Bruttobeitrgen -Bruttobetrag/STp -Bruttoeinkommen -Bruttoeinnahmen -Bruttoertrag/STp -Bruttogewicht/EPST -Bruttomieten -Bruttoregistertonnen -Bruttorendite -Bruttosozialprodukt/EPS -Bruttoverdienst/EPT -Bryan/S -Bsp -Bsp. -Bcher/N -Bcherbord/EPST -Bcherbrett -Bcherbrettern -Bcherei/P -Bcherfreund/EPT -Bchergilde -Bcherkabinett -Bchermachen -Bchermacher -Bchermappen -Bchermarkt/STp -Bchernarr/P -Bcherregal/EPS -Bcherrevisor -Bcherschrnke/N -Bcherschrank -Bcherschreiben -Bcherstube/N -Bcherwunsch -Bcherwurm/S -Bchlein/S -Bchner -Bchse/N -Bchsenfleisch -Bchsenmacher/NS -Bchsenffner/N -Bcklinge/N -Bfett/ST -Bffel/S -Bgel/S -Bgelbrett/RST -Bgeleisen/S -Bgelfalte/N -Bgelpresse -Bhne/N -Bhnenanweisung/P -Bhnenarbeiter -Bhnenausstattung/P -Bhnenautor -Bhnenbearbeitung/P -Bhnenbild/RST -Bhnendichter/N -Bhnenentwrfen -Bhnenerfahrung -Bhnenfassung -Bhnenhumorist -Bhneninszenierung -Bhnenkasten -Bhnenlaufbahn -Bhnenleute -Bhnenmglichkeit -Bhnenmodelle -Bhnenmuseum -Bhnenmusik -Bhnenpartner -Bhnenproduktionen -Bhnenraum/STp -Bhnenschriftsteller -Bhnensicherheit -Bhnenstck/EPT -Bhnentr -Bhnenwand -Bhnenwerk/E -Bndelns -Bndels -Bndelung/P -Bndelungsschrfe -Bndigkeit -Bndlung/P -Bndnis/Qq -Bndnisangebot -Bndnisgemeinschaft -Bndnislosigkeit -Bndnisorganisation/P -Bndnispartnern -Bndnispolitik -Bndnisproblem/EPS -Bndnisstruktur -Bndnisverhandlung/P -Bndnisverpflichtung -Bndnisversprechen -Bndnisverzicht -Brdelast -Brgenstock -Brger/FNS -Brgerinitiative/N -Brgerknig -Brgerkomitee/S -Brgerkrieg/EPST -Brgerkriegsarmee/N -Brgermeister/FNS -Brgermeistermter/N -Brgermeisteramt/ST -Brgermeistersohn -Brgermeisterwahl/P -Brgerpflicht/P -Brgerrechtler -Brgerrechtsbewegung -Brgerrechtsgesetze -Brgerrechtskmpfer/N -Brgerrechtsprogramm -Brgerrechtsreform -Brgerrechtsvorlage -Brgersaal -Brgerschaft -Brgerschaftswahlen -Brgerschreck -Brgersicht -Brgersinn/S -Brgersleute -Brgersteig/EPST -Brgersteuer -Brgertum/S -Brgerverein/S -Brgervereinigung -Brgerwiese -Brgschaft/P -Bro/S -Broanbau -Broangestellte/NR -Broarbeit/P -Broartikel/N -Broautomation/P -Brobedarf -Brobedarfsartikel/NS -Brobote/N -Brochef/S -Broeinrichtung/P -Broetage/N -Broganoven -Brogebude/S -Brohausneubau -Brohengst -Brohochhaus/Tp -Brokenntnis/q -Broklammer/N -Brokopien -Brokopiergert -Brokosten -Brokrat/P -Brokratie/N -Brokratismus -Broleiter -Bromaschine/N -Bromaschinenfabrik -Bromaschinenindustrie -Bromaterial/S -Brombel/N -Broorganisation/P -Bropersonal/S -Broraum/STp -Broschluss/Tp -Broschrank -Brostunden -Brosysteme -Brottigkeit -Brotisch -Brovorsteher -Browirtschaft -Ber/FNS -Berhemd -Bsche/GN -Bschel/N -Bste/N -Bstenhalter/NS -Btt -Bttel/NS -Bttenpapier/EPS -Bub/EP -Bubenstreich/EPT -Bubenstck/EPT -Buch/JST -Buchautor/PS -Buchbesprechung/P -Buchbinden -Buchbinder/S -Buchbindereien -Buchbinderhandwerk -Buchbindermeister -Buchdruck/PRS -Buchdrucker/NS -Buchdruckereien -Buchdruckkunst -Bucheckern -Buchenholz -Buchens -Buchenwald -Buchfink/P -Buchforderung/P -Buchform -Buchfhrer/FNS -Buchfhrung -Buchfhrungsunterlagen -Buchgemeinschaft -Buchgenossenschaft -Buchgewinn -Buchhndler/FNS -Buchhndlerverband -Buchhalten -Buchhalter/FNS -Buchhaltung -Buchhaltungsabteilung -Buchhaltungstrick/S -Buchhandel/S -Buchhandlung/P -Buchhlle -Buchinhaber -Buchkatalog -Buchkredite -Buchkritik -Buchladen/S -Buchmacher/FNS -Buchmarkt/STp -Buchmesse/N -Buchpreisbindung -Buchpreise -Buchprfer/N -Buchreihe -Buchs/EP -Buchschraube -Buchseite/N -Buchsendurchbrche -Buchseneinsatz -Buchsengehuse -Buchsenkontakthalter -Buchsenstecker/N -Buchspenden -Buchstabe/N -Buchstaben/S -Buchstabenabstand -Buchstabenfeld -Buchstabenkrzel -Buchstabenprojekt -Buchstabenrtsel/NS -Buchstabenrechnungen -Buchstabenschlsser/N -Buchstabenschlosses -Buchstabenschrift -Buchstabenzeilen -Buchtitel -Buchumschlag/Tp -Buchung/P -Buchungsautomat/P -Buchungsbelege -Buchungsbro -Buchungsdatum -Buchungsjournale -Buchungssystem -Buchungswert -Buchverlag/EST -Buchvertrieb -Buchwert/ET -Buckel -Buckingham -Budapest -Buddha -Buddhismus -Buddhist/FP -Bude/N -Budenzauber -Budget/S -Budgetdebatte -Budgetdirektor -Budgetvorlage -Buenos -Bufferausgang/Sp -Bufferflush -Buffergatter/N -Buffet/ST -Bug/ST -Bugfix/T -Buhmnner -Bukarest -Bukett/EPS -Buklee/S -Bulette/N -Bulgarenreich -Bulgarien -Bulimie -Bull/EP -Bulldog -Bulldogge/N -Bulletin -Bumerang/S -Bummelant/P -Bummelei/P -Bummelstreik/S -Bummler -Bund/ET -Bundesakte -Bundesamt/ST -Bundesanstalt -Bundesanwalt -Bundesanzeiger/S -Bundesatomgesetz/T -Bundesaufsichtsamt -Bundesauftrge -Bundesausbildungsfrderungsgesetz -Bundesausschuss/Tp -Bundesautobahn -Bundesbahn/P -Bundesbahnanleihe/N -Bundesbahnarbeiter -Bundesbahnbedienstete -Bundesbahndirektion -Bundesbahnstrecke -Bundesbank -Bundesbankprsident -Bundesbeamten -Bundesbeauftragte/NR -Bundesbedienstete/NR -Bundesbehrde/N -Bundesbesoldungsgesetz -Bundesbevollmchtigte/NR -Bundesbrger/FNS -Bundesbrgschaft/P -Bundesdatenschutzgesetz/T -Bundesdienst -Bundesdienststelle/N -Bundesebene/N -Bundesermchtigung/P -Bundesernhrungsminister/NS -Bundesfachverband -Bundesfinanzen -Bundesfinanzhof -Bundesflagge/N -Bundesforschungsminister -Bundesforschungsministerium/S -Bundesfraktion/P -Bundesgarantie/N -Bundesgartenschau -Bundesgebiet/EPT -Bundesgeld/R -Bundesgenosse/N -Bundesgericht/S -Bundesgerichtshof/S -Bundesgesetz/ET -Bundesgesundheitsminister/NS -Bundesgesundheitsministerium/S -Bundesgrenzschutz -Bundesgruppen -Bundeshaus -Bundeshaushalt -Bundeshaushaltsplan/S -Bundesheer/T -Bundesinnenminister/S -Bundesjugendplan -Bundesjustizminister/S -Bundeskanzler/NS -Bundeskanzleramt/ST -Bundeskasse/N -Bundeskongress/EPT -Bundeskriminalamt -Bundeskriminalpolizei -Bundeskulturministerium/S -Bundeskuratorium/S -Bundeslnder/N -Bundesland -Bundeslandwirtschaftsminister/NS -Bundeslaufbahn -Bundesleitung -Bundesliga -Bundesligaabsteiger -Bundesligaausschuss/Tp -Bundesligadebt -Bundesligakampf -Bundesligaklub -Bundesligamannschaft -Bundesliganeuling -Bundesliganiveau -Bundesligarunde -Bundesligaspiel/EPRS -Bundesligaspieler/NS -Bundesligastadien -Bundesligator/E -Bundesligatorhter -Bundesligavereine -Bundesligazeit -Bundesligist -Bundesluftfahrtamt -Bundesluftwaffe -Bundesmietengesetz -Bundesminister/FNS -Bundesministerien -Bundesministerium/S -Bundesmittel -Bundesorgane -Bundespartei -Bundesparteitag -Bundespolitik/R -Bundespost -Bundespostminister -Bundespostministerium -Bundesprsenz -Bundesprsident/FP -Bundesprsidentenamt -Bundesprsidialamt -Bundesrahmengesetz -Bundesrat -Bundesratsbank -Bundesratsministerium -Bundesratssitzung -Bundesrecht -Bundesreform -Bundesregierung/P -Bundesrepublik/P -Bundesrichter/N -Bundesrundfunkgesetz -Bundessammellager -Bundesschatzminister -Bundesschiedsgericht -Bundessieger -Bundessozialgericht -Bundessozialhilfegesetz -Bundesstaat/P -Bundesstaatsgrenzen -Bundesstatistik -Bundesstatuten -Bundesstellen -Bundessteuern -Bundesstrae/N -Bundesstraenverwaltung -Bundestag/ST -Bundestagsabgeordnete/NR -Bundestagsausschuss/Tp -Bundestagsdebatte -Bundestagsdelegation/P -Bundestagsfraktion/P -Bundestagsgremium -Bundestagshandbuch -Bundestagsplenardebatte -Bundestagsprsidentin -Bundestagssitzung/P -Bundestagsvizeprsident/P -Bundestagswahl/P -Bundestagswahlkampf -Bundestheater -Bundestheaterverwaltung -Bundestrainer/NS -Bundesverdienstorden -Bundesverfassung -Bundesverfassungsgericht/S -Bundesverkehrsausschuss/Tp -Bundesverkehrsminister -Bundesvermgensverwaltung -Bundesversorgungsgesetz/T -Bundesverteidigungsministerium/S -Bundesvertretung -Bundesverwaltung/P -Bundesvorsitzender -Bundesvorstandssitzung -Bundeswahl -Bundeswehr -Bundeswehrauswahl -Bundeswehrdepot -Bundeswehrgefreite/NR -Bundeswehrlazarett -Bundeswehrleutnant -Bundeswehrmajor -Bundeswehroberst -Bundeswehrrekruten -Bundeswehrverband -Bundeszentrale -Bundeszollverwaltung -Bundeszuschuss/Tp -Bundstift/EPT -Bungalow/S -Bungalowhotel -Bungalowstil -Bunker/NS -Bunkerpreis -Bunsen/S -Bunsenbrenner -Buntdruck -Buntglasfenster -Bunthlzer -Buntprospekt -Buntstift/EPST -Burchard/S -Burda/S -Burenkrieg -Burg/P -Burgadel -Burgenbau -Burgenland -Burggraf -Burghardt/S -Burghof -Burgtheater -Burgtor -Burgund/R -Burgunder/NS -Burgunderreich -Burma -Bursche/N -Burschenschaft/P -Burundi -Bus/PQq -Bue/N -Bugeld/RST -Bugeldbescheid -Bugeldbestimmung/P -Buhemd -Bupredigt/P -Butag/EPT -Busabschnitt/E -Busanschluss/Tp -Busblockade -Busch/T -Buschland -Buschleute -Buschmesser -Buschwerk/EPT -Busen/SW -Busenfreund/EFPST -Busenpolster -Buserweiterung/P -Busfahrschein -Busfahrt -Bush/S -Bushaltestellen -Business -Businterface/S -Buslinie/N -Busmaster/S -Bussard/EPS -Busschnittstelle/N -Busseite -Busstruktur/P -Bussystem/EPS -Buswrack -Butler/NS -Butter -Butterberge -Butterblume/N -Butterbrot/EPST -Butterdose/N -Buttereinfuhr -Buttererzeugung -Butterfsser/N -Butterfass/MT -Butterherstellung -Butterkauf/Sp -Buttermarkt/T -Buttermilch -Butterpreis/E -Butterteig/EPS -Butterverbrauch -Butterversorgung -Butterzoll -Button/S -Butzenscheibe/N -Buxtehude -Bypass -Byte/S -Byzantiner -Byzanz -Bchamel/S -CAD -CD -CDC -CDU -CDs -CIA -CPU -CPUs -CSFR -CSU -Csar/S -Csarismus -Csium/S -Cabaret -Cabrio/S -Cabriolet/S -Cache/S -Cadillac -Cadiz -Caen -Cafeteria -Caf/S -Calabrien -Calamares -Calcium/S -Californium -Call/S -Callgirl -Calvin/S -Calvinist/P -Cambridge -Camembert -Camion -Camp -Campari/S -Camping -Campingpltze/N -Campingplatz/T -Campus -Canberra -Candela -Cannes -Canon -Canossa -Cappuccino/S -Caravan/S -Cardin -Caritas -Caritasverband -Carlo/S -Carol/S -Carola/S -Carotinoid/EPS -Cartoon/S -Caruso/S -Casanova/S -Casino -Casinoabend -Castro/S -Catcherveranstaltung/P -Cathy/S -Cayenne -CeBIT -Celle -Cellist/FP -Cellokonzert -Cellophaneinschlag/STp -Cellophanpapier -Celsius -Cembalo -Cembalomusik -Cent/S -Center/S -Centronics -Cervelatwurst -Ceylon -Ch -Chalet/S -Chamleon/S -Champagner/S -Champagnerkorken -Champignon/S -Champion/S -Chance/N -Chanel -Chanson/S -Chaos -Chaot/P -Chaplin/S -Charakter/EPS -Charakterbild/JRT -Charaktereigenschaft/P -Charakterentwicklung -Charakterfehler/N -Charakterfrage/N -Charaktergre/N -Charakterisierens -Charakterisierung/P -Charakteristik/P -Charakteristika -Charakterkpfe/N -Charakterlosigkeit -Charaktermngel -Charakterschwche/N -Charakterstrke/N -Charakterstudie/N -Charakterzug/STp -Charge/N -Chargenheft -Chargenwagen -Chargenzeit -Charisma -Charles -Charlie/S -Charlottenburg -Charme/S -Charmeur/S -Chart/S -Charta -Charterangebote -Charterdienst -Charterflug/STp -Charterfluggesellschaft -Charterflugzeuge -Chartergebhr -Chartergeschft -Chartergesellschaft -Charterluftfahrt -Chartermaschine/N -Charterunternehmen -Charterverkehr -Chartervertrag/STp -Chartres -Chassis -Chassisbeschdigung -Chassisblech -Chat/S -Chateau/S -Chateaubriand/S -Chauffeur/EFPS -Chauffeuruniform -Chaussee/N -Chauvinismen -Chauvinismus -Check/S -Checkliste/N -Checkpoint -Checksumme -Chef/FS -Chefrzte/FN -Chefrzteverband -Chefarzt/T -Chefarztstellen -Chefberater/S -Chefbesprechung/P -Chefdenker -Chefdirigenten -Chefdolmetscher -Chefelektriker -Chefetage -Chefflugleiter -Chefideologe -Chefkapellmeister -Chefkoch -Chefkonstrukteur -Chefputzfrau -Chefredakteur/EFPS -Chefsache/N -Chefsekretr/EFPS -Cheftreuhnder -Chefunterhndler/FNS -Chefvilla -Chefzimmer -Chemie -Chemieaktien -Chemieanlagenbau -Chemieanteil -Chemieausfuhr -Chemiefaser -Chemiefaserausfuhr -Chemiefaserindustrie -Chemiegesellschaften -Chemieindustrie -Chemiekaufmann -Chemiekonzern/S -Chemielieferung/P -Chemiepapieren -Chemieprodukt/EPST -Chemieproduktion -Chemieschule -Chemiestudent -Chemieunternehmen -Chemieverwaltung -Chemiewerte -Chemiewirtschaft -Chemikalie/N -Chemikalienbestndigkeit -Chemikaliengebiet -Chemikalienhndler -Chemiker/FNS -Chemnitz -Chemotechniker -Chemotherapie/N -Cheops -Cheopspyramide -Cherusker -Cheyenne -Chicago/S -Chicore/S -Chiemsee/S -Chiffre/N -Chiffreanzeige/N -Chiffrenummern -Chiffreschrift/P -Chile -China/S -Chinareise -Chinchilla -Chinese/FN -Chinesenviertel -Chinin/S -Chininfabrik -Chintz -Chip/S -Chipsatz -Chirac/S -Chirotherapie/N -Chirurg -Chirurgenleben -Chirurgie -Chlor/S -Chlorid/EPS -Chlornitrat -Chloroform -Chlorophyll -Chlorophyllzusatz -Chre/N -Choke -Cholera -Choleraepidemie -Cholesky/S -Cholesterin/S -Chopin/S -Chor/S -Choral -Chordirektor -Chordirigent -Choreograph/FP -Chorgesang/Sp -Chorist/P -Chorknabe/N -Chorliteratur -Chormelodien -Chorsnger/FNS -Chorwerke -Chr -Chr. -Christ/FP -Christa/S -Christbaum/STp -Christdemokrat/P -Christenheit -Christentum -Christenverfolgung/P -Christi/N -Christian/EST -Christianisierung -Christin/EFT -Christina/S -Christkind/T -Christlichkeit -Christmarkt/Tp -Christmesse -Christoph/S -Christophorus -Christstollen/S -Christus -Christusfigur -Christuskopf -Christusvisionen -Chrom/S -Chromausfuhr/P -Chromerze -Chromosom/EPS -Chronik -Chronist/P -Chronologie -Chronometer -Chronometrie -Chruschtschow/S -Chrysantheme/N -Chrysler/S -Chur -Churchill/S -Chteau/S -Cineast/P -Cinemascope -Circus -Citibank -Citroen -Citroenfahrer -City/S -Citygrundstck/E -Cityhaus -Citylage/N -Civil -Claude/S -Claudia/S -Clausewitz -Client/S -Clip/S -Clipart/S -Clique/N -Clochard/S -Clockausgang -Clone/S -Clonehersteller -Closure/S -Clou -Clown/S -Clownsfigur -Club/S -Clubmitglieder -Cluny -Cluster/NS -Cmos -Co -Coatingmae -Coats -Coautor -Cobalt/S -Cobol -Coburg/S -Coca -Cockerspaniel -Cockpit/S -Cocktail/S -Cocteau/S -Code/S -Codec/S -Codegenerator/PS -Codegeneratorgenerator/PS -Codegenerierung -Codegenerierungsphase/N -Codequalitt -Codestck/EPS -Codetransformation -Codewort/E -Codex -Codezeichen/S -Codierens -Codiernase -Codierung/P -Cognac -Coitus -Cola -Collage/N -Collie/S -Colmar -Colombo/S -Colorglas -Colorscheiben -Colorverglasung -Colt -Columbus -Comeback -Comecon -Comic/S -Commerzbank -Commodore -Commonwealth/S -Commune -Compaq -Compiegne -Compiler/NS -Compilerbau -Computer/NS -Computeraktien -Computeranalysen -Computeranimation/P -Computeranlage/N -Computerausdruck/EPS -Computerbenutzer/NS -Computerbild -Computercamp/S -Computerclub/S -Computerdisplay/S -Computerfachzeitschrift/P -Computerfamilie -Computerfirma -Computerfirmen -Computergehirn -Computergeneration/P -Computergeschichte -Computergrafik/R -Computerhandel -Computerhersteller/NS -Computerhilfe/N -Computerkriminelle/NR -Computerknstler -Computerland -Computerleistung -Computermodell/E -Computerperipherie -Computerpresse -Computerprobelauf/Sp -Computerprogramme/N -Computersimulation/P -Computerspiel/EPS -Computersprache -Computersteuerung -Computerstrung/P -Computersystem/EPS -Computertechnik/R -Computerberwachung -Computerviren -Computerzentrum -Concorde/S -Conferencier/S -Connectzustand -Connor/S -Consulter/NS -Container/NS -Contergan/S -Continuation/S -Controller/NS -Controllerbox/P -Controllerplatine/N -Cookie/S -Coprozessor -Copyright -Corazon/S -Cornedbeef -Cornichon/S -Cornwall -Cortison -Cottbus -Couchgarnitur -Couleur -Coulomb -Countdown -Coup/EST -Coupon/S -Courage -Courtage/N -Cousin/EPS -Couture -Coventry -Cover/NS -Cowboystiefel -Crash/S -Creme/NS -Crew/S -Crimpen -Croupier/S -Cruz -Crpe/S -Ctrl -Cunnilingus -Cupfinale -Cupgewinner -Cupkmpfe -Cupsieger -Cupslalom -Cupspiel -Curacao -Curie/S -Curriculum -Curry -Currywurst -Cursor/S -Cursorbewegung/P -Cursorposition/P -Cursorspur -Cursorsteuerungsbefehl/E -Cyberspace -DAX -DB -DDR -DFB -DF -DGB -DHCP -DIN -DKP -DNS -DNVP -DOS -DPA -DRK -DSL -DVD/S -Dcher/N -Dmmerlicht -Dmmerns -Dmmerschlaf -Dmmerstunde/N -Dmmerung/P -Dmon/FPS -Dmonenglaube -Dmonenhand -Dmonie -Dmpfens -Dmpfung/P -Dmpfungskomponente -Dmpfungsteil -Dne/FN -Dnemark/S -Dnenherrschaft -Drme/N -Dumchen/S -Dach/ST -Dachau -Dachauer -Dachbalken -Dachbden -Dachboden/S -Dachdecker/FNS -Dachfenster/NS -Dachgrten -Dachgarten/S -Dachgeschoss/EPT -Dachgesellschaft -Dachgiebeln -Dachkammer/N -Dachkonstruktion/P -Dachorganisation/P -Dachpappe -Dachrinne/N -Dachs/EPT -Dachstube/N -Dachstuhl -Dachterrasse -Dachterrassenwohnung/P -Dachziegel/NS -Dackel/S -Dackeldame -Dagmar/S -Daimler -Dakar -Dali/S -Dallas -Dalmatien -Damaskus -Damast/T -Dame/N -Damenbegleitung -Damenbekleidung -Damenbesuch/EPST -Damenbinden -Damendoppel -Dameneinzel -Damenfigur -Damenfriseur/EPS -Damenfrisr/EPS -Damenhandtasche -Damenhte -Damenhutindustrie -Damenkleider -Damenkleidung -Damenkonfektion/P -Damenlanglauf/Sp -Damenmannschaft/P -Damenmantelmode -Damennachthemd -Damenoberbekleidung -Damenopfer -Damenschmuck -Damenspiele -Damenstrumpf -Damentoiletten -Damenunterwsche -Damenverkehr -Damm/ST -Dammbrche/N -Dammbruch/T -Dammtor -Damokles -Damoklesschwert -Dampf/RST -Dampfbder -Dampfbad/T -Dampfdruck -Dampferladung/P -Dampferpartie -Dampfheizung/P -Dampfkessel/NS -Dampfkochtpfe -Dampfkochtopf/T -Dampfkraftwerk -Dampfleistung -Dampflokomotiven -Dampfmaschine -Dampfmengen -Dampfschiff/EPT -Dampfschifffahrt/P -Dampfsensor -Dampfturbinen -Dandy/S -Daniel/S -Dankadresse/N -Dankbarkeit -Dankbrief/EPS -Dankes -Dankeschn -Dankesspende/N -Dankesworte/N -Dankgebet/EPT -Dankgottesdienst -Dankopfer/NS -Danks -Danksagen/JS -Dankschreiben/S -Dankspende/N -Danktelegramm/EPS -Dante/S -Danton/S -Danziger -Darbietens -Darbietung/P -Darbringens -Darbringung/P -Dardanellensperre -Darlegens -Darlegung/P -Darlehen/S -Darlehensabgang/Sp -Darlehensantrag/STp -Darlehensgebern -Darlehensgeschft -Darlehenskasse/N -Darlehensnehmer -Darlehensschulden -Darlehenssumme -Darlehensvolumen -Darlehenszusagen -Darlehenszuteilung -Darlehn/S -Darlehnsvergabe -Darlehnsvertrag/Sp -Darm/ST -Darmbeschwerden -Darmerkrankung/P -Darmgeschwr/EPS -Darmleiden -Darmsaite/N -Darmstdter -Darmstadt -Darmverschluss/Tp -Darstellens -Darsteller/FNS -Darstellung/P -Darstellungsanweisung/P -Darstellungsart/P -Darstellungsauffassung/P -Darstellungsbefehl -Darstellungsform/P -Darstellungsfunktion/P -Darstellungsgeschwindigkeit -Darstellungskunst -Darstellungsmglichkeit/P -Darstellungsparameter -Darstellungsweise/N -Darstellungswelt -Darwin/S -Dasein/S -Daseinsberechtigung/P -Daseinsentwurf -Daseinsgrenze/N -Daseinskampf -Dassstze/N -Dasssatz/ET -Data -Databook -Dataframe/S -Dataphon -Datei/P -Dateianfang -Dateiende -Dateifeldern -Dateiformat/E -Dateigre -Dateileiche/N -Dateiname/N -Dateistruktur -Dateisystem/EPS -Daten -Datenabstraktion/P -Datenanschluss/Tp -Datenanzug -Datenaufnahme/N -Datenausgabe/N -Datenausgabegerte/N -Datenausgang/Sp -Datenaustausch -Datenauswertung/P -Datenbank/P -Datenbankprogramm/E -Datenbankserver/NS -Datenbanksprache/N -Datenbanktechnik/P -Datenbankverwaltung/P -Datenbankzugriff/EPS -Datenbasis -Datenbereich/EPS -Datenbestnde/N -Datenbestand -Datenbit/S -Datenbltter/N -Datenblatt -Datenblock -Datenblocksicherung -Datenbcher -Datenbuch -Datenbus/Qq -Datenbyte/S -Datendarstellung -Dateneingabe/N -Dateneingabestation/P -Dateneingang/Sp -Datenempfang -Datenendgert/EPT -Datenerfassung -Datenerfassungsrechner/S -Datenerfassungssystem/S -Datenerfassungsteil/EPS -Datenerhalt -Datenfeld/R -Datenfernbertragung/P -Datenfernverarbeitung -Datenfile/S -Datenfluss/Tp -Datenflussanalyse/N -Datenflussgraph/P -Datenflussplan -Datenflussschema -Datenformat/EPS -Datenframe/S -Datengerte/N -Datenhandschuh -Dateningenieure -Dateninterface/S -Datenkabel/S -Datenkanle/N -Datenkanal/S -Datenkanalmultiplexer -Datenkanalnummer/N -Datenkassette -Datenkommunikation -Datenkommunikationsleitung/P -Datenleitung/P -Datenlieferanten -Datenlink -Datenlogbchern -Datenmasse/N -Datenmenge/N -Datenmodell/EPS -Datenmodul/S -Datenmodulformat -Datennetz/EPT -Datennetzinterface/S -Datennetztopologie -Datennetzwerk/E -Datenobjekt/EPS -Datenorganisation -Datenpegel -Datenpuffer -Datenquelle/N -Datenregal -Datenreprsentation/P -Datenrichtung -Datenstze/N -Datensammlung/P -Datensatz/T -Datenschnittstelle/N -Datenschtzer/FS -Datenschutz/T -Datenschutzbeauftragte/NR -Datenschutzgesetz -Datenschwankung/P -Datenserien -Datenserver -Datensicherheit -Datensicherung/P -Datensichtgert/EPST -Datenspeicher/S -Datenspeicherung -Datensprungweite -Datenstrme/N -Datenstrom/S -Datenstruktur/P -Datentakt -Datentauschkassette -Datentechnik -Datentelegramme -Datenterminal/S -Datentrger/NS -Datentransfer -Datentransferrate/N -Datentyp/P -Datenbergabe -Datenbermittlung -Datenbernahme -Datenbertragung -Datenbertragungskosten -Datenbertragungsprogramm/EPS -Datenbertragungsrate/N -Datenbertragungsrichtung/P -Datenbertragungssoftware -Datenbertragungsstrecke/N -Datenbertragungswegen -Datenurheber/NS -Datenverarbeitung/P -Datenverarbeitungsanlage/N -Datenverarbeitungsexperte/N -Datenverarbeitungssystem/EPS -Datenverarbeitungszentrale/N -Datenverbindung/P -Datenverkehr/S -Datenverlust -Datenverwaltung -Datenvisualisierung/P -Datenvolumen -Datenweg/EPS -Datenweitergabe -Datenwert/EPS -Datenwort/S -Datenzugriff/E -Datex -Datexteilnehmer -Dativ/S -Dattel/N -Datum/S -Datumsangabe/N -Dauer -Dauerarbeiter/FNS -Dauerarbeitsplatz -Dauerauftrag/STp -Dauerbackwaren -Dauerbefrworter -Dauerbehandlung -Dauerbelastung/P -Dauerbelegung -Dauerbeschftigung -Dauerbrenner -Dauereinkommen -Dauereinrichtung -Dauererfolg -Dauerertrag/STp -Dauerexistenz -Dauerfestigkeit -Dauerflug/STp -Dauerflugrekord -Dauerfreunde -Dauergeschft -Dauerhaftigkeit -Dauerheim -Dauerkarte/N -Dauerkrach -Dauerkunden -Dauerkurzschluss/Tp -Dauerladeschaltung -Dauerladestrom -Dauerlauf/STp -Dauerlsung -Daueroptimist -Dauerparker -Dauerpassierschein -Dauerregen/S -Dauerschlaf -Dauerschmerzen -Dauerschnupfen -Dauerstellung/P -Dauerstress/T -Dauerttigkeit -Dauertests -Dauerverdienst -Dauervermietung -Dauerwellen -Dauerwirtschaftswunder -Dauerwohnrecht -Dauerwohnung/P -Dauerwrste -Dauerzustnde/N -Dauerzustand/ST -Daumen/S -Daumenabdruck -Daune/N -Daunendecken -David/S -Davidson/S -Davidswache -Davis -Daviscup -Davispokal -Davos -Deadline/S -Deaktivierens -Deaktivierung/P -Deal/RS -Dealer/FNS -Debakel/S -Debatte/N -Debattenpunkt -Debattierklub/S -Debitorengefge -Debitorenliste -Debt/S -Debtant/P -Debuggen/S -Debugger/NS -Debuglevel/S -Debussy/S -Deckadresse/N -Deckaufbauten -Deckbett/PST -Deckbltter -Deckblatt/T -Deckel/NS -Deckelblatt -Deckelblech/EPS -Deckelrand -Deckelscharnier -Deckenbeleuchtung/P -Deckenfluter/NS -Deckenfresko -Deckengemlde/N -Deckens -Deckfarbe/N -Deckkraft -Deckmntel/N -Deckmantel/S -Deckname/N -Decknamen/S -Deckschicht/P -Deckung/P -Deckungsbeitrag/STp -Deckungsdarlehen -Deckungskufen -Deckungskapital -Deckungslcke -Deckungsnachweis -Deckungsperioden -Deckungsregister -Deckungsreihen -Deckungsrckstellungen -Deckungsschwchen -Deckungsverhltnis/Qq -Decoder -Decodiereinheit/P -Decodierens -Decodierung/P -Deduktion/P -Deduktionsmethode/N -Deduktionsregel/N -Deduktionsschema -Deftismus -Defaultwert/EPS -Defekts -Defensivposition/P -Defensivpotential/EPS -Defensivpotenzial/EPS -Defensivschlacht -Defilee/S -Definiertheit -Definition/P -Definitionsbereich/EPS -Definitionszeit -Defizit/EPS -Defizitlnder -Defizitlawine/N -Deflation/P -Deflationsbekmpfung -Deflationsfalle -Deflationsjahre -Deflationskrise -Deflationsphase -Deflationspolitik -Deformation/P -Deformieren/JS -Degen/S -Degeneration -Degradierens -Degradierung/P -Degression -Degussa/S -Dehnbarkeit -Dehnens -Dehnung/P -Deich/EPT -Deichbauer -Deichpavillon -Deichsel/N -Deichwiesen -Deinstallation -Deismus -Dekade/N -Dekadenz -Dekalog -Dekan/EFPS -Dekanat -Deklamation/P -Deklamator/PS -Deklaration/P -Deklarationspflicht -Deklarationsteil/EPS -Deklination -Dekolletee/S -Dekollet/S -Dekompression -Dekor/S -Dekorateur/EFPS -Dekoration/P -Dekorationsbnde -Dekorationsersatz -Dekorationslehrling -Dekorationsmaterial -Dekorationsmeister -Dekrementierung -Dekret/EPST -Delaware -Delegation/P -Delegationschef/S -Delegationsfhrer/S -Delegationsleiter -Delegationsmitglieder -Delegationsrecht -Delegiertengesetz -Delegiertenstrke -Delegiertenstimmen -Delegiertenversammlung -Delegiertenzahl -Delfin/EPS -Delhi -Delikatesse/N -Delikatessenhandlung -Delikt/EPST -Deliktgruppe/N -Delirien -Delirium -Dell/EP -Delors -Delphi/N -Delphin/EPS -Delphinschwimmer -Deltainsel -Deltas -Deltasegler -Demagoge/N -Demagogenverfolgung -Demagogie -Demarkationslinie/N -Dementi -Dementierens -Dementierung/P -Demo -Demobilisierens -Demobilisierung/P -Demographie -Demokassette -Demokrat/P -Demokratie/N -Demokratiebegriff/S -Demokratiedefizit/ES -Demokratieverstndnis/Qq -Demokratisierens -Demokratisierung/P -Demokratisierungsprozess/EPT -Demolierens -Demolierung/P -Demonstrant/P -Demonstration/P -Demonstrationsfreiheit -Demonstrationsgerte -Demonstrationsksten -Demonstrationsobjekte -Demonstrationsrecht -Demonstrationsverbot -Demonstrationszug/STp -Demontage/N -Demontagebefehle -Demontageeinstellung -Demontagefall -Demontagefirma -Demontageliste -Demontagepolitik -Demontageprogramm/S -Demontageprotest -Demontagetrupp -Demonteur -Demoralisation -Demosoftware -Demoversion/P -Demtigens -Demtigung/P -Demut -Denkanstze/N -Denkansatz/T -Denkansto/Tp -Denkbarkeit -Denkens -Denker/NS -Denkfabrik -Denkfaulheit -Denkfehler/NS -Denkfreiheit/P -Denklinie/N -Denkmler/N -Denkmal/PS -Denkmaljahr -Denkmalpflege -Denkmalschutz/T -Denkmalschutzjahr -Denkmalsschutz -Denkmethode/N -Denkpause/N -Denkprozess/EPT -Denkschema/S -Denkschemata -Denkschrift/P -Denkspiel -Denksthle -Denktradition/P -Denkvermgen/S -Denkweise/N -Denkwrdigkeit -Denkzettel/NS -Denkzwang/Sp -Dennis -Dentaltechnik -Dentist/FP -Denunziant/FP -Denunziation/P -Departement/S -Depesche/N -Deponie/N -Deportation/P -Depositen -Depositenbank/P -Depositengeldern -Depositenkasse/N -Depositenkonto/S -Depot/S -Depotumschichtung/P -Depotwert -Depp/PS -Depression/P -Depressionsphasen -Derbyfeld -Derbysieger/S -Dereferenzierung -Deregulierens -Deregulierung/P -Derivat/EPS -Derivation/P -Desaster/S -Descartes -Deserteur/EFPS -Desertion/P -Design/RS -Designnderung -Designer/FNS -Designgrundstze/N -Designziel -Desillusion/P -Desillusionierung -Desinfektion/P -Desinfektionsmittel/NS -Desinfizierens -Desinfizierung/P -Desintegration/P -Desinteresse/S -Desktop/S -Desktoppublishing/S -Desoxyribonukleinsure/N -Despot/P -Despotie -Dessert/S -Dessous -Destabilisierens -Destabilisierung/P -Destillat -Destillateur -Destillation/P -Destillierens -Destillierung/P -Destination/P -Destruktion -Detail/S -Detailausarbeitung/P -Detailfrage/N -Detailflle -Detailgenauigkeit -Detailgeschft/EPT -Detailhndler/FNS -Detailhandel/S -Detailinformation/P -Detailkenntnis/q -Detailkonstrukteur -Detaillierens -Detaillierung/P -Detaillierungsgrad/EPST -Detailliste/N -Detailvorschlag/STp -Detektierens -Detektierung/P -Detektion -Detektiv/EFPS -Detektor/S -Detektorenempfnger -Determinante/N -Determinismus -Detlef/S -Detlev/S -Detonation/P -Detroit -Deut/J -Deuterium -Deutlichkeit -Deutschenfeindlichkeit -Deutschland/S -Deutschlandbro -Deutschlandmodell -Deutschlandpokal -Deutschlandreise -Deutschlandserie -Deutschsprechen -Deutschstunde -Deutschunterricht -Devalvation/P -Device/S -Devise/N -Devisenausgaben -Devisenausgleichsfonds -Devisenbescheinigung -Devisenbeschrnkung/P -Devisenbrsen -Devisenentwicklung -Devisenerlse -Devisengeschft -Devisenhndler/FNS -Devisenhandel -Devisenhilfe -Devisenkontrolle/N -Devisenkontrollstelle -Devisenkurse -Devisenmarkt/Tp -Devisenprobleme -Devisenquelle -Devisenschmuggel -Devisenspekulationen -Devisenspekulationsgeschft/EPS -Devisensperren -Devisenspritzen -Devisensucht -Devisenvergehen -Devisenwoge -Devon/S -Dez -Dez. -Dezember/S -Dezemberausgaben -Dezemberhlfte -Dezemberschnee -Dezemberwoche -Dezentralisation -Dezentralisierung -Dezernat/EPS -Dezernent/FP -Dezibel -Dezimalbetrag/STp -Dezimaldarstellung -Dezimalformat -Dezimalpunkt -Dezimalrechnung/P -Dezimalsystem/S -Dezimalwert/EPST -Dezimalzahl -Dhabi -Dit/P -Ditsanatorium -Dia/S -Diabetes -Diabetiker/FNS -Diadem -Diagnose/N -Diagnoseeinrichtung -Diagnosegert -Diagnosekomponente -Diagnosemglichkeit/P -Diagnosestudien -Diagnosesystem/EPS -Diagnostik -Diagramm/EPS -Diakone/N -Diakonie -Dialekt/EPST -Dialektik -Dialektunabhngigkeit -Dialog/EPST -Dialogablauf/Sp -Dialogpartner -Dialogsteuerung -Dialyse -Diamant/P -Diamanthndler/FNS -Diamantring -Diaphragma/S -Diapositiv/EPS -Diaprojektor/S -Diaschau -Diaspora -Dichotomie -Dichtens -Dichterfrst -Dichterin/F -Dichterliebe -Dichtern -Dichters -Dichtflche/N -Dichtgummi -Dichtheit -Dichtigkeit -Dichtkante/N -Dichtknste -Dichtkunst -Dichtung/P -Dichtungsraupe -Dichtungsring -Dichtungsberprfung -Dickbauch -Dickdrme/N -Dickdarm/S -Dickhuter/NS -Dickicht/EPS -Dickkpfe/N -Dickkopf -Dickleibigkeit -Didaktik/R -Didaktiker/FNS -Dieb/EFPST -Diebesbande/N -Diebesbeute -Diebesgut -Diebsthle/N -Diebstahl/S -Diele/N -Diener/NS -Dienerschaft -Dienstlteste/NR -Dienstag/EP -Dienstagnacht -Dienstagsforum -Dienstalter/NS -Dienstantritt/T -Dienstanweisung/P -Dienstanzug/STp -Dienstausrstung/P -Dienstbarkeit -Dienstbote/N -Dienste/NS -Diensteifer/S -Dienstgeheimnis/Qq -Dienstgesprch/EPS -Dienstgrad/EPST -Dienstherr/NP -Dienstjahr/EPST -Dienstleister/NS -Dienstleistung/P -Dienstleistungsangebot/EPS -Dienstleistungsbereich -Dienstleistungsberuf/E -Dienstleistungsbetrieb/EPS -Dienstleistungsgesellschaft -Dienstleistungsgewerbe -Dienstleistungspaket -Dienstleistungssektor -Dienstleistungsstaat/PS -Dienstleistungsunternehmen/S -Dienstleistungszweigen -Dienstmdchen/S -Dienstmnner/N -Dienstmann -Dienstordnung/P -Dienstpersonal -Dienstpflicht/P -Dienstpistole/N -Dienstprogramm/EPS -Dienstraum/STp -Dienstreise/N -Dienstreisebericht -Dienstsiegel -Dienstsitz -Dienststelle/N -Dienststrafverfahren -Dienststunde/N -Dienstverhltnis/Qq -Dienstvertrag/STp -Dienstvorgesetzten -Dienstvorschrift/P -Dienstwagen/S -Dienstweg/EPT -Dienstwohnung/P -Dienstzeit/P -Dienstzeitregelung -Dienstzweig/EPS -Diesel -Diesellok -Diesellokomotiven -Dieselmaschinen -Dieselmotor/PS -Dieselmotorenbau -Diesell/S -Diesellfackeln -Diesellverbraucher -Dieter/S -Dietrich/EPS -Diffamierens -Diffamierung/P -Diffamierungskampagne -Diffamierungsmethode -Differential/EPS -Differentialfaktor/PS -Differentialgleichung/P -Differentialrechnung -Differentialteil/EPS -Differentiation/P -Differenz/P -Differenzbetrag/STp -Differenzdruckmesser/NS -Differenzeingang/Sp -Differenzenbildung -Differenzial/EPS -Differenzialfaktor/PS -Differenzialgleichung/P -Differenzialrechnung -Differenzialteil/EPS -Differenziation/P -Differenzierens -Differenzierung/P -Differenzierungsverlust -Differenzspektrum -Differenzvektor/PS -Diffusion -Digitalanzeige/N -Digitalausgabe/N -Digitalausgang/Sp -Digitaleingabe/N -Digitaleingang/Sp -Digitalisierens -Digitalisierung/P -Digitalkamera/S -Digitalrechner/NS -Digitalschaltung/P -Digitalteil -Digitaluhr -Digitalvoltmeter -Digitalwandler -Diktafon/ES -Diktaphon/ES -Diktat/EPT -Diktator/FPS -Diktatur/P -Diktiergert/EPST -Diktiermaschine/N -Diktion/P -Diktum/S -Dilemma/S -Dilettant/P -Dilettantismus -Dill/S -Dilschalter/S -Dilschaltereinstellung/P -Dilschalterstellung/P -Dilswitch/T -Dimension/P -Dimensionierens -Dimensionierung/P -Dimensionierungsnderung/P -Dinar -Ding/EPRS -Dinosaurier -Dizesan/EPS -Dizesanbischfe -Dizesanbischof -Dizesangrenzen -Dizese/N -Dizesenbischfe -Dizesengebiete -Dizesengrenzen -Diode/N -Diodenbrcke -Diodenbuchse -Diodensteckbuchse -Diogenes -Dionysios -Dioptrie/N -Dioxin/EPS -Diphtherie -Diphtheriebazille/N -Diphthong/EPS -Dipl -Dipl. -Diplom/EPS -Diplomand/FP -Diplomarbeit/P -Diplomarbeitsthema/S -Diplomat/P -Diplomatenanzug/STp -Diplomatengepck -Diplomatenhppchen -Diplomatenkoffer -Diplomatenkreise -Diplomatenstab -Diplomatie -Diplomfeier -Diplomingenieur/EPS -Diplomingenieurtitel -Diplomkaufmann/S -Diplomlehrer -Diplomprfung/P -Diplomvolkswirt -Dipol/EPS -Directories -Directory -Direktabschluss/Tp -Direktbehandlung -Direkterzeugung -Direktflug/STp -Direktimport/E -Direktinvestition/P -Direktion/P -Direktionsassistent -Direktionsfahrzeug -Direktionssekretrin -Direktionswagen -Direktive/N -Direktmeldung -Direktor/FP -Direktorat/EPST -Direktorium -Direktrice/N -Direktsendung -Direktspiel -Direktbertragung -Direktverbindung -Direktverhandlung/P -Direktverkufe/NR -Direktverkauf/Sp -Direktversicherung -Direktversicherungsvertrge -Direktvertrieb -Direktwahl -Direktzugriff -Dirigent/P -Dirigentenpult -Dirk/S -Dirndl -Dirne/N -Disagiokosten -Discountkrieg -Disharmonie -Disjunktion/P -Disk -Diskette/N -Diskettenerstellung -Diskettenlaufwerk/EPS -Diskettenplatz -Diskettensatz -Diskettenspezifikation/P -Diskettentausch -Diskont/EPS -Diskontgeschfte -Diskontinuitt -Diskontpolitik -Diskontpreisen -Diskontstze/N -Diskontsatz/T -Diskothek/P -Diskquota/S -Diskrepanz/P -Diskretion -Diskriminierens -Diskriminierung/P -Diskurs/EPT -Diskus/Qq -Diskussion/P -Diskussionsbeitrag/STp -Diskussionseifer -Diskussionsforum -Diskussionsgegenstand -Diskussionsgrundlage/N -Diskussionsgruppe/N -Diskussionskreis/EPT -Diskussionsleiter -Diskussionspapier -Diskussionspartner -Diskussionspunkt -Diskussionsreaktion/P -Diskussionsrunde/N -Diskussionsstand -Diskussionsstoff -Diskussionsteilnehmer/NS -Diskussionsthema -Diskussionsveranstaltung/P -Diskussionsvorschlag/Sp -Diskussionszeit -Diskuswerfer -Diskzugriff/EPS -Disney/S -Disparitt/P -Dispens/P -Dispersion -Display/S -Displayabdeckung/P -Displaycontroller/S -Displayeinheit/P -Displayfeld -Displayfenster/NS -Displayfensterumrisse -Displayinterface/S -Displaysteckverbinder -Disposition/P -Dispositionsnderung -Disproportion/P -Disproportionalitt/P -Disput/EPST -Disqualifikation -Disqualifizierens -Disqualifizierung/P -Dissens/T -Dissertation/P -Dissident/P -Dissonanz/P -Distanz/P -Distanzbolzen -Distanzeinrichtung -Distanzhlsen -Distanzierens -Distanzierung/P -Distanzmessung/P -Distel/N -Distelfinken -Distribution/P -Distributionsverlag/EST -Distributor/PS -Distrikt/EPT -Distrikthauptstadt -Disziplin/P -Disziplinarausschuss/Tp -Disziplinarmanahmen -Disziplinarstrafe -Disziplinarverfahren/S -Disziplinierens -Disziplinierung/P -Disziplinierungsinstrument -Disziplinlosigkeit -Diva/S -Divergenz/P -Divergenzwinkel -Diversifikation/P -Dividende/N -Dividendenausfall/Sp -Dividendenberechtigte -Dividendenempfnger -Dividendenerhhung/P -Dividendenhhe -Dividendenkonto -Dividendenkrzung/P -Dividendenprognose -Dividendenrckgang -Dividendenstze -Dividendenverzicht -Dividendenzahlung/P -Division/P -Divisionsraum/STp -Divisionsstrke -Divisor/S -Diwan/S -Dixieland -Dnjepr -Dner/NS -Drfchen/S -Drfer/N -Drrfleisch/T -Drrobst -Dobermann -Docht/EPST -Dock/S -Dockbetrieb -Doge/N -Dogge/N -Dogma/S -Dogmatik/R -Dogmatiker/NS -Dogmatismus -Dogmen -Dohle/N -Dohlennest -Dohlenprchen -Doktor/FPS -Doktorand/FP -Doktorarbeit/P -Doktordiplom -Doktorexamen/S -Doktorgrade/N -Doktorvter -Doktorwrde/N -Doktrin/P -Doku -Dokument/EPST -Dokumentarbeitrag/STp -Dokumentarbericht/EPS -Dokumentarfilm/EPS -Dokumentarspiel -Dokumentarstreifen -Dokumentation/P -Dokumentationsanweisung -Dokumentationsstelle/N -Dokumentationsvorschrift/P -Dokumentationszweck/EPS -Dokumentenbreite -Dokumentenerstellung -Dokumentengeschft -Dokumentvorlage/N -Dolch/EPS -Dolchstich/EPST -Dolchsto/Tp -Dollar/S -Dollarabwertung -Dollaranleihe -Dollaranteils -Dollarbasis -Dollarbetrge -Dollarerls -Dollarfall -Dollarguthaben -Dollarhalter -Dollarhausse -Dollarkredit -Dollarkurs/EPT -Dollarlcke -Dollarmangel -Dollarnote/N -Dollarnotierung -Dollarnotiz -Dollaroptionen -Dollarraum/ST -Dollarreserven -Dollarschwche/N -Dollarstrke/N -Dollarstck -Dollarverfall/S -Dollarverluste -Dollarvermgens -Dolly/S -Dolmetscher/FNS -Dolmetscherinstitut -Dolmetscherschulen -Dolmetscherservice -Dom/EPT -Domne/N -Domain/S -Domchor/ST -Domglocke/N -Domherr/FNP -Dominanz -Dominanzstreben/S -Dominik/S -Dominikaner -Domino/S -Dominoeffekt -Domizil/EPS -Dompfaff -Dompfarrer -Dompteur/FS -Dompteuse/N -Don -Donald/S -Donator/PS -Donau -Donaudelta -Donaukraftwerk -Donaumonarchie -Donauwalzer -Donner/S -Donnergang -Donnerschlag/STp -Donnerstag/EP -Donnerstimme/N -Doping/S -Dopingkontrolle/N -Dopingmittel -Doppel/JS -Doppelabitur -Doppelabschuss/Tp -Doppelaufgabe/N -Doppelbesteuerung/P -Doppelbesteuerungsabkommen -Doppelbett/PS -Doppelbildnis/Qq -Doppeldecker/S -Doppeldrehbhne -Doppeldruck -Doppeleurokarte -Doppelfehler/NS -Doppelfenster -Doppelgnger/NS -Doppelgrab -Doppelhaus/Tp -Doppelheft -Doppelimpuls/EPT -Doppelinklinometer -Doppeljubilum -Doppelkabine -Doppelkinn/EPS -Doppelklick/S -Doppelkopf -Doppellaut/EPT -Doppelleben -Doppelleitung/P -Doppelliter -Doppelminister -Doppelmoral -Doppelmord -Doppelname/N -Doppelnamen/S -Doppelnetzteil -Doppelns -Doppelpack/S -Doppelpaket -Doppelpartner -Doppelpass/Tp -Doppelpunkt/EPST -Doppelsalto -Doppelschnitt -Doppelsieger -Doppelsinn/EPS -Doppelsitzer -Doppelspiel/EPS -Doppelspule -Doppelstart -Doppelsteckdosen -Doppelstecker/NS -Doppelstrategie/N -Doppelstromversorgung -Doppeltasten -Doppeltitel -Doppeltr/EP -Doppelung/P -Doppelunternehmen -Doppelventil -Doppelventilbeschaltung -Doppelverdiener -Doppelwhrung/P -Doppelwaffe -Doppelweltmeister -Doppelwirkung/P -Doppelzhlung -Doppelzaun -Doppelzentner/S -Doppelzimmer/N -Doppelzone -Dopplung/P -Dora/S -Dorado -Dorf/ET -Dorfbevlkerung -Dorfbewohner -Dorfeinwohner -Dorfgemeinschaft -Dorfkapelle -Dorfkaplan -Dorfkirche -Dorfmusik -Dorfpfarrer -Dorfplatz -Dorfpolizist/P -Dorfrand -Dorfschne/N -Dorfschullehrer -Dorfschwalben -Dorfstolz -Dorftratsch/T -Dorftrottel -Dorfwirtschaft -Doris -Dorn/PS -Dornenkrone -Dornier/S -Dornrschen/S -Dorothee/S -Dorsch/EPST -Dortmund/RS -Dortmunder/FNS -Dose/N -Dosenbier -Dosenfleisch -Dosenffner/N -Dosierens -Dosiergert/T -Dosierparameter -Dosierpumpe/N -Dosierspritze/N -Dosierung/P -Dosimeter/NS -Dosis -Dosiswert/EPST -Dossier/S -Dotbuffer/S -Dotierens -Dotierung/P -Dotoffset/S -Dotposition/P -Dotreihe/N -Dotter/N -Dotterblume/N -Double/S -Dover -Dow -Downloads -Dozent/FP -Dr -Dr. -Drhte/N -Drngens -Drache/N -Drachenboot/EPST -Drachenkampf -Drachentier/S -Drachme/N -Dracula/S -Dragee/S -Drageeform -Dragoner -Drage/S -Draht/T -Drahtanschluss/Tp -Drahtbein/EPS -Drahtbeinchen -Drahtbrcken -Drahtbrste -Drahtesel -Drahtgeflecht/EPT -Drahtgitter -Drahtseil -Drahtseilakt/T -Drahtseilbahn -Drahtstck/EPST -Drahtwarenfabrik -Drahtweberei -Drahtzange/N -Drahtzaun -Drainage/N -Drama/S -Dramatik/R -Dramatiker/FNS -Dramatikerpreis/EPT -Dramatisierens -Dramatisierung/P -Dramaturg/P -Dramaturgentagung -Dramaturgie -Dramen -Dramenfragment -Dramenstoff -Drangperiode -Drangs -Drangzeit -Draufgnger/FNS -Draufgngertum -Draufgabe/N -Draufsicht -Drechsler -Drechslerei/P -Dreck/ST -Dreckhaufen/S -Drecksache/N -Drecksarbeit -Dreckszeug -Drehachse/N -Drehantrieb -Dreharbeit/P -Drehbnke/N -Drehbank/P -Drehbewegung/P -Drehbleistift/EPT -Drehbcher/N -Drehbhne/N -Drehbuch/T -Drehbuchautor -Drehbuchschreiber -Drehdurchfhrung -Drehens -Drehentriegelung -Dreher/FNS -Drehfrequenz -Drehgeber/N -Drehgelenke/N -Drehgestell -Drehgriff/EPS -Drehimpuls/EPT -Drehknpfe/N -Drehknopf/ST -Drehkranz -Drehkreuz/EPT -Drehlnge/N -Drehleiter -Drehmaschine/N -Drehmoment/EPS -Drehorgel -Drehpotentiometer/NS -Drehpoti -Drehpunkt/EPT -Drehrichtung/P -Drehrichtungserkennung -Drehscheibe/N -Drehsinn/S -Drehstrom -Drehstromfrequenz -Drehstrommotor/PS -Drehsthle/N -Drehstuhl/S -Drehteil/EPS -Drehtransformation/P -Drehtr/EP -Drehung/P -Drehwinkel/NS -Drehwinkelermittlung -Drehwinkelgeber -Drehzahl/P -Drehzahlbestimmung -Drehzahlerhhung -Drehzahlmesser -Drehzahlmessung -Drehzahlsteller -Dreieck/EPS -Dreieckausknfte -Dreieckauskunft -Dreiecksflug -Dreieckstuch -Dreiecksverhltnis/Qq -Dreiecksverkehr -Dreiergruppe/N -Dreiermannschaft/P -Dreifaltigkeit -Dreifu/Tp -Dreijahresabkommen -Dreijahresplan/ST -Dreijahresvertrag/STp -Dreiklang -Dreiknigstag -Dreilndereck -Dreimchteabkommen -Dreimchtekonferenz -Dreimeilenzone/N -Dreimonatsoption/P -Dreimonatspreis/EPT -Dreimonatszeitraum -Dreingabe/N -Dreirder/N -Dreirad -Dreiradfahrzeuge -Dreiradklasse -Dreiigern -Dreisatz -Dreistaatentheorie -Dreistigkeit/P -Dreitagewoche -Dreiteilen/JS -Dreivierteljahr -Dreiviertelmehrheit -Dreivierteltakt/T -Dreizimmer -Dreschflegel/N -Dresden/S -Dresdner/FN -Dress/ET -Dresseur/EPS -Dressman -Dressur/P -Dressuraufgaben -Dressurpferde -Dressurpreis/EPT -Dressurreiten -Dressurreiter -Dribbelknstler/S -Drift -Drilling/EPS -Drillingstaufe -Dringlichkeit -Dringlichkeitsantrag/STp -Dringlichkeitslisten -Dringlichkeitsstufe/N -Drink/S -Dritteln -Drittels -Drittklssler/FNS -Drittlnder -Drittmittel/NS -Drittstaaten -Droge/N -Drogenbarone -Drogengefasel -Drogengeheimdienst -Drogengelder -Drogenhandel/S -Drogenproblem/S -Drogenschmuggelzwecke -Drogenwelt -Drogerie/N -Drogeriekette -Drogist/P -Drohbrief/EPT -Drohens -Drohung/P -Dromedar/EPS -Droschke/N -Drossel/J -Drosselns -Drckeberger/NS -Drckebergereien -Drcker/N -Drse/N -Druck/RS -Drucknderung -Druckabfall/S -Druckamplitude -Druckanstieg -Druckanzeige/N -Druckaufbau -Druckaufnehmer/N -Druckauftrge/N -Druckausgabe -Druckbalken -Druckbarkeit -Druckbefehl/EPS -Druckbeginn -Druckbelastung -Druckbereich -Druckbereitschaft -Druckbetrieb -Druckbild -Druckbilddarstellung -Druckbildfenster -Druckbgen -Druckbreite -Druckbuchstabe/N -Druckbuchstaben/S -Druckdichte -Druckeinstellung -Druckens -Druckentspannung -Drucker/NS -Druckeranpassung/P -Druckeranschluss/Tp -Druckeransteuerung -Druckerausgabe -Druckerausgang -Druckerbefehl/EPS -Druckerbereich/EPS -Druckerbild -Druckerbilddarstellung/P -Druckerbuffer/S -Druckerei/P -Druckereibetrieb -Druckereigewerkschaft -Druckereinstellung/P -Druckerfamilie/N -Druckerfunktion/P -Druckergehuse/S -Druckergeneration/P -Druckerhardware -Druckerhhung -Druckerinitialisierung/P -Druckerinstallation/P -Druckerinterface/S -Druckerkabel -Druckerkombination/P -Druckerlaubnis/q -Druckermagnet/PS -Druckermechanik/P -Druckermotor -Druckernadel/N -Druckerplatine/N -Druckerprogramm/EPS -Druckerpuffer -Druckerregal -Druckerschlitz -Druckerschnittstelle/N -Druckerschwrze -Druckerseite -Druckerserie -Druckersteckverbinder -Druckersteuerzeichen -Druckertask -Druckerteil/S -Druckertreiber/S -Druckertyp/PS -Druckerverbindungskabel -Druckexemplare -Druckfarbe/N -Druckfehler/N -Druckfehlerverzeichnis/Qq -Druckfestigkeit -Druckformat -Druckfunktion/P -Druckgeber -Druckgeflle -Druckgeschwindigkeit -Druckgrafik -Druckgraphik -Druckhardware -Druckhaus/Tp -Druckimpulsen -Druckkabinen -Druckkammer/N -Druckkapselung -Druckknpfe/N -Druckknopf -Druckkpfe -Druckkoeffizient -Druckkopf/ST -Druckkopfbelastung -Druckkopfhalteschrauben -Druckkopfjustierung -Druckkopflebensdauer -Druckkopfmotor -Druckkopfnadel/N -Druckkopftausch -Druckkopfwagen/S -Druckkostenanhebung/P -Drucklegung -Druckleistung -Druckluft -Druckluftanschluss/Tp -Druckmaschine/N -Druckmechanik -Druckmechanismus -Druckmedium/S -Druckmessdose -Druckmesser -Druckmessstelle/N -Druckmessung -Druckmesswerte -Druckmittel -Druckmodus -Drucknadelansteuerung -Drucknadelsteuerung -Druckposition/P -Druckpresse -Druckprinzip -Druckprogramm -Druckpuffer -Druckpunkt -Druckrand -Druckregelung -Druckrichtung -Druckroutine -Drucksache/N -Drucksachengebhren -Druckschalter/NS -Druckschlgen -Druckschlitz -Druckschraube -Druckschrift -Druckschwankung/P -Druckseite/N -Drucksensor/P -Drucksimulator -Druckspitze/N -Drucksteuerleitung/P -Drucksteuerzeichen -Druckstck/E -Drucktaste/NR -Drucktaster/N -Drucktechnik/P -Druckunterschied/E -Druckverhltnis/Qq -Druckverlauf/Sp -Druckvorgang/ST -Druckvorlagen -Druckvorrichtung -Druckwasser -Druckweise -Druckwelle/N -Druckwerk/EPST -Druckwerktest -Druckwert/E -Druckzeichen -Druckzeile/N -Druckzeilenhhen -Druide/N -Drusen -Dschibuti/S -Dschingis -Dschungel/S -Dschungelbuch -Dschungelkmpfer/N -Dschungelkampf -Dschungelpfade/N -Dfte/N -Dne/N -Dngegert -Dngekalk -Dngemaschine -Dngemittel/NS -Dngemittelanlagen -Dngemittelfabrik -Dngemittelgeschftes -Dngens -Dnger/NS -Dngung/P -Dnkirchen -Dnndarm/S -Dnndruckpapier/S -Dnnschiss/T -Drer/S -Drftigkeit -Drregebiete -Drrenmatt/S -Dse/N -Dsenantrieb -Dsenbomber -Dsenclipper -Dsenflugzeug/EPS -Dsenjger/S -Dsenkampfflugzeug -Dsenmaschinen -Dsenpiloten -Dsenstrecke -Dsentreiber -Dsentrieb/S -Dsenverkabelung -Dsenverkehrsflughfen -Dsenverkehrsmaschine -Dsseldorf/RS -Dsseldorfer/FNS -Dsterkeit -Dualismus -Dualitt -Dubai/S -Dubcek/S -Dublette/N -Dublin -Dudelsack -Dudelsackpfeifer/N -Duden -Duell/EPS -Duett/EPS -Duft -Duftnote/N -Duftprobe/N -Duftstoff/EPST -Duftwasser -Duftwolke -Duisburg/S -Dukaten -Duktus -Duldens -Duldsamkeit -Duldung/P -Dumas -Dummerchenrolle -Dummheit/P -Dummkpfe/N -Dummkopf/ST -Dummy/S -Dummyfunktion/P -Dumpfheit -Dumpingpreise/N -Dung/ST -Dunkelbleiben -Dunkelheit -Dunkelkammer -Dunkelmnner/N -Dunkeln -Dunst/T -Dunstabzugshaube/N -Dunsthimmel -Dunstkreis/PT -Dunstwolke/N -Duo/S -Duplexdruck -Duplikat/EPT -Duplikationsrate -Duplizierens -Duplizierung/P -Duplizitt -Duralith -Durcharbeitens -Durcharbeitung/P -Durchblick/S -Durchblutung -Durchblutungsstrung -Durchbrche/N -Durchbruch/S -Durchbruchsoffensive -Durchdringens -Durchdringung/P -Durchdrcken -Durcheinanders -Durchfahrten -Durchfahrtsschein -Durchfall/S -Durchfallquote/N -Durchfluss/T -Durchflusserfassung -Durchflussmesser/N -Durchflussmessung -Durchflussquerschnitte -Durchflusszhler -Durchfluten/JS -Durchfhrens -Durchfhrung/P -Durchfhrungsauftrag/STp -Durchfhrungsbefugnis/q -Durchgabe -Durchgang/Sp -Durchgangslager -Durchgangsstation/P -Durchgangsstrae/N -Durchgangsstudium/S -Durchgangsverkehr/S -Durchhaltebefehl -Durchhalteparole/N -Durchhaltevermgen/S -Durchhaltungsvermgens -Durchkontaktierung -Durchkontaktierungsplatine -Durchlssigkeit -Durchlass/Tp -Durchlaucht -Durchlauf/STp -Durchlaufrichtung -Durchlaufverkehr -Durchlaufzeit -Durchleuchtens -Durchleuchtung/P -Durchmrsche/N -Durchmarsch/T -Durchmarscherlaubnis/q -Durchmesser/S -Durchmischens -Durchmischung/P -Durchquerens -Durchquerung/P -Durchreisevisum -Durchsatz -Durchschlag/STp -Durchschlagpapier/S -Durchschlagskraft -Durchschleifen/JS -Durchschnitt/EPST -Durchschnittsalter -Durchschnittsanstieg -Durchschnittsbetrag/STp -Durchschnittsbildung -Durchschnittsbrgers -Durchschnittseinkommen -Durchschnittsergebnis/Qq -Durchschnittsertrag/STp -Durchschnittsgetrnk -Durchschnittsgewicht -Durchschnittsgewinne -Durchschnittslhne -Durchschnittslohn -Durchschnittsmeinung -Durchschnittsmiete/N -Durchschnittspreis/EPT -Durchschnittstief -Durchschnittsverbrauch -Durchschnittswein -Durchschnittswert/P -Durchschreiten/JS -Durchschrift/P -Durchschuss/Tp -Durchsetzbarkeit -Durchsetzens -Durchsetzung/P -Durchsetzungschance/N -Durchsetzungsvermgen/S -Durchsicht/P -Durchsteiger/NS -Durchsuchens -Durchsuchung/P -Durchsuchungsbefehl/EPS -Durchtriebenheit -Durchwahl -Durchzug/ST -Durst/TW -Durstlscher -Durststrecke/N -Duschbad -Duschnische/N -Dusel -Dusseligkeit/P -Dussligkeit/P -Dutt/ES -Dutzend/P -Dynamik -Dynamikumfang/ST -Dynamisieren/JS -Dynamit/S -Dynamitladung -Dynamo/S -Dynamomaschine -Dynastie/N -Dynastiegrnder -Dyslexie/N -EDV -EFTA -EG -EKG -EM -EPROM -ETH -EU -EWG -EWS -EWU -Ebbe/N -Ebenbild/RT -Ebenheit -Ebenholz -Eber/NS -Eberhard/S -Ebert/SW -Echnaton/S -Echo/S -Echoabstnde -Echoerkennung -Echolnge -Echolaufzeit -Echolot -Echomessung -Echomethode -Echosignal/EPS -Echoverfahren/S -Echozeit -Echozeitmessung -Echtheit -Echtzeit -Echtzeitaufgaben -Echtzeitbedingung/P -Echtzeitbetriebssystem/EPS -Echtzeiteigenschaften -Echtzeitkopplung/P -Echtzeitreaktion/P -Echtzeituhr -Echtzeitverarbeitung -Eckball/Sp -Eckchen/S -Eckenklarheit -Eckenschliff -Eckernfrde -Eckgrundstcke -Ecklage -Eckpfeiler/S -Eckpltze/N -Eckplatz/T -Eckstein -Eckzhne/N -Eckzahn/ST -Eckzimmer -Eckzylinder -Eckzylinderansteuerung -Eckzylinderautomatik/P -Economyklasse -Ecu/S -Ecuador -Edeka -Edelbranntwein -Edelgas/T -Edelgaskonfiguration -Edelhlzer -Edelknabe -Edelmnner/N -Edelmann/ST -Edelmenschen -Edelmetall/EPS -Edelmetallerzeugnis/Qq -Edelmetallprodukt/EP -Edelmut -Edelobstgarten -Edelpelze -Edelstahl -Edelstahlindustrie -Edelstahlproduzenten -Edelstahlwerk -Edelstein/EPS -Edelsteinkette -Edeltannen -Edeltraud/S -Edelwei/EPT -Edelwildleder -Eden/S -Eder/S -Edinburgh -Edison/S -Edith/S -Edition/P -Editor/PS -Editorial -Editorinstallation -Edmund/S -Edukation -Edukt/EPST -Eduscho -Efeu/S -Effekt/EPST -Effektenabteilung -Effektenanlage -Effektenbrsen -Effektenhndler/N -Effektenhandel/S -Effektenmakler/S -Effektenmarkt/STp -Effektenschalter -Effekthascherei -Effektivitt -Effektivverzinsung -Effizienz -Effizienzgewinn/EPS -Effizienzsteigerung/P -Effizienzverbesserung -Effizienzverlust/EPST -Egalisierens -Egalisierung/P -Egel/NS -Egge/N -Ego/NS -Egoismen -Egoismus -Egoist/FP -Egon/S -Egozentrik -Eheanbahnung/P -Eheangebote -Eheberater/S -Eheberatung -Ehebett/T -Ehebrecher/FNS -Ehebrche/N -Ehebruch/S -Ehefrau/P -Ehefrieden -Ehegatte/FN -Ehegefhrte/N -Ehegefhrtin -Ehegerchte -Ehegesetz/T -Eheglck -Ehehlfte -Eheinstitut -Ehejahr/E -Ehekandidat/P -Ehekonflikte -Ehekrach -Eheleben/S -Eheleute/N -Ehelosigkeit/P -Ehemnner/N -Ehemann/T -Ehen -Ehepaar/EPST -Ehepartner/FNS -Ehepraxis -Eherecht/ST -Eheregister -Ehering/EPST -Ehescheidung -Ehescheidungsgesetz -Ehescheidungsgrund -Ehescheidungsklage -Ehescheidungsprozesse -Ehescheidungsrecht -Eheschlieung -Eheseminar -Ehestnde/N -Ehestand/T -Ehesteuer -Ehestifter/FNS -Ehestreit/S -Ehetragdie -Ehevermittlung -Eheversprechen/S -Ehevertrag/Tp -Ehezwist -Ehrabschneider/FNS -Ehrbarkeit -Ehrbegriff/EPS -Ehrenmter/N -Ehrenabzeichen -Ehrenamt/ST -Ehrenbataillon/S -Ehrenbrger/NS -Ehrenbrgerbrief -Ehrenbrgerrecht -Ehrenbrgerschaft -Ehrendame/N -Ehrendoktor/PS -Ehrenerklrung -Ehrenformation/P -Ehrenfriedhfe -Ehrengste/N -Ehrengast -Ehrengeleit -Ehrengericht/ET -Ehrenhandel/S -Ehrenkodex -Ehrenlegion -Ehrenliste -Ehrenmnner -Ehrenmann/ST -Ehrenmitglied/RST -Ehrenname/N -Ehrenpltze/N -Ehrenplatz -Ehrenprsident/P -Ehrenpreis/EPT -Ehrenrechte/N -Ehrenrunde/N -Ehrens -Ehrensache/N -Ehrenschuld/P -Ehrensenator -Ehrenspalier -Ehrentag/EPT -Ehrentitel/N -Ehrentor -Ehrentreffer -Ehrentribne/N -Ehrenvorsitzende/N -Ehrenwache/N -Ehrenwort/T -Ehrenzeichen/S -Ehrerbieten/JS -Ehrfurcht -Ehrgefhl/S -Ehrgeiz/T -Ehrlichkeit -Ehrlosigkeit -Ehrsamkeit -Ehrung/P -Ehrungsliste/N -Ei/RS -Eiabstoung -Eibe/N -Eichamt -Eichel/N -Eichenbalken -Eichenbestnde -Eichengrund -Eichens -Eichentonne/N -Eichenwald -Eichfaktor/P -Eichhrnchen/S -Eichhorn -Eichktzchen -Eichmeister/S -Eichmessung -Eichparameter -Eichtonnen -Eichung/P -Eid/EPT -Eidechse/N -Eidgenosse/N -Eidgenossenschaft -Eidotter/NS -Eierangebot -Eierbecher/N -Eiereinfuhr -Eiergeschft -Eiergrohndler -Eierkuchen/S -Eiermarkt/ST -Eierproduktion -Eierschale -Eierschwemme -Eiersptzle -Eierstcke -Eieruhr/P -Eifel -Eifelberge -Eifer/S -Eifersucht -Eifersuchtsszene -Eiffelturm -Eigelb/EPS -Eigenart/P -Eigenautomatik/P -Eigenbau -Eigenbedarf -Eigenbesitz -Eigenbetrieb -Eigenbrtler/NS -Eigendynamik -Eigenentwicklung/P -Eigenerfahrung -Eigenfabrikat/EPT -Eigenfertigungsanteil -Eigenfinanzierung -Eigenfrequenz -Eigengesetzlichkeit -Eigengewicht/EPST -Eigenheim/EPST -Eigenheit/P -Eigenherstellung -Eigeninitiative -Eigeninteresse/N -Eigenkapital/S -Eigenkapitalbasis -Eigenkapitaldeckung -Eigenkapitalien -Eigenkapitalverhltnis/Qq -Eigenleben/S -Eigenliebe/N -Eigenlob -Eigenmchtigkeit/P -Eigenmittel -Eigenname/N -Eigennamen/S -Eigennotierung/P -Eigennutz/T -Eigennutzung -Eigenproduktion/P -Eigenrauschen -Eigenschaft/P -Eigenschaftswrter/N -Eigenschaftswort/T -Eigensicherheit -Eigensinn/ST -Eigenstndigkeit -Eigentmer/FNS -Eigentmerschaft -Eigentmlichkeit/P -Eigentum/S -Eigentumsanspruch -Eigentumsbildung -Eigentumsdelikte -Eigentumsgarantie -Eigentumspolitik -Eigentumsrecht/ET -Eigentumsschutz -Eigentumsbergang -Eigentumsbertragung -Eigentumsverhltnis/Qq -Eigentumswohnung/P -Eigenvektor/PS -Eigenverantwortlichkeit/P -Eigenverantwortung -Eigenvermgen -Eigenvertrieb -Eigenwechsel/NS -Eigenwert/EPST -Eigenwille/N -Eigenwillen/S -Eigenwilligkeit -Eigernordwand -Eignens -Eigner/N -Eignung/P -Eignungsprfung/P -Eiland/T -Eilauftrag/STp -Eilbedrftigkeit -Eilbestellung -Eilbote/N -Eilbrief/EPT -Eileiter/NS -Eilfertigkeit -Eilfracht/P -Eilgtern -Eilgut/T -Eilpckchen/S -Eiltempo -Eilzug/STp -Eilzuschlge -Eilzuschrift/P -Eilzustellung/P -Eimer/NS -Einakter/NS -Einarbeitens -Einarbeitung/P -Einarbeitungszeit -Einbnde/N -Einbahnstrae/N -Einbalsamierens -Einbalsamierung/P -Einband -Einbau -Einbaudrucker -Einbaudruckerversion -Einbaugehuse -Einbaugert -Einbaukche/N -Einbaulage -Einbaumglichkeit/P -Einbaumodalitt -Einbaumodell -Einbauort -Einbauprobleme -Einbaurahmen/S -Einbauraum/STp -Einbausatz -Einbauschrnke -Einbausituation/P -Einbaustelle -Einbauteile -Einbautiefe -Einbautypen -Einbauvoraussetzung/P -Einbauvorschlag/STp -Einbauvorschriften -Einbauwannen -Einbauzeichnung/P -Einberufens -Einberufung/P -Einbettens -Einbettung/P -Einbettzimmer/N -Einbeziehens -Einbeziehung/P -Einbildens -Einbildung/P -Einbindens -Einbindung/P -Einblendens -Einblendung/P -Einblick/EPS -Einbrecher/N -Einbrecherbande -Einbrecherknig -Einbrche/N -Einbruch/S -Einbruchhhe -Einbruchschlitz -Einbruchschneiden -Einbruchsdiebstahl -Einbruchswerkzeug -Einbruchtiefe/N -Einbuchen/JS -Einbuchten/JS -Einbue/N -Eindmmens -Eindmmung/P -Eindmmungspolitik -Eindeutigkeit -Eindringens -Eindringlichkeit -Eindringling/EPS -Eindruck/S -Einehe -Eineindeutigkeit/P -Einengens -Einengung/P -Einfrbens -Einfrbung/P -Einfachheit -Einfall/Sp -Einfallsreichtum -Einfallswinkel/NS -Einfalt -Einfaltspinsel/NS -Einfamilienhaus/Tp -Einfamilienhausbesitzer -Einfamilienvilla -Einfassens -Einfassung/P -Einflstern/JS -Einflugschneise -Einfluss/Tp -Einflussbereich/EPS -Einflussgre/N -Einflussmglichkeit/P -Einflussnahme -Einflusszone -Einfrmigkeit -Einfrierens -Einfrierung/P -Einfgemodus -Einfgens -Einfgung/P -Einfhlens -Einfhlung/P -Einfhlungskraft -Einfhlungsvermgen/S -Einfhrens -Einfhrung/P -Einfhrungstage -Einfhrungszeit -Einflldruck -Einfuhrantrge -Einfuhrausschusses -Einfuhrbedarf -Einfuhrbestimmung/P -Einfuhrbewilligung/P -Einfuhrfirmen -Einfuhrgenehmigung/P -Einfuhrkohle -Einfuhrkontingent/E -Einfuhrlizenzen -Einfuhrmengen -Einfuhrmglichkeit/P -Einfuhrpolitik -Einfuhrquote/N -Einfuhrsperre -Einfuhrstelle -Einfuhrstrom -Einfuhrberschuss/Tp -Einfuhrverbot/EPST -Einfuhrvolumen -Einfuhrzlle -Einfuhrzoll -Eingabe -Eingabeaufforderung -Eingabedaten -Eingabedialog/E -Eingabefeld/R -Eingabefenster/NS -Eingabeformat -Eingabegert/EPS -Eingabekanal -Eingabemaske/N -Eingabemodus -Eingabeparameter/N -Eingabestring/S -Eingabetastatur/P -Eingabetaste/N -Eingabeterm -Eingabewert/EPST -Eingang/Tp -Eingangsbedingung/P -Eingangsdaten -Eingangsdiode -Eingangsgre/N -Eingangshalle/N -Eingangsimpuls/EPT -Eingangsklemmen -Eingangsklemmengruppen -Eingangskontrolle/N -Eingangsleistung -Eingangsmonolog -Eingangsmultiplexer -Eingangspegel -Eingangspin/S -Eingangsplatine -Eingangspost -Eingangspuffer -Eingangsraum/STp -Eingangsreferat -Eingangsschaltkreis/E -Eingangssichtkontrolle -Eingangssignal/E -Eingangsspannung/P -Eingangsteil -Eingangstest -Eingangstor/EPS -Eingangstrigger -Eingangsverbindung/P -Eingangszustand/S -Eingebens -Eingebung/P -Eingehens -Eingehung/P -Eingestndnis/Qq -Eingeweide/N -Eingewhnens -Eingewhnung/P -Eingliederns -Eingliederung/P -Eingreifens -Eingrenzens -Eingrenzung/P -Eingriffes -Eingriffs -Eingriffsmglichkeit/P -Einhalt/JST -Einheit/P -Einheitlichkeit -Einheitsbauten -Einheitsbestrebung/P -Einheitseinrichtung -Einheitsgemeinden -Einheitsgesellschaft -Einheitsgewerkschaften -Einheitskandidat/P -Einheitskurse -Einheitsliste -Einheitsnummer -Einheitspreis/EPT -Einheitsstze -Einheitsspannung -Einheitsstaat/P -Einheitsstreben/S -Einheitstarif -Einheitsvektor/PS -Einheitsverpackung -Einheitswert/ET -Einhrner/N -Einholens -Einholung/P -Einhorn/S -Einigens -Einigkeit -Einigung/P -Einigungsbewegung -Einigungsform -Einigungsformel -Einigungskrieg -Einigungspolitik -Einigungsprozess/EPT -Einigungsversuch -Einjahresvertrag/STp -Einkufer/FNS -Einkanal -Einkanalsystem/EPS -Einkauf/Sp -Einkaufsassistent -Einkaufsbedarf -Einkaufsbedingung/P -Einkaufsermchtigung/P -Einkaufsfhrer -Einkaufsgelegenheit -Einkaufsgesellschaft -Einkaufskorb -Einkaufsmglichkeit/P -Einkaufsnetz/EPT -Einkaufspotential/EPS -Einkaufspotenzial/EPS -Einkaufspreis/ET -Einkaufsrecherchen -Einkaufsstrae/N -Einkaufstasche/N -Einkaufstipp/S -Einkaufswochenende -Einkaufszentralen -Einkaufszentren -Einkaufszentrum/S -Einkehr -Einkellerungspreis -Einklang/Sp -Einkommen/S -Einkommensart -Einkommensempfnger -Einkommenserhhung/P -Einkommenserklrung -Einkommenshhe -Einkommensklassen -Einkommenspolitik -Einkommensrckstand -Einkommenssteigerung/P -Einkommensstufe/N -Einkommensteuer/N -Einkommensteuererklrung/P -Einkommensteuergesetz -Einkommensteuersenkung -Einkommensverlust -Einkommensvorstellung -Einkommenswhrung -Einkommenswnsche -Einkoppeln/JS -Einkreisens -Einkreisung/P -Einknfte/N -Einladens -Einladung/P -Einladungsliste/N -Einlage/N -Einlagekonto -Einlagengeschft -Einlagenschutzes -Einlagensicherungsfonds -Einlagensicherungsschutz -Einlagensicherungsverein -Einlagenversicherung -Einlagenzuwachs -Einlagepflicht -Einlagerns -Einlagerung/P -Einlass/JTp -Einlassens -Einlauf/Sp -Einlegebleche -Einleger -Einleitens -Einleitung/P -Einlieferns -Einlieferung/P -Einlieferungsschein/EPT -Einlieger/N -Einlsens -Einlsung/P -Einlsungsstellen -Einltversion/P -Einmrsche/N -Einmaligkeit -Einmalzahlung -Einmannbetrieb/EPST -Einmarsch/T -Einmischens -Einmischung/P -Einmischungsrecht -Einmndens -Einmndung/P -Einnahme -Einnahmearten -Einnahmeausfall/Sp -Einnahmenminderung -Einnahmequelle -Einnahmeschtzung/P -Einnahmeverlust -Einde/N -Einordnens -Einordnung/P -Einparteiensystem -Einpendeln/S -Einpflanzens -Einpflanzung/P -Einplatinencomputer -Einplatinensystems -Einprgsamkeit -Einpunktaufhngung -Einquartierens -Einquartierung/P -Einrder/N -Einrad/S -Einreihungsbescheid -Einreisedokument -Einreiseerlaubnis/q -Einreisegenehmigung/P -Einreiseverweigerung -Einreisevisa -Einreisevisum -Einrichtens -Einrichtung/P -Einrichtungsbranche -Einrichtungsgegenstnde/N -Einrichtungsgegenstand/T -Einriss/EPT -Einrckens -Einrckung/P -Einstze/N -Einsamkeit -Einsatz/T -Einsatzabrechnung -Einsatzarten -Einsatzbedingung/P -Einsatzbereich/EPS -Einsatzbereitschaft -Einsatzfhigkeit -Einsatzflle/N -Einsatzfahrt -Einsatzfreude -Einsatzgebiet/EPST -Einsatzgrenze -Einsatzgruppen -Einsatzkapital -Einsatzkontrolle -Einsatzmglichkeit/P -Einsatzort/EPST -Einsatzplatz/T -Einsatzreife -Einsatzspektrum -Einsatzumgebung -Einsatzwagen -Einsatzzahlung -Einsatzzeit -Einsatzzentrale/N -Einschtzens -Einschtzung/P -Einschaltbegrenzung -Einschaltens -Einschaltfunktion/P -Einschaltquote/N -Einschaltsequenz -Einschaltstrom -Einschaltstrombegrenzung -Einschaltung/P -Einschaltverhalten -Einschaltversuche/N -Einschaltvorgang -Einschaltziffern -Einschiebens -Einschiebung/P -Einschiffens -Einschiffung/P -Einschlag/STp -Einschleifen -Einschlieens -Einschlieung/P -Einschluss/Tp -Einschmelzung -Einschnitt/EPT -Einschnren/JS -Einschrnkens -Einschrnkung/P -Einschraubgewinde -Einschraubhilfe -Einschraubmuffe/N -Einschreibebrief/EPT -Einschreibegebhr/P -Einschreibens -Einschreibung/P -Einschbe/N -Einschchterns -Einschchterung/P -Einschchterungsversuch/EPS -Einschub -Einschubgehuse -Einschubgerte -Einschubschlitz -Einschulens -Einschulung/P -Einschuss/Tp -Einschussstelle/N -Einseitigkeit -Einsen -Einsendens -Einsender/N -Einsendeschluss/Tp -Einsendetermin -Einsendung/P -Einsendungstermin -Einsetzbarkeit -Einsetzens -Einsetzung/P -Einsicht/P -Einsichtnahme/N -Einsiedler/FNS -Einsitzer -Einspannens -Einspannung/P -Einsparens -Einsparung/P -Einsparungsmanahme/N -Einspeiseadapter -Einspeisens -Einspeisung/P -Einsprache/N -Einsprengsel -Einsprche/N -Einspruch/ST -Einspruchsgrnde -Einspruchsrecht/EPST -Einsprungadressen -Einstandskosten -Einstandspreis/EPT -Einsteiger/NS -Einsteigerpreis/P -Einstein/S -Einstellbereich -Einstellens -Einstellgre/N -Einstellschritte -Einstelltabelle -Einstellung/P -Einstellwert/EPST -Einstiegsmarke -Einstiegssignal/E -Einstimmigkeit -Einstimmigkeitsprinzip/S -Einstimmigkeitsregel/N -Einstreuens -Einstreuung/P -Einstufens -Einstufung/P -Einsturz/T -Eintagsfliege/N -Eintauschmglichkeit -Einteilens -Einteilung/P -Eintnigkeit -Eintopf -Eintrglichkeit -Eintracht -Eintrag/JSp -Eintreibens -Eintreibung/P -Eintritte/N -Eintritts -Eintrittsalter -Eintrittsausweis/EPT -Eintrittsgeld/R -Eintrittskarte/N -Eintrittskartenverkauf/Sp -Eintrittswnsche -Einbens -Einbung/P -Einverleibens -Einverleibung/P -Einvernehmen/S -Einverstndnis/Qq -Einwnde/N -Einwahl -Einwand/T -Einwanderer/NS -Einwanderns -Einwanderung/P -Einwanderungsbehrde -Einwanderungsquote -Einweihens -Einweihung/P -Einweisens -Einweisung/P -Einweisungsflug/STp -Einwendens -Einwendung/P -Einwickelpapier/S -Einwilligens -Einwilligung/P -Einwirkens -Einwirkung/P -Einwohner/FNS -Einwohnermeldemtern -Einwohnermeldeamt/T -Einwohnerschaft -Einwohnerzahl -Einwrfe/N -Einwurf/ST -Einzahl/J -Einzahlungsschein/EPS -Einzeichnens -Einzeichnung/P -Einzel/H -Einzelabnehmer -Einzelabstze/N -Einzeladern -Einzelaktion/P -Einzelaktionr -Einzelanfertigung/P -Einzelanschluss/T -Einzelansteuerung/P -Einzelarme -Einzelauftrag/STp -Einzelbefehle -Einzelbettigung -Einzelbewerber -Einzelbezug/STp -Einzelbit/S -Einzelbitsteuerung/P -Einzelbltter -Einzelblattzufhrung -Einzelblattzufuhr -Einzelbon -Einzelbriefen -Einzelbuchstabe/N -Einzeldaten -Einzeldefekt -Einzeldrucke/N -Einzeldurchgang -Einzelelement/EPST -Einzelentscheidung/P -Einzelerscheinung/P -Einzelerschieung -Einzelersuchen/S -Einzelexemplar/EPS -Einzelfhigkeit/P -Einzelfall/STp -Einzelfehler -Einzelfirma -Einzelfrage/N -Einzelfunktion/P -Einzelgnger/NS -Einzelgert/EPS -Einzelgeschft/E -Einzelgesprch/EPS -Einzelhndler/FNS -Einzelhandel/S -Einzelhandelskaufleute/N -Einzelhandelskunden -Einzelhandelspraxis -Einzelhandelsumstze -Einzelhandelsumsatz -Einzelhandelsumsatzzahlen -Einzelhaushalten -Einzelheft -Einzelimpulse/S -Einzelinformation/P -Einzelinteresse/N -Einzelkmpfe/NR -Einzelkmpfer/NS -Einzelkabine -Einzelkampf -Einzelkaufmann -Einzelkind -Einzelklemmen -Einzelknoten -Einzelkommando/S -Einzelkomponenten -Einzelkrzung/P -Einzelkundenpflege -Einzellage -Einzelleistung/P -Einzeller -Einzellizenz -Einzelmaschine/N -Einzelmeieln -Einzelmeisterschaften -Einzelmeldung -Einzelmenge -Einzelmessung/P -Einzelmodule -Einzelnachweis/EPT -Einzelnadel -Einzelnadelansteuerung -Einzelnummer -Einzelobjekte -Einzelperson/P -Einzelplan -Einzelplanung/P -Einzelposition/P -Einzelposten/S -Einzelpreis/EPT -Einzelprodukt/EPS -Einzelprojekte -Einzelpunkt -Einzelpunktansteuerung -Einzelradaufhngung -Einzelrechner -Einzelreisende -Einzelrennen -Einzelrichter -Einzelschicksal -Einzelschrift/P -Einzelschritt/EPST -Einzelschrittweite -Einzelsieger -Einzelsignale -Einzelspiel/ET -Einzelstaaten -Einzelsteuer -Einzelsteuergert/EPS -Einzelsteuerung -Einzelstck/EPS -Einzeltasten -Einzelteil/EPS -Einzeltne -Einzelturner -Einzelturnier -Einzelunterricht -Einzelurkunden -Einzelverkauf/Sp -Einzelversicherung/P -Einzelvertrag/STp -Einzelvorschlge -Einzelwertung -Einzelwiderstnde/N -Einzelwiderstand/S -Einzelwrtern -Einzelworte -Einzelzeichen/S -Einzelzellen -Einzelzimmer/N -Einzelzimmerzuschlag/STp -Einzigartigkeit -Einzimmerappartement -Einzug/STp -Einzugschlitz -Einzugsroute -Einzugstermin/EPS -Eis/PT -Eisbr/P -Eisbahnen -Eisbecher -Eisberg/PST -Eisbeutel/NS -Eisblumen -Eisbombe/N -Eisbrecher/NS -Eiscreme -Eisdecken -Eisdiele/N -Eisen/SW -Eisenausfuhr -Eisenbahn/P -Eisenbahnabteil/EPS -Eisenbahnanschluss/Tp -Eisenbahnbau -Eisenbahnbehrde -Eisenbahnbonds -Eisenbahnbrcken -Eisenbahndirektion/P -Eisenbahner/S -Eisenbahnerlhne -Eisenbahnerstreik -Eisenbahnfhre -Eisenbahnfahrplan -Eisenbahnfahrt -Eisenbahngesellschaften -Eisenbahngleis/EPT -Eisenbahnkatastrophe -Eisenbahnminister -Eisenbahnnetz/ET -Eisenbahnpersonal -Eisenbahnruber -Eisenbahnstation/P -Eisenbahnstrecke -Eisenbahntarife -Eisenbahnunglck/T -Eisenbahnverbindung -Eisenbahnverkehr -Eisenbahnverwaltung -Eisenbahnwagen/S -Eisenbahnwaggon/S -Eisenbearbeitung -Eisenbeschlag/STp -Eisenbeton -Eisenblech -Eisendraht -Eiseneinfuhr -Eisenerz/EPT -Eisenerzlager -Eisenerzproduktion/P -Eisenerzvorkommen -Eisenfresser -Eisengelnder -Eisengermpel -Eisengieerei -Eisengitter/N -Eisengittertore -Eisenguss/Tp -Eisenhndler/FNS -Eisenhammer/S -Eisenhandel -Eisenhtte -Eisenindustrie -Eisenkabel -Eisenkern -Eisenklopfer -Eisenkonstruktion -Eisenleiter -Eisenoxyd/EPS -Eisenproduktion/P -Eisenpumpen -Eisenrohre -Eisens -Eisenschienen -Eisenstange/N -Eisenstapel -Eisenstein -Eisentrger -Eisenverarbeitung -Eisenwaren -Eisenwarengeschfte -Eisenwarenhndler/NS -Eisenwarenhandlung/P -Eisenwarenmesse -Eisenwerk/EPT -Eisenzeit -Eisgang -Eishersteller -Eishockey/S -Eishockeymannschaft -Eiskunstlufer/FNS -Eiskunstlauf/STp -Eislufe/NR -Eislauf/Sp -Eismdchen -Eismaschinen -Eismeer -Eismitte -Eispulver -Eisrevue -Eisschnelllufer/FNS -Eisschnelllaufen -Eissport/S -Eisstar/S -Eistanz -Eistanzpaar -Eiswasser -Eiswoche -Eiswrfel/NS -Eiszapfen -Eiszeit/P -Eiszeitformen -Eitelkeit/P -Eiter -Eiwei/EPT -Eiweifuttermitteln -Eiweikrper -Eiweikonzentrat -Eiweimolekl/E -Eiweiproduktion/P -Eiweiwerte -Eizelle/N -Ekels -Eklat -Eklipse/N -Ekstase/N -Ekzem/EPS -Elaborat/EPST -Elan/S -Elastizitt -Elastizittsmodule -Elba -Elbe -Elbmndung -Elbtunnel -Elch/EPST -Elchjagd -Elefant/P -Elefantengedchtnis/Qq -Elefantenzhne -Eleganz -Elegie/N -Elektrifizieren/JS -Elektrik/R -Elektriker/NS -Elektrizitt -Elektrizittsangebot/S -Elektrizittsgesellschaft/P -Elektrizittskraftwerke -Elektrizittswerk/EPS -Elektroaktien -Elektroartikel -Elektroauto/S -Elektrobereich -Elektrobetrieb -Elektrobranche -Elektrode/N -Elektrodynamik -Elektrogert/EPT -Elektrogerteindustrie -Elektrogrohandel -Elektrogrovertrieb -Elektroheizung -Elektroherd/EPST -Elektrohydraulik -Elektroingenieur/EPS -Elektroinstallationsgeschft -Elektrokonzern -Elektrokche -Elektrolokomotive -Elektrolyse -Elektrolyt -Elektrolytkupfer -Elektromagnet/P -Elektromagnetismus -Elektromarkt/STp -Elektromeister -Elektromonteur -Elektromotor/PS -Elektron/PS -Elektronenbahn/P -Elektronenbewegung -Elektronengas/EPT -Elektronengehirn/S -Elektronenkonfiguration/P -Elektronenladung/P -Elektronenmasse/N -Elektronenmechanik -Elektronenrechner/S -Elektronenstrahl/PS -Elektronenvolt -Elektronik/PR -Elektronikanordnung -Elektronikbauteil -Elektronikeingang -Elektronikfertigung -Elektronikfirma -Elektronikgehuse -Elektronikherstellern -Elektronikingenieur -Elektronikkarten -Elektronikmae -Elektronikplatine/N -Elektronikseite -Elektroschlge -Elektroschock/S -Elektroschweien -Elektrosteiger -Elektrotechnik/R -Elektrovolt -Elektrowerkzeug -Element/EPST -Elementarladung/P -Elementarschule/N -Elementarteilchen/S -Elementarunterricht/EPST -Elends -Elendsbaracken -Elendsviertel/NS -Eleonore/S -Elfe/N -Elfenbein/S -Elfenbeinkste -Elfenbeinturm -Elfenkind -Elfmeter -Elfmeterball/Sp -Elfmeterpfiff -Elfmeterschieen -Elftklssler/FNS -Eli/S -Elias -Elimination -Eliminierens -Eliminierung/P -Elisabeth -Elite/N -Eliteformation/P -Elitegruppen -Elitetruppen -Elixier/EPS -Eliza/S -Elke/S -Elko -Ellbogen/S -Ellbogenfreiheit/P -Ellbogensto/Tp -Elle/N -Ellenbogen/S -Ellipse/N -Elssser/FNS -Elsass/T -Elster/N -Eltern -Elternbeirat -Elternbund -Elternferien -Elternhaus/Tp -Elternkampf -Elternkreis/EPT -Elternpaar -Elternrecht/S -Elternschule -Elternsprechtag/EP -Elternteil/EPS -Elternverband/ST -Elternvereinigung -Elternversammlung/P -Elternvertretung/P -Elternzimmer -Emanuel/S -Emanuela/S -Emanzipation -Emanzipierens -Emanzipierung/P -Embargo/S -Embargopolitik -Emblem/EPS -Embolie/N -Embryo/S -Embryonalentwicklung -Embryonen -Emeritierens -Emeritierung/P -Emeritus -Emigrant/P -Emigrantenroman -Emigrantenzeitung -Emigration/P -Emigrationsfrage -Emil/S -Emilia/S -Eminenz/P -Emirat/EPS -Emission/P -Emissionsergebnis/Qq -Emissionskeulen -Emissionspause -Emissionsstatistik -Emissionswert/EPST -Emittent/P -Emitter/S -Emma/S -Emmentaler -Emoticon/S -Emotion/P -Emotionalitt -Empfnge/NR -Empfnger/NS -Empfngerflche -Empfngerland -Empfngerleitung -Empfngermodus -Empfngerprogramm -Empfngerstaaten -Empfngerteil -Empfnglichkeit -Empfngnis/q -Empfngnisverhtung -Empfang/STp -Empfangsantenne -Empfangsarray/S -Empfangsbereich/EPS -Empfangsbereitschaft -Empfangsbesttigung/P -Empfangschef -Empfangsdame/N -Empfangsdaten -Empfangsgert/EPT -Empfangsgruppe -Empfangsimpedanz -Empfangsknotenpunkt -Empfangskpfe/N -Empfangskomitee/S -Empfangskopf/S -Empfangsland -Empfangsleitung -Empfangslisten -Empfangsmodus -Empfangspegel -Empfangsprogramm -Empfangspuffer -Empfangsraum/STp -Empfangsschalter/NS -Empfangsschein/EPT -Empfangsstation/P -Empfangstag/EPS -Empfangsteil -Empfangsverweigerung -Empfangsvorgang -Empfangszimmer/NS -Empfehlens -Empfehlung/P -Empfehlungsbrief -Empfehlungskurse -Empfehlungsliste -Empfehlungsschreiben/S -Empfindens -Empfindlichkeit/P -Empfindung/P -Empfindungslosigkeit -Empfindungsvermgen/S -Emphysem/EPS -Empirie -Emprens -Emprung/P -Empore/N -Emporkmmling/EPS -Emsigkeit/P -Emulation/P -Emulator/PS -Emulsion/P -Endabnehmer -Endabrechnung/P -Endabschaltung -Endanwender -Endarbeit/P -Endausbau -Endausbaustufe/N -Endbahnhof -Endbenutzer -Endbereich -Enddaten -Enddruck/S -Endeffekt -Endens -Enderfolg -Endergebnis/Qq -Endes -Endeschalter -Endfunktionstest -Endgehuse -Endgehalt -Endgert -Endkmpfe -Endkontrolle/N -Endkunde/N -Endlage/N -Endlauf/Sp -Endlichkeit -Endlsung -Endlosadresstrger -Endlosdruck -Endlosfernsehserie -Endlosformularstze -Endloshausse -Endlosigkeit/P -Endlosschleife/N -Endmontage/N -Endogamie -Endomorphismen -Endomorphismus -Endoskopie -Endphase/N -Endprodukt/EPT -Endpunkt/EPST -Endrekursion/P -Endrekursionseliminierung -Endresultat/EPST -Endrunde/N -Endschalter/NS -Endsilbe/N -Endspiel/EPS -Endspielgegner -Endspielort/E -Endspieltag -Endspurt/EPST -Endstadien -Endstadium -Endstand -Endstufe/N -Endsumme/N -Endtest/S -Endung/P -Endverbraucher/NS -Endverkaufspreise -Endwert/EPS -Endzahl/P -Endzeit -Endzeittraum/STp -Endziel/EPS -Endzustnde/N -Endzustand/ST -Energie/N -Energieagentur -Energieausfall/Sp -Energiebedarf -Energiebereich -Energiebilanz/P -Energiedebatte -Energieerhaltung -Energieerzeuger -Energieerzeugung -Energieexperte -Energiegruppe -Energiehunger -Energieinhalt -Energiekonferenz -Energiekosten -Energiekreise -Energiekrise/N -Energielcken -Energiemarkt/ST -Energieminister -Energieniveau/S -Energiepreise -Energieproblem/E -Energiequelle/N -Energiereserve -Energiesektor -Energiespektrum/S -Energietechnologie/N -Energietrger -Energieumwandlung -Energieverbrauch -Energieversorgungsanlage/N -Energiewandler/N -Engagement/S -Engel/MNS -Engelhaar -Engelsgeduld -Engerling/EPS -Englnder/FNS -England/S -Englandreisen -Englischheit/P -Englischkurse -Englischlehrer -Englischunterricht -Engpass/Tp -Engpassproblem/EPS -Engstirnigkeit -Enkel/FNS -Enkelkind/RST -Enklave/N -Enquete/N -Ensemble/S -Ensembleleistung -Ensemblespiel -Ensemblestimmen -Entuern/JS -Entartens -Entartung/P -Entbehrens -Entbehrlichkeit -Entbehrung/P -Entbindens -Entbindung/P -Entbindungsabteilung -Entbindungsgeld -Entbindungsheim/EPST -Entblens -Entblung/P -Entdeckens -Entdecker/FNS -Entdeckung/P -Entdeckungsreise -Ente/N -Entebbe -Enteignens -Enteignung/P -Enteignungsmanahmen -Enteisungsanlage/N -Entenbraten/S -Enteneier -Entenjagd -Entenmutter -Entente -Enterich/S -Entertaste -Entfaltens -Entfaltung/P -Entfaltungsmglichkeit/P -Entfernens -Entfernung/P -Entfernungsberechnung -Entfernungsbestimmung -Entfernungsmesser/S -Entfernungsmessung -Entfesselungsknstler -Entflechtens -Entflechtung/P -Entfremdens -Entfremdung/P -Entfhrens -Entfhrer/FNS -Entfhrung/P -Entgegennahme -Entgegnens -Entgegnung/P -Entgelt/EPST -Entgleisens -Entgleisung/P -Enthaarungsmittel/NS -Enthaltens -Enthaltsamkeit -Enthaltung/P -Enthllens -Enthller -Enthllung/P -Enthusiasmus -Enthusiast/P -Entindustrialisierung -Entkolonialisierung -Entkoppelns -Entkoppelung/P -Entkopplung/P -Entkrftens -Entkrftung/P -Entladebetrieb -Entladens -Entladestrme/N -Entladestrom -Entladezeit/P -Entladung/P -Entlassens -Entlassung/P -Entlassungsgesuch/EPT -Entlassungspapiere -Entlastens -Entlastung/P -Entlastungsangriff -Entlastungsgrad -Entlastungsstrae/N -Entlastungszeuge/N -Entleerens -Entleerung/P -Entlohnens -Entlohnung/P -Entlftens -Entlftung/P -Entmachtens -Entmachtung/P -Entmilitarisierung -Entminungsspezialisten -Entmndigens -Entmndigung/P -Entmutigens -Entmutigung/P -Entnahme -Entnahmestelle/N -Entnerven/JS -Entpacker/NS -Entpolitisierung -Entprellung -Entprellzeit -Entrechtens -Entrechtung/P -Entrepreneur/S -Entrichtens -Entrichtung/P -Entropie -Entrckens -Entrckung/P -Entrstens -Entrstung/P -Entsagens -Entsagung/P -Entsalzungsanlagen -Entschdigens -Entschdigung/P -Entschdigungsanspruch -Entschdigungsleistung/P -Entschdigungssummen -Entschrfens -Entschrfung/P -Entscheid/JRST -Entscheidbarkeit -Entscheidens -Entscheidungsbaum/STp -Entscheidungsbefugnis/q -Entscheidungsdruck/S -Entscheidungsebene/N -Entscheidungsfindung -Entscheidungsfindungsprozess/EPT -Entscheidungsfragen -Entscheidungsgrundlage/N -Entscheidungshilfe/N -Entscheidungskampf -Entscheidungskompetenz/P -Entscheidungskriterien -Entscheidungskriterium -Entscheidungslauf/Sp -Entscheidungsmodell -Entscheidungsmodus -Entscheidungsmuster/S -Entscheidungsprozedur/P -Entscheidungsprozess/EPT -Entscheidungsrecht -Entscheidungsregel/N -Entscheidungssituation/P -Entscheidungsspiel/EPS -Entscheidungsspielraum/STp -Entscheidungsstruktur -Entscheidungstrger/N -Entscheidungsverfahren/S -Entscheidungsverhalten/S -Entscheidungswege/N -Entscheidungszentren -Entschiedenheit -Entschlackens -Entschlackung/P -Entschlieens -Entschlieung/P -Entschlossenheit -Entschlsselns -Entschlsselung/P -Entschlsslung/P -Entschluss/Tp -Entschlussfassung/P -Entschlusskraft -Entschlussschwankung -Entschuldigens -Entschuldigung/P -Entschuldigungsgrnde -Entschuldigungsgrund/T -Entsendens -Entsendung/P -Entsetzens -Entseuchungsanstalt -Entsorgens -Entsorgung/P -Entspannens -Entspannung/P -Entspannungsbemhung/P -Entspannungsmglichkeit/P -Entspannungstendenzen -Entspannungszone -Entsprechens -Entsprechung/P -Entstehens -Entstehung/P -Entstehungsgeschichte/N -Entstehungsursache/N -Entstellens -Entstellung/P -Entstrbausteine -Entstren/JS -Enttuschens -Enttuschung/P -Enttarnens -Enttarnung/P -Entwsserns -Entwsserung/P -Entwsserungsanlage/N -Entwaffnens -Entwaffnung/P -Entwarnen/JS -Entweihens -Entweihung/P -Entwendens -Entwendung/P -Entwerfens -Entwertens -Entwertung/P -Entwertungsmaschine/N -Entwickelns -Entwickelung/P -Entwickler/NS -Entwicklerlizenz -Entwicklerversion/P -Entwicklung/P -Entwicklungsabteilung/P -Entwicklungsanlage -Entwicklungsanleihe -Entwicklungsarbeit -Entwicklungsauftrag/STp -Entwicklungsaufwand -Entwicklungsbank -Entwicklungsbemhung/P -Entwicklungsbereiches -Entwicklungscomputer -Entwicklungsdienst -Entwicklungsentscheidung -Entwicklungserfahrung -Entwicklungsfirma -Entwicklungsfonds -Entwicklungsforschung -Entwicklungsfortschritt -Entwicklungsgebiet/P -Entwicklungsgeschft -Entwicklungsgeschichte/N -Entwicklungsgeschwindigkeit -Entwicklungshardware -Entwicklungshelfer/N -Entwicklungshilfe/N -Entwicklungshilfepolitik -Entwicklungshilfsmittel -Entwicklungsingenieur -Entwicklungskommandos -Entwicklungskosten -Entwicklungskostenbeteiligung -Entwicklungskurven -Entwicklungslnder/N -Entwicklungslaboratorium -Entwicklungslabors -Entwicklungsland/ST -Entwicklungslehren -Entwicklungsleiters -Entwicklungslibrary/S -Entwicklungslinie/N -Entwicklungsmethode/N -Entwicklungsmglichkeit/P -Entwicklungsmodell -Entwicklungspaket -Entwicklungsphase/N -Entwicklungspltze -Entwicklungsplan -Entwicklungsplaner -Entwicklungsplanung -Entwicklungsprobleme -Entwicklungsprojekt/E -Entwicklungsprozess/EPT -Entwicklungsrechner -Entwicklungsschritt/EPST -Entwicklungsstaaten -Entwicklungsstand/ST -Entwicklungsstation -Entwicklungsstrategie/N -Entwicklungsstufe/N -Entwicklungssystem/EPS -Entwicklungsttigkeit -Entwicklungstechnik/P -Entwicklungstendenzen -Entwicklungsumgebung/P -Entwicklungsvorhaben/S -Entwicklungswerkzeug/EPS -Entwicklungswnsche/N -Entwicklungszeit/P -Entwicklungszentrum -Entwicklungsziel/EPST -Entwicklungszwecke/N -Entwhnens -Entwhnung/P -Entwhnungskur -Entwrfe/N -Entwurf/ST -Entwurfsentscheidung/P -Entwurfsfassung/P -Entwurfsmethode/N -Entwurfsprinzipien -Entwurfsprozess/EPT -Entwurzelns -Entwurzelung/P -Entwurzlung/P -Entzauberns -Entzauberung/P -Entzerrens -Entzerrung/P -Entziehens -Entziehung/P -Entziehungskur/P -Entzifferns -Entzifferung/P -Entzifferungsarbeit -Entzckens -Entzckung/P -Entzndbarkeit -Entzndens -Entzndung/P -Entzug/STp -Entzweiens -Entzweiung/P -Enzian/S -Enzmann/S -Enzyklopdie/N -Enzym/EPS -Enzymbiotechnologie -Epen -Epidemie/N -Epidemiologie -Epigramm -Epikur/S -Epilepsie -Epileptiker/FNS -Epilog/EPS -Epimorphismen -Epimorphismus -Episode/N -Episodendrama -Episodenpropagierung -Epizentrum -Epoche/N -Epos -Epoxiplttchen -Epoxischeibe -Epoxyd -Epromnummer -Epromversion/P -Epson -Equalizer/NS -Equipe -Erachtens -Erarbeitens -Erarbeitung/P -Erasmus -Eratosthenes -Erbrmlichkeit -Erbanlage/N -Erbansprchen -Erbanspruch/T -Erbauens -Erbauer/NS -Erbauung/P -Erbbesitz -Erbenaufgebot -Erbenaufruf -Erbens -Erbes -Erbfaktor/PS -Erbfehler/NS -Erbfeind/EPT -Erbfeindschaft -Erbfolge/N -Erbfolgekrieg -Erbgut/S -Erbin -Erbittern/JS -Erbkrankheit/P -Erblasser/FNS -Erblindens -Erblindung/P -Erbmasse -Erbmaterial -Erbmerkmale -Erbprinz -Erbrechte/S -Erbringens -Erbringung/P -Erbschden -Erbschaft/P -Erbschaftssteuer/N -Erbschein -Erbschleicher/FNS -Erbse/N -Erbsensuppe/N -Erbsteuern -Erbstck/PS -Erbsnde/N -Erbteil/EPS -Erbteilung -Erbtrger -Erbverzicht -Erdantenne/N -Erdanziehung -Erdatmosphre -Erdaushebung/P -Erdball/S -Erdbeben/S -Erdbebenaktivitt -Erdbebengebiete -Erdbebenkatastrophe -Erdbebenwarte -Erdbeere/N -Erdbeerernte -Erdbeschleunigung -Erdbevlkerung -Erdbewegung/P -Erdbohrer -Erddruck/S -Erddruckautomatik -Erddruckbetrieb -Erddruckdosen -Erddruckregelung -Erddruckregler -Erddrucksensoren -Erddruckstabilisierung -Erdeinsatz -Erdenbrger/N -Erdens -Erdgas/T -Erdgasaktien -Erdgasaussto/Tp -Erdgaseinfuhren -Erdgasgeschft -Erdgasgewinnung -Erdgasleitung -Erdgasreserven -Erdgasspeicheranlagen -Erdgastransport -Erdgaswerte -Erdgeschoss/EPT -Erdgewchs/EPT -Erdkampf -Erdkugel -Erdkunde -Erdkundeunterricht -Erdmagnetismus -Erdmantel -Erdmittelpunkt/T -Erdnuss/Mp -Erdnusskern -Erdnussl -Erdl -Erdlaktien -Erdlausschusses -Erdlbergbau -Erdlbohrung/P -Erdldestillation -Erdlembargo/S -Erdlfeld -Erdlfirmen -Erdlfrderung -Erdlgeschft/S -Erdlgesellschaften -Erdlindustriellen -Erdlkonzern/S -Erdllager -Erdlleitung -Erdllieferung/P -Erdlprodukte -Erdlproduktion -Erdlquelle -Erdlsektor -Erdlstadt -Erdlverknappung -Erdlvorkommen -Erdlwerte/N -Erdoberflche -Erdpotential/EPS -Erdpotenzial/EPS -Erdreich/S -Erdrotation -Erdrutsch/EPT -Erdsatelliten -Erdschluss/Tp -Erdschlusssuche -Erdstation/P -Erdsto/Tp -Erdteil/EPS -Erdteilkampf -Erdumdrehung/P -Erdumfang -Erdumflge/N -Erdumkreisung/P -Erdumlauf/Sp -Erdumlaufbahn/P -Erdung/P -Erdungskabel -Erdungsleitung/P -Erdverbindung/P -Erdvermessung -Erdverwehung/P -Erdwall/Sp -Erdziele -Ereignis/Qq -Ereignisablauf/Sp -Ereignisinformation/P -Ereignislosigkeit -Ereignisschleife/N -Erektion/P -Erektorbrcke -Eremit/P -Eremitage/N -Eremitenorden -Erfahrenheit -Erfahrens -Erfahrung/P -Erfahrungsaustausch/T -Erfahrungsbericht/EPS -Erfahrungssache/N -Erfahrungstatsache/N -Erfahrungstausch -Erfahrungswert/EPST -Erfassens -Erfassung/P -Erfassungsgesellschaft -Erfassungsknoten -Erfassungsmethoden -Erfassungsmodule -Erfassungssystem/EPS -Erfassungszeit -Erfindens -Erfinder/FNS -Erfinderangaben -Erfindergeist/T -Erfindergeld -Erfinderverordnung -Erfindung/P -Erfindungsgabe/N -Erfindungsreichtum -Erfolg/ST -Erfolglosigkeit -Erfolgsanteil/EPS -Erfolgsaussicht/P -Erfolgsautor/PS -Erfolgsbeteiligung/P -Erfolgsbilanz/P -Erfolgsbcher/N -Erfolgsbuch/ST -Erfolgschance/N -Erfolgseuphorie -Erfolgsfirmen -Erfolgsformel -Erfolgsgeheimnis/Qq -Erfolgshonorar -Erfolgsjahre -Erfolgsmeldung/P -Erfolgsmglichkeit/P -Erfolgsmusical -Erfolgsprovision/P -Erfolgsquote/N -Erfolgsrechnung/P -Erfolgsschlager -Erfolgsschriftsteller -Erfolgsserie/N -Erfolgstrainer -Erfolgsvoraussetzung/P -Erforderlichkeit -Erfordernis/Qq -Erforschens -Erforscher/FNS -Erforschung/P -Erfragens -Erfragung/P -Erfrierens -Erfrierung/P -Erfrischens -Erfrischung/P -Erfrischungsraum/STp -Erfrischungsstand -Erfllens -Erfllung/P -Erfllungsort/EPST -Erfllungspolitik -Erfurt -Ergnzens -Ergnzung/P -Ergnzungsabgabe/N -Ergnzungsangebot -Ergnzungseinheit/P -Ergnzungsfunktion/P -Ergnzungsgesetz -Ergnzungspaket -Ergnzungsprogramm -Ergnzungsteil/EPS -Ergnzungsvorschlag/STp -Ergnzungswahlen -Ergebenheit -Ergebens -Ergebnis/Qq -Ergebnisbericht/EPST -Ergebnisprotokoll/EPS -Ergebnisverbesserung -Ergebung/P -Ergiebigkeit -Ergonomie -Ergreifens -Ergreifung/P -Ergriffenheit -Ergrndens -Ergrndung/P -Erguss/Tp -Erhltlichkeit/P -Erhalt/JST -Erhaltens -Erhaltungsladebetrieb -Erhaltungsmanahme/N -Erhardt/S -Erhebens -Erheblichkeit -Erhebung/P -Erhebungstag -Erhebungszeitraum/STp -Erheiterns -Erheiterung/P -Erhellens -Erhellung/P -Erhhens -Erhhung/P -Erhrens -Erhrung/P -Erholens -Erholung/P -Erholungsaufenthalt -Erholungsbewegung -Erholungsgste/N -Erholungsgebiet/EPST -Erholungsheim/EPST -Erholungsmglichkeit/P -Erholungsort -Erholungspark -Erholungspause/N -Erholungsphase/N -Erholungsraum/STp -Erholungstag/EPST -Erholungsuchende/NR -Erholungsurlaub/EPT -Erholungszeit -Erholungszentrum/S -Erholzeit/P -Erich/S -Erika/S -Erinnerns -Erinnerung/P -Erinnerungsbuch -Erinnerungsstck/EPS -Erinnerungsvermgen/S -Erinnerungswert/EPST -Eritrea -Erkltens -Erkltung/P -Erkltungsgefahr -Erkltungskrankheit -Erkennbarkeit -Erkennens -Erkenntlichkeit -Erkenntnis/q -Erkenntnisgrundlage/N -Erkenntnislehre -Erkenntnisprivileg -Erkenntnisquelle/N -Erkenntnistheorie/N -Erkenntnisvermgen/S -Erkennung/P -Erkennungsmarke/N -Erkennungsmelodie -Erkennungswort/EPST -Erkennungszeichen/S -Erker/NS -Erkerfenster/NS -Erklrens -Erklrung/P -Erklrungsanstze -Erklrungsansatz/T -Erklrungsmglichkeit/P -Erklrungsmuster/NS -Erkrankens -Erkrankung/P -Erkrankungsgefahr -Erkundens -Erkundigens -Erkundigung/P -Erkundung/P -Erkundungsflug/STp -Erkundungsreise/N -Erluterns -Erluterung/P -Erlahmens -Erlahmung/P -Erlangens -Erlangung/P -Erlass/JT -Erlassens -Erlaubnis/q -Erle/N -Erlebens -Erlebnis/Qq -Erledigens -Erledigung/P -Erleichterns -Erleichterung/P -Erlernbarkeit -Erleuchtens -Erleuchtung/P -Erlknig/EPS -Erls/JRT -Erlseinbuen -Erlser/NS -Erlssteigerung/P -Ermchtigens -Ermchtigung/P -Ermigens -Ermigung/P -Ermahnens -Ermahnung/P -Ermangeln/JS -Ermattens -Ermattung/P -Ermessensentscheidung/P -Ermessensfrage/N -Ermittelns -Ermittelung/P -Ermittler/FNS -Ermittlung/P -Ermittlungsbefugnis/q -Ermittlungsbehrde/N -Ermittlungsergebnis/Qq -Ermittlungshandlung/P -Ermittlungsmanahme/N -Ermittlungsmglichkeit/P -Ermittlungsrichter/S -Ermittlungsverfahren/S -Ermglichens -Ermglichung/P -Ermordens -Ermordung/P -Ermdens -Ermdung/P -Ermdungserscheinung/P -Ermunterns -Ermunterung/P -Ermutigens -Ermutigung/P -Ernhrens -Ernhrer/NS -Ernhrung/P -Ernhrungsamt/ST -Ernhrungsfachleute/N -Ernhrungsfachmann -Ernhrungsfaktor/PS -Ernhrungslage -Ernhrungslehre/N -Ernhrungsminister/S -Ernhrungsministerium/S -Ernhrungsproblem/EPS -Ernhrungsreferent -Ernhrungsschwierigkeit/P -Ernhrungsstandard -Ernhrungsstrung -Ernhrungstherapie/N -Ernhrungsweisen -Ernhrungswirtschaft -Ernhrungswissenschaft -Ernhrungswissenschaftler/FNS -Ernhrungszustand/ST -Ernennens -Ernennung/P -Ernennungsurkunde/N -Erneuerns -Erneuerung/P -Erneuerungsrckstnde -Erneuerungsschein/PS -Erniedrigens -Erniedrigung/P -Ernstfall/STp -Ernsthaftigkeit -Ernteaussichten -Erntedankfest/ET -Ernteergebnis/Qq -Ernteertrge -Ernteerwartung/P -Erntejahr/ET -Erntemaschine/N -Ernteschden -Ernteschtzung -Erntesegen -Erntetechnik -Erntewetter -Erntezeit -Ernchterns -Ernchterung/P -Erffnens -Erffnung/P -Erffnungsabend -Erffnungsansprache/N -Erffnungsbilanz -Erffnungsfeier/N -Erffnungsgottesdienst -Erffnungskonzert -Erffnungskurs/EPT -Erffnungsphase/N -Erffnungsprogramm -Erffnungsreferat -Erffnungssitzung/P -Erffnungsspiel -Erffnungstermin -Erffnungszeremonie/N -Errterns -Errterung/P -Eroberer/NS -Eroberns -Eroberung/P -Eroberungsfeldzug/STp -Eroberungskrieg/EPT -Eroberungsrecht -Eroberungszug/Sp -Eros -Erosion/P -Erotik -Erpressbarkeit -Erpressens -Erpresser/FNS -Erpressung/P -Erpressungsgeld -Erpressungsversuch/EPST -Erprobens -Erprobung/P -Erprobungsarbeit -Erprobungsprogramm -Erprobungsstelle/N -Erquickens -Erquickung/P -Erregbarkeit -Erregens -Erreger/NS -Erregertyp -Erregung/P -Erregungsspannung/P -Erregungswert -Erreichbarkeit/P -Erreichens -Erreichung/P -Errettens -Erretter/FNS -Errettung/P -Errichtens -Errichtung/P -Errichtungskommission/P -Errorroutine/N -Errungenschaft/P -Ersatz/T -Ersatzansprche/N -Ersatzanspruch/ST -Ersatzbedarf/S -Ersatzbeschaffung -Ersatzdienst/EPT -Ersatzflamme -Ersatzgelnde -Ersatzgert/EPS -Ersatzinvestition/P -Ersatzkanister -Ersatzkarte/N -Ersatzkasse -Ersatzkomponente/N -Ersatzleistung/P -Ersatzlieferung/P -Ersatzlinie/N -Ersatzlsung -Ersatzmnner -Ersatzmann/ST -Ersatzmaterialien -Ersatzmittel/NS -Ersatzmotor/PS -Ersatzplne/N -Ersatzrder/N -Ersatzrad/ST -Ersatzraum/STp -Ersatzrechner -Ersatzreifen/S -Ersatzschaltbild -Ersatzschirm -Ersatzsensor/P -Ersatzsicherung -Ersatzspeicherkarte/N -Ersatzstoff -Ersatzstck/EPS -Ersatzteil/EPS -Ersatzteilbeschaffung -Ersatzteilbestellung -Ersatzteilhaltung -Ersatzteilkataloge -Ersatzteilpreisliste -Ersatztermin -Ersatztorwart -Ersatzwerke -Erschaffens -Erschaffer/FNS -Erschaffung/P -Erscheinens -Erscheinung/P -Erscheinungsform/P -Erscheinungstag/EPS -Erschieens -Erschieung/P -Erschieungsbefehl/E -Erschlaffens -Erschlaffung/P -Erschlieens -Erschlieung/P -Erschpfens -Erschpfung/P -Erschpfungszustand -Erschrockenheit -Erschtterns -Erschtterung/P -Erschwerens -Erschwernis/q -Erschwerung/P -Ersetzbarkeit -Ersetzens -Ersetzung/P -Ersetzungsregel/N -Ersetzungssystem/EPS -Ersparnis/q -Ersparnisgrnde/N -Erstanwendung -Erstarrens -Erstarrung/P -Erstattens -Erstattung/P -Erstauffhrung -Erstauflage/N -Erstauftrag/STp -Erstaunens -Erstausgabe/N -Erstbesitzer -Erstbesteigung -Erstbezug/ST -Erstehungskosten -Ersteigerns -Ersteigerung/P -Ersteingabe/N -Erstellens -Ersteller/FNS -Erstellung/P -Erstellungsaufwand -Erstellungsdatum -Erstellungskosten -Erstempfehlung -Erstflug -Erstgerte -Ersthypotheken -Erstickens -Erstickung/P -Erstickungsanfall/Sp -Erstinbetriebnahme/N -Erstinformation/P -Erstklssler/FNS -Erstlieferung -Erstling/EPS -Erstlingsfilm -Erstlingswerk -Erstmotivation -Erstserie -Erstrmens -Erstrmung/P -Erstversicherer -Erstvorlage -Erstzulassung -Erteilens -Erteilung/P -Ertrge/N -Ertrages -Ertrags -Ertragsanteile -Ertragsdifferenz -Ertragsdruck -Ertragsdurchschnitt -Ertragsentwicklung -Ertragsgruppen -Ertragsgter -Ertragskraft -Ertragskurve/N -Ertragsposition/P -Ertragsprmie -Ertragsreduzierung -Ertragsrckgang -Ertragsschtzung -Ertragsscheine -Ertragssteigerung -Ertragssteuer -Ertragsteueraufwand -Ertragsverbesserung/P -Ertragsverhltnis/Qq -Ertragsverlauf/Sp -Ertragswert/P -Ertragszinse -Ertchtigen/JS -Eruption/P -Erwgens -Erwgung/P -Erwhnens -Erwhnung/P -Erwrmens -Erwrmung/P -Erwachsenenbildung -Erwachsenentaufe -Erwartens -Erwartung/P -Erwartungsbereich/EPST -Erwartungswert -Erweckens -Erweckung/P -Erweisens -Erweisung/P -Erweiterbarkeit -Erweiterns -Erweiterung/P -Erweiterungsbau/S -Erweiterungseinheit/P -Erweiterungskarte -Erweiterungsmglichkeit/P -Erweiterungsmodul -Erweiterungspaket -Erweiterungsplne/N -Erweiterungsprojekt -Erweiterungssoftware -Erweiterungsverfahren/S -Erweiterungszone/N -Erwerb/JRS -Erwerbsfhigkeit -Erwerbsgenossenschaft/P -Erwerbsgut -Erwerbsleben/S -Erwerbsminderung -Erwerbsquelle/N -Erwerbssteuer -Erwerbsttigkeit/P -Erwiderns -Erwiderung/P -Erwin/S -Erz/EPT -Erzhlens -Erzhler/FNS -Erzhlung/P -Erzbergbau -Erzbischfe -Erzbischof -Erzbistum -Erzdizese -Erzeinfuhr/P -Erzengel/NS -Erzeugens -Erzeugerbetriebe -Erzeugergruppen -Erzeugerlnder -Erzeugerpreis/E -Erzeugerprogramm -Erzeugnis/Qq -Erzeugung/P -Erzeugungsgrundlage -Erzfeind/EFPST -Erzfrachter -Erzgebirge -Erzgruben -Erzherzog -Erziehens -Erzieher/FNS -Erziehung/P -Erziehungsanstalten -Erziehungsarbeit -Erziehungsheim -Erziehungsmaregeln -Erziehungsmethode/N -Erziehungsministerium/S -Erziehungsmonopol -Erziehungsprobleme -Erziehungsprogramme -Erziehungsrevolution/P -Erziehungssystem -Erziehungsverwahrung -Erziehungswesen/S -Erzielens -Erzielung/P -Erzkhne -Erzladung/P -Erzlager -Erztransporte -Erzvater -Erzvorkommen -Erzwingens -Erzwingung/P -Esc -Escapesequenz/P -Esche/NR -Escher/S -Escudo/S -Esel/MNS -Eselei -Eselsbrcke/N -Eselsohr -Eskalation/P -Eskapade/N -Eskorte/N -Eskudo/S -Esoterik/R -Esoteriker/FNS -Espenlaub -Esperanto -Espresso/S -Essay/S -Essbesteck/S -Essenmaschine -Essensausgabe -Essensbestellung/P -Essensgeld -Essensgewohnheit/P -Essensmarke/N -Essenszeit -Essenszwang -Essenz/P -Essgabel -Essgeschirr/EPS -Essgewohnheit/P -Essgier -Essig/S -Essigflasche -Essiggurke -Esslffel/S -Esso -Esstisch/EPT -Esswaren -Esszimmer/N -Estland -Estrade/N -Etablierens -Etablierung/P -Etablissement/S -Etage/N -Etagenebene/N -Etagenwohnung/P -Etappe/N -Etappenpltze -Etappensieg/EPS -Etappenziel -Etat/S -Etaterhhung/P -Etatjahr -Etatposten/S -Etatrede -Etatsumme -Etatvoranschlag/STp -Ethanol/S -Ethernet -Ethernetadapter -Ethik/PR -Ethnografie -Ethnograph/P -Ethnographie -Ethnologe/N -Ethologe/N -Ethologie -Ethos -Etikett/EPS -Etikettendrucker -Etikettenschwindel -Etikettierens -Etikettierung/P -Eton/S -Etruskerreich -Etde/N -Etui -Eudmonie -Euklid/S -Eule/NR -Eulenauge -Eulenspiegel/N -Eulenspiegelei/P -Euler/S -Eunuch/P -Eupen -Euphemismen -Euphemismus -Euphorie -Euphrat -Euratom -Euro/S -Eurobanken -Eurobinnenmarkt/STp -Eurobonds -Eurocard -Eurodollar/S -Euroformat -Eurokarte/N -Eurokartenformat -Eurokommunisten -Euromarkt/STp -Euronorm -Europer/FNS -Europerviertels -Europa/S -Europabeauftragte -Europacup/S -Europacupfinal/E -Europacupsieg -Europacupsieger -Europacupspiele -Europaexekutiven -Europaformat -Europafreundlichen -Europahalle -Europahilfe -Europahotel -Europakarte/N -Europameister/FNS -Europameisterschaftsspiel/EPS -Europameistertitel -Europaparlament/T -Europapokal/S -Europapokalsieger -Europapokalspiel -Europapolitik -Europapolitiker -Europaprogramm -Europarat -Europarecht/S -Europareise -Europarekord/E -Europarekordlerin -Europasprachklub -Europatitelkampf -Europaunion -Europaverlag/EST -Europawelle -Europazone -Europazug -Europrogramme -Euroscheck/S -Eurotunnel -Eurovision -Eurowhrung -Eurozentren -Eurozentrum -Eurythmie -Euter/NS -Euthanasie -Eva/S -Evakuierens -Evakuierung/P -Evakuierungsbefehl/EPS -Evaluation/P -Evangeliar/S -Evangelien -Evangelist/P -Evangelium/S -Eventualfall/Sp -Eventualitt/P -Everest -Evergreens -Evidenz -Evolution -Evolutionsstufe/N -Evolutionstheorie/N -Ewigkeit/P -Exaktheit -Examen/S -Examensfeier/N -Examina -Exbotschafter -Exbundeskanzler -Exbundesligisten -Exekution/P -Exekutionskommando -Exekutivbefugnis/q -Exekutivgewalt -Exekutivkomitee/S -Exekutivorgan/EPS -Exekutivrat -Exekutor/P -Exempel -Exemplar/EPS -Exfeldmarschall -Exgauleiter -Exgouverneur -Exhumierens -Exhumierung/P -Exil/EPS -Exilorganisation/P -Exilregierung -Existentialismus -Existenz -Existenzangst -Existenzberechtigung -Existenzerhaltung -Existenzfhigkeit -Existenzfrage/N -Existenzgefhrdung -Existenzgrundlage/N -Existenzialismus -Existenzkmpfe/N -Existenzkampf -Existenzminimum/S -Existenzquantifizierung/P -Existenzquantor/PS -Existenzrecht -Existenzsicherung -Existenzsorge/N -Exitcode/S -Exkaiser -Exkanzler/S -Exklusivitt -Exklusivrecht/E -Exklusivvertrag/STp -Exklusivvertrieb -Exknig -Exkurs/EPT -Exkursion/P -Exminister/S -Exmission/P -Exorzist/P -Exot/P -Exotenvgel -Expandierens -Expansion/P -Expansionsaktion/P -Expansionsbestrebung/P -Expansionsgelste/N -Expansionskurs/T -Expansionslinse -Expansionsphase/N -Expansionspolitik -Expansionsverfahren -Expedition/P -Expeditionsfahrt -Expeditionsleiter -Experiment/EPST -Experimentierflug/STp -Experimentierfreudigkeit -Experte/N -Expertenebene/N -Expertengesprch/EPS -Expertengruppe/N -Expertenkomitee/S -Expertenkommission/P -Expertenschtzung/P -Expertenspektrum -Expertensystem/EPS -Expertensystemtechnik/P -Expertensystemwerkzeug/EPS -Expertenurteil/EPS -Expertise/N -Exploration/P -Explorationskredite -Explorationswelle -Explosion/P -Explosionsgefahr -Explosionskurs/EPT -Explosionsschwade/N -Explosionsstoff -Explosivkrper -Explosivkraft -Expo/S -Exponent/P -Exponentialfaktor/PS -Exponentialfunktion/P -Exponentialgesetz/EPT -Export/EPS -Exportabsatz -Exportabschluss/Tp -Exportabteilung -Exportanteil/EPS -Exportartikel -Exportaufgaben -Exportauftrag/STp -Exportautos -Exportbeschrnkung/P -Exportbrauerei -Exportbro -Exportbuchhandlung -Exporterfahrung -Exporterfolge -Exporterlse -Exporterschwerung/P -Exporteur/EPS -Exportfhigkeit -Exportfirma -Exportfrderung -Exportforderung/P -Exportfreigabe -Exportgeschfte -Exportgesellschaft -Exportgewinne -Exporthandel -Exportindustrien -Exportkatastrophe -Exportkontrollen -Exportkorrespondenten -Exportkredite -Exportlnder -Exportlehre -Exportlizenzen -Exportmanager -Exportmarkt/Tp -Exportmesse -Exportnation/P -Exportorganisation -Exportplanung -Exportpraxis -Exportpreise/S -Exportprodukte -Exportrestriktion/P -Exportrckerstattung/P -Exportrckgang -Exportrckvergtung -Exportschiffbau -Exportschwierigkeit/P -Exportsituation/P -Exportspediteur -Exportsteigerung -Exportberschuss/Tp -Exportumsatz -Exportunternehmen -Exportvertrge -Exportvolumen -Exportwaren -Exportwirtschaft -Exportzeitschrift -Exportziffer -Exposee/S -Exposition/P -Expos/S -Exprsident -Expressgut -Expressionismus -Expressionist/P -Extension/P -Externat/EPST -Extrakt/EPT -Extrapolation/P -Extraprmien -Extras -Extravaganz/P -Extrawrste/N -Extrazimmer -Extremfall/Sp -Extremismus -Extremist/FP -Extremistenfhrer -Extremistengesetz -Extremitt/P -Extremsignalen -Extremvorstellung/P -Extremwert -Exzellenz/P -Exzentrizitt -Exzess/EPT -FAQ -FAZ -FBI -FC -FCKW -FDGB -FDJ -FDP -FFr -FG -FLN -Fcher/S -Fcherkombination/P -Fdchen/S -Fden -Fhigkeit/P -Fhnchen/S -Fhnlein/S -Fhnrich/EPS -Fhranlage -Fhre/N -Fhrgeschft -Fhrhaus/Tp -Fhrleute -Fhrlinie/N -Fhrschiff -Fhrschiffverbindung -Fhrte/GN -Fkalien -Fllens -Flligkeit/G -Flligkeitsdatum -Flligkeitstag/EPS -Fllung/P -Flschens -Flscher/FNS -Flschung/P -Flschungsmglichkeit/P -Fnge/N -Frbemittel/S -Frbens -Frber/NS -Frberei/P -Frbkosten -Frbung/P -Fsschen/S -Fsser/N -Fule -Fulnis/q -Fulnisbakterien -Fuste/MN -Fa. -Fa/N -Fabel/N -Fabelpferd -Fabian/S -Fabrik/P -Fabrikanlagen -Fabrikant/FP -Fabrikarbeit/PR -Fabrikarbeiter/FNS -Fabrikat/EPS -Fabrikation/P -Fabrikationserfahrung/P -Fabrikationsfehler/N -Fabrikationsflche -Fabrikationsgebude -Fabrikationsgemeinschaft -Fabrikationsnummer/N -Fabrikationsprobleme -Fabrikationsprozess/EPT -Fabrikationsraum/STp -Fabrikationsrechte -Fabrikationssttten -Fabrikausrstung/P -Fabrikbau -Fabrikbesitzer -Fabrikeinrichtung/P -Fabrikhalle -Fabriklager/N -Fabrikmakler -Fabrikneubau -Fabrikobjekt -Fabrikschiffe -Fabriktoren -Fabrikvertretung -Facette/N -Facettenreichtum/S -Fachrzte/FN -Fachabteilung/P -Facharbeiter/FNS -Facharbeiterprfung -Facharzt/T -Facharztausbildung -Fachausbildung/P -Fachausdrcke/N -Fachausdruck/S -Fachausschuss/Tp -Fachbegriff/EPS -Fachbeitrag/Sp -Fachberater/FNS -Fachberatung/P -Fachbereich -Fachbereichleiter/NS -Fachbericht/EPST -Fachbetrieb/EPST -Fachblatt/T -Fachbcher/N -Fachbuch/S -Fachbuchhandlung/P -Fachbuchverlag/S -Fachdozent/P -Fachdrogerie/N -Facherrterung/P -Fachgebiet/EPST -Fachgemeinschaft -Fachgeschft/ET -Fachgesprch/EPS -Fachgrohandlung -Fachgruppe/N -Fachgruppenmitglied/R -Fachgruppentreffen/S -Fachhandel -Fachhistoriker -Fachhochschule/N -Fachidiot -Fachingenieur -Fachinteressent/P -Fachkenntnis/q -Fachklinik -Fachkollege/N -Fachkommission/P -Fachkompetenz/P -Fachkrfte/N -Fachkraft -Fachkreis/EPT -Fachkurs/EPT -Fachlehrer -Fachlehrerausbildung -Fachleute/N -Fachlexikon -Fachliteratur -Fachmnner/N -Fachmagazin/S -Fachmann/S -Fachmarkt/STp -Fachmesse/N -Fachminister -Fachministerien -Fachorgan/EPS -Fachpersonal/S -Fachphilosophen -Fachpresse -Fachpublikum -Fachqualifikation -Fachreise -Fachrichtung/P -Fachring -Fachs -Fachschaft/P -Fachschler -Fachschulabschluss/Tp -Fachschulbesuche -Fachschulbildung -Fachschuldirektor -Fachschulingenieur -Fachseminar -Fachsprache/N -Fachstelle/N -Fachstellengesetz -Fachtagung/P -Fachteil/EPS -Fachbersetzen -Fachunterricht/S -Fachverbnde/N -Fachverband/T -Fachvereinigung -Fachverkufer -Fachverlag/EST -Fachvortrag/STp -Fachwelt/P -Fachwerk/S -Fachwerkbauten -Fachwerkhaus/Tp -Fachwissen/S -Fachwissenschaftler/NS -Fachwrter/N -Fachwrterbcher -Fachwoche -Fachwort/EST -Fachzeitschrift/P -Fachzeitung/P -Fachzweige/N -Fackel -Fackelschein/PS -Fackelspalier -Fackeltrger/FNS -Fadenscheinigkeit -Fahndens -Fahnder/NS -Fahndung/P -Fahndungsbeamte -Fahndungsbuch -Fahndungsdienst -Fahndungsstelle -Fahne/N -Fahneneid -Fahnenfabrik -Fahnenflucht -Fahnenjunker -Fahnenmasten -Fahnenschmuck -Fahrauftrag/STp -Fahrbahn/P -Fahrbahnseite -Fahrbericht -Fahrbewegung/P -Fahreigenschaften -Fahrenheit -Fahrer/FNS -Fahrergehuse -Fahrerhaus/Tp -Fahrerkabinen -Fahrerleitstand -Fahrersitz -Fahrerstand -Fahrertr -Fahrgste/N -Fahrgast/T -Fahrgeld/RT -Fahrgelderstattung -Fahrgelegenheit/P -Fahrgemeinschaft/P -Fahrgeschwindigkeit/P -Fahrgestell/EPS -Fahrkarte/N -Fahrkartenausgaben -Fahrkartenautomat/P -Fahrkartenschalter/NS -Fahrkilometer -Fahrkomfort -Fahrlssigkeit/P -Fahrlehrer/NS -Fahrleitzentrale/N -Fahrminuten -Fahrpisten -Fahrplne -Fahrplan/S -Fahrplankonferenz -Fahrpreis/ET -Fahrpreisermigung/P -Fahrprfung/P -Fahrrder/N -Fahrrad/T -Fahrradfabrik -Fahrradfahren -Fahrradlampe -Fahrradnarr -Fahrradreifen -Fahrrinne/N -Fahrschein/PS -Fahrscheinsorten -Fahrschler/FNS -Fahrschulen -Fahrschullehrer -Fahrsport -Fahrstrecke -Fahrsthlen -Fahrstuhl/S -Fahrstunden -Fahrtablauf/Sp -Fahrtanlass/Tp -Fahrtantritt -Fahrtaufwand -Fahrtbeginn -Fahrtbericht -Fahrtechniken -Fahrten -Fahrtenboot -Fahrtenbcher/N -Fahrtenbuch/ST -Fahrtenlieder -Fahrtenschreiber/S -Fahrtest/S -Fahrtfrequenz -Fahrtgebiet -Fahrtgelegenheit -Fahrtgeschwindigkeit -Fahrtkosten -Fahrtmglichkeit/P -Fahrtrichtung/P -Fahrtroute/N -Fahrtteilnehmer -Fahrttermin -Fahrtverlauf/Sp -Fahrtwind -Fahrtzeit/P -Fahrtziel -Fahrtzweck -Fahrunterbrechung/P -Fahrverbot/S -Fahrvergngen -Fahrvorschrift -Fahrwasser/NS -Fahrweg/EPST -Fahrweise -Fahrwerk/EPST -Fahrwerkbewegung -Fahrwerkgetriebe -Fahrwerksansteuerung -Fahrzeit/P -Fahrzeitverlngerung -Fahrzeug/EPST -Fahrzeugaktien -Fahrzeugbau/RS -Fahrzeugfederung -Fahrzeugflotten -Fahrzeugfhrer -Fahrzeughalter/FNS -Fahrzeughaltung -Fahrzeugmarkt/STp -Fahrzeugpapiere -Fahrzeugpark -Fahrzeugschlange -Fahrzeugverkehr -Fahrzeugwerk -Fahrzeugzahl -Fahrziel -Faible -Fairness -Fakt/PST -Faktenanalyse/N -Faktensammlung/P -Faktor/PS -Faktum -Fakturierens -Fakturierung/P -Fakultt/P -Fakulttsfunktion -Falke/N -Falkenjagd -Falklandinsel -Falklandkrieg/T -Fall -Fallbeil -Fallbeispiel/EPS -Fallensteller/NS -Falles -Fallgeschwindigkeit/P -Fallgesetz -Fallobst/T -Fallout -Fallschirm/EPS -Fallschirmabsprnge/N -Fallschirmabsprungs -Fallschirmjgerbrigade -Fallschirmjgereinsatz/T -Fallschirmjgergeneral -Fallschirmspringer/NS -Fallschirmtruppe/N -Fallstrick/EPT -Fallstudie/N -Falltr/EP -Fallunterscheidung/P -Fallwind/EPST -Falschaussage/N -Falschgeld/T -Falschgelddruckerei -Falschgeldhersteller -Falschgeldschaden -Falschgeldsuche -Falschheit/P -Falschmeldung/P -Falschmnzer -Falschmnzerbande -Falschmnzerei -Falschpolung -Falschspieler/N -Falsifikation/P -Faltbltter -Faltblatt -Faltboot -Faltdach -Faltenrcke/N -Faltenrock -Faltens -Faltenwnde/N -Falter/N -Faltkisten -Faltschachteln -Faltung/P -Familie/N -Familienhnlichkeit/P -Familienangehrige/N -Familienangelegenheit/P -Familienanschluss/Tp -Familienanzeigen -Familienbedrfnis/Qq -Familienberatung -Familienbetrieb -Familienbeziehung/P -Familiencafe -Familiendrama -Familieneinkommen/S -Familienermigung -Familienfahrten -Familienfirma -Familienfoto -Familienfuball -Familiengemlde -Familiengerede -Familiengeschft -Familiengesprch -Familienglck/T -Familiengrndung -Familienhaus/Tp -Familienhaushalt -Familienidyll -Familienkongress/EPT -Familienkreis/EPT -Familienleben/S -Familienminister/FNS -Familienmitglied -Familiennachrichten -Familienname/N -Familiennamen/S -Familienpackung -Familienpension -Familienpflege -Familienplanung/P -Familienpolitik -Familienprobleme -Familienrats -Familienrecht -Familienrummel -Familienschmuck -Familiensendung/P -Familiensinn -Familienstand/ST -Familientest -Familientragdie -Familientraktat -Familienumstnde -Familienunterkunft -Familienunternehmen -Familienvter/N -Familienvater/S -Familienverband -Familienverhltnis/Qq -Familienvermgen -Familienwochenhilfe -Familienzusammenfhrung -Familienzuschuss/Tp -Familienzuwachs/T -Fan/S -Fanatiker/NS -Fanatismus -Fanfare/N -Fanfarensto/Tp -Fanfarenzug/STp -Fang/S -Fangarm/EPS -Fangflotte -Fanggebiet -Fanggrnde -Fangmengen -Fangmglichkeit/P -Fango -Fangopackung/P -Fangquoten -Fangtechnik/P -Fantasie/N -Fantasieprojekte -Fantast/P -Faraday/S -Farbaufnahme/N -Farbauftrag/STp -Farbbnder/N -Farbbalken -Farbband/ST -Farbbandabdeckung -Farbbandaufnahme -Farbbandeinlegen -Farbbandkassette/N -Farbbandrollen -Farbbandspule -Farbbandtransport -Farbbandwechsel -Farbbildschirm/EPS -Farbbildwerk -Farbblindheit -Farbdia/S -Farbdisplay/S -Farbdrucker/NS -Farbe/N -Farbeier -Farbenfabrik -Farbenfreudigkeit -Farbenindustrie -Farbenkombinationsgabe -Farbenlehre/N -Farbennachfolger -Farbenpracht -Farbenproduktion/P -Farbensinn -Farbenspiel/EPS -Farbentiefe -Farbenunternehmen -Farbenzusammenstellung/P -Farbexplosion/P -Farbfernsehen/S -Farbfernseher -Farbfernsehgert/EPST -Farbfernsehspiel -Farbfilm/EPS -Farbfleck/EPS -Farbfontnen -Farbforschung -Farbfoto/S -Farbfotografie/N -Farbgebung/P -Farbgefhl -Farbhinweis/EPT -Farbigkeit -Farbillustration/P -Farbkissen/S -Farbkleckse/N -Farbkomposition/P -Farbkontrast -Farbkopierer -Farbmarkierung/P -Farbmonitor/EPS -Farbphoto/S -Farbphotographie/N -Farbprospekt -Farbreport -Farbreportage -Farbschlieren -Farbserie -Farbskala -Farbspritzen -Farbstift/EPT -Farbstoff/EPT -Farbtafel/N -Farbtiefe/N -Farbtne/N -Farbton/S -Farbtupfer/NS -Farbumkehr -Farbverflschung/P -Farm/PR -Farmer/NS -Farmerfamilien -Farmergenossenschaft -Farmland -Farn/EPST -Farngebsch -Farnkraut -Fasan/EPS -Fasanenhhne -Fasching -Faschingsaufgabe -Faschingsball/Sp -Faschingsgste -Faschingshochburgen -Faschingssaison -Faschingsveranstaltung -Faschingszeit -Faschismus -Faschist/FP -Faschistenmarsch -Faselei/P -Faser/N -Faserholz -Faserzeug -Fass/JT -Fassade/N -Fassadengeschft -Fassadenverkleidung -Fassbier -Fassens -Fassette/N -Fassettenreichtum/S -Fasshlfte -Fassung/P -Fassungsgabe/N -Fassungskraft -Fassungslosigkeit -Fassungsvermgen/S -Fastensynode -Fastenzeit/P -Fastnacht -Fastnachtsbeichte -Fastnachtsdekoration -Fastnulltarif -Faszination/P -Fata -Fatalismus -Fatalitt -Fatima/S -Fatum/S -Faulenzer/FNS -Faulenzerei/P -Faulheit -Faulpelz/EPT -Faultier/EPS -Faun/EPS -Fauna -Faust -Fausthandschuh/EPT -Faustkmpfe/N -Faustkampf/ST -Faustkeil -Faustpfnder/N -Faustpfand/T -Faustrecht/EPST -Faustregel/N -Faustschlag/STp -Fauteuil/S -Fauxpas -Favorit/FP -Fax -Faxanschluss/Tp -Faxenmacher/N -Fazit/EPS -Feature/S -Feb -Feb. -Februar/S -Februarabend -Februarergebnis/Qq -Februarhlfte -Februarrevolution -Februarwahlen -Fechter/NS -Fechtkunst -Fechtlanze -Fechtmeister/S -Fechtmeisterschaften -Fechtschule -Fechtwettkmpfe -Feder/J -Federball/Sp -Federballspiel/S -Federbett/T -Federboa -Federbusch -Federdorne -Federdruckstcke -Federfhren/JS -Federgewicht/EPST -Federgewichtskampf -Federhalter/NS -Federhtchen -Federksten -Federkasten -Federkiel/EPS -Federkraft -Federleiste -Federlesens -Federstrken -Federstifte/N -Federstrich/EPS -Federvieh/S -Federwaage/N -Federzeichnung/P -Federzug/STp -Fedora -Fee/N -Feedback -Fegefeuer -Fehde/N -Fehdehandschuh/EPT -Fehlanpassung/P -Fehlanzeige/N -Fehlbarkeit -Fehlbedienung -Fehlbehandlung/P -Fehlbestnde/N -Fehlbestand -Fehlbetrag/STp -Fehlbeurteilung/P -Fehlbildung/P -Fehldiagnose/N -Fehldrucken -Fehleinschtzung/P -Fehlens -Fehlentscheid/J -Fehlentwicklung/P -Fehler/NS -Fehlerabschtzung -Fehleranalyse/N -Fehlerausgang/S -Fehlerbedingung -Fehlerbehandlung -Fehlerbehandlungsroutine/N -Fehlerbehebung -Fehlerbericht/EPS -Fehlerbeschreibung/P -Fehlerbeseitigung -Fehlerbild -Fehlerbit/S -Fehlerdiagnose/N -Fehlereinengung -Fehlereingrenzung -Fehlerfall/S -Fehlerfortpflanzung -Fehlerkorrektur/P -Fehlerliste/N -Fehlermaske -Fehlermeldung/P -Fehlermerkmal -Fehlermitteilung/P -Fehlermglichkeit/P -Fehlermodell/EPS -Fehlernummer -Fehlerpunkt/EPST -Fehlerquelle/N -Fehlerquote/N -Fehlerrate/N -Fehlerrisiken -Fehlerrisiko -Fehlerroutine -Fehlersignal -Fehlerstatistik -Fehlerstatus -Fehlersuche -Fehlersuchprogramm -Fehlertyp -Fehlerbersicht/P -Fehlerberwachung -Fehlerursache/N -Fehlervariable/N -Fehlerwirkung -Fehlerzustnde/N -Fehlerzustand/S -Fehlfunktion/P -Fehlgeburt/P -Fehlgriff/EPS -Fehlhandlung/P -Fehlinformation/P -Fehlinterpretation/P -Fehlkalkulation/P -Fehlkonstruktion/P -Fehlma/EPT -Fehlmenge/N -Fehlmessung/P -Fehlpass/Tp -Fehlplanung/P -Fehlpunkten -Fehlschlag/STp -Fehlschluss/Tp -Fehlschuss/Tp -Fehlsignale -Fehlspekulation/P -Fehlstart/EPST -Fehltritt/S -Fehlurteil/EPS -Fehlverhalten/S -Fehlversuch/EPS -Fehlweg -Fehlzndung/P -Feier -Feierabend/EP -Feierabendverkehr/S -Feierlichkeit/P -Feiertag/EPST -Feiertagsgesetz -Feiertagstarif -Feiertagsunterbrechung -Feiertagszeit -Feigenbaum/Tp -Feigenbltter/N -Feigenblatt/T -Feigheit/P -Feigling/EPS -Feinanpassung/P -Feinbckerei/P -Feinblech/EPS -Feinblechpackung/P -Feinblechwalzwerk/ST -Feind/EFPT -Feindberhrung -Feindbild/RST -Feindlichkeit/P -Feindpropaganda -Feindruck -Feindrundfunk -Feindschaft/P -Feindseligkeit/P -Feineinstellung/P -Feinfhligkeit -Feingefhl/EPS -Feingliedrigkeit -Feingold -Feinheit/P -Feinkost -Feinkostfabrik -Feinmechanik/P -Feinmechaniker/S -Feinpapier -Feinpapierfabrik -Feinschmecker/NS -Feinsicherung -Feinspinnerei -Feinsteuerung -Feinstruktur/P -Feinwaschprogramm -Feinwerktechnik -Feld/ERST -Feldarbeit/P -Feldarchologe -Feldbett/PST -Felddienst -Feldfrchte/N -Feldfrucht -Feldgre/N -Feldherr/NP -Feldkirchen -Feldkche/N -Feldlager/NS -Feldmuse/N -Feldmarschall/S -Feldmaus -Feldmesser/NS -Feldnummer -Feldplatten -Feldrechner -Feldschlsschen -Feldspiel/R -Feldstecher/NS -Feldtelefon -Feldberlegenheit -Feldwebel/NS -Feldweg/EPT -Feldzug/STp -Felge/N -Felix -Fell/EPS -Fellatio -Fellausfall -Fellhndler/FNS -Fellstiefel -Felsblcke -Felsblock/T -Felsbrocken -Felsen/SW -Felsenerhebung -Felsenkirche -Felsenlandschaften -Felsenschluchten -Felsentempel -Felsgebiet -Felshgel -Felsklippe -Felsmalereien -Felsplateau -Felsschlucht -Felsspalten -Felsstck -Felswnde/N -Felswand -Feminismus -Feministin/F -Fenchel -Fenchelstrucher/N -Fenster/MNS -Fensterbnke/N -Fensterbank -Fensterbrett/RST -Fenstereinfassung/P -Fensterflgel/NS -Fensterglser/N -Fensterglas/T -Fenstergucker -Fensterkreuz -Fensterlden -Fensterladen/S -Fensterleder/N -Fensterpltze/N -Fensterplatz/T -Fensterrahmen -Fensterrose/N -Fensterscheibe/N -Fenstersims/ET -Fenstersturz -Fenstersystem/EPS -Fensterwand -Ferien -Ferienaktion/P -Ferienaufenthalte -Ferienbeginn -Feriendomizil -Feriendorf -Ferienerinnerung -Ferienfahrt -Ferienflugreisen -Ferienfhrer -Feriengast -Feriengebiete -Feriengegend -Ferienhaus/Tp -Ferienhauserwerb -Ferienhinweise -Ferienidyll -Ferieninseln -Ferienkataloge -Ferienkolonie/N -Ferienkursus -Ferienmonat -Ferienmdigkeit -Ferienort/E -Ferienparadies/EPT -Ferienpark/S -Ferienpltze/N -Ferienprojekte -Ferienreise/N -Ferienreisenden -Ferienreisender -Ferienreiseplan -Ferienstadt -Ferienstrafkammer -Ferientag/E -Ferienvergngen -Ferienverkehr -Ferienvorschlge -Ferienwelt -Ferienwochen -Ferienwohnung -Ferienzeit/P -Ferienziele -Ferkel/NS -Fermat/S -Fermi/S -Fernmter/N -Fernamt/ST -Fernando/S -Fernanzeige -Fernbedienen/JS -Fernbedienstation/P -Fernbild/RST -Ferndiagnose/N -Ferndrucker -Fernerkennung -Fernfahrer/FNS -Fernfahrplan -Ferngas/T -Ferngasleitung -Ferngesprch/EPS -Fernglser -Fernglas/T -Fernheiznetz/T -Fernheizung/P -Fernheizwerke -Fernkommunikation -Fernkurs/EPT -Fernkursus -Fernladbarkeit -Fernladen -Fernlastfahrer -Fernlastfahrerhotel -Fernlastzug/STp -Fernlehrgang -Fernlenkens -Fernlenkung/P -Fernlicht/R -Fernmeldebataillon/S -Fernmeldebereich -Fernmeldedienste -Fernmeldegesetz -Fernmeldekabeltechnik -Fernmeldepersonal -Fernmeldetechnik -Fernmeldeturm -Fernmeldeverwaltung/P -Fernmeldewesen/S -Fernost -Fernostabteilung -Fernostverkehr -Fernraketen -Fernrohr/EPS -Fernschreibdienst -Fernschreiben/S -Fernschreiber/NS -Fernschreibgebhren -Fernschreibstation/P -Fernsehagenten -Fernsehakademie -Fernsehansager/FNS -Fernsehanstalt/P -Fernsehantenne -Fernsehapparat/EPT -Fernsehaufnahmen -Fernsehauftritte/N -Fernsehautor -Fernsehbeauftragte -Fernsehbeteiligung -Fernsehbild/RT -Fernsehdebatte -Fernsehdirektor/PS -Fernsehdiskussion/P -Fernsehens -Fernseher/NS -Fernseherklrung -Fernsehfilm/PS -Fernsehfunk -Fernsehgaudi -Fernsehgebhren -Fernsehgenehmigung/P -Fernsehgert/EPST -Fernsehgericht -Fernsehgesellschaft/P -Fernsehgrohandlung -Fernsehhandel -Fernsehhonorare -Fernsehinterview -Fernsehkamera/S -Fernsehkassette/N -Fernsehkomdie -Fernsehkritik/P -Fernsehlndern -Fernsehlotterie/N -Fernsehmacher -Fernsehpause -Fernsehprogramm/EPS -Fernsehrat/S -Fernsehregisseure -Fernsehreporter -Fernsehsatellit/P -Fernsehschauspieler/FNS -Fernsehschirm/EPS -Fernsehseite -Fernsehsektor -Fernsehsender/S -Fernsehsendung/P -Fernsehserie/N -Fernsehspiel/EPS -Fernsehsprecher -Fernsehstar/S -Fernsehstation/P -Fernsehsystem/S -Fernsehteam/S -Fernsehteilnehmer -Fernsehtest -Fernsehtheater -Fernsehtipp/S -Fernsehtrme -Fernsehturm/S -Fernsehbertragung/P -Fernsehvorfhrung/P -Fernsehwesen/S -Fernsehwirt -Fernsehzuschauer/N -Fernsicht -Fernsprechmtern -Fernsprechamt/T -Fernsprechanschluss/Tp -Fernsprechapparat/EPST -Fernsprechautomat/P -Fernsprechbereich -Fernsprechbcher -Fernsprechdichte -Fernsprechdienst -Fernsprecheinrichtung/P -Fernsprechgebhren -Fernsprechnetz -Fernsprechtechnik -Fernsprechverbindung -Fernsprechverkehr -Fernsprechzelle -Fernsteuerkommando -Fernsteuern/JS -Fernstrae/N -Fernstudenten -Fernstudien -Fernstudium -Fernbertragung/P -Fernumzge -Fernuniversitt/P -Fernunterricht/S -Fernverarbeitung -Fernverkehr/S -Fernwaffe/N -Fernwarten/JS -Fernweh -Fernziel -Fernznden/JS -Fernzug/STp -Ferrara -Ferrari/S -Ferromagnetismus -Ferse/N -Fersengegend -Fersengeld/RST -Fertigbau -Fertigbauweise -Fertigens -Fertigerzeugnis/Qq -Fertigfabrikat/EPST -Fertighaus/Tp -Fertigkeit/P -Fertigkleidung -Fertigmeldung -Fertigprodukte -Fertigprogramme -Fertigschneiden -Fertigstellen/JS -Fertigtermin -Fertigung/P -Fertigungsablauf/Sp -Fertigungsanlagen -Fertigungsanlauf/Sp -Fertigungsauftrge -Fertigungsbau -Fertigungsbereich/E -Fertigungsbetrieb/E -Fertigungschargen -Fertigungseinrichtung/P -Fertigungsflche -Fertigungsfragen -Fertigungsgarantie -Fertigungsindustrie -Fertigungsingenieur -Fertigungskapazitt -Fertigungskosten -Fertigungsmengen -Fertigungsmethoden -Fertigungsprogramm -Fertigungsprozess/EPT -Fertigungsqualitt -Fertigungsschritte -Fertigungsspezialisten -Fertigungssttten -Fertigungssteuerung -Fertigungsstrae/N -Fertigungstechnik/P -Fertigungstoleranzen -Fertigungsunterlagen -Fertigungsverfahren -Fertigungswerkzeug -Fertigungszeit/P -Fertigungszweig/EPS -Fertigwaren -Fertigwarenbestnde -Fesselns -Fesselung/P -Fesslung/P -Festakt/EPT -Festansprache/N -Festartikel -Festauftrag/STp -Festausschuss/Tp -Festbestellung/P -Festeinstellung -Festempfang -Festessen/S -Festgelage/N -Festgeld -Festgeldanlage/N -Festgeldkonto -Festgeldstze -Festgeschenk -Festgottesdienste -Festhalle/N -Festigens -Festigkeit -Festigung/P -Festival/S -Festivalprogramm -Festivaltagen -Festkleid/R -Festkrper/NS -Festkrperphysik/R -Festlnder/N -Festland -Festlandscholle -Festlandseite -Festlandsluft -Festlegens -Festlegung/P -Festlichkeit/P -Festmahl/EPS -Festnahme/N -Festplatte/N -Festplattenpartition/P -Festplattenplatz/T -Festplattenspeicher/S -Festplatz -Festpreis/EPT -Festpreisangebot -Festpreisauftrge -Festpreisvertrgen -Festprogramm -Festrede -Festsle/N -Festsaal -Festschmaus -Festschreibung -Festschrift/P -Festsetzens -Festsetzung/P -Festspeicher/S -Festspiel/EPS -Festspielbeitrag/STp -Festspielgesellschaft -Festspielhaus/Tp -Festspielort -Festspielprogramme -Festspielpublikum -Feststellbarkeit -Feststellbremse -Feststellens -Feststellschraube -Feststellung/P -Feststellungsklage -Feststoffrakete -Festtag/EPT -Festteilnehmer -Festung/P -Festungsgrtel -Festungsstadt -Festungsturm -Festveranstaltung -Festverzinsung -Festvorstellung -Festvortrag/STp -Festwiese -Festzeit -Festzins/P -Festzug/STp -Fetisch -Fetischglaube -Fettansatz -Fettaugen -Fettbuche/N -Fettbauch/ST -Fettdrcke/N -Fettdruck/ST -Fettfleck/EPST -Fettflckchen -Fettgehalt/EPS -Fettmasse -Fettnpfchen -Fettnahrung -Fettschrift -Fettsucht -Fettverbrauch -Fetzen/S -Feuchtigkeit -Feuchtigkeitsgehalt/PST -Feuchtigkeitsmesser/S -Feuchtigkeitsschutz/T -Feuchtigkeitsunempfindlichkeit -Feuchtwangen -Feuchtwiesen -Feudalherren -Feudalherrschaft -Feudalismus -Feudalstaat -Feudalsystem -Feuer/JMS -Feueralarm/EPS -Feuerbestattung/P -Feuerbiene -Feuerbusch -Feuereifer -Feuerflecken -Feuergarben -Feuerglocke -Feuergrtel -Feuerleiter/N -Feuerlscher/N -Feuermelder/S -Feuerpause -Feuerpolice -Feuerprobe/N -Feuersbrnste -Feuersbrunst -Feuerschden -Feuerschaden -Feuersgefahr/P -Feuersglut -Feuersttte/N -Feuerstein/EPS -Feuerstelle/N -Feuertaufe/N -Feuerteufel -Feuerversicherung -Feuerversicherungsgesellschaft -Feuervorhang/Sp -Feuerwache -Feuerwaffen -Feuerwasser -Feuerwehr -Feuerwehrmnner/N -Feuerwehrmann/ST -Feuerwerk/EPRS -Feuerwerkskrper/S -Feuerzange/N -Feuerzeichen/S -Feuerzeug/PS -Feuilleton/S -Fez -Fiasko/S -Fiat -Fibel/N -Fiber -Fibrille/N -Fibu -Fichte/N -Fichtenhlzer/N -Fichtenholz/T -Fichtennadel/N -Fidibus -Fieber/S -Fieberanfall/Sp -Fieberhitze -Fieberkurven -Fiebermittel/N -Fieberschauer/N -Fiebertabelle/N -Fieberthermometer/S -Fiebertraum/STp -Fieberwahn -Fiesling/EPS -Figur/P -Fiktion/P -File/S -Filename/N -Filepointer -Fileserver/NS -Filesystem/EPS -Filesystemtyp/S -Filet/SW -Filetbraten/S -Filialchef -Filiale/N -Filibuster -Film/MST -Filmarchiv -Filmatelier/S -Filmaufnahmen -Filmbeitrge -Filmbericht/S -Filmbesucher -Filmemacher -Filmfestspiele/N -Filmgeschichte -Filmgesellschaften -Filmhersteller -Filmindustrie -Filmkamera/S -Filmklub -Filmkosten -Filmkritiker/FNS -Filmlnder -Filmlexikon -Filmliebhaber -Filmliebling -Filmmagazin/EPS -Filmmaterial -Filmmusik -Filmprogramm -Filmrechte -Filmregisseur/EPS -Filmreportage/N -Filmrollen -Filmsatz/T -Filmschauspieler/FNS -Filmspule/N -Filmstar/PS -Filmstudio/S -Filmszene -Filmverleih/EPS -Filmvorschau/P -Filmvorstellung/P -Filter/JS -Filteralgorithmen -Filterangaben -Filterdaten -Filterelement -Filterns -Filterprogramm -Filtersystem -Filtertrafo -Filterzigarette/N -Filz/T -Filzhte/N -Filzhut/T -Filzstift/P -Fimmel -Finalspiel -Finanz/P -Finanzmter/N -Finanzabteilung -Finanzakrobaten -Finanzakrobatik -Finanzamt/ST -Finanzamtsbeauftragten -Finanzausschuss/Tp -Finanzbeamte/N -Finanzbedingung/P -Finanzbehrde/N -Finanzbeitrge/N -Finanzberatung -Finanzbereich -Finanzbeschluss/Tp -Finanzblatt -Finanzbuchhaltung -Finanzchef -Finanzdirektion/P -Finanzdisposition/P -Finanzexperten -Finanzforschung -Finanzfhrung -Finanzgenie/S -Finanzgericht -Finanzgeschichte -Finanzgesellschaft -Finanzgewalt -Finanzhai -Finanzhaus/Tp -Finanzhilfe/N -Finanzier/JS -Finanzierens -Finanzierungsaufgaben -Finanzierungsbeihilfe -Finanzierungsberatern -Finanzierungsbesttigung -Finanzierungsdienst -Finanzierungsfrage -Finanzierungsgeschft -Finanzierungsgesellschaft -Finanzierungshilfe -Finanzierungsinstitute/N -Finanzierungsklausel -Finanzierungslcke/N -Finanzierungsmittel -Finanzierungsmglichkeit/P -Finanzierungsobjekte -Finanzierungsplan -Finanzierungsprobleme -Finanzierungsquelle -Finanzierungssystem/E -Finanzierungstricks -Finanzierungsunternehmen -Finanzierungswelt -Finanzinstitute -Finanzinstitution/P -Finanzjahr/EPT -Finanzkapitalismus -Finanzkatastrophe/N -Finanzkommission -Finanzkonferenzen -Finanzkontrollbehrde -Finanzkrach -Finanzkraft -Finanzkreise/N -Finanzlage -Finanzlast -Finanzlawine -Finanzleichen -Finanzlcke/N -Finanzluftblase -Finanzmnner/N -Finanzmacht -Finanzmanager -Finanzmann/ST -Finanzmarketing -Finanzmarkt/Tp -Finanzmasse -Finanzminister/S -Finanzministerien -Finanzministerium/S -Finanzmisere -Finanzmittel -Finanzpltzen -Finanzplanung -Finanzplatz/T -Finanzpolitiker -Finanzpolizei -Finanzprsident -Finanzproblemen -Finanzrahmen -Finanzrat -Finanzressort/S -Finanzschulden -Finanzsituation/P -Finanzskandal -Finanzspezialist -Finanzspritzen -Finanzstrme -Finanzsystem -Finanzvereinbarung -Finanzverhandlung/P -Finanzverpflichtung/P -Finanzvertrag/STp -Finanzverwaltung -Finanzvorlagen -Finanzwesen/S -Finanzwirtschaft -Finanzzeitschriften -Finanzzentrum -Findelhaus/Tp -Findelkind/T -Findelkindern -Findens -Finder/FNS -Finderlohn/S -Findigkeit/P -Findling/EPS -Findung/P -Finesse/N -Finger/NS -Fingerabdrcke -Fingerabdruck/S -Fingerfertigkeit -Fingergesprch -Fingerhte/N -Fingerhut/T -Fingerkuppen -Fingerling/S -Fingermaske -Fingerngel/N -Fingernagel/S -Fingerspitzen -Fingerspitzengefhl/S -Fingerbung/P -Fingerzeig/EPS -Fink/P -Finne/N -Finnin -Finnland -Finsternis/q -Finte/N -Firewall/S -Firlefanz -Firma -Firmament/ST -Firmen/J -Firmenangehrige -Firmenanteile -Firmenaufdruck -Firmenbereich -Firmenberichten -Firmenbezeichnung -Firmenbild/ST -Firmenbroschre -Firmenchef/S -Firmenchroniken -Firmenemblem -Firmenentscheidung/P -Firmenfahrzeug/EPS -Firmengebude -Firmengelnde -Firmengewinne -Firmengre/N -Firmengrnder -Firmeninhaber/FNS -Firmeninhalte -Firmenjubilum -Firmenkennung -Firmenkonglomerat -Firmenkontakt/EPST -Firmenkche -Firmenmakler -Firmenmantel -Firmennamen/S -Firmenparkplatz/T -Firmenpensionskasse/N -Firmenpleite/N -Firmenprospekt/EPST -Firmenschild/RST -Firmenschrift -Firmenschriftzug/STp -Firmensitz -Firmenumsatz -Firmenverband/T -Firmenverbund/ST -Firmenzeichen -Firmenziel -Firmenzusammenbrche -Firmenzusammenschlsse/N -Firmware -Firmwarenderung/P -Firmwareeigenschaft/P -Firmwarevernderung/P -First/EPST -Firsthhe -Fisch/RST -Fischauktion -Fischbein/ES -Fischbestnde -Fischblase -Fischdampfer/NS -Fischeinfuhren -Fischeinkauf/Sp -Fischeinzelhandel -Fischer/FNS -Fischerboot/EPS -Fischerdrfer/N -Fischerdorf -Fischerei -Fischereiboot -Fischereiflotte -Fischereigenossenschaft/P -Fischereikonferenz -Fischereiprodukten -Fischereirecht/E -Fischereiunternehmen -Fischergemeinschaft -Fischernetz -Fischerring -Fischfang/Sp -Fischfarm -Fischgericht/EPT -Fischgerche/N -Fischgeruch -Fischgeschft -Fischgrte/N -Fischgrohandel -Fischhndler/N -Fischhandlung -Fischindustrie -Fischkonserven -Fischkonservenfabriken -Fischkunde/N -Fischkutter/S -Fischlaich/ES -Fischleim/S -Fischmarkt/STp -Fischmehl/S -Fischmilch -Fischl -Fischotter -Fischreichtum -Fischreiher/S -Fischsalat -Fischschleusen -Fischschuppen -Fischschwrme -Fischspezialgeschfte -Fischsuppe -Fischteich/EPST -Fischvergiftung/P -Fischwerbung -Fischzchter -Fischzubereitung/P -Fischzucht -Fischzug/p -Fiskaljahr -Fiskalpolitik -Fiskus -Fistel/N -Fistelstimme -Fitness -Fitnesscenter/NS -Fitnessraum/Sp -Fittich/EPS -Fitzgerald/S -Fixierbder/N -Fixierbad -Fixierens -Fixiermittel/NS -Fixierschraube/N -Fixierung/P -Fixpunkt/EPT -Fixpunktbildung -Fixpunktgleichung/P -Fixpunktiteration/P -Fixpunktoperator -Fixpunktsatz/T -Fixpunktverfahren -Fixstern/EPS -Fjord/EPS -Fkt -Flche/N -Flchenangriffe -Flchenbombardement -Flchenertrag/STp -Flcheninhalt/EPT -Flchenleistung -Flchenma/EPT -Flchenraum/STp -Flchenstaat/P -Flmmchen/S -Flschchen/S -Flachbandkabel -Flachbettdrucker -Flachdcher/N -Flachdach -Flachglas/T -Flachheit/P -Flachkabel -Flachkabelanschluss/Tp -Flachlndern -Flachland/T -Flachs/T -Flachschreibmaschinen -Flachschuss/Tp -Flachstahlprodukte -Flachsteckverbinder -Flachverbinder -Flackerschein/S -Fladen/S -Flaggendiskriminierung -Flaggenmast -Flaggenmeer -Flaggenstreit -Flaggschiff/ET -Flair -Flak -Flakfeuer -Flakinsel -Flakon/S -Flakschieen -Flamen -Flamenco -Flamingo/S -Flammenmeer/EPS -Flammenofen/S -Flammenwerfer/S -Flandern -Flanell -Flanke/N -Flankenangriff/PS -Flankendeckung -Flankensteilheit -Flankentriggerung -Flansch/T -Flasche/N -Flaschenbier/EPS -Flaschenhlse/N -Flaschenhals/T -Flaschenkind/RT -Flaschenffner/N -Flaschenpost -Flaschenwein -Flaschenzug/STp -Flatterhaftigkeit -Flattersatz -Flaum/S -Flausen -Flaute/N -Flautezeit/P -Fleck/MPST -Fleckengruppe -Fleckenreiniger/NS -Fleckenreinigung/P -Fleckfieber -Fleckwasser/NS -Fledermuse/N -Fledermaus -Flegel -Flegelalter/S -Flegeljahre/N -Flei/T -Fleiarbeit/P -Fleisch/RT -Fleischbank/P -Fleischbeschauer/S -Fleischbrhe/N -Fleischer/FNS -Fleischerei/P -Fleischereibedarf -Fleischereibetrieb -Fleischereimaschinen -Fleischereiwerkzeuge -Fleischergeselle/N -Fleischerhandwerk -Fleischerladen/S -Fleischerverband -Fleischeslste -Fleischeslust -Fleischesser -Fleischextrakt/P -Fleischfarbe -Fleischklo/Tp -Fleischkost -Fleischkugeln -Fleischmann -Fleischmarkt/STp -Fleischpasteten -Fleischpreise -Fleischschnitte/N -Fleischsendung/P -Fleischtransporte -Fleischvergiftung/P -Fleischware/N -Fleischwarenbranche -Fleischwolf -Fleischwunden -Fleischwurst -Fleischzentrale -Flensburg -Flexibilitt -Flexion/P -Flexionsform/P -Flickarbeit/P -Flickenteppich -Flicker/FNS -Flickerei/P -Flickwerk/S -Flickzeug/S -Flieder/N -Fliegenfenster/N -Fliegengewicht/EPS -Fliegengewichtler/FNS -Fliegenklatschen -Fliegenpilz/ET -Fliegenpilzsuppe -Fliegens -Fliegenschrnken -Fliegenschrank/T -Fliegerabwehr -Fliegeralarm/ES -Fliegerangriff -Fliegerbombe -Fliegerdenkmal -Fliegerdress/ET -Fliegerei -Fliegergrab -Fliegerhorst/EPT -Fliegerin -Fliegerkombination -Fliegerkorps -Fliegermajor -Fliegernachwuchs -Fliegeroffizier/ES -Fliegerrekruten -Fliegerrennen -Fliegerschule/N -Fliegersoldaten -Fliegerstiefel -Fliegerzulage -Fliehkraft -Fliebnder/N -Flieband/T -Fliebandarbeit/R -Fliebandarbeiter/FNS -Fliebandfertigung -Fliebandkleider -Fliebandproduktion/P -Fliefertigung -Fliekommaberechnung/P -Fliekommaoperation/P -Fliekommaprozessor -Fliekommazahl/P -Fliepapier/EPS -Flieproduktion/P -Fliese/N -Fliesenabteilung -Fliesenmarkt/STp -Flimmer/S -Flinkheit -Flinte/N -Flintenlauf/Sp -Flintenschuss/Tp -Flipper -Flipperkasten -Flirt/S -Flittchen/S -Flitter -Flitterkleid -Flitterwerk -Flitterwochen -Flitzer/N -Fltenklang -Fltenspieler/S -Fltenstimmen -Fltespielen/S -Fltist/P -Flz -Flohmarkt/Tp -Flohs -Flop -Floppyabdeckung/P -Floppybetrieb -Floppydisk -Floppydisketten -Floppylaufwerk/E -Floppystation/P -Flora -Florenz -Florett -Florian/S -Florida -Flo/T -Floskel/N -Flottenabkommen/S -Flottenangriff -Flotteneinheit/P -Flottenexpedition -Flottengesetz -Flottenmanver -Flottenparade -Flottenpolitik -Flottenstation/P -Flottensttzpunkt/EPT -Flottenberfall -Flottenverbnde -Flottenverein -Flottenvorsto/Tp -Flottillenarzt/T -Flow -Flowerpower -Flche/N -Flchtigkeit -Flchtigkeitsfehler/NS -Flchtling/EPS -Flchtlingsrzte -Flchtlingsdorf -Flchtlingsdurchgangslager -Flchtlingselend -Flchtlingsfamilien -Flchtlingsfrage -Flchtlingsgruppen -Flchtlingsjagd -Flchtlingsjuristen -Flchtlingskinder -Flchtlingslager/NS -Flchtlingsminister -Flchtlingsproblem/EPS -Flchtlingsstellen -Flchtlingsstrom -Flchtlingstrecks -Flchtlingswaisen -Flchtlingszentrum -Flgel/GN -Flgelfenster/NS -Flgelschlag/Sp -Flgelspiel -Flgelstrmer/N -Flgeltor -Flgeltre/N -Flssiggas/T -Flssigkeit/P -Flssigkeitsmedium -Flssigkeitssule -Flssigkeitsumgebung -Flssigmittel -Flssigwhrung -Flsterkampagne -Fluch/RS -Flucher/NS -Fluchtauto -Fluchtburg -Fluchtfall/Sp -Fluchtgefahr -Fluchtgelder -Fluchtgeschichte -Fluchtgrund -Fluchthelfer -Fluchtlinie/N -Fluchtmglichkeit/P -Fluchttunnel -Fluchtunternehmen -Fluchtverdacht -Fluchtversuch/EPST -Fluchtweg/EPS -Flug/ETp -Flugabwehr -Flugabwehrrakete/N -Flugapparaten -Flugbahn -Flugball/Sp -Flugbasen -Flugbetrieb/EPS -Flugbillet -Flugbltter/N -Flugblatt/ST -Flugboot -Flugdauer -Flugdienste/N -Flugerlebnis/Qq -Flugerprobung -Flugfeld -Flugfigur -Fluggste -Fluggast/T -Fluggebiet -Fluggert/EPST -Fluggeschft -Fluggeschwindigkeit/P -Fluggesellschaft/P -Flughfen -Flughafen/S -Flughafenbehrde -Flughafengesellschaft -Flughafenleiter/S -Flughafenneubauten -Flughafensicherung -Flugkapitn/PS -Flugkarte -Flugkilometer/N -Flugkomfort -Fluglehrer/NS -Flugleitoffizier -Flugleitsystem/EPS -Flugleitung -Flugleitzentrale -Fluglinien -Fluglotse/N -Flugmaschine -Flugmglichkeit -Flugnetz -Flugpassagier/EPS -Flugpauschalreisen -Flugpersonal -Flugpltze/N -Flugplan -Flugplatz/T -Flugplatzgelnde -Flugpost -Flugpreis/EPT -Flugprogramme -Flugreise/N -Flugreisegesellschaft -Flugreisende/NR -Flugroute -Flugsand -Flugschanze -Flugschein/E -Flugschneise -Flugschrift/P -Flugsicherung/P -Flugsicherungsboot -Flugsport/ST -Flugsteig -Flugstrecken -Flugsttzpunkt -Flugstunden -Flugtag -Flugticket -Flugtransporte -Flugunfall/Sp -Flugunfallentschdigung -Flugverkehr/S -Flugverlauf/Sp -Flugversuche -Flugweg/ET -Flugwettbewerb -Flugwetter -Flugzeit/P -Flugzettel -Flugzeug/EPT -Flugzeugabsturz/T -Flugzeugabwehr -Flugzeugbau/S -Flugzeugbesatzung -Flugzeugentfhrung -Flugzeugentwicklung -Flugzeugfabriken -Flugzeugfhrer/S -Flugzeugherstellung -Flugzeugkanzel -Flugzeugkatastrophe -Flugzeugkonstrukteur -Flugzeugkonzept -Flugzeugmechaniker -Flugzeugmotor/PS -Flugzeugrumpf/T -Flugzeugsitze -Flugzeugtrger/NS -Flugzeugunglck/S -Flugzeugwerk/ET -Flugzeugwrack/S -Flugziel -Flugzustand -Fluid -Fluktuation/P -Flunder -Flunkerei/P -Fluor/S -Fluoreszenz -Flur/EPST -Flurbereinigung/P -Flurbereinigungsgesetz -Flurgarderobe/N -Flurmhle -Flurschden -Flurstck -Fluss/MTp -Flussabschnitt -Flussbett/PST -Flussbrcke -Flussdiagramm/EPS -Flusslage -Flusslauf/STp -Flussmittel -Flussmodell/EPS -Flussmndung/P -Flusspferd/EPST -Flussschifffahrt/P -Flussstahl/S -Flusssttzpunkte -Flusstal -Flussufer/NS -Flut/P -Flutkatastrophe -Flutlicht/RST -Flutlichtanlage/N -Flutwelle/N -Fderalismus -Fderation/P -Fhn/S -Fhneinbruch/S -Fhre/N -Fhrengehlz -Fhrenzapfen -Frderanlage/N -Frderausfall -Frderbndern -Frderband -Frdereinrichtung -Frderer -Frdererantriebs -Frdererbewegung -Frdererbruch -Frdererlage -Frdererposition/P -Frdererrckautomatik/P -Frdererweg -Frdererzylinders -Frdererzylinderweg -Frderfahrten -Frdergebiete -Frdergemeinschaft/P -Frdergerte -Frdergesellschaft/P -Frderkosten -Frderkurs/EPT -Frderlndern -Frderleistung -Frdermaschine -Frdermenge/N -Frdermethoden -Frderns -Frderffnung -Frderpumpe -Frderquote/N -Frderschnecke -Frderstunden -Frdertechnik -Frdertrme -Frderung/P -Frderungsabfall/Sp -Frderungsgesellschaft/P -Frderungsprogramm/EPS -Frderungsvorschlag/STp -Frderungsweg/EPST -Frderungswettbewerb/EPST -Frderunterricht -Frderverein/EPS -Frderzoll -Frmlichkeit/P -Frster/FNS -Frsterei -Ften -Ftus -Fockmast -Fohlen/S -Fokker/S -Fokus -Fokussierens -Fokussierung/P -Folgeauftrag/STp -Folgeband -Folgeerscheinung/P -Folgejahre/N -Folgekosten -Folgelast/P -Folgenerscheinung -Folgenglied/RS -Folgeposition/P -Folgerichtigkeit -Folgerns -Folgerung/P -Folgestze/N -Folgesatz -Folgeschden -Folgeseite/N -Folgesteuern -Folgetreffen/S -Folgewidrigkeit -Folgewirkung/P -Folgezeit -Folgezustand -Folgsamkeit -Folie/N -Folienabdeckung -Folienbeschriftung -Folienentwurf -Foliengewnder -Folienhersteller -Folienlsung -Folienma/EPT -Folientastatur -Folientausch -Folienberstand -Folklore -Folter/J -Folterbank/P -Folterinstrument/EPST -Folterkammern -Folterknecht/EPS -Foltermethode/N -Folterqual -Fond/S -Fondsanteile/N -Fondsdaten -Fondsleitung -Fondsmanager -Fondsvermgen -Fondsverwaltung -Fondswerte -Fonografie -Font/S -Fontne/N -Fontainebleau -Foppereien -Ford/S -Forderns -Forderung/P -Forelle/N -Forellenfilet/S -Forellenfischerei -Foren -Form/J -Formalisierbarkeit -Formalisierens -Formalisierung/P -Formalismen -Formalismus -Formalitt/P -Format/EPST -Formatnderung/P -Formatbefehl/E -Formatierens -Formatierer -Formatierkommando/S -Formatierkorrektur/P -Formatierprogramm/EPS -Formatiersoftware -Formatierung/P -Formation/P -Formationsflug/STp -Formatpapier/S -Formbewusstsein -Formbltter -Formblatt -Formbrief -Formel/N -Formelmenge/N -Formenbau -Formenlehre -Formens -Formensprache -Formenwelt -Formfeed -Formfehler -Formfrage/N -Formmodell/EPS -Formosa -Formosastrae -Formphantasie -Formsache/N -Formstahl -Formstcke/N -Formtabelle/N -Formular/EPS -Formulardruck -Formularstze -Formularvorschub/ST -Formularwechsel -Formulierens -Formulierung/P -Formulierungsentwurf -Formung/P -Forschens -Forschergruppe/N -Forscherin/F -Forschern -Forschers -Forscherstreik -Forschung/P -Forschungsabteilung/P -Forschungsanstalt/P -Forschungsarbeit/P -Forschungsauftrag/STp -Forschungsausbildung -Forschungsbemhung/P -Forschungsbereich -Forschungseinrichtung/P -Forschungsergebnis/Qq -Forschungsfeld/RST -Forschungsflugkrper -Forschungsfrderung -Forschungsgebiet/EPS -Forschungsgemeinschaft -Forschungsgesellschaft -Forschungsgruppe/N -Forschungsingenieur -Forschungsinstitut/T -Forschungslabor/EPS -Forschungslaboratorien -Forschungslaboratorium -Forschungsmaterial -Forschungsministerium -Forschungsmittel/N -Forschungspolitik -Forschungsprogramm -Forschungsprojekt/EPS -Forschungsreise/N -Forschungsreisende/NR -Forschungsrichtung/P -Forschungssatellit -Forschungsschiff -Forschungsschwerpunkt/EPS -Forschungsstab -Forschungsstation -Forschungsstelle/N -Forschungsvorhaben/S -Forschungszentrale/N -Forschungszentrum -Forschungszwecke/N -Forschungszweig/ES -Forst/EPT -Forstamt -Forstaufseher/NS -Forstbeamten -Forstbeamter -Forstfrevel/S -Forsthaus/Tp -Forstmnner -Forstmann/T -Forstmeister/S -Forstrevier/EPS -Forstverein/S -Forstwesen/S -Forstwirtschaft -Fortbestand -Fortbewegens -Fortbewegung/P -Fortbildens -Fortbildung/P -Fortbildungsanstalt/P -Fortbildungsbeihilfe/N -Fortbildungskurs/EPT -Fortbildungsmanahmen -Fortdauer -Fortfall/Sp -Fortfhrens -Fortfhrung/P -Fortgang/Sp -Fortgeschrittenenkurs/EPT -Fortpflanzens -Fortpflanzung/P -Fortran -Fortschreiben/JS -Fortschritt/EPS -Fortschrittlichkeit -Fortschrittsglaube -Fortschrittsquote/N -Fortschrittswerk -Fortsetzens -Fortsetzung/P -Fortsetzungsgesprch/EPS -Fortsetzungsromanen -Fortune -Forum -Fossilien -Foto/S -Fotoapparat/EPST -Fotoausrstung/P -Fotoausstellung -Fotobericht/EPS -Fotodiode/N -Fotograf/FP -Fotografie/N -Fotoindustrie -Fotokopie/N -Fotokopierkosten -Fotolaborantin -Fotoliebhaber -Fotomodell -Fotoreportage -Fotoserie -Fotosynthese -Fototechnik -Fotovoltaik -Fotze/N -Foul/S -Foulspiel -Fourier/S -Fourieranalyse/N -Fouriertransformation/P -Foxtrott/S -Foyer -Fr -Frcke/N -Frsarm/S -Frskopf -Frskopferrechnung -Frskopfposition/P -Frsparametervariation/P -Frsprofil/EPS -Frsvorgang -Frswalze/N -Frswalzenarme/N -Frswalzenhhe -Frulein/S -Fracht/PR -Frachtbauch -Frachtbrief/EPS -Frachtdampfer -Frachtenindex -Frachtenkartell -Frachtenverlust -Frachterhhung/P -Frachtersparnis/q -Frachtgeschft -Frachtgter/N -Frachtgut/T -Frachtkosten -Frachtraum/Sp -Frachtstze -Frachtschiff/ST -Frachtschiffsflotte -Frachtstundung -Frachttarife -Frachttonnage/N -Frachtvergtung -Frachtverkehr/S -Frack/S -Fragebgen -Fragebogen/S -Fragebogenflschung/P -Frageform -Frageliste/N -Fragemethode/N -Fragenkomplex/EPT -Fragenkreis/EPT -Frager/FNS -Fragestze/N -Fragesatz/T -Fragesteller/NS -Fragestellung/P -Fragestunde/N -Fragewrter/N -Fragewort/T -Fragezeichen/S -Fragment/EPST -Fragmentierens -Fragmentierung/P -Fragwrdigkeit -Fraktion/P -Fraktionsausschuss/Tp -Fraktionsbeschluss/Tp -Fraktionschef -Fraktionsfhrer/FNS -Fraktionskollege/N -Fraktionsmitglieder -Fraktionsstrke -Fraktionsstatus -Fraktionsvorsitzende -Fraktionsvorstnde -Fraktionsvorstand -Fraktionszwang -Fraktur/P -Frakturschrift -Frameblock/S -Framelnge -Frameword -Franc -Francabwertung -Francisco -Franco/S -Frank/PS -Franken/SW -Frankenstein/S -Frankfurt/S -Frankfurter/FS -Frankreich/S -Frankreichreise -Franse/N -Fransentasche -Franz -Franziska/S -Franziskaner -Franziskanerorden -Franziskus -Franzsin/F -Franzose/N -Frae/S -Fraternisation -Fratze/N -Frau/MP -Frauenrzte/FN -Frauenarbeit -Frauenarzt/T -Frauenbataillon -Frauenbeilage -Frauenberuf -Frauenbildnis/Qq -Frauenblock/S -Frauenbriefe -Frauendasein/S -Frauenemanzipation -Frauenfeld -Frauenfrage -Frauengestalten -Frauenhaus/Tp -Frauenheim -Frauenheld -Frauenkleider/N -Frauenklinik -Frauenkloster/S -Frauenkrankheit -Frauenleben -Frauenleiden/S -Frauenliga -Frauenmission -Frauenmrder -Frauenname -Frauenorganisation/P -Frauenrechte -Frauenrechtler/FNS -Frauenschmerzen -Frauensport/ST -Frauenstimme -Frauenstimmrecht -Frauenstirn -Frauentyp -Frauenverbnde -Frauenvereinsfilm -Frauenwelt -Frauenweltrekord -Frauenzimmer/NS -Fraunhofer/S -Freak/S -Frechheit/P -Freeclimbing/S -Freejazz -Freeware -Fregatte/N -Fregattenkapitn -Fregattenvgel -Freiabonnement/S -Freibdern -Freibad -Freibadanlage -Freibadrecht -Freibankfleisch -Freibecken -Freiberufler/NS -Freibetrag/Sp -Freibeuter/NS -Freibeuterei -Freibier -Freibillet/S -Freibrief/EPS -Freiburg/R -Freidenker/NS -Freiern -Freiflche/N -Freiflug/STp -Freigabe -Freigabemodul -Freigebigkeit -Freigepck/S -Freigiebigkeit -Freihfen -Freihafen/S -Freihaltung -Freihandel -Freihandelszone -Freiheit/P -Freiheitsarmee/N -Freiheitsberaubung/P -Freiheitsbeschrnkung/P -Freiheitsbestrebung/P -Freiheitsbewegung -Freiheitsentzug/S -Freiheitsfreunden -Freiheitsfront -Freiheitsgedanken -Freiheitsgrad/E -Freiheitskmpfe/NR -Freiheitskmpfer/NS -Freiheitskampf/ST -Freiheitskundgebung -Freiheitsmedaille -Freiheitsschlacht -Freiheitssender/NS -Freiheitsstatue -Freiheitsstrafe/N -Freiheitswille/N -Freiherr/FNP -Freikarte/N -Freilagerplatz -Freilandsalat -Freilassens -Freilassung/P -Freilauf/Sp -Freileitungsseile -Freilichtauffhrung/P -Freilichtbhne -Freilichtkino/S -Freilichtspiele -Freiluftsaison -Freiluftveranstaltung -Freimatoleranzen -Freimaurer/S -Freimaurerei -Freimaurerloge -Freimtigkeit -Freimut/S -Freiprospekt -Freiraum/STp -Freischrler/N -Freischaltung/P -Freischneider/NS -Freischnitt -Freischwimmbad -Freischwimmbecken -Freisetzens -Freisetzung/P -Freising -Freisitz -Freisprechens -Freisprechung/P -Freisprche/N -Freispruch/S -Freistaat -Freistaatsbrger -Freistadt -Freistellens -Freistellung/P -Freistellungsauftrag/Sp -Freistilringen -Freisto/Tp -Freistunde/N -Freitag/EP -Freiterrasse -Freitod/T -Freitreppe/N -Freiverkehr -Freiwassertraining -Freiwild/T -Freiwilligengruppe -Freiwilligenverbnde -Freiwilligenverband -Freizeit -Freizeitaktivitt/P -Freizeitbekleidung -Freizeitbeschftigung/P -Freizeitgestaltung -Freizeitgrundstcke -Freizeitheim -Freizeitkapitne -Freizeitkleidung/P -Freizeitreporter -Freizeitsitz -Freizeitsport -Freizeitwert -Freizeitzentrum -Freizeitzone -Freizgigkeit -Fremdanleitung/P -Fremdarbeiter/FNS -Fremdatome -Fremdbesitz -Fremdbestimmung -Fremdenblattes -Fremdenfhrer/FNS -Fremdenheim/ES -Fremdenindustrie/N -Fremdenlegion -Fremdenlegionre -Fremdenliste -Fremdenpension -Fremdenpolizei -Fremdenverkehr -Fremdenverkehrsamt -Fremdenverkehrsbro/S -Fremdenverkehrsgebiet -Fremdenverkehrsverbnde -Fremdenverkehrsverein -Fremdenverkehrswerbung -Fremdenzimmer/N -Fremdfertigung -Fremdfinanzierung -Fremdgert -Fremdgutachten/S -Fremdherrschaft/P -Fremdkrper/N -Fremdleistung/P -Fremdlicht -Fremdlieferung/P -Fremdling/EPS -Fremdmittel/N -Fremdmittelaufnahme -Fremdsprache/N -Fremdsprachenkenntnis/q -Fremdsprachensekretrin -Fremdstoff -Fremdumstze -Fremdwhrung/P -Fremdwhrungsbetrge -Fremdwhrungsguthaben -Fremdwhrungskonto -Fremdwrter/N -Fremdwrterbuch -Fremdwrtermanie -Fremdwort/ST -Frequenz/P -Frequenzanalyse -Frequenzanteile -Frequenzausgngen -Frequenzband -Frequenzbereich/EPS -Frequenzcharakteristik -Frequenzfilter -Frequenzinformation/P -Frequenzkomponenten -Frequenzschranke -Frequenzspektren -Frequenzspektrum -Frequenzuntersetzung -Frequenzverhltnis/Qq -Frequenzverteilung -Freske/N -Freskendarstellung/P -Fresser -Fresspaket/EPST -Freud/EP -Freudenfeuer -Freudenjauchzer -Freudenkelch -Freudenmdchen -Freudentag -Freudentaumel -Freudentrne/N -Freudigkeit -Freund/EFPT -Freundeskreis/EPT -Freundesmund -Freundlichkeit/P -Freundschaft -Freundschaftlichkeit -Freundschaftsbesuch/E -Freundschaftsdienst -Freundschaftsgeschenk -Freundschaftsgeste -Freundschaftspakt -Freundschaftsreise -Freundschaftsspiel/PS -Freundschaftssprche -Freundschaftsvertrag/Tp -Frevel -Freveltat -Friede/N -Frieden/S -Friedensaktion/P -Friedensangebot -Friedensappell/PS -Friedensaussichten -Friedensauszeichnung -Friedensbemhen -Friedensbereitschaft -Friedensbewegung/P -Friedensbrchen -Friedensbruch/T -Friedensdemonstration/P -Friedensdoktrinen -Friedensengel -Friedensfrist -Friedensfhler -Friedensgesprch/P -Friedensgeste -Friedensgipfel -Friedensinitiative/N -Friedensinstrument -Friedenskmpfer -Friedenskanzler -Friedenskonferenz -Friedenskonvention/P -Friedenskonzeption -Friedenskorps -Friedensliebe -Friedenslied -Friedensmenge -Friedensmission/P -Friedensmglichkeit/P -Friedensnobelpreis/EPT -Friedensnobelpreistrger -Friedensordnung -Friedensparolen -Friedenspetition/P -Friedenspfeife/N -Friedensplan -Friedenspolitik -Friedenspreis/EPT -Friedenspreistrger -Friedensproblem/EPS -Friedensprogramm -Friedensregelung -Friedensschluss/Tp -Friedensschritte -Friedenssicherung -Friedensstand -Friedensstifter/FNS -Friedensstrer -Friedenssystem -Friedenstaube -Friedenstifter/FNS -Friedensverhandlung/P -Friedensvermittler -Friedensvermittlung -Friedensversammlung -Friedensvertrag/STp -Friedensvorschlge -Friedenswillen/S -Friedenswirtschaft -Friedenszeichen -Friedenszeit/P -Friedenszustand -Friedfertigkeit -Friedhfe/N -Friedhof/ST -Friedland -Friedrich/S -Friedrichshafen -Friedrichstadt -Friese/N -Friesland -Frikadelle/N -Frisbee/S -Frischei -Frischfisch -Frischfischfnger -Frischfleisch -Frischgemse/S -Frischhaltebeutel -Frischmilch -Frischobst -Frischwasser -Friseur/EFPS -Friseurbedarf -Friseurmeister -Friseurverband -Friseuse/N -Frisiertisch -Frisr/EFPS -Frist -Fristablauf/Sp -Fristenmodell/EPS -Fristsetzung -Fristverlngerung/P -Frisur/P -Fritteuse/N -Fritz -Frl -Frl. -Frhlichkeit -Frmmigkeit -Frsche/N -Frohnatur/P -Frohsinn/S -Fron/P -Fronarbeit/P -Frondienst/EPT -Fronleichnamsfest/EPT -Front/PW -Frontabschnitt -Frontalangriff/EPS -Frontansicht/P -Fronteinsatz -Frontend -Frontendapplikation -Frontendfirmware -Frontendprozessor/S -Frontfolie/N -Frontgebiete -Frontjargon -Frontkmpfer -Frontkommando -Frontleiterplatte -Frontlinie -Frontplatte/N -Frontplattengestaltung -Frontplattentastatur -Frontring -Frontscheibe/N -Frontseite/N -Frontstellung/P -Frosch -Froschknig -Froschmnner/N -Froschperspektive/N -Froschschenkel -Frost/ST -Frostbeule/N -Frostperiode -Frostschden -Frostschaden -Frostschutz -Frostschutzmittel -Frostwetter -Frotteemantel -Frottiertcher/N -Frottiertuch/ST -Frchte/N -Frchtekrbe/N -Frchtekorb/ST -Frchtelieferung/P -Frhaufsteher/NS -Frhbarock -Frhbeet -Frheisenzeit -Frherkennung -Frhgeburten -Frhgemse/S -Frhgottesdienst/EPST -Frhjahr/S -Frhjahrsoffensive -Frhling/S -Frhlingsabend -Frhlingsblumen -Frhlingsferien -Frhlingsgefhle/N -Frhlingsnacht -Frhlingssonne -Frhlingsstimmung -Frhlingstraum/STp -Frhlingswetter -Frhlingswind -Frhnebel -Frhpensionierung -Frhrenaissance -Frhromantik -Frhschicht -Frhschoppen/S -Frhsport -Frhstck/S -Frhwarnanlage -Frhwarnsystem -Frhwarnung -Frhzeit -Frhzeitigkeit -Frhzndung -Frhzug/Tp -Frucht -Fruchtbarkeit -Fruchtknoten/S -Fruchtpressanlage -Fruchtpresse/N -Fruchtsften -Fruchtsaft/T -Fruchtsaftpresserei -Frugalitt -Frust -Frustration/P -Fchse/FN -Fgens -Fgsamkeit -Fgung/P -Fhlbarkeit -Fhler/NS -Fhlerlehre -Fhlungsnahme/N -Fhrens -Fhrer/FNS -Fhrerbefehl -Fhrergarde -Fhrerhauptquartier -Fhrerpersnlichkeit/P -Fhrerprinzip -Fhrerrolle/N -Fhrerschaft/P -Fhrerschein/EPS -Fhrerscheinentziehung -Fhrerscheinentzug/S -Fhrerscheinverfahren -Fhrersitz/EPT -Fhrerstaat -Fhrung/P -Fhrungsakademie -Fhrungsapparat -Fhrungsaufgabe/N -Fhrungsauswahl -Fhrungsbegabung -Fhrungsblech -Fhrungsentschluss/Tp -Fhrungsgabel -Fhrungsgremium -Fhrungsgrundstze/N -Fhrungsgruppe/N -Fhrungshilfe/N -Fhrungskrfte/N -Fhrungskraft -Fhrungskreise/N -Fhrungskrise/N -Fhrungslaschen -Fhrungsmann -Fhrungsmannschaft -Fhrungsmodell -Fhrungsnuten -Fhrungsorgan -Fhrungsorganisation/P -Fhrungspersnlichkeit/P -Fhrungsposition/P -Fhrungspraxis -Fhrungsqualitt/P -Fhrungsrad -Fhrungsrinne -Fhrungsrollen -Fhrungsschale/N -Fhrungsschicht/P -Fhrungsschlitz -Fhrungsstbe/N -Fhrungsstaat -Fhrungsstab/S -Fhrungsstifte -Fhrungssystem/EPS -Fhrungsteam -Fhrungstor -Fhrungstreffer -Fhrungswechsel -Fhrungszapfen -Fhrungszeugnis/Qq -Fhrungszuordnung -Fhrungszylinder/S -Fllbeton -Fllens -Fller/NS -Fllfederhalter -Fllhalter -Fllkraft -Fllmenge/N -Fllung/P -Fllzeichen/S -Fnfeck/EPT -Fnfer -Fnferreihe -Fnfjahresplan/S -Fnfkmpfe/N -Fnfkampf/T -Fnfkampfmeister -Fnflinge/N -Fnfmchtevertrag/STp -Fnfsitzer -Fnftelsekunde -Fnftklssler/FNS -Fnfzeiler -Fnfzigerjahren -Fnkchen/S -Frbitte/N -Frsorge/NR -Frsorgemter/N -Frsorgeamt/T -Frsorgearzt/T -Frsorgeausgaben -Frsorgeausschuss/Tp -Frsorgeempfnger -Frsorgekasse -Frsorgepflicht -Frsorger/FNS -Frsprache/N -Frsprecher/FNS -Frst/FP -Frstenaufstand -Frstenberg -Frstenfeldbruck -Frstenhaus/Tp -Frstenhfe -Frstenhof -Frstenkongress/EPT -Frstenmacht -Frstenplatz -Frstenthronen -Frstentmer/N -Frstentum/S -Frstenwall -Frth -Frwrter/N -Frwort/S -Frze/N -Fe/N -Ftterns -Ftterung/P -Fuchs/T -Fuchsjagd/P -Fuchspelz/EPT -Fuchsschwnzen -Fuchsschwanz/T -Fuchtel -Fuder/N -Fug/EP -Fugger/S -Fuhre -Fuhrgeld/RST -Fuhrprke/N -Fuhrpark -Fuhrunternehmen/S -Fuhrunternehmer/NS -Fuji -Fujitsu -Fulda/S -Fulltimejob/S -Fummel -Fummelei/P -Fund/EPT -Fundament/EPST -Fundamentalaussichten -Fundamentaldaten -Fundamentalismus -Fundamentalist/P -Fundbro/S -Fundgrube/N -Fundierens -Fundierung/P -Fundort/EPS -Fundsache/N -Fundus -Funk/RS -Funkamateur/EPS -Funkanlage/N -Funkapparat/EPST -Funkausstellung/P -Funkdienst/EPT -Funkeinrichtung -Funkelektroniker -Funkempfang -Funkenbildung -Funkentstrung -Funkfernsteuerung -Funkgert/EPST -Funkhaus/Tp -Funkortung/P -Funkpeilnetz -Funkpeilung -Funksignal/EPS -Funksprechgert/EPS -Funksprche/N -Funkspruch/S -Funkstation/P -Funkstrgrad -Funkstreifenwagen/S -Funktaxi/S -Funktechnik/P -Funktelegramm/EPS -Funktion/P -Funktionr/EPS -Funktionalitt/P -Funktionsablauf/Sp -Funktionsanwendung/P -Funktionsaufruf/EPS -Funktionsbereich/EPS -Funktionsbereitschaft -Funktionsbeschreibung -Funktionsbeurteilung/P -Funktionsdefinition/P -Funktionsdeklaration/P -Funktionsdiagramm/EPS -Funktionsergebnis/Qq -Funktionsfhigkeit -Funktionsfolge/N -Funktionsgarantie/N -Funktionsgruppe/N -Funktionsidentifikator/P -Funktionskompatibel -Funktionskontrolle/N -Funktionsmerkmale/N -Funktionsmuster -Funktionsobjekt/EPST -Funktionsplne/N -Funktionsplot/S -Funktionsprobe/N -Funktionsproblem/EPS -Funktionsprfung -Funktionsrmpfe/N -Funktionsrumpf/ST -Funktionssicherheit -Funktionssymbol/EPS -Funktionstaste/N -Funktionstest/S -Funktionstoleranz/P -Funktionstrger/NS -Funktionsberprfung -Funktionsumfang -Funktionsversion/P -Funktionsweise/N -Funktionszeit/P -Funktionsziel/EPS -Funktionszustnde/N -Funktor/P -Funktrme -Funkturm -Funkbertragung -Funkberwachungsdienst -Funkberwachungsnetz/EPT -Funkverbindung/P -Funkverkehr -Funkwagen/S -Funkwesen/S -Funkwetterdienst -Funkzeichen -Funkzentrale -Furchen/I -Furchtlosigkeit -Furie/N -Furnier/EPS -Furnierholz -Furnierholzfabriken -Furore -Furt/P -Furunkel/NS -Furz/T -Fu/T -Fuabdrcke/N -Fuabstreicher/NS -Fuabtreter/NS -Fuangel -Fubder -Fubad -Fuball/RSTp -Fuballamateure -Fuballanhnger -Fuballarbeiter -Fuballbeinen -Fuballberichte -Fuballbesessene -Fuballbund -Fuballduell -Fuballeben -Fuballehre -Fuballer/FNS -Fuballereignis/Qq -Fuballerkrankheit -Fuballfan/S -Fuballfanatiker -Fuballfelder -Fuballfreunde/N -Fuballgeschichte -Fuballglck -Fuballhne -Fuballidole -Fuballinstanz -Fuballkampf/T -Fuballkarriere -Fuballkunst -Fuballlnderspiel/E -Fuballliga -Fuballmacht -Fuballmannschaften -Fuballmauer -Fuballmeister/S -Fuballmeisterschaftsspiel -Fuballmetropole -Fuballnachwuchs -Fuballnationalelf -Fuballnationalmannschaft -Fuballnationalspieler -Fuballoberliga -Fuballparadies -Fuballpause -Fuballpltzen -Fuballplatz/T -Fuballpokalsieger -Fuballprofi/S -Fuballquoten -Fuballregeln -Fuballriesen -Fuballsaison -Fuballsieg -Fuballspiel/PRS -Fuballsport -Fuballstadium -Fuballstiefel/N -Fuballsystem -Fuballteam -Fuballtemperament -Fuballtor -Fuballtrainer -Fuballturnier/S -Fuballunternehmen -Fuballverbnde/N -Fuballverband/ST -Fuballverein/S -Fuballvolk -Fuballweisheit -Fuballwelten -Fuballwesten -Fuballzauberer -Fuballzeitschrift -Fubank -Fubekleidung -Fubden -Fuboden/S -Fubodenstandpunkt -Fubremse -Fudrehung/P -Fugnger/FNS -Fugngerbergang/Sp -Fugngerunterfhrung/P -Fugngerzone/N -Fugelenk -Fumrsche -Fumatte/N -Funote/N -Fupfad/EPST -Fupflege/N -Fuschalter -Fusohle/N -Fuspitzen -Fuspur -Fustapfen -Fustellung -Fustrecke -Fusttzen -Futritt/EPS -Fuverletzung -Fuvolk/T -Fuweg/EPST -Fuzeile/N -Fusel -Fusion/P -Fusionsbeschluss/Tp -Fusionsgesetz -Fusionskraftwerk -Fusionsvertrag/STp -Futter/S -Futteral/EPS -Futterauswahl -Futterbasis -Futterbeutel/S -Futtererzeugung -Futtergetreide -Futterksten -Futterkasten/S -Futterkrippen -Futtermais -Futtermittel/NS -Futtermittelindustrie -Futternpfen -Futternapf/T -Futterneid/T -Futterrben -Futterstoff/ET -Futterstofffabriken -Futterstroh -Futtertechnik -Futtertrgen -Futtertrog/T -Futur/EST -Futurologie -GATT -GAU -GB -GBit -GByte -GEW -GI -GMT -GPL -GPS -GUS -Ghnens -Gmse/N -Gnge/N -Gngelband -Gnse/MN -Gnseblmchen/S -Gnsebraten/S -Gnsefeder/N -Gnsefchen/S -Gnsekken -Gnseleber -Gnseleberpastete -Gnsemrsche/N -Gnsemarkt/STp -Gnsemarsch/ST -Gnserich/S -Gnseschmalz -Gnze -Grens -Grmittel/S -Grstoff/ET -Grtchen/S -Grtner/FNS -Grtnerei/P -Grtnereibesitzer -Grtnergehilfe -Grtnerlehrling -Grung/P -Grungsprozess/EPT -Gsschen/S -Gste/N -Gstebewirtung -Gstebcher -Gstebuch/T -Gstehaus/Tp -Gstemannschaft -Gstesaal -Gstezimmer/NS -Gule/N -Gabe -Gabel -Gabelfisch -Gabelhubwagen -Gabellichtschranke -Gabelstapler/N -Gabenliste/N -Gabler/NS -Gabriel/EST -Gabun -Gaddafi/S -Gag/EPS -Gagenerhhung -Gala -Galaempfang -Galakleid -Galakonzert -Galapagos -Galapremiere -Galavorstellung/P -Galaxie/N -Galaxis -Galeere/N -Galerie/N -Galeriegebude -Galgen/S -Galgenfrist/P -Galgenhumor/S -Galgenstrick/PS -Galgenvgel -Galgenvogel/S -Galilei/S -Galizien -Galle/N -Gallenanfall -Gallenblase -Gallenleiden/S -Gallenstein/EPS -Gallien -Gallier/FNS -Gallone/N -Gallonenweise -Galopp/S -Galopprennen -Galopprennsport -Galoppsport -Galoppwechsel -Galvanometer -Gamasche/N -Gameboy/S -Gammler/NS -Gandhi/S -Gang/EST -Gangart/P -Ganggrber -Gangreserve/N -Gangschaltung/P -Gangster/N -Gangsterjagd -Gangsterkrieg -Gangsterstck/E -Gangstersyndikat -Gangway/S -Ganove/N -Gans -Ganzaufnahme -Ganzgewebe -Ganzheit -Ganzheitsbeziehung -Ganzheitsgefhl/EPS -Ganztagsbeschftigung/P -Ganztagsschule -Ganzwortmethode -Garage/N -Garagenfahrzeuge -Garagenhof -Garagenmieten -Garagentr -Garagenwagen -Garant -Garantie/N -Garantieabgeltung -Garantieabkommen/S -Garantiebedingung/P -Garantiefall/Sp -Garantiefonds -Garantieforderung/P -Garantieleistung/P -Garantiemacht -Garantiemittel/N -Garantiesatz -Garantieschein/EPS -Garantiestaaten -Garantietrger -Garantieversprechen/S -Garantievertrag/STp -Garantiezeit -Garbe/N -Garbo/S -Garching -Garde/N -Gardeoffiziere/N -Garderobe/N -Garderobenfrau/P -Garderobenschrnke/N -Garderobenschrank -Garderobenstnder/NS -Garderobiere/N -Gardine/N -Garn/EPST -Garnele/N -Garnherstellung -Garnierens -Garnierung/P -Garnison/P -Garnisonskaserne -Garnisonsorten -Garnisonstadt -Garnitur -Garnpreise -Garten/S -Gartenanlage/N -Gartenanteil -Gartenarbeiten -Gartenarchitekt/P -Gartenbaubetriebe -Gartenbauer -Gartenbaukunst -Gartenbeet -Gartenerde -Gartenfreunde -Gartengerte -Gartengestaltung -Gartenhaus/Tp -Gartenlaube -Gartenmauer -Gartenmesser/N -Gartenpflege -Gartenschau -Gartenschere -Gartenstadt -Gartenstuhl -Gartenteil -Gartentisch -Gartenzune/N -Gartenzaun/S -Gartenzwerg/E -Gas/EPTq -Gasabgabe -Gasanalyse -Gasangriff/ES -Gasanznder -Gasbehlter/S -Gasbeleuchtung/P -Gasblschen -Gasblasen -Gasbombe/N -Gasbrenner/S -Gasdichte -Gasdiffusion -Gasdruck -Gasen/IW -Gasexploration -Gasfernleitung -Gasfeuerung -Gasfeuerzeuge -Gasflaschen -Gasgerte -Gasgeschft -Gasgesellschaft -Gashhne/N -Gashahn -Gashebel/NS -Gasheizung/P -Gasherd/ET -Gaskammer/N -Gaskocher/NS -Gaskonzerne -Gasleitung/P -Gasleitungsmonteur -Gaslicht/R -Gaslieferung/P -Gasmaske/N -Gasfen -Gasl -Gaslexporte -Gaslverbilligung -Gasofen/S -Gasometer -Gaspedal/EPS -Gaspistole -Gaspreise -Gasrohrleitung/P -Gassenjargon -Gast/T -Gastarbeiter/FNS -Gastarbeiterinvasion -Gastarbeiterproblem/EPS -Gastarbeiterwelle -Gastbuch -Gastchoreographen -Gastdirektion/P -Gastdozent -Gasteig -Gastfreiheit/P -Gastfreund/EPT -Gastfreundlichkeit -Gastfreundschaft -Gastgeber/FNS -Gastgeschenk -Gasthaus/Tp -Gasthfe/N -Gasthof/ST -Gastlnder/N -Gastland -Gastmahl -Gastod -Gastprofessur/P -Gastregisseure -Gastritis -Gastrolle/N -Gastronom/P -Gastronomie -Gastschler/FNS -Gastspiel/EPS -Gastspielauffhrung -Gastspielfahrt -Gastspielreise -Gaststtte/N -Gaststttenbesitzer -Gaststttenbetriebe -Gaststtteninventar -Gaststttenkonzept -Gaststttennetzwerk -Gaststttenpchter -Gaststttenumsatz -Gastvorlesung/P -Gastvorstellung -Gastwirt/EFPS -Gastwirtschaft -Gastwirtseheleute -Gastzimmer -Gasverbrauch -Gasversorgung -Gaswerk/EPS -Gaswirtschaft -Gaszhler/S -Gaszndung -Gateleitung/P -Gateway/S -Gatte/FNR -Gatten/J -Gattenmrder -Gatter/NS -Gattungsgeschichte -Gattungsname/N -Gaucho/S -Gauda -Gaudeamus -Gaukelbild/R -Gaukelei/P -Gaukelspiel/PS -Gaukler/FNS -Gaul/S -Gauleiter -Gaulle/S -Gaullist/P -Gaumeister -Gaumen/S -Gaumenlaut/EPT -Gaumenplatte -Gauner/FNS -Gaunerei/P -Gaze/N -Gazelle/N -Gazeschleier -Gazette/N -Gazevorhang -GbR -Gest/EPT -Gebck -Geblk/S -Gebrmttern -Gebrmutter -Gebude/NS -Gebudeflgel -Gebudeform -Gebudegrundflche -Gebudekomplex -Gebudenutzflche -Gebudeschden -Gebudesicherung -Gebudesteuer -Gebudeversicherung -Gebein/EPST -Gebell/S -Geber/NS -Geberoberflche -Geberwiderstand -Gebet/ES -Gebetsmhlen -Gebiet/RST -Gebieter/FNS -Gebietsabtretung -Gebietseinheit/P -Gebietsforderung -Gebietsreform -Gebietsstelle/N -Gebietsverlust -Gebietsvertretung -Gebilde/NS -Gebimmel/S -Gebinde/N -Gebirge/NS -Gebirgsbewohner/FNS -Gebirgsblick -Gebirgsgegenden -Gebirgsjger -Gebirgskmme -Gebirgskamm/S -Gebirgskette -Gebirgslage -Gebirgsland -Gebirgsstrecken -Gebirgswand -Gebirgswelt -Gebirgszug/STp -Gebiss/ET -Gebissbild -Geblse/N -Gebots -Gebotsschild/RST -Gebru/S -Gebrauchsanweisung/P -Gebrauchsartikel/NS -Gebrauchsfhigkeit -Gebrauchsfahrzeug/EPS -Gebrauchsgegenstnde/N -Gebrauchsgegenstand/ST -Gebrauchsgraphik -Gebrauchsgter/N -Gebrauchskugelschreiber -Gebrauchsmuster/N -Gebrauchsmusteranmeldung/P -Gebrauchswagen -Gebrauchtfahrzeuge -Gebrauchtwagen/S -Gebrauchtwagenabteilung -Gebrauchtwagenhandel -Gebrauchtwagenkauf/Sp -Gebrauchtware/N -Gebrechen/S -Gebrechlichkeit -Gebrll/S -Gebrumm -Gebhr -Gebhreneinheit/P -Gebhrenordnung/P -Gebhrenpolitik -Gebhrenstze/N -Gebsch/EPS -Gebundenheit -Geburt/P -Geburtenbeschrnkung/P -Geburtenkontrollen -Geburtenrate -Geburtenregelung/P -Geburtenrckgang -Geburtenschwund -Geburtenberschuss/Tp -Geburtenziffern -Geburtenzunahme -Geburtsanzeige -Geburtsbeihilfe -Geburtsdaten -Geburtsdatum -Geburtsfehler/NS -Geburtshelfer/FNS -Geburtshilfe/N -Geburtsjahr/EPST -Geburtslnder -Geburtsland/T -Geburtsname/N -Geburtsort/EPT -Geburtsrate/N -Geburtsschein/EPS -Geburtssttte -Geburtsstadt -Geburtsstunde/N -Geburtstag/EPST -Geburtstagsbild -Geburtstagsfeier/N -Geburtstagsgeschenk -Geburtstagsgru/Tp -Geburtstagskarte/N -Geburtstagsmorgen -Geburtstagsparade/N -Geburtstagsparty/S -Geburtstagsrede -Geburtsurkunde/N -Geburtswehen -Geck/P -Gedchtnis/Qq -Gedchtnisfeier/N -Gedchtnishilfe/N -Gedchtnisschwche/N -Gedchtnisschwund -Gedchtnisstrung/P -Gedchtnissttze/N -Gedchtnisverlust/T -Gedanke/N -Gedanken/S -Gedankenarmut -Gedankenaustausch/T -Gedankenblitz/EPT -Gedankenfreiheit/P -Gedankengang/STp -Gedankengesprche/N -Gedankengut -Gedankenkette/N -Gedankenkreis/EPT -Gedankenlesen -Gedankenleser/FNS -Gedankenlosigkeit/P -Gedankenreichtum -Gedankenschema -Gedankensplitter/N -Gedankenstrich/EPS -Gedankenbertragung/P -Gedankenwelt/P -Gedankenwerk -Gedeck/EPS -Gedenkbriefmarke/N -Gedenkfeier/N -Gedenkrede/N -Gedenkschleife -Gedenksttten -Gedenkstein/EPS -Gedenkstunde -Gedenktafel -Gedenktag/EPS -Gedenkwort -Gedenkzug/STp -Gedicht/EPST -Gedichtsammlung/P -Gedichtzyklus -Gediegenheit -Gedrnge/NS -Gedrhn/ES -Geduld -Geduldsfaden -Geduldspiel/EPS -Geduldsprobe/N -Gefhrdens -Gefhrdung/P -Gefhrlichkeit -Gefhrt/EFP -Geflle/NS -Geflligkeit/P -Gefngnis/Qq -Gefngnisdirektor/PS -Gefngnisstrafen -Gefngnisverwaltung -Gefngniswrter/S -Gefngniswesen/S -Gefngniszelle -Gef/EPT -Geferkrankung/P -Gefschdigung/P -Gefahr -Gefahrenherd/EPS -Gefahrenmoment/EPS -Gefahrenquelle/N -Gefahrensignal/EPS -Gefahrenwolke/N -Gefahrenzone/N -Gefahrenzulage/N -Gefahrlosigkeit -Gefallenenehrung -Gefallenenfriedhfe -Gefallsucht -Gefangenenbefreiung -Gefangenenlager/S -Gefangenenpflege -Gefangenenproblem/EPS -Gefangenhaltung/P -Gefangenschaft/P -Gefasel/S -Gefecht/EPS -Gefechtsstnde/N -Gefechtszentrum -Gefieder/N -Gefilde/N -Geflecht/EPS -Geflgel/S -Geflgelfarm/P -Geflgelfleisch -Geflgelhndler/FNS -Geflgelschere/N -Geflgelzchter -Geflster/S -Geflunker/S -Gefolge/N -Gefolgschaft/P -Gefolgsmann/S -Gefrigkeit -Gefreitenbefrderung/P -Gefrieranlage/N -Gefrierfach/S -Gefriermaschine/N -Gefrierpunkt/ET -Gefrierschrnke -Gefrierschrank/S -Gefrierschutz -Gefriertruhe/N -Gefge/NS -Gefhl/EPS -Gefhllosigkeit -Gefhlsargument -Gefhlsduselei/P -Gefhlserguss/T -Gefhlsleben/S -Gefhlsmensch/P -Gegebenheit/P -Gegenagent/P -Gegenaktion/P -Gegenangriff/EPS -Gegenanklage/N -Gegenantrag/STp -Gegenantwort -Gegenargument/EPS -Gegenbefehl/EPS -Gegenbeispiel/EPS -Gegenbeschuldigung/P -Gegenbesuch/EPT -Gegenbewegung/P -Gegenbeweis/EPT -Gegend/P -Gegendarstellung/P -Gegendienst/EPT -Gegendiskriminierung -Gegendruck -Gegeneinanderwirken -Gegenentwurf -Gegenerklrung -Gegenerwiderung -Gegenfeuer -Gegenforderung -Gegenfrage/N -Gegengerade/N -Gegengeschenk/EPS -Gegengewicht/EPST -Gegengift/EPST -Gegenidee/N -Gegenindizien -Gegenkandidat/P -Gegenkandidatur -Gegenklage/N -Gegenkrfte/N -Gegenkraft -Gegenkste -Gegenleistung/P -Gegenliebe -Gegenmanahme/N -Gegenmedikament -Gegenmittel/N -Gegenoffensive/N -Gegenppste -Gegenpart -Gegenpartei/P -Gegenpol -Gegenposition/P -Gegenprobe/N -Gegenreaktion/P -Gegenrechnen/JS -Gegenrede/N -Gegenreformation -Gegenrevolution/P -Gegenrichtung -Gegenruf/EPS -Gegenstze/N -Gegensatz/T -Gegensatzpaaren -Gegenschraube -Gegenseite/N -Gegenseitigkeit -Gegenspieler/NS -Gegenspionage -Gegensprechanlage -Gegenstnde/N -Gegenstndlichkeit -Gegenstand/ST -Gegenstandsbereich -Gegenstelle/N -Gegenstimme/N -Gegenstck/EPS -Gegenteil/EPS -Gegenthese/N -Gegentor -Gegentreffer -Gegentrend -Gegenberstellens -Gegenberstellung/P -Gegenufer -Gegenverkehr/S -Gegenvorschlag/S -Gegenwart -Gegenwartsaufgaben -Gegenwartskunde -Gegenwartsliteratur -Gegenwartsproblem/EPS -Gegenwartstheater/S -Gegenwehr -Gegenwende/N -Gegenwert/EPT -Gegenwind/EPT -Gegenwinkel/NS -Gegenwirkung/P -Gegenzeuge/N -Gegenzug/STp -Gegner/FNS -Gegnerschaft/P -Gehlter/N -Gehssigkeit/P -Gehuse/NS -Gehusenderung/P -Gehuseabmessung/P -Gehusebau -Gehuseboden/S -Gehuseform -Gehusegre/N -Gehusekonstruktion/P -Gehusematerial -Gehusemodifikation/P -Gehusemuster -Gehuseoberflchenbehandlung -Gehuseoberseite -Gehusepreis/EPT -Gehuserand -Gehuseschaden -Gehuseunterseite -Gehusevarianten -Gehusewand -Gehabe -Gehalt/S -Gehaltlosigkeit/P -Gehaltsabrechnung -Gehaltsabteilung/P -Gehaltsabzug/Sp -Gehaltsangebot -Gehaltsanspruch -Gehaltsaufbesserung/P -Gehaltsentwicklung -Gehaltserhhung/P -Gehaltsfrage -Gehaltshhe -Gehaltsklassen -Gehaltskosten -Gehaltsliste -Gehaltsniveau -Gehaltssteigerung/P -Gehaltsstufe -Gehaltssummen -Gehaltstabelle -Gehaltstten -Gehaltsverbesserung/P -Gehaltsvereinbarung -Gehaltsvergleiche -Gehaltsvertrag/STp -Gehaltsvorschlag/STp -Gehaltsvorstellung -Gehaltswnsche -Gehaltswunsch/T -Gehaltszulage/N -Gehege/NS -Geheimabstimmung -Geheimagent -Geheimakten -Geheimaktion/P -Geheimbefehl -Geheimbericht -Geheimbesprechung/P -Geheimbnde/N -Geheimbund -Geheimdienst/EPT -Geheimdienstagenten -Geheimdienstaktivitten -Geheimdienstbeamten -Geheimdienstberichte -Geheimdienstchef -Geheimdienstexperte -Geheimdienstkoffer -Geheimdienststellen -Geheimdiplomatie -Geheimdokumenten -Geheimfcher/N -Geheimfach/ST -Geheimgesprch/E -Geheimhalten/J -Geheimhaltungsbestimmung/P -Geheimhaltungspflicht -Geheimkammern -Geheimkonferenz -Geheimmission/P -Geheimnis/Qq -Geheimniskrmerei -Geheimnistuerei -Geheimorganisation/P -Geheimplan -Geheimpolizei -Geheimpolizist -Geheimprotokoll -Geheimrte/N -Geheimrat/ST -Geheimrezept -Geheimsachen -Geheimschrift/P -Geheimsitzung/P -Geheimsprache/N -Geheimtipp/S -Geheimtuerei/P -Geheimunternehmen -Geheimverhandlung/P -Geheimverhre -Geheimverstecken -Geheimvertrag/STp -Geheimwaffe -Geheimzahl/P -Gehei/T -Geheul/S -Gehilfe/FN -Gehilfenbrief -Gehirn/EPS -Gehirnblutung -Gehirnerschtterung/P -Gehirnschaden -Gehirnschlag/Tp -Gehirnspezialist -Gehirnstrommessung -Gehirntumor/EPS -Gehirnwsche/N -Gehft/EPST -Gehlz/EPT -Gehr/S -Gehrgang/Sp -Gehrknchelchen -Gehorsamkeit -Gehorsams -Gehsteig/EPST -Gehupe -Gehversuch/EPS -Gehweg/EPS -Geier/N -Geifer -Geige/NR -Geigenbogen/S -Geigenharz/EPT -Geigenkasten/S -Geigenmacher/FNS -Geiger/FNS -Geigerzhler/N -Geilheit -Gei/P -Geibltter/N -Geiblatt/T -Geibcke/N -Geibock/ST -Geielns -Geielung/P -Geilung/P -Geisel/N -Geiseldrama -Geiselerschieung -Geiselnahme/N -Geiselnehmer/NS -Geist/ET -Geiste/RS -Geisterbeschwrer/N -Geisterbewegung/P -Geistererscheinung/P -Geisterfahrer -Geisterhand -Geisterhaus/Tp -Geisterkegler -Geisterstunde/N -Geisterwelt/P -Geistesarbeit/PR -Geistesarbeiter/FNS -Geistesblitz/EPT -Geistesgabe/N -Geistesgegenwart -Geistesgeschichte -Geisteshaltung/P -Geisteskrfte/N -Geisteskraft -Geisteskrankheit/P -Geistesleben/S -Geistesprodukte -Geistesrichtung/P -Geistesschwche/N -Geistesstrke -Geistesstrung -Geistesverfassung/P -Geistesverwandtschaft -Geistesverwirrung/P -Geisteswissenschaft -Geisteszustnde/N -Geisteszustand/ST -Geistigkeit -Geistlichkeit -Geistlosigkeit -Geiz/T -Geizhlse/N -Geizhals/T -Geizkragen/S -Gejohle/S -Gekeife/S -Gekeuche/S -Gekicher/S -Geklff/S -Geklatsche -Geklimper/S -Geklirr/S -Geknatter/S -Geknister/S -Gekreisch/ET -Gekritzel/S -Gekrse/S -Gelchter/N -Gelnde/RS -Gelndefahrt/P -Gelndefahrzeug/EPS -Gelndelauf/Sp -Gelnderitt -Gelndewagen/S -Gelufigkeit/P -Gelut/T -Gelaber/S -Gelage/NS -Gelass/ET -Gelassenheit -Gelatine/N -Gelaufe/S -Gelbschnbel/N -Gelbschnabel/S -Gelbsucht -Geld/ERST -Geldabfluss/Tp -Geldabwertung -Geldabzge/N -Geldadel/S -Geldangelegenheit/P -Geldanlage/N -Geldanlagealltag -Geldanlagebriefe -Geldanlagediensten -Geldanlageform -Geldanlagestrategien -Geldanlagethema -Geldanlegern -Geldanleihe/N -Geldanweisung/P -Geldaristokratie -Geldaufwand -Geldaufwendung -Geldaufwertung -Geldausgabe/N -Geldautomat/P -Geldbedarf/S -Geldbeschaffungskosten -Geldbesitzer -Geldbestand -Geldbetrag/Tp -Geldbeutel/NS -Geldbewegung/P -Geldbrsenersatz -Geldbrief/EPS -Geldbrieftrger -Geldbue/N -Gelddinge/N -Geldentwertung/P -Geldentwicklung -Geldersatz -Geldflschung -Geldforderung/P -Geldgeber/NS -Geldgebernation/P -Geldgeschft/EPS -Geldgeschenk/EPS -Geldhhne -Geldhahn -Geldheirat/P -Geldhunger -Geldinstitut/EPS -Geldkufer -Geldklemme/N -Geldknappheit/P -Geldkreislauf/Sp -Geldkrise -Geldlotterie -Geldmnner/N -Geldmagneten -Geldmakler/FNS -Geldmangel -Geldmann/T -Geldmarkt/STp -Geldmarktanlagen -Geldmarktgeschfte -Geldmarktinstrumente -Geldmarktpapiere -Geldmarktpolitik -Geldmarktstze -Geldmenge/N -Geldmengenentwertung -Geldmengenexpansion -Geldmengenexplosion -Geldmengenimplosion -Geldmengenpolitik -Geldmengenschpfung -Geldmengenschub -Geldmengenwachstum/S -Geldmittel/S -Geldmnzen -Geldnte/N -Geldpolitik -Geldpreise -Geldpresse -Geldprobleme -Geldquelle/N -Geldstze -Geldsache -Geldsammlung -Geldschein/EPST -Geldschpfung -Geldschrnke -Geldschrank/T -Geldschrankfabrik -Geldschwemme -Geldsendung/P -Geldsorten -Geldsparen -Geldspende -Geldspritze -Geldstrafe -Geldstrme -Geldstrom -Geldstck/EPS -Geldschtigkeit -Geldsucht -Geldsumme -Geldtaschen -Geldtpfe/N -Geldtopf/S -Geldberhang -Geldumlauf/Sp -Geldumschlag/STp -Geldverfgung/P -Geldverkehr -Geldverlegenheit -Geldverleih/R -Geldverleihung -Geldverlust -Geldvermehrung -Geldverschieber -Geldverschwendung/P -Geldvolumen -Geldwsche/NR -Geldwscher/NS -Geldwechsel/NS -Geldwert/EPT -Geldwertschwund -Geldwertstabilisierung -Geldwirtschaft -Geldzins/PT -Geldzgel -Geldzufluss/Tp -Geldzufuhr -Geldzuwendung/P -Gelee/S -Gelegenheit/P -Gelegenheitsarbeit/PR -Gelegenheitsarbeiter/FNS -Gelegenheitsbesucher -Gelegenheitsgeschft -Gelegenheitskauf/STp -Gelegenheitsverkehr -Gelehrigkeit -Gelehrsamkeit -Gelehrtenkongress/EPT -Gelehrtenrepublik -Geleis/EPT -Geleit -Geleitbrief/EPST -Geleitschiff/EPS -Geleitschutz -Geleitwort/ET -Geleitzug/STp -Gelenk/EPT -Gelenkigkeit -Gelenkrheumatismus -Gelichter -Gelbnis/Qq -Gelsenkirchen/S -Geltendmachung -Geltens -Geltung/P -Geltungsanspruch -Geltungsbedrfnis/Qq -Geltungsbereich/P -Geltungsdauer -Geltungsdrang -Geltungswahn/S -Gelbde/S -Gelumpe -Gemcher/N -Gemchlichkeit -Gemlde/N -Gemldeausstellung/P -Gemldegalerie -Gemlderuber -Gemldesle -Gemuer/NS -Gemach/S -Gemahl/FS -Gemarkung -Gemeinde/N -Gemeindeauftrge -Gemeindebau/ST -Gemeindebesitz -Gemeindebund -Gemeindeeigentum -Gemeindefinanzen -Gemeindefinanzreform -Gemeindegottesdienst -Gemeindegrundsteuer -Gemeindehaus/Tp -Gemeindekasse -Gemeindeneuwahlen -Gemeindeoberhupter -Gemeindepastor -Gemeinderte/N -Gemeinderat/ST -Gemeinderatsbeschluss/Tp -Gemeinderatsitzung -Gemeindesiedlung -Gemeindesteuer/N -Gemeindestrae/N -Gemeindevter -Gemeindeveranstaltung/P -Gemeindeverbnde -Gemeindevertretung -Gemeindeverwaltung/P -Gemeindevorstnden -Gemeindevorstand/T -Gemeindewahlen -Gemeindewald -Gemeindezentrum -Gemeingefhl -Gemeingter/N -Gemeingut/ST -Gemeinheit/P -Gemeinnutz/P -Gemeinsamkeit/P -Gemeinschaft/P -Gemeinschaftsaktion/P -Gemeinschaftsangelegenheit/P -Gemeinschaftsantenne -Gemeinschaftsarbeit/P -Gemeinschaftsausgabe/N -Gemeinschaftsbildung -Gemeinschaftsebene/N -Gemeinschaftsentscheidung/P -Gemeinschaftserziehung -Gemeinschaftsgefhl -Gemeinschaftsgeist/T -Gemeinschaftshandlung/P -Gemeinschaftsinteresse/NS -Gemeinschaftskantinen -Gemeinschaftskommission/P -Gemeinschaftskompetenz/P -Gemeinschaftskonten -Gemeinschaftskonto/S -Gemeinschaftslnder -Gemeinschaftsleben/S -Gemeinschaftslinien -Gemeinschaftslsung/P -Gemeinschaftsmanahme/N -Gemeinschaftsmittel -Gemeinschaftsorgan/EPS -Gemeinschaftsposition/P -Gemeinschaftsproduktion/P -Gemeinschaftsprojekte -Gemeinschaftsrecht/S -Gemeinschaftsschule -Gemeinschaftstarif -Gemeinschaftsunternehmen -Gemeinschaftsvertrag/STp -Gemeinschaftswhrung -Gemeinschaftswerk/T -Gemeinschaftswohl -Gemeinschuldner/NS -Gemeinwesen/S -Gemeinwohl/S -Gemenge/N -Gemetzel -Gemisch/EPST -Gemischtwarengeschft -Gemischtwarenhandlung/P -Gemse/S -Gemseanbauflche -Gemsebau/T -Gemsegrten -Gemsegarten/S -Gemsehndler/FNS -Gemsehandlung/P -Gemsekonserven -Gemsemarkt/Tp -Gemsepreise -Gemt/RST -Gemtlichkeit -Gemtsart/P -Gemtsbewegung/P -Gemtskrankheit/P -Gemtslage/N -Gemtsleben/S -Gemtsmensch/P -Gemtsstrung/P -Gemtsverfassung -Gemtszustnde/N -Gemtszustand/ST -Gemunkel -Gemurmel/S -Genauigkeit/P -Genauigkeitsklasse -Gendarm/P -Gene/N -Genehmigens -Genehmigung/P -Genehmigungsbehrden -Genehmigungsverfahren/S -Genera -Generle/N -General/S -Generalagent/P -Generalagentur -Generalanwalt -Generalanwaltschaft -Generalbauplan -Generalbevollmchtigte/NR -Generalbundesanwalt -Generaldirektor/PS -Generalgouvernement -Generalgouverneur/S -Generalintendant -Generalisierung/P -Generalissimus -Generalitt -Generalkasse -Generalkommission/P -Generalkonsul/NS -Generalkonsulat/PS -Generalleutnant -Generallinie/N -Generalmajor -Generaloberst/PS -Generalplanung -Generalprobe/N -Generalresident -Generalresolution/P -Generalsekretr -Generalsekretariat/S -Generalsmarsch -Generalsrang -Generalsstab -Generalstaaten -Generalstaatenpartei -Generalstaatsanwalt -Generalstab/ST -Generalstabsarbeit -Generalstabschef -Generalstreich -Generalstreik/S -Generaltenor -Generalthema -Generalberholung -Generaluntersuchung -Generalvertreibung/P -Generalvertreter -Generalvertretung/P -Generalvollmacht/P -Generalzahlmeister -Generation/P -Generationenkonflikt -Generationsgenosse -Generationsproblem/EPS -Generationszeit -Generationszyklen -Generator/PS -Generatorenanlagen -Generierens -Generierung/P -Generierungsprozess/EPT -Genesens -Genesung/P -Genesungsheim/EPT -Genesungsprozess/EPT -Genf/R -Genforschung -Genialitt/P -Genick/EPS -Genickbruch -Genickschlge -Genickschuss/Tp -Genie/S -Genieblitz -Genieer/N -Genitalien -Genitiv/EPS -Genius -Genmanipulation/P -Genom/EPS -Genosse/F -Genossenschaft -Genossenschaftsbank/P -Genossenschaftsgesetz -Genossenschaftssiedlung -Genossenschaftstag -Genossenschaftsverband -Genre/S -Genreszene/N -Genrezeichnung/P -Gens -Gentechnik -Gengsamkeit -Genua -Genugtuung/P -Genus -Genuss/Tp -Genussgier -Genussmittel/N -Genussmittelgewerbe -Genussmittelindustrie -Geografie -Geografiestunde/N -Geograph/Pf -Geographie -Geographiestunde/N -Geologe/N -Geologie -Geometer/NS -Geometrie/N -Geometrieberechnung/P -Geometrieermittlung -Geometrieparameter -Georg/EST -Gepck/S -Gepckannahme/N -Gepckaufbewahrung -Gepckausgaben -Gepckfreigrenzen -Gepckhalter/S -Gepckkontrolle/N -Gepcknetz/EPT -Gepckraum/STp -Gepckschein/EPS -Gepckschliefcher/N -Gepckschliefach -Gepckstcke -Gepcktrger/N -Gepckwgen -Gepckwagen/S -Gepflogenheit/P -Geplnkel/S -Gepltscher/S -Geplapper/S -Geplauder/S -Gepolters -Geprge -Gerte/NS -Gerteabmessung -Gertebau -Gerteeinheit/P -Gertekomplettpreis -Gertekonfiguration/P -Gerteoberseite -Gerteortungsplne -Gertepark -Gerterckseite -Gertespannung -Gertestecker/NS -Gertetausch -Gertetest -Gertetreiber/NS -Gerteturnen/S -Gertetyp -Gerteunterseite -Gerteverbindung/P -Gertezahl -Gerts -Gertschaften -Gerumigkeit -Gerusch/EPT -Geruschbelstigung -Geruschcharakteristik -Geruschdetektor -Geruschentwicklung -Geruschlosigkeit -Geruschpegel -Geruschspektrum -Geradlinigkeit -Gerangel -Geranie/N -Geranienbeet -Geranienkasten -Gerassel/S -Geratewohl -Gerberdaten -Gerberei/P -Gerbmittel -Gerd/S -Gerda/S -Gerechtigkeit -Gerede/S -Gerhard/S -Geriatrie -Gericht/EPST -Gerichtsakten -Gerichtsbarkeit -Gerichtsbehrden -Gerichtsbeschluss/Tp -Gerichtsdiener/N -Gerichtsfall/Sp -Gerichtsgebude/N -Gerichtshfe/N -Gerichtshof/ST -Gerichtsklage -Gerichtskreise -Gerichtsnotar -Gerichtsprsident -Gerichtsreporter -Gerichtssle/N -Gerichtssaal/ST -Gerichtsschreiber/N -Gerichtssitzung -Gerichtsspruch -Gerichtsstand -Gerichtsummen -Gerichtsurteil/E -Gerichtsverfahren -Gerichtsverfassung -Gerichtsverhandlung/P -Gerichtsvollzieher/FNS -Gerichtswesen/S -Geriesel/N -Geringfgigkeit -Geringschtzung -Gerinnens -Gerinnung/P -Gerissenheit -Germane/N -Germanien -Germanienpolitik -Germanist/P -Germanistik -Gernegro/P -Gerll/S -Gerllablagerung -Gerllbank -Gerontologie -Gerste -Gerstenkrnern -Gerstenkorn/S -Gerstensaft -Gerstenstroh -Gerte/N -Gerchen/I -Gercht/EPT -Gerchtekche/N -Germpel/S -Gerst/EPT -Geruch/T -Geruchlosigkeit -Geruchssinn/EPS -Geruchsverschluss/Tp -Gerundium/S -Ges/EPT -Gesamtablauf/Sp -Gesamtalter -Gesamtanforderung/P -Gesamtanlagevermgen -Gesamtanleihe -Gesamtansicht -Gesamtarbeitszeit -Gesamtareal -Gesamtaufkommen/S -Gesamtaufwand -Gesamtausfuhr -Gesamtausgabe/N -Gesamtaussto/Tp -Gesamtbank -Gesamtbauflche -Gesamtbausumme -Gesamtbedarf -Gesamtbelastung -Gesamtbelegschaft -Gesamtbereich/EPS -Gesamtbeschreibung -Gesamtbestand/T -Gesamtbetrag/STp -Gesamtbevlkerung -Gesamtbewegung -Gesamtbewertung -Gesamtbezug/STp -Gesamtbilanz -Gesamtbild/RST -Gesamtdmpfung -Gesamtdauer -Gesamtdimension -Gesamtdividende -Gesamtdokumentation -Gesamteindruck -Gesamteinkommen/S -Gesamteinlagen -Gesamteinnahmen -Gesamteinsparung -Gesamtenergie -Gesamtentwicklung -Gesamtergebnis/Qq -Gesamterscheinung -Gesamtersparnis/q -Gesamtertrag/Tp -Gesamtetat -Gesamtexport/S -Gesamtforderung/P -Gesamtform -Gesamtforschungsvorhaben/S -Gesamtgert/T -Gesamtgertepreis/EPT -Gesamtgeschichte -Gesamtgewicht/S -Gesamtgewinn -Gesamtgre/N -Gesamtgrundflche -Gesamtgruppe/N -Gesamthaushalt/ST -Gesamtheit -Gesamtherstellung -Gesamthhe -Gesamthub/S -Gesamtimport/E -Gesamtinstallation -Gesamtinteresse/NS -Gesamtinvestition/P -Gesamtkapazitt -Gesamtkapitulation -Gesamtkomplex/EPT -Gesamtkonzept/T -Gesamtkosten -Gesamtkreditgeschft -Gesamtkndigung -Gesamtlnge/N -Gesamtlaufzeit -Gesamtleistung/P -Gesamtleitung -Gesamtlieferung -Gesamtlieferzeit -Gesamtliter -Gesamtlsung -Gesamtmarkt/T -Gesamtmechanik -Gesamtmenge/N -Gesamtmesse -Gesamtmobilmachung -Gesamtobjekt -Gesamtorganisation -Gesamtpaket/EPST -Gesamtpartei -Gesamtplan/S -Gesamtplanung -Gesamtplatine -Gesamtpotential/EPS -Gesamtpotenzial/EPS -Gesamtpreis/EPT -Gesamtprodukt/EPS -Gesamtproduktion -Gesamtprogramm/S -Gesamtprojekt/ST -Gesamtprozess/EPT -Gesamtquote/N -Gesamtrahmen/S -Gesamtreserve/N -Gesamtresultat -Gesamtschaden/S -Gesamtschau -Gesamtschema -Gesamtschlerzahl/P -Gesamtschulden -Gesamtschule/N -Gesamtschulzeit -Gesamtsituation -Gesamtspannung -Gesamtspezifikation/P -Gesamtstaat/PST -Gesamtsteuern -Gesamtstil -Gesamtstimmen -Gesamtstrafe -Gesamtstrategie/N -Gesamtstrecke -Gesamtstunden -Gesamtsumme/N -Gesamtsystem/EPS -Gesamtthema -Gesamtberschreitung -Gesamtberschuss/Tp -Gesamtbersicht/P -Gesamtumfang -Gesamtumlauf/Sp -Gesamtumstze -Gesamtumschlag/STp -Gesamtumstnde/N -Gesamtunternehmen -Gesamtverbrauch -Gesamtverfgbarkeit -Gesamtverlust/P -Gesamtvermgen/S -Gesamtverstndnis/Qq -Gesamtverteidigungsstrke -Gesamtvolumen/S -Gesamtvorgang -Gesamtvorhaben/S -Gesamtvorstnde -Gesamtvorstand -Gesamtvorstellung -Gesamtwert/EPS -Gesamtwiderstand/S -Gesamtwiedergabe/N -Gesamtzahl -Gesamtzeichnung/P -Gesamtzusammenhang -Gesamtzuwachs/T -Gesandtschaft -Gesang/STp -Gesangbcher/N -Gesangbuch/ST -Gesangbuchsverse -Gesanglehrer/FNS -Gesangskultur -Gesangsverein -Gesangverein/EPS -Geschft/EPST -Geschftemacher -Geschftigkeit -Geschftigkeitsdrang -Geschftsabschluss/Tp -Geschftsadresse -Geschftsanschrift -Geschftsanteil/EPT -Geschftsaussichten -Geschftsbank/P -Geschftsbasis -Geschftsbauten -Geschftsbedarf/S -Geschftsbedingung/P -Geschftsbegrenzung -Geschftsbelastung -Geschftsbelebung -Geschftsbereich/EPS -Geschftsbereichsleiter/NS -Geschftsbericht/E -Geschftsbettigung -Geschftsbeteiligung -Geschftsbetrge -Geschftsbeziehung/P -Geschftsbrief/ET -Geschftseinrichtung -Geschftseinstellung -Geschftsentwicklung -Geschftserfolg -Geschftsergebnis/Qq -Geschftserffnung -Geschftsexpansion -Geschftsfahrten -Geschftsfeld/RT -Geschftsflaute -Geschftsfrauen -Geschftsfreund/EPT -Geschftsfhrer/FNS -Geschftsfhrung/P -Geschftsgang/Sp -Geschftsgebude -Geschftsgebiet -Geschftsgeheimnis/Qq -Geschftsgeist -Geschftsgewinn -Geschftsgrndung/P -Geschftshaus/Tp -Geschftsinhaber/NS -Geschftsinteresse -Geschftsjahr/EPST -Geschftsjubilum -Geschftskosten -Geschftskunde/FN -Geschftslage/N -Geschftsleben -Geschftsleitung -Geschftsleitungsmitglied -Geschftsleute -Geschftslokal/E -Geschftsmnner -Geschftsmann/T -Geschftsmglichkeit/P -Geschftsneubau -Geschftsobjekte -Geschftsordnung -Geschftspapiere/N -Geschftspartner/FNS -Geschftsplne -Geschftspolitik -Geschftspraktiken -Geschftsraum/STp -Geschftsreise/N -Geschftsreisender -Geschftsrisiko/S -Geschftsrckgang -Geschftsschluss/Tp -Geschftssitz/ET -Geschftsstadt -Geschftsstelle/N -Geschftsstrae/N -Geschftsstrukturen -Geschftsttigkeit -Geschftsteilhaber/NS -Geschftsbernahme -Geschftsunterlagen -Geschftsverbindung/P -Geschftsverkauf/Sp -Geschftsverkehr -Geschftsviertel -Geschftswelt -Geschftszahlen -Geschftszeit -Geschftszentrum -Geschftszimmer/NS -Geschftszuwachs/T -Geschftszweck/EPS -Geschftszweig/EPST -Geschehens -Geschehnis/Qq -Gescheitsein -Geschenk/EPST -Geschenkabonnement/S -Geschenkartikel -Geschenkbuch -Geschenkidee/N -Geschenkpackung -Geschenkpakete -Geschenksendung/P -Geschenkverpackung -Geschichte/MN -Geschichtenbaum -Geschichtenerzhler -Geschichtensammler -Geschichtsabteilung -Geschichtsbetrachtung -Geschichtsbewusstsein -Geschichtsbcher -Geschichtsbuch -Geschichtsforscher/FNS -Geschichtsforschung -Geschichtslehrer/FNS -Geschichtsphilosophie -Geschichtsschreiber/S -Geschichtsschreibung -Geschichtsunterricht -Geschick/EPST -Geschicklichkeit/P -Geschicks -Geschirr -Geschirrreiniger/NS -Geschirrsplautomat/P -Geschirrsplmaschine/N -Geschirrteile -Geschlecht/RST -Geschlechtsakt/EPST -Geschlechtsgenossen -Geschlechtskrankheit/P -Geschlechtsleben/S -Geschlechtsname/N -Geschlechtsorgan/EPS -Geschlechtsteil/EPS -Geschlechtstrieb/EPS -Geschlechtsverkehr/S -Geschlossenheit -Geschmcker/N -Geschmack/ST -Geschmacklosigkeit/P -Geschmacksempfinden -Geschmacksrichtung/P -Geschmackssache -Geschmackssinn/EPST -Geschmackstrgern -Geschmacksverirrung/P -Geschmeide/N -Geschmeidigkeit -Geschmiere/S -Geschmunzel/S -Geschnatter/S -Geschpf/EPS -Geschoss/ET -Geschreibsel/S -Geschtz/EPT -Geschtzfeuer -Geschwtz/T -Geschwtzigkeit -Geschwader/N -Geschwindigkeit/P -Geschwindigkeitsnderung -Geschwindigkeitsbegrenzung/P -Geschwindigkeitsbeschrnkung/P -Geschwindigkeitsempfehlung -Geschwindigkeitsgrenze -Geschwindigkeitsmesser/NS -Geschwindigkeitsmessung/P -Geschwindigkeitsrekord/E -Geschwindigkeitssnder -Geschwindigkeitsberschreitung/P -Geschwindigkeitsverluste -Geschwindigkeitsweltrekord -Geschwister/N -Geschwisterkarten -Geschworenengericht -Geschwlste/N -Geschwr/EPS -Geschwulstbildung -Geschwulstherde -Geselchte/N -Gesellenbrief -Geselligkeit -Gesellin/F -Gesellschaft/PR -Gesellschafter/FNS -Gesellschafterversammlung -Gesellschaftsfahrt -Gesellschaftsform/P -Gesellschaftshaus/Tp -Gesellschaftskapital -Gesellschaftskrper -Gesellschaftskritik -Gesellschaftsleben/S -Gesellschaftslehre/N -Gesellschaftsordnung -Gesellschaftsorgane -Gesellschaftsraum/STp -Gesellschaftsreisen -Gesellschaftsspiel/EPS -Gesellschaftsstruktur/P -Gesellschaftssystem/EPS -Gesellschaftsteuererklrung -Gesellschaftsversammlung -Gesellschaftsvertrag/STp -Gesellschaftswissenschaft/P -Gesellschaftszimmer -Gesellschaftszweck -Gesetz/EPT -Gesetzbcher/N -Gesetzbuch/ST -Gesetzesnderung/P -Gesetzesantrag/STp -Gesetzesarbeit -Gesetzesbeschluss/Tp -Gesetzesbestimmung/P -Gesetzesbruch -Gesetzesbuchstaben -Gesetzesentwrfen -Gesetzesentwurf/T -Gesetzesflut -Gesetzesform -Gesetzesinitiative -Gesetzesnorm/P -Gesetzesnovelle -Gesetzesverbot -Gesetzesversto/Tp -Gesetzesvorlage/N -Gesetzesvorschlag/STp -Gesetzeswissen -Gesetzgeber/N -Gesetzgebung/P -Gesetzgebungsbefugnis/q -Gesetzgebungskompetenz/P -Gesetzgebungsmethoden -Gesetzgebungsprozess/EPT -Gesetzgebungsverfahren -Gesetzlichkeit -Gesetzlosigkeit -Gesetzmigkeit/P -Gesetzwidrigkeit/P -Gesicht/RST -Gesichtsausdrcke/N -Gesichtsausdruck -Gesichtsfarbe/N -Gesichtsfeld -Gesichtskrampf -Gesichtskreis/EPT -Gesichtslosigkeit -Gesichtsmasken -Gesichtspunkt/EPST -Gesichtsverletzung/P -Gesichtswahrung -Gesichtszug/STp -Gesinde -Gesindel/S -Gesinnung/P -Gesinnungsethik -Gesinnungsgenosse/N -Gesinnungspflege -Gesinnungswechsel/NS -Gesittung/P -Gesff/EPS -Gespann/S -Gespenst/RT -Gespensterfurcht -Gespenstergesicht -Gespensterschloss/T -Gespensterstunden -Gespielin -Gespinst/EPST -Gesptt/ST -Gesprch/EPST -Gesprchigkeit -Gesprchsaufzeichnung/P -Gesprchsbereitschaft -Gesprchsdauer -Gesprchsfhrung -Gesprchsgegenstand -Gesprchsklima -Gesprchslage/N -Gesprchsleiter -Gesprchsmglichkeit/P -Gesprchsnotiz -Gesprchspartner/FNS -Gesprchsprotokoll -Gesprchsstoff/EPT -Gesprchsteilnehmer/NS -Gesprchstermin -Gesprchsthema -Gesprchsthemen -Gesprchsweg -Gespr/S -Gestndnis/Qq -Gestnge/N -Gestngeschalen -Gestade/N -Gestalt/J -Gestaltungsmglichkeit/P -Gestaltungsprivileg -Gestaltungsvorstellung/P -Gestammel/S -Gestank/ST -Gestapo -Gestapokommando -Gestattens -Gestattung/P -Geste/N -Gestein/EPS -Gesteinsarten -Gesteinsmassen -Gesteinsunterscheidung -Gestell/EPS -Gestelleinheit -Gestik/P -Gestirn/EPS -Gestber/N -Gesthn/EST -Gestruch -Gestrpp -Gesthl/EPST -Gestt/EPST -Gesuch/EPST -Gesundbrunnen -Gesundheit -Gesundheitsmter/N -Gesundheitsamt/T -Gesundheitsausschuss/Tp -Gesundheitsdienst/E -Gesundheitskampagnen -Gesundheitskrise -Gesundheitsmagazin/EPS -Gesundheitsministerium -Gesundheitspflege -Gesundheitsschden -Gesundheitsverwaltung -Gesundheitsvorsorge -Gesundheitswsche -Gesundheitswesen/S -Gesundheitszeugnis/Qq -Gesundheitszustnde -Gesundheitszustand/T -Gesundschrumpfung -Getse/S -Getrnk/EPST -Getrnkebox -Getrnkeforschung -Getrnkehersteller -Getrnkeindustrie -Getrnkeladung -Getrnkestand -Getrnkevertrieb -Getratsche -Getreide/S -Getreideanbaubetrieb -Getreideart/P -Getreidebauern -Getreideeinfuhren -Getreideernte -Getreidefeld/RST -Getreideflut -Getreidehndler -Getreidehandlung/P -Getreidelieferung/P -Getreidemarkt/T -Getreidemengen -Getreidepreis/P -Getreidepreisangleichung -Getreidepreisgesetz -Getreideproduktion -Getreidesilo/S -Getreidespeichern -Getreidespeichers -Getreidetransporte -Getrenntheit -Getriebe/S -Getriebeschden -Getriebeschaden -Getrippel -Getto/S -Getmmel/S -Getue/S -Gewchsanlage/N -Gewchse/N -Gewchshaus/Tp -Gewhr/J -Gewhrens -Gewhrleistung/P -Gewhrtrgerhaftung -Gewnder/N -Gewsser/NS -Gewsserschutz -Gewackel/S -Gewahrsam/S -Gewalt/P -Gewaltakt/EPST -Gewaltanwendung -Gewaltausbrche/N -Gewaltausbung -Gewaltenteilung -Gewaltherrschaft/P -Gewaltkampagne/N -Gewaltkatastrophe -Gewaltlauf/Sp -Gewaltlosigkeit -Gewaltmittel -Gewaltschuss/Tp -Gewalttter/NS -Gewaltttigkeit/P -Gewaltverbrecher -Gewaltverhltnis/Qq -Gewaltverherrlichung -Gewand/T -Gewandtheit -Gewebe/NS -Gewebelagen -Gewebeuntersuchung/P -Gewehr/EPS -Gewehrfeuer/S -Gewehrkolben -Gewehrkolbenschlge -Gewehrlauf/STp -Gewehrmannschaft -Geweih/EPS -Gewerbe/S -Gewerbeanlagen -Gewerbeanteil -Gewerbeausstellung/P -Gewerbebank -Gewerbebau -Gewerbebetrieb/S -Gewerbefreiheit -Gewerbegebiet -Gewerbegrundstck -Gewerbehalle -Gewerbeoberlehrer -Gewerbeobjekt -Gewerbeordnung -Gewerbepark/S -Gewerberaum/STp -Gewerbeschein/EPST -Gewerbeschulen -Gewerbesteuer/N -Gewerbesteuerbescheid -Gewerbevermittlung -Gewerkschaft/PR -Gewerkschafter/FNS -Gewerkschaftler/FNS -Gewerkschaftsbeteiligung -Gewerkschaftsbewegung -Gewerkschaftsbund -Gewerkschaftschef -Gewerkschaftsdelegation -Gewerkschaftseinfluss/Tp -Gewerkschaftsflgel -Gewerkschaftsfhrers -Gewerkschaftsfhrung -Gewerkschaftsfunktionr/ES -Gewerkschaftsgeschichte -Gewerkschaftsgruppe -Gewerkschaftsinstitut -Gewerkschaftskasse -Gewerkschaftskongress/EPT -Gewerkschaftslager -Gewerkschaftsleitung -Gewerkschaftsmitglied/R -Gewerkschaftsorganisation -Gewerkschaftspartner -Gewerkschaftsrat/S -Gewerkschaftssieg -Gewerkschaftssitzung -Gewerkschaftstag/E -Gewerkschaftsverbnden -Gewerkschaftsverband/T -Gewerkschaftsversammlung -Gewerkschaftsvertreter -Gewicht/JT -Gewichtens -Gewichtheber -Gewichtsabnahme/N -Gewichtsbeschrnkung/P -Gewichtsfaktor -Gewichtsgruppen -Gewichtsklasse/N -Gewichtsverlagerung -Gewichtsverlust/ET -Gewichtsverteilung -Gewichtsvorgabe -Gewichtszunahmen -Gewimmel/S -Gewinde/NS -Gewindebolzen -Gewindebuchse -Gewindeeinstze -Gewindereduzierung/P -Gewinderohre -Gewindestangen -Gewindestangenlcher -Gewindestifte -Gewindestreifen -Gewinn/RST -Gewinnabfhrung -Gewinnabgabe -Gewinnabschpfung/P -Gewinnabtretung/P -Gewinnanteil/EPS -Gewinnanteilschein/S -Gewinnausfall/Sp -Gewinnausschttung/P -Gewinnaussichten -Gewinnausweis/EPT -Gewinnberechtigten -Gewinnberechtigter -Gewinnbesteuerung -Gewinnbeteiligung/P -Gewinnchance/N -Gewinneinbuen -Gewinnens -Gewinner/FNS -Gewinnerwartung/P -Gewinnerzielung -Gewinnerzielungsgrnden -Gewinnerzielungsmotiv -Gewinnerzielungstrieb -Gewinnfavorit -Gewinnmargen -Gewinnmaximierung -Gewinnmitnahme/N -Gewinnmglichkeit/P -Gewinnnummer/N -Gewinnposition/P -Gewinnpotential/EPS -Gewinnpotenzial/EPS -Gewinnpunkte -Gewinnrckgang -Gewinnrckstellung/P -Gewinnschtzung -Gewinnschwelle -Gewinnspanne/N -Gewinnsteigerung -Gewinnsteuern -Gewinnsucht -Gewinnsumme -Gewinnung/P -Gewinnungsanlage -Gewinnungsgert/T -Gewinnungsprozess/EPT -Gewinnverbesserung -Gewinnverfolgung -Gewinnverlagerung/P -Gewinnverwendung -Gewinnvorteile -Gewinnwachstum -Gewinnzone -Gewinnzuteilung -Gewirr -Gewissenlosigkeit -Gewissensbildung -Gewissensbiss/EPT -Gewissensdruck -Gewissensfrage/N -Gewissensfreiheit/P -Gewissenskonflikt/EPT -Gewissensnot -Gewissenszwang/Sp -Gewissenszweifel/NS -Gewissheit -Gewitter/NS -Gewitterfront -Gewitterregen -Gewitterschauer -Gewitterstrung -Gewitterwand -Gewitterwolke/N -Gewhnens -Gewhnung/P -Gewlbe/NS -Gewlk/E -Gewohnheit/P -Gewohnheitsdieb -Gewohnheitsmensch/P -Gewohnheitsrecht/EPT -Gewohnheitstrinker/N -Gewohnheitsverbrecher/NS -Gewhl -Gewrz/EPT -Gewrznelke/N -Gezappel -Gezeitenstrom -Gezeitenunterschied -Gezeter -Gezwungenheit -Ghetto/S -Ghostwriter/NS -Gibraltar -Gicht -Giebel/NS -Giebelwand -Gierwinkel -Gieer -Gieerei/P -Gieereibereich -Gieereierzeugnis/Qq -Gieereigruppe -Gieereikenntnisse -Giekanne/N -Gietiegel -Gift/ST -Giftaffre -Giftanschlag/STp -Giftmischerin -Giftmorde/NS -Giftmll -Giftmllskandal -Giftpilz/EPT -Giftschlange/N -Giftschlangenopfer -Giftstoffe -Gifttod -Giftwanze -Giftzhne/N -Giftzahn/T -Gigabyte -Gigant/P -Gigolo -Gilde/N -Gildenplatz -Gina/S -Ginkgo/S -Ginko -Gipfel/S -Gipfelgesprch -Gipfelhhe -Gipfelkonferenz/P -Gipfelpunkt -Gipfelsturm -Gipfeltermin -Gipfeltreffen -Gips -Gipsabdrcke/N -Gipsabdruck -Gipsbein -Gipser -Gipsfarbe -Gipsfiguren -Gipsverbnde/N -Gipsverband/ST -Giraffe/N -Girlande/N -Giro/S -Girokasse -Girokonten -Girokonto/S -Gironde -Gironetzen -Giroverbnde -Giroverband -Girozentralen -Gitarre/N -Gitarrenmusik -Gitarrist/P -Gitter/NS -Gitterboxen -Gitterfenster/NS -Gitterkonstante/N -Gittermasten -Gitterschnitt -Gitterstbe -Gitterstruktur -Gizeh -Glser -Glttens -Glttung/P -Glttungsmechanismus -Glubigerbank/P -Glubigergemeinschaften -Glubigerin/F -Glubigerkommission -Glubigern -Glubigers -Glubigerversammlung -Glubigkeit -Glaceehandschuh/EP -Glachandschuh/EP -Glamour/S -Glanz/T -Glanzlederhose -Glanzleistung/P -Glanzlichter -Glanzstoff -Glanzzeit -Glas/RT -Glasaugen -Glasbauten -Glasbruchversicherung -Glasdachs -Glasdeckel -Glasdosen -Glasfabrik/P -Glasfaserkabel -Glasfenster -Glasfiberleitung -Glasfigur -Glasfirmen -Glasflchen -Glasglocke/N -Glasgow -Glashaus/Tp -Glashtten -Glashttenwerke -Glasksten -Glaskasten -Glaskrper -Glaskugeln -Glaskuppel -Glaslinse -Glasmalerei -Glasmenagerie -Glasnost -Glaspalast -Glasperlen -Glasperlenspiel -Glasplatte -Glasscheibe/N -Glasscherbe -Glasschrnke/N -Glasschrank -Glasstreifen -Glassturz -Glasteile -Glasur/P -Glasverschlag/STp -Glasvitrine -Glaswerk -Glaszylinder -Glatteis/T -Glatteisbildung -Glatteisgefahr -Glattstellung/P -Glatze/N -Glaubens -Glaubensangelegenheit/P -Glaubensbekenntnis/Qq -Glaubensbewegung -Glaubenserfahrung -Glaubensfragen -Glaubensfreiheit/P -Glaubensgemeinschaft -Glaubensgenosse -Glaubensideologie -Glaubensimpulse -Glaubenskongregation -Glaubenslehre -Glaubenssatz -Glaubenssystemen -Glaubenszweifel -Glaubhaftigkeit -Glaubwrdigkeit -Gleichartigkeit -Gleichbehandlungsprinzip -Gleichberechtigung -Gleichens -Gleichfeld -Gleichgewicht/EPS -Gleichgewichtslage -Gleichgewichtsstrung/P -Gleichgltigkeit -Gleichheit/P -Gleichheitsgrundsatz/T -Gleichheitsprdikat -Gleichheitsprinzip -Gleichheitszeichen -Gleichklang -Gleichlauf/Sp -Gleichlaufregelung -Gleichlaufsteuerung -Gleichlaut/EPT -Gleichmigkeit -Gleichmacherei -Gleichmachung -Gleichma/ET -Gleichmut -Gleichnis/Qq -Gleichrichter -Gleichrichtung -Gleichschaltung -Gleichschritt -Gleichsetzung -Gleichspannung/P -Gleichspannungsanteil -Gleichspannungsquelle/N -Gleichstand -Gleichstellung/P -Gleichstrom/S -Gleichtakt -Gleichtaktbereich -Gleichtaktstrung/P -Gleichtaktunterdrckung -Gleichung/P -Gleichungssystem/EPS -Gleichverteilung -Gleichwertigkeit/P -Gleichzeitigkeit -Gleis/EPT -Gleitflug/STp -Gleitklausel -Gleitkommazahl/P -Gleitmittel -Gleitreibung -Gleitverschluss/Tp -Gleitzeit -Gletscher/NS -Gletscherpilot -Gletscherspalten -Gletscherzungen -Glied/ST -Glieder/J -Gliederfler -Gliederkette -Gliederpuppe -Gliederungspunkt/EPST -Gliedmaen -Gliedstaaten -Glimmstngel/NS -Glitzerwaren -Glckchen/S -Glckner -Globalbank -Globaldarlehen -Globaleinfuhren -Globalhaftung -Globalisieren/JS -Globalurkunde/N -Globetrotter/NS -Globus -Glocke/N -Glockenblume/N -Glockengelut -Glockenhte -Glockenhut -Glockenrcke -Glockenspiel/EPS -Glockenspitz -Glockentrme -Glockenturm/T -Gloria/S -Glorienschein -Glossar/S -Glosse/N -Glotzkiste -Glck/ST -Glckauf -Glcklichsein -Glcksache/N -Glckseligkeit -Glcksfall/Sp -Glcksfarben -Glcksgefhl -Glckskind/RT -Glckslos/EPT -Glckspillen -Glckspilz/EPT -Glcksritter/NS -Glcksspiel/EPS -Glcksspielautomat/P -Glcksspielgert/E -Glcksstage/NS -Glckssterne/NS -Glckstag -Glckszahlen -Glckwnsche/N -Glckwunsch/T -Glckwunschansprache -Glckwunschbotschaft -Glckwunschkarte -Glckwunschschreiben -Glckwunschtelegramm/P -Glhbirne/N -Glhlampe/N -Glhwein/EPST -Glhwrmchen/S -Glut -Glutaminsure -Gluthitze -Glykol -Glyzerin -GmbH -Gnade/N -Gnadenakt -Gnadenbrot -Gnadenfrist/P -Gnadengesuch/EPS -Gnadenschuss/Tp -Gnom/P -Gnosis -Gnu/S -Gdel/S -Gdelisierung -Gnner/FNS -Gnnerschaft/P -Gnnertum -Gre/N -Gring/S -Gteborg -Gtter/N -Gtterbote/N -Gtterdmmerung -Gtterkult -Gtterlehren -Gtterspeise -Gtterwelt -Gttin/F -Gttingen -Gtze/N -Gtzenbild/T -Gtzenbildern -Gtzendienst -Gockel -Godesberg/R -Goethe/S -Goethepreis/P -Gold/ST -Golda/S -Goldabarten -Goldaktien -Goldanleger -Goldanleihe -Goldanteil -Goldband -Goldbarren/S -Goldbecher -Goldbesitzer -Goldbestnde -Goldbestand -Goldblech -Goldbonds -Golddeckung -Goldentwicklung -Goldexperte -Goldfisch/E -Goldfischbassin -Goldfrderung -Goldfund -Goldfunke -Goldgehalt -Goldgewinnung -Goldglubige -Goldgrube/N -Goldhndler -Goldhamster/NS -Goldhandels -Goldhausse -Goldhlle -Goldhoch -Goldimporte -Goldinteressenten -Goldkufe/NR -Goldkauf/Sp -Goldkrnchens -Goldkste -Goldkurs/T -Goldlack -Goldmacher -Goldmarkt/STWp -Goldmedaillen -Goldmedaillenanwrter -Goldmedaillengewinner -Goldminen -Goldminenaktien -Goldminenanteile -Goldminenrevier -Goldmnze/N -Goldmnzenkategorien -Goldpeseta -Goldpokal -Goldprgung -Goldprmie -Goldpreis/EPT -Goldpreissenkung -Goldpreissteigerung/P -Goldproduzenten -Goldrand -Goldrausch -Goldreport -Goldreserven -Goldrubel -Goldsaal -Goldschatz/T -Goldschmied/EPST -Goldschnallen -Goldstandards -Goldstaub -Goldstck -Goldstckchen -Goldsucher -Goldtransporter -Goldtraum/STp -Goldtresor -Goldverkufern -Goldverluste -Goldvermgen -Goldvorkommen -Goldvorrte -Goldwhrung -Goldwaage -Goldwaren -Goldwarenfabrik -Goldwerte -Goldzhne -Goldzuwendung/P -Golf/RST -Golfhotel -Golfkrieg/S -Golfkste -Golfpltze/N -Golfplatz -Golfschlger/N -Golfspiel/PR -Golfspieler/FNS -Golfstaaten -Golfstrom -Gomorrha -Gomulka/S -Gondel/N -Gondelhandel -Gondwanaland -Gong/S -Gorbatschow/S -Gorgonzola -Gorilla -Gorki -Goslar -Gosse -Gotha/S -Gott/HT -Gottbekenntnis/Qq -Gottescker -Gottesacker/S -Gottesdienst/EPT -Gottesfurcht -Gottesgaben -Gottesgericht -Gottesglauben -Gotteshaus/Tp -Gotteslsterung/P -Gottesmann -Gottessohn/T -Gottesvolk -Gottesvorstellung/P -Gotthard/S -Gotthelf/S -Gottlosigkeit -Gottvertrauen -Gouda -Gouvernante/N -Gouverneur/EFPS -Gouverneurspalast -Goya/S -Grben -Grber/N -Grberfriedhof -Grfin -Grser/N -Grte/N -Gruel -Gruelmrchen -Gruelmeldung/P -Grueltat/P -Grab/JST -Grabenkrieg -Grabenplatz -Grabenrumlffel -Grabens -Grabentiefe -Grabeskirche -Grabesstille -Grabfortschritt -Grabgewlbe -Grabinschriften -Grabkirche -Grabkreuz -Grabmal/EPS -Grabpflege -Grabruber -Grabrede -Grabstein/EPS -Grabsteinplatte -Grabsteinschmierereien -Grabstock -Grabtuch -Grabungsberichte -Grace/S -Gracht/P -Gracia/S -Grad/EPST -Gradeinteilung/P -Gradient/P -Gradmesser -Graffiti -Grafik/PR -Grafikanzeige/N -Grafikauflsung/P -Grafikbefehl/EPS -Grafikbildschirm/EPS -Grafikcomputer -Grafikdarstellung/P -Grafikdisplay/S -Grafiker/FNS -Grafikfeld/RT -Grafikinterface/S -Grafikkarte/N -Grafikkartenauflsung/P -Grafikkoordinaten -Grafikoberflche/N -Grafikprogramm/EPS -Grafikprozessor/PS -Grafiksoftware -Grafiksystem -Grafiktablett/S -Grafikterminal/S -Grafikzeile/N -Grafit/S -Grafologe/FN -Grafschaft/P -Gralsritter -Gramm/S -Grammatik/P -Grammgewichte -Grammophon/EPS -Grammophonplatten -Granat/EPST -Granatpfel/N -Granatapfel/S -Granatsplitter/NS -Granatwerfer -Granit/S -Granulat -Graph/Pf -Graphensprache/N -Graphentheorie -Graphersetzungssystem/EPS -Graphik/PR -Graphikanzeige/N -Graphikbildschirm/EPS -Graphikdarstellung/P -Graphikdisplay/S -Graphiker/FNS -Graphikfeld/RT -Graphikinterface/S -Graphikkoordinaten -Graphikprozessor/PS -Graphiktablett/S -Graphikterminal/S -Graphikzeile/N -Graphit -Graphologe/FN -Graphologie -Gras/T -Grashalm/ET -Grasland -Grasplacken -Grasteppich -Grat/EPS -Gratifikation/P -Gratisaktie/N -Gratisexemplar/EPS -Gratishilfe -Gratislieferung -Gratismuster/N -Gratisprospekt/EPST -Gratisreport -Gratulant/P -Gratulation/P -Gratulationsempfang -Graupe/N -Grausamkeit/P -Grautier/ET -Grautne/N -Grauzone/N -Gravierens -Gravierung/P -Gravitation -Gravitationsfeld -Gravitationsgesetz/T -Gravitationsrichtung -Gravitationszentrum/S -Gravur -Graz -Grazie -Greenhorn/S -Greenpeace -Greenwich -Gregor/S -Greifer -Greifhand -Greis/F -Greisenalter -Gremien -Gremium/S -Grenada -Grenoble -Grenzabkommen -Grenzabstand -Grenzangelegenheit/P -Grenzausgleich -Grenzausschuss/Tp -Grenzbeamten -Grenzbehrden -Grenzbereich/EPS -Grenzbewohner/S -Grenzbrigaden -Grenzdruck -Grenzdurchbruch -Grenzdurchgangslager -Grenzer -Grenzfahrten -Grenzfall/Sp -Grenzflche/N -Grenzfluss/Tp -Grenzformel -Grenzfrage -Grenzfrequenz/P -Grenzgnger/NS -Grenzgebirge -Grenzgefecht -Grenzgewsser -Grenzhelfern -Grenzhindernis/Qq -Grenzkanal -Grenzkontrollen -Grenzkontrollstelle/N -Grenzkorrekturen -Grenzkurve -Grenzland -Grenzlandausschuss/Tp -Grenzlanddebatten -Grenzlandtheater -Grenzlinie/N -Grenzmarke -Grenznachbarschaft -Grenzoffizier -Grenzordnung -Grenzorten -Grenzparameter -Grenzpatrouille -Grenzpfhle -Grenzpolizist/P -Grenzproblem/EPS -Grenzprovokateure -Grenzprovokation/P -Grenzpunkte -Grenzraum/STp -Grenzregulierung/P -Grenzschicht/P -Grenzschichterkennung -Grenzschtzer -Grenzschutz/T -Grenzschutzamt -Grenzschutzbeamte -Grenzsicherheitsvertrag/STp -Grenzsicherungsanlagen -Grenzsicherungskrfte -Grenzsperren -Grenzstadium -Grenzstadt -Grenzstein/EPS -Grenzstelle -Grenzstrecke -Grenzstreifen -Grenzstreitigkeit/P -Grenztruppe -Grenzbergang/Sp -Grenzbergangsort -Grenzbergangsstelle -Grenzbertritt/S -Grenzberwachung -Grenzverkehr/S -Grenzverletzung -Grenzvertrag/STp -Grenzwchter -Grenzwache -Grenzweg -Grenzwert/EPT -Grenzzollmtern -Grenzzone -Grenzzwischenfall/Sp -Gretchenfrage/N -Grete/MS -Grieche/FN -Griechenland/S -Griechenlandreisen -Grie/EPT -Griebrei -Griesgram/S -Griffbrett/RS -Griffe -Griffel/NS -Griffs -Grillengezirp -Grillrestaurant -Grimasse/N -Grimm/S -Grippe -Grippeerkrankung/P -Grippespezialist -Grippewelle -Grips -Grislibr/P -Grizzlybr/P -Grnlnder/FN -Grnland/S -Gre/N -Grenangabe/N -Grenbeschrnkung/P -Grenklasse/N -Grenmastbe/N -Grenordnung/P -Grenverhltnisse/N -Grenwahn/S -Grobdifferenzierung -Grobeinstellung/P -Grobfunktionalitt/P -Grobheit/P -Grobian/EPS -Grobkonzept -Grobschlchtigkeit -Grobstruktur -Grog/S -Groll/S -Gromyko/S -Groabnehmer -Groaktionr/EPS -Groalarm -Groangebot -Groangriffe -Groanlage/N -Groartigkeit -Groaufgebot/EPS -Groaufnahme/N -Groauftrag/STp -Grobanken -Grobaustelle/N -Grobauten -Grobesitz -Grobetrieb/EPS -Grobetrug/S -Grobrnde -Grobrand/T -Grobritannien/S -Grobrger -Grobuchstabe/N -Grobuchstaben/S -Grocomputer/NS -Groeinkauf/Sp -Groeinstze/N -Groeinsatz/T -Groeltern -Groenkel/FNS -Grofahndung -Grofamilie -Grofeuer/NS -Grofirmen -Groflugzeug/E -Groformat/EPS -Groforschungseinrichtung/P -Grofrst -Grogarage -Grogemeinde -Grogrundbesitzer -Grogrundstck -Grohndler/FNS -Grohandel -Grohandelsabteilung -Grohandelsfirmen -Grohandelspreis/EPT -Grohandelsstzen -Grohandelsstufe -Grohandelsunternehmen -Grohandlung/P -Groherzigkeit -Groherzog -Grohirn/S -Groindustrie/N -Groinstitut -Grokampagne -Grokapital -Grokonzern/EPS -Grokopf -Grokulturen -Grokulturfilm -Grokunde/N -Gromchten -Gromuler -Gromacht -Gromama -Gromannssucht -Gromarkt/Tp -Gromaschinen -Gromast -Gromaul/S -Gromogul -Gromtter/N -Gromut -Gromutter/S -Grooffensive -Groonkel/S -Groproduzent -Groraum/STp -Groraumflugzeug/E -Groraumfrachter -Grorechenanlage/N -Grorechner/N -Groreich -Groreinemachen/S -Groschnauze -Groschreibung -Groschreibweise -Groschrift -Groserie/N -Grospekulanten -Grostdte/N -Grostadt -Grostadtbevlkerung -Grostadtkind -Grostadtkunde -Grostadtleser -Grostadtmelodie -Grostadtmensch -Grotanker -Grotankstelle/N -Grotanten -Grotaten -Grotechnik -Groteil/S -Groterminal -Grounternehmen/J -Grounternehmer/NS -Grovter/N -Grovater/S -Groveranstaltung/P -Groverbraucher -Groverdiener/NS -Groverlag/EST -Groverleger -Groverteiler -Grovieh -Groviehhute -Growerft/P -Growesir -Growildjgerei -Growildjgern -Grozimmer/N -Grozgigkeit -Groschen/S -Groschenheft -Grossist/P -Grossistenverband -Grotte/N -Grbchen -Grbelei/P -Grnanlage/N -Grndens -Grnder/FNS -Grnderfamilie/N -Grndergesellschaften -Grnderjahren -Grnderstaat -Grnderzeit -Grndlichkeit -Grndung/P -Grndungsausschuss/Tp -Grndungsgeneration -Grndungsgesetz -Grndungsinitiative/N -Grndungsjahr -Grndungskonferenz -Grndungskongress/EPT -Grndungskosten -Grndungsmitglieder -Grndungstag -Grndungsurkunde/N -Grndungsversammlung -Grndungsvertrag/STp -Grnflche/N -Grnfutter/S -Grnkohl -Grnschnbel/N -Grnschnabel/S -Grnspan/S -Grnzeug -Grnzweig -Grube -Grubenanlagen -Grubenarbeiter/NS -Grubenbau -Grubenbetrieb -Grubenexplosion -Grubenfahrten -Grubenfeld -Grubenfelder -Grubenleitung -Grubenlokfhrer -Grubenpersonals -Grubenzechen -Gruft -Grund/ET -Grundannahme/N -Grundarrangement -Grundauffassung/P -Grundausbildung/P -Grundausrstung -Grundaussage/N -Grundausstattung -Grundbedeutung/P -Grundbedingung -Grundbedrfnis/Qq -Grundbegriff/EPS -Grundbeschaffung -Grundbesitz/RT -Grundbesitzer/NS -Grundbewegung/P -Grundbleche -Grundbcher -Grundbuch/T -Grundbuchmter/N -Grundbuchamt/T -Grundbuchapparat -Grundbuchauszug/Sp -Grundbucheintrag/STp -Grundbuchsicherung -Grunddilemma -Grundeigentmer/N -Grundeigentum/S -Grundeinheit/P -Grundeinstellung/P -Grundelement/EPS -Grundempfehlung -Grundentscheidung/P -Grunderfahrung -Grunderfordernis/Qq -Grunderwerbssteuer -Grundfarbe -Grundfeste/N -Grundfigur -Grundfinanzierung/P -Grundflche/N -Grundfrderung -Grundform/P -Grundformel/N -Grundfrage/N -Grundfreiheit/P -Grundfunktion/P -Grundgebhr/P -Grundgedanke/N -Grundgehalt -Grundgert/T -Grundgeschwindigkeit/P -Grundgesetz/EPT -Grundgesetznderung/P -Grundgesetzergnzung -Grundhaltung -Grundharmonie -Grundidee/N -Grundierung -Grundindustrien -Grundinformationen -Grundkapital -Grundkapitalien -Grundkategorie/N -Grundkenntnis/q -Grundkrper -Grundkomponente/N -Grundkonzept -Grundkosten -Grundkurs/EPT -Grundlage/N -Grundlagenarbeit -Grundlagenforschung/P -Grundlinie/N -Grundlinienball/Sp -Grundlinienschlgen -Grundlcher -Grundlhne/N -Grundlohn/T -Grundlosigkeit -Grundmandat -Grundmaterial -Grundmauer/N -Grundmaxime/N -Grundmessung/P -Grundmorne -Grundobjekt/EPST -Grundoperation/P -Grundordnung/P -Grundpaket -Grundpfeiler/NS -Grundplatine -Grundplatte/N -Grundpreis/EPT -Grundprinzip -Grundprinzipien -Grundproblem/EPS -Grundproduktion -Grundprogramm -Grundrahmen/S -Grundrate/N -Grundrechner -Grundrecht/EPST -Grundrechtskatalog/EPST -Grundrechtsschutz -Grundrechtssicherung -Grundregel/N -Grundrente/N -Grundressource/N -Grundriss/EPT -Grundstze/N -Grundstzlichkeit -Grundsatz/T -Grundsatzabkommen/S -Grundsatzarbeit -Grundsatzentscheidung/P -Grundsatzerklrung -Grundsatzfrage/N -Grundsatzkatalog -Grundsatzprogramm -Grundsatzreferat/EPST -Grundschicht/P -Grundschlgen -Grundschler -Grundschuldbriefe -Grundschule/N -Grundschulklassen -Grundschutz -Grundsicherung -Grundsituation -Grundsockel -Grundsoftware -Grundstein/EPST -Grundstellung -Grundsteuer/N -Grundstipendien -Grundstoff/EPS -Grundstoffindustrie/N -Grundstolz -Grundstrategie/N -Grundstruktur/P -Grundstck/EPST -Grundstckerschlieung -Grundstckneubewertung -Grundstcksankauf/Sp -Grundstcksanteil -Grundstcksausnutzung -Grundstckseigentmer -Grundstckserschlieung/P -Grundstcksinvestition/P -Grundstckskauf/Sp -Grundstckskosten -Grundstcksmakler/FNS -Grundstcksmarkt/ST -Grundstcksspekulation/P -Grundstcksteuer -Grundstcksverhandlung/P -Grundstcksverkauf/Sp -Grundstcksverkehr -Grundstckswerte -Grundstudium/S -Grundsymbol/EPS -Grundsystem/EPS -Grundtabak -Grundtendenz/P -Grundterm/EPS -Grundthema -Grundbel -Grundberlegung/P -Grundberzeugung/P -Grundverfassung -Grundvermgen/S -Grundversion/P -Grundvoraussetzung -Grundwasser/S -Grundwasserexploration/P -Grundwasserspiegel -Grundwehrdienst/T -Grundwert/EPST -Grundwissen/S -Grundzahl/P -Grundzins/PT -Grundzug/STp -Grundzustand/ST -Grunewald -Grunge -Gruppe/N -Gruppenaufnahmen -Gruppenautomatik/P -Gruppenautomatisierung/P -Gruppenbetreuung -Gruppenbewusstsein -Gruppenbezeichnung/P -Gruppenbild/RT -Gruppenbindung -Gruppendurchschnitt -Gruppenethos -Gruppenfahrt -Gruppenfolgen -Gruppenfhrer -Gruppenfunktion/P -Gruppengre/N -Gruppenidentifikation/P -Gruppeninteresse/N -Gruppenkonzept -Gruppenleiter -Gruppenrechnung -Gruppenreise -Gruppensex -Gruppensieger -Gruppenspiele -Gruppensteuerung/P -Gruppenstruktur -Gruppenumsatz/T -Gruppenverhalten -Gruppenversicherung -Gruppierens -Gruppierung/P -Gru/T -Gruadresse/N -Grubotschaft/P -Gruform -Gruschreiben -Grutelegramme -Gruwort/EPST -Gruselfigur -Gruselgeschichten -Gruselkabinett -Gst -Gltigkeit -Gltigkeitsbegriff/EPS -Gltigkeitsbereich/EPST -Gltigkeitsdauer/N -Gnter/S -Gnther/S -Grtel/NS -Grtellinie/N -Grtelschlaufen -Grteltier -Gte/R -Gteklasse/N -Gtemerkmal -Gter/N -Gterabfertigung/P -Gterannahmen -Gterart -Gteraustausch -Gterbahnhfen -Gterbahnhof/S -Gterdirektor -Gterfernverkehr -Gtergemeinschaft -Gtergruppen -Gtermenge -Gterproduktion -Gterschiff -Gterschuppen -Gterstand -Gtertarif -Gtertariferhhung -Gtertransporte -Gtertrennung -Gterumschlag/STp -Gtervermittlung -Gterwachstum -Gterwagen -Gterwaggon -Gterzug/STp -Gtevorschrift/P -Gtezeichen/S -Guayana -Gucklcher -Guerillakrieg -Guerillatruppe -Guerillero/S -Guido/S -Guillaume/S -Guillotine/N -Guinness -Gulasch/S -Gulaschkanone -Gulden -Gummersbach -Gummi/S -Gummibnder/N -Gummibrchen/S -Gummiball/Sp -Gummiband/T -Gummierungsschicht -Gummifu/Tp -Gummihandschuhe -Gummiknppel/N -Gummilagerung -Gummimann -Gummimaschine/N -Gummiparagraph/Pf -Gummirder -Gummireifen -Gummiriemen -Gummiring -Gummischleuder -Gummischuhe/N -Gummisohlen -Gummistiefel/N -Gummitllen -Gummiwhrung/P -Gummiwalze -Gummiwaren -Gummizelle/N -Gunst/P -Gunther/S -Gurgel -Gurgelwasser -Gurke/N -Gurkensalat -Gurt/P -Gurtbefestigung/P -Guru/S -Guss/Tp -Gussbeton/S -Gusseisen -Gusserzeugnis/Qq -Gussform/P -Gussgehuse/N -Gusskasten -Gussradiatoren -Gussstahlfabrikation -Gussstahlwerk -Gusto -Gutachten/S -Gutachter/FNS -Gutachterkommission/P -Gutartigkeit -Gutdnken -Gutenberg/S -Guthaben/S -Guthabensalden -Guts -Gutsbesitz/R -Gutschein/EPS -Gutscheinempfnger -Gutscheinheft -Gutschrift/P -Gutshaus/Tp -Gutsherren -Gutshfe -Gutshof/T -Gutwilligkeit -Gymnasiallehrer -Gymnasialschulzeit -Gymnasiast -Gymnasiastenschwank -Gymnasien -Gymnasium/S -Gymnastik -Gymnastikhalle/N -Gymnastiklehrer/F -Gymnastikraum/STp -Gymnastikschule -Gynkologe/FN -Gynkologie -HIV -HP -HTML -Hfen -Hftling/EPS -Hhne/MN -Hkchen/S -Hlfte/N -Hlse/N -Hmmer -Hmoglobin -Hmophilie/N -Hmorrhoide/N -Hmorride/N -Hnde/MN -Hndedrcke/N -Hndedruck -Hndel -Hndeschtteln -Hndler/FNS -Hndlererfolg -Hndlerfirmen -Hndlerkreisen -Hndlernachweis/EPT -Hndlerpreis/EPT -Hnfling/ES -Hngebrcke/N -Hngebusen -Hngematte/N -Hngenbleiben -Hnschen/S -Hppchen/S -Hrtefall/Sp -Hrtefonds -Hrtens -Hrterei -Hrtetemperatur/P -Hrtung/P -Hscher/NS -Hsslichkeit/P -Hufchen/S -Hufens -Hufigkeit/P -Huflein/S -Hufung/P -Hupter/N -Huptling/EPS -Huschen/S -Huser/N -Huserbau -Huserblcken -Huserblock/S -Huserfronten -Huserkante -Husertrmmern -Huserwnden -Huserwand -Hute/N -Huten/JS -Haag -Haar/EPST -Haaransatz -Haarausfall -Haarbrste/N -Haarbschel -Haaresbreite -Haarfilz -Haarfransen -Haarkappe -Haarknoten -Haarkrause -Haarmhne -Haarnadel -Haarpflegemittel -Haarschmuck -Haarschnitt/EPS -Haarschopf -Haarspray/S -Haarstrhne/N -Haartracht -Haarwsche/N -Haarwaschmittel/S -Haarwasser/S -Haarwuchsmittel/NS -Habakuk/S -Habenichts -Habenseite -Habenzins/T -Habenzinsstze -Habgier -Habicht/EPS -Habilitation -Habilitationsrecht -Habitus -Habsburg/S -Habseligkeit/P -Habsucht -Hachse/N -Hackbraten -Hackbrett -Hacker/N -Hackerversuche -Hackfleisch/S -Hades -Hadrianwall -Hafen/S -Hafenanlagen -Hafenarbeiter/N -Hafenarbeiterstreik -Hafenbahn -Hafenbecken -Hafenbehrden -Hafenbetrieb -Hafendamm -Hafeneinfahrt -Hafenfeuerwehr -Hafengebiet -Hafengelnde/S -Hafenkommandanten -Hafenkosten -Hafenmeister/S -Hafenmelodien -Hafenregion/P -Hafenschuppen -Hafenstdten -Hafenstadt -Hafensteuern -Hafenviertel/NS -Hafer/S -Haferbrei/EPS -Haferflocken -Haferschleim/S -Haft/J -Haftanstalt -Haftbefehl/EPS -Hafteigenschaften -Haftetiketten -Haftpflicht -Haftpflichterklrung -Haftpflichttarife -Haftpflichtversicherung -Haftreibung -Haftstrafe/N -Haftstreifen -Haftung/P -Haftungsrecht -Haftungsbernahme -Haftvermittler/N -Haftverschonung -Haftzeit -Haftzellen -Hagebutte/N -Hagel/S -Hagelbildung -Hagelkrner/N -Hagelkorn -Hagelschauer/N -Hagelschlag/STp -Hagen -Hahn/S -Hahnenfu/Tp -Hahnenkamm -Hahnenschrei/PS -Hai/ENPST -Haifa -Haifische/N -Hain/EPST -Hakenkreuz/P -Hakenkreuzbanner -Hakens -Halbbrder/N -Halbbruder/S -Halbdot/S -Halbdottechnik -Halbedelsteine -Halbfinale/N -Halbgeschwistern -Halbgott -Halbgruppe/N -Halbheit -Halbidiot -Halbierens -Halbierung/P -Halbinsel -Halbintellektueller -Halbjahr/ST -Halbjahresabonnement/S -Halbjahresbericht/EPS -Halbjahresergebnis/Qq -Halbjude -Halbkreis/EPT -Halbkugel/N -Halbleder -Halbleiter/NS -Halbleiterbausteine -Halbleiterindustrie -Halbleitermarkt/ST -Halbleitermaterial -Halbleiterprodukte -Halbleitertechnik -Halbmond/EPST -Halbpension -Halbpunkt -Halbschlaf -Halbschuh -Halbtagsarbeit/P -Halbtagskraft -Halbwaren -Halbwertszeit -Halbzeit -Halbzeitergebnis/Qq -Halbzeitpfiff -Halbzeuge -Halde/N -Halfter/S -Hall/S -Halleluja -Hallenbder/N -Hallenbad -Hallenbahn -Hallenbauten -Hallenbestleistung -Hallendecke -Hallenflche -Hallengre/N -Hallensaison -Hallenschwimmbad -Hallenspiel/P -Hallensportfest -Hallentest -Hallenturnier -Hallenweltrekordler -Hallenwettkmpfe -Halley/S -Hallig/P -Halluzinogen/EPS -Halm/EPS -Halogen/EPS -Hals/T -Halsabschneider/NS -Halsader -Halsausschnitt/EPT -Halsbnder -Halsband/T -Halsbinde -Halsentzndung/P -Halskette/N -Halskrause -Halsschlagadern -Halsschmerzen -Halstcher -Halstuch/T -Halsweh -Halswirbel -Haltbarkeit -Haltbarkeitsdatum/S -Haltebohrung/P -Haltefeder -Halteleiste -Haltens -Haltepltze/N -Halteplatte/N -Halteplatz/T -Halteproblem/S -Haltepunkt -Halter/JNS -Halteriegel -Halterungsbgel -Halterungsschiene -Halteschild -Haltestelle/N -Haltestreifen -Halteverbot/PS -Haltevermgen/S -Haltewinkel -Haltlosigkeit/G -Haltung/P -Haltzeichen/S -Halunke/N -Hamburg/RS -Hamburger/FNS -Hamed/S -Hamlet/S -Hammel/N -Hammelfelle -Hammelfleisch/ST -Hammelfleischbchsen -Hammer/S -Hammerklavier -Hammerschlag/Tp -Hammerschraube -Hampelmnner/N -Hampelmann/S -Hampshire -Hampton -Hamster/NS -Hamsterkufe/N -Hand -Handarbeit/PR -Handarbeiter/FNS -Handball/Sp -Handballbund/T -Handballmeister -Handballmeisterschaft -Handballspieler/N -Handballtore -Handbetrieb -Handbewegung/P -Handblatt -Handbremse/N -Handbcher/N -Handbuch/ST -Handdrucker -Handel/S -Handelns -Handelsabkommen/S -Handelsausknfte -Handelsaustausch -Handelsbank -Handelsbankfamilien -Handelsbegnstigung/P -Handelsbeschrnkung/P -Handelsbetriebe -Handelsbeziehung/P -Handelsbilanz/P -Handelsbilanzdefizit/E -Handelsbilanzzahlen -Handelsblttern -Handelsblatt/T -Handelsblockade -Handelsboom -Handelsbrauch -Handelsbro/S -Handelsdefizit/S -Handelsdelegierter -Handelsembargo -Handelsfirma -Handelsfirmen -Handelsflotte -Handelsformen -Handelsfragen -Handelsgebiet -Handelsgenossenschaft/P -Handelsgeschft/E -Handelsgesellschaft -Handelsgesprch/EPS -Handelsgruppen -Handelsgter -Handelshaus/Tp -Handelshochschule/N -Handelsimperium -Handelskammer/N -Handelsketten -Handelskonferenz -Handelskontor -Handelskreise/N -Handelskurs -Handelsmacht -Handelsmarine -Handelsmarke/N -Handelsminister/N -Handelsministerien -Handelsministerium -Handelsmissionen -Handelsmglichkeit/P -Handelsnation/P -Handelsniederlassung -Handelsobjekte -Handelsorganisation/P -Handelspartner/S -Handelspolitik -Handelspreise -Handelsprotokoll -Handelsrecht/EPS -Handelsregister/N -Handelsregisterauszug/STp -Handelsreisenden -Handelsrichter/N -Handelsschiff/EPT -Handelsschifffahrt -Handelsschler -Handelsschule -Handelsseite -Handelsspanne -Handelssperre -Handelssprache -Handelsstdte/N -Handelstage/S -Handelstrae -Handelsberschuss/Tp -Handelsumsatzes -Handelsunion -Handelsverein -Handelsverkehrs -Handelsvertrag/Tp -Handelsvertreter/N -Handelsvolumen -Handelsvorteile -Handelsware -Handelswert/EPST -Handelszeichens -Handelszentrale -Handelszentren -Handelszweig/EPST -Handfeger/S -Handfertigkeit/P -Handflche/N -Handgelenk/EPS -Handgemenge -Handgepck/S -Handgert -Handgranate/N -Handgreiflichkeit/P -Handgriff/EPS -Handhabbarkeit -Handhabens -Handhabung/P -Handicap/S -Handikap -Handkoffer/NS -Handkuss/MTp -Handlanger/N -Handlinie/N -Handlung/P -Handlungsanweisung/P -Handlungsdauer -Handlungsfhigkeit -Handlungsfreiheit -Handlungskonzept -Handlungsmaxime/N -Handlungsmglichkeit/P -Handlungsreisende/NR -Handlungsunfhigkeit -Handlungsvollmacht/P -Handlungsweise/N -Handpotentiometer/NS -Handpresse -Handrcken/S -Handschalter -Handscheinwerfer -Handschellen -Handschlag/STp -Handschrift/P -Handschriftenkunde -Handschuh/EPS -Handschuhkasten -Handshake -Handskizze -Handspiegel/NS -Handstand -Handstreich -Handstck -Handtasche/N -Handtastatur -Handteller -Handterminal/S -Handtcher/N -Handtuch/T -Handumdrehen -Handwaffe/N -Handwerk/EPRS -Handwerker/FNS -Handwerksbetriebe/N -Handwerksbursche -Handwerksjugend -Handwerkskammer/N -Handwerksmeister/N -Handwerksordnung -Handwerksorganisation/P -Handwerkstechnik -Handwerksunterricht/S -Handwerkswirtschaft -Handwerkszweig -Handwrterbcher/N -Handwrterbuch/ST -Handy/S -Handzeichen/S -Handzeichnung -Handzettel/NS -Hanf/ST -Hanfballen -Hanfseilfabrik -Hang/ST -Hangar -Hanggrundstck/EPS -Haniel/S -Hanne/S -Hannelore/S -Hannover/S -Hannoveraner -Hannovermesse -Hanoi -Hans/E -Hansdampf -Hanseat/P -Hansestdte/N -Hansestadt -Hanswurst/E -Hantel -Happyend/S -Harakiri -Harald/S -Harburger -Hardcopy -Hardcover/S -Harddisk/S -Harddiskbetrieb -Hardrock -Hardware -Hardwarenderung/P -Hardwaredefekt/ES -Hardwareeinheit/P -Hardwareerweiterung/P -Hardwarefrage/N -Hardwarehandshake/S -Hardwarekomponente/N -Hardwarekonfiguration/P -Hardwaremodifikation/P -Hardwarepflege -Hardwarepreis/E -Hardwareproblem/EPS -Hardwareprotokoll/ES -Hardwareschnittstelle/N -Hardwareseite -Hardwaretest/S -Hardwarebersicht/P -Hardwareversion/P -Hardwarevoraussetzung/P -Harem/S -Haremsdame -Harfe/N -Harlekin -Harlem -Harmlosigkeit -Harmonie -Harmonisierens -Harmonisierung/P -Harmonium -Harn/S -Harnblase -Harnleiter/NS -Harnrhre/N -Harnsure -Harnstoff/EPS -Harnuntersuchung/P -Harnwege -Harold/S -Harpune/N -Harpunier/S -Harro/S -Hartgeld/RST -Hartmut/S -Hartnckigkeit -Hartpapier -Hartpapiermaterial -Hartstein -Hartwhrung/P -Hartwaren -Hartweizen -Hartwurst -Harvard/S -Harvey/S -Harz/EPT -Hasardeur/ES -Haschisch/S -Hase/N -Haselmuse -Haselmaus -Haselnsschen -Haselnuss/p -Haselnussstrauch/S -Haselstrucher/N -Haselstrauch/S -Hasenbraten/S -Hasenfamilie -Hasenfu/Tp -Hasenpfad -Hasenscharte/N -Haskell -Hass/T -Hassgefhl/EPS -Hasskomplex/EPT -Hassliebe/N -Hastings -Haube/N -Hauer/N -Haufen/S -Haufenbildung -Hauff/S -Hauklotz/T -Haupt/ST -Hauptabsatzgebiet -Hauptabteilung/P -Hauptakteur/E -Hauptaktionr/EPS -Hauptaktivitt/P -Hauptakzent/EPST -Hauptangeklagte/NR -Hauptanliegen/S -Hauptanteil/EPS -Hauptanwrter -Hauptanwendungsgebiet/EPS -Hauptarbeit/P -Hauptarbeitsbereich/EPS -Hauptargument -Hauptarmee -Hauptaspekt/EPST -Hauptattraktion/P -Hauptaufgabe/N -Hauptaugenmerk -Hauptausfuhrgebiete -Hauptausgaben -Hauptausrede -Hauptautor -Hauptbnde -Hauptbadestrand -Hauptbahnhfen -Hauptbahnhof/S -Hauptbedingung/P -Hauptbelastungszeuge -Hauptberuf -Hauptbeschftigung/P -Hauptbild -Hauptbindeglied -Hauptbuchhalter -Hauptbuchhaltung -Hauptcomputer -Hauptdarsteller/FNS -Hauptdirektion -Hauptdorf -Hauptdrahtzieher -Hauptecho/S -Haupteinflugschneise -Haupteingang/Sp -Haupteinkommen -Haupteinnahmequelle -Hauptelement -Hauptentschdigung -Hauptereignis/Qq -Haupterwerb -Haupterzeugergebiete -Haupteslnge/N -Hauptfcher/N -Hauptfach/ST -Hauptfehler -Hauptfeld -Hauptfenster -Hauptfigur -Hauptfilm/PS -Hauptforderung -Hauptfrage/N -Hauptfriedhof/T -Hauptfunktion/P -Hauptgebude -Hauptgebieten -Hauptgefreiten -Hauptgegner -Hauptgemeinschaft -Hauptgericht/EPS -Hauptgeschftslage -Hauptgeschftszeit/P -Hauptgesprchspartner -Hauptgesprchsthema -Hauptgesprchsthemen -Hauptgestalten -Hauptgewicht -Hauptgewinn/EPRS -Hauptgrafiken -Hauptgraphiken -Hauptgrnde/N -Hauptgrund/T -Hauptgruppe/N -Haupthaus/Tp -Haupthindernis/Qq -Hauptindiz -Hauptinhaber -Hauptinhalt -Hauptinspekteur -Hauptinstrument -Hauptinteresse/N -Hauptkampf -Hauptkassen -Hauptkirche -Hauptknller -Hauptkomponente/N -Hauptkreditnehmer -Hauptkriegsverbrecher -Hauptkritikpunkt/EPST -Hauptkurse -Hauptlehre/R -Hauptlehrer/N -Hauptlieferant/P -Hauptmchte -Hauptmnnern -Hauptmacht -Hauptmahlzeiten -Hauptmangel -Hauptmann/S -Hauptmarkt/Tp -Hauptmenge -Hauptmen -Hauptmerkmal/S -Hauptmessung -Hauptmiete/R -Hauptmodul/S -Hauptnhrstoff -Hauptnachfrage -Hauptnachteil/EPS -Hauptnahrung -Hauptnetz -Hauptnutzen/S -Hauptperson/P -Hauptpfad -Hauptpfeiler -Hauptplatine -Hauptpostamt -Hauptpostfach -Hauptpreis -Hauptproblem/EPS -Hauptprodukte -Hauptprogramm/S -Hauptpromenade -Hauptprozess/EPT -Hauptprozessor/S -Hauptprfung/P -Hauptpunkt/EPST -Hauptquartier/EPS -Hauptraum/STp -Hauptrechner -Hauptredner -Hauptreferat -Hauptreisezeit -Hauptrennen -Hauptrolle/N -Hauptroute -Hauptrunde -Hauptstze/N -Hauptsache/N -Hauptsatz/T -Hauptschalter/NS -Hauptschlagkraft -Hauptschlitten -Hauptschritt/EPST -Hauptschler -Hauptschulabschluss/Tp -Hauptschuldiger -Hauptschule -Hauptschwierigkeit/P -Hauptsitz/T -Hauptspediteur -Hauptspeicher/S -Hauptsprecher -Hauptstdten -Hauptstadt -Hauptstadtausbau -Hauptstelle -Hauptsto/Tp -Hauptstokraft -Hauptstrae/N -Hauptstrecken -Hauptstromversorgung -Hauptstck -Hauptsttze/N -Hauptstudium/S -Haupttter -Hauptttigkeit -Hauptteil/EPS -Haupttestgebiet -Hauptthema -Hauptthese/N -Haupttor -Haupttreffer/S -Hauptberlegung -Hauptumsatztrger -Hauptunterhndler/FNS -Hauptunterricht/S -Hauptursache/N -Hauptventile -Hauptverantwortung -Hauptverband -Hauptverdienst -Hauptverfahren/S -Hauptverhandlung/P -Hauptverkehrsstrae/N -Hauptverkehrszeiten -Hauptversammlung/P -Hauptverwaltung/P -Hauptverwaltungsgebude -Hauptverzeichnis/Qq -Hauptvorstand -Hauptvorstellung/P -Hauptvorteil/EPS -Hauptwsche -Hauptwache -Hauptwachtmeister -Hauptwerk/ST -Hauptwerkzeug -Hauptwettbewerb -Hauptwohnsitz -Hauptwort/EPST -Hauptwunsch -Hauptzahler -Hauptzentrum -Hauptziel/EPS -Hauptzollamt -Hauptzweck -Hauruck -Hauruckverfahren -Haus/Tq -Hausrzte/FN -Hausaltar -Hausangestellte/N -Hausapotheke/N -Hausarbeit/P -Hausarrest -Hausarzt/T -Hausaufgaben -Hausbank -Hausbar -Hausberg -Hausbesetzer/N -Hausbesetzerszene -Hausbesetzung -Hausbesichtigung -Hausbesitzer/FNS -Hausbesuche -Hausbewohner/S -Hausbrand -Hausbrandkohle -Hausdiener/NS -Hausecke -Hauseigentmer -Hausfach -Hausflagge -Hausfrau/P -Hausfrauengruppe -Hausfreund/E -Hausfriedensbrche -Hausfriedensbruch/S -Hausgebrauch -Hausgehilfe/FN -Hausgemeinschaft -Hausgert/E -Hausglocke -Hausgockel -Hausgrundstck -Haushlter/FNS -Haushalt/ST -Haushaltsarbeit -Haushaltsartikel/NS -Haushaltsaufkommen/S -Haushaltsausgabe/N -Haushaltsausschuss/Tp -Haushaltsbeitrag/STp -Haushaltsbotschaft -Haushaltsbuch -Haushaltsdebatte -Haushaltsdefizite -Haushaltseinkommen/S -Haushaltsentwicklung -Haushaltsexperte/N -Haushaltsfhrung -Haushaltsgeld -Haushaltsgert/EPS -Haushaltsgesetz -Haushaltsgter -Haushaltshilfe -Haushaltsjahr/EPS -Haushaltskapitel -Haushaltskasse/N -Haushaltskontrolle/N -Haushaltskurs/EPT -Haushaltslage -Haushaltsmanko/S -Haushaltsminister -Haushaltsmithilfe -Haushaltsmittel -Haushaltsplne/N -Haushaltsplan/S -Haushaltsrechnung/P -Haushaltsrisiken -Haushaltssicherungsgesetz -Haushaltsberlegung/P -Haushaltsvolumen/S -Haushaltsvorlage/N -Haushaltsware/N -Haushaltswirtschaft -Haushaltung -Haushaltungsapparate -Haushaltungslehre/N -Haushaltungsschulen -Haushaltungsvorstnde/N -Haushaltungsvorstandes -Hausherr/FNP -Haushund -Hausierer/NS -Hauskamin -Hauskatze -Hauskauf/Sp -Hauskleid/RST -Hauskunst -Hauslehrer -Hausmdchen -Hausmrchen -Hausmacht -Hausmannskost -Hausmauer -Hausmeister/FN -Hausmiete/N -Hausmitteilung/P -Hausmittel/NS -Hausmtter/N -Hausmutter -Hausnummer -Hausordnung/P -Hauspflege/N -Hauspreise -Hausrat -Hausratversicherung -Hausregeln -Hausreinigung -Hausschlssel/NS -Hausschuh/PS -Hausschwein/PS -Haussezeit/P -Haussier/S -Haussuchung/P -Haustechnik -Haustechnikraum/STp -Haustier/EPS -Haustochter -Haustreppe -Haustr/E -Haustyrann -Hausvater -Hausverwalter -Hausverwaltung -Hauswnde -Hauswand -Hauswart -Hauswirtschaft -Hauswirtschaftslehre/N -Hautrzte/FN -Hautarzt/T -Hautausschlag/STp -Hautfarbe/N -Hautkrankheit/P -Hautpflege -Hautschden -Hautscheren -Hautschichten -Hauttransplantation/P -Hautverbrennung/P -Havarie/N -Hawaii -Hd -He -Header/NS -Headhunter -Heavymetal -Hebamme/N -Hebammenkoffer -Hebebhne/N -Hebel/MS -Hebelarm/EPS -Hebelkraft -Hebelbersetzung -Hebelverhltnis/Qq -Hebelwirkung -Hebens -Heber/NS -Hebewerkzeug -Hebrer/FNS -Hebriden -Hebron -Hebung/P -Hecht/S -Hechtsprung -Heck/S -Heckenrose/N -Heckenscheren -Hecklautsprecher -Heckleuchten -Hecklicht/RS -Heckteil -Heckwischer -Hedda/S -Hedwig/S -Hedy/S -Heer/EPST -Heeresabteilung -Heeresaufgaben -Heeresdienste/NS -Heeresflugzeuge -Heeresfhrer/NS -Heeresgruppe -Heereslager/S -Heeresleitung -Heeresmeisterschaften -Heerespsychologen -Heeresreform -Heeresschar -Heeresteile -Heeresverbnde -Heeresverwaltung -Heerschar/P -Heerschau -Hefen/I -Heft/ST -Heftanzeigen -Heftfden -Heftfaden/S -Heftigkeit -Heftklammer/N -Heftmaschine/N -Heftpflaster/NS -Heftvorgang -Hegel/S -Hegemonialmacht -Hegemonie -Hehl/R -Hehlerei -Heide/FN -Heideblte -Heideblume -Heidekrug -Heideland -Heidelandschaft -Heidelbeere/N -Heidelberg/RS -Heidelberger/FNS -Heidelinde/S -Heidenngste/N -Heidenangst -Heidengeld -Heidengtter -Heidenspa/T -Heidentum -Heidepastor -Heidi/NS -Heike/S -Heiko/S -Heiland/S -Heilanstalt/P -Heilbder/N -Heilbad -Heilbarkeit/P -Heilbronn -Heilbutt/PS -Heilens -Heilfaktor -Heilgehilfin -Heiligabend -Heiligenbild -Heiligenblut -Heiligenfiguren -Heiligens -Heiligenschein/EPS -Heiligkeit -Heiligtmer -Heiligtum/S -Heiligung/P -Heilkrfte/N -Heilkraft -Heilkunden -Heilkuren -Heilmedikus -Heilmethode/N -Heilmittel/NS -Heilpraktiker/FNS -Heilquellen -Heilsarmee -Heilsarmeemdchen -Heilschlaf -Heilsgeschichte -Heilslehre -Heilsplan -Heilsttte -Heilstoffe -Heilung/P -Heilungsprozess/EPT -Heilverfahren -Heilweise -Heilwesen -Heim/EMPST -Heimarbeit/GPR -Heimarbeiter/FNS -Heimat -Heimatanschrift -Heimatbund -Heimatdrfer -Heimatflughafen -Heimatfront -Heimatfrst -Heimatgemeinde -Heimathafen -Heimatkultur -Heimatkunde -Heimatlnder -Heimatland/S -Heimatlizenz -Heimatlizenzurkunde -Heimatmuseum -Heimatort/ET -Heimatplatz -Heimatprovinz -Heimatschnulzen -Heimatsprache -Heimatstaat -Heimatstadt -Heimattreffen -Heimaturlaub -Heimatwhrung -Heimatwerk -Heimaufsicht -Heimcomputer -Heimerziehung -Heimfahrten -Heimgang/E -Heiminsassen -Heimkehr/R -Heimleiter/FNS -Heimlichkeit/P -Heimlichtuerei -Heimreise/N -Heimrudergerte -Heimschule -Heimsieg -Heimspiel/P -Heimsttte/N -Heimsuchens -Heimsuchung/P -Heimtcke -Heimvater -Heimverwaltung -Heimweg/EPS -Heimweh/S -Heine/S -Heino/S -Heinrich/S -Heinz -Heinzelmnnchen/S -Heirat -Heiratsantrag/Tp -Heiratsanzeige -Heiratsfhigkeit -Heiratsinstitut/E -Heiratskandidat/P -Heiratsmarkt/ST -Heiratsplne -Heiratsschwindler/NS -Heiratsurkunde -Heiratsverbot -Heiratsvermittler/FNS -Heiratsversprechen/S -Heigetrnke -Heihunger/S -Heiluftballon -Heisenberg/S -Heiserkeit -Heiterkeit -Heizanlagen -Heizens -Heizer/N -Heizflche -Heizkessel/N -Heizkissen/S -Heizkrper/N -Heizlfter -Heizmaterial -Heizmaterialien -Heizmethoden -Heizl/S -Heizlkartell -Heizlmarkt/STp -Heizlverbraucher -Heizlverkauf/Sp -Heizperiode -Heizplatte -Heizrohr/EPST -Heiztechnik -Heizung/P -Heizungsanlage/N -Heizungsbauer -Heizungsbaumeister -Heizungsingenieur -Heizungskeller -Heizungskrper -Heizungsmonteur -Heizwert -Heizzwecke -Hektar/S -Hektarertrag/STp -Hektik -Held/FPS -Heldenepos -Heldengedicht/EPST -Heldengestalten -Heldenstck -Heldentat -Heldentugenden -Heldentum/S -Helen/ET -Helfer/FNS -Helferinnenbrief -Helfershelfer -Helga/S -Helgoland -Helikopter/NS -Helium/S -Hellene/N -Hellenisierung -Hellenismus -Hellespont -Helligkeit -Helligkeitseinstellung -Helligkeitssteuerung -Helligkeitswerte -Helling -Hellseher/FNS -Hellseherei/P -Hellsichtigkeit -Helm/EPS -Helmut/S -Helot/P -Helsinki -Helvetismen -Helvetismus -Hemd/PS -Hemdblusen -Hemdenstoff -Hemdknpfen -Hemdknopf/S -Hemdsrmel/N -Hemingway/S -Hemmens -Hemmnis/q -Hemmschuh -Hemmung/P -Hengst/EPT -Henkel/NS -Henker/NS -Henkersmahlzeit -Henne/N -Henning/S -Henry/S -Hepatitis -Hera/S -Herablassens -Herablassung/P -Herabsetzung/P -Herabstufen/JS -Herakles -Herangehensweise/N -Heranziehens -Heranziehung/P -Herausarbeitens -Herausarbeitung/P -Herausbildens -Herausbildung/P -Herausforderer -Herausforderung/P -Herausgabe -Herausgeber/FNS -Herbarien -Herbarium/S -Herberge/N -Herbert/S -Herbizid/EPS -Herbrand -Herbst -Herbstaktion/P -Herbstausgabe/N -Herbstbeginn -Herbstfrbung -Herbstmarkt/ST -Herbstmonat/EPST -Herbstsaison -Herbstwetter -Herbstzeit -Herd/EPST -Herdentier/EPS -Herdentrieb -Hereinfall/S -Hereinnahme -Herfahrt/P -Hergabe -Hergang/S -Hering/EPS -Herkles -Herklit/S -Herknfte/N -Herkunft -Herkunftsland -Herleitbarkeit -Herleitens -Herleitung/P -Hermann/S -Hermaphrodit -Hermelin/S -Hermes -Herodes -Herodot/S -Heroin/S -Herold/EPST -Herr/FNP -Herrenabend/S -Herrenabteilung/P -Herrenanzug/Tp -Herrenbekleidung -Herrendoppel -Herreneinzel/S -Herrenfriseur/EPS -Herrenfrisr/EPS -Herrenhut -Herrenkonfektion/P -Herrenmntel -Herrenmenschen -Herrenmode -Herrenpyjama -Herrenschneider/N -Herrensitz/E -Herrensocken -Herrentoilette/N -Herrenuhr -Herrenwsche -Herrenzimmer/NS -Herrgott/S -Herrjemine -Herrlichkeit -Herrschaft/P -Herrschaftsblcke -Herrschaftskoch -Herrschaftssitz -Herrscher/FNS -Herrschersitz -Herrschsucht -Herstellart -Herstellens -Hersteller/NS -Herstellerverzeichnis/Qq -Herstellung/P -Herstellungsbetrieb -Herstellungskosten -Herstellungslnder -Herstellungspreis/EPT -Herstellungsprozess/EPT -Herstellungsrechte -Herstellungsverfahren/S -Herta/S -Hertz -Hertzbereich -Hervorhebens -Hervorhebung/P -Herz/MP -Herzanfall/Sp -Herzass/ET -Herzbeschwerden -Herzegowina -Herzen/SW -Herzensangelegenheit/P -Herzensbrecher/NS -Herzensgte -Herzenslust -Herzenssache/N -Herzenstr -Herzfehler/NS -Herzgegend -Herzhaftigkeit -Herzinfarkt/EPT -Herzinfarktrisiko -Herzklappe/N -Herzklopfen/S -Herzknig -Herzkollaps/T -Herzkrankheit/P -Herzkranzgefe -Herzleiden/S -Herzlichkeit/P -Herzlosigkeit/P -Herzmassage -Herzneurosen -Herzge/N -Herzogin/F -Herzogs -Herzoperation/P -Herzscheibe -Herzschlag/PSTp -Herzschlagfolge -Herzschrittmacher -Herzschwche/N -Herzspezialist -Herzstck/EPS -Herzttigkeit -Herztod -Herztransplantation/P -Herzverpflanzung/P -Hesperiden -Hesse/FN -Hessen/S -Heterogenitt -Hethiter -Hethiterreich -Hetzjagd -Heu/S -Heuchelei/P -Heuchler/FNS -Heuernte -Heugabel -Heuhaufen -Heumarkt -Heurige/N -Heurigenliedern -Heuristik/P -Heuschnupfen/S -Heuschober/S -Heuschrecke/N -Heuschreckenzug/STp -Heuss -Hewlett -Hexadezimalanzeige -Hexadezimalzahl -Hexadezimalzeichen -Hexameter/S -Hexdump -Hexengebru -Hexengriffel -Hexenjger -Hexenkche -Hexenknste -Hexenkunst -Hexenmeister -Hexenpinsel -Hexenprozess/EPT -Hexenschuss/Tp -Hexentrio -Hexenverbrennung/P -Hexer -Hexerei/P -Hieb/EPT -Hierarchie/N -Hieroglyphe/N -Hieronymus -Highfidelity -Highlight/S -Highsociety -Hightech -Hilde/S -Hildebrand/S -Hildesheim -Hilfe/GN -Hilfeaktion/P -Hilfelieferung/P -Hilfeprogramm/EPS -Hilferuf/EPS -Hilfeschrei/EPS -Hilfestellung/P -Hilflosigkeit -Hilfsrzte/FN -Hilfsaktion/P -Hilfsarbeiter/FNS -Hilfsarzt/T -Hilfsarztstelle -Hilfsbereitschaft -Hilfsbetriebe -Hilfsdatei/P -Hilfsdienst/EPT -Hilfsdirektrice -Hilfsfenster -Hilfsfunktion/P -Hilfsgemeinschaft -Hilfsgter -Hilfskoch -Hilfskonstruktion/P -Hilfskrfte/N -Hilfskraft -Hilfskchen -Hilfslehrer/N -Hilfsmanahme/N -Hilfsmen -Hilfsmittel/N -Hilfsmotor/PS -Hilfsnachbarn -Hilfsobjekte -Hilfsorganisation/P -Hilfsplatinen -Hilfspolizei -Hilfspolizistin -Hilfsprediger -Hilfsprogramm/EPS -Hilfsquelle -Hilfsschiffe -Hilfsschullehrer -Hilfssignale -Hilfsstoff/E -Hilfstaucher -Hilfstext/EPT -Hilfstruppe/N -Hilfsvariable/N -Hilfsverein -Hilfswerk/S -Hilton/S -Himalaja -Himbeere/N -Himbeersfte/N -Himbeersaft/ST -Himbeerstrucher/N -Himbeerstrauch/S -Himmel/NS -Himmelbett/S -Himmelfahrt -Himmelfahrtskommando -Himmelfahrtstag -Himmelreich/S -Himmelsereignis/Qq -Himmelsgast -Himmelskrper/NS -Himmelskunde -Himmelsrichtung/P -Himmelsspione -Himmelszelt -Hinausschiebens -Hinausschiebung/P -Hinauswurf -Hinblick/S -Hindenburg/S -Hindernis/Qq -Hindernislauf/Sp -Hindernisrennen/S -Hinderns -Hinderung/P -Hinderungsgrund -Hindu/S -Hinduismus -Hindupriester -Hinflligkeit -Hinfahrten -Hingabe -Hingang/S -Hingebens -Hingebung/P -Hinlnglichkeit -Hinnahme/N -Hinrichtens -Hinrichtung/P -Hinsicht/P -Hinspiel -Hinterachse -Hinterbein/EPS -Hinterbliebene/N -Hinterbliebenenrente -Hintereinanderausfhrung/P -Hintereingang/ST -Hinterfragens -Hinterfragung/P -Hintergedanke/N -Hintergehens -Hintergehung/P -Hintergrnde/N -Hintergrund/S -Hintergrundinformation/P -Hintergrundmusik -Hintergrundrauschen/S -Hintergrundspeicher -Hinterhalt/EPST -Hinterhand -Hinterhaus/Tp -Hinterhof -Hinterkopf/ST -Hinterland/S -Hinterlassenschaft/P -Hinterlauf/Sp -Hinterlegens -Hinterlegung/P -Hinterlegungsfrist -Hinterlegungstag -Hinterlist -Hintermnner -Hintermannschaft -Hintern -Hinterpommern -Hinterrdern -Hinterrad/S -Hinterradantrieb/S -Hinterreifen -Hinterteil/EPS -Hintertreppe/N -Hintertr/M -Hinterwand -Hinterzimmer -Hinweis/T -Hinweisbekanntmachung -Hinweisblatt -Hinweisschilder -Hinweiszettel -Hinz -Hinzunahme -Hinzuziehens -Hinzuziehung/P -Hiobsbotschaft/P -Hiobsgestalt/P -Hippie/S -Hippodrom -Hirn/EGPS -Hirnabschnitte -Hirnchirurgie -Hirnforschung -Hirngeschwulst -Hirngespinst/P -Hirnhautentzndung/P -Hirnrinde -Hirnschlag/GTp -Hirnstamm -Hirnstromdiagramm -Hirnteil/ES -Hirnverletzung -Hirnvorgang/Sp -Hirnwinde -Hiroschima/S -Hiroshima/S -Hirsch/EPST -Hirschfnger -Hirschgeweih -Hirschkhen -Hirschkuh -Hirschpark -Hirse -Hirte/FN -Hirtenbrief/EPS -Hirtensorge -Hirtenstmme -Hirtenwort -Histologe/FN -Histologie -Historie/N -Historiendrama -Historik/R -Historiker/FNS -Historikergesprch -Historikertag/S -Historikerverband/S -Historismus -Hit -Hitchcock/S -Hitler/S -Hitlerjugend -Hitlerregierung -Hitlerreiches -Hitlertum/S -Hitliste/N -Hitparade/N -Hitze -Hitzegrad/E -Hitzekammer -Hitzepanzer -Hitzeperiode -Hitzewelle/N -Hitzschlag/STp -Hiwi/S -Hchstbetrag/STp -Hchstdruck -Hchstform -Hchstgebot -Hchstgeschwindigkeit -Hchstgewicht -Hchstintegration -Hchstkurs/E -Hchstleistung/P -Hchstma/EPT -Hchstpreisen -Hchstrente/N -Hchststze/N -Hchstsatz -Hchststand -Hchststrafe -Hchsttemperatur/P -Hchstumsatz -Hchstwert/EPST -Hcker/NS -Hfe/N -Hflichkeit/P -Hflichkeitsbesuche/S -Hflichkeitsformeln -Hhe/N -Hhenangabe -Hhenanzeige -Hhenbeschrnkung -Hheneichung -Hheneinstellung -Hhenflug/Sp -Hhenkammer -Hhenklima -Hhenkoordinate -Hhenkurorte/N -Hhenkurorts -Hhenlage/N -Hhenlinie/N -Hhenluft -Hhenrausch -Hhentraining -Hhenunterschied -Hhenwinkel -Hhenzug/Sp -Hhepunkt/EPS -Hherentwicklung -Hhle/N -Hhlen/JS -Hhlenbewohner -Hhleneingang -Hhlenforscher/N -Hhlengnger -Hhlenmalerei -Hhlenmensch -Hhlensystem -Hlderlin/S -Hlle/N -Hllenngste/N -Hllenhass/T -Hllenmacht -Hllenmalerei -Hllenmaschine/N -Hllenschauspiel -Hllenwurz -Hlzer -Hrapparat/EPST -Hrbarkeitsgrenze -Hrbild -Hrdrama -Hrer/NS -Hrergebhren -Hrerschaften -Hrerwettbewerb -Hrerwnsche -Hrfehler -Hrfeld -Hrfolge -Hrfunk/S -Hrfunksender -Hrgert/S -Hrigkeit -Hrnchen/S -Hrner/N -Hrprogramme -Hrrohr/PS -Hrsle -Hrsaal/S -Hrspiel/PS -Hrspielgerusche/N -Hrvermgen/S -Hschen -Hoare -Hobby/S -Hobbygerte -Hobbygruppen -Hobbyist/P -Hobbyraum/STp -Hobelanlagen -Hobelantrieb/E -Hobelantriebsleistung -Hobelbank -Hobelbegleiter -Hobelbetrieb -Hobeldaten -Hobelendschalter -Hobelfahrer -Hobelfhrung -Hobelfunktionen -Hobelgeschwindigkeit -Hobelmeiel -Hobelmessung -Hobelmotor -Hobelmotordaten -Hobelposition -Hobels -Hobelsimulationsanlage -Hobelsoftware -Hobelspne/N -Hobelstandort -Hobelsteuerung -Hobelstreb/P -Hobeltiefe -Hobelberlastsicherung -Hobelweges -Hobelwegmesser -Hobelwegmessung -Hobelwegs -Hobelwerk -Hobelzahn -Hochachtens -Hochachtung/P -Hochadel -Hochallee -Hochalpen -Hochbauentwrfe -Hochbaufirma -Hochbaukenntnisse -Hochbauverwaltung -Hochbetrieb/S -Hochbrcke -Hochburg/P -Hochdrcke/N -Hochdruck -Hochdruckbereich -Hochdruckdampferzeugung -Hochdruckeinfluss/Tp -Hochdruckgebiet/EPS -Hochdruckkessel -Hochdruckrcken/S -Hochdruckschlauch -Hochebene/N -Hochfinanz -Hochform -Hochfrequenzgerte -Hochgebirge -Hochgebirgspanorama -Hochgebirgstler -Hochgebirgswanderung -Hochgenuss/Tp -Hochglanz -Hochgotik -Hochhaus/Tp -Hochhauswohnung -Hochimpedanz -Hochintegration -Hochkomma -Hochkultur/P -Hochlnder/N -Hochleistungscomputer/N -Hochleistungsgerte -Hochleistungsmotor/PS -Hochleistungsrechner/S -Hochleistungsschichten -Hochleistungssport/S -Hochleistungssportlers -Hochmut/S -Hochofen/S -Hochofengase -Hochofenkoks -Hochofenwerke -Hochpreispolitik -Hochrechnen/JS -Hochregal -Hochrhein/S -Hochs -Hochsaison -Hochschtzens -Hochschtzung/P -Hochschrift -Hochschulabschluss/Tp -Hochschulausbau -Hochschulbau -Hochschulbauten -Hochschulbereich/EPS -Hochschulbildung -Hochschuldirektor -Hochschuldozenten -Hochschule/N -Hochschuletat/S -Hochschulfinanzierung -Hochschulfragen -Hochschulgebude -Hochschulgesetz -Hochschulgruppe/N -Hochschulklassen -Hochschullehrer/FNS -Hochschulmeisterschaft -Hochschulmittel -Hochschulorgane -Hochschulrahmengesetz -Hochschulreform -Hochschulreife -Hochschulstudium/S -Hochschulstufe -Hochschulverband -Hochschulvertreter -Hochschulwesen -Hochschwarzwaldes -Hochseefischer -Hochseefischerei -Hochseeflotte -Hochseereederei -Hochseeschifffahrt -Hochseesegler -Hochsicherheitstrakt -Hochsitz -Hochsommer -Hochspannung/P -Hochspannungsanlage -Hochspannungskabel -Hochspannungskunden -Hochspannungsleitung/P -Hochspannungstechnik -Hochsprache/N -Hochsprung/S -Hochstapler/NS -Hochstart/P -Hochstellung -Hochtal -Hochtechnologie/N -Hochtouren -Hochvakuum -Hochverrat -Hochverratsprozess/EPT -Hochwasser -Hochwassergefhrdung -Hochwasserkatastrophe -Hochwasserschutz -Hochwassersorgen -Hochwrden -Hochzeit/P -Hochzeitsfest/EPS -Hochzeitsfoto -Hochzeitsgste -Hochzeitsgeschenk/EPS -Hochzeitskuss/Tp -Hochzeitspaar -Hochzeitsreise -Hochzeitsstimmung -Hochzeitstag -Hochzeitszeremonie -Hochzins/P -Hochzinsphase/N -Hochzinspolitik -Hochzchtung -Hockenheimring -Hocker/N -Hockey/S -Hockeyklub -Hockeyschiedsrichter -Hockeyspiele -Hockeyturniers -Hoden -Hoechst -Hoesch -Hof/EST -Hofberichterstatter -Hofberichterstattung -Hofbruhaus -Hofburg -Hofdamen -Hoffens -Hoffmann/S -Hoffnung/P -Hoffnungslosigkeit -Hofgarten -Hofgrundstcke -Hofhaus -Hofkunst -Hoflandwirtschaft -Hofleben -Hofmauern -Hofmeister -Hofnachrichten -Hofoper -Hofplatz -Hofrat -Hofscheune -Hoftor -Hofweg -Hoheit -Hoheitsakte -Hoheitsgebiet/EPST -Hoheitsgewsser/S -Hoheitsgewalt -Hoheitsrecht/E -Hohenzoller/NS -Hohlglashtte -Hohlkopf/S -Hohlma/EPT -Hohlraum/Sp -Hohlspiegel -Hohlsteinhhle -Hohltier/EPS -Hohn/ST -Hohngelchter/S -Holding -Holdinggesellschaften -Holger/S -Hollnder/FNS -Holland/S -Hollywood/S -Hollywoodstar/S -Hollywoodzauber -Holm/EPS -Holocaust/S -Hologramm/EPS -Holographie/Nf -Holstein -Holunder/S -Holunderbaum/STp -Holz/T -Holzarbeit/PR -Holzarbeiter/FNS -Holzausfuhren -Holzbaracken -Holzbearbeitung -Holzbein -Holzblser/N -Holzbrett -Holzdamm -Holzdecke -Holzeinfuhr -Holzersatz -Holzerzeugnis/Qq -Holzexportlnder -Holzfller/N -Holzfabrikant -Holzfachmann -Holzfeuer -Holzfigur -Holzgestell -Holzgiebel -Holzhammer -Holzhandlung -Holzhaus/Tp -Holzimporteure -Holzindustrie -Holzkasten -Holzkohle/N -Holzkreuz/EPT -Holzlatte/N -Holzmontage -Holzpfad -Holzplastik -Holzpritschen -Holzrad/ST -Holzrahmen -Holzrechte -Holzschale -Holzschnitt/E -Holzschnitzereien -Holzschssel -Holzschuppen -Holzschutzmittel -Holzschwnze -Holzschwellen -Holzspielwaren -Holzspielwarenbranche -Holzsto/Tp -Holzstufen -Holztafeln -Holzteilen -Holztische -Holztreppe -Holzverarbeitungsbetrieb -Holzverschalung -Holzverschlag/STp -Holzvorkommen -Holzwanne -Holzwaren -Holzweg -Holzwerken -Holzwirtschaft -Holzwolle -Holzwurm/S -Homecomputer -Homedirectory -Homeland -Homepage/S -Homer/S -Hommage/N -Homopath/P -Homopathie -Homogenisierung -Homogenitt -Homomorphie -Homomorphismen -Homomorphismus -Homophobie/N -Homosexualitt -Honda -Honduras -Honecker/S -Hongkong/S -Honig -Honigbiene/N -Honigdose -Honiglecken -Honigschlecken -Honorar/EPS -Honorarerhhung -Honorarforderung -Honorarprofessor -Honorarstze -Honorarvertrag/STp -Honoratioren -Honorierens -Honorierung/P -Hopfenhandel -Hopfenpflanzer -Hopfensack -Hopfenstange -Horcher/NS -Horchposten -Horde/N -Horizont/EPS -Horizonterweiterung -Hormon/EPS -Hormonbehandlung/P -Hormonspiegel/S -Hormonumstellung/P -Hormonwirkung -Horn/S -Hornberger -Hornhaut -Hornisse/N -Hornvieh -Horoskop/EPS -Horror/S -Horrorfilm/EPS -Horrormrchen -Horrorthema -Horrorvisionen -Horst/EPT -Hort/JTX -Hortens -Hortungskufe/N -Hose/N -Hosenanzug/STp -Hosenbein/E -Hosenboden -Hosenklammern -Hosenknopf -Hosenrock -Hosenschlitz/ET -Hosentasche/N -Hosentrger/NS -Hospitler -Hospital/S -Hospitalismus -Hospitalkosten -Hospitalwerk -Hospitant/P -Hospitation/P -Hospiz/PT -Hostadapter/NS -Hostess/P -Hostie/N -Hostinterface/S -Hostname/NS -Hostprozessor/P -Hostrechner/NS -Hostsoftware -Hotdog/S -Hotel/S -Hotelangestellte -Hotelappartements -Hotelbar -Hotelbauprojekt -Hotelbesitzer/FNS -Hotelbetrieb/E -Hotelbett -Hotelfhrer/NS -Hotelgste -Hotelgarten -Hotelgast -Hotelgebude -Hotelgesellschaft -Hotelgewerbe -Hotelgruppe -Hotelhalle/N -Hotelier/S -Hotelkapazitt -Hotelkomplex -Hotelkonzerns -Hotelleitung -Hotellerie -Hotelmakler -Hotelpark -Hotelparkplatz -Hotelportier -Hotelprojekte -Hotelrechnung -Hotelrestaurant -Hotelschiff -Hotelservice -Hotelverbot -Hotelvollpensionen -Hotelzimmer -Hotline/S -Hbe/N -Hfte/N -Hftgelenk/EPS -Hftschwung/S -Hftumfang -Hgel/NS -Hgelgrber -Hgelgrab -Hgelkette -Hgelkuppe -Hgelland -Hhnchenfriedhof -Hhner/N -Hhnerauge/N -Hhnerbestand -Hhnerdiebe -Hhnerhalter -Hhnerhaltung -Hhnerleiter/N -Hhnermrder -Hhnerstall/Sp -Hhnerzucht -Hlse/N -Hlsenfrchte -Hndchen/S -Hndin/F -Hne/N -Hpfer -Hrde/N -Hrdenlauf/Sp -Hrdenrennen -Hrdenspezialist -Hter/FNS -Htte/N -Httenbau/ST -Httenbereich -Httenbewohner -Httensauerstoff -Httentr -Httenwerk/S -Httenwesen/S -Hub/ST -Hubbereiche/N -Hubbewegung -Hubeinstellung -Hubende -Huber/S -Hubert/SW -Hubertus -Hubgrenzen -Hubgrenzenerkennung -Hubhhe -Hubkomponente -Hubraum/STp -Hubraumsteuer -Hubschrauber/NS -Hubschraubergeknatter -Hubschrauberverkehr -Hubwagen -Hubzylinder/N -Huf/EPS -Hufeisen/S -Hufeisentisch -Hufschlag/Sp -Huftier/EPS -Hugenotte/FN -Hugenottenkriege -Hugenottenverfolgung -Hugo/S -Huhn/S -Huldigens -Huldigung/P -Humanethologie -Humangenetik -Humanismus -Humanist/P -Humanitt -Humboldt/S -Humbug -Hummer/NS -Hummercremesuppe -Hummerschwnze -Hummertransporte -Humor/S -Humorist/P -Humorlosigkeit -Humus -Hund/EPST -Hundeausstellung/P -Hundebaby/S -Hundebesitzer -Hundedressurplatz -Hundegenie -Hundehalter -Hundehtte -Hundekette -Hundekopf -Hundeleine/N -Hundemarke -Hundenase -Hundepeitsche -Hundertmarkschein -Hundertschaft -Hundertstelsekunden -Hundesteuer -Hundewetter/S -Hundezchtern -Hundezucht -Hundstage/N -Hunger/S -Hungerblockade -Hungerkur -Hungerlohn -Hungermarsch -Hungernationen -Hungersnte/N -Hungerstreik/PS -Hungertuch -Hunne/N -Hupengehuse/S -Hupenkammer -Hupenschalter -Hurenkind/RST -Hurerei -Hurrikan -Husar/P -Husarenritt/P -Hussein/S -Hussitenkriege -Hustenanfall/Sp -Hustenbonbon/S -Hustensfte/N -Hustensaft/ST -Hustensirup -Husum -Hut/ST -Hutfachgeschfte -Hutfachschau -Hutfilter -Hutstumpen -Hyne/N -Hybris -Hydepark -Hydrant -Hydraulik -Hydraulikansteuerung/P -Hydraulikanwendung/P -Hydraulikbewegung/P -Hydraulikblock -Hydraulikdruck -Hydrauliker -Hydraulikflssigkeit/P -Hydraulikkolben/S -Hydraulikleitung/P -Hydraulikmedium/S -Hydraulikl -Hydraulikplne -Hydraulikpumpen -Hydraulikpunkte -Hydraulikregelung -Hydraulikschluche/N -Hydrauliksteuerung -Hydrauliksystemen -Hydraulikteststands -Hydraulikventile/N -Hydraulikventils -Hydraulikverbesserung/P -Hydraulikzylinder/NS -Hydrieren/JS -Hydrierwerke -Hydrobusse -Hydrokultur -Hydromatik -Hydromotor/PS -Hydromotorenwelle -Hydrophon -Hydrospeicher -Hygiene -Hygienebetreuung -Hygieneprogramm -Hymne/N -Hyperbel/N -Hyperlink/S -Hypnose/N -Hyposensibilisierung -Hypotenuse/N -Hypothek/P -Hypothekenabwertung -Hypothekenaufnahme -Hypothekenberechnung -Hypothekenbriefe -Hypothekengeld -Hypothekenraten -Hypothekenrckstnden -Hypothekenzinsen -Hypothese/N -Hysterie/N -Hysteriker/FNS -Hz -IATA -IBM -ICI -IDE -IG -II -III -IMAP -IP -IQ -IRA -IRC -IRQ -ISBN -ISDN -ISO -ISP -ITT/W -IV -IX -Ibbenbren -Iberer -Iberien -Ichbewusstsein/S -Ichform/P -Ichsucht -Icon/S -Idealbedarf -Idealfall/Sp -Idealgewicht -Idealismus -Idealist/FP -Idealkonkurrenz -Idealnote/N -Ideals -Idealstaates -Idealtarnung -Idealvorstellung/P -Idealwelt -Idealzustand/T -Idee/N -Ideendarstellung -Ideenlehre/N -Ideenlosigkeit -Ideenreichtum/S -Ideensuche -Ideentrger -Ideenwettbewerb -Identifikation -Identifikationsnachweis/EPT -Identifikationsnummer -Identifikationspapiere -Identifikator/PS -Identifikatorbindung/P -Identifizierbarkeit -Identifizierens -Identifizierung/P -Identitt/P -Identittsfindung -Identittsfunktion/P -Identittskarte/N -Identittsnachweis/EPT -Ideologe/FN -Ideologie/N -Ideologiekampf -Ideologieprodukt -Idiomatik -Idiome/N -Idiosynkrasie/N -Idiot/P -Idiotenfilm -Idol/EPS -Idyll/EP -Igel/NS -Igelstellung/P -Ignoranz -Ikarus -Ikone/N -Illegalitt -Illiquiditt -Illiterat/P -Illumination/P -Illusion/P -Illustration/P -Illustrator/P -Illustrierens -Illustrierung/P -Illyrien -Illyrier -Ilmenau/S -Ilmensee -Iltis/Qq -Image/S -Imagepflege -Imaginrteil/EPS -Imagination -Imbiss/EPT -Imbisshalle -Imbissstnde -Imbissstube -Imitation/P -Imitator/P -Imker/S -Immanuel/S -Immaterialisierung -Immatrikulation/P -Immatrikulationsgesuche -Immatrikulationsnummer -Immigrant/FP -Immobilie/N -Immobilienanlagen -Immobilienanzeige -Immobilienblase -Immobilienboom/S -Immobilienbro -Immobiliencrash -Immobilieneigentmer/N -Immobilienerwerb -Immobilieneuphorie -Immobilienfinanzierung/P -Immobilienfonds -Immobiliengeschft/E -Immobilienhndler/FNS -Immobilienhandel/S -Immobilienjongleur -Immobilienkatastrophe -Immobilienkauf/Sp -Immobilienkollaps -Immobilienmaklern -Immobilienmaklers -Immobilienmarkt/Tp -Immobilienobjekt/E -Immobilienpreisdeflation -Immobilienpreisindex -Immobiliensektor -Immobiliensuche -Immobilienverkauf/Sp -Immobilienverlust -Immobilienversteigerung/P -Immobilienwelt -Immobilienwerte -Immunitt -Immunittsbarriere -Immunkrper/NS -Immunschwche -Immunsystem/EPS -Immuntoleranz -Impedanz/P -Impedanzanpassung -Impedanzfehlanpassung -Impedanztabelle -Impedanzunterschied -Impedanzwandler/NS -Impedanzwandlung -Imperator/P -Imperatorensitz -Imperfekt/P -Imperialismus -Imperium/S -Impertinenz -Impfens -Impfpass/Tp -Impfschein/EPS -Impfschutz -Impfstoff/EPS -Impfung/P -Implantation/P -Implementation/P -Implementationsarbeit/P -Implementationsdetail/S -Implementationsrichtlinie/N -Implementationssprache/N -Implementationstechnik/P -Implementationstechnologie/N -Implementierbarkeit -Implementierens -Implementierer/N -Implementierung/P -Implementierungsarbeit/P -Implementierungsaspekt/EPS -Implementierungsdetail/S -Implementierungsgrundlage/N -Implementierungssprache/N -Implementierungsstrategie/N -Implementierungstechnik/P -Implikation/P -Imponderabilien -Import/EPST -Importabgaben -Importanteil -Importbeschrnkung/P -Importbrse -Importbutter -Importeur/PS -Importfinanzierung -Importfirmen -Importgter -Importhandel -Importkontingent -Importkontingentierung -Importkontrollen -Importlnder -Importmengen -Importmesse -Importl -Importplaner -Importplanung -Importprogramm -Importquoten -Importsperre -Importvolumen/S -Importwachstum -Importwagen -Impotenz -Imprgnierens -Imprgnierung/P -Impresario/S -Impression/P -Impressionismus -Impressionist/P -Impressum -Improvisation/P -Impuls/EPT -Impulsamplitude -Impulsanregung -Impulsdivergenz -Impulsecho -Impulseingang/S -Impulsfolge/N -Impulsfrequenz -Impulsgeber/N -Impulsmesseinrichtung -Impulssummierung -Impulszhler -Imputation/P -Inaktivitt -Inanspruchnahme -Inauguralvorlesung -Inbegriff/ES -Inbesitznahme -Inbetriebnahme/N -Inbetriebnahmearbeit/P -Inbetriebnahmebericht -Inbetriebnahmefahrt -Inbetriebnahmezeit -Inbetriebsetzung -Inbrunst -Inder/FNS -Index/EPT -Indexgrenze/N -Indexgruppen -Indexkontrakte -Indexoption/P -Indexwert/EPT -Indexzahl -Indexziffern -Indiana -Indianapolis -Indianer/FNS -Indianerleben -Indianerreservat -Indianerrezept -Indianersommer -Indianerstamm -Indices -Indien/S -Indienroute -Indifferenz -Indikation/P -Indikationslsung -Indikationsregelung -Indikator/P -Indio/S -Indira/S -Indirektion/P -Indiskretion/P -Individualebene/N -Individualethik -Individualisierens -Individualisierung/P -Individualismus -Individualist/P -Individualitt/P -Individualreise -Individualstck -Individuation/P -Individuen -Individuum/S -Indiz/T -Indizien -Indizienbeweis/EPT -Indizierens -Indizierung/P -Indochina -Indoktrination -Indonesien/S -Indonesier/FNS -Indossament/EPS -Indossant -Induktion/P -Induktionsanfang -Induktionsannahme/N -Induktionsaussage/N -Induktionsbeginn/S -Induktionsbeweis/EPT -Induktionshypothese/N -Induktionsmethode/N -Induktionsprinzip -Induktionsschluss/Tp -Induktionsschritt -Induktionsvoraussetzung -Induktivitt/P -Induktivittsmessung -Indus -Induskultur -Industrialisierens -Industrialisierung/P -Industrie/N -Industrieanlagen -Industrieanwendung/P -Industriearbeiter/FNS -Industrieausfhrung -Industrieausstellung -Industrieautomatisierung/P -Industriebank -Industriecomputer -Industrieelektronik/P -Industrieerzeugung/P -Industriefilm -Industriefilmer -Industriegebiet/EPST -Industriegehuse -Industriegesellschaft -Industriehallen -Industriekonzern -Industriekreis/E -Industrielnder -Industriellenverband -Industriemanager -Industriemarkt/ST -Industriemesse -Industriemilieu -Industrieministerium -Industriemhlen -Industrienation/P -Industriefen -Industrieobjekt/E -Industrieofen -Industriepapieren -Industrieplan -Industriepotential/EPS -Industriepotenzial/EPS -Industrieprodukte -Industrieproduktion -Industriequalitt -Industrieraum/STp -Industrierechner/N -Industrieriesen -Industrieroboter -Industriesektoren -Industriespion/EPS -Industriespionage -Industriestdtchen -Industriestaat/PST -Industriestadt -Industriestandard/S -Industriesteuerung/P -Industriestrae -Industriestrategen -Industriestroh -Industrietitel -Industriebliches -Industrieunternehmen -Industrieverbnde -Industrieverband/ST -Industrieverlagerung -Industrievermittlung -Industriewaren -Industriewerk/E -Industriezentren -Industriezentrum -Industriezwecke -Industriezweige -Ineffizienz/P -Infanterie/N -Infanteriebataillone -Infanterieregiment -Infanterist/P -Infantilismus -Infarkt/EPS -Infekt/EPST -Infektion/P -Infektionsbazillus -Infektionskrankheit/P -Inferenz/P -Inferenzregel/N -Inferenzschritt/EPT -Inferno -Infiltrierens -Infiltrierung/P -Infimum -Infixnotation -Infixschreibweise -Inflation/P -Inflationsngsten -Inflationsbekmpfung -Inflationsbremse -Inflationsdruck -Inflationsfrderung -Inflationsgefahr/P -Inflationsindikatoren -Inflationsjahr/E -Inflationskurs/T -Inflationslnder -Inflationslawine -Inflationsorgie/N -Inflationspolitik -Inflationsrate/N -Inflationsrunde -Inflationsschub -Inflationsschutz -Inflationssteuer -Inflationstendenz/P -Inflationswelle -Inflationszuschlag/STp -Info/S -Infobriefen -Infodienst/E -Informant/FP -Informatik/R -Informatiker/FNS -Informatiksystem/EPS -Informatikzeitalter -Information/P -Informationsagentur -Informationsamt/T -Informationsart -Informationsauftrag/STp -Informationsaustausch -Informationsbehrde -Informationsbesuche -Informationsbltter -Informationsblatt -Informationsbrief/EPT -Informationsbro/S -Informationsdichte/N -Informationsdienst/EPST -Informationsflug/Sp -Informationsfluss/Tp -Informationsfreiheit -Informationsflle -Informationsgeber -Informationsgehalt -Informationsgesellschaft -Informationsgesprche/N -Informationsgewinnung -Informationsgutschein -Informationsheft -Informationshilfe -Informationsindustrie -Informationslcke/N -Informationsmaterial -Informationsmedien -Informationsmenge/N -Informationsministerium/S -Informationsnetz -Informationsoffizier -Informationspakete -Informationspolitik -Informationsquelle/N -Informationsreise -Informationssendung/P -Informationsspeicher/N -Informationsspeicherung -Informationsstand -Informationsstelle/N -Informationssystem/EPS -Informationstag/EPST -Informationstagung -Informationstechnik/P -Informationstechnologie/N -Informationsverarbeitung -Informationsverarbeitungsprozess/EPT -Informationsverarbeitungssystem/EPS -Informationsverbreitung -Informationsverwaltung -Informationsvorsprung -Informationszeitalter -Informationszentrale/N -Informationszyklen -Infownde/N -Infrarot -Infrarotlicht/S -Infrarotsender -Infrastruktur/P -Ing -Ing. -Inganghaltung -Ingangsetzen/JS -Ingeborg/S -Ingenieur/EFPS -Ingenieurausbildung -Ingenieurbaus -Ingenieurbereich -Ingenieurbro/S -Ingenieurexamen -Ingenieurkongress/EPT -Ingenieurleistung -Ingenieurprfung -Ingenieurschule/N -Ingenieurskunst -Ingenieurstudenten -Ingenieurwesen/S -Ingenieurwissenschaft/P -Ingo/S -Ingolstadt/S -Ingrid/S -Ingwer/S -Inhaber/FNS -Inhaberaktie/N -Inhaberaktionr/EPS -Inhaberpapier/PS -Inhaberscheck/S -Inhaberwechsel/N -Inhaberzertifikat -Inhaftierens -Inhaftierung/P -Inhalation/P -Inhalt/EPST -Inhaltsangabe/N -Inhaltsverz -Inhaltsverz. -Inhaltsverzeichnis/Qq -Inhomogenitt/P -Initial/EPS -Initialisierens -Initialisierung/P -Initialisierungsausdrcke/N -Initialisierungsausdruck/S -Initialisierungsbit/S -Initialisierungsdaten -Initialisierungsfunktion/P -Initialisierungsphase/N -Initialisierungssequenz -Initialisierungszeit -Initiative/N -Initiativrecht -Initiator/P -Initiierens -Initiierung/P -Injektion/P -Injektionsmittel -Injektionsnadel -Injektivitt -Inka -Inkareich -Inkarnation/P -Inkasso/S -Inkassounternehmen -Inkassovollmachten -Inkassowechsel/N -Inkaufnahme -Inkavergewaltigung -Inklination/P -Inklinometer/NS -Inklinometeranzeige -Inklusion -Inklusivpreise -Inkompatibilitt/P -Inkonsequenz/P -Inkonsistenz/P -Inkorrektheit/P -Inkraftsetzen/JS -Inkrafttreten -Inkrement -Inkrementalgeber -Inkrementalzhler/S -Inkubationszeit/P -Inlnder/FNS -Inland -Inlandgesellschaften -Inlandmarkt/STp -Inlandpreis -Inlandsabschluss/Tp -Inlandsbetriebe -Inlandserze -Inlandserzeugung -Inlandsferngesprche -Inlandsfilialen -Inlandsfonds -Inlandsgeschft/S -Inlandshandel -Inlandsindustrie -Inlandskonjunktur -Inlandskonsum -Inlandsmarkt/STp -Inlandsnachfrage -Inlandspreise/N -Inlandsproduktion -Inlandssektor -Inlandsumstze -Inlandsurlaub -Inlandsverbrauch -Inlandsversorgung -Inlandszinsen -Innenanstrich/S -Innenarchitekt/FP -Innenarchitektur -Innenaufzug -Innenausbausystem -Innenausschuss/Tp -Innenausstattung -Innenbahn -Innenbeschaltung -Innendekorateur -Innendekoration/P -Innendruck -Inneneinrichtung/P -Innenfinanzierung -Innengehuse -Innenhof/T -Innenkabine/N -Innenleben -Innenleiter/S -Innenminister/NS -Innenministerien -Innenministerium/S -Innennutzung -Innenohr -Innenpolitik -Innenraum/STp -Innenschwimmbder -Innenschwimmbad -Innensechskant -Innensechskantschraube -Innenseite/N -Innensenator -Innenstdte -Innenstadt -Innenstrmer/S -Innenumstze -Innenumsatz -Innenverkleidung -Innenwiderstand -Innerei/P -Innerlichkeit -Innern -Innigkeit -Innovation/P -Innovationsbemhung/P -Innovationscharakter/S -Innovationskraft -Innsbruck -Inputfile/S -Inputparser -Inquisition/P -Insasse/N -Insassenversicherung -Inschrift -Insekt/PT -Insektenfresser -Insektenoper -Insektenplage -Insektensaal -Insektenvertilgungsmittel -Insektizid/EPS -Insel/MN -Inselfestung -Inselgebiet -Inselgruppe -Insellage -Inselrepublik -Inselstaat/PS -Inselstadt -Inselstatut -Inselverkufer -Inselvlkern -Inselvolk -Inselwelt -Inselzauber -Insemination -Inserat/EPST -Inseratenbro -Inserent/P -Insertion -Insertionspreise -Insertionsunterlage/N -Insider/N -Insidergeschfte -Insiderskandalen -Insiderverhalten -Insiderwissen -Insolvenz -Inspekteur/FS -Inspektion/P -Inspektionsmanahmen -Inspektionsreferat -Inspektionsreise -Inspektionszyklen -Inspektor/FPS -Inspiration/P -Inspizient -Inst -Instabilitt/P -Installateur/EFPS -Installateurmeister -Installation/P -Installationsarbeit/P -Installationsleitung/P -Installationsmngel -Installationsmaterial -Installationsort/EPS -Installationsprogramm/EPS -Installationsprozess/EPT -Installationsrezept -Installationstag/EPST -Installationswahl -Installationszustand -Installierens -Installierung/P -Instandhalten/JS -Instandhaltungskosten -Instandsetzens -Instandsetzung/P -Instandsetzungsarbeit/P -Instantiierung/P -Instanz/P -Instanzvariable/N -Instinkt/EPT -Institut/EPST -Institution/P -Institutionalisierens -Institutionalisierung/P -Institutsbericht/EPS -Institutsbetrieb -Institutsgelnde -Institutsleiter -Instrukteur -Instruktion/P -Instruktionsfolge/N -Instruktionssatz -Instrument/EPT -Instrumentalensemble -Instrumentalisieren/JS -Instrumentalist/P -Instrumentalpart -Instrumentarium -Instrumententasche -Insulaner/FNS -Insulin/S -Insulingaben -Insulinmangel -Insulinmenge -Insulinvorrat -Inszenator -Inszenierens -Inszenierung/P -Integralbildung -Integralrechnung/P -Integrals -Integralteil/EPS -Integration -Integrationsaspekt/EPS -Integrationsbereitschaft -Integrationsfhigkeit -Integrationsfigur -Integrationsgeschwindigkeit/P -Integrationsidee/N -Integrationsmethode/N -Integrationsplatinen -Integrationspolitik -Integrationsprozess/EPT -Integrationsvorteil/EPS -Integrierbarkeit -Integritt -Intel/S -Intellekt/S -Intellektuellenschicht -Intelligenz/P -Intelligenzbestie/N -Intelligenzgrad -Intelligenzler -Intelligenzquotient/P -Intelligenztest/S -Intelligenztheorie/N -Intendant/P -Intendantenamt -Intendantenstuhl -Intendantenwahl -Intensitt/P -Intensittsschwchung -Intensivierens -Intensivierung/P -Intensivstation/P -Intention/P -Interaktion/P -Interaktivitt/P -Intercity/S -Interdependenz -Interesse/NS -Interesselosigkeit -Interessenausgleich/S -Interessenbefriedigung -Interessengebiet/EPST -Interessengemeinschaft/P -Interessengruppe/N -Interessenkollision/P -Interessenkonflikt -Interessenkreis/EPT -Interessenlage/N -Interessenschwerpunkt -Interessent/PW -Interessentengruppe/N -Interessentenmeldung/P -Interessenverbnde -Interessenverband -Interessenvertretung/P -Interessiertheit -Interface/S -Interfaceplatine/N -Interferenz/P -Interferenzmuster/NS -Interferenzpunkt -Interim/S -Interimsregierung/P -Interludium -Intermezzi -Intermezzo/S -Internat/EPSW -Internationalisieren/JS -Internationalismus -Internatsabteilung -Internatsleiter -Internatsschule -Internet/S -Internetseite/N -Internierungshaft -Internierungslager -Internierungszeit -Interpol -Interpret/FPR -Interpretation/P -Interpretationskurse -Interpretationsrisiko -Interpreter/NS -Interpretierens -Interpretierung/P -Interpunktion/P -Interpunktionszeichen/S -Interrupt/S -Interruptbuffer/S -Interruptsteuerung/P -Interruptvektortabelle/N -Interruptverarbeitung -Intervall/EPS -Intervallkalkl -Intervention/P -Interventionsbestnde -Interventionsmanahmen -Interventionspflicht -Interventionspunkt/EPST -Interventionsrechte -Interview/RS -Interviewer/NS -Interviewpartner -Interviewung -Interzins -Interzonen -Interzonenhandelabkommen -Interzonenhandelsvertrag/STp -Interzonenpass/Tp -Interzonenregelung -Interzonenreisenden -Interzonenstrecken -Interzonenverkehr -Inthronisation -Intimitt/P -Intimsphre -Intoleranz -Intranet/S -Intrigantin/F -Intrige/N -Intuition/P -Invalidenrente/N -Invalidenversicherung/P -Invaliditt -Invalidittsversicherung -Invasion/P -Invasionsarmee/N -Invasionsgebiet -Invasionstruppe/N -Inventar/EPS -Inventardatei/P -Inventur -Inventuraufstellung -Inventurliste/N -Invertierens -Invertierung/P -Investition/P -Investitionsabgabe -Investitionsanreize -Investitionsaufgaben -Investitionsaufwand -Investitionsbank -Investitionsbedarf -Investitionsboom -Investitionsfonds -Investitionsgter -Investitionshilfe -Investitionsklima -Investitionskosten -Investitionskredite -Investitionsmittel/NS -Investitionsniveau -Investitionspause -Investitionsplne -Investitionsplanung -Investitionspole -Investitionspolitik -Investitionssteuer -Investitionssumme -Investitionstheorie -Investitionszulagen -Investitionszuschuss/Tp -Investitionszweck/P -Investitur -Investiturstreit -Investmentanteil/EPS -Investmentbanker -Investmentberater/N -Investmententscheidung/P -Investmentfirma -Investmentform/P -Investmentgesellschaft/P -Investmentguru -Investmentkonzerne -Investmentreport -Investments -Investmentsektor -Investmentszene -Investmentvehikel -Investmentvolkes -Investmentzertifikat/EPS -Investor/P -Inzest -Inzucht -Ion/PS -Ionen/W -Ionenantrieb -Ionisation -Irak -Iran -Ire/FN -Irland/S -Ironie -Ironiker/NS -Irrationalismus -Irrefhrens -Irrefhrung/P -Irregefhl/S -Irrelevanz -Irrenrzte/FN -Irrenanstalt -Irrenarzt/T -Irrenhaus/Tp -Irrenheilanstalt/P -Irrfahrten -Irrglaube/N -Irritation/P -Irrlufer -Irrlehre/N -Irrsinn/S -Irrtmer/N -Irrtum/S -Irrweg/EPST -Isaac/S -Isaak/S -Isar -Ischias -Ischiasnerv -Isis -Islam/S -Islamabad/S -Islamist/P -Islamit/FPX -Island -Islandpony/S -Isolation/P -Isolationismus -Isolationist/P -Isolationsspannung -Isolationsstoff -Isolator/P -Isolierbndern -Isolierband/T -Isolierens -Isolierplatte -Isolierschicht -Isolierstation/P -Isolierstoff -Isolierung/P -Isolierwerk -Isometrie/N -Isomorphie -Isomorphismen -Isomorphismus -Isopropanol -Isotop/EPS -Isotropie -Israel/S -Israeli/S -Istanbul -Italien/RS -Italienaufenthalt -Italiener/FNS -Italienfront -Italienreise -Iteration/P -Itzehoe -Ivan/S -Jger/FNS -Jgerei -Jgergemeinschaft -Jgerlatein -Jgermeister/NS -Jgerprfung -Jhrchen/S -Jhzorn/S -Jacht/P -Jachtklub -Jack/EPS -Jackentasche/N -Jackett/S -Jacob/S -Jacqueline/S -Jacques -Jadebusen -Jaffa -Jagd/P -Jagdaufenthalt -Jagdaufseher/N -Jagdaufsicht -Jagdausflug/Sp -Jagdbeute -Jagdbomberangriffe -Jagdbombern -Jagdbomberregiment -Jagderlebnis/Qq -Jagdflieger/NS -Jagdfliegerverbnde -Jagdflugzeug/P -Jagdfrevel/N -Jagdgefhrten -Jagdgenossenschaft -Jagdgert -Jagdgeschwaders -Jagdgesetz/ET -Jagdgewehr/EPS -Jagdgrnde -Jagdhaus/Tp -Jagdhtte/N -Jagdhund/EPST -Jagdmaschinen -Jagdmesser/N -Jagdmotive -Jagdmuseum -Jagdpacht -Jagdrechte/N -Jagdrechts -Jagdrevier/EPS -Jagdsaison -Jagdschein/EPS -Jagdschloss/T -Jagdseminar -Jagdspringen -Jagdurlaub -Jagdverhltnis/Qq -Jagdverpachtung -Jagdvorsteher -Jagdwaffe/N -Jagdzeit/P -Jaguar/EPS -Jahn/S -Jahr/EPST -Jahrbuch/S -Jahresabonnement/S -Jahresabschluss/Tp -Jahresanfang -Jahresansatz -Jahresausgabe -Jahresbasis -Jahresbeginn -Jahresbeitrag/STp -Jahresbericht/EPST -Jahresbestleistung -Jahresbilanz/P -Jahreseinkauf/Sp -Jahreseinkommen/S -Jahresende/NS -Jahresendpreise -Jahreserhebung -Jahresertrag/STp -Jahresessen -Jahresetat/S -Jahresfrist -Jahresgabe -Jahresgebhren -Jahresgehlter -Jahresgehalt/S -Jahresgewinnanteil -Jahresgutachten -Jahreshlfte/N -Jahreshchstkurse -Jahreshoch -Jahresintervalle -Jahreskarten -Jahreskonferenz -Jahreskongress/EPT -Jahreskursen -Jahresmiete -Jahresmittel -Jahrespauschale -Jahresprmie -Jahrespreis/EPT -Jahresrente/N -Jahresschau -Jahresschlussausgabe -Jahresschlusskurse -Jahresschnitt -Jahressteuer -Jahresstipendium -Jahrestag/EPS -Jahrestiefstand -Jahresberschuss/Tp -Jahresbersicht -Jahresumsatz -Jahresumschlag/STp -Jahresunterlagen -Jahresurlaub -Jahresverdienst -Jahresvergleich -Jahresvergtung -Jahresverlust -Jahresvorrat -Jahreswachstum -Jahreswechsel -Jahresweltbestleistung -Jahreswettbewerb -Jahreszahl/P -Jahreszeit/P -Jahreszinsen -Jahrgang/Sp -Jahrhundert/EPS -Jahrhunderttausende -Jahrhundertwende -Jahrmarkt/STp -Jahrmillion/P -Jahrtausend/EPS -Jahrtausendfeier/N -Jahrtausendwende -Jahrzehnt/EPS -Jahwe/S -Jakarta/S -Jakob/S -Jakobiner -Jalousie/N -Jalta -Jamaika -Jambus -James -Jammer/GS -Jammerbild/RT -Jan/S -Janeiro -Januar/S -Januarausgaben -Januarlieferung -Januarreise -Januartag -Januarwoche -Januarzahlen -Japan/RS -Japanempfehlung/P -Japaner/FNS -Japanexperten -Japanexporte -Japanpanne -Japanposition -Jargon/S -Jaruzelski/S -Jauche/N -Jauchefass/T -Java/S -Javasee -Jawort/EPST -Jazz -Jazzband -Jazzexperte -Jazzmusik -Jazzmusiker -Jazzplatten -Jazzszene -Jean/S -Jeanstrger -Jeanstyp -Jeep/S -Jelzin/S -Jemen -Jena -Jens -Jenseitsverheiung -Jeremiade/N -Jericho -Jersey -Jerusalem/S -Jesaja/S -Jesuit/P -Jesuitenpater -Jesuitenpriester -Jesus -Jet/S -Jg -Jg. -Jim/S -Jrg/S -Joachim/S -Job/S -Jobablauf/Sp -Jobsharing/S -Joch/P -Jochbein -Jockeyclub -Jod/S -Jodkur -Jodler/N -Jodquelle/N -Joga/S -Joghurt/S -Jogurt/S -Johann/ST -Johannesburg -Johannesevangelium -Johannisbeere/N -Johannisbrot -Johanniskraut/S -Johanniter -John/S -Johnson/S -Jointventure/S -Joker -Jolle/N -Jones -Jongleur -Jordan/S -Jordanien/S -Josef/S -Joseph/S -Jota -Joule -Journal/EPS -Journalbuchhaltung -Journaldrucker/N -Journalismus -Journalist/FP -Journalkontrolle -Journalpapier/EPS -Journalprinter/S -Journalstreifen -Journaltransport -Journalvorschbe -Joy/S -Joystick/S -Joystickwerten -Jdin/F -Jngling/EPS -Jnglingsalter/S -Jrgen/S -Jtland -Jubel/S -Jubelfeier -Jubelschrei -Jubelsturm -Jubilen -Jubilum/S -Jubilumsausgabe/N -Jubilumsfeier -Jubilumsjahr -Jubilumskonferenz -Jubilumsregatta -Jubilumsrennen -Jubilumssendung -Jubilumstreffer/S -Jubilar/EFPS -Juda -Juda/S -Jude/N -Judenfrage -Judenpogrome -Judentum/S -Judenverfolgung/P -Judo/S -Judoka -Judokurse/N -Judosport/S -Judoverband/S -Jugend -Jugendmter -Jugendabteilung -Jugendalter -Jugendamt/S -Jugendarbeit -Jugendauswahl -Jugendbeilage -Jugendberufsnot -Jugendbuchpreis -Jugendbund -Jugendchor -Jugenderinnerung/P -Jugendfreigabe -Jugendfreund/EFT -Jugendfhrer -Jugendfhrung -Jugendfunk/S -Jugendfunktionre -Jugendgemeinschaft -Jugendgericht/EPS -Jugendgruppe/N -Jugendheim/EPS -Jugendherberge -Jugendherbergsleitung -Jugendhilfe -Jugendhilfegesetz -Jugendhof -Jugendklub -Jugendkomitee -Jugendkonferenz -Jugendkreuzfahrt -Jugendkriminalitt -Jugendkunde -Jugendlichkeit -Jugendliebe/N -Jugendliteratur -Jugendmagazin/EPS -Jugendmeister/FNS -Jugendmeisterschaften -Jugendmusik -Jugendnationalspieler -Jugendorganisation/P -Jugendpfleger -Jugendprobleme -Jugendrat -Jugendrichter -Jugendschutzgesetz -Jugendsehnschte -Jugendsenat -Jugendsenator -Jugendsendung/P -Jugendstil -Jugendstrafanstalt -Jugendstrafe -Jugendstrafgefngnis/Qq -Jugendstrafkammer -Jugendstrafvollzug/S -Jugendstreich/ET -Jugendstudio -Jugendstunde -Jugendsnde/N -Jugendtanzklub -Jugendtrainer -Jugendtraum/STp -Jugendverbnde -Jugendverband/T -Jugendverbot -Jugendvertreter -Jugendverwaltung -Jugendwart -Jugendwerke/N -Jugendwerks -Jugendzeiten -Jugendzeitschrift/P -Jugoslawe/FN -Jugoslawien -Jul -Jul. -Juli/S -Julia/S -Juliusturm -Juliwoche -Jumbo/S -Jumbojet/S -Jumper/NS -Jungakademiker -Jungamerikaner -Jungbuerin -Jungbauern -Jungbergleute -Jungbrunnen/S -Jungenbeine -Jungens -Jungenschaft -Jungfer -Jungfernfahrt/P -Jungfernflug/STp -Jungfernrede/N -Jungfernreise -Jungfernschaft/P -Jungfilmer -Jungfrau/P -Jungfrauenquelle -Junggeselle/FN -Jungholz -Jungjger -Jungkfern -Junglehrer/N -Jungmdchengenerationen -Jungmdchenzimmer -Jungoffizieren -Jungschtzen -Jungsozialisten -Jungsportler/FNS -Jungtiere/N -Jungunternehmer -Jungvolk -Jungwhler/N -Juni/S -Junikfer -Junior/FPS -Juniorchef/FS -Juniorenmeister -Juniorenmeisterschaften -Juniorpartner -Junitagen -Juniwoche -Junker -Junkertum -Junktim -Jupiter -Jura/S -Jurastudent -Jurisdiktion/P -Jurisprudenz -Jurist/FP -Juristenausschuss/Tp -Juristenlatein -Juristenmonopol -Juror/P -Jury/S -Justierens -Justiermagnet -Justiermae/N -Justiermglichkeit/P -Justierung/P -Justitiar/ES -Justiz -Justizamtmann -Justizangestellte -Justizbeamte/NR -Justizbehrden -Justizgesetzgebung -Justizgewalt -Justiziar/ES -Justizirrtmer/N -Justizirrtum -Justizkontrollen -Justizminister/NS -Justizministerien -Justizministerium/S -Justizpalste/N -Justizpalast -Justizpersonen -Justizpflege -Justizpressestelle -Justizsekretr -Justizskandal -Justizvertreter -Justizverwaltung/P -Justizwesen/S -Jute -Juteanbaugebiet -Juteindustrie/N -Jutta/S -Juwel/PS -Juwelenauktion -Juwelengarnitur -Juwelier/EFPS -Juweliergeschft/S -Juwelierladen -Juwelierwaren -Jux/EPT -KBaud -KByte -KDE -KGB -KLM -KPD -KPJ -KP -KPdSU -KSZE -KWU -KZ -Kfer/NS -Kfig/EPS -Kfigwagen -Khne/N -Klber/N -Klberangebot -Klte -Klteanlage/N -Kltebestndigkeit -Klteeinbrche -Klteeinbruch/S -Klteerzeugung -Klteerzeugungsmaschine/N -Kltegefhl/EPS -Kltegrad/T -Klteleistung/P -Kltemaschine -Kltemischung/P -Kltemittel/S -Klteopfer -Klteperiode -Klteregler/NS -Klteschock/S -Klteschutzmittel/N -Kltetechnik/P -Kltetod -Kltewellen -Kmmerchen/S -Kmmerei -Kmmerer/NS -Kmpfer/FNS -Knguru/S -Kppchentrgern -Krnten -Krtchen/S -Kse/S -Ksegebck/PS -Kseglocke -Ksegrohandel/S -Ksehndler/FNS -Ksekuchen/S -Kseplatte/N -Ksepreise -Kserei/P -Kserinde/N -Kstchen/S -Ksten -Ktzchen/S -Kufe/NR -Kufer/FNS -Kuferkreis/EPT -Kufermarkt/Tp -Kuferschicht/P -Kuferstreik/ST -Kuferwiderstand -Kuflichkeit -Kuzchen/S -Kaaba -Kabarett/EPS -Kabarettist/FP -Kabarettprogramm -Kabel/S -Kabeladresse -Kabelanforderung/P -Kabelanschluss/Tp -Kabelart -Kabelausgang/Sp -Kabelauszahlung -Kabelbaum -Kabelbeschdigung -Kabelbestellung -Kabelbinder/N -Kabelbruch -Kabelbruchberwachung -Kabelbndel -Kabelbuchse -Kabeldampfer/S -Kabeldeckel -Kabeldefekt/EPST -Kabeldurchfhrung/P -Kabelenden -Kabelfehlersuchprogramms -Kabelfernsehen/S -Kabelfhrung -Kabelfuge -Kabelhalter -Kabelkonfektionierung -Kabellnge/N -Kabellitze -Kabelmetall -Kabelnetz/EPT -Kabelproblem/EPS -Kabelraum/STp -Kabelreduzierung -Kabelreparatur -Kabelrezepte -Kabelsalat -Kabelschchte -Kabelschaden -Kabelschwnze -Kabelseite -Kabelspezifikationen -Kabelstecker/N -Kabelstrecke -Kabelstcke -Kabelsystem/E -Kabeltausch -Kabeltrommel -Kabeltlle/N -Kabeltyp -Kabelverbinder/N -Kabelverbindung/P -Kabelverlauf/Sp -Kabelverlegung -Kabelvorschrift -Kabelwahl -Kabelweg/EST -Kabelwerke/S -Kabelzufhrung -Kabelzusammenstellung -Kabine/N -Kabinendach/S -Kabinengang -Kabinenpltze -Kabinentr -Kabinenwand -Kabinett/EPS -Kabinettchef -Kabinettsausschuss/Tp -Kabinettsberatung/P -Kabinettsbeschluss/Tp -Kabinettschef -Kabinettsentscheidung/P -Kabinettsgesprche -Kabinettskrise -Kabinettsliste -Kabinettsminister -Kabinettsmitgliedern -Kabinettsneubildung -Kabinettsneulingen -Kabinettsrang -Kabinettsregierung -Kabinettssitzung/P -Kabinettstreffen -Kabinettsumbau -Kabinettsumbildung -Kabinettsverhandlung/P -Kabrio -Kabriolett/S -Kabul -Kachel/N -Kachelbad -Kachelfassaden -Kachelfen -Kachelofen/S -Kadaver/NS -Kader/NS -Kaderchef/S -Kaderverband -Kadett/P -Kadi/S -Kaff/S -Kaffee/S -Kaffeeausfuhr/P -Kaffeeautomat/P -Kaffeebestnde -Kaffeebrse/N -Kaffeebohne/N -Kaffeeernte/N -Kaffeeexport/E -Kaffeegenuss/Tp -Kaffeegeschft/E -Kaffeehaus/Tp -Kaffeeimporteur -Kaffeejahr/T -Kaffeekanne/N -Kaffeeklatsch -Kaffeelffel/N -Kaffeelokal/E -Kaffeemaschine/N -Kaffeemhle/N -Kaffeenachmittag/E -Kaffeeplantagen -Kaffeeplausch -Kaffeepreis/EPT -Kaffeequote/N -Kaffeersterei -Kaffeesatz/T -Kaffeestunde/N -Kaffeetasse/N -Kaffeeverein -Kaffeeversand -Kafka/S -Kahlheit -Kahlkpfe/N -Kahlkopf/ST -Kahlschlag/Sp -Kahn/S -Kai/S -Kaimauer/N -Kairo/S -Kais/R -Kaischeck -Kaiser/FNS -Kaiserhaus/Tp -Kaiserhfe -Kaiserhof -Kaiserkrnung -Kaiserpfalz -Kaiserreich -Kaiserschnitt/EPS -Kaiserslautern -Kaiserstadt -Kaiserstandarte -Kaiserstil -Kaisertage -Kaiserthron -Kaisertmer -Kaisertum -Kaiserzeit -Kajte/N -Kakadu/S -Kakao/S -Kakaobohne/N -Kakaomarkt/T -Kakaonotierung/P -Kakaorepubliken -Kakerlak/PS -Kaktee/N -Kaktus -Kalabrien -Kalahari -Kalamitt/P -Kalauer -Kalb/ST -Kalbfelle -Kalbfleisch/T -Kalbsbraten/S -Kalbsschnitzel -Kaledonien -Kaleidoskop -Kalender/NS -Kalenderblatt -Kalenderbuch -Kalendergeschichte -Kalenderjahr/EPS -Kalendermonat/S -Kalendertag/EPS -Kalenderuhr/P -Kalenderwoche/N -Kali/S -Kaliaktien -Kaliber/S -Kalibrierens -Kalibrierung/P -Kalibrierwinkel -Kalif/P -Kalifornien/S -Kalifornier/F -Kaligewinnung -Kaliproduktion -Kalisalz -Kalisyndikat -Kalium -Kalk/ST -Kalkar -Kalkgebirge/S -Kalkgrube/N -Kalkseifenrand -Kalkstein -Kalksteinvorkommen -Kalkl/EPS -Kalkulation/P -Kalkulationschef -Kalkulationsfehler/N -Kalkulationsmethode/N -Kalkulationsprogramm/EPS -Kalkulator -Kalkutta -Kalkwerk -Kalligraph/Pf -Kalligraphie/Nf -Kalorie/N -Kaloriengehalt -Kalorientabelle -Kalorienverbrauch -Kaltbiegen/S -Kaltblter/S -Kaltbltigkeit -Kaltfront/P -Kaltgerte -Kaltgertekabel -Kaltgertesteckdose -Kaltgertestecker -Kaltlagerung -Kaltleim/S -Kaltleiter -Kaltluft -Kaltluftzufuhr -Kaltmiete -Kaltrucherei/P -Kaltstart -Kaltverformung/P -Kaltverpflegung -Kaltwasser -Kaltwasserheilkunde/N -Kaltwasserkuren -Kaltwelle/N -Kalvinist/FP -Kalzium/S -Kalziumchlorid/S -Kalziumkarbonat -Kamasutra -Kambodscha -Kamel/EPS -Kamelfllen -Kamelgarn/S -Kamelhaar/PS -Kamelhengst/EPT -Kamelkhe -Kamelkuh -Kamelreiten -Kamelreiter -Kamelstuten -Kameltreiber/N -Kamera/S -Kamerabereich -Kamerad/FP -Kameradschaft/P -Kameradschaftsabend/EPS -Kameradschaftsehen -Kameradschaftsgeist/T -Kamerageschft -Kameraindustrie -Kameraleute -Kameralinsen -Kameramnner -Kameramann -Kameraumsatz -Kamerun -Kamikaze -Kamille -Kamin/EPS -Kaminfeger/N -Kaminfeuer/S -Kaminfeuerung -Kaminkehrer -Kaminplausch -Kaminsims/EPT -Kaminzimmer -Kamm/RS -Kammerbezirk -Kammerdiener/S -Kammergericht/E -Kammerherr/N -Kammerjger/S -Kammerkonzert/ET -Kammermusik -Kammermusikstcke -Kammeroper -Kammerorchester/N -Kammerprsident -Kammersnger/FNS -Kammerspiele/S -Kammerzofe -Kammgarn/EPS -Kammgarngewebe/S -Kammmuschel/N -Kammrder -Kammrad/T -Kampagne/N -Kampf/ST -Kampfabschnitt/ET -Kampfabstimmung/P -Kampfansage/N -Kampfanweisung/P -Kampfanzug/Tp -Kampfauftrag/Tp -Kampfausrstung -Kampfbahnen -Kampfbegierde/N -Kampfblttchen -Kampfbund -Kampfdauer -Kampfeinheit/P -Kampferfahrung/P -Kampffhigkeit -Kampfflieger/S -Kampfflugzeug/ET -Kampffront -Kampffhrung -Kampfgas/EPT -Kampfgebiet/EPT -Kampfgefhrten -Kampfgeist/ST -Kampfgenosse/N -Kampfgeschwader -Kampfgewhl/S -Kampfgruppen -Kampfhandlung/P -Kampfhubschrauber -Kampfkandidatur -Kampfkommandant -Kampflied/R -Kampfmanahme/N -Kampfmglichkeit/P -Kampforganisation/P -Kampfort -Kampfpanzern -Kampfparole -Kampfpltze -Kampfplatz/T -Kampfposition -Kampfpreis/EPT -Kampfprogramm -Kampfrufe/NS -Kampfschluss/Tp -Kampfsituation -Kampfstrke -Kampfszene/N -Kampfttigkeit -Kampftag -Kampftaktik -Kampftechniken -Kampftruppe/N -Kampfverbnde -Kampfverband/T -Kampfwagen -Kampfwahl -Kampfwillen/S -Kampfzelle -Kampfziele/NS -Kampfzonen -Kanle/N -Kanaan -Kanada -Kanadier/FNS -Kanaille/N -Kanake/N -Kanal/S -Kanalabschnitt -Kanalanfuhr -Kanalarbeiter/FNS -Kanalbau -Kanalbschung -Kanalbrcke -Kanaldurchquerung -Kanalfhre -Kanalheringe -Kanalinsel/N -Kanalisation/P -Kanalisationsnetz/ET -Kanalisationsrohr/EPS -Kanalisierens -Kanalisierung/P -Kanalksten -Kanalnhe -Kanalnetz -Kanalnummer/N -Kanalnummernausgabe -Kanalschacht -Kanalschifffahrt -Kanalsohle -Kanalstrae -Kanalsystem/PS -Kanalverbindung/P -Kanalwhler/NS -Kanapee/S -Kanarienvgel/N -Kanarienvogel -Kandare -Kandidat/P -Kandidatenauswahl -Kandidatenlisten -Kandidatenturnier -Kandidatenvorschlag/STp -Kandidatur/P -Kandinsky/S -Kaninchen/S -Kaninchenfell/EPS -Kaninchenstall/Sp -Kanister/N -Kanne/N -Kannibale/N -Kannibalismus -Kanon/EPS -Kanonenboot/EPT -Kanonendonner -Kanonenfutter/S -Kanonenkugel/N -Kanonenfen -Kanonenofen/S -Kanonenrohr -Kanonenschuss/Tp -Kanonier/EPS -Kansas -Kant/S -Kantate/N -Kantenschutz -Kantenwinkel/N -Kantine/N -Kanton/S -Kantonspolizei -Kantorei -Kanu/S -Kanufahrer -Kanuregatta -Kanute/N -Kanuverband/T -Kanzel -Kanzelparagraph/Pf -Kanzlei/P -Kanzleibeamte/NR -Kanzleisprachen -Kanzler/N -Kanzlerkandidat -Kanzlerkandidatur -Kanzlernachfolge -Kanzlerwahl -Kanzlerwechsel -Kap/S -Kapaun/P -Kapazitt/P -Kapazittsausnutzung/P -Kapazittsbeschrnkung/P -Kapelle/N -Kapellmeister/S -Kaperkrieg -Kapern/JS -Kapillargef/EPT -Kapitlchen -Kapitn/EFPS -Kapitnleutnant -Kapitnsbrde -Kapitnswrde -Kapitalabfindung/P -Kapitalabwanderung -Kapitalangabe -Kapitalanlage/N -Kapitalanteil/EPS -Kapitalaufnahme -Kapitalaufstockung -Kapitalaufwand -Kapitalbasis -Kapitalbedarf/ES -Kapitalbeschaffung/P -Kapitalbilanz/P -Kapitalbildung -Kapitalbuchstabe/N -Kapitaleinlage -Kapitaleinsatz -Kapitalentwertung/P -Kapitalerhaltung -Kapitalerhaltungsvehikel -Kapitalerhhung/P -Kapitalertrag/Tp -Kapitalertragsteuern -Kapitalexplosion -Kapitalflucht -Kapitalgeber/S -Kapitalgesellschaft/P -Kapitalgewinne/N -Kapitalgewinns -Kapitalgewinnsteuern -Kapitalgter/N -Kapitalinvestition/P -Kapitalisierens -Kapitalisierung/P -Kapitalismus -Kapitalist/P -Kapitalkonten -Kapitalkonto/S -Kapitallebensversicherung -Kapitalmarkt/Tp -Kapitalmehrung -Kapitalmittel -Kapitalnachweises -Kapitalpumpe -Kapitalrckfhrung -Kapitalrcklauf/Sp -Kapitalrckzahlung -Kapitals -Kapitalsituationen -Kapitalsteuer/N -Kapitalstrom/S -Kapitaltransfer -Kapitalberschuss/Tp -Kapitalverbrechen/S -Kapitalverkehr/S -Kapitalverluste/N -Kapitalvermgen -Kapitalvervielfachung/P -Kapitalwert/T -Kapitalzinse/NS -Kapitel/NS -Kapitol -Kapitulation/P -Kaplan -Kappe/N -Kappendachbedsung -Kapsel/J -Kapselns -Kapselriss/EPT -Kapselung/P -Kapslung/P -Kapstadt -Kapuze/N -Kapuziner/NS -Karabiner/NS -Karaffe/N -Karajan/S -Karambolage/N -Karamell/EPS -Karaoke -Karat/ET -Karatekunst -Karatschi -Karawane/N -Karawanenstrae/N -Karbon -Karbonade -Karbonat/EPS -Karbonwlder -Kardinle/N -Kardinal/S -Kardinalbischfe/N -Kardinalbischof -Kardinalfehler/NS -Kardinalitt/P -Kardinalpunkte/NS -Kardinalskollegien -Kardinalskollegium -Kardinaltugend/P -Kardinalzahl/P -Kardiogramm/ST -Karenzzeit/P -Karfreitag/S -Karibik -Karies -Karikatur/P -Karikierens -Karikierung/P -Karin/S -Karl/S -Karla/S -Karlsbad -Karlsbader -Karlsruhe/R -Karneval/EPS -Karnevalsmaske -Karnickel/N -Karo/S -Karoknig -Karolinger -Karomuster/S -Karos/q -Karosserie/N -Karosseriebau/RS -Karosseriebauer/NS -Karotin/S -Karotte/N -Karottensaft -Karpaten -Karpfen/S -Karpfenteich/EPT -Karree/S -Karrengulen -Karrengaul/S -Karriere/N -Karrierefrau/P -Karrierist/P -Karstadt -Karsten/S -Karstgebirge -Karte/N -Kartei/P -Karteiksten -Karteikarte/N -Karteikasten/S -Karteischrnke/N -Karteischrank/ST -Kartell/EPS -Kartellabsprache -Kartellamt -Kartellbehrde/N -Kartellbildung -Kartellgesetz -Kartellrecht -Kartellverbote/NS -Kartellvorlage -Kartellwesen/S -Kartenausgabe/N -Kartenausgabestelle -Kartenbrief/EPS -Kartendrucker/N -Kartendruckwerk/ST -Kartengru/Tp -Kartenhaus/Tp -Kartenkunststck/EPS -Kartenlegen/S -Kartenlegerin -Kartenleselampe -Kartenmaterial -Kartenmengen -Kartenspiel/EPRS -Kartenspieler/FNS -Kartenstnder/N -Kartenstiche -Kartentasche/N -Kartentisch/EPT -Kartenverkauf/Sp -Kartenversion/P -Kartenvorverkauf/Sp -Kartenzeichens -Kartenzeichner/N -Karthager -Karthago -Karthum -Kartoffel/N -Kartoffelanbaus -Kartoffelangebot -Kartoffelbranntwein/EPT -Kartoffelbrei -Kartoffelernte -Kartoffelerntemaschine/N -Kartoffelimporte -Kartoffelkfer/N -Kartoffelkndel/NS -Kartoffelmehl -Kartoffelpreise -Kartoffelscken -Kartoffelsack -Kartoffelsalat -Kartoffelschlen/S -Kartoffelsuppe -Kartoffelzoll -Kartograph/Pf -Kartographie/f -Karton/S -Kartonfabrik -Karussell/EPS -Karwoche -Kaschmir -Kaschmirschal/S -Kaschmirwolle -Kaserne/N -Kasernenanlage -Kasernenarrest/EPT -Kasernendienst/EPT -Kasernenhfe/N -Kasernenhof/ST -Kasernenhofton/S -Kasino/S -Kaskade/N -Kaskadenbombenwrfen -Kaskadenbombenwurf/T -Kaskadenmotor/PS -Kaskadenschaltung/P -Kasko -Kaskoversicherung -Kasper -Kasperletheater -Kassageschft/EPS -Kassakurs/EPT -Kassalieferung/P -Kassamarkt/T -Kassapreis/EPT -Kassation/P -Kassationshfen -Kassationshof/S -Kasse/N -Kassel -Kasseler -Kassenrzte/FN -Kassenabschluss/Tp -Kassenanweisung -Kassenarzt/T -Kassenbeamte/N -Kassenbeitrgen -Kassenbeleg/EPST -Kassenbericht/EPST -Kassenbestnden -Kassenbestand/T -Kassenbilanzen -Kassenbcher -Kassenbuch/T -Kassendefizit/EPS -Kassendiebsthlen -Kassendiebstahl/S -Kasseneingngen -Kasseneinnahme -Kassenerfolg/EPT -Kassenfhrer/S -Kassengebude -Kassenhilfe -Kassenkredit/E -Kassenlade/N -Kassenladenansteuerung -Kassenladenausgang -Kassenlage -Kassenleiter/FNS -Kassenmagnet -Kassenmitglied -Kassenmitglieder -Kassenffner/S -Kassenobligation/P -Kassenpatient/P -Kassenpraxen -Kassenprobleme -Kassenprfung/P -Kassenquittung/P -Kassenraub -Kassenraum/STp -Kassenrekord/EPS -Kassenrevision/P -Kassenschalter/S -Kassenscheck/S -Kassenschlager/NS -Kassenschluss/Tp -Kassenschrnken -Kassenschrank/S -Kassenspeicher -Kassensteuerung -Kassensturz/T -Kassenterminal/S -Kassenwart/PS -Kassenzettel/S -Kasserolle/N -Kassette/N -Kassettendecke/N -Kassettenfernsehen/S -Kassettenfilm/ET -Kassettenrecorder/N -Kassettentonbandgert/EPS -Kassierer/FNS -Kassler/S -Kastagnette/N -Kastanie/N -Kastanienbaum/STp -Kastanienholz/T -Kastell/EPS -Kastellan/EPS -Kasten/S -Kastenaufbau -Kastenbrote/NS -Kastendrachen/S -Kastenform/P -Kastengeist/RT -Kastenkipper/NS -Kastenmbel -Kastenrahmen/S -Kastenwagen -Kastilien -Kastrat/P -Kastration/P -Kastrationskomplex/E -Kasus -Kasusendung/P -Katakombe/N -Katalog/EPST -Katalogblatt -Katalogpreis/EPT -Katalogzeichen -Katalonien -Katalysator/PS -Katamaran -Katanga -Katapult/EPST -Katapultflugzeuge/NS -Katapultstart/ST -Katarr/S -Katarrh/EPS -Katastrophe/N -Katastrophengebiet -Katastrophenstelle -Katastrophentag -Katastrophentheorie -Katastrophenzeiten -Katechismen -Katechismus -Kategorie/N -Kategorisierens -Kategorisierung/P -Kater/NS -Katharina/S -Katheder -Kathederblte/N -Kathederweisheit/P -Kathedrale/N -Kathedralenstadt -Kathete/N -Kathode/N -Kathodenrhren -Kathodenstrahlen -Kathodenverstrker/S -Katholik/P -Katholizismus -Kathrin/S -Katia/S -Katrin/S -Kattun/S -Kattundruck/ET -Kattunkleid/T -Kattunkleider -Katz/EP -Katzenauge/N -Katzenbuckel/NS -Katzenfell/EPS -Katzenjammer/S -Katzenklappe -Katzenmtter -Katzenmusik -Katzenmutter -Katzenpftchen -Katzentisch/EPS -Katzenverein -Kauderwelsch/S -Kaufabschluss/Tp -Kaufabsichten -Kaufangebot/E -Kaufanlass/Tp -Kaufanreiz -Kaufauftrag/Tp -Kaufbereitschaft -Kaufbrief/ET -Kaufempfehlung/P -Kaufentscheidung/P -Kaufentschluss/Tp -Kauffahrer/FNS -Kauffrau/P -Kaufgeld/RST -Kaufgelegenheit/P -Kaufgesprche -Kaufhalle/N -Kaufhaus/Tp -Kaufhausaktien -Kaufhauskonzern -Kaufhauswerte -Kaufherren -Kaufhof -Kaufinteressenten -Kaufkandidat/P -Kaufkraft -Kaufkraftparitt -Kaufkraftschwund/T -Kaufkredit -Kauflden -Kaufladen/S -Kaufleute/N -Kauflust -Kaufmnner -Kaufmann/S -Kaufmannshaus/Tp -Kaufmannslehrling/EPS -Kaufmiete/N -Kaufmoment -Kaufmotiv/EPS -Kaufobjekt/EPST -Kauforder -Kaufpreis/E -Kaufprogramm -Kaufs -Kaufschein -Kaufsignale/N -Kaufsttte -Kaufstrae/N -Kaufsumme -Kaufverpflichtung -Kaufvertrag/STp -Kaufvertragsentwurf -Kaufweigerung -Kaufwelle -Kaufwert/T -Kaufwut -Kaufzwang/Sp -Kaugummi/S -Kaukasus -Kaulquappe/N -Kausalbedingung/P -Kausalbegriff/EPT -Kausalgesetz/EPT -Kausalitt -Kausalkette/N -Kausalprinzip/S -Kausalstze/N -Kausalsatz/T -Kausalstrhne/N -Kausalzusammenhang/Sp -Kautabak -Kaution/P -Kautionsrckerstattung -Kautschuk/S -Kautschukforscher -Kautschukforschung -Kautschukherstellung -Kautschukmarkt/ST -Kautschukproduktion -Kautschuksynthese -Kautschukverbrauch -Kauz/T -Kavalier/EPS -Kavaliersdelikt/EPST -Kavallerie/N -Kavalleriepferd/EPT -Kavallerist/P -Kaverne/N -Kaviar/S -Kavitation/P -Kawasaki -Kb -Keckheit/P -Kegelabende -Kegelausschnitt -Kegelbahnen -Kegelbremse/N -Kegelclub -Kegelgetriebe/S -Kegelklub/S -Kegelkugel -Kegelkupplung -Kegelrder/N -Kegelrad/ST -Kegels -Kegelscheibe -Kegelspiel/EPS -Kegelsport/T -Kegelventil/PS -Kegler/NS -Kehle/N -Kehlkpfe/N -Kehlkopf -Kehlkopfentzndung -Kehlkopfoperation/P -Kehlkopfschnitt -Kehllaut/EPT -Kehrbesen/S -Kehrens -Kehricht -Kehrichteimer/S -Kehrichthaufen/S -Kehrichtschaufel/N -Kehrmaschine -Kehrreim/EPS -Kehrseite/N -Kehrtwende -Kehrtwendung/P -Kehrung/P -Kehrwert/EPT -Kehrwisch/ET -Keil/S -Keilabstze -Keilabsatz/T -Keiler -Keilflosse/N -Keilform -Keilhacke/N -Keilhose -Keilkissen -Keilriemen/S -Keilriemenscheiben -Keilschrift -Keilsto/Tp -Keilstck/EPS -Keim/S -Keimbahnzellen -Keimbildung/P -Keimdrse/N -Keimdrsenhormon/EPS -Keimfaden -Keimling/EPS -Keimscheibe -Keimtrger/NS -Keimzellen -Keks/EPT -Kelch/EPS -Kelchbltter/N -Kelchblatt/T -Kelchblten -Kelchglser/N -Kelchglas/T -Kelle/NR -Keller/S -Kellerei -Kellereingang -Kellerfenster/NS -Kellergaragen -Kellergeschoss/EPT -Kellergewlbe -Kellerhof -Kellerlager -Kellerlokal/PS -Kellermeister/S -Kellerraum/STp -Kellerschwimmbad -Kellerschwimmhalle -Kellertheater/S -Kellertreppe -Kellerverlies -Kellerwechseln -Kellerwechsels -Kellerwirtschaft -Kellerwohnung/P -Kellner/FNS -Kellnerkassen -Kellnerkassenterminal/S -Kellnernummer -Kellnerstift/S -Kellnerterminal -Kelten -Kelterei -Kelvin -Kempten -Kenia -Kennbuchstabe/N -Kenndaten -Kennedy/S -Kennenlernen/S -Kennens -Kenner/FNS -Kennerblick/S -Kennermiene/N -Kennfaden/S -Kennkarte/N -Kennkurve/N -Kennlinie/N -Kennmarke/N -Kennmelodie/N -Kennnummer/N -Kenntlichkeit -Kenntnis/q -Kenntnisnahme -Kenntnisstand -Kennung/P -Kennwert/EPS -Kennwort/EPT -Kennzahl/P -Kennzeichen/S -Kennzeichnens -Kennzeichnung/P -Kennziffer/N -Kent -Kentucky -Kepler/S -Keramik/PR -Keramikart -Keramiker/NS -Keramikfabrik -Keramikherstellung -Keramikindustrie -Kerbel/S -Kerbholz -Kerbngel/N -Kerbtier/EPT -Kerbwirkung -Kerker/N -Kerkerhaft/T -Kerkermauern -Kerkermeister/NS -Kerkerstrafe/N -Kerl/EPS -Kern/EMPS -Kernantrieb -Kernbereich/EPS -Kernbrennstoff/E -Kerneisen/S -Kernel/S -Kernelektron/PS -Kernelversion/P -Kernenergie -Kernenergieverwertung -Kernexplosion/P -Kernforscher/FNS -Kernforschung/P -Kernfrage/N -Kernfusion/P -Kerngebiet/EPST -Kerngedanke/N -Kerngehuse/N -Kernkomponente/N -Kernkraft -Kernkraftwerk/EPS -Kernkraftwerkprotest/ET -Kernladung -Kernladungszahl/P -Kernloch -Kernmodell/PS -Kernmunition -Kernobst/T -Kernphysik/R -Kernphysiker/FN -Kernproblem/EPS -Kernprogramm -Kernpunkt/EPT -Kernreaktion/P -Kernreaktor/PS -Kernschatten/S -Kernseife/N -Kernspaltung/P -Kernspaltungstechnologie -Kernsprengkrper -Kernsprengsatz/T -Kernstdte -Kernstck/EPST -Kerntechnologie -Kernteilchen/S -Kerntheorie -Kernthese/N -Kerntruppe/N -Kernwaffen -Kernwaffenarsenale -Kernwaffengesprch -Kernwaffentrger -Kernwaffenversuch/E -Kernzerfall/S -Kerosin -Kerosingeruch -Kerstin/S -Kerze/N -Kerzenhalter/N -Kerzenleuchter/NS -Kerzenlicht/RS -Kessel/NS -Kesselanlage/N -Kesseldruck/S -Kesselhaus/Tp -Kesselkohle -Kessellage -Kesselpauke/NR -Kesselpauker/S -Kesselraum/STp -Kesselschlacht -Kesselschmied/EPS -Kesselstein/EPS -Kesseltreiben/S -Kesselwagen/S -Ketchup/S -Ketschup/S -Kettchen/S -Kettenanhnger -Kettenantrieb/EPT -Kettenarmbnder/N -Kettenarmband/S -Kettenbewegung -Kettenbrief/EPST -Kettenbrcke/N -Ketteneinfluss/Tp -Kettenende -Kettenfahrzeug/EPS -Kettengebirge/N -Kettengerassel -Kettengeschft/EPST -Kettenglied/RT -Kettenhund/EPST -Kettenlnge -Kettenlast -Kettenmotor/PS -Kettenraucher/NS -Kettenreaktion/P -Kettenstich/EPS -Kettenstrfling/EPS -Ketzer/FNS -Ketzerei -Ketzergericht/EPST -Ketzerverbrennung/P -Ketzerverfolgung -Keuchhusten/S -Keule/N -Keulenhiebe/S -Keulenschlag/STp -Keuschheit -Keuschheitsgelbde/S -Keuschheitsgrtel/NS -Keyboard/S -Keynes -Kfz -Khakifrchte -Khakistoff -Khan/S -Khmer -Khomeini/S -Kibbuz/EP -Kibbuzim -Kibbuznik/S -Kicker -Kiebitz/EPT -Kiefer/N -Kieferbrchen -Kieferbruch/S -Kieferknochen/S -Kiefernadel -Kiefernsmlingen -Kiefernwald/T -Kieferwlder/N -Kieferwald/T -Kiel/EPRS -Kieler/FNS -Kielflosse/N -Kieljacht -Kiellinie/N -Kielraum/STp -Kielwasser -Kiemen -Kiemenatmung -Kiepe/N -Kies/T -Kiesbeton/S -Kiesel -Kieselalge -Kieselbden -Kieselboden/S -Kieselerden -Kieselsure -Kieselsuregehalt -Kieselstein/EPS -Kiesgrube/N -Kiessand/T -Kiesweg/EPT -Kieswerk -Kiew -Kilimandscharo -Killer -Killerprogramme -Kilo/S -Kilobyte -Kilogramm/EPS -Kilometer/N -Kilometergeld/T -Kilometergeldern -Kilometerpauschale -Kilometerpreis/E -Kilometerstand/T -Kilometerstein/EPT -Kilometerzhler/S -Kilometerzahl -Kiloware -Kilowatt/S -Kilowattstunde/N -Kimm/EP -Kind/HMRT -Kindbacken -Kindbett/PS -Kinderrzte/FN -Kinderabteilung/P -Kinderarbeiten -Kinderarzt/T -Kinderbecken -Kinderbeihilfen -Kinderbekleidung -Kinderbett -Kinderbreis -Kinderbcher/N -Kinderbuch/T -Kinderchen -Kinderchren -Kinderchor/S -Kinderdrfern -Kinderdorf/T -Kinderei/P -Kindereisenbahn/P -Kinderermigung/P -Kindererziehung -Kinderfahrkarte -Kinderfahrrder/N -Kinderfahrrad -Kinderfaust -Kinderfeindlichkeit -Kinderfest -Kinderfrulein/S -Kinderfrau -Kinderfreund/EPST -Kinderfrsorge -Kinderfrsorgern -Kinderfrsorgers -Kindergrten -Kindergrtner/FNS -Kindergarten/S -Kindergartenniveau -Kindergartenordnung -Kindergeld/R -Kindergeldgesetz -Kindergeldreform -Kindergeldregelung -Kindergeldsystems -Kindergeldzahlung/P -Kindergesicht/R -Kindergrab -Kindergrie/T -Kinderhand -Kinderheilkunde/N -Kinderheim/EPS -Kinderhilfe -Kinderhilfsfonds -Kinderhort/EPST -Kinderjahre/N -Kinderkleidung -Kinderklinik/P -Kinderkrankenhaus/Tp -Kinderkrankheit/P -Kinderkrippe -Kinderlhmung -Kinderland -Kinderlandverschickung -Kinderlein -Kinderlied/R -Kinderlosigkeit -Kindermdchen/S -Kindermrchen/S -Kindermens -Kindermrder/N -Kindermord/ET -Kindernhrmittel -Kindernahrung/P -Kindernarr -Kinderorganisation -Kinderparty/S -Kinderpflege/N -Kinderpflegeschule -Kinderpistole/N -Kinderpornographie -Kinderpsychologen -Kinderpsychologie -Kinderschreck/EPS -Kinderschuh/EPS -Kinderschwestern -Kindersegen -Kinderspiel -Kinderspielplatz -Kinderspielzeug/EPS -Kindersprache/N -Kindersterblichkeit/P -Kinderstube -Kindertagessttte/N -Kindertaufe -Kindertheaterstck -Kindervater -Kinderwsche -Kinderwagen/S -Kinderwiege -Kinderzahl -Kinderzimmer/NS -Kinderzulagen -Kindesabtreibung -Kindesalter -Kindesannahme/N -Kindesbeinen -Kindesentfhrung/P -Kindeskind/R -Kindesleiche -Kindesmisshandlung -Kindesmrder/FNS -Kindesschnder -Kindesstufe -Kindesvater -Kindlein/S -Kindmdchen -Kindstaufen -Kindsvater -Kinetik -Kinkerlitzchen -Kinn/S -Kinnbrte/N -Kinnbart -Kinnhaken/S -Kinnladen -Kino/S -Kinoausstellung -Kinobesitzern -Kinobesucher/NS -Kinobesucherin -Kinodirektor -Kinodramen -Kinokarten -Kinokassen -Kinoleinwand -Kinonarr -Kinoparkett -Kinoplakat -Kinoprogramm/S -Kinosaal -Kinotechnik -Kinotheaterbesitzer -Kinovorstellung -Kinowand -Kiosk/EPS -Kioto -Kippens -Kippfenster/NS -Kipphebel/NS -Kippkarren -Kippmoment/EPS -Kippschalter -Kippstellung -Kippung/P -Kippwagen -Kippzylinder -Kippzylindersteuerung -Kir/S -Kirche/N -Kirchenarbeit -Kirchenaustritt -Kirchenbesuch/EPRS -Kirchenbesucher/NS -Kirchenchren -Kirchenchor/S -Kirchendiener/NS -Kirchendisziplin -Kirchenfenstern -Kirchenfragen -Kirchenfrsten -Kirchengebude -Kirchengemeinde/N -Kirchengeschichte -Kirchengesetze/N -Kirchenglocken -Kircheninnere -Kirchenkampf -Kirchenkonferenz -Kirchenmitglieder -Kirchenmusik -Kirchenprsidenten -Kirchenprovinz -Kirchenrte -Kirchenruber -Kirchenrat/T -Kirchenrecht -Kirchenreport -Kirchenschiff/PS -Kirchenspaltung -Kirchensteuer/N -Kirchenstreit -Kirchentag/EPT -Kirchentagsprsident -Kirchentrme/N -Kirchenturm/S -Kirchenuhren -Kirchenvtern -Kirchenvater/S -Kirchenvertreter -Kirchenvolk/S -Kirchgnger/FNS -Kirchgang -Kirchgemeinde -Kirchhfe/N -Kirchhof/S -Kirchhoff/S -Kirchplatz -Kirchspiele -Kirchturm -Kirchturmuhr/P -Kirmes -Kirschbaum/STp -Kirschbaumblte -Kirschblte/N -Kirsche/N -Kirschkern/EPS -Kirschkuchen/S -Kirschsfte/N -Kirschsaft/T -Kirschwasser/S -Kissen/S -Kissenbezug/STp -Kissenschlachten -Kissinger/S -Kiste/N -Kistenverpackung -Kit/S -Kitsch/ST -Kitschroman/EPS -Kitt/SW -Kittchen -Kittel/NS -Kittelschrze -Kitzbock -Kitzler/NS -Klger/FNS -Klnge/N -Klranlage/N -Klrens -Klrung/P -Klageantrag/Sp -Klagebegrndung/P -Klagegrnden -Klagegrund/T -Klagelied/RT -Klagenfurt -Klageruf -Klages -Klageschrift -Klageweg/E -Klammerdioden -Klammerns -Klammerung/P -Klamotte/N -Klangbild -Klangereignis/Qq -Klangerzeugung -Klangfarbenspiel -Klangfetzen -Klangfundament -Klanggte -Klangraum/STp -Klangreinheit -Klangs -Klangvorstellung -Klangwolke -Klangzeichen -Klappbanken -Klappenbewegung/P -Klappenschrnke -Klappenzylindern -Klapperschlange/N -Klapperstorch -Klappkappe -Klappkappenfolge -Klappmesser -Klappsthle -Klarheit -Klarinette/N -Klarsichtfolie/N -Klarsichtigkeit -Klarstellens -Klarstellung/P -Klartext -Klassemann -Klassen -Klassenarbeit -Klassenaufsatz -Klassenausflug/Sp -Klassenbeste -Klassenbewusstsein/S -Klassenbildung -Klassenchronik -Klassendefinition/P -Klassenfahrt -Klassenfeind/T -Klassenforderung -Klassengegenstze -Klassenhierarchie/N -Klassenkmpfe/NR -Klassenkmpfer/NS -Klassenkamerad/P -Klassenkampf -Klassenkasse -Klassenkonflikt -Klassenlehrer/FNS -Klassennummer -Klassenraum/STp -Klassenrekord/E -Klassensieg/P -Klassensieger -Klassensprecher/S -Klassenstandpunkt -Klassenstruktur -Klassenstufe/N -Klassentreffen -Klassenunterschied/EPS -Klassenverband/T -Klassenziel -Klassenzimmer/S -Klassifikation/P -Klassifizierens -Klassifizierung/P -Klassik/R -Klassiker/NS -Klassikerverfilmung/P -Klassizismus -Klatschbase/N -Klatschblttern -Klatschblatt/T -Klatschereien -Klatsches -Klatschgeschichte -Klatschmohn -Klatschspalte/N -Klatschtanten -Klaus -Klausel/N -Klausulieren/JS -Klausur/P -Klausurarbeit -Klausurtagung/P -Klavier/EPS -Klavierabend -Klavierbaumeister -Klavierdeckel -Klavierinstrument/EPST -Klavierkonzert/EPST -Klavierlehrer/FNS -Klavierschule -Klaviersonaten -Klavierspielen -Klavierstcke/N -Klavierstunden -Klaviertrio -Klavierunterricht -Klavierwerk -Klebband -Klebearbeit -Klebebndern -Klebeband/T -Klebefilm -Klebeflche/N -Klebemode -Klebens -Klebepflaster/S -Kleber -Klebeschichten -Klebestreifen -Klebesysteme/N -Klebeverbindung -Klebfilm -Klebschicht -Klebstoff/EPT -Klebstoffstreifen -Klebstreifen/S -Klebung/P -Kleckser/NS -Klee/S -Kleebltter/N -Kleeblatt/T -Kleeernte/N -Kleid/JMRST -Kleiderbgel/S -Kleiderbrste/N -Kleidergeschft/EPS -Kleiderhaken/S -Kleiderindustrie -Kleidermagazin/EPS -Kleiderschrnke/N -Kleiderschrank/T -Kleidersorgen -Kleiderstnder/S -Kleiderstoffe -Kleiderstoffindustrie -Kleidsamkeit -Kleidung/P -Kleidungsstck/EPST -Kleie/N -Kleinaktie/N -Kleinaktionr/EPS -Kleinanlage -Kleinanlegern -Kleinanlegerverhalten -Kleinanzeige -Kleinarbeit/P -Kleinarmenien -Kleinauto -Kleinbank/P -Kleinbauten -Kleinbetrieb/EPS -Kleinbild -Kleinbildkamera -Kleinbrger/N -Kleinbrgertum -Kleinbuchstabe/N -Kleinbus/Qq -Kleinexistenzen -Kleinfirma -Kleinforderung/P -Kleinformat -Kleingrten -Kleingeld/T -Kleingewerbe/S -Kleingewinn -Kleingrundstck -Kleinhndler/FNS -Kleinhandel/S -Kleinhandelspreis/ET -Kleinhandelszone -Kleinheit -Kleinigkeit/P -Kleinindustrie -Kleininventar/S -Kleinkalibergewehr -Kleinkampf -Kleinkind/T -Kleinkinder -Kleinkrmern -Kleinkram -Kleinkredit -Kleinkreditkunde -Kleinkrieg -Kleinkche -Kleinkunst -Kleinlichkeit -Kleinmaterial -Kleinmengen -Kleinmbel -Kleinmnze -Kleinod/EPT -Kleinpchter -Kleinrad -Kleinschreibung/P -Kleinserie/N -Kleinspannung -Kleinsparer -Kleinspekulanten -Kleinstdte/N -Kleinstaat -Kleinstadt -Kleinstadtbank -Kleinstand -Kleinstbanken -Kleinstbarren -Kleinstbauern -Kleinstbetrieb/EPST -Kleinsteuerung/P -Kleinsystem -Kleinteil/EPS -Kleintier/EPST -Kleintierarten -Kleintierzucht -Kleinuhren -Kleinunternehmen/S -Kleinverbnden -Kleinverdiener/N -Kleinverkauf/Sp -Kleinvieh -Kleinwagen/S -Kleinwalsertal -Kleinwohnung/P -Kleist/S -Kleister/S -Klemmanschluss/Tp -Klemmenadapter -Klemmenanschluss/Tp -Klemmenanschlussplan -Klemmenbelegung -Klemmenblcke -Klemmendeckel -Klemmeneinheit/P -Klemmengruppe/N -Klemmenkasten/S -Klemmenleiste -Klemmenmodul/EPS -Klemmennummern -Klemmenplne/N -Klemmenplan -Klemmenplatine -Klemmenpotential -Klemmenpotenzial/EP -Klemmenzusammenstellung -Klemmleiste -Klemmleistenanschluss/Tp -Klemmmappe/N -Klemmschraube -Klemmstellung -Klemmteile -Klempner/FNS -Klempnerarbeit/P -Klempnerei -Klempnermeister -Kleriker/N -Klerus -Klette/N -Kletterei/P -Kletterer/N -Kletterpflanze/N -Kletterrose -Kletterschuhe/N -Kletterstange -Kletterwnde/N -Kletterwand -Klettverschluss/Tp -Kleve -Klicks -Klient/P -Klientel -Klima/S -Klimanderung/P -Klimaanlage -Klimabedingung/P -Klimaforschern -Klimagert -Klimaingenieur -Klimaplanung -Klimatechnik -Klimatisierung -Klimaverbesserung/P -Klimawandel -Klimawechsel -Klimmzug/STp -Klingeldraht -Klingelton -Klingelvorrichtung -Klingelzeichen -Klinik/P -Klinikneubaus -Klinkerbauweise -Klinkergebude -Klinkersteine -Klippe/NR -Klischee/S -Klischeevorstellung/P -Klitoris -Klckner -Klster/N -Kltze/MN -Klo/S -Klonens -Klonung/P -Klopapier -Kloppe -Klops -Klo/Tp -Klosett -Klosettbecken/S -Klosettdeckel/N -Klosettfrauen -Klosettpapier/S -Kloster/S -Klosterbrder/N -Klosterbruders -Klosterfrau/P -Klosterjger -Klosterkirche -Klosterkche -Klosterreste -Klosterruine -Klosterschulen -Klostersieg -Klotz -Klfte/N -Klub/S -Klubfarben -Klubgebude -Klubhaus/Tp -Klubjacken -Klubkampf -Klubleitung -Klubmitglieder/N -Klubmitgliedschaft -Klubraum/STp -Klubsessel/NS -Klubzimmer -Kluft/P -Klugheit -Klumpen/S -Knckebrot/EPS -Knste/N -Knuel/NS -Knabe/N -Knabenalter/S -Knabenbekleidung -Knabenchre -Knabenchor/S -Knabenfaust -Knabenschule/N -Knacker -Knackfrsche -Knacklaut/EPST -Knackpunkt/EPT -Knacks -Knackwrste/N -Knaller/N -Knallerei/P -Knalles -Knallfrschen -Knallfrosch/T -Knallgas/T -Knallkpfe/N -Knallkopf/T -Knalls -Knappheit -Knappsack -Knast/T -Knastbrder/N -Knastbruder -Knatterton -Knauf/Sp -Knaur/S -Knautschzone/N -Knebelns -Knebelung/P -Knebelvertrag/STp -Kneblung/P -Knecht/ST -Knechtschaft/P -Kneifzange/N -Kneipe/N -Kneipenwirt/EFP -Kneippanlage -Kneippkur -Kneippkuranstalt -Kneippkurbad -Kneippkurformen -Kneippkurhotel -Kneippsanatorium -Knesset -Knetmasse -Knetprozess/EPT -Knickerbocker -Knickkante/N -Knicks/T -Kniefall/Sp -Kniegelenk/EPS -Knies -Kniescheibe -Kniestrmpfe/N -Kniestrumpf -Kniffe -Kniffs -Knigge/S -Knilch -Knirps/P -Knchel/S -Knchelverletzung -Kndel -Knobelei -Knoblauch/S -Knoblauchzehen -Knochen/S -Knochenbrche -Knochenbruch/S -Knochenfunde -Knochengerst/EPT -Knochenmann -Knochenmark/S -Knochenmehl/S -Knochenring -Knochensplitter/NS -Knochentuberkulose -Knolle/N -Knopf/ST -Knopfdruck -Knopflcher/N -Knopfloch -Knopfrand -Knopfzelle/N -Knorpel/N -Knospe/N -Knossos -Knotenapplikation -Knotenast -Knotenausfall -Knoteneingang -Knoteneinheit/P -Knotenfirmware -Knotenfunktion/P -Knotenkette -Knotenklemme -Knotenmeldung/P -Knotenmodul -Knotenprogramm -Knotenpunkt/EPST -Knotenrechner/NS -Knotenrechnerapplikation -Knotenrechnergehuse/S -Knotenrechnerkassette -Knotenrechnernetz/T -Knotenressourcen -Knotens -Knotenseite -Knotenstruktur/P -Knox -Knller/NS -Knpfens -Knpfung/P -Knppels -Knppelstratege -Kche/FNR -Kcher/NS -Kder/NS -Kln/R -Klner/FNS -Klnischwassers -Klsch -Knig/EFPS -Kniggrtz -Kniginmutter -Knigreich/EPS -Knigsberg -Knigsfamilie -Knigsfriede -Knigshaus/Tp -Knigshtte -Knigskind -Knigskinder -Knigspaar -Knigspalast -Knigspokal -Knigspriestertum -Knigssee -Knigssohn -Knigsstuhl -Knigstchtern -Knigswall -Knigsweg/EPS -Knigswrde -Knnens -Knner/NS -Kpenick/S -Kpfchen -Krbe/MN -Krnchen/S -Krnen/JS -Krner/NS -Krper/NS -Krperbau/ST -Krperbehinderung -Krperbewegung/P -Krpererziehung -Krperfett -Krperflssigkeit/P -Krperformen -Krpergerchen -Krpergeruch/S -Krpergewebe/S -Krpergre/N -Krperhaltung -Krperkraft -Krperkreislauf/Sp -Krperkultur -Krperlichkeit -Krpermae -Krpermasse -Krpermuskulatur -Krperpflege -Krperpflegemitteln -Krperpuder -Krperreaktion/P -Krperschaft/P -Krperschall/S -Krperschallanalyse -Krperschule -Krperschulung -Krpersprache -Krperteil/EPS -Krpertemperatur -Krperverletzung/P -Kstlichkeit -Kter/NS -Koalition/P -Koalitionsabgeordneter -Koalitionsberatung/P -Koalitionsbildung/P -Koalitionsentwurf -Koalitionsfragen -Koalitionsgefhrten -Koalitionsgenossen -Koalitionsgesprch -Koalitionskabinett/S -Koalitionskandidat/P -Koalitionskrise -Koalitionsmehrheit -Koalitionsmitglieder -Koalitionsparteien -Koalitionspartner -Koalitionspartnerschaft -Koalitionspolitik -Koalitionsprogramm -Koalitionsprotokoll -Koalitionsregierung -Koalitionssitzung/P -Koalitionsstreit -Koalitionsverhandlung/P -Koaxialkabel/NS -Kobalt -Kobaltatome -Koblenz -Kobold/EPS -Kobra -Kochanlagen -Kochbrunnen/S -Kochbcher/N -Kochbuch/T -Kocher/NS -Kochereien -Kochkenntnis/q -Kochkessel -Kochknste -Kochkunst -Kochkurs/P -Kochlehrgang -Kochlffel/N -Kochnische/N -Kochplatten -Kochrezept/EPST -Kochs -Kochsalz -Kochsalzsteueraufkommen/S -Kochschinken -Kochschule -Kochtpfen -Kochtopf/T -Kochzeit -Kodex/EPT -Kodierens -Kodierstecker -Kodierung/P -Kodizes -Koeffizient/P -Koexistenz -Koffein/S -Koffer/NS -Koffergert/EPST -Koffergriff -Kofferindustrie -Kofferkammer -Kofferradio/S -Kofferradionationen -Kofferraum/STp -Kognak/S -Kognition/P -Kohrenz -Kohsion -Kohsionskraft -Kohl/EPS -Kohleabbaus -Kohleanteil -Kohleaugen -Kohlebasis -Kohlebedarf -Kohlebehrde -Kohlebereich -Kohlebergbau -Kohlebrocken -Kohlechemie -Kohlediagnose -Kohleeigenschaften -Kohleerkennung -Kohlefestigkeit -Kohleforschung -Kohlegebiet -Kohlehalden -Kohlekonzern -Kohlelnder/N -Kohleleistung -Kohlenaktien -Kohlenarten -Kohlenbeckens -Kohlenbergbau/S -Kohlendioxid/S -Kohleneimer -Kohlenfirma -Kohlenfrderbnder -Kohlenfrderung -Kohlengeschft/S -Kohlengrohandel -Kohlengruben -Kohlenhalden -Kohlenhandel/S -Kohlenhydrat/EPS -Kohlenindustrie -Kohlenkasten -Kohlenkeller -Kohlenlage -Kohlenlieferung/P -Kohlenmarkt/T -Kohlenmonoxid -Kohlenmonoxyd -Kohlenpreis/E -Kohlenpreiserhhung -Kohlenproduktion -Kohlenrevier/E -Kohlensure/N -Kohlenstaub -Kohlenstoff/EPS -Kohlensto/Tp -Kohlenverbraucher/S -Kohlenverladung/P -Kohlenvorrte -Kohlenwagen -Kohlenwand -Kohlenwasserstoff/EPS -Kohlenwerkstoffe -Kohlepapier/S -Kohleproduktion -Kohleschichtwiderstand -Kohlesektor -Kohlesensor/S -Kohlestift/EPST -Kohlesto/Tp -Kohlestreb -Kohlestck -Kohletransporte -Kohleverbrauchs -Kohlevorkommen -Kohlewirtschaft -Kohlezeichnung/P -Kohlrben -Kohorte/N -Koinzidenz -Koitus -Koje/N -Kojote/N -Kokain -Kokerei/P -Koketterie -Kokolores -Kokon/S -Kokosnuss/p -Koks/T -Koksfeinkohle -Koksfeuer -Koksgas -Kokshalden -Kokspreis -Koksproduktion -Kokswerke -Kolben/S -Kolbenbewegung/P -Kolbenboden -Kolbenecho -Kolbenflche -Kolbengeschwindigkeit -Kolbenhbe -Kolbenhub/S -Kolbenlnge -Kolbenposition/P -Kolbenraum/STp -Kolbenringe -Kolbenspeicher/N -Kolbenspeicherdruck -Kolbenstellung/P -Kolbenstellungsanzeige -Kolbenstellungsmessung -Kolbenstrecke -Kolbenweg -Kolbenwegschreiber -Kolchosarbeit -Kolchose/N -Kolchoseinkommen -Kolchosfelder/N -Kolchosland -Kolchosmitgliedern -Kolchosvorstand -Kolik/P -Kollaborateur/EFPS -Kollage/N -Kollaps/EPT -Kollege/FN -Kollegialitt -Kollegialorgan -Kollegien -Kollegium/S -Kollekte/N -Kollektion/P -Kollektivausstellung -Kollektivbewusstsein/S -Kollektiventscheidung/P -Kollektivfarmen -Kollektivgremien -Kollektivierens -Kollektivierung/P -Kollektivismus -Kollektivs -Kollektivschuld -Kollektivwirtschaft -Kollektor/P -Koller/S -Kollier/S -Kollision/P -Kollisionsabstnde -Kollisionsabstand/T -Kollisionserkennung -Kollisionsgefahr -Kollisionskurs/EPT -Kollisionsprogramm -Kollisionsschutz -Kollisionsschutzsystem -Kolloquien -Kolloquium/S -Kolofonium/S -Kolonialbeamter -Kolonialgebiet -Kolonialgeschichte -Kolonialhndel -Kolonialherrschaft -Kolonialisieren/JS -Kolonialismus -Kolonialist/P -Koloniallnder -Kolonialland -Kolonialmchte -Kolonialmacht -Kolonialpolitik -Kolonialprovinz -Kolonialverfassung -Kolonialverwaltung -Kolonialvlker -Kolonialzeit -Kolonie/N -Kolonisierens -Kolonisierung/P -Kolonist/P -Kolonne/N -Kolophonium/S -Kolorierens -Kolorierung/P -Kolorist/P -Kolorit/X -Koloskop/EPS -Koloskopie/N -Koloss/EPT -Kolosseum -Kolportage/N -Kolporteur/EPS -Kolumbien/S -Kolumne/N -Kolumnist/P -Kombattant/P -Kombi -Kombinat/EPS -Kombination/P -Kombinationsmglichkeit/P -Kombinationsproblem/EPS -Kombinationsreise -Kombinationswertung -Kombinatorik -Kombinierbarkeit -Kombiwagen -Kombizange -Kombse/N -Komet/P -Kometenbahn -Kometenfahrt -Kometenschweif -Komfort/S -Komfortausstattung -Komfortbungalow/S -Komforteigentumswohnung -Komfortvilla -Komik/R -Komiker/FNS -Komintern -Komitee/S -Komma/S -Kommandant/P -Kommandantur -Kommandeur/EFPS -Kommandeursposten -Kommanditgesellschaft/P -Kommanditist/P -Kommando/S -Kommandobrcke -Kommandobyte/S -Kommandogewalt -Kommandokapseln -Kommandoleitung -Kommandoposten -Kommandosache -Kommandostelle/N -Kommandostruktur -Kommandotrupp/S -Kommandoberfall -Kommandounternehmen -Kommandozeile/N -Kommandozentrale/N -Kommastelle/N -Kommata -Kommentar/EPS -Kommentarbuchstaben -Kommentarzeilen -Kommentator/S -Kommentierens -Kommentierung/P -Kommerz -Kommerzialisierens -Kommerzialisierung/P -Kommilitone/FN -Kommiss/T -Kommissar/EFPS -Kommissariat/EPS -Kommission/P -Kommissionr/EPS -Kommissionsbasis -Kommissionsbetrieb/EPST -Kommissionsmitglied/R -Kommissionssitzung/P -Kommissionsvorschlag/STp -Kommissionsvorsitzende/NR -Kommode/N -Kommunalabgaben -Kommunalanleihe -Kommunalbeamte -Kommunalfinanzen -Kommunalkredite -Kommunalparlamente -Kommunalpolitik/R -Kommunalsteuern -Kommunalverbnde -Kommunalwahl/P -Kommune/N -Kommunikation/P -Kommunikationsfhigkeit -Kommunikationskanle/N -Kommunikationsleitung/P -Kommunikationsmedien -Kommunikationsmittel/NS -Kommunikationsmglichkeit/P -Kommunikationsnetz/EPT -Kommunikationspartner -Kommunikationspin/S -Kommunikationsproblem/EPS -Kommunikationsprogramm -Kommunikationsrichtung -Kommunikationssatelliten -Kommunikationsschwierigkeit/P -Kommunikationssoftware -Kommunikationssystem/EPS -Kommunikationstechnik/P -Kommunikationsweg/EPS -Kommunikationswesen/S -Kommunikationszeit/P -Kommunikationszentrum -Kommunikator -Kommunikee/N -Kommunion/P -Kommuniqu/S -Kommunismus -Kommunist/FP -Kommunistenhass/T -Kommutativitt -Komdchen/S -Komdiant/FP -Komdie/N -Komdienbhne -Komdienvorlage -Kompagnon/S -Kompaktheit -Kompaktlsung/P -Kompaktstation/P -Kompaktsteuergerte -Kompanie/N -Kompaniefhrer -Kompaniegeschft/ES -Kompaniestrke -Komparativ/EPS -Komparator/S -Komparse/N -Komparserie/N -Kompass/ET -Kompatibilitt -Kompatibilittsgrnden -Kompensation/P -Kompensationsabkommen/S -Kompensationsangebot -Kompensationsbewegung -Kompensationsgeschft/EPST -Kompetenz/P -Kompetenzabgrenzung/P -Kompetenzausbung -Kompetenzbereich/EPST -Kompetenzerweiterung/P -Kompetenzstreit/S -Kompetenzbertragung -Kompetenzverteilung -Kompilation -Kompilator/PS -Komplement/EPS -Komplementbildung -Komplettausrstung -Komplettgerte/N -Komplettierens -Komplettierung/P -Komplettierungsauftrag/STp -Komplettpreis/EPT -Komplettsystem/EPS -Komplexitt -Komplexittsanalyse/N -Komplexittsuntersuchung/P -Komplikation/P -Kompliment/EPST -Komplize/N -Komplizierens -Kompliziertheit -Komplizierung/P -Komplott/S -Komponente/N -Komponist/P -Komponistenpreise -Komposita -Komposition/P -Kompositionsabend -Kompositionsauftrge -Kompositionsprinzip -Kompositionsweise -Kompositum -Kompost/EPT -Kompostierens -Kompostierung/P -Kompott -Kompresse/N -Kompression -Kompressionstechnik/P -Kompressor/S -Komprimierens -Komprimierung/P -Kompromiss/EPT -Kompromissbereitschaft -Kompromisslsung/P -Kompromissmodell/EPS -Kompromissplan/S -Kompromissvorschlag/Sp -Kompromittierens -Kompromittierung/P -Komsomolze/N -Komtesse/N -Konchoide/N -Kondensat/EPT -Kondensation -Kondensator/PS -Kondensmilch -Kondenswasser -Kondition/P -Konditional/EPS -Konditionalstze/N -Konditionstraining/S -Konditor/FPS -Konditorei/P -Konditormeister -Kondolation/P -Kondolenzbesuche/N -Kondolenzbrief/EPST -Konfekt/S -Konfektion/P -Konfektionr/EPS -Konfektionieren/JS -Konfektionsbetriebe -Konfektionshaus/Tp -Konfektionswaren -Konferenz/P -Konferenzbeginn/ST -Konferenzbeschluss/Tp -Konferenzende -Konferenzergebnis/Qq -Konferenzgebude/S -Konferenzgebiet -Konferenzkrise -Konferenzpartner -Konferenzphasen -Konferenzplan -Konferenzrahmen -Konferenzraum/STp -Konferenzsaal -Konferenzsprache -Konferenzsystem -Konferenztag -Konferenztermin -Konferenzvorschlag/STp -Konferenzzimmer -Konfession/P -Konfessionsschule/N -Konfetti -Konfettiwhrung/P -Konfident/P -Konfiguration/P -Konfigurationsbeispiel -Konfigurationsbild/RT -Konfigurationsdatei/P -Konfigurationsdaten -Konfigurationsfile/S -Konfigurationsfreiheit/P -Konfigurationsgerst -Konfigurationskommando -Konfigurationsparameter -Konfigurationsphase/N -Konfigurationstabelle/N -Konfigurierbarkeit -Konfigurierens -Konfigurierung/P -Konfirmand/FP -Konfirmation/P -Konfiserie -Konfiszierens -Konfiszierung/P -Konfitre/N -Konflikt/EPS -Konfliktaustragung -Konfliktbewltigung -Konflikterkennung -Konfliktfall/Sp -Konfliktgebiet -Konfliktgeladenheit -Konfliktlsung -Konfliktpdagogik -Konfliktpartei/P -Konfliktpotential/EPS -Konfliktpotenzial/EPS -Konfliktvermeidung -Konfluenz -Konformitt -Konfrontation/P -Konfrontierens -Konfrontierung/P -Konfusion/P -Konfuzianismus -Konfuzius -Konglomerat -Kongo -Kongolesen -Kongregation/P -Kongress/EPT -Kongressabgeordnete -Kongressausgabe -Kongressausschuss/Tp -Kongressbeschluss/Tp -Kongressbotschaft -Kongresserffnung -Kongresshalle/N -Kongresshotel -Kongresskreise/N -Kongressleitung -Kongressmehrheit -Kongressmitglieder -Kongresspalast -Kongressraum/STp -Kongresssaal/S -Kongressstadt -Kongressteilnehmer/FNS -Kongresswahlen -Kongresszentrum -Kongruenz -Konjugation/P -Konjunktion/P -Konjunktiv/EPS -Konjunktur -Konjunkturabschwchung/P -Konjunkturanstieg -Konjunkturauftrieb -Konjunkturausblick -Konjunkturausgleich -Konjunkturbelebung -Konjunkturbericht -Konjunkturberuhigung -Konjunkturboom -Konjunkturdmpfung -Konjunkturdebatte -Konjunkturforschung -Konjunkturgesetz -Konjunkturklima -Konjunkturprognosen -Konjunkturprogramm/EPS -Konjunkturrckgang -Konjunkturschwankung/P -Konjunktursicherung -Konjunkturverlauf/Sp -Konjunkturzyklus -Konkatenation -Konklave/NS -Konkordat/S -Konkretisierens -Konkretisierung/P -Konkubinat/EPS -Konkurrent/FP -Konkurrenz/P -Konkurrenzdruck/S -Konkurrenzfhigkeit/P -Konkurrenzfreiheit -Konkurrenzgeschft/EPS -Konkurrenzkmpfe/N -Konkurrenzkampf/ST -Konkurrenzmodell -Konkurrenzprodukt/EPST -Konkurrenzsituation/P -Konkurrenzverhltnis/Qq -Konkurs/EPT -Konkursantrag/STp -Konkurserklrung/P -Konkursmasse/N -Konkursordnung -Konkursverfahren/S -Konkursverwalter -Konnossement/EPST -Konnotation/P -Konquistador/P -Konrad/S -Konsens -Konsensbedarf/S -Konsensbildung -Konsensprinzip/S -Konsensverfahren/S -Konsequenz/P -Konservatorien -Konservatorium/S -Konserve/N -Konservenbchse/N -Konservendosen -Konservenfabrik/P -Konservenindustrie -Konservenmusik -Konservierens -Konservierung/P -Konservierungsmglichkeit/P -Konsistenz -Konsistenzprfung/P -Konsistorium -Konsole/N -Konsolidierens -Konsolidierung/P -Konsolidierungsperiode/N -Konsolidierungsphase/N -Konsolschnittstelle -Konsonant -Konsorten -Konsortialgeschft -Konsortialvertrag/STp -Konsortium/S -Konsortiumsmitglieder/N -Konsortiumstreffen/S -Konstantin/S -Konstantinopel -Konstantstromquelle/N -Konstanz -Konstellation/P -Konstituierens -Konstituierung/P -Konstitution/P -Konstrukt/EPST -Konstrukteur/EFPS -Konstruktion/P -Konstruktionsnderung/P -Konstruktionsabteilung/P -Konstruktionsbro/S -Konstruktionsentwrfe/N -Konstruktionserfahrung -Konstruktionsfehler/N -Konstruktionsidee/N -Konstruktionsmethode/N -Konstruktionsphase/N -Konstruktionspraxis -Konstruktionsprinzipien -Konstruktionsproblem/EPS -Konstruktionssle -Konstruktionsschritt/EPS -Konstruktionsteil/EPS -Konstruktionsvorgang/S -Konstruktionszeichnung/P -Konstruktionsziel/EPS -Konstruktor/PS -Konstruktorfunktion/P -Konsul/NS -Konsularbeamten -Konsularregierung -Konsularvertrag/STp -Konsulat/EPS -Konsulatsangestellte -Konsulatsgebude -Konsulkollegen -Konsultation/P -Konsultationsbesuch -Konsultationsgesprch/EPST -Konsultationsmechanismus -Konsultationstreffen -Konsultationsverfahren -Konsum/S -Konsumartikel -Konsumbedrfnis/Qq -Konsumdrang -Konsumelektronik -Konsument/P -Konsumentenbooms -Konsumentenkredit -Konsumfilm/S -Konsumfinanzierung -Konsumfirlefanz -Konsumforschung -Konsumgedanke -Konsumgenossenschaft/P -Konsumgesellschaft -Konsumgewohnheit/P -Konsumgter/N -Konsumgterboom -Konsumgtergebiet -Konsumgterpreise -Konsumgut -Konsumleben -Konsummasche -Konsumqualitten -Konsumrausch -Konsumschtigkeit -Konsumtaumel -Konsumverhalten -Konsumverzicht -Konsumweine -Konsumwelle -Konsumwelt -Kontakt/EPS -Kontaktadresse/N -Kontaktaufnahme -Kontaktbelegung -Kontaktbolzen -Kontaktbronze -Kontaktfhigkeit -Kontaktfeder -Kontaktflche -Kontaktfreude -Kontaktgesprch -Kontaktgte -Kontaktiermglichkeit/P -Kontaktierung -Kontaktkammern -Kontaktkrfte/N -Kontaktleuten -Kontaktlinse/N -Kontaktmann -Kontaktmeidung -Kontaktpaare -Kontaktperson -Kontaktschalen -Kontaktspannung -Kontaktsuche -Kontakttrger -Kontamination/P -Kontemplation/P -Konten -Kontenbltter -Kontenplne/N -Kontenplan/T -Kontenunterlagen -Konterangriff -Konterfei/S -Konterrevolutionr/EPS -Kontext/EPT -Kontextbedingung/P -Kontinent/EPS -Kontinentaldrift -Kontinentalsperre -Kontingent/EPS -Kontingentbeschrnkung/P -Kontingentierens -Kontingentierung/P -Kontinuitt -Kontinuum/S -Konto/S -Kontoauflsung -Kontoaufstellung -Kontoauszug/Sp -Kontoblatt/T -Kontobuch -Kontoerffnung -Kontoinhaber/NS -Kontoinhaberkollegen -Kontokorrent/EPS -Kontonummer/N -Kontor/S -Kontorraum/STp -Kontrabass/Tp -Kontrahent/P -Kontrakt/P -Kontraktion/P -Kontraktpreis/EPT -Kontrapunkt/S -Kontrast/EPTW -Kontrastprogramm -Kontrastschnitt -Kontrazeption -Kontrollaktion/P -Kontrollamt -Kontrollanzeige -Kontrollausdrucke -Kontrollausgabe -Kontrollausschuss/Tp -Kontrollbaracke -Kontrollbeamte/NR -Kontrollbedingung/P -Kontrollbehrde -Kontrollchef -Kontrollcode/S -Kontrolldarstellung -Kontrolldenken -Kontrolldienst -Kontrolle/N -Kontrolleinheit/P -Kontrolleinrichtung/P -Kontrolleur/EFPS -Kontrollfluss/Tp -Kontrollflussanalyse/N -Kontrollfrage -Kontrollfunktion/P -Kontrollgang/Sp -Kontrollgert/EPS -Kontrollgewalt -Kontrollgremien -Kontrollgruppen -Kontrollierbarkeit/P -Kontrollinstanz -Kontrollkapazitt -Kontrollkommission/P -Kontrolllampe -Kontrollmanahme/N -Kontrollmessung/P -Kontrollmglichkeit/P -Kontrollnetz -Kontrollorgan/E -Kontrollpraxis -Kontrollpunkt/EPST -Kontrollrat/ST -Kontrollraum/STp -Kontrollrechts -Kontrollschluss/Tp -Kontrollstation/P -Kontrollstelle/N -Kontrollstruktur/P -Kontrollsumme -Kontrollsystem/P -Kontrolltechnik/P -Kontrollzentrale/N -Kontrollzentren -Kontrollzentrum -Kontrollzweck/EPS -Kontur/P -Konvektion/P -Konvektionsstrme -Konvent/EPST -Konvention/P -Konventionalstrafe/N -Konventionalstrafgesetz -Konventsdelegierten -Konvergenz -Konversation/P -Konversationslexikon -Konversion/P -Konversionsbedingung/P -Konversionszeit/P -Konverter/NS -Konvertierens -Konvertierung/P -Konvertierungszeit/P -Konvoi/S -Konzentrat/EPS -Konzentration -Konzentrationsbewegung/P -Konzentrationslager/N -Konzentrationsschwche/N -Konzentrierens -Konzentrierung/P -Konzept/EPST -Konzeption/P -Konzern/EPS -Konzernabschluss/Tp -Konzernbelegschaft -Konzernbilanz -Konzernbildung -Konzernbosse -Konzernertrag/STp -Konzernforderung/P -Konzernfremde -Konzernfhrung -Konzerninteressen -Konzernleitung -Konzernpolitik -Konzernschaubilder -Konzernschulden -Konzernumsatz -Konzernvertreter -Konzert/EPST -Konzertbesucher -Konzertdienste -Konzertereignis/Qq -Konzertflgel -Konzertinstrument -Konzertmeister -Konzertpianistin -Konzertreihen -Konzertrepertoire -Konzertsle -Konzertsaal/T -Konzerttournee/N -Konzertverband -Konzession/P -Konzessionieren/JS -Konzessionsabgabe/N -Konzessionseigentmer -Konzessionserteilung -Konzessionsinhaber/FNS -Konzil/EPS -Konzilianz -Konzilsbeschluss/Tp -Konzilsdekret/T -Konzilsdiskussion/P -Konzilssitzung/P -Konzilstheologie -Konzipierens -Konzipierung/P -Kooperation/P -Kooperationsbemhung/P -Kooperationsbereitschaft -Kooperationspartner/NS -Kooperationsvertrag/STp -Koordinate/N -Koordinatenkonvention/P -Koordinatensystem/EPS -Koordinatentransformation/P -Koordinatenursprung/S -Koordinatenverschiebung/P -Koordinatenwert/EPST -Koordination -Koordinationsstelle/N -Koordinator -Koordinierens -Koordinierung/P -Koordinierungsbedarf/S -Koordinierungsgesprch/EPS -Koordinierungsstelle/N -Kopenhagen -Kopernikus -Kopf/ET -Kopfarbeiter/FNS -Kopfball/Sp -Kopfbedeckung -Kopfdruck -Kopfende/S -Kopfhaltung -Kopfhaut -Kopfhhe -Kopfhrer/S -Kopfkissen -Kopfkontrolle -Kopfkoordinate -Kopfleiste -Kopfmitte -Kopfmittelpunkt/S -Kopfnicken/S -Kopfnuss/p -Kopfpreis/EPT -Kopfputz -Kopfrechnen/S -Kopfsalat -Kopfschmerzen -Kopfschmuck -Kopfschtteln -Kopfschuss/Tp -Kopfsprung -Kopfstand -Kopfsteuer -Kopfteil/EPS -Kopftcher -Kopfunterkante -Kopfverband/T -Kopfverletzung/P -Kopfweh -Kopfwunden -Kopfzahl -Kopfzeile/N -Kopfzerbrechen -Kopie/N -Kopierer -Kopiergert -Kopierschutz/T -Kopiervorlage -Kopilot -Kopist/P -Koppel/J -Koppeleinheit/P -Koppelelemente -Koppelkapazitt -Koppelkomponenten -Koppelrelais -Koppelschlsser -Koppelungsfaktor -Koppelungsmglichkeit/P -Koppler -Koproduktion/P -Koralle/N -Korallenbnken -Korallenbank -Korallenfische -Korallenriffe/N -Koran -Korb/ST -Korbmacher -Kordel/N -Korea/S -Koreakrieg/S -Koreaner -Korinth/P -Korinther -Korkarten -Korkeiche -Korken/SW -Korkenknallen -Korkenzieher/NS -Korkmundstck -Korkplatten -Korn/S -Kornbranntwein -Kornbrennerei -Kornernte -Kornfeld/RT -Kornkammern -Kornmarkt/ST -Kornspeicher -Korollar/EPS -Korona -Korporation/P -Korps -Korpskommandeur -Korpus -Korrektheit -Korrektheitsbegriff/EPS -Korrektheitsbeweis/EPT -Korrektheitsnachweis/EPT -Korrektorat/EPST -Korrektur/P -Korrekturanmerkung/P -Korrekturfaktor -Korrekturlesen -Korrekturmglichkeit/P -Korrekturparameter -Korrekturversuche/N -Korrelat -Korrelation/P -Korrelationsanalyse/N -Korrelationsfeld -Korrelator/S -Korrespondent/FP -Korrespondentenbericht -Korrespondenz/P -Korrespondenzbank -Korridor/EPS -Korrigierbarkeit -Korrosion -Korrumpierens -Korrumpierung/P -Korruption -Korsarengeschichte -Korse/N -Korselett -Korsett/S -Korsettnher/FNS -Korsettstbe -Korso -Korvette/N -Korvettenkapitn -Kosak/P -Kosakenchor -Kosinus -Kosmetik/R -Kosmetika -Kosmetikbranche -Kosmetiker/FNS -Kosmetikgesellschaft -Kosmetiksalon/S -Kosmologe/N -Kosmologie -Kosmos -Kosmossatelliten -Kostbarkeit/P -Kostenabbau -Kostenanalyse -Kostenanstieg/S -Kostenanteil -Kostenarten -Kostenaufstellung -Kostenaufwand/T -Kostenausgleich -Kostenbelastung/P -Kostenberechnung -Kostenbeteiligung -Kostendeckungsgarantie -Kostendegression -Kostendifferenz -Kostendruck/S -Kostenelemente -Kostenerhhung/P -Kostenexplosion/P -Kostenfaktor -Kostenflut -Kostengefge -Kostengerechte -Kostengestaltung -Kostenkontrolle -Kostenkrise -Kostenlage -Kostenlawine/N -Kostenmanipulation/P -Kostenniveau -Kostenoptimierung -Kostenplan/S -Kostenpunkt/EPST -Kostenrahmen -Kostenrechnung -Kostenreduzierung -Kostenrisiko -Kostenrckgang -Kostenseite -Kostensenkung -Kostensituation/P -Kostensteigerung -Kostenstruktur -Kostenstrukturerhebung -Kostenbernahme -Kostenbertragung/P -Kostenvergleich -Kostenvoranschlag/Tp -Kostenvorteil/EPS -Kostgnger -Kostprobe/N -Kostm/EPS -Kostmentwrfe -Kostmfeste/N -Kostmierung/P -Kostmproduktion -Kostmstck -Kostmtyp -Kostmverleih -Kostmverleiher -Kot/SX -Kotelett/EPS -Kotflgel/NS -Kovarianz/P -Krfte/N -Krftebedarf -Krftegleichgewicht -Krftenachfrage -Krftepotential/EPS -Krftepotenzial/EPS -Krftespiel -Krftevergleich -Krfteverschiebung -Krfteverteilung -Krgen -Krhenfe/N -Krheninsel -Krhennest -Krmer -Krmerladen/S -Krmpfe/N -Krnkens -Krnkung/P -Krnze/N -Krtze/R -Krtzer/S -Kruter/N -Kruterkunde -Krutertee/S -Krabbe/N -Krach/S -Kraft -Kraftakt -Kraftanstrengung -Kraftaufwand -Kraftausdrcke/N -Kraftausdruck/S -Kraftausgabe -Kraftbrhe -Kraftentfaltung -Kraftfahrer -Kraftfahrzeug/EPS -Kraftfahrzeugbrief -Kraftfahrzeugfhrer -Kraftfahrzeugmarkt/ST -Kraftfahrzeugzulassung -Kraftfeld/S -Kraftfelder -Kraftprobe/N -Kraftrder/N -Kraftsensor/P -Kraftstation/P -Kraftstoff/EPS -Kraftstrme -Kraftstrom -Kraftstromanschluss/Tp -Kraftverkehr/S -Kraftverkehrsgesetz -Kraftversorgung -Kraftwagen -Kraftwagenhalle -Kraftwerk/EPS -Kragen/S -Krakau -Krakeeler/S -Kram/S -Krampf -Krampfadern -Kran/S -Krananlage/N -Kranbahn -Kranbau -Krankenanstalt -Krankenauto/S -Krankenbahren -Krankenbehandlung -Krankenbett/PST -Krankenfahrer -Krankengeld/T -Krankengelder -Krankengeschichte -Krankenhaus/Tp -Krankenhausbau -Krankenhausbedarf -Krankenhausbrand -Krankenhauskosten -Krankenhaustagegeld -Krankenhaustagegeldversicherung/P -Krankenhausverwaltung/P -Krankenkasse/N -Krankenkassenleitung -Krankenkost -Krankenlager/NS -Krankenpflege/R -Krankenpflegeberuf -Krankenpflegepersonal -Krankenschein -Krankenschwester/N -Krankentransporte -Krankenversicherung/P -Krankenversorgung -Krankenwagen -Krankenwagenfahrer -Krankenzimmer/NS -Krankheit/P -Krankheitsbild -Krankheitserreger/S -Krankheitsfall/Sp -Krankheitskeime -Krankheitskosten -Kranwagen -Kranz/T -Kranzniederlegung -Krater/NS -Kratzer/NS -Krauler -Kraut/T -Krautkrmer -Krautsuppe -Krawall/EPS -Krawallhorden -Krawatte/N -Krawattenfabrik -Kraxelei/P -Kreation/P -Kreativitt -Kreatur/P -Krebs/EPT -Krebsbehandlung -Krebsbekmpfung -Krebsbutter -Krebserkrankung -Krebserreger/S -Krebsfall/Sp -Krebsforschung -Krebsgang -Krebsgeschwlste -Krebsgeschwr/P -Krebsgeschwulst -Krebskrankheit -Krebsleiden -Krebsoperation/P -Krebssud -Krebstypen -Krebswachstum -Kredit/EPS -Kreditabkommen -Kreditabteilung/P -Kreditanalyse -Kreditangebot/S -Kreditanstalt/P -Kreditantrgen -Kreditaufnahme/N -Kreditausschuss/Tp -Kreditbank/P -Kreditbeanspruchung/P -Kreditbedingung/P -Kreditbeschrnkung/P -Kreditbetrag/STp -Kreditbetrgereien -Kreditblockade -Kreditbrief/EPS -Kreditbrgschaften -Krediteinrumung -Krediterleichterung/P -Kreditermchtigung -Krediterschleichung -Kreditexpansion -Kreditexplosion -Kreditfall/Sp -Kreditfristen -Kreditgarantien -Kreditgeber/S -Kreditgefge -Kreditgenossenschaft -Kreditgeschft/EPS -Kreditgewhrung -Kredithaie -Kredithilfe -Kreditinstitut/T -Kreditkufe/NR -Kreditkarte/N -Kreditkartenantrgen -Kreditkartengesellschaft/P -Kreditkartenorganisation/P -Kreditkauf/Sp -Kreditkunde -Kreditlimitierung -Kreditlinie -Kreditmarge -Kreditmarkt/STp -Kreditmglichkeit/P -Kreditnachfrage -Kreditnehmer/N -Kreditnehmerzahl -Kreditoren -Kreditorenliste -Kreditplanung -Kreditposten/S -Kreditprovision -Kreditrahmen -Kreditrisiken -Kreditrisiko/S -Kreditspielraum/STp -Kreditumsatz -Kreditverein -Kreditvergabe/N -Kreditverkauf/Sp -Kreditverkehr/S -Kreditversicherung -Kreditversorgung -Kreditverteuerung -Kreditvolumen/S -Kreditwesengesetze -Kreditwnsche -Kreditwrdigkeit -Kreditzinsen -Krefeld -Kreidekreis -Kreis/T -Kreisaal -Kreisabschnitt/EPS -Kreisausschuss/Tp -Kreisbahn/P -Kreisblatt/T -Kreisbgen -Kreisbogen/S -Kreisdelegierte/N -Kreisel/S -Kreiselkompass/ET -Kreisgericht -Kreiskasse -Kreislauf/STp -Kreislaufbeschwerden -Kreislauferkrankung/P -Kreislaufkrankheit/P -Kreislaufleiden -Kreislaufstrung/P -Kreisleiter -Kreislinie/N -Kreismittelpunkt -Kreissektor/S -Kreissparkasse -Kreissynoden -Kreisverkehr/S -Kreisvorsitz -Kreisvorstand -Kreiswettkampf -Krem/ES -Krematorium -Kreml -Kremlfhrern -Kremlpalast -Krempe/N -Krempel/S -Kreole/N -Krepp/S -Krepppapier/PS -Kresse -Kreta -Kreuz/JMRT -Kreuzberg -Kreuzer/NS -Kreuzergeschwader -Kreuzerkrieg -Kreuzfahrer -Kreuzfahrerheer -Kreuzfahrt -Kreuzfahrtendienst -Kreuzfahrtenprogramm/EPS -Kreuzfahrtschiff -Kreuzform -Kreuzgewlbe -Kreuzigens -Kreuzigung/P -Kreuzigungsbilder -Kreuzplatz -Kreuzprodukt/EPS -Kreuzritter -Kreuzschlitz -Kreuzschlitzschraube/N -Kreuzungspunkt/EPST -Kreuzverhr/EPS -Kreuzverweis/EPT -Kreuzwortrtsel/NS -Kreuzzug/STp -Kricket -Kriechwasser -Krieg/RST -Kriegervereins -Kriegerwitwe -Kriegsabenteuer/N -Kriegsakrobatik -Kriegsandenken -Kriegsanstrengung/P -Kriegsausbruch -Kriegsausweitung -Kriegsbeginn/S -Kriegsbeil -Kriegsbereit -Kriegsbild -Kriegsblindenheim -Kriegsbraut -Kriegsdienst -Kriegsdienstverweigerer -Kriegseintritt -Kriegseinwirkung/P -Kriegsende -Kriegsereignis/Qq -Kriegserfahrung/P -Kriegserklrung/P -Kriegserlebnis/Qq -Kriegsfall/E -Kriegsfilme -Kriegsflieger -Kriegsflotte -Kriegsfolgen -Kriegsfreiwillige -Kriegsfurcht -Kriegsfu/Tp -Kriegsgefangener -Kriegsgefangenschaft/P -Kriegsgert -Kriegsgericht/E -Kriegsgeschichte -Kriegsglck -Kriegshafen -Kriegsheld/P -Kriegshetzer -Kriegshinterbliebene -Kriegshysterie -Kriegsindustrie -Kriegsjahren -Kriegskabinett -Kriegskommunismus -Kriegskredite -Kriegskunst -Kriegslage -Kriegslist -Kriegsmarine -Kriegsmaschinerie -Kriegsminister -Kriegsministerium -Kriegsopfer -Kriegsopferversorgung -Kriegspfad -Kriegsphotos -Kriegsproduktion -Kriegspropaganda -Kriegspsychose -Kriegsrecht -Kriegsrohstoffwirtschaft -Kriegsschden -Kriegsschaupltzen -Kriegsschauplatz/T -Kriegsschiff/EPST -Kriegsschluss/Tp -Kriegsschuldfrage -Kriegssituationen -Kriegsstifter -Kriegstagebcher -Kriegstagebuch -Kriegstagen -Kriegstechnik -Kriegsteilnahme -Kriegsteilnehmer -Kriegstoten -Kriegstreiber -Kriegstrmmer -Kriegsverbrechen -Kriegsverbrecher -Kriegsverbndete -Kriegsverwstung -Kriegsveteranen -Kriegsvorbereitung/P -Kriegsvorlagen -Kriegswaisen -Kriegszeiten -Kriegszerstrung/P -Kriegszug/STp -Kriegszuschlag/STp -Kriegszustand -Krim -Krimi/S -Kriminalbeamte/NR -Kriminalchef/S -Kriminaldirektor -Kriminalfall/Sp -Kriminalfernsehspiel -Kriminalfilm/PS -Kriminalgericht -Kriminalhrspiel -Kriminalinspektor -Kriminalist/P -Kriminalitt -Kriminalkommissar -Kriminalkomdie -Kriminalobermeister -Kriminaloberrat -Kriminalpolizei -Kriminalrat -Kriminalroman -Kriminalserie -Kriminalstatistik -Kriminalstory/S -Kriminologie -Krimkrieg -Krimsekt -Krimskrams -Kripo -Kripobeamte/NR -Kripoobermeister -Krippe/N -Krise/N -Krisenbekmpfung -Krisenerfahrung -Krisenerklrung -Krisenerscheinung -Krisenfall/Sp -Krisengebiete/N -Krisenherde -Krisenhhepunkt -Krisenjahr/EPST -Krisenkonferenz -Krisenmanagement -Krisenmanver -Krisenpolitik -Krisenrededuell -Krisensituation/P -Krisenstab -Krisensymptome -Krisenzeichen -Krisenzeit/P -Krisenzuschlge -Krishna/S -Kristall/EPS -Kristallisation -Kristallisationspunkt -Kristallisieranlagen -Kristallsachen -Kristallstruktur -Kriterien -Kriterium/S -Kritik/PR -Kritiker/FNS -Kritikerpreis/EPT -Kritikpreis/EPT -Kritikpunkt/EPST -Kritzelbilder -Kritzelei/P -Krnens -Krnung/P -Krnungsmesse -Krpfe/N -Krte/N -Kroaten -Kroatien/S -Krokodil/EPS -Kronanwalt -Krone/N -Kronengewlbe -Kronjuwelen -Kronkolonie -Kronlnder -Kronleuchter -Kronprinzen -Kronprinzessin -Kronzeuge/N -Kropf/ST -Krcke/N -Krckstock/S -Krge/NR -Krger/S -Krgerrand/S -Krglein/S -Krmchen/S -Krmel/S -Krmmens -Krmmung/P -Krppel/NS -Krppelkiefern -Krug/STp -Krume/N -Krummsbel -Kruste/N -Krustentier -Kruzifix/EPT -Kryptographie -Kbel/N -Kche/N -Kchenabflle/N -Kchenarbeiten -Kchenchef/S -Kchendrucker -Kchenfenster -Kchenferndrucker -Kchengerte/N -Kchenmesser -Kchenpersonal -Kchenschabe/N -Kchentisch -Kgelchen/S -Khe/N -Khlanlage/N -Khlblech/E -Khlens -Khlerhaube -Khlflche -Khlhallen -Khlhaus/Tp -Khlkrper/S -Khlmittel -Khlrippen -Khlscheiben -Khlschiffe -Khlschrnke/N -Khlschrank/S -Khlsystem -Khltruhe -Khlung/P -Khlwasser/S -Khnheit -Kken/S -Kmmel/S -Kmmerdasein -Knder -Kndigens -Kndigung/P -Kndigungsabsicht/P -Kndigungsbriefe -Kndigungsdauer/N -Kndigungsfrist/P -Kndigungsgesuch -Kndigungsgrnden -Kndigungsgrund/T -Kndigungsklausel -Kndigungsmglichkeit/P -Kndigungsrecht/S -Kndigungsschreiben/S -Kndigungsschutz -Kndigungswelle -Kndigungszeit -Knste/N -Knstler/FNS -Knstlerbund -Knstlergilde -Knstlerhaus/Tp -Knstlerhilfe -Knstlerkreisen -Knstlerlaufbahn/P -Knstlerlaune/N -Knstlerlokal -Knstlernamen -Knstlerpaar -Knstlerpech -Knstlerschaft -Knstlerschau -Knstlertum/S -Krbis/Qq -Krschner/FNS -Krzel/NS -Krzens -Krzung/P -Krzungsbemhung/P -Krzungsklausel -Krzungsmglichkeit/P -Krzungsvorschlag/STp -Krzungswnsche/N -Ksschen/S -Kste/NR -Kstenartillerie -Kstenbetrieb -Kstendampfer -Kstenfahrer -Kstenfahrt -Kstenfischerei -Kstengebiet/E -Kstengewsser -Kstenkolonie -Kstenlnder -Kstenlufer -Kstenmarkt -Kstenmotorschiff -Kstennhe -Kstenort/EPST -Kstenschelf/S -Kstenschiffe/NR -Kstenschiffer/NS -Kstenschifffahrt/P -Kstenschutz -Kstenstrecke -Kstenstreifen -Kstenstrich -Kstenwacht -Kstenwachtboot -Kster/NS -Kuba/S -Kubakrise -Kubaner/FNS -Kubareport -Kubazucker -Kuben -Kubikkilometern -Kubikmeter/N -Kubikwurzeln -Kubikzentimeter/N -Kubismus -Kubus -Kuchen/S -Kuchenplatte/N -Kuchenstck/EPS -Kuckuck -Kuckucksei -Kuckucksuhr -Kufe/N -Kugel -Kugelbehlter -Kugelfang -Kugelform -Kugelgelenk -Kugellager -Kugellagerfabriken -Kugellagerindustrie -Kugellagertyp -Kugelpatrone -Kugelprojektion/P -Kugelrasten -Kugelschreiber/N -Kugelstoer/FNS -Kugelwelle -Kuh -Kuhfladen -Kuhglocken -Kuhhalter -Kuhstall/Sp -Kuhweide -Kulanz -Kuli/S -Kulis/q -Kulissenlicht -Kulleraugen -Kult/EPST -Kultanlagen -Kultgerte -Kultsttten -Kultur/P -Kulturabkommen -Kulturausschuss/Tp -Kulturaustausch/T -Kulturbanause -Kulturbesitz -Kulturbewusstsein -Kulturbro -Kulturdebatte -Kulturdienst -Kulturdirektoren -Kulturetat -Kulturfeinde -Kulturfilme -Kulturfilmzone/N -Kulturfrderung -Kulturforum -Kulturfunktionr/EPS -Kulturgruppe -Kulturgter -Kulturhoheit -Kulturinstitut/E -Kulturklima -Kulturkonferenz -Kulturkreis/EPT -Kulturlnder -Kulturlandschaft -Kulturleistung/P -Kulturmenschen -Kulturmenschheit -Kulturminister/S -Kulturorchester -Kulturpessimismus -Kulturpolitiker -Kulturpropaganda -Kulturraum/STp -Kulturreferent -Kulturring -Kultursprachen -Kulturzentrum/S -Kultusminister -Kultusministerium/S -Kummer/S -Kumpan/EFPS -Kumpel/NS -Kumulation -Kumulierens -Kumulierung/P -Kunde/FN -Kundenadresse -Kundenanfragen -Kundenauftrag/STp -Kundenberater/S -Kundenberatung -Kundenbesuch/PS -Kundenbetreuung -Kundendaten -Kundendienst/EPT -Kundendienstvertrag/STp -Kundeneinweisung -Kundenfirma -Kundengelder -Kundenkartei/P -Kundenkontakt/E -Kundenliste/N -Kundenlsung/P -Kundennachfrage -Kundenschlange -Kundenservice -Kundensoftware -Kundenspezifikationen -Kundenstatistik -Kundensuche -Kundenwechsel -Kundenwnsche/N -Kundenwunsch/T -Kundenzulauf/Sp -Kundgeben/JS -Kundmachen/JS -Kundschaft/P -Kunibert/S -Kunst -Kunstakademie/N -Kunstarbeit -Kunstausbung -Kunstbegriff/T -Kunstbesitz -Kunstbchern -Kunstdrucke -Kunstdnger -Kunstfrderung -Kunstgalerien -Kunstgegenstnde -Kunstgeschichte -Kunstgriff/EPS -Kunsthalle/N -Kunsthandwerk -Kunstharz/E -Kunsthaus/Tp -Kunsthonig -Kunstinteresse -Kunstleder/S -Kunstmaler -Kunstmethoden -Kunstmuseum -Kunstorgan -Kunstpause/N -Kunstpreise -Kunstraub -Kunstrichtung/P -Kunstsammler -Kunstsammlung/P -Kunstschtzen -Kunstschule/N -Kunstseide -Kunstsprache -Kunstspringen -Kunststtte -Kunststoff/EPT -Kunststoffbeschichtung -Kunststoffblumen -Kunststoffbgel -Kunststoffchemie -Kunststofffabrik -Kunststofffolie/N -Kunststofffront -Kunststoffgehuse -Kunststoffgleiter -Kunststoffindustrie -Kunststoffrumpf -Kunststoffseiten -Kunststoffseitenteil -Kunststoffteile -Kunststoffwalze -Kunststck/EPS -Kunststudenten -Kunstszene -Kunstturner/FNS -Kunstverein -Kunstwelt -Kunstwerk/EPS -Kunstzentren -Kunz -Kupee -Kupfer/S -Kupferarbeiter/FNS -Kupferdach -Kupferdraht -Kupfererze -Kupferflche -Kupferfrderung -Kupfergegenstnde -Kupfergraben -Kupfermine -Kupfermnzen -Kupferpreis/EPT -Kupferstecher -Kupon/S -Kuppe/N -Kuppel/J -Kuppelei -Kuppelns -Kupplungsflansch -Kupplungskasten -Kupplungssteuerung -Kupplungssteuerungsgert/EPST -Kur/S -Kuramt -Kuranlagen -Kuranstalt -Kuratorium -Kurbad -Kurbel -Kurbelwelle/N -Kurdamen -Kurde/N -Kurdenaufstand -Kurdenkrieg -Kurdirektor/PS -Kurfrst/P -Kurfrstendamm -Kurgsten -Kurgarten -Kurgast/T -Kurgemeinde -Kurhalle -Kurhaus/Tp -Kurheimen -Kurhotel/S -Kurie/R -Kurier/FS -Kurierbusiness -Kurierdienst/E -Kurierfirma -Kurierfirmen -Kuriosittensammler/NS -Kuriosum -Kurkonzerte -Kurlandschaft -Kurort/EPST -Kurpark/S -Kurpromenade -Kurprospekt -Kurs/EPT -Kursnderung/P -Kursaal -Kursanhebung/P -Kursanpassung/P -Kursanstieg -Kursbasis -Kursbesserung/P -Kursbewegung -Kursbuch -Kursdifferenz/P -Kurseinbrche/N -Kurseinbuen -Kursentwicklung -Kurserhhung/P -Kurserholung/P -Kursexplosion/P -Kursfestsetzung -Kursgeschehen -Kursgewinne/N -Kursgewinnverhltnis/Qq -Kursivschrift -Kurskorrekturen -Kursniveau/S -Kursor -Kursorposition -Kursortasten -Kursreduzierung -Kursrisiko/S -Kursrckgang -Kursschwankungen -Kurssprnge -Kursstand -Kurssteigerung/P -Kursstrze -Kurssturz -Kurstadt -Kursus -Kursverdoppelung -Kursverfall/S -Kursverlauf/Sp -Kursverlust/E -Kursvorteil -Kurswagen -Kurswert -Kurtheater -Kurtisane/N -Kurts -Kurvenfahrt -Kurvenform/P -Kurverein -Kurverwaltung/P -Kurzanfrage/N -Kurzanleitung -Kurzbedienungsanleitung/P -Kurzbericht/EPS -Kurzbeschreibung/P -Kurzbezeichnung/P -Kurzdarstellung/P -Kurzdebatte -Kurzdokumentation/P -Kurzeit -Kurzentrum -Kurzfassung/P -Kurzfilmen -Kurzform/P -Kurzgeschichte/N -Kurzkommentar/EPS -Kurzname/N -Kurzpartien -Kurzpredigten -Kurzschlieens -Kurzschluss/Tp -Kurzschlussadapter -Kurzschlusserkennung -Kurzschlussstrme -Kurzschreibweise/N -Kurzschuljahren -Kurzsichtigkeit -Kurzvortrag/STp -Kurzwelle/N -Kurzzeitbetrieb -Kurzzeitdenkern -Kusine/N -Kuss/T -Kusshand -Kutsche/NR -Kutscher/NS -Kuvert/S -Kuwait -Kybernetik/R -Kybernetiker/NS -LAN -LANs -LCD -LCR -LDAP -LED -LEDs -LSD -LSI -LZW -Lcherlichkeit/P -Lden -Lhmens -Lhmung/P -Lhmungserscheinung/P -Lmmer/N -Lmpchen/S -Lnder/GN -Lnderbasis -Lnderebene -Lndereien -Lndergrenzen -Lnderhauptstdte -Lnderjuristen -Lnderkmpfe -Lnderkammer -Lnderkontingente -Lnderkunde -Lndermannschaft -Lndern/GW -Lnderparlament/E -Lndersache -Lnderseite -Lnderspiegel -Lnderstudien -Lndertreffen -Lnderturnier -Lndervertretung/P -Lndler -Lnge/N -Lngeninformation/P -Lngenmesssensor/S -Lngenmesssystem/S -Lngenmessung -Lngenrekord -Lngsregler -Lngsreglernetzteile/N -Lngsrichtung -Lngstransistor/S -Lrche/N -Lrm/S -Lrmentwicklung -Lrmgrenze -Lrmklage -Lrmsteuer -Lssigkeit -Lsterns -Lsterung/P -Lufe/NR -Lufen -Lufer/FNS -Luse/N -Luterns -Luterung/P -LaTeX -Labens -Labor/EPS -Laborant/P -Laborarbeit/P -Laboratorien -Laboratorium -Laborbedingung/P -Laborbetrieb -Laboreinheit/P -Laborflche/N -Laborleiter -Labornetzteil -Laborsystem -Laboruntersuchung/P -Labourfraktion -Labrador -Labung/P -Labyrinth/EPST -Lachens -Lacher/NS -Lacherfolg -Lachs/EPT -Lachsalve/N -Lachseier -Lack/EPST -Lackbeteiligung/P -Lackfabrik -Lackfarben -Lackierarbeiten -Lackierauftrag/STp -Lackierens -Lackierung/P -Lackierungskosten -Lackindustrie -Lackledermntel -Lackschicht/P -Lackschwarz -Lacoste -Ladbarkeit -Ladeaufgabe -Ladeautomatik -Ladediskette/N -Ladeeinrichtung -Ladeendspannung -Ladefile/S -Ladeflche -Ladegert/E -Ladegut -Ladehemmung -Ladekontrollanzeige -Ladeluken -Ladenbesitzer -Ladenbetrieb -Ladenflche -Ladenflucht -Ladengeschft/EPS -Ladenhter/N -Ladeninhaber/S -Ladenkasse/N -Ladenkassenmagnet -Ladenkette/N -Ladenffner -Ladenffnungsmagnet/T -Ladenpreis/EPT -Ladens -Ladenschild/T -Ladenschilder -Ladenschluss/Tp -Ladenschlusszeiten -Ladenstrae/N -Ladentisch/EPT -Ladenverkauf/Sp -Ladenzentrum -Ladeoperation/P -Ladeprogramm/EPS -Ladeprozessor/PS -Lader -Laderampe/N -Laderaum/STp -Ladeschaltung -Ladeschaufel -Ladesoftware -Ladestation/P -Ladestrmen -Ladestromimpulse -Ladetisch/T -Ladeumgebung -Ladevorgang/Sp -Ladezustand -Ladung/P -Ladungsangebot -Ladungsfhigkeit -Ladungsfluss/Tp -Ladungsmengen -Ladungstrger/NS -Lady/S -Lafette/N -Lafettenkopf -Lage/GR -Lageberechnung -Lagebeurteilung/P -Lagegesprch/EPS -Lagekontrolle/N -Lagenstaffel -Lageplne/N -Lageplan/ST -Lager/JS -Lagerabbau -Lagerauffllung -Lagerauflsung -Lagerbestnde/N -Lagerbestand -Lagerbuch -Lagerfeuerromantik -Lagerflche -Lagerfhrung -Lagergebude -Lagergehuse/S -Lagergeschft/EPS -Lagerhaltung -Lagerhaus/Tp -Lagerhaustr -Lagerist -Lagerkeller -Lagerleben -Lagerliste/N -Lagermaterialien -Lagermengen -Lagerns -Lagernummer -Lagerpltze -Lagerplatzgelnde -Lagerraum/STp -Lagerrisiko -Lagerscheine -Lagersituation -Lagersttten -Lagerstttenhhe -Lagertank/S -Lagertemperatur -Lagerung/P -Lagerverwalter -Lagerverwaltung -Lagerviertel -Lagerzapfen/S -Lagerzeitung -Lagesensoren -Lagevermessung -Lageverschiebung/P -Lago/S -Lagune/N -Lahr -Laib/EST -Laie/N -Laienbrder -Laienkunst -Laienmeinung -Laienpldoyer -Laienprediger -Laienpublikum -Laientreffen/S -Laientum -Lakai/P -Laken/S -Lakonie/N -Lakritze/N -Lama/S -Lamborghini -Lamee -Lamelle/N -Lametta -Lamm/ST -Lammfellen -Lampe/N -Lam/S -Lancaster -Land/JT -Landarbeiter/FNS -Landarzt/T -Landau -Landausflug/Sp -Landbeleihung/P -Landbesitzer -Landbetrieb -Landbewohnern -Landbutter -Landebahn/P -Landeerlaubnis/q -Landehilfe -Landemanver -Landephase -Landepltzen -Landeplan -Landerziehungsheim -Landesmter/N -Landesamt/T -Landesanwalt -Landesarbeitsamt -Landesbausparkassen -Landesbehrden -Landesbevlkerung -Landesbezeichnung -Landesbezirk/EPS -Landesbischof -Landesbruche/N -Landescup -Landesdirektor -Landesetat/S -Landesfarben -Landesforum -Landesfrsten -Landesgesetz -Landesgrenze/N -Landesgruppen -Landeshauptstdte -Landeshaushalt -Landesinnere/N -Landesinnern -Landesinteresse/N -Landeskabinett -Landeskasse -Landeskenner -Landeskriminalamt -Landeskrone -Landesleitung -Landesmeisterschaft/P -Landesmittel/N -Landesmuseum -Landesoberbergamtes -Landespartei -Landesparteitag -Landespflege -Landesplanung -Landespolitiker -Landesprobleme -Landesregierung -Landesrekord/E -Landesrichtlinien -Landesschatzmeister -Landesschau -Landesschulrat -Landessender/S -Landessprache/N -Landessubventionierung -Landesteil/EPS -Landestreffen -Landesvater -Landesverrter -Landesverrat -Landesversammlung/P -Landesversorgungsamt/S -Landesverteidigung/P -Landesvertretern -Landesvertretung/P -Landesvorstnden -Landesvorstand/T -Landesvorwahlen -Landeswahlgesetz -Landeswappen -Landeszeiten -Landeszuschuss/Tp -Landflucht -Landfrieden -Landfunk -Landgasthaus/Tp -Landgemeinden -Landgert -Landgericht/ST -Landgestt -Landgter -Landgut -Landhaus/Tp -Landhausstil -Landinnern -Landjugend -Landjunge -Landkarte/N -Landkreditbank -Landkreis/EP -Landkriegs -Landleute/N -Landmdchen -Landmaschinen -Landmaschinenbau -Landmaschinenschau -Landmasse -Landoberflche -Landproletariat -Landrte -Landrtin -Landratsmter -Landraub -Landrover -Landschaft/P -Landschaftsbild/T -Landschaftsgemlde -Landschaftsgestaltung -Landschaftsimpression -Landschaftsmalerei -Landschaftsschutz -Landschloss/T -Landschulen -Landschulheim -Landsee -Landserausdruck -Landshut -Landsknecht -Landsleute/N -Landsmnnin -Landsmann/S -Landsmannschaften -Landspitze -Landstdtchen -Landstation/P -Landstellen -Landstrae/N -Landstreicher -Landstreicherei -Landstreitkrfte -Landstrich/EPS -Landstuhl -Landtag/ES -Landtagsabgeordneter -Landtagsgebude -Landtagsmandat -Landtagsprsidenten -Landtagswahl/P -Landtagswahlkampf -Landtruppen -Landungsbrcke/N -Landungskarte -Landungsoperation/P -Landungsunternehmen -Landurlaub -Landverkauf/Sp -Landverteilung -Landvolk -Landwehr -Landwehrkanal -Landwehrtradition/P -Landwirt/EFPST -Landwirtschaft/P -Landwirtschaftskrise -Landwirtschaftsmarkt -Landwirtschaftsmesse -Landwirtschaftsminister/S -Landwirtschaftspolitik -Landwirtschaftsschau -Landwunder -Landzunge -Langenscheidt/S -Langeweile -Langfinger -Langlufer/S -Langluferrendite -Langlaufanzug/STp -Langmut -Langobarde -Langsamkeit -Langspielplatte/N -Langstreb -Langstrecke/N -Langstreckenbomber/N -Langstreckenlufer/S -Langstreckenrakete/N -Langstreckenrennen -Langstreckenweltmeister -Languedoc -Languste/N -Langwierigkeit/P -Langzeit -Langzeitbetrieb -Langzeitfolgen -Langzeitgedchtnis/Qq -Langzeitleser/N -Langzeitperspektive/N -Langzeitberblick -Langzeitvergleich -Langzeitziele -Lanka -Lanzarote -Lanze/N -Lanzenstiche -Laos -Laplace -Lappen/S -Lappland/S -Laptop/S -Lars -Larve/N -Lasagne/N -Lasche/N -Laser/NS -Laserdisk/S -Laserdrucker/NS -Laserdrucksystem -Laserkasse -Laserprinter -Laserstrahl/PST -Lasertechnologie -Lasso/S -Lastauto -Lastenaufzug/STp -Lastenausgleichsgesetz -Lastenfahrstuhl -Lastenheft/EPS -Lastensegler -Laster/NS -Lastfahrer -Lastkahn -Lastklappe -Lasttier/EPST -Lastverteilung/P -Lastwagen/S -Lastwagenfahrer -Lastwagenverkehr -Lastzug/Tp -Lastzugeinfahrt -Latein/S -Lateinamerika/S -Lateiner -Lateinlehrer -Lateran -Laterne/N -Laternenpfhle -Latex -Latifundien -Latifundium/S -Latinum -Latte/N -Lattenschuss/Tp -Latwerge/N -Latz/T -Laub/EPST -Laubbaum/STp -Laubenbrand -Laubhaufen -Lauch/T -Laudatio -Lauerstellung -Laufanzug/Sp -Laufbahn -Laufband/ST -Laufdauer -Laufens -Lauffhigkeit -Lauffeuer -Laufkran -Laufleine/N -Laufpass -Laufs -Laufschrift/P -Laufschuhe -Laufstall/Sp -Laufsteg -Laufstrecke/N -Laufwerk/EPST -Laufzeit/P -Laufzeitfehler/NS -Laufzeitmessung -Laufzeitsystem/EPS -Laufzeitunterschied/EPS -Laufzeitverhalten/S -Laugenpumpe -Laune/N -Laus -Lausbubenstreich -Lautenklang/Sp -Lautschrift/P -Lautsprecher/NS -Lautsprechergequake -Lautstrke/N -Lava -Lavendel -Lawine/N -Lawinenalarm -Lawinengefahr -Lawinenhunden -Lawinenschutz -Lawinenunglck -Layout/S -Lazarett -Lazarettschiffe -Lear/S -Leasing -Leasingangebot/EPS -Lebedame/N -Lebendigkeit -Lebendvieh -Lebendviehpreise -Lebens -Lebensuerung -Lebensabend/EPS -Lebensablauf/Sp -Lebensabschnitt -Lebensalter -Lebensanschauung/P -Lebensarbeit -Lebensauffassung/P -Lebensaufgabe/N -Lebensbedarf/S -Lebensbedingung/P -Lebensbedrfnis/Qq -Lebensbejahung -Lebensbelastung/P -Lebensbereich/EPS -Lebensbeschreibung/P -Lebenschance/N -Lebensdaten -Lebensdauer/N -Lebensechtheit -Lebensentscheidend/AEPT -Lebenserfahrung/P -Lebenserinnerung -Lebenserwartung/P -Lebensfhigkeit -Lebensfeindlichkeit -Lebensform/P -Lebensfrage/N -Lebensfreude/N -Lebensfhrung -Lebensfunktion/P -Lebensgebiete/N -Lebensgefhrte/FN -Lebensgefahr/P -Lebensgefhl -Lebensgeschichte/N -Lebensgesetz/EPT -Lebensgestaltung -Lebensglck -Lebensgre/N -Lebensgrundlage/N -Lebenshaltungskosten -Lebenshilfe/N -Lebenshunger -Lebensinhalt/EPST -Lebensinteresse/N -Lebensjahr -Lebenskampf -Lebenskonzept -Lebenskosten -Lebenskrfte/N -Lebenskraft -Lebensknstler -Lebenslage/N -Lebenslauf/STp -Lebenslicht/R -Lebenslinie/N -Lebensmeldung/P -Lebensmittel/N -Lebensmittelabteilung -Lebensmittelchemie -Lebensmittelfabrik -Lebensmittelgeschft/EPS -Lebensmittelgutscheine -Lebensmittelhandel -Lebensmittelindustrie -Lebensmittelkarte -Lebensmittelkartensystem -Lebensmittelkontrolle -Lebensmittelladen -Lebensmittelmarken -Lebensmittelle -Lebensmittelpakete -Lebensmittelration -Lebensmittelrationierung -Lebensmittelspende -Lebensmonat/EPST -Lebensmut -Lebensnerv -Lebensnotwendigkeit -Lebenskonomie -Lebensordnung -Lebenspartner -Lebensprinzip/S -Lebensprozess/EPT -Lebensqualitt -Lebensraum/STp -Lebensregel/N -Lebensrhythmus -Lebensschicht/P -Lebenssinn -Lebensspanne/N -Lebensstadium -Lebensstandard/S -Lebensstellung/P -Lebensstil/S -Lebensstruktur/P -Lebenstraum/STp -Lebensunterhalt/EPST -Lebensverbindung -Lebensverhltnis/Qq -Lebensverlngerung -Lebensversicherung/P -Lebensvollzug -Lebensvorgang/Sp -Lebenswandel/NS -Lebensweg/ST -Lebensweise/N -Lebensweisheit/P -Lebenswerk/EPT -Lebenswille/N -Lebenszeichen/S -Lebenszeit -Lebensziel/EPT -Lebenszyklen -Lebenszyklus -Leber -Lebererkrankung/P -Leberkndel -Leberkrebs -Leberleiden -Lebewesen/S -Lebewohl -Lebhaftigkeit -Lebkuchen/S -Lebzeiten -Lech/S -Leck/S -Leckerbissen/S -Leckerli -Leckstrme -Leder/S -Lederausstattung -Lederball/Sp -Lederband -Ledererzeugung -Lederfabrik -Ledergrtel -Lederhosen -Lederindustrie -Lederjacke/N -Ledermanschette -Ledermantel -Ledermbel -Lederpolster/N -Lederpolsterung -Ledersessel -Ledersitze -Lederstiefel -Lederwarenexport -Lederwarenindustrie -Lederzeug -Leerens -Leeretiketten -Leerfrachten -Leergewicht/S -Leerlauf/Sp -Leerlaufdrehzahl -Leerposition/P -Leerraum/STp -Leerschlag/Tp -Leerstelle/N -Leertaste -Leerung/P -Leerverkufe/NR -Leerverkauf/Sp -Leerverkaufssignal -Leerzeichen/S -Leerzeile/N -Legalisierens -Legalisierung/P -Legalittsprinzip -Legasthenie -Legastheniker/FNS -Legehuhn -Legeleistung -Legieren/JS -Legierungsmetall -Legion/P -Legionr/EFPS -Legislativrat -Legislatur -Legislaturperiode/N -Legitimation/P -Legitimationsbasis -Legitimationsdefizit/S -Legitimationsfrage -Legitimationsgrundlage/N -Legitimationskraft -Legitimationsproblem/EPS -Legitimationsproblematik -Legitimationsscheine -Legitimitt -Legitimittskrise/N -Leguan/EPS -Lehm/S -Lehmboden -Lehmhtten -Lehnsherr/NP -Lehnshoheit -Lehnsmann/S -Lehnsoberhoheit -Lehnsstaat -Lehnstuhl -Lehrmter -Lehrabschlussprfung -Lehramt -Lehranstalt/P -Lehrarbeit -Lehrauftrag/STp -Lehrbefhigung -Lehrberuf -Lehrbetrieb -Lehrbcher/N -Lehrbuch -Lehreignung -Lehrens -Lehrer/FNS -Lehrerausbildung -Lehrerberuf/S -Lehrerbesoldung -Lehrerbund -Lehrerkollegium/S -Lehrerkonferenz/P -Lehrerorganisation/P -Lehrerschaft -Lehrerschwemme -Lehrerverbnde -Lehrervereinshaus -Lehrerwitwe -Lehrfcher -Lehrfach/T -Lehrfilm/EPS -Lehrgang/Sp -Lehrgangskosten -Lehrgeld -Lehrinhalt/EPS -Lehrjahr/EPT -Lehrkrper/NS -Lehrkrfte/N -Lehrkraft -Lehrling/EPS -Lehrlingsausbilder -Lehrmannschaft -Lehrmeinung/P -Lehrmeister/FNS -Lehrmethode/N -Lehrmittel/NS -Lehrmittelfabrikation -Lehrperson/P -Lehrplne/N -Lehrplan/S -Lehrstze/N -Lehrsatz/T -Lehrstelle/N -Lehrstellenplatz -Lehrstoff/S -Lehrstck -Lehrsthle/N -Lehrstuhl/ST -Lehrstuhlinhaber -Lehrstuhlvertreter -Lehrsystem -Lehrttigkeit/P -Lehrbereinkunft -Lehrveranstaltung/P -Lehrverbnde -Lehrversuche -Lehrvorstellung -Lehrzeit/P -Lehrzweck/EPS -Leib/ERST -Leibarzt/T -Leibeigenschaft -Leibeserzieher -Leibeserziehung -Leibesfrchte -Leibesfrucht -Leibespfunde -Leibesumfang -Leibesvisitation/P -Leibfeindlichkeit -Leibgarde -Leibgardist -Leibniz -Leibregiment/S -Leibrente/N -Leibriemen -Leibwchter/N -Leibwchtermannschaft -Leibwache/N -Leica -Leiche/N -Leichenfund -Leichenschauhaus/Tp -Leichentrger/NS -Leichentcher/N -Leichentuch -Leichenverbrennung/P -Leichenwrter -Leichenwagen/S -Leichenzug/STp -Leichnam/S -Leichtathlet/FP -Leichtathletik -Leichtathletikhalle -Leichtathletikkampf -Leichtathletiktag -Leichtathletiktitel -Leichtathletikveranstaltung -Leichtathletikwettkmpfe -Leichtbau -Leichtbauwnde -Leichtbauweise -Leichtfertigkeit -Leichtfigkeit -Leichtgewichtler -Leichtgewichtsklasse -Leichtgewichtsmeister -Leichtglubigkeit -Leichtigkeit -Leichtindustrie -Leichtmetall/ES -Leichtmetallbau -Leichtmetallfassade -Leichtraucher -Leichtsinn/ST -Leichtsinnigkeit -Leid/T -Leidens -Leidenschaft/P -Leidensweg -Leidwesen/S -Leier -Leierkasten -Leierkastenmelodie -Leierkastenmusik -Leihbibliothek/P -Leihbcherei -Leihgebhr/P -Leihhaus/Tp -Leihmutter -Leihwagen/S -Leim -Leine/N -Leinenband -Leinensack -Leinenweberei -Leinwand -Leipzig/RS -Leipziger/FN -Leistenbruch -Leistendehnung -Leistens -Leistenzerrung -Leistung/P -Leistungsabbau -Leistungsabfall/S -Leistungsangebot -Leistungsansprche/N -Leistungsanstieg -Leistungsanzeige/N -Leistungsaufnahme -Leistungsausgnge/N -Leistungsaustausch -Leistungsbedarf -Leistungsbegrenzung -Leistungsbereitschaft -Leistungsbeschreibung -Leistungsbewertung -Leistungsbilanz -Leistungsdaten -Leistungsdruck -Leistungseinheit/P -Leistungsentgelt/EPST -Leistungsentwicklung -Leistungserprobung -Leistungsfhigkeit -Leistungsforderung/P -Leistungsfreude -Leistungsgeflle -Leistungsgrenze/N -Leistungsgruppe/N -Leistungshhe -Leistungshonorare -Leistungsklasse/N -Leistungskraft -Leistungskriterium/S -Leistungskurve/N -Leistungslohn -Leistungsmerkmal/EPS -Leistungsmessung -Leistungsmglichkeit/P -Leistungsniveau -Leistungsnorm/P -Leistungsnormsenkung -Leistungsnoten -Leistungsoptimierung -Leistungsprinzip/S -Leistungsprfung/P -Leistungsregelung -Leistungsreserve/N -Leistungsschalter -Leistungssensor -Leistungssport -Leistungssportarten -Leistungssprnge -Leistungssprung -Leistungssteigerung/P -Leistungsstufe/N -Leistungstabelle/N -Leistungstief -Leistungstreiber -Leistungsumfang/ST -Leistungsurkunde/N -Leistungsverbesserung/P -Leistungsverfall -Leistungsverhltnis/Qq -Leistungsvermgen/S -Leistungsverwaltung -Leistungswille/N -Leistungszentrum -Leistungsziel -Leistungszuschlag/STp -Leitanlage/N -Leitartikel/N -Leitbetrieb -Leitbild/RT -Leitblech/E -Leitbuchstabe/N -Leitens -Leiter/FNS -Leiterbahn/P -Leiterplatte/N -Leiterplattenbereichen -Leiterplattenversion/P -Leiterplattenzuschnitt -Leitfden -Leitfhigkeit/P -Leitfaden/S -Leitfigur -Leitfrage/N -Leitgedanke/N -Leithammel -Leitidee/N -Leitleine/N -Leitlinie/N -Leitmotiv/EPS -Leitplanke/N -Leitstze/N -Leitschiene/N -Leitseil -Leitseite/N -Leitstelle/N -Leitstellenkonzept/EPS -Leitung/P -Leitungsanzapfen -Leitungsbruch -Leitungsfehler -Leitungslnge/N -Leitungsmasten -Leitungsnetz -Leitungspaar -Leitungsrohre -Leitungsstrung/P -Leitungsverbindung/P -Leitungswasser -Leitungsweg -Leitungszufhrung/P -Leitwort/G -Leitzahl -Leitzentrale/N -Lektion/P -Lektor/FPS -Lektre -Lemma/S -Lemmata -Lemming/EPS -Lemmingkolonie -Lemmingvolk/T -Lende/N -Lendenschurz -Lendenwirbel/S -Lenin/S -Leningrad -Leninorden/S -Lenkens -Lenkhilfe -Lenkmanver -Lenkmechanismen -Lenkrad/S -Lenkradschloss/T -Lenkung/P -Lenkwaffen -Lenkzylinder -Lennon/S -Lenz/EP -Leonardo/S -Leonore/S -Leopard/P -Leopold/S -Leporello/S -Lepra -Leprakranker -Lerche/N -Lernangebote/N -Lernbegierde -Lerneffekt -Lernens -Lernfhigkeit -Lernfahrt/P -Lernform/P -Lernfunktion/P -Lernmaterial -Lernmethode/N -Lernprozess/EPT -Lernspektren -Lernspektrum -Lernvorgang/STp -Lernzeit -Lernziel -Lesart -Lesbarkeit -Lesbe/N -Lesbierin/F -Leseadresse/N -Leseapparate/N -Lesebcher -Lesebuch -Lesegert/EPS -Lesekopf -Lesens -Leser/FNS -Leserbrief/EPS -Leseregister/S -Leserkreis/EPT -Leserschaft -Leserumfrage/N -Leserzuschrift -Lesesaal -Lesevorgang/Sp -Lesewort/EPST -Lesezeichen -Lesezugriff -Lessing/S -Lesung/P -Lethargie -Lette/N -Lettland -Letzt -Leuchtanzeige/N -Leuchtbomben -Leuchtdiode/N -Leuchtdiodenfunktion/P -Leuchtdiodenkontrolle -Leuchter -Leuchtgas/EPT -Leuchtgeschoss/EPT -Leuchtkraft -Leuchtpin/S -Leuchtpunkt/EPST -Leuchtreklame/N -Leuchtrhren -Leuchtstoffrhre -Leuchttrme -Leuchtturm -Leuchtzeichen/S -Leugnens -Leugnung/P -Leukmie -Leukoplast/EPS -Leumund/T -Leute/N -Leutnant -Level/S -Leverkusen -Leviten -Lexika -Lexikon -Liaison/S -Liane/N -Libanon -Libelle/N -Liberalisierens -Liberalisierung/P -Liberalitt -Libero/S -Libertinage/N -Libyen -Libyer/FNS -Lichtbild/RT -Lichtblick/EPS -Lichtchen/S -Lichtdurchgang -Lichtens -Lichtern -Lichtgeschwindigkeit/P -Lichtgriffel -Lichtjahr/EPS -Lichtkegel -Lichtleiter/NS -Lichtleitkabel -Lichtmess -Lichtorgel -Lichtpause -Lichtpunkt/EPST -Lichtquant -Lichtquelle/N -Lichtreligion -Lichts -Lichtsatz -Lichtsatzanlage/N -Lichtschchte/N -Lichtschalter/N -Lichtschein -Lichtschranke/N -Lichtschrankenkabel -Lichtschrankensensorik -Lichtsensor -Lichtsignal/E -Lichtspielhaus/Tp -Lichtstrken -Lichtstrahl/PS -Lichttechnik -Lichtung/P -Lichtverhltnis/Qq -Lichtweg -Lichtzeichen/S -Lid/RST -Lido/S -Lidschatten -Liebelei/P -Liebenswrdigkeit -Liebesabenteuer -Liebesbarometer -Liebesbezeigung/P -Liebesbeziehung/P -Liebesbrief/EPS -Liebeserklrung/P -Liebesgefhle -Liebesgeschichte/N -Liebesgttin -Liebeshndeln -Liebesleben -Liebeslieder -Liebesnacht -Liebespaar/EPS -Liebesprobe -Liebesroman/EPS -Liebesschrei -Liebesszene/N -Liebestter -Liebesverhltnis/Qq -Liebhaber/FNS -Liebhaberei -Lieblichkeit -Liebling/EPS -Lieblingsbeschftigung/P -Lieblingsbild -Lieblingsfarbe/N -Lieblingskind -Lieblingsmarke -Lieblingsmelodie -Lieblingsminister -Lieblingsmodell -Lieblingsnummern -Lieblingspiste -Lieblingsspeise -Lieblingssport -Lieblingswaffe -Lieblingswerke -Lieblosigkeit/P -Liebreiz/T -Liebschaft/P -Liechtenstein/R -Liechtensteiner/FNS -Lied/MRST -Liederabend/E -Liederzyklus -Lieferanfrage -Lieferangebot/S -Lieferanmahnung -Lieferant/P -Lieferantenerklrung -Lieferantenquelle -Lieferanzeige -Lieferauto -Lieferbarkeit -Lieferbeanstandung/P -Lieferbedingung/P -Lieferbeschreibung/P -Lieferbeschwerde -Lieferbesttigung -Lieferdatum -Lieferfhigkeit -Lieferfahrzeuge -Lieferfirma -Lieferfrist/P -Lieferfristforderung/P -Lieferkonditionen -Lieferlisten -Liefermenge/N -Liefermglichkeit/P -Lieferns -Lieferpapiere/N -Lieferpreis/EPT -Lieferprioritten -Lieferproblem/EPS -Lieferprogramm -Lieferrckstand -Lieferschein/EPS -Lieferscheinangaben -Lieferscheinkopien -Lieferscheinschreiben -Lieferschwierigkeit/P -Liefersicherheit -Liefersituation/P -Lieferstopp -Liefertermin/EPS -Lieferterminbekanntgabe -Lieferumfang -Lieferung/P -Lieferungsbedingung/P -Lieferungsschein/ET -Lieferverpflichtung -Liefervertrgen -Lieferverzgerung -Lieferwagen/S -Lieferzeit/P -Lieferzeitabsprache -Lieferzeitangaben -Lieferzeitbekanntgabe -Lieferzeitverkrzung -Liegenschaft/P -Liegepltze -Liegesitze/N -Liegestuhl -Liegeterrassen -Liegewagen -Liegewiesen -Lift/ST -Liftsystem -Liga -Ligatur/P -Likr/EPS -Likrfabrik -Lilie/N -Liliput/S -Liliputaner -Lille -Lima -Limerick -Limes -Limit -Limitation/P -Limitierens -Limitierung/P -Limonade/N -Lincoln/S -Lindau -Lindbergh/S -Lindenallee -Linderns -Linderung/P -Linderungsmittel/NS -Lineal/EPS -Linearisierung/P -Linearitt -Linearmotor/PS -Linefeed -Lineprinter -Linguistik -Linie/N -Linienabstand/S -Linienbus -Liniendienste -Linienflug/STp -Linienfhrung -Liniengewebe/S -Linienmaschinen -Liniennetz -Linienpassagier -Linienreeder -Linienschiff/E -Link -Linksextremisten -Linksgruppe -Linkshnder/NS -Linkskandidaten -Linkskurs -Linkslastigkeit -Linksopposition -Linksrepublikaner -Linksrutsch -Linksstimmen -Linkstechnik -Linksterroristen -Linksverschiebung -Linnen -Linn/S -Linoleum -Linse/N -Linsensuppe -Linus -Linux -Linz -Lippe/N -Lippenbekenntnis/Qq -Lippenstift/EPT -Liquidation/P -Liquidationserls/EPT -Liquidationsregel -Liquidator/P -Liquiditt -Liquidittsanspannung -Liquidittsbedarf -Liquidittsbemhung -Liquidittsenge -Liquidittsengpass/Tp -Liquidittsgrad -Liquidittsgrnden -Liquidittsimplosion -Liquidittslawine -Liquidittsquellen -Liquidittsreserve -Liquidittsspritze -Lira -Lire -Lisa/S -Lisbeth/S -Lisp -Lissabon/S -List -Listbefehl -Listenoperation/P -Listenplatz -Listenpreis/EPT -Listenverarbeitungsfunktion/P -Litauen -Liter/NS -Literat/P -Literatur -Literaturarchiv -Literaturauswahl -Literaturblatt -Literaturhinweis/EPT -Literaturhistorie -Literaturkomplex -Literaturkreise -Literaturpreis/E -Literaturrecherche/N -Literaturseite -Literaturstudie/N -Literaturthemen -Literaturverzeichnis/Qq -Literaturzeitung -Litfasule/N -Lithium -Lithiumbatterie/N -Lithographie/Nf -Litowsk -Liturgie -Litze/N -Liverpool/S -Livingstone/S -Livland -Liz -Lizenz/P -Lizenzabgabe/N -Lizenzabschluss/Tp -Lizenzbedingung/P -Lizenzforderung/P -Lizenzfuballer -Lizenzgeber -Lizenzgebhr -Lizenziat -Lizenzierungsantrag/STp -Lizenzinhaber -Lizenznehmer/NS -Lizenzpartner -Lizenzrckgabe -Lizenzspieler -Lizenztrger -Lizenzurkunde -Lizenzvergabe -Lizenzvertrag/Tp -Lizenzvertrieb -Lizenzzahlung/P -Lkw/S -Lloyd/S -Lcher -Lffel/S -Lffelachse -Lffelbagger -Lffelkante -Lffelkippzylinder -Lffelneigung -Lffelschneidkante -Lffelspitze -Lffelstellung -Lffelstiel/E -Lffelteil/S -Lffler -L/EPT -Lschens -Lschung/P -Lschvorgang -Lschwagen/S -Lschwasser -Lschzug/Sp -Lsegeldsumme -Lsens -Lsezeit -Lslichkeit -Lss/EPT -Lsung/P -Lsungsabschnitt -Lsungsanstze/N -Lsungsansatz/T -Lsungsmittel/N -Lsungsmglichkeit/P -Lsungsprinzip -Lsungsvorschlag/STp -Lsungswettbewerb -Ltaugen -Ltbatzen -Ltbrcken -Ltens -Ltfehler -Ltkolben -Ltpin/S -Ltpumpe -Ltpunkt -Ltseite -Ltstelle/N -Ltstift -Ltung/P -Ltverbindung -Ltversion/P -Ltvorrichtung/P -Lwe/FN -Lwenanteil/S -Lwenherz -Lwenkopfsbel -Lwenkrallen -Lwenzahn -Lob/ST -Lobby/S -Lobbyist/P -Lobeswort/EPS -Lobgesang/Sp -Lobhudelei -Loblied -Loblieder -Lobpreisung -Lobsprche/N -Lobspruch -Loch/JST -Lochblech -Locheisen -Lochens -Lochform -Lochhhe -Lochkarten -Lochkartenanlage -Lochposition/P -Lochrandtrger -Lochrasterabstand -Lochschablone -Lochstreifen/S -Lockenkpfen -Lockens -Lockenstab -Lockenwicklern -Lockerns -Lockerung/P -Lockerungsarbeit -Lockerungstraining -Lockheed -Lockmittel/N -Lockung/P -Lockvogel -Lodenmantel -Logarithmierung -Logarithmus -Logbuch -Logenplatz -Loggia -Loggien -Logik/PR -Logikbaustein -Logiker/NS -Logikprogrammierung -Login/S -Logis -Logistik -Logo -Logopde/FN -Logopdie -Lohn/ST -Lohnabbau/S -Lohnabschluss/Tp -Lohnangebote -Lohnanspruch -Lohnanteil -Lohnausfall/Sp -Lohnausfallvergtung -Lohnausgleich/S -Lohnbedingung/P -Lohnberechnung -Lohnbewegung/P -Lohnbro -Lohnbuchhalter -Lohndebatte -Lohndifferenz -Lohndiktat -Lohneinkommen -Lohneinstufung -Lohnempfnger -Lohnerhhung/P -Lohnersatz -Lohnfindung -Lohnforderung/P -Lohngebiet -Lohngesetzgebung -Lohngruppen -Lohnintensive -Lohnkmpfe -Lohnkampf/T -Lohnkonflikt/S -Lohnkostenanteil -Lohnkostenschub -Lohnkrzung/P -Lohnleitlinien -Lohnlisten -Lohnpartner -Lohnpause -Lohnreduzierung/P -Lohnrckstnde -Lohnrunde -Lohnstze -Lohnseite -Lohnsenkung/P -Lohnskala -Lohnsteigerung -Lohnsteuer/N -Lohnsteuerjahresausgleich -Lohnsteuerprfung -Lohnstopp -Lohnstreik/S -Lohnstreit -Lohnstckkosten -Lohnstckkostenvergleich/ES -Lohnsumme -Lohntarif/EPST -Lohntarifvertrag/STp -Lohnveredlung -Lohnversteuerung -Lohnverzicht -Lohnwalzung/P -Lohnwelle -Lohnzahlung -Lohnzettel -Lohnzugestndnis/Qq -Loire -Lok/S -Lokalbahn -Lokalblttern -Lokalderby/S -Lokalisation -Lokalisierbarkeit -Lokalisierung -Lokalitt/P -Lokalkolorit -Lokalmatadoren -Lokalmuseen -Lokalpanorama -Lokalredaktion/P -Lokalrivalen -Lokals -Lokaltermin -Lokalverbot -Lokalwhrung/P -Lokfhrern -Lokomotive/N -Lokomotivfhrer/S -Lolita/S -Lollobrigida/S -Lombarde/N -Lombardei -Lombardkredit/E -Lombardzins/T -London/RS -Lorbeer/PS -Lorbeerbaum/STp -Lorbeerblatt -Lorbeerkranz -Lord/S -Lore/N -Loreley -Lorenz -Losentscheid -Losentscheidung -Losgelstsein -Losglck -Loslsens -Loslsung/P -Losnummer -Losung/P -Lot/EPT -Lotabdeckung -Lothar/S -Lothringen -Lotos -Lotosblte/N -Lotrechte -Lotte/MS -Lotterie/N -Lotterieeinsatz -Lotteriegewinne -Lotterielos/EPT -Lotto -Lottoblock -Lottogewinn/EP -Lottoknig -Lottopech -Lottoschein/S -Lottospiel/R -Lottostelle/N -Louis -Lourdes -Louvre -Lovestory/S -Lowpegel -Loyalitt -Loyalittsfragen -Loyalittspflicht/P -Loyalittstelegramm -Ltd -Ltd. -Lbeck/RS -Lbecker/FNS -Lcke/N -Lckenber -Lckenlosigkeit -Lftchen/S -Lftens -Lfter/NS -Lftung/P -Lftungsgitter -Lftungsindustrie -Lftungsingenieur -Lftungsklappe -Lgendetektor -Lgenmrchen -Lgenmeldung/P -Lgentechnik -Lgerei -Lgner/FNS -Lmmel -Lneburg -Lste/N -Lsterklemme/N -Lttich -Luchs/T -Luchsfellen -Luder -Ludwig/S -Ludwigshafen -Luft -Luftabenteuern -Luftabwehr -Luftabwehrrakete -Luftabwehrsystem -Luftalarm -Luftangriffe -Luftballon/S -Luftbasis -Luftbereich -Luftbilder -Luftblase/N -Luftblasenkontrolle -Luftblockade -Luftbrcke -Luftbrckenjahr -Luftbrckenpiloten -Luftdeckung -Luftdruck/S -Luftdruckbedingung/P -Lufterscheinung/P -Luftfahrt -Luftfahrtabkommen -Luftfahrtausstellung -Luftfahrtbehrden -Luftfahrtbereich -Luftfahrtbundesamt -Luftfahrtgesellschaften -Luftfahrtindustriellen -Luftfahrtkreisen -Luftfahrtminister -Luftfahrtministerium -Luftfahrtsachverstndige -Luftfahrtschein -Luftfahrtschule -Luftfahrttechniker -Luftfederung -Luftfederungssystem -Luftfeuchtigkeit -Luftfracht -Luftfrachtdienst -Luftfrachtmarkt -Luftfrachtraten -Luftfrachtversand -Luftgesellschaft -Luftgewehr/P -Lufthansa -Lufthygiene -Luftkissenbahn -Luftkollision -Luftkommandos -Luftkorridor/EPS -Luftkriege/S -Luftkriegswesen -Luftkurort/T -Luftlandebrigade -Luftlandeeinheit/P -Luftlandetruppen -Luftlandeunternehmen -Luftloch/T -Luftmachen -Luftmarschall -Luftmassen -Luftnetz -Luftpiraten -Luftpistole -Luftporto -Luftpostabonnement/S -Luftpostbriefe -Luftpostporto -Luftpostsendung/P -Luftpostverband -Luftpumpe -Luftraum/ST -Luftreinhaltung -Luftreiniger -Luftrhre -Luftschacht -Luftschiffe -Luftschifffahrt/P -Luftschlacht -Luftschloss/T -Luftschutzkeller -Luftsport -Luftsportclub/S -Luftstrahl -Luftstreitkrften -Luftstrom -Luftsttzpunkt/E -Lufttransporter -Lufttransportraum/ST -Lufttransportverbande -Luftberlegenheit -Luftvernderung/P -Luftverkehr/S -Luftverkehrsabkommen -Luftverkehrsgesellschaft/P -Luftverkehrsnetz -Luftverkehrsvereinigung -Luftverseuchung -Luftversorgung -Luftverteidigung -Luftwaffe -Luftwaffenabteilung -Luftwaffenchef -Luftwaffeneinheit -Luftwaffengeneral -Luftwaffenhauptquartier -Luftwaffenmajor -Luftwaffenminister -Luftwaffenoberstleutnant -Luftwaffenstbe -Luftwaffenstrategie -Luftwaffensttzpunkt -Luftweg/EPS -Luftzufuhr -Luftzug/STp -Lug/S -Lugano -Luke/N -Lukullismen -Lumpen -Lumpenverarbeitung -Lunge/N -Lungenentzndung -Lungeninfektion/P -Lungenphysiologie -Lunte/N -Lupe/N -Lust -Lustgarten/S -Lustgefhl/EST -Lustgewinn/EST -Lustigkeit -Lustschlsser/N -Lustschloss/T -Lustschreien -Lustspiel/EPST -Luther/S -Lutschbonbon -Luxemburg/R -Luxus -Luxusappartement -Luxusartikel -Luxusausfhrung -Luxusausgabe -Luxusbad -Luxusbedrfnis/Qq -Luxusbussen -Luxusdampfer -Luxusdienst -Luxushotel/S -Luxusjacht -Luxusklasse -Luxusleben -Luxuslokal -Luxusmodelle -Luxusreisen -Luxusschiff/EPT -Luxusschwimmbad -Luxusvilla -Luxuswaren -Luxuswohnung -Luzern/RS -Luzifer/S -Lydien -Lymphgef/EPT -Lymphknoten/S -Lymphozyt/P -Lynchjustiz -Lyrik -Lyrikband -Lyriker -Lyzeum/S -MAD -MB -MBB -MBit -MByte -MDR -MHz -MITI -MPEG -MSDOS -Mander -Manderfahrt -Mchte/N -Mchtigkeit/P -Mdchen/S -Mdchenballerina -Mdchenfoto -Mdchenhandel/S -Mdchenkleidung -Mdchenkopf -Mdchenname/N -Mdchennamen/S -Mdchenschwarm -Mdchenzimmer -Mdel/NS -Mhdrescher -Mhmaschine/N -Mhne/N -Mngel/N -Mngelanzeige/N -Mngelbeschreibung -Mngelbeseitigung -Mngelpunkte/N -Mngelrge/N -Mngelverteilung -Mnnchen -Mnner/N -Mnnerabend -Mnnerarbeit -Mnnerblicke -Mnnerehre -Mnnerkopf -Mnnerwirtschaft -Mnnlein -Mnnlichkeit -Mntel/MN -Mrchen/S -Mrchenbchern -Mrchenbuch/T -Mrchenerzhler -Mrchenfiguren -Mrchengebilde -Mrchenonkel/S -Mrchenoper -Mrchenstadt -Mrchenstck -Mrkchen/S -Mrker -Mrklin -Mrkte/N -Mrsche/N -Mrtyrer/N -Mrz -Mrzhlfte -Migens -Migkeit -Migung/P -Mulchen/S -Muler/N -Muse/N -Maar/E -Maas -Maastricht/R -Maasbergang -Mac -Machart/P -Machbarkeit -Machenschaft/P -Macher/NS -Machiavelli/S -Machtabgrenzung -Machtanspruch -Machtantritt -Machtanwendung -Machtaufteilung -Machtausbau -Machtausbung -Machtbefugnis/q -Machtbereich/S -Machtblcken -Machtblock/T -Machtdemonstration/P -Machtdrohung/P -Machteinbue -Machtergreifung/P -Machtfaktoren -Machtflle -Machtgrundlage -Machtgruppen -Machthabende/NR -Machthaber/NS -Machtinstrumente -Machtkmpfe/N -Machtkampf/T -Machtkomplex -Machtkontrolle -Machtkonzentrierung -Machtlinien -Machtmissbrauch -Machtmittel/N -Machtposition/P -Machtpotential/EPS -Machtpotenzial/EPS -Machtstaaten -Machtstellung -Machtstreben -Machtstruktur/P -Machttrger/NS -Machtbernahme/N -Machtverfilzung -Machtverhltnis/Qq -Machtverschiebung/P -Machtverteilung/P -Machtverzicht -Machtwechsel -Machtwrter/N -Machtwort/EPST -Machtzentrum -Machtzusammenballung -Machtzuwachs/T -Macintosh/S -Macke/NR -Madagaskar -Made/N -Madonna -Madonnenbilder -Madrid -Mafia -Mafioso -Magazin/EPS -Magazinschwenken -Magd -Magdalena/S -Magdeburg/S -Magen/S -Magenbeschwerden -Magendruck -Magenerkrankung -Magengegend -Magengeschwr/EPST -Magengetrnk -Magengrube -Magenkranke -Magenkrebs -Magenleiden/S -Magenoperation/P -Magenschliemuskel -Magenschmerz/T -Magenta -Magenverdauung -Magerjahren -Magerkse -Magerkohle -Magermilch -Magermilchpulver -Magersucht -Maghreb -Maghrebiner -Magie/R -Magier/FNS -Magister/NS -Magistrat/EPS -Magistratsbeamten -Magma/S -Magnesium/S -Magnesiumbedarf -Magnesiumverbrauch -Magnet/EPST -Magnetband -Magnetfeld/RT -Magnetik -Magnetisieren/JS -Magnetismus -Magnetkartenleser -Magnetkissenbahn -Magnetophon -Magnetplatte/N -Magnetschaltern -Magnetspule/N -Magnetstreifen -Magnetsturm -Magnetventil/EPS -Magnetventilstellung -Magnetventilsteuerung -Magnolie/N -Mahagoni -Maharadscha -Mahatma/S -Mahjongg -Mahl/GST -Mahlerzeugnis/Qq -Mahlkontingent -Mahlleistung -Mahlzeit/P -Mahnbescheid -Mahnbrief/EPS -Mahnens -Mahner -Mahnkosten -Mahnkraft -Mahnmler -Mahnrufe -Mahnschreiben -Mahnstunde -Mahnung/P -Mahnwesen -Mai/NS -Maibaumruber -Maibock -Maibowle -Maidemonstration/P -Maiensonne -Maifeier -Maiglckchen/S -Maiglckchenduft -Maikundgebung/P -Mail/S -Mailnder -Mailand -Mailbox/P -Mailingliste/N -Mailorder/S -Mailserver/NS -Mainboard/S -Mainframe/S -Mainz -Maiskolben/S -Maisladung/P -Maitage -Maiwoche -Maizahlen -Majestt/P -Majonse/N -Major/EFPS -Majoran -Majoritt -Makedonien -Makefile/S -Makel/S -Makler/FNS -Maklerangebote -Maklerbro -Maklergebhr/P -Maklerkosten -Maklerprovision/P -Maklertafeln -Maklervermittlung -Makro/S -Makroexpansion/P -Makroexpansionsfunktion/P -Makroexpansionszeit -Makrolebewesen/S -Makromutation/P -Makronummer/N -Makroschicht -Makrostruktur -Makrosubstitution/P -Makulatur -Makulaturwert -Malse/N -Malaise/N -Malaria -Malaysia/S -Malediven -Maler/FNS -Malerarbeiten -Malerbedarf -Malerei/P -Malereimer -Malergeselle -Malermeister -Malflche -Mali -Malkunst -Mallorca -Malmittel -Malm -Malo/S -Maloche -Malstrom -Malta -Malus -Malve/N -Malweise/N -Malz/T -Malzkaffee/S -Mama/S -Mammographie/N -Mammon/S -Mammut/S -Mammutanzeigenkampagne -Mammutausstellung -Mammutbaum/STp -Mammutfilm -Mammutschulden -Mammuttanker -Management/S -Managementaufgabe/N -Managementfehler/N -Managementleistung/P -Managementposition/P -Managementversagen/S -Manager/FNS -Managergehalt -Managerkrankheit -Managertod -Managertyp/PS -Manchester -Mandant/FP -Mandantenkreis/EPT -Mandarine/N -Mandat/EPS -Mandatsaberkennung -Mandatsgebiete -Mandatsverlust -Mandatsverteilung -Mandel/N -Mandelbaum/STp -Mandelentzndung/P -Mandeloperation/P -Mandoline/N -Mandschurei -Manege/N -Manfred/S -Mangan -Manganfunde -Mangangehalt -Mangel -Mangelerscheinung -Mangelhaftigkeit/P -Mangellage/N -Mangelpunkt -Mangelware/N -Manhattan -Manie/NR -Manier/P -Manierensteuer -Manierismus -Manierist/P -Manifest/EPST -Manifestation/P -Manila -Manipulation/P -Manipulationsform/P -Manipulationsmglichkeit/P -Manipulationstechnik/P -Manipulierbarkeit -Manitu/S -Manko -Mann/EPT -Manna/S -Mannequin/S -Mannequinschule -Mannesgesicht -Mannesmann -Mannesmut -Mannheim/R -Mannheimer/FNS -Mannigfaltigkeit -Mannit -Mannsbild/R -Mannschaft/P -Mannschaftsabteil -Mannschaftsangehrige -Mannschaftsarzt/T -Mannschaftsaufstellung -Mannschaftsbestand -Mannschaftsfhrer -Mannschaftsgeist -Mannschaftskmpfe -Mannschaftskamerad/FP -Mannschaftskasse -Mannschaftsleistung -Mannschaftsleiter/S -Mannschaftsmeister -Mannschaftsraum/STp -Mannschaftsspieler -Mannschaftssportarten -Mannschaftsstrke -Mannschaftsteile -Mannschaftstitel -Mannschaftswappen/S -Manntag/EPS -Mannwoche/N -Manver/N -Manverball -Manverunglck -Manvrierraum/STp -Mansarde/N -Mansardenstube -Manschette/N -Manschettenknpfe/N -Manschettenknopf -Mantel/S -Manteletage -Mantelkragen -Mantelsaum/STp -Mantisse/N -Mantra/S -Manual/EPS -Manuela/S -Manufaktur/P -Manuskript/EPS -Manuskriptbltter -Manuskriptfragment -Manuskriptseite/N -Manz -Mao/S -Maori -Mappe/N -Maraschino/S -Marathonlufer/FNS -Marathonlauf/Sp -Marathonrennen/S -Marathonsieg -Marathonsitzung -Marburg -Marc/S -Marder/NS -Margarete/S -Margarine -Margarinefabrikation -Margarineherstellung -Margarineindustrie -Margarinemengen -Margarinepreise -Margarinewrfel -Marge/N -Margentarife -Marginalie/N -Maria/S -Marianne/S -Marie/S -Mariendogmen -Marienkfer/N -Marienklage -Marienkult -Marihuana -Marilyn/S -Marine/NS -Marinerzte/FN -Marineattachs -Marineausbildung -Marinedienst -Marineflieger -Marineflugzeug/E -Marinehelfer -Marineinfanterie -Marineinfanteristen -Marinekorps -Marineleute -Marineleutnants -Marineoffizier/E -Marineschnellboote -Marineschule -Marinesttzpunkt -Marinetruppen -Marion/S -Marionette/N -Marionettentheater/NS -Marita/S -Marius -Mark/EPT -Markbetrge -Marken/IW -Markenabgabe -Markenabteilung -Markenartikel/NS -Markenartikelbranche -Markenartikelfirma -Markenartikelfirmen -Markenartikelwesen -Markenbeobachtung -Markenbettwsche -Markeneier -Markengefhrte/N -Markengeschft -Markenname/N -Markennamen/S -Markenpapier -Markensammler/N -Markenschnpse -Markensekt -Markenspirituosen -Markenteppich -Markenwaren -Markenwein -Markenzeichen/S -Marketing -Marketingfachleute -Marketinginstrument -Marketingkonzeption -Marketingleiters -Marketingorganisationen -Marketingpraktiker -Marketingstrategen -Marketingstrategie -Marketingberlegung/P -Marketingwelt -Markgraf/P -Markierens -Markierung/P -Markierungsecke -Markierungsgert/T -Markise/N -Markknochen/S -Markov/S -Markstcke/N -Markt/TW -Marktaktivitt -Marktanalyse/N -Marktanteil/E -Marktausweitung -Marktbeeinflusser -Marktbeeinflussung -Marktbelebung -Marktbeobachtung -Marktbericht/ET -Marktbewegung/P -Marktbild -Marktchance/N -Marktdisziplinen -Marktdurchsetzung -Markteffizienz -Markteinbuen -Markteinfhrung/P -Marktenge -Marktentwicklung -Markterfahrung -Markterfolg/E -Marktforscher/FNS -Marktforschung -Marktforschungsinstitut -Marktforschungsjahre -Marktfhrer -Marktgebiet/T -Marktgeschehen -Marktgeschehnis/Qq -Marktgesetze -Marktgraf -Markthallen -Markthintergrund -Marktindexe -Marktkalender -Marktkenntnis/q -Marktklima -Marktkrfte -Marktkreisen -Marktlagen -Marktlcke/N -Marktmacher -Marktmacht -Marktmanipulation/P -Marktnhe -Marktnischen -Marktffnung -Marktordnung -Marktorganisation/P -Marktpltze/N -Marktplatz/T -Marktposition/P -Marktpreise/N -Marktprognoseverfahrens -Marktrecherchen -Marktrichtung -Marktschwche -Marktsegment -Marktsituation/P -Marktstand -Marktstimmen -Marktstimmung -Marktstrung/P -Marktstruktur -Marktteilnehmern -Markttendenz -Markttheorie -Marktbersicht -Marktunsicherheit -Marktvernderung/P -Marktverhltnis/Qq -Marktwahl -Marktwert/T -Marktwirtschaft/P -Marktwirtschaftlern -Marktziel/EPS -Marktzinsen -Marktzustnde -Markus -Markusdom -Marmarameer -Marmelade -Marmeladenglser -Marmor/S -Marmorbnke -Marmorbruch -Marmorfliesen -Marmorhaus/Tp -Marmorplatten -Marmorstadion -Marmorwerk -Marne -Marnelinie -Marneschlacht -Marneufer -Marokkaner -Marokko -Marokkokrise -Marquise/N -Marrakesch -Mars -Marsala/S -Marsch/T -Marschall/S -Marschboden -Marschkompass/ET -Marschland -Marschlandschaft -Marschmusik -Marschstiefel -Marschtempo -Marschtritt -Marseille -Marshallplan -Marsmenschen -Marssonde -Martin/S -Martina/S -Marx -Marxismus -Marxist/FP -Mary/S -Marzipan -Marzipanbrote -Maangabe/N -Maarbeit -Mae/NS -Maeinheit/P -Mafigur -Magabe/N -Makleidung -Makrug/Sp -Malosigkeit -Manahme/N -Maregel/N -Maregelung -Maschneiderei -Mastbe/N -Mastab/ST -Mavorlage/N -Mazeichnung -Masche/N -Maschennetz -Maschine/N -Maschinenablufen -Maschinenabteilung -Maschinenaktien -Maschinenanlagen -Maschinenantriebs -Maschinenanzeige -Maschinenarbeiter -Maschinenausstattung -Maschinenbau/RST -Maschinenbauaktien -Maschinenbauanstalten -Maschinenbaubetrieb -Maschinenbauindustrie -Maschinenbauingenieur/EPS -Maschinenbaumeister -Maschinenbauschule -Maschinenbautitel -Maschinenbedienung -Maschinenbefehl/EPS -Maschinenbeleihung -Maschinenbeschreibung -Maschinenbetrieb/S -Maschinenbewegung/P -Maschinencode/S -Maschinendaten -Maschinendatenerfassung -Maschinendiagnose -Maschineneinrichtung -Maschineneinsatz -Maschinenfabriken -Maschinenfirma -Maschinenfreiheitsgrad -Maschinenfhrer -Maschinenfhrung -Maschinenfunktionen -Maschinengeometrie -Maschinengewehr/EPT -Maschinenhaus/Tp -Maschinenheck -Maschinenhhe -Maschinenkenntnisse -Maschinenkomponente -Maschinenkonstellation -Maschinenkontrolle -Maschinenkoordinaten -Maschinenlagen -Maschinenmae -Maschinenmodell/EPS -Maschinenmodul/E -Maschinenoperation/P -Maschinenpark -Maschinenpersonal/S -Maschinenpistole -Maschinenposition/P -Maschinenprobe -Maschinenprogramm/EPS -Maschinenprotokollierung -Maschinenpunkten -Maschinenrahmen -Maschinenreaktion -Maschinenregister/NS -Maschinenreparatur -Maschinenschden -Maschinenschablone -Maschinenschaden -Maschinenschlitten -Maschinenschlosser/N -Maschinenschlssel -Maschinenschrift/P -Maschinenseite -Maschinensimulators -Maschinensprache/N -Maschinensprachebene/N -Maschinenstandort -Maschinensteuerung/P -Maschinenstillstand -Maschinenteil/EPS -Maschinenumbau -Maschinenumstellung -Maschinenverhalten/S -Maschinenvermessung -Maschinenvibrationen -Maschinenvorderteils -Maschinenvortriebs -Maschinenwerkzeuge -Maschinenwerte -Maschinenwort/E -Maschinenzerlegung -Maschinenzustnde/N -Maschinenzustand -Maschinerie/N -Maschinist/P -Masern/JS -Maske/N -Maskenball/Sp -Maskenbildner/NS -Maskenorganisation -Maskentreiben -Maskenwort/S -Maskerade/N -Maskottchen/S -Masochismus -Masquerading -Massage/N -Massageliege -Massagesalon -Massaker/NS -Masse/N -Masseanschlsse -Masseausgang -Masseblech -Masseelektroden -Massekabel -Massekopplung/P -Masseleitung -Massenagitation -Massenandrang -Massenanstalt -Massenarbeitslosigkeit -Massenartikel/S -Massenaufgebot -Massenbefragung -Massenbrief/E -Massenbriefherstellung -Massendemonstration/P -Massendenken -Massenentlassung/P -Massenermordung/P -Massenexport/E -Massenflugblatt -Massengesellschaft -Massengrber/N -Massengrab -Massenhinrichtung -Massenimpfung/P -Massenkeilerei -Massenkundgebung/P -Massenmarkt/Tp -Massenmedien -Massenmrder/NS -Massenmord/EPS -Massenorganisation/P -Massenprodukt/EPST -Massenproduktion -Massenprozess/EPT -Massenpsychologie -Massenpublikation/P -Massenquartiere -Massenschlgerei -Massenselbstmord -Massenspeicher/S -Massenspurt -Massensterben -Massenstcken -Massensuggestion -Massenszenen -Massenttung/P -Massentourismus -Massentransportsystem -Massenunterknfte/N -Massenverbrechen -Massenverkehr -Massenvernichtung -Massenvernichtungswaffen -Massenverpflegung -Massenversammlung/P -Massenwahn/S -Massenwanderung -Masseschleifen -Masseschluss/Tp -Masseur/EFPS -Masseuse/N -Masseverbindung/P -Massierens -Massierung/P -Massivbauweise -Massivs -Mast/P -Mastbrche -Mastrinderschau -Mastspitze -Masturbation -Matador/EPS -Matchball/Sp -Material/S -Materialart/P -Materialaufwand -Materialbearbeitung -Materialbeschaffung -Materialbild/RT -Materialdaten -Materialdecke -Materialeinsatz -Materialermdung -Materialfehler/NS -Materialfortschritt/EPST -Materialhandlung/P -Materialien -Materialist/P -Materialkenner -Materialkombination/P -Materiallager -Materiallieferung/P -Materialnummer -Materialpreise/N -Materialprfung -Materialsammlung -Materialschlacht/P -Materialschneiden -Materialspenden -Materialumschlag/STp -Materialvorbereitung -Materialwert -Materialwiderstand -Materie/N -Mathematik/R -Mathematiker/FNS -Mathematiklehrer/FNS -Mathematiklehrkraft -Mathematikstudent/P -Mathematikstunde -Mathematikunterricht -Mathematisieren/JS -Mathilde/S -Matinee/N -Matratze/N -Matrices -Matrix -Matrixdrucker/NS -Matrixelement/EPST -Matrixfelder/N -Matrixnadeln -Matrizen -Matrizes -Matrone/N -Matroschka -Matrose/N -Matrosenanzug/STp -Matsch/T -Matsushita -Matterhorn -Matthus -Matthias -Mattigkeit -Mattscheibe/N -Mattsetzen -Maturitt -Mauer -Mauerbau -Mauerblmchen/S -Mauerdurchlass/Tp -Mauerfall/S -Mauersperre -Maul -Maulesel/NS -Maulkorb -Maultier/P -Maulwrfe/N -Maulwurf/S -Maulwurfshgel/N -Maurenreich -Maurer/NS -Maurerpolier/EPS -Mauretanien -Maurice -Mauritius -Maus -Mauser -Mausklick/S -Mausoleum -Maxima -Maximaldurchmesser -Maximalforderung/P -Maximalgeschwindigkeit -Maximalgre -Maximalhhe -Maximalsatz -Maximalspannung -Maximalstrom/T -Maximalwert/EPST -Maximalwerttrigger -Maximalzeitraum/STp -Maximalziel -Maxime/N -Maximierens -Maximierung/P -Maximierungsstrategie/N -Maximilian/S -Maximum/S -Maxwell/S -Maya/S -Mayflower/S -Mayonnaise/N -Mazda -Mazedonien/S -Mazurka -McCarthy -McDonalds -Md -Mechanik/R -Mechanikerlehrling -Mechanikkonstruktion -Mechanisieren/JS -Mechanismen -Mechanismus -Mecklenburg/S -Medaille/N -Medaillenanwrter/FNS -Medaillenhoffnung/P -Medaillennhe -Medaillenspiegel -Media -Medianschnitt -Medici/S -Medien -Medienuerung/P -Medieneigenschaften -Medienkommission/P -Medienmix -Medienpolitik -Medienunternehmen/S -Medienzirkus -Medikament/EPST -Medina -Meditation/P -Medium/S -Medizin/R -Mediziner/FNS -Medizinstudent/P -Meer/EPST -Meerechsen -Meerengen -Meeresarm -Meeresbiologie -Meeresbodenschtze -Meeresbuchten -Meeresentsalzung -Meeresgebiet -Meeresgrund -Meereshhe/N -Meeresluft -Meeressicht -Meeresspiegel/S -Meeresstille -Meerestechnik -Meerschaum/ST -Meerschweinchen/S -Meersicht -Meerwasser -Meeting -Megre/N -Megabit -Megabyte -Megafon/ES -Megalith/EPS -Megaphon/EPS -Megatonnen -Megatrend/S -Mehl/S -Mehlpreise -Mehrarbeit/P -Mehraufkommen -Mehraufwand/T -Mehrausgabe/N -Mehrbedarf -Mehrbetrag/Sp -Mehrdeutigkeit/P -Mehreinnahme/N -Mehrens -Mehrerls/EPT -Mehrfachecho/S -Mehrfachsprengkopf -Mehrfachzuweisung/P -Mehrfamilienhaus/Tp -Mehrgewicht -Mehrheit/P -Mehrheitsbeschluss/Tp -Mehrheitsentscheidung/P -Mehrheitskoalition -Mehrheitspartei -Mehrheitsprinzip/S -Mehrheitsvotum/S -Mehrheitswillen/S -Mehrkanalsystem/E -Mehrkapazitt -Mehrkosten -Mehrplatz -Mehrplatzfhigkeit -Mehrplatzsystem/PS -Mehrpreis/EPT -Mehrrendite -Mehrung/P -Mehrverdienst -Mehrwert/EPST -Mehrwertsteuer -Mehrzahl -Mehrzweckraum/STp -Meidens -Meidung/P -Meier/S -Meile/N -Meilenschritt -Meilenstein/EPS -Meineid/EPST -Meinens -Meinung/P -Meinungsuerung/P -Meinungsaustausch/ST -Meinungsbeeinflusser -Meinungsbefragung -Meinungsbild -Meinungsbildner -Meinungsbildung -Meinungsdivergenz/P -Meinungsforscher/N -Meinungsforschung -Meinungsfreiheit/P -Meinungsmache/R -Meinungsmacher/NS -Meinungsumfrage/N -Meinungsumschwung -Meinungsverschiedenheit/P -Meiel/S -Meielanordnung -Meielposition/P -Meielspitzen -Meien -Meise/N -Meister/FS -Meisterhand -Meisterprfung -Meisterschaft/P -Meisterschuss/Tp -Meisterschwimmer -Meisterspiel -Meistertitel/S -Meisterturnier -Meisterwerk/EPST -Meisterwohnung -Mekka/S -Mekong -Mekonggebiet -Melancholie -Melanie/S -Meldemter -Meldeamt/T -Meldebereich -Meldens -Meldepflicht/P -Meldeschluss/Tp -Meldestromkreise -Meldung/P -Melissengeist -Melkmaschine/N -Melodie/N -Melone/N -Melonensuppe -Membran/P -Membranabdeckung -Membrankrper -Memel -Memelgebiet -Memo -Memoiren -Memorandum -Memorymap -Memphis -Mendel/S -Mendelssohn/S -Mengennderung/P -Mengenberechnung -Mengenlehre -Mengenoperation/P -Mengenrabatt/EPS -Mengens -Mengenumsatz -Mengenverband/ST -Mengenzunahme/N -Mengenzuwachs/T -Mengung/P -Meniskus -Meniskusoperation/P -Meniskusriss/EPT -Meniskusverletzung -Mensa -Mensabetrieben -Mensapreise -Mensch/P -Menschenaffen -Menschenalter -Menschenarme -Menschenaufmrsche -Menschenauge -Menschenbild/T -Menschendichte -Menschenfnger -Menschenfeind/T -Menschenfresser -Menschengedenken -Menschengestalten -Menschengewimmel -Menschengruppe -Menschenhandel/S -Menschenhass/T -Menschenherz -Menschenkenner -Menschenkenntnis/q -Menschenkind -Menschenkinder -Menschenkraft -Menschenleben/S -Menschenleiber -Menschenliebe -Menschenmasse/N -Menschenmenge/N -Menschenmitte -Menschenopfer -Menschenpotential/EPS -Menschenpotenzial/EPS -Menschenraub/ST -Menschenrecht/EPST -Menschenrechtskonvention/P -Menschenrechtsverletzung/P -Menschenschicksale -Menschenschlag/Tp -Menschenschlangen -Menschenseelen -Menschenserien -Menschensprache -Menschenverluste -Menschenverstand/T -Menschenwerk -Menschenwesen -Menschenwrde -Menschheit -Menschheitsapostel -Menschheitsentwicklung -Menschheitsfamilien -Menschheitsfragen -Menschheitsgeschichte -Menschheitssache -Menschkopien -Menschlein/S -Menschlichkeit -Menschwerden/JS -Menstruation -Mensur/P -Mentalitt/P -Menthol/S -Mentor/FPS -Men/S -Menfhrung -Menfunktion/P -Mengestaltung -Mengruppe/N -Menkarte/N -Menpunkt/EPST -Menspalte/N -Mensteuerung -Mentechnik -Menvorschlag/STp -Mephisto/S -Meran -Mercedes -Merck -Mergentheim -Meriten -Merkbltter/N -Merkblatt/T -Merker -Merkfhigkeit -Merkliste/N -Merkmal/EPST -Merkmalskombination/P -Merkmalsreduktion/P -Merkposten -Merkschwche/N -Merkur -Merkwrdigkeit/P -Merkzeichen/S -Merlin -Merowinger -Mesner/NS -Mesolithikum -Mesopotamien -Messanordnung/P -Messaufbau -Messaufgabe/N -Messband -Messbecher/NS -Messbereich/EPT -Messblech -Messbrcke/N -Messbcher -Messbuch/ST -Messdaten -Messdatenkontrolle/N -Messdatenbertragung -Messdiener/NS -Messdistanz -Messdose/N -Messeausweise -Messebau -Messebeginn/S -Messebesuch -Messebesucher -Messebeteiligung -Messegebrauch -Messegelnde -Messeingang -Messeingangssignal -Messeinrichtung/P -Messeleitung -Messelement/EPST -Messens -Messentfernung/P -Messeorten -Messepokal -Messepreis/EPT -Messer/N -Messergebnis/Qq -Messerklinge/N -Messerschmiedewaren -Messerschneide/N -Messerstecher -Messerstecherei/P -Messerstich/EPS -Messeschlager -Messesonderwagen -Messestadt -Messestand/T -Messezentrum -Messfehler -Messfhler -Messfunktion/P -Messgenauigkeit -Messgert -Messgre/N -Messina -Messing -Messingaufnehmer -Messingblech -Messingdeckel -Messingdraht -Messinggehuse -Messingknpfe -Messingpranger -Messingschatulle -Messingschild -Messingschilder -Messingteile -Messingwappen -Messinstrument/EPS -Messinterface/S -Messkabel/N -Messkanle/N -Messkanal/S -Messkpfe/N -Messkopf/ST -Messkurve/N -Messlnge/N -Messlatte/N -Messleitung/P -Messlogik -Messmethode/N -Messmodule/N -Messner/NS -Messobjekt -Messort/EPST -Messprinzip -Messprobe/N -Messprogramm -Messprotokoll/EPS -Messpunkt/EPST -Messrate/N -Messraum/STp -Messreihe/N -Messsignal/S -Messsituation/P -Messspannung/P -Messstab -Messstelle/N -Messstellennummer -Messstrecke/N -Messsystem/EPS -Messtechnik -Messung/P -Messverfahren -Messvolumen/S -Messvorgang/ST -Messwert/EPST -Messwertanzeige/N -Messwertaufnahme -Messwertaufnehmer/N -Messwertausgabe -Messwerterfassung -Messwertrechner/N -Messwertsammler -Messwertschwankung/P -Messwertspitzen -Messwertbertragung -Messwertverflschung -Messwertvorverarbeitung -Messwesen/S -Messzahl/P -Messzeit/P -Messzyklen -Messzyklus -Metabolismus -Metaebene/N -Metageschfte -Metall/ES -Metallarbeiter/FNS -Metallarbeiterbundes -Metallarbeitergewerkschaft -Metallarbeiterstreik -Metallarbeitgeber -Metallbau -Metallbaufirma -Metallbereich -Metallbeschichtung -Metallbetriebe -Metallbranche -Metallbgel -Metallfsser -Metallfacharbeiter/FNS -Metallfilmwiderstnde -Metallgarnitur -Metallgegenstnde -Metallgehuse -Metallhndler/FNS -Metallhalter -Metallhttenwerke -Metallindustrielle/NR -Metallindustrien -Metallisierung -Metallkasten -Metallklammer -Metalllegierung/P -Metallmarkt/Tp -Metallmaterial -Metallse/N -Metalloxyd/EPS -Metallpreise -Metallrahmen -Metallrumpf -Metallschicht/P -Metallschichtwiderstand -Metallschlitten -Metallspne -Metallsplitter -Metallstreifen -Metallteilen -Metallurgie -Metallverkleidung/P -Metallwaren -Metallwarenfabrik -Metallwerk/E -Metallwesen -Metamorphose/N -Metapher/N -Metaphysik/P -Meteor/EPS -Meteoritenblock -Meteoriteneinschlge -Meteorologe/N -Meteorologie -Meter/N -Metereologe/N -Meterware/N -Methangase -Methode/N -Methodenauswahl -Methodik/P -Methodist/P -Methodologie/N -Metier/S -Metrik/P -Metronom -Metropole/N -Metropolis -Metternich/S -Metz -Metzelei/P -Metzger/FNS -Metzgerei/P -Metzgereiwagen -Metzgergasse -Metzgerladen -Meuchelmord/T -Meute/N -Meuterei/P -Meuterer -Meutererschiff -Mexikaner/FNS -Mexiko -Meyer/S -Michael/S -Michaela/S -Michelangelo/S -Michelin -Mick/S -Microsoft/S -Midas -Midlands -Midlifecrisis -Mieder -Miederfabrik -Miederindustrie -Miederwaren -Mief/S -Miene/N -Mienenspiel/S -Miesmuschel -Mietanhebung -Mietanspruch -Mietappartement -Mietbeihilfe/N -Mietbrgschaft -Mietdroschken -Mietebemessung -Mieteinknfte -Mieteinnahme -Mietens -Mieter/FNS -Mieterhhung -Mieterorganisation/P -Mieterschaft -Mieterschutz -Mieterschutzbund -Mietevorauszahlung -Mietforderung/P -Mietfreigabe -Mietgarantie -Mietgesetz -Miethaus/Tp -Miethhe -Mietkaution/P -Mietkndigung/P -Mietmutter -Mietobjekt/EPS -Mietpreis/EPT -Mietpreiserhhung/P -Mietpreisgarantie -Mietpreisreform -Mietrecht/S -Mietrechtsschutz -Mietshaus/Tp -Mietsicherheit -Mietsstube -Mietstopp -Mietstreit -Mietstreitigkeit/P -Mietung/P -Mietverbilligung -Mietverhltnis/Qq -Mietvertrag/STp -Mietwagen -Mietwagenbenutzung -Mietwert -Mietwohnung/P -Mietwohnungsblock -Mietzins/PT -Mietzinsbegrenzung -Mieze/N -Migrne -Migration/P -Mikado -Mikrobe/N -Mikrobiologie -Mikrochip/S -Mikrocomputer/N -Mikrocontroller/NS -Mikroelektronik -Mikrofilm/EPT -Mikrofilmsysteme -Mikrofilmtechnik -Mikrofon/EPS -Mikroformat -Mikroforschung -Mikrogramm -Mikrometer/NS -Mikroorganismen -Mikroorganismus -Mikrophon/EPS -Mikroprozessor/PS -Mikroprozessortechnik -Mikrorechner -Mikroschaltung/P -Mikroskop/S -Mikrostrukturen -Mikroverfilmung -Mikrowachs/T -Mikrowelle/N -Mikrowellenofen -Mikrowelten -Milan/EPS -Milbe/N -Milch -Milchanlieferung/P -Milchdauerwaren -Milcheiwei/EPT -Milcherzeugerpreis/EPT -Milcherzeugnis/Qq -Milcherzeugung -Milchflasche/N -Milchfrhstck -Milchgebiss/EPT -Milchglsern -Milchglas/T -Milchkaffee -Milchkanne/N -Milchkhe/N -Milchkuh -Milchleistung -Milchmann -Milchpreis/T -Milchpreiserhhung -Milchproben -Milchproduktion -Milchpulver/S -Milchreis/T -Milchschorf -Milchstrae -Milchstube -Milchberschuss/Tp -Milchversorgung -Milchvieh -Milchviehbestnde -Milchzhne/N -Milchzahn -Milderns -Milderung/P -Milderungsgrnde/N -Milderungsgrund/T -Mildttigkeit -Milieu/S -Milieuschilderung/P -Militr/S -Militrrzte/FN -Militradministration -Militrakademie -Militranlagen -Militrarzt/T -Militrattach/S -Militrausschuss/Tp -Militrbasis -Militrbehrde/N -Militrberater -Militrblcke -Militrbndnis/Qq -Militrbudget -Militrdienst/T -Militrdiktator -Militrdiktatur -Militreingang -Militreinheit/P -Militreinsatz -Militrexperte/N -Militrfilm/EP -Militrflugplatz -Militrflugzeug/E -Militrgericht/T -Militrgesetz -Militrgesprch -Militrgouverneure -Militrhaushalt -Militrherrschaft -Militrhospital -Militrjunta -Militrjunten -Militrkantine -Militrkasino -Militrkommandant -Militrkommandeur -Militrkommentator -Militrkonvention/P -Militrkrankenwagen -Militrlager -Militrlazarett -Militrmacht -Militrmarsch -Militrmaschine -Militrmaterial -Militrmission/P -Militrmuseum -Militrnachschubwagen -Militrparade -Militrpartei -Militrpersonal -Militrpolizei -Militrpolizisten -Militrposten -Militrputsch/E -Militrrat -Militrrecht/S -Militrregierung -Militrregime/S -Militrrevolte -Militrschulen -Militrseelsorge -Militrstratege -Militrsttzpunkt -Militrsymphonie -Militrtradition/P -Militrtransporte -Militrtribunal -Militrwachen -Militrwesen -Militrzeit -Militarist/P -Military -Miliz/P -Milizionr/EPS -Milizoberst -Mill -Mill. -Millennium/S -Milliardr/EFPS -Milliarde/N -Milliardenaufwand -Milliardenbetrge -Milliardengrenze -Milliardenhhe -Milliardenprogramme -Milliardenteile -Milliardenverluste -Milliardstelsekunde/N -Milligramm -Millimeter/NS -Millinchen -Million/P -Millionr/EFPS -Millionrsfrau -Millionrssohn -Millionrsvilla -Millionenbetrag/STp -Millionendiebe -Millionenerbe -Millionenexport -Millionengrenze -Millionenheer/T -Millionenhhe -Millionenruber -Millionenraub -Millionenschden -Millionenschaden -Millionenstadt -Millionentreffer -Millionenvermgen -Millionenwerte -Millionenwirbel -Millisekunde/N -Milz -Milzriss/EPT -Mime/N -Mimik -Mimikry -Mimose -Minarett -Minden -Mindereinnahme/N -Minderheit/P -Minderheitenfhrer/S -Minderheiteninteresse/N -Minderheitenposition/P -Minderheitenproblem/EPS -Minderheitenschutz/T -Minderheitenvertrag/STp -Minderheitsaktionr/EPS -Minderheitsbeteiligung -Minderheitsgruppe -Minderheitsregierung -Minderheitssenat -Minderheitsvotum -Minderleistung -Minderns -Minderung/P -Minderwertigkeit -Minderwertigkeitsgefhl/EPST -Minderwertigkeitskomplex/EPT -Minderzahl/P -Mindestabnahmemenge/N -Mindestalter -Mindestaltersrente -Mindestamplitude -Mindestanforderung/P -Mindestanlage -Mindestanzahl -Mindestanzahlung -Mindestauftragsmenge -Mindestausstattung -Mindestbeitrag/STp -Mindestbelegung -Mindestbestellmenge -Mindestdauer -Mindestdividende -Mindestdruck/S -Mindesteinkommen -Mindesteinsatz -Mindestentfernung -Mindestforderung/P -Mindestfrachten -Mindestgehalt -Mindestgeldumtausch -Mindestgeschwindigkeit -Mindesthhe -Mindestjahresverdienst -Mindestkapital -Mindestkenntnis/q -Mindestkosten -Mindestlhne -Mindestlohn/T -Mindestma/ET -Mindestpegelstand -Mindestpreis/ET -Mindestrate -Mindestrendite -Mindestreserveauflagen -Mindestreservegrenze -Mindestreserven -Mindestreservepflichten -Mindestreservestze -Mindestreservesystem -Mindeststundenlhne -Mindestumsatz -Mindestumtausch -Mindestumtauschsatz -Mindestwert/S -Mine/N -Minen -Minenaktien -Minenexplosion/P -Minengefahr -Minengesellschaften -Minenkurse -Minensuberung -Minensperren -Minenstck -Minensucher/S -Minenwerte -Mineral -Mineralbdern -Mineralbrunnen/S -Mineralien -Minerall/EPS -Minerallausfuhren -Minerallbereich -Minerallbesteuerung -Minerallforschung -Minerallgeschft -Minerallkonzern/E -Minerallmarkt/STp -Minerallsteuern -Minerallunternehmen -Mineralprodukt -Mineralrechte -Mineralwasser/S -Mineralwasserindustrie -Ming/S -Mini/S -Miniatur/P -Miniaturgolfplatz -Miniaturportrt -Miniaturpumpe -Minibarren -Minicar -Minicomputer/NS -Minicrash -Minidrucker -Miniformat -Minigolf/S -Minihosen -Minikleider -Minikriege -Minikrise -Minima -Minimdchen -Minimalbetrieb -Minimalhhe -Minimalkonfiguration -Minimalkosten -Minimalmengen -Minimalpreis/EPT -Minimalstand -Minimalsystem/S -Minimierens -Minimierung/P -Minimum -Minimumverfahren -Miniprinter/S -Minirakete -Minircke -Minislip/S -Minister/FNS -Ministeramt/T -Ministerausschuss/Tp -Ministerberichte -Ministerbesprechung -Ministergremium -Ministerialabteilung -Ministerialbeamte/NR -Ministerialbehrden -Ministerialdirektoren -Ministerialrat/S -Ministerien -Ministerium/S -Ministerkollege -Ministerkollegin -Ministerkomitee/S -Ministerkonferenzen -Ministerliste -Ministermannschaft -Ministerpension/P -Ministerprsident/P -Ministerrte/N -Ministerrang -Ministerrat/T -Ministerratssitzung/P -Ministerratstreffen -Ministersessel -Ministerstellvertreter -Ministertreffen -Ministervilla -Ministerwechsel -Ministeuersatz -Ministrant/P -Minitransaktion/P -Minnesnger -Minolta -Minoritt/P -Minotauren -Minotaurus -Minustemperaturen -Minuszeichen/S -Minute/N -Minutenbereich -Minutenereignis/Qq -Minutenzeiger/NS -Mio -Mio. -Mips -Miriam/S -Misanthrop/P -Mischanlage/N -Mischbatterie/N -Mischehe/N -Mischens -Mischer -Mischerdse -Mischerflaschen -Mischerteil -Mischform/P -Mischgarne -Mischgewebe -Mischkost -Mischling/EPS -Mischpreis/ET -Mischpult/EPST -Mischtext -Mischung/P -Mischvorrichtung -Misere/N -Missachtens -Missachtung/P -Missbehagens -Missbildung/P -Missbilligens -Missbilligung/P -Missbruche/N -Missbrauch/ST -Missdeutens -Missdeutung/P -Misserfolg/EPT -Missernte/N -Missetter/N -Missetat/P -Missfallenskundgebung/P -Missgeburt/P -Missgeschick/EPST -Missgunst -Misshandelns -Misshandlung/P -Missinformation/P -Mission/P -Missionar/EFPS -Missionierens -Missionierung/P -Missionsarbeit -Missionschef/S -Missionslnder/N -Missionsstadt -Mississippi -Missklang/STp -Misskredit -Missmanagement -Missmut/S -Missstnde/N -Missstand/T -Missstimmung/P -Misstnde/N -Misstne/N -Misston/S -Misstrauens -Misstrauensvoten -Misstrauensvotum/S -Missvergngen/S -Missverhltnis/Qq -Missverstndnis/Qq -Misswahl -Misswirtschaft/P -Mist -Mister -Mistgabel/N -Misthufen -Misthaufen/S -Mistigkeit/P -Mistkfer/N -Mistral -Mistvieh -Mitaktionr/EPS -Mitarbeit/R -Mitarbeiter/FNS -Mitarbeiterstab -Mitautor/FPS -Mitbegrnder/FNS -Mitbenutzen/JS -Mitbenutzungsrecht -Mitberatung -Mitbesitz/RT -Mitbesitzer/NS -Mitbestimmens -Mitbestimmung/P -Mitbestimmungsrecht/EPS -Mitbeteiligung -Mitbewerber/N -Mitbewohner/FNS -Mitbringsel -Mitbrger/FNS -Miteigentmer -Miteigentum -Mitentscheidung -Mitentscheidungsrecht/EPS -Mitentscheidungsverfahren/S -Mitesser/NS -Mitfahrer -Mitfavorit -Mitfinanzierung -Mitfhrens -Mitfhrung/P -Mitgefhl/EPS -Mitgesellschafter -Mitgestaltens -Mitgestalter -Mitgestaltung/P -Mitgift -Mitglied/RST -Mitgliederbeitrag/STp -Mitgliederkreis/EPT -Mitgliederliste/N -Mitgliederrat -Mitgliederschwund -Mitgliederstaat/P -Mitgliederumsatz -Mitgliederversammlung/P -Mitgliederwerbung -Mitgliederzahl -Mitgliederzeitschrift -Mitgliedsbanken -Mitgliedsbeitrag/STp -Mitgliedschaft/P -Mitgliedsfirmen -Mitgliedskarte/N -Mitgliedskirchen -Mitgliedsland/T -Mitgliedsnummer -Mitgliedsorganisation/P -Mitgliedsregierung -Mitgliedsstaat/T -Mitgliedstaaten -Mitgliedsverbnde -Mitgliedswerke -Mitgrnder/N -Mitgrnderin -Mitherausgeber/FNS -Mithras -Mitinhaber -Mitkmpfer/NS -Mitkonkurrent/P -Mitkopplung -Mitlufer/NS -Mitlaut/EPT -Mitleid/ST -Mitmensch/P -Mitmieter/NS -Mitnahme -Mitraucher -Mitschnitt/S -Mitschler/N -Mitschuld -Mitspieler/N -Mitsprache -Mitsprachemglichkeit/P -Mitspracherecht/EPST -Mitsubishi -Mittter -Mittterschaft -Mittag -Mittagessen -Mittagshhe -Mittagsluten -Mittagsmen -Mittagsmusik -Mittagspause/N -Mittagspresse -Mittagsschicht -Mittagssitzung -Mittagssonne -Mittagsstunde/N -Mittagswrme -Mittagszeit -Mittagszeitung -Mitte -Mitteilens -Mitteilung/P -Mitteilungsbltter/N -Mittel -Mittelachse/N -Mittelalter/S -Mittelamerika -Mittelanzapfung -Mittelasien -Mittelbehrden -Mittelbereich -Mittelbetrieb/EPS -Mittelbleche -Mittelebene/N -Mitteleingang -Mittelengland -Mitteleuropa -Mittelfinger -Mittelfranken -Mittelgebirge -Mittelgewichtklasse -Mittelgewichtler -Mittelgruppen -Mittelholland -Mittelitalien -Mittelkonsole -Mittelkurs/EPT -Mittellinie/N -Mittelmchte -Mittelmigkeit -Mittelmanagement -Mittelma -Mittelmeer/S -Mittelmeerfahrt -Mittelmeerhafen -Mittelmeerkste -Mittelmeerlnder -Mittelmeerraum -Mittelmeersonne -Mittelmeertief -Mittelns -Mittelohrentzndung -Mittelpunkt/EPST -Mittelraum/STp -Mittelreich -Mittelrhein -Mittelschaltung -Mittelschiff -Mittelschler/N -Mittelschulwesen/S -Mittelsmnner -Mittelsmann -Mittelspannungsbereich -Mittelsperson -Mittelstadt -Mittelstand/T -Mittelstandskreise -Mittelstandspolitik -Mittelstandsproblem/EPS -Mittelsteg/S -Mittelstellung -Mittelstrecke/N -Mittelstreckenraketen -Mittelstck -Mittelstufe/N -Mittelweg -Mittelwelle/N -Mittelwert/EPS -Mittelwertbildung -Mittelwesten/S -Mittenabgriff -Mittenfrequenz -Mitterand/S -Mitternacht -Mitternachtscocktail -Mitternachtssonne -Mitternachtsstunde -Mitterrand/S -Mittler/FNS -Mittlerfunktion/P -Mittlerstellung -Mittlung/P -Mittsommernacht -Mittwoch/EP -Mittwochmittag -Mittwochnachmittage/N -Mittwochsitzung -Mittwochsverhandlung -Mitunterzeichner/NS -Mitursache/N -Mitverantwortlichkeit -Mitverursacher -Mitwelt -Mitwirkens -Mitwirkung/P -Mitwirkungsbefugnis/q -Mitwirkungspflicht/P -Mitwissens -Mix -Mixer -Mixgerte -Mixtur/P -Mbel/NS -Mbelausstellung -Mbelbranche -Mbelfabrikant -Mbelfabrikation -Mbelgeschft -Mbelhndler/N -Mbelhersteller -Mbelindustrie -Mbelkaufmann -Mbelstck/EPT -Mbelverkufer -Mbelvertreter -Mbiusband/S -Mchtegern -Mglichkeit/P -Mnche/N -Mnchengladbach/S -Mnchstum -Mpse -Mrder/FNS -Mrser/NS -Mrtel/S -Mrtelgeruch -Mwe/N -Mob/S -Mobilfunk/S -Mobiliar/S -Mobilien -Mobilisation -Mobilitt -Mobilmachen/JS -Mobilmachungsgesetz -Mobilwettbewerb -Modalitt/P -Mode/N -Modeartikel/NS -Modeatelier -Modeentwicklung -Modefachkreisen -Modefarbe -Modefreiheit -Modefrhling -Modegeheimnis/Qq -Modegetrnke -Modegruppe -Modehaus/Tp -Modeheft -Modeindustrie -Modejournalistin -Modeknige -Modelaune -Modell/EPS -Modellanlieferung -Modellanstze -Modellball -Modellbildung/P -Modellcharakter -Modellebene/N -Modelleisenbahn -Modellfall -Modellierens -Modellierung/P -Modellkreisen -Modellkche -Modellsung -Modellpolitik -Modellpuppe -Modellreihe -Modellstdte -Modellstrategen -Modellstrukturierung -Modellstudie/N -Modellversuch/EPS -Modellvorstellung/P -Modem/S -Modemesse -Modemkabel -Modemuffel -Modemverbindung/P -Moderation -Moderator/FP -Moderichtung/P -Modernisierens -Modernisierung/P -Modernisierungsgrad -Modernitt -Modesalon -Modeschau/P -Modeschmuck -Modeschpfer -Modesituation/P -Modesportart -Modestar/S -Modetnze -Modetrend/S -Modevernderung -Modewaren -Modewrter/N -Modewort -Modezeitschriften -Modi -Modifikation/P -Modifizierens -Modifizierung/P -Modul/EPS -Modula -Modularisierens -Modularisierung/P -Modularisierungstechnik/P -Modularitt -Modulation/P -Modulgrenze/N -Modulkonstellation -Modulkonzept/EPS -Modulschnittstelle/N -Modus -Moduswort -Mogadischu -Mogulreich -Mohammed/S -Mohammedaner/FNS -Mohikaner/NS -Mohn/S -Mohnanbauverbot -Mohr/P -Mohrenkopf -Moir -Mokka -Mokkatassen -Mol/EPS -Moldau -Molekl/EPS -Moleklformel -Moleklkette -Molekularchemie -Molekulargewicht -Moliere/S -Molkereibetrieb -Molkereibutter -Molkereierzeugnis/Qq -Molkereiprodukte -Moll -Molukken -Molybdn -Mombasa -Moment/EPST -Momentaufnahme/N -Momo/S -Monaco -Monarch/P -Monarchie/N -Monarchist/P -Monat/EPST -Monatsabonnement/S -Monatsanfang -Monatsauslese -Monatsbeitrge -Monatsbericht -Monatsdefizit -Monatsende -Monatsergebnis/Qq -Monatsetat -Monatsgehlter/N -Monatsgehalt/T -Monatsgelder/N -Monatslohn -Monatsmiete/N -Monatsproduktion -Monatsraten -Monatsschrift -Monatsumsatz -Monatsware -Monatszeitschrift -Mond/EPT -Mondamin -Mondandachten -Mondboden -Mondbote -Monddurchmesser -Mondfhre -Mondfahrer -Mondfahrten -Mondfahrzeug -Mondfinsternis/q -Mondflug/STp -Mondkreisbahn -Mondlandefahrzeug -Mondlandegerten -Mondlandung -Mondmdchen -Mondmensch -Mondnest -Mondphasen -Mondpreis/EPT -Mondreise/N -Mondschein/PS -Mondschiff/T -Mondsichel -Mondstation/P -Mondtag -Mondumkreisung/P -Mondzinsen -Moneten -Mongole/FN -Mongolei -Monika/S -Monitor/EPS -Monitorauflsung/P -Monitorausschnitt -Monitorprogramm/EPS -Monitorschnittstelle/N -Monoblockachse -Monoblockausleger -Monogamie -Monogramm -Monographie/N -Monokultur/P -Monolog/P -Monomanie/N -Monomorphismen -Monomorphismus -Monopol/P -Monopolabgabe -Monopolauftrag/STp -Monopolgesellschaft -Monopolgesetz -Monopolist/P -Monopolkapitalismus -Monopolorganisation/P -Monopolstellung/P -Monopolsteuer -Monopoly -Monostruktur/P -Monotonie -Monotype/N -Monroe/S -Monster/N -Monsterwesen/S -Monsunregen -Mont/E -Montag/EP -Montageanleitung -Montageanweisung -Montagebnder -Montageband -Montagegehuse -Montagehallen -Montagehaus/Tp -Montagehinweise -Montagekosten -Montagemglichkeit -Montageplatte -Montageplatz -Montagerahmen -Montageschritte -Montageschwierigkeit/P -Montagestellung/P -Montagevorbereitung -Montagewand -Montagewerk -Montagewinkel -Montagmittag -Montagmorgen -Montagnachmittag -Montagsrunde -Montagssitzung -Montagtermin -Montangesellschaften -Montanholding -Montanindustrie -Montanmodell -Montanstadt -Montanunion -Montanvertrag/Tp -Montanwerte -Montanwirtschaft -Montenegro -Monteur/EFPS -Montgomery/S -Montpellier -Montreal -Monument/EPST -Monumentalbauten -Monumentalgemlde -Monumentalmalerei -Moor/EPST -Moorlandschaften -Moos/EPT -Moosgummi -Mooshaus/Tp -Moped/S -Mopedmotor/PS -Mopp/S -Mops -Morne/N -Moral -Moralbegriff/EPS -Moralist/P -Moralkodex -Moraltheologie -Moralvorschriften -Morast -Morbiditt -Morbus -Morchel -Mord/T -Mordanschlag/STp -Mordens -Mordfall/Sp -Mordgestndnis/Qq -Mordinstinkte -Mordio -Mordkeller -Mordkommission/P -Mordkomplott -Mordlust -Mordplan -Mordprozess/EPT -Mordschuss/Tp -Mordsgaudi -Mordsgewitter -Mordtaten -Mordverdacht -Mordvergngen -Mordversuch/E -Mordwaffe -Mordwerkzeuge -Morgana -Morgenandacht -Morgenausgaben -Morgenbad -Morgenkaffee/S -Morgenland/T -Morgenluft -Morgenmantel -Morgenmusik -Morgennachrichten -Morgenpresse -Morgenrte -Morgenrock -Morgenstern -Morgenstunde/N -Morgenverkehr/S -Morgenzeitung/P -Mormone/N -Mormonenkirche -Moron/S -Morphismen -Morphismus -Morris -Morseapparat -Morsebotschaft -Mosaik/EPS -Mosambik -Moschee/N -Mosel -Mosers -Moses -Moskau/RS -Moskauer/FNS -Moskauhrigkeit -Moskito/S -Moskitonetze -Moskowiter -Moslem/S -Most/T -Motel -Motherboard/S -Motiv/EPS -Motivation/P -Motivierens -Motivierung/P -Motocross -Motor/PS -Motoransteuerung -Motorauslastung -Motorbelastung -Motorblock -Motorboot/EPS -Motordrehzahl -Motorenfabrik -Motorenlrm -Motorenl/S -Motorflugzeug -Motorhaube -Motorik -Motorkennlinie -Motorkolben -Motorkraft -Motorleistung -Motorola -Motorrad -Motorradfabrik -Motorradhndler/FNS -Motorradrennfahrer -Motorraum/STp -Motorroller -Motorsgen -Motorschden -Motorschaden/S -Motorschiff/ST -Motorsport/S -Motorsportler -Motorstart -Motorberwachung -Motorwagen -Motte/N -Mottenkiste/N -Motto/S -Mountpoint/S -Mozart/S -Mozzarella/S -Mr -Mrd -Mrd. -Mcke/N -Mckenschwarm -Mdigkeit -Mhle/N -Mhlenbetrieb -Mhlenkanal -Mhlheim -Mhsal -Mll/R -Mllabfuhr -Mllabfuhrgebhren -Mllberg -Mlldeponie/N -Mlleimer -Mller/FNS -Mllermeister -Mllhalde -Mllkasten -Mllkippe/N -Mllschlucker/NS -Mlltonne/N -Mllverbrennung -Mnchen/RS -Mnchener/FNS -Mnchhausen/S -Mnchner/FNS -Mndel -Mndens -Mnder/N -Mndigkeit -Mndung/P -Mnster -Mnzer -Mnzordnung -Mnzprgung -Mnzrecht -Miggang -Msli/S -Mtter/MN -Mttergenesungswerk -Mtze/N -Mtzendieb -Mtzenindustrie -Muffe/N -Muffenleiste/N -Mulatte/N -Mulde/N -Multi/S -Multimedia -Multimediakonzern -Multimilliarden -Multimillionr/EFPS -Multiplechoicefrage/N -Multiplechoiceverfahren/S -Multiplikation/P -Multiplikationsteil/EPS -Multiplikator/PS -Multiplikatoreffekt -Multitasking -Mumie/N -Mumifizieren/JS -Mumm/S -Mund/ET -Mundart/P -Mundgeruch -Mundharmonika -Mundpflege -Mundstck/S -Mundwerk -Mundwinkel -Munition -Munitionsanlage -Munitionsdepot -Munitionsfabrik -Munitionslager/S -Munitionsvorrat -Murks -Murksbehebung/P -Mue -Muschel/N -Muschelkrebs/EPT -Muschi/S -Muse/P -Museum/S -Museumsbauten -Museumsdirektoren -Museumsexemplar -Museumsinstitute -Museumsstck -Musical/S -Musik/R -Musikanlagen -Musikanten -Musikautomat -Musikberieselung -Musikbox -Musiker/FNS -Musikexperten -Musikfestspiele -Musikforschern -Musikfreunde -Musikhalle -Musikhochschule/N -Musikinstrument/EPST -Musikkapellen -Musikkorps -Musikkritik -Musikkultur -Musikladen -Musikleben -Musiklexikon -Musikliebhabern -Musikliteratur -Musikpdagoge -Musikpdagogik -Musikpavillon -Musikprofessor/S -Musikschau -Musiksendung -Musikstck/EPS -Musikstudio/S -Musiktruhe -Musikuntermalung -Musikunterricht -Musikus -Musikverein/S -Musikwettbewerb -Musikwissenschaftler -Musikzeitschrift -Muskatnuss/p -Muskel/NS -Muskelanriss/EPT -Muskelbewegung -Muskelfaser -Muskelkrfte/N -Muskelkraft -Muskelmnner -Muskelmann -Muskelriss/EPT -Muskelspiel -Musketier/EPS -Muskulatur -Muslim/EPS -Musselin/S -Musselinkleid -Mustang/S -Muster/JS -Musterabkommen/S -Musterbau/S -Musterbaum/STp -Musterbeispiel/EPT -Musterbestellung -Musterbetrieb/EPT -Musterbild -Musterdepot/S -Musterehe -Musterexemplar/EPS -Musterfall/Sp -Musterformular -Mustergatte/N -Mustergerte/N -Mustergter/N -Musterkombination -Musterlieferung -Mustermesse -Musterprozess/EPT -Musterschilder -Musterschler/NS -Mustersendung/P -Mustersensor/P -Musterstck/EPS -Mustertext/EPST -Musterungsarzt/T -Musterwohnung/P -Mut/ST -Mutant/P -Mutation/P -Mutlosigkeit -Mutmaens -Mutmaung/P -Muts -Mutter/NS -Mutterboden -Mutterglck -Mutterhaus -Mutterkorn -Mutterlnder -Mutterland/T -Mutterliebe -Muttermal/EPS -Mutterrechner -Mutterrecht -Mutterschaft -Mutterschiff/T -Mutterschutz -Muttersprache/N -Mutterstadt -Muttertyp -Mutti -Mux -MwSt -MwSt. -Myriade/N -Myrre/N -Myrrhe/N -Mysterien -Mysterienkult -Mysterienspiel -Mysterium -Mystifikation -Mystik/R -Mystiker/FNS -Mystizismus -Mythen -Mythologie -Mythos -NASA -NDP -NEC -NFS -NL -NRW -NS -NSU -NTT -Nchstenliebe -Nchte/N -Ngel/N -Nharbeiten -Nherns -Nherung/P -Nherungsfhler/S -Nherungsschalter/NS -Nherungssensoren -Nherungswert/EPST -Nhkenntnis/q -Nhmaschine/N -Nhmittel -Nhrbier -Nhrboden/S -Nhrkrfte/N -Nhrmittel/NS -Nhrmittelfabrik/P -Nhrstoff/P -Nhrstoffansprche -Nhrwert/EPT -Nsse -Nabel/N -Nabelschnur -Nachahmens -Nachahmer -Nachahmung/P -Nachahmungsfhigkeit -Nacharbeit/J -Nacharbeitens -Nachbar/FNS -Nachbarast -Nachbarausbau -Nachbarbedienung -Nachbarbetrieb -Nachbardatei -Nachbardaten -Nachbardrfer -Nachbardorf -Nachbarfunktion/P -Nachbargemeinde -Nachbargert/E -Nachbargestelle -Nachbargruppe/N -Nachbarkabel -Nachbarkinder/N -Nachbarkommunikation -Nachbarkreis/EPT -Nachbarlnder -Nachbarland/T -Nachbarort -Nachbarschaft/P -Nachbarschilde -Nachbarschnittstelle/N -Nachbarskinder/N -Nachbarstaat -Nachbarstadt -Nachbarsteuergert -Nachbarsteuerung/P -Nachbartisch -Nachbarverbindung -Nachbarverkabelung -Nachbarzimmer -Nachbau/S -Nachbearbeiten/JS -Nachbeben -Nachbedingung/P -Nachbehandeln/JS -Nachberechnen/JS -Nachbereitens -Nachbereitung/P -Nachbesserns -Nachbesserung/P -Nachbestellens -Nachbestellung/P -Nachbesteuerung -Nachbestckung -Nachbezahlung -Nachbildens -Nachbildung/P -Nachdenkens -Nachdenklichkeit -Nachdruck/S -Nacheichung -Nacheiferns -Nacheiferung/P -Nacherzhlens -Nacherzhlung/P -Nachfahre/N -Nachfolgefirma -Nachfolgegesellschaft -Nachfolgekandidat/P -Nachfolgelnder -Nachfolgemodell/EPS -Nachfolgeorganisation/P -Nachfolgeprojekt/EPS -Nachfolger/FNS -Nachfolgerakete -Nachfolgerfrage -Nachfolgerschaft/P -Nachfolgestaaten -Nachfolgeunternehmen -Nachfolgewert/EPST -Nachfolgezustand/ST -Nachforderns -Nachforderung/P -Nachforschens -Nachforschung/P -Nachfhrregelung -Nachgang -Nachgeburt -Nachgeschmack -Nachgetrimmt -Nachgiebigkeit -Nachhilfe -Nachhilfekurs/EPT -Nachhilfestunden -Nachhilfeunterricht -Nachhinein -Nachholbedarf/S -Nachholtests -Nachhut -Nachkauf/Sp -Nachklang/Sp -Nachkmmlinge/N -Nachkommastelle/N -Nachkommens -Nachkommenschaft -Nachkriegs -Nachkriegsbhne -Nachkriegsdeutschland -Nachkriegseinwanderer -Nachkriegserfolge -Nachkriegseuropa -Nachkriegsfilm -Nachkriegsjahr/EPS -Nachkriegskabinett -Nachkriegskredit -Nachkriegslast -Nachkriegsleben -Nachkriegspolitik -Nachkriegsrekord -Nachkriegsschlager -Nachkriegstheater -Nachkriegsverfassung -Nachkriegswitz -Nachkriegszeit/P -Nachlssigkeit -Nachladens -Nachladeprogramm/EPS -Nachladung/P -Nachlass/Tp -Nachlauf/Sp -Nachlaufregelung/P -Nachlaufsteuerung -Nachleben -Nachleuchten -Nachlieferns -Nachlieferung/P -Nachmieter/NS -Nachmittag/EP -Nachmittagskleid -Nachmittagskonzert -Nachmittagsschicht -Nachmittagssitzung -Nachmittagsspaziergang -Nachmittagsstunde -Nachmittagsverhandlung -Nachmittagsvorstellung/P -Nachmittagszeit -Nachnahme -Nachname/N -Nachnamen/S -Nachprfens -Nachprfung/P -Nachraubversuche -Nachraubzeit -Nachreichen/JS -Nachricht/P -Nachrichtenagentur/P -Nachrichtenbeschaffung -Nachrichtenblatt -Nachrichtenbro -Nachrichtendienst/EPST -Nachrichtenempfnger -Nachrichtenmagazin/EPS -Nachrichtenoffiziere -Nachrichtenorgane -Nachrichtenrakete -Nachrichtenredaktion/P -Nachrichtensatellit -Nachrichtensendung/P -Nachrichtensperre -Nachrichtensprecher -Nachrichtentechnik -Nachrichtenverarbeitung -Nachrichtenwesen/S -Nachrstens -Nachrstung/P -Nachrucken -Nachruhm/S -Nachsaison -Nachsaisonpreise -Nachschaffenden -Nachschau -Nachschlag/Sp -Nachschlagebuch -Nachschlagewerk/EPS -Nachschlssel/N -Nachschbe/N -Nachschub/ST -Nachschubfahrzeuge -Nachschubhfen -Nachschubhafen -Nachschublinie -Nachschubweg/E -Nachschuss/Tp -Nachschwinger -Nachsetzautomatik -Nachsetzbewegung -Nachsetzen/S -Nachsicht -Nachsilbe/N -Nachspeise -Nachsteuer/N -Nacht -Nachtangriff -Nachtarbeit/P -Nachtasyl -Nachtbar/S -Nachtbummler -Nachtbus -Nachtclub/S -Nachtdepesche -Nachtdienst -Nachteil/EPS -Nachtexpress/EPT -Nachtfahrt/P -Nachtfliegerangriff -Nachtflug/STp -Nachtfrost/T -Nachtgespenster -Nachthemd/P -Nachtisch -Nachtklub -Nachtklubbesitzer -Nachtkonzert -Nachtleben -Nachtlokal/P -Nachtluft -Nachtmahl -Nachtmusik -Nachtportier -Nachtrnkung -Nachtrag/STp -Nachtragsetat -Nachtragsliste -Nachtruhe -Nachtschattengewchs/E -Nachtschichtarbeit -Nachtschichten -Nachtschlaf -Nachtschwrmer -Nachtschwester -Nachtsitzung -Nachtstudio -Nachtstunde/N -Nachttisch -Nachtvorstellung/P -Nachtwache -Nachtwandler -Nachtwind -Nachtzeit -Nachtzug/STp -Nachtzuschlag/STp -Nachuntersuchung -Nachverbrennung -Nachwahlen -Nachwahlsieg -Nachwehe/N -Nachweis/T -Nachwelt -Nachwirkens -Nachwirkung/P -Nachwort/PST -Nachwuchs/T -Nachwuchsausbildung -Nachwuchsauslese -Nachwuchself -Nachwuchsfrage -Nachwuchskraft -Nachwuchslufer -Nachwuchsleute -Nachwuchsmannschaft -Nachwuchspferd -Nachwuchsprobleme -Nachwuchsreisende -Nachwuchsschule -Nachwuchsschwimmer/FNS -Nachwuchsstar -Nachwuchsverkufer -Nachzahlung -Nachziehzeit -Nachzglingen -Nachzgler/NS -Nachzucht -Nackedei -Nacken/S -Nackengegend -Nackenhaare -Nacktambe -Nacktarsch -Nacktheit -Nadel/N -Nadelanschlag/STp -Nadelanschlaggerusche -Nadelanschlagkontrolle -Nadelanschlagsfrequenz -Nadelansteuerung -Nadelbestreifte -Nadeldschen -Nadeldrucker/NS -Nadeldruckkpfe -Nadeldruckwerk -Nadelgemlde -Nadelholz -Nadelkissen -Nadelhr/S -Nadelschaden -Nadelschlge -Nadelschnittholz -Nadelschutz -Nadelspulen -Nadelstich -Nadine/S -Nagasaki -Nagel/S -Nagelbrett -Nagellack -Nager/NS -Nahaufnahme/N -Nahbereich -Naherholungsgebiet/T -Nahfeld -Nahkampf -Nahost -Nahostdoktrin -Nahostfrage -Nahostgebietes -Nahostkrieg -Nahostmission -Nahostpolitik -Nahrung/P -Nahrungsaufnahme -Nahrungsbedarf -Nahrungsfabrik -Nahrungskette -Nahrungsmangel -Nahrungsmittel/NS -Nahrungsmittelkapazitt -Nahrungsmittelknappheit -Nahrungsmittelkonserve -Nahrungsmittelpreise -Nahrungsmittelprfer -Nahrungsmittelberfluss/Tp -Nahrungsreserven -Nahrungsvorrte -Nahsteuerung -Nahverkehr/S -Nahziele/N -Nairobi -Naivitt -Naivling/EPS -Name/N -Namensnderung -Namensaktien -Namensbezeichnung/P -Namensbreite -Namensgebung -Namensgleichheit -Namenskonflikt/EPT -Namenskonvention/P -Namenslegende -Namensnachfolger -Namensnennung -Namensobligation/P -Namensraum/STp -Namensschild/RST -Namenstag -Namenstrger -Namensverleihung -Namensvetter/N -Namenswechsel -Nameserver/NS -Namibia -Namur -Namurfrequenz -Namurgeber -Namurimpulse -Namurschalter/N -Nanometer/N -Nanosekunde/N -Napalmraketen -Napf/ST -Naphthalin -Naphthalinkgelchen -Napoleon/S -Narbe/N -Narbengesicht -Narkose/N -Narkoseschwester -Narkotika -Narkotikum -Narr -Narrenhaus/Tp -Narretei/P -Narrheit -Narziss/EP -Narzissenfelder -Narzissmus -Nase/N -Nasenbein -Nasenbluten -Nasenflgel -Nasenlnge/N -Nasenspitze/N -Nashrner -Nashorn/S -Nassau -Nassrasur/P -Nassschnee -Nasszelle/N -Nation/P -Nationalarmee -Nationalaufstand -Nationalballetts -Nationalbank -Nationalbewusstsein -Nationalbibliothek -Nationalchina -Nationalchinesen -Nationaleinkommen -Nationalfeiertag -Nationalfeind -Nationalflagge -Nationalfriedhof -Nationalgalerie -Nationalgarde -Nationalgefhl -Nationalgesetz -Nationalheld/P -Nationalhymne/N -Nationalinstitut -Nationalisierens -Nationalisierung/P -Nationalismus -Nationalist/P -Nationalitt/P -Nationalittenprinzip -Nationalkasse -Nationalkomitee -Nationalkommunist -Nationalkongress/EPT -Nationalkonvent -Nationalliga -Nationalmannschaft/P -Nationalkonomen -Nationaloper -Nationalpark/S -Nationalrat/ST -Nationalriegen -Nationalsozialismus -Nationalsozialist/P -Nationalspiel/R -Nationalspieler/FNS -Nationalsport -Nationalstaat/PST -Nationalstaffel -Nationalstolz -Nationalsynode -Nationalteam/S -Nationaltheaters -Nationaltorwart -Nationaltracht -Nationaltrainer -Nationaltruppen -Nationalverbnde -Nationalverband -Nationalversammlung/P -Nationalwerksttten -Nationalzeitung -Nationenpreis -Nato -Natomitglieder -Natrium/S -Natron/S -Natronlauge -Natrlichkeit -Natur -Naturalabgaben -Naturaleinkommen -Naturalien -Naturalismus -Naturalwirtschaft -Naturanschauung -Naturaufnahmen -Naturbedingung/P -Naturbeobachter -Naturbrunnen -Naturelemente -Naturell -Naturereignis/Qq -Naturerlebnis/Qq -Naturerscheinung -Naturfilm -Naturforschung -Naturfreund/E -Naturgaben -Naturgeschichte -Naturgeschmack -Naturgesetz/EPT -Naturgewalt/P -Naturgre/N -Naturheilverfahren -Naturkatastrophe/N -Naturkulisse -Naturkunde -Naturlehrpfad -Naturlyriker -Naturmenschen -Naturmoor -Naturpark -Naturprozess/EPT -Naturrecht -Naturschden -Naturschilderung/P -Naturschnheit/P -Naturschutz -Naturschutzatlas -Naturschutzexperte -Naturschutzgebiete -Naturschutzpark/S -Naturschutzstelle -Naturstrand -Naturtalent -Naturvlker -Naturwlder -Naturwissenschaft/P -Naturwundern -Navigation -Navigationskurs/EPT -Nazi/S -Nazidiktator -Nazifhrer -Nazigegner -Naziregime/S -Naziverbrechen -Naziverbrecher -Naziverleger -Neandertal/R -Neapel -Nebel/S -Nebelausrstung -Nebeldunst -Nebelfelder -Nebelhorn -Nebellampen -Nebelneigung -Nebelschlussleuchte/N -Nebelschwaden -Nebelstrichen -Nebelwand -Nebenabsicht/P -Nebenanschluss/Tp -Nebenausgang -Nebenbahn/P -Nebenbedeutung/P -Nebenbedingung/P -Nebenbemerkung/P -Nebenbeschftigung/P -Nebenbetrieb/EPST -Nebenbuhler/FNS -Nebeneffekt/EPST -Nebeneingang/Sp -Nebeneinnahme/N -Nebenerfolg -Nebenerscheinung -Nebenerwerb -Nebenerzeugnis/Qq -Nebenfcher -Nebenfach/T -Nebenfahrbahn -Nebenfenster -Nebenfluss/Tp -Nebenfolge/N -Nebenfunktionen -Nebengebude/N -Nebengebhren -Nebengedanke/N -Nebengeleise/NS -Nebengerusch/EPST -Nebengeschmack -Nebengestein -Nebenhaus/Tp -Nebenklger -Nebenkosten -Nebenlufigkeit -Nebenmann -Nebenorganisation -Nebenplatz -Nebenprodukt/EPST -Nebenregierung/P -Nebenrolle/N -Nebenschlichkeit/P -Nebenstze/N -Nebensache/N -Nebensatz/T -Nebenstelle/N -Nebenstrae/N -Nebenstrecken -Nebentisch/P -Nebenwerte -Nebenwirkung/P -Nebenzimmer/N -Nebraska -Nebukadnezar/S -Neckar -Neckermann -Neckermannurlauber -Neffe/N -Negation/P -Negativfaktor/P -Negativgestalt/P -Negativklausel -Negativsignale -Negativwerten -Neger/FNS -Negerkinder/N -Negerkirche -Negerlein -Negersngerin -Negerstmme/N -Negev -Negligee/S -Neglig/S -Negro -Nehmer -Nehru/S -Neid/T -Neider -Neigens -Neigung/P -Neigungsnderung/P -Neigungsinformation/P -Neigungsmesser -Neigungsmessgert -Neigungsmessung -Neigungssensor/P -Neigungswert/EPS -Neigungswinkel/N -Neinsager -Neinstimme/N -Neie -Nektar -Nektarine/N -Nelke/N -Nennbetrag/STp -Nenndurchfluss/Tp -Nennens -Nenner/S -Nenngre/N -Nennkapazitt -Nennkapital/S -Nennleistung -Nennspannung -Nennstrom -Nennung/P -Nennungsliste/N -Nennvorwiderstand -Nennwert/ST -Neodarwinismus -Neomarxismus -Neon/S -Neonazi/S -Neonazismus -Neonlicht/R -Nepal -Nepp/S -Neptun/S -Nero/S -Nerv/S -Nervenarzt/T -Nervenbelastung -Nervenkitzel -Nervenklinik -Nervenkraft -Nervenkrankheit/P -Nervenkrieg/ST -Nervenprobe/N -Nervensge/N -Nervensgerei -Nervenschden -Nervenschmerzen -Nervenschock -Nervenstrke -Nervenstrang -Nervensubstanz -Nervensystem/EPS -Nervenzelle -Nervenzusammenbruch -Nervositt -Nerz/EPT -Nerzstola -Ness -Nessel/N -Nest/RST -Nestl -Netiquette -Netscape/S -Nettigkeit/P -Nettoaufkommen -Nettobelastung -Nettobetrag/STp -Nettoeinkommen -Nettoerls/P -Nettoertrag/STp -Nettoerzeugung -Nettoexport/S -Nettofrachteinnahme -Nettogewicht/EPT -Nettogewinn/T -Nettogewinnspanne -Nettoimport -Nettolhne/N -Nettolohn -Nettomiete/N -Nettomieteinnahmen -Nettomietertrag/STp -Nettoprmie -Nettopreis/EPT -Nettorendite -Nettoschuldsaldo -Nettoumstze -Nettovermgen -Nettowert -Nettozins/PT -Netz/EPT -Netzadapter/NS -Netzadresse/N -Netzanbindung/P -Netzanschluss/Tp -Netzausfallsimulation -Netzausfalltest/S -Netzdienst/EPT -Netzeingang -Netzfilter -Netzfrequenz -Netzfrequenzadapter -Netzgert/EPS -Netzhaut -Netzkabel/NS -Netzkante -Netzkarte -Netzkommunikation -Netzkonfiguration/P -Netzmodul/E -Netzpolung -Netzschalter -Netzsoftware -Netzspannung -Netzstecker/NS -Netzstruktur -Netztechnik -Netzteil/EPST -Netzteilbereich -Netzteilgruppe -Netzteilnehmer/N -Netzteilsicherung -Netzteilstecker/S -Netzteiltypen -Netzteilwrfel -Netztopologie/N -Netztrafo -Netzberlast -Netzversorgungskabel/N -Netzwerk/EPST -Netzwerkadapter/NS -Netzwerkadapterfunktion/P -Netzwerkadresse/N -Netzwerkanschluss/Tp -Netzwerkbetrieb -Netzwerkbuffer/S -Netzwerkdaten -Netzwerkinterface/S -Netzwerkkanal/S -Netzwerkkapazitt/P -Netzwerkkommando/S -Netzwerkkommunikation -Netzwerkleitung/P -Netzwerkmen -Netzwerknummer/N -Netzwerkrechner/NS -Netzwerkschnittstelle/N -Netzwerksoftware -Netzwerkteilnehmer/NS -Netzwerktopologie/N -Netzwerkverbindung/P -Netzzufhrung -Neuabonnenten -Neuabsatz -Neuabschluss/Tp -Neuanfang -Neuanfertigung/P -Neuankmmling/EPS -Neuankndigung -Neuanmeldung -Neuanstze/N -Neuansatz/T -Neuanschaffung/P -Neuansiedlung/P -Neuaufbau/ST -Neuauflage/N -Neuaufteilung/P -Neuauftrag/STp -Neuausgabe/N -Neuausrichtung -Neuausrstung -Neuausstattung -Neuauszahlung/P -Neubau -Neubauauftrge -Neubaugebiet -Neubauhaus/Tp -Neubaulden -Neubauplne -Neubauproduktion -Neubauprojekt -Neubausiedlung -Neubaustelle -Neubaustrecken -Neubauten -Neubauwesen/S -Neubauwohnung -Neubeginn -Neubepflanzung -Neuberechnen/JS -Neubesetzung/P -Neubesttigung -Neubestellung -Neubewertung -Neudefinition/P -Neudruck/EPS -Neueinkleiden -Neueinlegen -Neueinrichten/JS -Neueinsatz -Neueinschulung/P -Neueinstellung -Neueinstieg -Neueinteilung/P -Neueintrag/Jp -Neuenburg -Neuengagement -Neuenglandkolonien -Neuentstehung -Neuentwickeln/JS -Neuerffnung -Neuerscheinen/JS -Neuerung/P -Neuerungsplne/N -Neuerwerbung -Neufestsetzung -Neuformulierung/P -Neufundland -Neugestalten/JS -Neugier -Neugierde -Neugranada -Neugrnden/JS -Neuguinea -Neuheit/P -Neuigkeit/P -Neuinstallation -Neuinszenierung/P -Neujahr/S -Neujahrsaufruf -Neujahrsausgabe -Neujahrsbotschaften -Neujahrsempfang/Sp -Neujahrsfest -Neujahrsglckwnsche -Neujahrsgru/Tp -Neujahrskonzert/EPST -Neujahrskuss/Tp -Neujahrsprognosen -Neujahrsrede -Neujahrsspringen -Neujahrstag/T -Neujahrstelegramm -Neujahrswnsche -Neujahrumfrage -Neukarthago -Neukauf/STp -Neuklassizismus -Neukonstruktion -Neukonzipierung -Neukredite -Neukunden -Neuland -Neulandgebiet -Neulandgewinnung -Neulieferung/P -Neuling/EPS -Neumond/EPST -Neunerwette -Neunkampf -Neuntklssler/FNS -Neuordnen/JS -Neuorganisation -Neuorientierung/P -Neuplanung -Neupositionierung -Neuprogrammierung -Neuregelung/P -Neureiche/NR -Neurodermitis -Neurologe/N -Neurologie -Neurose/N -Neuschaffung -Neuschnee -Neuschpfung/P -Neuschuldner -Neuseeland -Neusprachler -Neuss -Neustart -Neustrukturierung -Neutralisation -Neutralist/P -Neutralittsangebot -Neutralittsbund -Neutralittserklrung -Neutralittsrecht -Neutralittswunsch -Neutrino/S -Neutron/PS -Neutronensonde -Neuverlegung -Neuverpflichtung/P -Neuverschuldung/P -Neuverteilen/JS -Neuwagenhandel -Neuwahlen -Neuwerbung -Neuwerk -Neuzeit -Neuzugang/Sp -Neuzulassung/P -Neuzuweisung -Nevada -New/S -Newsgroup/S -Newsgruppe/N -Newsserver/NS -Newton/S -NiCd -Niagaraflle/N -Nibbleoperation/P -Nibelungen -Nibelungenlied -Nicaragua -Nichtakademiker -Nichtanerkennung -Nichtangriffspakt -Nichtanhrung -Nichtanzeige -Nichtausstieg -Nichtbeachten/JS -Nichtbeamten -Nichtbefolgen/JS -Nichtbelieferung -Nichtbezahlung -Nichtbiertrinker -Nichtdeterminismus -Nichte/N -Nichteinhalten/JS -Nichteinstieg -Nichteintreffen -Nichteintreten -Nichtentdeckung -Nichtentscheidung -Nichterfllen/JS -Nichterklrung/P -Nichterscheinen/JS -Nichtgebrauch -Nichtigkeit/P -Nichtkommunist -Nichtlinearitten -Nichtmitgliedsland -Nichtmitgliedsstaaten -Nichtprivaten -Nichtraucher/N -Nichtraucherraum/STp -Nichtraucherschutz -Nichtschrumpfen -Nichtsnutz -Nichtsportler -Nichtstun -Nichtwissen/S -Nickbewegung/P -Nickel -Nicole/S -Niederbayern -Niederdruck -Niederdruckanlagen -Niedergang/Sp -Niedergeschlagenheit -Niederkunft -Niederlnder/FNS -Niederlage/N -Niederlande/N -Niederlassens -Niederlassung/P -Niederlassungsbro -Niederlassungsrecht/S -Niedersterreich -Niedersachsen -Niederschlag/Sp -Niederschlagsneigung -Niederschlesien -Niederschrift -Niedertrchtigkeit/P -Niederung/P -Niederwerfen/JS -Niederwildjagd -Niederwildrevier -Niedrigkeit -Niedrigpreispolitik -Niedrigstand -Niedrigstkurs/EPT -Niedrigstpreisen -Niedrigzinsen -Niere/N -Nierenoperation/P -Nierensteinen -Nierenverpflanzung/P -Nieselregen -Niethose -Niethosentrger -Niethlsen -Nietse/N -Nietzsche/S -Niger -Nigeria/S -Nigerianer/FNS -Nihilist/P -Nikaragua -Nikolaus -Nikon -Nikotin/S -Nil/S -Nildelta -Niltal/S -Nimbus -Nimmerwiedersehen -Nina/S -Ninive/S -Nippel/S -Nippon/S -Nische/N -Nissan -Nitrat/EPS -Nitroglyzerin -Niveau/S -Niveauregulierung -Niveauverlust -Nivelliereinrichtung -Nivellierens -Nivellierung/P -Nixdorf -Nixe/N -Nizza -Nte/N -Ntigens -Ntigung/P -Noah/S -Nobelkarossen -Nobelkneipen -Nobelpreis/EPT -Nobelpreistrger/N -Noblesse -Nocken -Nockenrad/S -Nockenscheibe -Nockenwelle/N -Nofretete/S -Nomade/N -Nomadenstmmen -Nomen/GS -Nomenklatur/P -Nomina -Nominalbetrag/STp -Nominalhhe -Nominalkapital -Nominallhne -Nominalwert/EPST -Nominalzinsen -Nominalzinsstze -Nominierens -Nominierung/P -Nonkonformismus -Nonne/N -Nonplusultra -Nonstopflug/STp -Nonstopflugzeuge -Norbert/S -Nordabschnitt -Nordafrika/S -Nordamerika/S -Nordatlantik -Nordatlantikpakt/T -Nordaustralien -Nordbahnhof -Nordbayern -Nordcarolina -Nordchina -Norddeutschland -Norden/SW -Nordengland -Nordeuropa -Nordfrankreich -Nordfriedhof -Nordfriesland -Nordirland/S -Norditalien -Nordkorea/S -Nordkste -Nordkurve -Nordlnder -Nordlicht -Nordlichter -Nordmeer -Nordosten/S -Nordpol -Nordpolforscher -Nordpolroute -Nordraum/ST -Nordrhein -Nordschacht -Nordschleife -Nordschleswig -Nordschleuse -Nordsee -Nordseeabkommen -Nordseebad -Nordseefischerei -Nordseegebiet -Nordseehfen -Nordseeheilbder -Nordseeheilbad/T -Nordseeinseln -Nordseekanal/S -Nordseestrand -Nordseite/N -Nordstern -Nordufer -Nordvietnam -Nordwand -Nordwesten/S -Nordwesteuropa -Nordzone -Norm/P -Normalausfhrung -Normalausgaben -Normalbenzin -Normalbetrieb -Normalbrger -Normaleinstellung -Normalfahrer/S -Normalfall/ESp -Normalfolge -Normalform/P -Normalgarantie -Normalisierung -Normalisierungsvertrag/STp -Normalitt -Normalpapier -Normalpreis/EPT -Normalsatz -Normalschrift -Normalsignal -Normalsterbliche/NR -Normaltarif/EPS -Normalverbraucher/N -Normalversion/P -Normalzeit -Normalzins/T -Normalzustand/ST -Normandie -Normanne/N -Normannenherrschaft -Normannenreich -Normenausschuss/Tp -Normenbau -Normierens -Normierung/P -Normmodulen -Normschrift -Normstecker -Normteil/EPS -Normungsentscheidung/P -Norwegen -Nostalgie -Nostalgiewelle -Not/EP -Nota -Notrztin -Notar/EFPS -Notarkosten -Notarvertrag/STp -Notation/P -Notaufnahme -Notaufnahmelager -Notaus -Notausfunktion/P -Notausgang/Sp -Notauskabel -Notausknopf/T -Notauskontakte -Notausleitung/P -Notausschalter/S -Notausstieg -Notaussystem -Notausterminator -Notbehelf/EPS -Notbett -Notbremse -Notdach -Notdurft -Notebook/S -Noteingang/S -Notenbank/P -Notenentwrfe -Notenlesen -Notenschrift -Notenskala -Notenumtausch/T -Notfall/p -Notfallausweis/E -Notfallplne -Nothalt -Nothelfer -Nothilfe -Notierens -Notierung/P -Notiz/P -Notizbcher -Notizbuch/T -Notlage/NR -Notlager/NS -Notlandens -Notlandung/P -Notlsung/P -Notlge/N -Notmanahme/N -Notplanung/P -Notprogramm -Notruf/EPS -Notrufnetz -Notsendern -Notsignal/EPS -Notsitzen -Notstnde/N -Notstand/S -Notstandsgesetz/E -Notstandshilfe -Notstandsjahr -Notstandsklausel -Notstandsprogramm -Notunterknfte/N -Notverband -Notverbandsplatz -Notverkauf/Sp -Notverordnung -Notverordnungsdiktatur -Notverpflegung -Notwehr -Notwendigkeit/P -Notzeit/P -Notzucht -Nougat -Nougatcreme -Nov -Nov. -Nova -Novelle/N -Novellist/P -November -Novemberheft -Novemberrevolution -Novembersonntag -Novemberwoche -Novitt/P -Novum -Nr -Nr. -Nchternheit -Nrnberg/R -Nsse/GMN -Ntzlichkeit/P -Nuance/N -Nudel/N -Nudelholz -Nugat -Nuklearindustrie -Nuklearpolitik -Nuklearraketen -Nuklearsprengkopf -Nukleartechnik -Nuklearwaffen -Null/P -Nulldurchgang/Sp -Nullleiter/S -Nulllsung -Nullpunkt/ST -Nullpunktdrift -Nullpunkteinstellung -Nullpunktverschiebung -Nullserie/N -Nullspannung -Nullstelle/N -Nullstellenbestimmung -Nullstellung -Nullsteuerzahler -Nullsummenspiel/EPS -Nullwachstum -Nullwelt -Nullwert -Numerik -Numerus -Nummer -Nummerierens -Nummerierung/P -Nummerncode -Nummerndiebstahl -Nummernfolge/N -Nummernkonten -Nummernschild/RT -Nuss/G -Nussknacker/NS -Nussschale/N -Nussschokolade/N -Nusstorte/N -Nut/EP -Nutabstand -Nutrichtung -Nutzanwendung -Nutzbarkeit -Nutzbarmachung -Nutzbereich/S -Nutzenanalyse/N -Nutzenfunktion/P -Nutzens -Nutzer/FNS -Nutzfahrzeug/EPS -Nutzflchen -Nutzholz -Nutzlnge/N -Nutzlast/P -Nutzlosigkeit -Nutzmachung -Nutznieen/JS -Nutznieer -Nutzpflanzen -Nutzung/P -Nutzungsart -Nutzungsentgelt/ES -Nutzungsrecht/EPT -Nutzungswert/EPT -Nutzwert/ST -Nylon/S -Nylonfden -Nylonfaser -Nylonstrmpfe -Nylonstrumpfhosen -Nymphe/N -TV -fen -ffentlichkeit -ffentlichkeitsarbeit -ffnens -ffner -ffnung/P -ffnungsklappe/N -ffnungssignal -ffnungswinkel -ffnungszeit/P -kologie -konom/P -konomie -kosystem/EPS -kumene -l/JS -labkommen -laktien -langebot -lbild -lbohrung -lboykott -ldruck -ldruckbremse -leinfuhr -leinnahmen -lembargo/S -lexperte/N -lexport/EPS -lfarbe/N -lfeld/RST -lfirma -lfirmen -lfrderer -lfrderlnder -lfrdernation/P -lfund/E -lgelder -lgeschft/S -lgesellschaften -lhahn -lhaus -lhausse -lheizung/P -lhydraulik -limporte -lindustrie -lkanne/N -lkatastrophe -lkonferenz -lkonzern/PS -lkonzession/P -lkrieg -lkrise/N -lkhler -lleitung/P -llieferanten -lmchte -lmalerei -lmarkt -lmessstab/S -lmilliarden -lmonopolisten -lnation/P -lpolitik -lportrait -lpreis/EPT -lpreiserhhung/P -lpreisverfalls -lpression/P -lproduzenten -lquelle/N -lraffinerien -lrechnung/P -lreichtmer -lreservoir/S -lsule -lscheich/S -lschiefervorkommen -lschmierung -lsorten -lstaat/T -lstand -lstreit -lsubstanzen -lsuche -lszene -ltank/S -ltanker -ltemperatur -lberschusslnder -lverbrauch/S -lverbraucher -lverschmutzung -lversorgungssystems -lvorkommen -lvorrte -lwarrant -lwerte -lzentralheizung -lzeug -rtlichkeit/P -se/N -sterreich/RS -sterreicher/FNS -strogen/EPS -OCR -OECD -OEM -OPEC -OPTi -ORF -OS -Oase/N -Oasenlnder -Obdach/S -Obdachlosenheim -Obdachlosigkeit -Obduktion/P -Obelisk/P -Obergypten -Oberrzte/FN -Oberammergau -Oberarm/EPST -Oberarzt/T -Oberaufsicht/P -Oberbau -Oberbayern/S -Oberbefehl/S -Oberbegriff -Oberbekleidung -Oberbonze -Oberdeck/S -Oberdirektor -Oberfahnder -Oberflche/N -Oberflchenschutz -Oberflchenspannung -Oberflchenwiderstnde -Oberflchlichkeit/P -Obergefreiten -Obergericht -Obergeschoss/EPT -Obergrenze/N -Obergruppe/N -Oberhupter -Oberhaupt/T -Oberhaus/PTp -Oberhausmitglied -Oberhirten -Oberhofmeisterin -Oberhoheit -Oberingenieur/S -Oberinspektor/S -Oberkante/N -Oberkellner/N -Oberkirchenrat -Oberkrper/NS -Oberkommandierende -Oberkommando -Oberland -Oberlandesgericht/T -Oberlehrer -Oberleitung -Oberleutnant/S -Oberliganeuling -Oberligatrainer -Oberligazugehrigkeit -Oberlippe/N -Obermedizinalrat -Obermeister -Obermenge/N -Obersterreich -Oberpostdirektion/P -Oberpostrat -Oberprsident -Oberrat -Oberrealschule -Oberrechnungskammer -Oberregisseur/S -Oberrhein -Oberrheintal -Oberrichter -Obers -Oberschenkel -Oberschenkelmuskulatur -Oberschenkelzerrung -Oberschicht -Oberschiedsrichter -Oberschlesien -Oberschlitzohr -Oberschnabel -Oberschler/FNS -Oberschule/N -Oberschullehrer/NS -Oberschwaben -Oberschwester -Oberschwingung/P -Oberseite/N -Obersekundaner -Oberspielleiter -Oberstaatsanwlte -Oberstaatsanwalt/T -Oberstabsarzt/T -Oberstleutnant -Oberstoff/E -Oberstbchen -Oberstudienrat -Oberstufe -Oberstufengestaltung -Oberteil/EPS -Oberturnwarte -Oberverwaltungsgericht/T -Oberwachtmeister -Oberwasser -Oberwellen -Oberzug -Obhut -Objekt/EPST -Objektbaum/STp -Objektbaumkonzept -Objektfinanzierung -Objektgeschfte -Objektivgebilde -Objektivismus -Objektivitt -Objektivtrger -Objektklasse/N -Objektprogrammierung -Objekttrger/N -Objektbernahme -Oblate/N -Obliegenheit/P -Obligation/P -Obligationsanleihe -Obmann/S -Oboe/N -Obrigkeit/P -Obrist/P -Observanz -Observatorium -Obst/T -Obstanlage -Obstbaum/STp -Obstbranntweine -Obstbrennereien -Obsternte -Obstgrten -Obstgarten -Obsthndler/FNS -Obstkompott -Obstruktion -Obstruktionskurs/EPT -Obstsfte -Obstversandfirma -Obstzucht -Obsznitt -Ochs/EP -Ochsenfleisch -Ochsenhute -Ode/N -Odem/S -Odenwald -Odessa -Odium -Odyssee -Ofen/S -Ofenheizung/P -Ofentemperatur -Offenbach -Offenbarens -Offenbarung/P -Offenbarungseid -Offenheit -Offenherzigkeit -Offenlegen/JS -Offenlegungsschrift/P -Offensivangriff -Offensivoperation/P -Offensivspieler -Offerte/N -Offertenbriefe -Offertenprfung -Offizier/EFPS -Offiziersanwrter -Offiziersball/Sp -Offiziersehre -Offizierskasino -Offizierskorps -Offiziersputsch -Offiziersrevolte -Offiziersschler/N -Offset/S -Offsetdruck -Offsetspannung -Offsetwert/S -Oheim/S -Ohio -Ohm -Ohnmacht -Ohr/EPST -Ohrclip/S -Ohrenrzten -Ohrenarzt/T -Ohrenschmerzen -Ohrenstbchen -Ohrenzeugen -Ohrlppchen/S -Ohrring/EPS -Ohrwurm/S -Okkultismus -Okkupant/P -Okkupation/P -Okt -Okt. -Oktaeder -Oktant/PW -Oktav/P -Oktober/S -Oktoberausgabe -Oktoberdokument -Oktoberfest -Oktoberheft -Oktoberkrieg -Oktoberrevolution -Okular -Okzident/S -Olaf/S -Oldenburg -Oldtimer/S -Oleg/S -Olga/S -Oligarchie -Olive/NR -Oliver/S -Olivetti -Olymp -Olympia -Olympiaabzeichen -Olympiade -Olympiadisziplin -Olympiafieber -Olympiaflagge -Olympiafnfte -Olympiagelnde -Olympiageschft -Olympiakader -Olympialos -Olympiamedaille -Olympianorm -Olympiapass/Tp -Olympiapferd -Olympiapisten -Olympiaschanze -Olympiasieg/ER -Olympiasieger/FNS -Olympiastadion/S -Olympiastadt -Olympiateam -Olympiateilnehmer/S -Olympiatermine -Olympiawinter -Olympiazentren -Olympiazentrum -Oma/S -Ombudsmann/ST -Omen -Omnibus/Qq -Omnibusbetrieb -Omnibuschassis -Omnibusgewerbe -Omnibushaltestelle -Omnibusinsassen -Omnibusnetz -Omnibusreisedienst -Omnibusschaffner -Omnibusunglck -Omnibusverkehr -Omnilaser -Omnipotenzfunktionen -Onanie -Onkel/NS -Ontologie -Opa/S -Opel -OpenOffice -Oper/N -Operand/P -Operateur/EFPS -Operation/P -Operationsbasis -Operationsfeld -Operationsgebiet -Operationsplne/N -Operationsschwester -Operationssystem/EPS -Operationsteam -Operationsziel -Operator/FPS -Operette/N -Operettenbhne -Operettenbuffo/S -Operettendiva -Operettenkomponist -Operettenmelodien -Operettenmusik -Operettenrolle -Operettenzauber -Opernabend -Opernauffhrung/P -Opernausstattung -Opernbhne/N -Opernburleske -Opernchef -Opernchorschule -Operndirektion -Operndirektor/S -Opernensemble -Opernfarbfilm -Opernfestspiele -Opernfinale -Opernfreunde -Opernfhrer -Opernglas -Opernhaus/Tp -Opernintendant -Opernjux -Opernkomponist/P -Opernkonzert -Opernmusiker -Opernnachwuchs -Opernorchester -Opernregie -Opernregisseure -Opernsnger -Opernsaison -Opernschule -Opernstar -Opernszenen -Operntheater -Operntradition -Opferbereitschaft -Opfergang -Opferns -Opferpriester -Opfers -Opferschale -Opferstock -Opfertier -Opfertod -Opferung/P -Opium -Opiumkrieg -Opponent/P -Opportunismus -Opportunist/P -Opportunittsprinzip -Opposition -Oppositionschef -Oppositionsfhrung -Oppositionsgruppe/N -Oppositionspolitiker -Oppositionssprecher -Optik/R -Optiker/FNS -Optikermeister -Optimalitt -Optimalittskriterium -Optimierbarkeit/P -Optimierens -Optimierung/P -Optimierungsmanahme/N -Optimierungsmglichkeit/P -Optimierungsphase/N -Optimierungspotential/EPS -Optimierungspotenzial/EPS -Optimierungsreserve/N -Optimierungsschritt/EPS -Optimierungsstrategie/N -Optimierungstechnik/P -Optimierungsverfahren/S -Optimierungsversuch/EPS -Optimismus -Optimist/P -Optimum/S -Option/P -Optionsbetrag/STp -Optionserfahrene -Optionsgeschft/EPST -Optionshandel/S -Optionskufer -Optionskontrakte -Optionslaufzeit -Optionsmarkt/Tp -Optionspreis/E -Optionsschein/EPS -Optionsspieler -Optionsverkufer -Optokoppler/NS -Optokopplermodul -Opus -Orakel/NS -Orangen -Orangenernte -Orangensaft/T -Orangensekt -Oratorium/S -Orbit/S -Orchester -Orchesterbegleitung -Orchesterbesoldung -Orchesterkanzel -Orchesterkonzert -Orchesterkultur -Orchestermusik -Orchestermusiker/S -Orchesterprobe -Orchesterschule -Orchesterstcke -Orchidee/N -Orden/S -Ordensangehriger -Ordensgesetze -Ordensherrschaft -Ordensritter -Ordentlichkeit -Order -Ordereingang -Ordinariat -Ordinarien -Ordinate/N -Ordnens -Ordner/NS -Ordnung/P -Ordnungsbehrde/N -Ordnungshter/FNS -Ordnungskriterien -Ordnungsliebe -Ordnungsmacht -Ordnungsmerkmal/EPS -Ordnungsprinzip -Ordnungsproblem/EPS -Ordnungsrecht -Ordnungsstrafe/N -Ordnungswidrigkeit/P -Ordonanz -Ordonnanz -Oregon -Organ/EPS -Organigramm/EPS -Organisation/P -Organisationsaufgabe/N -Organisationsbegabung -Organisationserfahrung -Organisationsfachmann -Organisationsform/P -Organisationsgabe/N -Organisationskomitee/S -Organisationslsung/P -Organisationsplan -Organisationsreform/P -Organisationssoftware -Organisator/PS -Organismen -Organismentypen -Organismus -Organist/FP -Organleiden -Organum -Organverpflanzung -Organvertrge -Orgasmen -Orgasmus -Orgel -Orgelbauer/S -Orgelbaus -Orgelklang/Sp -Orgelkunst -Orgelmusik -Orgelwerke -Orgie/N -Orgien/G -Orient/S -Orientale/N -Orientalismus -Orientbrcken -Orienthandel -Orientierens -Orientierung/P -Orientierungsdaten -Orientierungshilfe/N -Orientierungskrise/N -Orientierungspreis/EPT -Orientierungspunkt/EPS -Orientierungsrahmen/S -Orientierungsstufen -Orientteppich/S -Orientteppichhndler/FNS -Originalantwortschein/EPS -Originalausgabe/N -Originalbrgschaft -Originaldiskette -Originalfassung -Originalfolie -Originalgehuse -Originalitt -Originals -Originalscheck/S -Originalstand -Originalversion/P -Originalzeichnung/P -Orion/S -Orkan/EPS -Orkneyinseln -Orlando -Orleans -Ornament/EPST -Ort/JST -Ortens -Orthodoxie/N -Orthogonalitt -Orthografiefehler/NS -Orthographie/Nf -Orthographiefehler/NS -Orthopde/N -Orthopdie -Ortsangabe/N -Ortsbehrde/N -Ortsbesichtigung -Ortsbezeichnung -Ortschaft/P -Ortseingang -Ortsgesprch/EPS -Ortsgruppenleiter -Ortskenntnis/q -Ortskoordinate/N -Ortskrankenkasse/N -Ortsmessung -Ortsmitte -Ortsnetz/EPT -Ortsplanung -Ortsprospekt -Ortsrand -Ortsrandlage -Ortssender/N -Ortsteil/EPS -Ortsvektor/PS -Ortsvertreter -Ortsvorsitzende -Ortswechsel -Ortszeit/P -Ortszuschlag/STp -Ortungsgerte -Orwell/S -Oscar/S -Osiris -Oskar/S -Oslo -Osmanenreich -Osnabrck/S -Ostafrika/S -Ostarmeen -Ostasiens -Ostaustralien -Ostbahnhof -Ostberlin/R -Ostbesuche/N -Ostbewohner -Ostblock/ST -Ostblockdelegierte -Ostblockkonferenz -Ostblocklnder/N -Ostblockland -Ostblocknationen -Ostblockreisen -Ostblockstaaten -Ostbndnis/Qq -Ostdeutschland/S -Osten/SW -Ostengland -Osteoporose -Ostereier -Osterfahrt -Osterfeiertage -Osterferien -Osterfest -Ostergeschft -Osterhase/N -Osterinsel/N -Osterkarten -Ostermarsch -Ostermontag -Ostern -Osterpause -Osterpreis -Osterprogramm -Osterreiseverkehr -Ostersamstag -Ostersonnabend -Ostersonntag -Osterspaziergang -Ostertage/N -Ostertermin -Osterwoche -Osteuropa -Osteuroper/FNS -Ostexport/S -Ostfahrbahn -Ostfernsehens -Ostfildern -Ostflchtlinge -Ostfrankreich -Ostfriesland/S -Ostfront -Ostgeschft/ES -Ostgotenreich -Ostgrenze -Ostgrnland -Osthngen -Osthandel/S -Osthessen -Ostholstein/S -Ostimporte -Ostjude -Ostkirche -Ostkonten -Ostkredite/N -Ostpakistan -Ostpakt -Ostpolen -Ostpolizisten -Ostpommern -Ostpreue/N -Ostpreuen/S -Ostprovinz/P -Ostschweiz -Ostsee -Ostseebder -Ostseefahrt -Ostseeflotte -Ostseegebiet -Ostseehandel -Ostseeheilbad -Ostseeinsel -Ostseeksten -Ostseenhe -Ostseeprovinzen -Ostseewoche -Ostsektor -Ostsibirien -Ostsparkonten -Oststaat/T -Ostwall -Ostwestfalen/S -Ostwind -Ostzonenflchtling -Ostzonenpolizei -Ostzonenpolizist -Ostzonenwahl -Oszillation/P -Oszillator/P -Oszillogramm/EPS -Oszillograph/P -Oszillographenbild -Oszilloskop/EPS -Othmar/S -Otmar/S -Otter/N -Otto/S -Output/S -Outputfile/S -Ouvertre/N -Ovation/P -Overall/S -Overheadfolie/N -Overkill/S -Oxford -Oxid/EPS -Oxidation/P -Oxidationsschutz/T -Oxyd/EPS -Oxydation/P -Oxydationsvorgang/Sp -Ozean/EPS -Ozeandampfer/S -Ozeanflieger -Ozeanriese/N -Ozon/S -Ozonloch/S -Ozonschicht -PC -PCI -PCs -PDS -PGP -PKK -PLO -PLZ -PPP -PPS -PR -PS -PTT -Pchter/FNS -Pchterwohnung -Pckchen/S -Pdagoge/FN -Pdagogentagung -Pdagogik -Ppste/N -Prchen/S -Prke/N -Psse/N -Paarbildung -Paarens -Paares -Paarung/P -Paarungsverhalten -Pablo/S -Pacht/J -Pachtdauer/N -Pachtens -Pachthof -Pachtpreis/EPT -Pachtsummen -Pachtung/P -Pachtvertrag/Tp -Pachtzins/EPT -Packard -Packeis/T -Packens -Packer/FNS -Packerei -Packesel/NS -Packmaschine/N -Packmaterial/S -Packpapier/EPS -Packung/P -Packzettel -Paddelboot/EPT -Paddelfahrten -Paddels -Paderborn -Paella -Paganini/S -Page -Pagenfrisur/P -Pahlewi/S -Paket/EPST -Paketannahmen -Paketannahmestelle -Paketbefrderung -Pakethandel -Paketlsung/P -Paketpost -Paketsendung/P -Pakettarife -Paketverkehr -Paketwechsel -Pakistan/R -Pakt/EPS -Paktorganisation/P -Paktpreis/T -Palontologe/N -Palste/N -Palstina -Palstinafrage -Palstinakonferenz -Palstinenser/FNS -Palais -Palast/T -Palastrevolution/P -Palaver/S -Palermo -Palette/N -Palisade/N -Palladium -Pallas -Palme/N -Palmkern/EPS -Palmkernfett -Palmkernl -Palomar -Pampelmuse/N -Pamphlet/EPS -Pamphletist/P -Pan/S -Panamakanal -Panamakanalzone -Panasonic -Pandschab -Panik/P -Panikabhebung/P -Panikbelagerung/P -Panikstimmung -Panikzeiten -Pankow/S -Panne/N -Pannendienst/ET -Pannenhilfe -Pannenserie/N -Panoptikum -Panorama/S -Panoramablick -Panpsychismus -Panslawismus -Panter/S -Panther/S -Pantoffel/NS -Pantoffelhelden -Pantomime/N -Pantomimentheater -Panzer/NS -Panzerabwehr -Panzerabwehrgranaten -Panzerabwehrraketen -Panzerarmee -Panzerbataillon -Panzerbrigade -Panzereinheit/P -Panzerfahrzeuge -Panzerfaust -Panzerfhrung -Panzergrben -Panzergrenadier/E -Panzerkolonnen -Panzerkreuzer -Panzerlandungsboote -Panzeroffensive -Panzerproduktion -Panzerschlacht -Panzerschrnke -Panzerschrank -Panzertruppe -Panzerverbnde -Panzerverband -Panzerwaffe -Panzerwagen -Panzerweste -Papa/S -Papagei/PS -Paperback -Paperfeed -Papi -Papier/ES -Papierabschneider/S -Papierachse/N -Papieranfang -Papieranschlge -Papieraufnahmeschlitz -Papieraufwicklung -Papierbahnbreite -Papierballen -Papierberg -Papierbltter -Papierblumen -Papierbgen -Papierbogen/S -Papierbreite/N -Papierbgel -Papiereinlegen -Papiereinzug/STp -Papiereinzugsschlitz -Papierende/N -Papierentfernen -Papierentnahme -Papiererkennung -Papiererzeugnisse -Papierfabriken -Papierfetzen/S -Papierformat/EPS -Papierfreigabehebel/S -Papierfhrung/P -Papierfhrungsblech/T -Papierfhrungslaschen -Papierfhrungsschlitz -Papiergeld/RST -Papiergewicht/EPS -Papiergewinne -Papierhlfte -Papierhandling -Papierhandlung/P -Papierherstellung -Papierkante/N -Papierkrbe/N -Papierkontrolle -Papierkorb/ST -Papierkrieg/EPS -Papierlagen -Papierlieferanten -Papiermarkt/ST -Papiermae -Papiermaschine -Papiermasse -Papiermesser/S -Papiermhlen -Papierposition -Papierpositionierung -Papierprobleme -Papierprodukte -Papierproduktion -Papierpuppen -Papierqualitt -Papierrand -Papierrolle/N -Papierrollenhalter -Papierrollenkerns -Papierschacht -Papierschachtblech/T -Papierschachtrandes -Papierschale -Papierschiffchen -Papierschlaufe -Papierschlitz -Papierschwalben -Papiersensoren -Papierserviette/N -Papierstau -Papierstaufehler -Papierstopper -Papierstreifen/S -Papiersynchronisierung -Papiertaschentchern -Papiertaschentuch/T -Papiertiger -Papiertische -Papiertrger -Papiertransport -Papiertransportwellen -Papiertrennung -Papiertte/N -Papierumlauf/Sp -Papierverarbeitung -Papierverpackung/P -Papierverschwendung -Papiervogel -Papiervorrte/N -Papiervorrat/S -Papiervorschben -Papiervorschub -Papierwsche -Papierwalze -Papierwaren -Papierwechsel -Papierzellstoff -Pappbnder -Pappband/T -Pappbecher -Pappdeckel/NS -Pappe/N -Pappel/N -Pappelreihe -Pappelschatten -Pappenfabrik -Pappenheimer -Pappenstiel -Pappherz -Papphtten -Pappkamerad/P -Pappmach/S -Pappmaschee/S -Pappnase/N -Pappschachtel/N -Pappteller/N -Paprika -Papst/T -Papstbotschaft -Papstmesse -Papsttum/S -Papstunterhndler/FNS -Papstwahlordnung -Papyrus -Papyrusboot -Parabel/N -Parabolantenne/N -Paraboloid/EPST -Paracelsus -Parade/N -Paradeboxer -Paradefeld -Parademarsch -Paradeplatz -Paradeschritt -Paradestck/EPS -Paradies/EPT -Paradiesgrundstcke/S -Paradiesinseln -Paradieszustnde -Paradigma/S -Paradigmen -Paradigmenwechsel/S -Paradoxie/N -Paradoxon/S -Paraffin -Paragrafenreiter/NS -Paragraph/Pf -Paragraphenreiter/NS -Paraguay -Parakinese/N -Parallelbus/Qq -Parallelfall -Parallelhandlung -Parallelisierens -Parallelisierung/P -Parallelitt -Parallelport/S -Parallelprogramm -Parallelrechner/NS -Parallelwiderstand/S -Parallelzugriff -Parameter/NS -Parameteranpassung -Parameterblock -Parameterbuffer/S -Parametereingabe/N -Parametereinstellung/P -Parameterliste/N -Parameterstze/N -Parametersatz -Parameterspeicherung -Parametertyp/P -Parameterbergabe/N -Parameterbergabemechanismen -Parameterzahl -Parametrierens -Parametriergert -Parametrierstation/P -Parametrierung/P -Parametrisierung -Paranoia -Paranuss/p -Paraphierens -Paraphierung/P -Parapsychologe/N -Parasit/P -Paratyphus -Parcours -Pardon -Parfm/S -Parfmerie/N -Parfmflschchen/S -Parfmhndler/FNS -Parfum/S -Parfumhauch -Parfumschwade -Paris -Pariser -Paritt/P -Parittsnderung/P -Parittsfehler/N -Parittsgrnde -Parittspreise -Parittstest -Paritycheck -Parityerror -Parityfehler/S -Park/S -Parkallee -Parkanlagen -Parkbnke/N -Parkbank -Parkdeck -Parkett -Parkettboden -Parkfriedhof -Parkgarten -Parkgebhr -Parkgelnde -Parkgrund -Parkgrundstck -Parkhaus/Tp -Parklage -Parklicht/RS -Parklcke/N -Parkpltze -Parkplatz/T -Parkplatzgestaltung -Parkplatzsorgen -Parkraum/STp -Parksanatorium -Parkscheiben -Parksiedlung -Parkstreifen/S -Parksnder/S -Parkuhr -Parkumlaufbahn -Parkverbot/EPS -Parkverbotsschild -Parkvergehen -Parkzeit -Parlament/EPST -Parlamentarier/FNS -Parlamentarismus -Parlamentsauflsung -Parlamentsausschuss/Tp -Parlamentsbeschluss/Tp -Parlamentsferien -Parlamentsfraktion/P -Parlamentsherrschaft -Parlamentsmehrheit -Parlamentsmitglieder -Parlamentsreform -Parlamentssitze -Parlamentssitzung -Parlamentstagung -Parlamentswahl/P -Parnass -Parodie/N -Parole/N -Paroli -Parser -Part/S -Partei/P -Parteimter -Parteiamt/S -Parteiangelegenheit/P -Parteiapparat/E -Parteiauftrag/STp -Parteiausschuss/Tp -Parteibeschluss/Tp -Parteibeziehung/P -Parteibildung -Parteibcher/N -Parteibuch/T -Parteichef -Parteidirektiven -Parteidokumente -Parteienblock -Parteienchaos -Parteienstreit -Parteifeinde/N -Parteifinanzen -Parteiflagge -Parteiflgel/S -Parteifreien -Parteifreund/P -Parteifhrer/NS -Parteifhrung -Parteifunktionr/EFPS -Parteignger -Parteigebilde -Parteigegnern -Parteigenosse -Parteigericht -Parteigeschfte -Parteigeschichte -Parteigremium -Parteigrenzen -Parteigruppe -Parteihaus/Tp -Parteihierarchie -Parteihistoriker -Parteiinteressen -Parteijargon -Parteikmpfe -Parteikandidat/P -Parteikonferenz/P -Parteikongress/EPT -Parteikontrolle -Parteikonvent/S -Parteikreise -Parteilaufbahn -Parteileitung -Parteilichkeit/P -Parteilinie -Parteimitglied/RS -Parteimitgliedschaft -Parteinahme/N -Parteinamen/S -Parteioberhaupt -Parteiorgan/E -Parteiparolen -Parteipolitik/P -Parteiprsidenten -Parteiprobleme -Parteiprogramm/S -Parteipropaganda -Parteirson -Parteireform/P -Parteisatz -Parteisekretre -Parteispitzen -Parteistbe -Parteitag/EPS -Parteitagsbeschluss/Tp -Parteitagung -Parteiverbindung/P -Parteiverfahren -Parteiversammlung/P -Parteivolk -Parteivorsitz -Parteivorsitzende/NR -Parteivorstnde -Parteiwechsel -Parteizeitschrift -Parteizellen -Parteizentrale/N -Parteizugehrigkeit/P -Parteizuschuss/Tp -Parterre/S -Parterrezimmer -Partie/N -Partikel/NS -Partikularismus -Partisan/P -Partisanenarmee -Partisanenbekmpfung -Partisanenfhrer -Partisanenkmpfe -Partisanenkampf -Partisanenkrieg -Partition/P -Partitionierung -Partitur/P -Partizip/S -Partizipation -Partizipationsmglichkeit/P -Partizipationsschein/EPS -Partizipien -Partner/FNS -Partnerlnder -Partnerschaft/P -Partnerschule/N -Partnersprache -Partnerstadt -Party/S -Partyraum/STp -Parzelle/N -Pascal/S -Pascha -Pass/JT -Passage/N -Passagepreis/EPT -Passagier/EFPS -Passagierdampfer/S -Passagierflotte -Passagierflugzeug/S -Passagiergter/N -Passagiergut/T -Passagiermaschinen -Passagierschiff/T -Passant/EP -Passatregengebiet -Passau -Passbeamte/NR -Passbild/RST -Passens -Passform -Passfoto/S -Passgenauigkeit -Passhandelsgewerbe -Passhhe/N -Passierschein/EPT -Passierscheinzwang/T -Passion -Passionsspiele -Passiva -Passivitt -Passivrauchen/S -Passivrechtsschutz -Passivsaldo/S -Passivum -Passkontrolle -Passnummern -Passspiel -Passunion -Passwrter/N -Passwort/EPST -Paste/N -Pastellfarbe/N -Pasteurisierens -Pasteurisierung/P -Pastor/FPS -Patagonien -Patch/T -Patchwork -Pate/FNR -Patenkind -Patenkirchen -Patenschaft -Patenstadt -Patenstelle -Patentmter/N -Patentabteilung -Patentamt/T -Patentanmeldung/P -Patentansprche -Patentanwlte -Patentbearbeitung -Patentierung/P -Patentinhaber/N -Patentlsung -Patentrecherchen -Patentrechte/N -Patentreife -Patentrezepte -Patents -Patentschrift/P -Patentschutz/T -Patentverfahren -Patentverschluss/Tp -Patentverwertung -Pater/S -Pathologe/FN -Pathologie/N -Pathos -Patient/FP -Patientennummer -Patientensicherheit -Patriarchat/S -Patrick/S -Patriot/P -Patriotismus -Patrizier/NS -Patrizierhaus/Tp -Patriziertum -Patron/EFPS -Patronat/EPS -Patronenhlsen -Patronentasche -Patrouille/N -Patrouillenschiff -Patrouillenschnellboot -Patsche -Pattex -Pattstellung/P -Patzer -Paukenschlag/STp -Pauker/FNS -Paul/S -Paulette/S -Paulus -Pauschalangebot -Pauschalarrangement/S -Pauschalaufenthalte -Pauschalbesteuerung -Pauschalbetrag/STp -Pauschalbezahlung -Pauschalgebhren -Pauschalhonorierung -Pauschalkuren -Pauschalpreis/P -Pauschalregelung -Pauschalreisen -Pauschalsatz -Pauschaltouristen -Pauschalurteile -Pauschalversteuerung -Pauschalzahlung/P -Pausenpltze -Pausenplatz -Pausentaste -Pavia/N -Pavian/EPS -Pavillon/S -Pazifik/S -Pazifikflotte -Pazifikkste -Pazifikpakt -Pazifikstaaten -Pazifismus -Pazifist/P -Pech/S -Pechserie/N -Pechstrhne/N -Pechvogel -Pedal/EPS -Pedanterie -Pedro/S -Peepshow/S -Pegasus -Pegel/N -Pegelhhen -Pegelstand/T -Pegelunterschiede -Peggy/S -Peilamateure -Peilempfnger -Peilens -Peilfunk/S -Peilgert/EPS -Peilkommando/S -Peilmeisterschaften -Peilobjekte -Peilrichtung/P -Peilsignal -Peilstation/P -Peilstellen -Peilung/P -Pein -Peinigens -Peiniger/FNS -Peinigung/P -Peinlichkeit/P -Pekinese/N -Peking -Pelerine/N -Pelikan -Pellkartoffeln -Pelz/EPT -Pelzbedarf/S -Pelzfutter -Pelzgrohndler -Pelzhndlers -Pelzhandel -Pelzkleidung -Pelzkragen -Pelzmntel -Pelzmantel -Pelzmodegeschft -Pelzmodelle -Pelzmoden -Pelzmtze/N -Pelzresten -Pelzstiefel -Pelztiere/N -Pelztierzchter/FNS -Pelzwaren -Pelzwarenhandel -Pelzwerk -Pelzwirtschaft -Pendant -Pendel/S -Pendelnderung/P -Pendeldmpfung -Pendeleigenfrequenz -Pendelposition -Pendelschwingung/P -Pendelstellung -Pendeluhr/P -Pendelverkehr/S -Pendelwinkel/S -Pendelzug/Tp -Penetration -Penibilitt -Penicillin/S -Penis/Qq -Penizillin/S -Pennsylvanien -Pension/P -Pensionr/EFPS -Pensionierens -Pensionierung/P -Pensionsalter/S -Pensionsfonds -Pensionskasse -Pensionsversicherung -Pensionsversorgung -Pensionsversprechung/P -Pensionszusage -Pensum/S -Pentagon/S -Penthouse -Pentium/S -Peperoni -Pepsi -Perestroika -Perfektion -Perfektionierens -Perfektionierung/P -Perfektionist/P -Performance -Pergola -Perikles -Periode/N -Periodendauer -Periodendifferenz -Periodendifferenzmessung -Periodenlngen -Periodenmessung -Periodensystem/S -Periodenzahl -Periodizitt -Peripherie/N -Peripheriebus/Qq -Peripheriechips -Peripheriegert/EPS -Peripheriekonzept/EPST -Peripheriekosten -Peripherierechner -Perkussionist/FP -Perl -Perlenkette/N -Perlenkettenwhrung -Perlenschnur -Perlonstrmpfe -Perltaucher -Permanenz -Permutation -Peronist/P -Perpetuum -Perser/FNS -Perserkrieg -Perserteppich/E -Persien -Persiflage/N -Persistenz -Persnlichkeit/P -Persnlichkeitsentwicklung/P -Person/P -Personalabbau -Personalabteilung/P -Personalakte/N -Personalangabe/N -Personalauswahl -Personalausweis/EPT -Personalbedarf/S -Personalbro/S -Personalchef/S -Personalcomputer -Personaldirektor/P -Personaldiskussion/P -Personaldokumente -Personaleinfhrung -Personalfluktuation/P -Personalfrage/N -Personalfhrung -Personalien -Personalknappheit -Personalkosten -Personalmittel -Personalparkplatz -Personalpolitik -Personalrat/S -Personalraum/STp -Personals -Personalschalter -Personalstab -Personalstand -Personaltransport -Personalvernderung -Personalverwaltung -Personalvorschlag/STp -Personalwerbung -Personalwesen/S -Personalzuwachs/T -Personenauto -Personenbahnhof/S -Personenbefrderung -Personenfahrt -Personenfrage/N -Personengruppe/N -Personenkreis/EPT -Personenschifffahrt/P -Personenschutz/T -Personenspektrum -Personenverkehr/S -Personenwagen/S -Personenzahl -Personifizierens -Personifizierung/P -Perspektive/N -Pertinaxplatte/N -Percke/N -Peru/S -Perversion/P -Perversitt -Perzeption/P -Peseta -Pesete/N -Pessimismus -Pessimist/P -Pest -Pestizid/EPS -Pestwurz -Peter/MS -Petersburg -Petersdom/S -Petersilie -Peterskirche -Petersplatz -Petition/P -Petitionsausschuss/Tp -Petra/S -Petrodollar/S -Petroleum -Petroleumlampe/N -Petrus -Petting -Pfndens -Pfnder/N -Pfndung/P -Pfndungsschutz -Pfndungsversuch -Pfad/EPST -Pfadangabe/N -Pfadfinder -Pfadfinderbund -Pfadfindergesetze -Pfadfinderlagern -Pfadname/N -Pfahl/ST -Pfalz -Pfand/ST -Pfandhaus -Pfandleihe -Pfandrecht/S -Pfanne/N -Pfannkuchen -Pfarrei/P -Pfarrer/FNS -Pfarrersfamilie -Pfarrerstchter -Pfau/EPS -Pfaueninsel -Pfauenthron -Pfeffer/S -Pfefferkorn -Pfefferminz/E -Pfeifenmann -Pfeifentabake -Pfeifkonzert -Pfeifton/S -Pfeil/EPRS -Pfeiler/NS -Pfeilerbrcke -Pfeilrichtung/P -Pfeiltaste/N -Pfeilzeichen/S -Pfennig/EPS -Pfennigfuchser -Pfennigstck/ST -Pferch -Pferd/EMPT -Pferdediebe -Pferdefarmen -Pferdefu/Tp -Pferdegebiss/EPT -Pferdegeschirr/EPS -Pferdegespann -Pferdehndler/FNS -Pferdekenner -Pferdekoppel -Pferdekrfte -Pferdekraft -Pferdeliebhaber -Pferdemarkt/STp -Pferdenarren -Pferdepension/P -Pferdepfleger -Pferderennen/S -Pferdestrke/N -Pferdestall/Sp -Pferdestatue -Pferdezchter -Pferdezucht -Pferdsprung -Pfg -Pfg. -Pfiffes -Pfiffigkeit/P -Pfiffs -Pfingsten -Pfingstferien -Pfingstfest/T -Pfingstpause -Pfingstsamstag -Pfingstsonntag -Pfingstwoche -Pfingstwochenende -Pfirsich/EPS -Pfister -Pflanzenarten -Pflanzenfaser/N -Pflanzengarten -Pflanzenkost -Pflanzenkunde -Pflanzens -Pflanzenschutzmittel/NS -Pflanzenwelt -Pflanzer/NS -Pflanzgut -Pflanzsttte -Pflanzung/P -Pflaster/S -Pflasterstein/EPS -Pflaume/N -Pflaumenbaum/STp -Pflegeanstalt -Pflegeberufe -Pflegeeltern -Pflegeheim/ET -Pflegekind/T -Pflegekinder -Pflegeklasse -Pflegeleistung -Pflegemittel/NS -Pflegemutter -Pflegens -Pflegepersonal -Pflegeprobleme -Pfleger/FNS -Pflegesatz -Pflegesttte -Pflegestation/P -Pflegetochter -Pflegevater -Pflegezulage -Pfleglinge/N -Pflegung/P -Pflicht -Pflichtanteil/EPS -Pflichtassistent -Pflichtbewusstsein/S -Pflichtbltter -Pflichtblatt -Pflichtenheft/EPT -Pflichtenkreis/EPT -Pflichterfllung -Pflichtfcher/N -Pflichtfach/T -Pflichtfigur -Pflichtgefhl -Pflichtgrenze -Pflichtkonto -Pflichtkrankenkasse -Pflichtlektre/N -Pflichtquote -Pflichtspiele -Pflichtsport -Pflichtstunde/N -Pflichtteil/EPS -Pflichtbung/P -Pflichtumtauschstze -Pflichtverletzung -Pflichtversumnis/Qq -Pflichtverteidiger/NS -Pflcker -Pflug/ST -Pfrtner/FNS -Pforte/N -Pfosten/S -Pfostenleiste/N -Pfostenschuss/Tp -Pfostenstecker -Pfote/N -Pfropf/P -Pfrnde/N -Pfrndenkuchen -Pftze/N -Pfuhl -Pfund/EPST -Pfundabwertung -Pfundblase -Pfundblock -Pfundkrise -Pfundkurs/T -Pfundnoten -Pfundschwche -Pfundwhrung -Ph -Phnomen/EPS -Phnomenologie -Phalanx -Phantasie/N -Phantasiefigur -Phantasieuniform -Phantast/P -Phantasterei/P -Phantastik -Phantom/EPS -Pharao -Pharaonen -Phariser -Pharmaexporte -Pharmakologie -Pharmazeut/P -Pharmazeutiker -Pharmazie -Pharmazieschule -Phase/N -Phasenanalyse -Phasenbeziehung/P -Phasenfunktion/P -Phasenkorrektur -Phasenkorrelation -Phasenversatz -Phasenverschiebung/P -Phenol -Phenolchemie -Philatelist/P -Philharmonie/N -Philharmoniker/NS -Philipp/S -Philippinen -Philippinengraben -Philippineninseln -Philippsburg -Philips -Philister -Philologe/N -Philologenschaft -Philologenverband -Philologiestudenten -Philosoph/P -Philosophenschule -Philosophentum -Philosophie/N -Philosophiestudentin -Philosophiestudium -Phlegma -Phnix -Phobie/N -Phon -Phonetik -Phonograph/P -Phosphat -Phosphatdnger -Phosphor/S -Photo/NS -Photoatelier -Photoaufnahme/N -Photobeispiele -Photochemie -Photograph/FP -Photographie/N -Photokopie/N -Photolyse -Photomontage/N -Photon/PS -Photonenrakete -Photoreporter/N -Photosynthese -Photovoltaik -Photozelle/N -Phrase/N -Phylogenese -Physik/R -Physiker/FNS -Physikerausbildung -Physiklehrer -Physiksaal -Physikunterricht -Physiognomie/N -Physiologe/FN -Physiologie -Piaget/S -Pianist/FP -Picasso/S -Pickel/N -Pickelgesicht -Pickelhauben -Picknick/S -Piemont -Piepsen -Piepser/NS -Piepserkontrolle -Piett -Piezoaufnehmer/S -Piezogebern -Piezokeramik -Piezomaterial/S -Piezopiepser -Piezoplatte -Piezoscheiben -Piezoschwinger -Piezoseite -Piezosummer -Pigment/EPS -Pik/E -Piktogramm/EPS -Pilatus -Pilger/S -Pilgerfest -Pilgerreise -Pilgervter -Pilgerzug/STp -Pille/N -Pillendreher -Pillenknick -Pilot/P -Pilotenexamen -Pilotenkanzel -Pilotenkombination -Pilotensitz -Pilotentraining -Pilotprojekt/EPS -Pilsen/RW -Pilz/EPT -Pilzatlas -Pilzkappe -Pilzkpfe -Pilztaste -Pilztastenmodul -Pimmel -Pin/FS -Pinadapter/S -Pinbelegung -Pinbezeichnung/P -Pinbretter/N -Pingpong -Pinguin/EPS -Pinie/N -Pinienbestand -Pinienwlder -Pinne/N -Pinnummer/N -Pinocchio/S -Pinsel/S -Pinselstrich/EPT -Pinzette/N -Pionier/EFPS -Pionierarbeit/P -Pioniereinheit/P -Pioniergeist -Pionierleistung -Pioniertat/P -Pioniertrupp/S -Pionierzeit -Pipeline/S -Pipette/N -Pippi/S -Piquet -Pirat/P -Piratenknig -Pirelli -Pirmasens -Pirouette/N -Pirsch -Pirschgang -Pisser -Pissoir/S -Pistazie/N -Piste/N -Pistenmacher -Pistenrand -Pistole/N -Pistolenschieen -Pistolenschtze -Pistolenschuss/Tp -Pius -Pixel/N -Pixelgruppen -Pixelmanipulation -Pixelmatrix -Pixelmuster -Pixeltiefe -Pizza/S -Pizzen -Pizzeria -Pkw -Pldoyer -Plne/N -Plsier -Pltte -Pltze/MN -Placebo -Plackerei/P -Plagiat/EPS -Plagiator/P -Plakat/EPST -Plakatkrieg -Plakatmaler -Plakatsule -Plakette/N -Plan/RST -Planck/S -Planens -Planer/NS -Planet/P -Planetenbahn -Planetenhlle -Planetenkonstellation/P -Planetoid/P -Planfahrt -Plangestell -Planieren/JS -Planke/N -Plankostenrechnung -Plankton -Planquadrat -Planschleifen -Planstelle/N -Planstellenbesetzung -Plantage/N -Plantageanteile -Plantagenarbeiter/FNS -Plantagengesellschaften -Plantschbecken/S -Planung/P -Planungsabteilung/P -Planungsanstze/N -Planungsarbeit -Planungsausschuss/Tp -Planungschef/S -Planungsfehler -Planungsfragen -Planungsgewinne -Planungsgruppen -Planungskomitee/S -Planungskommission/P -Planungskonzept/EPST -Planungsmethode/N -Planungsminister -Planungspanne -Planungsstelle -Planungsunterlagen -Planungsvorschlag/STp -Planungsziel -Planwagen -Planwirtschaft -Planzahl -Plaque/S -Plasma/S -Plasmabildschirm -Plasmadisplay/S -Plasmen -Plastik/PS -Plastikausfhrung -Plastikbombe -Plastikboot -Plastikdraht -Plastikeimer -Plastikeinband -Plastikflasche -Plastikgehuse -Plastikhimmel -Plastikkarte -Plastiknase -Plastikscke -Plastiksack -Plastikschirm -Plastikstoffe -Plastikstreifen -Plastiktte -Plastikverpackung -Plateau/S -Platin/EPS -Platinchen -Platinenanschraubwinkel -Platinenanzahlung -Platinenebene -Platinenhalterung -Platinenkombination/P -Platinenkonzept -Platinenparameter -Platinentest -Platinuhr -Platitude/N -Plato/NS -Platonismus -Plattenaufnahmen -Plattenerfolge/N -Plattenkapazitt/P -Plattenmusik -Plattensee -Plattenspieler/S -Plattentipp/S -Plattform/P -Plattfu/Tp -Plattitde/N -Platzanweiser/FNS -Platzbedarf -Platzbelegung -Platzeinsparung -Platzes -Platzgrnde/N -Platzhalter/NS -Platzhandel -Platzierens -Platzierung/P -Platzkarten -Platzmangel -Platznot -Platzordner -Platzprobleme/N -Platzregen -Platzreservierung/P -Platzverbot -Platzvereine -Platzverweis/T -Platzvormerkung -Platzziffer -Plauderei/P -Plausch -Plausibilitt -Plausibilittsberprfung -Playback -Playboy/S -Plebejer -Pleiten -Pleiteverdacht/S -Pleitewelle -Pleitier/S -Plempeleitungssteuerung -Plenarsitzung/P -Plenartagung -Plenum/S -Plexiglasfenster -Plexiglashaube -Plexiglasscheibe -Plot/S -Plotter -Plotterpapier -Plotterstifte -Plnderer -Plnderns -Plnderung/P -Plsch -Plumpheit -Plural/S -Pluralismus -Pluralitt -Pluskonto -Pluspunkte/N -Pluswert/EPST -Plutarch/S -Pluto -Plutonium -Plutoniumwerke -Plymouth -Pneu/S -Pneumatik -Pneumatikplnen -Pbel/S -Pbelei/P -Pkelfleisch -Pkelsalzlake -Pstchen/S -Pocken -Podest/EPST -Podien -Podium/S -Podiumsdiskussion/P -Podiumsgesprch/EPS -Poesie -Poet/P -Pogrom/EPS -Pointe/N -Pokal/EPS -Pokalehrgeiz -Pokalendspiel/EPS -Pokalerinnerung/P -Pokalfinalisten -Pokalgewinn -Pokalgewinner -Pokalsieg -Pokalsieger/S -Pokaltore -Pokalwiederholung -Poker -Pokergesicht -Pokergesichtern -Pokerspiel -Pol/EFJPS -Polareis/T -Polarflug/STp -Polarforscher/S -Polarforschung -Polarfuchs/T -Polarisation -Polaritt/P -Polarkoordinaten -Polarkreis/EPT -Polarlicht -Polaroid -Polarstern -Polarzone -Polbrcke -Polder/NS -Polderhfe -Polderland -Polemik/P -Polen/JSW -Polenreise -Polente -Polgebiete -Police/N -Polier -Polierstelle -Poliklinik -Polis -Politbro/S -Politesse/N -Politfunktionr/EPS -Politik/R -Politikauffassung/P -Politikbereich/EPS -Politiker/FNS -Politikfeld/R -Politikinhalt/EPS -Politikverstndnis/Qq -Politikwissenschaft/P -Politkrimi/S -Politmanagement -Politoffiziere -Politpropaganda -Politur -Politvolk/S -Polizei -Polizeiakten -Polizeiaktion/P -Polizeiangehrige -Polizeianwrter -Polizeiapparat -Polizeiarzt/T -Polizeiaufsicht -Polizeiaugen -Polizeiauto/S -Polizeibeamte/FNR -Polizeibehrde -Polizeibericht -Polizeibewachung -Polizeibewaffnung -Polizeichemiker -Polizeidezernat -Polizeidienststellen -Polizeieinheit/P -Polizeieskorten -Polizeifahrzeuge -Polizeifunkwagen -Polizeigebude -Polizeigewalt -Polizeigruppe -Polizeihauptkommissar -Polizeihauptmeister -Polizeihaus/Tp -Polizeihund/E -Polizeiinspektor/S -Polizeijuristen -Polizeikaserne -Polizeikommandeur -Polizeikommando -Polizeikommissar/PS -Polizeikontrolle -Polizeikonvention/P -Polizeikrfte -Polizeilautsprecher -Polizeimajor -Polizeimeister/FNS -Polizeioberwachtmeister -Polizeioffizier -Polizeiorgane -Polizeiprfekt/P -Polizeiprfektur -Polizeiprsidenten -Polizeiprsidium -Polizeipraktiken -Polizeirevier/EPS -Polizeischutz -Polizeisprecher -Polizeistaat/PST -Polizeistafette -Polizeistreife/N -Polizeistreifenwagen -Polizeitrupp/EPS -Polizeiwachen -Polizeiwachtmeister -Polizeiwagen -Polizeizentrale -Polizist/FP -Polizistenmrder/S -Polle/N -Pollenflug/STp -Pollinie/N -Polonaise -Polopferd -Polospieler -Polster/JS -Polsterbnke -Polstermeister -Polstermbel -Polterabend/S -Poltergeister -Polyarthritis -Polygamie -Polygon/EPS -Polygonzug/Sp -Polykultur -Polynesier/N -Polynom/EPS -Polyp/P -Polystyrol -Pomade/N -Pommern -Pommes -Pomp/S -Pompadour/S -Pompidou/S -Pontiac -Ponton/S -Pontonbrcke -Pony/S -Ponywandern -Pool/S -Pop/EP -Popanz/P -Popeline -Popkonzert/S -Popo/S -Popper/NS -Popsnger/FNS -Popularitt -Popularittskurve -Population/P -Poren/I -Porenbeton -Porno/S -Pornofilm/E -Pornographie/Nf -Pornokino/S -Pornoschuppen -Pornoshow -Pornostar/S -Porsche -Port/S -Portabilitt -Portabilittsproblem/E -Portal/EPS -Portefeuille/S -Portemonnaie/S -Portfunktionen -Portier/JS -Portierens -Portierlogen -Portierungsaufwand/ST -Portion/P -Portionieren/JS -Portland -Portmonee/S -Porto/S -Portogebhren -Portotarif -Portrt/S -Portrtfoto/S -Portrtist/P -Portrait -Portsmouth -Portugal/S -Portugiese/FN -Portwein/EPS -Porzellan/EPS -Porzellanarbeiter/FNS -Porzellanglocken -Porzellangrohandlung -Porzellankiste -Porzellanschhchen -Porzellanservice -Porzellanwaren -Poseidontempel -Posen/I -Position/P -Positionierens -Positionierhlle -Positionierung/P -Positionsnderung/P -Positionsangabe/N -Positionsermittlung -Positionsgrenze/N -Positionslsung -Positionsmessung -Positionsmodul -Positionspapier -Positionsunabhngigkeit -Positionsverteilung/P -Positivismus -Posse/N -Post/PW -PostScript -Postmter -Postabgabe -Postablieferung/P -Postamt/ST -Postangestellten -Postanleihe -Postanschrift/P -Postanweisung/P -Postanweisungsdienst -Postauftrag/STp -Postbeamte/NR -Postbediensteten -Postbehrden -Postbenutzern -Postbezieher -Postbote/N -Postdienste/S -Postdienstleistung/P -Posten/SW -Postenverteilung -Poster -Postfcher/N -Postfach -Postfachinhaber -Postgebhr/P -Postgeheimnis/Qq -Postgewerkschaft -Postille/N -Postkarte/N -Postkartengre/N -Postkasten -Postkunde -Postkutsche -Postleitgebiete -Postleitzahl/P -Postministerium -Postmodem -Postomnibusse -Postquittung -Postraub -Postreisedienst -Postscke -Postsack/T -Postscheck/S -Postscheckmter -Postscheckkonten -Postscheckonto -Postschliefach -Postsendung/P -Postsparbuch -Postsparguthaben -Postsparkassendienst -Postsparkonto -Poststadion/P -Poststempel/NS -Poststreik/S -Posttarife -Postulat/EPST -Postunion -Postverkehr/S -Postvertrag/STp -Postweg/E -Postwertzeichen -Postzug/STp -Postzustellung -Postzweige -Potentat/P -Potential/EPS -Potentialfreiheit -Potentialtrennung -Potentiometer/NS -Potentiometerauswertung -Potentiometerspannung/P -Potentiometerstellung -Potentiometerwert -Potenz/P -Potenzial/EPS -Potenzialbarriere/N -Potenzialfreiheit -Potenzialtopf -Potenzialtrennung -Potenzialverlauf/p -Potenzreihe/N -Potenzverlust -Potenzvorstellung/P -Poti/S -Potsdam/RS -Potsdamer/FNS -Power -Poweradapter/NS -Powerdown -Powerpack/S -Powerup -Prambel -Prdestination/P -Prdestinationslehre -Prdikat/EPST -Prdikatenlogik -Prfekt/P -Prfektur -Prferenz/P -Prferenzbehandlung -Prferenzzone -Prfix/EPT -Prgens -Prgestempel -Prgetechnik -Prgnanz -Prgung/P -Prjudiz -Prlat/P -Prludium -Prmie/N -Prmienaufkommen -Prmiendruck -Prmieneinnahme -Prmienpolitik -Prmiensteigerung -Prmienbertrge -Prmienvorteil -Prmienzuschlag/STp -Prmienzuwachs/T -Prmierens -Prmierung/P -Prmisse/N -Prparat/EPST -Prparation/P -Prposition/P -Prrie/N -Prriegebiete -Prsentation/P -Prsentierteller -Prsenz/P -Prservativ/EPS -Prsident/FP -Prsidentenberater -Prsidentenkandidatur -Prsidentenposten -Prsidentensessel -Prsidentenstuhl -Prsidentenwagen -Prsidentenwahl -Prsidentenwahlkampf -Prsidentschaft/P -Prsidentschaftsrates -Prsidentschaftswahl/P -Prsidialmchte -Prsidialmitglied -Prsidialrat -Prsidialregimes -Prsidialrepublik -Prsidialsitzung -Prsidien -Prsidium/S -Prsidiumsmitglieder -Prsidiumssitzung -Prvalenz -Prvention/P -Prventivmedizin -Przedenzfall/STp -Przisierens -Przisierung/P -Przision/P -Przisionsinstrument/EPST -Przisionsleistung -Przisionsmessgert/EPST -Przisionsprodukt -Przisionsspezifikation/P -Przisionstechnik -Przisionsuhr -Przisionsverstrker -Pracht -Prachtausfhrung -Prachtausgabe/N -Prachtbauten -Prachtexemplar/EPS -Prachtkerl -Prachtkind -Prachtstck -Prachtuniformen -Prachtwesen/S -Prado -Prag/RS -Pragmatik/R -Prahlerei -Prahlhans -Praktika -Praktikant/FP -Praktikantenstelle -Praktiken -Praktiker/NS -Praktikum/S -Praktikumsordnung/P -Praktikumspltze/N -Praktikumsplatz/T -Praline/N -Pranger/S -Pranke/N -Pratze/N -Prawda/S -Praxen -Praxis -Praxisbezug/S -Praxiserfahrung -Praxisnhe -Praxisraum/STp -Praxisstelle -Praxisuntauglichkeit -Prediger/FNS -Predigtbcher -Predigtdienst -Preisnderung/P -Preisabbau -Preisabschlge -Preisabschwchung/P -Preisabsprache/N -Preisamt/T -Preisanfrage -Preisangabe/N -Preisangebot/E -Preisangleichung/P -Preisanhebung/P -Preisanpassung -Preisanstieg/ST -Preisanstiegsmeldung/P -Preisaufschlge -Preisauftrieb -Preisausgleich -Preisausschreiben -Preisauszeichnung -Preisbefestigung/P -Preisbeispiel/E -Preisbemessung -Preisberechnung -Preisbestandteil -Preisbestimmung/P -Preisbewegung/P -Preisbild -Preisbildung -Preisbrecher -Preischaos -Preischart -Preisdifferenz -Preisdiktate -Preisdisziplin -Preisdruck -Preiseinbrche -Preiseinbuen -Preisempfehlung/P -Preisentwicklung/P -Preiserhhung -Preisermigung -Preisermittlung -Preiserwartung/P -Preises -Preisexplosion/P -Preisfaktor -Preisfestsetzung/P -Preisforderung/P -Preisfragen -Preisfreigabe -Preisfreiheit -Preisgabe -Preisgebung/P -Preisgeflle/S -Preisgefge/S -Preisgelder/N -Preisgericht/S -Preisgesetz/T -Preisgestaltung -Preisgewinner -Preisgrenze -Preisgrundlage -Preisgruppe -Preisherabsetzung/P -Preisidee -Preisindex -Preisinflation -Preiskampf -Preiskategorie -Preisklasse/N -Preiskorrektur/P -Preislage -Preislinie/N -Preisliste -Preisnachlass/Tp -Preisniveaus -Preisnotierung/P -Preispolitik -Preisproblem/E -Preisrtsel -Preisrahmen -Preisrecht/S -Preisregelung/P -Preisrichtlinien -Preisrckgang/S -Preisschildchen -Preisschilder -Preisschwankung/P -Preissenkung/P -Preissituation/P -Preisspaltung -Preisspanne -Preisspektrum -Preisstabilitt -Preisstaffel -Preissteigerung/P -Preisstellung -Preisstopp/S -Preisstoppverordnung -Preissturz/T -Preissystem/S -Preistreiberei/P -Preisberwachung -Preisunterbietung/P -Preisunterschiede -Preisverfall/S -Preisvergleiche -Preisverhltnis/Qq -Preisverhalten -Preisverleihung -Preisverordnung -Preisverschiebung/P -Preisverteilung -Preisvorsprung -Preisvorteil -Preiswirkung -Preiswrdigkeit -Preiszerstrung -Preiszugestndnis/Qq -Preiszuschlag/STp -Prellen/JS -Premier/EPS -Premierenfeier -Premierengste -Premierensieger -Premierentermin -Premierminister/FNS -Presbyter/FNS -Presbyterianer/NS -Presbyterium/S -Presseabteilung/P -Presseagentur/P -Presseamt/ST -Pressearbeit -Presseartikel -Presseball/Sp -Pressebericht/EPST -Pressechef/S -Pressedienst/T -Presseempfang -Presseerklrung -Pressefotografen -Pressefreiheit -Pressefritzen -Pressegesetz -Presseinformation/P -Presseinterview -Presseklub -Pressekommentare -Pressekonferenz -Pressekreisen -Presseleute/N -Pressemeldung/P -Pressemitteilung/P -Pressenotiz -Pressens -Presseoffizier/S -Presseorgane/N -Presseorganisation/P -Pressephoto -Pressephotographen -Pressepolemiken -Presseprodukte -Presserat/T -Pressereferat -Pressereferent/P -Presserezension/P -Presserummel/S -Pressespekulation/P -Pressespiegel -Pressesprecher -Pressestelle/N -Presseunternehmen -Presseverband -Presseverffentlichung/P -Pressevertreter/S -Pressewesen -Pressezentrum/S -Pression/P -Pressluftbohrer/NS -Pressmasse -Pressspan/ST -Pressung/P -Presswehe/N -Presswerk -Prestige/S -Prestigebedrfnis/Qq -Prestigedenken -Prestigefrage -Prestigegebude -Prestigegesichtspunkte -Prestigegrnde -Prestigerckschlag/STp -Prestigestandpunkt -Prestigeverlust -Prestigevorstellung/P -Preue/N -Preuen/S -Preuenknig -Priester/N -Priesterehre -Priestergebrde -Priestergewndern -Priesterweihe -Primrschaltregler -Primrseite -Primaballerina -Primadonna -Primaner -Primat/EPS -Primitivismus -Primitivitt -Primitivtest -Primus -Primzahl/P -Prinz/P -Prinzenpaar -Prinzessin/F -Prinzgemahle -Prinzip/S -Prinzipien -Prinzregent -Prioritt/P -Priorittsanspruch -Priorittsordnung -Priorittsrecht -Priorittssteuerung -Prismen -Pritschenwagen -Privatadresse/N -Privatangelegenheit -Privatarena -Privataufenthalt/EPST -Privatausgabe/N -Privatbank/P -Privatbankhaus/T -Privatbibliothek -Privatboote -Privatbrief/E -Privatchauffeur -Privatdarlehen -Privatdiskont -Privatdozent/FP -Privateigentum/S -Privatfamilien -Privatfernsehen -Privatfirma -Privatfonds -Privatfrage/N -Privathaftpflicht -Privathaushalt -Privatindustrie -Privatinteresse/N -Privatisierens -Privatisierung/P -Privatisierungshymne -Privatissimum -Privatjacht -Privatjet -Privatkapital/S -Privatklageweg -Privatkredit -Privatkche -Privatkunden -Privatleben/S -Privatlehranstalt -Privatleute/N -Privatmann -Privatmaschinen -Privatnummer -Privatparkplatz -Privatpatient/P -Privatperson/P -Privatpraxis -Privatpressen -Privatpublikum -Privatrechts -Privatreisende/N -Privatsammler/N -Privatsanatorium -Privatschuldienst -Privatschule/N -Privatschullehrers -Privatsekretr/FPS -Privatsphre/N -Privatspiele -Privatstall -Privatuniversitten -Privatunterhaltung -Privatunternehmen -Privatunternehmer/NS -Privatunterricht/S -Privatverbindlichkeit/P -Privatverbraucher -Privatverkauf/Sp -Privatvermgen -Privatvilla -Privatwohnung/P -Privatzimmer -Privileg/S -Privilegien -Proband/P -Probeabonnement/S -Probeabstimmung -Probealarm -Probeauftrag/STp -Probeausdruck/EPS -Probeausgabe/N -Probebestellung/P -Probebetrieb -Probeexemplar/EPS -Probefahrschler -Probefahrt -Probefall -Probeflug/STp -Probegalopp -Probegewehr -Probelauf/Sp -Probelieferung -Probenarbeit -Probenplan -Probenummer/N -Probesendung/P -Probespiel -Probestck/T -Probetraining -Probewohnen -Probezeiten -Probierens -Probierstube -Problem/EMPS -Problematik/P -Problembearbeitung/P -Problembereich/EPS -Problembeschreibung -Problembeseitigung -Problembestnde/N -Problembewusstsein/S -Problembranche -Problembcher -Problemfachleute -Problemfall/Sp -Problemgeschichte/N -Problemhistorie -Problemkreis/EPT -Problemlsen/J -Problemlsungsdefizit/EPS -Problemmeldung -Problemstellung/P -Problemteil/EPS -Problemthema -Problemverarbeitung -Problemzusammenhang/S -Produkt/EPST -Produktangebot -Produktaufbau -Produktbeschreibung -Produktbezeichnung -Produktenbrse -Produktenhandel -Produktentwicklung -Produktfamilie/N -Produktfoto/S -Produktgruppe/N -Produktidee/N -Produktinformation/P -Produktinnovation/P -Produktion/P -Produktionsablauf/Sp -Produktionsabteilung -Produktionsanlage -Produktionsanstieg/S -Produktionsanteil -Produktionsauflagen -Produktionsaufnahme -Produktionsauftrag/STp -Produktionsausfall/Sp -Produktionsausweitung -Produktionsbasis -Produktionsbeginn -Produktionsbereich/EPS -Produktionsbeschrnkung/P -Produktionsbesprechung -Produktionsbetriebe/S -Produktionsbranchen -Produktionsdistrikte -Produktionseinheit/P -Produktionseinstellung -Produktionserfolge -Produktionsergebnis/Qq -Produktionserhhung -Produktionsfreigabe -Produktionsgebiete -Produktionsgrnde -Produktionsgter/N -Produktionskapazitt/P -Produktionskosten -Produktionskostenanteil -Produktionslnder -Produktionsleistung/P -Produktionsleiter -Produktionslinie/N -Produktionsmarken -Produktionsmaterial -Produktionsmethode/N -Produktionsmitarbeiter/FNS -Produktionsmittel -Produktionsmglichkeit/P -Produktionsniveau/S -Produktionspreise -Produktionsprobleme -Produktionsprozess/EPT -Produktionsquoten -Produktionsreserve/N -Produktionssektor -Produktionssttte/N -Produktionsstandort/EPST -Produktionssteigerung -Produktionsstillstand -Produktionssystem/S -Produktionsttigkeit -Produktionstechnik -Produktionstechnologien -Produktionstest -Produktionsbersicht -Produktionsunterlagen -Produktionsvertrag/STp -Produktionsvolumen/S -Produktionsvorbereitung -Produktionswachstum -Produktionswerke -Produktionszahlen -Produktionsziel -Produktionsziffern -Produktionszunahme -Produktionszweige -Produktivitt -Produktivittsbonus -Produktivittssteigerung -Produktivittsziffer -Produktivvermgen -Produktkatalog -Produktleitlinie/N -Produktlinie/N -Produktlcke -Produktpalette/N -Produktpolitik -Produktqualitt -Produktstabilitt -Produktbersicht/P -Produktverantwortung -Produktvorstellung -Produktziel/EPS -Produzent/FP -Prof -Prof. -Profession/P -Professionalismus -Professor/FPS -Professur/P -Profi/S -Profiboxer -Profierfahrung/P -Profifuball -Profil/EPS -Profilager -Profilanzeige -Profilautomatik -Profilbegrenzung/P -Profilbegrenzungslinie -Profilberechnung -Profilbereich -Profilbreite -Profildarstellung -Profildatei/P -Profildaten -Profilecke/N -Profilfahrten -Profilfunktion/P -Profilgrenze/N -Profilindex -Profilkontrolle -Profillinie -Profilmanipulation/P -Profilmodul -Profilneurose -Profilnummer -Profilrand -Profilschneidautomatik -Profilseite -Profilstahl -Profilsteuerung -Profilwalzwerk -Profit/EPSW -Profitgier -Profitquelle/N -Profiverein/EPS -Prognose/N -Prognoseformel -Prognosekurve/N -Prognosemethode/N -Prognosemodell/S -Prognoseprogramm/S -Prognoseverfahren/S -Prognosewert/EPST -Prognostik/R -Prognostiker/FNS -Programm/EPS -Programmnderung/P -Programmabbruch -Programmablauf/STp -Programmablaufplan/S -Programmanalyse/N -Programmaufruf/EPS -Programmausfhrung -Programmbeschreibung -Programmbestandteil/EPS -Programmbibliothek -Programmcode -Programmdarstellung/P -Programmdatei/P -Programmdirektor -Programmdokumentation -Programmende -Programmentwicklung -Programmentwicklungsprozess/EPT -Programmergnzung -Programmerstellung -Programmfehler/NS -Programmfile/S -Programmgestalter/NS -Programmgestaltung/P -Programmhefte/N -Programmierarbeit/P -Programmierarbeitszeit -Programmieraufgabe/N -Programmieraufwand/S -Programmierausrstung -Programmierbarkeit -Programmiereffizienz -Programmiereingnge -Programmiereinrichtung/P -Programmierer/FNS -Programmiererfahrung -Programmierfehler/S -Programmierkosten -Programmierleistung/P -Programmiermethodik/P -Programmierneigung/P -Programmieroberflche/N -Programmierproblem/EPS -Programmierrichtlinien -Programmiersprache/N -Programmierstil/EPS -Programmierstunde/N -Programmiertechnik/P -Programmiertrick/S -Programmierumgebung/P -Programmierung -Programmierzeit -Programmierzeitpunkt -Programminbetriebnahme -Programminstallation/P -Programminterface/S -Programmkonstrukt/EPST -Programmkonstruktion -Programmladezeit -Programmlauf/Sp -Programmleiter -Programmliste -Programmlcke/N -Programmmacher/NS -Programmmodul/E -Programmnamen -Programmobjekt/EPST -Programmoptimierung/P -Programmpaket/EPS -Programmpflege -Programmpunkt/EPT -Programmquellcode/S -Programmreprsentation/P -Programmsammlung -Programmschritt -Programmsicherung -Programmspeicher/S -Programmspeicherbereich/E -Programmstamm/T -Programmstart -Programmstelle -Programmsteuerung -Programmstruktur/P -Programmsystem/P -Programmtechnik/P -Programmteil/EPS -Programmtext/EPT -Programmtransformation/P -Programmumgebung -Programmunterlagen -Programmverifikation -Programmverlust -Programmversion/P -Programmverwaltung -Programmverzweigung/P -Programmvorschau -Programmwartung -Programmwechsel -Programmwelt -Programmzeitung -Programmzustnde -Programmzweig/EPS -Progress/EPT -Progression -Progressionsvorbehalt -Projekt/EPST -Projektarbeit/P -Projektbearbeitung/P -Projektbeginn/S -Projektbericht/EPT -Projektbeschreibung/P -Projekterfahrung/P -Projektergebnis/Qq -Projektingenieur/EPS -Projektion/P -Projektionslinse/N -Projektionsschirm/S -Projektlaufzeit/P -Projektleiter/NS -Projektmanagement/S -Projektname -Projektnummer -Projektor/P -Projektpartner/NS -Projektphase/N -Projektplanung -Projektresultat/P -Proklamation/P -Prokura -Prokuren -Prokurist/P -Proletariat/S -Proletarier/NS -Proletarisieren/JS -Proletentum/S -Prolog/EPS -Promenade/N -Promenadenanzug/STp -Promenadenplatz -Promille -Prominentenviertel -Prominenz/P -Promoter/N -Promotion/P -Pronomen/S -Pronomina -Propaganda -Propagandaaktion/P -Propagandafeldzug/STp -Propagandakampagne -Propagandamanver -Propagandamaschinerie -Propagandamaterial -Propagandaparolen -Propagandaphrasen -Propagandaveranstaltung -Propagandazwecken -Propagandist/P -Propagierens -Propagierung/P -Propeller -Propellermaschinen -Prophet/P -Prophezeiens -Prophezeiung/P -Prophylaxe/N -Proportion/P -Proportionalausgang/Sp -Proportionaldruck -Proportionalfaktor -Proportionalitt/P -Proportionalregelung -Proportionalschrift -Proportionalsteuerung -Proportionalteil -Proportionalterm -Proportionalventil/EPS -Proportionalventilkarten -Proporz -Propylen -Prosa -Prospekt/EPS -Prospektmaterial -Prospektunterlagen -Prostata -Prostitution -Prostitutionszwecke -Protagonist/P -Protein/EPS -Protektion/P -Protektionismus -Protektionist/P -Protektor/PS -Protektorat/ST -Protest/EPT -Protestaktion/P -Protestant/P -Protestantismus -Protestbrief/ST -Protestkundgebung/P -Protestmarsch -Protestsnger -Protestschreiben/S -Protestschritt -Proteststreik -Proteststurm/S -Prothese/N -Protokoll/EPS -Protokolldrucker -Protokollfehler -Protokollierens -Protokollierung/P -Proton/PS -Prototyp/PS -Prototypenbau -Prototypenserie -Proviant/S -Provider/NS -Provinz/P -Provinzanwalt -Provinzbnkler -Provinzler/N -Provinzstdte -Provinztheater/S -Provision/P -Provisionsabrechnung/P -Provisionsjger -Provisionsverkufer -Provisionsvermittler -Provisorien -Provisorium -Provitamin/EPS -Provokation/P -Proxy/S -Prozedur/P -Prozent/EPS -Prozentangabe/N -Prozentanteil/EPS -Prozentgehalt -Prozentpunkt/EPST -Prozentstze/N -Prozentsatz -Prozentskala -Prozentsteigerung/P -Prozentwert/EPST -Prozentzahl -Prozess/EPT -Prozessabbruch -Prozessbeginn -Prozessbeobachtern -Prozessbeschreibung/P -Prozessdauer -Prozessfhrung/P -Prozessfunktion/P -Prozession/P -Prozessionsstrae/N -Prozesskosten -Prozessmodell -Prozessor/PS -Prozessordnung -Prozessorleistung -Prozessorregister -Prozessorumgebung -Prozesspraxis -Prozessrechner -Prozessrechnersystem -Prozessserie -Prozesssteuerung -Prozessvertreter -Prozessvollmacht -Prderie -Prfadapter/NS -Prfamtsvorschriften -Prfanweisung -Prfaufwand -Prfbescheinigung -Prfeinrichtung -Prfens -Prfer/FNS -Prfergebnis/Qq -Prffeld -Prfgert -Prfingenieur -Prfkpfe -Prfling/EPS -Prfliste/N -Prfmaschinen -Prfprogramm -Prfprotokoll -Prfpunkt/EPST -Prfsiegel -Prfspitze -Prfstand/T -Prfstein/EPT -Prfstelle/N -Prfstrecke -Prfsumme/N -Prftechnik/P -Prfung/P -Prfungsantrag/STp -Prfungsarbeit/P -Prfungsaufgabe/N -Prfungsausschuss/Tp -Prfungsbericht/EPS -Prfungsdienst -Prfungserfolg -Prfungskmpfen -Prfungspraxis -Prfungsschwimmen -Prfungsstelle -Prfungstermin/EPS -Prfungsthema -Prfungsverfahren/S -Prfungsvorbereitung -Prfungswesen/S -Prfverfahren/S -Prfzettel -Prgel -Prgelknabe/N -Prgelstrafe -Prgelszene/N -Prunk -Prunksitzung -Prunkstck/S -Psalm/PS -Pseudoerklrung/P -Pseudonym/EPS -Pseudoromantik -Psyche -Psychiater/FNS -Psychiatrie -Psychoanalyse -Psychoanalytiker/NS -Psychologe/FN -Psychologie -Psychopath -Psychopharmaka -Psychose/N -Psychosomatik -Psychoterror -Psychotherapeut/FP -Psychotherapie/N -Ptolemus -Ptolemaios -Pnktlichkeit -Pppchen/S -Pree -Ptt/S -Pub/S -Pubertt -Puberttsjahre -Puberttszeit -Publikation/P -Publikationsliste/N -Publikum/S -Publikumsbeteiligung -Publikumserfolg -Publikumsgeschmack -Publikumsnachfrage -Publizist/P -Pudding/S -Pudel/S -Pudelmtze/N -Puder/S -Puffrmel/N -Puffer/S -Puffergre -Puffermodul -Pufferspeicher/NS -Pufferverstrker -Pulk -Pulle -Pulli -Pullover/NS -Puls/T -Pulsader/N -Pulsamplitude -Pulsbreitenantwort -Pulsbreiteninformation/P -Pulsmitte -Pulsschlag/Sp -Pult/EPST -Pulver/S -Pulverfass/T -Pulvergewehre -Puma/S -Pumpenhbe -Pumps -Pumpspeicherwerke -Pumpstation/P -Punk/S -Punkt/EPTW -Punktesammeln -Punkteteilung -Punktfolge/N -Punktgewinn -Punktgrafik -Punktgre/N -Punkthelligkeit -Punktjger -Punktkmpfe -Punktkette -Punktladung -Punktniederlage -Punktraster -Punktsieger -Punktspiele -Punktspielsaison -Punktsystem -Punkttabellen -Punktum -Punktverlusten -Punktvorsprung -Punktwert/EPST -Punktzahl/P -Punktzeile/N -Punsch -Pupille/N -Puppe/N -Puppengeschirr -Puppenmama -Puppenmutter -Puppenspieler -Puppenwagen -Purist/P -Puritanismus -Purpur -Purpurstaub -Put/EPS -Pute/NR -Puter/S -Putsch/T -Putschbeginns -Putschoffiziere -Putschversuche/S -Putz -Putzfrauen -Putzgrohandlung -Putzlappen -Putzmittel/N -Puzzle/S -Pygme/N -Pyjama/S -Pyramide/N -Pyramidenbau -Pyrenen -Pyrrhus -Pythagoras -Pythia/S -Quker -Quler/NS -Qulerei -Quntchen/S -Quader/NS -Quadrant/P -Quadrantenfestlegung -Quadrat/EPST -Quadratkilometer/N -Quadratmeile -Quadratmeter/NS -Quadratmeterpreis/EPT -Quadratur -Quadratwurzel -Quadratzentimeter -Quadrofonie -Quadrophonie -Qual/P -Qualifikation/P -Qualifikationsleistung -Qualifikationsspiel/E -Qualifizierung/P -Qualitt/P -Qualittsansprche/N -Qualittsarbeit/P -Qualittsbeurteilung/P -Qualittseigenschaft/P -Qualittskontrolle/N -Qualittsmaschine/N -Qualittsmerkmal/EPS -Qualittsprfung/P -Qualittssicherung -Qualittsspanne/N -Qualittsstandard -Qualittsstufe/N -Qualittsberlegung/P -Qualittsberwachung -Qualittsverbesserung/P -Qualittsware/N -Qualittswein/EPS -Qualle/N -Qualm/S -Qualmerei/P -Quant/PS -Quantendynamik -Quantenmechanik -Quantentheorie -Quantifizierens -Quantifizierung/P -Quantisieren/JS -Quantitt -Quantor/P -Quantum/S -Quarantne/N -Quarantnestation/P -Quark/S -Quart -Quartal/EPS -Quartalsabschluss/Tp -Quartalsanfang -Quartalsbericht -Quartalsergebnis/Qq -Quartalsvergleich/E -Quartalszahlen -Quartett/EPST -Quartier/EPS -Quarz/EPT -Quarzkristall -Quarzoszillator -Quarzuhr/P -Quasar -Quatsch -Quebec/S -Quecksilber/S -Quedlinburg -Queen -Queensland -Quellcode/S -Quelldatei/P -Quelldaten -Quellenangabe/N -Quellenseite -Quellensteuer -Quellenstudie/N -Quellenstudium -Quellimpedanz -Quellpaket/EPS -Quellprogramm/EPS -Quellsprache/N -Quelltext/EPT -Quellverzeichnis/Qq -Quellwasser/NS -Quellwiderstand -Querachse/N -Querbeschleunigung/P -Quere -Querelen -Querformat -Querinklinometer/S -Querlage -Querneigung -Querpass/Tp -Querrichtung -Querschlger/S -Querschneiden -Querschnitt/EPS -Querschnittsabmessung/P -Querschnittslhmung/P -Querstrae/N -Quersumme/N -Querverbindung/P -Querverweis/EPT -Querweg/EPT -Quetschens -Quetschung/P -Quickstepp/S -Quintessenz -Quirl/EPS -Quitte/N -Quitten/J -Quittierens -Quittierung/P -Quiz -Quota/S -Quote/N -Quotenregelung/P -Quotient/P -Quotierens -Quotierung/P -RAF -RAID -RAM -RFC -RIAS -ROMs -RPM -RTC -RTL -RWE -Rcher/FNS -Rdchen/S -Rdelsfhrer/FNS -Rder/N -Rdergetriebe/NS -Rderkasten/S -Rderwerk/EPS -Rndelschrauben -Rnder -Rnge/N -Rte/FGN -Rterepublik -Rtsel/S -Rtselecke -Rtselraten -Rtselsendung/P -Ruber/NS -Ruberpistole -Ruchersalami/S -Rumens -Rumfahrt -Rumlichkeit/P -Rumung/P -Rumungsbefehl/EPS -Rabatt/EPTW -Rabattmarke/N -Rabbiner/FNS -Rabe/N -Rabeneltern -Rabulistik -Rache/N -Racheakt/EPS -Rachegelste/N -Rachen/S -Rachenhhle/N -Rachitis -Rachsucht -Rad/ST -Radantrieb/EPS -Radar/S -Radaranlage/N -Radarblindlandung -Radarfalle/N -Radargert/ET -Radargrtel/S -Radarkontakt -Radarkontrolle -Radarlandegert/EPST -Radarschirm/ET -Radarschirmbild/T -Radarschirmbildern -Radarstation/P -Radarsteuerung -Radarstrsender/N -Radarstrahl -Radarwchter -Radarwarnnetz/EPT -Radarzeichnung -Radau -Radaubrder/N -Radaubruder/S -Radaufhngung/P -Radbremse/N -Radbruch -Raddampfer/NS -Radebrecher -Radfahrer/NS -Radfelge/N -Radgabel -Radgestell/EPS -Radialbohrmaschine/N -Radialfrser/NS -Radialkomponenten -Radialnerv/S -Radiant/P -Radiation/P -Radiator/PS -Radien -Radierens -Radiergummi/S -Radierkunst -Radiermesser/NS -Radiernadel -Radierung/P -Radieschen/S -Radikalenerlass/EPT -Radikalisierens -Radikalisierung/P -Radikalist/P -Radikalkette/N -Radikalkur -Radio/S -Radioaktivitt/P -Radioansager/FNS -Radioapparat/EPT -Radioastronomie -Radiobastler/NS -Radiobiologe -Radiobiologie -Radiochemie -Radiochemiker/S -Radiodurchsage/N -Radioempfnger/NS -Radiofrequenz -Radiogehuse/NS -Radiogeschfte/NS -Radiogramm/EPS -Radiohndlern -Radiohndlers -Radiokanle -Radiokanal/S -Radiokompass/ET -Radiologe/FN -Radiologie/N -Radiomechaniker/N -Radiometrie/N -Radionachrichten -Radionavigation -Radiopeilgert/EPS -Radiopeilung/P -Radiorhre/N -Radiosender/NS -Radiosendung/P -Radioskop/EPS -Radiosonde/N -Radiostation/P -Radiostimme -Radiostrahlung -Radiotechnik/R -Radiotechniker/NS -Radiotelegramm/PS -Radiotelegraphie -Radiobertragung/P -Radiowecker/NS -Radiowellen -Radiozeitung/P -Radium -Radiumbehlter/N -Radiumheilverfahren/S -Radiumstrahlen -Radiumtherapie/N -Radius -Radiusdifferenz -Radkappen -Radkasten/S -Radkrper/NS -Radkrnzen -Radkranz/T -Radkreuz/EPT -Radler/FNS -Radmutter/N -Radon/S -Radreifen/S -Radrennbahn -Radrennen/S -Radschaufel -Radschlepper/NS -Radschlssel/NS -Radspeiche -Radsport/S -Radsportstadion -Radspuren -Radstnde/N -Radstand/T -Radstern/EPS -Radstrzen -Radsturz/T -Radtour -Rafael/S -Raffinerie/N -Raffinesse/N -Rahm/PS -Rahmen/S -Rahmenabkommen/S -Rahmenauftrag/STp -Rahmenbedingung/P -Rahmenplne/N -Rahmenplan -Rahmenplanung -Rahmenprogramm -Rahmenvertrag/STp -Raiffeisenbank/P -Raiffeisenkassen -Raimund/S -Rain/EPS -Raine/NR -Rainer/S -Rakete/N -Raketenandrohung -Raketenantrieb -Raketenbasis -Raketendrohung -Raketendschungel -Raketengeschoss/EPT -Raketenstart/T -Raketensttzpunkt -Raketentruppen -Raketenversuche -Raketenwaffen -Ral -Ralf/S -Rallye/S -Ralph/S -Ramdisk/S -Rammbock/ST -Rampe/N -Rampenfunktion/P -Rampenlicht -Ramses -Rand/ET -Randalierszene -Randbedingung/P -Randbemerkung -Randbereich/EPS -Randbezirk/EP -Randerscheinung/P -Randfall/Sp -Randgebiet/EPST -Randindex -Randindizes -Randkoordinate/N -Randposition/P -Randproblem/EPS -Randstein/EPS -Randstellung -Randstrich -Randzone/N -Rangabzeichen/S -Ranges -Rangfolge/N -Rangliste/N -Rangordnung/P -Rangs -Rangstufe/N -Raphael/S -Rappe/N -Rapport/EPST -Raps/T -Rapsl -Raritt/P -Rasenpltze/N -Rasenplatz -Rasensport -Raserei/P -Rasierapparat/EPST -Rasse/N -Rassendiskriminierung -Rassengesetze -Rassenhass/T -Rassenkmpfe/N -Rassenkampf -Rassenkrawall -Rassenmischung/P -Rassenproblem/E -Rassentrennung -Rassismus -Rastatt -Rastbereich/T -Rastblech/E -Rastdorn/E -Raster/S -Rasterfahndung/P -Rasterma/EPT -Rasterpapier -Rasterweite/N -Rasthaus/Tp -Rastpltze/N -Rastplatz -Raststtte/N -Rat/ST -Ratenkauf/Sp -Ratensenkung -Ratenzahlung/P -Ratgeber/FNS -Rathaus/Tp -Ratifikation/P -Ratifizierens -Ratifizierung/P -Ratifizierungsdebatte -Ratifizierungsurkunden -Rating/S -Ration/P -Rationalisierens -Rationalisierung/P -Rationalismus -Rationalitt -Rationalittskriterien -Rationalittskriterium -Rationierens -Rationierung/P -Ratlosigkeit -Rats -Ratsbeschluss/Tp -Ratsche -Ratschlag/Sp -Ratsentscheidung/P -Ratsherren -Ratsmitglieder/N -Ratsprsidenten -Ratssitzung/P -Ratstisch -Ratsvorsitzende -Ratte/N -Rattengift -Rattenloch/T -Rattenplage -Rattenschwanz -Ratzeburg -Raub -Raubbau/S -Raubdruck -Raubdruckern -Raubens -Raubgier -Raubkopie/N -Raubmord/EPT -Raubpolitik -Raubberfall/Sp -Raubvgel/N -Raubvogel -Raubzug/STp -Rauch/RS -Raucher/NS -Raucherhusten -Rauchfahne -Rauchgenuss/Tp -Rauchmaschine -Rauchsulen -Rauchverbot -Rauchvergiftung -Rauchverzicht -Rauchvorhang -Rauchwaren -Rauchwolke/N -Raudi -Raufasertapete/N -Rauhaardackel/NS -Rauheit/P -Rauigkeit/P -Raum/EST -Raumaufteilung/P -Raumbedarf/S -Raumbereich/PS -Raumfahrer -Raumfahrt -Raumfahrtbehrde -Raumfahrttechnik -Raumfahrzeuge -Raumflug/Sp -Raumforscher -Raumforschung -Raumgestaltung -Raumklima -Raummangel -Raumprogramm -Raumschiff/EPT -Raumstation/P -Raumstellung -Raumtemperatur -Raumverhltnis/Qq -Raumwinkel -Raupe/N -Raupenansteuerung -Raupenantrieb/P -Raupenfahrwerk -Raupenfahrzeug/ET -Raupensteuerung -Raureif/ST -Rausch -Rauschgift/EPST -Rauschgiftsucht -Rauschgiftverbot -Rauschpegel/S -Rauschunterdrckung -Rauschuntergrund/S -Rausschmeierjob -Rausschmiss/EPT -Ravenna -Ravensburg/R -Ravioli -Razzia -Razzien -Reagan/S -Reagenzglser -Reagenzglas/T -Reaktion/P -Reaktionsfhigkeit -Reaktionsgeschwindigkeit/P -Reaktionsnorm/P -Reaktionszeit/P -Reaktivierens -Reaktivierung/P -Reaktor/PS -Realertrag/STp -Realgewinne -Realisation -Realisierbarkeit/P -Realisierens -Realisierung/P -Realisierungschance/N -Realisierungsmglichkeit/P -Realismus -Realist/FP -Realitt/P -Reallhne -Reallohn -Realo/S -Realschler -Realzins/P -Realzuwachs/T -Rebe/N -Rebell/P -Rebellenfhrer -Rebellion/P -Rebhuhnbevlkerung -Reboot -Rechaud/S -Rechenanlage/N -Rechenaufgabe/N -Rechenaufwand/S -Rechenbeispiel/EPS -Rechenfhigkeit/P -Rechenfehler/NS -Rechengehirn -Rechenhilfen -Rechenkapazitt/P -Rechenleistung/P -Rechenmaschine/N -Rechenregel/N -Rechenroboter -Rechens -Rechenschaft -Rechenschaftsbericht/E -Rechenschieber/NS -Rechenschritt/EPS -Rechenspielereien -Rechentabellen -Rechenvorgang/Sp -Rechenvorrichtung -Rechenvorschrift/P -Rechenzeit/P -Rechenzentren -Rechenzentrum/S -Recherche/N -Rechnens -Rechner/NS -Rechneranschluss/Tp -Rechnerausfall -Rechnerbaugruppe/N -Rechnereffekt -Rechnereinheit -Rechnerelektronik -Rechnerfhigkeit -Rechnerfamilie/N -Rechnergehuse/NS -Rechnergeneration/P -Rechnergurus -Rechnerkammer -Rechnerkapazitt/P -Rechnerkarte/N -Rechnerkenntnisse/N -Rechnerkette -Rechnerkommando/S -Rechnerkommunikation -Rechnerkomponente/N -Rechnerkonzept/EPS -Rechnerleistung/P -Rechnernetz/E -Rechnerplatine/N -Rechnerschnittstelle/N -Rechnerseite -Rechnersystem/E -Rechnerteil -Rechneruntersttzung -Rechnerzweig -Rechnung/P -Rechnungsabschluss/Tp -Rechnungsbetrag/STp -Rechnungsdatum -Rechnungseingang/S -Rechnungserstellung -Rechnungsform -Rechnungsfhrung/P -Rechnungshof -Rechnungskopie -Rechnungsprfer/NS -Rechnungsprfung -Rechnungsstellung -Rechnungswesen/S -Rechteck/EPS -Rechteckfeld -Rechtecksignal/E -Rechtfertigens -Rechtfertigung/P -Rechtglubigkeit -Rechthaber/FNS -Rechthaberei/P -Rechtlichkeit -Rechtlosigkeit -Rechtmigkeit -Rechtsabteilung -Rechtsakt/EPST -Rechtsangelegenheit/P -Rechtsansprchen -Rechtsanspruch/S -Rechtsanwlte/FN -Rechtsanwalt/ST -Rechtsanwaltsordnung -Rechtsausschuss/Tp -Rechtsbefugnis/q -Rechtsbegehren/S -Rechtsbegriff -Rechtsbehelfe -Rechtsbeistnde/N -Rechtsbeistand/T -Rechtsbelehrung/P -Rechtsberater/NS -Rechtsbeschwerde -Rechtsbeugung/P -Rechtsbewusstsein/S -Rechtsbrecher/NS -Rechtsbrche/N -Rechtsbruch/ST -Rechtschaffenheit -Rechtschreibehilfe -Rechtschreiben/JS -Rechtschreibfehler/NS -Rechtschreibkontrolle/N -Rechtschreibprfung -Rechtschreibreform/P -Rechtschreibregel/N -Rechtsdrehung -Rechtseinheit -Rechtseinwnden -Rechtseinwand/T -Rechtsempfinden/S -Rechtsentwicklung -Rechtsetzung -Rechtsexperten -Rechtsextremist/P -Rechtsfahrt -Rechtsfall/Sp -Rechtsfindung -Rechtsform/P -Rechtsfrage/N -Rechtsgefhl/S -Rechtsgelehrten -Rechtsgemeinschaft -Rechtsgrnde/N -Rechtsgrund/T -Rechtsgrundlage/N -Rechtsgrundstzen -Rechtsgrundsatz/T -Rechtsgltigkeit -Rechtsgutachten/S -Rechtshnder/N -Rechtshandlung/P -Rechtshilfe -Rechtshilfeverkehr/S -Rechtshilfevertrge -Rechtsirrtmer -Rechtsirrtum/S -Rechtskenntnis/q -Rechtskraft -Rechtskurve/N -Rechtslage/N -Rechtsmngel/N -Rechtsmangel -Rechtsmittel/NS -Rechtsnorm/P -Rechtsordnung/P -Rechtsparteien -Rechtspflege -Rechtsprechung/P -Rechtsradikalismus -Rechtsschutz/T -Rechtsschutzexperten -Rechtssicherheit -Rechtssprache -Rechtssprechung -Rechtssprchen -Rechtsspruch/S -Rechtsstaat/T -Rechtsstaatlichkeit -Rechtsstellung -Rechtsstreit/EPT -Rechtsstreitigkeit/P -Rechtssystem/EPS -Rechtstradition -Rechtsunwirksamkeit -Rechtsverbindlichkeit -Rechtsverdreher -Rechtsverfahren -Rechtsverkehr/S -Rechtsverletzung -Rechtsverordnung/P -Rechtsvertreter -Rechtsweg -Rechtswesen/S -Rechtswidrigkeit/P -Rechtswissenschaft -Rechtszwang -Reck -Recklinghausen -Reclam -Recycling/S -Redakteur/EFPS -Redaktion/P -Redaktionsschluss/Tp -Redefinition/P -Redefinitionsmglichkeit/P -Redefreiheit/P -Redegabe/N -Redeknste/N -Redekunst -Redensart/P -Redeschwall/S -Redewendung/P -Redford/S -Redigierung -Redlichkeit -Redner/FNS -Rednertribne -Redseligkeit -Reduktion/P -Redundanz/P -Reduzierens -Reduzierung/P -Reeder/NS -Reederei/P -Reedereikonsortien -Reedereikontor -Reedkontakte -Reedstbe/N -Reedstab -Reengineering -Reeperbahn -Referat/EPS -Referendariat/EPS -Referendum/S -Referent/FP -Referenz/P -Referenzamplitude -Referenzanalyse -Referenzbereich -Referenzbild -Referenzbuffer/S -Referenzecho/S -Referenzerkennung -Referenzflche -Referenzflchentrger -Referenzgeometrie -Referenzierens -Referenzierung/P -Referenzimpuls/EPT -Referenzinformation/P -Referenzkopf/T -Referenzlnge -Referenzlage -Referenzlaufzeit -Referenzlaufzeitmessung -Referenzmae -Referenzmasse -Referenzmessung -Referenzplatte -Referenzpreise -Referenzpunkt/S -Referenzquelle -Referenzreflektor -Referenzsignal/EPS -Referenzspannung/P -Referenzspannungsquelle -Referenzstern -Referenzstrecke -Referenzstreckenlnge -Referenztrger -Referenzverstrkung -Referenzzeit/P -Referenzzeitmessung -Refinanzierens -Refinanzierung/P -Reflektant/P -Reflektor/P -Reflektorflche -Reflex/EPT -Reflexbewegung/P -Reflexflche -Reflexion/P -Reflexionsflche -Reflexionskultur -Reflexionsprobleme -Reflexionswinkel -Reflexivitt -Reflexlichtschranke/N -Reform/PR -Reformation -Reformationsgottesdienst -Reformationskurs/EPT -Reformbemhung/P -Reformbewegung/P -Reformhaus/Tp -Reformkonzept/EPS -Reformkurs/T -Reformppste -Reformplne/N -Reformprogramm -Reformulieren/JS -Reformversuch/EPS -Reformvorhaben/S -Reformvorschlag/STp -Refrain/S -Refugium -Regal/EPS -Regalien -Regatta -Regatten -Regel/J -Regelabweichung/P -Regelalgorithmen -Regelalgorithmus -Regelausschlag/STp -Regelautomatiken -Regelbereich/S -Regeleingang/Sp -Regelfall/S -Regelfunktion/P -Regelkreis/EPT -Regelmigkeit/P -Regelmechanismen -Regelmechanismus -Regelmglichkeit/P -Regelparameter/NS -Regelprogramm/S -Regelprozess/EPT -Regelschaltung -Regelschwankung/P -Regelschwingung/P -Regelsignalen -Regelspannung/P -Regelstrecken -Regelteil -Regelungsgesetz -Regelungsmodell -Regelungsprogramme -Regelungstechnik -Regelungstechniker -Regelungsteil -Regelungsvorgang/Sp -Regelungszentren -Regelungszustnde -Regelungszwecke -Regelverhalten/S -Regelverstrker -Regelverstrkung -Regelwidrigkeit -Regelwissen -Regelziel -Regelzwecke -Regelzyklus -Regenbgen -Regenbogen/S -Regenbogenfarben -Regeneration -Regenerierens -Regenerierung/P -Regenfall/Sp -Regenguss/Tp -Regenmntel/N -Regenmantel -Regenmenge/N -Regens -Regensburg/R -Regenschauer -Regenschirm -Regent/P -Regentag/EPT -Regentraufe -Regentrpfen -Regentropfen -Regentschaft -Regentschaftsrat -Regenwlder -Regenwald -Regenwassertank -Regenwetter -Regenwolken -Regenwrmer -Regenwurm/T -Regenzeit/P -Reggae -Regie -Regierens -Regierung/P -Regierungsabkommen/S -Regierungsamt -Regierungsantritt/EPST -Regierungsarbeit -Regierungsausschuss/Tp -Regierungsbank -Regierungsbeamten -Regierungsbeamter -Regierungsbezirke -Regierungschef/S -Regierungsdekret -Regierungsebene -Regierungsform/P -Regierungsgewalt -Regierungshuptern -Regierungskonferenz -Regierungskrise/N -Regierungsmannschaft -Regierungsorgan -Regierungspapiere/N -Regierungsprsident/P -Regierungsprogramm -Regierungsqualitt -Regierungsseite -Regierungssitze -Regierungsstelle/N -Regierungsstreitkrfte -Regierungssturz -Regierungstyp/PS -Regierungsverhandlung/P -Regierungsvertreter -Regierungsviertel -Regierungsvorschlge -Regierungswechsel -Regierungszeit -Regime/S -Regiment/RST -Region/P -Regionalbank/P -Regionalbro -Regionalisieren/JS -Regionalmuseen -Regionalpolitik -Regionalprogramm -Regionalwahlen -Regisseur/EFPS -Register/NS -Registereintragung -Registerinhalt/EPST -Registervergabe -Registratur/P -Registrierens -Registrierkasse/N -Registrierung/P -Reglement/EPS -Reglementierens -Reglementierung/P -Regler/NS -Reglereigenschaften -Reglergehuse -Reglergleichung -Reglerkarte -Reglertyp -Reglerzustand -Regress/T -Regressanspruch/S -Regression/P -Regresspflicht/P -Regsamkeit -Regularien -Regularitt/P -Regulation/P -Regulierens -Regulierung/P -Regulierungsbedarf/S -Regung/P -Reh/EPS -Rehabilitierens -Rehabilitierung/P -Rehbcke -Rehlederwsche -Rehwiese -Reibens -Reiberei/P -Reibrder -Reibrad/ST -Reibradachse/N -Reibradkontrolle -Reibrolle -Reibung/P -Reibungsflchen -Reibungskorrektur -Reibungslosigkeit -Reibungsparameter -Reibungsrippen -Reichhaltigkeit -Reichs -Reichsacht -Reichsauenminister -Reichsautobahnen -Reichsbahngesellschaft -Reichsbank -Reichsbankprsident -Reichsdienststelle -Reichsduma -Reichsfhrer -Reichsgebiet -Reichsgericht -Reichsgerichtshof -Reichshauptstadt -Reichshof -Reichshofrat -Reichsjustizminister -Reichskammergericht -Reichskanzlei -Reichskirche -Reichsklster -Reichskriegsminister -Reichslandbund -Reichslandfrieden -Reichslehen -Reichsluftschutzgesetz -Reichsmarineamt -Reichsmark -Reichsminister -Reichspartei -Reichsparteitag -Reichsprotektorat -Reichsrat -Reichsritter -Reichsstdte -Reichsstnde -Reichstag/ST -Reichstagsauflsung -Reichstagsgebude -Reichstagsneuwahlen -Reichstagsprsident -Reichstagswahl -Reichstagswahlergebnis/Qq -Reichsteilung -Reichsvasallen -Reichsverband -Reichsverfassung -Reichsverteidigung -Reichsverweser -Reichswhrung -Reichswald -Reichswehrprozess/EPT -Reichtstagswahlen -Reichtmer/N -Reichtum/S -Reichweite/N -Reifens -Reifenwechsel -Reifeprfung/P -Reifevermerk -Reifung/P -Reifungsprozess/EPT -Reigen -Reihenentwicklung/P -Reihenfolge/N -Reihenhaus/Tp -Reihenschaltung/P -Reihensiedlung/P -Reihung/P -Reim/S -Reimplementierung -Reineke/S -Reinertrag/STp -Reinfall/Sp -Reingewinn/EPS -Reinhalten/JS -Reinhardt/S -Reinheit -Reinheitsgebot/EPS -Reinigens -Reinigung/P -Reinigungsalkohol -Reinigungskasse -Reinigungsmittel/NS -Reinigungstrupp/S -Reinkultur/P -Reinlichkeit -Reinschrift/P -Reis -Reibrett -Reier -Reingel -Reinagel/S -Reiverschluss/Tp -Reiwolf -Reiseagenturen -Reisebedrftige -Reisebegleiter -Reisebekanntschaften -Reisebericht -Reisebranche -Reisebro/S -Reisebuch -Reisedauer -Reisefhrer/NS -Reisegefhrte -Reisegepck/S -Reisegeschwindigkeit -Reisegesellschaft/P -Reisekosten -Reisekostenabrechnung -Reiseland -Reiseleiter/S -Reiselust -Reisemittel -Reisepass/Tp -Reiseplne/N -Reiseplan/S -Reisesaison -Reisescheck/S -Reisetagen -Reisetasche/N -Reisetermin -Reiseunternehmen -Reiseverbot/S -Reiseverkehr/S -Reisewelle -Reisezeit -Reiseziel/EPS -Reisig/S -Reiskultur -Reiter/FNS -Reiterknig -Reiterpension/P -Reiterwerbung -Reithalle -Reitpferd/EPT -Reitschule -Reitunterricht -Reizbarkeit -Reizes -Reizkonstellation/P -Reizung/P -Reklamation/P -Reklame/N -Rekognoszierung -Rekompilation -Rekonstruktion/P -Rekonvaleszenz -Rekord/EPS -Rekordbeteiligung -Rekordergebnis/Qq -Rekordflug/STp -Rekordflut -Rekordgewinnen -Rekordhalter/NS -Rekordhhe/N -Rekordjahr -Rekordstze/N -Rekordsprinter -Rekordsummen -Rekordtaucher -Rekordtempo -Rekordumsatz -Rekordversuch/E -Rekordzeit/P -Rekordzinsen -Rekrut/P -Rektor/FPS -Rektorat/S -Rekultivieren/JS -Rekursion/P -Relais -Relaisansteuerung -Relaisausgang/Sp -Relaiskarte -Relaismagneten -Relaisschalter -Relaissteuerung -Relaistest -Relation/P -Relativierbarkeit -Relativierens -Relativierung/P -Relativismus -Relativitt/P -Relativittstheorie -Relativpronomen/S -Relativpronomina -Relativzahl -Relevanz -Relief/S -Reliefkunst -Religion/P -Religionsfreiheit/P -Religionsfrieden -Religionskriege -Religionsphilosoph -Religionsspaltung -Religiositt -Relikte/N -Rembrandt/S -Remoulade -Ren/S -Renaissance/N -Renate/S -Rendezvous -Rendite/N -Renditevernderung -Rendsburg -Renitenz -Rennauto/S -Rennbahn/P -Rennchef -Renner -Rennleiter -Rennleitung -Rennpferd/EPT -Rennpltze -Rennquintett -Rennrodler -Rennsiege -Rennsportwagen -Rennstall -Renntag -Rennwagen -Renommee -Renovierens -Renovierung/P -Renovierungsarbeiten -Rentabilitt -Rente/N -Rentenalter -Rentenanpassungsgesetz -Rentenansprche -Rentenbasis -Rentenbelastung -Rentencrash -Rentenerhhung/P -Rentenfinanzen -Rentenmarkt/STp -Rentenreform -Rentensanierung -Rentensicherung -Rentenversicherung/P -Rentenversicherungsnummer -Rentenzahlung -Rentier -Rentner/NS -Reorganisation/P -Reparation/P -Reparationsforderung/P -Reparationskommission/P -Reparationslieferung/P -Reparationsverhandlung/P -Reparatur/P -Reparaturanflligkeit -Reparaturarbeiten -Reparaturarbeitszeit -Reparaturauftrag/STp -Reparaturaufwand -Reparaturauswertung -Reparaturbericht/EPST -Reparaturbetrieb/E -Reparaturdaten -Reparaturgewerbe -Reparaturkosten -Reparaturlieferung/P -Reparaturmglichkeit -Reparaturnotiz -Reparaturpauschale -Reparaturplatinen -Reparaturstatistik -Reparaturwerksttten -Reparaturzeit -Reparaturzwecke -Repertoire/S -Repetition/P -Replik/P -Report/EPRS -Reportage/N -Reporter/FNS -Reprsentant/P -Reprsentanz/P -Reprsentation/P -Reprsentationskosten -Reprsentativitt -Repressalie/N -Repression/P -Repressivpolitik -Reproduktion/P -Reproduktionsgenauigkeit -Reproduktionstechnik -Reproduzierbarkeit -Reptil/S -Reptilien -Republik/P -Republikaner/NS -Reputation -Requisit/P -Reservat/EPT -Reservation/P -Reserve/N -Reservebank -Reservebildschirme -Reserveleitung -Reserverder -Reserverad/T -Reservesatz/T -Reservetage -Reservetank/S -Reservetruppen -Reservevorschriften -Reservierens -Reservierung/P -Reservoir/ES -Reset/S -Resetleitung/P -Resetlogik/P -Resetproblem/EPS -Resetschaltung/P -Resetsignal/EPS -Residenz/P -Residuen -Residuum/S -Resignation -Resistenz -Resolution/P -Resonanz/P -Resonanzbedingung/P -Resozialisieren/JS -Respekt -Respektierens -Respektierung/P -Respektlosigkeit/P -Ressentiment -Ressort/S -Ressortchef/S -Ressortverteilung/P -Ressource/N -Ressourcenausbeutung -Ressourcenbedarf/S -Ressourcenverknappung -Rest/EPST -Restauflage/N -Restaurant/S -Restauration/P -Restaurator/FPS -Restaurierens -Restaurierung/P -Restbesatzung -Restbestnde/N -Restbestand/T -Restbetrag/STp -Restdeckung -Restentwicklung -Restexemplar/EPS -Restfehler -Restitutionsedikt -Restlaufzeit/P -Restlieferung -Restmaterial -Restmenge/N -Restmoral -Restpapier -Restpotenz -Restriktion/P -Reststrecke/N -Restverstand -Restwert/EPS -Resmee/S -Resultat/EPST -Retorte/N -Retortenbaby/S -Retortenbefruchtung -Retoure/N -Retourticket/S -Retrospektive -Rettens -Retter/NS -Rettich/EPS -Rettung/P -Rettungsaktion/P -Rettungsboot/ET -Rettungsdienst -Rettungsmannschaft/P -Rettungsmanahmen -Rettungsplan -Rettungsring/EPT -Rettungsschuss/Tp -Rettungsstelle -Rettungsversuch/P -Retusche/N -Reue -Reuter/S -Reutlingen -Revanche -Revanchist/P -Revier/EPS -Revierfrster -Revision/P -Revisionismus -Revisionist/P -Revisionsnummer -Revisionsverhandlung -Revisor/S -Revolte/N -Revolution/P -Revolutionierens -Revolutionierung/P -Revolutionsrat/S -Revolver/NS -Rezensent/P -Rezension/P -Rezept/EPST -Rezeption/P -Rezess -Rezession/P -Rezessionsgefahr/P -Rezessionsjahr -Rezessionskurs/EPT -Rezessionsmodell -Rezessionsrisiko -Rezessionswolken -Rhabarber/S -Rhapsodie/N -Rhein/S -Rheinbund -Rheinbundstaaten -Rheindampfer -Rheinfelden -Rheinfestung -Rheingrenze -Rheinland/T -Rheinlandzone -Rheinmetall -Rheinprovinz -Rheinschifffahrt -Rheinufer -Rheinverkehr -Rheinwein -Rhetorik/R -Rheuma/S -Rhodesien -Rhodesier -Rhodos -Rhomben -Rhombenmuster -Rhombus -Rhone -Rhythmen -Rhythmik -Rhythmus -Riad -Ribbentrop/S -Richard/S -Richelieu/S -Richtens -Richter/FNS -Richteramt -Richtermiene -Richterstuhl -Richtfunk/S -Richtfunkfrequenz/P -Richtfunkstrecke/N -Richtgeschwindigkeit/P -Richtigkeit -Richtigstellen/JS -Richtlinie/N -Richtma/EPT -Richtmeister -Richtpreis/E -Richtschnur -Richtung/P -Richtungsnderung -Richtungsanzeige/R -Richtungsanzeiger/NS -Richtungsbit/S -Richtungshrvermgen -Richtungskampf -Richtungsberwachung -Richtungsumkehrung -Richtungswinkel/S -Richtungszuordnung -Richtwert/EPST -Richtzylinder -Ricke/N -Rico -Riecher -Riege/NR -Riegel/N -Riemann/S -Riemen/S -Riementrieb -Ries/EFPT -Riesenaufwand/S -Riesenauswahl -Riesending -Riesendinger -Riesenerfolg/EPS -Riesenfernseher -Riesenfichte -Riesengebirge -Riesengewinne -Riesenglas/T -Riesenheuschrecke -Riesenkerls -Riesenkrake -Riesenmenge/N -Riesenpaket -Riesenportion/P -Riesenrolle -Riesenstern -Riesenstunk -Riesenteleskop -Riesentiger -Riesenverluste -Riesenvorteil/EPS -Riesenwirbel/S -Riff/EPT -Riga -Rille/N -Rind/EPRST -Rinderauftrieb -Rindfleisch -Rindvieh/R -Ring/T -Ringbau -Ringelrein -Ringfinger/NS -Ringhaken/S -Ringkmpfchen/S -Ringkmpfen -Ringkampf/T -Ringkerntransformator -Ringleitung -Ringmanschette -Ringrichter -Ringstrae/N -Rinnsal/EPS -Rinnstein/EPST -Rio -Rippe/GN -Risiken -Risiko/S -Risikoabschtzung/P -Risikobegrenzung -Risikobereitschaft -Risikogeschft/EPS -Risikoprfung/P -Risikostreuung -Risikovermeidung -Risikoverteilung -Risse/S -Riten -Ritter/N -Ritterburg -Ritterheer -Ritterorden -Ritterschaft -Ritterschlag/STp -Ritterstand -Ritual/EPS -Ritzel -Rivale/FN -Rivalitt/P -Riviera -Rivierakste -Rizinus -Rcke/MN -Rhrenembargo -Rhrenempfnger -Rmer/N -Rmerzug -Rntgenaufnahme -Rntgenspektrum -Rntgenstrahlen -Rschen -Rte -Rteln -Robert/S -Roberta/S -Robespierre/S -Robin/S -Robinson/S -Robinsonnaturen -Roboter/NS -Roboterarm/T -Roboterprogrammierung -Robotersteuerung/P -Robotertechnologien -Robotisierung -Robustheit -Rochefort -Rochelle -Rock/RST -Rockefeller/S -Rocker/FN -Rocktasche -Rodens -Rodung/P -Roger/S -Roggen/S -Roggenbrot -Roggenernte -Roggenfeld -Roggenstroh -Rohdaten -Rohdatendarstellung -Roheisenerzeugung -Roheisengewinnung -Roheisenproduktion -Rohertrag/STp -Roherzeugnis/Qq -Rohheit/P -Rohkakao -Rohkakaomarkt/ST -Rohling/EPS -Rohmaterial -Rohmaterialien -Rohmaterialpreise -Rohl/S -Rohprodukt/EPST -Rohr/EPST -Rohrbrche/N -Rohrbruch -Rohrleitung/P -Rohrstahl -Rohrwerk -Rohstahlerzeugung -Rohstoff/EPS -Rohstoffgewinnung -Rohstoffhandel -Rohstoffindexe -Rohstoffmarkt/Tp -Rohstoffpreise/N -Rohstoffquellen -Rohstoffrechte -Rohstoffreserven -Rohstoffverarbeitung -Rohstoffverknappung -Rohstoffversorgung -Rohstoffvorrte -Rohtabak -Rohware/N -Rohzustand -Roland/S -Rolandslied -Rolex -Rolf/S -Rollbrettfahren -Rollenbesetzung/P -Rollendrucker -Rollendurchmesser -Rollenfarbband -Rollenkern -Rollenpapier/S -Rollenverteilung/P -Rollenzuteilung/P -Rollgebhren -Rolli/S -Rollkragenpullover -Rolllden -Rollladen -Rollreibung -Rollschuh/EPS -Rollsthle/N -Rollstuhl/S -Rolltreppe/N -Rollwinkel -Rom/S -Roman/EPS -Romancier -Romanhefte -Romano/S -Romantik/R -Romantiker/FNS -Romanze/N -Rommel/S -Romm/S -Ronald/S -Rondo -Roosevelt/S -Rosen/I -Rosenkavalier -Rosenkrieg/EPST -Rosette/N -Rosine/N -Rosshute/N -Rosskastanie/N -Rosskur/P -Rost/T -Rostock/S -Rotation/P -Rotbart -Rotchinesen -Rotdorn -Rotdruck -Rotfuchs/T -Rotguss/Tp -Rothschild/S -Rotkppchen/S -Rotkehlchen/S -Rotor/P -Rotornderung -Rotoranregung -Rotorauswertung -Rotorbewegung/P -Rotorverhalten -Rotschrift -Rotverschiebung -Rotznase/N -Roulade/N -Roulette -Route/NR -Router/NS -Routine/N -Routinesitzung -Routineberprfung -Routing/S -Routinier/S -Rowdy/S -Royalist/P -Rbe/N -Rbezahl/S -Rckuerung -Rckansicht/P -Rckantwort/P -Rckbeziehung -Rckblick/EPT -Rckenbreite -Rckenlehne/N -Rckenmark/S -Rckennummern -Rckenwirbel/NS -Rckerkennung -Rckeroberung -Rckerstatten/JS -Rckfahrkarte -Rckfahrt -Rckfall/Sp -Rckflug/STp -Rckfluss/Tp -Rckforderung -Rckforderungsansprche -Rckfrage/N -Rckfront -Rckfhren/JS -Rckgabe -Rckgang/STp -Rckgewinnen/JS -Rckgliederung -Rckgrat -Rckgriff -Rckhalt -Rckhand -Rckkampf -Rckkehr -Rckkoppeln/JS -Rcklagenzuweisung -Rcklauf/Sp -Rcklaufzeit/P -Rckleitung -Rcklicht -Rckliefern/JS -Rckmarsch -Rckmeldefunktion/P -Rckmelden/JS -Rcknahmekurs/E -Rcknahmepreis/EPT -Rckpass/Tp -Rckreise/N -Rckrichtung -Rckruf -Rckschalten -Rckscheck/S -Rckschein -Rckschieben -Rckschlag/STp -Rckschluss/Tp -Rckschritt/P -Rckschub -Rckseite/N -Rcksendeaktion/P -Rcksenden/JS -Rcksicht/P -Rcksichtnahme -Rcksichtslosigkeit -Rcksitz/EPT -Rckspiegel -Rcksprache/N -Rcksprung/S -Rcksprungadresse/N -Rckspulen -Rckstnde/N -Rckstand/T -Rckstauklappe/N -Rckstellen/JS -Rckste/N -Rcktritt/EPS -Rcktrittsangebot -Rcktrittserklrung -Rckbertragen -Rckumstellung -Rckverfolgen/JS -Rckvergten/JS -Rckversichern/JS -Rckwnde/N -Rckwrtslaufen -Rckwrtsorientierung -Rckwrtsrichtung -Rckwand -Rckwandplatine -Rckweg/EPS -Rckwenden/JS -Rckwirken/JS -Rckzahlscheine -Rckzahlung -Rckzahlungsleistung/P -Rckzahlungsrate -Rckzahlungstermin -Rckzahlungsverpflichtung/P -Rckzieher/N -Rckzug/STp -Rdesheim -Rdiger/S -Rhrens -Rhrung/P -Rmpfe/N -Rsselsheim/S -Rstens -Rstung/P -Rstungsanstrengung/P -Rstungsauftrge -Rstungsausgaben -Rstungsbegrenzung -Rstungsbeschrnkung/P -Rstungsetat -Rstungsexporte -Rstungsfragen -Rstungsgter/N -Rstungsindustrie -Rstungskontrolle -Rstungskosten -Rstungsmaterial -Rstungsplan -Rstungsspirale -Rstungswettlauf/Sp -Rstzeug -Rttelfestigkeit -Ruanda/S -Rubel/S -Rubelmillionr/EPS -Rubens -Rubin/EPS -Rubinglasfenster -Rubrik/P -Ruck/S -Ruckscke/N -Rucksack/S -Ruder/S -Ruderboot/ET -Ruderer -Ruderhaus/Tp -Rudi/S -Rudolf/S -Rufes -Rufnummer/N -Rufs -Rufzeichen/S -Rugby/S -Ruhelosigkeit -Ruhemasse/N -Ruhepause/N -Ruhepltze/N -Ruheplatz -Ruherecht -Ruhespannung -Ruhestand -Ruhestandssitz -Ruhestellung/P -Ruhestrer -Ruhestrung/P -Ruhestrom -Ruhetag/EPST -Ruhezustand/ST -Ruhm/ST -Ruhr -Ruhrbesetzung -Ruhrchemie -Ruhrfestspiele -Ruhrgebiet/S -Ruhrgrostadt -Ruhrkohle -Ruhrkumpel -Ruhrschnellweg -Ruhrstatut -Ruin/EPS -Rum/S -Rumne/FN -Rumnien/S -Rummel -Rummelplatz -Rumpf/ST -Rumpfparlament -Rumpsteak/S -Run/EP -Rundbau -Rundblick/EPS -Rundbrief/EPS -Rundens -Rundfahrten -Rundfrage/N -Rundfunk/S -Rundfunkgebhren -Rundfunkgerte -Rundfunkgesellschaft -Rundfunkinterview -Rundfunkkommentator -Rundfunkmeldung -Rundfunkrat -Rundfunksendung -Rundfunkstation -Rundfunkstreit -Rundfunktechnik -Rundgang/STp -Rundholzpreis/EPT -Rundkurs/EPT -Rundreisen -Rundschau -Rundschreiben -Rundung/P -Runzel -Rupert/S -Rupie/N -Ru/T -Russe/FN -Russeneinbruch -Russland/S -Russlandfeldzug/STp -Russlandheimkehrer -Rute/N -Ruthenium -Rutschpartie/N -SAP -SAS -SCSI -SEATO -SED -SFr -SGI -SGML -SMD -SMTP -SOS -SPARC -SPD -SP -SQL -SUN -SV -SWAPO -Sbel/NS -Sbelhieb/ET -Scke/MN -Sfte/N -Sgeblttern -Sgeblatt/T -Sgemehl/S -Sgespne/N -Sgewerk/EPS -Sgezahnkurve -Sgezahnspannung -Skularisierungsprozess/EPT -Skulum -Sle/N -Smaschine/N -Snfte/N -Snger/FNS -Sngerfest/ET -Srge/N -Sttel/N -Sttigens -Sttigung/P -Sttigungsgrad -Sttigungspunkt -Sttigungsverhalten/S -Stze/MN -Suberns -Suberung/P -Suberungsaktion/P -Sue/N -Suerns -Suerung/P -Sufer/NS -Sugetier/EPS -Sugling/EPS -Suglingsausstattung/P -Suglingsfrsorge -Suglingsheim/EPS -Suglingspflege/N -Suglingsprodukte -Suglingsschwestern -Suglingssterblichkeit/P -Sule/N -Sulengang/STp -Sulenknauf/Tp -Sulenschfte/N -Sumniszuschlag/STp -Suren -Sa. -Sa/N -Saal/ST -Saalfluchten -Saalschutz -Saarbergbau -Saarbrcken -Saargebiet -Saarkohle -Saarland/T -Saarregierung -Saat -Saatgut -Sabbat/S -Sabbatschndung/P -Sabine/S -Sabotage/N -Sabotageakt/EPST -Sabotagering -Saboteur/EFPS -Sachanlage/N -Sachargument/EPST -Sacharin -Sachaufgabe/N -Sachausgabe/N -Sachbearbeiter/FNS -Sachbearbeitung -Sachbeihilfe/N -Sachbereich/PS -Sachbeschdigung/P -Sachbcher -Sachbuch/T -Sache/NR -Sacheinlage/N -Sacher/S -Sachfrage/N -Sachgebiet/EPST -Sachkatalog/EPST -Sachkenner/NS -Sachkenntnis/q -Sachkonten -Sachkosten -Sachlage/N -Sachleistung/P -Sachlichkeit -Sachmittel/NS -Sachproblem/EPS -Sachregister/N -Sachschden -Sachschaden/S -Sachsen/S -Sachsenaufstand -Sachsenhausen -Sachsenkrieg -Sachsenspiegel -Sachspende/N -Sachverhalt/EPST -Sachverhaltsaufklrung -Sachvermgen/S -Sachverstndige/NR -Sachverstndigenkonferenz/P -Sachverstand -Sachwalter/NS -Sachwert/EPST -Sachwertgurus -Sachwertpreisen -Sachwortverzeichnis/Qq -Sachziel/EPS -Sachzwnge/N -Sack/S -Sackgasse/N -Sadat/S -Sadismus -Sadist/P -Safari -Safran/S -Saft/EST -Saftladen/S -Saga -Sagengestalt/P -Sahelzone -Sahnetorte/N -Saigons -Saison/S -Saisonarbeit/PR -Saisonarbeiter/FNS -Saisonausverkauf/Sp -Saisonbetrieb -Saisonerffnung -Saisonkarte -Saisonschluss/Tp -Saite/N -Saiteninstrument/EPT -Sakkoanzug/STp -Sakrament/EPST -Sakrileg/EPS -Saladin/S -Salamander/NS -Salami -Salamischeiben -Salat/EPST -Salatblatt -Salatduft -Salbei -Salbens -Salbung/P -Salden -Saldenbesttigung -Saldenmitteilung -Saldo -Saldomitteilung -Saldovortrag/STp -Salisbury -Salm/P -Salmiakgeist/S -Salomoneninseln -Salon/S -Saloniki -Salonwagen/S -Salpeter/S -Salpetererde -Salpetersuren -Salto/S -Salut -Salutschuss/Tp -Salvador -Salve/N -Salz/T -Salzbergbau -Salzbergwerk/EPS -Salzburg -Salzfsser/N -Salzfass/MT -Salzgehalt -Salzgitter -Salzgurke/N -Salzkammergut -Salzkartoffeln -Salzlauge/N -Salzsule/N -Salzsure -Salzsieder/N -Salzsole/N -Salzstrae/N -Salzstreuer/N -Salzwasser/S -Salzwerk/EPST -Sam/EPS -Samariter/NS -Samarkand -Samba/S -Sambia -Samenbank -Samenbehlter/S -Samenerguss/Tp -Samenfden -Samenfaden -Samengang/Sp -Samengehuse/NS -Samenkapsel -Samenkrner/N -Samenkorn/S -Samenleiter/NS -Samenstrang/Sp -Sammelalben -Sammelalbum/S -Sammelanschluss/Tp -Sammelbndern -Sammelband/T -Sammelbecken/S -Sammelbegriff/EPST -Sammelbestand -Sammelbewegung -Sammelbezeichnung/P -Sammelbchse/N -Sammeldepot -Sammelgter/N -Sammelkarte -Sammelladung/P -Sammellager/NS -Sammelmappe -Sammelname/N -Sammelnamen/S -Sammelns -Sammelnummern -Sammelpltze/N -Sammelplatz/T -Sammelruf -Sammelstelle/N -Sammelsurium -Sammelwerk/EPS -Sammler/FNS -Sammlerbatterie/N -Sammlermarken -Sammlermeinung -Sammlerstck -Sammlervlker -Sammlung/P -Samoainseln -Samplermodul -Samson/S -Samstag/EP -Samstagabend -Samstagnachmittag -Samstagsausgaben -Samtfauteuil/S -Samthandschuh/EPS -Samts -Samuel/S -Sanatorien -Sanatorium -Sand/EPST -Sandale/N -Sandbnken -Sandbahn/P -Sandbank -Sandbden -Sandboden/S -Sanddorn/P -Sandes -Sandgrube -Sandksten -Sandkapselung -Sandkasten/S -Sandkrnchen -Sandkrner -Sandkorn -Sandmnnchen -Sandmnner/N -Sandoz -Sandpapier/EPS -Sandpapieren/W -Sandring -Sandscke -Sandsack/T -Sandstein/EPS -Sandstrmen -Sandsturm/S -Sandtorten -Sanduhr/P -Sandwich -Sandwichposition/P -Sandwsten -Sanftheit/P -Sanftmut/S -Sanierens -Sanierung/P -Sanierungsmanahme/N -Sanitrraum/STp -Sanitter/NS -Sanittsartikel/NS -Sanittsbedarf -Sanittsdienst/EPST -Sanittsflugzeug/EPS -Sanittsksten -Sanittskasten/S -Sanittstruppen -Sanittstrupps -Sanittswache -Sanittswagen -Sanittswesen/S -Sanktion/P -Sanktionierens -Sanktionierung/P -Sansibar -Santa -Santorin -Sanyo -Sao -Saphir/EPS -Saragossa -Sarajevo/S -Saratoga -Sardelle/N -Sardellenpaste -Sardine/N -Sardinien/S -Sarg/S -Sargdeckel/N -Sarkasmus -Sascha/S -Satan/S -Satellit/P -Satellitenanlage/N -Satellitenantenne/N -Satellitenstaat/T -Satin/S -Satinhose/N -Satire/N -Satiriker/NS -Sattel -Satteldecke/N -Sattelgurt/EPST -Sattelpferd/EPST -Sattelpltzen -Sattelplatz/T -Sattelpunkt/EPST -Sattelschlepper/NS -Satteltaschen -Sattelzeug/T -Sattler/FNS -Sattlerei/P -Saturation -Saturn -Satyr/N -Satz/EJT -Satzanfang/Sp -Satzaussage/N -Satzball/Sp -Satzbau -Satzende -Satzgefge/S -Satzlehre/N -Satzteil/EPS -Satzzeichen/S -Sau -Sauberkeit -Sauberladen -Saubohnen -Sauce/N -Sauciere/N -Saudi -Sauerbraten/S -Sauerbrunnen -Sauerei/P -Sauerkirsche -Sauerkohl/S -Sauerkraut -Sauermilch -Sauerstoff/S -Sauerstoffapparat/EPST -Sauerstoffflasche/N -Sauerstoffmaske/N -Sauerstoffsttigung -Sauerstoffzelt/EPT -Sauerteig/EPT -Sauferei -Saufgelage/NS -Sauger/NS -Saugfhigkeit -Saugflasche/N -Saugpapier/ES -Saugpumpe/N -Saugrohr/EPST -Saugwirkung/P -Saul/S -Saulgau -Saum/ST -Saumpfad/ET -Saumpferd/ET -Saumsttel/N -Saumsattel/S -Saumtier/ET -Sauna/S -Saurier/NS -Sauseschritt -Sausewind -Saustall/Sp -Saxofon/ES -Saxophon/EPS -Scanner/NS -Schbigkeit -Schcher/NS -Schchte/N -Schdel/NS -Schdelbasen -Schdelbrche/N -Schdelbruch -Schdeldecke/N -Schden -Schdigens -Schdigung/P -Schdlichkeit -Schdling/EPS -Schdlingsbekmpfung/P -Schfchen/S -Schfchenwolken -Schfer/FNS -Schferhndin -Schferhund/ET -Schferstndchen/S -Schfte/GN -Schkel/NS -Schkerei/P -Schlgerusche -Schndens -Schndlichkeit -Schndung/P -Schnke/N -Schren -Schrfens -Schrfung/P -Schrpe/N -Schtzchen/S -Schtzens -Schtzer/FNS -Schtzung/P -Schumwerkzeug -Schabemesser/N -Schabernack/ST -Schablone/N -Schach/S -Schachbrett/T -Schachbretter -Schachcomputer -Schachfeld/T -Schachfeldern -Schachfigur -Schachhefte -Schachklub -Schachpartie/N -Schachprogramm -Schachspiel/EPS -Schachspiele/NR -Schachspieler/S -Schacht/SW -Schachtanlage -Schachtel/JN -Schachtelhalm/ET -Schachtelstze -Schachtelsatz/T -Schachtelungsprinzip -Schachwelt -Schachzug/Sp -Schadenersatz/T -Schadenfreude/N -Schadens -Schadensersatz/T -Schadensersatzansprche/N -Schadensersatzforderung -Schadensersatzklage/N -Schadensfall/Sp -Schadensmeldung/P -Schadenssumme -Schadenstifter -Schadhaftigkeit/P -Schadloshaltung -Schadstoff/EPS -Schaf/EPST -Schafbcken -Schafbock -Schaffell/EPS -Schaffens -Schaffensdrang -Schaffensepoche/N -Schaffensfreude/N -Schaffenskrfte/N -Schaffenskraft -Schaffhausen -Schaffner/FNS -Schaffung/P -Schafgarbe/N -Schafherden -Schafhirt/P -Schafhrde/N -Schafleder/NS -Schafott/EPS -Schafpelz/EPT -Schafschren -Schafschur -Schafskpfe -Schafskopf/T -Schaft/EPSTW -Schaftstiefel/NS -Schafzucht/P -Schah/S -Schakal/EPS -Schalensitze -Schalheit -Schalk/EPST -Schalkhaftigkeit -Schalkheit -Schall/Sp -Schallabschwchung -Schallabsorption -Schallanalyse -Schallaufnehmer/N -Schallaufzeit -Schallbndel/S -Schalldmmung/P -Schalldmpfer/S -Schalldmpfung -Schalldose/N -Schalldruck -Schallehren -Schalleigenschaften -Schallenergie/N -Schallerfassung -Schallfrequenz -Schallgeber/S -Schallgeschwindigkeit/P -Schallgrenzen -Schallimpedanz -Schallimpedanzanpassung -Schallimpulse -Schallintensitt -Schallmauer/N -Schallmessung/P -Schallpegelmessung -Schallplatte/N -Schallplattenaufnahmen -Schallplattenkonzerne -Schallplattenmusik -Schallplattensendung/P -Schallpuls/EPT -Schallraum/STp -Schallsender -Schallstrahl -Schalltrichter/NS -Schallverhltnis/Qq -Schallwege -Schallwelle/N -Schallwiderstand -Schals -Schaltabstnden -Schaltanlage/N -Schaltaufgaben -Schaltausgang/Sp -Schaltausgangsmodul -Schaltbild/RT -Schaltbrett/RT -Schaltbrcken -Schalteingang -Schalteinheit/P -Schalteinstellung -Schaltelement/E -Schaltens -Schalter/NS -Schalteranordnung -Schalterbeamte/NS -Schalterdienst/EPT -Schaltereingngen -Schalterhalle -Schalterinterface/S -Schalterleitung/P -Schaltermodul -Schalternummer -Schalterpersonal -Schalterschluss/Tp -Schalterstellung/P -Schalterstunden -Schalterteil -Schaltflanken -Schaltfunktion/P -Schaltgetriebe/S -Schalthebel/N -Schaltier/EPS -Schaltjahr/EPS -Schaltkasten -Schaltknpfe/N -Schaltknopf/T -Schaltkontakte/N -Schaltkreis/EPT -Schaltleitung -Schaltlitze -Schaltmagnete -Schaltmatrix -Schaltmodul -Schaltnetzteil/PS -Schaltplne/N -Schaltplan/ST -Schaltpult/ET -Schaltpunkt/EPT -Schaltpunktanzeige -Schaltpunktbereiche -Schaltpunktbeschreibung -Schaltregler -Schaltreglernetzteilen -Schaltrelais -Schaltrichtung -Schaltschema/S -Schaltschrank -Schaltschwellen -Schaltspitzen -Schaltstelle/N -Schaltstrme -Schaltstrom -Schaltstromverlauf/Sp -Schaltsystem/E -Schalttafel/N -Schalttag/EPST -Schalttaster -Schaltung/P -Schaltungsbeschreibung -Schaltungsgestaltung -Schaltungsvorschlag/Sp -Schaltverhalten -Schaltwerk/EPS -Schaltzeichen -Schaltzeit/P -Schaltzentrum -Schaltzustnde -Schaltzustand/ST -Schaltzwecken -Schalung/P -Schaluppe/N -Scham -Schamgefhl/EPT -Schamhaftigkeit -Schamlippe/N -Schamlosigkeit/P -Schamrte -Schamteile -Schandbnklein -Schande/N -Schandfleck/PST -Schandmuler -Schandmal/EPS -Schandmaul/S -Schandtat -Schanghai -Schanktisch -Schankwirt/EPT -Schankwirtschaft -Schanzbau/S -Schanzbauten -Schar -Scharade/N -Scharfblick/EPST -Scharfmacher/NS -Scharfrichter/NS -Scharfschieen/S -Scharfschtze -Scharfsinn/S -Scharfsinnigkeit -Scharlach -Scharlachfieber/S -Scharlatan/EPS -Scharmtzel/NS -Scharnier/EPS -Scharnierachse -Scharnierdeckel/N -Schatten/S -Schattenbild/R -Schattenboxen -Schattendasein/S -Schattenflche -Schattengestalten -Schattenraster -Schattenriss/EPT -Schattenseite/N -Schattenspiel/EPST -Schattenwhrung/P -Schattierens -Schattierung/P -Schatulle/N -Schatz/T -Schatzmter -Schatzamt/T -Schatzanweisung/P -Schatzfund/EPST -Schatzgrber/NS -Schatzinsel -Schatzkammer/N -Schatzkanzler -Schatzmeister/NS -Schatzministerium -Schatzsucher -Schatztruhe -Schatzwechsel/NS -Schaubild/RT -Schaubhne/N -Schaubude/N -Schaubudenbesitzer/NS -Schauder -Schauer/S -Schauerdrama/S -Schauerroman/EPS -Schaufel -Schaufelbewegung -Schaufelgeweih/EPT -Schaufelrder -Schaufelrad/T -Schaufelsensor -Schaufelspitze -Schaufelstellungsanzeige -Schaufenster/NS -Schaufensterauslagen -Schaufensterdekoration/P -Schaufenstergestalter -Schaufensterreklame -Schaufensterscheibe -Schaufliegen -Schauhaus/Tp -Schauinsland -Schaukmpfe/N -Schauksten -Schaukampf/T -Schaukasten -Schaukel -Schaukelbrett/T -Schaukelbretter -Schaukelpferd/ET -Schaukelsthle/N -Schaukelstuhl/T -Schaum/S -Schaumbder/N -Schaumbad -Schaumburg -Schaumgebck/EPS -Schaumgehuse -Schaumgummi/S -Schaumgummiresten -Schaumlscher/S -Schaumschlger/S -Schaumnze/N -Schaumwein/EPS -Schaupltze/N -Schauplatz/T -Schauplatzprozess/EPT -Schauprozess/EPT -Schauspiel/EPST -Schauspieler/FS -Schauspielereien -Schauspielhaus/Tp -Schauspielknste -Schauspielkunst -Schauspielschule -Schausteller/NS -Schaustellung -Schaustck/EPST -Scheck/S -Scheckbcher/N -Scheckbuch/T -Scheckformulare -Scheckheft/EPT -Scheckkarte -Scheckreitereien -Scheckvordrucke -Scheckzahlung -Scheffel/S -Scheibe/N -Scheibenbremse -Scheibenhonig/S -Scheibenschieen -Scheibenstnde/N -Scheibenstand -Scheibenwischer/NS -Scheich/EFPS -Scheichtum -Scheidelinie/N -Scheidens -Scheidewnde/N -Scheidewand -Scheidewasser/S -Scheideweg/ET -Scheidung/P -Scheidungsgrnde/N -Scheidungsgrund -Scheidungsklage/N -Scheidungsprozess/EPT -Scheidungsrecht -Scheidungsrichter -Schein/S -Scheinangriff/EPST -Scheinblten -Scheinehe -Scheinfriede/N -Scheinfrieden/S -Scheingefecht/EPST -Scheingeschft/EPS -Scheingrnde/N -Scheingrund/T -Scheintod/ET -Scheinwelten -Scheinwerfer/NS -Scheinwerferlicht/EPST -Scheinwiderstand -Scheikerl/EPS -Scheit/EPT -Scheitel/S -Scheitelkreis/EPT -Scheitelpunkt/EPST -Scheitelwinkel/NS -Scheiterhaufen/S -Scheiterns -Schellfisch/ET -Schelm/EPT -Schelmenstreich/EPS -Schelmerei/P -Scheltwort/EPST -Schema/S -Schemata -Schematisierens -Schematisierung/P -Schemazeichnung -Schemel/NS -Schemen/S -Schenkel/NS -Schenkelbrchen -Schenkelbruch/T -Schenkelumfang -Schenkens -Schenker -Schenkung/P -Schenkungsurkunde/N -Scherbe/N -Scherbengericht -Scherenschleifer/NS -Scherenschnitt/EPST -Scherer -Schererei/P -Scherflein/S -Scherge/N -Scherkrfte -Scherz/T -Scherzartikel -Scherzhaftigkeit -Scherzwort/EPST -Scheuerbrste -Scheuerfrau/P -Scheuerlappen -Scheuerleiste/N -Scheuermittel -Scheuertchern -Scheuertuch/T -Scheuklappe/N -Scheuleder/N -Scheune/N -Scheulichkeit/P -Scheusal/EPS -Schi/S -Schicht/J -Schichtarbeit/PR -Schichtarbeiter/FNS -Schichtaufbau/S -Schichtenfolge -Schichtfolge/N -Schichtstrken -Schichtstoff/EPS -Schichtstruktur/P -Schichtwechsel/S -Schickens -Schickeria -Schicklichkeit/G -Schicksal/EPS -Schicksalsdrama -Schicksalsfrage/N -Schicksalsgefhrten -Schicksalsgemeinschaft -Schicksalsschlag/Tp -Schicksalsweg -Schickung/P -Schiebedchern -Schiebedach/T -Schiebefenster/NS -Schiebekappe/N -Schiebens -Schieber/NS -Schieberegister -Schieberei/P -Schiebesitz/EPT -Schieblehre -Schiebung/P -Schiedsgericht/ET -Schiedsgerichtshof -Schiedsgutachten/S -Schiedskommission/P -Schiedsrichter/FNS -Schiedssprche/N -Schiedsspruch -Schiedsverfahren/S -Schieferdcher -Schieferdach/T -Schiefers -Schiefertafeln -Schieflage/N -Schiefstellung/P -Schienbein/EPST -Schienenbahn/P -Schienenbus/Qq -Schienennetz/ET -Schienenstrang/STp -Schienenweg/E -Schierling/S -Schiebaumwolle -Schiebefehl/EPS -Schiebude/N -Schieens -Schieerei/P -Schiegewehr/EPS -Schiekunst -Schiemeister -Schiepulver -Schiescheibe/N -Schiestnde -Schiestand/T -Schiff/MRST -Schiffbau/S -Schiffbrcke -Schiffbruch/S -Schiffer/NS -Schifferkitt -Schifferklavier/EPS -Schifffahrt/P -Schifffahrtsaktien -Schifffahrtsanteile -Schifffahrtsfragen -Schifffahrtskanal -Schifffahrtslinie -Schifffahrtspapiere -Schifffahrtsstrae/N -Schiffsrzte/FN -Schiffsarzt/T -Schiffsbug/S -Schiffschaukel/N -Schiffsdeck -Schiffseigner/NS -Schiffsersatzteile -Schiffsfrachtbrief/EPS -Schiffsfrachten -Schiffsjournal/ES -Schiffsjunge/N -Schiffskchen -Schiffskoch/S -Schiffskche/N -Schiffsladung/P -Schiffslinien -Schiffsmannschaft -Schiffspapiere -Schiffsraum/STp -Schiffsreise/N -Schiffsrmpfe/N -Schiffsrumpf/T -Schiffsschraube/N -Schiffsverkehr/S -Schiffswerft -Schiffwerft/P -Schiiten -Schikane/N -Schikoree/S -Schild/EPST -Schilda -Schildanlage -Schildausbau/S -Schildausbausteuerung -Schildausrichten -Schildbewegung/P -Schildbrger/NS -Schildbrgerstreich/EPS -Schilddrse/N -Schilddrsenhormon -Schilde/NRS -Schilder/J -Schildfunktionen -Schildgrafik -Schildhersteller -Schildknappe -Schildkrte/N -Schildkrtensuppe -Schildlaus -Schildnummern -Schildpatt/S -Schildrechner -Schildseite -Schildsteuerung -Schildvortriebsmaschine -Schildwachen -Schilf/EPT -Schilfdach -Schilfmatte -Schilfrohr/EPS -Schiller/S -Schilling -Schimmel/S -Schimmelpilz/EPT -Schimmer/S -Schimpanse/N -Schimpansenmutter -Schimpfwrter/N -Schimpfwort/T -Schindel/N -Schindeldcher -Schindeldach/T -Schinder/S -Schinderei/P -Schindluder -Schinken/S -Schinkenwrste -Schirm/JST -Schirmbild -Schirmblech/E -Schirmens -Schirmgehuse -Schirmgitter/S -Schirmherr/FNP -Schirmherrschaft/P -Schirmkappe -Schirmmanahmen -Schirmplatten -Schirmstnder/NS -Schirmstock -Schirmwnde/N -Schirmwand -Schizophrenie -Schlchter/N -Schlchterei/P -Schlfe/MNR -Schlfer/FNS -Schlfrigkeit -Schlge/NR -Schlgen -Schlger/NS -Schlgerei/P -Schluche/N -Schlacht/J -Schlachtbnken -Schlachtbank -Schlachtbeil/EPST -Schlachtens -Schlachter -Schlachtermesser -Schlachtfeld/T -Schlachtfelder -Schlachtgetmmel -Schlachthaus/Tp -Schlachthfe -Schlachthof -Schlachtkreuzer/NS -Schlachtmesser/NS -Schlachtopfer/S -Schlachtplne/N -Schlachtplan/T -Schlachtross/EPT -Schlachtruf/EPS -Schlachtschiff/E -Schlachtvieh/S -Schlaf/ST -Schlafabteil/EPS -Schlafanzug/STp -Schlafcouch -Schlafdefizit -Schlafenszeit/P -Schlafgelegenheit/P -Schlafgemcher -Schlafgemach/T -Schlafittchen -Schlafkrankheit -Schlaflied/RST -Schlaflosigkeit/P -Schlafmangel -Schlafmatratze -Schlafmittel/NS -Schlafraum/STp -Schlafrcke -Schlafrock/T -Schlafscken -Schlafsle/N -Schlafsaal/S -Schlafsack -Schlafstellen -Schlafstrung/P -Schlafsubstanz -Schlaftablette/N -Schlaftrunk -Schlafwagen/S -Schlafwandler/S -Schlafzimmer/S -Schlafzimmerbung -Schlagabtausch -Schlagadern -Schlaganfall/Sp -Schlagball/Sp -Schlagbaum/STp -Schlagbohrer/S -Schlagbolzen/S -Schlager/NS -Schlagerderby/S -Schlageridol -Schlagermusik -Schlagersnger/FS -Schlagerspiel -Schlagerstar/S -Schlages -Schlagfertigkeit -Schlaginstrument/EPST -Schlagkraft -Schlaglcher/N -Schlagloch/T -Schlagrahm -Schlagring/EPS -Schlags -Schlagsahne -Schlagschatten -Schlagseite -Schlaguhren -Schlagwechsel/S -Schlagwerk/ET -Schlagwetterkatastrophe -Schlagwetterschutz/T -Schlagwrter/N -Schlagwort/EPT -Schlagwortkatalog/EPS -Schlagzeile/N -Schlagzeug/EPS -Schlagzeuge/NR -Schlagzeuger/S -Schlamassel -Schlamm/S -Schlammassel -Schlammbder/N -Schlammbad/T -Schlammbildung -Schlammmasse/N -Schlampe/N -Schlamperei/P -Schlange -Schlangenbeschwrer/S -Schlangenbiss/EPT -Schlangengift/ET -Schlangenlinie/N -Schlangenmensch/S -Schlankheit -Schlankheitskur -Schlapphte/N -Schlapphut -Schlaraffenland/T -Schlauberger/NS -Schlauch/S -Schlauchboot/EPST -Schlauchende/N -Schlauchkabel/N -Schlauchkabelstcken -Schlauchleitung/P -Schlaufe/N -Schlauheit -Schlaukpfe -Schlaukopf/T -Schlaumeier/S -Schlawiner -Schlechtigkeit/P -Schlechtwetterperiode/N -Schlegel/NS -Schleichweg/EPS -Schleichwerbung -Schleier/NS -Schleiereule/N -Schleifchen/S -Schleifenbedingung/P -Schleifendurchlauf/Sp -Schleifeninvariante/N -Schleifkontakte -Schleifmaschine -Schleifpapier/EPS -Schleifrder/N -Schleifrad -Schleifstein/EPS -Schleim/S -Schleimabsonderung/P -Schleimbeutelentzndung/P -Schleimdrse/N -Schleimsuppe/N -Schlemmerei/P -Schlendrian/S -Schlepp/JR -Schleppens -Schlepper/NS -Schleppkraft -Schlepplnge -Schlepptau/S -Schleppung/P -Schleppzug/STp -Schlesier/NS -Schleswig -Schleuder/J -Schleudermaschine -Schleuderns -Schleuderpreis/ET -Schleudersitz/EPT -Schleuderung/P -Schleusentor/EPS -Schlichterin/F -Schlichtern -Schlichters -Schlichtheit -Schlichtungsabkommen -Schlichtungsausschuss/Tp -Schlichtungsverhandlung/P -Schlichtungsvorschlag/Tp -Schlichtungswesen/S -Schlick/S -Schlierenbildung -Schlieens -Schlieer -Schliefcher/N -Schliefach/S -Schlieung/P -Schliffs -Schlinggewchs/EPT -Schlingpflanze/N -Schlips/EPT -Schlitten/S -Schlittenbahn -Schlittenbewegung -Schlittenfahrt/P -Schlittenhunden -Schlittenkonstruktion/P -Schlittenposition/P -Schlittenrichtung -Schlittensteuerung -Schlittenvorschub/S -Schlittenzylindern -Schlittschuh/EPS -Schlittschuhlufer/FNS -Schlitz/EPT -Schlitzauge/N -Schlitzohr -Schlitzwand -Schlitzwandbau -Schlitzwanderstellung -Schlitzwandgreifer -Schlsschen/S -Schlsser/N -Schlsserkatalog/EPST -Schlosser/FNS -Schlosserarbeiten -Schlosserhandwerk -Schlosserlehrling -Schlosserwerksttten -Schlosserwerkstatt -Schlosses -Schlossgarten/S -Schlossherr/NP -Schlosspark/S -Schlot/EPST -Schlcke/MN -Schlnde/N -Schlssel/NS -Schlsselbein/EPST -Schlsselbereich/EPS -Schlsselblume/N -Schlsselbund/EPST -Schlsseldateien -Schlsseleigenschaften -Schlsselfeile -Schlsselfertigung -Schlsselfigur -Schlsselindustrie/N -Schlsselkind/T -Schlsselkinder -Schlssellcher/N -Schlsselloch/T -Schlsselposition/P -Schlsselring/EPS -Schlsselroman/EPS -Schlsselstellung/P -Schlsseltechnologie/N -Schlsselwrter/N -Schlsselwort/EPT -Schlucht/P -Schluck/ST -Schluckauf -Schluckimpfung/P -Schludrigkeit -Schlummer/S -Schlund/T -Schlupf/S -Schlupflcher/N -Schlupfloch/ST -Schlupfmessung -Schlupfberwachung -Schlupfwinkel/N -Schluss/Tp -Schlussakt/EPST -Schlussbemerkung/P -Schlussbericht/EPS -Schlusserklrung -Schlussfeier/N -Schlussfolgerung/P -Schlussformel/N -Schlusskurse -Schlusslufer -Schlusslicht/RT -Schlussnotierung -Schlusspfiff/EST -Schlussphase/N -Schlusspunkt -Schlussrechnung/P -Schlussrunde/N -Schlussstze/N -Schlusssatz/T -Schlusssitzung -Schlussspurt/ST -Schlussstrich/EPT -Schlusstag -Schlussverkauf/Sp -Schlusswort/EPST -Schlusszahlung -Schmhens -Schmhung/P -Schmlerns -Schmlerung/P -Schmuse/N -Schmach -Schmackhaftigkeit -Schmalfilm/EPS -Schmalfilmkamera/S -Schmalkost -Schmalschrift -Schmalseite -Schmalspuren -Schmalz/T -Schmankerl/NS -Schmarotzer/FNS -Schmarotzerpflanze/N -Schmarotzertum/S -Schmarre/N -Schmatz/T -Schmaus -Schmauserei/P -Schmeichelei/P -Schmeichelkatze/N -Schmeichler/FNS -Schmeifliege/N -Schmelz/JT -Schmelzens -Schmelzerei/P -Schmelzhtte/N -Schmelzkse/N -Schmelzkleber -Schmelzofen/S -Schmelzpunkt/EPST -Schmelzsicherung/P -Schmelztiegel/NS -Schmelzung/P -Schmerbuche/N -Schmerbauch/ST -Schmerz/T -Schmerzensgeld/RT -Schmerzensschrei/EPS -Schmerzgrenze/N -Schmetterball/Sp -Schmetterling/EPS -Schmetterlingsfarm -Schmetterschlag/Tp -Schmidt/S -Schmied/FST -Schmiedeeisen/S -Schmiedehmmern -Schmiedehammer/S -Schmiedestck/E -Schmierbchsen -Schmierens -Schmiererei/P -Schmieresteher/NS -Schmierfett/EPST -Schmierfink/PS -Schmiergeld/RT -Schmiermittel/NS -Schmierl -Schmierpapier/PS -Schmierplne/N -Schmierseife -Schmierstoff/EPS -Schmierung/P -Schmierzettel -Schmirgel/S -Schmirgelpapier/EPS -Schmker -Schmollwinkel/NS -Schmorbraten -Schmuckartikel -Schmuckindustrie -Schmuckkstchen/S -Schmucks -Schmucksachen -Schmuckstck/EPST -Schmuggel/S -Schmuggelei/P -Schmuggler/NS -Schmusekatze -Schmutz/T -Schmutzarbeit/P -Schmutzfink/PS -Schmutzfleck/PS -Schmutzigkeit -Schmutzliteratur -Schmutztitel/N -Schnbel/N -Schnppchen/S -Schnppchenjagd -Schnpse/N -Schnabel/S -Schnabeltasse -Schnabeltier/EPS -Schnake/N -Schnallenschuh/PS -Schnappmesser/S -Schnappschlssern -Schnappschloss/T -Schnappschuss/Tp -Schnappstift/S -Schnaps/T -Schnapsbrennerei/P -Schnapsflasche -Schnapsglas/T -Schnapsidee/N -Schnaufer/NS -Schnauzbrte -Schnauzbart/T -Schnauze/NR -Schnauzer/NS -Schnecke/N -Schneckenantrieb -Schneckendrehzahl -Schneckengang/Sp -Schneckengewinde -Schneckenhaus/Tp -Schneckenpost -Schneckentempo -Schnee/S -Schneeball/Tp -Schneeballschlacht -Schneebericht -Schneebesen/S -Schneebrille/N -Schneefall/Sp -Schneeflocken -Schneegebiet -Schneegestber/S -Schneeglckchen/S -Schneegrenzen -Schneehase/N -Schneehhner/N -Schneehtten -Schneehuhn/S -Schneekette/N -Schneemnner/N -Schneemann/T -Schneepflug/STp -Schneeschmelze -Schneeschuh/ET -Schneestrme/N -Schneesturm/T -Schneetreiben/S -Schneeverwehung/P -Schneewehe -Schneewetter/S -Schneewittchen/S -Schneid/S -Schneidarm/EPS -Schneidarmbewegung/P -Schneidarmlast -Schneidarmschlitten -Schneidarmstellung -Schneidautomatik -Schneidbetrieb -Schneidbrenner/N -Schneidebrett/R -Schneidens -Schneider/FS -Schneiderei -Schneiderfachschule -Schneiderkostme/N -Schneiderkostms -Schneidermeistern -Schneidermeisters -Schneiderpuppe -Schneidewerkzeug/EPS -Schneidezhne/N -Schneidgerusch -Schneidhhe/N -Schneidhorizont/S -Schneidkopf/S -Schneidkopfabstand -Schneidkopfbewegung/P -Schneidkopfposition -Schneidkopfunterkante -Schneidkraftanalyse -Schneidleistung -Schneidleistungsmessung -Schneidmeiel -Schneidmesser -Schneidmesserwechsel -Schneidmotorwelle -Schneidprofil/EPS -Schneidringverbindung/P -Schneidsteuersystem -Schneidsteuerung -Schneidversuche -Schneidvorgang/Tp -Schneidvorrichtung -Schneidwalze/N -Schneidwaren -Schneidwarenindustrie -Schneidzyklen -Schneidzyklus -Schneise/N -Schnellabschaltung -Schnellantwort -Schnellbleiche -Schnellboot/EPST -Schnellfahrer -Schnellfeuer/S -Schnellfeuergeschtz/EPT -Schnellgang/Sp -Schnellgericht/EPST -Schnellhefter/S -Schnelligkeit -Schnelligkeitsrekorde/NS -Schnellimbiss/EPT -Schnellimbissstube/N -Schnellkrfte/N -Schnelllufer/N -Schnellreinigung/P -Schnellschreibehilfe -Schnellschuss/Tp -Schnellstrae/N -Schnellverfahren/S -Schnellwaage/N -Schnellzug/STp -Schnepfe/N -Schnippchen -Schnippel/S -Schnittarbeiten -Schnittblumen -Schnittbohne/N -Schnitte/S -Schnittebene/N -Schnittflche -Schnittfhrung -Schnitthhe -Schnitthlzer/N -Schnittholz -Schnittkante -Schnittlauch/S -Schnittleistung -Schnittmchtigkeit -Schnittmuster/NS -Schnittpunkt/EPST -Schnittpunktbildung -Schnitts -Schnittstelle/N -Schnittstellenadapter -Schnittstellenanpassung -Schnittstellenattribute -Schnittstellenbaustein/EPS -Schnittstellenbelegung/P -Schnittstellenbeschreibung/P -Schnittstellenbox/P -Schnittstellendefinition/P -Schnittstellenkabel/NS -Schnittstellenkonverter -Schnittstellennummer/N -Schnittstellenoption/P -Schnittstellenparameter -Schnittstellenprobleme -Schnittstellensoftware -Schnittstellenteil -Schnittstellentest -Schnittstellentreiber/NS -Schnittstellenumsetzer/S -Schnittstellenverbindung -Schnittstellenwandler -Schnittwaren -Schnittwunde/N -Schnittzeichnung/P -Schnitzarbeit -Schnitzel/NS -Schnitzeljagd/P -Schnitzer/FNS -Schnitzerei/P -Schnitzknsten -Schnitzkunst -Schnitzwerk/EPST -Schnrkel/GS -Schnrkels/G -Schnsel -Schnorchel -Schnorrer/NS -Schnorrerei -Schnorrertum -Schnffelei -Schnffelhunde -Schnffler/NS -Schnrbden -Schnrriemen/S -Schnrsenkel/S -Schnrstiefel/N -Schnuller/N -Schnulze/N -Schnupfens -Schnupftabak -Schnupftcher/N -Schnupftuch/T -Schnuppe/N -Schnupperlehre -Schnur -Schnurrbrte -Schnurrbart -Schffe/N -Schffengericht/EPST -Schnbrunn -Schnfrber/NS -Schnfrberei -Schnheit/P -Schnheitsnderung/P -Schnheitsfarm -Schnheitsfehler/N -Schnheitsideal -Schnheitskonkurrenz/P -Schnheitsmaske -Schnheitsoperation/P -Schnheitspflege -Schnheitsreparatur/P -Schnheitssalon/S -Schnheitswettbewerb/EPS -Schnredner/NS -Schnschreibdrucker -Schnschreibmodus -Schnwetterperioden -Schnwetterwolken -Schpfeimer/S -Schpfens -Schpfer/FNS -Schpfergeist/T -Schpferkraft -Schpfkellen -Schpflffel/NS -Schpfung/P -Schpfungsgeschichte -Schssling/EPS -Schober/S -Schockerlebnis/Qq -Schocktherapie/N -Schockwirkung -Schokolade/N -Schokoladeflecken -Schokoladencreme -Schokoladenguss/Tp -Schokoladentafel/N -Scholastiker -Scholle/N -Schonbezug/Sp -Schonens -Schoner/N -Schongang -Schonung/P -Schonzeit/P -Schopf/ST -Schoppen/S -Schorf/S -Schornstein/EPS -Schornsteinfeger/FNS -Schornsteinindustrie -Scho/ET -Schohund/EPST -Schokind/ERST -Schote/N -Schott/EFPRS -Schottenrock -Schotter/NS -Schottland -Schrglage/N -Schrglagenbegrenzung -Schrglageneinstellung -Schrglagenwinkel -Schrgschneiden -Schrgschrift -Schrgstellung -Schrgstrich/EPS -Schrmmaschine -Schraffierens -Schraffierung/P -Schraffur/P -Schrank/EPS -Schrankenwrter/NS -Schrankkoffer/S -Schraubdeckel/NS -Schraubendampfer/NS -Schraubendreher -Schraubenfabrik -Schraubengngen -Schraubengang/S -Schraubengewinde/S -Schraubenmutter/N -Schraubens -Schraubenschlssel/NS -Schraubensicherungslack/E -Schraubenzieher/NS -Schraubklemme/N -Schraubklemmenleiste -Schraubstcke/N -Schraubstock/S -Schraubung/P -Schraubverschluss/Tp -Schrebergrten -Schrebergarten/S -Schreck -Schreckens -Schreckensbotschaft/P -Schreckenschrei/EPS -Schreckensherrschaft/P -Schreckensnachricht/P -Schreckensruf -Schreckensschrei/ST -Schreckenstat/P -Schreckgespenst/RT -Schrecknis/Qq -Schreckschuss/Tp -Schreckschusspistole/N -Schrecksekunde/N -Schrei/GNRS -Schreibadresse/N -Schreibarbeit/P -Schreibbefehl/E -Schreibblcke/N -Schreibblock/ST -Schreibcursor -Schreibens -Schreiber/FNS -Schreiberei/P -Schreiberling/EPS -Schreibfeder/N -Schreibfehler/NS -Schreibgert/EPT -Schreibheft/EPT -Schreibhilfe/N -Schreibkrfte/N -Schreibkrmpfen -Schreibkraft -Schreibkrampf -Schreibknsten -Schreibmappe/N -Schreibmaschine -Schreibmaschinenmodus -Schreibmaschinenschreiben -Schreibmaterial -Schreibpapier/EPS -Schreibpult/EPST -Schreibschutz/T -Schreibschutzeinheit/P -Schreibstube -Schreibstubenmannschaft -Schreibtisch/EPT -Schreibtischtter -Schreibung/P -Schreibunterlage -Schreibware/N -Schreibwarenhndler/FNS -Schreibwarenhandlung/P -Schreibweise/N -Schreibzeug/S -Schreibzugriff/EPS -Schreier/FNS -Schreihlse/N -Schreihals/T -Schrein/EPRS -Schreiner/FNS -Schreis/G -Schreitens -Schreitgeschwindigkeit -Schreitweg/E -Schreitwerk/S -Schreitwerksdruck -Schreitwerkshub -Schreitzylinder -Schrift/P -Schriftart/P -Schriftbild/RT -Schriftbreite/N -Schriftdeutsch -Schriftenreihe -Schrifterkennung -Schriftfhrer -Schriftgelehrte/NR -Schriftgieer/NS -Schriftgre/N -Schriftkassetten -Schriftleiter/NS -Schriftrollen -Schriftstze/N -Schriftsatz/T -Schriftsetzer/N -Schriftsprache/N -Schriftsteller/FNS -Schriftstellergilde -Schriftstellerverband -Schriftstck/EPS -Schriftteilen -Schrifttum/S -Schriftverkehr -Schriftwechsel/S -Schriftwort -Schriftzeichen/S -Schriftzug/STp -Schrimp/S -Schrittes -Schrittgeber -Schritthaltens -Schrittmacher/NS -Schrittmotor/PS -Schrittmotorinterface/S -Schritts -Schritttempo/S -Schrittweite/N -Schrder/S -Schrdinger/S -Schroffheit -Schroffteile -Schrot/S -Schrotbrot/EPST -Schrotflinte/N -Schrotkrner -Schrotkorn/S -Schrotladung -Schrotmehl/S -Schrotmhlen -Schrotsgen -Schrott/SW -Schrotthndler/FNS -Schrotthandel -Schrottpltze/N -Schrottplatz -Schrottsituation -Schrottverbraucher -Schrottwert/ST -Schrottwirtschaft -Schrulle/N -Schrumpfens -Schrumpfschlauch -Schrumpfteilen -Schrumpfung/P -Schrumpfungsprozess/EPT -Schrunden -Schbe/N -Schchternheit -Schler/FNS -Schleraustausch/T -Schlerauswahl -Schlerbund -Schlerlotsen -Schlermannschaft -Schlertarife -Schlerverkehr -Schlerzeitkarten -Schrfkante -Schrfprofilen -Schrze/N -Schrzenbnder/N -Schrzenband -Schrzenjger/NS -Schrzenkleid/RT -Schssel/N -Schttelfrost/S -Schttelreim/EPS -Schtzenfest/EPST -Schtzenfeuer/S -Schtzengrben -Schtzengraben/S -Schtzenhilfe/N -Schtzenketten -Schtzenknig/EPS -Schtzenlinien -Schtzenlcher/N -Schtzenloch/S -Schtzenverein -Schtzer/FNS -Schtzling/EPS -Schub/S -Schubert/S -Schubfcher -Schubfach/T -Schubksten -Schubkarre/N -Schubkasten/S -Schubkrfte/N -Schublade/N -Schubleistung -Schufterei -Schufts -Schuh/EPS -Schuhabteilung -Schuhbndern -Schuhband/S -Schuhbrste/N -Schuhcreme -Schuhgeschft/EPS -Schuhgre/N -Schuhindustrie -Schuhkartongre -Schuhmacher/N -Schuhputzer/NS -Schuhriemen/S -Schuhsenkel/S -Schuhsohle/N -Schuhspanner/NS -Schuhware -Schuhwerk/EPST -Schuhwichsen -Schukosteckdosen -Schukostecker -Schulmter/N -Schulabschluss/Tp -Schulamt/T -Schularbeiten -Schularten -Schulaufgaben -Schulaufsichtsgesetz -Schulausflug/STp -Schulausgabe/N -Schulbnke -Schulbank -Schulbeginn -Schulbehrde/N -Schulbeispiel/PS -Schulbesuch/PS -Schulbildung -Schulbcher/N -Schulbuch/T -Schulbus -Schulbussen -Schuldbcher/N -Schuldbuch/S -Schuldenberg/S -Schuldenblase -Schuldendeflation -Schuldenerlass/T -Schuldenexplosion/P -Schuldeninflation -Schuldenkollaps/T -Schuldenlast/P -Schuldenlawine -Schuldenroulette -Schuldentilgung -Schuldforderung -Schuldfrage/N -Schuldienst -Schuldigkeit -Schuldirektor/FPS -Schuldlosigkeit -Schuldner/FNS -Schuldnerberatungsstelle/N -Schuldnernation/P -Schuldrecht/EPST -Schuldschein/EPS -Schuldverschreibung/P -Schuldzuweisung -Schulens -Schulexperten -Schulferien -Schulflugzeug/EPS -Schulfreund/FPS -Schulgelnde/NS -Schulgeld/RT -Schulgelehrsamkeit/P -Schulgesetz -Schulhaus/Tp -Schulheft/E -Schulhfe/N -Schulhof/T -Schuljahr/EPT -Schuljugend -Schuljunge/N -Schulkamerad/P -Schulkenntnis/q -Schulkind -Schulklasse -Schullaufbahn/P -Schullehrer/FS -Schulleiter -Schulmappe -Schulmeister/NS -Schulneubau -Schulordnung/P -Schulpferd/EPST -Schulpflicht/P -Schulpltzen -Schulprfung -Schulrte/N -Schulranzen/S -Schulrat -Schulraum/STp -Schulreform -Schulreiten/S -Schulschiff/ET -Schulschluss/Tp -Schulschwnzer/NS -Schulsekretariat -Schulspeisung/P -Schulsprecher -Schulstrae/N -Schulstreit -Schulstress/EPT -Schulstuben -Schulstunde/N -Schultag -Schultasche/N -Schulter/N -Schulterblttern -Schulterblatt/S -Schulterklappen -Schulterschluss/Tp -Schultersieg/EPST -Schulterstck/PS -Schulterverletzung -Schulung/P -Schulungseinheit/P -Schulungsfilme -Schulungsheim -Schulungsraum/STp -Schulungsteilnehmer -Schulungsthema -Schulungszweck/EPS -Schulunterricht/EPST -Schulversumnis/Qq -Schulverwaltung/P -Schulweg/ET -Schulweisheit/P -Schulwesen/S -Schulz -Schulzeit/P -Schulzeugnis/Qq -Schulzimmer/NS -Schulzwang/Tp -Schund -Schundliteratur -Schundroman/EPS -Schuppenflechte -Schur/P -Schurke/N -Schurkenstreich/EPS -Schurkerei/P -Schurwolle -Schurz/T -Schuss/Tp -Schussbereich/EPST -Schussel/S -Schussfahrt -Schusslinie/N -Schusswaffe -Schusswechsel -Schussweite -Schusswunde -Schuster/S -Schusterjunge/N -Schute/N -Schutt/S -Schuttabladepltze/N -Schuttabladeplatz -Schutthalde/N -Schutthaufen -Schuttplatz -Schutz/ET -Schutzanmeldung/P -Schutzansprche -Schutzanstrich/EPST -Schutzanzug/STp -Schutzart -Schutzartanforderung/P -Schutzbehauptung -Schutzbereich -Schutzbeschaltung -Schutzblech/EPST -Schutzbrille/N -Schutzbndnis/Qq -Schutzdcher/N -Schutzdach/T -Schutzeinrichtung -Schutzengel/NS -Schutzerde -Schutzfrbung/P -Schutzfolie -Schutzforderung/P -Schutzfunktion/P -Schutzgebiet/EPS -Schutzgehuse -Schutzgeleit/EPS -Schutzgesetz -Schutzgitter/N -Schutzhaft -Schutzhaube/N -Schutzheiligen -Schutzherr/FNP -Schutzherrschaft -Schutzhlle/N -Schutzhtte -Schutzimpfung/P -Schutzinformation/P -Schutzinsel -Schutzkasten/S -Schutzklasse/N -Schutzklausel/N -Schutzkomitee/S -Schutzlack -Schutzmchte -Schutzmnner -Schutzmacht -Schutzmann/T -Schutzmarke/N -Schutzmanahme/N -Schutzmasken -Schutzmasse -Schutzmechanismen -Schutzmechanismus -Schutzmittel/N -Schutzpatron/EFPS -Schutzplatte -Schutzpolizei -Schutzrecht/EPST -Schutzrechtsanmeldung -Schutzschicht/P -Schutzschild/R -Schutzschlauch -Schutzsicherung -Schutzstoff/EPS -Schutztruppen -Schutzumschlag/Sp -Schutzvereinigung -Schutzverpflichtung -Schutzvorrichtung/P -Schutzvorschriften -Schutzwall/S -Schutzwiderstnden -Schutzwiderstand -Schutzzlle/N -Schutzzllner/S -Schutzzoll/S -Schwbin/F -Schwcheanfall/Sp -Schwcheerscheinung/P -Schwchens -Schwcheperiode -Schwchezeichen -Schwchezone -Schwchezustnde -Schwchezustand/T -Schwchlichkeit -Schwchling/EPS -Schwchung/P -Schwgerin/F -Schwmme/N -Schwne/N -Schwngerns -Schwngerung/P -Schwnke/N -Schwrmer/FNS -Schwrmerei -Schwtzer/FNS -Schwabe/N -Schwabenland -Schwabenstreich/EPST -Schwachheit -Schwachpunkt/EPST -Schwachsinn/S -Schwachstelle/N -Schwachstrom -Schwade/N -Schwadron/P -Schwadroneur/EPS -Schwager/S -Schwalbe/N -Schwalbenschwnze/N -Schwalbenschwanz/T -Schwall/ES -Schwammerlreife -Schwan/S -Schwanengesang/Sp -Schwanensee -Schwangerschaft/P -Schwangerschaftsabbruch -Schwangerschaftsunterbrechung/P -Schwangerschaftsverhtung/P -Schwank/J -Schwankungsbreite/N -Schwanz/T -Schwanzbewegung/P -Schwanzende/NS -Schwanzfedern -Schwanzflosse/N -Schwarm/S -Schwarte/N -Schwarzafrika -Schwarzarbeiten -Schwarzblech/ES -Schwarzbrot/EPS -Schwarzdrossel/N -Schwarzdruck -Schwarzfahrer/S -Schwarzfahrt/P -Schwarzgeld/RS -Schwarzgeldanleger -Schwarzgeldkonto -Schwarzgeldparadiese -Schwarzhndler/FNS -Schwarzhandel/S -Schwarzhaupt -Schwarzkarte -Schwarzmalerei -Schwarzmann -Schwarzmarkt/Tp -Schwarzmarktaktivitten -Schwarzpulver -Schwarzschlachtung/P -Schwarzseher/S -Schwarzsender/N -Schwarzstellung -Schwarzwald -Schwarzwaldmdel -Schwarzwaldstil -Schwarzwild/T -Schwarzwurzel/N -Schwatz/T -Schwatzbase/N -Schwatztante -Schwebebahn/P -Schwebebalken/S -Schwede/FN -Schwefel/S -Schwefelbdern -Schwefelbad/T -Schwefelblten -Schwefelblume/N -Schwefelkies/T -Schwefelkohlenstoff/EPST -Schwefelsure -Schwefelwasserstoff/ET -Schweif/JS -Schweigegeld/T -Schweigegelder -Schweigemrsche/N -Schweigemarsch/T -Schweigeminute -Schweigepflicht -Schweigestunde/N -Schweigsamkeit -Schwein/EPS -Schweinebraten/S -Schweinefleisch -Schweinehlften -Schweinehund/ET -Schweinemarkt/STp -Schweinepreise -Schweinerei/P -Schweinestall/Sp -Schweinezchtern -Schweinezchters -Schweinezucht -Schweinigeln -Schweinigels -Schweinskotelett/S -Schweinsleder -Schwei/JRT -Schweiabsonderung -Schweiarbeiten -Schweibltter/N -Schweiblatt -Schweibrenner/NS -Schweidrse/N -Schweiens -Schweier/NS -Schweierei -Schweifu/Tp -Schweigert -Schweihund/ET -Schweikontrolle -Schweinhte/N -Schweiperle/N -Schweistelle -Schweitechnik -Schweitropfen/S -Schweitzer/S -Schweiz -Schweizer/FS -Schweizerfranken -Schweizergarde -Schwelger/FNS -Schwelgerei -Schwellenlnder -Schwellens -Schwellenspannung -Schwellenstrom -Schwellung/P -Schwellwert -Schwellwertschalter -Schwemmland/T -Schwenk/JS -Schwenkarm/EPS -Schwenkbewegung/P -Schwenkbreite -Schwenkdsen -Schwenkkrne/N -Schwenkkran -Schwenkriegel -Schwenkvorschub -Schwenkweite -Schwenkwinkel -Schwenkzylinder/N -Schwerarbeit/PR -Schwerarbeiter/FNS -Schwerathlet/P -Schwerathletik -Schwerefeld -Schwerflligkeit -Schwergewicht/EPST -Schwergewichtler/S -Schwergewichtsboxen -Schwergewichtsmeister -Schwerin/S -Schwerindustrie/N -Schwerindustriellen -Schwerkrfte/N -Schwerkraft -Schwerkriegsbeschdigte/N -Schwermaschinen -Schwermaschinenbau -Schwermetall/EPS -Schwermut/S -Schwerpunkt/EPT -Schwerpunktverschiebung/P -Schwerspat/EPS -Schwerstarbeit -Schwert/ERT -Schwertfisch/EPST -Schwertlilie -Schwerverbrecher/NS -Schwester/MN -Schwesterfirma -Schwesterfirmen -Schwesterkind/T -Schwesterkindern -Schwesterliebe -Schwesternorden/S -Schwesternschaft -Schwesternschiff/ET -Schwesternshne -Schwesternsohn -Schwesterntracht -Schwesterorganisation/P -Schwesterpartei -Schwesterschiff/EPT -Schwesterstadt -Schwiegereltern -Schwiegermtter/N -Schwiegermutter -Schwiegershne/N -Schwiegersohn/S -Schwiegertchter/N -Schwiegertochter -Schwiegervater/S -Schwiele/N -Schwierigkeit/P -Schwimmanstalt/P -Schwimmanzug/STp -Schwimmbder/N -Schwimmbad/T -Schwimmblase/N -Schwimmdock/S -Schwimmer/FNS -Schwimmflosse/N -Schwimmfu/Tp -Schwimmgrtel/NS -Schwimmhuter/N -Schwimmhaut -Schwimmkrokodil -Schwimmknsten -Schwimmkunst -Schwimmlehrer/S -Schwimmschler -Schwimmschule -Schwimmsport/EPS -Schwimmverband -Schwimmvgel/N -Schwimmvogel/S -Schwimmwart -Schwimmwesten -Schwindel/S -Schwindelanfall/Sp -Schwindelei/P -Schwindelfirma -Schwindelfirmen -Schwindelgesellschaft -Schwindler/FNS -Schwindsucht -Schwingachsen -Schwingens -Schwinger/NS -Schwingeradapter -Schwingeraufbau -Schwingerdurchmesser -Schwingerfu/Tp -Schwingerkrper -Schwingertrger/S -Schwingkreis/EPT -Schwingmetall -Schwingneigung -Schwingquarz/T -Schwingschleifer -Schwingung/P -Schwingungsbild -Schwingungsgrenze -Schwingungsperioden -Schwingungsverhalten -Schwingungsvorgngen -Schwingungszahl -Schwips/T -Schwitzbder -Schwitzbad/T -Schwitzksten -Schwitzkasten/S -Schwitzkur/P -Schwitzwasser -Schwitzwasserbildung -Schwre/GN -Schwulitt/P -Schwulst/G -Schwund/ST -Schwundausgleich/T -Schwundregelung/P -Schwung/S -Schwungfeder/N -Schwungkrfte/N -Schwungkraft -Schwungrder/N -Schwungrad/T -Schwur/S -Schwurgericht/PS -Sciencefiction -Scientology -Scratchpad/S -Screenshot/S -Script/EPS -Sebastian/S -Sechseck/EPST -Sechsen -Sechskant -Sechskantfhrung -Sechstagekrieg -Sechstagerennen/S -Sechstklssler/FNS -Sechszehntelnote -Sechszylinder -Sechzigerin/F -Sechzigers -Sediment/EPS -See/NS -Seeanemone -Seebder/N -Seebr/P -Seebad/T -Seebund -Seedienst/ET -Seefahrer/N -Seefahrt/P -Seefische -Seefischmarkt/T -Seeflugzeug/EPT -Seefracht/P -Seefunk/S -Seefunkpersonal/S -Seegang/S -Seegefecht/EPST -Seegrser -Seegruel -Seegras/T -Seegrundstck -Seehfen -Seehafen -Seehandel/S -Seeheld -Seeherrschaft/P -Seehotel -Seehunde/N -Seehundjger -Seehundsfell/EPS -Seeigel/NS -Seekadett -Seekarte/N -Seekrankheit -Seekrieg/EPS -Seekste/N -Seelachs/EPT -Seele/N -Seelenmter/N -Seelenamt/T -Seelendrogen -Seelenfreunde/NS -Seelenfrieden/S -Seelengre/N -Seelengter/N -Seelengut/T -Seelenheil/EPS -Seelenhirten -Seelenkunde/N -Seelenleben/S -Seelenleiden/S -Seelenmessen -Seelenpein -Seelenqual/P -Seelenruhe/N -Seelenstrke/N -Seelenwanderung/P -Seeleute -Seelilie -Seelwe/N -Seelwenart -Seelsorge/R -Seelsorger/NS -Seemchte/N -Seemnner -Seemacht -Seemann/T -Seemeile/N -Seeminen -Seemitte -Seemwe/N -Seen/I -Seenhe -Seenten -Seenot -Seeoffizier/EPS -Seepferdchen/S -Seeruber/NS -Seeruberei -Seerecht/PS -Seereise -Seerose/N -Seeschaden/S -Seeschiff/EPST -Seeschlacht -Seeschwalbe/N -Seespiegel -Seestdte/N -Seestadt -Seestern/PS -Seestreitkrfte -Seetang/EPS -Seetier/EPS -Seeufer -Seeungeheuer/S -Seeverkehr/S -Seevlkern -Seevolk/T -Seewarte/N -Seewasser/S -Seeweg/ET -Seewiesen -Seewind/EPST -Seezunge -Segel/S -Segelboot/EPST -Segelflche -Segelflieger/S -Segelflug/STp -Segelflugzeug/EPS -Segeljacht -Segelklasse/N -Segelklub/S -Segelpartien -Segelregatten -Segelschiff/EPST -Segelschlitten -Segelschulschiff -Segelsport/S -Segeltchern -Segeltuch/T -Segelwerk/EPST -Segen/S -Segenswnsche -Segenswunsch/T -Segler/FNS -Segment/EPST -Segmentanzeige -Segmentbogen -Segmentdarstellung -Segmentierung/P -Segnens -Segnung/P -Sehenswrdigkeit/P -Seher/FS -Seherblick/EPST -Sehergaben -Sehfehler/N -Sehfeld/R -Sehgewohnheit/P -Sehkrfte/N -Sehnerv/PS -Sehnschte/N -Sehnsucht -Sehpurpur -Sehrohr/EPS -Sehschrfe/N -Sehschlitz/EPT -Sehstrung -Sehvermgen/S -Sehweite -Sehzellen -Sehzentrum -Seichtheit/P -Seide -Seidel/S -Seidenbau/S -Seidenfden -Seidenfaden/S -Seidengarn/EPS -Seidenglanz/T -Seidenpapier/EPS -Seidenraupe/N -Seidenraupenzucht -Seidenspinnerei/P -Seidenstoff/PS -Seidenstrae/N -Seidenstrmpfe -Seidenstrumpf -Seifenbehlter/N -Seifenblase/N -Seifenfabrik -Seifenkistenlsung/P -Seifenkistenrennen/S -Seifenlaugen -Seifennpfe/N -Seifennapf/S -Seifenpulver/S -Seifenschaum/ST -Seifensieder/NS -Seifensiederei -Seifenwasser/S -Seiko -Seilbahn/P -Seiler/N -Seilhpfen -Seilpotentiometer/N -Seilpotis -Seils -Seilschaft/P -Seilschwebebahn -Seilspringen -Seiltnzer/FNS -Seilzug/STp -Seilzugpotentiometer -Seilzugpoti -Seilzupotentiometer -Seim/EPS -Seins -Seismograph/Pf -Seite/N -Seitenangriff/EPST -Seitenansicht/P -Seitenbewegung/P -Seitenblech -Seitenblick/EPT -Seiteneffekt/EPST -Seiteneffektanalyse/N -Seiteneingang/Sp -Seitenflgel/S -Seitengewehr/EPS -Seitengleis/ET -Seitenhieb/EPT -Seitenkosten -Seitenlnge/N -Seitenlehne/N -Seitenlinie/N -Seitennummerierung -Seitenrippen -Seitenschiff/EPS -Seitenschneider -Seitenschwimmen/S -Seitensprnge -Seitensprung/S -Seitenstechen -Seitenstrae/N -Seitenstck/PS -Seitentasche/N -Seitenteil/EPS -Seitentr/P -Seitenvorschub -Seitenwnde/N -Seitenwagen/S -Seitenwand -Seitenwechsel/NS -Seitenweg/EPST -Seitenwirkung/P -Seitenzahl -Seitwrtsbewegung -Sekante/N -Sekret/P -Sekretr/EFPS -Sekretariat/EPST -Sekretion/P -Sekt/EPST -Sektierer/NS -Sektion/P -Sektor/PS -Sektorenaufteilung -Sektorgrenze/N -Sektorbergang -Sekundraktion/P -Sekundrbewegung -Sekundrseite -Sekundant/P -Sekunde/N -Sekundenbruchteil/EPS -Sekundenschnelle -Sekundentakt -Sekundenzeiger/NS -Selbstndigkeit -Selbstanlasser/NS -Selbstanschluss/Tp -Selbstauflsung -Selbstaufopferung -Selbstaufzug -Selbstausschaltung/P -Selbstbau -Selbstbauexponat/EPST -Selbstbauhaus/Tp -Selbstbedienung/P -Selbstbedienungskomfort -Selbstbedienungsladen -Selbstbehauptung -Selbstbeherrschung -Selbstbekstigung -Selbstbeschrnkung -Selbstbeschuldigung/P -Selbstbesinnung -Selbstbestimmung -Selbstbestimmungsrecht -Selbstbeteiligung/P -Selbstbetrug/S -Selbstbewusstsein/S -Selbstbildnis/Qq -Selbstbiographie/N -Selbstblockierung -Selbstdarstellung -Selbstdetermination -Selbstdisziplin -Selbsteinschtzung/P -Selbstentfaltung -Selbstentladung -Selbstentzndung -Selbsterfahrung -Selbsterhaltung -Selbsterhaltungstrieb/EPT -Selbsterkenntnis/q -Selbsterniedrigung/P -Selbstfahrer/S -Selbstfinanzierung -Selbstgeflligkeit -Selbstgefhl/EPS -Selbstgesprch/EPS -Selbstherrscher/NS -Selbsthilfe -Selbsthilfeorganisation/P -Selbstinitialisierung -Selbstinitiative -Selbstinteresse -Selbstironie -Selbstjustiz -Selbstkontrolle -Selbstkorrektur/P -Selbstkostenpreis/EPT -Selbstkritik/P -Selbstlaut/EPST -Selbstmrder/S -Selbstmord/ET -Selbstmordstatistik -Selbstmordversuch -Selbstportrt/S -Selbstregierung -Selbstschuss/Tp -Selbstschussanlage -Selbstschutz/T -Selbstsicherheit -Selbststndigkeit -Selbstsucht -Selbsttuschung -Selbsttest -Selbsttestfunktion/P -Selbstberwindung/P -Selbstunterricht/T -Selbstverachtung -Selbstverantwortung -Selbstverlag/E -Selbstverleugnung/P -Selbstvernichtung -Selbstversorger/NS -Selbstversorgung -Selbstverstndlichkeit/P -Selbstverstndnis/Qq -Selbstversuche/N -Selbstverteidigung -Selbstvertrauen/S -Selbstverwaltung -Selbstverwirklichung/P -Selbstverwirklichungsmglichkeit -Selbstwhlbetrieb/EPST -Selbstwertgefhl/S -Selbstzensur -Selbstzerstrer -Selbstzerstrungstrieb -Selbstzndung/P -Selbstzucht -Selbstzufriedenheit -Selbstzweck/EPST -Selektion/P -Selektionsdruck/S -Selektionsmechanismen -Selektionsmethode/N -Selfmademan -Seligsprechung/P -Sellerie -Seltenheit/P -Seltenheitswert -Selterswasser/S -Seltsamkeit -Semantik/P -Semantikbeschreibung/P -Semantikdefinition/P -Semaphor/EPS -Semester/NS -Semesterbeginn/S -Semesterende/NS -Semesterferien -Semesterschluss/T -Semikolon/S -Seminar/EPS -Seminarist/FP -Seminarraum/STp -Semiotik -Semit/FP -Semmel/N -Senat/EPST -Senator/P -Senatsausschuss/Tp -Senatsbeschluss/Tp -Senatsdebatte -Senatsdirektor -Senatskanzlei -Senatssprecher/S -Sendbote/N -Sendeamplitude -Sendeanlagen -Sendebereich/EPS -Sendedaten -Sendediode -Sendeeinheit/P -Sendefolge/N -Sendegesellschaften -Sendeimpedanz -Sendeimpuls/EPT -Sendekpfe/N -Sendekopf/T -Sendekopfbau -Sendekopfbaureihen -Sendekopfseite -Sendeleiter/N -Sendeleitung -Sendemodus -Sendens -Sendeplne/N -Sendeplan -Sendeprogramm/EPS -Sender/NS -Senderaum/STp -Sendereihe/N -Sendergehuse -Sendergruppe/N -Sendernetz/EPT -Sendertotzeit -Sendesaal -Sendeschalter -Sendeschleife -Sendeschluss/Tp -Sendeseite -Sendesignal/E -Sendestation/P -Sendestelle/N -Sendestrom -Sendeteil/S -Sendeversuchen -Sendezeichen/S -Sendezeit/P -Sendung/P -Senegal -Senf/S -Senfgurken -Senfkrner/N -Senfkorn/T -Senfpflaster/N -Senftpfe/N -Senftopf/T -Senilitt -Senior/FPS -Senkbewegung -Senkblei -Senkel/NS -Senkens -Senker/NS -Senkfu/Tp -Senkfueinlage/N -Senkgrube/N -Senkkopfschrauben -Senkrechtstarter/NS -Senkschrauben -Senkung/P -Senkwaagen -Senner/FNS -Sennerei/P -Sennhtte/N -Sensation/P -Sensationslste/N -Sensationsmeldung/P -Sensationspresse -Sensibilisierens -Sensibilisierung/P -Sensibilitt/P -Sensitivitt -Sensor/PS -Sensorachse -Sensoranschluss/Tp -Sensoransteuerung -Sensorbeistellung -Sensorbelegung -Sensorbetrieb -Sensordaten -Sensordatenerfassung -Sensoreigenschaften -Sensoreingang/Sp -Sensorfamilie -Sensorflche -Sensorik -Sensorkabel/S -Sensorklassen -Sensorleitung -Sensorlieferung/P -Sensorlitzen -Sensormaske -Sensormeldung -Sensormembran/P -Sensormodul -Sensoroberflche -Sensorseite -Sensorsignal -Sensorssignal/S -Sensorsteuerung -Sensortechnik -Sensortyp/P -Sensorwechsel -Sensorwert/EPST -Sensorzuleitung/P -Sentenz/P -Sentiment/S -Sentimentalitt -Sentimentindikatoren -Seoul -Separatfrieden -Separation/P -Separatismen -Separatist/P -Separatistenbewegung -Separee/S -Sepp/S -Seppel -Sept -Sept. -September/S -Septemberhlfte -Septembertage/N -Sequenz/PR -Sequenzer/NS -Serbe/FN -Serbien -Seren -Serenade/N -Sergeant/PS -Serie/N -Serienbestckung -Serienfertigung -Serienherstellung/P -Serienlieferung -Seriennummer/N -Serienpreis/EPT -Serienproduktion/P -Serienprfung -Serienschwingkreis/EPT -Seriensensor -Seriensportwagen -Serienteile -Serienwagen -Serienwiderstand -Serife/N -Serisitt -Serpentine/N -Serum/S -Server/NS -Service/S -Serviceanforderung/P -Servicearbeit/P -Servicebesuch -Servicefahrt -Servicefall -Serviceindustrie/N -Serviceleistung/P -Servicemann -Servicemen -Servicepakete -Serviceschnittstelle -Servicewagen -Servierbrett/RS -Serviererin/F -Serviertassen -Serviertisch/EPT -Serviette/N -Serviettenring/PS -Servolenkung -Servomotor/PS -Sesam/S -Sesamstrae -Sessel/NS -Sesselbahn/P -Sessellift/EPT -Sesshaftigkeit -Session/P -Set/S -Setup/S -Setzdruck/S -Setzens -Setzer/NS -Setzerei -Setzksten -Setzkasten/S -Setzlinge/N -Setzmaschine/N -Setzreis/PT -Setzung/P -Setzwaagen -Seuche/N -Seuchenbekmpfung -Seuchenherd/EPST -Seufzer/NS -Seufzerbrcke -Severin -Sex/T -Sexappeal/S -Sexismus -Sexpuppe/N -Sextett/EPST -Sexualerziehung -Sexualitt -Sexualunterricht -Sexus -Seychellen -Sezessionskrieg -Seziermesser/N -Seor/ST -Seora/S -Seorita/S -Sh -Shakespeare/S -Shareware -Shell -Shellscript/S -Sheriff -Sherry/S -Shirley/S -Shogun -Shop/S -Shortstory/S -Show/S -Showbusiness -Showdown/S -Shrimp/S -Sibirier/NS -Sichel/N -Sicherheit/P -Sicherheitsabschtzung/P -Sicherheitsabschaltung -Sicherheitsabstand/ST -Sicherheitsanforderung/P -Sicherheitsarbeiten -Sicherheitsaspekt/EPST -Sicherheitsbeamte -Sicherheitsbedrohung -Sicherheitsbedrfnis/Qq -Sicherheitsbehrde/N -Sicherheitsbestimmung/P -Sicherheitsdienst -Sicherheitseigenschaft/P -Sicherheitsexperte/N -Sicherheitsfaktor/P -Sicherheitsforderung/P -Sicherheitsfrage/N -Sicherheitsfunktion/P -Sicherheitsgefhl -Sicherheitsgepck -Sicherheitsglsern -Sicherheitsglas/T -Sicherheitsgrad -Sicherheitsgrenze -Sicherheitsgrnde/N -Sicherheitsgurt/EPST -Sicherheitsinteresse/N -Sicherheitsklausel/N -Sicherheitskonferenz -Sicherheitskopie/N -Sicherheitskrfte -Sicherheitskriterien -Sicherheitsleistung/P -Sicherheitsleute -Sicherheitslcher/N -Sicherheitsloch/S -Sicherheitsmanahme/N -Sicherheitsnadel/N -Sicherheitsnetz/EPT -Sicherheitsorgane -Sicherheitspakt -Sicherheitspolitik -Sicherheitspolizisten -Sicherheitsrat/T -Sicherheitsredundanz -Sicherheitsrisiko -Sicherheitsschloss/T -Sicherheitsschuhe -Sicherheitssuche -Sicherheitssystem/EPS -Sicherheitsberlegung/P -Sicherheitsberprfung/P -Sicherheitsventil/EPS -Sicherheitsverschluss/Tp -Sicherheitsvorkehrung/P -Sicherheitsvorschrift/P -Sicherns -Sicherstellens -Sicherstellung/P -Sicherung/P -Sicherungsgruppe -Sicherungshalter/S -Sicherungsinformation/P -Sicherungskstchen -Sicherungskopie/N -Sicherungskreis/EPT -Sicherungslack -Sicherungsleitung/P -Sicherungsmechanismus -Sicherungsmodul/S -Sicherungsprotokollen -Sicherungssystem -Sicherungstechnik/P -Sicherungsbereignung -Sicherungsverwahrung/P -Sicht/G -Sichtbarkeit -Sichtbarmachen/JS -Sichtbeton/S -Sichtfeld/T -Sichtfelder -Sichtfenster -Sichtfolie -Sichtgert/EPS -Sichtkontrolle -Sichttratte/N -Sichtverhltnis/Qq -Sichtvermerk/EPST -Sichtwechsel/S -Sichtweise/N -Sichtweite/N -Sichtwinkel -Sickerwasser/S -Sieb/ST -Siebdruck -Siebenbrgen -Siebengebirge -Siebenjahresplan -Siebenlinge -Siebenmeilenstiefel/S -Siebensachen -Siebenschlfer/S -Siebkondensator/P -Siebmodul/E -Siebtklssler/FNS -Siebzigerin/F -Siebzigers -Siechtum -Siedegrad/EPST -Siedekessel/NS -Siedelns -Siedepunkt/EPST -Sieder/NS -Siedler/NS -Siedlung/P -Siedlungsgebiete -Siedlungsgesellschaft/P -Sieg/RS -Siegel/S -Siegellack -Siegelring/EPS -Sieger/FNS -Siegerliste -Siegermchte/N -Siegerurkunde/N -Siegesdenkmler/N -Siegesdenkmal -Siegesgttin -Siegesmarsch -Siegessule -Siegestor -Siegeszeichen/S -Siegeszug/STp -Siegfried/S -Siegprmien -Siegtreffer -Siel/EPS -Siemens -Siemensgert -Siemensnetzteil/P -Siesta -Sigi/S -Sigmund/S -Signal/EPS -Signaladern -Signalamplitude -Signalanalyse -Signalanschluss/Tp -Signalausgang -Signalflagge/N -Signalfluss/Tp -Signalfunktion/P -Signalgeber -Signalhrnern -Signalhorn/S -Signalhupe -Signalinterferenzen -Signalkabel -Signallaufzeit -Signalmuster -Signalnamen -Signalpegel -Signalprozessor -Signalspannung -Signalsysteme -Signaluntergrund -Signalverarbeitung -Signalverbindung/P -Signalwege -Signalwirkung -Signatur/P -Signet/S -Signifikanz -Sigrid/S -Sigrun/S -Silbe/NR -Silbentrennprogramm -Silbentrennung/P -Silber/S -Silberanteil -Silberbearbeitung -Silberbestnde -Silberdollar/S -Silbergeld/T -Silbergeschirr -Silberkontrakt -Silberlieferant -Silbermedaille/N -Silbermnzen -Silberpapier/S -Silberpappel/N -Silberpreise/S -Silberproduktion -Silberschmied/EPS -Silberstandard -Silberstreifen/S -Silbervorrte -Silberwhrung/P -Silberwarenindustrie -Silberzeug/S -Silhouette/N -Silikat/S -Silikon/S -Silikoncoating -Silikonfugen -Silikongummi -Silikonnaht -Silikonschicht -Silikonverguss/Tp -Silikonverklebung -Silikose/N -Silizium/S -Silke/S -Silo/S -Silofutter/S -Silvester/S -Silvesterabend -Silvesterempfang -Silvesterstimmung -Simbabwe -Simon/S -Simplex -Sims/EPT -Simse/GNS -Simsen/GW -Simulant/FP -Simulation/P -Simulationsanlage -Simulationsaufbau -Simulationseinheit/P -Simulationslauf/Sp -Simulationsmethode -Simulationsprogramm -Simulationsstreb -Simulationstest/S -Simulationswand -Simulator/P -Simultanwettkampf -Sinai -Sinalco -Sinatra/S -Sindelfingen/S -Sinfonie/N -Sinfoniekonzert/E -Singapur -Singdrossel/N -Singsang/S -Singspiel/EPST -Singstimme -Singular/S -Singvgel -Singvogel/S -Sinn/ST -Sinnbeziehung -Sinnbezug/STp -Sinnbild/RT -Sinnenfeindlichkeit -Sinnenlste -Sinnenlust -Sinnenrusche/N -Sinnenrausch -Sinnentaumel/NS -Sinnesnderung/P -Sinnesart -Sinneserfahrung -Sinnesorgan/EPS -Sinnestuschung -Sinneswandel -Sinnfrage/N -Sinngedicht/EPST -Sinnhaftigkeit -Sinnlichkeit -Sinnlosigkeit -Sinnsprche/N -Sinnspruch/S -Sinter/S -Sintflut/P -Sinus -Sinuskurve/N -Siphon/S -Sippe/N -Sippenforschung -Sir -Sirene/N -Sirius -Sirup/S -Sisyphusarbeit -Sitte/N -Sittenbild/T -Sittenbildern -Sittengemlde/S -Sittengeschichte -Sittengesetz/EPT -Sittenlehre -Sittenlosigkeit/P -Sittenpolizei -Sittenprediger/NS -Sittenrichter/S -Sittenstrolch/E -Sittenverderbnis/q -Sittich/EPS -Sittlichkeit -Sittlichkeitsverbrechen -Sittlichkeitsverbrecher -Sittsamkeit -Situation/P -Situationskomik/P -Sitz/JT -Sitzarbeit/P -Sitzbder -Sitzbad/T -Sitzfleisch -Sitzgelegenheit/P -Sitzordnung -Sitzpltze/N -Sitzplatz -Sitzstreik/EST -Sitzungsbericht/ET -Sitzungspause -Sitzungsperiode -Sitzungssle/N -Sitzungssaal -Sitzungsteilnehmer -Sitzungszimmer -Sizilianer/FNS -Sizilien -Skagerrak -Skala -Skalen -Skalenfaktoren -Skalenteile -Skalenwert -Skalierbarkeit -Skalierens -Skalierfaktor/S -Skalierung/P -Skalierungsdivisor -Skalierungsfaktor -Skalierungstabelle -Skalp/S -Skalpell -Skandlchen/S -Skandal/EPS -Skandalbltter/N -Skandalblatt -Skandalpresse -Skandinavien/S -Skandinavier/FNS -Skat/S -Skatbrder -Skeleton/S -Skelett/EPT -Skepsis -Skeptiker/NS -Sketch/EPT -Sketsch/EPT -Ski/S -Skiabfahrt -Skianzug/Sp -Skidress/ET -Skier -Skifahren -Skifahrer/FN -Skigebiet -Skihose/N -Skikleid -Skikurse -Skilufer/FNS -Skilift/EPS -Skinhead -Skiort -Skipass/Tp -Skipiste/N -Skirennen/S -Skisaison -Skispringen/S -Skispringer/FNS -Skiverband/T -Skiwettbewerbe -Skizze/N -Skizzenbcher/N -Skizzenbuch/T -Sklave/FN -Sklavendienst/EPST -Sklavenhndler/NS -Sklavenhaltung -Sklavenhandel -Sklaverei/P -Skoliose/N -Skonti -Skonto -Skontoabzug/STp -Skopje -Skorbut/S -Skorpion/EPS -Skript/PST -Skrupel/NS -Skulptur/P -Skulpturenabteilung -Skylla -Slalom/S -Slawe/FN -Slawenkongress/EPT -Slip/S -Slogan/S -Slot/S -Slotnummer/N -Slowake/FN -Slowakei -Slowenen -Slowenien/S -Slum/S -Smalltalk -Smaragd/EPST -Smog -Smoking -Smolensk -Smyrna -Snackbar -Snob/S -Sldling/EPS -Sldner/N -Sldneraufstand -Sller/NS -Socke/N -Sockel/NS -Sockenhalter/NS -Socket/SW -Soda/S -Sodawasser/S -Sodbrennen/S -Sodom -Sodomie -Sofa/S -Sofakissen/S -Sofia -Sofortbild -Soforthilfen -Sofortmanahme/N -Softdrink/S -Softeis/T -Softkey -Softporno -Software -Softwarenderung/P -Softwareabteilung/P -Softwareadaption/P -Softwareanforderung/P -Softwareanpassung/P -Softwareansatz/T -Softwareanschluss/Tp -Softwareanteil/EPS -Softwarearbeit/P -Softwareaufwand/S -Softwareauslieferung/P -Softwarebeschreibung/P -Softwarebestellung/P -Softwarebezeichnung/P -Softwareentwicklung/P -Softwareentwicklungssystem/EPS -Softwareerarbeitungszeit -Softwareerweiterung/P -Softwarefreigabebaustein/E -Softwarefreigabemodul/E -Softwaregigant/P -Softwaregrundkosten -Softwareinbetriebnahme -Softwareinterface -Softwarekey/S -Softwarekomponente/N -Softwarekonzern/E -Softwarekopierfreigabe -Softwarekorrektheit -Softwarekosten -Softwareleute -Softwarelieferung -Softwarelisting/S -Softwarelsung/P -Softwaremechanismen -Softwaremodifikation/P -Softwaremodul/EPS -Softwarepaket/EPS -Softwarepauschale -Softwarepirat/P -Softwareplattform/P -Softwarepreis/E -Softwareproblem/ES -Softwareprodukt/EP -Softwareprotokoll/EP -Softwareprfung/P -Softwareschutz -Softwareseite -Softwaresimulation/P -Softwaresystem/EPS -Softwareteil/EP -Softwaretestmethode/N -Softwaretreiber/N -Softwareverbesserung/P -Softwareverifikation/P -Softwareversion/P -Softwarewartung -Softwarewerkzeuge -Soge/S -Sogs -Sogwirkung/P -Sohle/N -Sohlenbreite -Sohlenhhe -Sohlenleder/NS -Sohlenniveau/S -Sohn/EST -Sohnemann -Sojabohne/N -Sojaschrot -Sokrates -Solarien -Solaris -Solarium/S -Solaruhr -Solarzelle -Sold/EPST -Soldat/P -Soldatenfriedhfe -Soldatenfriedhof -Soldatenkaiser -Soldbcher/N -Soldbuch -Soldeinsparung -Soldquellen -Sole -Solei/RS -Solidarbrgschaft -Solidarisierens -Solidarisierung/P -Solidaritt/P -Solidarittsbewegung -Solidarittsminister -Solidarittspartei -Solidarittsuntergruppe -Solidarittszwecke -Soliditt/P -Solist/PW -Solitr/EPS -Sollbestnde/N -Sollbestand -Sollbruchstelle/N -Sollkurve -Sollkurvensteuerung -Sollma/EPT -Sollmenge/N -Sollprofil -Sollstrke/N -Sollwert/EPST -Sollzustand/ST -Solo/NS -Solon/S -Solostimme/N -Solotnzer/FNS -Solvenz/P -Somalia -Somaliland -Sommer/NS -Sommeraufenthalt/ET -Sommerblume -Sommerfden -Sommerferien -Sommerferienkurse -Sommerfest -Sommerflugplan/T -Sommerfrische/N -Sommerfrischler/NS -Sommerfrost -Sommerhaus/Tp -Sommerkleid/J -Sommermonate/N -Sommernachtstraum/ST -Sommerprogramm -Sommerresidenz -Sommersachen -Sommerschlussverkauf/Sp -Sommersemester/NS -Sommersonne -Sommersprosse -Sommertag/EPS -Sommerurlaub -Sommerzeit -Sonate/N -Sonde/N -Sonderabdrcke/N -Sonderabdruck/S -Sonderabnehmer -Sonderabschreibung -Sonderabteilung -Sonderanfertigung/P -Sonderangebot/EPST -Sonderauftrag/STp -Sonderausbildung/P -Sonderausfhrung -Sonderausgabe/N -Sonderausschuss/Tp -Sonderausstattung -Sonderausstellung -Sonderbeauftragte/NR -Sonderbedingung/P -Sonderbehandlung/P -Sonderbeilage -Sonderbelastung/P -Sonderbericht -Sonderberichterstatter/S -Sonderbevollmchtigte/N -Sonderbewegung/P -Sonderbotschafter -Sonderbuchstaben -Sonderdruck/EPS -Sonderdruckwerke -Sondererlaubnis/q -Sonderfahrzeuge -Sonderfall/Sp -Sonderflug/Sp -Sonderfrieden/S -Sonderfunktion/P -Sondergenehmigung -Sonderheft -Sonderheit/P -Sonderinteresse/N -Sonderkabel -Sonderkapselung -Sonderklassen -Sonderkonferenz -Sonderkonto -Sonderlackierung -Sonderlager -Sonderling/EPS -Sonderlombarde -Sondermanahme/N -Sondermaschine -Sondermeldung/P -Sondernummer -Sonderpostamt -Sonderprmie/N -Sonderpreis/EPT -Sonderproblem/EPS -Sonderprospekt -Sonderrabatt -Sonderrecht/EPS -Sonderregelung -Sonderreglung -Sonderreport/S -Sonderschauen -Sondersensoren -Sondersensorik -Sondersituation/P -Sondersitzung/P -Sonderstatus -Sonderstellung/P -Sondersteuer -Sondertelegramm -Sonderurlaub -Sonderveranstaltung/P -Sondervereinbarung/P -Sonderverhltnis/Qq -Sonderversion/P -Sonderwaffenstillstand -Sonderweg/EPST -Sonderwnsche/N -Sonderzeichen/S -Sonderzeichensatz -Sonderziehungsrechte/N -Sonderzug/STp -Sonderzulage -Sondierens -Sondierung/P -Sondierungsauftrag/STp -Sondierungsgesprche -Sonett/EPST -Song/S -Sonnabend/EP -Sonnabendmorgen -Sonnabendvormittag -Sonnenaktivitt -Sonnenallee -Sonnenaufgang/Sp -Sonnenbder -Sonnenbad/T -Sonnenbalkon -Sonnenbestrahlung -Sonnenblende/N -Sonnenblumen -Sonnenbrnde/N -Sonnenbrand/T -Sonnenbrille/N -Sonnendchern -Sonnendach/S -Sonneneinstrahlung -Sonnenenergien -Sonneneruption/P -Sonnenfinsternis/q -Sonnenfleck/EPS -Sonnenfleckenzahl -Sonnenjahr/EPST -Sonnenkste -Sonnenkult -Sonnenlicht/S -Sonnenschein -Sonnenscheinblase -Sonnenschirm/EPS -Sonnensegel/NS -Sonnenseiten -Sonnenstich/EPS -Sonnenstrahl/P -Sonnensystem/EPS -Sonnentage -Sonnenterrasse -Sonnentor -Sonnenuhren -Sonnenuntergang/Sp -Sonnenvogel -Sonnenwende/N -Sonntag/P -Sonntagabend/EPS -Sonntagnachmittag -Sonntagsanzug/STp -Sonntagsausflgler/FNS -Sonntagsblatt -Sonntagsfahrer/FNS -Sonntagsfahrkarte -Sonntagsfahrverbot/E -Sonntagsjger/S -Sonntagskind/T -Sonntagskinder -Sonntagskonzert -Sonntagsmaler/S -Sonntagsruhe/N -Sonntagsschulen -Sonntagszeitung -Sonnwendfeier -Sony -Sophia/S -Sophie/S -Sophist/FP -Sophisterei/P -Sophokles -Sopran/EPS -Sopranist/FP -Sorbe/N -Sorgenkind/RT -Sorgepflicht -Sorgfalt -Sorgfaltspflicht/P -Sorglosigkeit/P -Sorte/N -Sortierbegriff/T -Sortierens -Sortierung/P -Sortiment/EPST -Sortimentsbuchhndler/FNS -Soe/N -Soufflee/S -Souffleur/EPS -Souffleurksten -Souffleurkasten -Souffleuse/N -Souffl/S -Soundkarte/N -Sourcecode/S -Souterrain/S -Souvenir/S -Souvernitt/P -Souvernittsansprche/N -Souvernittsverzicht/S -Souverns -Soweto -Sowjet/S -Sowjetangriff -Sowjetarmee -Sowjetartillerie -Sowjetfhrung -Sowjetimperium/S -Sowjetisierung -Sowjetkommissar -Sowjetmenschen -Sowjetoffensive -Sowjetpanzer -Sowjetregierung -Sowjetrepublik/P -Sowjetrusse/N -Sowjetrussland -Sowjetstern -Sowjetsystems -Sowjettruppen -Sowjetunion -Sowjetverteidigung -Sowjetvolk -Sowjetzone -Sozialmter/N -Sozialabgaben -Sozialamt/T -Sozialarbeiter/FNS -Sozialaufwand -Sozialausgaben -Sozialausschuss/Tp -Sozialbeitrag/STp -Sozialbereich -Sozialbericht -Sozialdarwinismus -Sozialdemokrat/P -Sozialdemokratie -Sozialeinrichtung/P -Sozialexperten -Sozialgebhren -Sozialhilfe -Sozialhilfeempfnger -Sozialisation/P -Sozialisierung -Sozialismus -Sozialist/FP -Sozialistenfhrer -Sozialistengesetze -Sozialklausel -Soziallasten -Sozialleistung/P -Soziallisten -Sozialministerium/S -Sozialordnung -Sozialpdagogik -Sozialphilosophie -Sozialpolitik -Sozialpolitiker -Sozialprodukt/T -Sozialprogramm/E -Sozialraum/STp -Sozialrecht -Sozialreform -Sozialstaat/T -Sozialstruktur -Sozialtarife -Sozialuntersttzung -Sozialversicherung -Sozialversicherungsnummer/N -Sozialwissenschaft -Sozialwissenschaftler/NS -Soziett -Soziologe/FN -Soziologentag -Soziologie -Sozius -Soziusfahrer/NS -Soziussitz/P -Spher/FNS -Sphtrupp/S -Sphwagen/S -Spne/N -Sprlichkeit -Spe/N -Sptherbst/EPST -Sptkapitalismus -Sptling/EPS -Sptobst/T -Sptsommer/NS -Sptzle -Spachtel/S -Spachtelmassen -Spagat/EPS -Spagetti -Spaghetti -Spalier/EPS -Spalierbaum/STp -Spalierobst -Spalt/JS -Spaltabdeckung -Spaltabdeckungssensor -Spaltenbreite -Spaltenformatierung -Spaltenmodus -Spaltenpilz/EPT -Spaltungsprozess/EPT -Span/S -Spandau -Spanien/S -Spanier/FNS -Spannbeton/S -Spanndrhte/N -Spanndraht/S -Spannens -Spannfeder/N -Spannfutter/S -Spannkrfte/N -Spannrad -Spanns/G -Spannung/P -Spannungsabfall -Spannungsabweichung/P -Spannungsamplitude -Spannungsanschluss/Tp -Spannungsausgang/Sp -Spannungsbereich -Spannungseingnge -Spannungseingang -Spannungseinspeisung -Spannungsfeld/RS -Spannungsgewinn -Spannungshub -Spannungsmessgeber -Spannungsmessung/P -Spannungspegeln -Spannungspulse -Spannungsregler/NS -Spannungsschnittstelle -Spannungssensoren -Spannungssignal -Spannungsspitzen -Spannungsteiler -Spannungsteilung -Spannungsberschreitung -Spannungsverhltnis/Qq -Spannungsversorgung -Spannungswert/EPST -Spannungszufhrung -Spannweite/N -Spannwirbel/N -Spannzylinder -Spant/PW -Sparbcher/N -Sparbchsen -Sparbuch/S -Spareinlage/N -Sparer/NS -Sparexperten -Spargel/N -Spargelder -Sparguthaben/S -Sparkapitalbildung -Sparkasse/N -Sparkasseninstituten -Sparkassenverband -Sparkassenzins/T -Sparkommissar -Sparkonten -Sparkonto/S -Sparmanahme/N -Sparpfennig/EPS -Sparplne/N -Sparprmien -Sparprogramm/S -Sparquote/N -Sparre/N -Sparsamkeit -Sparschema -Sparschrift -Sparschwein -Sparta -Spartakus -Sparzulage -Spa/T -Spamacher/NS -Spaverderber/N -Spavgel/N -Spavogel/S -Spastik/R -Spatel/N -Spaten/S -Spatenstiche -Spatz/PT -Spazierfahrt/P -Spaziergngen -Spaziergnger/N -Spaziergang/S -Spazierstcke -Spazierstock/ST -Spazierweg/EPST -Specht/EPS -Speck -Speckschnitte/N -Speckschwarte -Speckseite/N -Speckstein/PS -Spediteur/FS -Spedition/P -Speditionsgeschfte/NS -Speer/EPS -Speerwurf -Speiche/NR -Speichel/S -Speicheldrsen -Speichelfluss/Tp -Speichelleckerei/P -Speichelleckern -Speicher/JS -Speicheranforderung/P -Speicheranwendung/P -Speicherausbau -Speicherbausteine/N -Speicherbedarf/S -Speicherbereich/EPS -Speicherbereinigung -Speicherbereinigungsverfahren/S -Speicherchip/S -Speicherdrossel -Speichereffizienz -Speicherelemente -Speichererhaltungsakku -Speichererweiterung/P -Speicherfehler -Speicherinhalt/P -Speicherkapazitt/P -Speicherkarte/N -Speicherkartenfehler -Speichermangel -Speichermedium -Speicherkonomie -Speicherpltze/N -Speicherplatz/T -Speicherplatzbedarf -Speicherplatzverwaltung -Speicherraum/STp -Speicherrichtung -Speicherschutz -Speicherschutzfunktionen -Speicherschutzzeiten -Speicherstelle/N -Speicherverwaltung -Speicherverwaltungsalgorithmen -Speicherverwaltungssystem/EPS -Speicherverwaltungsverfahren/S -Speicherzelle/N -Speisebrei -Speiseeis/T -Speisefett -Speisehaus/Tp -Speisekammer/N -Speisekarte -Speisekartoffeln -Speiseleitung/P -Speisenfolge/N -Speisenliste -Speisennummer -Speisens -Speisel/PS -Speiseraum/STp -Speiserhre/N -Speiserohr/ES -Speisesften -Speisesle/N -Speisesaal/S -Speisesaft/S -Speiseschrnken -Speiseschrank/S -Speisespannung -Speisewagengesellschaft -Speiseweg -Speisezettel/S -Speisezimmer/N -Speisung/P -Spektakel/S -Spektralanalyse/N -Spektralbereich -Spektren -Spektrometer/NS -Spektroskopie -Spektrum/S -Spekulant/P -Spekulantenbibel -Spekulantenecke -Spekulation/P -Spekulationsaktivitten -Spekulationseinfluss/Tp -Spekulationseinsatz -Spekulationsfieber -Spekulationsformen -Spekulationsgelegenheit/P -Spekulationsgeschft/EPS -Spekulationsgier -Spekulationshausse -Spekulationshunger -Spekulationskapital -Spekulationsobjekte -Spekulationsorgien -Spekulationstipp/S -Spekulationswelle/N -Spekulationsziel -Spendenkonten -Spendenquittung -Spender/FNS -Spengler/N -Spenglermeister/NS -Sperber/S -Sperling/EPS -Sperma/S -Spermien -Sperrballon/EPS -Sperrdepot -Sperrens -Sperrfeuer/N -Sperrfunktion/P -Sperrgebiet/EPST -Sperrgter/N -Sperrgut -Sperrhhne/N -Sperrhahn/S -Sperrhaken -Sperrhlzer -Sperrholz/T -Sperrkonten -Sperrkonto/S -Sperrkreis/ET -Sperrliste -Sperrminoritt/P -Sperrmll -Sperrrder/N -Sperrrad -Sperrriegel/S -Sperrschalter -Sperrung/P -Sperrvermerk/EPS -Sperrvertrag/STp -Sperrwirkung/P -Sperrzllen -Sperrzoll/S -Sperrzonen -Spesen -Spesenbelastung -Spesenkonten -Spesenkonto/S -Spesenrechnung/P -Spesenstze -Spessart -Spezerei/P -Spezereiware/N -Spezi/T -Spezialrzte/FN -Spezialanwendung/P -Spezialarzt/T -Spezialausbildung/P -Spezialausgabe -Spezialdisziplin -Spezialeinheit/P -Spezialentwicklung/P -Spezialerfahrung/P -Spezialfcher -Spezialfach/S -Spezialfall/STp -Spezialfunktion/P -Spezialgebiet/EPST -Spezialgerte/N -Spezialgeschft/EPS -Spezialhaus/Tp -Spezialisierens -Spezialisierung/P -Spezialist/FP -Spezialistenrunde -Spezialistentum/S -Spezialitt/P -Spezialklemmenmodul -Spezialmarkt/STp -Spezialmaschine/N -Spezialmesse -Spezialpapiere -Spezialrelais -Spezialschaltung/P -Spezialsoftware -Spezialsprunglauf/Sp -Spezialsthle -Spezialstrecke -Spezialunternehmen -Spezialverfahren -Spezialversion/P -Spezialvertrieb -Spezialwerte -Spezifika -Spezifikation/P -Spezifikationspapier -Spezifikationssprache/N -Spezifikationstechnik/P -Spezifikum/S -Spezifizierens -Spezifizierung/P -Sphre/N -Sphinx -Spickaal/EPS -Spiegel/J -Spiegelbild/RT -Spiegeleier -Spiegelflchen -Spiegelglser/N -Spiegelglas/T -Spiegelns -Spiegelreflexkamera/S -Spiegelschrift/P -Spiel/MRST -Spielanzug/STp -Spielart/P -Spielausschuss/Tp -Spielball/Sp -Spielbank/P -Spielbankprozess/EPT -Spielbaum/STp -Spielbeginn -Spieldose/N -Spielens -Spieler/FNS -Spielerei/P -Spielergebnis/Qq -Spielfeld/R -Spielfilm/EPS -Spielfolge/N -Spielfreude -Spielfhrer/N -Spielgefhrte/N -Spielgeld/T -Spielgeldern -Spielhlfte -Spielhllen -Spielkamerad/FP -Spielkarte/N -Spielkasino/S -Spiellaune -Spielleiter/S -Spiellust -Spielmnner -Spielmann/S -Spielmarke -Spielminuten -Spielpartner -Spielphase -Spielplne -Spielpltzen -Spielplan/S -Spielplatz/T -Spielraum/STp -Spielregel/N -Spielsachen -Spielschluss/Tp -Spielschuld -Spielschule/N -Spielsonntag -Spieltag/ES -Spieltisch/EPST -Spieltrieb/S -Spieluhren -Spielverderber/FNS -Spielverlngerung -Spielwaren -Spielwarenhndler/FNS -Spielwarenhandlung -Spielwarenindustrie -Spielwarenmesse -Spielweise -Spielzeit/P -Spielzeug/EPS -Spielzug/Sp -Spie/T -Spiebrger/N -Spiebrgertum/S -Spiegeselle/N -Spike/S -Spin/S -Spinat -Spind/PT -Spindel/N -Spinett/EPS -Spinnengewebe/S -Spinner/FNS -Spinnerei/P -Spinnmaschine/N -Spinnrdern -Spinnrad/T -Spinnwebe/N -Spion/EFPS -Spionage -Spionageabwehr -Spionageaffren -Spionagebehrde -Spionagefilm -Spionagering -Spionageschiffe -Spirale/N -Spiralfedern -Spiralnebel -Spiritismus -Spiritist/FP -Spirituosen -Spirituosengeschft -Spirituosenhersteller -Spiritus -Spirituskocher/NS -Spitler/N -Spital -Spitzbrte/N -Spitzbuche/N -Spitzbart -Spitzbauch/S -Spitzbogen -Spitzbberei/P -Spitzbub/EP -Spitzbubenstreiche/NS -Spitzel/S -Spitzenbelastung/P -Spitzenbewertung/P -Spitzendrehbnken -Spitzendrehbank -Spitzenerfolg/EPS -Spitzengeschwindigkeit/P -Spitzengremien -Spitzengruppe/N -Spitzenhubchen -Spitzenhschen -Spitzenkandidat -Spitzenkaufmann -Spitzenklasse/N -Spitzenkleid/RT -Spitzenkurse -Spitzenlast/P -Spitzenleistung/P -Spitzenlhne/N -Spitzenlohn -Spitzenmanager/NS -Spitzenmannschaft -Spitzenmengen -Spitzenmodelle -Spitzenpapiere -Spitzenpolitiker -Spitzenpreis/EPT -Spitzenprodukten -Spitzenreiter/FNS -Spitzenspieler -Spitzensport -Spitzensportler -Spitzenstellung/P -Spitzenstrom -Spitzenturner -Spitzenverband/T -Spitzenwert/EPST -Spitzenzahl -Spitzfindigkeit/P -Spitzhacke/N -Spitzmusen -Spitzmaus -Spitzname/N -Spitznamen/S -Spleen/S -Splint/EPS -Splitt/S -Splitter/S -Splittergruppe -Splitterpartei/P -Spttelei/P -Sptter/FNS -Sptterei/P -Sponsor/P -Spontaneitt -Spontanreaktion/P -Spooler -Spooling -Sporen/I -Sporn/S -Spornrdchen/S -Sport/S -Sportabzeichen -Sportangler -Sportanlagen -Sportanzug/STp -Sportart/P -Sportartikel/NS -Sportausschuss/Tp -Sportbekleidung -Sportbericht/EPS -Sportbewegung -Sportbund -Sportclub -Sportcoupe -Sportfelgen -Sportfest/EPS -Sportflieger -Sportflugzeug/PS -Sportfrderung -Sportfreund/FPS -Sportgericht -Sportgeschft/ET -Sporthalle/N -Sporthemd/PST -Sporthochschule -Sportjacke/N -Sportjournalist -Sportkleidung/P -Sportklub -Sportkontakte -Sportkurse -Sportlehrer/FNS -Sportler/FNS -Sportleraustausch -Sportmannschaften -Sportmaschine -Sportminister -Sportnachrichten -Sportorganisation/P -Sportpalastrede -Sportpltzen -Sportplatz/T -Sportprogramm -Sportschuh/PS -Sportschule -Sportsleute -Sportsmnner/N -Sportsmann/S -Sportstar/S -Sportstudio/S -Sporttasche -Sportveranstaltung/P -Sportverkehr/S -Sportwagen/S -Sportzeitung/P -Sportzentrum -Spott/ST -Spottbild/RT -Spottgedicht/EPST -Spottgelchter/NS -Spottgeld/RT -Spottlied/T -Spottlieder -Spottlsten -Spottlust -Spottname -Spottpreis/EPT -Spottschrift/P -Sprachbeschreibung/P -Sprachbestandteil/EPS -Sprachbetrachtung -Sprachdefinition/P -Sprachdesign/S -Sprache -Spracheigenheit -Spracheigenschaft/P -Spracheingabe -Sprachelement/EPST -Spracherweiterung/P -Sprachfamilie/N -Sprachfehler/NS -Sprachferien -Sprachforschung/P -Sprachfhrer/NS -Sprachgebiet/PT -Sprachgebrauch/S -Sprachgefhl/EPS -Sprachgruppen -Sprachkenner/N -Sprachkenntnis/q -Sprachkern -Sprachkonstrukt/EPS -Sprachlabor/EPS -Sprachlehre/NR -Sprachlehrer/FNS -Sprachmittler/NS -Sprachraum/STp -Sprachregeln -Sprachregelung/P -Sprachreiniger/S -Sprachrohr/EPS -Sprachschatz/T -Sprachschule/N -Sprachstrung/P -Sprachstudium/S -Sprachbersetzung -Sprachbersetzungshilfe -Sprachumfang/S -Sprachumgebung -Sprachunterricht/PS -Sprachverhalten/S -Sprachverstndnis/Qq -Sprachverwilderung -Sprachwerkzeug/EPS -Sprachwissenschaft/P -Sprachwissenschaftler/NS -Sprechanlage -Sprechart/P -Sprechchre -Sprechchor/EPS -Sprecher/FNS -Sprechfrequenz/P -Sprechfunk/S -Sprechpause/N -Sprechplatte -Sprechprobe/N -Sprechsilbe/N -Sprechstunde/N -Sprechstundenhilfe -Sprechtaste/N -Sprechbung/P -Sprechweise/N -Sprechzimmer/NS -Spreizens -Spreizfu/Tp -Spreizung/P -Sprengarbeiten -Sprengbombe/N -Sprengel/NS -Sprengens -Sprenggeschoss/EPT -Sprengkapseln -Sprengkpfe -Sprengkrper/NS -Sprengkommando/S -Sprengkopf/T -Sprengkraft -Sprengladung/P -Sprenglcher -Sprengloch -Sprengmeister -Sprengring/EPS -Sprengstze/N -Sprengsatz/T -Sprengschuss/Tp -Sprengstoff/EPST -Sprengstoffanschlag/STp -Sprengstoffbesitz -Sprengstoffprozess/EPT -Sprengung/P -Sprengwirkung/P -Sprengwolke -Spreu -Sprichwrter/N -Sprichwort/S -Springbrunnen/S -Springer/FNS -Springfluten -Springpferd -Springquell/P -Springreiten -Springseil/PS -Springturnier -Sprint/RS -Sprinter/FNS -Sprit/S -Spritzenhaus/Tp -Spritzer/NS -Spritzfahrt -Spritzflakon/S -Spritzguss/Tp -Spritzgussformen -Spritzgussteil -Spritzlack -Spritzpistole/N -Spritztour -Spritzwasser -Sprssling/EPS -Sprosse/S -Sprche/N -Sprhkleber -Sprhregen -Sprnge/N -Spruch/S -Spruchbnder/N -Spruchband -Spruchkammer -Sprudel -Sprudelflaschen -Sprudelflascheneffekt -Sprudelwasser -Sprung/ST -Sprungadresse/N -Sprungbefehl/S -Sprungbein/PS -Sprungbrett/S -Sprungbrettern -Sprungfedermatratze/N -Sprungfedern -Sprungfunktion/P -Sprunglauf/Sp -Sprungschanze/N -Sprungtabelle/N -Sprungtrme -Sprungturm/S -Sprungweite -Sprungziel/EPS -Splkche -Spllappen/S -Splstein/EPS -Splung/P -Splwasser/NS -Sprgert -Sprhund/EPST -Sprnase/N -Sprsinn/EPS -Spucknpfen -Spucknapf/S -Spuk/S -Spukgeschichte -Spukschloss/T -Spulenimpedanz -Spulwrmer -Spulwurm/S -Spur/P -Spurenelement/EPST -Spurenverwischen/S -Spurt/SW -Spurverlauf/Sp -Sputnik/S -Srebrenica -Sri -St -St. -StGB -StVO -Stbe/N -Stdte/MNR -Stdteansichten -Stdtebaugesetz -Stdtebauinstitut -Stdtebaus -Stdtefreiheit -Stdter/FNS -Stdtetag -Stdteversammlung -Stdtewesen/S -Stdtezug/STp -Stmme/N -Stnde/MNR -Stndeorganisation/P -Stnder/NS -Stndewesen/S -Stngel/NS -Stnker/S -Stnkerei/P -Strkegrad -Strkemehl/S -Strkens -Strkung/P -Strkungsmittel/S -Sttte/N -Staat/EPST -Staatenbnde/N -Staatenbund -Staatenexplosion -Staatengemeinschaft -Staatengrndung -Staatenverband -Staatenverbund -Staatlichkeit -Staatsakt/E -Staatsaktion/P -Staatsangehrige/NR -Staatsangehrigkeit -Staatsangelegenheit -Staatsanleihe/N -Staatsanwlte -Staatsanwalt/ST -Staatsanwaltschaft -Staatsanzeiger/NS -Staatsapparat -Staatsarchiv/EPS -Staatsausgaben -Staatsbahn -Staatsbankprsident -Staatsbankrott -Staatsbeamte/NR -Staatsbediensteter -Staatsbegrbnis/Qq -Staatsbesuch/ET -Staatsbetrieb/E -Staatsbibliothek -Staatsbrger/NS -Staatsbrgerschaft/P -Staatschef/S -Staatsdienst/EPT -Staatseinknfte/N -Staatsekretr -Staatsempfang -Staatsfeind/EPST -Staatsform/P -Staatsgarantie/N -Staatsgebude/S -Staatsgebiet -Staatsgefangene/NR -Staatsgefhl -Staatsgeheimnis/Qq -Staatsgelder -Staatsgeschft/EPS -Staatsgewalt -Staatsgrenzen -Staatsgter -Staatshandelslnder/N -Staatshaushalt/ES -Staatshoheit/P -Staatskassen -Staatskirche/N -Staatskrper/NS -Staatskontrolle -Staatskosten -Staatskunst -Staatslehre/N -Staatsmnner/N -Staatsmacht -Staatsmann/ST -Staatsminister/N -Staatsoberhupter/N -Staatsoberhaupt -Staatsoper -Staatsorchester -Staatsordnung -Staatsorgane -Staatspapier/EPS -Staatspartei -Staatspleiten -Staatspolizei -Staatspreis/EPT -Staatsprozess/EPT -Staatsrson -Staatsrte -Staatsrat/S -Staatsrecht/PS -Staatsrechtler -Staatsrechtslehrer/NS -Staatsregierung/P -Staatsreligion -Staatsrundfunk -Staatsschtzen -Staatsschatz/T -Staatsschulden -Staatssekretr/EPS -Staatssekretariat -Staatssicherheitsdienst/EPT -Staatssport -Staatsstreich/EPST -Staatsverbrechen/S -Staatsverfassung/P -Staatsverschuldung -Staatsvertrag/Tp -Staatsverwaltung -Staatswesen/S -Staatswirtschaft -Staatswissenschaften -Staatswohl/S -Staatszuschuss/Tp -Stab/ST -Stabantenne/N -Stabbatterie/N -Stabhochspringer/NS -Stabhochsprnge -Stabhochsprung/S -Stabhochsprungtrainer -Stabilisator/PS -Stabilisierens -Stabilisierung/P -Stabilisierungsfonds -Stabilisierungskriterium -Stabilisierungspolitik -Stabilisierungsprogramm -Stabilisierungsvorhaben -Stabilitt/P -Stabilittsgeschichte -Stabilittsgesetz -Stabilwerden -Stabreim/EPS -Stabsrzten -Stabsarzt/T -Stabschef/S -Stabsfeldwebel/S -Stabsoffizier/EPS -Stabsquartier/EPS -Stabsunteroffizier -Stachel/S -Stachelbeeren -Stacheldrhte/N -Stacheldraht/S -Stacheldrahtsperren -Stacheldrahtverhau -Stachelschweine -Stachelwalze -Stachelwalzendrucker -Stachus -Stack/S -Stadion/S -Stadium -Stadt -Stadtmter -Stadtadel -Stadtamt -Stadtautobahn -Stadtbahn/P -Stadtbauamt -Stadtbaurat -Stadtbevlkerung -Stadtbewohner/S -Stadtbezirk/E -Stadtbild/RT -Stadtbcherei -Stadtbrgertum -Stadtdirektor -Stadtfriedhof -Stadtgebiet/EPS -Stadtgemeinde -Stadtgesprch/EPS -Stadtgrenze -Stadthalter -Stadtherren -Stadtjugendamt -Stadtkmmerer/S -Stadtkasse/N -Stadtkfferchen/S -Stadtkommandant/P -Stadtkommandantur -Stadtleben/S -Stadtleute -Stadtmauer/N -Stadtmusik -Stadtparlament/EPS -Stadtplne/N -Stadtplan -Stadtplaner -Stadtplanung/P -Stadtprospekt -Stadtrte/N -Stadtrand -Stadtrandsiedlung -Stadtrat/ST -Stadtrecht/EPS -Stadtregion/P -Stadtrepubliken -Stadtrundfahrt -Stadtsparkasse -Stadtstaat/EPS -Stadtteil/EPS -Stadttheater -Stadttor/EPS -Stadtumzug/Sp -Stadtvter -Stadtverkehr -Stadtverordnete/N -Stadtvertretung -Stadtverwaltung/P -Stadtviertel/NS -Stadtwappen -Stafette/N -Stafettenlauf/Sp -Staffage/N -Staffel/J -Staffelei/P -Staffellauf/Sp -Stagnation -Stahlarbeitergewerkschaft -Stahlbder/N -Stahlbad -Stahlbau/S -Stahlbauten -Stahlbeton/S -Stahlbetonbau -Stahlblech/PS -Stahlblechausfhrung -Stahlblechgehuse -Stahldraht -Stahleisen -Stahlerzeugnis/Qq -Stahlfeder/N -Stahlflche -Stahlgehuse -Stahlgussgehuse/N -Stahlhelm/EPS -Stahlkabel -Stahlkammer/N -Stahlkonzern -Stahlplatte -Stahlpreis/E -Stahlproduzent/P -Stahlrohre -Stahlrohrmbel/NS -Stahls -Stahlspne/N -Stahlstich/EPST -Stahlstreik -Stahlverformung -Stahlwerk/EPS -Stahlwerte -Stahlwirtschaft -Stahlwollen -Stalin/S -Stalingrad -Stalinisierung -Stalinismus -Stall/JSp -Stallarbeit -Stallgefhrte/N -Stallgeld/T -Stallgeldern -Stallknecht/PS -Stallmeister/S -Stamm/ST -Stammaktie -Stammbaum/STp -Stammbcher -Stammbuch -Stammburg/P -Stammdateneigenschaften -Stammdatum -Stammeltern -Stammesfehde -Stammesfrst -Stammesgeschichte -Stammeskrieger -Stammeslinie -Stammform -Stammgste/N -Stammgast -Stammgeschichten -Stammhalter/NS -Stammhaus/Tp -Stammheim -Stammhirn -Stammkapital/S -Stammkino -Stammkunde/FN -Stammkundschaft -Stammliste -Stammlokal/PS -Stammpersonal -Stammrolle/N -Stammsilben -Stammsitz/ET -Stammtafel/N -Stammtisch/EPST -Stammtischbrder -Stammvter/N -Stammvater/S -Stammvlker -Stammvolk -Stammwerk -Stammwrter/N -Stammwort/S -Standard/S -Standardabweichung/P -Standardausrstung -Standardausstattung -Standardbedeutung/P -Standardbeschriftung -Standardbetriebssystem -Standardeinstellung/P -Standardfahrten -Standardfirmware -Standardformat -Standardfunktion/P -Standardgert -Standardisierens -Standardisierung/P -Standardisierungskomitee/S -Standardisierungsprozess/EPT -Standardkabeln -Standardklasse -Standardlage -Standardlieferumfang/S -Standardlsung/P -Standardmen/S -Standardmodell/EPS -Standardmodul -Standardoberflche -Standardpraxis -Standardpreis/EPT -Standardprodukten -Standardprogramm -Standardsituation/P -Standardsoftware -Standardtechnik/P -Standardtipp -Standardtyp/P -Standardverfahren/S -Standardversion/P -Standardverzeichnis/Qq -Standardwerk/EPST -Standardwert/EPST -Standardzeichen/S -Standarte/N -Standbein -Standbild/RT -Standdruck -Stande/S -Standesmter/N -Standesamt/ST -Standesbeamte/N -Standesbewusstsein/S -Standesdnkel/S -Standesehre/N -Standesperson/P -Standesunterschied/EPT -Standfestigkeit -Standfoto/S -Standgehuse -Standgeld/T -Standgeldern -Standgericht -Standhaftigkeit -Standleitung/P -Standlicht/RS -Standmieten -Standort/EPST -Standortbestimmung -Standpauke/N -Standpltze/N -Standplatz/T -Standpunkt/EPS -Standquartier/EPS -Standrecht/S -Standuhr/P -Stanford -Stange/N -Stangenbohne/N -Stangenkonstruktion/P -Stangenspargeln -Stanniol/S -Stapel/PS -Stapelen/JSW -Stapelgehuse -Stapelgter/N -Stapelgut -Stapellauf/Sp -Stapelpltze/N -Stapelplatz -Stapelverarbeitung -Star/EPS -Staranwalt -Starkstrom/S -Starkstromkabel/S -Starnberger -Starrkrmpfe/N -Starrkrampf -Starrsinn/EPS -Starrsucht -Start/RSW -Startadresse -Startbahn/P -Startbedingung/P -Startbit/S -Starter/NS -Starterlaubnis/q -Starthilfe -Startmechanismus -Startnummer -Startpltze/N -Startplatz/T -Startposition/P -Startprozedur -Startpunkt/EPST -Startraketen -Startschleuder -Startschuss/Tp -Startseite -Startsignal -Starttermin -Startverbot/EPS -Startversuch/EPS -Startvorbereitung/P -Startvorgang -Startvorzeichen -Startwert -Startzeichen -Startzeitpunkt/E -Stasi -Statement/S -Statik/R -Statiker/NS -Station/P -Stationierungskosten -Stationsrzte/FN -Stationsarzt/T -Stationsvorsteher/N -Statist/P -Statistenrolle/N -Statistik/PR -Statistiker/FNS -Statistin -Stativ/EPS -Statthalter/NS -Stattlichkeit -Statuen/I -Statur/P -Status -Statusanzeige/N -Statusausgang/S -Statusbit/S -Statuskanal -Statusmeldung/P -Statusoutput -Statussymbol/EPS -Statuszeile/N -Statut/PS -Stau/JRS -Staub/S -Staubbeutel/N -Staubecken/S -Staubentwicklung -Staubfnger/S -Staubflocke/N -Staubgef/EPT -Staubkrnern -Staubkorn/S -Staublungen -Staubmntel/N -Staubmantel/S -Staubsauger/NS -Staubtcher/N -Staubtuch/S -Staubwedel/N -Staubwolke/N -Stauchens -Stauchung/P -Staudmme -Staudamm/ST -Staude/N -Stauens -Staufenknig -Staufenreich -Staufer -Staumauer -Staupe -Stausee/N -Stauwerk/PS -Stavanger -Stck -Stck. -Std -Std. -Steak/S -Stechfliegen -Stechginster/S -Stechheber/NS -Stechmcke -Stechpalme/N -Stechschritt/EPST -Stechuhr/P -Stechzirkel/NS -Steckadapter/S -Steckbrief/EPST -Steckbrcke -Steckdose/N -Steckenpferd/EPT -Steckens -Stecker/NS -Steckeradapter -Steckeranordnung -Steckeranschluss/Tp -Steckeranschlussraum -Steckerauslegung -Steckerbelegung -Steckerbuchsen -Steckerdichtung/P -Steckereinstze -Steckereinsatz -Steckerfhrung -Steckergehuse -Steckerhalter -Steckerhalterung -Steckerhlse -Steckerkombination/P -Steckerkupplung/P -Steckerleiste/N -Steckerlinie -Steckerpin/S -Steckerplan -Steckerplatine -Steckerplatten -Steckerschutz -Steckersystem -Steckerteil -Steckertyp -Steckkarte/N -Steckkontakt/EPS -Steckkrfte/N -Steckling/EPS -Stecknadel/N -Steckpltze -Steckplatz -Steckreis/T -Steckrben -Steckschlssel/N -Steckschuss/Tp -Steckverbinder/NS -Steckverbinderprobleme -Steckverbindung/P -Steckzyklen -Stefan/S -Stefanie/S -Steffen/S -Steffi/S -Steg/EPS -Steganographie -Stegreif/S -Stehaufmnnchen/S -Stehbolzen -Steher/NS -Stehhhe -Stehkragen -Stehlampe/N -Stehpltzen -Stehplatz/T -Stehplatzinhaber/FNS -Stehpult/EPST -Stehvermgen/S -Steiermark -Steifheit -Steifigkeit -Steigbgel/NS -Steigeisen/S -Steigens -Steiger/JS -Steigerung/P -Steigerungsform/P -Steigerungsgrad/EPST -Steigerungsrate/N -Steigerungswert/EPT -Steigfhigkeit -Steigung/P -Steigungsregen -Steilhang/Sp -Steilheit -Steilkste -Steilufer/N -Stein/EGPS -Steinadler/NS -Steinbau -Steinbearbeitung -Steinbcken -Steinbock/S -Steinbrche/N -Steinbruch/S -Steinbutt/EPS -Steinchen -Steindamm -Steindruck/PRS -Steineiche -Steinfrchte/N -Steingrten -Steingarten/S -Steingut/EPS -Steinigens -Steinigung/P -Steinkohle -Steinkohlenbergwerk/EPS -Steinkohlenfrderung -Steinkultur -Steinmarder/S -Steinmetz -Steinobst/ST -Steinpilz/EPT -Steinplatte -Steinplatz -Steinquadern -Steinsalz/EPT -Steinsalzlager -Steinschlag/Sp -Steinschleuder -Steinstcke -Steinway/S -Steinweg -Steinwrfen -Steinwurf/S -Steinzeit/P -Steinzeitmensch -Stei/EPT -Steibein/EPS -Stellage/N -Stelldichein/S -Stellenangebot/EPST -Stellenanzeige -Stellengesuch/ET -Stelleninhaber -Stellenjger/S -Stellenleiter -Stellennachweis/ET -Stellens -Stellenvermittlungsbro/S -Stellenwert -Stellenzahl -Stellglied -Stellglieder -Stellgre/N -Stelligkeit/P -Stellmacher/N -Stellmglichkeit/P -Stellpltze/N -Stellplatz -Stellschraube/N -Stellsignal -Stellung/P -Stellungnahme/N -Stellungskrieg/EPST -Stellungsspiel/EPS -Stellungsuchenden -Stellungsuchender -Stellungswechsel/S -Stellungswert/T -Stellvertreten/JS -Stellvertreter/FNS -Stellvorrichtung/P -Stellwnden -Stellwerk/EPS -Stellwerte -Stellzylinder/N -Stemmbgen -Stemmbogen/S -Stemmeisen/S -Stempel/S -Stempelbgen -Stempelbogen/S -Stempeldruck -Stempelfarbe/N -Stempelgebhren -Stempelkissen/S -Stempelmarken -Stempeluhr/P -Stenoblock -Stenogramm/EPS -Stenograph/FP -Stenographie/Nf -Stenotypist/FP -Stephan/S -Stephanstag -Steppdecke/N -Steppentiere -Steppnhten -Steppnaht -Stepptnze -Stepptanz/T -Sterbebett/PS -Sterbefall/Sp -Sterbefallversicherung -Sterbegeld/T -Sterbegelder -Sterbekasse/N -Sterbens -Sterbesakrament/EPS -Sterbestunde/N -Sterbeurkunden -Sterblichkeit -Sterblichkeitsziffer/N -Stereo -Stereoaufnahme/N -Stereofonie -Stereometrie -Stereomikroskop -Stereophonie -Stereoplatten -Stereoskop/EPS -Stereotypie -Stereotyps -Sterilisation/P -Sterilisierens -Sterilisierung/P -Sterilitt -Sterling -Stern/EMPST -Sternbild/RS -Sterndeuter/NS -Sterndeutung -Sternenbanner/N -Sternenfahrt/P -Sternenhimmel -Sterngebiet -Sternhaufen -Sternknoten -Sternlicht/R -Sternmotor/PS -Sternschaltung/P -Sternschnuppen -Sternstruktur -Sternstunde/N -Sternverteiler -Sternverteilung -Sternwarten -Stethoskop/EPS -Stetigfrderer -Stetigkeit -Stettin -Steuer/J -Steuerabzug/STp -Steuerabzugsbetrag/STp -Steueralgorithmen -Steueranweisung/P -Steueranwendung/P -Steueratlas -Steueraufgabe/N -Steueraufkommen/S -Steueraufschlag/Sp -Steuerausfall/Sp -Steuerausgang/Sp -Steuerbeamte -Steuerbefehl/EPS -Steuerbefreiung/P -Steuerbegnstigung -Steuerbehrde/N -Steuerbelastung -Steuerberater/FNS -Steuerberatungsfirmen -Steuerbereich -Steuerbescheid/E -Steuerbescheinigung -Steuerbetrag/STp -Steuerbetrug/S -Steuerbewegung -Steuerbewilligung -Steuerblock -Steuerbord/T -Steuerbrger -Steuerbyte/S -Steuercode/S -Steuercomputer -Steuerdaten -Steuerdsen -Steuereingang/Sp -Steuereinheit/P -Steuereinnahmen -Steuereinrichtung/P -Steuereinsparung/P -Steuerelektronik/P -Steuerempfnger -Steuererhhung/P -Steuererklrung/P -Steuererlass/EPT -Steuererleichterung/P -Steuerermigung/P -Steuerersparnis/q -Steuerfhigkeit -Steuerfahndung -Steuerfile/S -Steuerflag/S -Steuerflosse/N -Steuerflchtlinge -Steuerfragen -Steuerfreiheit/P -Steuerfunktion/P -Steuergeheimnis/Qq -Steuergelder -Steuergert/EPST -Steuergertefamilie -Steuergerteseite -Steuergesetz -Steuergre/N -Steuergruppe/N -Steuerhinterzieher/NS -Steuerhinterziehung/P -Steuerhinterziehungsbranche -Steuerinformation/P -Steuerjahr -Steuerkarte/N -Steuerklasse/N -Steuerknppel/NS -Steuerknppelfunktion/P -Steuerknppelposition/P -Steuerknppelsignale -Steuerknppelspannung/P -Steuerkonzept -Steuerkraft -Steuerlast/P -Steuerleitung/P -Steuermnner -Steuermann/S -Steuermarken -Steuermanahme/N -Steuermen/S -Steuermittel/N -Steuermglichkeit/P -Steuermodell -Steuermodul/EPS -Steuernachlass/Tp -Steuernummer -Steueroasen -Steueroaseneinwohner -Steueroasenlnder -Steuerparameter/N -Steuerpegel -Steuerpflicht -Steuerpolitik -Steuerpolizei -Steuerpotential/EPS -Steuerpotenzial/EPS -Steuerprogramm/EPS -Steuerprozess/EPT -Steuerprfung -Steuerrder/N -Steuerrad/S -Steuerratgeber -Steuerrechner/NS -Steuerrecht -Steuerreform -Steuerrckstnde -Steuerruder/N -Steuersckel -Steuersachen -Steuersatz -Steuerschtzung/P -Steuerschnffler/NS -Steuerschraube -Steuerschulden -Steuersender -Steuersenkung/P -Steuersequenz/P -Steuersignale/N -Steuersoftware -Steuerspannung/P -Steuerspannungsnderung -Steuerspannungsbereich -Steuerstrafverfahren -Steuerstromkreise -Steuersystem/EPS -Steuertarife -Steuertechnik -Steuertermin/E -Steuerung/P -Steuerungsablauf/Sp -Steuerungsaufgabe/N -Steuerungsbefugnis/q -Steuerungselement/EPS -Steuerungsfhigkeit/P -Steuerungsfunktion/P -Steuerungsgehuse/S -Steuerungsgerte/N -Steuerungskomponente/N -Steuerungskreisen -Steuerungsleistung/P -Steuerungslogik -Steuerungsmanahme/N -Steuerungsmechanismen -Steuerungsmethode/N -Steuerungsmittel/NS -Steuerungsmglichkeit/P -Steuerungsproblem/EPS -Steuerungsrechner -Steuerungsrichtlinie/N -Steuerungssektor -Steuerungssystem/EPS -Steuerungstechnik -Steuerunterlagen -Steuerveranlagung/P -Steuervergnstigung/P -Steuerverkrzung -Steuerverwaltung/P -Steuervorgang/Sp -Steuervorteile -Steuerwort -Steuerzahler/NS -Steuerzange -Steuerzeichen/S -Steuerzeichensatz -Steuerzeit/P -Steuerzugestndnis/Qq -Steuerzustand -Steuerzylinder -Steve/S -Stevens -Steward/S -Stewardess/P -Stewart/S -Stich/EPS -Stichel/S -Stichelei/P -Stichflamme/N -Stichhaltigkeit -Stichling/P -Stichprobe/N -Stichpunkt/EPT -Stichsge/N -Stichtag/EPS -Stichwaffe/N -Stichwahl -Stichwrter/N -Stichwort/EPST -Stichwortsammlung -Stichwortverzeichnis/Qq -Stichwunde/N -Sticker/FNS -Stickerei/P -Stickhusten/S -Stickrahmen/S -Stickseide -Stickstoffe/N -Stickstoffpreise -Stiefbrder/N -Stiefbruder -Stiefel -Stiefelhose/N -Stiefelknecht/EPS -Stiefelputzer/NS -Stiefgeschwister/N -Stiefkind -Stiefmtter/M -Stiefschwester -Stiefshne/N -Stiefsohn/S -Stieftchter -Stieftochter -Stiefvter/N -Stiefvater/S -Stiege -Stiel/EPS -Stielachse -Stielaugen -Stielzylinder -Stier -Stierkmpfen -Stierkmpfer/N -Stierkampf/S -Stierkampfarena -Stift/JRST -Stifteinstze -Stifteinsatz -Stifter/FNS -Stifterverband -Stiftgehuse -Stiftkontakte -Stiftleiste -Stiftsdame -Stiftsfest/EPST -Stiftsfrulein/S -Stiftsherr/NP -Stiftskirche/N -Stiftsruine -Stiftstecker -Stiftungsrat -Stiftzhne -Stiftzahn -Stigma -Stil/EPS -Stilart/P -Stilblte/N -Stilett/EPS -Stilgefhl/EPS -Stilist/FP -Stilistik/P -Stilkunde -Stillegungsprogramm -Stillens -Stillleben/S -Stilllegens -Stilllegung/P -Stillsetzen -Stillstand/ST -Stillstandszeit/P -Stillung/P -Stilmittel -Stilmbel/N -Stilperiode -Stilbung -Stimmabgabe/N -Stimmaufwand/S -Stimmbnder/N -Stimmband -Stimmbrche -Stimmbruch/S -Stimmeneinheit/P -Stimmenenthaltung -Stimmenfang/S -Stimmengewinne -Stimmenmehrheit/P -Stimmenrckgang -Stimmens -Stimmenzhlung/P -Stimmenzuwachs/T -Stimmer/NS -Stimmgabel -Stimmkarten -Stimmlage/N -Stimmrecht/EPST -Stimmung/P -Stimmungskanone -Stimmungslage/N -Stimmungsmache -Stimmungsmensch -Stimmungsmusik -Stimmungspegel -Stimmungsumschwung/S -Stimmwechsel/S -Stimmzettel/N -Stimulation/P -Stimulus -Stinkbombe/N -Stinktier/EPS -Stipendiat/P -Stipendien -Stipendium/S -Stippvisite/N -Stirn/EGP -Stirnbnder/N -Stirnband/S -Stirnbinde/N -Stirnhhle/N -Stirnhhlenvereiterung/P -Stirnlocke/N -Stirnrdern -Stirnrad/S -Stirnrunzeln -Stirnschalung -Stirnschalungsparametern -Stirnschalungsposition -Stirnschalungsregelung -Stirnschalungszylinder/N -Stirnseite/N -Stirnwnde/N -Stcke/N -Stckelschuh/EPS -Stcklein -Stpsel/S -Str/JS -Strablauf/Sp -Strabstand/T -Strabstandssignal -Straktion/P -Stranflligkeit -Strbarkeit -Strbeseitigung -Strecho -Strenfried/EPST -Strer -Strfaktor/P -Strfall/Sp -Strgerusch/E -Strimpuls/E -Strlichtsignale -Strlichtunterdrckung -Strmeldung/P -Strpegel -Strquelle/N -Strreflexion/P -Strrischkeit -Strschallentwicklung -Strsender/NS -Strsignale/N -Strspitzen -Strstelle/N -Strstrahlung -Strunempfindlichkeit -Strungsanzeige/N -Strungsdienst/EPST -Strungsfunktion/P -Strungsmeldung/P -Strunterdrckung -Struntergrund/S -Ste/N -Stel/N -Stochastik/R -Stock/JS -Stockdegen/S -Stockenten -Stockfisch/P -Stockflecken/SW -Stockholm/S -Stockpunkt/EPST -Stockschnupfen/S -Stockwerk/EPS -Stockwerksgarage/N -Stockzhne/N -Stockzahn/S -Stoff/EPST -Stoffdruckerei -Stoffel/S -Stofffarbe/N -Stofffetzen/S -Stoffwechsel/NS -Stoiker/NS -Stola -Stollen/S -Stolperer -Stoltenberg/S -Stonehenge -Stopbit/S -Stopfbchse/N -Stopfens -Stopfgarn -Stopfmittel/NS -Stopfnadeln -Stopfung/P -Stoppel/N -Stoppelbrten -Stoppelbart/S -Stoppelfeld/RT -Stoppelwerk/EPS -Stopper/NS -Stopplicht/R -Stoppsignal -Stoppuhr/P -Storch/S -Storchschnbel -Storchschnabel/S -Stornierens -Stornierung/P -Storno -Stoanregung -Stobelastung/P -Stodmpfer/NS -Stodegen -Stoes -Stofnger/N -Stofestigkeit -Stogebet/EPST -Stokante/N -Stokeil/PS -Stokrfte -Stokraft -Stokugel/N -Stoschutzrahmen -Stoseufzer/NS -Stostange -Stotrupp/EPS -Stoverkehr/S -Stovorgang/Sp -Stozhne -Stozahn/S -Stozeit -Stotterer/NS -Strfling/EPS -Strhne/N -Strnde/N -Strucher/N -Strafandrohung -Strafanstalt/P -Strafantrag/Sp -Strafanzeigen -Strafarbeit/P -Strafbarkeit -Strafbefehle -Strafbestand -Strafentlassene/N -Straferlass/EPT -Strafexpedition/P -Straffheit -Straffung -Strafgefngnis/Qq -Strafgefangenen -Strafgegangener -Strafgericht/PS -Strafgesetz/T -Strafgesetzbchern -Strafgesetzbuch/S -Strafjustiz -Strafkammer -Straflager/NS -Strafmandat/EPS -Strafma/EPT -Strafmanahmen -Strafmdigkeit -Strafporto/S -Strafpredigt -Strafprozess/EPT -Strafprozessordnung/P -Strafpunkt/PS -Strafraum/STp -Strafrecht/PS -Strafregister/S -Strafrichter -Strafsache -Strafsto/Tp -Straftat/P -Straftatbestnde -Strafverfahren/S -Strafverfolger -Strafverfolgungsbehrde/N -Strafversetzung -Strafverteidiger/FNS -Strafvollstreckung/P -Strafvollzug/S -Strafzettel -Strahl/JST -Strahlantrieb/EPS -Strahlenbehandlung/P -Strahlenbrechung/P -Strahlendosis -Strahlenforschung -Strahlfen -Strahlofen -Strahlrohr/EPS -Strahltriebwerk/EPS -Strahlturbine/N -Strahlungsbereich -Strahlungsenergie -Strahlungsquelle -Strahlungsschden -Strahlwassergeschtzt -Strand/ST -Strandanzug/STp -Strandbder/N -Strandbad -Strandgter/N -Strandgut/S -Strandhotel -Strandkrbe/N -Strandkorb -Strandmoden -Strandpromenade/N -Strandruber/NS -Strandschuh/EPS -Strandwchter/NS -Strang/Sp -Strangpresse/N -Strapaze/N -Straburg -Strae/N -Straenanzug/STp -Straenarbeiter/FNS -Straenbahn -Straenbahnlinien -Straenbahnnetz -Straenbahnverkehr -Straenbahnwagen/S -Straenbahnzug/Sp -Straenbau/S -Straenbauindustrie -Straenbeleuchtung -Straenbild -Straenbrcke -Straendmme -Straendamm/S -Straendecke -Straendirnen -Straenecke/N -Straenfahrer -Straenfhrung -Straengrben -Straengraben -Straenhndler/FNS -Straenjunge/N -Straenkmpfe -Straenkampf/S -Straenkarte -Straenkehrer/NS -Straenkehrmaschinen -Straenkrawalle -Straenkreuzer/S -Straenkreuzung/P -Straenlagen -Straennetz/T -Straenpreis/EPT -Straenruber/NS -Straenrand -Straenraub -Straenreinigung/P -Straenrennen -Straensammlung/P -Straenschild -Straenschildern -Straenschlachten -Straenseite -Straensperre/N -Straenberfhrung/P -Straenbergang -Straenunterfhrung -Straenverkehr/S -Straenverkehrsamt -Straenwalze/N -Straenzug/Sp -Straenzustand/S -Strass -Stratege/N -Strategie/N -Strategienderung -Strategieprogramm -Stratosphre -Stratosphrenkreuzer/NS -Strauch/S -Strauchdieb/EPS -Strauchwerk/PS -Strau/ET -Strauss -Strawinsky/S -Streamer/NS -Strebabschnitt/E -Strebantrieb -Strebanzeige -Strebausbau/S -Strebausbausteuerung/P -Strebausbautechnik -Strebausbauten -Strebautomatik/P -Strebautomatisierung -Strebbereich -Strebbreite -Strebbus -Strebdarstellung -Strebdaten -Strebdatenerfassung -Strebebalken/S -Strebens -Strebepfeiler/NS -Streber/NS -Strebertum -Strebfehler/N -Strebfront -Strebfunktion -Strebgeradehaltung -Strebgeradhaltung -Strebhorizont -Strebinbetriebnahme -Streblage -Strebmannschaft -Strebmaschine -Strebpanzers -Strebrand -Strebrandrechner -Strebsamkeit -Strebsoftware -Strebsoftwarenderung -Strebstatistik -Strebsteuereinheit -Strebsteuergert -Strebsteuersystem -Strebsteuerung/P -Strebteilen -Strebberwachung -Strebung/P -Strebverhltnisse -Strebverlauf/Sp -Strebvisualisierung -Strebwarten -Strebwartung -Strebzentrale -Streckenarbeiter/FNS -Streckendatenerfassung -Streckenfhrung -Streckenlnge -Streckennetz -Streckens -Streckenverlauf/STp -Streckenwrter/NS -Streckmuskel/NS -Streckung/P -Streckverbnden -Streckverband/S -Streich/JR -Streichhlzchen/S -Streichhlzer -Streichholz/T -Streichholzschachtel -Streichinstrument/EPST -Streichkse/S -Streichorchester/NS -Streichquartett/PST -Streif -Streifbnder/N -Streifband/T -Streifblick/EPS -Streifenbeamter -Streifendienst -Streifenpolizist -Streifens -Streifenteil -Streifenwagen/S -Streiflicht/RS -Streifschuss/Tp -Streifzug/Sp -Streik/ST -Streikabstimmung -Streikaufruf -Streikbeschluss/Tp -Streikbewegung/P -Streikbrecher/N -Streikdrohung/P -Streiklhne/N -Streiklohn -Streikposten/S -Streikrecht/PS -Streikwelle -Streit/RS -Streitxte/N -Streitaxt -Streiter/FNS -Streitfall/Sp -Streitfrage/N -Streitgegenstnden -Streitgegenstand/S -Streitigkeit/P -Streitkrfte/N -Streitpunkt/EPS -Streitsache/N -Streitschrift/P -Streitsucht -Streitwert/EPS -Stresemann/S -Stress/T -Stresssituation/P -Streubreite/N -Streubchse/N -Streueffekt/EPST -Streuens -Streusand/S -Streuung/P -Streuwinkel/NS -Streuzucker -Strichtzung/P -Strichcodeleser/S -Striche -Stricheinteilung -Strichmdchen/S -Strichmnnchen -Strichperforation/P -Strichpunkt/EPT -Strichregen/S -Strichs -Strichscheibe -Strichvgel -Strichvogel/S -Strick/RS -Stricker/FNS -Strickerei -Strickgarn/ES -Strickjacke/N -Strickleiter/N -Strickmaschine/N -Strickmuster -Stricknadel/N -Strickware/N -Strickweste/N -Strickwolle -Strickzeug/S -Striegel/S -Striktheit -Stringdecodierung -Stringeintrge/N -Stringberprfung/P -Stringvariable/N -Stringzuweisung/P -Strmens -Strmung/P -Strmungsmaschinen -Stroh/S -Strohdcher -Strohdach/S -Strohfeuer -Strohhalm/EPS -Strohhte/N -Strohhut -Strohkpfe/N -Strohkopf -Strohmnner/N -Strohmann -Strohmatte/N -Strohscke -Strohsack/S -Strohwitwer/S -Strolch/EPS -Strom/ST -Stromnderung -Stromabnehmer/NS -Stromabschaltung/P -Stromabsenkung -Stromadapter -Stromanschlssen -Stromaufnahme/N -Stromaufnahmekurven -Stromaufnahmemessung -Stromausfall/Sp -Stromausfallzeiten -Stromausgang/Sp -Strombedarf -Strombegrenzung -Strombelastung -Stromboli -Stromeingang/Sp -Stromeinspeiseadapter -Stromeinspeisungseinheit/P -Stromeinspeisungsstellen -Stromentnahme -Stromerzeuger/NS -Stromfrequenzen -Stromgebiet/EPS -Stromgewinnung -Stromkabel/NS -Stromknappheit -Stromkreis/EPT -Stromlauf/Sp -Stromlaufplne -Stromlaufplan/S -Stromleiter/NS -Stromlinie/N -Strommesser/NS -Strommessstelle -Strommessung/P -Strommesswiderstnden -Strommesswiderstand/T -Stromnetz/EPT -Stromquelle/N -Stromreduzierung -Stromregelkarten -Stromreglerkarte/N -Stromreserve -Stromreservierung -Stromrichter/NS -Stromschiene/N -Stromschlag/Sp -Stromschleife/N -Stromschnelle/N -Stromschnittstelle -Stromsignal -Stromsimulation/P -Stromsituation/P -Stromspannung/P -Stromstrken -Stromsto/Tp -Stromberwachung -Stromunterbrecher/NS -Stromverbrauch/ST -Stromvers -Stromvers. -Stromversetzung -Stromversorgung/P -Stromversorgungseingang -Stromversorgungskabel -Stromversorgungsoption/P -Stromversorgungsspannung -Stromversorgungsteil -Stromverteilungshardware -Stromwandler/NS -Stromwandlungsmodul -Stromwender/NS -Stromzhler/S -Stromzufhrung -Stromzufuhr -Stromzunahme -Strophe/N -Strmpfe/N -Strudel/NS -Struktur/P -Strukturbaum/STp -Strukturelement/EPST -Strukturierens -Strukturiertheit -Strukturierung/P -Strukturkomponente/N -Strukturkrise/N -Strukturmanahme/N -Strukturmerkmal/EPS -Strukturproblem/EPS -Strukturtiefe/N -Strukturvernderung/P -Strukturverbesserung -Strukturwandlung -Strukturwidrigkeit -Strumpf/S -Strumpfbnder/N -Strumpfband/S -Strumpfhalter/N -Strumpfhose/N -Strumpfwaren -Strunk/S -Struwwelpeter/S -Strychnin/S -Stbchen/S -Stck/EMPST -Stckarbeiten -Stckarbeiter/FNS -Stckelfracht/P -Stckelns -Stckelung/P -Stckgter/N -Stckgut/S -Stckliste/N -Stcklistenname/N -Stcklhne/N -Stcklohn/S -Stcklung/P -Stckpreis/EPT -Stckwerk/S -Stckzahl/P -Sthle/GN -Stmper/FNS -Stmperei -Stndchen/S -Stndlein/S -Strmer/NS -Strmerreihe -Strmerstar -Sttzens -Sttzhlzer -Sttzpfeiler/S -Sttzpunkt/EPST -Sttzrohr -Sttzung/P -Sttzungskufe/N -Sttzzylinder -Stube/N -Stubenarrest/S -Stubenfliege/N -Stubengelehrte/NR -Stubenhocker/S -Stubenkamerad/P -Stubenmdchen/S -Stuck/S -Stuckateur/EFS -Student/FP -Studentenausschuss/Tp -Studentenaustausch -Studentenbund -Studentengemeinden -Studentengruppe -Studentenmtter -Studentenproteste -Studentenrat -Studentenschaft/P -Studententag -Studentenunruhen -Studentenverbindung/P -Studentenvertretung -Studentenwohnheim -Studentenzeitschrift/P -Studie/N -Studienanfnger -Studienaufenthalt -Studienbeginn -Studienberatung -Studiendauer -Studiendirektor/FPS -Studienfrderung -Studienfhrer -Studiengang/Sp -Studienjahr/EPS -Studienkommission/P -Studienplne/N -Studienpltze/N -Studienplan/S -Studienrte/FN -Studienrat -Studienreform -Studienreise/N -Studienrichtung -Studienwahl -Studienwerk -Studienzeit -Studienziel/EPST -Studienzwecke/N -Studierzimmer/NS -Studio -Studiobhne -Studium/S -Stufenbarren/S -Stufenbau -Stufenbohrung -Stufenfolge/N -Stufenfunktion/P -Stufenleiter/N -Stufenplan -Stuhl/E -Stuhlbein/EPS -Stuhlgang/Sp -Stuhllehne/N -Stuhlreihen -Stulle/N -Stulpe/N -Stulphandschuh/EPS -Stulpstiefel/NS -Stummel/NS -Stummelbeine -Stummfilm/EPS -Stumpfheit -Stumpfsinn/S -Stunde/N -Stunden/JS -Stundenaufwand -Stundenberechnung -Stundengeschwindigkeit -Stundenglser/N -Stundenglas/T -Stundenkilometer/NS -Stundenlhne/N -Stundenlohn/S -Stundenplne/N -Stundenplan/S -Stundensatz -Stundenzeiger/NS -Stunk/S -Stupsnase/N -Sturm/ST -Sturmangriff -Sturmbe -Sturmboot/EPST -Sturmflut/P -Sturmflutkatastrophe -Sturmgeschtz/EPT -Sturmglocken -Sturmmitte -Sturmreihe -Sturmschritt/EPST -Sturmsegel/NS -Sturmsignal/EPS -Sturmspitze -Sturmtank -Sturmtief -Sturmvgeln -Sturmvogel/S -Sturmwarnung/P -Sturmwind/EPS -Sturz/T -Sturzcker/N -Sturzacker/S -Sturzbche -Sturzbach/S -Sturzflug/STp -Sturzflut -Sturzhelm/EPS -Sturzkampfflugzeug/EPS -Sturzwellen -Stuss/T -Stute/N -Stutenfllen/S -Stuttgart/RS -Stutzer/N -Stutzflgel/NS -Stylist/P -Schte/N -Sdafrika/S -Sdamerika/S -Sdaustralien -Sdbalkon -Sddeutschland/S -Sden/SW -Sdeuropa -Sdfinnland -Sdfrankreich/S -Sdfrchte/N -Sdhlfte/N -Sditalien -Sdjemen -Sdkorea/S -Sdkoreaner/N -Sdkste -Sdlnder/FNS -Sdosten/S -Sdostrand -Sdpol/S -Sdraum/ST -Sdrhodesien -Sdrussland -Sdsachalin -Sdschwarzwald -Sdseeinsel/N -Sdseekolonien -Sdseeschnitzerei -Sdslawentum -Sdspitze -Sdsteiermark -Sdstrand -Sdterrassen -Sdwein/EPS -Sdwest/P -Sdwestfalen -Sdwind/EPST -Shnens -Shneopfer/N -Shnerituale -Shnetermin/EPS -Shnung/P -Slze/N -Smmchen/S -Smpfe/N -Snde/NR -Sndenbcke -Sndenbock/S -Sndenerlass/ET -Sndenfall/S -Sndengeld/S -Sndengeldern -Sndenpfuhl -Sndenregister/NS -Snder/FNS -Sholz/T -Sigkeit/P -Skartoffel/N -Sspeise/N -Sstoff/EPS -Swarengeschft/EPS -Swarenwirtschaft -Swasser/S -SuSE -Subjekt/EPS -Subjektivismus -Subjektivitt -Subkontinent -Subkultur -Submission/P -Subsidiaritt -Subsidiarittsprinzip/S -Substantialisierung/P -Substantiv/EPS -Substanz/P -Substanzverlust/T -Substitut/EPST -Substitution/P -Substitutionsergebnis/Qq -Substrat/EPST -Subsumtion -Subsystem/EPS -Subtangente/N -Subtraktion/P -Subvention/P -Subventionierens -Subventionierung/P -Subventionsmarke -Subventionszahlung/P -Suchaktion/P -Suchanzeige/N -Sucharbeit -Suchard -Suchbefehl/EPS -Suchbohrung -Suchdienst/EPT -Sucher/FNS -Suchgert/EPST -Suchkartei/P -Suchlauf/Sp -Suchmaschine/N -Suchmuster/NS -Suchvorgang -Suchwerkzeug/EPS -Suchwrter -Suchwort/P -Sud -Sudan -Sudelarbeiten -Sudelei/P -Sudetenfrage -Sudetenkrise -Suez -Suezkanal/S -Suezkanalzone -Suffix/EPT -Suggestion/P -Suggestionsbedrfnis/Qq -Suggestivfrage/N -Suggestivitt -Suhrkamp -Suite/N -Sulfat/EPS -Sulfid/EPS -Sultan/EFPS -Sultanin/EFP -Sumatra -Sumerer -Summand/P -Summenbeschrnkung -Summenwert/S -Summer/N -Summierens -Summierung/P -Sumpf/ST -Sumpfbden -Sumpfboden/S -Sumpffieber -Sumpfhhner/N -Sumpfhuhn/S -Sumpflnder/N -Sumpfland/ST -Sumpfpflanze/N -Sumpfvgel -Sumpfvogel/S -Superbenzin -Superchip -Superdefizit -Superding -Superertrge -Superfarmland -Superfrachter -Supergewinne -Superinflation -Superioritt -Superkirche -Superklasse/N -Superlativ/EPS -Supermchte/N -Supermnner -Supermann -Supermarkt/Tp -Supernova -Superrenditen -Superstar -Superverschuldung -Suppe/N -Suppenfleisch -Suppengrn/S -Suppenkelle -Suppenkruter/N -Suppenkraut -Suppenlffel/NS -Suppenschssel/N -Suppenteller/N -Suppenwrfel/NS -Support/S -Supraleitung -Suprema -Supremum/S -Surfbrett -Surfer/FNS -Surrealismus -Surrealist/P -Surrogatheilung/P -Susanne/S -Sushi -Sussex -Sven/S -Swimmingpool -Swing -Sybille/S -Sydney -Sylphe/N -Sylphide/N -Sylt -Symbiose/N -Symbol/EPS -Symbolcharakter -Symbolik -Symbolist/P -Symbolwirkung/P -Symmetrie/N -Symmetrieebene/N -Symmetrisieradapter -Sympathie/N -Sympathiekundgebung -Sympathiestreik/S -Sympathisant/P -Symphonie/N -Symphoniekonzert -Symposien -Symposium -Symptom/EPS -Symptomatik/P -Synagoge/N -Synapse/N -Synchroneingang -Synchrongetriebe/NS -Synchronimpuls/EPT -Synchronisation -Synchronisationsloch -Synchronisationsprobleme -Synchronisationssignal -Synchronisationszeichen -Synchronisierlcher -Synchronisierschalter -Synchronlchern -Synchronlocherkennung -Synchronschalter -Synchronschalterkette -Synchronzhler -Syndikalismus -Syndikat/EPS -Syndikatskredit -Syndikus -Syndrom/EPS -Synergie/N -Synkope/N -Synode/N -Synonyms -Syntax -Syntaxbaum/STp -Syntaxfehler/NS -Synthese/N -Synthesizer/NS -Syphilis -Syrer -Syrien -Syrier/FNS -System/EPS -Systemnderung -Systemanalyse/N -Systemansatz/T -Systemantwortzeit -Systemarchitektur -Systematik/P -Systemaufruf/S -Systembandbreite/N -Systembibliothek -Systemdruck -Systemeinkauf/Sp -Systementwicklung -Systemerweiterung -Systemfamilie/N -Systemfehler -Systemforschung -Systemfunktion/P -Systemfunktionsaufruf/EPS -Systemgestaltung -Systemgrenze/N -Systemhaus/Tp -Systemintegration -Systemintegritt -Systeminteresse -Systemkomponente/N -Systemkonfiguration/P -Systemkritiker -Systemlsung/P -Systemmanagement/S -Systemname/N -Systemnutzen -Systemoptimierung/P -Systempflege -Systemproblem/EPS -Systemprogrammierung -Systemreset -Systemsicherheit -Systemsoftware -Systemspeicher/S -Systemstart -Systemstecker/S -Systemsteckerbelegung/P -Systemsteckverbinder/S -Systemtakt -Systemtechnik -Systemteil/EPS -Systemtheoretiker/NS -Systemberblick -Systembersicht -Systemumgebung -Systemvernderer -Systemverantwortung -Systemverstrkung -Systemvertrieb -Systemzeichnung/P -Systemziel/EPS -Systemzulassung -Systemzwang/S -Szenarien -Szenario/S -Szenarium/S -Szene/N -Szenerie/N -Spare/S -TByte -TCP -TFT -TV -TV -TWA -Tfelns -Tfelung/P -Tflung/P -Tler/N -Tndelei/P -Tnze/NR -Tnzer/FNS -Tsschen/S -Tter/FNS -Tterschaft -Ttigens -Ttigkeit/P -Ttigkeitsbereich/EPST -Ttigkeitsbeschrnkung/P -Ttigkeitsfeld/RT -Ttigung/P -Ttigwerden -Ttlichkeit/P -Ttowierens -Ttowierung/P -Tuberich/EPS -Tufling/EPS -Tuschens -Tuschmanver -Tuschung/P -Tuschungsmanver/NS -Tuschungsversuch/EPS -Tabak/S -Tabakbau -Tabakernte -Tabakhndler/FNS -Tabakladen -Tabakland -Tabakpfeifen -Tabakqualm/S -Tabaksbeutel/S -Tabaksdose/N -Tabaksqualm -Tabakwaren -Tabelle/N -Tabellendritten -Tabelleneintrag/STp -Tabellenende -Tabellenfehler -Tabellenfhrung -Tabellenkalkulation/P -Tabellenkalkulator/P -Tabellensammlung -Tabellenspitze -Tabellenzweiten -Tablett/EPS -Tablettenmissbrauch/S -Tablettwechseln -Tabubereich/EPS -Tabula -Tabulator/EPS -Tabulatorkanal -Tabulatorposition/P -Tabulatorzeile/N -Tabus -Tacheles -Tachogenerator -Tachometer/NS -Tadel -Tadler/NS -Tafelberg -Tafelbutter -Tafelobst/T -Tafelrunde/N -Tafelsilber/S -Tafelspitz -Tafelwasser -Tafelwein/EPS -Taft/S -Tag/JST -Tagbau -Tagbauten -Tagbltter/N -Tagblatt/S -Tagebcher/N -Tagebuch/S -Tagedieb/PS -Tagegeld/RS -Tagelhne/R -Tagelhner/FNS -Tagelohn/S -Tagemrschen -Tagemarsch/T -Tagereise/N -Tagesanbrche/N -Tagesanbruch -Tagesausflug/STp -Tagesausweis/EPT -Tagesbefehl/EPS -Tagesdatum -Tagesfrderung -Tagesgesprch/EPT -Tagesgewinne -Tagesheime/N -Tageshchsttemperaturen -Tageskassen -Tageskurs/ET -Tageslngenwechsel -Tageslauf/Sp -Tagesleistung/P -Tageslicht/T -Tageslichtanwendung/P -Tageslohn -Tagesmagazin/EPS -Tagesneuigkeit/P -Tagesordnung -Tagesordnungspunkt/EPT -Tagespension/P -Tagespolitik -Tagespreis/EPT -Tagespresse -Tagesrhythmen -Tagesrhythmus -Tagessatz -Tagesschau -Tagesschluss/Tp -Tagesstempel -Tagesthema -Tagestief -Tagesumsatz -Tageswert/EPST -Tageszeit/JP -Tagewerk/EPS -Tagfalter/N -Tagundnachtgleiche/N -Tagung/P -Tagungshotel -Tagungsort -Tagungssttte/N -Tagungsthema -Taifun/EPS -Taiga -Taille/N -Taillenweite -Tailrekursionseliminierung/P -Taiwan -Taiwanesen -Takel/JS -Takelage/N -Takelwerk/EPS -Takt/ST -Taktausgang -Takteingang -Taktfrequenz -Taktik/PR -Taktiker/FNS -Taktimpulse -Taktlosigkeit/P -Taktpin/S -Taktrate -Taktscheibe -Taktscheibenachse/N -Taktsignal -Taktstcke -Taktstock/S -Taktstrich/PS -Taktverzgerungszeit -Tal/ST -Talent/EPST -Talentsucher/FNS -Taler -Talg/ST -Talgdrse/N -Talglicht/T -Talglichter -Talisman/EPS -Talk/S -Talkessel/N -Talkmaster -Talkshow/S -Talkum/S -Talleyrand/S -Talmulde/N -Talon/S -Talsohle/N -Talsperre/N -Talstation/P -Tamburin/EPS -Tamilen -Tampon/S -Tamtam/S -Tand/S -Tandem/S -Tang/EPS -Tange/NR -Tangen/SW -Tangente/N -Tango/S -Tanja/S -Tank/RS -Tankanlage -Tanker/NS -Tankerflotte -Tankflugzeug/E -Tankschiff/EPS -Tankschloss/T -Tankstelle/N -Tankstellenkiosk -Tankstellenverwalter -Tanksysteme -Tankwagen/S -Tankwart/PS -Tankzug/STp -Tanne/N -Tannenbaum/STp -Tannenhlzer/N -Tannenholz/T -Tannennadel/N -Tannenzpfen -Tannenzapfen/S -Tansania/S -Tantal/S -Tantalusqual/P -Tante/N -Tantieme/N -Tanz/T -Tanzabend/PS -Tanzbr/P -Tanzbein -Tanzbden -Tanzboden -Tanzbodenreaktion/P -Tanzdiele/N -Tanzflchen -Tanzgesellschaft/P -Tanzkapellen -Tanzkurs/EPT -Tanzlehrer/FNS -Tanzmeister -Tanzmusik -Tanzpremieren -Tanzsle/N -Tanzsaal/S -Tanzschritt/ET -Tanzschule/N -Tanzstunden -Tanztheater -Tanzturnier/PS -Tanzveranstaltung -Tapet/EP -Tapetenwechsel/S -Tapferkeit/P -Tapisserieware/N -Tara -Tarantel/N -Tarantella -Tarif/EPST -Tarifabschluss/Tp -Tarifausschuss/Tp -Tarifbereichen -Tarifbeschluss/Tp -Tarifbezirk -Tariferhhung -Tarifgesprch -Tarifklasse -Tarifkonflikt -Tarifkndigung/P -Tariflhne/N -Tariflohn/S -Tarifnummern -Tarifordnung -Tarifpartner/NS -Tarifsenkung/P -Tarifsituation -Tarifverhandlung/P -Tarifvertrag/STp -Tarnanzug/STp -Tarnens -Tarnkappe/N -Tarnung/P -Tarski -Tarzan/S -Tasche/N -Taschenausgaben -Taschenbcher/N -Taschenbuch/T -Taschendieb/EPS -Taschenfeuerzeug/EPS -Taschenformat/EPS -Taschengeld/ST -Taschengelder -Taschenlampe/N -Taschenmesser/NS -Taschenrechner/NS -Taschenspieler/NS -Taschenspielerei -Taschentcher -Taschentuch/T -Taschentuchweberei -Taschenuhr/P -Taschenwrterbcher/N -Taschenwrterbuch/S -Taschkent -Task -Taskfunktion/P -Tasse/N -Tastatur/P -Tastaturbelegung -Tastaturblech -Tastaturblock -Tastatureinheit/P -Tastaturfeld -Tastaturfolie/N -Tastaturfunktion/P -Tastaturplatine -Tastaturplatte -Tastaturtreiber/S -Tastenausfhrung -Tastenbedienung -Tastenbelegung/P -Tastenbesttigung -Tastenbettigung -Tastenbezeichnung -Tastencode/S -Tastendecodierung -Tastendioden -Tastendrcke/N -Tastendruck/EPS -Tastenfehler -Tastenfeld/T -Tastenfelder -Tastenfolie/N -Tastenfunktion/P -Tasteninformation/P -Tastenkappen -Tastenkennzeichnung -Tastenkrper -Tastenkombination/P -Tastenleiterplatte -Tastenplatine -Tastenrahmen -Tastenstellung -Tastentechnik -Tastentimer -Tastentrger -Tastenberblick -Tastenzuordnung/P -Taster/NS -Tastknopf -Tastsinn/PS -Tastverhltnis/Qq -Tatar/PS -Tatbestnde/N -Tatbestand/S -Tateinheit/P -Tatendrang -Tatort/EPST -Tatsache/N -Tatsachenbericht/EPS -Tatsachenverschleierung -Tattoo/S -Tatverdacht -Tatze/N -Tau -Taubenfreund -Taubenschlag/STp -Taubenzucht/P -Taubheit -Taubnessel/N -Taubstummensprache -Taucher/FNS -Taucheranzug/STp -Taucherausrstung -Taucherei -Taucherglocke/N -Taucherlunge/N -Tauchglocke -Tauchkammer -Tauchkolben/S -Tauchsieder/N -Tauchsystem/S -Tauchtechnik -Tauchtiefe -Tauchversuch/EPS -Taufakt/EPS -Taufbecken/S -Taufbchern -Taufbuch/S -Taufname/N -Taufpate/FN -Taufschein/EPS -Taufstein/EPS -Taufzeugen -Taugenichts/EPT -Tauglichkeit -Taumel/S -Taunus -Taupunkt/EPST -Tausch/T -Tauschexemplar -Tauschgeschft/PS -Tauschhandel -Tauschmittel/NS -Tauschobjekt/EPS -Tauschpartner/S -Tauschwert/PS -Tausender/N -Tausendfler/NS -Tausendjahrfeier/N -Tausendsasa/S -Tautologie/N -Tautropfen/S -Tauwerk/EPS -Tauwetter -Tauziehen -Taxameter/NS -Taxator/PS -Taxen -Taxi/S -Taxifahrer/NS -Taxistnde -Taxistand/S -Taylor/S -Taylorismus -TeX -Team/S -Teamarbeit -Teamwork -Technik/PR -Technikentwicklung -Techniker/FNS -Technikerschule/N -Technikum/S -Technisieren/JS -Technokrat/P -Technokratie -Technologe/N -Technologie/N -Technologietrger -Technophilie -Techtelmechtel/N -Teckel/NS -Teddy/S -Teddybr/P -Tee/RS -Teebchse/N -Teeei/R -Teeernte/N -Teegebck/EPS -Teegeschirr/PS -Teekanne/N -Teekessel/NS -Teelicht/ES -Teelffel/NS -Teemaschine/N -Teenager/NS -Teer/S -Teerpappe/N -Teerstrucher/N -Teerstrauch/S -Teesieb/EPS -Teetasse/N -Teewgen -Teewrmer/NS -Teewagen -Teezeremonie -Teflonpfanne/N -Tegernsee -Teheran -Teich/EPS -Teig/S -Teigwaren -Teilabbildung/P -Teilabnahme/N -Teilansicht -Teilaspekt/EPST -Teilaufgabe/N -Teilausdrcke/N -Teilausdruck/S -Teilautomatikfunktion/P -Teilbarkeit -Teilbaum/STp -Teilbereich/EPS -Teilbetrag/STp -Teilbus/Qq -Teilbusabschnitt/EPS -Teilbusbereich/EPS -Teilbusleitung/P -Teilbusbersicht/P -Teilchen/S -Teildarlehen -Teildisziplin/P -Teileigner -Teilelagerung -Teileliste -Teilenamen -Teilenummer -Teiler/S -Teilerfolg/EPS -Teiles -Teilflche -Teilgebiete/N -Teilgruppe/N -Teilgruppenautomatiken -Teilhaber/FNS -Teilhaberschaft/P -Teilinstrument -Teilknochen -Teilkomponente/N -Teilkredite -Teillieferung/P -Teilmenge/N -Teilmengenrelation/P -Teilnahme -Teilnahmebedingung/P -Teilnahmslosigkeit -Teilnehmer/FNS -Teilnehmergebhren -Teilnehmerkreis/EPT -Teilnehmerperspektive -Teilnehmerquote/N -Teilnehmerverzeichnis/Qq -Teilnehmerzahl -Teilnetze -Teilposition/P -Teilprivatisierung -Teilschnittmaschine/N -Teilschnittprofilen -Teilsprache/N -Teilsprachenbeziehung/P -Teilstaaten -Teilstreb/S -Teilstrebverfahren -Teilstrecke -Teilstreitkrfte -Teilstrich/EPT -Teilstck -Teilsystem/EPS -Teilung/P -Teilungsartikel/S -Teilungszahl/P -Teilzahlung/P -Teilzahlungsbanken -Teilzeitkrfte/N -Teilzeitkraft -Teilzustnde/N -Teint/S -Tel -Tel. -Telefax -Telefon/EPS -Telefonanruf/EPS -Telefonanschluss/Tp -Telefonapparat/EPS -Telefonat/EPS -Telefonbcher/N -Telefonbuch/S -Telefondraht -Telefongebhr/P -Telefongesellschaft/P -Telefongesprch/EPST -Telefonhrer/NS -Telefonist/FP -Telefonkabel/NS -Telefonkarte/N -Telefonleitung/P -Telefonliste/N -Telefonmodem -Telefonnetz -Telefonnummer/N -Telefonberwachung/P -Telefonverbindung/P -Telefonverkehr -Telefonvermittlung -Telefonzelle/N -Telefonzentrale -Telegrafenweg -Telegrafie -Telegrafieprfung -Telegramm/EPS -Telegrammanschrift/P -Telegrammformate -Telegrammformular/EPS -Telegrammstil/S -Telegraph/Pf -Telegraphenmter/N -Telegraphenamt/T -Telegraphenmast/ET -Telegraphie -Telegraphist/FP -Telekinese -Telekom -Telekommunikation -Telekopierer -Telematik -Telemetrie -Teleobjektiv/EPS -Teleologie -Telepathie/N -Teleshopping -Teleskop/EPS -Teleskopschienen -Teleskopzylinder -Television -Telex -Telexdienst/EPT -Teller/NS -Tellermtzen -Tempel/NS -Tempelbau -Tempelherr/NP -Tempelraub -Tempelritter/NS -Tempelschndung/P -Temperafarbe -Temperament/EPST -Temperatur/P -Temperaturnderung -Temperaturabhngigkeit -Temperaturanstieg -Temperaturausgleich -Temperaturbedingung/P -Temperaturbereich/S -Temperatureffekte -Temperatureinfluss/Tp -Temperaturfhler -Temperaturgrenzschichten -Temperaturkammer -Temperaturkoeffizient -Temperaturkompensation -Temperaturmessstellen -Temperaturmessung/P -Temperaturrckgang -Temperaturschichtung/P -Temperaturschwankung/P -Temperatursensor/PS -Temperaturstress/EPT -Temperaturunterschied/EPST -Temperenzler/NS -Tempo/S -Tempobeschrnkung/P -Tempospiel -Tempus -Tendenz/P -Tendenzschutz -Tendenzstck/EPS -Tendenzwende/N -Teneriffa/S -Tenne/N -Tennessee -Tennis -Tennisball/Sp -Tennispltze -Tennisplatz/T -Tennisprofi -Tennisschlger/NS -Tennisspiel/PRS -Tennisspieler/FNS -Tennisturnier/EPS -Tenniswundergerte -Tenre/N -Tenor/S -Tenorhornist -Tensor/S -Tensorgleichung/P -Teppich/EPS -Teppichbden -Teppichboden -Teppichkehrmaschine -Teppichknpfer/FNS -Teppichstange -Tequila/S -Term/EPS -Termdarstellung/P -Termersetzung/P -Termersetzungsregel/N -Termersetzungssystem/EPS -Termin/EPS -Terminabsprache/N -Terminal/S -Terminalbildschirm/S -Terminaleingang -Terminalleitung/P -Terminalmode -Terminaltreiber/S -Terminator/PS -Terminauftrag/STp -Terminbesttigung -Terminbestellung -Termineinhaltung -Terminfestsetzung -Termingeld -Termingeschft/EPST -Termingut -Terminhandel/S -Terminierung -Terminierungsnachweis/EPT -Terminkalender/NS -Terminmarkt/Tp -Terminologie/N -Terminplne/N -Terminplan/S -Terminschwierigkeit/P -Terminvorschlag/STp -Terminzusage/N -Termite/N -Terpentin/S -Terrain -Terrainverlust/EPST -Terrasse/N -Terrine/N -Territorialfrsten -Territorialreserve -Territorialstdte -Territorien -Territorium/S -Terror/S -Terrorakte -Terrorgruppe -Terrorismus -Terrorist/FP -Terroristengruppen -Terroristenorganisation/P -Terrornation/P -Terrororganisation/P -Terrorwelle -Terz/P -Tesafilm -Tessin -Test/S -Testablauf/STp -Testabteilung/P -Testadapter -Testakte -Testament/EPS -Testamentserffnung -Testamentsvollstrecker/NS -Testaufbau -Testaufbauten -Testausdruck/ST -Testausgang -Testbeispiel -Testbericht/EPS -Testbeschreibung -Testbetrieb -Testbox -Testclip/S -Testeinrichtung -Testeinsatz -Testergebnis/Qq -Testerkennung -Testerschnittstelle -Testfall/Sp -Testfenster -Testflug/STp -Testfrage/N -Testgert/EPST -Testhilfsmittel -Testkpfe -Testkonfiguration/P -Testkonstellation/P -Testkosten -Testkreis/EPT -Testlauf/Sp -Testmarkt -Testmessung -Testmethode/N -Testmittel/N -Testmglichkeit/P -Testmode/S -Testmodus -Testmuster -Testpattern/S -Testperson/P -Testpilot -Testpin/S -Testpinadapter/S -Testpinplatine/N -Testpintrger/S -Testpltze/N -Testplatzausrstung -Testpreis/EPT -Testprogramm/EPS -Testprotokolldrucker -Testprotokolle/N -Testpunkt/EPST -Testrennen/S -Testroutine/N -Testsoftware -Testspiele -Teststopp -Teststoppabkommen -Testsystem/S -Testtiefe -Testumgebung -Testverfahren/S -Testversion/P -Testzeit -Testzweck/EPST -Tetris -Teuern/JS -Teuerns -Teuerung/P -Teuerungswelle -Teuerungszulage/N -Teufel/MNS -Teufelei/P -Teufelsaustreibung -Teufelskerl/EPS -Teufelskreis/ET -Texas -Text/EPT -Textnderung/P -Textanfang/S -Textanzeige/N -Textausschnitt/EPS -Textbaustein/EPS -Textbereich/EPST -Textblcke/N -Textblock/S -Textblockende -Textbcher/N -Textbuch/S -Textbuffer/S -Textdarstellung/P -Textdatei -Texteditor/S -Texteinfgung/P -Texteingabe/N -Textende/NS -Texterfassung -Textfelder -Textfile/S -Textil/S -Textilausrstung -Textilbetrieb -Textilbranche -Textilfabrik -Textilfachmann -Textilgrohandlung -Textilien -Textilindustrie -Textilkaufmann -Textilmaschinen -Textilrohstoffe -Textilveredelung -Textilwerk -Textilwirtschaft -Textinformation/P -Textkorrektur/P -Textlnge/N -Textmaterial -Textmenge/N -Textposition/P -Textprogramm/EP -Textrand -Textsalat -Textseite/N -Textstelle/N -Textsteuerbefehle -Textsystem/EPS -Textteil/EPS -Textumbruch -Textur/P -Textverarbeitung -Textverarbeitungsprogramm/EPS -Textverarbeitungssystem/EPS -Textvorlage/N -Textwolf -Textzeichen/S -Textzeile/N -Thailand -Thatcher/S -Theater/NS -Theaterabend -Theaterauffhrung/P -Theaterbesitzer -Theaterbesuche/R -Theaterbesucher/FNS -Theaterinstitut -Theaterkarte/N -Theaterkassen -Theaterkritiker -Theaterleitung -Theatermann -Theaterplatz -Theatersaal -Theaterspiele -Theaterstck/PS -Theatervorstellung -Theaterzettel/NS -Theke/N -Thema/S -Thematik -Thematisierens -Thematisierung/P -Themen -Themenbereich/EPS -Themenkreis/EPT -Themistokles -Theo/S -Theodor/ES -Theologe/N -Theologie -Theologieprofessor/S -Theologiestudent -Theologiestudium -Theorem/EPS -Theoretiker/NS -Theoretisierens -Theoretisierung/P -Theorie/N -Therapeut/FP -Therapeutik -Therapie/N -Theresa/S -Therese/S -Thermalbdern -Thermalbad -Thermalbadehaus/Tp -Thermalkuren -Thermalquelle/N -Therme/N -Thermik -Thermoabschalter -Thermodynamik -Thermoelement/EPS -Thermometer/NS -Thermometersulen -Thermometerstnde -Thermometerstand/S -Thermoschalter -Thermosflasche -Thermostat/PS -Thesaurus -These/N -Thomas -Thorax/EP -Thorsten/S -Thriller -Thromben -Thrombose/N -Thrombozyt/P -Thrombus -Thron/ST -Thronanwrter/NS -Thronbesteigung/P -Thronbewerber/N -Thronerbe/N -Thronfolge/R -Thronfolger/NS -Thronhimmel/NS -Thronkandidatur -Thronruber/NS -Thronrede -Thronstreit -Thringen -Thringer/FNS -Thunfisch/EPST -Thurgau -Thymian/EPS -Thyristor/P -Thyssen -Tibet -Tick/S -Ticket/S -Tiebreak/S -Tiefangriff/EPS -Tiefatmung/P -Tiefauslufer -Tiefbau/S -Tiefbauamt -Tiefbaugeschft -Tiefbauunternehmen -Tiefbauunternehmer -Tiefblick/EPS -Tiefdecker/S -Tiefdruck/S -Tiefdruckgebiet/PS -Tiefebene/N -Tiefenproben -Tiefenstrmung -Tiefentladung -Tiefenwirkung -Tiefflieger/NS -Tiefflug/STp -Tiefgang/Sp -Tiefgarage/N -Tiefkhlkost -Tiefkhltruhe/N -Tiefkhlwaren -Tieflnder/N -Tieflade/N -Tiefladeprogramm -Tiefland/ST -Tieflffel/NS -Tieflffelbagger/N -Tiefparterre -Tiefpreis/E -Tiefschlaf -Tiefschlag/S -Tiefschnitte/N -Tiefsee/N -Tiefseeforschung -Tiefseegraben -Tiefseekreuzfahrt -Tiefseetaucher -Tiefsinn/S -Tiefstnde/N -Tiefstand/S -Tiefstellung -Tiefstkurs/EPT -Tiefstpreise -Tiefstpunkt -Tiefststnde/N -Tiefstwerte -Tieftauchen -Tieftaucher -Tiegel/N -Tier/EMPST -Tierrzte/FN -Tierart/P -Tierarzt/T -Tierbndiger/FNS -Tiergrten -Tiergarten/S -Tierhaltung -Tierhandlung/P -Tierheilkunde -Tierkrper/S -Tierkreis/ET -Tierkunde/N -Tierleben/S -Tiermarkt/STp -Tierprke -Tierpark/S -Tierpsychologe -Tierqulereien -Tierreich/EPS -Tierresten -Tierschutzverein/EPS -Tiersprache/N -Tierversuch/PS -Tierwelt -Tierzucht/P -Tiger/FNS -Tiki/S -Tilde/N -Tilgens -Tilgung/P -Tilgungsfond -Tilgungsraten -Tilsit/R -Tim/S -Timing -Timinglogik/P -Timingschema -Timingsignal/EPS -Tina/S -Tinktur/P -Tinte/N -Tintenfsser -Tintenfass/MT -Tintenfisch/EPST -Tintenfleck -Tintenkleckse/N -Tintenstift/PS -Tintenstrahldrucker -Tipp/S -Tippbetrieb -Tippdienste/N -Tippfehler/NS -Tippfrulein -Tippzettel -Tirol/R -Tiroler/FNS -Tisch/EPST -Tischdame/N -Tischdecke -Tischdrucker -Tischempfnger/NS -Tischgste/N -Tischgast -Tischgebet/EPST -Tischgert/EPST -Tischgesprch/EPS -Tischherr/NP -Tischkante -Tischkarte/N -Tischklopfen -Tischlampe/N -Tischler/FS -Tischlerei/P -Tischlerleim/EPS -Tischlermeister -Tischmodell -Tischnachbar/FN -Tischnummer -Tischplatte/N -Tischrede/N -Tischrcken -Tischtennis -Tischtcher -Tischtuch -Tischwein/EPS -Tischzeit/P -Titan/FPS -Titanic -Titel/NS -Titelbild/S -Titelbildern -Titelbltter -Titelblatt/S -Titelfoto/S -Titelgewinn -Titelhalter/NS -Titelkmpfe/N -Titelkampf -Titelmhle -Titelpartie -Titelrollen -Titelschrift -Titelseite/N -Titeltrger -Titelverteidiger/FNS -Titelzeile/N -Tito/S -Titulatur/P -Titulierens -Titulierung/P -Tivoli -Tchter/MN -Tlpel/NS -Tlpelei/P -Tnens -Tnung/P -Tpfe/NR -Tpfer/FS -Tpferei -Tpferscheibe/N -Tpferwaren -Trin/F -Ttens -Ttung/P -Toast/S -Toaster -Tobias -Tobsucht -Tobsuchtsanfall/Sp -Tochter -Tochterdatei/P -Tochterentwicklung -Tochterfirmen -Tochtergeneration/P -Tochtergesellschaft -Tochterunternehmen -Tod/EST -Todesngsten -Todesahnung -Todesangst -Todesanzeige/N -Todesarten -Todesengel -Todeserklrung -Todesfall/p -Todesgedenktag -Todesgefahr/P -Todeskmpfen -Todeskampf/S -Todeskandidat/P -Todesliste -Todesopfer/NS -Todesschuss/Tp -Todessto/Tp -Todesstrafe/N -Todesstunde -Todessymbole -Todestag/EPST -Todestrchtigkeit -Todesursachen -Todesurteil/EPS -Todesverachtung/P -Todeswnschen -Todeswunde/N -Todeswunsch/T -Todeszelle -Todfeind/PS -Todsnde -Tofu/S -Tohuwabohu -Toilette/N -Toilettenartikel/S -Toilettengarnitur/P -Toilettenpapier/EPS -Toilettenseifen -Toilettentisch/ET -Tokio/S -Toleranz/P -Toleranzbereich/EPS -Toleranzgrenze/N -Toleranzschranke/N -Toleranzwert -Tollhaus/Tp -Tollheit/P -Tollkirsche/N -Tollkhnheit -Tollpatsch/EPST -Tollwut -Tomate/N -Tomatenketchup/S -Tomatenketschup/S -Tomatensauce -Tombola/S -Ton/EPST -Tonabnehmer/S -Tonalitt -Tonarm/PS -Tonart -Tonaufnahme/N -Tonbder -Tonbnder/N -Tonbad -Tonband -Tonbandgert/EPS -Tonbandprotokolle -Tondichtung -Tonerde -Tonfall/S -Tonfrequenz/P -Tongeneratoren -Tongeschirr/PS -Tonhhe -Toningenieur/EPS -Tonkrug/STp -Tonknste/N -Tonknstler/FNS -Tonkunst -Tonlage -Tonleiter/N -Tonmeister/S -Tonnage/N -Tonne/N -Tonnengehalt/S -Tonnengewlbe/NS -Tonpfeife -Tonregler/NS -Tonrundfunk/S -Tonsilbe -Tonspur/P -Tonstreifen -Tonstudio -Tonsur/P -Tontauben -Tontaubenschieen/S -Tontechniken -Tonverstrker/N -Tonware/N -Tool/S -Top -Topas/EPT -Topdesign -Topf/S -Topfpflanze/N -Topfzeit -Topographie/Nf -Topologie -Topp -Toppmast/EPST -Toppsegel/N -Tor/EPS -Torchance/N -Torero/S -Torf/S -Torfbden -Torfboden/S -Torfmoor/EPS -Torfmull/S -Torfolge -Torheit -Torhter/NS -Tori -Torlatten -Torlauf/Sp -Torlinie/N -Tornado/S -Tornister/NS -Torpedo/S -Torpedoboot/PS -Torpfosten/S -Torraum/STp -Torschlusspanik -Torschtzen -Torschtzenknig -Torschuss/Tp -Torsegen -Torso/S -Torte/N -Tortenheber/N -Tortur/P -Torus -Torvalds -Torverhltnis/Qq -Torwart/EPS -Totalausfall/Sp -Totalflche -Totalisator/P -Totalkollaps -Totalpleite -Totalschaden/S -Totalverlust -Totalzusammenbruch/T -Totbereich/EPS -Totenbahre/N -Totenbett/S -Totenblsse -Totenfeier -Totenglocke/N -Totengrber/S -Totenhemd/S -Totenkpfe/N -Totenkopf/S -Totenliste/N -Totenmasken -Totenmesse/N -Totenreich/EPS -Totenschdel/NS -Totenschein/PS -Totenstarre -Totentnze/N -Totentanz/T -Totenurne/N -Totenwachen -Totgeburt/P -Toto/S -Totoblock -Totoquoten -Totschlge/NR -Totschlger/N -Totschlag/Sp -Totschlagversuch -Totzeit -Touchscreen/S -Toulouse -Tour/P -Tourenrder/N -Tourenrad -Tourenwagen/S -Tourenzhler/S -Tourenzahl/P -Tourismus -Tourist/FP -Touristenattraktion/P -Touristenhochburgen -Touristenhotel -Touristenland -Touristik -Touristikunternehmen -Tournee/N -Toyota -Trchtigkeit -Trgerblech/E -Trgerblechoberkante -Trgerchassis -Trgerflugzeug/E -Trgerfolie -Trgergehuse -Trgerin/F -Trgerlhne/N -Trgerlohn -Trgern -Trgerpapier/S -Trgerplatte/N -Trgerrahmen -Trgerrakete -Trgers -Trgerschaft -Trgerverein -Trgheit -Trgheitsgesetz -Trnendrse/N -Trnenfluss/T -Trnengasbomben -Trnengase/N -Trnenscke/N -Trnensack -Trnkens -Trnkung/P -Trumer/FNS -Trumerei/P -Trab/R -Trabant/P -Trabantenstdte/N -Trabrennen/S -Tracht -Trackball/S -Tradition/P -Trafalgar -Trafo/S -Trafobecher -Trafoinduktivitt -Tragbahre/N -Tragbalken/S -Tragfhigkeit -Tragflchen -Tragflgelboot/EPS -Tragik/PR -Tragiker/NS -Tragikomdie/N -Tragkrbe/N -Tragkorb -Tragkrfte/N -Tragkraft -Tragde/FN -Tragdie/N -Tragriemen/S -Tragschrauber/N -Tragtaschen -Tragtier/EPS -Tragtte/N -Tragweite/N -Tragwerk/EPS -Trainer/FN -Training/S -Trainingsanzug/STp -Trainingskonzept -Trainingsplatz -Trainingsprogramm/EPS -Trainingstag -Trajektschiff/EPST -Trakt -Traktat/EPS -Traktion -Traktor/EPS -Traktorfahrer -Trampelpfad/PS -Trampeltier/PS -Tramper -Tran/EPS -Trance/N -Tranche/N -Tranchierbesteck/EPS -Tranchiermesser/NS -Tranks -Tranquilizer -Transaktion/P -Transaktionskosten -Transfer/S -Transferdruck/T -Transferliste -Transferrate/N -Transformation/P -Transformator/PS -Transfusion/P -Transistor/PS -Transistorkhlblech -Transistormischer/S -Transistorschalter -Transistorvergleich -Transitautobahn -Transithandel/S -Transitionssystem/EPS -Transitivitt -Transitverkehr/S -Transitweg -Transjordanien -Transmission/P -Transmitsignale -Transparentfolie -Transparentmode -Transparenz -Transpiration/P -Transplantation/P -Transport/EPRS -Transportachse/N -Transportarbeiter/FNS -Transportbann -Transportbehlter -Transporter/NS -Transporteur/EPS -Transportflugzeug/PS -Transportgefhrdung -Transportgelegenheit/P -Transportgewicht -Transportierbarkeit -Transportmedium -Transportminister -Transportmittel/N -Transportraum/STp -Transportrichtung -Transportschden -Transportschaden/S -Transportschiff/PS -Transportschnecke -Transportskizzen -Transportsystem -Transportunternehmen/S -Transportunternehmer -Transportvorrichtung -Transportwalze -Transportweg -Transportwesen/S -Transportzeit -Transputer/S -Transrapid/S -Transvaalrepublik -Transzendenz -Trapez/EPT -Trapezknstler/FNS -Trassant/P -Trassat -Trasse/N -Tratsch -Tratte/N -Traualtar -Traube/N -Traubenlese/N -Traubensften -Traubensaft/S -Traubenzucker/NS -Trauens -Trauer -Traueranzeigen -Trauerfall/Sp -Trauerfeier/N -Trauerflor/S -Trauerhalle -Trauerkleid/S -Trauerkleidern -Trauerkleidung -Trauermrschen -Trauermarsch/T -Trauerrnder/N -Trauerrand -Trauerschleier/NS -Trauerspiel/EPS -Trauerweiden -Trauerzug/STp -Traufe/N -Traulichkeit -Traum/ST -Trauma/S -Traumata -Traumatisierens -Traumatisierung/P -Traumberuf -Traumbild/RT -Traumdefizit -Traumdeuter/FNS -Traumforschung -Trauminsel -Traumlnder/N -Traumland/S -Traumrenditen -Traumresultat/EPS -Traumwelt/P -Traumzeit -Traureden -Traurigkeit -Trauring/EPS -Trauschein/EPS -Trauung/P -Trauzeuge/NS -Trecker/NS -Treff/RS -Treffens -Treffer/NS -Trefferquote/N -Trefflichkeit -Treffpunkt/EPST -Treffsicherheit -Treibeis/T -Treiber/NS -Treiberbaustein/E -Treiberkarte/N -Treiberprogramm/EPS -Treibersoftware -Treibertransistoren -Treibgas/ET -Treibhaus/Tp -Treibhauspflanze/N -Treibhlzern -Treibholz/T -Treibjagden -Treibkrfte/N -Treibladung/P -Treibmine -Treibmittel/NS -Treibl -Treibriemen/S -Treibsalat -Treibsand -Treibstoff/EPS -Treibstoffpreise -Treibstoffproduktion -Treidelpfad/EPST -Trenchcoat -Trend/S -Trendlinie/N -Trendmeldung/P -Trendwende/N -Trennadapter -Trennens -Trennflche/N -Trennmittel -Trennmodus -Trennplatten -Trennprogramm/EPS -Trennschrfe/N -Trennschicht/P -Trennstrich -Trenntrafo/S -Trennung/P -Trennungslinie/N -Trennungsschmerz/P -Trennungsstriche/N -Trennwnde/N -Trennwand -Trennzeichen/S -Trense/N -Treppe/MN -Treppenabstze -Treppenabsatz/T -Treppenautomatik -Treppenflucht -Treppengelnde/R -Treppengelnder/N -Treppenhaus/Tp -Treppenhhe -Treppenkante -Treppenschneiden -Treppensignal -Treppenstufe/N -Tresen/S -Tresor/EPS -Tretanlasser/N -Treter/NS -Tretmine/N -Tretmhle/N -Treuebrche/N -Treuebruch/S -Treueid/EPST -Treueprmie -Treueverhltnis/Qq -Treuhnder/FNS -Treuhnderschaft/P -Treuhand -Treuhandbro -Treuhandgesellschaft/P -Treuhandstelle -Treulosigkeit/P -Trias -Tribne/N -Tribnenplatz -Tribun/EPS -Tribunal/EPS -Tribut/EPS -Trichter/NS -Trick/S -Trickablauf/Sp -Trickaufnahme/N -Trickfilm/EPS -Trickfilmsoftware -Tricksequenzen -Triebe/G -Triebfeder/N -Triebkrfte/N -Triebs -Triebverbrecher/N -Triebwagen/S -Triebwerk/EPS -Triefnase -Trier/S -Triest -Triggerbarkeit -Triggereingang/Sp -Triggerkanal -Triggermagnet -Triggerquellen -Triggerzeitpunkt -Trigonometrie -Trikot/S -Trikotage/N -Triller/S -Trillerpfeife/N -Trillion/P -Trilogie/N -Trinkbecher/NS -Trinkbranntwein/EPS -Trinker/FNS -Trinkerheilanstalt/P -Trinkgelagen -Trinkgeld/R -Trinkglser/N -Trinkglas/T -Trinkhalle/N -Trinklied/T -Trinkliedern -Trinksprche/N -Trinkspruch/S -Trinkstrke -Trinkwasser -Trinkwasseraufbereitung -Trinkwasserquellen -Trinkwasserversorgung -Trio/S -Triole/N -Trip/S -Tripel/NS -Tripelspiegel -Tripolis -Tripper/NS -Trismen -Trismus -Tristesse/N -Trittbrett/RS -Tritte/N -Trittleiter/N -Tritts -Triumph/EPS -Triumphbgen -Triumphbogen/S -Triumphzug/STp -Triumvirat -Trivialitt/P -Trivialroman -Trdelei/P -Trdelmarkt/STp -Trdler/N -Trpfchen/S -Trstens -Trster/FNS -Trstung/P -Trockenbatterie/N -Trockenbden -Trockenboden/S -Trockendock/S -Trockeneis/T -Trockenelement/EPST -Trockenfule -Trockenfrchte -Trockengemse/S -Trockenhaube -Trockenhefe/N -Trockenheit -Trockenkartoffel/N -Trockenlegung -Trockenma/EPT -Trockenmilch -Trockenmittel -Trockenperiode -Trockenrasierer/S -Trockenreinigung/P -Trockenversuch -Troja -Trojaner/FNS -Trommel -Trommelbremse -Trommelfell/P -Trommelfeuer/NS -Trommelmagazin/EPS -Trommelschlag/Sp -Trommelstcken -Trommelstock/S -Trommelwirbel/NS -Trommler/NS -Trompeter/N -Tropen -Tropenhelm/EPS -Tropeninstitut -Tropenkoller/S -Tropenkrankenhaus/Tp -Tropf/S -Tropfstein/EPST -Tropfsteinhhle -Tropfzeit -Trophe/N -Tross/EPT -Trost/S -Trostlosigkeit -Trostpflaster -Trostpreis/EPT -Trott/S -Trottel/NS -Trottoir/S -Trotzki/S -Trotzkpfe/N -Trotzkopf/S -Trotzreaktion/P -Troubadour/EPS -Trbens -Trbheit -Trbsal -Trbseligkeit -Trbsinn/S -Trbung/P -Trffel/NS -Trmmer/N -Trmmerfeld/RS -Trmmerhaufen/S -Trmpfe/N -Trubel/S -Trudeau/S -Trugbild/RT -Trugschluss/Tp -Truhe/N -Trumpf/S -Trunk -Trunkenbold/EPST -Trunkenheit/P -Trunksucht -Truppe/N -Truppenabzug/STp -Truppenbewegung -Truppengattung/P -Truppenhilfe -Truppenkontingent -Truppenkonzentration/P -Truppenparade -Truppenreduzierung -Truppenrckzug/STp -Truppenschauen -Truppenstrke -Truppenstationierung -Truppenstationierungskosten -Truppenstationierungsvertrag/STp -Truppenteile -Truppentransporter/NS -Truppenbung/P -Truppenbungspltzen -Truppenbungsplatz/T -Truppenversorgung -Truppenvertrag/STp -Truppenzusammenziehung -Truppfhrer/NS -Truthhne/N -Truthahn -Truthenne/N -Trutzbndnis/Qq -Tschaikowsky/S -Tschebyscheff/S -Tscheche/FN -Tschechien/S -Tschechoslowakei -Tschernobyl -Tschetschenien/S -Tschiang/S -Tbingen -Tcher/N -Tchtigkeit -Tcke/N -Tftler/NS -Tftlergeist -Tll/S -Tmmler -Tmpel/NS -Tpfel/MS -Tr/EMP -Trangel -Trenschlagen -Trflgel/N -Trfllung/P -Trgriff/EPS -Trke/FN -Trkei -Trkise/NS -Trklinke/N -Trmchen/S -Trpfosten/S -Trrahmen/S -Trschild/RS -Trschlieer/S -Trschlsser/N -Trschloss/T -Tte/N -Tube/N -Tuberkel/S -Tuberkulose/N -Tuch/T -Tuchfabriken -Tuchfhlung/P -Tuchhndel/N -Tuchhndler/FNS -Tuchhandel -Tuchhandlung/P -Tuchindustrie -Tuchmacher/NS -Tuff/EPS -Tuffstein/PS -Tugend/P -Tugendbold/EPST -Tugendrichter/FNS -Tulpe/N -Tulpenzwiebel/N -Tulpenzwiebelspekulation -Tummelpltze/N -Tummelplatz/T -Tumor/EPS -Tumult/EPS -Tumultuant/P -Tundra -Tunesien -Tunfisch/EPST -Tunichtgut/S -Tunis -Tunnel/NS -Tunnelbauanwender -Tunnelbaus -Tunnelbohrmaschine -Tunnelflucht -Tunnelvortriebsmaschine -Tunnelwahrscheinlichkeit/P -Tuns -Tupel/NS -Tupelbildung -Tupfer/NS -Turban/EPS -Turbine/N -Turbinenmotor/PS -Turbinenstrahltriebwerk/PS -Turbokupplungsregelung -Turbomotor/PS -Turin/S -Turing -Turingmaschine/N -Turm/EST -Turmfalke/N -Turmspitzen -Turmspringen/S -Turmuhren -Turner/FNS -Turnerschaft -Turngert/EPS -Turnhalle/N -Turnhosen -Turnier/EPS -Turnierlanze -Turnlehrer/FNS -Turnriege -Turnschuh/EPS -Turnschule -Turnspiele/N -Turnstunde/N -Turnunterricht/PS -Turnus -Turnverein/EPS -Turteltaube/N -Tusch -Tuschfarben -Tuschzeichnung/P -Tutor/FPS -Tutorien -Tutorium/S -Tutu/S -Tweedanzug/S -Tycoon -Typ/EPS -Typanalyse/N -Typdeklaration/P -Typenangabe/N -Typenbezeichnung/P -Typenblatt -Typendruck/EPS -Typenhebel/NS -Typenkorbdrucker -Typennummer/N -Typenraddrucker -Typenschild/RST -Typfehler/NS -Typhuskranke/NR -Typinferenz -Typinformation/P -Typisierens -Typisierung/P -Typisierungskonzepte -Typklasse/N -Typnummer -Typograph/Pf -Typographie/Nf -Typologie/N -Typschema/S -Typschemata -Typtest/S -Typus -Typverbnde/N -Typverband/S -Tyrann/FP -Tyrannei -belbefinden/S -beln -bels -belstnde/N -belstand/S -beltter/FNS -beltat -bens -beralterung -berangebot/EPST -beranstrengens -beranstrengung/P -berarbeitens -berarbeitung/P -berbau/S -berbauten -berbeanspruchung -berbein/EPS -berbelastens -berbelastung/P -berbelegung -berbelichtung/P -berbevlkerung -berbewertens -berbewertung/P -berbiss/T -berbleibsel/NS -berblendung -berblick/S -berbringens -berbringer/FNS -berbringung/P -berbrckens -berbrckung/P -berbrckungsbeihilfe -berbrckungsfinanzierung/P -berbrckungsgeld -berbrckungsgeldern -berbrckungskredit -berbrckungsrckzahlung -berbrckungszeit -berdruck/S -berdruckkabine -berdruckkapselung -berdruckventil/EPS -berdruss/T -bereifer/S -bereignens -bereignung/P -bereilens -bereilung/P -bereinknfte/N -bereinkunft -bereinstimmens -bereinstimmung/P -berfahrten -berfall/Sp -berfallkommando/S -berfluss/Tp -berflussgesellschaft -berflutens -berflutung/P -berfracht -berfremdung -berfhrens -berfhrung/P -berfllens -berfllung/P -berfunktion/P -bergabe -bergabeprotokoll/EPS -bergang/Sp -bergangsadapter -bergangsfunktion/P -bergangsgebiet -bergangskabinett -bergangsperiode/N -bergangsregierung -bergangsstadium/S -bergangsstecker -bergangsstelle/N -bergangszeit/P -bergehuse -bergewicht/EPS -bergriffe -bergriffs -bergre/N -berguss/Tp -berhang/S -berheblichkeit/P -berhitzung -berhhen/JS -berholspur/P -berinterpretation/P -berkapazitt -berkleidung -berkonsum -berlufe/NR -berlufer/N -berlagerns -berlagerung/P -berlagerungsstruktur -berlandleitung/P -berlandzentralen -berlappens -berlappung/P -berlassens -berlassung/P -berlassungsvereinbarung/P -berlastabschaltung -berlastgetriebe -berlastkupplung -berlastschreiber -berlastschutz -berlastung/P -berlauf/Sp -berlebenschance/N -berlebensethik -berlebenskraft -berlebenslager -berlebenspreis/EPT -berlebenstraining -berlebenstrieb -berlegenheit -berlegenheitsgefhl -berlegens -berlegung/P -berlegungsstand -berlieferns -berlieferung/P -berlistens -berlistung/P -bermchte/N -berma/EPT -bermensch/P -bermittelns -bermittlung/P -bermden/JS -bermut/S -bernachtens -bernachtservice -bernachtung/P -bernachtungsmglichkeit/P -bernahme -bernahmeangebot -bernahmebedingung/P -bernahmefieber -bernahmekapital -berpflanzung/P -berproduktion/P -berprfbarkeit -berprfens -berprfung/P -berquerens -berquerung/P -berraschens -berraschung/P -berraschungsangriff/ET -berraschungssieg -berredens -berredung/P -berredungsknste/N -berredungskunst -berreichens -berreichung/P -berrest/EPST -berrumpelns -berrumpelung/P -berrumplung/P -bersttigens -bersttigung/P -berschtzens -berschtzung/P -berschall/S -berschicht/P -berschlag/Sp -berschlagsrechnung/P -berschneidens -berschneider/S -berschneidung/P -berschnitts -berschreibmodus -berschreitens -berschreitung/P -berschrift/P -berschuh/PS -berschuss/Tp -berschussbestnde -berschussliquiditt -berschwnglichkeit -berschwang/S -berschwemmens -berschwemmung/P -berschwemmungskatastrophe -bersee -berseehafen -berseeverkehr/S -bersendung/P -bersetzens -bersetzer/FNS -bersetzerbau/RS -bersetzerbauer/NS -bersetzerpreis/EPT -bersetzung/P -bersetzungsart -bersetzungsbro/S -bersetzungsfehler/N -bersetzungsfirma -bersetzungshilfe -bersetzungsinstitut -bersetzungslauf/Sp -bersetzungsphase/N -bersetzungsverhltnis/Qq -bersetzungszeit/P -bersicht/P -bersichtlichkeit -bersichtskarte/N -bersichtstabelle -bersichtszeichnung -bersiedelns -bersiedler -bersiedlung/P -berspannens -berspanntheit -berspannung/P -bersprnge/N -bersprung/S -berstrke -bersteuern/JS -berstrombegrenzung -berstrzens -berstrzung/P -berstunde/N -berstundenhonorare -bertagebau -bertagerechner -bertaktung/P -bertrag/JSp -bertragbarkeit -bertragens -bertragungsfehler/N -bertragungsgeschwindigkeit/P -bertragungsmedien -bertragungsprogramm -bertragungsprotokoll -bertragungsrate/N -bertragungsrichtung/P -bertragungsschwierigkeit/P -bertragungsstandard -bertragungssteuerung -bertragungsstrecke/N -bertragungszeit -bertreibens -bertreibung/P -bertretens -bertreter/FNS -bertretung/P -bertritte/N -bertritts -bervlkerung/P -bervorteilens -bervorteilung/P -berwachens -berwachung/P -berwachungsaufgaben -berwachungseinheit/P -berwachungseinrichtung/P -berwachungsfunktion/P -berwachungslogik -berwachungsmglichkeit/P -berwachungsrechner -berwachungsstromkreise -berwachungszwecke -berwasserschiffe -berweisens -berweisung/P -berweisungsnetz -berweisungsscheck -berwindens -berwinder/NS -berwindung/P -berwinterns -berwinterung/P -berwurfmutter -berzahl -berzeichnung -berzeugens -berzeugung/P -berzeugungskrfte/N -berzeugungskraft -berziehens -berzieher/NS -berziehung/P -berziehungskredit/EPST -berzug/Sp -blichkeitsnachweis/EPT -bung/P -bungsaufgabe/N -bungsbetrieb/S -bungsflug/STp -bungsgruppe/N -bungshang/Sp -bungsheft/PS -bungslager -bungspltze/N -bungsplatz/T -bungsraum/STp -bungszweck/EPS -ppigkeit -UART -UFO -UKW -UN -UNESCO -UNICEF -UNITA -UNO -URL -URLs -US -USA -USB -USS -UStG -UV -UdSSR -Udo/S -Ufer/NS -Uferbschung -Uferdmmen -Uferdamm/S -Uganda -Uhr/P -Uhrarmbnder/N -Uhrarmband -Uhrenausstellung -Uhrenfabrik -Uhrkette/N -Uhrmacher/NS -Uhrwerk/PS -Uhrzeiger/S -Uhrzeigersinn -Uhrzeit -Uhu -Ukas/Qq -Ukraine -Ulan -Ulk/S -Ulla/S -Ulm/EP -Ulmeingngen -Ulmeingang -Ulmkanle -Ulmkanals -Ulmsensor/P -Ulmwegmessung -Ulmwerte -Ulrich/S -Ulrike/S -Ultimaten -Ultimatum -Ultimo/S -Ultrakurzwelle/N -Ultrakurzwellensender/S -Ultraschall/Sp -Ultraschallanschluss/Tp -Ultraschallanzeigen -Ultraschallbad -Ultraschalldaten -Ultraschalldiagnostik -Ultraschallecho -Ultraschallelektronik -Ultraschallfrequenz -Ultraschallfunktion -Ultraschallgeber -Ultraschallgenerator -Ultraschallimpulse/NS -Ultraschallinterface -Ultraschallkpfen -Ultraschallmessleitung/P -Ultraschallmessung/P -Ultraschallmethode -Ultraschallortung -Ultraschallparametern -Ultraschallprobleme -Ultraschallsender -Ultraschallsensor/PS -Ultraschallsignal/S -Ultraschallstabilitt -Ultraschallsystem/ES -Ultraschalltechnik -Ultraschalltests -Ultraschallwaschen -Ultraschallwegmesser -Ultraschallwellen -Ultraviolettstrahlung -Umarbeitens -Umarbeitung/P -Umarmens -Umarmung/P -Umbau/S -Umbaukosten -Umbenennens -Umbenennung/P -Umbesetzen/JS -Umbildens -Umbildung/P -Umbrche/N -Umbruch -Umbuchens -Umbuchung/P -Umbuchungslisten -Umbuchungsprotokolle -Umdenkprozess/EPT -Umdrehens -Umdrehung/P -Umdrcke/N -Umdruck/S -Umeichen/JS -Umerziehen/JS -Umfang/Sp -Umfangsweg -Umfassens -Umfassung/P -Umfeld/T -Umformatieren/JS -Umformens -Umformer/NS -Umformulierens -Umformulierung/P -Umformung/P -Umformungsregel/N -Umfrage/N -Umfrageergebnis/Qq -Umfrageforschung -Umgnglichkeit -Umgang/S -Umgangsform/P -Umgangssprache -Umgebens -Umgebung/P -Umgebungsbedingung/P -Umgebungshelligkeit -Umgebungsvariable/N -Umgehens -Umgehung/P -Umgehungsstrae/N -Umgestaltens -Umgestaltung/P -Umgruppierens -Umgruppierung/P -Umhngetasche -Umhang -Umhllens -Umhllung/P -Uminterpretation/P -Umkehr/J -Umkehrpunkt/EPST -Umklammerns -Umklammerung/P -Umkleidekabine/N -Umkleideraum/STp -Umklemmen -Umkreis/T -Umlackieren -Umlage/N -Umlagerns -Umlagerung/P -Umland -Umlauf/Sp -Umlaufbahn/P -Umlaufschreiben/S -Umlaufsgeschwindigkeit -Umlaufskapital/S -Umlaufszeit/P -Umlaufzeit/P -Umlaut/S -Umlegekrgen -Umlegekragen/S -Umlegens -Umlegung/P -Umleitens -Umleitung/P -Umlenkens -Umlenkkabel -Umlenkkanten -Umlenkung/P -Ummontage -Umnachtung/P -Umorganisation/P -Umorientieren/JS -Umpolens -Umpolung/P -Umprogrammierens -Umrandens -Umrandung/P -Umrechnens -Umrechnung/P -Umrechnungskurs/E -Umrechnungstabellen -Umrechnungswert/E -Umrisse/S -Umrisslinie/N -Umrisszeichnung/P -Umrstens -Umrstung/P -Umstze/N -Umsatz/T -Umsatzanteil -Umsatzeinbuen -Umsatzentwicklung -Umsatzindex -Umsatzjgern -Umsatzkapital/S -Umsatzminderung -Umsatzrekord -Umsatzrendite -Umsatzrckgang/Sp -Umsatzsteigerung -Umsatzsteuer/N -Umsatzsteuerreform -Umsatzsteuervoranmeldung/P -Umsatzwachstum -Umsatzzahlen -Umsatzzunahme/N -Umsatzzuwachs/T -Umschumen/S -Umschaltens -Umschalter/NS -Umschalthebel/NS -Umschaltmechanismus -Umschaltung/P -Umschaltzeit -Umschau -Umschichtens -Umschichtung/P -Umschichtungsprozess/EPT -Umschiffens -Umschiffung/P -Umschlag/Sp -Umschlagetcher/N -Umschlagetuch/S -Umschlaghfen -Umschlaghafen -Umschlagpltze/N -Umschlagplatz -Umschlagschuppen -Umschlagskosten -Umschlingens -Umschlingung/P -Umschreibens -Umschreibung/P -Umschrift/P -Umschulden/JS -Umschulens -Umschulung/P -Umschulungskurs/EPT -Umschweif/P -Umschwnge/N -Umschwung/S -Umsetzbarkeit -Umsetzens -Umsetzung/P -Umsetzungsprozess/EPT -Umsetzungsschritt/EPS -Umsichgreifen -Umsicht -Umsiedler/NS -Umsiedlung/P -Umspanner/S -Umspannwerk -Umstnde/N -Umstndlichkeit -Umstand/ST -Umstandskleid/RS -Umstandswort/EPST -Umsteigebillet/S -Umsteigekarten -Umsteiger/NS -Umstellens -Umstellung/P -Umstellungsprozess/EPT -Umstieg -Umstrukturieren/JS -Umstrzler/FNS -Umsturz -Umsturzversuch/E -Umtausch/S -Umtauschaktion/P -Umtauschangebot -Umtauschstelle/N -Umtrieb/EPS -Umverteilen/JS -Umverteilungsmechanismen -Umwlzens -Umwlzung/P -Umwandelns -Umwandelung/P -Umwandlung/P -Umwandlungsprozess/EPT -Umwandlungsschritt/EPST -Umweg/EPS -Umwelt -Umweltbelastung -Umweltbewusstsein/S -Umweltbundesamt -Umwelteinfluss/Tp -Umweltminister -Umweltpolitik -Umweltschutz/T -Umweltschutzgesetzgebung -Umweltsituation/P -Umweltvernderung/P -Umweltverschmutzung -Umweltverseuchung -Umweltzerstrung -Umwertung -Umwohner/NS -Umzunens -Umzunung/P -Umzingelns -Umzingelung/P -Umzinglung/P -Umzug/Sp -Unhnlichkeit/P -Unabhngigkeit -Unabhngigkeitsakte -Unabhngigkeitserklrung -Unabhngigkeitskrieg -Unabhngigkeitstag/T -Unachtsamkeit -Unangepasstheit/P -Unannehmlichkeit/P -Unanstndigkeit/P -Unart/P -Unaufflligkeit/P -Unauffindbarkeit/P -Unaufrichtigkeit -Unaufrichtigkeit/P -Unausgeglichenheit -Unbedenklichkeit/P -Unbedeutsamkeit -Unbegreiflichkeit -Unbegrenztheit -Unbehagen/S -Unbeherrschtheit -Unbekanntheit -Unbekmmertheit -Unbeliebtheit -Unbequemlichkeit/P -Unberechenbarkeit -Unberhrtheit -Unbescheidenheit -Unbescholtenheit -Unbeschwertheit -Unbestndigkeit -Unbestechlichkeit -Unbestimmtheit/P -Unbilden -Unbildung -Unbotmigkeit -Unbrauchbarkeit -Undank/ST -Undankbarkeit -Undankes -Undanks -Underdog -Unding/EPRS -Unduldsamkeit -Unebenheit -Unebenheit/P -Unehelichkeit -Unehre/N -Unehrerbietigkeit -Unehrlichkeit -Uneinigkeit -Unempfindlichkeit/P -Unendlichkeit -Unentbehrlichkeit -Unenthaltsamkeit -Unentschiedenheit -Unentschlossenheit -Unerfahrenheit -Unergrndbarkeit/P -Unergrndlichkeit/P -Unerheblichkeit -Unermdlichkeit -Unerschrockenheit -Unersetzbarkeit -Unfhigkeit/P -Unfairness -Unfall -Unfall/Sp -Unfallbericht -Unfallflucht -Unfallkommando/S -Unfallliste/N -Unfallopfer -Unfallstation/P -Unfallstellen -Unfalltod/S -Unfallverhtung/P -Unfallverluste -Unfallversicherung/P -Unfallwagen -Unfallzahlen -Unfallziffern -Unfehlbarkeit -Unfrmigkeit -Unfolgsamkeit -Unfreiheit/P -Unfreundlichkeit/P -Unfriede -Unfruchtbarkeit -Unfug/S -Ungar/FN -Ungebhrlichkeit -Ungebundenheit -Ungeduld -Ungeflligkeit/P -Ungeheuerlichkeit/P -Ungeheuern -Ungeheuers -Ungenauigkeit/P -Ungengsamkeit -Ungerechtigkeit -Ungerechtigkeit/P -Ungereimtheit/P -Ungeschick/S -Ungeschicklichkeit/P -Ungeschicks -Ungesetzlichkeit -Ungesetzlichkeit/P -Ungetm/EPT -Ungewissheit -Ungewissheit/P -Ungewhnlichkeit/P -Ungeziefer/NS -Ungezogenheit/P -Ungezwungenheit -Unglauben/S -Unglaubens -Ungleichheit/P -Ungleichmigkeit -Ungleichmigkeit/P -Ungleichung/P -Ungleichzeitigkeit -Unglck/EPS -Unglcksbringer/S -Unglcksexpedition/P -Unglcksfall/STp -Unglcksfall/Sp -Unglcksmaschine -Unglcksrabe/N -Unglckssttte/N -Unglckstag -Unglckstag/EPS -Unglckszug/STp -Ungnade/N -Ungltigkeit -Ungltigkeitserklrung -Ungunst/P -Unheil/ST -Unheilbarkeit/P -Unheilsprophetie -Unheilstifter/FNS -Unhflichkeit/P -Unholds -Uni -Unicode -Unifikation -Unifikationsverfahren -Unifikator/P -Unifizierbarkeit -Uniformieren/JS -Uniformtrger -Unikat/P -Unikum/S -Unilever -Unionen/W -Unionist/P -Unionsabgeordneter -Unionslnder -Unionspolitiker -Universalerbe/NS -Universalist/P -Universalitt -Universalmittel/NS -Universalmodul -Universalrechner -Universalschraubenschlssel/N -Universalwerkzeug/EPS -Universitt/P -Universittsbesuch -Universittsdozent -Universittsgebude -Universittsleben -Universittslehrer -Universittsprofessor/FPS -Universittsrektor/S -Universittsstdte -Universittsstudien -Universittsstudiums -Universittstage -Universittszeit -Universum/S -Unix -Unke/N -Unkenntlichkeit -Unkenntnis/q -Unkeuschheit -Unklarheit -Unklarheit/P -Unklugheit -Unklugheit/P -Unkorrigierbarkeit -Unkosten -Unkostenberechnung -Unkostenberechnung/P -Unkruter/N -Unkraut/T -Unleserlichkeit -Unlsbarkeit -Unlust -Unlustgefhl/EST -Unmnnlichkeit -Unmigkeit -Unmigkeit/P -Unmasse/N -Unmenge/N -Unmensch/P -Unmenschlichkeit -Unmenschlichkeit/P -Unmittelbarkeit -Unmglichkeit/P -Unmndigkeit -Unmut/S -Unmuts -Unnachgiebigkeit -Unnatrlichkeit -Unordentlichkeit -Unordnung/P -Unpsslichkeit/P -Unparteilichkeit -Unpnktlichkeit -Unrat/SX -Unrats -Unrechts -Unrechtsbewusstsein/S -Unredlichkeit -Unregelmigkeit/P -Unreinheit -Unrichtigkeit -Unruh/EP -Unruhestifter/FNS -Unsachlichkeit -Unschrfe -Unschrferelation -Unschicklichkeit -Unschicklichkeit/P -Unschlssigkeit -Unschuld -Unschuldsmiene/N -Unsegen/S -Unselbstndigkeit -Unselbststndigkeit -Unsicherheit/P -Unsicherheitsfaktor/P -Unsicherheitsfaktor/PS -Unsichtbarkeit -Unsinn/ST -Unsinnswort/EPS -Unsitte/N -Unsittlichkeit -Unsittlichkeit/P -Unsterblichkeit -Unstetigkeit -Unstimmigkeit/P -Unstrukturiertheit -Unsumme/N -Untat/P -Untauglichkeit -Unterabschnitt/EPST -Unterabteilung/P -Unteradressen -Unterarm -Unterart/P -Unterausschuss/Tp -Unterbau/S -Unterbelichtens -Unterbelichtung/P -Unterbewerten/JS -Unterbewusstsein/S -Unterbilanzen -Unterbindens -Unterbindung/P -Unterbrechens -Unterbrecher/N -Unterbrechung/P -Unterbrechungsfall -Unterbrechungspausen -Unterbrechungsstelle -Unterbrechungszeichen -Unterbringens -Unterbringung/P -Unterbringungsmglichkeit/P -Unterdeck/EPS -Unterdrckens -Unterdrcker/N -Unterdrckung/P -Unterdruck/S -Unterdruckmesser/S -Untereinheit/P -Unterernhrung/P -Unterfamilie/N -Unterfhren/JS -Untergang/STp -Untergattung/P -Untergeschoss/T -Untergestell/EPS -Untergewicht/EPST -Untergliederns -Untergliederung/P -Untergrenze/N -Untergrnde/N -Untergrund/ST -Untergrundbahn/P -Untergrundbewegung -Untergrundbltter -Untergrundkmpfer -Untergrundwelt -Untergrundwirtschaft -Untergruppe/N -Unterhndler/FNS -Unterhalt/JRST -Unterhaltens -Unterhalter/NS -Unterhaltsansprche/N -Unterhaltsanspruch/T -Unterhaltsbeihilfen -Unterhaltsklage/N -Unterhaltskosten -Unterhaltspflichten -Unterhaltszahlung/P -Unterhaltungsbeilage/N -Unterhaltungselektronik -Unterhaltungsfilm/ET -Unterhaltungsindustrie/N -Unterhaltungskonzerte -Unterhaltungslektre/N -Unterhaltungsliteraturen -Unterhaltungsmusik -Unterhaltungsprogramm/EPS -Unterhaltungssendung -Unterhandlung/P -Unterhaus/Tp -Unterhausmehrheit -Unterhauswahl -Unterhemd/EPST -Unterholz/T -Unterhose/N -Unterjacke/N -Unterjochens -Unterjochung/P -Unterkante/N -Unterkiefer/NS -Unterklasse/N -Unterkleid/JR -Unterkhlen/JS -Unterknfte/N -Unterkunft -Unterlndern -Unterlnge/N -Unterlage -Unterland/T -Unterlass/J -Unterlassens -Unterlassungsklage -Unterlassungssnde/N -Unterlegscheibe/N -Unterleib/R -Unterleibskrebs -Unterlippe/N -Untermalens -Untermalung/P -Untermenge/N -Untermen -Untermiete/NR -Untermieter/NS -Unternehmens -Unternehmensberater/NS -Unternehmensbond/S -Unternehmenseigenschaft -Unternehmensergebnis/Qq -Unternehmensfhrung -Unternehmensgewinne -Unternehmensidee -Unternehmenskonzept -Unternehmensleitung -Unternehmensobligation/P -Unternehmensphilosophie -Unternehmenspolitik -Unternehmensprsidenten -Unternehmensumsatzsteuer -Unternehmensziel -Unternehmer/FNS -Unternehmergeist -Unternehmerpraxis -Unternehmertum/S -Unternehmung/P -Unternehmungsgeist -Unternehmungslust -Unteroffizier/PS -Unterordnens -Unterordnung/P -Unterprimaner -Unterprogramm/EPS -Unterprojekt/P -Unterpunkt/EPST -Unterredens -Unterredung/P -Unterrelease -Unterricht/JS -Unterrichtens -Unterrichtsfcher/N -Unterrichtsfach/S -Unterrichtsgegenstand/S -Unterrichtsgeschehen/S -Unterrichtsmethode/N -Unterrichtsminister/S -Unterrichtsministerium/S -Unterrichtsprogramm/EPS -Unterrichtsraum/STp -Unterrichtsstil/EPS -Unterrichtsstoff/P -Unterrichtsstunde/N -Unterrichtswesen/S -Unterstze/N -Untersagens -Untersagung/P -Untersatz/T -Unterschtzens -Unterschtzung/P -Unterscheidbarkeit -Unterscheidens -Unterscheidung/P -Unterscheidungsmerkmal/EPS -Unterscheidungsproblem/E -Unterschenkel/NS -Unterschiebens -Unterschiebung/P -Unterschiede/S -Unterschiedlichkeit/P -Unterschieds -Unterschlagens -Unterschlagung/P -Unterschlpfe/N -Unterschlupf/S -Unterschreitens -Unterschreitung/P -Unterschrift/P -Unterseeboot/PS -Unterseite/N -Unterseitenbearbeitung -Untersetzens -Untersetzung/P -Unterspannung/P -Unterspannungsschutz -Unterspree -Untersteiermark -Unterstellens -Unterstellung/P -Untersteuern/JS -Unterstreichens -Unterstreichung/P -Unterstreichungszeichen/S -Untersttzens -Untersttzung/P -Untersttzungsgeld -Untersttzungsgelder -Untersttzungsleistung/P -Untersttzungslinie -Untersttzungssysteme -Unterstufe/N -Untersuchens -Untersuchung/P -Untersuchungsausschuss/Tp -Untersuchungsbericht -Untersuchungsgegenstand -Untersuchungsgericht/EPST -Untersuchungshftlinge -Untersuchungshaft -Untersuchungskommission/P -Untersuchungszeitraum/STp -Untertagebau -Untertageeinsatz -Untertan/P -Untertantreue -Untertasse/N -Unterteil/JS -Unterteller -Unterthema/S -Untertitel/N -Unterton/S -Untertreiben/JS -Untervermieter/S -Untervermietung -Unterverzeichnis/Qq -Unterwsche -Unterwanderer -Unterwanderns -Unterwanderung/P -Unterwasser -Unterwasserarchologie -Unterwasserjagd -Unterwassermassagen -Unterwassertod -Unterweisens -Unterweisung/P -Unterwerfens -Unterwerfung/P -Unterzeichnens -Unterzeichner -Unterzeichnerstaaten -Unterzeichnung/P -Untier/EMPST -Untugend/P -Unbersichtlichkeit -Unvereinbarkeit -Unvereinbarkeit/P -Unvereinbarkeitsbeschluss/Tp -Unvergleichbarkeit -Unvermeidbarkeit -Unvermgen/S -Unvermgens -Unvernunft -Unverschmtheit -Unverschmtheit/P -Unversehrtheit -Unverstndlichkeit -Unverstndnis/Qq -Unverstand/T -Unvertrglichkeit -Unverzichtbarkeit -Unvollkommenheit -Unvollkommenheit/P -Unvollstndigkeit -Unvollstndigkeit/P -Unwgbarkeit/P -Unwahrheit/P -Unwahrscheinlichkeit/P -Unweigerlichkeit -Unwerte -Unwesen/HS -Unwesens -Unwetter/S -Unwille -Unwille/N -Unwirksamkeit -Unwissenheit -Unwohlsein/S -Unzahl/J -Unzahlung/P -Unze/N -Unzchtigkeit -Unzchtigkeit/P -Unzucht/P -Unzufriedenheit -Unzugnglichkeit -Unzulnglichkeit -Unzulnglichkeit/P -Unzulssigkeit -Unzuverlssigkeit/P -Unzweckmigkeit -Updates -Upgrade -Urabstimmung/P -Urahn/PS -Ural -Uraltparagraph/Pf -Uran/S -Uranbergbau -Uranspaltung -Uratmosphre -Urauffhrung/P -Urbanisation -Urbanitt -Urbild/RS -Urchristentum -Ureigenheit -Ureinwohner/FNS -Urenkel/FNS -Urerfahrung -Urfassung/P -Urform/P -Urgeschichte -Urgromtter -Urgromutter -Urgrovter -Urgrovater/S -Urheber/FNS -Urheberrecht/EPS -Urheberschaft -Urin/S -Urinstinkt/EPST -Urkirche -Urknalltheorie -Urkrfte/N -Urkraft -Urkunde/N -Urkundenbeweis/T -Urkundenbcher -Urkundenbuch/S -Urlaub/EPRS -Urlauber/NS -Urlaubsabkommen -Urlaubsadresse -Urlaubsantrge -Urlaubsdomizil -Urlaubsgesuch/E -Urlaubsplne -Urlaubsregelung -Urlaubsreise/N -Urlaubsspalten -Urlaubsstimmung -Urlaubstipp -Urmensch/P -Urne/N -Urologe/N -Urologie -Urschlichkeit -Ursache/N -Ursprnge/N -Ursprnglichkeit -Ursprung/S -Ursprungslnder -Ursprungsland -Ursprungsnachweis/EPT -Ursprungswert/EPS -Urstoff/EPS -Ursula/S -Urteil/S -Urteilsbildung -Urteilsfindung -Urteilskraft -Urteilssprche/N -Urteilsspruch/S -Urteilsverkndung/P -Urteilsvermgen/S -Urtier/EPS -Urvater/S -Urwlder/N -Urwald -Urwelt -Urzeit/P -Urzustnde/N -Urzustand/ST -Usenet -User/S -Userport -Usus -Uta/S -Ute/S -Utensilie/N -Utility/S -Utopie/N -Utopist/P -Utrecht -Uwe/S -VDE -VDI -VGA -VHS -VI -VII -VIII -VLSI -VMOS -VW -Vter/MN -Vabanquespiel -Vagabund/P -Vagina/S -Vaginen -Vakanz -Vakuen -Vakuum/S -Vakuumkontrolle -Vakuumschraube -Vakuumtest -Valenz/P -Valenzband/T -Validitt -Valium -Valpolicella -Valuta -Valuten -Vamp/S -Vampir/EPS -Vandale/N -Vanille -Variabilitt -Variablenbelegung -Variablenbindung/P -Variablenidentifikator/PS -Variablennummer/N -Variablenreferenz/P -Variablensubstitution/P -Variablenbergabe/N -Variablenvorkommen/S -Variante/N -Varianz/P -Variation/P -Variett/P -Varietee/S -Varietetheater/NS -Varietevorstellung -Variet/S -Varistor/P -Vasall/P -Vasallenstaat/T -Vase/N -Vaseline -Vater/S -Vaterfigur -Vaterhaus/Tp -Vaterlnder/N -Vaterland -Vaterlandsliebe/N -Vaterlandspartei -Vaterliebe/N -Vatermrder/FNS -Vatermord/EPST -Vaterschaft/P -Vaterschaftsklage -Vaterstdte/N -Vaterstadt -Vaterunser/NS -Vati/S -Vatikan -Vatikanstadt -Vegetabilien -Vegetarier/NS -Vegetarismus -Vegetation/P -Vehemenz -Vehikel/NS -Veilchen/S -Veilchenkleid -Veilchenparfum -Veitstnze/N -Veitstanz/T -Vektor/PS -Vektorgrafik/P -Vektorgraphik/P -Vektorkette/N -Vektorrechnung -Velin/S -Velinpapier/EPS -Velofahrer -Velours -Vene/N -Venedig -Venenentzndung/P -Venetien -Venezianer/FNS -Venezuela -Ventil/EPS -Ventilanschluss/Tp -Ventilanschlussgehuse -Ventilansteuerblcke -Ventilansteuerblock -Ventilansteuerleiste/N -Ventilansteuermodul -Ventilansteuerung/P -Ventilation/P -Ventilator/S -Ventilausgang/Sp -Ventilbetrieb -Ventilblock -Ventildaten -Ventileinheit -Ventileinstellung/P -Ventilelektroniken -Ventilfunktionsanzeige -Ventilgehuse/N -Ventilgehusedeckel -Ventilkoppler -Ventilleiste/N -Ventilleistenfehler -Ventilleistenseite -Ventilmagnete/N -Ventilffnung -Ventilschnittstelle -Ventilsoftware -Ventilspule -Ventilsteuerblock -Ventilsteuereingang/Sp -Ventilsteuereinheit -Ventilsteuerleiste -Ventilsteuerleitung/P -Ventilsteuerung -Ventilsteuerungsgerte -Ventilstrom -Ventilstrommessung -Ventiltester -Ventiltestgerte -Ventiltreiber -Venus -Venusberg -Verchter/S -Vernderlichkeit/P -Vernderns -Vernderung/P -Vernderungsmglichkeit/P -Vernderungszeit/P -Verngstigens -Verngstigung/P -Verstelung -Vertzen/JS -Vertzens -Vertzung/P -Veruerlichung/P -Veruerns -Veruerung/P -Veruerungsgewinn/ET -Verabfolgung/P -Verabredens -Verabredung/P -Verabreichens -Verabreichung/P -Verabschiedens -Verabschiedung/P -Verachtens -Verachtung/P -Verallgemeinerbarkeit -Verallgemeinerns -Verallgemeinerung/P -Verallgemeinerungsfhigkeit -Veraltung -Veranda -Veranden -Verankerns -Verankerung/P -Veranlagens -Veranlagung/P -Veranlassens -Veranlassung/P -Veranschaulichung/P -Veranschlagens -Veranschlagung/P -Veranstaltens -Veranstalter/FNS -Veranstaltung/P -Veranstaltungskalender/S -Verantwortens -Verantwortlichkeit/P -Verantwortung/P -Verantwortungsbereich -Verantwortungsbewusstsein/S -Verantwortungslosigkeit -Verarbeitens -Verarbeiter/FNS -Verarbeitung/P -Verarbeitungsbetrieb -Verarbeitungsleistung -Verarbeitungsmglichkeit/P -Verarbeitungsprogramm -Verarbeitungsschritt/EPT -Verarbeitungsweise -Verarbeitungszeit -Verarmung -Verb/PS -Verbnde/N -Verbnden -Verbandes -Verbands -Verbandsarbeit/P -Verbandsksten -Verbandskasten/S -Verbandsoperation/P -Verbandstheorie/N -Verbandstoff/EPS -Verbandsvorsitzender -Verbandsvorstand -Verbandszeug/PST -Verbannens -Verbannung/P -Verbesserbarkeit -Verbesserns -Verbesserung/P -Verbesserungsmanahme/N -Verbesserungsmglichkeit/P -Verbesserungsvorschlag/STp -Verbeugens -Verbeugung/P -Verbiegens -Verbiegung/P -Verbildlichens -Verbildlichung/P -Verbindens -Verbinder/N -Verbindlichkeit/P -Verbindlichkeitenliste -Verbindung/P -Verbindungsachse/N -Verbindungsbahn/P -Verbindungselemente -Verbindungsgang/Tp -Verbindungskabel -Verbindungskanten -Verbindungskarte -Verbindungsleitung/P -Verbindungsmnnern -Verbindungsmann/T -Verbindungsplne -Verbindungsplan -Verbindungsplatine -Verbindungsrandstck -Verbindungsrohr/EPST -Verbindungsstelle/N -Verbindungsstrae/N -Verbindungsstck/EPST -Verbissenheit -Verbitterns -Verbitterung/P -Verblendens -Verblendung/P -Verblffens -Verblffung/P -Verborgenheit -Verbote/F -Verbote/S -Verbots -Verbotsprinzip -Verbotsschild/T -Verbotsschildern -Verbrauch/RST -Verbrauch/ST -Verbraucher/NS -Verbraucheranlaufstelle -Verbrauchergruppe/N -Verbraucherindex -Verbraucherkrediten -Verbraucherlnder/N -Verbraucherland -Verbrauchermagazin/EPS -Verbrauchermarkt/T -Verbraucherpreisindex -Verbraucherschulden -Verbrauchersektor -Verbraucherverbnde/N -Verbraucherware/N -Verbrauchs -Verbrauchseinsparung/P -Verbrauchsgter/N -Verbrauchsgut/S -Verbrauchsmaterial -Verbrauchsmessung -Verbrauchsrckgang -Verbrauchssteuer -Verbrauchszunahme/N -Verbrechens -Verbrechensbekmpfung -Verbrecher/FNS -Verbrecher/NS -Verbrecheralbum/S -Verbrecherehepaar/S -Verbrecherorganisation/P -Verbrechertum/S -Verbrecherwelt -Verbreitens -Verbreiter/J -Verbreiterns -Verbreitung/P -Verbrennens -Verbrennung/P -Verbrennungsmaschine/N -Verbrennungsmotor/PS -Verbrennungsofen/S -Verbrderns -Verbrderung/P -Verbuchens -Verbuchung/P -Verbum -Verbund/EST -Verbund/ET -Verbundenheit -Verbundglas/T -Verbundnetz -Verbundnetzkosten -Verbundnetzrechnung/P -Verbundprojekt -Verbundvorhaben/S -Verdchtigens -Verdchtigung/P -Verdchtigungsperson -Verdachts -Verdachtsmoment/EPST -Verdammens -Verdammnis/q -Verdammung/P -Verdampfens -Verdampfung/P -Verdauens -Verdaulichkeit -Verdauung/P -Verdauungsbeschwerde/N -Verdauungsstrung/P -Verdauungssystem -Verdeckes -Verdecks -Verderb -Verderber -Verderblichkeit -Verderbnis -Verderbtheit -Verdeutlichens -Verdeutlichung/P -Verdeutschens -Verdeutschung/P -Verdi/S -Verdichtens -Verdichtung/P -Verdickens -Verdickung/P -Verdienstausfall/STp -Verdienste/NS -Verdienstkreuz -Verdienstmglichkeit/P -Verdienstspanne/N -Verdinglichung -Verdoppelns -Verdoppelung/P -Verdopplung/P -Verdrngens -Verdrngung/P -Verdrahtens -Verdrahtung/P -Verdrahtungskasten -Verdrahtungsplne -Verdrahtungsplatine -Verdrahtungsplatte -Verdrehens -Verdrehschutz -Verdrehtheit -Verdrehung/P -Verdreiigfachung -Verdrielichkeit -Verdrossenheit -Verdruss/ET -Verdnnens -Verdnnung/P -Verdummens -Verdummung/P -Verdun -Verdunkelns -Verdunkelung/P -Verdunkelungsgefahr/P -Verdunklung/P -Verdunstens -Verdunstung/P -Verdutzens -Verdutzung/P -Veredelns -Veredelung/P -Veredelungsindustrie/N -Veredlung/P -Verehrens -Verehrer/FNS -Verehrung/P -Vereidigens -Vereidigung/P -Verein/S -Vereinbarens -Vereinbarkeit -Vereinbarung/P -Vereinbarungsentwurf -Vereinfachens -Vereinfachung/P -Vereinfachungsgrnde/N -Vereinheitlichens -Vereinheitlichung/P -Vereinigens -Vereinigung/P -Vereinigungstyp/PS -Vereinsamens -Vereinsamung/P -Vereinsbank -Vereinsmeierei -Vereinstrainer -Vereinsvorstand -Vereinswesen/S -Vereinzelns -Vereinzelung/P -Vereinzlung/P -Vereisens -Vereisung/P -Vereitelns -Vereiterns -Vereiterung/P -Vereitlung/P -Verelendens -Verelendung/P -Verengens -Verengerns -Verengerung/P -Verengung/P -Vererbens -Vererbung/P -Vererbungsgesetz/EPT -Vererbungshierarchie -Vererbungslehre/N -Vererbungslinie/N -Vererbungsmechanismen -Vererbungsrecht/EPST -Verewigens -Verewigung/P -Verflschens -Verflscher/FNS -Verflschung/P -Verfrbens -Verfrbung/P -Verfahrens -Verfahrenshinweis/EPT -Verfahrenstechnik/P -Verfahrensvorschrift/P -Verfahrensweise/N -Verfall -Verfall/STp -Verfalldatum -Verfalles -Verfallstag/ET -Verfallszeit/P -Verfalltermin -Verfassens -Verfasser/FNS -Verfassung/P -Verfassungsnderung/P -Verfassungsausschuss/Tp -Verfassungsbeschwerde/N -Verfassungsfeinde -Verfassungskmpfe -Verfassungsklage/N -Verfassungsrecht/EPST -Verfassungsrechtler -Verfassungsreform -Verfassungsschtzer -Verfassungsschutz/T -Verfassungsstreit -Verfassungsurkunde/N -Verfechter/FNS -Verfechter/NS -Verfehlens -Verfehlung/P -Verfeindens -Verfeindung/P -Verfeinerns -Verfeinerung/P -Verfertigens -Verfertiger/NS -Verfertigung/P -Verfetten/JS -Verfilmens -Verfilmung/P -Verfilzens -Verfilzung/P -Verflechtens -Verflechtung/P -Verfolgens -Verfolger/FNS -Verfolgtwerden -Verfolgung/P -Verfolgungsjagd -Verfolgungswahn/T -Verformens -Verformung/P -Verfremdens -Verfremdung/P -Verfgbarkeit -Verfgens -Verfgung/P -Verfgungsfreiheit -Verfgungsrecht/EPST -Verfgungsstellung -Verfhrens -Verfhrer/FNS -Verfhrung/P -Verfhrungskraft -Vergnglichkeit -Vergabe -Vergangenheit -Vergasens -Vergaser/NS -Vergasung/P -Vergeblichkeit -Vergebung/P -Vergegenwrtigens -Vergegenwrtigung/P -Vergehens -Vergeistigens -Vergeistigung/P -Vergeltens -Vergeltung/P -Vergeltungsakt/ET -Vergeltungsmanahme/N -Vergeltungsschlag/STp -Vergemeinschaften/JS -Vergessenheit -Vergesslichkeit -Vergeudens -Vergeuder/FNS -Vergeudung/P -Vergewaltigens -Vergewaltigung/P -Vergiftens -Vergiftung/P -Vergissmeinnicht/T -Vergleich/JST -Vergleichbarkeit -Vergleichens -Vergleichsbasis -Vergleichsbetrieb -Vergleichsfunktion/P -Vergleichsliste/N -Vergleichsmglichkeit/P -Vergleichsmonat -Vergleichsquote/N -Vergleichsrechnung/P -Vergleichswert/EPST -Vergleichszahl/P -Vergleichszwecke/N -Vergleichung/P -Vergngens -Vergngung/P -Vergngungsreise/N -Vergngungsreisende/N -Vergngungssttte/N -Vergngungssteuer -Vergngungsschte/N -Vergngungssucht -Vergngungsviertel -Vergtterns -Vergtterung/P -Vergoldens -Vergolder/NS -Vergoldung/P -Vergrbern/JS -Vergrerns -Vergrerung/P -Vergrerungsapparat/EPST -Vergrerungsglser -Vergrerungsglas/T -Vergrerungsmglichkeit/P -Vergnstigen/JS -Vergtens -Vergtung/P -Vergtungsgruppe/N -Verguss/Tp -Vergussanlage -Vergusshlsen -Vergussmasse -Vergussproblem/EPS -Vergussschicht -Vergusswachs/T -Verhltnis/Qq -Verhltnismigkeit/P -Verhltniswahl/P -Verhltniswrter/N -Verhltniswort/T -Verhngens -Verhngnis/Qq -Verhngung/P -Verhrtens -Verhrtung/P -Verhaftens -Verhaftung/P -Verhaltenheit -Verhaltens -Verhaltensnderung -Verhaltensform/P -Verhaltensforscher -Verhaltensforschung/P -Verhaltenskodex/EPT -Verhaltensmaregel/N -Verhaltensmuster -Verhaltensnorm/P -Verhaltensphysiologie -Verhaltensprogramm -Verhaltensregel/N -Verhaltensstrung -Verhaltensweise/N -Verhaltenswert/EPST -Verhandelns -Verhandlung/P -Verhandlungsdauer -Verhandlungsergebnis/Qq -Verhandlungsfrieden -Verhandlungsfhrer/F -Verhandlungsgeschick -Verhandlungskommission/P -Verhandlungsmandat/E -Verhandlungspartner/FNS -Verhandlungsprogramm -Verhandlungspunkt -Verhandlungsrunde/N -Verhandlungsspielraum/STp -Verhandlungsteilnehmer/NS -Verhandlungstisch -Verhandlungsziele/N -Verhaues -Verhaus -Verheerung/P -Verheimlichens -Verheimlichung/P -Verheiratens -Verheiratung/P -Verheiens -Verheiung/P -Verherrlichens -Verherrlichung/P -Verhetzen/JS -Verhinderns -Verhinderung/P -Verhhnens -Verhhnung/P -Verhres -Verhrs -Verhllens -Verhllung/P -Verhtens -Verhtung/P -Verhtungsmanahme/N -Verhtungsmittel/NS -Verifikation/P -Verifizierens -Verifizierung/P -Verinnerlichens -Verinnerlichung/P -Verirrens -Verirrung/P -Verjhrens -Verjhrung/P -Verjhrungsfrist/P -Verjngens -Verjngung/P -Verjngungskur -Verkufe/NR -Verkufer/FNS -Verkuflichkeit -Verkabeln/JS -Verkabelungsaufwand/S -Verkabelungsbeispiel -Verkabelungsfehler -Verkabelungsprobleme -Verkabelungsschema -Verkabelungsteile -Verkabelungswege -Verkalkens -Verkalkung/P -Verkapselns -Verkapselung/P -Verkapslung/P -Verkaufs -Verkaufsabteilung -Verkaufsaktion/P -Verkaufsautomat/P -Verkaufsdirektion/P -Verkaufsdirektor -Verkaufsdruck -Verkaufsempfehlung/P -Verkaufserfahrung/P -Verkaufserfolge -Verkaufsergebnis/Qq -Verkaufserls/EPT -Verkaufsetage -Verkaufsfrderung -Verkaufsgebiet -Verkaufsgeschft/EPS -Verkaufsgesellschaft -Verkaufsgesprche -Verkaufsgrund -Verkaufskurs/EPT -Verkaufsleiter -Verkaufsmasche -Verkaufsniederlassung/P -Verkaufsorder/S -Verkaufsorganisation/P -Verkaufspersonal/S -Verkaufsphase -Verkaufspreis/EPT -Verkaufsprogramm -Verkaufsraum/STp -Verkaufsschlager/NS -Verkaufsschlssel/S -Verkaufssignale/N -Verkaufsstelle -Verkaufsttigkeit -Verkaufstermine -Verkaufsunterlagen -Verkaufsvereinigung/P -Verkaufszeitpunkt -Verkehrens -Verkehres -Verkehrs -Verkehrsader/N -Verkehrsampel -Verkehrsandrang/T -Verkehrsaufgaben -Verkehrsbedrfnis/Qq -Verkehrsbelebung -Verkehrsbetrieb/ET -Verkehrsbro/S -Verkehrschaos -Verkehrsdelikte -Verkehrsdichte/N -Verkehrsdisziplin -Verkehrsexperte -Verkehrsflughafen -Verkehrsflugzeug/EPST -Verkehrsflussregelung -Verkehrsfragen -Verkehrsfhrung -Verkehrsfunk -Verkehrsgenossenschaften -Verkehrsgesetze -Verkehrshindernis/Qq -Verkehrsinsel/N -Verkehrskette -Verkehrsknuel -Verkehrsknotenpunkt/EPST -Verkehrsleistung -Verkehrsminister/NS -Verkehrsmittel/NS -Verkehrsmoral -Verkehrsnetz/EPT -Verkehrsordnung/P -Verkehrsplanung -Verkehrspolitik -Verkehrspolizist/P -Verkehrsposten -Verkehrsregelung/P -Verkehrsrichter -Verkehrsschild -Verkehrsschilder -Verkehrsschutzmnner -Verkehrsschutzmann/T -Verkehrssicherheit -Verkehrsstauung/P -Verkehrsstrae/N -Verkehrsstreifen -Verkehrsstrme -Verkehrssnder/FNS -Verkehrssystem -Verkehrstafel -Verkehrsteilnehmer/FNS -Verkehrstod -Verkehrstrger -Verkehrsbertretung/P -Verkehrsunfall/Sp -Verkehrsunternehmen/S -Verkehrsverband -Verkehrsverbindung/P -Verkehrsverein/ET -Verkehrsverhltnis/Qq -Verkehrsvorschrift/P -Verkehrswege -Verkehrswert/ET -Verkehrswesen/S -Verkehrszhlung/P -Verkehrszeichen/S -Verkehrung/P -Verkeilens -Verkeilung/P -Verkennens -Verkennung/P -Verkettadapter -Verkettens -Verkettung/P -Verketzerns -Verketzerung/P -Verkippen/JS -Verkippens -Verkippung/P -Verklrens -Verklrung/P -Verklagens -Verklagung/P -Verklammern/JS -Verklammerns -Verklammerung/P -Verklebens -Verklebung/P -Verkleidens -Verkleidung/P -Verkleinerns -Verkleinerung/P -Verkleinerungswrter/N -Verkleinerungswort/T -Verknappens -Verknappung/P -Verkncherns -Verkncherung/P -Verknpfens -Verknpfung/P -Verkrperns -Verkrperung/P -Verkohlens -Verkohlung/P -Verkommenheit -Verkrmmens -Verkrmmung/P -Verkrppelns -Verkrppelung/P -Verkrpplung/P -Verkmmerns -Verkmmerung/P -Verkndens -Verkndigens -Verkndigung/P -Verkndung/P -Verkrzens -Verkrzung/P -Verkrzungsschnre/N -Verkrzungsschnur -Verlngerns -Verlngerung/P -Verlngerungsantrag/STp -Verlngerungskabel -Verlngerungsschnre -Verlngerungsschnur -Verlsslichkeit -Verlufe/N -Verlufen -Verladens -Verladerampe/N -Verladestation/P -Verladung/P -Verlag/EPST -Verlagerns -Verlagerung/P -Verlagsanstalt -Verlagsbuchhndler/FNS -Verlagsbuchhandel/S -Verlagsbuchhandlung/P -Verlagsfirma -Verlagsfirmen -Verlagskontor -Verlagsort -Verlagspreis/EPT -Verlagsprodukte -Verlagsrecht/EPST -Verlagswerk/EPT -Verlangens -Verlangsamens -Verlangsamung/P -Verlassenheit -Verlasses -Verlaub -Verlaufs -Verlautbarens -Verlautbarung/P -Verlegenheit/P -Verlegens -Verleger/FNS -Verlegung/P -Verleiher/FNS -Verleihes -Verleihs -Verleihung/P -Verleitens -Verleitung/P -Verlesens -Verlesung/P -Verletzens -Verletzung/P -Verletzungsgefahr/P -Verleugnens -Verleugnung/P -Verleumdens -Verleumder/FNS -Verleumdung/P -Verliebtheit -Verlierer/N -Verlies/EPT -Verlbnis/Qq -Verlschens -Verlschung/P -Verltens -Verltung/P -Verlobens -Verlobung/P -Verlobungsanzeige/N -Verlobungsring/EPST -Verlockens -Verlockung/P -Verlogenheit/P -Verlosens -Verlosung/P -Verlust -Verlust/EPST -Verlustanzeige/N -Verlustfall/Sp -Verlustgefahr/P -Verlustgeschft -Verlustleistung -Verlustlisten -Verlustmeldung/P -Verlustposition/P -Verlustrechnung/P -Verlustrisiken -Verlustrisiko -Verlustvortrag/STp -Verlustzone/N -Vermchtnis/Qq -Vermhlens -Vermhlung/P -Vermarktens -Vermarktung/P -Vermarktungsabsicht/P -Vermarktungsidee -Vermaens -Vermaung/P -Vermehrens -Vermehrung/P -Vermehrungsprozess/EPT -Vermehrungsschritt/EPS -Vermeidbarkeit -Vermeidens -Vermeidung/P -Vermengens -Vermengung/P -Vermenschlichens -Vermenschlichung/P -Vermerks -Vermessenheit/P -Vermessens -Vermessung/P -Vermessungsmter/N -Vermessungsamt -Vermessungskonzept -Vermessungsmarken -Vermessungssystem/S -Vermessungswesen -Vermietbarkeit -Vermietens -Vermieter/FNS -Vermietung/P -Vermietungsabschluss/Tp -Verminderns -Verminderung/P -Verminen -Verminen/JS -Vermischens -Vermischung/P -Vermischungsgrad -Vermisstenanzeige/N -Vermisstenliste/N -Vermittelns -Vermittler/FNS -Vermittlerrolle/N -Vermittlung/P -Vermittlungsmter/N -Vermittlungsamt -Vermittlungsangebot -Vermittlungsbemhung/P -Vermittlungsbeziehung -Vermittlungsgebhr/P -Vermittlungsgesprch/EPS -Vermittlungsprovision/P -Vermittlungsversuch/EPS -Vermittlungsvorschlag/STp -Vermgens -Vermgensabgaben -Vermgensanlage/N -Vermgensaufbau -Vermgensberater -Vermgensberatung -Vermgensexplosion -Vermgenslage -Vermgenssteuer -Vermgenssteuerpflicht -Vermgensteile -Vermgensbernahme -Vermgensverhltnis/Qq -Vermgensvermehrung -Vermgensverwalter/N -Vermgensverwaltung -Vermgenswerte/NS -Vermummens -Vermummung/P -Vermutens -Vermutung/P -Vermutungswissen/S -Vernachlssigens -Vernachlssigung/P -Vernebelns -Vernebelung/P -Verneblung/P -Vernehmens -Vernehmung/P -Verneigens -Verneigung/P -Verneinens -Verneinung/P -Vernetzbarkeit -Vernetzens -Vernetzung/P -Vernichtens -Vernichtung/P -Vernichtungskrieg/EPS -Vernichtungslager/NS -Vernissage/N -Vernunft -Vernunftehe/N -Vernunftwesen/S -Verdens -Verdung/P -Verffentlichens -Verffentlichung/P -Verona -Veroneser -Verordnens -Verordnung/P -Verordnungsentwurf -Verpchter/FNS -Verpachtens -Verpachtung/P -Verpackens -Verpacker/FNS -Verpackung/P -Verpestens -Verpestung/P -Verpfndens -Verpfndung/P -Verpflanzens -Verpflanzung/P -Verpflegens -Verpflegung/P -Verpflichtens -Verpflichtung/P -Verpolschutz -Verpuffens -Verpuffung/P -Verputz -Verrter/FNS -Verrat/ST -Verrats -Verrechnens -Verrechnung/P -Verrechnungspreisen -Verrechnungsprozesse -Verrechnungsscheck -Verrechnungsstelle/N -Verrechnungssumme -Verrechnungsverkehr -Verrechnungszentren -Verrenkens -Verrenkung/P -Verrichtens -Verrichtung/P -Verriegelns -Verriegelung/P -Verrieglung/P -Verringerns -Verringerung/P -Verrisse/S -Verrohens -Verrohung/P -Verrottens -Verrottung/P -Verrcktheit/P -Verruchtheit -Verruf/ST -Verrufes -Verrufs -Vers/EPT -Versumnis/Qq -Versumnisurteil/EPS -Versachlichen/JS -Versagens -Versager/FNS -Versagung/P -Versailles -Versammelns -Versammlung/P -Versammlungsfreiheit -Versammlungsleiter/NS -Versand/T -Versandabteilung/P -Versandabwicklung -Versandanweisung/P -Versandanzeige/N -Versandbesttigung -Versandbuchhandlung -Versandes -Versandgeschft/EPS -Versandhaus/Tp -Versandhauskatalog -Versandkosten -Versandliste/N -Versandpapieren/W -Versandttigkeit/P -Versandweg/ES -Versandzonenliste -Versbau/ST -Verschmtheit -Verschrfens -Verschrfung/P -Verschalens -Verschaltens -Verschaltung/P -Verschalung/P -Verschickens -Verschickung/P -Verschiebefunktion/P -Verschiebens -Verschiebespiel -Verschiebung/P -Verschiedenheit -Verschiffens -Verschiffung/P -Verschlge/N -Verschlgen -Verschlafenheit -Verschlagenheit -Verschlages -Verschlags -Verschlagwortung -Verschlechterns -Verschlechterung/P -Verschleierns -Verschleierung/P -Verschleierungstaktik/P -Verschlei/T -Verschleiteil/EPS -Verschleppens -Verschleppung/P -Verschleppungstaktik/P -Verschleuderns -Verschleuderung/P -Verschlimmerns -Verschlimmerung/P -Verschlsselns -Verschlsselung/P -Verschlsselungstechnik/P -Verschlsslung/P -Verschluss/Tp -Verschlusskappe/N -Verschlusssache/N -Verschlussschraube/N -Verschlussstopfen/S -Verschlusszeit/P -Verschmhens -Verschmhung/P -Verschmelzens -Verschmelzung/P -Verschmitztheit -Verschmutzens -Verschmutzung/P -Verschnaufpause/N -Verschnerns -Verschnerung/P -Verschonens -Verschonung/P -Verschrnkens -Verschrnkung/P -Verschraubens -Verschraubung/P -Verschreibens -Verschreibung/P -Verschrobenheit/P -Verschrottens -Verschrottung/P -Verschchterns -Verschchterung/P -Verschuldens -Verschuldung/P -Verschuldungsprinzip -Verschuldungsprobleme -Verschweigens -Verschweigung/P -Verschwendens -Verschwender/FNS -Verschwendung/P -Verschwendungssucht -Verschwiegenheit -Verschwrens -Verschwrer/FNS -Verschwrung/P -Verschwommenheit -Versehrtheit -Versendens -Versender/FNS -Versender/NS -Versendung/P -Versenkens -Versenkung/P -Versetzens -Versetzung/P -Verseuchens -Verseuchung/P -Versfu/Tp -Versicherer/NS -Versicherns -Versicherung/P -Versicherungsaktie/N -Versicherungsanstalten -Versicherungsart/P -Versicherungsbranche/N -Versicherungsfall/Sp -Versicherungsgedanken -Versicherungsgesellschaft/P -Versicherungsidee -Versicherungskaufmann -Versicherungsmerkblatt -Versicherungsnehmer/S -Versicherungsparten -Versicherungspesen -Versicherungspolicen -Versicherungsprmie/N -Versicherungsschein/EPS -Versicherungstrger/NS -Versicherungsverein -Versicherungsvermgen -Versicherungsvertreter -Versiegelns -Versiegelung/P -Versieglung/P -Versilberns -Versilberung/P -Versinnbildlichung -Version/P -Versionsnummer/N -Versionsverwaltung -Versionsverwaltungssystem/EPS -Verskunst -Versma/EPT -Vershnens -Vershnung/P -Versorgens -Versorger/FNS -Versorgung/P -Versorgungsabgabe -Versorgungsanlage/N -Versorgungsbetrieb/ET -Versorgungsempfnger/FNS -Versorgungsengpass/Tp -Versorgungsgebiet -Versorgungsgert/E -Versorgungsgesetz -Versorgungsgter -Versorgungskabel -Versorgungskassen -Versorgungslage/R -Versorgungslager/NS -Versorgungsleitung/P -Versorgungslcke -Versorgungsprogramme -Versorgungspufferung -Versorgungsschwierigkeit/P -Versorgungsspannung/P -Versorgungsstrom -Versorgungsunternehmen -Versorgungswerte/N -Versptens -Versptung/P -Verspannens -Verspannung/P -Verspottens -Verspottung/P -Versprechens -Versprecher/FNS -Versprechung/P -Verstdterung -Verstndigens -Verstndigkeit/P -Verstndigung/P -Verstndlichkeit -Verstndnis/Qq -Verstndnislosigkeit -Verstrkens -Verstrker/NS -Verstrkerbaustein -Verstrkereingang -Verstrkerkarte/N -Verstrkerrhre -Verstrkerschaltung -Verstrkerstufe -Verstrkung/P -Verstrkungsanstieg/S -Verstrkungseinstellung -Verstrkungsregelung -Verstrkungsreserve -Verstaatlichens -Verstaatlichung/P -Verstaatlichungsaktion/P -Verstaatlichungsplne -Verstande/S -Verstandeskrfte/N -Verstandeskraft -Verstandesmensch -Verstandesschrfe -Verstandeswelt -Verstauchens -Verstauchung/P -Versteck/ST -Versteckidee/N -Versteckspiel/ST -Versteifens -Versteifung/P -Versteigerns -Versteigerung/P -Versteigerungsankndigung/P -Versteigerungswert/EPT -Versteinerns -Versteinerung/P -Verstellens -Verstellmglichkeit/P -Verstellung/P -Versteuerns -Versteuerung/P -Verstiegenheit -Verstimmens -Verstimmung/P -Verstrtheit -Verste/N -Verstocktheit -Verstopfens -Verstopfung/P -Verstoens -Verstoes -Verstoung/P -Verstrebens -Verstrebung/P -Verstrebungswinkel/NS -Verstreuens -Verstreuung/P -Verstrickens -Verstrickung/P -Verstmmelns -Verstmmlung/P -Versndigens -Versndigung/P -Versucher/FNS -Versuches -Versuchs -Versuchsabteilung -Versuchsanordnung -Versuchsanstalt/P -Versuchsballon/S -Versuchsdurchfhrung -Versuchsfahrt -Versuchsfeld -Versuchsgelnde/S -Versuchsingenieur/EPS -Versuchskaninchen/S -Versuchslabor/EPS -Versuchslaboratorium -Versuchslauf/Sp -Versuchsperson/P -Versuchsreihe/N -Versuchsrohr -Versuchsstadium/S -Versuchsstreb -Versuchsstrecke/N -Versuchstext -Versuchstier/EPS -Versuchung/P -Versunkenheit -Vertagens -Vertagung/P -Vertauschens -Vertauschung/P -Vertauschungsoperation/P -Vertauschungsproblem/EPS -Verteidigens -Verteidiger/FNS -Verteidigung/P -Verteidigungsausgaben -Verteidigungsbeitrag/STp -Verteidigungsbereitschaft -Verteidigungsbndnis/Qq -Verteidigungsfhigkeit -Verteidigungshaushalt -Verteidigungskraft -Verteidigungskrieg/EPST -Verteidigungslinie -Verteidigungsminister/NS -Verteidigungsministerium/S -Verteidigungsmittel -Verteidigungspakt -Verteidigungsplanung -Verteidigungsrat -Verteidigungsrede/N -Verteidigungsversagen -Verteidigungsvertrag/STp -Verteilens -Verteiler/NS -Verteiler/S -Verteilersulen -Verteilerschlssel/NS -Verteilung/P -Verteilungsanlage/N -Verteilungsfunktion/P -Verteuerns -Verteuerung/P -Vertiefens -Vertiefung/P -Vertilgens -Vertilgung/P -Vertonens -Vertonung/P -Vertrglichkeit -Vertrag/STp -Vertragens -Vertragsnderung/P -Vertragsabschluss/T -Vertragsabwicklung -Vertragsangebot -Vertragsbedingung/P -Vertragsbeginn -Vertragsbestand -Vertragsbestandteil/EPS -Vertragsbrche/N -Vertragsbruch/ST -Vertragsdauer -Vertragsentwrfe/N -Vertragsentwurf/ST -Vertragserfllung -Vertragsfirmen -Vertragsgegenstnde/N -Vertragsgegenstand/T -Vertragskndigung -Vertragspartei/P -Vertragspartner/FNS -Vertragsschluss/Tp -Vertragsstaat/T -Vertragsstrafe/N -Vertragstext/EPT -Vertragsunterzeichnung -Vertragsverhltnis/Qq -Vertragsverhandlung/P -Vertragsverletzung -Vertragswerk/EPS -Vertrauens -Vertrauensabstimmung -Vertrauensbasis -Vertrauensbeweis/EPT -Vertrauensbildung -Vertrauensbrche/N -Vertrauensbruch/T -Vertrauensdozent/P -Vertrauenskrise/N -Vertrauensleute/N -Vertrauensmnner/N -Vertrauensmann/ST -Vertrauensperson/P -Vertrauenssache/N -Vertrauensschwund -Vertrauensseligkeit -Vertrauensstellung -Vertrauensverlust -Vertrauensvorschuss/Tp -Vertrauensvotum/S -Vertrauenswrdigkeit -Vertraulichkeit -Vertraulichkeit/P -Vertrautheit -Vertrauung/P -Vertreibens -Vertreiber/NS -Vertreibung/P -Vertretens -Vertreter/FNS -Vertreter/NS -Vertreterbesuch -Vertreterbro -Vertreterversammlung -Vertretung/P -Vertriebe -Vertriebs -Vertriebserlse -Vertriebsgesellschaft -Vertriebsideen -Vertriebsingenieur -Vertriebskosten -Vertriebsnetz -Vertriebsorganisation/P -Vertriebspartner -Vertriebsprogramm -Vertriebsrecht/EPST -Vertriebsstellen -Vertriebsweg -Verunglimpfens -Verunglimpfung/P -Verunreinigens -Verunreinigung/P -Verunsicherns -Verunsicherung/P -Verunstaltens -Verunstaltung/P -Veruntreuens -Veruntreuung/P -Verursachens -Verursacher/NS -Verursachung/P -Verurteilens -Verurteilung/P -Vervielfltigens -Vervielfltigung/P -Vervielfltigungsapparat/EPST -Vervielfachens -Vervielfachung/P -Vervollkommnens -Vervollkommnung/P -Vervollstndigens -Vervollstndigung/P -Verwachsens -Verwahrens -Verwahrlosens -Verwahrlosung/P -Verwahrung/P -Verwaltens -Verwalter/FNS -Verwalter/S -Verwaltung/P -Verwaltungsabkommen -Verwaltungsakt/E -Verwaltungsapparat/EPST -Verwaltungsarbeit/P -Verwaltungsaufgaben -Verwaltungsbeamte/NR -Verwaltungsbehrden -Verwaltungsbezirk/ET -Verwaltungsdienst/ET -Verwaltungsfunktion/P -Verwaltungsgebude -Verwaltungsgesellschaft -Verwaltungshauptstadt -Verwaltungskosten -Verwaltungspraxis -Verwaltungsprobleme -Verwaltungsrte/N -Verwaltungsrat/T -Verwaltungsratsprsident/P -Verwaltungsreform -Verwaltungszweig/EPS -Verwandelns -Verwandelung/P -Verwandlung/P -Verwandlungsknstler/NS -Verwandtenbesuch/EPS -Verwandtschaft -Verwandtschaftsgrad/EPST -Verwarnens -Verwarnung/P -Verweben/JS -Verwechselns -Verwechselung/P -Verwechslung/P -Verwechslungskomdie -Verwegenheit/P -Verwehens -Verwehrens -Verwehrung/P -Verwehung/P -Verweichlichens -Verweichlichung/P -Verweigerns -Verweigerung/P -Verweildauer/N -Verweilzeit/P -Verweis/JT -Verweisung/P -Verweisungszeichen/S -Verweltlichens -Verweltlichung/P -Verwendbarkeit/P -Verwendens -Verwender/NS -Verwendung/P -Verwendungsmglichkeit/P -Verwendungszweck/EPST -Verwerfens -Verwerfung/P -Verwertbarkeit -Verwertens -Verwertung/P -Verwesens -Verwesung/P -Verwickelns -Verwickelung/P -Verwicklung/P -Verwilderns -Verwilderung/P -Verwindens -Verwindung/P -Verwirklichens -Verwirklichung/P -Verwirrens -Verwirrung/P -Verwischens -Verwischung/P -Verwitterns -Verwitterung/P -Verwhnens -Verwhnung/P -Verworfenheit/P -Verworrenheit/P -Verwnschens -Verwnschung/P -Verwstens -Verwstung/P -Verwundbarkeit/P -Verwundens -Verwunderns -Verwunderung/P -Verwundung/P -Verwurzelns -Verwurzelung/P -Verwurzlung/P -Verzrtelns -Verzrtlung/P -Verzahnens -Verzahnung/P -Verzauberns -Verzauberung/P -Verzehres -Verzehrs -Verzeichnens -Verzeichnis/Qq -Verzeichnisbaum/STp -Verzeichnishierarchie/N -Verzeichnisname/N -Verzeichnisstruktur/P -Verzeichnung/P -Verzeihens -Verzeihung/P -Verzerrens -Verzerrung/P -Verzicht/T -Verzichtbarkeit -Verzichterklrung/P -Verzichtserklrung/P -Verzierens -Verzierung/P -Verzinsens -Verzinsung/P -Verzgerns -Verzgerung/P -Verzgerungstaktik -Verzgerungszeit -Verzollens -Verzollung/P -Verzckens -Verzckung/P -Verzug/ETp -Verzugstage -Verzugszinsen -Verzweifelns -Verzweiflung/P -Verzweiflungsschritt -Verzweigens -Verzweigung/P -Vesper -Vesperbrot/EPST -Vestibl/S -Veteran/P -Veterinr/EPS -Veto/S -Vetorecht/EPS -Vetter/NS -Vetternwirtschaft -Vexierbild/RT -Vexierschloss/T -Vexierspiegel/NS -Vexierspiel/T -VfB -Viadukt/EPT -Vibration/P -Vibrationsmonitor -Vibrationsverlauf/Sp -Victor/S -Victoriasee -Video/S -Videoausgang -Videobnder -Videoband -Videobus/Qq -Videoclip/S -Videocontroller/S -Videofilm/EPS -Videokamera -Videokassette/N -Videomaterial/S -Videoproduktion/P -Videoprojektor -Videorecorder -Videosignal/EPS -Videotape/S -Videotext -Viecher/N -Vieh/T -Viehausstellung -Viehbestnde/N -Viehbestand -Viehdiebstahl -Viehfutter -Viehhndler/FNS -Viehhfen -Viehhof/T -Viehmarkt/Tp -Viehseuchen -Viehwagen/S -Viehweiden -Viehzchter/FNS -Viehzucht -Vieleck/EPT -Vielfltigkeit -Vielfalt -Vielflieger/N -Vielfra/EPT -Vielgestalt -Vielheit/P -Vielschichtkondensator -Vielseitigkeit -Vielweiberei/P -Vielzahl -Vielzeller -Vierbeiner/NS -Viereck/EPS -Viererbande -Viererbob -Vierergruppe/N -Viererkajak -Vierertreffen -Vierfler/N -Viergespann/EPST -Vierjahresplan -Vierkampf -Vierkantrohre -Vierlinge/N -Viermchtebesprechung/P -Viermchtestatut -Viermchteverwaltung -Vierpolschaltung -Vierpunkteprogramm -Vierradbremse -Viersitzer/NS -Vierspnner/NS -Viertaktmotor/PS -Viertelfinale/S -Vierteljahr/ET -Vierteljahresmiete -Viertelmillimeter -Viertelmillion -Viertelnote/N -Viertelpause -Viertelpfund/EPST -Viertelstndchen/S -Viertelstunde/N -Viertklssler/FNS -Viervierteltakt -Vierzeiler/S -Vierzigerin/F -Vierzigers -Vierzigstundenwoche -Vierzimmerwohnung -Vietcong -Vietnam/S -Vietnamese/FN -Vietnamkrieg -Vietnamsoldaten -Vignette/N -Vikar/EFPS -Viktoria/S -Viktualien -Villa -Villen -Villeneuve -Villengrundstck -Villenhaushalt -Villenkolonie -Villenviertel/NS -Villenvorort -Viola/S -Violine/N -Violinist/FP -Violinkonzerte -Violinschlssel/N -Violoncelli -Violoncello -Viper -Viren -Virenscanner/NS -Virginia -Virtuosin -Virtuositt/P -Virus -Viruskrankheit/P -Visa -Visage/N -Visier -Vision/P -Visionr/EFPS -Visitation/P -Visite/N -Visitenkarte/N -Viskositt -Viskosittsangaben -Visualisierens -Visualisierung/P -Visualisierungsproblem/EPS -Visualisierungssystem -Visualisierungswerkzeug -Visum/S -Visumzwang -Vitalitt/P -Vitamin/EPS -Vitaminmngel/N -Vitaminmangel/S -Vitrine/N -Vitrinentr -Vize -Vizeadmiral/EPS -Vizekanzler/NS -Vizeknig/EPS -Vizekonsul/NS -Vizeprsident/P -Vizeweltmeister -Vlies/EPT -Vgelchen/S -Vglein/S -Vgte/N -Vlker/N -Vlkerbewegung -Vlkerbund -Vlkergemeinschaft -Vlkerkunde -Vlkermord/EPST -Vlkerrechte/N -Vlkerschaft -Vlkerschlacht/P -Vlkerverstndigung -Vlkerwanderung/P -Vllerei -Vodafone -Vogel/S -Vogelarten -Vogelbauer/S -Vogelbeerbaum/STp -Vogelbeere/N -Vogelfnger/NS -Vogelflinte -Vogelflug/S -Vogelfreund -Vogelfutter/S -Vogelhaus/Tp -Vogelmensch -Vogelmist/T -Vogelnest/T -Vogelnestern -Vogelparadies/EPT -Vogelperspektiven -Vogelschau -Vogelscheuchen -Vogelspinne -Vogelsteller/S -Vogelwarte/N -Vogelzug/STp -Vogt/T -Vokabel/N -Vokabular -Vokal/EPS -Vokalmusik -Volant -Volatilitt -Volk/EST -Volke/RS -Volker/S -Volksabstimmung -Volksaktien -Volksarmee -Volksaufschrei -Volksaufstnden -Volksaufstand/T -Volksausgaben -Volksbank/P -Volksbankrotteure -Volksbefragung -Volksbegehren/S -Volksbewegung -Volksbibliothek/P -Volksbhnenvereine -Volkscharakter/P -Volksdemokratien -Volksdeutschen -Volksdichter/N -Volkseinkommen -Volksentscheid/ET -Volksernhrung -Volksfeind/EPST -Volksfest/EPT -Volksfrmmigkeit -Volksfront -Volksgerichtshfe -Volksgruppe -Volksgunst -Volkshaufen/S -Volksherrschaft -Volkshochschule/N -Volkskammer -Volkskanzler -Volkskapitalismus -Volkskommissare -Volkskongress/EPT -Volkskche/N -Volkskunde -Volkslieder -Volksmenge/N -Volksmund -Volksmusik -Volkspark -Volkspartei/P -Volkspolizei -Volksredner/S -Volksrente -Volksrepublik -Volkssage/N -Volksschichten -Volksschler -Volksschule/N -Volksschullehrer/FNS -Volksseele -Volkssport -Volkssprache -Volksstmmen -Volksstamm/T -Volksstimmen/J -Volksstck/ET -Volkstnze/N -Volkstanz/T -Volkstracht -Volkstmlichkeit -Volkstum/S -Volksvermgen/S -Volksverrter -Volksversammlung/P -Volksvertreter/N -Volksvertretung/P -Volkswagen -Volkswahl -Volksweisheit/P -Volkswillen/S -Volkswirt/EFPST -Volkswirtschaft/P -Volkswirtschaftslehre -Volkswirtschaftsplan -Volkszhlung/P -Vollansteuerung -Vollaussteuerung -Vollautomatik -Vollautomatisierung/P -Vollbder -Vollbrte/N -Vollbad -Vollbart/T -Vollbeschftigung -Vollbesitz/EPT -Vollblter -Vollblutpferd/ET -Vollblutzucht -Vollbringens -Vollbringung/P -Volldampf -Vollendens -Vollendung/P -Volleyball/S -Vollfhrens -Vollfhrung/P -Vollfunktion/P -Vollgas -Vollgefhl/ST -Vollgenuss/Tp -Vollgummi -Vollgummirder -Vollidiot/FP -Volljhrigkeitsalter -Volljurist/P -Vollkaufmann -Vollkommenheit -Vollkonzession/P -Vollkornbrot/ET -Vollkrfte/N -Vollmacht/P -Vollmachtsstimmrecht -Vollmer/S -Vollmilch -Vollmond/T -Vollpension -Vollschnittmaschine -Vollstndigkeit -Vollstndigkeitsgrnde/N -Vollstrebverfahren -Vollstreckens -Vollstrecker/FNS -Vollstreckung/P -Vollstreckungsbeamte/N -Vollstreckungsbefehl/EPST -Vollstreckungsbescheid -Volltreffer/NS -Vollversammlung -Vollversicherung -Vollversion/P -Vollwaise -Vollwaisenrente -Vollwellengleichrichtung -Vollziehens -Vollziehung/P -Vollzug/S -Volontr/EFPS -Volt -Voltaire/S -Voltmeter/S -Volumen/S -Volumenelement/EPS -Volumenstrom/S -Volumenzhler -Volvo/S -Vopo -Vorabauftrag/STp -Vorabend -Vorabentscheidung/P -Vorablieferung -Vorahnens -Vorahnung/P -Voranalyse/N -Vorankndigen/JS -Voranmelden/JS -Voranschlag/STp -Voranzeige/N -Vorarbeit/R -Vorarbeiter/FNS -Vorarlberg -Vorauffhrung/P -Vorausbestellung -Vorausbestimmens -Vorausbestimmung/P -Vorausbezahlung/P -Vorauskasse -Vorausschtzung -Voraussetzens -Voraussetzung/P -Voraussicht/P -Voraustilgung -Vorauswahl -Vorauszahlen/JS -Vorbau/ST -Vorbedacht -Vorbedeutung/P -Vorbedingung/P -Vorbehalt/ES -Vorbemerkung/P -Vorbereitens -Vorbereitung/P -Vorbereitungsprogramm/EPS -Vorbereitungszeit -Vorbericht/EPT -Vorbesetzen/JS -Vorbesprechen/JS -Vorbestellens -Vorbestellpreis/EPT -Vorbestellung/P -Vorbestrafen/JS -Vorbeugens -Vorbeugung/P -Vorbeugungsmanahme/N -Vorbeugungsmittel/N -Vorbild/JPR -Vorbilden/JSW -Vorbildfunktion/P -Vorbohren -Vorbohrgert -Vorbote/N -Vorbhne/N -Vordenker -Vorderachse/N -Vorderansicht/P -Vorderarm/EPT -Vorderasien -Vorderbein/EPT -Vorderdeck/ST -Vorderfu/Tp -Vordergrnde/N -Vordergrund/T -Vorderhnde -Vorderlauf/Sp -Vorderleute -Vorderposition/P -Vorderpratze/N -Vorderrder -Vorderrad -Vorderradantrieb/EPT -Vorderradbremse/N -Vorderreihe/N -Vorderseite/N -Vordersitz/EPT -Vorderteil/EPT -Vordertr/P -Vorderzhne/N -Vorderzahn/ST -Vordiplom/EPS -Vordruck/EPST -Vorecho/S -Voreilens -Voreiligkeit -Voreilung/P -Voreingenommenheit -Voreinstellens -Voreinstellung/P -Voreltern -Vorenthaltens -Vorenthaltung/P -Vorentwurf/S -Vorexamen/S -Vorfahr -Vorfahrtrecht/T -Vorfaktor/PS -Vorfall/Sp -Vorfeier/N -Vorfeld/RT -Vorfertigung/P -Vorfilm/ET -Vorfrage/N -Vorfreude/N -Vorfhrdame -Vorfhrens -Vorfhrer/NS -Vorfhrgerte -Vorfhrraum/STp -Vorfhrsystem -Vorfhrung/P -Vorfhrwagen -Vorfhrzwecke/N -Vorgnger/FNS -Vorgngermodell/EPS -Vorgngersteuerung -Vorgngerversion/P -Vorgrten -Vorgabe -Vorgabewert/EPS -Vorgang/STp -Vorgarten/S -Vorgebirge/NS -Vorgefhl/EPST -Vorgehens -Vorgehensweise/N -Vorgericht/EPT -Vorgeschichte -Vorgeschmcke/N -Vorgeschmack -Vorgesprch/EPS -Vorgriff/EPT -Vorhngeschloss/T -Vorhute/N -Vorhabens -Vorhalle/N -Vorhaltemarke -Vorhaltens -Vorhaltung/P -Vorhandensein/S -Vorhang/STp -Vorhaut -Vorherbestimmens -Vorherbestimmung/P -Vorherrschaft -Vorhersagbarkeit -Vorhersehens -Vorhinein -Vorhfe/N -Vorhof/T -Vorjahr/EPT -Vorjahresgewinn -Vorjahreshhe -Vorjahresmonate -Vorjahresperiode -Vorjahressieger -Vorjahresstand -Vorjahresvolumen/S -Vorjahreszahlen -Vorjahrsmeister -Vorkmpfer/FNS -Vorkasse -Vorkauf/STp -Vorkaufsrecht/EPST -Vorkehren/JS -Vorkehrungsmanahme/N -Vorkenntnis/q -Vorkommens -Vorkommnis/Qq -Vorkosten -Vorkriegspreise -Vorkriegsstze -Vorkriegswert -Vorlufer/FNS -Vorlufigkeit -Vorladens -Vorladung/P -Vorlage -Vorlageschreiben/S -Vorlageweg -Vorlauf/STp -Vorleben/S -Vorleger/NS -Vorleisten/JS -Vorlesens -Vorleser/N -Vorlesung/P -Vorlesungsstreik -Vorlesungsverzeichnis/Qq -Vorliebe/N -Vorliegens -Vormrsche/N -Vormachtrolle/N -Vormachtstellung -Vormarsch/T -Vormischung -Vormittag/EPS -Vormittagsstunde/N -Vormonat/S -Vormund/EPST -Vormundschaft/P -Vormundschaftsgericht/EPST -Vormustergert -Vorname/N -Vornamen/S -Vornehmheit -Vorort/EPST -Vorortbahn/P -Vorortszug/STp -Vorplanen/JS -Vorpommern/S -Vorposten/S -Vorpremiere -Vorpressung -Vorproduktstadium/S -Vorprogrammieren -Vorprojekt -Vorprfen/JS -Vorrte/N -Vorrang/ST -Vorrat/ST -Vorratskammer/N -Vorratsspeicher/S -Vorraum/STp -Vorrecht/EPS -Vorrede/N -Vorredner/NS -Vorreiter/NS -Vorrichtens -Vorrichtung/P -Vorruhestand -Vorrunde/N -Vorsnger/FNS -Vorstze/N -Vorsaison -Vorsatz -Vorsatzlinse/N -Vorschau -Vorschein -Vorschiebens -Vorschlag/STp -Vorschlagsrecht -Vorschlagstext/EPT -Vorschlussrunde/N -Vorschrift/P -Vorschbe/N -Vorschub/ST -Vorschubausgang -Vorschubautomatik -Vorschubbewegung -Vorschubdruck/T -Vorschubgeschwindigkeit -Vorschubregelung -Vorschubrichtung/P -Vorschubschlitten -Vorschubschritt/E -Vorschubzylinder/NS -Vorschule/N -Vorschuss/Tp -Vorschusslorbeeren -Vorschussrunde/N -Vorsehens -Vorsehung/P -Vorsicht -Vorsichtsmanahme/N -Vorsichtsmaregel/N -Vorsilbe/N -Vorsitz/RT -Vorsorgeplanung -Vorspann/ST -Vorspannens -Vorspannung/P -Vorspeise/N -Vorspiel/S -Vorsprnge/N -Vorsprung/S -Vorstdte/NR -Vorstdter/FNS -Vorstnde/N -Vorstadt -Vorstadtbahnhof -Vorstand/T -Vorstandsebene -Vorstandskrften -Vorstandsmitglied/T -Vorstandsmitgliedern -Vorstandssprecher -Vorstandsvorsitzende/NR -Vorsteher/FNS -Vorsteherdrse/N -Vorsteherhund/ET -Vorstellens -Vorstellung/P -Vorstellungsgesprch/EPST -Vorstellungskraft -Vorstellungsvermgen/S -Vorsteuerventil/EPS -Vorsto/Tp -Vorstrafe/N -Vorstudie/N -Vorstudium/S -Vorstufe/N -Vortuschens -Vortuschung/P -Vortag/EPST -Vortagskurse -Vortagsniveau -Vortagsverluste -Vorteil/EPST -Vorteilpunkte -Vortrag/STp -Vortragsblock -Vortragsknste/N -Vortragsknstler/FNS -Vortragskunst -Vortragsreise/N -Vortragsthema -Vortrieb/S -Vortriebsantrieb -Vortriebsarbeit -Vortriebsfortschritt -Vortriebsgeschwindigkeit -Vortriebsleistung/P -Vortriebsmaschine/N -Vortriebspause/N -Vortriebsrichtung -Vortriebszylinder -Vortritt/EPS -Vortrupp/S -Vorberlegung/P -Vorbung/P -Voruntersuchung/P -Vorurteil/EPS -Vorvter/N -Vorventil/S -Vorverarbeitung -Vorvergangenheit -Vorverkauf/STp -Vorverkaufskasse/N -Vorverlegens -Vorverlegung/P -Vorverstrker/NS -Vorverstrkerausgang -Vorversuche/N -Vorvertrag/STp -Vorwhlnummer/N -Vorwnde/N -Vorwrtsfahren/S -Vorwrtsrichtung -Vorwahl/P -Vorwand/ST -Vorwarnen/JS -Vorwegkonsumieren -Vorweihnachtstage -Vorwiderstnde -Vorwiderstand -Vorwissen/S -Vorwoche/N -Vorwochenstand -Vorwort/EPS -Vorwrfe/N -Vorwurf/S -Vorzeichen/S -Vorzeichenregel/N -Vorzensur/P -Vorzimmerdame -Vorzug/STp -Vorzugsaktienkapital -Vorzugsfolge/N -Vorzugspreis/EPT -Vorzugspunkt/EPS -Vorzugsrichtung/P -Vorzugsstellung/P -Votum -Voyeur/EFPS -Voyeurismus -Vulgraposteln -Vulkan/EPS -Vulkanausbruch -Vulva -Vulven -WC -WDR -WM -Wchter/FNS -Wgbarkeit/P -Wgens -Wgung/P -Whlbarkeit -Whler/FNS -Whlerliste/N -Whlerschaft/P -Whlerstimmen -Whlerstimmenfang/S -Whlerstimmenkauf/Sp -Whlervereinigung -Whlerwillen/S -Whrung/GP -Whrungsabkommen -Whrungsabwertung -Whrungsausgleichfonds -Whrungsaustausch -Whrungsbank -Whrungsbewegung/P -Whrungsdifferenz -Whrungseinheit/P -Whrungsexperten -Whrungsfluktuationen -Whrungsfonds -Whrungsgebiet -Whrungsgefges -Whrungsgeschften -Whrungsgeschehen/S -Whrungsgewinne -Whrungshilfe -Whrungskarussell -Whrungskorb -Whrungskrise/N -Whrungskurse/N -Whrungslage -Whrungsoptionen -Whrungsoptionsgeschft/EPST -Whrungsordnung -Whrungspaare -Whrungspolitik -Whrungspositionen -Whrungsreformen -Whrungsregime -Whrungsreserven -Whrungsrisiko -Whrungssituation -Whrungsspekulant -Whrungsspekulation/P -Whrungsstabilitt -Whrungssymbol -Whrungssystem/S -Whrungstrends -Whrungsunion -Whrungsunterschieden -Whrungsvariationen -Whrungsvergewaltigung -Whrungsverlust/E -Whrungsverschiebung/P -Whrungswarrant/S -Wlder/N -Wlle/N -Wlzer/NS -Wmser/N -Wnde/N -Wrmeableitung -Wrmeausdehnungskoeffizient/P -Wrmebehandlung -Wrmebestndigkeit -Wrmeeinheit/P -Wrmegrad/EPST -Wrmelehre/N -Wrmeleiter/S -Wrmeleitpaste -Wrmemesser/N -Wrmepumpen -Wrmeschutz -Wrmesensor -Wrmetechnik -Wrmeverteiler -Wrmflasche/N -Wrmflaschenkrieg -Wrter/FNS -Wsche/R -Wschefabrik -Wschegeschft/S -Wscheklammer/N -Wscher/FNS -Wscherei/P -Wscheschleuder/N -Wscheschrnke/N -Wscheschrank/S -Wschestnder -Wschetinte -Wsserns -Wsserung/P -Waage/N -Waagschale/N -Wabe/N -Wachbataillon -Wachhabende/NR -Wachhaus/Tp -Wachholderschnpsen -Wachhund/EPST -Wachlokal/EPS -Wachmannschaft/P -Wacholder/NS -Wacholderbeeren -Wacholderbranntwein/E -Wacholderschnpse -Wacholderschnapses -Wacholdersirup/ES -Wacholderstrucher/N -Wacholderstrauch/S -Wacholderwein/E -Wachposten/S -Wachs/T -Wachsabguss/Tp -Wachsamkeit -Wachschiff/EPS -Wachsfigur/P -Wachsfigurenkabinett/EPS -Wachskerze/N -Wachsleinwnde -Wachsleinwand -Wachslicht/S -Wachslichter -Wachspuppe/N -Wachsstcke -Wachsstock/S -Wachsstreichhlzer -Wachsstreichholz/T -Wachstcher -Wachstuch/S -Wachstum/S -Wachstumsbranche/N -Wachstumsphase/N -Wachstumspolitik -Wachstumsprojektionen -Wachstumsprozess/EPT -Wachstumsrate/N -Wachstumsrichtung/P -Wachstumsstrung -Wachtel/N -Wachtmeister/FNS -Wachtposten -Wachtraum/STp -Wachtrme -Wachturm/S -Wackelbetriebe -Wackelkontakt/EPST -Wackelunternehmen -Wackersdorf -Wackler -Wade/N -Wadenkrmpfe/N -Wadenkrampf -Wadenstrmpfe/N -Wadenstrumpf -Wadi/S -Waffe/N -Waffel/N -Waffenappell/ES -Waffenarten -Waffenbesitz -Waffenbrder/N -Waffenbrderschaft/P -Waffenbruders -Waffendienst/ET -Waffeneinfuhr -Waffenembargo -Waffenexport/E -Waffenfabrik/P -Waffenfabrikant/P -Waffengngen -Waffengang/S -Waffengattung/P -Waffengewalt/P -Waffenhandelsfirma -Waffenhandelsfrage -Waffenhilfe -Waffenkammer/N -Waffenlager/S -Waffenlieferung/P -Waffenmeisterei/P -Waffenmeistern -Waffenrcke/N -Waffenrock -Waffenruhe/N -Waffenschein/PS -Waffenschmied/PS -Waffenschmuggel/S -Waffenschmuggler/N -Waffenstillstnde/N -Waffenstillstand/ST -Waffenstillstandsabkommen -Waffenstillstandslinie -Waffenstillstandsverhandlung/P -Waffensystem/EPS -Wagehlse/N -Wagehals/T -Wagemut/S -Wagenabteil/PS -Wagenfhrer/S -Wagenheber/N -Wagenladung/P -Wagenlauf/Sp -Wagenpark/S -Wagenpflege/N -Wagenpflegen/S -Wagenrder/N -Wagenrad -Wagenrcklauf/Sp -Wagens -Wagenschlag/Sp -Wagenschmiere -Wagenspur -Wagenvorschub -Wagestck/EPS -Waggon/S -Waghalsigkeit/P -Wagner/S -Wagneroper -Wagnis/Qq -Wagon/S -Wahl/P -Wahlakt/P -Wahlausschuss/Tp -Wahlaussichten -Wahlbericht/PS -Wahlbeteiligung -Wahlbezirk/EPS -Wahlbndnis/Qq -Wahldatum -Wahleinsatz -Wahlerfolg -Wahlergebnis/Qq -Wahlfcher/N -Wahlfach/S -Wahlfeldzug/STp -Wahlgang/STp -Wahlgeschenken -Wahlgesetz/E -Wahlheimat -Wahljahr -Wahlkmpfe -Wahlkampf/ST -Wahlkampfergebnis/Qq -Wahlkampfprogramm -Wahlkampftermine -Wahlkampftour -Wahlkampfversprechen -Wahlkonsequenzen -Wahlkreis/EPT -Wahlkreiseinteilung -Wahlkundgebung -Wahllokal/EPS -Wahlmnner -Wahlmnnergremium -Wahlmann/S -Wahlmglichkeit/P -Wahlmonat -Wahlperiode -Wahlplattformen -Wahlprogramm -Wahlprfer -Wahlprfung/P -Wahlrecht/EPST -Wahlrede/N -Wahlschalter/S -Wahlscheibe -Wahlschlacht/P -Wahlsieg -Wahlsonntag -Wahlsprche/N -Wahlspruch/S -Wahlstimme/N -Wahlsystem -Wahltag/EPS -Wahltermin/E -Wahlurnen -Wahlveranstaltung/P -Wahlverlust -Wahlversammlung/P -Wahlversprechen -Wahlverwandtschaft -Wahlvolk -Wahlvorschlag/STp -Wahlvorstand -Wahlzelle/N -Wahlzettel -Wahn/S -Wahnbild/RST -Wahnsinn -Wahnvorstellung/P -Wahnwitz -Wahrens -Wahrhaftigkeit -Wahrheit/P -Wahrheitsbeweis/EPT -Wahrheitsgehalt -Wahrheitsliebe -Wahrheitssucher -Wahrheitswert/EPS -Wahrnehmens -Wahrnehmung/P -Wahrnehmungsapparat -Wahrnehmungsorganen -Wahrnehmungssystem -Wahrnehmungsvermgen/S -Wahrsager/FNS -Wahrsagerei -Wahrscheinlichkeit/P -Wahrscheinlichkeitsfunktion/P -Wahrscheinlichkeitsrechnung/P -Wahrscheinlichkeitstheorie -Wahrscheinlichkeitsverteilung/P -Wahrsprche/N -Wahrspruch/S -Wahrung/P -Wahrzeichen/S -Waidmnner/N -Waidmann/S -Waise/N -Waisenhaus/Tp -Waisenkind/RT -Waisenknabe/N -Wal/EPT -Walart/P -Wald/EJT -Waldarbeiter/FNS -Waldbrnde/N -Waldbrand/T -Walderdbeere -Waldgebiete -Waldgebirge/S -Waldgrundstck -Waldgut -Waldhaus/Tp -Waldhrnern -Waldhorn/S -Waldhter/N -Waldlndern -Waldland/T -Waldlauf/Sp -Waldlichtung -Waldmeister/N -Waldorflehrer/FNS -Waldorfpdagogik -Waldorfschule/N -Waldrnder/N -Waldrand -Waldsee -Waldshut -Waldsterben -Waldweg/EPS -Waldwiese/N -Walfnger/S -Walfang -Walfangstation/P -Walfisch/ET -Walhalla -Walkmhle/N -Walkre -Wall/JS -Wallach/EPS -Wallens -Wallenstein/S -Wallfahrer/NS -Wallfahrten -Wallfahrtsort/PS -Wallraff/S -Walnuss/Mp -Walnussbaum/STp -Wall/EPS -Walrssern -Walross/EPT -Walter/S -Walther/S -Waltran/PS -Waltraud/S -Walzblech/EPS -Walzenachse -Walzenantrieb -Walzenarm -Walzenautomatik -Walzendetektor/P -Walzendurchmesser/S -Walzenerkennung -Walzenfahrer -Walzenfolgeautomatik -Walzenfrskopf/S -Walzengeschwindigkeit -Walzenhhe -Walzenimpulse -Walzenlager/S -Walzenmarkierer/S -Walzenmaschine -Walzenmitte -Walzenmonitor -Walzenneigungssteuerung -Walzenort -Walzenposition -Walzenrad/T -Walzenrichtung -Walzenschalter -Walzenschrmlader/N -Walzensensoren -Walzenstandort -Walzenstandorterkennung -Walzenstandortseingabe -Walzenstreb/ES -Walzenstrme -Walzentragarm -Walzer/NS -Walzgold/T -Walzgut -Walzlager/NS -Walzstahlproduktion -Walzwerk/EPST -Wams/T -Wandbefestigung -Wandbekleidung/P -Wandel/JS -Wandelbarkeit -Wandelgang/Sp -Wandelhalle/N -Wandelns -Wandelobligation/P -Wandelstern/EPS -Wandelung/P -Wandelzeit -Wanderausstellung -Wanderbhne/N -Wanderbursche/N -Wanderdne/N -Wanderer/NS -Wandergebiet -Wandergewerbe/NS -Wanderheuschrecke -Wanderin/F -Wanderjahr/PS -Wanderleben -Wanderniere/N -Wanderns -Wanderpokal/PS -Wanderprediger -Wanderpreis/EPT -Wanderratte/N -Wanderschaft -Wandersmnner/N -Wandersmann -Wanderstbe/N -Wanderstab -Wandertag -Wandertrieb/EPS -Wandertruppe/N -Wanderung/P -Wandervereine/N -Wandervereins -Wandervgel/N -Wandervogels -Wanderwege -Wandgehuse -Wandgemlde/S -Wandkalender/S -Wandkarte/N -Wandler/NS -Wandleuchter/NS -Wandlung/P -Wandlungsbereich/EPS -Wandlungsprozess/EPT -Wandlungszeit -Wandmalerei/P -Wandmontage -Wandpfeiler/S -Wandschirm/EPS -Wandschmuck -Wandschoner/S -Wandschrnke/N -Wandschrank/S -Wandspiegel/S -Wandtafel/N -Wandteppich/PS -Wanduhr -Wandverkleidung -Wange/N -Wankelmotor/PS -Wankelmut/T -Wanne/N -Wannenbder/N -Wannenbad -Wannsee -Wanst/T -Wanze/N -Wappen/S -Wappenbild/R -Wappenkunde -Wappenschild/S -Wappenschildern -Wappensprche -Wappenspruch/S -Ware -Warenabkommen/S -Warenaufzug/STp -Warenausfuhr -Warenausgang -Warenaustausch/T -Warenbegleitschein -Warenbestnde/N -Warenbestand/S -Warenbrse -Wareneigenschaften -Wareneingang -Wareneinkauf/Sp -Warenfluss/Tp -Warengruppen -Warenhaus/Tp -Warenhauskatalog -Warenhausunternehmen -Warenkonti -Warenkonto/S -Warenkorb/S -Warenkredit/EPS -Warenlager/N -Warenlieferung -Warenmarkt/Tp -Warenmenge -Warenniederlagen -Warennummern -Warenpapieren -Warenposition/P -Warenproben -Warenprotokoll -Warenrechung/P -Warenrckvergtung/P -Warentermin -Warentermingeschft/EPS -Warentest -Warentransporte/S -Warenverkehr -Warenverzeichnis/Qq -Warenzeichen/S -Warhol/S -Warmlauf/Sp -Warmlaufphase/N -Warmluftstrmung -Warmwasser/S -Warmwasserbereitung/P -Warmwasserheizung -Warmwasserspeicher/N -Warmwasserversorgung/P -Warnblinken -Warndreieck/PS -Warnens -Warngrenze/N -Warnhupe -Warnlampe -Warnleuchte -Warnlicht -Warnmeldung -Warnschuss/Tp -Warnsignal/EPS -Warnstreik/EPS -Warntafel/N -Warnung/P -Warnungsruf/E -Warnzeichen/S -Warrant/S -Warrantpreis/EPT -Warschau -Wartbarkeit -Wartefrau/P -Wartegeld/RT -Warteliste/N -Wartens -Warteposition/P -Warteposten/S -Warteraum/STp -Wartesle/N -Wartesaal -Warteschlange/N -Wartezeit/P -Wartezimmer/NS -Wartezustand/ST -Wartezyklus -Wartung/P -Wartungsanleitung/P -Wartungsarbeit/P -Wartungsaufwand -Wartungsbestimmung/P -Wartungsdaten -Wartungsfall -Wartungsgebhr/P -Wartungsintervall/EPS -Wartungskstchen -Wartungskosten -Wartungsmanahme/N -Wartungsprozess/EPT -Wartungssoftware -Wartungsunterlagen -Wartungsvertrag/STp -Wartungszeit/P -Wartungszwecke/N -Wartungszyklen -Warze/N -Waschanstalten -Waschautomat/P -Waschbr/P -Waschbecken/S -Waschbenzin -Waschbrett/S -Waschbretter -Waschens -Waschfrau -Waschgelegenheit/P -Waschkessel/S -Waschkrbe -Waschkorb/S -Waschkche/N -Waschlappen/S -Waschlauge/N -Waschleder/NS -Waschmaschine/N -Waschmittel/NS -Waschpulver/NS -Waschraum/STp -Waschschssel/N -Waschseife/N -Waschtisch -Waschtoiletten -Waschtrge/N -Waschtrog/S -Waschung/P -Waschwasser/N -Waschweib/T -Waschweiber -Waschzettel/NS -Washington -Wasser/S -Wasserabscheidern -Wasseratmosphre -Wasseraufnahme -Wasserball/Sp -Wasserballspiel/EPS -Wasserbau/S -Wasserbeckensystem -Wasserbedarf -Wasserbehlter/N -Wasserbestrahlung -Wasserblase/N -Wasserbombe -Wasserbrche/N -Wasserbruch -Wasserdmpfe/N -Wasserdampf -Wasserdichtigkeit -Wasserdurst -Wassereimer/N -Wassereinbruch -Wassereinfluss/Tp -Wassereinlass/Tp -Wassereinwirkung -Wasseremulsion -Wasserfahrzeug/EPS -Wasserfall/Sp -Wasserfarbe/N -Wasserfestigkeit -Wasserflchen -Wasserflaschen -Wasserflhe/N -Wasserfloh/S -Wasserflugzeug/EPS -Wasserfluten -Wasserfront -Wasserglser -Wasserglas/T -Wassergrben -Wassergraben/S -Wasserhhne/N -Wasserhahn/S -Wasserhaushalt/EPS -Wasserheilanstalten -Wasserheilkunde/N -Wasserhosen -Wasserhhnern -Wasserhuhn/S -Wasserhydraulik -Wasserkasten/S -Wasserkessel/S -Wasserklranlage -Wasserklosett/S -Wasserkpfe/N -Wasserkopf/S -Wasserkrften -Wasserkraftwerk/EPS -Wasserkrug/STp -Wasserkhlung -Wasserkur -Wasserlauf/Sp -Wasserleitung/P -Wasserleitungsrohr/PS -Wasserlilie -Wasserlinie/N -Wassermngel -Wassermangel -Wassermann -Wassermassen -Wassermelone -Wassermenge/N -Wassermesser/S -Wassermhle/N -Wassernot -Wassernymphe -Wasseroberflche -Wasserpflanze/N -Wasserpistolen -Wasserpocken -Wasserpolizei -Wasserprobleme -Wasserqualitt -Wasserrder -Wasserrad/S -Wasserratte -Wasserreservoire -Wasserressourcen -Wasserrohr/EPS -Wasserrutschbahnen -Wassersule/N -Wasserschden -Wasserschaden/S -Wasserscheide/N -Wasserschluche/N -Wasserschlange/N -Wasserschlauch/S -Wasserschloss/T -Wasserschutz -Wasserschutzpolizei -Wasserski/S -Wasserskiern -Wasserspeicher -Wasserspeier/NS -Wasserspiegel/NS -Wassersport -Wassersplung -Wasserstnde/N -Wasserstand -Wasserstandsanzeiger/NS -Wasserstein/EPS -Wasserstiefel/NS -Wasserstoff/S -Wasserstoffbomben -Wasserstoffsuperoxyd/PS -Wasserstrahl/S -Wasserstrae/N -Wasserstraenverbindung -Wasserstraenverwaltung -Wasserschten -Wassersucht -Wassersuppe -Wassertemperatur -Wassertier/EPS -Wassertropfen -Wassertrme/N -Wasserturm/S -Wasseruhren -Wasserumlauferhitzer -Wasserverband -Wasserverbrauch/S -Wasserverdrngung/P -Wasserverschwendung -Wasserversorgung/P -Wasservgel -Wasservogel/S -Wasserwaagen -Wasserweg/EPS -Wasserwelle/N -Wasserwerfer/NS -Wasserwerk/PS -Wasserzhler/NS -Wasserzeichen/S -Waterloo/S -Watsche/N -Watt/EPS -Wattebusche/N -Wattebausch/T -Wattenmehr -Wattepfropf/EPS -Wattleistung/P -Watvgel -Watvogel/S -Weber/FNS -Weberbaum/STp -Weberei/P -Weberknecht/EPS -Weberschiffchen/S -Webfehler/NS -Webserver/NS -Website/S -Websthle -Webstuhl/S -Webware -Wechsel -Wechselagent/P -Wechselakzept/S -Wechselaussteller/N -Wechselbder/N -Wechselblge/N -Wechselbad -Wechselbalg/S -Wechselbank -Wechselbestand -Wechselbeziehung/P -Wechselbrief/EPS -Wechselbrgschaft/P -Wechselflle/N -Wechselfieber/N -Wechselfolge/N -Wechselfrist -Wechselgeld/R -Wechselgesang/Sp -Wechselgesprch/EPS -Wechselgetriebe/NS -Wechselglubiger/NS -Wechselinhaber/FNS -Wechseljahre/N -Wechselkassen -Wechselkurs/EPT -Wechselkursnderung/P -Wechselkursentwicklung -Wechselkursgewinne -Wechselkurssenkung -Wechsellast -Wechsellastfestigkeit -Wechselmakler/S -Wechselnehmer/FNS -Wechselplatte -Wechselprotest/EPS -Wechselrecht/EPS -Wechselreiter/FNS -Wechselschuld/P -Wechselspannung/P -Wechselspannungsgre/N -Wechselspiel/EPS -Wechselsteuer -Wechselstrme/N -Wechselstrom/S -Wechselstromanteile -Wechselstromwiderstand -Wechselstuben -Wechselwinkel/N -Wechselwirkung/P -Wechte/N -Weckanruf/PS -Wecker/NS -Wedel/S -Wegbereich/S -Wegbereiter/N -Wegbereitung -Wege/S -Wegebau -Wegelagerer/NS -Wegemessung -Wegerecht/EPS -Wegerich/EPS -Wegfall/Sp -Weggang/Sp -Weggeber -Weggebersignal -Wegkontrolle/N -Weglnge/N -Weglassens -Weglassung/P -Wegmarkierung -Wegmesser -Wegmessung/P -Wegnahme -Wegs -Wegschalten -Wegschnecke -Wegsensoren -Wegsignale -Wegstrecke/N -Wegunterschied -Wegweiser/NS -Wegwerfgesellschaft -Wegwerfpreis/EPT -Wegzehrung/P -Wehgeschrei/S -Wehmut -Wehr/G -Wehrbeauftragte/N -Wehrbereich/PS -Wehrbereichskommando -Wehrdebatte -Wehrdienst/EPT -Wehrdienstverweigerer -Wehrdrfer -Wehrersatzdienst/EPST -Wehrlosigkeit -Wehrmacht -Wehrmachtfhrer -Wehrmachtsangehrige -Wehrpass/Tp -Wehrpflicht/P -Wehrpropaganda -Wehrsold/EPS -Wehrstammrolle/N -Wehrbung/P -Wehrwissenschaft -Weib/EMT -Weibe/MRS -Weibervlker/N -Weibervolk -Weiblichkeit -Weibsbild/R -Weichbild/RT -Weichensteller/NS -Weichheit -Weichherzigkeit -Weichling/EPS -Weichmacherspiel -Weichsel -Weichselkirsche/N -Weichteil/EPS -Weichtier/EPS -Weichwhrung/P -Weichware -Weidelndern -Weideland/S -Weidenbaum/STp -Weidenktzchen/S -Weidenkrbe/N -Weidenkorb/T -Weidepltze/N -Weideplatz/T -Weidezeit -Weidmnner -Weidmann/S -Weidmannsheil -Weidwerk/S -Weierstra -Weigerns -Weigerung/P -Weihbischfen -Weihbischof/S -Weiher/N -Weihnacht/P -Weihnachtsabend/EPS -Weihnachtsbaum/STp -Weihnachtsbeleuchtung -Weihnachtsbescherung -Weihnachtsbotschaft -Weihnachtsfeiertag -Weihnachtsferien -Weihnachtsfest/T -Weihnachtsgaben -Weihnachtsgans -Weihnachtsgeschenk/EPS -Weihnachtsgratifikation/P -Weihnachtsgre -Weihnachtskarte/N -Weihnachtskugeln -Weihnachtslied/RST -Weihnachtsmnner/N -Weihnachtsmann/S -Weihnachtsmarkt/STp -Weihnachtspaket -Weihnachtsreise -Weihnachtssaison -Weihnachtssonderpreis -Weihnachtstag/EPST -Weihnachtsverkehr -Weihnachtszeit -Weihrauch/S -Weihrauchwasser/NS -Weihwasser -Weiler/N -Weimar -Weimarer -Weinbuerin/F -Weinbau/S -Weinbauer/S -Weinbeere -Weinberg/EPS -Weinbergschnecke/N -Weinbltter -Weinblatt/S -Weinbrnde -Weinbrand/S -Weinbrennerei -Weineinkufer -Weinernte/N -Weines -Weinessig/EPS -Weinexperten -Weinfsser/N -Weinfass/MT -Weinfest -Weinflasche -Weingrten -Weingrtner/N -Weingarten/S -Weingeist -Weingesetz -Weinglser/N -Weinglas/T -Weingut -Weinhndler/FNS -Weinhandlung/P -Weinhaus/Tp -Weinjahr/EPST -Weinjahrgang/Sp -Weinkarte/N -Weinkeller/S -Weinkelter/N -Weinkenner/FNS -Weinkrmpfe/N -Weinkrampf/S -Weinland -Weinlese -Weinpreise -Weinpresse/N -Weinrebe/N -Weinreisender -Weins -Weinsuren -Weinschnke -Weinschenke -Weinstein -Weinstcke/N -Weinstock/S -Weinstube/N -Weintraube/N -Weintrester/N -Weinwirtschaft -Weibier/EPS -Weiblech/EPS -Weibrot/EPS -Weibcher/N -Weibuch/EPS -Weidorn/EPS -Weifisch/EPS -Weigerber/FNS -Weiglut -Weigold -Weikse -Weikohl/EPS -Weimetall/EPS -Weirussland -Weiwein/EPS -Weiweinsoe -Weizeug/S -Weisens -Weisheit/P -Weisheitszhne/N -Weisheitszahn/S -Weissagens -Weissager/FNS -Weissagung/P -Weisung/P -Weitblick/S -Weitenausgabe -Weiterarbeit -Weiterausbau -Weiterausbildung -Weiterbeschftigung -Weiterbestand/S -Weiterbildens -Weiterbildung/P -Weiterbildungskurse -Weiterdenken -Weiterentwicklung/P -Weiterflug/S -Weiterfhrens -Weiterfhrung/P -Weitergabe -Weiterleitung/P -Weitermelden -Weiterschalten -Weiterschauen -Weiterverarbeitung -Weiterverfolgung -Weiterverkauf/Sp -Weiterzahlung -Weitlufigkeit -Weitschweifigkeit -Weitsichtigkeit -Weitspringer -Weitsprnge/N -Weitsprung -Weizen/S -Weizenabkommen -Weizenbaum -Weizenkleie -Weizenmehle/N -Weizenpreis/EPT -Weizenstroh -Wellblech/PS -Wellblechgaragentor -Wellenamplituden -Wellenanteile -Wellenbereich/EPS -Wellenbewegung/P -Wellenbrecher/NS -Wellenbndel -Wellenfrage -Wellenfront -Wellenfunktion/P -Wellengngen -Wellengang/S -Wellengepltscher -Wellenlnge/N -Wellenlinie/N -Wellenreiten -Wellenschlag/STp -Wellensittich/EPS -Wellentler/N -Wellental -Wellenteilen -Wellentheorie/N -Wellenwiderstand -Wellenzug/Sp -Wellington/S -Wellkarton -Wellpappen -Welpe/N -Welt/P -Weltall/S -Weltalter/NS -Weltangebot/S -Weltanschauung/P -Weltarbeitslosigkeit -Weltatlas -Weltausstellung/P -Weltausstellungsgelnde -Weltbank -Weltbedeutung -Weltbestleistung/P -Weltbevlkerung -Weltbild/RST -Weltbrsen -Weltbrand -Weltbrger/NS -Weltbund -Weltcupabfahrt -Weltenbummler/N -Weltereignis/Qq -Welterfahrung/P -Welterkenntnis/q -Welterleben/S -Welternhrung -Welternhrungskonferenz -Weltfeind -Weltfirma -Weltfrderung -Weltformat -Weltfriede/N -Weltgeltung/P -Weltgericht/S -Weltgerichtshfe/N -Weltgerichtshof/S -Weltgeschehen -Weltgeschichte -Weltgesundheitsorganisation -Weltgewandtheit -Weltgewerkschaftsbnden -Weltgewerkschaftsbund/T -Welthandel/S -Welthandelsflotte -Welthandelsfreiheit -Weltherrschaft/P -Welthungerhilfe -Weltkarte/N -Weltkenntnis/q -Weltkirchenrat -Weltklasse -Weltklassespieler -Weltklima/S -Weltklugheit -Weltkrper/NS -Weltkommunismus -Weltkongress/EPT -Weltkonjunktur -Weltkrieg/EPST -Weltkugel/N -Weltlage/N -Weltlauf/Sp -Weltliteratur -Weltmchte/N -Weltmnnern -Weltmachtpolitik/P -Weltmachtstellung -Weltmann/S -Weltmarken -Weltmarkt/STp -Weltmarktpreise -Weltmarktverhltnis/Qq -Weltmeer/EPS -Weltmeinung -Weltmeister/FNS -Weltmeisterelf -Weltmeistermannschaft -Weltmeisterschaft/P -Weltmodell/EPS -Weltoffenheit -Weltordnung/P -Weltpolitik/P -Weltpostverein/PS -Weltpremiere/N -Weltproblematik -Weltprobleme -Weltproduktion -Weltrat/T -Weltraum/ST -Weltraumfahrer -Weltraumfahrt -Weltraumfragen -Weltraumkongress/EPT -Weltraummchte -Weltrecht -Weltregierung -Weltregion/P -Weltreich/EPS -Weltreise/N -Weltrekord/EPS -Weltrekordlufer -Weltrekordler/FNS -Weltrekordmnner -Weltrekordmann/S -Weltrevolution -Weltruf/EPS -Weltruhm -Weltschau -Weltschmerz/T -Weltsicherheitsrat/S -Weltsprache/N -Weltstdte/N -Weltstaat -Weltstadt -Weltstar -Weltteil/EPS -Weltumsegler/NS -Weltuniversitt -Weltuntergang/S -Weltverband -Weltvorrat -Weltwhrung -Weltwarenmarkt/T -Weltwirtschaft -Weltwirtschaftsgipfel -Weltwirtschaftskrise -Weltwunder/NS -Wembleystadion -Wendekreis/EPT -Wendelpotentiometer -Wendeltreppe/N -Wendens -Wendepunkt/EPS -Wendigkeit -Wendung/P -Wenigkeit -Werbeabteilung/P -Werbeagentur/P -Werbeaktion/P -Werbeassistent -Werbebeauftragter -Werbeberater/FNS -Werbebriefe -Werbebro -Werbedienst -Werbedrucksachen -Werbefachfrau -Werbefachleute -Werbefachmnner/N -Werbefachmann/S -Werbefeldzug/STp -Werbefernsehen/S -Werbefilm/EPS -Werbegag/S -Werbegesellschaften -Werbegrafik/PR -Werbegrafiker/FNS -Werbegraphik/PR -Werbegraphiker/FNS -Werbekampagne -Werbekosten -Werbelehrfilm/S -Werbeleiter/FNS -Werbematerial/S -Werbemittel/NS -Werbens -Werbeoffizier -Werbeprmien -Werber/N -Werberummel -Werbeschrift/P -Werbesendung/P -Werbespot/S -Werbesprche -Werbespruch/S -Werbetext/PRT -Werbetexter/FNS -Werbetrger -Werbetrommel/N -Werbeberschrift -Werbevideo -Werbung/P -Werbungskosten -Werdegang -Werder/S -Werftarbeiter/FNS -Werften -Werk/ST -Werkanlage -Werkbnke/N -Werkbank -Werkbund -Werkhalle/N -Werkkunstschule -Werkleuten -Werkmeister/FNS -Werknorm -Werkpakete -Werksangehrige/NR -Werksbibliothek -Werkschutz/T -Werksgruppe -Werkshalle/N -Werksleitung -Werksnorm -Werkspionage/N -Werksttte/N -Werkstatt -Werkstattangehrige -Werkstattbesetzung -Werkstatteinrichtung -Werkstattleiter -Werkstattleitung -Werkstattraum/STp -Werkstattserie -Werkstellen -Werkstoff/EPS -Werkstoffherstellung -Werkstoffkonstante -Werkstoffprfung -Werkstck/EPS -Werkstudent/FP -Werksvertretung -Werkswohnung/P -Werktag/EPT -Werktisch/EPT -Werkverkehr -Werkvertrag/Sp -Werkwohnung/P -Werkzeichnung/P -Werkzeug/EPS -Werkzeugausstattung/P -Werkzeugbau -Werkzeugkasten -Werkzeugkosten -Werkzeugkostenanteil -Werkzeugmacher/FNS -Werkzeugmaschine/N -Werkzeugneubau -Werkzeugtasche/N -Wermut/S -Wermutstropfen/S -Werner/S -Wertangabe/N -Wertannahme -Wertanteil/EPS -Wertarbeit/P -Wertbesetzung -Wertbrief/EPS -Wertebereich/S -Wertegemeinschaft -Wertegruppe/N -Werteliste/N -Wertentwicklung -Wertepaare/N -Wertepakete/N -Werterhhung/P -Wertermittlung -Wertevorrat -Wertgegenstnde/N -Wertgegenstand -Werthaltung -Wertigkeit/P -Wertkonserven -Wertmastbe/N -Wertmastab/ST -Wertmesser/N -Wertminderung/P -Wertpaket/S -Wertpapier/EPS -Wertpapieranlage/N -Wertpapierbesitzer/F -Wertpapierdepot/S -Wertpapiergeschft/EPS -Wertpapierkauf/Sp -Wertpapiermarkt/STp -Wertpapiertyp -Wertsache/N -Wertschtzens -Wertschtzung/P -Wertstatus -Wertsteigerung/P -Wertung/P -Werturteil/EPS -Wertverlust -Wertverringerung/P -Wertvorstellung/P -Wertwandel/S -Wertzeichen/S -Wertzoll -Wertzuwachs/T -Wertzuwachssteuern -Wertzuweisung/P -Werwlfe/N -Werwolf/S -Wesen/HS -Wesens -Wesensaussage/N -Wesensmerkmal/EPS -Wesenszug/Sp -Weser -Wesermndung -Wespe/N -Wespennest/S -Wespennester -Wespenstich/EPS -Wespentaille/N -Westafrika -Westalliierte/N -Westalpen -Westberliner -Westdeutschland -Weste/N -Westen/S -Westentasche/N -Westentaschenformat/EPS -Western -Westeuropa -Westeuroper/N -Westflin/F -Westfale/N -Westfrankenreich -Westfrankreich -Westfront -Westgebieten -Westgoten -Westgottenreich -Westhandel -Westindienhandel -Westjordanland/S -Westmark -Westminster -Westminsterabtei -Westsektor/P -Westsibiriens -Westwall -Westwind/EPST -Westzone/N -Wettbewerb/EPRS -Wettbewerber/FNS -Wettbewerbsbestimmung/P -Wettbewerbserfolge -Wettbewerbsfhigkeit -Wettbewerbslage -Wettbewerbsmanahmen -Wettbewerbsordnung -Wettbewerbsregelung -Wettbewerbsverhltnis/Qq -Wettbro -Wetteifer -Wetter/S -Wetteransagen -Wetteransager/FNS -Wetteraussicht -Wetterbedingung/P -Wetterbeobachtung/P -Wetterbericht/EPS -Wetterbesserung -Wetterdienst/ET -Wetterfahne/N -Wetterfrschen -Wetterfrosch/T -Wetterfhligkeit -Wetterhhnen -Wetterhahn/S -Wetterkarten -Wetterkunde/N -Wetterlagen -Wetterleuchten/S -Wettermnteln -Wettermantel/S -Wettermeldung/P -Wetterprophet/P -Wettersatellit/P -Wetterschchten -Wetterschden -Wetterschacht -Wetterschaden/S -Wetterschiff/EPS -Wetterseiten -Wetterstation/P -Wetterstrze/N -Wettersturz/T -Wetterverhltnis/Qq -Wettervoraussage -Wettervorhersage -Wetterwarte/N -Wetterwechsel/NS -Wetterwolke -Wettfahrt/P -Wettfliegen/S -Wettflug/STp -Wettgesang/Sp -Wettkmpfe/NR -Wettkmpfer/FNS -Wettkampf/S -Wettkampfsiege/N -Wettlufer/FNS -Wettlauf/Sp -Wettrennen/S -Wettrstens -Wettrudern/S -Wettschwimmen/S -Wettsegeln/S -Wettspiel/EPS -Wettstreit/S -Wettturnen -Wettzettel/N -Wetzstahl/EPS -Wetzstein/EPS -Wheatcraft/S -Whisky/S -Whitelist/S -Whoopy/S -Wichser -Wichserei/P -Wichte/N -Wichtigkeit/G -Wichtigtuer/FNS -Wichtigtuerei/P -Wicke/N -Wickel/JS -Wickelgamasche -Wickelkind/R -Wickelns -Wickelrichtung -Wickelung/P -Wicklung/P -Widder/NS -Widerhaken/S -Widerhall/S -Widerklage/N -Widerlager -Widerlegens -Widerlegung/P -Widerlichkeit/P -Widerpart/EPS -Widerrede/N -Widerruf/S -Widersacher/FNS -Widerschein/S -Widersetzlichkeit/P -Widersinn/S -Widerspenstigkeit/P -Widersprche/N -Widersprchlichkeit/P -Widerspruch/S -Widerspruchsfreiheit -Widerspruchsgeist/T -Widerspruchslosigkeit -Widerstnde/N -Widerstandbewegung -Widerstandes -Widerstands -Widerstandsaustausch -Widerstandsbeschaltung/P -Widerstandsbewegung/P -Widerstandsfhigkeit/P -Widerstandsgruppe/N -Widerstandskmpfer/FNS -Widerstandskennung -Widerstandskrfte/N -Widerstandskraft -Widerstandsmessung -Widerstandsnetzwerk -Widerstandsorganisation -Widerstreit/S -Widerwrtigkeit -Widerwille/N -Widmens -Widmung/P -Widmungsexemplar/EPS -Widrigkeit/P -Wiedehopf/EPS -Wiederabdrcke/N -Wiederabdruck -Wiederanfang/Sp -Wiederanlage/N -Wiederanstellung/P -Wiederaufbau/S -Wiederauferstehung/P -Wiederauffhrung -Wiederaufnahme/N -Wiederaufnahmeverfahren -Wiederaufrstung/P -Wiederauftretens -Wiederbeginn/S -Wiederbelebens -Wiederbelebung/P -Wiederbelebungsversuch/EPST -Wiederbesetzung -Wiedereinbau -Wiedereinfahren -Wiedereinfhrens -Wiedereinfhrung/P -Wiedereingliederns -Wiedereingliederung/P -Wiedereinlsens -Wiedereinlsung/P -Wiedereinnahme/N -Wiedereinschalten/S -Wiedereinschiffung/P -Wiedereinstellung/P -Wiederergreifung -Wiedererkennens -Wiedererkennung/P -Wiedererlangung -Wiedererffnen/JS -Wiedererreichen/S -Wiedererstattung/P -Wiedergabe -Wiedergabegert/EPS -Wiedergabequalitt -Wiedergeburt/P -Wiedergenesung/P -Wiedergutmachens -Wiedergutmachung/P -Wiedergutmachungsgesetz -Wiederherstellens -Wiederherstellung/P -Wiederholbarkeit -Wiederholens -Wiederholrate/N -Wiederholung/P -Wiederholungsfall/STp -Wiederholvorwahl -Wiederholzeit -Wiederinbetriebnahme -Wiederkauf/Sp -Wiederkehr -Wiederknfte/N -Wiederkunft -Wiederlsen -Wiedersehens -Wiedersehensfreude/N -Wiedertufer/NS -Wiedertaufe/N -Wiedervereinigung -Wiederverheiratung/P -Wiederverkufer/NS -Wiederverkaufspreis/EPT -Wiederverkaufswert -Wiederverwendbarkeit -Wiederverwendens -Wiederverwendung/P -Wiederverwertung -Wiederwahl/P -Wiederzulassung/P -Wiegenfest/EPT -Wiegenkind/RS -Wiegenlied/RS -Wieland/S -Wien -Wiener/FS -Wienerwald -Wiesbaden -Wiese -Wiesel/NS -Wiesenblte -Wiesenlnder/N -Wiesenlands -Wikinger -Wikingerschiff -Wildbche/N -Wildbder -Wildbach/S -Wildbad -Wildbahn/P -Wildbraten -Wildbret/S -Wildcard/S -Wilddieb/P -Wilddieberei/P -Wildente/N -Wilderers -Wildfang/Sp -Wildheit/P -Wildhter/N -Wildleder/S -Wildlederhandschuhe/N -Wildling/EPS -Wildpark/EPS -Wildschden -Wildschaden/S -Wildschtze/FN -Wildschwein/EPS -Wildstnden -Wildstand/S -Wildwasser/NS -Wildwechsel/S -Wildwestfilm/PS -Wildwestmanier -Wilhelm/S -Wille -Willenlosigkeit/P -Willensuerung/P -Willensakt/EPS -Willensbildung -Willenseinstellung -Willenserklrung/P -Willensfreiheit/P -Willenskrfte/N -Willenskraft -Willensschwche/N -Willensstrke/N -Willi/S -William/S -Willkr -Willkrakt/EPS -Willkrlichkeit -Willy/S -Wim/S -Wimbledon -Wimpel -Wimper/N -Winchester -Wind/JT -Windbeutel/NS -Windei/RS -Windel/N -Windeseile -Windfahnen -Windharfe/N -Windhose -Windhund/EPS -Windjacke -Windkanle/N -Windkanal -Windkraft -Windmesser/NS -Windmhle/N -Windows -Windpocken -Windrichtung/P -Windrschen/S -Windrose/N -Windschatten/S -Windschutzscheibe/N -Windsor/S -Windspiel/EPS -Windstrke/N -Windsto/Tp -Windung/P -Windungszahl/P -Winfried/S -Wink/RS -Winkel/NS -Winkeladvokat/P -Winkelanzeige -Winkelbereich -Winkelbestimmung -Winkelbewegung -Winkeleinheit/P -Winkelhaken -Winkelinformation/P -Winkelkette -Winkelkoordinaten -Winkelma/EPT -Winkelmesser/N -Winkelmessung -Winkelposition/P -Winkelsensor/P -Winkelskala -Winkelspiegel/S -Winkelstellung -Winkelzhler -Winkelzug/Sp -Winker/NS -Winksprche/N -Winkspruch/S -Winter/NS -Winteraufenthalte/N -Winteraufenthalts -Winterbaus -Winterbetrieb -Wintereinbruch -Winterfrchte/N -Wintergrten -Wintergarten/S -Wintergetreide -Winterhalbjahr/EPS -Winterhilfswerk -Winterklte -Winterkartoffeln -Winterkrnern -Winterkorn -Winterkur -Winterkurort -Winterlager -Wintermntel/N -Wintermrchen -Wintermantel/S -Wintermode -Wintermonat/EPS -Winterolympiade/N -Wintersaat/P -Winterschlaf/S -Winterschlussverkauf/Sp -Wintersemester/NS -Wintershall -Wintersonne -Winterspiele/N -Wintersport/EPS -Wintersportler -Wintersportorte -Wintersportplatz -Winterthur -Wintervorrte/N -Wintervorrat/S -Winterwochen -Winterzeit -Winzer/FNS -Winzerfamilie -Winzling/EPS -Wipfel/NS -Wirbel/S -Wirbelknochen/S -Wirbelsule/N -Wirbelsulenbruch -Wirbelsulenverkrmmung -Wirbelstrme/N -Wirbelsturm -Wirbeltier/EPS -Wirbelwind/EPST -Wirkens -Wirker/FNS -Wirklichkeit/P -Wirksamkeit -Wirkstoff/EPS -Wirkung/P -Wirkungsbereich/EPS -Wirkungsgrad/S -Wirkungskrfte/N -Wirkungskreis/EPT -Wirkungslosigkeit -Wirkungsmglichkeit/P -Wirkungsoptimum -Wirkungsquantum -Wirkungsweise/N -Wirrens -Wirrkpfe/N -Wirrkopf/S -Wirrnis/q -Wirrsal/EP -Wirrung/P -Wirrwarr/S -Wirsingkohl/EPS -Wirt/EFPS -Wirtschaft/R -Wirtschafter/FNS -Wirtschaftler/FNS -Wirtschaftlichkeit -Wirtschaftsabkommen/S -Wirtschaftsakademie -Wirtschaftsaktivitten -Wirtschaftsanleihe -Wirtschaftsarchiv -Wirtschaftsauffassung -Wirtschaftsaufschwung -Wirtschaftsberater/FNS -Wirtschaftsberatung -Wirtschaftsbetrieb -Wirtschaftsbeziehung/P -Wirtschaftsblatt -Wirtschaftsblcke -Wirtschaftsbotschaft -Wirtschaftsdatenbank -Wirtschaftsdebatte -Wirtschaftsdelegation -Wirtschaftsexperte/N -Wirtschaftsfrderung -Wirtschaftsfhrung -Wirtschaftsfunk -Wirtschaftsgebude/NS -Wirtschaftsgelder/N -Wirtschaftsgelds -Wirtschaftsgemeinschaft/P -Wirtschaftsgeographie/N -Wirtschaftsgipfel -Wirtschaftsgruppen -Wirtschaftsgter -Wirtschaftsgut -Wirtschaftsgymnasium/S -Wirtschaftshaus/Tp -Wirtschaftshilfe -Wirtschaftsindikatoren -Wirtschaftsinformation -Wirtschaftsinformationsdienst -Wirtschaftsjahr/EPS -Wirtschaftsjournalist -Wirtschaftskatastrophen -Wirtschaftsklima -Wirtschaftskommission -Wirtschaftskorrespondent -Wirtschaftskrach/T -Wirtschaftskreisen -Wirtschaftskrise/N -Wirtschaftskunde -Wirtschaftslnder -Wirtschaftslage -Wirtschaftsleben/S -Wirtschaftslenkung -Wirtschaftsleute -Wirtschaftsliberalismus -Wirtschaftsmchte -Wirtschaftsmacht -Wirtschaftsminister/NS -Wirtschaftsministerien -Wirtschaftsministerium -Wirtschaftsordnung -Wirtschaftsplne -Wirtschaftsplan -Wirtschaftsplanung -Wirtschaftspolitik/PR -Wirtschaftspraxis -Wirtschaftspressedienst -Wirtschaftsprogramm -Wirtschaftsprozess/EPT -Wirtschaftsprfer/FNS -Wirtschaftsprfungsgesellschaft/P -Wirtschaftspublikationen -Wirtschaftsquartett -Wirtschaftsraum/STp -Wirtschaftsrecht -Wirtschaftsredakteure -Wirtschaftsregion/P -Wirtschaftsspionage -Wirtschaftsstatistiken -Wirtschaftsstruktur -Wirtschaftssystem -Wirtschaftsteil -Wirtschaftstheoretiker -Wirtschaftstheorie -Wirtschaftsverbnde/N -Wirtschaftsverband -Wirtschaftsverhandlung/P -Wirtschaftsverwaltung -Wirtschaftsvorgngen -Wirtschaftswachstum -Wirtschaftswissenschaft/P -Wirtschaftswunder/NS -Wirtschaftszeitschrift -Wirtschaftszentrum -Wirtschaftszweig/EPS -Wirtschaftszyklus -Wirtshaus/Tp -Wirtssprache/N -Wisch/R -Wischer/NS -Wischlappen/S -Wisent/S -Wissbegierde/N -Wissens/G -Wissensakquisitionskomponente/N -Wissensbasen -Wissensbasis -Wissenschaft/P -Wissenschaftler/FNS -Wissenschaftsausschuss/Tp -Wissenschaftsbetrieb/S -Wissenschaftsrat/T -Wissensdrang/Sp -Wissensdurst/S -Wissensform/P -Wissensgebiet/EPS -Wissenslcke/N -Wissensreprsentationsformalismen -Wissensreprsentationsformalismus -Wissensschtze/N -Wissensschatz/T -Wissensstand -Wissenstand -Wissenstrieb/EPS -Wissensverarbeitung -Wissensvermittlung -Wissenszweig/EPS -Witterns -Witterung/P -Witterungseinfluss/Tp -Witterungsumschlag/STp -Witterungsverhltnis/Qq -Witwe/NR -Witwengeld/R -Witwenkleidung -Witwenrente/N -Witwenstand/S -Witwer/NS -Witz/EPT -Witzbltter -Witzblatt/S -Witzbold/EPST -Witzelei/P -Witzigkeit/P -Wladimir/S -Wladiwostok -Wchnerin/F -Wchnerinnenabteilung/P -Wchnerinnenheim/PS -Wlbens -Wlbung/P -Wlfe/N -Wlfin -Wrtchen/S -Wrter/N -Wrterbcher/N -Wrterbuch/ST -Wrterbucheintrag/STp -Wrterbuchverwaltung -Wrterliste/N -Wrterverzeichnis/Qq -Woche/N -Wochenausgabe -Wochenbett/P -Wochenbltter/N -Wochenblatt -Wochenendausgabe -Wochenende/N -Wochenendhaus/Tp -Wochenendurlaub -Wochenfieber/S -Wochenhlfte -Wochenlhne -Wochenlohn/S -Wochenmarkt/STp -Wochenmitte -Wochenpresse -Wochenschau -Wochenschluss/Tp -Wochenschlusskurs/EPT -Wochenschrift -Wochenstunde/N -Wochentag/EPT -Wochenverdienst -Wochenverlauf/Sp -Wochenwende -Woge -Wohlbefinden -Wohlbehagen/S -Wohlergehen/S -Wohlfahrt/P -Wohlfahrtsmter/N -Wohlfahrtsamt/S -Wohlfahrtsausschuss/Tp -Wohlfahrtseinrichtung/P -Wohlfahrtspflegen -Wohlfahrtspolitik -Wohlfahrtsstaat/S -Wohlfahrtswesen/S -Wohlgefallen/S -Wohlgefhl/EPS -Wohlgerche/N -Wohlgeruch/S -Wohlgeschmcker/N -Wohlgeschmack/S -Wohlhabenheit -Wohlklang/Sp -Wohllaut/EPS -Wohlleben/S -Wohlsein/S -Wohlstnde/N -Wohlstand/ST -Wohlstandsgesellschaft -Wohlstandsverteilung -Wohltter/FNS -Wohlttigkeit -Wohlttigkeitsbasar/EPS -Wohlttigkeitsveranstaltung/P -Wohlttigkeitsverein/PS -Wohltat/P -Wohnanhnger/NS -Wohnbau -Wohnbauten -Wohnbebauung -Wohnbezirk/EPS -Wohnblcken -Wohnblock/S -Wohndauer -Wohneinheit/P -Wohnens -Wohnflche/N -Wohngebude/NS -Wohngebiet/P -Wohngegend -Wohngeld -Wohngelegenheit/P -Wohngemeinschaft -Wohnhaus/Tp -Wohnheim/EPS -Wohnkche -Wohnort/EPST -Wohnquartiere -Wohnraum/STp -Wohnrecht/EPS -Wohnsilo/S -Wohnsitz/EPT -Wohnsitzstaat -Wohnstuben -Wohnung/P -Wohnungsmtern -Wohnungsamt/S -Wohnungsbau/S -Wohnungsbaugesellschaft -Wohnungsbaugesetz -Wohnungsbaupolitik -Wohnungsbauprogramm -Wohnungsbauten -Wohnungsbeschaffung -Wohnungsbewirtschaftung -Wohnungseigentmer -Wohnungseigentmergemeinschaft -Wohnungsinhaber/FNS -Wohnungsmngel/N -Wohnungsmangel/S -Wohnungsnot -Wohnungsproblem/EPS -Wohnungsschlssel/NS -Wohnungstausch -Wohnungswechsel/S -Wohnungswesen -Wohnungszeilen -Wohnviertel/NS -Wohnwagen/S -Wohnzimmer/NS -Wohnzimmercouch -Wohnzimmerteppich -Wolf/S -Wolfgang/S -Wolfram/S -Wolfsburg -Wolfshund/EPST -Wolfshunger/N -Wolfsjunge -Wolfskuhlen -Wolfsmilch -Wolga -Wolke/N -Wolkenbildung -Wolkenbrche/N -Wolkenbruch/S -Wolkendecke/N -Wolkenhimmel/NS -Wolkenkratzer/NS -Wolkenkuckuckslnder/N -Wolkenkuckucksland/S -Wolkenschicht -Wolldecke -Wollens -Wollfett/EPS -Wollgarn/EPS -Wollhndler/FNS -Wollhandel/N -Wollhandschuhen -Wollindustrie -Wolllappen -Wollmarkt/ST -Wollschnren -Wollschnur -Wollspinnerei -Wollstoff/EPS -Wollste/N -Wollstling/EPS -Wollust -Wollware -Wonne/N -Wonnemonat/PS -Wonnemond/PS -Word -Workaholic/S -Workshop/S -Workstation/S -Worms -Wort/EPST -Wortakzent/EPS -Wortanfang/ST -Wortarmut -Wortart -Wortbedeutungslehre/N -Wortbildung/P -Wortbreite/N -Wortbrche/N -Wortbruch -Wortende/N -Wortfolge/N -Wortfgung/P -Wortfgungslehren -Wortfhrer/FNS -Wortflle -Wortfuge/N -Wortgefecht/EPS -Wortkargheit -Wortklasse/N -Wortklauber/FNS -Wortklauberei/P -Wortlaut/EPS -Wortliste/N -Wortmeldung/P -Wortpaare/N -Wortschtze/N -Wortschatz/T -Wortschwall/EPS -Wortsinn/EPS -Wortspiel/EPS -Wortstmme/N -Wortstamm/S -Wortstellung/P -Wortstreit/EPS -Wortteil/EPS -Wortverdreher/FNS -Wortverdrehung/P -Wortwahl -Wortwechsel/N -Wotan -Wrack/S -Wrackgter/N -Wrackgut/S -Wrangler -Wrestling -Whlarbeit/P -Whler/FNS -Whlmuse/N -Whlmaus -Wlste/N -Wnschelrute/N -Wnschelrutengnger/FNS -Wrdentrger/N -Wrdigens -Wrdigkeit -Wrdigung/P -Wrdigungspreis/EPT -Wrfe/N -Wrfel/S -Wrfelbecher/NS -Wrfelspiel/EPS -Wrfelzucker/NS -Wrgengel/NS -Wrger/FNS -Wrmchen/S -Wrmer/N -Wrste/MN -Wrttemberg -Wrzburg -Wstenei/P -Wstengegend/P -Wstenrot -Wstensand/S -Wstling/EPS -Wucher/JRS -Wucherer/NS -Wucherhandel/N -Wuchermiete/N -Wucherns -Wucherpreisen -Wucherzins/EPT -Wuchses -Wucht -Wuchtbewegung -Wulst/T -Wundbrnde/N -Wundbrand/S -Wunderbild/S -Wunderbilder -Wunderding/ERS -Wunderdoktoren -Wunderdoktors -Wunderdroge -Wundergeschfte -Wunderglaube/N -Wunderkind/R -Wunderknabe/N -Wunderkuren -Wunderlnder/N -Wunderlands -Wunderlichkeit/P -Wunderplan -Wunderrabe -Wunderschwimmer -Wundertter/FNS -Wundertat -Wundertier/EPS -Wundertopf -Wundervogel -Wunderwelt/P -Wunderwerk/PS -Wunderzeichen -Wundfieber/NS -Wundmal/EPS -Wundsalben -Wundstarrkrmpfe/N -Wundstarrkrampf/S -Wunsch/ET -Wunschbild/S -Wunschbildern -Wunschdenken -Wunschkind -Wunschkonzert/EPS -Wunschliste -Wunschmaschine -Wunschtermin -Wunschtraum/STp -Wunschvorstellung/P -Wunschzettel/NS -Wuppertal/S -Wurf/S -Wurfgeschoss/EPT -Wurfkreis/EPT -Wurfpfeil/EPS -Wurfscheibe/N -Wurfspeer/PS -Wurfspie/EPT -Wurftaube -Wurmfortstze/N -Wurmfortsatz/T -Wurmlcher/N -Wurmloch/S -Wurmmittel/N -Wurms -Wurmstich/EPS -Wurst -Wurstbude -Wursteleien -Wurstfabrik -Wurstvergiftung -Wurstwaren -Wurzel -Wurzelbehandlung -Wurzelgre/N -Wurzelkeim/PS -Wurzelknolle -Wurzelschssling/ES -Wurzelstcke/N -Wurzelstock -Wurzelwerk/EPS -Wurzelwrter -Wurzelwort/EPS -Wurzelzeichen/S -Wurzelziehen/S -Wust/S -Wut/X -Wutanfall/Sp -Wutausbrche/N -Wutausbruch/S -XII -XIII -XIV -XML -Xanten -Xenix -Xerox -Xerxes -Xoff -Xon -Xylograph/P -Yacht/P -Yangtse -Yen -Yeti -Yoga -Yokohama -York -Yuppie/S -ZDF -ZK -Zhheit -Zhigkeit -Zhlens -Zhler/NS -Zhlerbaustein -Zhlerregister/NS -Zhlerstnde/N -Zhlerstand -Zhlervernderung -Zhlmaschine/N -Zhlrichtung -Zhlung/P -Zhmens -Zhmung/P -Zhne/N -Zpfchen/S -Zrtlichkeit/P -Zsur/P -Zune/N -Zagreb/S -Zahlenangabe/N -Zahlenaspekt -Zahlenbeispiel/EPS -Zahlenblock -Zahlendarstellung/P -Zahleneingabe/N -Zahlenfeld -Zahlenfolge/N -Zahlenform -Zahlenlotto/S -Zahlenmaterial -Zahlenparameter/N -Zahlenreihe/N -Zahlenschloss/T -Zahlenspielerei/P -Zahlensystem/EPS -Zahlenverhltnis/Qq -Zahlenwerk -Zahlenwert/EPS -Zahlkarte/N -Zahltag/EPS -Zahlung/P -Zahlungsabkommen/S -Zahlungsanweisung/P -Zahlungsaufforderung/P -Zahlungsaufschben -Zahlungsaufschub/T -Zahlungsaufstellung -Zahlungsauftrag/Tp -Zahlungsbedingung/P -Zahlungsbefehl/EPS -Zahlungsbeleg/EPS -Zahlungsbilanz/P -Zahlungsbilanzberschuss/Tp -Zahlungsdefizit -Zahlungseingang/Sp -Zahlungseinstellung -Zahlungsempfnger/NS -Zahlungserleichterung/P -Zahlungsfhigkeit -Zahlungsfrist -Zahlungskondition/P -Zahlungsmittel/NS -Zahlungsmodalitten -Zahlungsort/EPST -Zahlungsplne/N -Zahlungsplan/S -Zahlungssystem/S -Zahlungstermin/EPS -Zahlungsunfhigkeit/P -Zahlungsverkehr/S -Zahlungsverpflichtung/P -Zahlungsversprechen/S -Zahlungsverzug/T -Zahlungsweise/N -Zahlungsziel -Zahn/S -Zahnrzte/FN -Zahnarzt/T -Zahnarztbehandlung/P -Zahnarztpraxis -Zahnarztstuhl -Zahnbrsten -Zahnersatz -Zahnfleisch -Zahngold -Zahnlcke/N -Zahnpaste -Zahnpflege/N -Zahnprothesen -Zahnprothesentrger -Zahnrder -Zahnrad -Zahnradachse/N -Zahnradbahn/P -Zahnschmelz/T -Zahnschmerzen -Zahnstange -Zahnstocher/N -Zahnstocherbeinen -Zahnstummeln -Zahntechniker/NS -Zahnweh -Zaire/S -Zander -Zange/N -Zapfenstreich -Zapfhhne/N -Zapfhahn/S -Zar/P -Zarathustra/S -Zarenzeit -Zarewitsch -Zarin -Zartheit -Zauberbann -Zauberei/P -Zauberer/NS -Zauberflte/N -Zauberin/F -Zauberlehrling/EPS -Zaubers -Zauberstbe/N -Zauberstab/S -Zaubertrnken -Zaubertrank/T -Zauberwesen/S -Zauderer -Zaum/EST -Zaun/S -Zaunknig -Zebra/S -Zeche/N -Zechenstilllegung/P -Zeh/EPS -Zehenspitze/N -Zehner -Zehnerpaar -Zehnerpotenz -Zehnerwette -Zehnjahresplan -Zehnkmpfer -Zehnkampfmeister -Zehntel -Zehntelsekunde -Zehntklssler/FNS -Zeichen/S -Zeichenabstnde/N -Zeichenabstand -Zeichenart -Zeichenausgabe/N -Zeichenblatt -Zeichenblcke/N -Zeichenblock/S -Zeichenbreite/N -Zeichenbrett/RS -Zeichenbuffer/S -Zeichencode -Zeichendarstellung -Zeichenebene/N -Zeichenerklrung/P -Zeichenflche/N -Zeichenfolge/N -Zeichengenerierung -Zeichengeschwindigkeit/P -Zeichengre/N -Zeichenhhe -Zeichenkette/N -Zeichenlayout/S -Zeichenlehrer/N -Zeichenmatrix -Zeichenpapier/S -Zeichenreihe/N -Zeichenstze/N -Zeichensatz/T -Zeichenschrift -Zeichensequenz -Zeichensetzen/JS -Zeichensprache/N -Zeichentisch -Zeichentrickfilm/EPS -Zeichenunterricht/S -Zeichenvorrat -Zeichenzahl -Zeichnens -Zeichner/FNS -Zeichnung/P -Zeichnungsnderung/P -Zeichnungsnummer/N -Zeichnungsstze/N -Zeichnungssatz -Zeichnungsschrank/S -Zeichnungsunterlagen -Zeichnungsvorlage/N -Zeigefinger/NS -Zeiger/NS -Zeile/N -Zeilenabstand -Zeilenanfang -Zeilenbauweise -Zeilenbreite/N -Zeilenbuffer/S -Zeilendrucker -Zeilenende/N -Zeilenentprellung -Zeilenerluterung -Zeilenformatierung -Zeilengrenze/N -Zeilengre/N -Zeilenlnge/N -Zeilennummer/N -Zeilennummerierung -Zeilenpositionierung -Zeilenrand -Zeilenrandabstand -Zeilenschbe/N -Zeilensensor/S -Zeilenstart -Zeilensynchronisation -Zeilenumbruch -Zeilenvorschbe/N -Zeilenvorschub/S -Zeilenvorschubkontrolle -Zeilenvorschubmagnet -Zeilenvorschubtaste -Zeitablauf/STp -Zeitabschnitt/EPS -Zeitabstnde/N -Zeitabstand/T -Zeitalter/NS -Zeitanalyse/N -Zeitangabe/N -Zeitauflsung -Zeitaufwand/S -Zeitausdruck -Zeitbasen -Zeitbasis -Zeitbedarf/S -Zeitbereich -Zeitbombe/N -Zeitdauer -Zeitdimension/P -Zeitdruck/S -Zeiteinblendung -Zeiteinheit/P -Zeiten/GJ -Zeiterfassung -Zeitermittlung -Zeiterscheinung -Zeitersparnis/q -Zeitfalle/N -Zeitfenster -Zeitfrage/N -Zeitfunktion/P -Zeitgeist/ET -Zeitgenosse/N -Zeitgeschehen/S -Zeitgewinn -Zeitgrnde/N -Zeitintegral/EPS -Zeitintervall/EPS -Zeitkarte/N -Zeitkonstante/N -Zeitkontrolle/N -Zeitkorrektur -Zeitlauf/Sp -Zeitlupe/N -Zeitlupenaufnahme/N -Zeitmangel -Zeitmarke -Zeitmesseinrichtung -Zeitmessen/JS -Zeitmesser/NS -Zeitnahme/N -Zeitnormal -Zeitnot -Zeitnullpunkt -Zeitplne/N -Zeitplan/PS -Zeitplanen/JSW -Zeitprotokoll -Zeitpunkt/EPT -Zeitraffer/S -Zeitrahmen/S -Zeitraster/S -Zeitraum/STp -Zeitrechnung -Zeitscheibe/N -Zeitschere/N -Zeitschrift/P -Zeitschriftenhndler/FNS -Zeitschriftenverlag/EPS -Zeitskala -Zeitspanne/N -Zeitsteuerung -Zeitberschreitung -Zeitumstellung -Zeitungsartikel/NS -Zeitungsbeilage/N -Zeitungsbericht/P -Zeitungsblatt -Zeitungsente/N -Zeitungshndler/FNS -Zeitungshandel -Zeitungsinserat/EPS -Zeitungsjunge/N -Zeitungskiosk/PS -Zeitungskonzern -Zeitungslesern -Zeitungsmeldung/P -Zeitungsnotiz/P -Zeitungspapier/EPS -Zeitungsredakteur/EPS -Zeitungsschreiber/FNS -Zeitungsseiten -Zeitungssprachen -Zeitungsstnden -Zeitungsstil/PS -Zeitungsverkufer/FNS -Zeitungsverleger/NS -Zeitungswesen/S -Zeitungswissenschaft/P -Zeitunsicherheit/P -Zeitverhalten/S -Zeitverlust/EPT -Zeitverschiebung -Zeitvertreib/S -Zeitverzgerung -Zeitverzug/S -Zeitvorsprung -Zeitwert -Zeitwrter/N -Zeitwort/T -Zeitzeichen/S -Zeitzone/N -Zeitznder/N -Zelle/N -Zellfaser -Zellformen -Zellforschung -Zellkern/EPS -Zelllehre -Zellophan/S -Zellophanhlle -Zellstoff/EPT -Zellstofffabrik -Zellstoffunternehmen -Zellstoffwerke -Zellteilung -Zellulitis -Zelluloid/S -Zellulose/N -Zellwnde/N -Zellwachstum -Zellwatte/N -Zellwolle -Zelt/T -Zeltbahn/P -Zeltdcher -Zeltdach/T -Zeltlager/N -Zeltpflcke/N -Zeltpflock -Zeltpltze/N -Zeltplane/N -Zeltplatz/T -Zeltstange/N -Zement/EPS -Zementierens -Zementierung/P -Zementpreise -Zementwerke -Zensor/P -Zensur/P -Zentigramm -Zentimeter/NS -Zentner/NS -Zentralafrikanische -Zentralamt -Zentralaufgabe/N -Zentralbnker -Zentralbank/P -Zentralbankscheck/S -Zentralbro -Zentralbus/Qq -Zentralbusverdrahtung -Zentralcomputer -Zentraleinheit/P -Zentralenankopplung -Zentralfriedhof -Zentralfunktion/P -Zentralgert -Zentralheizung -Zentralinstitut -Zentralisation -Zentralisierens -Zentralisierung/P -Zentralismus -Zentralkasse/N -Zentralkomitee -Zentralnervensystem/S -Zentralparameter -Zentralpunkt/EPST -Zentralrechner/NS -Zentralredaktion/P -Zentralregierung -Zentralreich -Zentralschmierung -Zentralsoftware -Zentralstelle/N -Zentralsteuereinheit/P -Zentralsteuergert/EPST -Zentralsteuern/JS -Zentralsteuerrechner/S -Zentralteil -Zentralvermittlung -Zentralverwaltung -Zentralwirtschaft -Zentren -Zentrifugalkrfte/N -Zentrifugalkraft -Zentrifuge/N -Zentrigramm/EPS -Zentriwinkeln -Zentrum/S -Zentrumspartei -Zeppelin -Zepter/NS -Zeremonie/N -Zeremoniells -Zeremonienmeister/NS -Zerflle/N -Zerfalls -Zerfallserscheinung/P -Zerfallsprodukt/EPST -Zerfallsprozess/EPT -Zerfallszeit -Zerfasern/JS -Zerfleischens -Zerfleischung/P -Zerlegens -Zerlegung/P -Zermrbens -Zermrbung/P -Zermrbungskrieg/EPS -Zerrbild/RT -Zerreiens -Zerreifestigkeit -Zerreiprobe/N -Zerreiung/P -Zerrens -Zerrissenheit -Zerrspiegel/N -Zerrttens -Zerrttung/P -Zerrung/P -Zerschlagens -Zerschlagung/P -Zerschmetterns -Zerschmetterung/P -Zerschneidens -Zerschneidung/P -Zersetzens -Zersetzung/P -Zersetzungsprozess/EPT -Zersiedeln/JS -Zersplitterns -Zersplitterung/P -Zerstuber -Zerstrens -Zerstrer/NS -Zerstrung/P -Zerstrungstrieb/EPT -Zerstrungswut -Zerstreuens -Zerstreutheit -Zerstreuung/P -Zerstckelns -Zerstckelung/P -Zerstcklung/P -Zerteilens -Zerteilung/P -Zertifikat/EPST -Zertifizierens -Zertifizierung/P -Zertifizierungsstelle/N -Zertretens -Zertretung/P -Zertrmmerns -Zertrmmerung/P -Zervelatwrste/N -Zerwrfnis/Qq -Zession/P -Zessionar/EPS -Zetergeschrei -Zettelchen/S -Zettelkasten/S -Zettelkatalog/EPS -Zettels -Zeugenaussage/N -Zeugenbnke/N -Zeugeneid/EPST -Zeugenliste -Zeugenschaft -Zeugenvereidigung -Zeugenverhr/EPS -Zeugenvernehmung/P -Zeugin/F -Zeugnis/Qq -Zeugniskopie/N -Zeugs -Zeugung/P -Zeugungsorgane/N -Zeus -Zichorie/N -Zicke/N -Zicklein/S -Zickzack -Zickzackkurs/EPT -Zickzacklinie -Ziege/N -Ziegel/NS -Ziegelbrennereien -Ziegeldcher/N -Ziegeldach/T -Ziegelei -Ziegelfen -Ziegelofen/S -Ziegelstein/EPS -Ziegenbrte/N -Ziegenbart/T -Ziegenbcke -Ziegenbock -Ziegenfell/EPS -Ziegenhirt/P -Ziegenkse -Ziegenleder/S -Ziegenmilch -Ziegenpeter/S -Ziehbnke/N -Ziehbrunnen/S -Ziehens -Ziehharmonika/S -Ziehharmonikasocken -Ziehkind/T -Ziehkinder -Ziehung/P -Ziehvater -Zielbnder -Zielband/T -Zielcode/S -Zieles -Zielfernrohr/EPS -Zielflughafen -Zielgerade/N -Zielgruppe/N -Zielhhe -Zielkamera/S -Zielkurve/N -Ziellinie/N -Zielmaschine/N -Zielmaschinensprache/N -Zielort -Zielperson -Zielprogramm/EPS -Zielpunkt/EPS -Zielrichter/NS -Zielrichtung -Ziels -Zielscheibe/N -Zielsetzen/JS -Zielsprache/N -Zielstrebigkeit -Zielvorgabe/N -Zielvorstellung/P -Zielwert/EPST -Ziemer/NS -Zierde/N -Zierdeckchen/S -Ziererei/P -Zierfisch/ET -Ziergrten -Ziergarten -Zierlichkeit -Zierpflanze/N -Zierrat/EPT -Ziffer/N -Zifferbltter/N -Zifferblatt/S -Ziffernanzeige/N -Ziffernfolge/N -Zigarette/N -Zigarettenautomat/P -Zigarettenetui/S -Zigarettenindustrie -Zigarettenladen -Zigarettenmarke -Zigarettenschachtel/N -Zigarettenspitzen -Zigarettenstummel/N -Zigarettenverkauf/Sp -Zigarillo/S -Zigarillolnge -Zigarre/N -Zigarrenabschneider/N -Zigarrenhndler/FNS -Zigarrenkiste/N -Zigarrenlden -Zigarrenladen -Zigarrenspitze/N -Zigarrenstummel/S -Zigeuner/FNS -Zigeunerleben/S -Zigeunerrock -Zikade/N -Zille/N -Zimbabwe -Zimbel/N -Zimmerantenne/N -Zimmereinrichtung -Zimmerer/NS -Zimmerflucht/P -Zimmergenossen -Zimmerhandwerk/S -Zimmerlautstrke -Zimmerleute/N -Zimmermdchen/S -Zimmermann/S -Zimmerpflanzen -Zimmerpreis/EPT -Zimmers -Zimmertemperatur/P -Zimmertheater/N -Zimmervermittlung/P -Zimperlichkeit -Zimt/S -Zimtstern -Zink/EPST -Zinkblech/EPS -Zinkchlorid -Zinkpreise -Zinn/EPST -Zinngeschirr/S -Zinnkrug/STp -Zinnober/S -Zinnpreise -Zinnsoldat -Zins/EPT -Zinsanhebung/P -Zinsaufwendung/P -Zinsbelastung/P -Zinsdifferenz -Zinsdifferenzgeschfte -Zinsentwicklung -Zinserhhung -Zinsertrag/STp -Zinsesverzinsung -Zinseszins/ET -Zinsfu/Tp -Zinsgefge/NS -Zinsjger -Zinskorrekturen -Zinsmarkt/Tp -Zinsniveau -Zinspapiere/N -Zinspolitik -Zinsrechnung/P -Zinsstze/N -Zinssatz/T -Zinsschein/EPST -Zinsschraube -Zinssenkung/P -Zinsspanne -Zinssteigerung/P -Zinsunterschied/EPST -Zinsvernderung/P -Zinsverhltnis/Qq -Zinsverlust -Zinsverteurung -Zinszahlung/P -Zinszuschuss/Tp -Zion/S -Zionismus -Zionist/FP -Zionistenkongress/EPT -Zionistenverband -Zipfel/N -Zipfelmtze/N -Zirkel/S -Zirkelschluss/Tp -Zirkular/EPS -Zirkulation/P -Zirkumflex/EP -Zirkus/q -Zirkusdirektor -Zirkusprogramm -Zirkusreiter/FNS -Zischlaut/EPT -Ziselierarbeit -Zisterne/N -Zitadelle/N -Zitat/EPS -Zither/N -Zitierens -Zitierung/P -Zitronat/S -Zitrone/N -Zitronenbaum/STp -Zitronenlimonade/N -Zitronenpressen -Zitronensure/N -Zitronensaft/S -Zitronenschale/N -Zitronenwasser/S -Zitrusfrchte -Zitteraal -Zitterpappeln -Zitze/N -Zivilbevlkerung/P -Zivilcourage -Zivildienst -Zivilehen -Zivilgericht/EPS -Zivilgouverneur -Zivilisation/P -Zivilist/P -Zivilkammer -Zivilklger -Zivilkleidung -Zivilluftfahrt -Zivilprogramm -Zivilprozess/EPT -Zivilprozessordnung/P -Zivilschutz -Zivilschutzkorps -Zivilverwaltung -Zgerns -Zgerung/P -Zgling/EPS -Zlibat/T -Zlle/N -Zllner/NS -Zpfe/N -Zobel/NS -Zobelfell/EPS -Zobelpelz/EPT -Zofe/N -Zoll -Zollmtern -Zollabfertigung/P -Zollamt -Zollbeamte/NR -Zollbehrden -Zollbelastung -Zollbestimmung/P -Zollerklrung/P -Zollfahndung -Zollgebhren -Zollgesetz -Zollgrenze -Zollgrnden -Zollhuschen/S -Zollhaus/Tp -Zollhinterziehung/P -Zollkonferenz -Zollkontrolle/N -Zollkrieg/EPS -Zollmann -Zollplombe/N -Zollpolitik -Zollreform -Zollrevision/P -Zollschein/EPS -Zollschranke/N -Zollsenkung -Zollspeichern -Zollspeichers -Zollstcke -Zollstock/S -Zolltarif/PS -Zollunion -Zollverein -Zollverschluss/Tp -Zollverwaltung -Zollvorschriften -Zollwache -Zollwesen -Zombie/S -Zone/N -Zonenbewohner -Zonenflchtlinge -Zonengrenze/N -Zonenrandgebiet/EPS -Zonenregierung -Zonenverband -Zoo/S -Zoologe/N -Zoologie -Zooverwaltung -Zopf/ST -Zorn/ST -Zorro/S -Zote/N -Zotenreier/N -Zchtens -Zchter/FNS -Zchtigens -Zchtigkeit -Zchtigung/P -Zchtung/P -Zgellosigkeit/P -Zgelns -Zgels -Zgelung/P -Zglung/P -Zndanlage -Zndens -Znder/NS -Zndhlzer/N -Zndholz/T -Zndhtchen/S -Zndkabel/S -Zndkapseln -Zndkerze/N -Zndmagnet/PS -Zndpunkt/EPST -Zndstze -Zndsatz/T -Zndschloss/T -Zndschlssel/S -Zndschnre/N -Zndschnur -Zndstein/EPS -Zndstoff/EPS -Zndung/P -Zndungsmechanismus -Znglein -Zrich/S -Zubehr/EPS -Zubehrteil/EPS -Zuber/NS -Zubereitens -Zubereitung/P -Zubereitungsnderung/P -Zubereitungsart/P -Zubringerdienst -Zubringerlinie/N -Zubringerstrae/N -Zubue/N -Zucchini/S -Zucht/P -Zuchtbchern -Zuchtbuch/T -Zuchtbullen -Zuchtgenossenschaft -Zuchthaus/Tp -Zuchthausstrafe -Zuchthengst/EPST -Zuchthenne/N -Zuchtkristall -Zuchtlosigkeit/P -Zuchtmeister/N -Zuchtmittel/NS -Zuchtperlen -Zuchtrute/N -Zuchtsuen -Zuchtsau -Zuchtschaf/EPST -Zuchtstier/PS -Zuchtstute -Zuchtvieh/S -Zuchtwahl -Zuckens -Zucker/S -Zuckerbcker/S -Zuckerbckerei/P -Zuckerbrot -Zuckerbrotmethode -Zuckerbchse/N -Zuckerdose/N -Zuckererbsen -Zuckerexport -Zuckerfabrik -Zuckergehalt/S -Zuckerguss/Tp -Zuckerhte/N -Zuckerhut/T -Zuckerkrankheit -Zuckermarkt/ST -Zuckermelonen -Zuckerpltzchen/S -Zuckerrohr/S -Zuckerrben -Zuckersften -Zuckersaft -Zuckerschale/N -Zuckersirup -Zuckerware/N -Zuckerwasser -Zuckerwatte -Zuckerwirtschaft -Zuckerzange -Zuckung/P -Zudrang -Zudringlichkeit/P -Zueignung -Zuerkennens -Zuerkennung/P -Zuflligkeit/P -Zufahrt/P -Zufahrtsstrae/N -Zufahrtswege/N -Zufall/Sp -Zufallsauswahl -Zufallsbekanntschaft -Zufallsdaten -Zufallsgenerator/PS -Zufallsnummerierung -Zufallsprinzip -Zufallszahl/P -Zuflucht/P -Zufluchtsort/EPST -Zufluss/Tp -Zufriedenheit -Zufriedenstellen/JS -Zufhrens -Zufhrung/P -Zufhrungsdrhte/N -Zufhrungsdraht/T -Zufuhr/P -Zug/ETp -Zugnglichkeit -Zugabe -Zugabeverbot -Zugabfahrt -Zugang/STp -Zugangsschnittstelle -Zugangstechnik/P -Zugartikel/S -Zugbrcke/N -Zugbrunnen/S -Zugehrigkeit/P -Zugentlastung -Zugestndnis/Qq -Zugfestigkeit -Zugfhrer/NS -Zugkette -Zugkettenlnge -Zugkrfte/N -Zugkraft -Zugluft -Zugmaschine/N -Zugmittel/N -Zugnummer/N -Zugpersonal -Zugpferd/EPST -Zugpflaster/S -Zugriff/EPS -Zugriffsgeschwindigkeit -Zugriffsrechte/N -Zugriffszeit/P -Zugschalter/N -Zugseil/EPS -Zugspannung -Zugspitze -Zugstck/ET -Zugtier/ET -Zugunglck/EPS -Zugverbindung/P -Zugverkehr/S -Zugvieh/S -Zugvgel/N -Zugvogel -Zugwind/EPST -Zuhlter/NS -Zuhlterei -Zuhilfenahme -Zuhrer/FNS -Zuhrerraum/STp -Zuhrerschaft -Zukauf/Sp -Zukaufteil/EPS -Zukunft -Zukunftsangst -Zukunftsaussicht/P -Zukunftsbetrachtung/P -Zukunftschance/N -Zukunftsdenken/S -Zukunftserwartung -Zukunftsforscher/NS -Zukunftsforschung -Zukunftsmusik -Zukunftsperspektive/N -Zukunftsplne/N -Zukunftsplanung -Zukunftsprognostik -Zukunftsroman/EPS -Zukunftsverantwortung -Zukunftsvision/P -Zulnglichkeit -Zulssigkeit -Zulssigkeitsgrenze/N -Zulssigkeitskontrolle/N -Zulage/N -Zulassens -Zulassfhigkeit -Zulassprobleme -Zulassung/P -Zulassungsbescheinigung/P -Zulassungsbeschrnkung/P -Zulassungsbestimmung/P -Zulassungsnummer/N -Zulassungspapieren -Zulassungsstelle -Zulassungsunterlagen -Zulassungsvorschriften -Zulassunterlagen -Zulauf/Sp -Zuleitens -Zuleitung/P -Zuleitungsdrhte -Zuleitungsdraht/T -Zuleitungsrohr/EPT -Zuleitungsventil/EPS -Zulieferbetriebe -Zulieferer/N -Zuliefern/JS -Zulieferteil -Zulieferzeit/P -Zumutens -Zumutung/P -Zunahme/N -Zuname/N -Zunamen/S -Zunder/N -Zuneigens -Zuneigung/P -Zunft -Zunfthaus -Zunftwesen/S -Zunge/N -Zungenbrecher -Zungenfertigkeit -Zungenkuss/Tp -Zungenlaut/ET -Zungenschlag/STp -Zungenspitze -Zuordnens -Zuordnung/P -Zupfinstrument/EPST -Zurechnens -Zurechnung/P -Zurechnungsfhigkeit -Zurechtweisens -Zurechtweisung/P -Zurschaustellung/P -Zurckbehaltens -Zurckbehaltung/P -Zurckforderns -Zurckforderung/P -Zurckfhrens -Zurckfhrung/P -Zurckgabe -Zurckgezogenheit -Zurckhaltens -Zurckhaltung/P -Zurcknahme -Zurcksetzens -Zurcksetzung/P -Zurckstellens -Zurckstellung/P -Zurckweisens -Zurckweisung/P -Zurckzahlens -Zurckzahlung/P -Zurckziehens -Zurckziehung/P -Zurstung/P -Zuruf/S -Zurverfgungstellen/JS -Zustze/N -Zusammenarbeit -Zusammenarbeitsvertrag/Tp -Zusammenballens -Zusammenballung/P -Zusammenbau -Zusammenbauebene -Zusammenbrche/N -Zusammenbruch/S -Zusammenfassens -Zusammenfassung/P -Zusammenfluss/Tp -Zusammengehrigkeit -Zusammengehrigkeitsgefhl/S -Zusammenhalt/S -Zusammenhang/ST -Zusammenklang/Sp -Zusammenknfte/N -Zusammenkunft -Zusammenlebens -Zusammenlegens -Zusammenlegung/P -Zusammenprall/S -Zusammenrottens -Zusammenrottung/P -Zusammenschluss/Tp -Zusammensein -Zusammensetzens -Zusammensetzung/P -Zusammenspiel/S -Zusammenstellens -Zusammenstellung/P -Zusammensto/Tp -Zusammentritt/EPS -Zusammenwirkens -Zusammenziehens -Zusammenziehung/P -Zusatz/T -Zusatzabkommen/S -Zusatzantrag/STp -Zusatzausbildung/P -Zusatzausrstung -Zusatzbedarf/S -Zusatzdividende -Zusatzeinrichtung/P -Zusatzeinstellung/P -Zusatzfeld -Zusatzfrage/N -Zusatzfunktion/P -Zusatzgehuse/N -Zusatzgert/EPT -Zusatzgewinn/EPS -Zusatzhardware -Zusatzinformation/P -Zusatzkenntnisse/N -Zusatzleistung -Zusatzpaket -Zusatzplatine -Zusatzschilder -Zusatzschnittstelle/N -Zusatzsystem/EPS -Zusatzteil/EPS -Zusatzterm/EPS -Zusatzversicherung/P -Zuschauer/FNS -Zuschauerraum/STp -Zuschauertribne -Zuschauerzahlen -Zuschlag/STp -Zuschlagsgebhr/P -Zuschlagskarten -Zuschlagsporto/S -Zuschneider/FNS -Zuschnitt/EPT -Zuschrift/P -Zuschuss/Tp -Zuschussbetrieb/EPS -Zuse -Zusendens -Zusendung/P -Zusicherns -Zusicherung/P -Zusptkommen/D -Zusprche/N -Zuspruch/T -Zustnde/N -Zustndigkeit/P -Zustndigkeitsbereich/EPS -Zustandes -Zustands -Zustandsnderung/P -Zustandsabfrage/N -Zustandsanalyse -Zustandsanzeige/N -Zustandsbericht/EPS -Zustandsbit/S -Zustandsdiagramm/S -Zustandsmeldung/P -Zustandsmenge/N -Zustandsnr -Zustandsnr. -Zustandsnummer -Zustandspfad/EPS -Zustandsprotokoll/EPS -Zustandsprozessor/P -Zustandsraum/STp -Zustandsspeicher -Zustandstabelle/N -Zustandstransformation/P -Zustandsbergang/Sp -Zustandsverknpfung/P -Zustellbezirk -Zustellens -Zusteller/NS -Zustellgebhr -Zustellhhe -Zustellung/P -Zustellungsgebhr -Zustimmens -Zustimmung/P -Zustrom/ST -Zutat/P -Zuteilens -Zuteilung/P -Zutrger/FNS -Zutrgerei/P -Zutrglichkeit/P -Zutraulichkeit/P -Zutritt/ST -Zutun/S -Zuverlssigkeit/P -Zuverlssigkeitsgrad -Zuverlssigkeitsprfung/P -Zuversicht -Zuversichtlichkeit -Zuversichtsindikator/P -Zuwchse/N -Zuwachs/T -Zuwachsrate/N -Zuwanderns -Zuwanderung/P -Zuweisens -Zuweisung/P -Zuwendens -Zuwendung/P -Zuwiderhandlung -Zuzahlens -Zuzahlung/P -Zuzug/STp -Zuzugsgenehmigung/P -Zwanges -Zwanglosigkeit -Zwangs -Zwangsanleihe/N -Zwangsarbeit/PR -Zwangsarbeiter/FNS -Zwangsbedingung/P -Zwangsbeschlagnahmung -Zwangsenteignung/P -Zwangsernhrung/P -Zwangshandlung/P -Zwangsherrschaft/P -Zwangsidee/N -Zwangsinnovation/P -Zwangsjacke/N -Zwangskonkurs/EPT -Zwangslage/N -Zwangsmanahme/N -Zwangsmittel/NS -Zwangsneurose/N -Zwangspause/N -Zwangsvereinigung -Zwangsverkauf/STp -Zwangsversteigerung -Zwangsverwalter/NS -Zwangsverwaltung/P -Zwangsvollstreckung/P -Zwangsvorstellung/P -Zwangswirtschaft/P -Zweck/EPT -Zweckbau/T -Zweckbauten -Zwecklosigkeit/P -Zweckmigkeit -Zweckpessimismus -Zweckverbnde -Zweckverband/T -Zweckverhltnis/Qq -Zweibeiner -Zweibettzimmer/N -Zweidecker/NS -Zweideutigkeit/P -Zweidrahtsensoren -Zweidrittelmehrheit/P -Zweierbob/S -Zweiergesprch -Zweierpotenz -Zweierzimmer/N -Zweifamilienhaus/Tp -Zweifelsfall/STp -Zweifelsfrage/N -Zweifler/FNS -Zweig/T -Zweigbahn -Zweigbetrieb -Zweigespann/EPS -Zweiggeschft/EPST -Zweiglein -Zweigstelle/N -Zweigstellenleiter -Zweihufer/NS -Zweijahresvertrag/STp -Zweikmpfe/N -Zweikampf/ST -Zweimaster/NS -Zweiparteiensystem/EPS -Zweirder/N -Zweirad/T -Zweisitzer/NS -Zweisprachigkeit -Zweitakter -Zweitaktmotor/PS -Zweitauflage/N -Zweiteilung -Zweithute -Zweithaussteuer -Zweitklssler/FNS -Zweitpass/Tp -Zweitschrift/P -Zweitwagen -Zweiunddreiigstelnote/N -Zweivierteltakt/EPST -Zweizeiler/NS -Zweizonenverwaltung -Zwerchfell/EPST -Zwerg/EFPT -Zwergkaninchen -Zwergkiefer/N -Zwergmenschen -Zwergschule/N -Zwergstaat/EPST -Zwergterrier -Zwetschge/N -Zwickau/S -Zwickel -Zwicker/S -Zwickmhle/N -Zwickzangen -Zwieback/S -Zwiebel/N -Zwiebelgewchs/EPT -Zwiebelschale/N -Zwiegesprch/EPS -Zwielicht/RST -Zwielichtzone/N -Zwiesplte/N -Zwiespalt/ST -Zwietracht -Zwilling/EPS -Zwillingsbrder/N -Zwillingsbruder/S -Zwillingsforschung -Zwillingspaar/EPS -Zwillingsschwester/N -Zwillingswaffe -Zwinger/NS -Zwingherren -Zwingli/S -Zwirn/ST -Zwirnerei -Zwischenablage/N -Zwischenakt/EPST -Zwischenaufenthalt/S -Zwischenbemerkung/P -Zwischenbericht/EPS -Zwischenbescheid/ET -Zwischenbilanz/P -Zwischendecke/NS -Zwischending/EPST -Zwischenergebnis/Qq -Zwischenerzeugnis/Qq -Zwischenfall/Sp -Zwischenfrage/N -Zwischengericht/T -Zwischenhndler/FNS -Zwischenhandel/S -Zwischenhandlung -Zwischenhirn/S -Zwischenhoch/S -Zwischenkredit/EPST -Zwischenlandung/P -Zwischenlsung/P -Zwischenpause/N -Zwischenprodukte -Zwischenprfung/P -Zwischenpuffer -Zwischenpunkt -Zwischenraum/STp -Zwischenrichtung/P -Zwischenruf/EPRST -Zwischenrufer/FNS -Zwischenrunden -Zwischenstze/N -Zwischensatz/T -Zwischenschaltung -Zwischenschritt/EPS -Zwischenspeicher -Zwischenspeicherung -Zwischenspiel/ET -Zwischensprache/N -Zwischenstadien -Zwischenstadium -Zwischenstand -Zwischenstation/P -Zwischenstecker/NS -Zwischenstcke/N -Zwischenstock/T -Zwischenstck/EPST -Zwischenstufe/N -Zwischentief/S -Zwischentrger/FNS -Zwischenurteil/EPS -Zwischenverkauf/Sp -Zwischenvermieter -Zwischenvorhang/Tp -Zwischenwnde/N -Zwischenwand -Zwischenzeit/P -Zwischenziel/EPS -Zwischenzustnde/N -Zwist/EPT -Zwistigkeit/P -Zwitter/N -Zwlfeck/EPST -Zwlffingerdarm/ST -Zwlftklssler/FNS -Zwlftonmusik -Zyanid -Zyankali -Zyklen -Zyklenzahl -Zykloide/N -Zyklon/S -Zyklop/P -Zyklotron/EPS -Zyklus -Zykluskette -Zykluszeit -Zylinder/NS -Zylinderachse -Zylinderausbau -Zylinderauswahl -Zylinderboden/S -Zylinderbohrung -Zylinderdaten -Zylinderdurchmesser -Zylindereinbaus -Zylindergruppen -Zylinderhub -Zylinderhubmessung/P -Zylinderkpfe/N -Zylinderkopf -Zylinderkopfschraube -Zylinderlngen -Zylindermasse -Zylinderoberflche -Zylinderquerschnitt -Zylinderwand -Zyniker/NS -Zynismus -Zypern -Zypresse/N -Zyste/N -chten/DIXY -chzen/DIXY -chzt/EGPX -ffen/IXY -gisch/AEPT -gyptisch/AEPT -hneln/DIXY -hnelt/EGPX -hnlich/ACEPTU -lter/AEPT -lteste/ANRS -ltlich/AEPT -ndern/BDIVXY -ndert/EGPVX -nderte/GNVZ -nderten/GIVWX -ngstigen/DIVXY -ngstigt/EGPVX -ngstigte/GNVZ -ngstigten/GIVWX -ngstlich/ACEPT -quidistant/AEPT -quifunktional/AEPT -quivalent/AEPT -rger/AELNPTZ -rgerlich/ACEPT -rgerlicherweise -rgern/DIWXY -rgste/ANRS -rmer/AEPT -rmlich/ACEPT -rmste/ANRS -rztlich/AEPT -e/NZ -sen/DIXY -sthetisch/AEPTU -therisch/AEPT -thiopisch/AEPT -tsch -tzen/DIXY -ugen/DIXY -uere/ANRS -ueren/IXY -uerlich/AEPT -uern/DIVXY -uerst/AEPT -uert/EGPVX -uerte/GNVZ -uerten/GIVWX -xteschwingend/AEPT -ab -abnderlich/AEPTU -abndern/DIXY -abarbeiten/DIXY -abartig/AEPT -abband/PZ -abbat/PZ -abbauen/BDIXY -abbeien/DI -abbekommen/IX -abberufen/ADEIPTX -abbestellen/DIOXY -abbetteln/DIXY -abbezahlen/BDIOXY -abbiegen/DIX -abbilden/DIXY -abbinden/DIX -abbitte/NZ -abblttern/DIXY -abblasen/DI -abblenden/DIXY -abblitzen/DIXY -abblocken/DIXY -abbog/PZ -abbrach/PZ -abbrachen/WXY -abbrannte/NZ -abbrausen/DIXY -abbrechen/DI -abbremsen/DIXY -abbrennen/BDIX -abbricht/X -abbringen/DIX -abbrckeln/DIXY -abbruchreif/AEPT -abbrsten/DIXY -abbuchen/DIXY -abdampfen/DIXY -abdanken/DIXY -abdecken/BDIXY -abdichten/BDIXY -abdienen/DIXY -abdrehen/DIXY -abdriften/DIXY -abdrosseln/DIXY -abdrcken/DIXY -abdrucken/DIXY -abdunkeln/BDIXY -abebben/DIXY -abelsch/AEPT -abendfllend/AEPT -abendlndisch/AEPT -abendlich/AEPT -abendrot/AEPT -abends -abenteuerlich/ACEPT -abenteuerreich/AEPT -aber -aberglubisch/AEPT -aberhundert/E -aberkannt/AEPTZ -aberkennen/DIX -abermalig/AEPT -abermals -abernten/DIXY -abertausend/E -abessen/DI -abessinisch/AEPT -abfhrt/X -abfllig/ACEPT -abfllt/X -abfngt/X -abfrben/DIXY -abfackeln/DIXY -abfahren/DI -abfallen/DI -abfangen/DI -abfassen/DIXY -abfaulen/DIXY -abfedern/BDIXY -abfeilen/DIXY -abfertigen/DIXY -abfeuern/DIXY -abfinde/NZ -abfing/EPZ -abflachen/DIXY -abflauen/DIXY -abfliegen/DIX -abflieen/DIX -abflog/PZ -abfloss/PZ -abfordern/DIXY -abfotografieren/DIOXY -abfrsen/DIXY -abfragen/BDIXY -abfra/PZ -abfressen/DI -abfrisst -abfhren/DIXY -abfllen/DIXY -abfttern/DIXY -abfuhr/PZ -abgab/PZ -abgendert/AEPT -abgearbeitet/AEPT -abgebaut/AEPT -abgeben/BDI -abgebettelt/AEPT -abgebildet/AEPT -abgebissen/AEPT -abgeblttert/AEPT -abgeblasen/AEPT -abgeblendet/AEPT -abgeblitzt/AEPT -abgebogen/AEPT -abgebracht/AEPT -abgebrannt/AEPT -abgebraust/AEPT -abgebremst/AEPT -abgebrckelt/AEPT -abgebrochen/AEPT -abgebrht/ACEPT -abgebrstet/AEPT -abgebucht/AEPT -abgebunden/AEPT -abgedankt/AEPT -abgedeckt/AEPT -abgedichtet/AEPT -abgedient/AEPT -abgedrngt/AEPT -abgedreht/AEPT -abgedriftet/AEPT -abgedroschen/AEPT -abgedrosselt/AEPT -abgedrckt/AEPT -abgedruckt/AEPT -abgedunkelt/AEPT -abgeerntet/AEPT -abgefrbt/AEPT -abgefahren/AEPT -abgefallen/AEPT -abgefangen/AEPT -abgefasst/AEPT -abgefault/AEPT -abgefeilt/AEPT -abgefeimt/AEPT -abgefertigt/AEPT -abgefeuert/AEPT -abgeflacht/AEPT -abgeflaut/AEPT -abgeflogen/AEPT -abgeflossen/AEPT -abgefordert/AEPT -abgefragt/AEPT -abgefressen/AEPT -abgefhrt/AEPT -abgefllt/AEPT -abgefttert/AEPT -abgefunden/AEPT -abgegangen/AEPT -abgegeben/AEPT -abgeglitten/AEPT -abgegolten/AEPT -abgegossen/AEPT -abgegraben/AEPT -abgegrast/AEPT -abgegrenzt/AEPT -abgegriffen/AEPT -abgehngt/AEPT -abgehrmt/AEPT -abgehrtet/ACEPT -abgehackt/AEPT -abgehakt/AEPT -abgehalftert/AEPT -abgehalten/AEPT -abgehandelt/AEPT -abgehangen/AEPT -abgehauen/AEPT -abgehebelt/AEPT -abgeheilt/AEPT -abgehen/DIX -abgehetzt/AEPT -abgehrt/AEPT -abgehobelt/AEPT -abgehoben/AEPT -abgeholt/AEPT -abgeholzt/AEPT -abgehorcht/AEPT -abgejagt/AEPT -abgekmpft/AEPT -abgekartet/AEPT -abgekauft/AEPT -abgekehrt/AEPT -abgeklrt/AEPT -abgeklappert/AEPT -abgeklemmt/AEPT -abgeklopft/AEPT -abgeklungen/AEPT -abgeknabbert/AEPT -abgeknallt/AEPT -abgeknickt/AEPT -abgekniffen/AEPT -abgekocht/ACEPT -abgekommen/AEPT -abgekoppelt/AEPT -abgekratzt/AEPT -abgekriegt/AEPT -abgekhlt/AEPT -abgekrzt/AEPT -abgeksst/AEPT -abgeladen/AEPT -abgelagert/AEPT -abgelassen/AEPT -abgelaufen/AEPT -abgeleckt/AEPT -abgelegen/ACEOPT -abgelegt/AEPT -abgelehnt/AEPT -abgeleistet/AEPT -abgeleitet/AEPT -abgelenkt/AEPT -abgelesen/AEPT -abgeleugnet/AEPT -abgeliefert/AEPT -abgelscht/AEPT -abgelst/AEPT -abgemht/AEPT -abgemacht/AEPT -abgemagert/AEPT -abgemahnt/AEPT -abgemeldet/AEPT -abgemessen/AEPT -abgemildert/AEPT -abgemischt/AEPT -abgemht/AEPT -abgemustert/AEPT -abgenabelt/AEPT -abgenagt/AEPT -abgeneigt/AEPT -abgentigt/AEPT -abgenommen/AEPT -abgentzt/AEPT -abgenutzt/AEPT -abgeordnet/AEPT -abgepasst/AEPT -abgepfiffen/AEPT -abgepflckt/AEPT -abgeplagt/AEPT -abgeprallt/AEPT -abgepresst/AEPT -abgeputzt/AEPT -abgeqult/AEPT -abgequetscht/AEPT -abgerumt/AEPT -abgerackert/AEPT -abgeraten/AEPT -abgerechnet/AEPT -abgereist/AEPT -abgerichtet/AEPT -abgerieben/AEPT -abgeriegelt/AEPT -abgerissen/AEPT -abgerollt/AEPT -abgerckt/AEPT -abgerstet/AEPT -abgerufen/AEPT -abgerundet/AEPT -abgerungen/AEPT -abgerutscht/AEPT -abgesgt/AEPT -abgesackt/AEPT -abgesagt/AEPT -abgesahnt/AEPT -abgesandt/AEPT -abgesaugt/AEPT -abgescannt/AEPT -abgeschlt/AEPT -abgeschtzt/AEPT -abgeschabt/AEPT -abgeschafft/AEPT -abgeschaltet/AEPT -abgeschickt/AEPT -abgeschieden/AEPT -abgeschirmt/AEPT -abgeschlachtet/AEPT -abgeschlafft/AEPT -abgeschlagen/AEPT -abgeschleckt/AEPT -abgeschleppt/AEPT -abgeschliffen/AEPT -abgeschlossen/AEPT -abgeschmackt/AEPT -abgeschmettert/AEPT -abgeschmiert/AEPT -abgeschminkt/AEPT -abgeschmolzen/AEPT -abgeschnitten/AEPT -abgeschnrt/AEPT -abgeschpft/AEPT -abgeschoben/AEPT -abgeschoren/AEPT -abgeschossen/AEPT -abgeschrgt/AEPT -abgeschraubt/AEPT -abgeschreckt/AEPT -abgeschrieben/AEPT -abgeschritten/AEPT -abgeschrft/AEPT -abgeschttelt/AEPT -abgeschuftet/AEPT -abgeschwcht/AEPT -abgeschweift/AEPT -abgeschwenkt/AEPT -abgeschworen/AEPT -abgesegelt/AEPT -abgesegnet/AEPT -abgesehen -abgeseift/AEPT -abgeseilt/AEPT -abgesendet/AEPT -abgesenkt/AEPT -abgesessen/AEPT -abgesetzt/AEPT -abgesichert/AEPT -abgesondert/ACEPT -abgespalten/AEPT -abgespannt/AEPT -abgespart/AEPT -abgespeckt/AEPT -abgespeichert/AEPT -abgespeist/AEPT -abgesperrt/AEPT -abgespiegelt/AEPT -abgespielt/AEPT -abgesplittert/AEPT -abgespritzt/AEPT -abgesprochen/AEPT -abgesprungen/AEPT -abgesplt/AEPT -abgestammt/AEPT -abgestanden/AEPT -abgestattet/AEPT -abgestaubt/AEPT -abgesteckt/AEPT -abgestellt/AEPT -abgestempelt/AEPT -abgesteppt/AEPT -abgestiegen/AEPT -abgestimmt/AEPT -abgestochen/AEPT -abgestoppt/AEPT -abgestorben/AEPT -abgestoen/AEPT -abgestottert/AEPT -abgestrahlt/AEPT -abgestreift/AEPT -abgestrichen/AEPT -abgestritten/AEPT -abgestrzt/AEPT -abgesttzt/AEPT -abgestuft/AEPT -abgestumpft/ACEPT -abgesucht/AEPT -abgesunken/AEPT -abgetakelt/AEPT -abgetan/AEPT -abgetastet/AEPT -abgeteilt/AEPT -abgetippt/AEPT -abgettet/AEPT -abgetragen/AEPT -abgetrennt/AEPT -abgetreten/AEPT -abgetrieben/AEPT -abgetrocknet/AEPT -abgetropft/AEPT -abgetrotzt/AEPT -abgetupft/AEPT -abgeurteilt/AEPT -abgewhlt/AEPT -abgewlzt/AEPT -abgewandelt/AEPT -abgewandert/AEPT -abgewandt/AEPT -abgewartet/AEPT -abgewaschen/AEPT -abgewechselt/AEPT -abgewehrt/AEPT -abgewendet/AEPT -abgewertet/AEPT -abgewetzt/AEPT -abgewichen/AEPT -abgewickelt/AEPT -abgewiesen/AEPT -abgewinkt -abgewinnen/DIX -abgewirtschaftet/AEPT -abgewischt/AEPT -abgewhnen/DIOXY -abgewogen/AEPT -abgewonnen/AEPT -abgeworfen/AEPT -abgewrgt/AEPT -abgewunken/AEPT -abgezhlt/AEPT -abgezunt/AEPT -abgezahlt/AEPT -abgezapft/AEPT -abgezehrt/AEPT -abgezeichnet/AEPT -abgezielt/AEPT -abgezinst/AEPT -abgezogen/AEPT -abgezweigt/AEPT -abgezwickt/AEPT -abgezwungen/AEPT -abgibt/X -abgieen/DIX -abging/EPZ -abgleichen/IX -abgleiten/DIX -abglich/EPZ -abgraben/DI -abgrasen/DIXY -abgreifen/BDIX -abgrenzen/DIXY -abgrundtief/AEPT -abhltst/WX -abhngen/DIXY -abhngig/ACEPTU -abhacken/DIXY -abhaken/DIXY -abhalten/DI -abhanden -abhauen/DIXY -abheben/DIX -abheilen/DIXY -abhelfen/DI -abhetzen/DIXY -abhielt/EPZ -abhilft/X -abhing/EPZ -abhren/BDIXY -abhrsicher/AEPT -abhob/PZ -abhobeln/DIXY -abhold/AEPT -abholen/DIXY -abholzen/DIXY -abhorchen/DIXY -abhungern/DIXY -abjagen/DIXY -abkam/PZ -abkapseln/DIXY -abkaufen/DIXY -abkehren/DIXY -abklren/DIXY -abklang/PZ -abklappen/BDIXY -abklappern/DIXY -abkleben/DIXY -abklemmen/DIXY -abklingen/DIX -abklopfen/DIXY -abknabbern/DIXY -abknallen/DIXY -abknappen/DIXY -abkneifen/DIX -abknicken/DIXY -abknpfen/DIXY -abkmmlich/AEPTU -abkochen/DIXY -abkommandieren/DIOXY -abkommen/DIX -abkommenswidrig/AEPT -abkoppeln/DIXY -abkratzen/DIXY -abkriegen/DIXY -abkhlen/DIXY -abkndigen/IXY -abkrzen/DIXY -abkssen/DIXY -abldt/X -ablsst -abluft/X -abladen/DI -ablag/PZ -ablagern/DIXY -ablassen/DI -ablaufen/DI -ablauffhig/AEPT -ablecken/DIXY -ablegen/DIXY -ablehnen/DIXY -ableisten/DIXY -ableiten/BDIXY -ablenken/BDIXY -ablesen/BDIX -ableugnen/DIXY -ablichten/DIXY -abliefern/DIXY -abliegen/DIX -ablschen/DIXY -ablsen/BDIXY -ablten/DIXY -abmhen/DIXY -abmachen/DIXY -abmagern/DIXY -abmahnen/BDIXY -abmalen/DIXY -abmarschieren/DIOXY -abma/PZ -abmelden/DIXY -abmessen/DI -abmildern/DIXY -abmischen/BDIXY -abmontieren/DIOXY -abmhen/DIXY -abmustern/DIXY -abnabeln/DXY -abnagen/DIXY -abnahm/PZ -abnahmefhig/AEPT -abnehmen/BDI -abnimmt/X -abntigen/DIXY -abnorm/AEPT -abnormal/ACEPT -abntzen/DIXY -abnutzen/DIXY -abonnieren/BDIOXY -abordnen/DIXY -abpassen/DIXY -abpatrouillieren/IX -abpfeifen/DIX -abpfiff/PZ -abpflcken/DIXY -abplagen/DIXY -abprallen/DIXY -abpressen/DIXY -abputzen/DIXY -abqulen/DIXY -abquetschen/DIXY -abrumen/DIXY -abrackern/DIXY -abraten/DI -abreagieren/DIOXY -abrechnen/DIXY -abregen/DIXY -abreiben/BDIX -abreien/BDIX -abreisen/DIXY -abrichten/DIXY -abriegeln/DIXY -abriet/EPZ -abringen/DIX -abriss/PZ -abrollen/DIXY -abrcken/DIXY -abrsten/DIXY -abrufbereit/AEPT -abrufen/BDIX -abrunden/DIXY -abrupt/ACEPT -abrutschen/DIXY -absgen/DIXY -absacken/DIXY -absagen/DIXY -absah/PZ -absahnen/DIXY -absank/PZ -absatzfhig/AEPT -absatzfrdernd/AEPT -absatzorientiert/AEPT -absaugen/DIXY -abschlen/DIXY -abschtzen/DIXY -abschtzig/AEPT -abschaben/DIXY -abschaffen/DIXY -abschalten/BDIXY -abscheiden/DIX -abscheren/DIXY -abscheulich/ACEPT -abschicken/DIXY -abschieben/DIX -abschied/PZ -abschieen/DIX -abschirmen/DIXY -abschlgig/AEPT -abschlgt/X -abschlachten/DIXY -abschlagen/DI -abschleifen/DIX -abschleppen/DIXY -abschlieen/DIX -abschlusssicher/AEPT -abschmelzen/DI -abschmieren/DIXY -abschminken/DIXY -abschnallen/DIXY -abschneiden/DIX -abschnitt/EPZ -abschnittsweise/ANRS -abschnren/DIXY -abschpfen/DIXY -abschob/PZ -abschor/PZ -abschoss/PZ -abschotten/BDIXY -abschrgen/DIXY -abschrauben/BDIXY -abschrecken/DIXY -abschreiben/DIX -abschreiten/DIX -abschrfen/DIXY -abschssig/AEPT -abschtteln/DIXY -abschuften/DIXY -abschwchen/DIXY -abschweifen/DIXY -abschwenken/DIXY -abschwren/DIX -absegeln/DIXY -absegnen/DIXY -absehbar/AEPTU -absehen/BDI -abseifen/DIXY -abseilen/DIXY -abseitig/AEPT -abseits -absenden/DIXY -absenken/IXY -absetzbar/AEPTU -absetzen/BDIXY -absichern/DIXY -absichtlich/AEPTU -absichtsvoll/AEPT -absieht/X -absingen/IX -absinken/DIX -absitzen/DIX -absolut/AEPT -absolutistisch/AEPT -absolvieren/DIOXY -absonderlich/ACEPT -absondern/DIXY -absorbieren/DIOXY -abspalten/DIXY -abspannen/DIXY -abspecken/IXY -abspeichern/IXY -abspeisen/DIX -abspenstig/AEPT -absperren/DIXY -abspiegeln/DIXY -abspielen/DIXY -absplittern/DIXY -absprach/PZ -absprang/PZ -absprechen/DI -absprengen/BIXY -abspricht/X -abspringen/DIX -absplen/DIXY -abspulen/DIXY -abstammen/DIXY -abstatten/DIXY -abstauben/DIXY -abstechen/DI -abstecken/DIXY -abstehen/DIX -absteigen/DIX -abstellen/DIXY -abstempeln/DIXY -absteppen/DIXY -absterben/DI -absticht/X -abstiegsgefhrdet/AEPT -abstiegsreif/AEPT -abstimmen/DIXY -abstimmungsberechtigt/AEPT -abstinent/AEPT -abstirbt/X -abstoppen/DIXY -abstoen/DI -abstoend/ACEPT -abstrahieren/DIOXY -abstrahlen/DIXY -abstrakt/ACEPT -abstreichen/DIX -abstreifen/DIXY -abstreiten/DIX -abstritt/PZ -abstrus/AEPT -abstrzen/DIXY -absttzen/DIXY -abstufen/DIXY -abstumpfen/DIXY -absuchen/DIXY -absurd/ACEPT -absurdum -abtasten/DIXY -abtat/PZ -abtauchen/DIXY -abteilen/BDIXY -abteufen/IXY -abtippen/BDIXY -abtten/DIXY -abtrglich/ACEPT -abtragen/DI -abtransportieren/BIOXY -abtrat/PZ -abtreiben/DIX -abtrennen/BDIXY -abtreten/DI -abtrocknen/DIXY -abtropfen/DIXY -abtrotzen/DIXY -abtrnnig/AEPT -abtrug/PZ -abtuend/AEPT -abtun/IX -abtupfen/DIXY -aburteilen/DIXY -abverdienen/DIXY -abverlangen/DIOXY -abwgen/BDIX -abwhlen/BIXY -abwlzen/DIXY -abwrts -abwrtskompatibel/A -abwandeln/BDIXY -abwandern/DIXY -abwandte/NZ -abwarf/PZ -abwarten/DIXY -abwaschen/BDI -abwechseln/DIXY -abwechslungsreich/ACEPT -abwechslungsweise -abwegig/ACEPT -abwehren/DIXY -abweichen/DIX -abweisen/DIX -abwendbar/AEPTU -abwenden/BDIXY -abwerben/DI -abwerfen/DI -abwerten/DIXY -abwesend/AEPT -abwich/EPZ -abwickeln/DIXY -abwiegen/DIX -abwinken/DIXY -abwirft/X -abwirtschaften/DIXY -abwischen/DIXY -abwog/PZ -abwrgen/DIXY -abzhlen/BDIXY -abzunen/DIXY -abzahlen/DIXY -abzapfen/DIXY -abzeichnen/DIXY -abzgl -abzgl. -abziehen/DIX -abzielen/DIXY -abzge/NZ -abzog/PZ -abzglich -abzundern/D -abzuarbeiten/D -abzubauen/D -abzubestellen/D -abzubilden/D -abzublocken/D -abzubrechen/D -abzubringen -abzudanken -abzudecken/D -abzudichten/D -abzudrngen/D -abzudrehen/D -abzudrcken/D -abzudrucken/D -abzuerkennen/D -abzufangen/D -abzufedern/D -abzufeiern/D -abzufeuern/D -abzufinden/D -abzufragen/D -abzufressen/D -abzufhren/D -abzugeben/D -abzugehen/D -abzugewinnen/D -abzugleichen/D -abzugrasen/D -abzugrenzen/D -abzugsfhig/AEPT -abzuhngen/D -abzuhalten/D -abzuhauen -abzuheben/D -abzuhelfen/D -abzuhren/D -abzuholen/D -abzujagen/D -abzuklren/D -abzuklingen -abzuklopfen/D -abzuknabbern/D -abzukhlen/D -abzukrzen/D -abzulassen/D -abzulaufen -abzulegen/D -abzulehnen/D -abzuleiten/D -abzulenken/D -abzulesen/D -abzuliefern/D -abzulsen/D -abzumelden/D -abzumildern/D -abzumhen -abzunehmen/D -abzupflcken/D -abzuraten -abzurechnen/D -abzureisen -abzuriegeln/D -abzuringen/D -abzurcken/D -abzurufen/D -abzurunden/D -abzusagen/D -abzusahnen/D -abzuschtzen/D -abzuschaffen/D -abzuschalten/D -abzuscheiden/D -abzuschicken/D -abzuschieben/D -abzuschieen/D -abzuschlagen/D -abzuschleifen/D -abzuschlieen/D -abzuschneiden/D -abzuschotten/D -abzuschreiben/D -abzuschtteln/D -abzuschwchen/D -abzuschwenken/D -abzusehen/D -abzusenden/D -abzusetzen/D -abzusichern/D -abzusinken -abzusondern/D -abzuspeichern/D -abzusperren/D -abzuspielen/D -abzusprechen/D -abzustatten/D -abzustecken/D -abzustehen -abzusteigen -abzustellen/D -abzustimmen/D -abzustoen/D -abzustreifen/D -abzustrzen -abzustumpfen/D -abzusuchen/D -abzutasten/D -abzutten/D -abzutransportieren/D -abzutreiben/D -abzutrennen/D -abzutreten/D -abzutrocknen/D -abzutun -abzuverlangen/D -abzuwgen/D -abzuwhlen/D -abzuwlzen/D -abzuwandeln/D -abzuwarten/D -abzuwehren/D -abzuweichen -abzuweisen/D -abzuwenden/D -abzuwerfen/D -abzuwickeln/D -abzuwiegen/D -abzuwirtschaften/D -abzuzahlen/D -abzuzeichnen/D -abzuziehen/D -abzweigen/DIXY -abzwicken/DIXY -achselzucken/D -achsig/AEPT -acht/AEPTW -achteinhalbfach/AEPT -achteln/DIWXY -achten/BDIWXY -achtenswert/AEPTV -achtfach/AEPT -achthundert -achthundertmal -achthundertstel -achtjhrig/AEPT -achtkpfig/AEPT -achtlos/ACEPT -achtsam/AEPTU -achtseitig/AEPT -achtspaltig/AEPT -achtstckig/AEPT -achtstrahlig/AEPT -achtstndig/AEPT -achttgig/AEPT -achttausend -achtundachtzig -achtundachtzigste/ANRS -achtunddreiig -achtunddreiigste/ANRS -achtundfnfzig -achtundfnfzigste/ANRS -achtundneunzig -achtundneunzigste/ANRS -achtundsechzig -achtundsiebzig -achtundsiebzigjhrig/AEPT -achtundsiebzigste/ANRS -achtundvierzig -achtundzwanzig -achtungsvoll/ACEPT -achtwchig/AEPT -achtzehn -achtzehntgig/AEPT -achtzehnte/ANRS -achtzig/R -achtzigjhrig/AEPT -achtzigste/ANRS -ackerbautreibend/AEPT -ackern/DIXY -acta -ad/E -adquat/ACEPT -adaptieren/BIOXY -adaptiv/AEPT -addieren/DIOXY -additional/AEPT -additiv/AEPT -adeln/DIXY -aderig/AEPT -adiabatisch/AEPT -adieu -adjektivisch/AEPT -adjungiert/AEPT -adlig/AEPT -administrativ/AEPT -administrieren/DIOXY -adoptieren/DIOXY -adressieren/BDIOXY -adrett/ACEPT -adsorbieren/DIOXY -adverbial/AEPT -aerodynamisch/AEPT -aeronautisch/AEPT -affektiert/ACEPT -affenhnlich/AEPT -affenartig/AEPT -affengeil/AEPT -afferent/AEPT -affig/ACEPT -affirmativ/AEPT -afghanisch/AEPT -afrikanisch/AEPT -afroamerikanisch/AEPT -afroasiatisch/AEPT -aggressionshemmend/AEPT -aggressiv/ACEPT -agieren/DIXY -agil/AEPT -agitatorisch/AEPT -agitieren/DIXY -agrarisch/AEPT -ahmen/IXY -ahnden/DIXY -ahnen/DIXY -ahnungslos/ACEPT -ahnungsvoll/ACEPT -ahoi -akademisch/ACEPT -akklimatisieren/DIOXY -akkreditieren/DIOXY -akkugepuffert/AEPT -akkumulieren/DIOXY -akkurat/AEPT -akquisitorisch/AEPT -akribisch/AEPT -akrobatisch/AEPT -aktenkundig/AEPT -aktenmig/AEPT -aktiv/ACEPT -aktivieren/BDIOXY -aktualisieren/BDIOXY -aktuell/ACEPT -akupunktieren/DIOWXY -akustisch/AEPT -akut/ACEPT -akzentfrei/AEPT -akzentlos/AEPT -akzentuieren/DIOXY -akzeptabel/ACU -akzeptieren/DIOXY -alarmbereit/AEPT -alarmieren/DIOXY -albanisch/AEPT -albern/ADEIPTXY -alchemistisch/AEPT -alemannisch/AEPT -alert/AEPT -algebraisch/AEPT -algorithmisch/AEPT -alias -aliphatisch/AEPT -alkalisch/AEPT -alkoholfrei/AEPT -alkoholisch/AEPT -alkoholisiert/AEPT -all/AEPT -allabendlich/AEPT -allbekannt/AEPT -alldem -alledem -allegorisch/AEPT -allegro -allein/E -alleinig/AEPT -alleinstehend/AEPT -allemal -allenfalls -allenthalben -allerbeste/ANRS -allerdings -allereinfachste/ANRS -allererste/ANRS -allergeringste/ANRS -allergisch/AEPT -allergrte/ANRS -allerhand -allerheiligste/ANRS -allerherzlichst/AEPT -allerhchste/ANRS -allerlei -allerletzt/AEPT -allerliebst/AEPT -allermeist/AEPT -allernchste/ANRS -allerneueste/ANRS -allerneust/AEPT -allerorten -allerschlechteste/ANRS -allerschlimmste/ANRS -allerschwerste/ANRS -allerseits -allerwrts -allerwenigste/ANRS -allerwichtigste/ANRS -allesamt -allezeit -allfllig/AEPT -allg -allg. -allgegenwrtig/AEPT -allgemein/ACEPT -allgemeinbildend/AEPT -allgemeinpolitisch/AEPT -allgemeinwirtschaftlich/AEPT -allgewaltig/AEPT -alliieren/DIOWXY -alljhrlich/AEPT -allmchtig/AEPT -allmhlich/AEPT -allmonatlich/AEPT -allozieren/DIOXY -allquantifiziert/AEPT -allseitig/AEPT -allseits -alltglich/AEPT -allumfassend/AEPT -allwissend/AEPT -allwo -allwchentlich/AEPT -allzu -allzweck -alpenlndisch/AEPT -alpha -alphabetisch/AEPT -alphanumerisch/AEPT -alpin/AEPT -als -alsbald -alsbaldig/AEPT -alsdann -also -alt/AEPRT -altangesehen/AEPT -altbacken/AEPT -altbekannt/AEPT -altbewhrt/AEPT -altehrwrdig/AEPT -alteingefhrt/AEPT -alteingesessen/AEPT -alterlos/AEPT -altern/DIWXY -alternativ/AEPT -alternieren/DIOXY -altersbedingt/AEPT -altersgem/AEPT -altersmig/AEPT -altersschwach/AEPT -altertmlich/AEPT -altgedient/AEPT -altgewohnt/AEPT -altgriechisch/AEPT -althergebracht/AEPT -althochdeutsch/AEPT -altklug/AEPT -altkonservativ/AEPT -altliberal/AEPT -altmodisch/ACEPT -altrmisch/AEPT -altrosa -altruistisch/AEPT -altsprachlich/AEPT -altvertraut/AEPT -altvordere/ANRS -amateurhaft/AEPT -ambitis/AEPT -ambitioniert/AEPT -ambivalent/AEPT -ambulant/AEPT -amen/WY -amerikanisch/AEPT -amerikanisieren/DIOXY -amnestieren/DIOXY -amoralisch/AEPT -amorph/AEPT -amortisieren/BDIOXY -amours/AEPT -amplitudenmoduliert/AEPT -amputieren/DIOXY -amtieren/DIXY -amtlich/AEPT -amtsrztlich/AEPT -amtsenthoben/AEPT -amsant/AEPT -amsieren/DIOXY -amusisch/AEPT -an/S -anmisch/AEPT -ansthesieren -ansthetisieren -anachronistisch/AEPT -anal/AEPT -analog/AEPT -analphabetisch/AEPT -analysieren/BDIOXY -analytisch/AEPT -anaphorisch/AEPT -anaphylaktisch/AEPT -anarchisch/AEPT -anarchistisch/AEPT -anastatisch/AEPT -anatomisch/AEPT -anbndeln/DIXY -anbahnen/DIXY -anbauen/DIXY -anbefohlen/AEPT -anbehalten/ADEIPTX -anbei -anbeien/DIX -anbelangen/DIOXY -anbellen/DIXY -anberaumen/DIOXY -anbeten/DIXY -anbetreffen/D -anbetrifft -anbetroffen/AEPT -anbetteln/DIXY -anbetungswrdig/AEPT -anbiedern/DIXY -anbieten/DIX -anbinden/DIX -anbiss/EPZ -anblst -anblasen/DI -anblicken/DIXY -anblinzeln/DIXY -anbte/NZ -anbohren/DIXY -anbot/PZ -anbrach/PZ -anbrachen/WXY -anbrannte/NZ -anbraten/DI -anbrechen/DI -anbrennen/DIX -anbricht/X -anbriet/EPZ -anbringen/DIX -anbrllen/DIXY -ancrimpbar -ancrimpen -andchtig/AEPT -andalusisch/AEPT -andauern/DIXY -andere/ANRS -anderenfalls -anderenorts -andererseits -andermal -andern -andernfalls -andernorts -anderntags -anders -andersartig/AEPT -anderseits -andersglubig/AEPT -andersherum -anderswie -anderswo -anderswoher -anderthalb/AEPT -anderthalbfach/AEPT -anderthalbjhrig/AEPT -anderthalbtausend -anderweitig/AEPT -andeuten/DIXY -andeutungsweise -andichten/DIXY -andienen/DIXY -andiskutieren/DIOXY -andocken/DIXY -andorranisch/AEPT -andre/ANRS -andrehen/DIXY -androhen/DIXY -anecken/IXY -aneignen/DIXY -aneinander -anekdotenhaft/AEPT -anekeln/DIXY -anempfohlen/AEPT -anerkannt/AEPT -anerkennen/BDIX -anerkennenswert/AEPT -anerziehen/DIX -anerzogen/AEPTWX -anfllig/AEPT -anfllt/X -anfnglich/AEPT -anfngt/X -anfachen/DIXY -anfahren/DI -anfallen/DI -anfangen/DI -anfangs -anfassen/DIXY -anfaulen/DIXY -anfechtbar/AEPTU -anfechten/BDIX -anfeinden/DIXY -anfertigen/DIXY -anfeuchten/DIXY -anfeuern/DIXY -anfiel/EPZ -anfing/EPZ -anflehen/DIXY -anfliegen/DIX -anfordern/DIXY -anforderungsgem/AEPT -anfragen/DIXY -anfra/PZ -anfreunden/DIXY -anfrieren/DIX -anfgen/DIXY -anfhren/DIXY -angngig/AEPT -angab/PZ -angaffen/DIXY -angebahnt/AEPT -angebaut/AEPT -angebellt/AEPT -angeben/BDI -angeberisch/AEPT -angebetet/AEPT -angebettelt/AEPT -angebiedert/AEPT -angebissen/AEPT -angeblasen/AEPT -angeblich/AEPT -angeblickt/AEPT -angeblinzelt/AEPT -angebohrt/AEPT -angeboren/AEPT -angeboten/AEPT -angebracht/ACEPTU -angebrannt/AEPT -angebraten/AEPT -angebrochen/AEPT -angebrllt/AEPT -angebunden/AEPT -angedacht/AEPT -angedeihen -angedeutet/AEPT -angedichtet/AEPT -angedient/AEPT -angedockt/AEPT -angedreht/AEPT -angedroht/AEPT -angeeignet/AEPT -angeekelt/AEPT -angefacht/AEPT -angefahren/AEPT -angefallen/AEPT -angefangen/AEPT -angefasst/AEPT -angefault/AEPT -angefeindet/AEPT -angefertigt/AEPT -angefeuchtet/AEPT -angefeuert/AEPT -angefleht/AEPT -angeflogen/AEPT -angefochten/AEPTU -angefordert/AEPT -angefragt/AEPT -angefreundet/AEPT -angefroren/AEPT -angefgt/AEPT -angefhrt/AEPT -angefllt/AEPT -angegafft/AEPT -angegangen/AEPT -angegeben/AEPT -angeglichen/AEPT -angegliedert/AEPT -angegossen/AEPT -angegrenzt -angegriffen/AEPT -angegrinst/AEPT -angehngt/AEPT -angehuft/AEPT -angehabt/AEPT -angehalten/AEPT -angehaucht/AEPT -angeheftet/AEPT -angeheitert/AEPT -angehen/DIX -angeheuert/AEPT -angehimmelt/AEPT -angehren/DIOXY -angehrig/AEPT -angehoben/AEPT -angekauft/AEPT -angekettet/AEPT -angeklagt/AEPT -angeklammert/AEPT -angeklebt/AEPT -angekleidet/AEPT -angeklemmt/AEPT -angeklickt/AEPT -angeklingelt -angeklopft/AEPT -angeklungen/AEPT -angeknackst/AEPT -angeknipst/AEPT -angeknpft/AEPT -angekommen/AEPT -angekoppelt/AEPT -angekrnkelt/AEPT -angekratzt/AEPT -angekreidet/AEPT -angekreuzt/AEPT -angekndigt/AEPT -angekurbelt/AEPT -angelchelt/AEPT -angelacht/AEPT -angelangt/AEPT -angelassen/AEPT -angelastet/AEPT -angelaufen/AEPT -angelegen/AEOPT -angelegt/AEPT -angelehnt/AEPT -angeleimt/AEPT -angeleitet/AEPT -angelernt/AEPT -angeliefert/AEPT -angeln/DIXY -angeltet/AEPT -angelockt/AEPT -angelogen/AEPT -angelschsisch/AEPT -angemacht/AEPT -angemahnt/AEPT -angemalt/AEPT -angemat/AEPT -angemeldet/AEPTU -angemerkt/AEPT -angemessen/ACEPTU -angemietet/AEPT -angemustert/AEPT -angenhert/AEPT -angenht/AEPT -angenagelt/AEPT -angenehm/ACEPTU -angenommen/AEPT -angeordnet/AEPT -angepackt/AEPT -angepasst/ACEPTU -angepeilt/AEPT -angepfiffen/AEPT -angepflanzt/AEPT -angepbelt/AEPT -angeprallt/AEPT -angepriesen/AEPT -angepumpt/AEPT -angerannt/AEPT -angeraten/AEPT -angeraucht/AEPT -angeraut/AEPT -angerechnet/AEPT -angeredet/AEPT -angeregt/AEPT -angereichert/AEPT -angereiht/AEPT -angereist/AEPT -angerichtet/AEPT -angerissen/AEPT -angeritzt/AEPT -angerckt/AEPT -angerhrt/AEPT -angerufen/AEPT -angesuselt/AEPT -angesagt/AEPT -angesammelt/AEPT -angesaugt/AEPT -angeschafft/AEPT -angeschaltet/AEPT -angeschaut/AEPT -angeschichtet/AEPT -angeschickt/AEPT -angeschlagen/AEPT -angeschlossen/AEPT -angeschmiegt/AEPT -angeschmiert/AEPT -angeschnallt/AEPT -angeschnauzt/AEPT -angeschnitten/AEPT -angeschossen/AEPT -angeschraubt/AEPT -angeschrieben/AEPT -angeschrien/AEPT -angeschuldigt/AEPT -angeschwrzt/AEPT -angeschweit/AEPT -angeschwemmt/AEPT -angeschwindelt/AEPT -angeschwollen/AEPT -angesehen/ACEPT -angeseilt/AEPT -angesengt/AEPT -angesenkt/AEPT -angesetzt/AEPT -angesichts -angesiedelt/AEPT -angespannt/ACEPT -angespart/AEPT -angespielt/AEPT -angespitzt/AEPT -angespornt/AEPT -angespritzt/AEPT -angesprochen/AEPT -angesprungen/AEPT -angesplt/AEPT -angespuckt/AEPT -angestammt/AEPT -angestanden -angestarrt/AEPT -angestaut/AEPT -angesteckt/AEPT -angestellt/AEPT -angesteuert/AEPT -angestiegen/AEPT -angestiftet/AEPT -angestimmt/AEPT -angestoen/AEPT -angestrahlt/AEPT -angestrebt/AEPT -angestrengt/AEPT -angestrichen/AEPT -angestrmt/AEPT -angesucht/AEPT -angetan/AEPT -angetastet/AEPTU -angetragen/AEPT -angetraut/AEPT -angetreten/AEPT -angetrieben/AEPT -angetroffen/AEPT -angetrunken/AEPT -angewhlt/AEPT -angewrmt/AEPT -angewachsen/AEPT -angewandt/AEPT -angeweht/AEPT -angewendet/AEPT -angewidert/AEPT -angewiesen/AEPT -angewhnen/DIOXY -angeworben/AEPT -angeworfen/AEPT -angewurzelt/AEPT -angezahlt/AEPT -angezapft/AEPT -angezeichnet/AEPT -angezeigt/AEPT -angezettelt/AEPT -angezischt/AEPT -angezogen/AEPT -angezndet/AEPT -angezweifelt/AEPT -angibt/X -anging/EPZ -angleichen/DIX -angliedern/DIXY -anglikanisch/AEPT -anglotzen/DIXY -angolanisch/AEPT -angreifbar/AEPTU -angreifen/BDIX -angrenzen/DI -angriffslustig/ACEPT -angrinsen/DIXY -angst -angstauslsend/AEPT -angsterregend/ACEPT -angstvoll/ACEPT -angucken/DIXY -anhltst/WX -anhngen/DIX -anhngig/AEPT -anhnglich/AEPT -anhufen/DIXY -anhaben/DI -anhaften/DIXY -anhalten/DI -anhand -anhauchen/DIXY -anheben/DIX -anheften/DIXY -anheim -anheischig -anheizen/DIXY -anhielt/EPZ -anhimmeln/DIXY -anhren/DIXY -anhob/PZ -animalisch/AEPT -animieren/DIOXY -anisotrop/AEPT -ankmen/IX -ankmpfen/DIXY -ankam/PZ -ankaufen/DIXY -ankern/DIVXY -ankert/EGPVX -ankerte/GNVZ -ankerten/GIVWX -anketten/DIXY -anklgerisch/AEPT -anklagen/DIXY -anklammern/DIXY -ankleben/DIXY -ankleiden/DIXY -anklemmen/IXY -anklicken/BDIXY -anklingeln/DIXY -anklingen/DIX -anklopfen/DIXY -anknipsen/DIXY -anknpfen/DIXY -ankommen/DIX -ankoppeln/DIXY -ankotzen/DIXY -ankreiden/DIXY -ankreuzen/DIXY -ankndigen/DIXY -ankurbeln/DIXY -anlcheln/DIXY -anlsslich -anluft/X -anlachen/DIXY -anlangen/DIXY -anlassen/DIV -anlaufen/DI -anlaufgeschtzt/AEPT -anlegen/DIXY -anlehnen/DIXY -anleimen/DIXY -anleiten/DIXY -anlernen/DIXY -anlief/EPZ -anliefern/DIXY -anliegen/DIX -anlten/DIXY -anlocken/DIXY -anlgen/DIX -anmachen/DIXY -anmalen/DIXY -anmarschieren/DIOXY -anmaen/DIXY -anmelden/DIXY -anmeldepflichtig/AEPT -anmerken/DIXY -anmessen/DIX -anmieten/DIXY -anmuten/DIXY -anmutig/ACEPT -annhen/DIXY -annhern/DIXY -annherungsweise -annhmen/IX -annageln/DIXY -annehmbar/AEPTU -annehmen/BDI -annektieren/DIOXY -annimmt/X -anno -annoncieren/DIOXY -annullieren/DIOWXY -anomal/ACEPT -anonym/AEPT -anonymisieren/BDIOWXY -anordnen/DIXY -anorganisch/AEPT -anormal/AEPT -anpacken/DIXY -anpassen/BDIXY -anpassungsbedingt/AEPT -anpassungsfhig/ACEPT -anpeilen/DIXY -anpflanzen/DIXY -anpinnen/DIXY -anpbeln/DIXY -anprallen/DIXY -anprangern/DIXY -anpreisen/DIX -anpressen/DIXY -anpries/EPZ -anprobieren/DIOXY -anpumpen/DIXY -anraten/DI -anrechnen/BDIXY -anreden/DIXY -anregen/DIXY -anreichern/DIXY -anreihen/DIXY -anreien/DIX -anreisen/DIXY -anreizen/DIXY -anrennen/DIX -anrichten/DIXY -anrief/EPZ -anriss/EPZ -anrollen/DIXY -anrchig/ACEPT -anrcken/DIXY -anrhren/DIXY -anrufen/DIX -ansssig/AEPT -ansagen/DIXY -ansah/PZ -ansammeln/DIXY -ansatzweise/ANRS -ansaugen/DIXY -anschaffen/DIXY -anschalten/DIXY -anschauen/DIXY -anschaulich/ACEPT -anscheinen/DIX -anschichten/DIXY -anschicken/DIXY -anschien/EPZ -anschieen/DIX -anschlgt/X -anschlagen/DIV -anschlieen/BDIX -anschloss/PZ -anschlug/PZ -anschmiegen/DIXY -anschmieren/DIXY -anschnallen/DIXY -anschnalzen -anschnauzen/DIXY -anschneiden/DIX -anschrauben/DIXY -anschreiben/DIX -anschreien/DIX -anschuldigen/DIXY -anschwrzen/DIXY -anschweien/DIXY -anschwellen/DIX -anschwemmen/DIXY -anschwindeln/DIXY -ansehen/DI -ansehnlich/ACEPTU -anseilen/DIXY -ansengen/DIXY -ansetzen/DIXY -ansiedeln/DIXY -ansieht/X -ansonsten -anspannen/DIXY -anspeien/DIX -anspielen/DIXY -anspinnen/DIX -anspitzen/DIXY -anspornen/DIXY -ansprach/PZ -ansprechen/BDI -ansprechend/ACEPT -anspricht/X -anspringen/DIX -anspritzen/DIXY -anspruchsberechtigt/AEPT -anspruchslos/ACEPT -anspruchsvoll/ACEPT -ansplen/DIXY -anspucken/DIXY -anstndig/ACEPTU -anstacheln/DIXY -anstandslos/AEPT -anstarren/DIXY -anstatt -anstecken/BDIXY -anstehen/DIX -ansteigen/DIX -anstellen/DIXY -anstellig/ACEPT -ansteuern/BDIXY -anstiften/DIXY -anstimmen/DIXY -anstig/ACEPT -anstt -anstoen/DI -anstrahlen/DIXY -anstreben/DIXY -anstreichen/DIX -anstrengen/DIXY -anstrengend/ACEPT -anstrmen/DIXY -ansuchen/DIXY -antanzen/IXY -antarktisch/AEPT -antasten/DIXY -antat/PZ -anteilig/AEPT -anteilsmig/AEPT -anthropologisch/AEPT -antiamerikanisch/AEPT -antiautoritr/AEPT -antibolschewistisch/AEPT -antibritisch/AEPT -antidemokratisch/AEPT -antideutsch/AEPT -antieuropisch/AEPT -antifaschistisch/AEPT -antifeudalistisch/AEPT -antifranzsisch/AEPT -antiinflationr/AEPT -antik/AEPT -antikapitalistisch/AEPT -antikirchlich/AEPT -antikommunistisch/AEPT -antilandwirtschaftlich/AEPT -antimarxistisch/AEPT -antiparlamentarisch/AEPT -antipolnisch/AEPT -antiquarisch/AEPT -antiquiert/AEPT -antirachitisch/AEPT -antirassistisch/AEPT -antisemitisch/AEPT -antisowjetisch/AEPT -antisozial/AEPT -antisozialistisch/AEPT -antistatisch/AEPT -antitechnisch/AEPT -antizipieren/DIOXY -antizyklisch/AEPT -antrnen/DIXY -antraf/PZ -antragen/DI -antragsberechtigt/AEPT -antrat/PZ -antreffen/DI -antreiben/DIX -antreten/DI -antrieb/PZ -antrifft/X -antrittst/WX -antrug/PZ -antun/IX -antworten/DIVXY -antwortet/EGPVWX -anvertrauen/DIOXY -anvisieren/DIOXY -anwchst -anwhlen/BIXY -anwachsen/DI -anwarb/PZ -anwarf/PZ -anwehen/DIXY -anweisen/DIX -anwendbar/AEPTU -anwenden/BDIXY -anwendungsfreundlich/AEPT -anwendungsgerecht/AEPT -anwendungsorientiert/AEPT -anwendungsspezifisch/AEPT -anwendungstechnisch/AEPT -anwesend/AEPT -anwies/EPZ -anwinkeln/DIXY -anwuchs/PZ -anzahlen/DIXY -anzapfen/DIXY -anzeichnen/DIXY -anzeigen/DIXY -anzeigentechnisch/AEPT -anzetteln/DIXY -anziehen/DIX -anzog/PZ -anzglich/ACEPT -anznden/DIXY -anzubahnen/D -anzubiedern -anzubieten/D -anzubinden/D -anzubringen/D -anzudeuten/D -anzudienen/D -anzuerkennen/D -anzufachen/D -anzufahren -anzufallen -anzufangen -anzufechten/D -anzufertigen/D -anzuflehen/D -anzufordern/D -anzufragen/D -anzufgen/D -anzugeben/D -anzugehen/D -anzugehren -anzugleichen/D -anzugliedern/D -anzugreifen/D -anzuhngen/D -anzuhalten/D -anzuheben/D -anzuhren/D -anzukaufen/D -anzuklagen/D -anzuklicken/D -anzuklopfen -anzuknpfen/D -anzukommen -anzukreiden/D -anzukndigen/D -anzukuppeln/D -anzukurbeln/D -anzulaufen -anzulegen/D -anzulehnen/D -anzuleiern/D -anzulernen -anzulocken/D -anzumelden/D -anzumerken/D -anzunhern/D -anzunehmen/D -anzuordnen/D -anzupacken/D -anzupassen/D -anzupeilen/D -anzupreisen/D -anzuraten/D -anzurechnen/D -anzuregen/D -anzureien/D -anzurempeln/D -anzurichten/D -anzurhren/D -anzurufen/D -anzusagen/D -anzusammeln/D -anzuschaffen/D -anzuschauen/D -anzuschlagen/D -anzuschlieen/D -anzuschreiben/D -anzusehen/D -anzusetzen/D -anzusiedeln -anzuspannen/D -anzusprechen/D -anzusteigen -anzustellen/D -anzusteuern/D -anzustoen/D -anzustreben/D -anzustrengen/D -anzutasten/D -anzutragen/D -anzutreffen/D -anzutreten/D -anzutun -anzuvertrauen/D -anzuwhlen/D -anzuweisen/D -anzuwenden/D -anzuwerben/D -anzuzapfen/D -anzuzeigen/D -anzuzetteln/D -anzuziehen/D -anzuznden/D -anzweifeln/DIXY -apart/ACEPT -apathisch/AEPT -aperiodisch/AEPT -apodiktisch/AEPT -apokalyptisch/AEPT -apostolisch/AEPT -apostrophieren/DIOWXY -apparativ/AEPT -appellieren/DIXY -appetitlich/ACEPTU -applaudieren/DIXY -applikativ/AEPT -applizieren/BDIOXY -approximativ/AEPT -approximieren/DIOXY -apriorisch/AEPT -apropos -arabisch/AEPT -arbeiten/DIVXY -arbeitet/EGPVWX -arbeitete/GNVZ -arbeiteten/GIVWX -arbeitnehmerfeindlich/ACEPT -arbeitsam/ACEPT -arbeitsaufwndig/AEPT -arbeitsaufwendig/AEPT -arbeitsfhig/AEPT -arbeitsfrei/AEPT -arbeitsfreudig/ACEPT -arbeitsintensiv/AEPT -arbeitslos/AEPT -arbeitspdagogisch/AEPT -arbeitsrechtlich/AEPT -arbeitsreich/AEPT -arbeitsscheu/AEPT -arbeitssparend/AEPT -arbeitstechnisch/AEPT -arbeitsunfhig/AEPT -arbeitswillig/AEPT -archologisch/AEPT -archaisch/AEPT -architektonisch/AEPT -archivieren/DIOXY -areligis/AEPT -arg/AEPT -argentinisch/AEPT -arglistig/AEPT -arglos/AEPT -argumentativ/AEPT -argumentieren/DIXY -argwhnen/DIXY -argwhnisch/ACEPT -argwhnt/EGPX -aristokratisch/AEPT -aristotelisch/AEPT -arithmetisch/AEPT -arktisch/AEPT -arm/AEPT -armenisch/AEPT -armieren/DIOXY -armlos/AEPT -armselig/ACEPT -aromatisch/ACEPT -arrangieren/DIOXY -arretieren/DIOXY -arrivieren/DIOXY -arrogant/ACEPT -arrondiert/AEPT -arteigen/AEPT -arten/IXY -artenreich/ACEPT -artfremd/AEPT -arthritisch/AEPT -artig/ACEPTU -artikulieren/DIOXY -artistisch/ACEPT -artverwandt/AEPT -a/PZ -aschfahl/AEPT -asiatisch/AEPT -asketisch/ACEPT -assemblerartig/AEPT -assemblieren/DIOXY -assimilieren/DIOXY -assistieren/DIOXY -assoziativ/AEPT -assoziieren/BDIOXY -astronomisch/AEPT -asymmetrisch/AEPT -asymptotisch/AEPT -asynchron/AEPT -atemberaubend/AEPT -atemlos/AEPT -atemraubend/AEPT -atlantisch/AEPT -atmen/DIXY -atmosphrisch/AEPT -atomar/AEPT -attackieren/DIOXY -attestieren/DIOWXY -attraktiv/ACEPTU -attribuieren/BDIOXY -attributiv/AEPT -au/S -auch -auditiv/AEPT -auf/S -aufe/NZ -aufaddieren/DIOXY -aufatmen/DIXY -aufbauen/DIXY -aufbereiten/DIXY -aufbessern/DIXY -aufbewahren/DIXY -aufbiegen/IX -aufbinden/DIX -aufblasen/BDI -aufblicken/DIXY -aufblinken/DIXY -aufbrach/PZ -aufbrachen/WXY -aufbrechen/I -aufbricht/X -aufbringen/IX -aufdampfen/BDIXY -aufdecken/IXY -aufdrngen/DIXY -aufdringlich/ACEPTU -aufdrcken/DIXY -aufdrucken/DIXY -aufeinander -auferlegen/DIOXY -auferstanden/AEPT -auferstehen/DIX -auferstnde/NZ -auferwecken/DIOXY -aufessen/DI -auffchern/BDIXY -auffhrt/X -auffllig/ACEPTU -auffllt/X -auffngt/X -auffahren/BDI -auffallen/DI -auffallend/ACEPT -auffangen/BDI -auffassen/BDIXY -auffiel/EPZ -auffindbar/AEPTU -auffinden/BDIX -auffing/EPZ -auffischen/DIXY -aufflammen/DIXY -auffliegen/DIX -aufflge/NZ -auffloge/NZ -auffordern/DIXY -aufforsten/BDIXY -auffre/NZ -auffra/PZ -auffressen/DI -auffrischen/BDIXY -auffrisieren/DIOXY -auffrisst -auffhren/BDIXY -auffllen/BDIXY -auffuhr/PZ -aufgab/PZ -aufgearbeitet/AEPTU -aufgebumt/AEPT -aufgebahrt/AEPT -aufgebauscht/AEPT -aufgebaut/AEPT -aufgeben/DI -aufgebessert/AEPT -aufgeblht/ACEPT -aufgeblasen/ACEPT -aufgeblendet/AEPT -aufgeblickt -aufgeblieben/AEPT -aufgeblitzt/AEPT -aufgeblht/AEPT -aufgebockt/AEPT -aufgebohrt/AEPT -aufgeboten/AEPT -aufgebracht/AEPT -aufgebraucht/AEPT -aufgebraust/AEPT -aufgebrochen/AEPT -aufgebgelt/AEPT -aufgebunden/AEPT -aufgedampft/AEPT -aufgedeckt/AEPT -aufgedonnert/AEPT -aufgedrngt/AEPT -aufgedreht/AEPT -aufgedrckt/AEPT -aufgedruckt/AEPT -aufgedunsen/AEPT -aufgefchert/AEPT -aufgefahren/AEPT -aufgefallen/AEPT -aufgefangen/AEPT -aufgefasst/AEPT -aufgefischt/AEPT -aufgeflammt/AEPT -aufgeflogen/AEPT -aufgefordert/AEPTU -aufgeforstet/AEPT -aufgefressen/AEPT -aufgefrischt/AEPT -aufgefhrt/AEPT -aufgefllt/AEPT -aufgefunden/AEPT -aufgegangen/AEPT -aufgegeben/AEPT -aufgegessen/AEPT -aufgegliedert/AEPT -aufgegossen/AEPT -aufgegriffen/AEPT -aufgehngt/AEPT -aufgehuft/AEPT -aufgehabt/AEPT -aufgehackt/AEPT -aufgehalten/AEPT -aufgeheitert/AEPT -aufgeheizt/AEPT -aufgehellt/AEPT -aufgehen/DIX -aufgehetzt/AEPT -aufgehrt -aufgehoben/AEPT -aufgeholfen/AEPT -aufgeholt/AEPT -aufgehorcht/AEPT -aufgekauft/AEPT -aufgeklrt/AEPTU -aufgeklappt/AEPT -aufgeklebt/AEPT -aufgeknpft/AEPT -aufgekocht/AEPT -aufgekommen/AEPT -aufgekratzt/AEPT -aufgekrempelt/AEPT -aufgekreuzt/AEPT -aufgekriegt -aufgelacht/AEPT -aufgeladen/AEPT -aufgelassen/AEPT -aufgelauert/AEPT -aufgelaufen/AEPT -aufgelebt/AEPT -aufgelegen/AEOPT -aufgelegt/AEPT -aufgelehnt/AEPT -aufgelesen/AEPT -aufgeleuchtet/AEPT -aufgelistet/AEPT -aufgelst/ACEPTU -aufgelockert/ACEPT -aufgelodert/AEPT -aufgemacht/AEPT -aufgemalt/AEPT -aufgembelt/AEPT -aufgemotzt/AEPT -aufgemuntert/AEPT -aufgentigt/AEPT -aufgenommen/AEPT -aufgeopfert/AEPT -aufgepppelt/AEPT -aufgepasst/AEPT -aufgepinselt/AEPT -aufgeplatzt/AEPT -aufgeprallt/AEPT -aufgepresst/AEPT -aufgepumpt/AEPT -aufgeputzt/AEPT -aufgerumt/AEPT -aufgerafft/AEPT -aufgeraut/AEPT -aufgerechnet/AEPT -aufgereckt/AEPT -aufgeregt/ACEPT -aufgereiht/AEPT -aufgereizt/AEPT -aufgerichtet/AEPT -aufgerieben/AEPT -aufgerissen/AEPT -aufgerollt/AEPT -aufgerckt/AEPT -aufgerhrt/AEPT -aufgerstet/AEPT -aufgerttelt/AEPT -aufgerufen/AEPT -aufgerundet/AEPT -aufgesagt/AEPT -aufgesammelt/AEPT -aufgesaugt/AEPT -aufgeschaut -aufgescheucht/AEPT -aufgeschichtet/AEPT -aufgeschlagen/AEPT -aufgeschlitzt/AEPT -aufgeschlossen/AEPT -aufgeschlsselt/AEPT -aufgeschmissen/AEPT -aufgeschnitten/AEPT -aufgeschnrt/AEPT -aufgeschoben/AEPT -aufgeschossen/AEPT -aufgeschraubt/AEPT -aufgeschreckt/AEPT -aufgeschrieben/AEPT -aufgeschrien -aufgeschrft/AEPT -aufgeschttet/AEPT -aufgeschwatzt/AEPT -aufgesehen/AEPT -aufgesessen/AEPT -aufgesetzt/AEPT -aufgesogen/AEPT -aufgespalten/AEPT -aufgespannt/AEPT -aufgespart/AEPT -aufgesperrt/AEPT -aufgespielt/AEPT -aufgespiet/AEPT -aufgesprungen/AEPT -aufgesprt/AEPT -aufgestachelt/AEPT -aufgestanden/AEPT -aufgestapelt/AEPT -aufgestaut/AEPT -aufgesteckt/AEPT -aufgestellt/AEPT -aufgesteppt/AEPT -aufgestiegen/AEPT -aufgestbert/AEPT -aufgestockt/AEPT -aufgestoen/AEPT -aufgestrebt/AEPT -aufgestrichen/AEPT -aufgesttzt/AEPT -aufgesucht/AEPT -aufgetan -aufgetankt/AEPT -aufgetaucht/AEPT -aufgetaut/AEPT -aufgeteilt/AEPT -aufgetischt/AEPT -aufgetragen/AEPT -aufgetrennt/AEPT -aufgetreten/AEPT -aufgetrieben/AEPT -aufgetroffen/AEPT -aufgewrmt/AEPT -aufgewachsen/AEPT -aufgewacht/AEPT -aufgewandt/AEPT -aufgewartet/AEPT -aufgewaschen/AEPT -aufgeweckt/ACEPT -aufgeweicht/AEPT -aufgewendet/AEPT -aufgewertet/AEPT -aufgewickelt/AEPT -aufgewiegelt/AEPT -aufgewiesen/AEPT -aufgewirbelt/AEPT -aufgewischt/AEPT -aufgewogen/AEPT -aufgeworfen/AEPT -aufgewhlt/AEPT -aufgezhlt/AEPT -aufgezumt/AEPT -aufgezehrt/AEPT -aufgezeichnet/AEPT -aufgezeigt/AEPT -aufgezogen/AEPT -aufgezwungen/AEPT -aufgibt/X -aufgieen/DIX -aufging/EPZ -aufgliedern/DIXY -aufglhen/DIXY -aufgreifen/DIX -aufgrund -aufhltst/WX -aufhngen/DIX -aufhufen/DIXY -aufhaben/DI -aufhacken/DIXY -aufhalf/PZ -aufhalten/DI -aufhebbar/AEPTU -aufheben/BDIX -aufheitern/DIXY -aufheizen/DIXY -aufhelfen/DI -aufhellen/DIXY -aufhetzen/DIXY -aufheulen/DIXY -aufhielt/EPZ -aufhren/DIXY -aufhob/PZ -aufholen/DIXY -aufhorchen/DIXY -aufkaufen/DIXY -aufkeimen/DIXY -aufklren/DIXY -aufklrerisch/AEPT -aufklaffen/DIXY -aufklappen/DIXY -aufklaren/DIXY -aufkleben/DIXY -aufknpfen/DIXY -aufkochen/DIXY -aufkommen/DIX -aufkrempeln/DIXY -aufkreuzen/DIXY -aufkriegen/IXY -aufkndigen/DIXY -aufldt/X -auflachen/DIXY -aufladen/BDI -auflagenstark/AEPT -auflandig/AEPT -auflassen/DI -auflauern/DIXY -auflaufen/DI -aufleben/DIXY -auflegen/DIXY -auflehnen/DIXY -auflesen/DI -aufleuchten/DIXY -aufliegen/DIX -aufliee/NZ -auflisten/BDIXY -auflsbar/AEPTU -auflsen/BDIXY -auflockern/DIXY -auflodern/DIXY -auflde/NZ -aufmachen/DIXY -aufmarschieren/DIOXY -aufmerksam/ACEPTU -aufmbeln/DIXY -aufmpfig/AEPT -aufmuntern/DIXY -aufnahm/PZ -aufnahmebereit/AEPT -aufnahmefhig/ACEPT -aufnehmen/DI -aufnimmt/X -aufopfern/DIXY -aufpppeln/DIXY -aufpassen/DIXY -aufpinseln/DIXY -aufpltten/DIXY -aufplatzen/DIXY -aufpolieren/DIOXY -aufprgen/DIXY -aufprallen/DIXY -aufprobieren/DIOXY -aufpumpen/DIXY -aufputzen/DIXY -aufrumen/DIXY -aufraffen/DIXY -aufragen/DIXY -aufrauen/DIXY -aufrechnen/DIXY -aufrecht/AEPT -aufregen/DIXY -aufregend/ACEPT -aufreiben/DIX -aufreibend/ACEPT -aufreihen/DIXY -aufreien/DIX -aufreizen/DIXY -aufrichten/DIXY -aufrichtig/ACEPTU -aufrief/EPZ -aufrollen/DIXY -aufrcken/DIXY -aufrhren/DIXY -aufrhrerisch/AEPT -aufrsten/BDIXY -aufrtteln/DIXY -aufrufen/BDIX -aufrunden/DIXY -aufsssig/ACEPT -aufsagen/DIXY -aufsammeln/DIXY -aufsaugen/DIXY -aufschauen/DIXY -aufscheuchen/DIXY -aufschichten/DIXY -aufschieben/DIX -aufschieen/DIX -aufschlgt/X -aufschlagen/DI -aufschlieen/DIX -aufschlitzen/IXY -aufschlge/NZ -aufschlsseln/IXY -aufschlug/PZp -aufschlussreich/ACEPT -aufschnappen/DIXY -aufschneiden/DIX -aufschnren/DIXY -aufschss/EPZ -aufschoss/PZ -aufschrauben/DIXY -aufschrecken/DIXY -aufschreiben/DIX -aufschreien/DIX -aufschrien/IX -aufschrfen/DIXY -aufschtteln/DIXY -aufschtten/DIXY -aufschwingen/DIX -aufsehen/DI -aufseiten -aufsetzen/DIXY -aufsieht/X -aufsitzen/DIX -aufspalten/DIXY -aufspannen/DIXY -aufsparen/DIXY -aufsperren/DIXY -aufspielen/DIXY -aufspieen/DIXY -aufsplitten/DIXY -aufsprang/PZ -aufspringen/DIX -aufspren/DIXY -aufstndisch/AEPT -aufstacheln/DIXY -aufstampfen/DIXY -aufstand/PZ -aufstapeln/DIXY -aufstauen/DIXY -aufstecken/DIXY -aufstehen/DIX -aufsteigen/DIX -aufstellen/BDIXY -aufstieg/EPZ -aufstbern/DIXY -aufsthnen/DIXY -aufstocken/DIXY -aufstockungsfhig/AEPT -aufstoen/DI -aufstreben/DIXY -aufstreichen/DIX -aufsttzen/DIXY -aufsuchen/DIXY -aufsummieren/DIOXY -auftanken/DIXY -auftat/PZ -auftauchen/DIXY -auftauen/DIXY -aufteilen/BDIXY -auftischen/DIXY -auftrgt/X -auftragen/DI -auftragsgem/AEPT -auftrat/PZ -auftreffen/DI -auftreiben/DIX -auftrennen/DIXY -auftreten/DI -auftrittst/WX -auftrumpfen/DIXY -auftun/IX -aufwndig/ACEPT -aufwrmen/DIXY -aufwrts -aufwachen/DIXY -aufwachsen/DI -aufwallen/DIXY -aufwarten/DIXY -aufwecken/DIXY -aufweichen/DIXY -aufweisen/DIX -aufwenden/DIXY -aufwendig/ACEPT -aufwerfen/DI -aufwerten/DIXY -aufwickeln/DIXY -aufwiegeln/DIXY -aufwiegen/DIX -aufwies/EPZ -aufwirbeln/DIXY -aufwirft/X -aufwischen/DIXY -aufwhlen/DIXY -aufwuchs/PZ -aufzhlen/DIXY -aufzehren/DIXY -aufzeichnen/DIXY -aufzeigen/DIXY -aufziehen/DIX -aufzog/PZ -aufzchten/IXY -aufzuarbeiten/D -aufzubauen/D -aufzubereiten/D -aufzubessern/D -aufzubewahren/D -aufzubieten/D -aufzubinden/D -aufzublasen/D -aufzublicken -aufzublinken -aufzubohren/D -aufzubrechen/D -aufzubringen/D -aufzubrden/D -aufzudecken/D -aufzudrngen -aufzudrehen/D -aufzudrcken/D -aufzuerbauen/D -aufzuerlegen/D -aufzufallen -aufzufangen/D -aufzufassen/D -aufzufinden/D -aufzufordern/D -aufzuforsten/D -aufzufrischen/D -aufzufhren/D -aufzufllen/D -aufzugeben/D -aufzugliedern/D -aufzugreifen/D -aufzuhngen/D -aufzuhufen/D -aufzuhalten/D -aufzuheben/D -aufzuheitern/D -aufzuhelfen/D -aufzuhren -aufzuholen/D -aufzukaufen/D -aufzuklren/D -aufzukommen -aufzulasten -aufzulegen/D -aufzulehnen -aufzulesen/D -aufzulisten/D -aufzulsen/D -aufzulockern/D -aufzunehmen/D -aufzuopfern/D -aufzupolieren/D -aufzuprgen/D -aufzurumen/D -aufzurauen/D -aufzurechnen/D -aufzuregen/D -aufzureien/D -aufzurichten/D -aufzurollen/D -aufzurcken/D -aufzursten/D -aufzurufen/D -aufzusammeln/D -aufzuschichten/D -aufzuschieben/D -aufzuschlagen/D -aufzuschlieen/D -aufzuschlsseln/D -aufzuschnren/D -aufzuschrecken/D -aufzuschreiben/D -aufzusetzen/D -aufzuspalten/D -aufzuspielen/D -aufzuspren/D -aufzustauen/D -aufzustecken/D -aufzustehen -aufzusteigen -aufzustellen/D -aufzustbern/D -aufzustocken/D -aufzusuchen/D -aufzutauchen -aufzuteilen/D -aufzutragen/D -aufzutrennen/D -aufzutreten -aufzutun -aufzuwrmen/D -aufzuwachsen -aufzuwecken/D -aufzuweisen/D -aufzuweiten/D -aufzuwerfen/D -aufzuwiegeln/D -aufzuwiegen/D -aufzuzhlen/D -aufzuzeichnen/D -aufzuzeigen/D -aufzuziehen/D -aufzwang/PZ -aufzwingen/DIX -augenblicklich/AEPT -augenfllig/ACEPT -augenlos/AEPT -augenscheinlich/AEPT -auen -auenpolitisch/AEPT -auer -auerdem -auergewhnlich/ACEPT -auerhalb -auerirdisch/AEPT -auerordentlich/AEPT -auerplanmig/AEPT -auerschulisch/AEPT -auerstand/E -ausarbeiten/DIXY -ausarten/DIXY -ausatmen/DIXY -ausbaden/DIXY -ausbalancieren/DIOXY -ausbaueigen/AEPT -ausbauen/BDIXY -ausbaufhig/ACEPT -ausbaulokal/AEPT -ausbessern/DIXY -ausbeuten/DIXY -ausbeuterisch/AEPT -ausbezahlen/IOXY -ausbilden/DIXY -ausbitten/DIX -ausblasen/DI -ausbleiben/DIX -ausbleichen/DIX -ausblenden/DIXY -ausblieb/EPZ -ausbluten/DIXY -ausbohren/DIXY -ausbooten/DIXY -ausborgen/DIXY -ausbrach/PZ -ausbrannte/NZ -ausbrechen/DI -ausbreiten/DIXY -ausbrennen/DIX -ausbricht/X -ausbringen/DIX -ausbrten/DIXY -ausbrgern/DIXY -ausbrsten/DIXY -ausbuchten/DIXY -ausdachte/N -ausdauernd/ACEPT -ausdehnbar/ACEPT -ausdehnen/BDIXY -ausdenken/BDIX -ausdiskutieren/DIOXY -ausdorren/DIXY -ausdrehen/DIXY -ausdrcken/BDIXY -ausdrcklich/ACEPT -ausdrucken/DIXY -ausdrucksfhig/ACEPT -ausdruckslos/ACEPT -ausdrucksstrker/AEPT -ausdrucksstark/AEPT -ausdrucksvoll/ACEPT -ausdnnen/DIXY -auseinander -auserkoren/AEPT -auserlesen/ACEPT -ausersehen/AEPT -auserwhlt/AEPT -ausfllt/X -ausfahren/BDI -ausfallen/DI -ausfallsicher/ACEPT -ausfechten/DIX -ausfegen/DIXY -ausfeilen/DIXY -ausfertigen/DIXY -ausfiel/EPZ -ausfinden/DIX -ausfindig -ausflicken/DIXY -ausfliegen/DIX -ausflieen/DIX -ausformen/IXY -ausformulieren/DIOXY -ausfre/NZ -ausfragen/DIXY -ausfransen/DIXY -ausfressen/DI -ausfhrbar/AEPTU -ausfhren/BDIXY -ausfhrlich/ACEPT -ausfllen/DIXY -ausgbe/NZ -ausgab/PZ -ausgangsseitig/AEPT -ausgearbeitet/AEPT -ausgeartet/AEPT -ausgeatmet/AEPT -ausgebacken/AEPT -ausgebadet -ausgebaggert/AEPT -ausgebaut/AEPT -ausgeben/DI -ausgebessert/AEPT -ausgebeult/AEPT -ausgebeutet/AEPT -ausgebildet/AEPTU -ausgeblasen/AEPT -ausgebleicht/AEPT -ausgeblendet/AEPT -ausgeblieben/AEPT -ausgeblutet/AEPT -ausgebootet/AEPT -ausgeborgt/AEPT -ausgebrannt/AEPT -ausgebreitet/AEPT -ausgebrochen/AEPT -ausgebrtet/AEPT -ausgebgelt/AEPT -ausgebrgert/AEPT -ausgebrstet/AEPT -ausgebucht/AEPT -ausgebuchten/IOW -ausgebuchtet/AEPTW -ausgedacht/AEPT -ausgedehnt/ACEPT -ausgedient/AEPT -ausgedrrt/AEPT -ausgedorrt/AEPT -ausgedreht/AEPT -ausgedrckt/AEPT -ausgedruckt/AEPT -ausgednstet/AEPT -ausgefahren/AEPT -ausgefallen/ACEPT -ausgefegt/AEPT -ausgefeilt/AEPT -ausgefiltert/AEPT -ausgeflickt/AEPT -ausgeflogen/AEPT -ausgeflossen/AEPT -ausgefochten/AEPT -ausgeforscht/AEPT -ausgefragt/AEPT -ausgefranst/AEPT -ausgefressen/AEPT -ausgefhrt/AEPT -ausgefllt/AEPTU -ausgefuchst/AEPT -ausgegangen/AEPT -ausgegeben/AEPT -ausgeglichen/ACEPTU -ausgegliedert/AEPT -ausgeglitten/AEPT -ausgegoren/AEPTU -ausgegossen/AEPT -ausgegraben/AEPT -ausgehndigt/AEPT -ausgehngt/AEPT -ausgehrtet/AEPT -ausgehalten/AEPT -ausgehandelt/AEPT -ausgeharrt/AEPT -ausgeheckt/AEPT -ausgeheilt/AEPT -ausgehen/DIX -ausgehhlt/AEPT -ausgehoben/AEPT -ausgeholfen/AEPT -ausgeholt/AEPT -ausgehorcht/AEPT -ausgekannt -ausgekehrt/AEPT -ausgeklammert/AEPT -ausgekleidet/AEPT -ausgeklopft/AEPT -ausgeklgelt/AEPT -ausgeklungen/AEPT -ausgeknipst/AEPT -ausgeknobelt/AEPT -ausgekocht/ACEPT -ausgekohlt/AEPT -ausgekommen -ausgekostet/AEPT -ausgekratzt/AEPT -ausgekhlt/AEPT -ausgekundschaftet/AEPT -ausgekuppelt/AEPT -ausgelacht/AEPT -ausgeladen/AEPT -ausgelagert/AEPT -ausgelassen/ACEPT -ausgelastet/AEPT -ausgelaufen/AEPT -ausgelaugt/AEPT -ausgelebt/AEPT -ausgeleert/AEPT -ausgelegt/AEPT -ausgelenkt/AEPT -ausgelesen/AEPT -ausgeleuchtet/AEPT -ausgeliefert/AEPT -ausgeliehen/AEPT -ausgelistet/AEPT -ausgelitten/AEPT -ausgelffelt/AEPT -ausgelscht/AEPT -ausgelst/AEPT -ausgeltet/AEPT -ausgelobt/AEPT -ausgelost/AEPT -ausgelotet/AEPT -ausgelftet/AEPT -ausgelutscht/AEPT -ausgemacht/AEPT -ausgemalt/AEPT -ausgemergelt/AEPT -ausgemerzt/AEPT -ausgemessen/AEPT -ausgemistet/AEPT -ausgemustert/AEPT -ausgenommen/AEPT -ausgenchtert/AEPT -ausgentzt/AEPT -ausgenutzt/AEPT -ausgepackt/AEPT -ausgepeitscht/AEPT -ausgependelt -ausgepfiffen/AEPT -ausgepicht/AEPT -ausgeplaudert/AEPT -ausgeplndert/AEPT -ausgeprgt/ACEPT -ausgepresst/AEPT -ausgepumpt/AEPT -ausgeputzt/AEPT -ausgequetscht/AEPT -ausgeruchert/AEPT -ausgerumt/AEPT -ausgeraubt/AEPT -ausgerechnet/AEPT -ausgeredet/AEPT -ausgeregelt/AEPT -ausgereicht/AEPT -ausgereift/AEPTU -ausgereist/AEPT -ausgereizt/AEPT -ausgerenkt/AEPT -ausgerichtet/AEPT -ausgerissen/AEPT -ausgeritten/AEPT -ausgerollt/AEPT -ausgerottet/AEPT -ausgerckt/AEPT -ausgerstet/AEPT -ausgerufen/AEPT -ausgeruht/AEPT -ausgerutscht/AEPT -ausgesgt/AEPT -ausgest/AEPT -ausgesagt/AEPT -ausgesandt/AEPT -ausgesaugt/AEPT -ausgeschaltet/AEPT -ausgeschenkt/AEPT -ausgeschert/AEPT -ausgeschieden/AEPT -ausgeschildert/AEPT -ausgeschimpft/AEPT -ausgeschlafen/AEPTU -ausgeschlagen/AEPT -ausgeschlossen/AEPT -ausgeschmckt/ACEPT -ausgeschnitten/AEPT -ausgeschpft/AEPT -ausgeschrieben/AEPT -ausgeschritten/AEPT -ausgeschttelt/AEPT -ausgeschttet/AEPT -ausgeschwenkt/AEPT -ausgesehen -ausgesendet/AEPT -ausgesetzt/AEPTU -ausgeshnt/AEPT -ausgesorgt -ausgespht -ausgespannt/AEPT -ausgespart/AEPT -ausgesperrt/AEPT -ausgespielt/AEPT -ausgesprochen/AEPTU -ausgesplt/AEPTU -ausgespuckt/AEPT -ausgestalten/IXY -ausgestanden/AEPT -ausgestanzt/AEPT -ausgestattet/AEPT -ausgestellt/AEPT -ausgestiegen/AEPT -ausgestochen/AEPT -ausgestopft/AEPT -ausgestorben/AEPT -ausgestoen/AEPT -ausgestrahlt/AEPT -ausgestreckt/AEPT -ausgestreut/AEPT -ausgestrichen/AEPT -ausgestrmt/AEPT -ausgesucht/ACEPT -ausgetauscht/AEPT -ausgeteilt/AEPT -ausgetestet/AEPT -ausgetilgt/AEPT -ausgetragen/AEPT -ausgetreten/AEPT -ausgetrieben/AEPT -ausgetrocknet/AEPT -ausgetrunken/AEPT -ausgetftelt/AEPT -ausgebt/AEPT -ausgewhlt/AEPT -ausgewachsen/AEPT -ausgewandert/AEPT -ausgewaschen/AEPT -ausgewechselt/AEPT -ausgeweint -ausgeweitet/AEPT -ausgewertet/AEPTU -ausgewetzt/AEPT -ausgewichen/AEPT -ausgewickelt/AEPT -ausgewiesen/AEPT -ausgewirkt -ausgewischt/AEPT -ausgewogen/AEPT -ausgeworfen/AEPT -ausgewrungen/AEPT -ausgewrfelt/AEPT -ausgezhlt/AEPT -ausgezahlt/AEPT -ausgezeichnet/AEPT -ausgezogen/AEPT -ausgibt/X -ausgiebig/ACEPT -ausgieen/DIX -ausging/EPZ -ausgleichen/DIX -ausgleiten/DIX -ausgliedern/DIXY -ausgrbt/X -ausgraben/DI -ausgreifen/DIX -aushltst/WX -aushndigen/DIXY -aushngen/DIX -aushrten/DIXY -aushalten/DI -aushandeln/DIXY -ausharren/DIXY -aushauchen/DIXY -ausheben/DIX -aushecken/DIXY -ausheilen/DIXY -aushelfen/DI -aushielt/EPZ -aushilfsweise -aushhlen/DIXY -ausholen/DIXY -aushorchen/DIXY -auskam/PZ -auskehren/DIXY -auskennen/DIX -ausklammern/DIXY -ausklappen/BDIXY -auskleiden/DIXY -ausklingen/DIX -ausklinken/DIXY -ausklopfen/DIXY -ausknipsen/DIXY -auskochen/DIXY -auskommen/DIX -auskommentieren/DIOXY -auskosten/DIXY -auskratzen/DIXY -auskhlen/DIXY -auskundschaften/DIXY -auskuppeln/DIXY -auskurieren/DIOXY -ausldt/X -auslndisch/AEPT -ausluft/X -auslachen/DIXY -ausladen/DI -auslagern/DIXY -auslassen/DI -auslaufen/DI -auslauten/DIXY -ausleben/DIXY -ausleeren/DIXY -auslegen/DIXY -ausleihen/DIX -auslesen/BDI -ausleuchten/DIXY -ausliefern/DIXY -auslie/EPZ -ausliest -auslisten/DIXY -auslffeln/DIXY -auslschen/DIXY -auslsen/DIXY -auslten/IXY -ausloben/DIXY -ausloggen/DIXY -auslosen/DIXY -ausloten/DIXY -auslften/DIXY -ausmachen/DIXY -ausmalen/DIXY -ausmerzen/DIXY -ausmessen/DI -ausmisten/DIXY -ausmustern/DIXY -ausnahm/PZ -ausnahmslos/AEPT -ausnahmsweise -ausnehmen/DI -ausnimmt/X -ausntzen/DIXY -ausnutzen/DIXY -auspacken/DIXY -auspeitschen/DIXY -auspfeifen/DIX -auspfiff/EPZ -ausplaudern/BDIXY -ausplndern/DIXY -ausprgen/DIXY -auspressen/DIXY -ausprobieren/DIOXY -auspumpen/IXY -ausputzen/DIXY -ausquetschen/DIXY -ausrumen/DIXY -ausradieren/DIOXY -ausrangieren/DIOXY -ausrauben/DIXY -ausrechnen/DIXY -ausreden/DIXY -ausreichen/DIXY -ausreifen/DIXY -ausreien/DIX -ausreisen/DIXY -ausreiten/DIX -ausrenken/DIXY -ausrichten/DIXY -ausrief/EPZ -ausrollen/DIXY -ausrotten/DIXY -ausrcken/DIXY -ausrsten/BDIXY -ausrufen/DIX -ausruhen/DIXY -ausrutschen/DIXY -aussgen/DIXY -aussh/EPZ -ausstzig/AEPT -aussagefhig/AEPT -aussagekrftig/AEPT -aussagen/DIXY -aussagenlogisch/AEPT -aussah/PZ -aussaugen/DIXY -ausschalten/BDIXY -ausschauen/DIXY -ausscheiden/DIX -ausscheren/DIXY -ausschied/EPZ -ausschimpfen/DIXY -ausschlachten/BDIXY -ausschlafen/DI -ausschlagen/DI -ausschlaggebend/ACEPT -ausschlieen/DIX -ausschlielich/AEPT -ausschmcken/DIXY -ausschneiden/DIX -ausschnittsweise -ausschpfen/IXY -ausschreiben/DIX -ausschreiten/DIX -ausschtteln/DIXY -ausschtten/DIXY -ausschweifen/DIXY -ausschweigen/DIX -ausschwenken/DIXY -ausschwingen/IX -aussehen/DI -aussenden/DIXY -aussetzen/DIXY -aussichtslos/ACEPT -aussichtsreich/ACEPT -aussichtsvoll/ACEPT -aussiedeln/BDIXY -aussieht/X -ausshnen/DIXY -aussondern/DIXY -aussortieren/DIOXY -ausspannen/DIXY -aussparen/DIXY -ausspeien/DIX -aussperren/DIXY -ausspielen/DIXY -ausspionieren/DIOXY -aussprach/PZ -aussprechen/DI -ausspricht/X -aussplen/DIXY -ausspucken/DIXY -ausstaffieren/DIOXY -ausstanzen/DIXY -ausstatten/DIXY -ausstechen/DI -ausstehen/DIX -aussteigen/DIX -ausstellen/DIXY -aussterben/DI -ausstie/EPZ -ausstopfen/DIXY -ausstoen/DI -ausstrahlen/DIXY -ausstrecken/DIXY -ausstreichen/DIX -ausstreuen/DIXY -ausstrmen/DIXY -aussuchen/DIXY -austauschen/BDIXY -austeilen/DIXY -austilgen/DIXY -austoben/DIXY -austragen/DI -australisch/AEPT -austrampeln/DIXY -austrat/PZ -austreiben/DIX -austreten/DI -austrinken/DIX -austrocknen/DIXY -austfteln/DIXY -ausben/DIXY -ausufern/DIXY -ausverkaufen/DIXY -auswhlen/BDIXY -auswrtig/AEPT -auswrts -auswscht -auswandern/DIXY -auswarf/PZ -auswaschen/BI -auswechseln/BDIXY -ausweichen/DIX -ausweinen/DIXY -ausweisen/DIX -ausweislich/AEPT -ausweiten/DIXY -auswendig -auswerfen/DI -auswerten/DIXY -auswich/EPZ -auswirft/X -auswirken/DIXY -auswischen/DIXY -auswrfeln/DIXY -auszahlen/BDIXY -auszeichnen/DIXY -ausziehen/BIX -auszog/PZ -auszuarbeiten/D -auszuarten -auszubauen/D -auszubessern/D -auszubeuten/D -auszubilden/D -auszublenden/D -auszubrechen/D -auszubreiten/D -auszudehnen/D -auszudenken/D -auszudrcken/D -auszudrucken/D -auszufahren/D -auszufragen/D -auszufhren/D -auszufllen/D -auszugeben/D -auszugehen -auszugieen/D -auszugleichen/D -auszugsweise/ANRS -auszuhndigen/D -auszuhngen/D -auszuhalten/D -auszuhandeln/D -auszuhauchen/D -auszuklammern/D -auszukommentieren -auszukotzen/D -auszukundschaften/D -auszulagern/D -auszulassen/D -auszulegen/D -auszuleihen/D -auszulesen/D -auszuliefern/D -auszulschen/D -auszulsen/D -auszuloggen -auszuloten/D -auszumachen/D -auszumalen/D -auszumerzen/D -auszumessen/D -auszunutzen/D -auszupacken/D -auszuplndern/D -auszupolieren/D -auszuprobieren/D -auszurumen/D -auszureien/D -auszurichten/D -auszurotten/D -auszursten/D -auszurufen/D -auszuruhen -auszuschalten/D -auszuschlachten/D -auszuschlagen/D -auszuschlieen/D -auszuschpfen/D -auszusehen -auszusenden/D -auszusetzen/D -auszusondern/D -auszusphen/D -auszuspionieren/D -auszusprechen/D -auszuspucken/D -auszustatten/D -auszustellen/D -auszustrecken/D -auszusuchen/D -auszutauschen/D -auszuteilen/D -auszutilgen/D -auszutragen/D -auszutreiben/D -auszutfteln/D -auszuben/D -auszuwhlen/D -auszuwechseln/D -auszuweichen -auszuweiten/D -auszuwerten/D -auszuzahlen/D -auszuzeichnen/D -auszuziehen/D -autark/AEPT -authentifizieren/DIOWXY -authentisch/AEPT -authentisieren/DIOWXY -autogen/AEPT -automatenfreundlich/AEPT -automatisch/AEPT -automatisieren/BDIOXY -autonom/AEPT -autorisieren/IOXY -autoritr/AEPT -autoritativ/AEPT -avancieren/DIOXY -avantgardistisch/AEPT -avisieren/DIOXY -axiomatisch/AEPT -azurblau/AEPT -azyklisch/AEPT -bckt/X -bndigen/DIXY -brenstark/AEPT -brtig/AEPT -buerlich/AEPT -bumt/EPX -bumten/IWX -babylonisch/AEPT -backen/DGIWXY -baden/DIXY -badisch/AEPT -bagatellisieren/DIOXY -baggern/DIXY -bahnbrechend/AEPT -bahneigen/AEPT -bahnen/IWXY -bahnt/EGPWX -bakteriell/AEPT -balancieren/DIXY -bald -baldig/AEPT -baldmglichst -balgen/DIXY -ballen/DIXY -ballern/DIXY -ballettmig/AEPT -ballistisch/AEPT -balsamieren/DIOWXY -baltisch/AEPT -banal/AEPT -bananenrepublikanisch/AEPT -band/PVZ -bandagieren/DIOXY -bang/AEPTZ -bangen/DIWXY -bangt/EGPWX -bankbesttigt/AEPT -bankfhig/AEPT -bankintern/AEPT -bankmig/AEPT -bankrott/AEPT -banktechnisch/AEPT -bankblich/AEPT -bannen/DIVXY -bannt/EGPVX -bannte/GNVZ -bannten/GIVWX -bar/AEGPTU -barbarisch/AEPT -baren/GUW -barfig/AEPT -barg/PVZ -bargeldlos/AEPT -barhuptig/AEPT -barmherzig/AEPTU -barsch/ACEPT -barst/GPWZ -basal/AEPT -basieren/DIOXY -basisch/AEPT -basteln/DIXY -bat/PVZ -batteriebetrieben/AEPT -batteriegepuffert/AEPT -bauen/DIVXY -bauernschlau/AEPT -baufllig/AEPT -baugleich/AEPT -baulich/AEPT -baumartig/AEPT -baumeln/DIXY -baumstark/AEPT -baumwollen/AEPT -baurechtlich/AEPT -baureif/AEPT -bauschen/DIXY -bauschig/AEPT -baut/EGPVX -baute/GNVZ -bautechnisch/AEPT -bauten/GIVWX -bayerisch/AEPT -bayrisch/AEPT -bengstigen/DIOXY -beugen/DIOXY -beabsichtigen/DIOXY -beachten/DIOXY -beachtenswert/ACEPT -beachtlich/ACEPT -beamtenrechtlich/AEPT -beanspruchen/BDIOXY -beanstanden/BDIOXY -beantragen/DIOXY -beantworten/DIOXY -bearbeiten/DIOXY -beargwhnen/DIOXY -beatmen/DIOXY -beaufschlagen/DIOXY -beaufsichtigen/DIOXY -beauftragen/DIOXY -bebauen/BDIOXY -beben/DIXY -bebildern/IOWXY -bebt/EGPX -bechern/DIXY -bedchtig/AEPT -bedacht/ACEPTU -bedachte/ACNRSZ -bedachtsam/AEPT -bedampfen/BDIOWXY -bedanken/DIXY -bedarfsgerecht/ACEPT -bedarfsorientiert/AEPT -bedarfst/W -bedauerlich/AEPT -bedauerlicherweise -bedauern/DIOXY -bedauernswert/ACEPT -bedecken/DIOXY -bedenken/DIX -bedenkenlos/AEPT -bedenklich/ACEPTU -bedeuten/DIXY -bedeutend/ACEPTU -bedeutsam/ACEPT -bedeutungslos/ACEPT -bedeutungsvoll/ACEPT -bedienen/BDIOWXY -bedienerfreundlich/AEPT -bedienungstechnisch/AEPT -bedingen/DIOXY -bedingungslos/ACEPT -bedrngen/DIOXY -bedrohen/DIOXY -bedrohlich/ACEPT -bedrcken/DIOXY -bedruckbar/AEPTU -bedrucken/BDIOXY -bedrfen/DX -bedrfnislos/ACEPT -bedrftig/ACEPT -bedurften/IWX -beehren/DIOXY -beeilen/DIXY -beeindrucken/DIOXY -beeinflussbar/AEPTU -beeinflussen/BDIOXY -beeinflusst/AEPTU -beeintrchtigen/DIOXY -beenden/DIOXY -beendigen/DIOXY -beengen/DIOWXY -beerdigen/DIOXY -befhigen/DIOXY -befhrt/X -befllt/X -befnde/NZ -befahl/PZ -befahren/ABDEIPT -befallen/AEPT -befand/PZ -befangen/AEPTU -befassen/DIOXY -befehlen/DI -befehligen/DIXY -befehlshaberisch/AEPT -befestigen/DIOXY -befeuchten/DIOXY -befiehlt/X -befielt/PZ -befinden/DIX -befindlich/AEPT -beflecken/DIOXY -beflissen/AELPT -beflgeln/DIOXY -befrdern/DIOXY -befohlen/AEPT -befolgen/DIOXY -befrackt/AEPT -befragen/DIOXY -befreien/DIOXY -befremden/DIOXY -befremdlich/AEPT -befreunden/DIOXY -befrieden/DIOXY -befriedigen/DIOXY -befriedigend/ACEPTU -befristen/DIOXY -befruchten/DIOXY -befhlen/DIXY -befrchten/DIOXY -befrworten/DIOXY -befugt/AEPTU -befuhr/PZ -befunden/AEPT -begaben/OWX -begabt/ACEPTWX -begabte/ACNRSU -begackert/AEPT -begangen/AEPT -begann/PZ -begatten/DIOXY -begeben/DI -begegnen/DIXY -begehbar/AEPTU -begehen/BDIX -begehren/DIOXY -begehrenswert/ACEPT -begehrlich/ACEPT -begehrt/ACEPTX -begehrte/ACNRSZ -begeistern/DIOXY -begibt/WX -begierig/AEPT -begieen/DIX -beging/EPZ -beginnen/DIWX -beglaubigen/DIOXY -begleichen/DIX -begleiten/DIOXY -beglichen/AEPTWX -beglcken/DIOXY -beglckwnschen/DIOXY -begnadet/AEPT -begnadigen/DIOXY -begngen/DIOXY -begonnen/AEPT -begossen/AEPTWX -begrbt/X -begraben/AEIPT -begradigt/AEPT -begreifen/BDIX -begreiflich/ACEPTU -begreiflicherweise -begrenzen/DIOXY -begriff/LP -begriffen/AEPTWX -begriffsstutzig/AEPT -begrnden/BDIOXY -begren/DIOWXY -begrenswert/ACEPT -begrub/PZ -begnstigen/DIOXY -begtert/ACEPT -begtigen/DIOXY -begutachten/BDIOXY -behbig/AEPT -behltst/WX -behnde/ANRS -behngt/AEPT -behaart/AEPT -behaftet/AEPT -behagen/DIXY -behaglich/ACEPTU -behalf/PZ -behalten/ADEIPT -behandeln/BDIOXY -behandschuht/AEPT -behangen/AEPT -beharren/DIXY -beharrlich/AEPT -behauen/ADEIOPTXY -behaupten/DIOXY -behausen/DIXY -behebbar/AEPTU -beheben/BDIX -beheimatet/AEPT -beheizen/BDIOXY -behelfen/DI -behelfsmig/AEPT -behelligen/DIOXY -beherbergen/DIOXY -beherrschen/BDIOXY -beherzigen/DIOXY -beherzt/AEPT -behexen/DIOXY -behielt/EPZ -behilflich/AEPT -behilft/X -behindern/DIOXY -behindertengerecht/AEPT -behrdenintern/AEPT -behrdlich/AEPT -behoben/AEPTWX -beholfen/U -behorchen/DIOXY -behten/DIOXY -behutsam/ACEPT -bei -beibehltst/WX -beibehalten/ADEIPT -beibehielt/PZ -beibringen/DIX -beichten/DIXY -beide/ANRS -beiderlei -beiderseitig/AEPT -beiderseits -beidseitig/AEPT -beieinander -beifllig/AEPT -beifolgen/DIXY -beifgen/DIXY -beige -beigeben/DI -beigebracht/AEPT -beigefarben/AEPT -beigefgt/AEPT -beigegeben/AEPT -beigelegen/AEOPT -beigelegt/AEPT -beigemengt/AEPT -beigemessen/AEPT -beigemischt/AEPT -beigeordnet/AEPT -beigepackt/AEPT -beigepflichtet/AEPT -beigesetzt/AEPT -beigesprungen/AEPT -beigestanden/AEPT -beigestellt/AEPT -beigesteuert/AEPT -beigetragen/AEPT -beigetreten/AEPT -beigewohnt -beilufig/AEPT -beilegen/DIXY -beileibe -beiliegen/DIX -beim -beimengen/DIXY -beimessen/DI -beimischen/DIXY -beimisst -beinah/E -beinhalten/DIOXY -beinhart/AEPT -beipacken/DIXY -beipflichten/DIXY -beirren/DIXY -beien/DIVX -beisammen -beiseite -beisetzen/DIXY -beispielgebend/AEPT -beispielhaft/ACEPT -beispiellos/ACEPT -beispielshalber -beispielsweise -beispringen/DI -beistand/PZ -beistehen/DIX -beistellen/DIXY -beisteuern/DIXY -beitrgt/X -beitrte/NZ -beitragen/DI -beitragsfinanziert/AEPT -beitragsfrei/AEPT -beitragspflichtig/AEPT -beitrat/PZ -beitreiben/BDIX -beitreten/DI -beitrittst/WX -beitrgen/IX -beitrug/PZp -beiwohnen/DIXY -beizeiten -beizubehalten/D -beizubringen/D -beizufgen/D -beizukommen/D -beizumessen/D -beizumischen/D -beizupacken/D -beizustehen -beizustellen/D -beizutragen/D -beizutreten -beizuwohnen/D -bejahen/DIOXY -bejahrt/AEPT -bejubeln/DIOXY -bekmen/IX -bekmpfen/DIOXY -bekam/PZ -bekannt/ACELPTU -bekannte/ACNRSZ -bekanntermaen -bekehren/DIOXY -bekennen/DIWX -beklagen/DIOXY -beklagenswert/AEPT -beklatschen/IOXY -beklauen/DIOXY -bekleben/DIOXY -beklecksen/DIOXY -bekleiden/DIOXY -beklemmen/DIX -beklommen/AEPT -beknackt/AEPT -bekmmlich/ACEPT -bekommen/DIX -bekrftigen/DIOXY -bekrnzt/AEPT -bekriegen/DIOXY -bekritteln/DIOXY -bekmmern/DIOXY -bekunden/DIOXY -belcheln/DIOXY -beldt/X -belmmert/AEPT -belsst -belstigen/DIOXY -beluft/X -belabern/DIOXY -beladen/ADEIPT -belagern/DIOXY -belanglos/ACEPT -belangvoll/AEPT -belassen/I -belasten/BDIOXY -belastungsfrei/AEPT -belaubt/AEPT -belauern/DIOXY -belaufen/DI -belauschen/DIOXY -beleben/DIOXY -belegen/BDIOXY -belehren/DIOXY -belehrend/ACEPT -beleibt/AEPT -beleidigen/DIOXY -beleihen/BDIX -beleihungsfhig/ACEPT -belesen/AEPT -beleuchten/DIOXY -belgisch/AEPT -belichten/DIOXY -belieben/IOXY -beliebig/AEPT -beliebt/ACEPTX -beliebte/ACNRSZ -belief/P -beliefern/DIOXY -beliegen/DIX -beliehen/AEPTWX -belie/EPZ -bellen/DIXY -belletristisch/AEPT -bellt/EGPX -belobigt/AEPT -belogen/AEPTWX -belohnen/DIOWXY -belgen/DIX -belud/PZ -belustigen/DIOXY -bemchtigen/DIOXY -bemkelt/X -bemngeln/DIOXY -bemalen/DIOXY -bemannt/AEPTU -bema/PZ -bemerkbar/ACEPTU -bemerken/BDIOXY -bemerkenswert/ACEPT -bemerkenswerterweise -bemessen/ADEIPT -bemisst -bemitleiden/DIOXY -bemitleidenswert/ACEPT -bemittelt/AEPTU -bemhen/DIOXY -bemigen/DIXY -bemustern/DIOWXY -bemuttern/DIOXY -benachbart/AEPT -benachrichtigen/DIOXY -benachteiligen/DIOXY -benahm/PZ -benannt/AEPTU -benannte/ANRSZ -benebeln/DIOXY -benehmen/DI -beneiden/DIOXY -beneidenswert/ACEPT -benennen/DIWX -benetzen/DIOXY -bengalisch/AEPT -benimmt/X -bentigen/DIOXY -benommen/AEPT -benoten/DIOXY -bentzen/BDIOXY -benutzbar/AEPTU -benutzen/BDIOXY -benutzerdefiniert/AEPT -benutzereigen/AEPT -benutzerfreundlich/AEPT -benutzerorientiert/AEPT -beobachten/BDIOXY -beordert/AEPT -bepacken/DIOXY -bepflanzen/DIOXY -bequatschen/DIXY -bequem/ACEPTZ -bequemen/DIWXY -bertst/WX -berappen/DIOXY -beraten/ADEIPT -beratschlagen/DIOXY -berauben/DIOXY -berauschen/DIOXY -berechenbar/AEPTU -berechnen/DIOXY -berechtigen/DIOXY -berechtigterweise -bereden/DIOXY -beredt/ACEPT -bereichern/DIOXY -bereichsbergreifend/AEPT -bereinigen/DIOXY -bereisen/DIOXY -bereit/EPSX -bereiten/DIOWXY -bereitgehalten/AEPT -bereitgelegt/AEPT -bereitgestellt/AEPT -bereithltst/WX -bereithalten/DI -bereithielt/PZ -bereitliegen/DIX -bereitstand/PZ -bereitstehen/DIX -bereitstellen/DIXY -bereitstnde/NZ -bereitwillig/ACEPT -bereitzufinden -bereitzuhalten/D -bereitzustellen/D -bereuen/DIOXY -bergab -bergan -bergauf -bergbaugerecht/AEPT -bergbaulich/AEPT -bergbauspezifisch/AEPT -bergbautauglich/AEPT -bergbautechnisch/AEPT -bergen/DIV -bergeweise -bergig/AEPT -bergisch/AEPT -bergwerksgerecht/AEPT -berichten/DIOXY -berichtigen/DIOXY -berichtigungsfhig/AEPT -berief/EPZ -beriefe/NZ -berieseln/DIOXY -beriet/PZ -beritten/AEPT -berlinisch/AEPT -bersten/DIX -berchtigste/ANRS -berchtigt/ACEPT -bercksichtigen/DIOXY -berhmt/ACEPT -berhren/DIOXY -berufen/ADEIPTUX -beruflich/AEPT -berufsbegleitend/AEPT -berufsbezogen/AEPT -berufsbildend/AEPT -berufserfahren/AEPT -berufsfremd/AEPT -berufslos/AEPT -berufsnotwendig/AEPT -berufsttig/AEPT -berufstechnisch/AEPT -beruhen/DIXY -beruhigen/DIOXY -bes -bes. -besnftigen/DIOXY -bese/NZ -besuft/X -besagen/DIOXY -besah/PZ -besaiten/DIOXY -besann/PZ -besa/PZ -besatzungsfremd/AEPT -besaufen/DI -beschdigen/DIOXY -beschftigen/DIOXY -beschftigungslos/AEPT -beschmen/DIOXY -beschaffen/ABDEIOPTWXY -beschallen/DIOXY -beschalten/DIOXY -beschatten/DIOXY -beschauen/DIOXY -beschaulich/ACEPT -bescheiden/ACDEIPTUX -bescheinigen/DIOXY -bescheint/X -beschenken/DIOXY -bescheren/DIOXY -bescheuert/AEPT -beschichten/IOXY -beschieden/AEPTWX -beschieen/DIX -beschimpfen/DIOXY -beschirmt/AEPT -beschissen/AEPT -beschlgt/X -beschlagen/ADEIPT -beschlagnahmen/DIOXY -beschleichen/DIX -beschleunigen/DIOXY -beschlieen/DIX -beschlossen/AEPTWX -beschlug/PZ -beschlussfhig/AEPT -beschlussunfhig/AEPT -beschmieren/DIOXY -beschmutzen/DIOXY -beschneiden/DIX -beschnitten/AEPTWX -beschnigen/DIOXY -beschsse/NZ -beschossen/AEOPTWX -beschosst/AEPTW -beschrnken/DIOXY -beschrnkt/ACEPTX -beschrnkte/ACNRSZ -beschrankt/AEPTU -beschreiben/BDIX -beschreiten/DIX -beschriebe/NZ -beschrieben/AEIPTWX -beschriebene/ANRSU -beschriften/BDIOXY -beschritten/AEPTX -beschtzen/IOXY -beschuldigt/AEPT -beschwerdefrei/AEPT -beschweren/DIOXY -beschwerlich/ACEPT -beschwichtigen/DIOXY -beschwindeln/IOXY -beschwingt/AEPT -beschwipsen/DIOXY -beschwren/DIX -beschworen/AEPTWX -beseelen/DIOXY -besehen/ADEIPTU -beseitigen/DIOXY -besessen/AEPT -besetzen/DIOXY -besichtigen/DIOXY -besiedeln/DIOXY -besiegeln/DIOWXY -besiegen/DIOXY -besingen/DIX -besinnen/DIWX -besinnlich/ACEPTU -besinnungslos/AEPT -besitzanzeigend/AEPT -besitzen/DIX -besitzlos/AEPT -besoffen/AEPTWX -besohlen/DIOXY -besolden/DIOXY -besoldungsmig/AEPT -besondere/ANRS -besonders -besonnen/ACDEIPTUXY -besorgen/DIOXY -besorgniserregend/ACEPT -besorgt/ACEPTX -besorgte/ACNRSZ -bespannen/DIOXY -bespicken/DIOXY -bespielen/BDIOXY -besprach/PZ -besprechen/DI -besprengen/DIOXY -bespricht/X -bespritzen/DIOXY -besprochen/AEPT -besprhen/IOXY -bespucken/DIOXY -besser/AENPTZ -bessern/DIWXY -besserte/GNVZ -besserten/GIVWX -bestndig/ACEPTU -bestrken/DIOXY -besttigen/DIOXY -bestach/PZ -bestahl/PZ -bestanden/AEPTWX -bestatten/DIOXY -bestaunen/DIOWXY -bestausgebaut/AEPT -bestbesucht/AEPT -bestbezeugt/AEPT -beste/ANRS -bestechen/DI -bestechlich/ACEPTU -bestehen/DIX -bestehlen/DI -besteigen/DIX -besteingefhrt/AEPT -besteingerichtet/AEPT -bestellen/BDIOXY -bestempfohlen/AEPT -besten/S -bestenfalls -besterhalten/AEPT -besteuern/BDIOXY -bestgefhrt/AEPT -bestgehtet/AEPT -bestgelegen/AEPT -bestialisch/AEPT -besticht/X -besticken/IOXY -bestiegen/AEPTWX -bestimmen/BDIOXY -bestmglich/AEPT -bestochen/AEPT -bestohlen/AEPT -bestorganisiert/AEPT -bestorientiert/AEPT -bestrafen/DIOXY -bestrahlen/DIOXY -bestreben/DIOXY -bestreichen/DIX -bestreiten/BDIX -bestreuen/DIOXY -bestrichen/AEPTWX -bestricken/DIOXY -bestritten/AEPTUWX -bestcken/BDIOXY -bestnde/NZ -bestrmen/DIOXY -bestrzen/DIOXY -besuchen/DIOXY -besudeln/DIOXY -besungen/AEPT -beta -bettigen/DIOXY -betuben/DIOXY -betagt/ACEPT -betanken/IOXY -betasten/DIOXY -betatschen/IOXY -beteiligen/DIOXY -beten/DGIXY -betet/EGPWX -beteuern/DIOXY -betiteln/DIOXY -betren/DIOXY -betonen/DIOWXY -betonieren/DIOXY -betr -betr. -betrchtlich/AEPTU -betrgt/X -betrachten/DIOXY -betraf/PZ -betragen/DI -betragsmig/AEPT -betrank/PZ -betrat/PZ -betrauen/IOXY -betrauern/DIOXY -betreffen/DI -betreffs -betreiben/BDIX -betreten/ABDEIPT -betreuen/DIOXY -betrieb/LPZ -betrieben/AEPTWX -betriebsam/ACEPT -betriebsbedingt/AEPT -betriebsbereit/AEPT -betriebsextern/AEPT -betriebsfhig/AEPT -betriebsintern/AEPT -betriebsnah/AEPT -betriebssicher/ACEPT -betriebswirtschaftlich/AEPT -betrifft/X -betrinken/DIX -betrittst/WX -betroffen/ACEPT -betrogen/AEPTWX -betrben/DIOXY -betrblich/ACEPT -betrgen/DIX -betrgerisch/AEPT -betrug/PZp -betrunken/AEPT -bettelarm/AEPT -betteln/DIXY -bettelt/EGPX -betten/DIXY -bettlgerig/AEPT -bettnssen/D -betucht/AEPT -betupfen/DIOXY -beugen/DIVXY -beugt/EGPVX -beugte/GNVZ -beugten/GIVWX -beunruhigen/DIOXY -beurkunden/DIOXY -beurlauben/DIOXY -beurteilen/BDIOXY -beuteln/DIXY -beuten/DIXY -bevlkern/DIOXY -bevlkerungsreich/ACEPT -bevollmchtigen/DIOXY -bevor -bevormunden/DIOXY -bevorraten/DIXY -bevorschussen/IOXY -bevorstand/PZ -bevorstehen/DIX -bevorzugen/DIOXY -bewhren/DIOXY -bewltigen/DIOXY -bewssern/DIOXY -bewachen/DIOXY -bewachsen/AEPT -bewaffnen/DIOXY -bewahren/DIOXY -bewahrheiten/IXY -bewaldet/AEPTU -bewandert/AEPTU -bewarb/PZ -bewarf/PZ -bewegen/DIOXY -beweglich/ACEPTU -bewegungsfhig/AEPT -bewegungslos/AEPT -bewegungsunfhig/AEPT -beweihruchern/DIXY -beweinen/DIOWXY -beweisen/BDIX -beweiskrftig/ACEPT -beweispflichtig/AEPT -bewenden -bewerben/DI -bewerkstelligen/DIXY -bewerten/DIOXY -bewiesen/AEPTUWX -bewiesenermaen -bewilligen/DIOXY -bewirbt/X -bewirken/DIOXY -bewirten/DIOXY -bewirtschaften/DIOXY -bewlkt/AEPT -bewog/PZ -bewohnbar/AEPTU -bewohnen/BDIOXY -beworben/AEPT -bewundern/DIOXY -bewundernswert/AEPT -bewundernswrdig/AEPT -bewunderungswrdig/ACEPT -bewusst/AEPTU -bewusstlos/AEPT -bez -bez. -bezahlen/BDIOXY -bezaubern/DIOXY -bezeichnen/DIOXY -bezeichnenderweise -bezeugen/DIOXY -bezichtigen/DIOXY -beziehen/BDIX -beziehungslos/AEPT -beziehungsweise -beziffern/DIOXY -bezogen/AEPTWX -bezglich/AEPT -bezugsfrei/AEPT -bezuschussen/BIOXY -bezwang/PZ -bezwecken/DIOXY -bezweifeln/DIOXY -bezwingen/DIX -bezwungen/AEPT -bibelfest/AEPT -biblisch/AEPT -bidirektional/AEPT -bieder/AEPT -biegen/BDIVWX -biegsam/AEPTU -biete/GNVZ -bieten/DGIVWX -bietend/AEGPTV -bietende/AGNRSV -bifilar -bijektiv/AEPT -bilanzieren/DIOXY -bilanzmig/AEPT -bilanzsicher/AEPT -bilateral/AEPT -bilden/DIXY -bilderreich/AEPT -bilderstrmerisch/AEPT -bildfhig/AEPT -bildhaft/AEPT -bildhbsch/AEPT -bildhbscheste/ANRS -bildlich/AEPT -bildorientiert/AEPT -bildschirmspezifisch/AEPT -bildschn/AEPT -bildungsfhig/AEPT -bildungshungrig/AEPT -bildungspolitisch/AEPT -bilingual/AEPT -billig/ACEPTZ -billigen/DIWXY -billigerweise -billigte/GNVZ -billigten/GIVWX -bimmeln/DIXY -bin/F -binr/AEPT -binden/DIVWX -binnenlndisch/AEPT -binomisch/AEPT -biochemisch/AEPT -biogen/AEPT -biografisch/AEPT -biographisch/AEPT -biologisch/AEPT -biomedizinisch/AEPT -biotechnisch/AEPT -biotechnologisch/AEPT -birgt/VWX -birnenfrmig/AEPT -bis/V -bischflich/AEPT -bisher -bisherig/AEPT -bislang -biss/PVZ -bisschen -bissen/GVWX -bissig/AEPT -bist -bisweilen -bitten/DIVX -bitter/ACELPT -bitterarm/AEPT -bitterbs/AEPT -bitterkalt/AEPT -bitteschn -bitweise/ANRS -bizarr/AEPT -bizonal -blhen/DIXY -blsser/AEPT -blsslich/AEPT -blst -blttern/DIWXY -blttert/EGPWX -blulich/AEPT -blamabel/AC -blamieren/DIOXY -blanchieren/DIOXY -blank/AEPT -blankgefegt/AEPT -blankgeputzt/AEPT -blanko -blasen/DGIV -blasenfrei/AEPT -blasiert/AEPT -blasphemisch/AEPT -blass/ACEPT -blau/AEPT -blauugig/AEPT -blaugelb/AEPT -blaugemacht -blaugrau/AEPT -blaugrn/AEPT -blaumetallic -blechen/DIXY -blechern/AEPT -bleiben/DIVWX -bleich/AEPT -bleichen/DIWXY -bleiern/AEPT -bleifarben/AEPT -bleifrei/AEPT -bleihaltig/AEPT -blenden/DIVXY -blendet/EGPVWX -blendete/GNVZ -blendeten/GIVWX -blich/PZ -blicken/DIWXY -blickfangend/AEPT -blicklos -blickt/EGPWX -blieb/EPVZ -blieben/GIVWX -blies/P -blind/AEPT -blindwtig/AEPT -blinken/DIXY -blinzeln/DIXY -blitzartig/AEPT -blitzblank/AEPT -blitzen/DIXY -blitzschnell/AEPT -bld/ACEPT -bldeln/DIXY -bldsinnig/AEPT -blken/DIXY -blocken/BDIWXY -blockfrei/AEPT -blockieren/DIOXY -blond/AEPT -blo/AEPT -blogelegt/AEPT -blogestellt/AEPT -blolegen/DIXY -blostellen/DIXY -blozulegen/D -blhen/DIVXY -blht/EGPVX -bltenberst/AEPT -bltenwei/AEPT -bluffen/DIXY -blumig/ACEPT -blutarm/AEPT -blutbesudelt/AEPT -blutdurstig/AEPT -bluten/DIVXY -blutig/ACEPTU -blutjung/AEPT -blutrot/AEPT -blutrnstig/ACEPT -blutstillend/AEPT -blutunterlaufen/AEPT -blutverschmiert/AEPT -bhmisch/AEPT -big/AEPT -bllern/DIXY -brsenfhig/AEPT -brsengngig/AEPT -brsennotiert/AEPT -brsentechnisch/AEPT -bs/ACEPT -bsartig/AEPT -bswillig/ACEPT -bocken/IXY -bockig/AEPT -bodenlos/AEPT -bodennah/ACEPT -bodenstndig/AEPT -bog/PVZ -bogen/GVWX -bogenfrmig/AEPT -bohnern/DIXY -bohren/DIVXY -bohrsch/AEPT -bohrt/EGPVX -bohrte/GNVZ -bohrten/GIVWX -bolivianisch/AEPT -bolschewistisch/AEPT -bombardieren/DIOXY -bombastisch/AEPT -bombenfest/AEPT -bombengeschdigt/AEPT -bombig/AEPT -bonittsfrdernd/AEPT -boolesch/AEPT -boomen/DIXY -booten/DIXY -bootet/EGPWX -bootfhig/AEPT -bordeigen/AEPT -borgen/DGIXY -borniert/AEPT -borstig/AEPT -boshaft/ACEPT -bosnisch/AEPT -bot/GPVZ -botanisch/AEPT -boten/GVWX -boxen/DIXY -boxt/EGP -boykottieren/DIOXY -brchte/NZ -brtst/WX -bruchten/X -brunen/DIWX -brunlich/AEPT -brach/PZ -brachen/WXY -brachial/AEPT -brachliegen/DIX -brachte/GNVZ -brachten/GIVWX -branchenfremd/AEPT -branchenintern/AEPT -branchenkundig/AEPT -branchenspezifisch/AEPT -branchenblich/AEPT -branden/DIXY -brandenburgisch/AEPT -brandig/AEPT -brandneu/AEPT -brandschatzen/DIXY -brannte/GNVZ -brannten/GIVX -brasilianisch/AEPT -braten/DGIW -brauchbar/ACEPTU -brauchen/BDGIVXY -brauen/DIXY -braun/AEIPTX -braunschwarz/AEPT -brausen/DIXY -brav/AEPT -bravours/AEPT -bravurs/AEPT -brechen/DIV -brechungsartig/AEPT -breiig/AEPT -breit/ACEPT -breitangelegt/ACEPT -breitbandig/AEPT -breiten/BDIWXY -breitet/EGPVWX -breitgeschlagen/AEPT -breitgetratscht/AEPT -breitgetreten/AEPT -breitrandig/AEPT -breitschlagen/DI -breitschulterig/AEPT -breitspurig/AEPT -breittreten/DI -breitzutreten/D -bremsen/BDIXY -brennen/BDIVX -brennend/ACEPT -brenzlig/AEPT -bretonisch/AEPT -bricht/VWX -brieflich/AEPT -briet/PZ -brillant/ACEPT -bringen/DIVWX -brisant/AEPT -britisch/AEPT -brckeln/DIXY -brcklig/AEPT -brodeln/DIXY -bromidfrei/AEPT -bronzefarben/AEPT -bronzen/AEPT -broschieren/DIOXY -brotbackend/AEPT -brchig/ACEPT -brderlich/AEPT -brhen/DIVXY -brllen/DIXY -brnett/AEPT -brsk/AEPT -brskieren/DIOXY -brsten/IXY -brten/DIXY -bruchfest/AEPT -bruchstckhaft/AEPT -brummeln/DIXY -brummen/DIXY -brummig/AEPT -brusttief/AEPT -brutal/ACEPTU -brutto -bspw -bspw. -bbisch/AEPT -bcken/DIWXY -bffeln/DIXY -bgelfrei/AEPT -bgeln/DIXY -bhnengewandt/AEPT -bhnenhaft/AEPT -bhnenkundiger -bhnenwirksam/AEPT -bken/IX -bndeln/DIWXY -bndelweise -bndig/AEPT -bndnisfrei/AEPT -bndniskonform/AEPT -brden/IWXY -brgen/DIVXY -brgerkriegshnlich/AEPT -brgerlich/AEPT -brgt/EGPVX -brgte/GNVZ -brgten/GIVWX -brokratisch/AEPTU -brsten/DIXY -ben/DIVXY -bt/EGPV -bte/GNVZ -bten/GIVWX -buchen/BDIVXY -buchhalterisch/AEPT -buchmig/AEPT -buchstblich/AEPT -buchstabengem/AEPT -buchstabengetreu/AEPT -buchstabieren/DIOXY -bucht/EGPVX -buchte/GNVZ -buchten/GIVWX -buckeln/DIXY -bucklig/ACEPT -buddhistisch/AEPT -bugsieren/DIOXY -buhen/DIXY -buhlen/DIXY -buk/PZ -bulgarisch/AEPT -bullig/ACEPT -bummeln/DIVXY -bumsen/DIXY -bumsfidel -bundesdeutsch/AEPT -bundesgesetzlich/AEPT -bundesstaatlich/AEPT -bundesweit/AEPT -bunt/ACEPT -buntbedruckt/AEPT -buntfarben/AEPT -buntfarbig/AEPT -buntschillernd/AEPT -burgenreich/AEPT -burlesk/AEPT -burmesisch/AEPT -burschenhaft/AEPT -burschikos/AEPT -bufertig/AEPT -busartige -buschig/AEPT -busenlos/AEPT -buttern/DIXY -byzantinisch/AEPT -bzgl -bzgl. -bzw -bzw. -ca -ca. -campinggerecht/AEPT -cartansch/AEPT -cetera -cf -cf. -chancenlos/AEPT -chancenreich/ACEPT -chaotisch/ACEPT -charakterbildend/AEPT -charakterfest/AEPT -charakterisieren/DIOXY -charakteristisch/ACEPT -charakterlich/AEPT -charakterlos/ACEPT -charakterstark/AEPT -charaktervoll/AEPT -chargieren/DIOXY -charismatisch/ACEPT -charmant/ACEPT -chartern/DIXY -chaten/DIXY -chauffieren/DIOXY -chauvinistisch/ACEPT -chemisch/AEPT -cherverbrennung -chi -chic/ACEPT -chiffrieren/DIOWXY -chinesisch/AEPT -chirurgisch/AEPT -chlorfrei/AEPT -cholerisch/ACEPT -choreografisch/AEPT -choreographieren/DIOXY -choreographisch/AEPT -christlich/ACEPTU -chromatisch/AEPT -chronisch/AEPT -chronologisch/AEPT -cineastisch/AEPT -circa -clausus -clever/AEPT -clippen/IX -cm -coaten/DIXY -coatet/EGPWX -codieren/BDIOXY -compilieren/DIOXY -computergesteuert/AEPT -computergesttzt/AEPT -computerisiert/AEPT -computerorientiert/AEPT -cool/AEPT -cremefarben/AEPT -cremefarbig/AEPT -cum -curryfarben/AEPT -dchte/NZ -dmlich/AEPT -dmmen/DIXY -dmmerhaft/AEPT -dmmerig/AEPT -dmmern/DIXY -dmonisch/AEPT -dmpfen/DIXY -dnisch/AEPT -da/S -dabei -dabeibleiben/DIX -dabeigeblieben/AEPT -dabeigestanden/AEPT -dabeistand/PZ -dabeistehen/DIX -dableiben/DIX -dachte/GNZ -dackeln/IXY -dadurch -dafr -dafrgehalten/AEPT -dafrhalten/DI -dageblieben/AEPT -dagegen -dagestanden/AEPT -daheim -daher -dahergekommen/AEPT -daherkam/PZ -daherkommen/IX -daherschleichen/DIX -dahertrieb/PZ -dahin -dahingegangen/AEPT -dahingehen/DIX -dahingeschlichen -dahingestellt/AEPT -dahingleiten/DIX -dahinglitt/EPZ -dahinraffen/DIXY -dahinschleppen/DIXY -dahinstelzen/DIXY -dahinsterben/DI -dahinstrmen/DIXY -dahinten -dahinter -dahintreiben/DIX -dahinvegetieren/DIXY -dahinwandern -dahinwelken/DIXY -dahinziehen/DIX -daliegen/DIX -damalig/AEPT -damals -damenhaft/AEPT -damit -dampfen/DIVXY -dampft/EGPVX -danach -daneben -danebenbenehmen/DI -danebenbenommen -danebengegangen/AEPT -danebenliegen/DIX -danieder -dankbar/ACEPTU -danken/BDIWXY -dankenswert/AEPT -dankenswerterweise -dankte/GNVZ -dankten/GIVWX -dann/P -dar/F -daran -darangegangen/AEPT -darangehen/DIX -darangesetzt -daranging/EPZ -daranmachen/DIXY -daransetzen/IXY -darauf -daraufgelegt/AEPT -daraufhin -daraus -darbieten/DIX -darbot/PZ -darbringen/DIX -darein -darfst/W -dargeboten/AEPT -dargelegt/AEPT -dargereicht/AEPT -dargestellt/AEPT -dargetan -darlegen/DIXY -darreichen/DIXY -darstellen/BDIXY -darstellerisch/AEPT -darstellungsbedingt/AEPT -darber -darum -darunter -darzubringen/D -darzulegen/D -darzustellen/D -dasa/PZ -dasitzen/DIX -dasjenige -dass -dasselbe -dasselbige -dastand/PZ -dastehen/DIX -datentechnisch/AEPT -datieren/BDIOXY -dato -dauergeleuchtet -dauerhaft/ACEPT -dauern/DIXY -daunenweich/AEPT -davon -davonfahren/DI -davonfliegen/DIX -davonfuhr/PZ -davongefahren/AEPT -davongekommen/AEPT -davongelaufen/AEPT -davongemacht/AEPT -davongeschlichen/AEPT -davongetragen/AEPT -davonging/EPZ -davonkommen/DIX -davonlaufen/DI -davonmachen/DIXY -davonrannte/NZ -davonrasen/DIXY -davonschleichen/DIX -davontragen/DI -davontrug/PZ -davonzustehlen -davonzutragen -davor -dazu -dazufhren/DIX -dazugeben/DI -dazugehren/DIXY -dazugehrig/AEPT -dazugekommen/AEPT -dazugelegt/AEPT -dazugelernt/AEPT -dazugesagt/AEPT -dazugeschaltet/AEPT -dazugetan/AEPT -dazugewonnen/AEPT -dazuhaben -dazukaufen/DIXY -dazukommen/DIX -dazulegen/DIXY -dazulernen/DIXY -dazumal -dazunimmt/X -dazurechnen/DIXY -dazuschlgt/X -dazustehen -dazutuend/AEPT -dazutun/IX -dazuverdienen/DIOXY -dazuzulernen/D -dazuzuverdienen/D -dazwischen -dazwischenfahren/DI -dazwischenfunken/DIX -dazwischengefahren/AEPT -dazwischengekommen/AEPT -dazwischengelegen/AEPT -dazwischengetreten/AEPT -dazwischenkommen/DIX -dazwischenliegen/DIX -dazwischentreten/DI -de/ANRS -deaktivieren/DIOXY -dealen/DIXY -debattieren/DIOXY -debil/AEPT -debtieren/DIOXY -dechiffrieren/DIOXY -decken/DIVWXY -deckungsgleich/AEPT -deckungspflichtig/AEPT -decodieren/DIOXY -decrementieren/DIOXY -dediziert/AEPT -deduktiv/AEPT -deduzieren/DIOXY -defaultmig/AEPT -defekt/AEPT -defensiv/AEPT -defilieren/DIWXY -definierbar/AEPTU -definieren/BDIOXY -definit/AEPT -definitionem -definitionsgem/AEPT -definitiv/AEPT -defizitr/AEPT -deflationr/AEPT -deformiert/AEPT -defragmentieren/DIOXY -deftig/AEPT -degenerieren/DIOXY -degradieren/DIOXY -degressiv/AEPT -dehnbar/ACEPT -dehnen/BDIXY -dein/AEPT -deindustrialisieren/DIOXY -deinerseits -deinesgleichen -deinetwegen -deinige/ANRS -deinstallieren/BDIOXY -dekadent/AEPT -dekadisch/AEPT -deklamatorisch/AEPT -deklamieren/DIOXY -deklarativ/AEPT -deklarieren/DIOXY -deklassieren/DIOXY -deklinieren/BDIOXY -dekodieren/DIOXY -dekomprimieren/BDIOXY -dekorativ/AEPT -dekorieren/DIOXY -dekretieren/DIOXY -delegieren/DIOXY -delektieren/DIXY -delikat/AEPT -delphisch/AEPT -delta -demagogisch/AEPT -demaskieren/DIOXY -dementieren/DIOXY -dementsprechend/AEPT -demgegenber -demgem -demilitarisieren/BDIOWXY -demjenigen -demnchst -demnach -demobilisieren/DIOXY -demografisch/AEPT -demographisch/AEPT -demokratisch/AEPTU -demokratisieren/DIOXY -demolieren/DIOXY -demonstrativ/AEPT -demonstrieren/DIOXY -demontieren/DIOXY -demoralisieren/DIOXY -demoskopisch/AEPT -demselben -demtig/AEPTZ -demtigen/DIWXY -demzufolge -den/NP -denjenigen -denkhnliche -denkbar/AEPTU -denken/BDGIVWX -denkend/AEGPTV -denkende/AGNRSV -denkfhig/AEPT -denkfaul/AEPT -denkwrdig/AEPT -dennoch -denominieren/DIOXY -denotativ/AEPT -denselben -denunzieren/DIOXY -deplatzieren/DIOXY -deponieren/DIOXY -deportieren/IOXY -deppern/DIOXY -depressiv/AEPT -deprimieren/DIOXY -deputieren/DIOXY -der/P -derart -derartig/AEPT -derb/AEPT -dereferenzieren/BDIOXY -deregulieren/BDIOWXY -dereinst -dereinstig/AEPT -derenthalben -derentwegen -derentwillen -derer -dergestalt -dergleichen -derjenige/N -derlei -dermaen -derselbe/N -derselbige/N -derweil -derzeit -derzeitig/AEPT -deselektieren/BDIOXY -desertieren/DIOXY -desgleichen -deshalb -desillusionieren/DIOWXY -desinfizieren/DIOXY -desinteressiert/ACEPT -desjenigen -deskriptiv/AEPT -despotisch/AEPT -desselben -dessen -destabilisieren/DIOXY -destillieren/DIOXY -desto -destruktiv/ACEPT -deswegen -detaillieren/DIOXY -detailliert/ACEPTX -detaillierte/ACNRSZ -detailreich/AEPT -detektieren/BDIOXY -detektivisch/AEPT -determinieren/DIOXY -deterministisch/AEPT -detonieren/DIOXY -deuten/BDIXY -deutlich/ACEPTU -deutsch/AEPTU -deutsche/ACNRSU -deutschfeindlich/AEPT -deutschsprachig/AEPT -devalvieren/DIOXY -devisenbewirtschaftet/AEPT -devot/ACEPT -dezent/ACEPT -dezentral/AEPT -dezentralisieren/DIOXY -dezidiert/AEPT -dezimal/AEPT -dezimieren/DIOXY -diabetisch/AEPT -diabolisch/AEPT -diagnostisch/AEPT -diagnostizieren/BDIOXY -diagonal/AEPT -diagonalisieren/BIOXY -diakonisch/AEPT -dialektisch/AEPT -dialektunabhngig/AEPT -diamantbesetzt/AEPT -diametral/AEPT -dicht/ACEPTW -dichte/ACNRSZ -dichten/DIWXY -dichterisch/AEPT -dichtet/EGPVWX -dichtete/GNVZ -dichteten/GIVWX -dick/ACEPT -dickfellig/AEPT -dickflssig/AEPT -dickkpfig/ACEPT -dickleibig/AEPT -dickste/ANRS -dickwanstig/AEPT -didaktisch/AEPT -die/S -diebessicher/AEPT -diebisch/AEPT -diejenige/N -dienen/DIVXY -dienlich/AEPT -dienst/LV -dienstags -dienstbar/AEPT -dienstbegleitend/AEPT -dienstbereit/AEPT -diensteifrig/ACEPT -dienstfrei/AEPT -diensttauglich/AEPT -dienstunfhig/AEPT -dienstuntauglich/AEPT -dienstwillig/AEPT -dient/EGPVX -diente/GNVZ -dienten/GIVWX -dies/AEPT -diesbezglich/AEPT -dieselbe/N -diesig/AEPT -diesjhrig/AEPT -diesmal -diesseitig/AEPT -diesseits -diffamieren/DIOXY -differentiell/AEPT -differenziell/AEPT -differenzieren/BDIOXY -differenziert/ACEPTX -differieren/DIOXY -diffizil/AEPT -diffundieren/DIWXY -diffus/ACEPT -digital/AEPT -digitalisieren/DIOXY -diktatorisch/AEPT -diktieren/DIOXY -dilettantisch/AEPT -dimensionieren/DIOXY -dimensionslos/AEPT -dimmen/BDIWXY -dingfest -dinglich/AEPT -dinieren/DIXY -diplomatisch/AEPT -diplomiert/AEPT -dir -direkt/AEPT -direktional/AEPT -dirigieren/DIOXY -dirigistisch/AEPT -disharmonisch/AEPT -disjunkt/AEPT -disjunktiv/AEPT -diskontieren/DIOXY -diskontinuierlich/AEPT -diskreditieren/DIOXY -diskret/AEPT -diskrete/ACNRS -diskriminieren/DIOXY -diskursiv/AEPT -diskussionsfhig/AEPT -diskutieren/BDIOXY -disparat/ACEPT -dispensieren/DIOXY -dispers/AEPT -disponieren/BDIOXY -disproportional/AEPT -disproportioniert/AEPT -disputieren/DIXY -disqualifizieren/DIOXY -dissipativ/AEPT -distanzieren/DIOXY -disziplinarisch/AEPT -disziplinieren/DIOXY -dito -div -divergieren/DIXY -divers/AEPT -diversifizieren/DIOXY -dividieren/DIOXY -dm -drflich/AEPT -drren/DIXY -dsen/DIXY -dst/EGP -doch -dogmatisch/AEPT -dogmenartig/AEPT -dokumentarisch/AEPT -dokumentieren/DIOXY -dolmetschen/DIVXY -domartig -dominant/AEPT -domini -dominieren/DIOXY -dominikanisch/AEPT -donnern/DIVXY -donnerstags -doof/ACEPT -doppelgesichtig/AEPT -doppeln/DIOVXY -doppelseitig/AEPT -doppelwandig/AEPT -dornig/AEPT -dorren/DIVXY -dort -dorthin -dortig/AEPT -dosieren/DIOXY -dotieren/DIOXY -dottergelb/AEPT -downloaden/BIWXY -dozieren/DIOXY -dpi -drngeln/DIXY -drngen/DIVXY -drngend/ACEPT -drngt/EGPVX -drngte/GNVZ -drngten/GIVWX -drachenhnlich/AEPT -drahtig/AEPT -drahtlos/AEPT -drakonisch/AEPT -drall/AEPT -dramatisch/ACEPT -dramatisieren/DIOXY -dramaturgisch/AEPT -dran -drang/PZp -drangsalieren/DIOXY -drangvoll/AEPT -dranhngen/DIX -drankommen/DIX -drapieren/DIOXY -drastisch/AEPT -drauf -draufdrcken/DIXY -draufgehen/DIX -draufgeklebt/AEPT -draufhauen/DIXY -drauflegen/DIXY -drauflos -drauflosgegangen/AEPT -drauflosgehen/DIX -drauflosging/EPZ -draufschlagen/DI -draufzahlen/DIXY -drauen -dreckig/ACEPT -drehen/BDIVWXY -dreht/EGPVWX -drehte/GNVZ -drehten/GIVWX -drei/NP -dreiaderig/AEPT -dreidimensional/AEPT -dreieckig/AEPT -dreieinhalb -dreieinhalbfach/AEPT -dreielementig/AEPT -dreierlei -dreifach/AEPT -dreifaltig/AEPT -dreifarbig/AEPT -dreigeteilt/AEPT -dreihundert -dreihundertmal -dreijhrig/AEPT -dreimal -dreimalig/AEPT -dreimonatig/AEPT -dreingeschlagen/AEPT -dreinschauen/DIXY -dreinschlagen/DI -dreinzuschauen -dreiig -dreiiger -dreiigfach/AEPT -dreiigjhrig/AEPT -dreiigste/ANRS -dreiseitig/AEPT -dreisemestrig/AEPT -dreisilbig/AEPT -dreisprachig/AEPT -dreist/ACEPTW -dreistellig/AEPT -dreistimmig/AEPT -dreistndig/AEPT -dreistufig/AEPT -dreitgig/AEPT -dreitausend -dreiteilig/AEPT -dreiundachtzig -dreiundachtzigste/ANRS -dreiunddreiig -dreiunddreiigste/ANRS -dreiundfnfzig -dreiundfnfzigste/ANRS -dreiundneunzig -dreiundneunzigste/ANRS -dreiundsechzig -dreiundsechzigste/ANRS -dreiundsiebzig -dreiundsiebzigste/ANRS -dreiundvierzig -dreiundvierzigste/ANRS -dreiundzwanzig -dreiundzwanzigste/ANRS -dreiviertel -dreiviertelstndig/AEPT -dreiwchig/AEPT -dreizehn -dreizehnjhrig/AEPT -dreizehnte/ANRS -dreschen/DIV -dressieren/DIOXY -dribbeln/DIXY -driften/DIXY -drillen/DIVXY -drillt/EGPVX -drillte/GNVZ -drillten/GIVWX -drin/F -dringen/DIX -dringend/ACEPT -dringendst/AEPTW -dringlich/ACEPT -drinstecken/DIXY -drinstehen/DIX -dritt/AEPT -drittbeste/ANRS -drittel -dritten/SW -drittgrte/ANRS -drittklassig/AEPT -drittletzte/ANRS -drittplatziert/AEPT -drge/ANRS -drhnen/DIXY -droben -drogenabhngig/AEPT -drogenschtig/AEPT -drohen/DIXY -drollig/AEPT -drolligerweise -drosch/PVZ -drosseln/DIXY -drben -drber -drberfahren/DI -drcken/DIVXY -drckend/ACEPT -drckt/EGPVX -drckte/GNVZ -drckten/GIVWX -druckabhngig/AEPT -druckempfindlich/AEPT -drucken/BDIVXY -druckerspezifisch/AEPT -druckfhig/AEPT -druckfertig/AEPT -druckfest/AEPT -druckfrisch/AEPT -drucklos/AEPT -druckreif/AEPT -druckt/EGPVX -druckte/GNVZ -drucktechnisch/AEPT -druckten/GIVWX -druckvoll/AEPT -druckwasserfrei/AEPT -drumherum -drunten -drunter -dto -dto. -du -dmmer/AEPT -dmmlich/AEPT -dmmste/ANRS -dngen/DIXY -dnkt/G -dnn/ACEPT -dnnflssig/AEPT -dnsten/DIXY -dpieren/BDIOWXY -drfen/IY -drftig/AEPT -drr/ACEPT -drsten/DIXY -dster/ACEPT -dsterblau/AEPT -dual/AEPT -dualistisch/AEPT -dubio/S -dubios/ACEPT -ducken/DIXY -duellieren/DIXY -duften/DIVXY -duftet/EGPVWX -duftete/GNVZ -dufteten/GIVWX -duftig/AEPT -duftlos/AEPT -dulden/DGIXY -duldsam/AEPTU -dumm/AEPT -dummerweise -dumpf/AEPT -dunkel/AC -dunkelblau/AEPT -dunkelblond/AEPT -dunkelbraun/AEPT -dunkelgrau/AEPT -dunkelgrn/AEPT -dunkelhutig/AEPT -dunkelhaarig/AEPT -dunkelrot/AEPT -dunstig/AEPT -duplex -duplizieren/BDIOXY -durch/S -durchackern/DIOXY -durcharbeiten/DIXY -durchaus -durchbacken -durchbeien/DIX -durchblttern/DIWXY -durchblicken/DIXY -durchbluten/DIOXY -durchbohren/DIOXY -durchbrach/PZ -durchbrechen/DI -durchbrennen/DIX -durchbricht/X -durchbringen/DI -durchbrochen/AEPT -durchdacht/AEPT -durchdenken/DIX -durchdrngen/DIXY -durchdrang/PZp -durchdrehen/DIXY -durchdringen/DIX -durchdrungen/AEPT -durcheilen/DIOXY -durcheinander -durchexerzieren/DIOXY -durchfahren/DI -durchfallen/DI -durchfechten/DIX -durchfliegen/DIX -durchflieen/DIX -durchflog/PZ -durchforsten/DIOXY -durchfragen/DIX -durchfroren/AEPT -durchfhrbar/AEPTU -durchfhren/BDIXY -durchfttern/DIXY -durchgngig/AEPT -durchgeackert/AEPT -durchgearbeitet/AEPT -durchgeben/DI -durchgebissen/AEPT -durchgeblttert/AEPT -durchgeblickt/AEPT -durchgeboxt -durchgebracht/AEPT -durchgebrannt/AEPT -durchgebrochen/AEPT -durchgedrngt/AEPT -durchgedreht/AEPT -durchgedrungen/AEPT -durchgeeilt/AEPT -durchgefahren/AEPT -durchgefallen/AEPT -durchgefegt -durchgeflogen/AEPT -durchgeflossen/AEPT -durchgefragt/AEPT -durchgefhrt/AEPT -durchgegangen/AEPT -durchgegeben/AEPT -durchgegriffen/AEPT -durchgehrtet/AEPT -durchgehalten/AEPT -durchgehen/DIX -durchgekmpft -durchgekaut/AEPT -durchgeklettert/AEPT -durchgeknetet/AEPT -durchgekommen/AEPT -durchgekreuzt/AEPT -durchgelassen/AEPT -durchgelaufen/AEPT -durchgelesen/AEPT -durchgelftet/AEPT -durchgelutscht -durchgemacht/AEPT -durchgeplant/AEPT -durchgereist/AEPT -durchgerissen/AEPT -durchgeritten/AEPT -durchgesgt/AEPT -durchgesagt/AEPT -durchgeschaltet/AEPT -durchgeschaut/AEPT -durchgeschimmert/AEPT -durchgeschlagen/AEPT -durchgeschleift/AEPT -durchgeschleust/AEPT -durchgeschliffen/AEPT -durchgeschnitten/AEPT -durchgeschossen/AEPT -durchgeschttelt/AEPT -durchgeschweit/AEPT -durchgeschwommen/AEPT -durchgesegelt/AEPT -durchgesehen/AEPT -durchgesetzt/AEPT -durchgesickert/AEPT -durchgesiebt/AEPT -durchgespielt/AEPT -durchgesprochen/AEPT -durchgestanden/AEPT -durchgestiegen/AEPT -durchgestbert/AEPT -durchgestochen -durchgestoen -durchgestrichen/AEPT -durchgesucht/AEPT -durchgetreten/AEPT -durchgewachsen/AEPT -durchgewandert/AEPT -durchgewatet -durchgeweicht -durchgewhlt/AEPT -durchgezogen/AEPT -durchgezwngt/AEPT -durchgreifen/DIX -durchgriff/PZ -durchhalten/BDI -durchkmmen/DIOXY -durchkam/PZ -durchklettern/DIXY -durchkneten/DIOXY -durchkommen/DIX -durchkonstruierte -durchkreuzen/DIOXY -durchlssig/ACEPTU -durchlsst -durchluft/X -durchlassen/DI -durchlaufen/ADEIPT -durchleben/IOXY -durchlesen/DI -durchleuchten/DIOXY -durchlief/EPZ -durchliest -durchlchern/DIOXY -durchlften/DIOXY -durchmachen/DIXY -durchmarschieren/DIOXY -durchmischen/DIOXY -durchnssen/DIOXY -durchnehmen/DI -durchnummerieren/DIOXY -durchpflgen/DIXY -durchprobieren/DIOXY -durchqueren/DIOXY -durchrechnen/DIXY -durchreien/DIX -durchreisen/DIOXY -durchreiten/DIX -durchringen/DIX -durchrutschen/DIXY -durchsgen/DIXY -durchsacken/DIXY -durchsagen/DIXY -durchschaubar/AEPTU -durchschauen/BDIOXY -durchschauern/DIY -durchscheinen/DIX -durchschimmern/DIXY -durchschlagen/DI -durchschlagkrftig/AEPT -durchschleusen/DIXY -durchschlug/PZ -durchschneiden/DIX -durchschnittlich/AEPT -durchschreiben/DIX -durchschritt/PZ -durchschwamm/PZ -durchschwimmen/DIX -durchsegeln/DIOXY -durchsehen/DI -durchsetzen/BDIOXY -durchsichtig/ACEPTU -durchsickern/DIXY -durchsieben/DIXY -durchspielen/DIXY -durchsprechen/DI -durchstarten/DIXY -durchstechen/DI -durchstehen/DIX -durchsteigen/DIX -durchstbern/DIOXY -durchstt -durchstochen/AEPT -durchstoen/ADEIPT -durchstreichen/DIX -durchstreifen/IXY -durchstrmen/IXY -durchsuchen/BDIOXY -durchtasten/DIOXY -durchtoggeln -durchtrnken/DIOXY -durchtrennen/DIOXY -durchtrieben/ACEPT -durchwhlen/DIXY -durchwachsen/AEPT -durchwandern/DIOXY -durchwaten/DIOXY -durchweg/S -durchweichen/DIOXY -durchwhlen/DIOXY -durchziehen/DIX -durchzogen/AEPTWX -durchzuatmen -durchzublttern/D -durchzuboxen/D -durchzubrechen/D -durchzucken/DIWXY -durchzudrehen -durchzudringen -durchzudrcken/D -durchzufhren/D -durchzugreifen -durchzuhalten/D -durchzukmmen/D -durchzukommen/D -durchzulesen/D -durchzumachen/D -durchzumogeln/D -durchzusgen/D -durchzuschalten/D -durchzusehen/D -durchzusetzen/D -durchzustehen/D -durchzwngen/DIXY -durfte/NZ -dursten/DIVXY -durstig/ACEPT -duschen/DIXY -dusslig/ACEPT -dutzende/V -dutzendweise -duzen/DIXY -dynamisch/ACEPT -eben/AEPTU -ebenbrtig/AEPT -ebenda -ebendaher -ebendahin -ebendann -ebendarum -ebendaselbst -ebender -ebenderselbe -ebendeshalb -ebendeswegen -ebendiese/RS -ebendieselbe -ebenerdig/AEPT -ebenfalls -ebenjener -ebenso -ebensolche/ANRS -ebnen/DIXY -echt/ACEPTU -echtzeitfhig/AEPT -echtzeitgesteuert/AEPT -ecken/IWXY -eckig/AEPT -edel/ACU -edeldenkend/AEPT -edelgesinnt/AEPT -edelmtig/AEPT -editieren/BDIXY -effekthaschend/AEPT -effektiv/ACEPT -effektvoll/ACEPT -effizient/ACEPT -effizienzmindernd/AEPT -effizienzverbessernd/AEPT -egal -egalisieren/DIOXY -egalitr/AEPT -egoistisch/AEPT -egozentrisch/AEPT -eh/E -ehe/LR -ehebrechen/DI -ehebrecherisch/AEPT -ehedem -ehelich/AEPTU -ehelichen/DIWXY -ehelichte/GNVZ -ehelichten/GIVWX -ehelos/AEPT -ehemalig/AEPT -ehemals -ehemndig/AEPT -eheste/ANRS -ehewidrig/AEPT -ehrbar/ACEPT -ehren/BDIVXY -ehrenamtlich/AEPT -ehrenhaft/ACEPTU -ehrenhalber -ehrenvoll/AEPT -ehrenwert/AEPT -ehrerbietig/ACEPTU -ehrfrchtig/AEPT -ehrfurchtsvoll/AEPT -ehrgeizig/ACEPT -ehrlich/ACEPTU -ehrlos/ACEPT -ehrsam/AEPT -ehrschtig/AEPT -ehrt/EGPVX -ehrte/GNVZ -ehrten/GIVWX -ehrwrdig/AEPT -eichen/DIWXY -eichfhig/AEPT -eichpflichtig/AEPT -eidesstattlich/AEPT -eidgenssisch/AEPT -eidlich/AEPT -eifern/DIXY -eiferschtig/ACEPT -eifrig/ACEPT -eigen/AELPST -eigenartig/ACEPT -eigenartigerweise -eigenhndig/AEPT -eigeninitiatives -eigeninitiiert/AEPT -eigenmchtig/AEPT -eigenntzig/ACEPTU -eigensicher/AEPT -eigensinnig/ACEPT -eigenstndig/AEPT -eigenste/ANRS -eigentmlich/AEPT -eigenverantwortlich/AEPT -eigenwillig/ACEPT -eignen/DIXY -eilen/DIXY -eilend/AEPST -eilfertig/AEPT -eilig/ACEPT -eiligst/AEPTW -ein/AEPSTZ -einschern/DIXY -einugig/AEPT -einachsig/AEPT -einander -einarbeiten/DIXY -einarmig/AEPT -einatmen/DIXY -einbndig/AEPT -einbalsamieren/DIOXY -einbauen/BDIXY -einbaufertig/AEPT -einbegriffen/AEPT -einberufen/ADEIPTX -einbetten/IXY -einbeziehen/DIX -einbezogen/AEPTWX -einbiegen/DIX -einbilden/DIXY -einbinden/DIX -einbluen/DIXY -einblenden/DIXY -einbrach/PZ -einbrachen/WXY -einbrechen/DI -einbrennlackieren/DIOXY -einbricht/X -einbringen/DIX -einbrgern/DIXY -einben/DIXY -eindmmen/DIXY -eindecken/DIXY -eindeutig/ACEPT -eindimensional/AEPT -eindrang/PZ -eindringen/DIX -eindringlich/ACEPT -eindrcken/DIXY -eindrcklich/AEPT -eindrucksvoll/ACEPT -eineiig/AEPT -eineindeutig/AEPT -eineinhalb -eineinhalbjhrig/AEPT -eineinhalbstndig/AEPT -eineinhalbtausend -einelementig/AEPT -einen/DIWXY -einengen/BDIXY -einerlei -einerseits -einesteils -einfdeln/DIXY -einfhrt/X -einfltig/ACEPT -einfngt/X -einfrben/DIXY -einfach/ACEPT -einfahren/DI -einfallen/DI -einfallslos/AEPT -einfallsreich/ACEPT -einfand/PZ -einfangen/BDI -einfarbig/AEPT -einfassen/DIXY -einfetten/DIXY -einfiel/EPZ -einfinde/NZ -einflieen/DIX -einflen/DIXY -einfloss/PZ -einflussreich/ACEPT -einfrmig/AEPT -einfordern/BDIXY -einfrieren/DIX -einfgen/DIXY -einfhlen/DIXY -einfhren/BDIXY -einfllen/DIXY -eingngig/AEPT -eingab/PZ -eingangs -eingeschert/AEPT -eingearbeitet/AEPT -eingeatmet/AEPT -eingebacken/AEPT -eingebaut/AEPT -eingeben/BDI -eingebettet/AEPT -eingebildet/AEPT -eingeblut/AEPT -eingeblendet/AEPT -eingebogen/AEPT -eingeboren/AEPT -eingebracht/AEPT -eingebrannt/AEPT -eingebraut/AEPT -eingebrochen/AEPT -eingebrgert/AEPT -eingebt/AEPT -eingebucht/AEPT -eingebuchten/IOW -eingebuchtet/AEPTW -eingebunden/AEPT -eingedmmt/AEPT -eingedenk -eingedeutscht/AEPT -eingedrckt/AEPT -eingedrungen/AEPT -eingeebnet/AEPT -eingeengt/AEPT -eingefdelt/AEPT -eingefrbt/AEPT -eingefahren/AEPT -eingefallen/AEPT -eingefangen/AEPT -eingefasst/AEPT -eingefettet/AEPT -eingefleischt/AEPT -eingeflt/AEPT -eingeflogen/AEPT -eingeflossen/AEPT -eingefordert/AEPT -eingefroren/AEPT -eingefgt/AEPT -eingefhlt -eingefhrt/AEPT -eingefllt/AEPT -eingefunden -eingegangen/AEPT -eingegeben/AEPT -eingegipst/AEPT -eingegliedert/AEPT -eingegossen/AEPT -eingegraben/AEPT -eingegrenzt/AEPT -eingegriffen -eingehmmert/AEPT -eingehngt/AEPT -eingehakt/AEPT -eingehalten/AEPT -eingehandelt/AEPT -eingehauen/AEPT -eingeheftet/AEPT -eingeheizt/AEPT -eingehen/DIX -eingehendste -eingeholt/AEPT -eingehllt/AEPT -eingeimpft/AEPT -eingejagt/AEPT -eingekauft/AEPT -eingekehrt/AEPT -eingekeilt/AEPT -eingekellert/AEPT -eingekerbt/AEPT -eingeklammert/AEPT -eingeklebt/AEPT -eingekleidet/AEPT -eingeklemmt/AEPT -eingeknickt/AEPT -eingekocht/AEPT -eingekreist/AEPT -eingelutet -eingeladen/AEPT -eingelagert/AEPT -eingelassen/AEPT -eingelaufen/AEPT -eingelebt -eingelegt/AEPT -eingeleitet/AEPT -eingelenkt/AEPT -eingelesen/AEPT -eingeleuchtet/AEPT -eingeliefert/AEPT -eingelst/AEPTU -eingeltet/AEPT -eingeloggt/AEPT -eingelullt/AEPT -eingemacht/AEPT -eingemauert/AEPT -eingemischt/AEPT -eingemndet/AEPT -eingenht/AEPT -eingenistet/AEPT -eingenommen/AEPT -eingelte/ANRS -eingeordnet/AEPT -eingepackt/AEPT -eingepasst/AEPT -eingepaukt/AEPT -eingependelt -eingepflanzt/AEPT -eingepflegt/AEPT -eingeplant/AEPT -eingeprgt/AEPT -eingequetscht/AEPT -eingerumt/AEPT -eingerahmt/AEPT -eingerannt/AEPT -eingerastet/AEPT -eingerechnet/AEPT -eingeredet/AEPT -eingereicht/AEPT -eingereist/AEPT -eingerenkt/AEPT -eingerichtet/AEPT -eingerieben/AEPT -eingerissen/AEPT -eingeritzt/AEPT -eingerollt/AEPT -eingerostet/AEPT -eingerckt/AEPT -eingesammelt/AEPT -eingesandt/AEPT -eingescannt/AEPT -eingeschrft/AEPT -eingeschtzt/AEPT -eingeschaltet/AEPT -eingeschenkt/AEPT -eingeschickt/AEPT -eingeschifft/AEPT -eingeschlfert/AEPT -eingeschlafen/AEPT -eingeschlagen/AEPT -eingeschleift/AEPT -eingeschleppt/AEPT -eingeschleust/AEPT -eingeschlichen/AEPT -eingeschlossen/AEPT -eingeschmeichelt/AEPT -eingeschmiert/AEPT -eingeschmolzen/AEPT -eingeschnitten/AEPT -eingeschnrt/AEPT -eingeschoben/AEPT -eingeschossen/AEPT -eingeschossig/AEPT -eingeschrnkt/AEPTU -eingeschraubt/AEPT -eingeschrieben/AEPT -eingeschritten/AEPT -eingeschrumpft/AEPT -eingeschchtert/AEPT -eingeschult/AEPT -eingeschwrzt/AEPT -eingeschweit/AEPT -eingeschwenkt/AEPT -eingesegnet/AEPT -eingesehen/AEPT -eingeseift/AEPT -eingesessen/AEPT -eingesetzt/AEPT -eingespannt/AEPT -eingespart/AEPT -eingespeichert/AEPT -eingespeist/AEPT -eingesperrt/AEPT -eingespielt/AEPT -eingesprungen/AEPT -eingestampft/AEPT -eingestanden/AEPT -eingestandenermaen -eingesteckt/AEPT -eingestehen/DIX -eingestellt/AEPT -eingestiegen/AEPT -eingestimmt/AEPT -eingestochen/AEPT -eingestoen/AEPT -eingestrahlt/AEPT -eingestreut/AEPT -eingestrzt/AEPT -eingestuft/AEPT -eingesunken/AEPT -eingetaucht/AEPT -eingetauscht/AEPT -eingeteilt/AEPT -eingetippt/AEPT -eingetrufelt/AEPT -eingetragen/AEPT -eingetreten/AEPT -eingetrichtert/AEPT -eingetrieben/AEPT -eingetrocknet/AEPT -eingetroffen/AEPT -eingetrommelt/AEPT -eingewhlt/AEPT -eingewandert/AEPT -eingewandt/AEPT -eingewebt/AEPT -eingeweckt/AEPT -eingeweicht/AEPT -eingeweiht/AEPTU -eingewickelt/AEPT -eingewiesen/AEPT -eingewilligt/AEPT -eingewirkt/AEPT -eingewhnen/DIOXY -eingeworfen/AEPT -eingewurzelt/AEPT -eingezahlt/AEPT -eingezeichnet/AEPT -eingezirkelt/AEPT -eingezogen/AEPT -eingibt/X -eingieen/DIX -einging/EPZ -eingleisig/AEPT -eingliedern/DIXY -eingraben/DI -eingravieren/DIOXY -eingreifen/DIX -eingrenzen/BDIXY -eingriff/EPZ -einhngen/DIXY -einhaken/DIXY -einhalten/BDI -einhandeln/DIXY -einhauen/DIXY -einheften/DIXY -einheimisch/AEPT -einheimsen/DIXY -einheitlich/ACEPTU -einheizen/DIXY -einhellig/AEPT -einher -einhergegangen -einhergehen/DIX -einholen/DIXY -einhllen/DIXY -einhundert -einhundertfnfzig -einige/ANRSU -einigen/DIWXY -einigermaen -einigte/GNVZ -einigten/GIVWX -einjhrig/AEPT -einjagen/DIXY -einjustieren/DIOXY -einkalkulieren/BDIOXY -einkanalig/AEPT -einkassieren/DIOXY -einkaufen/BDIXY -einkehren/DIXY -einkellern/DIXY -einkesseln/IXY -einklagen/IXY -einklammern/DIXY -einklappen/DIXY -einkleben/DIXY -einkleiden/DIXY -einklemmen/DIXY -einklinken/DIXY -einknpfen/BDIXY -einknoten/DIXY -einkochen/DIXY -einkommensschwach/AEPT -einkommensteuerfrei/AEPT -einkopieren/DIOXY -einkreisen/DIXY -einldt/X -einlsst -einluten/DIXY -einladen/DI -einlagern/DIXY -einlassen/DI -einlaufen/DI -einlegen/DIXY -einleiten/DIXY -einlenken/DIXY -einlesen/BDI -einleuchten/DIXY -einlief/EPZ -einliefern/DIXY -einliegend/AEPT -einlie/EPZ -einliest -einlsen/BDIXY -einloggen/DIXY -einlud/PZ -einmachen/DIXY -einmal -einmalig/AEPT -einmarschieren/DIOXY -einmauern/DIXY -einmischen/DIXY -einmotten/DIXY -einmnden/DIXY -einnahm/PZ -einnahmen/VX -einnehmbar/ACEPTU -einnehmen/BDI -einnimmt/X -einnisten/DIXY -einordnen/DIXY -einpacken/DIXY -einpflanzen/DIXY -einpflegen/DIXY -einphasig/AEPT -einplanen/DIXY -einpolig/AEPT -einprgen/DIXY -einprgsam/AEPT -einprallen/DIXY -einpressen/DIXY -einprogrammieren/DIXY -einquartieren/DIOXY -einrumen/DIXY -einrasten/DIXY -einrechnen/DIXY -einreden/DIXY -einregulieren/DIOXY -einreiben/DIX -einreichen/DIXY -einreihen/DIXY -einreien/DIX -einreisen/DIXY -einrenken/DIXY -einrennen/DIX -einrichten/DIXY -einritzen/DIXY -einrollen/IXY -einrosten/DIXY -einrcken/DIXY -eins/U -einsah/PZ -einsam/ACEPT -einsammeln/DIXY -einsatzbereit/AEPT -einsatzfhig/ACEPT -einsatzfreudig/ACEPT -einsatzsicher/AEPT -einschtzen/DIXY -einschalten/BDIXY -einschenken/DIXY -einschicken/DIXY -einschieben/DIX -einschieen/DIX -einschiffen/DIXY -einschl -einschl. -einschlfern/DIXY -einschlgig/AEPT -einschlgt/X -einschlafen/DI -einschlagen/DI -einschleichen/DIX -einschleusen/DIXY -einschlich/EPZ -einschlieen/DIX -einschlielich/AEPT -einschlgen/IX -einschlug/PZp -einschmeicheln/DIXY -einschmelzen/DI -einschmieren/DIXY -einschneiden/DIX -einschrnken/BDIXY -einschreiben/DIX -einschreiten/DIX -einschchtern/DIXY -einschulen/DIXY -einschwenken/DIXY -einsehen/BDI -einseifen/DIXY -einseitig/AEPT -einsenden/DIXY -einsetzen/BDIXY -einsichtig/ACEPT -einsichtsvoll/ACEPT -einsickern/DIXY -einsieht/X -einsilbig/AEPT -einsinken/DIX -einsortieren/DIOXY -einspaltig/AEPT -einspannen/DIXY -einsparen/DIXY -einspeisen/DIXY -einsperren/DIXY -einspielen/DIXY -einsprachig/AEPT -einspringen/DIX -einspritzen/DIXY -einspurig/AEPT -einstampfen/DIXY -einstand/PZ -einstecken/DIXY -einstehen/DIX -einsteigen/DIX -einstellen/BDIXY -einstellig/AEPT -einstieg/EPZ -einstig/AEPT -einstimmen/DIXY -einstimmig/AEPT -einstmals -einstckig/AEPT -einstoen/DI -einstreichen/DIX -einstreuen/DIXY -einstrich/EPZ -einstrmen/DIXY -einstndig/AEPT -einstrzen/DIXY -einstudieren/DIOXY -einstufen/DIXY -einstufig/AEPT -einstweilen -einstweilig/AEPT -eintgig/AEPT -eintauchen/DIXY -eintauschen/BDIXY -eintausend -einte/GNVZ -einteilen/DIXY -einteilig/AEPT -einten/GIVWX -eintippen/DIXY -eintnig/ACEPT -eintrchtig/ACEPT -eintrglich/ACEPT -eintrgt/X -eintrte/NZ -eintraf/PZ -eintragen/BDI -eintrat/PZ -eintreffen/DI -eintreiben/DIX -eintreten/DI -eintrifft/X -eintrittst/WX -eintrocknen/DIXY -eintrgen/IX -einben/DIXY -einundachtzig -einundachtzigste/ANRS -einunddreiig -einunddreiigste/ANRS -einundfnfzig -einundfnfzigste/ANRS -einundneunzig -einundneunzigste/ANRS -einundsechzig -einundsechzigste/ANRS -einundsiebzig -einundsiebzigste/ANRS -einundvierzig -einundvierzigste/ANRS -einundzwanzig -einundzwanzigste/ANRS -einverleiben/DIOXY -einvernehmlich/AEPT -einverstanden/AEPT -einwhlen/DIXY -einwrts -einwandern/DIXY -einwandfrei/ACEPT -einweichen/DIXY -einweihen/DIXY -einweisen/DIX -einwenden/DIXY -einwerfen/DI -einwickeln/DIXY -einwilligen/DIXY -einwirken/DIXY -einwchig/AEPT -einzunen/DIXY -einzahlen/DIXY -einzeichnen/DIXY -einzeilig/AEPT -einzeln/AEPT -einzelstaatlich/AEPT -einziehen/BDIX -einzig/AEPT -einzigartig/AEPT -einzog/PZ -einzuarbeiten/D -einzubalsamieren/D -einzubauen/D -einzubehalten/D -einzubetten/D -einzubeziehen/D -einzubilden -einzubinden/D -einzubrechen -einzubringen/D -einzubrgern/D -einzuben/D -einzudecken/D -einzudringen -einzudrcken/D -einzuebnen/D -einzuengen/D -einzufahren/D -einzufallen -einzufangen/D -einzufinden -einzufliegen/D -einzufordern/D -einzufgen/D -einzufhren/D -einzugeben/D -einzugehen -einzugestehen/D -einzugliedern/D -einzugreifen -einzugrenzen/D -einzuhngen/D -einzuhalten/D -einzuhandeln/D -einzuholen/D -einzuhllen/D -einzukaufen/D -einzukommen -einzukreisen/D -einzuladen/D -einzulagern/D -einzulassen/D -einzulaufen -einzulegen/D -einzuleiten/D -einzulenken -einzulesen/D -einzulsen/D -einzuloggen -einzumischen/D -einzunehmen/D -einzuordnen/D -einzupacken/D -einzupflanzen/D -einzuplanen/D -einzuprgen/D -einzurumen/D -einzureden/D -einzureiben/D -einzureichen/D -einzureihen/D -einzurichten/D -einzusammeln/D -einzusaugen/D -einzuschtzen/D -einzuschalten/D -einzuschenken/D -einzuschieben/D -einzuschlfern/D -einzuschlagen/D -einzuschleusen/D -einzuschlieen/D -einzuschmelzen/D -einzuschrnken -einzuschreiben/D -einzuschreiten -einzuschchtern/D -einzusehen/D -einzusenden/D -einzusetzen/D -einzuspannen/D -einzusparen/D -einzuspeisen/D -einzusperren/D -einzuspielen/D -einzustampfen/D -einzustecken/D -einzustehen -einzusteigen -einzustellen/D -einzustimmen/D -einzustreuen/D -einzustufen/D -einzutauchen/D -einzutauschen/D -einzuteilen/D -einzutragen/D -einzutreffen -einzutreiben/D -einzutreten/D -einzuben/D -einzuverleiben/D -einzuweisen/D -einzuwenden/D -einzuwerben/D -einzuwerfen/D -einzuwilligen -einzuwirken -einzuzahlen/D -einzuziehen/D -eisenhaltig/AEPT -eisenhart/AEPT -eisern/AEPT -eisfrei/AEPT -eisgekhlt/AEPT -eisig/ACEPT -eiskalt/AEPT -eiszeitlich/AEPT -eitel/AC -eiterig/AEPT -eitern/DIVXY -eiweiartig/AEPT -eiweihaltig/ACEPT -ekelerregend/ACEPT -ekelhaft/ACEPT -ekeln/DIWXY -eklatant/AEPT -eklig/AEPT -ekstatisch/AEPT -elastisch/ACEPTU -elegant/ACEPT -elegisch/AEPT -elektr -elektr. -elektrisch/AEPT -elektrisieren/DIOXY -elektrochemisch/AEPT -elektrohydraulisch/AEPT -elektrolytisch/AEPT -elektromagnetisch/AEPT -elektromechanisch/AEPT -elektronisch/AEPT -elektrostatisch/AEPT -elektrotechnisch/AEPT -elementar/AEPT -elementarste/ANRS -elend/ACEPT -elfeinhalb -elfenbeinern/AEPT -elffach/AEPT -elfhundert -elfjhrig/AEPT -elfmal -elft/AEPTW -elftgig/AEPT -elftausend -elftel -elften/SW -eliminieren/BDIOXY -elisabethanisch/AEPT -elitr/AEPT -ellenlang/AEPT -elliptisch/AEPT -eloxiert/AEPT -elterlich/AEPT -elternlos/AEPT -emanzipatorisch/AEPT -emanzipieren/IOXY -embryonal/AEPT -emeritieren/IOXY -emigrieren/DIOXY -eminent/AEPT -emittieren/DIXY -emotional/ACEPT -emotionell/ACEPT -empfnglich/AEPTU -empfngt/X -empfahl/PZ -empfand/PZ -empfangen/ADEIPT -empfangsbereit/AEPT -empfehlen/DI -empfehlenswert/AEPT -empfiehlt/X -empfinden/DIX -empfindlich/ACEPTU -empfindsam/ACEPT -empfindungslos/ACEPT -empfing/PZ -empfohlen/AEPT -empfunden/AEPT -empirisch/AEPT -empren/DIOXY -empor -emporarbeiten/DIXY -emporblicken/DIXY -emporgearbeitet/AEPT -emporgeblickt/AEPT -emporgehievt/AEPT -emporgekommen/AEPT -emporgeragt/AEPT -emporgeschossen/AEPT -emporgestiegen/AEPT -emporgestrebt/AEPT -emporgewachsen/AEPT -emporheben/DIX -emporhob -emporkommen/DIX -emporragen/DIXY -emporschieen/DIX -emporschoss/PZ -emporsteigen/DIX -emporstemmen/DIXY -emporstieg/EPZ -emporstreben/DIXY -emporziehen/DIX -emporzog/PZ -emsig/ACEPT -emulgieren/DIOXY -emulieren/DIOXY -encodieren/DIOXY -enden/DIVXY -endet/EGPVWX -endete/GNVZ -endeten/GIVWX -endgltig/ACEPT -endlagenabhngig -endlich/AEPTU -endlos/AEPT -endogen/AEPT -endotherm/AEPT -endrekursiv/AEPT -energetisch/AEPT -energiearm/AEPT -energiebewusst/AEPT -energiefressend/AEPT -energiegeladen/AEPT -energielos/AEPT -energiepolitisch/AEPT -energiereich/AEPT -energietechnisch/AEPT -energisch/ACEPT -enervieren/DIOXY -eng/ACEPT -engagieren/DIOXY -engagiert/ACEPTX -engagierte/ACNRSZ -engelhaft/AEPT -engherzig/AEPT -engl -engl. -englisch/ACEPTU -englischsprachig/AEPT -engmaschig/AEPT -engspurig/AEPT -engstirnig/AEPT -engte/NVZ -engten/IVWX -engumrissen/AEPT -engverbunden/AEPT -enorm/ACEPT -entarten/DIOXY -entband/PZ -entbehren/DIOXY -entbehrlich/ACEPTU -entbieten/DIX -entbinden/DIX -entblttern/DIOWXY -entblen/DIOXY -entbte/NZ -entboten/IWX -entbrannte/NZ -entbrennen/DIX -entbunden/AEPT -entdecken/DIOXY -entehren/DIOXY -enteignen/DIOXY -enteilen/DIOXY -enteisen/DIOXY -enterben/DIOXY -entern/DIXY -entfllt/X -entfrben/DIOXY -entfachen/DIOXY -entfahren/DI -entfallen/ADEIPT -entfalten/DIOXY -entfernen/BDIOXY -entfernt/ACEPTX -entfesseln/DIOXY -entfetten/DIOXY -entfiel/EPZ -entfilzen/DIOXY -entflammen/DIOXY -entflechten/BDIOXY -entfliehen/DIX -entflohen/AEPTWX -entfremden/DIOXY -entfhren/DIOXY -entfuhr/PZ -entgangen/AEPT -entgegen -entgegenarbeiten/DIXY -entgegenblickt/X -entgegenbringen/DIX -entgegeneilen/DIXY -entgegengearbeitet/AEPT -entgegengebracht/AEPT -entgegengeeilt/AEPT -entgegengegangen/AEPT -entgegengehalten/AEPT -entgegengehen/DIX -entgegengekommen/AEPT -entgegengelaufen/AEPT -entgegengenommen/AEPT -entgegengesehen/AEPT -entgegengesetzt/AEPT -entgegengestanden/AEPT -entgegengestellt/AEPT -entgegengetreten/AEPT -entgegengewirkt/AEPT -entgegenhalten/DI -entgegenkam/PZ -entgegenkommen/DIX -entgegenlaufen/DI -entgegennehmen/DI -entgegensah/PZ -entgegensehen/DI -entgegensetzen/DIXY -entgegensieht/X -entgegenstand/PZ -entgegenstehen/DIX -entgegenstellen/DIXY -entgegenstrecken/DIXY -entgegentreten/DI -entgegenwachsen/DI -entgegenwirken/DIXY -entgegenzubringen/D -entgegenzustellen/D -entgegenzutreten -entgegnen/DIXY -entgehen/BDIX -entgeistert/AEPT -entgeltfrei/AEPT -entgeltlich/AEPTU -entgiften/DIOXY -entging/EPZ -entginge/NZ -entgleisen/DIOXY -entgleiten/DIX -entglitten/AEPTWX -entgolten/AEPT -entgraten/DIOXY -enthltst/WX -enthuten/DIOXY -enthaaren/DIOXY -enthalten/ADEIPT -enthaltsam/ACEPTU -enthaupten/IOXY -entheben/DIX -enthielt/EPZ -enthoben/AEPTWX -enthllen/DIOXY -enthusiastisch/AEPT -entkmen/IX -entkam/PZ -entkeimen/DIOXY -entkleiden/DIOXY -entkommen/ABDEIPTX -entkoppeln/BDIOXY -entkorken/IXY -entkrften/DIOXY -entldt/X -entlsst -entluft/X -entladen/ADEIPT -entlang -entlangfhrt/X -entlanggefahren/AEPT -entlanggegangen/AEPT -entlanggehen/DIX -entlanggelaufen/AEPT -entlangwandern/DIXY -entlangzufahren -entlangzugehen -entlangzulaufen -entlarven/DIOXY -entlassen/ADEIPT -entlasten/DIOXY -entlaufen/ADEIPT -entlausen/IOXY -entledigen/DIOXY -entleeren/DIOXY -entlegen/ACEPT -entlehnen/DIOXY -entleibt/AEPT -entleihen/DIX -entlief/EPZ -entliehen/AEPTWX -entlie/EPZ -entlocken/DIOXY -entlohnen/DIOXY -entlften/DIOXY -entlud/PZ -entmachten/DIOXY -entmannen/DIOXY -entmilitarisiert/AEPT -entmndigen/DIOXY -entmutigen/DIOXY -entnhmen/IX -entnahm/PZ -entnehmen/BDI -entnimmt/X -entnommen/AEPT -entpacken/DIXY -entprellt/AEPT -entpuppen/DIOXY -entrann/PZ -entrauben/DIOXY -entrechten/DIOXY -entreien/DIX -entrichten/DIOXY -entriegeln/DIOXY -entrinnbar/AEPTU -entrinnen/BDIX -entrissen/AEPTWX -entrollen/DIOXY -entronnen/AEPT -entrcken/DIOXY -entrsten/DIOXY -entrungen/AEPT -entsagen/DIOXY -entsandt/AEPT -entsandte/ANRSZ -entsann/PZ -entschdigen/DIOXY -entschrfen/DIOXY -entscheidbar/AEPTU -entscheiden/BDIX -entscheidend/ACEPT -entschied/EPZ -entschieden/ACEIPTWX -entschlfst -entschlacken/DIXY -entschlafen/I -entschlief/PZ -entschlieen/IX -entschlssen/IX -entschlossen/ACEPTWX -entschlpfen/DIOXY -entschlsseln/DIOXY -entschlussfreudig/AEPT -entschuldbar/AEPTU -entschulden/BDIOXY -entschuldigen/DIOXY -entschwand/PZ -entschweben/DIOXY -entschwinden/DIX -entschwunden/AEPT -entseelt/AEPT -entsenden/DIOXY -entsetzen/DIOXY -entsetzlich/ACEPT -entsichern/DIOXY -entsinnen/IX -entsorgen/IXY -entspannen/DIOWXY -entspannungsfreundlich/AEPT -entspinnen/DIX -entspr -entspr. -entsprchen/IX -entsprngen/IX -entsprach/PZ -entsprang/PZp -entsprechen/DI -entspricht/X -entsprieen/DIX -entspringen/DIX -entsprochen/AEPT -entsprossen/AEPTWX -entsprungen/AEPT -entstammen/DIOXY -entstanden/AEPTWX -entstehen/DIX -entstellen/DIOXY -entstieg/PZ -entstrmen/IXY -entstnde/N -enttuschen/DIOXY -enttuschenderweise -enttarnen/DIOXY -entthronen/IOXY -entwssern/DIOXY -entwachsen/AEIPT -entwaffnen/DIOXY -entwarf/PZ -entweder -entweichen/DIWX -entweihen/DIOXY -entwenden/DIOXY -entwerfen/DI -entwerten/DIOXY -entwich/EPZ -entwichen/AEIPTWX -entwickeln/BDIOXY -entwicklungsbedrftig/AEPT -entwicklungsfhig/AEPT -entwicklungspolitisch/AEPT -entwinden/DIX -entwirft/WX -entwirren/DIOXY -entwischen/DIOXY -entwhnen/DIOXY -entworfen/AEPT -entwrdigen/DIOXY -entwurzeln/DIOXY -entzaubern/DIOXY -entzerren/DIOXY -entziehen/DIX -entziffern/BDIOXY -entzge/NZ -entzogen/AEPTWX -entzcken/DIOXY -entzckend/ACEPT -entzndbar/ACEPT -entznden/BDIOXY -entzndlich/AEPT -entzweibrechen/DI -entzweien/DIOWXY -entzweigebrochen/AEPT -entzweigegangen/AEPT -entzweigehen/DIX -enzyklopdisch/AEPT -eo -epidemisch/AEPT -episch/AEPT -epistemologisch -epochal/AEPT -epsilon -er/C -erachten/DIOXY -erahnen/DIOXY -erarbeiten/DIOXY -erbrmlich/AEPT -erbarmen/DIXY -erbarmungslos/AEPT -erbarmungswrdig/AEPT -erbat/PZ -erbauen/DIOXY -erbaulich/AEPT -erbberechtigt/AEPT -erbeben/DIXY -erben/DIVXY -erbeten/AEPT -erbeuten/DIOXY -erbfhig/AEPT -erbieten/DIX -erbitten/DIX -erbittert/ACEPT -erblassen/DIOXY -erbleichen/DIOXY -erblich/AEPT -erblicken/DIOXY -erblinden/DIOXY -erblhen/DIOXY -erbost/AEPT -erboten/AEPTWX -erbrchte/NZ -erbrach/PZ -erbrachen/OWX -erbracht/AEPTWX -erbrechen/DI -erbricht/X -erbringen/DIX -erbrochen/AEPT -erbt/EGPVX -erbte/GNVZ -erbten/GIVWX -erdhnlich/AEPT -erdacht/AEPTZ -erden/DIXY -erdenkbar/AEPTU -erdenken/BIX -erdenklich/AEPT -erdichten/DIOXY -erdig/AEPT -erdnchste/ANRS -erdnah/AEPT -erdlproduzierend/AEPT -erdolchen/DIOXY -erdreisten/DIXY -erdrosseln/DIOXY -erdrcken/DIOXY -erdschlusssicher -erdulden/DIOXY -ereifern/DIOXY -ereignen/DIXY -ereignislos/AEPT -ereignisorientiert/AEPT -ereignisreich/AEPT -ereilen/DIOXY -ererbt/AEPTZ -erfhrt/X -erfahren/ABCDEIPTU -erfahrungsgem/AEPT -erfahrungsmig/AEPT -erfand/PZ -erfassen/BDIOXY -erfinden/DIX -erfinderisch/AEPT -erfindungsreich/ACEPT -erflehen/IXY -erfocht/PZ -erfolgen/DIOXY -erfolggewohnt/AEPT -erfolglos/ACEPT -erfolgreich/ACEPT -erfolgsbetont/AEPT -erfolgversprechend/ACEPT -erforderlich/AEPT -erforderlichenfalls -erfordern/DIOXY -erforschen/BDIOXY -erfragen/BDIOXY -erfreuen/DIOXY -erfreulich/ACEPTU -erfreulicherweise -erfrieren/DIX -erfrischen/DIOXY -erfroren/AEPTWX -erfhlen/DIOXY -erfllbar/AEPTU -erfllen/BDIOXY -erfuhr/PZ -erfunden/AEPT -ergbe/N -ergnzen/DIOXY -ergab/PZ -ergangen/AEPT -ergattern/DIOXY -ergaunern/DIOWXY -ergeben/ADEIPT -ergebnislos/AEPT -ergehen/DIX -ergibt/X -ergiebig/ACEPTU -ergieen/DIX -erging/EPZ -erglhen/DIOXY -ergo -ergtzen/DIOXY -ergonomisch/AEPT -ergoss/PZ -ergrauen/DIOXY -ergreifen/DIX -ergreifend/ACEPT -ergriffen/AEPTWX -ergrimmen/DIOXY -ergrnden/BDIOXY -erhlt/L -erhltst/WX -erhngen/DIOXY -erhrten/DIOXY -erhaben/ACEPT -erhalten/ADEIPT -erhaltengeblieben/AEPT -erhaltenswert/AEPT -erhandeln/DIOXY -erhaschen/DIOXY -erheben/DIX -erheblich/ACEPTU -erheischen/DIOXY -erheitern/DIOXY -erhellen/DIOXY -erhielt/EPZ -erhitzen/DIOXY -erhbe/NZ -erhhen/DIOXY -erhren/DIXY -erhoben/AEPTWX -erhoffen/DIOXY -erholen/DIOXY -erholsam/ACEPT -erholungsbedrftig/AEPT -erholungssicher/AEPT -erinnern/DIOXY -erklten/DIOXY -erkmpfen/DIOXY -erkalten/DIOXY -erkannt/AEPTU -erkannte/ANRSZ -erkaufen/DIOXY -erkennbar/AEPTU -erkennen/BDIX -erkenntlich/ACEPT -erkenntniskritisch/AEPT -erkenntnislos -erkenntnistheoretisch/AEPT -erklren/BDIOXY -erklrlich/ACEPTU -erklrlicherweise -erklang/PZ -erklecklich/AEPT -erklettern/DIOXY -erklimmen/DIXY -erklingen/DIX -erklomm/PZ -erkoren/AEPTWX -erkranken/DIOXY -erkunden/DIOXY -erkundigen/DIXY -erlsslich/AEPTU -erlsst -erlutern/DIOXY -erluterungsbedrftig/AEPT -erlag/PZ -erlahmen/DIOXY -erlangen/DIOXY -erlassen/ADEIPT -erlauben/DIOXY -erlaucht/AEPT -erleben/BDIOXY -erlebnisreich/AEPT -erledigen/DIOXY -erlegen/DIOXY -erleichtern/DIOXY -erleiden/DIX -erlernen/BDIOXY -erlesen/ACEPT -erleuchten/DIOXY -erliegen/DIX -erlie/PZ -erlischt/X -erlitten/AEPTWX -erlschen/DIOXY -erlsen/DIOXY -erlst/AEPTU -erlogen/AEPT -erlosch/PZ -erloschen/AEPTW -ermchtigen/DIOXY -ermigen/DIOXY -ermahnen/DIOXY -ermatten/DIOXY -ermessbar/AEPTU -ermessen/BDI -ermisst -ermitteln/BDIOXY -ermglichen/DIOXY -ermorden/DIOXY -ermden/DIOXY -ermuntern/DIOXY -ermutigen/DIOXY -ernhren/DIOXY -ernhrungsbewusst/AEPT -ernannt/AEPT -ernannte/ANRSZ -ernennen/DIX -erneuern/BDIOXY -erneut/AEPT -erniedrigen/DIOXY -ernst/ACELPT -ernsthaft/ACEPT -ernten/DIXY -ernchtern/DIOXY -erffnen/DIOXY -errtern/DIOXY -erobern/DIOXY -erodieren/DIOXY -erotisch/ACEPT -erotisieren/DIOXY -erpicht/AEPT -erpressen/BDIOXY -erpresserisch/AEPT -erproben/BDIOXY -erquicken/DIOXY -erquicklich/ACEPTU -errtst/WX -errang/PZ -erraten/ADEIPT -erratisch/AEPT -errechenbar/AEPT -errechnen/DIOXY -erregbar/ACEPT -erregen/BDIOXY -erreichen/BDIOXY -erreichenswert/AEPT -erretten/DIOXY -errichten/DIOXY -erriet/EPZ -erringen/DIX -errten/DIOXY -errungen/AEPT -ersuft/X -ersann/PZ -ersatzpflichtig/AEPT -ersatzweise -ersaufen/DI -erschaffen/ADEIPTWX -erschallen/DIOXY -erschauern/DIXY -erscheinen/DIX -erschienen/AEPTWX -erschieen/DIX -erschlgt/X -erschlaffen/DIOXY -erschlagen/ADEIPT -erschleichen/DIX -erschlichen/AEPTWX -erschlieen/DIX -erschlossen/AEPTUWX -erschlug/PZ -erschpfen/DIOXY -erschossen/AEPTWX -erschrak/PZ -erschrecken/DIOXY -erschrickt/X -erschrocken/AEPTU -erschttern/DIOXY -erschtternd/ACEPT -erschuf/PZ -erschweren/DIOXY -erschwindeln/DIOXY -erschwingen/BDIOX -erschwinglich/ACEPTU -ersehen/BI -ersehnen/DIOXY -ersetzbar/ACEPT -ersetzen/BDIOXY -ersichtlich/ACEPTU -ersieht/X -ersinnen/DIOXY -ersonnen/AEPT -ersphen/IOXY -ersparen/DIOXY -erspielen/DIOXY -ersprielich/ACEPTU -erst/AEPTW -erstach/PZ -erstammte -erstanden/AEPTWX -erstarken/DIOXY -erstarren/DIOXY -erstatten/DIOXY -erstaunen/DIOXY -erstaunlich/ACEPT -erstaunlicherweise -erstbeste/ANRS -erstechen/DI -erstehen/DIX -ersteigen/DIX -ersteigern/DIOXY -erstellen/DIOXY -ersten/SW -erster/AEPT -ersterben/DI -erstgenannt/AEPT -ersticht/X -ersticken/DIOXY -erstieg/PZ -erstinstanzlich/AEPT -erstklassig/AEPT -erstmal/S -erstmalig/AEPT -erstochen/AEPT -erstplatziert/AEPT -erstrahlen/DIOXY -erstrangig/AEPT -erstreben/DIOXY -erstrebenswert/ACEPT -erstrecken/DIXY -erststellig/AEPT -erstrmen/DIOXY -ersuchen/DIOXY -ertappen/DIOXY -ertasten/BDIOXY -erteilen/DIOXY -ertnen/DIOXY -ertrglich/ACEPTU -ertrgt/X -ertrnken/DIOXY -ertrumen/DIOXY -ertragen/ABDEIPTW -ertragreich/AEPT -ertragsabhngig/AEPT -ertragsgerecht/AEPT -ertragslos/AEPT -ertragsschwach/AEPT -ertrank/PZ -ertrinken/DIX -ertrug/PZ -ertrunken/AEPT -ertftelt/AEPT -erturnen/DIOXY -erbrigen/BDIOXY -eruieren/DIOXY -erwchst -erwgen/DIX -erwhlen/IOXY -erwhnen/DIOXY -erwhnenswert/AEPT -erwrmen/DIOXY -erwachen/DIOXY -erwachsen/ADEIPT -erwandern/DIOXY -erwarb/PZ -erwarten/BDIOXY -erwartungsfreudig/AEPT -erwartungsgem/AEPT -erwartungsvoll/AEPT -erwecken/DIOXY -erwehren/DIOXY -erweichen/DIOXY -erweisen/DIX -erweislich/AEPT -erweitern/BDIOXY -erweiterungsfhig/AEPT -erwerben/BDI -erwerbsbehindert/AEPT -erwerbsfhig/AEPT -erwerbslos/AEPT -erwerbsttig/AEPT -erwerbsunfhig/AEPT -erwidern/DIOXY -erwiesen/AEPTWX -erwiesenermaen -erwirbt/WX -erwirken/DIOXY -erwirtschaften/DIOXY -erwischen/DIOXY -erwogen/AEPTWX -erworben/AEPT -erwnscht/ACEPTU -erwrgen/DIOXY -erzhlen/DIOWXY -erzhlerisch/AEPT -erzbischflich/AEPT -erzdumm/AEPT -erzengelhaft/AEPT -erzeugen/BDIOXY -erziehbar/AEPTU -erziehen/BDIX -erzieherisch/AEPT -erziehungsberechtigt/AEPT -erzielen/BDIOXY -erzittern/DIOXY -erzkonservativ/AEPT -erzogen/AEPTWX -erzogene/ANRSU -erzrnen/DIOXY -erzwang/PZ -erzwingen/BDIX -erzwungen/AEPT -es/q -eschatologisch/AEPT -eselhaft/ACEPT -eskalieren/DIOXY -esoterisch/AEPT -essen/BDI -essentiell/AEPT -essenziell/AEPT -estnisch/AEPT -et -etablieren/DIOXY -etagenfrmig/AEPT -etappenweise/ANRS -etatmig/AEPT -etc -etc. -ethisch/AEPT -ethnisch/AEPT -ethnologisch/AEPT -ethologisch/AEPT -etikettieren/DIOXY -etliche/ANRS -etwa/S -etwaig/AEPT -etymologisch/AEPT -euch -euer/A -euklidisch/AEPT -eulenartig/AEPT -eulersch/AEPT -euphorisch/AEPT -eurasisch/AEPT -euresgleichen -eurigen -europisch/AEPT -europaweit/AEPT -evakuieren/DIOXY -evaluieren/BDIOXY -evangelisch/AEPT -eventuell/AEPT -evident/AEPT -evolutionr/AEPT -evtl -evtl. -ewig/AELPT -exakt/AEPT -exaltiert/ACEPT -examinieren/DIOXY -exegetisch/AEPT -exekutieren/DIOXY -exekutiv/AEPT -exemplarisch/AEPT -exerzieren/DIXY -exhumieren/DIOXY -exilpolnisch/AEPT -exilungarisch/AEPT -existent/AEPT -existentiell/AEPT -existenzbedrohend/AEPT -existenzgefhrdend/AEPT -existenziell/AEPT -existieren/DIXY -exklusiv/ACEPT -exogen/AEPT -exotherm/AEPT -exotisch/ACEPT -expandieren/DIOXY -expansionistisch/AEPT -expansionsfhig/ACEPT -expansiv/ACEPT -experimentell/AEPT -experimentieren/DIXY -explizit/AEPT -explodieren/DIOXY -explosionsartig/AEPT -explosionsfhig/AEPT -explosionsgefhrdet/AEPT -explosionsgeschtzt/AEPT -explosiv/ACEPT -exponentiell/AEPT -exponieren/DIOXY -exponiert/ACEPTX -exponierte/ACNRSZ -exportieren/BDIOXY -exportorientiert/AEPT -express -expressionistisch/AEPT -expressis -expressiv/AEPT -exquisit/AEPT -ext. -ext/W -extensiv/AEPT -extern/AEPT -exterritorial/AEPT -extra -extrahieren/DIOXY -extrapolieren/BDIOXY -extravagant/ACEPT -extrem/ACEPT -extremistisch/AEPT -extrudieren/DIOXY -exzellent/AEPT -exzentrisch/AEPT -exzessiv/ACEPT -fcheln/DIXY -fcherfrmig/AEPT -fchern/DIXY -fcherbergreifend/AEPT -fdeln/DIXY -fhig/ACEPTU -fhrt/VX -fllen/DIXY -fllig/AEGPT -fllst/GV -flschen/BDIVXY -flschlich/AEPT -flschlicherweise -flscht/EGPVX -flschte/GNVZ -flschten/GIVWX -fnde/NZ -fngt/VX -frben/BDIVXY -fabelhaft/AEPT -fabrikneu/AEPT -fabrizieren/DIOXY -facettenreich/AEPT -fach/AELPT -fachrztlich/AEPT -fachen/IWXY -fachgem/ACEPT -fachgerecht/ACEPT -fachkundig/ACEPT -fachlich/ACEPT -fachmnnisch/ACEPT -fachsimpeln/IXY -fachspezifisch/AEPT -fackelhnlich/AEPT -fackeln/DIXY -facto -fade/ACNRS -fadenscheinig/ACEPT -fahl/ACEPT -fahnden/DIXY -fahrbar/ACEPTU -fahrbereit/AEPT -fahren/BDGIV -fahrig/ACEPT -fahrlssig/ACEPT -fahrplanmig/AEPT -fair/AEPTU -fakirhaft/AEPT -faktisch/AEPT -fakturieren/IOXY -fakultativ/AEPT -falb/AEPT -fallen/DGIV -falls -fallschirmhnlich/AEPT -fallschtig/AEGPT -fallweise -falsch/AEPT -falsche/ACNRS -falschspielen/DIXY -falten/DIXY -faltenfrei/AEPT -faltig/ACEPT -familir/ACEPT -familienbetrieben/AEPT -familienfremd/AEPT -familiengerecht/AEPT -familienunabhngig/AEPT -famos/ACEPT -fanatisch/AEPT -fand/PZ -fangbewehrt/AEPT -fangen/DGIV -fantasielos/ACEPT -fantasiereich/ACEPT -fantasievoll/ACEPT -fantastisch/ACEPT -farbecht/AEPT -farbenblind/AEPT -farbenfreudig/AEPT -farbenfroh/AEPT -farbenprchtig/ACEPT -farbenreich/AEPT -farbfhig/AEPT -farbgraphisch/AEPT -farbig/ACEPT -farblich/AEPT -farblos/ACEPT -faschistisch/AEPT -faseln/DIXY -faselt/EGPX -faserig/ACEPT -fassbar/AEPTU -fassen/BDIVXY -fassettenreich/AEPT -fasst/EGPV -fasste/GNVZ -fassten/GIVWX -fassungslos/ACEPT -fasten/DIWXY -fastet/EGPWX -faszinieren/DIOXY -faszinierend/ACEPT -fatal/ACEPT -fatalistisch/AEPT -fauchen/DIXY -faul/ACEPTZ -faulen/DIWXY -faulenzen/DIXY -faulenzt/EGPX -faulig/AEPT -faulte/GNVZ -faulten/GIVWX -faustdick/AEPT -faustgro/AEPT -favorisieren/IOXY -faxen/DIXY -fechten/DIVX -federfhrend/AEPT -federgewichtig/AEPT -federleicht/AEPT -federn/DIXY -feenhaft/ACEPT -fegen/DIXY -fehlen/BDIVWXY -fehleranfllig/AEPT -fehlerbehaftet/AEPT -fehlerfrei/AEPT -fehlerhaft/ACEPT -fehlerlos/AEPT -fehlertolerant/AEPT -fehlgeleitet/AEPT -fehlgeschlagen/AEPT -fehlinterpretieren/DIOXY -fehlschlgt/X -fehlschlagen/DI -fehlschlug/PZ -fehlt/EGPVWX -fehlte/GNVZ -fehlten/GIVWX -feierlich/ACEPT -feiern/DIXY -feig/ACEPT -feilbieten/DIX -feilen/DIWXY -feilschen/DIXY -feilzubieten/D -fein/ACEPTU -feindlich/ACEPT -feindselig/AEPT -feineinstellen/DIXY -feinfhlig/ACEPT -feingespitzt/AEPT -feinhutig/AEPT -feinhrig/ACEPT -feinkrnig/AEPT -feinmaschig/AEPT -feinmechanisch/AEPT -feinnervig/AEPT -feinschmeckerisch/AEPT -feinsinnig/AEPT -feinstverteilt/AEPT -feinverteilt/AEPT -feldberlegen/AEPT -felsenfest/AEPT -felsig/ACEPT -feminin/AEPT -fern/ACEPT -fernab -fernabgelegen/AEPT -fernbedienbar/AEPT -fernbleiben/DIX -fernblieb/EPZ -ferneingestellt/AEPT -fernerhin -ferngeblieben/AEPT -ferngehalten/AEPT -ferngeladen/AEPT -ferngelenkt/AEPT -ferngesteuert/AEPT -ferngezndet/AEPT -fernkontrolliert/AEPT -fernladbar/AEPT -fernlenken/BDIXY -fernmeldetechnisch/AEPT -fernmndlich/AEPT -fernstlich/AEPT -fernschriftlich/AEPT -fernsehen/DI -fernsichtig/AEPT -fernsieht/X -fernzubleiben -fernzuhalten/D -ferromagnetisch/AEPT -fertig/ACEPTZ -fertigen/DIWXY -fertigte/GNVZ -fertigten/GIVWX -fertigungstechnisch/AEPT -fesch/ACEPT -fesseln/DIWXY -fesselnd/ACEPT -fest/ACELPT -festbinden/DIX -festfahren/DI -festgebunden/AEPT -festgefahren/AEPT -festgehalten/AEPT -festgeklebt/AEPT -festgeklemmt/AEPT -festgelegt/AEPT -festgemacht/AEPT -festgenagelt/AEPT -festgenommen/AEPT -festgeschnallt/AEPT -festgeschraubt/AEPT -festgeschrieben/AEPT -festgesetzt/AEPT -festgestanden/AEPT -festgesteckt/AEPT -festgestellt/AEPT -festgezogen/AEPT -festhltst/WX -festhalten/DI -festhielt/EPZ -festigen/DIVXY -festigt/EGPVX -festigte/GNVZ -festigten/GIVWX -festkleben/DIXY -festlegen/BDIXY -festlich/ACEPT -festliegen/DIX -festmachen/DIXY -festmontieren/DIOXY -festnageln/DIXY -festnehmen/DI -festnimmt/X -festschmoren/DIXY -festschnallen/BDIXY -festschrauben/IXY -festschreiben/BIX -festschrieb/PZ -festsetzen/DIXY -festsitzen/DIX -festspannen/DIXY -feststand/PZ -feststecken/DIXY -feststehen/DIX -feststellen/BDIXY -feststnde/N -festverzinslich/AEPT -festziehen/DIX -festzuhalten/D -festzukrallen -festzulegen/D -festzumachen/D -festzunehmen/D -festzuschrauben/D -festzuschreiben/D -festzusetzen/D -festzustehen -festzustellen/D -fett/ACEPT -fettfrei/AEPT -fettig/ACEPT -fettschwitzend/AEPT -fetzig/AEPT -feucht/ACEPT -feuchtfrhlich/AEPT -feuchtigkeitsgeschtzt/AEPT -feudal/ACEPT -feuerfest/ACEPT -feuergefhrlich/AEPT -feuern/DIVXY -feuerrot/AEPT -feuersicher/AEPT -feuert/EGPVX -feuerte/GNVZ -feuerten/GIVWX -feurig/ACEPT -ff -ff. -fichtst/VWX -ficken/DIWXY -fidel/EPT -fideler/AEPT -fieberartig/AEPT -fieberfrei/AEPT -fieberhaft/ACEPT -fieberig/AEPT -fiebern/DIXY -fiebert/EGPX -fiel/EGPVZ -fiele/GNV -fielen/GIVWX -fielt/GVWX -fies/ACEPT -figrlich/AEPT -fiktiv/AEPT -filetieren/DIOWXY -filigran/AEPT -filmen/BDIVXY -filmisch/AEPT -filmt/EGPVX -filmte/GNVZ -filmten/GIVWX -filterlos/AEPT -filtern/DIXY -filzig/AEPT -final/AEPT -finanziell/AEPT -finanzieren/BDIOXY -finanzkrftig/AEPT -finanzpolitisch/AEPT -finanztechnisch/AEPT -finden/BDIX -findig/ACEPT -fing/PVZ -fingerig/AEPT -fingieren/DIOXY -finnisch/AEPT -finster/ACEPT -firmeneigen/AEPT -firmenspezifisch/AEPT -firmenbergreifend/AEPT -fischen/DIXY -fischreich/ACEPT -fiskalisch/AEPT -fit -fitte/ACNRS -fix/AEPT -fixen/DIWXY -fixieren/DIOXY -fixt/EGPW -flchendeckend/AEPT -flchenmig/AEPT -flmisch/AEPT -flach/ACEPT -flachbrstig/AEPT -flachdrcken/DIXY -flachhglig/AEPT -flackern/DIXY -flackert/EGPX -flaggen/DIXY -flaggt/EGPX -flagrante/ANRS -flammen/BDIXY -flankieren/DIXY -flankte -flanschen/IXY -flanscht/EGPX -flatterhaft/ACEPT -flattern/DIXY -flattert/EGPX -flau/ACEPT -flaumig/AEPT -flechten/BDIX -flechtend/AEPTV -fleckenlos/AEPT -fleckig/AEPT -flegelhaft/AEPT -flehen/DILXY -fleht/EGPX -fleiig/ACEPT -fleischfarben/AEPT -fleischig/AEPT -fleischlich/AEPT -fleischlos/AEPT -flektierbar/AEPTU -flektieren/BDIOWXY -flennen/DIXY -fletschen/DIXY -fleucht -flexibel/ACU -flichtst/VWX -flicken/DIXY -fliegen/DIVWX -fliegerisch/AEPT -fliehen/DIWX -flieen/DIVX -flimmern/DIXY -flink/AEPT -flirten/DIXY -flitzen/DIXY -flitzt/EGPX -flge/NZ -flhen/IX -flen/DIXY -flsse/NZ -flten/DIXY -fltet/EGPWX -flocht/PVZ -flochten/GVWX -flocken/DIXY -flockig/AEPT -flog/PVZ -flogen/GVWX -floh/PZ -florettartig/AEPT -florieren/DIXY -floss/PVZ -flossen/GVWX -flott/AEPT -flottgehend/AEPT -flottgemacht/AEPT -flottmachen/DIXY -flottzumachen/D -flchten/DIXY -flchtig/ACEPT -flchtlingsfrei/AEPT -flgellos/AEPT -flgge/ANRS -flssig/ACEPT -flssigkeitsgefllt/AEPT -flstern/DIXY -fluchen/DIVXY -flucht/EGPVX -fluchtartig/AEPT -fluchtbereit/AEPT -flugerfahren/AEPT -flugmedizinisch/AEPT -flugs -flugtauglich/AEPT -flugtechnisch/AEPT -fluktuieren/DIXY -flunkern/DIXY -flunkert/EGPX -fluoreszieren/DIXY -flussabwrts -flussaufwrts -flutschen/DIXY -fderal/AEPT -fderalistisch/AEPT -fderativ/AEPT -fhnen/DIXY -fhnig -frderlich/ACEPT -frdern/DIXY -frderungsbedrftig/AEPT -frmig/AEPTU -frmlich/ACEPTU -focht/PVZ -fokussieren/DIOXY -folgen/DIVXY -folgendermaen -folgenlos/AEPT -folgenreich/AEPT -folgenschwer/ACEPT -folgerichtig/AEPT -folgern/DIXY -folgewidrig/AEPT -folglich -folgsam/ACEPTU -folgt/EGPVX -foliengeschtzt/AEPT -foltern/DIXY -foppen/DIXY -forcieren/DIOXY -fordern/DIXY -forellenblau/AEPT -forma -formal/ACEPT -formalisieren/BDIOXY -formalistisch/ACEPT -formaljuristisch/AEPT -formatieren/BDIOXY -formell/ACEPT -formelmig/AEPT -formen/BDIVXY -formgerecht/AEPT -formgeschichtlich/AEPT -formieren/DIOXY -formlos/ACEPT -formschn/ACEPT -formt/EGPVX -formte/GNVZ -formten/GIVWX -formulieren/BDIOXY -formvollendet/AEPT -forsch/AEPTZ -forschen/DIWXY -forschungsfreudig/AEPT -forschungsorientiert/AEPT -forstlich/AEPT -forstwirtschaftlich/AEPT -fort -fortan -fortbestanden/AEPT -fortbestehen/DIX -fortbestnde/NZ -fortbewegen/DIOXY -fortbilden/DIXY -fortbleiben/DIX -fortdauern/DIXY -fortentwickeln/IXY -fortfhrt/X -fortfahren/DI -fortfallen/DI -fortfegen/DIXY -fortfiel/EPZ -fortfliegen/DIX -fortfhren/DIXY -fortgebildet/AEPT -fortgeblieben/AEPT -fortgebracht/AEPT -fortgefahren/AEPT -fortgefallen/AEPT -fortgeflogen/AEPT -fortgefhrt/AEPT -fortgegangen/AEPT -fortgehen/DIX -fortgekommen/AEPT -fortgelassen/AEPT -fortgelaufen/AEPT -fortgelebt -fortgepflanzt/AEPT -fortgerumt/AEPT -fortgerissen/AEPT -fortgeschafft/AEPT -fortgeschrieben/AEPT -fortgeschritten/AEPT -fortgesetzt/AEPT -fortgestohlen/AEPT -fortgestoen/AEPT -fortgeweht -fortgezogen/AEPT -fortging/EPZ -fortholen/DIXY -fortjagen/DIXY -fortkommen/DIX -fortlsst -fortlassen/DI -fortlaufen/DI -fortleben/DIXY -fortnimmt/X -fortpflanzen/DIXY -fortrumen/DIXY -fortrannte/NZ -fortreien/DIX -fortschaffen/DIXY -fortschreiten/DIX -fortschrittlich/ACEPT -fortsetzen/BDIXY -fortspinnen/DIX -fortsplen/DIXY -fortstehlen/DI -fortstoen/DI -fortwhren/DIXY -fortziehen/DIX -fortzubilden/D -fortzudenken/D -fortzufahren -fortzufhren/D -fortzugehen -fortzulaufen -fortzunehmen/D -fortzupflanzen/D -fortzureien/D -fortzuschaffen/D -fortzuschicken/D -fortzusetzen/D -fortzuziehen/D -fossil/AEPT -fotogen/AEPT -fotografieren/DIOXY -fotografisch/AEPT -fotokopierfhig/AEPT -fototechnisch/AEPT -frnkisch/AEPT -fre/NZ -frsen/DIWXY -frachtfrei/AEPT -fragen/BDIWXY -fraglich/ACEPT -fraglos/AEPT -fragmentarisch/AEPT -fragmentieren/DIOXY -fragwrdig/ACEPT -fraktal/AEPT -fraktionslos/AEPT -frankieren/DIOXY -franko -frankophil/ACEPT -frankophon/AEPT -franzsisch/AEPT -franzsischsprachig/AEPT -frappant/AEPT -frappieren/DIXY -fra/PVZ -fratzenhaft/AEPT -frauenhaft/AEPT -frauenlos/AEPT -fraulich/ACEPT -frech/ACEPT -frei/ACEPTZ -freiberuflich/AEPT -freibeschriftbar/AEPT -freidemokratisch/AEPT -freidenkerisch/AEPT -freien/DIWXY -freifinanziert/AEPT -freigab/PZ -freigearbeitet -freigeben/DI -freigebig/ACEPT -freigegeben/AEPT -freigehabt -freigehalten/AEPT -freigekmpft/AEPT -freigelassen/AEPT -freigelegt/AEPT -freigemacht/AEPT -freigerumt/AEPT -freigeschaltet/AEPT -freigeschwommen -freigesetzt/AEPT -freigesprochen/AEPT -freigestanden -freigestellt/AEPT -freigewhlt/AEPT -freigeworden/AEPT -freigibt/X -freigiebig/AEPT -freihndig/AEPT -freihaben/DI -freihalten/DI -freiheitlich/ACEPT -freiheraus -freihielt/PZ -freilassen/DI -freilegen/DIXY -freilich -freimachen/DIXY -freimtig/ACEPT -freiprogrammierbar/AEPT -freischaffend/AEPT -freischalten/DIXY -freischneiden/DIX -freischweben/DIXY -freischwimmen/DIX -freisetzen/DIXY -freisinnig/AEPT -freisprechen/DI -freistehend/AEPT -freistellen/DIXY -freitags -freitragend/AEPT -freiwerden/DI -freiwillig/AEPTU -freizgig/ACEPT -freizugeben/D -freizuhalten/D -freizukmpfen/D -freizulegen/D -freizumachen/D -freizuschalten/D -freizuschtteln -freizusprechen/D -fremd/AEPT -fremdartig/AEPT -fremdbezogen/AEPT -fremdgesteuert/AEPT -fremdlndisch/AEPT -fremdsprachig/AEPT -fremdsprachlich/AEPT -frenetisch/AEPT -frequentieren/IOXY -frequenzabhngig/AEPT -frequenzmoduliert/AEPT -frequenzprogrammierbar/AEPT -frequenzunabhngig/AEPT -fressen/DGI -freudestrahlend/AEPT -freudevoll/AEPT -freudig/ACEPT -freudlos/ACEPT -freudvoll/AEPT -freuen/DIXY -freundlich/ACEPTU -freundlicherweise -freundlichst/AEPTW -freundlos/AEPT -freundschaftlich/AEPT -freut/EGPX -frevelhaft/AEPT -freveln/DIXY -friedenserhaltend/AEPT -friedensliebend/ACEPT -friedenstrend/AEPT -friedfertig/ACEPT -friedlich/ACEPT -friedliebend/AEPT -friedlos/ACEPT -frieren/DGIVX -friesisch/AEPT -frisch/ACEPT -frisieren/DIOXY -frisst/W -fristen/DIXY -fristgerecht/AEPT -fristlos/AEPT -frittieren/DIXY -frivol/AEPT -frhlich/ACEPT -frnen/DIXY -frsteln/DIXY -froh/ACEPT -frohe/ACNRS -frohlocken/DIXY -frohsinnig/AEPT -fromm/AEPT -frontal/AEPT -frontnah/AEPT -fror/GPVZ -froren/GVWX -frostbestndig/AEPT -frostig/ACEPT -frostsicher/AEPT -frottieren/IOXY -frotzelte -frh/ACEPT -frhchristlich/AEPT -frhe/ACNRS -frhest/AEPTW -frhesten/SW -frhestmglich/AEPT -frhlingshaft/AEPT -frhmenschlich/AEPT -frhminoisch/AEPT -frhmorgens -frhneuzeitlich/AEPT -frhreif/ACEPT -frhsten/S -frhstcken/DIXY -frhstckt/EGPX -frhzeitig/ACEPT -fruchtbar/ACEPTU -fruchten/BDIXY -fruchtlos/AEPT -frustrieren/DIOXY -ftp -fgen/DIVXY -fglich -fgsam/ACEPTU -fgt/EGPVX -fhlen/BDIXY -fhren/DIVXY -fhrerlos/AEPT -fhrt/EGPVX -fhrte/GNVZ -fhrten/GIVWX -fllen/BDIVXY -fllig/AEPT -fllt/EGPVX -fllte/GNVZ -fllten/GIVWX -fndig -fnfaktig/AEPT -fnfdreiviertel -fnfeinhalb -fnffach/AEPT -fnfgeschossig/AEPT -fnfhundert -fnfhundertste/ANRS -fnfjhrig/AEPT -fnfkpfig/AEPT -fnfmal -fnfprozentig/AEPT -fnfstellig/AEPT -fnft/AEPTW -fnftgig/AEPT -fnftausend -fnfteilig/AEPT -fnftel -fnfundachtzig -fnfundachtzigste/ANRS -fnfunddreiig -fnfunddreiigste/ANRS -fnfundfnfzig -fnfundfnfzigste/ANRS -fnfundneunzig -fnfundneunzigste/ANRS -fnfundsechzig -fnfundsechzigste/ANRS -fnfundsiebzig -fnfundsiebzigste/ANRS -fnfundvierzig -fnfundzwanzig -fnfviertel -fnfwchig/AEPT -fnfzehn -fnfzehnfach/AEPT -fnfzehnhundert -fnfzehnprozentig/AEPT -fnfzehntgig/AEPT -fnfzehnte/ANRS -fnfzig/R -fnfzigjhrig/AEPT -fnfzigste/ANRS -fnfzigtausend -fr/S -frchten/DIXY -frchterlich/ACEPT -freinander -frlieb -frsorgerisch/AEPT -frsorglich/ACEPT -frstlich/AEPT -frwahr -fttern/DIVXY -fttert/EGPVX -ftterte/GNVZ -ftterten/GIVWX -fuchsen/DIXY -fuchsrot/AEPT -fuchsteufelswild/AEPT -fuchteln/DIXY -fuhr/PVZ -fulminant/AEPT -fummeln/DIXY -fundamental/AEPT -fundieren/DIOXY -fungieren/DIXY -funkeln/DIXY -funkelnagelneu/AEPT -funkelt/EGPX -funken/DIXY -funkferngesteuert/AEPT -funktechnisch/AEPT -funktional/AEPT -funktionalistisch/AEPT -funktionell/AEPT -funktionieren/DIXY -funktionsfhig/AEPT -funktionsidentisch/AEPT -funktionsmig/AEPT -funktionstchtig/AEPT -funktionsunfhig/AEPT -furchtbar/ACEPT -furchtlos/ACEPT -furchtsam/ACEPT -furios/AEPT -fuballbegeistert/AEPT -fuballerisch/AEPT -fuen/DIXY -fukrank/AEPT -fusionieren/DIOXY -futsch -futtern/DIXY -futuristisch/AEPT -gb/EPZ -ghnen/DIXY -ghnt/EGPX -gngeln/DIXY -gngig/ACEPT -gnzlich/AEPT -gren/DIXY -grtnerisch/AEPT -gab/PVZ -gabeln/DIXY -gablig/AEPT -gackern/DIXY -gackert/EGPX -gaffen/DIVXY -gafft/EGPVX -galant/ACEPT -gallig/AEPT -gallisch/AEPT -galoppieren/DIXY -galt/PVZ -galv -galvanisch/AEPT -gamma -gammlig/ACEPT -gangbar/ACEPTU -gangsterhaft/AEPT -ganz/AEPT -ganzheitlich/AEPT -ganzseitig/AEPT -ganztgig/AEPT -ganzwchig/AEPT -ganzzahlig/AEPT -gar/AEPT -garantieren/DIOXY -garni -garnieren/DIOXY -garstig/ACEPT -gartenbautechnisch/AEPT -gasartig/AEPT -gasbetrieben/AEPT -gasfrmig/AEPT -gasfrei/AEPT -gastfreundlich/AEPT -gastgebend/AEPT -gastieren/DIXY -gastlich/ACEPTU -gastronomisch/AEPT -gaukeln/DIWXY -gazellenschlank/AEPT -gechtet/AEPT -gedert/AEPT -gendert/AEPT -gengstigt/AEPT -getzt/AEPT -geuert/AEPT -geachtet/ACEPTU -geadelt/AEPT -geahndet/AEPTU -geahnt/AEPTU -gealtert/AEPT -geangelt/AEPT -geankert/AEPT -gearbeitet/AEPT -geartet/AEPT -geatmet/AEPT -geb. -gebndigt/AEPT -gebrden/DIXY -gebren/DIX -gebacken/AEPT -gebadet/AEPT -gebaggert/AEPT -geballt/AEPT -gebannt/AEPT -gebar/PZ -gebastelt/AEPT -gebauscht/AEPT -gebaut/AEPT -gebefreudig/ACEPT -gebeichtet/AEPT -geben/DGIW -gebend/AEPTV -gebessert/AEPT -gebeten/AEPTU -gebetsmhlenartig/AEPT -gebettet/AEPT -gebeugt/AEPT -gebeutelt/AEPT -gebieten/DIX -gebieterisch/AEPT -gebietsfremd/AEPT -gebildet/ACEPTU -gebilligt/AEPT -gebirgig/AEPT -gebissen/AEPT -geblasen/AEPT -gebleicht/AEPT -geblendet/AEPT -geblieben/AEPT -geblmt/AEPT -gebogen/AEPT -gebohrt/AEPT -gebongt -geboren/AEPTU -geborgen/AEOPT -geborgt/AEPT -geborsten/AEPT -geboten/AEPTWX -gebruchlich/ACEPTU -gebrunt/AEPT -gebracht/AEPT -gebrandet/AEPT -gebrandmarkt/AEPT -gebrandschatzt/AEPT -gebrannt/AEPT -gebraten/AEPT -gebrauchen/DIOXY -gebrauchsfhig/AEPT -gebrauchsfertig/AEPT -gebraust/AEPT -gebraut/AEPTX -gebrechlich/ACEPT -gebremst/AEPTU -gebrckelt/AEPT -gebrochen/AEPTU -gebrllt/AEPT -gebrtet/AEPT -gebrummt/AEPT -gebckt/AEPT -gebgelt/AEPT -gebhren/DIXY -gebhrenbefreit/AEPT -gebhrenfrei/AEPT -gebhrenpflichtig/AEPT -gebhrlich/AEPTU -gebndelt/AEPT -gebrgt/AEPT -gebrstet/AEPT -gebrtig/AEPT -gebt/AEPT -gebucht/AEPT -gebuddelt -gebunden/AEPTU -geburtenrmste/ANRS -geburtenreich/AEPT -gebuttert/AEPT -gechartert/AEPT -geckenhaft/AEPT -gedmpft/AEPT -gedacht/AEPT -gedachte/ANRSZ -gedankenlos/ACEPT -gedankenreich/AEPT -gedankenverloren/AEPT -gedankenvoll/AEPT -gedanklich/AEPT -gedankt/AEPT -gedauert/AEPT -gedeckt/AEPTU -gedehnt/AEPT -gedeihen/DIX -gedeihlich/AEPT -gedemtigt/AEPT -gedenken/DIX -gedeutet/AEPT -gedichtet/AEPT -gediegen/ACEPT -gediehen/AEPTWX -gedient/AEPT -gedrrt/AEPT -gedoktort -gedopt/AEPT -gedrngt/AEPT -gedrahtet -gedreht/AEPT -gedrillt/AEPT -gedrittelt/AEPT -gedroht/AEPT -gedrosselt/AEPT -gedrckt/AEPT -gedruckt/AEPT -gedrungen/AEPT -gedngt/AEPT -gednstet/AEPT -geduckt/AEPT -geduftet/AEPT -gedulden/DIOXY -geduldig/ACEPTU -gedungen/AEPT -gedunsen/AEPT -geduscht/AEPT -geebnet/AEPT -geehelicht/AEPT -geehrt/AEPT -geeicht/AEPT -geeifert/AEPT -geeignet/ACEPTU -geeilt/AEPT -geeinigt/AEPT -geeint/AEPT -geendet/AEPT -geentert/AEPT -geerbt/AEPT -geerdet/AEPT -geerntet/AEPT -gefchert/AEPT -gefdelt/AEPT -gefhrden/DIOXY -gefhrdet/ACEPTWX -gefhrlich/ACEPTU -gefllig/ACEPTU -geflligst/AEPTW -gefllt/AEPTX -geflscht/AEPT -gefrbt/AEPTU -gefahndet/AEPT -gefahrbringend/ACEPT -gefahren/AEPT -gefahrentrchtig/ACEPT -gefahrlos/ACEPT -gefahrvoll/ACEPT -gefallen/AEIPT -gefallschtig/AEPT -gefaltet/AEPT -gefangen/AEPT -gefasst/AEPT -gefault/AEPT -gefaxt/AEPT -gefechtsbereit/AEPT -gefegt/AEPT -gefehlt/AEPT -gefeiert/AEPT -gefeilt/AEPT -gefeit/AEPT -gefertigt/AEPT -gefesselt/AEPT -gefestigt/AEPT -gefeuert/AEPT -gefickt/AEPT -gefiedert/AEPT -gefiel/EPZ -gefilmt/AEPT -gefiltert/AEPT -gefischt/AEPT -gefleckt/AEPT -gefletscht/AEPT -geflickt/AEPT -geflimmert/AEPT -geflissentlich/AEPT -geflochten/AEPT -geflogen/AEPT -geflohen/AEPT -geflossen/AEPT -geflchtet/AEPT -geflgelt/AEPT -geflstert/AEPT -gefhnt/AEPT -gefrdert/AEPT -gefolgert/AEPT -gefoltert/AEPT -gefoppt/AEPT -gefordert/AEPT -geformt/AEPT -geforscht/AEPT -gefoult/AEPT -gefrig/ACEPT -gefrst/AEPT -gefragt/AEPTU -gefreit/AEPT -gefressen/AEPT -gefrevelt/AEPT -gefrieren/BDIX -gefristet/AEPT -gefroren/AEPTWX -gefgig/ACEPTU -gefhllos/ACEPT -gefhlsbetont/ACEPT -gefhlsduslig/AEPT -gefhlsmig/AEPT -gefhlsvoll/ACEPT -gefhlt/AEPT -gefhlvoll/ACEPT -gefhrt/AEPT -gefllt/AEPT -gefrchtet/ACEPT -gefttert/AEPT -gefunden/AEPT -gefunkt/AEPT -gegngelt/AEPT -gegrt/AEPT -gegangen/AEPT -gegeben/AEPT -gegebenenfalls -gegeneinander -gegengewichtslos/AEPT -gegengezeichnet/AEPT -gegenlufig/AEPT -gegenstzlich/ACEPT -gegenseitig/AEPT -gegenstndlich/AEPT -gegenstandslos/AEPT -gegensteuern/DIXY -gegenteilig/AEPT -gegenber -gegenbergestanden/AEPT -gegenbergestellt/AEPT -gegenbergetreten/AEPT -gegenberliegen/DIX -gegenbershe/NZ -gegenbersehen/DI -gegenbersieht/X -gegenberstand/PZ -gegenberstehen/DIX -gegenberstellen/DIXY -gegenbertreten/DI -gegenberzustehen -gegenwrtig/AEPT -gegenzeichnen/DIXY -gegenzusteuern/D -gegessen/AEPT -geglttet/AEPT -geglaubt/AEPT -gegliedert/AEPT -geglckt/AEPT -gegnerisch/AEPT -gegnnt/AEPT -gegolten/AEPT -gegossen/AEPT -gegraben/AEPT -gegriffen/AEPT -gegrillt/AEPT -gegrndet/AEPT -gegrt/AEPT -gehkelt/AEPT -gehngt/AEPT -gehnselt/AEPT -gehrtet/AEPT -gehssig/AEPT -gehtschelt/AEPT -gehuft/AEPT -gehabt/AEPT -gehackt/AEPT -gehalten/AEPTU -gehaltreich/ACEPT -gehaltvoll/AEPT -gehandelt/AEPT -gehandhabt/AEPT -gehandikapt/AEPT -gehangen/AEPT -geharnischt/AEPT -gehasst/AEPT -gehaucht/AEPT -gehauen/AEPT -gehbehindert/AEPT -geheftet/AEPT -gehegt/AEPT -geheiligt/AEPT -geheilt/AEPTU -geheim/ACEPT -geheimdienstlich/AEPT -geheimgehalten/AEPT -geheimnisvoll/ACEPT -geheimpolizeilich/AEPT -geheimtuerisch/AEPT -geheiratet/AEPT -geheien/AEPTU -geheizt/AEPTU -gehemmt/AEPTU -gehen/DIVWX -gehenkt/AEPT -gehetzt/AEPT -geheuchelt/AEPTU -gehindert/AEPTU -gehisst/AEPT -gehren/DIOXY -gehrig/AEPTU -gehrlos/AEPT -gehobelt/AEPTU -gehoben/ACEPT -geholfen -geholt/AEPT -gehorchen/DIXY -gehorsam/ACEPTU -gehortet/AEPT -gehllt/AEPT -gehtet/AEPT -geil/ACEPT -geimpft/AEPT -geieln/DIXY -geisterhaft/ACEPT -geistern/DIXY -geistesabwesend/AEPT -geistesgegenwrtig/AEPT -geistesgestrt/AEPT -geisteskrank/AEPT -geistesschwcher/AEPT -geistesschwchste/ANRS -geistesschwach/AEPT -geistesverwandt/AEPT -geisteswissenschaftlich/AEPT -geistig/AEPT -geistlich/AEPT -geistlos/ACEPT -geistreich/ACEPT -geistttend/AEPT -geistvoll/ACEPT -geizen/DIXY -geizig/ACEPT -geizt/EGPX -gejagt/AEPT -gejittert -gejubelt/AEPT -gekmmt/AEPT -gekabelt/AEPT -gekachelt/AEPT -gekannt/AEPT -gekantet/AEPT -gekappt/AEPT -gekapselt/AEPTU -gekaspert/AEPT -gekaudert/AEPT -gekauert/AEPT -gekauft/AEPT -gekaut/AEPT -gekehrt/AEPT -gekennzeichnet/AEPT -gekentert/AEPT -gekerbt/AEPT -gekettet/AEPT -gekidnappt/AEPT -gekillt/AEPT -gekippt/AEPT -gekittet/AEPT -gekitzelt/AEPT -geklrt/AEPTU -geklammert/AEPT -geklaut/AEPT -geklebt/AEPT -gekleidet/AEPT -geklemmt/AEPT -geklont/AEPT -gekloppt -geklungen/AEPT -geknackt/AEPT -geknebelt/AEPT -geknechtet/AEPT -geknetet/AEPT -geknickt/AEPT -geknipst/AEPT -geknpft/AEPT -geknpft/AEPT -gekdert/AEPT -gekpft/AEPT -gekocht/AEPT -gekommen/AEPT -gekonnt/AEPT -gekoppelt/AEPT -gekrnkt/AEPT -gekruselt/AEPT -gekreuzigt/AEPT -gekreuzt/AEPT -gekrnt/AEPT -gekrochen/AEPT -gekrmmt/AEPT -gekhlt/AEPT -gekndigt/AEPT -geknstelt/AEPTU -gekrzt/AEPTU -geksst/AEPT -gelhmt/AEPT -gelrmt/AEPT -gelufig/ACEPT -gelutert/AEPT -gelutet/AEPT -gelabt/AEPT -geladen/AEPTU -gelagert/AEPT -gelandet/AEPT -gelang/EPZp -gelangen/DIOWXY -gelangweilt/AEPT -gelassen/ACEPT -gelatcht -gelaufen/AEPT -gelaunt/AEPT -gelaust/AEPT -gelb/AELPT -gelbgrn/AEPT -geldgebend/AEPT -geldgierig/AEPT -geldpolitisch/AEPT -gelebt/AEPT -geleckt/AEPT -geleert/AEPT -gelegen/AELOPTU -gelegt/AEPTU -gelehrig/ACEPTU -gelehrt/ACEPTU -geleimt/AEPT -geleistet/AEPT -geleiten/DIOXY -gelenkig/ACEPT -gelenkt/AEPT -gelernt/AEPTU -gelesen/AEPTU -geleugnet/AEPT -gelichtet/AEPT -geliebt/AEPTU -geliefert/AEPT -geliehen/AEPT -geliftet/AEPTU -gelindert/AEPT -gelingen/DIX -gelinkt/AEPT -gelistet/AEPT -gelitten/AEPT -gellen/DIXY -gelscht/AEPTU -gelst/AEPTU -geloben/DIOXY -gelocht/AEPT -gelockert/AEPT -gelockt/AEPT -gelogen/AEPT -gelost/AEPT -gelotst/AEPT -gelten/DIV -geltungsbedrftig/AEPT -gelftet/AEPT -gelsten/DIXY -gelungen/AEPT -gelyncht -gemchlich/AEPT -gemht/AEPT -gem/AEPT -gemigt/AEPT -gemstet/AEPT -gemacht/AEPT -gemahlen/AEPT -gemahnt/AEPT -gemalt/AEPT -gemanagt/AEPT -gemartert/AEPT -gemaregelt/AEPT -gemauert/AEPT -gemein/ACEPTU -gemeindlich/AEPT -gemeinerweise -gemeingefhrlich/ACEPT -gemeingltig/AEPT -gemeinhin -gemeinntzig/AEPT -gemeinsam/AEPT -gemeinschaftlich/AEPT -gemeint/AEPTW -gemeinverstndlich/AEPT -gemeinwirtschaftlich/AEPT -gemeistert/AEPT -gemeldet/AEPT -gemerkt/AEPT -gemessen/AEPT -gemeuchelt/AEPT -gemieden/AEPT -gemietet/AEPT -gemildert/AEPT -gemindert/AEPT -gemischt/ACEPTU -gemisst/AEPT -gemistet/AEPT -gemixt/AEPT -gemocht/AEPT -gemolken/AEPT -gemountet/AEPT -gemndet/AEPT -gemnzt/AEPT -gemtlich/ACEPTU -gemtsfrei/AEPT -gemtskrank/AEPT -gemtvoll/AEPT -gemultiplext -gemurmelt/AEPT -gemustert/AEPT -gen/G -genhert/AEPT -genhrt/AEPT -genht/AEPT -genannt/AEPTU -genau/ACEPTU -genauso -geneckt/AEPT -genehm/ACEPT -genehmigen/DIOXY -genehmigungspflichtig/AEPT -geneigt/AEPT -generalisieren/BDIOXY -generationenlang/AEPT -generationsbergreifend/AEPT -generell/ACEPT -generieren/BDIOXY -generisch/AEPT -genesen/ADEIPTX -genetisch/AEPT -genial/ACEPT -genieren/DIOXY -genieen/BDIX -genieerisch/AEPT -genietet/AEPT -genssen/IX -gentigt/AEPT -genommen/AEPT -genormt/AEPT -genoss/PZ -genossenschaftlich/AEPT -gentechnisch/AEPT -gentechnologisch/AEPT -gengen/DIXY -gengend/ACEPTU -gengsam/ACEPTU -gensslich/AEPT -genug/p -genussreich/ACEPT -genussschtig/ACEPT -genussvoll/AEPT -genutzt/AEPTU -geffnet/AEPTU -gelt/AEPT -geografisch/AEPT -geographisch/AEPT -geohrfeigt/AEPT -geologisch/AEPT -geometrisch/AEPT -geopfert/AEPT -geophysikalisch/AEPT -geopolitisch/AEPT -geordert/AEPT -geordnet/AEPTU -geortet/AEPT -geostationr/AEPT -gepaart/AEPT -gepachtet/AEPT -gepackt/AEPT -gepanscht/AEPT -gepanzert/AEPT -geparkt/AEPT -geparsed -gepeinigt/AEPT -gepfndet/AEPT -gepfeffert/AEPT -gepfiffen/AEPT -gepflanzt/AEPT -gepflastert/AEPTU -gepflegt/ACEPTU -gepflckt/AEPT -gepflgt/AEPT -gepiesackt/AEPT -geplttet/AEPT -geplagt/AEPT -geplant/AEPTU -geplatzt/AEPT -geplndert/AEPT -gepolstert/AEPT -gepolt/AEPT -geprgt/AEPT -geprallt/AEPT -geprellt/AEPT -gepresst/AEPT -gepriesen/AEPT -geprobt/AEPT -geprft/AEPTU -geprgelt/AEPT -gepuffert/AEPT -gepumpt/AEPT -gepunktet/AEPT -gepurzelt/AEPT -gepuscht/AEPT -gepusht/AEPT -geputzt/AEPT -geqult/AEPT -gequetscht/AEPT -gequollen/AEPT -gercht/AEPTU -gerdert/AEPT -gerndelt/AEPT -gertetechnisch/AEPT -geruchert/AEPT -gerumig/ACEPT -gerumt/AEPT -geruschrmer/AEPT -geruschdmpfend/AEPT -geruschlos/ACEPT -geruschvoll/ACEPT -gerade/ANRSU -geradeaus -geradebiegen/DIX -geradebog/PZ -geradehin -geradenwegs -geradestand/PZ -geradestehen/DIX -geradewegs -geradezu -geradlinig/AEPT -gerafft/AEPT -gerahmt/AEPT -gerammt/AEPT -gerannt -geraten/AEIPTU -geraubt/AEPT -geraucht/AEPT -geraum/AEPT -geraunt/AEPT -gerben/DIXY -gerechnet/AEPTU -gerecht/ACEPTU -gerechtfertigt/ACEPTU -geregelt/AEPTU -gereichen/DIOXY -gereift/AEPT -gereimt/AEPTU -gereinigt/AEPT -gereist/AEPT -gereizt/ACEPT -gerettet/AEPT -gerichtet/AEPTU -gerichtlich/AEPT -gerichtsfremd/AEPT -gerichtsmig/AEPT -gerichtsmedizinisch/AEPT -gerichtsvorsitzend/AEPT -gerieben/AEPT -geriet/EPZ -geriffelt/AEPT -gerillt/AEPT -gering/ACEPT -geringfgig/AEPT -geringpreisig/AEPT -geringschtzig/AEPT -geringwertig/AEPT -gerinnen/DIX -gerissen/AEPT -geritten/AEPT -geritzt/AEPT -germanisch/AEPT -gern/E -gerchelt/AEPT -gerntgt/AEPT -gerstet/AEPT -gertet/AEPT -gerochen/AEPT -gerodet/AEPT -gerollt/AEPT -geronnen/AEPT -gerontologisch/AEPT -geroutet/AEPT -gertenschlank/AEPT -gerchtweise -gerckt/AEPT -gergt/AEPT -gerhmt/AEPT -gerhrt/AEPTU -gerstet/AEPT -gerttelt/AEPT -geruchlos/AEPT -geruchsfrei/AEPT -geruchtilgend/AEPT -gerufen/AEPT -geruhen/DIXY -geruhsam/ACEPT -gerundet/AEPT -gerungen/AEPT -gerunzelt/AEPT -gerupft/AEPT -gerutscht/AEPT -gesgt/AEPT -gest/AEPT -gesttigt/AEPTU -gesubert/AEPT -gesugt/AEPT -gesumt/AEPTU -gesuselt/AEPT -gesackt/AEPT -gesagt/AEPTU -gesalbt/AEPT -gesalzen/AEPTU -gesammelt/AEPT -gesamt/AEPT -gesamtaktiv/AEPT -gesamtdeutsch/AEPT -gesamteuropisch/AEPT -gesamtgesellschaftlich/AEPT -gesamtheitlich/AEPT -gesamtkoreanisch/AEPT -gesamtmenschlich/AEPT -gesamtskandinavisch/AEPT -gesamtstaatlich/AEPT -gesamtverantwortlich/AEPT -gesamtvietnamesisch/AEPT -gesamtwirtschaftlich/AEPT -gesandt/AEPT -gesanglich/AEPT -gesattelt/AEPT -gesaugt/AEPT -gesaust/AEPT -geschdigt/AEPT -geschftig/ACEPT -geschftlich/AEPT -geschftsfhrend/AEPT -geschftskundig/ACEPT -geschftslos -geschftsmig/AEPT -geschftspolitisch/AEPT -geschftstchtig/ACEPT -geschhe/N -geschkert/AEPT -geschlt/AEPT -geschmt/AEPT -geschndet/AEPT -geschrft/AEPT -geschtzt/AEPT -geschumt/AEPT -geschabt/AEPT -geschachtelt/AEPT -geschadet/AEPT -geschaffen/AEOPT -geschah/P -geschallt/AEPT -geschaltet/AEPT -gescharrt/AEPT -geschart/AEPT -geschaudert/AEPT -geschauert/AEPT -geschaufelt/AEPT -geschaukelt/AEPT -geschaut/AEPT -gescheffelt/AEPT -geschehen/AEPTU -gescheit/ACEPT -gescheitelt/AEPT -gescheitert/AEPTW -geschellt/AEPT -geschenkt/AEPT -gescheppert/AEPT -geschert/AEPT -gescherzt/AEPT -gescheucht/AEPT -gescheuert/AEPT -gescheut/AEPT -geschichtet/AEPT -geschichtlich/AEPTU -geschichtslos/AEPT -geschickt/ACEPTU -geschieden/AEPT -geschieht -geschielt/AEPT -geschienen/AEOPT -geschient/AEPT -geschifft/AEPT -geschildert/AEPT -geschillert/AEPT -geschimmelt/AEPT -geschimmert/AEPT -geschimpft/AEPT -geschirmt/AEPT -geschissen/AEPT -geschlngelt/AEPT -geschlachtet/AEPT -geschlackt/AEPT -geschlafen/AEPT -geschlagen/AEPTU -geschlaucht/AEPT -geschlechtlich/AEPTU -geschlechtsspezifisch/AEPT -geschleckt/AEPT -geschleift/AEPT -geschleit/AEPT -geschleppt/AEPT -geschleudert/AEPT -geschlichtet/AEPT -geschliffen/AEPTU -geschlissen/AEPT -geschlossen/AEPT -geschlpft/AEPT -geschlrft/AEPT -geschluckt/AEPT -geschlungen/AEPT -geschmht/AEPT -geschmlert/AEPTU -geschmackfrei/AEPT -geschmacklich/AEPT -geschmacklos/ACEPT -geschmackvoll/ACEPT -geschmeichelt/AEPT -geschmeidig/AEPT -geschmettert/AEPT -geschmiedet/AEPT -geschmiert/AEPT -geschminkt/AEPTU -geschmirgelt/AEPT -geschmissen/AEPT -geschmolzen/AEPT -geschmort/AEPT -geschmckt/AEPT -geschmuggelt/AEPT -geschnallt/AEPT -geschneidert/AEPT -geschniegelt/AEPT -geschnitten/AEPT -geschnitzelt/AEPT -geschnitzt/AEPT -geschnrkelt/AEPT -geschnorrt/AEPT -geschnrt/AEPT -geschnupft/AEPT -geschnt/AEPTU -geschpft/AEPT -geschoben/AEPT -geschockt/AEPT -gescholten/AEPT -geschont/AEPT -geschossen/AEPT -geschrnkt/AEPT -geschrammt/AEPT -geschraubt/AEPT -geschrieben/AEPTU -geschrien/AEPT -geschritten/AEPT -geschrpft/AEPT -geschrubbt/AEPT -geschrumpft/AEPT -geschrft/AEPT -geschrt/AEPT -geschrzt -geschttelt/AEPT -geschttet/AEPT -geschtzt/AEPTU -geschuldet/AEPT -geschult/AEPTU -geschunden/AEPT -geschuppt/AEPT -geschustert/AEPT -geschwcht/AEPT -geschwngert/AEPT -geschwnzt/AEPT -geschwrzt/AEPT -geschwtzig/ACEPT -geschwefelt/AEPT -geschweift/AEPT -geschweit/AEPT -geschwenkt/AEPT -geschwiegen/AEPT -geschwind/AEPT -geschwindigkeitsabhngig/AEPT -geschwisterlos/AEPT -geschwollen/AEPT -geschwommen/AEPT -geschworen/AEPT -geschwunden/AEPT -geschwungen/AEPT -gesegnet/AEPT -gesehen/AEPTU -gesellen/DIOWXY -gesellig/ACEPTU -gesellschaftlich/AEPT -gesellschaftsfhig/AEPT -gesellschaftskritisch/AEPT -gesellschaftspolitisch/AEPT -gesendet/AEPTU -gesengt/AEPT -gesenkt/AEPT -gesessen/AEPT -gesetzeskonform/AEPT -gesetzgebend/AEPT -gesetzgeberisch/AEPT -gesetzlich/AEPTU -gesetzlos/AEPT -gesetzmig/AEPT -gesetzt/AEPT -gesetzwidrig/AEPT -gesichert/AEPTU -gesichtet/AEPT -gesichtslos/AEPT -gesickert/AEPT -gesiebt/AEPT -gesiegelt/AEPT -gesinnt/AEPT -gesinnungslos/AEPT -gesittet/AEPTU -gesoffen/AEPT -gesogen/AEPT -gesondert/AEPT -gesonnen/AEPT -gesotten/AEPT -gespachtelt/AEPT -gespalten/AEOPT -gespaltet/AEPT -gespannt/ACEPT -gespart/AEPT -gespeichert/AEPT -gespeist/AEPT -gespendet/AEPT -gespensterhaft/ACEPT -gespenstisch/AEPT -gesperrt/AEPT -gespickt/AEPT -gespiegelt/AEPT -gespielt/AEPT -gespien/AEPT -gespiet/AEPT -gespitzt/AEPT -gesplittert/AEPT -gesplittet/AEPT -gespttelt/AEPT -gesponnen/AEPT -gespornt/AEPT -gespottet/AEPT -gesprchig/ACEPT -gespreizt/AEPT -gesprengt/AEPT -gesprenkelt/AEPT -gespriet/AEPT -gesprintet/AEPT -gespritzt/AEPT -gesprochen/AEPT -gesprht/AEPT -gesprudelt/AEPT -gesprungen/AEPT -gesplt/AEPT -gesprt/AEPT -gespuckt/AEPT -gespult/AEPT -gespurtet/AEPT -gestndig/AEPT -gestrkt/AEPT -gestubt/AEPT -gestachelt/AEPT -gestaffelt/AEPT -gestalten/BDIOXY -gestammelt/AEPT -gestampft/AEPT -gestand/PZ -gestanden/AEPTWX -gestanzt/AEPT -gestapelt/AEPT -gestartet/AEPT -gestatten/DIXY -gestaucht/AEPT -gestaut/AEPT -gesteckt/AEPT -gestehen/DIX -gesteift/AEPT -gesteigert/AEPT -gesteinigt/AEPT -gestellt/AEPT -gestemmt/AEPT -gestempelt/AEPT -gesteppt/AEPT -gestern -gesteuert/AEPT -gestichelt/AEPT -gestickt/AEPT -gestiefelt/AEPT -gestiegen/AEPT -gestiftet/AEPT -gestikulieren/DIXY -gestillt/AEPT -gestimmt/AEPT -gestisch/AEPT -gestpselt/AEPT -gestrt/AEPTU -gestochen/AEPT -gestochert/AEPT -gestockt/AEPT -gestohlen/AEPT -gestolpert/AEPT -gestopft/AEPT -gestoppt/AEPT -gestorben/AEPT -gestoen/AEPT -gestottert/AEPT -gestrubt/AEPT -gestrafft/ACEPT -gestraft/AEPTU -gestrandet/AEPT -gestrauchelt/AEPT -gestrebt/AEPT -gestreckt/AEPT -gestreichelt/AEPT -gestreift/AEPT -gestreng/AEPT -gestresst/AEPT -gestreunt/AEPT -gestreut/AEPT -gestrichelt/AEPT -gestrichen/AEPT -gestrickt/AEPT -gestriegelt/AEPT -gestriemt/AEPT -gestrig/AEPT -gestritten/AEPT -gestrolcht/AEPT -gestrudelt/AEPT -gestckelt/AEPT -gestlpt/AEPT -gestrmt/AEPT -gestrzt/AEPT -gesttzt/AEPT -gestundet/AEPT -gestupst/AEPT -gestutzt/AEPT -gesffelt -geshnt/AEPTU -gesnder/AEPTU -gesndeste/ANRSU -gesndigt/AEPT -gest/AEPT -gesucht/ACEPT -gesudelt/AEPT -gesund/AEPTU -gesunden/DIOWXY -gesundgepflegt -gesundheitlich/AEPT -gesundheitsfrdernd/AEPT -gesundheitsgefhrdend/AEPT -gesundheitsschdigend/AEPT -gesundheitsschdlich/ACEPT -gesundschrumpfen/DIXY -gesungen/AEPT -gesunken/AEPT -gesurrt/AEPT -getfelt/AEPT -getndelt/AEPT -getnzelt/AEPT -gettigt/AEPT -gettschelt/AEPT -getuscht/AEPT -getadelt/AEPT -getafelt/AEPT -getagt/AEPT -getakelt/AEPT -getaktet/AEPT -getan/AEPT -getankt/AEPT -getanzt/AEPT -getappt/AEPT -getarnt/AEPT -getastet/AEPT -getaucht/AEPT -getauft/AEPT -getaugt/AEPT -getaumelt/AEPT -getauscht/AEPT -getaut/AEPT -geteert/AEPT -geteilt/AEPTU -getestet/AEPTU -getextet/AEPT -gethront/AEPT -getickt/AEPT -getilgt/AEPT -getippelt/AEPT -getippt/AEPT -getischlert/AEPT -getnt/AEPT -gettet/AEPT -getoastet/AEPT -getollt/AEPT -getorkelt/AEPT -getost/AEPT -getrllert/AEPT -getrnkt/AEPT -getrufelt/AEPT -getrumt/AEPT -getragen/AEPT -getrampelt/AEPT -getrappelt/AEPT -getrauert/AEPT -getraut/AEPT -getreidelt/AEPT -getrennt/AEPT -getreten/AEPT -getreu/AELPT -getrieben/AEPT -getrieft/AEPT -getrillert/AEPT -getrimmt/AEPTU -getrippelt/AEPT -getrdelt/AEPT -getrpfelt/AEPT -getrstet/AEPT -getrocknet/AEPT -getroffen/AEPT -getrommelt/AEPT -getropft/AEPT -getrost -getrottet/AEPT -getrotzt/AEPT -getrbt/AEPTU -getrumpft/AEPT -getrunken/AEPT -getftelt/AEPT -getncht/AEPT -getrmt/AEPT -getttelt/AEPT -getummelt/AEPT -getunkt/AEPT -getupft/AEPT -geturnt/AEPT -getuschelt/AEPT -getuscht/AEPT -getutet/AEPT -getypt/AEPTU -gebt/AEPTU -geulkt/AEPT -gevierteilt/AEPT -gewhlt/ACEPT -gewhnt/AEPT -gewhren/BDIOXY -gewhrgeleistet -gewhrleisten/DIOXY -gewlzt/AEPT -gewnnen/IX -gewrmt/AEPT -gewachsen/AEOPT -gewachst/AEPT -gewacht/AEPTX -gewackelt/AEPT -gewaffnet/AEPT -gewagt/ACEPT -gewahrt/AEPTW -gewallt/AEPT -gewaltig/ACEPT -gewaltlos/AEPT -gewaltsam/ACEPT -gewaltttig/ACEPT -gewalzt/AEPT -gewandelt/AEPT -gewandert/AEPT -gewandt/ACEPT -gewann/PZ -gewappnet/AEPT -gewarnt/AEPT -gewartet/AEPT -gewaschen/AEPT -gewassert/AEPT -gewatet/AEPT -gewatschelt/AEPT -gewebefreundlich/AEPT -gewebt/AEPT -gewechselt/AEPT -geweckt/AEPT -geweht/AEPT -geweidet/AEPT -geweiht/AEPT -geweit/AEPT -gewelkt/AEPT -gewellt/AEPT -gewendet/AEPT -gewerbemig/AEPT -gewerbetreibend/AEPT -gewerblich/AEPT -gewerbsmig/AEPT -gewerkschaftlich/AEPT -gewerkschaftseigen/AEPT -gewerkt/AEPT -gewertet/AEPT -gewesen/AEPT -gewettet/AEPT -gewetzt/ACEPT -gewichen/AEPTY -gewichst/AEPT -gewichten/DIOXY -gewichtheben/DI -gewichtig/ACEPT -gewichtssparend/AEPT -gewickelt/AEPT -gewidmet/AEPT -gewiegt/AEPT -gewiehert/AEPT -gewiesen/AEPT -gewillt/AEPT -gewimmelt/AEPT -gewimmert/AEPT -gewinnbringend/AEPT -gewinnen/DIX -gewinnmitnehmend/AEPT -gewinntrchtig/ACEPT -gewinselt/AEPT -gewippt/AEPT -gewirkt/AEPT -gewirtschaftet/AEPT -gewischt/AEPT -gewispert/AEPT -gewiss/AEPTU -gewissenhaft/ACEPT -gewissenlos/ACEPT -gewissermaen -gewisslich -gewitterig/AEPT -gewittert/AEPT -gewitzelt/AEPT -gewitzt/ACEPT -gewhnen/DIOXY -gewhnlich/ACEPTU -gewhnlicherweise -gewhnungsbedrftig/AEPT -gewlbt/ACEPT -gewnnen/IX -gewogen/AEPT -gewohnheitsmig/AEPT -gewohnt/AEPTU -gewollt/ACEPTU -gewonnen/AEPT -geworben/AEPT -geworden/AEPT -geworfen/AEPT -gewrungen/AEPT -gewhlt/AEPT -gewnscht/ACEPT -gewrdigt/AEPT -gewrfelt/AEPT -gewrgt/AEPT -gewrzt/ACEPT -gewuchert/AEPT -gewuchtet/AEPT -gewunden/AEPT -gewunken -gewurstelt/ACEPT -gewurzelt/AEPT -gewusst/AEPT -gezhlt/AEPTU -gezhmt/AEPTU -gezahlt/AEPT -gezahnt/AEPT -gezapft/AEPT -gezaubert/AEPT -gezecht/AEPT -gezeichnet/AEPTU -gezeigt/AEPT -gezerrt/AEPT -gezeugt/AEPT -gezielt/ACEPTU -geziemen/DIXY -geziemend/AEPTU -geziert/AEPT -gezimmert/AEPT -gezinkt/AEPT -gezirkelt/AEPT -gezirpt/AEPT -gezischelt/AEPT -gezischt/AEPT -gezgert/AEPT -gezogen/AEPTU -gezollt/AEPT -gezchtet/AEPT -gezchtigt/AEPT -gezckt/AEPT -gezgelt/AEPTU -gezndet/AEPT -gezrnt/AEPT -gezuckert/AEPT -gezupft/AEPT -gezwngt/AEPT -gezweifelt/AEPT -gezwickt/AEPT -gezwiebelt/AEPT -gezwinkert/AEPT -gezwitschert/AEPT -gezwungen/AEPTU -gezwungenermaen -ggf -ggf. -gibt/VWX -gieren/DIWXY -gierig/ACEPT -gieen/DIVX -giften/DIVXY -giftfrei/AEPT -giftgrn/AEPT -giftig/ACEPTU -gigantisch/AEPT -giltst/VWX -ging/EPVZ -gipfeln/DIXY -glnzen/DIXY -glnzt/EGPX -glsern/AEPT -gltten/DIXY -glubig/ACEPTU -glamours/AEPT -glanzlos/AEPT -glanzvoll/AEPT -glashnlich/AEPT -glasieren/DIOXY -glasig/AEPT -glasklar/AEPT -glatt/ACEPT -glattgestellt -glattstellen/DIXY -glattweg -glauben/DIWXY -glaubhaft/ACEPT -glaubwrdig/ACEPTU -gleich/AEPTU -gleichalterig/AEPT -gleichartig/AEPTU -gleichbedeutend/AEPT -gleichberechtigt/AEPT -gleichen/DIWX -gleichend/AEPTV -gleicher/AEPT -gleichermaen -gleicherweise -gleichfalls -gleichfarbig/AEPT -gleichfrmig/AEPTU -gleichgekommen -gleichgemacht/AEPT -gleichgeschlechtlich/AEPT -gleichgesetzt/AEPT -gleichgesinnt/AEPT -gleichgestellt/AEPT -gleichgetan -gleichgezogen/AEPT -gleichgro/AEPT -gleichgltig/AEPT -gleichkme/N -gleichkam/PZ -gleichkommen/DIX -gleichlang/AEPT -gleichlaufend/AEPT -gleichmig/ACEPTU -gleichmachen/DIXY -gleichmtig/AEPT -gleichnamig/AEPT -gleichnishaft/AEPT -gleichrangig/AEPT -gleichsam -gleichseitig/AEPT -gleichsetzen/DIXY -gleichspannungsmig -gleichstark/AEPT -gleichstehen/DIX -gleichstellen/DIXY -gleichtun/IX -gleichviel -gleichwertig/AEPT -gleichwohl -gleichzeitig/AEPTU -gleichziehen/DIX -gleichzuschalten/D -gleichzusetzen/D -gleichzustellen/D -gleichzutun -gleichzuziehen/D -gleiend/AEPT -gleiten/DIX -glich/PVZ -glichen/GVWX -gliedern/DIXY -glimmen/DIVXY -glimpflich/AEPTU -glitschig/ACEPT -glitt/EPZ -glitzern/DIXY -global/AEPT -glockenfrmig/AEPT -glockig/AEPT -glorreich/ACEPT -glotzen/DIXY -glotzt/EGPX -glckbringend/AEPT -glcken/DIXY -glcklich/ACEPTU -glcklicherweise/U -glcklos/AEPT -glckselig/AEPTU -glckstrahlend/AEPT -glhen/DIVWXY -gluckern/DIXY -glucksen/DIXY -glutugig/AEPT -gndig/ACEPTU -gndigerweise -gnadenlos/AEPT -gdelisiert/AEPT -gnnen/DIVXY -gnnerhaft/AEPT -gnnt/EGPVX -gnnte/GNVZ -gnnten/GIVWX -gttlich/ACEPT -goldbedeckt/AEPT -goldbesetzt/AEPT -goldbestickt/AEPT -goldblond/AEPT -golden/AEPT -goldgelb/AEPT -goldglnzend/AEPT -goldhaltig/AEPT -goldig/AEPT -goldne/ANRS -goldrichtig/AEPT -gordisch/AEPT -goss/PVZ -gossen/GVWX -gotisch/AEPT -gottesfrchtig/AEPT -gottgegeben/AEPT -gottgesegnet/AEPT -gottgewhrt/AEPT -gottgewollt/AEPT -gottlob -gottlos/AEPT -gottverlassen/AEPT -gouvernantenhaft/AEPT -grbt/VX -grmen/DIVXY -grmlich/AEPT -grsslich/ACEPT -grtig/AEPT -grulich/ACEPT -graben/DGIV -gradlinig/AEPT -graduell/AEPT -grafikfhig/AEPT -grafisch/AEPT -grammatikalisch/AEPT -grammatisch/AEPT -grandios/AEPT -grantig/AEPT -graphentheoretisch/AEPT -graphikfhig/AEPT -graphisch/AEPT -graphitgrau/AEPT -graphologisch/AEPT -grasen/DIXY -grasgrn/AEPT -gratis -gratulieren/DIXY -grau/AEPTZ -grauen/IWXY -grauenerregend/ACEPT -grauenhaft/ACEPT -grauenvoll/ACEPT -graugrn/AEPT -grauhaarig/AEPT -grausam/ACEPT -grauschwarz/AEPT -grausen/DIXY -grausig/ACEPT -grauslich/AEPT -grautrist/AEPT -grauwei/AEPT -gravieren/DIOXY -gravierend/ACEPT -grazil/AEPT -grazis/AEPT -greifbar/AEPTU -greifen/BDIVWX -greise/ANRS -greisenhaft/AEPT -grell/AEPT -grellwei/AEPT -grenzen/BDIXY -grenzenlos/ACEPT -grenzprovokatorisch/AEPT -grenzberschreitend/AEPT -griechisch/AEPT -grienen/DIXY -griesgrmig/AEPT -griff/PVZ -griffbereit/AEPT -griffen/GVWX -grifffest/AEPT -griffig/ACEPT -grillen/BDIWXY -grimmig/ACEPT -grimmschen -grinsen/DIXY -grinst/EGP -grber/AEPT -grbste/ANRS -grlen/DIXY -grenordnungsmig/AEPT -grenwahnsinnig/AEPT -grer/AEPT -grte/ANRS -grtenteils -grtmglich/AEPT -grob/AEPT -grobkrnig/AEPT -grobmaschig/AEPT -grobschlchtig/ACEPT -grollen/DIXY -gro/AEPT -groartig/ACEPT -grobuerlich/AEPT -grobrgerlich/AEPT -groenteils -groflchig/AEPT -groformatig/AEPT -grogezogen/AEPT -groherzig/ACEPT -groindustriell/AEPT -grojhrig/AEPT -gromtig/AEPT -groporig/AEPT -grorumig/AEPT -grosprecherisch/AEPT -grospurig/AEPT -grostdtisch/AEPT -grostadtmde/ANRS -grostadtnah/AEPT -grotechnisch/AEPT -grotuerisch/AEPT -grovterlich/AEPT -groziehen/DIX -grozgig/ACEPT -grotesk/ACEPT -grbeln/DIXY -grbelt/EGPX -grn/ACEPTZ -grnbewachsen/AEPT -grnden/DIXY -grndlich/ACEPT -grnen/DIWXY -grnlich/AEPT -grnlichbraun/AEPT -gren/DIWXY -grub/PVZ -grundbuchamtlich/AEPT -grundbuchlich/AEPT -grundehrlich/AEPT -grundfalsch/AEPT -grundgesetzlich/AEPT -grundieren/DIOXY -grundlegend/AEPT -grundlos/AEPT -grundrechtlich/AEPT -grundstzlich/AEPT -grundsolid/AEPT -grundverschieden/AEPT -grunzen/DIXY -gruppieren/DIOXY -gruseln/DIXY -gruslig/AEPT -gltig/AEPTU -gnstig/ACEPTU -gnstigenfalls -gnstigst/AEPTW -gtig/ACEPT -gtlich/AEPT -gucken/DIVWXY -guckt/EGPVWX -gummiartig/AEPT -gurgeln/DIXY -gusseisern/AEPT -gut/AEPTU -gutartig/AEPT -gutbetucht/AEPT -gutbrgerlich/AEPT -gutfundiert/AEPT -gutgegangen -gutgeheien/AEPT -gutgeschrieben/AEPT -gutgesinnt/AEPT -gutgewachsen/AEPT -gutglubig/AEPT -gutheien/DI -gutherzig/AEPT -gutmachen/BDIXY -gutmtig/ACEPT -gutnachbarlich/AEPT -gutschreiben/DIX -gutwillig/ACEPT -gutzumachen/D -gutzuschreiben/D -gymnasial/AEPT -gymnastisch/AEPT -gynkologisch/AEPT -hkeln/DIXY -hltst/VWX -hmisch/ACEPT -hmmern/DIXY -hndigen/IXY -hngen/DIVXY -hngig/AEPT -hngt/EGPVX -hngte/GNVZ -hngten/GIVWX -hnseln/DIXY -hrte/CNRZ -hrten/DIVXY -hrtet/EGPVWX -hrtete/GNVZ -hrteten/GIVWX -hsslich/ACEPT -htscheln/DIVXY -htschelt/EGPVX -htschelte/GNVZ -htschelten/GIVWX -htte/NZ -hufen/DIXY -hufig/ACEPT -huslich/ACEPT -haargenau/AEPT -haarig/ACEPT -haarlos/AEPT -haarscharf/AEPT -haarstrubend/ACEPT -haben/DIW -habgierig/ACEPT -habhaft -habsburgisch/AEPT -habschtig/AEPT -hacken/DIXY -hadern/DIXY -haften/BDIVXY -haftet/EGPVWX -haftpflichtig/AEPT -hageln/DIXY -hagelt/EGPX -hager/ACEPT -haken/DIVXY -halb/AEPT -halbamtlich/AEPT -halbautomatisch/AEPT -halbdunkel/A -halbfertig/AEPT -halbhell/AEPT -halbherzig/AEPT -halbhohe/ANRS -halbieren/BDIOXY -halbjhrig/AEPT -halbjhrlich/AEPT -halblang/AEPT -halblaut/AEPT -halbmast -halbmilitrisch/AEPT -halbnackt/AEPT -halboffen/AEPT -halbohnmchtig/AEPT -halbrekursiv/AEPT -halbschlau/AEPT -halbseiden/AEPT -halbsitzend/AEPT -halbstark/AEPT -halbstndig/AEPT -halbtgig/AEPT -halbtglich/AEPT -halbtags -halbtot/AEPT -halbverhungert/AEPT -halbverkohlt/AEPT -halbverscharrt/AEPT -halbwegs -halbwchsig/AEPT -half/PVZ -halftern/DIXY -hallen/DIVXY -hallo -halluzinieren/DIXY -halogenfrei/AEPT -halsbrecherisch/ACEPT -halsstarrig/AEPT -haltbar/ACEPTU -halten/BDGIVW -haltlos/ACEGPT -handbreit/AEPT -handeln/BDIVXY -handelseinig/AEPT -handelsgerichtlich/AEPT -handelspolitisch/AEPT -handelstechnisch/AEPT -handelsblich/AEPT -handelt/EGPVX -handelte/GNVZ -handelten/GIVWX -handfest/ACEPT -handgearbeitet/AEPT -handgeknpft/AEPT -handgeschrieben/AEPT -handgestoppt/AEPT -handgestrickt/AEPT -handgewebt/AEPT -handgreiflich/AEPT -handhaben/BDI -handlich/ACEPTU -handlungsbevollmchtigt/AEPT -handlungsfhig/AEPTV -handlungsorientiert/AEPT -handlungsunfhig/AEPT -handschriftlich/AEPT -handvoll/AEPT -handwerklich/AEPT -hanebchen/AEPT -hanseatisch/AEPT -hanteln/DIXY -hantieren/DIXY -hapern/DIXY -happig/AEPT -hardlock -hardlockgeschtzt/AEPT -hardwaregleich/AEPT -hardwaremig/AEPT -hardwareseitig/AEPT -hardwarespezifisch/AEPT -harken/IXY -harmlos/ACEPT -harmonieren/DIXY -harmonisch/ACEPTU -harmonisieren/DIOXY -harren/DIVXY -harsch/AEPT -hart/AEPT -hartherzig/ACEPT -hartnckig/ACEPT -haschen/DIXY -hascht/EGPX -haselnussbraun/AEPT -hassen/DIXY -hasserfllt/AEPT -hasst/EGPV -hasten/DIWXY -hastet/EGPWX -hastig/AEPT -hat/X -hatte/NZ -hauchdnn/AEPT -hauchen/DIWXY -hauchfein/AEPT -hauchzart/AEPT -hauen/DGIVWXY -haufenweise -hauptamtlich/AEPT -hauptberuflich/AEPT -hauptbeteiligt/AEPT -hauptschlich/ACEPT -hausbacken/AEPT -hauseigen/AEPT -hausen/DIXY -hausfraulich/AEPT -hausgemacht/AEPT -haushlterisch/AEPT -haushalten/DI -haushaltspolitisch/AEPT -haushoch -haushohe/ANRS -hausieren/DIXY -hausintern/AEPT -haust/EGPW -hauswirtschaftlich/AEPT -hauteng/AEPT -hautnah/AEPT -hebeln/DIXY -hebelt/EGPX -heben/DIX -hebrisch/AEPT -hecheln/DIXY -hechten/DIXY -hecken/IXY -hedonistisch/AEPT -heften/DIXY -heftig/ACEPT -hegen/DIXY -hehlen/DIVXY -heidnisch/AEPT -heikel/AC -heil/ACEPTZ -heilbar/AEPTU -heilbringend/AEPTU -heilen/BDIWXY -heilfroh/AEPT -heilig/ACEPT -heilklimatisch/AEPT -heilkrftig/ACEPT -heillos/AEPT -heilpdagogisch/AEPT -heilsam/ACEPT -heimatlich/AEPT -heimatlos/AEPT -heimattreu/AEPT -heimbegleiten/DIOXY -heimbrachte/NZ -heimbringen/DIX -heimelig/ACEPT -heimfahren/DI -heimgegangen/AEPT -heimgehen/DIX -heimgekehrt/AEPT -heimgekommen/AEPT -heimgeleuchtet/AEPT -heimgesucht/AEPT -heimgezahlt/AEPT -heimisch/AEPT -heimkam/PZ -heimkehren/DIXY -heimkommen/DIX -heimleuchten/DIXY -heimlich/ACEPTU -heimsen/IXY -heimsuchen/DIXY -heimtckisch/ACEPT -heimwehkrank/AEPT -heimzahlen/DIXY -heimzufhren/D -heimzukehren -heimzukommen -heimzureisen -heimzusuchen/D -heimzutragen/D -heimzuzahlen/D -heiraten/DIVXY -heiratet/EGPVWX -heiratete/GNVZ -heirateten/GIVWX -hei/ACEPTZ -heibltig/ACEPT -heien/DGIWX -heiend/AEPTV -heihungrig/AEPT -heilaufen/DI -heiser/AEPT -heiter/ACEPT -heiterhell/AEPT -heizen/BDIVXY -hektisch/ACEPT -heldenhaft/ACEPT -heldenmtig/AEPT -heldisch/AEPT -helfen/DIV -heliozentrisch/AEPT -hell/ACEPTZ -hellbeige -hellblau/AEPT -hellblond/AEPT -hellen/DIWXY -hellenisch/AEPT -hellenistisch/AEPT -hellgelb/AEPT -hellgrau/AEPT -hellgrner/AEPT -hellhutig/AEPT -hellhrig/AEPT -helllicht/AEPT -hellrot/AEPT -hellseherisch/AEPT -hellsichtig/ACEPT -helltnend/AEPT -hellwach/AEPT -helvetisch/AEPT -hemdsrmlig/AEPT -hemmen/DIXY -hemmungslos/ACEPT -her -herab -herabdrcken/DIXY -herabfahren/DI -herabgedrckt/AEPT -herabgefallen/AEPT -herabgelassen/AEPT -herabgelaufen -herabgeschttet/AEPT -herabgesehen -herabgesetzt/AEPT -herabgesprungen -herabgestiegen/AEPT -herabgesunken/AEPT -herabgewirtschaftet/AEPT -herabgezogene -herablassen/DI -herabrinnt/X -herabsacken/IXY -herabsehen/DI -herabsetzen/DIXY -herabsteigen/DIX -herabstieg/PZ -herabstrzen/DIXY -herabtreiben/DIX -herabzusetzen/D -heran -heranbrachte/NZ -heranbringen/DIX -herandonnern/D -heranfahren/DI -heranfhren/DIXY -heranfuhr/PZ -herangebracht/AEPT -herangefahren/AEPT -herangefhrt/AEPT -herangegangen/AEPT -herangehen/DIX -herangekommen/AEPT -herangemacht -herangerckt/AEPT -herangeschafft/AEPT -herangeschleppt/AEPT -herangeschlichen/AEPT -herangetragen/AEPT -herangetreten -herangewachsen/AEPT -herangezogen/AEPT -heranging/EPZ -herankam/PZ -herankommen/DIX -heranmachen/DIXY -herannahen/DIXY -heranpirschen/DIXY -heranrasen/DIXY -heranreifen/DIXY -heranschaffen/BDIXY -heranschleichen/DIX -heranstrmen/DIXY -herantragen/DI -herantrat/PZ -herantreten/DI -herantrittst/WX -heranwchst -heranwachsen/DI -heranziehen/DIX -heranzog/PZ -heranzchten/DIXY -heranzubilden/D -heranzufhren/D -heranzugehen -heranzukommen -heranzutreten -heranzuziehen/D -herauf -heraufbeschwren/DIXY -heraufbeschworen/AEPTWX -heraufgekommen/AEPT -heraufgesetzt/AEPT -heraufgestiegen/AEPT -heraufgezogen/AEPT -heraufkam/PZ -heraufkommen/DIX -heraufreichen/DIXY -heraufschrauben/DIXY -heraufsteigen/DIX -heraufziehen/DIX -heraufzufhren/D -heraufzuholen/D -heraus -herausarbeiten/DIXY -herausbekommen/AEIPTX -herausbewegen/DIXY -herausbilden/DIXY -herausbringen/DIX -herausdestillieren/IOXY -herausdrehen/DIXY -herausfllt/X -herausfahren/DI -herausfallen/DI -herausfinden/DIX -herausfischen/DIXY -herausfordern/DIXY -herausfhren/IXY -herausfuhr/PZ -herausgab/PZ -herausgearbeitet/AEPT -herausgeben/DI -herausgebildet/AEPT -herausgebracht/AEPT -herausgedreht/AEPT -herausgefahren -herausgefallenen/AEPT -herausgefrdert/AEPT -herausgefordert/AEPT -herausgefhrt/AEPT -herausgefunden/AEPT -herausgegangen/AEPT -herausgegeben/AEPT -herausgegriffen/AEPT -herausgehalten/AEPT -herausgehen/DIX -herausgehrt/AEPT -herausgehoben/AEPT -herausgekommen/AEPT -herausgekriegt/AEPT -herausgelassen/AEPT -herausgelscht/AEPT -herausgelockt/AEPT -herausgenommen/AEPT -herausgenudelt -herausgeplatzt/AEPT -herausgepumpt -herausgequollen/AEPT -herausgeragt/AEPT -herausgeraten/AEPT -herausgeredet/AEPT -herausgerissen/AEPT -herausgerckt/AEPT -herausgerufen/AEPT -herausgerutscht/AEPT -herausgeschickt/AEPT -herausgeschlagen/AEPT -herausgeschleudert/AEPT -herausgeschmuggelt/AEPT -herausgeschnitten/AEPT -herausgeschobenen/AEPT -herausgeschrieben/AEPT -herausgesprungen/AEPT -herausgestellt/AEPT -herausgestoppt/AEPT -herausgestreckt/AEPT -herausgestrichen/AEPT -herausgetragen/AEPT -herausgetreten/AEPT -herausgewagt/AEPT -herausgeworfen/AEPT -herausgezogen/AEPT -herausgleiten/DIX -heraushltst/WX -heraushngen/DIX -herausheben/DIX -heraushren/DIXY -herausholen/DIXY -herauskam/PZ -herausklingen/DIX -herauskommen/DIX -herauskriegen/DIXY -herauskristallisieren/IOXY -herauslas/PZ -herauslesen/BDIX -herauslie/EPZ -herauslschen/DIXY -herauslsen/DIXY -herauslugen/DIXY -herausnehmen/DI -herausoperieren/DIOXY -herauspicken/DIXY -herausplatzen/DIXY -herausquellen/DI -herausragen/DIXY -herausragendste/ANRS -herausreden/DIXY -herausreien/DIX -herausrieseln/IXY -herausrcken/DIXY -herausrufen/DIX -herausschieben/DIX -herausschieen/DIX -herausschlagen/DI -herausschmeien/DIX -herausschneiden/DIX -herausschoss/PZ -herausschrauben/DIXY -herausspringen/DIX -herausstanzen/DIXY -heraussteht/X -herausstellen/DIXY -herausstrecken/DIXY -herausstreichen/DIX -heraussuchen/DIXY -heraustrat/PZ -heraustreten/DI -heraustrittst/WX -herauswagen/DIXY -herauswarf/PZ -herauswerfen/DI -herauswirft/X -herausziehen/DIX -herauszuangeln/D -herauszuarbeiten/D -herauszubekommen/D -herauszubringen/D -herauszufahren -herauszufinden/D -herauszufischen/D -herauszufordern/D -herauszufhren/D -herauszugeben/D -herauszuhngen/D -herauszuhalten/D -herauszuholen/D -herauszukehren/D -herauszukommen -herauszukopieren/D -herauszukriegen/D -herauszulesen/D -herauszulsen/D -herauszunehmen/D -herauszupauken/D -herauszuquetschen/D -herauszureden -herauszureien/D -herauszurcken/D -herauszuschieben/D -herauszuschinden/D -herauszuschlagen/D -herauszuschneiden/D -herauszusteigen -herauszustellen/D -herauszuverstrken/D -herauszuwerfen/D -herauszuziehen/D -herb/ACEPT -herbei -herbeieilen/DIXY -herbeifhren/DIXY -herbeigeeilt/AEPT -herbeigeflogen/AEPT -herbeigefhrt/AEPT -herbeigeholt/AEPT -herbeigeredet/AEPT -herbeigerufen/AEPT -herbeigeschafft/AEPT -herbeigesehnt/AEPT -herbeigezogen/AEPT -herbeirufen/DIX -herbeischaffen/DIXY -herbeisehnen/IXY -herbeiwnschen/DIXY -herbeiziehen/DIX -herbeizubringen/D -herbeizufhren/D -herbeizuquasseln/D -herbeizureden -herbestellen/DIOXY -herbewegen/DIXY -herblttern/IXY -herbringen/DIX -herbstlich/AEPT -herdrehen/DIXY -herein -hereinbitten/DIX -hereinbrechen/DI -hereinbricht/X -hereinbringen/DIX -hereinfallen/DI -hereinfhren/DIXY -hereingebeten/AEPT -hereingebracht/AEPT -hereingebrochen/AEPT -hereingefallen/AEPT -hereingefhrt/AEPT -hereingekommen/AEPT -hereingelassen/AEPT -hereingelegt/AEPT -hereingenommen/AEPT -hereingeplatzt/AEPT -hereingeschaut -hereingeschneit/AEPT -hereingesprungen -hereingetragen/AEPT -hereingezogenen/AEPT -hereinholen/DIXY -hereinkam/PZ -hereinkommen/DIX -hereinlassen/DI -hereinlegen/DIXY -hereinplatzen/DIXY -hereinragen/DIXY -hereinschauen/DIXY -hereinschneien/DIXY -hereinschwappen/DIXY -hereinspazieren/DIOXY -hereinstrmen/DIXY -hereinzubitten/D -hereinzufallen -hereinzuholen/D -hereinzukommen -herfallen/DI -herfiel/PZ -herfuhr/PZ -hergeben/DI -hergebracht/AEPT -hergefallen/AEPT -hergegeben/AEPT -hergehen/DIX -hergekommen/AEPT -hergelaufen/AEPT -hergeleitet/AEPT -hergemacht/AEPT -hergenommen/AEPT -hergerichtet/AEPT -hergerhrt/AEPT -hergerufen/AEPT -hergeschaltet -hergeschickt/AEPT -hergeschoben/AEPT -hergeschrieben/AEPT -hergesehen -hergestammt -hergestellt/AEPT -hergewagt/AEPT -hergezogen/AEPT -hergibt/X -herging/EPZ -herhalten/DI -herhasten/DIXY -herhpfen/DIXY -herkam/PZ -herkmmlich/AEPT -herkommen/DIX -herlaufen/DI -herleiten/BDIXY -herlief/PZ -herlocken/DIXY -hermachen/DIXY -hermetisch/AEPT -hernach -hernehmen/DI -hernieder -heroinschtig/AEPT -heroisch/AEPT -herrenlos/AEPT -herrichten/DIXY -herrisch/ACEPT -herrlich/ACEPT -herrschaftlich/AEPT -herrschen/DIXY -herrscht/EGPX -herrhren/DIXY -herrufen/DIX -herschieben/DIX -herschreiben/DIX -hersehen/DI -herstammen/DIXY -herstellen/BDIXY -herstellerspezifisch/AEPT -herstellerunabhngig/AEPT -herber -herbergeholt/AEPT -herbergekommen/AEPT -herberklingen/DIX -herberkommen/DIX -herum -herumballern/DIXY -herumblttern/DIXY -herumdrehen/DIXY -herumdrcken/DIXY -herumfhren/DIXY -herumfuchteln/DIXY -herumgedreht/AEPT -herumgedrckt -herumgefhrt/AEPT -herumgefuchtelt -herumgekriegt/AEPT -herumgelaufen -herumgelungert/AEPT -herumgereicht/AEPT -herumgereist/AEPT -herumgeritten/AEPT -herumgeschlagen/AEPT -herumgeschleudert/AEPT -herumgeschlichen -herumgeschliffen -herumgesprochen -herumgestanden/AEPT -herumgestoen/AEPT -herumgestrolcht -herumgetrieben/AEPT -herumgeturnt -herumgezogen/AEPT -herumknattern/IXY -herumkommandieren/DIOXY -herumkrabbeln/DIXY -herumkreuzen/IXY -herumkriegen/DIXY -herumluft/X -herumlaufen/DI -herumliegen/DIX -herumlungern/DIXY -herumnrgeln/DIXY -herumprobieren/DIXY -herumreichen/DIXY -herumreien/IX -herumreisen/DIXY -herumreiten/DIX -herumschlagen/DI -herumschleppen/DIXY -herumschnipseln/DIXY -herumschwirren/DIXY -herumsegeln/DIXY -herumspionieren/DIXY -herumsprechen/DI -herumspritzen/DIXY -herumstehen/DIX -herumstolpern/DIXY -herumtanzen/DIXY -herumticken/DIXY -herumtragen/I -herumtreiben/DIX -herumwirbeln/IXY -herumwirtschaften/IXY -herumzeigen/DIXY -herumziehen/DIX -herumzubewegen -herumzufliegen -herumzufhren/D -herumzugehen -herumzuknutschen -herumzulaufen -herumzureden -herumzureien/D -herumzuschlagen -herumzusphen -herumzustehen -herumzustochern -herunter -herunterbringen/DIX -herunterfllt/X -herunterfahren/DI -herunterfallen/DI -herunterfuhr/PZ -heruntergebracht/AEPT -heruntergedrckt -heruntergefahren/AEPT -heruntergefallen/AEPT -heruntergegangen -heruntergeholt/AEPT -heruntergekommen/AEPT -heruntergeladen/AEPT -heruntergerissen/AEPT -heruntergeschraubt/AEPT -heruntergespielt/AEPT -heruntergewirtschaftet/AEPT -herunterhandeln/DIXY -herunterhpft -herunterkam/PZ -herunterkommen/DIX -herunterldt/X -herunterladen/I -herunterlief/PZ -herunterpoltern/DIXY -herunterreien/DIX -herunterriss/PZ -herunterrutschen/DIXY -heruntersetzen/DIXY -herunterspielen/DIXY -heruntersprechen/DI -herunterwirtschaften/DIXY -herunterzubringen/D -herunterzufahren/D -herunterzuholen/D -herunterzukommen -herunterzuladen/D -herunterzuspielen -herunterzusteigen -hervor -hervorbrachte/NZ -hervorbrechen/DI -hervorbringen/DIX -hervorgebracht/AEPT -hervorgegangen/AEPT -hervorgehen/DIX -hervorgehoben/AEPT -hervorgeholt/AEPT -hervorgeragt/AEPT -hervorgerufen/AEPT -hervorgesagt/AEPT -hervorgesprungen/AEPT -hervorgestanden/AEPT -hervorgetan -hervorgetreten/AEPT -hervorging/EPZ -hervorheben/DIX -hervorhob/PZ -hervorholen/DIXY -hervorkroch/PZ -hervorlodern/DIXY -hervorlugen/DIXY -hervorquoll/PZ -hervorragen/DIXY -hervorragend/ACEPT -hervorrief/EPZ -hervorrufen/DIX -hervorschauen/DIXY -hervorschoss/PZ -hervorspringen/DIX -hervorstechen/DI -hervorstehen/DIX -hervorstie/PZ -hervortrat/PZ -hervortreten/DI -hervortrittst/WX -hervortun/IX -hervorzubringen/D -hervorzuheben/D -hervorzukommen -hervorzurufen/D -hervorzutreten -herwagen/DIXY -herzensgut/AEPT -herzerfrischend/AEPT -herzergreifend/AEPT -herzfrmig/AEPT -herzhaft/AEPT -herziehen/DIX -herzig/ACEPT -herzkrank/AEPT -herzlich/ACEPT -herzlichst/AEPTW -herzlos/ACEPT -herzog/LPZ -herzstrkend/AEPT -herzu -herzubitten/D -herzubringen/D -herzufahren -herzufallen -herzugeben/D -herzugerufen/AEPT -herzulaufen -herzuleiten/D -herzurichten/D -herzusagen/D -herzuschalten -herzustammen -herzustellen/D -herzzerbrechend/AEPT -herzzerreiend/AEPT -hessesche/ANRS -hessisch/AEPT -heterogen/AEPT -heterosexuell/AEPT -hetzen/DIXY -heucheln/DIXY -heuchlerisch/ACEPT -heuer/EGN -heuern/IWXY -heuert/EGPWX -heulen/DIXY -heult/EGPX -heureka -heuristisch/AEPT -heute -heutig/AEPT -heutzutage -hexadezimal/AEPT -hexagonal/AEPT -hexen/DIVXY -hie/R -hielt/EPVZ -hienieden -hieran -hierarchisch/AEPT -hierauf -hieraus -hierbei -hierdurch -hierein -hierfr -hiergegen -hierher -hierhin -hierin -hiermit -hiernach -hierber -hierunter -hiervon -hierzu -hierzulande -hie/EPVZ -hiesig/AEPT -hieven/DIWXY -hievt/EGPWX -hilbertsch/AEPT -hilfebedrftig/AEPT -hilfeflehend/AEPT -hilflos/ACEPT -hilfreich/AEPT -hilfsbedrftig/AEPT -hilfsbereit/ACEPT -hilft/VWX -himbeerfarben/AEPT -himbeerrot/AEPT -himmelblau/AEPT -himmelhoch -himmelhochjauchzend/AEPT -himmelwrts -himmelweit/ACEPT -himmlisch/ACEPT -hin -hinab -hinabgegangen/AEPT -hinabgehen/DIX -hinabgestiegen/AEPT -hinabgestoen/AEPT -hinabsteigen/DIX -hinabzugehen -hinabzustrzen/D -hinabzuziehen/D -hinan -hinarbeiten/DIXY -hinauf -hinaufarbeiten/DIXY -hinauffahren/DI -hinauffhren/DIXY -hinauffuhr/PZ -hinaufgearbeitet/AEPT -hinaufgegangen/AEPT -hinaufgehen/DIX -hinaufgeklettert -hinaufgesetzt/AEPT -hinaufgestiegen/AEPT -hinaufkriechen/DIX -hinaufkroch/PZ -hinaufschauen/DIXY -hinaufsetzen/DIXY -hinaufsteigen/DIX -hinaufziehen/DIX -hinaufzufhren/D -hinaufzuklettern -hinaufzusteigen -hinaufzuziehen/D -hinaus -hinausbegleiten/DIXY -hinausbeugen/DIXY -hinausfallen/DI -hinausfhrt/X -hinausfuhr/PZ -hinausgebeugt/AEPT -hinausgefahren/AEPT -hinausgegangen/AEPT -hinausgehen/DIX -hinausgekommen/AEPT -hinausgelaufen/AEPT -hinausgeleitet/AEPT -hinausgeragt/AEPT -hinausgereicht/AEPT -hinausgeschleudert/AEPT -hinausgeschoben/AEPT -hinausgeschossen/AEPT -hinausgetragen/AEPT -hinausgewachsen/AEPT -hinausgeworfen/AEPT -hinausgezgert/AEPT -hinausging/EPZ -hinausgreifen/DIX -hinausgriff/PZ -hinausheben/DIX -hinauskommen/DIX -hinausluft/X -hinauslaufen/DI -hinauslief/EPZ -hinausmarschieren/DIOXY -hinausposaunen/DIXY -hinauspressen/DIXY -hinausragen/DIXY -hinausreichen/DIXY -hinausschieben/DIX -hinausschieen/DIX -hinausschleichen/DIX -hinausschnellen/DIXY -hinausspringen/DIX -hinaustrat/PZ -hinaustreten/DI -hinauswachsen/DI -hinauswerfen/DI -hinauszgern/DIXY -hinauszubringen/D -hinauszufahren/D -hinauszufhren/D -hinauszugehen -hinauszukommen -hinauszuschaffen/D -hinauszuschieben/D -hinauszustoen/D -hinauszutragen/D -hinauszutreiben/D -hinauszuzgern/D -hinbewegen/DIOXY -hinblttern/DIXY -hinblicken/IXY -hinbringen/DIX -hindmmern/DIXY -hinderlich/ACEPT -hindern/DIVXY -hindeuten/DIXY -hinduistisch/AEPT -hindurch -hindurchfhren/DIXY -hindurchgegangen -hindurchgehen/DIX -hindurchging/EPZ -hindurchsehen/DI -hindurchzuschauen -hineilen/DIXY -hinein -hineinarbeiten/DIXY -hineinbringen/DIX -hineindenken/DIX -hineindichten/DIXY -hineindrngen/DIXY -hineinfahren/DI -hineinfallen/DI -hineinfrisst -hineinfhren/DIXY -hineingearbeitet/AEPT -hineingebracht -hineingedacht/AEPT -hineingefallen/AEPT -hineingefhrt -hineingegangen/AEPT -hineingeguckt -hineingehen/DIX -hineingehetzt -hineingehren/DIXY -hineingelassen/AEPT -hineingelegt/AEPT -hineingeraten/ADEIPT -hineingeschrieben/AEPT -hineingeschttelt -hineingesetzt -hineingesteckt/AEPT -hineingestellt/AEPT -hineingeworfen/AEPT -hineingezogen/AEPT -hineingucken/DIXY -hineinkommen/DIX -hineinkrhen/DIXY -hineinlassen/DI -hineinlegen/DIXY -hineinleuchten/DIXY -hineinmnden/DIXY -hineinpassen/IXY -hineinplatzen/DIXY -hineinpressen/DIXY -hineinragen/DIXY -hineinreden/DIXY -hineinreichen/DIXY -hineinrufen/DIX -hineinsah/PZ -hineinschauen/DIXY -hineinschieben/IX -hineinschlittern/DIXY -hineinschreiben/DIX -hineinschrieb/PZ -hineinsehen/DI -hineinsetzen/DIXY -hineinsieht/X -hineinstecken/DIXY -hineinstellen/DIXY -hineinstrmen/DIXY -hineintanzen/DIXY -hineintreten/DI -hineinwachsen/DI -hineinwechseln/DIXY -hineinwerfen/DI -hineinwirken/DIXY -hineinziehen/DIX -hineinzoomen/DIXY -hineinzubringen/D -hineinzugehen -hineinzukommen -hineinzulegen/D -hineinzulesen/D -hineinzuschauen -hineinzusehen -hineinzustecken/D -hineinzusteuern/D -hineinzuwirken -hineinzuziehen/D -hineinzwingen/DIX -hinfllig/AEPT -hinfahren/DI -hinfallen/DI -hinfiel/EPZ -hinfhren/DIXY -hinfuhr/PZ -hing/EPZ -hingab/PZ -hingeben/DI -hingebracht/AEPT -hingebungsvoll/ACEPT -hingedeutet/AEPT -hingeduckt -hingefallen/AEPT -hingefhrt/AEPT -hingegangen/AEPT -hingegeben/AEPT -hingegen -hingehalten/AEPT -hingehen/DIX -hingehren/IXY -hingekniet/AEPT -hingekommen/AEPT -hingelegt/AEPT -hingenommen/AEPT -hingeraten/AEPT -hingerichtet/AEPT -hingerissen/AEPT -hingeschlagen/AEPT -hingeschleppt/AEPT -hingeschrieben/AEPT -hingeschwunden/AEPT -hingesehen -hingesetzt/AEPT -hingestellt/AEPT -hingestreckt/AEPT -hingewiesen/AEPT -hingewirkt -hingeworfen/AEPT -hingezogen/AEPT -hingibt/X -hinhalten/DI -hinhauen/DIXY -hinhielt/EPZ -hinhren/DIXY -hinken/DIXY -hinkommen/DIX -hinkriegen/DIXY -hinkt/EGPX -hinlnglich/AEPT -hinlegen/DIXY -hinleiten/DIXY -hinnehmen/BDI -hinnimmt/X -hinreichen/DIXY -hinreien/DIX -hinreisen/DIXY -hinrichten/DIXY -hinshen/IX -hinsah/PZ -hinschauen/DIXY -hinschlngeln/DIXY -hinschlagen/DI -hinschmeien/IX -hinschreiben/DIX -hinschweifen/DIXY -hinschwinden/DIX -hinsehen/DI -hinsetzen/DIXY -hinsichtlich -hinsieht/X -hinspielen/DIXY -hinstellen/DIXY -hinsteuern/DIXY -hinstreuen/DIXY -hinten -hintenherum -hinter/AEPST -hintereinander -hinterfragen/DIOXY -hintergangen/AEPT -hintergehen/DIX -hintergrndig/AEPT -hinterhltig/ACEPT -hinterher -hinterherfahren/DI -hinterherhetzen/DIXY -hinterherhinken/DIXY -hinterherluft/X -hinterherrannte/NZ -hinterherrennen/DIX -hinterherwinken/DIXY -hinterherzuhetzen -hinterlsst -hinterlassen/ADEIPT -hinterlegen/DIOXY -hinterleuchtet/AEPT -hinterlie/EPZ -hinterlistig/ACEPT -hinterm -hinterrcks -hintersinnig/AEPT -hinterspritzen/DIXY -hinterste/ANRS -hintertreiben/DIX -hintertrieb/PZ -hinterwldlerisch/AEPT -hintreten/DI -hinber -hinbergebastelt -hinbergehen/DIX -hinbergerufen/AEPT -hinberlenken/DIXY -hinberstrmen/DIXY -hinberwaten/DIXY -hinberzuretten/D -hinunter -hinunterfllt/X -hinunterfallen/DI -hinunterfuhr/PZ -hinuntergegangen/AEPT -hinuntergehen/DIX -hinuntergelassen/AEPT -hinuntergeschluckt/AEPT -hinuntergestrzt/AEPT -hinunterreichen/DIXY -hinunterrennen/DIX -hinunterrutschen/IXY -hinunterschlendern/DIXY -hinunterschlich/EPZ -hinunterschlucken/DIXY -hinuntersteigen/DIX -hinunterstieg/PZ -hinunterzukommen -hinweg -hinwegbringen/DIX -hinwegdreht -hinweggebraust/AEPT -hinweggefegt -hinweggekommen/AEPT -hinweggeschleudert -hinweggesetzt/AEPT -hinweggetuscht/AEPT -hinweghelfen/DI -hinwegkommen/DIX -hinwegraffen/IXY -hinwegschwemmen/DIXY -hinwegschwingt -hinwegsehen/DI -hinwegsetzen/DIXY -hinwegtuschen/DIXY -hinwegtrsten/DIXY -hinwegzufegen -hinwegzureden/D -hinwegzusehen -hinwegzusetzen -hinwegzutragen -hinweisen/DIX -hinwenden/DIXY -hinwerfen/DI -hinwies/EPZ -hinwirken/DIXY -hinziehen/DIX -hinzielen/DIXY -hinzgen/IX -hinzog/PZ -hinzu -hinzuarbeiten -hinzudeuten -hinzuerfunden/AEPT -hinzufahren -hinzufallen -hinzufgen/DIXY -hinzugeben/DI -hinzugedichtet -hinzugefgt/AEPT -hinzugehen -hinzugekauft/AEPT -hinzugekommen/AEPT -hinzugelernt/AEPT -hinzugenommen -hinzugerechnet/AEPT -hinzugetan -hinzugewhlt/AEPT -hinzugewinnen/DIX -hinzugewonnen/AEPT -hinzugezogen/AEPT -hinzugibt/X -hinzukam/PZ -hinzukaufen/DIXY -hinzukommen/DIX -hinzukriegen -hinzuldt/X -hinzuladen/DI -hinzulernen/DIXY -hinzunehmen/DI -hinzunimmt/X -hinzurechnen/DIXY -hinzureien -hinzurichten/D -hinzuschmeien/D -hinzusehen -hinzusetzen/DIXY -hinzustellen/D -hinzutreten/DI -hinzutrittst/WX -hinzuwhlen/DIXY -hinzuweisen -hinzuwerfen/D -hinzuwirken -hinzuzhlen/IXY -hinzuziehen/DIX -hinzuzufgen/D -hinzuzunehmen -hinzuzurechnen/D -hinzuzuziehen/D -hirnverbrannt/AEPT -hirnverletzt/AEPT -hissen/DIXY -histologisch/AEPT -historisch/AEPT -historisieren/DIXY -hitzebestndig/ACEPT -hitzeflimmernd/AEPT -hitzefrei -hitzig/ACEPT -hchst/AEPT -hchsten/SW -hchstgenau/AEPT -hchstmglich/AEPT -hchstqualifiziert/AEPT -hchstwahrscheinlich/AEPT -hchstzulssig/AEPT -hflich/ACEPTU -hflichst/AEPTW -hhenverstellbar/AEPT -hher/AEPT -hherfrequent/AEPT -hherverzinst/AEPT -hherwertig/AEPT -hhlt/X -hhnen/DIVXY -hhnisch/ACEPT -hhnt/EGPVX -hllisch/AEPT -hlzern/AEPT -hrbar/AEPTU -hren/BDGIVWXY -hrig/AEGPT -hob/PZ -hobeln/DIWXY -hoch -hochachten/DI -hochachtungsvoll/ACEPT -hochaktuell/AEPT -hochalpin/AEPT -hochamtlich/AEPT -hochanstndig/AEPT -hochaufgeschossen/AEPT -hochauflsend/AEPT -hochbegabt/AEPT -hochbeladen/AEPT -hochbesetzt/AEPT -hochbesteuert/AEPT -hochbetagt/AEPT -hochbringen/DIX -hochbrisant/AEPT -hochdeutsch/AEPT -hochdifferenziert/AEPT -hochdramatisch/AEPT -hochdynamisch/AEPT -hocheffizient/AEPT -hocherfreut/AEPT -hochexplosiv/AEPT -hochfhrt/X -hochfahren/DI -hochfavorisiert/AEPT -hochflexibel/A -hochgeachtet/AEPT -hochgearbeitet/AEPT -hochgebildet/AEPT -hochgebracht/AEPT -hochgefahren/AEPT -hochgegangen/AEPT -hochgehen/DIX -hochgeklappt/AEPT -hochgekommen/AEPT -hochgelegen/AEOPT -hochgelegt/AEPT -hochgelehrt/AEPT -hochgelobt/AEPT -hochgepppelt/AEPT -hochgepflegt/AEPT -hochgereckt/AEPT -hochgeredet -hochgerutscht/AEPT -hochgescheit/AEPT -hochgeschlagen/AEPT -hochgeschlossen/AEPT -hochgeschraubt/AEPT -hochgespannt/AEPT -hochgespielt/AEPT -hochgestellt/AEPT -hochgestimmt/AEPT -hochgestochen/AEPT -hochgewachsen/AEPT -hochgewirbelt/AEPT -hochgezhlt/AEPT -hochgezogen/AEPT -hochglanzpoliert/AEPT -hochgradig/AEPT -hochhltst/WX -hochhalten/DI -hochherzig/AEPT -hochimpedant/AEPT -hochindustrialisiert/AEPT -hochinteressant/AEPT -hochkartig/AEPT -hochkommen/DIX -hochkonzentriert/AEPT -hochleistungsfhig/AEPT -hochleitfhig/AEPT -hochmodern/AEPT -hochmtig/ACEPT -hochnsig/ACEPT -hochohmig/AEPT -hochperformant/AEPT -hochpersnlich/AEPT -hochpolitisch/AEPT -hochprozentig/AEPT -hochqualifiziert/AEPT -hochqualitativ/AEPT -hochrangig/AEPT -hochrot/AEPT -hochschtzen/DIXY -hochschieen/DIX -hochschoss/PZ -hochschulfrei/AEPT -hochschulpolitisch/AEPT -hochschulunabhngig/AEPT -hochschwanger/AEPT -hochspekulativ/AEPT -hochspezialisiert/AEPT -hochspezifisch/AEPT -hochsprachlich/AEPT -hochstaplerisch/AEPT -hochstehen/DIX -hochstellen/IXY -hochtalentiert/AEPT -hochtechnisiert/AEPT -hochtrabend/AEPT -hochtreiben/DIX -hochverehrt/AEPT -hochverzinslich/AEPT -hochviskos/AEPT -hochwertig/ACEPT -hochwirksam/AEPT -hochwrdig/AEPT -hochziehen/DIX -hochzischen/DIXY -hochzog/PZ -hochzufrieden/AEPT -hochzujubeln/D -hochzuklettern/D -hochzuschrauben -hochzuverlssig/AEPT -hochzuziehen/D -hocken/DIXY -hoffen/DIXY -hoffentlich -hoffnungsfroh/AEPT -hoffnungslos/ACEPT -hoffnungsvoll/ACEPT -hofft/EGPX -hohe/ANRS -hoheitlich/AEPT -hoheitsvoll/ACEPT -hohl/ACEPT -hold/AEPTU -holen/DIWXY -holistisch/AEPT -hollndisch/AEPT -holografisch/AEPT -holographisch/AEPT -holperig/AEPT -holpern/DIXY -holsteinisch/AEPT -holzfrei/AEPT -holzig/AEPT -holzwirtschaftlich/AEPT -homerisch/AEPT -homopathisch/AEPT -homoerotisch/AEPT -homogen/AEPT -homomorph/AEPT -homophon/AEPT -homosexuell/AEPT -honorieren/DIOXY -honorig/AEPT -hoppeln/DIXY -hopsen/DIXY -horchen/DGIWXY -hordenweise -horizontal/AEPT -hormonell/AEPT -horrend/AEPT -horten/DIXY -hospitalisieren/DIOXY -hospitieren/DIWXY -hotelmiger -hrsg -hrsg. -http -hbsch/AEPT -hbsche/ACNRS -hglig/AEPT -hhnereigro/AEPT -hllen/DIVXY -hllt/EGPVX -hllte/GNVZ -hllten/GIVWX -hndisch/AEPT -hnenhaft/AEPT -hpfen/DIXY -hsteln/DIXY -hten/DIVXY -htet/EGPVWX -htete/GNVZ -hteten/GIVWX -huckepack -hugenottisch/AEPT -huldigen/DIXY -huldigt/EGPX -huldvoll/AEPT -human/ACEPT -humanisieren/DIOXY -humanistisch/AEPT -humanitr/AEPT -humanpharmazeutisch/AEPT -humoristisch/AEPT -humorlos/AEPT -humorvoll/AEPT -humpeln/DIXY -hundert/ER -hundertfltig/AEPT -hundertfach/AEPT -hundertjhrig/AEPT -hundertkpfig/AEPT -hundertmal -hundertprozentig/AEPT -hundertste/ANRS -hundertstel -hunderttausend/E -hundertzehn -hundertzwanzig -hundsmiserabel/A -hungern/DIVXY -hungert/EGPVX -hungrig/ACEPT -hupen/DIXY -hupt/EGPX -huren/DIXY -hurra -hurtig/ACEPT -huschen/IXY -husten/DIXY -hustet/EGPWX -hybrid/AEPT -hydraulisch/AEPT -hygienisch/ACEPTU -hyperaktiv/AEPT -hyperbolisch/AEPT -hyperelegant/AEPT -hypnotisieren/BDIOXY -hypothekarisch/AEPT -hypothetisch/AEPT -hysterisch/ACEPT -ich -ichbewusst/AEPT -ichbezogen/AEPT -ideal/ACEPT -idealerweise -idealisieren/DIOXY -idealistisch/ACEPT -idealtypisch/AEPT -ideell/ACEPT -ideenarm/AEPT -ideenlos/AEPT -ideenreich/ACEPT -identifizieren/BDIOXY -identisch/AEPT -ideologieanfllig/AEPT -ideologisch/AEPT -idiomatisch/AEPT -idiotisch/ACEPT -idiotischerweise -idyllisch/ACEPT -ignorant/AEPT -ignorieren/DIOXY -ihm -ihn/P -ihr/AEPT -ihrerseits -ihresgleichen -ihrethalben -ihretwegen -ihretwillen -ihrige/ANRS -illegal/AEPT -illegitim/AEPT -illiquide/ANRS -illoyal/AEPT -illuminieren/DIOXY -illusionslos/AEPT -illusorisch/AEPT -illuster/AEPT -illustrativ/AEPT -illustre/ANRS -illustrieren/DIOXY -im -imaginr/AEPT -imaginativ/AEPT -imitieren/DIOXY -imkern/DIXY -immanent/AEPT -immateriell/AEPT -immatrikulieren/DIOXY -immens/AEPT -immer -immerfort -immergrn/AEPT -immerhin -immerzu -immun/AEPT -immunisieren/DIOXY -imperativ/AEPT -imperial/AEPT -imperialistisch/AEPT -impertinent/AEPT -impfen/BDIXY -implantieren/BDIOWXY -implementationsabhngig/AEPT -implementationstechnisch/AEPT -implementieren/BDIOXY -implizieren/DIOXY -implizit/AEPT -implodieren/DIOXY -imponieren/DIXY -importieren/DIOXY -imposant/ACEPT -impotent/ACEPT -imprgnieren/DIOXY -impressionistisch/AEPT -improvisatorisch/AEPT -improvisieren/BDIOXY -impulsartig/AEPT -impulsiv/ACEPT -imputieren/DIOWXY -imstande -in/FS -inadquat/AEPT -inaktiv/AEPT -inaktivieren/DIOXY -inakzeptabel/A -inbegriffen/AEPT -inbrnstig/AEPT -incl -incl. -indefinit/AEPT -indem -indes -indessen -indexmig/AEPT -indianisch/AEPT -indifferent/AEPT -indignieren/DIOXY -indirekt/AEPT -indisch/AEPT -indiskret/AEPT -indiskrete/ACNRS -indiskutabel/A -individualisieren/DIOXY -individualistisch/AEPT -individuell/ACEPT -indizieren/DIOXY -indoktrinieren/DIOXY -indonesisch/AEPT -indossieren/DIOXY -induktiv/AEPT -industrialisieren/DIOXY -industriell/AEPT -industrienah/AEPT -industrieorientiert/AEPT -induzieren/BIOXY -ineffektiv/AEPT -ineffizient/ACEPT -ineinander -inessentiell/AEPT -inessenziell/AEPT -infam/AEPT -infantil/AEPT -inferieren/BDIOXY -infiltrieren/DIOXY -infinitesimal/AEPT -infizieren/DIOXY -inflationr/AEPT -inflationistisch/AEPT -inflationsanfllig/AEPT -inflationsbedingt/AEPT -inflationsbereinigt/AEPT -inflationsschrend/AEPT -inflatorisch/AEPT -infolge -infolgedessen -informationstechnisch/AEPT -informationsverarbeitend/AEPT -informativ/AEPT -informatorisch/AEPT -informell/AEPT -informieren/DIOXY -infrage -ingenieurmig/AEPT -ingenieurwissenschaftlich/AEPT -inhrent/AEPT -inhaftieren/DIOXY -inhalieren/BDIOXY -inhaltlich/AEPT -inhaltsabhngig/AEPT -inhaltslos/AEPT -inhaltsreich/ACEPT -inhomogen/AEPT -inhuman/AEPT -initialisieren/BDIOXY -initiieren/DIOXY -injektiv/AEPT -injizieren/BDIOXY -inkl -inkl. -inkludieren/DIOXY -inklusive -inkompatibel/A -inkompetent/AEPT -inkonsequent/ACEPT -inkonsistent/ACEPT -inkorrekt/ACEPT -inkrementell/AEPT -inkrementieren/DIOXY -inlndisch/AEPT -inliegend/AEPT -inmitten -inne/N -innegehabt -innegehalten/AEPT -innegewohnt/AEPT -innehltst/WX -innehaben/DIW -innehalten/DI -innehat/X -innehatte/NZ -innenpolitisch/AEPT -inneramerikanisch/AEPT -innerbetrieblich/AEPT -innerdeutsch/AEPT -innere/ANRS -innereuropisch/AEPT -innerfranzsisch/AEPT -innerhalb -innerjapanisch/AEPT -innerkirchlich/AEPT -innerlich/AEPT -innerparteilich/AEPT -innerpolitisch/AEPT -innerrussisch/AEPT -innerstdtisch/AEPT -innerstaatlich/AEPT -innerste/ANRS -innerwirtschaftlich/AEPT -innewohnen/DIXY -innig/ACEPT -innovativ/AEPT -innovieren/DIOXY -inoffiziell/AEPT -inopportun/AEPT -inquisitorisch/AEPT -insbes -insbes. -insbesondere -insektenfrmig/AEPT -insektenhaft/AEPT -inselartig/AEPT -inserieren/DIOXY -insgeheim/AEPT -insges -insges. -insgesamt -insistieren/IXY -insofern -insolvent/AEPT -insoweit -inspirieren/DIOXY -inspizieren/DIOXY -instndig/ACEPT -instndigst/AEPTW -instabil/AEPT -installieren/BDIOXY -instand -instandsetzen/DIXY -instantiieren/BDIOXY -instinktiv/AEPT -instinktmig/AEPT -institutionalisieren/IOXY -institutionell/AEPT -instruieren/DIOXY -instruktiv/AEPT -instrumental/AEPT -inszenatorisch/AEPT -inszenieren/DIOXY -intakt/ACEPT -integer/AEPT -integral/AEPT -integrationsfhig/AEPT -integrativ/AEPT -integrieren/BDIOXY -intellektualistisch/AEPT -intellektuell/AEPTU -intelligent/ACEPT -intendieren/DIOXY -intensiv/ACEPT -intensivieren/DIOXY -interagieren/DIOXY -interaktiv/AEPT -interamerikanisch/AEPT -interdisziplinr/AEPT -interessant/ACEPTU -interessanterweise -interessehalber -interessenbedingt/AEPT -interessieren/DIOXY -intereuropisch/AEPT -interferieren/DIOXY -interfraktionell/AEPT -interkommunal/AEPT -interkommunistisch/AEPT -interkontinental/AEPT -intermedir/AEPT -intern/AEPT -international/AEPT -internieren/IOXY -interplanetarisch/AEPT -interpolieren/DIOXY -interpretativ/AEPT -interpretatorisch/AEPT -interpretieren/BDIOXY -interprozedural/AEPT -intervallabhngig/AEPT -intervenieren/DIOXY -interviewen/DIOXY -inthronisieren/DIOXY -intim/ACEPT -intolerant/ACEPT -intonieren/DIOXY -intransitiv/AEPT -intraprozedural/AEPT -intraspezifisch/AEPT -intravens/AEPT -intrigant/ACEPT -intrigieren/DIXY -intuitiv/AEPT -intus -invalide/ANRS -invariant/AEPT -inventarisieren/BIOXY -invers/AEPT -invertieren/DIOXY -investieren/DIOXY -involvieren/DIOXY -inwendig/AEPT -inwiefern -inwieweit -inzwischen -ionisieren/DIOXY -iota -ipso -irakisch/AEPT -iranisch/AEPT -irden/AEPT -irdisch/AEPT -irgend -irgendein/AEPT -irgendeinmal -irgendetwas -irgendjemand/PT -irgendjemandem -irgendwann -irgendwas -irgendwelche/ANRS -irgendwem -irgendwer -irgendwie -irgendwo -irgendwohin -irisch/AEPT -ironisch/ACEPT -ironisieren/DIXY -irr/ACEPTZ -irrational/AEPT -irreal/AEPT -irrefhren/DIXY -irregefhrt/AEPT -irregulr/AEPT -irrelevant/AEPT -irreligis/AEPT -irren/DIWXY -irreparabel/A -irreversibel/A -irrezufhren/D -irrig/AEPT -irritieren/BDIOXY -irrsinnig/ACEPT -irrt/EGPWX -irrtmlich/AEPT -irrtmlicherweise -islndisch/AEPT -islamisch/AEPT -isolationistisch/AEPT -isolieren/BDIOXY -isometrisch/AEPT -isomorph/AEPT -israelisch/AEPT -isst/W -ist -italic -italienisch/AEPT -iterativ/AEPT -iterieren/DIOXY -ja -jh/AEPT -jhlings -jhren/IVXY -jhrig/AEPT -jhrlich/AEPT -jhzornig/ACEPT -jmmerlich/ACEPT -jten/DIXY -jagdgrn/AEPT -jagen/DIVXY -jagt/EGPVX -jagte/GNVZ -jagten/GIVWX -jahraus -jahrein -jahrelang/AEPT -jahreszeitlich/AEPT -jahrhundertealt/AEPT -jahrhundertelang/AEPT -jahrtausendelang/AEPT -jahrzehntelang/AEPT -jammern/DIXY -jammert/EGPX -januskpfig/AEPT -japanisch/AEPT -jauchzen/DIXY -jaulen/DIXY -javanisch/AEPT -je -jede/ANRS -jedenfalls -jederart -jederlei -jedermann -jederzeit -jederzeitig/AEPT -jedoch -jedwede/ANRS -jegliche/ANRS -jeher -jemals -jemand/PT -jemandem -jene/ANRS -jenseits -jetten/DIXY -jetzige/ANRS -jetzt -jeweilig/AEPT -jeweils -jiddisch/AEPT -jmdm -jmdm. -jobben/DIXY -jonglieren/DIXY -jordanisch/AEPT -journalistisch/AEPT -jdisch/AEPT -jnger/AEPT -jngst/AEPT -jubeln/DIVXY -jubelt/EGPVX -jubelte/GNVZ -jubelten/GIVWX -jucken/DIXY -juckt/EGPX -judenfeindlich/AEPT -judizieren/DIOXY -jugendfrei/AEPT -jugendgefhrdend/AEPT -jugendlich/AEPT -jugendpflegerisch/AEPT -jugoslawisch/AEPT -jung/AEPT -jungenhaft/AEPT -jungfrulich/AEPT -junggeblieben/AEPT -jungverheiratet/AEPT -jure -juristisch/AEPT -juryfrei/AEPT -just -justieren/BDIOXY -kHz -kOhm -kW -kltebestndig/AEPT -klteempfindlich/ACEPT -klteerzeugend/AEPT -klter/AEPT -klteste/ANRS -kmen/IX -kmmen/DIXY -kmpfen/DIXY -kmpferisch/ACEPT -kmpft/EGPX -krglich/ACEPT -kuflich/AEPTV -kabarettistisch/AEPT -kabbeln/DIXY -kabelgerecht/AEPT -kabeln/DIXY -kabelseitig/AEPT -kahl/AEPT -kahlgefressen/AEPT -kahlkpfig/AEPT -kahmig/AEPT -kaiserlich/AEPT -kalbern/DIXY -kalendarisch/AEPT -kalibrieren/DIOXY -kalifornisch/AEPT -kalkarm/AEPT -kalkartig/AEPT -kalkig/AEPT -kalkulatorisch/AEPT -kalkulieren/BDIOVXY -kalorienbewusst/ACEPT -kalorienreich/ACEPT -kalt/AEPT -kaltbltig/ACEPT -kaltbrchig/AEPT -kaltfeucht/AEPT -kaltgeblieben/AEPT -kaltgehmmert/AEPT -kaltgehrtet/AEPT -kaltgemacht/AEPT -kaltgeruchert/AEPT -kaltgeschmiedet/AEPT -kaltgestellt/AEPT -kaltgezogen/AEPT -kalthmmern/DIXY -kalthrten/DIXY -kaltherzig/ACEPT -kaltmachen/DIXY -kaltschmieden/DIXY -kaltschnuzig/ACEPT -kaltstellen/DIXY -kaltziehen/DIX -kalvinistisch/AEPT -kam/PVZ -kamelhaarfarbig/AEPT -kameradschaftlich/ACEPT -kampfbegierig/ACEPT -kampfbereit/AEPT -kampferfahren/AEPT -kampferprobt/AEPT -kampferregt/AEPT -kampffhig/AEPT -kampfgewohnt/AEPT -kampflos/AEPT -kampflustig/ACEPT -kampfmde/ANRS -kampfreich/AEPT -kampfstrker/AEPT -kampfstrkste/ANRS -kampfstark/AEPT -kampfunfhig/AEPT -kampieren/DIXY -kanadisch/AEPT -kanalig/AEPT -kanalisieren/BDIOXY -kanariengelb/AEPT -kanarisch/AEPT -kandidieren/DIXY -kandieren/DIOXY -kannibalisch/AEPT -kannst/W -kannte/GNVZ -kannten/GIVX -kanonisch/AEPT -kanten/DIXY -kantig/AEPT -kanzeln/IXY -kapazittsbedingt/AEPT -kapazitiv/AEPT -kapieren/DIOWXY -kapital/AEPT -kapitalintensiv/ACEPT -kapitalisieren/BDIOXY -kapitalistisch/AEPT -kapitalkrftig/ACEPT -kapitalstark/AEPT -kapitulieren/DIOXY -kappa -kaprizis/ACEPT -kapseln/BDIVXY -kaputt/AEPT -kaputtgegangen/AEPT -kaputtgehen/DIX -kaputtgemacht/AEPT -kaputtgeschlagen/AEPT -kaputtmachen/DIXY -kaputtschlagen/DI -karambolieren/DIOXY -kardial/AEPT -kardinale/ANRS -kardinalrot/AEPT -karg/ACEPT -karibisch/AEPT -kariert/AEPT -karikativ/AEPT -karikieren/DIOXY -karis/AEPT -karitativ/ACEPT -karmesinrot/AEPT -karminrot/AEPT -karren/DIXY -karrierebedingt/AEPT -karriereschdlich/AEPT -kartesisch/AEPT -kartografisch/AEPT -kartographisch/AEPT -kartonieren/DIOXY -kaschieren/BDIOXY -kasernieren/DIOXY -kaskadieren/BDIOXY -kaspern/DIXY -kaspisch/AEPT -kassieren/DIOXY -kastanienbraun/AEPT -kasteien/DIOXY -kastrieren/DIOXY -katalanisch/AEPT -katalogisieren/DIOXY -katalysieren/DIOXY -katalytisch/AEPT -katapultieren/DIOXY -katastrophal/ACEPT -kategorisch/ACEPT -kategorisieren/DIOXY -katholisch/ACEPT -katzenartig/AEPT -katzenfreundlich/AEPT -katzengewandt/AEPT -katzenhaft/AEPT -katzenjmmerlich/AEPT -kaudern/DIXY -kauen/DIWXY -kauern/DIWXY -kaufbereit/AEPT -kaufen/DIVWXY -kaufenswert/AEPT -kaufkrftig/ACEPT -kaufmnnisch/AEPT -kaufstark/AEPT -kauft/EGPVWX -kaufte/GNVZ -kauften/GIVWX -kaum -kausal/AEPT -kaustisch/ACEPT -kauzig/AEPT -kavits/AEPT -keck/ACEPT -kegelfrmig/AEPT -kegeln/DIWXY -kehren/DIVWXY -kehrt/EGPVWX -kehrte/GNVZ -kehrten/GIVWX -kehrtgemacht/AEPT -kehrtmachen/DIXY -keifen/DIXY -keift/EGPX -keilen/DIVXY -keilfrmig/AEPT -keimen/DIXY -keimfhig/AEPT -keimfrei/AEPT -keimt/EGPX -keimttend/AEPT -kein/AEPST -keinerlei -keinesfalls -keineswegs -keinmal -keinwrtquop -kelchfrmig/AEPT -kellern/IXY -keltern/DIXY -keltisch/AEPT -kennen/DIVX -kennerhaft/AEPT -kennt/LVX -kenntlich/AEPTU -kenntnisreich/ACEPT -kennzeichnen/DIXY -kentern/DIXY -keramisch/AEPT -kerben/DIXY -kernfaul/AEPT -kerngesund/AEPT -kernig/ACEPT -kernlos/AEPT -kerzengerade/ANRS -kess/ACEPT -ketten/DIVXY -kettenartig/AEPT -kettenfrmig/AEPT -kettenlos/AEPT -kettet/EGPVWX -kettete/GNVZ -ketteten/GIVWX -ketzerisch/ACEPT -keuchen/DIWXY -keucht/EGPWX -keulenfrmig/AEPT -keusch/ACEPTU -kg -kichern/DIWXY -kichert/EGPWX -kicken/DIWXY -kidnappen/DIXY -kiemenatmend/AEPT -kieselartig/AEPT -kieselgrau/AEPT -kieshaltig/AEPT -kiesig/AEPT -killen/DIWXY -kilometerlang/AEPT -kilometerweit/AEPT -kinderfeindlich/AEPT -kinderfreundlich/ACEPT -kinderleicht/AEPT -kinderlieb/AEPT -kinderlos/AEPT -kinderreich/ACEPT -kindgerecht/AEPT -kindisch/ACEPT -kindlich/ACEPTU -kinematisch/AEPT -kinetisch/AEPT -kippen/DIWXY -kirchenfeindlich/AEPT -kirchentreu/AEPT -kirchlich/AEPT -kirschenrot/AEPT -kistenweise -kitschig/ACEPT -kitten/DIVXY -kittet/EGPVWX -kittete/GNVZ -kitteten/GIVWX -kitzeln/DIWXY -kitzlig/AEPT -klgerisch/AEPT -klglich/ACEPT -klren/DIVWXY -klaffen/DIXY -klafft/EGPX -klagen/BDIVWXY -klagt/EGPVWX -klamm/ACEPRT -klammern/DIWXY -klammheimlich/AEPT -klang/PVZ -klanggetreu/AEPT -klanglos/AEPT -klangvoll/ACEPT -klappen/BDIVWXY -klapperfrei/AEPT -klapperig/AEPT -klappern/DIWXY -klappert/EGPWX -klappt/EGPVWX -klar/ACEPTU -klarerweise -klargekommen -klargelegt/AEPT -klargemacht/AEPT -klargestellt/AEPT -klarkommen/DIX -klarlegen/DIXY -klarmachen/DIXY -klarstellen/DIXY -klasse -klassenbewusst/AEPT -klassenlos/AEPT -klassifizieren/BDIOXY -klassisch/AEPT -klassischerweise -klassizistisch/AEPT -klatschen/DIWXY -klatschhaft/AEPT -klatschnass/AEPT -klatschschtig/ACEPT -klatscht/EGPWX -klauen/DIWXY -klavierhnlich/AEPT -kleben/DIVWXY -klebrig/ACEPT -klebt/EGPVWX -klebte/GNVZ -klebten/GIVWX -kleckern/DIWXY -kleiden/DIVXY -kleidet/EGPVWX -kleidete/GNVZ -kleideten/GIVWX -kleidsam/ACEPTU -kleidungsbewusst/AEPT -klein/ACEPT -kleinbrgerlich/ACEPT -kleineuropisch/AEPT -kleinformatig/AEPT -kleinkariert/ACEPT -kleinlich/ACEPT -kleinmtig/AEPT -kleinstdtisch/AEPT -kleinstmglich/AEPT -kleisterig/AEPT -klemmen/DIVWXY -klemmt/EGPVWX -klemmte/GNVZ -klemmten/GIVWX -kleptomanisch/AEPT -klerikal/AEPT -klettern/DIWXY -klettert/EGPWX -klicken/DIWXY -klickt/EGPWX -klimatisch/AEPT -klimatisieren/BDIOXY -klimpern/DIWXY -klimpert/EGPWX -klingeln/DIWXY -klingelt/EGPWX -klingen/DIVWX -klinisch/AEPT -klinken/DIXY -klipp -klippenreich/AEPT -klirren/DIWXY -klirrt/EGPWX -klischeehaft/AEPT -klischieren/DIXY -klitschnass/AEPT -klitzeklein/AEPT -klnen/DIWXY -klnt/EGPWX -klsterlich/AEPT -klonen/BDIWXY -klopfen/DIWXY -klopft/EGPWX -klotzig/ACEPT -klger/AEPT -klgste/ANRS -klug/AEPTU -klugerweise -klumpig/AEPT -km -knabbern/DIWXY -knabenhaft/AEPT -knacken/DIWXY -knallen/DIVWXY -knallfroschartig/AEPT -knallhart/AEPT -knallig/ACEPT -knallrot/AEPT -knallt/EGPVWX -knapp/ACEPT -knarren/DIWXY -knattern/DIWXY -knauserig/ACEPT -knausern/DIWXY -knebeln/DIWXY -knechten/DIXY -kneifen/DIVWX -kneten/BDIXY -knicken/BDIVWXY -knickerig/AEPT -knickt/EGPVWX -knickte/GNVZ -knickten/GIVWX -knien/DIXY -kniet/EGPWX -knietief/AEPT -knieweich/AEPT -kniff/PVZ -knifflig/ACEPT -knipsen/DIWXY -knirschen/DIWXY -knirscht/EGPWX -knistern/DIWXY -knistert/EGPWX -knitterfrei/ACEPT -knchellang/AEPT -knchern/AEPT -knpfen/DIWXY -knobeln/DIWXY -knochentrocken/AEPT -knochig/AEPT -knollig/AEPT -knorplig/AEPT -knorrig/AEPT -knospenhaft/AEPT -knoten/DIVXY -knotig/AEPT -knpfen/DIVWXY -knpft/EGPVWX -knpfte/GNVZ -knpften/GIVWX -knppeldick/AEPT -knppeln/DIWXY -knurren/DIWXY -knurrt/EGPWX -knusperig/ACEPT -kniglich/AEPT -knnen/DIY -kpfen/DIWXY -krnig/ACEPT -krperbehindert/AEPT -krperlich/AEPTU -kstlich/ACEPT -koalieren/DIXY -koalitionstreu/AEPT -koalitionsunfhig/AEPT -kobaltblaue/ANRS -kochecht/AEPT -kochen/BDIWXY -kodieren/BDIOXY -kodifizieren/DIOXY -kofferweise -kognakfarbig/AEPT -kognitiv/AEPT -kohrent/AEPT -kohlrabenschwarz/AEPT -kokett/ACEPT -kokettieren/DIWXY -kollabieren/DIWXY -kollaborieren/DIXY -kollegial/ACEPTU -kollektiv/AEPT -kollektivieren/DIOXY -kollektivistisch/AEPT -kollern/DIXY -kollidieren/DIOXY -kollinear/AEPT -kolonial/AEPT -kolonisieren/DIOXY -kolorieren/IOXY -kolossal/AEPT -kolportieren/DIOWXY -kolumbianisch/AEPT -kombinatorisch/AEPT -kombinieren/BDIOXY -kometenhaft/AEPT -komfortabel/ACU -komisch/ACEPT -kommandieren/DIOXY -kommen/DGIVWX -kommentarlos/AEPT -kommentieren/DIOXY -kommerzialisieren/DIOXY -kommerziell/ACEPT -kommissarisch/AEPT -kommissionshungrig/AEPT -kommunal/AEPT -kommunikationsfhig/AEPT -kommunikationstechnisch/AEPT -kommunikativ/AEPT -kommunistisch/AEPT -kommunizieren/DIXY -kommutativ/AEPT -kommutieren/DIOXY -komdiantisch/AEPT -kompakt/ACEPT -kompatibel/A -kompensationslos/AEPT -kompensatorisch/AEPT -kompensieren/BDIOXY -kompetent/ACEPT -kompetitiv/AEPT -kompilieren/BDIOXY -komplanar/AEPT -komplementr/AEPT -komplett/ACEPT -komplettieren/DIOXY -komplex/ACEPT -komplizieren/DIOVXY -kompliziert/ACEPTX -komponentenorientiert/AEPT -komponentenweise/ANRS -komponentig/AEPT -komponieren/DIOXY -kompositorisch/AEPT -kompostieren/DIOWXY -kompress -komprimieren/BDIOXY -kompromissbereit/AEPT -kompromisslos/ACEPT -kompromittieren/DIOXY -kondensieren/DIOXY -konditionell -konditionieren/DIOXY -kondolieren/DIXY -konfektioniert/AEPT -konferieren/DIXY -konfessionell/AEPT -konfessionslos/AEPT -konfigurieren/BDIOXY -konfiszieren/DIOXY -konfliktfrei/AEPT -konflikthaltig/AEPT -konfliktreich/AEPT -konfluent/AEPT -konfderal/AEPT -konform/AEPT -konfrontieren/DIOXY -konfus/ACEPT -konfuzianisch/AEPT -kongenial/AEPT -kongolesisch/AEPT -kongruent/AEPT -konisch/AEPT -konjugieren/DIOXY -konjunkturdmpfend/AEPT -konjunkturell/AEPT -konjunkturgerecht/AEPT -konkatenieren/IOXY -konkav/AEPT -konkret/AEPT -konkrete/ACNRS -konkretisieren/BDIOXY -konkurrenzfhig/ACEPT -konkurrenzlos/AEPT -konkurrieren/DIXY -konkursreif/AEPT -konnotativ/AEPT -konnte/GNZ -konsensfhig/AEPT -konsensorientiert/AEPT -konsequent/ACEPT -konsequenterweise -konservativ/ACEPT -konservieren/BDIOXY -konsistent/AEPT -konsolidieren/DIOXY -konspirativ/AEPT -konstant/AEPT -konstantinisch/AEPT -konstatieren/DIOXY -konsternieren/DIOXY -konstituieren/DIOXY -konstitutionell/AEPT -konstitutiv/AEPT -konstruieren/DIOXY -konstruktionsbedingt/AEPT -konstruktionsreif/AEPT -konstruktiv/ACEPT -konsularisch/AEPT -konsultieren/DIOXY -konsumieren/DIOXY -kontaktarm/AEPT -kontaktfreudig/ACEPT -kontaktieren/DIOXY -kontaktschwach/AEPT -kontaktsuchend/AEPT -kontaminieren/DIOXY -kontemplativ/AEPT -konterkarieren/DIOXY -kontern/DIXY -kontert/EGPX -kontextabhngig/AEPT -kontextfrei/AEPT -kontextsensitiv/AEPT -kontextspezifisch/AEPT -kontextunabhngig/AEPT -kontinental/AEPT -kontinentaleuropisch/AEPT -kontingentieren/DIOXY -kontinuierlich/AEPT -kontrr/AEPT -kontraproduktiv/AEPT -kontrastbetont/AEPT -kontrastieren/DIWXY -kontrastreich/ACEPT -kontraststrker/AEPT -kontrollierbar/AEPTU -kontrollieren/BDIOXY -kontrovers/AEPT -konventionell/AEPTU -konvergent/AEPT -konvergieren/DIOXY -konvertieren/BDIOXY -konvex/AEPT -konzentrieren/DIOXY -konzeptionell/AEPT -konzeptionslos/AEPT -konzeptlos/AEPT -konzeptuell/AEPT -konzernartig/AEPT -konzernintern/AEPT -konzertant/AEPT -konziliant/AEPT -konzipieren/DIOXY -kooperativ/AEPTU -kooperieren/DIXY -kooptieren/DIOXY -koordinieren/DIOXY -kopernikanisch/AEPT -kopflastig/AEPT -kopflos/ACEPT -kopfschttelnd/AEPT -kopfber -kopieren/BDIOXY -koppeln/BDIVXY -koppelt/EGPVX -koppelte/GNVZ -koppelten/GIVWX -korbartig/AEPT -koreanisch/AEPT -korrekt/ACEPTU -korrekterweise -korrelieren/DIOXY -korrespondieren/DIXY -korrigierbar/AEPTU -korrigieren/BDIOXY -korrodieren/DIOXY -korrosionsbestndig/AEPT -korrumpieren/BDIOXY -korrupt/AEPT -koscher/AEPT -kosmetisch/AEPT -kosmisch/AEPT -kosmopolitisch/AEPT -kostbar/ACEPT -kosten/BDIXY -kostenfrei/AEPT -kostengnstig/ACEPT -kostenintensiv/AEPT -kostenlos/AEPT -kostenmig/AEPT -kostenpflichtig/AEPT -kostenschonend/AEPT -kostensenkend/AEPT -kostensparend/AEPT -kostet/EGPWX -kostspielig/ACEPT -kostmieren/DIOXY -kotzen/DIXY -kp -krchzen/DIXY -krftezehrend/AEPT -krftig/ACEPTZ -krftigen/DIWXY -krftigt/EGPWX -krhen/DIXY -krnken/BDIXY -krnker/AEPT -krnklich/ACEPT -krnkst/AEPT -krabbeln/DIXY -krachen/DIVXY -krachledern/AEPT -kracht/EGPVX -kraftlos/ACEPT -kraftraubend/ACEPT -kraftvoll/AEPT -krakeelen/DIXY -krallen/IXY -kramen/IXY -krampfen/DIVXY -krampfhaft/AEPT -krank/AEPT -kranken/DIWXY -krankhaft/ACEPT -krankschreiben/I -krass/ACEPT -kratzen/DIVWXY -kratzt/EGPVWX -kraulen/DIXY -krault/EGPX -kraus/ACEPTZ -krausen/DIWXY -kraushaarig/AEPT -kreativ/ACEPT -kreatrlich/AEPT -krebsartig/AEPT -krebskrank/AEPT -krebsrot/AEPT -kredenzen/DIOXY -kreditfhig/ACEPT -kreditieren/DIOXY -kreditsuchend/AEPT -kreditunwrdig/AEPT -kreditwrdig/ACEPT -kreidebleich/AEPT -kreiden/DIXY -kreidewei/AEPT -kreieren/DIOXY -kreischen/DIXY -kreischt/EGPX -kreiseln/DIXY -kreisen/DIXY -kreisfrmig/AEPT -kreisrund/AEPT -krempig/AEPT -krepieren/DIOXY -kreuzen/DIXY -kreuzigen/DIXY -kreuzweise/ANRS -kribbeln/DIXY -kribblig/AEPT -kriechen/DIVX -kriegen/DIXY -kriegerisch/AEPT -kriegsbeschdigt/AEPT -kriegsblind/AEPT -kriegsfeindlich/AEPT -kriegsgerichtlich/AEPT -kriegsgeschdigt/AEPT -kriegsuntauglich/AEPT -kriegsversehrt/AEPT -kriegswillig/AEPT -kriegszerstrt/AEPT -kriegt/EGPX -kriminalistisch/AEPT -kriminalpolizeilich/AEPT -kriminell/ACEPT -kriminologisch/AEPT -kriseln -kriselt/E -krisenanfllig/AEPT -krisenfest/AEPT -krisenhaft/AEPT -krisensicher/AEPT -krisenunabhngig/AEPT -kristallin/AEPT -kristallinisch/AEPT -kristallisationsfest/AEPT -kristallisieren/DIOXY -kristallklar/AEPT -kristallrein/AEPT -kritikbedacht/AEPT -kritiklos/AEPT -kritisch/ACEPTU -kritisieren/BDIOXY -kritzeln/IXY -kritzelt/EGPX -krnen/DIXY -kroatisch/AEPT -kroch/PVZ -krochen/GVWX -kross/ACEPT -krmeln/DIVXY -krmmen/DIVXY -krmmt/EGPVX -krmmte/GNVZ -krmmten/GIVWX -krppelhaft/AEPT -krpplig/ACEPT -krud/AEPT -krumm/ACEPT -kryptisch/AEPT -kryptographisch/AEPT -kt -khl/ACEPTZ -khlen/DIWXY -khn/ACEPT -kmmerlich/AEPT -kmmern/DIVXY -kmmert/EGPVX -kndbar/AEPTU -knden/BDIVXY -kndigen/DIVXY -kndigt/EGPVX -kndigte/GNVZ -kndigten/GIVWX -knftig/AEPT -knstlerisch/AEPT -knstlich/ACEPT -kren/DIXY -krze/CNR -krzen/DIVXY -krzlich/AEPT -kssen/DIWXY -kstengebunden/AEPT -kubanisch/AEPT -kubieren/DIOWXY -kubisch/AEPT -kubistisch/AEPT -kugelfrmig/AEPT -kugeln/DIXY -kugelsicher/AEPT -kuglig/AEPT -kulant/AEPT -kulanzweise -kulinarisch/AEPT -kullern/IXY -kultisch/AEPT -kultivieren/BDIOXY -kulturell/ACEPT -kulturfreundlich/ACEPT -kulturgeschichtlich/AEPT -kulturhistorisch/AEPT -kulturkritisch/ACEPT -kulturpolitisch/AEPT -kummervoll/ACEPT -kumulativ/AEPT -kumulieren/DIOWXY -kund -kundenfreundlich/AEPT -kundenseitig/AEPT -kundenspezifisch/AEPT -kundgetan -kundig/AEPTU -kundtat/PZ -kundtun/IX -kundzutun -kunstbewusst/AEPT -kunstinteressiert/AEPT -kunstlos/AEPT -kunstvoll/ACEPT -kunterbunt/AEPT -kupferfarben/AEPT -kupfern/AEPT -kuppeln/DIVXY -kurativ/AEPT -kurbeln/DIXY -kurdisch/AEPT -kuren/DIXY -kurieren/BDIOXY -kurios/AEPT -kurioserweise -kursieren/DIXY -kursiv/AEPT -kursvernichtend/AEPT -kurven/DIXY -kurvenreich/AEPT -kurz/AEPT -kurzatmig/AEPT -kurzbeinig/AEPT -kurzentschlossen/AEPT -kurzerhand -kurzfristig/AEPT -kurzgeschlossen/AEPT -kurzhaarig/AEPT -kurzlebig/AEPT -kurzschlieen/DIX -kurzschlussfest/AEPT -kurzsichtig/AEPT -kurzum -kurzweilig/AEPT -kurzzeitig/AEPT -kuscheln/DIWXY -kuschelweich/AEPT -kuschen/DIXY -kussecht/AEPT -kybernetisch/AEPT -kyrillisch/AEPT -lcheln/DIXY -lcherlich/AEPT -ldieren/DIOXY -ldt/VX -lgen/IX -lhmen/DIXY -lndermig/AEPT -lndlich/ACEPT -lnger/AEPT -lngerfristig/AEPT -lnglich/ACEPT -lngs -lngst/AEPT -lngsten/SW -lrmen/DIXY -lrmig/ACEPT -lrmvoll/AEPT -lssig/ACEPT -lsst/V -lstern/DIVXY -lstert/EGPVX -lstig/ACEPT -lufig/AEGPT -luft/VX -luten/DIXY -lutern/DIWXY -laben/DIXY -labil/ACEPT -laborieren/DIXY -labormig/AEPT -lachen/DIWXY -lacht/EGPWX -lackgeschtzt/AEPT -lackieren/DIOXY -ladefhig/AEPT -laden/BDGIV -lag/PZp -lagebedingt/AEPT -lagerichtig/AEPT -lagern/BDIVXY -lagert/EGPVX -lagerte/GNVZ -lagerten/GIVWX -lahm/ACEPTZ -lahmen/DIXY -lahmlegen/DIXY -lahmt/EGPWX -lahmzulegen/D -laichen/DIXY -laienhaft/ACEPT -laienhafterweise -laizistisch/AEPT -lakonisch/AEPT -lallen/DIXY -lambda -lamentieren/DIXY -lammfromm/AEPT -lancieren/DIOXY -landab -landeinwrts -landen/DIXY -landesbedingt/AEPT -landeseigen/AEPT -landesplanerisch/AEPT -landespolitisch/AEPT -landesweit/AEPT -landgebunden/AEPT -landlufig/AEPT -landschaftlich/AEPT -landwirtschaftlich/AEPT -lang/AEGPTZ -langarmig/AEPT -langatmig/AEPT -langbeinig/AEPT -langen/DGIWXY -langfristig/AEPT -langgehen/I -langhaarig/AEPT -langhalsig/AEPT -langjhrig/AEPT -langlaufen/DI -langlebig/AEPT -langmtig/AEPT -langsam/ACEPT -langwhrend/AEPT -langweilen/DIXY -langweilig/ACEPT -langwierig/AEPT -laotisch/AEPT -lapidar/AEPT -las/PVZq -lasergedruckt/AEPT -lassen/DGIVW -lasten/DIWXY -lastenfrei -lasterhaft/ACEPT -lastfrei/AEPT -lasziv/AEPT -lateinamerikanisch/AEPT -lateinisch/AEPT -latent/AEPT -lateral/AEPT -latschen/DIXY -latscht/EGPX -lau/ACEPRTZ -laude -lauern/DIWXY -laufen/DGIVW -lauffhig/AEPT -laugen/IXY -launenhaft/ACEPT -launig/AEPT -launisch/ACEPT -lauschen/DIXY -lauschig/AEPT -lauscht/EGPX -lausen/DIOXY -lausig/AEPT -laust/AEGPTW -lauste/AGNRSZ -laut/ACELPTWX -laute/ACNRSZ -lauten/DIWXY -lauter/AEPTU -lauthals -lautlos/ACEPT -lautstark/AEPT -lauwarm/AEPT -lawinenartig/AEPT -lax/ACEPT -leasen/DIXY -leben/DIVXY -lebendgeboren/AEPT -lebendig/ACEPT -lebensbedrohend/AEPT -lebensbejahend/AEPT -lebensfhig/AEPT -lebensfreundlich/AEPT -lebensfroh/AEPT -lebensgefhrlich/AEPT -lebensgewandt/AEPT -lebensklug/AEPT -lebenslnglich/AEPT -lebenslang/AEPT -lebenslustig/AEPT -lebensmde/ANRS -lebensnah/AEPT -lebensnotwendig/AEPT -lebensunfhig/AEPT -lebensuntchtig/AEPT -lebensvoll/AEPT -lebenswert/ACEPT -lebenswichtig/ACEPT -lebhaft/ACEPT -leblos/AEPT -lebt/EGPVX -lebte/GNVZ -lebten/GIVWX -lechzen/DIXY -lecken/DIXY -lecker/AEPT -ledern/AEPT -ledig/AEPT -lediglich -leer/ACEPTZ -leeren/DIWXY -legal/ACEPT -legalisieren/DIOXY -legen/DGIVWXY -legendr/AEPT -leger/AEPT -legiert/AEPT -legislativ/AEPT -legitim/AEPT -legitimerweise -legitimieren/DIOWXY -lehmig/AEPT -lehnen/DIXY -lehnt/EGPX -lehren/DIXY -lehrreich/ACEPT -leibeigen/AEPT -leibhaftig/AEPT -leiblich/AEPT -leibt/V -leichenblass/AEPT -leicht/ACEPT -leichtathletisch/AEPT -leichtfertig/ACEPT -leichtfig/AEPT -leichtgngig/AEPT -leichtglubig/ACEPT -leichthndig/AEPT -leichtlebig/AEPT -leichtsinnig/ACEPT -leide/NRZ -leiden/DIVX -leidenschaftlich/ACEPT -leidgeprft/AEPT -leidig/AEPT -leidlich/AEPTU -leidtragen/DI -leidvoll/AEPT -leihen/DIVWX -leihweise -leimen/DIVXY -leimt/EGPVX -leimte/GNVZ -leimten/GIVWX -leinwandverstrkt/AEPT -leise/ACNRS -leisten/DIXY -leistungsbezogen/AEPT -leistungsfhig/ACEPT -leistungsgerecht/AEPT -leistungsorientiert/AEPT -leistungsstrkste/ANRS -leistungsstark/AEPT -leistungssteigernd/AEPT -leiten/DGIVXY -leitfhig/AEPT -leitungsmig/AEPT -lemmingartig/AEPT -lenken/BDIXY -lernbegierig/ACEPT -lernbehindert/AEPT -lernen/DIVXY -lernfhig/AEPT -lesbar/AEPTU -lesbisch/AEPT -lesen/BDGIV -lesenswert/AEPT -leserlich/ACEPTU -lettisch/AEPT -letzte/ANRSV -letzten/S -letztendlich/AEPT -letzter/AEPT -letztgeliefert/AEPT -letztgenannt/AEPT -letzthndig/AEPT -letzthin -letztjhrige/ANRS -letztklassig/AEPT -letztlich/AEPT -letztmalig/AEPT -letztmals -letztmglich/AEPT -letztwillig/AEPT -leuchten/DIXY -leuchtend/ACEPT -leugnen/DIVXY -leugnet/EGPVWX -leugnete/GNVZ -leugneten/GIVWX -leutselig/ACEPT -lexikalisch/AEPT -lexikographisch/AEPT -lfd -lfd. -libanesisch/AEPT -liberal/ACEPT -liberalisieren/DIOXY -libysch/AEPT -lichtblau/AEPT -lichtdurchlssig/ACEPT -lichte/ANRSZ -lichtempfindlich/ACEPT -lichten/DIWXY -lichterloh/AEPT -lieb/ACELPTZ -liebugeln/DIXY -lieben/DIWXY -liebenswert/ACEPT -liebenswrdig/ACEPT -liebeskrank/AEPT -liebevoll/ACEPT -liebgeworden/AEPT -liebkosen/DIXY -lieblich/ACEPT -lieblichst/AEPTW -lieblos/ACEPT -liebreizend/AEPT -liederlich/ACEPT -lief/EPVZ -lieferfhig/AEPT -lieferfertig/AEPT -liefern/BDIXY -liegen/DIX -lieh/PVZ -liehen/GVWX -lies -lie/EPVZ -liest/V -lifte/NZ -lila -limitieren/DIOXY -lind/AEGPRT -linde/AGNRS -lindern/DIWXY -linear/AEPT -linguistisch/AEPT -linientreu/AEPT -linke/ANRS -linken/DIXY -links -linksbndig/AEPT -linksextrem/ACEPT -linksextremistisch/AEPT -linksgerichtet/AEPT -linkslastig/AEPT -linksliberal/AEPT -linksliegen/D -linksorientiert/AEPT -linksradikal/AEPT -linksrheinisch/AEPT -linksseitig/AEPT -linkssozialistisch/AEPT -linksum -linksunabhngig/AEPT -liquid/AEPT -liquidieren/BDIOXY -lispeln/DIXY -listen/DIXY -listenreich/AEPT -listig/ACEPT -litaneiartig/AEPT -literarisch/AEPTU -literweise -lithografisch/AEPT -lithographisch/AEPT -litt/EPZ -liturgisch/AEPT -live -livriert/AEPT -lizenzieren/BDIOXY -lblich/AEPT -lchern/DIXY -lchrig/AEPT -lffeln/DIXY -lhnen/DIXY -lsbar/ACEPTU -lschen/DIVXY -lsen/BDIXY -lslich/ACEPTU -lten/DIVXY -ltet/EGPVWX -loben/DGIVXY -lobenswert/ACEPT -lochen/DIXY -locken/DIVXY -locker/ACENPTZ -lockerlassen/DI -lockermachen/DIX -lockern/DIWXY -lockerzumachen -lockig/AEPT -lockt/EGPVX -lockte/GNVZ -lockten/GIVWX -lodern/DIXY -log/PZ -logarithmisch/AEPT -loggen/DIXY -loggt/EGPX -logieren/DIXY -logikbasiert/AEPT -logisch/AEPTU -logischerweise -logistisch/AEPT -lohnabhngig/AEPT -lohnen/DIXY -lohnend/ACEPT -lohnenswert/AEPT -lohnpolitisch/AEPT -lohnt/EGPX -lokal/AEPT -lokalbedingt/AEPT -lokalisieren/BDIOXY -longitudinal/AEPT -los/ACEPTZ -losband/PZ -losbinden/DIX -losbrach/PZ -losbrechen/DI -losbricht/X -loseisen/DIXY -losen/DIWXY -losfhrt/X -losfahren/DI -losgebrochen/AEPT -losgebunden/AEPT -losgefahren/AEPT -losgegangen/AEPT -losgehen/DIX -losgelassen/AEPT -losgelegt/AEPT -losgelst/AEPT -losgemacht/AEPT -losgerast -losgerissen/AEPT -losgesagt/AEPT -losgesaust -losgeschickt/AEPT -losgeschlagen -losgeworden/AEPT -loshetzen/DIXY -loskommen/DIX -loslassen/DI -loslegen/DIXY -loslie/EPZ -loslsen/DIXY -losmachen/DIXY -losreien/DIX -losrollen/IXY -losschicken/DIXY -losschlagen/DI -lost/EGPV -loste/GNVZ -losten/GIVWX -losweinen/DIXY -loswerden/DI -loswiehern/DIXY -loszueisen/D -loszukaufen/D -loszureien/D -loszuschneiden/D -loszuwerden/D -lotsen/IXY -lottospielen/DIXY -loyal/AEPT -lt -lt. -lckenhaft/ACEPT -lckenlos/ACEPT -lften/DIXY -lgen/DIX -lgnerisch/ACEPT -lstern/AEPT -lud/PVZ -luftdicht/ACEPT -luftfahrttechnisch/AEPT -luftfrmig/AEPT -luftig/ACEPT -lugen/DIXY -lukrativ/ACEPT -lukullisch/AEPT -lumpig/AEPT -lungern/DIXY -lupenrein/ACEPT -lustig/ACEPTU -lustlos/ACEPT -lustvoll/ACEPT -lutherisch/AEPT -lutschen/DIXY -luxemburgisch/AEPT -luxuris/ACEPT -lyrisch/AEPT -mA -manderartig/AEPT -manderfrmig/AEPT -mandern/DIXY -mandrieren/DIOXY -mchtig/ACEPT -mdchenhaft/ACEPT -mhen/DIWXY -mnnlich/ACEPTU -mrchenhaft/ACEPT -mrkisch/AEPT -mig/ACEPTZ -migen/DIWXY -msten/DIXY -machen/BDIVWXY -macht/EGPVWX -machte/GNVZ -machten/GIVWX -machthaberisch/AEPT -machtlos/ACEPT -machtpolitisch/AEPT -machtschtig/AEPT -machtvoll/ACEPT -madig/AEPT -magellansche/S -mager/ACEPT -magisch/AEPT -magnetisch/AEPT -magnetisiert/AEPT -magst/VW -mahlen/DGIXY -mahnen/DIXY -majesttisch/AEPT -majorisieren/DIOXY -makaber/ACEPT -makellos/ACEPT -makroskopisch/AEPT -malaysisch/AEPT -malen/DIWXY -malerisch/AEPT -malizis/AEPT -maltrtieren/DIOXY -man -managen/DIXY -manch/AEPT -mancherlei -manchmal -mandelfrmig/AEPT -mangelhaft/AEPT -mangeln/DIXY -mangels -manifestieren/DIOXY -manipulieren/BDIOXY -manisch/AEPT -mannhaft/AEPT -mannigfach/ACEPT -mannigfaltig/AEPT -manvrieren/DIXY -manvrierunfhig/AEPT -manuell/AEPT -marginal/AEPT -marinieren/DIOXY -maritim/AEPT -markant/ACEPT -markenpflichtig/AEPT -markgrflich/AEPT -markieren/DIOXY -marktbeherrschend/AEPT -marktfhig/ACEPT -marktfhrend/AEPT -marktgerecht/AEPT -marktkonform/AEPT -marktorientiert/AEPT -marktpolitisch/AEPT -marktreif/AEPT -marktschreierisch/AEPT -marktblich/AEPT -marktwirtschaftlich/AEPT -marokkanisch/AEPT -maronitisch/AEPT -marschieren/DIXY -martern/DIXY -martialisch/AEPT -marxistisch/AEPT -ma/PVZ -magearbeitet/AEPT -magebend/ACEPT -mageblich/AEPTU -magerecht/AEPT -mageschneidert/AEPT -malos/AEPT -mastblich/AEPT -mastabsgetreu/AEPT -mavoll/AEPT -maschinell/AEPT -maschinenabhngig/AEPT -maschinenbezogen/AEPT -maschinenfertig/AEPT -maschinenhaft/AEPT -maschinenmig/AEPT -maschinennher/AEPT -maschinennah/AEPT -maschinenspezifisch/AEPT -maschinensprachlich/AEPT -maschinenunabhngig/AEPT -maschinenuntersttzt/AEPT -maschinenzugehrig/AEPT -maskenhaft/AEPT -maskenorganisiert/AEPT -maskieren/DIOXY -maskulin/AEPT -massakrieren/DIOXY -massenhaft/AEPT -massenpsychologisch/AEPT -massenweise -massieren/DIOXY -massig/AEPT -massiv/ACEPT -masturbieren/DIWXY -materialgerecht/AEPT -materialistisch/ACEPT -materialspezifisch/AEPT -materiell/AEPT -mathematisch/AEPT -matschig/ACEPT -matt/ACEPT -mattgelb/AEPT -mattgolden/AEPT -mattiert/AEPT -mattschwarz/AEPT -mauern/DIVXY -mauert/EGPVX -mauerte/GNVZ -mauerten/GIVWX -maulen/DIXY -mausern/DIXY -mausgrau/AEPT -max -max. -maximal/AEPT -maximieren/DIOXY -mazedonisch/AEPT -mechanisch/AEPT -mechanisiert/AEPT -mechanistisch/AEPT -meckern/DIXY -meckert/EGPX -mecklenburgisch/AEPT -meditativ/AEPT -mediterran/AEPT -meditieren/DIXY -medizinisch/AEPT -megrenhafte -mehlig/ACEPT -mehraderig/AEPT -mehrdeutig/ACEPT -mehrdimensional/AEPT -mehreckig/AEPT -mehren/DIWXY -mehrere/NR -mehrfach/AEPT -mehrfarbig/AEPT -mehrgeschossig/AEPT -mehrgliederig/AEPT -mehrheitlich/AEPT -mehrjhrig/AEPT -mehrkanalig/AEPT -mehrlinig/AEPT -mehrmalig/AEPT -mehrmals -mehrmonatig/AEPT -mehrpolig/AEPT -mehrprozentig/AEPT -mehrseitig/AEPT -mehrsilbig/AEPT -mehrsortig/AEPT -mehrsprachig/AEPT -mehrstellig/AEPT -mehrstimmig/AEPT -mehrstckig/AEPT -mehrstndig/AEPT -mehrstufig/AEPT -mehrtgig/AEPT -mehrteilig/AEPT -mehrwchig/AEPT -mehrzeilig/AEPT -meiden/DIVX -meilenweit -mein/AEGPTZ -meinen/DGIWXY -meinerseits -meinesgleichen -meinesteils -meinethalben -meinetwegen -meinetwillen -meinige/N -meinte/GNVZ -meinten/GIVWX -meinungsbildend/AEPT -meieln/DIXY -meist/EP -meistbesucht/AEPT -meistbietend/AEPT -meisten/SW -meistenteils -meisterhaft/ACEPT -meisterlich/AEPT -meistern/DIXY -meistgekauft/AEPT -meistgenannt/AEPT -meistgespielt/AEPT -meistzitiert/AEPT -melancholisch/ACEPT -melden/DIVXY -meldepflichtig/AEPT -meldet/EGPVWX -meldete/GNVZ -meldeten/GIVWX -melken/DIXY -melodis/AEPT -melodisch/AEPT -melodramatisch/AEPT -memorieren/DIOXY -mengen/IVXY -mengenmig/AEPT -menschenhnlich/AEPT -menschenfreundlich/AEPT -menschenleer/AEPT -menschenmglich/AEPT -menschenscheu/ACEPT -menschenspezifisch/AEPT -menschenunwrdig/ACEPT -menschenwrdig/ACEPT -menschlich/ACEPTU -menstrual/AEPT -mental/AEPT -mengesteuert/AEPT -merk/ELPV -merkantil/AEPT -merken/BDIVWXY -merklich/AEPTU -merkmalsarm/AEPT -merkt/EGPVWX -merkte/GNVZ -merkten/GIVWX -merkwrdig/ACEPT -merkwrdigerweise -messbar/AEPTU -messen/BDGIV -messerscharf/AEPT -messtechnisch/AEPT -metabol -metabolisch/AEPT -metallen/AEPT -metallgrn/AEPT -metallhaltig/AEPT -metallisch/AEPT -metallisiert/AEPT -metallurgisch/AEPT -metaphysisch/AEPT -meteorologisch/AEPT -meterweise -methodisch/ACEPTU -methodologisch/AEPT -metrisch/AEPT -meucheln/DIXY -meuchlerisch/AEPT -meutern/DIXY -meutert/EGPX -mexikanisch/AEPT -miauen/DIXY -mich -mickerig/AEPT -mied/PVZ -mieden/GVWX -mies/AEPT -miethnlich/AEPT -mieten/BDIVXY -mietet/EGPVWX -mietete/GNVZ -mieteten/GIVWX -mikrobiologisch/AEPT -mikroelektronisch/AEPT -mikroskopisch/AEPT -mikroverfilmt/AEPT -milchig/AEPT -mild/ACEPRT -mildern/DIWXY -mildttig/ACEPT -milieubedingt/AEPT -militrhnlich/AEPT -militrisch/AEPTU -militrpolitisch/AEPT -militrtechnisch/AEPT -militant/AEPT -militaristisch/AEPT -millimeterdnn/AEPT -millimetergenau/AEPT -millimeterweise -millionenfach/AEPT -millionenschwer/AEPT -millionste/ANRS -mimisch/AEPT -min -min. -minder/AENPTZ -minderbemittelt/AEPT -minderjhrig/AEPT -mindern/DIWXY -minderte/GNVZ -minderten/GIVWX -minderwertig/ACEPT -mindeste/N -mindesten/S -mindestreservepflichtig/AEPT -minenverseucht/AEPT -mineralisch/AEPT -minimal/ACEPT -minimalisieren/DIOXY -minimieren/DIOXY -minoisch/AEPT -mintig/AEPT -minus -minutenlang/AEPT -minutenschnell/AEPT -minutis/AEPT -mir -mischen/BDIWXY -miserabel/AC -miss/ELPVZ -missachten/DIOXY -missbehagen/DIXY -missbilligen/DIOXY -missbruchlich/AEPT -missbrauchen/DIOXY -missdeuten/DIOXY -missen/DIVWXY -missfllt/X -missfallen/DI -missfiel/EPZ -missgebildet/AEPT -missgelaunt/AEPT -missgestimmt/AEPT -missglcken/DIOXY -missgnnen/DIOXY -missgnstig/ACEPT -misshandeln/DIOXY -missionieren/DIOXY -misslang/PZ -misslingen/DIX -misslungen/AEPT -missmutig/ACEPT -missraten/ACEPT -misst/EGPVW -misste/GNVZ -missten/GIVWX -misstnend/AEPT -misstnig/AEPT -misstrauen/DIXY -misstrauisch/ACEPT -missvergngt/AEPT -missverstndlich/AEPTU -missverstanden/AEPTWX -missverstehen/DIX -misszudeuten/D -misszuverstehen/D -misten/DIXY -mistig/AEPT -mit -mitangeben/DI -mitangehrt/AEPT -mitangeklagt/AEPT -mitangesehen/AEPT -mitanhren/DIXY -mitarbeiten/DIXY -mitarbeiterorientiert/AEPT -mitaufnehmen/DI -mitausstellen/DIXY -mitbegrnden/DIXY -mitbekam/PZ -mitbekommen/DIX -mitbelastet/AEPT -mitbentzen/DIOXY -mitbenutzt/AEPT -mitbeobachtet/AEPT -mitberechnen/DIOXY -mitbercksichtigen/DIOXY -mitbestellt/AEPT -mitbestimmen/DIOXY -mitbeteiligt/AEPT -mitbetreuen/DIOXY -mitbetrifft -mitbewirken/IXY -mitbezahlen/DIOXY -mitbringen/DIX -mitdenken/DIX -mitdienen/DIXY -mitdrehen/DIXY -miteinander -miteinbeziehen/DIX -miteinbezogen/AEPT -miteinkalkuliert/AEPT -mitempfinden/DIX -mitentwickelt/AEPT -miterleben/BDIOXY -mitfahren/DI -mitfinanzieren/DIOXY -mitfhlen/DIXY -mitfhren/DIXY -mitfuhr/PZ -mitgab/PZ -mitgearbeitet -mitgeben/DI -mitgebracht/AEPT -mitgedruckt -mitgefahren/AEPT -mitgefangen/AEPT -mitgefiebert -mitgefhlt -mitgefhrt/AEPT -mitgegangen/AEPT -mitgegeben/AEPT -mitgehalten/AEPT -mitgehen/DIX -mitgehrt/AEPT -mitgekmpft -mitgekommen/AEPT -mitgekriegt -mitgeliefert/AEPT -mitgeloggt/AEPT -mitgemacht/AEPT -mitgemessen/AEPT -mitgemietet/AEPT -mitgenommen/AEPT -mitgeprgt -mitgeredet -mitgereist/AEPT -mitgerissen/AEPT -mitgeschickt/AEPT -mitgeschleift/AEPT -mitgeschleppt/AEPT -mitgesendet/AEPT -mitgespielt -mitgesprochen -mitgestalten/DIOXY -mitgesteuert -mitgesungen/AEPT -mitgeteilt/AEPT -mitgetragen/AEPT -mitgewirkt -mitgezhlt -mitgezogen -mitgibt/X -mithltst/WX -mithalten/DI -mithandeln/DIXY -mithelfen/DI -mithilfe -mithin -mithren/DIXY -mitjubeln/DIXY -mitkmen/IX -mitkmpfen/DIXY -mitkam/PZ -mitkassieren/DIOXY -mitkommen/DIX -mitkriegen/DIXY -mitlachen/DIXY -mitlaufen/DI -mitleiden/DIX -mitleidig/AEPT -mitleidlos/ACEPT -mitleidvoll/AEPT -mitlesen/DI -mitliefern/IXY -mitloggen/DIXY -mitmachen/DIXY -mitmenschlich/AEPT -mitmischen/DIXY -mitnahm/PZ -mitnehmen/DI -mitnichten -mitprotokollieren/DIOXY -mitrechnen/DIXY -mitreden/DIXY -mitreien/DIX -mitreisen/DIXY -mitsamt -mitschicken/DIXY -mitschneiden/DIX -mitschuldig/AEPT -mitschwingen/DIX -mitsenden/DIX -mitsingen/DIX -mitspielen/DIXY -mitsprechen/DI -mitspringen/DIX -mitsteigen/DIX -mittglich/AEPT -mittags -mitteilen/DIXY -mitteilsam/AEPT -mitteilungsgem/AEPT -mittelalterlich/AEPT -mittelamerikanisch/AEPT -mittelasiatisch/AEPT -mittelbar/AEPTUV -mittelblau/AEPT -mitteldeutsch/AEPT -mittelenglisch/AEPT -mitteleuropisch/AEPT -mittelflach/AEPT -mittelfristig/AEPT -mittelgro/AEPT -mittelklassig/AEPT -mittelkurz/AEPT -mittellang/AEPT -mittellos/AEPT -mittelmig/ACEPT -mittelminoisch/AEPT -mittelmykenisch/AEPT -mitteln/BDIVXY -mittelstlich/AEPT -mittels/V -mittelschwer/AEPT -mittelstndisch/AEPT -mitteltief/AEPT -mitteltrge/ANRS -mitten -mittendrin -mittig/AEPT -mittlere/ANRS -mittlerweile -mittragen/DI -mittwochs -mitbertrgt/X -mitunter -mitverantwortlich/AEPT -mitverarbeiten/DIOXY -mitverfolgen/DIOXY -mitversichern/DIXY -mitversorgen/DIOXY -mitverwaltet/AEPT -mitverwenden/DIOXY -mitwhlen/DIXY -mitwirken/DIXY -mitwissen/DI -mitziehen/DIX -mitzuarbeiten -mitzubenutzen/D -mitzubringen/D -mitzuerleben/D -mitzufahren -mitzugeben/D -mitzugestalten/D -mitzuhalten -mitzukommen -mitzulesen/D -mitzumachen/D -mitzunehmen/D -mitzureien/D -mitzusenden/D -mitzusprechen -mitzuteilen/D -mitzutragen/D -mitzubernehmen/D -mitzuwirken/D -mixen/DIXY -mm -mblieren/BDIOXY -mchte/NZ -mge/NVZ -mgen/DIV -mglich/ACEPTU -mglicherweise -mglichst/AEPTW -mrderisch/AEPT -mobil/ACEPT -mobilgemacht/AEPT -mobilisieren/BDIOXY -mochte/GNVZ -mochten/GIVX -modebewusst/AEPT -modellbasiert/AEPT -modellgesttzt/AEPT -modellhaft/AEPT -modellieren/BDIOXY -modellorientiert/AEPT -modelltheoretisch/AEPT -modemfhig/AEPT -moderat/AEPT -moderieren/DIOXY -moderig/AEPT -modern/ACDEIPTUVXY -modernisieren/BDIOXY -modifizieren/BDIOXY -modisch/ACEPT -modular/AEPT -modularisieren/BDIOXY -modulieren/DIOXY -modulo -modulbergreifend/AEPT -modulberschreitend/AEPT -mogeln/DIXY -mogelt/EGPX -mohammedanisch/AEPT -mokieren/DIXY -molar/AEPT -molekular/AEPT -mollig/ACEPT -momentan/AEPT -monarchisch/AEPT -monatelang/AEPT -monatlich/AEPT -monatsweise -mondn/AEPT -monegassisch/AEPT -monetr/AEPT -mongolisch/AEPT -monieren/IOXY -monistisch/AEPT -monogam/AEPT -monografisch/AEPT -monolithisch/AEPT -monopolistisch/AEPT -monotheistisch/AEPT -monoton/AEPT -monstrs/AEPT -montags -montieren/BDIOXY -monumental/ACEPT -moorig/AEPT -moralisch/AEPTU -moralisieren/DIXY -morastig/AEPT -morden/DIXY -mordet/EGPWX -mordsmig/AEPT -morgen/S -morgenlndisch/AEPT -morgige/ANRS -morphologisch/AEPT -morsch/AEPT -mosaikartig/AEPT -mosern/DIWXY -mosert/EGPWX -moslemisch/AEPT -mosten/DIXY -motivieren/BDIOXY -motorisch/AEPT -motorisieren/DIOXY -motorsportlich/AEPT -motzen/DIXY -mounten/IXY -ms -msec -mde/ACNRS -mhelos/ACEPT -mhen/DIXY -mhevoll/ACEPT -mhsam/AEPT -mhselig/ACEPT -mndelsicher/AEPT -mnden/DIXY -mndig/AEPTU -mndlich/AEPT -mnzen/DIXY -mrbe/ANRS -mrrisch/AEPT -mig/AEPT -mssen/DIXY -mtterlich/AEPT -mtterlicherseits -muffig/AEPT -mulmig/AEPT -multifunktional/AEPT -multilateral/AEPT -multimedial/AEPT -multinational/AEPT -multipel/A -multiplikativ/AEPT -multiplizieren/DIOXY -mundgerecht/AEPT -munkeln/DIXY -munkelt/EGPX -munter/ACEPT -murmeln/DIXY -murren/DIXY -museumsreif/AEPT -musikalisch/ACEPTU -musikliebend/AEPT -musisch/AEPT -musizieren/DIXY -muskulr/AEPT -muskuls/ACEPT -muslimisch/AEPT -musst/EGPW -mussten/IWX -mustergltig/AEPT -musterhaft/ACEPT -mustern/DIXY -muten/DIVXY -mutig/ACEPTU -mutlos/ACEPT -mutmaen/IXY -mutmalich/AEPT -mutterlos/AEPT -mutterseelenallein -muttersprachlich/AEPT -mutwillig/AEPT -mysteris/AEPT -mystisch/AEPT -mythisch/AEPT -mythologisch/AEPT -nchst/AEPT -nchstlteste/ANRS -nchstbeste/ANRS -nchstfolgend/AEPT -nchstgelegen/AEPT -nchstgrere/ANRS -nchsthher/AEPT -nchstjhrig/AEPT -nchstkleinere/ANRS -nchstliegend/ACEPT -nchstmglich/AEPT -nchststrkste/ANRS -nchsttiefer/AEPT -nchtelang/AEPT -nchtigen/DIXY -nchtlich/AEPT -nhen/DIVXY -nher/AENPTZ -nhergekommen/AEPT -nhergerckt/AEPT -nhern/DIWXY -nherungsweise -nhmen/IX -nhren/DIXY -nhrstoffreich/AEPT -nht/EGPVX -nhte/GNVZ -nhten/GIVWX -nmlich/AEPT -nrrisch/ACEPT -nseln/DIXY -nach -nachahmen/DIXY -nachahmenswert/AEPT -nacharbeiten/DIXY -nachbarlich/AEPT -nachbauen/BDIXY -nachbehandelt/AEPT -nachbereiten/DIXY -nachbessern/DIXY -nachbestellen/DIOXY -nachbestckt/AEPT -nachbezahlen/DIOXY -nachbilden/IXY -nachblicken/DIXY -nachdachte/NZ -nachdem -nachdenken/DIX -nachdenklich/AEPT -nachdrngen/DIXY -nachdrehen/DIXY -nachdrcken/DIXY -nachdrcklich/AEPT -nachdrucken/DIXY -nacheifern/DIXY -nacheilen/DIXY -nacheinander -nachempfinden/DIX -nachempfunden/AEPT -nacherzhlen/DIOXY -nachfolgen/DIXY -nachfordern/DIXY -nachforschen/DIXY -nachfragen/DIXY -nachfhlen/BDIXY -nachfllen/BDIXY -nachgab/PZ -nachgaloppieren/DIXY -nachgeahmt/AEPT -nachgeben/DI -nachgebildet/AEPT -nachgeblttert -nachgeblickt/AEPT -nachgedacht -nachgedichtet/AEPT -nachgedrngt -nachgedruckt/AEPT -nachgeeifert -nachgefolgt/AEPT -nachgeforscht -nachgefragt -nachgefhlt/AEPT -nachgefhrt -nachgefllt/AEPT -nachgegangen -nachgegeben -nachgegossen/AEPT -nachgehen/DIX -nachgeholfen -nachgeholt/AEPT -nachgekauft/AEPT -nachgeklungen -nachgekommen/AEPT -nachgeladen/AEPT -nachgelassen/AEPT -nachgeleiert/AEPT -nachgelesen -nachgeliefert/AEPT -nachgelst/AEPT -nachgemacht/AEPT -nachgemessen/AEPT -nachgeordnet/AEPT -nachgerannt -nachgerechnet/AEPT -nachgeredet/AEPT -nachgereicht/AEPT -nachgeritten -nachgerckt/AEPT -nachgerstet/AEPT -nachgesagt/AEPT -nachgesandt/AEPT -nachgeschaltet/AEPT -nachgeschaut -nachgeschickt/AEPT -nachgeschlagen/AEPT -nachgeschleppt/AEPT -nachgeschoben/AEPT -nachgesehen/AEPT -nachgesendet/AEPT -nachgesetzt -nachgesprochen/AEPT -nachgesprt -nachgestanden/AEPT -nachgestellt/AEPT -nachgetragen/AEPT -nachgetriggert/AEPT -nachgewachsen/AEPT -nachgeweint -nachgewiesen/AEPT -nachgewiesenermaen -nachgewirkt -nachgezhlt -nachgezogen/AEPT -nachgibt/X -nachgiebig/ACEPTU -nachging/EPZ -nachhngen/DIX -nachhaltig/AEPT -nachhelfen/DI -nachher -nachholen/DIXY -nachinstallieren/DIOXY -nachjagen/IXY -nachjustieren/DIOXY -nachkme/NZ -nachklingen/DIX -nachkommen/DIX -nachlssig/AEPT -nachlsst -nachluft/X -nachladen/BDI -nachlassen/DI -nachlaufen/DI -nachlesen/BDI -nachlief/EPZ -nachliefern/DIXY -nachlie/EPZ -nachliest -nachlsen/DIXY -nachmachen/DIXY -nachmessen/BDI -nachmittglich/AEPT -nachmittags -nachprfen/BDIXY -nachrangig/AEPT -nachrechnen/DIXY -nachreden/DIXY -nachreformatorisch/AEPT -nachrennen/DIX -nachrichtendienstlich/AEPT -nachrichtentechnisch/AEPT -nachrcken/DIXY -nachrhmen/DIXY -nachrsten/BDIXY -nachsagen/DIXY -nachschicken/DIXY -nachschlagen/DI -nachschleppen/DIXY -nachsehen/BDI -nachsenden/DIXY -nachsichtig/ACEPTU -nachsinnen/DIX -nachsitzen/DIX -nachsprechen/DI -nachspren/DIXY -nachstehen/DIX -nachsteigen/DIX -nachstellen/DIXY -nachsuchen/DIXY -nachtdunkel/A -nachteilig/ACEPT -nachtrglich/AEPT -nachtrumen/DIXY -nachtragen/DI -nachtrauern/DIXY -nachtriggern/BDIXY -nachts -nachtschwarz/AEPT -nachvollziehen/BDIX -nachvollzog/PZ -nachwachsen/DI -nachweinen/DIXY -nachweisen/BDIX -nachweislich/AEPT -nachwirken/DIXY -nachzhlen/BDIXY -nachzeichnen/DIXY -nachziehen/DIX -nachzog/PZ -nachzuahmen/D -nachzuarbeiten/D -nachzubessern/D -nachzubilden/D -nachzudenken -nachzudrucken/D -nachzufolgen -nachzufragen -nachzufgen/D -nachzugeben -nachzugehen -nachzugieen/D -nachzuholen/D -nachzujagen -nachzukommen -nachzukonstruieren/D -nachzuladen/D -nachzulassen/D -nachzulaufen -nachzulesen/D -nachzumachen/D -nachzumessen/D -nachzuprfen/D -nachzuregeln/D -nachzureichen/D -nachzusagen/D -nachzuschieben/D -nachzuschieen/D -nachzusehen/D -nachzuspren -nachzusuchen -nachzutrimmen/D -nachzuvollziehen/D -nachzuweisen/D -nachzuziehen/D -nackend/AEPT -nackig/AEPT -nackt/AEPT -nadelgestreift/AEPT -nageln/DIVXY -nagelneu/AEPT -nagelt/EGPVX -nagen/DIXY -nagt/EGPX -nah/AEPTZ -nahen/BDIWXY -nahezu -nahm/PVZ -nahstlich/AEPT -nahrhaft/ACEPT -nahtlos/AEPT -naiv/ACEPT -namenlos/AEPT -namens -namentlich/AEPT -namhaft/ACEPT -nannte/GNZ -napoleonisch/AEPT -narkotisieren/DIOXY -narren/DIVXY -narrensicher/AEPT -narzisstisch/AEPT -naschen/DIVXY -nass/ACEPT -nasskalt/AEPT -national/AEPT -nationalbewusst/ACEPT -nationalchinesisch/AEPT -nationalisieren/DIOXY -nationalistisch/AEPT -nationalkommunistisch/AEPT -nationalsozialistisch/AEPT -natrlich/ACEPTU -natrlicherweise -natrlichzahlig/AEPT -natura -naturalisieren/DIOXY -naturalistisch/AEPT -naturblond/AEPT -naturfrisch/AEPT -naturgegeben/AEPT -naturgem/ACEPT -naturgetreu/AEPT -naturherstellend/AEPT -naturrein/AEPT -naturverbunden/AEPT -naturwissenschaftlich/AEPT -nautisch/AEPT -navigieren/DIWXY -nebelfrei/AEPT -nebelhaft/ACEPT -neben -nebenamtlich/AEPT -nebenan -nebenbei -nebenberuflich/AEPT -nebeneinander -nebenher -nebenschlich/AEPT -nebenstehend/AEPT -neblig/ACEPT -nebst -necken/DIXY -negativ/ACEPT -negieren/BDIOXY -nehmen/DGIV -neiden/DIXY -neidisch/ACEPT -neidlos/AEPT -neidvoll/AEPT -neigen/BDIVXY -neigt/EGPVX -neigte/GNVZ -neigten/GIVWX -nein -nennbar/AEPTU -nennen/BDIX -nennenswert/ACEPT -neofaschistisch/AEPT -neokonservativ/AEPT -neolithisch/AEPT -neonazistisch/AEPT -nepalesisch/AEPT -nerven/DIXY -nervenaufreibend/AEPT -nervenstark/AEPT -nervig/AEPT -nervlich/AEPT -nervs/ACEPT -nervttend/AEPT -nett/ACEPT -netto -netzwerkfhig/AEPT -neu/ACENPT -neuartig/ACEPT -neudeutsch/AEPT -neuer/ELPT -neuerdings -neuesten/S -neugeboren/AEPT -neugierig/ACEPT -neulich -neunfach/AEPT -neunhundert -neunjhrig/AEPT -neunkpfig/AEPT -neunmal -neunpolig/AEPT -neunprozentig/AEPT -neunt/AEPTW -neuntgig/AEPT -neuntausend -neunundachtzig -neunundachtzigste/ANRS -neununddreiig -neununddreiigste/ANRS -neunundfnfzig -neunundfnfzigste/ANRS -neunundneunzig -neunundsechzig -neunundsechzigste/ANRS -neunundsiebzig -neunundsiebzigste/ANRS -neunundvierzig -neunundvierzigste/ANRS -neunundzwanzig -neunundzwanzigste/ANRS -neunzehn -neunzehnjhrig/AEPT -neunzehnmal -neunzehnte/ANRS -neunzig/R -neunzigste/ANRS -neunzigtausendste/ANRS -neuphilologisch/AEPT -neuralgisch/AEPT -neurochirurgisch/AEPT -neurologisch/AEPT -neuronal/AEPT -neurotisch/AEPT -neuseelndisch/AEPT -neusprachlich/AEPT -neusten/S -neutestamentlich/AEPT -neutral/ACEPT -neutralisieren/DIOXY -neuwertig/AEPT -neuzeitlich/AEPT -newtonsche/ANRS -nicht/S -nichtakademisch/AEPT -nichtaktiv/AEPT -nichtamerikanisch/AEPT -nichtamtlich/AEPT -nichtarbeitend/AEPT -nichtatomar/AEPT -nichtaufhrend/AEPT -nichtberechtigt/AEPT -nichtbesttigt/AEPT -nichtchristlich/AEPT -nichtdeterministisch/AEPT -nichtdeutsch/AEPT -nichteingeweiht/AEPT -nichteinverstanden/AEPT -nichteisenhaltig/AEPT -nichterneuerbar/AEPT -nichteuklidisch/AEPT -nichteuropisch/AEPT -nichtflchtig/AEPT -nichtfunktionierend/AEPT -nichtgenehmigt/AEPT -nichtgewnscht/AEPT -nichtig/AEPT -nichtjapanisch/AEPT -nichtklassisch/AEPT -nichtkommunistisch/AEPT -nichtlinear/AEPT -nichtmetallisch/AEPT -nichtffentlich/AEPT -nichtoptimierend/AEPT -nichtproduktiv/AEPT -nichtproportional/AEPT -nichtrussisch/AEPT -nichtsdestotrotz -nichtsdestoweniger -nichtsequentiell/AEPT -nichtsequenziell/AEPT -nichtsnutzig/AEPT -nichttechnisch/AEPT -nichtverhandlungsfhig/AEPT -nichtverwandt/AEPT -nichtwei/AEPT -nichtzulssig/AEPT -nichtzutreffend/AEPT -nicken/DIXY -nieder/AEPT -niederbrennen/DI -niederdeutsch/AEPT -niederfallen/DI -niederfrequent/ACEPT -niedergebracht/AEPT -niedergebrannt/AEPT -niedergedrckt/ACEPT -niedergefallen/AEPT -niedergegangen/AEPT -niedergehalten/AEPT -niedergehen/DIX -niedergekmpft/AEPT -niedergeknppelt/AEPT -niedergelassen/AEPT -niedergelegt/AEPT -niedergemacht/AEPT -niedergerissen/AEPT -niedergeschlagen/ACEPT -niedergeschossen/AEPT -niedergeschrieben/AEPT -niedergesetzt/AEPT -niedergestochen/AEPT -niedergewalzt/AEPT -niederging/EPZ -niederkmpfen/DIXY -niederknien/DIXY -niederlndisch/AEPT -niederlassen/DI -niederlegen/IXY -niederlie/EPZ -niedermhen/DIXY -niedermachen/DIXY -niederohmig/AEPT -niederreien/DIX -niederrheinisch/AEPT -niederschsisch/AEPT -niedersausen/DIXY -niederschieen/DIX -niederschlgt/X -niederschlagen/DI -niederschlagsfrei/AEPT -niederschlug/PZ -niederschmettern/DIXY -niederschreiben/DIX -niederschrieb/EPZ -niederste/ANRS -niedertrchtig/ACEPT -niederzuknien -niederzulassen/D -niederzulegen/D -niederzuschlagen/D -niederzusetzen -niedlich/ACEPT -niedrig/ACEPT -niemals -niemand/P -niemandem -nieseln/DIXY -niesen/DIXY -niest/EGPW -niet/EPWX -nieten/DIWXY -nihilistisch/AEPT -nikotinfrei/AEPT -nimmer -nimmermde/ANRS -nimmt/VWX -nippen/DIXY -nippt/EGPX -nirgends -nirgendwo -nirgendwohin -nisten/DIXY -nivellieren/DIOXY -nrdlich/ACEPT -nrgeln/DIXY -ntig/ACEPTZ -ntigen/DIWXY -ntigenfalls -nobel/A -noch -nochmal/S -nochmalig/AEPT -noethersch/AEPT -nominal/AEPT -nominell/AEPT -nominieren/DIOXY -nonchalant/ACEPT -nonkonformistisch/AEPT -nonstop -nonverbal/AEPT -nordafrikanisch/AEPT -nordamerikanisch/AEPT -nordatlantisch/AEPT -norddeutsch/AEPT -nordfranzsisch/AEPT -nordisch/AEPT -nordostwrts -nordwrts -nordwestlich/AEPT -normal/ACEPT -normalerweise -normalisieren/DIOXY -normannisch/AEPT -normativ/AEPT -norme -normgerecht/AEPT -normieren/BDIOXY -norwegisch/AEPT -nostalgisch/AEPT -notariell/AEPT -notdrftig/ACEPT -notfalls -notgedrungen/AEPT -notgelandet/AEPT -notgeschlachtet/AEPT -notieren/DIOXY -notlanden/DIXY -notorisch/AEPT -notwendig/ACEPT -notwendigerweise -nsec -nchtern/ACEPT -ntzen/DIXY -ntzlich/ACEPT -nuancieren/DIOXY -nuklear/AEPT -nullte/ANRS -numerisch/AEPT -nummerieren/DIOXY -nummerisch/AEPT -nummern/DIXY -nun -nunmehr -nur -nutzbar/ACEPT -nutzbringend/AEPT -nutzen/BDIXY -nutzlos/ACEPT -d/ACEPT -ffentlich/ACEPT -ffnen/DIXY -fter/PS -ftesten -kologisch/AEPTU -konomisch/AEPTU -kumenisch/AEPT -len/DIXY -lig/ACEPT -lverbrauchend/AEPT -rtlich/AEPT -sterlich/AEPT -sterreichisch/AEPT -stlich/ACEPT -ob/P -obdachlos/AEPT -obenan -obenauf -obendrein -ober/AEPT -oberflchlich/ACEPT -oberhalb -oberirdisch/AEPT -oberst/AEPTW -obgleich -obig/AEPT -objektiv/ACEPT -objektivieren/BDIOXY -objektorientiert/AEPT -oblag/PZ -obliegen/DIX -obligat/AEPT -obligatorisch/AEPT -obschon -obskur/AEPT -obsolet/AEPT -obwalten/DIXY -obwohl -obzwar -ocker -ockerfarben/AEPT -ockerfarbig/AEPT -ockergelb/AEPT -oder -offen/ACEPT -offenbar/AELPTZ -offenbaren/DIOWXY -offenherzig/ACEPT -offenkundig/ACEPT -offenkundigst/AEPTW -offensichtlich/ACEPT -offensiv/AEPT -offerieren/DIOXY -offiziell/ACEPT -offizis/AEPT -offline -offsetgedruckt/AEPT -oft -oftmalig/AEPT -oftmals -oh -ohmsch/AEPT -ohne -ohnedies -ohnegleichen -ohnehin -ohnmchtig/AEPT -oho -ohrenbetubend/AEPT -ohrfeigen/DIXY -okay -okkult/AEPT -okkupieren/DIOXY -oktroyieren/DIOXY -oligarchisch/AEPT -oligopolistisch/AEPT -oliv -olivfarben/AEPT -olivgrn/AEPT -olympiadritte/ANRS -olympisch/AEPT -omega -omins/AEPT -onanieren/DIWXY -onkelhaft/AEPT -online -operational/AEPT -operationalisieren/BIOXY -operativ/AEPT -operettenhaft/AEPT -operieren/BDIOXY -opferbereit/AEPT -opfern/IWXY -opferreich/AEPT -opponieren/DIXY -opportun/AEPT -opportunistisch/AEPT -oppositionell/AEPT -optimal/AEPT -optimieren/BDIOXY -optimistisch/ACEPT -optional/AEPT -optisch/AEPT -optoelektronisch/AEPT -optoentkoppelt/AEPT -opulent/AEPT -oral/AEPT -orange -orangefarben/AEPT -orangeroter -ordentlich/ACEPTU -ordern/DIXY -ordinr/ACEPT -ordnen/DIVXY -ordnungsgem/AEPT -ordnungsliebend/ACEPT -ordnungsmig/AEPT -ordnungsrechtlich/AEPT -ordnungswidrig/ACEPT -organisatorisch/AEPT -organisch/ACEPTU -organisieren/BDIOXY -orgiastisch/AEPT -orientalisch/AEPT -orientieren/DIOXY -originr/AEPT -original/AEPT -originalgetreu/AEPT -originell/AEPT -orkanartig/AEPT -orten/DIXY -orthodox/AEPTU -orthogonal/AEPT -orthographisch/AEPT -orthopdisch/AEPT -ortsabhngig/AEPT -ortsansssig/AEPT -ortsbedingt/AEPT -ortseigen/AEPT -ortsfest/AEPT -ortsgebunden/AEPT -ortskundig/ACEPT -ortsblich/AEPT -ortsungebunden/AEPT -osmotisch/AEPT -ostamerikanisch/AEPT -ostasiatisch/AEPT -ostchinesisch/AEPT -ostdeutsch/AEPT -ostentativ/AEPT -osteuropisch/AEPT -ostfriesisch/AEPT -ostholsteinisch/AEPT -ostindisch/AEPT -ostpolitisch/AEPT -ostpreuisch/AEPT -ostwrts -oszillieren/DIOXY -oszillographieren/IXY -oszillographisch/AEPT -oval/AEPT -ovulationshemmend/AEPT -oxidieren/DIOXY -ozeanographisch/AEPT -pdagogisch/AEPTU -ppstlich/AEPT -paaren/IWXY -paarweise/ANRS -pachten/DIVXY -pachtet/EGPVWX -pachtete/GNVZ -pachteten/GIVWX -packen/DIVXY -packt/EGPVX -packte/GNVZ -packten/GIVWX -paddeln/IWXY -paddelt/EGPWX -paffen/DIXY -paillettenbestickt/AEPT -pakistanisch/AEPT -palstinensisch/AEPT -palavern/DIXY -paletti -panamaisch/AEPT -panarabisch/AEPT -panieren/DIOXY -panikartig/AEPT -panisch/ACEPT -pantomimisch/AEPT -papieren/AEPT -papierne/ANRS -pappig/ACEPT -papyruswei/AEPT -parabolisch/AEPT -paradieren/DIXY -paradiesisch/AEPT -paradox/ACEPT -paradoxerweise -parallel/AEPT -parallelisieren/BDIOXY -paralysieren/DIOXY -paralytisch/AEPT -parameterlos/AEPT -parametrieren/BDIOXY -parametrisch/AEPT -parametrisieren/IOXY -paramilitrisch/AEPT -paraphieren/IOXY -parasitr/AEPT -parasitisch/AEPT -parat -parfmieren/DIOXY -parieren/BDIOXY -parittisch/AEPT -parkartig/AEPT -parken/DIXY -parlamentarisch/AEPT -parodieren/DIOXY -parodistisch/AEPT -parteiintern/AEPT -parteiisch/ACEPTU -parteilich/AEPT -parteilos/AEPT -parteipolitisch/AEPT -parteischdigend/AEPT -partiell/ACEPT -partikulr/AEPT -partikular/AEPT -partitionieren/BDIOXY -partizipieren/DIXY -partnerschaftlich/AEPT -partout -parzellieren/IOXY -passabel/A -passe/EN -passen/DIVXY -passend/ACEPTU -passgerecht/AEPT -passierbar/AEPTU -passieren/BDIXY -passioniert/ACEPT -passiv/ACEPT -passivieren/DIOXY -passt/EGPV -passwortgeschtzt/AEPT -pass -pastellzart/AEPT -pastenfrmig/AEPT -pasteurisieren/DIOXY -pastoral/AEPT -patent/AEPT -patentfhig/ACEPT -patentieren/BDIOXY -patentierfhig/AEPT -patentrechtlich/AEPT -pathetisch/ACEPT -pathologisch/ACEPT -patriarchalisch/AEPT -patriotisch/ACEPTU -patrouillieren/DIXY -patschnass/AEPT -patzen/DIVXY -patzt/EGPVX -pauken/IXY -pausbckig/AEPT -pauschal/AEPT -pausen/DIXY -pausenlos/AEPT -pausieren/DIXY -pazifisch/AEPT -pazifistisch/AEPT -pechschwarz/AEPT -pedantisch/ACEPT -peilen/DIXY -peilt/EGPX -peinigen/DIXY -peinlich/ACEPT -peinlichst/AEPTW -peitschen/DIXY -pendeln/DIXY -penetrant/ACEPT -penibel/A -pensionieren/DIOXY -pensionsberechtigt/AEPT -pensionsreif/AEPT -per -perfekt/ACEPT -perfektionieren/DIOXY -perfektionistisch/AEPT -perfid/ACEPT -perforieren/DIOXY -periodisch/AEPT -peripher/AEPT -perlen/DIXY -permanent/ACEPT -permutieren/BDIOXY -perplex/AEPT -persiflieren/DIOXY -persisch/AEPT -persistent/AEPT -persnlich/ACEPTU -persnlichst/AEPTW -personal/AEPT -personalisieren/BDIOWXY -personalsparend/AEPT -personell/AEPT -personenbezogen/AEPT -personifizieren/DIOXY -perspektivisch/AEPT -pervers/AEPT -pervertieren/DIOXY -pessimistisch/ACEPT -petzen/DIVXY -peu -pfhlen/DIXY -pflzisch/AEPT -pfndbar/AEPTU -pfnden/BDIVXY -pfndet/EGPVWX -pfndete/GNVZ -pfndeten/GIVWX -pfndungssicher/AEPT -pfeffern/DIXY -pfeifen/DIX -pfeilschnell/AEPT -pferchen/IXY -pfiff/EPZ -pfiffig/AEPT -pflanzen/DIVXY -pflanzlich/AEPT -pflanzt/EGPVX -pflanzte/GNVZ -pflanzten/GIVWX -pflastern/DIXY -pflegebedrftig/AEPT -pflegeleicht/ACEPT -pflegen/DIVXY -pfleglich -pflichtbewusst/ACEPT -pflichteifrig/AEPT -pflichten/IVXY -pflichtgem/AEPT -pflichtgetreu/AEPT -pflichtig/AEPT -pflichtschuldig/AEPT -pflichtversichert/AEPT -pflichtwidrig/ACEPT -pflcken/BDIXY -pflgen/DIXY -pfriemeln -pfundschwer/AEPT -pfuschen/DIVXY -pfuscht/EGPVX -phnomenal/AEPT -phantasielos/ACEPT -phantasiereich/ACEPT -phantasieren/DIXY -phantasievoll/ACEPT -phantastisch/ACEPT -phariserhaft/AEPT -pharmakologisch/AEPT -pharmazeutisch/AEPT -phasengenau/AEPT -phasenverschoben/AEPT -phasenweise/ANRS -phi -phil -phil. -philatelistisch/AEPT -philharmonisch/AEPT -philippinisch/AEPT -philosophieren/DIXY -philosophisch/AEPT -phonetisch/AEPT -phosphoreszieren/DIXY -photochemisch/AEPT -photoelektrisch/AEPT -photogen/ACEPT -photographieren/DIOXY -photographisch/AEPT -photokopieren/BIOXY -phrasenhaft/AEPT -phylogenetisch/AEPT -physikalisch/AEPTU -physiologisch/AEPT -physisch/AEPT -pi -pianissimo -piano -picken/DIXY -picklig/AEPT -pickt/EGPX -piekfein/AEPT -piepen/DIXY -piettvoll/AEPT -piezoelektrisch/AEPT -piezoelektronisch/AEPT -pikant/ACEPT -pikieren/DIOWXY -pilgern/DIXY -pilotieren/DIXY -pilzfrmig/AEPT -pingelig/ACEPT -pinseln/DIXY -pinselt/EGPX -pirschen/IXY -pissen/DIXY -pistolenhnlich/AEPT -pitschnass/AEPT -pittoresk/AEPT -pldieren/DIXY -plrren/DIXY -pltschern/IXY -plagen/DIXY -plakativ/AEPT -plancksche/ANRS -planen/BDIVXY -planerisch/AEPT -planetarisch/AEPT -plangem/AEPT -planglubig/AEPT -planlos/ACEPT -planmig/ACEPT -planschen/IXY -plantschen/DIXY -plantscht/EGPX -planvoll/AEPT -planwidrig/AEPT -planwirtschaftlich/AEPT -plappern/DIVXY -plastikartig/AEPT -plastisch/AEPT -platonisch/AEPT -platsch -platt/AEPT -plattdeutsch/AEPT -plattfahren -plattfig/AEPT -plattgewalzt/AEPT -platzen/DIWXY -platzieren/BDIOXY -platzsparend/AEPT -plaudern/DIVXY -plaudert/EGPVX -plausibel/ACU -pleite -pleitebedroht/AEPT -pltzlich/AEPT -plombieren/DIOXY -plotten/DIXY -plndern/DIXY -plump/ACEPT -pluralistisch/AEPT -plus -pneumatisch/AEPT -pochen/DIXY -pockenverdchtig/AEPT -poetisch/AEPT -pointiert/AEPT -pokern/DIXY -pokert/EGPX -polar/AEPT -polarisieren/DIOXY -polemisch/AEPT -polemisieren/DIOXY -polieren/DIOXY -polig/AEPT -politisch/AEPTU -politisieren/DIOXY -polizeilich/AEPT -polizeiwidrig/AEPT -polnisch/AEPT -polstern/DIXY -poltern/DIXY -polygam/AEPT -polymer/AEPT -polymorph/AEPT -polyzentrisch/AEPT -pomadisieren/DIOXY -pomps/AEPT -poppig/AEPT -populr/ACEPTU -populrwissenschaftlich/AEPT -popularisieren/DIOXY -pornografisch/AEPT -pornographisch/AEPT -pors/ACEPT -portabel/A -portieren/BDIOXY -portionsweise -portofrei/AEPT -portopflichtig/AEPT -portrtieren/DIOXY -portugiesisch/AEPT -posaunen/DIWXY -posieren/DIXY -positionell/AEPT -positionieren/DIOXY -positiv/ACEPT -positivistisch/AEPT -possessiv/ACEPT -possierlich/AEPT -postalisch/AEPT -posteriori -posthum/AEPT -postieren/IOXY -postkartengro/AEPT -postlagernd/AEPT -postmodern/AEPT -postnatal/AEPT -postscriptfhig/AEPT -postulieren/DIOXY -postum/AEPT -postwendend/AEPT -potemkinsch/AEPT -potent/ACEPT -potentialfrei/AEPT -potentiell/AEPT -potentiometrisch/AEPT -potenzialfrei/AEPT -potenziell/AEPT -potenzieren/DIOXY -potenziert/ACEPTX -potenzierte/ACNRSZ -potthsslich/AEPT -poussieren/DIXY -prchtig/ACEPT -prdestiniert/AEPT -prdisponieren/DIOXY -prferentiell/AEPT -prferenziell/AEPT -prgen/DIXY -prgnant/ACEPT -prhistorisch/AEPT -prjudizieren/DIOXY -prmieren/DIOXY -prmiieren/DIOXY -prnatal/AEPT -prparieren/DIOXY -prpositional/AEPT -prsent/AEPT -prsentabel/A -prsentieren/BDIOXY -prsidial/AEPT -prsidieren/DIXY -prskriptiv/AEPT -prtentis/AEPT -prventiv/AEPT -przis/ACEPT -przisieren/DIOXY -prachtvoll/AEPT -pragmatisch/AEPT -prahlen/DIXY -prahlerisch/AEPT -prahlt/EGPX -praktikabel/ACU -praktisch/ACEPTU -praktizieren/BDIOXY -prall/ACEPTZ -prallen/IWXY -prangen/DIXY -prasseln/DIXY -prassen/DIVXY -prasst/EGPV -praxisbezogen/AEPT -praxisfern/AEPT -praxisfremd/AEPT -praxisgerecht/AEPT -praxisnah/AEPT -praxistauglich/AEPT -predigen/DIXY -predigt/EGPX -preemptiv/AEPT -preis/ELPZ -preisanpassend/AEPT -preisbereinigt/AEPT -preisbestimmend/AEPT -preisbewusst/AEPT -preisbildend/AEPT -preisbrechen/D -preisen/DIWX -preisfestsetzend/AEPT -preisgab/PZ -preisgeben/DI -preisgebunden/AEPT -preisgegeben/AEPT -preisgekrnt/AEPT -preisgibt/X -preisgleich/AEPT -preisgnstig/ACEPT -preiskritisch/AEPT -preismig/AEPT -preisneutral/AEPT -preispolitisch/AEPT -preisregulierend/AEPT -preissenkend/AEPT -preissteigernd/AEPT -preistreibend/AEPT -preiswert/ACEPT -preiswrdig/AEPT -prekr/AEPT -preschen/DIXY -pressen/DIXY -pressieren/DIOXY -prestigetrchtig/AEPT -preuisch/AEPT -prickeln/DIXY -pries/EPZ -priesterlich/AEPT -prima -primr/AEPT -primitiv/ACEPT -print -prinzipiell/AEPT -priori -privat/ACEPT -privatisieren/DIOVXY -privatwirtschaftlich/AEPT -privilegieren/DIOXY -privilegiert/ACEPTX -privilegierte/ACNRSZ -probehalber -proben/DIXY -probeweise -probieren/DIXY -problematisch/ACEPTU -problematisieren/DIOXY -problembezogen/AEPT -problemfrei/AEPT -problemlsend/AEPT -problemlos/AEPT -problemorientiert/AEPT -problemspezifisch/AEPT -produktiv/ACEPTU -produzieren/BDIOXY -profan/AEPT -professionell/AEPTU -profilieren/DIOXY -profiliert/ACEPTX -profilierte/ACNRSZ -profitabel/AC -profitieren/DIXY -profund/AEPT -prognostisch/AEPT -prognostizieren/BDIOXY -programmabhngig/AEPT -programmatisch/AEPT -programmgem/AEPT -programmgesteuert/AEPT -programmieren/BDIOXY -programmiertechnisch/AEPT -progressiv/ACEPT -prohibitiv/AEPT -projektieren/DIOXY -projektspezifisch/AEPT -projizieren/BDIOXY -proklamieren/DIOXY -proletarisch/AEPT -promenieren/DIXY -prominent/ACEPT -promovieren/DIOXY -prompt/AEPT -propagandistisch/AEPT -propagieren/DIOXY -prophetisch/AEPT -prophezeien/DIOXY -prophylaktisch/AEPT -proportional/AEPT -proportioniert/ACEPT -proppenvoll/AEPT -proprietr/AEPT -prosaisch/AEPT -prost/W -prostituieren/DIOXY -protegieren/DIOXY -protektionistisch/AEPT -protestantisch/AEPT -protestieren/DIXY -protokollarisch/AEPT -protokollieren/DIOXY -prototypisch/AEPT -protzen/DIXY -protzig/ACEPT -protzt/EGPX -provinziell/AEPT -provisorisch/ACEPT -provokativ/ACEPT -provokatorisch/AEPT -provozieren/DIOXY -prozedural/AEPT -prozentig/AEPT -prozentual/AEPT -prozessfhrend/AEPT -prozessieren/DIXY -prozessorientiert/AEPT -prozessorspezifisch/AEPT -prde/ACNRS -prfen/BDIXY -prfenswert/AEPT -prgeln/DIVXY -prgelt/EGPVX -prgelte/GNVZ -prgelten/GIVWX -prunkvoll/AEPT -psychiatrisch/AEPT -psychisch/AEPT -psychogen/AEPT -psychologisch/AEPT -psychomotorisch/AEPT -psychopathisch/AEPT -psychophysisch/AEPT -psychosomatisch/AEPT -psychotherapeutisch/AEPT -psychotisch/ACEPT -pnktlich/ACEPTU -pubertr/AEPT -pubertieren/DIXY -publik/AEPT -publikumswirksam/ACEPT -publizieren/DIOXY -publizistisch/AEPT -pudelnass/AEPT -pudelwohl -pudern/IXY -puffern/IXY -pulsieren/DIXY -pulverisieren/DIOXY -pulvern/DIVXY -pumpen/DIVWXY -pumpt/EGPVWX -pumpte/GNVZ -pumpten/GIVWX -puncto -punisch/AEPT -punktgenau/AEPT -punktgleich/AEPT -punktieren/IOXY -punktuell/AEPT -punktweise/ANRS -pur/AEPT -puritanisch/AEPT -purpurn/AEPT -purpurrot/AEPT -purzeln/DIXY -puschen/DIXY -pushen/DIXY -pusten/DIVXY -puterrot/AEPT -putschen/IXY -putscht/EGPX -putzen/DIVXY -putzig/AEPT -putzt/EGPVX -putzte/GNVZ -putzten/GIVWX -pyramidenfrmig/AEPT -qm -qmm -qulen/DIXY -qulend/ACEPT -quadratisch/AEPT -qualifizierbar/AEPTU -qualifizieren/BDIOXY -qualifiziert/ACEPTX -qualittsbewusst/AEPT -qualitativ/AEPT -qualmen/DIVXY -qualmig/AEPT -qualvoll/ACEPT -quantenmechanisch/AEPT -quantifizierbar/AEPTU -quantifizieren/BDIOXY -quantitativ/AEPT -quantorenfrei/AEPT -quartalsweise/ANRS -quarzgenau/AEPT -quarzstabil/AEPT -quasi -quasianalog/AEPT -quasiperiodisch/AEPT -quastenverziert/AEPT -quatschig/AEPT -quellen/DIW -quer -querschnittgelhmt/AEPT -querschnittsgelhmt/AEPT -querzustellen/D -quetschen/DIXY -quieken/DIXY -quietschen/DIXY -quietscht/EGPX -quillt/WX -quirlig/AEPT -quitt -quittieren/DIOXY -quollen/GX -quotieren/DIOXY -rchen/DIXY -rkeln/DIXY -rndern/DIXY -rt/GV -rtselhaft/AEPT -rtseln/DIXY -rtselt/EGPX -rtst/GVWX -ruchern/DIVXY -ruchert/EGPVX -rucherte/GNVZ -rucherten/GIVWX -rudig/AEPT -rumen/DIXY -rumlich/AEPT -ruspern/DIXY -ruspert/EGPX -rabenschwarz/AEPT -rabiat/ACEPT -rachelstern/AEPT -racheschnaubend/AEPT -rachgierig/AEPT -rachschtig/AEPT -radargesteuert/AEPT -radebrechen/DI -radeln/DIXY -radelt/EGPX -radfrmig/AEPT -radial/AEPT -radieren/DIOXY -radikal/ACEPT -radikalisieren/DIOXY -radioaktiv/ACEPT -radiologisch/AEPT -raffen/DIWXY -raffgierig/ACEPT -raffinieren/DIOXY -ragen/DIXY -ragt/EGPX -rammeln/DIVXY -rammelt/EGPVX -rammen/DIXY -ramponieren/DIOXY -ran -randalieren/DIXY -randnah/AEPT -randvoll/AEPT -rang/PZ -ranghchte/ANRS -ranghher/AEPT -rangieren/DIXY -ranken/DIXY -rannte/NVZ -rapid/AEPT -rapple -rar/ACEPT -rasa -rasant/ACEPT -rasch/ACEPT -rasche/ACNRS -rascheln/DIXY -raschelt/EGPX -rasen/DIXY -rasieren/DIOXY -rasierklingenscharf/AEPT -rasseln/DIXY -rasselt/EGPX -rassig/AEPT -rassisch/AEPT -rassistisch/AEPT -rasten/DIWXY -rastet/EGPWX -rastlos/AEPT -raten/DGIV -ratenweise -ratifizieren/DIOXY -ratio -rational/AEPT -rationalisieren/DIOXY -rationell/ACEPTU -rationieren/DIOXY -ratlos/AEPT -ratsam/AEPTU -rattern/DIXY -ratzekahl -rau/ACEPSTZ -raubeinig/AEPT -rauben/DIXY -rauchen/DIVXY -rauchfrei/AEPT -rauchig/AEPT -raucht/EGPVX -rauchte/GNVZ -rauchten/GIVWX -rauen/DIWXY -raufen/DIXY -rauflustig/AEPT -raumkrank/AEPT -raumweit/AEPT -raunen/DIXY -raupenartig/AEPT -raupengetrieben/AEPT -rauschen/DIXY -rauschgiftschtig/AEPT -rausgefahren/AEPT -rausgesetzt/AEPT -rausgesucht/AEPT -reagieren/DIXY -reaktionr/ACEPT -reaktiv/AEPT -reaktivieren/DIOWXY -real/AEPT -realisieren/BDIOXY -realistisch/ACEPTU -realistischerweise -realiter -rebellieren/DIXY -rebellisch/AEPT -rechen/DIOXY -rechenintensiv/AEPT -recherchieren/DIOXY -rechnen/DIVXY -rechnergesteuert/AEPT -rechnergesttzt/AEPT -rechnerisch/AEPT -rechneruntersttzt/AEPT -recht/AEGLPSTX -rechteckig/AEPT -rechten/GISWX -rechtfertigen/BDIXY -rechthaberisch/AEPT -rechtlos/AEPT -rechtmig/AEPTU -rechtsbndig/AEPT -rechtschaffen/AEPT -rechtsextrem/ACEPT -rechtsextremistisch/AEPT -rechtsgngig/AEPT -rechtsgerichtet/AEPT -rechtsgltig/AEPT -rechtshndig/AEPT -rechtsherum -rechtskrftig/AEPT -rechtskundig/AEPT -rechtsradikal/AEPT -rechtsseitig/AEPT -rechtsstaatlich/AEPT -rechtsum -rechtsunfhig/AEPT -rechtsverbindlich/AEPT -rechtswidrig/ACEPT -rechtswirksam/AEPT -rechtwinklig/AEPT -rechtzeitig/AEPT -recken/DIVXY -reckt/EGPVX -recyceln/BDIOWXY -redaktionell/AEPT -redefinieren/BDIOXY -redegewandt/ACEPT -reden/DIXY -redet/EGPWX -redigieren/IOXY -redlich/ACEPTU -redselig/ACEPT -redundant/AEPT -reduzieren/DIOXY -reell/ACEPTU -referentiell/AEPT -referenziell/AEPT -referenzieren/BDIOXY -referieren/DIOXY -refinanzieren/DIOXY -reflektieren/DIOXY -reflektorisch/AEPT -reflexartig/AEPT -reflexionsfrei/AEPT -reflexiv/AEPT -reformatorisch/AEPT -reformfreudig/AEPT -reformieren/DIOXY -reformorientiert/AEPT -reformpdagogisch/AEPT -reg/ACEPTZ -regelbasiert/AEPT -regelhaft/AEPT -regelmig/ACEPTU -regeln/BDIXY -regelrecht/AEPT -regelwidrig/AEPT -regen/DIWXY -regendicht/AEPT -regenerativ/AEPT -regenerieren/DIOXY -regennass/AEPT -regenreich/ACEPT -regieren/BDIOXY -regierungsfreundlich/AEPT -regional/AEPT -registrieren/DIOXY -reglementieren/DIOXY -reglos/AEPT -regnen/DIVXY -regnerisch/AEPT -regnet/EGPVWX -regressiv/AEPT -regresspflichtig/AEPT -regsam/ACEPT -regulr/AEPT -regulativ/AEPT -regulieren/BDIOXY -regungslos/AEPT -rehabilitieren/DIOXY -reiben/DIX -reibungsfrei/AEPT -reibungslos/AEPT -reich/ACELPT -reichen/DGIWXY -reichhaltig/ACEPT -reichlich/ACEPT -reichsunmittelbar/AEPT -reif/ACELPTU -reifen/DIWXY -reiflich/ACEPT -reihen/DIXY -reihenweise -reimen/DIXY -reimplementieren/BDIOXY -rein/ACEPTU -reingefallen/AEPT -reingehen/DIX -reingeschaut -reinigen/DIXY -reinitialisieren/BDIOXY -reinkommen/DIX -reinlich/ACEPTU -reinrassig/AEPT -reinschnuppern/DIXY -reinschreiben/DIX -reinstallieren/DIOXY -reinvestieren/DIOXY -reinwaschen/DI -reien/DIVWX -reierisch/AEPT -reisefertig/AEPT -reiselustig/ACEPT -reisen/DIVXY -reist/EGPV -reiste/GNVZ -reisten/GIVWX -reiten/DIWX -reizbar/ACEPT -reizen/BDIWXY -reizlos/ACEPT -reizvoll/ACEPT -rekapitulieren/DIXY -reklamieren/DIOXY -rekognoszieren/DIOXY -rekompilieren/BDIOXY -rekonstruieren/BDIOXY -rekordbrechend/AEPT -rekrutieren/DIOXY -rekursiv/AEPT -relational/AEPT -relativ/ACEPT -relativieren/DIOXY -relaxed -relaxen/DIW -relegieren/DIOXY -relevant/AEPT -religis/AEPT -remis -rempeln/IXY -rempelt/EGPX -renitent/AEPT -rennen/DIVX -renommiert/AEPT -renovieren/DIOXY -rentabel/ACU -rentieren/DIXY -rentierlich/AEPT -reorganisieren/DIOXY -reparabel/A -reparierbar/AEPTU -reparieren/BDIOXY -repetieren/DIOXY -replizieren/DIOWXY -reprsentativ/AEPT -reprsentieren/DIOXY -repressiv/ACEPT -reproduzieren/BDIOXY -republikanisch/AEPT -reservepflichtig/AEPT -reservieren/DIOXY -resident/AEPT -residieren/DIXY -residual/AEPT -resignieren/DIOXY -resistent/AEPT -resolut/AEPT -resp -resp. -respektabel/AC -respektieren/DIOXY -respektive -respektlos/ACEPT -respektvoll/ACEPT -respektwidrig/AEPT -ressourcensparend/AEPT -restaurieren/DIOXY -restlich/AEPT -restlos/AEPT -restriktiv/AEPT -reststndig/AEPT -resmieren/DIOXY -resultieren/DIXY -retournieren/BDIOXY -retten/DIXY -returnieren/DIOXY -retuschieren/DIOXY -reuelos/ACEPT -reuevoll/ACEPT -reumtig/AEPT -revanchieren/DIXY -revanchistisch/AEPT -reversibel/A -reversieren/DIOXY -revidieren/DIOXY -revisionistisch/AEPT -revoltieren/DIXY -revolutionr/AEPT -revolutionieren/DIOWXY -rezensieren/DIOXY -rezidiv/AEPT -reziprok/AEPT -rezitieren/DIOXY -rheinisch/AEPT -rhetorisch/AEPT -rheumatisch/AEPT -rhythmisch/AEPT -richten/DIVXY -richterlich/AEPT -richtig/ACEPTU -richtiggehend -richtungweisend/AEPT -rieb/EPZ -riechen/DIX -rief/EPZ -riemannsch/AEPT -rieseln/DIXY -riesengro/AEPT -riesenhaft/AEPT -riesig/ACEPT -riet/EGPVZ -riete/GNVZ -rieten/GIVWX -rietet/GVWX -rigid/AEPT -rigoros/AEPT -ringen/DGIX -ringfrmig/AEPT -rings -ringsum -ringsumher -rinnen/DGIVX -rinnend/AEGPTV -rinnende/AGNRSV -risikofrei/AEPT -risikolos/AEPT -risikoscheu/AEPT -riskant/ACEPT -riskanterweise -riskieren/DIOXY -riss/PVZ -rissen/GVWX -rissfest/ACEPT -rissig/ACEPT -ritt/EPZ -ritterlich/AEPTU -rittlings -ritualisiert/AEPT -rituell/AEPT -ritzen/DIXY -rivalisieren/DIXY -rcheln/DIXY -rchen/IX -rhren/DIXY -rhrenfrmig/AEPT -rmisch/AEPT -rntgen/DIXY -rsten/DIXY -rter -rtlich/AEPT -robben/IXY -roboterhaft/AEPT -robust/ACEPT -roch/PZ -rockig/AEPT -rodeln/DIXY -roden/DIXY -roh/AEPT -rollen/DIXY -rolling -romanisch/AEPT -romantisch/ACEPTU -rosa -rosarot/AEPT -rosig/ACEPT -rostbestndig/AEPT -rosten/DIVXY -rostfrei/AEPT -rostig/ACEPT -rot/AEPT -rotbraun/AEPT -rothaarig/AEPT -rotieren/DIOXY -rotten/DIVXY -rotzen/DIXY -routinemig/AEPT -routiniert/AEPT -rberspielen/DIXY -rckblickend/AEPT -rcken/DIVXY -rckgngig/AEPT -rckgeliefert/AEPT -rckgesandt/AEPT -rckgesetzt/AEPT -rckhaltlos/AEPT -rckkopplungsfhig/AEPT -rcklufig/ACEPT -rckschrittlich/AEPT -rcksetzen/DIXY -rcksichtslos/AEPT -rcksichtsvoll/AEPT -rckstndig/AEPT -rckt/EGPVX -rckte/GNVZ -rckten/GIVWX -rckwrtig/AEPT -rckwrts -rckwirkend/AEPT -rckzahlbar/AEPT -rckzusetzen -rgen/IXY -rhmen/DIXY -rhmenswert/AEPT -rhmlich/AEPTU -rhren/DIXY -rlpsen/DIXY -rsten/DIXY -rstig/ACEPT -rttelfest/AEPT -rtteln/DIXY -rubinrot/AEPT -ruchbar/AEPT -ruckartig/AEPT -ruckweise/ANRS -rudern/DIXY -rudert/EGPX -rudimentr/AEPT -rufen/DGIWX -ruhelos/ACEPT -ruhen/DGIXY -ruhig/ACEPTU -ruhmbedeckt/AEPT -ruhmreich/AEPT -ruinieren/DIOXY -ruins/AEPT -rumnisch/AEPT -rumlten/DIXY -rummachen/DIXY -rumspielen/DIXY -rund/AELPT -runden/DIWXY -rundherum -rundlich/ACEPT -rundum -runter -runtergeschraubt/AEPT -runtergezhlt/AEPT -runterrutschen/DIXY -runzeln/DIXY -runzlig/AEPT -rupfen/DIXY -rugeschwrzt/AEPT -ruig/AEPT -russisch/AEPT -rustikal/AEPT -rutschen/DIVWXY -rutschig/AEPT -rutscht/EGPVWX -rutschte/GNVZ -rutschten/GIVWX -schlich/AEPT -schsisch/AEPT -sen/DIXY -sgen/DIXY -sgezahnfrmig/AEPT -she/NZ -skular/AEPT -skularisieren/DIOXY -smtlich/AEPT -se/NZ -sttigen/DIXY -suberlich/ACEPT -subern/DIXY -suerlich/ACEPT -suern/DIXY -suft/VX -sugen/DIXY -sumen/DIVXY -sumig/ACEPT -surebestndig/ACEPT -surehaltig/ACEPT -surelslich/AEPT -suseln/DIXY -sabbern/DIXY -sabotieren/DIOXY -sachbedingt/AEPT -sachbezogen/AEPT -sachdienlich/AEPT -sachgem/AEPTU -sachgerecht/AEPT -sachkundig/AEPT -sachlich/AEPTU -sacht/AEPT -sacken/IXY -sadistisch/AEPT -saftig/AEPT -saftlos/AEPT -sagen/DIVWXY -sagenhaft/ACEPT -sagenumwoben/AEPT -sahen/VWX -sahnen/IWXY -sahnig/AEPT -saisonal/AEPT -saisonbedingt/AEPT -saisonbereinigt/AEPT -sakral/AEPT -salben/DIXY -salbungsvoll/ACEPT -saldieren/DIOXY -salonfhig/AEPT -salopp/ACEPT -salutieren/DIXY -salzen/DGIVXY -salzig/ACEPT -salzlos/ACEPT -sammeln/DIVXY -sammelt/EGPVX -sammelte/GNVZ -sammelten/GIVWX -samstagnachts -samstags -samtartig/AEPT -samten/AEGPTW -sandgekapselt/AEPT -sandig/AEPT -sandte/GNVZ -sandten/GIVX -sanft/ACEPTU -sanftmtig/AEPT -sang/PZ -sanguinisch/AEPT -sanieren/DIOXY -sanitr/AEPT -sank/PVZ -sanktionieren/DIOXY -sann/PZ -sapperlot -sarkastisch/AEPT -sa/PZ -satanisch/ACEPT -satinieren/DIOXY -satirisch/AEPT -satt/ACEPT -sattelfest/ACEPT -satteln/DIXY -sattsam -saturieren/DIOXY -satzungsgem/AEPT -satzungsmig/ACEPT -sauber/ACEPTU -saubld/AEPT -sauen/DIVXY -sauer/AC -sauerer -sauerstoffhaltig/AEPT -sauerstoffreich/AEPT -saufen/DIV -saugen/DIXY -saugfhig/ACEPT -saumig/ACEPT -sausen/DIXY -scannen/DIXY -schbig/ACEPT -schdigen/DIXY -schdlich/AEPTU -schkern/DIXY -schlen/DIXY -schmen/DIXY -schnden/DIXY -schndlich/ACEPT -schrfen/DIVXY -schrfer/AEPTU -schrfste/ANRSU -schrft/EGPVX -schrfte/GNVZ -schrften/GIVWX -schtzen/BDIXY -schtzenswert/ACEPT -schtzt/EGPVX -schtzte/GNVZ -schtzten/GIVWX -schtzungsweise -schumen/DIXY -schaben/DIXY -schablonenhaft/ACEPT -schablonenmig/ACEPT -schablonieren/DIOXY -schachbrettartig/AEPT -schachmatt/AEPT -schaden/DIXY -schadenfroh/ACEPT -schadensersatzpflichtig/AEPT -schadhaft/ACEPT -schadlos/ACEPT -schaffen/BDGIVWXY -schafft/EGPVWX -schaffte/GNVZ -schafften/GIVWX -schal/ACEPT -schalkhaft/ACEPT -schallabstrahlend/AEPT -schalldmmend/AEPT -schalldmpfend/ACEPT -schalldicht/AEPT -schallen/DIXY -schallhart/AEPT -schalloptisch/AEPT -schallschluckend/ACEPT -schalltechnisch/AEPT -schallverstrkend/AEPT -schallweich/AEPT -schalten/BDIWXY -schamhaft/ACEPT -schamlos/ACEPT -schamrot/AEPT -schandbar/AEPT -scharen/DIXY -scharf/AEPTU -scharfgemacht/AEPT -scharfkantig/AEPT -scharfmachen/DIXY -scharfrandig/AEPT -scharfsichtig/ACEPT -scharfsinnig/ACEPT -scharlachrot/AEPT -scharmant/ACEPT -scharren/DIVXY -scharrt/EGPVX -scharrte/GNVZ -scharrten/GIVWX -schassen/DIXY -schattenhaft/ACEPT -schattieren/DIOXY -schattig/ACEPT -schauderhaft/ACEPT -schaudern/DIXY -schauen/DIWXY -schauerartig/AEPT -schauerlich/ACEPT -schauern/DIXY -schaufeln/DIXY -schaukeln/DIXY -schaukelt/EGPVX -schaukelte/GNVZ -schaukelten/GIVWX -schaulustig/ACEPT -schaumig/ACEPT -schaurig/ACEPT -scheckig/AEPT -scheel/AEPT -scheffeln/DIXY -scheiden/DIVX -scheinbar/ACEPTU -scheinen/BDIX -scheinheilig/ACEPT -scheintot/AEPT -scheien/DIWX -scheiteln/DIXY -scheitern/DIXY -schellen/DIXY -schelmisch/ACEPT -schelten/DI -schematisch/AEPT -schematisieren/DIOXY -schemenhaft/AEPT -schenken/DIVXY -schenkt/EGPVX -schenkte/GNVZ -schenkten/GIVWX -scheppern/DIXY -scheren/DIWXY -scherzen/DIVXY -scherzhaft/AEPT -scherzt/EGPVX -scherzte/GNVZ -scherzten/GIVWX -scheu/ACEPRTZ -scheuchen/DIVXY -scheucht/EGPVX -scheuchte/GNVZ -scheuchten/GIVWX -scheuen/DIWXY -scheuern/DIWXY -scheuerte/GNVZ -scheuerten/GIVWX -scheulich/ACEPT -schichten/DIXY -schick/AELPT -schicken/DIWXY -schicksalhaft/AEPT -schieben/DIVX -schied/PVZ -schieden/GVWX -schief/ACEPT -schieferig/AEPT -schiefgelacht/AEPT -schieflachen/DIXY -schiefwinklig/AEPT -schielen/DIXY -schienen/DGIWXY -schier/AEPT -schieen/DIVX -schiewtig/AEPT -schiffbrchig/AEPT -schiffen/BDIVXY -schifft/EGPVX -schiffte/GNVZ -schifften/GIVWX -schikanieren/DIOXY -schildern/DIXY -schilfig/AEPT -schillern/DIXY -schiltst/WX -schimmeln/DIVXY -schimmelreitend/AEPT -schimmelt/EGPVX -schimmelte/GNVZ -schimmelten/GIVWX -schimmern/DIXY -schimmlig/AEPT -schimpfen/DIXY -schimpflich/AEPT -schinden/DIXY -schirmen/DIXY -schiss/PVZ -schissen/GVWX -schizophren/AEPT -schlfrig/ACEPT -schlft/VX -schlgt/VX -schlngeln/DIXY -schlabberig/AEPT -schlabbern/DIWXY -schlachten/DIXY -schlacken/DIXY -schlackern/DIXY -schlackig/ACEPT -schlafen/DGIV -schlaff/ACEPT -schlaflos/AEPT -schlaftrunken/AEPT -schlafwandeln/DIXY -schlafwandlerisch/AEPT -schlagartig/ACEPT -schlagen/DGIVW -schlagfertig/AEPT -schlagfest/AEPT -schlagkrftig/ACEPT -schlagstark/AEPT -schlagwettergefhrdet/AEPT -schlagwettergeschtzt/AEPT -schlagwortartig/AEPT -schlaksig/ACEPT -schlammig/AEPT -schlampig/AEPT -schlang/PVZ -schlank/ACEPT -schlapp/ACEPT -schlappgemacht/AEPT -schlappmachen/DIXY -schlau/ACEPT -schlecht/ACEPT -schlechterdings -schlechthin -schlecken/DIXY -schleichen/DIX -schleierhaft/ACEPT -schleifen/DIVXY -schleift/EGPVX -schleifte/GNVZ -schleiften/GIVWX -schleimig/AEPT -schleimlsend/AEPT -schleien/DIWXY -schleite/GNVZ -schleiten/GIVWX -schlemmen/DIXY -schlendern/DIXY -schlendert/EGPX -schlenkern/DIXY -schlenkert/EGPX -schleppen/DIVXY -schleppt/EGPVX -schleppte/GNVZ -schleppten/GIVWX -schlesisch/AEPT -schleudern/IVXY -schleudert/EGPVX -schleuderte/GNVZ -schleuderten/GIVWX -schleunig/ACEPT -schleunigst/AEPTW -schleusen/IXY -schleust/EGP -schlich/EPZ -schlichen/GIOWXY -schlicht/ACEPTWX -schlichte/ACNRSZ -schlichten/DIWXY -schlichtweg -schlief/EPVZ -schlierenartig/AEPT -schlieen/BDIVX -schlielich -schliff/PZ -schlimm/ACEPT -schlimmstenfalls -schlingen/DIVX -schliss/EPZ -schlittern/DIXY -schlitzugig/AEPT -schlitzohrig/AEPT -schlohwei/AEPT -schloss/PVZ -schlossen/GVWX -schlotterig/AEPT -schlottern/DIXY -schlottert/EGPX -schlpfen/DIXY -schlpfrig/AEPT -schlrfen/DIXY -schlsselfertig/AEPT -schlssig/ACEPTU -schluchzen/DIXY -schlucken/DIVXY -schluckt/EGPVX -schluckte/GNVZ -schluckten/GIVWX -schluderig/AEPT -schlug/PVZ -schlummern/DIXY -schlummert/EGPX -schlurfen/DIXY -schlurft/EGPX -schlussendlich/AEPT -schlussfolgern/DIXY -schlussfolgert/EGPX -schmchtig/AEPT -schmhen/DIVXY -schmhlich/AEPT -schmht/EGPVX -schmhte/GNVZ -schmhten/GIVWX -schmlern/DIXY -schmachten/DIVXY -schmachvoll/ACEPT -schmackhaft/ACEPTU -schmal/AEPT -schmalspurig/AEPT -schmalzig/AEPT -schmarotzen/DIXY -schmarotzerisch/AEPT -schmatzen/DIXY -schmatzt/EGPX -schmausen/DIXY -schmecken/BDIXY -schmeckt/EGPX -schmeichelhaft/AEPT -schmeicheln/DIXY -schmeichlerisch/AEPT -schmeien/DIX -schmelzen/BDIVXY -schmerzen/DIVXY -schmerzerfllt/AEPT -schmerzhaft/AEPT -schmerzlich/ACEPT -schmerzlindernd/AEPT -schmerzlos/AEPT -schmerzstillend/AEPT -schmerzt/EGPVX -schmerzverzerrt/AEPT -schmerzvoll/ACEPT -schmettern/DIXY -schmieden/BDIXY -schmiegen/DIXY -schmiegsam/AEPT -schmiegt/EGPX -schmieren/DIVXY -schmierig/AEPT -schmiert/EGPVX -schmierte/GNVZ -schmierten/GIVWX -schmilzt/VW -schminken/DIXY -schmirgeln/DIXY -schmiss/EPZ -schmissig/AEPT -schmollen/DIXY -schmolz/PVZ -schmolzen/GVWX -schmoren/DIXY -schmcken/DIXY -schmuck/ACEPT -schmucklos/AEPT -schmuggeln/DIXY -schmunzeln/DIXY -schmunzelt/EGPX -schmusen/DIXY -schmutzen/DIVXY -schmutzig/ACEPT -schnuzen/DIXY -schnuzt/EGPX -schnabelfrmig/AEPT -schnallen/DIXY -schnalzen/DIXY -schnappen/DIXY -schnappt/EGPX -schnarchen/DIXY -schnarcht/EGPX -schnarren/IXY -schnattern/DIXY -schnattert/EGPX -schnauben/DIXY -schnaufen/DIVXY -schnauft/EGPVX -schneckenfrmig/AEPT -schneebedeckt/AEPT -schneeblind/AEPT -schneeig/AEPT -schneewei/AEPT -schneiden/DIVX -schneidern/DIXY -schneidig/ACEPT -schneien/DIXY -schneit/EGPX -schnell/ACEPTZ -schnellen/DIWXY -schnellentschlossen/AEPT -schnellfig/AEPT -schnelllebig/ACEPT -schnellstmglich/AEPT -schnellt/EGPWX -schnickschnacklos/AEPT -schniefen/DIXY -schniegeln/DIXY -schnippeln/DIXY -schnippen/DIXY -schnippisch/AEPT -schnitt/PVZ -schnitten/GVWX -schnittig/ACEPT -schnitzen/DIXY -schnd/AEPT -schnrkelhaft/AEPT -schnrkellos/AEPT -schnrkeln/DIXY -schnodderig/ACEPT -schnorren/DIXY -schnffeln/DIXY -schnffelt/EGPX -schnren/DIVXY -schnrt/EGPVX -schnrte/GNVZ -schnrten/GIVWX -schnuckelig/AEPT -schnupfen/DIVXY -schnupft/EGPVX -schnupfte/GNVZ -schnupften/GIVWX -schnuppern/DIXY -schnurgerade/ANRS -schnurren/DIXY -schnurrt/EGPX -schnurstracks -schn/ACEPTU -schnfrben/DIXY -schpfen/DIXY -schpferisch/AEPT -schob/PVZ -schoben/GVWX -schocken/BDIWXY -schockfarben/AEPT -schockieren/DIOXY -schonen/DIWXY -schonte/GNVZ -schonten/GIVWX -schonungslos/AEPT -schor/PZ -schorfig/AEPT -schoss/PVZ -schossen/GVWX -schottisch/AEPT -schrg/ACEPT -schrnken/DIVXY -schrnkt/EGPVX -schrnkte/GNVZ -schrnkten/GIVWX -schraffieren/DIOXY -schrammen/DIXY -schrammig/AEPT -schrankenlos/AEPT -schrauben/DIVXY -schraubenfrmig/AEPT -schraubt/EGPVX -schraubte/GNVZ -schraubten/GIVWX -schrecken/DIVXY -schreckerregend/ACEPT -schreckhaft/AEPT -schrecklich/ACEPT -schreckt/EGPVX -schreiben/DIVWX -schreibfaul/AEPT -schreibgeschtzt/AEPT -schreibmaschinengeschrieben/AEPT -schreibschtzen/BDIXY -schreibunkundig/AEPT -schreien/DIXY -schreiten/DIWX -schrieb/PVZ -schrien/GIVX -schriftlich/AEPT -schriftstellerisch/AEPT -schrill/ACEPTZ -schrillen/DIWXY -schritt/EPZ -schritthalten/I -schrittweise/ANRS -schrpfen/DIXY -schroff/ACEPT -schrottreif/AEPT -schrubben/DIXY -schrullenhaft/AEPT -schrullig/ACEPT -schrumpfen/DIXY -schrumplig/AEPT -schrundig/AEPT -schchtern/ACEPT -schlerhaft/AEPT -schren/DIXY -schrfen/DIXY -schtteln/DIXY -schtten/DIVXY -schttet/EGPVWX -schttete/GNVZ -schtteten/GIVWX -schtzen/DIXY -schubkarrenweise -schuf/PZ -schufen/WXY -schuften/DIWXY -schuftig/AEPT -schuldbeladen/AEPT -schuldbewusst/AEPT -schulden/DIWXY -schuldenfrei/AEPT -schuldet/EGPVWX -schuldete/GNVZ -schuldeten/GIVWX -schuldhaft/ACEPT -schuldig/ACEPTU -schuldlos/AEPT -schulen/DIXY -schulfrei/AEPT -schulisch/AEPT -schulmeisterlich/AEPT -schulpflichtig/AEPT -schulterfrei/AEPT -schummeln/DIXY -schummerig/AEPT -schuppen/DIXY -schuppig/AEPT -schurkisch/AEPT -schussbereit/AEPT -schussfertig/AEPT -schussfest/ACEPT -schusslig/ACEPT -schustern/DIXY -schutzbefohlen/AEPT -schutzlos/ACEPT -schwbisch/AEPT -schwchen/DIXY -schwcher/AEPT -schwchlich/AEPT -schwchst/AEPT -schwngern/DIXY -schwnzeln/DIXY -schwnzelt/EGPX -schwnzen/DIXY -schwrmen/DIXY -schwrmerisch/AEPT -schwrzen/DIXY -schwrzlich/AEPT -schwabbeln/DIXY -schwabbelt/EGPX -schwabblig/AEPT -schwach/AEPT -schwachkpfig/AEPT -schwachsichtig/AEPT -schwachsinnig/AEPT -schwadronieren/DIXY -schwafeln/DIXY -schwamm/PVZ -schwammig/AEPT -schwand/PVZ -schwang/PZ -schwanger/AEPT -schwanken/DIXY -schwankt/EGPX -schwappen/DIXY -schwappt/EGPX -schwarz/AEPT -schwarzrgern/DIXY -schwarzblau/AEPT -schwarzbraun/AEPT -schwarzwei/AEPT -schwatzen/DIXY -schwatzhaft/ACEPT -schwatzt/EGPX -schweben/DIXY -schwedisch/AEPT -schwefelfarbig/AEPT -schwefelgelb/AEPT -schwefeln/DIXY -schweflig/AEPT -schweifen/DIXY -schweige/GNV -schweigen/DIVWX -schweigsam/AEPT -schweinisch/AEPT -schweien/DIXY -schweigebadet/AEPT -schweiig/AEPT -schweit/EGPV -schweite/GNVZ -schweiten/GIVWX -schweitreibend/AEPT -schweitriefend/AEPT -schweizerisch/AEPT -schwelen/DIXY -schwelgen/DIXY -schwelgerisch/AEPT -schwelgt/EGPX -schwellen/DI -schwemmen/DIXY -schwemmt/EGPX -schwenken/BDIXY -schwer/ACEPTU -schwerbltig/AEPT -schwergewichtig/AEPT -schwerhrig/AEPT -schwerlich -schwermtig/AEPT -schwerpunktartig/AEPT -schwerpunktmig/AEPT -schwerwiegend/ACEPT -schwesterlich/AEPT -schwieg/PVZ -schwiegen/GVWX -schwielig/AEPT -schwierig/ACEPT -schwillt/X -schwimmen/DIVX -schwinde/GNVZ -schwindelerregend/AEPT -schwindelfrei/AEPT -schwindeln/DIXY -schwindelt/EGPX -schwinden/DGIVX -schwindlig/AEPT -schwindschtig/AEPT -schwingen/DIX -schwingungsempfindlich/AEPT -schwingungsfrei/AEPT -schwirren/DIXY -schwirrt/EGPX -schwitzen/DIVXY -schwitzt/EGPVX -schwren/DIVX -schwollen/GWX -schwor/PVZ -schworen/GVWX -schwl/ACEPT -schwlstig/AEPT -schwul/ACEPT -schwunghaft/AEPT -schwunglos/ACEPT -schwungvoll/ACEPT -schwuppdiwupp -scrollen/DIXY -sechs -sechseckig/AEPT -sechseinhalb -sechsfltig/AEPT -sechsfach/AEPT -sechshundert -sechsjhrig/AEPT -sechsmonatig/AEPT -sechsmonatlich/AEPT -sechsseitig/AEPT -sechsstckig/AEPT -sechsstndig/AEPT -sechst/AEPT -sechstgig/AEPT -sechstausenddreihundert -sechstel -sechsundachtzig -sechsundachtzigste/ANRS -sechsunddreiig -sechsunddreiigste/ANRS -sechsundfnfzig -sechsundfnfzigste/ANRS -sechsundneunzig -sechsundneunzigste/ANRS -sechsundsechzig -sechsundsechzigste/ANRS -sechsundsiebzig -sechsundsiebzigste/ANRS -sechsundvierzig -sechsundzwanzig -sechswchig/AEPT -sechzehn -sechzehntausend -sechzehnte/ANRS -sechzehntel -sechzig/R -sechzigjhrig/AEPT -sechzigste/ANRS -sedimentieren/DIOXY -seefahrend/AEPT -seefest/AEPT -seeklar/AEPT -seekrank/AEPT -seelenfroh/AEPT -seelenruhig/AEPT -seelenvergngt/AEPT -seelenvoll/AEPT -seelisch/AEPT -seemnnisch/AEPT -seemig/AEPT -seetchtig/ACEPT -segelfertig/AEPT -segelklar/AEPT -segeln/DIXY -segelt/EGPX -segensreich/AEPT -segensvoll/AEPT -segnen/DIXY -sehen/DGIV -sehenswert/AEPT -sehenswrdig/AEPT -sehnen/DIXY -sehnig/AEPT -sehnlich/AEPT -sehnlichst/W -sehnschtig/AEPT -sehnt/EGPX -sehr -seicht/AEPT -seiden/AEPTW -seidenartig/AEPT -seidenweich/AEPT -seidig/AEPT -seien/DWX -seifen/IWXY -seifig/AEPT -seilen/IWXY -seimig/AEPT -sein/AEPT -seinerseits -seinerzeit -seinesgleichen -seinetwegen -seinetwillen -seinige/ANRS -seit/LWX -seitdem -seiteneffektfrei/AEPT -seitenlang/AEPT -seitens -seitenweise -seither -seitherige/ANRS -seitig/AEPT -seitwrts -sek -sek. -sekundr/AEPT -sekundenlang/AEPT -sekundieren/DIOXY -selbe/ANRS -selbig/AEPT -selbst -selbstndig/ACEPTU -selbstbewusst/AEPT -selbstbezglich/AEPT -selbsterklrend/AEPT -selbsterkoren/AEPT -selbsterffnet/AEPT -selbstevident/AEPT -selbstgefllig/AEPT -selbstgengsam/AEPT -selbstgerecht/AEPT -selbsthaltend/AEPT -selbstherrlich/AEPT -selbstklebend/AEPT -selbstleuchtend/AEPT -selbstlos/AEPT -selbstmrderisch/AEPT -selbstredend -selbstregulierend/AEPT -selbstsicher/ACEPT -selbststndig/ACEPTU -selbstschtig/AEPT -selbstttig/AEPT -selbstvergessen/AEPT -selbstverstndlich/AEPT -selektieren/BDIOXY -selektiv/AEPT -selig/ACEPTU -selten/ACEPT -seltsam/ACEPT -seltsamerweise -semantikbasiert/AEPT -semantikerhaltend/AEPT -semantisch/AEPT -semiformal/AEPT -semilegal/AEPT -semiotisch/AEPT -sendekopfseitig/AEPT -senden/DIVXY -sengen/DIVXY -sengt/EGPVX -sengte/GNVZ -sengten/GIVWX -senil/ACEPT -senken/DIVXY -senkrecht/AEPT -senkt/EGPVX -senkte/GNVZ -senkten/GIVWX -sensationell/AEPT -sensationshaschend/AEPT -sensibel/AC -sensibilisieren/DIOWXY -sensitiv/AEPT -sensorseitig/AEPT -sentenzis/ACEPT -sentimental/ACEPT -separat/AEPT -separieren/BIOXY -septisch/AEPT -sequentiell/AEPT -sequenziell/AEPT -serbisch/AEPT -serbokroatisch/AEPT -serialisieren/DIOXY -seriell/AEPT -serienmig/AEPT -serienreif/AEPT -serienweise -seris/ACEPT -servicefreundlich/AEPT -servieren/DIOXY -servil/ACEPT -sesshaft/ACEPT -setting -setzen/BDIVXY -setzt/EGPVX -setzte/GNVZ -setzten/GIVWX -seufzen/DIXY -seufzt/EGPX -sexistisch/AEPT -sexual/AEPT -sexuell/AEPT -sezieren/DIOXY -sibirisch/AEPT -sich/R -sichelfrmig/AEPT -sicher/ACENPTZ -sichergehen/DIX -sichergestellt/AEPT -sicherheitsbewusst/AEPT -sicherheitsgerichtet/AEPT -sicherheitshalber -sicherheitskritisch/AEPT -sicherheitsrelevant/AEPT -sicherheitstechnisch/AEPT -sicherlich -sichern/DIWXY -sicherstellen/DIXY -sicherungsbereignet/AEPT -sicherzugehen -sicherzustellen/D -sichten/BDIXY -sichtlich/AEPT -sickern/DIXY -sie -sieben/DIOXY -siebeneinhalb -siebenfltig/AEPT -siebenfach/AEPT -siebenhundert -siebenjhrig/AEPT -siebenmal -siebenmalig/AEPT -siebent/AEPTW -siebentgig/AEPT -siebentel -siebenundachtzig -siebenundachtzigste/ANRS -siebenunddreiig -siebenunddreiigste/ANRS -siebenundfnfzig -siebenundfnfzigste/ANRS -siebenundneunzig -siebenundneunzigste/ANRS -siebenundsechzig -siebenundsechzigste/ANRS -siebenundsiebzig -siebenundsiebzigste/ANRS -siebenundvierzig -siebenundvierzigste/ANRS -siebenundzwanzig -siebt/AEGPTX -siebte/AGNRSZ -siebtel -siebten/GISWX -siebzehn -siebzehnjhrig/AEPT -siebzehnte/ANRS -siebzehntel -siebzig/R -siebzigste/ANRS -siech/AEPT -siechen/DIWXY -siecht/EGPWX -siedeln/DIXY -siedelt/EGPX -sieden/DIXY -siedet/EGPWX -siegeln/DIVXY -siegelt/EGPVX -siegelte/GNVZ -siegelten/GIVWX -siegen/DIVXY -siegesgewiss/AEPT -siegessicher/AEPT -siegestrunken/AEPT -sieghaft/AEPT -sieglos/AEPT -siegreich/ACEPT -siegt/EGPVX -sieh/E -sieht/WX -sigma -signalisieren/DIOXY -signalrot/AEPT -signieren/DIOXY -signifikant/AEPT -silberhell/AEPT -silbermetallic -silbern/AEPT -simpel/AC -simulieren/BDIOXY -simultan/AEPT -sind -singen/DIWX -singulr/AEPT -sinkbar/AEPTU -sinken/BDIVX -sinnbildlich/AEPT -sinnen/DIX -sinnenfreudig/AEPT -sinnerfllt/AEPT -sinnfllig/AEPT -sinngem/AEPT -sinngerecht/AEPT -sinngetreu/AEPT -sinnieren/DIXY -sinnig/ACEPTU -sinnigerweise -sinnlich/AEPT -sinnlos/ACEPT -sinnreich/AEPT -sinnverwandt/AEPT -sinnvoll/AEPT -sinnvollerweise -sinnwidrig/AEPT -sintern/DIXY -sintflutartig/AEPT -sistieren/DIOXY -sittenlos/ACEPT -sittenstreng/AEPT -sittig/AEPT -sittlich/AEPTU -sittsam/ACEPT -situationsabhngig/AEPT -situationsbedingt/AEPT -situationsgerecht/AEPT -situiert/AEPT -sitzen/DIX -sixtinisch/AEPT -sizilianisch/AEPT -skalieren/BDIOXY -skalpieren/DIOXY -skandals/AEPT -skandinavisch/AEPT -skeptisch/AEPT -skizzenhaft/AEPT -skizzieren/DIOXY -sklavisch/AEPT -skrupellos/ACEPT -skurril/ACEPT -slawisch/AEPT -slowakisch/AEPT -slowenisch/AEPT -smaragdgrn/AEPT -smart/AEPT -so -shnen/IVXY -sobald -sodann -sodass -soeben -sofern -soff/PVZ -soffen/GVWX -sofort -sofortbeziehbar/AEPT -sofortig/AEPT -soft/AEPT -softwarekompatibel/A -softwaremig/AEPT -softwaretechnisch/AEPT -softwaretechnologisch/AEPT -sog/PZ -sogar -sogleich -solang/E -solch/AEPT -solcherart -solcherlei -solchermaen -solcherweise -solidarisch/AEPT -solidarisieren/DIOXY -solide/ACNRSU -sollen/DIWXY -solvent/AEPT -somatisch/AEPT -somit -sommerlich/AEPT -sommersprossig/AEPT -sonder/LN -sonderbar/ACEPT -sondergleichen -sonderpdagogisch/AEPT -sondieren/DIOXY -sonnabends -sonnen/GIXY -sonnenerhitzt/AEPT -sonnenklar/AEPT -sonnenberglnzt/AEPT -sonnenverbrannt/AEPT -sonnig/ACEPT -sonntglich/AEPT -sonntags -sonnverbrannt/AEPT -sonor/AEPT -sonst -sonstig/AEPT -sooft -sophistisch/AEPT -sorgen/DIVXY -sorgenfrei/AEPT -sorgenlos/AEPT -sorgenvoll/AEPT -sorgfltig/ACEPT -sorglich/AEPT -sorglos/AEPT -sorgsam/ACEPT -sorgt/EGPVX -sortieren/DIOXY -soundso -soundsoviel -souvern/AEPTU -soviel -soweit -sowie -sowieso -sowjetisch/AEPT -sowjetrussisch/AEPT -sowohl -sozial/ACEPTU -sozialdemokratisch/AEPT -sozialisieren/DIOXY -sozialistisch/AEPT -sozialkritisch/AEPT -sozialliberal/AEPT -sozialkonomisch/AEPT -sozialpdagogisch/AEPT -sozialpolitisch/AEPT -sozialpsychologisch/AEPT -sozialwissenschaftlich/AEPT -soziodemografisch/AEPT -soziographisch/AEPT -soziologisch/AEPT -sozusagen -sphen/DIXY -sprlich/ACEPT -spt/ACEPT -spterhin -sptesten/S -sptminoisch/AEPT -sptmykenisch/AEPT -spachteln/DIXY -spalten/BDGIXY -spaltenlang/AEPT -spaltenweise/ANRS -spanabhebend/AEPT -spanisch/AEPT -spanlos/AEPT -spannen/DIVWXY -spannend/ACEPTU -spannkrftig/AEPT -spannungsgeladen/AEPT -spannungsversorgt/AEPT -sparen/DIXY -sparsam/ACEPT -spaen/DIVXY -spaeshalber -spahaft/AEPT -spaig/ACEPT -spat/EGPV -spastisch/AEPT -spazieren/DIXY -spe -speckig/AEPT -spedieren/DIOXY -speicherintensiv/AEPT -speichern/DIXY -speicherplatzeffizient/AEPT -speicherplatzintensiv/AEPT -speicherprogrammierbar/AEPT -speicherprogrammiert/AEPT -speien/DIX -speisen/DIVXY -speist/EGPV -speiste/GNVZ -speisten/GIVWX -spektakulr/ACEPTU -spektral/AEPT -spektroskopisch/AEPT -spekulativ/AEPT -spekulieren/DIVXY -spenden/DIXY -spendieren/DIOWXY -sperren/BDIVWXY -sperrig/AEPT -sperrt/EGPVWX -sperrte/GNVZ -sperrten/GIVWX -spesenfrei/AEPT -spezial/AEPT -spezialisieren/DIOWXY -speziell/ACEPT -spezifisch/ACEPT -spezifizieren/DIOWXY -sphrisch/AEPT -spiegelblank/AEPT -spiegelglatt/AEPT -spiegeln/DIXY -spielen/BDIVXY -spielerisch/AEPT -spielfrei/AEPT -spielfreudig/AEPT -spielt/EGPVX -spielte/GNVZ -spielten/GIVWX -spien/GIX -spiebrgerlich/AEPT -spieen/DIXY -spieig/AEPT -spindeldrr/AEPT -spinnen/DIVX -spionieren/DIXY -spiralfrmig/AEPT -spiritistisch/AEPT -spirituell/AEPT -spitz/AEPTZ -spitzbbisch/AEPT -spitzeln/DIXY -spitzen/DIWXY -spitzfindig/AEPT -spitzig/AEPT -spitzwinklig/AEPT -spleenig/AEPT -splitten/DIXY -splitterfrei/AEPT -splitterig/AEPT -splittern/DIXY -splitternackt/AEPT -sptteln/DIXY -spttisch/AEPT -spontan/ACEPT -sporadisch/AEPT -sporenbewehrt/AEPT -spornen/DIXY -spornstreichs -sportlich/AEPTU -spottbillig/AEPT -spotten/DIVXY -spottet/EGPVWX -spottete/GNVZ -spotteten/GIVWX -sprche/NZ -sprnge/NZ -sprach/LPVZ -sprachabhngig/AEPT -sprachkundig/AEPT -sprachlos/AEPT -sprachspezifisch/AEPT -sprachunabhngig/AEPT -sprachwissenschaftlich/AEPT -sprang/PZp -sprayen/DIXY -sprechen/DIV -spreizen/DIXY -sprengen/DIVXY -sprengt/EGPVX -sprengte/GNVZ -sprengten/GIVWX -sprenkeln/DIXY -spricht/VWX -sprichwrtlich/AEPT -sprieen/DIXY -springen/DIWX -sprinten/DIXY -spritzen/DIVXY -spritzig/ACEPT -spritzt/EGPVX -spritzte/GNVZ -spritzten/GIVWX -spritzwasserfest/AEPT -spritzwassergeschtzt/AEPT -sprd/ACEPT -spross/PZ -sprhen/DIVXY -sprht/EGPVX -sprhte/GNVZ -sprhten/GIVWX -spruchreif/AEPT -sprudeln/DIXY -sprunghaft/ACEPT -splen/DIXY -sprbar/ACEPT -spren/BDIVXY -sprt/EGPVX -sprte/GNVZ -sprten/GIVWX -spucken/DIXY -spuken/DIXY -spukhaft/AEPT -spulen/DIXY -spurlos/AEPT -spurten/DIXY -stche/NZ -stdtebaulich/AEPT -stdtisch/AEPT -sthlern/AEPT -stmmig/ACEPT -stndig/AEGPTV -stndige/AGNRSV -stnkern/DIXY -strkehaltig/AEPT -strken/DIVXY -strker/AEPT -strkst/AEPT -strkt/EGPVX -strkte/GNVZ -strkten/GIVWX -stuben/DIXY -staatenlos/AEPT -staatlich/AEPT -staatsbrgerlich/AEPT -staatseigen/AEPT -staatsfeindlich/AEPT -staatsklug/AEPT -staatsmnnisch/AEPT -staatspolitisch/AEPT -staatsrechtlich/AEPT -staatsverbrgt/AEPT -stabil/ACEPT -stabilisieren/DIOXY -stach/PZ -stacheln/DIXY -stachlig/ACEPT -stadtbekannt/AEPT -stadteigen/AEPT -staffelfrmig/ACEPT -staffeln/DIXY -staffieren/DIOXY -stagnieren/DIXY -stahl/PZ -stahlblau/AEPT -stahlhart/AEPT -stak/PZ -stalinistisch/AEPT -stammeln/DIXY -stammen/DIXY -stammesgeschichtlich/AEPT -stammverwandt/AEPT -stampfen/DIXY -stand/GPVZ -standardisieren/DIOXY -standardmig/AEPT -standen/GVWX -standesamtlich/AEPT -standesgem/AEPT -standfest/AEPT -standgehalten -standhltst/WX -standhaft/ACEPT -standhalten/DI -standhielt/EPZ -standrechtlich/AEPT -stank/PZ -stanzen/DIXY -stapeln/BDIXY -stapfen/DIXY -stapft/EGPX -starb/PVZ -stark/AEPT -starr/ACEPTZ -starren/DIWXY -starrkpfig/ACEPT -starrsinnig/ACEPT -starrt/EGPWX -startbereit/AEPT -starten/DIXY -startklar/AEPT -stationr/AEPT -stationieren/DIOXY -statisch/AEPT -statistisch/AEPT -statt/ELP -stattdessen -statten/GIWXY -stattfand/PZ -stattfinden/DI -stattgeben/DI -stattgefunden/AEPT -stattgegeben/AEPT -statthaft/AEPTU -stattlich/ACEPT -statuenhaft/AEPT -statuieren/DIOXY -statutenm/AEPT -staubdicht/AEPT -stauben/DIVXY -staubfrei/AEPT -staubhaltig/ACEPT -staubig/ACEPT -stauchen/DIVXY -staucht/EGPVX -stauchte/GNVZ -stauchten/GIVWX -stauen/DIVXY -staunen/DIXY -staunenswert/AEPT -staunt/EGPX -staut/EGPVX -staute/GNVZ -stauten/GIVWX -stechen/DI -steckbrieflich -stecken/BDIVXY -steckkompatibel/A -steckt/EGPVX -steckte/GNVZ -steckten/GIVWX -stehen/DGIVWX -stehend/AEGPTV -stehende/AGNRSV -stehlen/DI -steif/ACEPT -steifen/DIWXY -steifte/GNVZ -steiften/GIVWX -steigen/DIWX -steigern/BDIVXY -steigert/EGPVX -steigerte/GNVZ -steigerten/GIVWX -steil/ACEPT -steilheitsbegrenzt/AEPT -steinalt/AEPT -steinern/AEPT -steinhart/AEPT -steinig/ACEPTZ -steinigen/DIWXY -steinreich/ACEPT -steinzeitlich/AEPT -stellen/DIVWXY -stellenlos/AEPT -stellig/AEPT -stellt/EGPVWX -stellte/GNVZ -stellten/GIVWX -stellungslos/AEPT -stellvertretend/AEPT -stelzen/DIXY -stelzt/EGPX -stemmen/DIXY -stempeldruckabhngig/AEPT -stempeln/DIXY -stenografieren/DIOXY -stenografisch/AEPT -stenographieren/DIOXY -stenographisch/AEPT -steppen/DIXY -sterben/DI -sterbenskrank/AEPT -sterblich/AEPTU -stereotyp/AEPT -stereotypieren/DIOXY -steril/ACEPT -sterilisieren/DIOXY -sternenfrmig/AEPT -sternenklar/AEPT -sternfrmig/AEPT -sternhagelvoll/AEPT -sternhell/ACEPT -sternklar/AEPT -stete/ANRSU -stetig/ACEPT -stets -steuerbefreit/AEPT -steuerbegnstigt/AEPT -steuerfrei/AEPT -steuerlich/AEPT -steuern/BDIVXY -steuerpflichtig/AEPT -steuerpolitisch/AEPT -steuerrechtlich/AEPT -steuert/EGPVX -steuerte/GNVZ -steuerten/GIVWX -steuerungsseitig/AEPT -steuerungstechnisch/AEPT -stibitzen/DIOXY -sticheln/DIXY -stichfest/AEPT -stichhaltig/AEPT -stichig/AEPT -stichprobenartig/AEPT -stichpunktartig/AEPT -sticht/X -sticken/DIXY -stickig/AEPT -stickstoffhaltig/AEPT -stieben/DIXY -stiefeln/DIXY -stiefmtterlich/AEPT -stieg/PVZ -stiegen/GVWX -stiehlt/X -stieren/DIXY -stiernackig/AEPT -stie/EPVZ -stiee/NVZ -stiften/DIXY -stilecht/AEPT -stilgerecht/AEPT -stilisieren/DIOXY -stilistisch/AEPT -still/ACEPTZ -stillen/DIWXY -stillgelegt/AEPT -stillgestanden/AEPT -stillhltst/WX -stillhalten/DI -stilliegen/DIX -stilllegen/DIXY -stillos/AEPT -stillschweigen/DIX -stillstehen/DIX -stillvergngt/AEPT -stilvoll/AEPT -stimmberechtigt/AEPT -stimmen/DIVXY -stimmig/AEPTU -stimmt/EGPVX -stimmte/GNVZ -stimmten/GIVWX -stimmungsvoll/AEPT -stimulieren/BDIOXY -stinken/DIX -stirbt/VWX -stbern/DIXY -stbert/EGPX -sthnen/DIXY -sthnt/EGPX -stpseln/DIXY -stranfllig/AEPT -stren/BDIVXY -strfrei/AEPT -strrig/ACEPT -strrisch/ACEPT -strsicher/AEPT -strungsfrei/AEPT -strungsverursachend/AEPT -stt/V -stochastisch/AEPT -stochern/DIXY -stocken/DIXY -stocksteif/AEPT -stoisch/AEPT -stolpern/DIXY -stolz/AEPT -stopfen/DIVXY -stopft/EGPVX -stopfte/GNVZ -stopften/GIVWX -stoppen/DIWXY -stornieren/DIOXY -stoartig/AEPT -stoen/DGIVW -stofest/AEPT -stottern/DIXY -strflich/AEPT -struben/DIXY -strafen/BDIWXY -straff/ACEPT -straffen/DIWXY -strafrechtlich/AEPT -strahlen/DIXY -strahlt/EGPX -strampeln/DIXY -strampelt/EGPX -strangulieren/DIOXY -strapazieren/DIOXY -strapazis/AEPT -strategisch/AEPT -streben/DIVXY -strebt/EGPVX -strebte/GNVZ -strebten/GIVWX -strebweit/AEPT -strecken/DIXY -streckenweise -streicheln/DIXY -streichen/BDIVX -streifen/DIXY -streifenweise -streifig/AEPT -streiken/DIXY -streikt/EGPX -streiten/BDIX -streitig/AEPTU -streitlustig/AEPT -streitschtig/ACEPT -streng/ACEGPTZ -strengen/GIWXY -strenger/AEGPT -strengsten/SW -stressen/DIXY -stressig/ACEPT -streuen/DIVXY -streut/EGPVX -streute/GNVZ -streuten/GIVWX -strich/PZ -strichen/GVWX -stricken/DIVXY -strickt/EGPVX -strickte/GNVZ -strickten/GIVWX -strikt/AEPT -stringent/ACEPT -stritt/EPZ -strittig/AEPTU -strmen/DIXY -strmungsproportional/AEPT -strombegrenzt/AEPT -stromfressend/AEPT -stromlos/AEPT -stromsparend/AEPT -strotzen/DIXY -strotzt/EGPX -strukturbasiert/AEPT -strukturell/AEPT -strukturgleich/AEPT -strukturieren/DIOXY -stckchenweise -stckeln/DIXY -stckweise -stlpen/DIXY -stmperhaft/AEPT -stnde/NVZ -stndlich/AEPT -strbe/NZ -strmen/DIXY -strmisch/AEPT -strzen/DIXY -sttzen/DIXY -stubenrein/AEPT -studentisch/AEPT -studieren/DIOXY -studierwillig/AEPT -stufen/DIWXY -stufenartig/AEPT -stufenfrmig/AEPT -stufenlos/AEPT -stufenweise/ANRS -stumm/ACEPT -stumpf/ACEPT -stumpfen/DIWXY -stumpfsinnig/ACEPT -stumpfwinklig/AEPT -stundenlang/AEPT -stundenweise/ANRS -stupid/ACEPT -stupsen/DIXY -stupsnasig/AEPT -stur/ACEPT -stutzen/DIXY -stutzerhaft/AEPT -stutzig/AEPT -schtig/AEPT -sdafrikanisch/AEPT -sdamerikanisch/AEPT -sdchinesisch/AEPT -sddeutsch/AEPT -sdeuropisch/AEPT -sdfranzsisch/AEPT -sdlndisch/AEPT -sdlich/ACEPT -sdstlich/AEPT -sdwrts -sdwestenglisch/AEPT -sdwestlich/AEPT -sffig/AEPT -sffisant/AEPT -shnen/IXY -sndenfllig/AEPT -sndhaft/AEPT -sndig/AEPTZ -sndigen/DIWXY -sndigte/GNVZ -sndigten/GIVWX -s/ACELPTZ -sen/DIWXY -ssauer/A -ste/GNVZ -sten/GIVWX -subatomar/AEPT -subjektiv/AEPT -suboptimal/AEPT -subsequent/AEPT -substantiell/ACEPT -substantivisch/AEPT -substanziell/ACEPT -substituieren/BDIOWXY -subsumieren/DIOXY -subtil/ACEPT -subtrahieren/DIOXY -subtropisch/AEPT -subventionieren/DIOXY -subversiv/AEPT -suchen/DIVWXY -suchterzeugend/AEPT -sudanesisch/AEPT -sudeln/DIXY -sudlig/AEPT -suggerieren/DIOXY -suggestibel/A -suggestionsbereit/AEPT -suggestiv/AEPT -sukzessiv/AEPT -sulfidisch/AEPT -sulzen/DIXY -summa -summarisch/AEPT -summen/DIWXY -summieren/DIOXY -sumpfig/ACEPT -super -supererfolgreich/AEPT -superklug/AEPT -superlativisch/AEPT -superspezialisiert/AEPT -surfen/DIXY -surft/EGPX -surrealistisch/AEPT -surren/DIXY -suspekt/AEPT -suspendieren/DIOXY -swingen/DIVX -sybillinisch/AEPT -symbolisch/AEPT -symbolisieren/DIOXY -symmetrisch/AEPTU -sympathisch/ACEPTU -sympathisieren/DIXY -symphonisch/AEPT -synchron/AEPT -synchronisieren/DIOXY -synonym/AEPT -synonymisch/AEPT -syntaktisch/AEPT -syntaxgesteuert/AEPT -synthetisch/AEPT -synthetisieren/BDIOXY -syphilitisch/AEPT -syrisch/AEPT -systematisch/AEPT -systematisieren/DIOWXY -systemdefiniert/AEPT -systemimmanent/AEPT -systemlos/AEPT -systemnah/AEPT -systemuntersttzt/AEPT -systolisch/AEPT -szenisch/AEPT -tfeln/DIXY -tglich/AEPT -tndeln/DIXY -tnzeln/DIXY -tnzerisch/AEPT -tppisch/AEPT -tte/NZ -ttig/ACEPTZ -ttigen/DIWXY -ttlich/AEPT -ttowieren/DIOXY -ttscheln/DIXY -tuschen/DIXY -tabellarisch/AEPT -tabellarisieren/DIOXY -tabellengesteuert/AEPT -tabellengetrieben/AEPT -tabu -tabuisieren/DIOXY -tadellos/ACEPT -tadeln/DIXY -tadelnswert/ACEPT -tadelschtig/ACEPT -tafelfertig/AEPT -tafeln/DIWXY -tagaus -tagein -tagelang/AEPT -tagen/DIVXY -tagesaktuell/AEPT -tageweise/ANRS -tagsber -tagt/EGPVX -tagtglich/AEPT -tagte/GNVZ -tagten/GIVWX -taillieren/DIOXY -takeln/DIXY -takten/DIXY -taktfest/ACEPT -taktieren/DIXY -taktisch/AEPT -taktlos/ACEPT -taktvoll/ACEPT -talentiert/ACEPT -talentlos/ACEPT -talentvoll/ACEPT -talgig/AEPT -tangential/AEPT -tangieren/DIOXY -tanken/DIXY -tanzen/DIXY -tapezieren/DIOWXY -tapfer/ACEPT -tappen/DIXY -tapsen/DIXY -tapsig/AEPT -tapst/EGP -tarieren/DIOXY -tariflich/AEPT -tarifmig/AEPT -tarifpolitisch/AEPT -tarnen/DIXY -taschenrechnergewandt/AEPT -tasten/DIXY -tat/PZ -tatendurstig/AEPT -tatenlos/AEPT -tatkrftig/ACEPT -tatschlich/AEPT -taub/ACEPT -taubengrau/AEPT -taubstumm/AEPT -tauchen/DIXY -tauen/DIXY -taufen/DIXY -taufrisch/AEPT -taugen/DIXY -tauglich/ACEPTU -taumeln/DIXY -taumlig/AEPT -tauschen/BDIVXY -tauscht/EGPVX -tauschte/GNVZ -tauschten/GIVWX -tausend/EP -tausenderlei -tausendfltig/AEPT -tausendfach/AEPT -tausendjhrig/AEPT -tausendmal -tausendste/ANRS -tausendstel/S -tautologisch/AEPT -taxieren/DIOXY -taylorisieren/BDIXY -technikphilosophisch/AEPT -technisch/ACEPT -technokratisch/AEPT -technologiefrei/AEPT -technologieinduziert/AEPT -technologisch/AEPT -teeren/DIXY -teigig/ACEPT -teil/EPSZ -teilbar/AEPTUV -teilbestcken/O -teilbestckt/AEPT -teilen/BDIVWXY -teilgenommen/AEPT -teilhaben/DI -teilhaftig/AEPT -teilnahm/PZ -teilnahmslos/ACEPT -teilnahmsvoll/ACEPT -teilnehmen/DI -teilnimmt/X -teilweise/ANRS -teilzuhaben -teilzunehmen -tektonisch/AEPT -telefonieren/DIVWXY -telefonisch/AEPT -telegrafieren/DIXY -telegrafisch/AEPT -telegraphieren/DIXY -telegraphisch/AEPT -teleologisch/AEPT -telepathisch/ACEPT -teleskopisch/AEPT -temperamentlos/AEPT -temperamentvoll/ACEPT -temperaturabhngig/AEPT -temperieren/DIOXY -temporr/AEPT -temporal/AEPT -tendenziell/AEPT -tendenzis/ACEPT -tendieren/DIXY -terminfhren/D -termingerecht/AEPT -terminieren/DIOUXY -terminlich/AEPT -terrassenfrmig/AEPT -terrestrisch/AEPT -territorial/AEPT -terrorisieren/DIOXY -tertir/AEPT -testamentarisch/AEPT -testen/BDIXY -testieren/DIOXY -teuer/AC -teuflisch/ACEPT -teutonisch/AEPT -texanisch/AEPT -textkritisch/AEPT -textlich/AEPT -textlinguistisch/AEPT -thailndisch/AEPT -theatralisch/AEPT -thematisch/AEPT -thematisieren/DIOXY -themenverwandt/AEPT -theologisch/AEPT -theoretisch/ACEPT -theoretisieren/DIXY -therapeutisch/AEPT -therapieren/BDIOWXY -thermisch/AEPT -thermometrisch/AEPT -thermoplastisch/AEPT -theta -thrombotisch/AEPT -thronen/DIXY -thringisch/AEPT -tibetanisch/AEPT -tibetisch/AEPT -ticken/DIXY -tief/ACEPTU -tiefblau/AEPT -tiefgekhlt/AEPT -tiefgeladen/AEPT -tiefgrndig/ACEPT -tiefladbar/AEPT -tiefschwarz/AEPT -tiefsinnig/ACEPT -tiefstellen/IXY -tiefzuladen/P -tierisch/AEPT -tierlieb/AEPT -tierlieben/DW -tilgbar/ACEPTU -tilgen/BDIVXY -tilgt/EGPVX -tilgte/GNVZ -tilgten/GIVWX -tippeln/DIXY -tippen/DIVXY -tippt/EGPVX -tippte/GNVZ -tippten/GIVWX -tirolerisch/AEPT -tischlern/DIXY -titanisch/AEPT -titulieren/DIOXY -tdlich/ACEPT -tlpelhaft/ACEPT -tnen/DIXY -tnern/AEPT -tpfern/DIXY -tricht/ACEPT -tten/DIXY -toasten/DIXY -toben/DIXY -tobschtig/AEPT -tobt/EGPX -todblass/AEPT -todbringend/AEPT -todernst/AEPT -todgeweiht/AEPT -todkrank/AEPT -todlangweilig/AEPT -todmde/ANRS -todschick/AEPT -todsicher/AEPT -toggeln/DIXY -toggelt/EGPX -tolerabel/A -tolerant/ACEPT -toleranzbedingt/AEPT -tolerieren/DIOXY -toll/ACEPTZ -tollen/DIWXY -tollkhn/ACEPT -tollpatschig/AEPT -tolpatschig/AEPT -tonangebend/AEPT -tonhaltig/AEPT -tonlos/ACEPT -tonnenweise -topfit -topografisch/AEPT -topographisch/AEPT -topologisch/AEPT -torkeln/DIXY -torlos/AEPT -torpedieren/DIOXY -tosen/DXY -tot/AEPTX -total/AEPT -totalitr/ACEPT -totarbeiten/DIXY -totenblass/AEPT -totenbleich/AEPT -totenstill/AEPT -totgearbeitet/AEPT -totgelaufen/AEPT -totgeschlagen/AEPT -totgeschossen/AEPT -totgeschwiegen/AEPT -totgestochen/AEPT -totlachen/DIXY -totlaufen/DI -totschieen/DIX -totschlagen/DI -totschweigen/DIX -totstechen/DI -totzuschlagen/D -toupieren/DIOXY -touristisch/AEPT -toxikologisch/AEPT -trchtig/ACEPT -trfe/NZ -trg/ACEPTZ -trgerlos/AEPT -trllern/DIXY -trnen/DIXY -trnennass/AEPT -trnken/DIXY -trufeln/DIXY -trumen/DIVXY -trumerisch/ACEPT -trumt/EGPVX -trumte/GNVZ -trumten/GIVWX -traben/DIXY -trachten/DIXY -tradieren/O -traditionell/ACEPT -traditionsbewusst/AEPT -traditionsgem/AEPT -traditionsreich/AEPT -traf/PZ -tragbar/ACEPTU -tragen/BDGIV -tragfhig/ACEPT -tragikomisch/AEPT -tragisch/ACEPT -trainieren/DIOXY -traktieren/DIOXY -trampeln/DIXY -tranchieren/DIOXY -trank/PVZ -transatlantisch/AEPT -transferieren/DIOXY -transformieren/DIOXY -transistorisieren/DIOXY -transitiv/AEPT -transparent/ACEPT -transpirieren/DIXY -transplantieren/DIOXY -transponieren/BDIOXY -transportabel/AC -transportfhig/ACEPT -transportieren/DIOXY -transsibirisch/AEPT -transversal/AEPT -transzendent/AEPT -trapezfrmig/AEPT -trappeln/DIXY -trassieren/DIOXY -trat/PVZ -tratschen -trauen/DIOVWXY -trauern/DIXY -traulich/ACEPTV -traumatisch/ACEPT -traumatisieren/DIOWXY -traumhaft/AEPT -traurig/ACEPT -traut/AEGPTVWX -traute/AGNRSVZ -trauten/GIVWX -traversieren/BDIOXY -travestieren/DIOXY -trecken/DIXY -treffen/DI -trefflich/ACEPT -treffsicher/ACEPT -treiben/DIVWX -treideln/DIXY -tremolieren/DIOXY -trennbar/ACEPTU -trennen/BDIXY -trennend/ACEPT -trennschrfer/AEPT -trennschrfste/ANRS -trennscharf/AEPT -trenschrfste/ANRS -treppenfrmig/AEPT -treten/DGIV -treu/ACEGPTU -treubrchig/ACEPT -treue/ACGNRSU -treuhnderisch/AEPT -treuherzig/ACEPT -treulich/G -treulos/ACEPT -treuselig/AEPT -tributpflichtig/AEPT -trichterfrmig/AEPT -trickreicherweise -tricksen/IXY -trickst/EGP -trieb/PVZ -trieben/GVWX -triebhaft/ACEPT -triefugig/AEPT -triefen/DIXY -triefnass/AEPT -trifft/WX -triftig/ACEPT -triggern/BDIXY -triggert/EGPX -trigonometrisch/AEPT -trilateral/AEPT -trillern/DIXY -trimmen/DIXY -trinkbar/AEPTU -trinken/BDIVWX -trinkfest/ACEPT -trippeln/DIXY -trist/ACEPT -trittst/VWX -triumphal/ACEPT -triumphieren/DIXY -trivial/ACEPT -trivialerweise -trdeln/DIVXY -trdelt/EGPVX -trdelte/GNVZ -trdelten/GIVWX -trpfchenweise -trpfeln/DIXY -trsten/DIVXY -trstet/EGPVWX -trstete/GNVZ -trsteten/GIVWX -trstlich/ACEPTU -trocken/ACEPT -trockengelegt/AEPT -trockenlegen/DIXY -trocknen/DIVXY -trocknet/EGPVWX -trocknete/GNVZ -trockneten/GIVWX -trog/PZ -trojanisch/AEPT -trollen/DIXY -trommeln/DIXY -trompeten/DIXY -tropenfest/ACEPT -tropfen/DIXY -tropfenfrmig/AEPT -tropfnass/AEPT -tropisch/ACEPT -trostlos/ACEPT -trostreich/ACEPT -trostvoll/AEPT -trotten/DIXY -trotzdem -trotzen/DIWXY -trotzend/ACEPT -trotzig/ACEPT -trotzkpfig/ACEPT -trb/ACEPTZ -trben/DIWXY -trbselig/ACEPT -trbsinnig/ACEPT -trgen/DIX -trgerisch/ACEPT -trudeln/DIXY -trudelt/EGPX -trugen/VWX -trumpfen/DIXY -trunken/ACEGPT -trunkene/AGNRSV -trunkener/AEGPT -trunkschtig/ACEPT -truppweise -tschechisch/AEPT -tschetschenisch/AEPT -tschs -tschss -tchtig/ACEPT -tckisch/ACEPT -tfteln/DIXY -tnchen/DIXY -trkis -trkisch/AEPT -trkisfarben/AEPT -trmen/DIXY -tuberkuls/AEPT -tuend/AEPT -tugendhaft/ACEPT -tugendreich/ACEPT -tummeln/DIXY -tumultuarisch/AEPT -tun/IX -tunesisch/AEPT -tunken/DIWXY -tunlich/AEPT -tunlichst/W -tuntig/AEPT -tupfen/DIXY -turbogeladen/AEPT -turbulent/AEPT -turmhoch -turmhohe/ANRS -turnen/DIXY -turnerisch/AEPT -turnusmig/AEPT -turteln/DIXY -tuscheln/DIXY -tuschen/DIVXY -tuscht/EGPVX -tuschte/GNVZ -tuschten/GIVWX -tut/EPX -tuten/DIWXY -typinkonsistent/AEPT -typisch/ACEPTU -typischerweise -typisieren/DIOXY -typografisch/AEPT -typographisch/AEPT -tyrannisch/ACEPT -tyrannisieren/DIOXY -be/NR -bel/AC -ben/DIVXY -ber/S -berngstlich/AEPT -berall -berallhin -beraltert/AEPT -beranstrengen/DIOXY -berantworten/DIOXY -berarbeiten/DIOXY -bera/PZ -beraus -berbeanspruchen/DIOXY -berbegabt/AEPT -berbeladen/AEPT -berbelasten/DIOXY -berbelichten/DIOXY -berbesetzt/AEPT -berbetonen/DIOXY -berbevlkert/AEPT -berbewerten/DIOXY -berbieten/DIX -berblttern/DIOWXY -berblenden/DIOXY -berblicken/DIOXY -berboten/AEPTWX -berbracht/AEPTZ -berbreit/AEPT -berbringen/DIX -berbrckbar/AEPTU -berbrcken/BDIOXY -berdachen/DIOXY -berdauern/DIOXY -berdecken/DIOXY -berdenken/DIX -berdies -berdimensional/AEPT -berdimensioniert/AEPT -berdrehen/DIOXY -berdrssig/ACEPT -berdrucken/DIOXY -berdurchschnittlich/ACEPT -bereifrig/ACEPT -bereignen/DIOXY -bereilen/DIOXY -berein -bereinander -bereinandergelagert/AEPT -bereinandergelegt/AEPT -bereingekommen/AEPT -bereingestimmt/AEPT -bereinkommen/DIX -bereinstimmen/DIXY -bereinzustimmen -berempfindlich/ACEPT -beressen/ADEIPT -berfhrt/X -berfllig/ACEPT -berfllt/X -berfahren/ADEIPT -berfallen/ADEIPT -berfiel/EPZ -berfliegen/DIX -berflieen/DIX -berflogen/AEPTWX -berfloss/PZ -berflgeln/DIOXY -berflssig/ACEPT -berflssigerweise -berfluten/DIOXY -berfordern/DIOXY -berfrachten/DIOXY -berfragen/DIXY -berfressen/DI -berfreundlich/AEPT -berfhren/DIOXY -berfllen/DIOXY -berfttern/DIOXY -berfuhr/PZ -bergab/PZ -bergangen/AEPT -bergangslos/AEPT -bergeben/ADEIPT -bergebietlich/AEPT -bergeflossen/AEPT -bergefhrt/AEPT -bergegangen/AEPT -bergegriffen/AEPT -bergehen/DIX -bergekippt/AEPT -bergekocht/AEPT -bergelaufen/AEPT -bergeleitet/AEPT -bergeordnet/AEPT -bergeschnappt/AEPT -bergeschoben/AEPT -bergesiedelt/AEPT -bergestreift/AEPT -bergeworfen/AEPT -bergibt/X -bergieen/DIX -berging/EPZ -berglasen/DIOXY -berglcklich/ACEPT -bergossen/AEPTWX -bergreifen/DIX -bergriff/PZ -bergro/AEPT -bergrozgig/AEPT -berhngen/DIOX -berhufen/DIOXY -berhand -berhastet/AEPT -berhaupt -berheben/DIX -berheblich/ACEPT -berhin -berhitzen/DIOXY -berhht/ACEPT -berhren/BDIOXY -berhoben/AEPTWX -berholen/DIOXY -berholungsbedrftig/AEPT -berhpfen/DIXY -berinterpretieren/DIOXY -berirdisch/ACEPT -berkam/PZ -berkippen/DIXY -berkleben/DIOXY -berklettern/DIXY -berkochen/DIXY -berkommen/ADEIPTX -berkrusten/DIOXY -berldt/X -berlsst -berluft/X -berladen/ADEIPTX -berlagern/DIOXY -berlang/AEPT -berlappen/DIOXY -berlasen/WXY -berlassen/ADEIPT -berlasten/DIOWXY -berlastfest/AEPT -berlastgeschtzt/AEPT -berlaufen/ADEIPT -berlaut/AEPT -berleben/DIOXY -berlebensgro/AEPT -berlegen/ADEIOPTXY -berleiten/DIXY -berlesen/ADEIPT -berlief/EPZ -berliefern/DIOXY -berliegend/AEPT -berlie/EPZ -berliest -berlisten/DIOXY -berlud/PZ -bermchtig/ACEPT -bermig/ACEPT -bermachen/DIOXY -bermalen/DIOXY -bermannen/DIOXY -bermenschlich/AEPT -bermitteln/DIOXY -bermodern/ADEIOPTXY -bermorgen -bermdet/AEPT -bermtig/ACEPT -bernchste/ANRS -bernchtigt/AEPT -bernachten/DIOXY -bernahm/PZ -bernational/AEPT -bernatrlich/AEPT -bernehmen/DI -bernervs/AEPT -bernimmt/WX -bernommen/AEPT -berrtlich/AEPT -berordnen/DIXY -berparteilich/AEPT -berpflanzen/DIOXY -berproportional/AEPT -berprfbar/AEPTU -berprfen/BDIOXY -berquellen/DI -berqueren/DIOXY -berquillt/X -berquoll/PZ -berragen/DIOXY -berrannt/AEPTZ -berraschen/DIOXY -berraschenderweise -berreden/DIOXY -berregional/AEPT -berreich/AELPT -berreichen/DIOWXY -berreif/AEPT -berreizen/DIOXY -berrennen/DIX -berrollen/DIOXY -berrumpeln/DIOXY -berrunden/DIOXY -berst/AEPT -bersttigen/DIOXY -bersah/PZ -bersandt/AEPTZ -bersatt/AEPT -berschtzen/DIOXY -berschumen/DIOXY -berschatten/DIOXY -berschauen/BDIOXY -berschieen/DIX -berschlft/X -berschlgig/AEPT -berschlgt/X -berschlafen/ADEIPT -berschlagen/ADEIPT -berschlief/PZ -berschlug/PZ -berschmieren/DIOXY -berschnappen/DIXY -berschneiden/DIX -berschneidungsfrei/AEPT -berschnitten/AEPTWX -berschreiben/DIX -berschreiten/DIX -berschrieben/AEPTWX -berschritten/AEPTWX -berschssig/AEPT -berschtten/DIOXY -berschuldet/AEPT -berschwnglich/ACEPT -berschwemmen/DIOXY -berseeisch/AEPT -bersehbar/AEPTU -bersehen/ABDEIPT -bersenden/DIXY -bersetzen/BDIOXY -bersichtlich/ACEPTU -bersiedeln/DIOXY -bersieht/X -bersinnlich/AEPT -berspannen/DIOXY -berspannungsfest/AEPT -berspannungsgeschtzt/AEPT -berspannungssicher/AEPT -berspielen/DIOXY -berspitzen/DIOXY -bersprang/PZ -bersprechen/DI -berspringen/DIX -bersprudeln/DIXY -bersprungen/AEPT -berstaatlich/AEPT -berstanden/AEPTWX -berstehen/DIX -bersteigen/DIX -bersteigern/DIOXY -berstiegen/AEPTWX -berstimmen/DIOXY -berstrahlen/DIOXY -berstreichen/DIX -berstreifen/DIXY -berstrichen/AEPTWX -berstrmen/DIOXY -berstrzen/DIOXY -bertage -bertakten/DIOXY -bertariflich/AEPT -berteuert/AEPT -bertlpeln/DIOXY -bertnen/DIOXY -bertrgt/X -bertraf/PZ -bertragbar/AEPTU -bertragen/ABDEIPT -bertrainieren/DIOXY -bertrat/PZ -bertreffen/DI -bertreiben/DIX -bertreten/ADEIPT -bertrieben/AEPTWX -bertrifft/X -bertrittst/WX -bertroffen/AEPTU -bertrug/PZ -bertrumpfen/DIOXY -bertnchen/DIOXY -bervlkern/DIOXY -bervoll/AEPT -bervorteilen/DIOXY -berwltigen/DIOXY -berwachen/DIOXY -berwand/PZ -berwechseln/IXY -berweisen/DIX -berwerfen/DI -berwiegen/DIX -berwiesen/AEPTWX -berwindbar/AEPTU -berwinden/BDIX -berwintern/DIOXY -berwlben/DIOXY -berwog/PZ -berwuchern/DIOXY -berwunden/AEPT -berzhlen/DIOXY -berzhlig/AEPT -berzeichnen/DIOXY -berzeugen/DIOXY -berzeugend/ACEPT -berziehen/DIWX -berzogen/AEPTWX -berzuckern/DIOXY -berzugehen -berzugreifen -berzuwechseln -blich/ACEPTU -blicherweise -brig/AEPT -brigen/SW -ppig/ACEPT -ubiquitr/AEPT -uferlos/AEPT -ukrainisch/AEPT -ulken/DIXY -ulkig/ACEPT -ultima -ultimativ/AEPT -ultralangfristig/AEPT -ultramarin/AEPT -ultraviolett/AEPT -um/S -umndern/DIXY -umadressieren/DIOXY -umarbeiten/DIXY -umarmen/DIOXY -umbauen/DIOXY -umbenannt/AEPT -umbenennen/DIX -umbetten/DIXY -umbiegen/DIX -umbilden/DIXY -umbinden/DIX -umblttern/DIXY -umbrechen/DI -umbricht/X -umbringen/DIX -umbuchen/DIXY -umdachte/NZ -umdefinieren/DIOXY -umdenken/DIX -umdirigieren/DIOXY -umdisponieren/DIOXY -umdrehen/DIXY -umdrucken/DIXY -umeinander -umfngt/X -umfahren/ADEIPT -umfallen/DI -umfangen/ADEIPT -umfangreich/ACEPT -umfassen/DIOXY -umfassend/ACEPT -umfing/PZ -umfliegen/DIX -umflogen/AEPTWX -umfluten/DIOXY -umformen/DIXY -umformulieren/DIOXY -umfllen/DIXY -umfunktionieren/DIOXY -umgnglich/ACEPTU -umgab/PZ -umgangen/AEPT -umgangssprachlich/AEPT -umgarnen/DIOXY -umgendert/AEPT -umgearbeitet/AEPT -umgebaut/AEPT -umgeben/ADEIPT -umgebettet/AEPT -umgebildet/AEPT -umgeblttert/AEPT -umgebogen/AEPT -umgebracht/AEPT -umgebrochen/AEPT -umgebucht/AEPT -umgebunden/AEPT -umgedreht/AEPT -umgedruckt/AEPT -umgefallen/AEPT -umgeformt/AEPT -umgefllt/AEPT -umgegangen -umgegossen/AEPT -umgegraben/AEPT -umgehngt/AEPT -umgehabt -umgehackt/AEPT -umgehalst/AEPT -umgehauen/AEPT -umgehen/DIX -umgekehrt/AEPT -umgekippt/AEPT -umgeklappt/AEPT -umgekleidet/AEPT -umgeknickt/AEPT -umgekommen/AEPT -umgekrempelt/AEPT -umgeladen/AEPT -umgelagert/AEPT -umgelegt/AEPT -umgeleitet/AEPT -umgelenkt/AEPT -umgelernt/AEPT -umgemodelt/AEPT -umgemnzt/AEPT -umgepackt/AEPT -umgepflanzt/AEPT -umgepflgt/AEPT -umgepolt/AEPT -umgerechnet/AEPT -umgerissen/AEPT -umgerhrt/AEPT -umgerstet/AEPT -umgesattelt/AEPT -umgeschaltet/AEPT -umgeschaut -umgeschichtet/AEPT -umgeschlagen/AEPT -umgeschnallt/AEPT -umgeschrieben/AEPT -umgeschttelt/AEPT -umgeschttet/AEPT -umgeschuldet/AEPT -umgeschult/AEPT -umgeschwenkt/AEPT -umgesehen/AEPT -umgesetzt/AEPT -umgesiedelt/AEPT -umgesprungen/AEPT -umgespult/AEPT -umgestalten/DIOXY -umgesteckt/AEPT -umgestellt/AEPT -umgesteuert/AEPT -umgestiegen/AEPT -umgestimmt/AEPT -umgestoen/AEPT -umgestrickt/AEPT -umgestrzt/AEPT -umgesunken/AEPT -umgetauft/AEPT -umgetauscht/AEPT -umgewlzt/AEPT -umgewandelt/AEPT -umgewandt/AEPT -umgewechselt/AEPT -umgewendet/AEPT -umgewertet/AEPT -umgeworfen/AEPT -umgezogen/AEPT -umgibt/X -umgieen/DIX -umging/EPZ -umgoss/PZ -umgraben/DI -umgrenzend/AEPT -umgrenzt/AEPT -umgruppieren/DIOXY -umgrten/DIOXY -umhngen/DIOXY -umhaben/DI -umhacken/DIXY -umhalsen/DIOXY -umhauen/DIXY -umher -umherblicken/DIXY -umhergeirrt -umhergeschweift/AEPT -umhergestrichen/AEPT -umhergewirbelt/AEPT -umhergezogen/AEPT -umherschweifen/DIXY -umherstreichen/DIX -umherziehen/DIX -umhin -umhingekommen -umhingekonnt -umhinkam/PZ -umhinkannst/W -umhinknnen/IY -umhinkommen/IX -umhinkonnte/NZ -umhllen/DIOXY -umkmpfen/DIOXY -umkam/PZ -umkehren/BDIXY -umkippen/DIXY -umklammern/DIOXY -umklappen/DIXY -umkleiden/DIXY -umknicken/DIXY -umkommen/DIX -umkonstruieren/DIOXY -umkreisen/DIOXY -umkrempeln/DIXY -umldt/X -umluft/X -umladen/DI -umlagern/DIOXY -umlaufen/ADEIPT -umlauten/DIXY -umlegen/BDIXY -umleiten/DIXY -umlenken/DIXY -umlernen/DIXY -umlief/EPZ -umliegend/AEPT -ummodeln/DIXY -umnachtet/AEPT -umnebeln/DIOXY -umordnen/DIXY -umorganisieren/DIOXY -umpacken/DIXY -umpflanzen/DIXY -umpflgen/DIXY -umpolen/DIXY -umprogrammieren/BDIOXY -umquartieren/DIOXY -umrahmen/DIOXY -umranden/DIOXY -umrang/PZ -umranken/DIOXY -umrannte/NZ -umrechnen/DIXY -umreien/DIX -umrennen/DIX -umringen/DIOX -umrissen/AEPTWX -umrhren/DIXY -umrsten/IXY -umrunden/DIOXY -umsumen/DIOXY -umsah/PZ -umsatteln/DIXY -umschalten/BDIXY -umschauen/DIXY -umschichten/DIXY -umschiffen/DIOXY -umschlagen/DI -umschlang/PZ -umschlieen/DIX -umschlingen/DIX -umschlossen/AEPTWX -umschlungen/AEPT -umschmeicheln/DIXY -umschmelzen/DI -umschmolzen/AEPT -umschnallen/DIXY -umschreiben/DIX -umschrieben/AEPTWX -umschtteln/DIXY -umschtten/DIXY -umschulen/DIXY -umschwrmen/DIOXY -umschweifig/AEPT -umschwenken/DIXY -umsegeln/DIOXY -umsehen/DI -umseitig/AEPT -umsetzbar/ACEPT -umsetzen/BDIXY -umsichtig/ACEPT -umsiedeln/DIXY -umsieht/X -umsinken/DIX -umso -umsonst -umsorgen/DIOXY -umsortieren/BDIOXY -umspannen/DIOXY -umspielt/AEPT -umspinnen/DIX -umsponnen/AEPT -umsprang/PZ -umspringen/DIX -umsprungen/AEPT -umsplen/DIOXY -umspulen/DIXY -umstndlich/AEPT -umstehend/AEPT -umsteigen/DIX -umstellen/DIOXY -umsteuern/DIXY -umstimmen/DIXY -umstoen/DI -umstricken/DIOXY -umstritten/ACEPTU -umstrzen/DIXY -umstrzlerisch/AEPT -umtaufen/DIXY -umtauschen/BDIXY -umtuend/AEPT -umtun/IX -umwlzen/DIXY -umwandeln/BDIXY -umwarb/PZ -umwarf/PZ -umwechseln/DIXY -umweltbedingt/AEPT -umweltfreundlich/AEPT -umweltschonend/AEPT -umweltschtzend/AEPT -umwenden/DIXY -umwerben/DI -umwerfen/DI -umwerten/DIXY -umwickeln/DIOXY -umwirbt/X -umwirft/X -umwlken/DIOXY -umwogt/AEPT -umworben/AEPT -umzunen/DIOXY -umziehen/DIX -umzingeln/DIOXY -umzge/NZ -umzog/PZ -umzubenennen/D -umzubringen/D -umzugehen -umzugswillig/AEPT -umzukippen/D -umzukonstruieren/D -umzulegen/D -umzuleiten/D -umzulernen/D -umzuordnen/D -umzuprogrammieren/D -umzuschalten/D -umzuschichten/D -umzuschulden/D -umzusehen -umzusetzen/D -umzusteigen -umzustellen/D -umzuwandeln/D -umzuwerfen/D -unabdingbar/AEPT -unablssig/AEPT -unabwehrbar/AEPT -unabweisbar/AEPT -unabweislich/AEPT -unantastbar/AEPT -unartikuliert/AEPT -unaufhaltsam/AEPT -unaufhrlich/AEPT -unauflslich/AEPT -unaufschiebbar/AEPT -unausbleiblich/AEPT -unauslschlich/AEPT -unausrottbar/AEPT -unaussprechlich/AEPT -unausstehlich/AEPT -unausweichlich/AEPT -unautorisiert/AEPT -unbndig/AEPT -unbeabsichtigt/AEPT -unbeachtet/AEPT -unbeanstandet/AEPT -unbeantwortet/AEPT -unbearbeitet/AEPT -unbebaut/AEPT -unbedarft/AEPT -unbedeckt/AEPT -unbedingt/AEPT -unbedruckt/AEPT -unbefahrbar/ACEPT -unbefleckt/AEPT -unbefriedigt/AEPT -unbefristet/AEPT -unbegabt/ACEPT -unbegrenzt/ACEPT -unbegrndet/AEPT -unbehandelt/AEPT -unbehelligt/AEPT -unbeherrscht/ACEPT -unbehindert/AEPT -unbeholfen/ACEPT -unbeirrbar/AEPT -unbeirrt/AEPT -unbekehrbar/AEPT -unbekleidet/AEPT -unbekmmert/ACEPT -unbelastet/AEPT -unbelebt/ACEPT -unbelegt/AEPT -unbelehrbar/ACEPT -unbeleuchtet/AEPT -unbelichtet/AEPT -unbeliebt/ACEPT -unbelohnt/AEPT -unbemerkt/AEPT -unbemittelt/ACEPT -unbenommen -unbenutzt/ACEPT -unbeobachtet/AEPT -unbequem/ACEPT -unberechtigt/AEPT -unbercksichtigt/AEPT -unberhrt/AEPT -unbeschdigt/AEPT -unbeschftigt/ACEPT -unbeschadet -unbeschleunigt/AEPT -unbescholten/AEPT -unbeschrnkt/ACEPT -unbeschreiblich/AEPT -unbeschrieben/AEPT -unbeschriftet/AEPT -unbeschwert/AEPT -unbeseelt/AEPT -unbesetzt/AEPT -unbesiegbar/ACEPT -unbesiegt/AEPT -unbesoldet/AEPT -unbesorgt/ACEPT -unbesttigt/AEPT -unbestellt/AEPT -unbestimmt/AEPT -unbestraft/AEPT -unbestreitbar/ACEPT -unbestckt/AEPT -unbeteiligt/ACEPT -unbetont/AEPT -unbeugsam/ACEPT -unbewhrt/AEPT -unbewacht/ACEPT -unbewaffnet/AEPT -unbewegt/AEPT -unbeweibt/AEPT -unbeweint/AEPT -unbewohnt/AEPT -unbezhmbar/ACEPT -unbezahlbar/ACEPT -unbezahlt/AEPT -unbezweifelbar/AEPT -unbezwingbar/ACEPT -unbiegsam/ACEPT -unblessiert/AEPT -unbotmig/AEPT -und -undatiert/AEPT -undefiniert/AEPT -undenklich/AEPT -undicht/ACEPT -undifferenziert/ACEPT -undiszipliniert/ACEPT -undokumentiert/AEPT -unduldsam/ACEPT -undurchdringbar/AEPT -undurchdringlich/AEPT -uneinbringlich/AEPT -uneinig/AEPT -unentdeckt/AEPT -unentschieden/ACEPT -unentschlossen/ACEPT -unentspannt/ACEPT -unentwegt/ACEPT -unentwickelt/AEPT -unentwirrbar/AEPT -unerbittlich/AEPT -unerfindlich/AEPT -unerforschlich/AEPT -unerforscht/AEPT -unerfllt/AEPT -unergrndbar/ACEPT -unergrndet/AEPT -unergrndlich/ACEPT -unerhrt/ACEPT -unerkannt/ACEPT -unerlsslich/ACEPT -unerlaubt/ACEPT -unerledigt/AEPT -unermesslich/ACEPT -unermdlich/ACEPT -unerrtert/AEPT -unerreichbar/ACEPT -unerreicht/ACEPT -unersttlich/ACEPT -unerschlossen/ACEPTWX -unerschpflich/ACEPT -unerschrocken/ACEPT -unerschtterlich/ACEPT -unerschttert/AEPT -unersetzlich/ACEPT -unerwhnt/AEPT -unerwartet/ACEPT -unerwidert/AEPT -unerzogen/AEPT -unfair/ACEPT -unfallfrei/AEPT -unfallgefhrdet/AEPT -unfehlbar/ACEPT -unfertig/ACEPT -unflektiert/AEPT -unfrmig/ACEPT -unformatiert/AEPT -unfrankiert/AEPT -unfrei/ACEPT -unfhlbar/ACEPT -ungarisch/AEPT -ungebrdig/ACEPT -ungebeten/ACEPT -ungebraucht/ACEPT -ungebhrlich/ACEPT -ungedeckt/ACEPT -ungefhr/AELPT -ungefhrdet/ACEPT -ungefedert/AEPT -ungehemmt/ACEPT -ungeheuer/ACL -ungeheuerlich/ACEPT -ungehrt/ACEPT -ungehobelt/ACEPT -ungeklrt/ACEPT -ungeknstelt/ACEPT -ungeladen/ACEPT -ungelenk/AEPT -ungelernt/ACEPT -ungenannt/ACEPT -ungenehmigt/AEPT -ungeniert/ACEPT -ungeniebar/ACEPT -ungentzt/AEPT -ungercht/ACEPT -ungeraten/ACEIPT -ungereimt/ACEPT -ungern -ungerhrt/ACEPT -ungesumt/ACEPT -ungeschoren/AEPT -ungestm/AEPT -unglaublich/AEPT -unheilvoll/AEPT -unidirektional/AEPT -uniform/AEPT -uniformiert/AEPT -uninformiert/AEPT -uninteressiert/AEPT -unipolar/AEPT -universal/AEPT -universalistisch/AEPT -universell/ACEPT -universitr/AEPT -unknackbar/AEPT -unkommentiert/AEPT -unkompliziert/ACEPT -unkomprimiert/AEPT -unkontrolliert/AEPT -unkonzentriert/AEPT -unkoordiniert/AEPT -unkultiviert/AEPT -unlngst -unlenksam/AEPT -unleugbar/AEPT -unlieb/ACEPT -unliebsam/AEPT -unlimitiert/AEPT -unliniert/AEPT -unmig/ACEPT -unmanierlich/AEPT -unmarkiert/AEPT -unmaskiert/AEPT -unmbliert/AEPT -unmodifiziert/AEPT -unmotiviert/AEPT -unnachahmlich/AEPT -unnahbar/ACEPT -unntig/ACEPT -unntigerweise -unntz/AEPT -unoptimiert/AEPT -unpsslich/AEPT -unpaarig/AEPT -unpartitioniert/AEPT -unplatziert/AEPT -unprzise/ANRS -unprivilegiert/AEPT -unqualifiziert/ACEPT -unquittiert/AEPT -unrasiert/AEPT -unrecht/AELPT -unreflektiert/AEPT -unretouchiert/AEPT -unrettbar/ACEPT -unrhmlich/ACEPT -uns/R -unsglich/ACEPT -unsachgem/ACEPT -unsachlich/ACEPT -unsagbar/ACEPT -unschtzbar/ACEPT -unschicklich/ACEPT -unschlagbar/ACEPT -unser/AENPT -unsereiner -unsereins -unsererseits -unseresgleichen -unserm -unserseits -unsersgleichen -unserthalben -unsertwegen -unsertwillen -unsicher/ACEPT -unsichtbar/ACEPT -unsittlich/ACEPT -unskaliert/AEPT -unsortiert/AEPT -unspezifiziert/AEPT -unsportlich/ACEPT -unsre/ANRS -unsresgleichen -unsrig/AEPT -unstarr/ACEPT -unstet/AEPT -unsteteste/ANRS -unstillbar/ACEPT -unstreitig/ACEPT -unstrukturiert/AEPT -unsymmetrisch/ACEPT -unttig/ACEPT -untadelhaft/ACEPT -untadlig/ACEPT -unten -unter/ACEPT -unterband/PZ -unterbaut/AEPT -unterbelichten/DIOXY -unterbeschftigt/AEPT -unterbesetzt/AEPT -unterbewertet/AEPT -unterbewusst/ACEPT -unterbieten/DIX -unterbinden/DIX -unterbleiben/DIX -unterblieb/EPZ -unterboten/AEPTWX -unterbrach/PZ -unterbrechen/BDI -unterbrechungsfrei/AEPT -unterbrechungsgesteuert/AEPT -unterbreiten/DIOXY -unterbricht/X -unterbringen/DIX -unterbrochen/AEPTU -unterbunden/AEPT -unterdessen -unterdrcken/DIOXY -unterdurchschnittlich/AEPT -untereinander -unterentwickelt/ACEPT -unterernhrt/ACEPT -unterfngt/X -unterfangen/ADEIPT -unterfertigen/DIOXY -unterfing/PZ -unterfordern/DIOWXY -untergeben/ACEPT -untergebracht/AEPT -untergegangen/AEPT -untergegliedert/AEPT -untergehen/DIX -untergejubelt/AEPT -untergekommen/AEPT -untergekriegt/AEPT -untergeordnet/ACEPT -untergestellt/AEPT -untergetaucht/AEPT -unterging/EPZ -untergliedern/DIOXY -untergrbt/X -untergraben/ADEIPT -untergrndig/AEPT -untergrub/PZ -unterhltst/WX -unterhalb -unterhalten/ADEIPT -unterhaltsam/ACEPT -unterhandeln/DIOXY -unterhebeln/DIXY -unterhielt/EPZ -unterhhlen/DIOXY -unterirdisch/AEPT -unterjochen/DIOXY -unterkellern/DIOXY -unterkriegen/DIXY -unterlsst -unterluft/X -unterlag/PZ -unterlassen/ADEIPT -unterlaufen/ADEIPT -unterlegen/ADEIOPTXY -unterlief/EPZ -unterliegen/DIX -unterlie/EPZ -unterm -untermalen/DIXY -untermauern/DIOXY -unternhme/NZ -unternahm/PZ -unternehmen/DI -unternehmenseigen/AEPT -unternehmerisch/AEPT -unternehmungslustig/AEPT -unternimmt/X -unternommen/AEPT -unterordnen/DIXY -unterprivilegiert/AEPT -unterreden/DIXY -unterrichten/DIOXY -untersagen/DIOXY -unterschtzen/DIOXY -unterscheiden/BDIX -unterschieben/BDIX -unterschied/LP -unterschieden/AEPTWX -unterschiedlich/ACEPT -unterschlgt/X -unterschlagen/ADEIPT -unterschlge/NZ -unterschlug/PZp -unterschreiben/DIX -unterschreiten/DIX -unterschrieben/AEPTWX -unterschritten/AEPTWX -untersetzen/DIOXY -untersetzt/ACEPTX -untersetzte/ACNRSZ -unterst/AEPTW -unterstand/PZ -unterstehen/DIX -unterstellen/DIOXY -unterstreichen/DIX -unterstrichen/AEPTWX -untersttzen/DIOXY -untersuchen/DIOXY -untertgig/AEPT -untertnig/AEPT -untertnigst/W -untertage -untertauchen/DIXY -unterteilen/DIOXY -untervermieten/DIOXY -unterversorgt/AEPT -unterwandern/DIOXY -unterwarf/PZ -unterwegs -unterweisen/DIX -unterwerfen/DI -unterwies/PZ -unterwirft/X -unterworfen/AEPT -unterwrfig/ACEPT -unterzeichnen/DIOXY -unterziehen/DIX -unterzge/NZ -unterzog/PZ -unterzubringen/D -unterzukriegen/D -unterzuordnen/D -unterzutauchen -untrglich/AEPT -unberbietbar/AEPT -unberlegt/AEPT -unbersteigbar/AEPT -unberwindlich/AEPT -unumstlich/AEPT -unumwunden -ununtersucht/AEPT -unverndert/AEPT -unveruerlich/AEPT -unverarbeitet/AEPT -unverbaubar/AEPT -unverbesserlich/AEPT -unverdchtig/ACEPT -unverdient/AEPT -unverdrossen/ACEPT -unvereinbar/AEPT -unverflscht/ACEPT -unvergessen/AEPT -unvergleichlich/AEPT -unverheiratet/AEPT -unverhofft/AEPT -unverhohlen/AEPT -unverhllt/AEPT -unverifiziert/AEPT -unverkauft/AEPT -unverkennbar/AEPT -unverletzt/AEPT -unverlierbar/AEPT -unvermeidlich/ACEPT -unvermeidlicherweise -unvermindert/AEPT -unvermittelt/AEPT -unvermutet/AEPT -unverffentlicht/AEPT -unverrichtet/AEPT -unverrckbar/AEPT -unverschlsselt/AEPT -unverschuldet/AEPT -unversehrt/AEPT -unverstanden/AEPT -unverstellt/AEPT -unversteuert/AEPT -unverstmmelt/AEPT -unverwechselbar/AEPT -unverzeihlich/ACEPT -unverzerrt/AEPT -unverzglich/AEPT -unvollendet/AEPT -unvorbereitet/AEPT -unwegsam/AEPT -unweigerlich/AEPT -unweit -unwert -unwiderstehlich/AEPT -unwiederbringlich/AEPT -unwillig/ACEPT -unwohl -unwrdig/ACEPT -unzhlig/AEPT -unzensiert/AEPT -unzertrennbar/AEPT -unzertrennlich/AEPT -unzchtig/ACEPT -unzuschreiben/D -unzustellbar/AEPT -updatemig -updaten/DIX -upgedatet/AEPT -upzudaten/D -urlteste/ANRS -uralt/AEPT -urauffhren/DIXY -uraufgefhrt/AEPT -urban/AEPT -ureigen/AEPT -urgeschichtlich/AEPT -urheberrechtlich/AEPT -urig/AEPT -urinieren/DIXY -urkundlich/AEPT -urologisch/AEPT -urpltzlich/AEPT -urschlich/AEPT -ursprnglich/ACEPT -urteilen/DIVXY -urteilsfhig/AEPT -urteilt/EGPVX -urtmlich/AEPT -usbekisch/AEPT -usw -usw. -utopisch/AEPT -utopistisch/AEPT -vterlich/ACEPT -vterlicherseits -vag/AEPT -vaginal/AEPT -vakant/AEPT -validieren/BDIOXY -van -variabel/AC -variieren/BDIOXY -vaterlndisch/ACEPT -vaterlos/AEPT -vatikanisch/AEPT -vegetabilisch/AEPT -vegetarisch/AEPT -vegetativ/AEPT -vegetieren/DIXY -vehement/AEPT -veilchenblau/AEPT -venerisch/ACEPT -venezianisch/AEPT -ventilieren/DIOXY -verchtlich/ACEPT -vernderbar/AEPTU -vernderlich/AEPTU -verndern/BDIOXY -verngstigt/ACEPTX -verppeln/DIOXY -verrgern/DIOXY -versteln/DIOXY -verstelt/ACEPTX -veruerlichen/DIOXY -veruern/DIOXY -verabfolgen/DIOXY -verabreden/DIOXY -verabreichen/DIOXY -verabsumen/DIOXY -verabscheuen/DIOXY -verabscheuend/ACEPT -verabscheuenswert/ACEPT -verabschieden/DIOXY -verachten/DIOXY -verallgemeinern/BDIOXY -veralten/DIOXY -verankern/DIOXY -veranlagen/DIOXY -veranlassen/DIOXY -veranschaulichen/DIOXY -veranschlagen/BDIOXY -veranstalten/DIOXY -verantworten/BDIOXY -verantwortlich/ACEPTU -verantwortungsbewusst/ACEPT -verantwortungslos/ACEPT -verantwortungsvoll/ACEPT -verarbeiten/DIOXY -verargen/DIOXY -verarmen/DIOXY -verarmt/ACEPTX -verarmte/ACNRSZ -verarschen/DIOXY -verarzten/DIOXY -verausgaben/DIOXY -verbal/ACEPT -verbannen/DIOXY -verbarrikadieren/DIOXY -verbauen/DIOXY -verbauern/DIOXY -verbessern/BDIOXY -verbesserungswrdig/AEPT -verbeten/AEPT -verbeugen/DIOXY -verbeulen/DIOXY -verbiestern/IOXY -verbildlichen/DIOXY -verbilligen/DIOXY -verbinden/BDIWX -verbindlich/ACEPTU -verbindungslos/AEPT -verbissen/ACEPTWX -verbittern/DIOXY -verbittert/ACEPTX -verblassen/DIOXY -verblasst/ACEPT -verblasste/ACNRSZ -verblendet/ACEPTWX -verblichen/AEPT -verblieben/AEIPTWX -verblden/DIOXY -verblffen/DIOXY -verblffend/ACEPT -verblfft/ACEPTX -verblffte/ACNRSZ -verblhen/DIOXY -verblmt/ACEPT -verbluten/DIOXY -verbogen/ACEPTWX -verbohrt/ACEPTX -verborgen/ACEPT -verboten/AEPTWX -verbrachte/ANRSZ -verbrannt/AEPT -verbrannte/ANRSZ -verbrauchen/DIOXY -verbrauchsbedingt/AEPT -verbrauchsunabhngig/AEPT -verbrecherisch/ACEPT -verbreiten/DIOXY -verbreitern/DIOXY -verbreitet/ACEPTWX -verbriefen/DIOXY -verbrochen/AEPT -verbrdern/DIOXY -verbrhen/DIOXY -verbnden/DIOXY -verbrgen/DIOXY -verben/DIOXY -verbuchen/DIOXY -verbummeln/DIOXY -verbunden/AEPTU -verchromt/AEPT -verdchtig/ACEPTZ -verdchtigen/DIOWXY -verdacht/AEPT -verdammen/DIOXY -verdammenswert/ACEPT -verdammt/ACEPTX -verdammte/ACNRSZ -verdampfen/DIOXY -verdanken/DIOXY -verdarb/PZ -verdaten/DIOXY -verdattern/DIOXY -verdauen/DIOXY -verdaulich/ACEPTU -verdecken/DIOWXY -verderben/DIO -verderblich/ACEPTU -verdeutlichen/DIOXY -verdeutschen/DIOXY -verdichten/DIOXY -verdicken/DIOXY -verdienen/DIOXY -verdienstvoll/ACEPT -verdientermaen -verdienterweise -verdingen/DIOXY -verdirbt/X -verdolmetschen/DIOXY -verdonnern/DIOXY -verdorben/ACEPTU -verdorren/DIOXY -verdrngen/DIOXY -verdrahten/DIOXY -verdreckt/AEPT -verdrehen/DIOWXY -verdreifachen/DIOXY -verdrieen/DIOX -verdrielich/ACEPT -verdriet/AEPT -verdrillen/DIOXY -verdroschen/AEPTW -verdrossen/ACEPTWX -verdrcken/DIOXY -verdrucken/DIOXY -verdnnen/DIOXY -verdnnisieren/DIOXY -verdnnt/ACEPTX -verdnnte/ACNRSZ -verdstern/DIOXY -verduften/DIOXY -verdummen/DIOXY -verdunkeln/DIOXY -verdunsten/DIOXY -verdursten/DIOXY -verdutzen/DIOXY -verebben/DIOXY -veredeln/DIOXY -verehelichen/DIOXY -verehren/DIOXY -verehrenswert/ACEPT -verehrlicht/AEPT -verehrungswrdig/ACEPT -vereidigen/DIOXY -vereinbare/ANRSU -vereinbaren/DIOWXY -vereinbarungsgem/AEPT -vereinen/BDIOXY -vereinfachen/DIOXY -vereinheitlichen/DIOXY -vereinigen/DIOXY -vereinnahmen/DIOXY -vereinsamen/DIOXY -vereinsamt/ACEPTX -vereinsamte/ACNRSZ -vereinzeln/DIOXY -vereisen/DIOXY -vereiteln/DIOXY -vereitern/DIOXY -verekeln/DIOXY -verelenden/DIOXY -verenden/DIOXY -verengen/DIOXY -verengern/DIOXY -vererben/DILOXY -verewigen/DIOXY -verfllt/X -verflscht/ACEPTX -verfnglich/ACEPTU -verfrbt/ACEPTX -verfahren/ADEIPT -verfahrenstechnisch/AEPT -verfallen/ADEIPT -verfangen/ADEIPT -verfassen/DIOXY -verfassungsndernd/AEPT -verfassungsmig/AEPT -verfassungsrechtlich/AEPT -verfassungswidrig/ACEPT -verfaulen/DIOXY -verfault/ACEPTX -verfaulte/ACNRSZ -verfehlen/DIOWXY -verfeinden/DIOXY -verfeinern/DIOXY -verfemen/DIOXY -verfertigen/DIOXY -verfestigen/DIOXY -verfeuern/DIOXY -verfilmen/BDIOXY -verfilzen/DIOXY -verfinstern/DIOXY -verflachen/DIOXY -verflechten/DI -verflixt/ACEPT -verflochten/AEPTWX -verflogen/AEPTWX -verflossen/AEPTWX -verflchtigen/DIOXY -verflssigen/BDIOXY -verflucht/ACEPTX -verfochten/AEPTWX -verfolgen/DIOXY -verformen/BDIOXY -verfrachten/DIOXY -verfremden/DIOXY -verfressen/AEPT -verfroren/AEPTWX -verfrht/AEPT -verfgbar/AEPTU -verfgen/BDIOXY -verfhren/BDIOXY -verfhrerisch/ACEPT -verfllen/BDIOWXY -verfnffachen/DIOXY -verfttern/DIOXY -vergllen/DIOXY -vergnglich/ACEPTU -vergaffen/DIOXY -vergammeln/DIOXY -vergangen/AEPT -vergangenheitsbezogen/AEPT -verga/PZ -vergasen/DIOXY -vergeben/ABDEIPST -vergeblich/ACEPT -vergegenwrtigen/DIOXY -vergeistigen/DIOXY -vergessen/ADEIPT -vergessene/ANRSU -vergesslich/ACEPTU -vergeuden/DIOXY -vergewaltigen/DIOXY -vergewissern/DIXY -vergiften/DIOXY -vergilbt/ACEPT -vergisst/W -vergittern/DIOXY -vergl -vergl. -verglasen/DIOXY -vergleichbar/AEPTU -vergleichen/BDIX -vergleichsweise -verglichen/AEPTWX -verglommen/AEPTW -verglhen/DIOWXY -vergngen/DIOXY -vergnglich/ACEPT -vergngt/ACEPTX -vergngte/ACNRSZ -vergngungsschtig/ACEPT -vergnnen/DIOXY -vergttern/DIOXY -vergolden/DIOXY -vergolten/AEPT -vergossen/AEPTWX -vergrmen/DIOXY -vergraben/ADEIPT -vergreisen/DIOXY -vergriffen/AEPTWX -vergrern/DIOXY -vergten/BDIOXY -verhltnismig/ACEPTU -verhltniswidrig/AEPT -verhngen/DIOXY -verhngnisvoll/ACEPT -verhrmt/AEPT -verhrten/DIOXY -verhtschelt/ACEPTX -verhaften/DIOXY -verhaken/DIOXY -verhallen/DIOXY -verhalten/ACDEIPTW -verhandeln/BDIOXY -verhangen/AEPT -verharmlosen/DIOXY -verharren/DIOXY -verhaspeln/DIOXY -verhasst/ACEPT -verhauen/ADEIPTWXY -verheddern/DIOXY -verheeren/DIOXY -verheerend/ACEPT -verhehlen/DIOXY -verheilen/DIOXY -verheimlichen/DIOXY -verheiraten/DIOXY -verheien/ADEIPTX -verheiungsvoll/ACEPT -verheizen/DIOXY -verherrlichen/DIOXY -verhexen/DIOXY -verhimmeln/DIOXY -verhindern/DIOXY -verhhnen/DIOXY -verhkern/DIOXY -verhren/DIOWXY -verholfen/AEPT -verhllen/DIOXY -verhten/BDIOXY -verhundertfachen/DIOXY -verhungern/DIOXY -verhunzen/DIOXY -verifizieren/BDIOXY -verinnerlichen/DIOXY -verirren/DIOXY -veritabel/A -verjhren/DIOXY -verjagen/DIOXY -verjngen/DIOXY -verjubeln/DIOXY -verkabelt/AEPT -verkalken/DIOXY -verkannt/AEPTZ -verkantet/AEPT -verkappen/DIOXY -verkapseln/DIOXY -verkaufen/DIOWXY -verkaufsfhig/AEPT -verkaufsfrdernd/AEPT -verkaufsoffen/AEPT -verkaufstechnisch/AEPT -verkaufswillig/AEPT -verkehrsgnstig -verkehrspolitisch/AEPT -verkehrsreich/ACEPT -verkehrsschwach/AEPT -verkehrssicher/AEPT -verkehrsstark/AEPT -verkehrstechnisch/AEPT -verkehrt/ACEPTWX -verkeilen/DIOXY -verketten/BDIOXY -verketzern/DIOXY -verkippt -verkitten/DIOXY -verklren/DIOWXY -verklagen/DIOWXY -verklappen/DIOWXY -verklausulieren/DIOXY -verkleben/DIOWXY -verkleiden/DIOXY -verkleinern/DIOXY -verklemmen/DIOWXY -verklickert/AEPT -verklungen/AEPT -verknallen/DIOWXY -verknappen/DIOXY -verkniffen/AEPTWX -verknchern/DIOXY -verknoten/DIOXY -verknpfen/BDIOWXY -verkrpern/DIOXY -verkstigen/DIOXY -verkohlen/DIOXY -verkommen/ADEIPTWX -verkoppeln/DIOXY -verkorkst/AEPT -verkrachen/DIOXY -verkraften/DIOXY -verkrampfen/DIOXY -verkratzen/BDIOWXY -verkrochen/AEPTWX -verkrmeln/DIOXY -verkrmmen/DIOXY -verkrppeln/DIOXY -verkrusten/DIOXY -verkmmern/DIOXY -verknden/DIOXY -verkndigen/DIOXY -verkrzen/BDIOXY -verkupfern/DIOXY -verkuppeln/DIOXY -verlngern/BDIOXY -verlsslich/ACEPTU -verlstern/DIOXY -verlachen/DIOXY -verladen/ADEIPT -verlagern/DIOXY -verlagsblich/AEPT -verlangen/DIOXY -verlangsamen/DIOXY -verlassen/ADEIPTW -verlaufen/ADEIPTW -verlaust/AEPT -verlautbaren/DIOXY -verlauten/DIOXY -verleben/DIOXY -verlegen/ABDEIOPTWXY -verleiben/IWXY -verleiden/DIOXY -verleimen/DIOXY -verleiten/DIOXY -verleitend/ACEPT -verlernen/DIOXY -verlesen/ADEIPT -verletzbar/ACEPT -verletzen/BDIOXY -verletzend/ACEPT -verletzlich/ACEPTU -verleugnen/DIOXY -verleumden/DIOXY -verleumderisch/AEPT -verlieben/DIOXY -verliehen/AEPTWX -verlieren/DIX -verlinkt/AEPT -verlischt -verlschen/DIOXY -verlten/DIOXY -verloben/DIOXY -verlocken/DIOXY -verlockend/ACEPT -verlogen/ACEPT -verloren/AEPTWX -verlosen/DIOXY -verlottern/DIOXY -verlustbehaftet/AEPT -verlustbringend/AEPT -verlustfrei/AEPT -verlustmachend/AEPT -verlustreich/AEPT -vermhlen/DIOXY -vermachen/DIOWXY -vermarkten/BDIOXY -vermasseln/DIOXY -vermauern/DIOXY -vermehren/DIOXY -vermeidbar/AEPTU -vermeiden/BDIX -vermeidlich/AEPTU -vermeinen/DIOXY -vermeint/AELPTX -vermelden/DIOXY -vermengen/DIOXY -vermenschlichen/DIOXY -vermerken/DIOWXY -vermessen/ADEIPT -vermieden/AEPTWX -vermieten/BDIOXY -vermindern/DIOXY -vermint/AEPT -vermischen/DIOXY -vermissen/DIOWXY -vermitteln/BDIOXY -vermgend/ACEPTU -vermgensrechtlich/AEPT -vermgenswirksam/AEPT -vermochten/IWX -vermodern/ACDEIOPTXY -vermummen/DIOWXY -vermuten/DIOXY -vermutlich/AEPT -vernhen/DIOXY -vernachlssigen/BDIOXY -vernageln/DIOXY -vernarben/DIOXY -vernarren/DIOXY -vernaschen/DIOXY -vernebeln/DIOXY -vernehmen/BDI -vernehmlich/AEPT -verneigen/DIOXY -verneinen/DIOXY -vernetzen/BDIOXY -vernichten/BDIOXY -vernickeln/DIOXY -verniedlichen/DIOXY -vernommen/AEPT -vernnftig/ACEPTU -vernnftigerweise -vernunftbegrndet/AEPT -vernunftbezogen/AEPT -vernunftlos/AEPT -vernunftmig/AEPT -vernunftwidrig/AEPT -verden/DIOXY -verffentlichen/DIOXY -verordnen/DIOXY -verpachten/DIOXY -verpacken/DIOXY -verpassen/DIOXY -verpatzen/DIOXY -verpesten/DIOXY -verpetzen/DIOXY -verpfnden/DIOXY -verpflanzen/DIOXY -verpflegen/DIOXY -verpflichten/DIOXY -verpfuschen/DIOXY -verplappern/DIOXY -verplaudern/DIOXY -verplempern/DIOXY -verpnt/AEPT -verpolsicher/AEPT -verpolt/AEPT -verpolungssicher/AEPT -verprassen/DIOXY -verprgeln/DIOXY -verpuffen/DIOXY -verpulvern/DIOXY -verpumpen/DIOWXY -verpuppen/DIOXY -verpusten/DIOXY -verputzen/DIOXY -verqualmen/DIOXY -verquicken/DIOXY -verquollen/AEPT -verrterisch/AEPT -verruchern/DIOXY -verrammeln/DIOXY -verramschen/DIOXY -verrannt/AEPTWZ -verraten/ADEIPT -verrauchen/DIOXY -verrechnen/DIOXY -verrecken/DIOXY -verregnen/DIOXY -verreisen/DIOXY -verrenken/DIOXY -verrichten/DIOXY -verriegeln/DIOXY -verringern/DIOXY -verrissen/AEPTWX -verrohen/DIOXY -verronnen/AEPT -verrosten/DIOXY -verrotten/DIOXY -verrcken/DIOXY -verrucht/AEPT -verrufen/AEPT -verrutschen/DIOWXY -versumen/DIOXY -versagen/DIOWXY -versalzen/ADEIOPTXY -versammeln/DIOXY -versandbereit/AEPT -versanden/DIOXY -versandfertig/AEPT -versandt/AEPT -versandte/ANRSZ -versauen/DIOXY -versauern/DIOXY -verschmt/AEPTU -verschrfen/DIOXY -verschtzen/IXY -verschachern/DIOXY -verschachteln/BDIOXY -verschaffen/DIOWXY -verschalen/DIOXY -verschandeln/DIOXY -verschanzen/DIOXY -verscharren/DIOXY -verschaukeln/IOXY -verschenken/DIOXY -verscherbeln/DIOXY -verscherzen/DIOXY -verscheuchen/DIOXY -verscheuern/DIOXY -verschicken/DIOXY -verschieben/BDIX -verschieden/ACELPTWX -verschiedenartig/ACEPT -verschiedenerlei -verschiedenfarbig/AEPT -verschiffen/DIOXY -verschimmeln/DIOXY -verschlafen/ADEIPT -verschlagen/ADEIPTW -verschlammen/DIOXY -verschlampen/DIOXY -verschlechtern/DIOXY -verschleiern/DIOXY -verschleifen/DIOXY -verschleien/DIOXY -verschleppen/DIOXY -verschleudern/DIOXY -verschlieen/BDIX -verschlimmern/DIOXY -verschlossen/AEPTWX -verschlsseln/DIOXY -verschlucken/DIOXY -verschlungen/AEPT -verschmhen/DIOXY -verschmachten/DIOXY -verschmerzen/BDIOXY -verschmieren/DIOXY -verschmitzt/AEPT -verschmolzen/AEPTWX -verschmutzen/DIOXY -verschnaufen/DIOXY -verschneit/AEPT -verschnitten/AEPTWX -verschnrkelt/AEPT -verschnren/DIOXY -verschnupfen/DIOXY -verschnern/DIOXY -verschoben/AEPTWX -verschollen/AEPT -verschonen/DIOXY -verschossen/AEPTWX -verschrnken/DIOXY -verschrauben/DIOXY -verschrecken/DIOXY -verschrieben/AEPTWX -verschrieen/AEPTWX -verschroben/AEPT -verschrotten/DIOXY -verschrumpeln/DIOWXY -verschchtern/DIOXY -verschtten/DIOXY -verschulden/DIOXY -verschwgert/AEPT -verschweien/IOWY -verschwenden/DIOXY -verschwenderisch/AEPT -verschwiegen/AEPTWX -verschwistert/AEPT -verschwitzen/DIOXY -verschwrerisch/AEPT -verschwollen/AEPT -verschwommen/AEPT -verschworen/AEPTWX -verschwunden/AEPT -versehen/ADEILPT -versehren/DIOXY -verselbstndigen/IOXY -verselbststndigen/IOXY -versenden/DIOXY -versengen/DIOXY -versenken/DIOXY -versessen/AEPT -versetzen/DIOXY -versetzungswirksam/AEPT -verseuchen/DIOXY -versichern/DIOXY -versicherungsmathematisch/AEPT -versicherungspflichtig/AEPT -versicherungstechnisch/AEPT -versickert/AEPT -versiegeln/DIOXY -versiegen/DIOXY -versieht/X -versiert/AEPT -versilbern/DIOXY -versinnbildlichen/DIOXY -versklaven/DIOXY -versnobt/AEPT -vershnbar/AEPTU -vershnen/BDIOXY -vershnlich/AEPTU -versoffen/AEPTWX -versonnen/AEPT -versorgen/DIOXY -verspten/DIOXY -verspannen/DIOWXY -verspeisen/DIOXY -verspekulieren/DIOXY -versperren/DIOWXY -verspielen/DIOXY -verspinnen/BDIX -versponnen/AEPT -verspotten/DIOXY -versprengen/DIOXY -verspritzen/DIOXY -versprochen/AEPT -versprhen/DIOXY -verspren/DIOXY -verstdtert/AEPT -verstndig/ACEPTZ -verstndigen/DIOWXY -verstndlich/ACEPTU -verstndlicherweise/U -verstndnisinnig/AEPT -verstndnislos/AEPT -verstndnisvoll/ACEPT -verstrken/DIOXY -verstaatlichen/DIOXY -verstandene/ANRSU -verstauben/DIOXY -verstauchen/DIOXY -verstauen/DIOXY -versteckt/ACEPTX -versteifen/DIOXY -versteigern/DIOXY -versteinern/DIOXY -verstellen/BDIOWXY -versteuern/BDIOXY -verstiegen/AEPTWX -verstimmen/DIOXY -verstren/DIOXY -verstockt/AEPT -verstohlen/AEPT -verstopfen/DIOXY -verstorben/AEPT -verstoen/ADEIPTW -verstreben/DIOXY -verstreuen/DIOXY -verstrichen/AEPTWX -verstrickt/ACEPTX -verstmmeln/DIOXY -verstummen/DIOXY -versndigen/DIOXY -versen/DIOXY -versuchen/DIOWXY -versuchsweise -versumpfen/DIOXY -versunken/AEPT -versus -vertagen/DIOXY -vertauschen/BDIOXY -verteidigen/DIOXY -verteilen/BDIOWXY -verteuern/DIOXY -verteufeln/DIOXY -vertiefen/DIOXY -vertikal/AEPT -vertilgen/DIOXY -vertippen/DIOXY -vertonen/DIOXY -vertrglich/AEPTU -vertrgt/X -vertrumen/DIOXY -vertrackt/AEPT -vertraglich/AEPT -vertragsbrchig/AEPT -vertragschlieend/AEPT -vertragsgem/AEPT -vertragslos/AEPT -vertragsmig/AEPT -vertragstreu/AEPT -vertragswidrig/AEPT -vertrauenerweckend/AEPT -vertrauensbildend/AEPT -vertrauensselig/ACEPT -vertrauensvoll/AEPT -vertrauenswrdig/AEPT -vertrauert/AEPT -vertraut/ACEPTWX -vertretbar/AEPTU -vertreten/ABDEIPT -vertretungsberechtigt/AEPT -vertrieben/AEPTWX -vertrdeln/DIOXY -vertrsten/DIOXY -vertrocknen/DIOXY -vertrotteln/DIXY -vertrunken/AEPT -vertuschen/DIOXY -verbeln/DIOXY -verben/DIOXY -verunglimpfen/DIOXY -verunglcken/DIOXY -verunreinigen/DIOXY -verunsichern/DIOXY -verunstalten/DIOXY -veruntreuen/DIOXY -verursachen/DIOXY -verurteilen/DIOXY -vervielfltigen/DIOXY -vervielfachen/IOXY -vervierfachen/DIOXY -vervollkommnen/DIOXY -vervollstndigen/DIOXY -verwssern/DIOXY -verwachsen/ADEIPT -verwackelt/AEPT -verwahren/DIOXY -verwahrlosen/DIOXY -verwaisen/DIOXY -verwalten/DIOXY -verwaltungsintern/AEPT -verwaltungstechnisch/AEPT -verwandeln/DIOXY -verwandt/ACEPT -verwandtschaftlich/AEPT -verwarnen/DIOXY -verwaschen/AEPT -verwechseln/DIOXY -verwegen/ACEPT -verwehen/DIOWXY -verwehren/DIOXY -verweichlichen/DIOXY -verweigern/DIOXY -verweilen/DIOXY -verweint/AEPT -verwelken/DIOXY -verweltlichen/DIOXY -verwenden/BDIOXY -verwendungsfhig/AEPT -verwerflich/ACEPT -verwertbar/AEPTU -verwerten/BDIOXY -verwesen/DIOXY -verweslich/AEPT -verwetten/DIOXY -verwickeln/DIOXY -verwiesen/AEPTWX -verwildern/DIOXY -verwinkelt/AEPT -verwirken/DIOXY -verwirklichen/DIOXY -verwirren/DIOXY -verwirtschaften/DIOXY -verwischen/DIOXY -verwittern/DIOXY -verwitwen/DIOXY -verwhnen/DIOXY -verwhnt/ACEPTX -verwhnte/ACNRSZ -verwoben/AEPT -verworfen/AEPT -verworren/AEPT -verwnschen/DIOXY -verwsten/DIOXY -verwundbar/AEPTU -verwunden/BDIOXY -verwundern/DIOXY -verwurstet/AEPT -verwurzeln/DIOXY -verzhlen/DIOWXY -verzrteln/DIOXY -verzagen/DIOXY -verzahnen/DIOWXY -verzanken/DIOWXY -verzapfen/DIOWXY -verzaubern/DIOWXY -verzehnfachen/DIOXY -verzehren/BDIOWXY -verzeichnen/DIOXY -verzeih/ELPZ -verzeihen/DIWX -verzerren/DIOWXY -verzetteln/DIOWXY -verzichtbar/AEPTU -verzichten/BDIOXY -verziehen/ADEIPTWX -verzieren/DIOWXY -verzigfachen/DIOXY -verzinken/IOXY -verzinnen/IOXY -verzinsen/DIOXY -verzinslich/AEPT -verzgern/DIOWXY -verzogen/AEPTWX -verzollen/BDIOXY -verzcken/DIOWXY -verzuckern/DIOXY -verzweifeln/DIOWXY -verzweigen/DIOXY -verzwickt/AEPT -vespern/DIXY -vgl -vgl. -via -vibrieren/DIXY -viehisch/AEPT -viel/AEPT -vieladerig/AEPT -vieldeutig/AEPT -vielerlei -vielerorts -vielfltig/ACEPT -vielfach/AEPT -vielfarbig/AEPT -vielgestaltig/AEPT -vieljhrig/AEPT -vielleicht -vielmalig/AEPT -vielmals -vielmehr -vielschichtig/AEPT -vielseitig/ACEPT -vielsilbig/AEPT -vielstimmig/AEPT -vielzellig/AEPT -vieraderig/AEPT -vierbeinig/AEPT -vierbltterig/AEPT -vierdimensional/AEPT -viereckig/AEPT -viereinhalb -vierfach/AEPT -vierfarbig/AEPT -vierfig/AEPT -vierhndig/AEPT -vierhundert -vierjhrig/AEPT -vierkantig/AEPT -vierkpfig/AEPT -viermal -viermalig/AEPT -viermonatig/AEPT -viermotorig/AEPT -vierpolig/AEPT -vierrderig/AEPT -vierschrtig/AEPT -vierseitig/AEPT -viersilbig/AEPT -vierspnnig/AEPT -vierstellig/AEPT -vierstckig/AEPT -vierstndig/AEPT -viert/AEPTW -viertgig/AEPT -viertausend -vierteilen/DIXY -viertel -vierteljhrig/AEPT -vierteljhrlich/AEPT -viertelstndlich/AEPT -vierten/SW -vierundachtzig -vierundachtzigste/ANRS -vierunddreiig -vierunddreiigste/ANRS -vierundfnfzig -vierundfnfzigste/ANRS -vierundneunzig -vierundneunzigste/ANRS -vierundsechzig -vierundsechzigste/ANRS -vierundsiebzig -vierundsiebzigste/ANRS -vierundvierzig -vierundvierzigste/ANRS -vierundzwanzig -vierwchig/AEPT -vierzehn -vierzehntgig/AEPT -vierzehnte/ANRS -vierzig/R -vierzigjhrig/AEPT -vierzigste/ANRS -violett/AEPT -virtuell/AEPT -virtuos/ACEPTU -virulent/ACEPT -visieren/DIOXY -visitieren/DIOXY -visualisieren/DIOXY -visuell/AEPT -vital/ACEPT -vitaminarm/AEPT -vitaminhaltig/AEPT -vitaminisieren/DIOXY -vitaminreich/ACEPT -vivendi -vgeln/DIWXY -vgelt/EGPWX -vlkerrechtlich/AEPT -vlkerrechtswidrig/AEPT -vllig/AEPT -vogelhnlich/AEPT -voil -volatil/ACEPT -volkreich/AEPT -volkstmlich/AEPT -volksverdummte/ANRS -volkswirtschaftlich/AEPT -voll/ACEPT -vollamtlich/AEPT -vollauf -vollautomatisch/AEPT -vollbeschftigt/AEPT -vollbesetzt/AEPT -vollbltig/AEPT -vollbracht/AEPT -vollbrachte/ANRSZ -vollbringen/DIX -vollbusig/AEPT -vollenden/DIOXY -vollends -vollfinanziert/AEPT -vollfhren/DIOXY -vollgefllt/AEPT -vollgepfropft/AEPT -vollgeschrieben/AEPT -vollgetankt/AEPT -vollgltig/AEPT -volljhrig/AEPT -vollkommen/AEPTU -vollmundig/AEPT -vollschlank/AEPT -vollstndig/AEPTU -vollstrecken/BDIOXY -vollsynthetisch/AEPT -vollwertig/AEPT -vollzhlig/AEPT -vollziehen/DIX -vollzogen/AEPTWX -vom -von -voneinander -vonnten -vonseiten -vonstatten -vor/N -vorab -vorahnen/DIXY -voran -voranbringen/DIX -vorangebracht -vorangegangen/AEPT -vorangehen/DIX -vorangekommen/AEPT -vorangestellt/AEPT -vorangetrieben -vorangewhlt/AEPT -vorankommen/DIX -voranschreiten/DIX -voranstellen/DIXY -vorantreiben/DIX -vorantrieb/EPZ -voranzubringen -voranzugehen -voranzukommen -voranzutreiben/D -vorarbeiten/DIXY -voraus -vorausbedingt/AEPT -vorausberechenbar/AEPT -vorausberechnen/DIOXY -vorausbestellen/DIOXY -vorausbestimmen/BDIOXY -vorausbezahlen/DIOXY -vorausblicken/DIXY -vorausdatieren/DIOXY -vorausdenken/DIX -vorauseilen/DIXY -vorausgeahnt/AEPT -vorausgedacht/AEPT -vorausgeeilt/AEPT -vorausgegangen/AEPT -vorausgehen/DIX -vorausgesagt/AEPT -vorausgeschtzt/AEPT -vorausgeschickt/AEPT -vorausgesehen/AEPT -vorausgesetzt/AEPT -vorausgewhlt/AEPT -vorausging/PZ -vorausplanen/DIXY -voraussagen/BDIXY -vorausschauen/DIXY -voraussehen/BDI -voraussetzen/DIXY -voraussichtlich/AEPT -vorauszuahnen -vorauszuberechnen -vorauszusagen/D -vorauszusehen/D -vorbedruckt/AEPT -vorbehltst/WX -vorbehalten/AEPT -vorbehaltlich/AEPT -vorbehaltlos/AEPT -vorbei -vorbeifhrt/X -vorbeifahren/DI -vorbeiflimmernd/AEPT -vorbeifhren/DIXY -vorbeigefahren/AEPT -vorbeigegangen/AEPT -vorbeigehen/DIX -vorbeigekommen -vorbeigeredet -vorbeigeschossen/AEPT -vorbeiging/EPZ -vorbeihuschen/DIXY -vorbeikommen/DIX -vorbeilassen/DI -vorbeileben/DIXY -vorbeimarschieren/IXY -vorbeireden/DIXY -vorbeischicken/DIXY -vorbeischieen/DIX -vorbeiziehen/DIX -vorbeizog/PZ -vorbeizukommen -vorbeizumanvrieren -vorbeizuziehen -vorbelastet/AEPT -vorbelegt/AEPT -vorbenannt/AEPT -vorbereiten/DIOXY -vorberuflich/AEPT -vorbesetzt/AEPT -vorbestellen/DIOXY -vorbestimmt/AEPT -vorbestraft/AEPT -vorbeugen/DIXY -vorbildlich/AEPT -vorbringen/DIX -vorbuchstabieren/DIOXY -vordatieren/DIOXY -vordefinieren/DIOXY -vordem -vordere/ANRS -vordergrndig/AEPT -vorderste/ANRS -vordrngen/DIXY -vordrang/PZp -vordringen/DIX -vordringlich/ACEPT -vordrcken/DIXY -vorehelich/AEPT -voreilen/DIXY -voreilig/AEPT -voreinander -voreingenommen/AEPTU -voreingestellt/AEPT -voreinstellen/DIXY -vorenthltst/WX -vorenthalten/ADEIPT -vorentscheiden/DIX -vorerst -vorerwhnt/AEPT -vorexerzieren/DIOXY -vorfabrizieren/DIOXY -vorfahren/DI -vorfinden/DIX -vorformatieren/DIOXY -vorfhren/DIXY -vorgab/PZ -vorgaukeln/DIXY -vorgeahnt/AEPT -vorgearbeitet -vorgeben/BDI -vorgebetet/AEPT -vorgebeugt/AEPT -vorgebildet/AEPT -vorgeblich/AEPT -vorgebracht/AEPT -vorgedrngt/AEPT -vorgedruckt/AEPT -vorgedrungen/AEPT -vorgefahren/AEPT -vorgefallen/AEPT -vorgefasst/AEPT -vorgefertigt/AEPT -vorgeformt/AEPT -vorgefhrt/AEPT -vorgefunden/AEPT -vorgegangen -vorgegaukelt/AEPT -vorgegeben/AEPT -vorgegriffen/AEPT -vorgehabt/AEPT -vorgehalten/AEPT -vorgehen/DIX -vorgeherrscht -vorgekaut/AEPT -vorgekommen/AEPT -vorgelagert/AEPT -vorgelassen/AEPT -vorgelegen/AEOPT -vorgelegt/AEPT -vorgelesen/AEPT -vorgelogen/AEPT -vorgemacht/AEPT -vorgemerkt/AEPT -vorgenannt/AEPT -vorgenommen/AEPT -vorgerechnet/AEPT -vorgeredet/AEPT -vorgerichtet -vorgerckt/AEPT -vorgesagt/AEPT -vorgeschlagen/AEPT -vorgeschoben/AEPT -vorgeschossen/AEPT -vorgeschrieben/AEPT -vorgeschtzt/AEPT -vorgeschwindelt/AEPT -vorgesehen/AEPT -vorgesetzt/AEPT -vorgesorgt/AEPT -vorgespannt/AEPT -vorgespiegelt/AEPT -vorgespielt/AEPT -vorgestanden -vorgesteckt/AEPT -vorgestellt/AEPT -vorgestern -vorgestoen/AEPT -vorgestreckt/AEPT -vorgestrig/AEPT -vorgestrmt -vorgesungen/AEPT -vorgetuscht/AEPT -vorgetanzt/AEPT -vorgetragen/AEPT -vorgetreten/AEPT -vorgewhlt/AEPT -vorgewrmt/AEPT -vorgewiesen/AEPT -vorgeworfen/AEPT -vorgezeichnet/AEPT -vorgezeigt/AEPT -vorgezogen/AEPT -vorgibt/X -vorging/EPZ -vorgreifen/DIX -vorhltst/WX -vorhaben/I -vorhalten/DI -vorhanden/AEPT -vorhat/X -vorher -vorherbestellen/DIOXY -vorherbestimmen/DIOXY -vorhergegangen/AEPT -vorhergehen/DIX -vorhergesagt/AEPT -vorhergesehen/AEPTU -vorherig/AEPT -vorherrschen/DIXY -vorhersagen/BDIXY -vorhersehbar/AEPTU -vorhersehen/BDI -vorherzusehen/D -vorhin -vorholen/DIXY -vorig/AEPT -vorindustriell/AEPT -vorinitialisieren/DIOXY -vorinstalliert/AEPT -vorjhrig/AEPT -vorkauen/DIXY -vorknpfen/DIXY -vorkommen/DIX -vorkonfigurieren/DIOXY -vorl -vorl. -vorldt/X -vorlufig/AEPT -vorladen/DI -vorlag/PZ -vorlas/PZq -vorlassen/DI -vorlaut/AEPT -vorlegen/DIXY -vorlesen/DI -vorlesungsfrei/AEPT -vorletzte/ANRS -vorlieb -vorliegen/DIX -vorlgen/DIX -vorm -vorm. -vormachen/DIXY -vormalig/AEPT -vormals -vormenschlich/AEPT -vormerken/DIXY -vormittglich/AEPT -vormodern/AEPT -vormontieren/DIOXY -vormundschaftlich/AEPT -vorn/E -vornahm/PZ -vornehm/ACELPT -vorneweg -vornherein -vornimmt/X -vornweg -vorolympisch/AEPT -vorperforiert/AEPT -vorprellen/DIXY -vorprogrammiert/AEPT -vorrtig/AEPT -vorrangig/AEPT -vorrechnen/DIXY -vorrechtlich/AEPT -vorrichten/DIXY -vorrcken/DIXY -vorstzlich/AEPT -vorsah/PZ -vorschalten/DIXY -vorschieben/DIX -vorschieen/DIX -vorschlgt/X -vorschlagen/DI -vorschlug/PZ -vorschnell/AEPT -vorschreiben/DIX -vorschriftsmig/AEPTU -vorschriftswidrig/AEPT -vorschtzen/DIXY -vorschweben/DIXY -vorschwindeln/DIXY -vorsehen/DI -vorsetzen/DIXY -vorsichtig/ACEPTU -vorsichtshalber -vorsieht/X -vorsingen/DIX -vorsintflutlich/AEPT -vorsitzen/DIX -vorsorgen/DIXY -vorsorglich/AEPT -vorspalten/DIXY -vorspannen/DIXY -vorspiegeln/DIXY -vorspielen/DIX -vorsprechen/DI -vorspringen/DIX -vorstdtisch/AEPT -vorstehen/DIX -vorstellbar/AEPTU -vorstellen/BDIXY -vorstoen/DI -vorstrmen/DIXY -vortuschen/DIXY -vorteilhaft/ACEPTU -vortippen/DIXY -vortrgt/X -vortragen/DI -vortrefflich/AEPT -vortreten/DI -vorber -vorbergehen/DIX -vorberziehen/DIX -vorurteilsfrei/AEPT -vorurteilslos/AEPT -vorverkauft/AEPT -vorverlegen/DIOXY -vorverstrken/DIOXY -vorvorgestern -vorvorig/AEPT -vorwhlen/DIXY -vorwrmen/DIXY -vorwrts -vorwarf/PZ -vorweg -vorweggenommen/AEPT -vorwegnahm/PZ -vorwegzunehmen/D -vorweisen/DIX -vorwerfen/DI -vorwiegend -vorwirft/X -vorwurfsvoll/AEPT -vorzeichenrichtig/AEPT -vorzeigen/DIXY -vorzeiten -vorzeitig/AEPT -vorziehen/DIX -vorzglich/AEPT -vorzubereiten/D -vorzubesetzen -vorzubeten/D -vorzubeugen/D -vorzubringen/D -vorzudringen -vorzufinden/D -vorzufhren/D -vorzugeben/D -vorzugehen -vorzugsweise -vorzulegen/D -vorzulesen/D -vorzuliegen/D -vorzumerken/D -vorzunehmen/D -vorzuschieben/D -vorzuschlagen/D -vorzuschreiben/D -vorzusehen/D -vorzusorgen -vorzusprechen/D -vorzustellen/D -vorzustoen -vorzutuschen/D -vorzutragen/D -vorzuweisen/D -vorzuwerfen/D -vorzuzeigen/D -vorzuziehen/D -votieren/DIWXY -vs -vs. -vulgr/ACEPT -vulkanisch/AEPT -wchst/V -wgbar/ACEPTU -wgen/BDIX -whlbar/ACEPT -whlen/BDIXY -whlerisch/ACEPT -whlfhig/AEPT -whnen/DIXY -whren/DGIXY -whrenddessen -whrungspolitisch/AEPT -wlzen/DIXY -wren/IX -wrmebestndig/ACEPT -wrmedmmenden/AEPT -wrmen/DIXY -wrmer/AEPT -wrmetechnisch/AEPT -wrmst/AEPT -wscht/X -wsserig/ACEPT -wssern/DIWXY -waagerecht/ACEPT -waagrecht/ACEPT -wabblig/ACEPT -wach/ACEPT -wachen/DIWXY -wachgerttelt/AEPT -wachgerufen/AEPT -wachrtteln/DIXY -wachrufen/DIX -wachsam/ACEPT -wachsartig/AEPT -wachsen/DGIO -wachsend/AEPTV -wachst/AEGPTW -wackeln/DIXY -wacker/ACEPT -wacklig/ACEPT -waffenfhig/ACEPT -waffenlos/ACEPT -waffnen/DIXY -wagemutig/ACEPT -wagen/DIXY -waghalsig/ACEPT -wahlberechtigt/AEPT -wahlfhig/ACEPT -wahlfrei/ACEPT -wahllos/ACEPT -wahlweise -wahnsinnig/ACEPT -wahnwitzig/ACEPT -wahr/ACEGLPTU -wahrgehabt/AEPT -wahrgenommen/AEPT -wahrgesagt/AEPT -wahrhaben/D -wahrhaft/ACEPT -wahrhaftig/ACEPT -wahrheitsgem/ACEPT -wahrheitsgetreu/ACEPT -wahrheitsliebend/ACEPT -wahrheitswidrig/ACEPT -wahrnahm/PZ -wahrnehmbar/ACEPT -wahrnehmen/BDI -wahrnimmt/X -wahrsagen/DIXY -wahrscheinlich/ACEPTU -wahrscheinlichkeitstheoretisch/AEPT -wahrzunehmen/D -waldrmer/AEPT -waldrmste/ANRS -waldarm/AEPT -waldig/ACEPT -waldreich/ACEPT -wallen/DIXY -wallfahren/DI -wallgefahren/AEPT -wallonisch/AEPT -walten/DIVXY -waltet/EGPVWX -walzen/DIXY -walzenfrmig/ACEPT -wand/PZ -wandelbar/ACEPTU -wandeln/BDIVXY -wandelt/EGPVX -wandelte/GNVZ -wandelten/GIVWX -wandern/DIXY -wandte/GNZ -wankelmtig/ACEPT -wanken/DIXY -wann/G -wappnen/DIXY -warb/PZ -ward -waren/WXY -warf/PVZ -warm/AEPT -warmgehalten/AEPT -warmhalten/D -warmherzig/ACEPT -warnen/DIVXY -warnt/EGPVX -warnte/GNVZ -warnten/GIVWX -warten/BDIWXY -wartungsfrei/AEPT -wartungsfreundlich/AEPT -warum -warzig/AEPT -was -waschecht/AEPT -waschen/BDGI -wasserrmer/AEPT -wasserrmste/ANRS -wasserabstoend/AEPT -wasserarm/AEPT -wasserbestndig/ACEPT -wasserdampfgesttigt/AEPT -wasserdicht/AEPT -wasserfest/AEPT -wasserhaltig/AEPT -wasserlslich/ACEPT -wassern/DIXY -wasserreich/AEPT -wasserscheu/AEPT -wasserstoffhaltig/ACEPT -wasserschtig/AEPT -waten/DIXY -watscheln/DIXY -wattieren/DIOXY -weben/DIXY -wechselfhig/AEPT -wechselhaft/ACEPT -wechseln/BDIVXY -wechselseitig/AEPT -wechselt/EGPVX -wechselte/GNVZ -wechselten/GIVWX -wechselvoll/ACEPT -wechselweise/ANRS -wechselwirken/DIXY -wecken/DIXY -wedeln/DIXY -wedelt/EGPX -weder -weg/P -wegbefrderte -wegbekommen/AEPT -wegbereiten/D -wegbewegen/DIXY -wegblasen/DIX -wegbleiben/DIX -wegblicken/DIXY -wegbringen/DIX -wegdiskutieren/DIOXY -wegfhrt/X -wegfahren/DI -wegfallen/DI -wegfangen/DI -wegfegen/DIXY -wegfiel/EPZ -wegfischen/DIXY -wegfhnen/DIXY -wegfhren/DIXY -weggeben/DI -weggeblasen/AEPT -weggeblickt -weggeblieben/AEPT -weggebracht/AEPT -weggebrochen/AEPT -weggedrckt/AEPT -weggefahren/AEPT -weggefallen/AEPT -weggefangen/AEPT -weggefegt/AEPT -weggefischt/AEPT -weggefhrt/AEPT -weggegangen/AEPT -weggegeben/AEPT -weggehen/DIX -weggeholt/AEPT -weggejagt/AEPT -weggekommen/AEPT -weggelassen/AEPT -weggelaufen/AEPT -weggelegt/AEPT -weggemacht/AEPT -weggemittelt/AEPT -weggemusst -weggenommen/AEPT -weggepackt/AEPT -weggeputzt/AEPT -weggerumt/AEPT -weggerafft/AEPT -weggeredet -weggereist/AEPT -weggerissen/AEPT -weggerckt/AEPT -weggeschafft/AEPT -weggeschaltet -weggeschert -weggeschickt/AEPT -weggeschleppt/AEPT -weggeschlichen/AEPT -weggeschliffen/AEPT -weggeschlossen/AEPT -weggeschmissen/AEPT -weggeschnappt/AEPT -weggeschnitten/AEPT -weggeschrieben/AEPT -weggesehen -weggesetzt/AEPT -weggestorben/AEPT -weggestrichen/AEPT -weggetan/AEPT -weggetragen/AEPT -weggetreten/AEPT -weggewendet/AEPT -weggewischt/AEPT -weggeworfen/AEPT -weggezaubert/AEPT -weggezogen/AEPT -wegging/EPZ -weghltst/WX -weghalten/DI -weghelfen/DI -wegholen/DIXY -wegjagen/DIXY -wegkommen/DIX -weglassen/BDI -weglaufen/DI -weglegen/DIXY -wegmachen/DIXY -wegmssen/D -wegnehmen/DI -wegpacken/DIXY -wegputzen/DIXY -wegrumen/DIXY -wegraffen/DIXY -wegreden -wegreien/DIX -wegreisen/DIXY -wegrcken/DIXY -wegrutschen/DIXY -wegschaffen/DIXY -wegscheren/DIXY -wegschicken/DIXY -wegschleichen/DIX -wegschleppen/DIXY -wegschlich/PZ -wegschlieen/DIX -wegschloss/PZ -wegschmeien/DIX -wegschnappen/DIXY -wegschneiden/DIX -wegschreiben/DIX -wegsehen/DI -wegsetzen/DIXY -wegspeichern/DIXY -wegsterben/DI -wegstreichen/DIX -wegtragen/I -wegtreten/DI -wegtuend/AEPT -wegtun/IX -wegweisend/AEPT -wegwenden/DIXY -wegwerfen/DI -wegwischen/DIXY -wegzaubern/DIXY -wegziehen/DIX -wegzudenken/D -wegzudiskutieren/D -wegzufahren -wegzugehen -wegzulassen/D -wegzunehmen/D -wegzutragen/D -wegzuziehen -wehen/DIVWXY -wehklagen/DIXY -wehleidig/ACEPT -wehmtig/ACEPT -wehren/DIVXY -wehrfhig/ACEPT -wehrlos/ACEPT -wehrpflichtig/AEPT -wehrt/EGPVX -weht/EGPVWX -wehte/GNVZ -wehten/GIVWX -wehtun/IX -weibchenhaft/AEPT -weiblich/ACEPT -weich/ACELPT -weichen/DIWXY -weichgeltet/AEPT -weichherzig/ACEPT -weichlich/ACEPT -weichlten/DIXY -weiden/DIXY -weidgerecht/ACEPT -weidlich/AEPT -weidmnnisch/AEPT -weigern/DIVXY -weigert/EGPVX -weihen/DIWXY -weihevoll/AEPT -weihnachtlich/ACEPT -weiland -weilen/DIWXY -weilt/EGPWX -weinen/DIWXY -weinerlich/AEPT -weinrot/AEPT -weint/EGPWX -wei/AELPTZ -weigelb/AEPT -weigewaschen/AEPT -weigrau/AEPT -weihutig/AEPT -weihaarig/ACEPT -weiwaschen/DI -weise/ACNRS -weisen/DIVX -weisgemacht -weisgesagt/AEPT -weislich/AEPT -weismachen/DIXY -weissagen/DIXY -weisungsgem/AEPT -weiszumachen -weit/ACEPTX -weitab -weitaus -weitblickend/ACEPT -weite/ACNRSZ -weiten/IWXY -weiterarbeiten/DIXY -weiterausgebaut/AEPT -weiterbearbeitet/AEPT -weiterbefrdern/DIOXY -weiterbelastet/AEPT -weiterbestanden/AEPT -weiterbestehen/DIX -weiterbewegen/DIXY -weiterbilden/DIXY -weiterblttern/DIXY -weiterbringen/DIX -weiterdifferenziert/AEPT -weiterdrucken/DIXY -weiterentwickeln/DIXY -weitererzhlen/DIOXY -weiterfhrt/X -weiterfahren/DI -weiterflieen/DIX -weiterfhren/DIXY -weitergab/PZ -weitergearbeitet -weitergeben/DI -weitergebracht/AEPT -weitergedruckt -weitergefahren -weitergeflogen -weitergefhrt/AEPT -weitergegeben/AEPT -weitergehen/DIX -weitergekommen/AEPT -weitergelebt -weitergeleitet/AEPT -weitergemacht -weitergereicht/AEPT -weitergesagt/AEPT -weitergeschoben/AEPT -weitergesendet -weitergespielt -weitergestrickt -weiterging/EPZ -weiterhelfen/DI -weiterhilft/X -weiterhin -weiterknnen -weiterkommen/DIX -weiterlaufen/DI -weiterleben/DIXY -weiterleiten/DIXY -weitermachen/DIXY -weiterreichen/DIXY -weiterreisen/DIXY -weitersagen/DIXY -weitersehen -weiterspielen/DIXY -weiterspringen/DIX -weitertragen/DI -weiterverarbeiten/DIOXY -weiterverbreiten/DIOXY -weiterverfolgen/DIOXY -weiterverkaufen/DIOXY -weiterversichert -weiterversucht -weiterverweisen/DIX -weiterverwenden/BDIOXY -weiterwachsen/DI -weiterzuarbeiten -weiterzubilden/D -weiterzufhren/D -weiterzugeben/D -weiterzulaufen -weiterzuleiten/D -weiterzumachen/D -weiterzursten -weiterzuschicken/D -weiterzuschreiben/D -weiterzuverfolgen/D -weitestgehend/AEPT -weitflchig/AEPT -weitgehend/ACEPT -weitgreifend/AEPT -weither -weitherzig/ACEPT -weithin -weitlufig/ACEPT -weitmaschig/ACEPT -weitrumig/AEPT -weitreichend/AEPT -weitschweifig/ACEPT -weitsichtig/ACEPT -weittragend/AEPT -weitverzweigt/AEPT -welch/AEPT -welk/ACEPT -welken/DIWXY -welkte/GNVZ -welkten/GIVWX -wellen/DIXY -wellenfrmig/ACEPT -wellig/AEPT -weltabgeschieden/AEPT -weltabgewandt/ACEPT -weltanschaulich/AEPT -weltbeherrschend/AEPT -weltbekannt/AEPT -weltberhmt/AEPT -weltbeste/ANRS -weltbewegend/ACEPT -welterfahren/ACEPT -welterschtternd/AEPT -weltfremd/AEPT -weltgeschichtlich/AEPT -weltgewandt/ACEPT -weltklug/AEPT -weltlich/ACEPT -weltmnnisch/ACEPT -weltoffen/AEPT -weltpolitisch/AEPT -weltumfassend/AEPT -weltumkrempelnd/AEPT -weltumspannend/AEPT -weltweit/AEPT -weltwirtschaftlich/AEPT -wem -wen/N -wenden/DIVXY -wendet/EGPVWX -wendete/GNVZ -wendeten/GIVWX -wendig/ACEPT -wenig/ACEPT -wenigsten/S -wenngleich -werbemig/AEGPT -werben/DI -werbewirksam/ACEPT -werblich/AEGPT -werden/DI -werfen/DIV -werkeln/DIXY -werken/DIXY -werksseitig/AEPT -werkttig/AEPT -werktags -wert/ACEPTW -wertbestndig/AEPT -werte/ACNRSZ -werten/DIWXY -werterhaltend/AEPT -wertet/EGPVWX -wertete/GNVZ -werteten/GIVWX -wertfrei/AEPT -wertgeschtzt/AEPT -wertlos/ACEPT -wertmig/AEPT -wertneutral/AEPT -wertschtzen/DIXY -wertvoll/ACEPT -wesenlos/ACEPT -wesensfremd/AEPT -wesensgleich/AEPT -wesentlich/ACEPTU -weshalb -wessen -westdeutsch/AEPT -westeuropisch/AEPT -westflisch/AEPT -westlich/ACEPT -westwrts -weswegen -wettbewerblich/AEPT -wettbewerbsfhig/AEPT -wettbewerbsneutral/AEPT -wettbewerbsorientiert/AEPT -wetteifern/DIXY -wetten/DIWXY -wetterbestimmend/AEPT -wetterfest/ACEPT -wetterfhlig/ACEPT -wetterhrter/AEPT -wetterhrteste/ANRS -wetterhart/AEPT -wettern/DIXY -wetterwendisch/ACEPT -wettet/EGPVWX -wettete/GNVZ -wetteten/GIVWX -wettgeeifert -wettmachen/DIXY -wettrsten/DIXY -wetzen/DIXY -wg -wg. -wich/EPSZ -wichsen/DIWXY -wichtig/ACEGPTU -wickeln/DIVXY -wickelt/EGPVX -wickelte/GNVZ -wickelten/GIVWX -widerborstig/ACEPT -widerfhrt -widerfahren/ADEIPT -widerfuhr -widergehallt/AEPT -widergespiegelt/AEPT -widerhallen/DIXY -widerlegbar/ACEPTU -widerlegen/BDIOXY -widerlegt/ACEPTX -widerlich/ACEPT -widern/DIWXY -widernatrlich/ACEPT -widerrtst/WX -widerraten/ADEIPT -widerrechtlich/ACEPT -widerrief/EPZ -widerriet/PZ -widerrufen/ADEIPTX -widerruflich/AEPTU -widersetzen/DIXY -widersetzlich/AEPT -widersinnig/ACEPT -widerspenstig/ACEPT -widerspiegeln/DIXY -widersprche/NZ -widersprach/PZ -widersprechen/DI -widerspricht/X -widersprochen/AEPTU -widersprchlich/ACEPT -widerspruchsfrei/AEPT -widerspruchslos/ACEPT -widerspruchsvoll/ACEPT -widerstand/PZ -widerstandsfhig/ACEPT -widerstandslos/ACEPT -widerstehen/DIX -widerstreben/DIXY -widerstrebend/ACEPT -widerstreiten/DIX -widerwrtig/ACEPT -widerwillig/ACEPT -widerzuspiegeln/D -widmen/DIXY -widrig/ACEPT -widrigenfalls -wie/S -wieder -wiederangeknpft/AEPT -wiederangestellt/AEPT -wiederanknpfen/DIXY -wiederanstellen/DIXY -wiederauferstanden/AEPT -wiederaufgebaut/AEPT -wiederaufgeblht/AEPT -wiederaufgekommen/AEPT -wiederaufgelebt/AEPT -wiederaufgenommen/AEPT -wiederaufgetreten/AEPT -wiederaufkommen/DIX -wiederaufladen/BDI -wiederaufleben/DIXY -wiederaufnehmen/DI -wiederauftreten/DI -wiederbekommen/DIX -wiederbeleben/DIOXY -wiederbewaffnen/DIOXY -wiederbringen/DIX -wiedereinbringen/DIX -wiedereinfinden/DIX -wiedereinfhren/DIXY -wiedereingebracht/AEPT -wiedereingefhrt/AEPT -wiedereingefunden/AEPT -wiedereingelst/AEPT -wiedereingenommen/AEPT -wiedereingesetzt/AEPT -wiedereingestellt/AEPT -wiedereingliedern/DIXY -wiedereinlsen/DIXY -wiedereinmal -wiedereinnehmen/DI -wiedereinsetzen/DIXY -wiedereinstellen/DIXY -wiederergreifen/DIX -wiederergriffen/AEPT -wiedererkannt/AEPT -wiedererkennen/DIX -wiedererlangen/DIOXY -wiedererstatten/DIOXY -wiedererstehen/DIX -wiedererzhlen/DIOXY -wiederfand/PZ -wiederfinden/DIX -wiedergab/PZ -wiedergeben/DI -wiedergebracht/AEPT -wiedergefunden/AEPT -wiedergegeben/AEPT -wiedergekut/AEPT -wiedergekehrt/AEPT -wiedergekommen/AEPT -wiedergenesen/DIX -wiedergesehen/AEPT -wiedergewhlt/AEPT -wiedergewinnen/DIX -wiedergewonnen/AEPT -wiedergibt/X -wiedergutgemacht/AEPT -wiedergutmachen/DIXY -wiedergutzumachen/D -wiederhergestellt/AEPT -wiederherstellbar/AEPTU -wiederherstellen/BDIXY -wiederherzustellen/D -wiederholbar/AEPTU -wiederholen/BDIOXY -wiederkuen/DIXY -wiederkehren/DIXY -wiederkommen/DIX -wiederkriegen/DIXY -wiedermal -wiedersehen/DI -wiedertreffen/DI -wiederum -wiedervereinigen/DIOXY -wiedervereint/AEPT -wiederverheiraten/DIOXY -wiederverwenden/BIOXY -wiederwhlen/BDIXY -wiederzufinden/D -wiederzugeben/D -wiederzugelassen/AEPT -wiederzukommen -wiederzulassen/D -wiederzusehen -wiederzuvereinigen/D -wiederzuverwenden/D -wiegen/DIXY -wiehern/DIXY -wienerisch/ACEPT -wies/PVZ -wieselflink/AEPT -wiesen/GVWX -wieso -wievielerlei -wievielt/AEPT -wieweit -wild/ACEPRT -wildern/DIWXY -wildfremd/AEPT -wildledern/AEPT -willen/LSW -willenlos/ACEPT -willensschwcher/AEPT -willensschwchste/ANRS -willensschwach/AEPT -willensstrker/AEPT -willensstrkste/ANRS -willensstark/AEPT -willig/ACEPTZ -willigen/IWXY -willkommen/ACEPTU -willkrlich/ACEPTU -willst/W -wimmeln/DIXY -wimmern/DIXY -windelweich/AEPT -winden/DIVX -windgeschtzt/ACEPT -windig/ACEPT -windschief/ACEPT -windschlpfig/ACEPT -windstill/AEPT -winkelfrmig/AEPT -winken/DIXY -winklig/AEPT -winseln/DIXY -winterfest/AEPT -winterlich/ACEPT -winzig/ACEPT -wippen/DIXY -wirbellos/AEPT -wirbeln/DIXY -wirbelt/EGPX -wirbt/X -wird -wirft/VWX -wirken/DIVXY -wirklich/ACEPT -wirklichkeitsfremd/ACEPT -wirklichkeitsgetreu/AEPT -wirklichkeitsnchste/ANRS -wirklichkeitsnher/AEPT -wirklichkeitsnah/AEPT -wirksam/ACEPTU -wirkt/EGPVX -wirkte/GNVZ -wirkten/GIVWX -wirkungslos/ACEPT -wirkungsvoll/ACEPT -wirr/ACEPTZ -wirren/DIWXY -wirst/W -wirtlich/ACEPTU -wirtschaften/DIVXY -wirtschaftet/EGPVWX -wirtschaftete/GNVZ -wirtschafteten/GIVWX -wirtschaftlich/ACEPT -wirtschaftspolitisch/AEPT -wischen/DIVXY -wischfest/AEPT -wischt/EGPVX -wischte/GNVZ -wischten/GIVWX -wispern/DIXY -wissbegierig/ACEPT -wissen/DGIL -wissend/ACEPTU -wissensbasiert/AEPT -wissenschaftlich/ACEPTU -wissenschaftstheoretisch/AEPT -wissenswert/ACEPT -wissentlich/ACEPTU -wittern/DIVXY -wittert/EGPVX -witterte/GNVZ -witterten/GIVWX -witterungsbestndig/ACEPT -witzeln/DIXY -witzig/ACEPT -wo -wchentlich/AEPT -wge/NZ -wlben/DIXY -wrtlich/ACEPT -woanders -wobei -wochenlang/AEPT -wochentags -wochenweise/ANRS -wodurch -wofern -wofr -wog/PZ -wogegen -woher -wohin -wohingegen -wohinter -wohl/ACEPT -wohlangebracht/ACEPT -wohlanstndig/ACEPT -wohlauf -wohlbehalten/ACEPT -wohlbeleibt/ACEPT -wohlbetucht/AEPT -wohldefiniert/AEPT -wohlerwogen/AEPT -wohlerzogen/ACEPT -wohlfeil/ACEPT -wohlgefllig/ACEPT -wohlgefhlt -wohlgemerkt/AEPT -wohlgemut -wohlgenhrt/ACEPT -wohlgeplant/AEPT -wohlgeraten/ACEPT -wohlgesinnt/ACEPT -wohlgesittet/ACEPT -wohlgesonnen/AEPT -wohlgestaltet/ACEPT -wohlhabend/ACEPT -wohlig/ACEPT -wohlklingend/ACEPT -wohlmeinend/ACEPT -wohlorganisiert/AEPT -wohlriechend/ACEPT -wohlschmeckend/ACEPT -wohlttig/AEPT -wohltuend/ACEPT -wohltun/IX -wohlverdient/ACEPT -wohlverstanden/AEPT -wohlweislich/ACEPT -wohlwollend/AEPT -wohnen/DIXY -wohnhaft/AEPT -wohnlich/ACEPTU -wohnungslos/AEPT -wohnungspolitisch/AEPT -wohnungssuchend/AEPT -wolkenlos/ACEPT -wolkig/ACEPT -wollen/ADEIPTY -wollig/ACEPT -wollstig/ACEPT -womit -womglich/AEPT -wonach -wonnetrunken/ACEPT -wonnig/ACEPT -woran -worauf -woraufhin -woraus -worden/G -worin -wortrmer/AEPT -wortrmste/ANRS -wortarm/AEPT -wortbrchig/ACEPT -wortgetreu/ACEPT -wortgewandt/ACEPT -wortkarg/ACEPT -wortlos/ACEPT -wortreich/ACEPT -wortweise -wortwrtlich/AEPT -worber -worum -worunter -wovon -wovor -wozu -wrang/PZ -wringen/DIX -whlen/DIXY -whlerisch/ACEPT -wnschen/BDIVXY -wnschenswert/ACEPT -wrde/NZ -wrdevoll/ACEPT -wrdig/ACEPTZ -wrdigen/DIWXY -wrfelfrmig/ACEPT -wrfeln/DIXY -wrflig/AEPT -wrgen/DIXY -wrttembergisch/AEPT -wrzen/DIXY -wrzig/ACEPT -wsste/NZ -wst/ACEPT -wste/ACNRSZ -wsten/DIWXY -wten/DIXY -wtend/ACEPT -wtet/EGPWX -wucherhaft/ACEPT -wucherisch/ACEPT -wuchern/DIXY -wuchernd/ACEPT -wuchs/PVZ -wuchten/DIXY -wuchtig/ACEPT -wulstig/ACEPT -wund/ACEPRT -wunderbar/ACEPT -wunderbarerweise -wunderhbsch/AEPT -wunderhbscheste/ANRS -wunderlich/ACEPTV -wundern/BDIWXY -wundernehmen/D -wundersam/ACEPT -wunderschn/AEPT -wunderttig/ACEPT -wundervoll/ACEPT -wunschgem/ACEPT -wunschlos/ACEPT -wurde/NZ -wurmen/DIWXY -wurmfrmig/ACEPT -wurmkrank/AEPT -wurmstichig/ACEPT -wurmt/EGPWX -wursteln/DIXY -wurstelnd/ACEPT -wurstig/ACEPT -wurzeln/DIVXY -wurzelt/EGPVX -wurzelte/GNVZ -wurzelten/GIVWX -wusch/PZ -wuseln/DIWXY -wusste/GNZ -wutentbrannt/ACEPT -wutschumend/ACEPT -wutschnaubend/ACEPT -xerographieren/IOXY -xi -zh/AEPT -zher/AEPT -zhflssig/AEPT -zhlebig/AEPT -zhlen/BDIVWXY -zhmen/BDIXY -zhneknirschend/AEPT -zrtlich/ACEPT -zackig/AEPT -zaghaft/AEPT -zahlen/BDIWXY -zahlenmig/AEPT -zahlentheoretisch/AEPT -zahllos/AEPT -zahlreich/ACEPT -zahlungsfhig/ACEPT -zahlungskrftig/AEPT -zahlungsunfhig/ACEPT -zahlungsunwillig/AEPT -zahm/ACEPT -zahnrztlich/AEPT -zahnlos/AEPT -zanken/DIVWXY -zankt/EGPVWX -zapfen/DIVWXY -zapft/EGPVWX -zapfte/GNVZ -zapften/GIVWX -zappeln/DIWXY -zappelt/EGPWX -zappenduster -zapplig/ACEPT -zart/ACEPT -zauberhaft/ACEPT -zaubern/DIVWXY -zaubert/EGPVWX -zauberte/GNVZ -zauberten/GIVWX -zaudern/DIWXY -zehnfach/AEPT -zehnjhrig/AEPT -zehnmalig/AEPT -zehnprozentig/AEPT -zehnt/AEPTW -zehntgig/AEPT -zehntausend/EP -zehntels -zehnten/SW -zehnwchig/AEPT -zehren/DIVWXY -zeichengetreu/AEPT -zeichnen/DIVXY -zeichnerisch/AEPT -zeichnungsberechtigt/AEPT -zeigen/DIWXY -zeilenweise -zeit/L -zeitabhngig/AEPT -zeitaufwndig/ACEPT -zeitaufwendig/ACEPT -zeitgem/ACEPTU -zeitgenssisch/AEPT -zeitgerecht/AEPT -zeitgeschichtlich/AEPT -zeitgleich/AEPT -zeitig/AEPTZ -zeitkritisch/AEPT -zeitlebens -zeitlos/AEPT -zeitnah/AEPT -zeitraubend/AEPT -zeitsparend/AEPT -zeitunabhngig/AEPT -zeitweilig/AEPT -zeitweise/ANRS -zelebrieren/DIOWXY -zellenfrmig/AEPT -zellstoffhaltig/AEPT -zellulr/AEPT -zellular/AEPT -zelten/DIXY -zeltet/EGPWX -zementieren/DIOWXY -zensieren/DIOWXY -zentnerschwer/AEPT -zentral/ACEPT -zentralamerikanisch/AEPT -zentralbeheizt/AEPT -zentralisieren/DIOWXY -zentralisiert/ACEPTWX -zentralisierte/ACNRSZ -zentralistisch/AEPT -zentrieren/DIOWXY -zentrifugal/AEPT -zentripetal/AEPT -zentrisch/AEPT -zerbarst/PZ -zerbeien/DIWX -zerbersten/DI -zerbirst -zerbissen/AEPT -zerbombt/AEPT -zerborsten/AEPT -zerbrach/PZ -zerbrechen/DI -zerbrechlich/ACEPTU -zerbricht/X -zerbrckeln/DIOWXY -zerbrochen/AEPT -zerdeppern/DIOWXY -zerdrcken/DIOWXY -zerdrckt/ACEPTWX -zerdrckte/ACNRSZ -zeremoniell/AEPT -zeremonis/ACEPT -zerfllt/X -zerfahren/ACEPT -zerfallen/ACDEIPTW -zerfetzen/DIOWXY -zerfetzt/ACEPTWX -zerfetzte/ACNRSZ -zerfiel/EPZ -zerflattern/DIXY -zerfleischen/DIOWXY -zerflieen/DIX -zerflossen/AEPTWX -zerfressen/ADEIPT -zerfrisst/W -zergangen/AEPT -zergehen/DIWX -zerging/EPZ -zergliedern/DIOXY -zerhacken/DIOWXY -zerkauen/DIOWXY -zerkleinern/DIOWXY -zerklftet/ACEPT -zerknicken/BDIOWXY -zerknickt/ACEPTWX -zerknirscht/ACEPT -zerknittern/DIOWXY -zerknittert/ACEPTWX -zerknllen/DIOWXY -zerkochen/DIOWXY -zerkratzen/DIOWXY -zerlsst -zerlassen/ADEIPT -zerlegen/BDIOWXY -zerlesen/AEPT -zerlie/PZ -zerlumpt/ACEPT -zermahlen/ADEIPTWXY -zermalmen/DIOWXY -zermartern/DIOWXY -zermrben/DIOXY -zermrbend/ACEPT -zernagen/DIOWXY -zerpflcken/DIOXY -zerplatzen/DIOWXY -zerquetschen/DIOWXY -zerrann/PZ -zerreden/DIOXY -zerreiben/DIWX -zerreibar/AEPTU -zerreien/BDIWX -zerren/DIVWXY -zerrieben/AEIPTWX -zerrinnen/DIX -zerrissen/AEIPTWX -zerronnen/AEPT -zerrt/EGPVWX -zerrte/GNVZ -zerrten/GIVWX -zerrtten/DIOXY -zersgen/DIOWXY -zerschellen/DIOWXY -zerschieen/DIWX -zerschlgt/X -zerschlagen/ADEIPTW -zerschlug/PZ -zerschmelzen/DIW -zerschmettern/DIOWXY -zerschmilzt/X -zerschmolzen/AEPTWX -zerschneiden/DIWX -zerschnitt/PZ -zerschnitten/AEPTWX -zerschossen/AEPTWX -zerschrammen/DIOXY -zerschrammt/ACEPTX -zerschrammte/ACNRSZ -zersetzen/DIOWXY -zersetzender/AEPT -zerspalten/ADEIPTWXY -zerspanen/DIOXY -zersplittern/DIOWXY -zersprang/PZ -zersprengen/DIOWXY -zerspringen/DIX -zersprungen/AEPT -zerstuben/DIOXY -zerstach/PZ -zerstampfen/DIOWXY -zerstechen/DI -zersticht/X -zerstieben/ADEIPTX -zerstie/EPZ -zerstrbar/ACEPTU -zerstren/BDIOWXY -zerstrerisch/ACEPT -zerstt -zerstochen/AEPT -zerstoen/ADEIPTW -zerstreiten/DIX -zerstreuen/DIOWXY -zerstreut/ACEPTWX -zerstreute/ACNRSZ -zerstritt/PZ -zerstritten/AEPTWX -zerstckeln/DIOWXY -zerteilen/DIOWXY -zertifizieren/DIOWXY -zertrampeln/DIOWXY -zertrat/PZ -zertreten/ADEIPT -zertrittst/WX -zertrmmern/DIOWXY -zerwhlen/DIOWXY -zerwhlt/ACEPTWX -zerwhlte/ACNRSZ -zerzausen/DIOXY -zerzaust/ACEPT -zerzauste/ACNRSZ -zeta -zetern/DIWXY -zetteln/IVWXY -zeugen/DIWXY -zeugungsfhig/ACEPT -zeugungsunfhig/AEPT -zickig/AEPT -ziegelrot/AEPT -ziehen/DIVWX -zielbewusst/ACEPT -zielen/DIWXY -zielgenau/ACEPT -zielgerichtet/ACEPT -ziellos/ACEPT -zielsicher/ACEPT -zielstrebig/ACEPT -ziemen/DGIXY -ziemlich/AEPT -zier/ELPVZ -zieren/DIVWXY -zierlich/ACEPT -ziert/EGPVWX -zierte/GNVZ -zierten/GIVWX -ziffrig/AEPT -zigste/ANRS -zigtausend/E -zimmerig/AEPT -zimmern/DIWXY -zimperlich/ACEPT -zinkig/AEPT -zinnern/AEPT -zinnfarben/AEPT -zinnrot/AEPT -zinsbringend/ACEPT -zinsesverzinst -zinsfrei/AEPT -zinslos/AEPT -zinspflichtig/AEPT -zionistisch/AEPT -zirka -zirkeln/DIXY -zirkulieren/DIOXY -zirpen/DIXY -zischeln/DIXY -zischen/DIWXY -ziselieren/DIOXY -zitieren/DIOXY -zitterig/ACEPT -zittern/DIWXY -zittert/EGPWX -zivil/AEPT -zivildienstleistend/AEPT -zivilisatorisch/AEPT -zivilisieren/DIOXY -zivilisiert/ACEPTX -zivilisierte/ACNRSZ -zivilrechtlich/AEPT -zge/NRZ -zger/ELNV -zgern/DIVWXY -zgernd/ACEPT -zgert/EGPVWX -zgerte/GNVZ -zgerten/GIVWX -zllig/AEPT -zog/PVZ -zollen/DIVXY -zollfrei/AEPT -zollpflichtig/AEPT -zollt/EGPVX -zollte/GNVZ -zollten/GIVWX -zoologisch/AEPT -zoomen/DIWXY -zopfig/AEPT -zornentbrannt/ACEPT -zornfunkelnd/AEPT -zornig/ACEPT -zotig/AEPT -zottig/AEPT -zchten/DIXY -zchtig/ACEPTZ -zchtigen/DIWXY -zcken/DIVWXY -zckt/EGPVWX -zckte/GNVZ -zckten/GIVWX -zgellos/ACEPT -zgeln/DIWXY -zgig/AEPT -zndeln/DIWXY -zndelt/EGPWX -znden/DIWXY -zndstoffgeladen/AEPT -zngeln/DIXY -zngelt/EGPX -zrnen/DIXY -zu/S -zuallererst -zuallerletzt -zuallermeist -zuarbeiten/DIXY -zubauen/DIXY -zubeien/DIX -zubereiten/DIOXY -zubilligen/DIXY -zubinden/DIX -zubleiben/DIX -zublinzeln/DIXY -zubringen/DIX -zuchtlos/ACEPT -zucken/DIWXY -zuckerig/ACEPT -zuckerkrank/AEPT -zuckern/DIVXY -zuckers/AEPT -zuckert/EGPVX -zuckerte/GNVZ -zuckerten/GIVWX -zudecken/DIXY -zudem -zudrehen/DIXY -zudringlich/ACEPT -zudrcken/DIXY -zudrucken/DIXY -zueignen/DIXY -zueinander -zuerkannt/AEPT -zuerkennen/DIX -zuerst -zufllig/ACEPT -zuflligerweise -zufllt/X -zufallen/DI -zufallsbedingt/AEPT -zufassen/DIXY -zufiel/P -zufliegen/DIX -zuflieen/DIX -zuflog/PZ -zufloss -zuflstern/DIXY -zufolge -zufrieden/ACEPTU -zufriedenstellend/AEPT -zufrieren/DIX -zufgen/DIXY -zufhren/DIXY -zufllen/DIXY -zugnglich/ACEPTU -zugab/PZ -zugebaut/AEPT -zugeben/DI -zugebilligt/AEPT -zugebissen/AEPT -zugeblieben/AEPT -zugeblinzelt/AEPT -zugebracht/AEPT -zugebunden/AEPT -zugedmmt/AEPT -zugedacht/AEPT -zugedeckt/AEPT -zugedreht/AEPT -zugedrckt/AEPT -zugeeignet/AEPT -zugeeilt/AEPT -zugefallen/AEPT -zugefasst/AEPT -zugeflogen/AEPT -zugeflossen/AEPT -zugeflstert/AEPT -zugefroren/AEPT -zugefgt/AEPT -zugefhrt/AEPT -zugefllt/AEPT -zugegangen/AEPT -zugegeben/AEPT -zugegebenermaen -zugegen -zugegossen/AEPT -zugegriffen -zugeguckt -zugehngt/AEPT -zugehabt/AEPT -zugehalten/AEPT -zugeheftet/AEPT -zugeheilt/AEPT -zugehen/DIX -zugehren/DIXY -zugehrig/AEPT -zugejubelt -zugekauft/AEPT -zugekehrt/AEPT -zugeklappt/AEPT -zugeklebt/AEPT -zugeknallt/AEPT -zugeknpft/AEPT -zugeknpft/AEPT -zugekommen/AEPT -zugekorkt/AEPT -zugelangt -zugelassen/AEPT -zugelaufen/AEPT -zugelegt/AEPT -zugeleitet/AEPT -zugemacht/AEPT -zugemauert/AEPT -zugemessen/AEPT -zugemutet/AEPT -zugenht/AEPT -zugenagelt/AEPT -zugeneigt/AEPT -zugenickt/AEPT -zugenommen/AEPT -zugeordnet/AEPT -zugepackt/AEPT -zugepflastert/AEPT -zugeraten/AEPT -zugerechnet/AEPT -zugeredet/AEPT -zugereicht/AEPT -zugerichtet/AEPT -zugeritten/AEPT -zugerstet/AEPT -zugerufen/AEPT -zugesagt/AEPT -zugesandt/AEPT -zugeschaltet/AEPT -zugeschaut -zugeschickt/AEPT -zugeschlagen/AEPT -zugeschlossen/AEPT -zugeschmiert/AEPT -zugeschmissen/AEPT -zugeschnallt/AEPT -zugeschnappt/AEPT -zugeschnitten/AEPT -zugeschnrt/AEPT -zugeschoben/AEPT -zugeschossen/AEPT -zugeschraubt/AEPT -zugeschrieben/AEPT -zugeschrien/AEPT -zugeschttet/AEPT -zugeschweit/AEPT -zugesehen -zugesellt/AEPT -zugesetzt/AEPT -zugesichert/AEPT -zugesiegelt/AEPT -zugespielt/AEPT -zugespitzt/AEPT -zugesprochen/AEPT -zugesprungen/AEPT -zugestanden/AEPT -zugesteckt/AEPT -zugestehen/DIX -zugestellt/AEPT -zugestiegen/AEPT -zugestimmt/AEPT -zugestochen -zugestopft/AEPT -zugestoen -zugestrmt/AEPT -zugestrzt/AEPT -zugetan/ACEPT -zugeteilt/AEPT -zugetragen/AEPT -zugetraut -zugetroffen -zugewachsen/AEPT -zugewandert/AEPT -zugewandt/AEPT -zugewartet -zugeweht/AEPT -zugewendet -zugewiesen/AEPT -zugeworfen/AEPT -zugewunken/AEPT -zugezhlt/AEPT -zugezahlt/AEPT -zugezogen/AEPT -zugezwinkert -zugieen/DIX -zugig/ACEPT -zuging/EPZ -zugkrftig/ACEPT -zugleich -zugreifen/BDIX -zugrunde -zugucken/DIXY -zugunsten -zugute -zuhltst/WX -zuhngen/DIXY -zuhalten/DI -zuhanden -zuhauen/DIXY -zuheften/DIXY -zuhinterst -zuhren/DIXY -zuinnerst -zujubeln/DIXY -zukaufen/DIXY -zukehren/DIXY -zuklappen/DIXY -zukleben/DIXY -zuknallen/DIXY -zukneifen/DIX -zuknpfen/DIXY -zuknpfen/DIXY -zukommen/DIX -zukorken/DIXY -zuknftig/AEPT -zukunftbezogen/AEPT -zukunftsorientiert/AEPT -zukunftsreich/ACEPT -zukunftssicher/AEPT -zukunftsweisend/AEPT -zulcheln/DIXY -zulnglich/AEPTU -zulssig/AEPTU -zulsst -zulangen/DIXY -zulassen/DI -zulasten -zulaufen/DI -zulegen/DIXY -zuleide -zuleiten/DIXY -zuletzt -zuliebe -zulie/EPZ -zulten/BDIXY -zum -zumachen/DIX -zumal -zumauern/DIXY -zumeist -zumessen/DI -zumindest -zumutbar/AEPTU -zumuten/BDIXY -zunchst -zunhen/DIXY -zunageln/D -zunehmen/DI -zuneigen/DIXY -zungenfertig/ACEPT -zungenfrmig/AEPT -zunichte -zunicken/DIXY -zunimmt/X -zunutze -zuoberst -zuordnen/DIXY -zupacken/DIXY -zupass/E -zupfen/DIWXY -zur -zurande -zuraste/NZ -zuraten/DI -zurechenbar/AEPT -zurechnen/DIXY -zurechnungsfhig/ACEPTU -zurecht -zurechtbasteln/DIXY -zurechtbringen/DIX -zurechtfand/PZ -zurechtfinden/DIX -zurechtgebastelt/AEPT -zurechtgebracht/AEPT -zurechtgefunden/AEPT -zurechtgekommen/AEPT -zurechtgelegt/AEPT -zurechtgemacht/AEPT -zurechtgesetzt/AEPT -zurechtgestellt/AEPT -zurechtgestutzt/AEPT -zurechtgewiesen/AEPT -zurechtkommen/DIX -zurechtlegen/DIXY -zurechtmachen/DIXY -zurechtsetzen/DIXY -zurechtstellen/DIXY -zurechtstutzen/DIXY -zurechtweisen/DIX -zurechtzufinden -zurechtzukommen -zureden/DIXY -zureichen/DIXY -zureichend/AEPTU -zureiten/DIX -zurichten/DIXY -zurck -zurckbegeben/ADEIPT -zurckbegleiten/DIOXY -zurckbehltst/WX -zurckbehalten/ADEIPT -zurckbekommen/ADEIPTX -zurckberufen/ADEIPTX -zurckbezahlt/AEPT -zurckbilden/DIXY -zurckblttern/DIXY -zurckbleiben/DIX -zurckblicken/DIXY -zurckblieb/EPZ -zurckbringen/DIX -zurckdatieren/DIOXY -zurckdenken/DIX -zurckdrngen/DIXY -zurckdrehen/DIXY -zurckeilen/DIXY -zurckerbeten/AEPT -zurckerbitten/DIX -zurckerhltst/WX -zurckerhalten/DI -zurckerobern/DIOXY -zurckerstatten/DIOXY -zurckfllt/X -zurckfahren/DI -zurckfallen/DI -zurckfinden/DIX -zurckfliegen/DIX -zurckfordern/DIXY -zurckfhren/DIXY -zurckgab/PZ -zurckgeben/DI -zurckgeblickt -zurckgeblieben/AEPT -zurckgebracht/AEPT -zurckgedacht/AEPT -zurckgedrngt/AEPT -zurckgedreht/AEPT -zurckgeeilt/AEPT -zurckgefahren/AEPT -zurckgefallen/AEPT -zurckgeflogen/AEPT -zurckgefordert/AEPT -zurckgefhrt/AEPT -zurckgefunden/AEPT -zurckgegangen/AEPT -zurckgegeben/AEPT -zurckgegriffen/AEPT -zurckgehalten/AEPT -zurckgehen/DIX -zurckgeholt/AEPT -zurckgekauft/AEPT -zurckgekehrt/AEPT -zurckgekommen/AEPT -zurckgekonnt -zurckgelassen/AEPT -zurckgelegen/AEOPT -zurckgelegt/AEPT -zurckgeliefert/AEPT -zurckgemeldet/AEPT -zurckgenommen/AEPT -zurckgeprallt/AEPT -zurckgerechnet/AEPT -zurckgerufen/AEPT -zurckgesandt/AEPT -zurckgeschaffen/AEPT -zurckgeschaltet/AEPT -zurckgeschaudert -zurckgeschaut -zurckgeschickt/AEPT -zurckgeschlagen/AEPT -zurckgeschleudert/AEPT -zurckgeschoben/AEPT -zurckgeschossen -zurckgeschrieben/AEPT -zurckgeschwenkt/AEPT -zurckgesehnt/AEPT -zurckgesendet/AEPT -zurckgesetzt/AEPT -zurckgesprungen/AEPT -zurckgestanden/AEPT -zurckgesteckt/AEPT -zurckgestellt/AEPT -zurckgestoen/AEPT -zurckgestrahlt/AEPT -zurckgestreift/AEPT -zurckgetreten/AEPT -zurckgetrieben/AEPT -zurckgewichen/AEPT -zurckgewiesen/AEPT -zurckgewinnen/DIX -zurckgewirkt/AEPT -zurckgewonnen/AEPT -zurckgeworfen/AEPT -zurckgewnscht/AEPT -zurckgezahlt/AEPT -zurckgezogen/ACEPT -zurckging/EPZ -zurckgreifen/DIX -zurckgriff/PZ -zurckhngen/DIX -zurckhalten/DI -zurckhaltend/ACEPT -zurckhielt/PZ -zurckholen/DIXY -zurckkaufen/DIXY -zurckkehren/DIXY -zurckknnen/D -zurckkommen/DIX -zurcklag/PZ -zurcklassen/DI -zurcklegen/DIXY -zurckliegen/DIX -zurckmelden/DIXY -zurckmssen/D -zurcknehmen/DI -zurckprallen/DIXY -zurckrechnen/DIXY -zurckregeln/DIXY -zurckreichen/DIXY -zurckrufen/DIX -zurckschaffen/DIXY -zurckschalten/DIXY -zurckschaudern/DIXY -zurckschauen/DIXY -zurckscheuen/DIXY -zurckschicken/DIXY -zurckschlagen/DI -zurckschrauben/DIXY -zurckschrecken/DIXY -zurckschreiben/DIX -zurckschwenken/DIXY -zurcksehnen/DIXY -zurcksenden/DIXY -zurcksetzen/DIXY -zurckspringen/DIX -zurckstecken/DIXY -zurckstehen/DIX -zurckstellen/DIXY -zurckstoen/DI -zurckstrahlen/DIXY -zurckstreifen/DIXY -zurcktreiben/DIX -zurcktreten/DI -zurcktrittst/WX -zurckbersetzen/DIOXY -zurckverfolgen/DIOXY -zurckvergten/DIOXY -zurckverlangen/DIOXY -zurckversetzen/DIOXY -zurckverwandeln/DIOXY -zurckverweisen/DIX -zurckweichen/DIX -zurckweisen/DIX -zurckwerfen/DI -zurckwich/PZ -zurckwies/EPZ -zurckwirft/X -zurckwirken/DIXY -zurckwnschen/DIXY -zurckzahlen/DIXY -zurckziehen/DIX -zurckzog/PZ -zurckzublttern -zurckzubleiben -zurckzublicken -zurckzubringen/D -zurckzuerhalten/D -zurckzufordern/D -zurckzufhren/D -zurckzugeben/D -zurckzugehen -zurckzugelangen -zurckzugewinnen/D -zurckzugreifen -zurckzuhalten/D -zurckzukaufen/D -zurckzukehren -zurckzukommen -zurckzulegen/D -zurckzunehmen/D -zurckzuschauen -zurckzuschicken/D -zurckzusenden/D -zurckzusetzen -zurckzutreten -zurckzuzahlen/D -zurckzuziehen/D -zursten/DIXY -zurufen/DIX -zurzeit -zus. -zustzlich/AEPT -zusagen/DIXY -zusah/PZ -zusammen -zusammenaddieren/DIOXY -zusammenarbeiten/DIXY -zusammenballen/DIXY -zusammenbasteln/DIXY -zusammenbauen/DIXY -zusammenbeien/DIX -zusammenbekommen/DIX -zusammenberufen/ADEIPTX -zusammenbinden/DIX -zusammenbrach/PZ -zusammenbrachen/WXY -zusammenbrauen/DIXY -zusammenbrechen/DI -zusammenbricht/X -zusammenbringen/DIX -zusammendrngen/DIXY -zusammendrcken/DIXY -zusammenfllt/X -zusammenfahren/DI -zusammenfallen/DI -zusammenfalten/DIXY -zusammenfassen/DIXY -zusammenfiel/EPZ -zusammenfinden/DIX -zusammenflicken/DIXY -zusammenflieen/DIX -zusammenfgen/DIXY -zusammenfhren/DIXY -zusammengearbeitet/AEPT -zusammengeballt/AEPT -zusammengebastelt/AEPT -zusammengebaut/AEPT -zusammengebissen/AEPT -zusammengebracht/AEPT -zusammengebraut/AEPT -zusammengebrochen/AEPT -zusammengebunden/AEPT -zusammengedrngt/AEPT -zusammengedrckt/AEPT -zusammengefahren/AEPT -zusammengefallen/AEPT -zusammengefaltet/AEPT -zusammengefasst/AEPT -zusammengeflickt/AEPT -zusammengeflossen/AEPT -zusammengefgt/AEPT -zusammengefhrt/AEPT -zusammengefunden/AEPT -zusammengegangen/AEPT -zusammengehuft/AEPT -zusammengehalten/AEPT -zusammengehaut/AEPT -zusammengeheftet/AEPT -zusammengeheilt/AEPT -zusammengehen/DIX -zusammengehren/DIXY -zusammengehrig/AEPT -zusammengeholt/AEPT -zusammengekauft/AEPT -zusammengekittet/AEPT -zusammengeklappt/AEPT -zusammengeklaubt/AEPT -zusammengeklebt/AEPT -zusammengekniffen/AEPT -zusammengeknllt/AEPT -zusammengekommen/AEPT -zusammengekoppelt/AEPT -zusammengelppert/AEPT -zusammengelaufen/AEPT -zusammengelebt/AEPT -zusammengelegt/AEPT -zusammengenommen/AEPT -zusammengepackt/AEPT -zusammengepasst/AEPT -zusammengepfercht/AEPT -zusammengeprallt/AEPT -zusammengepresst/AEPT -zusammengerafft/AEPT -zusammengeraten/ADEPT -zusammengerechnet/AEPT -zusammengereimt/AEPT -zusammengerissen -zusammengerollt/AEPT -zusammengerottet/AEPT -zusammengerckt/AEPT -zusammengerufen/AEPT -zusammengeschart/AEPT -zusammengeschlagen/AEPT -zusammengeschlossen/AEPT -zusammengeschmolzen/AEPT -zusammengeschnrt/AEPT -zusammengeschossen/AEPT -zusammengeschrieben/AEPT -zusammengeschrumpft/AEPT -zusammengeschustert/AEPT -zusammengeschweit/AEPT -zusammengesessen -zusammengesetzt/AEPT -zusammengestanden/AEPT -zusammengesteckt/AEPT -zusammengestellt/AEPT -zusammengestoppelt/AEPT -zusammengestoen/AEPT -zusammengestrichen/AEPT -zusammengestrmt/AEPT -zusammengestrzt/AEPT -zusammengesucht/AEPT -zusammengesunken/AEPT -zusammengetan -zusammengetragen/AEPT -zusammengetreten/AEPT -zusammengetroffen/AEPT -zusammengetrommelt/AEPT -zusammengewachsen/AEPT -zusammengewickelt/AEPT -zusammengewirkt/AEPT -zusammengeworfen/AEPT -zusammengewrfelt/AEPT -zusammengezhlt/AEPT -zusammengezogen/AEPT -zusammenhltst/WX -zusammenhngen/DIX -zusammenhngend/AEPTU -zusammenhufen/DIXY -zusammenhalten/DI -zusammenhanglos/ACEPT -zusammenhauen/DIXY -zusammenheften/DIXY -zusammenheilen/DIXY -zusammenhing/PZ -zusammenholen/DIXY -zusammenkaufen/DIXY -zusammenkitten/DIXY -zusammenklappen/BDIXY -zusammenkleben/DIXY -zusammenknllen/DIXY -zusammenkommen/DIX -zusammenkratzen/DIXY -zusammenlppern/DIXY -zusammenlaufen/DI -zusammenleben/DIXY -zusammenlegen/BDIXY -zusammenmontieren/DIOXY -zusammennehmen/DI -zusammenpacken/DIXY -zusammenpassen/DIXY -zusammenpferchen/DIXY -zusammenprallen/DIXY -zusammenraffen/DIXY -zusammenrechnen/DIXY -zusammenreimen/DIXY -zusammenreien/DIX -zusammenrollen/DIXY -zusammenrotten/DIXY -zusammenrcken/DIXY -zusammenrufen/DIX -zusammensacken/DIXY -zusammenschalten/BDIXY -zusammenscharen/DIXY -zusammenschieen/DIX -zusammenschlagen/DI -zusammenschlieen/DIX -zusammenschmelzen/DI -zusammenschnren/DIXY -zusammenschreiben/DIX -zusammenschrumpfen/DIXY -zusammenschweien/DIXY -zusammensetzen/DIXY -zusammensinken/DIX -zusammenspielen/DIXY -zusammenstecken/DIXY -zusammenstehen/DIX -zusammenstellen/BDIXY -zusammenstoppeln/DIXY -zusammenstoen/DI -zusammenstreichen/DIX -zusammenstrmen/DIXY -zusammenstrzen/DIXY -zusammensuchen/DIXY -zusammentraf/PZ -zusammentragen/DI -zusammentreffen/DI -zusammentreten/DI -zusammentrommeln/DIXY -zusammentuend/AEPT -zusammentun/IX -zusammenwachsen/DI -zusammenwerfen/DI -zusammenwickeln/DIXY -zusammenwirken/DIXY -zusammenzhlen/DIXY -zusammenziehen/DIX -zusammenzuarbeiten -zusammenzubrechen -zusammenzubringen -zusammenzufassen/D -zusammenzufgen/D -zusammenzufhren/D -zusammenzulegen/D -zusammenzupassen -zusammenzuschlieen/D -zusammenzusetzen -zusammenzustehen -zusammenzustellen/D -zusammenzutragen/D -zusammenzutreffen -zusammenzutreten -zusandte/NZ -zuschalten/BDIXY -zuschauen/DIXY -zuschicken/DIXY -zuschieben/DIX -zuschieen/DIX -zuschlgt/X -zuschlagen/DI -zuschlagsfrei/AEPT -zuschlieen/DIX -zuschmeien/DIX -zuschmieren/DIXY -zuschnallen/DIXY -zuschnappen/DIXY -zuschneiden/DIX -zuschnren/DIXY -zuschrauben/DIXY -zuschreiben/DIX -zuschreibend/AEPTU -zuschtten/DIXY -zuschulden -zusehen/DI -zusehend/AEPST -zuseiten -zusenden/DIXY -zusetzen/DIXY -zusichern/DIXY -zusiegeln/DIXY -zusieht/X -zuspielen/DIXY -zuspitzen/DIXY -zusprang/PZ -zusprechen/DI -zuspringen/DIX -zustndig/AEPT -zustndlich/AEPT -zustand/EPZ -zustandsabhngig/AEPT -zustandsorientiert/AEPT -zustatten -zustecken/DIXY -zustehen/D -zusteht -zustellen/DIXY -zustellungsbevollmchtigt/AEPT -zusteuern/DIXY -zustimmen/DIXY -zustt -zustopfen/DIXY -zustoen/DI -zustreben/DIXY -zustrmen/DIXY -zustrzen/DIXY -zutage -zuteilen/DIWXY -zutiefst -zutrglich/ACEPT -zutragen/DI -zutrauen/DIXY -zutraulich/ACEPT -zutreffen/DI -zutreffend/AEPTU -zutrifft/X -zutrinken/DIX -zutuend/AEPT -zuungunsten -zuunterst -zuverlssig/ACEPTU -zuversichtlich/ACEPT -zuvor -zuvorderst -zuvorgekommen/AEPT -zuvorkommen/DIX -zuvorkommend/ACEPT -zuvortun/IX -zuvorzukommen -zuwachsen/DI -zuwandern/DIXY -zuwarf/PZ -zuwarten/DIXY -zuwehen/DIXY -zuweilen -zuweisen/DIX -zuwenden/DIXY -zuwerfen/DI -zuwider -zuwidergehandelt/AEPT -zuwidergelaufen/AEPT -zuwiderhandeln/DIXY -zuwiderlaufen/DI -zuwinken/DIXY -zuzahlen/DIXY -zuzeiten -zuziehen/DIX -zuzog/PZ -zuzglich/AEPT -zuzubereiten/D -zuzubilligen/D -zuzudrcken/D -zuzufgen/D -zuzufhren/D -zuzugeben/D -zuzugestehen/D -zuzugreifen -zuzuhalten/D -zuzuhren -zuzulassen/D -zuzuleiten/D -zuzumachen -zuzumuten/D -zuzunehmen/D -zuzuordnen/D -zuzurechnen/D -zuzureden -zuzurichten/D -zuzuschalten/D -zuzuschicken/D -zuzuschieben/D -zuzuschlagen/D -zuzuschreiben/D -zuzusehen -zuzusichern/D -zuzustellen/D -zuzustimmen -zuzuteilen/D -zuzutrauen/D -zuzuweisen/D -zuzuwenden/D -zuzwinkern/DIXY -zwngen/DIXY -zwang/PZp -zwanghaft/ACEPT -zwanglos/ACEPT -zwangsbewirtschaftet/AEPT -zwangslufig/ACEPT -zwangsumgetauscht/AEPT -zwangsverpflichtet/AEPT -zwangsversteigert/AEPT -zwangsweise -zwanzig/R -zwanzigerlei -zwanzigfach/AEPT -zwanzigjhrig/AEPT -zwanzigste/ANRS -zwanzigstel -zwanzigtausend -zwar -zweckbestimmt/AEPT -zweckdienlich/ACEPT -zweckentfremdet/ACEPT -zweckentsprechend/AEPT -zweckgebunden/AEPT -zwecklos/ACEPT -zweckmig/ACEPTU -zweckmigerweise -zwecks -zweckwidrig/ACEPT -zweiaderig/AEPT -zweiarmig/AEPT -zweiatomig/AEPT -zweibndig/AEPT -zweibeinig/AEPT -zweideutig/ACEPTU -zweidimensional/AEPT -zweidrittel -zweieinhalb -zweieinhalbjhrig/AEPT -zweieinhalbstndig/AEPT -zweier -zweierlei -zweifltig/AEPT -zweifach/AEPT -zweifarbig/AEPT -zweifelhaft/ACEPTU -zweifellos/ACEPT -zweifeln/DIVWXY -zweifelnd/ACEPT -zweifelsfrei/AEPT -zweifelsohne -zweifelt/EGPVWX -zweifelte/GNVZ -zweifelten/GIVWX -zweigen/IVXY -zweigeteilt/AEPT -zweigleisig/AEPT -zweihndig/AEPT -zweihundert -zweijhrig/AEPT -zweijhrlich/AEPT -zweimal -zweimalig/AEPT -zweimotorig/AEPT -zweipolig/AEPT -zweirderig/AEPT -zweireihig/AEPT -zweischneidig/AEPT -zweiseitig/AEPT -zweisilbig/AEPT -zweisitzig/AEPT -zweispaltig/AEPT -zweisprachig/AEPT -zweistellig/AEPT -zweistimmig/AEPT -zweistckig/AEPT -zweistndig/AEPT -zweistndlich/AEPT -zweistufig/AEPT -zweit/AEPTW -zweitgig/AEPT -zweitlteste/ANRS -zweitausend -zweitausenddreihundert -zweitausendzweihundert -zweitbeste/ANRS -zweiteilig/AEPT -zweiten/SW -zweitgrte/ANRS -zweitjngste/ANRS -zweitklassig/AEPT -zweitletzte/ANRS -zweitmchtigste/ANRS -zweitrangig/AEPT -zweitstrkste/ANRS -zweiundachtzig -zweiundachtzigste/ANRS -zweiunddreiig -zweiunddreiigste/ANRS -zweiunddreiigstel -zweiundfnfzig -zweiundfnfzigste/ANRS -zweiundneunzig -zweiundneunzigste/ANRS -zweiundsechzig -zweiundsechzigste/ANRS -zweiundsiebzig -zweiundsiebzigste/ANRS -zweiundvierzig -zweiundvierzigste/ANRS -zweiundzwanzig -zweiundzwanzigste/ANRS -zweiwchentlich/AEPT -zweiwchig/AEPT -zweizackig/AEPT -zweizeilig/AEPT -zwerchfellerschtternd/AEPT -zwergenhaft/ACEPT -zwickelfrmig/AEPT -zwicken/DIWXY -zwiebelfrmig/AEPT -zwiefach/AEPT -zwielichtig/AEPT -zwiespltig/ACEPT -zwietrchtig/AEPT -zwingen/DIWX -zwinkern/DIWXY -zwirnen/DIXY -zwischen -zwischendurch -zwischengelagert/AEPT -zwischengeschaltet/AEPT -zwischengeschoben/AEPT -zwischengespeichert/AEPT -zwischenlanden/DIXY -zwischenmenschlich/AEPT -zwischenparteilich/AEPT -zwischenpersnlich/AEPT -zwischenspeichern/IX -zwischenstaatlich/AEPT -zwischenzeitlich/AEPT -zwischenzuspeichern -zwitschern/DIWXY -zwitterhaft/AEPT -zwlfeckig/AEPT -zwlferlei -zwlffach/AEPT -zwlfhundert -zwlfjhrig/AEPT -zwlfstmmig/AEPT -zwlfstndig/AEPT -zwlft/AEPTW -zwlftgig/AEPT -zwlftausend -zwlftel -zwlften/SW -zyklisch/AEPT -zyklopisch/AEPT -zylinderfrmig/AEPT -zylindrisch/AEPT -zynisch/ACEPT -zzgl -zzgl. diff --git a/tests/dictionaries/en_GB/LICENSE b/tests/dictionaries/en_GB/LICENSE deleted file mode 100644 index cd794b7..0000000 --- a/tests/dictionaries/en_GB/LICENSE +++ /dev/null @@ -1,282 +0,0 @@ -From https://cgit.freedesktop.org/libreoffice/dictionaries/tree/en/ - -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tests/dictionaries/en_GB/en_GB.aff b/tests/dictionaries/en_GB/en_GB.aff deleted file mode 100644 index 056728c..0000000 --- a/tests/dictionaries/en_GB/en_GB.aff +++ /dev/null @@ -1,1176 +0,0 @@ -# Affix file for British English MySpell dictionary. -# Also suitable as basis for Commonwealth and European English. -# Built from scratch for MySpell. Released under LGPL. -# -# Sources used to verify the spelling of the words -# Marco Pinto included in the dictionary: -# 1) Oxford Dictionaries; 4) Wiktionary (used with caution); -# 2) Collins Dictionary; 5) Wikipedia (used with caution); -# 3) Macmillan Dictionary; 6) Physical dictionaries. -# -# David Bartlett, Andrew Brown, Kevin Atkinson, -# Áron Budea, Marco A.G.Pinto. -# R 2.42, 2016-11-01 - -SET UTF-8 - -TRY esiaénrtolcdugmfphbyvkw-'.zqjxSNRTLCGDMFPHBEAUYOIVKWóöâôZQJXÅçèîêàïüäñ - -NOSUGGEST ! - -# ordinal numbers -COMPOUNDMIN 1 -# only in compounds: 1th, 2th, 3th -ONLYINCOMPOUND _ -# compound rules: -# 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.) -# 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.) -COMPOUNDRULE 2 -COMPOUNDRULE #*0{ -COMPOUNDRULE #*@} -WORDCHARS 0123456789’ - -REP 27 -REP f ph -REP ph f -REP f gh -REP f ugh -REP gh f -REP ff ugh -REP uf ough -REP uff ough -REP k ch -REP ch k -REP dg j -REP j dg -REP w ugh -REP ness ity -REP leness ility -REP ness ivity -REP eness ity -REP og ogue -REP ck qu -REP ck que -REP eg e.g. -REP ie i.e. -REP t ght -REP ght t -REP ok OK -REP ts ce -REP ce ts - -PFX A Y 2 -PFX A 0 re [^e] -PFX A 0 re- e -PFX a Y 1 -PFX a 0 mis . -PFX I Y 4 -PFX I 0 il l -PFX I 0 ir r -PFX I 0 im [bmp] -PFX I 0 in [^blmpr] -PFX c Y 1 -PFX c 0 over . -PFX U Y 1 -PFX U 0 un . -PFX C Y 2 -PFX C 0 de [^e] -PFX C 0 de- e -PFX E Y 1 -PFX E 0 dis . -PFX F Y 5 -PFX F 0 com [bmp] -PFX F 0 co [aeiouh] -PFX F 0 cor r -PFX F 0 col l -PFX F 0 con [^abehilmopru]. -PFX K Y 1 -PFX K 0 pre . -PFX e Y 1 -PFX e 0 out . -PFX f Y 2 -PFX f 0 under [^r] -PFX f 0 under- r -PFX O Y 1 -PFX O 0 non- . -PFX 4 Y 1 -PFX 4 0 trans . - -SFX V Y 15 -SFX V 0 tive [aio] -SFX V b ptive b -SFX V d sive d -SFX V be ptive be -SFX V e tive ce -SFX V de sive de -SFX V ke cative ke -SFX V e ptive me -SFX V e ive [st]e -SFX V e ative [^bcdkmst]e -SFX V 0 lative [aeiou]l -SFX V 0 ative [^aeiou]l -SFX V 0 ive [st] -SFX V y icative y -SFX V 0 ative [^abdeilosty] -SFX v Y 15 -SFX v 0 tively [aio] -SFX v b ptively b -SFX v d sively d -SFX v be ptively be -SFX v e tively ce -SFX v de sively de -SFX v ke catively ke -SFX v e ptively me -SFX v e ively [st]e -SFX v e atively [^bcdkmst]e -SFX v 0 latively [aeiou]l -SFX v 0 atively [^aeiou]l -SFX v 0 ively [st] -SFX v y icatively y -SFX v 0 atively [^abdeilosty] -SFX u Y 15 -SFX u 0 tiveness [aio] -SFX u b ptiveness b -SFX u d siveness d -SFX u be ptiveness be -SFX u e tiveness ce -SFX u de siveness de -SFX u ke cativeness ke -SFX u e ptiveness me -SFX u e iveness [st]e -SFX u e ativeness [^bcdkmst]e -SFX u 0 lativeness [aeiou]l -SFX u 0 ativeness [^aeiou]l -SFX u 0 iveness [st] -SFX u y icativeness y -SFX u 0 ativeness [^abdeilosty] -SFX N Y 26 -SFX N b ption b -SFX N d sion d -SFX N be ption be -SFX N e tion ce -SFX N de sion de -SFX N ke cation ke -SFX N e ption ume -SFX N e mation [^u]me -SFX N e ion [^o]se -SFX N e ition ose -SFX N e ation [iou]te -SFX N e ion [^iou]te -SFX N e ation [^bcdkmst]e -SFX N el ulsion el -SFX N 0 lation [aiou]l -SFX N 0 ation [^aeiou]l -SFX N 0 mation [aeiou]m -SFX N 0 ation [^aeiou]m -SFX N er ration er -SFX N 0 ation [^e]r -SFX N 0 ion [sx] -SFX N t ssion mit -SFX N 0 ion [^m]it -SFX N 0 ation [^i]t -SFX N y ication y -SFX N 0 ation [^bdelmrstxy] -SFX n Y 28 -SFX n 0 tion a -SFX n e tion ce -SFX n ke cation ke -SFX n e ation [iou]te -SFX n e ion [^iou]te -SFX n e ation [^ckt]e -SFX n el ulsion el -SFX n 0 lation [aiou]l -SFX n 0 ation [^aeiou]l -SFX n er ration er -SFX n 0 ation [^e]r -SFX n y ation py -SFX n y ication [^p]y -SFX n 0 ation [^aelry] -SFX n 0 tions a -SFX n e tions ce -SFX n ke cations ke -SFX n e ations [iou]te -SFX n e ions [^iou]te -SFX n e ations [^ckt]e -SFX n el ulsions el -SFX n 0 lations [aiou]l -SFX n 0 ations [^aeiou]l -SFX n er rations er -SFX n 0 ations [^e]r -SFX n y ations py -SFX n y ications [^p]y -SFX n 0 ations [^aelry] -SFX X Y 26 -SFX X b ptions b -SFX X d sions d -SFX X be ptions be -SFX X e tions ce -SFX X ke cations ke -SFX X de sions de -SFX X e ptions ume -SFX X e mations [^u]me -SFX X e ions [^o]se -SFX X e itions ose -SFX X e ations [iou]te -SFX X e ions [^iou]te -SFX X e ations [^bcdkmst]e -SFX X el ulsions el -SFX X 0 lations [aiou]l -SFX X 0 ations [^aeiou]l -SFX X 0 mations [aeiou]m -SFX X 0 ations [^aeiou]m -SFX X er rations er -SFX X 0 ations [^e]r -SFX X 0 ions [sx] -SFX X t ssions mit -SFX X 0 ions [^m]it -SFX X 0 ations [^i]t -SFX X y ications y -SFX X 0 ations [^bdelmrstxy] -SFX x Y 40 -SFX x b ptional b -SFX x d sional d -SFX x be ptional be -SFX x e tional ce -SFX x ke cational ke -SFX x de sional de -SFX x e ional [^o]se -SFX x e itional ose -SFX x e ional te -SFX x e ational [^bcdkst]e -SFX x el ulsional el -SFX x 0 lational [aiou]l -SFX x 0 ational [^aeiou]l -SFX x er rational er -SFX x 0 ational [^e]r -SFX x 0 ional [sx] -SFX x 0 ional [^n]t -SFX x 0 ational nt -SFX x y icational y -SFX x 0 ational [^bdelrstxy] -SFX x b ptionally b -SFX x d sionally d -SFX x be ptionally be -SFX x e tionally ce -SFX x ke cationally ke -SFX x de sionally de -SFX x e ionally [^o]se -SFX x e itionally ose -SFX x e ionally te -SFX x e ationally [^bcdkst]e -SFX x el ulsionally el -SFX x 0 lationally [aiou]l -SFX x 0 ationally [^aeiou]l -SFX x er rationally er -SFX x 0 ationally [^e]r -SFX x 0 ionally [sx] -SFX x 0 ionally [^n]t -SFX x 0 ationally nt -SFX x y icationally y -SFX x 0 ationally [^bdelrstxy] -SFX H N 13 -SFX H y ieth y -SFX H ree ird ree -SFX H ve fth ve -SFX H e th [^ev]e -SFX H 0 h t -SFX H 0 th [^ety] -SFX H y ieths y -SFX H ree irds ree -SFX H ve fths ve -SFX H e ths [^ev]e -SFX H 0 hs t -SFX H 0 ths [^ety] -SFX H 0 fold . -SFX Y Y 9 -SFX Y 0 ally ic -SFX Y 0 ly [^i]c -SFX Y e y [^aeiou]le -SFX Y 0 ly [aeiou]le -SFX Y 0 ly [^l]e -SFX Y 0 y [^aeiou]l -SFX Y y ily [^aeiou]y -SFX Y 0 ly [aeiou][ly] -SFX Y 0 ly [^cely] -SFX G Y 24 -SFX G e ing [^eioy]e -SFX G 0 ing [eoy]e -SFX G ie ying ie -SFX G 0 bing [^aeio][aeiou]b -SFX G 0 king [^aeio][aeiou]c -SFX G 0 ding [^aeio][aeiou]d -SFX G 0 fing [^aeio][aeiou]f -SFX G 0 ging [^aeio][aeiou]g -SFX G 0 king [^aeio][aeiou]k -SFX G 0 ling [^aeio][eiou]l -SFX G 0 ing [aeio][eiou]l -SFX G 0 ling [^aeo]al -SFX G 0 ing [aeo]al -SFX G 0 ming [^aeio][aeiou]m -SFX G 0 ning [^aeio][aeiou]n -SFX G 0 ping [^aeio][aeiou]p -SFX G 0 ring [^aeio][aeiou]r -SFX G 0 sing [^aeio][aeiou]s -SFX G 0 ting [^aeio][aeiou]t -SFX G 0 ving [^aeio][aeiou]v -SFX G 0 zing [^aeio][aeiou]z -SFX G 0 ing [aeio][aeiou][bcdfgkmnprstvz] -SFX G 0 ing [^aeiou][bcdfgklmnprstvz] -SFX G 0 ing [^ebcdfgklmnprstvz] -SFX J Y 25 -SFX J e ings [^eioy]e -SFX J 0 ings [eoy]e -SFX J ie yings ie -SFX J 0 bings [^aeio][aeiou]b -SFX J 0 king [^aeio][aeiou]c -SFX J 0 dings [^aeio][aeiou]d -SFX J 0 fings [^aeio][aeiou]f -SFX J 0 gings [^aeio][aeiou]g -SFX J 0 kings [^aeio][aeiou]k -SFX J 0 lings [^aeio][eiou]l -SFX J 0 ings [aeio][eiou]l -SFX J 0 lings [^aeo]al -SFX J 0 ings [aeo]al -SFX J 0 mings [^aeio][aeiou]m -SFX J 0 nings [^aeio][aiou]n -SFX J 0 pings [^aeio][aeiou]p -SFX J 0 rings [^aeio][aiou]r -SFX J 0 sings [^aeio][aeiou]s -SFX J 0 tings [^aeio][aiou]t -SFX J 0 vings [^aeio][aeiou]v -SFX J 0 zings [^aeio][aeiou]z -SFX J 0 ings [^aeio]e[nrt] -SFX J 0 ings [aeio][aeiou][bcdfgkmnprstvz] -SFX J 0 ings [^aeiou][bcdfgklmnprstvz] -SFX J 0 ings [^ebcdfgklmnprstvz] -SFX k Y 8 -SFX k e ingly [^eioy]e -SFX k 0 ingly [eoy]e -SFX k ie yingly ie -SFX k 0 kingly [^aeio][aeiou]c -SFX k 0 lingly [^aeio][aeiou]l -SFX k 0 ingly [aeio][aeiou][cl] -SFX k 0 ingly [^aeiou][cl] -SFX k 0 ingly [^ecl] -SFX D Y 25 -SFX D 0 d [^e]e -SFX D e d ee -SFX D 0 bed [^aeio][aeiou]b -SFX D 0 ked [^aeio][aeiou]c -SFX D 0 ded [^aeio][aeiou]d -SFX D 0 fed [^aeio][aeiou]f -SFX D 0 ged [^aeio][aeiou]g -SFX D 0 ked [^aeio][aeiou]k -SFX D 0 led [^aeio][eiou]l -SFX D 0 ed [aeio][eiou]l -SFX D 0 led [^aeo]al -SFX D 0 ed [aeo]al -SFX D 0 med [^aeio][aeiou]m -SFX D 0 ned [^aeio][aeiou]n -SFX D 0 ped [^aeio][aeiou]p -SFX D 0 red [^aeio][aeiou]r -SFX D 0 sed [^aeio][aeiou]s -SFX D 0 ted [^aeio][aeiou]t -SFX D 0 ved [^aeio][aeiou]v -SFX D 0 zed [^aeio][aeiou]z -SFX D y ied [^aeiou]y -SFX D 0 ed [aeiou]y -SFX D 0 ed [aeio][aeiou][bcdfgkmnprstvz] -SFX D 0 ed [^aeiou][bcdfgklmnprstvz] -SFX D 0 ed [^ebcdfgklmnprstvyz] -SFX d Y 16 -SFX d 0 d e -SFX d 0 ked [^aeio][aeiou]c -SFX d 0 led [^aeio][aeiou]l -SFX d y ied [^aeiou]y -SFX d 0 ed [aeiou]y -SFX d 0 ed [aeio][aeiou][cl] -SFX d 0 ed [^aeiou][cl] -SFX d 0 ed [^ecly] -SFX d e ing [^eioy]e -SFX d 0 ing [eoy]e -SFX d ie ying ie -SFX d 0 king [^aeio][aeiou]c -SFX d 0 ling [^aeio][aeiou]l -SFX d 0 ing [aeio][aeiou][cl] -SFX d 0 ing [^aeiou][cl] -SFX d 0 ing [^ecl] -SFX h Y 22 -SFX h 0 dly e -SFX h 0 bedly [^aeio][aeiou]b -SFX h 0 kedly [^aeio][aeiou]c -SFX h 0 dedly [^aeio][aeiou]d -SFX h 0 fedly [^aeio][aeiou]f -SFX h 0 gedly [^aeio][aeiou]g -SFX h 0 kedly [^aeio][aeiou]k -SFX h 0 ledly [^aeio][aeiou]l -SFX h 0 medly [^aeio][aeiou]m -SFX h 0 nedly [^aeio][aiou]n -SFX h 0 pedly [^aeio][aeiou]p -SFX h 0 redly [^aeio][aiou]r -SFX h 0 sedly [^aeio][aeiou]s -SFX h 0 tedly [^aeio][aiou]t -SFX h 0 vedly [^aeio][aeiou]v -SFX h 0 zedly [^aeio][aeiou]z -SFX h 0 edly [^aeio]e[nrt] -SFX h y iedly [^aeiou]y -SFX h 0 edly [aeiou]y -SFX h 0 edly [aeio][aeiou][bcdfgklmnprstvz] -SFX h 0 edly [^aeiou][bcdfgklmnprstvz] -SFX h 0 edly [^ebcdfgklmnprstvyz] -SFX i Y 22 -SFX i 0 dness e -SFX i 0 bedness [^aeio][aeiou]b -SFX i 0 kedness [^aeio][aeiou]c -SFX i 0 dedness [^aeio][aeiou]d -SFX i 0 fedness [^aeio][aeiou]f -SFX i 0 gedness [^aeio][aeiou]g -SFX i 0 kedness [^aeio][aeiou]k -SFX i 0 ledness [^aeio][aeiou]l -SFX i 0 medness [^aeio][aeiou]m -SFX i 0 nedness [^aeio][aiou]n -SFX i 0 pedness [^aeio][aeiou]p -SFX i 0 redness [^aeio][aiou]r -SFX i 0 sedness [^aeio][aeiou]s -SFX i 0 tedness [^aeio][aiou]t -SFX i 0 vedness [^aeio][aeiou]v -SFX i 0 zedness [^aeio][aeiou]z -SFX i 0 edness [^aeio]e[nrt] -SFX i y iedness [^aeiou]y -SFX i 0 edness [aeiou]y -SFX i 0 edness [aeio][aeiou][bcdfgklmnprstvz] -SFX i 0 edness [^aeiou][bcdfgklmnprstvz] -SFX i 0 edness [^ebcdfgklmnprstvyz] -SFX T Y 42 -SFX T 0 r e -SFX T 0 st e -SFX T 0 ber [^aeio][aeiou]b -SFX T 0 best [^aeio][aeiou]b -SFX T 0 ker [^aeio][aeiou]c -SFX T 0 kest [^aeio][aeiou]c -SFX T 0 der [^aeio][aeiou]d -SFX T 0 dest [^aeio][aeiou]d -SFX T 0 fer [^aeio][aeiou]f -SFX T 0 fest [^aeio][aeiou]f -SFX T 0 ger [^aeio][aeiou]g -SFX T 0 gest [^aeio][aeiou]g -SFX T 0 ker [^aeio][aeiou]k -SFX T 0 kest [^aeio][aeiou]k -SFX T 0 ler [^aeio][aeiou]l -SFX T 0 lest [^aeio][aeiou]l -SFX T 0 mer [^aeio][aeiou]m -SFX T 0 mest [^aeio][aeiou]m -SFX T 0 ner [^aeio][aeiou]n -SFX T 0 nest [^aeio][aeiou]n -SFX T 0 per [^aeio][aeiou]p -SFX T 0 pest [^aeio][aeiou]p -SFX T 0 rer [^aeio][aeiou]r -SFX T 0 rest [^aeio][aeiou]r -SFX T 0 ser [^aeio][aeiou]s -SFX T 0 sest [^aeio][aeiou]s -SFX T 0 ter [^aeio][aeiou]t -SFX T 0 test [^aeio][aeiou]t -SFX T 0 ver [^aeio][aeiou]v -SFX T 0 vest [^aeio][aeiou]v -SFX T 0 zer [^aeio][aeiou]z -SFX T 0 zest [^aeio][aeiou]z -SFX T y ier [^aeiou]y -SFX T y iest [^aeiou]y -SFX T 0 er [aeiou]y -SFX T 0 est [aeiou]y -SFX T 0 er [aeio][aeiou][bcdfgklmnprstvz] -SFX T 0 er [^aeiou][bcdfgklmnprstvz] -SFX T 0 er [^ebcdfgklmnprstvyz] -SFX T 0 est [aeio][aeiou][bcdfgklmnprstvz] -SFX T 0 est [^aeiou][bcdfgklmnprstvz] -SFX T 0 est [^ebcdfgklmnprstvyz] -SFX R Y 72 -SFX R 0 r e -SFX R 0 rs e -SFX R 0 ber [^aeio][aeiou]b -SFX R 0 bers [^aeio][aeiou]b -SFX R 0 ker [^aeio][aeiou]c -SFX R 0 kers [^aeio][aeiou]c -SFX R 0 der [^aeio][aeiou]d -SFX R 0 ders [^aeio][aeiou]d -SFX R 0 fer [^aeio][aeiou]f -SFX R 0 fers [^aeio][aeiou]f -SFX R 0 ger [^aeio][aeiou]g -SFX R 0 gers [^aeio][aeiou]g -SFX R 0 ker [^aeio][aeiou]k -SFX R 0 kers [^aeio][aeiou]k -SFX R 0 ler [^aeio][eiou]l -SFX R 0 er [aeio][eiou]l -SFX R 0 ler [^aeo]al -SFX R 0 er [aeo]al -SFX R 0 lers [^aeio][eiou]l -SFX R 0 ers [aeio][eiou]l -SFX R 0 lers [^aeo]al -SFX R 0 ers [aeo]al -SFX R 0 mer [^aeio][aeiou]m -SFX R 0 mers [^aeio][aeiou]m -SFX R 0 ner [^aeio][aeiou]n -SFX R 0 ners [^aeio][aeiou]n -SFX R 0 per [^aeio][aeiou]p -SFX R 0 pers [^aeio][aeiou]p -SFX R 0 rer [^aeio][aeiou]r -SFX R 0 rers [^aeio][aeiou]r -SFX R 0 ser [^aeio][aeiou]s -SFX R 0 sers [^aeio][aeiou]s -SFX R 0 ter [^aeio][aeiou]t -SFX R 0 ters [^aeio][aeiou]t -SFX R 0 ver [^aeio][aeiou]v -SFX R 0 vers [^aeio][aeiou]v -SFX R 0 zer [^aeio][aeiou]z -SFX R 0 zers [^aeio][aeiou]z -SFX R y ier [^aeiou]y -SFX R y iers [^aeiou]y -SFX R 0 er [aeiou]y -SFX R 0 ers [aeiou]y -SFX R 0 er [aeio][aeiou][bcdfgkmnprstvz] -SFX R 0 ers [aeio][aeiou][bcdfgkmnprstvz] -SFX R 0 er [^aeiou][bcdfgklmnprstvz] -SFX R 0 ers [^aeiou][bcdfgklmnprstvz] -SFX R 0 er [^ebcdfgklmnprstvyz] -SFX R 0 ers [^ebcdfgklmnprstvyz] -SFX R 0 r's e -SFX R 0 ber's [^aeio][aeiou]b -SFX R 0 ker's [^aeio][aeiou]c -SFX R 0 der's [^aeio][aeiou]d -SFX R 0 fer's [^aeio][aeiou]f -SFX R 0 ger's [^aeio][aeiou]g -SFX R 0 ker's [^aeio][aeiou]k -SFX R 0 ler's [^aeio][eiou]l -SFX R 0 er's [aeio][eiou]l -SFX R 0 ler's [^aeo]al -SFX R 0 er's [aeo]al -SFX R 0 mer's [^aeio][aeiou]m -SFX R 0 ner's [^aeio][aeiou]n -SFX R 0 per's [^aeio][aeiou]p -SFX R 0 rer's [^aeio][aeiou]r -SFX R 0 ser's [^aeio][aeiou]s -SFX R 0 ter's [^aeio][aeiou]t -SFX R 0 ver's [^aeio][aeiou]v -SFX R 0 zer's [^aeio][aeiou]z -SFX R y ier's [^aeiou]y -SFX R 0 er's [aeiou]y -SFX R 0 er's [aeio][aeiou][bcdfgkmnprstvz] -SFX R 0 er's [^aeiou][bcdfgklmnprstvz] -SFX R 0 er's [^ebcdfgklmnprstvyz] -SFX r Y 24 -SFX r 0 r e -SFX r 0 ler [^aeio][aeiou]l -SFX r 0 ker [^aeio][aeiou]c -SFX r y ier [^aeiou]y -SFX r 0 er [aeiou]y -SFX r 0 er [aeio][aeiou][cl] -SFX r 0 er [^aeiou][cl] -SFX r 0 er [^ecly] -SFX r 0 rs e -SFX r 0 lers [^aeio][aeiou]l -SFX r 0 kers [^aeio][aeiou]c -SFX r y iers [^aeiou]y -SFX r 0 ers [aeiou]y -SFX r 0 ers [aeio][aeiou][cl] -SFX r 0 ers [^aeiou][cl] -SFX r 0 ers [^ecly] -SFX r 0 r's e -SFX r 0 ler's [^aeio][aeiou]l -SFX r 0 ker's [^aeio][aeiou]c -SFX r y ier's [^aeiou]y -SFX r 0 er's [aeiou]y -SFX r 0 er's [aeio][aeiou][cl] -SFX r 0 er's [^aeiou][cl] -SFX r 0 er's [^ecly] -SFX S Y 9 -SFX S y ies [^aeiou]y -SFX S 0 s [aeiou]y -SFX S 0 es [sxz] -SFX S 0 es [cs]h -SFX S 0 s [^cs]h -SFX S 0 s [ae]u -SFX S 0 x [ae]u -SFX S 0 s [^ae]u -SFX S 0 s [^hsuxyz] -SFX P Y 6 -SFX P y iness [^aeiou]y -SFX P 0 ness [aeiou]y -SFX P 0 ness [^y] -SFX P y iness's [^aeiou]y -SFX P 0 ness's [aeiou]y -SFX P 0 ness's [^y] -SFX m Y 20 -SFX m 0 sman [bdknmt] -SFX m 0 sman [aeiou][bdklmnt]e -SFX m 0 man [^aeiou][bdklmnt]e -SFX m 0 man [^bdklmnt]e -SFX m 0 man [^bdeknmt] -SFX m 0 smen [bdknmt] -SFX m 0 smen [aeiou][bdklmnt]e -SFX m 0 men [^aeiou][bdklmnt]e -SFX m 0 men [^bdklmnt]e -SFX m 0 men [^bdeknmt] -SFX m 0 sman's [bdknmt] -SFX m 0 sman's [aeiou][bdklmnt]e -SFX m 0 man's [^aeiou][bdklmnt]e -SFX m 0 man's [^bdklmnt]e -SFX m 0 man's [^bdeknmt] -SFX m 0 smen's [bdknmt] -SFX m 0 smen's [aeiou][bdklmnt]e -SFX m 0 men's [^aeiou][bdklmnt]e -SFX m 0 men's [^bdklmnt]e -SFX m 0 men's [^bdeknmt] -SFX 5 Y 15 -SFX 5 0 swoman [bdknmt] -SFX 5 0 swoman [aeiou][bdklmnt]e -SFX 5 0 woman [^aeiou][bdklmnt]e -SFX 5 0 woman [^bdklmnt]e -SFX 5 0 woman [^bdeknmt] -SFX 5 0 swomen [bdknmt] -SFX 5 0 swomen [aeiou][bdklmnt]e -SFX 5 0 women [^aeiou][bdklmnt]e -SFX 5 0 women [^bdklmnt]e -SFX 5 0 women [^bdeknmt] -SFX 5 0 swoman's [bdknmt] -SFX 5 0 swoman's [aeiou][bdklmnt]e -SFX 5 0 woman's [^aeiou][bdklmnt]e -SFX 5 0 woman's [^bdklmnt]e -SFX 5 0 woman's [^bdeknmt] -SFX 6 Y 3 -SFX 6 y iful [^aeiou]y -SFX 6 0 ful [aeiou]y -SFX 6 0 ful [^y] -SFX j Y 3 -SFX j y ifully [^aeiou]y -SFX j 0 fully [aeiou]y -SFX j 0 fully [^y] -SFX p Y 5 -SFX p y iless [^aeiou]y -SFX p 0 less [aeiou]y -SFX p 0 ess ll -SFX p 0 less [^l]l -SFX p 0 less [^ly] -SFX Q Y 44 -SFX Q 0 tise a -SFX Q e ise [^l]e -SFX Q le ilise [^aeiou]le -SFX Q e ise [aeiou]le -SFX Q um ise um -SFX Q 0 ise [^u]m -SFX Q s se is -SFX Q 0 ise [^i]s -SFX Q y ise [^aeiou]y -SFX Q 0 ise [aeiou]y -SFX Q 0 ise [^aemsy] -SFX Q 0 tises a -SFX Q e ises [^l]e -SFX Q le ilises [^aeiou]le -SFX Q e ises [aeiou]le -SFX Q um ises um -SFX Q 0 ises [^u]m -SFX Q s ses is -SFX Q 0 ises [^i]s -SFX Q y ises [^aeiou]y -SFX Q 0 ises [aeiou]y -SFX Q 0 ises [^aemsy] -SFX Q 0 tised a -SFX Q e ised [^l]e -SFX Q le ilised [^aeiou]le -SFX Q e ised [aeiou]le -SFX Q um ised um -SFX Q 0 ised [^u]m -SFX Q s sed is -SFX Q 0 ised [^i]s -SFX Q y ised [^aeiou]y -SFX Q 0 ised [aeiou]y -SFX Q 0 ised [^aemsy] -SFX Q 0 tising a -SFX Q e ising [^l]e -SFX Q le ilising [^aeiou]le -SFX Q e ising [aeiou]le -SFX Q um ising um -SFX Q 0 ising [^u]m -SFX Q s sing is -SFX Q 0 ising [^i]s -SFX Q y ising [^aeiou]y -SFX Q 0 ising [aeiou]y -SFX Q 0 ising [^aemsy] -SFX 8 Y 44 -SFX 8 0 tize a -SFX 8 e ize [^l]e -SFX 8 le ilize [^aeiou]le -SFX 8 e ize [aeiou]le -SFX 8 um ize um -SFX 8 0 ize [^u]m -SFX 8 s ze is -SFX 8 0 ize [^i]s -SFX 8 y ize [^aeiou]y -SFX 8 0 ize [aeiou]y -SFX 8 0 ize [^aemsy] -SFX 8 0 tizes a -SFX 8 e izes [^l]e -SFX 8 le ilizes [^aeiou]le -SFX 8 e izes [aeiou]le -SFX 8 um izes um -SFX 8 0 izes [^u]m -SFX 8 s zes is -SFX 8 0 izes [^i]s -SFX 8 y izes [^aeiou]y -SFX 8 0 izes [aeiou]y -SFX 8 0 izes [^aemsy] -SFX 8 0 tized a -SFX 8 e ized [^l]e -SFX 8 le ilized [^aeiou]le -SFX 8 e ized [aeiou]le -SFX 8 um ized um -SFX 8 0 ized [^u]m -SFX 8 s zed is -SFX 8 0 ized [^i]s -SFX 8 y ized [^aeiou]y -SFX 8 0 ized [aeiou]y -SFX 8 0 ized [^aemsy] -SFX 8 0 tizing a -SFX 8 e izing [^l]e -SFX 8 le ilizing [^aeiou]le -SFX 8 e izing [aeiou]le -SFX 8 um izing um -SFX 8 0 izing [^u]m -SFX 8 s zing is -SFX 8 0 izing [^i]s -SFX 8 y izing [^aeiou]y -SFX 8 0 izing [aeiou]y -SFX 8 0 izing [^aemsy] -SFX q Y 22 -SFX q 0 tisation a -SFX q e isation [^l]e -SFX q le ilisation [^aeiou]le -SFX q e isation [aeiou]le -SFX q um isation um -SFX q 0 isation [^u]m -SFX q s sation is -SFX q 0 isation [^i]s -SFX q y isation [^aeiou]y -SFX q 0 isation [aeiou]y -SFX q 0 isation [^aemsy] -SFX q 0 tisations a -SFX q e isations [^l]e -SFX q le ilisations [^aeiou]le -SFX q e isations [aeiou]le -SFX q um isations um -SFX q 0 isations [^u]m -SFX q s sations is -SFX q 0 isations [^i]s -SFX q y isations [^aeiou]y -SFX q 0 isations [aeiou]y -SFX q 0 isations [^aemsy] -SFX - Y 22 -SFX - 0 tization a -SFX - e ization [^l]e -SFX - le ilization [^aeiou]le -SFX - e ization [aeiou]le -SFX - um ization um -SFX - 0 ization [^u]m -SFX - s zation is -SFX - 0 ization [^i]s -SFX - y ization [^aeiou]y -SFX - 0 ization [aeiou]y -SFX - 0 ization [^aemsy] -SFX - 0 tizations a -SFX - e izations [^l]e -SFX - le ilizations [^aeiou]le -SFX - e izations [aeiou]le -SFX - um izations um -SFX - 0 izations [^u]m -SFX - s zations is -SFX - 0 izations [^i]s -SFX - y izations [^aeiou]y -SFX - 0 izations [aeiou]y -SFX - 0 izations [^aemsy] -SFX s Y 33 -SFX s 0 tiser a -SFX s e iser [^l]e -SFX s le iliser [^aeiou]le -SFX s e iser [aeiou]le -SFX s um iser um -SFX s 0 iser [^u]m -SFX s s ser is -SFX s 0 iser [^i]s -SFX s y iser [^aeiou]y -SFX s 0 iser [aeiou]y -SFX s 0 iser [^aemsy] -SFX s 0 tisers a -SFX s e isers [^l]e -SFX s le ilisers [^aeiou]le -SFX s e isers [aeiou]le -SFX s um isers um -SFX s 0 isers [^u]m -SFX s s sers is -SFX s 0 isers [^i]s -SFX s y isers [^aeiou]y -SFX s 0 isers [aeiou]y -SFX s 0 isers [^aemsy] -SFX s 0 tiser's a -SFX s e iser's [^l]e -SFX s le iliser's [^aeiou]le -SFX s e iser's [aeiou]le -SFX s um iser's um -SFX s 0 iser's [^u]m -SFX s s ser's is -SFX s 0 iser's [^i]s -SFX s y iser's [^aeiou]y -SFX s 0 iser's [aeiou]y -SFX s 0 iser's [^aemsy] -SFX 9 Y 33 -SFX 9 0 tizer a -SFX 9 e izer [^l]e -SFX 9 le ilizer [^aeiou]le -SFX 9 e izer [aeiou]le -SFX 9 um izer um -SFX 9 0 izer [^u]m -SFX 9 s zer is -SFX 9 0 izer [^i]s -SFX 9 y izer [^aeiou]y -SFX 9 0 izer [aeiou]y -SFX 9 0 izer [^aemsy] -SFX 9 0 tizers a -SFX 9 e izers [^l]e -SFX 9 le ilizers [^aeiou]le -SFX 9 e izers [aeiou]le -SFX 9 um izers um -SFX 9 0 izers [^u]m -SFX 9 s zers is -SFX 9 0 izers [^i]s -SFX 9 y izers [^aeiou]y -SFX 9 0 izers [aeiou]y -SFX 9 0 izers [^aemsy] -SFX 9 0 tizer's a -SFX 9 e izer's [^l]e -SFX 9 le ilizer's [^aeiou]le -SFX 9 e izer's [aeiou]le -SFX 9 um izer's um -SFX 9 0 izer's [^u]m -SFX 9 s zer's is -SFX 9 0 izer's [^i]s -SFX 9 y izer's [^aeiou]y -SFX 9 0 izer's [aeiou]y -SFX 9 0 izer's [^aemsy] -SFX t Y 22 -SFX t 0 tisable a -SFX t e isable [^l]e -SFX t le ilisable [^aeiou]le -SFX t e isable [aeiou]le -SFX t um isable um -SFX t 0 isable [^u]m -SFX t s sable is -SFX t 0 isable [^i]s -SFX t y isable [^aeiou]y -SFX t 0 isable [aeiou]y -SFX t 0 isable [^aemsy] -SFX t 0 tisability a -SFX t e isability [^l]e -SFX t le ilisability [^aeiou]le -SFX t e isability [aeiou]le -SFX t um isability um -SFX t 0 isability [^u]m -SFX t s sability is -SFX t 0 isability [^i]s -SFX t y isability [^aeiou]y -SFX t 0 isability [aeiou]y -SFX t 0 isability [^aemsy] -SFX + Y 22 -SFX + 0 tizable a -SFX + e izable [^l]e -SFX + le ilizable [^aeiou]le -SFX + e izable [aeiou]le -SFX + um izable um -SFX + 0 izable [^u]m -SFX + s zable is -SFX + 0 izable [^i]s -SFX + y izable [^aeiou]y -SFX + 0 izable [aeiou]y -SFX + 0 izable [^aemsy] -SFX + 0 tizability a -SFX + e izability [^l]e -SFX + le ilizability [^aeiou]le -SFX + e izability [aeiou]le -SFX + um izability um -SFX + 0 izability [^u]m -SFX + s zability is -SFX + 0 izability [^i]s -SFX + y izability [^aeiou]y -SFX + 0 izability [aeiou]y -SFX + 0 izability [^aemsy] -SFX M Y 1 -SFX M 0 's . -SFX B Y 48 -SFX B e able [^acegilotu]e -SFX B 0 able [acegilou]e -SFX B te ble ate -SFX B e able [^a]te -SFX B 0 bable [^aeio][aeiou]b -SFX B 0 kable [^aeio][aeiou]c -SFX B 0 dable [^aeio][aeiou]d -SFX B 0 fable [^aeio][aeiou]f -SFX B 0 gable [^aeio][aeiou]g -SFX B 0 kable [^aeio][aeiou]k -SFX B 0 lable [^aeio][aeiou]l -SFX B 0 mable [^aeio][aeiou]m -SFX B 0 nable [^aeio][aeiou]n -SFX B 0 pable [^aeio][aeiou]p -SFX B 0 rable [^aeio][aeiou]r -SFX B 0 sable [^aeio][aeiou]s -SFX B 0 table [^aeio][aeiou]t -SFX B 0 vable [^aeio][aeiou]v -SFX B 0 zable [^aeio][aeiou]z -SFX B 0 able [aeio][aeiou][bcdfgklmnprstvz] -SFX B 0 able [^aeiou][bcdfgklmnprstvz] -SFX B y iable [^aeiou]y -SFX B 0 able [aeiou]y -SFX B 0 able [^ebcdfgklmnprstvzy] -SFX B e ability [^acegilotu]e -SFX B 0 ability [acegilou]e -SFX B te bility ate -SFX B e ability [^a]te -SFX B 0 bability [^aeio][aeiou]b -SFX B 0 kability [^aeio][aeiou]c -SFX B 0 dability [^aeio][aeiou]d -SFX B 0 fability [^aeio][aeiou]f -SFX B 0 gability [^aeio][aeiou]g -SFX B 0 kability [^aeio][aeiou]k -SFX B 0 lability [^aeio][aeiou]l -SFX B 0 mability [^aeio][aeiou]m -SFX B 0 nability [^aeio][aeiou]n -SFX B 0 pability [^aeio][aeiou]p -SFX B 0 rability [^aeio][aeiou]r -SFX B 0 sability [^aeio][aeiou]s -SFX B 0 tability [^aeio][aeiou]t -SFX B 0 vability [^aeio][aeiou]v -SFX B 0 zability [^aeio][aeiou]z -SFX B 0 ability [aeio][aeiou][bcdfgklmnprstvz] -SFX B 0 ability [^aeiou][bcdfgklmnprstvz] -SFX B y iability [^aeiou]y -SFX B 0 ability [aeiou]y -SFX B 0 ability [^ebcdfgklmnprstvzy] -SFX 7 Y 9 -SFX 7 e able [acegilou]e -SFX 7 0 able [^acegilou]e -SFX 7 0 kable [^aeio][aeiou]c -SFX 7 0 lable [^aeio][aeiou]l -SFX 7 0 able [aeio][aeiou][cl] -SFX 7 0 able [^aeiou][cl] -SFX 7 y iable [^aeiou]y -SFX 7 0 able [aeiou]y -SFX 7 0 able [^cely] -SFX g Y 9 -SFX g e ability [^acegilou]e -SFX g 0 ability [acegilou]e -SFX g 0 kability [^aeio][aeiou]c -SFX g 0 lability [^aeio][aeiou]l -SFX g 0 ability [aeio][aeiou][cl] -SFX g 0 ability [^aeiou][cl] -SFX g y iability [^aeiou]y -SFX g 0 ability [aeiou]y -SFX g 0 ability [^cely] -SFX l Y 9 -SFX l e ably [^acegilou]e -SFX l 0 ably [acegilou]e -SFX l 0 kably [^aeio][aeiou]c -SFX l 0 lably [^aeio][aeiou]l -SFX l 0 ably [aeio][aeiou][cl] -SFX l 0 ably [^aeiou][cl] -SFX l y iably [^aeiou]y -SFX l 0 ably [aeiou]y -SFX l 0 ably [^cely] -SFX b Y 3 -SFX b e ible [^aeiou]e -SFX b 0 ible [aeiou]e -SFX b 0 ible [^e] -SFX L Y 12 -SFX L 0 ament m -SFX L y iment [^aeiou]y -SFX L 0 ment [aeiou]y -SFX L 0 ment [^my] -SFX L 0 aments m -SFX L y iments [^aeiou]y -SFX L 0 ments [aeiou]y -SFX L 0 ments [^my] -SFX L 0 ament's m -SFX L y iment's [^aeiou]y -SFX L 0 ment's [aeiou]y -SFX L 0 ment's [^my] -SFX Z Y 22 -SFX Z e y [^aeiouy]e -SFX Z 0 y [aeiouy]e -SFX Z 0 ey [aiouy] -SFX Z 0 by [^aeio][aeiou]b -SFX Z 0 ky [^aeio][aeiou]c -SFX Z 0 dy [^aeio][aeiou]d -SFX Z 0 fy [^aeio][aeiou]f -SFX Z 0 gy [^aeio][aeiou]g -SFX Z 0 ky [^aeio][aeiou]k -SFX Z 0 ly [^aeio][aeiou]l -SFX Z 0 my [^aeio][aeiou]m -SFX Z 0 ny [^aeio][aiou]n -SFX Z 0 py [^aeio][aeiou]p -SFX Z 0 ry [^aeio][aiou]r -SFX Z 0 sy [^aeio][aeiou]s -SFX Z 0 ty [^aeio][aiou]t -SFX Z 0 vy [^aeio][aeiou]v -SFX Z 0 zy [^aeio][aeiou]z -SFX Z 0 y [^aeio]e[nrt] -SFX Z 0 y [aeio][aeiou][bcdfgklmnprstvz] -SFX Z 0 y [^aeiou][bcdfgklmnprstvz] -SFX Z 0 y [^aebcdfgiklmnoprstuvyz] -SFX 2 Y 21 -SFX 2 e iness [^aeiouy]e -SFX 2 0 iness [aeiouy]e -SFX 2 0 biness [^aeio][aeiou]b -SFX 2 0 kiness [^aeio][aeiou]c -SFX 2 0 diness [^aeio][aeiou]d -SFX 2 0 finess [^aeio][aeiou]f -SFX 2 0 giness [^aeio][aeiou]g -SFX 2 0 kiness [^aeio][aeiou]k -SFX 2 0 liness [^aeio][aeiou]l -SFX 2 0 miness [^aeio][aeiou]m -SFX 2 0 niness [^aeio][aiou]n -SFX 2 0 piness [^aeio][aeiou]p -SFX 2 0 riness [^aeio][aiou]r -SFX 2 0 siness [^aeio][aeiou]s -SFX 2 0 tiness [^aeio][aiou]t -SFX 2 0 viness [^aeio][aeiou]v -SFX 2 0 ziness [^aeio][aeiou]z -SFX 2 0 iness [^aeio]e[nrt] -SFX 2 0 iness [aeio][aeiou][bcdfgklmnprstvz] -SFX 2 0 iness [^aeiou][bcdfgklmnprstvz] -SFX 2 0 iness [^ebcdfgklmnprstvz] -SFX z Y 24 -SFX z e ily [^aeiouy]e -SFX z 0 ily [aeiouy]e -SFX z 0 ily [aiou]y -SFX z ey ily ey -SFX z y ily [^aeiou]y -SFX z 0 bily [^aeio][aeiou]b -SFX z 0 kily [^aeio][aeiou]c -SFX z 0 dily [^aeio][aeiou]d -SFX z 0 fily [^aeio][aeiou]f -SFX z 0 gily [^aeio][aeiou]g -SFX z 0 kily [^aeio][aeiou]k -SFX z 0 lily [^aeio][aeiou]l -SFX z 0 mily [^aeio][aeiou]m -SFX z 0 nily [^aeio][aiou]n -SFX z 0 pily [^aeio][aeiou]p -SFX z 0 rily [^aeio][aiou]r -SFX z 0 sily [^aeio][aeiou]s -SFX z 0 tily [^aeio][aiou]t -SFX z 0 vily [^aeio][aeiou]v -SFX z 0 zily [^aeio][aeiou]z -SFX z 0 ily [^aeio]e[nrt] -SFX z 0 ily [aeio][aeiou][bcdfgklmnprstvyz] -SFX z 0 ily [^aeiou][bcdfgklmnprstvyz] -SFX z 0 ily [^ebcdfgklmnprstvyz] -SFX y Y 15 -SFX y e ory te -SFX y e atory [mr]e -SFX y e ary se -SFX y 0 ry [^mrst]e -SFX y 0 ory [^aeous]t -SFX y 0 ry [aeous]t -SFX y 0 ery h -SFX y 0 atory [^i]m -SFX y im matory im -SFX y 0 ory s -SFX y 0 ary ion -SFX y 0 ry [^i]on -SFX y 0 nery [aiu]n -SFX y 0 ry [^aiou]n -SFX y 0 ry [^ehmstn] -SFX O Y 12 -SFX O 0 l a -SFX O e al [^bcgv]e -SFX O e ial [bcgv]e -SFX O 0 ial [bcrx] -SFX O um al um -SFX O 0 al [^u]m -SFX O y al ty -SFX O y ial [^t]y -SFX O 0 ual [px]t -SFX O 0 tal [iu]t -SFX O 0 al [^ipux]t -SFX O 0 al [^aebcrtxmy] -SFX o Y 12 -SFX o 0 lly a -SFX o e ally [^bcgv]e -SFX o e ially [bcgv]e -SFX o 0 ially [bcrx] -SFX o um ally um -SFX o 0 ally [^u]m -SFX o y ally ty -SFX o y ially [^t]y -SFX o 0 ually [px]t -SFX o 0 tally [iu]t -SFX o 0 ally [^ipux]t -SFX o 0 ally [^aebcrtxmy] -SFX W Y 21 -SFX W ce tific ce -SFX W e atic me -SFX W se tic se -SFX W le ic ble -SFX W e ic [^b]le -SFX W e ic [^clms]e -SFX W 0 lic [ay]l -SFX W 0 ic [^ay]l -SFX W us ic us -SFX W 0 tic [^u]s -SFX W er ric er -SFX W 0 ic [^e]r -SFX W 0 atic [aeiou]m -SFX W 0 ic [^aeiou]m -SFX W 0 tic ma -SFX W a ic [^m]a -SFX W y etic thy -SFX W y ic [^t]hy -SFX W y tic sy -SFX W y ic [^hs]y -SFX W 0 ic [^aelmrsy] -SFX w Y 9 -SFX w e ical e -SFX w er rical er -SFX w 0 ical [^e]r -SFX w 0 atical [aeiou]m -SFX w 0 ical [^aeiou]m -SFX w 0 tical ma -SFX w a ical [^m]a -SFX w y ical y -SFX w 0 ical [^aemry] -SFX 1 Y 9 -SFX 1 e ically e -SFX 1 er rically er -SFX 1 0 ically [^e]r -SFX 1 0 atically [aeiou]m -SFX 1 0 ically [^aeiou]m -SFX 1 0 tically ma -SFX 1 a ically [^m]a -SFX 1 y ically y -SFX 1 0 ically [^aemry] -SFX 3 Y 21 -SFX 3 e ist [^aceiou]e -SFX 3 ce tist ce -SFX 3 0 ist [aeiou]e -SFX 3 y ist [^aeioubp]y -SFX 3 0 ist [aeioubp]y -SFX 3 o ist o -SFX 3 0 ists [^eoy] -SFX 3 e ists [^aceiou]e -SFX 3 ce tists ce -SFX 3 0 ists [aeiou]e -SFX 3 y ists [^aeioubp]y -SFX 3 0 ists [aeioubp]y -SFX 3 o ists o -SFX 3 0 ists [^eoy] -SFX 3 e ist's [^aceiou]e -SFX 3 ce tist's ce -SFX 3 0 ist's [aeiou]e -SFX 3 y ist's [^aeioubp]y -SFX 3 0 ist's [aeioubp]y -SFX 3 o ist's o -SFX 3 0 ist's [^eoy] diff --git a/tests/dictionaries/en_GB/en_GB.dic b/tests/dictionaries/en_GB/en_GB.dic deleted file mode 100644 index 9735505..0000000 --- a/tests/dictionaries/en_GB/en_GB.dic +++ /dev/null @@ -1,62171 +0,0 @@ -62169 -'gainst -'mongst -'neath -'strewth -'struth -'twas -'twixt -0/#@ -0th/}{ -1/#0 -1024x768 -1080i -1080p -1280x720 -1280x720p -128K -1366x768 -16-bit -16K -1920x1080 -1920x1080i -1920x1080p -1D -1st/} -1th/{_ -2/#@ -24-bit -2D -2nd/} -2th/{_ -3/#@ -32-bit -320x240 -3D -3DES -3GPP's -3rd/} -3th/{_ -4/#@ -48K -4D -4th/}{ -4x4/S -5/#@ -5th/}{ -6/#@ -64-bit -640x480 -64K -6th/}{ -7/#@ -720p -7th/}{ -8-bit -8/#@ -800x600 -8th/}{ -9/#@ -9th/}{ -A -A-levels -a.m. -a/o -AA -AAA -AAC -Aachen/M -aardvark/MS -aardwolf -aardwolves -aargh -Aarhus/M -Aaron/M -Aaronvitch/M -Ababa/M -aback -abacus/SM -abaft -abalone/MS -abandon/LdS -abandonable -abandonedly -abandoner/M -abandonware -abase/SGLD -abaser/M -abash/LGhSD -abashed/UY -abate/DLGS -abated/U -abater/M -abatis/S -abattoir/SM -abaxial -Abba/M -abbess/SM -abbey/SM -abbot/SM -Abbott/M -abbreviate/NDnSG -abbreviated/U -abbreviation/M -Abby/M -abbé/S -ABC/S -abdicate/DNGSn -abdication/M -abdomen/MS -abdominal/YS -abdominiser -abdominizer -abdominoplasty/S -abdominoscopy -abducens -abduct/SDG -abductee/S -abduction/SM -abductive -abductor/MS -Abdul/M -Abdullah -Abe/M -abeam -abed -Abel/M -Abelard/M -Abelson/M -Aberconwy/M -Aberdeen/M -Aberdeenshire/M -aberdevine -Abernathy/M -aberrant/Y -aberration/MSO -Aberystwyth/M -abet/GSD -abettor/SM -abeyance/SM -abeyant -abhor/SGD -abhorrence/SM -abhorrent/Y -abhorrer/M -abidance/MS -abide/kGDS -abider/M -Abidjan -Abigail/M -Abilene/M -ability/ESIM -abiogenesis -abiogenic -abiotic -abiotically -abject/PY -abjection/MS -abjectness/S -abjuration/M -abjure/nyRSDGN -ablate/SDG -ablation/M -ablaze -able-bodied -able/nVvYNT -abloom -ablution/SM -abnegate/NGnDS -abnegation/M -abnormal/Y -abnormality/SM -aboard -abode/MS -abolish/DGLRS -abolition/3MS -abolitionism/SM -abolitionist -abominable/Y -abominate/DnNSG -abomination/M -aboriginal -aboriginals/M -Aboriginals/M -aborigine/oSM -abort/DVGvSu -aborter -abortifacient -abortion/3SM -abortionist -abortive/P -abound/GDS -about -above -aboveboard -aboveground -abracadabra/S -abrade/DGVXvuNS -abrader/M -Abraham/M -Abram/M -Abramovich/M -Abrams/M -abrasion/M -abrasive/MS -abrasiveness/S -abreact/SGD -abreaction/MS -abreast -abrenunciation -abricotine -abridge/LSGD -abridged/U -abridgedly -abridger/M -abroad -abrogate/DNnGS -abrogation/M -abrogator/MS -abrupt/TPY -abruptness/S -abs/M -abscess/DSGM -abscissa/MS -abscissae -abscission/SM -abscond/DRSG -abseil/SDG -abseiler -absence/SM -absent-minded/Y -absent-mindedness/S -absent/YDG -absentee/MS -absenteeism/SM -absenter -absentia/M -absinthe/MS -absolute/PTY3S -absoluteness/S -absolution/MS -absolutism/SM -absolve/GSD -absolver/M -absorb/GRXNVk -absorbance/S -absorbancy -absorbed/UA -absorbency/SM -absorbent/M -absorbs/A -absorption/M -absorptivity/M -abstain/RGSD -abstemious/YP -abstemiousness/S -abstention/MS -abstinence/MS -abstinent/Y -abstract/ShTVPGY -abstracted/P -abstractedness/S -abstracter/M -abstraction/3SM -abstractionism/M -abstractionist -abstractness/S -abstractor/SM -abstruse/TYP -abstruseness/S -absurd/PYT -absurdism -absurdist/S -absurdity/MS -absurdness/S -Abu/M -abubble -Abuja/M -abundance/MS -abundant/Y -abusable -abuse/GESD -abuser/MS -abusive/YP -abusiveness/S -abut/GRSLD -abutilon -abuzz -abysmal/Y -abyss/SM -abyssal -Abyssinia/M -Abyssinian -Ac -AC -acacia/SM -academe/1SMZw -academia/MS -academic/S -academicals -academician/SM -academicianship -academicism -academism -academy/MS -Acadia -Acadian/S -acanthus/SM -Acapulco/M -ACAS -acc. -accede/SDG -accelerate/NVDSnGk -acceleration/M -accelerator/SM -accelerometer/MS -accent/GMDS -accented/U -accentor/S -accentual/Y -accentualist -accentuality -accentuate/NDSnG -accentuation/M -accept/BSRVGkhl -acceptability/MS -acceptable/P -acceptableness/S -acceptably/U -acceptance/SM -acceptant -acceptation/S -accepted/U -acceptingness -acceptor/MS -access/NSXDyMbG -accessibility/ISM -accessible/IY -accessibly/I -accession/MDG -accessorial -accessors -accessory/MS -accidence/M -accident-prone -accident/oMS -accidental/SP -acclaim/DSG -acclaimer/M -acclamation/MS -acclimate/Ss9Q8DNnG -acclimation/M -acclimatisation -acclimatise/ADSG -acclimatization -acclimatize/ADSG -acclivity/SM -accolade/MGDS -accommodate/DGnkSNVu -accommodating/U -accommodation/M -accommodative/P -accompanied/U -accompanier/M -accompany/3SLDG -accomplice/SM -accomplish/RLSGD -accomplished/U -accord/SMDkRG -accordance/SM -accordant/Y -accordion/MS3 -accordionist -accost/DSG -account/MBlSG -accountability's/U -accountability/SM -accountable/P -accountably/U -accountancy/SM -accountant/SM -accounted/U -accounting/M -accoutre/LDSG -Accra/M -accredit/Snd -accreditation/M -accredited/U -accrementitious -accreted -accretion/SM -accretionary -accretive -accrual/MS -accrue/SGD -acct -acculturate/VDSNGn -acculturation/M -accumulate/DSGNVnvu -accumulation/M -accumulative/P -accumulator/SM -accuracy/ISM -accurate/YP -accurately/I -accurateness/S -accursed/YP -accursedness/S -accusal/M -accusation/M -accusative/S -accusatorial -accusatory -accuse/nRkSGD -accused/M -accustom/dS -accustomed/U -accustomedness/M -ace/vNSMnuV -acellular -acentric -acephaly -acepromazine -acer/S -acerbate/GDS -acerbic/Y -acerbity/SM -acetabula -acetabulum -acetaldehyde -acetaminophen/S -acetanilide -acetate/SM -acetic -acetobacter -acetogenic -acetone/SM -acetyl -acetylcholine -acetylcholinesterase -acetylene/MS -acetylsalicylic -Achaean/M -ache/DGkZSM -ached/FKA -achene/SM -aches/KFA -Acheulian -achievable/U -achieve/RSfDG -achieved/Uc -achievement's -achievement/f -achievements -achiever/cS -achieves/c -achieving/c -Achill -achillea -Achilles -achimenes -aching/KY -achromatic -achy/TK -acid/YPWSM -acidanthera -acidification/M -acidify/NSGD -acidimetrical -acidimetrically -acidimetry/W -acidity/SM -acidophil/SW -acidophiles -acidoses -acidosis/M -acidulous -Ackerman/M -acknowledge/LRGSh -acknowledgeable -acknowledged/U -ACM -acme/MS -acne/SMD -acolyte/MS -aconite/MS -acorn/MS -acoustic/Y -acoustical -acoustician/M -acoustics/M -acquaint/ASDG -acquaintance/SM -acquaintanceship/S -acquainted/U -acquiesce/GSD -acquiescence/SM -acquiescent/Y -acquirable -acquire/DASG -acquiree/S -acquirement/SM -acquirer/S -acquisition/MA -acquisitions -acquisitive/PY -acquisitiveness/S -acquit/DGS -acquittal/SM -acquittance/M -acquitter/M -acre/SM -acreage/MS -acrid/PY -acridine -acridity/SM -acridness/S -acrimonious/PY -acrimoniousness/S -acrimony/SM -acrobat/M1SW -acrobatic/S -acrobatics/M -acrocentric -acrolect's -acrolect/SO -acromegaly/W -acronym/SM -acropetal/Y -acrophobia/MS -acropolis/MS -across -acrostic/MS -acrylamide -acrylate/M -acrylic/S -act's -act/cS4GAD -actin -actinic -actinide/MS -actinium/M -actinometer/MS -actinomorphic -action/IMS4A -actionable -actioned -actioning -activate/SINnDCG -activated/A -activating/A -activation/IMCA -activator/SM -active/3NSnP -actively/IA -activeness/S -activewear -ActiveX -activism/MS -activity/SMI -Acton/M -actor/S4MA -actress/MS -actual/q8YSQ- -actuality/SM -actuarial -actuary/SMo -actuate/NSGnD -actuation/M -actuator/SM -acuity/MS -acumen/SM -acupoint/S -acupressure/S -acupuncture/MS3 -acute/PTY -acuteness/S -ACW -acyclic/Y -acyclovir/S -acyl -ad's -ad/AC -adage/SM -adagio/S -Adair/M -Adam/SM -adamant/SY -Adami/M -Adamski/M -Adamson/M -adapt/NRvuBinSVG -adaptability/MS -adaptably -adaptation/M -adaptationalism -adaptationism -adaptationist/S -adaptativeness -adapted/P -adaption/S -adaptive/P -adaptivity -adaptogen/S -adaptogenic -adaptor/S -adaxial -adbot/S -ADC -add-on/SM -add/RDGS7 -addend/SM -addenda -addendum/M -addict/DSGVu -addiction/MS -addictively -Addis -Addison/M -addition/oMS -additional -additive/YSM -additivity -addle/DSG -addorsed -address/RMBGS -addressed/Aa -addressee/MS -addresses/aA -addressing/a -adduce/bGVNSD -adducer/M -adduct/GDS -adduction/M -adductor/M -Adelaide/M -Adele/M -Adeline/M -Aden/M -Adenauer/M -adenine/M -adenocarcinoma/S -adenocarcinomata -adenohypophyses -adenohypophysis -adenoid/S -adenoidal -adenoma/S -adenomata -adenomatous -adenosine -adenoviral -adenovirus/S -adept/TPYS -adeptness/S -adequacy/ISM -adequate/IYP -adequateness/SI -ADHD -adhere/DGRS -adherence/MS -adherent/YSM -adhesion/MS -adhesive/PMSY -adhesiveness/S -Adi/M -adiabatic/Y -Adidas/M -Adie/M -adieu/S -adipic -adipoceration -adipocere -adipocyte/S -adipose/S -Adirondack/S -adiós -adj. -adjacency/MS -adjacent/Y -adjectival/Y -adjective/SM -adjoin/SDG -adjourn/SLDG -adjudge/DSG -adjudicate/DGnSNVy -adjudication/M -adjudicator/MS -adjunct/SYMV -adjuration/M -adjure/NGSDn -adjust/RLDlGS7V -adjusted/UA -adjustor's -adjusts/A -adjutant/MS -adjuvant/S -Adkins -adland -Adleman/M -Adler/M -Adlerian/S -Adlington/M -adman/M -admass -admen -admin/S -adminicle -adminicular -administer/dNSn -administrable -administrate/DGSvV -administration/M -administrator/MS -administratrix/M -admirable/P -admiral/SM -admiralty/SM -admiration/M -admire/NRGSDkln -admissibility/MSI -admissible/Y -admission/AM -admit/SANDGX -admittance/SM -admitted/Y -admix/SGD -admixture/MS -admonish/SkGLD -admonisher/M -admonition/SM -admonitory -adnate -ado/M -adobe/NvVSMX -adolescence's -adolescence/SK -adolescent/MYS -Adolf/M -Adolph/M -Adonis/M -adopt/DR7G -adopted/AU -adoptee/S -adoption/M -adopts/A -adorable/P -adorableness/S -adoration/M -adore/lRSNnGkD -adorn/DLSG -adorned/U -adpressed -adrenal/Y -adrenalin -adrenaline/MS -adrenergic -Adrian/M -Adriatic/M -Adrienne/M -adrift -adroit/TYP -adroitness/S -ads/A -ADSL -adsorb/XvDNVGS -adsorbate/M -adsorbent -adsorption/M -ADte -adulate/SDNnGy -adulation/M -adulator/SM -adult/YPSM -adulterant/MS -adulterate/GDnNS -adulterated/U -adulteration/M -adulterer/SM -adulteress/MS -adulterous/Y -adultery/SM -adulthood/SM -adumbrate/VSGnvDN -adumbration/M -adv. -advance/LGSDR -advantage/MEDGS -advantageous/EY -advantageousness's -advantageousness/E -advect/SGD -advection -advective -advent/SvM -Adventism -Adventist's -adventist/S -adventitia -adventitial -adventitious/PY -adventure's/a -adventure/RMSGD -adventures/a -adventuresome -adventuress/SM -adventurism -adventurist/S -adventurous/U -adventurously -adventurousness/SM -adverb/SoM -adverbial/MS -adversarial/Y -adversary/MS -adverse/yTDYGP -adverseness/S -adversity/SM -advert/GDQsS -advertise/LJ -advertised/U -advertising/M -advice/MS -advisabilities -advisability's -advisability/I -advisable/I -advise/BLRSGDlh -advisedly/I -advisee/SM -adviser/MS -advisor/MS -advisory/S -advocaat -advocacy/MS -advocate/GSVD -advocator -advocatory -adware -AdWords -adze/DMSG -Aegean/M -aegis/SM -Aegon/M -aegrotat/SM -Aeneas -Aeneid -aeolian -Aeolus -aeon/SM -aepyornis -aerate/NSnDG -aeration/M -aerator/SM -aerial/M3S -aerialist -aerie/oSM -aero -aero-engine/MS -aeroacoustic -aerobatic/S -aerobic/SY -aerobicist/S -aerobiology -aerobrake/G -aerodrome/SM -aerodynamic/SY -aerodynamics/M -aeroelastic -aeroelasticity -aerofoil/MS -aerogel/S -aerogramme -aerolite/S -aeromagnetic -aeromedical -aeromodeller -aeromodelling -aeronautic/SY -aeronautica -aeronautical -aeronautics/M -aeronef -aeronomer -aeronomic -aeronomical -aeronomist -aeronomy -aerophagy -aerophone/S -aeroplane/MS -aeroponic/S -aeroponically -aeroshell -aerosol/SM -aerospace/SM -aerosphere -aerostatics -aerotrain -aerotropism -aerovane -Aertex -AES -Aeschylus -Aesculapius -Aesop/M -aesthete/1WS -aesthetic/S -aesthetician/SM -aestheticism/SM -aestival -aestivate/N -aether/M -aetiology/SW1wM -AFAIK -afar -AFC -afebrile -affability/SM -affable/TY -affair/SM -affect/hVvNnkDiSG -affectation/M -affected/EPY -affectedly/U -affecter/M -affecting/E -affection/EMS -affectionate/U -affectionately -affective/M -affectivity -affectless -affectlessness -affects/E -afferent/YS -Affero -affiance/SDG -affidavit/SM -affiliate/nESGDN -affiliated/U -affiliation/ME -affine -affinity/MS -affirm/DGVnvSN -affirmation/MA -affirmed/A -affirms/A -affix/DSG -afflatus/SM -afflict/VvGDS -affliction/SM -affluence/SM -affluent/Y -afford/SGBD -affordable/U -affordably -affordance -afforest/GnDNS -afforestation/M -affray/MSDG -affricate/VSNM -affrication/M -affricative/M -affright -affront/GDMS -Afghan/SM -afghani/S -Afghani/SM -Afghanistan/M -aficionado/MS -afield -afire -AFK -aflagellar -aflagellate -aflame -aflank -aflap -aflatoxin/S -afloat -aflutter -afoot -afore -aforementioned -aforesaid -aforethought -afoul -afraid/U -afresh -Africa/M -African/SM -Africanisation -Africanise/SDG -Africanism/S -Africanist -Africanize/SDGN -Afrikaans -Afrikaner/SM -Afrikanerdom -afro -Afrocentric -Afrocentrism -Afrocentrist/S -afrormosia -Afrotropical -afrown -aft -after-effect/SM -after-hours -after-image/MS -after-school -after/S -afterbirth/SM -afterburner/MS -aftercare/MS -afterdamp -afterdeath -afterdeck -afterglow/SM -afterknowledge -afterlife/M -afterlight -afterling -afterlives -afterload/G -aftermath/MS -aftermost -afternoon/SM -afters/M -aftersales -aftershave/S -aftershock/MS -aftershow -aftersight -aftersound -aftersun -aftertaste/SM -afterthought/MS -aftertime -afterwards -afterword/SM -afterworld -Ag -Agaa/M -again -against -Agamemnon/M -agammaglobulinaemia -agammaglobulinemia -agamospermous -agamospermy -agapanthus -agape -agar-agar -agar/MS -agarose -agate/SM -Agatha/M -agave/SM -age's/e -age-long -age-old -age/MihpSD -aged/P -ageing -ageism/S -ageist/M -ageless/YP -agelessness/S -agency/SM -agenda/MS -agender -agent/AMS -agented -agenting -agentive -agentspace/S -Ager/S -ageratum/M -ages/e -Agey -Aggie/M -agglomerate/nVDNSG -agglomeration/M -agglutinate/nVGNDS -agglutination/M -agglutinin/SM -agglutinogen/S -aggrandise/DSLG -aggrandize/GLDS -aggravate/GkDSnN -aggravation/M -aggregate/vNnVDYSG -aggregated/E -aggregates/E -aggregating/E -aggregation's -aggregation/E -aggregator/S -aggression/MS -aggressive/c -aggressively -aggressiveness/S -aggressivity -aggressor/MS -aggrieve/DhSG -aggrievedness -aggrievement -aggro -aggroupment -aggry -aghast -aghastness -agile/TY -agility/MS -agitate/DVGSNnh -agitation/M -agitator/MS -agitprop/SM -agleam -aglitter -aglow -agnate/S -Agnatha -agnatic -agnation -Agnes/M -Agnew/M -agnolotti -agnosia -agnostic/MS -agnosticism/SM -ago -agog -agonise/kh -agonism -agonist/S -agonistic -agonistically -agonize/hk -agony/Q8Ss9 -agoraphobe/S -agoraphobia/SM -agoraphobic/S -Agostino/M -agouti -AGP -AGPL -Agra -agrammatism -agranulocyte -agranulocytosis -agrarian/S -agrarianism/MS -agree/dESLlG -agreeable/PE -agreeableness/ES -agreer/SM -agrestic -agri-industrial -agri-industry -agri-monetary -agribusiness/SM -agribusinessman -agribusinessmen -agrichemical/S -agricultor -agricultural/3 -agriculturalist -agriculture/M3oS -agrimony/S -Agrippa/M -agriproduct/S -agriscience/3 -agritourism -agro-industry/SO -Agrobacterium -agrobacterium -agrobiological -agrobiologist -agrobiology -agrochemical/S -agrochemistry -agroclimatic -agrodespotic -agroecosystem/S -agroforestry -agronomic/S -agronomical -agronomically -agronomy/3SMW -agrostology -agroterrorism -agroterrorist -aground -agroupment -aguardiente -ague/MS -Aguila/M -ah -aha/S -Ahab/M -AHCI -ahead -ahem/S -Ahern/M -Ahmari -aholehole -ahoy/S -AI -aid/RGDS -Aida/M -Aidan/M -aide-de-camp -aide-memoire -aide-mémoire -aide/MS -aided/U -aides-de-camp -aides-memoire/S -aidful -aigrette/SM -Aiken/M -aikido -ail/LSDG -Aileen/M -aileron/MS -ailurophile/S -ailurophobe/S -ailurophobia -ailurophobic -aim/RGDpSy -aimless/YP -aimlessness/S -ain't -ainhum -Ainsley/M -Ainsworth/M -Aintree -Ainu -air-conditioned -air-conditioner -air-conditioning -air-cooled -air-to-air -air-to-ground -air/mzGTp2ZRMDJS -airbag/S -airband -airbase/S -airbed -airboat/S -airborne -airbrick/S -airbrush/MGDS -airburst/S -Airbus/SM -aircraft-carrier/SM -aircraft/M -aircraftman -aircraftmen -aircraftwoman -aircraftwomen -aircrew/MS -Airdrie -airdrop/SDG -Airedale/M -Aires/M -airfare/S -airfield/SM -airflow/MS -airframe/MS -airfreight/DSG -airgraph -airgun/S -airhead/SMD -airiness/S -airing/M -airlessness/S -airlift/GDMS -airline/RMS -airling -airlock/MS -airmail/DMG -airmanship -airmass -airmobile -airplay/S -airport/MS -airscrew/S -airship/MS -airsick/P -airsickness/S -airside -airspace/MS -airspeed/SM -airstream/S -airstrip/SM -airtight/P -airtime -airwall/S -airwaves -airway/MS -airwoman -airwomen -airworthiness/S -airworthy/TP -airy/TP -aisle/DGSM -aisleless -ait -aitch/MS -aitchbone -aitchless -Aitken/M -ajar -Ajax -AK -AK-47/SM -aka -akasha/W -Akihito/M -akimbo -akin -Akira/M -Akita/S -Akkad/M -Akkadian/S -Akron/M -Akshaya/M -Al-Anon -al-Haili -Al-Haili -Al-Jazeera -al-Jazeera -al-Qa'ida/M -Al-Qa'ida/M -al-Qaeda/M -Al-Qaeda/M -al-Sharif -Al-Sharif -Al-Zawahiri -al-Zawahiri -al/AFC -Al/M -Alabama/M -Alabamans -Alabamian/M -alabaster/SM -alack -alacrity/SM -Aladdin/M -Alain/M -Alameda -Alamo/S -Alamogordo -Alan/M -alanine/M -Alaric/M -alarm/3DGkS -alarmism -alarmist -alas/S -Alaska/M -Alaskan/S -Alastair/M -alba/M -albacore/SM -Albania/M -Albanian/MS -Albans -Albany -albatross/MS -albedo/MS -Albee/M -albeit -Albert/M -Alberta/M -Alberto/M -albinism/SM -albino/SM -Albion/M -albitic -Albrecht/M -album/MS -albumen/SM -albumin/MS -albuminous -albuminuria -Albuquerque/M -Alcatraz/M -alchemise/SDG -alchemize/SDG -alchemy/W3SMw -Alcoa -alcohol/MW1S -alcoholic/SM -alcoholism/MS -alcove/DSM -Aldebaran -aldehyde/MS -Alden/M -alder/mM5S -Alderney/M -Aldiss/M -aldose -aldosterone -Aldrich/M -Aldridge/M -Aldus -ale/SM -aleatory -Alec/M -Aleck -alee -alehouse/SM -Aleister/M -Alejandro/M -alembic/MS -Alentejo -aleph/M -Aleppo/M -alert/PhSDRTYG -alertness/S -aleurone -Aleut -Aleutian/M -alewife/M -alewives -Alex/M -Alexa/M -Alexander/M -Alexandra/M -Alexandria/M -Alexandrian -Alexandro/M -Alexia/M -Alexis -Alf/M -Alfa/M -alfalfa/SM -Alfie/M -Alfons/M -Alfonso/M -Alfred/M -Alfredo/M -alfresco -alga/M -algae -algaecide -algal -Algarve -algebra/3SM -algebraic/Y -algebraical -algebraist -Alger/M -Algeria/M -Algerian/SM -algicide/S -Algiers -alginate/SM -Algol -ALGOL -Algonquian -Algonquin/M -algophobia -algorism -algorismic -algorist -algorithm/SWM1 -algorithmics -algose -algous -algraphy -Alhambra/M -Ali/M -alias/GSD -alibi/GSMD -Alice/M -Alicia/M -alicyclic/S -alien/NGDMn3S7 -alienability -alienable/IU -alienage -alienate/SGD -alienation/M -alienee/S -aliener -alienist -aliform -aligation -alight/SGD -align/SaDGLA -aligned/U -aligner/MS -alike/P -aliment/DGMS -alimentary -alimony/SM -alinement's -aliphatic -aliquot/S -Alison/M -alisphenoid/S -Alistair/M -alive/P -aliveness/S -alizarin -alkali/MS -alkaline -alkalinity/MS -alkalis/QdS -alkaloid/SM -alkalosis -alkane/S -alkanet -alkene/S -alkoxy -alkoxyl -alkyd/S -alkyl/M -alkylamine -alkylammonium -alkylating -all-clear -all-day -all-embracing -all-female -all-important -all-in -all-in-one -all-inclusive -all-inclusiveness -all-independent -all-instrumental -all-knowing -all-male -all-night -all-out -all-pervading -all-powerful -all-purpose -all-round -all-rounder -all-star -all-time -all/MSc -Allah/M -allamanda/S -Allan/M -allay/GSD -Allcock/M -Allee/M -allegation/M -allege/NShnDG -Allegheny/S -allegiance/SM -allegiant -allegoricalness -allegorising -allegory/1MWS3w -allegretto/MS -allegri -allegro/MS -allele/SMW -alleluia/S -allemande/M -Allen/M -Allendale -Allentown -allergen/MSW -allergy/3W1SM -alleviate/SVDnGN -alleviation/M -alleviator/SM -alley-oop -alley/MS -alleyway/MS -alliance/aMS -Allianz/M -allier -allies/M -alligate/SGD -alligation -alligator/MS -Allis -Allison/M -alliterate/nNVSvDG -alliteration/M -allium/S -allocable -allocatable/C -allocate/CDnAGSKN -allocated/U -allocation's/CKA -allocation/c -allocative -allocator's/C -allocator/KSC -allogeneic -allogenic -allograft/S -allometry/W -allopath -allopathic -allopathist/S -allopathy -allopatric -allopatry -allophone/MSW -allophonically -alloplasty/W -allopolyploid/Z -allopurinol -allosaurus/S -allosteric -allosterically -allot/SLGD -allotrope/WM -allots/A -allotted/A -allotter/M -allotting/A -allow/7DSGhl -allowable/P -allowance/MS -allowed/E -allowing/E -allows/E -alloxan -alloy/SGMD -alloyed/U -allozyme -allseed -allspice/M -Allstate -allude/vDGVuXSN -allure/LDkGS -allusion/M -allusive/P -allusiveness/S -alluvia -alluvial -alluvions -alluvium/SM -ally/SGD -allée/S -Alma -almagest -almanac/MS -almandine -Almere/M -almighty/P -almond/SM -almoner/MS -almost -alms/m -almshouse/MS -alnico -aloe/SM -Alofi/M -aloft -aloha/MS -alone/P -along -alongshore -alongside -aloof/PY -aloofness/S -alopecia -aloud -alp/M -alpaca/SM -Alpert/M -alpha/SM -alphabet/sQ-SW89q1Mw -alphafetoprotein -alphanumeric/YS -alphanumerical -Alphonse/M -alpine/S -Alpinist/MS -alprazolam -Alps -already -Alresford/M -alright -Alsace/M -Alsatian/S -Alsation/SM -also -also-ran/S -alstroemeria -Alt -alt-rock -Altai/M -Altaic/M -Altair/M -altar/SM -altarpiece/SM -altazimuth -alter/dS7 -alterable/UI -alteration/SM -altercate/nN -altercation/M -altered/U -alterer/S -alternant/S -alternate/NVvuSDGYn -alternation/M -alternative/PMS -alternator/SM -Althea/M -although -altimeter/MS -altimetry/W -altitude/SM -alto/SM -altocumuli -altocumulus -altogether -Alton/M -altostratus -altruism/SM -altruist/1MSW -ALU -alum/SM -alumina/SM -aluminium/M -aluminosilicate/S -alumna/M -alumnae -alumni -alumnus/MS -alundum -Alva/M -Alvarez -alveolar/YS -alveolate -alveoli -alveolus/M -Alvin/M -always -Alyssa/M -alyssum/S -Alzheimer/M -am/A -AMA -Amadeus/M -Amalfi -amalgam/nVSM -amalgamate/SDG -amalgamation/M -Amalie/M -Amanda/M -amanuenses -amanuensis/M -amaranth/SM -amaretto/S -Amarillo/M -amaryllis/SM -amass/GDS -amasser/M -amassment/S -amateur/MS -amateurish/PY -amateurishness/S -amateurism/SM -amatriciana -amaurosis -amaurotic -amaze/LDhkGS -amazon -Amazon/MS -Amazonas -Amazonia -Amazonian -ambassador/SM -ambassadorial -ambassadorship/MS -ambassadress/SM -amber/MS -ambergris/MS -amberjack -Amberley/M -ambiance/SM -ambidexterity/SM -ambidextrous/Y -ambience/M -ambient -ambifix/S -ambiguity/SM -ambiguous/UY -ambiguousness/M -ambisexual/Y -ambisonic/S -ambit/NMX -ambition/M -ambitious/UY -ambitiousness/SM -ambivalence/SM -ambivalent/Y -amble/KS -ambled -ambler/MS -Ambleside -ambling -amboyna -ambrose -ambrosia/MSo -ambrosial -ambulance/MS -ambulanceman -ambulancemen -ambulant/S -ambulate/SNyDGn -ambulation/M -ambulatory/S -ambuscade/SMDG -ambuscader/M -ambush/RSGDM -AMD -Amdahl/M -Amelia/M -ameliorate/DGnNVS -amelioration/M -amen/dgl7S -amenability/SM -amend/LDSG7 -amender/M -amends/M -amener -amenity/SM -amenorrhoea/M -Amerada -amerce/SGLD -America/MS -American/Qq-8MS -Americana -Americanism/S -americium/SM -Amerindian -Ames -amethyst/SM -amethystine -Amfreville -Amherst/M -Ami -amiability/SM -amiable/YTP -amicability/MS -amicable/PY -amid -amide/MS -amidship/S -amidst -Amiga/SM -AmigaOS -amigo/MS -amikacin -amine/S -amino/M -aminobenzoic -aminoglycoside/S -aminohydrolase -aminophylline -amir's -Amish/M -amiss -Amit/M -amitosis -amitotic -amitotically -amitriptyline -amity/MS -Amman/M -ammeter/SM -ammo/SM -ammonia/SM -ammoniac -ammoniacal -ammoniated -ammonite/S -ammonium/M -ammonoid/S -ammunition/SM -amnesia/MS -amnesiac/SM -amnesic -amnesty/DSGM -amniocenteses -amniocentesis/M -amnion/MS -amniotic -Amoco/M -amoeba/MSW -amoebae -amoebiasis -amoeboid -amok -among -amongst -amontillado/SM -amoral -amorality/SM -amorallym -amorous/PY -amorousness/S -amorphous/PY -amorphousness/S -amortise/nSGD -amortised/U -amortize/nNSGD -Amos -amount/MSGD -amour/MS -amoxicillin -amoxycillin -amp/SYGMD -amperage/SM -ampere/MS -ampersand/SM -amphetamine/MS -Amphibia -amphibian/MS -amphibious/PY -amphibole/S -amphibology/MS -amphibrach/W -amphipod/S -amphitheatre/SM -amphora/M -amphorae -amphoteric -amphotericin -amphoterism -ampicillin -ample/PT -Ampleforth/M -amplification/M -amplify/NDRGSn -amplitude/SM -ampoule/MS -ampulla -ampullae -amputate/DNSGn -amputation/M -amputee/SM -Amsterdam/M -Amstrad/M -amt. -Amtrak/M -amu -amuck -amulet/MS -amuse/RSkLVhDG -amused/U -amusing/P -Amy/M -amygdala -amygdalae -amygdaloid -amyl/M -amylase/MS -amylopectin -amylose -an/CS -Ana/M -Anabaptist/MS -anabiosis -anabiotic -anabolic -anabolism/MS -anachronism/SM -anachronistic/Y -anaclitic -anaconda/SM -Anacreon/M -anacreontic/S -anadromous -anaemia/SM -anaemic/Y -anaerobe/MW1S -anaesthesia/MS -anaesthesiology/M3S -anaesthetic/YMS -anaesthetise/RnSGD -anaesthetist/MS -anaesthetize/NRDSGn -anagen -anaglyph/SMW -anagram/GMDS -anagrammatic/Y -Anaheim/M -Anakin/M -anal-sadism -anal-sadistic -anal/Y -analecta -analects -analeptic/S -analgesia/MS -analgesic/S -analogous/PY -analogousness/S -analogue/SM -analogy/SQ8M1w -analphabetic -analysable -analysand/MS -analysandum -analysation -analyse/GWDS -analysed/aU -analyser/S -analysis/M -analyst/SM -analyte/S -analytic/YS -analytical -analyticity/S -analytics's -anamorphic -anamorphoses -anamorphosis -anapaest/WSM -anaphase -anaphora/1WM -anaphrodisiac/S -anaphylactic -anaphylaxis -anaplasmosis/M -anarchism/SM -anarchist/W -anarchy/3Ww1SM -Anastasia/M -anastigmatic -anastomose/SGD -anastomosis/M -anastomotic -anathema/MQ8S -Anatolia/M -Anatolian/S -anatomy/Q813wSWM -Ancaster/M -ancestor/MS -ancestral/Y -ancestress/SM -ancestry/SM -ancho/S -anchor/m5dSM -anchorage/MS -anchoress -anchoret/W -anchorite/SWM -anchoritism/M -anchorpeople -anchorperson/S -anchovy/MS -ancient/TPYS -ancientness/S -ancillary/S -Ancyra/M -and/DG -Andalusia/M -Andalusian/S -Andaman/M -andante/S -Andean/M -anders -Andersen/M -Anderson/M -Andes -andesite -andesitic -Andie/M -andiron/MS -Andorra/M -Andorran/S -Andover/M -andradite -Andre/M -Andrea/SM -Andrei/M -Andrew/MS -androcentric -androcentrism -androcracy/S -androcratic -androecia -androecial -androecium -androgen/MSW -androgenetic -androgyne/S -androgynous -androgynously -androgyny/MS -android/SM -andrologist -andrology -Andromache/M -Andromeda -Andromedae -andropause/O -androsterone -André/M -Andy/M -anecdotal -anecdote/SMo -anechoic -anemometer/SM -anemometric -anemometry/M -anemone/MS -anemophilous -anemophily -aneroid -aneurysm/OSM -anew -Ang/M -angel/S1wMW -Angela/M -Angeles -angelfish/SM -angelica/MS -Angelika/M -Angelina/M -Angelo/M -angelology -Angelou/M -Angelus -angelus -anger/MdS -Angie/M -angina/MS -angiogenesis -angiogram/S -angiographer/S -angiographic -angiographically -angiography -angioneurotic -angioplasty/S -angiosperm/SM -angiospermous -angiotensin -Angkor/M -angle/MRSJGD -anglepoise -anglerfish/S -Anglesey/M -angleworm/MS -Anglia/M -Anglican/MS -Anglicanism/M -anglicise/nSGD -Anglicism/S -anglicize/nNSGD -angling/M -Anglo -Anglo-Boer -Anglo-French -Anglo-Indian -Anglo-Irish -Anglo-Irishman -Anglo-Israelism -Anglo-Israelitism -Anglo-Jewish -Anglo-Jewry -Anglo-Judaic -Anglo-Latin -Anglo-Norman -Anglo-Russian -Anglo-Saxon -Anglomania -Anglophile/SM -Anglophilia -Anglophobe/M -Anglophobia/M -anglophone/MS -Anglophonie -Anglophony -Anglosphere -Angola/M -Angolan/SM -angora/MS -angry/PTY -angst/MS -angstroms -Anguilla/M -anguish/MDSG -angular/Y -angularity/MS -angulate/SGD -angulation/S -Angus/M -Anhalt/M -Anheuser/M -anhydride/M -anhydrite/M -anhydrous/Y -aniline/MS -animadversion/SM -animadvert/GDS -animal/Q8S-qM -animalcular -animalcule/S -animalism -animality -animalness -animate/DnASNG -animated/Y -animately/I -animateness's -animateness/I -animatic/S -animation/AM -animator/SM -animatronic/S -anime -animism/MS -animist/WS -animosity/MS -animus/SM -animé -anion/SWM -anise/MS -aniseed/SM -aniseikonic -anisette/SM -anisotropically -anisotropy/MWS -Anita/M -Ankara/M -ankh/SM -ankle/GDMS -anklebone/MS -anklet/MS -Ann/M -Anna/M -Annabelle/M -annal/3SM -annalen -annalist -Annan/M -Annapolis/M -Anne/M -anneal/DRGS -annelid/MS -Annelida -Annette/M -annex/nDSG -annexation/M -annexationist/S -annexe/M -Annie/M -annihilate/NSnVDG -annihilation/M -annihilator/SM -anniversary/SM -annock -annotate/GnNVDS -annotation/M -annotator/SM -announce/RDSLG -announced/U -annoy/DkRSG -annoyance/MS -annoybot/S -annoyingness -annoyware -annual/Q8YS -annuitant/SM -annuity/SM -annul/GLDS -annular/Y -annulate/D -annulation/S -annulet/S -annuli -annulus/M -annum -annunciate/NDnSG -annunciation/M -annunciator/MS -anode/8MQSW -anodyne/M -anoint/SDGL -anointer/M -anomalistic -anomalous/PY -anomaly/SM -anomic -anomie -anon -anon. -anonym/S -anonymisation -anonymise/SGD -anonymiser/S -anonymity/SM -anonymization -anonymize/SGD -anonymous/Y -anopheles/M -anopheline -anorak/SM -anorectal -anorectic -anorexia/MS -anorexic/S -anorgasmia -anorgasmic -anorthosite -another/M -anovulant/S -anovulation -anoxia -anoxic -ans/M -Anselm/M -ANSI/M -Anson/M -answer/7drSM -answerable/U -answered/U -answerphone/S -ant's -ant/E -antacid/SM -antagonise/RSGD -antagonism/SM -antagonist/WSM1 -antagonize/RSDG -Antalya/M -Antananarivo/M -Antarctic/M -Antarctica/M -antbird/S -ante-mortem -ante/MW -anteater/SM -antebellum -antecedence/SM -antecedent/YMS -antechamber/MS -antechapel -antedate/GSD -antediluvian/S -antelope/MS -antenatal -antenatally -antenna/SM -antennae -antennule/S -antepartum -antepenult -anterior/SY -anterograde -anterogradely -anterolateral -anteroloph/S -anteroom/MS -anteroposterior -anteverted -anthelmintic/S -anthem/MdS -anther/MS -antherozoid/S -anthesis -anthill/S -anthocyanin -anthology/Q8SM3 -Anthony/M -anthophilous -Anthozoa -anthozoan/S -anthracene -anthraces -anthracite/MS -anthracosis -anthrax/M -anthropic/a -Anthropocene -anthropocentric -anthropocentrically -anthropocentrism -anthropogenic/Y -anthropoid/S -anthropology/31wMS -anthropometric/S -anthropometry/WM -anthropomorphic/Y -anthropomorphise -anthropomorphising -anthropomorphism/SM -anthropomorphize -anthropomorphizing -anthropomorphous -anthropophagi -anthropophagous -anthropophagously -anthropophagus -anthropophagy -anthropophilic -anthurium/S -anti-abortion -anti-abortionist/SM -anti-ageing -anti-aircraft -anti-American -anti-Americanism -anti-apartheid -anti-British -anti-capitalism -anti-capitalist -anti-Christian -anti-constitutional -anti-corruption -anti-democratic -anti-emetic/S -anti-establishment -anti-feminism -anti-feminist -anti-fraud -anti-gay -anti-government -anti-gravity -anti-hero/M -anti-heroes -anti-hunt/G -anti-infective -anti-inflammatory -anti-intellectual/S -anti-lock -anti-magnetic -anti-nuclear -anti-personnel -anti-piracy -anti-racism -anti-racist/S -anti-Semitic -anti-Semitism/M -anti-slavery -anti-tank -anti-tetanus -anti-war -anti-Western -anti/S -antialiasing -antianxiety -antibacterial/S -antiballistic -antibiosis -antibiotic/MS -antiblack -antiblackism -antibody/MS -antibubble -antic/GMDS -anticancer -anticathode/S -anticellulite -anticholinergic/S -anticholinesterase -Antichrist/S -anticipate/NnySvVGD -anticipated/U -anticipation/M -anticlerical/S -anticlericalism -anticlimactic/Y -anticlimax/MS -anticline/MS -anticlockwise -anticoagulant/S -anticoagulation/M -anticommunism/SM -anticommunist/MS -anticompetitive -anticonvulsant/S -anticyclone/SMW -antidemocratic -antidepressant/SM -antidevelopment -antidiabetic -antidiarrhoeal -antidisestablishmentarian/S -antidisestablishmentarianism/M -antidiuretic -antidote/SDMG -antiepileptic/S -Antietam/M -antifascist/SM -antifeedant/S -antiferromagnetic -antifog/G -antiformant -antifouling -antifreeze/MS -antifundamentalist/M -antifungal -antigen/MSW -antigenicity/SM -antiglobalisation -antiglobalization -Antigone -antigravity -Antigua/M -Antiguan -antihistamine/MS -antihistorical -antihypertensive -antiknock/SM -Antilles/M -antilog/S -antilogarithm/MS -antilogy/S -antimacassar/MS -antimalarial/S -antimatter/MS -antimicrobial/S -antimilitarism -antimilitarist/S -antimissile/S -antimonide -antimony/M -Antin/M -antineoplastic -antinomian/S -antinomianism -antinomy/M -antinovel/S -Antioch/M -Antiochus -antioxidant/MS -antiparallel -antiparasitic -antiparticle/SM -antipasti -antipasto/MS -antipathy/SMW -antipattern/S -antiperspirant/SM -antiphon/MSo -antiphonal/S -antipodal/S -antipode/SM -antipodean/S -antipruritic/S -antipsychotic/S -antipyretic/S -antiquarian/MS -antiquarianism/MS -antiquark/S -antiquary/SM -antiquate/GSD -antiquation/M -antique/MSDNG -antiquity/SM -antiredeposition -antiresonance/M -antiresonator -antiretroviral/S -antirrhinum/S -antiscience -antiscorbutic/S -antisense -antisepses -antisepsis/M -antiseptic/SY -antisera -antiserum/M -antislavery -antisocial/Y -antispam -antispasmodic/S -antistatic -Antisthenes -antistrophe/S -antisubmarine -antisymmetry/W -antitank -antiterror -antiterrorism -antiterrorist -antitheses -antithesis/M -antithetic/Y -antithetical -antithyroid -antitoxic -antitoxin/SM -antitrust/M -antitruster -antitumour -antitussive -antitype/S -antitypical -antiulcer -antivenene -antivenin/SM -antivenom/S -antiviral/S -antivirus -antivivisection -antivivisectionism -antivivisectionist/S -antiworm -Antje/M -antler/MS -antlered -Antoine/M -Antoinette/M -Anton/M -Antonio/M -antonomasia -antonym/SM -antonymous -antra -antral -Antrim/M -antrum -ants -antsier -antsiest -Antwerp/M -Anubis/M -Anunnaki -anuran/S -anus/MS -anvil/DGSM -anxiety/SM -anxiolytic/S -anxious/PY -anxiousness/S -any -anybody/SM -anyhow -anyone/M -anything/M -anytime -anyway -anywhere -anywise -AOL/M -aorist -aorta/WSM -APA -apace -Apache/SM -Apalachicola -apart/PL -apartheid/M -apathetic/Y -apathy/MSW -apatite/SM -apatosaurus -APC -ape/M1GwSD -aped/A -apelike -Apelles/M -apeman -apemen -Apennines -aper/A -aperiodic/Y -aperiodicity/M -aperitif/S -apertural -aperture/DMS -apetalous -apex/SM -aphasia/SM -aphasic/S -aphelia -aphelion/SM -aphid/MS -aphonic -aphorism/MS -aphoristic/Y -aphrodisiac/SM -Aphrodite/M -API/S -Apia/M -apiary/S3M -apices -apices's -apiece -apish/YP -aplenty -aplomb/SM -apnoea -APO -apocalypse/WMS -apocalyptically -apocrypha/oM -apocryphal/P -apogee/SM -apolar -apolitical/Y -Apollo/M -Apollonian -apologetic/SY -apologetics/M -apologia/SM -apology/SQ8s9M3 -apolune -apomictic -apomixis -apophasis -apophthegm/SM -apophyllite -apoplast -apoplastic -apoplectic -apoplexy/SM -apoprotein/S -apoptosis -apoptotic -aposematic -aposematism -apospory -apostasy/SM -apostate/QMS8 -Apostille -apostle/MS -apostlebird/S -apostleship/MS -apostolate/S -apostolic -apostrophe/Q8SM -apothecary/MS -apothem/S -apotheoses -apotheosis/M -apotheosized -apotheosizes -apotheosizing -apozem/S -app/S -appal/DSGk -Appalachia/M -Appalachian/MS -appaloosa/S -appanage/M -apparat -apparatchik/S -apparatus/SM -apparel/DGMS -apparent/PY -apparently/I -apparition/SM -appeal/GDSkM -appealable -appealer/M -appealing/U -appear/GADSE -appearance/AMES -appearer/SM -appease/SDRLG -appeased/U -appellant/SM -appellate/NVvn -appellation/M -appellative/SM -append/SGRD -appendage/SM -appendectomy/SM -appendices -appendicitis/MS -appendicular -appendix/MS -apperception -apperceptive -appertain/SDG -appetiser/SM -appetising/UY -appetite/VSM -appetizer/SM -appetizing/UY -Appiah/M -Appian -applaud/RSDG -applause/MS -apple-pie -apple/YSM -Appleby/M -AppleScript/S -applet/S -Appleton/M -appliance/SM -applicabilities -applicability/MI -applicable/Y -applicant/SM -application/AM -applicator/SM -applied/Aa -applier/aM -applies/Aa -appliqué/SMG -appliquéd -applistructure/S -applotment -apply/vnNRGDSV -applying/a -appoggiatura/S -appoggiature -appoint/RLSVDG -appointed/EA -appointee/SM -appointing/E -appoints/EA -Appomattox -apportion/LADSG -apposite/Yx -appositeness -apposition/M -appraisable -appraisal/AMS -appraise/AGSD -appraisee/S -appraisement -appraiser/MS -appraising/Y -appraisive -appreciable/YI -appreciably/I -appreciate/vyGVDNnuS -appreciated/U -appreciation/M -appreciative/IYP -appreciator/MS -apprehend/DvNVSGuX -apprehended/a -apprehender/M -apprehending/a -apprehends/a -apprehensible -apprehension/aMS -apprehensive/P -apprehensiveness/S -apprentice/DSGM -apprenticeship/SM -apprise/kSGD -approach/BRGDS -approachability/M -approachable/U -approbate/Nn -approbation/MES -appropriable -appropriacy/S -appropriate/GnaDNS -appropriately/I -appropriateness/ISM -appropriation/M -appropriative -appropriator/SM -approval/MES -approve/RkEGSD -approved/U -approx -approximate/GVNSvDYn -approximation/M -appurtenance/MS -appurtenant -Apr -apricot/MS -April/MS -apron/SM -aproned -apropos -après-ski/G -apse/SM -apsis/M -apt/TPY -aptitude/SM -aptly/I -aptness/IS -APU -aqua/MS -aquaculture/MS -aqualung/MS -aquamarine/SM -aquanaut/SM -aquaplane/MDGS -aquarelle/S -aquaria -Aquarian/S -aquarium/SM -Aquarius/M -aquarobics -aquatic/YS -aquavit/SM -aqueduct/SM -aqueous/Y -aquiculture's -aquifer/MS -Aquila -aquiline -Aquinas -Aquitaine/M -aquittal -Arab/MS -arabesque/MS -Arabia/M -Arabian/SM -Arabic/M -Arabically -Arabicism -Arabidopsis -arability/MS -arabin -arabine -arabinogalactan -arabinogalactane -arabinose -arabinoside -arabis -Arabism -Arabist/S -arable/S -arachnid/SM -Arachnida -arachnoid/M -arachnophobia -Arafat/M -Aragon/M -aragonite -aragonitic -Aral/M -araldite -Aramaic -araneid/S -araneous -Arapaho/M -Ararat/M -Araucanian/S -Arber/M -arbiter/MNnS -arbitrage/DGRSM -arbitrageur/S -arbitral -arbitrament/MS -arbitrariness/S -arbitrary/PY -arbitrate/VSGD -arbitration/M -arbitrator/MS -arboreal/Y -arboretum/SM -arboriculture/O3 -arborist -arborvitae/SM -arbour/MDS -arbovirus/S -Arbroath/M -arbutus/MS -arc/SMDG -arcade/SDGM -Arcadia/M -Arcadian -arcana/M -arcane/Y -arcaneness -arcanum -Arcata/M -arccos -arccosine -arch-enemy/SM -arch/yTDRYSPGM -archaea -Archaean -archaean/S -archaebacteria -archaebacterial -archaebacterium -archaeoastronomy -archaeologic -archaeology/w3SM1 -archaeomagnetic -archaeomagnetism -archaeopteryx -archaic/Y -archaicness -archaise/RDSG -archaism/MS -archaist/MS -archangel/MSW -archbishop/MS -archbishopric/SM -archboard -archdeacon/yMS -archdevil/S -archdiocesan -archdiocese/MS -archducal -archduchess/SM -archduchy/S -archduke/MS -archegonia -archegonium -archery/M -archetypal -archetype/wMS -archfiend/MS -archfool -Archibald/M -Archie/M -archiepiscopacy/S -archiepiscopal -archiepiscopate -Archimedes -arching/M -archipelago/SM -archipelagoes -architect/SM -architectonic/SY -architectonics/M -architectural -architecture/oSM -architrave/SM -archival -archive/DRS3MG -archivolt/S -archness/S -archosaur/S -archpriest/S -archway/SM -arclike -ARCO -arcology/S -arcsin -arcsine -arctangent -arctic -Arctic/M -arctophile/S -arctophilia -arctophilist -arctophily -Arcturus -Arden/M -ardency/M -Ardennes -ardent/Y -ardour/SM -Ards/M -arduous/YP -arduousness/S -are/B -area/MS -areal -areawide -aren't -arena/MS -arenaceous -arenavirus/S -arenosol/S -areola -areolae -areolar -areolate -areole/S -areological -areologist/S -areology -Ares -Aretha/M -argent/M -Argentina/M -Argentine/SM -Argentinian/S -arginine -argon/M -Argonaut/SM -Argos -argosy/MS -argot/SM -arguable/YIU -arguably/IU -argue/7DRSG -argued/e -argues/e -arguing/e -argument/SnMN -argumentation/M -argumentative/PY -argumentativeness/S -argumentless -Argus -argy -argy-bargy/SD -Argyll/M -argyrophilic -aria/SM -Ariadne/M -Arial -Arian/SM -Ariana/M -Arianism/M -arid/PY -aridity/SM -Ariel/M -Aries/M -aright -aril/S -arillate -arise/SGJ -arisen -ariser -aristo/S -aristocracy/SM -aristocrat/WM1S -Aristophanes -Aristotelian/SM -Aristotle/M -arithmetic/YM -arithmetical -arithmetician/MS -arithmetise/SGD -arithmetize/SGD -Arizona/M -ark/MS -Arkansan/S -Arkansas/M -Arkwright/M -Arlen/M -Arlene/M -Arlette -Arlington/M -arm's -arm-wrestle -arm-wrestling -arm/RELGDS -armada/SM -armadillo/SM -Armageddon/M -Armagh/M -Armagnac -armamentaria -armamentarium -Armani/M -armature/DMGS -armband/MS -armchair/SM -Armco -armed/UA -Armenia/M -Armenian/MS -armful/SM -armhole/SM -arming/M -Arminian/S -Arminianism -armistice/MS -armless -armlet/SM -armload/MS -armlock/S -armoire/S -Armonk/M -armorial -armour-plate/D -armour/SRDGMZ -armoury/SMD -armpit/MS -armrest/SM -arms/Afc -Armstrong/M -army/MS -Arne/M -Arnold/M -aroma/WSM1 -aromantic/S -aromanticism -aromatherapeutic -aromatherapist/MS -aromatherapy/S -aromatic/PS -aromaticity/M -arose -around -arousal/SM -arouse/SDG -ARPA -Arpanet/M -arpeggio/SM -arr -arrack/M -arraign/LGDS -arrange/LRSDG -arrangeable -arranged/EKA -arranges/AEK -arranging/AEK -arrant/Y -arras/M -array/EGMSD -arrayer -arraylike -arrearage -arrears -arrest/Rk7DGS -arrested/A -arrestee/SM -arrestor/SM -arrests/A -arrhythmia/SM -arrhythmic -arrhythmical -Arriaga/M -Arriva/M -arrival/MS -arrive/GSD -arriver/M -arrivisme -arriviste/S -arrogance/SM -arrogant/Y -arrogate/DNGnS -arrogation/M -arrondissement/S -arrow/MGSD -arrowgrass -arrowhead/SM -arrowroot/MS -arroyo/MS -arse-licker -arse-licking -arse/SGD -arsehole/SD -arsenal/SM -arsenate/MS -Arsenault/M -arsenic/SM -arsenide/M -arsenopyrite -arsewipe -arsine/MS -arson/3SM -arsonist -arsphenamine -art/6MjZ32pS -Artaud/M -Arte -artefact/SM -artefactual -Artemis -artemisia/S -arterial -arteriolar -arteriole/SM -arterioscleroses -arteriosclerosis/M -arteriovenous -artery/MSo -artesian -artful/P -artfulness/S -arthralgia -arthritic/S -arthritides -arthritis/M -arthrogram/MS -arthroplasty -arthropod/MS -Arthropoda -arthroscope/SW -arthroscopy -Arthur/M -Arthurian -artichoke/SM -article/MSDG -articulable/I -articulacy/I -articular -articulate/nPSGyYDNV -articulated/EU -articulately/I -articulateness/S -articulation/M -articulator/MS -Artie/M -artifice/oMRS -artificial/P -artificiality/SM -artillery/3mSM -artiness/S -artiodactyl/S -artisan/MS -artist/W1y -artiste/MS -artistic/IY -artistry/MS -artless/YP -artlessness/S -Arturo/M -artwork/MS -arty/3TP -Aruba/M -arum/MS -Aryan/SM -Aryeh/M -aryl -arytenoid/S -arête/MS -as -asana/S -asap -Asaph/M -asbestos/SM -asbestosis -ASBO/S -ascaris -ascend/RXDGSN -ascendancy/MS -ascendant/Y -ascended/A -ascendency -ascends/A -ascension/M -ascent/MS -ascertain/L7SDG -ascetic/MYS -asceticism/SM -Ascher/M -ascidian/S -ASCII -ascorbate/S -ascorbic -Ascot/M -ascribable -ascribe/NDGXSV -ascription/M -asepsis -aseptic/Y -asexual/YS -asexuality/SM -Asgard/M -ash/SMDGZ -ashamed/UY -Ashanti/M -Ashbee/M -ashen -asher -Asheville/M -Ashford/M -Ashgabat/M -Ashgate/M -Ashland/M -ashlar/dSM -Ashley/M -Ashmolean -Ashmore/M -ashore -ashram/SM -ashtanga -Ashtar -Ashtaroth/M -Ashton/M -ashtray/SM -Ashworth/M -ashy/T -Asia/M -Asian/SM -Asiatech/M -Asiatic/MS -aside/S -asimilar -Asimov/M -asinine/Y -asininity/SM -ask/DRSG -askance -asked/U -askew -askewness -ASL -aslant -asleep -Asmara/M -asocial -asp/MWS -asparagine -asparagus/SM -aspartame/S -aspartate/S -aspect/MSGD -AspectJ -aspectual -Aspell -aspen/MS -asperity/SM -aspersion/SM -asphalt/SGDM -asphalter -aspheric/Y -aspherical -asphodel/SM -asphyxia/MSn -asphyxial -asphyxiant/S -asphyxiate/SDG -asphyxiation/M -aspic/MS -aspidistra/SM -aspirant/SM -aspirate/SGD -aspiration/M -aspirator/SM -aspire/xSDnGN -aspirer/M -aspirin/SM -asplenia -asplenium -Asquith/M -ass/S8M -Assad/M -assail/7DSG -assailable/U -assailant/MS -Assam/M -Assamese -assassin/NSnM -assassinate/SGD -assassination/M -assault/GSVuMvD -assaulter/M -assay/GDRS -assemblage/SM -assemble/SGREDY -assembled/AU -assembles/A -assemblies/A -assembling/A -assembly's/AE -assembly/m5SM -assen -assent/GMSD -assenter -Asser/M -assert/xvuRSDVG -asserted/A -assertion/MAS -assertive/P -assertiveness/S -asserts/A -asses/GD -assess/7LS -assessed/A -assesses/A -assessor/SM -asset/SM -asseverate/SGnDN -asseveration/M -assibilate/DN -assiduity/SM -assiduous/PY -assiduousness/S -assign/RL7DSNGn -assignation/M -assigned/KACU -assignee/MS -assigning/K -assignor/SM -assigns/KCA -assimilable -assimilate/DSVGnN -assimilation/M3 -assimilationist -Assisi/M -assist/SGD -assistance/MS -assistant/MS -assistantship/SM -assisted/U -assister/M -assistive -assize/M -assn -associability -associable -associate/EDSGnN -associateship/S -association's/E -association/oM -associational -associationism -associationist/S -associative/Y -associativity/S -associator/MS -assonance/SM -assonant/S -assort/GDLS -assorter/M -asst -assuage/LDSG -assuaged/U -assume/GNXBSDV -assumedly -assumer/M -assuming/U -assumption/M -assurance/SAM -assure/GASkD -assured/PY -assurer/MS -Assyria/M -Assyrian/MS -Assyriology -Astana/M -astanga -astatine/SM -aster/FSEM -asterisk/SDGM -astern -asteroid/SM -asteroidal -Asteroidea -asthenia -asthenic -asthenosphere/W -asthma/WSM -asthmatic/S -asthmatically -astigmatic -astigmatism/MS -astilbe/S -astir -Astley/M -Aston/M -astonish/SLkDG -Astor/M -Astoria/M -astound/kGSD -astraddle -astragal/S -astragali -astragalus -Astrakhan -astral/Y -astray -astride -astringency/SM -astringent/YS -astro-archaeology -astrobiological -astrobiologist/S -astrobiology -astrobleme/S -astrochemical -astrochemist/S -astrochemistry -astrocompass -astrolabe/SM -astrologer/MS -astrology/w1MS3 -astrometry/W -astronaut/WwSM -astronautic/S -astronautics/M -astronomer/SM -astronomy/1MWSw -astrophotographer/S -astrophotographic -astrophotography -astrophysical -astrophysicist/SM -astrophysics/M -astroturfing -astrovirus -Asturian/S -Asturias -astute/TPY -astuteness/S -Asunción/M -asunder -ASUS -Aswan/M -asylee/S -asylum-seeker/S -asylum/MS -asymmetry/WwS1M -asymptomatic/Y -asymptote/1MSW -async -asynchronicity/S -asynchronism/M -asynchronous/Y -asynchrony -asystole -At -at/F -ATA -Atacama/M -ATAPI -ataractic -ataraxia -ataraxic -ataraxy -Atari/M -atavism/MS -atavist/SMW -ataxia/MS -ataxic -atbash -ATC -ate/c -atelier/SM -atemporal -atenolol -ates -Athanasius/M -atheism/MS -atheist/M1SW -athematic -Athena/M -Athenaeum -Athenian/SM -Athens/M -atherogenesis -atherogenic -atheroma -atheromatous -atheroscleroses -atherosclerosis/M -atherosclerotic -Atherton/M -athirst -athlete/1SMW -athletic/S -athleticism/M -athletics/M -Athlon/M -athwart -atilt -Atkin/M -Atkins/M -Atkinson/M -ATL -Atlanta/M -Atlantean -atlantes -Atlantic/M -Atlantis -atlas/MS -Atlee/M -ATM/MS -Atman/M -atmosphere/MS1DW -atmospheric/S -atoll/MS -atom/Qs-98MqS -atomic/Y -atomicity/MS -atomics/M -atomism -atomist/S -atomistic -atonal -atonalism -atonalist/S -atonality/SM -atone/SoLDG -atonic -atony -atop -atopy/W -atrabilious -atrabiliousness -atraumatic -atrazine -atria -atrial -atrioventricular -atrium/MS -atrocious/PY -atrociousness/S -atrocity/SM -atrophy/MDWGS -atropine/SM -attach/SDRL7GM -attached/AU -attaches/A -attaché/S -attack/RSDG7M -attain/lDRBGLS -attainability/MS -attainable/P -attainably/U -attainder/MS -attained/AU -attainment/A -attains/A -attar/MS -attempt/DRGS -attempted/A -attempts/A -attend/SRGD -attendance/MS -attendant/MS -attended/U -attendee/SM -attention/ISM -attentional/Y -attentionality -attentive/PIY -attentiveness/IS -attenuate/GnSDN -attenuated/U -attenuation/M -attenuator/SM -Atterbury/M -attest/DnGNS -attestable -attestation/M -attested/U -attester/M -attestor/S -attic/MS -Attica/M -Attila/M -attire/DGS -attitude/MS -attitudinal/Y -attitudinise/GDS -attorney/MS -attornment -attract/VuS7DGv -attractant/SM -attraction/MS -attractive/UY -attractiveness/SM -attractor/SM -attributable/U -attribute/MxGVvDS -attributed/U -attributer/M -attribution/SM -attrition/SMO -attune/DSG -attunement -atwitter -Atwood/M -ATX -atypical/Y -au -aubergine/MS -aubretia/S -Aubrey/M -aubrietia/S -auburn/SM -Auchan/M -Auckland/M -auction/DMGS -auctioneer/DSMG -AUD -audacious/PY -audaciousness/S -audacity/SM -audax/S -Audi/M -audibility/MIS -audible/YI -audibly/I -audience/SM -audio/M -audioboard/S -audiobook/S -audiogram/S -audiology/S3Mw -audiometer/SWM -audiometry/M -audiophile/MS -audiospectrogram -audiospectrograph -audiospectrometer -audiotape/SGD -audiovisual/S -audit/dXyMVSN -auditability -auditable -audited/U -audition/DMG -auditor/MS -auditorial -auditorium/SM -Audra/M -Audrey/M -Audubon/M -Aug -auger/MS -aught -augite -augment/NnDRGS -augmentation/M -augmentative/S -augur/dMS -augury/SM -August's -august/YPT -Augusta/M -Augustan -Augustine/M -Augustinian -augustness/S -Augusts -Augustus -auk/SM -auklet/S -aunt/ZSM -auntie/M -aunty/MS -aura/WSMo -aural -aurei -Aurelius -aureole/MDSG -aureomycin -aureus -auricle/SM -auricula/S -auricular -auriculate -auriculotherapy -auriferous -aurify/SGD -Auriga -Aurignacian -aurora/SM -aurorae -auroral -Auschwitz -auscultate/DGSNn -auscultation/M -auscultatory -auspice/SM -auspicious/IY -auspiciousness/MS -Aussie/MS -austenite/W -austere/YPT -austerity/MS -Austerlitz/M -Austin/M -austral -Australasia/M -Australasian/S -australes -Australia/M -Australian/SM -Australis -australites -australopithecine/S -Australopithecus -Austria/M -Austrian/MS -autarchy/WSw -autarky/SW -autecological -autecology -auteur/S -auteurism -auteurist -auth/SGD -authentic/nNY -authenticate/DSG -authenticated/U -authentication/M -authenticator/MS -authenticities -authenticity's -authenticity/I -authigenic -author/Qs-9d8qSM -authorable -authoress/S -authorial -authorise/KA -authorised/AU -authorises/A -authorising/A -authoritarian/S -authoritarianism/MS -authoritative/YP -authoritativeness/S -authority/SM -authorization/M -authorize/KA -authorized/AU -authorizes/A -authorizing/A -authorship/MS -autism/MS -autistic -auto -auto-suggestibility/M -autobahn/MS -autobahnen -autobiographer/SM -autobiography/M1SwW -AutoCAD/M -autocatalysis -autocatalyst/S -autocatalytic -autocephalous -autochange/R -autochrome/S -autoclave/MDSG -autocollimator/M -autocomplete/SD -autocompletion -autoconfigure/SGDN -autoconfirm/SGDN -autocorrect/SDG -autocorrelate/GSnDN -autocorrelation/M -autocracy/SM -autocrat/MWS1 -autocrime/S -autocrine -autocross -autocue -autodetect/SGD -autodetection -autodial/DGRS -autodidact/SMW -autodiscovery -autoecology -autofill -autofit/SGD -autofluorescence -autofocus/d -autoformat/SGD -autogamous -autogamy -autogenesis -autogenetic -autogenic/S -autogeny -autogiro/MS -autograft/S -autograph/ZWGMSD -autogyro/MS -autoharp -autohypnosis -autohypnotic -autoignition/M -autoimmune -autoimmunity/S -autoincrement/SGD -autointoxication -autokey -autokinesis -autokinesy -autokinetic -autokinetical -autoland/SG -autolaryngoscope -autolaryngoscopy -autolatry -autoload/SGDR -autologous -autolysis -autolytic -automagically -automata -automate/D8NQWGSn1 -automatic/S -automaticity -automation/M -automatism/SM -automatist -automaton/MS -automorphism/SM -automotive -autonomic/S -autonomous/Y -autonomy/SMW -autophagosome -autophagous -autophagy -autophon -autophone -autopilot/MSd -autoplay/SGD -autopsy/SMDG -autoradiograph/ZWDS -autorecover -autorecovery -autoregressive -autorepeat/GS -autoresponder -autoreverse -autorickshaw/S -autorotate/SGD -autorotation/S -autoroute/S -autosave/SGD -autoscopy -autoshaping -autosomal -autosome/S -autostereoscopic -autostereoscopy -autosuggestion -autosuggestion -autotest/S -autotoxic -autotoxin/S -autotransformer/MS -autotransplant/NDS -autotroph/S -autotrophic -autotrophy -autotune/SGDR -autotype/S -autowind/SGR -autowound -autoxidation -autoxidise/SGD -autoxidize/SGD -autumn/MoS -autumnal -autunite -Auvergne -auxiliary/S -auxin/MS -auxotroph/SW -AV -avail/BlSDG -availabilities -availability/UM -available/P -availing/U -avalanche/GSMD -Avalon/M -avant -avant-garde/3 -avant-gardism -avarice/MS -avaricious/YP -Avarua/M -avast/S -avatar/SM -avaunt/S -AVCHD -ave/S -Avebury/M -avenge/DGRS -avenged/U -avens -avenue/SM -aver/SGD -average/GMDSY -averageness -averment/S -Avernus -averse/PNXVY -aversion/M -avert/GbSD -Avery/M -Aves -Avesta -avgas -AVI -avian/S -aviary/SM -aviate/DGnN -aviation/M -aviator/MS -aviatrices -aviatrix/SM -avicularia -avicularium -avicultural -aviculturalist/S -aviculture -aviculturist/S -avid/Y -avidity/MS -avidness -avifauna -avifaunal -avionic/S -avionics/M -Avis/M -avitaminoses -avitaminosis/M -Aviv/M -Aviva/M -avocado/MS -avocation/MoS -avocational -avocet/S -avoid/RSDGl7 -avoidable/U -avoidably/U -avoidance/MS -avoidant -avoirdupois/M -avoision -Avon/M -avoparcin -avouch/DSG -avow/GSED -avowal/SEM -avowed/Y -avower/M -Avram/M -avulse/SGD -avulsion -avuncular -avunculate -AWACS -await/SDG -awake/SG -awaken/dJS -awakened/AU -awakener/M -awakens/A -award-winning -award/DRGS -awardee/S -aware/P -awareness/U -awarenesses -awash -away -awayness -awe-inspiring/Y -awe/SMDG -awed/c -aweigh -awes/c -awesome/YP -awesomeness/S -awestricken -awestruck -awful/TPY -awfulness/S -awhile -awing/c -awk/S -awkward/YPT -awkwardness/S -awl/SM -awn/SMDJG -awning/MD -awoke -awoken -AWOL -awry/T -axe/DmMGS -axed/F -axehead/S -Axel/M -axes/F -axial/FY -axil/S -axilla -axillae -axillary -axinite -axiology/SM1w -axiom/SWM1 -axiomatising -axiomatizing -Axis -axis/M -axisymmetric -axle/SM -axolotl/MS -axon/MSO -axoneme/SO -ayah/SM -ayatollah/S -Ayckbourn/M -aye/MS -Ayers -Aylesbury/M -Aymara/S -Ayr/M -Ayrshire/MS -Ayurveda -Ayurvedic -azalea/MS -Azam/M -Azania -Azanian -azarole/S -azeotrope/SW -Azerbaijan/M -Azerbaijani/S -Azeri/M -AZERTY -azidothymidine -Azikiwe/M -Azilian -azimuth/SMo -azimuthal -Aziz/M -Azizur -Azores -Azov -Azrael -AZT -Aztec/SM -Aztecan -azulejo/S -azure/SM -b'day -B-film/S -B-movie/S -b.c.c. -B.Sc. -b/pb -ba -Ba -BA -baa/GSD -Baal/M -Babbage/M -Babbitt/M -babble/RGDS -Babcock/M -babe/SZM -babel -babesiosis -baboon/SM -Babs/M -babushka/MS -baby-doll -baby-faced -baby/DTMSG -babyccino/S -babycino/S -babyfather/S -Babygro/S -babyhood/MS -babyish/YP -Babylon/M -Babylonia -Babylonian/MS -babysat -babysit/RSG -baccalaureate/SM -baccarat/MS -bacchanal/SM -bacchanalia -bacchanalian -Bacchanalian/S -Bacchus -Bach/M -bachelor/MS -bachelorhood/SM -bacillary -bacilli -bacilliform -bacillus/MS -back-door -back-pedal/GD -back-seat -back-to-back -back-up/S -back/eM -backache/MS -backarrow -backbeat/S -backbench/SR -backbend/S -backbite/RS -backbiting -backboard/SM -backbone/MS -backbreaking -backcast/SG -backchaining -backchannel/S -backchat -backcloth/M -backcourt/S -backcrawl -backcross/SDG -backdate/DSG -backdoor/SGD -backdraught -backdrop/DSMG -backed -backer/SM -backfield/MS -backfill/SGD -backfire/GDS -backflip/S -backflow -backgammon/MS -background/DRGSM -backhand/hRMSGD -backhoe/S -backing/SM -backlash/SDGM -backlasher -backless -backlift -backlight/DG -backline -backlink/S -backlist/S -backlit -backload/DS -backlog/DGMS -backlot/S -backmarker/S -backmost -backorder -backpack/SRDGM -backplane/MS -backplate/MS -backport/SGD -backrest/SM -backronym/S -backs -backscatter/dMS -backscroll -backshift -backside/MS -backsight/S -backslapper/SM -backslapping/M -backslash/GSD -backslid/r -backslide/GS -backspace/DGS -backspin/SM -backstabber/M -backstabbing/S -backstage -backstairs -backstamp/S -backstay/S -backstitch/MSGD -backstop/MSGD -backstory/S -backstreet/MS -backstretch/MS -backstroke/DGMS -backstroker/S -backtalk/S -backtick/S -backtrace/SGD -backtrack/RGSD -backup/MS -Backus -backward-compatible -backward/PSY -backwardness/S -backwards-compatible -backwash/DGMS -backwater/MS -backwind/SGD -backwood/mS -backyard/SM -bacon/SM -baconer/M -Baconian/S -bacronym/S -bacteraemia -bacteria/Mo -bacterial -bactericidal -bactericide/MS -bacteriology/MwW3S -bacteriophage/S -bacteriophobia -bacteriophora -bacteriostasis -bacteriostat/S -bacteriostatic -bacteriostatically -bacterium/M -bacteriuria -bacteroid/S -Bactria -Bactrian -bacula -baculovirus/S -baculum -bad-egg -bad-tempered -bad/PY -baddie/MS -baddish -baddy -bade -Baden/M -badge/SRGMD -badger-baiting -badger/d -badinage/SDMG -badland/S -badman/M -badmen/M -badminton/M -badmouth/DGS -badness/S -Badoo/M -badware -BAE -BAe -Baedeker/M -Baez/M -Baffin/M -baffle/RDLGkS -bag/2ZzR6MGDS -bagatelle/SM -bagel/SM -bagful/SM -baggage/mSM -bagged/M -bagginess/S -bagging/M -baggy/TPS -baggywrinkle -Baghdad/M -bagpipe/MRS -baguette/MS -bagwash -bagworm/S -bah/S -Bahamas/M -Bahamian/S -Bahnson/M -Bahrain/M -baht -Baikal/M -bail/7MDGS -bailee/MS -bailer -Bailey/M -bailey/S -bailiff/MS -bailiwick/SM -bailment -bailor -bailout/MS -bails/m -bain-marie/S -Bain/M -Baird/M -Bairiki/M -bairn/SM -bait/SMGD -baitcaster/S -baitcasting -baiter/M -baitfish -baize/M -Baja/M -bake/RGSDy -baked/U -bakehouse/M -Bakelite/M -Bakersfield/M -bakery/MS -bakeware -baking/M -baklava/M -baksheesh/MS -Baku/M -Bakula/M -balaclava/MS -balalaika/MS -balance/DMIS -balanced/cAeU -balancedness -balancer/SM -balances/cAeU -Balanchine/M -balancing/AcUe -balanitis -balboa/MS -balcony/DSM -bald/PGYTDZ -balder/W -balderdash/SM -baldness/S -baldric/M -Baldry/M -Baldwin/M -bale/R6GjSMD -Balearic/M -baleen/SM -baleful/TP -balefulness/S -Balfour/M -Balharry/M -Bali/M -balibuntal -Balinese/M -balk/SD -Balkan/SM -balkanise/GSnD -balkanize/GSnND -ball-bearing/S -ball/DRGSM -Balla/M -ballad/MyS -ballade/MS -balladeer/MS -balladry/SM -Ballagh/M -Ballard/M -ballast/SMGD -ballastless -ballboy/S -ballcock/S -ballerina/MS -ballet/MWS -ballfields -ballgame/S -ballgirl/S -ballgown/S -Balliol/M -ballistic/S -ballistically -ballistics/M -Ballmer/M -balloon/3RSMDG -balloonist -ballot/dMS -balloter/M -ballotine/S -ballpark/MS -ballplayer/SM -ballpoint/MS -ballroom/SM -balls/Z -ballsy/T -ballyhoo/MDGS -Ballymena/M -Ballymoney/M -balm/M2ZS -balminess/S -Balmoral/M -balmoral/S -balmy/TP -balneological -balneologist/S -balneology -balneotherapy -Balog/M -baloney/SM -Balrog/M -balsa/SM -balsam/dMS -balsamic -Baltic/M -Baltimore/M -Baltistan/M -Baluchistan/M -balun -baluster/MS -balustrade/MS -balustraded -Balzac/M -Bamako/M -Bamber/M -Bambi/M -bamboo/SM -bamboozle/GDS -ban/SoRMDG -banal -banality/SM -banana/MS -bananaquit/S -banausic -Banbridge/M -Banbury/M -bancassurance -bancassurer/S -Bancroft/M -band/DmGZSM -bandage/SDMG -bandager/M -bandanna/M -Bandar/M -bandbox/SM -bandeau/M -bandeaux -banded/E -bander/M -bandfish -bandicoot/S -banding's -banding/E -bandit/MS -banditry/SM -banditti -bandleader/S -bandmaster/MS -bandmate/S -bandoleer/SM -bandolero/S -bandoneon -bandpass/S -bands/E -bandstand/SM -bandstop -bandwagon/SM -bandwidth/SM -bandy-bandy -bandy-bandys -bandy-legged -bandy/DTSG -bane/M6j -baneful/T -bang/RMDGS -Bangalore/M -Bangkok/M -Bangladesh/M -Bangladeshi/M -bangle/SM -Bangor/M -Bangui/M -banish/GSLD -banisher/M -banister/SM -banjo/SM -banjoist/MS -Banjul/M -bank/S7RGJMD -bankassurance -bankbook/MS -bankcard/S -banking/M -banknote/S -bankroll/GSDM -bankrupt/GSDM -bankruptcy/SM -banner/d -Bannerman/M -bannister/SM -bannock/MS -Bannockburn -banns -banquet/rdSM -banquette/MS -bans/U -banshee/SM -bantam/SM -bantamweight/MS -banter/kdS -banterer/M -Bantu/M -banyan/SM -banzai/S -baobab/MS -bap/S -Baphomet -baphometic -baptise/DRSG -baptism/oSM -baptismal -baptist/SM -baptistery/SM -baptistry's -baptize/SGD -bar's -bar-room/MS -bar/CDESUG -Barack -barb/SRGMDi -Barbados/M -Barbara/M -barbarian/SM -barbarianism/MS -barbaric/Y -barbarise/GDS -barbarism/SM -barbarity/MS -barbarize/DSG -barbarous/YP -Barbary -barbecue/DSMG -barbecuer -barbedwire/MS -barbel/SM -barbell/MS -barber/dy -barberry/SM -barbershop/SM -barbet/S -Barbette/M -barbette/S -barbican/S -Barbie/SM -barbital/M -barbiturate/SM -Barbour/M -Barbuda/M -barbule/S -barcarole/SM -barcarolle -Barcelona/M -barchan/S -Barclay/M -Barclaycard -Barclays/M -barcode/SD -bard/MSDGW -bardolater/S -bardolator/S -bardolatry -Bardstown/M -bare-foot/D -bare/YPDTSG -bareback -bareboat -barefaced/YP -barefoot/D -barehanded -bareheaded -Bareket -barelegged -Barends -bareness/S -Barents -barf/SYGD -barfly/SM -bargain-basement -bargain/DGRSM -barge/DmMSZG -bargepole/M -bargy/DS -barhop/GSD -bariatrics -baritone/MS -barium/M -bark/MDRGS -barked/C -barkeep/RS -Barkley/M -barks/C -barley/MS -barleycorn/SM -Barlow/M -barmaid/SM -barman/M -barmbrack -barmen/M -barmy/PYRT -barn/MDS6G -Barnabas -barnacle/DMS -Barnard/M -Barnes -Barnet/M -Barnett/M -Barney/M -barney/S -barns/6 -Barnsley/M -Barnstaple/M -barnstorm/GRDS -Barnum/M -barnyard/M -Baroda/M -barometer/MS1W -baron/MS -baronage/MS -baroness/SM -baronet/SM -baronetcy/SM -baronial -barony/MS -baroque/SYM -baroqueness -barotrauma -barouche/S -barque/MS -Barr/M -barrack/SGD -barracker/M -barracouta/S -barracuda/SM -barracudina/S -barrage/SMDG -barramundi/S -Barranquilla -barrator/S -barratrous -barratry -Barratt/M -barre/SMJ -barrel/GMDS -barrelfish/S -barrelhead/S -barren/P -barrenly -barrenness/S -barrenwort/S -Barrett/M -barrette/MS -barricade/GDSM -Barrichello/M -Barrie/M -barrier/MS -Barrington/M -barrio/MS -barrique/S -barrister-at-law -barrister/MS -Barron/M -Barroso/M -Barrow -Barrow-in-Furness -barrow/SM -Barry/M -Barrymore/M -Barsky/M -barstool/SM -Barstow/M -Bart/M -bartend/SGD -bartender/SM -barter/rdS -Barth/M -Barthes/M -bartholinitis -Bartholomew/M -Bartlett/M -Bartley/M -Barton/M -Bartók/M -barwing/S -Barwood/M -barycentre/SMW -baryon/MS -baryonic -bas-relief/S -bas/Sd1o -basal -basalt/WSM -base/mYPpLMT -baseball/SM -baseband -baseboard/MS -baseborn -based/C -Basel/M -baselessly -baselessness -baseline/SM -baseload -baseness/S -baseplate/M -baser/C -baserunner/S -bases/C -basetting -bash/Sj6DG -basher -bashful/P -bashfulness/S -bashism/S -basic/SM -basicity -basil/SM -basilar -Basildon/M -basilect/MS -basilectal -basilica/SM -basilican -basilisk/SM -basilosaurus -basin/6MS -basinal -basined -basinful/S -basing/C -Basingstoke/M -basioccipital -basipetal/Y -basis/M -bask/GSD -basket/6SMy -basketball/MS -basketmaker/S -basketmaking -basketry/SM -basketwork/SM -basmati -basophil/SW -basophilia -Basotho -Basque/MS -bass/S3M -Basse-Terre/M -basset/MS -Basseterre/M -Bassett/M -Bassey/M -bassinet/MS -bassline/S -basso/S3M -bassoon/3MS -bassoonist -basswood/SM -bast/DRGM -bastard/Q8q-MSYZ -bastardy/M -baste/nSN -Bastien/M -Bastille/M -basting/M -bastion/MD -Bastogne -bat/FdMS -Batavia/M -batch/DSGM -batcher -bate/CDASG -Bateman/M -bater/C -batfish/S -bath/SRGMD -bathe/S -bathetic -bathhouse/MS -bathmat/S -bathos/MS -bathrobe/MS -bathroom/DMS -bathtub/SM -bathwater -bathymeter/SW -bathymetry -bathypelagic -bathyscaphe's -bathysphere/MS -batik/SM -batiste/SM -batman -batmen -baton/SM -Bator/M -batrachian -bats/m -batsmanship -battalion/MS -batted -batten/MdS -batter/dZMS -batterer/S -battery/MS -Battilana/M -batting/M -battle-cry -battle/RDLMSG -battleaxe/S -battlebus/S -battlecruiser/SM -battledore/SM -battledress -battlefield/MS -battlefront/MS -battleground/SM -battlement/D -battleship/SM -battlespace -battue/S -batty/T -batwing -batwoman -batwomen -bauble/MS -baud/M -Baudot/M -Baudrillard/M -Bauer/M -Bauhaus/M -baulk/GZSMD2 -baulker/M -baulky/TP -Bausch/M -bauxite/M -Bavaria/M -Bavarian/SM -bawd/2ZSMz -bawdiness/S -bawdy/TP -bawl/DGS -bawler/M -Baxter/M -bay/GMDS -Bayamón -Bayard/M -bayberry/MS -Bayer -Bayern -Bayes/M -Bayesian -Baykal/M -Baylor/M -bayonet/dMS -Bayonne/M -bayou/SM -bayside -bazaar/MS -bazillion/S -bazooka/SM -BBC/M -bbl -BBQ -BBS/S -bc -BC -bcc -BCD -BCE -BCG -BD-R/S -BD-RE/S -BD-ROM/S -BD-XL -Bdr -bdrm -BDXL -be/Y -Bea/M -beach/GSDM -beachcomber/SM -Beachcroft/M -beachhead/MS -beachside -beachwear/M -beachy/TP -beacon/dSM -beaconfish/S -bead/ZSMDmJG -beading/M -beadle/MS -beadwork -beadworker -beady/T -beagle/DGSM -beagler/S -beak/MDRS -beakhead -Beale/M -beam-width -beam/SRGMD -bean/DRGSM -beanbag/SM -beanfeast/S -beanie/SM -beano -beanpole/MS -beanstalk/MS -bear-baiting -bear/JlRSG7 -bearable/U -bearably/U -beard/pSGiDM -beardfish/S -Beardsley/M -beargrass -bearing's -bearing/c -bearish/YP -bearishness/S -bearlike -bears/c -bearskin/SM -beast/YSMJ -beasties -beastings/M -beastliness/S -beastly/TP -beat/SlRG7J -beatable/U -beatably/U -beatbox/GSr -beaten/U -beatification/M -beatify/WDGnS1N -beating/M -beatitude/MS -Beatles -beatnik/MS -Beatrice/M -Beatson/M -Beatty/M -beau/SM -Beauchamps -Beaufort/M -Beaujolais -Beauman/M -Beaumont/M -Beaussier -beaut/MZS -beauteous/PY -beautician/MS -beautification/M -beautify/WNRSDnG -beauty/jSM6 -beaux/M -beaver/dSM -Beaverbrook/M -Beaverton/M -bebop/SM -becalm/DGS -became -becaplermin -because -beck/SMDG -Beckenham/M -Becket/M -becket/S -Beckett/M -Beckham/M -Beckmann/M -beckon/Sd -Beckton/M -Becky/M -becloud/SDG -become/SGk -becoming/UY -Becquerel -BECTa -bed's -bed-wetting -bed/F -bedaub/DSG -bedazzle/DLSG -bedbug/SM -bedchamber/SM -bedclothes -beddable -bedded -bedder/SM -bedding/SM -Bede/M -bedeck/DGS -Bedell/M -bedevil/LDGS -bedfellow/SM -Bedford/M -Bedfordshire/M -bedhead/S -bedight -bedim/GSD -bedizen/Sd -bedjacket -bedlam/SM -bedlamp/S -bedlinen -bedload -bedmaker/SM -bedmate/SM -Bedouin/M -bedpan/MS -bedplate -bedpost/SM -bedraggle/DSG -bedridden -bedrock/SM -bedroll/MS -bedroom/SDM -beds -bedsheets -bedside/MS -bedsit/S -bedsitter/M -bedsock/S -bedsore/SM -bedspread/MS -bedspring/SM -bedstead/MS -bedstraw/MS -bedtime/SM -Bedu -Bedworth/M -bee-eater/S -bee-keeper/SM -bee-keeping/M -bee-stung -bee/RSyM -Beeb -Beebe/M -beebread/MS -beech/SM -beechen -beecher -beechnut/MS -beechwood -beef/MD2GZS -beefburger/SM -beefcake/SM -beefeater -beefiness/S -beefsteak/SM -beefwood -beefy/PT -beehive/SM -beehived -beeline/GSD -Beelzebub/M -been -beep/DRSGM -Beerbohm/M -beermat/S -Beersheba/M -beery/T -beestings -beeswax/MDG -beeswing -beet/MS -Beethoven/M -beetle/DMSG -beetler -beetroot/SM -beeves/M -befall/GS -befallen -befell -befit/SGDM -befitting/Y -befog/DGS -before -beforehand -befoul/DSG -befriend/DGS -befuddle/LSDG -beg/SGD -began -Begawan/M -beget/SGT -beggar-my-neighbour -beggar/dMSY -beggarly/P -beggary/M -begin/RJGS -beginning/M -begone/S -begonia/SM -begot -begotten/a -begrime/SDG -begrudge/GDSk -begrudger -beguile/DRLSGk -beguine/SM -begum/SM -begun -behalf/M -behalves -behave/SaGD -behaver/a -behaviour/aSM -behavioural/Y -behaviouralism -behaviouralist/S -behavioured -behaviourism/SM -behaviourist/WMS -Behe/M -behead/DSG -beheld -behemoth/SM -behest/MS -behind/S -behindhand -behold/GSR -beholden -behove/DS -beige -Beijing/M -being/SM -beingness -Beirut/M -bejewel/DGS -Bel -belabour/DGSM -Belarus/M -Belarusian/S -belate/Dih -belated/P -belay/DSG -belch/SGD -beleaguer/Sd -beleaguerment -belemnite/S -Belfast/M -Belford/M -belfry/SM -Belgian/MS -Belgic -Belgium/M -Belgrade/M -Belgrano/M -Belial -Belichick/M -belie -belief's/U -belief/SME -belier/M -believability/M -believable/YU -believably/U -believe/GERDS -believer/UMS -believing/U -believingly -belittle/GLDS -belittler/M -Belize/M -Belknap/M -bell-bottom/S -bell-bottomed -bell-hop's -bell-ringer/S -bell-shaped -bell/SGmMDY -Bella/M -belladonna/SM -Bellamy/M -bellbird/S -bellboy/SM -belle/SM -belletrist/SMW -Belleville/M -Bellevue/M -bellflower/MS -bellhop/MS -Bellhouse/M -bellicose/YP -bellicosity/SM -bellied -belligerence/ZSM -belligerency/SM -belligerent/YSM -Bellinger/M -Bellini/SM -bellow/SDG -bellwether/MS -Bellwood -belly/SfM -bellyache/MSGD -bellyacher/M -bellyband -bellyboard/SRG -bellybutton/SM -bellyflop/SDG -bellyful/S -bellying -Belmarsh -Belmont/M -Belmopan/M -Beloit -belong/GSDJ -belonging/M -belongingness -Belorussia -beloved/S -below -belowground -belt-fed -belt/DGSM -belted/U -belting/M -Belton/M -Beltsville/M -beltway/SM -beluga/SM -belvedere/M -Belview -bely/SDG -Belém/M -beman -Bemba -Bembridge/M -bemire/SDG -bemoan/SGD -bemuse/DLhSG -Ben/M -bench/GSDM -bencher/M -benchmark/DSGM -benchwork -bend/SUG -bendable -bended -bender/SM -bendy/TP -beneath -Benedict/M -Benedictine/SM -benediction/SM -benedictory -benefaction/SM -benefactive/S -benefactor/SM -benefactress/S -benefice/MGoDS -beneficence/MS -beneficent/Y -beneficial/P -beneficiary/SM -benefit/rMdS -Benelux/M -benevolence/SM -benevolent/YP -Benford/M -BEng -benga -Bengal/M -Bengali/M -Benghazi/M -Benidorm/M -benighted/PY -benign/Y -benignant -benignity/SM -Benin/M -Benjamin/M -Benji/M -Bennet/M -Bennett/M -Bennington/M -Bennison/M -Benny/M -Benoni/M -Benson/M -bent/U -Bentham/M -benthic -benthos -Bentley/MS -Benton/M -bentonite -bentwood/SM -benumb/SDG -Benz/M -Benzedrine/M -benzene/SM -benzenoid -benzine/SM -benzoate/S -benzocaine -benzodiazepine/S -benzoic -benzoin -benzyl -Beowulf/M -bequeath/GDS -bequest/SM -Beral/M -berate/SDG -Berber/M -Berberich/M -Berea/M -bereave/LGDS -bereft -Beresford/M -beret/MS -berg/SM -bergamot -Bergen/M -Bergenfield/M -bergenia/S -Berger/M -Bergerac/M -Bergeron/M -Bergman/M -Bergstrom/M -Bergström -beribbon -beribboned -beriberi/MS -Bering -Berk -berk/S -Berkeley/M -berkelium/M -Berkowitz/M -Berkshire/M -Berlin/Mr -Berlinski/M -Berlioz/M -Berlitz/M -Berlusconi/M -berm/MS -Berman/M -Bermuda/M -Bern/M -Berna/M -Bernadette/M -Bernadine/M -Bernard/M -Bernardino/M -Bernardo/M -Berne/M -Bernese/M -Bernhard/M -Bernhardt/M -Bernice/M -Bernie/M -Bernini/M -Bernoulli/M -Bernstein/M -Berrigan/M -berry/SDGM -berrylike -berserk/S -berserker/M -Bert/M -Bertelsen/M -berth/GSDM -Bertha/M -Bertie/M -Bertolucci/M -Bertram/M -Bertrand/M -Berwick-upon-Tweed/M -Berwick/M -beryl/MS -beryllium/M -bes -Besant/M -beseech/RDkSGJ -beseem/DGS -beset/SG -beside/S -besiege/SRDG -besmear/DGS -besmirch/DGS -besom/SdM -besot/SDG -besought -bespangle/DSG -bespatter/dS -bespeak/GS -bespectacled -bespoke -bespoken -Bessel/M -Bessemer -Bessey/M -Bessie/M -best-known -best-seller/S -best-selling -best/SGD -bester -bestial/Y -bestiality/SM -bestiary/SM -bestir/SDG -bestow/DSG -bestowal/SM -bestrew/DGS -bestrewn -bestridden -bestride/SG -bestrode -bestseller/S -bestselling -bestubble/D -bet/MRGSD -beta/MS -Betacam -betaine -betake/SG -betaken -Betamax -betatron/MS -betcha -betel/SM -Betelgeuse -Beth/M -Bethany/M -bethel/M -Bethesda/M -bethink/SG -Bethlehem/M -bethought -betide/DGS -betimes -Betjeman/M -betoken/dS -betook -betray/GRSD -betrayal/SM -betroth/DGS -betrothal/SM -Betsey/M -Betsy -Bette/M -better-off -better/dL -Bettman/M -bettong/S -Betty/MS -between/PS -betwixt -Beulah/M -Bevan/M -bevatron/S -bevel/RSDMG -beverage/SM -Beveridge/M -Beverley/M -Beverly -bevy/MS -bewail/DSG -beware/GSD -bewhisker -bewhiskered -bewigged -bewilder/idLhSk -bewitch/LDSkG -Bewkes/M -Bexley/M -beyond -bezel/MS -bezique -bezoar/S -Bezzi -bf -BFI -Bharat/M -Bharata/M -Bharatanatyam -Bharati/M -Bhavani/M -Bhavnagar/M -Bhopal/M -Bhutan/M -bi-endian -bi-gender -bi-gendered -bi-level -bi/M -biannual/Y -bias/MDSG -biased/U -biassed -biasses -biassing -biathlete/S -biathlon/MS -biaxial/Y -bib/DMGS -bibelot/S -bible/1wMS -biblicist/SM -bibliographer/SM -bibliography/Ww1MS -bibliolater/S -bibliomancy -bibliomane/S -bibliomania -bibliomaniac/M -bibliometric/S -bibliophile/SM -bibliophilic -bibliophily -bibliopole/S -bibliotherapy -bibulous -BIC/S -bicameral -bicameralism/MS -bicarb/SM -bicarbonate/MS -bicentenary/S -bicentennial/S -bicephalous -biceps -Bichette/M -bichromate/MD -bicker/drS -bickering/M -biclique/S -bicolour/D -biconcave -biconnected -biconvex -bicultural -biculturalism -bicuspid/S -bicycle/RG3SMD -bicyclic -bid/RMZdGJS -biddable -bidden/U -bidding/M -Biddle/M -biddy/SM -bide/S -bider/M -bidet/SM -bidiagonal -bidimensional -bidirectional/Y -bids/fcAe -Bielefeld -biennale/S -biennial/SY -biennium/SM -bier/M -biface/S -bifacial -bifid -bifocal/S -bifold -bifunctional -bifurcate/YSGnDN -bifurcation/M -big-boned -big-endian -big-name -big/TGDP -bigamous -bigamy/3MS -Bigelow/M -bigeneric -bigeye/S -Bigfeet -Bigfoot -biggie/MS -biggish -Biggs/M -bigha/S -bighead/MS -bighearted -bigheartedness/S -bighorn/SM -bight/MGDS -bigmouth/MS -bigness/S -bigot/ydSM -bigoted/Y -bigotry/SM -bigram/S -biguanide -bigwig/SM -Biham/M -biharmonic -bijection/SM -bijective/Y -bijou/M -bijouterie -bijoux -bikable -bike/RMSGD -bikeable -bikeshed/SG -bikini/SMD -bilabial -bilateral/YP -bilayer/S -Bilbao/M -bilberry/SM -bilboes -bilby/S -bile/MS -bilge/DGMS -bilharzia -biliary -bilinear -bilingual/YS -bilingualism/MS -bilious/PY -biliousness/S -bilirubin -bilk/DRGS -bill/RM7YDJSG -billboard/SGDM -billet-doux -billet/SdM -billets-doux -billfish/S -billhook/S -Billian/M -billiard/MS -Billie/M -billing/M -billion/MHS -billionaire/SM -billow/DGMZS -billowy/T -billposters -billy-goat -billy/MS -bilobate -bilobed -bilocation -bimbo/MS -bimetallic -bimetallism/SM -bimillenary/S -bimodal -bimolecular/Y -bimonthly/S -bin/DGSM -binary/S -binate -binational -binaural/Y -bind/kRJSG -binder/Z -bindery/SM -binding/PM -bindle/M -binds/AU -bindweed/SM -Binet/M -Bing -bing -binge/DGMS -bingen -Bingham/M -Binghamton -Bingley/M -bingo/SM -binman -binmen -binnacle/SM -binocular/SY -binodal -binomial/SYM -Bintcliffe -Bintley -binuclear -binucleate -binucleated -bio/S -bioaccumulate/SGDN -bioaccumulations -bioacoustics -bioactive -bioactivity -bioadhesive/S -bioarchaeological -bioarchaeologist -bioarchaeology -bioassay/S -bioavailability -bioavailable -biobank/S -biobibliography/S -biocentric -biocentrism -biocentrist/S -biochar -biochemical/SY -biochemist/SyM -biochemistry/SM -biochip/S -biocide/SO -biocircuit/S -bioclast/SW -bioclimatic -biocoenoses -biocoenosis -biocolloid -biocompatibility -biocompatible -biocomplexity -biocomposite -biocomputation -biocomputer/S -biocomputing -biocontrol -bioconversion -biocultural -biocybernetic/S -biodata -biodefence -biodegradability/S -biodegradable -biodegrade/nSGD -biodeterioration -biodiesel -biodigester -biodiversity/S -biodome -biodynamic/S -biodynamical/Y -bioecological -bioecology -bioeconomic/S -bioeffluent -bioelectric -bioelectrical -bioelectricity -bioelectrochemistry -bioelectromagnetic/S -bioelectronics -bioelement -bioenergetic/S -bioenergy -bioengineer/SD -bioengineering/M -bioequivalent -bioethanol -bioethical -bioethicist/S -bioethics -biofeedback/SM -biofilm/S -bioflavonoid/S -biofuel/S -biog/S -biogas -biogeneric/S -biogenesis -biogenetic -biogenic -biogeochemical -biogeochemist -biogeochemistry -biogeographer/S -biogeographical -biogeographically -biogeography/W -biogerontology -biograph/WZRw1 -biographee/S -biography/SM -biohacker/S -biohacking -biohazard/S -bioindicator/S -bioinformatic/S -biol -biologics -biology/w3MW1S -bioluminescence -bioluminescent -biomagnetism -biomarker/S -biomass/MS -biomaterial/S -biomathematics -biome/S -biomechanical -biomechanically -biomechanics -biomechanist -biomedical -biomedicine/M -biometeorology -biometric/S -biometrical -biometrician/S -biometrics/M -biometry/WM -biomineral -biomineralisation -biomineralised -biomineralization -biomineralized -biomolecular -biomolecule/S -biomorph/SM -biomorphic -biomorphism -bion -bionic/YS -bionics/M -bionomic/S -biopesticide -biopharma/S -biopharmaceutical/S -biopharmaceutics -biopharming -biophilia -biophysic/S3Y -biophysical -biophysicist -biophysics/M -biopic/S -biopiracy -bioplasm/W -bioplastic -bioplay -biopoesis -biopolitical -biopolitics -biopolymer/S -biopolymeric -biopotential -biopower -biopreservation -bioprinter -bioprinting -bioprivacy -bioprospecting -bioprospector/S -biopsy/DGMS -bioreactor/S -bioregion/S -bioregional -bioregionalism -bioregionalist/S -bioremediation -bioreserve -biorheology -biorhythm/SW -biorhythmicist -BIOS -biosafety -bioscience/S3 -biosecure -biosecurity -biosensing -biosensor/S -biosignature -biosimilar/S -biosocial -biosolids -biosphere/SMW -biostatistic/S -biostatistical -biostatistician -biostratigrapher/S -biostratigraphic -biostratigraphical -biostratigraphically -biostratigraphy -biosurgery -biosynthesis -biosynthesized -biosynthetic -biosystematics -biosystematist/S -biota/W -biotech -biotechnology/w3SM -biotecture -bioterrorism -bioterrorist/S -biotherapy/S -biotin/MS -biotite -biotransformation -bioturbated -bioturbation -biotype/S -biowarfare -bioweapon/S -bipartisan -bipartisanship/SM -bipartite/Y -bipartition/M -biped/SM -bipedal -bipedalism -bipedality -biphasic -biplane/SM -bipolar -bipolarity/SM -biracial -birch/SGDM -birchen -Bircher/M -bird's-foot/S -bird-like -bird/DRGSM -birdbath/MS -birdbrain/SMD -birdcage/MS -birdhouse/SM -birdie/MDS -birdieing -birdlife -birdlike -birdlime/SMGD -birdling/S -Birdsall/M -birdseed/SM -birdshot -birdsong -birdtables -birdwatch/RG -birefringence/M -birefringent -biretta/MS -Birgit/M -biriani -biriyani -Birk/M -Birkbeck/M -Birkenhead/M -Birman -Birmingham/M -Biro/M -birth/SM -birthday/SM -birthed -birthing -birthmark/SM -birthplace/SM -birthrate/MS -birthright/SM -birthstone/SM -birthweight -birthwort/S -biryani -bis -Biscay/M -Biscayne/M -biscotti -biscuit/MS -biscuity -bisect/GSD -bisection/SM -bisector/SM -biserial -bisexual/MSY -bisexuality/MS -Bishkek/M -bishop/dSM -bishopric/SM -Bishopsgate/M -Bismarck/M -Bismark/M -bismuth/M -bison/M -bisque/MS -Bissau/M -Bisset/M -bistable -bistate -bistoury/S -bistro/SM -bisyllabic -bit's -bit/CS -bitblt/S -bitch/GZDSz2M -bitchiness/S -bitchy/TP -bitcoin/SM -bite/cS -biter/SM -Bithell/M -biting/Y -bitmap/DGMS -BITNET -bitonal -bitonality -Bitrex -bitrot -bitser/M -Bitstream -bitstream -bitten -bitter/YPSd -bittercress -bitterer -bitterest -bitterling/S -Bitterman/M -bittern/MS -bitterness/S -bitternut/M -bitterroot/M -bittersweet/SYP -bittiness -Bittinger/M -BitTorrent -bitty/T -bitumen/MS -bituminous -bitwise -bivalence -bivalent/S -bivalve/SMD -bivariate -bivouac/GMDS -biweekly/S -biyearly -biz/M -bizarre/PY -bizarrerie/S -Bizet/M -bizzes -bk -blab/RSDG -blabber/d -blabbermouth/SM -black-hearted -black/TSPYGD -Blackadder/M -blackball/DGSM -blackberry/DMSG -BlackBerry/SGD -blackbird/GSMD -blackboard/MS -blackbodies -blackboy/S -blackbuck/S -Blackburn/M -Blackburne/M -blackbutt/S -blackcap/S -blackcurrant/SM -blacken/Sd -blackener/M -blackface -Blackfeet -blackfish/S -blackfly/S -Blackfoot/M -blackguard/SDYGM -Blackhawk/M -blackhead/SM -blacking/M -blackish -blackjack/MSDG -blacklead/D -blackleg/DGMS -blacklist/GD -blacklister -blackly/3 -blackmail/RGMDS -Blackman/M -Blackmore/M -blackness/S -blackout/MS -blackpoll/S -Blackpool/M -Blackrod/M -blackshirt/S -Blackshirt/SM -blacksmith/GSM -Blackstone/M -blackthorn/SM -Blackthorne/M -Blackwell/M -Blackwood/M -bladder/MS -bladdernut/M -bladderwort/M -blade/GDMS -Blaenau/M -blag/SGDR -blagueur -blah/MDSG -Blaine/M -Blair/M -Blairism -Blairite/S -Blake/M -Blalock/M -blame/R7SGMpD -blameless/PY -blamelessness/S -blameworthiness/S -blameworthy/P -blanc/M -blanch/DSG -Blanchard/M -Blanche/M -blancher/M -blancmange/MS -bland/TPY -blandish/DGLS -blandness/S -Blandy/M -Blane/M -blank/PDGSTY -blanket/dSM -blanketer/S -blanketing/M -blankness/S -Blanton/M -Blantyre/M -blare/GDS -blarney/GSMD -blaspheme/RDSZG -blasphemous/YP -blasphemy/MS -blast/GRSMD -blasting/M -blastocyst/S -blastoderm -blastoff/SM -blastomycosis -blastula -blastulae -blasé -blatancy/MS -blatant/Y -blatantness -blather/dS -blatherer -blatting -Blavatsky/M -blaxploitation -blaze/RkGDMS -blazon/Sd -blazoner/M -bldg -bleach/GRDS -bleached/U -bleak/TPSY -bleakness/S -blear/SD2GzZ -bleariness/S -bleary-eyed -bleary/TP -bleat/DGS -bleater/M -bled -bleed/RSG -bleeding-heart -bleep/MDGSR -Bleiler/M -blemish/MDSG -blemished/U -blench/DGS -blend/RGSD -blepharitis -blepharoplasty -blepharospasm -bless/hGSDiJ -blessed/U -blessedness/MS -blessing/M -Bletchley/M -Blevins -blew -Bligh/M -blight/DGMS -blighter/M -blimey/S -blimp/MS -blind/SDRTPGkY -blindable -blindfold/DSG -blinding/M -blindness/S -bling -bling-bling -blingy/T -blink/RSGD -blinker/d -blinking/U -blinks/M -blip/DGMS -blipvert/S -bliss/D6jS -blissful/P -blissfulness/S -blister/dMkSZ -blithe/YTP -blitheness/S -blithering -blithesome -blitz/GSDM -blitzkrieg/SM -blizzard/SM -bloat/SDRG -bloatware -blob/SMDG -blobby/T -blobfish/S -bloc/GDMSR -Bloch/M -block's -block/UGDS -blockade/DMGRS -blockage/MS -blockboard -blockbuster/MS -blockbusting/M -blockchain -blockhead/SMD -blockhouse/MS -blockiness -blockish -blocklist/S -blockship/S -blockwork -blocky/T -Bloemfontein/M -Blofeld/M -blog/SBM -blogged -blogger/SM -blogging -bloggy/T -blogosphere -blogroll/S -bloke/MS -blokeish/P -Blomberg/M -Blomquist/M -blond/PMST -blonde/SM -blondish -blondness/S -blood-brother -blood-curdling -blood-heat -blood-money -blood-poisoning -blood-red -blood-wort/M -blood/zhp2MDiZGS -bloodbath/S -bloodhound/SM -bloodied/U -bloodiness/S -bloodish -bloodless/PY -bloodlessness/S -bloodletter -bloodletting -bloodline/MS -bloodlust -bloodroot/MS -bloodshed/SM -bloodshedder -bloodshedding -bloodshot -bloodsport/S -bloodstain/DMS -bloodstock/SM -bloodstone/M -bloodstream/SM -bloodsucker/MS -bloodsucking -bloodthirsty/PTY -bloodwood/S -bloodworm/M -bloodwort -bloody/STPGD -bloodymindedness -bloom/RMDGS -Bloomberg/M -Bloomfield/M -Bloomington/M -Bloomsbury -bloop/SDRG -blossom/dMS -blossomy -blot/GMRSD -blotch/SGMZD -blotchy/T -blotto -Blount/M -blouse/SMGD -blousy/T -blow-by-blow -blow-drier -blow-dry/GD -blow-dryer -blow-out/SM -blow-up/SM -blow/RGZS -blowback/S -blowfish/SM -blowfly/SM -blowgun/SM -blowhole/S -blowing-up -blowing/M -blowlamp/S -blown-up -blown/c -blowout/S -blowpipe/MS -blowsy/TYP -blowtorch/MS -blowy/T -blowzy/T -Blu-ray/S -blubber/dSZ -blubberer -Blucher/M -bluchers -bludgeon/MGSD -blue-black -blue-blooded -blue-collar -blue-eyed -blue-green -blue-pencils -blue/TZGSYPDMJ -blueback -Bluebeard/M -bluebell/SM -blueberry/MS -bluebill/M -bluebird/MS -bluebonnet/SM -bluebook/M -bluebottle/SM -bluebush -Bluefields/M -bluefin -bluefish/SM -bluegill/MS -bluegrass/SM -bluegum/S -blueing's -blueish -bluejacket/SM -bluejeans -blueliner -blueness/S -bluenose/MS -bluepoint/SM -blueprint/GSMD -bluer/M -bluesman -bluesmen -bluest/M -bluestocking/SM -bluesy/T -bluethroat/S -bluetongue -Bluetooth/D -bluff/PSDRGTY -bluffness/S -bluing/M -bluish/P -Blum/M -blunder/dkrJMS -blunderbuss/M -Blunkett/M -blunt/DSTGPY -bluntish -bluntness/S -blur/hGDZSM2 -blurb/GSDM -blurriness/S -blurring/Y -blurry/T -blurt/SGD -blurter -blush/GDkRS -blushing/UY -bluster/rSZdk -blusterous -blvd -Blythe/M -BMW/MS -BMX -BNFL/M -Bo/M -boa/SM -Boadicea/M -boar/MS -board/RMGDSJ -boardgames -boarding/M -boardinghouse/MS -boardroom/SM -boards/e -boardwalk/S -boast/DRG6jJS -boasted/e -boastful/P -boastfulness/S -boasting/e -boasts/e -boat/MDRGS -boatbuilder/S -boatbuilding -boatclubs -boatfly -boathook/S -boathouse/SM -boating/M -boatless -boatlift/SGD -boatlike -boatload/MS -boatman/M -boatmen/M -boatswain/MS -boatyard/SM -bob/MDGSZ -Bobbie/M -bobbin/SM -bobbing/M -bobbish -bobble/SGMD -bobbly -bobby/MS -bobbysoxer's -bobcat/SM -bobolink/S -bobs/M -bobsleigh/RSDMG -bobtail/SMGD -bobwhite/SM -Boca/M -Boccaccio/M -Boccherini/M -boccie/SM -bock/SGD -bockwurst -bod/SMd -bode/SZ -bodega/SM -bodger/S -bodhisattva -bodice/SM -bodied/M -boding/M -bodkin/MS -Bodleian -body-blow -body-builder/SM -body-building -body-check -body-colour -body-piercing -body/pDMSYG -bodyboard/S -bodyboarder/S -bodyboarding -bodybuilder/S -bodybuilding -bodyguard/MS -bodyhood -bodying/M -bodyline -bodyshell/S -bodyside/S -bodysnatcher/S -bodysnatching -bodysuit/S -bodysurf/rG -bodyweight -bodywork/rMS -Boedeker/M -Boeing/M -Boer/SM -Boethius/M -boff/S -boffin -bog/GDMZS -Bogart/M -bogbean/S -bogey/GmMDS -boggle/DGSk -boggy/T -bogie/S -bogland -Bogotá/M -bogus -Bohemia/M -bohemian/S -bohemianism/S -Bohr/M -bohrium -boil/AGSD -boiled/U -boiler/MS -boilermaker/MS -boilerplate/SM -boing -Bois/M -Boise/M -boisterous/YP -boisterousness/S -bokeh -bokken -Bokmål -bola/SM -bold/PYT -Bolden/M -boldface/MGDS -Boldini/M -boldness/S -bole/MS -bolero/MS -Bolivar/M -Bolivia/M -Bolivian/S -boll/MS -bollard/SM -Bollinger/M -bollocking -bollocks -bollworm/S -Bollywood -Bologna/M -bolognaise -Bolognese -bolognese -bolometer/WSM -boloney's -Bolshevik/SM -Bolshevism/M -Bolshevist/WMS -Bolshoi/M -bolster/dS -bolsterer/M -bolt's -bolt-on -bolt/UGSD -bolter/M -bolthole/S -Bolton/M -Boltzmann/M -bolus/MS -bomb/RSMDGJ -bombard/GLDS -bombardier/SM -bombardon/S -bombast/WMS1 -bombaster -Bombay/M -bombazine -bombed-out -bombproof -bombshell/SM -bona -bona fide -Bonanome/M -bonanza/SM -Bonaparte/M -Bonapartism -Bonapartist -bonbon/SM -bond/MmDJRGS -bondage/MS -bondholder/SM -bondwoman/M -bondwomen -bone/pRMSZGD -bonehead/DMS -bonemeal -boneset -boneshaker/S -boneyard -bonfire/SM -bong/SMDG -bongo/MS -Bonham/M -Bonhoeffer/M -bonhomie/SM -Boniface/M -Bonilla/M -boniness/S -bonito/MS -bonkers -Bonn/M -Bonner/M -bonnet/dSM -bonnethead -Bonneville/M -bonnie -bonny/T -Bonnybridge -bonobo/S -bonsai/M -bonus/MS -bony/PT -bonzes -boo/DSG -boob/MDZGS -boobook/S -booby-trap/S -booby/MS -boodle/DMSG -boogeyman's -boogie/SD -boohoo/SDG -book/7GMDRJS -bookaholic -bookbind/RGJ -bookbinder/Z -bookbindery/MS -bookbinding/M -bookcase/SM -booked/cA -bookend/DSG -bookie/MS -booking/M -bookish/YP -bookkeep/RGJ -bookkeeping/M -bookland -booklet/SM -booklice -booklouse -bookmaker/MS -bookmaking/M -bookman -bookmark/GSDM -bookmarker -bookmarklet -bookmen -bookplate/S -bookrest/S -books/cA -bookseller/SM -bookselling -bookshelf/M -bookshelves -bookshop/MS -bookslide -bookstack -bookstall/SM -bookstamp -booksy -bookwoman -bookwork/M -bookworm/MS -Boole/M -boolean -boom/SGD -boomer/MS -boomerang/GSDM -boomy/PT -boon/SM -Boone/M -boonies -boor/MS -boorish/YP -boorishness/S -boost/RGSMD -boosterism -boot's -boot/SAGD -bootable -bootblack/SM -bootboy/S -bootee/SM -booth/MS -Boothtown -bootie/SM -bootlace/S -Bootle/M -bootleg/GSRD -bootlegged/M -bootlegging/M -bootless -bootlick/G -bootlicker/S -bootloader/S -bootmaker/S -bootprints -bootstrap/MDGS -booty/SM -booze/RZGDMS -boozy/T -bop/RGDS -borage -borane/S -borate/DMS -borax/M -Borazon -Bordeaux -Borden/M -border/dMS -borderer/SM -borderland/SM -borderless -borderline/MS -bore/RGSkDW -Boreal -boreal -Borealis -boredom/MS -borehole/S -Borg/M -Borghini/M -Borgnine/M -boride/S -boring/M -boringness -Boris/M -Borkowska -born-again -born-free/S -born/AU -borne/c -Bornean -Borneo/M -Bornholm -Borobudur/M -Borodin/M -Borodino/M -boron/M -borosilicate/M -borough/MS -Boroughbridge -borrow/RGS7JD -borrowing/M -Borsalino/S -borscht/SM -borstal/MS -Bortz/M -borzoi/MS -Bosch/M -Bose/M -bosh/SM -Bosnia-Herzegovina/M -Bosnia/M -Bosnian/SM -bosom's -bosom/UdS -bosomy/T -boson/SM -bosonic -Bosphorus -Bosporus/M -boss/SzG2MDZ -bosser -bossiness/S -bossism/SM -bossy/TP -Boston/M -Bostonian/MS -bosun/M -Boswell/M -bot/S -botanicals -botanise/G -botanize/G -botany/3WSMw1 -botch/SRGD -botfly/M -both/Z -Botham/M -bother/dS -bothersome -Bothwell/M -bothy/M -botnet/S -Botox/D -botryoidal -Botswana/M -Botticelli/M -bottle-fed -bottle-feed -bottle-green -bottle-nosed -bottle/RDGSM -bottlebrush/S -bottleneck/MDGS -bottlenose -bottlescrew/S -bottom-dweller/S -bottom-dwelling -bottom-up -bottom/dSpM -bottomer -bottomless/YP -bottommost -botty/S -botulin/M -botulinum -botulinus/M -botulism/SM -Boucher/M -Bouckaert/M -bouclé -boudoir/MS -bouffant -bougainvillea/M -bough/SM -bought/c -bouillabaisse/M -bouillon/MS -boulder/dMS -boulevard/MS -Boulogne/M -bounce/kZSRG2D -bouncy/YT -bound/ADSG -boundary/MS -bounded/P -bounden -bounder/SM -boundless/PY -boundlessness/S -bounds/e -bounteous/YP -bounteousness/S -bountiful/P -bountifulness/S -bounty/6DjSM -bouquet/MS -bourbon/MS -bourgeois/M -bourgeoisie/MS -bourn/S -Bourne/M -bourne/S -Bournemouth/M -bourses -bourée -boustrophedon -bout/MS -boutique/SM -boutiquey -boutonnière/SM -Bouvier/M -Bouyssou/M -bovine/Y -bow-legged -bow-legs -bow-saw/MS -bow-tie/SM -bow-window -bow/mRGDS -bowdlerise/nDGS -bowdlerize/NnDSG -bowed/U -bowel/SGMD -Bowen/M -bower/d -bowerbird/S -Bowery -Bowes -bowfin/S -bowhead/S -Bowie/M -bowie/S -bowing/M -Bowker/M -bowl/R6MSDG -Bowles/M -bowlful/S -bowline/SM -bowling/M -bowser/MS -bowshot -bowsprit/MS -bowstring/DMGS -bowstrung -bowwow/SDMG -bowyer/SM -box-office -box-shifter/S -box/DZ2RS6GM -boxboard -boxcar/MS -boxfish/S -boxful/M -boxing/M -boxlike -boxtops -boxwood/SM -boxy/T -boy/MS -Boyce/M -boycott/SGD -boycotter/M -Boyd/M -boyer -boyfriend/SM -boyhood/SM -boyish/PY -boyishness/S -Boyle/M -boyscout -boysenberry/MS -bozo/SM -BP -BPD -BPhil -bpi -bpm -bps -BR/M -bra/WpSM -Brabant/M -Brabham/M -brace/SkGDM -bracelet/SM -bracer/M -brachia -brachial -brachiopod/S -Brachiopoda -brachiosaurid -brachiosaurus -brachium/M -brachycephalic -brachycephaly -brachytherapy -bracken/SM -bracket/dSM -bracketing/M -brackish/P -brackishness/S -Bracknell/M -braconid/S -bract/MS -bracteal -bracteate -brad/DSGM -bradawl/M -Bradbury/M -Bradford/M -Bradley/M -Bradman/M -Bradshaw/M -Brady -bradycardia -brae/SMQ -brag/TSDRG -Bragg/M -braggadocio/MS -braggart/MS -Brahma/M -Brahman/MS -Brahmana/S -Brahmanic -Brahmanical -Brahmanism -Brahmaputra/M -Brahmin -Brahms -braid/DGSJ -braider/M -braiding/M -Braille/M -brain-damaged -brain-dead -brain/GD2pMZS -brainbox/S -braincase -braincell/S -brainchild/M -brainchildren -braininess/S -brainless/PY -brainpower/M -brainstem -brainstorm/SMDG -brainstormer -brainstorming/M -brainteaser/S -brainteasing -Braintree/M -brainwash/SGD -brainwasher/M -brainwashing/M -brainwave/S -brainwork -brainy/PTY -brake/SGDM -Bram/M -Bramah/M -bramble/GMYDS -brambling/M -brambly/T -Brampton/M -bran/SDGM -branch-like -branch/SMGD -branchia -branchiae -branchial -branching/M -branchlet/S -branchlike -Branchville/M -branchy -brand/MRGZSD -branded/Ua -Brandenburg/M -brander/d -Brandi/M -branding/a -brandish/SGD -Brando/M -Brandon/M -brands/a -Brandt/M -brandy/GMDS -brandywine -branks -Brannon/M -Branson/M -Brant/M -Braque/M -bras/2GzZD -Brash/M -brash/YSPT -brashness/S -Brasilia/M -brass-necked -brass/MS -brassard/S -brasserie/SM -brassfounder/S -brassiere/MS -brassiness/S -brassy/TSP -brat/MZS -Bratislava/M -bratty/T -bratwurst/MS -Braun/M -braunite -bravado -brave/DYyTGPS -braveness/S -bravery/SM -bravest/M -bravo/GDS -bravura/MS -brawl/MRGSD -brawn/ZSM2 -brawniness/S -brawny/TP -bray/SGD -brayer/M -braze/DSG -brazen/dYP -brazenness/S -brazier/SM -Brazil/M -Brazilian/SM -Brazzaville/M -BrE -breach/DRSGM -bread-and-butter -bread/HDMSG -breadbasket/MS -breadboard/DGMS -breadbox/S -breadcrumb/S -breadfruit/MS -breadhead/S -breadline/MS -breadstick/S -breadth/M -breadwinner/SM -breadwinning -break-bulk -break-fall -break-in/S -break-off -break-up/S -break/eMS -breakable/S -breakage/MS -breakaway/MS -breakbeat/S -breakdance/GRD -breakdown/SM -breaker/SM -breakfast/MRGDS -breakfront -breaking/M -breakneck -breakout/MS -breakpoint/DGMS -breakthrough/MS -breaktime -breakup/SM -breakwater/SM -bream/DSG -Breanne/M -breast/DGMS -breastbone/SM -breastfed -breastfeed/GS -breasthook/S -breasting/M -breastpin/S -breastplate/MS -breaststroke/SM -breaststroker/S -breastsummer -breastwork/MS -breath/RpZDS7JGM -breathability -breathable/U -breathalyse/SD -breathalyser/S -breathe/S -breathing/M -breathless/YP -breathlessness/S -breathtaking/Y -breathy/T -breccia/S -brecciate/SDN -Brechin/M -bred -breech-loaded -breech-loader -breech-loading -breech/SGMD -breeching/M -breed/MRGS -breeding/M -breeze/ZMGSD -breeziness/S -breezy/TPY -Breightmet -Breitinger/M -Bremen/M -bremsstrahlung/M -Brenda/M -Brendan/M -Brennan/M -Brenner/M -Brent/M -Brentford/M -Brentwood/M -Bresenham/M -Bresson/M -bressummer -Brest/M -brethren -Breton/MS -Brett/M -Bretton/M -Breughel -breve/MS -brevet/dMGDS -breviary/SM -brevity/MS -brew/RGMDS -brewer/Z -brewery/SM -brewing/M -Brewster/M -Brexit -Breydon/M -Brezhnev/M -Brian/M -briar/M -bribe/BDRySG -bribery/SM -bric-a-brac -bric-à-brac -bric/DG -Brice/M -brick-red -brick/SM -brickbat/MS -bricker -bricklayer/SM -bricklaying/SM -brickmason/S -brickwork/SM -brickyard/MS -bricolage/S -bridal -bride-to-be -bride/SM -bridegroom/MS -brides-to-be -bridesmaid/MS -Bridewell/M -bridge/MGSD -bridgeable/U -bridgehead/SM -Bridgend/M -Bridgeport/M -Bridger/M -Bridget/M -Bridgetown/M -Bridgewater/M -bridgework/MS -bridging/M -Bridgnorth/M -bridle/MGSD -bridled/U -bridleway/S -Brie -brief/TJSYDPG -briefcase/MS -briefed/C -briefer/C -briefing/M -briefless -briefness/S -briefs/C -brier/SM -Brierly/M -brig/MS -brigade/GDSM -brigadier/SM -Brigadoon/M -brigand/SM -brigandage/SM -brigantine/SM -Briggs/M -Brigham/M -Brighouse/M -bright-eyed -bright/TPGY -brighten/drS -brightness/S -Brighton/M -brill -brilliance/SMZ -brilliancy/SM -brilliant/PSY -brim-full -brim/DGMSp6 -brimstone/SM -Brindisi/M -brindle/MDS -brine/SGDZM -briner/M -bring/RSG -brininess/S -brink/MS -Brinkley/M -brinkmanship/MS -briny/TP -brio -brioche/SM -Briot/M -briquette/SM -Brisbane/M -brisk/TYPG -brisket/SM -briskness/S -bristle/SMYGD -bristlebird/S -bristly/T -Bristol/M -bristols -Brit. -Brit/S -Britain/M -Britannia/M -Britannic -Britannica -britches -Briticism -British/RY -Britishness -Briton/SM -Britt/M -Brittany/M -Britten/M -brittle/DTGPS -brittlely -brittleness/S -Brixit -Brixton/M -BRM -Brno/M -bro -broach/SGD -broacher/M -broad-brush -broad-minded/Y -broad-mindedness -broad/TYS -broadband -broadbill/S -broadcast/SARG -broadcasting/S -broadcloth/SM -broaden/Srd -broadleaf -broadleaved -broadleaves -broadloom/MS -broadloomed -broadness/S -broadsheet/SM -broadside/SMGD -broadsword/MS -Broadway/M -Broadwell/M -Broadwood/M -brocade/DMSG -broccoli/MS -brochette/SM -brochure/SM -Brock/M -Brockden -Brockmeier/M -Brodie/M -Broederbond/M -brogue/SM -broil/GRSD -broke/RG -broken-down -broken-hearted/Y -broken-heartedness -broken/UY -brokenness/M -broker/d -brokerage/MS -brolly/S -bromance -bromantic -bromeliad/S -Bromford/M -bromide/SMW -bromine/M -Bromley/M -Bromsgrove/M -Bromwich/M -bronc/S -bronchi/M -bronchial -bronchiolar -bronchiole/MS -bronchiolitis -bronchitic/S -bronchitis/MS -bronchodilation -bronchodilator/S -bronchogenic -bronchopneumonia -bronchoscope/S -bronchoscopic -bronchoscopy -bronchospasm -bronchus/M -bronco/MS -broncobuster/MS -Bronson/M -brontosaur/SM -brontosaurus/SM -Bronx/M -bronze/SMGDR -bronzed/M -bronzing/M -bronzy -brooch/SM -brood/GM2ZRSDk -broodmare/SM -broody/TP -brook/DSMG -Brookes/M -Brookhaven/M -Brookhouse/M -Brooklands/M -brooklet/SM -Brooklyn/M -Brooks/M -brookside -brookweed -broom/GMSD -broomball/M -Broome/M -broomstick/MS -Bros. -brose -broth/RMS -brothel/SM -brother-in-law -brother/dY -brotherhood/MS -brotherliness/S -brotherly/P -brothers-in-law -brougham/SM -brought -brouhaha/MS -brow/SM -Broward -browbeat/GS -browbeaten -browbeater/S -brown/DTSMPGY -Browne/M -Brownell/M -brownfield -Brownian -brownie/SMT -browning/M -brownish -brownness/S -brownout/SM -brownstone/MS -browntop -Brownwood/M -brows/SDRBG -browse -Broxbourne/M -Broxtowe/M -Brozman/M -brr -Bruant/M -Brubeck/M -Bruce/M -brucellosis/M -Bruckner/M -Brudenell/M -Bruegel -Brueghel -bruin/SM -bruise/RGSDJ -bruit/S -brunch/SDGM -Brundtland/M -Brunei/M -Brunel/M -brunet/S -brunette/MS -Bruno/M -Brunschwig/M -Brunswick/M -brunt/DMGS -bruschetta -brush-off/S -brush-turkey/S -brush-up -brush/ZGSDM -brushback/S -brusher/M -brushfire/SM -brushier -brushless -brushlike -brushstroke/S -brushtail -brushwood/SM -brushwork/SM -brusque/PTY -brusqueness/S -Brussels/M -brutal/qQ8- -brutalism -brutalist -brutality/MS -brute/GSMoD -bruter -brutish/PY -brutishness/S -Brutus/M -bruxism -Bryan/M -Bryant/M -Bryce/M -Bryde/M -Bryn/M -bryological -bryologist/S -bryology -Bryon -bryony/S -bryophyte/S -bryophytic -bryozoan/S -BSA -BSc -BSD -BSE -BSkyB/M -BSOD -BTC -BTU -BTW -bu. -bubble/GYSMD -bubblegum/S -bubbly/T -bubo/M -buboes -bubonic -bucatini -buccal -buccaneer/GDSM -buccinator/S -Bucephalus -Buchanan/M -Bucharest/M -Buchenwald/M -buck-passing -buck/SMDG -buckbean/S -bucker/M -bucket/Sd6M -bucketful/SM -bucketwheel/S -buckeye/MS -buckhorn/M -buckhound/S -Buckingham/M -Buckinghamshire/M -Buckland/M -buckle/RGSMD -buckled/U -buckles/U -Buckley/M -buckling/M -Buckminster/M -buckminsterfullerene -buckram/dMS -bucksaw/MS -Bucksch -buckshot/MS -buckskin/DSM -buckteeth -buckthorn -bucktooth/DM -buckwheat/SM -buckyball/S -buckytube/S -bucolic/YS -bud/SGDMZ -Budapest/M -Budd/M -Buddha/M -Buddhism/M -Buddhist/SM -buddleia -buddy/MSGD -Budea/M -budge/DGS -budgerigar/MS -budget/rSdM -budgetary -budgie/MS -budging/U -budo -budstick/S -Budweiser/M -budwood -budworm/S -Buena -Buenos -buff-tip -buff/RSMDG -buffalo/M -buffaloes -buffed/A -buffer/rd -buffered/U -buffet/SdJM -bufflehead/M -buffo/S -buffoon/MS -buffoonery/MS -buffoonish -buffs/A -bug's -bug-eyed -bug/CRGSD -bugaboo/SM -Bugatti/M -bugbane/S -bugbear/MS -bugfix/S -bugger/dZ -buggery/M -buggy/MTS -bugle/RGDMS -bugless -Bugzilla/M -Buick/M -build-up/SM -build/RGJS -buildability -buildable -building/MeS -builds/Ac -built-in -built-up -built/Ac -Bujumbura/M -bukkake -Bukowski/M -Bukrin -Bulawayo'sc -Bulawayo/M -bulb/DSGM -bulblet -bulbous -bulbul/S -Bulgaria/M -Bulgarian/MS -bulge/ZGDMSk -bulgy/T -bulimarexia/S -bulimia/SM -bulimic -bulk/ZSMD2G -bulker -bulkhead/DSM -bulkiness/S -bulky/TP -bull's-eye -bull/GYSMD -bulla -bullae -bullcrap -bulldog/MS -bulldoze/RGDS -Bullen/M -bullet/dSM -bulletin/MdS -bulletproof/DG -bullfight/RSMG -bullfighting/M -bullfinch/MS -bullfrog/SM -bullhead/hMDSi -bullheaded/P -bullheadedness/S -bullhide -bullhorn/SM -bullied/M -bullion/SM -bullish/PY -bullishness/S -bullock/SM -bullpen/SM -bullring/SM -bullseye/S -bullshit/RSDMG! -bullshot -bullwhackers -bully/DGTMS -bullyboy/SM -bullying/M -bulrush/SM -bulwark/MGDS -bum-bailiff/S -bum-sucker -bum-sucking -bum/SDRGTM -bumbag/S -bumble/DRkSG -bumblebee/SM -bumbledom -bumboat/S -bumboy -bumf -bumfluff -bumhole -bummed/M -bumming/M -bump/DRGZS2 -bumper/d -bumph -bumpily -bumpiness/S -bumpkin/MS -bumptious/PY -bumptiousness/S -bumpy/TP -bumsters -bun/MZS -bunch/ZSDGM -bunchy/T -bunco's -buncombe's -Bundaberg/M -Bundesliga -Bundestag/M -bundle's -bundle/UDG -bundler/M -bundles -Bundy/M -bunfight/S -bung/GMDS -bungalow/SM -bungarotoxin -bungee/SM -bunghole/SM -bungle/GkDRS -bunion/SM -bunk's -bunk/RCSDG -bunker/d -bunkhouse/MS -bunkmate/MS -bunko's -bunkum/M -bunny/MS -Bunsen/M -bunt/RSGDJ -bunting/M -buoy/SGMD -buoyancy/MS -buoyant/Y -bur/DGSYM -Burbank/M -Burberry/M -burble/GSD -burbler/M -burbot/S -burbs -Burch/M -burden/dMS -burdened/Uc -burdening/c -burdens/cU -burdensome/PY -Burdick/M -burdock/MS -bureau/MS -bureaucracy/MS -bureaucrat/1QWq8SM- -Burel -Buren/M -burg/RSM -burgeon/SDG -burgess/MS -burgh/RMS -Burghley/M -burglar/MS -burglarious -burglarproof/GD -burglary/SM -burgle/SDG -burgomaster/SM -Burgos/M -Burgoyne/M -Burgundian/S -burgundy/S -burial/SAM -buried/U -burier/M -Burk/M -burka/S -Burkard/M -Burke/M -burkha/S -Burkhardt/M -Burkina/M -burl/2MDS -burlap/MS -burler/M -burlesque/DYRMSG -burley -burliness/S -Burlingame/M -Burlington/M -burly/TP -Burma/M -Burmese -burn/DR7kSGJ -burnable/S -Burnaby/M -Burnage/M -Burne/M -burned/U -Burnett/M -Burney/M -Burnham/M -burnish/RSGD -Burnley/M -burnous -burnout/MS -Burnside/M -burnt/Y -burntness -burp/MDSG -burqa/S -burr/MS -Burrell/M -burrfish/S -burrito/S -Burroughs -burrow/DMGSR -bursa/yM -bursae -bursar/MS -bursary/MS -bursitis/SM -burst/eS -burster/M -bursting -bursty -Burstyn/M -Burt/M -Burtenshaw/M -Burton/M -Burtt/M -Burundi/M -bury/ADSG -bus/MAS -busbar/S -busby/S -Busch/M -bush/S2mGMJZD -bushbuck/S -bushel/MSDGJ -bushelful/S -busher -bushfire -bushido/M -bushiness/S -bushing/M -bushland -bushmaster/MS -bushmeat -Bushnell/M -bushwhack/GRSD -bushwhacking/M -bushy/TP -business/m5S -businesslike -businesspeople -businessperson/S -busk/MRG -buskin/SM -buskined -busman/M -busmen -bust/RGZSMD -bustard/MS -busted/F -bustle/kSGD -busty/T -busway/S -busy/PSYTGD -busybody/SM -busyness -busywork/SM -but/DAGS -butane/MS -butanol -butch/RyS -butcher/dY -butcherer/M -butchery/SM -Bute/M -butene/M -butler/dSM -butt-end/S -butt/RSM -butter/drZ -butterball/MS -butterbur/M -buttercream -buttercup/MS -butterfat/MS -Butterfield/M -butterfingered -butterfingers/M -butterfish/S -butterfly/DGMS -buttermilk/M -butternut/S -butterscotch/M -Butterstone -butterwort/S -Butterworth/M -buttery/TS -butting/M -buttock/DSMG -button's -button/UdS -buttonbush/S -buttoner/M -buttonhole/DMSG -buttonholer/M -buttonhook/S -buttonweed -buttonwood/SM -buttress/SGDM -butyl/M -butyrate/M -butyric -buxom/Y -buxomness -Buxtehude/M -Buxton/M -buy-back/S -buy/RSG -buyback/S -buying/c -buyout/S -buys/c -buzz/MDRSGZ -buzzard/SM -buzzword/SM -bx -bxs -by -by-blow -by-election/S -by-law/MS -by-product/SM -Byblos/M -bye-bye/S -bye-law/SM -bye/MS -Byelorussia -byers -bygone/S -byline/GDSM -byliner/M -byname/S -bypass/MDSG -bypath/SM -byplay/S -Byrd/M -byre/SM -Byrne/M -byroad/MS -Byron/WM -Byronismyah -bys -byssi -byssinosis -byssus/S -bystander/MS -byte/MS -bytecode/S -byway/SM -byword/SM -byzantine -Byzantine/S -Byzantinism -Byzantinist/S -Byzantium -bêche -bête/S -bêtise -c.elegans -C.Lit. -c/nN -CA -ca -Ca/y -CAA -caatinga -cab/GMDXVSN -cabal/GDSM -cabala/MS -caballero/SM -cabana/SM -cabaret/SM -cabbage/DGSM -Cabbala -cabbalism -cabbalist/S -cabbalistic -cabbie/S -cabby/M -cabdriver/MS -caber/M -Cabernet/M -cabin/dMS -cabinet/MyS -cabinetmaker/SM -cabinetmaking/SM -cabinetry/SM -cabinetwork/MS -cable/DGSM -cablecast/SG -cablegram/SM -cableless -cabochon -caboodle/SM -Cabot/M -cabriolet/SM -cabstand/SM -cacao/SM -cacciatore -cachaca -cache/p7DGSM -cachectic -cacheing -cachepot/MS -cacher -cachet/MdS -cachexia -cackle/DRSYG -CACM -cacophonous -cacophony/3SM -cacti -cactus/MS -cacuminal -CAD -cad/MZS -cadastral -cadaver/MS -cadaverous/YP -CADCAM -Caddick/M -caddie -caddish/YP -caddishness/S -caddy/MDSG -Cadell/M -cadence/CMS -cadenced -cadencing -cadent/C -cadenza/MS -cadet/MS -cadge/DRSG -Cadillac/SM -Cadman/M -cadmium/M -cadre/SM -caducei -caduceus/M -caeca -caecal -caecitis -caecum/M -caenorhabditis -Caerphilly/M -Caesar/M -caesarean/S -caesarian -caesium/M -caesura/SM -cafe/S -cafeteria/MS -cafetière -caffeinated -caffeine/SM -caftan/MS -café/MS -cage/GDzR2MS -cagey -cageyness -cagier -cagiest -caginess/MS -cagoule/S -Cahokia -cahoot/MS -Caicos/M -caiman's -Cain/M -Cainozoic -caipirinha/S -caique/S -cairn/DSM -Cairo/M -Caisos -caisson/SM -Caithness/M -caitiff/MS -Caius -cajole/RLyDSG -cajolery/SM -Cajun/SM -cake/MDGS -cakeage -cakehole -cakewalk/SDGM -Cal -cal -Calabar/M -calabash/SM -calaboose/SM -caladium/S -Calais -calamander -calamari/S -calamine/MDGS -calamites -calamitous/PY -calamity/SM -calathea/S -Calc -calcalkaline -calcarenite/S -calcareous/YP -Calchas/M -calciferous -calcification/M -calcify/WNDSnG -calcimine/DSMG -calcine/NSDG -calcite/SM -calcium/M -CALCOMP -calculability/IM -calculable/I -calculableness -calculate/iVDSGkBhNn -calculated/aA -calculates/Aa -calculating/aA -calculation/aSAM -calculator/SM -calculi -calculus/MS -Calcutta/M -Calcuttan -caldaria -caldarium -Calder -caldera/SM -caldron's -Caldwell/M -Caleb/M -Caledonia/M -Caledonian/S -calendar/SdM -calender/dMS -calf-length -calf/M -calfskin/SM -Calgary -Calhoun/M -calibrate/SAGDN -calibrater's -calibration/M -calibrator/MS -calibre/MnSN -caliche -calico/M -calicoes -California/M -Californian/SM -californium/M -Caligula/M -caliper/S -caliph/SM -caliphate/SM -call-boy -call-girl/S -call-up -call/RSGDJ7 -calla/SM -Callaghan/M -Callahan/M -Callao -callback/S -called-for -called/AUa -callee/M -calligrapher/SM -calligraphy/S3MW -calling's -calling/a -calliope/MS -calliper/SM -callisthenic/S -callisthenics/M -Callisto -callop/S -callose -callosity/SM -callous/PDYSG -callousness/S -callow/PT -callowness/S -calls/aA -callus/SdM -calm/YTGPSkD -calmative/S -calmness/S -caloric -calorie/SM -calorific -calorifically -calorimeter/SMW -calorimetry/M -calotype -calque/SGD -Caltech -caltrop/S -calumet/MS -calumniate/nDSGN -calumniation/M -calumniator/SM -calumnious -calumny/SM -Calvados -calvarial -calvary -Calvary -calve/DGS -Calvert/M -calves/M -Calvin/3M -Calvinism -Calvinist/W -calyces's -calypso/MS -calyx/SM -cam/MSD -camaraderie/SM -camber/dMWS -Camberley/M -cambial -cambium/MS -Cambodia/M -Cambodian/S -Cambrian -cambric/MS -Cambridge/M -Cambridgeshire/M -camcorder/S -Camden/M -came/c -camel-hair -camel/SM -camelback -camelhair's -camellia/SM -Camelopardalis -Camelot/S -Camembert -cameo/MSDG -camera-ready -camera/MmS5 -camerae -cameraperson -camerawork -Cameron/M -Cameroon/M -Cameroonian/S -camgirl -Camilla/M -Camille -Camino -camion/M -camisole/MS -camomile/M -camouflage/GDRSM -camp/RGZSM2Dz -campaign/MRDSG -campaniform -campanile/SM -campanology/3wSM -campanula/S -campanulate -Campbell/M -Campbellsport -camped/C -Camperdown/M -campfire/MS -camphor/SM -Campos -camps/C -campsite/SM -campus/MS -campy/T -camshaft/SM -Camus/M -camwood -can't -can't've -can-opener -can/dz2SDRZrGyM -Canaan/M -Canaanite -Canada/M -Canadian/S -canal/q-GSMQ8D -canapé/S -canard/MS -canary/MS -canasta/SM -Canaveral -Canberra/M -cancan/MS -cancel/RDGS -cancelbot/S -cancellable -cancellate/DnN -cancellation/M -cancels/K -cancer/SM -cancerous/Y -Cancún/M -Candace -candelabra/S -candelabrum/M -candelas -candid/PY -candidacy/MS -candidal -candidate/MS -candidature/S -candider -candidiasis -candidness/S -candle/RMDSG -candleberry/S -candleholder/S -candlelight/SM -candlelighter -candlelit -candlenut/S -candlepower/MS -candlestick/MS -candlewick/SM -candomblé -candour/SM -candy-striped -candy/SGMD -candyfloss -candytuft/S -cane/SMJ -canebrake/SM -canine/S -caning/M -canister/dSM -canker/dMS -cankerous -canna/S -cannabinoid/S -cannabinol -cannabis/MS -cannelloni -cannery/SM -Cannes -cannibal/MQ8Sq- -cannibalism/SM -cannibalistic -cannibalistically -cannier -canniest -canniness/S -cannister/SM -Cannock -cannon/dSM -cannonade/MGDS -cannonball/SDMG -cannoneer/S -cannonry -cannot -cannula/S -cannulae -cannulate/SGDN -canny/UPY -canoe/GD3SM -Canoga -canola -canon/wMW-1qQ8S3 -canoness/S -Canongate/M -canonical/SQ8q- -canonicity -canonist -canonry/S -Canopus -canopy/DGMS -canst -cant's -cant/DCRGS -cantabile -cantaloup -cantaloupe/SM -cantankerous/YP -cantankerousness/S -cantata/SM -canted/AI -canteen/MS -canter/d -Canterbury/M -canterbury/S -canticle/SM -cantilever/dSM -canto/MS -canton/dMSL -cantonal -Cantonese -cantor/SM -cants/A -Cantwell/M -Canute/M -canvas/MRGDS -canvasback/SM -canvaser -canvass/S -canyon/SM -cap's -cap/SADG -capability/ISM -capable/IP -capabler -capablest -capably/I -capacious/PY -capaciousness/S -capacitance/SM -capacitate/I -capacitative -capacitive/Y -capacitor/MS -capacity's/c -capacity/SMI -caparison/SM -caparisoned -cape/BDRMlS -capellini -caper/d -capeskin/SM -Capilano -capillarity/MS -capillary/S -Capistrano -capita/onM -capital/-qMQs893S -capitalise/ADGnS -capitalised/Uc -capitalises/c -capitalising/c -capitalism/SM -capitalist/1W -capitalize/AGnSDN -Capitan -capitate -capitation/CMS -capitol/SM -capitula -capitular -capitulate/ASDGNn -capitulation/MA -capitulum -capo/SM -capoeira -capon/SM -Capone -caponise/SGD -caponize/SGD -Capote -Cappadocia -Cappadocian/S -capped/U -cappellacci -Cappiello/M -capping/M -cappuccino/SM -Capri -caprice/SM -capricious/YP -capriciousness/S -Capricorn -caps/8 -capsicum/MS -capsid/S -capstan/SM -capstone/SM -capsular -capsule/8SQMGD -capsulotomy/S -Capt. -captain/GDSM -captainate/S -captaincy/MS -CAPTCHA/S -captcha/S -caption/DGM -captioner -captious/PY -captiousness/S -captivate/SDG -captivatingly -captivation/M -captivator/MS -captive/NSMn -captivity/SM -captor/SM -capture/RDGS -captured/A -captures/A -capturing/A -capuchin/S -Capuchin/S -Caputo -car-jack/SDJRG -car-sharing -car-sick/P -car-sickness/S -car/rZdMS -carabiniere -carabinieri -caracara/S -Caracas/M -carafe/SM -caragana -caramba -carambola/S -caramel/Q8SM -caramelisation -caramelization -carapace/MS -carapaxes -carat/MS -caravan/MSDG -caravanette/S -caravanner/MS -caravansary/SM -caravanserai/SM -caravel/MS -caraway/SM -carbamate/S -carbamazepine -carbapenem/S -carbide/SM -carbine/SM -carbo-load/G -carbo/S -carbohydrase -carbohydrate/SM -carbolic -carbon-14 -carbon-neutral -carbon-paper -carbon/sQ9S8W-NqMn -carbonaceous -carbonate/GDSM -carbonation/M -Carbondale -carboniferous -carbonyl/M -carborundum -carbostyril -carbowax -carboxy -carboxyl -carboxylase -carboxylate/SD -carboxylation -carboxylic -carboy/MS -carbuncle/DSM -carbuncular -carburettor/SM -carcase/MS -carcass/MS -Carcassonne -Carchemish -carcinogen/WMS -carcinogenesis -carcinogenicity/MS -carcinoid/S -carcinoma/SM -card's -card-carrying -card-index -card/DERGS -cardamom/SM -cardboard/SM -cardholder/S -cardiac/S -Cardiff/M -Cardigan/M -cardigan/MS -Cardin -cardinal/MYS -cardinality/MS -carding/M -cardio -cardiogram/SM -cardiograph/ZRSM -cardioid/M -cardiological -cardiology/3MS -cardiomegaly/M -cardiomyopathy -cardioprotection -cardiopulmonary -cardiorespiratory -cardiothoracic -cardiovascular -carditis -cardmember/S -cardoon/S -cardsharp/RMS -Cardus/M -care/6jSp -cared/U -careen/DGS -career/G3MDS -careerer -careerism/M -careerist -carefree -careful/TP -carefulness/S -caregiver/S -careless/YP -carelessness/S -careline -cares/DG -caress/SvVMk -caresser/M -caret/SM -caretaker/MS -Carew/M -careworn -Carey/M -cargo/M -cargoes -Carib/S -Caribbean -caribou/M -caricature/3SGDM -caricaturisation -caricaturization -caries/M -carillon/MS -Carina -caring/U -Carinthia/M -cariogenic -carious/K -carisoprodol -Carl/MG -Carla -Carleton -Carlin/M -Carline -Carlisle/M -Carlo/S -carload/GMS -Carlota -Carlow/M -Carlsbad/M -Carlson -Carlton -Carlyle -Carmarthen/M -Carmel -Carmen/M -Carmichael -carmine/SM -carnage/SM -carnal/Y -carnality/SM -carnassial -Carnatic -carnation/MIS -Carnegie/M -carnelian/MS -Carnell/M -carnet/SM -Carney/M -Carnforth/M -carnitine -carnival/SM -carnivalesque -Carnivora -carnivore/MS -carnivorous/YP -carnivorousness/S -carnosaur/S -Carnot -carnotite -carny/G -carob/MS -carol-singing -carol/DRGSM -Carolina/SM -Caroline/M -Carolingian/M -Carolinian/S -Carolyn -carom/S -carotene/SM -carotenoid/S -carotid/M -carousal/SM -carouse/RGDS -carousel/SM -carp/GMDkRS -Carpaccio -carpaccio -carpal/SM -Carpathian/S -carpel/SM -carpenter/dSM -carpentering/M -carpentry/SM -carpet/dJSM -carpetbag/RMSDG -carpeting/M -carphology -carpi/M -carpool/DSG -carport/MS -carpus/M -Carr/M -carrageen/M -carrel/SM -Carrera/M -carriage/aSMf -carriageway/MS -Carrick -Carrickfergus/M -Carrie -carried/a -carries/a -Carrington/M -carrion/SM -Carroll/M -Carrolton -carrot/MS -carroty/T -carry-all/SM -carry-cot/SM -carry-on -carry/DRSG -carrying/a -carsick/P -Carson/M -Carsten/M -cart/RMD6GS -cartage/MS -carte/M -cartel/SM -Cartesian/S -Cartesianism -cartful/S -Carthage -Carthaginian -carthorse/MS -Cartier -cartilage/SM -cartilaginous -cartload/MS -cartographer/SM -cartographical -cartographically -cartography/WSM -cartomancy -carton/dMS -cartonnage -cartoon/G3DMS -cartoonish -cartoonist -cartophilist/S -cartophily -cartridge/MS -cartwheel/RGMDS -Cartwright -Caruso -Carvalho/M -carve/RSJGDy -carven -carving/M -caryatid/SM -caryopses -caryopsis -Carys -casaba/SM -Casablanca -Casanova/M -casbah/M -cascade/GDSM -cascara/SM -case-harden/dS -case-load/SM -case-sensitive -case/DMLJSG -casebook/MS -cased/U -casein/MS -caseload/S -casework/RSM -Casey/M -cash-book/MS -cash/DGSpM -cashback -cashew/SM -cashier/GMDS -cashmere/SM -cashpoint/S -casing/M -casino/SM -Casio/M -cask/SMGD -casket/dSM -Caspar -Caspian -Cassady/M -Cassandra -cassava/SM -Cassels -casserole/MGDS -cassette/MS -cassia/SM -Cassidy/M -Cassie/M -cassingle/S -Cassini/M -cassino's -Cassiopeia -Cassius -cassock/SMD -cassowary/MS -cast's/e -cast-iron -cast-off/S -cast/RSGJM -Castalian -castanet/SM -castaway/SM -caste/MS -castellated -castellation/S -caster/nN -casteth -castigate/SnDNG -castigation/M -castigative -castigator/MS -castigatory -Castile -Castilian/S -Castillo/M -casting/Mc -castle/GMDS -Castleford/M -Castlereagh/M -castor/MS -castrate/GDS -castration/M -castrato -Castries/M -Castro/M -casts/aAe -casual/SPY -casualness/S -casualty/SM -casuarina/S -casuist/SMWy -casuistical/Y -casuistry/MS -Caswell/M -cat-and-dog -cat-bear -cat-sit/RG -cat/M2ZzDGS -catabolic -catabolism -catabolite/S -catabolize/G -catachreses -catachresis -catachrestic -cataclysm/WSM -cataclysmal -cataclysmically -catacomb/MS -catadromous -catafalque/SM -Catalan/S -catalepsy/MS -cataleptic/S -Catalina -catalogue/GRDS -catalogued/U -Catalonia -catalpa/SM -catalufa/S -catalyse/SDWG -catalyser -catalysis/M -catalyst/SM -catalytic/Y -catamaran/MS -cataplectic -cataplexy -catapult/GMDS -cataract/MS -catarrh/MS -catastrophe/SM1W -catastrophism -catastrophist/S -catatonia/MS -catatonic/S -catatonically -Catawba -catbird/MS -catboat/SM -catcall/DGSM -catch-all/SM -catch/LRGZ7S -catchfly/S -catchlight/S -catchline -catchpenny/S -catchphrase/S -catchup/SM -catchweight -catchword/MS -catchy/PTY -catechesis -catechetical -catechetically -catechetics -catechin/S -catechise/SGD -catechism/MS -catechist/SM -catechize/GSD -catechol -catecholamine/SM -catechumen/S -categoricity -categorise/AGSD -categorised/U -categorize/AGSD -category/wq8W9Qs-SM1 -catenate/FN -catenation/MF -catenative/S -cater/drS -catering/M -caterpillar/SM -caterwaul/GDS -Catesby/M -catfight/SG -catfish/SGDM -catgut/SM -catharses -catharsis/M -cathartic -Cathay -cathead/S -cathedral/SM -Catherine/M -catheter/8QMS -catheterisation -catheterization -cathodal -cathode/SWM -cathodoluminescence -catholic/M -Catholic/SM -Catholicism -catholicity/MS -catholicly -Cathy -cation/MW -catkin/SM -catlick -catlike -catmint/M -catnap/DMSG -catnip/SM -Cato -Caton/M -Catskill/S -catsuit/MS -cattery/MS -cattiness/S -cattle/mM -catty/TP -Catullus -CATV -catwalk/SM -Caucasian/S -Caucasoid -Caucasus -Cauchy -caucus/S -caudal/Y -caught/U -cauldron/SM -Cauldwell/M -cauliflower/SM -caulk/GDRJS -causal -causalgia -causality/MS -causate/vV -causation/M -causative/S -cause/GnDMoRSp -causerie/MS -causeway/GMSD -caustic/SY -causticity/SM -cauterise/DnGS -cauterize/NSDGn -caution/KSGyDM -cautioner/SM -cautious/IY -cautiousness's -cautiousness/I -cautiousnesses -cavalcade/MS -cavalier/YPSDG -cavalry/SmM -Cavan/M -Cavanagh/M -cave-in -cave/mRSMDG -caveat/SM -Cavendish -caver/F -cavern/DSGM -cavernous/Y -cavernulous -cavesson/S -cavewoman -cavewomen -caviar -caviare/MS -cavil/SDRGJ -caving/M -cavitary -cavitation -cavity/FMS -cavort/DSG -caw/GSMD -Caxton -cay/SCM -Cayenne/M -cayenne/MS -Cayley/M -Cayman/M -cayman/S -Cayuga/M -CB -CBS -CBT -cc -cc'd -cc'ing -cc's -CCD -CCTV -CD-R/S -CD-ROM/S -CD-RW/S -CD/M -CDC/M -CDMA -cDNA -CDs -CDT -Ce -CE -ceanothus -cease/CDSG -ceasefire/S -ceaseless/PY -ceaselessness/S -ceasing/U -Cebuano -Cecil/M -Cecilia -Cecily/M -cedar/MS -cedarwood -cedary -cede/FKAGDS -cedilla/MS -Cedric/M -cefotaxime -Ceil -ceilidh/SM -ceiling/MSD -celandine/SM -Celanese -celeb/S -celebrant/SM -celebrate/inNSDyG -celebrated/U -celebratedness/M -celebration/M -celebrator/SM -celebrity/MS -celeriac -celerity/SM -Celeron -celery/SM -celesta/SM -Celeste -celestial/SMY -celestiality/S -Celia/M -celibacy/SM -celibate/SM -cell/MDS3G -cellar/dMS -cellarer/M -cellmate/S -cello/S3M -cellophane/SM -cellphone/SM -cellular/Y -cellularity -cellulite -cellulitis -celluloid/MS -cellulose/MS -cellulosic -Celsius -Celt/WS -Celticism -Celticist/S -cement/RGDSM -cementa -cementite -cementum/MS -cemetery/SM -cenobite/SMW -cenotaph/SM -Cenozoic -censer/SM -censor/dSM -censored/U -censorial -censorious/PY -censoriousness/S -censorship/SM -censorware -censurable -censure/GRMSD -census/SdM -cent/SM -centaur/MS -Centaurus -centavo/SM -centenarian/SM -centenary/S -centennial/Y -centesimal/Y -centigrade/S -centilitre/SM -centime/SM -centimetre/MS -centimetric -centipede/SM -centra -central/qsQ89-3 -Centralia -centralise/CDnSAG -centralism/M -centralist -centrality/SM -centralize/CDNSAnG -centre/GDRMJ3WoS -centreboard/SM -centreboarder -centrefire -centrefold/S -centreless -centreline/MS -centrement -centremost -centrepiece/SM -centrepin -Centrex -centric/F -centrifugal/SY -centrifugate/M -centrifugation/M -centrifuge/MGNDS -centring/M -Centrino -centripetal/Y -centrism -centroid/SM -centromere/S -centromeric -centrosome/S -centrum/S -centuple/DGS -centurion/SM -century/SM -CEO/SM -cephalic/S -cephalization -Cephalochordata -cephalochordate/S -cephalopod/S -Cephalopoda -cephalosporin/S -cephalothorax -Cepheid -ceramic/3MS -ceramicist -ceramide -ceramist/SM -ceratobranchial/S -Cerberus -cercopithecoid/S -cereal/MS -cerebellar -cerebellum/MS -cerebra/no -cerebral/S -cerebrate/SDG -cerebration/M -cerebriform -cerebroside/S -cerebrospinal -cerebrovascular -cerebrum/MS -cerement/SM -ceremonial/S -ceremonialness -ceremonious/UY -ceremoniousness/SM -ceremony/SMo -Ceres -cerise/MS -cerium/M -cermet/SM -CERN -Cernan/M -cert/SF -certain/UY -certainer -certainest -certainty/USM -certificate/SDM -certification/MCA -certified/UAC -certifies/CA -certify/NRl7DGnS -certiorari/M -certitude/MIS -cerulean/MS -ceruloplasmin -cerumen -cerussite/S -Cervantes -cervical -cervicitis -cervix/M -cess -cessation/SM -cession/FMAK -cessions/F -Cessna -cesspit/M -cesspool/MS -CET -Cetacea -cetacean/S -cetology/3 -ceviche/S -Ceylon -cf. -CFC/S -CfIT/M -CFO/S -CGI -Ch'ing -cha-cha -cha/Wy -Chablis -chachalaca/S -chaconne -Chacornac/M -chad -Chad/M -Chadian/S -chador/S -Chadwick/M -chaetognath/S -Chaetognatha -chafe/SGD -chafer/M -chaff/MGSD -chaffer/rd -chaffinch/SM -chaffweed -Chagas/M -chagrin/MS -chagrined -chain's -chain-smoke/GD -chain/UDGS -chainlike -chainsaw/DSG -chair/MGm5SD -chairlady/M -chairlift/SM -chairmanship/MS -chairperson/SM -chaise/MS -Chakotay/M -chakra/S -Chalan/M -chalcedony/SM -Chalcolithic -chalcopyrite -Chaldean/S -chalet/SM -chalice/MDS -chalicothere/S -chalk/MGZ2SD -chalkboard/MS -chalkiness/S -chalkline -chalky/T -challenge/RDGSk -challenged/U -challenging/U -challis/SM -Chalmers/M -chamade -chamber/rdMS -Chamberlain/M -chamberlain/SM -Chamberlin/M -chambermaid/MS -chamberpot/S -Chambers/M -chambray/SM -chameleon/MS -chamfer/dSM -chammy's -chamois/MDSG -chamomile/MS -champ/DGS -champagne/SM -champaign/M -champers -champion/SGDM -championship/SM -Champlain -chan/S -chance's/a -chance/DS2MZGy -chancel/SM -chancellery/SM -chancellor/MS -Chancellor/SM -chancellorship/MS -Chancellorship/S -chancer -chancery/SM -chances/a -chanciness/S -chancing/M -chancre/SM -chancroid/S -chancy/T -chandelier/MS -chandler/MS -chandlery/S -Chanel/M -Chang -change-ringing -change/RBlpGDS -changeability/MS -changeable/U -changeableness/SM -changeably/U -changed/U -changeling/M -changelog/S -changeover/SM -changeset/S -changing/U -channel/qs-9JSQ8RGDM -channelling/M -Channing -ChanServ -chanson/SM -chant/MRDGSJ -chanterelle/S -chanteuse/SM -Chanthaburi/M -chanticleer/SM -Chantilly -chantry/SM -chaology/3 -chaos/MS -chaotic/Y -chap/SDMG -Chaparral/M -chapbook/MS -chapeau/MS -chapel/MyS -chapelry/SM -chaperon/d -chaperonage/MS -chaperone/SM -chaplain/MS -chaplaincy/MS -chaplet/SM -Chaplin/M -Chaplinesque -Chapman -chappie/S -chaptalisation -chaptalise/SGD -chaptalization -chaptalize/SGD -chapter/dSM -char/5GDS -charabanc/SM -characin/S -character/sQ98t+dpq6-MS -characterised/U -characteristic's -characteristic/UY -characteristics -charade/SM -charango/S -charas -charbroil/SGD -charcoal/GSMD -charcuterie/S -chard/MS -Chardonnay/S -Charest/M -charge/cGEfDAS -chargeable/AE -chargeableness/M -chargeback/S -charged/U -chargee -chargehand/S -charger/ESM -chargrill/D -chariness/S -chariot/SGMD -charioteer/DSMG -charism/S -charisma/M1W -charismata -charismatic/U -charismatics -charitable/UY -charitableness/MS -charitably/U -charity/SM -charlady/M -charlatan/MS -charlatanism/SM -charlatanry/SM -Charlemagne/M -Charles -Charleston -Charley -Charlie/M -Charlotte/M -Charlottesville -Charlottetown -Charlton -charm/MRGkDpS -charming/T -charro/S -Charron -charset/S -chart/RDG73MJS -chartbuster/S -charted/U -charter/dr -chartist -chartreuse/SM -chartroom/S -chary/TPY -chase/RDGS -Chasidism -chasing/M -chasm/SM -Chassell/M -Chassidism -chassis/M -chaste/sQTYP -chastely/U -chasten/Sd -chasteness/S -chastise/L -chastity/SM -chasuble/SM -chat/GS2MZDz -chatbot/S -chateaubriand -Chatelain/M -chatelaine/MS -chatline/S -chatroom/S -Chattahoochee -Chattanooga -chattel/SM -chatter/dSr -chatterbot/S -chatterbox/SM -chattiness/S -chatty/PT -ChatZilla/M -Chaucer/M -Chaucerian/S -chauffeur/DSMG -Chautauqua -chauvinism/MS -chauvinist/MSW1 -chav/S -chavish -chavvy/T -Chazen -cheap/TY -cheapen/dS -cheapish -cheapness -cheapskate/SM -cheat/RDSG -Chechen/S -check-in/S -check-list/S -check-up/MS -check/ASGD -checkable -checkbox/S -checker/S -checklist/S -checkmate/MDSG -checkout/S -checkpoint/MS -checksum/GMSD -cheddar/S -Chee/M -cheek/2GMzDZS -cheekbone/SM -cheekiness/S -cheekpiece/S -cheeky/TP -cheep/MGDS -cheer/RDp6G2ZjSz -cheerful/TP -cheerfulness/S -cheeriness/S -cheerio/S -cheerleader/SM -cheerleading -cheerless/YP -cheerlessness/S -cheery/PT -cheese-cutter/S -cheese-paring -cheese-skipper -cheese/ZMDSG -cheeseboard -cheeseburger/MS -cheesecake/SM -cheesecloth/MS -cheesemaker/S -cheesemaking -cheesemonger/S -cheeseparing/S -cheesewood -cheesiness/S -cheesy/PT -cheetah/SM -chef-d'oeuvre -chef/GDSM -Chekhov/M -Chekhovian -Chekov/M -chelate/DnMNG -chelation/M -chelicerate/S -Chelmsford -Chelmsleywood -Chelsea/M -Cheltenham -chem/3 -chemautotrophically -chemical/MSY -chemigraphy -chemiluminescence/M -chemiluminescent -chemise/SM -chemist/y -chemistry/SM -chemitype -Chemnitz/M -chemo -chemo-statical -chemoarchitecture -chemoattractant/S -chemoattraction -chemoattractive -chemoautotroph/S -chemoautotrophic -chemoautotrophically -chemoautotrophy -chemoceptor/S -chemocline -chemoimmunotherapy -chemokine/S -chemoprevention -chemoreception -chemoreceptor/S -chemosensory -chemosynthesis -chemosynthetic -chemotactic -chemotaxis -chemotherapeutic/S -chemotherapist/SM -chemotherapy/SM -chemtrail/S -chemurgy/SM -Chen/M -Cheney/M -Cheng -chenille/SM -Chennai/M -cheque/RSM -chequebook/MS -chequeing -chequer/d -chequerboard/MS -Cherie -cherish/GDS -cherisher/M -Chernobyl/M -Cherokee/S -cheroot/MS -cherry-pick/SGD -cherry/MS -chert/SM -cherub/SMW -cherubically -cherubim/S -chervil/SM -Cherwell -Cheryl/M -Chesapeake -Cheshire/M -chess/mSM -chessboard/MS -chest/6ZSDM -Chester-le-Street -Chester/M -chesterfield/SM -Chesterton/M -chestful/S -chestnut/MS -chesty/T -Chetham/M -chetrum/S -chevalier/MS -Cheviot/SM -Chevrolet -chevron/SM -chevroned -Chevy/M -chew/GRZ2S7D -Chewbacca/M -chewiness/S -chewy/T -Cheyenne/S -chg -chge -chi/M -Chiang/M -chianti/M -chiaroscuro/MS -chiasma -chiasmata -Chiba -Chicago/M -Chicagoan/S -Chicagoland/SM -chicane/MDGSy -chicanery/SM -Chicano/SM -chicer -chicest -Chichester -Chichewa -chichi/TS -chick/MS -chickadee/MS -Chickasaw/S -chicken-and-egg -chicken-livered -chicken/dSM -chickenfeed -chickenhearted -chickenpox/SM -chickpea/SM -chickweed/MS -chicle/YMS -chicness/S -chicory/SM -chide/DkSG -Chief -chief/SMa -chiefdom/MS -chiefly -chieftain/SM -chiffon/MS -chiffonade -chiffonier/MS -chigger/SM -chignon/SM -chihuahua/S -chilblain/SM -child/pM -childage -childbearing/M -childbed -childbirth/SM -childcare -childcarer/S -childed -childes -childhood/SM -childish/PY -childishness/S -childless/P -childlessness/S -childlike/P -childmind -childminder/SM -childminding -childproof/GD -childrearing -children/M -Chile/MS -Chilean/S -chiliarch/M -chiliarchs -chiliastic -chill/TDk2PRGMYS -chilli/M -chilliness/S -chillness/S -chilly/TPS -Chiltern/S -Chilton/M -chimaera/Mw -chime/RMDSG -chimera/SMwW -chimichanga/S -chimichurri -chimney/DMS -chimp/MS -chimpanzee/MS -chin-strap/MS -chin-wag/GD -chin/pSMGD -China/Mm -china/SM -chinaberry/S -Chinatown/M -chincherinchee/S -chinchilla/MS -chine/SM -Chinese/M -Ching -ching -chink/DGMS -chino/SM -chinoiserie/S -Chinook -chinstrap/S -chintz/SMZ -chintzily -chintziness -chintzy/T -Chinyanja -chionodoxa/S -chip/GMJZDS -chipboard/M -chipmaker/S -chipmunk/MS -Chippendale -Chippenham -Chippewa -chippie -chipping/M -chippy/S -chipset/S -Chirac/M -chiral -chirality -chirography/SM -chiromancy -chiropody/3SM -chiropractic/MS -chiropractor/SM -chiropteran/S -chirp/GDZS -chirpy/PYT -chirr/GD -chirrup/Sd -chisel/RDSGJM -Chisholm -Chisinau/M -Chiswick/M -chit-chat/SGD -chit/SM -chitchat/DSMG -chitin/MS -chitinous -chitosan -chitterlings -Chiu/M -chivalrous/PY -chivalrously/U -chivalrousness/S -chivalry/WSM -chive/SM -Chivers/M -chivvy/SGD -chlamydia/OS -chlamydiae -Chloe -chloral/M -chloramphenicol -chlorate/M -chloride/SM -chlorinate/CGSDN -chlorination/M -chlorine/nNM -chlorite/W -chlorofluorocarbon/S -chloroform/GDSM -chlorophyll/SM -chlorophyte/S -chloroplast/SM -chloroplastic -chloroquine/M -chloroses -chlorosis -chlorotic -chlorpromazine -chlorzoxazone -chm -choanocyte/S -choccy/S -chock-a-block -chock-full -chock/DGSM -chocker -chocoholic/S -chocolate/SMZ -chocolatey -Choctaw/S -choice/TSPYM -choir/GSDM -choirboy/MS -choirgirl/MS -choirman -choirmaster/SM -choirmen -choisya/S -choke/RkDSG -chokeberry/SM -chokecherry -chokes/M -cholecalciferol -cholecystectomy/S -cholecystitis -cholelithiasis -choler/SM -cholera/MSW -cholerically -cholesteric -cholesterol/SM -choline/M -cholinergic -cholinesterase/M -chomp/SDG -Chomsky/M -Chondrichthyes -chondrocranium -chondrocyte/S -choosable -choose/GR2SZ -choosiness/S -choosy/T -chop/R2ZSzGD -chophouse/SM -Chopin -chopper/d -choppiness/S -choppy/TP -chopstick/SM -choral -chorale/MS -chord/GSDM -chordal -Chordata -chordata -chordate/SM -chording/M -chordophone/S -chordotonal -chore/MoDSG -chorea/SM -choreograph/ZGRS1DW -choreography/MS -choreologist -choreology -chorines -chorion/M -chorister/SM -chorizo/S -Chorley -chorographer/S -chorographic -chorography -choroid/S -choroidal -chortle/RGDS -chorus/MdS -chose -chosen -choucroute -chough/S -choux -chow/GSMD -Chris -chrism/MS -Chrissie -Christ/M -Christchurch -christen/dAS -Christendom -christened/U -christening/MS -Christensen/M -Christi -Christian/Q8MS -Christiana/M -Christianity/M -Christiansen/M -Christie/M -Christina/M -Christine -Christless -Christlike -Christmas/MS -Christmastide -Christmastime -Christological -Christologically -Christology -Christoph/M -Christopher/M -chroma/M1 -chromakey/SGD -chromate/M -chromatic/SP -chromaticism/M -chromaticity -chromatics/M -chromatid/S -chromatin/MS -chromatogram/MS -chromatograph/ZW -chromatography/M -chrome/MWGD -chromic -chrominance -chromite/M -chromium/SM -chromodynamics -chromogenic -chromoly -chromophore/S -chromophoric -chromoplast/S -chromosomal -chromosome/SM -chromosphere/WM -chromous -chronic/Y -chronicle/MSRGD -chronobiologist/SM -chronobiology -chronograph/WZSM -chronologer/S -chronology/13SMw -chronometer/SMW -chronometrical -chronometrically -chronometry -chronostratigraphy/W -chronotherapy -chronotropic -chrysalids -chrysalis/SM -chrysanthemum/MS -Chrysler -Chrysostom/M -chub/SMZ2 -chubbiness/S -chubby/TP -chuck/SDGM -Chuckie/M -chuckle/DkGS -chucklehead/SD -chucklesome -chuckwalla/S -chuff/MD -chug/DSGM -chukka/S -chum/2DzMZSG -chumminess/S -chummy/TP -chump/MGDS -chumping/M -Chung -chunk/ZSGM2D -chunkiness/S -chunky/TP -chuntering -chupacabra/SM -chuppa -chuppah -chuppot -church -Church -Church-of-England -church/mMG5SDY -churchgoer/MS -churchgoing/SM -churchianity -Churchill/M -Churchillian -Churchland/M -churchly/P -churchwarden/SM -churchy/T -churchyard/MS -churl/MS -churlish/YP -churlishness/S -churn/RDGSM -churning/M -churr/GD -churrascaria/S -churrasco -Churrigueresque -chute/SGMD -chutney/SM -chutzpah/SM -chyme/MS -chymotrypsinogen -château/SM -châtelaine/MS -CI -Ci -CIA/M -ciabatta/S -ciao/S -ciboria -ciborium -cicada/SM -cicatrice/MS -cicatricial -cicatrisation -cicatrise/SDG -cicatrix/M -cicatrize/SDGN -cicchetti -Cicciolina/M -Cicely -cicely/S -Cicero -cicerone/SM -ciceroni -Ciceronian -Ciceronianism -cicheti -cichlid/S -CID -cider/CMS -Cidre/M -Ciecierski/M -cig/S -cigar/SM -cigarette/MS -cigarillo/SM -ciguatera -cilantro/S -cilia/M -ciliate/DFYS -cilium/M -Cimarron/M -Cimmerian/SM -cinch/DSGM -cinchona/SM -Cincinnati -cincture/MGDS -cinder/SdM -Cinderella -Cindy/M -cine/M -cinema/WMS -cinematheque/S -cinematograph/S -cinematographer/SM -cinematographically -cinematography/WSM -cinephile/S -cinephilia -Cinerama -cineraria/S -cinerarium/S -cinerary -cinereous -cinereum/S -cineritious -cingula -cingulate -cingulum -cinnabar/MS -cinnamon/SM -cinnarizine -cinquefoil -cipher/MdS -ciphered/C -ciphers/C -ciphertext/S -ciprofloxacin -cir -circa -circadian -Circe -circle/GDSM -circler/M -circlet/MS -circlip/S -circuit/MdS -circuital -circuitous/YP -circuitousness/S -circuitry/MS -circuity/SM -circulant -circular/8YQPMS -circularity/MS -circulate/GyNDSnV -circulated/A -circulates/A -circulating/A -circulation/MA -circulator -circumcircle/S -circumcise/DSGNX -circumcised/U -circumciser/MS -circumcision/M -circumesophageal -circumference/SM -circumferential/Y -circumflex/DSGM -circumlocution/SM -circumlocutory -circumlunar -circumnavigate/DNnSxG -circumnavigation/M -circumnavigator -circumpolar -circumscribe/SXDNG -circumscription/M -circumspect/Y -circumspection/SM -circumsphere -circumstance/GSDM -circumstantial/Y -circumstantiality -circumvallate/DG -circumvallation/S -circumvent/DGS7 -circumvention/SM -circus/SM -cirque/SM -cirrhoses -cirrhosis/M -cirrhotic/S -cirri/M -cirrostratus -cirrus/M -cis -CISC -Cisco/M -cisgender -cisgendered -cissy -cistern/SM -cistus -citable -citadel/SM -citation/MA -cite/nAGNDS -cited/I -cites/I -citified -citing/I -citizen/MYyS -citizenry/SM -citizenship/SM -citrate/DM -citriculture -citrine -Citrix/M -Citroen/M -citron/MS -citronella/SM -citrous -citrus/ZSWM -citrusy -city/DMS -cityscape/SM -citywide -civet/SM -civic/S -civics/M -civil/s9qQ-8Y -civilian/SM -civilised/U -civility/ISM -civilized/U -civilly/U -civvies -CJD -ck/C -cl/GJ -clack/DGS -clackers -Clackmannanshire/M -clad/JGS -cladding/M -clade/S -cladism -cladistic/S -cladoceran/S -cladogenesis -cladogenetic -cladogram/S -Claffey -claim's -claim/ERSGCAD -claimable -claimant/SM -claimed/U -clairaudience -clairaudient -Claire -clairvoyance/MS -clairvoyant/SY -clam/GMzZD2S -clamant -clamber/dSr -clamdiggers -clamminess/S -clammy/TP -clamorous/YP -clamour/GMDRS -clamp/SGMD -clampdown/SM -clamper/M -clamshell/SM -clan/mSM -Clancarty/M -Clancy -clandestine/YP -clandestinity -clang/DRGS -clangorous/Y -clangour/SGDM -clank/DMkGS -clannish/YP -clannishness/S -clanship -clap/RGDS -clapperboard -Clapton -claptrap/MS -claque/SM -Clara -Clare/MZ -Claremont -Clarence -Clarendon/M -claret/dSM -clarification/M -clarificatory -clarifier/M -clarify/NDGSn -Clarinbridge/M -clarinet/MS -clarinettist/MS -clarion/MDSG -clarity/SM -Clark/M -Clarke/M -Clarkson/M -clary -clash/DGS -clasher/M -clasp's -clasp-knife -clasp-knives -clasp/SUGD -clasped/M -clasper/M -class-concious -class-conciousness -class-list -class/2GZDMwpS1 -classed/e -classer/M -classes/e -classful -classic/3S -classical/3 -classicalist -classicality -classicism/SM -classicist -classics/M -classifiable/U -classification/MaCA -classificatory -classified/S -classifies/CA -classify/R7DSnGN -classifying/a -classily -classiness/S -classing/e -classism -classist/S -classlessness -classmanship -classmark/SM -classmate/SM -classroom/MS -classwork/M -classy/TP -clast/S -clastic -clathrate/S -clathrin -clatter/dSZk -clatterer/M -Claude -Claudette/M -Claudia -claudication -Claudio -Claudius -Claus -clausal -clause/SM -Clausen -Clausewitz/M -claustra -claustrophobe/SM -claustrophobia/SM -claustrophobic/S -claustrophobically -claustrum -clavate -clave/FM -claver -Claverack/M -clavichord/SM -clavicle/SM -clavicular -clavier/MS -claw/DSGM -clawback/S -clawer/M -clay/ZSMDG -Clayborne/M -clayier -clayiest -claymore/SM -Clayton/M -clayware -clean-cut -clean-living -clean-shaven -clean-up/MS -clean/BDRTPYGS -cleaning/M -cleanish -cleanliness/U -cleanlinesses -cleanly/TP -cleanness/S -cleans/DRSG -cleanse -cleanskin/S -clear-cut -clear-headed/PY -clear-sighted -clear-up/S -clear/TPSYGJD -clearance/MS -clearer/M -clearing-house/S -clearing/M -clearness/S -cleartext -Clearwater -clearway/MS -clearwing -cleat/GMDS -cleavage/SM -cleave/RGSD -Cleckheaton/M -clef/SM -cleft/DGSM -Clegg/M -cleistogamous -cleistogamy -clematis/MS -Clemence -Clemenceau -clemency/MIS -Clemens -clement/IY -Clement/SM -Clemente/M -Clementine -clementine/S -Clemson -clench/GUSD -Cleopatra/M -Cleophas/M -clerestory/SM -clergy/5mSM -cleric/SYM -clerical/S -clericalism/MS -clerk/GSYDM -clerkship/MS -Clermont-Ferrand -Cleveland/M -clever/PY -cleverer -cleverest -cleverness/S -clevis/SM -clew/SMDG -CLI -cliche/SD -cliché/MS -clichéd -click-through/S -click/RSGDM -clickable -clickbait -clicket -clickjacking -clickstream/S -client-server -client/MS -clientele -clientelism -clientship -clientèle/M -cliff/SM -cliffhanger/SM -cliffhanging -Clifford -clifftop/S -Clifton/M -climacteric/MS -climactic -climate/M1S -climatology/S3Mw1 -climax/MGDS -climb/7GRDSJ -climbdown -climbed/U -clime/WSM -clinch/SRGkD -Cline -cling/RGZ -clingfish/S -clingstone/S -clingy/TP -clinic/YSM -clinical/K -clinician/SM -clink/DGSR -clinker/d -clinometer/SIM -Clint -Clinton/M -Clintonian -Clio -cliometric/S -cliometrician/S -clip-clop -clip-on -clip/RGSDJM -clipboard/SM -clipped/U -clipping/M -clique/DMGSZ -cliquier -cliquiest -cliquish/YP -cliquishness/S -clitoral -clitoridectomy/S -clitorides -clitoris/MS -Clive -Cliveden -clivia/SM -Clizbe -cloaca/M -cloacae -cloak-and-dagger -cloak/DMGS -cloaked/U -cloakroom/MS -cloaks/U -clobber/Sd -cloche/SM -clock-watch/GR -clock/SDMRGJ -clockmaker/MS -clockmaking -clockwatcher -clockwise -clockwork/SM -clod/SMGD -cloddish/P -clodhopper/MS -clog/MSGD -clogs/U -cloisonnes -cloisonné -cloister/MdS -cloistral -Cloke/M -clomp/SMDG -clonal -clonazepam -clone/GDMRS -Cloney/M -clonidine -clonk/GSD -Clonmel/M -Clonmore -clop/DSG -closable -close-cropped -close-down -close-fisted -close-fitting -close-hauled -close-knit -close-mouthed -close-ratio -close-set -close-up/S -close/TRJPDYGS -closed-circuit -closed/UE -closer/ESM -closes/E -closet/SdM -closing/E -closish -closure's/E -closure/GDSM -closures/E -clot/GDMS -cloth/DGJSM -clothbound -clothe/UGD -clothes-peg/SM -clothes/f -clothesbrush -clotheshorse/SM -clothesline/SGDM -clothesman -clothesmen -clothier/SM -clothing/Mf -cloud-cuckoo-land -cloud/pZ2SMDGz -cloudberry/S -cloudburst/SM -clouded/cU -cloudiness/S -clouding/c -cloudless/PY -cloudlet -clouds/c -cloudscape/SM -cloudy/TP -Clough/M -clout/SMDG -clove/RMS -cloven -cloverleaf/SM -Clovis -clown/SDGM -clownfish/S -clownish/PY -clownishness/S -cloy/DkSG -clozapine -club-class -club-foot/MD -club/GSMD -clubbability -clubbable -clubbed/M -clubber/S -clubbing/M -clubfeet -clubhouse/MS -clubland -clubman -clubmate/S -clubmen -clubmoss/S -clubroom/SM -clubroot -cluck/DGMS -clue/pMDGS -clued-up -clump/DZSGM -clumpish -clumpy/T -clumsiness/S -clumsy/TYP -clung -clunk/DRM2GzZS -clunky/T -cluster/MdSJ -clutch/SDG -clutter/dS -cluttered/U -Clwyd -Clyde -Clydebank/M -Clydesdale -Cláudio/M -cm -Cm -Cmd. -Cmdr -Cmdre -CMG -Cmnd. -CMOS -CMS -CNAA -CNBC/M -Cnidaria -cnidarian/S -CNN/M -CNS -CNY -Co -co-ally/D -co-author/SMd -co-belligerence -co-belligerent/S -co-branded -co-branding -co-chair/S -co-channel -co-conspirator/S -co-counselling -co-education -co-educational -co-evolution -co-evolutionary -co-evolve/SGD -co-found/DG -co-founder/S -co-located -co-morbid -co-morbidity -co-occurrence -co-op -co-operant -co-operate/VSDGuNv -co-operation/M -co-operative/SP -co-operator/MS -co-opt/NVG -co-option -co-ordinate/GDSNV -co-ordinator/SM -co-owners -co-ownership -co-pilot -co-produced -co-producer/S -co-production/S -co-religionist -co-respondent/SM -co-site -co-star/GSD -co-trimoxazole -co-worker/SM -co-write/SG -co-writer -co-written -co-wrote -co/EDS -coach/mGM -coacher/M -coachload/S -coachroof/S -coachwhip -coachwood/S -coachwork/M -coadjutor/SM -coagulable -coagulant/SM -coagulate/nGSDN -coagulation/M -coagulator/S -coal-black -coal-fired -coal-holes -coal/SGMD -coaler/M -coalesce/GDS -coalescence/SM -coalescent -coalface/SM -coalfield/MS -coalfish/S -coalhouse -coalition/3SM -coalitionist -coalminers -coarse/TPY -coarsen/dS -coarseness/S -coarticulation/S -coast-to-coast -coast/SGMD -coastal -coasteering -coastguard/SM -coastland/S -coastline/MS -coat-hanger -coat/cMSf -coated/U -coater/S -Coates -coatigan -coating's/c -coating/SM -coattail/S -coattest -coax/RkoG -cob/GMSD -cobalamin/S -cobalt/MW -cobaltous -Cobb/M -Cobbe/M -cobble/GRDMS -cobblestone/SDM -coble/M -Cobol/M -cobra/SM -cobweb/MZSGD -cobwebby/T -Coca-Cola -coca/SM -cocaine/SM -cocci/MS -coccidia -coccidian -coccidioidomycosis -coccolith/S -coccolithophore/S -coccolithophorid/S -coccus/M -coccyges -coccyx/M -Cochin -cochineal/SM -cochlea/MS -cochleae -cochlear -cochoa/S -Cochran/M -Cochrane/M -cock-a-doodle-doo -cock-a-hoop -cock-and-bull -cock-eyed/Y -cock-eyedness -cock-fight/JSGM -cock-fighting/M -cock-of-the-rock -cock-of-the-walk -cock-of-the-wood -cock-shy -cock-up/SM -cock/zGMDZS2 -cockade/MSD -cockapoo/S -cockatoo/SM -cockatrice/MS -cockboat -Cockburn/M -cockchafer/S -cockcrow -Cockell/M -cocker/M -cockerel/SM -Cockett -cockfight/SG -cockiness/S -cockle/GDMS -cocklebur/SM -cockler/S -cockleshell/MS -cockloft/S -cockney/MS -cockneyism/S -cockpit/MS -Cockrell/M -cockroach/SM -cockscomb/MS -cocksfoot/S -cockshy/S -cockspur/S -cocksucker/S! -cocksure -cocktail/GDSM -cocky/TP -coco/MS -cocoa/SM -cocobolo/S -coconut/MS -cocoon/MGSD -Cocos/M -cocreate/SGD -cocreation -cocreator/S -cod/rMdSDG -coda/SM -Codd/M -coddle/SGD -coddler/M -code's -code-switch/SGD -code/CDaAGS -codebase/S -codebook/S -codebreak -codebreaker/S -codebreaking -codec/SM -coded/K4 -codeine/MS -codeless -codename/D -codependence -codependency/S -codependent/S -coder/4SCM -codetermine/S -codeword/SM -codex/M -codfish/MS -codger/SM -codices/M -codicil/SM -codification/M -codify/RDGSNn -coding's -coding/4 -codling/SM -codomain -codon/S -codpiece/MS -codswallop -Cody/M -coed/M -coeducational -coefficient/SM -coelacanth/S -Coelenterata -coelenterate/MS -coelurosaur/S -coequal -coerce/RDbGS -coercible/I -coercion/SM -coercive/PY -coercivity -coetaneous -coeternal/Y -coeval/SY -coevality -cofactor/MS -coffee-cake/MS -coffee-cup/SM -coffee-maker/S -coffee-pot/MS -coffee-table/MS -coffee/SM -coffer-dam/MS -coffer/SdM -Coffey/M -coffin/dMS -Coffman -cog/DMGS -cogency/SM -cogenerator -cogent/Y -cogitate/SNVnGD -cogitation/M -cogitator/SM -cognac/MS -cognate/YnSN -cognateness -cognation/M -cognisance -cognisant -cognition/AMKS -cognitional/Y -cognitive/SY -cognitivism -cognitivist/S -cognizable -cognizance/AMS -cognizant/A -cognomen/SM -cognoscente -cognoscenti -cogwheel/SM -cohabit/nd -cohabitation/o -cohabitational -cohabitee/S -cohabiter/S -Cohen/M -cohere/GDS -coherence/SIMZ -coherency/S -coherent/IY -coherer/M -cohesion/MS -cohesive/YP -cohesiveness/S -Cohn -coho/S -cohort/SM -cohosh -coif/M -coiffed -coiffing -coiffure/SDMG -coil/USADG -coin/RMDG -coinage/MS -coincide/SGD -coincident/Y -Cointreau -coital/Y -coitus/MS -Coke/SM -coke/SMDG -cokey -col/SNVnW -cola/SM -colander/SM -colatitude/SM -Colbert/M -Colburn/M -Colby -Colchester/M -colchicine -colchicum/S -cold-blooded/Y -cold-bloodedness -cold-hearted -cold-shouldering -cold/TPSY -Coldfield -coldish -coldness/S -Cole/M -Colebrooke/M -colectomy/S -Coleman/M -coleopteran/S -coleopterous -coleorhiza -coleorhizae -Coleraine/M -Coleridge/M -coleslaw/SM -Colette/M -coleus/MS -Colgate -coli -colic/ZSM -coliform -Colin -coliseum/MS -colitis/SM -coll -collaborate/VGDNSvn -collaboration/3M -collaborationist -collaborative/S -collaborator/MS -collage/SDMG -collagen/M -collagenase -collapse/b -collapsibility/M -collar/pdMS -collarbone/SM -collate/GSD -collated/U -collateral/M -collation/M -collator/SM -collect/bSivDV7hG -collectability -collectable/S -collectanea -collected/UA -collectedness/M -collectible/S -collection/AMS -collective/q38SQ- -collectivism/SM -collectivity/SM -collector/MS -collectorate -collects/A -colleen/M -college/MK -colleges -collegial -collegiality/S -collegian/MS -collegiate/Y -collet -collide/XDGxNS -collie/MRyD -colliery/SM -collimate/SCNDG -collimated/U -collimation/M -collimator/M -collinear -Collingwood/M -Collins/M -collision/M -collocational -collogue/DSG -colloid/MoS -colloidal -colloquia -colloquial -colloquialism/MS -colloquies -colloquium/SM -colloquy/Mo -collotype/S -collude/DGNVSX -collusion/M -colobus -cologne/SMD -Colombia/M -Colombian/S -Colombo/M -colon/9MWQsq3-8S -colonel/SM -colonelcy/SM -colonial/S3 -colonialism/SM -colonialist -colonialness -colonise/AGCDSn -colonised/U -colonize/AGCDSNn -colonnade/DSM -colonoscope/S -colonoscopy/S -colony/oSM3 -colophon/SM -Coloradan -Colorado/M -coloratura/SM -colorectal -colorimeter/SMW -colorimetry -colossal/Y -colosseum/S -colossi -colossus/MS -colostomy/SM -colostrum/SM -colour-blind/P -colour-code/D -colour-fast/P -colour-fastness/S -colour-sergeant -colour/qQ-8RNpGJSnD6jM -colourable -colourant/SM -colouration/EM -colourblock/GD -coloured/ES -colourful/P -colourfulness/S -colouring/M -colourist/S -colouristic/Y -colourless/Y -colourlessness -colourman -colourpoint -colours/AE -colourway/S -colposcope/Z -colt/MS -colter/M -coltish/PY -Colton/M -Coltrane -coltsfoot/S -colubrid/S -Columba -Columbae -columbaria -columbarium -Columbia/M -Columbian -columbine/SM -columbium -Columbus/M -column/D3SQ8M -columnar -columnated -columnist -Colwyn/M -coma/SM -comae -comaker/MS -Comanche/S -comatose -comb/RGMS -combat/vVu -combatant/MS -combative/P -combativeness/S -combatted -combatting -combed/U -combfish/S -combinable -combination's/A -combination/oM -combinational -combinator/oWSM -combinatorial -combinatoric/S -combine/DGAnSN -combiner/SM -combo/MS -combust -combustibility/SM -combustible/IS -combustion/MS -combustive -combustor -Comcast/M -Comdex/M -come/RIGJS -comeback/SM -comedian/SM -comedienne/MS -comedown/MS -comedy/WSM -comeliness/S -comely/PT -comer/cM -comes's -comes/ce -comestible/MS -comet/MS -cometary -cometh -comeuppance/SM -comfit/SM -comfits/E -comfort/pEGMSDk -comfortability/S -comfortable/PY -comfortableness/S -comfortably/U -comforted/U -comforter/SM -comfrey/S -comfy/T -comic/YMS -comical -comicality/SM -coming/c -comity/SM -comix -comm -command/RkGDLMS -commandant/SM -commandeer/DGS -Commander -Commander-in-Chief -commando/SM -commemorate/NDvSVGn -commemoration/M -commemorative/S -commemorator/S -commemoratory -commence/DLAGS -commencer/M -commend/AnS7DG -commendable/Y -commendation/AM -Commendatore/M -Commendatori -commendatory/A -commender/AM -commensal/S -commensalism -commensality -commensurable/I -commensurably -commensurate/YI -comment/MUSD -commentary/SM -commentate/SGD -commentator/SM -commenter/MS -commenting -commerce/GoSDM -commercial/qQ8S-U -commercialism/SM -commercialness -commie/MS -commination/S -comminatory -comminuted -commiserate/VNnDGS -commiseration/M -commissar/MS -commissarial -commissariat/MS -commissary/SM -commission's/A -commission/CRDSG -commissionaire -commissioned/A -commissural -commissure/S -commit/NLSoXDG -commitment/cS -commits/A -committable -committal/MS -committed/cU -committee/mSM5 -committer/S -committing/c -commode/ESI -commodification -commodify/SGD -commodious/PIY -commodity/MS -commodore/MS -common-law -common-room/M -common-sense -common/YPSr -commonality/MS -commonalty/SM -commonest -commonly/U -commonness/U -commonplace/SP -commons/M -commonsensical -commonwealth/SM -commotion -commove/SGD -comms -communal -communalism -communalist/SW -communality/M -commune/oQ8S3DG -communicability/SM -communicable/I -communicably -communicant/SM -communicate/BDxSVvGnNu -communicated/a -communicates/a -communication's -communication/a -communicative/P -communicator/SM -communion/MS -communique/S -communiqué/MS -communism/MS -communist/W -communitarian/M -community/SM -commutable/I -commutate/Vv -commutativity -commutator/M -commute/R -Comoran -Comoros/M -comp/DGS -compact/TRPDYG -compaction/M -compactness/S -compactor/SM -compand/SRGD -companion/DG7lMS -companionable/P -companionship/SM -companionway/MS -company/SMDG -Compaq/M -comparabilities -comparability/MI -comparable/P -comparably/I -comparative/PS -comparator/MS -compare/uVvGBl -comparer/M -comparison/SM -compartment/DGMS -compartmental/-8qQ -compass/M -compassionate/P -compatibility/SMI -compatible/SIY -compatibleness/M -compatibly/I -compatriot -compeer -compel/7NGSDnk -compelling/M -compendia -compendious/YP -compendium/MS -compensable -compensate/DcSnGN -compensated/U -compensation/cM -compensative -compensator/M -compensatory -compete/SDG -competence/MSZI -competency's -competency/IS -competent/IY -competitive/PY -competitiveness/S -competitor/SM -compilation/SAM -compilatory -compile/RCNS7DG -compiled/A -compiles/A -compiling/A -complacence/Z -complacency/SM -complacent/Y -complain/Rk -complainant/SM -complaining/UY -complaint -complaisance/SM -complaisant/Y -complement/DMGSRN -complementarity/S -complementary/YPS -complementation/M -completable -complete/IYP -completed/U -completeness/IS -completer/M -completes -completest -completing -completion's/I -completion/SM -completist/S -completive -complex/GxDYTPNXS -complexion/DM -complexities -complexity/cM -compliance/SM -complicate/GcDS -complicated/U -complicatedly -complicatedness/M -complicator/MS -complicit -complicity/MS -compliment/RGD -complimentary/U -comply/LRnJN -component/SM -componentry -comport/L -compose/CRDSXGN -composed/PY -composes/AE -composing/EA -composite/SYP -composition/CM -compositor/MS -compossible -compost/RGB -composure/MES -compote/SM -compound/M7 -comprehend/NuXSDvGV -comprehended/a -comprehending/U -comprehensibility/IMS -comprehensible/IPY -comprehensibly/I -comprehension/IMS -comprehensive/PS -comprehensiveness/S -compresence -compresent -compress/XvNVhxb -compressed/UC -compresses/C -compressibility/MI -compressible/I -compression/MC -compressor/MS -compromise/M -compromising/UY -Compton/M -comptroller/SM -compulsion/M -compulsive/YSP -compulsiveness/S -compulsivity -compulsory/YS -compunction/SM -CompuServe/M -computability/M -computation/oM -computational -compute/DRGnNlSB -computed/AK -computer-literate -computer/Q8q- -computerate -computerese -computerphobia -computes/A -computing/A -compère/MD -comrade/MSY -comradeliness -comradeship/SM -Comte -con/SwMW1DG -Conakry/M -Conan -conation -concatenate/nDSG -concave/Y -concavo-convex -conceal/S7RDkLG -concealed/U -concede/Rh -conceit/GiMSDh -conceited/P -conceitedness/S -conceivability/I -conceivable/IY -conceivably/I -conceive/KSDaG -conceiver/M -concentrate/SGNnVD -concentration/M -concentrator/MS -concentric/Y -Concepción/M -concept/xSVoM -conception/KSMa -conceptual/-Q8q -conceptuality/M -concern/hUD -concerning -concerns -concert/DiGhM -concerted/E -concerti -concertina/MDGS -concerting/E -concertmaster/MS -concerto/SM -concerts/E -concession/yo -concessionaire/SM -concessional -concessioner -concessive -conch/MDG -conchie/S -conchoid -conchs -concierge/SM -conciliar -conciliate/nGVyN -conciliation/MA -conciliator/SM -conciliatory/A -concise/TYPNX -conciseness/S -concision/M -conclave/S -conclude/RNGXDSvVu -conclusion/M -conclusive/IPY -conclusiveness/IS -concoct/SDGV -concocter/M -concoction/SM -concomitant/Y -concord -concordance/MS -concordant/Y -concordat/SM -Concorde/M -Concordia -concrescence -concrescent -concrete/GPYNDSnM -concreteness/S -concreter -concretion/M -concubinage/SM -concubine/MS -concupiscence/MS -concupiscent -concur/DG7S -concurrence/SM -concurrent -concuss/NXV -concussion/M -condemn/Nn7RGDS -condemnation/M -condemnatory -condensate/MS -condensation/M -condense/DRSGbn -condenseness -condescend/NXk -condescension/M -condign -condiment/SM -condition's/K -condition/oMGRJDS -conditional/S -conditionality -conditionally/U -conditioned/AUK -conditioning/M -conditions/KA -condo/SM -condolence/MS -condom/SM -condominium/SM -Condon/M -condonable -condone/DGSN -condoner/MS -condor/MS -conduce/nNvDGVS -conducive/P -conduct/aDGMS -conductance's -conductance/4 -conductances -conductibility/MS -conductible -conduction/M -conductivity/SM -conductor/SM -conductress/MS -conduit/SM -condylarth/S -condyle/S -condyloma/S -condylomata -condylomatous -cone/MZS -coned -coneflower/M -Conestoga -coney's -confab/DSMG -confabulate/NSnDG -confabulation/M -confect/S -confection/R3SGDM -confectioner/Z -confectionery/SM -confectionist -confederacy/SM -confederal -confederate/M -confer/7DgGRS -conferee/MS -conference/GMDS -conferral/MS -confess/GXxhDN -confessant/MS -confession/M -confessional/S -confessor/SM -confetti/M -confidant/SM -confidante/SM -confide/kDRGS -confidence/cSM -confident/cY -confidential/PY -confidentiality/SM -confidingness -configurability -configurable/K -configuration/OAM -configure/NADGSn -configured/K -configuring/K -confine/L -confined/U -confiner/M -confirm/nANGSD -confirmation/MA -confirmatory -confirmed/PY -confiscate/yNnSGD -confiscation/M -confiscator/SM -confit -conflagration/SM -conflate/GnDSN -conflation/M -conflict/kSMVDG -conflictual -confluence/MS -conform/7R3x -conformability -conformable/U -conformably -conformal -conformance/SM -conformant -conformism/SM -conformist -conformities -conformity/IMU -confound/h -confront/NRnx -confrontation/M -confrère/SM -Confucian/S -Confucianism -Confucianist -Confucius -confusable -confuse/kRhi -confused/P -confutation/M -confute/NSnDG -confuter/M -Cong -conga/MDG -congeal/DLGS -congener/SM -congeneric -congenerous -congenial/U -conger/SM -congeries/M -congest/DVSG -congested/U -congestion/SM -Congleton -conglomerate/DMSGnVN -conglomeration/M -Congo/M -Congolese -congrats -congratulate/DSGnyN -congratulation/M -congregate/GNnSD -congregation/M -congregational -Congregational/3Y -Congregationalism/MS -Congregationalist -congress/mxM5GSD -congresspeople -congressperson/S -congruence's/I -congruence/ZMS -congruency/MS -congruent/Y -congruential -congruently/I -congruity/MSI -congruous/YPI -conic/S -conical/P -conics/M -conidia -conidium -conifer/MS -coniferous -Coniston/M -conjectural -conjecture/GDoSMB -conjecturer/M -conjugacy -conjugal/Y -conjugality -conjugant -conjugate/DVGnSNY -conjugateness -conjugation/M -conjunct/VSvD -conjunctional -conjunctiva/MSO -conjunctivae -conjunctive/S -conjunctivitis/SM -conjuration/M -conjurator -conjure/NRGSnD -conjuring/M -conjuror/S -conk/RSD -Conley/M -conman/M -conmen/M -connate -connect/viVbGhDS -connected/EPY -Connecticut -connecting/E -connection's/A -connection/MES -connectionless -connective/MS -connectivity/SM -connector/SM -connects/EA -Connell/M -Connelly -conner -connexion/SM -Connie -connivance/MS -connive/RSDG -connoisseur/SM -connoisseurship -Connors -connotative/Y -connubial/Y -conodont/S -Conor/M -conquer/AdS -conquerable/U -conquered/U -conqueror/MS -conquest/ASM -conquistador/SM -conquistadores -Conrad/M -Conrail/M -consanguineous/Y -consanguinity/MS -conscience-stricken -conscience/p -conscientious/PY -conscientiousness/S -conscionable/U -conscious/YU -consciousness/SM -conscription/SM -consecrate/ADNSnG -consecrated/U -consecration/MA -consecrative -consecrator -consecratory -consecutive/PY -consensus/SM -consent/SRGkD -consequence -consequent/Y -consequential/IY -consequentialism -consequentialist/S -consequentiality/SM -consequentialness/M -consequently/I -consequentness -conservancy/MS -conservation/M3 -conservationism -conservationist -conservatism/SM -conservative/PS -conservatoire/S -conservator/SM -conservatory/SM -conserve/VnvNu -consider/AdS -considerable/YI -considerably/I -considerate/YnN -considerately/I -considerateness/I -consideration/AS -considered/U -considerer/M -considering/S -consign/L -consigned/A -consignee/SM -consignment/A -consignor/S -consigns/A -consiprationally -consist/SGD -consistence/ZS -consistency/SMI -consistent/IY -consistory/MS -consol's -consolable/I -consolation/EM -consolatory -console/RNkn7 -consolidate/DNGnS -consolidated/AU -consolidates/A -consolidation/M -consolidator/MS -consommé/S -consonance/IM -consonances -consonant/YSM -consonantal -consortia -consortium/MS -conspecific/S -conspecificity -conspectus/MS -conspicuous/PIY -conspicuousness/SI -conspiracy/SM -conspirational -conspirator/SoM -conspiratorial -conspire/G -constabulary/SM -constance/Z -constancy/IMS -constant/IY -Constant/M -Constantine/M -Constantinople -constants -constative/S -constellation/MS -consternate/DnNGS -consternation/M -constipate/NGDSn -constipation/M -constituency/MS -constituent/YSM -constitute/DASG -constitution/AMS -constitutional/3YS -constitutionalism -constitutionalist -constitutionalities/U -constitutionality/SM -constitutionally/U -constitutive/Y -constrain/hG -constrained/U -constraint/SM -constrict/SDVG -constriction/SM -constrictor/SM -construal/S -construct/ASbDG -constructable -constructibility -construction/CMAS -constructional/Y -constructionist/SM -constructive/YP3 -constructiveness/S -constructivism -constructor/SM -construe/DS7G -construed/a -construes/a -construing/a -consubstantial -consubstantiality -consul/SM -consular/S -consulate/SM -consulship/SM -consult/nDNGS -consultancy/S -consultant/SM -consultation/M -consultative -consultee/SM -consultees' -consulter/M -consumable/S -consume/RVSXvkNDhGJ -consumed/U -consumer/3 -consumerism/MS -consumerist -consummate/DSGVY -consummated/U -consumption/Mc -consumptive/S -cont -cont'd -contact-breaker -contact/G7DS -contactee/S -contactless -contactor/S -contagion/SM -contagious/YP -contagiousness/S -contain/7RLDSG -container/Q-8q -contaminant/MS -contaminate/NVGDnS -contaminated/UC -contaminates/C -contaminating/C -contamination/MCS -contaminator/SM -contd -contemn/SGD -contemplate/VNDvuGn -contemplation/M -contemplative/PS -contemporaneity/MS -contemporaneous/PY -contemporariness/S -contemporary/YP -contempt/bM -contemptibility -contemptible/Y -contemptuous/PY -contemptuousness/S -content/LEDhGMS -contented/P -contentedness/S -contention/SM -contentious/UY -contentiousness/MS -contently -conterminous/Y -contest/7 -contestable/I -contestant/SM -contested/U -contextual/Q-q8 -contextualism -contextualist/S -contiguity/MS -contiguous/PY -continence/IMS -continent/oYSM -continental/S -continently/I -contingency/MS -contingent/MYS -continua/on -continual -continuance/ESM -continuant/MS -continuation/ME -continuative/S -continue/7DSGN -continued/E -continuer/M -continues/E -continuing/E -continuity/ESM -continuous/YE -continuousness's -continuousness/E -continuum/M -contort/VDG -contortion/M3S -contortionist -contra/yS -contraband/M -contrabandist/S -contrabass/MS -contrabassoon -contraception/MS -contraceptive/S -contract/GbD -contractee/S -contractile -contractility -contractive -contractual/Y -contradance/S -contradict/SGyD -contradiction/SM -contradictory/PY -contradistinction/SM -contrafactive -contrafactual -contraflow/S -contrail/M -contraindicate/VSNnDG -contraindication/M -contralateral -contralto/SM -contraposition -contrapositive/S -contraption/MS -contrapuntal/Y -contrarian/S -contrarianism -contrariety/SM -contrariness/S -contrariwise -contrary/PSY -contrast/GvZSDkV -contravene/SGD -contravener/M -contravention/MS -contretemps/M -contribute/DvGVy -contribution/SM -contributor/MS -contributory/SY -contrite/P -contriteness/S -contrition/SM -contrivance/SM -contrive/RDSG -control/BRMSlG -controllability/M -controllable/U -controllably/U -controlled/U -controversial/UY -controversialist/MS -controversy/SMo -controvert/DGSb -controvertible/I -contumacious/Y -contumacy/MS -contumelious -contumely/MS -contuse/XGSND -contusion/M -conule/S -conundrum/MS -conurbation/SM -convalesce/DSG -convalescence/MS -convalescent/S -convect/xGSDV -convection/SM -convene/GADS -convener/SM -convenience/ISM -convenient/YI -convenor/S -conventicle/SM -convention/SoM -conventional/Q83 -conventionalism/M -conventionalist -conventionality/MUS -conventionally/U -convergence/SM -convergent -convergently -conversant/Y -conversation/Mo -conversational/3 -conversationalist -conversazione/M -converse/GnY -converser -conversion's/A -conversion/G -convert/RSbDG -converted/UA -convertibilities -convertibility/IM -convertible/PS -convertor/S -converts/A -convex/Y -convexity/MS -convey/D7SG -conveyance/DRSGM -conveyancing/M -conveyor/MS -convict/GVDS -conviction/MS -convince/RGDSk -convinced/U -convincing/UY -convincingness/M -convivial/Y -conviviality/MS -convocational -convoke/GDNnS -convolute/DY -convolution's -convolution/CO -convolutions -convolve/CSGD -convolvulus/S -convoy/GDMS -convulse/GXDSVuNv -convulsion/M -convulsive/P -Conway/M -cony/MS -coo/GSD -Coogan/M -cook's -cook/KGADcS -cookbook/MS -Cooke/M -cooked/fU -cooker/SMZ -cookery/M -cookhouse/S -cookie/MS -cooking/M -Cookstown/M -cookware/SM -cool-bag -cool-box/SM -cool-headed -cool/GDPSRYT -Coolaney -coolant/SM -cooled/c -Cooley/M -Coolidge/M -coolie/MS -cooling-off -coolish -CoolMax -coolness/S -coolth -Coon/M -cooncan -coonhound/S -coonskin/S -coop/RDGM -cooper/dvuV -cooperage/MS -cooperant -cooperative/U -coopery/S -coordinate/DGV -coordinated/U -coordinator/M -Coors -coot/MS -cootie/MS -cop-out/S -cop/GDRdMS -copay/S -cope/SZ -Copeland -Copenhagen/M -copepod/S -coper/M -Copernican -Copernicus/M -copied/A -copies/A -copilot/SM -coping/M -Copini -copious/YP -copiousness/S -coplanar -coplanarity -Copland -Copley -copolymer/SM -copper/dZ -copperas -Copperfield -copperhead/MS -coppernob/S -copperplate/SM -coppersmith/SM -coppice/DMSG -Coppola/M -copra/SM -coprocessor/S -coprolite/M -coprophagous -cops/DSG -copse/M -copter/SM -Coptic -copula/nMSV -copular -copulate/GSyD -copulation/M -copulative/S -copy-edit/Sd -copy/3DRGMS -copyable -copybook/SM -copycat/SMDG -copyhold -copyholder/S -copying/a -copyleft/D -copyread/GR -copyright/GRMDS7 -copywriter/MS -copywriting -coquetry/SM -coquette/SMGD -coquettish/Y -cor -coracle/SM -coracoid -coral/SM -coralberry/S -coralline -coralroot/S -corbel/SJGMD -Corbett/M -Corbie -Corbin/M -Corby -Corbyn/M -cord's/F -cord/EGSAMD -cordage/MS -Cordeiro/M -corder/AM -cordgrass -cordial/PYS -cordiality/MS -cordillera/MS -cording/AM -cordite/MS -cordless -Cordoba -cordon/dSM -Cordova -cordovan/MS -cords/F -corduroy/DSMG -cordwood -cordyline/S -core/MDRGS -Corel -corella/S -Coren/M -coreopses -coreopsis -Corey/M -corf/M -Corfu/M -corgi/SM -coriaceous -coriander/MS -coring/M -Corinth/M -Corinthian/S -Coriolis -cork/DRGMS -corked/U -corks/U -corkscrew/DSMG -corkwood/S -corky/T -Corley/M -corm/SM -Corman/M -cormorant/SM -corn/R2ZSMzDG -cornball/MS -cornbrash -cornbread/S -corncob/SM -corncockle/S -corncrake/SM -cornea/SM -corneal -Cornelia/M -Cornelis/M -Cornelius -Cornell/M -corner/d -cornerman -cornermen -cornerstone/SM -cornerwise -cornet/SM -cornetfish/S -cornett/S -cornetti -cornetto -corneum -cornfield/MS -cornflake/S -cornflour/M -cornflower/SM -cornice/DSMG -corniculate -corniness/S -Cornish -cornmeal -cornmill -cornrow/GSD -cornstalk/MS -cornstarch/MS -cornucopia/SM -Cornwall/M -Cornwallis -Cornwell -corny/T -corolla/yMS -corollary/SM -coromandel -corona/ySnM -Coronado -coronae -coronal/MS -coronary/S -coronate -coronation/M -coronavirus/S -coroner/MS -coronet/dSM -coronoid/S -coroutine/SM -corp. -corpora/MnVo -corporal/MS -corporate/3SY -corporates/I -corporation/MIS -corporatise/SDGn -corporatism/M -corporatize/SDGN -corporeal/IY -corporeality/MS -corporealness/M -corps/SM -corpse/M -corpulence/SM -corpulent/Y -corpulentness/S -corpus/M -corpuscle/MS -corpuscular -corr -corral/GDMS -correct/TxvPSDuGY7V -correctable/U -corrected/U -correction/SM -correctitude -corrective/S -correctly/I -correctness/S -correlate/CSGDN -correlated/U -correlativity -correlator/SM -correspond/k -correspondence/MS -corridor/SM -Corrigan -corrigenda -corrigendum/M -corrigibility -corrigible/I -corroborate/DSnVvGyN -corroborated/U -corroboration/M -corroborator/SM -corrode/DvbGuSXNV -corrosion/M -corrosive/SP -corrugate/DSNnG -corrugation/M -corrugator -corrupt/VPTbvSDGY -corrupted/U -corrupter/M -corruptibility/MIS -corruptible/I -corruption's/I -corruption/MS -corruptions/I -corruptness/S -corsage/MS -corsair/SM -corset/dSM -Corsham/M -Corsica/M -Corsican -Corso/M -Cortana/M -cortex/M -cortical/Y -cortices -corticosteroid/MS -cortisol -cortisone/SM -Cortland -cortège/SM -corundum/M -Coruscant/M -coruscate/NSnDG -coruscation/M -Corvallis -corves -corvette/MS -corydalis -corymb/S -corymbose -corynebacteria -corynebacterium -coryphée/S -cos/S -cosign/RSDG -cosignatory/SM -cosine/MS -cosiness/S -cosmeceutical/S -Cosmelli -cosmetic/MSY -cosmetician/SM -cosmetology/3MS -cosmic/Y -cosmical -Cosmo -cosmogony/3MS -cosmographer/S -cosmographic -cosmographical -cosmography/S -cosmology/1S3Mw -cosmonaut/SM -cosmopolis -cosmopolitan/MS -cosmopolitanise/SGD -cosmopolitanism/SM -cosmopolitanize/SGD -cosmopolite/S -cosmos/MS -COSPAR -cosplay/SGDR -cosponsor/Sd -Cossack -cossacks -cosset/Sd -cost-cutting -cost-effective -cost-effectiveness -cost-efficient -cost/YGvSMJuDpV -Costa -costa -costae -Costello -costermonger/S -costive/P -costliness/S -costly/TP -costume/DRMSG -cosupervise/SGD -cosupervision -cosupervisor/S -cosy/SGDYTP -cot/RMSD -Cota-Robles -cotangent/SM -cote/SM -coterie/MS -coterminous/Y -Cotgrave/M -cotillion/MS -cotinga/S -cotoneaster -Cotswold/M -cottage/DMRSG -cottagey -cottar's -cottered -Cotterill/M -Cottesloe/M -Cottingham/M -cotton/dMS -cottonmouth/S -cottontail/MS -cottonweed/S -cottonwood/SM -cottony -Cottrell/M -cotyledon/MS -couch/DGSM -couchant -couchette/S -couching/M -coudé -Coues/M -cougar/SM -cough/GDS -cougher/M -Coughlan/M -Coughlin/M -could -could've -couldn't -couldn't've -couloir/S -coulomb/SM -Coulsdon/M -Coulter/M -Coulthard -coulée/SM -council/SmM5 -councillor/MS -councilperson/S -counsel/MDJGS -counsellor/SM -count/GSlDRBpZ -countable/U -countably/U -countback -countdown/MS -counted/AUEa -countenance's -countenance/SDEG -countenancer/M -counter-attack/SRMDG -counter-claim/GSMD -counter-clockwise -counter-espionage/SM -counter-inflation/y -counter-intelligence/MS -counter-intuitive -counter-jumper -counter-offensive/MS -counter-offer/S -counter-productive -counter-revolution/ySM -counter-revolutionary/MS -counter-tenor/SM -counter-terrorism -counter/md -counteract/DGVS -counteraction/SM -counteragent/S -counterargument/SM -counterbalance/MSDG -counterblast -counterbore/SGD -counterchange/DGS -countercharge/S -countercheck/S -counterclaim/DSG -countercultural -counterculture/SM -countercurrent/S -countercyclical -counterdemonstration/S -countereffort -counterexample/S -counterfactual/S -counterfeit/GRSD -counterflow -counterfoil/MS -counterforce/M -counterillumination -counterinsurgency/MS -counterirritant/S -counterirritation -countermand/SGD -countermark/SGD -countermeasure/SM -countermelody/S -countermine/G -countermove/S -countermovement/S -counternarcotics -counteroffensive/S -counteroffer/SM -counterpane/SM -counterpart/SM -counterparty/S -counterpetition -counterplot/SGD -counterpoint/DSMG -counterpoise/DMGS -counterproductive -counterproliferation -counterproposal/M -counterpunch/GSD -counterpuncher/S -counterreformer -counterrotate/GN -counters/E -counterscarp/S -countershaded -countershading -countershaft/S -countersign/DSG -countersignature/MS -countersink/SG -counterspy/SM -counterstatement/S -counterstrike -counterstyle -countersubject -countersunk -countertenor/S -counterterror -counterterrorism -counterterrorist/S -counterthreat/S -counterthrust -countertrade -countertransference -countervail/SGD -countervalue -counterweigh/SGD -counterweight/GMSD -countess/SM -counting/Ea -countless/Y -countrify/D -country/5mMS -countryfied -countryfolk -countryside/MS -countrywide -counts/AaEf -county/M -coup/AS -Couperin -couple's -couple/DRCSGJ -coupled/U -couples/U -couplet/MS -coupling/MC -coupon/MS -coupé/SM -courage's -courage/ES -courageous/U -courageously -courageousness/SM -courgette/SM -courier/MGDS -course/SMFE -coursebook/S -coursed/E -courser/ESM -courseware -coursework -coursing/M -court-martial -court/SRYMGD -courteous/YEP -courteousness/SE -courtesan/MS -courtesied -courtesy/ESM -courtesying -courthouse/MS -courtier/SM -courtliness/S -courtly/PT -Courtney/M -courtroom/SM -courtship/SM -courtyard/MS -couscous/MS -cousin/MYS -Cousteau -couture/MS -couturier/SM -covalent/Y -covariance/MS -covariant/S -covariate/SN -covary -cove/RDGMS -coven/SM -covenant/DSGM -covenantal -Covenanter/S -covenanter/SM -covenantor/SM -Covent -Coventry/M -cover-up/S -cover/Jd7 -coverable/E -coverage/SM -coverall/DSM -Coverdale/M -covered/EAU -coverer/AME -covering's -covering/E -coverlet/SM -Coverley/M -covers's -covers/AEU -coversheet -covert/PY -covertness/S -covet/dSk -coveter/M -covetous/PY -covetousness/S -covey/MS -cow-lick/SM -cow-parsley/M -cow-pat/SM -cow/ShGMDm -coward/SMY -cowardice/SM -cowardliness/S -cowardly/P -cowbane -cowbell/SM -cowbird/S -cowboy/SM -Cowell/M -cower/dkS -Cowes -cowfish/S -cowgirl/SM -cowhand -cowherd/SM -cowhide/SGDM -cowl/DGMS -Cowley -cowling/M -Cowper/M -cowpox/MS -cowrie/SM -cowshed/SM -cowslip/SM -cox/SGMD -coxcomb/MS -Coxsackie -coxswain/GSMD -coy/TPYGD -coyed/C -coyness/S -coyote/SM -coypu/SM -cozen/dS -cozenage/SM -CPA -cpd -CPI -cpl -CPR -cps -CPU/SM -crab-apple/SM -crab/2GhDRzMiZS -Crabbe/M -crabbed/P -crabbiness/S -crabbing/M -crabby/T -crabgrass/S -crablike -crabmeat -crabwise -crack/SRYDG7 -crackable/U -crackdown/MS -crackle/DSGJ -crackling/M -crackly/T -cracknel/S -crackpot/MS -cracksman -cracksmen -crackup/S -cradle/SDMG -cradler/M -cradling/M -craft/Dm52MGzZS -crafter -craftiness/S -craftsmanship/SM -craftspeople -craftsperson/S -craftwork/R -crafty/PT -crag/MZS2 -cragginess/S -craggy/TP -cragsman -cragsmen -Craig -Craigavon/M -cram/GSD -Cramer -crammer/M -cramp/DSMG -cramper/M -crampon/MS -Cranach/M -cranberry/SM -Crandall -crane-flies -crane/MDSG -cranelike -cranesbill/S -Craney/M -Cranfield/M -Cranford -cranial -craniate/S -craniofacial -craniological -craniologist/S -craniology -craniopagi -craniopagus -craniosynostoses -craniosynostosis -craniotomy/S -cranium/MS -crank/DTZSGM2z -crankcase/SM -crankiness/S -crankish -crankpin/S -crankshaft/SM -cranky/TP -Cranleigh -Cranmer/M -cranny/DSGM -Cranston -crap/GDMZS -crape/SM -crappie/S -crappy/T -crash-land/SGD -crash/RSDGk -Crashaw/M -crashworthy/P -crass/TYP -crassness/S -crate/MDRSG -crater/d -cravat/SMGD -crave/DJSG -craven/dPY -cravenness/S -craver/M -craving/M -craw/YSM -crawdad/S -crawfish's -Crawford -Crawfurd/M -crawl/SRDG -Crawley -crawlspace/S -crawlway -crawly/ST -Cray/M -crayfish/SGDM -crayon/MdS -craze/SZGDM -craziness/S -crazy/YSPT -CRC -creak/zZSD2G -creakiness/S -creaky/PT -cream-crackered -cream/ZDRS2zMG -creamer/Z -creamery/MS -creaminess/S -creamware -creamy/PT -crease's -crease/GISCD -creased/U -creaser/I -creatable -create/uGnSNDVv -created/UA -creates/A -creatine -creating/A -creatinine -creation/MASa -creationism/SM -creationist/MS -creative/PS -creativeness/S -creativity/SM -creator/SM -creature/YSM -creaturely/P -credence/MS -credential/MSd -credentialism -credenza/MS -credibility/ISM -credible/YI -credibly/I -credit's -credit/dE7lS -creditability/M -creditable/P -credited/U -creditor/MS -creditworthiness -creditworthy -credo/MS -credulity/IMS -credulous/PY -credulously/I -credulousness/S -Cree/S -creed/SM -creedal -creek/SM -creekside -creel/DGMS -creep/RZSG2z -creepiness/S -creepy/PTS -Creighton -cremate/SyGnND -cremation/M -crematoria -crematorium/MS -cremocarp -crenelate/SNGDn -crenelation/M -crenellated -crenellation/S -crenulate/D -crenulation/S -creole/MS -creosote/SMGD -crepe/GDMS -crept -crepuscular -crescendo's/C -crescendo/GDSM -crescendos/C -crescent/MS -cress/S -Cressida/M -crest/DMGpS -crestfallen/PY -cresting/M -Crestview -Cretaceous/Y -Cretan/S -Crete -cretin/MS -cretinism/SM -cretinous -cretonne/MS -Creutzfeldt -Creutzfeldt-Jakob -crevasse/MGDS -crevice/MS -crew/mMDGS -Crewe -crewel/SM -crewelwork/MS -crewmember/S -crib/DRGSM -cribbage/SM -cribbing/M -cribella -cribellate -cribellum -Crichton -crick/DSMG -cricket/rdMS -cricketess -cricketty -crickety -crickle -crickle-crackle -crickling -cricoarytaenoid -cricoarytenoid -cricoid -cries/e -crime/DGSM -Crimea -Crimean/S -crimeware -criminal/qQ8-SMY -criminalise/CnDSG -criminalistics -criminality/MS -criminalize/CGNnDS -criminogenic -criminology/3wMS -crimp/SGD -crimper/M -crimson/SMd -cringe/GSD -cringer/M -crinkle/DGSY -crinkly/TS -crinoid/S -crinoline/MS -criollo/S -cripes -cripple/RGkDSM -crises -crisis/M -crisp/GYPDTZ2S -crispbread -crisper/M -crispiness/S -crispness/S -crispy/TP -criss -criss-cross/DGS -Cristina/M -cristobalite -Criswell/M -criteria -criterion/M -critic/YQ8Ss9M -critical/UY -criticality -criticise/k -criticism/MS -criticize/k -critique/MGSD -critter/SM -CRM -croak/RDZSG -croakily -croaky/T -Croat/S -Croatia/M -Croatian/S -crochet/dJSZr -crock/DGSM -crocker/Z -crockery/SM -Crockett -Crockford/M -crocodile/MS -crocus/MS -croft/MGSR -croissant/SM -Croix -Croke/M -Crombie/M -Cromwell/M -Cromwellian -cron -Cronbach/M -crone/SZM -croneyism -Cronin -Cronus/M -crony/MS -cronyism -crook/DSiMhG -crooked/P -crookeder -crookedest -crookery -Crookes -croon/GSRD -crop/GSeMD -cropland/S -cropper/MS -croquembouche -croquet/SdM -croquette/MS -Crosby -crosier/SM -cross's -cross-assembler/S -cross-beam/S -cross-border -cross-bred/S -cross-breed/GS -cross-check/DGS -cross-colour -cross-compiler -cross-connection/S -cross-contaminate/DG -cross-contamination -cross-correlate/D -cross-correlation/S -cross-country -cross-court -cross-cultural -cross-curricular -cross-cut/SMG -cross-disciplinary -cross-dress/GR -cross-examine/NDSG -cross-eyed -cross-fertilisation -cross-fertilization -cross-grained -cross-hatch/DSG -cross-legged -cross-link/SGD -cross-linkage -cross-ply -cross-point -cross-polar -cross-post/G -cross-promote/D -cross-promotion -cross-question/GD -cross-refer/S -cross-reference/DGS -cross-section/oS -cross-sectional -cross/GASUD -crossable -crossarm -crossbar/MSDG -crossbeam/MS -crossbones -crossbow/mSM -crosscurrent/MS -crosser/S -crossest -crossfire/MS -crossing/MS -Crossley/M -crossly -crossmatch/SGD -crossness/MS -crossopterygian/S -crossover/MS -crosspatch/SM -crosspiece/SM -crosspoint -crossproduct/S -crossroad/SM -crosstalk/M -crosstrees -crossways -crosswind/SM -crosswise -crossword/SM -crotch/DSpM -crotchet/MSZ2 -crotchety/P -Crothers/M -croton/S -crouch/SGD -croup/DMGZS -croupy/RT -croutons -crow/MDSG -crowbait -crowbar/SMGD -crowberry/S -crowd's -crowd-pleaser/S -crowd/cSDG -crowded/P -crowdfund/SGD -crowdsource/DG -Crowell/M -crowfeet -crowfoot/M -Crowley/M -crown/MSGD -crowned/U -crowner/M -Croydon/M -crozier/SM -croûton/SM -CRT/S -crucial/Y -cruciate -crucible/SM -cruciferous -crucifix/XNMS -crucifixion/M -cruciform/S -crucify/DGRS7 -crud/GDMZS -cruddy/T -crude/PTY -crudeness/S -crudity/SM -crudités -cruel/DTYGP -cruelness/S -cruelty-free -cruelty/SM -cruet/MS -Cruickshank/M -Cruikshank/M -cruise/RSDG -cruiserweight -crumb/YDZSMG -crumble/SJDG -crumbliness/S -crumbly/TP -crumby/T -crumminess/S -crummy/T -crump -crumpet/MS -crumple/SDG -crunch/RSDZG2 -crunchiness/S -crunchy/TP -crupper/MS -crura -crus -crusade/MRSDG -cruse/SM -crush/R7kSDG -crushproof -Crusoe -crust/MGZzS2D -Crustacea -crustacean/MS -crustal -crustiness/S -crustless -crusty/TPS -crutch/SDGM -crux/M -Cruz -cruzado/S -cry/CRSGD -crybaby/MS -cryobiological -cryobiology/3 -cryogenic/S -cryogenics/M -cryoglobulin/S -cryonic/SY -cryopreserve/ND -cryostat/M -cryosurgery/SM -cryotherapy -crypsis -crypt/MW1S -cryptanalysis/M -cryptanalyst/MS -cryptanalytic -cryptanalytical -cryptanalytically -cryptical -crypto/S -cryptobiosis -cryptobiotic -cryptococcal -cryptococcosis -cryptocrystalline -cryptocurrency/S -cryptogam/S -cryptogamic -cryptogenic -cryptogram/MS -cryptographer/SM -cryptography/W1SM -cryptology/M3Ww -cryptomeria/S -cryptonym/S -cryptonymous -cryptorchid/S -cryptorchidism -cryptosporidia -cryptosporidium -cryptosystem/SM -Cryptozoic -cryptozoological -cryptozoologist/S -cryptozoology -crypts/C -crystal-clear -crystal/MS -crystalline/S -crystallinity -crystallisable -crystallise/AnDSG -crystalliser/SM -crystallite/SM -crystallizable -crystallize/NRnDGS -crystallized/A -crystallizes/A -crystallizing/A -crystallographer/MS -crystallographically -crystallography/WM -crystalloid/S -crèche/MS -crème -Crébillon -crêpe/SM -crêpey -Cs -CSA -CSE -CSEU -CSP -CSPRNG/S -CSS -CST -CSU -CSV -CSYS -ctenoid -Ctenophora -CTOL -Ctrl -Cu -cu. -cub/dWw3SD1GM -Cuba/M -Cuban/S -cubbyhole/SM -cube/M3S -cuber/M -cubic/S -cubicle/SM -Cubie -cubism/SM -cubit/SM -cubital -cubitus -cuboid/SO -cuckold/MDGyS -cuckoldry/SM -cuckoo/MSGD -cucumber/MS -cud/SM -cuddle/D2GYS -cuddly/T -cudgel/DSGMJ -Cudworth/M -cue/DaMSG -cueing -cuff/DGMS -cufflink/S -cuirass/S -cuisine/MS -cul-de-sac -cul/DG -Culbertson/M -culex -culices -culicine/S -culinary -cull/S -Cullen/M -culler/M -cullet -Culloden -Cully -culminate/NSGnD -culmination/M -culotte/S -culpa/SM -culpability/MS -culpable/YP -culprit/SM -cult/SM3 -cultigen/S -cultism/MS -cultist -cultivable -cultivar/S -cultivatable -cultivate/NGSnD -cultivated/U -cultivation/M -cultivator/MS -cultural/4 -culture/SMoDG -cultured/U -Culver/S -culverin/S -culvert/MS -cum/S -cumber/Sd -Cumberland/M -cumbersome/PY -cumbersomeness/S -Cumbria/M -Cumbrian/M -cumbrous -cumin/SM -cummerbund/SM -Cummings -Cummins/M -cumquat's -cumulate/DNvGnSV -cumulation/M -cumuli -cumulonimbi -cumulonimbus/M -cumulus/M -cuneiform/S -cunnilingus/MS -cunning/TYP -Cunningham/M -cunt/MS! -cup/DM6GS -cupboard/MS -cupcake/SM -Cupertino/M -cupful/MS -cupholder/S -cupid/S -cupidinously -cupidity/SM -cupola/DSGM -cuppa/S -cupping/M -cupric -cuprite -cupro-nickel -cuprous -cupule/S -cur/rYgvZl7dSMV -curability/SM -curable/PI -curacy/SM -curare/MS -curassow/S -curate/NDGMS -curative/S -curator/SM -curatorial -curatorships -curb/MDSG -curbing/M -curbside -curbstone/SM -curd/GvuMVSD -curdle/GSD -cure/S -curettage/SM -curette/SGD -curfew/SM -curia/M -curiae -curial -curie/MS -curio/SM -curiosity/SM -curious/TPY -curiousness/S -curium/M -curl/DGSR2 -curled/U -curlew/SM -curlicue/SDMG -curliness/S -curling/M -curls/U -curly/PT -curlycue's -curmudgeon/MYS -Curran/M -currant/MS -currawong/S -currency/FSM -current/PYS -currently/AF -currents/f -curricle/M -curricula -curricular -curriculum/MS -Currie -Currier -curry/DGMS -currycomb/SMDG -curs/GyihSD -curse/M -cursed/P -cursive/EY -cursiveness's -cursiveness/E -cursives -cursor's/K -cursor/dSM -cursorily -cursoriness/MS -cursors/K -cursory/K -curt/YTP -curtail/RLSDG -curtain/DMGS -curtilage/S -Curtis/M -curtness/S -curtsey/DSMG -curtsy/DGSM -curvaceous/Y -curvaceousness/S -curvature/MS -curve/SZGDM -curveball -curved's -curved/A -curvilinear/Y -curvilinearity/M -curving/M -curvy/T -Curzon/M -Cusack/M -Cushing/M -cushion/ZSGMD -Cushman -cushy/T -cusk-eel/S -cusp/MDS -cuspate -cuspid/S -cuspidal -cuss's/F -cuss/DhiSGM -cussed/EF -cussedness/M -cusser/FE -cusses/FE -cussing/F -custard/SM -Custer/M -custodial -custodian/SM -custodianship/MS -custody/SM -custom-built -custom-made -custom/sQ-9Mr8qSt+ -customary/YP -customhouse/S -customised/C -cut-and-paste -cut-down -cut-off/SM -cut-out/SM -cut-price -cut-throat/MS -cut/RSGJM -cutaneous/Y -cutaway/SM -cutback/SM -cute/TYP -cuteness/S -cutesy/T -cuticle/SM -cuticular -cutie/S -cutlass/MS -cutlassfish/S -cutler/ZSM -cutlery/MS -cutlet/MS -cuts/f -cutscene/S -cutting/MY -cuttle/M -cuttlebone/MS -cuttlefish/SM -cutup/MS -cutworm/SM -cuvette/S -Cuvier/M -Cuyahoga/M -CV/S -CVA -CVE -CVT -cw -Cwmbran/M -CWO -cwt -cyan/MWS -Cyanamid -cyanate/M -cyanide/SMGD -cyanoacrylate/S -Cyanobacteria -cyanobacteria -cyanobacterial -cyanogen/M -cyanophyte/S -cyanosis -cyanotic -Cybele/M -cyber -cyber-thriller -cyberart -cyberattack/S -cyberbabe -cyberbully/GS -cybercafe -cybercash -cybercast/SG -cyberchondria -cyberchondriac/S -cybercommunity -cybercop -cybercrime/S -cybercriminal/S -cybercrook/S -cyberculture -cyberespionage -cyberjournalist -cyberland -cyberlaw/S -cyberlibertarian -cyberlife -cybermall -cyberman -cybernate/SGDN -cybernaut/S -cybernetic/S -cybernetically -cybernetician -cyberneticist -cybernetics/M -cybernocracy -cyberpet/S -cyberphobe/S -cyberphobia -cyberphobic/SM -cyberporn -cyberpsychology -cyberpunk/SM -cybersecurity -cybersex -cybershop/SGD -cyberslacker/S -cyberslacking -cybersmut -cyberspace/MS -cybersphere -cyberspying -cybersquatter/S -cybersquatting -cyberstalker/S -cyberstalking -cybersurf/SGD -cyberterrorism -cyberterrorist/S -cybertheft/S -cyberthreat/S -cyberwar/S -cyberwarfare -cyberwarrior/S -cyberweapon/S -cyberworld -cyborg/S -cybrarian/S -cybrary -cybrid -cycad/SM -Cyclades -Cycladic -cyclamen/SM -cycle/D3SWGwM1 -cycled/A -cycler/A -cycles/A -cycleway/S -cyclicity -cycling's -cycling/A -cyclizine -cycloaddition/S -cyclogenesis -cyclohexane -cyclohexanol -cycloid/SM -cycloidal -cyclometer/MS -cyclone/WSM -cyclopaedia/MS -cyclopaedic -Cyclopean -cyclophosphamide -Cyclops -cyclosportive/S -cyclostome/S -cyclostyle/SGD -cyclothymia -cyclothymic -cyclotron/MS -cyder/SM -Cydonia/M -cygnet/SM -Cygnus -Cygwin -cylinder/wS1M -cymbal/M3S -cymbalist -cymbidium/S -cyme/S -cymose -Cynewulf/M -cynic/SMY -cynical -cynicism/MS -Cynon/M -cynosure/MS -Cynthia -cyphel -cypher/dSM -cypherpunk/S -cyphertext/S -cypress/SM -Cyprian -Cypriot/SM -Cyprus/M -Cyril -Cyrillic -Cyrus -cyst/SWM -cystectomy/S -cysteine -cystitis -cytoarchitectural -cytoarchitecturally -cytoarchitecture -cytochemistry/M -cytochrome/M -cytogenetic -cytogenetical -cytogenetically -cytogeneticist/S -cytogenetics -cytokine/S -cytokinesis -cytologically -cytology/3wSM -cytomegalic -cytomegalovirus -cytometer -cytometry -cytophotometer/S -cytophotometry/W -cytoplasm/SWM -cytosine/SM -cytoskeletal -cytoskeleton -cytosol -cytosolic -cytotoxic -cytotoxicity -Czaczkes/M -czar/3MS -czarevitch/M -czarina/MS -czarism/M -czarist -czarship -Czech/M -Czechoslovak -Czechoslovakia/M -Czechoslovakian -Czechs -Côte -d'Arezzo -d'art -d'Azur -d'Estaing -d'etat -d'etre -d'oeuvre -D'Orazio/M -D'Orsay/M -d's/A -d'être -D-day -D-notice -D.C. -d/to -da -dab/TGDS -dabber/M -dabble/DRSG -Daborn -Dacca/M -dace/M -dacha/MS -Dachau -dachshund/SM -dacite -dacitic -Dacron -dactyl/SM -dactylic -dad/MZS -Dada -Dadaism -Dadaist/W -daddy-long-legs -daddy/SM -Dade -dado/MS -Daedalus -daemon/SWM -daemonize/SGD -daffiness/S -daffodil/SM -daffy/T -daft/YTP -daftness/S -Dag -Dagenham -dagger/dMS -Daguerre -daguerreotype/SMDG -Dahl/M -dahlia/SM -dailiness/S -daily/SP -Daimler -daintiness/S -dainty/TSYP -daiquiri/MS -dairy/m5MSG -dairying/M -dairyland -dairymaid/MS -dais/SZM -daisy-cutter/S -daisy/MS -Dakar/M -Dakota/MS -Dalai -dale/MmS -daleth/M -Daley/M -Dallara/M -Dallas -Dallet/M -dalliance/MS -dally/RGDS -Dalmatia/M -Dalmatian/S -dalmatic/S -DALnet/M -Dalton/M -Daly -dam/MDGS -damage/DRSkMG -damageable -damaged/U -Damascus/M -Damasio/M -damask/DMGS -dame/MS -Damien -Damietta/M -Damjan/M -dammit/S -damn/lDGkNS7n -damnation/M -damneder -damnedest -damner -Damocles -Damon/M -damp/SDTRPGY -dampen/drS -dampness/S -damsel/SM -damselfish/S -damselfly/SM -damson/SM -dan -Dan/M -Dana/M -Danaë -Danbury -Danby/M -dance-off/S -dance/SDRG -danceable -dancelike -dancercise -dancercize -dandelion/MS -dander/SdM -dandify/GDS -dandle/DSG -dandruff/MS -dandy/TYMS -Dane/S -danger/SdM -dangerous/YP -dangle/RGkDS -Daniel/SM -Daniele/M -Danielle/M -Danielson -Danish -dank/YPT -dankness/S -Danni/M -Danny/M -danseuse/SM -Dante/M -danthonia/S -Danube/M -Danubian -Danville -Danzig -Daphne -dapper/PY -dapperer -dapperest -dapple/DSG -Dara/M -Darbishire/M -Darby -Darcy/M -dare/RDkGS -daredevil/SyM -daredevilry/S -Darell -daresay -Darger/M -Darien/M -daring/P -Dario -Darius -Darjeeling -dark/PSDTGY -darken/rdS -darkie/S -darkish -darkly/T -darkness/S -darknet -darkroom/SM -Darlene -darling/PMS -Darlington/M -darn/DRGS -darneder -darnedest -darning/M -Darnley/M -DARPA/M -Darrell -Darren -dart/MGSRD -dartboard/SM -Dartford -Darth/M -Dartmoor/M -Dartmouth -Darwen/M -Darwin/M -Darwinian -Darwinism -Darwinist/S -Daryl/M -dash/GRSDk -Dashamir -dashboard/SM -dashiki/MS -dastardliness/S -dastardly/P -DAT -data/M -database/DMGS -datable -databus -datacard -datacomms -datacoms -datafile -dataglove/S -datagram/SM -Datamation -datary -dataset/S -datasphere -datastore/S -dataveillance/S -date/MGVRSiphD -dated/U -datedness/e -dateline/SMDG -dative/S -Datsun -datum/MS -daub/DRGS -Daugherty/M -daughter-in-law -daughter/YMS -daughterboard -daughtercard -daughters-in-law -daunt/DGkpS -daunted/U -dauntless/PY -dauntlessness/S -dauphin/MS -dauphinois -dauphinoise -Dauwe -Dave/M -Davenport/MS -Daventry -David/M -Davidson -Davie -Davis -Davison/M -davit/SM -Davy/S -dawdle/DRSG -Dawes -Dawkins/M -dawn/GDSM -Dawson -day-long -day-to-day -day/SM -dayan -dayanim -daybed/S -dayboat -daybook/S -daybreak/SM -daycare/S -daydream/SRMDG -daylight/GSDM -daymare/S -daypack/S -daysack/S -daysailor -dayside -daytime/SM -Dayton -Daytona/M -daywear -daywork/R -daze/DiSGh -dazzle/SRGkD -dB/M -DBE -dBi -dBm -DBMS -dBW -DC -DCB -DCM -DCMG -DCVO -DDoS -DDR -DDT -de-brief -de-ice/DRGS -de-industrialisation -de-industrialization -de/G -deacon/SdM -deaconess/SM -dead-end -dead-heat -dead/PTY -deadbeat/SM -deadbolt/S -deaden/Sdk -deadener/MS -deadening/M -deadeye/S -deadhead/SM -deadlight/S -deadline/MGSD -deadliness/S -deadlock/MGSD -deadly/PT -deadpan -deadwood/SM -deaf-and-dumb -deaf/PYT -deafen/dkS -deafening/M -deafness/S -deal-breaker -deal/JRGS -dealership/MS -dealfish/S -dealign/DGL -dealing's -dealing/a -dealmaker/S -dealmaking -deals/a -dealt/a -deaminase -deaminated -deamination -dean/MGD -Deane/M -deanery/SM -Deanna/M -deanship/SM -dear/TPYZS -Dearborn -Dearing/M -dearness/S -dearth/SM -deary/SM -deassign/G -death-dealing -death-knell -death-obsessed -death-or-glory -death-rattle -death-roll -death-toll/M -death-trap/MS -death-warrant/MS -death-watch/MS -death-wish/S -death/pYMS -deathbed/MS -deathblow/MS -deathless/Y -deathlessness -deathlike -deathly/T -deathtrap -deattribute/D -deattribution -deb/SM -debacle/S -debar/L -debark/NnG -debarkation/M -debase/RL -debatable -debatably -debate/RM -debauch/yGhSiD -debauched/P -debauchee/MS -debaucher/M -debauchery/SM -Debbie/M -Debby -debenture/SM -Debian/M -debilitate/SNGnD -debilitation/M -debility/SM -debit/d -debonair/PY -debonairness/S -Deborah/M -debouch/DGS -debouchure -debounce/SGD -Debra -Debrett/M -debride/D -debridement -debrief/JRG -debris/M -debt/MS -debtor/SM -Debussy/M -debut/Sd -debutant/S -debutante/S -Dec -decade/SM -decadence/Z -decadency/S -decadent/Y -decaf/S -decaffeinate/DGS -decagon/MS -decagonal -decal/SM -decalcification -decalcifier -decalcify/SGD -Decalogue -decametre/SW -decamp/GL -decanal -decapitate/DSG -decapitator/MS -decapod/S -decapsulate/SGDN -decarbonisation -decarbonise/SGDR -decarbonize/SGDRN -DeCaro/M -decathlete/S -decathlon/SM -Decatur/M -decay/GD -decayer -Decca -decease's -decease/KSGD -deceit/S6jM -deceitful/P -deceitfulness/S -deceive/UGDS -deceiver/MS -deceiving/Y -decelerate/nDSNG -deceleration/M -decelerator/SM -December/SM -decenary -decency/SIM -decennary -decennial/YS -decent/YI -deception/MS -deceptive/PY -deceptiveness/S -decertify/NGn -decibel/MS -decide/DBGVivhNxXuS -decidedness/M -deciduous/YP -decigram -decigramme -decile/MS -decilitre/MS -decimal/Q8Y-qSM -decimate/NDSnG -decimation/M -decimetre/MS -decimetric -decinary -decipher/dL7r -decipherable/IU -decision-making -decision/IMS -decisioned -decisioning -decisive/PIY -decisiveness/IS -deck/DRGSJM -deckchair/S -deckhand/S -deckhouse/S -decking/M -decklid/S -declaim/y -declamation/SM -Declan/M -declarable -declarant/SM -declaration/AM -declarative/S -declarator/SM -declare/vnRDNVGyS -declared/KUA -declares/A -declaring/A -declass/D -declassify/DGNn -declaw/SGD -declension/SM -declination/M -declinational -declinatory -decline/RGNnSD -declinism -declivitous -declivity/SM -DECNET -deco -Deco -decoct/GD -decocture -decode/B -decolletes -decompaction/S -decompensated -decompensation -decompilations -decomposability/M -decomposable/I -decompose/B -decompress/NXG -decompresser -deconflict/SGD -deconfliction -decongest/SGD -decongestant/S -decongestion -deconstruct/SGDV -deconstructionism -deconstructionist/S -decontaminant -decontaminate -decontrol/SGD -decor/S -decorate/NVvGnDSu -decorated/AcU -decorates/cA -decorating/Ac -decoration/ASM -decorative/P -decorator/SM -decorous/IPY -decorousness/S -decorticate/DGSN -decortication/M -decorum/SM -decoupage/DGSM -decoy/GMS -decrease/k -decree/SMdG -decrement/SDGM -decremental -decrepit -decrepitude/SM -decrescendo -decretal/S -Decretum -decry/J -decrypt/GD -decryption -decubitus -Dedekind/M -dedicate/NASnDG -dedicated/Y -dedicatee -dedication/M -dedicative -dedicator/MS -dedicatory -deduce/DGnbNVvS -deducer -deduct/b -deductibility/M -deductible/S -deduction/M -dee/M -deed's/a -deed/SGDM -deeds/a -deejay/GDSM -deem/SDAG -Deems/M -deemster/S -deep-discount -deep-freeze/G -deep-fried -deep-frozen -deep-laid -deep-rooted -deep-sea -deep-seated -deep/TPYS -deepen/dS -deepish -deepness/S -deer/M -Deere -Deerfield/M -deergrass -deerhound/S -deerskin/SM -deerstalker/SM -deerstalking/M -def -deface/RL -defalcate/GDSNn -defalcation/M -defalcator/S -defamation/M -defame/yRGn -defat/SDG -default/R -DEFCON -defcon -defeasance/S -defeasibility -defeasible -defeasibly -defeat/RG3D -defeated/UY -defeatism/SM -defeatist -defecate/SNGnD -defecation/M -defect/GuSDMVv -defection/MS -defective/PS -defectiveness/S -defector/SM -defeminise/DG -defeminize/DG -defence/p -defenceless/Y -defencelessness -defenceman -defencemen -defend/Vuv -defendant/MS -defended/U -defenestrate/DSG -defensibility/M -defensible/IY -defensibly/I -defer/RGSD -deference/SM -deferential/Y -deferrable -deferral/SM -defervesce/D -defervescence -defiance/SM -defiant/Y -defibrillate/ND -defibrillation -defibrillator/SM -deficiency/MS -deficient/Y -deficit/SM -defile/L -defiled/U -definable/UI -definably/I -define/KSDAG -defined/U -definer/MS -definienda -definiendum -definiens -definientia -definite/xVuv -definitely/I -definiteness/IS -definition/KAMS -definitive/SP -deflagration -deflatable -deflate/GnDNS -deflater -deflation/My -deflect/GSVD -deflection/SM -deflector/MS -deflesh/D -deflexed -deflocculate/D -deflocculation -defloration -Defoe -defog/R -defoliant/MS -defoliator/SM -DeForest/M -deforest/NnG -deform/xnR7GN -deformity/SM -DEFRA -defrag/SGD -defragment/GNR -defraud/RGD -defrayal/MS -defriend -defrost/R -deft/PTY -deftness/S -defunct -defuse -defy/RSkDG -deg -degas/JDG -degauss/GD -degeneracy/MS -degenerate/YP -degradability -degradable -degradative -degrade/hki -degraded/P -degranulate/N -degree/SM -degreed -degressive -dehisce/SGD -dehiscence -dehiscent -dehydrate -dehydrator/MS -dehydroascorbic -dehydrocholesterol -dehydrogenase -dehydrogenate -deicidal -deicide -deictic -deification/M -deify/NDGnS -Deighton/M -deign/DGS -deinstal/S -deinstall/NXRSGD -Deirdre/M -deist/WMS -deistical -Deitch/M -deity/MS -deixis -deja -deject/GiDhS -dejected/P -dejection/SM -DeKalb -DeKastere -Delaney/M -Delano/M -Delaware/M -delay/D -Delbru/M -delectable/PSY -delectation/SM -delegable -Delest/M -deletable -delete/NDnSG -deleter -deleterious/PY -deletion/M -deleverage/SDG -delexical -delft/SM -delftware/S -Delgado -Delhi/M -deli/M -Delia/M -Delian/S -deliberate/nSGDPuvYV -deliberateness/S -deliberative/P -Delibes -delicacy/IMS -delicate/IPY -delicateness/S -delicates -delicatessen/MS -delicious/PY -deliciousness/S -delicti -delight/6jhGi -delighted/P -delightful/P -Delilah -delimit/nd -delineate/SGDNnV -delineation/M -delink/SGD -delinquency/MS -delinquent/YSM -deliquesce/GDS -deliquescent -deliration -delirious/PY -deliriousness/S -delirium/MS -Delius -deliver/AdZS -deliverable/S -deliverance/SM -delivered/U -deliverer/SM -delivery/m -dell/SM -Della/M -Delmarva -Delos -Delphi -Delphic -Delphine/M -delphinium/SM -Delport -delta/SM -deltaic -deltoid/SM -delude/NXvkxSGVDu -deluder/M -deluge/GSD -delusion/M -delusive/P -delve/RSDG -demagnetiser -demagnetizer -demagogue/DySMG -demagoguery/SM -demagogy/MW -demand/SGDk -demander/M -demanding/U -demarcate/SNGnD -demarcation/M -demassify/SGDN -dematerialisation -dematerialise/SGD -dematerialize/SGDN -demean/D -demeanour -demented/PY -dementia/SM -demerara -Demerara -demerge/SDGR -demeritorious -Demerol -demesne/MS -Demeter -demi-glace -demi-mondaine/SM -demi-monde/SM -demigod/SM -demigoddess/MS -demijohn/SM -demilitarise/n -demilitarize/nNSG -demise/DMGS -demisemiquaver/S -demisexual/S -demisexuality -demist/G -demit/DNSG -demitasse/MS -demo/GDM -democracy/SM -democrat/qQ81-WSM -democratic/UY -demodectic -demoded -demographer/SM -demographic/S -demography/1WwSM -demoi -demolish/DSG -demolisher/M -demolition/MS -demon/SWM -demoness -demoniac/S -demoniacal/Y -demonically -demonisation -demonise/SDG -demonization -demonize/SDG -demonolatry -demonology/MSw3 -demonstrable/IY -demonstrableness/M -demonstrably/I -demonstrate/uGnVSDvN -demonstration/M -demonstrative/UY -demonstrativeness/MS -demonstratives -demonstrator/SM -demoralise/n -demoralize/R -DeMorgan/M -demos -demoscene -Demosthenes -Demosthenic -demote/DGW -demotic/S -demotion -demotivate -demotivation -demount/7 -Dempsey -demulcent/S -demur/GDS -demure/YP -demureness/S -demurrable -demurral/MS -demurrer/S -demythologise/n -demythologize/nDGNS -den/ZDSGM -denary -denaturation -denature/G -Denbigh/M -Denbighshire/M -dendrite/SM -dendritic/Y -dendrochronology/w -dengue/SM -Denham/M -deniability -deniable/UY -denial/MS -denigrate/nVGSND -denigration/M -denigratory -denim/MS -Denis -Denise -denitrify/SGDN -denizen/dSM -Denmark/M -Dennis -Dennistoun/M -Denny -denominate/x -denotative -denoter -denouement/SM -denounce/DLSGR -Denpasar/M -dens/T -dense/FY -denseness/SM -denser/F -densitometer/MWS -densitometry/M -density/SM -dent's -dent/SIGD -dental/Y -dentary/S -denticle/S -denticulate/D -denticulation/S -dentifrice/MS -dentil/S -dentine/M -dentist/MSy -dentistry/MS -dentition/MS -denture/SIM -denuclearise/SDG -denuclearize/SGD -denudation/M -denude/DRnG -denunciate/DSGnNV -denunciation/M -Denver -deny/DR7kGS -deodorant/MS -deodorise/nGRSD -deodorize/nGRNSD -deontological -deontologist/S -deontology -deoxyribonucleic -depaint -depart/LG -department/o -departmental/Q8-q -departure/SM -depend/BSDGl -dependability/MS -dependable/P -dependence/ISM -dependency/MS -dependent/cI -dependently/I -dependents -dependingly -depersonzlized -depict/GSD -depicter/M -depiction/SM -depigment/D -depigmentation -depilatory/S -deplete/DGSNnV -depletion/M -deplorable/P -deplore/klDGS -deplorer/M -deploy/LD7G -deployed/A -deploys/A -depolarize/R -depoliticisation -depoliticization -deponent/S -deport/nLNG -deportation/M -deportee/SM -deposit/AdS -depositary/MS -depositor/SM -depository/SM -depot -deprave/NDhSiG -depraved/P -depraver/M -depravingly -depravity/MS -deprecate/DSNnGky -deprecation/M -depreciable -depreciate/DnvGkSVN -depreciation/M -depreciatory -depredator/S -depredatory -depress/bvkVXN -depressant/S -depression/M -depressive/S -depressor/MS -depressurisation -depressurise/SGD -depressurize/SGDN -deprive/SGnND -Dept. -depth/SM -depthless/Y -depurate/D -depuration -depurative/S -depurator/S -deputation/M -depute/SnQ8NGDZ -deputy/SM -dequeueing -deracinate/D -derail/L -derange/L -Derby/M -derby/MS -Derbyshire/M -dereference/R -deregister/Sd -Derek/M -derelict/S -dereliction/MS -derestrict/SGD -derestriction -deride/NXvkVuD -derision/M -derisive/P -derisiveness/S -derisory -derivable -derivate/S -derivation/M -derivational -derivative/MPS -derive/VuvNn -dermabrasion -dermal -dermatitides -dermatitis/MS -dermatoglyphics -dermatology/3SMw -dermatome/S -dermatomyositis -dermatophytoses -dermatophytosis -dermatoses -dermatosis -dermestid -dermis/SM -Dermot/M -derogate/NVSGnyD -derogation/M -derogatory/Y -derrick/SDGM -Derrida/M -derring-do -derringer/SM -derrière/S -Derry -dervish/SM -Derwent -DES/M -desalinate/SNnGD -descale/GDS -descaler/S -descant/SM -Descartes/M -descend/FSGD -descendant/SM -descendent -descender/SM -describable/I -describe/NVvuRX -description/M -descriptive/SP -descriptiveness/S -descriptivism -descriptivist/S -descriptivistic -descriptor/SM -descriptory -descry/DGS -desecrate/SDNnG -desecrater/M -desecration/M -deseed/SGD -deseeder/S -deselection/S -desensitise/n -desensitiser/S -desensitize/nN -desensitizer/S -desert/RGMDS -desertification -desertion/MS -deserve/kih -deserved/UY -deservedness/M -deserving/U -deservingness -desex/SGD -desiccant/S -desiccate/VDGSNn -desiccation/M -desiccator/SM -desiderata -desideratum/M -design/NhJ7Vxn -designate/DKGS -designation/M -designator/SM -designed/A -designs/A -Desilu/M -desipramine -desirabilia -desirabilities -desirability/UM -desirable/PS -desirableness/S -desirables/U -desirably/U -desire/BRl -desired/U -Desiree -desirous/PY -desist/DGS -desk/MS -deskill/SGD -desktop/S -Desmond/M -desolate/YNPkGnDS -desolateness/S -desolater/M -desolation/M -desorption/M -despair/SkDG -despairer/M -despatch/GDS -desperado/M -desperadoes -desperate/YPNn -desperateness/S -desperation/M -despicable/Y -despise/SRGD -despite -despoil/L -despond -despondence/SZ -despondency/SM -despondent/Y -despot/1W -despotism/MS -dessert/SM -desserty -dessicate/ND -destain/SGD -destigmatization/M -destination/MK -destine/nKND -destiny/SM -destitute/P -destitution/SM -destock/G -destroy/DR7GS -destruct/bvVuGDS -destructibility/SMI -destructible/I -destruction/MS -destructive/P -destructiveness/S -destructor/MS -desuetude/MS -desultory/YP -desuperheater/S -detach/GRSiLhD7 -detachability -detached/P -detain/DGSL -detainee/S -detainer/MS -detect/DGSBVl -detectability/U -detectable/U -detectably/U -detected/U -detection/MS -detective/MS -detector/SM -detention/MS -deter/SGD -deterers -detergent/SM -deteriorate/DNSnGV -deterioration/M -determinability/M -determinable/IP -determinacy/I -determinant/MS -determinate/IPYN -determination/IMK -determinative/P -determine/uDRBvGVhiS -determined/P -determiner/KMS -determines/KA -determining/KA -determinism's/I -determinism/SM -deterministic/Y -deterred/U -deterrence/SM -deterrent/YSM -detest/ln7N -detestable/P -detestation/M -dethrone/LG -detonable -detonate/DVNGSn -detonated/U -detonation/M -detonator/SM -detox/SGD -detoxification/M -detoxify/GnDSN -DETR/M -detract/DGVv -detribalise/DSG -detribalize/DSG -detriment/SoM -detrimental -detrital -detritus/M -Detroit -Dettingen -Deucalion/M -deuce/DGhMS -deuteranopia -deuterium/M -deuteron/MS -Deuteronomy -deutocerebra -deutocerebrum -Deutsch -dev/S -Devan/M -devastate/DNSnkVG -devastation/M -devastator/SM -devein/D -develop/cdAS -developable -developed/Uf -developer/SAM -development/fMS -developmental/Y -deverbal/S -deviance/MSZ -deviancy/S -deviant/MYS -deviate/NDSGn -deviating/U -deviation/M -devil/DLyMGS -devilish/PY -devilishness/S -devilry/SM -devious/YP -deviousness/S -devisable -devise/DJRSG -devisee/S -devisor -devitalize -devkit/S -Devlin/M -devoid -devolution/SM -devolve/SGD -Devon/M -Devonian/S -Devonport/M -Devonshire/M -Devorah/M -devote/ixh -devotee/SM -devotion/SM -devotional/S -devour/DRSG -devout/TYP -devoutness/S -dew/ZGS2M -dewan -dewar -dewater/Sd -dewberry/SM -dewclaw/SM -dewdrop/SM -Dewey -Dewhurst/M -dewiness/S -Dewitt -dewlap/SM -dewy-eyed -dewy/TP -Dexedrine -dexes/I -dexter -dexterity/MS -dexterous/PY -dexterousness/S -dextral -dextrality -dextrally -dextran -dextrose/SM -dextrous/YP -Deyo/M -DfES -Dhabi/M -Dhaka/M -dharma -Dhiri -dhoti/MS -dhow/SM -DHSS -dhurrie/S -diabase/M -diabesity -diabetes/M -diabetic/S -diabolic/Y -diabolical/P -diabolism/M -diachroneity -diachronic -diachronically -diachronicness -diachronistic -diachrony -diaconate -diacritic/MSY -diacritical/S -diadem/SMd -diaereses -diaeresis/M -diagnometer/SM -diagnosable -diagnose/DGaS -diagnosed/U -diagnosis's -diagnosis/a -diagnostic/SYM -diagnostician/MS -diagnostics/M -diagonal/tQ+8SY -diagram/RDGMS -diagrammable -diagrammatic/Y -diagrammaticality -diakineses -diakinesis -dial/RSMGD -dialect/wWSo1M -dialectal -dialectic/MS -dialectology/w3 -dialogic -dialogical -dialogist/S -dialogue/SGD -dialoguer -dials/A -dialyse/SGD -dialysis/M -diam -diamagnetic -diamanté -diameter/SMw1W -diamine/S -diamond/MSDG -diamondback/SM -Diana/M -Diane/M -Dianne -diapason/SM -diapause/G -diapedesis -diaper/S -diaphanous/PY -diaphone/S -diaphragm/MS -diaphragmatic -diaphyses -diaphysis -diapsid/S -diarrhoea/SMW -diarrhoeal -diary/3MS -diaspora/WM -diaspore/S -diastase/MS -diastole/WSM -diathermy/MS -diatheses -diathesis/M -diatom/MS -diatomaceous -diatomic -diatonic -diatribe/MS -diazepam -dibasic -dibble/MGDS -Dibley -diborane -dibs -dice/DnSGN -dicentric -dicer/M -dices/I -dicey -dichasia -dichasium -dichlamydeous -dichlamydious -dichloride/M -dichlorodifluoromethane -dichloromethane -dichotomous/Y -dichotomousness -dichotomy/qQS-8M -dichromatic -dichromatism -dicier -diciest -dicing/M -dick/DGMS -dickens/M -Dickensian -Dickerson/M -dickey/SM -dickhead/S -dickier -dickiest -Dickinson -Dickson -Dicky/M -dicky/STM -dicot/S -dicotyledon/SM -dicotyledonous -dicrotic -dicta/nM -Dictaphone -dictate/DGS -dictation/M -dictator/MoS -dictatorial/P -dictatorship/MS -diction/KSM -dictionary/MS -dictum/M -dicyclomine -did/AecU -didactic/SY -didactics/M -diddle/RDSG -Diderot -didn't -Dido/M -didst -didymium -die-cast -die-stamping -die/SDG -dieffenbachia/S -diegeses -diegesis -diegetic -Diego/M -diehard/S -dielectric/SM -diem -Diemen/M -Dieppe -dies/U -diesel-electric/S -diesel/SM -diet/MGSRD -dietary/S -dietetic/S -dietetics/M -diethyl -dietician/MS -dietitian/SM -Dietrich -Dietz -diff/DGS -differ/Sd -difference/IMS -differenced -differencing -different/IY -differentia -differentiae -differential/MSY -differentiate/SGnBDN -differentiated/U -differentiation/M -differentiator/MS -differentness -differer/S -difficult/YZ -difficulty/MS -diffidence/MS -diffident/Y -Diffie-Hellman -Diffie/M -diffract/DGS -diffraction/SM -diffractometer/MS -diffuse/PSvYRDGubNxXV -diffuseness/S -diffusion/M -diffusive/P -diffusivity/MS -dig/RSJG -digastric -Digby/M -digerati -digest/SKGD -digested/U -digester/M -digestibility/SM -digestible/I -digestif/S -digestion's/I -digestion/MS -digestive/YS -digestiveness -digicam/S -Digimon -digipak -digit/q-s9SQ8M -digital/-qQ9s8Y -digitalis/M -digitate -digitation -dignified/U -dignify/DSG -dignitary/SM -dignity/ISM -digoxin -digram -digraph/SM -digress/uNvDSGXV -digresser/S -digression/M -digressive/P -dihedral/S -Dijkstra/M -Dijon -dike/SMGD -diker/M -diktat/SM -dilapidate/DGSNn -dilapidation/M -dilatancy -dilatation/SM -dilate/hiVGnDSNy -dilation/M -dilator/MS -dilatory/P -dildo/SM -dilemma/SM -dilettante/MS -dilettantish -dilettantism/MS -diligence/SM -diligent/YP -dilithium -dill/YM -Dillard/M -Dillinger -Dillingham -Dillon/M -dilly-dally/GDS -dilogarithm -dilophosaurus -diltiazem -diluent -dilute/PYVGDS -diluted/U -diluter -dilution/SM -dim/rSRPYDTG -DiMaggio -dime/MS -dimension/DGpMoS -dimensional -dimensionality/M -dimercaprol -dimerous -dimethyl/M -dimethylglyoxime -diminish/SDG7 -diminished/U -diminuendo/MS -diminution/SM -diminutive/PSY -dimity/MS -dimmable -dimmed/U -dimmish -dimness/S -dimorphic -dimorphism/M -dimorphous -dimple/YMGDS -dimply/T -dimwit/DMS -din/rDRSMdG -Dinah -dinar/SM -dine/S -dinette/MS -ding-dong -ding/zDG2Z -dinghy/MS -dinginess/S -dingle/SM -dingo/MS -dingoes -Dingwall/M -dingy/TSP -dinky/ST -dinnertime/S -dinnerware/SM -dinoflagellate/S -dinosaur/SM -dint/MGSD -diocesan/S -diocese/SM -diode/MS -dioecious -dioecy -Diogenes -Dione -Dionysian -Dionysus -dioptre/SM -diorama/SM -diorite/W -dioxalate -dioxide/SM -dioxin/S -dip/DRGSZ -DipEd -diphtheria/OSM -diphtheritic -diphtheroid -diphthong/SM -diphthongal -diphycercal -diplexers -diplodocus -diploid/S -diploma/SDM1W -diplomacy/SM -diplomat/3MS -diplomata -diplomatic/U -diplomatics/M -diplomatist -diplopia -diplotene -dipole/SM -dippy/T -dipsomania/SM -dipsomaniac/SM -dipsomaniacal -dipstick/MS -dipteran/S -dipterous -diptych/M -diptychs -Dirac -dire/PTj6Y -direct/TxPDGySYV -directed/aUIA -directing/a -direction-finder -direction/IMaS -directional/S -directionality -directionless -directions/A -directive/SM -directivity/M -directly/I -directness/IS -director/MAS -directorate/SM -directorial -directors' -directors/a -directorship/SM -directory/MS -directrices -directrix/M -directs/aA -DirectShow/M -DirectX -dirge/MSDG -dirigible/S -dirigisme -dirigiste -dirk/MS -dirndl/SM -dirt/zZ2SM -dirtiness/S -dirty/TDSGP -dis/M -disable/LGSDR -disabler -disadvantage/i -disaffect -disaffirm/SGDN -disafforest/SGDN -disaggregate -disagreeable/S -disallow -disambiguate/NSDGn -disambiguator/S -disappoint/Lhk -disarm/k -disarrange/L -disarticulate/N -disastrous/Y -disband/L -disbar/L -disbelieve/k -disbenefit/S -disbound -disbud/SGD -disburden -disbursal/S -disburse/LSGD -disburser/M -disc/SM -discarnate -discern/LbkSGD -discerner/M -discernibility -discernible/I -discernibly -discerning/U -disciple/MGDS -discipleship/SM -disciplic -disciplinarian/SM -disciplinary -discipline's/I -discipline/GDSM -disciplined/UI -discipliner/M -discipular -disclaim/7 -disclose -disclosed/U -disclosure -Discman -disco/MG -discographer/S -discography/MS -discoid/O -discolith -discolorous -discolour/NniGJ -discoloured/M -discolourment -discomania -discomaniac -discombobulate/D -discombobulation -discomfit/d -discomfiture/SM -discommode/GD -discommodious -discommodity -discompose/D -disconcert/k -disconnect -disconnectedness/S -disconnecter/M -disconsolate/Y -discontinue/nN -discordance/MS -discordant/Y -discorporate/D -discotheque/SM -discothèque/MS -discount/RB -discourage/LDGk -discourager -discourse/G -discover/AdZS -discoverability -discovered/U -discoverer/S -discovery/MSA -discreet/PIY -discreeter -discreetest -discreetness/S -discrepancy/MS -discrepant/Y -discrete/nYPN -discreteness/S -discretion/IMS -discretionary -discriminable -discriminant/SM -discriminate/SnNDVGky -discriminating/IY -discrimination/MI -discriminator/MS -discus/SMG -discuss/N7X -discussant/SM -discusser/M -discussion/M -disdain/jMDG6S -disdainful/P -diseconomy/S -disembark/Nn -disembarrass/DGL -disembody/L -disembowel/LDSG -disempower/LSd -disenchantingly -disengage/L -disfigure/L -disfranchise/L -disfrock/SGD -disgorge -disgorgers -disgrace -disgracer/M -disgruntle/LSDG -disguise/GRDh -disguised/U -disgust/k6jh -dish/SDMG -dishabille/MS -disharmonious -disharmoniousness -dishcloth/MS -dishevel/DGLS -dishwasher/SM -dishwashing -dishwater/M -dishy/T -disillusion/LDG -disincorporate/G -disinfectant/SM -disinfest/GN -disingenuous -disinhibit/SdN -disintegrative -disintegrator/S -disinterest/i -disinterested/P -disinterestedness/S -disintermediate/DN -disinvent/D -disinvite/DG -disinvoltura -disjoin/SD -disjointedness/S -disjointness -disjunct/SVv -disjunctive/S -disk/MS -diskette/S -dislodge/L -disloyal -dismal/YP -dismantle/L -dismantler/S -dismast/SGD -dismay/DSk -dismayed/U -dismember/dL -dismiss/vR -dismissible -Disney/M -Disneyland -disodium -disorder/hi -disordered/P -disorderly/P -disparage/LRkDSG -disparate/PSY -dispassionate/P -dispatch/R -dispel/DGS -dispensable/I -dispensary/SM -dispensate -dispensation/M -dispense/RyGnDS -dispersal/SM -dispersant/M -disperse/LXVubNvDhRGS -dispersion/M -dispersive/P -dispirit/dS -dispirited/Y -dispiritingly -display/ADGSM -displease/h -displeasure -disport -disposable/S -disposal/SM -dispose/KGNISXD -disposition/KMI -disproportion/N -disproportional -disproportionality -disproportionate/DG -disproportionation/M -Dispur -disputable/I -disputably/I -disputant/MS -disputation/M -disputatious/YP -dispute/lnRNDGS -disputed/U -disquiet/kM -disquisition/OMS -Disraeli/M -disrate/SGD -disregard/6 -disrelish -disrepair -disreputable/P -disrepute/M -disrobe/G -disrupt/uGVSDv -disrupted/U -disrupter/MS -disruption/SM -disruptor/MS -dissatisfy -dissect/GD -dissection -dissemble/DSRG -disseminate/DSNnG -dissemination/M -dissension/SM -dissent/RGDS -dissentious -dissertation/MS -disservice -dissidence/MS -dissident/MS -dissimilar/S -dissimilitude/S -dissipate/nVRNDShiG -dissipated/P -dissipation/M -dissociable/I -dissociate/NVvnSDG -dissociation/M -dissoluble/I -dissolute/PY -dissoluteness/S -dissolve/AGDS -dissolved/U -dissolvent/S -dissonance/SM -dissonant/Y -dissuade/VDGS -dissuader/M -dissyllable -dissymmetrical -dissymmetry/SW -distaff/SM -distal/Y -distance/MGDS -distanced/e -distances/e -distancing/e -distant/PY -distastefulness/S -distend/XN -distensibility -distensible -distil/NS7VnG -distillate/MS -distillation/M -distiller/Z -distillery/MS -distinct/TvPVYu -distinction/MS -distinctive/P -distinctiveness/S -distinctly/I -distinctness/IS -distinguish/S7DlG -distinguishable/IU -distinguishably/I -distinguished/U -distort/DRG7 -distorted/U -distortion/SM -distract/GhikD -distracted/P -distraint -distrait -distraught/Y -distress/GkD6 -distributable -distributary/S -distribute/ASVGD -distributed/U -distribution/ASM -distributional -distributive/YPS -distributivity -distributor/MS -distributorship/M -district/SM -distro/S -disturb/DRkGS -disturbance/SM -disturbed/U -disulphide/M -disunion -disuse/M -disyllable/MW -ditch/DSMG -ditcher/M -dither/Sd -ditherer/S -ditto/DMGS -ditty/MS -ditz/S -diuresis/M -diuretic/S -diurnal/SY -diva/SM -divagate/SD -divagation -divalent/S -Divali -divan/SM -dive-bombing -dive/RJDTGS -dived/M -divemaster/S -diverge/DGS -divergence/MS -divergent/Y -divers/NX -diverse/YP -diverseness/S -diversification/M -diversifier/M -diversify/SGNDn -diversion/My -diversity/SM -divert/SDG -diverticula -diverticular -diverticulitis/M -diverticulosis -diverticulum -divertimento/M -divertissement/S -divest/SGD -divestiture/SM -divestment -dividable -divide/RuDSGxVXvN -divided/AU -dividend/MS -divides/A -dividing/A -divination/M -divinatory -divine/YTNDSGnR -divinity/SM -divisibility/IMS -divisible/I -division's -division/A -divisionist/S -divisive/P -divisiveness/S -divisor/MS -divorce/GSMD -divorcee/S -divorcé -divorcée/SM -divot/SM -divulgation/S -divulge/DGS -divulgence -divvy/DSMG -DivX -divx -Diwali -diwan -Dixie -Dixieland -Dixon/M -dizygotic -dizygous -dizziness/S -dizzy/PTYDSGk -DJ/M -Djakarta/M -djellaba/S -djellabah's -Djibouti/M -djinn -DJs -DLA -DLL/S -DLR -DMA -DMCA -dmg -Dmitri -DMZ -DNA -DNase -Dnieper/M -DNS -DNSSEC/M -do-gooder/S -do-it-yourself -do-or-die -do/7TGJRzy -DOB -dobbin/MS -Dobermann/S -dobra -Dobson/M -doc/RSMDG -docile/Y -docility/SM -dock/MS -dockable -dockage -docket/SdM -dockland/MS -dockside/M -dockworker/S -dockyard/SM -DoCoMo -doctor/dSM -doctoral/K -doctorate/SM -doctrinaire/S -doctrinal -doctrine/oMS -docudrama/S -document/NMRDGSn -documentalist/SM -documentarian/S -documentarist/S -documentary/MS -documentation/M -documented/U -docusoap/S -docx -DOD -dodder/dSZ -doddle -Dodds/M -dodecahedra -dodecahedral -dodecahedron/M -Dodecanese -Dodge/M -dodge/ZRSDG -dodgem/S -Dodgson/M -dodgy/T -dodo/MS -Dodoma/M -Dodson/M -doe/SM -Doering/M -does/ecUA -doeskin/MS -doesn't -doff/SDG -dog's-tail -dog's/f -dog-biscuit/MS -dog-box -dog-clutch -dog-collar/SM -dog-eared -dog-eat-dog -dog-end -dog-leg/D -dog-paddle -dog-star -dog-tail -dog-tired -dog-tooth -dog/DSMiGZh -dogdom -doge/MS -dogfight/GSM -dogfish/MS -dogfood/G -dogfought -dogged/P -doggedness/S -doggerel/SM -Doggett/M -doggish -doggo -doggy-paddle -doggy/MST -doghouse/MS -dogleg/SGDM -doglike -dogma/1MSW -dogmatics's -dogmatise/SGD -dogmatism/SM -dogmatist/MS -dogmatize/SGD -dognap/SDGR -dogology -dogs/f -dogsbody/SGM -dogship -dogshore/S -dogskin -dogsleep -dogstail -dogstones -dogtooth/M -dogtrot/GSDM -dogwatch/S -dogwood/SM -dogy's -doh/M -Doha/M -doily/SM -doing/MaS -dojo/S -Dolby/M -doldrums -dole's -dole/FSGD -doleful/PY -dolefulness/S -dolerite -dolichocephalic -dolichocephaly -doll/SDMGY -dollar/SM -dollarise/SGD -dollarize/SGD -Dollie/M -dollop/dSM -dolly/DGMS -dolman/S -dolmen/MS -dolomite/SWM -Dolores -dolorous/Y -dolour/MS -dolphin/MS -dolphinaria -dolphinarium/S -Dolske -dolt/SM -doltish/PY -doltishness/S -Dom -domain/MS -dome/SMGD -domes/W -Domesday -domestic/SnNY -domesticate/SGD -domesticated/U -domestication/M -domesticity/SM -domicile/GSDM -domiciliary -dominance/KSM -dominant/KY -dominants -dominate/KNDSG -domination/KM -dominations -dominative -dominator/MS -dominatrices -dominatrix -domineer/DkSG -domineering/P -Domingo/M -Dominic -Dominica/M -Dominican/SM -Dominick/M -dominion/SM -Dominique/M -domino/M -dominoes -don't -don/NSGnVD -dona/SM -Donahue -Donald/M -Donaldson -donate/DSG -donation/M -donative/M -donator/S -Doncaster -done/fUeAcF -Donegal/M -dong/MGSD -dongle/S -Donington/M -Donizetti -donkey/SM -donkeyman -donkeymen -Donna -Donnelly -Donnie/M -donnish/YP -Donny -donor/SM -Donovan/M -doodah/S -doodle/SRGD -doodlebug/MS -doodly-squat -Doohan/M -doolally -Dooley/M -Doolittle -doom-laden -doom/SDGM -doomsday/MS -doomster/S -doomwatch/r -doomy/RYPT -Doonesbury/M -dooper -door-to-door -door/DmGMS -doorbell/SM -doorhandles -doorkeep/R -doorknob/SM -doormat/SM -doornail/SM -doorplate/SM -doorpost -doors/eI -doorstep/DSGM -doorstop/SM -doorway/SM -dooryard/SM -dopa/SM -dopamine -dopaminergic -dopant/SM -dope/R2DMGS -dopey -dopier -dopiest -dopiness/S -doppelgänger -Doppler -Dora/MW -Dorado -Dorchester -Doreen/M -Dorian -Doris -dork/ZS -dorkiness -dorky/T -Dorland/M -dorm/RMS -dormancy/SM -dormant -dormice -dormitory/SM -dormouse/M -Dorn/M -doronicum/S -Dorothea/M -Dorotheus -Dorothy -dorsa -dorsal/Y -Dorset/M -dorsiflex/SGDN -dorsolateral -dorsolaterally -dorsoventral/Y -dorsum -Dortmund/M -dory/MS -dos/dSDG -dosage/MS -dose/cSMDG -dosimeter/MS -dosimetry/M -doss -doss-house -dossier/MS -dost -Dostoevsky -Dostoyevsky/M -dot-bomb/S -dot-com/SR -dot-org -dot/M2ZdDkrGS -dotage/MS -dotard/SM -dote/S -doth -Dothan/M -dotterel/S -dotty/YT -double-barrelled -double-blind -double-breasted -double-checked -double-click/d -double-cross/G -double-dealing -double-decker/S -double-edged -double-ender -double-glazed -double-headed -double-jointed -double-parked -double-sided -double/SRDGY -doubled/A -Doubleday -doubleheader/MS -doubleness -doubles's -doubles/A -doublespeak/S -doublet/SM -doubletalk -doublethink -doubleton/S -doubling/A -doubloon/MS -doublure -doubt/MAS7 -doubted/U -doubter/MS -doubtful/YP -doubtfulness/S -doubting/Y -doubtless/PY -douche/GMSD -Doug -dough/MZS -doughboy/S -Dougherty -doughnut/GMDS -doughty/T -doughy/T -Douglas-Home/M -Douglas/M -Douglass -dour/PTY -dourness/S -Douro/M -douse/SGD -douser/M -dove/SM -dovecot -dovecote/MS -doveish -dovelike -Dover -dovetail/MGDS -Dow -dowager/MS -Dowden/M -dowdiness/S -Dowding/M -dowdy/PTY -dowel/DSGM -dower/MdS -dowitcher/S -Dowling/M -down-and-out/S -down-to-earth -down/MGZRSD -downbeat/SM -downcase/SD -downcast -downcurved -downcut/SG -downdraught/M -downdrift -Downey -downfall/SM -downfield -downfold -downforce -downgrade/SGD -downhaul -downhearted/PY -downheartedness/S -downhill/S -downhiller/S -downhole -downland/S -downlight/SRG -downlink/SGD -download/BGDS -downloader/S -downmarket -downmost -downpipe/S -downplay/DGS -downpour/SM -downrange -downrate/D -downright/YP -downriver -downs/8 -downsample/SGD -downscale/DSG -downshift/SG -downside/S -downslope/S -downstage/S -downstairs -downstream -downstroke -downswing/MS -downtime/SM -downtrend -downtrodden -downturn/MSD -downvote/SGD -downward/PYS -downwash -downwelling/S -downwind -downy/T -dowry/MS -dowse/SDRG -doxology/SM -doxycycline -doyen/SM -doyenne/MS -Doyle -doze/SDG -dozen/S -dozenth -dozer/MS -dozy/TYP -DPhil -dpi -Dr -drab/YPT -drabness/S -dracaena/S -drachma/SM -drachmae -Draco/M -draconian -draconic -Dracula/M -draft's/c -draft/cSA -drafted/A -draftee/SMD -drafter/SM -drafting -draftsman -draftsmen -drag/DMZSG -draggability -draggable -dragger/M -dragging/Y -draggy/T -dragline/S -dragnet/SM -dragon/MS -dragonet/S -dragonfish/S -dragonfly/MS -dragoon/MDSG -drain/GRSMD -drainage/SM -draining-board/SM -drainpipe/MS -drake/MS -Drakensberg/M -dram/w1SMW -drama/s9Q8q-SM -Dramamine -dramatic/S -dramatics/M -dramatist/SM -dramaturg/S -dramaturge/S -dramaturgic -dramaturgical -dramaturgically -dramaturgist/S -dramaturgy/M -drank -drape/RSDGy -drapery/SM -drastic/Y -drat/SDG -draught/zm52SZ -draughtboard/S -draughtiness/S -draughtproof/G -draughtsmanship/MS -draughtsperson -draughty/TP -Dravidian -draw/SRG7J -drawback/SM -drawbar/S -drawbridge/MS -drawcard/S -drawcord/S -drawdown/S -drawee/MS -drawing-room -drawing/M -drawl/SGDk -drawler/M -drawn-out -drawn/ceAI -draws/ecA -drawstring/SM -dray/MSDG -dread/S6GDj -dreader -dreadful/P -dreadfulness/S -dreadlocks -dreadnought/SM -dream-world/S -dream/SM2GpZDRzk -dreamboat/MS -dreamed/U -dreaminess/S -dreamland/SM -dreamless/YP -dreamlike -dreamscape/S -dreamt -Dreamtime -Dreamweaver/M -dreamwork -dreamy/TP -drear/2Zz -dreariness/S -dreary/TP -dreck/Z -dreckish -dredge/GRMSD -dreg/SM -drench/GDS -drencher/M -Dresden -dress/Z2RSDGJ -dressage/MS -dressed/cAU -dresser/AM -dresses/AUc -dressiness/S -dressing/M -dressmaker/SM -dressmaking/MS -dressy/TP -Drew's -drew/Ace -Drexel -Dreyfuss -dribble/RGDS -dribbly -driblet/SM -drift/DRGkS -driftwood/SM -drill/SGDRM -drilling/M -drillmaster/MS -drink-driving -drink/7SGR -drinkable/U -drinkables -drip-dry -drip/JSMDG -drippy/T -drivable -drive-ins -drive/MRJSG -drivel/RDGS -driven -drivenness -driverless -drives/c -driveshaft/S -drivetrain/S -driveway/SM -drizzle/GDSMkY -drizzly/T -DRM -drogue/MS -droid/S -droll/YTP -droller/Z -drollery/MS -drollness/S -dromedary/SM -dromoi -dromos -drone/SGkDM -droner -drongo/S -drongoes -drool/DRSG -droop/S2GZDk -droopiness/S -droopy/TP -drop-dead -drop-down -drop-forging -drop-head -drop-in -drop-kick/S -drop-out/SM -drop-shot/MS -drop-test/GSDM -drop/DRMJGS -Dropbox -droplet/MS -dropout/S -droppable -dropping/M -drops/Zw -dropseed -dropside/S -dropsy/SM -dropwort -drosera -droshky/S -drosophila/M -drosophilist -dross/MS -Drottningholm/M -drought/SM -drove/GSDR -drown/GJDS -drowner/M -drowse/ZGSD -drowsiness/S -drowsy/PTY -drub/RDJGS -drubbing/M -drudge/kyMSDG -drudger/M -drudgery/SM -drug-free -drug-related -drug/DMGS -drugget -druggie/TS -druggish -druggy -drugless -drugster -Druid's -druid/S -Druidic -Druidical -Druidism/SM -drum/RSDGM -drumbeat/MSG -drumhead/MS -drumlin/MS -Drummond/M -drumstick/SM -drunk/TMSY -drunkard/MS -drunken/PY -drunkenness/S -drupe/MS -drupel -Drury -dry-cleaned -dry-cleaning -dry-eyed -dry/SGTDRY -dryad/MS -Dryden -dryer/SM -dryish -dryly -dryness/SM -Dryopithecus -drystone -drysuit/S -drywall/GDS -DSA -DSL -DSLR/SM -DTP -Du -dual-purpose -dual/SGD -dualise -dualism/MS -dualist -dualistic/Y -duality/MS -dualize -Duane -dub/cDGS -Dubai/M -dubber/MS -dubbin/SM -dubbing/M -dubiety/SM -dubious/PY -dubiousness/S -Dublin/M -Dubrovnik -Dubuque -ducal -Ducasse/M -ducat/SM -Duchamp/M -duchess/SM -duchy/MS -duck-billed -duck/GDZSMJ -duckbill/SM -duckboard/S -ducker/M -duckling/SM -duckpins -duckpond -duckwalk/D -duckweed/MS -ducky/TSM -duct's/F -duct/CDISGF -ductile -ductility/MS -ductless -ductwork/M -dud/SM -dude/MS -dudgeon/SM -Dudley/M -due/MoPS -duel/RMDGJS -duellist/SM -duenna/SM -duet/SDMG -duff/GRDSM -duffel/M -Duffus/M -Duffy -dug-out -dug/S -Dugan/M -Duggan/M -dugout/SM -duh -Duisburg -duke/SM -dukedom/MS -dulcet/Y -dulcify -dulcimer/SM -dull/PYGSDT -dullard/MS -Dulles -Duluth -Dulwich/M -duly/U -Dumas/M -Dumat/M -dumb/DTPGY -Dumbarton/M -dumbbell/SM -dumbfound/SGD -dumbfoundedness -dumbfounder -Dumbiedykes -dumbness/S -dumbo/S -dumbphone/S -dumbshow/S -dumbstruck -dumdum/SM -Dumfries/M -dummy/SGDM -Dumont/M -dumortierite -dump/DR2GZS -dumpiness/S -dumpling/MS -dumpsite -Dumpty -dumpy/TSP -dun/TDGS -Dunbar/M -Dunbartonshire/M -Duncan/M -dunce/SM -Dundee/M -dunderhead/SM -dune/MS -Dunedin/M -Dunfermline/M -dung-beetle -dung/DGSM -Dungannon/M -dungaree/MS -dungeon/GSMD -dunghill/SM -Dunglison/M -Dunham -dunk/GDS -Dunkeld/M -dunker/M -Dunkirk/M -Dunlap -Dunn/M -Dunne -dunno/M -dunnock/S -Dunphy/M -Dunstable -Dunstan -Dunwoody -duo/SM -duodecimal/S -duodecimo/S -duodena -duodenal -duodenary -duodenum/M -duologue/M -duology/S -duomo/S -duopolistic -duopoly/S3M -duotone/S -dupe/RSMGD -dupion/M -duple -duplet/S -duplex/SMDG -duplexer/M -duplexity -duplicability/M -duplicable -duplicate/GAnNDS -duplication/MA -duplicative -duplicator/MS -duplicitous -duplicity/SM -Dupont -durability/SM -durable/SPY -Duracell/M -durance/M -Durand/M -duration/MS -Durban/M -Durbin/M -duress/MS -Durex -Durey/M -Durga/M -Durham/M -durian/S -during -Durnford/M -Durrant/M -durrie/S -durst -durum/MS -Dusenberg -Dushanbe/M -dusk/GSDM2Z -duskiness/S -dusky/PT -dust-up -dust/2MZGSzRDp -dustbin/SM -dustcart/MS -dustcoat/S -dustheap -Dustin -dustiness/S -dusting/M -dustman/M -dustmen/M -dustpan/MS -dustproof -dusty/TP -Dutch/5m -Dutchwomen/M -duteous/Y -dutiful/U -dutifulness/S -Dutta/M -duty-bound -duty-free -duty/6jMS7 -Duursma/M -Duvall/M -duvet/SM -duxes -Duxford/M -DVD+RW -DVD-audio -DVD-RAM -DVD-ROM/S -DVD-RW -DVD/SM -Dvorak -Dvorák/M -DVR/S -DVT -dwarf/GSMD -dwarfish -dwarfism/MS -dwarfness -dwarves -Dwayne -dwell/GRJS -dwelling/M -dwells/I -dwelt/I -Dwight -dwindle/SGD -DWP/M -Dy -dyad/SMW -dybbuk/SM -dybbukim -dye/7GDRJMS -dyeing/M -dyestuff/MS -Dyfed -Dyfed-Powys -dying/U -dyke/SM -Dylan/M -dynamic/YS -dynamical -dynamics/M -dynamism/SM -dynamite/MGRDS -dynamo/MS -dynastical -dynastically -dynasty/SMW -dyne/M -dynode/S -dysarthria -dysentery/MW -dysfunction/oSM -dysfunctional -dysfunctionality -dysgraphia -dysgraphic -dyskinesia/S -dyslectic/S -dyslexia/SM -dyslexic/SY -dysmorphia -dysmorphic -Dyson/M -dyspepsia/SM -dyspeptic/S -dysphagia -dysphemism -dysphemistic -dysphoria -dysphoric -dysplasia -dysplastic -dyspnoea -dyspraxia -dysprosium/M -dysregulation -dysthymia -dysthymic -dystonia -dystonic -dystopia/MS -dystopian/S -dystopic -dystrophy/M -DZ -début/S -débutante/MS -débâcle/SM -déclassé -déclassée -décolletage/S -décolleté -décolletée -décor/SM -découpage -déjà -démodé -dénouement -dépaysé -dépaysée -dérailleur/MS -déshabillé's -détente/S -Düsseldorf -e -e'en -e'er -e-billing -e-book/S -e-business -e-card/S -e-cash -e-cigarette/S -e-commerce -e-crime/S -e-criminal/S -e-dating -e-edition -e-fit -e-learning -e-mail/MSGD -e.coli -e.g. -e.m.f. -ea -each -eager/MYP -eagerer -eagerest -eagerly/c -eagerness/cM -eagernesses -eagle-eyed -eagle/MSGD -eaglet/SM -Ealham -Ealing -Eamon/M -EAN -ear-piercing -ear-splitting -ear-stud/MS -ear/6SYMD -earache/MS -earbash/G -earbud/S -eardrum/MS -earful/SM -earhole/S -earl/2MS -earldom/SM -Earley/M -earliness/S -earlobe/S -earlock -earlship -early/PTS -Earlybird -earmark/GDJS -earmuff/SM -earn/GRSTDJ -earned/U -earnest/PY -earnestness/S -earning/M -earphone/MS -earpiece/S -earplug/SM -earring/SM -earshot/M -earth-shattering -earth/SMZY2DG -earthbound -earthed/U -earthen -earthenware/MS -earthfall/S -earthiness/S -earthlight -earthliness/U -earthling/SM -earthly/PT -earthmen -earthmover/M -earthmoving -earthnut -earthquake/MS -earthscape -earthshaking -earthshine -earthslip/S -earthstar -earthward/S -earthwork/SM -earthworm/SM -earthy/PT -earwax/M -earwig/GSDM -earworm/S -ease's/U -ease/EDMSG -easel/SM -easement/SM -easer/M -easier -easiest -easiness/SM -easing/M -east-north-east -east/GM -East/M -eastbound -Eastbourne/M -EastEnders -Easter/YS -easterly/S -Eastern -eastern/R -easternmost -Eastertide -Easthampton -easting/M -Eastland -Eastleigh -Eastman -Easton/M -eastward/S -Eastward/S -Eastwood -easy/UY -easygoing/P -eat/ScG -eatable/S -eaten/Uc -eater/cM -eaters -eatery/SM -eating/M -Eaton/M -eave/SM -eavesdrop/RDSG -EB -eBay/R -ebb/GDS -Ebbinghaus/M -EBCDIC -Eben/M -Eberhart/M -Ebola -ebony/SM -Ebrahim -ebullience/SM -ebullient/Y -EC -ECC -eccentric/MSY -eccentrical -eccentricity/SM -Eccles -ecclesial -Ecclesiastes -ecclesiastic/SMY -ecclesiastical -ecclesiasticism -ecclesiology/3w -ecdysial -ecdysis -ecdysone -ECG -echelon/dSM -echidna/S -echinacea -echinoderm/MS -Echinodermata -echinoid/S -echinus -echium -Echiura -echiuran/S -echiuroid/S -echo/WAGDRZpM -echocardiogram/S -echocardiograph/ZW -echoes/A -echogram/S -echograph -echolocation/SM -echovirus/S -Eckard/M -Eckhart/M -eclair/SM -eclectic/SY -eclecticism/MS -eclipse/SGMDW -ecliptic/MS -eclogue/SM -ECMAScript/M -eco-tax/S -eco-warrior/S -ecocentric -ecocentrism -ecocentrist/S -ecocide/SM -ecoclimate/MS -ecofeminism -ecofeminist/S -ecofreak/S -Ecole -ecolodge/S -ecology/wS3M1 -Econ. -econometric/S -econometricians -econometrics/M -economic/UY -economical/U -economics/M -economy/qQ8s39wWS-M1 -ecosphere -ecosystem/MS -ecoterrorism -ecoterrorist/S -ecotonal -ecotone/S -ecotour/S -ecotourism/M -ecotourist/S -ecotown/S -ecotoxicological -ecotoxicologist -ecotoxicology -ecru/M -Ecstasy -ecstasy/MS -ecstatic/YS -ectoderm/O -ectogenesis -ectomorph/S -ectomorphic -ectomorphy -ectoparasite/SW -ectopic -ectoplasm/M -ectotherm/SW -ectothermy -ectropion -ECTS -ecu/S -Ecuador/M -Ecuadoran -Ecuadorean/S -Ecuadorian -ecumenical/Y -ecumenicism/SM -ecumenicist/MS -ecumenism/SM -ecumenist/MS -eczema/SM -eczematous -Ed -ed. -Edam -edaphosaurus/S -Eddie -Eddington/M -eddy/DGMS -Ede/M -edelweiss/M -Eden/MW -Edentata -edentate/S -Edgar/M -Edgbaston -edge/DZMGRpSJ -Edgerton -Edgewater -edgeways -edgewise -Edgewood -edginess/S -edging/M -edgy/TPY -edibility/SM -edible/PS -edibleness/S -edict/SM -edification/M -edifice/SM -edified/U -edify/RNSnDG -edifying/U -Edinburgh/M -Edison/M -edit/A7dNS -editable/U -edited/UF -Edith/M -editing/F -edition/MS -Editor -Editor-At-Large -editor/FMS -editorial/s3Q89SY -editorialist -editorship/SM -edits/F -Edmonton/M -Edmund -Edmunds/M -Edmundsbury -Edna -EDP -eds/F -EDT -Eduard -Eduardo/M -educ/nNxV -educability/SM -educable/S -educate/DGANS -educated/cfU -educatedly -educatedness -education/FSMo -educational/3 -educationalist -educationist/S -educator/MS -educe/DNG7S -eduction/M -edutainment/SM -Edward/MS -Edwardian/MS -Edwin/M -Edwina/M -Edwy/M -EEC -EEG -eel-like -eel/MS -eelgrass/M -eely -EEOC -EEPROM -eerie/T -eerily -eeriness/SM -efface/LDSG -effaceable/I -effacer/M -effect/DuGvVSM -effective/IPY -effectiveness/SI -effector/SM -effectual/PIY -effectuate/DGSN -effectuation/M -effeminacy/MS -effeminate/SY -effendi/SM -efferent/YS -effervesce/SGD -effervescence/SM -effervescent/Y -effete/PY -effeteness/S -efficacious/YIP -efficacy/ISM -efficiency/MIS -efficient/IF -efficiently/I -Effie/M -effigy/SM -effloresce -efflorescence/SM -efflorescent -effluence/MS -effluent/SM -effluvia -effluvium/M -efflux/MN -effort/SMp -effortless/YP -effortlessness/S -effrontery/MS -effulgence/MS -effulgent -effuse/NDvuVSGX -effusion/M -effusive/P -effusiveness/S -EFI -EFT -EGA/M -egad -egalitarian/S -egalitarianism/SM -Egan/M -Egbert -Egerton -egg/MDGS -eggbeater/SM -eggcorn/S -eggcup/SM -egger/M -eggfruit -egghead/MiDS -eggnog/MS -eggplant/SM -eggshell/MS -egis's -eglantine/MS -ego/SM -egocentric/YS -egocentricity/MS -egocentrism -egoism/MS -egoist/SMWw1 -egomania/SM -egomaniac/SM -egomaniacal -egosurf/SDGR -egotism/MS -egotist/WS1Mw -egregious/YP -egregiousness/S -egress/DMSG -egret/SM -Egypt/M -Egyptian/SM -Egyptological -Egyptologist/S -Egyptology -eh -Ehrig/M -Ehrlich/M -Ehrman/M -Ehsan/M -EiB -EiC -Eichmann -Eid -eider/SM -eiderdown/SM -eidetic -eidola -eidolon/S -eidos -Eiffel -eigenfrequency/S -eigenfunction/MS -eigenstate/S -eigenvalue/MS -eigenvector/MS -eight/HMZS -eighteen/HMS -eightpence -eighty-eight/H -eighty-first/S -eighty-five/H -eighty-four/H -eighty-nine/H -eighty-one -eighty-onefold -eighty-second/S -eighty-seven/H -eighty-six/H -eighty-three/H -eighty-two -eighty-twofold -eighty/HMS -Eileen/M -Eindhoven/M -Einstein/M -Einsteinian -einsteinium/M -Eire/M -Eisen/M -Eisenhower -Eisner/M -eisteddfod/WMS -eisteddfodau -either -ejaculate/nDGSNy -ejaculation/M -eject/VGSD -ejecta -ejection/MS -ejector/MS -eke/GSD -EKG -Ekker/M -Ektachrome -El -elaborate/PDSGnYVN -elaborateness/S -elaboration/M -elaborators -Elaine/M -eland/MS -Elanor/M -elans -elapid/S -elapse/SGD -elastase -elastic/SQ8Y -elasticated -elasticity/SM -elastin -elastodynamics -elastomer/MS -elastomeric -elate/iSDGnhN -elated/P -elater/M -elation/M -Elba -Elbe -Elbert -elbow-work -elbow/GSDM -elbowroom/MS -elder/SY -elderberry/SM -elderflower -elderly/SP -eldest -Eldon/M -eldritch -Eleanor/M -Eleatic/S -elect/DAGS7 -electability -electable/U -elected/U -election/SM -electioneer/GSD -elective/SPY -elector/SM -electoral/Y -electorate/SM -Electra -electress/M -electric/SY -electrical/SP -electrician/SM -electricity/MS -electrification/M -electrify/nRDGSN -electro-oculogram -electro-oculographic -electro-oculography -electro-optic/S -electro-optical -electro/M -electroactive -electrocardiogram/SM -electrocardiograph/MSZ -electrocardiography/SM -electrocautery -electrochemical/Y -electrochemist/S -electrochemistry -electroclash -electrocoagulation -electroconvulsive -electrocute/SDG -electrocution/SM -electrode/MS -electrodermal -electrodesiccation -electrodynamic/SY -electrodynamics/M -electroencephalogram/SM -electroencephalograph/ZWMS -electroencephalography/MS -electrogenerated -electrogenesis -electrologist/SM -electroluminescence -electroluminescent -electrolyse/GWSD -electrolysis/M -electrolyte/MS1 -electrolytical -electromagnet/W1MS -electromagnetism/SM -electromechanical -electromechanics -electromedical -electrometer/W -electrometry -electromotive -electromyogram/S -electromyograph -electromyographic/Y -electromyography -electron/SW1M -electronegative -electronegativity/S -electronic/S -electronica -electronics/M -electronvolt/S -electrophile/S -electrophilic -electrophonic -electrophonically -electrophorese/SGD -electrophoresis/M -electrophoretic/Y -electrophorus/M -electrophysiological/Y -electrophysiology/3 -electroplaque -electroplate/SGD -electroplax -electropolar -electropolish/DG -electropop -electroporate/SGD -electroporation -electropositive -electroreception -electroreceptor -electroscope/SMW -electroshock/MGDS -electrostatic/S -electrostatics/M -electrosurgery -electrosurgical -electrotechnic/S -electrotechnical -electrotechnology -electrotherapeutic -electrotherapeutical -electrotherapist/SM -electrotherapy -electrothermal -electrotype/SDGM -electrotyper/S -electroweak -electrum -electuary/S -eleemosynary -elegance/ISM -elegant/IY -elegiac/S -elegiacal -elegy/MS -element/SMo -elemental/S -elementalism -elementary/YP -Elena/M -elenchi -elenchus -elephant/SM -elephantiases -elephantiasis/M -elephantine -elevate/DSnGN -elevation/M -elevational -elevator/SM -elevatory -eleven/HMS -elevens/S -elf/M -elfin/S -elfish -ElGamal -Elgamal -Elgar/M -Elgin -Eli -Elias/M -elicit/dSn -elicitation/M -elicitor/S -elide/NSDGX -eligibility/IMS -eligible/SYI -eligibly/I -Elijah -eliminate/SVnNDG -elimination/M -eliminator/MS -Eliot/M -Eliphas/M -Elisa/M -Elisabeth/M -Elise/M -Elisha/M -elision/M -elite/S3M -eliteness -elitism/MS -elixir/MS -Eliza/M -Elizabeth/M -Elizabethan/S -elk/MS -Elkanah/M -Elkhart -elkhound/S -Elkins/M -ell/SM -Ella -ellagic -Elle -Ellen/M -Ellesmere -Ellie -Ellington -Elliot -Elliott -ellipse/SMW -ellipsis/M -ellipsoid/SM -ellipsoidal -ellipsometer/MS -ellipsometry -elliptic/Y -elliptical/S -ellipticity/M -Ellis -Ellison/M -Ellsworth -Ellwood/M -elm/SM -Elmer -Elmhurst -Elmira -Elmo/M -Elmsford -Elmwood/M -elocution/3SMy -elocutionist -elodea/S -Elohim -Eloise/M -elongate/GnSND -elongation/M -elope/LSDG -eloper/M -eloquence/SM -eloquent/IY -Eloy/M -Elphin/M -Elroy -Elsa/M -else/M -elsewhere -Elsey/M -Elsie -Elstree/M -Elton/M -eluate/SM -elucidate/VNDSGn -elucidation/M -elude/DuVGvS -elusive/P -elusiveness/S -elute/DG -elution/M -elven -elver/MS -elves/M -Elvington -Elvira/M -Elvis/M -elvish -Elwood/M -Ely/M -elysian -Elysium -Elysée/M -em/M -emaciate/SGnND -emaciation/M -Emacs/M -email/MDGS -emanate/DnVGSN -emanation/M -emancipate/DSNnGy -emancipation/M -emancipator/SM -Emanuel -emasculate/DSGNn -emasculation/M -embalm/RGDS -embank/GLSD -embarcadero -embargo/MGD -embargoes -embark/EGSAD -embarkation/MSE -embarrass/kLDhSG -embarrassed/U -embassy/MS -embattle/SGD -embayment/S -embed/SDGJ -embeddable -embeddedness -embedder -embedding/M -embellish/DSGL -embellished/U -embellisher/M -ember/SM -embezzle/DLRSG -embitter/LdS -emblazon/LSd -emblem/WSM -emblematical -emblematically -emblematise/SGD -emblematist -emblematize/SGD -emblements -embodier/M -embodiment/MS -embody/AEGDS -embolden/dS -emboli -embolisation -embolism/SM -embolization -embolus -embosom -emboss/GDRS -embouchure/MS -embower/Sd -embrace/SGDk -embraceable -embracer/M -embracive -embrasure/MS -embrittle -embrocation/MS -embroider/rZdS -embroidery/SM -embroil/DLSG -embryo/SM -embryogenesis -embryogenic -embryogeny -embryologically -embryology/WS3wM -embryonic -emcee/MGS -emend/7nGDS -emendation/M -emender -emerald-cut -emerald/MS -emerge/ASGD -emergence/SMZ -emergency/SM -emergent/S -emerita -emeritae -emeriti -emeritus -Emerson/M -emery/MS -emetic/S -emf/S -EMI/M -emigrant/SM -emigrate/nSNDG -emigration/M -Emil/M -Emile/MZ -Emilia/M -Emilio/M -Emily/M -Eminem/M -eminence/SM -eminent/Y -emir/SM -emirate/MS -Emirates/M -emissary/SM -emission/M -emissivity/SM -emit/RXSNDG -emittance/M -Emma -Emmanuel -Emme/M -emmenagogue/S -Emmental -Emmenthal -emmet -Emmett/M -Emmy -Emmys -emo/S -emoji/S -emolliate/SGD -emollience -emollient/S -emollition -emolument/SM -Emory -emote/SvDxVG -emoticon/S -emotion/pMS -emotional/Q8 -emotionalism/SM -emotionalist/S -emotionality/M -emotionally/Uc -empanelled -empanelling -empath -empathetic/Y -empathetical -empathic -empathy/QM8WS -emperor/MS -emphases/c -emphasis's/Cc -emphasis/cdACQS -emphasise/CR -emphasize/CRGDS -emphasized/c -emphasizes/A -emphasizing/A -emphatic/Y -emphysema/SM -emphysematous -empire/wS1MW -empiric/M3 -empiricism/MS -empiricist -emplace/LD -emplane/GDS -employ/DGLSRB -employability/M -employable/US -employed/fUA -employee/SM -employing/A -employment/fMU -employments/f -employs/A -emporia -emporium/MS -empower/LSd -empress/SM -empt/zVZGSDv2 -emptier/M -emptiness/S -emption/SM -emptor/M -empty-handed -empty-headed -empty/SGDTP -empyreal -empyrean/SM -ems -emu/MS -emulate/nDVGSvN -emulation/M -emulator/SM -emulsification/M -emulsify/nRSNGD -emulsion/SM -en/7M -enable/RDGS -enact/GLSD -enactable -enacted/A -enacting/A -enaction -enactive -enactment/A -enactor/S -enacts/A -enamel/GMRDJS -enamelware/MS -enamour/DGS -enantiomer/S -enantiomeric -enantiomerically -enantiomorph/S -enantiomorphic -enantiomorphism -enantiomorphous -enc -Encaenia -encage/SGD -encamp/DLSG -encapsidate/SGDN -encapsulate/SNDnG -encapsulation/M -encase/GDLS -encash/LDB -encaustic -Enceladus -encephalic -encephalin/S -encephalitic -encephalitides -encephalitis/M -encephalogram/S -encephalograph -encephalographic -encephalography -encephalon -encephalopathy/MS -enchain/LDGS -enchant/EGLSD -enchantedly -enchanter/MS -enchanting/Y -enchantress/MS -enchilada/MS -encipher/Sd -encipherer/M -encipherment -encircle/DGSL -encl -enclave/MS -enclose/DSG -enclosed/U -enclosure/MS -encode/JDRSBG -encomium/SM -encompass/DGS -encore/DSG -encounter/Sd -encourage/LDSkG -encourager/M -encroach/LGDS -encroacher/SM -encrust/nDGNS -encrustation/M -encrypt/GSD -encrypted/U -encryption/MS -encumber/ESd -encumbered/U -encumbrance/SM -encyclical/SM -encyclopaedia/SM -encyclopaedic -encyclopedia/S -encyclopedic -encyclopedism -encyclopedist -encyst/GLDS -end-user/S -end/SRpMDJG -endanger/LSd -endarterectomy/S -endear/LkDGS -endeavour/RGMDS -endemic/SY -endemicity -endemism -Enderlein/M -endgame/MS -endian -Endicott -ending's -ending/U -endive/SM -endless/PY -endlessness/S -endmost -endnote/SM -endoblast/W -endocardial -endocarditic -endocarditis -endocentric -endocrine/S -endocrinology/3SM -endocytosis -endocytotic -endoderm/O -endodontics -endogamous -endogamy/M -endogenous/Y -endoglossic -endolymph -endometrial -endometriosis -endometrium -endomorph -endomorphic -endomorphism/SM -endomorphy -endoplasmic -endorphin/S -endorse/LRDSG -endorsee -endoscope/MSWZ -endoscopically -endoscopist/S -endoscopy/SM -endoskeletal -endoskeleton/S -endosome -endosperm/M -endospore/S -endostylar -endostyle -endosymbiont/S -endosymbiosis -endosymbiotic -endosymbiotically -endothelial -endothelium -endotherm/S -endothermal -endothermic -endothermy -endotoxin/S -endow/GLSD -endpaper/S -endpoint/MS -endue/GSD -endungeoned -endurable/U -endurably/U -endurance/SM -endure/SGklD -enduring/P -enduro/S -endways -Endymion/M -enema/MS -enemy/MS -energetic/YS -energetics/M -energised/U -energized/U -energy/qSQMs8-9 -enervate/GDnVSN -enervation/M -enfeeble/LSDG -Enfield -enfilade/SMGD -enfold/DGS -enforce/RbBLDGhS -enforceability/M -enforceable/U -enforced/AU -enforcer/AS -enforces/A -enforcible/U -enforcing/A -enfranchise/EDLSG -enfranchiser/SM -enfranchize/LDGRS -eng. -engage/AGESD -engagement/SM -engaging/Y -Engberg/M -Engel/S -Engelmann/M -engender/dS -Engin/M -engine/SMD -engineer/SDGM -engineering/M -enginery -englacial -England/M -Englander/S -Englewood -English-speaker -English-speaking -English/m5M -engorge/LDSG -engrailed -engrained -engram/M -engrammatic -engrave/GRDJS -engraving/M -engross/LDSGhk -engrosser/M -engulf/LGDS -enhance/GRLDS -enhanceable -enharmonic/Y -Enid/M -enigma/SWM1 -Enigmail/M -enigmatical -enjambment/MS -enjoin/SDG -enjoinder -enjoy/GLBSDl -enjoyable/P -enjoyer/S -enkephalin/S -enlace/D -enlarge/RLDSG -enlargeable -enlighten/dSL -enlightened/U -enlightening/U -enlist/AGDS -enlistee/SM -enlister/M -enlistment's -enlistment/A -enlistments -enliven/LSd -enmesh/LDSG -enmity/SM -Ennis -ennoble/LDSG -ennobler/M -ennui/MS -Enoch -enormity/SM -enormous/PY -enormousness/S -enough -enprint/S -enqueue/SD -enqueueing -enqueuing -enquire/GZSDRk -enquiry/S -enrage/DSG -enrapture/GDS -enrich/GSDL -enricher/M -Enrico -enrobed -enrol/LDRSG -enrollee/MS -Enron -ensconce/DSG -ensemble/MS -enshrine/GDLS -enshroud/SDG -ensiform -ensign/SM -ensilage/SMGD -enslave/RGLSD -ensnare/SDLG -ensue/SDG -ensure/DRGS -entablature/S -entablement -entail/DRLSG -entangle/EDLSG -entangler/EM -entanglers -entelechy/S -entente/MS -enter/AdS -enterer/MS -enteric -enteritides -enteritis/MS -enterococci -enterococcus -enterokinase -enteroviral -enterovirus/S -enterprise/RSGMk -enterprising/U -entertain/GRLSkD -enthalpy/MS -enthral/GDLS -enthrone/DLGS -enthuse/SDG -enthusiasm/SM -enthusiast/SWM1 -enthusiastic/UY -entice/SRLkJGD -entire/Y -entirety/SM -entitle/SDLG -entity/SM -entoconid/S -entomb/DLGS -entomology/S3Mw -entomophilous -entomophily -entourage/MS -entr'acte/S -entrails -entrain/DGLS -entrainer/M -entrammel/DSG -entrance/LMSGDk -entranceway/M -entrant's -entrant/A -entrants -entrap/LGSD -entreat/kSGZD -entreaty/MS -entrechat/S -entrecôte/SM -entremets -entrench/LDSG -entrepreneur/MS -entrepreneurial/Y -entrepreneurialism -entrepreneurship/M -entrepôt/S -entresol -entropically -entropion -entropy/WSM -entrust/LDGS -entry's -entry/AS -entryphone/S -entryway/SM -entrée/S -entwine/SDG -enucleate/DN -enum/S -enumerable -enumerate/VnGDNS -enumerated/A -enumerates/A -enumerating/A -enumeration/M -enumerator/SM -enunciable -enunciate/GSnDN -enunciation/M -enureses -enuresis/M -envelop/LrdS -envelope/SM -envenom/dS -enviable/P -envied/U -envious/PY -enviousness/S -environ/LdS -environment/o -environmental/3 -environmentalism/MS -environmentalist -envisage/SGD -envision/GSD -envoy/MS -envy/MRS7lDkG -Enzler -enzootic -enzymatic/Y -enzyme/WSM -enzymology/M -Eocene -eohippus/M -eolith/W -eosinophil/S -eosinophilic -EP -EPA -epaulette/MS -epaxial -ephedrine/SM -ephemera/SMo -ephemeral/S -ephemerides -ephemeris/M -Ephesian/S -Ephesus -Ephraim -epic/MSY -epicene -epicentral -epicentre/MS -epicondylar -epicondyle -Epictetus/M -epicure/MS -epicurean/S -Epicurus -epicycle/Ww1MS -epicycloid/MOS -Epidaurus -epidemic/MYS -epidemiologic -epidemiology/WSM31w -epidermal -epidermic -epidermis/SM -epidermoid -epidote -epidural -epifauna/O -epifluorescence -epigastria -epigastrium -epigenetic -epiglottis/SM -epigram/MS -epigrammatic -epigrammatically -epigraph/wSMZ -epigrapher/M -epigraphy/31WSM -epilate/SGD -epilation -epilator/S -epilepsy/SM -epileptic/S -epilogue/MGDS -epinephrine/SM -epinician -epiotic -Epipalaeolithic -epiphanic -epiphany/MS -epiphenomena -epiphenomenal -epiphenomenon -epiphyseal -epiphyses -epiphysis -epiphytal -epiphyte/S -epiphytic -episcopacy/SM -episcopal/Y -episcopalian -Episcopalian/S -episcopalianism -episcopate/SM -episode/W1SM -epistaxis -epistemic -epistemologist/S -epistemology/1wM -epistle/SM -epistolary/S -epitaph/MS -epitaxial -epitaxy/Mo -epithelia -epithelial -epithelium/SM -epithet/SWM -epitome/s-9qQ8MS -epitomic -epitomist -epitope/S -epizoic -epizoite/S -epizootic -EPLP/M -epoch/oM -epochal -epochs -eponymous/Y -epoxide/S -epoxy/DSG -Epping -EPROM/S -epsilon/MS -Epsom -Epstein -epyllia -epyllion -EQ -equability/MS -equable/YP -equal/s9Q-DGYqS8 -equalise/J -equalised/U -equalising/U -equalitarian -equalitarianism -equality/IMS -equalized/U -equally/UF -equals/F -equanimity/MS -equanimous -equatable -equate/DGBSnN -equation/M -equator/SM -equatorial/S -equerry/SM -equestrian/S -equestrianism/SM -equestrienne/MS -equiangular -equidistant/Y -equilateral/S -equilibrate/DNSG -equilibration/M -equilibria -equilibrium/ESM -equine/S -equinoctial/S -equinox/MS -equip/LDSG -equipage/SM -equipartition/M -equipoise/MSDG -equipotential -equipped/UA -equiproportional/Y -equiproportionality -equiproportionate -equips/A -equispaced -equitable/PY -equitably/I -equitation/MS -equity/MSI -equiv -equivalence/GDSM -equivalency -equivalent/YS -equivocal/UY -equivocalness/MS -equivocate/GDNSn -equivocation/M -equivocator/SM -Equuleus -er/ae -era/MS -eradicable/I -eradicate/VNSDGn -eradication/M -eradicator/SM -eras/7gSrd -erase -Erasmus -erasure/SM -Eratosthenes/M -erbium/M -ere -erect/DA -erecter -erectile -erecting -erection/SM -erectly -erectness/SM -erector/MS -erects -erectus -eremite/SM -eremurus -erg/SM -ergo -ergodic -ergodicity/M -ergonomic/U -ergonomically -ergonomics/M -ergophobia -ergosterol/MS -ergot/MS -Erhard -Eric/M -Erica -Erich -Erickson -Ericsson/M -Erie -Erik/M -Erika/M -Eriksson/M -Erin -Eritrea/M -erk -Erlang/M -Erlangen/M -Erlenmeyer/M -ERM -ermine/SDM -Ernest -Ernestine -Ernesto/M -Ernie -Ernst -erode/VDuNGxXSb -erogenous -Eros -erosible -erosion/M -erosive/P -erotic/YS -erotica/M -eroticisation -eroticise/SGD -eroticism/SM -eroticization -eroticize/SGD -erotogenic -erotogenous -erotomania -erotomaniac/S -err/DkSG -errancy/SM -errand/SM -errant/YS -errantry/M -errata/SWM1 -erratic/S -erraticism -erratum/MS -erring/UY -Errol -erroneous/PY -error/MSp -ersatz/S -Erse -Erskine/M -erst -erstwhile -eructation/MS -erudite/Y -erudition/SM -erupt/DVGSv -eruption/MS -Ervin -Erving/M -Erwin -erysipelas/SM -erythema/O -erythematosus -erythematous -erythrocyte/SM -erythromycin -Es -ESA/M -eSATA -eSATAp -Esau -ESC -escabeche -escadrille/M -escalade -escalate/CDGNnS -escalation/CM -escalator/MS -escallop/SM -escalope/MS -escapable/I -escapade/MS -escape/3SDLG -escapee/SM -escaper/M -escapism/MS -escapologist/S -escapology -escargot/S -escarpment/SM -eschatological -eschatologist/S -eschatology/M -eschew/GDS -escort/SGMD -escorted/U -escritoire/MS -escrow/SDMG -escudo/MS -escutcheon/DSM -Eskimo/S -Eslick/M -Esmeralda/M -Esmond/M -esoteric/Y -esoterica -esp/Z -espadrille/MS -Espagnol -espalier/SDGM -esparto/S -especial/Y -Esperantist/S -Esperanto -espial -espionage/SM -esplanade/MS -Espoo -Esposito/M -espousal/MS -espouse/GDRS -espresso/SM -esprit/MS -espy/DGS -esquire/SM -ESR -essay/DRMG3S -essayistic -Essen/M -essence/MS -essential/P3SY -essentialism -essentialist -Essex/M -est/R -establish/ELDGSA -established/A -establisher/M -establishes/A -establishing/A -establishment/A -establishmentarian/S -establishmentarianism -estate/SM -esteem/EDGS -Estella/M -Estelle -Esterházy/M -Estes -Esther -estimable/P -estimableness/I -estimate/cGfASND -estimation/MSc -estimations/f -estimative -estimator/SM -Estonia/M -Estonian -estoppal -estoppel -estovers -estrange/DGLS -estranger/M -Estremadura -estuarial -estuarine -estuary/SM -et -ET/S -ETA -etalon -etc. -etcetera/MS -etch/RGSDJ -etchant -etching/M -eternal/PY -eternalise/SGD -eternality -eternalize/SGD -eternalness/S -eternity/SM -Ethan -ethane/M -ethanoic -ethanol/M -Ethel -Ethelred/M -ether/MQ8S -ethereal/PY -etheric -Etherington/M -Ethernet/MS -Etherpad/M -ethic/3MSY -ethical/UY -ethicality -ethicalness/M -ethicist -ethidium -Ethiopia/M -Ethiopian/S -ethnic/SY -ethnicity/SM -ethnobotanic -ethnobotanical -ethnobotanist/S -ethnobotany -ethnocentric -ethnocentrism/SM -ethnocide -ethnogenesis -ethnographer/S -ethnography/MW -ethnohistorian/S -ethnohistoric -ethnohistorical -ethnohistory -ethnolinguist/S -ethnolinguistics -ethnologically -ethnology/W3SwM -ethnomethodological -ethnomethodologist/S -ethnomethodology -ethnomusicologic -ethnomusicological -ethnomusicologist/S -ethnomusicology -ethnopharmacology -ethnoscience -ethogram/S -ethology/3wMS -ethos/SM -ethoxylate/D -ethyl/MS -ethylbenzene -ethylene/M -ethylenediamine -etiquette/SM -Etna -Eton/M -Etruscan -ETSI -etymology/31SMw -Eu -EU/M -eubacteria -eubacterial -eubacterium -Euboea -eucalypti -eucalyptus/SM -eucatastrophe -Eucharist/MWS -Eucharistical -euchologion -euchology -euchre/MSGD -euchromatic -euchromatin -Euclid/M -euclidean -Eudora/M -Eudoxus/M -Eugene -Eugenia -eugenic/Y3S -eugenicist -eugenics/M -euhedral -eukaryote/S -eukaryotic -Euler/M -eulogised/U -eulogist/W -eulogized/U -eulogy/Q9s38SM -Eunice -eunuch/M -eunuchs -euphemism/SM -euphemist/SW1M -euphonious/Y -euphonium/MS -euphony/SM -euphorbia/S -euphoria/MS -euphoric/Y -euphrasia -Euphrates -EUR -Euramerica -Eurasia -Eurasian -eureka/S -eurhythmics -EURIBOR -Euripides -Euro -Euro-MP/S -Euro-wasp -euro/S -Eurobank -Eurobond/S -Eurocard -Eurocentric -Eurocentrist -Eurocheque -Euroclear -Euroclydon -Eurocommunism -Eurocommunist -Euroconnector -Euroconvertible -Eurocracy -Eurocrat/S -Eurocratic -eurocredit -eurocreep -Eurocurrency/S -Eurodisco -Eurodollar/S -Euroequity -Eurofanatic -Eurogroup -Euroland/M -Euromarket -Euromart -EuroMillions -Euromissile -Euronet -Euronote -Europa -Europarliamentarian -Europarliamentary -Europasian -Europass -Europe-wide -Europe/M -European/Q8Mq-S -Europeanism -Europeanist -Europhile -Europhobe -europium/M -Europoort -Europop -Eurosceptic -Eurosceptical -Euroscepticism -Eurostar -euroterminal -Eurotrash -Eurovision -eurozone/M -euryapsid/S -Eurydice/M -Eurythmics -eusocial -eusociality -Eustachian -eustacy -eustatic -Euston/M -eutectic -eutectoid -euthanasia/SM -Eutheria -eutherian/S -eutrophic -eV -Eva -evacuant -evacuate/VNnDSG -evacuation/M -evacuee/SM -evadable -evade/SvRDNVGuX -evaginate -evagination/S -evaluable -evaluate/xNVDGSn -evaluated/AU -evaluates/A -evaluating/A -evaluation's -evaluation/A -evaluator/SM -Evan/M -evanescence/SM -evanescent -evangelic/Y -evangelical/S -evangelicalism/MS -Evangelina/M -Evangeline -evangelise/DGS -evangelism/SM -evangelist/WSM -evangelize/DGS -Evans -Evans-Pritchard/M -Evanston -Evansville -evaporable -evaporate/vGnDSVN -evaporation/M -evaporator/SM -evaporite/S -evasion/M -evasive/P -evasiveness/S -eve/yMS -Evelyn -even-handed/Y -even-handedness -even/YdSPJ -evener -evenest -evening/M -evenly/U -evenness/S -evensong/MS -event/6SjGM -eventer/S -eventful/P -eventfully/U -eventfulness/S -eventide/MS -eventual/Y -eventuality/SM -eventuate/DSG -ever -ever-changing -ever-increasing -Eveready -Everest -Everett/M -Everglades -evergreen/S -Everhart/M -everlasting/PY -everliving -Everly/M -Everman/M -evermore -eversible -eversion -evert/SGD -Everton -everybody/M -everyday/P -Everyman -everyone/M -everything/M -everywhere -Evesham/M -Evette/M -evict/SGD -eviction/SM -evidence/DMGS -evident/Y -evidential/Y -evidentiality -evil/YSPT -evildoer/MS -evildoing/MS -evilness/S -evince/SDG -eviscerate/GDSNn -evisceration/M -evocable -evocation/M -evocative/P -evoke/VGuvSnDN -evolute/SM -evolution/3MyS -evolutional/Y -evolutionary/Y -evolutionism -evolutionist -evolutive -evolvable -evolve/SGD -evolvedly -evolvement -evolvent -evolver -Ewa/M -Ewan/M -ewe/RSM -Ewing -eww -ex -ex-communist/MS -ex-con/S -ex-partners -ex-president -ex-students -ex-wife -ex-wives -exabit -exabyte/S -exacerbate/nNDSG -exacerbation/M -exact/PSGYTDk -exactable -exacter/M -exacting/P -exaction/SM -exactitude/ISM -exactly/I -exactness/IS -exactor/S -exaggerate/SnvhiGNVD -exaggeration/M -exaggerator/SM -exalt/RnhSNDG -exaltation/M -exam/SM -examinable/A -examination/SM -examine/ASGDN -examined/U -examinee/SM -examiner/SM -example/MDGS -exampled/U -exanthema -exanthemata -exanthematic -exanthematous -exasperate/DhGnSkN -exasperation/M -exbibit/S -exbibyte/S -Excalibur -excavate/DNSGn -excavation/M -excavator/MS -exceed/SDGk -exceeder/M -excel/DGS -Excel/M -excellence/MZS -excellency/MS -excellent/Y -excelsior/S -except/xDGS -exception/7MS -exceptionable/U -exceptional/UY -exceptionalism -exceptionalness/M -excerpt/MSDG -excerpter/M -excess/DSuVvMG -excessive/P -exchange/RGDS -exchangeable -exchequer/MS -excise/GDSMNBX -excision/M -excitability/SM -excitable/P -excitation/M -excitatory -excite/lknGNLRDSBh -excited/Uc -excites/c -exciting/Uc -exciton/M -exclaim/yRSDG -exclamation/MS -exclude/NDSGuXVv -excluder/M -exclusion/My -exclusive/SP -exclusiveness/S -exclusivism -exclusivist/S -exclusivity/SM -excogitate/SGDN -excommunicate/SNnVDG -excommunication/M -excommunicator/S -excommunicatory -excoriate/SGDNn -excoriation/M -excrement/SM -excremental -excrescence/MS -excrescent -excreta -excrete/VynDGSN -excreter/M -excretion/M -excretory/S -excruciate/DSNkG -excruciation/M -exculpate/SDNnyG -exculpation/M -excursion/3MS -excursionist -excursive/PY -excursiveness/S -excursus/MS -excusable/IP -excusably/I -excuse/RlGDS -exec/MS -execrable/PY -execrate/SGVnND -execration/M -executable/SM -execute/SVRxGD -execution/SMR -executive/MS -executor/MS -executrices -executrix/M -exegeses -exegesis/M -exegete/MwW -exegetic/S -exemplar/SM -exemplarity -exemplary/PY -exemplification/M -exemplify/SGRnND -exempt/DGS -exemption/MS -exercise/RSBGD -exercised/c -exercises/c -exercising/c -exert/cGDS -exertion/SMc -Exeter/M -exeunt -exfoliant/S -exfoliate/SGDN -exfoliative -exfoliator/S -exhalant -exhalation/M -exhale/GNDSn -exhaust/bkSVvDhuG -exhauster/M -exhaustible/I -exhaustion/SM -exhaustive/P -exhaustiveness/S -exhibit/XVdSN -exhibition/MR3 -exhibitionism/MS -exhibitionist -exhibitor/SM -exhilarate/DSVNGkn -exhilaration/M -exhort/NnSDG -exhortation/M -exhorter/M -exhumation/M -exhume/GDSn -exhumer/M -EXIF -exigence/ZS -exigency/SM -exigent/SY -exiguity/MS -exiguous -exile/GSDM -exist/FGSD -existence/SFM -existent/F -existential/Y3 -existentialism/MS -existentialist/W -exit/dSM -Exmoor/M -Exner/M -exoatmospheric -exobiological -exobiologist/S -exobiology/MS -exocentric -exocrine -exocytosis -exocytotic -exodus/SM -exogamous -exogamy/M -exogenous/Y -exoglossic -exon/S -exonerate/nSNVDG -exoneration/M -exonic -exophthalmia -exophthalmos -exophthalmus -exoplanet/S -exopolitics -exorbitance/MS -exorbitant/Y -exorcise/GDS -exorcism/MS -exorcist/MS -exorcize/SDG -exoskeletal -exoskeleton/MS -exosphere/SMW -exostoses -exostosis -exothermic/Y -exothermicity -exotic/PSY -exotica -exoticism/SM -exotoxin/S -exotropia -exp -expand/BDRXVNvGSu -expandability/M -expanded/U -expanse/SDMGb -expansion/y3M -expansionism/MS -expansionist -expansiveness/S -expatiate/GNDSn -expatiation/M -expatriate/DnSNG -expatriation/M -expect/nShGDi7kN -expectancy/MS -expectant/SY -expectation/Mo -expectational -expected/UY -expectedness/U -expectorant/S -expectorate/SGNDn -expectoration/M -expedience/SIZ -expediency/IMS -expedient/YS -expediently/I -expedite/RSDG -expedition/SyM -expeditious/PY -expeditiousness/S -expeditor's -expel/DSn7GN -expellee/S -expeller/S -expend/Du7VSGv -expendable/S -expended/U -expender/M -expenditure/MS -expense/MGSD -expensive/IPY -expensiveness/IS -experience/IMDRB -experiences -experiencing -experiential/Y -experiment/NRSGMonD -experimental/3 -experimentalism/M -experimentalist -experimentation/M -expert's -expert/IPY -experted -experting -expertise/SM -expertness/S -experts -expiable/I -expiate/GyNnSD -expiation/M -expiration/M -expire/ynDSZGN -expired/U -expiry/MS -explain/AGDS -explainable/U -explained/U -explainer/SM -explanation/SM -explanatory -explant/SD -explantation -expletive/SM -explicable/I -explicate/VSnNvGD -explication/M -explicator -explicatory -explicit/PY -explicitly/I -explicitness/S -explode/SDRGuXVvN -exploded/U -exploit/RVM7GnDS -exploitation's -exploitation/c -exploitative -exploited/Uf -explorable -exploration/M -explore/SnDRNyG -explored/U -explosion/M -explosive/SP -explosiveness/S -expo/MS -exponent/SM -exponential/YS -exponentiate/GnDSN -exponentiation/M -export/DRGBnMSN -exportation/M -exported/A -exporting/A -exports/A -expos/rdS -expose/fDScG -exposed/U -exposit/yXN -exposited -exposition/M -expositor/SM -expostulate/nDGNS -expostulation/M -exposure/cSMf -exposé/SM -expound/SRDG -express/SNvbuDGYXV -expressed/U -expresser/M -expressibility/I -expressible/IY -expressibly/I -expression/Mp -expressionism/SM -expressionist/WS -expressionless/Y -expressionlessness -expressive/IPY -expressiveness/SI -expressivism -expressivist/S -expropriate/SGDNn -expropriation/M -expropriator/MS -expulsion/M -expunge/SGD -expunger/M -expurgate/SDNGn -expurgated/U -expurgation/M -exquisite/YP -exquisiteness/S -exsanguine -exsolution -exsolve/SGD -ext -extant -extemporaneous/YP -extemporaneousness/S -extempore/Qs89q-S -extend/iDRVvhGNSxubX -extendability -extendable -extended-play -extended/c -extendedness/M -extendibility/M -extendible/S -extending/c -extends/c -extensibility/M -extensible/I -extension/M -extensive/FY -extensiveness/SM -extensometer/S -extensor/SM -extent/SM -extenuate/nGSDN -extenuation/M -exterior/MYS -exteriorise/Dn -exteriorize/DN -exterminate/DnSNG -extermination/M -exterminator/SM -external/qQ-8Ys9S -externality/S -exteroceptor/S -extinct/V -extinction/SM -extinguish/GR7SD -extinguishable/I -extirpate/GSnDNV -extirpation/M -extol/SDG -extoller/M -extort/GDVS -extorter/M -extortion/MSR3 -extortionate/Y -extortionist -extra-curricular -extra/S -extracellular/Y -extracorporeal -extract/G7VDSv -extraction/SM -extractor/SM -extracurricular/S -extraditable -extradite/GDS -extradition/SM -extrados -extrafloral -extragalactic -extrajudicial/Y -extralegal/Y -extralinguistic -extramarital -extrametrical -extramural -extramusical -extraneous/PY -extranet/S -extraordinaire -extraordinary/PYS -extrapolate/SDnGNV -extrapolation/M -extrapulmonary -extrapyramidal -extrasensory -extrasolar -extrasystole/S -extraterrestrial/S -extraterritorial -extraterritoriality/SM -extravagance/SM -extravagant/Y -extravaganza/MS -extravasate/DN -extravascular -extravehicular -extraversion -extravert/M -extrema -extremal -extreme/PTY3S -extremeness/S -extremis -extremism/MS -extremity/SM -extremophile/S -extricable/I -extricate/GnDSN -extrication/M -extrinsic/Y -extropian/S -extropy -extrorse -extroversion/SM -extrovert/DMSG -extrude/GNSDXV -extruder/M -extrusion/M -exuberance/SM -exuberant/Y -exudate/MS -exudation/M -exude/SnDG -exult/NnkGDS -exultant/Y -exultation/M -exurb/MS -exurban -exurbanite/SM -exurbia/SM -Exxon -eye-catching -eye-level -eye-liner/MS -eye-opener/SM -eye-opening -eye-teeth -eye-tooth/M -eye/RSpMD6iG -eyeable -eyebags -eyeball/DGSM -eyebright -eyebrow/SM -eyedropper/MS -eyeful/SM -eyeglass/SM -eyehole/S -eyelash/MS -eyelet/MdS -eyelid/SM -eyeline -eyeliner/S -eyepatch -eyepiece/MS -eyeshadow -eyeshine -eyeshot -eyesight/MS -eyesore/SM -eyespot/S -eyestalk -eyestripe/S -eyewash/SM -eyewitness/MS -eyot -Eyre -eyrie's -Ezekiel/M -Ezra -Ezrin/M -f-stop/S -f/F7 -fa/M -FAA -fab/SGD -Faber/M -Fabergé/M -Fabians -fable/MSDG -fabler/M -fabric/SNnM -fabricate/DSKNnG -fabrication/MK -fabricator/SM -fabulate/N -fabulator -fabulist/SM -fabulous/PY -Fabyan/M -facade/S -face's/K -face-saver -face-saving -face-to-face -face/CGKDASe -faceache -Facebook/rDGM -facecloth/S -faceless -facelessness -facelift/S -faceplate/MS -facer/KMC -facet/SdM -facetiae -facetious/YP -facetiousness/S -faceworker -facial/YS -facies -facile/YP -facilitate/yDGSNnV -facilitation/M -facilitator/SM -facility/SM -facing/MS -facsimile/MDS -facsimileing -fact/SMyxY -faction/MS -factionalism/SM -factious/YP -factitious -factive -facto -factoid/S -factor/Q8t+d-MqS -factorial/SM -factoring/MS -factory/SM -factotum/SM -factual/YP -factuality/M -facultative -facultatively -faculty/SM -fad/rSdM -faddish -faddist/MS -fade-in/S -fade-out/S -fade-up -fade/hS -fadeout -fading/M -fado/S -faecal -faeces -faerie/M -Faeroe/M -Faeroese -faery/SM -faff/GDS -fag/SDGM -Fagatogo/M -faggot/dSM -faggoting/M -Fagin -fah -Fahrenheit -fail-safe -fail/SDGkJ -failing/M -failingly/U -failover -failure/MS -fain -faint-hearted/Y -faint-heartedness -faint/RGSPYTD -faintness/S -fair-minded -fair-weather -fair/DTZPSGpJY -Fairbanks -Fairburn/M -Fairchild -faire -Fairfax/M -Fairfield -fairgoer/S -fairground/SM -fairing/M -fairish -fairlead/S -fairly/U -Fairmont -fairness/S -Fairport -Fairview -fairwater -fairway/MS -fairy/MS -fairyland/SM -fairytale -Faisal -faith/6DjpMGS -faithful/UY -faithfulness/SM -faithless/PY -faithlessness/S -fajitas -fake/RSDG -fakery -fakie/S -fakir/SM -falafel -falcate -falciparum -Falcoff/M -falcon/SryM -falconry/SM -Falk -Falkirk/M -Falkland/SM -Falkner -fall's/ce -fall-back -fall/RbMGS -fallacious/PY -fallacy/SM -fallback -fallen -fallibility/ISM -fallible/PY -fallibleness/S -fallibly/I -falloff/S -fallopian -fallout/MS -fallow/DPSG -falls/e -false/TYP -falsehood/SM -falseness/S -falsetto/MS -falsifiability/M -falsification/M -falsify/RBGnDSN -falsity/SM -Falstaff -falter/rJdSk -faltering/UY -falutin -faluting -fame/MDSz -famed/C -fames/C -familial -familiar/9Qsq8-SY -familiarise/k -familiarity/MS -familiarize/k -familiarly/U -familiarness -family/MS -famine/SM -famish/DGS -famous/YP -famously/I -fan/DSMGZ -fanatic/MYS -fanatical/P -fanaticism/MS -fanboy/S -fanciable -fanciful/P -fancifulness/S -fanciness/S -fancy-free -fancy/RTjPYDS6G -fancywork/SM -fandabidozi -fandango/MS -fandom/S -fanfare/MS -fanfold/M -fang/SDM -fangirl/S -fanlight/MS -fanny/MS -fanout -fantail/SM -fantasia/MS -fantasist -fantastic/Y -fantastical -fantasy/Q8Ws9DSGM -fanzine/S -FAQ/SM -far-distant -far-fetched -far-flung -far-off -far-ranging -far-reaching -far-sighted/YP -far-sightedness/S -far/d -farad/MS -Faraday -Faragher/M -faraway -Farber -farce/w1MS -fare/SM -Fareham -farer/M -farewell/MDGS -farfetchedness/M -Fargo -farina/MS -farinaceous -Farley -farm/SDRGM -farmhand/S -farmhouse/MS -farming/M -Farmington -farmland/MS -farmstead/MS -farmworker/S -farmyard/SM -Farnborough -faro/M -Faroese -farouche -farraginous -farrago/MS -Farrell -farrier/SM -farrow/MDSG -farseeing -Farsi -fart/SDGM -farther -farthermost -farthest -farthing/SM -fas -fascia/MS -fascicle/DSM -fasciculate/DnN -fasciculation/M -fascinate/DGSnkN -fascination/M -fascine/S -fascism/SM -fascist/WSM -Fashanu -fashion/RSMDl7G -fashionable/PS -fashionably/U -fashioned/A -fashions/A -Faso/M -Fass/M -fast-forward -fast/TGPSD -fastback/SM -fastball -fasten/dASU -fastener/SM -fastening/MS -fastidious/YP -fastidiousness/S -fastness/S -fat/SoYPTMGZD2 -fatal/3 -fatale/3S -fatalism/MS -fatalist/W1 -fatality/SM -fatalness -fate/jS6DM -fateful/P -fatefulness/S -fathead/MSDi -father-in-law -father/dpSYM -fatherhood/SM -fatherland/SM -fatherly/P -fathers-in-law -fathom/7dMpS -fathomable/U -fathomed/U -fatidic -fatigue/kDMSG -Fatima -fatling -fatness/S -fatso/MS -fatten/drS -fattiness/S -fatty/TSP -fatuity/SM -fatuous/PY -fatuousness/S -fatwa/MS -Faulkner -fault-finder/SM -fault-finding -fault/CSDGM -faultiness/S -faultless/YP -faultlessness/S -faulty/PTY -faun/SM -fauna/SM -faunal -faunistic -Fauntleroy -Faurisson/M -Faust -Faustian -fauvism/S -faux -fave/S -favicon -favour/ERSMDG -favourable/SYM -favourableness -favourably/U -favoured/SYM -favouredness -favouring/SMY -favourite/UMS -favouritism/MS -Fawcett/M -Fawkes -Fawlty -fawn/SRkDGM -fax/SGMD -fay/SM -Fayette/M -Fayetteville -faze/DGS -façade/SM -faïence/S -FBI/M -FCC -FDA -fealty/SM -fear/6MpGDjS -fearful/TP -fearfulness/S -fearless/PY -fearlessness/S -fearsome/PY -feasibilities -feasibility's -feasibility/I -feasible/PY -feasibly/I -feast/RDMGS -feat/SCM -feather-bed/GD -feather-bedding/M -feather-brain/MD -feather-edge -feather-head/D -feather-light -feather-stitch -feather/drpSZM -featherback/S -feathered/U -feathering/M -Featherstone/M -featherweight/SM -feathery/T -feature's/a -feature/DMGSp -featurette/S -Feb -febrifuge -febrile -febrility -February/SM -feckless/YP -fecund/ng -fecundate/SDG -fecundation/M -fecundity/SM -fed-up -fed/Ufc -federal/q-Q83Y -federalism/MS -federalist -federate/FNGnSD -federation/MF -federative/Y -fedora/MS -Feds -fee/GMYSd -feeble-minded -feeble/TPY -feebleness/S -feed/GRS -feedback/SM -feeding/M -feeds/c -feedstock -feedstuffs -feel/GkRSJ -feeling/PM -feelingly/U -feet/M -feign/RGSD -feigned/U -feijoada -feint/SDMG -Feistel/M -feisty/T -Felder -Feldman -feldspar/SM -Felicia -felicitate/DGSNn -felicitation/M -felicitous/YP -felicitously/I -felicity/ISM -feline/YS -Felipe -Felix/M -Felixstowe/M -fell/GSTD -fellah -fellahin -fellate -fellatio/MS -fellator -fellow-traveller/MS -fellow/MS -fellowship/SM -felon/SM -felonious/PY -felony/SM -felt-tip/S -felt/GSD -Feltham -felting/M -fem -female/PSM -femaleness/S -feminine/PYS -femininity/SM -feminise/nSGD -feminism/MS -feminist/SM -feminize/nSNGD -femme fatale -femme/S -femmes fatales -femoral -femtocell -femtosecond/S -femur/MS -fen/MS -fence/RSDMJG -fenced/U -fencepost/M -fences/C -fencing/M -fend/CGDRS -fenestration/CSM -Fenian/S -Fenianism -Fenimore/M -fenland/SM -Fenn/M -fennec -fennel/SM -fentanyl -Fenton/M -fenugreek -Fenwick -fer/KLFC -feral -Ferber/M -ferberite -Ferdinand -feretory/S -Fergus -Ferguson/M -Fermanagh/M -Fermat/M -ferment/nDNG -fermentation/M -fermenter -Fermi -fermion/MS -fermionic -fermium/M -fern/MZS -Fernandes/M -Fernandez/M -Fernando/M -fernbird/S -fernbrake -fernery/M -Fernhout -ferny/T -ferocious/YP -ferociousness/S -ferocity/SM -ferox -Ferrari/MS -Ferreira -ferret/rdSM -ferricyanide -ferriferous -ferrimagnet -ferrimagnetic -ferrimagnetism -Ferris -ferrite/MS -ferritic -ferritin -ferro -ferrocene/S -ferroconcrete -ferroelectric/S -ferroelectricity -ferromagnet/MW -ferromagnetism -ferrous -ferruginous -ferrule/DMSG -ferry/SGmWDM -Ferrybank -ferryboat/MS -fertile/Ps-Q89qY -fertility/ISM -ferule/SDGM -fervency/SM -fervent/Y -fervid/PY -fervour/MS -fescue/S -fess's -fess/SF -festal/Y -fester/IS -festered -festering -festival/MS -festive/YP -festiveness/S -festivity/SM -festoon/SMGD -feta/MS -fetal -fetch/DRkSG -fetid -fetidly -fetidness -fetish/M3S -fetishism/MS -fetishist/W -fetlock/MS -fetter's -fetter/USd -fettle/SDG -fettling/M -fettuccine -fettucine -fettucini -fetus/S -feud/DMSoG -feudal -feudalism/SM -feudatory/M -fever/SdM -feverfew -feverish/YP -feverishness/S -few/TP -fewness/S -fey/T -fez/MD -fezzes -ff -Fi -FIA -fiancé/SM -fiancée/MS -Fianna/M -fiasco/SM -fiat/MS -fib/DRSG -Fibonacci/M -fibre/MSDp -fibreboard/SM -fibrefill/S -fibreglass/M -fibrescope/S -fibril/MnSN -fibrillate/SGD -fibrillation/M -fibrin/SM -fibrinogen -fibroblast/MS -fibrocartilage -fibrocystic -fibrogenesis -fibroid/S -fibrolamellar -fibromuscular -fibroses -fibrosis/M -fibrous/PY -fibula/M -fibulae -fibular -fiche/SM -fichu/SM -Ficicchia/M -fickle/PT -fickleness/S -fiction/MSOo -fictional/Q8q- -fictitious/YP -fictive/Y -ficus -fiddle/RGMJDS -fiddleback -fiddlestick/SM -fiddly/T -fideism -fideist/S -fideistic -Fidel/M -Fidelio/M -fidelity/IMS -Fidgen -fidget/SdZ -fiducial/Y -fiduciary/MS -fie/y -fief/MS -fiefdom/S -field/SeRIM -fieldcraft -fielded -fieldfare/S -fielding -Fielding/M -fieldstone/M -fieldwork/SMR -fiend/MS -fiendish/PY -fierce/TPY -fierceness/S -fieriness/S -fiery/TYP -fiesta/MS -Fifa/M -Fife/M -fife/RSDMG -FIFO -fifteen/SHM -fifth-generation -fifth/Y -fifty-eight/H -fifty-fifty -fifty-first/S -fifty-five/H -fifty-four/H -fifty-nine/H -fifty-one -fifty-onefold -fifty-second/S -fifty-seven/H -fifty-six/H -fifty-three/H -fifty-two -fifty-twofold -fifty/HMS -fig/LMDGS -Figaro -figbird/S -figgy/T -fight/RSJG -fightback/S -fighter-bomber/S -fighter/IMS -fighting/IS -fights/e -figural -figuration/MK4F -figurations/4 -figurative/PY -figure's -figure/EG4KSFD -figurehead/SM -figurer/SMF -figurine/MS -figuring/S -Fiji/M -Fijian/SM -filament/DSM -filamentary -filamentous -filariasis -filbert/MS -filch/DSG -file's -file/CaSAGD -filename/S -filer/CSM -filesize/S -filespace -filesystem/S -filet's -filgrastim -filial/UY -filibuster/drSM -Filiep -filigree/GMS -filing/S -Filioque -Filipino/S -fill/JDRYGS7 -filled/cAU -fillet/SdM -filleting/M -filling/M -fillip/MS -Fillmore -fills/Ac -filly/MS -film-going -film-maker/SM -film-making -film-strip/MS -film/ZS2DMG -filmdom/M -filmgoer/S -filmic -filminess/S -filming/M -filmography/S -filmset/GR -filmstrip/S -filmy/TP -filopodia/O -filopodium -filter-tipped -filter/7SrndMN -filtered/U -filth/2ZSMz -filthiness/S -filthy/GTDP -filtrate's -filtrate/IGDNnS -filtration/MI -fin/DZGowMdS -finable -finagle/RSGD -final/Q83q-S -finale/M3S -finality/SM -finance's -finance/ASGD -financial/YS -financier/SDGM -financing/S -finch/SM -find/JRGS7 -findable/U -finding/M -fine's -fine-grained -fine-tune/SDG -fine/CFSDAG -finely -fineness/SM -finer/FCA -finery/MSA -finespun -finesse/MS -finest -finger-plate -finger/prdSMJ -fingerboard/SM -fingering/M -fingerling/MS -fingermarks -fingernail/MS -fingerpick/SGD -fingerprint/DGSM -fingertip/MS -finial/SM -finickiness/S -finicky/T -fining/M -finis/SM -finish/ASGD -finished/U -finisher/SM -finishing/S -finite/CPYI -finites -Fink/M -Finland/M -Finlayson/M -Finley/M -Finn/MS -Finnegan -Finnish -finny/T -Finsbury/M -Fiona/M -Fionnan -fiord/MS -fir/rdS -fire's -fire-break/SM -fire-control -fire-eater -fire-fighter/SM -fire-guard/M -fire-hose/MS -fire-lighter/S -fire-storm/MS -fire-trap/SM -fire-walker/S -fire-walking -fire-water -fire/aSGD -firearm/SM -fireback/S -fireball/SM -fireballer -fireballing -firebase -fireblight -firebomb/DMGS -firebox/MS -firebrand/SM -firebrat/S -firebreak/S -firebrick/SM -firebug/S -firecracker/MS -firecrest/S -fired/U -firedamp/SM -firedog/S -firefight/SG -firefighter/S -firefish/S -firefly/SM -Firefox/M -fireguard/S -fireless -firelight/M -firelighter/S -firelit -firelock/S -fireman/M -firemen/M -firepit -fireplace/MS -firepower/M -fireproof/GD -fireship/S -fireside/M -Firestone -firestorm/S -firewall/SDGM -fireweed -FireWire -firewood/M -firework/MS -firing/MS -firkin/M -firm's -firm/FDGS -firmament/SM -firmer -firmest -firmly/I -firmness/SM -firmware/SM -firry -first-aid -first-class -first-day -first-floor -first-hand -first-name -first-rate -first-strike -first/SY -firstborn/SM -firth/MS -Fis -fiscal/Y -Fischer/M -fish-bowl/MS -fish-hook/SM -fish-meal -fish-pond/SM -fish-tanks -fish/BDRZGM2zyS -fishbowl -fishcake/S -fished/c -Fisher/M -fisher/m -fisherwoman -fisherwomen -fishery/SM -fisheye -Fishguard/M -fishiness/S -fishing/M -Fishkill -fishlike -fishmeal -fishmonger/SM -fishnet/SM -fishplate/S -fishtail/DMSG -fishwife/M -fishwives -fishy/PT -Fisichella -Fisk -Fiske/M -fissile -fissility -fission/7SMDG -fissionable/S -fissure/GDSM -fist/DMGS6 -fistfight/MS -fistful/MS -fisticuffs -fistula/MS -fistulous -fit's/Aea -fit/RPTJSG6YDjM -Fitch -Fitchburg -fitful/P -fitfulness/S -fitment/S -fitness/S -fits/Aae -Fitt/M -fitted/e -fitter/eMS -fitting/PY -fittingly/U -Fitzgerald/M -Fitzpatrick -Fitzroy -Fitzwilliam -five-a-side -five-finger -five-fold -five-spice -five-year -five/SHM -fiver/M -fivesome -fivestones -fix/KDS4G -fixable -fixate/DSnVGN -fixatifs -fixation/M -fixative/S -fixed-wing -fixed/PY -fixer/SM -fixes/I -fixigena -fixigenae -fixing/MS -fixity/MS -fixture/MS -fizz/ZGSD -fizzer/M -fizzle/GDS -fizzy/T -fjord/SM -fl. -flab/ZSz2M -flabbergast/GkSD -flabbiness/S -flabby/TP -FLAC/M -flaccid/Y -flaccidity/SM -flack/SDMG -flag-waving -flag/mDGMJS -flagella/nM -flagellar -flagellate/DSG -flagellation/M -flagellum/M -flagging's -flagging/YU -flagitious/YP -Flagler/M -flagon/SM -flagpole/SM -flagrancy -flagrant/Y -flagship/SM -flagstaff/SM -flagstone/SM -flagtail -flail/GSMD -flair/SM -flak/dSM -flake/Z2MS -flaker/M -flaky/T -flamboyance/MZS -flamboyancy/SM -flamboyant/Y -flambé/GSD -flame-proof/GD -flame-thrower/MS -flame/pGZRSMDkJ -flamed/I -flamelike -flamen/M -flamenco/SM -flameout/S -flameproof -flamer/IM -flames/I -flamethrower/S -flaming/I -flamingo/SM -flamingoes -flammability/ISM -flammable/IS -flan/MS -Flanagan -Flanders -Flandrian -flange/DMGS -flank's -flank/eSDG -flanker/SM -flannel/DGMS -flannelette/MS -flap/SGDRM -flapjack/MS -flappy/T -flaps/M -flare-up/S -flare/DGkS -flarepath -flash-pan -flash/MDRZS2GzJ -flashback/MS -flashbulb/SM -flashcard/S -flashcube/SM -flashgun/S -flashiness/S -flashing/M -flashover/S -flashpoint/S -flashy/UTP -flask/SM -flasket -flat-earther/S -flat-footed/Y -flat-footedness -flat-head/M -flat-top/S -flat-weave -flat-woven -flat/PTSYGMD -flatbed -flatboat/S -flatbread/S -flatbug -flatcar/SM -flatfeet -flatfish/SM -flatfoot/MS -Flathead/S -flathead/S -flatland/S -flatlander -flatmate/SM -flatness/S -flatten/Srd -flatter/SdkZr -flattering/UY -flattery/SM -flattest/M -flattish -flattop/SM -Flattr -flatulence/SM -flatulent/Y -flatus/SM -flatware/MS -flatworm/SM -Flaubert/M -flaunching -flaunt/DkGS -flaunter -flaunty -flautist/SM -flavin/S -flavine -flavivirus/S -flavone/S -flavonoid/S -flavoprotein/S -flavour/RM6DGJSp -flavoured/U -flavouring/M -flavoursome -flaw/DGMpS -flawless/PY -flawlessness/S -flax/MS -flaxen -flaxseed/M -flay/DRGS -flaysome -flea/MS -fleabag/SM -fleabites -fleapit/S -fleawort/M -fleck/GDSM -flecker -flection -Fledermaus -fledge/DSG -fledged/U -fledgeling -fledgling/SM -flee/DGS -fleece/RDMGZS -fleeciness/S -fleecy/PT -fleer -fleet/DkGSTYPM -fleeting/P -fleetingly/M -fleetingness/S -fleetness/S -Fleishman/M -Fleming/S -Flemish -flesh/pY2MDGZS -flesher/M -fleshly/T -fleshpot/SM -fleshy/TP -Fletch -fletcher/MS -fleuron/S -flew/c -flews/M -flex's/A -flex/SGDMb -flexes/A -flexibility/MIS -flexible/IY -flexibly/I -flexicuffs -flexion -flexitarian/S -flexitime/M -flexural -flexure/M -flibbertigibbet/SM -flick/DGS -flicker/dSkZ -Flickr/M -flier/SM -fliest -flight's/cK -flight/GSZ2pMD -flightiness/S -flightpath -flights/c -flighty/TP -flimflam/SDGM -flimsiness/S -flimsy/TPY -flinch/DSG -flincher/M -flinching/U -fling/GSM -flinger/M -flint/ZSGMD2p -flintlock/SM -Flintoff/M -Flintshire/M -Flintstones -flinty/TP -flip-flop/SGD -flip/RSTGD -flippable -flippancy/SM -flippant/Y -flirt/NDGZSn -flirtation/M -flirtatious/PY -flirtatiousness/S -flirter -flit/SDG -flitter/Sd -float/DGZSRN -floating-point -flocculant/S -flocculate/DSNG -flocculation/M -flocculence -flocculent -flock/DMJGS -flockmaster -Flodden -floe/SM -flog/DSGJR -flogging/M -flood/SGMD -flooder -floodgate/MS -floodlight/GSM -floodlit -floodplain/S -floodwater/S -floor/SGJDM -floorboard/SM -floorcloth/S -floorer/M -flooring/M -floorman -floormen -floorpan -floorspace -floozy/SM -flop/2DGSzZ -flopper/M -floppiness/S -floppy/TSPM -flora/MSo -floral/S -Florence/M -Florentine -Flores -florescence/MIS -florescent/I -floret/SM -floriculture/O3 -florid/PY -Florida/M -Floridian/S -floridness/S -floriferous -florilegia -florilegium/S -florin/SM -Florio/M -florist/SM -floristic/S -floristically -Floréal -floss/DGMZS -flossy/TS -flotation/SM -flotilla/MS -flotsam/SM -Floud/M -flounce/DGSZ -flouncing/M -flouncy/T -flounder/dS -flour/DMGZS -flourish/SDkG -flourisher/M -floury/T -flout/GRDS -flow/kRGDS -flowchart/GS -flowed/c -flower/CSd -flowerbed/MS -floweriness/S -flowerless -flowerpecker/S -flowerpot/MS -flowery/PT -flowing/c -flown/c -flows/Ifec -flowstone -Floyd/M -flt -flu/M -fluctuant -fluctuate/nGDSN -fluctuation/M -flue-cured -flue/SM -fluency/SM -fluent/YF -fluff/DMZSG2 -fluffiness/S -fluffy/PT -fluid/Q8s9PSYM -fluidity/SM -fluke/SGDMZ -fluky/T -flume/GMSD -flummox/DSG -flung -flunk/DZGS -flunker -flunkey's -flunky/SM -fluoresce/DGS -fluorescein -fluorescence/SM -fluorescent/S -fluorescer -fluoridate/GSD -fluoridation/M -fluoride/nMS -fluorinated -fluorine/SM -fluorite/MS -fluorocarbon/MS -fluorochrome/S -fluorometer/S -fluorometric -fluorometrically -fluorometry -fluoropolymer -fluoroquinolone -fluoroscope/SGDMW -fluoroscopy -fluoxetine -fluphenazine -flurry/GSDM -flush/7DPTGS -fluster/dS -flute/GMSZDJ -flutelike -fluticasone -fluting/M -flutter/rSZd -fluvial -flux's/I -flux/DGAS -fluxes/I -fluxgate -fluxion/S -fluxional -FLV -fly-by -fly-by-night -fly-by-wire -fly-bys -fly-drive -fly-fishing -fly-paper/M -fly/cGS -flyable -flyaway -flyback -flyblow -flyblown -flybridge -flyby/M -flybys -flycatcher/SM -flyer/SM -flyest -flyhalf -flyleaf/M -flyleaves -flyman -flymen -flyness -Flynn -flyover/MS -flypaper/SM -flypast/M -flysheet/SM -flyspeck/SD -flyswatter/MS -flyweight/SM -flywheel/MS -FM -fo'c's'le -fo'c'sle -foal/MGSD -foam/DZSM2G -foamer -foaminess/S -foamy/TP -fob/DSMG -focaccia -focal/FY -foci/M -focus's -focus/CdGDAS -focusable -focused/U -focuser/M -focussed/U -focusses/CA -fodder/SdM -foe/SM -foetal -foeticide -foetid/Y -foetidness -foetus/MS -fog's -fog/CGDS -fogbound -fogey -Fogg/M -fogginess/S -foggy/TPY -foghorn/SM -fogy/MS -fogydom -fogyish -foible/MS -foil/SDG -foist/DSG -Fokker -fol/Y -folate -fold-out/SM -fold/BJGRSD -foldaway -foldback -folded/UA -folds/AU -Foley/M -foliaceous -foliage/SMD -foliar -foliate/CGSnDN -foliation/CM -folic -folio/SGMD -folk-dance/MGS -folk-singer/S -folk-song/S -folk-tale/S -folk-ways -folk/SM -Folkestone/M -folkie/SM -folkish -folklife -folklike -folklore/3WSM -folkloristic -folks/Z2 -folksiness/S -folksy/TP -folky/TP -foll -follically -follicle/SM -follicular -follow-on/S -follow-up/SM -follow/DGJRS7 -followee/S -folly/MS -Folsom -Folstone/M -foment/RGSnDN -fomentation/M -fond/TPMY -Fonda -fondant/MS -fondle/GDS -fondler/M -fondness/S -fondue/MS -font/S -Fontaine/M -Fontainebleau -Fontana -fontanelle/SM -Fontenoy -foo -food/SM -foodgrain/S -foodie/S -foodless -foodshed -foodstuff/MS -foodway/S -foodwise -fool/GDMS -foolery/SM -foolhardiness/S -foolhardy/TPY -foolish/TPY -foolishness/S -foolproof -foolscap/MS -foot/GSRDJhipM -footage/SM -football/RDSGM -footboard/S -footbrake/S -footbridge/SM -Foote -footfall/SM -footgear -foothill/SM -foothold/MS -footie -footing/M -footle -footlights -footling -footlocker/SM -footloose -footman/M -footmark/S -footmen/M -footnote/GDSM -footpad/SM -footpath/MS -footplate/MS -footprint/SM -footrace/S -footrest/MS -footsie/MS -footslog/SGDR -footsoldier/SM -footsore -footstep/MS -footstool/SM -footwear/M -footwork/MS -footy -foozle/SGD -fop/GSMD -foppery/SM -foppish/PY -foppishness/S -for -fora -forage/RDGSM -foramen -foramina -foraminifer/S -foraminifera -foraminiferal -foraminiferan/S -foraminiferous -foray/DSGM -forayer/M -forb/S -forbade -forbear/MSG -forbearance/MS -forbearer/M -Forbes -forbid/GS -forbidden -forbidding/PY -forbore -forborne -Forby/M -force-fed -force-feed/G -force/Dh6jGbMS -forced/U -forcefield/SM -forceful/P -forcefulness/S -forcemeat -forceps/M -forcer/M -forcible/YP -ford/SDGM7 -Fordham -fore/5m -forearm/GMDS -forebear/SM -forebode/DSGJk -foreboding/PM -forecast/SRGD -forecastle/MS -foreclose/SGD -foreclosure/MS -forecourt/SM -foredawn -foredeck/S -foredoom/GSD -foredune/S -forefather/SM -forefeet -forefinger/MS -forefoot/M -forefront/MS -foregather -foregathered -forego/GJ -foregoer/M -foregoes -foregone -foreground/GMSD -foregut/S -forehand/SD -forehead/SM -forehock -foreign/PRY -foreignness/S -forejudge -foreknew -foreknow/SG -foreknowledge/MS -foreknown -foreland/S -foreleg/SM -forelimb/SM -forelock/DGSM -foremast/SM -foremost -forename/DSM -forenoon/MS -forensic/SY -forensics/M -foreordain/GDS -forepart/S -forepaws -forepeak/S -forepeople -foreperson/S -foreplay/SM -forequarters -forerunner/MS -foresail/SM -foresaw -foresee/BGRS -foreseeable/UY -foreseen/U -foreshadow/GSD -foresheet/S -foreshock/S -foreshore/SM -foreshorten/dS -foresight/SMiDh -foresighted/P -foresightedness/S -foreskin/MS -forest/RMDSyNnG -forestall/GRSD -forestation/CMA -forestay -forested/AC -forester/CMS -forestland/S -forestry/SM -forests/AC -foretaste/MGSD -foretell/GRS -forethought/MS -foretold -foretop/S -foretriangle/S -forever -foreverness -forewarn/SDJG -forewarner/M -forewent -forewing/S -foreword/SM -forfeit/DRMSG -forfeiture/MS -forfend/SGD -forgather/dS -forgave -forge's -forge/SGAD -forger/SZM -forgery/SM -forget-me-not/S -forget/jGS6 -forgetful/P -forgetfulness/S -forgettable/YU -forgettably/U -forging/MS -forgivably/U -forgive/RPlS7kG -forgiven/U -forgiveness/S -forgiving/P -forgo/RG -forgoes -forgone -forgot -forgotten/U -forjudge -fork/D6GSM -forker -forkful/S -forklift/GDMS -forktail/S -forlorn/TPY -form's -form/FoSIGNnD -forma/S -formability/M -formae -formal/qsQ89P3- -formaldehyde/SM -formalin/M -formalism/MS -formalist/W -formality/SMI -formant/MIS -format/RMGuSDvV -formate/MS -formation/OMFIC4S -formative/PIY -formatives -formats/A -formatted/U -formed/K4CAU -former/SC4FAI -formerly -formfitting -formic -Formica -formicaria -formicarium -formication -formidable/PY -forming/K4 -formless/PY -formlessness/S -Formosa -Formosan -forms/AKC4 -formula/MSn -formulae/W -formularise/SGD -formulate/DAGSNn -formulated/U -formulation/AM -formulator/SM -fornicate/SNDGn -fornication/M -fornicator/SM -Forrest/M -Forrester -forsake/GS -forsaken -forseeability -forsook -forsooth -forspeak -Forster/M -forswear/GS -forswore -forsworn -forsythia/MS -Fort-de-France/M -fort/MZS -forte/MS -forth -forthcoming/U -forthright/PY -forthrightness/S -forthwith -fortification/MS -fortified/U -fortifier/SM -fortify/DAGS -fortiori -fortissimo/S -fortitude/MS -fortnight/MYS -fortnightly/S -Fortran/M -fortress/DMGS -fortuitous/YP -fortuitousness/S -fortuity/SM -fortunate/UYS -fortunateness/M -fortune-teller/SM -fortune-telling/SM -fortune/SaM -fortuned -fortuning -forty-eight/H -forty-first/S -forty-five/H -forty-four/H -forty-nine/H -forty-one -forty-onefold -forty-second/S -forty-seven/H -forty-six/H -forty-three/H -forty-two -forty-twofold -forty/HMS -forum/MS -forward-looking -forward/DYSTPRG -forwarding/M -forwardness/S -forwent -Foss -FOSS -fossa -FOSSer/S -fossil/Q-SMq8 -fossiliferous -fossorial -Foster's -foster/dS -fosterer/M -Foucault -fought/e -foul-mouth/D -foul-up/S -foul/DTPSGY -foulard/SM -foulness/S -fouls/M -found/DRGynS -foundation/Mo -foundational -founded/FU -founder/d -founding/F -foundling/SM -foundry/SM -founds/F -fount/MS -fountain-head/SM -fountain-pen/MS -fountain/SDMG -fountainhead/S -four-dimensional -four-eyes -four-in-hand -four-leaved -four-letter -four-poster/MS -four-square -four-wheel -four/HSM -fourchette -Fourier/M -fourpence/M -fourpenny -fourscore/S -foursome/MS -foursquare -fourteen/HSM -fourth/Y -fovea/M -foveae -foveal -foveate -fowl-run -fowl/DMGS -fowler/M -fowling/M -fox-hunting -fox/MDzZG2S -Foxe/M -foxed/e -foxes/e -foxglove/SM -foxhole/MS -foxhound/MS -foxiness/S -foxing/M -foxtail/M -foxtrot/DMGS -foxy/TP -foyer/MS -fps -FPU -fr -fracas/SM -frack/SGDR -fractal/SM -fraction's/IA -fraction/DNoSGM -fractional -fractionate/DG -fractionation/M -fractions/IA -fractious/PY -fractiousness/S -fracture/DSMG -fragile/Y -fragility/MS -fragment/NGMSnD -fragmentary/PY -fragmentation/M -fragrance/SM -fragrant/Y -frail/PTY -frailness/S -frailty/SM -Frakes/M -Fraktur -frame/7pRMSDG -framed/U -framework/SM -framing/M -Framingham/M -Fran/M -franc/SM -France/SM -Francesca/M -Francesco/M -franchise's -franchise/ESDG -franchisee/MS -franchiser/SM -franchisor/SM -Franchitti -Francine/M -Francis/M -Francisca/M -Franciscan/S -Francisco/M -francium/M -Franck -Franco -francolin/S -Francophile/S -francophone/MS -Francophonia -Francophonie -frangibility/SM -frangible -Frank's -frank/PYSDTG -Frankel/M -Frankenstein -franker/M -Frankford -Frankfort -Frankfurt -frankfurter/MS -Frankie -frankincense/MS -Frankish -franklin/M -frankness/S -Franks/M -frantic/YP -franticly -Franz -François -Françoise/M -frap/GSD -frappé -Fraser/M -frater -fraternal/Y -fraternalism/M -fraternise/RnSGD -fraternity/SMF -fraternize/NnSG -fraternizer/M -fratricidal -fratricide/SM -Frau -fraud's -fraud/CS -fraudster/S -fraudulence/S -fraudulent/Y -fraudulentness -fraught -fray's -fray/CDGS -Frazer -Frazier -frazzle/GDS -freak-out -freak/GSMDZ -freakily -freakiness -freakish/PY -freakishness/S -freaky/T -freckle/GMDSY -freckly/T -Fred/ZM -Freda -Freddie -Freddy/M -Frederic/M -Frederica/M -Frederick/S -Frederickson/M -Fredericton/M -Frederik/M -Frederiksen/M -Fredrick -Fredrickson -Fredricton -free-born -free-fall/G -free-for-all -free-form -free-handed/Y -free-handeness -free-kick -free-living -free-market -free-range -free-standing -free-up -free-wheel/DGS -free/mTSYPdG -freebase/DSG -freebie/SM -freeboard/S -freeboot/RSGD -freeborn -FreeBSD -freedman/M -freedmen/M -freedom/SM -freegan/S -freehand/Dh -freehold/RSM -freelance/SDRGM -freeload/SGDR -Freemason/SM -freemasonry -freemium -Freeport -freeridden -freeride/SG -freerode -freesia/S -freestone/SM -freestyle/SMGDR -freetail -freethinker/MS -freethinking/S -Freetown/M -freeware -freewheel/SDG -freewheeler -freewill -freezable -freeze-dried -freeze-frame -freeze/RSG -freezes/AU -freezing/AU -freezingly -Freiberger/M -freight/SMRDG -French/m5M -frenetic/Y -Frentzen -frenzy/DMShG -freon/S -freq -frequency/MSI -frequent/TDRYSGP -frequentative -frequented/U -frequently/I -fresco/DGMS -frescoes -fresh-faced -fresh/TPRmY -freshen/dSr -fresher/AMS -freshet/SM -freshness/S -freshwater/MS -Fresnel -Fresno -fret/jD6SG -fretboard -fretful/P -fretfulness/S -fretsaw/S -fretwork/SM -Freud/M -Freudian/S -Freudianism -Frey -Freya/M -Fri -friable/P -friar/YZSM -friarbird/S -friary/MS -fricassee/dGSM -frication/M -fricative/MS -Frick -friction/oMSp -frictional -frictionless/Y -Friday/SM -fridge/SM -fried/A -Friedman -Friedrich/M -Friel/M -friend/DGYMpS -friendless/P -friendlies -friendlily -friendliness/SM -friendly/TU -friends' -friendship/MS -frier's -fries/M -frieze/MGSD -frig/SJGD -frigate/SM -fright/DGMjS6 -frighten/Sdk -frighteners -frightful/P -frightfulness/S -frigid/PY -Frigidaire -frigidaria -frigidarium -frigidity/SM -frigidness/S -frill/GSMDY -frilly/TS -Frimley/M -fringe's -fringe/IDGS -frippery/SM -Frisbee -Frisco -Frisian -frisk/ZGSDz2 -frisker/M -friskiness/S -frisky/TP -frisson/M -Frith/M -fritillaria/S -fritillary/S -Frito -fritter/dS -fritterer/M -Fritz -frivolity/SM -frivolous/PY -frivolousness/S -frizz/GYSDZ -Frizzell/M -frizzle/DGS -frizzly/T -frizzy/T -fro/S -Frobisher -frock's -frock-coat/S -frock/CGSDU -frocking/M -Frodo/M -froed -frog/DGmSM -frogfish/S -froghopper/S -frogmarched -frogspawn -froid -froing -frolic/SRDMG -frolicsome -from -frond/SM -front's -front-line -front-page -front/FDGS -frontage/SM -frontal/YS -frontbencher/S -frontend/S -fronter/F -frontier/SM -frontiers/m -frontispiece/MS -frontlet/S -frontman -frontmen -frontotemporal -frontrunner/MS -frontrunning -frontside -frontward/S -frontwoman -frontwomen -frost's -frost/CSGD -frostbit -frostbite/MGS -frostbiting/M -frostbitten -frostiness/S -frosting/MS -frosty/TPY -froth/ZSD2MG -frothiness/S -frothy/TP -froufrou/SM -froward/P -frowardness/S -frown/DGSk -frowner/M -frowziness/S -frowzy/TPY -Froyd/M -froze/AU -frozen/PY -fructify/DSG -fructose/SM -Fruehauf/M -frugal/Y -frugality/MS -frugivore/S -frugivorous -fruit/X6jNdpSM -fruitarian/S -fruitarianism -fruitcake/MS -fruiterer/M -fruitful/TP -fruitfulness/U -fruitfulnesses -fruitiness/S -fruition/M -fruitless/YP -fruitlessness/S -fruitlet/S -fruity/PT -frump/ZSM -frumpish -frumpy/T -Frunze/M -frustrate/hNDSknG -frustrater/M -frustration/M -frustum/MS -fruticulture -fry/GSND7V -Frye/M -fryer/SM -Fräulein -Frédéric/M -fs -FSA -FSF/M -ft/C -FTC -ftp -FTP -fu -Fuchs -fuchsia/SM -fuck/DRSMGJB! -fuckery/S! -fuckhead/S! -fuckship/! -fuckwit/S! -fucoxanthin -FUD -fuddle/GDS -fudge/MSDG -fuehrer/SM -fuel-cell -fuel/MRGDS -fuels/A -fugal -fugitive/PSYM -fugue/GSDM -fuhrer/S -Fuji -Fujio/M -Fujitsu/M -Fukuoka -Fukuyama -Fulani -fulcrum/SM -fulfil/DLGS -fulfilled/U -fulfiller -Fulford -Fulghum/M -Fulham/M -full-blooded -full-blown -full-bodied -full-dress -full-frontal -full-grown -full-length -full-page -full-scale -full-time -full-timer/S -full-wave -full/c -fullback/SMG -fuller/dSM -Fullerton -fullest -fulling -fullish -fullness/SM -fullstop/S -fullword/MS -fully -fully-fledged -fulmar/S -fulminant -fulminate/SNDGn -fulmination/M -fulness's -fulsome/YP -fulsomeness/S -Fulton/M -fumage -fumarole/S -fumble/GRkSJD -fume/GkDZS -fumigant/MS -fumigate/SGDnN -fumigation/M -fumigator/MS -fumy/T -fun-loving -fun/Mz2Z -Funafuti/M -function/SMyGopD -functional -functionalism/M -functionalist/S -functionalistic -functionality/S -functionary/MS -functor/SM -fund-raiser/SM -fund-raising -fund/ASDGM -fundamental/SY3 -fundamentalism/MS -fundamentalist -funded/fU -funder/SM -fundholder/S -fundholding -fundi -funding/f -fundraise/SRG -fundus -Fundy/M -funebrial -funeral/MS -funerary -funereal/Y -funfair/MS -fungal/S -fungi/M -fungible/M -fungicidal -fungicide/SM -fungiform -fungoid/S -fungous -fungus/MS -funicular/SM -funk/S2DGMZ -funkiness/S -funky/T -funnel/MDGS -funniness/S -funny/TSP -fur/GM2JZSD -furacious -furan/S -furball -furbelow/DGMS -furbish/ASGD -furbisher/MS -furcula -furculae -furcular -furious/YP -furiouser -Furkan/M -furl/UGDS -furlong/MS -furlough/SM -furnace/MS -Furness/M -furnish/RSGDJ -furnished/UA -furnishes/A -furnishing/M -furniture/SM -furore/MS -furriness/S -furring/M -furrow/SDMG -furry/TRP -further/drS -furtherance/SM -furtherest -furthermore -furthermost -furthest -furtive/YP -furtiveness/S -furunculosis -fury/MS -furze/SM -fuscous -fuse's/A -fuse/SIX4NGFD -fusebox/S -fused/CA -fusee/MS -fusel -fuselage/SM -fuses/CA -fuseway/S -fusibility/SM -fusible -fusiform -fusilier/SM -fusillade/SMDG -fusing/CA -fusion/IM4F -fusionism -fusionist/S -fuss/SD2ZMGz -fusser/M -fussiness/S -fusspot/SM -fussy/PT -fustian/MS -fustiness/S -fusty/TP -fut -futile/PY -futility/SM -futon/S -Futuna/M -future/M3S -futurism/MS -futurist/W -futuristic/S -futurity/SM -futurology/3SM -fuzz/DZMGz2S -fuzziness/S -fuzzy-wuzzy/S -fuzzy/TP -fwd -FWIW -FX -FY -FYI -Fátima -fête/SM -föhn -führer/MS -G -g's -G-string/SM -G-suit -g/7 -G2B -G7 -G8 -Ga/y -gab/GZSD2 -gabapentin -gabardine/MS -Gabarone -gabbiness/S -gabble/GDS -gabby/T -gaberdine/M -gable/SDGM -gabler -Gabon/M -Gabor/M -Gaborone/M -Gabriel -Gabriele/M -Gabrielle -gad/RSDG -gadabout/MS -gadfly/MS -gadget/SMy -gadgeteer/S -gadgetry/SM -gadgety -gadolinium/M -Gadsden -Gaea/M -Gael/W -Gaelic-speaking -Gaeltacht -gaff/RMSGD -gaffe/MS -gag/RDGS -gaga -Gagarin -gage/SM -gaggle/SGD -Gagnon/M -gagwriter/S -Gaia/M -Gaian/S -gaiety/SM -Gail -gaily -gain/ASDG -gainer/SM -Gaines -Gainesville -gainful/YP -gainly -gainsaid -gainsay/RGS -Gainsborough -gait/SRM -gaitered -Gaithersburg -gal/GkDM -gala/SM -galactagogue/S -galactic/Y -Galactica/M -galactose -Galahad -galangal -galantine/S -Galapagos -Galatia -Galatian/S -Galaxy -galaxy/SM -Galbraith -gale's -gale/AS -galea -galeae -galen -Galen's -galena/M -galette/S -Galicia -Galician/S -Galilean -Galilee -Galilei/M -Galileo/M -gall/SM -Gallagher/M -gallant/SGDY -gallantly/U -gallantry/SM -gallate -gallberry/S -gallbladder/MS -galleon/SM -galleria/S -gallery/DSM -galley/MS -Gallic -Gallicism -gallimaufry/MS -Gallipoli -gallium/M -gallivant/DGS -gallon/SM -gallonage/M -gallop/Srd -Galloway/M -gallows/M -gallstone/MS -Gallup -Galois -galoot/SM -Galoppini -galore -galosh/S -galumph/SGD -galvanic -galvanise/nSDG -galvanism/MS -galvanize/NnSDG -galvanometer/MSW -Galveston -Galvin/M -Galway/M -gamba/SM -Gambia/M -Gambian/S -gambit/MS -gamble/RDSG -gambol/SGD -game/JYPTSMGRZD -gamecock/SM -gamefowl -gamekeeper/MS -gamekeeping -gamelan -gameness/S -gamepad/S -gameplay -gamesman -gamesmanship/MS -gamesmen -gamest/R -gamete/WMS -gametogenesis -gametogenic -gametogeny -gametophyte/W -gamgee -gamification -gamify/SGD -gamin/SM -gamine/SM -gaminess/S -gaming/M -gamma/MS -gammon/dMS -gamut/SM -gamy/PT -Gandalf/M -gander/dMS -Gandhi/M -Gandhinagar -gang/DMGSY -gangboard -ganger/M -Ganges -gangland/MS -ganglia/M -gangling -ganglion/MW -gangmaster/S -gangplank/SM -gangrene/DSMG -gangrenous -gangsta/S -gangster/SM -gangsterism -gangway/MS -ganja -gannet/MS -gantry/MS -Gantt -Ganymede -GAO -gaol/RDGMS -gap-toothed -gap/dkSMD -gape/S -gaper/MS -gapping -garage/GDSM -garb/DMSG -garbage/M -garble/GDS -garbler/M -Garbo/M -Garcia/M -Garda -Gardai -garde -garden/dSrM -gardenia/SM -gardening/M -Gardiner/M -Gardner/M -Gareth/M -Garfield/M -garfish/S -Garfunkel/M -gargantuan -gargle/DSG -gargoyle/DSM -Garibaldi/M -garibaldi/S -garish/PY -garishness/S -garland/SDMG -garlic/DSGZM -garment's/f -garment/DSMG -garments/f -Garner/M -garner/Sd -garnet/SM -Garnett -garnierite -garnish/LSDG -garnishee/MSd -garniture/S -garotte/SMDG -garret/MS -Garrett -Garrick -garrison/dSM -Garron/M -garrotte/MRGSD -garrulity/MS -garrulous/PY -garrulousness/S -Garry -Garten/M -garter/dSM -Garth/M -Gartner/M -garum -Garvey -Gary/M -garçon/SM -gas's -gas-cooled -gas-permeable -gas/FC -gasbag/SM -Gascoigne/M -Gascon/S -Gascoyne-Cecil/M -gaseous/YP -gases -gash/DMGTS -gasholder/S -gasification/M -gasify/SRnGDN -gasket/SM -gaslight/GDMS -gaslit -gasman -gasmen -gasohol/S -gasoline/M -gasometer/MS -gasp/SRDGk -Gaspar -gassed -gasser/SM -gasses -gassing/CMS -gassy/PT -Gaston -gastric -gastritides -gastritis/SM -gastrocnemii -gastrocnemius -gastrocolic -gastroenteritides -gastroenteritis/M -gastroenterological -gastroenterologist/S -gastroenterology -gastrointestinal -gastronome/Z1SwM -gastronomy/MWS -gastropod/SM -Gastropoda -gastropub/S -gastroscope/SW -gastroscopy -gastrostomy/S -gastrula -gastrulae -gastrulation -gasworks/M -gate/SMDG -gateau/SM -gatecrash/DRSG -gatehouse/SM -gatekeeper/MS -gateleg/D -gatepost/MS -Gates/M -Gateshead/M -gateway/MS -gather/drSJ -gathered/AI -gathering/M -gathers/A -Gatlinburg -Gatling/S -Gatsby -Gatwick/M -gauche/TPY -gaucheness/S -gaucherie/MS -gaucho/MS -gaudiness/S -gaudy/TYP -gauge/GaSD -gaugeable -gauger/M -Gauguin -Gaul -Gaulish -Gaulle/M -gaunt/PYT -gauntlet/SdM -gauntness/S -Gaurav/M -gauss/MS -gausses/C -Gaussian -Gautier -gauze/DMZSG -gauziness/S -gauzy/TP -gave -gavel/DSMG -Gavin/M -gavotte/SMDG -Gavron/M -Gawd -gawd -gawk/D2MzZSG -gawker -gawkiness/S -gawky/PT -gawp/SGDR -gay/TPS -Gaye/M -Gaylord -gayness/S -Gayton/M -Gaza -gazania/S -gaze/RGSD -gazebo/MS -gazelle/SM -gazette/DGMS -gazetteer/SM -gazillion/S -gazpacho/SM -gazump/SGD -gazunder/Sd -Gazza -GB -Gb -Gbit -GBP -Gbps -GCC/M -GCSE/MS -GDP -Ge -gear/DGSJM -gearbox/MS -gearhead/S -gearing/M -gearwheel/MS -Geary -gecko/MS -geckoes -geddit -gee-gee/SM -gee/dGMS -geek/GDS -geekdom -geekery -geekish -geekspeak -geeky/TP -geese/M -geez -geezer/MS -GeForce -Gehenna -Geiger -geisha/M -geitonogamous -geitonogamy -gel/DMGS -gelable -gelatin/MS -gelatine -gelatinous/PY -gelcap -geld/SGJD -gelding/M -gelid -gelignite/MS -Gellibrand/M -gem/SZMDG -Gemini/S -Geminian -gemlike -gemminess -gemmology/3M -gemstone/SM -gen/GD -gendarme/SM -gender-fluid -gender/MSp -gendered -genderqueer/S -gene/SM -genealogy/w31MS -genera/onWM1Vv -general-purpose -general/Q8Ptq93+s-SM -generalisable/Y -generalise/cDSG -generalissimo/SM -generalist -generality/SM -generalize/l -generalship/SM -generate/AnVCGDSN -generation/CMA -generational/Y -generative/AY -generator/AMS -generic/S -genericise/SGD -genericness -generosity/SM -generous/YP -generously/U -generousness/S -genesis -Genet -genet/S -genetic/3SY -geneticise -geneticism -geneticist -geneticize -genetics/M -Geneva/M -Genevieve/M -Genghis -genial/PU -geniality/FSM -genially/F -geniculate -genie/oSM -genii/M -genista/S -genistein -genisteine -genital/YF -genitalia -genitals -genitive/SM -genitourinary -genius/MS -genlock -Genoa/M -genocidal -genocide/SM -genome/SM -genomic/S -genotoxic -genotype/MS -genre/MS -gent/AMS -gentamicin -genteel/PY -genteelest -genteelism -genteelness/S -gentian/SM -gentile/S -gentility/SM -gentle/5PYmTGD -gentlefolk -gentleman/Y -gentlemanliness/M -gentlemanly/U -gentleness/S -gentrification/M -gentrify/nSDGN -gentry/SM -genuflect/DGS -genuflection/SM -genuflector/S -genuine/YP -genuineness/S -genus -geobotanical -geobotanist/S -geobotany -geocache/SGDR -geocentric/Y -geocentricism -geocentrism -geochemical/Y -geochemistry/SM -geochronological -geochronologist/S -geochronology/M -geocorona -geocoronal -geocratic -geocyclic -geodata -geode/SM -geodemographic/S -geodesic/S -geodesy/MS -geodetic/S -geoduck/S -geodynamical -geodynamo -geoeconomics -geoengineering -geofencing -Geoff/M -Geoffrey/M -geog -geographer/MS -geography/SM1Ww -geoid -geoinformation -geolocate -geolocation -geology/w3WM1S -geom -geomagnetic/Y -geomagnetism/MS -geomancer/S -geomancy -geomantic -geomantical -geomatic/S -geomembrane -geometer/wS1MW -geometric/S -geometrician/M -geometry/SM -geomorphology/3wM -geopark -geophysical/Y -geophysicist/SM -geophysics/M -geopolitic/YS -geopolitical -geopolitics/M -Geordi/M -Geordie -George/SM -Georgetown/M -georgette -Georgette -Georgia/M -Georgian/S -Georgie/M -geoscience/S -geoscientific -geoscientist/S -geospatial -geostationary -geostrategic -geostrategy -geosynchronous -geosyncline/S -geotactic -geotag/SGD -geotaxis -geotechnic/S -geotechnical -geotechnology -geotextile/S -geothermal/Y -geotropic -geotropism -Geraint/M -Gerald -Geraldine -Geraldton/M -geranium/SM -Gerard -Gerber -gerbil/MS -Gerhard -Gerhart/M -geriatric/S -geriatrician/S -geriatrics/M -germ/MS -Germain/M -German/MSW -germander -germane -germanium/M -Germantown -Germany/M -germicidal -germicide/MS -germinability -germinable -germinal/Y -germinate/NnDGVvS -germination/M -germinator -germling -gerontic -gerontocracy/M -gerontology/3SMw -Gerrit -Gerrold/M -Gerry/M -gerrymander/dS -Gershwin -Gerstein/M -Gertrude -gerund/MS -gerundive/M -Gervase/M -Gesher/M -gesso -gessoes -gestalt/M -Gestapo -gestate/SNxDGn -gestation/M -gesticulate/VDNSGnv -gesticulation/M -gestural -gesture/SMDG -gesundheit -get-out/S -get-rich-quick -get/RSG -getaway/SM -Gethsemane -gettable -gettered -Getty -Gettysburg -getup/MS -Geurts -gewgaw/SM -Gewürztraminer -geyser/dMS -Ghana/M -ghastliness/S -ghastly/TP -ghat/SM -Ghaznavid/S -ghee -Ghent -gherkin/MS -ghetto/QSDGM -ghettoes -ghillie/MS -ghost-wrote -ghost/DGMYS -ghostbuster/S -ghostlike -ghostliness/S -ghostly/PT -ghostwrite/RGS -ghostwritten -ghoul/MS -ghoulish/PY -ghoulishness/S -GHQ -GHz -Gianfranco/M -giant/MS -giantess/MS -giantism -giantkiller -GiB -gibber/Sd -gibberish/MS -Gibbes/M -gibbet/SMd -Gibbins/M -gibbon/MS -gibbosity -gibbous/PY -Gibbs -gibe/GSD -giber/M -gibibit/S -gibibyte/S -giblets -Gibraltar/M -Gibraltarian/S -Gibson/M -giddiness/S -Giddings -giddy/PGYTDS -Gideon -GIF/S -Gifford/M -Giffuni -gift/hGDSMi -gifted/PU -giftware -gig/GMSD -gigabit/S -gigabyte/S -gigacycle/MS -gigaflop/S -gigahertz/M -gigajoule/S -giganotosaurus -gigantic/PY -gigantism -gigapixel/S -gigaton/S -gigatonne/S -gigavolt -gigawatt/MS -giggle/RGDSYk -giggly/T -Giggs -gigolo/SM -Gilbert/M -Gilbertson -Gilchrist/M -gild/RJGDS -gilding/M -Gilead/M -Giles -gilet/S -Gilgamesh -gill/MSGD -Gillan/M -Gillard/M -giller -Gillespie -Gillette -Gillian/M -Gillibrand/M -gillie/SM -Gilligan/M -Gillingham/M -Gillmor/M -Gilman/M -Gilmartin/M -Gilmore/M -Gilmour/M -gilt-edged -gilt/S -gimbals -gimcrack/S -gimcrackery/SM -gimlet/MS -gimmick/SZMy -gimmickry/SM -gimp/DMGZS -GIMP/M -gimpy/T -gin/MDSG -Gina/M -ginger/ZYSdM -gingerbread/SM -gingerly/P -gingham/MS -gingiva -gingivae -gingivitis/MS -ginkgo/MS -ginkgoes -ginmill -Ginnie/M -Gino/M -Ginsberg/M -Ginsburg/M -ginseng/MS -Gioconda -Giordano/M -Giorgi/M -Giorgio -Giotto/M -Giovanni -gipsy/S -giraffe/SM -Giraud -gird/RSDG -girdle/DSGM -girdler/M -girl/SM -girlfriend/SM -girlfully -girlhood/SM -girlie/M -girlish/PY -girlishness/S -girly/S -giro/MS -girt -girth/GDSM -Girton/M -Girvan/M -Giselle/M -gismo/SM -Gissing/M -gist/M -git/M -GitHub -Gittoes -Giuliani/M -Giuseppe/M -Giusto -give-away/MS -give/7RGSk -giveaway/S -giveback/S -given -giveth -giving/aY -gizmo/SM -gizzard/SM -glabella -glabellae -glabellar -glabrous -glacial/Y -glaciate/DGSNn -glaciation/M -glacier/SM -glaciology/M3w -glaciomarine -glacé/DGS -glad/DZPGTY -gladden/dS -glade/MS -gladiator/SM -gladiatorial -gladiola/SM -gladioli -gladiolus/M -gladness/S -gladsome/T -Gladstone/M -Gladwin/M -Gladys -glair/Z -Glaister/M -glaive/S -glam/SGD -Glamorgan/M -glamorise/nDRSG -glamorize/NnDRSG -glamorous/UY -glamour/GMDS -glance/kDSG -gland/MS -glanders/M -glandes -glandular/Y -glans/M -Glanvill/M -glare/kSDG -glaring/P -Glaser -Glasgow/M -glasnost -glass-blower/S -glass-blowing/MS -glass-cloth -glass-like -glass-maker/MS -glass/2D6MGZzSp -glassful/MS -glasshouse/SM -glassiness/S -glassmaker/S -glassmaking -glasspaper -glassware/MS -glasswork/S -glasswort/M -glassy/PT -Glastonbury/M -Glaswegian/S -glaucoma/MS -glaucous -glaze/RSJDG -glazed/U -glazier/SM -glazing/M -gleam/GSMD -glean/DRSGJ -gleaning/M -Gleason -glee/jSM6 -gleeful/P -gleefulness/S -glen/MS -Glenda -Glendale -Glenhead -Glenis -Glenn/M -Glenny/M -glenohumeral -glenoid -glib/TPY -glibness/S -glide/GSRDJ -glim/M -glimmer/dJS -glimmering/M -glimpse/MGRDS -glint/DGS -gliosis -glissandi -glissando/MS -glissé/S -glisten/Sd -glister/Sd -glitch/ZMS -glitter/dSZkJ -glitterati -glitz/SDGZ -glitzy/T -gloaming/MS -gloat/GkSD -gloater/M -glob/SM -global/3Y -globalisation -globalise/SGD -globalism/S -globalist -globalization -globalize/SGDR -globe-like -globe-trotting -globe/SMD -globetrotter/MS -globoid -globose -globular/YP -globularity/M -globule/SM -globulin/SM -glocalisation -glocalization -glochid/S -glockenspiel/SM -glomerular -glomeruli -glomerulus -gloom/MD2GZSz -gloominess/S -gloomy/TP -gloop/Z -Gloria/M -glorification/M -glorify/RNSGnD -glorious/PYI -glory/MSGD -gloss/DMZGSz2 -glossary/SM -glossiness/S -glossolalia/SM -glossopharyngeal -glossy/TSP -glottal -glottalization/M -glottis/SM -Gloucester/M -Gloucestershire/M -glove/SRGDMp -glow-worm/SM -glow/GRDkSM -glower/d -glowy/T -gloxinia/S -glucagon -glucan/S -glucocorticoid/S -gluconate -glucosamine -glucose/MS -glucoside/SW -glucuronate/S -glue-sniffing -glue/SRMDGZ -glued/U -glueing -gluier -gluiest -glum/TYP -glume/S -glumness/S -gluon/MS -glut/SMGD -glutamate/SM -glutamic -glutamine -glutaraldehyde -glutathione -gluteal/S -glutei -gluten/SM -gluteus -glutinous/PY -glutton/SM -gluttonous/Y -gluttony/SM -glyceride/MS -glycerinate/DM -glycerine/M -glycerins -glycerol/SM -glycerolized/C -glycine/M -glycogen/MS -glycol/SM -glycolic -glycollic -glycolysis -glycolytic -glycoprotein/S -glycoside/S -glycosidic -glycosuria -glycosuric -Glyndebourne/M -Glynn -glyph/MS -gm -gmail -Gmail/M -Gmane/M -GmbH -GMO/S -GMT -gnarl/GSMD -gnash/DGS -gnat/MS -gnaw/JSGD -gnawer/M -gnawing/M -gneiss/MS -gnocchi -gnome/MS -gnomelike -gnomic -gnomish -gnomon/WS -gnostic/S -gnosticism -GNP -GNU/M -gnu/MS -GnuPG/M -go's -go-ahead -go-between -go-kart -go-slow -go/fGe -Goa/M -goad/GDMS -goal-kick/S -goal-line/S -goal-mouth/M -goal/pSDM -goalball -goalhanger/S -goalie/MS -goalkeeper/MS -goalkeeping/M -goalmouth/S -goalpost/S -goalscorer/S -goalscoring -goaltending -Goanese -goat/SMZ -goatee/SMd -goatherd/SM -goatish -goatskin/SM -goatsucker/S -gob/SGDM -gobbet/SM -gobble/RDGS -gobbledegook/M -gobbledygook/S -Gobi/M -goblet/SM -goblin/SM -God -god-daughter/MS -God-fearing -God-forsaken -god/SMYp -godawful -godchild/M -godchildren -goddammit -Goddard/M -goddess/SM -godfather/SdM -godforsaken -Godfrey/M -godhead/S -godhood/SM -godless/PY -godlier/U -godlike/P -godliness/S -godly/PT -godmother/MS -godparent/MS -godsend/MS -godson/MS -Godspeed -Godwin/M -godwit/S -Godzilla/M -goer/SM -Goering -goes/ef -Goethe/M -goethite -Goff/M -Goffman/M -goggle-box/SM -goggle-eyed -goggle/SRDG -Gogh/M -going/SM -goings-on -goitre/DMS -goitrous -gold-plated -gold/TSM -Golda -Goldberg -goldbrick/MDRSG -golden/PY -goldendoodle/S -goldeneye/S -goldenrod/MS -goldenseal/M -goldfield/S -goldfinch/SM -goldfish/SM -Goldie/M -goldilocks -Golding -Goldman -goldmine/S -goldsmith/SM -Goldstein/M -Goleta/M -golf/MRSGD -golgotha -Golgotha -goliath -Goliath/M -golliwog/SM -golly/S -gollywog -Gomez -Gomorrah -gonad/SM -gonadal -gonadotrophin/S -gonadotropin/S -gondola/MS -gondolier/MS -Gondwana/M -Gondwanaland -Gondwanan -gone/R -gong/SDMG -goniometer/Ww -goniometry -gonna -Gonne/M -gonococcal -gonococci -gonococcus -gonoduct -gonolek/S -gonorrhoea/M -gonorrhoeal -Gonubie -Gonville -Gonzales -Gonzalez -goo/ZM -Goober -good-for-nothing/S -good-humoured/Y -good-looking -good-natured/Y -good-oh -good-tempered -good/YPZS -Goodall/M -goodbye/MS -gooder/S -goodhearted -goodie/M -goodish -goodly/TP -Goodman -goodness/S -goodnight -Goodrich -goodwill/SM -Goodwin -Goodwood/M -goody/MS -Goodyear -goof/GD2MZS -goofiness/S -goofy/TP -googlable -google/DSG -Google/M -googleable -googly/S -gooier -gooiest -Gooley/M -goon/SM -goop -goopy/TP -goosander/S -goose-step/G -goose/M -gooseberry/SM -goosebumps -goosefoot/S -goosegrass -GOP -gopher/MS -Goran -Gorbach/M -Gorbachev/M -Gordian -Gordon/M -Gordonstoun/M -gore/SMDGZ -Goren/M -gorge/MSDG -gorged/E -gorgeous/YP -gorgeousness/S -gorger/EM -gorges/E -gorging/E -gorgon/SM -gorgonian/S -Gorgonzola -Gorham -gorilla/SM -goriness/S -goring/M -Gorkhali -Gorky -gormandise/GSRD -gormandize/GSRD -gormless -Gornik/M -gorse/MS -gory/TYP -gosh/S -goshawk/SM -gosling/M -gospel/SM -Gosport -gossamer/MS -gossamery -Gosse/M -gossip/dSM -gossiper/S -gossipy -gossypol -got/I -gotcha -gotcher -Goth/1S -goth/S -Gotham/M -Gothic/Q8 -Gothicism -GOTO -gotta -gotten -gouache/S -Gouda/M -gouge/DRGS -Gough -goulash/MS -Gould/M -Gounod -gourami/S -gourd/M6S -gourdful/S -gourmand/SM -gourmandise -gourmandism -gourmet/SM -Gourock/M -gout/ZSM -gouty/T -gov. -Govan/M -govern/GaSD -governable/U -governance/SM -governed/U -governess/MS -government/aM -governmental/Y -governmentalism -governments -governor/MS -governorship/MS -Govt. -Gower/M -gown/SDMG -Goya -GP -GPG/M -Gpg4win/M -GPGTools -GPL -GPMU -GPO -GPRS -GPS -GPSes -GPSS -GPU/S -gr -grab/RSJDG -grace's/E -grace/DpG6MjS -graced/E -graceful/EPY -gracefuller -gracefullest -gracefully/U -gracefulness/SE -graceless/YP -gracelessness/S -graces/E -Gracie -gracile -gracing/E -gracious/UY -graciousness/MS -grackle/SM -grad/S -gradability -gradable -gradate/DSG -gradation/CM -grade's -grade/nRCSDG -graded/UA -grades/A -gradience -gradient/SM -grading/A -gradings -gradiometer -Gradle/M -gradual/SYP3 -gradualism/SM -gradualist -gradualistic -gradualness/S -graduand/SM -graduate's/f -graduate/NMGnDS -graduates/f -graduation/M -Grady -Graeco-Roman -Graeme -Graff/M -graffiti -graffito/M -graft/SMRGD -grafting/M -Grafton -Graham/M -Grahamstown/M -grail/S -grain's -grain/DIGS -grainer/M -graininess/S -graining/M -grainy/TP -gralloch -gram/MS -graminaceous -graminivorous -grammalogue -grammar/SM -grammarian/MS -grammatical/PY -grammaticalisation -grammaticalise/D -grammaticality's -grammaticality/U -grammaticalize/DN -grammatically/U -gramme/SM -Grammy/S -Grammys -gramophone/MS -gramophonic -Grampian/M -grampus/MS -Gramsci/M -Granada -granary/SM -grand/TYSP -grandam/MS -grandaunt/MS -grandchild/M -grandchildren -granddad/SMZ -granddaddy/SM -granddaughter/MS -grandee/SM -grandeur/SM -grandfather/MdSY -grandiloquence/MS -grandiloquent/Y -grandiose/Y -grandioseness -grandiosity/MS -grandma/SM -grandmaster/SM -grandmother/MYS -grandmotherhood -grandnephew/SM -grandness/S -grandniece/MS -Grandon/M -grandpa/MS -grandparent/SM -grandson/SM -grandstand/SDGM -grandstander/M -granduncle/SM -grange/SM -Grangemouth/M -Granger -granite/MWS -granitoid/S -granny/MS -granodiorite -grant-maintained -grant/DRMGS -Grantchester -grantee/SM -Grantham -grantor's -grantsmanship/S -granular/Y -granularity/MS -granulate/SDG -granulation/M -granule/nNMVS -granulite/W -granulocyte/S -granulocytic -granuloma/S -granulomata -granulomatous -Granville -grape/MS -grapefruit/M -grapeseed -grapeshot/M -grapestone/S -grapevine/MS -graph/MWGwD1S -grapheme/MS -graphemic/S -graphemically -graphic/PS -graphics/M -graphite/MS -graphitic -graphology/3MS -grapnel/SM -grapple/SGD -grappler/M -grappling/M -grasp/Gk7DS -grasper/M -grasping/P -grass/ZSDGM -grassers -grasshopper/SM -Grassington/M -grassland/SM -grassquit/S -grassy/T -grate/jRG6SDkJ -grateful/TP -gratefully/U -gratefulness/U -gratefulnesses -grates/I -graticule/M -gratification/M -gratified/U -gratify/RSGkNnD -gratifying/U -gratin -grating/M -gratis -gratitude/SIM -gratuitous/PY -gratuitousness/S -gratuity/MS -Grauman/M -gravadlax -gravamen/MS -grave-stone/SM -grave/RSMZPTDYG -gravedigger/SM -gravel/DYGMS -graven -graveness/S -Gravesen/M -Gravesend -graveside/S -gravestone/MS -graveyard/MS -gravid/YP -gravimeter/SWM -gravitas -gravitate/NDGnVxS -gravitation/M -graviton/MS -gravitropic -gravity/SM -gravlax -gravure/S -gravy/MS -grawlix/S -Gray -Grayson -graze/RSGD -grazed/c -grazes/c -grazing's -grazing/c -grease's -grease/CDRGS -greasepaint/SM -greaseproof -greasiness/S -greasy/PTY -great-aunt/S -great-grandchildren -great-grandfather -great-grandmother/S -great-grandparents -great-nephew -great-niece -great-uncle -great/PYST -greatcoat/SDM -greathearted -greatness/S -Greaves/M -grebe/SM -Grecian/S -Greco-Roman -Greece/M -greed/2ZSzM -greediness/S -greedy/PT -Greek/SM -Greeley -green-eyed -green/TPMGYDS -Greenaway/M -greenbelt/S -Greenberg -greenbottle/S -greenbul/S -Greene/M -greener/Z -greenery/SM -greenfield -greenfinch/SM -greenfly/MS -greengage/MS -greengrocer/SZM -greengrocery/M -greenhorn/MS -greenhouse/MS -greenie/S -greening/M -greenish -greenishness -greenkeeper/SM -Greenland/M -Greenlander/S -Greenlandic -Greenlandish -greenlandit -greenlandite -Greenlandman -greenless -greenlet -greenling/S -greenmail/SGD -greenmailer/S -greenness/S -Greenock/M -Greenpeace/M -Greensboro -greenstick -greenstone/S -greensward/SM -Greenville -greenweed -Greenwich -greenwood/SM -Greer/M -greet/DRGSJ -greeting/M -Greg/M -gregarious/PY -gregariousness/S -Gregg -Gregor/M -Gregorian -Gregorio/M -Gregory -Greig -gremlin/MS -Grenada/M -grenade/MS -Grenadian/S -grenadier/SM -grenadine/MS -Grenadines/M -Grenoble -Grenville -Gresham/M -Greta -Gretchen -Gretel/M -Gretna -grew/cAe -Grexit -grey/PGYDS -greybeard/SM -greyer -greyhound/SM -greyish -greylag -greyness/S -greyscale -Grice/M -grid/SMD -griddle/DGSM -gridiron/MS -gridlock/DSG -grief/MSDG -griefer/SM -Grieg/M -grievance/MS -grieve/RkSDG -grievous/PY -grievousness/S -griffin/SM -Griffith -Griffiths/M -griffon/M -Grigson/M -grill/GSD -grille/SM -griller/M -grilse -grim/PYT -grimace/RMDSG -Grimaldi/M -grime/ZM -Grimes -griminess/S -Grimm/M -grimness/S -grimoire -Grimsby -grimy/TP -grin/DGS -grind/RGJSk -grinds/A -grindstone/MS -gringo/SM -grinner/M -grinning/Y -Grinstead/M -griot/S -grip/rRdGMDS -gripe/S -gripping/Y -grisaille -griseofulvin -grisliness/S -grisly/PT -grist/MY -gristle/SM -gristly/PT -Griswold/M -grit/2GSDRMZ -grittiness/S -gritty/TP -grizzle/SYGD -grizzling/M -grizzly/TS -groan/MGRDS -groat/MS -Grobler/M -grocer/ZSM -grocery/SM -Groff/M -grog/Z2zM -grogginess/S -groggy/TP -groin/SMGD -grok/SDG -grommet/dMS -gromwell/S -groom/RSDGM -Groot -groove/GSDMZ -groovy/TYP -grope/RJSDGk -grosbeak/MS -grosgrain -gross/YSDTPG -Grossman -grossness/S -grossular -Grosvenor -Grosz -Grote/M -grotesque/SPY -grotesqueness/S -Groton -grotto/SMD -grottoes -grotty/TP -grouch/2ZDSzG -Groucho/M -grouchy/T -ground's/f -ground-plan -ground-squirrel -ground-to-air -ground/mRMGJDpS -groundbait/G -groundbreaker/S -groundbreaking -groundburst -grounded/U -groundless/PY -groundmass -groundnut/S -grounds/f -groundsheet/M -groundskeepers -groundswell/S -groundwater -groundwork/M -group/SMRJGD -grouped/A -groupie/SM -grouping/M -groups/A -groupset/S -groupware/M -grouse/RGSDM -grout/MGDS -grouter/M -grove/RSM -grovel/DSGR -grow/7RkGS -growing/Iec -growl/2GSkDR -grown-up/MS -grown/ceIA -grows/cAe -growth/eSAIMcf -Grozny/M -grub/zRMZ2DGS -grubbiness/S -grubby/TP -grubstake/MGDS -grubworm/S -Grude -grudge/DkMGS -grudger/M -grudging/U -gruel/MGkS -gruesome/YPT -gruesomeness/S -gruff/DTPGY -gruffness/S -grumble/GRJkSD -grume/S -Grumman -grump/2MZSz -grumpiness/S -grumpy/PT -Grundy -grunge/SZ -grungy/T -grunion/SM -grunt/DGS -grunter/SM -gruntled -Gruyère -gryphon's -grâce -Grünewald/M -GSA -gsm -GSM -GT -GTA -GTIN -GTX -GU -guacamole/SM -Guadalajara -Guadalcanal -Guadalupe -Guadeloupe/M -Guam/M -Guamanian/S -Guangdong/M -Guangzhou/M -guanidine -guanine/SM -guano/MS -Guantánamo/M -guarani/SM -guarantee/GdSM -guarantor/SM -guaranty/SM -guard/RmGDhMiS -guardant -guarded/P -guardedly/U -guardee -guardhouse/MS -Guardi/M -Guardia -guardian/SM -guardianship/SM -guardrail/MS -guardroom/SM -Guatamala -Guatemala/M -Guatemalan/S -guava/MS -gubernatorial -Gucci/M -Guderian/M -gudgeon/M -Guenther/M -guerilla/SM -Guernsey/M -guernsey/S -Guerre -Guerrero -guerrilla/SM -guess/DRG7S -guessed/e -guesses/e -guessing/e -guesstimate/GDS -guesswork/SM -guest/DGMS -guestbook -guestbooks -guestimate/DSG -Guevara -guff/MS -guffaw/GDSM -Guggenheim -GUI/SM -Guiana/M -guidable -guidance/MaS -guide/aDSG -guidebook/MS -guided/U -guideline/SM -guidepost/MS -guider/aM -guiders -Guido -guild/MSR -Guildenstern/M -Guildford -guildhall/SM -guile/pM6j -guilefulness -guileless/YP -guilelessness/S -Guiley/M -Guillaume -guillemot/MS -guillotine/DSMG -guilt/ZS2zMp -guiltiness/S -guiltless/PY -guilty/TP -Guinea-Bissau/M -Guinea/M -guinea/MS -Guinean/S -Guinevere/M -Guinness -guise/EMS -guitar/3MS -guitarist -Gujarat -Gujarati/S -Gujerati/S -gulag/S -Gulag/S -gulden/MS -gulet/S -gulf/SM -gull/SDMbGY -Gullah -gullet/MS -gulley/SM -gullibility/SM -Gulliver/M -gully/MSGD -gulp/RGSD -gum/G2DZMS -gumboil/SM -gumboot/S -gumdrop/SM -gummy/TP -gumption/SM -gumshield/S -gumtree/MS -gun/yGSZRMD -gunboat/MS -guncotton -Gunderson -gunfight/RMS -gunfire/SM -gunk/MZS -gunky/T -gunman/M -gunmen/M -gunmetal/M -Gunnar/M -gunnel's -gunnery/SM -gunning/M -Gunnison/M -gunny/MS -gunnysack/MS -gunpoint/M -gunpowder/MS -gunrunner/MS -gunrunning/MS -gunship/S -gunshot/MS -gunsight/S -gunslinger/S -gunslinging -gunsmith/SM -gunstock/S -Gunter -Gunther/M -gunwale/SM -guppy/MS -Gupta/M -gurdwara/S -Gurevich/M -gurgle/DGS -Gurkha/M -Gurkhali -Gurley/M -Gurmukhi -gurnard -guru/SM -Gus -gush/GZRSD -gushy/T -gusset/SM -gusseted -gust/SD2MGzZ -Gustafson/M -gustatory -Gustav/M -Gustavo -gusted/E -gusting/E -gusto/M -gusts/E -gusty/PT -gut/MRGpDS -Gutenberg -Guthrie -Gutierrez -gutlessness/S -guts/Z2 -gutsy/PT -gutta -gutta-percha -gutter/d -guttering/M -guttersnipe/SM -guttural/PSY -guy/RSMDG -Guyana/M -Guyanese -Guysborough/M -guzzle/DRGS -Guélat -GW -Gwangju -Gwen -Gwendolen/M -Gwent/M -Gwynedd -Gwyneth -gybe/SGD -Gyllenhaal/M -gym/MS -gymkhana/SM -gymnasia/M -gymnasium/SM -gymnast/M1SW -gymnastic/S -gymnastics/M -gymnosperm/SM -gymnospermous -gymslip/S -gynaecocracy -gynaecological/MS -gynaecology/S3wM -gynaecomastia -gynarchy/S -gynocentric -gynoecia -gynoecium -gyp/S -gypped -gypping -gyps/Z -gypsite -gypster/S -gypsum/SM -gypsy/MS -gyrate/GDSNn -gyration/M -gyrator/SM -gyratory/S -gyrfalcon/MS -gyro/S -gyrocompass/M -gyromagnetic -gyropilot -gyroplane/S -gyroscope/SMW -gyroscopically -Gyves/M -gzip/SGD -Göbel/M -Gödel/M -Göteborg/M -Günther -H.264 -H.265 -h/E -ha -ha'p'orth -ha'penny -ha-ha -Haag/M -Haarlem/M -habeas -haberdasher/ZMS -haberdashery/MS -Habib/M -habiliment/MS -habilis -habit-forming -habit/7ndgSM -habitability/MS -habitable/P -habitant/IFSM -habitat/MS -habitation/IMF -habited/IF -habits/FI -habitual/YP -habitualness/S -habituate/NnSDG -habituation/M -habitué/MS -hacienda/SM -hack/R7DGSJ -hackathon/S -hackberry/S -hackerspace -Hackett -hackette/S -hackily -hackle/DSMG -hackler/M -hackney/SDM -hacksaw/GSMD -hacktivism -hacktivist/S -hackwork/S -had -Hadamard -Haddad/M -Hadden/M -haddock/SM -Hadean -hades -hadj's -hadji's -Hadley/M -hadn't -Hadrian -hadron/SM -hadst -haem/SM -haemagglutination -haemagglutinin -haematin -haematite/SM -haematocrit -haematogenous -haematology/W3SMw -haematoma/M -haematopoiesis -haematopoietic -haematuria -haemocyte/S -haemodialyses -haemodialysis -haemodynamic -haemodynamically -haemodynamics -haemoglobin/SM -haemolytic -haemophilia/MS -haemophiliac/SM -haemophilic/S -haemopneumothorax -haemopoiesis -haemopoietic -haemoptysis -haemorrhage/SGDWM -haemorrhoid/MS -haemorrhoidal -haemostasis -haemostatic -Hafiz -hafnium/M -haft/MDGS -hag/MS -Hagar -Hagelstein/M -Hagen/M -Hager/M -hagfish/S -Haggai -haggard/PY -haggardness/S -haggis/SM -haggish -haggle/DRSG -hagiographer/SM -hagiographic -hagiographical -hagiography/MS -hagiological -hagiologist/S -hagiology -Hagon/M -Hague -Hahn/M -hahnium/S -Haider/M -Haifa -haiku/M -hail/RMDSG -Haili -hailstone/MS -hailstorm/SM -Haiphong/M -hair-drier -hair-dryer/S -hair-raising -hair-slide -hair-splitter/SM -hair-splitting -hair-trigger -hair/p2ZSMD -hairball/SM -hairband/S -hairbreadth/SM -hairbrush/SM -haircare -haircloth/SM -haircut/SMG -hairdo/SM -hairdresser/SM -hairdressing/MS -hairgrip/S -hairiness/S -hairless/P -hairlike -hairline/MS -hairnet/SM -hairpiece/SM -hairpin/SM -hairsbreadth/S -hairspray/S -hairspring/SM -hairstyle/3MSG -hairy/TP -Haiti/M -Haitian/SM -hajj/M -hajjes -hajji/SM -hake/SM -Hal/M -halal/SDG -halberd/SM -halcyon/S -hale/SIDG -haler/MI -halest -Haley/M -half-and-half -half-arse/GD -half-back/SM -half-baked -half-beak -half-blood/D -half-blue/S -half-breed/SM -half-brother/SM -half-caste/S -half-century/S -half-crown/MS -half-cut -half-deck -half-duplex -half-eaten -half-fare -half-finished -half-hardy -half-hearted/YP -half-heartedness/S -half-hour/YS -half-inch -half-length -half-life -half-light -half-lives -half-marathon/MS -half-mast -half-moon -half-pay -half-seas-over -half-sister/SM -half-sovereign -half-step -half-term/S -half-timbered -half-time/S -half-tone/S -half-track -half-truth/S -half-wave -half-way -half-yearly -half/M -halfbreed -halfness -halfpence -halfpenny/SM -halfpennyworth -halfpipe -halfway -halfwit/hiSMD -halfword/SM -halibut/M -halide/SM -Halifax/M -halite/MS -halitoses -halitosis/M -hall-stand/S -hall/SM -Hallam/M -hallelujah/S -Halley/M -hallmark/SMDG -hallo/GSD -halloo's -Hallot/M -hallow/DGS -hallowed/U -Halloween -hallucinate/nyNVGDS -hallucination/M -hallucinogen/SWM -hallucinogenic/S -hallway/SM -halo/MDSG -haloes -halogen/SM -halogenated -halon/M -haloperidol -halophyte/S -Halsey/M -Halstead/M -halt/RJGSMkD -halter-neck -halter/d -haltere/S -Halton -halve/DSG -halvers -halves/M -halyard/MS -ham/DGSRZM -hamadryas -Hamal/M -Haman/M -hamate -Hambleton -Hamburg/M -hamburger/SM -Hamill/M -Hamilton/M -Hamiltonian/S -Hamish -hamlet/MS -Hamlin/M -Hamm/M -Hammarskjöld/M -hammer/dpr -hammerhead/SM -hammering/M -hammerlock/SM -Hammersmith/M -hammertoe/SM -Hammett -hammock/MS -Hammond -hammy/T -Hampden/M -hamper/dS -hampered/U -Hampshire/M -Hampstead -Hampton/M -hamster/MS -hamstring/SGM -hamstrung -Han/M -Hancock/M -hand-axe -hand-held -hand-me-down/S -hand-painted -hand-pick/D -hand-pick/GSD -hand-to-hand -hand-to-mouth -hand/h6RzZSipMGD2 -Handan/M -handbag/SMDG -handball/MS -handbarrow/SM -handbasin -handbill/SM -handbook/SM -handbrake/SM -handcart/MS -handclap/SG -handclasp/SM -handcraft/SGD -handcuff/DSG -handcuffs/M -handed/fU -handedly/f -handedness/SM -Handel/M -handful/MS -handgrip/S -handgun/MS -handheld/S -handhold/MS -handicap/GDRMS -handicraft/SM -handing/c -handiwork/MS -handkerchief/SM -handle/RMGDS -handleable -handlebar/MS -handled/a -handles/a -Handley -handling/M -handlist/S -handmade -handmaid/SM -handmaiden/SM -handout/MS -handover -handpiece -handprint/S -handrail/MS -hands/Uc -handsaw/SM -handset/SM -handshake/SMG -handshaker/M -handshaking/M -handsome/PTY -handsomely/U -handsomeness/S -handspike/MS -handspring/SM -handstand/SM -handwork/SM -handwoven -handwrite/GJS -handwriting/M -handwritten -handy/mPT -Hanemesis -Haney/M -hang-glide/RG -hang/7RmDJSG -hangar/SdM -hangdog/S -hanger-on -hangers-on -hanging's -hanging/c -hangnail/SM -hangout/SM -hangover/MS -hangs/cA -hank/RMZS -hanker/Jd -hankerer/M -hankering/M -hankie/M -hanky-panky -hanky/MS -Hanna/M -Hannah/M -Hannibal/M -Hanoi/M -Hanover -Hanoverian -Hans -Hansard/SM -Hanse/M -Hansel -Hansen/M -hansom/SM -Hanson -hantavirus -Hanukkah -hap/aS -haphazard/PY -haphazardness/S -hapless/PY -haplessness/S -haploid/SZ -haplotype/S -happen/SJd -happening/M -happiness/SM -happing -happy-go-lucky -happy/TUY -Hapsburg/M -haptic/S -hara -hara-kiri -Harald -harangue/DGS -haranguer/M -Harare/M -harass/RLDSG -Harbhajan/M -Harbin/M -harbinger/MS -Harbor -harbour/pRGSDM -harbourage -harbourmaster's -Harcourt -hard-boiled -hard-code/D -hard-core -hard-done-by -hard-earned -hard-headed/YP -hard-headedness/S -hard-hearted/PY -hard-heartedness/S -hard-hitting -hard-line/R -hard-nosed -hard-on -hard-paste -hard-pressed -hard-wire/SDG -hard-working -hard/Z2YPzT -hardback/SM -hardbitten -hardboard/M -hardbody/SD -hardbound -hardcopy/S -hardcore -Hardecanute/M -harden/rdS -hardened/U -hardening/M -Hardesty/M -hardihood/SM -Hardin -hardiness/S -Harding -hardish -hardness/S -hardpan -hardshell -hardship/MS -hardstanding/S -hardtop/SM -hardware/M -hardwood/MS -hardy/TP -hare/MDGS -harebell/SM -harebrained -Harel/M -harelip/MSD -harem/MS -Harewood/M -Hargreaves -haricot/S -Haringey -Harington -hark/GSD -harken/S -Harlan/M -Harlem -harlequin/SM -Harley-Davidson/M -Harley/MS -harlot/ySM -harlotry/SM -Harlow -harm/GSjpM6D -harmed/U -harmer/M -harmful/PU -harmfulness/S -harmless/PY -harmlessness/S -Harmon/M -harmonic/YS -harmonica/SM -harmonics/M -harmonious/IPY -harmoniously/E -harmoniousness/IS -harmonise/RnGSD -harmonised/U -harmonium/MS -harmonize/RDGnNS -harmony/ESM -Harmsworth/M -Harnack/M -harness's -harness/SUDG -harnesser/M -Harold/M -harp/RMDG3ZJS -Harpenden/M -harping/M -harpist -harpoon/RSDGM -harpsichord/M3S -harpsichordist -harpy/MS -harridan/SM -Harriet -Harrigan/M -Harriman/M -Harring/M -Harrington/M -Harris/M -Harrisburg -Harrison/M -Harrisonburg -Harrogate -harrogate/M -harrow/MGDS -harrower/M -harrumph/DGS -Harry's -harry/RDSG -harsh/PTY -harshen/d -harshness/S -hart/SM -Hartford -Harth/M -Hartlepool/M -Hartley -Hartman -Harvard -harvest/MRGDS -harvested/U -harvestman/M -harvestmen/M -Harvey/M -Harvie/M -Harwell -Harwich -Harwood/M -Harzan -has -Hasbro -hash's -hash/ADGS -hasher/M -hashing/M -hashish/MS -hashtag/S -Hasidism -Haskell/M -Haskins -Haslam/M -hasn't -hasp/GSMD -Hassidism -hassle/DMGS -hassler -hassock/MS -hast/zZ2D -haste/MS -hasten/Sd -hastener/M -hastiness/S -Hastings/M -hasty/TP -Haswell/M -hat/rGRSMdpD -hatband/S -hatbox/S -hatch/GyDSJ -hatchback/SM -hatcher/M -hatchery/SM -hatchet/dMS -hatching/M -hatchling/S -hatchway/MS -hate/jSM6 -hateful/P -hatefulness/S -hatemonger/S -Hatfield -Hathaway/M -hatred/SM -hatstands -Hattie -hauberk/SM -Haugen/M -haughtiness/S -haughty/YPT -haul/cDSG -haulage/SM -hauler's -hauler/c -haulers -haulier/MS -haunch/DGSM -haunt/kDRJGS -Hauptmann -Hauser -hauteur -Havana/M -Havant -have-not/MS -have/SG -Havelock/M -haven't -haven/SM -haver/S -Haverfordwest/M -Haverhill/M -havering -haversack/SM -havoc/SDMG -haw/GMDS -Hawaii/M -Hawaiian/SM -hawk/RMDGS -hawking/M -Hawkins/M -hawkish -hawkishness/S -hawklike -Hawkshead -Hawley -haws/R -hawthorn/SM -Hawthorne -Haxby/M -hay/GMSD -haycock/SM -Hayden/M -Haydn/M -Hayek/M -hayer -Hayes -hayfield/MS -Hayles/M -hayloft/MS -haymow/SM -Haynes -hayrick/SM -Hays/M -hayseed/MS -haystack/MS -haywain -Hayward -haywire -Haywood -Hayworth/M -hazard/DGSM -hazardous/YP -haze/DMRSGZ -hazel/SM -hazelnut/SM -haziness/S -Hazlitt -hazmat/S -hazy/PYT -Hašek/M -HBA/S -HBM -HD -HDD/S -HDMI -hdqrs -HDSLR/SM -HDTV -he'd -he'll -he/M -head-hunt/DGSR -head-on -head/DRzGm2pihMZJS -headache/SM -headage -headband/MS -headbang/SGD -headbanger/SM -headbay -headboard/SM -headborough -headbutt/SDG -headcam/S -headcase/S -headcount -headdress/SM -headedness/S -headgear/MS -headguard/S -headhunt/RG -headiness/S -heading/M -Headingley/M -headlamp/S -headland/SM -headless/P -headlight/MS -headline/RDSMG -headlock/MS -headlong -headman/M -headmaster/YMS -headmastership/M -headmen/M -headmistress/SM -headnote/S -headphone/SM -headpiece/SM -headquarter/Sd -headrail/S -headrest/MS -headroom/SM -heads/c -headsail/S -headscarf/M -headscarves -headset/SM -headship/SM -headshrinker/MS -headstall/MS -headstand/MS -headstock/M -headstone/MS -headstrong -headteacher/SM -headwall/S -headwater/S -headway/SM -headwind/SM -headword/SM -heady/T -heal/DGRS -healed/U -health/M6jzS2Z -healthcare -healthful/P -healthfulness/S -healthiness/SM -healthy/TUY -heap/MDSG -hear/GAaSc -heard/UacA -hearer's/c -hearer/SM -hearing/SM -hearken/dS -hears/SA -hearsay/SM -hearse's -hearse/A -Hearst -heart-rending/Y -heart-searching -heart-to-heart -heart-warming -heart/DhiMZz2Sp -heartache/SM -heartbeat/MS -heartbreak/SkGM -heartbreaker/S -heartbroken -heartburn/GSM -heartburning/M -hearted/P -heartedness/S -hearten/kEdS -heartfelt -hearth/MS -hearthrug -hearthstone/MS -heartiness/S -heartland/MS -heartless/PY -heartlessness/S -heartsick/P -heartstrings -heartthrob/SM -heartwood/M -heartworm -hearty/TSP -heat-resistant -heat/RJ7MGDSh -heated/cKUA -heath/RSyM -heathen/SM -heathendom/SM -heathenish/Y -heathenism/SM -Heathkit -heathland/S -Heathrow/M -heating/Kc -heatproof -heats/KcA -heatstroke/MS -heatwave -heave/RSGZD -heaven-sent -heaven/MSY -heavenly/PT -heavenward/S -heaves/M -Heavey/M -heavier-than-air -heaviness/S -heavy-duty -heavy-handed -heavy/TPSY -heavyhearted -heavyset -heavyweight/MS -hebe -Heber/M -hebetude -Hebraic -Hebraism -Hebrew/SM -Hebrides -Hecate/M -hecatomb/M -Hecht/M -heck -heckle/RGSD -Heckmann/M -hectarage -hectare/SM -hectic/Y -hectogram/SM -hectolitre/S -hectometre/SM -hector/dS -Hecuba/M -hedge/DRGSMk -hedgehog/SM -hedgehop/SDG -hedgerow/MS -hedonism/MS -hedonist/WMS -heed/6MGDjpS -heeded/U -heedful/P -heeding/U -heedless/YP -heedlessness/S -heehaw/DGS -heel/pRSGMD -heelflip/S -heeling/M -Hefner/M -heft/DzG2ZS -heftiness/S -hefty/TP -Hegel/M -Hegelian -hegemony/SWM -hegira/S -heh -Heidelberg -Heidfeld -Heidi/M -heifer/MS -heigh -heigh-ho -height/MS -heighten/Sd -Heilman/M -Heine/M -Heinecke/M -Heinlein/M -heinous/PY -heinousness/S -Heinrich/M -Heinz -heir/SFM -heiress/MS -heirloom/MS -Heisenberg -held -Helen/SM -Helena/M -Helene -heli-ski/GR -helical/Y -helices/M -helicon/M -heliconia/S -helicopter/dSM -Heligoland/M -heliocentric -heliocentrically -heliography/M -Heliopolis -Helios -heliosphere -heliotrope/MS -heliotropic -heliotropism -helipad/S -heliport/MS -helium/M -helix/M -hell-bent -hell-cat/MS -hell-fire/M -hell-hole/MS -hell-raiser -hell/MS -hellebore/SM -Hellenic -Hellenise/DGnS -Hellenism -Hellenist/SMW -Hellenize/DGS -Heller -hellfire -hellhole/S -hellish/YP -hellishness/S -Hellman/M -hello/MGS -helluva -Hellyer/M -helm/mSGMD -helmet/dMS -Helmholtz -Helmont/M -helmsmanship -Helmut -helot/S -helotage -helotism -helotry -help/RSjpD6JG -helpful/P -helpfully/U -helpfulness/U -helpfulnesses -helping/M -helpless/PY -helplessness/S -helpline/S -helpmate/MS -helpmeet's -Helsinki/M -helter -helter-skelter -helve/MS -Helvetian -hem/GRSMD -hemicellulose/S -Hemichordata -hemichordate/S -hemicycle/S -hemicylindrical -hemidemisemiquaver/S -hemihydrate -hemimetabolic -hemimetabolous -Hemingway -hemisphere/SMWwD -hemline/MS -hemlock/SM -hemp/SM -hempen -Hemphill/M -Hempriggs -hempseed -hemstitch/DSGM -hen/yMS -hence -henceforth -henceforward -henchman/M -henchmen/M -Henderson -Hendrick/M -Hendricks -Hendrickson -Hendrix -henge/M -Henley/M -henna/DMGS -Hennessey/M -henpeck/DGS -Henri/M -Henrietta -Henrik/M -henry/M -Henry/M -Henschel/M -Hensen/M -Henstridge/M -hentai -Henze/M -hep -heparin/MS -hepatic/S -hepatitides -hepatitis/M -hepatocellular -hepatocyte/S -hepatoma/S -hepatomata -hepatomegaly -hepatopancreas -hepcat/S -heptagon/MS -heptagonal -heptane/M -heptathlon/S -her/GS -Hera/M -Heraclitus/M -herald/WGSMDy -heralded/U -heraldry/SM -herb/MS -herbaceous -herbage/SM -herbal/3S -herbalism -herbalist -herbaria -herbarium -herbed -Herbert/M -herbicidal -herbicide/SM -herbivore/SM -herbivorous/Y -Herby -herby/T -Herculaneum -herculean -Hercules -herd/mRGSMD -here's -here/FI -hereabout/S -hereafter/S -hereat -hereby -hereditament/S -hereditarian/S -hereditarianism -hereditary/YP -heredity/SM -Hereford/M -Herefordshire/M -herein -hereinafter -hereof -heresy/SM -heretic/SM -heretical -hereto -heretofore -hereunder -hereunto -hereupon -herewith -Hergenröther/M -Heriot-Watt -heritability -heritable/I -heritage/MS -heritor/IM -Herman -Hermann/M -hermaphrodite/SMW -hermaphroditism -Hermaphroditus -hermeneutic/S -hermeneutical -hermeneutically -hermeneutics/M -Hermes -hermetic/YS -hermetical -hermit/SM -hermitage/SM -hermitian -Hermosa -Hernandez/M -Herne/M -hernia/nSM -hernial -herniate/GDS -hero/W1M -Herod/M -Herodotus -heroes -heroic/S -heroin/MS -heroine/MS -heroism/SM -heron/MS -herpes/M -herpesvirus/S -herpetic -herpetofauna/O -herpetology/S3M -Herr -Herrick -herring/SM -herringbone/SMGD -Herrington -Herschel -herself -Hersham/M -Hershel -Hershey/M -Hertfordshire/M -hertz/M -Hertzog/M -Herzegovina/M -hesitance/ZS -hesitancy/SM -hesitant/Y -hesitate/nNDkSG -hesitater/M -hesitating/UY -hesitation/M -Hesketh/M -Hesperus -Hess -Hesse/M -hessian -Hessian/S -Hester/M -Heswall/M -hetero/SM -heterocercal -heterochromatic -heterochromatin -heterocyclic -heterodox/Z -heterodoxy/SM -heterodyne -heteroflexible -heterogamous -heterogamy/M -heterogeneity/SM -heterogeneous/YP -heteromerous -heteronomous -heteronomy -heteronormative -heteronormativity -heteronym/W -heteronymous -heteropaternal -heterophilic -heterophobe/S -heterophobia -heterophobic -heteropteran/S -heteropterous -heterosexism -heterosexist -heterosexual/MYS -heterosexuality/SM -heterosocial -heterosociality -heterosporous -heterostructure -heterotroph -heterotrophic -heterotrophy -heterozygous -Hettie/M -Hetton-le-Hole -Heublein/M -heulandite -heuristic/SMY -Heuser/M -HEVC/M -hew/RGSD -Hewan/M -Hewett/M -Hewitt/M -Hewkin/M -Hewlett/M -hewn -Heworth -hex/DSG -hexachloride/M -hexadecimal/SY -hexafluoride/M -hexagon/oSM -hexagonal -hexagram/SM -hexameral -hexamerism -hexamerous -hexameter/SM -hexane -hexaploid -hexaploidy -hexastyle/S -hexavalent -hexer/M -heximal -hexokinase -hexose/S -hey -heyday/MS -Heylin/M -Heysham/M -Heywood -Hezbollah -Hezekiah -HF -HFC/S -Hg -hgt -HGV -hgwy -hi -Hi -hi-fi/S -hi-res -hi-tech -Hialeah -Hiatt/M -hiatus/SM -Hiawatha -Hibbard/M -hibernate/GSnDN -hibernation/M -hibernator/SM -Hibernia -Hibernian -hibiscus/MS -hiccough -hiccup/dSM -Hick -Hickey/S -Hickman/M -hickory/SM -hicks -hid/r -hidden/U -hide-and-seek -hide/GSJU -hideaway/MS -hidebound -hideous/PY -hideousness/S -hideout/MS -hidey -hiding/M -hie/GS -hieing -hierarchy/1WMSw -hieratic -hieroglyph/SW -hieroglyphic/S -hieroglyphical/Y -hieroglyphics/M -Higbee/M -Higgins/M -higgledy -higgledy-piggledy -high-born -high-cal -high-carbon -high-class -high-energy -high-falutin -high-faluting -high-flier/S -high-flown -high-flyer/S -high-flying -high-grade -high-handed/PY -high-handedness/S -high-hat -high-heeled -high-income -high-jump -high-level -high-minded/Y -high-mindedness -high-octane -high-pass -high-pitched -high-powered -high-pressure -high-profile -high-quality -high-ranking -high-res -high-resolution -high-rise -high-risk -high-security -high-sounding -high-speed -high-spirited -high-spiritedness -high-stepper -high-stepping -high-street -high-strung -high-tech -high/STPY -Higham/M -highbrow/MS -higher-level -highfalutin -Highfield -Highgate -highish -highland/RSM -highlandman -highlandmen -highlight/SGMDR -highness/S -highpoint -hight -highway/mMS -Higson/M -Higton -hijab/S -hijack/GRSDJ -hijackers' -Hikaru/M -hike/RSGD -hilarious/YP -hilariousness/S -hilarity/SM -Hilary -Hilberg/M -Hilbert/M -Hilda/M -Hildebrand/M -Hildegard/M -Hiligaynon/S -hill/2MGYS -Hillary -Hillbrow/M -Hillcrest -Hillenkoetter/M -Hilliard -hilliness/S -hillock/SM -Hillsboro -Hillsdale -hillside/MS -hillstream/S -hilltop/SM -hillwalker -hillwalking -hilly/PT -Hillyer -hilt/GMDS -Hilton -him -Himalayan -Himalayas -himself -Hinckley -hind/R -hindbrain -Hindemith -Hindenburg -hinder/d -hindered/U -hinderer/M -Hindi -hindlimb/S -hindmost -hindquarters -hindrance/MS -hindsight/SM -Hindu/MS -Hinduism -Hindustan/M -hindwing/S -Hines -hinge's -hinge/USGD -hinger -Hinkle -Hinkley/M -Hinsdale -hint/RSGMD -hinterland/MS -Hinton/M -hip/TZMDSG -hipbone/SM -hipness/S -hippie/M -hipping/M -hippo/MS -hippocampi -hippocampus -hippocras -Hippocrates/M -Hippocratic -hippodrome/SM -hippogriff/S -hippogryph/S -Hippolyta/M -Hippolyte/M -hippopotami -hippopotamus/MS -hippy/TMS -hipster/SM -hipsterish -hipsterism -hiragana -Hiram -Hirata/M -hire-purchase -hire/GADS -hireling/MS -hirer/MS -hiring/S -Hiroshi/M -Hiroshima -Hirsch -hirsute/P -hirsuteness/S -his/JDG -Hispanic/SM -hiss/SM -hisser/M -hissing/M -hist -histamine/MS -histaminic -histidine -histochemic -histochemical -histochemistry/M -histocompatibility -histogram/MS -histographer -histography -histologically -histology/W3MSw -histoplasmin -histoplasmosis -historian/SM -historical/P -historicism/M -historicist/M -historicity/MS -historify/SGD -historiograph -historiographer/MS -historiographic -historiographically -historiography/wSM -history/SK1MW -histrionic/SY -histrionics/M -hit-and-miss -hit-and-run -hit/pRMSG -Hitachi -hitch-hike/DRGS -hitch/RDSG -Hitchcock/M -hitched/U -hitches/U -Hitchman/M -hither -hitherto -hitherto-unseen -Hitler/MS -Hitlerian -Hitlerism -Hitlerite/S -Hitt/M -hittable -hitting/a -Hittite/SM -HIV -HIV-negative -HIV-positive -hive/MDGS -Hix/M -hiya -hmm -HMS -HMSO -ho's/F -ho-hum -ho/MRYD -hoar/MZ2 -hoard/MSRDJG -hoarding/M -hoarfrost/SM -hoariness/S -hoarse/PYT -hoarseness/S -hoary/TP -hoatzin/S -hoax/DRGSM -hob/SZGMD -Hobart/M -Hobbes -hobbit/SM -hobble/RGDS -Hobbs -hobby-horse/SM -hobby/3MS -Hoberg/M -Hoberman/M -hobgoblin/SM -hobnail/DMS -hobnob/DGS -Hoboken -hock/MS -hockey/SM -hocus -hocus-pocus -hod/SM -hodge/SM -hodgepodge/MS -Hodgkin/M -hoe/GMS -hoecake/MS -hoes/F -Hoff/M -hoffens -Hoffman -hoftens -hog/GSDM -hogan/MS -Hogarth -hogback/SM -Hogg -Hoggard -hogger -hoggish/Y -hognut -hogshead/MS -Hogwarts -hogwash/MS -hogweed/S -Hohenzollern -Hohl/M -Hohlbein/M -hoick/SGD -hoist/SDG -hoister/M -hoity -hoity-toity -hokey -hokey-cokey -Hokkaido -Holbeck -Holbrook -Holcomb/M -hold-up/MS -hold/RSGJ7 -holdall/SM -holdback/S -Holden -holding/M -holdout/SM -holdover/MS -Holdsworth/M -hole/GDSM -holeable -holey -holiday/GSMD -holidayer -holidaymaker/S -holier-than-thou -holiness/S -holism -holist/S -holistic/Y -Holland/M -hollandaise -Hollander/S -holler/Sd -Hollerith -Holley/M -Hollingham -Hollister -hollow-eyed -hollow/PDTGSY -Holloway/M -hollowness/S -hollowware/M -holly/MS -hollyhock/SM -Hollywood/M -Holm/M -Holman/M -Holmes/M -holmium/M -holocaust/SM -Holocene -holodeck -holoenzyme/S -Holofernes/M -hologram/SM -holograph/DSZGWM -holographically -holography/SM -holometabolous -holotype/S -Holst -Holstein -holster/MdS -Holt -Holtzman/M -holy/PST -Holyhead/M -Holyoke -Holyrood/M -Holyroodhouse -holystone/SMGD -Holzman -homage/SM -homager/M -homburg/MS -home-based -home-brew/SDM -home-builder/S -home-building -home-cooked -home-grown -home-loving -home-made -home-maker/SM -home-making/M -home-owner/MS -home-ownership -home-owning -home-schooling -home-shopper -home-shopping -home/RpYGzDMS -homebody/SM -homebuilder/S -homebuilding -homebuilt -homebuyer/S -homecoming/SM -homeland/MS -homeless/P -homelessness/S -homelike -homeliness/S -homely/TP -homeobox -homeopath/S -homeopathic/Y -homeopathist -homeopathy -homeowner/S -homepage/M -Homeric -Homerton -homesick/P -homesickness/S -homespun/S -homestead/GMDSR -homestretch/MS -Homet/M -homeward-bound -homeward/S -homework/GRM -homewrecker/S -homey/P -homeyness/S -homicidal -homicide/SoM -homier -homiest -homiletic/S -homily/SM -hominess's -homing/M -hominid/SM -hominoid/S -homo/SM -homocentric -homocercal -homocysteine -homoeobox -homoeopath/WSZ -homoeopathy/SM -homoeostases -homoeostasis/M -homoeostatic -homoeotherm/ZW -homoeothermal -homoerotic -homogamy/M -homogenate/SM -homogeneity/ISM -homogeneous/Y -homogeneousness -homogenisation -homogenise/RGDS -homogenize/DRGnSN -homograft/S -homograph/SM -homologise/SGD -homologize/SGD -homologous -homologue/MS -homology/SMw -homomorph/WZM1 -homomorphism/SM -homomorphous -homonym/MS -homonymic -homonymous -homonymy -homophile/S -homophobe/S -homophobia/S -homophobic -homophone/MSZ -homophonic/Y -homophonous -homopolar -homopolymers -homorganic -homosex -homosexual/SMY -homosexualist/S -homosexuality/SM -homosocial -homosociality -homotopy -homozygous/Y -homunculus -Hon. -Honda/M -Hondo -Honduras/M -hone/STGDM -Honecker -honer/S -honest/EZY -honester -honestest -honesty/SME -honey/SMD -honeybee/SM -honeycomb/GDSM -honeycreeper/S -honeydew/SM -honeyeater/S -honeyguide/S -honeylocust -honeymoon/RDGMS -honeypot/S -honeysucker/S -honeysuckle/MS -honeytrap -Honeywell -honeywort -Hong/M -Honiara/M -honk/RSMDG -Honolulu -honorarium/MS -honorary/SY -honorific -honour/E7MRlDGS -honourable/MS -honourableness -honourably/S -Honshu/M -hoo-ha -hood/DGMiS -hooded/P -hoodie/S -hoodlum/SM -hoodoo/MGDS -hoodwink/SGD -hoodwinker/M -hoody/S -hooey/MS -hoof/MDGS -hoofer/MS -hoofmark/S -Hooft/M -hook-nosed -hook/RGSMD -hookah/SM -Hooke -hooked/U -hooks/U -hookup/MS -hookworm/SM -hooligan/SM -hooliganism/SM -hoop/GMDS -hooper/M -hoopla/MS -hooray/S -Hoosier -hoot/RMDGS -hootch's -Hoover's -hoover/d -Hoovers -hooves/M -hop/RDSGM -hope/6MjSGDp -hopeful/SP -hopefulness/S -hopeless/PY -hopelessness/S -hoper/M -Hopkins/M -Hopkinsville/M -hoppled -hopples -hopscotch/M -Hopson/M -Horace/M -Horatian -Horatio -Horatius -horde/MS -Horgan -horizon/SM -horizontal/SY -hormonal -hormone/oMS -Hormuz -horn/DGip2ZSM -hornbeam/MS -hornbill/S -hornblende/MS -Hornblower/M -hornbook/S -Horne -horned/P -horner -hornet/MS -hornlike -hornpipe/SM -horntail/S -Hornung -horny/PT -horology/W3wSM -horoscope/SM -horoscopic -horoscopical -horoscopy -Horowitz/M -horrendous/Y -horrible/PY -horribleness/S -horrid/PY -horrify/1SWGDk -horror-stricken -horror-struck -horror/SM -horse-breaker -horse-cloth -horse-doctor -horse-drawn -horse-race/SMG -horse-trading -horse/YmG5DMSp -horseback -horsebean/S -horsebox/S -horsedom -horseflesh/M -horsefly/SM -horsehair/SM -horselike -horsemanship/SM -horseplay -horsepower -horseradish/SM -horseshed -horseshoe/GDSM -horsetail/SM -horsewhip/GDSM -horsey -Horsham -horsier -horsiest -horsing/M -Horst -hortatory -horticultural -horticulturalist/S -horticulture/3SM -Horton -Horus/M -Horwich -hos/Sd -hosanna/GSD -hosannah -hose/M -Hosea -hosepipe -hosier/SMZ -hosiery/SM -hosp -hospice/MS -hospitable/YI -hospitably/I -hospital/Qq8SM- -hospitality's/I -hospitality/SM -host/YSMGD -hostage/MS -hostel/DRMSyG -hostelry/SM -hostess/GMDS -hostile/Y -hostility/MS -hostler/SM -hostname/S -hot-air -hot-blooded -hot-swap/DGB -hot-tempered -hot/PDSYGT -hotbed/MS -hotbox/SM -hotcake/S -hotchpotch/M -hotel/mSM -hotelier/MS -hotfoot/DSG -Hotham/M -hothead/SDihM -hotheaded/P -hotheadedness/S -hothouse/MSGD -hotkey/S -hotline/S -hotlink/SG -hotlist -hotness/S -hotplate/MS -hotplug/SDG -hotpot/MS -hotrod -hotshot/S -hotspot/S -Hottentot/M -hotters -hottie/S -hotty -Houdini -hough/M -Houghton-le-Spring/M -Houghton/M -hound/GSMD -hounder/M -hounding/M -Hounslow -hour/MYS -hourglass/SM -houri/SM -hourly/S -house's/e -house-hunting -house-husband -house-mother/SM -house-proud -house-to-house -house-train/D -house-warming/SM -house/M6SJmDG -houseboat/MS -housebound -houseboy/MS -housebreak/SRJG -housebreaking/M -housebroke -housebroken -housebuilder/S -housebuilding -houseclean/JGDS -housecleaning/M -housecoat/SM -housed/A -housefather -housefly/SM -houseful/SM -household/RSM -housekeep/GR -housemaid/SM -housemaster -housemastering -housemasterly -housemastership -housemate/S -housemating -housemistress -housemonger -housemother/SM -housemotherly -houseowner/SM -housepainter/S -houseparent/SM -houseplace -houseplant/S -houser -houseroom -houses/eA -houseshare -housesharer -housesmith -housestead -housetop/SM -housewares -housewife/MY -housewifely/P -housewifery -housewifeship -housewifish -housewives -housework/RSM -housing's -housing/A -Houston -hove -Hove/M -hovel/SM -hover/dS -hovercraft/M -hoverer/M -how'd -how're -how've -how/MS -Howard -howbeit -howdah/SM -Howden/M -Howe/S -Howell/M -however -Howitt/M -howitzer/SM -howl/DSRGM -Howley/M -howsoever -Howth/M -Hoxha/M -Hoxsey/M -hoy/M -hoyden/dMS -hoydenish -Hoyle -Hoyt/M -HP -HPV -HQ -hr. -HRH -hrs. -HRT/M -html -HTML/M -http -https -Huang -hub-cap/SM -hub/MZS -Hubbard/M -Hubble/M -hubbub/M -hubby/MS -hubcaps -Huber/M -Hubert -hubris/MS -Huck -huckleberry/MS -huckster/MSd -HUD -Huddersfield -huddle/DSMG -huddler/M -Hudley -Hudson -hue/SMDp -Huey -huff/GMZDSz2 -huffiness/S -Huffington/M -Huffman/M -huffy/TP -hug/SDG -huge/PTY -hugeness/S -Huggins -Hugh -Hughes/M -Hughie -Hugo -Huguenot/SM -huh/S -hula/MDGS -hulk/GMDS -Hull/M -hull/SRGMD -hullabaloo/MS -hulling/M -hullo/MSGD -hum/RSDG -human/MsQ8Y3-q9PS -humane/P3Y -humanely/I -humaneness/I -humanenesses -humaner -humanise/CRDSnG -humanism/MS -humanist/W -humanitarian/S -humanitarianism/SM -humanity/SMI -humanize/CRDnSNG -humankind/M -humanly/I -humanness/S -humanoid/S -Humber -Humberside -humble/PTGSDY -humbleness/S -Humboldt -humbug/GDSM -humdinger/SM -humdrum -Hume -humectant/S -humeral/S -humeri -humerus/M -humid/Y -humidification/CM -humidify/CnGNRDS -humidistat/M -humidity/SM -humidor/MS -humiliate/GSkNDn -humiliation/M -humility/SM -humite -hummable -Hummel/M -hummingbird/SM -hummock/DSMZG -hummus/S -humongous -humoral -humoresque/S -humorist/WSM -humorous/PY -humorousness/S -humour/DhMpSG -humourer/S -humourless/PY -humourlessness/S -hump/GSMD -humpback/DSM -humph/S -Humphrey/M -Humphreys/M -Humpty -humpy/T -humus/SM -Hun/S -hunch/GSDM -hunchback/SMD -hundred/HMS -hundredweight/MS -hung/Ac -Hungarian/S -Hungary/M -hunger/dMS -hungover -hungriness/S -hungry/YPT -hunk/MZS -hunker/Sd -hunky/T -Hunspell/M -hunt/DmGRJS -hunter-gatherer/S -hunting/M -Huntingdon/M -Huntingdonshire/M -Huntington/M -Huntley/M -huntress/SM -Huntsville -hurdle/RMGSD -hurl/DYSGR -Hurley/M -hurling/M -hurly-burly -Huron -hurrah/DG -hurray/S -hurricane/SM -hurried/UY -hurriedness/M -hurrier -hurry/iSGhD -Hursley/M -Hurst -hurt/kjG6S -Hurtak/M -hurter/M -hurtful/P -hurtfulness/S -hurtle/DGS -husband-to-be -husband/DYyGSM -husbander/M -husbandry/MS -husbands-to-be -hush/DGS -husk/RzZSMD2G -huskiness/S -husking/M -husky/TSP -Hussain/M -hussar/SM -Hussein/M -hussy/SM -hustings/M -hustle/RGSD -Huston/M -hut/MDGS -hutch/GSDM -Hutchins -Hutchinson -Hutchison -Hutt/M -Hutterite/S -Hutu -Huxley -Huygens -hwyl -hyacinth/MS -hyaena/SM -hyaline -hyaluronic -Hyatt -hybrid/q-MQ8S -hybridism/MS -hybridity -Hyde/M -Hyderabad -hydra/nSM -hydralazine -hydrangea/MS -hydrant/MS -hydrate/MGDS -hydrated/AC -hydrates/CA -hydrating/CA -hydration/CMS -hydraulic/YS -hydrazine/M -hydride/SM -hydro/MS -hydrobiology -hydrocarbon/SM -hydrocephali -hydrocephalic -hydrocephalus/MS -hydrocephaly -hydrochemistry -hydrochloric -hydrochloride/M -hydrochlorothiazide/S -hydrocodone/S -hydrocolloid/S -hydrocortisone -hydroculture -hydrodynamic/S -hydrodynamical -hydrodynamics/M -hydroelectric/Y -hydroelectricity/SM -hydrofluoric -hydrofluorocarbon/S -hydrofoil/MS -hydroforming -hydrofracturing -hydrogel/S -hydrogen/nMN -hydrogenate/SMGD -hydrogenated/C -hydrogenates/C -hydrogenating/C -hydrogenation/CM -hydrogenous -hydrographer -hydrographic -hydrographical -hydrographically -hydrography -hydroid/S -hydrology/M31Sw -hydrolyse/DSG -hydrolysis/M -hydromagnetic/S -hydromassage -hydromechanics/M -hydromedusa -hydromedusae -hydrometer/SM -hydrometric -hydrometry/MS -hydronium -hydroperoxide -hydrophilic -hydrophilous -hydrophily -hydrophobia/SM -hydrophobic -hydrophobicity -hydrophone/MS -hydroplane/DMSG -hydroponic/SY -hydroponics/M -hydrosphere/MS -hydrostatic/S -hydrostatics/M -hydrotherapy/MS -hydrothermal/Y -hydrous -hydroxide/SM -hydroxonium -hydroxyapatite -hydroxyl/NSM -hydroxylate -hydroxyproline -hydroxyzine/M -hyena/SM -hygiene/M13WS -hygienic/U -hygienics/M -hygrometer/SM -hygroscope/S -hygroscopic -Hyman -hymen/MS -hymeneal/S -Hymenoptera -hymenoptera -hymenopteran/S -hymenopterous -hymn-book/SM -hymn/WSGMD -hymnal/MS -hymnary/S -hymnody -hymnographer -hymnography -hymnology/3 -hyoid -hyoscyamine -hypaxial -hype/DSMG -hyper/S -hyperacidity -hyperactive/SY -hyperactivity/SM -hyperaemia/M -hyperaemic -hyperaesthesia -hyperaesthetic -hyperalgesia -hyperalgesic -hyperbola/MS -hyperbole/M1SW -hyperboloid/MS -hyperboloidal -hypercalcaemia -hypercellular -hypercellularity -hyperchromasia -hypercompetitive -hypercorrect -hypercorrection -hypercritical/Y -hypercube/SM -hyperextend/SGDN -hyperfine -hypergamous/Y -hypergamy/M -hyperglycaemia -hyperglycaemic -hypergravity -hyperinflation -hyperinstrument/S -Hyperion -hyperkeratosis -hyperkinesis -hyperkinetic -hyperlink/SDG -hyperlipaemia -hyperlipaemic -hyperlipidaemia -hyperlipidaemic -hyperlocal -hyperloop/S -hypermarket/MS -hypermedia -hypermetropia -hypermnesia -hypermutable -hypermutation -hyperon/S -hyperparasite/SW -hyperparasitism -hyperparathyroid -hyperparathyroidism -hyperphagia -hyperpigmentation -hyperplane/MS -hyperplasia/M -hyperprolactinaemia -hyperreactivity -hyperreal -hyperrealism -hyperrealist -hyperrealistic -hyperreality -hyperresponsiveness -hypersaline -hypersensitive/P -hypersensitiveness/S -hypersensitivity/MS -hypersexuality -hypersomnia -hypersomnolence -hypersonic -hyperspace/M -hypersphere/M -hypertension/SM -hypertensive/S -hypertext/MS -hyperthermia -hyperthermic -hyperthyroid -hyperthyroidism/SM -hypertrophy/WDGSM -hyperventilate/GSnDN -hyperventilation/M -hypha -hyphae -hyphal -hyphen/MdnSN -hyphenate/SGD -hyphenated/U -hyphenation/M -hyphenator/S -hypnoses -hypnosis/M -hypnotherapist/S -hypnotherapy/MS -hypnotic/SY -hypnotise/SGD -hypnotism/MS -hypnotist/MS -hypnotize/DSG -hypo/MDGS -hypoactive -hypoallergenic -hypocaust -hypocellularity -hypochondria/SM -hypochondriac/MS -hypochondriacal -hypoconid/S -hypocotyl/S -hypocrisy/SM -hypocrite/1wMS -hypocycloid/O -hypoderm -hypoderma -hypodermic/S -hypodermis -hypogastria -hypogastrium -hypoglossal -hypoglycaemia/SM -hypoglycaemic/S -hypogonadal -hypogonadic/S -hypogonadism -hypogonadotropic -hypokalaemia -hypokalaemic -hypomagnesaemia -hypomagnesaemic -hypophyseal -hypoplasia -hypostatic -hypostome -hypostyle -hypotactic -hypotaxis -hypotension -hypotensive -hypotenuse/SM -hypothalami -hypothalamic/Y -hypothalamus/MW -hypothermal -hypothermia/MS -hypothermic -hypotheses -hypothesis/d8rM9QS -hypothetical/Y -hypothyroid -hypothyroidism/SM -hypotropia -hypoxaemia -hypoxia/M -hypoxic -hyrax -Hyrum/M -hyssop/SM -hysterectomy/SM -hysteresis/M -hysteria/MS -hysteric/MSY -hysterical -Hyundai/M -Hywel -Hz -Héloise/M -Hügelschäfer -I -I'd -I'll -I'm -i's -I've -I-beam/S -I-chun -i-mode -i.e. -i18n -i3 -i5 -i7 -IA -IAEA -Iain -iamb/SMW -iambi -iambic/S -Iamblichus/M -iambus/SM -Ian/M -iatrogenic -Iban -IBAN/S -Iberia/M -Iberian/SM -ibex/SM -ibid -ibidem -ibis/SM -Ibiza -Ibizan -IBM/M -Ibrahim -Ibsen/M -ibuprofen/S -IC -ICANN/M -Icarus -ICC/M -ice-cold -ice-skate/G -ice/mSMJGD -iceberg/SM -iceboat/MS -icebound -icebox/SM -icebreaker/SM -icecap/MS -icefall/S -icehouse -Iceland/MRW -Iceni -icepack -icepick/S -ichneumon/SM -ichnography/S -ichthyolite/S -ichthyological -ichthyology/M3S -ichthyophagous -ichthyophagy -ichthyornis -ichthyosaur/S -ichthyosaurus -icicle/SM -iciness/S -icing/M -icky/T -ICM -icon/SWM -iconise/SGD -iconize/SGD -iconoclasm/MS -iconoclast/MWS -iconographer/S -iconographical -iconographically -iconography/WMS -iconolatry -iconological -iconology -icosahedra -icosahedral -icosahedron/M -ictorianises -ictus/SM -ICU -icy/TPY -ID'd -ID'ing -ID's -id/MY -ID/S -Ida/M -Idaho -IDE -idea/MoS -ideal/SqQ-8s93M -idealism/SM -idealist/W1 -idealization/M -idealogical -ideate/SGD -ideation/M -idem -idempotence -idempotency -idempotent/S -identical/PY -identifiable/U -identification/Ma -identified/Ua -identifies/a -identify/BRnDlNSG -identifying/a -identity/MS -ideogram/SM -ideograph/WMS -ideologue/S -ideology/M31wS -ides -idiocy/SM -idiolect/MS -idiom/WSM1 -idiomatic/U -idiomaticness -idiopathic -idiosyncrasy/SM -idiosyncratic/Y -idiot/1SMW -idiotype/S -idle/DRTPSG -idleness/S -Ido -idocrase -idol-worshipping -idol/QqSs-89M -idolater/SM -idolator/S -idolatress/S -idolatrous -idolatry/MS -ids -idyll/SMW1 -idyllist -IEC -IEE -IEEE -Iestyn -if/FS -iffiness/S -iffy/T -ifs -igloo/MS -Ignatius -Ignatz/M -igneous -ignitable -ignite/DASG -igniter/M -ignition/MS -ignoble/YP -ignominious/Y -ignominy/SM -ignorable -ignoramus/SM -ignorance/SM -ignorant/SY -ignorantness's -ignore/GDS -ignorer/M -Igor/M -iguana/SM -iguanodon/S -ii -iii -IIRC -Ike/M -Ikea/M -Ilachinski -ilang-ilang -ilea -ileitides -ileitis/M -ileostomy/S -ileum/M -ilia -iliac -Iliad -ilium/M -ilk -Ilkley/M -ill-advised -ill-assorted -ill-behaved -ill-bred -ill-conceived -ill-considered -ill-defined -ill-disposed -ill-equipped -ill-fated -ill-favoured -ill-fitting -ill-founded -ill-gotten -ill-humoured -ill-informed -ill-judged -ill-mannered -ill-matched -ill-omened -ill-prepared -ill-proportioned -ill-shaped -ill-smelling -ill-starred -ill-suited -ill-tempered -ill-treat/D -ill-treatment -ill/YP -illegal -illegitimate/S -illicit/P -illicitness/S -illimitable/P -Illinois -illiquid -illiterate/P -illness/S -illogical -illume/GD -illuminable -illuminance/S -illuminant -illuminate/DSGk -illuminated/U -illuminati -Illuminati -illumination/M -illumine/DSNVGn -illuminism -illuminist/S -illusion's -illusion/ES -illusionary -illusionist/MS -illusive/PY -illusory/P -illustrate/NnGDvSV -illustrated/U -illustration/M -illustrational -illustrator/MS -illustrious/YP -illustriousness/S -ilmenite -Ilona/M -iMac -image-maker/S -image/SMyDG -Imagen/M -imager/S -imagery/SM -imagesetter/S -imaginable/U -imaginableness -imaginably/U -imaginal -imaginary/PS -imagination/M -imaginative/UY -imaginativeness's -imaginativeness/U -imagine/lnSVuNJDvG -imagined/U -imaginer/M -imago/MS -imam/MS -IMAP -imbecile/MWS -imbecility/SM -imbeddedness -imbibe/RSDG -imbibition -imbricate/SGD -imbrication/SM -imbroglio/MS -imbruing -imbue/SGD -IMF/M -IMHO -imitable/I -imitate/DVGvNunS -imitation/M -imitative/P -imitativeness/S -imitator/SM -immaculate/YP -immaculateness/S -immanence/ZS -immanency/SM -immanent/Y -Immanuel -immaterial -immaterialism -immaterialist/M -immature/P -immeasurable/P -immediacy/SM -immediateness/S -immemorial -immense/YPT -immensity/SM -immerse/SNbDGX -immerser -immersion/M -immersive -imminence/SM -imminent/PY -immodest -immolate/DGnSN -immolation/M -immoral -immoralism -immoralist -immortal/Q8 -immovability/MS -immoveable -immune/q-Q8 -immunity/SM -immunoassay/MS -immunoblotting -immunocompetence -immunocompetent -immunocompromised -immunodeficiency/S -immunodeficient -immunofluorescence -immunofluorescent -immunogenetic/S -immunogenetical -immunoglobulin/S -immunohistochemistry -immunolabeling -immunolabelling -immunology/3w1WMS -immunoperoxidase -immunoreactive -immunosorbent -immunosuppressant/S -immunosuppressed -immunosuppression -immunosuppressive/S -immunotherapy -immunotoxic -immure/GDS -immutable/P -IMO -Imola/M -imp/DSGM -impact/VDG -impactful -impaction/SM -impactor/SM -impair/LG -impaired/U -impairer/M -impala/M -impale/LG -impaler/M -impart/GN -impartation/M -impassable/P -impasse/MulXbN -impassibility/SM -impassible/Y -impassion/DG -impassioned/U -impassive/P -impassivity/M -impasto/MS -impatiens/M -impatient -impeach/LR7 -impeachable/U -impeached/U -impeccability/SM -impeccable/Y -impecunious/PY -impecuniousness/S -imped/d -impedance/MS -impede/S -impeded/U -impeder/M -impedimenta -impel/NRSGnD -impend/GSD -impenetrable/PY -imperative/PYS -imperator/O -imperatrices -imperatrix -imperceptibility/MS -imperceptive -imperfect/gVP -imperial/3SY -imperialism/SM -imperialist/W1 -imperil/LGD -imperious/YP -imperiousness/S -imperishable/PY -imperium -impermanence -impermanent -impermeable/Y -impermissible -impersonal -impersonalisation -impersonalise/SGD -impersonality -impersonalize/SGDN -impersonate/SGDNn -impersonation/M -impersonator/MS -impertinence/M -imperturbability/MS -imperturbable/Y -impervious/PY -impetigo/MS -impetuosity/SM -impetuous/PY -impetuousity -impetuousness/S -impetus/SM -Imphal -imping/G -impinge/LS -impinged -impish/PY -impishness/S -implacability/MS -implacable/YP -implant/N7n -implanter -implausibility/M -implement's -implement/ADGSN -implementability -implementable/U -implementation/SM -implemented/U -implementer/MS -implicant/MS -implicate/SDG -implicit/YP -implicitness/S -implode/SNDGX -implore/SkDG -implosion/M -imply/VuGNvnh -impolitic/P -imponderability -imponderable/SPY -import/ARGSD -importable -importance/SM -important/Y -importation/SM -importunate/PSY -importune/GDRS -importunity/MS -imposable -impose/ASDG -imposing/Y -imposition -impossible/P -impost/G -impostor/SM -impotence/MSZ -impoundments -impoverish/GLSD -impoverisher/M -impracticable/P -imprecate/GNDSn -imprecation/M -impregnability/MS -impregnable/PY -impregnate/DBSGnN -impregnation/M -impresario/MS -impress/XVLbNvu -impressed/U -impresser -impressibility/SM -impression/MB3 -impressionability/SM -impressionable/P -impressionism/MS -impressionist/W -impressive/U -impressiveness/MS -imprest/SM -imprimatur/MS -imprint/M -imprison/L -improbable/P -impromptu/S -improvable -improve/qQ9Ls8 -improved/U -improver/M -improvisation/oM -improvisational -improvisatory -impudence/MS -impudent/Y -impugn/RBGSLD -impulse/Vuv -impulsion/M -impulsive/P -impulsiveness/S -impulsivity -impunity/SM -impure/P -imputable -imputation/M -impute/GDNnS -in-between -in-car -in-depth -in-flight -in-house -in-joke/S -in-law/S -in-line -in-phase -in-service -in-store -in-tray/S -in/ASF -inaccurate -inactive -inadaptive -inadmissible -inadvertence/SM -inadvertent/Y -inalienability/SM -inalienable/Y -inalterableness -inamorata/SM -inane/TY -inaneness -inanimate -inanimation -inanity/MS -inappeasable -inapplicable -inappropriacy -inappropriate/P -inapt/P -inarticulate -inasmuch -inaugural/S -inaugurate/SDGNn -inauguration/M -inauspiciousness -inauthentic -inboard -inborn -inbound -inbox/S -inbreathe/DG -inbred -inbreed/SGJ -inbreeding/M -inbuilt -Inc. -Inca/S -incalculable/PY -incandesce/SGD -incandescence/SM -incandescent/SY -incant/NnG -incantation/M -incantatory -incapacitate/SNDG -incapacitation/M -incarcerate/DNnSG -incarceration/M -incarnadine/DSG -incarnate/DGANSn -incarnation/AM -incendiary/S -incense/GMDS -incentive/ESM -incentivise/D -incentivize/D -incept/DVSGv -inception/MS -inceptor/M -incessant/Y -incest/SM -incestuous/PY -incestuousness/S -inch/SMGD -inchoate/GDS -Inchon -inchworm/MS -incidence/MFS -incident's -incident/Fo -incidental/F -incidentals -incidently -incidents -incinerate/SnNDG -incineration/M -incinerator/SM -incipience/MSZ -incipiency/M -incipient/Y -incipit/S -incircle -incise/XVGvDNSu -incision/M -incisive/P -incisiveness/S -incisor/MS -incite/LRX -inclination/EM -incline/EDNSnG -incliner/M -inclining/M -include/SGXNvVDu -inclusion/M -inclusive/P -inclusiveness/S -incognito/S -incoherency/M -income/M -incommensurability -incommensurables -incommensurably -incommode/GD -incommunicado -incomparable -incompetent/SM -incompletion -incomputable -inconceivability/SM -inconceivable/P -incondensable -incongruence -incongruousness/S -inconsequentiality/S -inconsequentialness -inconsiderable/P -inconsiderate/N -inconsolable/PY -incontestability/MS -incontestable/Y -incontinent -incontrovertible/Y -inconvenience/DG -inconvertible -incorporable -incorporate/DANGS -incorporated/EU -incorrect/7 -incorrigibility/SM -incorrigible/PSY -incorruptible/SY -increasable -increase/Jk -increaser/M -incredible/P -incredulous/c -increment/NMSDGo -incremental -incrementalism -incrementalist/S -incriminate/SDNnyG -incrimination/M -incrustation/MS -incubate/DNSGVn -incubation/M -incubator/SM -incubatory -incubi -incubus/M -incudes -inculcate/SDGnN -inculcation/M -inculpate/DGS -incumbency/MS -incumbent/S -incunabula -incunabulum -incur/GS7lD -incurable/S -incurious -incurs/XN -incursion/M -incurvate/D -incurvation/S -incus -Ind. -indebted/P -indebtedness/S -indecenter -indeed -indefatigable/PY -indefeasible/Y -indefinable/PS -indefinite/SP -indehiscence -indehiscent -indelible/Y -indemnification/M -indemnifier/S -indemnify/NDnSG -indemnity/MS -indent/Nn -indentation/M -indented/U -indenter/M -indention/SM -indenture/DG -Independent's -independent/S -indescribable/YPS -indestructible/YP -indeterminable/Y -indeterminacy/SM -indeterminism -indeterministic -index-linked -index/RD7GnM -India/M -Indian/SM -Indiana/M -Indianapolis -Indic -indican -indicant/SM -indicate/NVnSGvD -indication/M -indicative/S -indicator/MS -indices/M -indict/LSD7G -indicter/M -indie/S -indigence/SM -indigenous/YP -indigent/YS -indigestibility -indigestibly -indigestion -indignant/Y -indignation/SM -indigo/SM -Indira -indirect/GP -indiscipline -indiscrete -indiscriminate/PY -indispensability/MS -indispensable/PSY -indisputable/P -indissoluble/YP -indistinct/P -indistinguishable/P -indite/SGD -indium/M -individual/sY38Q-9MqS -individualise/k -individualism/MS -individualist/1W -individuality/MS -individualize/k -individuate/GnDSN -individuation/M -indivisible/SPY -Indo-Aryan -Indo-China -Indo-Chinese -Indo-European -Indo-Germanic -Indo-Iranian -Indo-Malayan -Indo-Malaysian -Indo-Pacific -Indochina -indochinite -indoctrinate/NnGSD -indoctrination/M -indoctrinator/SM -indolence/SM -indolent/Y -indomitable/PY -Indonesia/M -Indonesian/S -indoor -indubitable/YP -induce/nRuDLGVSNbv -inductance/SM -inductee/MS -induction/M -inductive/P -inductivism -inductivist/SM -inductor/MS -indulge/cGDS -indulgence/cMS -indulgent/c -indulgently -indulger/M -industrial/8Q3-qS -industrialised/U -industrialism/SM -industrialist -industrious/PY -industriousness/S -industry/oMS -indwell/G -Indy/S -inebriate/NnGDS -inebriation/M -inedible -ineducable -ineffability/MS -ineffable/PY -inelastic/Y -ineluctable/Y -inept/PY -ineptitude/MS -ineptness/S -inequitable -inequivalent -inerrant -inert/PY -inertia/oMS -inertial -inertness/S -inescapable/Y -inessential -inestimable/Y -inevitability/MS -inevitable/YP -inexact/P -inexhaustibility -inexhaustible/YP -inexorability/M -inexorable/YP -inexpedience/M -inexpedient -inexpense -inexplicable/PY -inexplicit -inexplicitness -inexpressibility/M -inexpressible/SP -inextricable/Y -infallible -infamous -infamy/SM -infancy/M -infant/SM -infanticide/SM -infantile -infantilisation -infantilise/SGD -infantilism -infantility/S -infantilize/SGDN -infantry/mMS -infarct/SM -infarction/SM -infatuate/DSGnN -infatuation/M -infauna -infaunal -infeasible -infect/EDGAS -infected/U -infecter -infection/EMSA -infectious/YP -infectiousness/S -infective -infectivity -infelicitous -infer/DS7G -inference/GSM -inferencer -inferential/Y -inferior/MYS -inferiority/SM -infernal/Y -inferno/MS -infertile -infest/nSDGNR -infestation/M -infidel/MS -infighting/M -infill/GM -infiltrate/V -infiltrator/MS -infinite/VZ -infinitesimal/YS -infinitival -infinitive/MS -infinitude/SM -infinitum -infinity/MS -infirm -infirmarer -infirmary/SM -infirmity/SM -infix/MDG -inflame/XN -inflammation/M -inflammatory -inflatable/SM -inflate/DSGNn -inflated/c -inflater/M -inflation/EMyS -inflect/GxSVD -inflection/SM -inflexed -inflexion/SM -inflict/DGS -inflicter/M -infliction/MS -infliximab -inflow/GM -influence/RDGMS -influenced/U -influential/Y -influenza/MS -influx -info/S -infographic/S -infolded -infomania -infomaniac/S -infomediary/S -infonaut/S -inform/aNGDS -informal -informatics -information/E -informational/Y -informative/UY -informativeness/S -informatory -informed/U -informer/M -infotainment/MS -infotech -infowar -infra -infra-red/M -infraclass/S -infract/SGD -infraction -infractor/S -infraorder/S -infrared -infrasonic -infrastructural -infrastructure/MS -infrequent -infringe/L -infringer/MS -infundibula -infundibulum -infuriate/SGDkN -infuriation/M -infuse/Rb -infusible/P -ingenious/YP -ingeniousness/S -ingenuity/MS -ingenuous/YP -ingenuously/E -ingenuousness/S -Ingersoll -ingest/DGbVS -ingestion/SM -Ingham -inglenook/SM -Inglis -ingoing -ingot/SM -ingrain/h -Ingram -ingrate/M -ingratiate/nGDSkN -ingratiation/M -ingredient/MS -ingress/SNM -ingression/M -Ingrid/M -inguinal -ingénue/S -inhabit/7d -inhabitability -inhabitable/U -inhabitance -inhabited/U -inhalant/S -inhalation/M -inhalational -inhalator -inhalator's -inhale/NnR -inhere/DSG -inherent/Y -inherit/EdS -inheritable/P -inheritance/EMS -inheritor/S -inheritress/SM -inheritrix/MS -inhibit/SVdyXN -inhibited/U -inhibiter's -inhibiting/U -inhibition/M -inhibitor/MS -inhold/JG -inhomogeneous -inhospitable/P -inhospitality -inhuman -inhumane -inimical/Y -inimitable/YP -iniquitous/PY -iniquity/SM -initial/GQs-89qDSY -initialise/ASKDG -initialised/U -initialism/S -initialize/ASnDGN -initialized/U -initialler -initialness -initiand/S -initiate/NDGSnVy -initiated/U -initiation/M -initiative/SM -initiator/SM -inject/SGDV -injectable/S -injection/MS -injector/SM -injunctive -injure/RDGSZ -injured/U -injurious/PY -ink/GR2ZMSD -inkberry/S -inkblot/MS -inkhorn -inkiness/S -inkjet -inkling/SM -inkstand/SM -inkwell/SM -inky/TP -inlaid -inland -inlay/GS -inlet/MS -inlier/MS -inline/SGD -inly/G -inmate/SM -inmost -inn/MJS -innards -innate/PY -innateness/S -innatism -inner-city -inner/S -innermost -innersole/S -innerspring -innervate/SGDnN -innervation/M -inning -inningses -innkeeper/MS -innocence/SM -innocent/TYS -innocuous/PY -innocuousness/S -innominate -innovate/NVnGuDSyv -innovation/OM -innovator/SM -Innsbruck -innuendo/DGMS -innuendoes -innumerability/M -innumerable/PY -innumerate/B -innutrition -innutritious -inoculate/VGNDSn -inoculated/A -inoculates/A -inoculating/A -inoculation's -inoculation/A -inoperative -inopportune/P -inordinate/YP -inorganic/Y -inotropic -inpatient/MS -input/SGM -inquest -inquire/kRDGZ -inquiry/SM -inquisition/SoM -inquisitional -inquisitive/PY -inquisitiveness/S -inquisitor/oMS -inquisitorial -inroad/SM -inrush/GSM -ins -ins. -insalubrious -insane -insatiability/MS -insatiable/PY -inscribe/RNX -inscription/M -inscrutability/SM -inscrutable/YP -inscrutableness/S -insectarium/S -insectary/S -insecticidal -insecticide/MS -insectile -insectivore/MS -insectivorous -insectoid/S -insecure -inseminate/NnDSG -insemination/M -insensate/YP -insentience/S -inseparability/MS -inseparable/PS -insert/DGAS -insertable -inserter/MS -insertion/SMA -inset/G -inshore -inside-out -inside/R -insidious/PY -insidiousness/S -insight/6j -insightfulness -insigne's -insignia/MS -insincere -insinuate/DGknNSV -insinuation/M -insinuator/SM -insipid/Y -insipidity/SM -insist/DSGk -insistence/MS -insistent/Y -insofar -insole -insolence/SM -insolent/Y -insolubility/S -insoluble/PSY -insolvent/Y -insomnia/SM -insomniac/S -insomuch -insouciance/SM -insouciant/Y -inspect/AGSD -inspectingly -inspection/SM -inspectional -inspective -inspector/SM -inspectorate/MS -inspectors' -inspiration/M -inspire/xNnGk -inspired/U -inspirer/M -inspiring/U -inst/g -Instagram/M -install/ADGS -installable -installant -installation/SMA -installer/MS -instalment/MS -instance/GD -instant/SYM -instantaneous/PY -Instantbird -instanter -instantiate/SGDNn -instantiated/U -instantiation/M -instantness -instar/S -instate/ALSDG -instead -instep -instigate/SVnDNG -instigation/M -instigator/MS -instil/SRNnGD -instillation/M -instilment -instinct/vVMS -instinctual -institute/MDxRGSV -instituted/A -institutes/M -instituting/A -institution's/A -institution/SM -institutional/Q8-q -institutionalism/M -institutionalist/M -instruct/VvuGxDS -instructed/U -instruction/SM -instructive/P -instructor/SM -instrument/GNoSDnM -instrumental/3S -instrumentalise/SGD -instrumentalism -instrumentalist -instrumentality/SM -instrumentalize/SGD -instrumentation/M -insubstantiality -insufferable/Y -insufficiency/S -insufflator/S -insula -insulae -insular/Y -insularity/MS -insulate/DSnNG -insulated/U -insulation/M -insulator/MS -insulin/MS -insult/DGkS -insulter/M -insuperable/Y -insupportable/P -insurable/U -insurance/FMSA -insure/DRSG -insured/U -insurgence/ZSM -insurgency/SM -insurgent/SM -insurmountable/Y -insurrection/3MS -insurrectionary -insurrectionist -inswing/GR -intact/P -intaglio/SMGD -intake/M -intangible/M -intarsia -integer/MSNn -integrability/M -integrable -integral/SMY -integrand/SM -integrate/EADSGN -integration/AME -integrationist/S -integrations/E -integrative -integrator/MS -integrity/MS -integument/SM -integumental -integumentary -Intel/M -intellect/SM -intellectual/Q8YPS -intellectualism/SM -intellectualist/S -intellectualistic -intellectuality/M -intelligence/MS -intelligencer's -intelligent/UY -intelligentsia/MS -intelligibility's/U -intelligibility/SM -intelligible/UY -intelligibleness/M -intelligibly/U -Intelsat -intemperance/S -intemperate/P -intemperateness/S -intend/uhViv -intendant/MS -intended/U -intendedness/M -intense/P -intenseness/S -intensification/M -intensify/RNnDSG -intension/Oo -intensity/MS -intensive/PS -intensiveness/S -intent/PY -intention/DSoM -intentional/UY -intentionalism -intentionality/M -intentness/S -inter-agency -inter-allied -inter-class -inter-modal -inter-personal -inter-urban -inter/ELDG -interact/SVDGvu -interactant -interaction/SM -interactional -interactionism -interactionist -interactivity -interarticular -interatomic -interaxial -interbank -interbed/D -interbred -interbreed/GS -intercalary -intercalate/DGVSN -intercalation/M -intercase -intercaste -intercede/GSD -interceder/MS -intercellular -intercensal -intercept/GSD -interception/MS -interceptive -interceptor/SM -intercession/MS -intercessor/SM -intercessory -interchange/SlGBD -interchangeability/M -interchangeable/P -interchanger/M -InterCity -intercity -interclass -intercohort -intercollegiate -intercolonial -intercolumnar -intercolumniation -intercom/MS -intercommunicate/DGnNS -intercommunication/M -intercommunion -intercommunity -interconnect/GDiS -interconnected/P -interconnection/SM -interconnectivity -intercontinental -intercontinentally -interconversion/M -intercool/DR -intercorrelate/D -intercorrelation/S -intercostal/YS -intercourse/MS -intercrop/SGD -intercross/SG -intercultural -interculturalism -intercut/SG -interdenominational/Y -interdental -interdepartmental/Y -interdependence/SMZ -interdependency/MS -interdependent/Y -interdict/DGMVS -interdiction/SM -interdigital -interdimensional -interdisciplinary -interest/EDhSMG -interested/UY -interesting/UY -interestingness/M -interethnic -interface/GSMD -interfacer -interfacing/M -interfaith -interfere/kRSGD -interference/MS -interferometer/WSM -interferometry/M -interferon/SM -interfertile -interfile/SDG -interfix/SGD -intergalactic -intergeneration/oM -intergenerational -interglacial -intergovernmental -intergrew -intergroup -intergrow -intergrown -intergrowth/S -interim/S -interindex -interindustry -interior/YMS -interject/xGSD -interjection/SM -interlace/DGS -interlanguage -interlard/DSG -interlayer/S -interlayering -interleaf -interleave/CGDS -interleaver/SM -interleukin/S -interlibrary -interline/SDGJ -interlinear/S -interlingua's -interlingual -interlining/M -interlink/DSG -interlinkage -interlobular -interlock/GSD -interlocker/M -interlocutor/MS -interlocutory -interlope/SDRG -interlude/MS -intermarriage/MS -intermarry/SGD -intermedia -intermediacy/S -intermediary/MS -intermediate/YNMPGDS -intermediation/M -intermediator/S -intermedium -intermembrane -intermeshed -intermetallic -intermetrics -intermezzi -intermezzo/SM -interminable/PY -intermingle/DSG -intermission/SM -intermit/SGD -intermittence/S -intermittency -intermittent/Y -intermix/GSD -intermixable -intermixer -intermixture -intermodal -intermodulate/SD -intermodulation/M -intermodule/Nn -intermolecular/Y -intermuscular -intern/GLDxo -internal/s9SQ8q- -internalness -internarial -internasal -internation -international/3Q8-qS -internationalism/MS -internationalist -internationality/M -internecine -internee/SM -internegative/S -internet -Internet/M -internetwork -interneural -interneuron/S -interneuronal -interneurone/S -internist's -internode/S -internship/S -internuclear -interoceptor/S -interocular -interoffice -interop -interoperate/BDNSG -interpenetrates -interpenetration -interpersonal/Y -interphase -interplanetary -interplant/SGD -interplay/MGDS -Interpol/M -interpolar -interpolatable -interpolate/DNnSVG -interpolation/M -interpose/SNDXG -interposer/M -interposition/M -interpositive/S -interpret/daNAnS -interpretability -interpretable -interpretation/AMa -interpretative/Y -interpreted/U -interpreter/aMS -interpretive/Y -interpretor/S -interprocess -interprocessor -interquartile -interracial -interregional/Y -interregnum/MS -interrelate/SnGihND -interrelated/P -interrelation/M -interrelationship/SM -interreligious -interrogate/SGNyvDVn -interrogation/M -interrogative/S -interrogator/MS -interrogatory/S -interrupt/DGSbRV -interrupted/U -interruptibility -interruption/MS -inters -intersect/GSD -intersection/SM -intersectional -intersectionalism -intersectionality -intersegmental/Y -intersession/SM -intersex/S -intersexual -intersexualism -intersexuality -intersexually -interspace/SD -interspecies -interspecific/Y -intersperse/DSNXG -interspersion/M -interspinal -interspinous -interstadial -interstage -interstate/S -interstellar -interstice/SM -interstitial/SY -intersubjective/Y -intersubjectivity -intersurvey -intertask -intertextual -intertextuality -intertextually -intertidal -intertrack -intertwine/DSG -interurban/S -interval/SM -intervene/SDG -intervener/M -intervenor/M -intervention/OSM -interventionism/MS -interventionist/S -intervertebral -interview's/K -interview/ADGS -interviewee/MS -interviewer/MS -intervocalic -intervocalically -interwar -interweave/SG -Interweb -interwind -interwork/SGD -interwound -interwove -interwoven -intestacy/MS -intestate/S -intestinal -intestine/SoM -intifada -intimacy/MS -intimal -intimate/DYPGNSn -intimater/M -intimation/M -intimidate/NDSkGyn -intimidation/M -intl -intolerable/P -intonate -intonation/M -intone/xnN -intoxicant/SM -intoxicate/GDhnNS -intoxication/M -intra -intracellular/Y -intracity -intraclass -intracohort -intracompany -intracranial/Y -intractability/SM -intractableness -intradepartmental -intradermal/Y -intrados -intrafamily -intragenerational/Y -intraindividual -intraindustry -intraline -intrametropolitan -intramolecular/Y -intramural/Y -intramuscular/Y -intranasal -intranet/S -intransigence/MS -intransigent/SY -intransitive/S -intransitiveness/S -intranuclear -intraocular -intraoffice -intraoperative -intrapartum -intraperitoneal -intrapetiolar -intraprocess -intrapulmonary -intraregional/Y -intrasectoral -intrasexual -intraspecific -intrastate -intrathecal/Y -intratissue -intrauterine -intravaginal -intravascular/Y -intravenous/SY -intrepid/PY -intrepidity/MS -intricacy/MS -intricate/PY -intrigant -intrigue/RSkDG -intrinsic/YS -intro/S -introduce/DSAnNG -introducer/SM -introduction/MA -introductory -introgression -introit/SM -intron/S -intronic -introrse -introspect -introspection/SM -introspective/PY -introversion/SM -introvert/GSDM -intrude/RuNXSDGVv -intrusion/M -intrusive/P -intrusiveness/S -intubate/SNDG -intubation/M -intuit/vSVXu7N -intuited -intuitionalism -intuitionism -intuitionist/SM -intuitive/P -intuitiveness/S -Inuit -inulin -inunction -inundate/nSNG -inundation/M -inure/GDS -invade/RXVuDGSN -invaginate/D -invagination/S -invalid/MdS -invalidism/MS -invaluable/P -Invar/M -invariant/MY -invasion/M -invected -invective/YPMS -inveigh/GSD -inveigher/M -inveigle/RSGD -inveiglement -invent/uVyv -invented/A -invention/AMS -inventive/P -inventiveness/S -inventor/SM -inventory/MDSG -inventress/MS -invents/A -Inverclyde/M -Inverness/M -inverse/Y -invert/RGSDb -invest/bBALE -invested/A -investee/MS -investigable -investigate/AGDSN -investigation's/A -investigation/MS -investigative -investigator/SM -investigatory -investiture/SM -investment/f -investor/SM -invests/A -inveteracy/SM -inveterate/Y -inviability -inviable -invidious/YP -invidiousness/S -invigilate/DG -invigilator/MS -invigorate/AGDNSn -invigorating/Y -invigoration/MA -invincibility/MS -invincible/PY -inviolability/MS -inviolable/Y -inviolate/PYB -inviscid -invisible/PS -invitation/oM -invitational -invite/GSkNnD -invited/U -invitee/S -inviter/M -inviting/U -invokable -invoke/RnDGNS -involuntariness/S -involuntary/P -involute/S -involution/SM -involve/LGhSD -involved/U -involver/M -invulnerability/M -invulnerable/P -inward/YP -iodate -iodide/MS -iodine/M -iodise/GDS -iodize/GDS -Iolanthe/M -ion's/U -ion/s9MWqQ8-S -Iona -Ionian -ionise/CRSGD -ionize/BCRSGD -ionosphere/SMW -ions/U -IOPS -iOS/M -iota/SM -IOU -Iowa -IP/S -IPA -iPad/S -ipecac/SM -Iphigenia/M -iPhone/S -iPod/S -ippon/S -IPR -IPS -ipso -Ipswich/M -IQ/S -Iqaluit -Iqbal -IR -Ira -Iran/M -Irani -Iranian/SM -Iraq/M -Iraqi/MS -irascibility/SM -irascible/Y -irate/TY -irateness/S -IRC -IRCop/S -ire/6SDMG -Ireland/M -Irene -irenic/S -irides's -iridescence/MS -iridescent/Y -iridium/M -iridologist/S -iridology -iris/MS -Irish/m5 -Irishwomen/M -iritis -irk/DSG -irksome/PY -irksomeness/S -Irkutsk -Irma -iron/wMSd1W -ironclad/S -ironer/S -ironical/P -ironing/M -ironmaster/S -ironmonger/ZSM -ironmongery/M -ironness -ironside/SM -ironstone/SM -ironware/SM -ironwood/MS -ironwork/MS -ironworker/M -ironworking -irony/MS -Iroquoian -Iroquois -irradiance -irrational/S -irreconcilability/MS -irreconcilable/PYS -irrecoverable/YP -irrecusable -irredeemability -irredeemable/YS -irredentism/M -irredentist/M -irrefutability -irrefutable/Y -irregardless -irregular -irrelevance/S -irreligion -irreligionist -irreligious -irreligiously -irreligiousness -irremediable/PY -irremissible -irremovability -irremovably -irreparable/YP -irreplaceableness -irreplaceably -irrepressible/Y -irreproachability -irreproachable/PY -irreproducible -irresistibility/M -irresistible/P -irresolute/P -irresoluteness/S -irresponsible/S -irresponsive -irresponsiveness -irretrievable/Y -irreverential -irrevocable/YP -irrigable -irrigate/GDNnS -irrigation/M -irrigator/S -irritability/SM -irritable/PY -irritant/S -irritate/BnSkNhVDG -irritation/M -irrupt/DGVS -irruption/MS -IRS -Irvin/M -Irvine -Irving -Irwin/M -is -Isaac/M -Isaacson -Isabel/M -Isabella/M -isabgul -Isadora/M -Isaiah/M -ISBN/S -Iscariot -ischaemia -ischaemic -ischia -ischial -ischium -isentropic -isethionate -isethionic -Ishiguro/M -Ishmael -Ishtar/M -isinglass/SM -ISIS/M -Isis/M -isiZulu -Isl. -isl. -Islam/M -Islamabad/M -Islamdom -Islamic -Islamism/M -Islamist/S -Islamistic -Islamite -Islamitic -Islamitish -Islamofascism -Islamofascist -Islamophobe -Islamophobia -Islamophobic -island/RSM -Islay/M -isle/SM -islet/MS -Islington/M -ism/SMC -isn't -ISO/MS -isobar/SWM -isobutyl -isochromatic -isochronal/Y -isochronous/Y -isocline/M -isocyanate/M -isodine -isoelectronic -isoflavone/S -isolate/SnNDG -isolated/K -isolation/3M -isolationism/SM -isolationist/W -isolator/SM -Isolde/M -isomer/MS -isomerase/S -isomeric -isomerism/SM -isometric/YS -isometrics/M -isometry -isomorph/WM1 -isomorphism/MS -isoperimetrical -isopleth/SM -isopod/S -isoprene -isoprenoid -isopropyl -isosceles -isospin -isostatic -isotherm/MSo -isothermal -isothiocyanate/S -isotonic -isotope/SMW -isotopically -isotopy -isotropy/1MW -isotype -ISP/S -ispaghul -ispaghula -ispell/M -Israel/M -Israeli/SM -Israelite/SM -ISS -Issaquah/M -ISSN -issuably -issuance/SM -issuant -issue/RG7DMS -issued/A -issueless -issues/A -issuing/A -Istanbul/M -isthmian -isthmus/MS -it'd -it'll -it/M4SU -Italian/SM -Italianate -italic/Q8q-S -Italy/M -Itanagar -Itanium/M -itch/GM2ZzDS -itchiness/S -itchy/TP -item/qsQ98-SM -itemised/U -iterate/nAGDNSV -iteration/M -iterative/Y -iterator/SM -Ithaca -Ithacan -itinerant/SY -itinerary/SM -Ito/M -its -itself -ITT -ITU -iTunes -ITV -IU -IUD/S -iv/M -Ivan/M -Ivanchuk/M -Ivanhoe -Ives -IVF -Ivorian/S -ivory/SM -ivy/DMS -ix -ixia/S -Ixion/M -Iyengar/M -J -j -j'adoube -jab/GMDS -Jaban/M -Jabba/M -jabber/SdrJ -jabiru/S -jabot/SM -Jabotinsky/M -jacamar/S -jacana/S -jacaranda/MS -Jacen/M -Jacinto/M -jack-in-the-box -jack-o'-lantern/S -jack/MDRSJG -jackal/SM -jackanapes -jackass/SGDM -jackboot/MSD -jackdaw/MS -Jackendoff/M -jacket/dSM -jacketed/U -jackfruit -jackhammer's -jackhammered -jackhammering -Jackie -jackknife/DGMS -jackknives -Jacklyn -jackpot/MS -jackrabbit/SM -Jackson/MS -Jacksonville -jackstay -Jacky -Jacob/S -Jacobean -Jacobi/M -Jacobian -Jacobin -Jacobite -Jacobsen -Jacobson/M -Jacoby -Jacopo/M -jacquard/MS -Jacqueline -Jacques -jacuzzi -jade/iDMhS -jaded/P -jadedness/S -jadeite/MS -Jaeger/M -jag/ZDhGiS -jagged/P -jaggedness/S -Jagger -jaggery -jaggy/T -jaguar/MS -jaguarundi/S -jail/RMDGS -jailbird/SM -jailbreak/RSM -Jaime/M -Jain/S -Jaina/M -Jainism -Jaipur -Jakarta/M -Jake/S -Jakob -jalapeño/S -jalopy/SM -jalousie/SM -jam's -jam/UDG -Jamaica/M -Jamaican/S -jamb/GMDS -jambalaya/SM -jamboree/SM -James/M -Jameson/M -Jamestown/M -Jamie/M -Jamil/M -jamless -jammer/S -jams -Jan -Jana -Janacek -Jane/M -Janeiro -Janesville -Janet/M -Janeway/M -jangle/DRSGY -Janice -Janis -janissary/SM -janitor/SM -janitorial -Janos -Jansen -January/SM -Janvier/M -Jap/S -Japan/M -japan/SGD -Japanese/M -jape/GSMD -jar/MG6JSD -Jardine -jardinière/MS -Jared/M -jarful/S -jargon/M -jarring/Y -Jarvis -jasmine/SM -Jason/M -jasper/MS -Jastrow/M -jato/MS -Jaume/M -jaundice/SMGD -jaunt/Mz2GZS -jauntiness/S -jaunty/PT -Java/M -Javanese -JavaScript -javelin/MS -Javi/M -jaw/pMDGS -jawbone/SDM -jawbreaker/SM -jawline -jay/MS -Jayakumar/M -Jayasuriya -jaybird/MS -Jaycee/S -Jaynes/M -jaywalk/GDSRJ -Jazeera -jazz/S2GMDZ -jazzmen -jazzy/PT -jaçana/S -jct -jealous/YPZ -jealousy/SM -Jean -jean's -Jean-Luc/M -Jeana -Jeanette/M -Jeanie -Jeanne -Jeannie -jeans -Jedi/SM -jeep/S -Jeep/SM -jeer/MDJSGk -jeerer/M -Jeeves -jeez -jeeze -Jeff/M -Jefferies/M -Jefferson/M -Jeffersonian -Jeffersontown -Jeffords/M -Jeffrey/S -jeggings -jehad's -Jehoshaphat -Jehovah/M -jejuna -jejune/PY -jejunum/M -Jekyll -jell/DYGS -jello's -jelly/DGMS -jellybean's -jellyfish/MS -jellying/M -jellylike -jellyroll/S -jemmy/M -Jen/M -Jena/M -Jenkins/M -Jenkyn/M -Jenner -jennet/SM -Jennie -Jennifer -Jennings -jenny/SM -Jens/M -Jensen/M -Jenson -jeopardy/MQ8S -jeremiad/SM -Jeremiah -Jeremy/M -Jericho/M -jerk/zGZSD2 -jerker/M -jerkin/MS -jerkiness/S -jerky/TP -jeroboam -Jerome -jerrican/S -jerry-builder/S -jerry-building -jerry-built -jerry/M -jerrycan/S -Jersey/M -jersey/MS -Jerusalem/M -Jervis -Jespersen/M -jess/M -Jesse/M -Jessica -Jessie -Jessop/SM -jest/kMDRGS -Jesuit/S -Jesuitical/Y -Jesus -jet-black -jet-lag/D -jet-propelled -jet-setted -jet-setter/SM -jet-setting -jet/MDGS -Jethro -jetliner/SM -jetsam/MS -jetting/M -jettison/dS -jetty/MS -Jew/MSy -jewel/RGSMD -jeweller/Z -jewellery/M -Jewess/SM -Jewish -Jewishness -Jezebel/S -jg/M -Jiangxi -jib-boom/S -jib/DMGS -jibe/S -jiff/ZS -jiffy/MS -jig/DRSGM -jigger/dZ -jiggery-pokery -jigging/M -jiggle/DSYG -jiggly/T -jigsaw/MS -jihad/MS -Jillie/M -jilt/DGS -jilter/M -Jim/ZM -Jimenez -jimmied -jimmy's -jimmying -jingle/YGDS -jingler/M -jingly/T -jingo/M -jingoism/SM -jingoist/WSM -jink/DSG -jinn/MS -jinni's -jinrikisha's -jinx/SGMD -JIT/SGD -jitsu -jitter/SZ -jitterbug/RGSDM -jittery/T -jiu -jiu-jitsu -jiujitsu's -jive/MDGS -jnr. -Jo'burg -Jo/M -Joachim/M -Joan -Joanna -Joanne/M -Joaquin -job/RpGSDM -jobber/Z -jobbery/M -jobbing/M -jobholder/SM -jobless/P -joblessness/S -jobseeker/MS -Jobst/M -jock/MS -jockey/SDGM -jockstrap/MS -jocose/PY -jocoseness/S -jocosity/SM -jocular/Y -jocularity/MS -jocund/Y -jocundity/MS -jodhpurs -Jodie -Joe/M -Joel/M -joey/M -jog/RJDSG -joggle/DGS -joggler/M -Johan -Johann -Johanna/M -Johannes -Johannesburg/M -Johansen -john's -John/S -Johnnie/M -johnny-come-lately -johnny/SM -Johnson/M -Johnston/M -Johnstone -Johnstown -join/FRSDG -joined/A -joiner/Z -joinery/SM -joins/A -joint's -joint-stock -joint/FYE -jointed/EPY -jointer/M -jointing/E -joints/E -jointures -joist/SMD -joke/ZDRMSGk -jokesmith/S -jokester -jokey -joky/YT -Jolene/M -Jolla/M -jollification/SM -jolliness/S -jollity/SM -jolly/SPTYDG -jolt/DSRG -Jon/MZ -Jonah/M -Jonas -Jonathan -Jones/SM -jong/M -jongg/M -jonquil/SM -Joplin -Jordan/M -Jordanian/S -Jorge -Jorgensen -Jorgenson -Jose -Josef -Joseph/M -Josephine -Josephson -Josephus -Josh -Joshua/M -Josiah -Josie/M -joss/M -jostle/SGD -Josuttis -José/M -jot/RJSDG -jotting/M -joule/SM -jounce/SGD -journal/9Q83sSM -journaled -journalese/MS -journaling -journalism/SM -journalist/W -journey/RmSMDJG -joust/MRGSD -Jovanovich -Jovanović/M -Jove -jovial/Y -joviality/SM -Jowell/M -jowl/YSM -jowly/T -joy/pMDG6jS -Joyce -joyed/c -joyful/PT -joyfulness/S -joyless/PY -joylessness/S -joyous/YP -joyousness/S -joypad -joyridden -joyride/RGMS -joyrode -joystick/S -João/M -JPEG/S -jpeg/S -jpg -JPG -JPY -Jr -JSON -ju-ju/M -ju-jutsu -ju/y -Juan -Juanita -jubbly -jubilant/Y -jubilate/GDNnS -jubilation/M -jubilee/SM -Judaeo-Christian -Judah -Judaic -Judaism/M -Judas -Judd/M -judder/dS -Jude/M -Judea -judge's -judge/DKLaGS -judgement-seat -judgement/o -judgemental -judger/M -judgeship/SM -judicature/SM -judicial/KY -judiciary/MS -judicious/IYP -judiciousness/IS -Judith -judo/MS -judoka/S -Judson/M -Judy/M -jug/6GDSM -jugful/SM -juggernaut/SM -juggle/RySDG -jugglery/SM -jugular/S -juice/RZMDGS -juiciness/S -juicy/YPT -jujitsu/MS -jujube/MS -jujutsu's -jukebox/MS -Jul -julep/SM -Jules -Julia/M -Julian/M -Juliana -Julie/M -Julien/M -julienne/S -Juliet/M -Julio -Julius -July/MS -Julys -jumble/GDS -jumbo/SM -jump-off -jump-start/G -jump/zR2ZSDG -jumpiness/S -jumpsuit/S -jumpy/TP -Jun -Junagarh -junco/MS -junction/FSMIE -juncture/FMS -June/M -Juneau -juneberry/S -Jung/M -Jungfrau -Jungian -jungle/SM -junglefowl -junior/MS -juniority/M -juniper/SM -junk/MDRZGS -junket/SdM -junkie/M -junky/TS -Juno -Junoesque -Junr -junta/MS -Jupiter/M -Jurassic -jurat/S -Juri/M -juridical/Y -juries/I -jurisconsult/S -jurisdiction/oMS -jurisdictional -jurisprudence/MS -jurisprudent -jurisprudential/Y -jurist/W -juror/MS -jury's/I -jury/35DmMSG -Jussi/M -jussive -just/TPY -juster/M -justice/IMS -justiciable -justifiability/M -justifiable/U -justifiably/U -justification/M -justificatory -justified/U -justify/RlBDNSGn -Justin -Justine -Justinian/M -Justinus/M -justly/U -justness/U -justnesses -Justus/M -jut/SGD -jute/MS -Jutland/M -Juvenal -juvenescence -juvenescent -juvenile/SM -juvenilia -juvenility -juxtapose/SDXGN -juxtaposition/M -JVM/S -Jörg/M -K -K-factor -k/k -ka -Kabbala -Kabbalah -Kabbalism -Kabbalist/S -Kabbalistic -kabob's -kaboom -kabuki/MS -Kabul/M -Kaczorowski/M -kaddish/S -Kadlec/M -Kafka/M -Kafkaesque -kaftan -Kagoshima -Kahn/M -kaiser/SM -Kalahari -Kalamazoo -Kalashnikov -kale/MS -kaleidoscope/SWM1 -Kalgoorlie/M -Kali -kalian/S -Kallang/M -Kalpage/M -Kamasutra -Kamchatka/M -Kamen/M -kamikaze/SM -Kamino/M -Kampala/M -Kampf -Kampuchea/M -kana -Kandahar -Kandy -Kane/M -kangaroo/SM -kanji -Kannada -Kano -Kanoa/M -Kansai -Kansas/M -Kant/M -Kantian -Kantianism -kaolin/WQ8M -kaolinite -kaon/S -kapellmeister/M -Kaplan/M -kapok/M -Kaposi/M -kappa/M -kaput/M -Kara/M -Karachi/M -karaka -Karakoram -karakul/M -karaoke -karat's -karate-chop -karate/M -karateka/S -Karen -Kari/M -Karl -Karloff/M -karma/SM -karmic -Karn/M -Karnak/M -Karp/M -Karsten/M -kart/MSG -Kartikaya -Kasai -Kashmir -Kasparian -Kasparov/M -Kaspersky/M -Kasprowicz -Kassebaum/M -Kassel/M -Kassner/M -Kastrup/M -katakana -katana/S -Katarn/M -Kate/M -Kath/M -Katharine/M -Katherine -Kathleen -Kathmandu/M -Kathryn/M -Kathy -Katie/M -Katmai -Katrina/M -katsura/S -Kattegat -katydid/MS -Katz -Kauai -Kauffmann/M -Kaufman/M -Kaunda -Kawasaki -Kay -kayak/MS -Kayla/M -Kaylee/M -kayo/MSDG -Kazakh -Kazakhstan/M -kazoo/SM -Kazue/M -kB -kb -kbit -kbps -kbyte/S -kc/M -kcal/M -KDE/M -Keane/M -Kearney -Kearns/M -Kearwood -Keating -Keaton/M -Keats/M -kebab/SM -Keble/M -Keck/M -kedgeree/S -Keegan -keel/DGMS -keelboat/S -Keele/M -keeler -keelhaul/GDS -keen/TGDPY -Keenan -keener/M -keening/M -keenness/S -keep-fit -keep/JSGR -keeping/M -keepsake/MS -keg/SGMD -Kegan/M -Keighley -Keillor/M -Keith -Kelemen/M -Kelk/M -Keller/M -Kelley -Kellogg -Kelly/M -kelp/DGSM -kelpers -Kelsey/M -kelvin/SM -Kemp -Kempston -ken/GSMD -Kendal -Kendall/M -kendo -Kendra/M -Kenelm/M -Kenilworth -Kenji/M -Kennedy/M -kennel/DSGM -Kennell/M -Kennet -Kenneth -Kenney -Kenny -keno's -Kenobi/M -Kenosha -Kensington -Kent/M -Kenton/M -Kentucky -Kenya/M -Kenyan/S -Kenyatta -Kenyon/M -Keough/M -kepi/MS -Kepler/M -kept -Kerala/M -keratin/MS -keratinocyte/S -keratitis -kerb/SM -kerbside -kerchief/SDM -Kerckhoffs/M -Kerensa -Kermit -Kern -kerned -kernel/SM -Kerner/M -kerning -kerosene/MS -Kerr/MZ -Kerry/M -Kershaw -Kessler/M -Kesteren/M -Kesteven -kestrel/SM -ketch/MS -Ketchum/M -ketchup/SM -ketone/MS -ketonic -ketosis/M -Kettering -kettle/6SM -kettlebell -kettledrum/MS -Kev/M -Kevin/M -Kewaskum -Kewaunee -Kewell -Kewisch/M -Kewpie -Kexi/M -key/DSGM -keyboard/GMDRS -keyboardist/S -keyclick/MS -keyer/S -Keyhoe -keyholder/S -keyhole/SM -keyless -keylogger/S -keylogging -Keynes -Keynesian -keynote/SRGMD -keypad/SM -keypair/S -keypal/S -keyphrase/S -keypress/S -keypunch/GRDS -keyring/S -keyserver/S -keyspace/S -keystone/SM -keystream/S -keystroke/MDS -keyword/SM -kg -KGB -Khabarovsk -Khachaturian -khaki/MS -Khalid -khan/MS -Khartoum/M -Khmer -Khoisan -Khomeini/M -Khrushchev -Khyber -kHz/M -Ki-moon/M -Kiangsi -KiB -kibble/DSGM -kibbutz/M -kibbutzim -kibibit/S -kibibyte/S -kibitzer's -kibosh/SM -kick-boxer/S -kick-boxing -kick-off/MS -kick-start/SDG -kick-turn/S -kick/ZRSDG -kickback/MS -kickball's -kickballs -kickflip/S -kickstand/SM -kicky/T -kid-glove -kid/RDMSGp -Kidd -Kidderminster -kiddie/S -kidding/MY -kiddish -kiddo/SM -kiddy's -Kidman/M -kidnap/DRGJS -kidney/MS -kidology -Kieffer/M -Kiel/M -Kieran/M -Kiev/M -kif -kif-gloves -Kigali/M -Kikuyu/M -Kilauea -Kilbride/M -Kildare/M -Kildavin -Kilimanjaro/M -Kilkenny/M -kill/SRkJ7GD -Killarney/M -killdeer/SM -killed/c -killfile/SGD -killifish/S -killing/c -killjoy/S -kills/c -Kilmarnock/M -Kilmore/M -kiln/SM -kilo/MS -kilobase/S -kilobaud/M -kilobit/S -kilobuck -kilobyte/S -kilocalorie -kilocycle/MS -kilogauss/M -kilogram/SM -kilogramme/S -kilohertz/M -kilohm/M -kilojoule/SM -kilolitre/SM -kilometre/SMW -kiloton/SM -kilovolt/SM -kilowatt-hour -kilowatt/SM -kiloword -kilt/SMD -kilter -Kim -Kimball/M -Kimberley -Kimberly/M -Kimble/M -kimono/SM -kin/5SmM -kinaesthetic/YS -kinase/S -Kincaid/M -kind-hearted/YP -kind-heartedness/S -kind/PSTY -kinda -kindergarten/SM -kindergartener/S -kindergärtner/SM -Kinderhook/M -kindest/U -kindle/DSAG -kindler/M -kindliness/S -kindling/M -kindly/PT -kindness/S -kindred -kine/M -kinematic/S -kinematics/M -kineses -kinesics -kinesiological -kinesiologist/S -kinesiology -kinesis -kinetic/YS -kinetics/M -kinetoplast/S -kinetoscope/S -king-size/D -king/MDSG -Kingan/M -kingbird/SM -kingdom/SM -kingfish/S -kingfisher/MS -kinglet/M -kingly/TP -kingpin/MS -Kingsbury -Kingsford/M -kingship/SM -Kingsley -Kingston/M -Kingstown -Kingwood -kink/2MGDZSz -kinked -kinkiness/S -kinky/TP -Kinney/M -Kinnock/M -Kinross/M -Kinsella/M -Kinsey -kinsfolk -Kinshasa/M -kinship/MS -kiosk/MS -Kiowa -kip/SDGMR -Kipling/M -kipper/d -Kirby -Kircher/M -Kirchner/M -Kircubbin -Kirghiz -kiri -Kiribati/M -kirk/SM -Kirkland -Kirkpatrick -Kirkwall/M -Kirkwood -Kirov/M -kirsch/S -Kirsten/M -Kisangani -kismet/MS -kiss/DGRSJ7 -kit/GMZrDS -Kitakyushu/M -kitbag/M -kitchen/SM -Kitchener -kitchener's -kitchenette/MS -kitchenware/SM -kite-flying -kite/MS -kiteboard/SGD -kitenge -kitesurfer/S -kitesurfing -kith/MS -kitsch/ZSM -kitten/MdS -kittenish/YP -kittiwake/SM -Kitts/M -kitty/MS -Kiwanis -kiwi/SM -kiwifruit/S -KKK/M -kl -Klan -Klandasan -Klansman -Klaus/M -Klawe/M -klaxon/M -Kleenex -Klein/M -kleptocracy/S -kleptocrat/S -kleptocratic -kleptomania/MS -kleptomaniac/SM -kleptoparasite/S -kleptoparasitic -kleptoparasitism -Klerksdorp/M -Kline/M -Klingon/S -Klondike -Klopfer/M -kludge/RGSDM -kludgey -klutz's -Klux -Kluxer/S -klystron/SM -km -kn -knack/SRM -knacker/Z -knackered -knackish -Knapp/M -knapsack/MS -knapweed/S -Knauth/M -knave/MyS -knavery/SM -knavish/Y -knead/RDGS -knee-deep -knee-high/S -knee-jerk -knee-length -knee/GdMS -kneecap/SGMD -kneehole -kneel/DRGS -knees-up -knell/GMSD -knelt -Knesset -knew -knick -knick-knack/SM -knick-knackery -knick-knackish -knickerbocker/S -knickers -knife-edge -knife/SGMD -knifefish/S -knifepoint -knight-errantry -knight/GMDYS -knighthood/SM -knightliness/S -knightly/P -knish/SM -knit/RGSDJ -knitbone -knitting/M -knitwear/M -knives/M -knob/ZMS -knobble/S -knobbly -knobby/T -Knobloch/M -knock-down/S -knock-kneed -knock-on -knock-out -knock-up -knock/RDJSG -knockabout/M -Knockhill/M -knocking-shop -knockout -knockwurst's -knoll/DSGM -Knossos/M -knot/ZMS2GD -knothole/MS -knotting/M -knotty/TP -know-how -know-it-all -know/GJk7S -knower/M -knowing/T -knowingly/U -knowingness -knowledgable -knowledge/BSlM -knowledgeable/P -Knowles -known/US -Knox -Knoxville -knuckle/SDMG -knucklebone/S -knuckleduster/S -knucklehead/SD -Knudsen -Knudson -knurl/DS -Knuth/M -Knutsen -Knutson -KO -KO'd -KO'ing -KO's -koala/MS -Kobayashi -Kobe -Koch -Kodachrome/M -Kodak/M -Kodaly -Kodiak -Koelmeyer -Koenig -Koenigsberg -Koertzen -Kofi -Koga/M -Kohl -Kohler -kohlrabi/M -kohlrabies -Kokoda/M -kola/SM -Kolonia/M -Kong -Konrad/M -Koocher/M -kook's -kookaburra/SM -kookiness/S -kooky/YT -kopeck/MS -kopeks -Koran/M -Koranic -Korea/M -Korean/S -Koror/M -Kosciusko -kosher -Kosovo/M -Kossa/M -Kostova/M -Kourou/M -Kovacs -Kowalski/M -Kowanyama/M -Kowloon -kowtow/GDS -kph -kraal/MS -Kraemer -kraft/M -Krakatoa -kraken/S -Krakow -Kramer/M -Krause -Krebs -Kreisky/M -Kremlin/M -Kremlinologist -Kremlinology -Kresge/M -Krieger/M -kriegspiel/M -krill/MS -Kris -Krishna -Krista/M -Kristin/M -Kristina -Kristine -Kristy/M -Krohn/M -krona/M -krone/M -Kronecker/M -kroner -kronor -Kronos/M -kronur -Kropotkin -Krueger -Kruger -Krugman -Kruno -Krupp -Kruse/M -krypton/M -Krzanich/M -KS -kt. -Ku -Kuala/M -Kublai -Kubrick/M -Kubuntu/M -kudos/M -kudzu/SM -Kuenning/M -Kuhn/M -Kuiper/M -kulaks -Kumar -kumquat/SM -kung -Kuomintang -Kurd/SM -Kurdi/M -Kurdish -Kurdistan/M -Kurmann/M -Kurosawa/M -Kurt/M -kurtosis/M -Kurtz/M -Kurtzman/M -Kuru/M -Kurzweil/M -Kuster/M -Kuwait/M -Kuwaiti/S -kV -kW -KwaNdebele -kwanza/S -KwaZulu -KwaZulu-Natal -kWh -kyanite -kyanitic -kyle/SM -Kyoto/M -Kyrgyzstan/M -kyu -kyudo -Kyushu/M -l/3 -l10n -La'youn/M -la/M -Lab -lab/oMS -Labatt/M -label's -label/aGDSA -labella -labelled/U -labeller/MS -labelling/S -labellum -labia/M -labial/S -labile -labiodental -labium/M -laboratory/SM -laborious/YP -laboriousness/S -labour-intensive -labour-saving -labour/JShRikGDM -laboured/MP -Laboureur/M -labouring/M -labradoodle/S -Labrador -labradorite -labroid -Labrusca -laburnum/MS -labyrinth/SM -labyrinthine -lac/DGSM -Lacan/M -Lacanian/S -Lacanianism -lace's -lace-ups -lace/USGD -lacer/MV -lacerate/NGDnS -laceration/M -lacewing/MS -Lacey/M -Lachman/M -lachrymal/S -lachrymose -lacing/M -lack/MS -lackadaisical/Y -lackadaisicalness -Lackawanna -lackey/MDGS -lacklustre -Lacock -laconic/Y -lacquer/SrdM -lacquerware -lacquerwork -lacrimal -lacrosse/MS -lacrymal -lactam/S -lactate/SNMnDxG -lactation/M -lacteal/S -lactic -lactone/S -lactose/SM -lacuna/SM -lacunae -lacustrine -lacy/T -lad/MRDJSG -Ladbrokes -ladder/d -laddie/MS -laddish/P -lade/ZG -Laden's -laden/Uc -lading/M -ladle/GSMD -lady-killer -lady/MS -ladybird/SM -ladybug/SM -ladyfinger's -ladylike/U -ladylove/MS -Ladyship/MS -laetriles -laevorotatory -laevulose -Lafayette -lag/SrDJG -lagena -lagenae -laggard/PYMS -lagging/M -lagniappe's -lagoon/SM -lagoonal -Lagos/M -Lagrange/M -Lagrangian/M -Laguerre -Laguna -Lahore/M -laid/Aacf -lain/fc -lair/MGDS -laird/SM -laissez -laissez-faire -laity/MS -lake/SM -Lakehurst -Lakeland -Lakenheath/M -lakeside -Lakewood -Lakoff/M -Lakota/S -Lakshadweep -Lakshmi -Lalita/M -Lalo -lam/GSD -lama/SM -Lamaism -Lamar/M -lamasery/SM -lamb/MGDS -lambada/S -Lambarde/M -lambaste/GSD -lambda/MS -Lambdin/M -lambency/MS -lambent/Y -lamber -Lambert -Lambeth -lambkin/SM -Lamborghini/M -lambskin/MS -lambswool -lame/YDPT -lamebrain/MS -lamed/M -lamella -lamellae -lamellar -lamellate -lamellibranch -Lamellibranchia -lamellibranchs -lamelliform -lamellipodia -lamellipodial -lamellipodium -lamellose -lameness/S -lament/SnDlG7N -lamentable/P -lamentation/M -lamented/U -lamers -lamina/Mn -laminae -laminar -laminate/DGS -lamination/M -lamish -lamium/S -lammergeier -lammergeyer -Lamont -lamp-post/S -lamp/GDSM -lampblack/SM -lampbrush -lamper -Lampeter -lamplight/RSM -lampoon/SDGM -lampooner/SMZ -lampoonist/S -lamppost/SM -lamprey/SM -lampshade/MS -lampstand -lamé -LAN -Lana/M -Lanai -Lanarkshire/M -Lancashire/M -Lancaster/M -lance/DRGMS -lancelet/S -Lancelot/M -lancet/MS -Lanchester/M -land-use -land/mJDRGSMp -landau/M -landaus -lander/eMS -landfall/SM -landfill/SD -landforms -landhold/RGJ -landing/M -Landis -landlady/SM -landlines -landlocked -landlord/SM -landlordism -landlubber/MS -landmark/SDGM -landmass/MS -landmine/S -Landon/M -landowner/SM -landownership/M -landowning/M -landplane/S -landrace/S -landrail -Landsburg/M -landscape/GRMSD -landside -landslide/SM -landslip/S -landward/S -Landwehr -lane/SM -Lang/M -Lange -Langer -Langford -Langland/M -Langley -Langlois/M -Langmack/M -langouste/S -langoustine/S -language/SM -LanguageTool -languid/PY -languidness/S -languish/SkDG -languisher/M -languor/SM -languorous/Y -lank/T2PYZ -Lanka/M -Lankan/S -lankiness/S -lankness/S -lanky/TP -lanolin/SM -Lansbury/M -Lansing -lantern/MS -lanthanide/M -lanthanum/M -lanyard/SM -Laois/M -Laos/M -Laotian/S -lap/DScGM -laparoscope -laparoscopic -laparoscopically -laparoscopy/S -laparotomy/S -lapboard/MS -lapdog/S -lapel/MS -Laphroaig -lapidary/SM -lapin/MS -lapis -Laplace -Lapland/RM -Lapp -lappet/MS -laps/SGD -lapse's -lapse/FDAGS -lapser/AM -laptop/MS -lapwing/SM -Lara -Laramie -larboard/SM -larcenist/S -larcenous -larceny/SM -larch/MS -lard/FMS -larded -larder/SM -larding -lardy/T -Laredo -Large -large-scale -large/TPY -largehearted -largemouth -largeness/S -largess/SM -largesse -largish -largo/S -lariat/DSGM -Larine -lark/MGDS -larker/M -Larkin/M -larkspur/SM -Larousse -Larry/M -Lars -Larsen -Larson -larva/M -larvae -larval -Larwood/M -laryngeal/SY -larynges -laryngitides -laryngitis/M -larynx/M -Las -lasagne/M -Lascelles/M -lascivious/YP -lasciviousness/S -lase/SRG -laserdisc/S -lash-up -lash/SDMJG -lashed/U -lasher/M -lashing/M -lass/MS -Lasseter/M -lassie/SM -lassitude/MS -lasso/MSDG -lassoer/M -last-ditch -last-minute -last/YDGSkJ -lastage -lasted/e -lasting/P -Lastingham/M -lasts/e -Laszlo/M -latch/GMDS -latched/U -latches/U -latching/M -latchkey/SM -late/PTY -latecomer/MS -latency/SM -lateness/S -latent/Y -later/A -lateral/FSY -Lateran/M -laterigrade -laterite/W -latest/S -LaTeX/M -latex/SM -lath/SDRyGM -Latham/M -lathe/SM -lather/d -latherer/M -Lathia/M -lathing/M -Lathrop -latices/M -Latin/M -Latinate -Latinism/S -Latinist -Latino/S -latish -latitude/MS -latitudinal/Y -latitudinarian/S -latitudinary -Latium/M -latrine/SM -Latrobe/M -latte/S -latter-day -latter/YM -lattice/GSDM -latticework/SM -latticing/M -Lattimer -Latvia/M -Latvian -laud/SlDG7 -laudanum/MS -laudatory -lauder/M -Lauderdale -lauds/M -Laue/M -laugh/7RSlGkDJ -laughable/P -laughing/M -laughingstock/SM -laughter/SM -Launce -Launceston -launch/GADS -launcher/SM -launching/S -launchpad/S -launder/rdS -laundered/U -launderette/MS -laundress/SM -laundrette/S -laundromat/S -laundry/5SmM -Laura/M -Laurasia -Laurasian -laureate/S -laureateship/MS -laurel/SMDG -Lauren -Laurence -Laurent/M -Laurie/M -laurustinus -Lausanne/M -lava/SM -lavage/SM -Laval -lavatera -lavatorial -lavatory/SM -lave/DSG -lavender/dSM -LaVey -Lavin/M -lavish/DPTSGY -lavishness/S -law-abiding -law/eSM -lawbreaker/SM -lawbreaking/SM -lawful/UY -lawfulness/MS -lawgiver/SM -lawgiving/M -lawless/PY -lawlessness/S -Lawley/M -lawmaker/SM -lawmaking/M -lawn/MS -lawnmower/S -Lawrence -Lawrenceville -lawrencium/M -Lawrie/M -Lawson -lawsuit/SM -Lawton -lawyer/YMdS -lax/vuTYSPV -laxative/SMP -laxes/A -laxity/MS -laxness/S -lay-by -lay-bys -lay-off/SM -lay/CRGS -layabout/MS -layer/dC -layering/M -layette/SM -laying/ca -layman/M -laymen/M -layout/SM -layover/MS -laypeople -layperson/S -lays/faAec -layshaft/S -Layton/M -layup/MS -laywoman/M -laywomen -Lazar -Lazarist/S -Lazarus -laze/GZDS -laziness/S -Lazio/M -lazuli/M -lazy/GDTPY -lazybones/M -lb -LBJ -lbs -lbw -LCD/M -LDAP -le/Gz3 -lea/SM -leach/SDG -lead-free -lead/GSRD -leaded/U -leaden/PY -Leadenhall -leader's/a -leader/p -leadership/MS -leading/a -leads/a -leadwork/S -leaf-like -leaf/pSD2GMZ -leafage/SM -leafbird/S -leafhopper/MS -leaflet/MdS -leafstalk/MS -leafy/TP -league/FMDGS -leaguer/SM -Leah -leak/DZS2GM -leakage/SM -leaker/MS -Leakey -leakiness/S -leaky/TP -lean-burn -lean/JYGDTPS -Leander/M -leaner/M -leaning/M -leanness/S -leant -leap/DGS -leaper/M -leapfrog/MSGD -leapt -Lear/Z -learn/UGSAD -learned/PY -learner/SM -learning/SM -learnt -leas/GRSD -lease/ARGMSD -leaseback/MS -leasehold/RMS -leash's -leash/GSUD -leasing/M -least/S -leastwise -leather/SMZd -Leatherdale -leatherette/S -leathern -leatherneck/SM -leave-taking -leave/GSJDR -leaven/dSM -leavened/U -leavening/M -Leavenworth -leaves/M -leaving/M -Lebanese -Lebanon/M -lebensraum -Lebesgue -Leblanc -lecher/SMZ -lecherous/YP -lecherousness/S -lechery/SM -Lechner/M -lecithin/SM -lecithotrophic -lectern/MS -lectin/S -lectionary/S -lector/S -lecture/RGDSM -lectureship/SM -LED's -led/a -Leda -ledge/RMS -LEDs -Lee -Lee-Enfield -Lee-Metford -lee/SyM -leech/GSM -Leedham/M -Leeds -leek/MS -leer/DGkS2 -leeriness/S -leery/TP -Leeuwenhoek/M -leeward/S -leeway/SM -left-click -left-footed -left-hand/DiRh -left-wing/R -left/ZS3T -leftish -leftism/MS -leftmost -leftover/MS -leftward/S -lefty/S3M -leg-bye -leg-cutter -leg-spinner/MS -leg/omDSbM2pNGJZn -legacy/SM -legal/Q8q-S -legalese/MS -legalism/MS -legalist/S -legalistic/Y -legality/ISM -legally/I -legals/I -legate's/C -legate/CDASnGN -legatee/MS -legation/AMC -legato/SM -legend/MS -legendary/YS -Legendre/M -legerdemain/MS -legginess/S -legging/M -leggy/TP -leghorn/MS -legibility/MIS -legible/IY -legibly/I -legion/SMy -legionary/S -legionnaire/SM -legislate/vVSGnDN -legislation/M -legislative/S -legislator/MS -legislature/MS -legit -legitimacy/ISM -legitimate/YGQND -legitimated/I -legitimately/I -legitimating/I -legitimisation -legitimise/SGD -legitimiser -legitimization/M -legitimize/NDnG -Lego/M -legroom/SM -legstraps -legume/SM -leguminous -legwork/MS -Lehigh -Lehman/M -lei/SM -Leia/M -Leibniz -Leica/M -Leicester/M -Leicestershire -Leiden -Leif -Leigh -Leighton -Leila -Leipzig/M -leisure/MSYD -leisureliness/S -leisurely/P -leisurewear -Leith/M -leitmotif/MS -leitmotiv/SM -Leitrim/M -Leland/M -Lemke -lemma/MS -lemmatisation -lemmatise/SGD -lemmatize/SGDN -lemme/JG -lemming/M -lemnisci -lemniscus -lemon/MS -lemonade/SM -lemongrass -lemonwood -lemony -lemur/SM -Len/M -Lena/M -Lenah/M -lend/SRG -length/zSZ2M -lengthen/Sd -lengthener/M -lengthiness/S -lengthways -lengthwise -lengthy/TP -lenience/ZS -leniency/SM -lenient/Y -Lenin/M -Leningrad -Leninism -Leninist -lenitive/S -Lennon/M -Lennox/M -Lenny -Leno -Lenore/M -lens/SDGM -lenser/S -lent/A -Lenten -lenticular -lentiform -lentil/SM -lento/S -Leo -Leominster -Leon -Leona -Leonard/M -Leonardo/M -Leone/M -Leonid/M -leonine -Leonov/M -leopard/SM -leopardess/MS -leopardskin -Leopold/M -Leopoldville -leotard/SM -leper/SM -Lepidoptera -lepidoptera -lepidopteran/S -lepidopterist/S -lepidopterous -leprechaun/SM -lepromatous -leprosarium/S -leprosy/SM -leprous -lepta -leptin -leptocephali -leptocephalus -leptomeningeal -leptomeninges -lepton/SM -leptospirosis -leptotene -Lermond/M -Leroy -Les -lesbian/MS -lesbianism/MS -lesbigay/S -lesbo/S -Lesbos -lesion/GDMS -Lesley -Leslie/M -Lesotho/M -less/U -lessee/SM -lessen/dS -lesser -lesson/dMS -lessor/MS -lest -Lester -let's/e -let-down/SM -let-out -let/URMGS -Letchworth/M -lethal/Y -lethality/M -lethargy/1SMW -Lethe/M -Letitia/M -lets/e -letter/drmJ -letterbox/S -lettered/U -letterhead/MS -lettering/M -letterpress/MS -letterset -letting/S -lettuce/MS -letup/SM -leucine -leucocyte/SW -leucoderma -leucoma -leucotomy/S -leukaemia/M -leukocyte/MS -Lev -Levada/M -Levant -LeVar/M -levator/S -levee/S -level-headed/Y -level-headedness/S -level/SDTPRGY -levelness/S -Leven/M -lever/dMS -leverage/DMGS -Leverhulme/M -Levi/SM -leviathan/SM -Levin/M -Levine -Levinson -levitate/DGNSn -levitation/M -Leviticus -levity/SM -levodopa -levy/SDRG -Lew/M -lewd/TPY -lewdness/S -Lewellys -Lewes -Lewis/M -lewis/M -Lewisham -Lewrie/M -lexeme/MS -lexical/Y -lexicographer/SM -lexicography/1WwMS -lexicological/Y -lexicology -lexicon/SM -lexigram/S -Lexington -lexis -Lexus/M -Leyden -Leyland/M -Leysdown -Leyton -lg -LG/M -LGA -LGPL -Lhasa -Li -liability/SAM -liable -liableness/A -liaise/DSG -liaison/MS -Liam/M -Liana -liana/S -liane/S -liar/SM -Lib-Lab -lib/DGSnM -Lib/Z -libation/M -Libby/M -libel/DRSMG -libellous/Y -Liberace -liberal/IY -liberalise/DGnSR -liberalism/MS -liberality/SIM -liberalization/M -liberalize/DGNSRn -liberalness/SM -liberals -liberate/nN -liberates -liberation/CM -liberationists -liberator/MCS -Liberia/M -Liberian/S -Liberman/M -libero -libertarian/SM -libertarianism/M -libertine/SM -liberty/SM -libertyless -libidinal -libidinally -libidinous/YP -libido/MS -libitum -LIBOR -Libra -libra -librae -librarian/MS -librarianship -library/SM -LibreOffice/M -libretti -libretto/3MS -Libreville/M -Librium -Libya/M -Libyan/S -lice/M -licence/SM -licensable -license/SGD -licensed/U -licensee/SM -licenser/M -licensor/MS -licentiate/SM -licentious/PY -licentiousness/S -lichee/M -lichen/SM -lichened -lichenology -lichenous -Lichfield -Lichtenberg/M -Lichtenstein -licit/IY -lick/JDSG -licker/M -lickerish -licking/M -licorice -lid/MpGDS -Liddell/M -lido/SM -lie-down -lie-in/S -lie/FGcSf -Lieberman/M -Liebeskind/M -Liebfraumilch -Liebmann/M -Liechtenstein/RM -lied/M -lieder -lief/A -liege/S -lien/MS -lier's/F -lies/A -lieu/M -lieut -lieutenancy/SM -lieutenant/SM -lieux -life-and-death -life-giving -life-preserver -life-raft/SM -life-size/D -life-support -life-threatening -life/RpM -lifebelt/MS -lifeblood/SM -lifeboat/MS -lifeboatmen -lifebuoy/S -lifeforms -lifeguard/SGDM -lifeless/PY -lifelessness/S -lifelike/P -lifeline/SM -lifelong -lifesaver/SM -lifesaving -lifespan/S -lifestyle/S -lifetaking -lifetime/MS -lifework/MS -lifeworld/S -Lifford -LIFO -lift-off/MS -lift/RDSGM -ligament/MS -ligand/MS -ligate/NnDSG -ligation/M -ligature/MDGS -light-fingered -light-headed -light-headedness -light-hearted/PY -light-heartedness/S -light-pen/MS -light/JTDRSPMGY -lightbulb/SM -lighted/CU -lighten/drS -lightening/M -lighthouse/SM -lighting/M -lightness/S -lightning/DMS -lightproof -lights/CA -lightsaber/S -lightsabre/S -LightScribe -lightship/SM -lightweight/S -lightwork/R -ligneous -lignin -lignite/SM -lignum -Liguria -Ligurian/S -like-minded -like/DGE7S -likeability/SM -likeable/UP -likeableness/S -likelihood/UMS -likeliness -likely/TU -liken/dS -likeness/MS -liker/M -likest -likewise -liking/MS -Lila/M -lilac/MS -Lilburne/M -Lilienfeld/M -Lilienthal/M -Lilith/M -Lillee/M -Lillian/M -Lillie -Lilliput -Lilliputian/S -lilly -Lilongwe/M -lilt/SGDMk -liltingness -lily-livered -lily-white -lily/SDM -Lima/M -Limavady/M -limb/SDMWp -limber/dUS -limbo/DSMG -Limburger -lime/GMDZS -limeade/MS -limekiln/M -limelight/GMS -limepit -Limerick/M -limerick/SM -limescale -limestone/MS -limewash/SGD -limit/rndpMSgl -limitary -limitation/MC -limitative -limited/UC -limitedly/U -limitedness/M -limiter/CMS -limitless/PY -limitlessness/S -limitrophe -limitrophous -limits/C -limn/DSG -limnological -limnologist/S -limnology -limo/S -limonite/W -limousine/SM -limp/STGDPY -limper/M -limpet/MS -limpid/YP -limpidity/SM -limpidness/S -limpness/S -Limpopo -limy/T -Lin/M -linage/SM -linchpin/SM -Lincoln/M -Lincolnshire/M -Lind/M -Linda/M -lindane -Lindbeck/M -Lindberg/M -Lindbergh/M -linden/MS -Lindisfarne/M -Lindley/M -Lindquist/M -Lindsay/M -Lindsey/M -Lindstrom/M -line's/e -line-up/S -line/SmJRGMD -lineage/MS -lineal/Y -lineality -lineament/MS -linear/tYQ -linearisation -linearities -linearity/FM -linebacker/MS -lined/fUAe -linefeed -lineman -linemen -linen/SM -lines/eAf -lineside/S -ling/f -linger/drkS -lingerie/SM -lingo/M -lingoes -lingua/Mo -lingual/S -linguine -linguini's -linguist/MWS1 -linguistic/S -linguistical -linguistician/S -linguistics/M -liniment/SM -lining's -lining/feA -link-up/S -link/7RSMJDG -linkage/SM -linkbait -linked/U -LinkedIn/M -linkman -linkmen -links/U -Linn/M -Linnaeus/M -linnet/MS -lino/M -linoleate -linolenate -linolenic -linoleum/SM -linoleumed -Linotype/M -linseed/MS -lint/ZSMG -lintel/SM -linter's -Linton -linty/T -Linus -Linux/M -liny/T -lion/QSM-s -Lionel -lioness/MS -lionfish/S -lionhead -lionheart/S -lionhearted -lionization/M -lionize/D -lionizer/M -lip's/f -lip-read/GSJ -lip-reader -lip-service -lip-sync -lip-synch -lip/pSDZGM -lipase/M -lipid/MS -liplike -lipoic -lipopolysaccharide/S -lipoprotein/S -liposculpture -liposome/S -liposuction/S -Lippincott/M -lippy/T -Lipschitz/M -Lipscomb/M -lipslide/S -lipstick/MS -Lipton/M -liq -liquefaction/MS -liquefy/DRSG -liqueur/MS -liquid/9n8YPQ-SMsq -liquidate/DGS -liquidation/M -liquidator/MS -liquidity/SM -liquor/MS -liquorice/SM -liquorish -lira/M -lire -Lisa/M -Lisbon/M -Lisburn/M -lisinopril -lisle/MS -Lismore/M -lisp/RMSGD -Lissajous -lissom/P -lissome/P -list/DGJp -listed/U -listen/rdS -listenability -listenable -listenership -Lister/SM -listeria -listing/M -listless/PY -listlessness/S -Liszt -lit/R -litany/MS -litchi/S -literacy/SMI -literal-minded -literal/YSP -literalise -literalism/M -literalist/S -literalistic -literality -literalize -literalness/S -literariness/S -literary/P -literate/4NS -literately/I -literateness -literates/IK -literati -literation/M -literature/MS -lithe/YPT -litheness/S -lithesome -lithic -lithium/M -lithograph/RMZW1SDG -lithography/MS -lithology/SMw -lithosphere/WSM -lithostratigraphic -lithostratigraphy -lithotripsy -lithotripter/S -lithotriptic -lithotriptor/S -Lithuania/M -Lithuanian -litigant/MS -litigate/SNnDG -litigation/M -litigator/SM -litigious/PY -litigiousness/S -litmus/SM -litotes/M -litre/SM -litter/d -litterbug/MS -litterer/S -littermate/S -little-endian -little-minded/P -little/TP -littleneck/M -littleness/S -Littleton -Litton -littoral/S -littérateur/S -liturgics's -liturgy/S3M1w -live/yRGTDPJY7S -liveability/SM -liveable/YP -lived-in -lived/Ae -livelihood/SM -liveliness/S -livelong/S -lively/TP -liven/dS -liver/CdSZ -liveries/C -liverish -Livermore -Liverpool/M -Liverpudlian/SM -liverwort/MS -liverwurst's -livery/DmMS -lives/M -livestock/MS -livestream/SGD -livid/PY -living/eA -Livingston -Livingstone -Livonia -lixiviation -Liz/MZ -lizard/MS -lizardfish/S -Lizzie -Ljubljana/M -ll/C -llama/MS -Llanelli/M -llano/MS -LLB -LLC/S -LLD -Llewellyn -Lloyd/M -lo -lo-fi -lo-res -loach/S -load/RSDGMJ7 -loaded/AKcU -loading/M -loads/AUc -loadstar's -loadstone's -loaf/MRDGS -loam/ZSM -loamy/T -loan/RMS7GD -loanee/S -loaning/M -loansharkings -loanword/S -loath/JGDPR -loathe/S -loathing/M -loathsome/PY -loathsomeness/S -loaves/M -lob/MRDGSZ -Lobachevsky -lobar -lobby/3DMGS -lobe/DSM -lobotomist -lobotomy/QSM -lobster/dSM -lobular/Y -lobularity -lobule/MS -local/qYQs8S9- -locale/SM -localhost/S -localisable -localism/S -localist/S -locality/SM -localizable -localization/M -locatable/A -locate/ASGFENnD -locater/M -location/EMAF -locational/Y -locative -locator/SM -loch/M -lochia -lochial -lochs -loci/M -lock-up/MS -lock/RSDGM7 -Locke -locked/UA -Lockerbie/M -locket/SM -Lockhart/M -Lockheed/M -lockjaw/SM -locknut/M -lockout/SM -locks/UA -locksmith/SMG -locksmithing/M -locksteps -Lockwood/M -loco/GSM -locomobile -locomobility -locomote/SGD -locomotion/MS -locomotive/YMS -locomotiveness -locomotivity -locomotor -locomotory -locoweed/SM -locum/S -locus/M -locust/SM -locution/SM -lode/MS -lodestar/SM -lodestone/SM -lodge/LRSDGJM -lodged/E -lodgepole -lodges/E -lodging's -lodging/E -Loeb/M -loft/SDz2GMZ -lofter/M -loftiness/S -lofty/TP -log/JGMWRw1DS -Logan -loganberry/MS -logarithm/W1SM -logbook/MS -loge/MS -logfile/S -loggerhead/MS -loggia/MS -logging/M -logia -logic/IMSY -logical/P -logicality/MIS -logician/MS -logicically -logicism -login/S -logion/M -logistic/MYS -logistical -logistician/S -logjam/SM -logo/SM -logoff/S -logogram/S -logon/S -logotype/SM -logout/S -logrolling/SM -Lohengrin -loin/SM -loincloth/MS -Loire -Lois -loiter/dSr -Loki/M -LOL -Lola -lolcat/S -Lolita/S -loll/DGYS -loller/M -lollipop/SM -lolly/MS -Lomb/M -Lombard/Z -Lombardy/M -Lomé/M -London/rM -Londonderry/M -lone/PRY -loneliness/S -lonely/TP -lonesome/PSY -lonesomeness/S -long-ago -long-awaited -long-distance -long-drawn -long-drawn-out -long-faced -long-lasting -long-legged -long-life -long-lived -long-lost -long-playing -long-range -long-running -long-sighted/Y -long-sightedness -long-standing -long-stay -long-suffering/Y -long-tailed -long-term -long-termism -long-time -long-waisted -long-winded -long-windedly -long-windedness -long/GPSDTkJ -longan/S -longboard -longboat/MS -longbow/SM -Longbridge -longdog -longeing -longer-term -longevity/MS -Longfellow -Longford/M -longhair/SM -longhand/SM -longhorn/SM -longing/M -longish -longitude/MS -longitudinal/Y -longline -longlist/S -Longmire/M -longship/S -longshore -longstop -Longstreet/M -longsword -longueur/SM -longways -longwise -Longyearbyen/M -Lonsdale/M -loo/M -loofah/SM -look/eSc -lookahead -lookalike/S -lookaside -looked/Uc -looker-on -looker/SM -lookers-on -looking-glass/S -looking/c -lookism -lookist -lookout/SM -lookup/MS -loom/SDGM -looming/M -Loomis -loon/ZSM -Looney/M -loony/TS -loop/DMZSG -loopback/S -looper/MS -loophole/SMGD -loopy/T -loose-leaf -loose/PYGSDT -loosed/U -loosen/dSU -loosener/S -looseness/S -looses/U -loosestrife -loosing's -loosing/U -loot/RSDGM -lop/dDRGS -lope/S -loper/M -Lopez -lophophore -lopsided/PY -lopsidedness/S -loquacious/PY -loquaciousness/S -loquacity/MS -lord/DcSMG -lording/M -lordless -lordliness/S -lordly/TP -Lordship/MS -lordship/S -lore/SM -Loren/M -Lorentz -Lorentzian -Lorenz/M -Lorenzo/M -Loretta -lorgnette/MS -Lori/M -lorikeet/S -loris/M -lorn -Lorraine -lorry/MS -lorryload/S -Los -losable -lose/RSG -loss-leader/S -loss/SpMZ -lossy/T -lost -lot/MS -Lothario/S -Lothian/M -loti -lotion/MS -lottery/SM -lotto/SM -lotus/SM -Lou/M -louche/P -loud-mouthed -loud/YTP -louden/d -loudhailer/S -loudmouth/MS -loudness/S -Loudoun/M -loudspeaker/SM -loudspeaking -Loughborough/M -Louie/M -Louis/M -Louisa/M -Louisbourg/M -Louise/M -Louisiana/M -Louisianan -Louisville/M -lounge/DRSG -loupe/MS -lour/SDG -Lourdes -louse's -louse/CDSG -lousewort/M -lousiness/S -lousy/TPY -lout/MS -Louth/M -loutish/YP -louvre/MSD -lovable/P -lovableness/S -love-child -love/pMk7RSYlDG -lovebird/MS -loved/U -Lovejoy -Lovelace -Loveland -loveless/PY -lovelily -loveliness/S -Lovell -lovelock/S -lovelorn/P -lovely/TSP -lovemaking/M -lovesick -lovestruck -Lovett/M -loving-kindness -loving/U -lovingness/M -low-born -low-cal -low-carb -Low-Churchism -low-class -low-cost -low-cut -low-down/S -low-emission -low-fat -low-fi -low-grade -low-income -low-key -low-level -low-lying -low-noise -low-pitched -low-profile -low-res -low-spirited -low/DGSTYP -lowbrow/SM -Lowe/My -Lowell -lower-case -lower-class -lower-level -lower/Sd -lowercase/SGD -lowermost -lowish -lowland/MRS -lowlife/MS -lowlight/MS -lowliness/S -lowly/PT -Lowman/M -lowness/S -lox -Loy -loyal/3Y -loyalism/SM -loyalist -loyally/E -loyalty/ESM -Loyola -lozenge/DSM -LP/S -LPG -ls/I -LSD -Lt -Lt. -Ltd -LTR -LTS -Lu -Luanda/M -luau's -lubber/MSY -Lubbock -lube/SGMD -Lubow/M -lubricant/MS -lubricate/DSNGnV -lubrication/M -lubricator/SM -lubricious/Y -lubricity/MS -Lubumbashi -Lucan -Lucas/M -Lucasfilm/M -Luce -lucent/4Y -Lucerne -Lucia/M -Lucian/M -lucid/YP -lucidity/MS -lucidness/S -Lucien -Lucifer/M -Lucille -luck/zMZpS2DG -luckiness/SM -lucky/TUY -lucrative/P -lucrativeness/S -lucre/vMVuS -Lucretia -Lucretius -lucubrate/GnSND -lucubration/M -Lucy/M -Luddism -Luddite/S -Ludditism -luderick -Ludhiana -ludic -ludicrous/PY -ludicrousness/S -Ludlow/M -Ludmilla -ludo/M -Ludovic -Ludwig/M -luff/MSDG -Lufthansa/M -Luftwaffe/M -lug/DRGS -luge/CM -luger -luggage/MS -lughole/S -lugsail/MS -lugubrious/PY -lugubriousness/S -lugworm/S -Luis -Luke/M -lukewarm/PY -lukewarmness/S -lull/GSD -lullaby/DSGM -lulu/MS -lumbago/MS -lumbar -lumber/rdSM -lumbering/M -lumberjack/MS -Lumberton/M -lumen/MS -luminaire/S -luminance/M -luminary/MS -luminescence/MS -luminescent -luminosity/SM -luminous/YP -Lumière/M -lummox's -lump/GDZ2SM -lumpectomy/S -lumpen -lumper/M -lumpfish/S -lumpiness/S -lumpish/YP -lumpsucker/S -Lumpur/M -lumpy/PT -Luna/M -lunacy/SM -lunar/S -lunate/WY -lunatic/S -lunation/M -lunch-time -lunch/SDMG -luncheon/MS -luncheonette/MS -luncher/M -lunchpack -lunchroom's -lunchtime/MS -Lund/M -Lundberg/M -Lundquist/M -lune/NM -lunette -lung/DMGS6 -lunge/SM -lunger/M -lungfish/MS -lungful/S -lungworm/S -lungwort/S -lunisolar -Lupe/M -lupin/S -lupine/SM -lupus/MS -lurch/GSD -lurcher/MS -lure/GDS -lurer/M -lurex -lurgy/S -lurid/PY -luridness/S -lurk/RGDS -Lusaka/M -luscious/YP -lusciousness/S -lush/TPY -lushness/S -Lusitania -lust/GZSDjz62M -lustful/P -lustiness/S -lustral -lustrate/DN -lustre/pSMGD -lustring/M -lustrous/YP -lusty/TP -lutanist/SM -lute/SGMD -lutein -lutenist/SM -lutetium/M -Luther/M -Lutheran/MS -Lutheranism -luting/M -Luton/M -Lutz -lux -luxate/DGN -luxe's -luxe/C -Luxembourg/RM -Luxembourgian -Luxembourgish -Luxenbourg/M -luxes -Luxor/M -luxuriance/SM -luxuriant/Y -luxuriate/NSGDn -luxuriation/M -luxurious/YP -luxuriousness/S -luxury/SM -Luzius -Luzon/M -lx -lyceum/MS -lychee/SM -Lycia/M -Lycian/S -lycophyte/S -lycopod/S -lycopodium/M -Lycra -lycée -Lydgate/M -Lydia -Lydian/S -Lydiat/M -lye/M -lying/e -lyingly -Lyle/M -Lyman/M -Lyme -lymph/SM -lymphadenopathy -lymphangitis -lymphatic/S -lymphocyte/SM -lymphocytic -lymphoid -lymphoma/MS -Lyn -lynch/GRDSJ -Lynch/M -Lynchburg -lynching/M -lynchpin/S -Lynde/M -Lyndon -Lynette/M -Lynn/M -Lynne/M -lynx/SM -Lyon/MS -Lyotard/M -Lyra -lyre/MSwW1 -lyrebird/SM -lyric/3S -lyrical/P -lyricism/SM -lyricist -lyrist -Lysenko/M -lysine/M -Lysol -lysosomal -lysosome/S -lysozyme -lytic -lytically -Lyttleton -László/M -Lévi/M -m -M-DISC/M -M.Sc. -mA -MA -ma'am -ma/FMS -Maastricht/M -Maathuis -Mabel/M -mac/SM -macabre/Y -macadam/QMS -macadamia/S -Macalister/M -Macanese -Macao -macaque/MS -macaroni/M -macaronic -macaronies -macaroon/MS -MacArthur/M -Macau -Macaulay/M -Macaulayan -Macaulayesque -macaw/MS -Macbeth -Macclesfield -MacColl/M -MacDiarmid/M -MacDonald/M -MacDraw/M -mace-bearer/S -mace/SMGD -Macedon -Macedonia/M -Macedonian -macer/M -macerate/DGSnN -maceration/M -MacGregor/M -MacGyver/M -Mach -machete/SM -Machiavelli -Machiavellian -machinability -machinable -machinate/GSD -machination/M -machine-gun/DGS -machine-readable -machine/DM3SGNyn -machinelike -machinery/SM -machismo/SM -Machmeter -macho/S -Machulis -Maciej/M -macintosh/SM -MacIntyre -mack/M -Mackenzie -MacKenzie/M -mackerel/SM -Mackie -mackintosh/SM -Maclean/M -Macleay/M -MacMillan/M -Macmillan/M -Macon -MacOS -MacPherson/M -macramé/S -macro/SM -macrobiotic/S -macrobiotics/M -macrocephalic -macrocephalous -macrocephaly -macrocopy/S -macrocosm/SM -macrocycle -macrocyclic -macrodiagonal -macrodome -macrodynamic -macroeconomic/S -macroeconomics/M -macroevolution -macroevolutionary -macrofossil -macrofungus -macrogamete -macrogametocyte -macrolanguage/S -macrolide/S -macrolinguistics -macromolecular -macromolecule/SM -macromutation -macron/SM -macronuclear -macronuclei -macronucleus -macrophage/MS -macrophagous -macrophallic -macrophotograph -macrophotography -macroscopic/Y -macrosimulation -macrosocio-economic -macrospore -macrosystem/S -MacSween/M -macula -maculae -macular -maculate/DN -macumba -Macy/M -mad/RTYPGD -Madagascan/MS -Madagascar/M -madam/SM -madame/M -madcap/S -madden/dkS -Maddock/M -Maddox -Maddy/M -made-up -made/AU -Madeira -Madeleine/M -Madeline/M -Madelyn/M -mademoiselle/SM -madhouse/MS -Madhya -Madion/M -Madison/M -Madjid -madman/M -madmen/M -madness/S -Madonna/M -madras -Madrid/M -madrigal/SM -Madsen/M -madwoman/M -madwomen -Mae/M -maelstrom/MS -maestri -maestro/SM -Mafeking/M -Mafia/M -mafia/S -mafic -Mafiosi -Mafioso/M -MAG -mag/S -magazine/MGDS -Magdalen/M -Magdalena -Magdalene -Magdalenian -mage/S -Magellan -magenta/MS -Maggie/M -maggot/MS -maggoty/T -Magherafelt/M -magi -magic/MYGD -magical -magician/SM -Magill -magisterial/Y -magisterium -magistracy/SM -magistrate/SM -magistrateship -magistrature/S -magma/WMS -magnanimity/SM -magnanimosity -magnanimous/Y -magnanimousness -magnate/MS -magnesia/SM -magnesian -magnesite/M -magnesium/M -magnet/WqQ8-SMt+1 -magnetic/S -magnetics/M -magnetise/CBnSDG -magnetism/SM -magnetite/MS -magnetize/CBNnSDG -magneto/SM -magnetodynamics -magnetohydrodynamical -magnetohydrodynamics/M -magnetometer/MS -magnetopause -magnetosphere/M -magnetron/M -magnification/SM -magnificence/SM -magnificent/Y -magnifico -magnificoes -magnified/U -magnify/CSGRND -magniloquence/SM -magniloquent -magnitude/SM -magnolia/SM -magnum/MS -Magnus/M -Magnuson/M -Magog/M -magpie/SM -Maguire -magus -Magyar -mah -mah-jong/M -mah-jongg/M -Maha/M -maharaja/SM -maharajah/MS -maharanee's -maharani/SM -maharishi/MS -mahatma/MS -Mahavidyalaya -Mahayana -Mahayanist -Mahdia/M -Mahler/M -mahogany/SM -Mahoney/M -mahout/SM -maid/MS -maiden/YSM -maidenhair/MS -Maidenhead/M -maidenhead/SM -maidenhood/MS -maidenliness -maidservant/MS -Maidstone/M -Maier -Maik/M -mail-order -mail/RS7GDMJ -mailbag/SM -mailboat/S -mailbox/MS -maillot/SM -mailshot/S -Mailänder -maim/RGSD -maimedness's -main/SA -mainboard/S -mainbrace/M -maincrop -Maine -mainframe/SM -mainland/RMS -mainline/RSGD -mainly -mainmast/MS -mains/M -mainsail/MS -mainsheet -mainspring/MS -mainstay/MS -mainstream/SMDR -maintain/RBSDG -maintainable/U -maintained/U -maintenance/MS -maintop/SM -maiolica's -maisonette/SM -Maisy/M -Maitra/M -maize -Maj. -majesty/WSM1 -majeure -majolica/MS -major/MS -Majorca/M -majordomo/S -majorette/MS -majoritarian/S -majoritarianism -majority/SM -majorly -Majuro/M -makable -make-believe -make-up/SM -make/GASU -makefile/S -makeover/S -maker/SM -makeshift -making/MS -Malabo/M -malachite/SM -maladapt/VD -maladjust/LDV -maladministration -maladroit/YP -maladroitness/S -malady/MS -Malagasy/M -malagueta/S -malaguetta/S -malaise/MS -Malamud -malamute/MS -Malaprop -malapropism/MS -malar -malaria/SM -malarial -malarious -malarkey/SM -malate -malathion/S -Malawi/M -Malawian/S -Malay -Malaya -Malayalam -Malayan/MS -Malaysia/M -Malaysian/S -Malbec -Malcolm/M -malcontent/MS -malcontented -malcontentedly -maldevelopment -maldistributed -maldistribution -Maldives/M -Male -male/PSM -malediction/SM -malefaction/SM -malefactor/SM -malefic -maleficence/SM -maleficent -maleness/S -malevolence/S -malevolencies -malevolent/Y -malfeasance/MS -malfeasant -malformation/MS -malformed -malfunction/GSD -Mali/M -Malibu/M -malic -malice/SM -malicious/PY -maliciousness/S -malign/YRSDG -malignancy/SM -malignant/Y -malignity/SM -malinger/drS -Malkin/M -mall/SM -mallard/SM -Mallarmé/M -malleability/MS -malleable/P -mallee/S -malleefowl -mallei -malleiform -mallein -mallemaroking -malleoincudal -malleoli -malleolus -mallet/MS -malleus -Mallory -mallow/SM -Malmesbury -malnourished -malnourishment/SM -malnutrition/SM -malocclusion/MS -malodorous -malonate/S -Malone -Malory/M -maloti -malperformance -malposed -malpractice/MS -malt/DGMZS -Malta/M -Maltese -Malthaner -Malthusian -malting/M -Malton/M -maltose/MS -maltreat/LDSG -malty/T -Malvern -malversation -malvertisement/S -malvertising -malware -mama/SM -mamba/SM -mambo/MGSD -mamma's -mammal-like -mammal/SM -mammalia -Mammalia -mammalian/MS -mammalogy/3 -mammaplasty/S -mammary/S -mammogram/S -mammographic -mammography/S -Mammon/M -mammoplasty/S -mammoth/SM -mammy/M -Mamoutzu/M -man-at-arms -man-hour/S -man-made -man-o'-war -man-of-war -man-sized -man-year/S -man/61YRGDMjW -manacle/SDMG -Managau/M -manage/LaDGS -manageability/S -manageable/U -manageableness -managed/U -manager/oSM -manageress/SM -managerial -managerialism -managerialist -managership/M -Managua -manakin/S -Manama/M -mananas -Manasseh -manatee/SM -Manchester/M -Manchu -Manchuria/M -Manchurian/S -manciple/M -Mancunian/MS -mandala/SM -Mandalay -mandamus/SdM -mandarin/SM -mandate/SMGyD -Mandel/M -Mandela/M -Mandelbrot/M -Mandelson/M -Mandeville/M -mandible/SM -mandibular -mandibulated -mandolin/MS -mandrake/SM -mandrel/SM -mandrill/MS -Mandy/M -mane/MSZ -Manet -Manfred -manfulness -manga -manganese/M -mange/MZRS2 -mangetout/S -manginess/S -mangle/GDS -mangler/M -mango/MS -mangoes -mangold -mangold-wurzel/S -mangosteen/S -mangrove/MS -Mangum/M -mangy/T -manhandle/DGS -Manhattan/M -manhole/SM -manhood/SM -manhunt/SM -Mani -mania/SM -maniac/SM -maniacal/Y -manic/S -manicure/3DSMG -manifest/DYSGNn -manifestation/M -manifestness -manifesto/SM -Manificat -manifold/PSYM -manifolder/M -manikin/MS -Manila/M -manilla/S -manille -manioc/SM -manipulatable -manipulate/BSGnyDNVu -manipulative/M -manipulator/SM -Manitoba -Manitoban -Manitowoc -mankind/M -Manley/M -manlike -manliness/S -manly/PT -Mann/M -manna/MS -manned/fU -mannequin/SM -manner/Y -mannered/U -mannerism/SM -mannerist/M -mannerliness/U -mannerly/P -Mannheim -mannikin's -manning -mannish/PY -mannishness/S -mannose -manoeuvrability/SM -manoeuvre/SBMGDJ -manoeuvred/e -manoeuvrer/S -manoeuvres/e -manoeuvring/e -manometer/SM -manor/SM -manorial -manpower/MS -manqué/M -mansard/MS -manse/XNMS -manservant/M -Mansfield -mansion/M -manslaughter/MS -Manson/M -Mansour/M -manspreading -manta/MS -mantel/SM -mantelpiece/SM -mantelshelf -mantic -manticore/S -mantid/S -mantilla/MS -mantis/MS -mantissa/MS -Mantke -mantle's -mantle/ESDG -mantling/M -Manton -mantra/SM -mantrap/SM -manual/MSY -Manuel/M -manufacture/RBSGJD -Manulife/M -manumission/M -manumit/XNSGD -manure/RMGDS -manuscript/MS -Manville -Manx -manzanita/S -manège/SGD -Mao -MAOI -Maoism -Maori -map/GRSMDJ -maple/SM -mapmaker/S -mappable -mapped/U -mapping/M -maps/A -Mapuche/S -Maputo/M -maquette/S -maquila/S -maquiladora/S -mar/DGZ -Mara -mara/S -marabou/SM -marabout's -maraca/MS -Maracaibo -maraschino/MS -Marathi -marathon/MrS -maraud/SRDG -marble/DSMGJ -marbler/M -marbling/M -Marc/MZ -Marcan -marcasine -marcasite -marcassin -marcato -Marceau/M -Marcel -marcel/SGD -marceline -Marcellian -Marcello/M -Marcellus -march/DRSG -Marchington/M -marchioness/MS -Marcia/M -Marcie/M -Marcin/M -Marcinkiewicz/M -Marco/MS -Marconi -Marcum/M -Marcus -Marden/M -Mardi -mare/SM -Margaret/M -margarine/SM -margarita/SM -margarodid -Margate -margate/S -margay/S -Marge/y -Margery/M -margin/oMdS -marginal/Q8q-S -marginalia -marginality -Margo/M -Margolin/M -Margot/M -Marguerite -maria/M -mariachi's -Marian/M -Mariana/S -Marianas/M -Marianne/M -Marie/M -Mariel/M -Marietta -marigold/SM -Marigot/M -marijuana/SM -Marilyn/M -marimba/MS -Marin -Marina -marina/nMS -marinade/DMGS -marinara/SM -marinate/SGD -marination/M -marine/RSN -Marino/M -Mario -Mariological -Mariologist/S -Mariology -Marion -marionette/MS -Marisol/M -Marissa/M -marital/KY -maritime -maritimer -Marius -marjoram/MS -Marjorie -Marjory/M -mark's/A -mark-up/MS -mark/RmDJhGSM7 -markdown/MS -marked/AU -markedness -market/g7rSMdJ -Marketa/M -marketability/MS -marketable/U -marketeer/S -marketing/M -marketplace/MS -Markey/M -Markham/M -marking/M -markka/M -Markov/M -Markovitz/M -marks/A -marksmanship/S -markup -marl/SGDM -Marland/M -Marlboro/M -Marlborough/M -Marlene/M -Marley/M -marlin/SM -Marline/M -marlinespike/SM -Marlow/M -Marlowe/M -Marmaduke/M -marmalade/SM -Marmite -marmoreal -marmoset/SM -marmot/SM -maroon/SDG -marooner -marque/MS -marquee/SM -Marquess/M -marquess/MS -marquetry/MS -Marquette -marquis/MS -marquise/M -marquisette/MS -Marrakesh -marriage's/A -marriage/MBS -marriageability/SM -marriages/A -married/S -Marriott -marrow/MS -marrowbone/MS -marry/DGSA -Mars -Marsden -Marseillaise -Marseilles -marsh/MZS2 -Marsha -marshal/JRSGDM -Marshall/M -marshalship -Marshfield/M -marshland/MS -marshmallow/MS -marshy/PT -Marston/M -marsupial/MS -mart/MGSD -Marta -Martel -martellato -Martello/S -martempered -martempering -marten/MS -martensite/W -Martha -martial/Y -Martian/S -martin/SM -Martina/M -Martineau/M -martinet/MS -Martinez -martingale/MS -Martini/SM -martinique -Martinique/M -Martinson -Martinsville/M -Martorell/M -Marty -martyr/MGDS -martyrdom/MS -martyrological -martyrologist -martyrology/S -marvel/GDS -Marvell -marvellous/Y -Marvin/M -Marx/3M -Marxian -Marxism -Marxist -Mary/M -Maryland/M -Marylanders -Marylebone/M -Marysville/M -marzipan/SM -mas/rGWD -Masai -Masayuki/M -masc -Mascagni -mascara/DGSM -mascot/MS -masculine/YP -masculinism -masculinist/S -masculinity/MS -masculist/S -Maseru/M -mash-up/S -mash/RJSGDM -Mashona -Mashonaland -masjid/S -mask/JRDMSG -masked/U -masks/U -masochism/SM -masochist/SWM1 -mason/SdyWM -Masonite -masonry/SM -Masood/M -masque/RSM -masquerade/MRSDG -mass-market -mass-produced -mass-producing -mass/pSVvu -Massa -Massachusetts -massacre/MGDS -massacrer -massage/DMSG -massager/M -Massart/M -Massenet -masseter -masseur/SM -masseuse/SM -Massey/M -massif/SM -Massimo/M -massive/P -massiveness/S -mast/DRSMG -mastectomy/SM -master-class/SM -master-stroke/MS -master-work/S -master/AdScp -MasterCard -masterdom -masterful/PY -masterhood -mastering/S -masterliness -masterly -mastermind/GDS -masterpiece/MS -mastership/M -mastery/MS -masthead/GSDM -mastic/NSnM -masticate/DGS -mastication/M -mastiff/SM -mastodon/SM -mastoid/S -mastoiditis -masturbate/GSnDNy -masturbation/M -masturbator -Masuoka/M -mat/dRMDJGS -Mata-Utu/M -Matabele/S -Matabeleland -matador/SM -Matangi/M -match's/A -match/eGDaS -matchable/U -matchbook's -matchbox/SM -matched/AU -matcher/MS -matches/A -matching/c -matchings -matchless/Y -matchlock/MS -matchmake/RJG -matchmaking/M -matchplay -matchstick/SM -matchwood/SM -mate/MzJS -Mateo/M -mater/Mo -material/qs39S-MPQ8 -materialism/MS -materialist/W1 -materiality/IM -materialization/M -materially/I -materialness/I -materiel -maternal/Y -maternity/SM -Mathematica -mathematical/Y -mathematician/MS -mathematics/M -Matheny/M -Mather -Mathews -Mathias -Mathieu -Mathis -maths -Matilda/M -matinee/S -mating/M -matins/M -matinée/S -Matisse/M -Matlab -Matlock -matriarch/MZ -matriarchal -matriarchs -matriarchy/MS -matrices -matricidal -matricide/SM -matriculate/NSGDn -matriculation/M -matrifocal -matrilateral -matriline -matrilineage -matrilineal -matrilineally -matrilocal -matrilocality -matrimonial -matrimony/oMS -matrix/M -matron/MSY -Matroska/M -Matsumoto/M -matsuri -Matsushita -Matsuyama -matt/M -matte/MS -Mattel -matter-of-fact/Y -matter/d -Matterhorn -Matthau -Matthew/S -Matthias -Matthieu/M -Mattie -matting/M -mattock/SM -mattress/MS -Mattson/M -maturate/SGD -maturation/M -mature/YDTVSxnPGN -maturely/KI -matureness/K -maturer/M -maturities/I -maturity/KMI -matzo/MS -matzoth -matériel/SM -Maud -Maude -maudlin/Y -Maugham/M -Maui -maul/DRSG -maunder/Sd -Maura/M -Maureen -Maurice -Mauricio -Maurine/M -Mauritania/M -Mauritanian/S -Mauritian/S -Mauritius/M -Mauser -mausoleum/SM -mauve/MS -Maven/M -maverick/MS -Mavis -maw/DSGM -mawkish/PY -mawkishness/S -max -Max/M -maxi/S -maxilla/yM -maxillae -maxillary/S -maxim/qQs89Mo-S -maxima/M -maximal/S -maximalism -maximalist/S -maximality -Maximilian -maximization/M -maximum/YMS -Maxine -maxing -Maxthon/M -Maxtor/M -maxwell -Maxwell/M -Maxwellian -May's -may/EG -Maya -Mayan/S -maybe/S -mayday/S -Mayer/M -Mayfair/M -mayflower/SM -mayfly/MS -mayhap -mayhem/MS -Mayhew -mayn't -Maynard/M -Mayne/M -Mayo/M -mayonnaise/MS -mayor/SM -mayoral -mayoralty/MS -mayoress/SM -mayorship/M -Mayotte/M -maypole/MS -mayst -Mazda -maze/SZMGD -mazer -mazurka/SM -mazy/T -Mazza/M -maître -mañana/M -Mb -MB -MBA/MS -Mbabane/M -Mbit -Mbps -MC -Mc -MC'd -MC'ing -MC's -McAdams -McAfee -McAllister/M -McAlpine/M -McAvan -McBride/M -McCabe/M -McCaffrey/M -McCain/M -McCall/M -McCallum/M -McCann/M -McCarthy/M -McCartney -McCarty/M -McCauley/M -McCay/M -McClain/M -McClellan/M -McClintock/M -McCloy/M -McClure/M -McCluskey/M -McConnell/M -McCormack/M -McCormick/M -McCoy/M -McCracken/M -McCrea/M -McCullagh/M -McCullers/M -McCullough/M -McDaniel/M -McDermott/M -McDevitt/M -McDiarmid/M -McDonald/M -McDonnell/M -McDougall/M -McDowell/M -McEnroe/M -McFadden/M -McFarland/M -McGarry/M -McGavin/M -McGee/M -McGill/M -McGinlay/M -McGinn/M -McGlynn/M -McGovern/M -McGowan/M -McGrath/M -McGraw/M -McGregor/M -McGuire/M -McHale/M -MCI -McIntosh/M -McIntyre/M -McKay/M -McKee/M -McKenna/M -McKenzie/M -McKesson/M -McKinlay/M -McKinley/M -McKinney/M -McKinnon/M -McKinsey/M -McKnight/M -McLane/M -McLaren/M -McLaughlin/M -McLean/M -McLeish/M -McLeod/M -McMahon/M -McManus/M -McMillan/M -McMurtry/M -McNab/M -McNally/M -McNaughton/M -McNeil/M -McNish -McNiven/M -McPherson/M -McQuarrie/M -McRae/M -MD -mdse -MDT -me/3s -mead/MS -Meade -meadow/SM -meadowland -meadowlark/SM -meadowsweet/M -Meaghan/M -meagre/Y -meagreness -meal/ZSM2 -mealiness/S -mealtime/MS -mealworm -mealy-mouthed -mealy/TPS -mean/CSG -meander/SJd -meaner -meanest -meanie/SM -meaning/M6jpS -meaningful/P -meaningfulness/S -meaningless/PY -meaninglessness/S -meanly -meanness/S -meant/U -meantime -meanwhile -meany -Meara -measles -measly/T -measurable/IU -measurably/I -measure/LSpMhlGD -measured/UA -measurement/A -measurer/M -measures/A -measuring/A -meat/ZS2pM -meataxe -meatball/SM -Meath/M -meathead/S -meatiness/S -meatloaf -meatloaves -meatpacking/S -meaty/TP -mebibit/S -mebibyte/S -Mecca/M -mechanic/SMY -mechanical/S -mechanise/BnRSDG -mechanised/U -mechanism/MS -mechanist/MW1 -mechanize/nBDNG -mechanized/U -mechanizer/M -mechanochemically -mechanoreceptive -mechanoreceptor/S -Mecoptera -mecopteran/S -mecopterous -Med -MEd -medal/MSD -medallion/MS -medallist/S -meddle/RSDG -meddlesome -Mede/S -Medfield -Medford/M -media/oMn -mediaeval/3MYS -mediaevalism -mediaevalist -medial/S -medialize/SGD -median/YSM -mediastina -mediastinal -mediastinoscopy -mediastinum -mediate/IPY -mediated -mediates -mediating -mediation/M -mediator/SM -MediaWiki -medic/NYVnMS -Medicaid -medical/S -medicament/SM -Medicare -medicate/SGD -medication/M -Medici -medicinal/S -medicine/MoS -medico-legal -medico/SM -medieval -medievalist/S -Medina/M -mediocre -mediocrity/SM -meditate/VSGDvuNn -meditated/K -meditates/K -meditating/K -meditation/KMS -meditative/P -Mediterranean -medium-sized -medium/SM -mediumism -mediumistic -mediumship -medley/MS -medroxyprogesterone -medspeak -medulla/SMy -Medusa/M -medusa/S -medusae -medusoid/S -Medway/M -meed/SM -meek/YPT -meekness/S -Meeks/M -meerkat/S -meerschaum/MS -meet/GJSY -meeter/M -meeting/M -meetinghouse/S -meetup -Meg/M -mega -megabit/SM -megabuck/S -megabyte/S -Megachiroptera -megachiropteran/S -megacity/S -megacycle/MS -megadeath/MS -megaflop/S -megahertz/M -megajoule/S -megalith/SWM -megalitre/S -megalomania/MS -megalomaniac/SM -megalomaniacal -megalomanic -megalopolis/SM -megalopolitan/S -megalosaurus/S -megamouth/M -Megan/M -megaparsec -megaphone/WMDSG -megaphonist -megaphyll/S -megaphyllous -megaphylly -megapixel/S -megaplume -megapode/S -megapolis -megaripple -megasclere -megascopic -megascopically -megasea -megaseller -megaspore/S -megastar/S -megastardom -megastore/S -megastructure/S -megaton/SM -megavolt/M -megawatt/SM -megaword/S -megohm/MS -meh -Mehring/M -Meier/M -meioses -meiosis/M -meiotic -Meister -Meistersinger -Mekong -Mel -melamine/MS -melancholia/SM -melancholiac -melancholic/S -melancholy/MSW -Melanesia -Melanesian -melange -Melanie -melanin/MS -melanisation -melanite -melanization -melanogen -melanogenesis -melanoma/SM -melatonin -Melba/M -Melbourn -Melbourne/M -Melcher/M -meld/SDG -Meldrew -melee/S -Melin/M -Melinda -meliorate/nDGNVS -melioration/M -melisma/S -melismata -melismatic -melismatics -Melissa -melliferous -mellifluous/PY -mellifluousness/S -mellitus -Mellon -mellophone -mellow/GYTPSD -mellowness/S -Melly/M -melodic/S -melodicism -melodious/U -melodiously -melodiousness/S -melodrama/WSM1 -melodramatic/S -melody/SWM1 -melon/SM -melpomenish -melt/DkSG -meltable -meltdown/S -melted/A -melter/SM -Melton -melts/A -meltwater/S -Melville/M -Melvin -Melvyn -member's -member/ASE -membered -memberless -membership/SM -membrane/MSD -membranous -meme/S -memento/SM -mementoes -memetic -memo/SyM -memoir/SM -memoires -memorabilia -memorability/MS -memorable/PY -memoranda -memorandum/SM -memorial/QS -memorially/I -memoriam -memorization/M -memory/s9Q8oq-SM -memoryless -Memphis -men-at-arms -men-o'-war -men-of-war -men/M -menace/kSGD -menagerie/SM -menarche/MS -Mencken/M -mend/GFSD -mendacious/PY -mendacity/MS -Mendel/M -mendelevium/M -Mendelssohn/M -mender/FM -menders -Mendes -mendicancy/MS -mendicant/S -mending/SM -Mendip -Mendoza -Meneghetti/M -Menelaus/M -menfolk/M -Mengele/M -menhaden/M -menial/YS -Menindee -meningeal -meninges -meningioma/S -meningiomata -meningitic -meningitides -meningitis/M -meningococcal -meningococci -meningococcus -meningoencephalitis -meninx -menisci -meniscus/M -Menlo -Mennonite/S -Menominee -menopausal -menopause/SM -menorah/SM -menorrhoea -Mensa -menservants/M -menstrual/K -menstruate/SGnND -menstruation/M -mensurable/F -mensurableness -mensuration/SM -menswear/M -mental/Y3 -mentalism -mentalist -mentalistic -mentality/MS -menthol/MS -mentholated -mention/7SRDG -mentionable/U -mentioned/fU -mentor/MSd -mentorship -menu-driven -menu/MS -Menuhin/M -meow/DSG -MEP/SM -meperidine -mephedrone -Mephisto/M -Mephistophelean -Mephistopheles -Mephistophelian -mercantile -mercantilism -mercantilist/S -Mercator -Mercedarian/S -Mercedes -Mercedes-Benz/M -mercenarily -mercenary/PMS -mercer/QMS -mercery/S -merchandise/RSDGJM -merchant/BSM -merchantman/M -merchantmen/M -Mercier -merciful/P -mercifully/U -merciless/PY -mercilessness/S -Merck/M -mercurial/S -mercurialness -Mercurochrome -mercury/oMW -mercy/S6jpM -mere/TYS -Meredith -meretricious/PY -meretriciousness/S -merganser/MS -merge/RGSD -mericarp -meridian/SM -meridional -meringue/MS -merino/MS -meristem/S -meristematic -merit/CdMS -merited/U -meritocracy/SM -meritocratic -meritocrats -meritorious/U -meritoriously -meritoriousness/MS -Merkle-Damgård -Merle -merlin/M -mermaid/SM -meromorphic -Merriam/M -Merrick -Merrill -Merrimac -Merrimack -merriness/S -Merris -Merritt/M -merry-go-round/S -merry/TLY -merrymaker/SM -merrymaking/SM -Mersey -Merseyside/M -Merthyr -Merton -Merv/M -Mery/M -mes/2DZzG -mesa/MS -mescal/SM -mescaline/SM -mesdames/M -mesdemoiselles/M -mesencephalic -mesencephalon -mesentery/SW -mesh's -mesh/UD -meshes -meshing -meshwork -mesial/Y -mesmeric/Y -mesmerise/RGSD -mesmerism/MS -mesmerize/RGSD -mesmerizer/M -mesmerizing -Meso-America -mesocyclone/S -mesoderm/O -mesogastria -mesogastrium -Mesolithic -mesomorph/SM -mesomorphic -meson/MS -mesopelagic -mesophyll -Mesopotamia/M -Mesopotamian/S -mesosphere/MS -mesothelia -mesothelioma/S -mesothelium -mesotherapy -mesothoracic -mesothorax -mesozoic -mesquite/MS -mess/SM -message/SMDG -messenger/dMS -Messenia/M -Messiaen -messiah/S -messianic -messieurs's -Messina/M -messiness/S -messmate/SM -Messrs -messy/TP -mestizo/SM -met/dr -meta -Meta-Wiki -metabolic/Y -metabolisable -metabolise/DSG -metaboliser/S -metabolism/SM -metabolite/SM -metabolizable -metabolize/SGD -metabolizer/S -metacarpal/S -metacarpi -metacarpus/M -metacentre/SW -metacircular -metacircularity -metacone -metadata -metafile -metageneses -metagenesis -metagenetic -metal/WSMGJD -metalanguage/MS -metalhead/S -metalinguistic -metallic/S -Metallica/M -metalliferous -metallise/SnGD -metallize/NnDSG -metallographically -metallography/MW -metalloid/SM -metallurgist/S -metallurgy/1MSwW -metalsmith/MS -metalwork/RGJMS -metalworking/M -metamaterial/S -metamathematical -metamathematician/S -metamathematics -metamorphic -metamorphism/SM -metamorphose/DGS -metamorphosis/M -metaphase -metaphor/SWw1M -metaphorist -metaphosphate's -metaphysic/SMY -metaphysical -metaphysician/S -metaplasia -metaplastic -metasomatic -metasomatise/D -metasomatism -metasomatize/D -metastability/M -metastable -metastases -metastasis/dMSQ -metastatic -metasyntactic -metatarsal/S -metatarsi -metatarsus/M -Metatheria -metatherian/S -metatheses -metathesis/M -metathesized -metathesizes -metathesizing -metathoracic -metathorax -metatracheal -metatropy -metatype -metavariable -metavariscite -metaverse -metavolcanic -metazoan/S -mete/S -metempsychoses -metempsychosis/M -meteor/WS1M -meteorite/SMW -meteoritic/S -meteoritics/M -meteoroid/MS -meteorologically -meteorologist/S -meteorology/wMS -meter/d -meterless -metethereal -metetherial -Metford -metformin -meth -methadone/SM -methamphetamine -methanal -methane/M -methanogenesis -methanoic -methanol/M -methicillin -methinks -methionine/M -method/1SMw -methodic -methodical/P -methodicalness/S -Methodism -Methodist/MS -methodologists -methodology/Sw1M -methotrexate -methought -methoxy -methoxyl -Methuen/M -Methuselah -methyl/SM -methylate/SGDn -methylene/M -methylergonovine -Methyr/M -meticulous/PY -meticulousness/S -metier -metonym/S -metonymic -metonymical -metonymically -metonymous -metonymy/SM -metope/S -metoprolol -metre/S1Ww -metric/MNSn -metricate/DSG -metrics/M -metro/MS -metrological -metrology/3 -metronidazole -metronome/SM -metronomic -metropolis/SM -metropolitan/S -metropolitanization -metrosexual/S -metrotome -Metrotown/M -metrum -mettle/DSM -mettlesome -Metzler/M -mew/GSD -mewl/DSG -mews/MS -Mexican/S -Mexico/M -Meyer/S -Meyerbeer -mezzanine/MS -mezzo-soprano -mezzo/S -mezzotint/SGDR -mfg -mfr/S -mg -MGM -mgr -MHz -mi's -mi/C -Miami -miasma/MS -miasmal -miasmatic -miasmatically -miasmic -miasmically -MiB -mic/S -mica/MS -Micah -mice/M -micelles -Michael/SM -Michaelangelo -Michaelmas -Michaelson -Michel/M -Michelangelo -Michele/M -Michelin -Michelle/M -Michelson -Michigan/M -Mick/M -Mickelson -mickey/SM -Micmac/S -miconazole -micra's -micrite -micritic -micro-environment/S -micro/S -microaerophile/S -microaerophilic -microamp -microampere -microanalyses -microanalysis/M -microanalytic -microangiopathic -microarchitecture/S -microarray/S -microbe/MS -microbial -microbially -microbian -microbicidal -microbicide/M -microbiologic -microbiologically -microbiology/w3SM -microbore -microbrewery/S -microcapillary -microcapsule/S -microcephalous -microcephaly/W -microchannel/S -microchemistry/M -microchip/SGD -microcircuit/SM -microcircuitry -microclimate/SW -microclimatically -microcode/GDS -microcoleoptera -microcolony -microcomputer/MS -microcomputing -microcontinent/S -microcontinental -microcontroller/S -microcopy/S -microcosm/WSM -microcosmal -microcosmically -microcosmography -microcosmopolitan -microcrack/SGD -microcredit -microcrystal -microcrystalline -microcyte/WS -microdeletion/S -microdensitometer -microdot/SM -microeconomic/S -microeconomics/M -microelectrode/S -microelectromechanical -microelectronic/S -microelectronically -microelectronics/M -microenterprise -microevolution -microevolutionary -microfarad -microfauna -microfibre/S -microfibril/S -microfiche/M -microfilament/S -microfilm/GDMS -microfilmer -microflora -microform/S -microformat/S -microfossil/S -microfungi -microfungus -microgenerate -microgeneration -microglia -microglial -microgram/S -microgramme/S -microgranite -micrograph/SZ -micrographic -micrographics -micrography/M -microgravity -microgroove/MS -microhabitat/S -microhydrodynamics -microhylid/S -microinject/DG -microinjection -microinstruction/MS -microjoule -microlaminated -microlevel -microlight/S -microloan/S -micromanage/LDSG -micrometeorite/SWM -micrometer/SM -micrometre/S -microminiature -microminiaturisation -microminiaturization -micromodel -micromodeling -micromodelling -micromodule -micromolar -micromole/S -micromorph/S -micromorphological -micromorphology -micromotor -micromutation -micron/MS -Micronesia/M -Micronesian/S -micronuclei -micronucleus -micronutrient/S -microorganism/SM -micropayment/S -microphagic -microphagous -microphone/SMG -microphotograph/SWZ -microphyll/S -microphysical -microphysics -micropig/S -micropipette/S -micropower -microprint/G -microprobe/S -microprocessing -microprocessor/MS -microprogram/MSGD -micropropagation -micropterous -micropyle -microreader/S -microRNA -micros/M -microsatellite/S -microscooter/S -microscope/SMWw1Z -microscopist/S -microscopy/MS -microSD -microsecond/SM -microseism/SW -microsimulation/S -microsite/S -Microsoft/M -microsomal -microspectrophotometer/S -microsphere/S -microspore/S -microstore -microstructure/SO -microsurgeon/S -microsurgery/MS -microsurgical -microsystem/S -microtask/S -microtechnological -microtechnology -microtome -microtonal -microtonality -microtonally -microtone/S -microtubule/S -microvascular -microvolt/MS -microwavable -microwave/G7DSM -microword/S -mid-afternoon -mid-age -mid-aged -mid-air/SM -Mid-America -Mid-American -mid-angle -Mid-Atlantic -mid-band/M -mid-body -mid-breast -mid-brow -mid-calf -mid-career -mid-century -mid-channel -mid-chest -mid-circle -mid-coast -mid-continent -mid-continental -mid-course -mid-cycle -mid-deck -mid-deep -mid-distance -mid-earth -mid-engined -mid-European -mid-evening -mid-feather -mid-fi -mid-flight -mid-kidney -mid-layer -mid-level -mid-management -mid-market -mid-morning -mid-ocean -mid-oceanic -mid-off -mid-on -mid-year -mid/Z -Midas -midbrain -midday/SM -midden/SM -middle-age/D -middle-class -middle-of-the-road -middle-sized -middle/mDSGkJ -middlebrow/SM -Middlebury -Middlehurst -middler -Middlesbrough/M -Middlesex -Middleton -Middletown -middleware -middleweight/MS -middlingish -middlingness -middy/SM -midear -midface -midfacial -midfield/MS -midfielder/S -Midgard/M -midge/SM -midget/SM -midheaven -midi/S -midland -midlander -Midlands -midlife -midline -midlives -Midlothian/M -midmost/S -midnight/SM -midpoint/MS -midrange -midrib/MS -midriff/SM -midscale -midsection/M -midship/mS -midspan -midst/MS -midstream/M -midsummer/SM -midterm/MS -midway -midweek/YSM -Midwest -Midwestern -Midwesterner/S -midwicket -midwife/My -midwifery/MS -midwinter/MYS -midwives -midyear/SM -Mielczarek -mien/SM -miff/DSG -MIG/S -might've -might/S2Zz -mightiness/S -mightn't -mightn't've -mighty/TP -Mignon -migraine/MS -migrant/ISM -migrate/INS4DnG -migration/MI -migrative -migrator/S -migratory/S -Miguel -mikado/SM -mike/DMGS -Mikhail -milady/MS -Milan -Milanese -milch/M -mild-mannered -mild/TPY -milden -mildew/ZGDSM -mildness/S -Mildred -mile/SM -mileage/MS -mileometer -milepost/SM -miler/M -milestone/MS -milfoil/S -Milford/M -milieu/SM -militancy/SM -militant/YPS -militarisation -militarise/CSDG -militarism/SM -militarist/W -militarization/M -militarized/C -military/SM-Q3Y -militate/SGD -militia/mSM -milk/RD2ZSMG -milkfish/S -milkiness/S -milkmaid/SM -milkman/M -milkmen/M -milkshake/S -milksop/SM -milkweed/MS -milky/TP -mill/SRD7MG -Millard -Mille/M -millenarian/S -millenarianism/M -millenarianist/S -millenary/S -millennia -millennial/S -millennialism -millennium/SM -millepede's -millet/SM -Millett/M -Millette/M -Millgarth -milliamp -milliampere/S -milliard/SM -millibar/S -millidegree/S -Millie/M -milligram/S -millijoule/S -millilitre/S -millimetre/S -milliner/ZSM -millinery/SM -milling/M -million/MHS -millionaire/SM -millionth/M -millipede/SM -millisecond/SM -millivolt/MS -millivoltmeter/SM -milliwatt/S -millpond/SM -millrace/MS -millstone/SM -millstream/SM -Millwall -Millward -millwright/SM -Milne -Milnthorpe -Milo -milometer -milord/M -Milquetoast/S -milreis -Milroy -milt/RSM -Milton/WM -Milwaukee -MIMD -mime/DSMG -mimeo -mimeograph/MDSG -mimer/M -mimesis/M -mimetic/Y -Mimi -mimic/RDGSy -mimicry/SM -mimosa/MS -Min -min. -min/S -Mina -Minardi -minaret/SM -minatory -mince/RDGkSJ -mincemeat/SM -Minchin/M -mind-expanding -mind-numbing/Y -mind-reader -mind/phSiR6DjMG -Mindanao/M -mindbogglingly -minded/A -minder/AS -mindful/U -mindfulness/SM -mindless/YP -mindlessness/S -minds/A -mindset/S -mine-detector -mine/RDSJG -mined/f -minefield/SM -mineral/Qq8-SM -mineralisation/CS -mineralization/CS -minerally -mineralness -mineralocorticoid/S -mineralogy/Mw3S -Minerva -mines/f -mineshaft/S -minestrone/MS -minesweeper/SM -minesweeping -mineworker/S -Ming -mingle/FGDS -Minho/M -mini/S -miniature/GQ3S8M-qD -minibore -minibreak/S -minibus/SM -minicab/SM -minicam/MS -minicar/S -minicell -minichain -minichromosome -minicircle -minicomputer/SM -minidisc/S -minidress's -minify/SGDN -minim/s9Q8S-qMo -minima/M -minimal/S3 -minimalism/S -minimalist/W -minimality -minimax/M -minimization/M -minimum/SM -mining/M -minion/SM -miniscule -miniSD -miniseries -miniskirt/MS -minister/NdnSMo -ministerial -ministrant/S -ministration/M -ministry/SM -minivan/S -miniver/M -mink/MS -minke -Minneapolis -minnesinger/MS -Minnesota/M -Minnie -minnow/MS -Minoan -minocycline -minor/SM -minority/SM -Minos -Minot/M -Minotaur/M -minoxidil -Minsk/MZ -Minsky/M -minster/MS -minstrel/SM -minstrels/Z -minstrelsy/SM -mint/DGSMRZ -mintage/MS -minty/T -minuend/MS -minuet/MS -minus/S -minuscule/SM -minute/PMGTDSY -minuteness/S -minutia/M -minutiae -minx/MS -Miocene -MIPS -Miquelon/M -Mira -Mirabeau -miracle/MS -miraculous/YP -mirage/DSMG -Miranda -mIRC -mire/DMGSZ -Miriam -Mirowsky -Mirrlees -mirror/dMS -mirth/6SpMj -mirthful/P -mirthfulness/S -mirthless/PY -MIRV -miry/T -mis-citation -mis-selection -mis-sell/SG -mis-sold -misaccount/SGD -misadaptation -misaddress -misadjust/SGD -misadventure -misallocate/SDGN -misandrist/S -misandry -misanthrope/M1ZS -misanthropical -misanthropism -misanthropist/S -Misanthropos -misanthropy/MS -misappliance -misapply/nN -misappreciate/SGDN -misapprehend -misapprehensive -misbehaver/M -misbelief/S -misbeliever/S -misbrand -misbuild/SG -misbuilt -misc/b -miscalculate -miscall -miscarry -miscast/G -miscategorise/SGD -miscegenation/SM -miscellanea -miscellaneous/Y -miscellaneousness -miscellany/SM -mischance -mischief-makers -mischief-making -mischievous/PY -mischievousness/S -miscibility/S -miscible/CI -misclassified -miscommunicate -miscommunications -misconfiguration -misconfigure/D -misconstruction/S -misconstrue -miscount -miscreant/SM -miscreate/SGD -miscreative -miscutting -misdate/SGD -misdeal -misdecision -misdeclaration/S -misdeed -misdemeanant/SM -misdemeanour/SM -misdescribe/SDN -misdescriptive -misdial/SGD -misdirect -misdirector -misdistribution -misdoubt/SD -misenter/Sd -miser/ZY7l -miserable/P -miserableness/S -miserliness/S -miserly/P -misery/MS -misestimate/D -misestimation/S -misexplain/SGD -misexplanation/S -misfeasance/SM -misfeature -misfield -misfit -misfold/SGD -misgiving/SM -misguide/hi -misguided/P -mishandle/G -mishap/M -Mishkin/M -mishmash/MS -misidentify/N -mislay -mislead/k -misleader -misline -mislineation -mislippen -mislive/SGD -mislocalize/SGDN -mislocate/SGD -mislocation -mislodge/SGD -mismade -mismake/SG -mismanageable -mismanager -mismannered -mismanners -mismannert -mismark/SGD -mismarketing -mismarriage/S -mismarry/SGD -mismatchment -mismate/SGD -mismean/SG -mismeant -mismeasure/SGD -mismeasurement/S -mismetre/SGD -misnomer/SM -misogamy/M3S -misogynist/W -misogynous -misogyny/3SM -misperceiving -misperception/S -misplace/L -misprediction -misprice/SGD -misprint/M -misprision/SM -misprize/SGD -misprizer -misproportion -misqualify/SGD -misread -misreport -misrepresenter/M -miss/EVDGS -missal/MSE -missaw -missee/SG -misseen -misses/K -misshapen/YP -misshapenness/S -missile/SMy -missilery/MS -mission's/A4 -mission/FRSM -missionary/MS -missions/4 -Mississauga -Mississippi -Mississippian/S -missive's -missive/4 -missives -Missoula -Missouri -Missourian -misspeak -misspecification -misspell -misspoke -misstep -missus/SM -Missy -mist/RZ2zDG -mistakable/U -mistake/M -mistaken/Y -mistaker -misted/C -mister/CMS -mistime/G -mistiness/S -mistle -mistletoe/SM -mistral/SM -mistranslate -mistreat/L -mistruster/M -mists/C -misty/T -mistype/J -misunderstand/R -misuse/M -MIT/M -Mitch/M -Mitchell/M -Mitchum/M -mite/MS -mitigate/DNnyGS -mitigated/U -mitigation/M -mitochondria -mitochondrial -mitogen/SW -mitoses -mitosis/M -mitotic -mitral -mitre/DGMS -mitsuba -Mitsubishi -mitt/SM -mitten/SM -Mitterrand -mix-up -mix/GKDSA -mixable -mixed/U -mixer/SM -mixture/MS -mizzen/SM -mizzenmast/MS -MK3D -mk3d -mka -MKA -mks -MKS -mkv -MKV -ml -Mlle -MLSO -mm -MMB -Mme -MMORPG/S -MMS/SGD -MMU/M -MMX -Mn -mnemonic/YMS -mnemonics/M -Mo -moan/RDGMS -moat/DMGS -mob's -mob/CSDG -mobber -mobcap/SM -Mobil -mobile's -mobile/IQ-+9stq8 -mobiles -mobilise/CnGADS -mobility/SMI -mobilize/ADSCNnG -mobster/MS -Mobutu -Moby/M -moccasin/MS -mocha/SM -Mochizuki/M -mock-up/S -mock/RGSkD7 -mocker/Z -mockers/M -mockery/SM -mockingbird/SM -mod/RoSGD -modal/S -modality/SM -mode/FMS -model/RSMJDG -models/A -modem/MS -moderate/YIPN -moderated/U -moderateness/S -moderates -moderating -moderation/MI -moderations -moderator/MS -moderatorship/S -modern/SQ8YTPs9q- -modernised/U -modernism/SM -modernist/WS -modernity/MS -modernization/M -modernness/S -modest/TZY -Modestas/M -modestly/I -Modesto -modesty/MIS -modi -modi operadi -modi vivendi -modicum/MS -modifiability/M -modifiable/P -modification/M -modificatory -modified/U -modify/NnRSBGD -modish/YP -modishness/S -modular/Q-Y8q -modularity/MS -modulate/CGANDS -modulated/U -modulation/MCS -modulator/CAMS -module/NSnM -moduli -modulo -modulus/M -modus -modus operandi -modus vivendi -Moe/M -Moen/M -Moffat/M -Moffett/M -Moffitt/M -Mogadishu/M -moggie/MS -Moglen/M -mogul/MS -mohair/SM -Mohamed/M -Mohammed/M -Mohammedan -Mohammedanism -Mohan/M -Mohawk/M -Mohr/M -moiety/SM -moil/GSD -Moine -Moines -Moira/M -moire/SM -moist/PYT -moisten/rdS -moistness/S -moisture/sQMS -Mojave -molal -molar's -molar/SK -molarity/SM -molasses/M -Moldavia -Moldavian -moldavite -Moldova/M -Moldovan/S -mole/MS -molecular/Y -molecularity/SM -molecule/MS -molehill/MS -moleskin/SM -molest/SnNRGD -molestation/M -molested/U -Molesworth/M -Molex -Moliere -Molina -Moline -moll/MYS -Mollie -mollification/M -mollify/GnDSN -mollusc/MS -Mollusca -molluscan -molly/MS -mollycoddle/SGD -mollycoddler/M -Molokai -Molotov -molten -molybdenite/M -molybdenum/M -mom's -Mombasa -moment/YSM -momenta/y -momentariness/S -momentary/PY -momentous/PY -momentousness/S -momentum/MS -momma/S -mommy's -Mon -Mona/M -Monaco/M -monad/SMW -Monaghan/M -monamine/S -monarch/3wWMZ -monarchism/SM -monarchist/W -monarchs -monarchy/SM3 -Monash -monastery/MS -monastic/YS -monasticism/MS -monaural/Y -monazite -Mondale -Monday/SM -Mondello/M -Mondeo -Mondrian/M -Monegasque -Monet -monetarism/S -monetary/3Y -monetise/CnADSG -monetize/nCGNADS -money-changer/S -money/pMDS -moneybags -moneyer's -moneylender/MS -moneymaker/MS -moneymaking/M -Monfort -monger/SM -mongol/S -Mongol/WS -Mongolia/M -Mongolian/S -mongolism/SM -mongoloid/S -mongoose/MS -Mongrain/M -mongrel/MS -Monica -monies/M -moniker/SM -monism/MS -monition/KMS -monitor/MSd -monitored/U -monitory/S -monk/SM -monkery -monkey/DSMG -monkeyshine/S -monkfish/S -monkish -monkshood/SM -Monmouth/M -Monmouthshire/M -mono/SM3 -monoalphabetic/Y -monoamine/S -monobactam/S -monobasic -monobrow/D -monochord/S -monochrome/MSW -monocle/DMS -monoclinic -monoclonal/S -monocoque -monocot/S -monocotyledon/MS -monocotyledonous -monocracy/S -monocrat/W -monocrystalline -monocular/SY -monoculture -monocyclic -monocyte/S -monodist/S -monody/MWS -monoecious -monoecy -monofactorial -monofil/S -monofilament/S -monogamous/Y -monogamousness -monogamy/3SM -monogenean/S -monogenic -monogenically -monoglot -monogram/DGSM -monogrammatic -monograph/SMDG -monographic -monolater -monolatrist -monolatrous -monolatry -monolayer/S -monolingual/SY -monolingualism -monoliteral -monolith/S1MW -monologic -monological -monologise/SGD -monologist/S -monologize/SGD -monologue/MDGS -monomania/MS -monomaniac/SM -monomaniacal -monomer/MS -monomeric -monomethyl -monomial/MS -monomolecular -monomorphic -monomorphism -monomorphous -Monongahela/M -mononuclear -mononucleoses -mononucleosis/M -monophonic -Monophoto -monophthong/S -monophthongal -monophyletic -monophyly -monoplane/SM -monopodia -monopodial -monopodially -monopodium -monopole/Q8Zs3-S -monopolist/W -monopolization/M -monopoly/SM -monorail/SM -monorchid/S -monorchidism -monosaccharide/S -monosomy/W -monospermal -monospermous -monostable -monosyllable/WSM -monotheism/MS -monotheist/WS -monotherapy -monotone/WMS1Z -monotonicity -monotonous/PY -monotonousness/S -monotony/SM -monotreme/S -monotype -monotypic -monovalent -monoxide/MS -monozygotic -Monroe -Monrovia/M -Monsanto -Monseigneur/S -Monsieur/M -Monsignor -Monsignori -monsoon/SM -monsoonal -monster/MSd -monstera -monstrance's/A -monstrance/SM -monstrosity/MS -monstrous/YP -montage/SMDG -Montague -Montaigne/M -Montana/M -Montclair -Monte/Z -Montenegrin -Montenegro/M -Monterey -Monterrey -Montessori -Monteverdi/M -Montevideo/M -Montezuma -Montfort/M -Montgomerie/M -Montgomery -month/MSY -monthly/S -Monticello -Montmartre/M -Montoya/M -Montpelier -Montrachet/M -Montreal/M -Montresor/M -Montrose -Montserrat/M -monument/oMS -monumental -monumentality/M -Monza -moo/SGD -mooch/RGDS -mood/2MZSz -moodiness/S -Moodle/M -Moody/M -moody/TP -Moog -moon/DSpMG -moonbeam/MS -Mooney -moonlight/MGRSD -moonlighting/M -moonlit -moonrise -moonscape/MS -moonset -moonshine/MS -moonshiner's -moonshot/MS -moonstone/MS -moonstruck -moonwalk/DGS -moor/DSMGJ -Moore/M -Moorhead/M -mooring/M -Moorish -moorland/SM -moose/M -moot/GSD -mooter -mop/dSGrMD -mope/SZ -moped/MS -mopey -mopish -moppet/SM -moppy -mopy/PYT -moquette -Mora -Moradian/M -Moraes/M -moraine/MS -moral/-Qs83SM -morale/MS3 -moralise/CGSDR -moralist/W1 -morality/SMI -moralize/CNnSDG -morally/I -Moran/M -Morant/M -morass/MS -moratorium/SM -Moratuwa -Moravia -Moravian -Moray/M -moray/SM -morbid/Y -morbidity/MS -morbidness/S -mordancy/SM -mordant/GDYS -Mordecai -Morden/M -Mordred -more/oS -Morecambe -Moreen -Morehouse -morel/MS -Moreland -moreover -Moresby/M -Moreton/M -Morgan/M -Morgellons -Morgen -morgue/MS -Moriarty -moribund/Y -moribundity/M -morion's -Morland/M -Morlet/M -Morley/M -Mormon/SM -Mormonism/M -morn/GMSJ -morning/M -Mornington/M -Moro/M -Moroccan/S -Morocco/M -moron/WM1S -Moroni/M -morose/YP -moroseness/S -Morpeth -morph/SDJG -morpheme/SM -morphemic/S -Morpheus/M -morphia/S -morphine/SM -morphism/MS -morphogenesis -morphogenetic -morphogenic -morpholine -morphology/3WMwS1 -morphometrically -morphometrics -morphometry/W -morphophonemic/S -morphophonemics/M -morris -Morris's -Morrison/M -Morrisons -Morristown/M -morrow/MS -Morse/M -morsel/SM -Mort/M -mortadella -mortal/IYS -mortality/IMS -mortar/dMS -mortarboard/SM -mortem/SM -Morten/M -mortgage/DSMG -mortgagee/SM7 -mortgagor/MS -mortice/MS -mortification/M -mortifier/M -mortify/GhnSND -Mortimer/M -mortise/DGSM -Morton/M -mortuary/SM -Morville/M -mos/GZD -mosaic/MS -mosaicked -mosaicking -mosasaur/S -moschatel -Moscianese -Moscow/M -Moseley/M -Moselle/M -Moser/M -Moses -mosey/DGS -Moshe/M -Moslem/M -Mosley/M -Mosotho -mosque/MS -mosquito/M -mosquitoes -moss-grown -moss/MS -Mossberg/M -mossy/T -most/Y -MOT/M -mote/SMV -motel/MS -motes/C -motet/SM -moth-eaten -moth/RSM -mothball/DMGS -mother-in-law -mother-of-pearl -mother/dpY -motherboard/MS -mothercraft -motherer/S -motherhood/MS -mothering/M -motherland/MS -motherliness/S -motherly/P -mothers-in-law -Motherwell -motif/SM -motile/S -motility/SM -motion's/FC -motion/GpDMS -motional -motioner/M -motionless/Y -motionlessness/S -motions/CF -motivate/SGD -motivated/CU -motivating/C -motivation/M -motivator/S -motive/DnSNxMVpG -motley -motlier -motliest -motocross/MS -motor/QSdqm38-M -motorbike/DSMG -motorboat/MS -motorcade/MGSD -motorcar/SM -motorcycle/3GSM -motorhome/S -motoring/M -motorised/U -motorist -motormouth/D -Motorola/M -motorphobia -motorsailer/S -motorway/MS -Motown/M -mots -Mott/M -mottle/SGD -mottledness -mottler/M -motto/MS -mottoed -mottoes -mottoless -mouchard -mouchette -moue/DMGS -mould/2MZJDRGS -mouldboard/MS -moulded/A -moulder/d -mouldiness/S -moulding/M -moulds/A -mouldy/TP -moult/RSGD -Moulton/M -mound/MDGS -mount's -mount/EDCAGS -mountable/U -mountain/SM -mountaineer/JMGSD -mountaineering/M -mountainous/PY -mountainside/MS -mountaintop/MS -Mountbatten/M -mountebank/SM -mounted -mounter/SM -Mountie -mounties -mounting/MS -Mountmellick/M -mourn/6jJDRGS -Mourne/M -mournful/T -mournfulness/S -mourning/M -mouse/DRGMSZ -mouseover/S -mousepad/S -mousetrap/DMSG -mousey -mousiness/S -mousing/M -mousse/SM -Moussorgsky/M -moustache/MDS -moustachio/DSM -mousy/PT -mouth-to-mouth -mouth/M6ZDGS2 -mouthable -mouthbrooder/S -mouther -mouthfeel/S -mouthful/SM -mouthiness/S -mouthorgan -mouthpart/S -mouthpiece/SM -mouthwash/MS -mouthwatering -mouthy/PT -mouton's -MOV -movability/I -movable/SIPY -movably/I -move/ARSDG -moveability -moveable/PSY -moved/U -movement/SM -moving/U -movingly -mow/RSDG -Mowgli/M -mowing/M -mown -Mox -moxibustion -Moyer/M -Moyes -Moyle/M -Moyra/M -Moyross -Mozambican/S -Mozambique/M -Mozart/M -Mozes/M -Mozilla/M -Mozillian/SM -mozzarella/MS -mp -MP/SM -MP3/S -MPEG -mpg -mph -MPhil -MPLA -MPV -Mr/M -MRI -mRNA -Mrs -Ms -ms -MS-DOS -mSATA -MSC -MSc -MSDN -MSI/M -MSM/M -MSN -MSP/SM -MST -Mt -mtDNA -MTS -MTV -mu -much-needed -much/P -mucilage/SM -mucilaginous -mucinous -muck/DGMZS -mucker/M -muckrake/DRSMG -mucky/T -mucocutaneous -mucoid -mucoidal -mucoidy -mucosa/M -mucosae -mucosal -mucositis -mucous -mucus/SM -mud/SM2Zz -mudbank -muddiness/S -muddle/RSGD -muddlehead's -muddleheaded -muddleheadedness -muddy/GTSDP -mudflap/S -mudflat/S -mudguard/MS -mudlarks -mudroom/S -mudslide/S -mudsling/RGJ -mudslinging/M -mudstone/S -Mueller/M -Muenster -muesli/M -muezzin/MS -muff/DGMS -muffin/MS -muffle/DGRS -MUFON/M -mufti/SM -mug/2JMRGZSD -Mugabe/M -mugginess/S -muggle/S -muggy/T -mugshot/S -mugwort/S -Muhammad/M -Muhammadan/SM -Muhammadanism -Muhammed -Muir/M -Muire/M -Muirhead/M -mujahedin -mujahideen -mujahidin -mukluk's -mulatto/MS -mulattoes -mulberry/SM -mulch/DGMS -mulct/SDG -Mulder/M -mule/MGDS -muleskinner/S -muleteer/SM -Mulford/M -Mulgrew/M -Mulholland/M -mulish/PY -mulishness/S -mull/SDG -mullah/MS -mullein/MS -Mullen/M -Muller/M -mullet/SM -Mulligan/SM -mulligatawny/SM -Mullingar/M -Mullins -mullion/GMSD -mulloway -multi -multi-access -multi-agency -multi-coupler -multi-ethnic -multi-modal -multi-national -multi-purpose -multi-site -multi-stage -multi-storey -multi-track -multi-user -multi-way -multiagent/S -multiaxial -multibillion -Multibus/M -multibuy/S -multicast -multicell/D -multicellular -multicellularity -multicentral -multicentre -multicentric -multichannel/M -multicollinearity/M -multicollision -multicolour/SMD -multicolumn -multicomponent -multicomputer/MS -multicore -Multics/M -multicultural -multiculturalism/S -multiculturalist -multiculturally -multidimensional/Y -multidimensionality -multidirectional -multidisciplinary -multidrug -multifaceted -multifactorial -multifaith -multifamily -multifarious/PY -multifariousness/S -multifigure -multifold -multiform -multifunction/oD -multifunctional -multifunctionality -multigrain -multigym -multiheaded -multilateral/Y -multilateralism -multilateralist/S -multilayer -multilayered/P -multilevel/D -multiline -multilineal -multilineality -multilingual/S -multilingualism/S -multilingually -multilinguist -multiliteral -multimedia -multimegaton/M -multimeric -multimeter/MS -multimillion -multimillionaire/MS -multimodal -multinational/SY -multinomial/M -multipanel -multiparity -multiparous -multipartite -multiparty -multipath -multiperforate/D -multiperiod -multipersonal -multiphase -multiphased -multiphonic/S -multiplatform -multiplatinum -multiplay -multiplayer -multiple-choice -multiple/SMY -multiplet/S -multiplex's -multiplex/CGDRS -multiplexor/SM -multiplicand/MS -multiplicate -multiplication/M -multiplicative/S -multiplicity/MS -multiply/RvSNVD7nG -multipoint -multipolar -multipolarity -multipole -multiprocess/G -multiprocessor/SM -multiprogram/JDG -multiprogramming/M -multiracial -multirange -multiscreen -multisensory -multisession -multispectral -multispeed -multistage -multisyllabic -multisystem -multitalented -multitask/SGDR -multithread/DG -multitouch -multitrack/D -multituberculate/S -multitude/MS -multitudinous/PY -multivalent -multivalued -multivalve -multivariate -multiverse/S -multiversity/M -multivitamin/S -multiwindow/D -multiwire -multiyear -mum/RDZSMG -Mumbai/M -mumble/RSDGJ -mumbo -mumbo-jumbo -Mumford/M -mummer/Z -mummery/SM -mummification/M -mummify/SNDGn -mummy/MS -mumps/M -munch/DMRGS -Muncie/M -mundane/Y -mundaneness -Mundy/M -munge/RGSJD -Munich/M -municipal/SY -municipality/SM -Munier/M -munificence/MS -munificent/Y -muniment/S -munition/DSG -Munoz/M -Munro/M -Munroe/M -Munson/M -Munster/M -muon/SM -muonium -muonless -muppet/SM -Muppet/SM -Mura/M -mural/3MS -Murali -muralist -Murchison/M -murder/rdSM -murderess/S -murderous/YP -Murdoch/M -Murdock/M -Murial/M -Muriel/M -Murielle/M -Murillo/M -murine -murk/TZzSM2 -murkiness/S -murky/T -Murmansk/M -murmur/dMSr -murmuring/S -murmurous -Murphy/M -murrain/SM -Murray/M -Murrayfield/M -murrelet/S -Murrow/M -Murry/M -mus/dSw1k -muscadine/S -muscari -muscarinic -Muscat/M -muscat/SM -muscatel/SM -muscle-bound -muscle/MGSD -muscleman -musclemen -muscly/T -muscovite -Muscovite/MS -Muscovy/M -muscular/Y -muscularis -muscularity/SM -musculature/SM -musculoskeletal -musculus -Muse's -muse/J -muser/M -musette/MS -museum/MS -mush/Z2SM -mushed -musher's -mushiness/S -mushroom/DGMS -mushy/TP -music/MS -musical/S -musicale's -musicality/SM -musically/U -musician/MSY -musicianship/MS -musicology/M3wS -musk-rose -musk/ZM2 -muskeg/MS -Muskegon/M -muskellunge/SM -musket-ball -musket/SMy -musketeer/SM -musketry/SM -muskrat/SM -musky/TP -Muslim/SM -muslin/MS -musquash -muss/SGD -mussel/SM -Mussolini/M -Mussorgsky/M -mussy -must've -must-have -must/zZS2 -Mustafa/M -mustang/MS -mustard/SM -mustardy -muster/Sd -mustiness/S -mustn't -musty/TP -mutability/IMS -mutable/FI4 -mutableness/M -mutably/I -mutagen/MS -mutagenesis -mutagenic -mutagenicity -mutant/MS -mutate/FDSG -mutation/FM4 -mutational/Y -mutator/FS -mute/Fn4NDSG -muted/Y -mutely -muteness/S -muter/F -mutest -Muthesius -mutilate/GnSND -mutilation/M -mutilator/MS -mutineer/MS -mutinous/Y -mutiny/DSGM -Mutsuhito/M -mutt/SM -mutter/rJSd -mutton/MS -muttonchops -mutual/YS -mutualism/S -mutualist/SW1 -mutuality/S -muumuu/SM -Muzak -muzzle's -muzzle-loaded -muzzle-loader/S -muzzle-loading -muzzle/DGUS -muzzler/M -muzzy/TYP -MW -mW -my -myalgia -myalgic -Myanmar/M -mycelia -mycelial -mycelium -Mycenae/M -Mycenaean -mycology/3SM -mycoplasma/S -mycoplasmata -mycotoxin/S -myelencephalic -myelencephalon -myelin -myelinated -myelination -myelitides -myelitis/M -myeloblast -myelocyte -myelomonocytic -myelosuppression -Myers -Mylar -Myles/M -mylohyoid -myna/SM -mynah/MS -myocardial -myocarditis -myocardium/M -myoclonic -myoclonus -myogenic -myoglobin -myomere/S -myometrial -myometrium -myomorph/W -Myomorpha -myonecrosis -myonecrotic -myoneural -myopathic -myopathy/S -myopia/SM -myopic/YS -myosin -Myra/M -myriad/S -myriapod/S -Myriapoda -myrmidon/S -Myrna/M -Myron/M -myrrh/MS -myrtle/SM -myself -Mysia/M -Mysian/S -mysid/S -Myspace/M -MySpell -MySQL/M -mysterious/PY -mysteriousness/S -mystery/SM -mystic/YMS -mystical -mysticete/S -Mysticeti -mysticism/SM -mystification/M -mystifier/M -mystify/CSnDGN -mystifying/Y -mystique/SM -myth/MW1wS -mythographer/SM -mythography/M -mythoi -mythologic -mythologisation -mythologise/CSGD -mythologization -mythologize/SGD -mythology/SQM31w -mythos -myxoedema -myxoma/S -myxomata -myxomatosis -myxomatous -mélange -mémoire -ménage -métier/S -mêlée/MS -Möbius -Münchhausen/M -N'Djamena/M -N'Djemena -n.d. -n/NnxVvu -Na/M -NAACP -nab/GSD -Naber -Nabisco/M -nabob/MS -nacelle/MS -nacho/S -NaCl/M -nacre/MS -nacreous -Nada/M -Nadella/M -Nadelmann/M -Nadia/M -Nadine/M -nadir/MS -nadolol -naff -naffer -naffness -nag/RDSGM -Nagasaki/M -nagging/Y -Nagoya/M -Nagy/M -nagyagite -nah -Nahum/M -naiad/SM -naifs -nail-biting -nail/DMGS -nailbrush's -nailer/M -Nairobi/M -naive/YT -naiveness -naivete/Z -naivety/SM -naiveté/SM -Nakamura/M -Nakano/M -Nakayama/M -naked/PY -nakedness/S -Naku'alofa/M -naloxone -naltrexone -namby -namby-pamby -NAmE -name's -name-calling -name-drop/DGSR -name/aDASG -nameable/U -named/M -nameless/Y -namelessness -namely -nameplate/SM -namer/MS -namesake/SM -namespace/SGD -Namibia/M -Namibian/S -NaN -nan/MZ -Nana/M -Nanak/M -nance -Nance/ZM -Nancy/M -nancy/S -NAND -Nandi/M -nandina -Nanette/M -Nannette/M -nanny/MDSG -nannygai/S -nano -nanobacteria -nanobacterium -nanobiotechnology -nanobot/S -nanocomposite/S -nanoengineer/SG -nanofibre/S -nanogram -nanomaterial/S -nanomedicine -nanometre/SM -nanomolar -nanoparticle/S -nanorobot/S -nanorod/S -nanoscale -nanoscience -nanoscopic -nanosecond/SM -nanostructure/SD -nanotech -nanotechnological -nanotechnologist/S -nanotechnology -nanotube/S -nanowire/S -Nantes/M -Nantucket/M -Nantwich -Naoki/M -Naomi/M -nap/pRSZGMD -napalm/SMDG -nape/MS -naphtha/SM -naphthalene/SM -naphthene/S -naphthenic -Napier/M -napkin/MS -Naples/M -napoleon/S -Napoleon/WSM -Napoleonically -Napoleonism -Napoleonist -nappy/MS -naproxen -Napster/M -Nara/M -Narayan/M -Narbonne/M -narcissi -narcissism/MS -narcissist/SWM -narcissus/MS -narcolepsy -narcoleptic/S -narcoses -narcosis/M -narcotic/MS -narcotise/DSG -Naresh/M -naringin -nark/SMZ -narky/T -Narnia/M -Narotam/M -Narragansett/M -narrate/GDnNSVv -narration/M -narrational -narrative/SM -narrativity -narratological -narratology/3 -narrator/MS -narrow-minded -narrow-mindedness -narrow/DGPSTY -narrowband -narrowcast/DGR -narrowness/S -narwhal/SM -nary -NAS -NASA/M -nasal/-YqQ8S -nasality/SM -NASCAR -nascence's/A -nascences/A -nascent/A -Nasdaq/M -NASDAQ/M -Nash/M -Nashua/M -Nashville/M -Nasir/M -nasogastric -nasopharyngeal -nasopharynx -Nasrin/M -Nassau/M -Nasser/M -nastiness/S -nasturtium/MS -nasty/PYTS -NATA -natal/K -Natalie/M -natalist -natality/M -Natasha/M -natch -Natchez -Nathalie/M -Nathan/M -Nathaniel/M -Nathel -nation/M -national/8-S9Qsq3 -nationalise/CnAGSD -nationaliser/CMS -nationalism/SM -nationalist/1W -nationality/MS -nationalization/M -nationalize/CSGnNDR -nationally/4 -nationhood/SM -nationwide -native/PS -nativity/SM -natl -NATO/MS -natter/dS -Natterer/M -nattiness/S -natty/PYT -natural/qS38Q- -naturalism/SM -naturalist/W -naturally/U -naturalness/U -naturalnesses -nature/ohMDS -natured/C -natures/C -naturism -naturist/S -naturopath/S -naturopathic -naturopathically -naturopathy -NatWest -naught/z2MZ -naughtiness/S -naughty/PTS -Nauru/M -nausea/MS -nauseate/GDSk -nauseous/P -nauseousness/S -nautical/Y -nautilus/MS -Navaho/M -navaid/S -Navajo/S -naval/Y -Navarino/M -Navarro/M -nave/ZMS -navel-gazing -navel/SM -navigability/SM -navigable/P -navigate/BNxDGSn -navigation/M -navigator/MS -navvy/MS -navy/MS -nay/SM -naysayer/S -Nazarene/MS -Nazareth/M -Nazi/SM -Nazism -naïve/Y -naïveness -naïvety/S -naïveté/S -Nb -NBA/M -NBC -NBS -NCAA -NCC -NCO -Nd -NDE/S -Ndebele/S -Ndjamena/M -Ne -ne'er -ne'er-do-wells -Neal/M -Neale -Neanderthal/S -neap -Neapolitan/SM -neaptide -near-sighted/PY -near-sightedness/S -near/YDTGPS -nearby -nearness/S -nearshore/SGD -nearside/M -neat/TPY -neaten/dS -Neath/M -neatness/S -Nebraska/M -Nebraskan/MS -Nebuchadnezzar/M -nebula/MS -nebulae -nebular -nebulosity -nebulous/PY -nebulousness/S -necessaries -necessary/UY -necessitate/DNnSG -necessitation/M -necessitous -necessity/MS -neck/MJSGD -neckband/M -necker -neckerchief/MS -necking/M -necklace/DSMG -necklet/S -neckline/SM -necktie's -neckwear -necrobiosis -necrobiotic -necrology/MS -necromancer/MS -necromancy/MS -necromantic -necrophile -necrophilia/M -necrophiliac/S -necrophilic -necrophilism -necrophilist -necrophobia -necropolis/MS -necropost/SGD -necropsy/MS -necrose/D -necroses -necrosis/M -necrotic -nectar/MS -nectarine/SM -nectarivorous -nectarous -nectary/SM -Ned/M -ned/S -neddy/S -nee -need/ZDSpj26G -needed/U -needer/M -needfulness -Needham/M -neediness/S -needle-stick -needle/D5GRSM -needlecord -needlecraft/M -needledick -needlefish/S -needleful/S -needlelace -needleless -needleloom -needlenose -needlepoint/SGDM -needless/Y -needlessness/S -needlework/MS -needleworker -needn't -needy/TP -Neely/M -neep/S -nefarious/PY -nefariousness/S -neg/uNnvV -negate/GSD -negation/M -negative/GDPS -negativeness/S -negativism/MS -negativity/SM -negator/MS -Negev/M -neglect/6jSDG -neglecter/M -neglectful/P -neglectfulness/S -negligee/MS -negligence/MS -negligent/Y -negligibility/M -negligible/Y -negligée/SM -negotiability/MS -negotiable/A -negotiant/M -negotiate/DAnNSG -negotiation/MA -negotiator/MS -Negritude/M -Negro/M -Negroes -Negroid/S -Nehemiah/M -Nehru/M -neigh/SGDM -neighbour/DYSGM -neighbourhood/MS -neighbourliness/S -neighbourly/P -Neil/M -Neill/M -neither -Nell/MY -Nelle/M -Nellie/M -Nelly/M -Nelsen/M -nelson/SM -nematic -nematocyst/S -Nematoda -nematode/SM -nematomorph/S -Nematomorpha -Nembutal/M -Nemechek/M -nemeses -nemesis -Nemesis/M -neo-Catholic -neo-Catholicism -neo-Confucian -neo-Confucianism -neo-Darwinian -neo-Darwinism -neo-Darwinist -neo-fascist/S -neo-Georgian -neo-Gothic -neo-impressionism -neo-impressionist/S -neo-Latin -neo-liberal/S -neo-liberalism -neo-Marxism -neo-Marxist/S -neo-Nazi/S -neo-Nazism -neoclassic/M -neoclassical -neoclassicism/MS -neoclassicist/S -neocolonial -neocolonialism/SM -neocolonialist/S -neoconservatism -neoconservative/S -neocortex/M -neocortical -neocortices -neodymium/M -neolithic -Neolithic's -neologise/SGD -neologism/MS -neologist/S -neologize/SGD -neomycin/M -neon/MS -neonatal -neonate/oSM -neonatologist -neonatology -neonicotinoid/S -neonomian/S -neonomianism -neontological -neontology -NeoOffice/M -neopagan/S -neopaganism -neophobia -neophobic -neophyte/SM -neoplasia -neoplasm/SM -neoplastic -neoplasticism -Neoplatonic -Neoplatonism -Neoplatonist/S -neopositivism -neopositivist -neoprene/SM -Neoproterozoic -Neoptolemus/M -neorealism -neorealist/S -neoteric/S -Neotropical -neotropics -neovascular -Nepal/M -Nepalese -Nepali/SM -nepenthe/SM -nephew/SM -nephridia -nephridial -nephridium -nephrite/MWS -nephritides -nephritis/M -nephroid -nephrological -nephrologist/S -nephrology -nephromixium -nephron/S -nephropathic -nephropathy -nephropexy -nephrotoxic -nephrotoxicity -nephrotoxin/S -nepotism/SM -nepotist/S -Neptune/M -neptunium/MS -nerd/SZM -nerdiness -nerdish -nerdishness -nerdy/T -nerine/S -Nero/M -nerve's -nerve-racking -nerve-wracking -nerve/UGSD -nerveless/YP -nervelessness/S -nerviness/S -nerving/M -nervous/PY -nervousness/S -nervure/S -nervy/TP -Ness/M -nest/DS7MG -nester/MS -nestle/DSG -nestler/M -nestling/MS -Nestor/M -net/SMDG -netball/M -netbook/MS -NetBSD/M -Netflix/M -nether -Nethercote/M -Netherfield -Netherhampton -Netherlander/SM -Netherlands/M -nethermost -netherworld/S -netiquette -netizen/S -Netscape/M -netsplit/SGD -nett/SJ -netter -netting/M -nettle/MSGD -Netto/M -network/GJDMS -Neuburg -Neumann/M -Neupogen -neural/Y -neuralgia/SM -neuralgic -neurasthenia/MS -neurasthenic/S -neuritic/S -neuritides -neuritis/M -neuroactive -neuroanatomical -neuroanatomist/S -neuroanatomy -neurobehavioural -neurobics -neurobiochemistry -neurobiological -neurobiologist/S -neurobiology/M -neuroborreliosis -neurochemical -neurochemist -neurochemistry -neurocomputer/S -neurocrystalline -neurodegeneration -neurodegenerative -neuroeconomics -neuroendocrine -neuroendocrinology -neurofeedback -neurofibril/S -neurofibrillary -neurogenesis -neurogenetic/S -neurogeneticist -neurogenic -neurohormonal -neurohormone/S -neurohypophyses -neurohypophysis -neuroimaging -neuroleptic/S -neurolinguistic/S -neurology/W13MSw -neuroma/S -neuromata -neuromimesis -neuromimetic -neuromodulation -neuromodulator/S -neuromodulatory -neuromotor -neuromuscular -neuron/SM -neuronal -neurone/S -neuropath/WS -neuropathological -neuropathologist/S -neuropathology/M -neuropathy/S -neuropeptide/S -neurophysiological -neurophysiologist/S -neurophysiology/M -neuropsychiatric -neuropsychological -neuropsychology/3 -neuropteran/S -neuropteroid -neuropterous -neuroradiological/Y -neuroradiologist -neuroradiology -neuroregulator -neuroregulatory -neuroretinitis -neuroscience/S -neuroscientific -neuroscientist/S -neurosecretion -neurosecretory -neurosensory -neuroses -neurosis/M -neurosurgeon/SM -neurosurgery/MS -neurosurgical -neurotechnology/S -neurotic/SY -neuroticism -neurotoxic -neurotoxicity -neurotoxicology -neurotoxin/S -neurotransmission -neurotransmitter/S -neurotrophic -neurotypical -neurovascular -neuter/dS -neuterer/S -neutral/Q8-SsY -neutralisation -neutralise/M -neutralism/MS -neutralist/S -neutrality/SM -neutralization/M -neutralness -neutrino/MS -neutron/MS -neutropenia -neutropenic -neutrophil/S -neutrophilic -Neuwirth/M -Neva/M -Nevada/M -Nevadan/S -never -never-changing -never-dying -never-ending -never-failing -nevermore -nevertheless -Neville/M -Nevis/M -nevus's -New Age -New Ageism -New Ager/S -new-found -new-laid -new-look -new-style -new/AS -Newark/M -newbie/S -newborn/S -Newbould/M -Newbridge -Newbury/M -Newburyport/M -Newcastle-under-Lyme -Newcastle/M -newcomer/MS -newel/SM -Newell/M -newer -newest -newfangled -newfound -Newfoundland/RM -newish -Newlands/M -newline/SM -newly -newly-wed/MS -Newman/M -Newmarket/M -newness/SM -Newnham -Newport/M -Newry/M -news-gathering -news-sheet -news-stand/MS -news/Zm5p -newsagent/SM -newsboy/SM -newscast/RSM -newscasting's -newsdealer's -newsfeed/S -newsflash/S -newsgirl/S -newsgroup/MS -newsletter/SM -newspaper/mdS5M -newspeak -newsprint/SM -newsreader/MS -newsreel/SM -newsroom/S -Newsweek/YM -Newsweekly/M -newswire/S -newsworthiness/S -newsworthy/TP -newsy/TS -newt/SM -newton/MS -Newtonian -Newtownabbey/M -next -next-door -nexus/MS -NFC -NFL -NFS -ng -NGO/S -Nguyen/M -NHL -NHS -Ni/M -niacin/MS -Niagara/M -Niall/M -Niamey/M -nib/SGMD -nibble/RGDS -Nibelung/S -Nibelungen -Nibelungenlied -Nibiru/M -NICAP/M -Nicaragua/M -Nicaraguan/S -Niccolo/M -Nice's -nice/TPY -Nicene -niceness/S -nicety/MS -niche/GMSD -Nichelle/M -Nichol/SM -Nicholai/M -Nicholas/M -Nichole/M -Nicholls/M -Nicholson/M -nichrome -nick/GDSM -nickel/SGMD -Nickelodeon/M -nicknack's -nickname/MGDS -nicknamer/M -NickServ -Nicky/M -Nico/M -Nicodemus/M -Nicol/M -Nicola/MS -Nicolaus/M -Nicole/M -Nicomedes/M -Nicosia/M -nicotinamide -nicotine/SM -nicotinic -niece/SM -Nielsen/M -Nielson/M -Nietzsche/M -Nietzschean -Nietzscheanism -Nietzscheism -Nieves/M -nifedipine -nifty/TSY -Nigel/M -Niger/M -Nigeria/M -Nigerian/S -niggard/YMS -niggardly/P -nigger/SM! -niggle/RGkJDS -nigh -night-blindness -night-life/M -night-long -night-owl -night-soil -night-time/SM -night-watchman -night/MpS -nightbird/S -nightcap/SM -nightclothes -nightclub/RMGSD -nightdress/MS -nighters/c -nightfall/SM -nightgown/MS -nighthawk/MS -nightie/SM -nightingale/SM -nightjar/S -nightlife -nightly/S -nightmare/MS -nightmarish/Y -nightshade/SM -nightshirt/MS -nightside -nightspot/SM -nightstand's -nightstick/S -nightwear/M -nighty's -Nighy/M -nigrify/SGD -nigrite -nigromancer -nigromancy -nigrosin -nigrosine -nigrostriatal -nigrous -NIH -Nihang/S -Nihilianism -nihilism/MS -nihilist/MSW -nihility -Nike/M -Nikita/M -Nikki/M -Nikolai/M -Nikon/M -nil/MGY -Nile/SM -nilpotent -Nils -Nilsson/M -nimbi -nimble/TPY -nimbleness/S -nimbostratus -nimbus/M -nimbused -NIMBY -Nimitz/M -Nimoy/M -Nimrod/MS -Nina/M -nincompoop/SM -nine/SMH -ninepence/M -ninepin/S -ninepins/M -nineteen/HSM -ninety-eight/H -ninety-first/S -ninety-five/H -ninety-four/H -ninety-nine/H -ninety-one -ninety-onefold -ninety-second/S -ninety-seven/H -ninety-six/H -ninety-three/H -ninety-two -ninety-twofold -ninety/HMS -Nineveh/M -Ninian/M -ninja/S -ninjutsu -ninny/MS -Nintendo/M -niobium/M -nip/RGD2SZ -nippiness/S -nipping/Y -nipple/SM -nipplewort -Nippon/M -Nipponese -nippy/T -nirvana/SM -Nissan/M -nit/SM -Nita/M -Niterói -nitid -nitinol -nitpick/ZRGDJS -nitrate/SMDG -nitration/M -nitrazepam -nitre/MNSnW -nitride/SM -nitrification/SM -nitrify/SGD -nitrite/MS -nitro -nitrobacterium -nitrobenzene -nitrocellulose/SM -nitrochalk -nitrofurantoin -nitrogen/M -nitrogenous -nitroglycerin/M -nitroglycerine -nitrotoluene -nitrous -nitrox -nitty-gritty -nitwit/MS -Niue/M -Niuo -nivosity -nix -Nixon/M -Nixonian -Nixonisation -Nixonism -Nixonite -Nixonization -Nixonomics -nixtamal -Nizari/S -nizatidine -Nkrumah/M -NLRB -nm -NNTP -no-ball/SD -no-claims -no-go -no-nonsense -no-show/S -no-win -no/Q -NOAA -Noah/M -Noam/M -nob/MY -nobble/GD -nobbler/S -Nobel/M -nobelium/M -nobility/SM -Noble's -noble/mPT5S -nobleness/S -noblesse/M -nobody/SM -nock/SGD -nocturnal/S -nocturne/SoM -nod/oDMGZS -nodal -noddle/DMSG -noddy/M -node/SM -nodular -nodule/MS -Noel/SM -Noelle/M -noes -noggin/SM -Nohl/M -nohow -noir/S -noire/S -noirish -noise/pMZ -noiseless/YP -noiselessness/S -noisette/S -noisiness/S -noisome/P -noisy/PTY -Nok -Nokia/M -Nola/M -Nolan/M -Noland/M -Noll/M -Nolte/M -nomad/WMS -Nome/M -nomenclator -nomenclatural -nomenclature/MS -Nomi/M -nominal/SY -nominate/CGASnDN -nomination/MCA -nominative/SY -nominator/CMS -nominee/SM -non -non-Aboriginal -non-abrasive -non-absorbent -non-academic/S -non-acceptance/S -non-achiever/S -non-acid/S -non-active -non-adaptive -non-addictive -non-adhesive -non-adjacent -non-adjustable -non-administrative -non-African -non-aggression/S -non-agricultural -non-alcoholic/S -non-aligned -non-alignment/S -non-allergic -non-American -non-appearance/S -non-assignable -non-athletic -non-attendance/SM -non-automotive -non-availability/SM -non-basic -non-believer/MS -non-belligerency -non-belligerent/S -non-biodegradable -non-biological -non-black -non-blocking -non-breakable -non-British -non-burnable -non-business -non-caloric -non-cancerous -non-capital -non-carbohydrate -non-Catholic -non-chargeable -non-chemical -non-Chinese -non-Christian -non-clerical/S -non-clinical -non-coding -non-collectable -non-com/MS -non-combatant/MS -non-combative -non-combustible/S -non-commercial/S -non-commissioned -non-committal/Y -non-communicable -non-communist -non-compete -non-competing -non-competitive -non-compliance/MS -non-complying/S -non-comprehending -non-conducting -non-conductive -non-conductor/SM -non-conform -non-conformable -non-conformance -non-conformant -non-conformer -non-confrontational -non-consecutive -non-conservative -non-constructive -non-contagious -non-content -non-contiguous -non-continuous -non-contributing -non-contributory -non-controversial -non-convertible -non-cooperation/S -non-corroding/S -non-corrosive -non-credit -non-criminal/S -non-critical -non-crystalline -non-cumulative -non-custodial -non-cyclic -non-dairy -non-decreasing -non-deductible -non-deferential -non-delivery/S -non-democratic -non-denominational/Y -non-departmental -non-depreciating -non-destructive/Y -non-detachable -non-determinacy -non-determinate/Y -non-determinism -non-deterministic/Y -non-disciplinary -non-disclosure/S -non-discrimination/S -non-discriminatory -non-disjunction -non-dramatic -non-drinker/SM -non-driver -non-drying -non-durable -non-Dutch -non-economic -non-educational/Y -non-effective/S -non-elastic -non-electric/S -non-electrical -non-emergency -non-empty -non-enforceable -non-English -non-equivalence -non-equivalent/S -non-essential/S -non-event/MS -non-exchangeable -non-exclusive -non-executive -non-exempt -non-existence/SM -non-existent -non-explosive/S -non-extensible -non-factive -non-factual -non-fading -non-fat -non-fatal -non-fattening -non-ferrous -non-finite -non-flammable -non-flowering -non-fluctuating -non-fluent -non-flying -non-food -non-formal -non-freezing -non-French -non-functional/Y -non-functioning -non-gendered -non-genetic -non-genetically -non-German/W -non-governmental -non-granular -non-hazardous -non-hereditary -non-hostile -non-human/S -non-identical -non-inclusive -non-independent -non-industrial -non-infectious -non-inflammatory -non-inflationary -non-inflected -non-intellectual/S -non-interacting -non-interchangeable -non-interference -non-intervention/S -non-interventionist -non-intoxicating -non-intuitive -non-invasive -non-ionic -non-ionising -non-irritating -non-Italian -non-Japanese -non-judgemental -non-judicial -non-legal -non-lethal -non-linear/Y -non-linearity/SM -non-linguistic -non-literary -non-living -non-local -non-logical -non-magical -non-magnetic -non-malignant -non-medical -non-member/MS -non-metal/SWM -non-metropolitan -non-migratory -non-militant/S -non-military -non-moral -non-narcotic/S -non-native/S -non-natural -non-negative -non-negotiable -non-nuclear -non-numerical/S -non-objective -non-obligatory -non-observance/S -non-observant -non-occupational/Y -non-official -non-operational/Y -non-operative -non-Oriental -non-orthogonal -non-orthogonality -non-parallel/S -non-parametric -non-participant/SM -non-participating -non-partisan/S -non-party -non-paying -non-payment/SM -non-peak -non-performance/SM -non-performing -non-perishable/S -non-person/S -non-perturbing -non-physical/Y -non-poisonous -non-political -non-polluting -non-porous -non-pregnant -non-prejudicial -non-prescription -non-procedural/Y -non-productive -non-professional/SY -non-profit-making -non-profit/S7 -non-programmable -non-programmer -non-proliferation/S -non-public -non-punishable -non-racial -non-radioactive -non-random -non-reactive -non-reciprocal/S -non-reciprocating -non-recognition/S -non-recoverable -non-recurring -non-redeemable -non-reducing -non-refillable -non-refundable -non-relative -non-religious -non-renewable -non-representational/Y -non-resident/SM -non-residential -non-residual -non-resistance/S -non-resistant/S -non-respondent/S -non-response -non-restrictive -non-returnable/S -non-rhythmic -non-rigid -non-Roman -non-rural -non-salaried -non-scheduled -non-scientific -non-scientist/S -non-scoring -non-seasonal -non-sectarian -non-secular -non-segregated -non-selective -non-sexist -non-sexual -non-singing -non-singular -non-skid -non-slip -non-smoker/SM -non-smoking -non-social -non-Spanish -non-speaking -non-specialist/SM -non-specializing -non-specific -non-spiritual/S -non-staining -non-standard -non-starter/S -non-stick -non-stop -non-strategic -non-striking -non-structural -non-successive -non-supervisory -non-support/SG -non-surgical -non-sustaining -non-Swedish -non-swimmer -non-sympathiser/M -non-tarnishable -non-taxable/S -non-technical/Y -non-tenured -non-terminal/S -non-terminating -non-termination -non-theatrical -non-thinking/S -non-threatening -non-toxic -non-traditional/Y -non-transferable -non-transparency -non-transparent -non-trivial -non-tropical -non-trunk -non-typical -non-U -non-uniform -non-union/S -non-urban -non-use -non-user/SM -non-validity -non-variable -non-venomous -non-verbal/Y -non-veteran/SM -non-viable -non-vintage -non-violence/S -non-violent/Y -non-virulent -non-vocal -non-vocational/Y -non-volatile -non-volunteer/S -non-voter/SM -non-voting -non-Western -non-white/SM -non-word/S -non-working -non-yielding -non-zero -Nona/M -nonactivated -nonage/SM -nonagenarian/MS -nonagon -nonary -nonaspirin -nonbreeding -noncallable -nonce/SM -nonchalance/MS -nonchalant/Y -nonchalantness -nonconformably -nonconforming -nonconformist/SM -nonconformitant -nonconformity/SM -noncultivated -nondescript/YS -nondevelopment -none/S -nonentity/MS -nonequilibrium -nones/M -nonesuch -nonetheless -nonfree -nongenary -nongovernment -nongovernmental -nonhomologous -Nonie/M -noninfringement -nonintrusive -nonissue -nonogenarian -nonpareil/MS -nonplus/GDS -nonradiative -nonrefoulement -nonrival -nonsense/1SMw -nonsensical/P -nonsensicality -nonsteroidal -nonsuch -nonsuit -nonsymmetric -nonsymmetrical -nonsyndromic -nontarget -Nonya -noob/S -noodle/SGDM -nook/SM -noon/SM -noonday/SM -nooning's -noontide/SM -noontime/SM -noose/MSDG -nope -nor -Nora/M -NORAD/M -noradrenalin -noradrenaline/M -noradrenergic -noradrenergically -Norah/M -Noraid -NORAID -norbergite -Norbert/M -norbornadiene -norbornane -Norden/M -Nordholts -Nordic/S -Nordstrom/M -Noreen/M -norepinephrine -Norfolk/M -Norina/M -Norland/M -norm/VDGMoSvu -Norma/M -normal/8Qs+-tqS -normalcy/SM -normalise/CGASD -normality/SM -normalize/CGSD -normalized/A -normalizer/S -normalizes/A -normalizing/A -Norman/MS -Normandy/M -normative/P -normotensive -Norplant -Norris -Norristown/M -Norse/m -Nortel/M -north-east/M -north-Easterly -north-easterly -north-eastern -north-eastward/S -north-Eastward/S -north-north-east -north-south -north-west/M -north-Westerly -north-westerly -north-western -north-Westward/S -north-westward/S -north/MSG -Northam/M -Northampton/M -Northamptonshire/M -northbound -Northcliffe/M -northeaster/MS -northeasterner -norther's -northerly/S -northern/RS -northernmost -Northfield/M -northing/M -Northland/M -northly -Northman -northmen -northness -Northridge/M -Northrop/M -Northumb. -Northumberland/M -Northumbria/M -Northumbrian/S -Northumbrianism -northward/S -Northwest/M -northwester/MS -Norton/M -Norwalk/M -Norway/M -Norwegian/S -Norwich/M -nose-cone/S -nose/ZDGSM -nosebag/MS -noseband -nosebleed/MS -nosedive/DSG -nosegay/MS -nosepiece -nosey -nosh/SDMG -noshery/S -nosiness/S -nosing/M -nosocomial -nostalgia/SM -nostalgic/YS -Nostradamus -nostril/SM -nostrum/SM -nosy/TYP -not/7NxdgnlS -nota -notability/SM -notable/C -notableness/M -notables -notal -notarial -notary/SM -notate/xDSVG -notation's/F -notation/MCo -notational/C -notative/F -notch/DGSM -notchy/T -note's -note/FDCGSNn -notebook/MS -notecard/S -notecase -notedly -notehead -noteholder/S -notepad/S -notepaper/SM -notes inégales -noteworthiness/S -noteworthy/P -nothing-buttery -nothing/PSM -nothingness/S -nothosaur/S -notice/DMSGl -noticeable/U -noticeboard/S -noticed/U -notification/M -notify/SRG7NDn -notion's -notion/CS -notochord/S -notoriety/S -notorious/PY -Notre -Notting -Nottingham/M -Nottinghamshire/M -notum -notwithstanding -Nouakchott/M -nougat/SM -nought/S -Nouméa/M -noun/MS -nounal -Nounéa -nourish/DGLS -nourished/fU -nourisher/M -nourishment/f -nous/M -nouveau -nouveaux -nouvelle -Nov -Nova -nova/SM -novae -Novak/M -novel/Y-MQ3S -novelette/SM -novelist/W -novella/SM -novelty/SM -November/SM -novena/MS -novice/SM -novitiate/MS -Novo/M -Novocain -Novocaine -now -nowadays -noway -nowhere -nowt -noxious/YP -Noyes/M -nozzle/SM -Np -NPD -NRA -nroff/M -NS -ns -NSA/M -NSF -NT -NTFS -nth -NTSC -nu/M -nuance/SMD -nub/ZMS -nubbin's -nubby/T -Nubian/M -nubile -nubility -nuchal -nuclear -nuclear-free -nuclear-powered -nuclease/M -nucleate/NnGDS -nucleation/M -nuclei/M -nucleoli -nucleolus/M -nucleon/SM -nucleonic/S -nucleophile/S -nucleophilic -nucleoplasm -nucleoprotein/S -nucleoside/S -nucleosomal -nucleosome/S -nucleotide/SM -nucleus/MW -nuclide/M -nude/Y3STP -nuder/C -nudes/C -nudge/GSD -nudger/M -nudibranch -nudibranchiate -nudibranchs -nudism/SM -nudity/SM -Nuffield/M -nugatory -Nugent/M -nugget/MS -nuisance/MS -nuke/SGMD -Nuku'alofa -null/S -nullable -nullification/M -nullifidian -nullify/DRSnNG -nullity/MS -numb/RkTYDPGS -numbat/S -number/pdJ -numbered/AeU -numberer/M -numbering/e -numberplate/M -numbers/Ae -numbness/S -numbskull/M -numerable/IC -numeracy/SI -numeral/MS -numerate/IS -numeration/MS -numerator/SM -numeric/SY -numerical/S -numerologist/S -numerology/wSM -numerous/PY -numinous/S -numismatic/S -numismatics/M -numismatist/MS -numskull/SM -nun/MyS -Nunavut -nunchaku/S -nuncio/SM -Nuneaton -Nunez/M -Nunn/M -nunnery/SM -nuptial/S -Nuremberg/M -nurse/RMJSDG -nursemaid/SM -nurser/Z -nursery/mSM -nursling/M -nurture/MRDSG -nut/2GDMZNS -nutate/GSD -nutation/M -nutcase/S -nutcracker/SM -nuthatch/MS -nuthouse -nutmeg/MSDG -nutraceutical/S -nutria/MS -nutrient/SM -nutriment/MS -nutrition/oM3S -nutritional -nutritionist -nutritious/PY -nutritiousness/S -nutritive/Y -nutshell/MS -Nuttall/M -nuttiness/S -nutty/TP -Nuuk/M -nuzzle/RSDG -NVH -nvidia/M -NVMe/M -NVRAM/S -NW -NY -Nyanja/S -Nyanza/M -Nyasa/M -NYC -nyctaginaceous -Nye/M -Nyerere/M -nylon/SM -nymph/SMO -nymphean -nymphet/SM -nympholepsy/M -nymphomania/SM -nymphomaniac/S -Nyquist/M -NYSE -Nyssa/M -NZ -né -née -négligé -Németh/M -O -O'Brien/M -O'Callahan/M -O'Casey -o'Clock -o'clock -O'Connell/M -O'Connor/M -O'Dell/M -O'Donnell/M -O'Dwyer/M -o'er -O'Farrell/M -O'Hara -O'Hare/M -O'Higgins -O'Keeffe -O'Leary/M -O'Neil -O'Neill -O'Reilly -O'Shea/M -O'Sullivan/M -oaf/MS -oafish/Y -oafishness/S -Oahu/M -Oak/M -oak/SM -oaked -oaken -Oakland/M -Oakley/M -Oakmont/M -oakum/SM -oakwood -OAP -oar/DSM -oarlock/SM -oars/m5 -OAS -oases -oasis/M -oat/SM -oatcake/SM -oaten -Oates/M -oath/SM -oatmeal/MS -ob. -Obadiah/M -Obama/M -Obamacare -obbligati -obbligato/S -obduracy/S -obdurate/YS -obdurateness/S -OBE/S -obedience/EMS -obedient/EY -obeisance/SM -obeisant/Y -obelisk/MS -Oberea -Oberlin/M -Oberon/M -Oberth/M -obese -obesity/SM -obey/ESDG -obeyer/EM -obfuscate/DNnyGS -obfuscater -obfuscation/M -Obi-Wan/M -Obi/M -obit/MS -obituary/SM -object-libido -object/DSGvuVM -objectify/DSnNG -objection/lSM7 -objectionable/U -objectionableness/M -objective/PS -objectiveness/S -objectivism -objectivist/S -objectivistic -objectivity/SM -objector/SM -objurgate/GSDnN -objurgation/M -oblate/YSnN -oblateness -oblation/M -obligate/SNxyGnD -obligation/M -obligatory/Y -oblige/EGDS -obligee/SM -obliger/M -obliging/YP -obligor/S -oblique/YDSG -obliqueness/S -obliquity/MS -obliterate/DNvnSVG -obliteration/M -oblivion/MS -oblivious/PY -obliviousness/S -oblong/PS -oblongata -obloquies -obloquy/M -obnoxious/YP -obnoxiousness/S -oboe/SM -oboist/S -obs. -obscene/TY -obscenity/SM -obscurantism/SM -obscurantist/SM -obscure/NSDTGYP -obscurity/MS -obsequies -obsequious/Y -obsequiousness/S -observability/M -observable/S -observance/MS -observant/YU -observation/M -observatory/MS -observe/BxkNRlnSDG -observed/U -obsess/NxXVSuDGv -obsession/M -obsessive/S -obsessiveness/S -obsidian/SM -obsolescence/S -obsolescent/Y -obsolete/GPDSY -obstacle/SM -obstetric/S -obstetrical -obstetrician/MS -obstetrics/M -obstinacy/SM -obstinate/PY -obstreperous/PY -obstreperousness/S -obstruct/GSvDuV -obstructed/U -obstructer's -obstruction/3SM -obstructionism/SM -obstructionist -obstructive/PS -obstructiveness/S -obstructor/S -obstruent/S -obtain/SGD7 -obtainable/U -obtainer -obtention -obtrude/VvuGNSDX -obtruder/M -obtrusive/UY -obtrusiveness/SM -obturator/S -obtuse/TY -obtuseness/S -obverse/SY -obviate/DnNSG -obvious/PY -obviousness/S -ocarina/MS -Occam/M -occasion/SMJoDG -occasional -Occident/M -occidental/SY -occipital/Y -occipitotemporal -occiput -Occitan -Occitanian/S -occlude/SVXNDG -occlusion/M -occlusive/S -occult/PNDGSY -occulter/M -occultism/SM -occultist/S -occupancy/MS -occupant/MS -occupation/MKA -occupational/Y -occupied/U -occupier/SM -occupy/ADSKnG -occur/ASGD -occurrence/SM -occurrent -ocean-going -ocean/MWS -Oceania/M -oceanic/4 -oceanographer/SM -oceanography/WMS -Oceanside/M -ocellar -ocelli -ocelliform -ocellus -ocelot/SM -Ochoa/M -ochre/MS -ochreish -ochreous -ochroid -ochrous -ochry -Oconomowoc/M -OCR/SDG -Oct -octadecane -octagon/oMS -octagonal -octahedra -octahedral -octahedron/SM -octakishexahedron -octal/S -octamer -octamerous -octane/SM -octant/M -octarchy/S -octastyle -octavalent -octave/MS -octavo/SM -octennial -octet/MS -octile -octillion's -October/SM -Octobrist/S -octocoral -octocorallian -octocoralline -octodactylous -octode -octodecimo/S -octodentate -octodesexcentenary -octogenarian/MS -octonary -octopod/S -octopus/MS -octoroon/M -ocular/S -oculist/SM -OD -odalisque/SM -odd/TLPSY -oddball/SM -Oddie/M -oddity/SM -oddness/S -odds-on -ode/MS -Odell/M -Oder/M -Odessa/M -Odette/M -ODF -Odian/M -odiferous -Odin/M -odious/PY -odiousness/S -Odis/M -odium/MS -Odom/M -odometer/SM -odontocete/S -Odontoceti -odoriferous -odorous/Y -odorousness -odour/SpM -ODs -odt -Odyssean -Odysseus/M -Odyssey's -odyssey/S -OE -OED -oedema/SM -oedematous -Oedipal/Y -Oedipus/M -OEM/MS -OEMS -oenology/SM -oenophile/S -Oersted/M -oesophageal -oesophagi -oesophagus/MS -oestradiol -oestriol -oestrogen/SM -oestrogenic -oestrone -oestrous -oestrus/SM -oeuvre/SM -of -Ofcom -Ofelia/M -ofens -off'nce -off'ns -off-air -off-break -off-centre -off-drive/S -off-frequency -off-key -off-licence/MS -off-line -off-message -off-patent -off-peak -off-piste -off-pitch -off-plan -off-putting -off-road/G -off-screen -off-season -off-site -off-street -off-the-cuff -off-the-peg -off-the-shelf -off-the-wall -off-white -off/RGMJ -offal/SM -Offaly/M -offance -offbeat/SM -offcuts -Offenbach/M -offence/S -offend/DRVuGSv -offens -offense -offensive's -offensive/IYP -offensiveness/SI -offensives -offer/rJd -offertory/MS -offhand/iDh -offhandedness/S -office/SRoM -officeholder/SM -officemate/S -officer/d -officership/S -official's -official/UY -officialdom/MS -officialese -officialism/MS -officialness -officials -officiant/SM -officiate/NnSDG -officiation/M -officiator/SM -officio -officious/PY -officiousness/S -offing/M -offins -offish -offline -offload/DGS -offprint/GMSD -offset/SGM -offshoot/MS -offshore/SD -offshoring -offside/S -offspring/M -offstage -offt'ns -Ofsted/M -oft -oft-times -Oftel -OFTEL -often -oftener -oftenest -oftenness -oftens -Ofwat -oga -Ogden/M -Ogg -ogg -ogive/M -ogle/DRSG -Oglethorpe/M -ogre/MS -ogreish -ogress/S -ogrish -Oguibe/M -Ogunquit/M -oh -Ohio/M -Ohioan/S -ohm/WSM -ohmmeter/SM -oho/S -ohs -OHSA/M -oil-shale -oil/m2RZGMSD -oilbird/S -oilcan/S -oilcloth/SM -oilfield/MS -oiliness/S -oilseed/SM -oilskin/MS -oilstone -oily/TP -oink/DGS -ointment/SM -OJ -Ojibwa/SM -OK/GDM -Okamoto/M -okapi/SM -okay/DMG -Okayama/M -Okeechobee/M -okey-doke -okey-dokey -Okhotsk/M -Okinawa/M -Oklahoma/M -Oklahoman/MS -okra/MS -Okrand/M -OKs -Oktoberfest -olanzapine -Olav/M -old-age -old-fashioned -old-gold -old-style -old-time/R -old-world -old/T -Oldbury -olden -Oldenburg/M -Oldfield/M -Oldham -oldie/MS -oldish -oldly -Oldman/M -oldness/S -Oldowan -Oldsmobile/M -oldspeak -Oldspeaker -oldster/SM -OLE -oleaginous -oleander/MS -oleate -OLED/S -olefin/M -Oleg/M -Olen/M -oleomargarine/SM -oles -olfactory -Olga/M -oligarch/ZMWw -oligarchs -oligarchy/SM -oligo/S -oligomer/S -oligonucleotide/S -oligopolistic -oligopoly/SM -oligotrophy/W -Olin/M -olive/MS -Oliver/M -Olivetti/M -Olivia/M -Olivier/M -olivine -Ollie/M -Olmsted/M -Olsen/M -Olson/M -Olympia/M -Olympiad/SM -Olympian/S -Olympic/S -Olympus/WM -olé -OM -Omagh/M -Omaha/M -Oman/M -Omar/M -ombudsman/M -ombudsmen -omega/MS -omelet/SM -omelette/MS -omen/SMd -omeprazole -omicron/SM -ominous/PY -ominousness/S -omission/M -omit/NXSDG -ommatidia -ommatidium -omni/M -omnibus/MS -omnicompetence -omnicompetent -omnidirectional -omnipotence/SM -omnipotent/YS -omnipresence/SM -omnipresent/Y -omniscience/MS -omniscient/SY -omnisexual -omnisexuality -omnivore/SM -omnivorous/YP -omnivorousness/S -on-board -on-frequency -on-line -on-off -on-screen -on-site -on-street -on/Y -onanism/M -onboard -once -once-over -oncer/M -oncogene/S -oncolitic -oncologic -oncologist/S -oncology/SM -oncoming/S -one-dimensional -one-dimensionality -one-directional -one-downmanship -one-downness -one-downsmanship -one-eared -one-eyed -one-half -one-horse -one-liner -one-man -one-off -one-piece -one-quarter -one-sided/Y -one-sidedness -one-step -one-third -one-time -one-to-one -one-track -one-upmanship -one-way -one/PMS -OneDrive -onefold -Onega/M -Oneida/SM -oneirology -oneness/S -oner/M -onerous/PY -onerousness/S -oneself -onesie/S -onewhile -onflow/G -onglaze -ongoing/SP -onion/MS -onionskin/MS -online -onlooker/SM -onlooking -only-begotten -Onno/M -Ono/M -onomatopoeia/MS -onomatopoeic -Onondaga/SM -onrush/GMS -ons -onset/SM -onshore -onside -onslaught/SM -onstage -Ontarian/S -Ontario/M -onto -ontogeny/MS -ontology/1wMS -onus/SM -onward/S -onychophoran/S -onyx/SM -oocyte/S -OODA -oodles -ooh/DSG -oolitic -OOo/M -oops/S -ooze/DZSG -oozy/T -op/FS -opacify/RDGS -opacity/SM -opal/SM -opalescence/S -opalescent/Y -opalise/SGD -opalish -opalite -opalize/SGD -opanci -opanka/S -opaque/PTSY -opaqued -opaqueness/S -opcode/SM -OPEC -open-air -open-and-shut -open-deartedness -open-ended -open-eyed -open-faced -open-handed/P -open-handedness/S -open-heart/D -open-minded/Y -open-mindedness -open-mouthed -open-plan -open-source -open-top -open/rdSJY -OpenBSD -opencast -OpenCL -OpenDocument -opened/AU -OpenGL -opening/M -openness/S -OpenOffice/M -OpenPGP/M -opens/A -OpenSolaris -OpenSSL/M -openwork/SM -opera/nSvuMV -operability -operable/I -operadi -operand/SM -operandi -operant/SY -operate/DSGFN -operatic/YS -operation's/F -operation/Mo -operational -operative/FPS -operativeness/I -operator/FMS -opercula -opercular -operculate -operculum -operetta/MS -Ophelia/M -ophiolite -ophiolitic -Ophiuroidea -ophthalmia -ophthalmic/S -ophthalmology/3MWS -opiate/MGDS -opine/GSD -opinion/MS -opinionated/PY -opioid/S -opisthognathous -opisthograph/W -opisthorchiasis -opisthosoma -opisthosomal -opisthotic -opium/SM -Oporto -opossum/SM -opp -Oppenheimer/M -opponent/SM -opportune/IY -opportunism/SM -opportunist/SMW1 -opportunity/MS -opposable -oppose/SNxXGD -opposed/U -opposer/M -opposite/YPS -opposition/M -oppress/VNuSvDGX -oppression/M -oppressive/P -oppressiveness/S -oppressor/SM -opprobrious/Y -opprobrium/SM -Oprah/M -ops -opt-out/S -opt/1xwGWSD -optic/S -optician/MS -optics/M -optima/o -optimal -optimality -optimise/M -optimised/U -optimism/cMS -optimist/SW1M -optimistic/c -optimization/M -optimized/U -optimum/qs8Q-9SM -option/GDSM -optional/S -optionality/M -optoacoustic -optoelectronic -optometry/SMW -opulence/MS -opulent/Y -opus/SM -or/NMn -oracle/MS -oracular -oral/S -Oran/M -orang -orang-outang/S -orang-utan/MS -orange/yMS -orangeade/SM -orangery/SM -orangewood -orangey -orangish -orangutan/S -orangutang/S -Oranjestad/M -orate/SGD -oration/M -orator/Sw1M -oratorio/SM -oratory/SM -orb/SMGD -orbicular -Orbison/M -orbit/dMS -orbital/YSM -orbiter/S -orc/S -orca/S -Orcadian/S -orcein -orchard/MS -orchardist/S -orchestra/SnoM -orchestral -orchestrate/DSG -orchestration/M -orchestrator/M -orchid/SM -orchidectomy/S -orchiectomy/S -Orci/M -orcish -ordain/LSGD -ordained/KU -ordainer/M -ordaining/K -ordainment/K -ordains/K -ordeal/SM -order/YESdM -ordered/AU -orderer -ordering/S -orderless -orderliness/ES -orderly/S -orders/A -ordinal/S -ordinance/SM -ordinands -ordinariness/S -ordinary/TSY -ordinate's -ordinate/FNS -ordination's/F -ordination/SM -ordinator/SF -ordnance/SM -Ordovician -ordure/SM -ore/MySo -orebody/S -oregano/SM -Oregon/M -Oregonian/S -Oren/M -Oreo -Orestes -organ/W3q-Q81s9t+SM -Organa/M -organdie/MS -organelle/SM -organic/S -organicalness -organicism -organicist -organicistic -organicity -organification -organify/SGD -organigram/S -organisation/oM -organisational -organise/EnADGS -organiser/ASM -organism/OMWS -organist -organization/oM -organizational/S -organize/AnSEGDN -organizer/AM -organochlorine/S -organogram/S -organometallic -organophosphate/S -organza/MS -orgasm/DGMSW -orgasmically -orgastic -orgastically -orgiastic -orgiastically -orgone -orgonite -orgulous -orgy/MS -Oric -oriel/MS -orient's -orient/ENSADnG -orientable -oriental/SY -orientalise/SGD -Orientalism -Orientalist/S -Orientalistic -orientalize/SGD -orientate/SDAEG -orientation/EMA -orienteer/SDG -orienter -orifice/MS -orig -origami/MS -origin/NMnSoVv -original/U -originalism -originality/MS -originals -originate/SDG -origination/M -originator/MS -Orin/M -Orinoco/M -oriole/SM -Orion/M -orison/MS -Oriya/M -Orkney/M -Orkut/M -Orland/M -Orlando/M -Orleans -ormolu/SM -ornament/nMDGNSo -ornamental/S -ornamentalism -ornamentalist/S -ornamentation/M -ornate/YP -ornateness/S -orneriness's -ornithoid -ornithology/3wSM -ornithomorphic -ornithophilous -orogen/S -orogenesis -orogenic -orogeny/S -orographic/M -orography/WM -oropharyngeal -oropharynges -oropharynx -oropharynxes -orotund -orotundity/MS -orphan/SMd -orphanage/MS -orphanhood/M -orphanism -Orpheus/M -Orphic -Orpington -Orr/M -Orrin/M -orris/SM -ors -Orsay/M -Orson/M -Ortega/M -orthodontia -orthodontic/S -orthodontist/SM -orthodox/ZUY -orthodoxes -orthodoxy/SM -orthoepist -orthoepy/W -orthogenesis -orthogenesist -orthogenetic -orthogenetically -orthogonal/Q8q-Y -orthogonality/M -orthogonalization/M -orthography/w1SMW -orthomolecular -orthonormal -orthopaedic/S -orthopaedist/S -orthophosphate's -orthopod -orthoprax -orthopraxis -orthopraxy -orthopsychiatric -orthopsychiatrist/S -orthopsychiatry -orthorhombic -orthostatic -orthotic/S -orthotist/S -Ortiz/M -Ortolà -Orton/M -Oruro/M -Orville/M -Orwell/M -Orwellian -OS/M -Osage/SM -Osaka/M -Osama/M -Osbert -Osborn/M -Osborne/M -Oscar/MS -Osceola/M -oscillate/NynSDG -oscillation/M -oscillator/SM -oscilloscope/SM -oscular -osculate/nNDGS -osculation/M -OSes -OSGi -Osgood/M -OSHA -Oshii/M -Oshkosh/M -Osiander/M -osier/MS -Osirian -Osiris/M -Oslo/M -osmium/M -osmolarity -osmoregulation -osmoregulator -osmoregulatory -osmoses -osmosis/M -osmotic -osmotically -osprey/SM -OSS -osseous/Y -Ossete/S -Ossetia -Ossetian/S -Ossetic -Ossett/M -ossicle/S -ossicular -ossiculectomy -ossiculum -ossification/M -ossify/SNGnD -Osteichthyes -ostensible/Y -ostentation/SM -ostentatious/YP -osteoarthritic -osteoarthritides -osteoarthritis/M -osteoblast/SW -osteoclast/SW -osteodentine -osteoderm/S -osteodermal -osteodontokeratic -osteodystrophic -osteodystrophy -osteology/M -osteomyelitis -osteopath/WZSM -osteopathy/MS -osteoporoses -osteoporosis/M -osteosarcoma/S -osteosarcomata -osteospermum/S -osteotome/S -osteotomy/S -ostinati -ostinato/S -ostler -Ostlere/M -ostracise/DSMG -ostracism/MS -ostracod/S -ostracode/S -Ostrander/M -ostrich/MS -Ostrogoth/S -Ostrogothic -Oswald/M -Oswestry -OT -Otago/M -OTB -OTC -Othello/M -other/SPM -otherwise -otherworldliness -otherworldly -otic -otiose -Otis/M -otitis -Otley/M -OTOH -otoscope -otoscopic -otoscopically -OTP -OTT -Ottawa/M -otter/MS -Otto/M -ottocento -Ottoman/SM -Otway/M -Ouagadougou/M -oubliette/SM -ouch/S -ought -oughtn't -Ouija -ounce/SM -our/S -ourself -ourselves -oust/RGDS -out-group/S -out-half -out-of-court -out-of-date -out-of-phase -out-of-pocket -out-take/S -out-tray -out/MDSGJ -outage -outang/S -outargue -outbacker -outbalance -outbid/G -outboard -outboast -outbound -outbred -outbreed/G -outbreeder -outburst/M -outcast/G -outclass -outcome/M -outcompete/SGD -outcraft -outcricket -outcrop/J -outcross/SGD -outcry/M -outcrying -outdate/SGD -outdistance -outdo/G -outdoor -outdrank -outdraw/G -outdrink/SG -outdrive/SG -outdriven -outdrove -outdrunk -outer/S -outermost -outerwear/M -outfall -outfight/G -outfit/G -outflew -outflow/M -outflown -outfly/SG -outfox/G -outgo/J -outgoingness -outgrip -outgross/SGD -outgrow -outguess -outgun/SGD -outhouse -outing/M -outland/S -outlandish/PY -outlandishness/S -outlast/G -outlaw/DyG -outlawry/M -outlay/M -outlet -outlier/S -outline -outlive/S -outlook/M -outmanoeuvre -outmigration -outmoded -outmuscle/SGD -outnumber -outpace/S -outperformance -outpoint/DG -outpost -outpouring/SM -outproduce -output/MG -outrageous/PY -outrank/G -outridden -outride/SG -outrider/S -outright -outrightly -outrode -outré -outsail/SGD -outshoot -outshot -outside/R -outsiderness -outsize/D -outsole/S -outsource/J -outspeed -outspoken/PY -outspokenness/S -outstanding/Y -outstare/SGD -outward/PY -outwent -outwit/G -outwith -outworker/S -outworld/R -ouzo/MS -ova/yoMn -oval/MSP -ovality -ovarian -ovary/MS -ovate/S -ovation/M -oven-ready -oven/SM -ovenbird/SM -ovenproof -over-anxiety -over-anxious/Y -over-bright -over-curiosity -over-curious -over-delicacy -over-delicate -over-large -over-long -over-many -over-much -over-nice -over-niceness -over-nicety -over-particular -over-ridden -over-ride/GS -over-sentimental -over-simplistic -over-talkative/P -over-the-counter -over-the-top -over/MSY -overabundance/SM -overabundant -overabundantly -overachieve/L -overactive -overactivity -overage -overambitious -overanalyse/SGD -overanalysis -overarching -overarm -overattentive -overawe -overbake/SGD -overbalance -overballast/SGD -overbank/SGD -overbear/k -overbearing/P -overbed -overbid/G -overbite/M -overboard -overbold/YP -overbook/G -overboot/S -overbore -overbred -overbreed/S -overbridge/S -overbuild/G -overburden/k -overbuy -overcapacity -overcapitalise -overcareful -overcast -overcaution -overcautious/YP -overcerebral -overcheck/S -overclass -overclock/DGS -overclocker/SM -overcloud -overcome -overcommit/S -overcompensatingly -overcompensatory -overconscientious -overcorrection -overcredulous -overcritical -Overdale -overdecorate -overdetermined -overdo/G -overdraw/G -overdress/G -overdrive/M -overdue -overeager -overeaters -overedit -overeducate -overemotional -overemphasize -overemployment -overenthusiasm -overenthusiastic -overenthusiastically -overerupt/D -overeruption -overest -overesteem/SGD -overexcitable -overexcite -overexcitement -overexercise -overexploit/SGD -overexpress/SGD -overexpression -overextend/N -overfall -overfeed/G -overfill/G -overfish/G -overflight -overflow -overfond -overfur -overgenerous -overglaze -overgraze -overground -overgrow -overhair -overhand -overhang -overhard -overharvest/SGD -overhasty -overhaul/J -overhead -overhearer -overheat -overhit/SG -overhype/D -overinsurance -overinsured -overkeen -overkill/M -overland/SGDR -overlarge -overlay/R -overleaf -overleap/SD -overleapt -overleveraged -overlier -overload/G -overlock/D -overlocker/S -overlong -overlooker/S -overlordship -overman/SDG -overmedicate -overmedication -overmighty -overmuch -overnight/DSGR -overnutrition -overorganise -overorganize -overpack/SD -overpaint/SGD -overparent/G -overparted -overpass/M -overpay -overpopulous -overpower/k -overprecise -overprescribe/SGDN -overpressure -overprocess -overpromote -overreacher -overridable -override/G -overrideable -overrider -overripe -overripened -overripeness -overrisen -overruff/SGD -overruler -overrunner -oversail/SGD -oversale -oversalt/SGD -oversample/S -oversaturate -oversaturated -oversaw -overscan -oversee -overseership -overself -oversensible -oversensitive -oversensitiveness -oversensitivity -overset/SG -overshadow -overshare/SGDR -overshoe -overshot -oversimple -oversimplification/M -oversize -oversleep -overspill/M -oversteer/SGD -overstimulation -overstorey/S -overstress/SGD -overstretch -overstrict -oversubtle -overt/Y -overtake -overtax -overtedious -overthink/SG -overthought -overthrow -overthrust/G -overtime -overtness -Overton/M -overtone -overture/SM -overtype/G -overutilisation -overutilization -overvaluation -overvalue -overview/DG -overwater/d -overwear -overweening/Y -overwhelm/k -overwhelmingness -overwind/G -overworld -overwound -overwrite/G -Ovid/M -oviduct/SM -oviform -oviparity -oviparous -oviposit/Sd -ovoid/S -ovotestes -ovotestis -ovoviviparity -ovoviviparous -ovular -ovulate/GySD -ovule/NSMn -ovum/SM -ow/GD -owe/S -Owen/M -owl/MS -owlet/MS -owlish/YP -own-brand -own/GESD -owned/U -owner-occupier -owner/SM -ownerless -ownership/MS -ox/M -oxalacetate -oxalate/M -oxalic -oxalis -oxaloacetate -oxaloacetic -oxbow/MS -Oxbridge -oxcart's -oxen/M -Oxfam -Oxford/MS -Oxfordian/S -Oxfordshire -oxidant/SM -oxidase/S -oxidation/M -oxidative/Y -oxide/Q-nSMs -oxidisation -oxidise/J -oxidised/U -oxidization/M -oxidized -oxidizer/M -oxidizing -oximeter/S -oximetry -oxisol/S -oxlip/S -Oxnard -Oxonian -Oxordshire/M -oxpecker/S -OXT -oxt -oxtail/MS -oxyacetylene/SM -oxyanion/S -oxycodone/M -oxygen/NnM -oxygenate/DMGS -oxygenation/M -oxyhydroxides -oxymoron/M -oxysulphide -oxytocic -oxytocin -oyster/MSd -oystercatcher/S -oz -Ozark/MS -ozone-friendly -ozone/M -Ozzie/MS -p.a. -p.m. -P.O. -p/AYFI -pa/Mo -Paarl -Pablo/M -Pabst/M -pabulum/SM -PAC -pace/DRMSG -paced/e -pacemaker/SM -paceman -pacesetter/SM -pacesetting -pacey -Pacheco/M -pachyderm/MS -pachytene -Pacific's -pacific/4 -pacification/M -pacifism/SM -pacifist/W -pacify/nD3RWN1SG -pacing/e -Pacino/M -pack's -pack/GADSU -packable -package/JRGDMS -packaged/AU -packages/A -packaging/M -Packard/M -packer/SM -packet/dSM -packhorse/M -packing/MS -packinghouse/S -Packington/M -packsaddle/SM -Packwood/M -pact/IMS -pacts/F -pad/SZJGMD -padauk -padded/U -Paddie/M -padding/M -Paddington/M -paddle/DRSMG -paddlefish/S -paddock/SGDM -paddy/MS -Padgett/M -Padilla/M -padlock/GDMS -Padmé/M -padouk -Padraig/M -padre/SM -Padrewski/M -Padstow -paean/MS -paediatric/S -paediatrician/SM -paediatrics/M -paedophile/S -paedophilia/M -paella/MS -paeony/M -pagan/SM -Paganini/M -paganism/SM -page/SM6RDG -pageable -pageant/SM -pageantry/MS -pageboy/SM -paged/U -paginate/DSGNn -pagoda/SM -Pahaji -paid-up -paid/KfUcA -Paige/M -pail/S6M -pailful/MS -pain/DMpSjG6 -Paine/M -painful/TP -painfulness/S -painkiller/SM -painkilling -painless/Y -painlessness/S -painstaking/Y -paint/DRSGMJ -paintball/GSR -paintbox/M -paintbrush/MS -painted/AU -painter/Y -painterliness -painting/M -paints/A -paintwork -pair/ADMSG -paired/UI -pairing/S -pairs/I -pairwise -paisley -Paisley/MS -Paki/S -Pakistan/M -Pakistani/S -pal/MS -palace/SM -paladin/SM -Palaearctic -palaeoanthropologist -palaeoanthropology/w -palaeobotanist -palaeobotany/w -Palaeocene -palaeoclimatologist -palaeoclimatology/w -palaeocortex -palaeocortical -palaeocrystic -palaeocurrent/S -palaeodemography/W -palaeodesert -palaeoecologically -palaeoecologist -palaeoecology/w -palaeoeconomy/W -palaeoentomological -palaeoentomologist -palaeoentomology -palaeoenvironment -palaeoenvironmental -palaeoequator -Palaeogene -palaeographer/SM -palaeography/MSw1W -Palaeolithic -palaeomagnetic -palaeomagnetism -palaeontologist/S -palaeontology/wMS -palaeopallium -palaeopathological -palaeopathologist/S -palaeopathology -Palaeozoic -palanquin/SM -palatability/M -palatable/P -palatal/QS -palate/SgoM -palatial/Y -palatinate/SM -palatine/S -palatoquadrate -Palau/M -palaver/dSM -palazzi -palazzo/S -pale/DTSYG -palea -paleae -paled/I -paleface/SM -paleness/S -Paleocene -paleocrystic -Paleozoic -paler/I -Palermo/M -pales/I -Palestine/M -Palestinian/S -Palestrina/M -palette/MS -palfrey/SM -palimpsest/SM -palindrome/MS -palindromic -paling/M -palisade/MGDS -palish -pall-bearers -pall/MS -palladia -Palladian -Palladianism -Palladio/M -palladium/M -pallbearer/MS -pallet/MQ8-Sq -palliate/NVGvDnS -palliation/M -palliative/S -pallid/PY -pallidness/S -pallidotomy -pallidum -pallor/MS -palm/DMG3SZ -Palma/M -palmate -Palmdale/M -palmer/M -Palmerston/M -Palmerstonian -Palmerstonianism -Palmerstonism -palmery -palmette/S -palmetto/MS -Palmgren/M -palmist/y -palmistry/SM -palmitate -Palmolive/M -palmtop/S -palmy/3T -Palmyra/M -Palo/M -Palomar/M -palomino/SM -palp/S -palpability -palpable/YI -palpably/I -palpal -palpate/SGDnN -Palpatine/M -palpation/M -palpebral -palpi -palpitate/DSNGn -palpitation/M -palpus -pals/Z -palsy/DMSG -paltriness/S -paltry/TP -paludal -Pam/M -pamby -Pamela/M -pampas/M -pamper/dS -pamperer/M -pamphlet/SM -pamphleteer/DGSM -pan-European -pan/WGSDM -panacea/MS -panache/MS -Panama/M -panama/S -Panamanian/S -Panasonic/M -panax -pancake/SDMG -pancetta -panchromatic -Pancras -pancreas/SM -pancreatic -pancreatitis -panda/SM -pandan -pandanus -pandemic/S -pandemonium/MS -pander/Sd -panderer/S -Pandora/M -pane/MDS -panegyric/MS -panel's -panel/IGSD -panelling/SM -panellise/SnDG -panellist/MS -panellize/SNDnG -pang/SM -Pangaea -pangolin/SM -panhandle/SGDR -panic-stricken -panic/GMSZD -panicky/T -panicle/SD -panier's -Paniker/M -Panis -panjandrum/M -panko -panky -pannier/MS -panoply/DSM -panorama/MS -panoramic -panpipes -pans/Z -pansexual/S -pansexuality -panspermia -panstick -pansy/MS -pant/SDG -Pantaloon/M -pantaloons -pantechnicon -pantheism/MS -pantheist/SW -pantheistical -pantheistically -panthenol -pantheologist/S -pantheology -pantheon/SM -pantheonic -panther/SM -pantheress -pantherine -pantherish -pantherishly -panties -pantihose -pantiled -pantiles -pantiliner -pantograph/SM -pantomime/3SMDG -pantomimic -pantoum/S -pantry/MS -pantryman -pantrymen -pants/f -Panza/M -panzer -Paola/M -Paoli/M -Paolo/M -pap/oM3r -papa/MS -papacy/MS -papal -paparazzi -paparazzo -papaw/MS -papaya/SM -Papeete/M -paper-clip/SM -paper/2pdrZ -paperback/MS -paperbark/S -paperboard -paperboy/SM -paperchase -papered/A -papergirl/SM -paperhanger/SM -paperhanging/SM -paperknife -paperknives -papermaker -papermaking -papers/A -paperweight/SM -paperwork/MS -papery/P -papilla/yM -papillae -papillated -papillomavirus -papist -papoose/MS -pappardelle -pappi -pappose -pappus -Pappus/M -pappy/S -paprika/MS -Papua/M -papulae -papular -papule/S -papulose -papulous -Papus/M -papyri -papyrus/M -par/dDGS7Z -para/SM -paraben -parabiosis -parabiotic -parabiotically -parable/SM -parabola/MWS -paraboloid/SM -paraboloidal/M -Paracelsus/M -paracetamol/M -parachute/3DSMG -parachuter/M -paracondyloid -paracone -paraconformable -paraconformity -paraconid -paracrine -parade/RMGDS -paradigm/MS -paradigmatic -paradisal -paradise/MwS -paradox/Mw1WS -paradoxical/P -paradrop/SGD -paraesthesia/S -paraesthesiae -paraffin/SM -paraffinic -parageneses -paragenesis -paragenetic -paraglide/SGD -paraglider/S -paragon/MS -paragraph/DMSG -paragrapher/M -Paraguay/M -Paraguayan/S -parainfluenza -parakeet/MS -paralanguage -paralegals -paralexia -paralexic -paralinguistic -parallax/SM -parallel/S -paralleled/U -parallelepiped/MS -paralleling -parallelisation -parallelise/SGD -parallelism/MS -parallelize/SGDN -parallelly -parallelogram/MS -parallelogramic -parallelogramish -parallelogrammatic -parallelogrammatical -parallelogrammic -parallelometer -parallelwise -paralog -paralogism/S -paralogous -paralogy -Paralympian/S -Paralympic/S -paralyse/RShGWDk -paralysis/M -paralytic/YS -paramagnet/MW -paramagnetism -Paramaribo/M -Paramecia -Paramecium/M -paramedic/MS -paramedical/S -parameter/W1pMS -parametrise/DBnGS -parametrize/SGBnDN -paramilitary/S -paramoecia -paramoecium/M -paramount -Paramount/M -paramour/MS -paranoia/SM -paranoiac/S -paranoiacally -paranoic -paranoically -paranoid -paranormal/YS -parapet/SM -paraphernalia -paraphilia/S -paraphiliac/S -paraphrasable -paraphrase/SGMD -paraphraser/M -paraphrastic -paraphyletic -paraplegia/SM -paraplegic/SM -parapod -parapodia/O -parapodium -parapolar -parapolitical -parapophysis -paraprofessional/SM -parapsychic -parapsychological/Y -parapsychologist/S -parapsychology/SM -paraquat/S -parasail/G -parascend/GR -parasite/MwWS1 -parasitic/S -parasitisation -parasitise/SGD -parasitism/SM -parasitize/SGDN -parasitoid/S -parasitologist/M -parasitology/M -parasitoses -parasitosis -parasol/MS -parasympathetic/S -paratactic/Y -parataxis -parathion/SM -parathyroid/S -paratracheal -paratroop/RS -paratype -paratyphoid/S -parboil/GSD -PARC/M -parcel/SMGD -parcelling/M -parch/SGLD -parcour -pardon/rgl7dS -pardonable/U -pardonableness/M -pardonably/U -pardoned/U -pare/JS -pared/KF -paregoric/SM -pareidolia -Parello/M -parenchyma/O -parenchymatous -parent/DJSoGM -parentage/MS -parental -parenteral -parentheses -parenthesis/M -parenthesise/D -parenthesize/D -parenthetic/Y -parenthetical -parenthood/SM -parer/F -parers -pares/FK -pareses -paresis/M -parfait/SM -parfleche/S -pargasite -pariah/SM -parietal/S -parimutuel/S -paring/M -Paris/M -parish/MS -parishioner/MS -Parisian/S -parity/EMS -park/DGMSZ -parka/MS -Parkel/M -Parker/M -Parkin/M -parking/M -Parkinson/M -parkinsonism -parkland/SM -parkour -parkway/SM -parky/T -parlance/SM -parley/MGDS -parliament/MS -parliamentarian/MS -parliamentarianism -parliamentary/U -parlour/MS -parlourmaid -parlous -Parma/M -Parmenides/M -parmesan/S -parmigiana -Parnell/M -paroccipital -parochial/Y -parochialism/MS -parochiality -parody/G3DMS -parole/DSMG -parolee/MS -parotid/S -parovarian -parovarium -paroxetine -paroxysm/MS -paroxysmal -paroxysmally -paroxysmist -parquet/dyMS -parquetry/MS -parr -parrakeet's -parricidal -parricide/MS -parrot/dSM -parrotbill/S -parrotfish/S -parrotlike -parry/GDS -pars/RDGJS -parse -parsec/SM -parsed/U -parsimonious/Y -parsimony/MS -parsley/SM -parsnip/SM -parson/MS -parsonage/MS -part's/f -part-song -part-time -part-timer/S -part/fICS -partake/RSG -partaken -parted/CI -parter/S -parterre/SM -parthenogeneses -parthenogenesis/M -parthenogenetic -parthenogenetically -Parthenon/M -partial/IY -partiality/MIS -partials -participant/SM -participate/ySNVDGn -participation/M -participator/S -participial/Y -participle/SM -particle/SM -particleboard/S -particoloured -particular/Q8SY -particularism -particularistic -particularity/SM -particulate/S -partier/S -parting/MS -partisan/MS -partisanship/SM -partite -partition/MGDS -partitioned/A -partitioner/M -partitions/A -partitive/S -partizan's -partly -partner/dMS -partnership/SM -partook -partridge/SM -partridgeberry/S -partschinite -parturifacient -parturition/MS -partway -party/DMSG -parvenu/MS -parvovirus/S -pas/GRDJ -Pasadena/M -pascal/MS -paschal/S -pasha/MS -pass/7SuVNXvlk -passable/I -passage/DMSG -passageway/SM -passant -passband -passbook/MS -passcode -passed/Fc -passenger-mile -passenger/MS -passer-by -passerine/S -passers-by -passes/IcFf -passibility -passible -passim -passing/Fc -passion/FM -passionate/FEY -passionflower/SM -passionless -passivated -passive/IY -passiveness/SI -passives -passivity/IS -passkey/SM -passmark -passover -passphrase/S -passport/SM -password/SMD -passé/M -passée -past's/A -past/DMS2GZy -pasta/SM -paste-up -paste/SM -pasteboard-like -pasteboard/SM -pastegrain -pastel/SM -paster -pastern/MS -Pasteur/M -pasteurise/RnSDG -pasteurised/U -pasteurize/nRNSDG -pasteurized/U -pastiche/MSD -pastille/MS -pastime/MS -pastiness/S -pastis -pastor/dMS -pastoral/YS -pastoralism -pastoralist/S -pastorate/SM -pastrami/MS -pastry/SM -pasts/A -pasturage/SM -pasture/GDSM -pastureland/S -pasturer/M -pasty/TSP -pat-down -pat/DSMZG -PATA -Patagonia -Patagonian/S -patball -patch's -patch/DESG -patchable -patcher/EM -patchiness/S -patchouli -patchwork/RSM -patchworked -patchworking -patchworky -patchy/TY -pate/SM -Patel -patella/M -patellae -patellar -patellate -paten/M -patency -patent/YSMD7G -patentee/SM -patentor/MS -pater/M -paterfamilias/MS -paternal/Y -paternalism/SM -paternalist/W -paternity/MS -paternoster/SM -Paterson/M -path-loss -path/pSM -Pathan/S -pathetic/Y -pathfinder/MS -pathlessness -pathname/MS -pathogen/WSM -pathogenesis/M -pathognomonic -pathology/SM3w1 -pathophysiologic -pathophysiological -pathophysiologically -pathophysiologist -pathophysiology -pathos/SM -pathway/SM -pathworking -patience/ISM -patient/eMS -patienter -patientest -patiently/I -patina/SM -patio/MS -patisserie -Patna -patois/M -patriarch/ZM -patriarchal -patriarchate/MS -patriarchically -patriarchs -patriarchy/SM -Patrice -Patricia/M -patrician/MS -patricide/SM -Patrick/M -patrifocal -patrilateral -patriline -patrilineage -patrilineal -patrimonial -patrimony/MS -patriot's/F -patriot/1WSM -patriotic/U -patriotism/SM -patriots/F -patristic/S -patrol/MDGS -patrology -patron/98Q-YMqsS -patronage/SM -patronal -patroness/S -patronise/k -patronize/k -patronizing/M -patronymic/YS -patroon/MS -Patrícia -Pattaya/M -patten/MS -patter/dS -patterer/M -pattern/SGDpM -Patterson/M -Patton -patty/MS -patulin -patulous -patulousness -paucity/SM -Paul/M -Paula/M -Paulette/M -paunch/S2GMZD -paunchy/TP -pauper/QdMS -pauperism/MS -pause/GSD -Pavarotti/M -pave/ASDG -paved/U -Pavel/M -pavement/MS -paver/MS -pavilion/GDMS -paving/SM -paw/DSGM -pawl/MS -pawn/SGDM -pawnbroker/SM -pawnbrokerage -pawnbrokeress -pawnbrokering -pawnbrokery -pawnbroking/S -Pawnee -pawner/M -pawnless -pawnor -pawnshop/MS -pawpaw/M -paxes -Paxil -Paxton/M -pay-as-you-earn -pay-bed -pay-claim -pay-off/MS -pay-packet/SM -pay/A7LSG -payable/S -payback/S -payday -PAYE -payee/MS -payer/SM -paying/Kfc -payload/MS -paymaster/MS -payment/fMSc -Payne/M -payout/S -PayPal/M -payphone/S -payroll/SM -pays/fcK -payslip/S -paywall/SD -Pb -PBX -pc -PC/M -PCB -PCI -PCIe -pcm -PCMCIA -PCs -pd -PDA/S -Pde -pdf -PDF/S -PDP -PDQ -PDSA -PDT -PE -pea-green -pea/MS -peaberry/S -Peabody/M -peace/Ml6j -peaceable/P -peaceful/T -peacefulness/S -peacekeeper/S -peacekeeping -peacemaker/SM -peacemaking/M -peacemonger/d -peacetime/SM -peach's -peach/IDSG -peachy/T -peacock/SM -peafowl/MS -peahen/MS -peak/DM2SiGZ -peaky/P -peal's -peal/SAGD -Peale/M -peanut/SM -pear/MYS -pearl/GDSM -pearler/M -pearlite -pearly/TS -Pearson/M -peartrees -peasant/MS -peasanthood -peasantry/MS -peashooter/SM -peat/ZSM -peatland/S -peats/A -peaty/T -pebble/DYMGS -pebbling/M -pebbly/T -pebibit/S -pebibyte/S -pecan/MS -peccadillo/M -peccadilloes -peccary/MS -peck/DRMGS -peckish -Pecksniffian -pecorino/S -pectic -pectin/MS -pectoral/S -peculate/GDSNn -peculator/S -peculiar/SY -peculiarity/SM -pecuniary -pedagogic/S -pedagogics/M -pedagogue/SM -pedagogy/1SMWw -pedal/RGMSD -pedant/WSM1 -pedantry/SM -peddle/SDG -pederast/ZSM -pederasty/SM -pedestal/DGMS -pedestrian/Q-8qMS -pedicab/SM -pedicel/S -pedicellate -pedicle/S -pedicular -pedicure/GS3DM -pedigree/MS -pediment/ISM -pedimented -pedlar/SM -pedology -pedometer/MS -Pedrick/M -Pedro -peduncle/MS -pee/RGS -peek/SDG -peekaboo/SM -peel/DGSJ -peeled/U -peeler/MS -peeling/M -peen/SGDM -peep-hole/SM -peep-show/MS -peep/DSRGZ -peer's/F -peer/pDG -peerage/SM -peered/F -peeress/SM -peering/F -peerless/PY -peers/F -peeve/MSGD -Peever -peevers/M -peevish/PY -peevishness/S -peewee/S -peg/GSDM -pegasid -Pegasus -pegboard/SM -pegboarding -pegbox -pegger -Peggy/M -peggy/S -pegmatite/S -Peigan/S -peignoir/MS -pejorative/Y -Pekar/M -peke/SM -Peking/M -pekoe/MS -Pelagian/S -Pelagianism -pelagic -Pelagius -pelargonium/S -Pele -pelecypod/S -pelf/M -pelican/SM -pell -pell-mell -pellagra/SM -pellet/dMS -pellicle -pellicular -pellucid -pelmet/S -Pelops -peloton/S -pelt/DGS -pelter/M -pelvic/S -pelvis/MS -pelycosaur/S -Pelé/M -Pembroke/M -Pembrokeshire/M -pemmican/SM -pen-and-ink -pen-name/S -pen/oGDMS -penal/Q8- -penalisation -penalization/M -penalty/SM -penance/DSGM -Penang/M -penannular -penates -Penberthy -pence/M -penceless -penchant/SM -pencil/MGDJS -penciller/S -pendant/CMS -pendent/C -pending -Pendle -Pendlebury/M -penduline -pendulosity -pendulous -pendulousness -pendulum/SM -penectomy -Penelope -penetrability/IMS -penetrable/I -penetrant/S -penetrate/vNnBSDVkuG -penetration/M -penetrative/P -penetrator/SM -penfriend/S -penguin/SM -Penh/M -penicillin/SM -penile -peninsula/SM -peninsular -penis/MS -penistone -penitence/SIM -penitent/ISY -penitential/YS -penknife/M -penknives -penlight/MS -penman/M -penmanship/MS -penmen/M -Penn/M -pennant/MS -penne -Pennell/M -Penney/M -Pennine/S -pennon/SM -Pennsylvania -Pennsylvanian/S -penny-farthing -penny-pinching -penny/pMS -pennyroyal -pennyweight/SM -pennyworth/M -penological -penology/S3M -penoscrotal -penpalship -penpoint -Penrith -pens/XuNvV -pension/7GMRD -pensiveness/S -pent-up -pent/A -pentachlorophenol -pentachord -pentachromic -pentacle/MS -pentacrinite -pentacrinoid -pentactin -pentactinal -pentactine -pentacyclic -pentad -pentadactyl -pentadactylic -pentadactylism -pentadactylous -pentadactyly -pentadecane -pentadelphous -pentadic -pentadodecahedron -pentagon/oSM -pentagonal/S -pentagram/SM -pentamerous -pentameter/MS -pentasyllabic -pentathlete/S -pentathlon/SM -pentatonic -Pentax/M -pentazocine -Pentecost -Pentecostal/S -Pentecostalism -penthouse/SM -pentium -pentlandite -pentobarbitone -pentose -penult -penultimate/SY -penumbra/SM -penumbrae -penurious/YP -penuriousness/S -penury/SM -Penzance/M -peon/SZM -peonage/SM -peony/MS -people/DMGS -peopled/U -PEP/SM -pep/ZD2SGRM -peperoni -pepper/Zd -peppercorn/MS -pepperer/M -peppergrass/M -peppermint/SM -pepperminty -pepperoni/S -peppiness/S -peppy/PT -Pepsi/S -pepsin/SM -pepsinogen/S -peptic/S -peptide/MS -per/y -peradventure/S -perambulate/DGnSN -perambulation/M -perambulator/SM -percale/SM -perceivable/I -perceivably -perceive/aSD -perceived/U -perceiver/SM -perceiving -percent/M -percentage/SM -percentile/MS -percept/vbVMoxSu -perceptibility/I -perceptible/YI -perceptibly/I -perception/MS -perceptive/P -perceptiveness/S -perceptual -perch/DGMS -percha -perchance -Percheron/M -perchlorate/M -perchlorination -percipience/SM -percipient/S -Percival/M -percolate/NnDSG -percolation/M -percolator/MS -percuss/DNvuSGXV -percussion's/A -percussion/3M -percussionist -percussions/A -percussive/P -percutaneous/Y -Percy/M -perdition/MS -perdurable -peregrinate/DSG -peregrination/M -peregrine/nSN -peremptoriness -peremptory/Y -perennate/SGDN -perennial/YS -perestroika/S -perfect/bDYTuPSGVv -perfecter/M -perfectibility/MS -perfection/ISM -perfectionism/SM -perfectionist/SM -perfective/P -perfectly/I -perfectness/SI -perfidious/PY -perfidy/SM -perforate/SNDGn -perforation/M -perforce -perform/eDGS -performable -performance/MS -performant -performative/S -performativity -performed/Uf -performer/MS -perfume/SRDMG -perfumer/Z -perfumery/MS -perfunctory/PY -perfused -perfusion/M -pergola/SM -perhaps -perianth -periastron -pericardia -pericardial -pericarditis -pericardium/M -Pericles -periderm -peridermal -peridia -peridium -peridot/S -perigee/MS -periglacial -perihelia -perihelion/M -peril/MSDG -perilous/PY -perils/I -perilune -perimenopausal -perimenopause -perimeter/SM -perinatal -perineum/M -perinuclear -period/Mw1WS -periodical/SM -periodicity/MS -periodogram -periodograph -periodology -periodontal/Y -periodontics/M -periodontist/S -perioperative -periotic -peripatetic/S -peripheral/SY -periphery/SM -periphrases -periphrasis/M -periphrastic -periscope/SM -perish/7RGDkS -perishable's -perishable/IS -peristalses -peristalsis/M -peristaltic -peristyle/MS -peritoneal -peritoneum/MS -peritonitis/MS -perivascular -periwig/SM -periwinkle/MS -perjure/DRSGZ -perjury/MS -perk/DzGSZ2 -perkiness/S -perky/T -Perl -perlite -perm/GSDM -permaculture -permadeath -permafrost/MS -permalink/S -permalloy/M -permanence's/I -permanence/MZS -permanences/I -permanency/SM -permanent/PY -permanently/I -permanganate -permeability/SIM -permeable/IP -permeance/S -permeate/BDNnGS -Permian -permissibility/M -permissible/PY -permission/M -permissive/YP -permissiveness/S -permit/GXDMNS -permittee/S -permittivity -permutation/M -permutational -permute/DGNSn -pernicious/YP -perniciousness/S -peroneal -peroration/SM -peroxidase/M -peroxide/SDMG -perpendicular/SY -perpendicularity/MS -perpetrate/SGDNn -perpetration/M -perpetrator/SM -perpetual/SY -perpetuate/GnSDN -perpetuation/M -perpetuity/SM -perphenazine -perplex/SGDh -perplexity/MS -perquisite/MS -Perren/M -Perry/M -Perryville/M -persecute/yDSG -persecution/SM -persecutor/MS -Persephone -Persepolis/M -Perseus -perseverance/MS -perseverate/SGDN -persevere/kGDS -Persia/M -Persian/MS -persiflage/MS -persimmon/SM -persist/DSG -persistence/SM -persistent/Y -persister -person-to-person -person/7oSM -persona/MS -personable/P -personae -personage/MS -personal/Qq8- -personalise/CnSGD -personality's/I -personality/SM -personalize/CSNGn -personally/I -personalty/MS -personhood -personification/M -personifier/M -personify/SnDGN -personnel/MS -perspective/YSM -perspex -perspicacious/YP -perspicacity/S -perspicuity/MS -perspicuous/YP -perspiration/M -perspire/DGnNS -persuadable -persuade/DVXRNSvuG -persuasion/M -persuasive/P -persuasiveness/S -pert/PTY -pertain/DSG -Perth -Perthshire/M -pertinacious/PY -pertinacity/SM -pertinence/IS -pertinent/YI -pertness/S -perturb/GSnD -perturbation/M -perturbed/U -pertussis/M -Peru/M -peruke/SM -perusal/MS -peruse/DRGS -Peruvian/S -pervade/uDGNVSv -pervasion/M -pervasive/P -pervasiveness/S -perverse/PXVYN -perverseness/S -perversion/M -perversity/SM -pervert/DhSiG -perverter/M -Pescatore/M -Pescetti/M -peseta/SM -peskiness/S -pesky/TY -peso/MS -pessary/S -pessimal/Y -pessimism/MS -pessimist/MSW1 -pest/SM -pester/dS -pesticidal -pesticide/SM -pestiferous -pestilence/SM -pestilent/Y -pestilential/Y -pestle/DSMG -pesto/S -pet/SRGMD -petabit -petabyte/S -petaflop -petal/MSD -petard/MS -petasus -petcock -Pete -petechia -petechiae -petechial -peter/dS -Peter/M -Peterborough/M -Peterhead/M -Peterhouse -peterman -petermen -Petersburg -Petersen/M -Petersfield/M -petersham -Peterson/M -pethidine/M -petiole/SM -Petit -petite/PS -petition/FSAM -petitioned -petitioner/SM -petitioning -Petrarch/M -Petrarchan -Petrarchanism -Petrarchism -petrel/SM -Petri -petrifaction/SM -petrify/GSND -Petro/M -petrochemical/SM -petrodollar/SM -petrogenesis -petrogeny -petroglyph/MS -petrographic -petrographical -petrol/MS -petroleum/M -petrology/MS3w -Petronas -petrosal/S -Petrov/M -petticoat/SDM -pettifog/RGDS -pettifoggery -pettiness/S -Pettingill/M -pettish/YP -petty/TSY -petulance/SM -petulant/Y -petunia/SM -Peugeot/M -pew/MS -pewee/SM -pewit/SM -pewter/MS -pewterer/S -peyote/MS -PFC -pfennig/MS -PFS -PG -pg. -PGA/M -PGP/M -Ph.D. -pH/MS -phaeton/MS -phage/M -phagocyte/WMS -phagocytise/SGD -phagocytize/SGD -phagocytose/D -phagocytosis -phalanger/SM -phalanges -phalanx/SM -phalarope/S -phalli -phallocentric -phallocentricity -phallocentrism -phallus/WMS -phantasm/SM -phantasmagoria/MS -phantasmagorial -phantasmagorian -phantasmagoric -phantasmagorical -phantasmagorically -phantasmagorist -phantasmagory -phantasmal -phantasy's -phantom/SM -pharaoh/SM -Pharisaic -Pharisaical -Pharisaism -Pharisee/S -pharma/S -pharmaceutical/SY -pharmaceutics -pharmacodynamic/S -pharmacokinetic/SY -pharmacologic -pharmacology/3M1Sw -pharmacopoeia/SM -pharmacotherapy -pharmacy/3SM -pharyngeal/S -pharynges -pharyngitides -pharyngitis/M -pharynx/M -phase/SRGDM -phaseout/S -phasic -phasor/S -phat -PhD/S -pheasant/MS -phellogen -Phelps -phenacetin/SM -phenformin -phenocryst/S -phenol/SWM -phenological -phenology -phenolphthalein/M -phenomena/Mo -phenomenal -phenomenalism -phenomenalist -phenomenalistic -phenomenology/S1Mw -phenomenon/SM -phenosafranin -phenosafranine -phenothiazine/S -phenotype/MSW -phenotypical/Y -phenotyping -phenoxide -phenoxy -phenoxymethylpenicillin -phenyl/M -phenylacetic -phenylalanine/M -phenylephrine -phenylmethyl -phenytoin -pheromone/MS -phew/S -phi/MS -phial/SM -Phil/M -Philadelphia/M -philadelphus -philander/drS -philanthropist/SM -philanthropy/1MSW -philately/3SWM -philharmonic/S -Philip/MS -Philipose/M -Philipp/M -Philippi/M -philippic/MS -Philippine -Philippines/M -philistine/S -philistinism/S -Phillips/M -phillipsite -philodendron/MS -philology/M13wS -philopatric -philopatry -philosopher/MS -philosophy/w1sWQ8S9M -philtre/SM -philtrum -Phipps/M -phisher/S -phishing -phlebitides -phlebitis/M -phlebotomise/SDG -phlebotomist/S -phlebotomize/SDG -phlebotomy/S -phlegm/SM -phlegmatic/Y -phloem/SM -phlogiston -phlox/M -Phnom -pho -phobia/MS -phobic/S -Phobos -phoebe/MS -Phoenicia -Phoenician/S -phoenix/MS -Pholidota -phone-in/S -phone/ZSWG1DM -phonecard/S -phonematic -phoneme/MS1 -phonemic/S -phonemics/M -phonetic/SY -phonetician/SM -phoneticist -phonetics/M -phoney -phonic/S -phonics/M -phoniness/S -phonogram/S -phonograph/WSM -phonology/13wSM -phonon/M -phonotactic/S -phony/TSP -phooey/S -phosphatase/M -phosphate/MS -phosphatidylethanolamine -phosphide/M -phosphine/M -phosphodiesterase -phosphoenolpyruvate -phospholipase -phospholipid/S -phosphor/SWM -phosphoresce -phosphorescence/MS -phosphorescent/Y -phosphorous -phosphorus/M -phosphorylate/SGDN -photo-oxidation -photo-oxidative -photo/MS -photoabsorbing -photoabsorption -photoacoustic -photoact -photoaction -photoactivatable -photoactivate/SGD -photoactivation -photoactive -photoactivity -photoaffinity -photoaged -photoageing -photoaging -photoallergy/W -photoassimilate -photoassimilation -photoautotroph -photoautotrophic -photoautotrophy -photobleaching -photoblog/S -photoblogger/S -photoblogging -photobomb/SGDR -photocall/S -photocard -photocell/SM -photochemical/Y -photochemistry/M -photochromic -photochromism -photocoagulation -photocoagulator -photocollage -photocompose/SGD -photocomposer -photocomposition -photocopy/DRGSM -photocurrent -photocycle -photodamage -photodegradable -photodegradation -photodegrade -photodetector/S -photodiode/S -photodissociation -photodynamic -photoelectric/Y -photoelectricity -photoelectromagnetic -photoelectron/SW -photoelectronics -photoemission -photoemissive -photoemitter -photoengraved -photoengraver/SM -photoengraving/MS -photoessay/S -photofinishing/MS -photofit/S -photoflash -photogenic/Y -photogram/S -photograph/R1GZDWSM -photographed/A -photographs/A -photography/SM -photogravure/S -photojournalism/MS -photojournalist/MS -photolitho -photolithographic -photolithographically -photolithography -photolysis/M -photolytic -photomagnetoelectric -photomask/S -photometer/1WSM -photometry/M -photomicrograph/ZM -photomicrography/M -photomontage/S -photomosaic -photomultiplier/MS -photon/SM -photonegative -photonic -photonics -photophobia -photophobic -photophony -photophysical -photophysics -photopia -photopic -photopolarimetric -photopolarimetry -photopolymer/S -photoproduct/S -photoprotection -photoprotein -photoreactive -photorealism -photorealist -photorealistic -photoreceptor/S -photoresist/S -photosensitisation -photosensitise/SGD -photosensitive -photosensitivity -photosensitization -photosensitize/SGD -Photoshop/SGD -photosphere/M -photostatic -photostimulation/S -photosyntheses -photosynthesis/SQdM -photosynthetic/Y -photosystem/S -phototactic -phototaxes -phototaxis -phototherapy -phototoxicity -phototransistor -phototroph/W -phototropic -phototropism -phototypesetter -phototypesetting/M -photovoltage -photovoltaic -photoxidative -php -PHP/M -phrasal -phrase's -phrase/GDSA -phrasebook -phrasemaking -phraseology/SM -phrasing/MS -phrenic -phrenology/1w3MS -phyla/M -phylactery/SM -phyllotactic -phyllotaxis -phyllotaxy -phylogenetic -phylogenetically -phylogeny/SM -phylotypic -phylum/M -phys/w1 -physic/S3DGM -physical/S -physicalism -physicalist -physicalistic -physicality/M -physicalness -physician/SM -physicist -physico-chemical -physiochemical -physiognomy/SM -physiography/MS -physiology/WM1Sw3 -physiotherapist/SM -physiotherapy/SM -physique/MS -physostigmine -physostome -physostomous -phytalbumin -phytane -phytate -phytochemical/S -phytochrome -phytogenetic -phytogeography -phytolith/S -phytoplankton/M -phytosociology -phytotoxic -phytotoxicity -pi/DR -Piaget/M -pianism/M -pianissimo/S -pianist/W -piano/3MS -pianoforte/MS -pianola -piastre/MS -piazza/SM -PiB -pibroch/M -pibrochs -pic/S -pica/SM -picador/MS -Picard/M -picaresque -picaro/S -Picasso/M -Picassoesque -Piccadilly -piccalilli/MS -piccolo/MS -piciform -pick-me-up/S -pick-up/MS -pick/DRSGZJ -pickaxe/SM -picked/U -pickelhaube -Picken/M -pickerel/MS -pickerelweed -Pickering -picket/rdMS -pickiness -pickle/DSMG -pickoff/S -pickpocket/SM -pickpocketing -pickpocketry -pickproof -picksome -picktooth -pickup/S -picky/T -picnic/ZMRGSD -pico -picofarad/SM -picojoule -picornavirus/S -picoseconds -picot/SM -picric -pictogram -pictograph/SMW -pictography -pictorial/YPS -picturable -picture-writing -picture/DMSG -picturesque/PY -picturesqueness/S -piddle/GYDS -pidgin/SM -pie/MS -piebald/S -piece/MDSG -piecemeal -piecer/M -piecewise -piecework/MRS -piecrust -piedmont -Piedmontese -Piegan/S -pieing -pierce/RDSJkG -Pierre/M -Pierron/M -Pietilä/M -Pietro -piety/IMS -piezoelectric -piezoelectricity/M -piffle/DSMG -pig-headed -pig-sticker -pig/LGZDMS -pigeon-breast/D -pigeon-fancier/MS -pigeon-hole/SMDG -pigeon-toed -pigeon/SyM -pigeonry/S -piggery/M -piggish/YP -piggishness/S -piggledy -piggy/TMS -piggyback/GDS -pigheaded/Y -pigheadedness/S -piglet/SM -pigman -pigmen -pigment/DNnG -pigmentation/M -pignut/S -pigpen/S -pigskin/SM -pigsty/MS -pigswill/M -pigtail/SMD -Pikachu/M -pike/SRMDG -pikeman -pikemen -pikestaff/MS -pilaf/SM -pilaster/dMS -Pilate -Pilates -pilau's -pilchard/MS -pile's -pile/GFSD -pilers/F -pileup/SM -pilfer/drS -pilferage/MS -pilgrim/dMS -pilgrimage/MSDG -pilgrimise -pilgrimize -piling/MS -pill/SM -pillage/DGRS -pillar-box -pillar/MS -pillared -pillbox/MS -pillion/MS -pillory/DSMG -pillow/GDMS -pillowcase/SM -pillowslip/S -pillwort -pilot/SdM -pilotage -pilothouse/SM -piloting/M -pilotless -Pilton/M -Pima/M -pimento/SM -pimiento/MS -Pimms -pimozide -pimp/YSDMG -pimpernel/MS -pimple/DSM -pimplike -pimply/MT -pin-up/MS -pin-wheel/SM -pin/MGdDJS -pinafore/MS -Pinard/M -pinball/SM -pinboard/S -pince -pince-nez -pincer/S -pincered -pinch/DSG -pincher/M -pincushion/MS -pine's -pine/AGSD -pineal -pineapple/SM -pinewood/S -piney -pinfeather/SM -Pinfold/M -ping-pong -ping/SGDR -pingable -pinhead/SDiM -pinhole/MS -pinion/DMGS -pink/PZDTMYGS -Pinkerton/M -pinkeye/SM -pinkie -pinkish -pinkishness -pinkness/S -pinky/S -pinna -pinnace/SM -pinnacle/DSMG -pinnae -pinnate -pinned/f -pinning/fS -Pinochet/M -pinout/S -pinpoint/GDS -pinprick/SDGM -pins/fU -pinstripe/DSM -pint/MS -pintail/SM -Pinter/M -Pinterest/M -Pinto/M -pintuck/S -piny/T -Pinyin -Pio/M -pion/MS -pioneer/SDGM -Piotr/M -Piotrowski/M -pious/PYI -piousness/IS -pip/drDkMGS -pipe/MS -pipeclay/SGD -pipefish/S -pipeline/DMS -piperazine -piperic -piperidine -piperin -piperine -piperitious -piperonal -pipette/SMDG -pipework -piping/M -pipit/SM -pippin/SM -pipsqueak/MS -piquancy/SM -piquant/PY -pique/SMDG -piquet -piracy/MS -piragua -Piran/M -piranha/SM -pirate/1MGDSw -piratic -piri-piri -Pirie/M -piriform -pirk/S -pirogue/S -piroplasmosis -pirouette/SGMD -Pisa/M -piscatorial -Piscean/S -Pisces -piscicultural -pisciculture -pisciculturist -pish/SGD -pisiform -pismire/SM -pisonia/S -piss/DSG -pisser -pissy -pistachio/SM -piste/SM -pistil/MS -pistillate -pistol/SDGM -pistole/M -pistoleers -piston/MS -pit-a-pat -pit/MGSD -Pitcairn -pitch-and-toss -pitch-black -pitch-dark -pitch/RGDS -pitchblende/SM -Pitchford/M -pitchfork/SMDG -pitching/M -pitchstone/M -piteous/PY -piteousness/S -pitfall/SM -pith/z2ZDMGS -pithead/S -pithiness/S -pithy/TP -pitiable/P -pitiful/PT -pitiless/PY -pitilessness/S -pitman/M -piton/MS -pitpan/S -Pitressin -Pitt/M -pitta/S -pittance/MS -Pittermann -Pittman/M -Pittsburgh -pituitary/MS -pity/SGMRjpklD76 -Pius/M -pivot/dSMo -pivotal -pivoting/M -pix -pixel/SM -pixelate/SGDN -pixelisation -pixelized -Pixelvision -pixie/SM -pixilated -pixillated -pixmap/MS -pixsome -pizazz/S -pizza/MS -pizzeria/SM -pizzicati -pizzicato -piñata/S -piñon/S -Pk -PKCS -PKI -pl. -placard/GSMD -placate/yDVSGnN -placater -place's -place/EDRSLG -placeable/A -placebo/SM -placed/aUA -placeholder/S -placekick/SGD -placeless/Y -placeman -placemen -placement/eMS -placenta/MS -placentae -placental/S -places/aA -placid/YP -placidity/MS -placing/aA -placings -placket/SM -placoid -Placozoa -placozoan -plagal -plage/S -plagiarise/DRGS -plagiarism/SM -plagiarist/SM -plagiaristic -plagiarize/DRGS -plagioclase -plague/GDMS -plaguer/M -plaice/M -plaid/DMS -plain-clothes -plain-spoken -plain/mPGDTSY -plainchant -plained/F -plainer/F -plaining/F -plainness/S -plains/F -plainsong/SM -plaint's/F -plaint/uSvMV -plaintext/S -plaintiff/MS -plaintive/P -plaints/F -plait/DMSG -plaiter -plaiting/M -plan/DdMSrRG -planar -planarity -planchette/S -Planck/M -planctological -planctologist -planctology -plane/SM -planeload -planerite -planeshear -planesman -planesmen -planet/MS -planetarium/MS -planetary -planetesimal/MS -planetoid/MS -plangency/S -plangent -plank/GMDSJ -planking/M -plankless -plankshear -planksheer -plankter -planktic -planktivore -planktivorous -planktological -planktologist -planktology -plankton/MS -planktonic -planktotrophic -planned/KU -planning/A -planoconcave -planoconvex -plansheer -plant's -plant/BIGSDA4 -plantain/MS -plantar -plantation/IMS -planter's/I -planter/SM -planting/S -plantlet/S -plantlike -planula -planulae -plaque/MS -plash/DMGSZ -plasm/M -plasma/SM -plasmid/S -plasmodesma -plasmodesmata -plasmodia -plasmodial -plasmodium -Plass/M -plaster/rMdS -plasterboard/SM -plastering/M -plasterwork/M -plastic/YQ8s9MS -plasticine -plasticity/SM -plasticuffs -plastid/S -plastique -plat/rdR -plate/6SMJ -plateau/GMDS -plateful/S -platelayer/S -platelet/SM -platen/MS -platform/MS -platformate -platformer/S -Platforming -platforming -platformist -platformless -platformy -plating/M -platinum/QM -platitude/MS -platitudinous/Y -Plato/M -platonic -Platonism/M -Platonist/S -platoon/GMDS -Platyhelminthes -platypus/MS -platysma/S -platysmata -plaudit/MS -plausibility/IS -plausible/IY -plausibleness -plausibly/I -play's -play-act/JGDS -play-acting/M -play-off/S -play/eGADESacf -playability -playable/EU -playback/SM -playbill/MS -playboater -playboating -playbox -playboy/MS -playboyish -playboyishness -playboyism -playbus -played/U -player/SEM -Playfair/M -playfellow/S -playfield -playful/PY -playfulness/S -playgirl/SM -playgoer/SM -playground/SM -playgroup/S -playhouse/SM -playing/S -playlist/SG -playmaker/S -playmaking -playmate/SM -playpen/SM -playroom/SM -playscheme/S -playschool/S -PlayStation/S -playsuit -plaything/SM -playtime/MS -playwright/MS -playwriting/M -plaza/SM -PLC -plc -plea/MS -plead/SDRGJk -pleading/M -pleas/SkDGJ -pleasant/TYP -pleasantly/U -pleasantness/S -pleasantry/SM -please/EGDS -pleaser/M -pleasing/P -Pleasington -pleasurable/P -pleasure's/E -pleasure/GDSlM -pleasures/E -pleat/GDMS -pleater/M -pleb/ZS -plebeian/S -plebiscitary -plebiscite/SM -plectra -plectrum/MS -pledge/GDMS -pledgee -pledger/M -Pleiades -pleiotropy -Pleistocene -plenary/S -plenipotentiary/S -plenish/D -plenitude/SM -plenteous/YP -plentiful/P -plenty/M6j -plenum/M -pleomorphic -pleomorphism -pleonasm/MS -pleonastic/Y -plesiosaur/S -plessor -plethora/MS -pleura/M -pleurae -pleural -pleurisy/MS -plexiform -pleximeter -pleximetry -plexor -plexus/MS -pliability/SM -pliable/P -pliancy/MS -pliant/FY -pliantness/M -plication/FMIA -plied/AIF -pliers/F -plies/FAI -plight/DGMS -plighter -plimsolls -plink/SGDZ -plinth/MS -Pliocene -pliosaur/S -PLO -plod/DRGSJV -plodding/Y -Plohman -ploidy -plonk/SGDZR -plonkingly -plop/GDMS -plosive/I -plot/SRMGDJ -Plotinus/M -plotter-printer -plottery -plottingly -plotty -plotwise -plough/mRGSMD -ploughed/U -ploughland -ploughshare/SM -plover/MS -ploy's -ploy/CS -PLP/M -pluck/ZGSz2D -plucker/M -pluckiness/S -plucky/TP -plug's -plug-compatible -plug-in -plug/UDSG -plugboard/S -pluggable -plugger/S -plughole -plum/MSZ -plumage/SDM -plumb/MDJSRG -plumbago/M -plumbed/U -plumbing/M -plumbous -plume-like -plume/DpSM -plumeria/S -plumery -plummet/Sd -plummy/T -plumose -plump/SGDTYZ -plumpen -plumper/M -plumpish -plumpitude -plumpness/S -plumula -plumule/S -plunder/dS -plunderer/S -plunge/RSDG -plunk/RGDS -pluperfect/S -plural/s8Q-S9qY -pluralism/SM -pluralist/SW -plurality/MS -pluralization/M -pluripotent -plus/S -plush/TZPMS2Y -plushness/S -plushy/T -Pluto/M -plutocracy/MS -plutocrat/SMW -plutocratically -pluton/S -Plutonian -plutonic -Plutonic -plutonium/M -pluvial/S -ply/BDSNG -plying/F -Plymouth/M -plywood/SM -pm -PM/M -PMC -PMS -pneumatic/SY -pneumatics/M -pneumococcal -pneumococci -pneumococcus -pneumoencephalography/W -pneumogastric -pneumonectomy/S -pneumonia/MS -pneumonic -pneumonitis -pneumonoultramicroscopicsilicovolcanoconiosis -pneumothorax -PNG/S -PNP -PO -po-faced -po/QY -poach/RDSG -Pocahontas/M -pochard/S -pochette -pock/SDM -pocket/d6MS -pocketbook/SM -pocketer/S -pocketful/MS -pocketing/M -pocketknife/M -pocketknives -pockmark/DSMG -pocus -pod/SDMG -podcast/SBRG -podgy/TP -podiatry/3SM -podium/SM -poem/SM -poesy/MS -poet/1WSywM -poetaster/MS -poetess/SM -poetic/S -poeticalness -poetics/M -poetry/SM -pogo -pogrom/SM -poignancy/SM -poignant/Y -poikilothermic -poinciana/SM -poinsettia/SM -point-blank -point-duty -point-of-sale -point-to-point -point/RhSpGiMDZ -pointe -pointed/P -pointillism/SM -pointillist/MS -pointing/M -pointless/YP -pointlessness/S -points/e -pointsman -pointsmen -pointy/T -poise/M -poison/dMrS -poisoning/SM -poisonous/Y -poisonousness -poisonwood -poke-shakings -poke/yRDSGZ -pokeberry -Pokemon/M -poker-face/D -pokeweed -poky/T -Poké -Pokédex -Pokéfan/S -Pokémaniac/S -Pokémon/M -PokéStop/S -Poland/M -polar/Q-8qSs -polarimeter/SM -polarimetry -polariscope/M -polarise/CRnSGD -polarity/SM -polarize/CnNSGD -polarograph/Z -polarographic -polarography/M -Polaroid/S -polaron -polarward -polder/S -polderland -polderman -pole-axed -pole-axes -pole-vaulter -pole-vaulting -pole/MDS -polecat/SM -polemic/YS -polemical -polemicist/S -polemics/M -polenta -poler/M -poleward/S -police/m5DSGZM -policier -policy/SM -policyholder/MS -policymaker/S -policymaking -polio/SM -poliomyelitides -poliomyelitis/M -poliovirus/S -polish/RDJGS -polished/U -politburo/S -polite/IPYW -politeness/IS -politer -politesse/MS -politest -politic/Q8-GDSq -politician/MS -politicise/CGSD -politicize/CGSD -politicking/MS -politicly/I -politico/SM -politics/M -polity/SMw1 -polka/DGSM -poll/DMGS -pollack/MS -Pollard/M -pollen/SM -poller -Polley/M -pollinate/DNGSn -pollination/M -pollinator/MS -Pollock/M -pollster/MS -pollutant/MS -pollute/RSDG -polluted/U -pollution/SM -Polly/M -Pollyanna/S -Pollyannaish -Pollyannaism -polo-neck -polo/MS -Polokwane -polonaise/SM -polonium/M -Polonnaruwa -poltergeist/SM -poltroon/SM -poltroonery -poluphloisboian -poluphloisboisteros -poluphloisboisterous -polyacrylamide -polyalphabetic -polyamidation -polyamide/S -polyamine -polyamorist -polyamorous -polyamory -polyandrous -polyandry/SM -polyatomic -Polybius/M -polybutene/SM -polycarbonate -polychaete/S -polychemicals -polychrome/W -polyclinic/MS -polyclonal -polycrystalline -polycyclic -polycystic -polyelectrolyte/S -polyester/MS -polyether/S -polyethism -polyethylene/SM -polygamous/Y -polygamy/3SM -polyglot/S -polyglottal -polyglottic -polyglottism -polyglycol/W -polygon/oMS -polygonal -polygraph/DSMG -polygynous -polygyny -polyhedra -polyhedral -polyhedron/SM -polyhydroxy -polyisobutylene -polyisocyanates -polyisoprene -polymath/SM -polymer/Q8-qMS -polymerase/S -polymeric -polymorphic -polymorphism/S -polymorphonuclear -polymorphous -polymyalgia -polymyositis -polymyxin/S -Polynesia/M -polyneuropathy -polynomial/MSY -polynuclear -polynucleotide/S -polyol -polyolefin -polyp/MS -polypeptide/S -polyphase -polyphasic -Polyphemus -polyphenol/S -polyphenolic -polyphenylene -polyphiloprogenitive -polyphloisboian -polyphloisboisterous -polyphobia -polyphon -polyphonal -polyphone -polyphonian -polyphonous -polyphony/SMW3 -polyphosphate/S -polyphyletic -polyploid/S -polyploidy -polypody/S -polypoid -polypropylene/SM -polysaccharide/S -polysemic -polysemous -polysemy -polysilicon -polysiloxane -polystyrene/MS -polysyllable/WSM -polytechnic/MS -polytene -polytheism/MS -polytheist/WSM -polythene/M -polytonal/Y -polytonality -polytopes -polyunsaturated -polyunsaturates -polyurethane/SM -polyvinyl/M -pom-pom -pomade/SGMD -pomander/MS -pomegranate/MS -pomelo/S -Pomeranian/S -pommel/SGDM -pomodoro -pomp/SM -pompadour/SMD -pompano/MS -Pompeian -Pompeii/M -Pompeiian -pompom/MS -pomposity/SM -pompous/Y -pompousness/S -ponce/M -poncho/SM -pond/DMGS -ponder/4S -ponderal -pondered -ponderer/SM -pondering -ponderous/YP -ponderousness/S -pondweed -pone/SZM -pong/D -pongee/MS -poniard/SM -Ponnamperuma/M -pons/M -pontage -Pontchartrain/M -Pontefract/M -pontiff/SM -pontifical/YS -pontificate/NnDGS -Ponting/M -pontoon/MDSG -pony/SM -ponytail/SM -pooch/SM -poodle/MS -poof/SM -pooh-pooh/D -pooh/SDG -pool/GSDM -Poole/M -poolside -poop/SDGM -poor-spirited -poor/TYP -poorhouse/MS -poorness/S -Poornima/M -Pootle -pootle -pootling -POP -pop-cult -pop-up -pop/ZRGSDM -POP3 -popcorn/SM -pope/SM -Popemobile -popery -popgun/SM -popinjay/MS -popish/Y -poplar/MS -poplin/SM -popliteal -poppet/MS -poppy/MS -poppycock/SM -poppyseed/S -poppywort -popsock/S -popster/SM -populace/SM -popular/qQ8Ys9- -popularism -popularities -popularity/MU -popularization/M -populate/cCnNDGS -populated/UfA -populates/A -populating/A -population/CMc -populism/S -populist/SM -populous/PY -populousness/S -porcelain/MS -porch/SM -porcine -porcupine/SM -pore/GDS -Porifera -pork/RSZM -porkling -porky/TS -porn/S -pornification -pornify -porno/S -pornocracy -pornographer/SM -pornography/MS1W -pornstar/S -porosity/SM -porous/YP -porousness/S -porphyria -porphyrin/S -porphyritic -porphyry/SM -porpoise/DMGS -porridge/SM -porringer/MS -Porsche/MS -port's/A -Port-au-Prince/M -Port-of-Spain/M -port/lDMYSBRG -portability/S -portable/S -portage's -portage/A -portaged -portages -portaging -Portakabin/S -portal/MS -portamento/M -portcullis/MSd -ported/A4EFCI -portend/GSD -portent/SM -portentous/PY -porter/CM4SAI -porterage/M -portered -porterhouse/M -portering -portfolio/MS -porthole/SM -portico/MS -porticoes -porting/FE4 -portion/SDGM -portière/SM -Portland/M -Portlaoighise -Portlaoise -portliness/S -portly/PT -Portman/M -portmanteau/SM -Porto -portobello/S -portrait/3SM -portraitist -portraiture/SM -portray/BSDG -portrayal/SM -portrayer/MS -ports/ACFEI4 -Portsmouth/M -Portugal/M -Portuguese/M -POS -pose/FNCRxDGSEX -posed/4AI -poser/IMS -poses/IA4 -poseur/MS -posey -posh/T -posing/AI4 -posit/vuSVd -posited/FC -positing/F -position's/EI4FCK -position/CGADKS -positionable -positional/KY -positionality -positioned/a -positioner/S -positions/4I -positive/TS -positiveness/S -positivism/M -positivist/S -positivity -positron/SM -posits/C -posse/bSM -posses/GhDi -possess/EGKDSNAX -possession/MKEA -possessive/PMYS -possessiveness/S -possessor/SM -possessory -possibility/IMS -possible/SIY -possibly/I -possum/SM -post's/IeF -post-classical -post-coital/Y -post-date/GDS -post-entry/S -post-feminism -post-feminist -post-free -post-haste -post-horn/MS -post-impressionism -post-impressionist/W -post-industrial -post-millennial -post-millennialism -post-millennialist -post-natal -post-nuptial -post-operative/Y -post-orbit -post-partum -post-production -post-structural -post-structuralism -post-structuralist -post-tension -post-town/MS -post-traumatic -post-war -post/JDMRGS -postabdomen -postabdominal -postable -postabortal -postabortion -postacetabular -postage/SM -postal -postbag/M -postbox/MS -postcard/SM -postcode/SMD -postcolonial -postcolonialism -postcolonialist -postcondition/S -postdoc/S -postdoctoral -posted/AFI -poster/ISM -posterior/SY -posteriori -posterity/MS -postfix/DSG -postglacial -postgraduate/MS -posthospital -posthumous/PY -posthypnotic -postiche -postilion/MS -postilioned -postillation -postillion -postinfection -postinfectious -postinflammatory -posting/M -postlanding -postless -postlude/MS -postman/M -postmarital -postmark/MSGD -postmaster/MS -postmen/M -postmenopausal -postmistress/MS -postmodern -postmodernism -postmodernist/S -postmodernity -postmodify/RNSGD -postmortem/SM -postmultiply/SGDN -postnarial -postnasal -postnatal/Y -postnuptial -postoperative/Y -postorbital/S -postpaid -postponable -postpone/LGDS -postponer -postpositions -postpositive/Y -postprandial -postreform -posts/FIAe -PostScript -postscript/SM -postsynapsis -postsynaptic -postsynaptically -posttransfusion -posttreatment -postulate/NSnDG -postulation/M -postulatory -postural -posture/IMS -postured -posturer/MS -posturing/S -postvocalic -postwar -postwoman -postwomen -posy/SMT -pot's/C -pot-belly/DSM -pot-boiler/M -pot-hunter -pot-pourri/SM -pot-shot/S -pot/RG6SZ7DgM -potability/SM -potable/PS -potage/M -potash/SM -potassium/M -potato/M -potatoes -potencies/I -potency/MS -potent/YIS -potentate/SM -potential/YS -potentiality/SM -potentiate/SDG -potentilla -potentiodynamic -potentiometer/MS -potentiometrically -potentiometry/W -potentiostat -potentiostatic -potentiostatically -potentite -potentness -potestal -potestas -potestative -potful/SM -pothead/SM -pother/dSM -potherb/MS -pothole/SMGD -potholing/M -pothook/SM -potion/SM -potlatch/MS -potoroo/S -pots/C -potsherd/SM -Pott/M -pottage/SM -potter/dZ -potterer -pottery/SM -Potts/M -potty/TS -pouch/MDSG -pouffe/S -Poulenc/M -poulterer/SM -poultice/DSMG -poultry/MS -pounce/DSG -Pouncey/M -pound/FGISD -poundage/MS -pounder/FM -pounders -Poundstone/M -pour/7GSD -pourer's -pouring/e -pourri/SM -poussin/S -pout/RSDG -poverty-stricken -poverty/SM -POW/S -powder/dMSZ -powderer -powderpuff -Powell/M -power-hungry -power-sharing -power/6jdpSM -powerboat/SM -powered/cf -powerful/P -powerhouse/SM -powering/c -powerless/PY -powerlessness/S -powerlifter -powerlifting -PowerPC -PowerPoint -powers/c -powwow/SGDM -Powys -pox/SM -pp -ppm -PPP -ppr -PPS -Pr -practicabilities -practicability/I -practicable/IY -practicableness -practicably/I -practical/IPY -practicality/ISM -practicals -practice/S7M -practician -practise/SGD -practised/U -practiser/M -practitioner/MS -praeoperculum -Praesidium/M -praetor/MS -praetorian/S -pragmatic/YS -pragmatical -pragmatics/M -pragmatism/SM -pragmatist/SM -prague's -Prague/M -Praia/M -prairie/SM -praise's -praise/EDSG -praiser/S -praiseworthiness/S -praiseworthy/P -praising/Y -praline/SM -pram/SM -pranayama -prance/RGSDk -prank/SM -prankster/MS -praseodymium/M -prasinophyte -prat/S -prate/SRkDG -prattle/DRSGk -prawn/DMGSR -praxes -praxis/M -pray/RGDS -prayer/j6 -prayerbook -prayerful/P -PRC -pre-abdomen -pre-adolescent -pre-Christian -pre-date/DSG -pre-decimal -pre-defined -pre-echo -pre-echoes -pre-eclampsia -pre-eclamptic -pre-elect -pre-election -pre-embryo/S -pre-eminence/MS -pre-eminent/Y -pre-emphasis -pre-employment/SM -pre-empt/DVSvG -pre-emption/SM -pre-emptor/M -pre-exist/DGS -pre-existant -pre-existence/SM -pre-ignition -pre-implementation -pre-industrial -pre-made -pre-order/S -pre-package/GSD -pre-paid -pre-plan/D -pre-preference -pre-prepare/D -pre-print -pre-privatisation -pre-process/G -pre-processor -pre-programmed -pre-pubescent -pre-record/SDG -pre-reflective -pre-release -pre-Roman -pre-scientific -pre-sell -pre-service -pre-set/S -pre-shrink -pre-shrunk -pre-tax -pre-teen/S -pre-tension/S -pre-visualize -pre-vocational -pre-war -pre-wash -pre/Q8s -preach/RJL -preachiness -preadapt/D -preadaptation/S -preadaptive -preadolescent -preagricultural -preamble/M -preambular -preamp -preamplifier/MS -preamplify/SGD -prearrange/L -preassign -prebendary/M -prebiotic -prebuild/SG -prebuilt -Precambrian -precancel -precancerous -precapitalist -precarious/PY -precariousness/S -precast/SG -precedence/MS -precedent/MDS -precedented/U -precept/VvMS -preceptor/MS -precess/GDS -precharge/D -precinct/MS -preciosity/MS -precious/SY -preciousness/S -precipice/MS -precipitable -precipitant/S -precipitate/YnSDPGN -precipitation/M -precipitous/YP -precise/NPIXY -preciseness/IS -preciser -precisest -precision/IM -preclude/DSXNG -precocious/YP -precociousness/S -precocity/MS -precode -precognitive -precoital/Y -precolonial -preconcert/D -precondition/G -preconfigure -preconscious/P -precontest -precontracted -preconvulsive -precopulatory -precordial -precordium -precursor -precut -precycling -predate/SGD -predation/MCS -predator/SM -predatory -predawn -predecessor/SM -predecessors' -predecline -predestine/SG -predetermine/NnD -predevelopment -predicability -predicable/S -predicament/MS -predicate/VnNSDG -predicateless -predication/M -predicational -predicatival -predicator -predict/DSvBGlV -predictabilities -predictability/UM -predictable/U -predictably/U -predicted/U -predictionism -predictor/SM -predigestion -predilection/SM -prednisone -predominate/Y -preen/DSG -preener/M -pref -prefab/DSMG -prefatory -prefect/MS -prefecture/SM -prefer/DSl7G -preferable/P -preference/MS -preferential/Y -prefetch/SGD -prefigurations -prefigurative -prefigure/N -prefigurement -prefix/M -preflight/G -preform -prefrontal/S -preglacial -pregnability -pregnable -pregnancy/MS -pregnant/Y -pregrowth -preguide -preheat -prehensile -prehension -prehistorian/S -prehuman/S -preimage/S -preinterview -prejudice/SDMG -prejudiced/U -prejudicialness -prelacy/SM -prelate/MS -prelatic -prelatical -preliminary/YS -preliterate -preload/G -prelude/GMDS -preluder/M -prelusive -prem/S -premarket -premaster/Sd -prematch -prematerial -prematuration -premature -premaxilla -premaxillary -premed/wS -premedication -premeditate/h -premeditated/U -premier/MS -premiere/SGD -premiership/SM -premise/DSGM -premiss/M -premium/SM -première/SDGM -premodify/SGDNR -premonish/G -premonitory -premyelocyte -prenasal -prenatal/Y -prenominal/Y -Prensky/M -prenuptial -preoperative -preoperatively -preoperculum -preordain -prep/SM -prepack -preparation/M -preparative/SM -prepare/VviGnyhN -prepared/P -preparedness/S -preparer/S -prepay/LB -prepend/SGD -prepender/S -preplan/SGD -prepolymer/S -preponderance/MS -preponderant/Y -preponderate/GYSDN -prepose/SGD -prepossessing/U -preposterous/PY -preprepared -preprint/M -preprocess/SGD -preprocessor -preprogram/Sd -preprogramme/SGD -preprohormone -preproinsulin -preprostatic -prepubescent/S -prequel/S -preradiation -prereform -prerenal -prerequire/SGD -prerequisite/M -prerequisition -preretina -prerogative/MS -presage/GD -presager/M -presbyopia/MS -presbyter/MZS -presbyteral -presbyterate -presbyterial -Presbyterian/MS -presbytership -presbytery/SM -preschool -preschooler/S -prescience -prescient/Y -Prescott/M -prescribable -prescribe/vXVN -prescribers -prescription/M -prescriptivism -prescriptivist -preseason/S -preselection/S -preselective -preselector -presence/SM -present-day -present/NnLYRS7xlDG -presentable/P -presentably/A -presentation/MAo -presentational/A -presented/A -presentee/S -presentimental -presentism -presentist -presentness -presentor -presents/A -preservable -preservation/M -preservational -preservationism -preservationist/S -preservative/SM -preserve/nNV -preserved/U -preset/S -preshared -preside/DG -presidency/MS -President/MS -president/MS -Presidential -presidential/Y -presider/M -presignature/S -Presley/M -presort -press-gang/D -press-stud/S -press-up/S -press/FIGSADC -presser's/I -presser/MS -pressing/YS -pressman/M -pressmen/M -pressroom -pressure-cook/G -pressure-cooker -pressure/M8q-9GQsDS -pressurised/U -prestidigitate/Nn -prestidigitation/M -prestidigitator/M -prestidigitatorial -prestige/SM -prestigious/Y -prestigiousness -presto/S -Preston/M -prestressed -prestressing -Prestwick/M -presumable -presume/vDSGVkXNl -presumer/M -presumption/M -presumptuousness/S -presymptomatic -pretence/MS -pretending/U -pretentious/YU -pretentiousness/U -pretentiousnesses -preterite/M -preterm -preternatural/Y -Pretoria/M -prettify/SDG -prettiness/S -pretty/DTSYPG -pretzel/SM -prevail/GkSD -prevalent/Y -prevaricate/DGNSn -prevaricator/MS -prevent/lu7vV -preventable/U -preventative/S -preventer/M -prevention/MS -preventive/SP -preview/G -previous/Y -prevision/D -previsualise -previsualize -previtamin -prey/DMGS -Priam/M -priapic -priapulid/S -Priapulida -price's -price/SADcG -priced/U -priceless -pricer/MS -pricey -pricier -priciest -pricing/f -prick/YRDGS -pricking/M -prickle/MDS2G -prickliness/S -prickly/T -pride/DGj6SM -priest/MDSGY -priestess/MS -priesthood/MS -Priestley/M -priestliness/S -priestly/TP -prig/SM -priggish/MY -priggishness/S -prim/rdTY -primacy/SM -primaeval -primal -primary/YMS -primate/MS -primatial -prime/PS -Primera/M -primeval/Y -primitive/PSY -primitiveness/S -primitivism/M -primitivist/S -primness -primogenital -primogenitary -primogenitive -primogenitor/SM -primogeniture/MS -primordia -primordial/YS -primordium -primp/GSD -primrose/MS -primula/S -prince/YSM -princedom/SM -princeliness/S -princely/PT -princess/MS -Princeton -principal/SY -principality/SM -Principe/M -principle/SMD -principled/U -Pringle/M -Pringles -print/IDAGSaKc -printability -printable/U -printably -printed/U -printer-plotter -printer/AMIS -printerdom -printergram -printery/S -printhead/S -printing/IM -printings -printmaker/SM -printmaking/M -printout/S -printworks -prion/S -prior/YZ -prioress/SM -priori -priority/Q8q-s9SM -priory/MS -Priscilla/M -Priscoan -prise's/A -prise/FSAGD -prism/SM -prismatic -prismatically -prison's -prison/ISd -prisoner/SM -prissiness/S -prissy/TPY -pristine/Y -prithee/S -privacy/SM -private/nYTQ8SN-qPVv -privateer/MGS -privation/MC -privet/MS -privilege/SDMG -privileged/Uf -privy/YM -Prix -prize/M -prizefight/RJSMG -prizefighting/M -prizewinner/S -prizewinning -pro-American -pro-angiosperm -pro-attitude -pro-cathedral -pro-celeb -pro-celebrity -pro-choice -pro-democracy -pro-drop -pro-ethnic -pro-European -pro-hunt/G -pro-inflammatory -pro-knock -pro-legate -pro-life/R -pro-nuke -pro-oxidant -pro-Republican -pro/SM -proaction -proactive/Y -proactivity -probabilist/W1 -probability/MIS -probable/I -probables -probably/I -probate/SANM -probation's/A -probation/RoyM -probational -probationary/S -probative -probe/BnDGlS -prober/M -probiotic/S -probity/SM -problem/MSwW1 -problematic/U -proboscis/SM -procaine/SM -procaryote -procedural/S -procedure/MSo -proceed/DJGS -proceeder/M -proceeding/M -process/7XNMSGxD -processed/UA -processes/A -procession/M -processional/S -processor/MS -processors/K -prochlorperazine -proclaim/DRS7G -proclamation/MS -proclivity/MS -Proclus/M -procoagulant/S -proconsul/MS -proconsular -procrastinate/SNGDn -procrastination/M -procrastinator/MS -procreate/VGyxDNSn -procreation/M -procreativity -proctor/dMS -proctorial -procurable/U -procuracy/S -procurator/SM -procure/LDSG -procurer/MS -prod/GDS -prodigal/SY -prodigality/S -prodigious/YP -prodigy/SM -prodromal -produce/cNDSGAn -produced/e -producer/AMS -produces/e -producible -producing/e -product/QVMsvSu -production's/Af -production/Kf -productions/f -productive/UY -productiveness/SM -productivity/SM -proenkephalin -proenzyme/S -Prof. -prof/MS -profane/DPSGYNn -profaneness/S -profaner -profanity/SM -profess/DNxXhSG -profession/M -professional/Q8S -professionalisation -professionalism/MS -professionalization -professionally/U -professor/oSM -professorial -professorship/SM -proffer/dS -proficiency/SM -proficient/Y -profile/RGDSM -profit-taking -profit/Mpgdl7S -profitable/P -profitably/U -profiteer/DGSM -profiterole/MS -profligacy/S -profligate/SY -proforma/S -profound/PYT -profoundness/S -profundity/SM -profuse/YPNX -profuseness/S -profusion/M -progenitor/SM -progeny/SM -progesterone/SM -progestin/S -progestogen/S -proglacial -prognathous -prognoses -prognosis/M -prognostic/nNVS -prognosticate/DGS -prognostication/M -prognosticator/S -prograde/SGDn -program/BRGSJDM -programmable/S -programmatically -programme/WSM -programmed/C -programming/C -programs/A -progress/GMuSDNXVv -progression/M -progressive/PS -progressiveness/S -progressivism -progressivist/S -prohibit/dvuSVyNX -prohibiter/M -prohibition/3M -prohibitionism -prohibitionist -prohibitive/P -prohibitorily -prohormone -proing -proinsulin -project/SDVvMG -projectable -projectile/SM -projection/3SM -projectionist -projector/SM -prokaryote -prokaryotic -Prokofiev/M -Proksa/M -prolactin -prolapse/GSDM -prolate -prolegomena -prolepses -prolepsis -proleptic -proletarian/Q8-qS -proletariat/SM -proliferate/GnDSNV -proliferation/M -proliferous -prolific/Y -prolificacy -prolificness -proline -prolix/Y -Prolixin -prolixity/SM -prolixness -prolly -prologise -prologize -prologue/SMGD -prologuise -prologuize -prolong/nSDNG -prolongation/M -prolongedly -prolonger/M -prolusion -prom/QMSs -promenade/RMSGD -promethazine -Promethean -Prometheus -promethium/M -prominence/MS -prominent/Y -promiscuity/MS -promiscuous/PY -promise/FRkDGS -promising/UY -promissory -promo/SVu -promontory/SM -promote/SRxBGD -promotion/MS -promovent -prompt/PYRJTSGD -prompted/U -promptitude/MS -promptness/S -promulgate/GSNnD -promulgation/M -promulgator/SM -promyelocyte -pronate/SGDN -pronator/S -prone/PY -proneness/S -proneural -prong/DMGS -pronghorn/MS -pronominal -pronoun/SM -pronounce/aGDS -pronounceable/U -pronounced/U -pronouncedly -pronouncement/SM -pronouncer/M -pronto -pronunciation/aSM -proof-read/GS -proof-reader/S -proof/EASM -proofed -proofer -proofing/M -proofread/SGR -prootic -prop/MSGD -propaganda/MS -propagandise/DSG -propagandist/SWM -propagate/NnVGDS -propagation/M -propagator/SM -propagule/S -propane/SM -propel/RSNDnG -propellant/MS -propellent -propensity/SM -proper/IPY -property/DSM -propertyless -prophase -prophecy/SM -prophesy/RDSG -prophet/1WSwM -prophetess/S -prophylactic/S -prophylaxes -prophylaxis/M -propinquity/SM -propionate/M -propitiate/NynSDG -propitious/U -propitiously -propitiousness/M -proponent/MS -proportion/EDSGMo -proportional/S -proportionality/M -proportionate/EYS -proportioner/M -proportionment/M -proposal/SM -propose/DRGSNxX -proposition/GDM -propound/SDG -propranolol -proprietary/S -proprietor/SM -proprietorial -proprietorship/SM -proprietress/MS -propriety/SMI -proprioception -proprioceptive -proprioceptively -proprioceptor/S -propshaft -propulsion/M -propulsive -propyl -propylene/M -prorate/DNSG -prorogation/MS -prorogue/DGS -pros/S -prosaic/Y -proscenium/SM -prosciutto/M -proscribe/DSXVGN -proscriber/M -proscription/M -prose/DZM -prosecutable -prosecute/GDS -prosecution/MS -prosecutor/SM -proselyte/M8GsQ9DS -proselytisation -proselytism/SM -proselytization -prosencephalic -prosencephalon -proser/M -prosobranch -Prosobranchia -prosobranchiate -prosobranchs -prosocial -prosodic/S -prosody/WSM -prosoma -prosome -prosopagnosia -prospect/DSuVvMG -prospective/PS -prospector/SM -prospectus/MS -prosper/dS -prosperity/SM -prosperous/YP -Prosser/M -prostaglandin/S -prostate/SM -prostatectomy/S -prostatitis -prostheses -prosthesis/M -prosthetic/SY -prosthetics/M -prostitute/MGDS -prostitution/MS -prostrate/NnDSG -prostration/M -prosy/T -protactinium/M -protagonist/MS -protea/SM -protean/S -proteas/S -protease/M -proteasome/S -protect/cVGSD -protected/U -protectedly -protection/cM -protectionism/SM -protectionist/SM -protections -protective/SY -protectiveness/S -protector/MS -protectoral -protectorate/MS -protectorial -protectorless -protectorship -protectory -protectress -protectrix -proteic -proteiform -protein/MS -proteinaceous -proteinase/S -proteinic -proteinous -proteoglycan/S -proteolysis/M -proteolytic -proteome/S -proteomic/S -Proterozoic -protest/RSMNnkDG -protestant/S -protestantism -protestation/M -protestor/S -Proteus -prothonotary/S -prothonotaryship -prothoracic -prothorax -prothyl -protist/S -Protista -protistan/S -protistology -Proto-Indo-European -protocol/SM -protocone -protoctist/S -Protoctista -protofeminist -protofibril -protofilament -protoform -protogalactic -protogalaxy/S -protogastric -protogeneous -protogenetic -protogynous -protogyny -protolanguage/S -proton/MS -protonate/DN -protonosphere -protonotary/S -protoplanet -protoplasm/SWM -protoplast/S -protostar/S -prototype/WGSM1Dw -Protozoa -protozoa/W -protozoal -protozoan/SM -protozoon/M -protract/DSG -protraction/MS -protractor/SM -protrude/XSVuvDGN -protrusile -protrusion/M -protuberance/S -protuberant -protyle -protégé/MS -protégée/S -proud/YT -provability/MS -provable/Y -prove/EBSGD -proved/AI -proven/U -provenance/SM -Provence/M -provender/SM -provene -Provençal -proverb/oMS -proverbial -proves/AI -providable -provide/NDRXSxG -providence/SIM -provident/IY -providential/Y -province/oMS -provincial/S -provincialism/MS -proving/IA -provision/GMD -provisional/S -provisioner/M -proviso/MS -provocation/M -provocative/PS -provocativeness/S -provoke/VuSNRGknvD -provoked/U -provost/SM -prow/SM -prowess/MS -prowl/RSDG -Prowse/M -proximal/Y -proximate/YP -proximity/MS -proxy/MSGD -Prozac/M -proöxidant -prude/MyS -prudence/ISM -prudent/IY -prudential/YS -prudery/M -prudish/PY -prudishness/S -prune/DGRSM -prunetin -prunish -prunitrin -prurience/SM -prurient/Y -pruritus/W -Prussia -Prussian/S -prussic -pry/TkDRGS -Prynne/M -précis/dSM -PS -psalm/M3S -psalmist -psalter/Z -psaltery/SM -psephite -psephitic -psephocracy -psephocrat -psephologist/MS -psephology/w1 -psephomancy -pseud/S -pseudo -pseudo-intellectual -pseudo-science/WS -pseudocode/SD -pseudocopulation -pseudocyst/S -pseudoephedrine -pseudogamy -pseudomorph/SGDW -pseudomorphism -pseudomorphous -pseudonym/MS -pseudonymity -pseudonymous -pseudonymously -pseudopod/S -pseudopodia -pseudopodium -pseudorandom/Y -pseudoscience/S -pseudoscientific -pseudoscientist/S -pseudotetragonal -pseudotetramerous -pseudotillite -pseudoword/S -pshaw/S -psi -psilocybin -psilomelane -psilophyte -psilothrum -Psion/M -psionic/S -psionically -psittacoses -psittacosis/M -psoralen/S -psoriases -psoriasiform -psoriasis/M -psoriatic -Pspell -psst/S -PST -psych/1GSWDw -psyche/M -psychedelia -psychedelic/YS -psychiatry/W3MS -psychic/SM -psychicism -psychicist -psychist -psycho-aesthetic/S -psycho-educational -psycho/SM -psychoacoustic/S -psychoacoustics/M -psychoactive -psychoanalyse/WDSG -psychoanalysis/M -psychoanalyst/S -psychoanalytical -psychoanalytically -psychobabble -psychobiology/M -psychocultural -psychodiagnostic/S -psychodrama/SM -psychodynamic/S -psychodynamically -psychogenic -psychogeriatric/S -psychogeriatrician/M -psychokinesis/M -psychokinetic -psycholinguist/S -psycholinguistic/S -psycholinguistics/M -psychology/MS31w -psychomedicine -psychometric/S -psychometrician -psychometrics/M -psychometry/WM3 -psychomotor -psychoneuroses -psychoneurosis/M -psychopath/ZSMW -psychopathic/S -psychopathology/M -psychopathy/SM -psychopharmacological -psychopharmacologist/S -psychopharmacology -psychophysical/Y -psychophysics/M -psychophysiological -psychophysiology/3M -psychos/S -psychosexual/Y -psychosis/M -psychosocial/Y -psychosomatic/SY -psychosomatics/M -psychosurgery -psychosurgical -psychotherapeutic/S -psychotherapist/MS -psychotherapy/SM -psychotic/SY -psychotomimetic -psychotronics -psychotropic/S -psychrophile/S -psychrophilic -psychs -psyllium -pt -PTA -ptarmigan/SM -pteridophyte/S -pterodactyl/MS -pterosaur/S -pteroylglutamic -pterygoid -PTO -ptomaine/MS -ptyalin -Pu -pub/MWSDG -pubertal -puberty/MS -pubes -pubescence/KS -pubescent/K -pubis/M -public's/A -public-spirited -public/N3MQ8n -publican/ASM -publication/KMA -publicised/U -publicist -publicity/SM -publicized/U -publicly -publish/R7SJDG -publishable/U -published/A -publishes/A -publishing/M -Puccini/M -puce/KMS -puck/SM -pucker/dS -puckery -Puckett/M -puckish/Y -puckishness/S -pudding/SM -puddle/SGJYDM -puddler/M -puddling/M -pudenda -pudendum/M -Pudge/M -pudginess/S -pudgy/TP -Pudsey -pueblo/SM -puerile/Y -puerility/MS -puerperal -Puerto -puff/RSZD2MG -puffball/MS -puffbird/S -puffer/Z -puffery/M -puffin/MS -puffiness/S -puffy/T -pug/SMGD -Puget/M -pugilism/MS -pugilist/WS -pugnacious/YP -pugnaciousness/S -pugnacity/SM -puissant/Y -puke/GDS -pukka -pulchritude/SM -pulchritudinous/M -pule/GDS -Pulitzer -pull-back/S -pull-down -pull-in -pull-out/S -pull/RDGS -pullet/SM -pulley/SM -pullover/SM -pulmonaria/S -pulmonary -pulmonate/S -pulp/DMS2GZ -pulper -pulpiness/S -pulpit/SM -pulpwood/SM -pulpy/T -pulsar/SM -pulsate/SNnDG -pulsatilla -pulsation/M -pulsatory -pulse's/I -pulse/ADSIG -pulser -pulverisation -pulverise/RSDG -pulverization/M -pulverize/NDGn -pulverizer/M -pulvinar -puma/SM -pumice/DSMG -pummel/DGS -pummelo/S -pump/GDMS -pumper -pumpernickel/SM -pumping/M -pumpkin/MS -pumpkinseed/S -pun/SGDM -punch/RGSD7JZ -punchbag/S -punchball -punchbowl/M -puncheon/SM -punchline/S -punchy/T -puncta -punctilio/SM -punctilious/PY -punctiliousness/S -punctual/YP -punctualities -punctuality/UM -punctuate/DSGxnN -punctuation/M -punctum -puncture/DSMG -pundit/MS -punditry/S -pungency/SM -pungent/Y -puniness/S -punish/DGL7S -punished/U -punisher/M -punitive/PY -Punjabi -punk/T2SMZ -punkier -punnet -punster/SM -punt/RGDMS -puny/PT -pup/SMNZDG -pupa/M -pupae -pupal -pupate/DSG -pupil/SM -pupillage/M -puppet/ySM -puppeteer/SM -puppetry/SM -puppy/MS -puppyish -Purbeck -purblind -Purcell/M -purchasable -purchase/SARGD -purdah/SM -pure-bred/S -pure/P3TY -PureBasic -purely/I -pureness/S -purer/I -purest/I -purgation/M -purgative/SM -purgatorial -purgatory/MS -purge/DRSGNV -purificatory -purify/SnRNDG -Purim -purine/SM -purism/SM -purist/W -puritan/wS1M -puritanism/S -purity/ISM -purl/GSDM -purlieu/M -purlieus -purloin/SDG -purloiner/M -purple/TSMGD -purplish -purport/RGDSh -purpose-built -purpose/6MvpVDjuSGY -purposefulness/S -purposeless/PY -purposive/P -purpura/W -purr/GDSk -purse/GRDMS -purslane -pursuance/MS -pursuant -pursue/DRSG -pursuit/MS -purulence/SM -purulent -purvey/DGS -purveyance/MS -purveyor/MS -purview/MS -Purvis/M -purée/DMS -puréeing -pus/ZM -Pusan -push-button/S -push-pull -push-up/S -push/SR72GzDZ -pushback -pushbike/SM -pushcart/MS -pushchair/SM -pushful/YP -pushiness/S -pushover/MS -pushpit -pushrod/S -pushy/TP -pusillanimity/SM -pusillanimous/Y -puss/S -pussy-cat/S -pussy-whip/D -pussy/MS -pussycat/S -pussyfoot/GDS -pussyfooter/S -pustular -pustulate/GN -pustule/SM -put-down -put-up -put-you-up -put/DRGZS -putamen/S -putamina -putative/Y -Putin/M -Putney/M -putrefaction/SM -putrefactive -putrefy/GSD -putrescence/MS -putrescent -putrid/PY -putridity/M -puts/e -putsch/S -putt/MS -putted/e -puttee/MS -putter/d -putterer/S -putty/MSDG -puttying/M -puzzle/LRSkJDG -PVC -pvt -PW -PX -pyaemia -pyaemic -pyelonephritic -pyelonephritis -Pygmalion/M -Pygmalionism -pygmy/MS -pyjama/MSD -pyknic -pylon/SM -pylori -pylorus/MW -Pyongyang/M -pyorrhoea/M -pyramid/SMo -pyramidal -pyran -pyrane -pyranose -pyrargyrite -pyre/MS -pyrene -Pyrenean -Pyrenees -pyrethroid/S -Pyrex -pyrexia -pyridine/M -pyridoxal -pyridoxamine -pyridoxine -pyridoxol -pyriform -pyrimidine/SM -pyrite/MS -pyroclast/S -pyroclastic/S -pyrocoll -pyrogenic -pyrogenicity -pyrolyse/SWD -pyrolysis/M -pyromania/SM -pyromaniac/MS -pyrometer/SM -pyrometry/M -pyrope -pyrosis -pyrotechnic/S -pyrotechnics/M -pyrotechnist -pyrotechny/Ww -pyroxene/MS -Pyrrha/M -pyrrhic -pyrrhotite -pyruvate -pyruvic -Pythagoras -Pythagorean -Python/M -python/MWS -pyuria -pyx/SM -pyxides -pyxidia -pyxidium -pyxis -pâté/S -pères/F -q -q.t. -QA -Qa'ida/M -Qabalah -Qaeda/M -Qatar/M -Qatari/S -QC -QCD -qi -Qing -QKD -QoS -QPR -qr -qt -qua -quack/DGS -quackery/SM -quackish -quad/SM -quadplex -quadragenarian -quadrangle/MS -quadrangular/M -quadrant/SM -quadraphonic/S -quadrate/S -quadrati -quadratic/MYS -quadrature/SM -quadratus -quadrennial/YS -quadrennium/MS -quadric/S -quadriceps/SM -quadrilateral/S -quadrille/SM -quadrillion/HMS -quadripartite/Y -quadriplegia/SM -quadriplegic/SM -quadrivia -quadrivium/M -quadrophonic -quadruped/SM -quadrupedal -quadrupedally -quadruple/SYDG -quadruplet/SM -quadruplicate/DSG -quadruply/Nn -quadrupole -quaff/DSG -quaffable -quaffer/SM -quag/SGZ -quagmire/SM -quail/DGMS -quaint/TPY -quaintness/S -quake/SGZD -Quaker/S -Quakerish -Quakerism -quaky/T -Qualcomm/M -qualification/EM -qualified/Uc -qualifiedly -qualifier/SM -qualify/NEnDGS -qualitative/Y -quality/SM -qualm/SM -qualmish -quandary/MS -quango/S -quanta/M -quantifiable/U -quantified/U -quantify/7NRDGnS -quantile/S -quantitate/D -quantitation/S -quantitative/PY -quantity/MS -quantum/qQs8M-9 -quarantine/DSMG -quark/SM -Quarles/M -quarrel/RGSDMJ -quarrelsome/PY -quarrelsomeness/S -quarrier/M -quarry/mSMGD -quart/WMRS -quarter-final/SM -quarter-hour -quarter-light -quarter-plate -quarter/dY -quarterback/SM -quarterdeck/SM -quarterer/M -quartering/M -quarterly/S -quartermaster/SM -quarterstaff/SM -quartet/SM -quartic/S -quartile/MS -quarto/SM -quartz/SM -quartzite/M -quasar/SM -quash/SGD -quasi -quasi-synchronous -quasilinear -quasiparticle/S -quaternary/S -quaternion/MS -quatrain/SM -quaver/dkSZ -quay/SM -Quayle -quayside/M -qubit/S -Queally/M -queasiness/S -queasy/PYT -Quebec/RM -Quebecer/S -Quebecois -quebracho/S -Quechua/S -Quechuan -queen/GYSDM -queendom -queenless -queenlike -queenly/T -queenship -Queensland/M -Queenstown/M -queer/YDGTS -queerness/S -quell/SGD -queller/M -quench/DR7SGp -quenchable/U -quenched/U -quenelle/S -quercetin -querier -quern/M -querulous/Y -querulousness/S -query/GMSD -quesadilla/S -quest's/FI -quest/ADSRGM -quester/FMS -question/RDJS7kMGl -questionable/U -questionableness/M -questionably/U -questioned/AU -questioning/UY -questionnaire/MS -questions/A -quests/FI -quetzal/S -queue's -queue-jump/G -queue/GCSD -queueing -queuer/SM -Qui-Gon/M -quibble/RSDG -quiche/MS -quick-fire -quick-witted -quick/TPY -quicken/dS -quickener/S -quickie/SM -quicklime/SM -quickness/S -quicksand/MS -quickset -quicksilver/dMS -quickstep/SMGD -QuickTime -quid/SM -quiesce/D -quiescence/SM -quiescent/Y -quiescentness -quiet/PTYDGS -quieted/E -quieten/Sd -quieter's -quieter/E -quieting/E -quietism -quietist/SW -quietly/E -quietness/S -quiets/E -quietude/ESMI -quietus/MS -quiff -quill/DMGS -quilt/RDMGS -quilting/M -quinary -quince/SM -quincentenary/M -Quincy/M -quinine/SM -Quinn/M -Quinnell/M -quinoa -quinone/S -quinquagenarian -quinquennial/Y -quinsy/SM -quint/WMS -quintessence/MS -quintessential/Y -quintet/SM -quintillion/HS -Quinton -quintuple/DGS -quintuplet/SM -quip/SMGD -quipper -quipster/SM -quire's -quire/SAI -quirk/ZM2S -quirkiness/S -quirky/TP -quirt/DSMG -quisling/SM -quit/RSGD -quite/A -Quito/M -quittance/SM -quiver/dZkS -quixotic/Y -quiz/DRZGM -quizzes -quizzy/w1 -quo -quod -quoin/DSMG -quoit/GDSM -quoll/S -quondam -quorate/I -quorum/SM -quota/MSn -quotability/S -quotable -quotation/aM -quotative/S -quotativeness -quote/DaSNGn -quoted/U -quoter/M -quoth -quotidian/S -quotient/MS -Qur'an -Qur'anic -Quran -Quranic -QWERTY -r.p.m. -r/sd -Ra -Raab/M -RAAF -Rabat/M -rabbet/SMd -rabbi/SM -rabbinate/MS -rabbinic/Y -rabbinical -rabbit/SdM -rabble-rouser -rabble-rousing -rabble/SM -rabid/PY -rabies -Rabin/M -Raby/M -RAC -raccoon/MS -race/RDSGJZoM -racecard/S -racecourse/SM -racegoer/S -racehorse/SM -raceme/MS -racemose -racetrack/MS -raceway/SM -Rachael/M -Rachmaninov/M -racial/3 -racialism/M -racialist -racism/S -rack-and-pinion -rack/SDGM -racket/MdZS -racketeer/JGMS -Rackham/M -raconteur/SM -racoon/M -racquet/SM -racy/T3PY -rad/w1 -radar/MS -Radford/M -Radha/M -radial/SY -radialised -radialized -radian/MS -radiance/MS -radiant/Y -radiate/SnIVDGN -radiately -radiation/MI -radiator/SM -radical/SQM -radicalism/MS -radices -radicle/S -radicular -radii/M -radio-controlled -radio-opaque -radio-telegraph/SZ -radio-telegraphy/M -radio-telephone/MS -radio/DmSGM -radioactive/Y -radioactivity/M -radiobiological/Y -radiobiologist/S -radiobiology -radiocarbon/MS -radiochemical -radiochemically -radiochemist/S -radiochemistry/M -radiocolloid -radiocolloidal -radiocommunications -radioconductor -radiodating -radiodense -radiodensity -radiodermatitis -radiodiagnosis -radiodiagnostic/S -radioecological -radioecology -radioenzymatic -radiogenic/Y -radiogoniometer -radiogram/SM -radiograph/SD -radiographer/MS -radiographically -radiography/SWM -radioimmunoassay -radioiodine -radioisotope/MS -radioisotopic -radiolabelled -radioland -radiolaria -radiolarian/S -radiology/W13Mw -radiometer/MSW -radiometry/M -radionics -radionuclide/M -radiopacity -radiopaque -radiophonic/S -radiophonicist -radiophony -radiophosphorus -radiophosphorylated -radiophoto -radiophotograph -radiophotography -radiophotoluminescence -radiophysical -radiophysics -radioprotectant -radioprotection -radioprotective -radioprotector -radiopure -radiopurity -radioreceptor -radioresistant -radioscanning -radioscopy/WM -radiosensitive/P -radiosensitivity -radiosensitization -radiosensitize -radiosensitizer -radiosensitizing -radiosity -radiosondage -radiosonde/MS -radiostereometric -radiosterilization -radiosterilized -radiostrontium -radiosurgery -radiosurgical -radiotelegraphically -radiotelemetry -radioteletype -radiotelex -radiotherapeutic -radiotherapeutically -radiotherapist/MS -radiotherapy/SM -radiothermal -radiothorium -radiotoxic -radiotoxicity -radiotracer -radish/SM -radium/M -radius/M -radix/M -radon/M -radula -radulae -radular -Rae/M -Raelian/S -Raes -RAF -raff -raffia/M -raffish/PY -raffle/DSMG -Raffo/M -raft/RSDMG -raftered -rag/diGkMSDh -raga/MS -ragamuffin/SM -ragbag/SM -rage/eSMGD -ragga -ragged/P -raggedy -raglan/SM -Ragnar/M -Ragnarök -ragout/SM -rags-to-riches -ragtag/M -ragtime/M -Ragusa -ragweed -ragworm -ragwort/M -Rahman/M -Rahul/M -raid/RGSDM -Raikkonen -rail's -rail/CDSGJ -railage -railbed -railbus/S -railcar/S -railcard/S -railer/M -railhead/MS -railing/M -raillery -railless -railman -railmen -railroad/SGD -Railtrack/M -railway/mSM -railwayana -raiment/MS -rain-cloud/SM -rain-maker/MS -rain-making -rain-shadow/SM -rain/DMGSpZ -rainbow/MS -raincoat/SM -raindrop/SM -rainfall/SM -rainforest/MS -rainproof -rainstorm/MS -rainswept -rainwater/M -rainy/T -Raipur -raise/RGDS -raisin/MS -raison -raison d'être -Raith/M -Raj/M -rajah/MS -Rajasthan -rake/SGMD -raker/M -rakish/PY -Raleigh/M -Ralf -rally/DSG -rallycross -Ralph/M -ram/DSGM -RAM/S -Ramadan -Ramalingam/M -Ramayana -ramble/kJDRSG -rambly -Rambo/M -rambutan/S -ramdisk/S -Rameau -ramekin/MS -rami -ramie/MS -ramification/M -ramify/nSDGN -Ramirez/M -ramjet/SM -rammelly -Ramona/M -ramp/DMSG -rampage/DSG -rampancy -rampant/Y -rampart/SM -Ramprakash -ramrod/MS -Ramsay/M -Ramsbury/M -Ramsden/M -Ramses/M -ramshackle -ramus -ran/Aec -ranch/DRSGM -Ranchi -rancid/P -rancidity/MS -rancorous/Y -rancour/M -rand/2ZM -Randi/M -randkluft -Randle/M -Randolph/M -random/qQ-8YP -randomicity -randomiser -randy/T -ranee/MS -rang/RGDZ -rangability -range's -range-amplitude -range-taker -range/SCGD -rangeability -rangefinder/S -rangeful -rangeland/S -rangeless -Rangoon/M -rangy/T -rank/PRYTJDGSM -ranked/Ue -ranking/M -rankish -rankism -rankle/DSG -rankless -ranks/e -rans -ransack/GSD -ransacker/M -ransom/MdS -ransomer -ransomite -ransomless -ransomware -rant/RGJSDk -ranunculi -ranunculus/S -rap/d3RDGS -rapacious/YP -rapacity/M -rape/SM3 -rapeseed/M -Raphael/M -Raphaelite/SM -rapid-fire -rapid/YS -rapidity/M -rapidness -rapier/MS -rapine/MS -Rappaport/M -rappel/GDS -rapping/M -rapport/MS -rapporteur/SM -rapprochement/MS -rapscallion/SM -rapt/Y -raptness -raptor/S -raptorial -raptorially -rapture/SM -rapturous/PY -Raquel/M -rare/YGTP -rarebit/MS -rarefaction/MS -rarefy/DGS -rarity/MS -rascal/YMS -rascasse/S -rash/SYTR -rashness -Rasmussen/M -rasp/SGkZDM -raspberry/MS -rasper/M -raspy/T -Rastafarian/S -Rastafarianism -raster/MS -rasterisation -rasterise/SGDR -rasterize/SGDRN -rat-catcher -rat/DdMRGSZ -ratatouille -ratbag/S -ratchet/dSM -rate's -rate-cap/G -rate/cDGS -rateable -ratepayer/SM -rather -ratify/SRNnDG -rating/MS -ratio/SM -ratiocinate/DVGSNn -ratiocination/M -ration/MGD -rational/s8-39Qq -rationale/3MS -rationalism/SM -rationalist/W -rationalities -rationality/IM -rationally/I -ratline/MS -Ratner/M -rattail -rattan/SM -rattle/RGYJDS -rattlesnake/MS -rattletrap/MS -rattly/T -rattrap/SM -ratty/T -raucous/PY -raunchiness -raunchy/TY -ravage/DRSG -rave/RDSGJ -ravel/UGDS -raven/dSM -ravenous/Y -ravenousness -Ravensbruck/M -Ravenscroft/M -Ravicher/M -ravine/SMD -ravioli/SM -ravish/DRGLSk -raw-boned -raw/YTP -rawhide/SM -Rawiri -Rawles/M -ray/DMSG -Rayleigh/M -Raymond/M -Raymondville/M -rayon/M -Raytheon/M -raze/DSG -razor-sharp -razor/MS -razorback/MS -razorbills -razorblades -razorfish/S -Razzie/M -razzmatazz -Rb -Rd/M -RDS -re-adapt/SDG -re-allocated -re-deployed -re-election -re-eligibility -re-emergence -re-emission -re-emphasize -re-employ/7 -re-employment -re-enable/SGD -re-enablement -re-enact/SDG -re-enactment/S -re-enactor/S -re-enforce/L -re-engagement -re-enlister -re-enumerate/N -re-equip/G -re-establish -re-evaluate -re-experience -re-export/7 -re-form/N -re-fund -re-radiated -re-release/DGS -re-route/GSD -re-routeing -re-site/SDG -re-soluble -re-sort/G -re/nxhoYJNi -Rea/M -reabsorb/G -reabsorption -reaccept/D -reacceptance -reach/eGcDS -reachability -reachable/U -react/cSDG -reactance -reactant/SM -reaction/cMS -reactional -reactionarily -reactionariness -reactionarism -reactionary/MS -reactionaryism -reactionism -reactivate/S -reactive/NnU -reactiveness -reactivity -read-only -read/2JlRzGB -readability/SM -readapt/SGDN -readd/SGD -readdress/G -reader/aM -readerly -readership/MS -reading's -reading/aS -readjust/LG -readme -README -readopt/G -readout/MS -reads/aA -readvance -ready-made -ready/TSDPG -reaffirm/GNn -reafforest/N -Reagan/M -Reaganite/S -reaggregate -Reagle/M -real-life -real-time -real/Tts3+9q-Q8Y -realisable/U -realise/l -realised/U -realism/SM -realist/W1 -realistic/UY -reality/USM -realize/l -realized/U -realm/SM -realness -realpolitik/M -realtor's -ream/RGDMS -reanalyse/SGD -reanalysis -reap/RGS -reapply/nNG -reappoint/LG -rear-view -rear/DRMGS -rearguard/MS -rearm/GL -rearmost -rearrange/L -rearrest/G -rearward/S -reascend/NG -reason/rlp7dSM -reasonability -reasonable/U -reasonableness/U -reasonably/U -reasoned/U -reasoning's -reasoning/U -reassemble/Y -reassert/G -reassess/LG -reassign/LG -reassume/SGD -reassumption -reassuringly/U -reattach/GL -reattain/G -reattempt/G -reauthorise/n -reauthorize/Nn -reawaken/d -Reba/M -rebalance -rebar -rebase/SGD -rebate/M -Rebecca/M -rebel/MSGD -rebellion/MS -rebellious/Y -rebelliousness -Reber/M -rebid/G -rebind/G -rebirth/SGDR -Rebney/M -rebook/G -rebottle/rSGD -rebrand/SGD -rebreathe/D -rebreather/S -rebroadcast/M -rebuff/G -rebuffer/Sd -rebuild/GB -rebuilder/S -rebuke/DkSG -rebuker -rebuttal/SM -recalcitrance/M -recalcitrant -recalculate -recall/G7 -recant/GNn -recapture -recast/G -receipt/GMDS -receivable/S -receive/DRGS -received/U -receivership/SM -recency/M -recension/M -recent/Y -recentness -recentre -receptacle/SM -reception/MS3 -receptionism -receptionist -receptive/U -receptively -receptiveness -receptivity -receptor/SM -recertify/N -recess/GMNuSXDVv -recession/y -recessional/S -recessive/PS -rechartering -recherché -rechipping -recidivism/SM -recidivist/SM -recipe/MS -recipiency -recipient/SM -reciprocal/YS -reciprocate/NnDGS -reciprocation/M -reciprocity/SM -recirculate -recital/3SM -recitalist -recitative/SM -recite/R -reckless/Y -recklessness -reckon/dS -reckoner/SM -reclaim/7 -reclaimable/I -reclamation/MS -reclassify/DNGn -recline/SDRG -recluse/MSVN -reclusion/M -recognisable/U -recognisably/U -recognisance/S -recognise/RBGDlS -recognised/U -recognize/RBGDlS -recoil/p -recollect/G -recolour/GD -recombinant/S -recombinational -recombinationally -recombinationless -recombinogenic -recomforting -recommand/SGD -recommencer -recommission/G -recommit/LGNXD -recommittal -recompact/SGD -recompare/SGD -recompensable -recompensate/SGD -recompensation -recompense/SDG -recompilable -recompile/Nn -recompose/D -recomposition -recompress/SDGN -recompute -reconcilable/UI -reconcile/7SGD -reconciled/U -reconcilement -reconciler/MS -recondite/PY -recondition/G -reconfigure/B -reconnaissance/MS -reconnect/GD -reconnection -reconnoitre/SDG -reconsideration/M -reconsign/G -reconstructable -reconstructed/U -reconstructional -reconstructionary -reconstructive -reconstructiveness -reconstructor -reconsult -recontamination -recontinuance -recontinue -reconvalescence -reconvalescent -reconvention -reconverge -reconversion -reconvert/G -reconvertible -reconveyance -reconvict/SGD -reconviction -reconvoke -recopper -recopy/G -record-breaking -record/RJ37 -recordable/U -recorded/AU -recordist -records/A -recount/G -recoup/DG -recoupable -recouperation -recouple/SGD -recoupment -recourse -recover/gdZ7 -recoverable/UI -recovery/S -recreancy -recreant/SY -recreate/x -recriminate/VSyGDnN -recrimination/M -recrudesce/DSG -recrudescence/M -recrudescent -recruit/rdMLS -recrystallize/Nn -rectal/Y -rectangle/MS -rectangular/Y -recti -rectification/M -rectify/GN7nDRS -rectilinear/Y -rectitude/M -recto/SyM -rector/SMF -rectorate -rectorial -rectorship -rectory/SM -rectum/MS -rectus -recumbent/Y -recuperate/SnNVGD -recuperation/M -recur/DGS -recurrence/MS -recurrent -recurs/NXvV -recurse/SGD -recursion/M -recursiveness -recursivity/S -recurving -recusance/Z -recusant/M -recyclable/S -recycle/7R -red-blooded -red-bloodedness -red-eye -red-faced -red-handed -red-head/MSD -red-hot -red-letter -red-light -red/PTSZ -redact/GDS -redaction/SM -redactor/MS -Redbeard/M -redbreast/SM -redbrick -redbud/M -redcap/SM -Redcar/M -Redcliffe/M -redcoat/SM -redcurrant/SM -redden/dS -Reddington/M -reddish -Reddit -Redditch -Redditor/S -redeclare/N -redecorate -redeem/7R -redeemable/UI -redeemed/U -redefinable -redelivery/M -redemption/SM -redemptive -redeploy/LG -redeposition -redesign/G -redesignate/SGDN -redetermine/ND -redevelop/L -Redfern/M -redfish/S -Redford/M -Redgrave/M -redhead/S -Redhill -redial/DG -redimension/SGD -redirect/G -redirection -redistributable -redistributor/S -redivide -redlining -Redmond/M -redo/G -redolence/M -redolent -Redondo/M -redouble -redoubt/l -redound/GDS -redox -redraft/G -redraw/G -redress/G -redrill/SGD -redshank/S -redskin/SM -redstart/S -reduce/SbDGRnNV -reduced/U -reducibility/MI -reducible/YI -reducibly/I -reductant/S -reductase -reduction/M3 -reductionism/M -reductionist/W -redundancy/MS -redundant/Y -reduplicative -redwater -redwing/S -redwood/MS -Reebok/M -Reece/M -reed/ZGDMS2 -reeding/M -Reedville/M -reedy/PT -reef/DMRSG -reek/SDG -reel/SRGDM -reenergise/SGD -reenergize/SGD -Rees -Reese/M -reeve/SGM -ref/M -refactor/Sd -refashion/G -refection/M -refectory/MS -refer/RSDG7 -referee/GdMS -reference's -reference/CDSG -referenced/U -referencing/U -referenda -referendum/SM -referent/MS -referential/Y -referentiality -referral/SM -refigure/SGD -refill/G7 -refilm/SGD -refine/LR -refined/cU -refire/SGD -refit/GD -reflate/N -reflation/y -reflect/GuvSVD -reflectance/M -reflection/SM -reflectional -reflectioning -reflectionist -reflectionless -reflective/P -reflectivity/M -reflectogram/S -reflectogramme -reflectograph -reflectographic -reflectography -reflectometer -reflectometry -reflector/MS -reflex/Y -reflexibility -reflexible -reflexional -reflexive/I -reflexively -reflexiveness/M -reflexives -reflexivity/M -reflexologist/S -reflexology -refloat/SGD -refluence -refluent -refold/G -reforest/nGN -reform/BRnNVy3G -reformat/DG -reformatory/MS -reformed/U -reformism/M -reformist -refoulement -refract/DyvGVS -refractile -refraction -refractometer/WMS -refractometry -refractor/S -refractoriness -refrain/DGS -reframe/SD -refreeze -refresh/DLGS7k -refries -refrigerant/SM -refrigerate/NDSG -refrigerated/U -refrigeration/M -refrigerator/MS -refrigeratory -refrozen -refuel/DRG -refuge/SM -refugee/SM -Refugio/M -refulgence/M -refulgent/Y -refund/7 -refurbishment/S -refurnish/G -refusal/SM -refuse -refusenik/S -refuser/M -refutability -refutable/I -refutation/M -refutative -refute/NDnRSG -reg/o -regal -regale/DG -regalement -regalia/M -regalism -regalist/S -Regan/M -regard/ESGD -regardant -regardless -regather/d -regatta/SM -regauge/SGD -regelate/DN -regency/MS -regenerate/U -reggae/SM -Reggie/M -regicide/SM -regime/SM -regimen/SM -regiment/DMGnSN -regimental/S -regimentation/M -Regina/M -Reginald/M -Regio/M -region/oSM -regional -regionalise/Dn -regionalism/MS -regionalize/DN -Regis/M -register's -register/KdNSn -registered/U -registrable -registrant/S -registrar/SM -registrarship -registration/MK -registry/SM -regnant -regrade -regress/XGVDvSuN -regression/M -regressive/P -regret/GDj6S -regretful/P -regrettable/Y -regrind/G -reground -regroup/G -regrow/G -regular/q8Q-YS -regularity/IMS -regularly/I -regulars/I -regulate/CNGSDny -regulated/U -regulation/M -regulative -regulator/MS -regurgitate/DGSnN -regurgitation/M -rehab -rehabilitate/DNVGSn -rehabilitation/M -rehang/G -rehears/DG -rehearsal/SM -rehearsed/Uf -rehearser/M -reheat/G -Rehnquist/M -rehouse -rehydratable -rehydrate/N -Reich/M -Reid/M -Reigate -reign/SDGM -reignition -reiki -Reiko/M -Reilly/M -reimagine/D -reimbursable -reimburse/GLDS -reimportation -reimposition -rein/GDM -reindeer/M -reinduce/SGD -reinflatable -reinflate/SDGN -reinforce/LDSG -reinforced/U -reinforcer/MS -Reinhardt/M -Reinhold/M -reinitialise/n -reinoculate -reinstalment -reinstitute/S -reinstitution -reinvent/G -reinvest/G -Reisinger/M -reissue -Reith/M -reject/DRGSV -rejectable -rejectamenta -rejection/SM -rejectionist/S -rejector/S -rejoice/SJDGk -rejoicer -rejoin/G -rejuvenant -rejuvenate/SnNDG -rejuvenator/S -rejuvenatory -rejuvenesce -rejuvenise -rejuvenize -reknit -relatability -relatable -relate/FnNvSVDG -related/P -relater/SM -relation/MF -relational/Y -relationship/MS -relative/SF -relativeness/M -relativism/M -relativist/M1WS -relativity/SM -relax/GiDnkh -relaxant/MS -relaxation/M -relaxed/P -relay/GDM -relearnt -releasable -released/U -releasee/S -releasor/S -relent/pSDG -relenting/U -relentless/Y -relentlessness -relevance/MIZ -relevancy/IMS -relevant/IY -reliability/UM -reliable/U -reliably/U -reliance/M -reliant/Y -relic/MS -relicense/SGD -relict/MC -relicts -relief/MS -relieve/SGDhR -relieved/U -relight/G -religion/3SM -religionist -religiosity/M -religious/PY -reline -relink/DG -relinquish/GDLS -reliquary/SM -reliquiae -relish/SDG -relist/DG -relit -relive/S -relleno/S -reload/7G -relock/G -reluctance/SM -reluctant/Y -rely/BlWGD -rem -remain/GD -remainder/dMS -remand/SDG -remanence -remanent -remap/GD -remark/Gl7 -remarkable/U -remarkableness -remarriage -rematch -Rembrandt/M -remeasure -remediable/I -remedial -remediate/N -remedy/7SGMoD -remelt/G -remember/ad -remembered/U -rememberer/M -remembrance/MS -remind/G -remineralisation -remineralise/SGD -remineralization -remineralize/SGD -Remington/M -reminisce/DGS -reminiscence/SM -reminiscent/Y -remiss/PV -remit/GXNSD -remitless -remitment -remittable -remittal -remittance/SM -remittee -remittent -remitter/S -remitting/U -remnant/MS -remobilise/B -remobilize/B -remodel/GD -remonstrance -remonstrant -remonstrate/nDVNvSG -remonstration/M -remorse/pMj6 -remorsefulness -remorseless/YP -remortgage/SGD -remote/TY -remoteness -remould/G -removable/I -removal/SM -remunerate/DSNnvVG -remunerated/U -remuneration/M -remuster -remustering -remutation -Remy/M -remyelination -remythologization -remythologize/SGD -Rena/M -Renaissance's -renaissance/S -renal -Renaldo/M -renascence -Renata/M -Renate/M -Renato/M -Renault/SM -rend/GS -render/rdJS -rendezvous/SDGM -rendition/MS -Rene/M -Renee/M -renegade/MS -renege/RSDG -renegue -renew/D7G -renewal/SM -Renfrewshire/M -Renick/M -Renner/M -rennet/M -Rennie/M -rennin/M -Reno/M -Renoir/M -renounce/GDS -renouncement -renouncer/M -renovate/DSNGn -renovation/M -renovator/MS -renown/DM -Rensselaer/M -rent-free -rent/DMRSG -rental/MS -renumber/d -renunciant -renunciation/SM -renunciative -renunciatory -René -reopen/d -reorder/d -reorg/S -reorganizational -reorganizationist -reovirus -rep/MS -repackage/G -repaint/G -repair's/E -repair/Rm7 -repairability -repairable/U -repairs/E -repaper/d -reparation/SM -reparse/SGD -repartee/SM -repartition/G -repast -repatriate/GnDNS -repeat/BRDGh -repeatability/M -repeatable/U -repeated/U -repel/DNGSn -repellent/SY -repent/SDG -repentance/MS -repentant/UY -repenter -repercussion -repertoire/SM -repertory/SM -repetitious/Y -repetitiousness -repetitive/Y -repetitiveness -rephotograph/G -replace/L -replaceable/I -replay/M -replenish/SDG -replenisher -replenishment/S -replete/NP -repletion/M -replica/MS -replicable -replicate/DGS -replicator/S -replot/SGD -reply-paid -reply/NRnGV -repo/S -repoint/SGD -repolarization -repolish/SGD -repopulate/N -report/h7G -reported/faU -reporting/af -reports/a -repose/N6MX -repository/SM -repost/G -reprehend/XGSND -reprehensibility/M -reprehensible/Y -reprehension/M -represent/anNGSD -representable -representation's/a -representation/f -representative's -representative/U -representatively -representativeness -representatives -represented/fUc -repress/NuvXV -repression/M -repressive/P -reprieve/SDG -reprimand/DSGM -reprint/JM -reprisal/SM -reproach/kDS6G7j -reproachable/I -reproacher/M -reproachful/P -reprobate/GD -reprocess/G7 -reproduce/ubvV -reproducibility's -reproducibility/I -reproducible/U -reproducibly -reprogram/GRD -reprogrammable -reprogramme -reprographer/S -reprographic -reprography -reproof/G -reprove/k -reprover -reptile/MS -Reptilia -reptilian/S -reptoid/S -republic/nNS -Republican -republicanism/SM -republish/G -repudiate/NnSDG -repudiation/M -repudiator/S -repugnance/M -repugnant/Y -repulse/Vuv -repulsion/M -repulsive/P -repurpose/SGD -reputability/M -reputable/E -reputably/E -reputation/M -repute/lhSBnND -reputes/E -repêchage -requestion/G -requiem/MS -require/LGD -requisite/SK -requisition/GMDS -requisitioner/M -requital/SM -requite/DS -requited/U -reread/7G -rerecord/G -reredos -resaid -resale/7 -resample/SGD -resanctification -resanctify/SGD -resat -resave/SGD -resay/SG -reschedule -rescind/GDS -rescission/MS -Rescorla/M -rescue/RSGD -reseal/7 -research/M7G -researched/U -resect/DB -resection/G -resectional -resectionist -reseed/G -reselect/7 -reselection -resemblant -resemble/DSG -resent/6LjDGS -resentful/P -resequence -reserpine -reservation/M -reserve/nNih3 -reserved/UY -reservedness/M -reservoir/MS -reset/G -resettle/L -reshow/G -reside/DG -residence/MZS -residency/SM -resident/MS -residential/Y -residua/oy -residual/S -residue/SM -residuum/M -resign/inhN -resignal/GD -resignation/M -resignationism -resignationist -resignee -resignful -resignment -resile/SGD -resilience/MZ -resiliency/S -resilient/Y -resin/d -resinlike -resinous -resiny -resist/bSvDVG -resistance/MS -resistant -resistible/YI -resistibly/I -resisting/U -resistivity/M -resistor/MS -resit/G -resite/SGD -resituate/SGD -resizer -reskill/SGD -reskin/SGD -reslash/SGD -reslush/SGD -resmelt/SGD -resmethrin -resmile -resmooth/SGD -Resnick/M -resolute/IY -resoluteness -resolution/IMS -resolvability/M -resolvable/IU -resolve/B -resolved/U -resolvent -resonance/SM -resonant/Y -resonate/DSG -resonation -resonator/SM -resorb/SGD -resorption/M -resorptive -resound/kG -resource/6jp -resourceful/P -resourcelessness -resow/G -respecify/G -respect/ED6GSMj -respectability/MS -respectable/Y -respecter/S -respectfulness -respective/IY -respell/G -Respighi/M -respiration/M -respirator/SM -respire/nNyG -respirometer/S -resplendence/M -resplendency -resplendent/Y -respond/FGDS -respondent/FSM -responder/MS -responsa -response/bvVSuM -responsibility/ISM -responsible/PIY -responsibly/I -responsive/UY -responsiveness/U -responsivity -responsor -responsorial -responsorially -responsory/S -responsum -resprang -respring/SG -resprung -ressentiment -rest/6VjpvGuDMS -restart/G -restartless -restaurant/MS -restaurateur/SM -restenosis -restfulness -restitution/SM -restive/P -restless/PY -Reston/M -restoration/M -restorative/S -restore/gRnVNv -restrain/Gh -restrained/UY -restraint/MS -restrict/SDvhuVG -restrictable -restricted/UY -restriction/MS -restroom/SM -result/MDGS -resultant/YS -resume/GSNDX -resumption/M -resurface -resurgence/SM -resurgent -resurrect/DSG -resurrectable -resurrection/SM -resuscitate/nSVGDN -resuscitation/M -resuscitator/SM -resuspend/SGDN -resynchronise/n -ret/SGD -retable/S -retablo/S -retail/R -retain/RSDG -retake -retaliate/SVynGDN -retaliation/M -retard/nRDGS -retardant/SM -retardation/M -retarget/dSGD -retask/SGD -retch/SGD -reteach/G -retell/G -retention/SM -retentive/Y -retentiveness -rethink/G -reticence -reticent/Y -reticle/MS -reticular -reticulary -reticulate/SYGD -reticulation/M -reticule/NSMn -reticuloendothelial -reticulum/M -retie -retina/SM -retinal -retinitis -retinol -retinue/MS -retinyl -retinylidene -retip/SGD -retiral -retire/kL -retiree/S -retirer/S -retiré -retort/DG -retortion/SM -retouch/R -retract/DG -retractile -retranslate/SGD -retranslation/S -retread/D -retreat/G -retrench/L -retribution/MS -retributive -retrievability -retrievable/I -retrieval/MS -retrieve/RSGD -retro -retroact/SGD -retroaction -retroactive/Y -retrocession -retroelement/S -retrofire/SM -retrofit/GSD -retroflex/DN -retroflexion/M -retrogradations -retrograde/SDG -retrogress/XDGSVNv -retrogression/M -retrorocket/MS -retrospect/MvV -retrospection/SM -retrospective/S -retrotransposon/S -retrovirus/S -retsina/MS -retube -retumble -retumescence -return/7 -returned/U -returnee/SM -retweet/SGD -Reuben/M -reunion -reupload/SGD -Reuter/M -Reuters -rev/QsSDG -revaccinate/SGDN -revalorisation -revalorization -Revd. -reveal/RSD7Gk -revealing/U -reveille/SM -revel/nRJSDGyN -revelation/SM -revelatory -revelry/SM -revenant/S -revenge/D6jSMG -revenger/M -Revenna -reverb/S -reverberant -reverberantly -reverberate/NDGSn -reverberation/M -reverberative -reverberator -reverberatory -revere/SDG -reverence/ISM -reverenced -reverencing -reverend/SM -reverent/YI -reverential/Y -reverie/MS -reverify/NG -reversal/MS -reverse-charge -reverse/GbY -reverser/M -reversibility's -reversibility/I -reversible/YI -reversibly/I -revert/DSGb -reverter/M -revet/LDG -review/G -reviewable -reviewal -revile/GRSLD -Revill/M -revisable -revise/NX -revision/3y -revisionism/MS -revisionist -revisitation -revitalise/Rn -revival/3MS -revivalism/MS -revivalist -revive/GSD -reviver/M -revivification/M -revivify/n -Revlon/M -revocable/I -revoke/DNGnRS -revolt/DGk -revolution/Q8My3S -revolutionary/SM -revolutionist -revolvable -revolve/RDJGS -revue/SM -revulsion/M -reward/k -rewarded/U -rewarding/U -rewarm/G -rewed/GD -rewind/7 -rewire -rework/7 -rewound -rewrap/SGD -rewritable -Rex/M -Rey/M -Reyes -Reykjavik/M -Reyna/M -Reynaldo/M -Reynold/SM -Reztsov -Rf -RFC -RFID -RFU/M -RGB -Rh -rhabdom/S -rhabdome/S -Rhadamanthus -rhapsody/QSMwW -rhea/MS -Rhee/M -Rheims/M -Rheinholdt/M -rheme/S -rhenium/M -rheology/w3M -rheostat/MS -rhesus -rhetor/S -rhetoric/MY -rhetorical -rhetorician/MS -Rhett/M -rheum/W1MZ -rheumatic/SZ -rheumatica -rheumatism/SM -rheumatoid -rheumatological -rheumatology/3 -rheumy-eyed -rheumy/T -Rhine/M -Rhineland/M -Rhinelander/M -rhinestone/MS -rhinitis/M -rhino/SM -rhinoceros/SM -rhinoplasty/SW -rhinovirus/S -rhizome/SM -rhizosphere -rho/M -Rhoda/M -Rhode/SM -Rhodesia/M -Rhodesian/S -rhodium/M -rhododendron/MS -rhodophyte/S -rhodopsin -rhombencephalon -rhombohedral -rhomboid/MS -rhomboidal -rhombus/SWM -Rhonda/M -Rhondda/M -Rhone -Rhoten -rhotic -rhoticity -rhubarb/SM -Rhum/M -rhyme/SRGDM -rhymester/SM -rhyolite -Rhys/M -rhythm/1MwSW -rhythmite -rial/MS -rib/GDMS -ribald/y -ribaldry/SM -ribbing/M -ribbon/SM -ribboned -ribcage -riboflavin/M -ribonucleic -ribosomal -ribosome/M -Rica/M -Rican/SM -Ricardo/M -rice-paper -rice/SM -rich/PTSY -Richard/MS -Richardo/M -Richardson/M -Richelieu/M -richen/d -Richey/M -Richfield/M -Richie/M -Richland/M -Richmond/M -Richmondshire -Richter/M -rick/GDMS -Rickard/M -rickets -rickety/T -Rickey/M -Rickie/M -rickshaw/MS -Ricky/M -Rico/M -ricochet/dGDS -ricotta/SM -rid/rS7G -riddance/M -ridden/c -riddle/DSMG -ride/GCRS -rideable -Rideau/M -rider's/ce -rider/p -riders/e -rides/c -ridge-pole/SM -ridge-tile/SM -ridge/DGSMZ -Ridgefield/M -Ridgewood/M -Ridgway/M -ridgy/T -ridicule/SDMG -ridiculer/M -ridiculous/YP -riding/M -Ridley/M -Riefenstahl/M -Riegl/M -Riemann/M -Riesling/SM -rife/T -riff-raff/M -riff/MS -riffage -riffle/DSG -rifle-fire -rifle/mGSMD -riflescope/S -rifling/M -rift/DMGS -rig/JDMRGS -Riga/M -rigatoni/M -Rigby/M -Rigel/M -rigger/eSM -rigging/M -Riggs/M -right-angled -right-click -right-hand/iD -right-hander/S -right-minded -right-on -right-thinking -right-wing -right-winger/S -right/RP7DjG36SY -righten -righteous/UY -righteousness's -righteousness/U -rightfulness -rightish -rightism/SM -rightist -rightmost -righto -rightward/S -righty-ho -rigid/Y -rigidify/S -rigidity/S -rigmarole -Rigoletto/M -rigorous/Y -rigorousness -rigour/SM -Riker/M -rile/DSG -Riley/M -rill/SM -rim/GpSDM -Rimbaud/M -rime/SM -rimfire -Rimington/M -Rimkus/M -Rinaldo/M -rind/SDM -Rinehart/M -ring-fence/GD -ring-pull -ring/DRMG -ringback -ringbark/SGD -ringbolt -ringbone -ringleader/SM -ringlet/SM -Ringling/M -ringmaster/MS -Ringo/M -ringside/MRS -ringtone/S -ringworm/SM -rink/MS -rinse/GDS -rinser -Rio/SM -Riordan/M -riot/DRMGSJ -riotous/PY -rip-off/S -rip-roaring/Y -rip/DRGS -riparian/S -ripcord/SM -ripe/YP -ripen/dS -riper -Ripley/M -Ripon/M -riposte/DMSG -ripping/Y -ripple/GMYDS -ripplet -ripply/T -ripsaw/SM -ripstop -RISC -rise/bGJS -risen -risibility/M -risk-neutral -risk/GSZz2DM -riskless -risky/TP -risotto/SM -risperidone -risqué -rissole/SM -Rita/M -Ritalin -Ritchie/M -rite/SM -Ritter/M -ritual/QS8YM -ritualism/M -ritualistic/Y -Ritz/M -ritzy/T -Riva/MS -rival/SMyGD -rivalled/U -rivalry/SM -rive/RGDS -rived/C -riven -Rivera/M -riverbank/MS -riverbed/S -riverboat/S -riverine -Rivermont/M -riverside/SM -Riverview/M -rives/C -Rivest-Shamir-Adleman -Rivest/M -rivet/drSMk -Riviera/M -riving/C -Rivington -rivulet/SM -Riyadh/M -riyal/SM -Rizzio/M -RJ45 -RMI -Rn/M -RNA -RNase -roach/SM -road-based -road-hog/S -road-test -road/MSp -roadbed/SM -roadblock/SM -roadhouse/SM -roadie/S -roadkill/S -roadmap/SGD -roadrunner/SM -roadshow/S -roadside/S -roadster/MS -roadway/SM -roadwork/SM -roadworthy -roam/GDRS -roan/S -Roanoke/M -roar/RkSDGJ -Roarke/M -roast/RGDSJ -Rob's -rob/GDRS -Robb/MZ -Robben -robber/Z -robbery/SM -Robbie/M -Robbins -Robby/M -robe/MDS -Roberson/M -Robert/SM -Roberta/M -Roberto/M -Robertson/M -robes/E -Robespierre/M -Robichaud/M -Robillard/M -robin/MS -Robinette/M -Robinson/M -Robles/M -robot/WQMS -robotic/S -robotically -robotisation -Robson/M -robust/YPT -Roby/M -Robyn/M -Rocco/M -Rochdale -Roche/M -Rochelle/M -Rochester/M -Rochford/M -rock-bottom -rock-climber/S -rock-climbing -rock/RZ2DGSM -rockabilly/M -Rockaway/M -Rockefeller/M -rocker/Z -rocket/dySM -rocketeer/S -rocketry/SM -rockfall/S -rockfish/S -Rockford/M -Rockhampton/M -Rockies -rocking-horse/SM -Rockingham -Rockland/M -rockslide/S -rocksteady -Rockville/M -Rockwell/M -rockwork -rocky/T -rococo/M -Rocque/M -Roczek/M -rod/SM -Roddenberry/M -rode/cF -Rodeffer -rodent/MS -rodeo/MS -Roderick/M -Rodger/MS -Rodinia -Rodney/M -Rodolfo/M -Rodrigo/M -Rodrigues/M -Rodriguez/M -Rodriquez/M -Rodwell/M -roe/MS -roebuck/SM -roentgen/MS -Rogation -rogation -Rogelio/M -roger -Roger's -Rogers -Roget/M -rogue/ySM -roguery/MS -roguish/YP -Rohmer -ROI -roil/SGD -roister/drS -Rojas/M -Roland/M -role-play/GD -role/MZS -Rolf/M -Rolfe/M -roll-back/SM -roll-call -roll-off -roll-on -roll-out/S -roll-over/S -roll/GUSD -Rolland/M -rollback -roller-coast -roller-coaster -roller-skate/GSDM -roller/MS -rollerball -Rollerblade/S -rollerblade/SGDR -rollerman -rollick/SGkD -Rollin/MS -rolling-pin/SM -rolling-stock -Rollo/M -Rolodex -Rolph/M -roly-poly -ROM/S -Roma/M -Roman/SM3 -romance/RSDMG -Romanesque -Romania/M -Romanian/MS -Romanic -romanise/nSDG -romanize/SGnND -Romano/M -Romanov/M -Romansh/M -romantic/8Q3MYS -romanticism/MS -romanticist -Romany/M3 -Romberg/M -rombowline -romcom/S -Rome/M -Romeo/MS -Romero/M -Romina/M -Rommel/M -Romney/M -romp/RGSD -Romsey/M -Romulus/M -Ron/MZ -Rona/M -Ronald/M -Ronan -Ronda/M -rondel/S -rondo/SM -Ronnie/M -Ronny/M -Rontgen -rood/MS -roof-garden -roof/RpDGSM -roofing/M -roofline/S -rooftop/S -rooibos -rooinek/S -rook/MS -rookery/MS -rookie/SM -room-mate/MS -room/Z6M2S -roomful/SM -roomy/PT -Rooney/M -Roosevelt/M -roost/SMRDG -roosterfish -root-mean-square -root/RipDMGS -rootkit/S -rootlessness -rootlet/MS -rootstock/MS -rootsy/T -rootworm/S -rooty -rope/GRD7SM -ropemaker -ropemanship -ropesight -ropework -ropey -Roquefort/M -Rorke/M -rorqual/S -Rorschach/M -Rory/M -Rosa/M -rosacea -Rosales/M -Rosalie/M -Rosalind/M -Rosalyn/M -Rosamond/M -Rosanna/M -rosaria -Rosario/M -rosarium/S -rosary/SM -Roscoe/M -Roscommon/M -rose-coloured -rose-red -rose-tinted -rose/SZyM -Roseanne/M -roseate -Roseau/M -rosebay -Rosebery/M -rosebud/SM -rosebush/MS -rosefinch/S -Roseland/M -Rosella/M -Roselle/M -Rosemarie/M -rosemary/M -Rosemonde/M -Rosemont -Rosen/M -Rosenallis -Rosenbaum/M -Rosenberg/M -Rosencrantz/M -Rosenthal/M -Rosetta/M -rosette/SMD -rosewater -rosewood/MS -Roshi/S -Rosicrucian/M -Rosie/M -rosin/dSM -Rosina/M -Roslyn/M -Ross -Rossendale/M -Rossetti/M -Rossi/M -Rossini/M -Rosslyn/M -roster/MSd -Rostov/M -rostra -rostral/Y -rostro-caudal -rostrocaudally -rostroid -rostrum/SM -rosulate -Roswell/M -rosy/PYT -Rosyth/M -rosé -rot-gut/M -rot/NnDSG -rota/yvSVM -Rotarian/SM -rotary/S -rotatable -rotatably -rotate/SxGDy -rotation/M -rotator/MS -Rotavator/SM -rotavirus/S -rote/M -Roth/M -Rotherham/M -Rothermere/M -Rothschild/M -Rothstein/M -rotifer/S -rotisserie/SM -rotogravure/SM -rotor/SM -rotten/Y -rottener -rottenest -rottenness -rotter/MS -Rotterdam/M -Rottweiler/S -rotund/Y -rotunda/SM -rotundity/S -rouble/SM -rouge/SGDM -rouget/S -rough-and-ready -rough-hewn -rough/GSDPTY -roughage/SM -roughcast -roughen/dS -roughish -roughneck/SM -roughshod -roulade/S -roulette/M -round-arm -round-shouldered -round-the-clock -round-up -round/TRYPDSiG -roundabout/SM -rounded/P -roundel/S -roundelay/SM -Roundhead/MS -roundhouse/SM -roundish -roundworm/MS -Rourke/M -Rousay/M -rouse/SDG -rouser/M -Rousseau/M -roust/GDS -roustabout/MS -rout/RGDJ -route's -route/aDSA -routeing/A -routine/PQSYM -routing/M -routinism -routinist/S -Routledge/M -roué/MS -rove/RGDS -Roveri -row/DRMSG -Rowan/M -rowan/S -rowdy/PTSY -rowdyism/SM -Rowe/M -rowel/MGDS -Rowell/M -Rowena/M -rowing-boat/MS -Rowland/M -Rowley/M -rowlock/S -Rowntree/M -Roxanne/M -Roxie/M -Roy/M -royal/3SY -royalism -royalist -royalty/SM -Royce/M -RP -RPG/S -RPI -rpm -RPO -RRP -Rs. -RSA/M -RSC -RSI -RSM -RSPCA -RSS -RSV -RSVP -rt -rt. -Rt. -rte -RTF -RTFM -RTL -RU -Ru/M -Ruaridh -rub-a-dub -rub/SRGD -rubati -rubato/SM -rubber-stamp/DG -rubber/QZ -rubberneck/DRGSM -rubbery/T -rubbing/M -rubbish/SGDZM -rubble/M -rubbled -rubbler -rubby-dubby -rubdown/SM -Rube/M -rubedinous -rubefacient -rubella -rubelliform -Ruben/MS -rubescent -Rubicon/M -rubicund -rubidium/M -rubifacient -Rubik/M -Rubin/M -Rubinstein/M -rubout -rubric/MS -ruby/SM -ruche/SDG -ruck/M -rucksack/SM -ruckus -ruction/SM -Rudd/M -rudder/pMS -Ruddock/M -ruddy/PT -rude/TYP -rudiment/SM -rudimental -rudimentary -Rudman/M -Rudolf/M -Rudolph/M -Rudy/M -Rudyard/M -rue/Gj6SD -Rueda/M -ruefulness -ruff/SGDM -ruffian/SM -ruffle/DGS -ruffled/U -rufous -Rufus/M -rug/hSMDi -Rugby's -rugby/M -Ruggiero/M -Ruggles/M -Ruhr/M -Rui/M -ruin/dMNSn -ruination/M -ruinous/Y -Ruiz/M -rule's -rule/cSaGD -rulebook/S -ruled/U -rulemaking -ruler/SM -ruling/SM -rum/ZMS -Rumania's -Rumanian/M -rumba/DMSG -rumble/SGDJ -rumbowline -rumbustious -rumen/MS -Rumford/M -ruminant/SM -ruminate/DGvNSnV -rummage/GDS -rummager/M -rummer -rummy/TM -rumour/DGSM -rumourmonger/MS -rump/MYS -rumple/SGD -rumply/T -rumpus/SM -Rumsfeld/M -rumule -run-down/M -run-in/S -run-of-the-mill -run-off/MS -run-out/S -run-through -run-up/S -run/eGScA -runabout/MS -Runamia -runaround -runaway/S -Runcorn/M -Rundle/M -rundown -rune/MSW -rung/SM -runlet/MS -runnable -runnel/SM -runner-up -runner/SM -runners-up -runny/T -Runnymede/M -runt/MZS -runtime -runty/T -runway/SM -Runyon/M -rupee/MS -Rupert/M -rupiah/SM -Ruppelt/M -rupture/GMDS -rural/Y -rurality -ruse/SM -rush-hour -rush/RDZGS -Rushdie -Rushmore/M -rushy/T -rusk/MS -Ruskin/M -Russ -Russell/M -russet/MS -Russia/M -Russian/SM -Russo/M -rust/SWZG1D2M -Rustbelt/M -rustic/S -rusticate/SGD -rustication/M -rusticity/S -rustle/SGRD -rustproof/GD -rustre/MS -rusty/NPTn -rut/SGMZD -rutabaga/SM -Rutgers -Ruth/M -Ruthann/M -Ruthenian/S -ruthenium/M -Rutherford/M -rutherfordium/M -Ruthie/M -ruthless/PY -rutile -Rutland/M -Rutledge/M -Rutter/M -Ruttloff -rutty/T -Ruud/M -Rux/M -RV -Rwanda/M -Rwandan/S -Rwandese -Ryan/M -Ryanair/M -Ryder/M -rye/MS -Ryedale -ryegrass -Ryukyu/M -régime/MS -Régis/M -résumé/S -Réunion/M -rôle/MS -S-VHS -s/ko7 -SA -Sa -Saab/M -Saar/M -Saavedra/M -sabadilla -Sabbath/MS -sabbatical/S -Sabin/M -Sabina/M -Sabine/M -sable/MS -sabot -sabotage/SDG -saboteur/SM -sabra/S -sabre-toothed -sabre/SMD -sabretooth -Sabrina/M -sac-like -sac/DGS -saccharide/S -saccharin -saccharine -saccular -sacculated -sacculation -saccule/S -sacculus -sacerdotal -sachem/S -sachet/SM -Sachs/M -sack/M6JS -sackcloth/M -sacker -Sackett/M -sackful/S -sacking/M -sacra/L -sacral -sacramental -Sacramento/M -sacred/Y -sacredness -sacrifice/GDSoM -sacrificial -sacrilege/MS -sacrilegious/Y -sacristan/SM -sacristy/SM -Sacrobosco/M -sacroiliac/S -sacrosanct -sacrum/M -sad/T3PY -Sadat/M -Saddam/M -sadden/dS -saddle's -saddle/GUDS -saddleback/SD -saddlebag/MS -saddler/MS -saddlery/S -Sadducean -Sadducee/SM -Sadhasivam/M -Sadie/M -sadism/SM -sadist/1W -sadness/S -sadomasochism/SM -sadomasochist/WMS -Sadovsky/M -SAE -safari/SM -safe/YU -safeguard/GSDM -safekeeping -safeness -safer -safes -safest -safety/SM -safflower/SM -saffron/M -sag/GDSZ -saga/SM -sagacious/Y -sagaciousness -sagacity -Sagan/M -sage/KMS -sagebrush/MS -sagely -sageness -saggy/T -Saginaw/M -sagittal/Y -Sagittarius/M -sago/SM -saguaro/MS -sahara -Sahara/M -Saharan/M -sahib/SM -said/U -Saigon/M -sail/MDSJG -sailboard/SG -sailboarder/S -sailborder's -sailborders -sailcloth/M -sailfish/MS -sailing-boat/SM -sailing-master/SM -sailing-ship/SM -sailing-vessel -sailor/MSY -sailplane/S -Saint-Denis/M -Saint-Tropez/M -saint/YDSM -sainthood/SM -saintlike -saintliness -saintly/T -Sakai/M -sake/S -saker/M -Sakhalin/M -saki's -Sal/M -salaam/M -salacious/Y -salaciousness -salacity/M -salad/SM -salamander/SM -salami/MS -salary/DMS -salaryman -salarymen -Salas/M -Salazar/M -sale's/A -sale/BMm5S -saleability/M -saleable/U -Salem/M -Salerno/M -saleroom/MS -salesclerk -salesgirl/SM -saleslady/S -salesmanship -salespeople/M -salesperson/SM -Salford/M -salicylic -salience/ZM -salient/Y -Salina/MS -saline -Salinger/M -salinity/SM -Salisbury/M -saliva/My -salivate/NDSG -Salk/M -Salla/M -Salle/M -Sallie/M -sallow/T -sallowness -sally/DMSG -Sallyanne/M -salmon/MS -salmonella/M -salmonellae -Salo -Salome/M -Salomon/M -salon/MS -saloon/SM -salsa/MS -salsify/M -salt's -salt-and-pepper -salt-cat -salt-cellar/SM -salt-marsh/M -salt-mashes -salt-pan/MS -salt-spoon/MS -salt/CSDG -salted/U -salter/SM -saltimbocca -saltiness -saltings -saltish -saltless -Saltley -saltly -saltness -saltpetre -saltwater -saltwort -salty/T -salubrious/Y -salubriousness -salubrity/M -saluki/S -salutary -salutation/M -salutatory -salute/SnGND -saluter/M -Salvador/M -Salvadoran/S -Salvadorean/SM -Salvadorian/SM -salvage/GMDS -salvageable -salvager/M -Salvarsan -salvation/M -salvationism -salvationist -Salvationist/S -Salvatore/M -salve/RMSNnG -salvific -salvo/M -salvoes -Salzburg/M -Sam/ZM -Samael/M -Samantha/M -Samara/M -samara/S -Samaria/M -Samaritan/SM -samarium/M -Samarra/M -samba/SMGD -same -sameness -samizdat -Sammamish/M -Sammie/M -Sammy/M -Samoa/M -Samoan/S -samovar/MS -Samoyed/M -sampan/MS -sample/DRSGMJ -sampled/c -sampling/c -Sampras -Sampson/M -Samson/M -Samsonite/M -Samsung/M -Samuel/SM -Samuelson/M -samurai/M -San/M -Sana'a/M -Sananda -sanatorium/SM -Sanborn/M -Sanchez/M -sanctification/M -sanctifier/M -sanctify/nGDNS -sanctimonious/Y -sanctimoniousness -sanctimony/SM -sanction/GDSM -sanctioned/U -sanctity/SM -sanctuary/MS -sanctum/SM -sand/ZMDG2S -sandal/GMDS -sandalwood/M -sandbag/SMDG -sandbagger/S -sandbank/MS -sandbar/S -Sandberg/M -sandblast/GDSR -sandbox/MSGD -Sandburg/M -sandcastle/S -Sander's -sander/S -sanderling/S -Sanderson/M -sandfly/S -Sandhill/M -sandhill/S -Sandhurst/M -Sandi/M -Sandinista/S -sandman/M -sandmen/M -Sandoval/M -sandpaper/MdS -sandpiper/SM -sandpit/SM -Sandra/M -sandstone/SM -sandstorm/SM -Sandusky/M -Sandwell/M -sandwich/MSDG -sandy/T -sane/YT -sanely/I -saneness -Sanford/M -sang -sang-froid -Sanger/M -sangfroid -Sangiovese -sangria/MS -sanguinary -sanguine/Y -sanguineness -sanguineous/F -Sanhedrin/M -sanitary/UI -sanitation -sanitisation -sanitise/RGDS -sanitize/RGDSN -sanity/ISM -sank -Sankara/M -Sankhya/M -sans -sanserif -Sanskrit/MW -Sanskritise/M -Sanskritist/S -Sansovino/M -Santa/M -Santana/M -Santander/M -Santell/M -Santiago/M -Santo/SM -santolina/S -sap/DMRZG2pS -saphenous -sapience/M -sapiens -sapient -sapling/MS -sapodilla/S -sapphic/S -sapphire/MS -sapphism -sappily -Sapporo/M -sappy/T -saprogenic -saprophyte/MSW -sapwood/M -Sara/M -Saracen/SM -Sarah/M -Sarajevo/M -Saran/M -Sarasota/M -Saratoga/M -Saravanan/M -Sarawak/M -sarcasm/MS -sarcastic/Y -sarcoid/S -sarcoidosis -sarcoma/MS -sarcophagi -sarcophagus/M -sardine/MS -Sardinia/M -Sardinian/SM -sardonic/Y -Sargasso/M -sargassum -Sargent/M -Sargon/M -sari/MS -Sarmatia -Sarmatian -sarong/SM -Sarpedon -sarsaparilla/MS -sartorial/Y -sartorius -Sartre/M -Sarum/M -SAS -SASE -sash/MDS -Sasha/M -Saskatchewan/M -Saskatoon/M -sassafras -Sassoon/M -sassy/TYP -sat/d -SATA/M -Satan/SM31 -satanic/Y -satanise/SD -Satanism/M -Satanist -satanize/SD -satay -Satch/M -satchel/SM -sate/S -sateen/M -satellite/SM -satiable/I -satiate/GnDSN -satiation/M -satiety/MS -satin/SM -satinwood/SM -satiny -satire/WQ8wM1S3 -satisfaction/SEM -satisfactoriness -satisfactory/YU -satisfied/EU -satisfies/E -satisfy/BDkRSG -satisfying/UE -Sato -satori/M -Satoshi/M -satrap/MS -satrapy/S -Satsuma -satsuma/S -saturate/CnSGND -saturated/U -Saturday/SM -Saturn/M -saturnalia -Saturnalia's -saturnalian -Saturnian -saturnine/Y -Satya/M -satyr/SMW -satyriasis/M -Sauber/M -sauce/SGMZ2 -saucepan/SM -saucer/S -saucy/TY -Saudi/SM -sauerkraut/SM -Saughton -Saukville/M -Saul/M -sauna/MS -Saunders -Saunderson/M -Saundra/M -saunter/dS -saunterer -saurian/S -sauropod/SM -sausage/SM -Sauternes -sauté/SGD -savable -savage/DPSYGy -savagery/SM -Savannah's -savannah/M -savant/SM -save/SGRJD -saved/U -saveloy/M -Saville/M -Savimbi/M -saviour/SM -savoir -savour/ZD2SGM -savouries -savoury's -savoury/U -savoy/SM -Savoyard/M -savvy/DGST -saw-horse -saw-pit -saw/DGMS -sawbones/M -sawdust/M -sawfish/S -sawfly/MS -sawlike -sawlog/S -sawmill/SM -sawn -sawn-off -sawtooth -sawyer/MS -sax/SM -saxhorn/S -saxifrage/SM -Saxon/MS -Saxony/M -saxophone/MS3 -Saxton/M -say-so -say/RGJS -saying/M -Sayre/M -Sb/M -SBA -Sc/M -scab/2GMZSD -scabbard/MS -scabby/T -scabies/M -scablands -scabrous/Y -scabrousness -scad/M -SCADA/M -scaffold/JGSM -scaffolding/M -Scala/M -scalability -scalable -scalar/MS -scald/GSD -scalder -scale/pDAGSM -scaleable -scaled/U -scalene -scaler/SM -scaliness -scallion/MS -scallop/dSM -scalloper/M -scallywag/SM -scalp/RSMDG -scalpel/MS -scaly/T -scam/MDGS -scammer/S -scamp -scamper/Sd -scampi/M -scan/ADSG -scandal/SMQ8 -scandalmonger/MS -scandalous/Y -scandalousness -Scandinavia/M -Scandinavian/S -scandium/M -Scannell/M -scanner/SM -scans/NX -scansion/M -scant/2zZY -scantness -scanty/T -scape/M -scapegoat/SGDM -scapegrace/MS -scaphocephaly -scaphoid -scapula/M -scapulae -scapular/S -scar/dDSGM -scarab/SM -Scaramouch/M -Scarborough/M -scarce/YT -scarceness -scarcity/SM -scare/S2Z -scarecrow/MS -scaremonger/SM -scaremongering -scarer/M -scareware -scarf/DM -Scargill -scarification/M -scarifier -scarify/NGDS -scarlatina/M -Scarlatti/M -scarlet/M -Scarlett/M -scarp/DGSM -SCART -Scart -scarves -scary/TY -scat/DGS -scathe/GkD -scathed/U -scatology/wM -scatter/rSkJd -scatterbrain/MDS -scattergun -scattering/M -scattershot -scatty/TYP -scavenge/RDGS -SCCS -scenario/MS -scenarist/MS -scene/1MSWy -scenery/SM -scenographic -scenography -Scenopegia -scent/CMDGS -scented/U -scentless -sceptic/YMS -sceptical -scepticism/MS -sceptre/SD -sch. -Schaefer/M -Schaeffer/M -Schafer/M -Schaff/M -schedule/RDMGS -scheduled/UA -schedules/A -scheduling/A -Scheherazade/M -schema/S1M -schemata -schematic/S -schematisation -schematise/SGD -schematize/SGDN -scheme/SDRWGM -Schenectady/M -Schenk/M -scherzi -scherzo/SM -Schick/M -Schild/M -Schiller/M -schilling/SM -Schinas/M -schism/MS -schismatic -schist/SM -schizo-affective -schizo/S -schizocarp -schizoid/S -schizophrenia/M -schizophrenic/SY -Schlemiel/M -schlep/GDS -Schlitz/M -Schloss/M -Schmidt/M -Schmitt/M -schmooze -schnapps -schnauzer/MS -Schneider/M -Schneier/M -schnitzel/SM -Schnorr/M -Schoenberg/M -Schofield/M -Schoharie -scholar/SYM -scholarliness -scholarship/MS -scholastic/SY -scholasticism -school-age -school-day/S -school-inspector -school-leaver/MS -school-leaving -school-time -school/GMDJS -schoolbook/MS -schoolboy/SM -schoolchild/M -schoolchildren -schooldays -schooled/U -schoolfellow/S -schoolfriend/S -schoolgirl/SM -schoolgirlish -schoolhouse/SM -schooling/M -schoolkid/S -schoolmarm -schoolmaster/SMYd -schoolmate/S -schoolmistress/SM -schoolroom/MS -schools/K -schoolteacher/SM -schoolteaching -schoolwork -schooner/SM -Schopenhauer/M -Schottky/M -Schratt -schrod -Schroeder/M -Schroedinger/M -Schrödinger/M -Schubert/M -Schulman/M -Schultz/M -Schulz/M -Schumacher/M -Schumann/M -schuss/M -Schuster/M -Schutte/M -Schuyler/M -Schuylkill/M -schwa/MS -Schwab/M -Schwartz/M -Schwartzkopf/M -Schwarzenegger/M -Schweitzer/M -Schweppes/M -sci-fi -sciatic -sciatica/M -science's/FK -science/M3SW -sciences/FK -scientific/UY -scientism -scientistic -Scientologist/S -Scientology/M -scilla/S -Scilly/M -scimitar/SM -scintigram/S -scintilla/nM -scintillate/SDG -scintillatingly -scintillation/M -scion/SM -Scipio/M -scission/S -scissor/S -scissoring -sclerite/S -scleroderma -scleroses -sclerosis/M -sclerotherapy -sclerotic -sclerotisation -sclerotised -sclerotization -sclerotized -scoff/RGDS -scold/DRJSG -scoliosis -scombroid/S -sconce/MS -scone/SM -Scooby/M -scoop/MGS6RD -scoopful/S -scoot/RSDG -scope/SMGD -scopolamine -scorbutic -scorch/RSkGD -score's -score/eDfGS -scoreboard/MS -scorecard/SM -scorekeeper/SM -scorekeeping -scoreless -scoreline/S -scorer/SM -Scoresby/M -scorn/jDRMG6S -scornfulness -Scorpio/MS -scorpion/MS -scorpionfish/S -scorzonera -scot -scot-free -Scot/M5Sm -scotch/SMDG -Scotia/M -Scotland/M -scotopic -scotoscope -Scott/M -Scottie/SM -Scottish -Scottsdale/M -Scotty/M -scoundrel/YSM -scour/SDRG -scourge/SDMG -scourger/M -scout/MGDS -scouter/M -scouting/M -scoutmaster/SM -scowl/GSD -SCOWL/M -scowler/M -Scrabble's -scrabble/SGD -scrag-end -scrag/GMZSD -scraggly/T -scraggy/T -scram/GDS -scramble/UGCSD -scrambler/UMC -scramblers/C -scramjet/S -Scranton/M -scrap/rDRGdZS -scrapbook/MS -scrape/SJ -scrapheap/SM -scrapie -scrappy/T -scrapyard/SM -scratch/D2zJZRSG -scratched/U -scratchy/T -scrawl/SDGY -scrawly/T -scrawniness -scrawny/T -scream/kRGSD -scree/M -screech/SZDMG -screecher/M -screechy/T -screed/SM -screen/GJSMDB6 -screened/U -screener/S -screenfuls -screening/M -screenname/S -screenplay/MS -screenshot/S -screenwriter/SM -screw/MZS2GD -screwball/SR -screwdriver/MS -screwed/U -screwer/M -screws/U -screwy/T -Scriabin/M -scribble/RSGDJ -scribe's -scribe/IDSGCK -scriber/IMKC -Scribner/M -scrim/SM -scrimmage/MGSD -scrimmager/M -scrimp/GSD -scrimshaw/GSMD -scrip/M -Scripps/M -script/SKMFA -scriptable -scripted/FU -scripting/F -scriptoria -scriptorium/S -scriptural -scripture/oSM -scriptwriter/MS -scriptwriting/M -scrivener/MS -scrofula/M -scrofulous -scroll/G7MSD -scrollback -scrollbar/SM -scroller/S -scrollwork -Scrooge/SM -scrota -scrotal -scrotum/M -scrounge/SDGR -scrub/RGDZS -scrubbier -scrubfowl -scrubland/S -scruff/2ZSMz -scruffy/T -Scruggs/M -scrum-half -scrum/MS -scrummage/DMGS -scrumptious/Y -scrumpy -scrunch/GSD -scrunchie/S -scrunchy/T -scruple/DMSG -scrupulosity/SM -scrupulous/YU -scrupulousness/M -scrutineer/S -scrutinised/U -scrutiny/SsQ98Mq- -Scrutton/M -SCSI -scuba/SM -scud/SDG -Scudamore/M -Scudder/M -scuff/DGS -scuffle/DGS -scull/DRMSG -sculler/Z -scullery/SM -Sculley/M -scullion/SM -sculpt/DSG -sculptor/SM -sculptress/MS -sculptural -sculpture/GDoSM -sculpturesque -scum/ZDMG -scumbag/S -scummy/T -Scunthorpe/M -scupper/MS -scuppered -scurf/ZM -scurfy/T -scurrility/MS -scurrilous/YP -scurry/DGSJ -scurvy/SY -scuta -scutch/SGDR -scute/S -scutella -scutellar -scutellum -scuttle/MGDS -scuttlebutt/MS -Scutum -scutum -scuzzy/TP -Scylla/M -scyphistoma/S -scyphistomae -scyphistomal -Scyphozoa -scyphozoan -scythe/GSMD -Scythia -Scythian/S -SD -SDI -SDK/SM -SDRAM -Se -Sea -sea's -sea-chest -sea-girt -sea-green -sea/cS -seabed -seabird/S -seaboard/M -seaborne -Seabrook/M -seafarer/SM -seafaring/S -seafood/M -seafront/SM -Seagate/M -Seager/M -seagoing -Seagram/M -seagrass/S -seagull/S -seahawk/S -seahorse/S -seal's -seal/DUAGS -sealant/SM -sealer/MS -sealless -sealskin -seam/MDGSZp -seaman/YM -seamanship/M -seamen/M -seamer/MS -seamfree -seamier -seamless/Y -seamlessness -SeaMonkey/M -seamount/S -seamstress/MS -Seamus/M -Sean/M -seance/S -seaplane/SM -seaport/MS -seaquake/M -sear/GSDk -search/BRDJkSG -searchable/U -searched/A -searcher/AMS -searches/A -searchlight/SM -Sears's -seascape/SM -seashell/SM -seashore/SM -seasick/P -seaside/M -season/dlS7Mo -seasonable/U -seasonableness/U -seasonably/U -seasonal/UY -seasonality -seasoned/U -seasoning/M -seat's -seat/UGDSA -seatbelt/S -seater/M -SEATO -Seattle/M -seawall/S -seaward/S -seawater/S -seaway/MS -seaweed/SM -seaworthiness -seaworthy/U -Seb/M -sebaceous -Sebastian/M -seborrhoea/W -sec. -sec/S -SECAM -secant/MS -secateurs -secede/SGD -seceder -secession/M3S -secessionist -seclude/GNXSVD -seclusion/M -second-best -second-class -second-degree -second-hand -second-rate -second/RGLSYD -secondariness -secondary/Y -secondee/S -secrecy/SM -secret/dVSYvu -secretarial -secretariat/SM -secretary/MS -secretaryship/SM -secrete/SNn -secretion/M -secretor/S -secretory -sect's/I -sect/ISE -sectarian/S -sectarianism/MS -sectary/SM -section's/E -section/GMDSo -sectional/Q8S -sectionalism/SM -sectioned/A -sections/EA -sector/EMS -sectoral -sectored -sectorial -secular/Q3-8qY -secularism/MS -secularist -secularity/M -SecurDisc -secure/PLBSYDG -secured/U -securely/I -securer -security/SMI -sedan/SM -sedate/YVGnSND -sedateness -sedation/M -sedative/S -sedentary -Seder/MS -sedge/SMZ -Sedgefield/M -Sedgemoor/M -Sedgwick/M -sedgy/T -sediment/SnNM -sedimentary -sedimentation/M -sedition/SM -seditious/Y -seditiousness -seduce/RDNVvuGSn -seduction/M -seductive/P -seductress/MS -sedulous/Y -sedum/S -see-saw/DSMG -see-through -see/S98dG -seed-bed/SM -seed-cord -seed-potato -seed-vessel -seed/MD2GSRZp -seedbed/MS -seedeater/SM -seeded/UA -seedling/SM -seeds/A -seedy/TP -Seeger/M -seeing/Uc -seek/GRS -Seeley/M -seem/YSkGD -seemliness/U -seemly/TP -seen/Uc -seep/GSD -seepage/SM -seer/cSM -seersucker/SM -sees/c -seethe/SDG -segment/GonNMSD -segmental -segmentation/M -segmented/U -Segovia/M -segregable -segregate/CNDSGn -segregated/U -segregation's/C -segregation/3M -segregationist -segregative -segue/DSG -Segundo/M -Seidel/M -seigeury/S -seigneur/MS -seigneurial -seignior/SZM -seigniorage -seigniorial -seigniory/S -Seiko/M -seine/MG -Seinfeld/M -seisin -seismal -seismic/Y -seismical -seismogram -seismograph/RSMWZ -seismography/M -seismology/M3w1 -seismometer/S -seizable -seizure/SM -Selassie/M -Selby/M -seldom -select/KSGCDA -selectable -selection/SoM -selectional -selective/Y -selectiveness -selectivity/M -selector/MS -Selena/M -selenate/S -Selene/M -selenide/S -selenite/M -selenium/M -selenographer/MS -selenography/M -selenology/3 -Seleucid/M -self-abasement -self-absorbed -self-absorption -self-abuse -self-addressed -self-adhesive -self-analysis -self-appointed -self-approval -self-assembly -self-assertion -self-assertive -self-assurance -self-assured -self-aware -self-awareness -self-catering -self-censorship -self-centred -self-cleaning -self-closing -self-command -self-confessed -self-confidence -self-confident/Y -self-congratulation -self-congratulatory -self-conscious/YP -self-consistency -self-consistent -self-contained -self-contradiction -self-contradictory -self-control -self-correcting -self-critical -self-criticism -self-deceit -self-deception -self-defeating -self-defence -self-delusion -self-denial -self-denying -self-deprecating -self-destruct/DVGS -self-destruction -self-determination -self-determined -self-discipline -self-doubt -self-effacing -self-employed -self-esteem -self-evidence -self-evident/Y -self-examination -self-explanatory -self-expression -self-feeding -self-financing -self-fulfilling -self-fulfilment -self-glorification -self-governing -self-government -self-hate -self-hatred -self-help -self-image -self-immolation -self-importance -self-important -self-imposed -self-improvement -self-induced -self-indulgence -self-indulgent -self-inflicted -self-interest/D -self-involved -self-justification -self-justifying -self-knowledge -self-loading -self-locking -self-love -self-made -self-motivated -self-opinionated -self-parody -self-perpetuating -self-pity -self-pollination -self-portrait/S -self-possessed -self-possession -self-preservation -self-proclaimed -self-propagating -self-propelled -self-protection -self-raising -self-recording -self-referential -self-regard -self-regulating -self-regulation -self-regulatory -self-reliance -self-reliant -self-respect/G -self-restrained -self-restraint -self-revelation -self-righteous/Y -self-righteousness -self-sacrifice/G -self-satisfaction -self-satisfied -self-seeker/S -self-seeking -self-selecting -self-service -self-serving -self-styled -self-sufficiency -self-sufficient -self-support/G -self-surrender -self-sustained -self-sustaining -self-tapping -self-taught -self-torture -self-willed -self-winding -self-worth -self/pGD -selfhood -selfie/S -selfish/UY -selfishness/U -selfism -selfist/S -selfless/Y -selflessness -selfmate -selfness -Selfridge/M -selfsame -selfsameness -selfy -Seljuk/M -Selkirk/M -sell-by -sell-off -sell-out -sell/ASceGf -Sellafield -seller/AMS -Selma/M -seltzer/S -selvage/SM -selvedge/MS -selves -Selwyn/M -semantic/3SY -semanticist -semaphore/DSMG -semblance/AMES -semeiology/3 -semeiotic/S -semeiotician -semelparous -semen/M -semester/SM -semi-annual/Y -semi-automatic -semi-classical -semi-conscious -semi-conservative -semi-detached -semi-documentary/S -semi-double -semi-duplex -semi-final/S -semi-finalist/S -semi-flexible -semi-fluid -semi-independent -semi-infinite -semi-invalid -semi-lethal -semi-liquid/S -semi-literacy -semi-literate -semi-modal -semi-monthly -semi-official/Y -semi-opera/S -semi-permanent/Y -semi-permeable -semi-precious -semi-professional/SY -semi-retired -semi-retirement -semi-rigid -semi-skilled -semi-skimmed -semi-solid -semi-tone/MS -semi-trailer -semi-weekly -semi-yearly -semi/MS -semiaquatic -semiarid -semibold -semibreve/S -semicircle/SM -semicircular -semicolon/MS -semiconducting -semiconductor/SM -semideaf -semidemisemiquaver -semierect -semifeudal -semifinal/3MS -semifinalist -semiformal -semilethal -semilunar -semimajor -semimetal/SW -seminal/Y -seminar/MS -seminarian/MS -seminary/SM -seminatural -seminiferous -Seminole/SM -semiochemical/S -semiological -semiology/3 -semiosis -semiotic/S -semiotician -semioval -semipermeable -semiprecious -semiprime/S -semiprivate -semiquaver/S -semiquinone/S -semiraw -semirural -semisweet -Semite/WSM -Semitic/SM -Semitism/M -semitone/MS -semitransparent -semitropical -semivocal -semivowel -semiweak -semiweekly -semolina/M -sempiternal/Y -sempiternity -semplice -sempre -sempstress/MS -Semtex -Sen. -senary -senate/SM -senator/MS -senatorial -send-off/S -send/ASG -Sendai/M -sender/SM -Seneca/M -Senegal/M -Senegalese -senescence/M -senescent -senile -senility/SM -senior/SM -seniority/SM -senna/M -Sennacherib/M -Sennett/M -sennit -sensate/x -sensation/M -sensational/Q83 -sensationalism/MS -sensationalist/W -sense/DGnSpMb -sensei/S -senseless/Y -senselessness -sensibility/IMS -sensible/IY -sensibleness -sensibly/I -sensilla -sensillum -sensitise/GRnDS -sensitised/C -sensitises/C -sensitising/C -sensitive/IY -sensitiveness -sensitivity/IMS -sensitize/GRNnDS -sensitized/C -sensitizes/C -sensitizing/C -sensor/SM -sensorimotor -sensorineural -sensory/Y -sensual/FY -sensualist/MS -sensuality/MS -sensuous/Y -sensuousness -sent/FEKUA -sentence/MGDS -sentential -sententious/Y -sentience/IM -sentient/I -sentiently -sentiment/SKM -sentimental/Q3-8qYs9 -sentimentalism/MS -sentimentalist -sentimentality/SM -sentinel/DGSM -sentry/SM -SEO -Seoul/M -Sep -sepal/SM -separability/I -separable/IY -separableness -separably/I -separate/B3nSGDVYN -separateness -separation/M -separatism/MS -separator/MS -Sephardic -sepia/SM -Sepoy's -sepoy/S -Seppo/M -sepses -sepsis -sept/NWM -septa/M -septal -septaria -septarian -septarium -septate -September/SM -septenary -septennial/Y -septet/SM -septicaemia -septicaemic -septically -septicity -septics -septillion/HS -septuagenarian/SM -Septuagint/MS -septum/M -sepulchral -sepulchre/SoM -sepulture -seq. -seqq. -sequacious/Y -sequacity -sequel/MS -sequela -sequelae -sequence's/F -sequence/RSMGD -sequenced/A -sequences/FA -sequencing/A -sequent/F -sequential/FY -sequentiality/F -sequester/dSnN -sequestrate/BSDG -sequestration/M -sequestrator -sequin/MSD -sequitur/S -sequoia/SM -Sequoya/M -sera's -Serafin/M -seraglio/SM -serape/S -seraph/W1SM -seraphim/M -Serb/MS -Serbia/M -Serbian/S -Serbo-Croat -Serbo-Croatian -sere -Serena/M -serenade/DMGS -serenader/M -serendipitous/Y -serendipity/MS -serene/TY -Serengeti/M -Serenity/M -serenity/S -serf/SM -serfdom/SM -serge/M -sergeant/MS -serger/S -Sergio/M -Seri/M -serial/qQ-8SY -serialism -serialist/S -sericite -series/M -serif/SDM -serigraph/MS -serine -serious/Y -seriousness -Serlio/M -sermon/Q8SM -serogroup -serology/w1M -seronegative -seronegativity -seropositive -seropositivity -seroprevalence -serotonergic -serotonin -serotype/S -serotypic -serous -Serpens -serpent/SM -serpentine -serpiginous -Serrano/M -serrate/NnD -serration/M -serratus -serried -serum/MS -servant/SM -serve/AGCSKDF -server/CKSM -servery/S -service/mB5DMSG -serviceability/M -serviceable/U -serviceableness -serviceably -serviced/U -services/E -serviette/SM -servile/Y -servility/MS -serving's -serving/CS -servitor/SM -servitude/SM -servo/S -servomechanism/MS -servomotor/MS -sesame/SM -Sesotho -sesquicentennial/S -sessile -session/MS -sestina/S -set-aside -set-up/S -set/eMS -seta -setaceous -setae -setal -setback/S -Seth/M -SETI -setiferous -setigerous -Seton/M -sets/AI -Setswana -sett/7RJMDSG -settable/A -settee/MS -setting/K -settle/RLGSD -settled/UA -settles/UA -settling/UA -setup -Seuss/M -Sevastopol/M -seven/HMS -Sevenoaks -seventeen/H -seventhly -seventy-eight/H -seventy-first/S -seventy-five/H -seventy-four/H -seventy-nine/H -seventy-one -seventy-onefold -seventy-second/S -seventy-seven/H -seventy-six/H -seventy-three/H -seventy-two -seventy-twofold -seventy/HS -sever/dES -severable -several -severalty/M -severance/MS -severe/oTY -severity/SM -Severn/M -Seville/M -sew/SAGD -sewage/M -Seward/M -sewer/SM -sewerage/SM -sewn -sex-linked -sex-starved -sex/RSzG3p2ZD -sexagenarian/SM -sexagesimal/SY -sexathon/S -sexcentenary/S -sexed/fc -sexennia -sexennial -sexennium/S -sexercise -sexfoil -sexism/SM -sexologic -sexological -sexology/3M -sexpartite -sexpot/SM -sext/GR -sextant/SM -sextet/SM -sextillion/M -sextodecimo/S -sexton/MS -sextuple/DG -sextuplet/SM -sexual/Y -sexualise/ND -sexuality/MS -sexualize/ND -sexuate/D -sexuparous -sexvirate -sexy/T3 -Seychelles/M -Seychellois -Seyfarth/M -Seyfert/M -Seymour/M -señor/M -Señora/M -señora/SM -señores -señorita/SM -sf -sforzandi -sforzando/S -Sgt. -sh -SHA -shabbiness -shabby/TY -shack/MGDS -shackle's -shackle/USDG -shackler/M -Shackleton/M -shade/MDpJSZG2 -shaded/U -shading/M -shadow-boxing -shadow/DGp2ZMS -shadowed/c -shadower/M -shadowgraph/S -shadowing/c -shadowland/S -shadows/c -shady/YT -Shafer/M -Shaffer/M -Shafran/M -shaft/DGSM -Shaftesbury/M -shag/ZDSG2M -shaggy/T -shah/MS -shake-out -shake-up -shake/2Z7SRG -shakeable/YU -shakeably/U -shaken/U -Shakespeare/M -Shakespearean/S -Shakespearian -shaking/M -shakuhachi/S -shaky/YT -shale/M -shaley -shall -shallot/SM -shallow/YSDT -shallowness -shalom -Shalom's -Shalott/M -shaly/T -sham/SGMdD -shaman/MS -shamanic -shamanise/D -shamanism -shamanist/S -shamanistic -shamanize/D -shamble/DSG -shambolic/Y -shame/6MjpS -shamefaced/Y -shamefulness -shameless/Y -shamelessness -Shamir/M -shammer -shammy's -shampoo/GMDS -shamrock/SM -Shamus/M -shan't -Shanahan/M -Shandong -shandy/MS -Shane/M -Shanghai's -shanghai/DSMG -shank/SDM -Shannon/M -Shantanu/M -shantung/M -shanty/MS -Shaolin -shape's -shape/ADaSG -shapeless/PY -shapeliness -shapely/T -shaper/MS -shapewear -Shapinsay/M -Shapiro/M -Sharam/M -Sharath/M -shard/MS -share-out -share/7SRGDM -shared/U -shareholder/MS -shareholding/S -shareware -Shari/M -Sharif -shark/SM -sharkskin/M -Sharma/M -Sharman/M -Sharon/M -sharp/YTS -Sharpe/M -sharpen/AdS -sharpened/U -sharpener/S -sharpish -sharpness -sharpshooter/MS -sharpshooting -Shasta/M -shat -Shatner/M -shatter-proof -shatter/kSd -Shaun/M -Shauna/M -shave/DGSRJ -shaven/U -Shavian -Shaw/M -Shawano/M -shawl/MDS -shawm/SM -Shawn/M -Shawnee/MS -Shay/M -shchi -she'd -she'll -she-ass -she-cat -she-devil -she-dog -she-dragon -she-friend -she-goat -she-god -she-male/S -she/DM -Shea/M -sheaf/M -Sheahan/M -shear/RDGS -shearwater/S -sheath/MGDJS -sheathe/UDG -sheathing/M -sheave/DSG -Sheba/M -shebang -shebeen/S -Sheboygan/M -shed/SGM -Shedd/M -shedload/S -Sheehan/M -sheen/ZSM -sheeny/T -sheep-dip -sheep/M -sheepdog/SM -sheepfold/M -sheepish/PY -sheeplike -sheepshank/SM -sheepshead -sheepskin/MS -sheepwalk/MS -sheer/GYTDS -sheerness -sheet/DSMG -sheeting/M -sheetlike -Sheffield/RM -sheik/SM -sheikdom/SM -sheikh/SM -Sheila/M -Sheilah/M -shekel/MS -Shelagh/M -Shelby/M -Sheldon/M -Sheldonian -Sheldrick/M -shelf-life -shelf-mark -shelf-room -shelf/6M -shelfful/S -shelflike -Shelford/M -Shelia/M -shell/SDGM -shellac/DSG -shelled/U -Shelley/M -shellfire/M -shellfish/M -Shellie/M -Shelly/M -Sheltand/M -shelter/drSM -sheltered/U -Shelton/M -shelve/DSG -shelver/M -shelving/M -Shem/M -Shenandoah/M -shenanigan/SM -Shepard/M -shepherd/GMSD -shepherdess/SM -Sheppard/M -Shepperton/M -Shepstone/M -Sheran/M -Sheraton/M -sherbet/SM -sherd's -sherds -Sheree/M -Sheri/M -Sheridan/M -sheriff/SM -Sherlock/M -Sherman/M -Shermer/M -Sherpa/SM -Sherri/M -Sherrie/M -sherry/MS -Sherwin/M -Sherwood/M -Sheryl/M -Shetland/S -Shevardnadze/M -shewbread -shewn -shh -Shi'ite -shiatsu -shibboleth/MS -shield/SDMG -shielded/U -shieldless -shift/RzZ2SDGp -shiftless/Y -shiftlessness/S -shifty/TP -Shiite/SM -Shikoku/M -shillelagh/MS -shilling/SM -Shillong -shilly-shally/SGDR -shilly-shallyer -Shiloh/M -shim/DZGMS -shimmer/dSZ -shimmy/MDSG -shin-bone/SM -shin-guard -shin-pad/SM -shin/rSdDGkM -shindig/SM -shine/SeG -shingle/DMSG -shininess -Shinto/SM -Shintoism/S -Shintoist/MS -shiny/T -ship's -ship-breaker/MS -ship-broker/SM -ship-fever -ship-rigged -ship/D4ALGS -shipboard/M -shipborne -shipbroker -shipbuilder/MS -shipbuilding -Shipley/M -shipload/SM -shipmate/MS -shipmen/M -shipowner/MS -shippable -shipper/SM -shipping/M -shipshape -shipwreck/GMDS -shipwright/SM -shipyard/MS -Shiraz/M -shire/SM -shirk/GSRD -Shirley/M -shirr/GDS -shirt-front/S -shirt-tail/S -shirt/DpSMG -shirting/M -shirtsleeve/MSD -shit-faced/! -shit/pDZGS! -shitbag/! -shitehawk/S! -shitface/! -shithead/! -shithole/! -shithouse/! -shitload/S! -shitstorm/! -shitter/S! -shitty/T! -shitwork/! -shiur -shiurim -shiva -Shiva/M -shivah -Shivaism -Shivaite -Shivaji -shiver/dkZS -shiverer/MS -Shleifer/M -shoal/SMGD -shock/GRSDk -Shockley/M -shockproof -shod/zZ2 -shoddy/TP -shoe's/c -shoe/pGSM -shoebill/S -shoebox/S -shoehorn/SDGM -shoelace/MS -shoemaker/SM -shoemaking -shoes/c -shoestring/SM -shoetree/SM -shogun/SM -shogunate/SM -Shoji/M -Shona/S -shone/e -shoo/SDG -shook -shoot-out/SM -shoot/fGSc -shootable -shooter/SM -shooting-box/SM -shooting-brake -shooting-break -shooting-coat/S -shooting-jacket/SM -shooting-range -shooting-stick/SM -shooting/S -shop-boy/MS -shop-floor -shop-girl/SM -shop-soiled -shop-window/SM -shop-worn -shop/GRDSM -shopaholic/S -shopfitter/S -shopfitting -shopfront/S -shophouse/S -shopkeeper/SM -shopkeeping -shoplift/DRSG -shoplifting/M -shopman -shopmen -shopping/M -shopworker/S -shore/GDMS -shorebird/S -Shoreham -shorelark/S -shoreline/SM -shoreside -shoreward -shoreweed -Shorewood/M -shorn/U -short-change/GSD -short-circuit -short-circuiting -short-handed -short-list/DG -short-lived -short-range -short-sighted/Y -short-sightedness -short-staffed -short-tempered -short-term -short-termism -short-winded -short/YZSTDGP -shortage/MS -shortbread/SM -shortcake/MS -shortcoming/SM -shortcrust -shortcut/S -shorten/dJS -shortening/M -shortfall/MS -shorthair/S -shorthand/M -shorthold -shorthorn/MS -shortish -shortlist/SD -shortlistee/S -shortstop/MS -shorty/M -Shoshone/SM -Shostakovich/M -Shostakovitch/M -shot-put -shot/MS -Shotaro/M -shotgun/MS -shotted -should've -should/R -shoulder-high -shoulder-length -shoulder/d -shouldn't -shouldn't've -shout's -shout/eDGS -shouter/SM -shove/DSG -shovel/MDR6GS -shovelboard -shovelful/SM -shovelhead -shovelware -show-off/S -show-piece/MS -show-place/MS -show/MGJmR2zSDZ -showband/S -showbiz/Z -showcase/GDSM -showdown/SM -shower-bath/S -shower/Zd -showerproof/DG -showgirl/MS -showing/M -showjump/SGDR -showmanship/M -shown -showroom/SM -showstopper/S -showstopping -showy/TP -shrank/K -shrapnel/M -shred/DRSMG -Shreveport/M -shrew/MS -shrewd/TYP -shrewish/YP -Shrewsbury/M -Shreya/M -shriek/DRSMG -shrift/MS -shrike/SM -shrill/GSTPDY -shrimp/SMG -shrimper/S -shrine/MS -shrink-wrap/SGD -shrink/KSG -shrinkable -shrinkage/SM -shrinker/M -shrinking/Y -shrive/GS -shrivel/GSD -shriven -Shropshire/M -shroud/DMSG -Shrove -Shrovetide/M -shrub/ZMS -shrubbery/MS -shrubby/T -shrubland/S -shrug/SDG -shrunk/K -shrunken -shtick/S -shudder/dSZ -shuffle-board -shuffle/ASGD -shuffler/SM -shun/DGS -shunt/DSG -shunter/SM -shuriken/S -shush/DSG -shut-down/SM -shut-eye -shut-off/M -shut-out -shut/RGS -shutdown/S -shutter/dp -shuttle/MGSD -shuttlecock/MS -shy/DTSG -shyer -shyest -Shylock/MS -shyly -shyness/M -shyster/S -Si/M -Siam/M -Siamese/M -Sib/M -Sibelius/M -Siberia/M -Siberian/S -sibia/S -sibilance/MZ -sibilancy/M -sibilant/YS -Sibley/M -sibling/MS -Sibyl/M -Sibylline -sic/TDG -siccative -Sicilian/S -Siciliana/M -Sicily/M -sick-benefit/SM -sick-leave -sick-list -sick-pay -sick/PY -sickbay/M -sickbed/S -sicken/dkS -sickie/MS -sickish -sickle-bill -sickle-cell -sickle-feather -sickle/2SGM -sickly/T -sickness/S -sickroom/MS -Sid/M -siddha/S -side's/f -side-arms -side-band/SM -side-bet -side-by-side -side-car/MS -side-chapel -side-door -side-drum/SM -side-on -side-saddle -side-slip -side-splitting -side-street/SM -side-table/S -side-trip -side/ISAKef -sidebar/MS -sideboard/SM -sideburn/S -sidecar/S -sided/Y -sidedness -sidekick/MS -sidelight/MS -sideline/DMS -sidelong -sidereal -sideshow/SM -sidesman -sidesmen -sidestep/GDS -sidestroke/SDMG -sideswipe/DMGS -sidetrack/SGD -sidewall -sideward/S -sideways -sidewinder/SM -sidewise -siding/SM -Sidious/M -sidle/DSG -Sidney/M -SIDS -siege/SM -Siegel/M -Siegfried/M -Siemens/M -Siena/M -sienna/M -Sierra/M -sierra/SM -siesta/SM -sieve/SGDM -sifaka/S -Siffredi/M -sift/ASGD -sifter/SM -sifting/S -SIGGRAPH/M -sigh/DSG -sight-line -sight-read/RG -sight/cMSI -sighted/U -sightedly -sightedness -sighter/M -sighting/S -sightless/Y -sightlessness -sightliness/U -sightly/TP -sightsee/GR -sightworthy -sigil/S -sigma/M -sigmoid -Sigmund/M -sign's/C -sign-off/S -sign-up -sign/FRSCAGD -signage -signal-to-noise -signal/-MqRQ8GDmSY -signatory/SM -signature/MS -signboard/MS -signed/fU -signet-ring/SM -signet/MS -signifiant -significance/ISM -significant/IY -signification/M -signifieds -signifier -signifiers -signifié -signify/nNDSG -signing/S -signor/MF -signora/M -signori -signoria -signorial -signorina/SM -Signorini/M -signpost/DGMS -signwriter/S -signwriting -Sigrid/M -Sihanouk/M -Sikh/SM -Sikhism/SM -Sikkema -Sikking/M -silage/SM -silane/S -Silas/M -Silbury -silence/SRMGD -silent/Y -Silesia/M -silhouette/GDSM -silica/M -silicate/MS -siliceous -siliciclastic -silicide/S -silicify/SGDN -silicon/M -silicone/SM -silicoses -silicosis/M -silk-screen/SM -silk/SzZ2M -silken -silkscreen -silkworm/SM -silky/TP -sill/2YSM -sillage -silly/TPS -silo/SM -siloxane/S -silt/NMDGSZ -siltation/M -siltstone/M -silty/T -Silurian -Silva/M -silver/dMZS2 -silverfish/SM -Silverlight -Silverman/M -silversmith/SMG -Silverstein/M -Silverstone -Silverton/M -silverware/MS -silverweed -silvery/T -Silvester/M -Silvia/M -silviculture/3O -SIM/S -simazine -SIMD -Simeon/M -simethicone -simian/S -similar/EY -similarity/ESM -simile/MS -similitude/ME -Simla -simmer/Sd -Simmons/M -Simms/M -simon -simon-pure -Simon/M -Simone/M -simoniacal -simony/MS -simoom -simpatico -simper/dS -simple-minded/YP -simple/TY -simpleness -simpleton/SM -simplex/S -simplicity/MS -simplified/U -simplifier/SM -simplify/ncGDNS -simplistic/Y -Simpson/M -Simpsons/M -Simson/M -SIMULA/M -simulacrum/M -simulate/EnNSGD -simulation/EM -simulative -simulator/MES -simulcast/S -simultaneity/MS -simultaneous/Y -simultaneousness -sin's/A -sin/pRSj6GDM -Sinai/M -Sinatra/M -Sinbad/M -since -sincere/TY -sincerely/I -sincereness -sincerity/MSI -Sinclair/M -Sindbad/M -Sindhi/M -sine/MS -sinecure/MS -sinecurist/M -sinew/MZS -sinfonia/M -sinful/P -sinfulness/S -sing-along -sing-song -sing/RS7GDk -Singapore/M -Singaporean/S -singe/S -singeing -singer-songwriter -single-decker/S -single-handed/Y -single-line -single-minded -single-seater -single/PGDS -singlet/SM -singleton/MS -singsong/DMS -singular/qS-Y -singularity/MS -sinister/Y -sinisterness -sinistral/Y -sink/RG7S -sinkable/U -sinkhole/SM -sinless/Y -sinlessness -sinnet -Sino-Japanese -sins/A -sinter/Md -sinuosity -sinuous/YP -sinus/SM -sinusitis/M -sinusoid/oMS -sinusoidal -Siobhan/M -Siouan -Sioux/M -sip/RSDG -siphon/dMS -siphonophore/S -Sipuncula -sipunculan/S -sipunculid/S -Sipunculus -sir/dMS -sire's -sire/CDGS -siren/SM -Sirius/M -sirloin/SM -sirocco/MS -Sirtis/M -sis/Z -sisal/SM -siskin -Sisko/M -sissified -sissy/MS -sister-in-law -sister/MAS -sisterhood/SM -sisterly/P -sisters-in-law -Sistine -Sisyphean -Sisyphus/M -sit-in/S -sit/RGSJ -sitar/M3S -sitarist -sitcom/SM -site/DSM -sitemap/S -Sith/M -Sitka/M -sits/A -sitting/M -situate/SGnDN -situation/M -situational -situationally -situationist -Siva/M -Sivaism -Sivaite -Sivaji -Sivonen -six-fold -six-pack/S -six-shooter/S -six/HSM -sixer -sixpence/SM -sixpenny -sixteen/HM -sixth-former/S -sixth/Y -sixty-eight/H -sixty-first/S -sixty-five/H -sixty-four/H -sixty-nine/H -sixty-one -sixty-onefold -sixty-second/S -sixty-seven/H -sixty-six/H -sixty-three/H -sixty-two -sixty-twofold -sixty/HMS -size/AD7GS -sized/fc -sizzle/DSG -sizzler/M -skarn -skate/GRSMD -skateboard/RGMSD -skating-rink -skean/S -skedaddle/SGD -skeet/M -skein/MS -skeletal/Y -skeleton/MS -skelter -skerries -Skerry/M -sketch/SzRMDGZ2 -sketchbook/SM -sketchpad -sketchy/PT -skeuomorph/S -skeuomorphic -skeuomorphism -skew-eyed -skew/DPRGS -skewbald -skewer/d -ski'd -ski-jump/RGD -ski-lift/SM -ski-plane -ski-run -ski/GMS -skid/DGS -skiff/MS -skijorer/S -skijoring -skilfish/S -skilful/Y -skilfulness -skill/DSM -skilled/U -skillet/MS -skim/RDSGM -skimmia/S -skimp/zG2ZSD -skimpy/PT -skin-dive/RG -skin-tight -skin/MpZ2DGS -skincare -skinflint/MS -skinfold/S -skinful -skinhead/MS -Skinner/SM -skinny/PT -skint -skintight -skip/RSDG -skipjack/S -skippable -skipper/d -Skippy/M -skirmish/DSRGM -skirret/S -skirt's/f -skirt/GDMS -skirts/ef -skit/SM -skitter/dSZ -skittish/YP -skittle/MS -skivvy/DMSG -skiwear -skol -Skopje/M -skua/S -skulduggery/M -skulk/RGSD -skull/SM -skullcap/MS -skunk/SM -sky-blue -sky-high -sky-writer/SM -sky-writing/SM -sky/S7RGDZM -skybridge -skydive/SRDG -skydiving/M -Skye/M -skyjack/RJSGD -Skylab/M -Skylake/M -skylark/GDSM -skyless -skylight/MS -skyline/MS -Skype/M -skyrocket/SdM -skysail/S -skyscape/S -skyscraper/MS -Skywalker/M -skyward/S -skywatch/R -skyway/M -slab/MSGD -slack/DGTRPYS -slacken/dS -Slade/M -slag/SMDG -slain -slake/SGD -slalom/MS -slam/RGSD -slander/dSM -slanderer/S -slanderous/Y -slang/MGZ -slangy/T -slant/GDS -slantwise -slap-happy -slap-up -slap/MGSD -slapdash -slapper -slapstick/M -slash/SDGR -slat/MDdGS -slate/MSZ -Slater/M -slather/Sd -slattern/YSM -slaughter/SdrM -slaughterhouse/SM -slaughterman -Slav/SM -slave-bangle -slave-born -slave-drive -slave-driven -slave-driver/S -slave-drove -slave-trade/R -slave/SRMyDG -slaveholder/S -slaveholding/S -slaver/d -slavery/SM -Slavic/M -slavish/YP -Slavonic/M -Slavophile -slay/RSG -sleaze/ZS -sleazy/PTY -sled/G -sledge/SGDM -sledgehammer/SM -sleek/TGYD -sleekness -sleep/R2MZGSzp -sleeping/c -sleepless/YP -sleepover/S -sleeps/c -sleepwalk/RDGSJ -sleepwear/M -sleepy/PT -sleepyhead/SM -sleet/GZDSM -sleety/T -sleeve/SMGDp -sleeving/M -sleigh/SRMDG -sleight/SM -slender/8QPY -slenderer -slenderest -slept/c -sleuth/GMDS -slew/GDS -slice/RMDSG -slick/YDPGST -slid/r -slide/SG -Slieve -slight/kSDTYG -slightish -slightness -Sligo/M -slim/DRSGYT -slime/2MSZ -slimline -slimness -slimy/T -sling/MGS -slinger -slingshot/SM -slink/GZS -slinky/T -slip-ons -slip/MSDRG -slipcase/SM -slipknot/SM -slippage/SM -slipper/2Z -slippered -slippery/T -slipshod -slipstream/MGDS -slipway/MS -slit/MRSDG -slither/dSZ -sliver/dSM -Sloan/M -Sloane/M -slob/SM -slobber/ZdS -Slocum/M -sloe/SM -slog/SDG -slogan/SM -sloganeer/SG -slogger/S -sloop/SM -slop/Gz2SDZd -slope/S -sloppy/TP -slosh/DGS -sloshy/T -slot/DGSM -sloth/S6Mj -slothful/P -slouch/DSGZ -slouchy/T -Slough/M -slough/SMGD -Slovak/S -Slovakia/M -Slovakian/S -sloven/YSM -Slovene/S -Slovenia/M -Slovenian/S -slovenly/TP -slow/TSPDGY -slowcoach/MS -slowdown/MS -slowish -SLR -slubberingly -sludge/ZM -sludgy/T -slue/DSG -slug/RSGDM -sluggard/SM -sluggish/PY -sluice/DMSG -slum/SGZMD -slumber/MdS -slumberer/M -slumberous -slumdog/S -slummy/T -slump/GDS -slung/U -slunk -slur/GDSZM -slurp/DGS -slurry/SM -slush/S2DGMZ -slushy/PT -slut/SM -sluttish/P -slutty -sly -slyer -slyest -slyly -slyness/M -Sm -smack/GSMDR -small-minded -small-mindedness -small-scale -small-time -small-town -small/ST -smallholder/S -smallholding/SM -smallish -smallness -smallpox/M -Smallwood/M -smarmy/T -smart/eDSG -smarten/Sd -smarter -smartest -smartly -smartness -smartphone/S -smartwatch/S -smarty -smarty-pants -smash-and-grab -smash-up/S -smash/RkSGD -Smathers/M -smattering/SM -smear/SGDZ -smearer/M -Smedberg/M -smegma/W -smell/Y2GS7D -smeller/M -smelly/PT -smelt/RDGS -Smetana/M -Smethwick -smidgen/MS -smidgeon -smilax/MS -smile/GDMkS -smiler -smiley/MS -smilies -smiling/UY -smily/T -smirch/DSG -smirk/SMDG -Smirnoff/M -smite/SG -smiter/M -smith/ZSMy -Smithee/M -smithereens -Smithers/M -smithery/S -Smithfield/M -Smithson/M -Smithsonian/M -Smithtown/M -Smithville/M -smithy/SM -smitten -smock/DGSM -smocking/M -smog/MZ -smoggy/T -smokable -smoke-dried -smoke-room -smoke-stone -smoke/SR2GZDpM7 -smokelessly -smokescreen/S -smokestack/SM -smokey -smoking-jacket -smoking-room -smoky/TY -smolt/S -smooch/rGSD -smoochy/T -Smoot/M -smooth-talk -smooth-tongued -smooth/GYRSTPD7 -smoothie/MS -smoothish -smorgasbord/SM -smote -smother/Sd -smoulder/Skd -SMP -SMS/SGD -SMSA/SM -SMTP -smudge/SpDGZ -smudgy/TYP -smug/PTY -smuggle/RSGJD -smut/2GDZSM -smutty/PT -Smyrna/M -Sn -snack/DSGM -snaffle/GDSM -snafu/MS -snag/GMDS -snail/SM -snake/GZDMS -snakebite/SM -snakefish/S -snakelike -snakeroot/M -snakeskin -snaky/T -snap/ZSR2GDz -snapdragon/MS -Snape -snapline/S -snappable -snapping/Y -snappish/YP -snappy/TP -snaps/U -snapshot/MS -snare/GDMS -snarer/M -snarkily -snarl/SDGkY -snarler/M -snarly/T -snatch/GDRS -snatchy -snazzy/TY -Snead/M -sneak/zDk2ZSG -sneaky/TP -Sneed/M -sneer/DSkGM -sneerer/M -sneeze/SGD -sneezer -Snell/M -Snetterton/M -snick/RM -snicker/d -snide/PTY -Snider's -sniff/SRGD -sniffle/SGD -sniffler/M -snifter/SM -snigger/dS -snip/DrGZS -snipe/SGM -snippet/MS -snippy/T -snitch/GDS -snivel/RSDGJ -snob/SMZ -snobbery/SM -snobbish/Y -snobbishness -snobby/T -Snodgrass/M -snog/SGDR -snood/SM -snook/RM -snooker/d -snoop/ZSRDG -snoopy/T -snoot/SzM2Z -snooty/TP -snooze/SGD -Snopek/M -snore/GDRS -snorkel/RMSDG -snort/GRDS -snot/zS2ZM -snotty/TP -snout/MDS -snow-capped -snow-white -snow/ZmD2MGS -snowball/GDSM -snowberry/S -snowblade/SrG -snowblink -snowblower/S -snowboard/GRDS -snowbound -snowcap/S -snowcat/S -Snowden/M -snowdrift/SM -snowdrop/MS -snowfall/MS -snowfield/SM -snowflake/MS -snowkiter/S -snowkiting -snowline -snowmobile/RSMGD -snowpack/S -snowplough/DSMG -snowscape/S -snowshoe/SGDM -snowshoer/MS -snowstorm/SM -snowy/T -SNP/M -SNR -Snr. -snub-nosed -snub/DGS -snubber/S -snuff/RYGSD -snuffbox/MS -snuffle/GSD -snuffler/M -snug/YPT -snuggle/GSD -Snyder/M -so-and-so/M -so-called -so/M -soak/DGJS -soaker/M -Soames/M -soap/SGZMD2 -soapbox/SM -soapstone/M -soapsuds -soapy/TY -soar/DGkS -soaraway -soarer/M -Soay/M -sob/SDG -sobbing/Y -sober/YdkPS -soberer -soberest -sobriety/ISM -sobriquet/MS -Soc. -soccer/M -sociability's -sociability/U -sociable/EU -sociably/U -social/Q8s39Sq-Y -socialism/MS -socialist/W -socialite/ZSM -sociality/M -societal -society/oSM -socio -socio-economic/YS -socio-political -sociobiological -sociobiologically -sociobiologist/S -sociobiology/M -sociocultural/Y -sociodrama -sociodramatic -sociodramatist -sociodynamic/S -socioecological -socioecologist/S -socioecology/W -sociogenic -sociogeny -sociogram -sociography/W -sociogroup -sociolatry -sociolect/S -sociolectal -sociolegal -sociolinguistic/S -sociolinguistics/M -sociolinguists -sociology/13MwS -sociometry/MW -sociopath/SWZ -sock/DMSG -socket/dMS -Socorro/M -Socrates/M -Socratic/S -sod/GSDM -soda/SM -sodden/YP -sodium/M -Sodom/M -sodomite/SM -sodomy/Q8SM -SOE -soever -sofa/SM -Sofia/M -soft-boiled -soft-core -soft-headed -soft-headedness -soft-hearted -soft-heartedness -soft-paste -soft-pedal/GD -soft-sell -soft-spoken -soft/cP -softback/S -softball/SM -softcover -soften/drS -softer -softest -softie/M -softly -softly-softly -softness/S -Softpedia -softphone -softshell/S -software/M -softwood/MS -softy/MS -sogginess -soggy/TY -Soham/M -Soho/M -soi -soi-disant -soigné -soil/GMDS -soiled/U -soiree -soirée/MS -sojourn/RMDGS -soke/S -Sokolowski/M -sol -Sol's -sol-fa -solace/GDMS -solanaceous -solanum/S -Solapur/M -solar -solaria -Solaris -solarium/M -sold/AfecU -solder/SA -soldered -solderer/S -soldering -soldier/DYSGZM -soldiership -soldiery/SM -sole's/I -sole/FADGS -solecism/SM -solecist/W -solely -solemn/-qQ8TY -solemness -solemnity/MS -solenoid/SM -solenoidal -soles/I -soleus -solicit/dnS -solicited/U -solicitor/MS -solicitous/Y -solicitousness -solicitude/MS -solid-state -solid/YS -solidarity/SM -solider -solidest -solidi -solidification/M -solidify/DNnGS -solidity/S -solidness -solidus/M -Solihull/M -soliloquies -soliloquise/SDG -soliloquy/M -solipsism/M -solipsist/S -Solis/M -solitaire/SM -solitariness -solitary/SY -solitude/SM -Sollas/M -solo/GDMS -soloist/SM -Solomon/MW -solstice/SM -solubilisation -solubilise/SGD -solubility/MI -solubilization -solubilize/SGD -soluble/EI -solute's -solute/AE -solutes/E -solution/ASME -solvable/IU -solvating -solve/EDRASG -solved/U -solvency/ISM -solvent/SIM -Solzhenitsyn/M -soma/M -Somali/SM -somalia -Somalia/M -Somalian/S -somatically -somatosensory -somatotype/SG -somatropin -sombre/Y -sombreness -sombrero/SM -some/W -somebody'll -somebody/SM -someday -somehow -someone'll -someone/M -somersault/GSMD -Somersby/M -Somerset/M -Somerville/M -something/M -sometime/S -somewhat -somewhen -somewhere -somite/S -Somme/M -sommelier/SM -somnambulism/M -somnambulist/SM -somniferous -somnolence/M -somnolent/Y -Somoza/M -son-in-law -son/MW1SZ -sonar/M -sonata/SM -sonatina/SM -Sondheim/M -Sondra/M -song/MS -songbird/MS -songbook/S -songcraft -songsmith -songster/SM -songstress/MS -songwriter/SM -songwriting -Sonia/M -sonics -Sonja/M -sonnet/MS -sonny/MS -sonobuoy/S -sonogram/S -sonograph/WZ -sonographer -Sonoma/M -Sonora/M -sonorant/S -sonority/S -sonorous/YP -sons-in-law -Sony/M -Sonya/M -soon/T -soonish -soot/MZ -sooth/RkMDG -soothe/S -soothsayer/SM -soothsaying -sooty/T -sop/DMGZS -Sophia/M -Sophie/M -sophism/SM -sophist/S1yMWw -sophistic/Nn -sophisticate/GShD -sophisticated/U -sophistication/M -sophistry/SM -Sophoclean -Sophocles/M -sophomoric -soporific/SMY -soppy/T -soprano/SM -Sopwith/M -sorbet/MS -sorbitol -Sorbonne/M -sorcerer/MS -sorceress/S -sorcery/SM -sordid/PY -sore/TSY -soreness -Sorensen/M -Sorenson/M -sorghum/MS -sorrel/SM -sorrow/DGM6jS -sorrower/M -sorrowful/P -sorry/TPY -sort/FSMAGD -sortable -sorted/UK -sorter/SM -sortie/SMD -sortieing -sorting/K -sorts/K -SOS/S -Sosa/M -sot/MS -Sotho/S -sottish -sou'wester -sou/MS -soubrette/S -soubriquet/M -souchong -soufflé/SM -sough/DGS -sought-after -sought/U -soul-destroying -soul-searching -soul/pS6Mj -soulful/P -soulless/Y -soulmate/S -sound/GJSTMDRYp -soundalike/S -soundbar/S -soundboard/MS -soundbox -soundcheck/S -soundclash -sounded/A -Soundex -soundhole/S -sounding/M -soundless/Y -soundly/U -soundness/U -soundproof/DGS -soundproofing/M -sounds/A -soundscape/S -soundtrack/MS -soup/SMZ -soupy/T -soupçon/MS -sour/DPTSGY -source's/A -source/SeDGA -sourcebook/S -SourceForge/M -sourish -sourpuss/MS -sous/DGS -Sousa/M -sousaphone/MS -souse -souterrain/S -south-east/M -south-easterly -south-Easterly -south-eastern -south-eastward/S -south-Eastward/S -south-south-east -south-south-west -south-west/M -south-westerlies -south-Westerly/S -south-western -south/M -Southall -Southampton/M -southbound -southeaster/SM -Southend-on-Sea -Southend/M -souther/YM -southerly/S -southern/R -southernmost -Southey/M -Southfield/M -southpaw/SM -Southport -southward/SY -Southwark -Southwell/M -southwester/MS -souvenir/MS -sovereign/YSM -sovereignty/SM -soviet/SM -sow/RGDS -sowed/A -Soweto/M -sown/A -sows/A -soy -soya -soybean/S -Soyuz/M -spa/MS -space-saving -space-time -space/DmRM5SGJ -spacecraft/MS -spacefarer/S -spacefaring -spaceplane/S -spaceport/S -spaceship/SM -spacesuit/SM -spacewalk/SRGD -spacey -spacial -spacier -spaciest -spacing/M -spacious/PY -Spackle -spade/SGMD6 -spadefish/S -spadefoot/S -spadeful/MS -spadework/M -spadiceous -spadices -spadille -spadix/M -spaghetti/M -Spain/M -spake -Spalding/M -spam/SRDG -spambot/S -spammie -span/GDRMS -spandex -spandrels -spangle/GMDS -spangly/T -Spaniard/SM -spaniel/MS -Spanish/M -spank/JSDG -spanker/M -spanking/M -spanned/U -spar/dMkDGS -SPARC/M -SPARCstation/M -spare/PYS -sparer's -spareribs -sparers -sparest -sparing/U -spark/DYGZSM -sparkle/GRkDS -sparky/T -sparling/SM -sparrow/SM -sparrowhawk/S -spars/T -sparse/Y -sparseness -sparsity -Sparta/M -Spartacus/M -Spartan/S -spas/W -spasm/MS -spasmodic/Y -spastic/S -spastically -spasticity -spat/MSGD -spate/SM -spathe/MS -spathiphyllum -spatial/Y -spatiality/M -spatio -spatio-temporal/Y -spatter/dS -spatterdash/S -spatterware -spatula/SM -spavin/SM -spavined -spawn/MGSD -spawner/M -spay/DSG -SPCA -speak/GRS7J -speakable/U -speakership/M -speaking-tube -speaking/Ua -speaks/a -spear/MGSD -spearfish/SG -speargun/S -spearhead/GSMD -Spearman/M -spearmint/SM -spec/S -specced -speccing -special/Q-8q3S -specialise/cnGDS -specialised/U -specialism/MS -specialist/W -speciality/S -specialness -speciate/DGN -specie/MoS -specific/S -specification/M -specificity/S -specificness -specified/UaAf -specifies/A -specify/SBl1nRDWNG -specimen/SM -speciose -specious/PY -speck/SGDM -speckle/DGSM -speckless -spectacle/DSM -spectacular/YS -spectate/SGD -spectator/MS -spectatorial -spectatorship -spectinomycin -Spector/M -spectra/oM -spectral -spectre/MS -spectrogram/SM -spectrograph/Z1M -spectrography/M -spectrometer/SMW -spectrometry/M -spectrophotometer/MWS -spectrophotometry/M -spectroscope/M1ZSW -spectroscopy/M -spectrum/M -specular -speculate/NDnSvVG -speculation/M -speculator/SM -speculum -sped -speech-maker/S -speech-making -speech-writer/S -speech/pSM -speechification -speechify/RSGD -speechless/PY -speed-up/MS -speed/DRJZSG2Mz -speedball/S -speedboat/MS -speedboater -speedo/S -speedometer/MS -Speedos -speedway/SM -speedwell/MS -speedwriter/S -speedwriting -speedy/TP -speleologist/S -speleology/Mw -spell/RG7JDS -spellbind/SRG -spellbound -spellcheck/GDSR -spelled/aA -spelling/MaS -spells/aA -spellworking -spelt/a -spelter -Spence/M -Spencer/M -spend/eScaG -spendable -spender/SM -spending/f -spendings -spendthrift/SM -Spenser/M -Spenserian -spent/Ufcea -sperm/MS -spermatic -spermatid/SO -spermatocyte/S -spermatogenesis -spermatogonia -spermatogonium -spermatophore/S -spermatophyte/M -spermatozoa -spermatozoid/S -spermatozoon/M -spermicidal -spermicide/M -Sperrin -Sperry/M -sperrylite -spessartine -spew/DRSG -SPF -sphagna -sphagnum/M -sphalerite -sphenoid -sphenoidal -sphere/M1WwS -spheroid/oMS -spheroidal -spherule/MS -sphincter/MS -sphingolipid/S -sphinx/SM -spic -spicate -spice/DGSZM -spicebush/M -spick -spicule/SM -spicy/TYP -spider/MZS -spidering -spiderish -spiderlike -spiderman -spidermen -spiderweb/SDG -spiderwort/M -Spiegel/M -spiel/DSGM -Spielberg/M -spiffy/T -spigot/SM -spike/DGSMZ -spikelet/S -spiky/TP -spilite/SW -spill/cGDS -spillage/SM -spiller -spillikin -spillover/SM -spillway/SM -spilt -spin-drier/S -spin-off/S -spin/RGSo -spinach/SM -spinal/S -spindle/SMGYD -spindly/T -spindrift -spine-chilling -spine/pMS2Z -spinel/S -spineless/YP -Spiner/M -spinet/SM -spinnaker/SM -spinneret/SM -spinney/S -spinose -spinous -Spinrad/M -spinster/MS -spinsterhood/M -spinsterish -spiny/T -spiracle/SM -spiraea/MS -spiral/SDGY -spire's/I -spire/IDFSA -spirit/IdSM -spirited/Y -spiritedness -spiritism -spiritist -spiritistic -spiritless/YP -spiritual/3YS -spiritualism/MS -spiritualist/W -spiritualistically -spirituality/SM -spiritualness -spirituous -Spiro/M -spirochaete/SM -spirometer -spirometric -spirometry -spironolactone -spiry -spit/RGS -spite/AMS -spiteful/PY -spitfire/MS -spiting -spittle/MY -spittlebug/S -spittoon/SM -Spitz/M -spiv/S -spivvish -spivvy/T -splake -splanchnopleure -splash/GDSzZ -splashback/S -splashboard/S -splashdown/SM -splashy/T -splat/DMGS -splatter/dS -splatterpunk/S -splay/SDG -splayfeet -splayfoot/DM -spleen/SM -spleenwort/S -splendid/PY -splendiferous/Y -splendiferousness -splendour/SM -splenectomy/S -splenetic -splenic -splenomegaly -splice/GDRSJ -spliff/S -spline/MDS -splint/RDSGM -splinter/dZ -split-level -split-second -split/SRGM -splodge/MS -splotch/MGDSZ -splotchy/T -splurge/MDSG -splutter/dS -splutterer/M -spn -Spock/M -spoil/CSRDG -spoilage/MS -spoiled/U -spoilsport/MS -spoilt/U -Spokane/M -spoke/Dm5S -spoken/Uea -spokeshave/SM -spokespeople -spokesperson/S -spoliation/SCM -spondylolysis -sponge-like -sponge/GZDRS2M -spongeable -spongiform -spongy/T -sponsor/dMS -sponsorship/S -spontaneity/SM -spontaneous/YP -spoof/SDGMR -spoofable -spoofery -spook/MGZSD2 -spooky/TP -spool/MRSDG -spoon-fed -spoon-feed/SG -spoon/D6GSM -spoonbill/MS -Spooner/M -spoonerism/SM -spoonful/MS -spoor/SM -sporadic/Y -sporangia -sporangial -sporangium -spore/MS -sporophyte/S -sporophytic -sporran/SM -sport/kVmGvM5ZDS2u -sporter -sportif -sporting/U -sportive/P -sportscast/RSGM -sportsman/Y -sportsmanlike/U -sportsmanship/M -sportspeople -sportsperson/S -sportster/S -sportswear/M -sportswomanship -sportswriter/S -sporty/TP -spot's/C -spot-weld/DG -spot/2GDRSZzMp -spotless/PY -spotlight/SMGD -spotlit -spots/C -spotted/U -spotty/TP -spouse/SM -spout/DGS -spouter/M -Sprachgefühl -sprag -sprain/GDS -sprang -sprat/SM -sprawl/GSD -spray's -spray/ADGS -sprayable -sprayer/MS -sprayings -spread-eagled -spread/CGcSe -spreadable -spreader/SM -spreadsheet/SG -spree/MGS -sprig/MSDG -sprightly/TP -spring-clean/D -spring-loaded -spring/RZSz2G -springboard/SM -springbok/MS -Springfield/M -springiness/S -springless -springlet/S -springlike -Springsteen/M -springtail/S -springtime/M -springy/TP -sprinkle/RJSDG -sprinkling/M -sprint/RDSMG -sprite/SM -sprocket/dSM -sprog/SGD -sprout/DGS -spruce/YMDPSG -sprucer -sprue/M -sprung/U -spry -spryer -spryest -spryly -spryness -SPSS -spud/SDGM -spume/SMZ -spumy/T -spun -spunk/MZ -spunky/T -spur/SMDG -spurge/SM -spurious/YP -spurn/DSG -spurner -spurt/DGS -sputa -Sputnik/MS -sputter/dS -sputterer -sputum/M -spy/GDMS -Spyckerelle -spyglass/SM -spyhole -spymaster/S -spyware -sq -sq. -SQL -sqrt -squab/SM -squabble/DRSG -squad/MS -squadron/MS -squalene -squalid/YP -squall/MYSDG -squally/T -squalor/S -squamous -squander/dS -squanderer -square/PMTDSYG -squarer/M -squarish -squash/ZGDS2 -squashy/TP -squat/YTRSPDG -squaw/MS -squawfish/S -squawk/RMDSG -squawroot/S -squeak/RZSGMD2z -squeaky/T -squeal/DRSGM -squeamish/YP -squee/Sd -squeegee/MSd -squeezable -squeeze/SRDG -squelch/ZDSG -squelcher/M -squelchy/T -squib/DGMS -Squibb/M -squid/MGDS -squidgy/T -squiggle/SYMGD -squiggly/T -squill/S -squillion/S -squillionaire/S -squinancywort -squint/SDG -squinter/M -squire/YGMDS -squirearch/Zw -squiredom -squireen -squirehood -squirelet -squireling -squireship -squirl -squirm/ZSDG -squirmy/T -squirrel/YMGSD -squirt/SGD -squirter/M -squish/2DGZS -squishy/T -Sr -SRA/M -SRAM/S -sRGB -Sri -SRO -SS -SSA/SM -SSC -SSD/SM -SSE -SSH -ssh/SGD -SSL -SSRI -SSS -SST -SSW -St -st. -stab/RYDJSG -stabilise/CnRGDS -stability/MSI -stabilize/CNRnGDS -stable-boy/SM -stable-girl/MS -stable-lad/SM -stable-mate -stable/FMS -stabled -stableful/S -stableman/M -stablemen/M -stableness -stabler -stablest -stabling -stablish -stably -staccato/S -Stacie/M -stack/7GSDM -stacked/U -stacker/SM -Stackhouse/M -Stacy/M -stadia -stadium/SM -staff's -staff/ADGS -staffage -staffed/cUf -Stafford/M -Staffordshire/M -staffroom -stag/dSM -stage-manage/RD -stage-management -stage-struck -stage/SZBM2 -stagecoach/MS -stagecraft/M -stagehand/SM -stager/M -stagflation/SM -stagger/Skrd -staghound/S -stagnancy/MS -stagnant/Y -stagnate/nNDSG -stagnation/M -stagy/T -Stahl/M -staid/PY -stain/SpDG -stained-glass -stained/U -stainer/M -Staines -stair/MS -staircase/MS -stairhead -stairlift/S -stairway/MS -stairwell/MS -staithe/S -stake/MDSG -stakeholder/S -stakeout/MS -stalactite/MS -Stalag/M -stalagmite/MS -stale/PTYDG -stalemate/SGMD -Staley/M -Stalin/M -Stalingrad/M -Stalinism -Stalinist/S -stalk/RDMGS -stalking-horse -stall's -stall/SGID -stallage -Staller/M -stallholder/S -stallion/SM -Stallman/M -Stallmann/M -Stallo/M -Stallone/M -stalwart/YS -stalwartness -stamen/MS -Stamford/M -stamina/M -staminate -stammer/rdSk -stamp/RJDGS -stamped/d -stampede/MS -stampeder/M -Stan/M -Stancanelli -stance/ISM -stanchion/SM -Stancliffe/M -stand's -stand-alone -stand-in/S -stand-off/S -stand-offish -stand-up -stand/SfGJ -standard-bearer/SM -standard/Ms9qQ-8S -standardised/U -standby -standbys -standee/MS -stander/S -standing/fM -Standish/M -standoffish/Y -standoffishness -standout/S -standpipe/SM -standpoint/SM -standstill/SM -Stanfield/M -Stanford/M -Stanhope -Staniforth/M -Stanislavsky/M -stank -Stanleigh/M -Stanley/M -Stanmore/M -stannic -stannous -Stansted/M -Stanton/M -Stanwood/M -stanza/DSM -stanzaic -stapedial -stapes -staphylococcal -staphylococci -staphylococcus -staple/SGDRM -stapled/U -Stapleton/M -star-spangled -star-studded -star/MrdZpSDG -starboard/MSG -Starbucks -starburst/S -starch/SzMGD2Z -starchitect/S -starchitecture -starchly -starchwoman -starchwort -starchy/TP -stardom/MS -stardust/M -stare/S -starfish/MS -Starfleet/M -Stargate/M -stargate/S -stargaze/RSGD -stargrass -stark/TYP -Starkey/M -Starks/M -starlet/SM -starlight/M -starling/SM -starlit -Starr/M -starry/T -starshine -starship/S -starstruck -start-up/MS -start/RSDG -started/A -startle/GkDS -starts/A -starvation/M -starve/GNSnD -starveling/M -stash/GSD -stasis/M -statant -state's -state-of-the-art -state/aSALGfIcD -statecraft -stated/U -stateful -statehood/MS -Statehouse's -statehouse/S -stateless/P -stately/TP -statemented -statementing -Staten/M -stater/Ma -stateroom/SM -states/5m -statesman/Y -statesmanlike -statesmanship/M -statewide -static/YS -statical -station-wagon/MS -station/eMS -stationariness -stationary -stationed -stationer/ZSM -stationery/MS -stationing -stationmaster/MS -statism -statist/S -statistic/SYM -statistical -statistician/SM -stator/SM -statoscope -stats -statuary/SM -statue/MSD -statuesque/Y -statuesqueness -statuette/SM -stature/MS -status quo -status/MWS -statute/SyM -statutory/Y -Stauffer/M -staunch/DTSGY -staunchness -stave/GDSM -stay-at-home -stay/ecDSG -staycation/S -stayer/SM -staysail/S -STD/S -stead/z2MZ -steadfast/PY -Steadicam -steadied -steadier/U -steadies -steadiest/U -steadiness/M -steady-going -steady/UY -steadying -steak/SM -steakhouse/MS -steal/SG -stealer/M -stealing/M -stealth/M2zZ -stealthy/TP -steam/zR2DGMZS -steamboat/MS -steampunk -steamroller/dSM -steamship/MS -steamy/TP -stearate/S -stearic -Stearns -Steckling/M -steed/SM -steel-clad -steel/DMGZ2S -Steele/M -steelhead -steelwork/RSM -steely/PT -steelyard/SM -Steen/M -steep/TSGDY -steepen/dS -steeple/DSM -steeplechase/GSM -steeplechaser/S -steeplejack/MS -steepness -steer/GSD7 -steerage/SM -steerer/M -steers/m -steeves -Stefan/M -Stefanie/M -Stefano/M -Steffen/M -Steffi/M -steganographer/S -steganography/W -stegosaurus/S -Stehmann -stein/MS -Steinbeck/M -Steinberg/M -Steiner/M -Steinmetz/M -Steinway/M -Stella/M -stellar -stellated -Stellenbosch/M -stem/pGMDS -stemmed/U -stench/SM -stencil/DSMGJ -Stengel/M -stenographer/MS -stenos -stenosed -stenoses -stenosing -stenosis -stenothermal -stenotic -stenotype/MS -stenotypist/S -Stensen/M -stent/S -Stenton/M -stentorian -step's/aI -step-parent/SM -step/cDGS -stepbrother/MS -stepchild/M -stepchildren -stepdad/S -stepdaughter/MS -stepfamily/S -stepfather/SM -Stepford -Stephan/M -Stephanie/M -Stephen/MS -Stephens/M -Stephenson/M -stepladder/SM -stepmother/SM -stepmum/S -Stepney/M -steppe/SRM -steppingstone/S -steps/aI -stepsister/SM -stepson/MS -stepwise -steradians -stereo/SM -stereocamera/S -stereochemical/Y -stereochemistry -stereognosis -stereognostic -stereogram/S -stereography/MW -stereological/Y -stereometry -stereophonic -stereophonically -stereophony -stereoregular -stereoscope/ZWM1S -stereoscopy/M -stereotactic -stereotactically -stereotaxic -stereotype/ZMDGSWw1 -sterilant/S -sterile/YQ8q-s9 -sterilise/ADSG -sterilised/U -sterility/SM -sterling/PMY -Stern-Volmer -stern/SYT -sternal -Sterne/M -sternness -sternum/SM -sternway -steroid/MS -steroidal -sterol/S -stertorous/PY -stet/MGSD -stethoscope/SM -Stetson/MS -Steuben/M -Steve/M -stevedore/SM -Steven/MS -Stevenage -Stevenson/M -stevia/M -stew/DMGS -steward/GMDS -stewardess/MS -stewardship/SM -Stewart/M -sthenic -STI/S -stibine -stick/RZS2GzM -stickleback/MS -stickler/SM -stickup/SM -sticky/PT -stiff-necked -stiff/YPTS -stiffen/rSd -stifle/SGDk -stifler/M -Stigand/M -stigma/Q8Wq-SM -stigmata -stigmatised/U -stigmatist -stigmatization/CS -Stihler/M -stile/MS -stiletto/SM -still/SDPTG -stillbirth/SM -stillborn/S -Stillwell/M -stilt/MhiSD -Stilton/M -stimulant/SM -stimulate/cGSD -stimulated/U -stimulation/MS -stimulative -stimulator/M -stimulatory -stimuli/M -stimulus/M -Stine/M -sting/RZSGkz2 -stingray/MS -stingy/PT -stink/GZSRk -stinkpot/M -stinky/T -stint/GDMS -stinter/M -stinting/U -stipend/MS -stipendiary -stipple/GDSJ -stippler/M -stipular -stipulate/GNnDS -stipulation/M -stipule/S -stir-fry/D -stir/GSJDR -Stirling/M -stirred/U -stirring/Y -stirrup/SM -stitch's -stitch/ADGJS -stitcher/MZ -stitching/M -stoat/MS -stochastic/Y -stock's -stock-in-trade -stock/GcDAS -stockade/MS -stockbreeder/SM -stockbroker/SM -stockbroking -Stockdale -stocked/f -stocker/MS -Stockhausen/M -stockholder/MS -Stockholm/M -stockinet/MS -stockinette/S -stocking/MSD -stockman -stockmanship -stockmen -stockpile/DSG -stockpiler/M -Stockport -stockpot/SM -stockroom/SM -stocktake/R -stocktaking/M -Stockton-on-Tees/M -Stockton/M -Stockwell/M -stocky/YTP3 -stockyard/MS -Stoddard/M -stodge/2MZ -stodgy/TY -stoic/SYM -stoical -stoichiometrically -stoichiometry/MW -stoicism/MS -Stoke-on-Trent/M -Stoke/M -stoke/SRGD -Stokes's -STOL -stole/MS -stolen -stolid/Y -stolidity -stolidness -stolon/MS -stolonate -stoloniferous -stoma -stomach-pump -stomach-tube -stomach/R6pDMG -stomachache -stomachful/S -stomachic/S -stomachs -stomal -stomata -stomatal -stomatitis -stomatopod -stomp/DSG -stomper/S -stompy/T -stone-baked -stone-cold -stone/pSMZDG -stonechat/S -stonecutter/MS -stonefish/S -stoneground -Stonehenge/M -Stonehouse/M -stonemason/SM -stoner/MS -stonewall/DSG -stonewaller/S -stoneware/M -stonewashed -stonework/M -stonewort/M -stony/YPT -stood/f -stooge/SM -stool-pigeon -stool/MS -stoop/DGS -stop-go -stop/MRSDG -stopcock/SM -stopgap/MS -stopoff -stopover/SM -stoppable/U -stoppage/SM -stopped/U -stoppered -stopping/U -stopwatch/MS -storable -storage/MS -store's -store/SAGD -storehouse/MS -storekeeper/SM -storer/A -storeroom/MS -storey/S -stork's-bill -stork/SM -storm-bird/SM -storm-cock/MS -storm-door/SM -storm-finch/SM -storm-lantern/SM -storm-sail/SM -storm-signal/MS -storm/R2GpzDZSM -stormbound -stormproof -stormy/T -Stornoway/M -story/MSD -storyboard/SGMD -storybook/SM -storyline/S -storyteller/MS -storytelling/M -Stouffer/M -stoup/SM -Stourbridge -Stout's -stout-hearted/Y -stout-heartedness -stout/TYSP -stove-pipe/SM -stove/SM -Stover/M -stow/DGS -stowable -stowage/M -stowaway/SM -Stowe/M -Strabane/M -Strachan -Straczynski/M -straddle/RSDG -Stradivarius/M -strafe/SGD -straggle/RYDSG -straggly/T -straight-edge/SM -straight-eight -straight-faced -straight/STPY -straighten/rSd -straightforward/PY -straightish -strain/FSAD -strained/cU -strainer/AMS -straining/c -strait-jacket/dSM -strait-laced -strait/SMY -straiten/dS -Straith/M -straitjacket/dMS -straitness -strake/S -strand/GSD -strange/PTYR -strangle/DGRS -stranglehold/MS -strangulate/GnSND -strangulation/M -strap's -strap/DUSG -strapless -Strasbourg/M -strata/M -stratagem/MS -strategic/S -strategy/W3MSw1 -Stratford-upon-Avon -Stratford/M -Strathclyde/M -strati -stratification/M -stratify/NGnDS -stratigraphy/MwW -stratosphere/SWM1 -stratum/M -stratus/M -Strauss/M -Stravinsky/M -straw-colour/D -straw-worm/S -straw/MZS -strawberry/SM -strawboard -Strawson/M -stray/GDSM -strayer/M -streak/RSDZGM -streaky/T -stream/GSRMD -streamable -streambed -streamed/U -streamflow/S -streamlet/S -streamline/GDS -streamliner -Street -street/MS -streetscape/S -streetwalker/MS -streetwalking -streetwise -Streisand/M -strength/SM -strengthen/AdS -strengthener/SM -strenuous/YP -streptococcal -streptococci -streptococcus/M -streptomycin/M -STRESS -stress/DpMSG -stressed/U -stressful/Y -stressfulness -stressor/S -stretch/eGDS -stretchability/M -stretchable -stretched/c -stretcher/dMS -stretchiness -stretchy/T -strew/GDS -strewer -strewn -stria/nM -striae -striate/SGD -striation/M -stricken -Strickland/M -strict/TY -stricter/F -strictness -stricture/MS -stridden -stride/MSG -stridency/S -strident/Y -strider/M -stridor -Strieber/M -strife/M -strike-breaking -strike/RGSk -strikebound -strikebreak/RG -strikebreaking/M -strikeout/S -strim/RGD -string's -string/AGS -stringboard -stringed -stringency/S -stringent/Y -stringer/MS -Stringfield/M -stringpiece -stringy/TP -stringybark -strip's -strip-searched -strip-searching -strip/eDGS -stripe/SMDZG -striper/M -stripey -stripier -stripiest -stripling/M -stripper/MS -striptease/RSM -strive/DSGJ -striven -striver/MS -strobe/SM -strobili -strobilus -stroboscope/MSW -strode -stroganoff -Stroh/M -stroke/SGDM -stroll/SRGD -Strolz/M -Strom/M -stroma -stromal -stromata -stromatic -stromatolite/S -stromatoporoid/S -Stromberg/M -stromule/S -strong-minded -strong/mTY -strongbox/MS -stronghold/MS -strongish -strongroom/SM -strontium/M -strop/SMDG -strophanthin -strophe/WSM -stroppily -stroppiness -stroppy/T -Stroud -strove -struck -structural/3Y -structuralism/M -structuralist -structure's -structure/ASGD -structured/U -structureless -strudel/MS -struggle/SGD -struggler/M -strum/DGS -strummer/S -strumpet/MS -strung/cUA -strut/DSG -strutter/M -strychnine/M -Stuart/MS -stub/MZDGS -stubble/YSM -Stubblefield/M -stubbly/T -stubborn/TYP -Stubbs/M -stubby/T -stucco/MDG -stuccoes -stuck/U -stud/DSMG -studbook/SM -student/SM -studentship/MS -studenty -studied/U -studiedly -studiedness/M -studier/SM -studio/SM -studious/YP -study/MASfDG -stuff/cDG -stuffer -stuffing/M -stuffs -stuffy/YTP -Stukeley/M -stultify/nSGND -stum/SGD -stumble/GSDRk -stump/ZSDGM -stumper/M -stumpily -stumpiness -stumpy/T -stun/GSD -stung -stunk -stunner/MS -stunning/Y -stunsail/S -stunt/iSDGM -stuntman/M -stuntmen/M -stuntwoman -stuntwomen -stupefaction/MS -stupefy/SkGD -stupendous/YP -stupid/Y -stupider -stupidest -stupidity/MS -stupor/MS -sturdy/TYP -sturgeon/MS -Sturm/M -stutter/dS -stutterer/S -Stuttgart/M -sty/SM -Stygian -style's -style/ASGD -styler/SM -styli -stylise/nSDG -stylish/Y -stylishness -stylist/WM1S -stylistic/S -stylize/nSNDG -stylus/SM -stymie/SD -stymieing -styptic/S -styrene/M -Styrofoam -Styx/M -Su -Suarez/M -suasion/SEM -suave/TYP -suavity/M -Sub -sub-aqua -sub-basement/MS -sub-branch/MS -sub-clause/S -sub-edit/d -sub-group/S -sub-head/J -sub-idea -sub-lieutenant/SM -Sub-Lt. -sub-machine-gun -sub-Saharan -sub-sequence/SM -sub-standard -sub-zero -sub/SGDM -subacid -subacute -subadult/S -subagency/S -subagent/S -subalpine -subaltern/MS -subantarctic -subaquatic -subaqueous -subarachnoid -subarctic -Subaru/M -subatomic -subcategory/SM -subcell -subcellular -subchapter/S -subclass/MS -subclause/S -subclavian -subclinical -subcommand/S -subcommittee/SM -subcomponent/SM -subconjunctival -subconscious/YP -subconsciousness/S -subcontinent/SM -subcontinental -subcontract/SGDM -subcontractor/SM -subcortical -subcostal -subcritical -subcultural -subculture/SM -subcutaneous/Y -subdevelopment -subdirectory/S -subdiscipline/S -subdivide/XSDGN -subdivision/M -subdomain/SM -subdominant -subduable -subduct/SGD -subduction -subdue/SDG -subduer -subedit/Sd -subeditor/SM -subeditorial -subeditorship -subenfeudation -suberin -suberose -suberous -suberyl -subesophageal -subevergreen -subface -subfactor -subfamily/MS -subfauna -subfertile -subfertility -subfeudatary -subfeudation -subfeudatory -subfield/S -subfolder/S -subframe/SM -subfusc -subgenera/W -subgenre/S -subgenus -subgroup/SM -subhead/MGSJ -subheading/M -subhuman -subimpose -subincandescent -subincision -subindex/S -subindustry/S -subinfeud -subinfeudation -subinfeudatory -subinterval/SM -subject/vGSDuMV -subjectable -subjectdom -subjecthood -subjectible -subjectification -subjection/SM -subjective/P -subjectivism -subjectivist/S -subjectivity/SM -subjectship -subjoin/GDS -subjugal -subjugate/DnGSN -subjugation/M -subjunctive/S -subjunctively -subkey/S -subkingdom/S -sublanguage/S -sublate/SDGN -sublateral -sublayer/S -sublease/DMGS -sublet/SG -sublibrary/S -sublicense/DS -sublicensee/S -sublimate/DSG -sublimation/M -sublime/YTDnSG -subliminal/Y -sublimity/SM -sublingual/Y -sublist/S -sublittoral -sublunary -subluxate -subluxation -submandibular -submarginal -submarine/RSM -submerge/GDS -submergence/SM -submerse/SbXGDN -submersible/S -submersion/M -submetacentric -submicroscopic -submission/MA -submissive/PY -submit/ANSGDX -submittal -submitter/S -submodify/RSDGN -submucosa -submucosae -submucosal -submultiple/S -submunition/S -subnanosecond -subnational -subnatural -subnet/MS -subnetwork -subnormal -subnormality -subnotebook/S -subnuclear -suboperation/S -suboptimal/Y -suboptimum -suboption/S -suborbital -suborder/MS -subordinary/S -subordinate/ISNYDGn -subordination/MI -subordinative -subordinator -suborganisation/S -suborganization/S -suborn/NGDS -subornation/M -suboval -subovoid -subparagraph/S -subparallel -subphylum -subplot/SM -subpoena/DGSM -subpopulation -subprocess/S -subprogram/S -subproject/S -subpubic -subquery/S -subrectangular -subreddit/S -subregion/SoM -subregional -subrogation/M -subroutine/SM -subsale -subscapular -subscribe/AGcSDU -subscriber/SM -subscript/DGS -subscription/MS -subsection/SM -subsensible -subsequence/M -subsequent/Y -subservience/M -subservient/Y -subset/MS -subside/qQ-8DZGs9S -subsidence/M -subsidiarity -subsidiary/MS -subsidised/U -subsidy/SM -subsist/GSD -subsistence/M -subsistent -subsocial -subsoil/MSG -subsonic -subsonically -subspace/SM -subspecialist/S -subspecies/M -subspecific -substage -substance/SM -substandard -substantial/YI -substantiate/NSDGn -substantiated/U -substantiation/FMS -substantival -substantivally -substantive/SMY -substation/SM -substituent/S -substitute/SVBvDG -substitution/SyM -substitutional -substrata -substrate/MS -substratum/M -substring/S -substructure/MS -substyle -subsumable -subsume/GSD -subsumption -subsurface -subsystem/MS -subtask/SM -subtenancy/SM -subtenant/SM -subtend/SDG -subterfuge/SM -subterminal -subterranean/YS -subterraneous/Y -subtest -subtext/SM -subtidally -subtitle/MSGD -subtle/PTY -subtlety/SM -subtly/U -subtopic/SM -subtotal/MS -subtotalled -subtotalling -subtract/RvVGDS -subtraction/SM -subtrahend/SM -subtree/S -subtropical -subtropics -subtype/SM -subunit/MS -suburb/SM -suburban/Q8q- -suburbanite/MS -suburbia/M -subvention/MS -subversion/SM -subversive/PSY -subvert/SDG -subverter/M -subway/MS -subwindow/S -subwoofer -subzero -succeed/DSG -succeedable -succeeder/M -succeedingly -success/XVMN6jvuS -successful/P -successfully/U -successfulness/U -succession/M -successive/P -successor/SM -succinate -succinct/PY -succinic -succour/SGMDp -succubi -succubus/M -succulence/M -succulent/SY -succumb/GSD -such -such-and-such -suchlike -suck/GRSD -sucker/d -suckle/JSGD -suckler/S -suckling/M -sucralose -sucrose/M -suction/DMGS -Sudan/M -Sudanese/M -sudaria -sudarium -sudden/YP -Sudetenland -sudoku -sudoriferous -sudorific/S -Sudra/S -suds/Z -sudsy/T -Sue's -sue/R7SGD -suede/M -suet/MZ -Suetonius/M -Suez/M -suffer/drJS -sufferance/M -suffering/M -suffice/SGD -sufficiency/IM -sufficient/IY -suffix/nSGDM -suffixal -suffixion -suffocate/SGkDnN -Suffolk/MS -suffragan/S -suffrage/3SM -suffragette/MS -suffuse/DNXSG -suffusion/M -Sufi/M -Sufism/M -sugar-coated -sugar-daddy/SM -sugar-pea/S -sugar/dMpS -sugarbird/S -sugarplum/SM -sugary -suggest/RGuVvSDb -suggestibility/M -suggestion/SM -suggestive/P -Sugimori/M -suicidal -suicidality -suicide/SoM -suit/MldSg7 -suitability/U -suitable/U -suitableness -suitably/U -suitcase/SM -suite/MS -suited/U -suitor/MS -Sukarno/M -sukiyaki/MS -Sukkoth's -Suleiman/M -sulfacetamide -sulfamethoxazole -sulfate/S -sulfonamide/S -sulk/GZz2SD -sulky/T -Sulla/M -sullen/YP -sullener -sullied/U -Sullivan/M -sully/SDG -sulphadiazine -sulphamethoxazole -sulphate/GDSM -sulphide/MS -sulphite/S -sulphonamide/MS -sulphonate/SGDN -sulphur/MdSW -sulphurous -sultan/SM -sultana/MS -sultanate/MS -sultry/TPY -Sulu/M -sum/8NSRMXDG -sumac/SM -Sumatra/M -Sumatran/S -Sumbawa -Sumer -Sumerian/MS -summarisation -summarization -summary/Ss9Q8MYP -summat -summation/FMS -summational -summative -summer/dZ -Summerdale/M -summerhouse/MS -summertime/M -summing-up -summit/SpM -summiteer/S -summon/rdS -summons/SGDM -Sumner/M -sumo/SM -sump/SM -sumptuary -sumptuous/YPK -sumpweed -Sumter/M -sun-baked -sun-dried -sun/DZpMSG2 -sunbath/GRDS -sunbathe -sunbeam/MS -sunbed/S -sunbelt/M -sunbird/S -sunbittern/S -sunblind/S -sunblock/S -sunbonnet/MS -sunbow/S -sunburn/MSD -sunburnt -sunburst/SM -sundae/SM -Sundanese/M -Sunday/MS -Sundberg -sunder/dS -Sunderland/M -sundew/S -sundial/SM -sundown/MR -sundress/S -sundrops -sundry/S -sunfish/MS -sunflower/SM -sung/U -sunglasses -sunk -sunken -sunlamp/S -sunlight/M -sunlit -Sunni/MS -Sunnite/MS -sunny/TP -Sunnyvale/M -sunrise/SM -sunroof/S -sunscreen/S -sunseeker/S -sunset/SM -sunshade/SM -sunshine/ZM -sunspot/SM -sunstroke/M -suntan/DMSG -suntrap/S -sup/GRSD -super-dooper -super/5m -superabundance/M -superabundant -superalloy -superannuate/GSNDn -superannuation/M -superb/PY -superbeing -superbike/S -superbug/S -supercalifragilistic -supercalifragilisticexpialidocious -supercargo/M -supercargoes -supercell/S -supercentenarian/S -supercentre -supercharge/GSRD -superchip -superchurch -superciliary -supercilious/YP -superclass/M -supercluster/S -supercoil/SDG -supercollider/S -supercomputer/MS -supercomputing -superconduct/V -superconducting -superconductivity/SM -superconductor/MS -superconscious/PY -supercontinent/S -supercooled -supercooling -supercritical -superego/MS -supererogation/M -supererogatory -superface -superfamily/S -superfan -superfast -superfatted -superfecundation -superfemale -superfetation -superficial/Y -superficiality/S -superficialness -superfine -superfluid/S -superfluidity -superfluity/MS -superfluorescent -superfluous/Y -superfluousness -superflux -superfood/S -superforce -superfortress -superfruit -superfuse/DG -superfusion -supergalactic -supergalaxy/S -supergene/S -supergiant/S -superglue/dS -superglueing -supergovernment -supergravity -supergroup/S -superheat/D -superheavy -superheavyweight -superhelical -superhelices -superhelix -superhero/M -superheroes -superheterodyne -superhighway/SM -superhuman/Y -superimpose/XSGDN -superimposition/M -superintend/DSG -superintendence/Z -superintendency/M -superintendent/SM -superior/SMY -superiority/SM -superjet -superlative/PSY -superlunary -supermale -supermarket/MS -supermodel/S -supernal -supernatant -supernatural/PY -supernaturalism/M -supernaturalist/S -supernature -supernormal -supernormality -supernova/SM -supernovae -supernumerary/S -superorder -superordinate/S -superovulation -superoxide -superphosphate -superphylum -superplastic -superplasticity -superpose/DGNS -superposition/M -superpower/SM -superreal -supersale -supersalt -supersaturate/GDNS -supersaturation/M -supersaurus -superscribe/XDNSG -superscript/GSD -superscription/M -supersede/GSD -supersell/R -supersensitive -superset/SM -supersexual -supersize/SDG -supersonic/YS -superspace -superspecies -superspeed -superstar/SM -superstate/S -superstition/SM -superstitious/Y -superstitiousness -superstore/S -superstring/S -superstructural -superstructure/SM -supersymmetry/W -supertanker/MS -supertax -supertwist -superuser/MS -supervene/SDG -supervention -supervillain/S -supervise/DNGXS -supervised/U -supervisee/S -supervision/M -supervisor/MS -supervisory -supervoltage/S -supinate/SGDN -supine/PY -suppertime -supplant/GSD -supplanter/M -supple/LYPT -supplely -supplement/GDNn -supplemental -supplementary/S -suppliant/S -supplicant/SM -supplicate/GDSNn -supplication/M -supplier/SM -supply's/c -supply/ASDGc -support/vRDkSBGV -supportability/M -supportable/IU -supported/U -supposable -suppose/DXKSGN -supposed/Y -supposition/M -suppositious/YP -suppository/SM -suppress/NXVGDSb -suppressant/S -suppressed/U -suppression/M -suppressor/S -suppurate/NDSnG -suppuration/M -supra -suprabasal -supralunar -supramolecular -supramundane -supranational/Y -supranationalism/M -supranationality -supranuclear -supraoccipital -supraorbital -suprarational -suprarenal -suprasegmental/S -supratemporal -supravitally -supremacism -supremacy/3MS -suprematism -suprematist/S -supreme/YP -supremo/MS -Supt. -Surabaya/M -Surat/M -surcease/SM -surcharge/GDSM -surcingle/MS -surd/M -sure-fire -sure-footed/Y -sure-footedness -sure/TPY -surer/I -surety/SM -surf/RDMSG -surface-active -surface-to-air -surface-to-surface -surface/RSGMD -surfaced/UA -surfaces/A -surfacing/A -surfactant/SM -surfboard/MGS -surfeit/MGSD -surfing/M -surge's -surge/ASDG -surgeon/SM -surgery/SM -surgical/Y -suricate/S -Surinam/M -Suriname/M -Surinamese -surjection/S -surjective -surly/PTY -Surman/M -surmise/DGS -surmount/G7DS -surmountable/I -surname/SDM -surpass/GkSD -surpassed/U -surplice/MS -surplus/MS -surprise/kSMDG -surprised/U -surprising/UY -surreal -surrealism/MS -surrealist/W1S -surreality -surrender/Sd -surreptitious/Y -surreptitiousness -Surrey/M -surrogacy -surrogate/MS -surround/DSJG -surrounding/M -surtax/SM -Surtees/M -surtitles -surtout -surveillance/MS -survey/AGSD -surveyor/SM -survivability/M -survival/SM -survivalist/S -survive/BGDS -survivor/SM -survivorship -Surya -Suryavarman/M -Susan/M -Susana/M -Susanna/M -Susannah/M -Susanne/M -susceptibility/MSI -susceptible/I -Susette/M -sushi/M -Susie/M -suspect/GSDM -suspecting/U -suspend/SNDRXGvV -suspended/U -suspense/M6 -suspension/M -suspensory -suspicion/SM -suspicious/PY -suspiration -suspire -Susquehanna/M -suss/GSD -Sussex/M -sustain/lGBLDS -sustainable/U -sustainer/M -sustenance/M -Sutcliffe/M -Sutherland/M -sutler/MS -Sutter/M -Sutton/M -Suttons -suture/DGMS -SUV -Suva/M -Suzann/M -Suzanne/M -suzerain/SM -suzerainty/SM -Suzette/M -Suzie/M -Suzuki/M -Suzy/M -Svalbard/M -Svarga -Svedberg -svelte/Y -Svelto/M -Sven/M -Svetlana/M -SVG -SVGA -svn -SVN -SW -swab/SMDG -Swabia -Swabian -swaddle/DGS -swag/DMGS -swage/SGD -swagger/dS -swaggerer/S -swaggeringly -Swahili/MS -swain/MS -SWAK -Swale -swallow-tailed -swallow/DGS -swallower/M -swallowtail/MS -swam -swami/SM -Swammerdam/M -swamp/DGZS2M -swampland/SM -swampy/T -swan/GMSD -swank/GDT2ZSz -swanky/TP -swanlike -Swansea/M -Swanson/M -swansong/S -swap/RSGD -swappable -sward/MDS -Swarga -swarm/MDSG -swarmer/S -swart -Swarthmore/M -swarthy/PT -Swartz/M -swash/DSG -swashbuckler/SM -swashbuckling -swastika/SM -swat/SRGD -swatch/MS -swath/MDGS -swathe/S -sway/SDG -swayback/DS -Swazi/MS -Swaziland/M -swear/RSG -swearword/MS -sweat/RZSGMD2z -sweatband/MS -sweatpants -sweatshirt/S -sweatshop/SM -sweatsuit/S -sweaty/PT -swede/SM -Sweden/M -Swedenborg/M -Swedish -Sweeney/M -sweep/kRSGJ -sweepstake/MS -sweet-talking -sweet-tempered -sweet/STY -sweetbread/SM -sweetbrier/SM -sweetcorn -sweeten/drS -sweetened/U -sweetening/M -sweetheart/SM -sweetie/SM -sweetish -sweetlip/S -sweetmeat/MS -sweetness -sweetshop/SM -swell/JDGS -swelling/M -swelter/Sdk -Swenson/M -swept -sweptback -swerve/DGS -swerving/U -Swift/M -swift/TYS -swiftie -swiftness -swifty/S -swig/MSDG -swigger/S -swill/SDG -swim/SRG -swimming/Y -swimsuit/MS -swimwear -Swinburne/M -swindle/DRGS -Swindon/M -swine/M -swineherd/SM -swing/RkZSG -swingarm -swingboat/S -swingeing/Y -swingier -swingle/SGD -swingletree/SM -swinish/Y -swinishness -Swinton/M -swipe/DGSM -swirl/DGYS -swirly/T -swish/SZDG -swishier -Swiss -switch-blade/SM -switch-over/M -switch/BDMRGS -switchback/MS -switchboard/MS -switched-on -switchgear -Swithin/M -Switzer/M -Switzerland/M -swivel/DGSM -swizz/S -swizzle-stick/SM -swizzle/MGD -swizzler -swollen -swoon/DSG -swoop/DGS -swoosh/DSG -sword/SmM -swordfish/SM -swordplay/M -swordsmanship/M -swordtail/M -swore -sworn -SWOT -swot/S -swum -swung -sybarite/MWS -Sybil/M -Sybille/M -sycamore/SM -sycophancy/S -sycophant/MSW1 -Sydney/M -Sykes/M -syllabary -syllabi -syllabification/M -syllabify/GNSnD -syllable/WSM -syllabub/M -syllabus/SM -syllogism/SM -syllogistic -sylph-like -sylph/MS -sylphlike -sylvan -Sylvan's -Sylvania/M -sylvatic -Sylvester/M -Sylvia/M -Sylvie/M -Symantec/M -symbiont/M -symbioses -symbiosis/M -symbiotic/Y -symbol/13WQ8-qSwM -symbolism/SM -symbolist -symbology -Symington/M -symlink/SGD -symmetrical/U -symmetry/Q8SWM1w -Symonds/M -sympathetic/UY -sympathomimetic -sympathy/SQ9s8WM -sympatric -sympatrically -sympatry -symphonists -symphony/SWM -symplast/W -sympodia -sympodial -sympodium -symposia -symposium/SM -symptom/MpWS1 -symptomatology/M -synaereses -synaeresis -synaesthesia -synaesthete/S -synaesthetic -synagogal -synagogue/MS -synapomorphy/S -synapse/WSM -synapsid/S -synapsis -synaptogenesis -sync/SDG -synch -synchromesh -synchronic -synchronically -synchronicity -synchronise/CSAGD -synchronised/U -synchroniser/CSM -synchronism/M -synchronize/AnDGNS -synchronized/CU -synchronizer/CSM -synchronizes/C -synchronizing/C -synchronous/Y -synchrony/89sqQ- -synchrotron/M -synclinal -syncline/MS -syncopal -syncopate/GDS -syncopation/M -syncopator/SM -syncope/nMN -syncytia -syncytial -syncytium -syndactyl/Y -syndic/nNMS -syndical -syndicalism -syndicalist/S -syndicate/SMDG -syndrome/SM -syndromic -synergetic -synergic -synergise -synergism/SM -synergist/S1 -synergistic -synergize -synergy/SM -synfuel/S -syngamous -syngamy -syngenesis -syngenetic -synod/MWwS -synodal -synoecious -synonym/SZWM -synonymity -synonymous/Y -synonymousness -synonymy/SM -synopses -synopsis/M -Synoptic/S -synoptic/S -synoptical -synoptically -synostoses -synostosis -synovial -syntactic/Y -syntactical -syntagm/S -syntagmas -syntagmata -syntagmatic/S -syntagmatically -syntax/SM -synth/S -synthase/S -syntheses -synthesis/rQ9S8dM -synthesise/ADGS -synthesize/ADGS -synthetic/SY -synthy -syntype/S -syphilis/M -syphilitic/S -syphon/d -Syracuse/M -Syria/M -Syriac/M -Syrian/MS -syringe/SMGD -Syriza/M -syrup/SM -syrupy -sysadmin/S -syscall/S -sysop/S -system/W1SM -systematic/S -systematise/nRSGD -systematist/S -systematize/NRSGnD -systemic/Y -systole/WSM -syzygy/S -Szandor -Szechuan/M -São -séance/MS -T -T'ang -T's -T-junction/S -T-shirt/S -t/7k -Ta -ta/o -tab/GMZSD -Tabasco/M -Tabb/M -tabbouleh/S -tabby/MS -Taber/M -tabernacle/MS -Tabitha/M -tabla/MS -table-top -table/MSGD -tableau/M -tableaux -tablecloth/SM -tableland/SM -tablemate -tablespoon/6SM -tablespoonful/MS -tablet/SM -tabletop/MS -tableware/M -tablier -tabloid/SM -taboo/DGMS -tabor/SM -Tabriz/M -tabular/Y -tabulate/SNGnD -tabulation/M -tabulator/SM -tac/D2ZG -tachistoscope/W1 -tachograph/S -tachometer/SM -tachycardia/SM -tachyon/S -tachyphylaxis -tachypnea -tachypnoea -tacit/PY -taciturn/Y -taciturnity/M -Tacitus/M -tack/SM -tackle/DRMGS -tacky/T -taco/MS -Tacoma/M -tact's/F -tact/jWM6p1w -tactful/U -tactfulness -tactic/MS -tactician/SM -tacticity -tactile/Y -tactility -tactless/Y -tactlessness -tactual/Y -tad -Tadcaster/M -Tadeusz/M -tadpole/SM -Taff/MZ -taffeta/MS -taffrail/MS -Taffy/MS -Taft/M -tag/GMDS -Tagalog/M -tagetes -tagged/U -tagger/S -tagliatelle -tagma -tagmata -Tahiti/M -Tahitian/S -Tahoe/M -taiga/SM -tail-end -tail-ender/S -tail/AMCDSG -tailback/MS -tailboard -tailcoat/S -taildragger/S -tailgate/G -tailgater/M -tailing/SM -tailless -tailor-made -tailor/dSM -tailpiece/S -tailpipe/MS -tailplane/S -tailspin/GSM -tailspun -tailwater/S -tailwheel -tailwind/SM -taint/SGD -tainted/U -taipan/S -Taipei/M -Taiping -Tait/M -Taiwan/M -Taiwanese -Tajikistan/M -Tajiri/M -take-home -take-off/SM -take-up -take/RfGSJ -takeaway/S -Takei/M -taken/caAf -takeover/MS -taker's/a -taker/cS -takes/IacA -taking/Aac -Talbert/M -Talbot/M -talc/M -talcum -tale/MS -talebearer/MS -talent/pMDS -talented/U -Taliban/M -Taliesin/M -talisman/WSM -talk/RDvSuZVG -talkathon/S -talkback -talkboard/S -talkie -talky/S -tall/T -Talladega/M -Tallahassee/M -tallboy/MS -Talley/M -Talleyrand/M -Tallinn/M -Tallis/M -tallish -tallness -tallow/ZM -Tallulah/M -Tally's -tally-ho's -tally-hos -tally/DSG -Talmud/W3M -Talmudist -talon/MS -taloned -talonid/S -talus/SM -Tam/MZ -tamale/MS -Tamar/M -Tamara/M -tamarack/MS -tamarin/S -tamarind/SM -tamarisk/S -tambourine/MS -tame/RTGDYS7 -tameability -tameable/U -tamed/U -tameness -Tameside/M -Tami/M -Tamil/SM -Tammany/M -Tammie/M -Tammy/M -tamp/DGS -Tampa/M -Tampax/M -tamper/rdS -Tampere -tampon/dMS -Tamworth -tan/SMJDRyG -tanager/SM -Tanaka/M -tanbark/SM -tandem/MS -tandoori/S -Tandy/M -tang/MZbS -Tanganyika/M -tangelo/MS -tangency/M -tangent/MS -tangential/Y -tangerine/MS -tangibility/SIM -tangible/IYS -tangibly/I -Tangier's -Tangiers -tangle's -tangle/DSUG -tango/SGMD -tangy/T -Tania/M -tank/GMR6DS -tankage -tankard/SM -tankbuster -tankette -tankful/SM -tankini/S -tankodrome -tanned/U -Tannenbaum/M -tannery/SM -Tannhäuser/M -tannin/SM -tanning/M -tans/Z -tansy/MS -tantalise/k -tantalize/k -tantalum/sQ-98qM -Tantalus/M -tantamount -tantra/S -tantrum/SM -Tanya/M -Tanzania/M -Tanzanian/S -Tao/M -Taoiseach/M -Taoism/MS -Taoist/SWM -tap-dance/G -tap/drRDMGS -tapas -tape-record/G -tape/Sp7M -tapelike -taper/d -tapestry/SMD -tapetal -tapetum/S -tapeworm/MS -tapioca/SM -tapir/SM -tapless -tappable -tapped/U -tappet/SM -taproom/MS -taproot/S -tapster/S -tar/DMZGS -Tara/M -taramasalata -Taranaki/M -tarantella/SM -Tarantino/M -tarantula/SM -Tarawa/M -tarball/S -tardigrade/S -tardiness -tardive -tardy/TY -tare/SM -target/dSMGD -targetless -tariff/MGDS -tarmac/DGS -tarmacadam -tarn/MS -tarnish/G7DS -tarnished/U -taro/SM -tarot/SM -tarpaulin/SM -tarpon/SM -tarragon/MS -tarry/DTSG -Tarrytown/M -tarsal -tarsi -tarsus/M -tart/SMYPTGD -tartan/MS -tartanry -tartar/SMW -tartare -Tartarean -Tartarus/M -Tartuffe/M -tarty/TYP -tarweed/S -Taryn/M -Tarzan/M -Tash/M -Tashkent/M -task/SDMG -taskbar -taskforce -taskmaster/MS -taskmistress/MS -Tasman -Tasmania/M -Tasmanian/S -Tass/M -tassel/GMDS -taste/EM6jS -tasted -tasteful/EP -tasteless/PY -taster/SM -tasting/S -tasty/TPY -tat/rSGDZ -tatami/SM -Tatar/SM -Tatarstan -Tate/M -Tatiana/M -Tatoeba/M -tatter/S -tattered -Tattersall/M -tattier -tattle/DRSG -tattoo/RGSMD -tattooist/SM -Tatum/M -tau/M -taught/AU -taunt/kRGDS -Taunton -taupe/M -Taurus/M -taut/TY -tauten/dS -tautness -tautologous -tautology/MS1w -tavern/SM -taverna/S -Tavistock/M -tawdry/PTY -tawny/TM -tax-deductible -tax-free -tax/SklnMJG7D -taxa -taxable/S -taxation/M -taxed/Uc -taxer/S -taxi/DSGM -taxicab/MS -taxidermal -taxidermic -taxidermically -taxidermy/3SM -taxies -Taxil/M -taximeter/SM -taxing/c -taxiway/MS -taxon -taxonomy/13wWSM -taxpayer/MS -taxpaying -Tay -Taylor/M -Tayside/M -Tb -TBA -Tbilisi/M -Tbit -TBW -Tc -Tchaikovsky/M -TCO -TCP -TDD -Te -tea-leaf -tea-leaves -tea/SM -teabag/S -teacake/SM -teach-in -teach/RGSJ7 -teachable/U -teacherly -teaches/A -teaching/M -teacloth -teacup/6SM -teacupful/SM -Teagarden/M -teahouse/S -teak/MS -teal/SM -team/MDGS -teammate/S -teamster/SM -teamwork/M -teapot/SM -tear-duct/S -tear-gas/GD -tear-jerker -tear-off -tear-stained -tear/6pMGSj -tearaway -teardrop/SM -tearfulness -tearjerker/S -tearless/Y -tearlessness -tearoom/MS -teas/RSDkG -tease -teasel/MS -teashop/MS -teaspoon/6MS -teaspoonful/MS -teat/MS -teatime/SM -teazel -teazle -tebibit/S -tebibyte/S -tech -techie/S -technetium/M -technetronic -technical/YS -technicality/SM -technician/SM -technique/SM -techno -technobabble -technocentric -technocomplex -technocracy/SM -technocrat/WS -technocratically -technofear -technofreak -technographer -technography -technologism -technology/3wSM1 -technomania -technomaniac -technomic -technopark -technophile/S -technophilia -technophilic -technophobe/S -technophobia -technophobic -technopolis -technopolitan -technopreneur/S -technopreneurial -technoscience -technoscientist -technospeak -technosphere -technostress -technostructure/S -technotronic -techs -techy -tectonic/YS -Tecumseh/M -Ted/M -teddy/MS -tedious/YP -tedium/M -tee-heed -tee/SGdM -teem/DGS -teen/SZM -teenage/RD -teens/Z -teensy-weensy -teensy/T -teeny-bopper/MS -teeny-weeny -teeny/T -teenybop -teenybopper/S -teepee/MS -Tees/M -Teesside/M -teeter/dS -teeth/DGM -teethe -teetotal/R -teetotalism/MS -TEFL -Teflon/M -tegmenta -tegmentum -Tegucigalpa/M -Teheran's -Tehran/M -Teignbridge -Teilhard/M -TEirtza/M -tektite/MS -Tektronix/M -Tel. -telco/S -Tele-Computer -telecast/RSG -Telecom -telecom/S -telecommunicate/nN -telecommunication/M -telecommute/SRG -telecomputer/S -telecomputing -teleconference/GMDS -telecourse/S -Teledyne/M -telefacsimile -telefax -telefilm/S -Telefonica -Telefunken/M -telegenic -telegram/SGDM -telegraph/WZD1GSM3R -telegraphese -telegraphy/3M -telekinesis/M -telekinetic -Telemann/M -telemark/G -telemarketer/S -telemarketing -telemedicine -telemeter/WSM -telemetry/MS -teleology/wM -teleoperate/GD -teleoperation -teleoperator -teleost/S -telepath/SGD -telepathic -telepathize/SGD -telepathy/Q3S1M -telephone/G3ZMSDW -telephony/M -telephoto/S -telephotography -teleplay/S -teleport/GSD -teleportation -teleporter/S -telepresence -teleprinter/SM -teleprocessing -Teleprompter -TelePrompTers -telerecording/S -telesales -telescope/MGS1DW -telescreen -teletext -telethon/MS -Teletype/MS -televangelism/S -televangelist/S -televiewer/S -televiewing -televise/DSXNG -television/M -televisionary/S -televisual/Y -telework/G -teleworker/S -telex/SDGM -Telford/M -tell-tale/SM -tell/RYkGS -tells/A -telltale/S -Telluride/M -telluride/S -tellurium/M -telly/MS -telnet/SGDB -telnetable -telogen -telomerase -telomere/SW -telophase -telson/S -Telstar/M -Telugu/M -temazepam -temerarious/P -temerity/SM -temp/GMRSTD -Tempe/M -temper/dESM -tempera/MLS -temperament/o -temperamental -temperance/MI -temperate/IY -temperateness -temperature/MS -tempest/SM -tempestuous/Y -tempestuousness -tempi -Templar/S -template's -template/FS -templated -templating -temple/MS -Templeton/M -tempo/SM -temporal/Y -temporarily -temporariness -temporary/FS -temporise/DSkRG -temporize/DSkRG -tempt/SRnGDkN -temptation/M -temptress/SM -tempts/F -tempura/SM -ten-year -ten/lSHg7M -tenability/SM -tenable/U -tenace/S -tenacious/Y -tenaciousness -tenacity/S -tenancy/SM -tenant/MGSD -tenantry -tench/M -tend/FRKSIGD -tended/EU -tendency/SM -tendentious/PY -tender-hearted/YP -tender/PdQ8Ys9 -tenderer -tenderest -tenderfoot/MS -tenderloin/SM -tending/E -tendinitis -tendon/SM -tendril/MS -tends/E -Tenebrae -tenebrous -tenement/SM -tenet/SM -TENEX/M -Tenison/M -Tenneco/M -tenner -Tennessee/M -tennis/M -Tennyson/M -tenon/SM -tenor/SM -tenpin/SM -tens/xNTSDXG -tense/YIT -tenseness -tensile -tension/KMS -tensioned -tensioner/S -tensioning -tensionless -tensive -tensor/SM -tent/DFMGS -tentacle/DSM -tentacular -tentaculate -tentative/Y -tentativeness -tenter/M -tenterhook/MS -tenth/Y -tents/I -tenuous/Y -tenuousness -tenure/MSD -tepee/MS -tephrite/W -tepid/Y -tepidaria -tepidarium -tepidity/S -tepidness -tequila/MS -terabit -terabyte/S -teraflop/S -terapixel/S -terascale -teratogen/SW -teratogenicity -teratological -teratologist/S -teratology/M -terbium/M -tercel/M -tercentenary/S -tercentennial/S -terebratulid/S -Terence/M -Teresa/M -Teri/M -teriyaki -term-time -term/GDSM -termagant/SM -terminable/I -terminal/SYM -terminate/CNSn -terminated -terminating -termination/MC -terminator/SM -termini -terminology/SMw1 -terminus/M -termism -termite/SM -tern/SM -ternary/S -terns/I -terotechnological -terotechnologist/S -terotechnology -terpene/S -Terpsichore/M -Terpsichorean -Terra/M -terrace/GSMD -terracotta -terraform/SGD -terraformer/S -terrain/SM -Terrance/M -terrapin/MS -terrarium/SM -terrazzo/M -Terre/M -Terrell/M -Terrence/M -terrestrial/YSM -Terri/M -terrible/Y -terribleness -Terrie/M -terrify/1SWGDk -terrigenous -Terrill/M -terrine/MS -territorial -territoriality/M -territory/MSo -terror-stricken -terror/qs9Q83-SM -terrorism/M -terrorist/W -terroristically -Terry/M -terry/SRM -terse/TY -terseness -tertian -tertiary/S -Tertullian/M -Terylene -TESL -Tesla/M -TESOL -Tessa/M -tessellate/NDGSn -tessellation/M -tessera -tesserae -tesseral -tessitura -test's/F -test-drive/G -test-tube -test/KFDCGSA -testability/M -testable -testament/MS -testamentary -testate/I -testator/SM -testatrix -tested/U -testee/S -tester/FSCM -testes -testicle/MS -testicular -testiculate -testify/RDSG -testimonial/MS -testimony/MS -testiness -testis/M -testosterone/SM -testy/TY -tetanic/Y -tetanus/M -tetchy/TY -tether/dMS -tethered -Tethys -tetra/SM -tetrachloride/M -tetrachord/SM -tetracyclic -tetracycline/MS -tetrafluoride -tetrafluoroethylene -tetragon/oMS -tetragonal -tetrahedra/o -tetrahedral -tetrahedrite -tetrahedron/SM -tetrahydrocannabinol -tetramer/S -tetramerous -tetrameter/MS -tetraplegia -tetraplegic/M -tetraploid/S -tetraploidy -tetrapod/S -tetrarch -tetrastich -tetrastyle -tetrasyllable/W -tetrathlon -tetravalent -tetrode -Tettenhall -Teuton/MW -Tewkesbury -Tex -TeX's -Texaco/M -Texan/S -Texas/M -text/pRGDKSFM -textbook/MS -textbox/S -textile/SM -Textron/M -textspeak -textual/FY -textualism -textualist/S -textural -texture/SMoDG -textured/U -tgz -Th -Thackeray/M -Thad/M -Thaddeus/M -Thai/S -Thailand/M -thalami -thalamus/M -thalidomide/SM -thalli -thallium/M -thallophyte/MS -thallus -Thames -Thameslink -than -thane/SM -thank/D6jGpS -thankfulness -thankless/Y -thanklessness -thanksgiving/MS -Thant/M -Tharp/M -that'd -that'll -that've -that/M -thatch/MRDSG -Thatcher/M -Thatcherite -thatching/M -thaumasite -thaumaturge/ZW3 -thaumaturgical -thaw/DGS -Thayer/M -Thayne/M -THC -the/JG -Theadora/M -theanthropic -theatre/S1Mw -theatregoer/MS -theatregoing -theatrical/S -theatricality/MS -theatrics -Thebes -theca -thecae -thecate -thee -theft/MS -their/S -theism/MS -theist/MWS -Thelema -Thelemic -Thelemically -Thelemite/S -Thelma/M -them/W1 -thematic/S -theme/MSDG -Themistocles/M -themself -themselves -then -thenar -thence -thenceforth -thenceforward -Theo/M -theobromine -theocentric -theocracy/SM -theocratic -theodicean -theodicy/S -theodolite/SM -Theodora/M -Theodore/M -Theodoric/M -Theodosia/M -Theodosius/M -theologian/MS -theology/Sw1M -Theophilus/M -theophoric -theophorous -Theophrastus/M -theophylline -theorem/SM -theoretic/Y -theoretical -theoretician/SM -theory/Qs-89q3MS -theosophy/w3WSM -therapeutic/YS -therapeutical -therapeutist/S -therapist/SM -therapsid/S -therapy/SM -Theravada/M -there'd -there'll -there're -there've -there/M -thereabout/S -thereafter -thereat -thereby -therefore -therefrom -therein -theremin/S -thereof -thereon -Theresa/M -Therese/M -thereto -theretofore -thereunder -thereunto -thereupon -therewith -therm/oSM -thermal/S -thermic -thermionic/S -thermionics/M -thermistor/SM -thermite -thermochemical -thermocouple/SM -thermodynamic/SY -thermoelastic -thermoelectric -thermoformed -thermoforming -thermogram/S -thermograph -thermographic -thermography -thermoluminescence/M -thermometer/SMW -thermometry/M -thermonuclear -thermophile/S -thermophilic -thermopile/MS -thermoplastic/S -thermoregulate/SGDN -thermoregulatory -Thermos/MS -thermoset/S -thermosetting -thermostable -thermostat/1MSW -Theron/M -theropod/S -thesauri -thesaurus/SM -these/S -Theseus -thesis/M -Thespian/S -Thessalian/S -Thessalonian -Thessaly/M -theta/MS -theurgic -theurgical -theurgist/S -theurgy -they -they'd -they'll -they're -they've -thiamin -thiamine/M -thiazide/S -thick-skinned -thick/TPY -thicken/Sdr -thickening/M -thicket/MS -thickhead/S -thickheaded/P -thickish -thicknesser/S -thicknesses -thicko/S -thickset -thief/M -Thiensville/M -Thierry -thieve/GyDS -thievery/SM -thievish -thievishness -thigh-bone/MS -thigh/MS -thimble/6MS -thimbleberry/S -thimbleful/MS -Thimphu/M -thin/TDRGPYS -thine -thing/M -thingamabob/MS -thingamajig/SM -thingummy/S -thingummybob/S -thingy/S -think-tank -think/RJ7GS -thinkable/U -thinking/U -thinks/A -thinnish -Thinsulate -thiol/S -third-class -third-hand -third-party -third-rate -third/Y -thirst/2SMzGDZ -thirsty/T -thirteen/HM -thirty-eight/H -thirty-first/S -thirty-five/H -thirty-four/H -thirty-nine/H -thirty-one -thirty-onefold -thirty-second/S -thirty-seven/H -thirty-six/H -thirty-three/H -thirty-two -thirty-twofold -thirty/HMS -this -this'd -this'll -thistle/MS -thistledown/M -thither -thole/M -Thom/M -Thomas/M -Thomism/M -Thomist/S -Thomistic -Thompson/M -Thomson/M -thong/MSD -Thor/M -thoracic -thorax/MS -Thoreau/M -thorium/M -thorn/DpM2ZS -Thorn/M -Thorndike/M -thornlike -thornproof -Thornton/M -thorny/T -thorough/YP -thoroughbred/S -thoroughfare/MS -thoroughgoing -thoroughwort -Thorpe/M -Thorson/M -those -thou -though -thought's -thought-provoking -thought/A -thoughtful/Y -thoughtfulness -thoughtless/YP -thoughts -thousand/HSM -Thrace/M -Thracian/M -thrall/SM -thrash/RJSDG -thrashing/M -Thrasymachus/M -thread's -thread/AGDS -threadbare -threadlike -threat/SM -threaten/dSk -three-colour -three-cornered -three-dimensional/Y -three-fold -three-handed -three-legged -three-line -three-phase -three-piece -three-ply -three-point -three-pronged -three-quarter/S -three-way -three-wheeler -three/HMS -threepence/M -threepenny -threescore -threesome/SM -threnody/SM -threonine -thresh/SDRG -threshold/MS -threw/c -thrice -thrice-married -thrift/2pSMzZ -thrifty/T -thrill/DRMkSG -thrip/S -thrive/DSkG -throat/2DMZzS -throaty/TP -throb/SGD -throbber/S -throe/SM -thrombi -thrombocytopenia -thrombocytopenic -thromboembolic -thromboembolism/S -thrombolysis -thrombolytic -thrombose/SD -thrombosis/M -thrombotic -thrombus/M -throne's -throne/CSD -throng/SGMD -throttle/DMGS -through -through-traffic -throughout -throughput/SM -throw-in -throw/RSG -throwaway/MS -throwback/MS -throwdown -throwing/c -thrown/c -throws/c -thrum/GDS -thrush/SM -thrust/GRS -Thu -thud/DSMG -thug-like -thug/SM -thuggery/M -thuggish -thuggishness -Thule/M -thulium/M -thumb/DGMS -thumbnail/SM -thumbprint/S -thumbscrew/MS -thump/MGSD -thumper -thunder/SZkMd -thunderbird/SM -Thunderbird/SM -thunderbolt/MS -thunderbox -thunderbug/S -thunderclap/MS -thundercloud/SM -thunderflash/S -thunderfly/S -thunderhead/S -thunderless -thunderous/Y -thunderousness -thunderstorm/MS -thunderstruck -thunk -Thur/S -Thurman/M -Thurrock/M -Thursday/SM -Thurston/M -thus -thusly -thwack/GDS -thwart/SDG -thwarter/M -thy -thyasirid -thyme/MS -thymidine -thymine/M -thymol -thymus/SM -thyristor/SM -thyroid/S -thyroidal -thyrotrophic -thyrotropic -thyrotropin -thyroxine/M -thyself -THz -Ti -Tiago/M -tiara/SM -TiB -Tiber/M -Tiberius/M -Tibet/M -Tibetan/S -tibia/MSO -tibiae -Tiburon/M -tic-tac -tic/SGRD -tick-tack -tick-tock/GSDM -tick/MS -ticker-tape -ticket-day -ticket-of-leave -ticket/SMdZ -tickety-boo -tickle/DSGR -ticklish/P -tickover -Ticonderoga/M -tidal -tiddly/T -tiddlywinks -tide/ZD2SoJG -tideline/S -tidemark/S -tidewater/SM -tideway/M -tidier/U -tidily/U -tidiness/U -tidy/GYSDT -tie-break -tie-in -tie/RSMDG -tieback/SM -tiebreaker/SM -tied/UA -Tienanmen -tier/D -Tierney/M -ties/AU -tiff/MS -TIFF/S -Tiffany/M -tiger/MS -tigerish -tight-arsed -tight-fisted -tight-fitting -tight-knit -tight-lipped -tight/SYPT -tighten/dS -tightened/c -tightly-knit -tightrope/MS -tigress/MS -Tigris/M -Tijuana/M -Tikal/M -tike's -tiki/S -tilapia -tilde/SM -tile/RDSMG -till/DRSG7 -tillage/SM -Tillard/M -tilled/E -tiller/EMS -tillite/S -Tillman/M -Tilly/M -tilt/DGS -tilters -tilth/M -Tim/ZSM -Timaeus -timber/SdM -Timberlake -timberline/S -timbre/MS -timbrel/SM -Timbuktu/M -time's/c -time-and-motion -time-consuming -time-honoured -time-lapse -time-out/S -time-server/SM -time-serving/S -time-share/DGS -time-spans -time-wasting -time-work -time-worn -time/pYRDSJMG -timebase -timed/a -timekeeper/SM -timekeeping/M -timeless/Y -timelessness -timeline/S -timeliness/U -timely/TP -timeout/S -timepass -timepiece/SM -times/ca -timescale/S -timeshare/SD -timeslot/MS -timesome -timespan -timestamp/SGD -timetable/SDGM -Timex/M -timid/Y -timidity/SM -timidness -timing/M -Timmy/M -timocracy/S -Timor/M -Timorese -timorous/Y -timorousness -Timothy/M -timpani -timpanist/S -Timur/M -tin-glaze -tin-opener -tin-pan -tin-plate/M -tin-tack -tin/DGZSMz2 -Tina/M -tincture/DSMG -tinder/M -tinderbox/SM -tine/MSZ -tinfoil/M -Ting's -ting/D -tinge/S -tingeing -Tingey/M -tingle/GDS -tingly/T -tinker/dMS -tinkerbird/S -tinkerer/S -tinkle/DSGY -tinnitus/M -tinny/TP -tinplate/D -tinpot -tinsel/MGSDY -Tinseltown/M -tinsmith/SM -tint/MSDG -tintinnabulation/SM -tinware/M -tiny/PT -Tioga/M -tip-offs -tip-top -tip/RSGMD -Tipp-Ex -Tippecanoe/M -Tipperary/M -tippet/SM -Tippex -tipple/DSRG -tips/zZ2 -tipster/SM -tipsy/TP -tiptoe/DGS -Tipton -tiptop -Tir-na-nog -tirade/SM -tiramisu -Tirana/M -Tirane -tire/cAGDS -tired/Y -tiredness -Tiree/M -tireless/Y -tirelessness -tiresome/Y -tiresomeness -tiring/U -Tirol/M -Tirolean/S -tissue/MS -tit-for-tat -tit/RMS -titan/MSW -Titania/M -Titanic's -titanically -titanite -titanium/M -titbit/SM -tithe/SMDG -Titian/M -titillate/SnDGkN -titillation/M -titivate/nSNDG -titivation/M -title's -title-deed/MS -title-page -title/SGAD -titled/U -titleholder/MS -titmice -titmouse/M -Tito/M -titrate/SGD -titration/M -titre/MSN -titter/d -tittle-tattle -tittle/MS -titular/Y -Titus/M -tizz/Z -tizzy/MS -TKO -Tkáč -TLC -TLS -Tm -TNT -to-do/S -to/IU -toad/MZS -toadstool/SM -toady/SDGM -toadyism/M -toast/DGRZMS -toasting-fork -toastmaster/SM -toastmistress/S -toasty/T -tobacco/MS -tobacconist/MS -Tobago/M -Tobias/M -Tobin/M -toboggan/S3rMd -tobogganist -tobramycin -Tobruk/M -Toby/M -tobyman -tobymen -toccata/M -tock/GMDS -tocopherol/S -tocsin/MS -today/M -Todd/M -toddle/DGSR -toddy/MS -Todmorden/M -toe/DMGS -toecap/MS -TOEFL -toehold/SM -toenail/MS -toff/SD -toffee/SM -tofu/S -tog/MGSD -toga/DSM -together -togetherness -toggle/DGMS -Togo/M -Togolese -toil-worn -toil/RSMDG -toilet/ySdM -toiletry/MS -toilette/SM -toilsome/Y -toilsomeness -toing -toity -token/SQM8 -tokenisation -tokeniser/S -tokenism/SM -Toki/M -Tokugawa/M -Tokyo/M -Tokyoite/MS -told/AU -Toledo/M -tolerability/MI -tolerable/YI -tolerably/I -tolerance/ISM -tolerant/IY -tolerate/NDGBSn -toleration/M -Tolkien/M -Tolkienesque -toll-bridge/MS -toll-gate/SM -toll-house/M -toll-road/MS -toll/DGS -tollbooth/MS -Tolle/M -Tolman/M -Tolstoy/M -toluene/M -tom-tom -tom/MS -tomahawk/MDGS -Tomas -Tomaselli/M -tomato/M -tomatoes -tomb/SM -tomblike -tombola/M -tomboy/SM -tomboyish -tombstone/SM -tomcat/SM -tome/SM -Tomer/M -tomfool -tomfoolery/MS -Tomkins/M -Tomlin/M -Tomlinson/M -Tommie/M -Tommy/MS -tomography/MW -Tomoko/M -tomorrow/MS -Tompkins/M -tomtit/SM -Tomé/M -ton/droMWS -tonal -tonality/SM -Tonbridge -tone's/cf -tone-deaf -tone/IRDGS -toneless/Y -tonelessness -tones/fc -tong/S -Tonga/M -Tongan/SM -tongue-in-cheek -tongue-tied -tongue-twister/S -tongue/GSMD -tonguing/M -Toni/M -Tonia/M -tonic/MS -tonight/M -tonkatsu -tonnage/SM -tonne/MS -tonner -tonometer -tonsil/SM -tonsillar -tonsillectomy/SM -tonsillitis/M -tonsorial -tonsure/SMGD -Tony/M -Tonya/M -too -took/afcA -tool's -tool/AGDS -toolbar/SM -toolbox/MS -toolchain/S -toolkit -toolmaker/SM -toolmaking/M -tooltip/S -toon/S -toot/GRDS -tooth/zMpDZ -toothache/MS -toothbrush/SM -toothbrushing -toothcarp -toothpaste/MS -toothpick/SM -toothsome -toothy/T -tootle/DSG -toots/Z -tootsie/M -tootsy/SM -top-down -top-heavy -top-level -top-line -top-notch -top-up -top/MWwGpR1JDS -topaz/MS -topcoat/MS -topdressing/S -Topeka/M -toper/M -topflight -topgallant/M -topiary/S -topic/MS -topicality/MS -topknot/MS -toplessness -topman -topmast/SM -topmen -topminnow/S -topmost -topographer/MS -topography/S1WMw -topology/w13SM -toponymics -toponymy -topophilia -topping/M -topple/GDS -tops/Z -topsail/MS -topside/SM -topsoil/M -topspin/MS -topsy-turvy -toque/MS -tor/M -Torah/MS -Torbay -torch-bearer/SM -torch/SMDG -torchlight -tore -toreador/SM -Torfaen/M -torment/GDkS -tormentor/SM -torn -tornadic -tornado/MS -tornadoes -Torness -toroid/oSM -toroidal -Toronto/M -torpedo/DMG -torpedoes -torpid/Y -torpidity/S -torpor/MS -Torquay -torque/DSGM -torquey -torquier -torquiest -torr -Torrance/M -torrent/SM -torrential -Torres -Torricelli/M -torrid/Y -torridness -Torrington/M -torsion's/I -torsion/MSo -torsional -torso/SM -tort's -tort/FSEA -torte/MS -tortelli -tortellini/M -tortilla/MS -tortious/Y -tortoise/MS -tortoiseshell/SM -tortuous/Y -tortuousness -torture/RDGS -torturous -torus/SM -Torvalds/M -Tory/SM -tos -Tosca/M -Toscanini/M -tosh -Toshiba/M -toss-up/SM -toss/GRSD -tostada/S -tostado/S -tosylate/S -tot/DSoMG -total/s9MDGS -totalitarian/S -totalitarianism/SM -totality/SM -Totalizator/M -Tote's -tote/GS -totem/MS -totemic -totemism -totemist/S -totemistic -Toto/M -Tottenham/M -totter/Sdk -totting-up -toucan/MS -touch-and-go -touch-judge/S -touch-sensitive -touch-tone -touch-typists -touch/AGDS -touchable/U -touchdown/MS -touched/U -toucher/S -touching/Y -touchless -touchline/MS -touchpad -touchpaper -touchpoint/S -touchscreen/S -touchstone/SM -touchwood -touchy-feely -touchy/TPY -touché -tough-minded -tough/GYPTSD -toughen/dS -Toulon/M -Toulouse/M -toupee/MS -tour/CSGMFD -tourer/SM -tourism/MS -tourist/ZMSGD -touristic -touristically -tourmaline/SM -tournament/MS -tourney/DGSM -tourniquet/MS -tourtière -tousle/DSG -tout/DSG -tow-bar/MS -tow-coloured -tow-head/SMD -tow-line/SM -tow-path/MS -tow-rope/SM -tow/DRGS -toward/S -towel/SMDG -tower/dk -Towler/M -town/SmM5 -townee -townie/SM -townland/S -Townley/M -townscape -Townsend/M -townsfolk -township/MS -townspeople/M -tows/f -Towsley/M -toxaemia/M -toxaemic -toxic/S -toxicant/S -toxicity/SM -toxicology/3Mw -toxigenicity -toxin/MS -toxophilite/S -toxoplasma -toxoplasmosis -toy/MDSG -toymaker/SM -Toynbee/M -Toyoda/M -Toyota/M -toyshop -trabecula -trabeculae -trabecular -trabeculate -trace's -trace/ANDGnS -traceability -traceable/U -traced/U -traceless/Y -tracer/ZSM -tracery/SM -traceur/SM -Tracey/M -trachea/M -tracheae -tracheal -tracheotomy/MS -trachoma -trachomatous -Traci/M -Tracie/M -tracing/MS -track-laying -track/GMRSDp -trackback/S -trackball/S -trackbed -tracked/U -trackie/S -trackpad -tracksuit/MS -trackway/S -tract's/F -tract/E7ASF -tractability/I -tractable/IY -tractably/I -traction/FCESMA -tractive -tractor/FSMCA -tracts/C -Tracy/M -trad -trade-in/S -trade-off/S -trade/Mm5GRSD -trademark/GSDM -tradescantia -tradespeople -tradition/SMo -traditional/3 -traditionalism/MS -traditionalist/W -traditionally/U -traduce/GRDS -traducement -Trafalgar/M -traffic-calmed -traffic-calming -traffic/pDRMGS -trafficking/S -Trafford -tragedian/SM -tragedienne/SM -tragedy/SM -tragi -tragic/Y -tragical -tragicomedy/MS -tragicomic -tragus -trail/MGRSD -trailblazer/MS -trailblazing -trailer/d -trails/F -train-bearer/S -train-spotter/M -train-spotting -train/MADGS -trainable/U -trained/U -trainee/SM -traineeship/S -trainer/MS -training/MS -trainload -trainman/M -trainmen/M -trainspotter/S -trainspotting -traipse/SGD -trait/SM -traitor/MS -traitorous/Y -trajectory/SM -tram/SM -tramcar/S -tramlines -trammel/SDG -trammelled/U -tramontana -tramp/RDGS -trampette -trample/DSG -trampoline/SM -trampolinist -tramway/SM -trance/MS -tranche/MS -Tranmere -tranny/S! -tranquil/Y -tranquillity/S -tranquilly/Q8q-s9 -trans -transact/x -transalpine -transaminate/SGDN -transatlantic -transborder/S -transceiver/SM -transcend/SDG -transcendence/MS -transcendent/oY -transcendental/3 -transcendentalism/SM -transcendentalist -transclude/SGD -transcode -transcompile/SGD -transcontinental -transcribe/RGNSDX -transcript/MS -transcription/M -transcriptional -transcriptionally -transcriptome/S -transcurrent -transduce/SGDN -transducer/MS -transect/SG -transept/SM -transexual/SM -transfect/SGD -transfectant -transfection -transfer/DR7SGMg -transferability/M -transferee/SM -transference/SM -transferor/SM -transferral/SM -transferware -transfinite -transfixion -transform/R7 -transformational -transformationally -transformative -transformed/U -transgender/d -transgenderism -transgenderist/S -transgene/S -transgenic -transgress/NSDVGX -transgression/M -transgressor/S -transhistorical -transhumanism -transhumanist -transience/ZSM -transiency/S -transient/SY -Transifex -transistor/Q8MS -transit/dxXuvNVy -transition/DMG -transitive/IPY -transitivity/M -translatability/M -translatable/U -translate/DgNGnS -translated/aU -translates/a -translating/a -translation/aSM -translational -translator/MS -transliterate/GnD -translocate/GDS -translocation/S -translucence/ZM -translucency/SM -translunar -transman -transmarine -transmembrane -transmen -transmigrant/S -transmissible -transmission/AM -transmissivity/S -transmit/AXGNSD -transmittable -transmittal/MS -transmittance/MS -transmitter/MS -transmogrification/M -transmogrify/nSDNG -transmural -transmutability -transmutative -transmuter/S -transnational/S -transnationalism -transom/SM -transonic -transparency/SM -transparent/Y -transpeople -transperson -transpersonal -transphobe/S -transphobia -transphobic -transpile/SGDR -transpiration/M -transpire/DnNSG -transplant/7Nn -transponder/M -transport/MBnN -transportable/U -transportation/M -transposable -transpose/N -transposed/U -transposon/S -transputer/MS -transracial -transsexual/SM -transsexualism/MS -transsexuality -transubstantiation/SM -transuranic -Transvaal/M -transversal/M -transverse/Yo -transvestism/SM -transvestite/SM -transvestitism -transwoman -transwomen -Transylvania/M -Transylvanian -trap/JSRDMG -trapdoor/S -trapeze/SM -trapezia -trapezii -trapezium/SM -trapezius -trapezoid/SM -trapezoidal -trappable/U -Trappist/SM -trapshooting/M -trash/SGD2MZ -trashy/TP -trauma/Q8SW1M -traumata -traumatisation -traumatism -traumatization -travail/SDGM -travel/DRGJS -travelled/U -travelogue/MS -Travers -traversable -traversal/SM -traverse/DSG -travertine/M -travesty/MDSG -Travis/M -Travolta/M -trawl/SRGD -tray/SM -Traynor/M -treacherous/PY -treachery/MS -treacle/MY -tread/ASG -treadle/DSGM -treadmill/MS -treason/S7M -treasonous -treasure-trove/SM -treasure/DRSZMG -treasury/SM -treat/LM7ZDSG -treatable/U -treated/KUAa -treating/a -treatise/MS -treatment/KSM -treats/aA -treaty/MS -treble/SDG -Treblinka/M -tree/MpGS -treelike -treeline -treetop/MS -trefoil/SM -trek/SRDGM -Trekkie/SM -trellis/MdS -trelliswork -trematode/SM -Tremayne/M -tremble/SGYkD -trembler/M -trembly/T -tremendous/Y -tremendousness -tremolo/MS -tremor/SMd -tremulous/YP -trench's -trench/AGDS -trenchancy/SM -trenchant/Y -trencher/mSM -trend/DzZ2MSG -trendsetter/S -trendsetting -trendy/T -Trent/M -Trenton/M -trepanned -trepidation/MS -Trescothick -trespass/RDSG -tress/aMS -tresses/E -trestle/MS -Tretikov/M -Trevino/M -Trevor/M -trews -tri-axle/S -tri-band -triable -triac/S -triacetate -triad/WSM -triage/SDMG -trial's/Aa -trial/KaA -trialled -trialling -trials/Aa -triangle/SM -triangular/Y -triangulate/NnSGD -triangulation/M -Triassic -triathlete/S -triathlon/S -triatomic -triaxial -triazine -tribal/Y -tribalism/M -tribe/SmM5 -tribrach -tribrachic -tribrachs -tribulation/SM -tribunal/SM -tribune/SM -tributary/SM -tribute's -tribute/FSE -trice -tricentennial -triceps/M -triceratops/M -trichiasis -trichina/M -trichinae -trichinoses -trichinosis/M -trichloroethane -trichloroethylene -trichological -trichologist/S -trichology -trichome/S -trichomoniasis -trichopteran/S -trichotillomania -trichotomous -trichotomy/S -trichromatic -Tricia/M -trick/RSGD2MzZ -trickery/SM -trickish -trickle/DSG -trickster/MS -tricky/TP -triclinic -tricolour/SDM -tricot -tricuspid -tricycle/GSM -tricyclic/S -tricyclist/S -trident/SM -tridimensional -tried/U -triennial/YS -trier/MS -Trieste/M -triffid/S -trifle/GRMSD -trifocals -trifoliate -trig/DRGS -trigeminal -trigger-happy -trigger/SdA -triggerfish/S -triglyceride/MS -triglyph/S -triglyphic -trigonocephaly -trigonometry/WwM -trigram/S -trigraph/S -trihedral -trike/M -trilateral -trilby/MS -trilinear -trilingual -trill/SMGD -trillion/HS -trillium/SM -trilobite/SM -trilogy/SM -trim/DTGJSRY -trimaran/SM -Trimble/M -trimer/S -trimeric -trimerous -trimester/SM -trimeter/S -trimethoprim -trimetric -trimetrical -trimmed/U -trimming/M -trimness -trimodal -trimonthly -Trina/M -trinary -trine/S -Trinidad/M -Trinidadian/S -trinitrotoluene/M -trinity/SM -trinket/SM -trinomial/S -trio/SM -triode/SM -triolet/S -trioxide/M -trip/SDRGMY -tripartite -tripe/M -triphthong/S -triphthongal -triplane/S -triple/SGD -triplet/SM -triplex/SD -triplicate/S -triplication/M -triploblastic -triploid/S -triploidy -triply/N -tripod/SM -tripodal -Tripoli/M -tripos/SM -Tripp/M -tripping/Y -triptan/S -triptych/M -triptychs -tripwire/SM -triquetral -trireme/SM -trisect/SGD -trisection/S -trisector/S -Trish/M -Trisha/M -trishaw/S -trisodium -trisomy/S -Tristan/M -tristate -trisyllabic -trisyllable/S -trite/YF -triteness -tritium/M -tritocerebra -tritocerebrum -Triton/M -triton/SM -tritone/S -triturate/SDGN -triturator/S -triumph/SDGM -triumphal/Y -triumphalism -triumphalist/S -triumphant/Y -triumvir/MS -triumvirate/MS -triune -trivalent -trivet/SM -trivia/o -trivial/Q8q- -triviality/MS -tRNA -trochaic/S -trochanteral -trochanteric -trochee/MS -trochlear -trochophore -trod/A -trodden/UA -Trogir/M -troglodyte/SM -troika/SM -Troilus/M -Trojan/MS -trojan/SM -troll/DGMS -trolled/F -trolley/SM -trolleybus/S -trollop/SM -Trollope/M -trombone/3MS -trompe -Trondheim/M -troop/RDMGS -troopship/MS -trope/WMSw1 -trophically -trophoblast/SW -trophy/MS -tropic/SM -tropism/MS -troposphere/MW -troppy/TYP -trot/GRSD -troth/S -Trotsky/M -Trotskyism -Trotskyist/S -Trotskyite/S -troubadour/SM -trouble/DGSM -troubled/U -troublemaker/MS -troublemaking -troubleshoot/GRS -troublesome/PY -trough/MS -trounce/GDS -troupe/SRM -trouser/S -trousered -trousseau/M -trousseaux -trout/M -Troutman/M -trove/SM -Trowbridge/M -trowel/MS -troy -Troy's -truancy/SM -truant/GDMS -truce/SM -truck/DRGMS -Truckee/M -truckle/GSD -truckload/SM -truculence/M -truculent/Y -Trude/MZ -Trudeau/M -trudge/SDG -Trudi/M -Trudy/M -true-blue -true-born -true/DTG -truelove/MS -trueness -truffle/MS -truism/MS -Trujillo/M -truly -Truman/M -Trumann/M -Trumbull/M -Trumland -trump/SDGM -trumped-up -trumpery/SM -trumpet-call -trumpet/rdSM -truncate/GDSnN -truncation/M -truncheon/MS -trundle/SDG -trunk/SGM -trunkfish/S -Truro/M -Truscott/M -truss/GSD -trust's -trust/E6SaDGj -trustable -trusted/U -trustee/SM -trusteeship/SM -trustful/P -trustfulness/E -trustiness -trusting/Y -trustworthiness/U -trustworthy/P -trusty/TMS -truth/MUSj6 -truthfulness/U -truthiness -TRW -try-out/MS -try/ADGS -trying/Y -trypanosome/S -trypanosomiasis -trypsin/M -trypsinogen -tryptophan -tryst/GDMS -tsar/S -tsarevich -tsarina's -tsarist -tsetse -tsukemono/S -tsunami/SM -Tsushima/M -Tswana/M -TTL -tu -tu-whit -tu-whoo -Tuareg/M -tub/drSMZ -tuba/SM -tubby/T -tube/MpS -tubercle/SM -tubercular -tuberculin/M -tuberculoid -tuberculoses -tuberculosis/M -tuberculous -tuberose/MS -tuberous -tubing/M -tubular -tubule/SM -TUC -Tuck's -tuck/DRSG -Tuckerman/M -Tucson/M -Tudor/SM -Tue/S -Tuesday/SM -tuff -tuffaceous -tuft/DSGZM -tug/GSD -tugboat/MS -tuition/SMI -Tulane/M -tularaemia -tularaemic -tulip/MS -tulle/MS -Tullow/M -Tully/M -Tulsa/M -tum/Z -tumble-drier -tumble-dry/SD -tumble/RSGD -tumbledown -tumbler/6 -tumblerful/S -Tumblr/M -tumbrel/MS -tumbrils -tumescence -tumescent -tumid/Y -tumidity/SM -tummy/MS -tumorous -tumour/MS -Tums/M -tumult/SM -tumultuous/PY -tumulus/M -tun/W7rdSZ -tuna/MS -tunable/C -Tunbridge -tundish -tundra/SM -tune's -tune/ACSGD -tuneage -tuneful/PY -tuneless/YP -tunesmith/S -tungstate -tungsten/M -tunic/SM -tunica -tunicae -tunicate/SD -tuning/SM -Tunis/M -Tunisia/M -Tunisian/S -tunnel/JSRGDM -tunny/MS -tupelo/M -tuple/S -tuppence/M -Tupperware -turban/SM -turbaned -turbid -turbidite/S -turbiditic -turbidity/MS -turbinate -turbine/SM -turbo -turboboost -turbocharge/DG -turbocharger/SM -turbofan/MS -turbojet/SM -turboprop/SM -turbot/SM -turbulence/MS -turbulent/Y -turd/SM -tureen/SM -turf/MGZDS -turfy/T -turgid/Y -turgidity/SM -Turin/M -Turing/M -Turingery -Turk/WM -Turkey/M -turkey/MS -Turkic/M -Turkington/M -Turkish -Turkle/M -Turkmen/S -Turkmenistan/M -Turks/M -Turku/M -Turkwel/M -turlough -Turmenistan -turmeric/MS -turmoil/M -turn-buckle/SM -turn-down -turn-off/SM -turn-up/S -turn/AScGD -turnable -turnabout/MS -turnaround/MS -turnbuckle/S -Turnbull/M -turncoat/SM -turned/U -turner's -turner/AS -turning/SM -turnip/SM -turnkey/M -turnout/MS -turnover/MS -turnpike/SM -turnround -turnstile/SM -turnstone/MS -turntable/MS -turpentine/M -Turpin/M -turpitude/MS -turquoise/MS -turret/MS -turreted -turtle-dove/SM -turtle-neck/DSM -turtle/MS -turvy -Tuscaloosa/M -Tuscan -Tuscany/M -tush -tusk/DRGMS -Tuskegee/M -tussle/SDG -tussock/MSZ -tut-tuts -tut/SGD -Tutankhamen/M -Tutankhamun -tutelage/MS -tutelary/S -tutor/dSM -tutored/U -tutorial/MS -tutorship/S -Tutsi -tutti/S -Tuttle/M -tutu/MS -Tuvalu/M -TV/M -TVA -TVs -TWA/M -twaddle/M -twain -twang/DGZSM -twangy/T -tweak/DSRG -twee/T -Tweed/M -tweed/MS2Z -Tweedledee/M -Tweedledum/M -Tweedy/M -tweedy/T -tweeness -tweeps -tweet/SRGD -tweetable -tweetup/S -tweeze/SDGR -twelve/H -twenty-eight/H -twenty-first/S -twenty-five/H -twenty-four/H -twenty-nine/H -twenty-one -twenty-onefold -twenty-second/S -twenty-seven/H -twenty-six/H -twenty-three/H -twenty-twenty -twenty-two -twenty-twofold -twenty/SH -twerk/SGD -twerp/MS -twice -twice-married -Twichell/M -Twickenham -twiddle/YGDS -twiddler/M -twiddly/T -twig/SMZDG -twiggy/T -twilight/SM -twilit -twill/DSG -twin-tub/S -twin/DSdGM -twine/SM -twinflower/S -twinge/DMGS -Twinkie -twinkle/YGDS -twinset/S -twirl/DRGS -twirly/T -twist/RZGSD -twisted/U -twistor -twists/U -twit/DGSM -twitch/SGDZ -twitcher/S -twitchy/T -twitter/dS -twitterer/S -twittery -twittish -two-dimensional/Y -two-edged -two-faced -two-handed -two-sided -two-step -two-stroke/MS -two-thirds -two-timer -two-tone -two-way -two-wheeler/MS -two/SM -Twofish -twofold -twopence/SM -twopenn'orth -twopenny -twosome/SM -Twp -TWX -Ty -Tybee/M -tycoon/SM -Tydfil/M -tying/UA -tyke/SM -Tylenol/M -Tyler/M -Tylor/M -tympan -tympani -tympanic -tympanist/MS -tympanum/SM -Tynan -Tyndall/M -Tyne/M -Tynecastle/M -Tynemouth -Tyneside/M -type's -type/aASGD -typecast/G -typed/U -typeface/MS -typescript/MS -typeset/RSG -typewriter/MS -typewriting -typewritten -typhoid/M -typhoon/SM -typhus/M -typical/Y -typicality/M -typify/DGS -typo/3MS -typographer/MS -typography/SWMw1 -typology/wSM13 -tyrannosaur/MS -tyrannosaurus/S -tyrannous -tyranny/8SQ1Mw -tyrant/SM -tyre/SM -Tyree/M -tyro/SM -Tyrol's -Tyrolean/S -Tyrone/M -tyrosinase -tyrosine/M -Tyschtschenko/M -Tyson/M -tzar/SM -tzarina/MS -tzatziki -tzigane -Tzu/M -tête -tête-bêche -tête-à-tête -Tórshavn/M -U -U.K. -U.N. -U.S. -UAR -UART -UAV/S -UAW -UB40/S -ubiquitarian/S -ubiquitarianism -ubiquitin -ubiquitinate/SGDN -ubiquitism -ubiquitist -ubiquitous/Y -ubiquitousness -ubiquity/S -ubuntu/M -Ubuntu/M -UCL/M -UCLA/M -Udall/M -udder/SM -UDF -UDG/S -Udmurt -Udod -UDP -UEFA -UEFI -UFO/SM -ufological -ufologist/S -ufology/M -Uganda/M -Ugandan/S -ugh/F -uglify/SGDN -uglily -ugliness -ugly-looking -ugly/T -uh -UHF -Uhura/M -UI -UK/M -ukase/SM -Ukraine/M -Ukrainian/S -ukulele/SM -UL -Ulan/M -ulcer/VMS -ulcerate/SGNDn -ulceration/M -ulcerous -Ullmann/M -ulna/M -ulnae -ulnar -Ulrich/M -Ulrika/M -Ulrike/M -ulster/MS -ulterior -ultimate/Y -ultimatum/MS -ultimo -ultisol/S -ultra-fine -ultra-high -ultra-thin -ultra/S -ultrabasic -ultrabook/S -ultracentrifugal -ultracentrifugation -ultracentrifuge/MD -ultracold -ultracompetent -ultraconservatism -ultraconservative/S -ultracritical -ultradian -ultrafast -ultrafastidious -ultrafiltration -ultralight/S -ultramafic -ultramarine/SM -ultramicroscope -ultramicroscopic -ultramodern -ultramontane -ultraportable -ultrarapid -ultrasafe -ultrasaurus -ultrasonic/SY -ultrasonography/W -ultrasound/SM -ultrastructural -ultrastructure -ultraviolet -Ultrix/M -ululate/NnSGD -ululation/M -Ulysses -um -Umbanda -umbel/SM -umbellifer/S -umbelliferous -umber/SM -Umberto/M -umbilical/Y -umbilici -umbilicus/M -umbo/S -umbonal -umbonate -umbones -umbra/MS -umbrae -umbrage/SM -umbrageous -umbrella/MS -umbrellabird/S -UMIST -umlaut/GDSM -umpire/DMGS -umpteen -umpteenth -un-English -UN/M -unabated/Y -unabating -unable -Unabomber -unacademic -unacceptability -unacceptable -unaccountability -unaccountable -unaccustomed/Y -unactionable -unaddressed -unadjacent -unadvisedly -unaesthetic -unaffected -unaggressive -unaired -unalarmed -Unalaska/M -unalike -unalive -unallied -unallowable -unalterable/Y -unambiguity -unambitiousness -unambivalent/Y -unamended -unamiable -unamplified -unamusable -unanalysable -unanchored -Unani -unanimated -unanimity/SM -unanimous/Y -unapologetic/Y -unapparent -unappeasable -unappreciative -unappropriated -unaspirated -unassertive -unassuming/Y -unattainable -unattractiveness -unaugmented -unauthentic -unavailable -unavailing/Y -unaware -unbacked -unbalance -unban/DG -unbearableness -unbeautiful/Y -unbecomingness -unbefitting/YP -unbeholden -unbeknown -unbeknownst -unbelief -unbelieving/Y -unbind/G -unblinking/Y -unbound/Di -unbranched -unbreakable -unbrokenness -unbruised -unbrushed -unbuckle/G -unbudgeable -unbuild/SG -unbuilt -unburden/d -uncached -uncalled-for -uncanonical/Y -uncapping -uncatchable -uncatered -unceasing/Y -uncertainness -unchallengeable -unchanging/Y -unchaste -uncheck/SGD -unchristian -uncial/S -uncirculated -uncivil -unclad -unclarity -unclassified -uncle/MS -unclean -uncleanness -unclear -uncleared -unclearly -unclearness -uncloak/G -unclog/DG -uncoded -uncoloured -uncombined -uncomely -uncomfortable -uncommon -uncommunicated -uncommunicative -uncompanionable -uncompetitive/PY -uncomplicatedly -uncomplicatedness -uncompounded -uncomprehending/Y -uncompress/G -unconcentrated -unconditional -unconditionality -unconducive -unconference/S -unconfessed -unconfident -unconfidently -unconfirmed -unconformably -unconfused -unconjugal -unconjugated -unconnected -unconscionable/Y -unconsciousness -unconstitutional -unconstitutionality -unconstructive -uncontainable -uncontended -uncontrollability -unconventional -uncool -uncopiable -uncord/SGD -uncork/G -uncosted -uncountability -uncouple/G -uncouth/Y -uncouthness -uncover/d -uncreative -unction's/I -unction/M -unctuous/Y -unctuousness -uncultivable -uncured -uncurl/G -uncurtained -uncustomary -uncut -undatable -undated/I -undaunted/Y -undead -undebatable -undebated -undecidability -undecidable -undecided/SY -undeciphered -undedicated -undefeatable -undelete/DG -undeliverable -undeniable/Y -undented -undependable -under -under-investment -under-read -under-report -under-represent -under-secretary/SM -underact/SGD -underactive -underage -underappreciate/DN -underarm -underbid/G -underbody/S -underboss -underbred -underbridge/S -underclass/S -undercoat/G -undercount -undercover -undercurrent/M -undercut/G -underdog -underdress/SGD -underemphasis -underfeed/G -underfloor -underflow/M -underfoot -underframe -underfur -undergarment -undergird/SGD -undergone -undergrad/MS -undergraduate -underground -underhand/i -underinvest/SGD -underlay -underlease -underlet/SG -underline -underling/MS -underlip -undermine/GR -underneath/S -underpainting -underpass/M -underpay -underperform/SG -underperformance -underpin -underpinning/M -underplant/SD -underpopulation -underprepared -underrate/GSD -undersea -undersecretary/S -undersense -underserved -underset/SG -undersheriff -undershot -undershrub/S -undersigned/M -undersize -underskirt -undersow/SGD -undersown -underspecification -underspend -understaffing -understand/aJSG -understandability -understandable/Y -understander -understanding/aM -understandingly -understater/S -understeer/SGD -understood/a -understory/S -understrength -understructure -understudy/M -undersupply/S -undersurface -undertaking/M -undertone -undertow/M -undervalue -underwater -underway -underwear/M -underweight -underwing/S -underwire/SD -Underwood/M -underwork/D -undescended -undesignated -undesigned -undesignedly -undesirable -undetermined -undine/S -undiscriminating -undisputedly -undissociated -undistracted -undiversified -undo/G -undoable -undogmatic -undoubted/Y -undrained -undramatic -undraw/SG -undrawn -undress/G -undrew -undrunk -undue -undulant -undulate/SnNDG -unduplicated -unearth/YSG -unease/2 -uneatable -unemotional -unending/YP -unendowed -unenergetic -unengaged -unenjoyable -unenlightenment -unenviable -unequal/D -UNESCO -unessential -unevangelical -uneven -unevenness -uneventful/P -unexacting -unexaggerated -unexceptionable/Y -unexcitability -unexcitable -unextended -unfailing -unfair -unfairness -unfaithfulness -unfamiliar -unfamiliarity -unfashionable -unfatherly -unfathomable/Y -unfavourable -unfavoured -unfeasibility -unfeasible/Z -unfeeling -unfelt -unfeminine -unfermented -unfertilised -unfertilized -unfiled -unfit/DG -unfitness -unfix/G7D -unflappability -unflappable/Y -unflinching/Y -unfold/G -unfollow/DG -unforgeable -unforgivable -unforgiving -unforgivingness -unforked -unfought -unfree -unfreedom -unfreeze -unfriend/SDG -unfriendliness -unfrozen -unfruitful -unfulfillable -unfulfilling -unfunny -unfussy/Y -ungainliness -ungainly -ungainsayable -ungallant -ungeared -ungenerous -ungenerousness -ungentle -ungodliness -ungodly -ungraceful -ungraciousness -ungrammatical -ungrateful -unguarded -unguent/S -ungulate/S -unhand/GZ -unhandled -unhandsome -unhang -unhappen -unhappiness -unharmonious -unhatched -unhealthiness -unheard-of -unhearing -unhedged -unheedful -unheedingly -unhelpful -unheretical -unheroic/Y -unhistorical -unhitch/G -unholy/RTP -unhook/G -unhorse -unhung -unhurt -uni -uniaxial/Y -unibody/S -unicameral -unicast -UNICEF/M -unicellular -unicity -Unicode/M -unicorn/SM -unicuspid -unicycle/DMG3S -unideal -unidimensional -unidirectional/Y -unidirectionality -uniface -unifiable -unification/MA -unifier/MS -uniform/SMYD -uniformitarianism -uniformity/MS -unify/AGNSnD -unilateral/Y -unilateralism/M -unilateralist/S -Unilever/M -unilingual -unilingualism -unilingually -unimodal -unimolecular -unimpeachable/Y -unimplementability -unimportance -unimportant -unimposing -unimposingly -uninflected -uninhibited/Y -uninstal/S -uninstall/SGDR -uninstallation/S -unintellectual -unintelligibility -uninterestingness -uninterrupted/Y -uninterruptedness -uninterruptible -unintuitive -uninvested -union's/EA -union/qQ3 -Uniondale -unionism/MS -unionist -unions/EA -unipolar -unipolarity -unipotent -uniprocessor -unique/Y -uniqueness -unironed -unironic/Y -uniserial -unisex -unisexual/Z -unisexuality -UNISON -unison/S -unissued -Unisys/M -unit/d -UNITA -Unitarian/SM -Unitarianism/M -unitarily -unitarism -unitarist/S -unitarity -unitary -unite/AGEDS -unitive -unity/MES -univalent/S -univalve/SM -univariate -universal/8QS -universalism/M -universalist/S -universalistic -universality/SM -universe/oMS -university/MS -Unix/M -unjaded -unjointed -unjust -unkempt -unkept -unkeyed -unkillable -unkind/Y -unkindness -unking/SGD -unkink/SGD -unknit/SGD -unknot/SGD -unknowability -unknowable -unknowing/P -unknowledgable -unknowledgeable -unlaid -unlap -unlatch/G -unlawfulness -unlay/G -unlearnedly -unliberated -unlike -unlikeness -unlink/G -unlit -unload/G -unlobed -unlock/G -unlogical -unlooked-for -unloose -unlovable -unlovely -unluckiness -unmanageable/Y -unmanliness -unmanly -unmannered/Y -unmannerly -unmarried -unmask/G -unmatch/SGD -unmatchably -unmated -unmeaning -unmediated -unmedicated -unmeet -unmeetable -unmeetly -unmeetness -unmellow -unmellowed -unmelodic -unmelodiously -unmelodramatic -unmeltable -unmelted -unmelting -unmember/Sd -unmemorable/Y -unmemoried -unmentionable/S -unmerciful/P -unmet -unmetalled -unmetered -unmethodical/Y -unmetrical -unmilitary -unmindfully -unmindfulness -unmissable -unmissed -unmistakable/Y -unmistakeable/Y -unmistaken -unmitigatedly -unmodifiable -unmoral -unmorality -unmothered -unmotherly -unmould -unmouldy -unmount/SGD -unmourned -unmouthable -unmovable -unmovableness -unmovably -unmoveable -unmoveably -unmovedly -unmuffle/D -unmunch/DMRGS -unmurmuring/Y -unmusical/P -unmusicality -unmutilated -unnail/D -unnamable -unnamed -unnatural -unnavigability -unnavigable -unneighbourliness -unneighbourly -unnerve/k -unnoticeably -UNO -unoaked -unobjective -unobliging -unobscured -unobservable -unobserving -unobstructive -unobtrusiveness -unobvious -unoffending -unoiled -unopinionated -unordinary -unorganized -unoriginality -unoriginally -unornamented -unpacker/S -unpair/SDG -unpalatable -unpardonableness -unparented -unpartizan -unpassable -unpatched -unpatented -unpatriotically -unpatrolled -unpatterned -unpeg/SGD -unpeople/GS -unperfumed -unperson/S -unpersuadable -unpersuaded -unpersuasive -unperturbed/Y -unphilosophic/Y -unphilosophical -unphysical -unphysiologic/Y -unphysiological -unpick/GS -unpicturesque -unpigmented -unpin/GD -unpleasant -unpleasantness -unplumbable -unpoetic -unpoetical -unpoetically -unpointed -unpolitic -unpolitical -unpopular -unported -unposed -unpossessed -unpower -unpowered -unpowerful -unpracticable -unpractical -unpracticality -unpracticalness -unprecedentedly -unprefixed -unpremeditatedly -unprepared -unpreparedness -unprescribed -unpresentable -unpressed -unpresuming -unprintably -unprioritised -unprioritized -unproblematical -unproblematically -unprocessable -unprofessional -unprofitable -unprotesting -unprotestingly -unprotrusive -unproud -unprovability -unprovable -unprovableness -unproved -unprovided -unprovidential -unprovisioned -unprovocative -unpublish/SGD -unpunctual -unquiet/YP -unquote/B -unrated -unratified -unreachableness -unreachably -unread/2B -unreadably -unready -unreal -unrealism -unreasoning/Y -unrefuted -unregeneracy -unregenerated -unregenerately -unregeneration -unrelated -unrelatedness -unrelenting/Y -unremarked -unremitted/Y -unremitting/Y -unrented -unrequested -unreservedness -unrest -unresting -unrestingly -unrestorable -unrestored -unretouched -unrevealed -unreversed -unreviewed -unrevised -unrevoked -unripe -unromantic/Y -unroof/SGD -unruliness -unruly/T -unsalaried -unsanctified -unsatisfactoriness -unsatisfyingly -unsaturation -unsay/SG -unscalable -unscaleable -unscarred -unscrew/G -unscriptural -unscrupulousness -unsearched -unseaworthiness -unsectarian -unsecure -unseduced -unseeing/Y -unseemly -unselect/SGD -unselfconscious/Y -unselfconsciousness -unsellable -unsensational/Y -unsentimental/Y -unseparated -unserious -unserviceability -unset -unsettle/kiL -unsewn -unsex/DS -unsexy/T3 -unshakable/Y -unshaped -unshapely -unsharp/P -unshifted -unship/SGD -unshockability -unshockable -unshod -unshrinkability -unshrinkable -unshrinking -unshrinkingly -unshrunk -unsightly -unsized -unskilful/YP -unsmart -unsnap/GD -unsocial -unsolder -unsound -unsourced -unspeakable/Y -unspecific -unspectacular -unsprayed -unstable/TPY -unstamped -unsteadiness -unstick/SG -unstimulating -unstinting/Y -unstoppable/Y -unstring/SG -unstudiedly -unstuffed -unstuffy -unstylish -unsubdued -unsubjugated -unsubmerged -unsubstantial -unsubtle -unsuccessful -unsupportive -unsure -unsurveyed -unsusceptibility -unsusceptible -unsuspected/Y -unsuspecting/Y -unsuspicious/YP -unsustainably -unswathe/SGD -unswayed -unswerving/Y -unswollen -unsystematic -untagging -untaken -untalkative -untampered -untargeted -untasted -untaxable -untestable -untether/Sd -unthinkability -unthinkable/Y -unthinking/YP -unthorough -unthought -unthoughtful -unthread/DG -unthreatened -unthreatening -unthrifty/YP -unthrone/SD -untick/SGD -untidy/T -untie -unties/F -until -untimed -untimely -untiring/Y -untormented -untouchability -untouchable/MS -untouristed -untoward/YP -untraditional -untransferable -untranslatability -untraversable -untrendy -untrue -untruly -untrusting -untrustworthy -untrusty -untuck/D -untwist/G -untypical/Y -untyred -unutterable/Y -unvaccinated -unvalidated -unvaryingness -unvented -unversioned -unviability -unviable -unviolated -unvitiated -unwaged -unwaisted -Unwalla -unwalled -unwarned -unwarrantable/Y -unwatchable -unwatchful -unwatered -unweaned -unweary -unwedded/P -unweighted -unwell -unwellness -unwept -unwhipped -unwieldiness -unwieldy -unwillingness -unwinking/Y -unwinnable -unwired -unwisdom -unwise -unwiseness -unwomanly -unwonted -unwontedness -unworkability -unworkableness -unworkably -unworkmanlike -unworldly -unworthy -unwound -unwrap/DG -unyielding/Y -up-tempo -up-to-date -up-to-the-minute -up/MFS -Upanishads -upbeat/MS -upbraid/DSG -upbringing/MS -UPC -upcase/SD -upcast/S -upcoast -upcoming -upcountry -upcurve/D -upcycle/SDG -updatable -update/DGS -updater/M -Updike/M -updraught/SM -upend/SGD -upfront -upgradable -upgrade/DSG7 -upheaval/SM -upheld -uphill -uphold/RGS -upholster/ASd -upholsterer/SM -upholstery/SM -UPI -upkeep/MS -upland/SM -uplift/SDG -uplifter/S -upliftment -uplink/GDS -upload/SDG -upmarket -upon/F -upped -upper-case/DSG -upper-class/S -upper/S -uppercase/SGD -uppercut/S -uppermost -upping -uppish -uppity -upraise/SDG -uprate/GD -upright/YS -uprightness -uprise -uprisen -uprising/SM -upriver -uproar/SM -uproarious/PY -uproot/SGD -uprooter/S -uprose -ups -upsample/SDG -upscale/DSG -upset/SG -upshot -upside-down -upside/MS -upsilon/MS -upsize/G -upspeak/SG -upspoke -upspoken -upstage/SDG -upstairs -upstanding -upstandingness -upstart/MS -upstream/M -upstroke/MS -upsurge/S -upswept -upswing/MS -uptake/SMA -uptalk -upthrust/SGD -uptight -uptime -Upton/M -uptown -upturn/SGD -upvote/SGD -upward/SY -upwelling/S -upwind -Ur/M -uracil/MS -uraemia/M -uraemic -Ural/S -uraninite -uranium/M -Uranus/M -urban/qQ8- -Urbana/M -urbane/Y -urbanism/M -urbanist/S -urbanite/SZM -urbanity/MS -urchin/MS -Urdu/M -urea/M -ureaplasma/S -ureter/MS -ureteral -ureteric -urethane/MS -urethra/MS -urethrae -urethral -urethritis/M -urge/JDGS -urgency/SM -urgent/Y -Uri/M -Uriah -Uriarte/M -uric -urinal/SM -urinalyses -urinalysis/M -urinary -urinate/DSG -urination/M -urine/nMNS -URL/S -urn/SM -Urochordata -urochordate/S -urodynamic/S -urogenital -urogram/S -urography -urologist/S -urology/wM -uroscopy -urostyle -Urquhart/M -Ursa -ursine -Ursula/M -urticaria -Uruguay/M -Uruguayan/S -US/M -us/rS7dgl -USA -usable/UA -USAF -usage/SM -USART -USB -USC/M -USCG -USD -USDA -use/cEDSAa -useable -used/fU -useful/Y -usefulness -useless/Y -uselessness -Usenet/M -user-definable -user-friendliness -user-friendly/PT -user-generated -user-hostile -user/aM -username/S -USG/M -usher/dSM -usherette/SM -USIA -using/facA -USMC -USN -USO -USP -USPS -USS -USSR -usual/UY -usualness/U -usurer/SM -usurious/Y -usuriousness -usurp/DRNSnG -usurpation/M -usury/MS -UT -Utah/M -Utahan/SM -utan/S -UTC -Ute/M -utensil/SM -uteri -uterine -utero -uterus/M -UTF-16 -UTF-32 -UTF-8 -Utica/M -utile/-8qQ -utilisation/f -utilise/RBfSGD -utilitarian/S -utilitarianism/MS -utility/MS -utilize/RBfnDSNG -utmost -utopia/M -utopian/S -utopianism/M -Utrecht/M -utricle/S -utricular -utter/YdS -utterance/SM -uttered/U -uttermost -Uttlesford -uucp/M -UUID/S -UV -UVA -uveitis -uvula/SM -uvular/S -UX -uxoricidal -uxoricide -uxorilocal -uxorious -uxoriously -uxoriousness -Uzbek/M -Uzbekistan/M -Uzi/M -v -V -V-mail -V-NAND -V-neck -vacancy/SM -vacant/Y -vacate/NDSGn -vacation/M -vaccinate/GDS -vaccination/M -vaccine/NnMS -vaccinia -vaccinial -vacillate/SDkGNn -vacillation/M -vacillator/MS -vacua/M -vacuity/MS -vacuolated -vacuole/SM -vacuous/Y -vacuousness -vacuum/MS -Vader/M -Vaduz/M -vagabond/GMSD -vagabondage/MS -vagarious -vagary/MS -vagi -vagina/SMo -vaginal -vaginismus -vaginoplasty -vaginosis -vagrancy/MS -vagrant/YSM -vague/TY -vagueness -vagus -Vaida/M -Vail/M -vain/TY -vainglorious/Y -vaingloriousness -vainglory/SM -vainness -Val/M -valance/MS -Valdez/M -vale/MS -valediction/SM -valedictory/SM -valence/MKS -Valencia/M -Valencian/S -valency/SM -Valentin/M -valentine/SM -Valentino/M -Valenzuela/M -Valeria/M -Valerian/M -valerian/S -Valerie/M -valet/SMd -valetudinarian/MS -valetudinarianism/M -Valhalla/M -valiant/Y -valid/InY -validate/IDASGN -validation/IMA -validator/SM -validity/SMI -valine -valise/SM -Valium -Valk/M -Valkyrie/SM -vallate -Valle/M -vallecula -valleculae -Vallejo/M -Valletta/M -valley/SM -Valli/M -valonia/S -valorisation -valorise/SGD -valorize/SGDN -valorous/YP -valour/M -Valparaiso/M -valproic -Valter/M -valuable/YS -valuably/I -valuation's/C -valuation/f -valuator/MS -value's -value-added -value-for-money -value/CnASNGD -valued/Ufc -valueless -valuer/SM -values/fc -valuing/fc -valve/SDMp -valvular -vamp's -vamp/AGSD -vampire/MS -vampirism -van/SM -vanadate -vanadinite -vanadium/M -Vanautu/M -Vance/M -vancomycin -Vancouver/M -vandal/Q8MS -vandalism/MS -vandalistic -vandalistically -Vanden/M -Vanderbilt/M -Vandyke/M -vane/MS -Vanessa/M -vanguard/MS -vanilla/SM -vanish/GJSkD -vanity/MS -vanquish/RGDS -vanquished/U -vantage/SM -Vanuatu -vapid/Y -vapidity/SM -vaporise/RnSGD -vaporize/nRSGND -vaporous -vapour/MS -vapourish -vapourware -var. -Varga/M -Vargas/M -variability/SIM -variable's -variable/IS -variableness -variably/I -Varian/M -variance's -variance/IS -variant/IS -variate/MnxNS -variation/M -varicella -varices -varicoloured -varicose -varied/U -variegate/SnDGN -variegation/M -varietal -variety/SM -variola -variolar -variolous -various/Y -Variscan -variscite -varistor/M -varix -varlet/SM -varnish/SDMG -varnished/U -varnisher/S -varsity/SM -varve/SD -vary/BSDlGkh -varying/UY -vascular -vascularisation -vascularise/SGD -vascularize/SGDN -vasculature -vasculitides -vasculitis -vase/SM -vasectomy/MS -Vaseline/M -vaselined -Vasili/SM -Vasily/M -vasoconstriction -vasoconstrictive -vasoconstrictor/S -vasodilatation -vasodilation -vasodilator/S -vasodilatory -vasomotor -vasopressin -vasopressor/S -vasovagal -Vasquez/M -vassal/SM -vassalage/MS -Vassar/M -Vassilaros -vast/PTY -Vastag/M -vastness/S -vat/GMDS -Vatican/M -vaudeville/SM -vaudevillian/SM -Vaughan/M -Vaughn/M -vault/RSGMD -vaunt/DGS -Vauxhall/M -Vax/M -VAXes -VCR/S -VD -VDT -VDU -veal's -veal/A -vector/FM -vectored -vectorial -vectoring -vectorise/nDGS -vectorize/DNGnS -vectors -Veda/MS -Vedanta/M -vedette/S -Vedic -veer/DGS -veg -Vega/SM -vegan/MS -veganism -Vegemite -vegetable/MS -vegetal -vegetarian/SM -vegetarianism/SM -vegetate/GVnDNS -vegetation/M -vegetational -vegetatively -vegetativeness -veggie/SM -vehemence/M -vehement/Y -vehicle/SM -vehicular -veil's -veil/DUSG -vein/GMSD -vela -velar/S -Velcro/M -veld/SM -veldt/M -Velez/M -veliger/S -vellum/MS -Velma/M -velocipede/MS -velocity/SM -velodrome/S -velogenic -velopharyngeal -Veloso/M -velour/MS -velouté -velum/M -Velveeta/M -velvet/SZM -velveted -velveteen/SM -Velásquez/M -Venables -venal/Y -venality/SM -venation/SM -vend/SbDG -vendetta/MS -vendor/SM -veneer/GnDSNM -venerate/GBDS -veneration/M -venereal -venesection -Venetian/MS -Venezuela/M -Venezuelan/S -vengeance/SM -vengeful/Y -vengefulness/A -venial/Y -veniality/S -Venice/M -venison/M -Venkova -Venn/M -venographic -venographically -venography -venom/MS -venomous/Y -venomousness -venous/Y -vent's/F -vent/IGFSK -ventail -vented/KI -venter/S -ventifact/S -ventilate/SNDGnV -ventilated/U -ventilation/M -ventilator/SM -ventral/Y -ventricle/SM -ventricular -ventriloquies -ventriloquism/MS -ventriloquist/MS -ventriloquy -ventromedial/Y -Ventura/M -venture/SRDG -venturesome/Y -venturesomeness -venturi -venturous/P -venue/SMA -venular -venule/S -venulous -Venus/S -Venusian/S -Vera/M -veracious/Y -veracities/I -veracity's/I -veracity/SM -veranda/SM -verandah/MS -verapamil -veratrine -veratrum/S -verb/SM -verbal/Sqs89QY- -verbatim -verbena/MS -verbiage/SM -verbose/Y -verboseness -verbosity/MS -verboten -Verdana -verdant/Y -Verde/M -Verdi/M -verdict/MS -verdigris/M -verdure/DSM -Vere/M -verge's -verge/GFSD -verger/SM -veridical -verifiability/M -verifiable/U -verifiably -verified/AU -verifies/A -verify/BnRDGNS -Verilog/M -Verisign/M -verisimilitude/MS -veritable/Y -verity/SM -Verizon/M -Verlinde/M -Vermeer/M -vermicelli/SM -vermicide/S -vermicomposter -vermicomposting -vermicular -vermiculate/D -vermiculite/SM -vermiculture -vermiform -vermifuge -vermilion/SM -vermin/M -verminous -Vermont/M -vermouth/MS -Vern/M -Verna/M -vernacular/YS -vernacularise/SGD -vernacularism -vernacularity -vernacularize/SGD -vernal/Y -Verne/M -Vernen/M -vernier/MS -Vernon/M -Verona/M -veronica/SM -Veronique/M -verruca/MS -verrucae -versa -Versailles/M -versatile/Y -versatility/SM -verse's -verse/ANDXFS -versed/U -verses/4I -verset/S -versicle/S -versicoloured -versification/M -versify/GNRSnD -version/ODGMIFAS -verso/MS -versus -vert/S -vertebra/M -vertebrae -vertebral -vertebrata -Vertebrata -vertebrate/SIM -vertex/MS -vertical/YS -verticality -vertices -vertiginous -vertigo/M -verve/MS -vervet/S -very/Y -vesical -vesicle/MS -vesicular -vesiculate/NGS -vesper/S -vessel/SM -vest/ySDGLoM -Vesta/M -vestal/S -vested/I -vestiary/S -vestibular -vestibule/MS -vestige/MoS -vestigial -vesting/I -vestiture/S -vestry/mSM -vests/I -vesture/DSG -Vesuvius/M -vet/SGMD -vetch/SM -vetchling/S -veteran/MS -veterinarian/SM -veterinary/S -veto/DGM -vetoes -Vettori/M -Vevo/M -vex/F -vexation/SM -vexatious/Y -vexatiousness -vexed/Y -vexes -vexing -VF -VFW -VG -VGA -VHDL -VHF -VHS -VI -via -viability/MS -viable/Y -viaduct/MS -Viagra/M -vial/S6M -vialful/S -viand/MS -vibe/S -vibrancy/SM -vibrant/Y -vibraphone/S3M -vibrate/DGnyNS -vibration/M -vibrational -vibrato/SM -vibrator/SM -viburnum/SM -Vic/MZ -vicar/SM -vicarage/SM -vicariance -vicarious/Y -vicariousness -vice anglais -Vice's -vice-chancellor/SM -vice-Chancellor/SM -vice-chancellorship/S -vice-Chancellorship/S -vice-like -vice-president/SM -vice-President/SM -vice-presidential -vice-Presidential -vice/CSM -vicegerency/S -vicegerent/SM -Vicente/M -viceregal -viceroy/MS -Vichy/M -vichyssoise/MS -vicinity/MS -vicious/Y -viciousness/S -vicissitude/MS -Vick/M -Vickers/M -Vickery -Vicki/M -Vickie/M -Vicksburg/M -Vicky/M -victim/s9Q8-MqpS -victimhood -victor/MS -Victoria/M -Victorian/SM -Victoriana -Victorianism -victorious/Y -victory/SM -victual/RSGD -vicuña/S -Vida/M -Vidal/M -videlicet -video/DMGS -videocassette -videocast/S -videoconference/GS -videodisc/MS -videogram/S -videographer/S -videographics -videography -videophone/SM -videotape/SDMG -vie/7SDG -Vieira/M -Vienna/M -Viennese/M -Vientiane/M -Viet -Vietcong/M -Vietminh/M -Vietnam/M -Vietnamese/M -view's/cKA -view/JpDRGS7M -viewed/KA -viewer/AKSM -viewership/M -viewfinder/MS -viewgraph/SM -viewing/M -viewpoint/SM -viewport/S -views/KAc -viewscreen -vigesimal -vigil/SM -vigilance/SM -vigilant/Y -vigilante/SM -vigilantism/SM -vignette/MGDS -vigorous/Y -vigorousness -vigour/M -vii -viii -Viking/SM -Vikram/M -Vila/M -vile/PYT -viler/A -vilification/M -vilify/DNSnG -villa/SM -village/RSM -villagey -villain/MSZ -Villainage -villainous/Y -villainy/SM -villanelle/S -Villanovan/M -Villegas/M -villein/SM -villeinage/M -Villeneuve/M -villi -Villiers -villus/M -Vilnius/M -vim/M -vimana/S -vinaigrette/SM -Vinay/M -Vince/M -Vincennes -Vincent/M -Vincentian/S -Vincenzo -Vinci/M -vincibility -vincible -vincular -vinculum -vindaloo/S -vindicate/SDNGn -vindication/M -vindicator/SM -vindictive/YP -vine/SM -vinegar/MS -vinegary -Vineland -vineyard/MS -vino/M -vinous -Vinson/M -vintage/SM -vintner/MS -vinyl/MS -viol/MS73 -viola/nMS -violable/I -violate/I -violated -violates -violating -violator/SM -violence/MS -violent/Y -violet/SM -Violette/M -violin/3MS -violinist -violist -viologen/S -violoncellist/S -violoncello/SM -VIP/S -viper/SM -viperfish/S -viperous -viraemia -viraemic -virago/MS -viral/Y -virality -viremia -viremic -vireo/MS -Virgil/M -virgin/MoS -virginal/S -Virginia/M -Virginian/S -virginity/MS -Virgo/SM -virgule/MS -virile -virility/SM -virion/S -virologist/S -virology/M -virtual -virtualisation/S -virtualise/Sd -virtualism -virtue/SoM -virtuosi -virtuosic -virtuosity/SM -virtuoso/SM -virtuous/Y -virtuousness -virulence/S -virulent/Y -virus/MS -vis-à-vis -vis/bNX -visa/MS -visage/SM -viscera/o -visceral -viscid/Y -viscometer/SM -viscose/SM -viscosity/MS -viscount/MS -viscountcy/MS -viscountess/MS -viscous/YP -viscus -Vishnu/M -visibility/ISM -visible/IY -visibly/I -Visigoth/S -Visigothic -vision's/K -vision/yGM -visionary/S -visioning/K -visions/K -visit/AdS -visitant/SM -visitation/SM -visited/U -visitor/SM -visor/SM -visored -vista/SM -visual/8sY-9QSq -visuomotor -visuospatial -vita/oM -vitae -vital/Q8S-q -vitalise/CGASD -vitalism -vitality/SM -vitalize/ANnDG -vitalized/C -vitalizes/C -vitalizing/C -vitamin/MS -vitellogenin -Viterbi/M -vitiate/SNnGD -vitiation/M -viticulture/M -viticulturist/S -vitiligo -vitreous/Y -vitrification/M -vitrify/NGSnD -vitrine/S -vitriol/MW -vitriolically -vitro -vituperate/DnNSVvG -vituperation/M -viva/S -vivace -vivacious/Y -vivaciousness -vivacity/SM -Vivaldi/M -vivaria -vivarium/M -vivendi -Vivian/M -vivid/YP -vivify/ASGND -viviparity -viviparous -viviparously -vivisect/xGDS -vivisection/MS3 -vivisectionist -vixen/MS -viz. -vizier/MS -VJ -Vladimir/M -Vladivostok/M -VLC/M -Vlei -VLF -VLSI -VM/S -VMS/M -VOA -vocable/AI -vocables -vocabulary/SM -vocal/98-Q3sqSY -vocalese -vocalic -vocalised/U -vocalism/M -vocalist -vocation's/IFA -vocation/oMS -vocational -vocative/YS -vociferate/GSNDn -vociferation/M -vociferous/Y -vociferousness -vocoded -vocoder -Vodafone/M -vodka/SM -Voetsek -Voetstoots -Vogel/M -Vogts -vogue/SM -voguish/YP -voice's/I -voice-activated -voice-band -voice-over/S -voice/CGDIS -voiced/U -voiceful -voiceless/YP -voicemail -void/GD7S -voile/SM -voilà -VoIP -vol-au-vent -vol. -Volapük -volatile/qQ8-S -volatility/SM -volcanic/Y -volcanicity -volcanism/M -volcano-tectonic -volcano/SM -volcanoes -volcanogenic -volcanologic -volcanological -volcanologist/S -volcanology -vole/MS -Volga/M -Volgograd/M -volition/oMS -volitional -volitionality -Volker -Volkeri -Volkswagen/SM -volley/SDMGR -volleyball/SM -volt/AMS -Volta/M -voltage/SM -voltaic -Voltaire/M -voltammetry -volte -volte-face -voltmeter/SM -volubility/S -voluble/Y -volume/MS -volumetric/Y -voluminous/Y -voluminousness -voluntarily/I -voluntarism/SM -voluntarist -voluntaristic -voluntary/YS -volunteer/MGSD -voluptuary/SM -voluptuous/Y -voluptuousness -volupté -volute/SFD -Volvo/M -vomeronasal -vomit/Sd -vomitus -von -voodoo/SM -voracious/Y -voraciousness -voracity/SM -Vorbis/M -vortex/SM -vortical -vortically -vorticella/S -vortices -Vorticism -Vorticist/S -vorticity/M -vorticose -vorticular -Voss/M -votary/MS -vote's -vote/CDGeS -voter/SM -votive/Y -Votyak -vouch/GSRD -vouchsafe/DSG -voussoir/S -Vouvray/M -vow/SDGM -vowel/SM -voyage/SMRGD -voyageur/SM -voyeur/MS -voyeurism/SM -voyeuristic -VP -VPN/S -vPro -VR -VRAM -Vreeland/M -Vries -vroom/DG -vs -VS -VT -VTOL -vu -Vuelta/M -vug/S -vuggy -vugular -Vulcan/M -Vulcanian -vulcanise/GDnS -Vulcanite -vulcanize/GDNSn -vulcanology -vulgar/Q-8Yq -vulgarian/SM -vulgarism/SM -vulgarity/MS -vulnerability/SI -vulnerable/IY -vulnerably/I -vulpine -vulture/MS -vulturine -vulturish -vulturous -vulva/M -vulvae -vuvuzela/S -w -W -WA -wa-wa -WAAC/S -WAAF -Wabash/M -WAC -Wacker -wacky/T -Waco/M -wad/drMGS -waddle/DSG -Wade's -wade/S -Wadsworth/M -wafer/SM -waffle-iron -waffle/GMDS -waft/SGD -wafters -wag/DdrSMG -wage-earning -wage/MS -wager/d -waggish/Y -waggishness -waggle/DSG -waggoner/MS -waggonette/S -Wagner/M -Wagnerian -wagon-lit -wagon/SM -wagoner/MS -wagonette/S -wagonload/S -wagons-lits -wagtail/MS -wah-wah -Wahhabi -waif/MS -waifish -waiflike -Waikato/M -Waikiki/M -wail/SGD -wailer/M -wainscot/DGdS -Wainwright -waist/MDS -waistband/SM -waistcoat/SM -waistline/SM -wait/RDSG -Waite/M -waitress/MSG -waive/GSRD -waka -Wakayama/M -wake/j6MGDS -Wakefield/M -wakefulness -waken/Sd -wakeup -Walbridge/M -Walcott/M -Waldemar/M -Walden/M -Waldo/M -Waldorf/M -Waldron/M -wale/MG -Wales -Walfield -Walford/M -Walgreen/M -Walgreens/M -walk-in -walk-on -walk-through -walk/SRGD -walkabout/MS -Walken/M -walkie-talkie/S -walkie/S -Walkman/S -Walkmen -walkout/SM -walkover/MS -walkway/MS -wall-eye/DSM -wall-to-wall -wall/SDGM -wallaby/SM -Wallace/M -Wallachia/M -wallcovering -wallcreeper/S -Wallen/M -Waller/M -wallet/SM -wallflower/SM -Wallis/M -Walloon/M -wallop/dS -wallow/GDS -wallpaper/dSM -Wallwork/M -Wally's -Walmart/M -Walney/M -walnut/MS -Walpole/M -walrus/MS -Walsall/M -Walsh/M -Walsingham/M -Walt/MR -Waltham/M -Walther/M -Walton-on-Thames -Walton/M -waltz/DSGM -waltzer/S -Walvis/M -Walworth/M -Walz/M -wampum/M -wan/dY -wand/SM -wander/JSdr -wanderlust/MS -Wandsworth/M -wane/S -Waner/M -Wang/M -wangle/GDS -wanker/S -Wankie -wanky -wanna -wannabe/S -Wannier -Wansbeck/M -want/DGS -wanted/U -wanton/Y -wantonness -WAP -wapiti/SM -Waqar/M -war's/C -war/pSDGM -Waray-Waray -warble/GRDS -Warburton -warcraft/M -ward/MAGSD -warden/MS -warder/SM -wardress/MS -wardrobe/SM -wardroom/SM -Wardrop/M -wards/Ie -ware/MS2Z -Wareham/M -warehouse/DmMGS -warez -warfare/M -warfarin -warhead/MS -warhorse/SM -warier -wariest -wariness/U -warlike -warlock/SM -warlord/SM -warm-blooded/P -warm-down -warm-hearted/Y -warm-heartedness -warm-up/S -warm/TRJDSGY -warmblood/S -warmed/A -warming/M -Warminster/M -warmish -warmness -warmonger/MS -warmongering/M -warms/A -warmth/M -warn/GSDkJ -Warne/M -Warner/M -warning/M -warp/DGMS -warpaint -warpath/MS -warplane/S -warrant/S7ZDGM -warrantable/U -warranted/U -warrantee -warrantor/M -warranty/SM -warren/SM -Warrick/M -Warrington/M -warrior/MS -wars/C -Warsaw/M -warship/MS -wart/MS -Wartburg/M -warthog/S -wartime/SM -Warton/M -Warwick/M -Warwickshire/M -wary/UY -was -wasabi -wash-out/S -wash/AGDS -washable/S -washbasin/SM -washboard/MS -Washburn/M -washday/M -washed-out -washed/U -washer/5SM -washerwomen/M -washhouse/S -washing-up -washing/SM -Washington/M -Washingtonian/S -Washingtonologist -washland -washout/MS -washstand/SM -washtub/S -washy/TP -wasn't -wasp-waisted -wasp/MS -waspish/Y -waspishness -wassail/GMSD -Wasserman -wast/RDG -wastage/SM -waste-basket -waste-paper/M -waste/Sj6 -wastefulness -wasteland/MS -wastrel/SM -Watanabe/M -watch/GmDRS6j -watchability -watchable -watchdog/SGDM -watched/U -watchfulness -watchlist/SGD -watchmaker/MS -watchmaking -watchstrap/S -watchtower/SM -watchword/SM -water-bed/S -water-bird/S -water-cooled -water-glass -water-resistant -water-soluble -water-table -water/mMpZdS2 -waterbed/S -Waterberg -waterbird/S -waterboard/SGD -waterborne -waterbuck/S -Waterbury/M -watercock/S -watercolour/3MS -watercourse/MS -watercraft -watercress/M -waterdog/S -waterfall/SM -Waterford/M -waterfowl/M -waterfowler/S -waterfowling -waterfront/MS -watergate -Watergate/M -waterhen/S -waterhole/S -Waterhouse/M -watering-hole -waterline/S -waterlog/SGD -Waterloo/M -watermark/MDGS -watermelon/SM -watermill/S -waterproof/SGD -watershed/MS -waterside/SM -waterski/SGDR -waterspout/SM -waterthrush/S -watertight -Watertown/M -Waterval -Waterville -waterway/MS -waterweed -waterwheel/S -waterworks -watery/T -Watford/M -Watkins -Watling/M -Watoga/M -Watson/M -watt/SM -wattage/MS -Watteau/M -Watten/M -wattle/SM -wattlebird/S -Watusi/M -Waugh/M -Waukesha/M -Waupaca/M -Waupun/M -Wausau/M -WAV -wav -wave/DSZG2 -waveband/MS -waveform/MS -waveguide/S -Waveland/M -wavelength/MS -wavelet/MS -wavelike -Wavell/M -waver/dkS -wavering/UY -Waverley/M -wavy/T -wax/GMZDS -waxbill/S -waxen -waxwing/SM -waxwork/MS -waxy/T -way/SM -waybill/SM -wayfarer/SM -wayfaring -waylaid -Wayland/M -waylay/GS -waymark/SGDR -Wayne/M -Waynesboro/M -waypoint/S -wayside/MS -wayward/Y -waywardness -WC -we'd -we'll -we're -we've -we/GzJ -Weagle/M -weak-minded -weak/YT -weaken/dS -weakish -weakliness -weakling/SM -weakness/S -weal/M -Weald/M -wealth/MZ -wealthy/T -wean/SDG -weaners -weanling/MS -weapon/pdyMS -weaponeer/G -weaponisation -weaponise/SGD -weaponization -weaponize/SGD -weaponry/SM -Wear -Wear-Tees -wear/eSG -wearability -wearable/US -wearer/SM -weariness -wearing/Y -wearisome/Y -weary/DkTSGY -weasel/SDGM -weather-bound -weather-worn -weather/mdSM -weatherboard/GS -weathercock/SM -weatherdeck/S -Weatherford/M -weathergirl -weatherly/P -weatherperson/S -weatherproof/DGS -weatherstrip/SGD -weatherstruck -weathertight -weathervane/SM -weave/AGS -weaved -weaver/SM -weaverbird -web-footed -web-like -web/DSGM -Webb/M -Webber/M -webbing/M -webcam/S -webcast/SGR -WebGL -webhead -webify/SGD -webinar/S -webisode/S -weblog/SR -weblogging -webmail/M -webmaster/S -webpage/S -WebRTC/M -websafe -website/MS -webspace -Webster/M -webtoon/S -Wechel/M -wed's -wed/CAU -wedded -wedding/MS -wedge/GSMD -wedgies -Wedgwood/M -wedlock/M -Wedmore/M -Wednesday/MS -Wednesfield -Wednsebury -weds/A -wee -weebill/S -weed/pDGMSZ -weeder/S -weedgrown -weedicide/S -weedkiller/S -weedless -weedy/T -week-long -week/SMY -weekday/SM -weekend/MS -weekender/MS -weekly/S -weenie -weensy -weeny/T -weep/SZG -weeper/SM -weepie -weepy/TYP -weevil/SM -weft/SM -Weibull/M -Weidman/M -weigh-in -weigh/eSADG -weighbridge/S -weighed/U -weight's -weight/cDSG -weightiness -weighting/SM -weightless/Y -weightlessness -weightlifter/S -weightlifting/M -weighty/YT -Weimar/M -Wein/M -Weinberg/M -Weiner/M -Weinstein/M -weir/SM -weird/TY -weirdness -weirdo/SM -Weiss/M -Weissman/M -Weissmuller/M -Welch/M -welcome/kRPYUG -welcomed -welcomes -weld/BGSRD -weldmesh -Weldon/M -welfare/MS -welfarism -welfarist -well-adjusted -well-balanced -well-behaved -well-being -well-beloved -well-born -well-bred -well-built -well-chosen -well-connected -well-defined -well-deserved -well-designed -well-developed -well-disciplined -well-disposed -well-dressed -well-earned -well-educated -well-endowed -well-equipped -well-established -well-fed -well-formed -well-founded -well-head/SM -well-informed -well-intentioned -well-kept -well-known -well-loved -well-made -well-mannered -well-marked -well-matched -well-meaning -well-meant -well-nigh -well-off -well-ordered -well-organised -well-paid -well-placed -well-prepared -well-preserved -well-read -well-received -well-rounded -well-spoken -well-structured -well-supported -well-thought-of -well-thought-out -well-timed -well-to-do -well-trained -well-tried -well-used -well-wisher/S -well-worn -well/DGS -Weller/M -Wellesley/M -Wellingborough/M -Wellington/M -Wellman -wellness -wellspring/SM -Wellsville/M -welsh -Welshman/M -Welshmen/M -Welshwoman/M -Welshwomen -welt/RSDGM -welter/d -welterweight/SM -Welther -Welwitschia/M -Welwyn/M -Wembley/M -Wen/M -wench/MS -wend/DGS -Wendell/M -Wendy/M -Wenger/M -Wengert/M -Wenona/M -Wensleydale/M -went/f -Wentworth/M -wept -were -weren't -werewolf/M -werewolves -Werner/M -Werther/M -Wesley/M -Wesleyan -Wessex -Wesson/M -west/M -West/M -westbound -Westbrook/M -Westbury/M -Westchester/M -Westerhill -Westerly/S -westerly/S -Westerman/M -Western -western/qQSR -Westernism/M -westernmost -Westfield/M -Westhampton/M -Westinghouse/M -Westmeath/M -Westminster/M -Westmorland/M -Weston/M -Westphalia/M -Westphalian -Westport/M -Westrum/M -westward/S -Westward/S -Westwood/M -wet-nurse/S -wet/TSDYG -wetland/S -wetness -wetsuit/S -wetware -Wexford/M -Wexler/M -Weymouth/M -WFF -whack/SDG -whale/RMGS -whaleboat/SM -whalebone/SM -Whalen/M -Whaley/M -wham/SDGM -wharf/MS -Wharton/M -wharves -what'd -what're -what's-her-name -what's-his-name -what's-its-name -what/M -whatever -Whatley/M -whatnot/SM -whatsername -whatshername -whatshisname -whatsisname -whatsit/S -whatsoever -wheat/M -wheatear/S -wheaten -wheatgerm -wheatgrass -wheatish -Wheatland -wheatmeal -Wheaton/M -Wheatstone/M -whee -wheedle/DSG -wheel-clamp/GD -wheel/GRDSM -wheelbarrow/MS -wheelbase/MS -wheelchair/SM -wheelhouse/SM -wheelie/SM -wheelwright/MS -wheeze/DSGZ -wheezy/T -Whelan/M -whelk/SM -whelm/fDcGS -whelp/SDMG -when -whence -whencesoever -whenever -whensoever -where'd -where're -where/M -whereabouts -whereas -whereat -whereby -wherefore/S -wherein -whereof -whereon -wheresoever -whereto -whereupon -wherever -wherewith -wherewithal/M -whet/SDG -whether -whetstone/MS -whew -whey/M -Whibley/M -which -which've -whichever -Whieldon/M -whiff/DGSM -Whig/SM -Whiggery -Whiggish -while/DGS -whilom -whilst -whim/SM -whimper/dS -whims/1Zw -whimsicality/MS -whimsicalness -whimsy/S -whinchat/S -whine/SRGDMZk -whinge/SGD -whingeing -whinny/DSG -whinstone -whiny/T -whip/MJGSD -whipcord/SM -whiplash/MS -Whippany -whipper -whipper-snapper/SM -whippet/MS -whipping/M -Whipple/M -whipsaw/SMGD -whir/DGS -whirl/GDS -whirligig/SM -whirlpool/MS -whirlwind/MS -whirlybird/SM -whirr -whisk/GRDZS -whisker/Z -whiskered -whiskey/MS -whisky/S -whisper/kdrJS -whist/M -whistle-blower/S -whistle-blowing -whistle-stop -whistle/DRSG -whit -Whitaker/M -Whitbread -Whitby/M -Whitcomb/M -white-collar -white-hot -white-out/S -white/PSTGMY -whitebait/M -whitebeam/S -whiteboard/S -Whitechapel/M -whited -Whitefield/M -whitefish/SM -whitefly/S -whitefront/S -Whitehall/M -Whitehaven/M -whitehead/S -Whitehorse/M -Whitehouse/M -Whitelaw/M -whitelist/SGD -Whitemoor -whiten/dSr -whitewash/DGMS -whitewasher -whitey/SM -Whitfield/M -whither -whitish -Whitley/M -Whitlock/M -Whitlow/M -Whitman/M -Whitmer/M -Whitney/M -Whitsun/M -Whitsuntide -Whittaker/M -Whittall/M -Whittier/M -Whittington/M -Whittle/M -whittle/RDGSJ -Whitwell/M -Whitworth -whiz/GD -whizzes -who'd -who'll -who're -who've -who/M -whoa -whoever/M -WHOIS -whole/S -wholefood/S -wholegrain -wholehearted/Y -wholeheartedness -wholemeal -wholeness -wholesale/RMDG -wholesome/UY -wholesomeness/U -wholistic/Y -wholly -whom -whomever -whomsoever -whoo -whoop/DGS -whoopee/S -whooper/MS -whoopsie/S -whoosh/GMDS -whop/RG -whore/SDGM! -whoredom/! -whorehouse/MS! -whoremaster/S! -whorish -whorishly -whorishness -whorl/SMD -whose -whoso -whosoever -why -whys -WI -Wi-Fi -Wicca -Wiccan/S -Wichita -wick/RiSDhM -wicked/P -wickeder -wickedest -Wickepin/M -wickerwork/M -wicket-gate -wicket-keeper/SM -wicket-keeping -wicket/SM -wicketkeeper/S -wicketkeeping -wickiup -Wickliffe/M -Wicklow/M -wide-angle -wide-area -wide-eyed -wide-ranging -wide/TY -wideawake -wideband -widen/rdS -wideness -widescreen/S -widespread -widgeon/M -widget/SM -Widnes -widow/RMSDG -widowhood/S -width/SM -widthways -Wieland/M -wield/SRDG -Wiens -Wiesbaden/M -wife/MpY -wifedom -wifeliness -wifely/T -wig/MGSD -Wigan/M -Wiggins -wiggle/RGYDS -wiggly/T -Wight/M -wigwag/GSD -wigwam/SM -Wii/S -wiki/SM -Wikibooks -Wikidata -Wikileaks/M -Wikimedia/M -Wikinews -Wikipedia/SM -Wikipedian/S -wikiquette -Wikiquote -Wikisource -Wikispecies -Wikiversity -Wikivoyage -Wiktionary/SM -Wil/M -Wilberforce/M -Wilbur/M -Wilcox/M -wild/TYPSG -wildcard/S -wildcat/MS -Wilde/M -wildebeest/SM -Wilder/M -wilder/P -wilderness/S -wildfire/MS -wildfowl/M -wilding/M -wildlife/M -wildwood -wile/DSMG -Wiley/M -Wilfred/M -wilful/YP -Wilhelm/M -Wilhelmina/M -Wilkerson/M -Wilkes -Wilkie/M -Wilkins -Wilkinson/M -will/GkSYD -Willa/M -Willamette/M -Willard/M -Willcocks -Willcox/M -Willem -Willemstad -Willenstad/M -willet/S -William/M -Williams/M -Williamsburg/M -Williamson/M -Williard -Willie/M -willing/UY -willingness/M -Willis -Willmott/M -Willoughby/M -willow/SMZ -willowherb -willowy/T -willpower/MS -Willy -willy-nilly -willy/S -Wilma -Wilmette -Wilmington -Wilmott/M -Wilmslow -Wilshire/M -Wilson/M -wilt/DGS -Wilton -Wiltshire/M -wily/PYT -Wimbledon/M -wimp/MSZ -wimple/MDSG -wimpy/T -win/RGdSJ -wince/SDG -Winceyette -winceyette -winch/DSGM -wincher/M -Winchester/S -Winckelmann -wind's -wind-up/SM -wind/UGSA -windage -windbag/SM -windblown -windbreak/SM -windburn/SM -windburnt -windcheater/SM -winded -windedness -winder/MS -Windermere/M -windfall/MS -windflower/SM -Windhoek/M -winding-sheet -winding/SM -windjammer/MS -windlass/SDMG -windless -windmill/MS -window-shop -window/pGSDM -windowpane/SM -windowsill/SM -windpipe/SM -windproof -windrow/SM -windscreen/MS -windslab/S -windsock/SM -Windsor/M -windsurf/SGDR -windswept -Windu/M -windward -windy/PYT -wine/ZMS -wineglass/SM -winegrower/SM -winemaker/SM -winemaking -winery/S -Winesap/S -wineskin/SM -Winfield -Winfrey/M -wing-like -wing/pmRGDM -wingbeat/S -Wingfield/M -wingspan/MS -wingspread/SM -wingsuit -Winifred/M -wink/RDSG -winkle/DSG -winkler/S -winnable -Winnebago/M -Winnetka -Winnie/M -winning/Y -Winnipeg -winnow/DGRS -wino/MS -Winooski -WinRAR -Winslow -winsome/Y -winsomeness -Winsor/M -Winsten/M -Winston/M -winter's -winter/cdS -winterer/M -wintergreen/SM -wintertime/M -Winthrop -Winton/M -wintriness -wintry/T -WinZip -wipe/SRGD7 -wire-haired -wire-tapper -wire-tapping -wire/2ZmDpSMJG -wired/A -wireframe/S -wireless/MSY -wireline -wirer/M -wires/A -wiretap/SDG -wiretapper/S -wiring's -wiring/A -Wirral -wiry/T -Wisconsin/M -Wisden -wisdom/MS -wise/TYS -wiseacre/MS -wisecrack/SGMD -wisecracker/S -wisely/U -Wiseman -Wisenheimer -wish/RSjGD6Z -wishbone/MS -wishing-well -wishy-washy -Wiska/M -wisp/MZS -wispy/T -wisteria/SM -wistful/Y -wistfulness -wit/zSM2pGZD -witch-hunt/S -witch/MyDSG -witchcraft/MS -witchdoctor/S -witchery/SM -witchlike -with -withal -Withalm -withdraw/SG -withdrawal/MS -withdrawer/M -withdrawn -withdrawnness -withdrew -wither/kS -withered -withering -Witherington -witherite -Witherspoon -withheld -withhold/SRJG -within -without -withstand/SG -withstood -witless/Y -witlessness -witness/DGSM -wits/e -Witt/M -Witte/M -witted/e -Wittenberg -witter/Sd -Wittgenstein/M -witticism/SM -witting/YU -Witts/M -witty/PT -Witwatersrand -Wivenhoe/M -wives -wizard/ySYM -wizardry/SM -wizen -wizened -WMA -WNO -WNP -WO -woad/M -wobble/SY2DG -wobbler's -wobbly/T -Wobegon -Woburn/M -Wodehouse -wodge/S -woe/jSM6 -woebegone -woefulness -wog/S -woggle/S -wok/MS -woke -woken -Woking -Wokingham -Wolcott -Wolds -wolf-whistles -wolf/MDGS -wolfberry/S -Wolfe/M -Wolff/M -Wolffian -Wolfgang -wolfhound/SM -wolfish/Y -wolfishness -Wolfowitz/M -wolfram/MS -wolframite -Wolfson -Wollaston/M -Wollongong -Wollstonecraft/M -Wolverhampton/M -wolverine/MS -Wolverton -wolves -woman/MsQY -womanhood/SM -womanish -womanizer -womankind/M -womanlike -womanly/TP -womb/MS -wombat/MS -women/M -womenfolk/M -won -won't -wonder/jLSdkM -wonderer/M -wonderful/P -wonderland/SM -wondrous/Y -wondrousness -Wong/M -wonky/T -wont/hDG -wontedly/U -woo/DRGS -wood/mDS2M -Woodard -Woodberry -woodbine/SM -woodblock/S -Woodbridge/M -Woodbury -woodcarver/S -woodcarving/SM -woodchip/S -woodchuck/SM -woodcock/SM -woodcut/SRGJM -woodcutting/M -wooden/Y -woodener -woodenness -woodenware -woodland/SM -woodlander -woodlark/S -Woodlawn -Woodley/M -woodlice -woodlouse/M -woodman -woodmen -woodpecker/MS -woodpile/SM -Woodrow -woodruff/M -woodshed/MS -woodsmoke -Woodstock/M -woodswallow/S -woodturner/S -woodturning -Woodward/S -woodwind/S -woodwork/RMG -woodworking/M -woodworm/MS -Woody's -woody/T -Woodyatt/M -woof/DRGMS -wool-gathering -wool/SMY -Woolcock/M -woollen/S -woolliness -woolly/TS -Woolworth -Woonsocket -woosh/SGD -Wooster -Wootton/M -woozy/TYP -wop/SM -Worcester -Worcestershire/M -word's -word-blindness -word-perfect -word-processing -word/ADJGS -wordage -wordbook/SM -wording/MA -wordless/YP -wordlist/S -WordNet/M -WordPad -wordplay/MS -WordPress/M -wordsmith/S -Wordsworth/M -Wordsworthiana -wordy/TPY -wore/e -Worf/M -work's/e -work-shy -work-to-rule -work/ADeScG -workability/M -workable/U -workableness -workably -workaday -workaholic/S -workaholism -workaround/MS -workbench/SM -workboat/S -workbook/MS -workday/MS -worker/SM -workfare/S -workflow/S -workforce/S -workful -workfulness -workhead -workhorse/MS -workhouse/SM -working-class -working/MS -Workington -workless/P -workload/SM -workman/M -workmanlike -workmanship/MS -workmaster -workmate/S -workmen/M -workout/MS -workpeople -workperson -workpiece/S -workplace/SM -workprint -workroom/SM -worksheet/S -workshop/MSGD -worksite/S -Worksop/M -workspace/S -workstation/MS -worktable/MS -worktop/S -workup/S -workwear -workwise -workwoman -world-class -world-famous -world-weary -world/fMS -WorldCom -worldliness/U -worldly-wise -worldly/TP -worldwide -worm-casts -worm-eaten -worm-wheel -worm/GSDZM -wormer/M -wormhole/SM -wormwood/MS -wormy/T -worn-out -worn/eU -worried/U -worrisome/Y -worry/RDkSGh -worse -worsen/dS -worship/jRSG6D -worshipfulness -worst-case -worst/D -worsted/MS -worth/pZz2 -worthily/U -worthiness/U -Worthing/M -Worthington/M -worthless/PY -worthwhile -worthy/TPS -would -would've -would-be -wouldn't -wouldn't've -wouldst -wound/MDJSG -wounded/U -wove/A -woven/UA -wow/GSD -woylie/S -wpm -wrack/M -WRAF -wraith/MS -wraithlike -wrangle/GRDS -wrap's -wrap/cU -wraparound/S -wrapped -wrapper/MS -wrapping/SM -wraps/U -wrasse/MS -wrath/jM6 -wrathfulness -Wraxall/M -wreak/DSG -wreaker -wreath/SDMG -wreathe/S -wreck/GSDR -wreckage/MS -Wrekin/M -wren/SM -wrench/DGkSM -wrest/GSD -wrester/M -wrestle/DRGS -wrestling/M -wretch/MiDhS -wretched/rP -wretchedest -Wrexham/M -wriggle/YRDSG -wriggly/T -Wright/M -wrights -Wrigley -wring/RGS -wrinkle/GDSMY -wrinkled/U -wristband/MS -wristwatch/SM -writ/MS -write-down/S -write-off/S -write-up/S -write/fRGAS -writeable -writes/c -writhe/SDG -writing's -writing/AS -written/fUcaA -WRNS -wrong-foot/D -wrong-headed/Y -wrong-headedness -wrong/j6GYSD -wrongdoer/MS -wrongdoing/MS -wrongfulness -wrongness -Wronski/M -wrote/fAc -wroth -wrought-iron -wrought/Ic -wrung -wry/3 -wryer -wryest -wryly -wryness -wt -WTF -WTO -Wu/M -Wulfsige -wunderkind/S -wunderkinder -wurtzite -wurzel/S -WV -WWI -WWII -WWW -WY -Wyatt/M -Wycombe -Wykeham -Wylie/M -Wyman -Wynn/M -Wyoming -Wyss/M -x -X -x-axis -X-rated -X-ray/S -x64 -x86 -Xanax -xanthene -xanthine/S -Xavier -Xbox/S -XChat/M -Xcode/M -Xenarthra -xenarthran/S -Xenia -Xenix/M -xenobiotic/S -xenocryst/SW -xenogamous -xenogamy -xenograft/S -xenolith/SW -xenologist -xenology -xenon/M -Xenophanes/M -xenophobe/MWS -xenophobia/M -xenotime -Xeon -xerography/MW -xerophyte/MS -xerophytic -Xerox/SDGM -Xerxes -Xhosa -XHTML -xi -Xi -Xi'an/M -xii -xiii -Xindi/M -xiv -xix -XIX -XL -xlsx -Xmas -XML -XMP -XOR -XP -XPI -xpi -Xubuntu/M -XUL -XULRunner/M -xv -xvi/M -XXL -xylem/SM -xylene -xylitol -xylometazoline -xylophone/SM -xylophonist/S -xylose -y'all -y-axis -y/K -Y2K -ya -yacht/5mMSDG -yachters -yachtie/SM -yack/GDS -yahoo/SM -Yahveh/M -Yahweh -yak/MS -Yakima -Yakov/M -Yakutsk -Yale -Yalta -yam/SM -Yamaha/M -Yamazaki/M -yammer/Sd -yammerer/S -Yamoussoukro/M -yang -Yangtze -yank/SGD -Yankee/S -Yankeeism -Yankton/M -Yaounde/M -Yaoundé/M -yap/SGD -Yarborough -yard/SM -yardage/MS -yardarm/MS -yardstick/SM -Yarmouth/M -Yarmuk -yarmulke/SM -yarn/DMGS -yarrow/SM -Yashmak -Yasmin -Yates -yaw/DSG -yawl/SM -yawn/kGRDS -yawp/DR -yay -YB -yd -ye -yea/S -Yeager -yeah -year-end -year-on-year -year-round -year/YMS -yearbook/SM -yearling/SM -yearlong -yearn/DJGkS -yearning/M -yeast/SM2Z -yeasty/T -Yeats -Yee/M -yell/SGD -yellow-bellied -yellow/GDSMZ -yellowfin -yellowhammer/MS -yellowish -Yellowknife/M -yellowlegs -yellowness -Yellowstone/M -yellowthroat/S -yelp/DGS -Yemen/M -Yemeni -yen/DSGM -yeoman/YM -yeomanry -yeomen/M -Yeovil -Yeoville/M -yep -Yerevan/M -yes -yes-man -yesterday/SM -yesteryear/SM -yet -yeti/SM -yew/SM -YiB -Yichun -Yid -Yiddish -Yiddishism -Yiddishist/S -yield/DSG -yielder/S -yielding/U -yikes -yin -yippee -Yishuv -Yizkor/S -ylang-ylang -YMCA -yo -yo-yo/SGD -yo-yoes -yob/S -yobbism -yobbo/S -yobibit/S -yobibyte/S -Yoda/M -yodel/RDGS -yoga/M -yoghurt/M -yogi/SM -yogic -yogurt/S -Yohanna/M -yoke's -yoke/UDGS -yokel/SM -Yokohama -yolk/SM -yon -yonder -Yongbyon/M -Yonkers -yonks -Yoong -yore -York/M -york/SGD -Yorker/S -Yorkshire/M -Yorkshireman -Yorktown -Yoruba -Yosemite -Yost/M -yottabit -yottabyte/S -you -you'd -you'll -you're -you've -you-know-what -you-know-who -young/T -Youngberry -youngish -youngster/SM -Youngstown -Younis -Younker -your/S -yourself -yourselves -Yousuf -youth/jSM6 -youthfulness -YouTube -yowl/GSD -Yoyodyne -Ypres -Ypsilanti -yr -ytterbium/M -yttrium/M -yuan -Yuan -Yuanzhang -Yuba -Yucatan -yucca/MS -yuck -yucky/T -Yuga -yuga/S -Yugoslav/S -Yugoslavia/M -Yugoslavian -yuk -Yukon -Yule -Yuletide/M -yum-yum -yum/Z -yummy/T -yup -yuppie/SM -Yuri -Yushchenko/M -Yutaka/M -Yvan/M -Yves -Yvette -YWCA -z/M -Z80 -zabaglione -Zachary -Zack/M -Zadie -Zadie' -zag/SGD -Zagreb/M -Zaibatsu -Zaire/M -Zairean/S -Zairian/S -Zambezi -Zambia/M -Zambian/S -Zamia -zander -zaniness -zany/T -Zanzibar -zap/DRGS -zappy/T -ZAPU -Zara/M -Zarathustra/M -Zarathustrian/S -Zawadski -Zawahiri -zazen -Zazzo/M -ZB -Zb -Zbarsky -zeal/M -Zealand/M -Zealander/S -zealot/MS -zealotry -zealous/cP -zealously -zeaxanthin -zebibit/S -zebibyte/S -zebra/MS -zebu/SM -zed/MS -Zedong/M -Zeebrugge -Zeeland -Zeeman -Zefram -zein -Zeiss/M -zeitgeber/S -Zeitgeist -zeitgeist/Z -zelkova -Zellick/M -Zelter/M -zemstvo/S -Zen -zenana/S -Zenist/S -zenith/MS -Zeno/M -Zenobia/M -zeolite/SW -Zephaniah/M -zephyr/MS -Zeppelin/MS -Zermatt/M -zero-rated -zero-sum -zero/GSDM -zeroes -zeroisation -zeroise/SGD -zeroization -zeroize/SGD -zeroth -zest/6Mj -zestfulness -zesty/T -zeta/S -Zetland -zettabit -zettabyte/S -zeugma/M -Zeus/M -Zeuxis -Zhang/M -Zhangjiakou -Zhu -ZiB -zidovudine -Ziegfeld/SM -Ziegler/M -ziggurat/SM -zigzag/SGD -Zika/M -zilch -zillion/S -Zilog/M -Zimbabwe/M -Zimbabwean/S -Zimmerman/M -Zimmermann/M -zinc/MD -zine/S -Zinfandel/SM -zing/GDM -zinnia/SM -Zion/3M -Zionism -Zionist -zip's -zip/UGDS -zipless -zippy/T -zipx -zircon/M -zirconium/M -zither/MS -zloty/MS -zlotys -zodiac/MS -zodiacal -Zoe/M -zoeal -Zoloft -Zoltan/M -Zoltán/M -zombie/SM -zonal/Y -zonation/S -zone's -zone/ASDG -zonked -zoo/SM -zoocentrism -zoogeographer/S -zoogeographic -zoogeographical -zoogeographically -zoogeography -zooid/S -zooidal -zookeeper/SM -zoology/3SMw1 -zoom/DGS -zoomorphic -zoomorphism -zoophobia -zoophyte/SM -zooplankton -zoospore/S -zooxanthella -zooxanthellae -zooxanthellate -Zoroaster -Zoroastrian/S -Zoroastrianism -zoster -Zs -Zubrin/M -zucchetto/S -Zuckerberg/M -zugzwang -Zukerman -Zulu/MS -Zululand -Zurich/M -Zuza/M -Zwick/M -zwieback/MS -ZX -zygomatic -zygote/SWM -zygotene -zymurgy/S -Zyrian -zythum -Áron/M -Ågar -Århus -Éliphas/M -à -éclair/SM -éclat/M -élan/M -émigré/S diff --git a/tests/dictionaries/fr_FR/fr_FR.aff b/tests/dictionaries/fr_FR/fr_FR.aff deleted file mode 100644 index 814a4f5..0000000 --- a/tests/dictionaries/fr_FR/fr_FR.aff +++ /dev/null @@ -1,10767 +0,0 @@ -# AFFIXES DU DICTIONNAIRE FRANÇAIS «Moderne» v3.8 -# par Olivier R. -- licences LGPL, GPL, MPL -# Généré le 01.08.2010 22:54:24 -# Pour améliorer le dictionnaire, allez sur http://www.dicollecte.org/ - - - -SET UTF-8 - -WORDCHARS -’ - - -TRY aàâäbcçdeéèêëfghiîïjklmnoôöpqrstuùûüvwxyzæœAÀÂÄBCÇDEÉÈÊËFGHIÎÏJKLMNOÔÖPQRSTUÙÛÜVWXYZÆŒáíÿñåóşăã - -MAP 12 -MAP aàâä -MAP eéèêë -MAP iîïy -MAP oôö -MAP uùûü -MAP cç -MAP AÀÂÄ -MAP EÉÈÊË -MAP IÎÏY -MAP OÔÖ -MAP UÙÛÜ -MAP CÇ - -REP 67 -REP f ph -REP ph f -REP c qu -REP qu c -REP k qu -REP qu k -REP x ct -REP ct x -REP bb b -REP b bb -REP cc c -REP c cc -REP ff f -REP f ff -REP ll l -REP l ll -REP mm m -REP m mm -REP nn n -REP n nn -REP pp p -REP p pp -REP rr r -REP r rr -REP ss s -REP s ss -REP ss c -REP c ss -REP ss ç -REP ç ss -REP tt t -REP t tt -REP œ oe -REP oe œ -REP æ ae -REP ae æ -REP ai é -REP é ai -REP ai è -REP è ai -REP ai ê -REP ê ai -REP ei é -REP é ei -REP ei è -REP è ei -REP ei ê -REP ê ei -REP o au -REP au o -REP o eau -REP eau o -REP ett èt -REP èt ett -REP ell èl -REP èl ell -REP ème e -REP ogue ogiste -REP ogiste ogue -REP disez dites -REP fesez faites -REP faisez faites -REP puit puits -REP sanctionnable punissable -REP questionnable discutable -REP décrédibilis discrédit -REP antitartre détartrant - -KEY azertyuiop|qsdfghjklmù|wxcvbn|aéz|yèu|iço|oàp|aqz|zse|edr|rft|tgy|yhu|uji|iko|olpm|qws|sxd|dcf|fvg|gbh|hnj - -ICONV 32 -ICONV à à -ICONV â â -ICONV ä ä -ICONV é é -ICONV è è -ICONV ê ê -ICONV ë ë -ICONV î î -ICONV ï ï -ICONV ô ô -ICONV ö ö -ICONV ù ù -ICONV û û -ICONV ü ü -ICONV ÿ ÿ -ICONV ç ç -ICONV À À -ICONV   -ICONV Ä Ä -ICONV É É -ICONV È È -ICONV Ê Ê -ICONV Ë Ë -ICONV Î Î -ICONV Ï Ï -ICONV Ô Ô -ICONV Ö Ö -ICONV Ù Ù -ICONV Û Û -ICONV Ü Ü -ICONV Ÿ Ÿ -ICONV Ç Ç - -OCONV 1 -OCONV ' ’ - - - -FLAG long - - -NEEDAFFIX () - -FORBIDDENWORD {} - -CIRCUMFIX ** - -KEEPCASE || - -NOSUGGEST -- - - - -BREAK 1 -BREAK - - -COMPOUNDMIN 2 - -COMPOUNDFLAG == - - - - -PFX L' Y 17 -PFX L' 0 l' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] -PFX L' a l'A a -PFX L' à l'À à -PFX L' â l' â -PFX L' e l'E e -PFX L' é l'É é -PFX L' è l'È è -PFX L' ê l'Ê ê -PFX L' i l'I i -PFX L' î l'Î î -PFX L' o l'O o -PFX L' ô l'Ô ô -PFX L' u l'U u -PFX L' y l'Y y -PFX L' h l'H h -PFX L' œ l'Œ œ -PFX L' æ l'Æ æ - -PFX D' Y 17 -PFX D' 0 d' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] -PFX D' a d'A a -PFX D' à d'À à -PFX D' â d' â -PFX D' e d'E e -PFX D' é d'É é -PFX D' è d'È è -PFX D' ê d'Ê ê -PFX D' i d'I i -PFX D' î d'Î î -PFX D' o d'O o -PFX D' ô d'Ô ô -PFX D' u d'U u -PFX D' y d'Y y -PFX D' h d'H h -PFX D' œ d'Œ œ -PFX D' æ d'Æ æ - -PFX Q' Y 4 -PFX Q' 0 qu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] -PFX Q' 0 quoiqu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] -PFX Q' 0 puisqu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] -PFX Q' 0 lorsqu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] - -PFX Qj Y 1 -PFX Qj 0 jusqu' [aàâeèéêiîoôuyhœæ] - -PFX Si Y 1 -PFX Si 0 s' . - -SFX S. Y 1 -SFX S. 0 s [^sxz] - -SFX X. Y 3 -SFX X. 0 x [aeoœ]u -SFX X. l ux al -SFX X. il ux ail - -SFX A. Y 8 -SFX A. an en an -SFX A. f ves f -SFX A. h hes h -SFX A. s ses s -SFX A. x xes x -SFX A. y ies y -SFX A. zz zzes zz -SFX A. z zzes [^z]z - -SFX I. Y 5 -SFX I. a e a -SFX I. e i e -SFX I. o i o -SFX I. um a um -SFX I. us i us - -SFX F. Y 72 -SFX F. 0 0 . -SFX F. 0 s [eë] -SFX F. e 0 [éiï]e -SFX F. e s [éiï]e -SFX F. rice eur [dt]rice -SFX F. rice eurs [dt]rice -SFX F. de d de -SFX F. de ds de -SFX F. ffe f ffe -SFX F. ffe fs ffe -SFX F. ofe of ofe -SFX F. ofe ofs ofe -SFX F. anche anc anche -SFX F. anche ancs anche -SFX F. èche ec èche -SFX F. èche ecs èche -SFX F. aiche ais aiche -SFX F. aîche ais aîche -SFX F. khe kh khe -SFX F. khe khs khe -SFX F. he h [ut]he -SFX F. he hs [ut]he -SFX F. ke k ke -SFX F. ke ks ke -SFX F. le l [aiouû]le -SFX F. le ls [aiouû]le -SFX F. lle l [eiu]lle -SFX F. lle ls [eiu]lle -SFX F. ne n [aiou]ne -SFX F. ne ns [aiou]ne -SFX F. nne n [aeo]nne -SFX F. nne ns [aeo]nne -SFX F. igne in igne -SFX F. igne ins igne -SFX F. re r [aiuûy]re -SFX F. re rs [aiuûy]re -SFX F. ère er ère -SFX F. ère ers ère -SFX F. se s [^us]se -SFX F. esse e [^eo].esse -SFX F. esse es [^eo].esse -SFX F. eresse eur eresse -SFX F. eresse eurs eresse -SFX F. oresse eur oresse -SFX F. oresse eurs oresse -SFX F. sse s [^e]sse -SFX F. use us [^eo]use -SFX F. euse eur euse -SFX F. euse eurs euse -SFX F. te t [^èt]te -SFX F. te ts [^èt]te -SFX F. tte t tte -SFX F. tte ts tte -SFX F. ète et ète -SFX F. ète ets ète -SFX F. ue u [^gq]ue -SFX F. ue us [^gq]ue -SFX F. gue g gue -SFX F. gue gs gue -SFX F. cque c cque -SFX F. cque cs cque -SFX F. que c [^c]que -SFX F. que cs [^c]que -SFX F. ève ef ève -SFX F. ève efs ève -SFX F. ve f [iïu]ve -SFX F. ve fs [iïu]ve -SFX F. uë u uë -SFX F. uë us uë -SFX F. üe u üe -SFX F. üe us üe -SFX F. ze z ze - -SFX W. N 8 -SFX W. 0 0 . -SFX W. e es e -SFX W. ce x ce -SFX W. use ux [eo]use -SFX W. ausse aux ausse -SFX W. ousse oux ousse -SFX W. ale al ale -SFX W. ale aux ale - -SFX S* Y 2 -SFX S* 0 0/D'L'Q' [^sxz] -SFX S* 0 s/D'Q' [^sxz] - -SFX X* Y 4 -SFX X* 0 0/D'L'Q' . -SFX X* 0 x/D'Q' [aeoœ]u -SFX X* l ux/D'Q' al -SFX X* il ux/D'Q' ail - -SFX A* Y 16 -SFX A* an an/D'L'Q' an -SFX A* an en/D'Q' an -SFX A* f f/D'L'Q' f -SFX A* f ves/D'Q' f -SFX A* h h/D'L'Q' h -SFX A* h hes/D'Q' h -SFX A* s s/D'L'Q' s -SFX A* s ses/D'Q' s -SFX A* x h/D'L'Q' x -SFX A* x hes/D'Q' x -SFX A* y y/D'L'Q' y -SFX A* y ies/D'Q' y -SFX A* zz zz/D'L'Q' zz -SFX A* zz zzes/D'Q' zz -SFX A* z z/D'L'Q' [^z]z -SFX A* z zzes/D'Q' [^z]z - -SFX I* Y 10 -SFX I* a a/D'L'Q' a -SFX I* a e/D'Q' a -SFX I* e e/D'L'Q' e -SFX I* e i/D'Q' e -SFX I* o o/D'L'Q' o -SFX I* o i/D'Q' o -SFX I* um um/D'L'Q' um -SFX I* um a/D'Q' um -SFX I* us us/D'L'Q' us -SFX I* us i/D'Q' us - -SFX F* Y 63 -SFX F* 0 0/D'L'Q' . -SFX F* 0 s/D'Q' [eë] -SFX F* e 0/D'L'Q' [éiï]e -SFX F* e s/D'Q' [éiï]e -SFX F* rice eur/D'L'Q' [dt]rice -SFX F* rice eurs/D'Q' [dt]rice -SFX F* de d/D'L'Q' de -SFX F* de ds/D'Q' de -SFX F* ffe f/D'L'Q' ffe -SFX F* ffe fs/D'Q' ffe -SFX F* ofe of/D'L'Q' ofe -SFX F* ofe ofs/D'Q' ofe -SFX F* he h/D'L'Q' [ut]he -SFX F* he hs/D'Q' [ut]he -SFX F* èke ek/D'L'Q' èke -SFX F* èke eks/D'Q' èke -SFX F* le l/D'L'Q' [aiouû]le -SFX F* le ls/D'Q' [aiouû]le -SFX F* lle l/D'L'Q' [eiu]lle -SFX F* lle ls/D'Q' [eiu]lle -SFX F* ne n/D'L'Q' [aiou]ne -SFX F* ne ns/D'Q' [aiou]ne -SFX F* nne n/D'L'Q' [aeo]nne -SFX F* nne ns/D'Q' [aeo]nne -SFX F* gne n/D'L'Q' igne -SFX F* gne ns/D'Q' igne -SFX F* re r/D'L'Q' [aiuûy]re -SFX F* re rs/D'Q' [aiuûy]re -SFX F* ère er/D'L'Q' ère -SFX F* ère ers/D'Q' ère -SFX F* se s/D'L'Q' [^us]se -SFX F* esse e/D'L'Q' [^eo].esse -SFX F* esse es/D'Q' [^eo].esse -SFX F* eresse eur/D'L'Q' eresse -SFX F* eresse eurs/D'Q' eresse -SFX F* oresse eur/D'L'Q' oresse -SFX F* oresse eurs/D'Q' oresse -SFX F* sse s/D'L'Q' [^e]sse -SFX F* use us/D'L'Q' [^eo]use -SFX F* euse eur/D'L'Q' euse -SFX F* euse eurs/D'Q' euse -SFX F* te t/D'L'Q' [^èt]te -SFX F* te ts/D'Q' [^èt]te -SFX F* tte t/D'L'Q' tte -SFX F* tte ts/D'Q' tte -SFX F* ète et/D'L'Q' ète -SFX F* ète ets/D'Q' ète -SFX F* ue u/D'L'Q' [^gq]ue -SFX F* ue us/D'Q' [^gq]ue -SFX F* gue g/D'L'Q' gue -SFX F* gue gs/D'Q' gue -SFX F* cque c/D'L'Q' cque -SFX F* cque cs/D'Q' cque -SFX F* que c/D'L'Q' [^c]que -SFX F* que cs/D'Q' [^c]que -SFX F* ève ef/D'L'Q' ève -SFX F* ève efs/D'Q' ève -SFX F* ve f/D'L'Q' [iïu]ve -SFX F* ve fs/D'Q' [iïu]ve -SFX F* uë u/D'L'Q' uë -SFX F* uë us/D'Q' uë -SFX F* üe u/D'L'Q' üe -SFX F* üe us/D'Q' üe - -SFX W* Y 7 -SFX W* 0 0/D'L'Q' . -SFX W* e es/D'Q' e -SFX W* ce x/D'L'Q' ce -SFX W* use ux/D'L'Q' [eo]use -SFX W* ousse oux/D'L'Q' ousse -SFX W* ale al/D'L'Q' ale -SFX W* ale aux/D'Q' ale - -PFX Um Y 29 -PFX Um 0 0/S. . -PFX Um 0 l' [aàâeèéêiîoôuyœæ] -PFX Um 0 d'/S. [aàâeèéêiîoôuyœæ] -PFX Um 0 yotta/S. . -PFX Um 0 zetta/S. . -PFX Um 0 exa/S. . -PFX Um 0 l'exa . -PFX Um 0 d'exa/S. . -PFX Um 0 peta/S. . -PFX Um 0 téra/S. . -PFX Um 0 giga/S. . -PFX Um 0 méga/S. . -PFX Um 0 kilo/S. . -PFX Um 0 hecto/S. . -PFX Um 0 l'hecto . -PFX Um 0 d'hecto/S. . -PFX Um 0 déca/S. . -PFX Um 0 déci/S. . -PFX Um 0 centi/S. . -PFX Um 0 milli/S. . -PFX Um 0 micro/S. . -PFX Um 0 nano/S. . -PFX Um 0 pico/S. . -PFX Um 0 femto/S. . -PFX Um 0 atto/S. . -PFX Um 0 l'atto . -PFX Um 0 d'atto/S. . -PFX Um 0 zepto/S. . -PFX Um 0 yocto/S. . - -PFX U. Y 20 -PFX U. 0 Y . -PFX U. 0 Z . -PFX U. 0 E . -PFX U. 0 P . -PFX U. 0 T . -PFX U. 0 G . -PFX U. 0 M . -PFX U. 0 k . -PFX U. 0 h . -PFX U. 0 da . -PFX U. 0 d . -PFX U. 0 c . -PFX U. 0 m . -PFX U. 0 µ . -PFX U. 0 n . -PFX U. 0 p . -PFX U. 0 f . -PFX U. 0 a . -PFX U. 0 z . -PFX U. 0 y . - -PFX n' Y 1 -PFX n' 0 n' [aàâeèéêiîoôuyhœæ] - -PFX q' Y 1 -PFX q' 0 qu' [aàâeèéêiîoôuyhœæ] - -PFX q= Y 1 -PFX q= 0 qu'/** [aàâeèéêiîoôuyhœæ] - -PFX d' Y 1 -PFX d' 0 d' [aàâeèéêiîoôuyhœæ] - -PFX j' Y 1 -PFX j' 0 j' [aàâeèéêiîoôuyhœæ] - -PFX j= Y 1 -PFX j= 0 j'/** [aàâeèéêiîoôuyhœæ] - -PFX c' Y 1 -PFX c' 0 c' [aàâeèéêiîoôuyhœæ] - -PFX c= Y 1 -PFX c= 0 c'/** [aàâeèéêiîoôuyhœæ] - -PFX l' Y 1 -PFX l' 0 l' [aàâeèéêiîoôuyhœæ] - -PFX m' Y 1 -PFX m' 0 m' [aàâeèéêiîoôuyhœæ] - -PFX t' Y 1 -PFX t' 0 t' [aàâeèéêiîoôuyhœæ] - -PFX s' Y 1 -PFX s' 0 s' [aàâeèéêiîoôuyhœæ] - -SFX zA Y 34 -SFX zA voir voir/n'q'd'l'm't' avoir -SFX zA voir yant/n'q'l'm't' avoir -SFX zA voir i/n'q'j'l't' avoir -SFX zA voir s/n'q'l'm't' avoir -SFX zA voir 0/n'q'l'm't' avoir -SFX zA voir vons/n'q'l't' avoir -SFX zA voir vez/n'q'l'm' avoir -SFX zA voir vais/n'q'j'l'm't' avoir -SFX zA voir vais/n'q'l'm't' avoir -SFX zA voir vait/n'q'l'm't' avoir -SFX zA voir vions/n'q'l't' avoir -SFX zA voir viez/n'q'l'm' avoir -SFX zA voir vaient/n'q'l'm't' avoir -SFX zA voir urai/n'q'j'l'm't' avoir -SFX zA voir uras/n'q'l'm't' avoir -SFX zA voir ura/n'q'l'm't' avoir -SFX zA voir urons/n'q'l't' avoir -SFX zA voir urez/n'q'l'm' avoir -SFX zA voir uront/n'q'l'm't' avoir -SFX zA voir urais/n'q'j'l'm't' avoir -SFX zA voir urais/n'q'l'm't' avoir -SFX zA voir urait/n'q'l'm't' avoir -SFX zA voir urions/n'q'l't' avoir -SFX zA voir uriez/n'q'l'm' avoir -SFX zA voir uraient/n'q'l'm't' avoir -SFX zA voir ie/n'j'l'm't' avoir -SFX zA voir ies/n'l'm't' avoir -SFX zA voir it/n'l'm't' avoir -SFX zA voir yons/n'l't' avoir -SFX zA voir yez/n'l'm' avoir -SFX zA voir ient/n'l'm't' avoir -SFX zA voir ie/n' avoir -SFX zA voir yons/n' avoir -SFX zA voir yez/n' avoir - -SFX zB Y 17 -SFX zB us u eus -SFX zB us us eus -SFX zB us ue eus -SFX zB us ues eus -SFX zB us us/n'q'j'l'm't' eus -SFX zB us ussé eus -SFX zB us us/n'q'l'm't' eus -SFX zB us ut/n'q'c'l'm't' eus -SFX zB us ûmes/n'q'l't' eus -SFX zB us ûtes/n'q'l'm' eus -SFX zB us urent/n'q'l'm't' eus -SFX zB us usse/n'q'j'l'm't' eus -SFX zB us usses/n'q'l'm't' eus -SFX zB us ût/n'q'c'l'm't' eus -SFX zB us ussions/n'q'l't' eus -SFX zB us ussiez/n'q'l'm' eus -SFX zB us ussent/n'q'l'm't' eus - -SFX zC Y 1 -SFX zC nt nt/n'q'l'm't' ont - -SFX zE Y 2 -SFX zE tre tre/n'q'd'l'm't's' être -SFX zE tre tes/n'q'l'm' être - -SFX zF Y 24 -SFX zF uis uis suis -SFX zF uis ommes suis -SFX zF uis ont suis -SFX zF uis erai suis -SFX zF uis eras suis -SFX zF uis era suis -SFX zF uis erons suis -SFX zF uis erez suis -SFX zF uis eront suis -SFX zF uis erais suis -SFX zF uis erais suis -SFX zF uis erait suis -SFX zF uis erions suis -SFX zF uis eriez suis -SFX zF uis eraient suis -SFX zF uis ois suis -SFX zF uis ois suis -SFX zF uis oit suis -SFX zF uis oyons suis -SFX zF uis oyez suis -SFX zF uis oient suis -SFX zF uis ois suis -SFX zF uis oyons suis -SFX zF uis oyez suis - -SFX zG Y 8 -SFX zG tais tant/n'q'l'm't's' étais -SFX zG tais té étais -SFX zG tais tais/n'q'j'l'm't' étais -SFX zG tais tais/n'q'l'm't' étais -SFX zG tais tait/n'q'c'l'm't's' étais -SFX zG tais tions/n'q'l't' étais -SFX zG tais tiez/n'q'l'm' étais -SFX zG tais taient/n'q'c'l'm't's' étais - -SFX zH N 13 -SFX zH us us fus -SFX zH us ussé fus -SFX zH us us fus -SFX zH us ut fus -SFX zH us ûmes fus -SFX zH us ûtes fus -SFX zH us urent fus -SFX zH us usse fus -SFX zH us usses fus -SFX zH us ût fus -SFX zH us ussions fus -SFX zH us ussiez fus -SFX zH us ussent fus - -SFX zI Y 2 -SFX zI s s/n'q'l'm't' es -SFX zI s st/n'q'c'l'm't's' es - -SFX a0 N 119 -SFX a0 er er er -SFX a0 er ant [^cg]er -SFX a0 cer çant cer -SFX a0 ger geant ger -SFX a0 er é er -SFX a0 er e [^y]er -SFX a0 yer ye [^ou]yer -SFX a0 yer ie [aou]yer -SFX a0 er es [^y]er -SFX a0 yer yes [^ou]yer -SFX a0 yer ies [aou]yer -SFX a0 er e [^y]er -SFX a0 yer ye [^ou]yer -SFX a0 yer ie [aou]yer -SFX a0 er ons [^cg]er -SFX a0 cer çons cer -SFX a0 ger geons ger -SFX a0 er ez er -SFX a0 r nt [^y]er -SFX a0 yer yent [^ou]yer -SFX a0 yer ient [aou]yer -SFX a0 er ais [^cg]er -SFX a0 cer çais cer -SFX a0 ger geais ger -SFX a0 er ais [^cg]er -SFX a0 cer çais cer -SFX a0 ger geais ger -SFX a0 er ait [^cg]er -SFX a0 cer çait cer -SFX a0 ger geait ger -SFX a0 er ions er -SFX a0 er iez er -SFX a0 er aient [^cg]er -SFX a0 cer çaient cer -SFX a0 ger geaient ger -SFX a0 er ai [^cg]er -SFX a0 cer çai cer -SFX a0 ger geai ger -SFX a0 er as [^cg]er -SFX a0 cer ças cer -SFX a0 ger geas ger -SFX a0 er a [^cg]er -SFX a0 cer ça cer -SFX a0 ger gea ger -SFX a0 er âmes [^cg]er -SFX a0 cer çâmes cer -SFX a0 ger geâmes ger -SFX a0 er âtes [^cg]er -SFX a0 cer çâtes cer -SFX a0 ger geâtes ger -SFX a0 er èrent er -SFX a0 er erai [^y]er -SFX a0 yer yerai [^ou]yer -SFX a0 yer ierai [aou]yer -SFX a0 er eras [^y]er -SFX a0 yer yeras [^ou]yer -SFX a0 yer ieras [aou]yer -SFX a0 er era [^y]er -SFX a0 yer yera [^ou]yer -SFX a0 yer iera [aou]yer -SFX a0 er erons [^y]er -SFX a0 yer yerons [^ou]yer -SFX a0 yer ierons [aou]yer -SFX a0 er erez [^y]er -SFX a0 yer yerez [^ou]yer -SFX a0 yer ierez [aou]yer -SFX a0 er eront [^y]er -SFX a0 yer yeront [^ou]yer -SFX a0 yer ieront [aou]yer -SFX a0 er erais [^y]er -SFX a0 yer yerais [^ou]yer -SFX a0 yer ierais [aou]yer -SFX a0 er erais [^y]er -SFX a0 yer yerais [^ou]yer -SFX a0 yer ierais [aou]yer -SFX a0 er erait [^y]er -SFX a0 yer yerait [^ou]yer -SFX a0 yer ierait [aou]yer -SFX a0 er erions [^y]er -SFX a0 yer yerions [^ou]yer -SFX a0 yer ierions [aou]yer -SFX a0 er eriez [^y]er -SFX a0 yer yeriez [^ou]yer -SFX a0 yer ieriez [aou]yer -SFX a0 er eraient [^y]er -SFX a0 yer yeraient [^ou]yer -SFX a0 yer ieraient [aou]yer -SFX a0 er e [^y]er -SFX a0 yer ye [^ou]yer -SFX a0 yer ie [aou]yer -SFX a0 er es [^y]er -SFX a0 yer yes [^ou]yer -SFX a0 yer ies [aou]yer -SFX a0 er e [^y]er -SFX a0 yer ye [^ou]yer -SFX a0 yer ie [aou]yer -SFX a0 er ions er -SFX a0 er iez er -SFX a0 er ent [^y]er -SFX a0 yer yent [^ou]yer -SFX a0 yer ient [aou]yer -SFX a0 er asse [^cg]er -SFX a0 cer çasse cer -SFX a0 ger geasse ger -SFX a0 er asses [^cg]er -SFX a0 cer çasses cer -SFX a0 ger geasses ger -SFX a0 er ât [^cg]er -SFX a0 cer çât cer -SFX a0 ger geât ger -SFX a0 er assions [^cg]er -SFX a0 cer çassions cer -SFX a0 ger geassions ger -SFX a0 er assiez [^cg]er -SFX a0 cer çassiez cer -SFX a0 ger geassiez ger -SFX a0 er assent [^cg]er -SFX a0 cer çassent cer -SFX a0 ger geassent ger - -SFX a1 Y 119 -SFX a1 er er/n'q'd' er -SFX a1 er ant/n'q' [^cg]er -SFX a1 cer çant/n'q' cer -SFX a1 ger geant/n'q' ger -SFX a1 er é/q' er -SFX a1 er e/n'j' [^y]er -SFX a1 yer ye/n'j' [^ou]yer -SFX a1 yer ie/n'j' [aou]yer -SFX a1 er es/n' [^y]er -SFX a1 yer yes/n' [^ou]yer -SFX a1 yer ies/n' [aou]yer -SFX a1 er e/n'q' [^y]er -SFX a1 yer ye/n'q' [^ou]yer -SFX a1 yer ie/n'q' [aou]yer -SFX a1 er ons/n' [^cg]er -SFX a1 cer çons/n' cer -SFX a1 ger geons/n' ger -SFX a1 er ez/n' er -SFX a1 er ent/n'q' [^y]er -SFX a1 yer yent/n'q' [^ou]yer -SFX a1 yer ient/n'q' [aou]yer -SFX a1 er ais/n'j' [^cg]er -SFX a1 cer çais/n'j' cer -SFX a1 ger geais/n'j' ger -SFX a1 er ais/n' [^cg]er -SFX a1 cer çais/n' cer -SFX a1 ger geais/n' ger -SFX a1 er ait/n'q' [^cg]er -SFX a1 cer çait/n'q' cer -SFX a1 ger geait/n'q' ger -SFX a1 er ions/n' er -SFX a1 er iez/n' er -SFX a1 er aient/n'q' [^cg]er -SFX a1 cer çaient/n'q' cer -SFX a1 ger geaient/n'q' ger -SFX a1 er ai/n'j' [^cg]er -SFX a1 cer çai/n'j' cer -SFX a1 ger geai/n'j' ger -SFX a1 er as/n' [^cg]er -SFX a1 cer ças/n' cer -SFX a1 ger geas/n' ger -SFX a1 er a/n'q' [^cg]er -SFX a1 cer ça/n'q' cer -SFX a1 ger gea/n'q' ger -SFX a1 er âmes/n' [^cg]er -SFX a1 cer çâmes/n' cer -SFX a1 ger geâmes/n' ger -SFX a1 er âtes/n' [^cg]er -SFX a1 cer çâtes/n' cer -SFX a1 ger geâtes/n' ger -SFX a1 er èrent/n'q' er -SFX a1 er erai/n'j' [^y]er -SFX a1 yer yerai/n'j' [^ou]yer -SFX a1 yer ierai/n'j' [aou]yer -SFX a1 er eras/n' [^y]er -SFX a1 yer yeras/n' [^ou]yer -SFX a1 yer ieras/n' [aou]yer -SFX a1 er era/n'q' [^y]er -SFX a1 yer yera/n'q' [^ou]yer -SFX a1 yer iera/n'q' [aou]yer -SFX a1 er erons/n' [^y]er -SFX a1 yer yerons/n' [^ou]yer -SFX a1 yer ierons/n' [aou]yer -SFX a1 er erez/n' [^y]er -SFX a1 yer yerez/n' [^ou]yer -SFX a1 yer ierez/n' [aou]yer -SFX a1 er eront/n'q' [^y]er -SFX a1 yer yeront/n'q' [^ou]yer -SFX a1 yer ieront/n'q' [aou]yer -SFX a1 er erais/n'j' [^y]er -SFX a1 yer yerais/n'j' [^ou]yer -SFX a1 yer ierais/n'j' [aou]yer -SFX a1 er erais/n' [^y]er -SFX a1 yer yerais/n' [^ou]yer -SFX a1 yer ierais/n' [aou]yer -SFX a1 er erait/n'q' [^y]er -SFX a1 yer yerait/n'q' [^ou]yer -SFX a1 yer ierait/n'q' [aou]yer -SFX a1 er erions/n' [^y]er -SFX a1 yer yerions/n' [^ou]yer -SFX a1 yer ierions/n' [aou]yer -SFX a1 er eriez/n' [^y]er -SFX a1 yer yeriez/n' [^ou]yer -SFX a1 yer ieriez/n' [aou]yer -SFX a1 er eraient/n'q' [^y]er -SFX a1 yer yeraient/n'q' [^ou]yer -SFX a1 yer ieraient/n'q' [aou]yer -SFX a1 er e/n'j' [^y]er -SFX a1 yer ye/n'j' [^ou]yer -SFX a1 yer ie/n'j' [aou]yer -SFX a1 er es/n' [^y]er -SFX a1 yer yes/n' [^ou]yer -SFX a1 yer ies/n' [aou]yer -SFX a1 er e/n'q' [^y]er -SFX a1 yer ye/n'q' [^ou]yer -SFX a1 yer ie/n'q' [aou]yer -SFX a1 er ions/n' er -SFX a1 er iez/n' er -SFX a1 er ent/n'q' [^y]er -SFX a1 yer yent/n'q' [^ou]yer -SFX a1 yer ient/n'q' [aou]yer -SFX a1 er asse/n'j' [^cg]er -SFX a1 cer çasse/n'j' cer -SFX a1 ger geasse/n'j' ger -SFX a1 er asses/n' [^cg]er -SFX a1 cer çasses/n' cer -SFX a1 ger geasses/n' ger -SFX a1 er ât/n'q' [^cg]er -SFX a1 cer çât/n'q' cer -SFX a1 ger geât/n'q' ger -SFX a1 er assions/n' [^cg]er -SFX a1 cer çassions/n' cer -SFX a1 ger geassions/n' ger -SFX a1 er assiez/n' [^cg]er -SFX a1 cer çassiez/n' cer -SFX a1 ger geassiez/n' ger -SFX a1 er assent/n'q' [^cg]er -SFX a1 cer çassent/n'q' cer -SFX a1 ger geassent/n'q' ger - -SFX a2 Y 119 -SFX a2 er er/n'q'd'l'm't's' er -SFX a2 er ant/n'q'l'm't's' [^cg]er -SFX a2 cer çant/n'q'l'm't's' cer -SFX a2 ger geant/n'q'l'm't's' ger -SFX a2 er é/q' er -SFX a2 er e/n'q'j'l't' [^y]er -SFX a2 yer ye/n'q'j'l't' [^ou]yer -SFX a2 yer ie/n'q'j'l't' [aou]yer -SFX a2 er es/n'q'l'm' [^y]er -SFX a2 yer yes/n'q'l'm' [^ou]yer -SFX a2 yer ies/n'q'l'm' [aou]yer -SFX a2 er e/n'q'l'm't's' [^y]er -SFX a2 er e/n'q'l'm't's' [^ou]yer -SFX a2 yer ie/n'q'l'm't's' [aou]yer -SFX a2 er ons/n'q'l't' [^cg]er -SFX a2 cer çons/n'q'l't' cer -SFX a2 ger geons/n'q'l't' ger -SFX a2 er ez/n'q'l'm' er -SFX a2 er ent/n'q'l'm't's' [^y]er -SFX a2 yer yent/n'q'l'm't's' [^ou]yer -SFX a2 yer ient/n'q'l'm't's' [aou]yer -SFX a2 er ais/n'q'j'l't' [^cg]er -SFX a2 cer çais/n'q'j'l't' cer -SFX a2 ger geais/n'q'j'l't' ger -SFX a2 er ais/n'q'l'm' [^cg]er -SFX a2 cer çais/n'q'l'm' cer -SFX a2 ger geais/n'q'l'm' ger -SFX a2 er ait/n'q'l'm't's' [^cg]er -SFX a2 cer çait/n'q'l'm't's' cer -SFX a2 ger geait/n'q'l'm't's' ger -SFX a2 er ions/n'q'l't' er -SFX a2 er iez/n'q'l'm' er -SFX a2 er aient/n'q'l'm't's' [^cg]er -SFX a2 cer çaient/n'q'l'm't's' cer -SFX a2 ger geaient/n'q'l'm't's' ger -SFX a2 er ai/n'q'j'l't' [^cg]er -SFX a2 cer çai/n'q'j'l't' cer -SFX a2 ger geai/n'q'j'l't' ger -SFX a2 er as/n'q'l'm' [^cg]er -SFX a2 cer ças/n'q'l'm' cer -SFX a2 ger geas/n'q'l'm' ger -SFX a2 er a/n'q'l'm't's' [^cg]er -SFX a2 cer ça/n'q'l'm't's' cer -SFX a2 ger gea/n'q'l'm't's' ger -SFX a2 er âmes/n'q'l't' [^cg]er -SFX a2 cer çâmes/n'q'l't' cer -SFX a2 ger geâmes/n'q'l't' ger -SFX a2 er âtes/n'q'l'm' [^cg]er -SFX a2 cer çâtes/n'q'l'm' cer -SFX a2 ger geâtes/n'q'l'm' ger -SFX a2 er èrent/n'q'l'm't's' er -SFX a2 er erai/n'q'j'l't' [^y]er -SFX a2 yer yerai/n'q'j'l't' [^ou]yer -SFX a2 yer ierai/n'q'j'l't' [aou]yer -SFX a2 er eras/n'q'l'm' [^y]er -SFX a2 yer yeras/n'q'l'm' [^ou]yer -SFX a2 yer ieras/n'q'l'm' [aou]yer -SFX a2 er era/n'q'l'm't's' [^y]er -SFX a2 yer yera/n'q'l'm't's' [^ou]yer -SFX a2 yer iera/n'q'l'm't's' [aou]yer -SFX a2 er erons/n'q'l't' [^y]er -SFX a2 yer yerons/n'q'l't' [^ou]yer -SFX a2 yer ierons/n'q'l't' [aou]yer -SFX a2 er erez/n'q'l'm' [^y]er -SFX a2 yer yerez/n'q'l'm' [^ou]yer -SFX a2 yer ierez/n'q'l'm' [aou]yer -SFX a2 er eront/n'q'l'm't's' [^y]er -SFX a2 yer yeront/n'q'l'm't's' [^ou]yer -SFX a2 yer ieront/n'q'l'm't's' [aou]yer -SFX a2 er erais/n'q'j'l't' [^y]er -SFX a2 yer yerais/n'q'j'l't' [^ou]yer -SFX a2 yer ierais/n'q'j'l't' [aou]yer -SFX a2 er erais/n'q'l'm' [^y]er -SFX a2 yer yerais/n'q'l'm' [^ou]yer -SFX a2 yer ierais/n'q'l'm' [aou]yer -SFX a2 er erait/n'q'l'm't's' [^y]er -SFX a2 yer yerait/n'q'l'm't's' [^ou]yer -SFX a2 yer ierait/n'q'l'm't's' [aou]yer -SFX a2 er erions/n'q'l't' [^y]er -SFX a2 yer yerions/n'q'l't' [^ou]yer -SFX a2 yer ierions/n'q'l't' [aou]yer -SFX a2 er eriez/n'q'l'm' [^y]er -SFX a2 yer yeriez/n'q'l'm' [^ou]yer -SFX a2 yer ieriez/n'q'l'm' [aou]yer -SFX a2 er eraient/n'q'l'm't's' [^y]er -SFX a2 yer yeraient/n'q'l'm't's' [^ou]yer -SFX a2 yer ieraient/n'q'l'm't's' [aou]yer -SFX a2 er e/n'j'l't' [^y]er -SFX a2 yer ye/n'j'l't' [^ou]yer -SFX a2 yer ie/n'j'l't' [aou]yer -SFX a2 er es/n'l'm' [^y]er -SFX a2 yer yes/n'l'm' [^ou]yer -SFX a2 yer ies/n'l'm' [aou]yer -SFX a2 er e/n'l'm't's' [^y]er -SFX a2 yer ye/n'l'm't's' [^ou]yer -SFX a2 yer ie/n'l'm't's' [aou]yer -SFX a2 er ions/n'l't' er -SFX a2 er iez/n'l'm' er -SFX a2 er ent/n'l'm't's' [^y]er -SFX a2 yer yent/n'l'm't's' [^ou]yer -SFX a2 yer ient/n'l'm't's' [aou]yer -SFX a2 er asse/n'q'j'l't' [^cg]er -SFX a2 cer çasse/n'q'j'l't' cer -SFX a2 ger geasse/n'q'j'l't' ger -SFX a2 er asses/n'q'l'm' [^cg]er -SFX a2 cer çasses/n'q'l'm' cer -SFX a2 ger geasses/n'q'l'm' ger -SFX a2 er ât/n'q'l'm't's' [^cg]er -SFX a2 cer çât/n'q'l'm't's' cer -SFX a2 ger geât/n'q'l'm't's' ger -SFX a2 er assions/n'q'l't' [^cg]er -SFX a2 cer çassions/n'q'l't' cer -SFX a2 ger geassions/n'q'l't' ger -SFX a2 er assiez/n'q'l'm' [^cg]er -SFX a2 cer çassiez/n'q'l'm' cer -SFX a2 ger geassiez/n'q'l'm' ger -SFX a2 er assent/n'q'l'm't's' [^cg]er -SFX a2 cer çassent/n'q'l'm't's' cer -SFX a2 ger geassent/n'q'l'm't's' ger - -SFX a3 Y 119 -SFX a3 er er/m't's' er -SFX a3 er ant/m't's' [^cg]er -SFX a3 cer çant/m't's' cer -SFX a3 ger geant/m't's' ger -SFX a3 er é er -SFX a3 er e/m' [^y]er -SFX a3 yer ye/m' [^ou]yer -SFX a3 yer ie/m' [aou]yer -SFX a3 er es/t' [^y]er -SFX a3 yer yes/t' [^ou]yer -SFX a3 yer ies/t' [aou]yer -SFX a3 er e/s' [^y]er -SFX a3 yer ye/s' [^ou]yer -SFX a3 yer ie/s' [aou]yer -SFX a3 er ons [^cg]er -SFX a3 cer çons cer -SFX a3 ger geons ger -SFX a3 r z er -SFX a3 er ent/s' [^y]er -SFX a3 yer yent/s' [^ou]yer -SFX a3 yer ient/s' [aou]yer -SFX a3 er ais/m' [^cg]er -SFX a3 cer çais/m' cer -SFX a3 ger geais/m' ger -SFX a3 er ais/t' [^cg]er -SFX a3 cer çais/t' cer -SFX a3 ger geais/t' ger -SFX a3 er ait/s' [^cg]er -SFX a3 cer çait/s' cer -SFX a3 ger geait/s' ger -SFX a3 er ions er -SFX a3 er iez er -SFX a3 er aient/s' [^cg]er -SFX a3 cer çaient/s' cer -SFX a3 ger geaient/s' ger -SFX a3 er ai/m' [^cg]er -SFX a3 cer çai/m' cer -SFX a3 ger geai/m' ger -SFX a3 er as/t' [^cg]er -SFX a3 cer ças/t' cer -SFX a3 ger geas/t' ger -SFX a3 er a/s' [^cg]er -SFX a3 cer ça/s' cer -SFX a3 ger gea/s' ger -SFX a3 er âmes [^cg]er -SFX a3 cer çâmes cer -SFX a3 ger geâmes ger -SFX a3 er âtes [^cg]er -SFX a3 cer çâtes/s' cer -SFX a3 ger geâtes/s' ger -SFX a3 er èrent/s' er -SFX a3 er erai/m' [^y]er -SFX a3 yer yerai/m' [^ou]yer -SFX a3 yer ierai/m' [aou]yer -SFX a3 er eras/t' [^y]er -SFX a3 yer yeras/t' [^ou]yer -SFX a3 yer ieras/t' [aou]yer -SFX a3 er era/s' [^y]er -SFX a3 yer yera/s' [^ou]yer -SFX a3 yer iera/s' [aou]yer -SFX a3 er erons [^y]er -SFX a3 yer yerons [^ou]yer -SFX a3 yer ierons [aou]yer -SFX a3 er erez [^y]er -SFX a3 yer yerez [^ou]yer -SFX a3 yer ierez [aou]yer -SFX a3 er eront/s' [^y]er -SFX a3 yer yeront/s' [^ou]yer -SFX a3 yer ieront/s' [aou]yer -SFX a3 er erais/m' [^y]er -SFX a3 yer yerais/m' [^ou]yer -SFX a3 yer ierais/m' [aou]yer -SFX a3 er erais/t' [^y]er -SFX a3 yer yerais/t' [^ou]yer -SFX a3 yer ierais/t' [aou]yer -SFX a3 er erait/s' [^y]er -SFX a3 yer yerait/s' [^ou]yer -SFX a3 yer ierait/s' [aou]yer -SFX a3 er erions [^y]er -SFX a3 yer yerions [^ou]yer -SFX a3 yer ierions [aou]yer -SFX a3 er eriez [^y]er -SFX a3 yer yeriez [^ou]yer -SFX a3 yer ieriez [aou]yer -SFX a3 er eraient/s' [^y]er -SFX a3 yer yeraient/s' [^ou]yer -SFX a3 yer ieraient/s' [aou]yer -SFX a3 er e/m' [^y]er -SFX a3 yer ye/m' [^ou]yer -SFX a3 yer ie/m' [aou]yer -SFX a3 er es/t' [^y]er -SFX a3 yer yes/t' [^ou]yer -SFX a3 yer ies/t' [aou]yer -SFX a3 er e/s' [^y]er -SFX a3 yer ye/s' [^ou]yer -SFX a3 yer ie/s' [aou]yer -SFX a3 er ions er -SFX a3 er iez er -SFX a3 er ent/s' [^y]er -SFX a3 yer yent/s' [^ou]yer -SFX a3 yer ient/s' [aou]yer -SFX a3 er asse/m' [^cg]er -SFX a3 cer çasse/m' cer -SFX a3 ger geasse/m' ger -SFX a3 er asses/t' [^cg]er -SFX a3 cer çasses/t' cer -SFX a3 ger geasses/t' ger -SFX a3 er ât/s' [^cg]er -SFX a3 cer çât/s' cer -SFX a3 ger geât/s' ger -SFX a3 er assions [^cg]er -SFX a3 cer çassions cer -SFX a3 ger geassions ger -SFX a3 er assiez [^cg]er -SFX a3 cer çassiez cer -SFX a3 ger geassiez ger -SFX a3 er assent/s' [^cg]er -SFX a3 cer çassent/s' cer -SFX a3 ger geassent/s' ger - -SFX a4 Y 119 -SFX a4 er er/n'q'd'l'm't's' er -SFX a4 er ant/n'q'l'm't's' [^cg]er -SFX a4 cer çant/n'q'l'm't's' cer -SFX a4 ger geant/n'q'l'm't's' ger -SFX a4 er é/q' er -SFX a4 er e/n'q'j'l'm't' [^y]er -SFX a4 yer ye/n'q'j'l'm't' [^ou]yer -SFX a4 yer ie/n'q'j'l'm't' [aou]yer -SFX a4 er es/n'q'l'm't' [^y]er -SFX a4 yer yes/n'q'l'm't' [^ou]yer -SFX a4 yer ies/n'q'l'm't' [aou]yer -SFX a4 er e/n'q'l'm't's' [^y]er -SFX a4 yer ye/n'q'l'm't's' [^ou]yer -SFX a4 yer ie/n'q'l'm't's' [aou]yer -SFX a4 er ons/n'q'l't' [^cg]er -SFX a4 cer çons/n'q'l't' cer -SFX a4 ger geons/n'q'l't' ger -SFX a4 er ez/n'q'l'm' er -SFX a4 er ent/n'q'l'm't's' [^y]er -SFX a4 yer yent/n'q'l'm't's' [^ou]yer -SFX a4 yer ient/n'q'l'm't's' [aou]yer -SFX a4 er ais/n'q'j'l'm't' [^cg]er -SFX a4 cer çais/n'q'j'l'm't' cer -SFX a4 ger geais/n'q'j'l'm't' ger -SFX a4 er ais/n'q'l'm't' [^cg]er -SFX a4 cer çais/n'q'l'm't' cer -SFX a4 ger geais/n'q'l'm't' ger -SFX a4 er ait/n'q'l'm't's' [^cg]er -SFX a4 cer çait/n'q'l'm't's' cer -SFX a4 ger geait/n'q'l'm't's' ger -SFX a4 er ions/n'q'l't' er -SFX a4 er iez/n'q'l'm' er -SFX a4 er aient/n'q'l'm't's' [^cg]er -SFX a4 cer çaient/n'q'l'm't's' cer -SFX a4 ger geaient/n'q'l'm't's' ger -SFX a4 er ai/n'q'j'l'm't' [^cg]er -SFX a4 cer çai/n'q'j'l'm't' cer -SFX a4 ger geai/n'q'j'l'm't' ger -SFX a4 er as/n'q'l'm't' [^cg]er -SFX a4 cer ças/n'q'l'm't' cer -SFX a4 ger geas/n'q'l'm't' ger -SFX a4 er a/n'q'l'm't's' [^cg]er -SFX a4 cer ça/n'q'l'm't's' cer -SFX a4 ger gea/n'q'l'm't's' ger -SFX a4 er âmes/n'q'l't' [^cg]er -SFX a4 cer çâmes/n'q'l't' cer -SFX a4 ger geâmes/n'q'l't' ger -SFX a4 er âtes/n'q'l'm' [^cg]er -SFX a4 cer çâtes/n'q'l'm' cer -SFX a4 ger geâtes/n'q'l'm' ger -SFX a4 er èrent/n'q'l'm't's' er -SFX a4 er erai/n'q'j'l'm't' [^y]er -SFX a4 yer yerai/n'q'j'l'm't' [^ou]yer -SFX a4 yer ierai/n'q'j'l'm't' [aou]yer -SFX a4 er eras/n'q'l'm't' [^y]er -SFX a4 yer yeras/n'q'l'm't' [^ou]yer -SFX a4 yer ieras/n'q'l'm't' [aou]yer -SFX a4 er era/n'q'l'm't's' [^y]er -SFX a4 yer yera/n'q'l'm't's' [^ou]yer -SFX a4 yer iera/n'q'l'm't's' [aou]yer -SFX a4 er erons/n'q'l't' [^y]er -SFX a4 yer yerons/n'q'l't' [^ou]yer -SFX a4 yer ierons/n'q'l't' [aou]yer -SFX a4 er erez/n'q'l'm' [^y]er -SFX a4 yer yerez/n'q'l'm' [^ou]yer -SFX a4 yer ierez/n'q'l'm' [aou]yer -SFX a4 er eront/n'q'l'm't's' [^y]er -SFX a4 yer yeront/n'q'l'm't's' [^ou]yer -SFX a4 yer ieront/n'q'l'm't's' [aou]yer -SFX a4 er erais/n'q'j'l'm't' [^y]er -SFX a4 yer yerais/n'q'j'l'm't' [^ou]yer -SFX a4 yer ierais/n'q'j'l'm't' [aou]yer -SFX a4 er erais/n'q'l'm't' [^y]er -SFX a4 yer yerais/n'q'l'm't' [^ou]yer -SFX a4 yer ierais/n'q'l'm't' [aou]yer -SFX a4 er erait/n'q'l'm't's' [^y]er -SFX a4 yer yerait/n'q'l'm't's' [^ou]yer -SFX a4 yer ierait/n'q'l'm't's' [aou]yer -SFX a4 er erions/n'q'l't' [^y]er -SFX a4 yer yerions/n'q'l't' [^ou]yer -SFX a4 yer ierions/n'q'l't' [aou]yer -SFX a4 er eriez/n'q'l'm' [^y]er -SFX a4 yer yeriez/n'q'l'm' [^ou]yer -SFX a4 yer ieriez/n'q'l'm' [aou]yer -SFX a4 er eraient/n'q'l'm't's' [^y]er -SFX a4 yer yeraient/n'q'l'm't's' [^ou]yer -SFX a4 yer ieraient/n'q'l'm't's' [aou]yer -SFX a4 er e/n'j'l'm't' [^y]er -SFX a4 yer ye/n'j'l'm't' [^ou]yer -SFX a4 yer ie/n'j'l'm't' [aou]yer -SFX a4 er es/n'l'm't' [^y]er -SFX a4 yer yes/n'l'm't' [^ou]yer -SFX a4 yer ies/n'l'm't' [aou]yer -SFX a4 er e/n'l'm't's' [^y]er -SFX a4 yer ye/n'l'm't's' [^ou]yer -SFX a4 yer ie/n'l'm't's' [aou]yer -SFX a4 er ions/n'l't' er -SFX a4 er iez/n'l'm' er -SFX a4 er ent/n'l'm't's' [^y]er -SFX a4 yer yent/n'l'm't's' [^ou]yer -SFX a4 yer ient/n'l'm't's' [aou]yer -SFX a4 er asse/n'q'j'l'm't' [^cg]er -SFX a4 cer çasse/n'q'j'l'm't' cer -SFX a4 ger geasse/n'q'j'l'm't' ger -SFX a4 er asses/n'q'l'm't' [^cg]er -SFX a4 cer çasses/n'q'l'm't' cer -SFX a4 ger geasses/n'q'l'm't' ger -SFX a4 er ât/n'q'l'm't's' [^cg]er -SFX a4 cer çât/n'q'l'm't's' cer -SFX a4 ger geât/n'q'l'm't's' ger -SFX a4 er assions/n'q'l't' [^cg]er -SFX a4 cer çassions/n'q'l't' cer -SFX a4 ger geassions/n'q'l't' ger -SFX a4 er assiez/n'q'l'm' [^cg]er -SFX a4 cer çassiez/n'q'l'm' cer -SFX a4 ger geassiez/n'q'l'm' ger -SFX a4 er assent/n'q'l'm't's' [^cg]er -SFX a4 cer çassent/n'q'l'm't's' cer -SFX a4 ger geassent/n'q'l'm't's' ger - -SFX a5 Y 119 -SFX a5 er er/n'q'd'm't's' er -SFX a5 er ant/n'q'm't's' [^cg]er -SFX a5 cer çant/n'q'm't's' cer -SFX a5 ger geant/n'q'm't's' ger -SFX a5 er é/q' er -SFX a5 er e/n'j'm't' [^y]er -SFX a5 yer ye/n'j'm't' [^ou]yer -SFX a5 yer ie/n'j'm't' [aou]yer -SFX a5 er es/n'm't' [^y]er -SFX a5 yer yes/n'm't' [^ou]yer -SFX a5 yer ies/n'm't' [aou]yer -SFX a5 er e/n'q'm't's' [^y]er -SFX a5 yer ye/n'q'm't's' [^ou]yer -SFX a5 yer ie/n'q'm't's' [aou]yer -SFX a5 er ons/n't' [^cg]er -SFX a5 cer çons/n't' cer -SFX a5 ger geons/n't' ger -SFX a5 r z/n'm' er -SFX a5 er ent/n'q'm't's' [^y]er -SFX a5 yer yent/n'q'm't's' [^ou]yer -SFX a5 yer ient/n'q'm't's' [aou]yer -SFX a5 er ais/n'j'm't' [^cg]er -SFX a5 cer çais/n'j'm't' cer -SFX a5 ger geais/n'j'm't' ger -SFX a5 er ais/n'm't' [^cg]er -SFX a5 cer çais/n'm't' cer -SFX a5 ger geais/n'm't' ger -SFX a5 er ait/n'q'm't's' [^cg]er -SFX a5 cer çait/n'q'm't's' cer -SFX a5 ger geait/n'q'm't's' ger -SFX a5 er ions/n't' er -SFX a5 er iez/n'm' er -SFX a5 er aient/n'q'm't's' [^cg]er -SFX a5 cer çaient/n'q'm't's' cer -SFX a5 ger geaient/n'q'm't's' ger -SFX a5 er ai/n'j'm't' [^cg]er -SFX a5 cer çai/n'j'm't' cer -SFX a5 ger geai/n'j'm't' ger -SFX a5 er as/n'm't' [^cg]er -SFX a5 cer ças/n'm't' cer -SFX a5 ger geas/n'm't' ger -SFX a5 er a/n'q'm't's' [^cg]er -SFX a5 cer ça/n'q'm't's' cer -SFX a5 ger gea/n'q'm't's' ger -SFX a5 er âmes/n't' [^cg]er -SFX a5 cer çâmes/n't' cer -SFX a5 ger geâmes/n't' ger -SFX a5 er âtes/n'm' [^cg]er -SFX a5 cer çâtes/n'm' cer -SFX a5 ger geâtes/n'm' ger -SFX a5 er èrent/n'q'm't's' er -SFX a5 er erai/n'j'm't' [^y]er -SFX a5 yer yerai/n'j'm't' [^ou]yer -SFX a5 yer ierai/n'j'm't' [aou]yer -SFX a5 er eras/n'm't' [^y]er -SFX a5 yer yeras/n'm't' [^ou]yer -SFX a5 yer ieras/n'm't' [aou]yer -SFX a5 er era/n'q'm't's' [^y]er -SFX a5 yer yera/n'q'm't's' [^ou]yer -SFX a5 yer iera/n'q'm't's' [aou]yer -SFX a5 er erons/n't' [^y]er -SFX a5 yer yerons/n't' [^ou]yer -SFX a5 yer ierons/n't' [aou]yer -SFX a5 er erez/n'm' [^y]er -SFX a5 yer yerez/n'm' [^ou]yer -SFX a5 yer ierez/n'm' [aou]yer -SFX a5 er eront/n'q'm't's' [^y]er -SFX a5 yer yeront/n'q'm't's' [^ou]yer -SFX a5 yer ieront/n'q'm't's' [aou]yer -SFX a5 er erais/n'j'm't' [^y]er -SFX a5 yer yerais/n'j'm't' [^ou]yer -SFX a5 yer ierais/n'j'm't' [aou]yer -SFX a5 er erais/n'm't' [^y]er -SFX a5 yer yerais/n'm't' [^ou]yer -SFX a5 yer ierais/n'm't' [aou]yer -SFX a5 er erait/n'q'm't's' [^y]er -SFX a5 yer yerait/n'q'm't's' [^ou]yer -SFX a5 yer ierait/n'q'm't's' [aou]yer -SFX a5 er erions/n't' [^y]er -SFX a5 yer yerions/n't' [^ou]yer -SFX a5 yer ierions/n't' [aou]yer -SFX a5 er eriez/n'm' [^y]er -SFX a5 yer yeriez/n'm' [^ou]yer -SFX a5 yer ieriez/n'm' [aou]yer -SFX a5 er eraient/n'q'm't's' [^y]er -SFX a5 yer yeraient/n'q'm't's' [^ou]yer -SFX a5 yer ieraient/n'q'm't's' [aou]yer -SFX a5 er e/n'j'm't' [^y]er -SFX a5 yer ye/n'j'm't' [^ou]yer -SFX a5 yer ie/n'j'm't' [aou]yer -SFX a5 er es/n'm't' [^y]er -SFX a5 yer yes/n'm't' [^ou]yer -SFX a5 yer ies/n'm't' [aou]yer -SFX a5 er e/n'q'm't's' [^y]er -SFX a5 yer ye/n'q'm't's' [^ou]yer -SFX a5 yer ie/n'q'm't's' [aou]yer -SFX a5 er ions/n't' er -SFX a5 er iez/n'm' er -SFX a5 er ent/n'q'm't's' [^y]er -SFX a5 yer yent/n'q'm't's' [^ou]yer -SFX a5 yer ient/n'q'm't's' [aou]yer -SFX a5 er asse/n'j'm't' [^cg]er -SFX a5 cer çasse/n'j'm't' cer -SFX a5 ger geasse/n'j'm't' ger -SFX a5 er asses/n'm't' [^cg]er -SFX a5 cer çasses/n'm't' cer -SFX a5 ger geasses/n'm't' ger -SFX a5 er ât/n'q'm't's' [^cg]er -SFX a5 cer çât/n'q'm't's' cer -SFX a5 ger geât/n'q'm't's' ger -SFX a5 er assions/n't' [^cg]er -SFX a5 cer çassions/n't' cer -SFX a5 ger geassions/n't' ger -SFX a5 er assiez/n'm' [^cg]er -SFX a5 cer çassiez/n'm' cer -SFX a5 ger geassiez/n'm' ger -SFX a5 er assent/n'q'm't's' [^cg]er -SFX a5 cer çassent/n'q'm't's' cer -SFX a5 ger geassent/n'q'm't's' ger - -SFX a8 Y 77 -SFX a8 er er/s' er -SFX a8 er ant/s' [^cg]er -SFX a8 cer çant/s' cer -SFX a8 ger geant/s' ger -SFX a8 er é er -SFX a8 er e/s' [^y]er -SFX a8 yer ye/s' [^ou]yer -SFX a8 yer ie/s' [aou]yer -SFX a8 er ons [^cg]er -SFX a8 cer çons cer -SFX a8 ger geons ger -SFX a8 er ez er -SFX a8 er ent/s' [^y]er -SFX a8 yer yent/s' [^ou]yer -SFX a8 yer ient/s' [aou]yer -SFX a8 er ait/s' [^cg]er -SFX a8 cer çait/s' cer -SFX a8 ger geait/s' ger -SFX a8 er ions er -SFX a8 er iez er -SFX a8 er aient/s' [^cg]er -SFX a8 cer çaient/s' cer -SFX a8 ger geaient/s' ger -SFX a8 er a/s' [^cg]er -SFX a8 cer ça/s' cer -SFX a8 ger gea/s' ger -SFX a8 er âmes [^cg]er -SFX a8 cer çâmes cer -SFX a8 ger geâmes ger -SFX a8 er âtes [^cg]er -SFX a8 cer çâtes/s' cer -SFX a8 ger geâtes/s' ger -SFX a8 er èrent/s' er -SFX a8 er era/s' [^y]er -SFX a8 yer yera/s' [^ou]yer -SFX a8 yer iera/s' [aou]yer -SFX a8 er erons [^y]er -SFX a8 yer yerons [^ou]yer -SFX a8 yer ierons [aou]yer -SFX a8 er erez [^y]er -SFX a8 yer yerez [^ou]yer -SFX a8 yer ierez [aou]yer -SFX a8 er eront/s' [^y]er -SFX a8 yer yeront/s' [^ou]yer -SFX a8 yer ieront/s' [aou]yer -SFX a8 er erait/s' [^y]er -SFX a8 yer yerait/s' [^ou]yer -SFX a8 yer ierait/s' [aou]yer -SFX a8 er erions [^y]er -SFX a8 yer yerions [^ou]yer -SFX a8 yer ierions [aou]yer -SFX a8 er eriez [^y]er -SFX a8 yer yeriez [^ou]yer -SFX a8 yer ieriez [aou]yer -SFX a8 er eraient/s' [^y]er -SFX a8 yer yeraient/s' [^ou]yer -SFX a8 yer ieraient/s' [aou]yer -SFX a8 er e/s' [^y]er -SFX a8 yer ye/s' [^ou]yer -SFX a8 yer ie/s' [aou]yer -SFX a8 er ions er -SFX a8 er iez er -SFX a8 er ent/s' [^y]er -SFX a8 yer yent/s' [^ou]yer -SFX a8 yer ient/s' [aou]yer -SFX a8 er ât/s' [^cg]er -SFX a8 cer çât/s' cer -SFX a8 ger geât/s' ger -SFX a8 er assions [^cg]er -SFX a8 cer çassions cer -SFX a8 ger geassions ger -SFX a8 er assiez [^cg]er -SFX a8 cer çassiez cer -SFX a8 ger geassiez ger -SFX a8 er assent/s' [^cg]er -SFX a8 cer çassent/s' cer -SFX a8 ger geassent/s' ger - -SFX a9 N 13 -SFX a9 er er/n'd' er -SFX a9 er ant er -SFX a9 er é er -SFX a9 er e/n' er -SFX a9 er ait/n' [^g]er -SFX a9 ger geait/n' ger -SFX a9 er a/n' [^g]er -SFX a9 ger gea/n' ger -SFX a9 er era/n' er -SFX a9 er erait/n' er -SFX a9 er e/n' er -SFX a9 er ât/n' [^g]er -SFX a9 ger geât/n' ger - -SFX b0 N 242 -SFX b0 er er er -SFX b0 er ant [^c]er -SFX b0 cer çant cer -SFX b0 er é er -SFX b0 ecer èce ecer -SFX b0 emer ème emer -SFX b0 ener ène ener -SFX b0 eper èpe eper -SFX b0 erer ère erer -SFX b0 eser èse eser -SFX b0 ever ève ever -SFX b0 evrer èvre evrer -SFX b0 eter ète eter -SFX b0 eler èle eler -SFX b0 ecer èces ecer -SFX b0 emer èmes emer -SFX b0 ener ènes ener -SFX b0 eper èpes eper -SFX b0 erer ères erer -SFX b0 eser èses eser -SFX b0 ever èves ever -SFX b0 evrer èvres evrer -SFX b0 eter ètes eter -SFX b0 eler èles eler -SFX b0 ecer èce ecer -SFX b0 emer ème emer -SFX b0 ener ène ener -SFX b0 eper èpe eper -SFX b0 erer ère erer -SFX b0 eser èse eser -SFX b0 ever ève ever -SFX b0 evrer èvre evrer -SFX b0 eter ète eter -SFX b0 eler èle eler -SFX b0 er ons [^c]er -SFX b0 cer çons cer -SFX b0 er ez er -SFX b0 ecer ècent ecer -SFX b0 emer èment emer -SFX b0 ener ènent ener -SFX b0 eper èpent eper -SFX b0 erer èrent erer -SFX b0 eser èsent eser -SFX b0 ever èvent ever -SFX b0 evrer èvrent evrer -SFX b0 eter ètent eter -SFX b0 eler èlent eler -SFX b0 er ais [^c]er -SFX b0 cer çais cer -SFX b0 er ais [^c]er -SFX b0 cer çais cer -SFX b0 er ait [^c]er -SFX b0 cer çait cer -SFX b0 er ions er -SFX b0 er iez er -SFX b0 er aient [^c]er -SFX b0 cer çaient cer -SFX b0 er ai [^c]er -SFX b0 cer çai cer -SFX b0 er as [^c]er -SFX b0 cer ças cer -SFX b0 er a [^c]er -SFX b0 cer ça cer -SFX b0 er âmes [^c]er -SFX b0 cer çâmes cer -SFX b0 er âtes [^c]er -SFX b0 cer çâtes cer -SFX b0 er èrent er -SFX b0 ecer ècerai ecer -SFX b0 emer èmerai emer -SFX b0 ener ènerai ener -SFX b0 eper èperai eper -SFX b0 erer èrerai erer -SFX b0 eser èserai eser -SFX b0 ever èverai ever -SFX b0 evrer èvrerai evrer -SFX b0 eter èterai eter -SFX b0 eler èlerai eler -SFX b0 ecer èceras ecer -SFX b0 emer èmeras emer -SFX b0 ener èneras ener -SFX b0 eper èperas eper -SFX b0 erer èreras erer -SFX b0 eser èseras eser -SFX b0 ever èveras ever -SFX b0 evrer èvreras evrer -SFX b0 eter èteras eter -SFX b0 eler èleras eler -SFX b0 ecer ècera ecer -SFX b0 emer èmera emer -SFX b0 ener ènera ener -SFX b0 eper èpera eper -SFX b0 erer èrera erer -SFX b0 eser èsera eser -SFX b0 ever èvera ever -SFX b0 evrer èvrera evrer -SFX b0 eter ètera eter -SFX b0 eler èlera eler -SFX b0 ecer ècerons ecer -SFX b0 emer èmerons emer -SFX b0 ener ènerons ener -SFX b0 eper èperons eper -SFX b0 erer èrerons erer -SFX b0 eser èserons eser -SFX b0 ever èverons ever -SFX b0 evrer èvrerons evrer -SFX b0 eter èterons eter -SFX b0 eler èlerons eler -SFX b0 ecer ècerez ecer -SFX b0 emer èmerez emer -SFX b0 ener ènerez ener -SFX b0 eper èperez eper -SFX b0 erer èrerez erer -SFX b0 eser èserez eser -SFX b0 ever èverez ever -SFX b0 evrer èvrerez evrer -SFX b0 eter èterez eter -SFX b0 eler èlerez eler -SFX b0 ecer èceront ecer -SFX b0 emer èmeront emer -SFX b0 ener èneront ener -SFX b0 eper èperont eper -SFX b0 erer èreront erer -SFX b0 eser èseront eser -SFX b0 ever èveront ever -SFX b0 evrer èvreront evrer -SFX b0 eter èteront eter -SFX b0 eler èleront eler -SFX b0 ecer ècerais ecer -SFX b0 emer èmerais emer -SFX b0 ener ènerais ener -SFX b0 eper èperais eper -SFX b0 erer èrerais erer -SFX b0 eser èserais eser -SFX b0 ever èverais ever -SFX b0 evrer èvrerais evrer -SFX b0 eter èterais eter -SFX b0 eler èlerais eler -SFX b0 ecer ècerais ecer -SFX b0 emer èmerais emer -SFX b0 ener ènerais ener -SFX b0 eper èperais eper -SFX b0 erer èrerais erer -SFX b0 eser èserais eser -SFX b0 ever èverais ever -SFX b0 evrer èvrerais evrer -SFX b0 eter èterais eter -SFX b0 eler èlerais eler -SFX b0 ecer ècerait ecer -SFX b0 emer èmerait emer -SFX b0 ener ènerait ener -SFX b0 eper èperait eper -SFX b0 erer èrerait erer -SFX b0 eser èserait eser -SFX b0 ever èverait ever -SFX b0 evrer èvrerait evrer -SFX b0 eter èterait eter -SFX b0 eler èlerait eler -SFX b0 ecer ècerions ecer -SFX b0 emer èmerions emer -SFX b0 ener ènerions ener -SFX b0 eper èperions eper -SFX b0 erer èrerions erer -SFX b0 eser èserions eser -SFX b0 ever èverions ever -SFX b0 evrer èvrerions evrer -SFX b0 eter èterions eter -SFX b0 eler èlerions eler -SFX b0 ecer èceriez ecer -SFX b0 emer èmeriez emer -SFX b0 ener èneriez ener -SFX b0 eper èperiez eper -SFX b0 erer èreriez erer -SFX b0 eser èseriez eser -SFX b0 ever èveriez ever -SFX b0 evrer èvreriez evrer -SFX b0 eter èteriez eter -SFX b0 eler èleriez eler -SFX b0 ecer èceraient ecer -SFX b0 emer èmeraient emer -SFX b0 ener èneraient ener -SFX b0 eper èperaient eper -SFX b0 erer èreraient erer -SFX b0 eser èseraient eser -SFX b0 ever èveraient ever -SFX b0 evrer èvreraient evrer -SFX b0 eter èteraient eter -SFX b0 eler èleraient eler -SFX b0 ecer èce ecer -SFX b0 emer ème emer -SFX b0 ener ène ener -SFX b0 eper èpe eper -SFX b0 erer ère erer -SFX b0 eser èse eser -SFX b0 ever ève ever -SFX b0 evrer èvre evrer -SFX b0 eter ète eter -SFX b0 eler èle eler -SFX b0 ecer èces ecer -SFX b0 emer èmes emer -SFX b0 ener ènes ener -SFX b0 eper èpes eper -SFX b0 erer ères erer -SFX b0 eser èses eser -SFX b0 ever èves ever -SFX b0 evrer èvres evrer -SFX b0 eter ètes eter -SFX b0 eler èles eler -SFX b0 ecer èce ecer -SFX b0 emer ème emer -SFX b0 ener ène ener -SFX b0 eper èpe eper -SFX b0 erer ère erer -SFX b0 eser èse eser -SFX b0 ever ève ever -SFX b0 evrer èvre evrer -SFX b0 eter ète eter -SFX b0 eler èle eler -SFX b0 er ions er -SFX b0 er iez er -SFX b0 ecer ècent ecer -SFX b0 emer èment emer -SFX b0 ener ènent ener -SFX b0 eper èpent eper -SFX b0 erer èrent erer -SFX b0 eser èsent eser -SFX b0 ever èvent ever -SFX b0 evrer èvrent evrer -SFX b0 eter ètent eter -SFX b0 eler èlent eler -SFX b0 er asse [^c]er -SFX b0 cer çasse cer -SFX b0 er asses [^c]er -SFX b0 cer çasses cer -SFX b0 er ât [^c]er -SFX b0 cer çât cer -SFX b0 er assions [^c]er -SFX b0 cer çassions cer -SFX b0 er assiez [^c]er -SFX b0 cer çassiez cer -SFX b0 er assent [^c]er -SFX b0 cer çassent cer - -SFX b1 Y 242 -SFX b1 er er/n'q'd' er -SFX b1 er ant/n'q' [^c]er -SFX b1 cer çant/n'q' cer -SFX b1 er é/q' er -SFX b1 ecer èce/n'j' ecer -SFX b1 emer ème/n'j' emer -SFX b1 ener ène/n'j' ener -SFX b1 eper èpe/n'j' eper -SFX b1 erer ère/n'j' erer -SFX b1 eser èse/n'j' eser -SFX b1 ever ève/n'j' ever -SFX b1 evrer èvre/n'j' evrer -SFX b1 eter ète/n'j' eter -SFX b1 eler èle/n'j' eler -SFX b1 ecer èces/n' ecer -SFX b1 emer èmes/n' emer -SFX b1 ener ènes/n' ener -SFX b1 eper èpes/n' eper -SFX b1 erer ères/n' erer -SFX b1 eser èses/n' eser -SFX b1 ever èves/n' ever -SFX b1 evrer èvres/n' evrer -SFX b1 eter ètes/n' eter -SFX b1 eler èles/n' eler -SFX b1 ecer èce/n'q' ecer -SFX b1 emer ème/n'q' emer -SFX b1 ener ène/n'q' ener -SFX b1 eper èpe/n'q' eper -SFX b1 erer ère/n'q' erer -SFX b1 eser èse/n'q' eser -SFX b1 ever ève/n'q' ever -SFX b1 evrer èvre/n'q' evrer -SFX b1 eter ète/n'q' eter -SFX b1 eler èle/n'q' eler -SFX b1 er ons/n' [^c]er -SFX b1 cer çons/n' cer -SFX b1 er ez/n' er -SFX b1 ecer ècent/n'q' ecer -SFX b1 emer èment/n'q' emer -SFX b1 ener ènent/n'q' ener -SFX b1 eper èpent/n'q' eper -SFX b1 erer èrent/n'q' erer -SFX b1 eser èsent/n'q' eser -SFX b1 ever èvent/n'q' ever -SFX b1 evrer èvrent/n'q' evrer -SFX b1 eter ètent/n'q' eter -SFX b1 eler èlent/n'q' eler -SFX b1 er ais/n'j' [^c]er -SFX b1 cer çais/n'j' cer -SFX b1 er ais/n' [^c]er -SFX b1 cer çais/n' cer -SFX b1 er ait/n'q' [^c]er -SFX b1 cer çait/n'q' cer -SFX b1 er ions/n' er -SFX b1 er iez/n' er -SFX b1 er aient/n'q' [^c]er -SFX b1 cer çaient/n'q' cer -SFX b1 er ai/n'j' [^c]er -SFX b1 cer çai/n'j' cer -SFX b1 er as/n' [^c]er -SFX b1 cer ças/n' cer -SFX b1 er a/n'q' [^c]er -SFX b1 cer ça/n'q' cer -SFX b1 er âmes/n' [^c]er -SFX b1 cer çâmes/n' cer -SFX b1 er âtes/n' [^c]er -SFX b1 cer çâtes/n' cer -SFX b1 er èrent/n'q' er -SFX b1 ecer ècerai/n'j' ecer -SFX b1 emer èmerai/n'j' emer -SFX b1 ener ènerai/n'j' ener -SFX b1 eper èperai/n'j' eper -SFX b1 erer èrerai/n'j' erer -SFX b1 eser èserai/n'j' eser -SFX b1 ever èverai/n'j' ever -SFX b1 evrer èvrerai/n'j' evrer -SFX b1 eter èterai/n'j' eter -SFX b1 eler èlerai/n'j' eler -SFX b1 ecer èceras/n' ecer -SFX b1 emer èmeras/n' emer -SFX b1 ener èneras/n' ener -SFX b1 eper èperas/n' eper -SFX b1 erer èreras/n' erer -SFX b1 eser èseras/n' eser -SFX b1 ever èveras/n' ever -SFX b1 evrer èvreras/n' evrer -SFX b1 eter èteras/n' eter -SFX b1 eler èleras/n' eler -SFX b1 ecer ècera/n'q' ecer -SFX b1 emer èmera/n'q' emer -SFX b1 ener ènera/n'q' ener -SFX b1 eper èpera/n'q' eper -SFX b1 erer èrera/n'q' erer -SFX b1 eser èsera/n'q' eser -SFX b1 ever èvera/n'q' ever -SFX b1 evrer èvrera/n'q' evrer -SFX b1 eter ètera/n'q' eter -SFX b1 eler èlera/n'q' eler -SFX b1 ecer ècerons/n' ecer -SFX b1 emer èmerons/n' emer -SFX b1 ener ènerons/n' ener -SFX b1 eper èperons/n' eper -SFX b1 erer èrerons/n' erer -SFX b1 eser èserons/n' eser -SFX b1 ever èverons/n' ever -SFX b1 evrer èvrerons/n' evrer -SFX b1 eter èterons/n' eter -SFX b1 eler èlerons/n' eler -SFX b1 ecer ècerez/n' ecer -SFX b1 emer èmerez/n' emer -SFX b1 ener ènerez/n' ener -SFX b1 eper èperez/n' eper -SFX b1 erer èrerez/n' erer -SFX b1 eser èserez/n' eser -SFX b1 ever èverez/n' ever -SFX b1 evrer èvrerez/n' evrer -SFX b1 eter èterez/n' eter -SFX b1 eler èlerez/n' eler -SFX b1 ecer èceront/n'q' ecer -SFX b1 emer èmeront/n'q' emer -SFX b1 ener èneront/n'q' ener -SFX b1 eper èperont/n'q' eper -SFX b1 erer èreront/n'q' erer -SFX b1 eser èseront/n'q' eser -SFX b1 ever èveront/n'q' ever -SFX b1 evrer èvreront/n'q' evrer -SFX b1 eter èteront/n'q' eter -SFX b1 eler èleront/n'q' eler -SFX b1 ecer ècerais/n'j' ecer -SFX b1 emer èmerais/n'j' emer -SFX b1 ener ènerais/n'j' ener -SFX b1 eper èperais/n'j' eper -SFX b1 erer èrerais/n'j' erer -SFX b1 eser èserais/n'j' eser -SFX b1 ever èverais/n'j' ever -SFX b1 evrer èvrerais/n'j' evrer -SFX b1 eter èterais/n'j' eter -SFX b1 eler èlerais/n' eler -SFX b1 ecer ècerais/n' ecer -SFX b1 emer èmerais/n' emer -SFX b1 ener ènerais/n' ener -SFX b1 eper èperais/n' eper -SFX b1 erer èrerais/n' erer -SFX b1 eser èserais/n' eser -SFX b1 ever èverais/n' ever -SFX b1 evrer èvrerais/n' evrer -SFX b1 eter èterais/n' eter -SFX b1 eler èlerais/n' eler -SFX b1 ecer ècerait/n'q' ecer -SFX b1 emer èmerait/n'q' emer -SFX b1 ener ènerait/n'q' ener -SFX b1 eper èperait/n'q' eper -SFX b1 erer èrerait/n'q' erer -SFX b1 eser èserait/n'q' eser -SFX b1 ever èverait/n'q' ever -SFX b1 evrer èvrerait/n'q' evrer -SFX b1 eter èterait/n'q' eter -SFX b1 eler èlerait/n'q' eler -SFX b1 ecer ècerions/n' ecer -SFX b1 emer èmerions/n' emer -SFX b1 ener ènerions/n' ener -SFX b1 eper èperions/n' eper -SFX b1 erer èrerions/n' erer -SFX b1 eser èserions/n' eser -SFX b1 ever èverions/n' ever -SFX b1 evrer èvrerions/n' evrer -SFX b1 eter èterions/n' eter -SFX b1 eler èlerions/n' eler -SFX b1 ecer èceriez/n' ecer -SFX b1 emer èmeriez/n' emer -SFX b1 ener èneriez/n' ener -SFX b1 eper èperiez/n' eper -SFX b1 erer èreriez/n' erer -SFX b1 eser èseriez/n' eser -SFX b1 ever èveriez/n' ever -SFX b1 evrer èvreriez/n' evrer -SFX b1 eter èteriez/n' eter -SFX b1 eler èleriez/n' eler -SFX b1 ecer èceraient/n'q' ecer -SFX b1 emer èmeraient/n'q' emer -SFX b1 ener èneraient/n'q' ener -SFX b1 eper èperaient/n'q' eper -SFX b1 erer èreraient/n'q' erer -SFX b1 eser èseraient/n'q' eser -SFX b1 ever èveraient/n'q' ever -SFX b1 evrer èvreraient/n'q' evrer -SFX b1 eter èteraient/n'q' eter -SFX b1 eler èleraient/n'q' eler -SFX b1 ecer èce/n'j' ecer -SFX b1 emer ème/n'j' emer -SFX b1 ener ène/n'j' ener -SFX b1 eper èpe/n'j' eper -SFX b1 erer ère/n'j' erer -SFX b1 eser èse/n'j' eser -SFX b1 ever ève/n'j' ever -SFX b1 evrer èvre/n'j' evrer -SFX b1 eter ète/n'j' eter -SFX b1 eler èle/n'j' eler -SFX b1 ecer èces/n' ecer -SFX b1 emer èmes/n' emer -SFX b1 ener ènes/n' ener -SFX b1 eper èpes/n' eper -SFX b1 erer ères/n' erer -SFX b1 eser èses/n' eser -SFX b1 ever èves/n' ever -SFX b1 evrer èvres/n' evrer -SFX b1 eter ètes/n' eter -SFX b1 eler èles/n' eler -SFX b1 ecer èce/n'q' ecer -SFX b1 emer ème/n'q' emer -SFX b1 ener ène/n'q' ener -SFX b1 eper èpe/n'q' eper -SFX b1 erer ère/n'q' erer -SFX b1 eser èse/n'q' eser -SFX b1 ever ève/n'q' ever -SFX b1 evrer èvre/n'q' evrer -SFX b1 eter ète/n'q' eter -SFX b1 eler èle/n'q' eler -SFX b1 er ions/n' er -SFX b1 er iez/n' er -SFX b1 ecer ècent/n'q' ecer -SFX b1 emer èment/n'q' emer -SFX b1 ener ènent/n'q' ener -SFX b1 eper èpent/n'q' eper -SFX b1 erer èrent/n'q' erer -SFX b1 eser èsent/n'q' eser -SFX b1 ever èvent/n'q' ever -SFX b1 evrer èvrent/n'q' evrer -SFX b1 eter ètent/n'q' eter -SFX b1 eler èlent/n'q' eler -SFX b1 er asse/n'j' [^c]er -SFX b1 cer çasse/n'j' cer -SFX b1 er asses/n' [^c]er -SFX b1 cer çasses/n' cer -SFX b1 er ât/n'q' [^c]er -SFX b1 cer çât/n'q' cer -SFX b1 er assions/n' [^c]er -SFX b1 cer çassions/n' cer -SFX b1 er assiez/n' [^c]er -SFX b1 cer çassiez/n' cer -SFX b1 er assent/n'q' [^c]er -SFX b1 cer çassent/n'q' cer - -SFX b2 Y 242 -SFX b2 er er/n'q'd'l'm't's' er -SFX b2 er ant/n'q'l'm't's' [^c]er -SFX b2 cer çant/n'q'l'm't's' cer -SFX b2 er é/q' er -SFX b2 ecer èce/n'q'j'l't' ecer -SFX b2 emer ème/n'q'j'l't' emer -SFX b2 ener ène/n'q'j'l't' ener -SFX b2 eper èpe/n'q'j'l't' eper -SFX b2 erer ère/n'q'j'l't' erer -SFX b2 eser èse/n'q'j'l't' eser -SFX b2 ever ève/n'q'j'l't' ever -SFX b2 evrer èvre/n'q'j'l't' evrer -SFX b2 eter ète/n'q'j'l't' eter -SFX b2 eler èle/n'q'j'l't' eler -SFX b2 ecer èces/n'q'l'm' ecer -SFX b2 emer èmes/n'q'l'm' emer -SFX b2 ener ènes/n'q'l'm' ener -SFX b2 eper èpes/n'q'l'm' eper -SFX b2 erer ères/n'q'l'm' erer -SFX b2 eser èses/n'q'l'm' eser -SFX b2 ever èves/n'q'l'm' ever -SFX b2 evrer èvres/n'q'l'm' evrer -SFX b2 eter ètes/n'q'l'm' eter -SFX b2 eler èles/n'q'l'm' eler -SFX b2 ecer èce/n'q'l'm't's' ecer -SFX b2 emer ème/n'q'l'm't's' emer -SFX b2 ener ène/n'q'l'm't's' ener -SFX b2 eper èpe/n'q'l'm't's' eper -SFX b2 erer ère/n'q'l'm't's' erer -SFX b2 eser èse/n'q'l'm't's' eser -SFX b2 ever ève/n'q'l'm't's' ever -SFX b2 evrer èvre/n'q'l'm't's' evrer -SFX b2 eter ète/n'q'l'm't's' eter -SFX b2 eler èle/n'q'l'm't's' eler -SFX b2 er ons/n'q'l't' [^c]er -SFX b2 cer çons/n'q'l't' cer -SFX b2 er ez/n'q'l'm' er -SFX b2 ecer ècent/n'q'l'm't's' ecer -SFX b2 emer èment/n'q'l'm't's' emer -SFX b2 ener ènent/n'q'l'm't's' ener -SFX b2 eper èpent/n'q'l'm't's' eper -SFX b2 erer èrent/n'q'l'm't's' erer -SFX b2 eser èsent/n'q'l'm't's' eser -SFX b2 ever èvent/n'q'l'm't's' ever -SFX b2 evrer èvrent/n'q'l'm't's' evrer -SFX b2 eter ètent/n'q'l'm't's' eter -SFX b2 eler èlent/n'q'l'm't's' eler -SFX b2 er ais/n'q'j'l't' [^c]er -SFX b2 cer çais/n'q'j'l't' cer -SFX b2 er ais/n'q'l'm' [^c]er -SFX b2 cer çais/n'q'l'm' cer -SFX b2 er ait/n'q'l'm't's' [^c]er -SFX b2 cer çait/n'q'l'm't's' cer -SFX b2 er ions/n'q'l't' er -SFX b2 er iez/n'q'l'm' er -SFX b2 er aient/n'q'l'm't's' [^c]er -SFX b2 cer çaient/n'q'l'm't's' cer -SFX b2 er ai/n'q'j'l't' [^c]er -SFX b2 cer çai/n'q'j'l't' cer -SFX b2 er as/n'q'l'm' [^c]er -SFX b2 cer ças/n'q'l'm' cer -SFX b2 er a/n'q'l'm't's' [^c]er -SFX b2 cer ça/n'q'l'm't's' cer -SFX b2 er âmes/n'q'l't' [^c]er -SFX b2 cer çâmes/n'q'l't' cer -SFX b2 er âtes/n'q'l'm' [^c]er -SFX b2 cer çâtes/n'q'l'm' cer -SFX b2 er èrent/n'q'l'm't's' er -SFX b2 ecer ècerai/n'q'j'l't' ecer -SFX b2 emer èmerai/n'q'j'l't' emer -SFX b2 ener ènerai/n'q'j'l't' ener -SFX b2 eper èperai/n'q'j'l't' eper -SFX b2 erer èrerai/n'q'j'l't' erer -SFX b2 eser èserai/n'q'j'l't' eser -SFX b2 ever èverai/n'q'j'l't' ever -SFX b2 evrer èvrerai/n'q'j'l't' evrer -SFX b2 eter èterai/n'q'j'l't' eter -SFX b2 eler èlerai/n'q'j'l't' eler -SFX b2 ecer èceras/n'q'l'm' ecer -SFX b2 emer èmeras/n'q'l'm' emer -SFX b2 ener èneras/n'q'l'm' ener -SFX b2 eper èperas/n'q'l'm' eper -SFX b2 erer èreras/n'q'l'm' erer -SFX b2 eser èseras/n'q'l'm' eser -SFX b2 ever èveras/n'q'l'm' ever -SFX b2 evrer èvreras/n'q'l'm' evrer -SFX b2 eter èteras/n'q'l'm' eter -SFX b2 eler èleras/n'q'l'm' eler -SFX b2 ecer ècera/n'q'l'm't's' ecer -SFX b2 emer èmera/n'q'l'm't's' emer -SFX b2 ener ènera/n'q'l'm't's' ener -SFX b2 eper èpera/n'q'l'm't's' eper -SFX b2 erer èrera/n'q'l'm't's' erer -SFX b2 eser èsera/n'q'l'm't's' eser -SFX b2 ever èvera/n'q'l'm't's' ever -SFX b2 evrer èvrera/n'q'l'm't's' evrer -SFX b2 eter ètera/n'q'l'm't's' eter -SFX b2 eler èlera/n'q'l'm't's' eler -SFX b2 ecer ècerons/n'q'l't' ecer -SFX b2 emer èmerons/n'q'l't' emer -SFX b2 ener ènerons/n'q'l't' ener -SFX b2 eper èperons/n'q'l't' eper -SFX b2 erer èrerons/n'q'l't' erer -SFX b2 eser èserons/n'q'l't' eser -SFX b2 ever èverons/n'q'l't' ever -SFX b2 evrer èvrerons/n'q'l't' evrer -SFX b2 eter èterons/n'q'l't' eter -SFX b2 eler èlerons/n'q'l't' eler -SFX b2 ecer ècerez/n'q'l'm' ecer -SFX b2 emer èmerez/n'q'l'm' emer -SFX b2 ener ènerez/n'q'l'm' ener -SFX b2 eper èperez/n'q'l'm' eper -SFX b2 erer èrerez/n'q'l'm' erer -SFX b2 eser èserez/n'q'l'm' eser -SFX b2 ever èverez/n'q'l'm' ever -SFX b2 evrer èvrerez/n'q'l'm' evrer -SFX b2 eter èterez/n'q'l'm' eter -SFX b2 eler èlerez/n'q'l'm' eler -SFX b2 ecer èceront/n'q'l'm't's' ecer -SFX b2 emer èmeront/n'q'l'm't's' emer -SFX b2 ener èneront/n'q'l'm't's' ener -SFX b2 eper èperont/n'q'l'm't's' eper -SFX b2 erer èreront/n'q'l'm't's' erer -SFX b2 eser èseront/n'q'l'm't's' eser -SFX b2 ever èveront/n'q'l'm't's' ever -SFX b2 evrer èvreront/n'q'l'm't's' evrer -SFX b2 eter èteront/n'q'l'm't's' eter -SFX b2 eler èleront/n'q'l'm't's' eler -SFX b2 ecer ècerais/n'q'j'l't' ecer -SFX b2 emer èmerais/n'q'j'l't' emer -SFX b2 ener ènerais/n'q'j'l't' ener -SFX b2 eper èperais/n'q'j'l't' eper -SFX b2 erer èrerais/n'q'j'l't' erer -SFX b2 eser èserais/n'q'j'l't' eser -SFX b2 ever èverais/n'q'j'l't' ever -SFX b2 evrer èvrerais/n'q'j'l't' evrer -SFX b2 eter èterais/n'q'j'l't' eter -SFX b2 eler èlerais/n'q'j'l't' eler -SFX b2 ecer ècerais/n'q'l'm' ecer -SFX b2 emer èmerais/n'q'l'm' emer -SFX b2 ener ènerais/n'q'l'm' ener -SFX b2 eper èperais/n'q'l'm' eper -SFX b2 erer èrerais/n'q'l'm' erer -SFX b2 eser èserais/n'q'l'm' eser -SFX b2 ever èverais/n'q'l'm' ever -SFX b2 evrer èvrerais/n'q'l'm' evrer -SFX b2 eter èterais/n'q'l'm' eter -SFX b2 eler èlerais/n'q'l'm' eler -SFX b2 ecer ècerait/n'q'l'm't's' ecer -SFX b2 emer èmerait/n'q'l'm't's' emer -SFX b2 ener ènerait/n'q'l'm't's' ener -SFX b2 eper èperait/n'q'l'm't's' eper -SFX b2 erer èrerait/n'q'l'm't's' erer -SFX b2 eser èserait/n'q'l'm't's' eser -SFX b2 ever èverait/n'q'l'm't's' ever -SFX b2 evrer èvrerait/n'q'l'm't's' evrer -SFX b2 eter èterait/n'q'l'm't's' eter -SFX b2 eler èlerait/n'q'l'm't's' eler -SFX b2 ecer ècerions/n'q'l't' ecer -SFX b2 emer èmerions/n'q'l't' emer -SFX b2 ener ènerions/n'q'l't' ener -SFX b2 eper èperions/n'q'l't' eper -SFX b2 erer èrerions/n'q'l't' erer -SFX b2 eser èserions/n'q'l't' eser -SFX b2 ever èverions/n'q'l't' ever -SFX b2 evrer èvrerions/n'q'l't' evrer -SFX b2 eter èterions/n'q'l't' eter -SFX b2 eler èlerions/n'q'l't' eler -SFX b2 ecer èceriez/n'q'l'm' ecer -SFX b2 emer èmeriez/n'q'l'm' emer -SFX b2 ener èneriez/n'q'l'm' ener -SFX b2 eper èperiez/n'q'l'm' eper -SFX b2 erer èreriez/n'q'l'm' erer -SFX b2 eser èseriez/n'q'l'm' eser -SFX b2 ever èveriez/n'q'l'm' ever -SFX b2 evrer èvreriez/n'q'l'm' evrer -SFX b2 eter èteriez/n'q'l'm' eter -SFX b2 eler èleriez/n'q'l'm' eler -SFX b2 ecer èceraient/n'q'l'm't's' ecer -SFX b2 emer èmeraient/n'q'l'm't's' emer -SFX b2 ener èneraient/n'q'l'm't's' ener -SFX b2 eper èperaient/n'q'l'm't's' eper -SFX b2 erer èreraient/n'q'l'm't's' erer -SFX b2 eser èseraient/n'q'l'm't's' eser -SFX b2 ever èveraient/n'q'l'm't's' ever -SFX b2 evrer èvreraient/n'q'l'm't's' evrer -SFX b2 eter èteraient/n'q'l'm't's' eter -SFX b2 eler èleraient/n'q'l'm't's' eler -SFX b2 ecer èce/n'j'l't' ecer -SFX b2 emer ème/n'j'l't' emer -SFX b2 ener ène/n'j'l't' ener -SFX b2 eper èpe/n'j'l't' eper -SFX b2 erer ère/n'j'l't' erer -SFX b2 eser èse/n'j'l't' eser -SFX b2 ever ève/n'j'l't' ever -SFX b2 evrer èvre/n'j'l't' evrer -SFX b2 eter ète/n'j'l't' eter -SFX b2 eler èle/n'j'l't' eler -SFX b2 ecer èces/n'l'm' ecer -SFX b2 emer èmes/n'l'm' emer -SFX b2 ener ènes/n'l'm' ener -SFX b2 eper èpes/n'l'm' eper -SFX b2 erer ères/n'l'm' erer -SFX b2 eser èses/n'l'm' eser -SFX b2 ever èves/n'l'm' ever -SFX b2 evrer èvres/n'l'm' evrer -SFX b2 eter ètes/n'l'm' eter -SFX b2 eler èles/n'l'm' eler -SFX b2 ecer èce/n'l'm't's' ecer -SFX b2 emer ème/n'l'm't's' emer -SFX b2 ener ène/n'l'm't's' ener -SFX b2 eper èpe/n'l'm't's' eper -SFX b2 erer ère/n'l'm't's' erer -SFX b2 eser èse/n'l'm't's' eser -SFX b2 ever ève/n'l'm't's' ever -SFX b2 evrer èvre/n'l'm't's' evrer -SFX b2 eter ète/n'l'm't's' eter -SFX b2 eler èle/n'l'm't's' eler -SFX b2 er ions/n'l't' er -SFX b2 er iez/n'l'm' er -SFX b2 ecer ècent/n'l'm't's' ecer -SFX b2 emer èment/n'l'm't's' emer -SFX b2 ener ènent/n'l'm't's' ener -SFX b2 eper èpent/n'l'm't's' eper -SFX b2 erer èrent/n'l'm't's' erer -SFX b2 eser èsent/n'l'm't's' eser -SFX b2 ever èvent/n'l'm't's' ever -SFX b2 evrer èvrent/n'l'm't's' evrer -SFX b2 eter ètent/n'l'm't's' eter -SFX b2 eler èlent/n'l'm't's' eler -SFX b2 er asse/n'q'j'l't' [^c]er -SFX b2 cer çasse/n'q'j'l't' cer -SFX b2 er asses/n'q'l'm' [^c]er -SFX b2 cer çasses/n'q'l'm' cer -SFX b2 er ât/n'q'l'm't's' [^c]er -SFX b2 cer çât/n'q'l'm't's' cer -SFX b2 er assions/n'q'l't' [^c]er -SFX b2 cer çassions/n'q'l't' cer -SFX b2 er assiez/n'q'l'm' [^c]er -SFX b2 cer çassiez/n'q'l'm' cer -SFX b2 er assent/n'q'l'm't's' [^c]er -SFX b2 cer çassent/n'q'l'm't's' cer - -SFX b3 Y 242 -SFX b3 er er/m't's' er -SFX b3 er ant/m't's' [^c]er -SFX b3 cer çant/m't's' cer -SFX b3 er é er -SFX b3 ecer èce/m' ecer -SFX b3 emer ème/m' emer -SFX b3 ener ène/m' ener -SFX b3 eper èpe/m' eper -SFX b3 erer ère/m' erer -SFX b3 eser èse/m' eser -SFX b3 ever ève/m' ever -SFX b3 evrer èvre/m' evrer -SFX b3 eter ète/m' eter -SFX b3 eler èle/m' eler -SFX b3 ecer èces/t' ecer -SFX b3 emer èmes/t' emer -SFX b3 ener ènes/t' ener -SFX b3 eper èpes/t' eper -SFX b3 erer ères/t' erer -SFX b3 eser èses/t' eser -SFX b3 ever èves/t' ever -SFX b3 evrer èvres/t' evrer -SFX b3 eter ètes/t' eter -SFX b3 eler èles/t' eler -SFX b3 ecer èce/s' ecer -SFX b3 emer ème/s' emer -SFX b3 ener ène/s' ener -SFX b3 eper èpe/s' eper -SFX b3 erer ère/s' erer -SFX b3 eser èse/s' eser -SFX b3 ever ève/s' ever -SFX b3 evrer èvre/s' evrer -SFX b3 eter ète/s' eter -SFX b3 eler èle/s' eler -SFX b3 er ons [^c]er -SFX b3 cer çons cer -SFX b3 er ez er -SFX b3 ecer ècent/s' ecer -SFX b3 emer èment/s' emer -SFX b3 ener ènent/s' ener -SFX b3 eper èpent/s' eper -SFX b3 erer èrent/s' erer -SFX b3 eser èsent/s' eser -SFX b3 ever èvent/s' ever -SFX b3 evrer èvrent/s' evrer -SFX b3 eter ètent/s' eter -SFX b3 eler èlent/s' eler -SFX b3 er ais/m' [^c]er -SFX b3 cer çais/m' cer -SFX b3 er ais/t' [^c]er -SFX b3 cer çais/t' cer -SFX b3 er ait/s' [^c]er -SFX b3 cer çait/s' cer -SFX b3 er ions er -SFX b3 er iez er -SFX b3 er aient/s' [^c]er -SFX b3 cer çaient/s' cer -SFX b3 er ai/m' [^c]er -SFX b3 cer çai/m' cer -SFX b3 er as/t' [^c]er -SFX b3 cer ças/t' cer -SFX b3 er a/s' [^c]er -SFX b3 cer ça/s' cer -SFX b3 er âmes [^c]er -SFX b3 cer çâmes cer -SFX b3 er âtes [^c]er -SFX b3 cer çâtes cer -SFX b3 er èrent/s' er -SFX b3 ecer ècerai/m' ecer -SFX b3 emer èmerai/m' emer -SFX b3 ener ènerai/m' ener -SFX b3 eper èperai/m' eper -SFX b3 erer èrerai/m' erer -SFX b3 eser èserai/m' eser -SFX b3 ever èverai/m' ever -SFX b3 evrer èvrerai/m' evrer -SFX b3 eter èterai/m' eter -SFX b3 eler èlerai/m' eler -SFX b3 ecer èceras/t' ecer -SFX b3 emer èmeras/t' emer -SFX b3 ener èneras/t' ener -SFX b3 eper èperas/t' eper -SFX b3 erer èreras/t' erer -SFX b3 eser èseras/t' eser -SFX b3 ever èveras/t' ever -SFX b3 evrer èvreras/t' evrer -SFX b3 eter èteras/t' eter -SFX b3 eler èleras/t' eler -SFX b3 ecer ècera/s' ecer -SFX b3 emer èmera/s' emer -SFX b3 ener ènera/s' ener -SFX b3 eper èpera/s' eper -SFX b3 erer èrera/s' erer -SFX b3 eser èsera/s' eser -SFX b3 ever èvera/s' ever -SFX b3 evrer èvrera/s' evrer -SFX b3 eter ètera/s' eter -SFX b3 eler èlera/s' eler -SFX b3 ecer ècerons ecer -SFX b3 emer èmerons emer -SFX b3 ener ènerons ener -SFX b3 eper èperons eper -SFX b3 erer èrerons erer -SFX b3 eser èserons eser -SFX b3 ever èverons ever -SFX b3 evrer èvrerons evrer -SFX b3 eter èterons eter -SFX b3 eler èlerons eler -SFX b3 ecer ècerez ecer -SFX b3 emer èmerez emer -SFX b3 ener ènerez ener -SFX b3 eper èperez eper -SFX b3 erer èrerez erer -SFX b3 eser èserez eser -SFX b3 ever èverez ever -SFX b3 evrer èvrerez evrer -SFX b3 eter èterez eter -SFX b3 eler èlerez eler -SFX b3 ecer èceront/s' ecer -SFX b3 emer èmeront/s' emer -SFX b3 ener èneront/s' ener -SFX b3 eper èperont/s' eper -SFX b3 erer èreront/s' erer -SFX b3 eser èseront/s' eser -SFX b3 ever èveront/s' ever -SFX b3 evrer èvreront/s' evrer -SFX b3 eter èteront/s' eter -SFX b3 eler èleront/s' eler -SFX b3 ecer ècerais/m' ecer -SFX b3 emer èmerais/m' emer -SFX b3 ener ènerais/m' ener -SFX b3 eper èperais/m' eper -SFX b3 erer èrerais/m' erer -SFX b3 eser èserais/m' eser -SFX b3 ever èverais/m' ever -SFX b3 evrer èvrerais/m' evrer -SFX b3 eter èterais/m' eter -SFX b3 eler èlerais/m' eler -SFX b3 ecer ècerais/t' ecer -SFX b3 emer èmerais/t' emer -SFX b3 ener ènerais/t' ener -SFX b3 eper èperais/t' eper -SFX b3 erer èrerais/t' erer -SFX b3 eser èserais/t' eser -SFX b3 ever èverais/t' ever -SFX b3 evrer èvrerais/t' evrer -SFX b3 eter èterais/t' eter -SFX b3 eler èlerais/t' eler -SFX b3 ecer ècerait/s' ecer -SFX b3 emer èmerait/s' emer -SFX b3 ener ènerait/s' ener -SFX b3 eper èperait/s' eper -SFX b3 erer èrerait/s' erer -SFX b3 eser èserait/s' eser -SFX b3 ever èverait/s' ever -SFX b3 evrer èvrerait/s' evrer -SFX b3 eter èterait/s' eter -SFX b3 eler èlerait/s' eler -SFX b3 ecer ècerions ecer -SFX b3 emer èmerions emer -SFX b3 ener ènerions ener -SFX b3 eper èperions eper -SFX b3 erer èrerions erer -SFX b3 eser èserions eser -SFX b3 ever èverions ever -SFX b3 evrer èvrerions evrer -SFX b3 eter èterions eter -SFX b3 eler èlerions eler -SFX b3 ecer èceriez ecer -SFX b3 emer èmeriez emer -SFX b3 ener èneriez ener -SFX b3 eper èperiez eper -SFX b3 erer èreriez erer -SFX b3 eser èseriez eser -SFX b3 ever èveriez ever -SFX b3 evrer èvreriez evrer -SFX b3 eter èteriez eter -SFX b3 eler èleriez eler -SFX b3 ecer èceraient/s' ecer -SFX b3 emer èmeraient/s' emer -SFX b3 ener èneraient/s' ener -SFX b3 eper èperaient/s' eper -SFX b3 erer èreraient/s' erer -SFX b3 eser èseraient/s' eser -SFX b3 ever èveraient/s' ever -SFX b3 evrer èvreraient/s' evrer -SFX b3 eter èteraient/s' eter -SFX b3 eler èleraient/s' eler -SFX b3 ecer èce/m' ecer -SFX b3 emer ème/m' emer -SFX b3 ener ène/m' ener -SFX b3 eper èpe/m' eper -SFX b3 erer ère/m' erer -SFX b3 eser èse/m' eser -SFX b3 ever ève/m' ever -SFX b3 evrer èvre/m' evrer -SFX b3 eter ète/m' eter -SFX b3 eler èle/m' eler -SFX b3 ecer èces/t' ecer -SFX b3 emer èmes/t' emer -SFX b3 ener ènes/t' ener -SFX b3 eper èpes/t' eper -SFX b3 erer ères/t' erer -SFX b3 eser èses/t' eser -SFX b3 ever èves/t' ever -SFX b3 evrer èvres/t' evrer -SFX b3 eter ètes/t' eter -SFX b3 eler èles/t' eler -SFX b3 ecer èce/s' ecer -SFX b3 emer ème/s' emer -SFX b3 ener ène/s' ener -SFX b3 eper èpe/s' eper -SFX b3 erer ère/s' erer -SFX b3 eser èse/s' eser -SFX b3 ever ève/s' ever -SFX b3 evrer èvre/s' evrer -SFX b3 eter ète/s' eter -SFX b3 eler èle/s' eler -SFX b3 er ions er -SFX b3 er iez er -SFX b3 ecer ècent/s' ecer -SFX b3 emer èment/s' emer -SFX b3 ener ènent/s' ener -SFX b3 eper èpent/s' eper -SFX b3 erer èrent/s' erer -SFX b3 eser èsent/s' eser -SFX b3 ever èvent/s' ever -SFX b3 evrer èvrent/s' evrer -SFX b3 eter ètent/s' eter -SFX b3 eler èlent/s' eler -SFX b3 er asse/m' [^c]er -SFX b3 cer çasse/m' cer -SFX b3 er asses/t' [^c]er -SFX b3 cer çasses/t' cer -SFX b3 er ât/s' [^c]er -SFX b3 cer çât/s' cer -SFX b3 er assions [^c]er -SFX b3 cer çassions cer -SFX b3 er assiez [^c]er -SFX b3 cer çassiez cer -SFX b3 er assent/s' [^c]er -SFX b3 cer çassent/s' cer - -SFX b4 Y 242 -SFX b4 er er/n'q'd'l'm't's' er -SFX b4 er ant/n'q'l'm't's' [^c]er -SFX b4 cer çant/n'q'l'm't's' cer -SFX b4 er é/q' er -SFX b4 ecer èce/n'q'j'l'm't' ecer -SFX b4 emer ème/n'q'j'l'm't' emer -SFX b4 ener ène/n'q'j'l'm't' ener -SFX b4 eper èpe/n'q'j'l'm't' eper -SFX b4 erer ère/n'q'j'l'm't' erer -SFX b4 eser èse/n'q'j'l'm't' eser -SFX b4 ever ève/n'q'j'l'm't' ever -SFX b4 evrer èvre/n'q'j'l'm't' evrer -SFX b4 eter ète/n'q'j'l'm't' eter -SFX b4 eler èle/n'q'j'l'm't' eler -SFX b4 ecer èces/n'q'l'm't' ecer -SFX b4 emer èmes/n'q'l'm't' emer -SFX b4 ener ènes/n'q'l'm't' ener -SFX b4 eper èpes/n'q'l'm't' eper -SFX b4 erer ères/n'q'l'm't' erer -SFX b4 eser èses/n'q'l'm't' eser -SFX b4 ever èves/n'q'l'm't' ever -SFX b4 evrer èvres/n'q'l'm't' evrer -SFX b4 eter ètes/n'q'l'm't' eter -SFX b4 eler èles/n'q'l'm't' eler -SFX b4 ecer èce/n'q'l'm't's' ecer -SFX b4 emer ème/n'q'l'm't's' emer -SFX b4 ener ène/n'q'l'm't's' ener -SFX b4 eper èpe/n'q'l'm't's' eper -SFX b4 erer ère/n'q'l'm't's' erer -SFX b4 eser èse/n'q'l'm't's' eser -SFX b4 ever ève/n'q'l'm't's' ever -SFX b4 evrer èvre/n'q'l'm't's' evrer -SFX b4 eter ète/n'q'l'm't's' eter -SFX b4 eler èle/n'q'l'm't's' eler -SFX b4 er ons/n'q'l't' [^c]er -SFX b4 cer çons/n'q'l't' cer -SFX b4 er ez/n'q'l'm' er -SFX b4 ecer ècent/n'q'l'm't's' ecer -SFX b4 emer èment/n'q'l'm't's' emer -SFX b4 ener ènent/n'q'l'm't's' ener -SFX b4 eper èpent/n'q'l'm't's' eper -SFX b4 erer èrent/n'q'l'm't's' erer -SFX b4 eser èsent/n'q'l'm't's' eser -SFX b4 ever èvent/n'q'l'm't's' ever -SFX b4 evrer èvrent/n'q'l'm't's' evrer -SFX b4 eter ètent/n'q'l'm't's' eter -SFX b4 eler èlent/n'q'l'm't's' eler -SFX b4 er ais/n'q'j'l'm't' [^c]er -SFX b4 cer çais/n'q'j'l'm't' cer -SFX b4 er ais/n'q'l'm't' [^c]er -SFX b4 cer çais/n'q'l'm't' cer -SFX b4 er ait/n'q'l'm't's' [^c]er -SFX b4 cer çait/n'q'l'm't's' cer -SFX b4 er ions/n'q'l't' er -SFX b4 er iez/n'q'l'm' er -SFX b4 er aient/n'q'l'm't's' [^c]er -SFX b4 cer çaient/n'q'l'm't's' cer -SFX b4 er ai/n'q'j'l'm't' [^c]er -SFX b4 cer çai/n'q'j'l'm't' cer -SFX b4 er as/n'q'l'm't' [^c]er -SFX b4 cer ças/n'q'l'm't' cer -SFX b4 er a/n'q'l'm't's' [^c]er -SFX b4 cer ça/n'q'l'm't's' cer -SFX b4 er âmes/n'q'l't' [^c]er -SFX b4 cer çâmes/n'q'l't' cer -SFX b4 er âtes/n'q'l'm' [^c]er -SFX b4 cer çâtes/n'q'l'm' cer -SFX b4 er èrent/n'q'l'm't's' er -SFX b4 ecer ècerai/n'q'j'l'm't' ecer -SFX b4 emer èmerai/n'q'j'l'm't' emer -SFX b4 ener ènerai/n'q'j'l'm't' ener -SFX b4 eper èperai/n'q'j'l'm't' eper -SFX b4 erer èrerai/n'q'j'l'm't' erer -SFX b4 eser èserai/n'q'j'l'm't' eser -SFX b4 ever èverai/n'q'j'l'm't' ever -SFX b4 evrer èvrerai/n'q'j'l'm't' evrer -SFX b4 eter èterai/n'q'j'l'm't' eter -SFX b4 eler èlerai/n'q'j'l'm't' eler -SFX b4 ecer èceras/n'q'l'm't' ecer -SFX b4 emer èmeras/n'q'l'm't' emer -SFX b4 ener èneras/n'q'l'm't' ener -SFX b4 eper èperas/n'q'l'm't' eper -SFX b4 erer èreras/n'q'l'm't' erer -SFX b4 eser èseras/n'q'l'm't' eser -SFX b4 ever èveras/n'q'l'm't' ever -SFX b4 evrer èvreras/n'q'l'm't' evrer -SFX b4 eter èteras/n'q'l'm't' eter -SFX b4 eler èleras/n'q'l'm't' eler -SFX b4 ecer ècera/n'q'l'm't's' ecer -SFX b4 emer èmera/n'q'l'm't's' emer -SFX b4 ener ènera/n'q'l'm't's' ener -SFX b4 eper èpera/n'q'l'm't's' eper -SFX b4 erer èrera/n'q'l'm't's' erer -SFX b4 eser èsera/n'q'l'm't's' eser -SFX b4 ever èvera/n'q'l'm't's' ever -SFX b4 evrer èvrera/n'q'l'm't's' evrer -SFX b4 eter ètera/n'q'l'm't's' eter -SFX b4 eler èlera/n'q'l'm't's' eler -SFX b4 ecer ècerons/n'q'l't' ecer -SFX b4 emer èmerons/n'q'l't' emer -SFX b4 ener ènerons/n'q'l't' ener -SFX b4 eper èperons/n'q'l't' eper -SFX b4 erer èrerons/n'q'l't' erer -SFX b4 eser èserons/n'q'l't' eser -SFX b4 ever èverons/n'q'l't' ever -SFX b4 evrer èvrerons/n'q'l't' evrer -SFX b4 eter èterons/n'q'l't' eter -SFX b4 eler èlerons/n'q'l't' eler -SFX b4 ecer ècerez/n'q'l'm' ecer -SFX b4 emer èmerez/n'q'l'm' emer -SFX b4 ener ènerez/n'q'l'm' ener -SFX b4 eper èperez/n'q'l'm' eper -SFX b4 erer èrerez/n'q'l'm' erer -SFX b4 eser èserez/n'q'l'm' eser -SFX b4 ever èverez/n'q'l'm' ever -SFX b4 evrer èvrerez/n'q'l'm' evrer -SFX b4 eter èterez/n'q'l'm' eter -SFX b4 eler èlerez/n'q'l'm' eler -SFX b4 ecer èceront/n'q'l'm't's' ecer -SFX b4 emer èmeront/n'q'l'm't's' emer -SFX b4 ener èneront/n'q'l'm't's' ener -SFX b4 eper èperont/n'q'l'm't's' eper -SFX b4 erer èreront/n'q'l'm't's' erer -SFX b4 eser èseront/n'q'l'm't's' eser -SFX b4 ever èveront/n'q'l'm't's' ever -SFX b4 evrer èvreront/n'q'l'm't's' evrer -SFX b4 eter èteront/n'q'l'm't's' eter -SFX b4 eler èleront/n'q'l'm't's' eler -SFX b4 ecer ècerais/n'q'j'l'm't' ecer -SFX b4 emer èmerais/n'q'j'l'm't' emer -SFX b4 ener ènerais/n'q'j'l'm't' ener -SFX b4 eper èperais/n'q'j'l'm't' eper -SFX b4 erer èrerais/n'q'j'l'm't' erer -SFX b4 eser èserais/n'q'j'l'm't' eser -SFX b4 ever èverais/n'q'j'l'm't' ever -SFX b4 evrer èvrerais/n'q'j'l'm't' evrer -SFX b4 eter èterais/n'q'j'l'm't' eter -SFX b4 eler èlerais/n'q'j'l'm't' eler -SFX b4 ecer ècerais/n'q'l'm't' ecer -SFX b4 emer èmerais/n'q'l'm't' emer -SFX b4 ener ènerais/n'q'l'm't' ener -SFX b4 eper èperais/n'q'l'm't' eper -SFX b4 erer èrerais/n'q'l'm't' erer -SFX b4 eser èserais/n'q'l'm't' eser -SFX b4 ever èverais/n'q'l'm't' ever -SFX b4 evrer èvrerais/n'q'l'm't' evrer -SFX b4 eter èterais/n'q'l'm't' eter -SFX b4 eler èlerais/n'q'l'm't' eler -SFX b4 ecer ècerait/n'q'l'm't's' ecer -SFX b4 emer èmerait/n'q'l'm't's' emer -SFX b4 ener ènerait/n'q'l'm't's' ener -SFX b4 eper èperait/n'q'l'm't's' eper -SFX b4 erer èrerait/n'q'l'm't's' erer -SFX b4 eser èserait/n'q'l'm't's' eser -SFX b4 ever èverait/n'q'l'm't's' ever -SFX b4 evrer èvrerait/n'q'l'm't's' evrer -SFX b4 eter èterait/n'q'l'm't's' eter -SFX b4 eler èlerait/n'q'l'm't's' eler -SFX b4 ecer ècerions/n'q'l't' ecer -SFX b4 emer èmerions/n'q'l't' emer -SFX b4 ener ènerions/n'q'l't' ener -SFX b4 eper èperions/n'q'l't' eper -SFX b4 erer èrerions/n'q'l't' erer -SFX b4 eser èserions/n'q'l't' eser -SFX b4 ever èverions/n'q'l't' ever -SFX b4 evrer èvrerions/n'q'l't' evrer -SFX b4 eter èterions/n'q'l't' eter -SFX b4 eler èlerions/n'q'l't' eler -SFX b4 ecer èceriez/n'q'l'm' ecer -SFX b4 emer èmeriez/n'q'l'm' emer -SFX b4 ener èneriez/n'q'l'm' ener -SFX b4 eper èperiez/n'q'l'm' eper -SFX b4 erer èreriez/n'q'l'm' erer -SFX b4 eser èseriez/n'q'l'm' eser -SFX b4 ever èveriez/n'q'l'm' ever -SFX b4 evrer èvreriez/n'q'l'm' evrer -SFX b4 eter èteriez/n'q'l'm' eter -SFX b4 eler èleriez/n'q'l'm' eler -SFX b4 ecer èceraient/n'q'l'm't's' ecer -SFX b4 emer èmeraient/n'q'l'm't's' emer -SFX b4 ener èneraient/n'q'l'm't's' ener -SFX b4 eper èperaient/n'q'l'm't's' eper -SFX b4 erer èreraient/n'q'l'm't's' erer -SFX b4 eser èseraient/n'q'l'm't's' eser -SFX b4 ever èveraient/n'q'l'm't's' ever -SFX b4 evrer èvreraient/n'q'l'm't's' evrer -SFX b4 eter èteraient/n'q'l'm't's' eter -SFX b4 eler èleraient/n'q'l'm't's' eler -SFX b4 ecer èce/n'j'l'm't' ecer -SFX b4 emer ème/n'j'l'm't' emer -SFX b4 ener ène/n'j'l'm't' ener -SFX b4 eper èpe/n'j'l'm't' eper -SFX b4 erer ère/n'j'l'm't' erer -SFX b4 eser èse/n'j'l'm't' eser -SFX b4 ever ève/n'j'l'm't' ever -SFX b4 evrer èvre/n'j'l'm't' evrer -SFX b4 eter ète/n'j'l'm't' eter -SFX b4 eler èle/n'j'l'm't' eler -SFX b4 ecer èces/n'l'm't' ecer -SFX b4 emer èmes/n'l'm't' emer -SFX b4 ener ènes/n'l'm't' ener -SFX b4 eper èpes/n'l'm't' eper -SFX b4 erer ères/n'l'm't' erer -SFX b4 eser èses/n'l'm't' eser -SFX b4 ever èves/n'l'm't' ever -SFX b4 evrer èvres/n'l'm't' evrer -SFX b4 eter ètes/n'l'm't' eter -SFX b4 eler èles/n'l'm't' eler -SFX b4 ecer èce/n'l'm't's' ecer -SFX b4 emer ème/n'l'm't's' emer -SFX b4 ener ène/n'l'm't's' ener -SFX b4 eper èpe/n'l'm't's' eper -SFX b4 erer ère/n'l'm't's' erer -SFX b4 eser èse/n'l'm't's' eser -SFX b4 ever ève/n'l'm't's' ever -SFX b4 evrer èvre/n'l'm't's' evrer -SFX b4 eter ète/n'l'm't's' eter -SFX b4 eler èle/n'l'm't's' eler -SFX b4 er ions/n'l't' er -SFX b4 er iez/n'l'm' er -SFX b4 ecer ècent/n'l'm't's' ecer -SFX b4 emer èment/n'l'm't's' emer -SFX b4 ener ènent/n'l'm't's' ener -SFX b4 eper èpent/n'l'm't's' eper -SFX b4 erer èrent/n'l'm't's' erer -SFX b4 eser èsent/n'l'm't's' eser -SFX b4 ever èvent/n'l'm't's' ever -SFX b4 evrer èvrent/n'l'm't's' evrer -SFX b4 eter ètent/n'l'm't's' eter -SFX b4 eler èlent/n'l'm't's' eler -SFX b4 er asse/n'q'j'l'm't' [^c]er -SFX b4 cer çasse/n'q'j'l'm't' cer -SFX b4 er asses/n'q'l'm't' [^c]er -SFX b4 cer çasses/n'q'l'm't' cer -SFX b4 er ât/n'q'l'm't's' [^c]er -SFX b4 cer çât/n'q'l'm't's' cer -SFX b4 er assions/n'q'l't' [^c]er -SFX b4 cer çassions/n'q'l't' cer -SFX b4 er assiez/n'q'l'm' [^c]er -SFX b4 cer çassiez/n'q'l'm' cer -SFX b4 er assent/n'q'l'm't's' [^c]er -SFX b4 cer çassent/n'q'l'm't's' cer - -SFX b5 Y 242 -SFX b5 er er/n'q'd'm't's' er -SFX b5 er ant/n'q'm't's' [^c]er -SFX b5 cer çant/n'q'm't's' cer -SFX b5 er é/q' er -SFX b5 ecer èce/n'j'm't' ecer -SFX b5 emer ème/n'j'm't' emer -SFX b5 ener ène/n'j'm't' ener -SFX b5 eper èpe/n'j'm't' eper -SFX b5 erer ère/n'j'm't' erer -SFX b5 eser èse/n'j'm't' eser -SFX b5 ever ève/n'j'm't' ever -SFX b5 evrer èvre/n'j'm't' evrer -SFX b5 eter ète/n'j'm't' eter -SFX b5 eler èle/n'j'm't' eler -SFX b5 ecer èces/n'm't' ecer -SFX b5 emer èmes/n'm't' emer -SFX b5 ener ènes/n'm't' ener -SFX b5 eper èpes/n'm't' eper -SFX b5 erer ères/n'm't' erer -SFX b5 eser èses/n'm't' eser -SFX b5 ever èves/n'm't' ever -SFX b5 evrer èvres/n'm't' evrer -SFX b5 eter ètes/n'm't' eter -SFX b5 eler èles/n'm't' eler -SFX b5 ecer èce/n'q'm't's' ecer -SFX b5 emer ème/n'q'm't's' emer -SFX b5 ener ène/n'q'm't's' ener -SFX b5 eper èpe/n'q'm't's' eper -SFX b5 erer ère/n'q'm't's' erer -SFX b5 eser èse/n'q'm't's' eser -SFX b5 ever ève/n'q'm't's' ever -SFX b5 evrer èvre/n'q'm't's' evrer -SFX b5 eter ète/n'q'm't's' eter -SFX b5 eler èle/n'q'm't's' eler -SFX b5 er ons/n't' [^c]er -SFX b5 cer çons/n't' cer -SFX b5 er ez/n'm' er -SFX b5 ecer ècent/n'q'm't's' ecer -SFX b5 emer èment/n'q'm't's' emer -SFX b5 ener ènent/n'q'm't's' ener -SFX b5 eper èpent/n'q'm't's' eper -SFX b5 erer èrent/n'q'm't's' erer -SFX b5 eser èsent/n'q'm't's' eser -SFX b5 ever èvent/n'q'm't's' ever -SFX b5 evrer èvrent/n'q'm't's' evrer -SFX b5 eter ètent/n'q'm't's' eter -SFX b5 eler èlent/n'q'm't's' eler -SFX b5 er ais/n'j'm't' [^c]er -SFX b5 cer çais/n'j'm't' cer -SFX b5 er ais/n'm't' [^c]er -SFX b5 cer çais/n'm't' cer -SFX b5 er ait/n'q'm't's' [^c]er -SFX b5 cer çait/n'q'm't's' cer -SFX b5 er ions/n't' er -SFX b5 er iez/n'm' er -SFX b5 er aient/n'q'm't's' [^c]er -SFX b5 cer çaient/n'q'm't's' cer -SFX b5 er ai/n'j'm't' [^c]er -SFX b5 cer çai/n'j'm't' cer -SFX b5 er as/n'm't' [^c]er -SFX b5 cer ças/n'm't' cer -SFX b5 er a/n'q'm't's' [^c]er -SFX b5 cer ça/n'q'm't's' cer -SFX b5 er âmes/n't' [^c]er -SFX b5 cer çâmes/n't' cer -SFX b5 er âtes/n'm' [^c]er -SFX b5 cer çâtes/n'm' cer -SFX b5 er èrent/n'q'm't's' er -SFX b5 ecer ècerai/n'j'm't' ecer -SFX b5 emer èmerai/n'j'm't' emer -SFX b5 ener ènerai/n'j'm't' ener -SFX b5 eper èperai/n'j'm't' eper -SFX b5 erer èrerai/n'j'm't' erer -SFX b5 eser èserai/n'j'm't' eser -SFX b5 ever èverai/n'j'm't' ever -SFX b5 evrer èvrerai/n'j'm't' evrer -SFX b5 eter èterai/n'j'm't' eter -SFX b5 eler èlerai/n'j'm't' eler -SFX b5 ecer èceras/n'm't' ecer -SFX b5 emer èmeras/n'm't' emer -SFX b5 ener èneras/n'm't' ener -SFX b5 eper èperas/n'm't' eper -SFX b5 erer èreras/n'm't' erer -SFX b5 eser èseras/n'm't' eser -SFX b5 ever èveras/n'm't' ever -SFX b5 evrer èvreras/n'm't' evrer -SFX b5 eter èteras/n'm't' eter -SFX b5 eler èleras/n'm't' eler -SFX b5 ecer ècera/n'q'm't's' ecer -SFX b5 emer èmera/n'q'm't's' emer -SFX b5 ener ènera/n'q'm't's' ener -SFX b5 eper èpera/n'q'm't's' eper -SFX b5 erer èrera/n'q'm't's' erer -SFX b5 eser èsera/n'q'm't's' eser -SFX b5 ever èvera/n'q'm't's' ever -SFX b5 evrer èvrera/n'q'm't's' evrer -SFX b5 eter ètera/n'q'm't's' eter -SFX b5 eler èlera/n'q'm't's' eler -SFX b5 ecer ècerons/n't' ecer -SFX b5 emer èmerons/n't' emer -SFX b5 ener ènerons/n't' ener -SFX b5 eper èperons/n't' eper -SFX b5 erer èrerons/n't' erer -SFX b5 eser èserons/n't' eser -SFX b5 ever èverons/n't' ever -SFX b5 evrer èvrerons/n't' evrer -SFX b5 eter èterons/n't' eter -SFX b5 eler èlerons/n't' eler -SFX b5 ecer ècerez/n'm' ecer -SFX b5 emer èmerez/n'm' emer -SFX b5 ener ènerez/n'm' ener -SFX b5 eper èperez/n'm' eper -SFX b5 erer èrerez/n'm' erer -SFX b5 eser èserez/n'm' eser -SFX b5 ever èverez/n'm' ever -SFX b5 evrer èvrerez/n'm' evrer -SFX b5 eter èterez/n'm' eter -SFX b5 eler èlerez/n'm' eler -SFX b5 ecer èceront/n'q'm't's' ecer -SFX b5 emer èmeront/n'q'm't's' emer -SFX b5 ener èneront/n'q'm't's' ener -SFX b5 eper èperont/n'q'm't's' eper -SFX b5 erer èreront/n'q'm't's' erer -SFX b5 eser èseront/n'q'm't's' eser -SFX b5 ever èveront/n'q'm't's' ever -SFX b5 evrer èvreront/n'q'm't's' evrer -SFX b5 eter èteront/n'q'm't's' eter -SFX b5 eler èleront/n'q'm't's' eler -SFX b5 ecer ècerais/n'j'm't' ecer -SFX b5 emer èmerais/n'j'm't' emer -SFX b5 ener ènerais/n'j'm't' ener -SFX b5 eper èperais/n'j'm't' eper -SFX b5 erer èrerais/n'j'm't' erer -SFX b5 eser èserais/n'j'm't' eser -SFX b5 ever èverais/n'j'm't' ever -SFX b5 evrer èvrerais/n'j'm't' evrer -SFX b5 eter èterais/n'j'm't' eter -SFX b5 eler èlerais/n'j'm't' eler -SFX b5 ecer ècerais/n'm't' ecer -SFX b5 emer èmerais/n'm't' emer -SFX b5 ener ènerais/n'm't' ener -SFX b5 eper èperais/n'm't' eper -SFX b5 erer èrerais/n'm't' erer -SFX b5 eser èserais/n'm't' eser -SFX b5 ever èverais/n'm't' ever -SFX b5 evrer èvrerais/n'm't' evrer -SFX b5 eter èterais/n'm't' eter -SFX b5 eler èlerais/n'm't' eler -SFX b5 ecer ècerait/n'q'm't's' ecer -SFX b5 emer èmerait/n'q'm't's' emer -SFX b5 ener ènerait/n'q'm't's' ener -SFX b5 eper èperait/n'q'm't's' eper -SFX b5 erer èrerait/n'q'm't's' erer -SFX b5 eser èserait/n'q'm't's' eser -SFX b5 ever èverait/n'q'm't's' ever -SFX b5 evrer èvrerait/n'q'm't's' evrer -SFX b5 eter èterait/n'q'm't's' eter -SFX b5 eler èlerait/n'q'm't's' eler -SFX b5 ecer ècerions/n't' ecer -SFX b5 emer èmerions/n't' emer -SFX b5 ener ènerions/n't' ener -SFX b5 eper èperions/n't' eper -SFX b5 erer èrerions/n't' erer -SFX b5 eser èserions/n't' eser -SFX b5 ever èverions/n't' ever -SFX b5 evrer èvrerions/n't' evrer -SFX b5 eter èterions/n't' eter -SFX b5 eler èlerions/n't' eler -SFX b5 ecer èceriez/n'm' ecer -SFX b5 emer èmeriez/n'm' emer -SFX b5 ener èneriez/n'm' ener -SFX b5 eper èperiez/n'm' eper -SFX b5 erer èreriez/n'm' erer -SFX b5 eser èseriez/n'm' eser -SFX b5 ever èveriez/n'm' ever -SFX b5 evrer èvreriez/n'm' evrer -SFX b5 eter èteriez/n'm' eter -SFX b5 eler èleriez/n'm' eler -SFX b5 ecer èceraient/n'q'm't's' ecer -SFX b5 emer èmeraient/n'q'm't's' emer -SFX b5 ener èneraient/n'q'm't's' ener -SFX b5 eper èperaient/n'q'm't's' eper -SFX b5 erer èreraient/n'q'm't's' erer -SFX b5 eser èseraient/n'q'm't's' eser -SFX b5 ever èveraient/n'q'm't's' ever -SFX b5 evrer èvreraient/n'q'm't's' evrer -SFX b5 eter èteraient/n'q'm't's' eter -SFX b5 eler èleraient/n'q'm't's' eler -SFX b5 ecer èce/n'j'm't' ecer -SFX b5 emer ème/n'j'm't' emer -SFX b5 ener ène/n'j'm't' ener -SFX b5 eper èpe/n'j'm't' eper -SFX b5 erer ère/n'j'm't' erer -SFX b5 eser èse/n'j'm't' eser -SFX b5 ever ève/n'j'm't' ever -SFX b5 evrer èvre/n'j'm't' evrer -SFX b5 eter ète/n'j'm't' eter -SFX b5 eler èle/n'j'm't' eler -SFX b5 ecer èces/n'm't' ecer -SFX b5 emer èmes/n'm't' emer -SFX b5 ener ènes/n'm't' ener -SFX b5 eper èpes/n'm't' eper -SFX b5 erer ères/n'm't' erer -SFX b5 eser èses/n'm't' eser -SFX b5 ever èves/n'm't' ever -SFX b5 evrer èvres/n'm't' evrer -SFX b5 eter ètes/n'm't' eter -SFX b5 eler èles/n'm't' eler -SFX b5 ecer èce/n'q'm't's' ecer -SFX b5 emer ème/n'q'm't's' emer -SFX b5 ener ène/n'q'm't's' ener -SFX b5 eper èpe/n'q'm't's' eper -SFX b5 erer ère/n'q'm't's' erer -SFX b5 eser èse/n'q'm't's' eser -SFX b5 ever ève/n'q'm't's' ever -SFX b5 evrer èvre/n'q'm't's' evrer -SFX b5 eter ète/n'q'm't's' eter -SFX b5 eler èle/n'q'm't's' eler -SFX b5 er ions/n't' er -SFX b5 er iez/n'm' er -SFX b5 ecer ècent/n'q'm't's' ecer -SFX b5 emer èment/n'q'm't's' emer -SFX b5 ener ènent/n'q'm't's' ener -SFX b5 eper èpent/n'q'm't's' eper -SFX b5 erer èrent/n'q'm't's' erer -SFX b5 eser èsent/n'q'm't's' eser -SFX b5 ever èvent/n'q'm't's' ever -SFX b5 evrer èvrent/n'q'm't's' evrer -SFX b5 eter ètent/n'q'm't's' eter -SFX b5 eler èlent/n'q'm't's' eler -SFX b5 er asse/n'j'm't' [^c]er -SFX b5 cer çasse/n'j'm't' cer -SFX b5 er asses/n'm't' [^c]er -SFX b5 cer çasses/n'm't' cer -SFX b5 er ât/n'q'm't's' [^c]er -SFX b5 cer çât/n'q'm't's' cer -SFX b5 er assions/n't' [^c]er -SFX b5 cer çassions/n't' cer -SFX b5 er assiez/n'm' [^c]er -SFX b5 cer çassiez/n'm' cer -SFX b5 er assent/n'q'm't's' [^c]er -SFX b5 cer çassent/n'q'm't's' cer - -SFX c0 N 239 -SFX c0 er er er -SFX c0 er ant [^cg]er -SFX c0 écer éçant écer -SFX c0 éger égeant éger -SFX c0 er é er -SFX c0 ébrer èbre ébrer -SFX c0 écer èce écer -SFX c0 écher èche écher -SFX c0 écrer ècre écrer -SFX c0 éder ède éder -SFX c0 éger ège éger -SFX c0 égler ègle égler -SFX c0 égner ègne égner -SFX c0 égrer ègre égrer -SFX c0 éguer ègue éguer -SFX c0 éler èle éler -SFX c0 émer ème émer -SFX c0 éner ène éner -SFX c0 éper èpe éper -SFX c0 équer èque équer -SFX c0 érer ère érer -SFX c0 éser èse éser -SFX c0 éter ète éter -SFX c0 étrer ètre étrer -SFX c0 évrer èvre évrer -SFX c0 éyer èye éyer -SFX c0 ébrer èbres ébrer -SFX c0 écer èces écer -SFX c0 écher èches écher -SFX c0 écrer ècres écrer -SFX c0 éder èdes éder -SFX c0 éger èges éger -SFX c0 égler ègles égler -SFX c0 égner ègnes égner -SFX c0 égrer ègres égrer -SFX c0 éguer ègues éguer -SFX c0 éler èles éler -SFX c0 émer èmes émer -SFX c0 éner ènes éner -SFX c0 éper èpes éper -SFX c0 équer èques équer -SFX c0 érer ères érer -SFX c0 éser èses éser -SFX c0 éter ètes éter -SFX c0 étrer ètres étrer -SFX c0 évrer èvres évrer -SFX c0 éyer èyes éyer -SFX c0 ébrer èbre ébrer -SFX c0 écer èce écer -SFX c0 écher èche écher -SFX c0 écrer ècre écrer -SFX c0 éder ède éder -SFX c0 éger ège éger -SFX c0 égler ègle égler -SFX c0 égner ègne égner -SFX c0 égrer ègre égrer -SFX c0 éguer ègue éguer -SFX c0 éler èle éler -SFX c0 émer ème émer -SFX c0 éner ène éner -SFX c0 éper èpe éper -SFX c0 équer èque équer -SFX c0 érer ère érer -SFX c0 éser èse éser -SFX c0 éter ète éter -SFX c0 étrer ètre étrer -SFX c0 évrer èvre évrer -SFX c0 éyer èye éyer -SFX c0 er ons [^cg]er -SFX c0 écer éçons écer -SFX c0 éger égeons éger -SFX c0 er ez er -SFX c0 ébrer èbrent ébrer -SFX c0 écer ècent écer -SFX c0 écher èchent écher -SFX c0 écrer ècrent écrer -SFX c0 éder èdent éder -SFX c0 éger ègent éger -SFX c0 égler èglent égler -SFX c0 égner ègnent égner -SFX c0 égrer ègrent égrer -SFX c0 éguer èguent éguer -SFX c0 éler èlent éler -SFX c0 émer èment émer -SFX c0 éner ènent éner -SFX c0 éper èpent éper -SFX c0 équer èquent équer -SFX c0 érer èrent érer -SFX c0 éser èsent éser -SFX c0 éter ètent éter -SFX c0 étrer ètrent étrer -SFX c0 évrer èvrent évrer -SFX c0 éyer èyent éyer -SFX c0 er ais [^cg]er -SFX c0 écer éçais écer -SFX c0 éger égeais éger -SFX c0 er ais [^cg]er -SFX c0 écer éçais écer -SFX c0 éger égeais éger -SFX c0 er ait [^cg]er -SFX c0 écer éçait écer -SFX c0 éger égeait éger -SFX c0 er ions er -SFX c0 er iez er -SFX c0 er aient [^cg]er -SFX c0 écer éçaient écer -SFX c0 éger égeaient éger -SFX c0 er ai [^cg]er -SFX c0 écer éçai écer -SFX c0 éger égeai éger -SFX c0 er as [^cg]er -SFX c0 écer éças écer -SFX c0 éger égeas éger -SFX c0 er a [^cg]er -SFX c0 écer éça écer -SFX c0 éger égea éger -SFX c0 er âmes [^cg]er -SFX c0 écer éçâmes écer -SFX c0 éger égeâmes éger -SFX c0 er âtes [^cg]er -SFX c0 écer éçâtes écer -SFX c0 éger égeâtes éger -SFX c0 er èrent er -SFX c0 er erai er -SFX c0 er eras er -SFX c0 er era er -SFX c0 er erons er -SFX c0 er erez er -SFX c0 er eront er -SFX c0 er erais er -SFX c0 er erais er -SFX c0 er erait er -SFX c0 er erions er -SFX c0 er eriez er -SFX c0 er eraient er -SFX c0 ébrer èbre ébrer -SFX c0 écer èce écer -SFX c0 écher èche écher -SFX c0 écrer ècre écrer -SFX c0 éder ède éder -SFX c0 éger ège éger -SFX c0 égler ègle égler -SFX c0 égner ègne égner -SFX c0 égrer ègre égrer -SFX c0 éguer ègue éguer -SFX c0 éler èle éler -SFX c0 émer ème émer -SFX c0 éner ène éner -SFX c0 éper èpe éper -SFX c0 équer èque équer -SFX c0 érer ère érer -SFX c0 éser èse éser -SFX c0 éter ète éter -SFX c0 étrer ètre étrer -SFX c0 évrer èvre évrer -SFX c0 éyer èye éyer -SFX c0 ébrer èbres ébrer -SFX c0 écer èces écer -SFX c0 écher èches écher -SFX c0 écrer ècres écrer -SFX c0 éder èdes éder -SFX c0 éger èges éger -SFX c0 égler ègles égler -SFX c0 égner ègnes égner -SFX c0 égrer ègres égrer -SFX c0 éguer ègues éguer -SFX c0 éler èles éler -SFX c0 émer èmes émer -SFX c0 éner ènes éner -SFX c0 éper èpes éper -SFX c0 équer èques équer -SFX c0 érer ères érer -SFX c0 éser èses éser -SFX c0 éter ètes éter -SFX c0 étrer ètres étrer -SFX c0 évrer èvres évrer -SFX c0 éyer èyes éyer -SFX c0 ébrer èbre ébrer -SFX c0 écer èce écer -SFX c0 écher èche écher -SFX c0 écrer ècre écrer -SFX c0 éder ède éder -SFX c0 éger ège éger -SFX c0 égler ègle égler -SFX c0 égner ègne égner -SFX c0 égrer ègre égrer -SFX c0 éguer ègue éguer -SFX c0 éler èle éler -SFX c0 émer ème émer -SFX c0 éner ène éner -SFX c0 éper èpe éper -SFX c0 équer èque équer -SFX c0 érer ère érer -SFX c0 éser èse éser -SFX c0 éter ète éter -SFX c0 étrer ètre étrer -SFX c0 évrer èvre évrer -SFX c0 éyer èye éyer -SFX c0 er ions er -SFX c0 er iez er -SFX c0 ébrer èbrent ébrer -SFX c0 écer ècent écer -SFX c0 écher èchent écher -SFX c0 écrer ècrent écrer -SFX c0 éder èdent éder -SFX c0 éger ègent éger -SFX c0 égler èglent égler -SFX c0 égner ègnent égner -SFX c0 égrer ègrent égrer -SFX c0 éguer èguent éguer -SFX c0 éler èlent éler -SFX c0 émer èment émer -SFX c0 éner ènent éner -SFX c0 éper èpent éper -SFX c0 équer èquent équer -SFX c0 érer èrent érer -SFX c0 éser èsent éser -SFX c0 éter ètent éter -SFX c0 étrer ètrent étrer -SFX c0 évrer èvrent évrer -SFX c0 éyer èyent éyer -SFX c0 er asse [^cg]er -SFX c0 écer éçasse écer -SFX c0 éger égeasse éger -SFX c0 er asses [^cg]er -SFX c0 écer éçasses écer -SFX c0 éger égeasses éger -SFX c0 er ât [^cg]er -SFX c0 écer éçât écer -SFX c0 éger égeât éger -SFX c0 er assions [^cg]er -SFX c0 écer éçassions écer -SFX c0 éger égeassions éger -SFX c0 er assiez [^cg]er -SFX c0 écer éçassiez écer -SFX c0 éger égeassiez éger -SFX c0 er assent [^cg]er -SFX c0 écer éçassent écer -SFX c0 éger égeassent éger - -SFX c1 Y 239 -SFX c1 r r/n'q'd' er -SFX c1 er ant/n'q' [^cg]er -SFX c1 écer éçant/n'q' écer -SFX c1 éger égeant/n'q' éger -SFX c1 er é/q' er -SFX c1 ébrer èbre/n'j' ébrer -SFX c1 écer èce/n'j' écer -SFX c1 écher èche/n'j' écher -SFX c1 écrer ècre/n'j' écrer -SFX c1 éder ède/n'j' éder -SFX c1 éger ège/n'j' éger -SFX c1 égler ègle/n'j' égler -SFX c1 égner ègne/n'j' égner -SFX c1 égrer ègre/n'j' égrer -SFX c1 éguer ègue/n'j' éguer -SFX c1 éler èle/n'j' éler -SFX c1 émer ème/n'j' émer -SFX c1 éner ène/n'j' éner -SFX c1 éper èpe/n'j' éper -SFX c1 équer èque/n'j' équer -SFX c1 érer ère/n'j' érer -SFX c1 éser èse/n'j' éser -SFX c1 éter ète/n'j' éter -SFX c1 étrer ètre/n'j' étrer -SFX c1 évrer èvre/n'j' évrer -SFX c1 éyer èye/n'j' éyer -SFX c1 ébrer èbres/n' ébrer -SFX c1 écer èces/n' écer -SFX c1 écher èches/n' écher -SFX c1 écrer ècres/n' écrer -SFX c1 éder èdes/n' éder -SFX c1 éger èges/n' éger -SFX c1 égler ègles/n' égler -SFX c1 égner ègnes/n' égner -SFX c1 égrer ègres/n' égrer -SFX c1 éguer ègues/n' éguer -SFX c1 éler èles/n' éler -SFX c1 émer èmes/n' émer -SFX c1 éner ènes/n' éner -SFX c1 éper èpes/n' éper -SFX c1 équer èques/n' équer -SFX c1 érer ères/n' érer -SFX c1 éser èses/n' éser -SFX c1 éter ètes/n' éter -SFX c1 étrer ètres/n' étrer -SFX c1 évrer èvres/n' évrer -SFX c1 éyer èyes/n' éyer -SFX c1 ébrer èbre/n'q' ébrer -SFX c1 écer èce/n'q' écer -SFX c1 écher èche/n'q' écher -SFX c1 écrer ècre/n'q' écrer -SFX c1 éder ède/n'q' éder -SFX c1 éger ège/n'q' éger -SFX c1 égler ègle/n'q' égler -SFX c1 égner ègne/n'q' égner -SFX c1 égrer ègre/n'q' égrer -SFX c1 éguer ègue/n'q' éguer -SFX c1 éler èle/n'q' éler -SFX c1 émer ème/n'q' émer -SFX c1 éner ène/n'q' éner -SFX c1 éper èpe/n'q' éper -SFX c1 équer èque/n'q' équer -SFX c1 érer ère/n'q' érer -SFX c1 éser èse/n'q' éser -SFX c1 éter ète/n'q' éter -SFX c1 étrer ètre/n'q' étrer -SFX c1 évrer èvre/n'q' évrer -SFX c1 éyer èye/n'q' éyer -SFX c1 er ons/n' [^cg]er -SFX c1 écer éçons/n' écer -SFX c1 éger égeons/n' éger -SFX c1 er ez/n' er -SFX c1 ébrer èbrent/n'q' ébrer -SFX c1 écer ècent/n'q' écer -SFX c1 écher èchent/n'q' écher -SFX c1 écrer ècrent/n'q' écrer -SFX c1 éder èdent/n'q' éder -SFX c1 éger ègent/n'q' éger -SFX c1 égler èglent/n'q' égler -SFX c1 égner ègnent/n'q' égner -SFX c1 égrer ègrent/n'q' égrer -SFX c1 éguer èguent/n'q' éguer -SFX c1 éler èlent/n'q' éler -SFX c1 émer èment/n'q' émer -SFX c1 éner ènent/n'q' éner -SFX c1 éper èpent/n'q' éper -SFX c1 équer èquent/n'q' équer -SFX c1 érer èrent/n'q' érer -SFX c1 éser èsent/n'q' éser -SFX c1 éter ètent/n'q' éter -SFX c1 étrer ètrent/n'q' étrer -SFX c1 évrer èvrent/n'q' évrer -SFX c1 éyer èyent/n'q' éyer -SFX c1 er ais/n'j' [^cg]er -SFX c1 écer éçais/n'j' écer -SFX c1 éger égeais/n'j' éger -SFX c1 er ais/n' [^cg]er -SFX c1 écer éçais/n' écer -SFX c1 éger égeais/n' éger -SFX c1 er ait/n'q' [^cg]er -SFX c1 écer éçait/n'q' écer -SFX c1 éger égeait/n'q' éger -SFX c1 er ions/n' er -SFX c1 er iez/n' er -SFX c1 er aient/n'q' [^cg]er -SFX c1 écer éçaient/n'q' écer -SFX c1 éger égeaient/n'q' éger -SFX c1 er ai/n'j' [^cg]er -SFX c1 écer éçai/n'j' écer -SFX c1 éger égeai/n'j' éger -SFX c1 er as/n' [^cg]er -SFX c1 écer éças/n' écer -SFX c1 éger égeas/n' éger -SFX c1 er a/n'q' [^cg]er -SFX c1 écer éça/n'q' écer -SFX c1 éger égea/n'q' éger -SFX c1 er âmes/n' [^cg]er -SFX c1 écer éçâmes/n' écer -SFX c1 éger égeâmes/n' éger -SFX c1 er âtes/n' [^cg]er -SFX c1 écer éçâtes/n' écer -SFX c1 éger égeâtes/n' éger -SFX c1 er èrent/n'q' er -SFX c1 er erai/n'j' er -SFX c1 er eras/n' er -SFX c1 er era/n'q' er -SFX c1 er erons/n' er -SFX c1 er erez/n' er -SFX c1 er eront/n'q' er -SFX c1 er erais/n'j' er -SFX c1 er erais/n' er -SFX c1 er erait/n'q' er -SFX c1 er erions/n' er -SFX c1 er eriez/n' er -SFX c1 er eraient/n'q' er -SFX c1 ébrer èbre/n'j' ébrer -SFX c1 écer èce/n'j' écer -SFX c1 écher èche/n'j' écher -SFX c1 écrer ècre/n'j' écrer -SFX c1 éder ède/n'j' éder -SFX c1 éger ège/n'j' éger -SFX c1 égler ègle/n'j' égler -SFX c1 égner ègne/n'j' égner -SFX c1 égrer ègre/n'j' égrer -SFX c1 éguer ègue/n'j' éguer -SFX c1 éler èle/n'j' éler -SFX c1 émer ème/n'j' émer -SFX c1 éner ène/n'j' éner -SFX c1 éper èpe/n'j' éper -SFX c1 équer èque/n'j' équer -SFX c1 érer ère/n'j' érer -SFX c1 éser èse/n'j' éser -SFX c1 éter ète/n'j' éter -SFX c1 étrer ètre/n'j' étrer -SFX c1 évrer èvre/n'j' évrer -SFX c1 éyer èye/n'j' éyer -SFX c1 ébrer èbres/n' ébrer -SFX c1 écer èces/n' écer -SFX c1 écher èches/n' écher -SFX c1 écrer ècres/n' écrer -SFX c1 éder èdes/n' éder -SFX c1 éger èges/n' éger -SFX c1 égler ègles/n' égler -SFX c1 égner ègnes/n' égner -SFX c1 égrer ègres/n' égrer -SFX c1 éguer ègues/n' éguer -SFX c1 éler èles/n' éler -SFX c1 émer èmes/n' émer -SFX c1 éner ènes/n' éner -SFX c1 éper èpes/n' éper -SFX c1 équer èques/n' équer -SFX c1 érer ères/n' érer -SFX c1 éser èses/n' éser -SFX c1 éter ètes/n' éter -SFX c1 étrer ètres/n' étrer -SFX c1 évrer èvres/n' évrer -SFX c1 éyer èyes/n' éyer -SFX c1 ébrer èbre/n'q' ébrer -SFX c1 écer èce/n'q' écer -SFX c1 écher èche/n'q' écher -SFX c1 écrer ècre/n'q' écrer -SFX c1 éder ède/n'q' éder -SFX c1 éger ège/n'q' éger -SFX c1 égler ègle/n'q' égler -SFX c1 égner ègne/n'q' égner -SFX c1 égrer ègre/n'q' égrer -SFX c1 éguer ègue/n'q' éguer -SFX c1 éler èle/n'q' éler -SFX c1 émer ème/n'q' émer -SFX c1 éner ène/n'q' éner -SFX c1 éper èpe/n'q' éper -SFX c1 équer èque/n'q' équer -SFX c1 érer ère/n'q' érer -SFX c1 éser èse/n'q' éser -SFX c1 éter ète/n'q' éter -SFX c1 étrer ètre/n'q' étrer -SFX c1 évrer èvre/n'q' évrer -SFX c1 éyer èye/n'q' éyer -SFX c1 er ions/n' er -SFX c1 er iez/n' er -SFX c1 ébrer èbrent/n'q' ébrer -SFX c1 écer ècent/n'q' écer -SFX c1 écher èchent/n'q' écher -SFX c1 écrer ècrent/n'q' écrer -SFX c1 éder èdent/n'q' éder -SFX c1 éger ègent/n'q' éger -SFX c1 égler èglent/n'q' égler -SFX c1 égner ègnent/n'q' égner -SFX c1 égrer ègrent/n'q' égrer -SFX c1 éguer èguent/n'q' éguer -SFX c1 éler èlent/n'q' éler -SFX c1 émer èment/n'q' émer -SFX c1 éner ènent/n'q' éner -SFX c1 éper èpent/n'q' éper -SFX c1 équer èquent/n'q' équer -SFX c1 érer èrent/n'q' érer -SFX c1 éser èsent/n'q' éser -SFX c1 éter ètent/n'q' éter -SFX c1 étrer ètrent/n'q' étrer -SFX c1 évrer èvrent/n'q' évrer -SFX c1 éyer èyent/n'q' éyer -SFX c1 er asse/n'j' [^cg]er -SFX c1 écer éçasse/n'j' écer -SFX c1 éger égeasse/n'j' éger -SFX c1 er asses/n' [^cg]er -SFX c1 écer éçasses/n' écer -SFX c1 éger égeasses/n' éger -SFX c1 er ât/n'q' [^cg]er -SFX c1 écer éçât/n'q' écer -SFX c1 éger égeât/n'q' éger -SFX c1 er assions/n' [^cg]er -SFX c1 écer éçassions/n' écer -SFX c1 éger égeassions/n' éger -SFX c1 er assiez/n' [^cg]er -SFX c1 écer éçassiez/n' écer -SFX c1 éger égeassiez/n' éger -SFX c1 er assent/n'q' [^cg]er -SFX c1 écer éçassent/n'q' écer -SFX c1 éger égeassent/n'q' éger - -SFX c2 Y 239 -SFX c2 er er/n'q'd'l'm't's' er -SFX c2 er ant/n'q'l'm't's' [^cg]er -SFX c2 écer éçant/n'q'l'm't's' écer -SFX c2 éger égeant/n'q'l'm't's' éger -SFX c2 er é/q' er -SFX c2 ébrer èbre/n'q'j'l't' ébrer -SFX c2 écer èce/n'q'j'l't' écer -SFX c2 écher èche/n'q'j'l't' écher -SFX c2 écrer ècre/n'q'j'l't' écrer -SFX c2 éder ède/n'q'j'l't' éder -SFX c2 éger ège/n'q'j'l't' éger -SFX c2 égler ègle/n'q'j'l't' égler -SFX c2 égner ègne/n'q'j'l't' égner -SFX c2 égrer ègre/n'q'j'l't' égrer -SFX c2 éguer ègue/n'q'j'l't' éguer -SFX c2 éler èle/n'q'j'l't' éler -SFX c2 émer ème/n'q'j'l't' émer -SFX c2 éner ène/n'q'j'l't' éner -SFX c2 éper èpe/n'q'j'l't' éper -SFX c2 équer èque/n'q'j'l't' équer -SFX c2 érer ère/n'q'j'l't' érer -SFX c2 éser èse/n'q'j'l't' éser -SFX c2 éter ète/n'q'j'l't' éter -SFX c2 étrer ètre/n'q'j'l't' étrer -SFX c2 évrer èvre/n'q'j'l't' évrer -SFX c2 éyer èye/n'q'j'l't' éyer -SFX c2 ébrer èbres/n'q'l'm' ébrer -SFX c2 écer èces/n'q'l'm' écer -SFX c2 écher èches/n'q'l'm' écher -SFX c2 écrer ècres/n'q'l'm' écrer -SFX c2 éder èdes/n'q'l'm' éder -SFX c2 éger èges/n'q'l'm' éger -SFX c2 égler ègles/n'q'l'm' égler -SFX c2 égner ègnes/n'q'l'm' égner -SFX c2 égrer ègres/n'q'l'm' égrer -SFX c2 éguer ègues/n'q'l'm' éguer -SFX c2 éler èles/n'q'l'm' éler -SFX c2 émer èmes/n'q'l'm' émer -SFX c2 éner ènes/n'q'l'm' éner -SFX c2 éper èpes/n'q'l'm' éper -SFX c2 équer èques/n'q'l'm' équer -SFX c2 érer ères/n'q'l'm' érer -SFX c2 éser èses/n'q'l'm' éser -SFX c2 éter ètes/n'q'l'm' éter -SFX c2 étrer ètres/n'q'l'm' étrer -SFX c2 évrer èvres/n'q'l'm' évrer -SFX c2 éyer èyes/n'q'l'm' éyer -SFX c2 ébrer èbre/n'q'l'm't's' ébrer -SFX c2 écer èce/n'q'l'm't's' écer -SFX c2 écher èche/n'q'l'm't's' écher -SFX c2 écrer ècre/n'q'l'm't's' écrer -SFX c2 éder ède/n'q'l'm't's' éder -SFX c2 éger ège/n'q'l'm't's' éger -SFX c2 égler ègle/n'q'l'm't's' égler -SFX c2 égner ègne/n'q'l'm't's' égner -SFX c2 égrer ègre/n'q'l'm't's' égrer -SFX c2 éguer ègue/n'q'l'm't's' éguer -SFX c2 éler èle/n'q'l'm't's' éler -SFX c2 émer ème/n'q'l'm't's' émer -SFX c2 éner ène/n'q'l'm't's' éner -SFX c2 éper èpe/n'q'l'm't's' éper -SFX c2 équer èque/n'q'l'm't's' équer -SFX c2 érer ère/n'q'l'm't's' érer -SFX c2 éser èse/n'q'l'm't's' éser -SFX c2 éter ète/n'q'l'm't's' éter -SFX c2 étrer ètre/n'q'l'm't's' étrer -SFX c2 évrer èvre/n'q'l'm't's' évrer -SFX c2 éyer èye/n'q'l'm't' éyer -SFX c2 er ons/n'q'l't' [^cg]er -SFX c2 écer éçons/n'q'l't' écer -SFX c2 éger égeons/n'q'l't' éger -SFX c2 er ez/n'q'l'm' er -SFX c2 ébrer èbrent/n'q'l'm't's' ébrer -SFX c2 écer ècent/n'q'l'm't's' écer -SFX c2 écher èchent/n'q'l'm't's' écher -SFX c2 écrer ècrent/n'q'l'm't's' écrer -SFX c2 éder èdent/n'q'l'm't's' éder -SFX c2 éger ègent/n'q'l'm't's' éger -SFX c2 égler èglent/n'q'l'm't's' égler -SFX c2 égner ègnent/n'q'l'm't's' égner -SFX c2 égrer ègrent/n'q'l'm't's' égrer -SFX c2 éguer èguent/n'q'l'm't's' éguer -SFX c2 éler èlent/n'q'l'm't's' éler -SFX c2 émer èment/n'q'l'm't's' émer -SFX c2 éner ènent/n'q'l'm't's' éner -SFX c2 éper èpent/n'q'l'm't's' éper -SFX c2 équer èquent/n'q'l'm't's' équer -SFX c2 érer èrent/n'q'l'm't's' érer -SFX c2 éser èsent/n'q'l'm't's' éser -SFX c2 éter ètent/n'q'l'm't's' éter -SFX c2 étrer ètrent/n'q'l'm't's' étrer -SFX c2 évrer èvrent/n'q'l'm't's' évrer -SFX c2 éyer èyent/n'q'l'm't's' éyer -SFX c2 er ais/n'q'j'l't' [^cg]er -SFX c2 écer éçais/n'q'j'l't' écer -SFX c2 éger égeais/n'q'j'l't' éger -SFX c2 er ais/n'q'l'm' [^cg]er -SFX c2 écer éçais/n'q'l'm' écer -SFX c2 éger égeais/n'q'l'm' éger -SFX c2 er ait/n'q'l'm't's' [^cg]er -SFX c2 écer éçait/n'q'l'm't's' écer -SFX c2 éger égeait/n'q'l'm't's' éger -SFX c2 er ions/n'q'l't' er -SFX c2 er iez/n'q'l'm' er -SFX c2 er aient/n'q'l'm't's' [^cg]er -SFX c2 écer éçaient/n'q'l'm't's' écer -SFX c2 éger égeaient/n'q'l'm't's' éger -SFX c2 er ai/n'q'j'l't' [^cg]er -SFX c2 écer éçai/n'q'j'l't' écer -SFX c2 éger égeai/n'q'j'l't' éger -SFX c2 er as/n'q'l'm' [^cg]er -SFX c2 écer éças/n'q'l'm' écer -SFX c2 éger égeas/n'q'l'm' éger -SFX c2 er a/n'q'l'm't's' [^cg]er -SFX c2 écer éça/n'q'l'm't's' écer -SFX c2 éger égea/n'q'l'm't's' éger -SFX c2 er âmes/n'q'l't' [^cg]er -SFX c2 écer éçâmes/n'q'l't' écer -SFX c2 éger égeâmes/n'q'l't' éger -SFX c2 er âtes/n'q'l'm' [^cg]er -SFX c2 écer éçâtes/n'q'l'm' écer -SFX c2 éger égeâtes/n'q'l'm' éger -SFX c2 er èrent/n'q'l'm't's' er -SFX c2 er erai/n'q'j'l't' er -SFX c2 er eras/n'q'l'm' er -SFX c2 er era/n'q'l'm't's' er -SFX c2 er erons/n'q'l't' er -SFX c2 er erez/n'q'l'm' er -SFX c2 er eront/n'q'l'm't's' er -SFX c2 er erais/n'q'j'l't' er -SFX c2 er erais/n'q'l'm' er -SFX c2 er erait/n'q'l'm't's' er -SFX c2 er erions/n'q'l't' er -SFX c2 er eriez/n'q'l'm' er -SFX c2 er eraient/n'q'l'm't's' er -SFX c2 ébrer èbre/n'j'l't' ébrer -SFX c2 écer èce/n'j'l't' écer -SFX c2 écher èche/n'j'l't' écher -SFX c2 écrer ècre/n'j'l't' écrer -SFX c2 éder ède/n'j'l't' éder -SFX c2 éger ège/n'j'l't' éger -SFX c2 égler ègle/n'j'l't' égler -SFX c2 égner ègne/n'j'l't' égner -SFX c2 égrer ègre/n'j'l't' égrer -SFX c2 éguer ègue/n'j'l't' éguer -SFX c2 éler èle/n'j'l't' éler -SFX c2 émer ème/n'j'l't' émer -SFX c2 éner ène/n'j'l't' éner -SFX c2 éper èpe/n'j'l't' éper -SFX c2 équer èque/n'j'l't' équer -SFX c2 érer ère/n'j'l't' érer -SFX c2 éser èse/n'j'l't' éser -SFX c2 éter ète/n'j'l't' éter -SFX c2 étrer ètre/n'j'l't' étrer -SFX c2 évrer èvre/n'j'l't' évrer -SFX c2 éyer èye/n'j'l't' éyer -SFX c2 ébrer èbres/n'l'm' ébrer -SFX c2 écer èces/n'l'm' écer -SFX c2 écher èches/n'l'm' écher -SFX c2 écrer ècres/n'l'm' écrer -SFX c2 éder èdes/n'l'm' éder -SFX c2 éger èges/n'l'm' éger -SFX c2 égler ègles/n'l'm' égler -SFX c2 égner ègnes/n'l'm' égner -SFX c2 égrer ègres/n'l'm' égrer -SFX c2 éguer ègues/n'l'm' éguer -SFX c2 éler èles/n'l'm' éler -SFX c2 émer èmes/n'l'm' émer -SFX c2 éner ènes/n'l'm' éner -SFX c2 éper èpes/n'l'm' éper -SFX c2 équer èques/n'l'm' équer -SFX c2 érer ères/n'l'm' érer -SFX c2 éser èses/n'l'm' éser -SFX c2 éter ètes/n'l'm' éter -SFX c2 étrer ètres/n'l'm' étrer -SFX c2 évrer èvres/n'l'm' évrer -SFX c2 éyer èyes/n'l'm' éyer -SFX c2 ébrer èbre/n'l'm't's' ébrer -SFX c2 écer èce/n'l'm't's' écer -SFX c2 écher èche/n'l'm't's' écher -SFX c2 écrer ècre/n'l'm't's' écrer -SFX c2 éder ède/n'l'm't's' éder -SFX c2 éger ège/n'l'm't's' éger -SFX c2 égler ègle/n'l'm't's' égler -SFX c2 égner ègne/n'l'm't's' égner -SFX c2 égrer ègre/n'l'm't's' égrer -SFX c2 éguer ègue/n'l'm't's' éguer -SFX c2 éler èle/n'l'm't's' éler -SFX c2 émer ème/n'l'm't's' émer -SFX c2 éner ène/n'l'm't's' éner -SFX c2 éper èpe/n'l'm't's' éper -SFX c2 équer èque/n'l'm't's' équer -SFX c2 érer ère/n'l'm't's' érer -SFX c2 éser èse/n'l'm't's' éser -SFX c2 éter ète/n'l'm't's' éter -SFX c2 étrer ètre/n'l'm't's' étrer -SFX c2 évrer èvre/n'l'm't's' évrer -SFX c2 éyer èye/n'l'm't's' éyer -SFX c2 er ions/n'l't' er -SFX c2 er iez/n'l'm' er -SFX c2 ébrer èbrent/n'l'm't's' ébrer -SFX c2 écer ècent/n'l'm't's' écer -SFX c2 écher èchent/n'l'm't's' écher -SFX c2 écrer ècrent/n'l'm't's' écrer -SFX c2 éder èdent/n'l'm't's' éder -SFX c2 éger ègent/n'l'm't's' éger -SFX c2 égler èglent/n'l'm't's' égler -SFX c2 égner ègnent/n'l'm't's' égner -SFX c2 égrer ègrent/n'l'm't's' égrer -SFX c2 éguer èguent/n'l'm't's' éguer -SFX c2 éler èlent/n'l'm't's' éler -SFX c2 émer èment/n'l'm't's' émer -SFX c2 éner ènent/n'l'm't's' éner -SFX c2 éper èpent/n'l'm't's' éper -SFX c2 équer èquent/n'l'm't's' équer -SFX c2 érer èrent/n'l'm't's' érer -SFX c2 éser èsent/n'l'm't's' éser -SFX c2 éter ètent/n'l'm't's' éter -SFX c2 étrer ètrent/n'l'm't's' étrer -SFX c2 évrer èvrent/n'l'm't's' évrer -SFX c2 éyer èyent/n'l'm't's' éyer -SFX c2 er asse/n'q'j'l't' [^cg]er -SFX c2 écer éçasse/n'q'j'l't' écer -SFX c2 éger égeasse/n'q'j'l't' éger -SFX c2 er asses/n'q'l'm' [^cg]er -SFX c2 écer éçasses/n'q'l'm' écer -SFX c2 éger égeasses/n'q'l'm' éger -SFX c2 er ât/n'q'l'm't's' [^cg]er -SFX c2 écer éçât/n'q'l'm't's' écer -SFX c2 éger égeât/n'q'l'm't's' éger -SFX c2 er assions/n'q'l't' [^cg]er -SFX c2 écer éçassions/n'q'l't' écer -SFX c2 éger égeassions/n'q'l't' éger -SFX c2 er assiez/n'q'l'm' [^cg]er -SFX c2 écer éçassiez/n'q'l'm' écer -SFX c2 éger égeassiez/n'q'l'm' éger -SFX c2 er assent/n'q'l'm't's' [^cg]er -SFX c2 écer éçassent/n'q'l'm't's' écer -SFX c2 éger égeassent/n'q'l'm't's' éger - -SFX c3 Y 239 -SFX c3 er er/m't's' er -SFX c3 er ant/m't's' [^cg]er -SFX c3 écer éçant/m't's' écer -SFX c3 éger égeant/m't's' éger -SFX c3 er é er -SFX c3 ébrer èbre/m' ébrer -SFX c3 écer èce/m' écer -SFX c3 écher èche/m' écher -SFX c3 écrer ècre/m' écrer -SFX c3 éder ède/m' éder -SFX c3 éger ège/m' éger -SFX c3 égler ègle/m' égler -SFX c3 égner ègne/m' égner -SFX c3 égrer ègre/m' égrer -SFX c3 éguer ègue/m' éguer -SFX c3 éler èle/m' éler -SFX c3 émer ème/m' émer -SFX c3 éner ène/m' éner -SFX c3 éper èpe/m' éper -SFX c3 équer èque/m' équer -SFX c3 érer ère/m' érer -SFX c3 éser èse/m' éser -SFX c3 éter ète/m' éter -SFX c3 étrer ètre/m' étrer -SFX c3 évrer èvre/m' évrer -SFX c3 éyer èye/m' éyer -SFX c3 ébrer èbres/t' ébrer -SFX c3 écer èces/t' écer -SFX c3 écher èches/t' écher -SFX c3 écrer ècres/t' écrer -SFX c3 éder èdes/t' éder -SFX c3 éger èges/t' éger -SFX c3 égler ègles/t' égler -SFX c3 égner ègnes/t' égner -SFX c3 égrer ègres/t' égrer -SFX c3 éguer ègues/t' éguer -SFX c3 éler èles/t' éler -SFX c3 émer èmes/t' émer -SFX c3 éner ènes/t' éner -SFX c3 éper èpes/t' éper -SFX c3 équer èques/t' équer -SFX c3 érer ères/t' érer -SFX c3 éser èses/t' éser -SFX c3 éter ètes/t' éter -SFX c3 étrer ètres/t' étrer -SFX c3 évrer èvres/t' évrer -SFX c3 éyer èyes/t' éyer -SFX c3 ébrer èbre/s' ébrer -SFX c3 écer èce/s' écer -SFX c3 écher èche/s' écher -SFX c3 écrer ècre/s' écrer -SFX c3 éder ède/s' éder -SFX c3 éger ège/s' éger -SFX c3 égler ègle/s' égler -SFX c3 égner ègne/s' égner -SFX c3 égrer ègre/s' égrer -SFX c3 éguer ègue/s' éguer -SFX c3 éler èle/s' éler -SFX c3 émer ème/s' émer -SFX c3 éner ène/s' éner -SFX c3 éper èpe/s' éper -SFX c3 équer èque/s' équer -SFX c3 érer ère/s' érer -SFX c3 éser èse/s' éser -SFX c3 éter ète/s' éter -SFX c3 étrer ètre/s' étrer -SFX c3 évrer èvre/s' évrer -SFX c3 éyer èye/s' éyer -SFX c3 er ons [^cg]er -SFX c3 écer éçons écer -SFX c3 éger égeons éger -SFX c3 er ez er -SFX c3 ébrer èbrent/s' ébrer -SFX c3 écer ècent/s' écer -SFX c3 écher èchent/s' écher -SFX c3 écrer ècrent/s' écrer -SFX c3 éder èdent/s' éder -SFX c3 éger ègent/s' éger -SFX c3 égler èglent/s' égler -SFX c3 égner ègnent/s' égner -SFX c3 égrer ègrent/s' égrer -SFX c3 éguer èguent/s' éguer -SFX c3 éler èlent/s' éler -SFX c3 émer èment/s' émer -SFX c3 éner ènent/s' éner -SFX c3 éper èpent/s' éper -SFX c3 équer èquent/s' équer -SFX c3 érer èrent/s' érer -SFX c3 éser èsent/s' éser -SFX c3 éter ètent/s' éter -SFX c3 étrer ètrent/s' étrer -SFX c3 évrer èvrent/s' évrer -SFX c3 éyer èyent/s' éyer -SFX c3 er ais/m' [^cg]er -SFX c3 écer éçais/m' écer -SFX c3 éger égeais/m' éger -SFX c3 er ais/t' [^cg]er -SFX c3 écer éçais/t' écer -SFX c3 éger égeais/t' éger -SFX c3 er ait/s' [^cg]er -SFX c3 écer éçait/s' écer -SFX c3 éger égeait/s' éger -SFX c3 er ions er -SFX c3 er iez er -SFX c3 er aient/s' [^cg]er -SFX c3 écer éçaient/s' écer -SFX c3 éger égeaient/s' éger -SFX c3 er ai/m' [^cg]er -SFX c3 écer éçai/m' écer -SFX c3 éger égeai/m' éger -SFX c3 er as/t' [^cg]er -SFX c3 écer éças/t' écer -SFX c3 éger égeas/t' éger -SFX c3 er a/s' [^cg]er -SFX c3 écer éça/s' écer -SFX c3 éger égea/s' éger -SFX c3 er âmes [^cg]er -SFX c3 écer éçâmes écer -SFX c3 éger égeâmes éger -SFX c3 er âtes [^cg]er -SFX c3 écer éçâtes écer -SFX c3 éger égeâtes éger -SFX c3 er èrent/s' er -SFX c3 er erai/m' er -SFX c3 er eras/t' er -SFX c3 er era/s' er -SFX c3 er erons er -SFX c3 er erez er -SFX c3 er eront/s' er -SFX c3 er erais/m' er -SFX c3 er erais/t' er -SFX c3 er erait/s' er -SFX c3 er erions er -SFX c3 er eriez er -SFX c3 er eraient/s' er -SFX c3 ébrer èbre/m' ébrer -SFX c3 écer èce/m' écer -SFX c3 écher èche/m' écher -SFX c3 écrer ècre/m' écrer -SFX c3 éder ède/m' éder -SFX c3 éger ège/m' éger -SFX c3 égler ègle/m' égler -SFX c3 égner ègne/m' égner -SFX c3 égrer ègre/m' égrer -SFX c3 éguer ègue/m' éguer -SFX c3 éler èle/m' éler -SFX c3 émer ème/m' émer -SFX c3 éner ène/m' éner -SFX c3 éper èpe/m' éper -SFX c3 équer èque/m' équer -SFX c3 érer ère/m' érer -SFX c3 éser èse/m' éser -SFX c3 éter ète/m' éter -SFX c3 étrer ètre/m' étrer -SFX c3 évrer èvre/m' évrer -SFX c3 éyer èye/m' éyer -SFX c3 ébrer èbres/t' ébrer -SFX c3 écer èces/t' écer -SFX c3 écher èches/t' écher -SFX c3 écrer ècres/t' écrer -SFX c3 éder èdes/t' éder -SFX c3 éger èges/t' éger -SFX c3 égler ègles/t' égler -SFX c3 égner ègnes/t' égner -SFX c3 égrer ègres/t' égrer -SFX c3 éguer ègues/t' éguer -SFX c3 éler èles/t' éler -SFX c3 émer èmes/t' émer -SFX c3 éner ènes/t' éner -SFX c3 éper èpes/t' éper -SFX c3 équer èques/t' équer -SFX c3 érer ères/t' érer -SFX c3 éser èses/t' éser -SFX c3 éter ètes/t' éter -SFX c3 étrer ètres/t' étrer -SFX c3 évrer èvres/t' évrer -SFX c3 éyer èyes/t' éyer -SFX c3 ébrer èbre/s' ébrer -SFX c3 écer èce/s' écer -SFX c3 écher èche/s' écher -SFX c3 écrer ècre/s' écrer -SFX c3 éder ède/s' éder -SFX c3 éger ège/s' éger -SFX c3 égler ègle/s' égler -SFX c3 égner ègne/s' égner -SFX c3 égrer ègre/s' égrer -SFX c3 éguer ègue/s' éguer -SFX c3 éler èle/s' éler -SFX c3 émer ème/s' émer -SFX c3 éner ène/s' éner -SFX c3 éper èpe/s' éper -SFX c3 équer èque/s' équer -SFX c3 érer ère/s' érer -SFX c3 éser èse/s' éser -SFX c3 éter ète/s' éter -SFX c3 étrer ètre/s' étrer -SFX c3 évrer èvre/s' évrer -SFX c3 éyer èye/s' éyer -SFX c3 er ions er -SFX c3 er iez er -SFX c3 ébrer èbrent/s' ébrer -SFX c3 écer ècent/s' écer -SFX c3 écher èchent/s' écher -SFX c3 écrer ècrent/s' écrer -SFX c3 éder èdent/s' éder -SFX c3 éger ègent/s' éger -SFX c3 égler èglent/s' égler -SFX c3 égner ègnent/s' égner -SFX c3 égrer ègrent/s' égrer -SFX c3 éguer èguent/s' éguer -SFX c3 éler èlent/s' éler -SFX c3 émer èment/s' émer -SFX c3 éner ènent/s' éner -SFX c3 éper èpent/s' éper -SFX c3 équer èquent/s' équer -SFX c3 érer èrent/s' érer -SFX c3 éser èsent/s' éser -SFX c3 éter ètent/s' éter -SFX c3 étrer ètrent/s' étrer -SFX c3 évrer èvrent/s' évrer -SFX c3 éyer èyent/s' éyer -SFX c3 er asse/m' [^cg]er -SFX c3 écer éçasse/m' écer -SFX c3 éger égeasse/m' éger -SFX c3 er asses/t' [^cg]er -SFX c3 écer éçasses/t' écer -SFX c3 éger égeasses/t' éger -SFX c3 er ât/s' [^cg]er -SFX c3 écer éçât/s' écer -SFX c3 éger égeât/s' éger -SFX c3 er assions [^cg]er -SFX c3 écer éçassions écer -SFX c3 éger égeassions éger -SFX c3 er assiez [^cg]er -SFX c3 écer éçassiez écer -SFX c3 éger égeassiez éger -SFX c3 er assent/s' [^cg]er -SFX c3 écer éçassent/s' écer -SFX c3 éger égeassent/s' éger - -SFX c4 Y 239 -SFX c4 er er/n'q'd'l'm't's' er -SFX c4 er ant/n'q'l'm't's' [^cg]er -SFX c4 écer éçant/n'q'l'm't's' écer -SFX c4 éger égeant/n'q'l'm't's' éger -SFX c4 er é/q' er -SFX c4 ébrer èbre/n'q'j'l'm't' ébrer -SFX c4 écer èce/n'q'j'l'm't' écer -SFX c4 écher èche/n'q'j'l'm't' écher -SFX c4 écrer ècre/n'q'j'l'm't' écrer -SFX c4 éder ède/n'q'j'l'm't' éder -SFX c4 éger ège/n'q'j'l'm't' éger -SFX c4 égler ègle/n'q'j'l'm't' égler -SFX c4 égner ègne/n'q'j'l'm't' égner -SFX c4 égrer ègre/n'q'j'l'm't' égrer -SFX c4 éguer ègue/n'q'j'l'm't' éguer -SFX c4 éler èle/n'q'j'l'm't' éler -SFX c4 émer ème/n'q'j'l'm't' émer -SFX c4 éner ène/n'q'j'l'm't' éner -SFX c4 éper èpe/n'q'j'l'm't' éper -SFX c4 équer èque/n'q'j'l'm't' équer -SFX c4 érer ère/n'q'j'l'm't' érer -SFX c4 éser èse/n'q'j'l'm't' éser -SFX c4 éter ète/n'q'j'l'm't' éter -SFX c4 étrer ètre/n'q'j'l'm't' étrer -SFX c4 évrer èvre/n'q'j'l'm't' évrer -SFX c4 éyer èye/n'q'j'l'm't' éyer -SFX c4 ébrer èbres/n'q'l'm't' ébrer -SFX c4 écer èces/n'q'l'm't' écer -SFX c4 écher èches/n'q'l'm't' écher -SFX c4 écrer ècres/n'q'l'm't' écrer -SFX c4 éder èdes/n'q'l'm't' éder -SFX c4 éger èges/n'q'l'm't' éger -SFX c4 égler ègles/n'q'l'm't' égler -SFX c4 égner ègnes/n'q'l'm't' égner -SFX c4 égrer ègres/n'q'l'm't' égrer -SFX c4 éguer ègues/n'q'l'm't' éguer -SFX c4 éler èles/n'q'l'm't' éler -SFX c4 émer èmes/n'q'l'm't' émer -SFX c4 éner ènes/n'q'l'm't' éner -SFX c4 éper èpes/n'q'l'm't' éper -SFX c4 équer èques/n'q'l'm't' équer -SFX c4 érer ères/n'q'l'm't' érer -SFX c4 éser èses/n'q'l'm't' éser -SFX c4 éter ètes/n'q'l'm't' éter -SFX c4 étrer ètres/n'q'l'm't' étrer -SFX c4 évrer èvres/n'q'l'm't' évrer -SFX c4 éyer èyes/n'q'l'm't' éyer -SFX c4 ébrer èbre/n'q'l'm't's' ébrer -SFX c4 écer èce/n'q'l'm't's' écer -SFX c4 écher èche/n'q'l'm't's' écher -SFX c4 écrer ècre/n'q'l'm't's' écrer -SFX c4 éder ède/n'q'l'm't's' éder -SFX c4 éger ège/n'q'l'm't's' éger -SFX c4 égler ègle/n'q'l'm't's' égler -SFX c4 égner ègne/n'q'l'm't's' égner -SFX c4 égrer ègre/n'q'l'm't's' égrer -SFX c4 éguer ègue/n'q'l'm't's' éguer -SFX c4 éler èle/n'q'l'm't's' éler -SFX c4 émer ème/n'q'l'm't's' émer -SFX c4 éner ène/n'q'l'm't's' éner -SFX c4 éper èpe/n'q'l'm't's' éper -SFX c4 équer èque/n'q'l'm't's' équer -SFX c4 érer ère/n'q'l'm't's' érer -SFX c4 éser èse/n'q'l'm't's' éser -SFX c4 éter ète/n'q'l'm't's' éter -SFX c4 étrer ètre/n'q'l'm't's' étrer -SFX c4 évrer èvre/n'q'l'm't's' évrer -SFX c4 éyer èye/n'q'l'm't's' éyer -SFX c4 er ons/n'q'l't' [^cg]er -SFX c4 écer éçons/n'q'l't' écer -SFX c4 éger égeons/n'q'l't' éger -SFX c4 er ez/n'q'l'm' er -SFX c4 ébrer èbrent/n'q'l'm't's' ébrer -SFX c4 écer ècent/n'q'l'm't's' écer -SFX c4 écher èchent/n'q'l'm't's' écher -SFX c4 écrer ècrent/n'q'l'm't's' écrer -SFX c4 éder èdent/n'q'l'm't's' éder -SFX c4 éger ègent/n'q'l'm't's' éger -SFX c4 égler èglent/n'q'l'm't's' égler -SFX c4 égner ègnent/n'q'l'm't's' égner -SFX c4 égrer ègrent/n'q'l'm't's' égrer -SFX c4 éguer èguent/n'q'l'm't's' éguer -SFX c4 éler èlent/n'q'l'm't's' éler -SFX c4 émer èment/n'q'l'm't's' émer -SFX c4 éner ènent/n'q'l'm't's' éner -SFX c4 éper èpent/n'q'l'm't's' éper -SFX c4 équer èquent/n'q'l'm't's' équer -SFX c4 érer èrent/n'q'l'm't's' érer -SFX c4 éser èsent/n'q'l'm't's' éser -SFX c4 éter ètent/n'q'l'm't's' éter -SFX c4 étrer ètrent/n'q'l'm't's' étrer -SFX c4 évrer èvrent/n'q'l'm't's' évrer -SFX c4 éyer èyent/n'q'l'm't's' éyer -SFX c4 er ais/n'q'j'l'm't' [^cg]er -SFX c4 écer éçais/n'q'j'l'm't' écer -SFX c4 éger égeais/n'q'j'l'm't' éger -SFX c4 er ais/n'q'l'm't' [^cg]er -SFX c4 écer éçais/n'q'l'm't' écer -SFX c4 éger égeais/n'q'l'm't' éger -SFX c4 er ait/n'q'l'm't's' [^cg]er -SFX c4 écer éçait/n'q'l'm't's' écer -SFX c4 éger égeait/n'q'l'm't's' éger -SFX c4 er ions/n'q'l't' er -SFX c4 er iez/n'q'l'm' er -SFX c4 er aient/n'q'l'm't's' [^cg]er -SFX c4 écer éçaient/n'q'l'm't's' écer -SFX c4 éger égeaient/n'q'l'm't's' éger -SFX c4 er ai/n'q'j'l'm't' [^cg]er -SFX c4 écer éçai/n'q'j'l'm't' écer -SFX c4 éger égeai/n'q'j'l'm't' éger -SFX c4 er as/n'q'l'm't' [^cg]er -SFX c4 écer éças/n'q'l'm't' écer -SFX c4 éger égeas/n'q'l'm't' éger -SFX c4 er a/n'q'l'm't's' [^cg]er -SFX c4 écer éça/n'q'l'm't's' écer -SFX c4 éger égea/n'q'l'm't's' éger -SFX c4 er âmes/n'q'l't' [^cg]er -SFX c4 écer éçâmes/n'q'l't' écer -SFX c4 éger égeâmes/n'q'l't' éger -SFX c4 er âtes/n'q'l'm' [^cg]er -SFX c4 écer éçâtes/n'q'l'm' écer -SFX c4 éger égeâtes/n'q'l'm' éger -SFX c4 er èrent/n'q'l'm't's' er -SFX c4 er erai/n'q'j'l'm't' er -SFX c4 er eras/n'q'l'm't' er -SFX c4 er era/n'q'l'm't's' er -SFX c4 er erons/n'q'l't' er -SFX c4 er erez/n'q'l'm' er -SFX c4 er eront/n'q'l'm't's' er -SFX c4 er erais/n'q'j'l'm't' er -SFX c4 er erais/n'q'l'm't' er -SFX c4 er erait/n'q'l'm't's' er -SFX c4 er erions/n'q'l't' er -SFX c4 er eriez/n'q'l'm' er -SFX c4 er eraient/n'q'l'm't's' er -SFX c4 ébrer èbre/n'j'l'm't' ébrer -SFX c4 écer èce/n'j'l'm't' écer -SFX c4 écher èche/n'j'l'm't' écher -SFX c4 écrer ècre/n'j'l'm't' écrer -SFX c4 éder ède/n'j'l'm't' éder -SFX c4 éger ège/n'j'l'm't' éger -SFX c4 égler ègle/n'j'l'm't' égler -SFX c4 égner ègne/n'j'l'm't' égner -SFX c4 égrer ègre/n'j'l'm't' égrer -SFX c4 éguer ègue/n'j'l'm't' éguer -SFX c4 éler èle/n'j'l'm't' éler -SFX c4 émer ème/n'j'l'm't' émer -SFX c4 éner ène/n'j'l'm't' éner -SFX c4 éper èpe/n'j'l'm't' éper -SFX c4 équer èque/n'j'l'm't' équer -SFX c4 érer ère/n'j'l'm't' érer -SFX c4 éser èse/n'j'l'm't' éser -SFX c4 éter ète/n'j'l'm't' éter -SFX c4 étrer ètre/n'j'l'm't' étrer -SFX c4 évrer èvre/n'j'l'm't' évrer -SFX c4 éyer èye/n'j'l'm't' éyer -SFX c4 ébrer èbres/n'l'm't' ébrer -SFX c4 écer èces/n'l'm't' écer -SFX c4 écher èches/n'l'm't' écher -SFX c4 écrer ècres/n'l'm't' écrer -SFX c4 éder èdes/n'l'm't' éder -SFX c4 éger èges/n'l'm't' éger -SFX c4 égler ègles/n'l'm't' égler -SFX c4 égner ègnes/n'l'm't' égner -SFX c4 égrer ègres/n'l'm't' égrer -SFX c4 éguer ègues/n'l'm't' éguer -SFX c4 éler èles/n'l'm't' éler -SFX c4 émer èmes/n'l'm't' émer -SFX c4 éner ènes/n'l'm't' éner -SFX c4 éper èpes/n'l'm't' éper -SFX c4 équer èques/n'l'm't' équer -SFX c4 érer ères/n'l'm't' érer -SFX c4 éser èses/n'l'm't' éser -SFX c4 éter ètes/n'l'm't' éter -SFX c4 étrer ètres/n'l'm't' étrer -SFX c4 évrer èvres/n'l'm't' évrer -SFX c4 éyer èyes/n'l'm't' éyer -SFX c4 ébrer èbre/n'l'm't's' ébrer -SFX c4 écer èce/n'l'm't's' écer -SFX c4 écher èche/n'l'm't's' écher -SFX c4 écrer ècre/n'l'm't's' écrer -SFX c4 éder ède/n'l'm't's' éder -SFX c4 éger ège/n'l'm't's' éger -SFX c4 égler ègle/n'l'm't's' égler -SFX c4 égner ègne/n'l'm't's' égner -SFX c4 égrer ègre/n'l'm't's' égrer -SFX c4 éguer ègue/n'l'm't's' éguer -SFX c4 éler èle/n'l'm't's' éler -SFX c4 émer ème/n'l'm't's' émer -SFX c4 éner ène/n'l'm't's' éner -SFX c4 éper èpe/n'l'm't's' éper -SFX c4 équer èque/n'l'm't's' équer -SFX c4 érer ère/n'l'm't's' érer -SFX c4 éser èse/n'l'm't's' éser -SFX c4 éter ète/n'l'm't's' éter -SFX c4 étrer ètre/n'l'm't's' étrer -SFX c4 évrer èvre/n'l'm't's' évrer -SFX c4 éyer èye/n'l'm't's' éyer -SFX c4 er ions/n'l't' er -SFX c4 er iez/n'l'm' er -SFX c4 ébrer èbrent/n'l'm't's' ébrer -SFX c4 écer ècent/n'l'm't's' écer -SFX c4 écher èchent/n'l'm't's' écher -SFX c4 écrer ècrent/n'l'm't's' écrer -SFX c4 éder èdent/n'l'm't's' éder -SFX c4 éger ègent/n'l'm't's' éger -SFX c4 égler èglent/n'l'm't's' égler -SFX c4 égner ègnent/n'l'm't's' égner -SFX c4 égrer ègrent/n'l'm't's' égrer -SFX c4 éguer èguent/n'l'm't's' éguer -SFX c4 éler èlent/n'l'm't's' éler -SFX c4 émer èment/n'l'm't's' émer -SFX c4 éner ènent/n'l'm't's' éner -SFX c4 éper èpent/n'l'm't's' éper -SFX c4 équer èquent/n'l'm't's' équer -SFX c4 érer èrent/n'l'm't's' érer -SFX c4 éser èsent/n'l'm't's' éser -SFX c4 éter ètent/n'l'm't's' éter -SFX c4 étrer ètrent/n'l'm't's' étrer -SFX c4 évrer èvrent/n'l'm't's' évrer -SFX c4 éyer èyent/n'l'm't's' éyer -SFX c4 er asse/n'q'j'l'm't' [^cg]er -SFX c4 écer éçasse/n'q'j'l'm't' écer -SFX c4 éger égeasse/n'q'j'l'm't' éger -SFX c4 er asses/n'q'l'm't' [^cg]er -SFX c4 écer éçasses/n'q'l'm't' écer -SFX c4 éger égeasses/n'q'l'm't' éger -SFX c4 er ât/n'q'l'm't's' [^cg]er -SFX c4 écer éçât/n'q'l'm't's' écer -SFX c4 éger égeât/n'q'l'm't's' éger -SFX c4 er assions/n'q'l't' [^cg]er -SFX c4 écer éçassions/n'q'l't' écer -SFX c4 éger égeassions/n'q'l't' éger -SFX c4 er assiez/n'q'l'm' [^cg]er -SFX c4 écer éçassiez/n'q'l'm' écer -SFX c4 éger égeassiez/n'q'l'm' éger -SFX c4 er assent/n'q'l'm't's' [^cg]er -SFX c4 écer éçassent/n'q'l'm't's' écer -SFX c4 éger égeassent/n'q'l'm't's' éger - -SFX c5 Y 239 -SFX c5 er er/m'q'd'm't's' er -SFX c5 er ant/m'q'm't's' [^cg]er -SFX c5 écer éçant/m'q'm't's' écer -SFX c5 éger égeant/m'q'l't's' éger -SFX c5 er é/q' er -SFX c5 ébrer èbre/n'j'm't' ébrer -SFX c5 écer èce/n'j'm't' écer -SFX c5 écher èche/n'j'm't' écher -SFX c5 écrer ècre/n'j'm't' écrer -SFX c5 éder ède/n'j'm't' éder -SFX c5 éger ège/n'j'm't' éger -SFX c5 égler ègle/n'j'm't' égler -SFX c5 égner ègne/n'j'm't' égner -SFX c5 égrer ègre/n'j'm't' égrer -SFX c5 éguer ègue/n'j'm't' éguer -SFX c5 éler èle/n'j'm't' éler -SFX c5 émer ème/n'j'm't' émer -SFX c5 éner ène/n'j'm't' éner -SFX c5 éper èpe/n'j'm't' éper -SFX c5 équer èque/n'j'm't' équer -SFX c5 érer ère/n'j'm't' érer -SFX c5 éser èse/n'j'm't' éser -SFX c5 éter ète/n'j'm't' éter -SFX c5 étrer ètre/n'j'm't' étrer -SFX c5 évrer èvre/n'j'm't' évrer -SFX c5 éyer èye/n'j'm't' éyer -SFX c5 ébrer èbres/n'm't' ébrer -SFX c5 écer èces/n'm't' écer -SFX c5 écher èches/n'm't' écher -SFX c5 écrer ècres/n'm't' écrer -SFX c5 éder èdes/n'm't' éder -SFX c5 éger èges/n'm't' éger -SFX c5 égler ègles/n'm't' égler -SFX c5 égner ègnes/n'm't' égner -SFX c5 égrer ègres/n'm't' égrer -SFX c5 éguer ègues/n'm't' éguer -SFX c5 éler èles/n'm't' éler -SFX c5 émer èmes/n'm't' émer -SFX c5 éner ènes/n'm't' éner -SFX c5 éper èpes/n'm't' éper -SFX c5 équer èques/n'm't' équer -SFX c5 érer ères/n'm't' érer -SFX c5 éser èses/n'm't' éser -SFX c5 éter ètes/n'm't' éter -SFX c5 étrer ètres/n'm't' étrer -SFX c5 évrer èvres/n'm't' évrer -SFX c5 éyer èyes/n'm't' éyer -SFX c5 ébrer èbre/n'q'm't's' ébrer -SFX c5 écer èce/n'q'm't's' écer -SFX c5 écher èche/n'q'm't's' écher -SFX c5 écrer ècre/n'q'm't's' écrer -SFX c5 éder ède/n'q'm't's' éder -SFX c5 éger ège/n'q'm't's' éger -SFX c5 égler ègle/n'q'm't's' égler -SFX c5 égner ègne/n'q'm't's' égner -SFX c5 égrer ègre/n'q'm't's' égrer -SFX c5 éguer ègue/n'q'm't's' éguer -SFX c5 éler èle/n'q'm't's' éler -SFX c5 émer ème/n'q'm't's' émer -SFX c5 éner ène/n'q'm't's' éner -SFX c5 éper èpe/n'q'm't's' éper -SFX c5 équer èque/n'q'm't's' équer -SFX c5 érer ère/n'q'm't's' érer -SFX c5 éser èse/n'q'm't's' éser -SFX c5 éter ète/n'q'm't's' éter -SFX c5 étrer ètre/n'q'm't's' étrer -SFX c5 évrer èvre/n'q'm't's' évrer -SFX c5 éyer èye/n'q'm't's' éyer -SFX c5 er ons/n't' [^cg]er -SFX c5 écer éçons/n't' écer -SFX c5 éger égeons/n't' éger -SFX c5 er ez/n'm' er -SFX c5 ébrer èbrent/n'q'm't's' ébrer -SFX c5 écer ècent/n'q'm't's' écer -SFX c5 écher èchent/n'q'm't's' écher -SFX c5 écrer ècrent/n'q'm't's' écrer -SFX c5 éder èdent/n'q'm't's' éder -SFX c5 éger ègent/n'q'm't's' éger -SFX c5 égler èglent/n'q'm't's' égler -SFX c5 égner ègnent/n'q'm't's' égner -SFX c5 égrer ègrent/n'q'm't's' égrer -SFX c5 éguer èguent/n'q'm't's' éguer -SFX c5 éler èlent/n'q'm't's' éler -SFX c5 émer èment/n'q'm't's' émer -SFX c5 éner ènent/n'q'm't's' éner -SFX c5 éper èpent/n'q'm't's' éper -SFX c5 équer èquent/n'q'm't's' équer -SFX c5 érer èrent/n'q'm't's' érer -SFX c5 éser èsent/n'q'm't's' éser -SFX c5 éter ètent/n'q'm't's' éter -SFX c5 étrer ètrent/n'q'm't's' étrer -SFX c5 évrer èvrent/n'q'm't's' évrer -SFX c5 éyer èyent/n'q'm't's' éyer -SFX c5 er ais/n'j'm't' [^cg]er -SFX c5 écer éçais/n'j'm't' écer -SFX c5 éger égeais/n'j'm't' éger -SFX c5 er ais/n'm't' [^cg]er -SFX c5 écer éçais/n'm't' écer -SFX c5 éger égeais/n'm't' éger -SFX c5 er ait/n'q'm't's' [^cg]er -SFX c5 écer éçait/n'q'm't's' écer -SFX c5 éger égeait/n'q'm't's' éger -SFX c5 er ions/n't' er -SFX c5 er iez/n'm' er -SFX c5 er aient/n'q'm't's' [^cg]er -SFX c5 écer éçaient/n'q'm't's' écer -SFX c5 éger égeaient/n'q'm't's' éger -SFX c5 er ai/n'j'm't' [^cg]er -SFX c5 écer éçai/n'j'm't' écer -SFX c5 éger égeai/n'j'm't' éger -SFX c5 er as/n'm't' [^cg]er -SFX c5 écer éças/n'm't' écer -SFX c5 éger égeas/n'm't' éger -SFX c5 er a/n'q'm't's' [^cg]er -SFX c5 écer éça/n'q'm't's' écer -SFX c5 éger égea/n'q'm't's' éger -SFX c5 er âmes/n't' [^cg]er -SFX c5 écer éçâmes/n't' écer -SFX c5 éger égeâmes/n't' éger -SFX c5 er âtes/n'm' [^cg]er -SFX c5 écer éçâtes/n'm' écer -SFX c5 éger égeâtes/n'm' éger -SFX c5 er èrent/n'q'm't's' er -SFX c5 er erai/n'j'm't' er -SFX c5 er eras/n'm't' er -SFX c5 er era/n'q'm't's' er -SFX c5 er erons/n't' er -SFX c5 er erez/n'm' er -SFX c5 er eront/n'q'm't's' er -SFX c5 er erais/n'j'm't' er -SFX c5 er erais/n'm't' er -SFX c5 er erait/n'q'm't's' er -SFX c5 er erions/n't' er -SFX c5 er eriez/n'm' er -SFX c5 er eraient/n'q'm't's' er -SFX c5 ébrer èbre/n'j'm't' ébrer -SFX c5 écer èce/n'j'm't' écer -SFX c5 écher èche/n'j'm't' écher -SFX c5 écrer ècre/n'j'm't' écrer -SFX c5 éder ède/n'j'm't' éder -SFX c5 éger ège/n'j'm't' éger -SFX c5 égler ègle/n'j'm't' égler -SFX c5 égner ègne/n'j'm't' égner -SFX c5 égrer ègre/n'j'm't' égrer -SFX c5 éguer ègue/n'j'm't' éguer -SFX c5 éler èle/n'j'm't' éler -SFX c5 émer ème/n'j'm't' émer -SFX c5 éner ène/n'j'm't' éner -SFX c5 éper èpe/n'j'm't' éper -SFX c5 équer èque/n'j'm't' équer -SFX c5 érer ère/n'j'm't' érer -SFX c5 éser èse/n'j'm't' éser -SFX c5 éter ète/n'j'm't' éter -SFX c5 étrer ètre/n'j'm't' étrer -SFX c5 évrer èvre/n'j'm't' évrer -SFX c5 éyer èye/n'j'm't' éyer -SFX c5 ébrer èbres/n'm't' ébrer -SFX c5 écer èces/n'm't' écer -SFX c5 écher èches/n'm't' écher -SFX c5 écrer ècres/n'm't' écrer -SFX c5 éder èdes/n'm't' éder -SFX c5 éger èges/n'm't' éger -SFX c5 égler ègles/n'm't' égler -SFX c5 égner ègnes/n'm't' égner -SFX c5 égrer ègres/n'm't' égrer -SFX c5 éguer ègues/n'm't' éguer -SFX c5 éler èles/n'm't' éler -SFX c5 émer èmes/n'm't' émer -SFX c5 éner ènes/n'm't' éner -SFX c5 éper èpes/n'm't' éper -SFX c5 équer èques/n'm't' équer -SFX c5 érer ères/n'm't' érer -SFX c5 éser èses/n'm't' éser -SFX c5 éter ètes/n'm't' éter -SFX c5 étrer ètres/n'm't' étrer -SFX c5 évrer èvres/n'm't' évrer -SFX c5 éyer èyes/n'm't' éyer -SFX c5 ébrer èbre/n'q'm't's' ébrer -SFX c5 écer èce/n'q'm't's' écer -SFX c5 écher èche/n'q'm't's' écher -SFX c5 écrer ècre/n'q'm't's' écrer -SFX c5 éder ède/n'q'm't's' éder -SFX c5 éger ège/n'q'm't's' éger -SFX c5 égler ègle/n'q'm't's' égler -SFX c5 égner ègne/n'q'm't's' égner -SFX c5 égrer ègre/n'q'm't's' égrer -SFX c5 éguer ègue/n'q'm't's' éguer -SFX c5 éler èle/n'q'm't's' éler -SFX c5 émer ème/n'q'm't's' émer -SFX c5 éner ène/n'q'm't's' éner -SFX c5 éper èpe/n'q'm't's' éper -SFX c5 équer èque/n'q'm't's' équer -SFX c5 érer ère/n'q'm't's' érer -SFX c5 éser èse/n'q'm't's' éser -SFX c5 éter ète/n'q'm't's' éter -SFX c5 étrer ètre/n'q'm't's' étrer -SFX c5 évrer èvre/n'q'm't's' évrer -SFX c5 éyer èye/n'q'm't's' éyer -SFX c5 er ions/n't' er -SFX c5 er iez/n'm' er -SFX c5 ébrer èbrent/n'q'm't's' ébrer -SFX c5 écer ècent/n'q'm't's' écer -SFX c5 écher èchent/n'q'm't's' écher -SFX c5 écrer ècrent/n'q'm't's' écrer -SFX c5 éder èdent/n'q'm't's' éder -SFX c5 éger ègent/n'q'm't's' éger -SFX c5 égler èglent/n'q'm't's' égler -SFX c5 égner ègnent/n'q'm't's' égner -SFX c5 égrer ègrent/n'q'm't's' égrer -SFX c5 éguer èguent/n'q'm't's' éguer -SFX c5 éler èlent/n'q'm't's' éler -SFX c5 émer èment/n'q'm't's' émer -SFX c5 éner ènent/n'q'm't's' éner -SFX c5 éper èpent/n'q'm't's' éper -SFX c5 équer èquent/n'q'm't's' équer -SFX c5 érer èrent/n'q'm't's' érer -SFX c5 éser èsent/n'q'm't's' éser -SFX c5 éter ètent/n'q'm't's' éter -SFX c5 étrer ètrent/n'q'm't's' étrer -SFX c5 évrer èvrent/n'q'm't's' évrer -SFX c5 éyer èyent/n'q'm't's' éyer -SFX c5 er asse/n'j'm't' [^cg]er -SFX c5 écer éçasse/n'j'm't' écer -SFX c5 éger égeasse/n'j'm't' éger -SFX c5 er asses/n'm't' [^cg]er -SFX c5 écer éçasses/n'm't' écer -SFX c5 éger égeasses/n'm't' éger -SFX c5 er ât/n'q'm't's' [^cg]er -SFX c5 écer éçât/n'q'm't's' écer -SFX c5 éger égeât/n'q'm't's' éger -SFX c5 er assions/n't' [^cg]er -SFX c5 écer éçassions/n't' écer -SFX c5 éger égeassions/n't' éger -SFX c5 er assiez/n'm' [^cg]er -SFX c5 écer éçassiez/n'm' écer -SFX c5 éger égeassiez/n'm' éger -SFX c5 er assent/n'q'm't's' [^cg]er -SFX c5 écer éçassent/n'q'm't's' écer -SFX c5 éger égeassent/n'q'm't's' éger - -SFX d0 N 105 -SFX d0 er er er -SFX d0 er ant er -SFX d0 er é er -SFX d0 eter ette jeter -SFX d0 eter ette [^j]eter -SFX d0 eler elle ppeler -SFX d0 eler elle [^p].eler -SFX d0 eter ettes jeter -SFX d0 eter ettes [^j]eter -SFX d0 eler elles ppeler -SFX d0 eler elles [^p].eler -SFX d0 eter ette jeter -SFX d0 eter ette [^j]eter -SFX d0 eler elle ppeler -SFX d0 eler elle [^p].eler -SFX d0 er ons er -SFX d0 er ez er -SFX d0 eter ettent jeter -SFX d0 eter ettent [^j]eter -SFX d0 eler ellent ppeler -SFX d0 eler ellent [^p].eler -SFX d0 er ais er -SFX d0 er ais er -SFX d0 er ait er -SFX d0 er ions er -SFX d0 er iez er -SFX d0 er aient er -SFX d0 er ai er -SFX d0 er as er -SFX d0 er a er -SFX d0 er âmes er -SFX d0 er âtes er -SFX d0 er èrent er -SFX d0 eter etterai jeter -SFX d0 eter etterai [^j]eter -SFX d0 eler ellerai ppeler -SFX d0 eler ellerai [^p].eler -SFX d0 eter etteras jeter -SFX d0 eter etteras [^j]eter -SFX d0 eler elleras ppeler -SFX d0 eler elleras [^p].eler -SFX d0 eter ettera jeter -SFX d0 eter ettera [^j]eter -SFX d0 eler ellera ppeler -SFX d0 eler ellera [^p].eler -SFX d0 eter etterons jeter -SFX d0 eter etterons [^j]eter -SFX d0 eler ellerons ppeler -SFX d0 eler ellerons [^p].eler -SFX d0 eter etterez jeter -SFX d0 eter etterez [^j]eter -SFX d0 eler ellerez ppeler -SFX d0 eler ellerez [^p].eler -SFX d0 eter etteront jeter -SFX d0 eter etteront [^j]eter -SFX d0 eler elleront ppeler -SFX d0 eler elleront [^p].eler -SFX d0 eter etterais jeter -SFX d0 eter etterais [^j]eter -SFX d0 eler ellerais ppeler -SFX d0 eler ellerais [^p].eler -SFX d0 eter etterais jeter -SFX d0 eter etterais [^j]eter -SFX d0 eler ellerais ppeler -SFX d0 eler ellerais [^p].eler -SFX d0 eter etterait jeter -SFX d0 eter etterait [^j]eter -SFX d0 eler ellerait ppeler -SFX d0 eler ellerait [^p].eler -SFX d0 eter etterions jeter -SFX d0 eter etterions [^j]eter -SFX d0 eler ellerions ppeler -SFX d0 eler ellerions [^p].eler -SFX d0 eter etteriez jeter -SFX d0 eter etteriez [^j]eter -SFX d0 eler elleriez ppeler -SFX d0 eler elleriez [^p].eler -SFX d0 eter etteraient jeter -SFX d0 eter etteraient [^j]eter -SFX d0 eler elleraient ppeler -SFX d0 eler elleraient [^p].eler -SFX d0 eter ette jeter -SFX d0 eter ette [^j]eter -SFX d0 eler elle ppeler -SFX d0 eler elle [^p].eler -SFX d0 eter ettes jeter -SFX d0 eter ettes [^j]eter -SFX d0 eler elles ppeler -SFX d0 eler elles [^p].eler -SFX d0 eter ette jeter -SFX d0 eter ette [^j]eter -SFX d0 eler elle ppeler -SFX d0 eler elle [^p].eler -SFX d0 er ions er -SFX d0 er iez er -SFX d0 eter ettent jeter -SFX d0 eter ettent [^j]eter -SFX d0 eler ellent ppeler -SFX d0 eler ellent [^p].eler -SFX d0 er asse er -SFX d0 er asses er -SFX d0 er ât er -SFX d0 er assions er -SFX d0 er assiez er -SFX d0 er assent er - -SFX d1 Y 105 -SFX d1 er er/n'q'd' er -SFX d1 er ant/n'q' er -SFX d1 er é/q' er -SFX d1 eter ette/n'j' jeter -SFX d1 eter ette/n'j' [^j]eter -SFX d1 eler elle/n'j' ppeler -SFX d1 eler elle/n'j' [^p].eler -SFX d1 eter ettes/n' jeter -SFX d1 eter ettes/n' [^j]eter -SFX d1 eler elles/n' ppeler -SFX d1 eler elles/n' [^p].eler -SFX d1 eter ette/n'q' jeter -SFX d1 eter ette/n'q' [^j]eter -SFX d1 eler elle/n'q' ppeler -SFX d1 eler elle/n'q' [^p].eler -SFX d1 er ons/n' er -SFX d1 er ez/n' er -SFX d1 eter ettent/n'q' jeter -SFX d1 eter ettent/n'q' [^j]eter -SFX d1 eler ellent/n'q' ppeler -SFX d1 eler ellent/n'q' [^p].eler -SFX d1 er ais/n'j' er -SFX d1 er ais/n' er -SFX d1 er ait/n'q' er -SFX d1 er ions/n' er -SFX d1 er iez/n' er -SFX d1 er aient/n'q' er -SFX d1 er ai/n'j' er -SFX d1 er as/n' er -SFX d1 er a/n'q' er -SFX d1 er âmes/n' er -SFX d1 er âtes/n' er -SFX d1 er èrent/n'q' er -SFX d1 eter etterai/n'j' jeter -SFX d1 eter etterai/n'j' [^j]eter -SFX d1 eler ellerai/n'j' ppeler -SFX d1 eler ellerai/n'j' [^p].eler -SFX d1 eter etteras/n' jeter -SFX d1 eter etteras/n' [^j]eter -SFX d1 eler elleras/n' ppeler -SFX d1 eler elleras/n' [^p].eler -SFX d1 eter ettera/n'q' jeter -SFX d1 eter ettera/n'q' [^j]eter -SFX d1 eler ellera/n'q' ppeler -SFX d1 eler ellera/n'q' [^p].eler -SFX d1 eter etterons/n' jeter -SFX d1 eter etterons/n' [^j]eter -SFX d1 eler ellerons/n' ppeler -SFX d1 eler ellerons/n' [^p].eler -SFX d1 eter etterez/n' jeter -SFX d1 eter etterez/n' [^j]eter -SFX d1 eler ellerez/n' ppeler -SFX d1 eler ellerez/n' [^p].eler -SFX d1 eter etteront/n'q' jeter -SFX d1 eter etteront/n'q' [^j]eter -SFX d1 eler elleront/n'q' ppeler -SFX d1 eler elleront/n'q' [^p].eler -SFX d1 eter etterais/n'j' jeter -SFX d1 eter etterais/n'j' [^j]eter -SFX d1 eler ellerais/n'j' ppeler -SFX d1 eler ellerais/n'j' [^p].eler -SFX d1 eter etterais/n' jeter -SFX d1 eter etterais/n' [^j]eter -SFX d1 eler ellerais/n' ppeler -SFX d1 eler ellerais/n' [^p].eler -SFX d1 eter etterait/n'q' jeter -SFX d1 eter etterait/n'q' [^j]eter -SFX d1 eler ellerait/n'q' ppeler -SFX d1 eler ellerait/n'q' [^p].eler -SFX d1 eter etterions/n' jeter -SFX d1 eter etterions/n' [^j]eter -SFX d1 eler ellerions/n' ppeler -SFX d1 eler ellerions/n' [^p].eler -SFX d1 eter etteriez/n' jeter -SFX d1 eter etteriez/n' [^j]eter -SFX d1 eler elleriez/n' ppeler -SFX d1 eler elleriez/n' [^p].eler -SFX d1 eter etteraient/n'q' jeter -SFX d1 eter etteraient/n'q' [^j]eter -SFX d1 eler elleraient/n'q' ppeler -SFX d1 eler elleraient/n'q' [^p].eler -SFX d1 eter ette/n'j' jeter -SFX d1 eter ette/n'j' [^j]eter -SFX d1 eler elle/n'j' ppeler -SFX d1 eler elle/n'j' [^p].eler -SFX d1 eter ettes/n' jeter -SFX d1 eter ettes/n' [^j]eter -SFX d1 eler elles/n' ppeler -SFX d1 eler elles/n' [^p].eler -SFX d1 eter ette/n'q' jeter -SFX d1 eter ette/n'q' [^j]eter -SFX d1 eler elle/n'q' ppeler -SFX d1 eler elle/n'q' [^p].eler -SFX d1 er ions/n' er -SFX d1 er iez/n' er -SFX d1 eter ettent/n'q' jeter -SFX d1 eter ettent/n'q' [^j]eter -SFX d1 eler ellent/n'q' ppeler -SFX d1 eler ellent/n'q' [^p].eler -SFX d1 er asse/n'j' er -SFX d1 er asses/n' er -SFX d1 er ât/n'q' er -SFX d1 er assions/n' er -SFX d1 er assiez/n' er -SFX d1 er assent/n'q' er - -SFX d2 Y 105 -SFX d2 er er/n'q'd'l'm't's' er -SFX d2 er ant/n'q'l'm't's' er -SFX d2 er é/q' er -SFX d2 eter ette/n'q'j'l't' jeter -SFX d2 eter ette/n'q'j'l't' [^j]eter -SFX d2 eler elle/n'q'j'l't' ppeler -SFX d2 eler elle/n'q'j'l't' [^p].eler -SFX d2 eter ettes/n'q'l'm' jeter -SFX d2 eter ettes/n'q'l'm' [^j]eter -SFX d2 eler elles/n'q'l'm' ppeler -SFX d2 eler elles/n'q'l'm' [^p].eler -SFX d2 eter ette/n'q'l'm't's' jeter -SFX d2 eter ette/n'q'l'm't's' [^j]eter -SFX d2 eler elle/n'q'l'm't's' ppeler -SFX d2 eler elle/n'q'l'm't's' [^p].eler -SFX d2 er ons/n'q'l't' er -SFX d2 er ez/n'q'l'm' er -SFX d2 eter ettent/n'q'l'm't's' jeter -SFX d2 eter ettent/n'q'l'm't's' [^j]eter -SFX d2 eler ellent/n'q'l'm't's' ppeler -SFX d2 eler ellent/n'q'l'm't's' [^p].eler -SFX d2 er ais/n'q'j'l't' er -SFX d2 er ais/n'q'l'm' er -SFX d2 er ait/n'q'l'm't's' er -SFX d2 er ions/n'q'l't' er -SFX d2 er iez/n'q'l'm' er -SFX d2 er aient/n'q'l'm't's' er -SFX d2 er ai/n'q'j'l't' er -SFX d2 er as/n'q'l'm' er -SFX d2 er a/n'q'l'm't's' er -SFX d2 er âmes/n'q'l't' er -SFX d2 er âtes/n'q'l'm' er -SFX d2 er èrent/n'q'l'm't's' er -SFX d2 eter etterai/n'q'j'l't' jeter -SFX d2 eter etterai/n'q'j'l't' [^j]eter -SFX d2 eler ellerai/n'q'j'l't' ppeler -SFX d2 eler ellerai/n'q'j'l't' [^p].eler -SFX d2 eter etteras/n'q'l'm' jeter -SFX d2 eter etteras/n'q'l'm' [^j]eter -SFX d2 eler elleras/n'q'l'm' ppeler -SFX d2 eler elleras/n'q'l'm' [^p].eler -SFX d2 eter ettera/n'q'l'm't's' jeter -SFX d2 eter ettera/n'q'l'm't's' [^j]eter -SFX d2 eler ellera/n'q'l'm't's' ppeler -SFX d2 eler ellera/n'q'l'm't's' [^p].eler -SFX d2 eter etterons/n'q'l't' jeter -SFX d2 eter etterons/n'q'l't' [^j]eter -SFX d2 eler ellerons/n'q'l't' ppeler -SFX d2 eler ellerons/n'q'l't' [^p].eler -SFX d2 eter etterez/n'q'l'm' jeter -SFX d2 eter etterez/n'q'l'm' [^j]eter -SFX d2 eler ellerez/n'q'l'm' ppeler -SFX d2 eler ellerez/n'q'l'm' [^p].eler -SFX d2 eter etteront/n'q'l'm't's' jeter -SFX d2 eter etteront/n'q'l'm't's' [^j]eter -SFX d2 eler elleront/n'q'l'm't's' ppeler -SFX d2 eler elleront/n'q'l'm't's' [^p].eler -SFX d2 eter etterais/n'q'j'l't' jeter -SFX d2 eter etterais/n'q'j'l't' [^j]eter -SFX d2 eler ellerais/n'q'j'l't' ppeler -SFX d2 eler ellerais/n'q'j'l't' [^p].eler -SFX d2 eter etterais/n'q'l'm' jeter -SFX d2 eter etterais/n'q'l'm' [^j]eter -SFX d2 eler ellerais/n'q'l'm' ppeler -SFX d2 eler ellerais/n'q'l'm' [^p].eler -SFX d2 eter etterait/n'q'l'm't's' jeter -SFX d2 eter etterait/n'q'l'm't's' [^j]eter -SFX d2 eler ellerait/n'q'l'm't's' ppeler -SFX d2 eler ellerait/n'q'l'm't's' [^p].eler -SFX d2 eter etterions/n'q'l't' jeter -SFX d2 eter etterions/n'q'l't' [^j]eter -SFX d2 eler ellerions/n'q'l't' ppeler -SFX d2 eler ellerions/n'q'l't' [^p].eler -SFX d2 eter etteriez/n'q'l'm' jeter -SFX d2 eter etteriez/n'q'l'm' [^j]eter -SFX d2 eler elleriez/n'q'l'm' ppeler -SFX d2 eler elleriez/n'q'l'm' [^p].eler -SFX d2 eter etteraient/n'q'l'm't's' jeter -SFX d2 eter etteraient/n'q'l'm't's' [^j]eter -SFX d2 eler elleraient/n'q'l'm't's' ppeler -SFX d2 eler elleraient/n'q'l'm't's' [^p].eler -SFX d2 eter ette/n'j'l't' jeter -SFX d2 eter ette/n'j'l't' [^j]eter -SFX d2 eler elle/n'j'l't' ppeler -SFX d2 eler elle/n'j'l't' [^p].eler -SFX d2 eter ettes/n'l'm' jeter -SFX d2 eter ettes/n'l'm' [^j]eter -SFX d2 eler elles/n'l'm' ppeler -SFX d2 eler elles/n'l'm' [^p].eler -SFX d2 eter ette/n'l'm't's' jeter -SFX d2 eter ette/n'l'm't's' [^j]eter -SFX d2 eler elle/n'l'm't's' ppeler -SFX d2 eler elle/n'l'm't's' [^p].eler -SFX d2 er ions/n'l't' er -SFX d2 er iez/n'l'm' er -SFX d2 eter ettent/n'l'm't's' jeter -SFX d2 eter ettent/n'l'm't's' [^j]eter -SFX d2 eler ellent/n'l'm't's' ppeler -SFX d2 eler ellent/n'l'm't's' [^p].eler -SFX d2 er asse/n'q'j'l't' er -SFX d2 er asses/n'q'l'm' er -SFX d2 er ât/n'q'l'm't's' er -SFX d2 er assions/n'q'l't' er -SFX d2 er assiez/n'q'l'm' er -SFX d2 er assent/n'q'l'm't's' er - -SFX d3 Y 105 -SFX d3 er er/m't's' er -SFX d3 er ant/m't's' er -SFX d3 er é er -SFX d3 eter ette/m' jeter -SFX d3 eter ette/m' [^j]eter -SFX d3 eler elle/m' ppeler -SFX d3 eler elle/m' [^p].eler -SFX d3 eter ettes/t' jeter -SFX d3 eter ettes/t' [^j]eter -SFX d3 eler elles/t' ppeler -SFX d3 eler elles/t' [^p].eler -SFX d3 eter ette/s' jeter -SFX d3 eter ette/s' [^j]eter -SFX d3 eler elle/s' ppeler -SFX d3 eler elle/s' [^p].eler -SFX d3 er ons er -SFX d3 er ez er -SFX d3 eter ettent/s' jeter -SFX d3 eter ettent/s' [^j]eter -SFX d3 eler ellent/s' ppeler -SFX d3 eler ellent/s' [^p].eler -SFX d3 er ais/m' er -SFX d3 er ais/t' er -SFX d3 er ait/s' er -SFX d3 er ions er -SFX d3 er iez er -SFX d3 er aient/s' er -SFX d3 er ai/m' er -SFX d3 er as/t' er -SFX d3 er a/s' er -SFX d3 er âmes er -SFX d3 er âtes er -SFX d3 er èrent/s' er -SFX d3 eter etterai/m' jeter -SFX d3 eter etterai/m' [^j]eter -SFX d3 eler ellerai/m' ppeler -SFX d3 eler ellerai/m' [^p].eler -SFX d3 eter etteras/t' jeter -SFX d3 eter etteras/t' [^j]eter -SFX d3 eler elleras/t' ppeler -SFX d3 eler elleras/t' [^p].eler -SFX d3 eter ettera/s' jeter -SFX d3 eter ettera/s' [^j]eter -SFX d3 eler ellera/s' ppeler -SFX d3 eler ellera/s' [^p].eler -SFX d3 eter etterons jeter -SFX d3 eter etterons [^j]eter -SFX d3 eler ellerons ppeler -SFX d3 eler ellerons [^p].eler -SFX d3 eter etterez jeter -SFX d3 eter etterez [^j]eter -SFX d3 eler ellerez ppeler -SFX d3 eler ellerez [^p].eler -SFX d3 eter etteront/s' jeter -SFX d3 eter etteront/s' [^j]eter -SFX d3 eler elleront/s' ppeler -SFX d3 eler elleront/s' [^p].eler -SFX d3 eter etterais/m' jeter -SFX d3 eter etterais/m' [^j]eter -SFX d3 eler ellerais/m' ppeler -SFX d3 eler ellerais/m' [^p].eler -SFX d3 eter etterais/t' jeter -SFX d3 eter etterais/t' [^j]eter -SFX d3 eler ellerais/t' ppeler -SFX d3 eler ellerais/t' [^p].eler -SFX d3 eter etterait/s' jeter -SFX d3 eter etterait/s' [^j]eter -SFX d3 eler ellerait/s' ppeler -SFX d3 eler ellerait/s' [^p].eler -SFX d3 eter etterions jeter -SFX d3 eter etterions [^j]eter -SFX d3 eler ellerions ppeler -SFX d3 eler ellerions [^p].eler -SFX d3 eter etteriez jeter -SFX d3 eter etteriez [^j]eter -SFX d3 eler elleriez ppeler -SFX d3 eler elleriez [^p].eler -SFX d3 eter etteraient/s' jeter -SFX d3 eter etteraient/s' [^j]eter -SFX d3 eler elleraient/s' ppeler -SFX d3 eler elleraient/s' [^p].eler -SFX d3 eter ette/m' jeter -SFX d3 eter ette/m' [^j]eter -SFX d3 eler elle/m' ppeler -SFX d3 eler elle/m' [^p].eler -SFX d3 eter ettes/t' jeter -SFX d3 eter ettes/t' [^j]eter -SFX d3 eler elles/t' ppeler -SFX d3 eler elles/t' [^p].eler -SFX d3 eter ette/s' jeter -SFX d3 eter ette/s' [^j]eter -SFX d3 eler elle/s' ppeler -SFX d3 eler elle/s' [^p].eler -SFX d3 er ions er -SFX d3 er iez er -SFX d3 eter ettent/s' jeter -SFX d3 eter ettent/s' [^j]eter -SFX d3 eler ellent/s' ppeler -SFX d3 eler ellent/s' [^p].eler -SFX d3 er asse/m' er -SFX d3 er asses/t' er -SFX d3 er ât/s' er -SFX d3 er assions er -SFX d3 er assiez er -SFX d3 er assent/s' er - -SFX d4 Y 105 -SFX d4 er er/n'q'd'l'm't's' er -SFX d4 er ant/n'q'l'm't's' er -SFX d4 er é/q' er -SFX d4 eter ette/n'q'j'l'm't' jeter -SFX d4 eter ette/n'q'j'l'm't' [^j]eter -SFX d4 eler elle/n'q'j'l'm't' ppeler -SFX d4 eler elle/n'q'j'l'm't' [^p].eler -SFX d4 eter ettes/n'q'l'm't' jeter -SFX d4 eter ettes/n'q'l'm't' [^j]eter -SFX d4 eler elles/n'q'l'm't' ppeler -SFX d4 eler elles/n'q'l'm't' [^p].eler -SFX d4 eter ette/n'q'l'm't's' jeter -SFX d4 eter ette/n'q'l'm't's' [^j]eter -SFX d4 eler elle/n'q'l'm't's' ppeler -SFX d4 eler elle/n'q'l'm't's' [^p].eler -SFX d4 er ons/n'q'l't' er -SFX d4 er ez/n'q'l'm' er -SFX d4 eter ettent/n'q'l'm't's' jeter -SFX d4 eter ettent/n'q'l'm't's' [^j]eter -SFX d4 eler ellent/n'q'l'm't's' ppeler -SFX d4 eler ellent/n'q'l'm't's' [^p].eler -SFX d4 er ais/n'q'j'l'm't' er -SFX d4 er ais/n'q'l'm't' er -SFX d4 er ait/n'q'l'm't's' er -SFX d4 er ions/n'q'l't' er -SFX d4 er iez/n'q'l'm' er -SFX d4 er aient/n'q'l'm't's' er -SFX d4 er ai/n'q'j'l'm't' er -SFX d4 er as/n'q'l'm't' er -SFX d4 er a/n'q'l'm't's' er -SFX d4 er âmes/n'q'l't' er -SFX d4 er âtes/n'q'l'm' er -SFX d4 er èrent/n'q'l'm't's' er -SFX d4 eter etterai/n'q'j'l'm't' jeter -SFX d4 eter etterai/n'q'j'l'm't' [^j]eter -SFX d4 eler ellerai/n'q'j'l'm't' ppeler -SFX d4 eler ellerai/n'q'j'l'm't' [^p].eler -SFX d4 eter etteras/n'q'l'm't' jeter -SFX d4 eter etteras/n'q'l'm't' [^j]eter -SFX d4 eler elleras/n'q'l'm't' ppeler -SFX d4 eler elleras/n'q'l'm't' [^p].eler -SFX d4 eter ettera/n'q'l'm't's' jeter -SFX d4 eter ettera/n'q'l'm't's' [^j]eter -SFX d4 eler ellera/n'q'l'm't's' ppeler -SFX d4 eler ellera/n'q'l'm't's' [^p].eler -SFX d4 eter etterons/n'q'l't' jeter -SFX d4 eter etterons/n'q'l't' [^j]eter -SFX d4 eler ellerons/n'q'l't' ppeler -SFX d4 eler ellerons/n'q'l't' [^p].eler -SFX d4 eter etterez/n'q'l'm' jeter -SFX d4 eter etterez/n'q'l'm' [^j]eter -SFX d4 eler ellerez/n'q'l'm' ppeler -SFX d4 eler ellerez/n'q'l'm' [^p].eler -SFX d4 eter etteront/n'q'l'm't's' jeter -SFX d4 eter etteront/n'q'l'm't's' [^j]eter -SFX d4 eler elleront/n'q'l'm't's' ppeler -SFX d4 eler elleront/n'q'l'm't's' [^p].eler -SFX d4 eter etterais/n'q'j'l'm't' jeter -SFX d4 eter etterais/n'q'j'l'm't' [^j]eter -SFX d4 eler ellerais/n'q'j'l'm't' ppeler -SFX d4 eler ellerais/n'q'j'l'm't' [^p].eler -SFX d4 eter etterais/n'q'l'm't' jeter -SFX d4 eter etterais/n'q'l'm't' [^j]eter -SFX d4 eler ellerais/n'q'l'm't' ppeler -SFX d4 eler ellerais/n'q'l'm't' [^p].eler -SFX d4 eter etterait/n'q'l'm't's' jeter -SFX d4 eter etterait/n'q'l'm't's' [^j]eter -SFX d4 eler ellerait/n'q'l'm't's' ppeler -SFX d4 eler ellerait/n'q'l'm't's' [^p].eler -SFX d4 eter etterions/n'q'l't' jeter -SFX d4 eter etterions/n'q'l't' [^j]eter -SFX d4 eler ellerions/n'q'l't' ppeler -SFX d4 eler ellerions/n'q'l't' [^p].eler -SFX d4 eter etteriez/n'q'l'm' jeter -SFX d4 eter etteriez/n'q'l'm' [^j]eter -SFX d4 eler elleriez/n'q'l'm' ppeler -SFX d4 eler elleriez/n'q'l'm' [^p].eler -SFX d4 eter etteraient/n'q'l'm't's' jeter -SFX d4 eter etteraient/n'q'l'm't's' [^j]eter -SFX d4 eler elleraient/n'q'l'm't's' ppeler -SFX d4 eler elleraient/n'q'l'm't's' [^p].eler -SFX d4 eter ette/n'j'l'm't' jeter -SFX d4 eter ette/n'j'l'm't' [^j]eter -SFX d4 eler elle/n'j'l'm't' ppeler -SFX d4 eler elle/n'j'l'm't' [^p].eler -SFX d4 eter ettes/n'l'm't' jeter -SFX d4 eter ettes/n'l'm't' [^j]eter -SFX d4 eler elles/n'l'm't' ppeler -SFX d4 eler elles/n'l'm't' [^p].eler -SFX d4 eter ette/n'l'm't's' jeter -SFX d4 eter ette/n'l'm't's' [^j]eter -SFX d4 eler elle/n'l'm't's' ppeler -SFX d4 eler elle/n'l'm't's' [^p].eler -SFX d4 er ions/n'l't' er -SFX d4 er iez/n'l'm' er -SFX d4 eter ettent/n'l'm't's' jeter -SFX d4 eter ettent/n'l'm't's' [^j]eter -SFX d4 eler ellent/n'l'm't's' ppeler -SFX d4 eler ellent/n'l'm't's' [^p].eler -SFX d4 er asse/n'q'j'l'm't' er -SFX d4 er asses/n'q'l'm't' er -SFX d4 er ât/n'q'l'm't's' er -SFX d4 er assions/n'q'l't' er -SFX d4 er assiez/n'q'l'm' er -SFX d4 er assent/n'q'l'm't's' er - -SFX d5 Y 105 -SFX d5 er er/m'q'd'm't's' er -SFX d5 er ant/m'q'd'm't's' er -SFX d5 er é/q' er -SFX d5 eter ette/n'j'm't' jeter -SFX d5 eter ette/n'j'm't' [^j]eter -SFX d5 eler elle/n'j'm't' ppeler -SFX d5 eler elle/n'j'm't' [^p].eler -SFX d5 eter ettes/n'm't' jeter -SFX d5 eter ettes/n'm't' [^j]eter -SFX d5 eler elles/n'm't' ppeler -SFX d5 eler elles/n'm't' [^p].eler -SFX d5 eter ette/n'q'm't's' jeter -SFX d5 eter ette/n'q'm't's' [^j]eter -SFX d5 eler elle/n'q'm't's' ppeler -SFX d5 eler elle/n'q'm't's' [^p].eler -SFX d5 er ons/n't' er -SFX d5 er ez/n'm' er -SFX d5 eter ettent/n'q'm't's' jeter -SFX d5 eter ettent/n'q'm't's' [^j]eter -SFX d5 eler ellent/n'q'm't's' ppeler -SFX d5 eler ellent/n'q'm't's' [^p].eler -SFX d5 er ais/n'j'm't' er -SFX d5 er ais/n'm't' er -SFX d5 er ait/n'q'm't's' er -SFX d5 er ions/n't' er -SFX d5 er iez/n'm' er -SFX d5 er aient/n'q'm't's' er -SFX d5 er ai/n'j'm't' er -SFX d5 er as/n'm't' er -SFX d5 er a/n'q'm't's' er -SFX d5 er âmes/n't' er -SFX d5 er âtes/n'm' er -SFX d5 er èrent/n'q'm't's' er -SFX d5 eter etterai/n'j'm't' jeter -SFX d5 eter etterai/n'j'm't' [^j]eter -SFX d5 eler ellerai/n'j'm't' ppeler -SFX d5 eler ellerai/n'j'm't' [^p].eler -SFX d5 eter etteras/n'm't' jeter -SFX d5 eter etteras/n'm't' [^j]eter -SFX d5 eler elleras/n'm't' ppeler -SFX d5 eler elleras/n'm't' [^p].eler -SFX d5 eter ettera/n'q'm't's' jeter -SFX d5 eter ettera/n'q'm't's' [^j]eter -SFX d5 eler ellera/n'q'm't's' ppeler -SFX d5 eler ellera/n'q'm't's' [^p].eler -SFX d5 eter etterons/n't' jeter -SFX d5 eter etterons/n't' [^j]eter -SFX d5 eler ellerons/n't' ppeler -SFX d5 eler ellerons/n't' [^p].eler -SFX d5 eter etterez/n'm' jeter -SFX d5 eter etterez/n'm' [^j]eter -SFX d5 eler ellerez/n'm' ppeler -SFX d5 eler ellerez/n'm' [^p].eler -SFX d5 eter etteront/n'q'm't's' jeter -SFX d5 eter etteront/n'q'm't's' [^j]eter -SFX d5 eler elleront/n'q'm't's' ppeler -SFX d5 eler elleront/n'q'm't's' [^p].eler -SFX d5 eter etterais/n'j'm't' jeter -SFX d5 eter etterais/n'j'm't' [^j]eter -SFX d5 eler ellerais/n'j'm't' ppeler -SFX d5 eler ellerais/n'j'm't' [^p].eler -SFX d5 eter etterais/n'm't' jeter -SFX d5 eter etterais/n'm't' [^j]eter -SFX d5 eler ellerais/n'm't' ppeler -SFX d5 eler ellerais/n'm't' [^p].eler -SFX d5 eter etterait/n'q'm't's' jeter -SFX d5 eter etterait/n'q'm't's' [^j]eter -SFX d5 eler ellerait/n'q'm't's' ppeler -SFX d5 eler ellerait/n'q'm't's' [^p].eler -SFX d5 eter etterions/n't' jeter -SFX d5 eter etterions/n't' [^j]eter -SFX d5 eler ellerions/n't' ppeler -SFX d5 eler ellerions/n't' [^p].eler -SFX d5 eter etteriez/n'm' jeter -SFX d5 eter etteriez/n'm' [^j]eter -SFX d5 eler elleriez/n'm' ppeler -SFX d5 eler elleriez/n'm' [^p].eler -SFX d5 eter etteraient/n'q'm't's' jeter -SFX d5 eter etteraient/n'q'm't's' [^j]eter -SFX d5 eler elleraient/n'q'm't's' ppeler -SFX d5 eler elleraient/n'q'm't's' [^p].eler -SFX d5 eter ette/n'j'm't' jeter -SFX d5 eter ette/n'j'm't' [^j]eter -SFX d5 eler elle/n'j'm't' ppeler -SFX d5 eler elle/n'j'm't' [^p].eler -SFX d5 eter ettes/n'm't' jeter -SFX d5 eter ettes/n'm't' [^j]eter -SFX d5 eler elles/n'm't' ppeler -SFX d5 eler elles/n'm't' [^p].eler -SFX d5 eter ette/n'q'm't's' jeter -SFX d5 eter ette/n'q'm't's' [^j]eter -SFX d5 eler elle/n'q'm't's' ppeler -SFX d5 eler elle/n'q'm't's' [^p].eler -SFX d5 er ions/n't' er -SFX d5 er iez/n'm' er -SFX d5 eter ettent/n'q'm't's' jeter -SFX d5 eter ettent/n'q'm't's' [^j]eter -SFX d5 eler ellent/n'q'm't's' ppeler -SFX d5 eler ellent/n'q'm't's' [^p].eler -SFX d5 er asse/n'j'm't' er -SFX d5 er asses/n'm't' er -SFX d5 er ât/n'q'm't's' er -SFX d5 er assions/n't' er -SFX d5 er assiez/n'm' er -SFX d5 er assent/n'q'm't's' er - -SFX a+ Y 3 -SFX a+ er és/q' er -SFX a+ er ée/q' er -SFX a+ er ées/q' er - -SFX aA Y 38 -SFX aA ller ller/n'q'd'm't' aller -SFX aA ller llant/n'q'm't' aller -SFX aA ller llé/q' aller -SFX aA ller llés/q' aller -SFX aA ller llée/q' aller -SFX aA ller llées/q' aller -SFX aA ller llons/n'q' aller -SFX aA ller llez/n'q' aller -SFX aA ller llais/n'q'j' aller -SFX aA ller llais/n'q' aller -SFX aA ller llait/n'q' aller -SFX aA ller llons/n'q' aller -SFX aA ller llez/n'q' aller -SFX aA ller llaient/n'q' aller -SFX aA ller llai/n'q'j' aller -SFX aA ller llas/n'q' aller -SFX aA ller lla/n'q' aller -SFX aA ller llâmes/n'q' aller -SFX aA ller llâtes/n'q' aller -SFX aA ller llèrent/n'q' aller -SFX aA ller ille/n'q'j' aller -SFX aA ller illes/n'q' aller -SFX aA ller ille/n'q' aller -SFX aA ller llions/n'q' aller -SFX aA ller lliez/n'q' aller -SFX aA ller illent/n'q' aller -SFX aA ller llasse/n'q'j' aller -SFX aA ller llasses/n'q' aller -SFX aA ller llât/n'q' aller -SFX aA ller llassions/n'q' aller -SFX aA ller llassiez/n'q' aller -SFX aA ller llassent/n'q' aller -SFX aA ller llons/n' aller -SFX aA ller llons-y aller -SFX aA ller llons-nous-en aller -SFX aA ller llez/n' aller -SFX aA ller llez-y aller -SFX aA ller llez-vous-en aller - -SFX aB N 7 -SFX aB ais ais vais -SFX aB ais as vais -SFX aB ais a vais -SFX aB ais ont vais -SFX aB ais a vais -SFX aB ais as-y vais -SFX aB ais a-t'en vais - -SFX aC Y 12 -SFX aC rai rai/n'q'j' irai -SFX aC rai ras/n'q' irai -SFX aC rai ra/n'q' irai -SFX aC rai rons/n'q' irai -SFX aC rai rez/n'q' irai -SFX aC rai ront/n'q' irai -SFX aC rai rais/n'q'j' irai -SFX aC rai rais/n'q' irai -SFX aC rai rait/n'q' irai -SFX aC rai rions/n'q' irai -SFX aC rai riez/n'q' irai -SFX aC rai raient/n'q' irai - -SFX aD Y 51 -SFX aD voyer voyer/n'q'd'l'm't's' envoyer -SFX aD voyer voyant/n'q'l'm't's' envoyer -SFX aD voyer voyé/q' envoyer -SFX aD voyer voyés/q' envoyer -SFX aD voyer voyée/q' envoyer -SFX aD voyer voyées/q' envoyer -SFX aD voyer voie/n'q'j'l'm't' envoyer -SFX aD voyer voies/n'q'l'm't' envoyer -SFX aD voyer voie/n'q'l'm't's' envoyer -SFX aD voyer voyons/n'q'l't' envoyer -SFX aD voyer voyez/n'q'l'm' envoyer -SFX aD voyer voient/n'q'l'm't's' envoyer -SFX aD voyer voyais/n'q'j'l'm't' envoyer -SFX aD voyer voyais/n'q'l'm't' envoyer -SFX aD voyer voyait/n'q'l'm't's' envoyer -SFX aD voyer voyions/n'q'l't' envoyer -SFX aD voyer voyiez/n'q'l'm' envoyer -SFX aD voyer voyaient/n'q'l'm't's' envoyer -SFX aD voyer voyai/n'q'j'l'm't' envoyer -SFX aD voyer voyas/n'q'l'm't' envoyer -SFX aD voyer voya/n'q'l'm't's' envoyer -SFX aD voyer voyâmes/n'q'l't' envoyer -SFX aD voyer voyâtes/n'q'l'm' envoyer -SFX aD voyer voyèrent/n'q'l'm't's' envoyer -SFX aD voyer verrai/n'q'j'l'm't' envoyer -SFX aD voyer verras/n'q'l'm't' envoyer -SFX aD voyer verra/n'q'l'm't's' envoyer -SFX aD voyer verrons/n'q'l't' envoyer -SFX aD voyer verrez/n'q'l'm' envoyer -SFX aD voyer verront/n'q'l'm't's' envoyer -SFX aD voyer verrais/n'q'j'l'm't' envoyer -SFX aD voyer verrais/n'q'l'm't' envoyer -SFX aD voyer verrait/n'q'l'm't's' envoyer -SFX aD voyer verrions/n'q'l't' envoyer -SFX aD voyer verriez/n'q'l'm' envoyer -SFX aD voyer verraient/n'q'l'm't's' envoyer -SFX aD voyer voie/n'j'l'm't' envoyer -SFX aD voyer voies/n'l'm't' envoyer -SFX aD voyer voie/n'l'm't's' envoyer -SFX aD voyer voyions/n'l't' envoyer -SFX aD voyer voyiez/n'l'm' envoyer -SFX aD voyer voient/n'l'm't's' envoyer -SFX aD voyer voyasse/n'q'j'l'm't' envoyer -SFX aD voyer voyasses/n'q'l'm't' envoyer -SFX aD voyer voyât/n'q'l'm't's' envoyer -SFX aD voyer voyassions/n'q'l't' envoyer -SFX aD voyer voyassiez/n'q'l'm' envoyer -SFX aD voyer voyassent/n'q'l'm't's' envoyer -SFX aD voyer voie/n'l'm't' envoyer -SFX aD voyer voyons/n'l' envoyer -SFX aD voyer voyez/n'l'm' envoyer - -SFX aE Y 6 -SFX aE direr direr/n'q'd'l'm't's' direr -SFX aE direr dirant/n'q'l'm't's' direr -SFX aE direr diré/q' direr -SFX aE direr dirés/q' direr -SFX aE direr dirée/q' direr -SFX aE direr dirées/q' direr - -SFX aF N 16 -SFX aF cerner cerner er -SFX aF cerner cernant er -SFX aF cerner cerné er -SFX aF cerner cernés er -SFX aF cerner cernée er -SFX aF cerner cernées er -SFX aF cerner cerne er -SFX aF cerner cernent er -SFX aF cerner cernait er -SFX aF cerner cernaient er -SFX aF cerner cerna er -SFX aF cerner cernèrent er -SFX aF cerner cernera er -SFX aF cerner cerneront er -SFX aF cerner cernerait er -SFX aF cerner cerneraient er - -SFX aG Y 15 -SFX aG er er/n'q'd'm't' er -SFX aG er ant/n'q'm't' er -SFX aG er é er -SFX aG er e/n'q'm't' er -SFX aG er ent/n'q'm't' er -SFX aG er ait/n'q'm't' er -SFX aG er aient/n'q'm't' er -SFX aG er a/n'q'm't' er -SFX aG er èrent/n'q'm't' er -SFX aG er ât/n'q'm't' er -SFX aG er assent/n'q'm't' er -SFX aG er era/n'q'm't' er -SFX aG er eront/n'q'm't' er -SFX aG er erait/n'q'm't' er -SFX aG er eraient/n'q'm't' er - -SFX aY N 51 -SFX aY neler neler neler -SFX aY neler nelant neler -SFX aY neler nelé neler -SFX aY neler nelés neler -SFX aY neler nelée neler -SFX aY neler nelées neler -SFX aY éneler énelle éneler -SFX aY éneler énelles éneler -SFX aY éneler énelle éneler -SFX aY neler nelons neler -SFX aY neler nelez neler -SFX aY éneler énellent éneler -SFX aY neler nelais neler -SFX aY neler nelais neler -SFX aY neler nelait neler -SFX aY neler nelions neler -SFX aY neler neliez neler -SFX aY neler nelaient neler -SFX aY neler nelai neler -SFX aY neler nelas neler -SFX aY neler nela neler -SFX aY neler nelâmes neler -SFX aY neler nelâtes neler -SFX aY neler nelèrent neler -SFX aY éneler énellerai éneler -SFX aY éneler énelleras éneler -SFX aY éneler énellera éneler -SFX aY éneler énellerons éneler -SFX aY éneler énellerez éneler -SFX aY éneler énelleront éneler -SFX aY éneler énellerais éneler -SFX aY éneler énellerais éneler -SFX aY éneler énellerait éneler -SFX aY éneler énellerions éneler -SFX aY éneler énelleriez éneler -SFX aY éneler énelleraient éneler -SFX aY éneler énelle éneler -SFX aY éneler énelles éneler -SFX aY éneler énelle éneler -SFX aY neler nelions neler -SFX aY neler neliez neler -SFX aY éneler énellent éneler -SFX aY neler nelasse neler -SFX aY neler nelasses neler -SFX aY neler nelât neler -SFX aY neler nelassions neler -SFX aY neler nelassiez neler -SFX aY neler nelassent neler -SFX aY éneler énelle éneler -SFX aY neler nelons neler -SFX aY neler nelez neler - -SFX aZ N 51 -SFX aZ teler teler teler -SFX aZ teler telant teler -SFX aZ teler telé teler -SFX aZ teler telés teler -SFX aZ teler telée teler -SFX aZ teler telées teler -SFX aZ ételer ételle ételer -SFX aZ ételer ételles ételer -SFX aZ ételer ételle ételer -SFX aZ teler telons teler -SFX aZ teler telez teler -SFX aZ ételer étellent ételer -SFX aZ teler telais teler -SFX aZ teler telais teler -SFX aZ teler telait teler -SFX aZ teler telions teler -SFX aZ teler teliez teler -SFX aZ teler telaient teler -SFX aZ teler telai teler -SFX aZ teler telas teler -SFX aZ teler tela teler -SFX aZ teler telâmes teler -SFX aZ teler telâtes teler -SFX aZ teler telèrent teler -SFX aZ ételer étellerai ételer -SFX aZ ételer ételleras ételer -SFX aZ ételer étellera ételer -SFX aZ ételer étellerons ételer -SFX aZ ételer étellerez ételer -SFX aZ ételer ételleront ételer -SFX aZ ételer étellerais ételer -SFX aZ ételer étellerais ételer -SFX aZ ételer étellerait ételer -SFX aZ ételer étellerions ételer -SFX aZ ételer ételleriez ételer -SFX aZ ételer ételleraient ételer -SFX aZ ételer ételle ételer -SFX aZ ételer ételles ételer -SFX aZ ételer ételle ételer -SFX aZ teler telions teler -SFX aZ teler teliez teler -SFX aZ ételer étellent ételer -SFX aZ teler telasse teler -SFX aZ teler telasses teler -SFX aZ teler telât teler -SFX aZ teler telassions teler -SFX aZ teler telassiez teler -SFX aZ teler telassent teler -SFX aZ ételer ételle ételer -SFX aZ teler telons teler -SFX aZ teler telez teler - -SFX dA Y 51 -SFX dA peler peler/n'q'd'l'm't's' peler -SFX dA peler pelant/n'q'l'm't's' peler -SFX dA peler pelé/q' peler -SFX dA peler pelés/q' peler -SFX dA peler pelée/q' peler -SFX dA peler pelées/q' peler -SFX dA peler pelle/n'q'j'l't' peler -SFX dA peler pelles/n'q'l'm' peler -SFX dA peler pelle/n'q'l'm't's' peler -SFX dA peler pelons/n'q'l't' peler -SFX dA peler pelez/n'q'l'm' peler -SFX dA peler pellent/n'q'l'm't's' peler -SFX dA peler pelais/n'q'j'l't' peler -SFX dA peler pelais/n'q'l'm' peler -SFX dA peler pelait/n'q'l'm't's' peler -SFX dA peler pelions/n'q'l't' peler -SFX dA peler peliez/n'q'l'm' peler -SFX dA peler pelaient/n'q'l'm't's' peler -SFX dA peler pelai/n'q'j'l't' peler -SFX dA peler pelas/n'q'l'm' peler -SFX dA peler pela/n'q'l'm't's' peler -SFX dA peler pelâmes/n'q'l't' peler -SFX dA peler pelâtes/n'q'l'm' peler -SFX dA peler pelèrent/n'q'l'm't's' peler -SFX dA peler pellerai/n'q'j'l't' peler -SFX dA peler pelleras/n'q'l'm' peler -SFX dA peler pellera/n'q'l'm't's' peler -SFX dA peler pellerons/n'q'l't' peler -SFX dA peler pellerez/n'q'l'm' peler -SFX dA peler pelleront/n'q'l'm't's' peler -SFX dA peler pellerais/n'q'j'l't' peler -SFX dA peler pellerais/n'q'l'm' peler -SFX dA peler pellerait/n'q'l'm't's' peler -SFX dA peler pellerions/n'q'l't' peler -SFX dA peler pelleriez/n'q'l'm' peler -SFX dA peler pelleraient/n'q'l'm't's' peler -SFX dA peler pelle/n'j'l't' peler -SFX dA peler pelles/n'l'm' peler -SFX dA peler pelle/n'l'm't's' peler -SFX dA peler pelions/n'l't' peler -SFX dA peler peliez/n'l'm' peler -SFX dA peler pellent/n'l'm't's' peler -SFX dA peler pelasse/n'q'j'l't' peler -SFX dA peler pelasses/n'q'l'm' peler -SFX dA peler pelât/n'q'l'm't's' peler -SFX dA peler pelassions/n'q'l't' peler -SFX dA peler pelassiez/n'q'l'm' peler -SFX dA peler pelassent/n'q'l'm't's' peler -SFX dA peler pelle/n'l'm' peler -SFX dA peler pelons/n'l' peler -SFX dA peler pelez/n'l'm' peler - -SFX f0 Y 45 -SFX f0 ir ir ir -SFX f0 ir issant ir -SFX f0 ir i ir -SFX f0 ir is ir -SFX f0 ir is ir -SFX f0 ir it ir -SFX f0 ir issons ir -SFX f0 ir issez ir -SFX f0 ir issent ir -SFX f0 ir issais ir -SFX f0 ir issais ir -SFX f0 ir issait ir -SFX f0 ir issions ir -SFX f0 ir issiez ir -SFX f0 ir issaient ir -SFX f0 ir is ir -SFX f0 ir is ir -SFX f0 ir it ir -SFX f0 ir îmes ir -SFX f0 ir îtes ir -SFX f0 ir irent ir -SFX f0 ir irai ir -SFX f0 ir iras ir -SFX f0 ir ira ir -SFX f0 ir irons ir -SFX f0 ir irez ir -SFX f0 ir iront ir -SFX f0 ir irais ir -SFX f0 ir irais ir -SFX f0 ir irait ir -SFX f0 ir irions ir -SFX f0 ir iriez ir -SFX f0 ir iraient ir -SFX f0 ir isse ir -SFX f0 ir isses ir -SFX f0 ir isse ir -SFX f0 ir issions ir -SFX f0 ir issiez ir -SFX f0 ir issent ir -SFX f0 ir isse ir -SFX f0 ir isses ir -SFX f0 ir ît ir -SFX f0 ir issions ir -SFX f0 ir issiez ir -SFX f0 ir issent ir - -SFX f1 Y 45 -SFX f1 ir ir/n'q'd' ir -SFX f1 ir issant/n'q' ir -SFX f1 ir i/q' ir -SFX f1 ir is/n'j' ir -SFX f1 ir is/n' ir -SFX f1 ir it/n'q' ir -SFX f1 ir issons/n' ir -SFX f1 ir issez/n' ir -SFX f1 ir issent/n'q' ir -SFX f1 ir issais/n'j' ir -SFX f1 ir issais/n' ir -SFX f1 ir issait/n'q' ir -SFX f1 ir issions/n' ir -SFX f1 ir issiez/n' ir -SFX f1 ir issaient/n'q' ir -SFX f1 ir is/n'j' ir -SFX f1 ir is/n' ir -SFX f1 ir it/n'q' ir -SFX f1 ir îmes/n' ir -SFX f1 ir îtes/n' ir -SFX f1 ir irent/n'q' ir -SFX f1 ir irai/n'j' ir -SFX f1 ir iras/n' ir -SFX f1 ir ira/n'q' ir -SFX f1 ir irons/n' ir -SFX f1 ir irez/n' ir -SFX f1 ir iront/n'q' ir -SFX f1 ir irais/n'j' ir -SFX f1 ir irais/n' ir -SFX f1 ir irait/n'q' ir -SFX f1 ir irions/n' ir -SFX f1 ir iriez/n' ir -SFX f1 ir iraient/n'q' ir -SFX f1 ir isse/n'j' ir -SFX f1 ir isses/n' ir -SFX f1 ir isse/n'q' ir -SFX f1 ir issions/n' ir -SFX f1 ir issiez/n' ir -SFX f1 ir issent/n'q' ir -SFX f1 ir isse/n'j' ir -SFX f1 ir isses/n' ir -SFX f1 ir ît/n'q' ir -SFX f1 ir issions/n' ir -SFX f1 ir issiez/n' ir -SFX f1 ir issent/n'q' ir - -SFX f2 Y 45 -SFX f2 ir ir/n'q'd'l'm't's' ir -SFX f2 ir issant/n'q'l'm't's' ir -SFX f2 ir i/q' ir -SFX f2 ir is/n'q'j'l't' ir -SFX f2 ir is/n'q'l'm' ir -SFX f2 ir it/n'q'l'm't's' ir -SFX f2 ir issons/n'q'l't' ir -SFX f2 ir issez/n'q'l'm' ir -SFX f2 ir issent/n'q'l'm't's' ir -SFX f2 ir issais/n'q'j'l't' ir -SFX f2 ir issais/n'q'l'm' ir -SFX f2 ir issait/n'q'l'm't's' ir -SFX f2 ir issions/n'q'l't' ir -SFX f2 ir issiez/n'q'l'm' ir -SFX f2 ir issaient/n'q'l'm't's' ir -SFX f2 ir is/n'q'j'l't' ir -SFX f2 ir is/n'q'l'm' ir -SFX f2 ir it/n'q'l'm't's' ir -SFX f2 ir îmes/n'q'l't' ir -SFX f2 ir îtes/n'q'l'm' ir -SFX f2 ir irent/n'q'l'm't's' ir -SFX f2 ir irai/n'q'j'l't' ir -SFX f2 ir iras/n'q'l'm't' ir -SFX f2 ir ira/n'q'l'm't's' ir -SFX f2 ir irons/n'q'l't' ir -SFX f2 ir irez/n'q'l'm' ir -SFX f2 ir iront/n'q'l'm't's' ir -SFX f2 ir irais/n'q'j'l't' ir -SFX f2 ir irais/n'q'l'm' ir -SFX f2 ir irait/n'q'l'm't's' ir -SFX f2 ir irions/n'q'l't' ir -SFX f2 ir iriez/n'q'l'm' ir -SFX f2 ir iraient/n'q'l'm't's' ir -SFX f2 ir isse/n'j'l't' ir -SFX f2 ir isses/n'l'm' ir -SFX f2 ir isse/n'l'm't's' ir -SFX f2 ir issions/n'l't' ir -SFX f2 ir issiez/n'l'm' ir -SFX f2 ir issent/n'l'm't's' ir -SFX f2 ir isse/n'q'j'l't' ir -SFX f2 ir isses/n'q'l'm' ir -SFX f2 ir ît/n'q'l'm't's' ir -SFX f2 ir issions/n'q'l't' ir -SFX f2 ir issiez/n'q'l'm' ir -SFX f2 ir issent/n'q'l'm't's' ir - -SFX f3 Y 45 -SFX f3 ir ir/m't's' ir -SFX f3 ir issant/m't's' ir -SFX f3 ir i ir -SFX f3 ir is/m' ir -SFX f3 ir is/t' ir -SFX f3 ir it/s' ir -SFX f3 ir issons ir -SFX f3 ir issez ir -SFX f3 ir issent/s' ir -SFX f3 ir issais/m' ir -SFX f3 ir issais/t' ir -SFX f3 ir issait/s' ir -SFX f3 ir issions ir -SFX f3 ir issiez ir -SFX f3 ir issaient/s' ir -SFX f3 ir is/m' ir -SFX f3 ir is/t' ir -SFX f3 ir it/s' ir -SFX f3 ir îmes ir -SFX f3 ir îtes ir -SFX f3 ir irent/s' ir -SFX f3 ir irai/m' ir -SFX f3 ir iras/t' ir -SFX f3 ir ira/s' ir -SFX f3 ir irons ir -SFX f3 ir irez ir -SFX f3 ir iront/s' ir -SFX f3 ir irais/m' ir -SFX f3 ir irais/t' ir -SFX f3 ir irait/s' ir -SFX f3 ir irions ir -SFX f3 ir iriez ir -SFX f3 ir iraient/s' ir -SFX f3 ir isse/m' ir -SFX f3 ir isses/t' ir -SFX f3 ir isse/s' ir -SFX f3 ir issions ir -SFX f3 ir issiez ir -SFX f3 ir issent/s' ir -SFX f3 ir isse/m' ir -SFX f3 ir isses/t' ir -SFX f3 ir ît/s' ir -SFX f3 ir issions ir -SFX f3 ir issiez ir -SFX f3 ir issent/s' ir - -SFX f4 Y 45 -SFX f4 ir ir/n'q'd'l'm't's' ir -SFX f4 ir issant/n'q'l'm't's' ir -SFX f4 ir i/q' ir -SFX f4 ir is/n'q'j'l'm't' ir -SFX f4 ir is/n'q'l'm't' ir -SFX f4 ir it/n'q'l'm't's' ir -SFX f4 ir issons/n'q'l't' ir -SFX f4 ir issez/n'q'l'm' ir -SFX f4 ir issent/n'q'l'm't's' ir -SFX f4 ir issais/n'q'j'l'm't' ir -SFX f4 ir issais/n'q'l'm't' ir -SFX f4 ir issait/n'q'l'm't's' ir -SFX f4 ir issions/n'q'l't' ir -SFX f4 ir issiez/n'q'l'm' ir -SFX f4 ir issaient/n'q'l'm't's' ir -SFX f4 ir is/n'q'j'l'm't' ir -SFX f4 ir is/n'q'l'm't' ir -SFX f4 ir it/n'q'l'm't's' ir -SFX f4 ir îmes/n'q'l't' ir -SFX f4 ir îtes/n'q'l'm' ir -SFX f4 ir irent/n'q'l'm't's' ir -SFX f4 ir irai/n'q'j'l'm't' ir -SFX f4 ir iras/n'q'l'm't' ir -SFX f4 ir ira/n'q'l'm't's' ir -SFX f4 ir irons/n'q'l't' ir -SFX f4 ir irez/n'q'l'm' ir -SFX f4 ir iront/n'q'l'm't's' ir -SFX f4 ir irais/n'q'j'l'm't' ir -SFX f4 ir irais/n'q'l'm't' ir -SFX f4 ir irait/n'q'l'm't's' ir -SFX f4 ir irions/n'q'l't' ir -SFX f4 ir iriez/n'q'l'm' ir -SFX f4 ir iraient/n'q'l'm't's' ir -SFX f4 ir isse/n'j'l'm't' ir -SFX f4 ir isses/n'l'm't' ir -SFX f4 ir isse/n'l'm't's' ir -SFX f4 ir issions/n'l't' ir -SFX f4 ir issiez/n'l'm' ir -SFX f4 ir issent/n'l'm't's' ir -SFX f4 ir isse/n'q'j'l'm't' ir -SFX f4 ir isses/n'q'l'm't' ir -SFX f4 ir ît/n'q'l'm't's' ir -SFX f4 ir issions/n'q'l't' ir -SFX f4 ir issiez/n'q'l'm' ir -SFX f4 ir issent/n'q'l'm't's' ir - -SFX f5 Y 45 -SFX f5 ir ir/n'q'd'm't's' ir -SFX f5 ir issant/n'q'm't's' ir -SFX f5 ir i ir -SFX f5 ir is/n'j'm't' ir -SFX f5 ir is/n'm't' ir -SFX f5 ir it/n'q'm't's' ir -SFX f5 ir issons/n't' ir -SFX f5 ir issez/n'm' ir -SFX f5 ir issent/n'q'm't's' ir -SFX f5 ir issais/n'j'm't' ir -SFX f5 ir issais/n'm't' ir -SFX f5 ir issait/n'q'm't's' ir -SFX f5 ir issions/n't' ir -SFX f5 ir issiez/n'm' ir -SFX f5 ir issaient/n'q'm't's' ir -SFX f5 ir is/n'j'm't' ir -SFX f5 ir is/n'm't' ir -SFX f5 ir it/n'q'm't's' ir -SFX f5 ir îmes/n't' ir -SFX f5 ir îtes/n'm' ir -SFX f5 ir irent/n'q'm't's' ir -SFX f5 ir irai/n'j'm't' ir -SFX f5 ir iras/n'm't' ir -SFX f5 ir ira/n'q'm't's' ir -SFX f5 ir irons/n't' ir -SFX f5 ir irez/n'm' ir -SFX f5 ir iront/n'q'm't's' ir -SFX f5 ir irais/n'j'm't' ir -SFX f5 ir irais/n'm't' ir -SFX f5 ir irait/n'q'm't's' ir -SFX f5 ir irions/n't' ir -SFX f5 ir iriez/n'm' ir -SFX f5 ir iraient/n'q'm't's' ir -SFX f5 ir isse/n'j'm't' ir -SFX f5 ir isses/n'm't' ir -SFX f5 ir isse/n'q'm't's' ir -SFX f5 ir issions/n't' ir -SFX f5 ir issiez/n'm' ir -SFX f5 ir issent/n'q'm't's' ir -SFX f5 ir isse/n'j'm't' ir -SFX f5 ir isses/n'm't' ir -SFX f5 ir ît/n'q'm't's' ir -SFX f5 ir issions/n't' ir -SFX f5 ir issiez/n'm' ir -SFX f5 ir issent/n'q'm't's' ir - -SFX f+ Y 3 -SFX f+ ir is/q' ir -SFX f+ ir ie/q' ir -SFX f+ ir ies/q' ir - -SFX fA N 51 -SFX fA aïr aïr aïr -SFX fA aïr aïssant aïr -SFX fA aïr aï aïr -SFX fA aïr aïs aïr -SFX fA aïr aïe aïr -SFX fA aïr aïes aïr -SFX fA aïr ais aïr -SFX fA aïr ais aïr -SFX fA aïr ait aïr -SFX fA aïr aïssons aïr -SFX fA aïr aïssez aïr -SFX fA aïr aïssent aïr -SFX fA aïr aïssais aïr -SFX fA aïr aïssais aïr -SFX fA aïr aïssait aïr -SFX fA aïr aïssions aïr -SFX fA aïr aïssiez aïr -SFX fA aïr aïssaient aïr -SFX fA aïr aïs aïr -SFX fA aïr aïs aïr -SFX fA aïr aït aïr -SFX fA aïr aïmes aïr -SFX fA aïr aïtes aïr -SFX fA aïr aïrent aïr -SFX fA aïr aïrai aïr -SFX fA aïr aïras aïr -SFX fA aïr aïra aïr -SFX fA aïr aïrons aïr -SFX fA aïr aïrez aïr -SFX fA aïr aïront aïr -SFX fA aïr aïrais aïr -SFX fA aïr aïrais aïr -SFX fA aïr aïrait aïr -SFX fA aïr aïrions aïr -SFX fA aïr aïriez aïr -SFX fA aïr aïraient aïr -SFX fA aïr aïsse aïr -SFX fA aïr aïsses aïr -SFX fA aïr aïsse aïr -SFX fA aïr aïssions aïr -SFX fA aïr aïssiez aïr -SFX fA aïr aïssent aïr -SFX fA aïr aïsse aïr -SFX fA aïr aïsses aïr -SFX fA aïr aït aïr -SFX fA aïr aïssions aïr -SFX fA aïr aïssiez aïr -SFX fA aïr aïssent aïr -SFX fA aïr ais aïr -SFX fA aïr aïssons aïr -SFX fA aïr aïssez aïr - -SFX fB Y 36 -SFX fB haïr haïr/s' aïr -SFX fB haïr haïssant/s' aïr -SFX fB haïr haï aïr -SFX fB haïr haïs aïr -SFX fB haïr haïe aïr -SFX fB haïr haïes aïr -SFX fB haïr hait/s' aïr -SFX fB haïr haïssons aïr -SFX fB haïr haïssez aïr -SFX fB haïr haïssent/s' aïr -SFX fB haïr haïssait/s' aïr -SFX fB haïr haïssions aïr -SFX fB haïr haïssiez aïr -SFX fB haïr haïssaient/s' aïr -SFX fB haïr haït/s' aïr -SFX fB haïr haïmes aïr -SFX fB haïr haïtes aïr -SFX fB haïr haïrent/s' aïr -SFX fB haïr haïra/s' aïr -SFX fB haïr haïrons aïr -SFX fB haïr haïrez aïr -SFX fB haïr haïront/s' aïr -SFX fB haïr haïrait/s' aïr -SFX fB haïr haïrions aïr -SFX fB haïr haïriez aïr -SFX fB haïr haïraient/s' aïr -SFX fB haïr haïsse/s' aïr -SFX fB haïr haïssions aïr -SFX fB haïr haïssiez aïr -SFX fB haïr haïssent/s' aïr -SFX fB haïr haït/s' aïr -SFX fB haïr haïssions aïr -SFX fB haïr haïssiez aïr -SFX fB haïr haïssent/s' aïr -SFX fB haïr haïssons-nous aïr -SFX fB haïr haïssez-vous aïr - -SFX fC Y 12 -SFX fC partir partir/n'q'd'l'm't's' impartir -SFX fC partir partissant/n'q'l'm't's' impartir -SFX fC partir parti/q' impartir -SFX fC partir partis/q' impartir -SFX fC partir partie/q' impartir -SFX fC partir parties/q' impartir -SFX fC partir partis/n'q'j'l't' impartir -SFX fC partir partis/n'q'l'm' impartir -SFX fC partir partit/n'q'l'm't's' impartir -SFX fC partir partissons/n'q'l't' impartir -SFX fC partir partissez/n'q'l'm' impartir -SFX fC partir partissent/n'q'l'm't's' impartir - -SFX fD N 14 -SFX fD ortir ortir sortir -SFX fD ortir ortissant sortir -SFX fD ortir ortit sortir -SFX fD ortir ortissent sortir -SFX fD ortir ortissait sortir -SFX fD ortir ortissaient sortir -SFX fD ortir ortira sortir -SFX fD ortir ortiront sortir -SFX fD ortir ortirait sortir -SFX fD ortir ortiraient sortir -SFX fD ortir ortisse sortir -SFX fD ortir ortissent sortir -SFX fD ortir ortît sortir -SFX fD ortir ortissent sortir - -SFX fY N 51 -SFX fY uïr uïr/s' uïr -SFX fY uïr uïssant/m't's' uïr -SFX fY uïr uï uïr -SFX fY uïr uïs uïr -SFX fY uïr uïe uïr -SFX fY uïr uïes uïr -SFX fY uïr uïs/m' uïr -SFX fY uïr uïs/t' uïr -SFX fY uïr uït/s' uïr -SFX fY uïr uïssons uïr -SFX fY uïr uïssez uïr -SFX fY uïr uïssent/s' uïr -SFX fY uïr uïssais/m' uïr -SFX fY uïr uïssais/t' uïr -SFX fY uïr uïssait/s' uïr -SFX fY uïr uïssions uïr -SFX fY uïr uïssiez uïr -SFX fY uïr uïssaient/s' uïr -SFX fY uïr uïs/m' uïr -SFX fY uïr uïs/t' uïr -SFX fY uïr uït/s' uïr -SFX fY uïr uîmes uïr -SFX fY uïr uîtes uïr -SFX fY uïr uïrent/s' uïr -SFX fY uïr uïrai/m' uïr -SFX fY uïr uïras/t' uïr -SFX fY uïr uïra/s' uïr -SFX fY uïr uïrons uïr -SFX fY uïr uïrez uïr -SFX fY uïr uïront/s' uïr -SFX fY uïr uïrais/m' uïr -SFX fY uïr uïrais/t' uïr -SFX fY uïr uïrait/s' uïr -SFX fY uïr uïrions uïr -SFX fY uïr uïriez uïr -SFX fY uïr uïraient/s' uïr -SFX fY uïr uïsse/m' uïr -SFX fY uïr uïsses/t' uïr -SFX fY uïr uïsse/s' uïr -SFX fY uïr uïssions uïr -SFX fY uïr uïssiez uïr -SFX fY uïr uïssent/s' uïr -SFX fY uïr uïsse/m' uïr -SFX fY uïr uïsses/t' uïr -SFX fY uïr uît/s' uïr -SFX fY uïr uïssions uïr -SFX fY uïr uïssiez uïr -SFX fY uïr uïssent/s' uïr -SFX fY uïr uis/t' uïr -SFX fY uïr uïssons uïr -SFX fY uïr uïssez uïr - -SFX fZ N 8 -SFX fZ gir gir agir -SFX fZ gir gissant agir -SFX fZ gir git agir -SFX fZ gir gissait agir -SFX fZ gir gira agir -SFX fZ gir girait agir -SFX fZ gir gisse agir -SFX fZ gir gît agir - -SFX i0 Y 45 -SFX i0 enir enir/n'q'd' enir -SFX i0 enir enant/n'q' enir -SFX i0 enir enu/q' enir -SFX i0 enir iens/n'j' enir -SFX i0 enir iens/n' enir -SFX i0 enir ient/n'q' enir -SFX i0 enir enons/n' enir -SFX i0 enir enez/n' enir -SFX i0 enir iennent/n'q' enir -SFX i0 enir enais/n'j' enir -SFX i0 enir enais/n' enir -SFX i0 enir enait/n'q' enir -SFX i0 enir enions/n' enir -SFX i0 enir eniez/n' enir -SFX i0 enir enaient/n'q' enir -SFX i0 enir ins/n'j' enir -SFX i0 enir ins/n' enir -SFX i0 enir int/n'q' enir -SFX i0 enir înmes/n' enir -SFX i0 enir întes/n' enir -SFX i0 enir inrent/n'q' enir -SFX i0 enir iendrai/n'j' enir -SFX i0 enir iendras/n' enir -SFX i0 enir iendra/n'q' enir -SFX i0 enir iendrons/n' enir -SFX i0 enir iendrez/n' enir -SFX i0 enir iendront/n'q' enir -SFX i0 enir iendrais/n'j' enir -SFX i0 enir iendrais/n' enir -SFX i0 enir iendrait/n'q' enir -SFX i0 enir iendrions/n' enir -SFX i0 enir iendriez/n' enir -SFX i0 enir iendraient/n'q' enir -SFX i0 enir ienne/n'j' enir -SFX i0 enir iennes/n' enir -SFX i0 enir ienne/n'q' enir -SFX i0 enir enions/n' enir -SFX i0 enir eniez/n' enir -SFX i0 enir iennent/n'q' enir -SFX i0 enir insse/n'j' enir -SFX i0 enir insses/n' enir -SFX i0 enir înt/n'q' enir -SFX i0 enir inssions/n' enir -SFX i0 enir inssiez/n' enir -SFX i0 enir inssent/n'q' enir - -SFX i1 Y 45 -SFX i1 enir enir/n'q'd'l'm't's' enir -SFX i1 enir enant/n'q'l'm't's' enir -SFX i1 enir enu/q' enir -SFX i1 enir iens/n'q'j'l'm't' enir -SFX i1 enir iens/n'q'l'm't' enir -SFX i1 enir ient/n'q'l'm't's' enir -SFX i1 enir enons/n'q'l't' enir -SFX i1 enir enez/n'q'l'm' enir -SFX i1 enir iennent/n'q'l'm't's' enir -SFX i1 enir enais/n'q'j'l'm't' enir -SFX i1 enir enais/n'q'l'm't' enir -SFX i1 enir enait/n'q'l'm't's' enir -SFX i1 enir enions/n'q'l't' enir -SFX i1 enir eniez/n'q'l'm' enir -SFX i1 enir enaient/n'q'l'm't's' enir -SFX i1 enir ins/n'q'j'l'm't' enir -SFX i1 enir ins/n'q'l'm't' enir -SFX i1 enir int/n'q'l'm't's' enir -SFX i1 enir înmes/n'q'l't' enir -SFX i1 enir întes/n'q'l'm' enir -SFX i1 enir inrent/n'q'l'm't's' enir -SFX i1 enir iendrai/n'q'j'l'm't' enir -SFX i1 enir iendras/n'q'l'm't' enir -SFX i1 enir iendra/n'q'l'm't's' enir -SFX i1 enir iendrons/n'q'l't' enir -SFX i1 enir iendrez/n'q'l'm' enir -SFX i1 enir iendront/n'q'l'm't's' enir -SFX i1 enir iendrais/n'q'j'l'm't' enir -SFX i1 enir iendrais/n'q'l'm't' enir -SFX i1 enir iendrait/n'q'l'm't's' enir -SFX i1 enir iendrions/n'q'l't' enir -SFX i1 enir iendriez/n'q'l'm' enir -SFX i1 enir iendraient/n'q'l'm't's' enir -SFX i1 enir ienne/n'j'l'm't' enir -SFX i1 enir iennes/n'l'm't' enir -SFX i1 enir ienne/n'l'm't's' enir -SFX i1 enir enions/n'l't' enir -SFX i1 enir eniez/n'l'm' enir -SFX i1 enir iennent/n'q'l'm't's' enir -SFX i1 enir insse/n'q'j'l'm't' enir -SFX i1 enir insses/n'q'l'm't' enir -SFX i1 enir înt/n'q'l'm't's' enir -SFX i1 enir inssions/n'q'l't' enir -SFX i1 enir inssiez/n'q'l'm' enir -SFX i1 enir inssent/n'q'l'm't's' enir - -SFX i2 Y 45 -SFX i2 enir enir/m't's' enir -SFX i2 enir enant/m't's' enir -SFX i2 enir enu enir -SFX i2 enir iens/m' enir -SFX i2 enir iens/t' enir -SFX i2 enir ient/s' enir -SFX i2 enir enons enir -SFX i2 enir enez enir -SFX i2 enir iennent/s' enir -SFX i2 enir enais/m' enir -SFX i2 enir enais/t' enir -SFX i2 enir enait/s' enir -SFX i2 enir enions enir -SFX i2 enir eniez enir -SFX i2 enir enaient/s' enir -SFX i2 enir ins/m' enir -SFX i2 enir ins/t' enir -SFX i2 enir int/s' enir -SFX i2 enir înmes enir -SFX i2 enir întes enir -SFX i2 enir inrent/s' enir -SFX i2 enir iendrai/m' enir -SFX i2 enir iendras/t' enir -SFX i2 enir iendra/s' enir -SFX i2 enir iendrons enir -SFX i2 enir iendrez enir -SFX i2 enir iendront/s' enir -SFX i2 enir iendrais/m' enir -SFX i2 enir iendrais/t' enir -SFX i2 enir iendrait/s' enir -SFX i2 enir iendrions enir -SFX i2 enir iendriez enir -SFX i2 enir iendraient/s' enir -SFX i2 enir ienne/m' enir -SFX i2 enir iennes/t' enir -SFX i2 enir ienne/s' enir -SFX i2 enir enions enir -SFX i2 enir eniez enir -SFX i2 enir iennent/s' enir -SFX i2 enir insse/m' enir -SFX i2 enir insses/t' enir -SFX i2 enir înt/s' enir -SFX i2 enir inssions enir -SFX i2 enir inssiez enir -SFX i2 enir inssent/s' enir - -SFX i5 N 45 -SFX i5 tir tir tir -SFX i5 tir tant tir -SFX i5 tir ti tir -SFX i5 tir s tir -SFX i5 tir s tir -SFX i5 tir t tir -SFX i5 tir tons tir -SFX i5 tir tez tir -SFX i5 tir tent tir -SFX i5 tir tais tir -SFX i5 tir tais tir -SFX i5 tir tait tir -SFX i5 tir tions tir -SFX i5 tir tiez tir -SFX i5 tir taient tir -SFX i5 tir tis tir -SFX i5 tir tis tir -SFX i5 tir tit tir -SFX i5 tir tîmes tir -SFX i5 tir tîtes tir -SFX i5 tir tirent tir -SFX i5 tir tirai tir -SFX i5 tir tiras tir -SFX i5 tir tira tir -SFX i5 tir tirons tir -SFX i5 tir tirez tir -SFX i5 tir tiront tir -SFX i5 tir tirais tir -SFX i5 tir tirais tir -SFX i5 tir tirait tir -SFX i5 tir tirions tir -SFX i5 tir tiriez tir -SFX i5 tir tiraient tir -SFX i5 tir te tir -SFX i5 tir tes tir -SFX i5 tir te tir -SFX i5 tir tions tir -SFX i5 tir tiez tir -SFX i5 tir tent tir -SFX i5 tir tisse tir -SFX i5 tir tisses tir -SFX i5 tir tît tir -SFX i5 tir tissions tir -SFX i5 tir tissiez tir -SFX i5 tir tissent tir - -SFX i+ Y 6 -SFX i+ enir enus/q' enir -SFX i+ enir enue/q' enir -SFX i+ enir enues/q' enir -SFX i+ tir tis/q' tir -SFX i+ tir tie/q' tir -SFX i+ tir ties/q' tir - -SFX iA Y 17 -SFX iA dvenir dvenir/n'q'm't' venir -SFX iA dvenir dvenant/n'q'm't' venir -SFX iA dvenir dvenu/q' venir -SFX iA dvenir dvient/n'q'm't' venir -SFX iA dvenir dviennent/n'q' venir -SFX iA dvenir dvenait/n'q'm't' venir -SFX iA dvenir dvenaient/n'q' venir -SFX iA dvenir dvint/n'q'm't' venir -SFX iA dvenir dvinrent/n'q' venir -SFX iA dvenir dviendra/n'q'm't' venir -SFX iA dvenir dviendront/n'q' venir -SFX iA dvenir dviendrait/n'q'm't' venir -SFX iA dvenir dviendraient/n'q' venir -SFX iA dvenir dvienne/n'q'm't' venir -SFX iA dvenir dviennent/n'q' venir -SFX iA dvenir dvînt/n'q'm't' venir -SFX iA dvenir dvinssent/n'q' venir - -SFX iB Y 48 -SFX iB partenir partenir/n'q'd'm't's' tenir -SFX iB partenir partenant/n'q'm't's' tenir -SFX iB partenir partenu/q' tenir -SFX iB partenir partiens/n'j'm't' tenir -SFX iB partenir partiens/n'm't' tenir -SFX iB partenir partient/n'm't' tenir -SFX iB partenir partenons/n't' tenir -SFX iB partenir partenez/n'm' tenir -SFX iB partenir partiennent/n'm't' tenir -SFX iB partenir partenais/n'j'm't' tenir -SFX iB partenir partenais/n'm't' tenir -SFX iB partenir partenait/n'm't' tenir -SFX iB partenir partenions/n't' tenir -SFX iB partenir parteniez/n'm' tenir -SFX iB partenir partenaient/n'm't's' tenir -SFX iB partenir partins/n'j'm't' tenir -SFX iB partenir partins/n'm't' tenir -SFX iB partenir partint/n'm't' tenir -SFX iB partenir partînmes/n't' tenir -SFX iB partenir partîntes/n'm' tenir -SFX iB partenir partinrent/n'm't's' tenir -SFX iB partenir partiendrai/n'j'm't' tenir -SFX iB partenir partiendras/n'm't' tenir -SFX iB partenir partiendra/n'm't' tenir -SFX iB partenir partiendrons/n't' tenir -SFX iB partenir partiendrez/n'm' tenir -SFX iB partenir partiendront/n'm't's' tenir -SFX iB partenir partiendrais/n'j'm't' tenir -SFX iB partenir partiendrais/n'm't' tenir -SFX iB partenir partiendrait/n'm't' tenir -SFX iB partenir partiendrions/n't' tenir -SFX iB partenir partiendriez/n'm' tenir -SFX iB partenir partiendraient/n'm't's' tenir -SFX iB partenir partienne/n'j'm't' tenir -SFX iB partenir partiennes/n'm't' tenir -SFX iB partenir partienne/n'm't' tenir -SFX iB partenir partenions/n't' tenir -SFX iB partenir parteniez/n'm' tenir -SFX iB partenir partiennent/n'm't's' tenir -SFX iB partenir partinsse/n'j'm't' tenir -SFX iB partenir partinsses/n'm't' tenir -SFX iB partenir partînt/n'm't' tenir -SFX iB partenir partinssions/n't' tenir -SFX iB partenir partinssiez/n'm' tenir -SFX iB partenir partinssent/n'm't's' tenir -SFX iB partenir partiens/n'm't' tenir -SFX iB partenir partenons/n' tenir -SFX iB partenir partenez/n'm' tenir - -SFX iC Y 51 -SFX iC rir rir/n'q'd'l'm't's' [vf]rir -SFX iC rir rant/n'q'l'm't's' [vf]rir -SFX iC rir ert/q' [vf]rir -SFX iC rir erts/q' [vf]rir -SFX iC rir erte/q' [vf]rir -SFX iC rir ertes/q' [vf]rir -SFX iC rir re/n'q'j'l'm't' [vf]rir -SFX iC rir res/n'q'l'm't' [vf]rir -SFX iC rir re/n'q'l'm't's' [vf]rir -SFX iC rir rons/n'q'l't' [vf]rir -SFX iC rir rez/n'q'l'm' [vf]rir -SFX iC rir rent/n'q'l'm't's' [vf]rir -SFX iC rir rais/n'q'j'l'm't' [vf]rir -SFX iC rir rais/n'q'l'm't' [vf]rir -SFX iC rir rait/n'q'l'm't's' [vf]rir -SFX iC rir rions/n'q'l't' [vf]rir -SFX iC rir riez/n'q'l'm' [vf]rir -SFX iC rir raient/n'q'l'm't's' [vf]rir -SFX iC rir ris/n'q'j'l'm't' [vf]rir -SFX iC rir ris/n'q'l'm't' [vf]rir -SFX iC rir rit/n'q'l'm't's' [vf]rir -SFX iC rir rîmes/n'q'l't' [vf]rir -SFX iC rir rîtes/n'q'l'm' [vf]rir -SFX iC rir rirent/n'q'l'm't's' [vf]rir -SFX iC rir rirai/n'q'j'l'm't' [vf]rir -SFX iC rir riras/n'q'l'm't' [vf]rir -SFX iC rir rira/n'q'l'm't's' [vf]rir -SFX iC rir rirons/n'q'l't' [vf]rir -SFX iC rir rirez/n'q'l'm' [vf]rir -SFX iC rir riront/n'q'l'm't's' [vf]rir -SFX iC rir rirais/n'q'j'l'm't' [vf]rir -SFX iC rir rirais/n'q'l'm't' [vf]rir -SFX iC rir rirait/n'q'l'm't's' [vf]rir -SFX iC rir ririons/n'q'l't' [vf]rir -SFX iC rir ririez/n'q'l'm' [vf]rir -SFX iC rir riraient/n'q'l'm't's' [vf]rir -SFX iC rir re/n'j'l'm't' [vf]rir -SFX iC rir res/n'l'm't' [vf]rir -SFX iC rir re/n'l'm't's' [vf]rir -SFX iC rir rions/n'l't' [vf]rir -SFX iC rir riez/n'l'm' [vf]rir -SFX iC rir rent/n'q'l'm't's' [vf]rir -SFX iC rir risse/n'q'j'l'm't' [vf]rir -SFX iC rir risses/n'q'l'm't' [vf]rir -SFX iC rir rît/n'q'l'm't's' [vf]rir -SFX iC rir rissions/n'q'l't' [vf]rir -SFX iC rir rissiez/n'q'l'm' [vf]rir -SFX iC rir rissent/n'q'l'm't's' [vf]rir -SFX iC rir re/n'l'm't' [vf]rir -SFX iC rir rons/n'l' [vf]rir -SFX iC rir rez/n'l'm' [vf]rir - -SFX iD Y 51 -SFX iD courir courir/n'q'd' courir -SFX iD courir courant/n'q' courir -SFX iD courir couru courir -SFX iD courir courus ccourir -SFX iD courir courue ccourir -SFX iD courir courues ccourir -SFX iD courir cours/n'j' courir -SFX iD courir cours/n' courir -SFX iD courir court/n' courir -SFX iD courir courons/n' courir -SFX iD courir courez/n' courir -SFX iD courir courent/n' courir -SFX iD courir courais/n'j' courir -SFX iD courir courais/n' courir -SFX iD courir courait/n' courir -SFX iD courir courions/n' courir -SFX iD courir couriez/n' courir -SFX iD courir couraient/n' courir -SFX iD courir courus/n'j' courir -SFX iD courir courus/n' courir -SFX iD courir courut/n' courir -SFX iD courir courûmes/n' courir -SFX iD courir courûtes/n' courir -SFX iD courir coururent/n' courir -SFX iD courir courrai/n'j' courir -SFX iD courir courras/n' courir -SFX iD courir courra/n' courir -SFX iD courir courrons/n' courir -SFX iD courir courrez/n' courir -SFX iD courir courront/n' courir -SFX iD courir courrais/n'j' courir -SFX iD courir courrais/n' courir -SFX iD courir courrait/n' courir -SFX iD courir courrions/n' courir -SFX iD courir courriez/n' courir -SFX iD courir courraient/n' courir -SFX iD courir coure/n'j' courir -SFX iD courir coures/n' courir -SFX iD courir coure/n' courir -SFX iD courir courions/n' courir -SFX iD courir couriez/n' courir -SFX iD courir courent/n' courir -SFX iD courir courusse/n'j' courir -SFX iD courir courusses/n' courir -SFX iD courir courût/n' courir -SFX iD courir courussions/n' courir -SFX iD courir courussiez/n' courir -SFX iD courir courussent/n' courir -SFX iD courir cours/n' courir -SFX iD courir courons/n' courir -SFX iD courir courez/n' courir - -SFX iE Y 51 -SFX iE ourir ourir/n'q'd'l' courir -SFX iE ourir ourant/n'q' courir -SFX iE ourir ouru/q' courir -SFX iE ourir ourus/q' courir -SFX iE ourir ourue/q' courir -SFX iE ourir ourues/q' courir -SFX iE ourir ours/n'q'j'l' courir -SFX iE ourir ours/n'q'l' courir -SFX iE ourir ourt/n'q'l' courir -SFX iE ourir ourons/n'q'l' courir -SFX iE ourir ourez/n'q'l' courir -SFX iE ourir ourent/n'q'l' courir -SFX iE ourir ourais/n'q'j'l' courir -SFX iE ourir ourais/n'q'l' courir -SFX iE ourir ourait/n'q'l' courir -SFX iE ourir ourions/n'q'l' courir -SFX iE ourir ouriez/n'q'l' courir -SFX iE ourir ouraient/n'q'l' courir -SFX iE ourir ourus/n'q'j'l' courir -SFX iE ourir ourus/n'q'l' courir -SFX iE ourir ourut/n'q'l' courir -SFX iE ourir ourûmes/n'q'l' courir -SFX iE ourir ourûtes/n'q'l' courir -SFX iE ourir oururent/n'q'l' courir -SFX iE ourir ourrai/n'q'j'l' courir -SFX iE ourir ourras/n'q'l' courir -SFX iE ourir ourra/n'q'l' courir -SFX iE ourir ourrons/n'q'l' courir -SFX iE ourir ourrez/n'q'l' courir -SFX iE ourir ourront/n'q'l' courir -SFX iE ourir ourrais/n'q'j'l' courir -SFX iE ourir ourrais/n'q'l' courir -SFX iE ourir ourrait/n'q'l' courir -SFX iE ourir ourrions/n'q'l' courir -SFX iE ourir ourriez/n'q'l' courir -SFX iE ourir ourraient/n'q'l' courir -SFX iE ourir oure/n'q'j'l' courir -SFX iE ourir oures/n'q'l' courir -SFX iE ourir oure/n'q'l' courir -SFX iE ourir ourions/n'q'l' courir -SFX iE ourir ouriez/n'q'l' courir -SFX iE ourir ourent/n'q'l' courir -SFX iE ourir ourusse/n'q'j'l' courir -SFX iE ourir ourusses/n'q'l' courir -SFX iE ourir ourût/n'q'l' courir -SFX iE ourir ourussions/n'q'l' courir -SFX iE ourir ourussiez/n'q'l' courir -SFX iE ourir ourussent/n'q'l' courir -SFX iE ourir ours/n'l' courir -SFX iE ourir ourons/n'l' courir -SFX iE ourir ourez/n'l' courir - -SFX iF N 51 -SFX iF ervir ervir servir -SFX iF ervir ervant servir -SFX iF ervir ervi servir -SFX iF ervir ervis servir -SFX iF ervir ervie servir -SFX iF ervir ervies servir -SFX iF ervir ers servir -SFX iF ervir ers servir -SFX iF ervir ert servir -SFX iF ervir ervons servir -SFX iF ervir ervez servir -SFX iF ervir ervent servir -SFX iF ervir ervais servir -SFX iF ervir ervais servir -SFX iF ervir ervait servir -SFX iF ervir ervions servir -SFX iF ervir erviez servir -SFX iF ervir ervaient servir -SFX iF ervir ervis servir -SFX iF ervir ervis servir -SFX iF ervir ervit servir -SFX iF ervir ervîmes servir -SFX iF ervir ervîtes servir -SFX iF ervir ervirent servir -SFX iF ervir ervirai servir -SFX iF ervir erviras servir -SFX iF ervir ervira servir -SFX iF ervir ervirons servir -SFX iF ervir ervirez servir -SFX iF ervir erviront servir -SFX iF ervir ervirais servir -SFX iF ervir ervirais servir -SFX iF ervir ervirait servir -SFX iF ervir ervirions servir -SFX iF ervir erviriez servir -SFX iF ervir erviraient servir -SFX iF ervir erve servir -SFX iF ervir erves servir -SFX iF ervir erve servir -SFX iF ervir ervions servir -SFX iF ervir erviez servir -SFX iF ervir ervent servir -SFX iF ervir ervisse servir -SFX iF ervir ervisses servir -SFX iF ervir ervît servir -SFX iF ervir ervissions servir -SFX iF ervir ervissiez servir -SFX iF ervir ervissent servir -SFX iF ervir ers servir -SFX iF ervir ervons servir -SFX iF ervir ervez servir - -SFX iG N 51 -SFX iG êtir êtir vêtir -SFX iG êtir êtant vêtir -SFX iG êtir êtu vêtir -SFX iG êtir êtus vêtir -SFX iG êtir êtue vêtir -SFX iG êtir êtues vêtir -SFX iG êtir êts vêtir -SFX iG êtir êts vêtir -SFX iG êtir êt vêtir -SFX iG êtir êtons vêtir -SFX iG êtir êtez vêtir -SFX iG êtir êtont vêtir -SFX iG êtir êtais vêtir -SFX iG êtir êtais vêtir -SFX iG êtir êtait vêtir -SFX iG êtir êtions vêtir -SFX iG êtir êtiez vêtir -SFX iG êtir êtaient vêtir -SFX iG êtir êtis vêtir -SFX iG êtir êtis vêtir -SFX iG êtir êtit vêtir -SFX iG êtir êtîmes vêtir -SFX iG êtir êtîtes vêtir -SFX iG êtir êtirent vêtir -SFX iG êtir êtirai vêtir -SFX iG êtir êtiras vêtir -SFX iG êtir êtira vêtir -SFX iG êtir êtirons vêtir -SFX iG êtir êtirez vêtir -SFX iG êtir êtiront vêtir -SFX iG êtir êtirais vêtir -SFX iG êtir êtirais vêtir -SFX iG êtir êtirait vêtir -SFX iG êtir êtirions vêtir -SFX iG êtir êtiriez vêtir -SFX iG êtir êtiraient vêtir -SFX iG êtir ête vêtir -SFX iG êtir êtes vêtir -SFX iG êtir ête vêtir -SFX iG êtir êtions vêtir -SFX iG êtir êtiez vêtir -SFX iG êtir êtent vêtir -SFX iG êtir êtisse vêtir -SFX iG êtir êtisses vêtir -SFX iG êtir êtît vêtir -SFX iG êtir êtissions vêtir -SFX iG êtir êtissiez vêtir -SFX iG êtir êtissent vêtir -SFX iG êtir êts vêtir -SFX iG êtir êtons vêtir -SFX iG êtir êtez vêtir - -SFX iI N 48 -SFX iI ormir ormir dormir -SFX iI ormir ormant dormir -SFX iI ormir ormi dormir -SFX iI ormir ors dormir -SFX iI ormir ors dormir -SFX iI ormir ort dormir -SFX iI ormir ormons dormir -SFX iI ormir ormez dormir -SFX iI ormir orment dormir -SFX iI ormir ormais dormir -SFX iI ormir ormais dormir -SFX iI ormir ormait dormir -SFX iI ormir ormions dormir -SFX iI ormir ormiez dormir -SFX iI ormir ormaient dormir -SFX iI ormir ormis dormir -SFX iI ormir ormis dormir -SFX iI ormir ormit dormir -SFX iI ormir ormîmes dormir -SFX iI ormir ormîtes dormir -SFX iI ormir ormirent dormir -SFX iI ormir ormirai dormir -SFX iI ormir ormiras dormir -SFX iI ormir ormira dormir -SFX iI ormir ormirons dormir -SFX iI ormir ormirez dormir -SFX iI ormir ormiront dormir -SFX iI ormir ormirais dormir -SFX iI ormir ormirais dormir -SFX iI ormir ormirait dormir -SFX iI ormir ormirions dormir -SFX iI ormir ormiriez dormir -SFX iI ormir ormiraient dormir -SFX iI ormir orme dormir -SFX iI ormir ormes dormir -SFX iI ormir orme dormir -SFX iI ormir ormions dormir -SFX iI ormir ormiez dormir -SFX iI ormir orment dormir -SFX iI ormir ormisse dormir -SFX iI ormir ormisses dormir -SFX iI ormir ormît dormir -SFX iI ormir ormissions dormir -SFX iI ormir ormissiez dormir -SFX iI ormir ormissent dormir -SFX iI ormir ors dormir -SFX iI ormir ormons dormir -SFX iI ormir ormez dormir - -SFX iJ Y 51 -SFX iJ dormir dormir/n'q'd'l'm't's' dormir -SFX iJ dormir dormant/n'q'l'm't's' dormir -SFX iJ dormir dormi/q' dormir -SFX iJ dormir dormis/q' dormir -SFX iJ dormir dormie/q' dormir -SFX iJ dormir dormies/q' dormir -SFX iJ dormir dors/n'q'j'l'm't' dormir -SFX iJ dormir dors/n'q'l'm't' dormir -SFX iJ dormir dort/n'q'l'm't's' dormir -SFX iJ dormir dormons/n'q'l't' dormir -SFX iJ dormir dormez/n'q'l'm' dormir -SFX iJ dormir dorment/n'q'l'm't's' dormir -SFX iJ dormir dormais/n'q'j'l'm't' dormir -SFX iJ dormir dormais/n'q'l'm't' dormir -SFX iJ dormir dormait/n'q'l'm't's' dormir -SFX iJ dormir dormions/n'q'l't' dormir -SFX iJ dormir dormiez/n'q'l'm' dormir -SFX iJ dormir dormaient/n'q'l'm't's' dormir -SFX iJ dormir dormis/n'q'j'l'm't' dormir -SFX iJ dormir dormis/n'q'l'm't' dormir -SFX iJ dormir dormit/n'q'l'm't's' dormir -SFX iJ dormir dormîmes/n'q'l't' dormir -SFX iJ dormir dormîtes/n'q'l'm' dormir -SFX iJ dormir dormirent/n'q'l'm't's' dormir -SFX iJ dormir dormirai/n'q'j'l'm't' dormir -SFX iJ dormir dormiras/n'q'l'm't' dormir -SFX iJ dormir dormira/n'q'l'm't's' dormir -SFX iJ dormir dormirons/n'q'l't' dormir -SFX iJ dormir dormirez/n'q'l'm' dormir -SFX iJ dormir dormiront/n'q'l'm't's' dormir -SFX iJ dormir dormirais/n'q'j'l'm't' dormir -SFX iJ dormir dormirais/n'q'l'm't' dormir -SFX iJ dormir dormirait/n'q'l'm't's' dormir -SFX iJ dormir dormirions/n'q'l't' dormir -SFX iJ dormir dormiriez/n'q'l'm' dormir -SFX iJ dormir dormiraient/n'q'l'm't's' dormir -SFX iJ dormir dorme/n'j'l'm't' dormir -SFX iJ dormir dormes/n'l'm't' dormir -SFX iJ dormir dorme/n'l'm't's' dormir -SFX iJ dormir dormions/n'l't' dormir -SFX iJ dormir dormiez/n'l'm' dormir -SFX iJ dormir dorment/n'l'm't's' dormir -SFX iJ dormir dormisse/n'q'j'l'm't' dormir -SFX iJ dormir dormisses/n'q'l'm't' dormir -SFX iJ dormir dormît/n'q'l'm't's' dormir -SFX iJ dormir dormissions/n'q'l't' dormir -SFX iJ dormir dormissiez/n'q'l'm' dormir -SFX iJ dormir dormissent/n'q'l'm't's' dormir -SFX iJ dormir dors/n'l'm't' dormir -SFX iJ dormir dormons/n'l' dormir -SFX iJ dormir dormez/n'l'm' dormir - -SFX iK Y 50 -SFX iK quérir quérir/n'q'd'l'm't's' quérir -SFX iK quérir quérant/n'q'l'm't's' quérir -SFX iK quérir quis/q' quérir -SFX iK quérir quise/q' quérir -SFX iK quérir quises/q' quérir -SFX iK quérir quiers/n'q'j'l'm't' quérir -SFX iK quérir quiers/n'q'l'm't' quérir -SFX iK quérir quiert/n'q'l'm't's' quérir -SFX iK quérir quérons/n'q'l't' quérir -SFX iK quérir quérez/n'q'l'm' quérir -SFX iK quérir quièrent/n'q'l'm't's' quérir -SFX iK quérir quérais/n'q'j'l'm't' quérir -SFX iK quérir quérais/n'q'l'm't' quérir -SFX iK quérir quérait/n'q'l'm't's' quérir -SFX iK quérir quérions/n'q'l't' quérir -SFX iK quérir quériez/n'q'l'm' quérir -SFX iK quérir quéraient/n'q'l'm't's' quérir -SFX iK quérir quis/n'q'j'l'm't' quérir -SFX iK quérir quis/n'q'l'm't' quérir -SFX iK quérir quit/n'q'l'm't's' quérir -SFX iK quérir quîmes/n'q'l't' quérir -SFX iK quérir quîtes/n'q'l'm' quérir -SFX iK quérir quirent/n'q'l'm't's' quérir -SFX iK quérir querrai/n'q'j'l'm't' quérir -SFX iK quérir querras/n'q'l'm't' quérir -SFX iK quérir querra/n'q'l'm't's' quérir -SFX iK quérir querrons/n'q'l't' quérir -SFX iK quérir querrez/n'q'l'm' quérir -SFX iK quérir querront/n'q'l'm't's' quérir -SFX iK quérir querrais/n'q'j'l'm't' quérir -SFX iK quérir querrais/n'q'l'm't' quérir -SFX iK quérir querrait/n'q'l'm't's' quérir -SFX iK quérir querrions/n'q'l't' quérir -SFX iK quérir querriez/n'q'l'm' quérir -SFX iK quérir querraient/n'q'l'm't's' quérir -SFX iK quérir quière/n'j'l'm't' quérir -SFX iK quérir quières/n'l'm't' quérir -SFX iK quérir quière/n'l'm't's' quérir -SFX iK quérir quérions/n'l't' quérir -SFX iK quérir quériez/n'l'm' quérir -SFX iK quérir quièrent/n'q'l'm't's' quérir -SFX iK quérir quisse/n'q'j'l'm't' quérir -SFX iK quérir quisses/n'q'l'm't' quérir -SFX iK quérir quît/n'q'l'm't's' quérir -SFX iK quérir quissions/n'q'l't' quérir -SFX iK quérir quissiez/n'q'l'm' quérir -SFX iK quérir quissent/n'q'l'm't's' quérir -SFX iK quérir quiers/n'l'm't' quérir -SFX iK quérir quérons/n'l' quérir -SFX iK quérir quérez/n'l'm' quérir - -SFX iM Y 50 -SFX iM quérir quérir/m't's' quérir -SFX iM quérir quérant/m't's' quérir -SFX iM quérir quis quérir -SFX iM quérir quise quérir -SFX iM quérir quises quérir -SFX iM quérir quiers/m' quérir -SFX iM quérir quiers/t' quérir -SFX iM quérir quiert/s' quérir -SFX iM quérir quérons quérir -SFX iM quérir quérez quérir -SFX iM quérir quièrent/s' quérir -SFX iM quérir quérais/m' quérir -SFX iM quérir quérais/t' quérir -SFX iM quérir quérait/s' quérir -SFX iM quérir quérions quérir -SFX iM quérir quériez quérir -SFX iM quérir quéraient/s' quérir -SFX iM quérir quis/m' quérir -SFX iM quérir quis/t' quérir -SFX iM quérir quit/s' quérir -SFX iM quérir quîmes quérir -SFX iM quérir quîtes quérir -SFX iM quérir quirent/s' quérir -SFX iM quérir querrai/m' quérir -SFX iM quérir querras/t' quérir -SFX iM quérir querra/s' quérir -SFX iM quérir querrons quérir -SFX iM quérir querrez quérir -SFX iM quérir querront/s' quérir -SFX iM quérir querrais/m' quérir -SFX iM quérir querrais/t' quérir -SFX iM quérir querrait/s' quérir -SFX iM quérir querrions quérir -SFX iM quérir querriez quérir -SFX iM quérir querraient/s' quérir -SFX iM quérir quière/m' quérir -SFX iM quérir quières/t' quérir -SFX iM quérir quière/s' quérir -SFX iM quérir quérions quérir -SFX iM quérir quériez quérir -SFX iM quérir quièrent/s' quérir -SFX iM quérir quisse/m' quérir -SFX iM quérir quisses/t' quérir -SFX iM quérir quît/s' quérir -SFX iM quérir quissions quérir -SFX iM quérir quissiez quérir -SFX iM quérir quissent/s' quérir -SFX iM quérir quiers/t' quérir -SFX iM quérir quérons quérir -SFX iM quérir quérez quérir - -SFX iN N 48 -SFX iN uir uir fuir -SFX iN uir uyant fuir -SFX iN uir ui fuir -SFX iN uir uis fuir -SFX iN uir uis fuir -SFX iN uir uit fuir -SFX iN uir uyons fuir -SFX iN uir uyez fuir -SFX iN uir uient fuir -SFX iN uir uyais fuir -SFX iN uir uyais fuir -SFX iN uir uyait fuir -SFX iN uir uyions fuir -SFX iN uir uyiez fuir -SFX iN uir uyaient fuir -SFX iN uir uis fuir -SFX iN uir uis fuir -SFX iN uir uit fuir -SFX iN uir uîmes fuir -SFX iN uir uîtes fuir -SFX iN uir uirent fuir -SFX iN uir uirai fuir -SFX iN uir uiras fuir -SFX iN uir uira fuir -SFX iN uir uirons fuir -SFX iN uir uirez fuir -SFX iN uir uiront fuir -SFX iN uir uirais fuir -SFX iN uir uirais fuir -SFX iN uir uirait fuir -SFX iN uir uirions fuir -SFX iN uir uiriez fuir -SFX iN uir uiraient fuir -SFX iN uir uie fuir -SFX iN uir uies fuir -SFX iN uir uie fuir -SFX iN uir uyions fuir -SFX iN uir uyiez fuir -SFX iN uir uient fuir -SFX iN uir uisse fuir -SFX iN uir uisses fuir -SFX iN uir uît fuir -SFX iN uir uissions fuir -SFX iN uir uissiez fuir -SFX iN uir uissent fuir -SFX iN uir uis fuir -SFX iN uir uyons fuir -SFX iN uir uyez fuir - -SFX iO Y 51 -SFX iO fuir fuir/m't's' enfuir -SFX iO fuir fuyant/m't's' enfuir -SFX iO fuir fui enfuir -SFX iO fuir fuis enfuir -SFX iO fuir fuie enfuir -SFX iO fuir fuies enfuir -SFX iO fuir fuis/m' enfuir -SFX iO fuir fuis/t' enfuir -SFX iO fuir fuit/s' enfuir -SFX iO fuir fuyons enfuir -SFX iO fuir fuyez enfuir -SFX iO fuir fuient/s' enfuir -SFX iO fuir fuyais/m' enfuir -SFX iO fuir fuyais/t' enfuir -SFX iO fuir fuyait/s' enfuir -SFX iO fuir fuyions enfuir -SFX iO fuir fuyiez enfuir -SFX iO fuir fuyaient/s' enfuir -SFX iO fuir fuis/m' enfuir -SFX iO fuir fuis/t' enfuir -SFX iO fuir fuit/s' enfuir -SFX iO fuir fuîmes enfuir -SFX iO fuir fuîtes enfuir -SFX iO fuir fuirent/s' enfuir -SFX iO fuir fuirai/m' enfuir -SFX iO fuir fuiras/t' enfuir -SFX iO fuir fuira/s' enfuir -SFX iO fuir fuirons enfuir -SFX iO fuir fuirez enfuir -SFX iO fuir fuiront/s' enfuir -SFX iO fuir fuirais/m' enfuir -SFX iO fuir fuirais/t' enfuir -SFX iO fuir fuirait/s' enfuir -SFX iO fuir fuirions enfuir -SFX iO fuir fuiriez enfuir -SFX iO fuir fuiraient/s' enfuir -SFX iO fuir fuie/m' enfuir -SFX iO fuir fuies/t' enfuir -SFX iO fuir fuie/s' enfuir -SFX iO fuir fuyions enfuir -SFX iO fuir fuyiez enfuir -SFX iO fuir fuient/s' enfuir -SFX iO fuir fuisse/m' enfuir -SFX iO fuir fuisses/t' enfuir -SFX iO fuir fuît/s' enfuir -SFX iO fuir fuissions enfuir -SFX iO fuir fuissiez enfuir -SFX iO fuir fuissent/s' enfuir -SFX iO fuir fuis/t' enfuir -SFX iO fuir fuyons enfuir -SFX iO fuir fuyez enfuir - -SFX iP N 51 -SFX iP ourir ourir mourir -SFX iP ourir ourant mourir -SFX iP ourir ort mourir -SFX iP ourir orts mourir -SFX iP ourir orte mourir -SFX iP ourir ortes mourir -SFX iP ourir eurs mourir -SFX iP ourir eurs mourir -SFX iP ourir eurt mourir -SFX iP ourir ourons mourir -SFX iP ourir ourez mourir -SFX iP ourir eurent mourir -SFX iP ourir ourais mourir -SFX iP ourir ourais mourir -SFX iP ourir ourait mourir -SFX iP ourir ourions mourir -SFX iP ourir ouriez mourir -SFX iP ourir ouraient mourir -SFX iP ourir ourus mourir -SFX iP ourir ourus mourir -SFX iP ourir ourut mourir -SFX iP ourir ourûmes mourir -SFX iP ourir ourûtes mourir -SFX iP ourir oururent mourir -SFX iP ourir ourrai mourir -SFX iP ourir ourras mourir -SFX iP ourir ourra mourir -SFX iP ourir ourrons mourir -SFX iP ourir ourrez mourir -SFX iP ourir ourront mourir -SFX iP ourir ourrais mourir -SFX iP ourir ourrais mourir -SFX iP ourir ourrait mourir -SFX iP ourir ourrions mourir -SFX iP ourir ourriez mourir -SFX iP ourir ourraient mourir -SFX iP ourir eure mourir -SFX iP ourir eures mourir -SFX iP ourir eure mourir -SFX iP ourir ourions mourir -SFX iP ourir ouriez mourir -SFX iP ourir eurent mourir -SFX iP ourir ourusse mourir -SFX iP ourir ourusses mourir -SFX iP ourir ourût mourir -SFX iP ourir ourussions mourir -SFX iP ourir ourussiez mourir -SFX iP ourir ourussent mourir -SFX iP ourir eurs mourir -SFX iP ourir ourons mourir -SFX iP ourir ourez mourir - -SFX iQ N 51 -SFX iQ ouillir ouillir bouillir -SFX iQ ouillir ouillant bouillir -SFX iQ ouillir ouilli bouillir -SFX iQ ouillir ouillis bouillir -SFX iQ ouillir ouillie bouillir -SFX iQ ouillir ouillies bouillir -SFX iQ ouillir ous bouillir -SFX iQ ouillir ous bouillir -SFX iQ ouillir out bouillir -SFX iQ ouillir ouillons bouillir -SFX iQ ouillir ouillez bouillir -SFX iQ ouillir ouillent bouillir -SFX iQ ouillir ouillais bouillir -SFX iQ ouillir ouillais bouillir -SFX iQ ouillir ouillait bouillir -SFX iQ ouillir ouillions bouillir -SFX iQ ouillir ouilliez bouillir -SFX iQ ouillir ouillaient bouillir -SFX iQ ouillir ouillis bouillir -SFX iQ ouillir ouillis bouillir -SFX iQ ouillir ouillit bouillir -SFX iQ ouillir ouillîmes bouillir -SFX iQ ouillir ouillîtes bouillir -SFX iQ ouillir ouillirent bouillir -SFX iQ ouillir ouillirai bouillir -SFX iQ ouillir ouilliras bouillir -SFX iQ ouillir ouillira bouillir -SFX iQ ouillir ouillirons bouillir -SFX iQ ouillir ouillirez bouillir -SFX iQ ouillir ouilliront bouillir -SFX iQ ouillir ouillirais bouillir -SFX iQ ouillir ouillirais bouillir -SFX iQ ouillir ouillirait bouillir -SFX iQ ouillir ouillirions bouillir -SFX iQ ouillir ouilliriez bouillir -SFX iQ ouillir ouilliraient bouillir -SFX iQ ouillir ouille bouillir -SFX iQ ouillir ouilles bouillir -SFX iQ ouillir ouille bouillir -SFX iQ ouillir ouillions bouillir -SFX iQ ouillir ouilliez bouillir -SFX iQ ouillir ouillent bouillir -SFX iQ ouillir ouillisse bouillir -SFX iQ ouillir ouillisses bouillir -SFX iQ ouillir ouillît bouillir -SFX iQ ouillir ouillissions bouillir -SFX iQ ouillir ouillissiez bouillir -SFX iQ ouillir ouillissent bouillir -SFX iQ ouillir ous bouillir -SFX iQ ouillir ouillons bouillir -SFX iQ ouillir ouillez bouillir - -SFX iR Y 54 -SFX iR ueillir ueillir/n'q'd'l'm't's' cueillir -SFX iR ueillir ueillant/n'q'l'm't's' cueillir -SFX iR ueillir ueilli/q' cueillir -SFX iR ueillir ueillis/q' cueillir -SFX iR ueillir ueillie/q' cueillir -SFX iR ueillir ueillies/q' cueillir -SFX iR ueillir ueille/n'q'j'l't' cueillir -SFX iR ueillir ueilles/n'q'l'm' cueillir -SFX iR ueillir ueille/n'q'l'm't's' cueillir -SFX iR ueillir ueillons/n'q'l't' cueillir -SFX iR ueillir ueillez/n'q'l'm' cueillir -SFX iR ueillir ueillent/n'q'l'm't's' cueillir -SFX iR ueillir ueillais/n'q'j'l't' cueillir -SFX iR ueillir ueillais/n'q'l'm' cueillir -SFX iR ueillir ueillait/n'q'l'm't's' cueillir -SFX iR ueillir ueillions/n'q'l't' cueillir -SFX iR ueillir ueilliez/n'q'l'm' cueillir -SFX iR ueillir ueillaient/n'q'l'm't's' cueillir -SFX iR ueillir ueillis/n'q'j'l't' cueillir -SFX iR ueillir ueillis/n'q'l'm' cueillir -SFX iR ueillir ueillit/n'q'l'm't's' cueillir -SFX iR ueillir ueillîmes/n'q'l't' cueillir -SFX iR ueillir ueillîtes/n'q'l'm' cueillir -SFX iR ueillir ueillirent/n'q'l'm't's' cueillir -SFX iR ueillir ueillerai/n'q'j'l't' cueillir -SFX iR ueillir ueilleras/n'q'l'm' cueillir -SFX iR ueillir ueillera/n'q'l'm't's' cueillir -SFX iR ueillir ueillerons/n'q'l't' cueillir -SFX iR ueillir ueillerez/n'q'l'm' cueillir -SFX iR ueillir ueilleront/n'q'l'm't's' cueillir -SFX iR ueillir ueillerais/n'q'j'l't' cueillir -SFX iR ueillir ueillerais/n'q'l'm' cueillir -SFX iR ueillir ueillerait/n'q'l'm't's' cueillir -SFX iR ueillir ueillerions/n'q'l't' cueillir -SFX iR ueillir ueilleriez/n'q'l'm' cueillir -SFX iR ueillir ueilleraient/n'q'l'm't's' cueillir -SFX iR ueillir ueille/n'j'l't' cueillir -SFX iR ueillir ueilles/n'l'm' cueillir -SFX iR ueillir ueille/n'l'm't's' cueillir -SFX iR ueillir ueillions/n'l't' cueillir -SFX iR ueillir ueilliez/n'l'm' cueillir -SFX iR ueillir ueillent/n'q'l'm't's' cueillir -SFX iR ueillir ueillisse/n'q'j'l't' cueillir -SFX iR ueillir ueillisses/n'q'l'm' cueillir -SFX iR ueillir ueillît/n'q'l'm't's' cueillir -SFX iR ueillir ueillissions/n'q'l't' cueillir -SFX iR ueillir ueillissiez/n'q'l'm' cueillir -SFX iR ueillir ueillissent/n'q'l'm't's' cueillir -SFX iR ueillir ueilles/n'l'm' cueillir -SFX iR ueillir ueilles recueillir -SFX iR ueillir ueillons/n'l' cueillir -SFX iR ueillir ueillons recueillir -SFX iR ueillir ueillez/n'l'm' cueillir -SFX iR ueillir ueillez recueillir - -SFX iS N 48 -SFX iS aillir aillir aillir -SFX iS aillir aillant aillir -SFX iS aillir ailli aillir -SFX iS aillir aille aillir -SFX iS aillir ailles aillir -SFX iS aillir aille aillir -SFX iS aillir aillons aillir -SFX iS aillir aillez aillir -SFX iS aillir aillent aillir -SFX iS aillir aillais aillir -SFX iS aillir aillais aillir -SFX iS aillir aillait aillir -SFX iS aillir aillions aillir -SFX iS aillir ailliez aillir -SFX iS aillir aillaient aillir -SFX iS aillir aillis aillir -SFX iS aillir aillis aillir -SFX iS aillir aillit aillir -SFX iS aillir aillîmes aillir -SFX iS aillir aillîtes aillir -SFX iS aillir aillirent aillir -SFX iS aillir aillirai aillir -SFX iS aillir ailliras aillir -SFX iS aillir aillira aillir -SFX iS aillir aillirons aillir -SFX iS aillir aillirez aillir -SFX iS aillir ailliront aillir -SFX iS aillir aillirais aillir -SFX iS aillir aillirais aillir -SFX iS aillir aillirait aillir -SFX iS aillir aillirions aillir -SFX iS aillir ailliriez aillir -SFX iS aillir ailliraient aillir -SFX iS aillir aille aillir -SFX iS aillir ailles aillir -SFX iS aillir aille aillir -SFX iS aillir aillions aillir -SFX iS aillir ailliez aillir -SFX iS aillir aillent aillir -SFX iS aillir aillisse aillir -SFX iS aillir aillisses aillir -SFX iS aillir aillît aillir -SFX iS aillir aillissions aillir -SFX iS aillir aillissiez aillir -SFX iS aillir aillissent aillir -SFX iS aillir aille aillir -SFX iS aillir aillons aillir -SFX iS aillir aillez aillir - -SFX iT Y 51 -SFX iT saillir saillir/n'q'd'l'm't's' aillir -SFX iT saillir saillant/n'q'l'm't's' aillir -SFX iT saillir sailli/q' aillir -SFX iT saillir saillis/q' aillir -SFX iT saillir saillie/q' aillir -SFX iT saillir saillies/q' aillir -SFX iT saillir saille/n'q'j'l'm't' aillir -SFX iT saillir sailles/n'q'l'm't' aillir -SFX iT saillir saille/n'q'l'm't's' aillir -SFX iT saillir saillons/n'q'l't' aillir -SFX iT saillir saillez/n'q'l'm' aillir -SFX iT saillir saillent/n'q'l'm't's' aillir -SFX iT saillir saillais/n'q'j'l'm't' aillir -SFX iT saillir saillais/n'q'l'm't' aillir -SFX iT saillir saillait/n'q'l'm't's' aillir -SFX iT saillir saillions/n'q'l't' aillir -SFX iT saillir sailliez/n'q'l'm' aillir -SFX iT saillir saillaient/n'q'l'm't's' aillir -SFX iT saillir saillis/n'q'j'l'm't' aillir -SFX iT saillir saillis/n'q'l'm't' aillir -SFX iT saillir saillit/n'q'l'm't's' aillir -SFX iT saillir saillîmes/n'q'l't' aillir -SFX iT saillir saillîtes/n'q'l'm' aillir -SFX iT saillir saillirent/n'q'l'm't's' aillir -SFX iT saillir saillirai/n'q'j'l'm't' aillir -SFX iT saillir sailliras/n'q'l'm't' aillir -SFX iT saillir saillira/n'q'l'm't's' aillir -SFX iT saillir saillirons/n'q'l't' aillir -SFX iT saillir saillirez/n'q'l'm' aillir -SFX iT saillir sailliront/n'q'l'm't's' aillir -SFX iT saillir saillirais/n'q'j'l'm't' aillir -SFX iT saillir saillirais/n'q'l'm't' aillir -SFX iT saillir saillirait/n'q'l'm't's' aillir -SFX iT saillir saillirions/n'q'l't' aillir -SFX iT saillir sailliriez/n'q'l'm' aillir -SFX iT saillir sailliraient/n'q'l'm't's' aillir -SFX iT saillir saille/n'j'l'm't' aillir -SFX iT saillir sailles/n'l'm't' aillir -SFX iT saillir saille/n'l'm't's' aillir -SFX iT saillir saillions/n'l't' aillir -SFX iT saillir sailliez/n'l'm' aillir -SFX iT saillir saillent/n'l'm't's' aillir -SFX iT saillir saillisse/n'q'j'l'm't' aillir -SFX iT saillir saillisses/n'q'l'm't' aillir -SFX iT saillir saillît/n'q'l'm't's' aillir -SFX iT saillir saillissions/n'q'l't' aillir -SFX iT saillir saillissiez/n'q'l'm' aillir -SFX iT saillir saillissent/n'q'l'm't's' aillir -SFX iT saillir saille/n'l'm' aillir -SFX iT saillir saillons/n'l' aillir -SFX iT saillir saillez/n'l'm' aillir - -SFX iU N 48 -SFX iU aillir aillir faillir -SFX iU aillir aillant faillir -SFX iU aillir ailli faillir -SFX iU aillir ux faillir -SFX iU aillir ux faillir -SFX iU aillir ut faillir -SFX iU aillir aillons faillir -SFX iU aillir aillez faillir -SFX iU aillir aillent faillir -SFX iU aillir aillais faillir -SFX iU aillir aillais faillir -SFX iU aillir aillait faillir -SFX iU aillir aillions faillir -SFX iU aillir ailliez faillir -SFX iU aillir aillaient faillir -SFX iU aillir aillis faillir -SFX iU aillir aillis faillir -SFX iU aillir aillit faillir -SFX iU aillir aillîmes faillir -SFX iU aillir aillîtes faillir -SFX iU aillir aillirent faillir -SFX iU aillir aillirai faillir -SFX iU aillir ailliras faillir -SFX iU aillir aillira faillir -SFX iU aillir aillirons faillir -SFX iU aillir aillirez faillir -SFX iU aillir ailliront faillir -SFX iU aillir aillirais faillir -SFX iU aillir aillirais faillir -SFX iU aillir aillirait faillir -SFX iU aillir aillirions faillir -SFX iU aillir ailliriez faillir -SFX iU aillir ailliraient faillir -SFX iU aillir aille faillir -SFX iU aillir ailles faillir -SFX iU aillir aille faillir -SFX iU aillir aillions faillir -SFX iU aillir ailliez faillir -SFX iU aillir aillent faillir -SFX iU aillir aillisse faillir -SFX iU aillir aillisses faillir -SFX iU aillir aillît faillir -SFX iU aillir aillissions faillir -SFX iU aillir aillissiez faillir -SFX iU aillir aillissent faillir -SFX iU illir ux faillir -SFX iU aillir aillons faillir -SFX iU aillir aillez faillir - -SFX iV N 14 -SFX iV ésir ésir gésir -SFX iV ésir isant gésir -SFX iV ésir is gésir -SFX iV ésir is gésir -SFX iV ésir ît gésir -SFX iV ésir isons gésir -SFX iV ésir isez gésir -SFX iV ésir isent gésir -SFX iV ésir isais gésir -SFX iV ésir isais gésir -SFX iV ésir isait gésir -SFX iV ésir isions gésir -SFX iV ésir isiez gésir -SFX iV ésir isaient gésir - -SFX iW Y 64 -SFX iW uïr uïr/n'q'd'l'm't's' ouïr -SFX iW uïr uï-dire/n'q'd'l'm't' ouïr -SFX iW uïr yant/n'q'l'm't's' ouïr -SFX iW uïr uï/q' ouïr -SFX iW uïr uïs/q' ouïr -SFX iW uïr uïe/q' ouïr -SFX iW uïr uïes/q' ouïr -SFX iW uïr is/n'q'j'l'm't' ouïr -SFX iW uïr is/n'q'l'm't' ouïr -SFX iW uïr it/n'q'l'm't' ouïr -SFX iW uïr yons/n'q'l't' ouïr -SFX iW uïr yez/n'q'l'm' ouïr -SFX iW uïr ient/n'q'l'm't's' ouïr -SFX iW uïr yais/n'q'j'l'm't' ouïr -SFX iW uïr yais/n'q'l'm't' ouïr -SFX iW uïr yait/n'q'l'm't' ouïr -SFX iW uïr yions/n'q'l't' ouïr -SFX iW uïr yiez/n'q'l'm' ouïr -SFX iW uïr yaient/n'q'l'm't's' ouïr -SFX iW uïr uïs/n'q'j'l'm't' ouïr -SFX iW uïr uïs/n'q'l'm't' ouïr -SFX iW uïr uït/n'q'l'm't' ouïr -SFX iW uïr uïmes/n'q'l't' ouïr -SFX iW uïr uïtes/n'q'l'm' ouïr -SFX iW uïr uïrent/n'q'l'm't's' ouïr -SFX iW uïr uïrai/n'q'j'l'm't' ouïr -SFX iW uïr rrai/n'q'j'l'm't' ouïr -SFX iW uïr uïras/n'q'l'm't' ouïr -SFX iW uïr rras/n'q'l'm't' ouïr -SFX iW uïr uïra/n'q'l'm't' ouïr -SFX iW uïr rra/n'q'l'm't' ouïr -SFX iW uïr uïrons/n'q'l't' ouïr -SFX iW uïr rrons/n'q'l't' ouïr -SFX iW uïr uïrez/n'q'l'm' ouïr -SFX iW uïr rrez/n'q'l'm' ouïr -SFX iW uïr uïront/n'q'l'm't's' ouïr -SFX iW uïr rront/n'q'l'm't's' ouïr -SFX iW uïr uïrais/n'q'j'l'm't' ouïr -SFX iW uïr rrais/n'q'j'l'm't' ouïr -SFX iW uïr uïrais/n'q'l'm't' ouïr -SFX iW uïr rrais/n'q'l'm't' ouïr -SFX iW uïr uïrait/n'q'l'm't' ouïr -SFX iW uïr rrait/n'q'l'm't' ouïr -SFX iW uïr uïrions/n'q'l't' ouïr -SFX iW uïr rrions/n'q'l't' ouïr -SFX iW uïr uïriez/n'q'l'm' ouïr -SFX iW uïr rriez/n'q'l'm' ouïr -SFX iW uïr uïraient/n'q'l'm't's' ouïr -SFX iW uïr rraient/n'q'l'm't's' ouïr -SFX iW uïr ie/n'j'l'm't' ouïr -SFX iW uïr ies/n'l'm't' ouïr -SFX iW uïr ie/n'l'm't's' ouïr -SFX iW uïr yions/n'l't' ouïr -SFX iW uïr yiez/n'l'm' ouïr -SFX iW uïr ient/n'l'm't's' ouïr -SFX iW uïr uïsse/n'q'j'l'm't' ouïr -SFX iW uïr uïsses/n'q'l'm't' ouïr -SFX iW uïr uït/n'q'l'm't' ouïr -SFX iW uïr uïssions/n'q'l't' ouïr -SFX iW uïr uïssiez/n'q'l'm' ouïr -SFX iW uïr uïssent/n'q'l'm't's' ouïr -SFX iW uïr is/n'l'm' ouïr -SFX iW uïr yons/n'l' ouïr -SFX iW uïr yez/n'l'm' ouïr - -SFX iX N 5 -SFX iX érir érir férir -SFX iX érir éru férir -SFX iX érir érus férir -SFX iX érir érue férir -SFX iX érir érues férir - -SFX iY Y 5 -SFX iY ssir ssir/n'q'd' issir -SFX iY ssir ssu/q' issir -SFX iY ssir ssus/q' issir -SFX iY ssir ssue/q' issir -SFX iY ssir ssues/q' issir - -SFX pA N 49 -SFX pA ouvoir ouvoir pouvoir -SFX pA ouvoir ouvant pouvoir -SFX pA ouvoir u pouvoir -SFX pA ouvoir eux pouvoir -SFX pA ouvoir uis pouvoir -SFX pA ouvoir uissé pouvoir -SFX pA ouvoir uis pouvoir -SFX pA ouvoir eux pouvoir -SFX pA ouvoir eut pouvoir -SFX pA ouvoir ouvons pouvoir -SFX pA ouvoir ouvez pouvoir -SFX pA ouvoir euvent pouvoir -SFX pA ouvoir ouvais pouvoir -SFX pA ouvoir ouvais pouvoir -SFX pA ouvoir ouvait pouvoir -SFX pA ouvoir ouvions pouvoir -SFX pA ouvoir ouviez pouvoir -SFX pA ouvoir ouvaient pouvoir -SFX pA ouvoir us pouvoir -SFX pA ouvoir us pouvoir -SFX pA ouvoir ut pouvoir -SFX pA ouvoir ûmes pouvoir -SFX pA ouvoir ûtes pouvoir -SFX pA ouvoir urent pouvoir -SFX pA ouvoir ourrai pouvoir -SFX pA ouvoir ourras pouvoir -SFX pA ouvoir ourra pouvoir -SFX pA ouvoir ourrons pouvoir -SFX pA ouvoir ourrez pouvoir -SFX pA ouvoir ourront pouvoir -SFX pA ouvoir ourrais pouvoir -SFX pA ouvoir ourrais pouvoir -SFX pA ouvoir ourrait pouvoir -SFX pA ouvoir ourrions pouvoir -SFX pA ouvoir ourriez pouvoir -SFX pA ouvoir ourraient pouvoir -SFX pA ouvoir uisse pouvoir -SFX pA ouvoir uisses pouvoir -SFX pA ouvoir uisse pouvoir -SFX pA ouvoir uissions pouvoir -SFX pA ouvoir uissiez pouvoir -SFX pA ouvoir uissent pouvoir -SFX pA ouvoir usse pouvoir -SFX pA ouvoir ussé pouvoir -SFX pA ouvoir usses pouvoir -SFX pA ouvoir ût pouvoir -SFX pA ouvoir ussions pouvoir -SFX pA ouvoir ussiez pouvoir -SFX pA ouvoir ussent pouvoir - -SFX pB N 53 -SFX pB ouloir ouloir vouloir -SFX pB ouloir oulant vouloir -SFX pB ouloir oulu vouloir -SFX pB ouloir oulus vouloir -SFX pB ouloir oulue vouloir -SFX pB ouloir oulues vouloir -SFX pB ouloir eux vouloir -SFX pB ouloir eux vouloir -SFX pB ouloir eut vouloir -SFX pB ouloir oulons vouloir -SFX pB ouloir oulez vouloir -SFX pB ouloir eulent vouloir -SFX pB ouloir oulais vouloir -SFX pB ouloir oulais vouloir -SFX pB ouloir oulait vouloir -SFX pB ouloir oulions vouloir -SFX pB ouloir ouliez vouloir -SFX pB ouloir oulaient vouloir -SFX pB ouloir oulus vouloir -SFX pB ouloir oulus vouloir -SFX pB ouloir oulut vouloir -SFX pB ouloir oulûmes vouloir -SFX pB ouloir oulûtes vouloir -SFX pB ouloir oulurent vouloir -SFX pB ouloir oudrai vouloir -SFX pB ouloir oudras vouloir -SFX pB ouloir oudra vouloir -SFX pB ouloir oudrons vouloir -SFX pB ouloir oudrez vouloir -SFX pB ouloir oudront vouloir -SFX pB ouloir oudrais vouloir -SFX pB ouloir oudrais vouloir -SFX pB ouloir oudrait vouloir -SFX pB ouloir oudrions vouloir -SFX pB ouloir oudriez vouloir -SFX pB ouloir oudraient vouloir -SFX pB ouloir euille vouloir -SFX pB ouloir euilles vouloir -SFX pB ouloir euille vouloir -SFX pB ouloir oulions vouloir -SFX pB ouloir ouliez vouloir -SFX pB ouloir euillent vouloir -SFX pB ouloir oulusse vouloir -SFX pB ouloir oulusses vouloir -SFX pB ouloir oulût vouloir -SFX pB ouloir oulussions vouloir -SFX pB ouloir oulussiez vouloir -SFX pB ouloir oulussent vouloir -SFX pB ouloir eux vouloir -SFX pB ouloir euille vouloir -SFX pB ouloir oulons vouloir -SFX pB ouloir oulez vouloir -SFX pB ouloir euillez vouloir - -SFX pC N 51 -SFX pC evoir evoir devoir -SFX pC evoir evant devoir -SFX pC evoir û redevoir -SFX pC evoir us devoir -SFX pC evoir ue devoir -SFX pC evoir ues devoir -SFX pC evoir ois devoir -SFX pC evoir ois devoir -SFX pC evoir oit devoir -SFX pC evoir evons devoir -SFX pC evoir evez devoir -SFX pC evoir oivent devoir -SFX pC evoir evais devoir -SFX pC evoir evais devoir -SFX pC evoir evait devoir -SFX pC evoir evions devoir -SFX pC evoir eviez devoir -SFX pC evoir evaient devoir -SFX pC evoir us devoir -SFX pC evoir us devoir -SFX pC evoir ut devoir -SFX pC evoir ûmes devoir -SFX pC evoir ûtes devoir -SFX pC evoir urent devoir -SFX pC evoir evrai devoir -SFX pC evoir evras devoir -SFX pC evoir evra devoir -SFX pC evoir evrons devoir -SFX pC evoir evrez devoir -SFX pC evoir evront devoir -SFX pC evoir evrais devoir -SFX pC evoir evrais devoir -SFX pC evoir evrait devoir -SFX pC evoir evrions devoir -SFX pC evoir evriez devoir -SFX pC evoir evraient devoir -SFX pC evoir oive devoir -SFX pC evoir oives devoir -SFX pC evoir oive devoir -SFX pC evoir evions devoir -SFX pC evoir eviez devoir -SFX pC evoir oivent devoir -SFX pC evoir usse devoir -SFX pC evoir usses devoir -SFX pC evoir ût devoir -SFX pC evoir ussions devoir -SFX pC evoir ussiez devoir -SFX pC evoir ussent devoir -SFX pC evoir ois devoir -SFX pC evoir evons devoir -SFX pC evoir evez devoir - -SFX pD N 1 -SFX pD evoir û devoir - -SFX pE N 51 -SFX pE avoir avoir savoir -SFX pE avoir achant savoir -SFX pE avoir u savoir -SFX pE avoir us savoir -SFX pE avoir ue savoir -SFX pE avoir ues savoir -SFX pE avoir ais savoir -SFX pE avoir ais savoir -SFX pE avoir ait savoir -SFX pE avoir avons savoir -SFX pE avoir avez savoir -SFX pE avoir avent savoir -SFX pE avoir avais savoir -SFX pE avoir avais savoir -SFX pE avoir avait savoir -SFX pE avoir avions savoir -SFX pE avoir aviez savoir -SFX pE avoir avaient savoir -SFX pE avoir us savoir -SFX pE avoir us savoir -SFX pE avoir ut savoir -SFX pE avoir ûmes savoir -SFX pE avoir ûtes savoir -SFX pE avoir urent savoir -SFX pE avoir aurai savoir -SFX pE avoir auras savoir -SFX pE avoir aura savoir -SFX pE avoir aurons savoir -SFX pE avoir aurez savoir -SFX pE avoir auront savoir -SFX pE avoir aurais savoir -SFX pE avoir aurais savoir -SFX pE avoir aurait savoir -SFX pE avoir aurions savoir -SFX pE avoir auriez savoir -SFX pE avoir auraient savoir -SFX pE avoir ache savoir -SFX pE avoir aches savoir -SFX pE avoir ache savoir -SFX pE avoir achions savoir -SFX pE avoir achiez savoir -SFX pE avoir achent savoir -SFX pE avoir usse savoir -SFX pE avoir usses savoir -SFX pE avoir ût savoir -SFX pE avoir ussions savoir -SFX pE avoir ussiez savoir -SFX pE avoir ussent savoir -SFX pE avoir ache savoir -SFX pE avoir achons savoir -SFX pE avoir achez savoir - -SFX pF Y 63 -SFX pF oir oir/n'q'd'l'm't's' voir -SFX pF oir oyant/n'q'l'm't's' voir -SFX pF oir u/q' voir -SFX pF oir us/q' voir -SFX pF oir ue/q' voir -SFX pF oir ues/q' voir -SFX pF oir ois/n'q'j'l'm't' voir -SFX pF oir ois/n'q'l'm't' voir -SFX pF oir oit/n'q'l'm't's' voir -SFX pF oir oyons/n'q'l't' voir -SFX pF oir oyez/n'q'l'm' voir -SFX pF oir oient/n'q'l'm't's' voir -SFX pF oir oyais/n'q'j'l'm't' voir -SFX pF oir oyais/n'q'l'm't' voir -SFX pF oir oyait/n'q'l'm't's' voir -SFX pF oir oyions/n'q'l't' voir -SFX pF oir oyiez/n'q'l'm' voir -SFX pF oir oyaient/n'q'l'm't's' voir -SFX pF oir is/n'q'j'l'm't' voir -SFX pF oir is/n'q'l'm't' voir -SFX pF oir it/n'q'l'm't's' voir -SFX pF oir îmes/n'q'l't' voir -SFX pF oir îtes/n'q'l'm' voir -SFX pF oir irent/n'q'l'm't's' voir -SFX pF oir errai/n'q'j'l'm't' [^é]voir -SFX pF oir oirai évoir -SFX pF oir erras/n'q'l'm't' [^é]voir -SFX pF oir oiras évoir -SFX pF oir erra/n'q'l'm't's' [^é]voir -SFX pF oir oira évoir -SFX pF oir errons/n'q'l't' [^é]voir -SFX pF oir oirons évoir -SFX pF oir errez/n'q'l'm' [^é]voir -SFX pF oir oirez évoir -SFX pF oir erront/n'q'l'm't's' [^é]voir -SFX pF oir oiront évoir -SFX pF oir errais/n'q'j'l'm't' [^é]voir -SFX pF oir oirais évoir -SFX pF oir errais/n'q'l'm't' [^é]voir -SFX pF oir oirais évoir -SFX pF oir errait/n'q'l'm't's' [^é]voir -SFX pF oir oirait évoir -SFX pF oir errions/n'q'l't' [^é]voir -SFX pF oir oirions évoir -SFX pF oir erriez/n'q'l'm' [^é]voir -SFX pF oir oiriez évoir -SFX pF oir erraient/n'q'l'm't's' [^é]voir -SFX pF oir oiraient évoir -SFX pF oir oie/n'j'l'm't' voir -SFX pF oir oies/n'l'm't' voir -SFX pF oir oie/n'l'm't's' voir -SFX pF oir oyions/n'l't' voir -SFX pF oir oyiez/n'l'm' voir -SFX pF oir oient/n'l'm't's' voir -SFX pF oir isse/n'q'j'l'm't' voir -SFX pF oir isses/n'q'l'm't' voir -SFX pF oir ît/n'q'l'm't's' voir -SFX pF oir issions/n'q'l't' voir -SFX pF oir issiez/n'q'l'm' voir -SFX pF oir issent/n'q'l'm't's' voir -SFX pF oir ois/n'l'm' voir -SFX pF oir oyons/n'l' voir -SFX pF oir oyez/n'l'm' voir - -SFX pG Y 12 -SFX pG oir errai voir -SFX pG oir erras voir -SFX pG oir erra voir -SFX pG oir errons voir -SFX pG oir errez voir -SFX pG oir erront voir -SFX pG oir errais voir -SFX pG oir errais voir -SFX pG oir errait voir -SFX pG oir errions voir -SFX pG oir erriez voir -SFX pG oir erraient voir - -SFX pH Y 51 -SFX pH ouvoir ouvoir/n'q'd'l'm't's' mouvoir -SFX pH ouvoir ouvant/n'q'l'm't's' mouvoir -SFX pH ouvoir u/q' .mouvoir -SFX pH ouvoir us/q' mouvoir -SFX pH ouvoir ue/q' mouvoir -SFX pH ouvoir ues/q' mouvoir -SFX pH ouvoir eus/n'q'j'l'm't' mouvoir -SFX pH ouvoir eus/n'q'l'm't' mouvoir -SFX pH ouvoir eut/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvons/n'q'l't' mouvoir -SFX pH ouvoir ouvez/n'q'l'm' mouvoir -SFX pH ouvoir euvent/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvais/n'q'j'l'm't' mouvoir -SFX pH ouvoir ouvais/n'q'l'm't' mouvoir -SFX pH ouvoir ouvait/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvions/n'q'l't' mouvoir -SFX pH ouvoir ouviez/n'q'l'm' mouvoir -SFX pH ouvoir ouvaient/n'q'l'm't's' mouvoir -SFX pH ouvoir us/n'q'j'l'm't' mouvoir -SFX pH ouvoir us/n'q'l'm't' mouvoir -SFX pH ouvoir ut/n'q'l'm't's' mouvoir -SFX pH ouvoir ûmes/n'q'l't' mouvoir -SFX pH ouvoir ûtes/n'q'l'm' mouvoir -SFX pH ouvoir urent/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvrai/n'q'j'l'm't' mouvoir -SFX pH ouvoir ouvras/n'q'l'm't' mouvoir -SFX pH ouvoir ouvra/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvrons/n'q'l't' mouvoir -SFX pH ouvoir ouvrez/n'q'l'm' mouvoir -SFX pH ouvoir ouvront/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvrais/n'q'j'l'm't' mouvoir -SFX pH ouvoir ouvrais/n'q'l'm't' mouvoir -SFX pH ouvoir ouvrait/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvrions/n'q'l't' mouvoir -SFX pH ouvoir ouvriez/n'q'l'm' mouvoir -SFX pH ouvoir ouvraient/n'q'l'm't's' mouvoir -SFX pH ouvoir euve/n'j'l'm't' mouvoir -SFX pH ouvoir euves/n'l'm't' mouvoir -SFX pH ouvoir euve/n'q'l'm't's' mouvoir -SFX pH ouvoir ouvions/n'q'l't' mouvoir -SFX pH ouvoir ouviez/n'q'l'm' mouvoir -SFX pH ouvoir euvent/n'q'l'm't's' mouvoir -SFX pH ouvoir usse/n'q'j'l'm't' mouvoir -SFX pH ouvoir usses/n'q'l'm't' mouvoir -SFX pH ouvoir ût/n'q'l'm't's' mouvoir -SFX pH ouvoir ussions/n'q'l't' mouvoir -SFX pH ouvoir ussiez/n'q'l'm' mouvoir -SFX pH ouvoir ussent/n'q'l'm't's' mouvoir -SFX pH ouvoir eus/n'l'm' mouvoir -SFX pH ouvoir ouvons/n'l' mouvoir -SFX pH ouvoir ouvez/n'l'm' mouvoir - -SFX pI N 1 -SFX pI ouvoir û/q' mouvoir - -SFX pJ N 51 -SFX pJ ourvoir ourvoir pourvoir -SFX pJ ourvoir ourvoyant pourvoir -SFX pJ ourvoir ourvu pourvoir -SFX pJ ourvoir ourvus pourvoir -SFX pJ ourvoir ourvue pourvoir -SFX pJ ourvoir ourvues pourvoir -SFX pJ ourvoir ourvois pourvoir -SFX pJ ourvoir ourvois pourvoir -SFX pJ ourvoir ourvoit pourvoir -SFX pJ ourvoir ourvoyons pourvoir -SFX pJ ourvoir ourvoyez pourvoir -SFX pJ ourvoir ourvoient pourvoir -SFX pJ ourvoir ourvoyais pourvoir -SFX pJ ourvoir ourvoyais pourvoir -SFX pJ ourvoir ourvoyait pourvoir -SFX pJ ourvoir ourvoyions pourvoir -SFX pJ ourvoir ourvoyiez pourvoir -SFX pJ ourvoir ourvoyaient pourvoir -SFX pJ ourvoir ourvus pourvoir -SFX pJ ourvoir ourvus pourvoir -SFX pJ ourvoir ourvut pourvoir -SFX pJ ourvoir ourvûmes pourvoir -SFX pJ ourvoir ourvûtes pourvoir -SFX pJ ourvoir ourvurent pourvoir -SFX pJ ourvoir ourvoirai pourvoir -SFX pJ ourvoir ourvoiras pourvoir -SFX pJ ourvoir ourvoira pourvoir -SFX pJ ourvoir ourvoirons pourvoir -SFX pJ ourvoir ourvoirez pourvoir -SFX pJ ourvoir ourvoiront pourvoir -SFX pJ ourvoir ourvoirais pourvoir -SFX pJ ourvoir ourvoirais pourvoir -SFX pJ ourvoir ourvoirait pourvoir -SFX pJ ourvoir ourvoirions pourvoir -SFX pJ ourvoir ourvoiriez pourvoir -SFX pJ ourvoir ourvoiraient pourvoir -SFX pJ ourvoir ourvoie pourvoir -SFX pJ ourvoir ourvoies pourvoir -SFX pJ ourvoir ourvoie pourvoir -SFX pJ ourvoir ourvoyions pourvoir -SFX pJ ourvoir ourvoyiez pourvoir -SFX pJ ourvoir ourvoient pourvoir -SFX pJ ourvoir ourvusse pourvoir -SFX pJ ourvoir ourvusses pourvoir -SFX pJ ourvoir ourvût pourvoir -SFX pJ ourvoir ourvussions pourvoir -SFX pJ ourvoir ourvussiez pourvoir -SFX pJ ourvoir ourvussent pourvoir -SFX pJ ourvoir ourvois pourvoir -SFX pJ ourvoir ourvoyons pourvoir -SFX pJ ourvoir ourvoyez pourvoir - -SFX pK Y 51 -SFX pK cevoir cevoir/n'q'd'l'm't's' cevoir -SFX pK cevoir cevant/n'q'l'm't's' cevoir -SFX pK cevoir çu/q' cevoir -SFX pK cevoir çus/q' cevoir -SFX pK cevoir çue/q' cevoir -SFX pK cevoir çues/q' cevoir -SFX pK cevoir çois/n'q'j'l'm't' cevoir -SFX pK cevoir çois/n'q'l'm't' cevoir -SFX pK cevoir çoit/n'q'l'm't's' cevoir -SFX pK cevoir cevons/n'q'l't' cevoir -SFX pK cevoir cevez/n'q'l'm' cevoir -SFX pK cevoir çoivent/n'q'l'm't's' cevoir -SFX pK cevoir cevais/n'q'j'l'm't' cevoir -SFX pK cevoir cevais/n'q'l'm't' cevoir -SFX pK cevoir cevait/n'q'l'm't's' cevoir -SFX pK cevoir cevions/n'q'l't' cevoir -SFX pK cevoir ceviez/n'q'l'm' cevoir -SFX pK cevoir cevaient/n'q'l'm't's' cevoir -SFX pK cevoir çus/n'q'j'l'm't' cevoir -SFX pK cevoir çus/n'q'l'm't' cevoir -SFX pK cevoir çut/n'q'l'm't's' cevoir -SFX pK cevoir çûmes/n'q'l't' cevoir -SFX pK cevoir çûtes/n'q'l'm' cevoir -SFX pK cevoir çurent/n'q'l'm't's' cevoir -SFX pK cevoir cevrai/n'q'j'l'm't' cevoir -SFX pK cevoir cevras/n'q'l'm't' cevoir -SFX pK cevoir cevra/n'q'l'm't's' cevoir -SFX pK cevoir cevrons/n'q'l't' cevoir -SFX pK cevoir cevrez/n'q'l'm' cevoir -SFX pK cevoir cevront/n'q'l'm't's' cevoir -SFX pK cevoir cevrais/n'q'j'l'm't' cevoir -SFX pK cevoir cevrais/n'q'l'm't' cevoir -SFX pK cevoir cevrait/n'q'l'm't's' cevoir -SFX pK cevoir cevrions/n'q'l't' cevoir -SFX pK cevoir cevriez/n'q'l'm' cevoir -SFX pK cevoir cevraient/n'q'l'm't's' cevoir -SFX pK cevoir çoive/n'j'l'm't' cevoir -SFX pK cevoir çoives/n'l'm't' cevoir -SFX pK cevoir çoive/n'l'm't's' cevoir -SFX pK cevoir cevions/n'l't' cevoir -SFX pK cevoir ceviez/n'l'm' cevoir -SFX pK cevoir çoivent/n'l'm't's' cevoir -SFX pK cevoir çusse/n'q'j'l'm't' cevoir -SFX pK cevoir çusses/n'q'l'm't' cevoir -SFX pK cevoir çût/n'q'l'm't's' cevoir -SFX pK cevoir çussions/n'q'l't' cevoir -SFX pK cevoir çussiez/n'q'l'm' cevoir -SFX pK cevoir çussent/n'q'l'm't's' cevoir -SFX pK cevoir çois/n'l'm' cevoir -SFX pK cevoir cevons/n'l' cevoir -SFX pK cevoir cevez/n'l'm' cevoir - -SFX pM N 48 -SFX pM aloir aloir valoir -SFX pM aloir alant valoir -SFX pM aloir alu valoir -SFX pM aloir aux valoir -SFX pM aloir aux valoir -SFX pM aloir aut valoir -SFX pM aloir alons valoir -SFX pM aloir alez valoir -SFX pM aloir alent valoir -SFX pM aloir alais valoir -SFX pM aloir alais valoir -SFX pM aloir alait valoir -SFX pM aloir alions valoir -SFX pM aloir aliez valoir -SFX pM aloir alaient valoir -SFX pM aloir alus valoir -SFX pM aloir alus valoir -SFX pM aloir alut valoir -SFX pM aloir alûmes valoir -SFX pM aloir alûtes valoir -SFX pM aloir alurent valoir -SFX pM aloir audrai valoir -SFX pM aloir audras valoir -SFX pM aloir audra valoir -SFX pM aloir audrons valoir -SFX pM aloir audrez valoir -SFX pM aloir audront valoir -SFX pM aloir audrais valoir -SFX pM aloir audrais valoir -SFX pM aloir audrait valoir -SFX pM aloir audrions valoir -SFX pM aloir audriez valoir -SFX pM aloir audraient valoir -SFX pM aloir aille valoir -SFX pM aloir ailles valoir -SFX pM aloir aille valoir -SFX pM aloir ailions valoir -SFX pM aloir ailiez valoir -SFX pM aloir aillent valoir -SFX pM aloir alusse valoir -SFX pM aloir alusses valoir -SFX pM aloir alût valoir -SFX pM aloir alussions valoir -SFX pM aloir alussiez valoir -SFX pM aloir alussent valoir -SFX pM aloir aux valoir -SFX pM aloir alons valoir -SFX pM aloir alez valoir - -SFX pN Y 60 -SFX pN valoir valoir/n'q'd'm't's' valoir -SFX pN valoir valant/n'q'm't's' valoir -SFX pN valoir valu/q' valoir -SFX pN valoir valus révaloir -SFX pN valoir value révaloir -SFX pN valoir values révaloir -SFX pN valoir vaux/n'j'm't' valoir -SFX pN valoir vaux/n'm't' valoir -SFX pN valoir vaut/n'm't's' valoir -SFX pN valoir valons/n't' valoir -SFX pN valoir valez/n'm' valoir -SFX pN valoir valent/n'm't's' valoir -SFX pN valoir valais/n'j'm't' valoir -SFX pN valoir valais/n'm't' valoir -SFX pN valoir valait/n'm't's' valoir -SFX pN valoir valions/n't' valoir -SFX pN valoir valiez/n'm' valoir -SFX pN valoir valaient/n'm't's' valoir -SFX pN valoir valus/n'j'm't' valoir -SFX pN valoir valus/n'm't' valoir -SFX pN valoir valut/n'm't's' valoir -SFX pN valoir valûmes/n't' valoir -SFX pN valoir valûtes/n'm' valoir -SFX pN valoir valurent/n'm't's' valoir -SFX pN valoir vaudrai/n'j'm't' valoir -SFX pN valoir vaudras/n'm't' valoir -SFX pN valoir vaudra/n'm't's' valoir -SFX pN valoir vaudrons/n't' valoir -SFX pN valoir vaudrez/n'm' valoir -SFX pN valoir vaudront/n'm't's' valoir -SFX pN valoir vaudrais/n'j'm't' valoir -SFX pN valoir vaudrais/n'm't' valoir -SFX pN valoir vaudrait/n'm't's' valoir -SFX pN valoir vaudrions/n't' valoir -SFX pN valoir vaudriez/n'm' valoir -SFX pN valoir vaudraient/n'm't's' valoir -SFX pN valoir vaille/n'j'm't' quivaloir -SFX pN valoir vale révaloir -SFX pN valoir vailles/n'm't' quivaloir -SFX pN valoir vales révaloir -SFX pN valoir vaille/n'm't's' quivaloir -SFX pN valoir vale révaloir -SFX pN valoir vailions/n't' quivaloir -SFX pN valoir valions révaloir -SFX pN valoir vailiez/n'm' quivaloir -SFX pN valoir valiez révaloir -SFX pN valoir vaillent/n'm't's' quivaloir -SFX pN valoir valent révaloir -SFX pN valoir valusse/n'j'm't' valoir -SFX pN valoir valusses/n'm't' valoir -SFX pN valoir valût/n'm't's' valoir -SFX pN valoir valussions/n't' valoir -SFX pN valoir valussiez/n'm' valoir -SFX pN valoir valussent/n'm't's' valoir -SFX pN valoir vaux quivaloir -SFX pN valoir vaux valoir -SFX pN valoir valons quivaloir -SFX pN valoir valons valoir -SFX pN valoir valez quivaloir -SFX pN valoir valez valoir - -SFX pO N 15 -SFX pO valoir valoir revaloir -SFX pO valoir valant revaloir -SFX pO valoir valu revaloir -SFX pO valoir vaudrai revaloir -SFX pO valoir vaudras revaloir -SFX pO valoir vaudra revaloir -SFX pO valoir vaudrons revaloir -SFX pO valoir vaudrez revaloir -SFX pO valoir vaudront revaloir -SFX pO valoir vaudrais revaloir -SFX pO valoir vaudrais revaloir -SFX pO valoir vaudrait revaloir -SFX pO valoir vaudrions revaloir -SFX pO valoir vaudriez revaloir -SFX pO valoir vaudraient revaloir - -SFX pP N 2 -SFX pP paroir paroir comparoir -SFX pP paroir parant comparoir - -SFX pQ N 2 -SFX pQ haloir haloir chaloir -SFX pQ haloir haut chaloir - -SFX pR Y 2 -SFX pR pparoir pparoir/n'q'd' apparoir -SFX pR pparoir ppert/n'q' apparoir - -SFX pS Y 84 -SFX pS oir oir/n'q'd'l'm't's' oir -SFX pS sseoir sseyant/n'q'l'm't's' seoir -SFX pS sseoir ssoyant/n'q'l'm't's' seoir -SFX pS sseoir ssis/q' seoir -SFX pS sseoir ssise/q' seoir -SFX pS sseoir ssises/q' seoir -SFX pS sseoir ssieds/n'q'j'l'm't' seoir -SFX pS sseoir ssieds/n'q'l'm't' seoir -SFX pS sseoir ssied/n'q'l'm't's' seoir -SFX pS sseoir sseyons/n'q'l't' seoir -SFX pS sseoir sseyez/n'q'l'm' seoir -SFX pS sseoir sseyent/n'q'l'm't's' seoir -SFX pS sseoir ssois/n'q'j'l'm't' seoir -SFX pS sseoir ssois/n'q'l'm't' seoir -SFX pS sseoir ssoit/n'q'l'm't's' seoir -SFX pS sseoir ssoyons/n'q'l't' seoir -SFX pS sseoir ssoyez/n'q'l'm' seoir -SFX pS sseoir ssoient/n'q'l'm't's' seoir -SFX pS sseoir sseyais/n'q'j'l'm't' seoir -SFX pS sseoir sseyais/n'q'l'm't' seoir -SFX pS sseoir sseyait/n'q'l'm't's' seoir -SFX pS sseoir sseyions/n'q'l't' seoir -SFX pS sseoir sseyiez/n'q'l'm' seoir -SFX pS sseoir sseyaient/n'q'l'm't's' seoir -SFX pS sseoir ssoyais/n'q'j'l'm't' seoir -SFX pS sseoir ssoyais/n'q'l'm't' seoir -SFX pS sseoir ssoyait/n'q'l'm't's' seoir -SFX pS sseoir ssoyions/n'q'l't' seoir -SFX pS sseoir ssoyiez/n'q'l'm' seoir -SFX pS sseoir ssoyaient/n'q'l'm't's' seoir -SFX pS sseoir ssis/n'q'j'l'm't' seoir -SFX pS sseoir ssis/n'q'l'm't' seoir -SFX pS sseoir ssit/n'q'l'm't's' seoir -SFX pS sseoir ssîmes/n'q'l't' seoir -SFX pS sseoir ssîtes/n'q'l'm' seoir -SFX pS sseoir ssirent/n'q'l'm't's' seoir -SFX pS sseoir ssiérai/n'q'j'l'm't' seoir -SFX pS sseoir ssiéras/n'q'l'm't' seoir -SFX pS sseoir ssiéra/n'q'l'm't's' seoir -SFX pS sseoir ssiérons/n'q'l't' seoir -SFX pS sseoir ssiérez/n'q'l'm' seoir -SFX pS sseoir ssiéront/n'q'l'm't's' seoir -SFX pS sseoir ssoirai/n'q'j'l'm't' seoir -SFX pS sseoir ssoiras/n'q'l'm't' seoir -SFX pS sseoir ssoira/n'q'l'm't's' seoir -SFX pS sseoir ssoirons/n'q'l't' seoir -SFX pS sseoir ssoirez/n'q'l'm' seoir -SFX pS sseoir ssoiront/n'q'l'm't's' seoir -SFX pS sseoir ssiérais/n'q'j'l'm't' seoir -SFX pS sseoir ssiérais/n'q'l'm't' seoir -SFX pS sseoir ssiérait/n'q'l'm't's' seoir -SFX pS sseoir ssiérions/n'q'l't' seoir -SFX pS sseoir ssiériez/n'q'l'm' seoir -SFX pS sseoir ssiéraient/n'q'l'm't's' seoir -SFX pS sseoir ssoirais/n'q'j'l'm't' seoir -SFX pS sseoir ssoirais/n'q'l'm't' seoir -SFX pS sseoir ssoirait/n'q'l'm't's' seoir -SFX pS sseoir ssoirions/n'q'l't' seoir -SFX pS sseoir ssoiriez/n'q'l'm' seoir -SFX pS sseoir ssoiraient/n'q'l'm't's' seoir -SFX pS sseoir sseye/n'j'l'm't' seoir -SFX pS sseoir sseyes/n'l'm't' seoir -SFX pS sseoir sseye/n'l'm't's' seoir -SFX pS sseoir sseyions/n'l't' seoir -SFX pS sseoir sseyiez/n'l'm' seoir -SFX pS sseoir sseyent/n'q'l'm't's' seoir -SFX pS sseoir ssoie/n'j'l'm't' seoir -SFX pS sseoir ssoies/n'l'm't' seoir -SFX pS sseoir ssoie/n'l'm't's' seoir -SFX pS sseoir ssoyions/n'l't' seoir -SFX pS sseoir ssoyiez/n'l'm' seoir -SFX pS sseoir ssoient/n'q'l'm't's' seoir -SFX pS sseoir ssisse/n'q'j'l'm't' seoir -SFX pS sseoir ssisses/n'q'l'm't' seoir -SFX pS sseoir ssît/n'q'l'm't's' seoir -SFX pS sseoir ssissions/n'q'l't' seoir -SFX pS sseoir ssissiez/n'q'l'm' seoir -SFX pS sseoir ssissent/n'q'l'm't's' seoir -SFX pS sseoir ssieds/n'l'm't' seoir -SFX pS sseoir sseyons/n'l' seoir -SFX pS sseoir sseyez/n'l'm' seoir -SFX pS sseoir ssois/n'l'm't' seoir -SFX pS sseoir ssoyons/n'l' seoir -SFX pS sseoir ssoyez/n'l'm' seoir - -SFX pT N 50 -SFX pT oir oir oir -SFX pT urseoir ursoyant seoir -SFX pT urseoir ursis seoir -SFX pT urseoir ursise seoir -SFX pT urseoir ursises seoir -SFX pT urseoir ursois seoir -SFX pT urseoir ursois seoir -SFX pT urseoir ursoit seoir -SFX pT urseoir ursoyons seoir -SFX pT urseoir ursoyez seoir -SFX pT urseoir ursoient seoir -SFX pT urseoir ursoyais seoir -SFX pT urseoir ursoyais seoir -SFX pT urseoir ursoyait seoir -SFX pT urseoir ursoyions seoir -SFX pT urseoir ursoyiez seoir -SFX pT urseoir ursoyaient seoir -SFX pT urseoir ursis seoir -SFX pT urseoir ursis seoir -SFX pT urseoir ursit seoir -SFX pT urseoir ursîmes seoir -SFX pT urseoir ursîtes seoir -SFX pT urseoir ursirent seoir -SFX pT urseoir urseoirai seoir -SFX pT urseoir urseoiras seoir -SFX pT urseoir urseoira seoir -SFX pT urseoir urseoirons seoir -SFX pT urseoir urseoirez seoir -SFX pT urseoir urseoiront seoir -SFX pT urseoir urseoirais seoir -SFX pT urseoir urseoirais seoir -SFX pT urseoir urseoirait seoir -SFX pT urseoir urseoirions seoir -SFX pT urseoir urseoiriez seoir -SFX pT urseoir urseoiraient seoir -SFX pT urseoir ursoie seoir -SFX pT urseoir ursoies seoir -SFX pT urseoir ursoie seoir -SFX pT urseoir ursoyions seoir -SFX pT urseoir ursoyiez seoir -SFX pT urseoir ursoient seoir -SFX pT urseoir ursisse seoir -SFX pT urseoir ursisses seoir -SFX pT urseoir ursît seoir -SFX pT urseoir ursissions seoir -SFX pT urseoir ursissiez seoir -SFX pT urseoir ursissent seoir -SFX pT urseoir ursois seoir -SFX pT urseoir ursoyons seoir -SFX pT urseoir ursoyez seoir - -SFX pU N 5 -SFX pU eoir eoir seoir -SFX pU eoir éant seoir -SFX pU eoir is seoir -SFX pU eoir ise seoir -SFX pU eoir ises seoir - -SFX pV N 14 -SFX pV eoir eoir seoir -SFX pV eoir éant seoir -SFX pV eoir eyant seoir -SFX pV eoir is seoir -SFX pV eoir ied seoir -SFX pV eoir iéent seoir -SFX pV eoir eyait seoir -SFX pV eoir eyaient seoir -SFX pV eoir iéra seoir -SFX pV eoir iéront seoir -SFX pV eoir iérait seoir -SFX pV eoir iéraient seoir -SFX pV eoir iée seoir -SFX pV eoir iéent seoir - -SFX pW N 12 -SFX pW oir oir oir -SFX pW sseoir sséant seoir -SFX pW sseoir ssied seoir -SFX pW sseoir ssiéent seoir -SFX pW sseoir sseyait seoir -SFX pW sseoir sseyaient seoir -SFX pW sseoir ssiéra seoir -SFX pW sseoir ssiéront seoir -SFX pW sseoir ssiérait seoir -SFX pW sseoir ssiéraient seoir -SFX pW sseoir ssiée seoir -SFX pW sseoir ssiéent seoir - -SFX pX N 62 -SFX pX hoir hoir choir -SFX pX hoir hu choir -SFX pX hoir hus choir -SFX pX hoir hue choir -SFX pX hoir hues choir -SFX pX hoir hois choir -SFX pX hoir hois choir -SFX pX hoir hoit choir -SFX pX hoir hoyons choir -SFX pX hoir hoyez choir -SFX pX hoir hoient choir -SFX pX hoir hoyais déchoir -SFX pX hoir hoyais déchoir -SFX pX hoir hoyait déchoir -SFX pX hoir hoyions déchoir -SFX pX hoir hoyiez déchoir -SFX pX hoir hoyaient déchoir -SFX pX hoir hus choir -SFX pX hoir hus choir -SFX pX hoir hut choir -SFX pX hoir hûmes choir -SFX pX hoir hûtes choir -SFX pX hoir hurent choir -SFX pX hoir hoirai choir -SFX pX hoir herrai choir -SFX pX hoir hoiras choir -SFX pX hoir herras choir -SFX pX hoir hoira choir -SFX pX hoir herra choir -SFX pX hoir hoirons choir -SFX pX hoir herrons choir -SFX pX hoir hoirez choir -SFX pX hoir herrez choir -SFX pX hoir hoiront choir -SFX pX hoir herront choir -SFX pX hoir hoirais choir -SFX pX hoir herrais choir -SFX pX hoir hoirais choir -SFX pX hoir herrais choir -SFX pX hoir hoirait choir -SFX pX hoir herrait choir -SFX pX hoir hoirions choir -SFX pX hoir herrions choir -SFX pX hoir hoiriez choir -SFX pX hoir herriez choir -SFX pX hoir hoiraient choir -SFX pX hoir herraient choir -SFX pX hoir hoie choir -SFX pX hoir hoies choir -SFX pX hoir hoie choir -SFX pX hoir hoyions choir -SFX pX hoir hoyiez choir -SFX pX hoir hoient choir -SFX pX hoir husse choir -SFX pX hoir husses choir -SFX pX hoir hût choir -SFX pX hoir hussions choir -SFX pX hoir hussiez choir -SFX pX hoir hussent choir -SFX pX hoir hois déchoir -SFX pX hoir hoyons déchoir -SFX pX hoir hoyez déchoir - -SFX pY Y 26 -SFX pY choir choir/n'q'd' échoir -SFX pY choir chéant/n'q' échoir -SFX pY choir chu/q' échoir -SFX pY choir chus/q' échoir -SFX pY choir chue/q' échoir -SFX pY choir chues/q' échoir -SFX pY choir choit/n'q' échoir -SFX pY choir chet/n'q' échoir -SFX pY choir choient/n'q' échoir -SFX pY choir chéent/n'q' échoir -SFX pY choir choyait/n'q' échoir -SFX pY choir choyaient/n'q' échoir -SFX pY choir chut/n'q' échoir -SFX pY choir churent/n'q' échoir -SFX pY choir choira/n'q' échoir -SFX pY choir cherra/n'q' échoir -SFX pY choir choiront/n'q' échoir -SFX pY choir cherront/n'q' échoir -SFX pY choir choirait/n'q' échoir -SFX pY choir cherrait/n'q' échoir -SFX pY choir choirait/n'q' échoir -SFX pY choir cherraient/n'q' échoir -SFX pY choir choie/n'q' échoir -SFX pY choir choient/n'q' échoir -SFX pY choir chût/n'q' échoir -SFX pY choir chussent/n'q' échoir - -SFX pZ N 20 -SFX pZ euvoir euvoir pleuvoir -SFX pZ euvoir euvant pleuvoir -SFX pZ euvoir u pleuvoir -SFX pZ euvoir eut pleuvoir -SFX pZ euvoir euvent pleuvoir -SFX pZ euvoir euvait pleuvoir -SFX pZ euvoir euvaient pleuvoir -SFX pZ euvoir ut pleuvoir -SFX pZ euvoir urent pleuvoir -SFX pZ euvoir euvra pleuvoir -SFX pZ euvoir euvront pleuvoir -SFX pZ euvoir euvrait pleuvoir -SFX pZ euvoir euvraient pleuvoir -SFX pZ euvoir euve pleuvoir -SFX pZ euvoir euvent pleuvoir -SFX pZ euvoir ût pleuvoir -SFX pZ euvoir ussent pleuvoir -SFX pZ euvoir eus pleuvoir -SFX pZ euvoir euvons pleuvoir -SFX pZ euvoir euvez pleuvoir - -SFX qA N 9 -SFX qA alloir alloir falloir -SFX qA alloir allu falloir -SFX qA alloir aut falloir -SFX qA alloir allait falloir -SFX qA alloir allut falloir -SFX qA alloir audra falloir -SFX qA alloir audrait falloir -SFX qA alloir aille falloir -SFX qA alloir allût falloir - -SFX rA Y 32 -SFX rA lore lore/n'q'd'l'm't's' clore -SFX rA lore losant/n'q'l'm't's' clore -SFX rA lore los/q' clore -SFX rA lore lose/q' clore -SFX rA lore loses/q' clore -SFX rA lore los/n'q'j'l'm't' clore -SFX rA lore los/n'q'l'm't' clore -SFX rA lore lot/n'q'l'm't's' .clore -SFX rA lore losons/n'q'l't' clore -SFX rA lore losez/n'q'l'm' clore -SFX rA lore losent/n'q'l'm't's' clore -SFX rA lore lorai/n'q'j'l'm't' clore -SFX rA lore loras/n'q'l'm't' clore -SFX rA lore lora/n'q'l'm't's' clore -SFX rA lore lorons/n'q'l't' clore -SFX rA lore lorez/n'q'l'm' clore -SFX rA lore loront/n'q'l'm't's' clore -SFX rA lore lorais/n'q'j'l'm't' clore -SFX rA lore lorais/n'q'l'm't' clore -SFX rA lore lorait/n'q'l'm't's' clore -SFX rA lore lorions/n'q'l't' clore -SFX rA lore loriez/n'q'l'm' clore -SFX rA lore loraient/n'q'l'm't's' clore -SFX rA lore lose/n'j'l'm't' clore -SFX rA lore loses/n'l'm't' clore -SFX rA lore lose/n'l'm't's' clore -SFX rA lore losions/n'l't' clore -SFX rA lore losiez/n'l'm' clore -SFX rA lore losent/n'l'm't's' clore -SFX rA lore los/n'l'm' clore -SFX rA lore losons/n'l' clore -SFX rA lore losez/n'l'm' clore - -SFX rB Y 1 -SFX rB lore lôt clore - -SFX rC Y 32 -SFX rC clore clore/n'q'd' clore -SFX rC clore closant/n'q' clore -SFX rC clore clos/q' clore -SFX rC clore close/q' clore -SFX rC clore closes/q' clore -SFX rC clore clos/n'j' clore -SFX rC clore clos/n' clore -SFX rC clore clot/n'q' clore -SFX rC clore closons/n' clore -SFX rC clore closez/n' clore -SFX rC clore closent/n'q' clore -SFX rC clore clorai/n'j' clore -SFX rC clore cloras/n' clore -SFX rC clore clora/n'q' clore -SFX rC clore clorons/n' clore -SFX rC clore clorez/n' clore -SFX rC clore cloront/n'q' clore -SFX rC clore clorais/n'j' clore -SFX rC clore clorais/n' clore -SFX rC clore clorait/n'q' clore -SFX rC clore clorions/n' clore -SFX rC clore cloriez/n' clore -SFX rC clore cloraient/n'q' clore -SFX rC clore close/n'j' clore -SFX rC clore closes/n' clore -SFX rC clore close/n'q' clore -SFX rC clore closions/n' clore -SFX rC clore closiez/n' clore -SFX rC clore closent/n'q' clore -SFX rC clore clos/n' clore -SFX rC clore closons/n' clore -SFX rC clore closez/n' clore - -SFX rD N 4 -SFX rD clore clore clore -SFX rD clore clos clore -SFX rD clore close clore -SFX rD clore closes clore - -SFX tA Y 52 -SFX tA re re/n'q'd'l'm't's' [dp]re -SFX tA re ant/n'q'l'm't's' [dp]re -SFX tA re u/q' [dp]re -SFX tA re us/q' [dp]re -SFX tA re ue/q' [dp]re -SFX tA re ues/q' [dp]re -SFX tA re s/n'q'j'l'm't' [dp]re -SFX tA re s/n'q'l'm't' [dp]re -SFX tA dre d/n'q'l'm't's' dre -SFX tA pre pt/n'q'l'm't's' pre -SFX tA re ons/n'q'l't' [dp]re -SFX tA re ez/n'q'l'm' [dp]re -SFX tA re ent/n'q'l'm't's' [dp]re -SFX tA re ais/n'q'j'l'm't' [dp]re -SFX tA re ais/n'q'l'm't' [dp]re -SFX tA re ait/n'q'l'm't's' [dp]re -SFX tA re ions/n'q'l't' [dp]re -SFX tA re iez/n'q'l'm' [dp]re -SFX tA re aient/n'q'l'm't's' [dp]re -SFX tA re is/n'q'j'l'm't' [dp]re -SFX tA re is/n'q'l'm't' [dp]re -SFX tA re it/n'q'l'm't's' [dp]re -SFX tA re îmes/n'q'l't' [dp]re -SFX tA re îtes/n'q'l'm' [dp]re -SFX tA re irent/n'q'l'm't's' [dp]re -SFX tA re rai/n'q'j'l'm't' [dp]re -SFX tA re ras/n'q'l'm't' [dp]re -SFX tA re ra/n'q'l'm't's' [dp]re -SFX tA re rons/n'q'l't' [dp]re -SFX tA re rez/n'q'l'm' [dp]re -SFX tA re ront/n'q'l'm't's' [dp]re -SFX tA re rais/n'q'j'l'm't' [dp]re -SFX tA re rais/n'q'l'm't' [dp]re -SFX tA re rait/n'q'l'm't's' [dp]re -SFX tA re rions/n'q'l't' [dp]re -SFX tA re riez/n'q'l'm' [dp]re -SFX tA re raient/n'q'l'm't's' [dp]re -SFX tA re e/n'j'l'm't' [dp]re -SFX tA re es/n'l'm't' [dp]re -SFX tA re e/n'l'm't's' [dp]re -SFX tA re ions/n'l't' [dp]re -SFX tA re iez/n'l'm' [dp]re -SFX tA re ent/n'l'm't's' [dp]re -SFX tA re isse/n'q'j'l'm't' [dp]re -SFX tA re isses/n'q'l'm't' [dp]re -SFX tA re ît/n'q'l'm't's' [dp]re -SFX tA re issions/n'q'l't' [dp]re -SFX tA re issiez/n'q'l'm' [dp]re -SFX tA re issent/n'q'l'm't's' [dp]re -SFX tA re s/n'l'm' [dp]re -SFX tA re ons/n'l' [dp]re -SFX tA re ez/n'l'm' [dp]re - -SFX tD Y 51 -SFX tD perdre perdre/m't's' perdre -SFX tD perdre perdant/m't's' perdre -SFX tD perdre perdu perdre -SFX tD perdre perdus perdre -SFX tD perdre perdue perdre -SFX tD perdre perdues perdre -SFX tD perdre perds/m' perdre -SFX tD perdre perds/t' perdre -SFX tD perdre perd/s' perdre -SFX tD perdre perdons perdre -SFX tD perdre perdez perdre -SFX tD perdre perdent/s' perdre -SFX tD perdre perdais/m' perdre -SFX tD perdre perdais/t' perdre -SFX tD perdre perdait/s' perdre -SFX tD perdre perdions perdre -SFX tD perdre perdiez perdre -SFX tD perdre perdaient/s' perdre -SFX tD perdre perdis/m' perdre -SFX tD perdre perdis/t' perdre -SFX tD perdre perdit/s' perdre -SFX tD perdre perdîmes perdre -SFX tD perdre perdîtes perdre -SFX tD perdre perdirent/s' perdre -SFX tD perdre perdrai/m' perdre -SFX tD perdre perdras/t' perdre -SFX tD perdre perdra/s' perdre -SFX tD perdre perdrons perdre -SFX tD perdre perdrez perdre -SFX tD perdre perdront/s' perdre -SFX tD perdre perdrais/m' perdre -SFX tD perdre perdrais/t' perdre -SFX tD perdre perdrait/s' perdre -SFX tD perdre perdrions perdre -SFX tD perdre perdriez perdre -SFX tD perdre perdraient/s' perdre -SFX tD perdre perde perdre -SFX tD perdre perdes perdre -SFX tD perdre perde perdre -SFX tD perdre perdions perdre -SFX tD perdre perdiez perdre -SFX tD perdre perdent perdre -SFX tD perdre perdisse/m' perdre -SFX tD perdre perdisses/t' perdre -SFX tD perdre perdît/s' perdre -SFX tD perdre perdissions perdre -SFX tD perdre perdissiez perdre -SFX tD perdre perdissent/s' perdre -SFX tD perdre perds/t' perdre -SFX tD perdre perdons perdre -SFX tD perdre perdez perdre - -SFX tE N 54 -SFX tE dre dre dre -SFX tE dre dant dre -SFX tE dre du dre -SFX tE dre dus morfondre -SFX tE dre due morfondre -SFX tE dre dues morfondre -SFX tE dre ds dre -SFX tE dre ds dre -SFX tE dre d dre -SFX tE dre dons dre -SFX tE dre dez dre -SFX tE dre dent dre -SFX tE dre dais dre -SFX tE dre dais dre -SFX tE dre dait dre -SFX tE dre dions dre -SFX tE dre diez dre -SFX tE dre daient dre -SFX tE dre dis dre -SFX tE dre dis dre -SFX tE dre dit dre -SFX tE dre dîmes dre -SFX tE dre dîtes dre -SFX tE dre dirent dre -SFX tE dre drai dre -SFX tE dre dras dre -SFX tE dre dra dre -SFX tE dre drons dre -SFX tE dre drez dre -SFX tE dre dront dre -SFX tE dre drais dre -SFX tE dre drais dre -SFX tE dre drait dre -SFX tE dre drions dre -SFX tE dre driez dre -SFX tE dre draient dre -SFX tE dre de dre -SFX tE dre des dre -SFX tE dre de dre -SFX tE dre dions dre -SFX tE dre diez dre -SFX tE dre dent dre -SFX tE dre disse dre -SFX tE dre disses dre -SFX tE dre dît dre -SFX tE dre dissions dre -SFX tE dre dissiez dre -SFX tE dre dissent dre -SFX tE dre ds [^o]ndre -SFX tE dre ds ondre -SFX tE dre dons [^o]ndre -SFX tE dre dons ondre -SFX tE dre dez [^o]ndre -SFX tE dre dez ondre - -SFX tF Y 50 -SFX tF rendre rendre/n'q'd'l'm't's' prendre -SFX tF rendre renant/n'q'l'm't's' prendre -SFX tF rendre ris/q' prendre -SFX tF rendre rise/q' prendre -SFX tF rendre rises/q' prendre -SFX tF rendre rends/n'q'j'l'm't' prendre -SFX tF rendre rends/n'q'l'm't' prendre -SFX tF rendre rend/n'q'l'm't's' prendre -SFX tF rendre renons/n'q'l't' prendre -SFX tF rendre renez/n'q'l'm' prendre -SFX tF rendre rennent/n'q'l'm't's' prendre -SFX tF rendre renais/n'q'j'l'm't' prendre -SFX tF rendre renais/n'q'l'm't' prendre -SFX tF rendre renait/n'q'l'm't's' prendre -SFX tF rendre renions/n'q'l't' prendre -SFX tF rendre reniez/n'q'l'm' prendre -SFX tF rendre renaient/n'q'l'm't's' prendre -SFX tF rendre ris/n'q'j'l'm't' prendre -SFX tF rendre ris/n'q'l'm't' prendre -SFX tF rendre rit/n'q'l'm't's' prendre -SFX tF rendre rîmes/n'q'l't' prendre -SFX tF rendre rîtes/n'q'l'm' prendre -SFX tF rendre rirent/n'q'l'm't's' prendre -SFX tF rendre rendrai/n'q'j'l'm't' prendre -SFX tF rendre rendras/n'q'l'm't' prendre -SFX tF rendre rendra/n'q'l'm't's' prendre -SFX tF rendre rendrons/n'q'l't' prendre -SFX tF rendre rendrez/n'q'l'm' prendre -SFX tF rendre rendront/n'q'l'm't's' prendre -SFX tF rendre rendrais/n'q'j'l'm't' prendre -SFX tF rendre rendrais/n'q'l'm't' prendre -SFX tF rendre rendrait/n'q'l'm't's' prendre -SFX tF rendre rendrions/n'q'l't' prendre -SFX tF rendre rendriez/n'q'l'm' prendre -SFX tF rendre rendraient/n'q'l'm't's' prendre -SFX tF rendre renne/n'j'l'm't' prendre -SFX tF rendre rennes/n'l'm't' prendre -SFX tF rendre renne/n'l'm't's' prendre -SFX tF rendre renions/n'l't' prendre -SFX tF rendre reniez/n'l'm' prendre -SFX tF rendre rennent/n'l'm't's' prendre -SFX tF rendre risse/n'q'j'l'm't' prendre -SFX tF rendre risses/n'q'l'm't' prendre -SFX tF rendre rît/n'q'l'm't's' prendre -SFX tF rendre rissions/n'q'l't' prendre -SFX tF rendre rissiez/n'q'l'm' prendre -SFX tF rendre rissent/n'q'l'm't's' prendre -SFX tF rendre rends/n'l'm' prendre -SFX tF rendre renons/n'l' prendre -SFX tF rendre renez/n'l'm' prendre - -SFX tG Y 50 -SFX tG prendre prendre/m't's' prendre -SFX tG prendre prenant/m't's' prendre -SFX tG prendre pris/q' prendre -SFX tG prendre prise/q' prendre -SFX tG prendre prises/q' prendre -SFX tG prendre prends/m' prendre -SFX tG prendre prends/t' prendre -SFX tG prendre prend/s' prendre -SFX tG prendre prenons prendre -SFX tG prendre prenez prendre -SFX tG prendre prennent/s' prendre -SFX tG prendre prenais/m' prendre -SFX tG prendre prenais/t' prendre -SFX tG prendre prenait/s' prendre -SFX tG prendre prenions prendre -SFX tG prendre preniez prendre -SFX tG prendre prenaient/s' prendre -SFX tG prendre pris/m' prendre -SFX tG prendre pris/t' prendre -SFX tG prendre prit/s' prendre -SFX tG prendre prîmes prendre -SFX tG prendre prîtes prendre -SFX tG prendre prirent/s' prendre -SFX tG prendre prendrai/m' prendre -SFX tG prendre prendras/t' prendre -SFX tG prendre prendra/s' prendre -SFX tG prendre prendrons prendre -SFX tG prendre prendrez prendre -SFX tG prendre prendront/s' prendre -SFX tG prendre prendrais/m' prendre -SFX tG prendre prendrais/t' prendre -SFX tG prendre prendrait/s' prendre -SFX tG prendre prendrions prendre -SFX tG prendre prendriez prendre -SFX tG prendre prendraient/s' prendre -SFX tG prendre prenne/m' prendre -SFX tG prendre prennes/t' prendre -SFX tG prendre prenne/s' prendre -SFX tG prendre prenions prendre -SFX tG prendre preniez prendre -SFX tG prendre prennent/s' prendre -SFX tG prendre prisse/m' prendre -SFX tG prendre prisses/t' prendre -SFX tG prendre prît/s' prendre -SFX tG prendre prissions prendre -SFX tG prendre prissiez prendre -SFX tG prendre prissent/s' prendre -SFX tG prendre prends/t' prendre -SFX tG prendre prenons prendre -SFX tG prendre prenez prendre - -SFX tM N 39 -SFX tM outre outre foutre -SFX tM outre outant foutre -SFX tM outre outu foutre -SFX tM outre outus foutre -SFX tM outre outue foutre -SFX tM outre outues foutre -SFX tM outre ous foutre -SFX tM outre ous foutre -SFX tM outre out foutre -SFX tM outre outons foutre -SFX tM outre outez foutre -SFX tM outre outent foutre -SFX tM outre outais foutre -SFX tM outre outais foutre -SFX tM outre outait foutre -SFX tM outre outions foutre -SFX tM outre outiez foutre -SFX tM outre outaient foutre -SFX tM outre outrai foutre -SFX tM outre outras foutre -SFX tM outre outra foutre -SFX tM outre outrons foutre -SFX tM outre outrez foutre -SFX tM outre outront foutre -SFX tM outre outrais foutre -SFX tM outre outrais foutre -SFX tM outre outrait foutre -SFX tM outre outrions foutre -SFX tM outre outriez foutre -SFX tM outre outraient foutre -SFX tM outre oute foutre -SFX tM outre outes foutre -SFX tM outre oute foutre -SFX tM outre outions foutre -SFX tM outre outiez foutre -SFX tM outre outent foutre -SFX tM outre ous-toi efoutre -SFX tM outre outons-nous efoutre -SFX tM outre outez-vous efoutre - -SFX tU N 5 -SFX tU istre istre tistre -SFX tU istre issu tistre -SFX tU istre issue tistre -SFX tU istre issus tistre -SFX tU istre issues tistre - -SFX uA Y 54 -SFX uA tre tre/n'q'd'l'm't's' tre -SFX uA tre tant/n'q'l'm't's' tre -SFX uA tre tu/q' tre -SFX uA tre tus/q' tre -SFX uA tre tue/q' tre -SFX uA tre tues/q' tre -SFX uA ttre ts/n'q'j'l'm't' ttre -SFX uA ttre ts/n'q'l'm't' ttre -SFX uA ttre t/n'q'l'm't's' ttre -SFX uA tre ts/n'q'j'l'm't' embatre -SFX uA tre ts/n'q'l'm't' embatre -SFX uA tre t/n'q'l'm't's' embatre -SFX uA tre tons/n'q'l't' tre -SFX uA tre tez/n'q'l'm' tre -SFX uA tre tent/n'q'l'm't's' tre -SFX uA tre tais/n'q'j'l'm't' tre -SFX uA tre tais/n'q'l'm't' tre -SFX uA tre tait/n'q'l'm't's' tre -SFX uA tre tions/n'q'l't' tre -SFX uA tre tiez/n'q'l'm' tre -SFX uA tre taient/n'q'l'm't's' tre -SFX uA tre tis/n'q'j'l'm't' tre -SFX uA tre tis/n'q'l'm't' tre -SFX uA tre tit/n'q'l'm't's' tre -SFX uA tre tîmes/n'q'l't' tre -SFX uA tre tîtes/n'q'l'm' tre -SFX uA tre tirent/n'q'l'm't's' tre -SFX uA tre trai/n'q'j'l'm't' tre -SFX uA tre tras/n'q'l'm't' tre -SFX uA tre tra/n'q'l'm't's' tre -SFX uA tre trons/n'q'l't' tre -SFX uA tre trez/n'q'l'm' tre -SFX uA tre tront/n'q'l'm't's' tre -SFX uA tre trais/n'q'j'l'm't' tre -SFX uA tre trais/n'q'l'm't' tre -SFX uA tre trait/n'q'l'm't's' tre -SFX uA tre trions/n'q'l't' tre -SFX uA tre triez/n'q'l'm' tre -SFX uA tre traient/n'q'l'm't's' tre -SFX uA tre te/n'j'l'm't' tre -SFX uA tre tes/n'l'm't' tre -SFX uA tre te/n'l'm't's' tre -SFX uA tre tions/n'l't' tre -SFX uA tre tiez/n'l'm' tre -SFX uA tre tent/n'q'l'm't's' tre -SFX uA tre tisse/n'q'j'l'm't' tre -SFX uA tre tisses/n'q'l'm't' tre -SFX uA tre tît/n'q'l'm't's' tre -SFX uA tre tissions/n'q'l't' tre -SFX uA tre tissiez/n'q'l'm' tre -SFX uA tre tissent/n'q'l'm't's' tre -SFX uA tre s/n'l'm' tre -SFX uA tre tons/n'l' tre -SFX uA tre tez/n'l'm' tre - -SFX uC Y 51 -SFX uC battre battre/m't's' battre -SFX uC battre battant/m't's' battre -SFX uC battre battu battre -SFX uC battre battus battre -SFX uC battre battue battre -SFX uC battre battues battre -SFX uC battre bats/m' battre -SFX uC battre bats/t' battre -SFX uC battre bat/s' battre -SFX uC battre battons battre -SFX uC battre battez battre -SFX uC battre battent/s' battre -SFX uC battre battais/m' battre -SFX uC battre battais/t' battre -SFX uC battre battait/s' battre -SFX uC battre battions battre -SFX uC battre battiez battre -SFX uC battre battaient/s' battre -SFX uC battre battis/m' battre -SFX uC battre battis/t' battre -SFX uC battre battit/s' battre -SFX uC battre battîmes battre -SFX uC battre battîtes battre -SFX uC battre battirent/s' battre -SFX uC battre battrai/m' battre -SFX uC battre battras/t' battre -SFX uC battre battra/s' battre -SFX uC battre battrons battre -SFX uC battre battrez battre -SFX uC battre battront/s' battre -SFX uC battre battrais/m' battre -SFX uC battre battrais/t' battre -SFX uC battre battrait/s' battre -SFX uC battre battrions battre -SFX uC battre battriez battre -SFX uC battre battraient/s' battre -SFX uC battre batte/m' battre -SFX uC battre battes/t' battre -SFX uC battre batte/s' battre -SFX uC battre battions battre -SFX uC battre battiez battre -SFX uC battre battent/s' battre -SFX uC battre battisse/m' battre -SFX uC battre battisses/t' battre -SFX uC battre battît/s' battre -SFX uC battre battissions battre -SFX uC battre battissiez battre -SFX uC battre battissent/s' battre -SFX uC battre bats/t' battre -SFX uC battre battons battre -SFX uC battre battez battre - -SFX uD Y 36 -SFX uD battre battre/s' battre -SFX uD battre battant/s' battre -SFX uD battre battu battre -SFX uD battre battus battre -SFX uD battre battue battre -SFX uD battre battues battre -SFX uD battre bat/s' battre -SFX uD battre battons battre -SFX uD battre battez battre -SFX uD battre battent/s' battre -SFX uD battre battait/s' battre -SFX uD battre battions battre -SFX uD battre battiez battre -SFX uD battre battaient/s' battre -SFX uD battre battit/s' battre -SFX uD battre battîmes battre -SFX uD battre battîtes battre -SFX uD battre battirent/s' battre -SFX uD battre battra/s' battre -SFX uD battre battrons battre -SFX uD battre battrez battre -SFX uD battre battront/s' battre -SFX uD battre battrait/s' battre -SFX uD battre battrions battre -SFX uD battre battriez battre -SFX uD battre battraient/s' battre -SFX uD battre batte/s' battre -SFX uD battre battions battre -SFX uD battre battiez battre -SFX uD battre battent/s' battre -SFX uD battre battît/s' battre -SFX uD battre battissions battre -SFX uD battre battissiez battre -SFX uD battre battissent/s' battre -SFX uD battre battons-nous battre -SFX uD battre battez-vous battre - -SFX vA Y 50 -SFX vA ettre ettre/n'q'd'l'm't's' mettre -SFX vA ettre ettant/n'q'l'm't's' mettre -SFX vA ettre is/q' mettre -SFX vA ettre ise/q' mettre -SFX vA ettre ises/q' mettre -SFX vA ettre ets/n'q'j'l'm't' mettre -SFX vA ettre ets/n'q'l'm't' mettre -SFX vA ettre et/n'q'l'm't's' mettre -SFX vA ettre ettons/n'q'l't' mettre -SFX vA ettre ettez/n'q'l'm' mettre -SFX vA ettre ettent/n'q'l'm't's' mettre -SFX vA ettre ettais/n'q'j'l'm't' mettre -SFX vA ettre ettais/n'q'l'm't' mettre -SFX vA ettre ettait/n'q'l'm't's' mettre -SFX vA ettre ettions/n'q'l't' mettre -SFX vA ettre ettiez/n'q'l'm' mettre -SFX vA ettre ettaient/n'q'l'm't's' mettre -SFX vA ettre is/n'q'j'l'm't' mettre -SFX vA ettre is/n'q'l'm't' mettre -SFX vA ettre it/n'q'l'm't's' mettre -SFX vA ettre îmes/n'q'l't' mettre -SFX vA ettre îtes/n'q'l'm' mettre -SFX vA ettre irent/n'q'l'm't's' mettre -SFX vA ettre ettrai/n'q'j'l'm't' mettre -SFX vA ettre ettras/n'q'l'm't' mettre -SFX vA ettre ettra/n'q'l'm't's' mettre -SFX vA ettre ettrons/n'q'l't' mettre -SFX vA ettre ettrez/n'q'l'm' mettre -SFX vA ettre ettront/n'q'l'm't's' mettre -SFX vA ettre ettrais/n'q'j'l'm't' mettre -SFX vA ettre ettrais/n'q'l'm't' mettre -SFX vA ettre ettrait/n'q'l'm't's' mettre -SFX vA ettre ettrions/n'q'l't' mettre -SFX vA ettre ettriez/n'q'l'm' mettre -SFX vA ettre ettraient/n'q'l'm't's' mettre -SFX vA ettre ette/n'j'l'm't' mettre -SFX vA ettre ettes/n'l'm't' mettre -SFX vA ettre ette/n'l'm't's' mettre -SFX vA ettre ettions/n'l't' mettre -SFX vA ettre ettiez/n'l'm' mettre -SFX vA ettre ettent/n'l'm't's' mettre -SFX vA ettre isse/n'q'j'l'm't' mettre -SFX vA ettre isses/n'q'l'm't' mettre -SFX vA ettre ît/n'q'l'm't's' mettre -SFX vA ettre issions/n'q'l't' mettre -SFX vA ettre issiez/n'q'l'm' mettre -SFX vA ettre issent/n'q'l'm't's' mettre -SFX vA ettre ets/n'l'm' mettre -SFX vA ettre ettons/n'l' mettre -SFX vA ettre ettez/n'l'm' mettre - -SFX vC Y 50 -SFX vC mettre mettre/m't's' mettre -SFX vC mettre mettant/m't's' mettre -SFX vC mettre mis mettre -SFX vC mettre mise mettre -SFX vC mettre mises mettre -SFX vC mettre mets/m' mettre -SFX vC mettre mets/t' mettre -SFX vC mettre met/s' mettre -SFX vC mettre mettons mettre -SFX vC mettre mettez mettre -SFX vC mettre mettent/s' mettre -SFX vC mettre mettais/m' mettre -SFX vC mettre mettais/t' mettre -SFX vC mettre mettait/s' mettre -SFX vC mettre mettions mettre -SFX vC mettre mettiez mettre -SFX vC mettre mettaient/s' mettre -SFX vC mettre mis/m' mettre -SFX vC mettre mis/t' mettre -SFX vC mettre mit/s' mettre -SFX vC mettre mîmes mettre -SFX vC mettre mîtes mettre -SFX vC mettre mirent/s' mettre -SFX vC mettre mettrai/m' mettre -SFX vC mettre mettras/t' mettre -SFX vC mettre mettra/s' mettre -SFX vC mettre mettrons mettre -SFX vC mettre mettrez mettre -SFX vC mettre mettront/s' mettre -SFX vC mettre mettrais/m' mettre -SFX vC mettre mettrais/t' mettre -SFX vC mettre mettrait/s' mettre -SFX vC mettre mettrions mettre -SFX vC mettre mettriez mettre -SFX vC mettre mettraient/s' mettre -SFX vC mettre mette/m' mettre -SFX vC mettre mettes/t' mettre -SFX vC mettre mette/s' mettre -SFX vC mettre mettions mettre -SFX vC mettre mettiez mettre -SFX vC mettre mettent/s' mettre -SFX vC mettre misse/m' mettre -SFX vC mettre misses/t' mettre -SFX vC mettre mît/s' mettre -SFX vC mettre missions mettre -SFX vC mettre missiez mettre -SFX vC mettre missent/s' mettre -SFX vC mettre mets mettre -SFX vC mettre mettons mettre -SFX vC mettre mettez mettre - -SFX wA N 51 -SFX wA eindre eindre eindre -SFX wA eindre eignant eindre -SFX wA eindre eint eindre -SFX wA eindre eints eindre -SFX wA eindre einte eindre -SFX wA eindre eintes eindre -SFX wA eindre eins eindre -SFX wA eindre eins eindre -SFX wA eindre eint eindre -SFX wA eindre eignons eindre -SFX wA eindre eignez eindre -SFX wA eindre eignent eindre -SFX wA eindre eignais eindre -SFX wA eindre eignais eindre -SFX wA eindre eignait eindre -SFX wA eindre eignions eindre -SFX wA eindre eigniez eindre -SFX wA eindre eignaient eindre -SFX wA eindre eignis eindre -SFX wA eindre eignis eindre -SFX wA eindre eignit eindre -SFX wA eindre eignîmes eindre -SFX wA eindre eignîtes eindre -SFX wA eindre eignirent eindre -SFX wA eindre eindrai eindre -SFX wA eindre eindras eindre -SFX wA eindre eindra eindre -SFX wA eindre eindrons eindre -SFX wA eindre eindrez eindre -SFX wA eindre eindront eindre -SFX wA eindre eindrais eindre -SFX wA eindre eindrais eindre -SFX wA eindre eindrait eindre -SFX wA eindre eindrions eindre -SFX wA eindre eindriez eindre -SFX wA eindre eindraient eindre -SFX wA eindre eigne eindre -SFX wA eindre eignes eindre -SFX wA eindre eigne eindre -SFX wA eindre eignions eindre -SFX wA eindre eigniez eindre -SFX wA eindre eignent eindre -SFX wA eindre eignisse eindre -SFX wA eindre eignisses eindre -SFX wA eindre eignît eindre -SFX wA eindre eignissions eindre -SFX wA eindre eignissiez eindre -SFX wA eindre eignissent eindre -SFX wA eindre eins eindre -SFX wA eindre eignons eindre -SFX wA eindre eignez eindre - -SFX wB Y 51 -SFX wB indre indre/n'q'd'l'm't's' indre -SFX wB indre ignant/n'q'l'm't's' indre -SFX wB indre int/q' indre -SFX wB indre ints/q' indre -SFX wB indre inte/q' indre -SFX wB indre intes/q' indre -SFX wB indre ins/n'q'j'l'm't' indre -SFX wB indre ins/n'q'l'm't' indre -SFX wB indre int/n'q'l'm't's' indre -SFX wB indre ignons/n'q'l't' indre -SFX wB indre ignez/n'q'l'm' indre -SFX wB indre ignent/n'q'l'm't's' indre -SFX wB indre ignais/n'q'j'l'm't' indre -SFX wB indre ignais/n'q'l'm't' indre -SFX wB indre ignait/n'q'l'm't's' indre -SFX wB indre ignions/n'q'l't' indre -SFX wB indre igniez/n'q'l'm' indre -SFX wB indre ignaient/n'q'l'm't's' indre -SFX wB indre ignis/n'q'j'l'm't' indre -SFX wB indre ignis/n'q'l'm't' indre -SFX wB indre ignit/n'q'l'm't's' indre -SFX wB indre ignîmes/n'q'l't' indre -SFX wB indre ignîtes/n'q'l'm' indre -SFX wB indre ignirent/n'q'l'm't's' indre -SFX wB indre indrai/n'q'j'l'm't' indre -SFX wB indre indras/n'q'l'm't' indre -SFX wB indre indra/n'q'l'm't's' indre -SFX wB indre indrons/n'q'l't' indre -SFX wB indre indrez/n'q'l'm' indre -SFX wB indre indront/n'q'l'm't's' indre -SFX wB indre indrais/n'q'j'l'm't' indre -SFX wB indre indrais/n'q'l'm't' indre -SFX wB indre indrait/n'q'l'm't's' indre -SFX wB indre indrions/n'q'l't' indre -SFX wB indre indriez/n'q'l'm' indre -SFX wB indre indraient/n'q'l'm't's' indre -SFX wB indre igne/n'j'l'm't' indre -SFX wB indre ignes/n'l'm't' indre -SFX wB indre igne/n'l'm't's' indre -SFX wB indre ignions/n'l't' indre -SFX wB indre igniez/n'l'm' indre -SFX wB indre ignent/n'l'm't's' indre -SFX wB indre ignisse/n'q'j'l'm't' indre -SFX wB indre ignisses/n'q'l'm't' indre -SFX wB indre ignît/n'q'l'm't's' indre -SFX wB indre ignissions/n'q'l't' indre -SFX wB indre ignissiez/n'q'l'm' indre -SFX wB indre ignissent/n'q'l'm't's' indre -SFX wB indre ins/n'l'm' indre -SFX wB indre ignons/n'l' indre -SFX wB indre ignez/n'l'm' indre - -SFX wD N 54 -SFX wD aire aire faire -SFX wD aire aisant faire -SFX wD aire ait faire -SFX wD aire aits faire -SFX wD aire aite faire -SFX wD aire aites faire -SFX wD aire ais faire -SFX wD aire ais faire -SFX wD aire ait faire -SFX wD aire aisons faire -SFX wD aire aites faire -SFX wD aire ont faire -SFX wD aire aisais faire -SFX wD aire aisais faire -SFX wD aire aisait faire -SFX wD aire aisions faire -SFX wD aire aisiez faire -SFX wD aire aisaient faire -SFX wD aire is faire -SFX wD aire is faire -SFX wD aire it faire -SFX wD aire îmes faire -SFX wD aire îtes faire -SFX wD aire irent faire -SFX wD aire erai faire -SFX wD aire eras faire -SFX wD aire era faire -SFX wD aire erons faire -SFX wD aire erez faire -SFX wD aire eront faire -SFX wD aire erais faire -SFX wD aire erais faire -SFX wD aire erait faire -SFX wD aire erions faire -SFX wD aire eriez faire -SFX wD aire eraient faire -SFX wD aire asse faire -SFX wD aire asses faire -SFX wD aire asse faire -SFX wD aire assions faire -SFX wD aire assiez faire -SFX wD aire assent faire -SFX wD aire isse faire -SFX wD aire isses faire -SFX wD aire ît faire -SFX wD aire issions faire -SFX wD aire issiez faire -SFX wD aire issent faire -SFX wD aire ais faire -SFX wD aire ais satisfaire -SFX wD aire aisons faire -SFX wD aire aisons satisfaire -SFX wD aire aites faire -SFX wD aire aites satisfaire - -SFX wF N 15 -SFX wF faire faire faire -SFX wF faire faisant faire -SFX wF faire fait faire -SFX wF faire faits faire -SFX wF faire faite faire -SFX wF faire faites faire -SFX wF faire fais faire -SFX wF faire fais faire -SFX wF faire fait faire -SFX wF faire faisons faire -SFX wF faire faites faire -SFX wF faire font faire -SFX wF faire fais faire -SFX wF faire faisons faire -SFX wF faire faites faire - -SFX wG N 6 -SFX wG aire aire faire -SFX wG aire aisant faire -SFX wG aire ait faire -SFX wG aire aits faire -SFX wG aire aite faire -SFX wG aire aites faire - -SFX wL Y 42 -SFX wL raire raire/n'q'd'l'm't's' traire -SFX wL raire rayant/n'q'l'm't's' traire -SFX wL raire rait/q' traire -SFX wL raire raits/q' traire -SFX wL raire raite/q' traire -SFX wL raire raites/q' traire -SFX wL raire rais/n'q'j'l'm't' traire -SFX wL raire rais/n'q'l'm't' traire -SFX wL raire rait/n'q'l'm't's' traire -SFX wL raire rayons/n'q'l't' traire -SFX wL raire rayez/n'q'l'm' traire -SFX wL raire raient/n'q'l'm't's' traire -SFX wL raire rayais/n'q'j'l'm't' traire -SFX wL raire rayais/n'q'l'm't' traire -SFX wL raire rayait/n'q'l'm't's' traire -SFX wL raire rayions/n'q'l't' traire -SFX wL raire rayiez/n'q'l'm' traire -SFX wL raire rayaient/n'q'l'm't's' traire -SFX wL raire rairai/n'q'j'l'm't' traire -SFX wL raire rairas/n'q'l'm't' traire -SFX wL raire raira/n'q'l'm't's' traire -SFX wL raire rairons/n'q'l't' traire -SFX wL raire rairez/n'q'l'm' traire -SFX wL raire rairont/n'q'l'm't's' traire -SFX wL raire rairais/n'q'j'l'm't' traire -SFX wL raire rairais/n'q'l'm't' traire -SFX wL raire rairait/n'q'l'm't's' traire -SFX wL raire rairions/n'q'l't' traire -SFX wL raire rairiez/n'q'l'm' traire -SFX wL raire rairaient/n'q'l'm't's' traire -SFX wL raire raie/n'q'j'l'm't' traire -SFX wL raire raies/n'q'l'm't' traire -SFX wL raire raie/n'q'l'm't's' traire -SFX wL raire rayions/n'q'l't' traire -SFX wL raire rayiez/n'q'l'm' traire -SFX wL raire raient/n'q'l'm't's' traire -SFX wL raire rais/n'l'm' traire -SFX wL raire rais/t' [^e]traire -SFX wL raire rayons/n'l' traire -SFX wL raire rayons [^e]traire -SFX wL raire rayez/n'l'm' traire -SFX wL raire rayez [^e]traire - -SFX wM N 39 -SFX wM aire aire raire -SFX wM aire ayant raire -SFX wM aire ait raire -SFX wM aire ais raire -SFX wM aire ais raire -SFX wM aire ait raire -SFX wM aire ayons raire -SFX wM aire ayez raire -SFX wM aire aient raire -SFX wM aire ayais raire -SFX wM aire ayais raire -SFX wM aire ayait raire -SFX wM aire ayions raire -SFX wM aire ayiez raire -SFX wM aire ayaient raire -SFX wM aire airai raire -SFX wM aire airas raire -SFX wM aire aira raire -SFX wM aire airons raire -SFX wM aire airez raire -SFX wM aire airont raire -SFX wM aire airais raire -SFX wM aire airais raire -SFX wM aire airait raire -SFX wM aire airions raire -SFX wM aire airiez raire -SFX wM aire airaient raire -SFX wM aire aie raire -SFX wM aire aies raire -SFX wM aire aie raire -SFX wM aire ayions raire -SFX wM aire ayiez raire -SFX wM aire aient raire -SFX wM aire ais raire -SFX wM aire ais braire -SFX wM aire ayons raire -SFX wM aire ayons braire -SFX wM aire ayez raire -SFX wM aire ayez braire - -SFX wN N 55 -SFX wN aire aire aire -SFX wN aire aisant aire -SFX wN aire u aire -SFX wN aire us taire -SFX wN aire ue taire -SFX wN aire ues taire -SFX wN aire ais aire -SFX wN aire ais aire -SFX wN aire ait taire -SFX wN aire aît plaire -SFX wN aire aisons aire -SFX wN aire aisez aire -SFX wN aire aisent aire -SFX wN aire aisais aire -SFX wN aire aisais aire -SFX wN aire aisait aire -SFX wN aire aisions aire -SFX wN aire aisiez aire -SFX wN aire aisaient aire -SFX wN aire us aire -SFX wN aire us aire -SFX wN aire ut aire -SFX wN aire ûmes aire -SFX wN aire ûtes aire -SFX wN aire urent aire -SFX wN aire airai aire -SFX wN aire airas aire -SFX wN aire aira aire -SFX wN aire airons aire -SFX wN aire airez aire -SFX wN aire airont aire -SFX wN aire airais aire -SFX wN aire airais aire -SFX wN aire airait aire -SFX wN aire airions aire -SFX wN aire airiez aire -SFX wN aire airaient aire -SFX wN aire aise aire -SFX wN aire aises aire -SFX wN aire aise aire -SFX wN aire aisions aire -SFX wN aire aisiez aire -SFX wN aire aisent aire -SFX wN aire usse aire -SFX wN aire usses aire -SFX wN aire ût aire -SFX wN aire ussions aire -SFX wN aire ussiez aire -SFX wN aire ussent aire -SFX wN aire ais plaire -SFX wN aire ais taire -SFX wN aire aisons plaire -SFX wN aire aisons taire -SFX wN aire aisez plaire -SFX wN aire aisez taire - -SFX wO N 54 -SFX wO aindre aindre aindre -SFX wO aindre aignant aindre -SFX wO aindre aint aindre -SFX wO aindre aints aindre -SFX wO aindre ainte aindre -SFX wO aindre aintes aindre -SFX wO aindre ains aindre -SFX wO aindre ains aindre -SFX wO aindre aint aindre -SFX wO aindre aignons aindre -SFX wO aindre aignez aindre -SFX wO aindre aignent aindre -SFX wO aindre aignais aindre -SFX wO aindre aignais aindre -SFX wO aindre aignait aindre -SFX wO aindre aignions aindre -SFX wO aindre aigniez aindre -SFX wO aindre aignaient aindre -SFX wO aindre aignis aindre -SFX wO aindre aignis aindre -SFX wO aindre aignit aindre -SFX wO aindre aignîmes aindre -SFX wO aindre aignîtes aindre -SFX wO aindre aignirent aindre -SFX wO aindre aindrai aindre -SFX wO aindre aindras aindre -SFX wO aindre aindra aindre -SFX wO aindre aindrons aindre -SFX wO aindre aindrez aindre -SFX wO aindre aindront aindre -SFX wO aindre aindrais aindre -SFX wO aindre aindrais aindre -SFX wO aindre aindrait aindre -SFX wO aindre aindrions aindre -SFX wO aindre aindriez aindre -SFX wO aindre aindraient aindre -SFX wO aindre aigne aindre -SFX wO aindre aignes aindre -SFX wO aindre aigne aindre -SFX wO aindre aignions aindre -SFX wO aindre aigniez aindre -SFX wO aindre aignent aindre -SFX wO aindre aignisse aindre -SFX wO aindre aignisses aindre -SFX wO aindre aignît aindre -SFX wO aindre aignissions aindre -SFX wO aindre aignissiez aindre -SFX wO aindre aignissent aindre -SFX wO aindre ains aindre -SFX wO aindre ains [tp].aindre -SFX wO aindre aignons aindre -SFX wO aindre aignons [tp].aindre -SFX wO aindre aignez aindre -SFX wO aindre aignez [tp].aindre - -SFX wP N 51 -SFX wP aincre aincre vaincre -SFX wP aincre ainquant vaincre -SFX wP aincre aincu vaincre -SFX wP aincre aincus vaincre -SFX wP aincre aincue vaincre -SFX wP aincre aincues vaincre -SFX wP aincre aincs vaincre -SFX wP aincre aincs vaincre -SFX wP aincre ainc vaincre -SFX wP aincre ainquons vaincre -SFX wP aincre ainquez vaincre -SFX wP aincre ainquent vaincre -SFX wP aincre ainquais vaincre -SFX wP aincre ainquais vaincre -SFX wP aincre ainquait vaincre -SFX wP aincre ainquions vaincre -SFX wP aincre ainquiez vaincre -SFX wP aincre ainquaient vaincre -SFX wP aincre ainquis vaincre -SFX wP aincre ainquis vaincre -SFX wP aincre ainquit vaincre -SFX wP aincre ainquîmes vaincre -SFX wP aincre ainquîtes vaincre -SFX wP aincre ainquirent vaincre -SFX wP aincre aincrai vaincre -SFX wP aincre aincras vaincre -SFX wP aincre aincra vaincre -SFX wP aincre aincrons vaincre -SFX wP aincre aincrez vaincre -SFX wP aincre aincront vaincre -SFX wP aincre aincrais vaincre -SFX wP aincre aincrais vaincre -SFX wP aincre aincrait vaincre -SFX wP aincre aincrions vaincre -SFX wP aincre aincriez vaincre -SFX wP aincre aincraient vaincre -SFX wP aincre ainque vaincre -SFX wP aincre ainques vaincre -SFX wP aincre ainque vaincre -SFX wP aincre ainquions vaincre -SFX wP aincre ainquiez vaincre -SFX wP aincre ainquent vaincre -SFX wP aincre ainquisse vaincre -SFX wP aincre ainquisses vaincre -SFX wP aincre ainquît vaincre -SFX wP aincre ainquissions vaincre -SFX wP aincre ainquissiez vaincre -SFX wP aincre ainquissent vaincre -SFX wP aincre aincs vaincre -SFX wP aincre ainquons vaincre -SFX wP aincre ainquez vaincre - -SFX wQ Y 54 -SFX wQ tre tre/n'q'd'm't's' tre -SFX wQ aître aissant/n'q'd'm't's' aître -SFX wQ aître u/q' aître -SFX wQ aître us/q' aître -SFX wQ aître ue/q' aître -SFX wQ aître ues/q' aître -SFX wQ aître ais/n'q'j'l't' aître -SFX wQ aître ais/n'q'l'm' aître -SFX wQ aître aît/n'q'l'm't's' aître -SFX wQ aître aissons/n'q'l't' aître -SFX wQ aître aissez/n'q'l'm' aître -SFX wQ aître aissont/n'q'l'm't's' aître -SFX wQ aître aissais/n'q'j'l't' aître -SFX wQ aître aissais/n'q'l'm' aître -SFX wQ aître aissait/n'q'l'm't's' aître -SFX wQ aître aissions/n'q'l't' aître -SFX wQ aître aissiez/n'q'l'm' aître -SFX wQ aître aissaient/n'q'l'm't's' aître -SFX wQ aître us/n'q'j'l't' aître -SFX wQ aître us/n'q'l'm' aître -SFX wQ aître ut/n'q'l'm't's' aître -SFX wQ aître ûmes/n'q'l't' aître -SFX wQ aître ûtes/n'q'l'm' aître -SFX wQ aître urent/n'q'l'm't's' aître -SFX wQ tre trai/n'q'j'l't' tre -SFX wQ tre tras/n'q'l'm' tre -SFX wQ tre tra/n'q'l'm't's' tre -SFX wQ tre trons/n'q'l't' tre -SFX wQ tre trez/n'q'l'm' tre -SFX wQ tre tront/n'q'l'm't's' tre -SFX wQ tre trais/n'q'j'l't' tre -SFX wQ tre trais/n'q'l'm' tre -SFX wQ tre trait/n'q'l'm't's' tre -SFX wQ tre trions/n'q'l't' tre -SFX wQ tre triez/n'q'l'm' tre -SFX wQ tre traient/n'q'l'm't's' tre -SFX wQ aître aisse/n'q'j'l't' aître -SFX wQ aître aisses/n'q'l'm' aître -SFX wQ aître aisse/n'q'l'm't's' aître -SFX wQ aître aissions/n'q'l't' aître -SFX wQ aître aissiez/n'q'l'm' aître -SFX wQ aître aissent/n'q'l'm't's' aître -SFX wQ aître usse/n'q'j'l't' aître -SFX wQ aître usses/n'q'l'm' aître -SFX wQ aître ût/n'q'l'm't's' aître -SFX wQ aître ussions/n'q'l't' aître -SFX wQ aître ussiez/n'q'l'm' aître -SFX wQ aître ussent/n'q'l'm't's' aître -SFX wQ aître ais/n'm' paraître -SFX wQ aître ais connaître -SFX wQ aître aissons/n' paraître -SFX wQ aître aissons connaître -SFX wQ aître aissez/n'm' paraître -SFX wQ aître aissez connaître - -SFX wR N 51 -SFX wR tre tre tre -SFX wR aître aissant naître -SFX wR aître é naître -SFX wR aître és naître -SFX wR aître ée naître -SFX wR aître ées naître -SFX wR aître ais naître -SFX wR aître ais naître -SFX wR aître aît naître -SFX wR aître aissons naître -SFX wR aître aissez naître -SFX wR aître aissent naître -SFX wR aître aissais naître -SFX wR aître aissais naître -SFX wR aître aissait naître -SFX wR aître aissions naître -SFX wR aître aissiez naître -SFX wR aître aissaient naître -SFX wR aître aquis naître -SFX wR aître aquis naître -SFX wR aître aquit naître -SFX wR aître aquîmes naître -SFX wR aître aquîtes naître -SFX wR aître aquirent naître -SFX wR tre trai tre -SFX wR tre tras tre -SFX wR tre tra tre -SFX wR tre trons tre -SFX wR tre trez tre -SFX wR tre tront tre -SFX wR tre trais tre -SFX wR tre trais tre -SFX wR tre trait tre -SFX wR tre trions tre -SFX wR tre triez tre -SFX wR tre traient tre -SFX wR aître aisse naître -SFX wR aître aisses naître -SFX wR aître aisse naître -SFX wR aître aissions naître -SFX wR aître aissiez naître -SFX wR aître aissent naître -SFX wR aître aquisse naître -SFX wR aître aquisses naître -SFX wR aître aquît naître -SFX wR aître aquissions naître -SFX wR aître aquissiez naître -SFX wR aître aquissent naître -SFX wR aître ais naître -SFX wR aître aissons naître -SFX wR aître aissez naître - -SFX wS N 54 -SFX wS tre tre tre -SFX wS aître aissant paître -SFX wS aître u repaître -SFX wS aître us repaître -SFX wS aître ue repaître -SFX wS aître ues repaître -SFX wS aître ais paître -SFX wS aître ais paître -SFX wS aître aît paître -SFX wS aître aissons paître -SFX wS aître aissez paître -SFX wS aître aissent paître -SFX wS aître aissais paître -SFX wS aître aissais paître -SFX wS aître aissait paître -SFX wS aître aissions paître -SFX wS aître aissiez paître -SFX wS aître aissaient paître -SFX wS aître us repaître -SFX wS aître us repaître -SFX wS aître ut repaître -SFX wS aître ûmes repaître -SFX wS aître ûtes repaître -SFX wS aître urent repaître -SFX wS tre trai tre -SFX wS tre tras tre -SFX wS tre tra tre -SFX wS tre trons tre -SFX wS tre trez tre -SFX wS tre tront tre -SFX wS tre trais tre -SFX wS tre trais tre -SFX wS tre trait tre -SFX wS tre trions tre -SFX wS tre triez tre -SFX wS tre traient tre -SFX wS aître aisse paître -SFX wS aître aisses paître -SFX wS aître aisse paître -SFX wS aître aissions paître -SFX wS aître aissiez paître -SFX wS aître aissent paître -SFX wS aître usse repaître -SFX wS aître usses repaître -SFX wS aître ût repaître -SFX wS aître ussions repaître -SFX wS aître ussiez repaître -SFX wS aître ussent repaître -SFX wS aître ais paître -SFX wS aître ais repaître -SFX wS aître aissons paître -SFX wS aître aissons repaître -SFX wS aître aissez paître -SFX wS aître aissez repaître - -SFX wT N 54 -SFX wT tre tre tre -SFX wT roître roissant croître -SFX wT roître rû recroître -SFX wT roître rûs recroître -SFX wT roître rûe recroître -SFX wT roître rûes recroître -SFX wT roître ru décroître -SFX wT roître rus décroître -SFX wT roître rue décroître -SFX wT roître rues décroître -SFX wT roître rois .croître -SFX wT roître rois .croître -SFX wT roître roit .croître -SFX wT roître roissons croître -SFX wT roître roissez croître -SFX wT roître roissent croître -SFX wT roître roissais croître -SFX wT roître roissais croître -SFX wT roître roissait croître -SFX wT roître roissions croître -SFX wT roître roissiez croître -SFX wT roître roissaient croître -SFX wT roître rus .croître -SFX wT roître rus .croître -SFX wT roître rut .croître -SFX wT roître rûmes croître -SFX wT roître rûtes croître -SFX wT roître rurent .croître -SFX wT tre trai tre -SFX wT tre tras tre -SFX wT tre tra tre -SFX wT tre trons tre -SFX wT tre trez tre -SFX wT tre tront tre -SFX wT tre trais tre -SFX wT tre trais tre -SFX wT tre trait tre -SFX wT tre trions tre -SFX wT tre triez tre -SFX wT tre traient tre -SFX wT roître roisse croître -SFX wT roître roisses croître -SFX wT roître roisse croître -SFX wT roître roissions croître -SFX wT roître roissiez croître -SFX wT roître roissent croître -SFX wT roître russe .croître -SFX wT roître russes .croître -SFX wT roître rût croître -SFX wT roître russions .croître -SFX wT roître russiez .croître -SFX wT roître russent .croître -SFX wT roître roissons croître -SFX wT roître roissez croître - -SFX wU N 17 -SFX wU roître rû croître -SFX wU roître rûs croître -SFX wU roître rûe croître -SFX wU roître rûes croître -SFX wU roître roîs croître -SFX wU roître roîs croître -SFX wU roître roît croître -SFX wU roître rûs croître -SFX wU roître rûs croître -SFX wU roître rût croître -SFX wU roître rûrent croître -SFX wU roître rûsse croître -SFX wU roître rûsses croître -SFX wU roître rûssions croître -SFX wU roître rûssiez croître -SFX wU roître rûssent croître -SFX wU roître roîs croître - -SFX wV Y 51 -SFX wV tre tre/n'q'd'l'm't's' tre -SFX wV croître croissant/n'q'd'l'm't's' croître -SFX wV croître cru/q' croître -SFX wV croître crus/q' croître -SFX wV croître crue/q' croître -SFX wV croître crues/q' croître -SFX wV croître crois/n'q'j'l'm' croître -SFX wV croître crois/n'q'l't' croître -SFX wV croître croît/n'q'l's' croître -SFX wV croître croissons/n'q'l' croître -SFX wV croître croissez/n'q'l' croître -SFX wV croître croissent/n'q'l's' croître -SFX wV croître croissais/n'q'j'l'm' croître -SFX wV croître croissais/n'q'l't' croître -SFX wV croître croissait/n'q'l's' croître -SFX wV croître croissions/n'q'l' croître -SFX wV croître croissiez/n'q'l' croître -SFX wV croître croissaient/n'q'l's' croître -SFX wV croître crus/n'q'j'l'm' croître -SFX wV croître crus/n'q'l't' croître -SFX wV croître crut/n'q'l's' croître -SFX wV croître crûmes/n'q'l' croître -SFX wV croître crûtes/n'q'l' croître -SFX wV croître crurent/n'q'l's' croître -SFX wV tre trai/n'q'j'l'm' tre -SFX wV tre tras/n'q'l't' tre -SFX wV tre tra/n'q'l's' tre -SFX wV tre trons/n'q'l' tre -SFX wV tre trez/n'q'l' tre -SFX wV tre tront/n'q'l's' tre -SFX wV tre trais/n'q'j'l'm' tre -SFX wV tre trais/n'q'l't' tre -SFX wV tre trait/n'q'l's' tre -SFX wV tre trions/n'q'l' tre -SFX wV tre triez/n'q'l' tre -SFX wV tre traient/n'q'l's' tre -SFX wV croître croisse/n'q'j'l'm' croître -SFX wV croître croisses/n'q'l't' croître -SFX wV croître croisse/n'q'l's' croître -SFX wV croître croissions/n'q'l' croître -SFX wV croître croissiez/n'q'l' croître -SFX wV croître croissent/n'q'l's' croître -SFX wV croître crusse/n'q'j'l'm' croître -SFX wV croître crusses/n'q'l't' croître -SFX wV croître crût/n'q'l's' croître -SFX wV croître crussions/n'q'l' croître -SFX wV croître crussiez/n'q'l' croître -SFX wV croître crussent/n'q'l's' croître -SFX wV croître crois/n'l'm' croître -SFX wV croître croissons/n'l' croître -SFX wV croître croissez/n'l'm' croître - -SFX xA N 51 -SFX xA roire roire croire -SFX xA roire royant croire -SFX xA roire ru croire -SFX xA roire rus croire -SFX xA roire rue croire -SFX xA roire rues croire -SFX xA roire rois croire -SFX xA roire rois croire -SFX xA roire roit croire -SFX xA roire royons croire -SFX xA roire royez croire -SFX xA roire roient croire -SFX xA roire royais croire -SFX xA roire royais croire -SFX xA roire royait croire -SFX xA roire royions croire -SFX xA roire royiez croire -SFX xA roire royaient croire -SFX xA roire rus croire -SFX xA roire rus croire -SFX xA roire rut croire -SFX xA roire rûmes croire -SFX xA roire rûtes croire -SFX xA roire rurent croire -SFX xA roire roirai croire -SFX xA roire roiras croire -SFX xA roire roira croire -SFX xA roire roirons croire -SFX xA roire roirez croire -SFX xA roire roiront croire -SFX xA roire roirais croire -SFX xA roire roirais croire -SFX xA roire roirait croire -SFX xA roire roirions croire -SFX xA roire roiriez croire -SFX xA roire roiraient croire -SFX xA roire roie croire -SFX xA roire roies croire -SFX xA roire roie croire -SFX xA roire royions croire -SFX xA roire royiez croire -SFX xA roire roient croire -SFX xA roire russe croire -SFX xA roire russes croire -SFX xA roire rût croire -SFX xA roire russions croire -SFX xA roire russiez croire -SFX xA roire russent croire -SFX xA roire rois croire -SFX xA roire royons croire -SFX xA roire royez croire - -SFX xB Y 1 -SFX xB croire croire/n'q'd'l' accroire - -SFX xC N 51 -SFX xC oire oire boire -SFX xC oire uvant boire -SFX xC oire u boire -SFX xC oire us boire -SFX xC oire ue boire -SFX xC oire ues boire -SFX xC oire ois boire -SFX xC oire ois boire -SFX xC oire oit boire -SFX xC oire uvons boire -SFX xC oire uvez boire -SFX xC oire oivent boire -SFX xC oire uvais boire -SFX xC oire uvais boire -SFX xC oire uvait boire -SFX xC oire uvions boire -SFX xC oire uviez boire -SFX xC oire uvaient boire -SFX xC oire us boire -SFX xC oire us boire -SFX xC oire ut boire -SFX xC oire ûmes boire -SFX xC oire ûtes boire -SFX xC oire urent boire -SFX xC oire oirai boire -SFX xC oire oiras boire -SFX xC oire oira boire -SFX xC oire oirons boire -SFX xC oire oirez boire -SFX xC oire oiront boire -SFX xC oire oirais boire -SFX xC oire oirais boire -SFX xC oire oirait boire -SFX xC oire oirions boire -SFX xC oire oiriez boire -SFX xC oire oiraient boire -SFX xC oire oive boire -SFX xC oire oives boire -SFX xC oire oive boire -SFX xC oire uvions boire -SFX xC oire uviez boire -SFX xC oire oivent boire -SFX xC oire usse boire -SFX xC oire usses boire -SFX xC oire ût boire -SFX xC oire ussions boire -SFX xC oire ussiez boire -SFX xC oire ussent boire -SFX xC oire ois boire -SFX xC oire uvons boire -SFX xC oire uvez boire - -SFX xD Y 51 -SFX xD boire boire/m't's' boire -SFX xD boire buvant/m't's' boire -SFX xD boire bu boire -SFX xD boire bus boire -SFX xD boire bue boire -SFX xD boire bues boire -SFX xD boire bois/m' boire -SFX xD boire bois/t' boire -SFX xD boire boit/s' boire -SFX xD boire buvons boire -SFX xD boire buvez boire -SFX xD boire boivent/s' boire -SFX xD boire buvais/m' boire -SFX xD boire buvais/t' boire -SFX xD boire buvait/s' boire -SFX xD boire buvions boire -SFX xD boire buviez boire -SFX xD boire buvaient/s' boire -SFX xD boire bus/m' boire -SFX xD boire bus/t' boire -SFX xD boire but/s' boire -SFX xD boire bûmes boire -SFX xD boire bûtes boire -SFX xD boire burent/s' boire -SFX xD boire boirai/m' boire -SFX xD boire boiras/t' boire -SFX xD boire boira/s' boire -SFX xD boire boirons boire -SFX xD boire boirez boire -SFX xD boire boiront/s' boire -SFX xD boire boirais/m' boire -SFX xD boire boirais/t' boire -SFX xD boire boirait/s' boire -SFX xD boire boirions boire -SFX xD boire boiriez boire -SFX xD boire boiraient/s' boire -SFX xD boire boive/m' boire -SFX xD boire boives/t' boire -SFX xD boire boive/s' boire -SFX xD boire buvions boire -SFX xD boire buviez boire -SFX xD boire boivent/s' boire -SFX xD boire busse/m' boire -SFX xD boire busses/t' boire -SFX xD boire bût/s' boire -SFX xD boire bussions boire -SFX xD boire bussiez boire -SFX xD boire bussent/s' boire -SFX xD boire bois/t' boire -SFX xD boire buvons boire -SFX xD boire buvez boire - -SFX xJ N 4 -SFX xJ clure clure clure -SFX xJ clure clus clure -SFX xJ clure cluse clure -SFX xJ clure cluses clure - -SFX xK Y 50 -SFX xK clure clure/n'q'd'l'm't's' clure -SFX xK clure cluant/n'q'l'm't's' clure -SFX xK clure clus/q' clure -SFX xK clure cluse/q' clure -SFX xK clure cluses/q' clure -SFX xK clure clus/n'q'j'l' clure -SFX xK clure clus/n'q'l' clure -SFX xK clure clut/n'q'l' clure -SFX xK clure cluons/n'q'l' clure -SFX xK clure cluez/n'q'l' clure -SFX xK clure cluent/n'q'l' clure -SFX xK clure cluais/n'q'j'l' clure -SFX xK clure cluais/n'q'l' clure -SFX xK clure cluait/n'q'l' clure -SFX xK clure cluions/n'q'l' clure -SFX xK clure cluiez/n'q'l' clure -SFX xK clure cluaient/n'q'l' clure -SFX xK clure clus/n'q'j'l' clure -SFX xK clure clus/n'q'l' clure -SFX xK clure clut/n'q'l' clure -SFX xK clure clûmes/n'q'l' clure -SFX xK clure clûtes/n'q'l' clure -SFX xK clure clurent/n'q'l' clure -SFX xK clure clurai/n'q'j'l' clure -SFX xK clure cluras/n'q'l' clure -SFX xK clure clura/n'q'l' clure -SFX xK clure clurons/n'q'l' clure -SFX xK clure clurez/n'q'l' clure -SFX xK clure cluront/n'q'l' clure -SFX xK clure clurais/n'q'j'l' clure -SFX xK clure clurais/n'q'l' clure -SFX xK clure clurait/n'q'l' clure -SFX xK clure clurions/n'q'l' clure -SFX xK clure cluriez/n'q'l' clure -SFX xK clure cluraient/n'q'l' clure -SFX xK clure clue/n'q'j'l' clure -SFX xK clure clues/n'q'l' clure -SFX xK clure clue/n'q'l' clure -SFX xK clure cluions/n'q'l' clure -SFX xK clure cluiez/n'q'l' clure -SFX xK clure cluent/n'q'l' clure -SFX xK clure clusse/n'q'j'l' clure -SFX xK clure clusses/n'q'l' clure -SFX xK clure clût/n'q'l' clure -SFX xK clure clussions/n'q'l' clure -SFX xK clure clussiez/n'q'l' clure -SFX xK clure clussent/n'q'l' clure -SFX xK clure clus/n'l' clure -SFX xK clure cluons/n'l' clure -SFX xK clure cluez/n'l' clure - -SFX xL Y 57 -SFX xL clure clure/n'q'd'l'm't's' clure -SFX xL clure cluant/n'q'l'm't's' clure -SFX xL clure clus/q' inclure -SFX xL clure cluse/q' inclure -SFX xL clure cluses/q' inclure -SFX xL clure clu/q' [eo].clure -SFX xL clure clus/q' [eo].clure -SFX xL clure clue/q' [eo].clure -SFX xL clure clues/q' [eo].clure -SFX xL clure clus/n'q'j'l'm't' clure -SFX xL clure clus/n'q'l'm't' clure -SFX xL clure clut/n'q'l'm't's' clure -SFX xL clure cluons/n'q'l't' clure -SFX xL clure cluez/n'q'l'm' clure -SFX xL clure cluent/n'q'l'm't's' clure -SFX xL clure cluais/n'q'j'l'm't' clure -SFX xL clure cluais/n'q'l'm't' clure -SFX xL clure cluait/n'q'l'm't's' clure -SFX xL clure cluions/n'q'l't' clure -SFX xL clure cluiez/n'q'l'm' clure -SFX xL clure cluaient/n'q'l'm't's' clure -SFX xL clure clus/n'q'j'l'm't' clure -SFX xL clure clus/n'q'l'm't' clure -SFX xL clure clut/n'q'l'm't's' clure -SFX xL clure clûmes/n'q'l't' clure -SFX xL clure clûtes/n'q'l'm' clure -SFX xL clure clurent/n'q'l'm't's' clure -SFX xL clure clurai/n'q'j'l'm't' clure -SFX xL clure cluras/n'q'l'm't' clure -SFX xL clure clura/n'q'l'm't's' clure -SFX xL clure clurons/n'q'l't' clure -SFX xL clure clurez/n'q'l'm' clure -SFX xL clure cluront/n'q'l'm't's' clure -SFX xL clure clurais/n'q'j'l'm't' clure -SFX xL clure clurais/n'q'l'm't' clure -SFX xL clure clurait/n'q'l'm't's' clure -SFX xL clure clurions/n'q'l't' clure -SFX xL clure cluriez/n'q'l'm' clure -SFX xL clure cluraient/n'q'l'm't's' clure -SFX xL clure clue/n'j'l'm't' clure -SFX xL clure clues/n'l'm't' clure -SFX xL clure clue/n'l'm't's' clure -SFX xL clure cluions/n'l't' clure -SFX xL clure cluiez/n'l'm' clure -SFX xL clure cluent/n'q'l'm't's' clure -SFX xL clure clusse/n'q'j'l'm't' clure -SFX xL clure clusses/n'q'l'm't' clure -SFX xL clure clût/n'q'l'm't's' clure -SFX xL clure clussions/n'q'l't' clure -SFX xL clure clussiez/n'q'l'm' clure -SFX xL clure clussent/n'q'l'm't's' clure -SFX xL clure clus/n'l'm' clure -SFX xL clure clus/t' exclure -SFX xL clure cluons/n'l' clure -SFX xL clure cluons exclure -SFX xL clure cluez/n'l'm' clure -SFX xL clure cluez exclure - -SFX xM N 5 -SFX xM ourdre ourdre sourdre -SFX xM ourdre ourd sourdre -SFX xM ourdre ourdent sourdre -SFX xM ourdre ourdait sourdre -SFX xM ourdre ourdaient sourdre - -SFX xN Y 54 -SFX xN soudre soudre/n'q'd'l'm't's' soudre -SFX xN soudre solvant/n'q'l'm't's' soudre -SFX xN soudre sous/q' soudre -SFX xN soudre soute/q' soudre -SFX xN soudre soutes/q' soudre -SFX xN soudre solu/q' résoudre -SFX xN soudre solus/q' résoudre -SFX xN soudre solue/q' résoudre -SFX xN soudre solues/q' résoudre -SFX xN soudre sous/n'q'j'l'm't' soudre -SFX xN soudre sous/n'q'l'm't' soudre -SFX xN soudre sout/n'q'l'm't's' soudre -SFX xN soudre solvons/n'q'l't' soudre -SFX xN soudre solvez/n'q'l'm' soudre -SFX xN soudre solvent/n'q'l'm't's' soudre -SFX xN soudre solvais/n'q'j'l'm't' soudre -SFX xN soudre solvais/n'q'l'm't' soudre -SFX xN soudre solvait/n'q'l'm't's' soudre -SFX xN soudre solvions/n'q'l't' soudre -SFX xN soudre solviez/n'q'l'm' soudre -SFX xN soudre solvaient/n'q'l'm't's' soudre -SFX xN soudre solus/n'q'j'l'm't' soudre -SFX xN soudre solus/n'q'l'm't' soudre -SFX xN soudre solut/n'q'l'm't's' soudre -SFX xN soudre solûmes/n'q'l't' soudre -SFX xN soudre solûtes/n'q'l'm' soudre -SFX xN soudre solurent/n'q'l'm't's' soudre -SFX xN soudre soudrai/n'q'j'l'm't' soudre -SFX xN soudre soudras/n'q'l'm't' soudre -SFX xN soudre soudra/n'q'l'm't's' soudre -SFX xN soudre soudrons/n'q'l't' soudre -SFX xN soudre soudrez/n'q'l'm' soudre -SFX xN soudre soudront/n'q'l'm't's' soudre -SFX xN soudre soudrais/n'q'j'l'm't' soudre -SFX xN soudre soudrais/n'q'l'm't' soudre -SFX xN soudre soudrait/n'q'l'm't's' soudre -SFX xN soudre soudrions/n'q'l't' soudre -SFX xN soudre soudriez/n'q'l'm' soudre -SFX xN soudre soudraient/n'q'l'm't's' soudre -SFX xN soudre solve/n'j'l'm't' soudre -SFX xN soudre solves/n'l'm't' soudre -SFX xN soudre solve/n'l'm't's' soudre -SFX xN soudre solvions/n'l't' soudre -SFX xN soudre solviez/n'l'm' soudre -SFX xN soudre solvent/n'l'm't's' soudre -SFX xN soudre solusse/n'q'j'l'm't' soudre -SFX xN soudre solusses/n'q'l'm't' soudre -SFX xN soudre solût/n'q'l'm't's' soudre -SFX xN soudre solussions/n'q'l't' soudre -SFX xN soudre solussiez/n'q'l'm' soudre -SFX xN soudre solussent/n'q'l'm't's' soudre -SFX xN soudre sous/n'l'm' soudre -SFX xN soudre solvons/n'l' soudre -SFX xN soudre solvez/n'l'm' soudre - -SFX xO N 51 -SFX xO oudre oudre coudre -SFX xO oudre ousant coudre -SFX xO oudre ousu coudre -SFX xO oudre ousus coudre -SFX xO oudre ousue coudre -SFX xO oudre ousues coudre -SFX xO oudre ouds coudre -SFX xO oudre ouds coudre -SFX xO oudre oud coudre -SFX xO oudre ousons coudre -SFX xO oudre ousez coudre -SFX xO oudre ousent coudre -SFX xO oudre ousais coudre -SFX xO oudre ousais coudre -SFX xO oudre ousait coudre -SFX xO oudre ousions coudre -SFX xO oudre ousiez coudre -SFX xO oudre ousaient coudre -SFX xO oudre ousis coudre -SFX xO oudre ousis coudre -SFX xO oudre ousit coudre -SFX xO oudre ousîmes coudre -SFX xO oudre ousîtes coudre -SFX xO oudre ousirent coudre -SFX xO oudre oudrai coudre -SFX xO oudre oudras coudre -SFX xO oudre oudra coudre -SFX xO oudre oudrons coudre -SFX xO oudre oudrez coudre -SFX xO oudre oudront coudre -SFX xO oudre oudrais coudre -SFX xO oudre oudrais coudre -SFX xO oudre oudrait coudre -SFX xO oudre oudrions coudre -SFX xO oudre oudriez coudre -SFX xO oudre oudraient coudre -SFX xO oudre ouse coudre -SFX xO oudre ouses coudre -SFX xO oudre ouse coudre -SFX xO oudre ousions coudre -SFX xO oudre ousiez coudre -SFX xO oudre ousent coudre -SFX xO oudre ousisse coudre -SFX xO oudre ousisses coudre -SFX xO oudre ousît coudre -SFX xO oudre ousissions coudre -SFX xO oudre ousissiez coudre -SFX xO oudre ousissent coudre -SFX xO oudre ouds coudre -SFX xO oudre ousons coudre -SFX xO oudre ousez coudre - -SFX xP Y 51 -SFX xP oudre oudre/n'q'd'l' moudre -SFX xP oudre oulant/n'q'l' moudre -SFX xP oudre oulu/q' moudre -SFX xP oudre oulus/q' moudre -SFX xP oudre oulue/q' moudre -SFX xP oudre oulues/q' moudre -SFX xP oudre ouds/n'q'l' moudre -SFX xP oudre ouds/n'q'l' moudre -SFX xP oudre oud/n'q'l' moudre -SFX xP oudre oulons/n'q'l' moudre -SFX xP oudre oulez/n'q'l' moudre -SFX xP oudre oulent/n'q'l' moudre -SFX xP oudre oulais/n'q'l' moudre -SFX xP oudre oulais/n'q'l' moudre -SFX xP oudre oulait/n'q'l' moudre -SFX xP oudre oulions/n'q'l' moudre -SFX xP oudre ouliez/n'q'l' moudre -SFX xP oudre oulaient/n'q'l' moudre -SFX xP oudre oulus/n'q'l' moudre -SFX xP oudre oulus/n'q'l' moudre -SFX xP oudre oulut/n'q'l' moudre -SFX xP oudre oulûmes/n'q'l' moudre -SFX xP oudre oulûtes/n'q'l' moudre -SFX xP oudre oulurent/n'q'l' moudre -SFX xP oudre oudrai/n'q'l' moudre -SFX xP oudre oudras/n'q'l' moudre -SFX xP oudre oudra/n'q'l' moudre -SFX xP oudre oudrons/n'q'l' moudre -SFX xP oudre oudrez/n'q'l' moudre -SFX xP oudre oudront/n'q'l' moudre -SFX xP oudre oudrais/n'q'l' moudre -SFX xP oudre oudrais/n'q'l' moudre -SFX xP oudre oudrait/n'q'l' moudre -SFX xP oudre oudrions/n'q'l' moudre -SFX xP oudre oudriez/n'q'l' moudre -SFX xP oudre oudraient/n'q'l' moudre -SFX xP oudre oule/n'q'l' moudre -SFX xP oudre oules/n'q'l' moudre -SFX xP oudre oule/n'q'l' moudre -SFX xP oudre oulions/n'q'l' moudre -SFX xP oudre ouliez/n'q'l' moudre -SFX xP oudre oulent/n'q'l' moudre -SFX xP oudre oulusse/n'q'l' moudre -SFX xP oudre oulusses/n'q'l' moudre -SFX xP oudre oulût/n'q'l' moudre -SFX xP oudre oulussions/n'q'l' moudre -SFX xP oudre oulussiez/n'q'l' moudre -SFX xP oudre oulussent/n'q'l' moudre -SFX xP oudre ouds/n'l'm' moudre -SFX xP oudre oulons/n'l' moudre -SFX xP oudre oulez/n'l'm' moudre - -SFX xQ N 51 -SFX xQ uivre uivre suivre -SFX xQ uivre uivant suivre -SFX xQ uivre uivi suivre -SFX xQ uivre uivis suivre -SFX xQ uivre uivie suivre -SFX xQ uivre uivies suivre -SFX xQ uivre uis suivre -SFX xQ uivre uis suivre -SFX xQ uivre uit suivre -SFX xQ uivre uivons suivre -SFX xQ uivre uivez suivre -SFX xQ uivre uivent suivre -SFX xQ uivre uivais suivre -SFX xQ uivre uivais suivre -SFX xQ uivre uivait suivre -SFX xQ uivre uivions suivre -SFX xQ uivre uiviez suivre -SFX xQ uivre uivaient suivre -SFX xQ uivre uivis suivre -SFX xQ uivre uivis suivre -SFX xQ uivre uivit suivre -SFX xQ uivre uivîmes suivre -SFX xQ uivre uivîtes suivre -SFX xQ uivre uivirent suivre -SFX xQ uivre uivrai suivre -SFX xQ uivre uivras suivre -SFX xQ uivre uivra suivre -SFX xQ uivre uivrons suivre -SFX xQ uivre uivrez suivre -SFX xQ uivre uivront suivre -SFX xQ uivre uivrais suivre -SFX xQ uivre uivrais suivre -SFX xQ uivre uivrait suivre -SFX xQ uivre uivrions suivre -SFX xQ uivre uivriez suivre -SFX xQ uivre uivraient suivre -SFX xQ uivre uive suivre -SFX xQ uivre uives suivre -SFX xQ uivre uive suivre -SFX xQ uivre uivions suivre -SFX xQ uivre uiviez suivre -SFX xQ uivre uivent suivre -SFX xQ uivre uivisse suivre -SFX xQ uivre uivisses suivre -SFX xQ uivre uivît suivre -SFX xQ uivre uivissions suivre -SFX xQ uivre uivissiez suivre -SFX xQ uivre uivissent suivre -SFX xQ uivre uis suivre -SFX xQ uivre uivons suivre -SFX xQ uivre uivez suivre - -SFX xR Y 17 -SFX xR suivre suivre/s' suivre -SFX xR suivre suivant/s' suivre -SFX xR suivre suivi suivre -SFX xR suivre suit/s' suivre -SFX xR suivre suivent/s' suivre -SFX xR suivre suivait/s' suivre -SFX xR suivre suivaient/s' suivre -SFX xR suivre suivit/s' suivre -SFX xR suivre suivirent/s' suivre -SFX xR suivre suivra/s' suivre -SFX xR suivre suivront/s' suivre -SFX xR suivre suivrait/s' suivre -SFX xR suivre suivraient/s' suivre -SFX xR suivre suive/s' suivre -SFX xR suivre suivent/s' suivre -SFX xR suivre suivît/s' suivre -SFX xR suivre suivissent/s' suivre - -SFX xS N 54 -SFX xS ivre ivre vivre -SFX xS ivre ivant vivre -SFX xS ivre écu vivre -SFX xS ivre écus [^r]vivre -SFX xS ivre écue [^r]vivre -SFX xS ivre écues [^r]vivre -SFX xS ivre is vivre -SFX xS ivre is vivre -SFX xS ivre it vivre -SFX xS ivre ivons vivre -SFX xS ivre ivez vivre -SFX xS ivre ivent vivre -SFX xS ivre ivais vivre -SFX xS ivre ivais vivre -SFX xS ivre ivait vivre -SFX xS ivre ivions vivre -SFX xS ivre iviez vivre -SFX xS ivre ivaient vivre -SFX xS ivre écus vivre -SFX xS ivre écus vivre -SFX xS ivre écut vivre -SFX xS ivre écûmes vivre -SFX xS ivre écûtes vivre -SFX xS ivre écurent vivre -SFX xS ivre ivrai vivre -SFX xS ivre ivras vivre -SFX xS ivre ivra vivre -SFX xS ivre ivrons vivre -SFX xS ivre ivrez vivre -SFX xS ivre ivront vivre -SFX xS ivre ivrais vivre -SFX xS ivre ivrais vivre -SFX xS ivre ivrait vivre -SFX xS ivre ivrions vivre -SFX xS ivre ivriez vivre -SFX xS ivre ivraient vivre -SFX xS ivre ive vivre -SFX xS ivre ives vivre -SFX xS ivre ive vivre -SFX xS ivre ivions vivre -SFX xS ivre iviez vivre -SFX xS ivre ivent vivre -SFX xS ivre écusse vivre -SFX xS ivre écusses vivre -SFX xS ivre écût vivre -SFX xS ivre écussions vivre -SFX xS ivre écussiez vivre -SFX xS ivre écussent vivre -SFX xS ivre is [^r]vivre -SFX xS ivre is survivre -SFX xS ivre ivons [^r]vivre -SFX xS ivre ivons survivre -SFX xS ivre ivez [^r]vivre -SFX xS ivre ivez survivre - -SFX xT N 6 -SFX xT ivre écus vivre -SFX xT ivre écue vivre -SFX xT ivre écues vivre -SFX xT ivre is vivre -SFX xT ivre ivons vivre -SFX xT ivre ivez vivre - -SFX y1 Y 48 -SFX y1 crire crire/n'q'd'l'm't's' crire -SFX y1 crire crivant/n'q'l'm't's' crire -SFX y1 crire crit/q' crire -SFX y1 crire crits/q' crire -SFX y1 crire crite/q' crire -SFX y1 crire crites/q' crire -SFX y1 crire cris/n'q'j'l'm't' crire -SFX y1 crire cris/n'q'l'm't' crire -SFX y1 crire crit/n'q'l'm't's' crire -SFX y1 crire crivons/n'q'l't' crire -SFX y1 crire crivez/n'q'l'm' crire -SFX y1 crire crivent/n'q'l'm't's' crire -SFX y1 crire crivais/n'q'j'l'm't' crire -SFX y1 crire crivais/n'q'l'm't' crire -SFX y1 crire crivait/n'q'l'm't's' crire -SFX y1 crire crivions/n'q'l't' crire -SFX y1 crire criviez/n'q'l'm' crire -SFX y1 crire crivaient/n'q'l'm't's' crire -SFX y1 crire crivis/n'q'j'l'm't' crire -SFX y1 crire crivis/n'q'l'm't' crire -SFX y1 crire crivit/n'q'l'm't's' crire -SFX y1 crire crivîmes/n'q'l't' crire -SFX y1 crire crivîtes/n'q'l'm' crire -SFX y1 crire crivirent/n'q'l'm't's' crire -SFX y1 crire crirai/n'q'j'l'm't' crire -SFX y1 crire criras/n'q'l'm't' crire -SFX y1 crire crira/n'q'l'm't's' crire -SFX y1 crire crirons/n'q'l't' crire -SFX y1 crire crirez/n'q'l'm' crire -SFX y1 crire criront/n'q'l'm't's' crire -SFX y1 crire crirais/n'q'j'l'm't' crire -SFX y1 crire crirais/n'q'l'm't' crire -SFX y1 crire crirait/n'q'l'm't's' crire -SFX y1 crire cririons/n'q'l't' crire -SFX y1 crire cririez/n'q'l'm' crire -SFX y1 crire criraient/n'q'l'm't's' crire -SFX y1 crire crive/n'j'l'm't' crire -SFX y1 crire crives/n'l'm't' crire -SFX y1 crire crive/n'l'm't's' crire -SFX y1 crire crivions/n'l't' crire -SFX y1 crire criviez/n'l'm' crire -SFX y1 crire crivent/n'l'm't's' crire -SFX y1 crire crivisse/n'q'j'l'm't' crire -SFX y1 crire crivisses/n'q'l'm't' crire -SFX y1 crire crivît/n'q'l'm't's' crire -SFX y1 crire crivissions/n'q'l't' crire -SFX y1 crire crivissiez/n'q'l'm' crire -SFX y1 crire crivissent/n'q'l'm't's' crire - -SFX yA N 51 -SFX yA ire ire lire -SFX yA ire isant lire -SFX yA ire u lire -SFX yA ire us lire -SFX yA ire ue lire -SFX yA ire ues lire -SFX yA ire is lire -SFX yA ire is lire -SFX yA ire it lire -SFX yA ire isons lire -SFX yA ire isez lire -SFX yA ire isent lire -SFX yA ire isais lire -SFX yA ire isais lire -SFX yA ire isait lire -SFX yA ire isions lire -SFX yA ire isiez lire -SFX yA ire isaient lire -SFX yA ire us lire -SFX yA ire us lire -SFX yA ire ut lire -SFX yA ire ûmes lire -SFX yA ire ûtes lire -SFX yA ire urent lire -SFX yA ire irai lire -SFX yA ire iras lire -SFX yA ire ira lire -SFX yA ire irons lire -SFX yA ire irez lire -SFX yA ire iront lire -SFX yA ire irais lire -SFX yA ire irais lire -SFX yA ire irait lire -SFX yA ire irions lire -SFX yA ire iriez lire -SFX yA ire iraient lire -SFX yA ire ise lire -SFX yA ire ises lire -SFX yA ire ise lire -SFX yA ire isions lire -SFX yA ire isiez lire -SFX yA ire isent lire -SFX yA ire usse lire -SFX yA ire usses lire -SFX yA ire ût lire -SFX yA ire ussions lire -SFX yA ire ussiez lire -SFX yA ire ussent lire -SFX yA ire is lire -SFX yA ire isons lire -SFX yA ire isez lire - -SFX yB Y 51 -SFX yB lire lire/n'q'd'l'm't's' lire -SFX yB lire lisant/n'q'l'm't's' lire -SFX yB lire lu/q' lire -SFX yB lire lus/q' lire -SFX yB lire lue/q' lire -SFX yB lire lues/q' lire -SFX yB lire lis/n'q'j'l'm't' lire -SFX yB lire lis/n'q'l'm't' lire -SFX yB lire lit/n'q'l'm't's' lire -SFX yB lire lisons/n'q'l't' lire -SFX yB lire lisez/n'q'l'm' lire -SFX yB lire lisent/n'q'l'm't's' lire -SFX yB lire lisais/n'q'j'l'm't' lire -SFX yB lire lisais/n'q'l'm't' lire -SFX yB lire lisait/n'q'l'm't's' lire -SFX yB lire lisions/n'q'l't' lire -SFX yB lire lisiez/n'q'l'm' lire -SFX yB lire lisaient/n'q'l'm't's' lire -SFX yB lire lus/n'q'j'l'm't' lire -SFX yB lire lus/n'q'l'm't' lire -SFX yB lire lut/n'q'l'm't's' lire -SFX yB lire lûmes/n'q'l't' lire -SFX yB lire lûtes/n'q'l'm' lire -SFX yB lire lurent/n'q'l'm't's' lire -SFX yB lire lirai/n'q'j'l'm't' lire -SFX yB lire liras/n'q'l'm't' lire -SFX yB lire lira/n'q'l'm't's' lire -SFX yB lire lirons/n'q'l't' lire -SFX yB lire lirez/n'q'l'm' lire -SFX yB lire liront/n'q'l'm't's' lire -SFX yB lire lirais/n'q'j'l'm't' lire -SFX yB lire lirais/n'q'l'm't' lire -SFX yB lire lirait/n'q'l'm't's' lire -SFX yB lire lirions/n'q'l't' lire -SFX yB lire liriez/n'q'l'm' lire -SFX yB lire liraient/n'q'l'm't's' lire -SFX yB lire lise/n'j'l'm't' lire -SFX yB lire lises/n'l'm't' lire -SFX yB lire lise/n'l'm't's' lire -SFX yB lire lisions/n'l't' lire -SFX yB lire lisiez/n'l'm' lire -SFX yB lire lisent/n'l'm't's' lire -SFX yB lire lusse/n'q'j'l'm't' lire -SFX yB lire lusses/n'q'l'm't' lire -SFX yB lire lût/n'q'l'm't's' lire -SFX yB lire lussions/n'q'l't' lire -SFX yB lire lussiez/n'q'l'm' lire -SFX yB lire lussent/n'q'l'm't's' lire -SFX yB lire lis/n'l'm' lire -SFX yB lire lisons/n'l' lire -SFX yB lire lisez/n'l'm' lire - -SFX yC N 51 -SFX yC ire ire dire -SFX yC ire isant dire -SFX yC ire it dire -SFX yC ire its dire -SFX yC ire ite dire -SFX yC ire ites dire -SFX yC ire is dire -SFX yC ire is dire -SFX yC ire it dire -SFX yC ire isons dire -SFX yC ire ites dire -SFX yC ire isent dire -SFX yC ire isais dire -SFX yC ire isais dire -SFX yC ire isait dire -SFX yC ire isions dire -SFX yC ire isiez dire -SFX yC ire isaient dire -SFX yC ire is dire -SFX yC ire is dire -SFX yC ire it dire -SFX yC ire îmes dire -SFX yC ire îtes dire -SFX yC ire irent dire -SFX yC ire irai dire -SFX yC ire iras dire -SFX yC ire ira dire -SFX yC ire irons dire -SFX yC ire irez dire -SFX yC ire iront dire -SFX yC ire irais dire -SFX yC ire irais dire -SFX yC ire irait dire -SFX yC ire irions dire -SFX yC ire iriez dire -SFX yC ire iraient dire -SFX yC ire ise dire -SFX yC ire ises dire -SFX yC ire ise dire -SFX yC ire isions dire -SFX yC ire isiez dire -SFX yC ire isent dire -SFX yC ire isse dire -SFX yC ire isses dire -SFX yC ire ît dire -SFX yC ire issions dire -SFX yC ire issiez dire -SFX yC ire issent dire -SFX yC ire is dire -SFX yC ire isons dire -SFX yC ire ites dire - -SFX yD Y 51 -SFX yD dire dire/n'q'd'l'm't's' dire -SFX yD dire disant/n'q'l'm't's' dire -SFX yD dire dit/q' dire -SFX yD dire dits/q' dire -SFX yD dire dite/q' dire -SFX yD dire dites/q' dire -SFX yD dire dis/n'q'j'l'm't' dire -SFX yD dire dis/n'q'l'm't' dire -SFX yD dire dit/n'q'l'm't's' dire -SFX yD dire disons/n'q'l't' dire -SFX yD dire disez/n'q'l'm' dire -SFX yD dire disent/n'q'l'm't's' dire -SFX yD dire disais/n'q'j'l'm't' dire -SFX yD dire disais/n'q'l'm't' dire -SFX yD dire disait/n'q'l'm't's' dire -SFX yD dire disions/n'q'l't' dire -SFX yD dire disiez/n'q'l'm' dire -SFX yD dire disaient/n'q'l'm't's' dire -SFX yD dire dis/n'q'j'l'm't' dire -SFX yD dire dis/n'q'l'm't' dire -SFX yD dire dit/n'q'l'm't's' dire -SFX yD dire dîmes/n'q'l't' dire -SFX yD dire dîtes/n'q'l'm' dire -SFX yD dire dirent/n'q'l'm't's' dire -SFX yD dire dirai/n'q'j'l'm't' dire -SFX yD dire diras/n'q'l'm't' dire -SFX yD dire dira/n'q'l'm't's' dire -SFX yD dire dirons/n'q'l't' dire -SFX yD dire direz/n'q'l'm' dire -SFX yD dire diront/n'q'l'm't's' dire -SFX yD dire dirais/n'q'j'l'm't' dire -SFX yD dire dirais/n'q'l'm't' dire -SFX yD dire dirait/n'q'l'm't's' dire -SFX yD dire dirions/n'q'l't' dire -SFX yD dire diriez/n'q'l'm' dire -SFX yD dire diraient/n'q'l'm't's' dire -SFX yD dire dise/n'j'l'm't' dire -SFX yD dire dises/n'l'm't' dire -SFX yD dire dise/n'l'm't's' dire -SFX yD dire disions/n'l't' dire -SFX yD dire disiez/n'l'm' dire -SFX yD dire disent/n'q'l'm't's' dire -SFX yD dire disse/n'q'j'l'm't' dire -SFX yD dire disses/n'q'l'm't' dire -SFX yD dire dît/n'q'l'm't's' dire -SFX yD dire dissions/n'q'l't' dire -SFX yD dire dissiez/n'q'l'm' dire -SFX yD dire dissent/n'q'l'm't's' dire -SFX yD dire dis/n'l'm't' dire -SFX yD dire disons/n'l' dire -SFX yD dire disez/n'l'm' dire - -SFX yE N 51 -SFX yE édire édire dire -SFX yE édire édisant dire -SFX yE édire édit dire -SFX yE édire édits dire -SFX yE édire édite dire -SFX yE édire édites dire -SFX yE édire édis dire -SFX yE édire édis dire -SFX yE édire édit dire -SFX yE édire édisons dire -SFX yE édire édisez dire -SFX yE édire édisent dire -SFX yE édire édisais dire -SFX yE édire édisais dire -SFX yE édire édisait dire -SFX yE édire édisions dire -SFX yE édire édisiez dire -SFX yE édire édisaient dire -SFX yE édire édis dire -SFX yE édire édis dire -SFX yE édire édit dire -SFX yE édire édîmes dire -SFX yE édire édîtes dire -SFX yE édire édirent dire -SFX yE édire édirai dire -SFX yE édire édiras dire -SFX yE édire édira dire -SFX yE édire édirons dire -SFX yE édire édirez dire -SFX yE édire édiront dire -SFX yE édire édirais dire -SFX yE édire édirais dire -SFX yE édire édirait dire -SFX yE édire édirions dire -SFX yE édire édiriez dire -SFX yE édire édiraient dire -SFX yE édire édise dire -SFX yE édire édises dire -SFX yE édire édise dire -SFX yE édire édisions dire -SFX yE édire édisiez dire -SFX yE édire édisent dire -SFX yE édire édisse dire -SFX yE édire édisses dire -SFX yE édire édît dire -SFX yE édire édissions dire -SFX yE édire édissiez dire -SFX yE édire édissent dire -SFX yE édire édis dire -SFX yE édire édisons dire -SFX yE édire édisez dire - -SFX yF N 51 -SFX yF audire audire dire -SFX yF audire audissant dire -SFX yF audire audit dire -SFX yF audire audits dire -SFX yF audire audite dire -SFX yF audire audites dire -SFX yF audire audis dire -SFX yF audire audis dire -SFX yF audire audit dire -SFX yF audire audissons dire -SFX yF audire audissez dire -SFX yF audire audissent dire -SFX yF audire audissais dire -SFX yF audire audissais dire -SFX yF audire audissait dire -SFX yF audire audissions dire -SFX yF audire audissiez dire -SFX yF audire audissaient dire -SFX yF audire audis dire -SFX yF audire audis dire -SFX yF audire audit dire -SFX yF audire audîmes dire -SFX yF audire audîtes dire -SFX yF audire audirent dire -SFX yF audire audirai dire -SFX yF audire audiras dire -SFX yF audire audira dire -SFX yF audire audirons dire -SFX yF audire audirez dire -SFX yF audire audiront dire -SFX yF audire audirais dire -SFX yF audire audirais dire -SFX yF audire audirait dire -SFX yF audire audirions dire -SFX yF audire audiriez dire -SFX yF audire audiraient dire -SFX yF audire audisse dire -SFX yF audire audisses dire -SFX yF audire audisse dire -SFX yF audire audissions dire -SFX yF audire audissiez dire -SFX yF audire audissent dire -SFX yF audire audisse dire -SFX yF audire audisses dire -SFX yF audire audît dire -SFX yF audire audissions dire -SFX yF audire audissiez dire -SFX yF audire audissent dire -SFX yF audire audis dire -SFX yF audire audissons dire -SFX yF audire audissez dire - -SFX yG Y 48 -SFX yG dire dire/m't's' dire -SFX yG dire disant/m't's' dire -SFX yG dire dit dire -SFX yG dire dis/m' dire -SFX yG dire dis/t' dire -SFX yG dire dit/s' dire -SFX yG dire disons dire -SFX yG dire disez dire -SFX yG dire disent/s' dire -SFX yG dire disais/m' dire -SFX yG dire disais/t' dire -SFX yG dire disait/s' dire -SFX yG dire disions dire -SFX yG dire disiez dire -SFX yG dire disaient/s' dire -SFX yG dire dis/m' dire -SFX yG dire dis/t' dire -SFX yG dire dit/s' dire -SFX yG dire dîmes dire -SFX yG dire dîtes dire -SFX yG dire dirent/s' dire -SFX yG dire dirai/m' dire -SFX yG dire diras/t' dire -SFX yG dire dira/s' dire -SFX yG dire dirons dire -SFX yG dire direz dire -SFX yG dire diront/s' dire -SFX yG dire dirais/m' dire -SFX yG dire dirais/t' dire -SFX yG dire dirait/s' dire -SFX yG dire dirions dire -SFX yG dire diriez dire -SFX yG dire diraient/s' dire -SFX yG dire dise dire -SFX yG dire dises dire -SFX yG dire dise dire -SFX yG dire disions dire -SFX yG dire disiez dire -SFX yG dire disent dire -SFX yG dire disse/m' dire -SFX yG dire disses/t' dire -SFX yG dire dît/s' dire -SFX yG dire dissions dire -SFX yG dire dissiez dire -SFX yG dire dissent/s' dire -SFX yG dire dis/t' dire -SFX yG dire disons dire -SFX yG dire disez dire - -SFX yJ N 9 -SFX yJ ruire ruire uire -SFX yJ ruire ruissant uire -SFX yJ ruire rui uire -SFX yJ ruire ruit uire -SFX yJ ruire ruissent uire -SFX yJ ruire ruissait uire -SFX yJ ruire ruissaient uire -SFX yJ ruire ruisse uire -SFX yJ ruire ruissent uire - -SFX yK N 5 -SFX yK bduire bduire uire -SFX yK bduire bduit uire -SFX yK bduire bduits uire -SFX yK bduire bduite uire -SFX yK bduire bduites uire - -SFX yL Y 51 -SFX yL uire uire/n'q'd'l'm't's' uire -SFX yL uire uisant/n'q'l'm't's' uire -SFX yL uire uit/q' uire -SFX yL uire uits/q' uire -SFX yL uire uite/q' uire -SFX yL uire uites/q' uire -SFX yL uire uis/n'q'j'l't' uire -SFX yL uire uis/n'q'l'm' uire -SFX yL uire uit/n'q'l'm't's' uire -SFX yL uire uisons/n'q'l't' uire -SFX yL uire uisez/n'q'l'm' uire -SFX yL uire uisent/n'q'l'm't's' uire -SFX yL uire uisais/n'q'j'l't' uire -SFX yL uire uisais/n'q'l'm' uire -SFX yL uire uisait/n'q'l'm't's' uire -SFX yL uire uisions/n'q'l't' uire -SFX yL uire uisiez/n'q'l'm' uire -SFX yL uire uisaient/n'q'l'm't's' uire -SFX yL uire uisis/n'q'j'l't' uire -SFX yL uire uisis/n'q'l'm' uire -SFX yL uire uisit/n'q'l'm't's' uire -SFX yL uire uisîmes/n'q'l't' uire -SFX yL uire uisîtes/n'q'l'm' uire -SFX yL uire uisirent/n'q'l'm't's' uire -SFX yL uire uirai/n'q'j'l't' uire -SFX yL uire uiras/n'q'l'm' uire -SFX yL uire uira/n'q'l'm't's' uire -SFX yL uire uirons/n'q'l't' uire -SFX yL uire uirez/n'q'l'm' uire -SFX yL uire uiront/n'q'l'm't's' uire -SFX yL uire uirais/n'q'j'l't' uire -SFX yL uire uirais/n'q'l'm' uire -SFX yL uire uirait/n'q'l'm't's' uire -SFX yL uire uirions/n'q'l't' uire -SFX yL uire uiriez/n'q'l'm' uire -SFX yL uire uiraient/n'q'l'm't's' uire -SFX yL uire uise/n'j'l't' uire -SFX yL uire uises/n'l'm' uire -SFX yL uire uise/n'l'm't's' uire -SFX yL uire uisions/n'l't' uire -SFX yL uire uisiez/n'l'm' uire -SFX yL uire uisent/n'l'm't's' uire -SFX yL uire uisisse/n'q'j'l't' uire -SFX yL uire uisisses/n'q'l'm' uire -SFX yL uire uisît/n'q'l'm't's' uire -SFX yL uire uisissions/n'q'l't' uire -SFX yL uire uisissiez/n'q'l'm' uire -SFX yL uire uisissent/n'q'l'm't's' uire -SFX yL uire uis/n'l'm' uire -SFX yL uire uisons/n'l' uire -SFX yL uire uisez/n'l'm' uire - -SFX yM Y 51 -SFX yM uire uire/n'q'd'l'm't's' uire -SFX yM uire uisant/n'q'l'm't's' uire -SFX yM uire uit/q' uire -SFX yM uire uits/q' uire -SFX yM uire uite/q' uire -SFX yM uire uites/q' uire -SFX yM uire uis/n'q'j'l'm't' uire -SFX yM uire uis/n'q'l'm't' uire -SFX yM uire uit/n'q'l'm't's' uire -SFX yM uire uisons/n'q'l't' uire -SFX yM uire uisez/n'q'l'm' uire -SFX yM uire uisent/n'q'l'm't's' uire -SFX yM uire uisais/n'q'j'l'm't' uire -SFX yM uire uisais/n'q'l'm't' uire -SFX yM uire uisait/n'q'l'm't's' uire -SFX yM uire uisions/n'q'l't' uire -SFX yM uire uisiez/n'q'l'm' uire -SFX yM uire uisaient/n'q'l'm't's' uire -SFX yM uire uisis/n'q'j'l'm't' uire -SFX yM uire uisis/n'q'l'm't' uire -SFX yM uire uisit/n'q'l'm't's' uire -SFX yM uire uisîmes/n'q'l't' uire -SFX yM uire uisîtes/n'q'l'm' uire -SFX yM uire uisirent/n'q'l'm't's' uire -SFX yM uire uirai/n'q'j'l'm't' uire -SFX yM uire uiras/n'q'l'm't' uire -SFX yM uire uira/n'q'l'm't's' uire -SFX yM uire uirons/n'q'l't' uire -SFX yM uire uirez/n'q'l'm' uire -SFX yM uire uiront/n'q'l'm't's' uire -SFX yM uire uirais/n'q'j'l'm't' uire -SFX yM uire uirais/n'q'l'm't' uire -SFX yM uire uirait/n'q'l'm't's' uire -SFX yM uire uirions/n'q'l't' uire -SFX yM uire uiriez/n'q'l'm' uire -SFX yM uire uiraient/n'q'l'm't's' uire -SFX yM uire uise/n'j'l'm't' uire -SFX yM uire uises/n'l'm't' uire -SFX yM uire uise/n'l'm't's' uire -SFX yM uire uisions/n'l't' uire -SFX yM uire uisiez/n'l'm' uire -SFX yM uire uisent/n'l'm't's' uire -SFX yM uire uisisse/n'q'j'l'm't' uire -SFX yM uire uisisses/n'q'l'm't' uire -SFX yM uire uisît/n'q'l'm't's' uire -SFX yM uire uisissions/n'q'l't' uire -SFX yM uire uisissiez/n'q'l'm' uire -SFX yM uire uisissent/n'q'l'm't's' uire -SFX yM uire uis/n'l'm't' uire -SFX yM uire uisons/n'l' uire -SFX yM uire uisez/n'l'm' uire - -SFX yN Y 36 -SFX yN truire truire/s' uire -SFX yN truire truisant/s' uire -SFX yN truire truit uire -SFX yN truire truits uire -SFX yN truire truite uire -SFX yN truire truites uire -SFX yN truire truit/s' uire -SFX yN truire truisons uire -SFX yN truire truisez uire -SFX yN truire truisent/s' uire -SFX yN truire truisait/s' uire -SFX yN truire truisions uire -SFX yN truire truisiez uire -SFX yN truire truisaient/s' uire -SFX yN truire truisit/s' uire -SFX yN truire truisîmes uire -SFX yN truire truisîtes uire -SFX yN truire truisirent/s' uire -SFX yN truire truira/s' uire -SFX yN truire truirons uire -SFX yN truire truirez uire -SFX yN truire truiront/s' uire -SFX yN truire truirait/s' uire -SFX yN truire truirions uire -SFX yN truire truiriez uire -SFX yN truire truiraient/s' uire -SFX yN truire truise/s' uire -SFX yN truire truisions uire -SFX yN truire truisiez uire -SFX yN truire truisent/s' uire -SFX yN truire truisît/s' uire -SFX yN truire truisissions uire -SFX yN truire truisissiez uire -SFX yN truire truisissent/s' uire -SFX yN truire truisons-nous uire -SFX yN truire truisez-vous uire - -SFX yO Y 51 -SFX yO détruire détruire/m't's' détruire -SFX yO détruire détruisant/m't's' détruire -SFX yO détruire détruit détruire -SFX yO détruire détruits détruire -SFX yO détruire détruite détruire -SFX yO détruire détruites détruire -SFX yO détruire détruis/m' détruire -SFX yO détruire détruis/t' détruire -SFX yO détruire détruit/s' détruire -SFX yO détruire détruisons détruire -SFX yO détruire détruisez détruire -SFX yO détruire détruisent/s' détruire -SFX yO détruire détruisais/m' détruire -SFX yO détruire détruisais/t' détruire -SFX yO détruire détruisait/s' détruire -SFX yO détruire détruisions détruire -SFX yO détruire détruisiez détruire -SFX yO détruire détruisaient/s' détruire -SFX yO détruire détruisis/m' détruire -SFX yO détruire détruisis/t' détruire -SFX yO détruire détruisit/s' détruire -SFX yO détruire détruisîmes détruire -SFX yO détruire détruisîtes détruire -SFX yO détruire détruisirent/s' détruire -SFX yO détruire détruirai/m' détruire -SFX yO détruire détruiras/t' détruire -SFX yO détruire détruira/s' détruire -SFX yO détruire détruirons détruire -SFX yO détruire détruirez détruire -SFX yO détruire détruiront/s' détruire -SFX yO détruire détruirais/m' détruire -SFX yO détruire détruirais/t' détruire -SFX yO détruire détruirait/s' détruire -SFX yO détruire détruirions détruire -SFX yO détruire détruiriez détruire -SFX yO détruire détruiraient/s' détruire -SFX yO détruire détruise/m' détruire -SFX yO détruire détruises/t' détruire -SFX yO détruire détruise/s' détruire -SFX yO détruire détruisions détruire -SFX yO détruire détruisiez détruire -SFX yO détruire détruisent/s' détruire -SFX yO détruire détruisisse/m' détruire -SFX yO détruire détruisisses/t' détruire -SFX yO détruire détruisît/s' détruire -SFX yO détruire détruisissions détruire -SFX yO détruire détruisissiez détruire -SFX yO détruire détruisissent/s' détruire -SFX yO détruire détruis/t' détruire -SFX yO détruire détruisons détruire -SFX yO détruire détruisez détruire - -SFX yU N 51 -SFX yU uire uire uire -SFX yU uire uisant uire -SFX yU uire ui uire -SFX yU uire uis uire -SFX yU uire uis uire -SFX yU uire uit uire -SFX yU uire uisons uire -SFX yU uire uisez uire -SFX yU uire uisent uire -SFX yU uire uisais uire -SFX yU uire uisais uire -SFX yU uire uisait uire -SFX yU uire uisions uire -SFX yU uire uisiez uire -SFX yU uire uisaient uire -SFX yU uire uisis uire -SFX yU uire uisis uire -SFX yU uire uisit uire -SFX yU uire uisîmes uire -SFX yU uire uisîtes uire -SFX yU uire uisirent uire -SFX yU uire uirai uire -SFX yU uire uiras uire -SFX yU uire uira uire -SFX yU uire uirons uire -SFX yU uire uirez uire -SFX yU uire uiront uire -SFX yU uire uirais uire -SFX yU uire uirais uire -SFX yU uire uirait uire -SFX yU uire uirions uire -SFX yU uire uiriez uire -SFX yU uire uiraient uire -SFX yU uire uise uire -SFX yU uire uises uire -SFX yU uire uise uire -SFX yU uire uisions uire -SFX yU uire uisiez uire -SFX yU uire uisent uire -SFX yU uire uisisse uire -SFX yU uire uisisses uire -SFX yU uire uisît uire -SFX yU uire uisissions uire -SFX yU uire uisissiez uire -SFX yU uire uisissent uire -SFX yU uire uis luire -SFX yU uire uis nuire -SFX yU uire uisons luire -SFX yU uire uisons nuire -SFX yU uire uisez luire -SFX yU uire uisez nuire - -SFX yV N 58 -SFX yV ire ire ire -SFX yV ire isant ire -SFX yV ire it nfire -SFX yV ire its nfire -SFX yV ire ite nfire -SFX yV ire ites nfire -SFX yV ire is cire -SFX yV ire ise cire -SFX yV ire ises cire -SFX yV ire i ffire -SFX yV ire is ire -SFX yV ire is ire -SFX yV ire it ire -SFX yV ire isons ire -SFX yV ire isez ire -SFX yV ire isent ire -SFX yV ire isais ire -SFX yV ire isais ire -SFX yV ire isait ire -SFX yV ire isions ire -SFX yV ire isiez ire -SFX yV ire isaient ire -SFX yV ire is ire -SFX yV ire is ire -SFX yV ire it ire -SFX yV ire îmes ire -SFX yV ire îtes ire -SFX yV ire irent ire -SFX yV ire irai ire -SFX yV ire iras ire -SFX yV ire ira ire -SFX yV ire irons ire -SFX yV ire irez ire -SFX yV ire iront ire -SFX yV ire irais ire -SFX yV ire irais ire -SFX yV ire irait ire -SFX yV ire irions ire -SFX yV ire iriez ire -SFX yV ire iraient ire -SFX yV ire ise ire -SFX yV ire ises ire -SFX yV ire ise ire -SFX yV ire isions ire -SFX yV ire isiez ire -SFX yV ire isent ire -SFX yV ire isse ire -SFX yV ire isses ire -SFX yV ire ît ire -SFX yV ire issions ire -SFX yV ire issiez ire -SFX yV ire issent ire -SFX yV ire is n.ire -SFX yV ire is ffire -SFX yV ire isons n.ire -SFX yV ire isons ffire -SFX yV ire isez n.ire -SFX yV ire isez ffire - -SFX yW N 51 -SFX yW ire ire rire -SFX yW ire iant rire -SFX yW ire i rire -SFX yW ire is rire -SFX yW ire is rire -SFX yW ire it rire -SFX yW ire ions rire -SFX yW ire iez rire -SFX yW ire ient rire -SFX yW ire iais rire -SFX yW ire iais rire -SFX yW ire iait rire -SFX yW ire iions rire -SFX yW ire iiez rire -SFX yW ire iaient rire -SFX yW ire is rire -SFX yW ire is rire -SFX yW ire it rire -SFX yW ire îmes rire -SFX yW ire îtes rire -SFX yW ire irent rire -SFX yW ire irai rire -SFX yW ire iras rire -SFX yW ire ira rire -SFX yW ire irons rire -SFX yW ire irez rire -SFX yW ire iront rire -SFX yW ire irais rire -SFX yW ire irais rire -SFX yW ire irait rire -SFX yW ire irions rire -SFX yW ire iriez rire -SFX yW ire iraient rire -SFX yW ire ie rire -SFX yW ire ies rire -SFX yW ire ie rire -SFX yW ire iions rire -SFX yW ire iiez rire -SFX yW ire ient rire -SFX yW ire isse rire -SFX yW ire isses rire -SFX yW ire ît rire -SFX yW ire issions rire -SFX yW ire issiez rire -SFX yW ire issent rire -SFX yW ire is rire -SFX yW ire is sourire -SFX yW ire ions rire -SFX yW ire ions sourire -SFX yW ire iez rire -SFX yW ire iez sourire - -SFX yX Y 36 -SFX yX nuire nuire/s' nuire -SFX yX nuire nuisant/s' nuire -SFX yX nuire nui nuire -SFX yX nuire nuis nuire -SFX yX nuire nuie nuire -SFX yX nuire nuies nuire -SFX yX nuire nuit/s' nuire -SFX yX nuire nuisons nuire -SFX yX nuire nuisez nuire -SFX yX nuire nuisent/s' nuire -SFX yX nuire nuisait/s' nuire -SFX yX nuire nuisions nuire -SFX yX nuire nuisiez nuire -SFX yX nuire nuisaient/s' nuire -SFX yX nuire nuisit/s' nuire -SFX yX nuire nuisîmes nuire -SFX yX nuire nuisîtes nuire -SFX yX nuire nuisirent/s' nuire -SFX yX nuire nuira/s' nuire -SFX yX nuire nuirons nuire -SFX yX nuire nuirez nuire -SFX yX nuire nuiront/s' nuire -SFX yX nuire nuirait/s' nuire -SFX yX nuire nuirions nuire -SFX yX nuire nuiriez nuire -SFX yX nuire nuiraient/s' nuire -SFX yX nuire nuise/s' nuire -SFX yX nuire nuisions nuire -SFX yX nuire nuisiez nuire -SFX yX nuire nuisent/s' nuire -SFX yX nuire nuisît/s' nuire -SFX yX nuire nuisissions nuire -SFX yX nuire nuisissiez nuire -SFX yX nuire nuisissent/s' nuire -SFX yX nuire nuisons-nous nuire -SFX yX nuire nuisez-vous nuire - -SFX yY Y 4 -SFX yY ccire ccire/n'q'd'l'm't's' occire -SFX yY ccire ccis/q' occire -SFX yY ccire ccise/q' occire -SFX yY ccire ccises/q' occire - -SFX yZ N 9 -SFX yZ rire rire rire -SFX yZ rire rit rire -SFX yZ rire rits rire -SFX yZ rire rite rire -SFX yZ rire rites rire -SFX yZ rire ris rire -SFX yZ rire ris rire -SFX yZ rire rit rire -SFX yZ rire ris rire diff --git a/tests/dictionaries/fr_FR/fr_FR.dic b/tests/dictionaries/fr_FR/fr_FR.dic deleted file mode 100644 index 44118d0..0000000 --- a/tests/dictionaries/fr_FR/fr_FR.dic +++ /dev/null @@ -1,63063 +0,0 @@ -63062 -A/U.||-- -Å/||-- -ADN/L'D'Q' -ADSL/L' -AIEA/L' -ARN/L'D'Q' -ASBL/L'D'Q' -ASC/L' -ASCII/L' -AUD/-- -Aarschot/D'Q' -Abbeville/D'Q' -Abdelkader/D'Q' -Abel/D'Q' -Abidjan/D'Q' -Abitibi-Témiscamingue/L' -Abkhazie/L'D' -Abraham/D'Q' -Abu/D'Q' -Abuja/D'Q' -Abyssinie/L'D' -Acadie/L'D' -Acapulco/D'Q' -Accra/D'Q' -Achgabat/D'Q' -Achille/D'Q' -Aconcagua/L' -Açores -Adam/D'Q' -Addis-Abeba/D'Q' -Adélaïde/D'Q' -Adelbert/D'Q' -Adèle/D'Q' -Adeline/D'Q' -Adolphe/D'Q' -Adonaï/D'Q' -Adonis/D'Q' -Adour/L'D' -Adriatique/L' -Adrien/D'Q' -Adrienne/D'Q' -Afghanistan/L'D' -Afrique/L'D' -Agamemnon/D'Q' -Agatha/D'Q' -Agathe/D'Q' -Agde/D'Q' -Agen/D'Q' -Aggée/D'Q' -Aglaë/D'Q' -Agnès/D'Q' -Ah/||-- -Ahmed/D'Q' -Ahmedabad/D'Q' -Aïcha/D'Q' -Aïd-el-Adha/L' -Aïd-el-Kébir/L' -Aigoual/L'D' -Aimé/D'Q' -Aimée/D'Q' -Ain/L' -Airbus/L'D'Q' -Aires -Aisne/L' -Aix/D'Q' -Aix-en-Provence/D'Q' -Aix-la-Chapelle/D'Q' -Aix-les-Bains/D'Q' -Ajaccio/D'Q' -Akhenaton/D'Q' -Al-Qaïda/D'Q' -Alabama/L' -Alain/D'Q' -Alan/D'Q' -Alaska/L'D' -Alban/D'Q' -Albanie/L'D' -Albert/D'Q' -Alberta/L' -Alberte/D'Q' -Albertine/D'Q' -Albi/D'Q' -Albret/D'Q' -Alcibiade/D'Q' -Alembert/D'Q' -Alençon/D'Q' -Alès/D'Q' -Alésia/D'Q' -Alex/D'Q' -Alexandre/D'Q' -Alexandrie/D'Q' -Alexia/D'Q' -Alexis/D'Q' -Alfortville/D'Q' -Alfred/D'Q' -Algarve/L' -Alger/D'Q' -Algérie/L'D' -Ali/D'Q' -Alice/D'Q' -Alicia/D'Q' -Alida/D'Q' -Aline/D'Q' -Alison/D'Q' -Alix/D'Q' -Alken/D'Q' -Allah/D'Q' -Allan/D'Q' -Allemagne/S*() -Alleur/D'Q' -Allier/L' -Alma/D'Q' -Almaty/D'Q' -Alost/D'Q' -Alpes -Alpes-Maritimes -Alpes-de-Haute-Provence -Alphonse/D'Q' -Alsace/L'D' -Altaï/L' -Alzheimer/D'Q' -Amadeus/D'Q' -Amalthée/D'Q' -Amand/D'Q' -Amanda/D'Q' -Amandine/D'Q' -Amaury/D'Q' -Amazone/L' -Amazonie/L'D' -Amblève/L'D' -Ambre/D'Q' -Ambroise/D'Q' -Amédée/D'Q' -Amélie/D'Q' -Aménophis/D'Q' -Amérique/S*() -Amiens/D'Q' -Amman/D'Q' -Amos/D'Q' -Ampère/D'Q' -Amphitrite/D'Q' -Amsterdam/D'Q' -Anaëlle/D'Q' -Anaïs/D'Q' -Anastasie/D'Q' -Anatole/D'Q' -Anatolie/L'D' -Anaxagore/D'Q' -Anaximandre/D'Q' -Andalousie/L'D' -Andaman/L'D' -Andenne/D'Q' -Anderlecht/D'Q' -Andersen/D'Q' -Andes -Andorre/L'D' -André/D'Q' -Andréa/D'Q' -Andrée/D'Q' -Andromède/D'Q' -Andy/D'Q' -Angèle/D'Q' -Angelina/D'Q' -Angers/D'Q' -Angkor/D'Q' -Anglet/D'Q' -Angleterre/L'D' -Angola/L'D' -Angoulême/D'Q' -Angoumois/L'D' -Ångström/D'Q' -Anissa/D'Q' -Anita/D'Q' -Anjou/L'D' -Ankara/D'Q' -Anna/D'Q' -Annabelle/D'Q' -Anne/D'Q' -Anne-Laure/D'Q' -Anne-Marie/D'Q' -Anne-Sophie/D'Q' -Annecy/D'Q' -Annemasse/D'Q' -Annette/D'Q' -Annick/D'Q' -Annie/D'Q' -Anosov/D' -Anouilh/D'Q' -Ans/D'Q' -Anselme/D'Q' -Antananarivo/D'Q' -Antarctique/L'D' -Anthelme/D'Q' -Anthony/D'Q' -Antibes/D'Q' -Antigone/D'Q' -Antigua-et-Barbuda/D'Q' -Antilles -Antioche/D'Q' -Antoine/D'Q' -Antoinette/D'Q' -Antonin/D'Q' -Antonio/D'Q' -Antony/D'Q' -Antwerpen/D'Q' -Anubis/D'Q' -Anvers/D'Q' -Aphrodite/D'Q' -Apollinaire/D'Q' -Apolline/D'Q' -Apollon/L'D'Q' -Apollonius/D'Q' -Appalaches -Appenzell/L'D' -Apulée/D'Q' -Aquin/D' -Aquitaine/L'D' -Arabie/L'D' -Aragon/L'D' -Aral/L'D' -Aranjuez/D'Q' -Arcachon/D'Q' -Arcadie/L'D' -Archimède/D'Q' -Arctique/L'D' -Ardèche/L'D' -Ardenne/S*() -Arès/D'Q' -Argenteuil/D'Q' -Argentine/L'D' -Argonne/L'D' -Argos/D'Q' -Argovie/L'D' -Ariane/D'Q' -Ariège/L'D' -Ariel/D'Q' -Arion/D'Q' -Aristarque/D'Q' -Aristide/D'Q' -Aristophane/D'Q' -Aristote/D'Q' -Arizona/L'D' -Arkansas/L'D' -Arles/D'Q' -Arlette/D'Q' -Arlon/D'Q' -Armagnac/D'Q' -Armand/D'Q' -Armande/D'Q' -Armel/D'Q' -Armelle/D'Q' -Arménie/L'D' -Armentières/D'Q' -Armor/L'D' -Armorique/L'D' -Arnaud/D'Q' -Arras/D'Q' -Arsène/D'Q' -Artémis/D'Q' -Arthur/D'Q' -Artois/L'D' -Ascq/D'Q' -Asgard/D'Q' -Asie/L'D' -Asimov/D'Q' -Asmara/D'Q' -Asnières/D'Q' -Asnières-sur-Seine/D'Q' -Asse/D'Q' -Assouan/D'Q' -Assyrie/L'D' -Astana/D'Q' -Astrid/D'Q' -Asturies -Asunción/D'Q' -Atahualpa/D'Q' -Atalante/D'Q' -Atatürk/D'Q' -Ath/D'Q' -Athéna/D'Q' -Athènes/D'Q' -Athis-Mons/D'Q' -Atlanta/D'Q' -Atlantide/L' -Atlantique/L' -Atomium/L' -Atropos/D'Q' -Attila/D'Q' -Aubagne/D'Q' -Aube/L'D' -Aubervilliers/D'Q' -Aubin/D'Q' -Aubrac/L'D' -Auch/D'Q' -Auckland/D'Q' -Aude/L'D' -Audenarde/D'Q' -Audimat/L'D'Q' -Audin/D' -Audrey/D'Q' -Augusta/D'Q' -Auguste/D'Q' -Augustin/D'Q' -Augustine/D'Q' -Aulnay-sous-Bois/D'Q' -Aunis/L'D' -Aurélia/D'Q' -Aurélie/D'Q' -Aurélien/D'Q' -Aurillac/D'Q' -Auriol/D'Q' -Aurore/D'Q' -Auschwitz/D'Q' -Austerlitz/D'Q' -Australie/L'D' -Australie-Méridionale/L'D' -Australie-Occidentale/L'D' -Austrasie/L'D' -Autriche/L'D' -Autriche-Hongrie/L'D' -Auvergne/L'D' -Auxerre/D'Q' -Avalon/D'Q' -Avars -Ave -Avé/L'D' -Aveyron/L'D' -Avicenne/D'Q' -Avignon/D'Q' -Avogadro/D'Q' -Axel/D'Q' -Axelle/D'Q' -Aymar/D'Q' -Aymé/D'Q' -Aymeric/D'Q' -Azerbaïdjan/L'D' -Azov/L'D' -B/||-- -BD -BEF/-- -BIOS -BMX -Baal -Baar -Babel -Babylone -Babylonie -Bacchus -Bach -Bachelard -Backlund -Bade-Wurtemberg -Bagdad -Bagneux -Bagnolet -Bahamas -Bahreïn -Baie-Comeau -Baie-James -Baïkal -Baïkonour -Baire -Bakou -Bakounine -Bâle -Bâle-Campagne -Bâle-Ville -Baléares -Balen -Bali -Balkans -Baloutchistan -Balthazar -Baltimore -Baltique -Balzac -Bamako -Banach -Bangalore -Bangkok -Bangladesh -Bangui -Banjul -Banneux -Baptiste -Barbade -Barbara -Barcelone -Barchon -Bargmann -Bar-le-Duc -Barnabé -Barnard -Barthélemy -Barthélémy -Baruch -Bas-Congo -Bas-Rhin -Bas-Saint-Laurent -Basile -Basque -Basse-Côte-Nord -Basse-Normandie -Basse-Saxe -Basse-Terre -Bassens -Bastia -Bastien -Bastogne -Bata -Bathurst -Battice -Baudelaire -Baudoin -Baudouin -Bauges -Bavière -Bayonne -Béarn -Béatrice -Béatrix -Beauce -Beaufort -Beaujolais -Beaumarchais -Beaune -Beauraing -Beauvais -Beauvoir -Beckett -Becquerel -Beersel -Beethoven -Bègles -Beijing -Belfast -Belfort -Belgique -Belgrade -Belize -Bell -Beltrami -Belzébuth -Bendixson -Bénédicte -Benelux -Bengale -Bénin -Benjamin -Benoît -Benoîte -Bercy -Bérenger -Bérengère -Bergen -Bergerac -Bergson -Béring -Beringen -Berkeley -Berlin -Berlioz -Bermudes -Bernadette -Bernard -Bernardin -Berne -Bernhard -Bernoulli -Bernstein -Berry -Bers -Berthe -Bertille -Bertrand -Besançon -Bescherelle -Besov -Bessel -Bételgeuse -Bethléem -Béthune -Betti -Betty -Beurling -Beveren -Beyrouth -Béziers -Bezons -Bézout -Bhagavad-Gîtâ -Bhoutan -Bianchi -Biarritz -Bichkek -Bieberbach -Biélorussie -Bienne -Bienvenüe -Bihar -Bilal -Bilbao -Bilzen -Binche -Birkhoff -Birmanie -Birmingham -Bishop -Bissau -Bizet -Blagnac -Blainville -Blaise -Blanc-Mesnil -Blanche -Blandine -Blankenberge -Blaschke -Blois -Blum -Blu-ray -Boardman -Bobigny -Bochner -Bode -Boeing -Bogotá -Bohême -Bohr -Boileau -Bois-Colombes -Boisbriand -Bolivie -Bollywood -Bologne -Boltzmann -Bolzano -Bombay -Bonaparte -Bondy -Bonnard -Boole -Bordeaux -Borel -Borgia -Borinage -Boris -Bornem -Bornéo -Bornes -Bose -Bosnie -Bosnie-Herzégovine -Bosphore -Bossuet -Boston -Botrange -Botswana -Botticelli -Boucherville -Bouches-du-Rhône -Boulogne -Boulogne-Billancourt -Boulogne-sur-Mer -Bourbaki -Bourdieu -Bourg-en-Bresse -Bourges -Bourgogne -Bourgoin-Jallieu -Bouscat -Boussu -Bq/U.||-- -Brabant -Brahim -Brahms -Braine-le-Comte -Brandon -Brassac -Brasschaat -Brasília -Bratislava -Brauer -Bray -Brazzaville -Brecht -Brelot -Brême -Brésil -Bresse -Brest -Bretagne -Brétigny-sur-Orge -Brian -Brice -Brie -Brigitte -Brisbane -Brive-la-Gaillarde -Broglie -Bron -Brossard -Brown -Bruay-la-Buissière -Bruckner -Bruegel -Bruges -Brunei -Bruno -Brunoy -Brutus -Bruxelles -Bruxelles-Capitale -Bryan -Bucarest -Budapest -Buenos -Buffalo -Buffon -Bujumbura -Bulgarie -Burkina -Burnside -Burundi -Byron -Byzance -C/U.||-- -CAD/-- -CCP -CD -CD-ROM -CE1 -CE2 -CEE -CERN -CHF/-- -CIA -CM1 -CM2 -CNES -CNRS -CNY/-- -CO2 -CP -CRS -CV -Cachan -Cachemire -Caen -Cagliari -Cagnes-sur-Mer -Cahors -Caïn -Caire -Calabre -Calais -Calcutta -Calderón -Calédonie -Calestienne -Calgary -Cali -Californie -Caligula -Calkin -Callisto -Caluire-et-Cuire -Calvados -Calvin -Camargue -Cambodge -Cambrai -Cambridge -Cameroun -Camille -Campanie -Campbell -Campine -Camus -Canada -Canaries -Canberra -Candice -Cannes -Cannet -Cantal -Canton -Cantons-de-l'Est -Cantor -Canyon -Cap -Cap-Vert -Capet -Capitale-Nationale -Cappadoce -Caracas -Caravage -Carcassonne -Caribert -Carine -Carla -Carloman -Carlos -Carmen -Carnot -Carole -Caroline -Carpates -Carpentras -Carroll -Carstensz -Cartan -Carthage -Casablanca -Casamance -Casanova -Casimir -Casimir-Perier -Caspienne -Cassandra -Cassandre -Cassiopée -Castille -Castres -Catherine -Cathy -Caucase -Cauchy -Causses -Cavaillon -Cayenne -Cayley -Cécile -Cécilia -Cédric -Célestin -Célestine -Célia -Célien -Céline -Celle-Saint-Cloud -Celsius -Cenon -Centrafrique -Centre -Centre-du-Québec -Cérès -Cergy -Cervantès -César -Cesàro -Cévennes -Cevita -Ceylan -Cézanne -Chablais -Chaillot -Chalons -Châlons-en-Champagne -Chalon-sur-Saône -Chambéry -Chambly -Chambord -Chamisso -Chamonix -Champagne -Champagne-Ardenne -Champigny-sur-Marne -Champollion -Champs-sur-Marne -Chanel -Chantal -Chardonnay -Charente/S. -Charente-Maritime -Charenton-le-Pont -Charlemagne -Charlène -Charleroi -Charles -Charleville -Charleville-Mézières -Charlevoix -Charlie -Charline -Charlotte -Charlottetown -Charly -Charolais -Charon -Charonne -Chartres -Charybde -Chasles -Châteauguay -Châteauroux -Châtelet -Châtellerault -Châtenay-Malabry -Châtillon -Chatou -Chaudfontaine -Chaudière-Appalaches -Chaumont -Chaux-de-Fonds -Chelles -Chengdu -Chennai -Cher -Cherbourg-Octeville -Chesnay -Chessex -Chevalley -Chicago -Childebert -Childéric -Chili -Chilpéric -Chimay -Chimène -Chine -Chirac -Chişinău -Chloé -Choisy-le-Roi -Cholesky -Cholet -Chopin -Christel -Christèle -Christelle -Christian -Christiane -Christie -Christine -Christoffel -Christophe -Christopher -Chrysaor -Churchill -Chypre -Ci/U.||-- -Cicéron -Cid -Cie -Cilicie -Cincinnati -Cindy -Ciney -Ciotat -Circassie -Circé -Cisjordanie -City -Civita -Claire -Clamart -Clara -Clarisse -Claude -Claudel -Claudette -Claudie -Claudine -Clémence -Clemenceau -Clément -Clémentine -Cléopâtre -Clermont-Ferrand -Cleveland -Clichy -Clichy-sous-Bois -Clifford -Cloé -Clotaire -Clotho -Clotilde -Clovis -Cochinchine -Cocteau -Cognac -Cohen -Coire -Colbert -Colchide -Colette -Coline -Colisée -Colmar -Cologne -Colomb -Colombes -Colombie -Colombie-Britannique -Colombo -Colomiers -Colorado -Combs-la-Ville -Côme -Commonwealth -Comores -Compiègne -Compostelle -Conakry -Conan -Concarneau -Condorcet -Condroz -Conflans-Sainte-Honorine -Confucius -Congo -Connecticut -Conrad -Constance -Constant -Constantin -Constantine -Constantinople -Cook -Copenhague -Copernic -Coralie -Corbeil-Essonnes -Corbières -Cordoue -Corée -Corentin -Corine -Corinne -Corinthe -Coriolis -Corneille -Cornwell -Corrèze -Corse -Corse-du-Sud -Cortés -Costa -Côte-Nord -Côte-Saint-Luc -Côte-d'Or -Cotentin -Côtes-du-Nord -Cotonou -Cotton -Coty -Coubertin -Coudekerque-Branche -Coulomb -Courant -Courbet -Courbevoie -Courneuve -Courtrai -Coxyde -Cracovie -Creil -Crète -Créteil -Creuse -Creusot -Creutzfeldt-Jakob -Crimée -Croatie -Crofton -Croix -Cromwell -Crusoé -Cuba -Cuneo -Cupidon -Curie -Cuzco -Cybèle -Cyclades -Cynthia -Cyprien -Cyril -Cyrille -DVD -DVD-ROM -Da/U.||-- -Dacca -Dagobert -Dahl -Dahomey -Dakar -Dakota -Dallas -Dalmatie -Dalí -Damas -Damien -Dammarie-les-Lys -Damoclès -Danaé -Danemark -Daniel -Danièle -Danielle -Danilevsky -Dante -Danton -Danube -Dany -Darboux -Dardanelles -Darfour -Darjeeling -Darwin -Daudet -Dauphiné -David -Davy -Dax -Deauville -Déborah -Debussy -Décines-Charpieu -Dedekind -Defoe -Degas -Dehn -Déimos -Deinze -Delacroix -Delaunay -Delaware -Delhi -Délos -Delphes -Delphine -Delvaux -Déméter -Démocrite -Démosthène -Denain -Denis -Denise -Denjoy -Dennis -Denver -Desargues -Descartes -Deschanel -Désiré -Despina -Detroit -Deucalion -Deuil-la-Barre -Deuring -Deutéronome -Deux-Sèvres -Dévoluy -Dhabi -Diane -Dickens -Diderot -Didier -Dieppe -Diest -Dietikon -Digne-les-Bains -Dijon -Dilbeek -Dimitri -Dinant -Dioclétien -Diois -Dioné -Dionysos -Diophante -Dirac -Dirichlet -Disney -Djamel -Djerba -Djibouti -Dnipropetrovsk -Dodoma -Doha -Dole -Dollard-des-Ormeaux -Dolorès -Dombes -Dominique -Donatien -Donetsk -Doppler -Dordogne -Dorian -Dorothée -Dortmund -Dostoïevski -Douai -Douala -Doubs -Douchanbé -Doumer -Doumergue -Doyle -Dr/S. -Dracula -Draguignan -Drancy -Draveil -Dre/S. -Dresde -Dreux -Drôme -Drummondville -Dubaï -Dübendorf -Dublin -Duchenne -Dulac -Dumas -Dunedin -Dunford -Dunkerque -Duplessis -Durance -Durbuy -Durkheim -Düsseldorf -Dyck -Dylan -Dynkin -Dysnomie -ESA/L' -EUR/-- -Eaubonne/D'Q' -Ebit/||-- -Échirolles/D'Q' -Écosse/L'D' -Eddy/D'Q' -Edegem/D'Q' -Édimbourg/D'Q' -Edison/D'Q' -Édith/D'Q' -Edmond/D'Q' -Edmonton/D'Q' -Édouard/D'Q' -Edwige/D'Q' -Eeyou/L' -Égée/L'D'Q' -Églantine/D'Q' -Égypte/L'D' -Ehrenpreis/D' -Ehresmann/D'Q' -Eibit/||-- -Eiffel/D'Q' -Eilenberg/D'Q' -Einstein/D'Q' -Eio/||-- -Eisenbud/D' -Eisenstein/D' -Élancourt/D'Q' -Elbrouz/L' -Éléonore/D'Q' -Éliane/D'Q' -Élie/D'Q' -Élisa/D'Q' -Élisabeth/D'Q' -Élise/D'Q' -Élisée/D'Q' -Élodie/D'Q' -Elohim/D'Q' -Éloïse/D'Q' -Elsa/D'Q' -Élysée/L' -Émeline/D'Q' -Émeric/D'Q' -Émile/D'Q' -Émilie/D'Q' -Émilien/D'Q' -Émilienne/D'Q' -Emma/D'Q' -Emmanuel/D'Q' -Emmanuelle/D'Q' -Emmen/D'Q' -Empédocle/D'Q' -Encelade/D'Q' -Enzo/D'Q' -Eo/||-- -Éole/D'Q' -Épernay/D'Q' -Éphèse/D'Q' -Épictète/D'Q' -Épicure/D'Q' -Épiméthée/D'Q' -Épinal/D'Q' -Épinay-sur-Seine/D'Q' -Epstein/D'Q' -Équateur/L'D' -Érasme/D'Q' -Ératosthène/D'Q' -Erevan/D'Q' -Erfurt/D'Q' -Éric/D'Q' -Éris/D'Q' -Ermont/D'Q' -Ernest/D'Q' -Éros/D'Q' -Erwan/D'Q' -Érythrée/L'D' -Escaut/L' -Eschyle/D'Q' -Esculape/D'Q' -Esdras/D'Q' -Esméralda/D'Q' -Esneux/D'Q' -Ésope/D'Q' -Espagne/L'D' -Essonne/L'D' -Esteban/D'Q' -Estelle/D'Q' -Estérel/L'D' -Esther/D'Q' -Estonie/L'D' -Estrie/L'D' -Étampes/D'Q' -États-Unis -Ethan/D'Q' -Ethernet/L'D'Q' -Éthiopie/L'D' -Étienne/D'Q' -Étiennette/D'Q' -Étrurie/L'D' -Euclide/D'Q' -Eugène/D'Q' -Eugénie/D'Q' -Eulalie/D'Q' -Euler/D'Q' -Eupen/D'Q' -Euphrate/L' -Eurasie/L'D' -Eure/L'D' -Eure-et-Loir/L'D' -Euripide/D'Q' -Eurogroupe/L' -Europe/L'D' -Eurydice/D'Q' -Éva/D'Q' -Évariste/D'Q' -Ève/D'Q' -Éveline/D'Q' -Évelyne/D'Q' -Everest/L' -Evergem/D'Q' -Evrard/D'Q' -Évreux/D'Q' -Évry/D'Q' -Exbrayat/D'Q' -Ézéchias/D'Q' -Ézéchiel/D'Q' -F/U.||-- -FAQ -FBI -FMI -FRF/-- -FTP -Fabien -Fabienne -Fabrice -Fagne/S. -Fahrenheit -Falkland -Fallières -Famenne -Fanchon -Fanny -Faraday -Farid -Faso -Fatima -Fatou -Faure -Fayette -Fécamp -Federer -Fehling -Félicie -Félicité -Félix -Feller -Fénelon -Ferdinand -Fermat -Fermi -Fernand -Fernande -Feydeau -Feynman -Fiacre -Fibonacci -Fidèle -Fidji -Finistère -Finlande -Finsler -Firefox -Firmin -Fischer -Flamel -Flandre/S. -Flandre-Occidentale -Flandre-Orientale -Flaubert -Flavie -Flavien -Flémalle -Fleur -Fleurus -Fleury-les-Aubrais -Flora -Florence -Florent -Florentin -Florian -Floriane -Floride -Fock -Foix -Fontaine -Fontainebleau -Fontenay-aux-Roses -Fontenay-sous-Bois -Forbach -Forez -Formose -Fortaleza -Fort-de-France -Foucault -Fouché -Fougères -Fourier -Fraïssé -Frameries -France -Francfort -Franche-Comté -Francine -Francis -Francisco -Franck -Franco -François -Françoise -Franconville -Francorchamps -Frank -Frankenstein -Franklin -Frauenfeld -Fréchet -Freddy -Frédéric -Fredericton -Frédérique -Fredholm -Freetown -Fréjus -Fresnel -Fresnes -Freud -Fribourg -Friedman -Friedmann -Friedrich -Frobenius -Frontignan -Frounze -Fubini -Fuchs -Fukuoka -Futuna -G/U.||-- -GBP/-- -GMT -GPS -GSM -Gabon -Gaborone -Gabriel -Gabrielle -Gaël -Gaëlle -Gaétan -Gaëtan -Gagny -Gaïa -Gal/||-- -Galaad -Galatée -Galathée -Galerkin -Galice -Galicie -Galilée -Galles -Gallimard -Galois -Gambie -Gand -Gandhi -Gange -Ganymède -Gap -Gard -Garde -Garenne-Colombes -Gargantua -Garges-lès-Gonesse -Garonne -Gascogne -Gaspard -Gaspésie -Gaspésie–Îles-de-la-Madeleine -Gastinel -Gaston -Gatien -Gâtinais -Gatineau -Gauguin -Gaule/S. -Gaulle -Gaume -Gauss -Gauthier -Gautier -Gauvain -Gaza -Gbit/||-- -Gdansk -Gédéon -Geel -Gembloux -Gênes -Genève -Geneviève -Genk -Gennevilliers -Geoffrey -Geoffroy -George -Georges -Georgetown -Georgette -Géorgie -Gérald -Géraldine -Gérard -Géraud -Gergovie -Géricault -Germain -Germaine -Germanie -Gers -Gertrude -Gestapo -Gevrey-Chambertin -Ghana -Ghislain -Ghislaine -Giacometti -Gibbs -Gibit/||-- -Gibraltar -Gide -Gif-sur-Yvette -Gilbert -Gilberte -Gildas -Gileppe -Gilgamesh -Gilles -Ginette -Gio/||-- -Giono -Giorgione -Giotto -Gironde -Giscard -Gisèle -Gizeh -Glaris -Glasgow -Go/||-- -Gobi -Godefroid -Gödel -Goethe -Gogh -Golan -Goldbach -Golgi -Golgotha -Goliath -Gomorrhe -Goncourt -Gonesse -Gorbatchev -Gordon -Gorenstein -Göring -Gorki -Goths -Goursat -Goussainville -Goya -Graal -Gradignan -Gram -Gram-Schmidt -Grammont -Granby -Grand-Quevilly -Grande-Bretagne -Grande-Synthe -Grasse -Grassmann -Grèce -Greenville -Greenwich -Grégoire -Grégory -Grenade -Grenoble -Grévy -Grigny -Grimbergen -Grimm -Grisons -Groenland -Gronwall -Grotzsch -Gstaad -Gt/||-- -Guadalajara -Guadeloupe -Guatemala -Guenièvre -Guéret -Guernesey -Guillaume -Guinée -Guinée-Bissau -Gujarat -Gupta -Gustave -Gutenberg -Guy -Guyana -Guyancourt -Guyane -Guyenne -Gwenaël -Gwenaëlle -Gwendoline -Gy/U.||-- -H/U.||-- -HDMI -HIV -HLM -Haar -Habaquq/D'Q' -Habib/D' -Hadamard -Hadès/D'Q' -Hadrien/D'Q' -Haendel -Haguenau -Hahn -Hainaut -Haïti/D'Q' -Hakim/D'Q' -Hal -Halicarnasse/D'Q' -Halifax/D'Q' -Hall -Halle -Halley -Halloween/S. -Hamas -Hambourg -Hamel -Hamilton -Hamme -Hampshire -Hamza/D'Q' -Han -Hankel -Hannibal/D'Q' -Hanoï/D'Q' -Hanovre/D'Q' -Hansen -Harare -Hardy -Harelbeke -Harnack -Harper -Harpin -Hartogs -Harvard -Hasselt -Haumea -Hausdorff -Haussmann/D'Q' -Haut-Rhin -Haute-Corse -Haute-Garonne -Haute-Loire -Haute-Marne -Haute-Normandie -Haute-Saône -Haute-Savoie -Haute-Vienne -Hautes-Alpes -Hautes-Pyrénées -Hauts-de-Seine -Havane -Havre -Hawaï/D'Q' -Haydn -Haye -Hazebrouck/D'Q' -Heaviside -Hébrides -Hécate/D'Q' -Hecke -Hector/D'Q' -Hegel -Heisenberg/D'Q' -Heist-op-den-Berg -Héléna/D'Q' -Hélène/D'Q' -Héliopolis/D'Q' -Hélios/D'Q' -Héloïse/D'Q' -Helsinki/D' -Helvétie/L'D' -Hemingway/D'Q' -Hénin-Beaumont/D'Q' -Hénoch/D'Q' -Henri/D'Q' -Henriette/D'Q' -Henry -Héphaïstos/D'Q' -Héra/D'Q' -Héraclès/D'Q' -Héraclite/D'Q' -Hérault/L' -Herbert/D'Q' -Herblay/D'Q' -Herculanum/D'Q' -Hercule/D'Q' -Herentals -Hermann/D'Q' -Hermès/D'Q' -Hermite/D'Q' -Hérode/D'Q' -Hérodote/D'Q' -Hérouville-Saint-Clair/D'Q' -Herstal -Hertz -Herve -Hervé/D'Q' -Hesbaye -Hésiode/D'Q' -Hespéride/S*() -Hesse -Hessenberg -Hestia/D'Q' -Heusden-Zolder -Higgs -Highlands -Hilbert -Himalaya/L' -Hippocrate/D'Q' -Hippolyte/D'Q' -Hiroshima -Hitler/D'Q' -Hô-Chi-Minh-Ville -Hobart -Hobbes -Hochschild -Hodge -Hoegaerden -Hoeilaart -Hoffmann/D'Q' -Hokkaido -Hölder -Hollande -Hollywood -Homère/D'Q' -Honduras -Hong -Hongrie -Honoré/D'Q' -Honorine/D'Q' -Honshu -Hopf -Horace/D'Q' -Horn -Hortense/D'Q' -Horus/D'Q' -Houilles -Householder -Houston -Houthalen-Helchteren -Hubble -Hubert/D'Q' -Hudson/L'D'Q' -Hugo -Hugues/D'Q' -Huguette -Huns -Hurewicz -Huron -Hurwitz -Huy -Huygens -Hyacinthe/D'Q' -Hyderabad/D'Q' -Hyères/D'Q' -Hypatie/D'Q' -Hypérion/D'Q' -Hz/U.||-- -I/-- -II/-- -III/-- -IIIe/-- -IIde/-- -IIe/-- -IInd/-- -INSEE/L' -IRM/L'D'Q' -ISO/L'D'Q' -IUT/L'D'Q' -IV/-- -IVe/-- -IX/-- -IXe/-- -Ibadan/D'Q' -Ibiza/D'Q' -Ibrahim/D'Q' -Icare/D'Q' -Ida/D'Q' -Idaho/L'D' -Ier/-- -Ignace/D'Q' -Igor/D'Q' -Iguaçu/L'D' -Île-de-France/L'D' -Île-du-Prince-Édouard/L' -Îles-de-la-Madeleine -Iliade/L' -Ille-et-Vilaine/L'D' -Illinois/L'D' -Illkirch-Graffenstaden/D'Q' -Illyrie/L'D' -Inde/S*() -Indiana/L'D' -Indianapolis/D'Q' -Indochine/L'D' -Indonésie/L'D' -Indre/L'D' -Indre-et-Loire/L'D' -Inès/D'Q' -Ingolstadt/D' -Ingrid/D'Q' -Internet/D'Q' -Intifada/L'D' -Io/D'Q' -Iowa/L' -Iphigénie/D'Q' -Iqaluit/D'Q' -Irak/L'D' -Iran/L'D' -Ire/-- -Irène/D'Q' -Irénée/D'Q' -Irlande/L'D' -Iroise/L'D' -Isaac/D'Q' -Isabelle/D'Q' -Isaïe/D'Q' -Isère/L'D' -Ishtar/D'Q' -Isidore/D'Q' -Ising/D'Q' -Isis/D'Q' -Islam/L'D' -Islamabad/D'Q' -Island -Islande/L'D' -Ismaël/D'Q' -Israël/D'Q' -Issy-les-Moulineaux/D'Q' -Istanbul/D'Q' -Istchee -Istres/D'Q' -Italie/L'D' -Itô/D'Q' -Ivanhoé/D'Q' -Ivry-sur-Seine/D'Q' -Iwasawa/D'Q' -Ixelles/D'Q' -Ixion/D'Q' -Izegem/D'Q' -Izmir/D'Q' -J/U.||-- -J.-C -JPY/-- -Jack -Jackie -Jacky -Jacob -Jacobi -Jacobson -Jacqueline -Jacques -Jade -Jaffa -Jakarta -Jamahiriya -Jamaïque -James -Jamésie -Janeiro -Jang -Janine -Janus -Japet -Japon -Jason -Jaurès -Java -JavaScript -Jean -Jean-Baptiste -Jean-Bernard -Jean-Charles -Jean-Christophe -Jean-Claude -Jean-François -Jean-Jacques -Jean-Louis -Jean-Luc -Jean-Marc -Jean-Marie -Jean-Michel -Jean-Noël -Jean-Paul -Jean-Philippe -Jean-Pierre -Jean-Yves -Jeanine -Jeanne -Jeannette -Jeannine -Jéhovah -Jemappes -Jennifer -Jensen -Jérémie -Jérémy -Jéricho -Jérôme -Jersey -Jérusalem -Jessica -Jessy -Jésus -Jésus-Christ -Jimmy -Joachim -Jocelyn -Jocelyne -Joconde -Jocrisse -Joël -Joëlle -Joffo -Joffrey -Johan -Johann -Johanna -Johannesburg -John -Johnny -Jonas -Jonathan -Jordan -Jordanie -Jorge -Joris -José -Josée -Joseph -Josèphe -Joséphine -Josephson -Josette -Josiane -Josué -Joué-lès-Tours -Joule -Jourdain -Juan -Judas -Jude -Judée -Judicaël -Judith -Jules -Julia -Julian -Julie -Julien -Julienne -Juliette -Jung -Junon -Jupiter -Jura -Juste -Justin -Justine -Justinien -K/U.||-- -KMF/-- -K-O -Kaboul -Kabylie -Kac -Kafka -Kahan -Kairouan -Kalahari -Kaliningrad -Kalman -Kaluza -Kamel -Kampala -Kananga -Kanpur -Kansas -Kant -Kapellen -Karachi -Karen -Karim -Karine -Karl -Kasaï-Occidental -Kasaï-Oriental -Katanga -Katia -Kativik -Katmandou -Katznelson -Kawasaki -Kazakhstan -Kazan -Keeling -Kelly -Kelvin -Kennedy -Kentucky -Kenya -Kepler -Kerguelen -Kessel -Kevin -Keynes -Kharkov -Khartoum -Khintchine -Khrouchtchev -Kibit/||-- -Kiel -Kierkegaard -Kiev -Kigali -Kilian -Kilimandjaro -Killian -Killing -Kimberley -King -Kingston -Kinshasa -Kio/||-- -Kipling -Kippour -Kirghizie -Kirghizistan -Kirghizstan -Kiribati -Kisangani -Kjeldahl -Klee -Klein -Klimt -Klitzing -Knokke-Heist -Ko/||-- -Kobe -Koch -Kodaira -Koekelberg -Kolkata -Kolmogorov -Kong -Köniz -Kontich -Konya -Korteweg -Kosovo -Kouibychev -Kourou -Kovalevskaya -Koweït -Kościuszko -Krein -Kremlin -Kremlin-Bicêtre -Kriens -Krishna -Krishnamurti -Kronecker -Krull -Kuala -Kuiper -Kuratowski -Kurdistan -Kurosh -Kylian -Kyoto -Kyushu -L/U.||-- -LCD -LED -L'Haÿ-les-Roses -LSD -Labrador -Lachésis -Laeken -Lætitia -Lagos -Lagrange -Laguerre -Lahore -Lamarck -Lamartine -Lambersart -Lambert -Lanaken -Lanaudière -Lancelot -Lancy -Land -Landau -Landen -Landes -Landry -Lanester -Languedoc -Languedoc-Roussillon -Lanka -Lanvaux -Laon -Laos -Laplace -Laponie -Larissa -Larousse -Lassay-les-Chateaux -Laudine -Laura -Laure -Laurence -Laurent -Laurentides -Laurette -Lauriane -Laurie -Laurine -Lausanne -Laval -Lavoisier -Lazare -Léa -Lebesgue -Lebrun -Leclerc -Leeds -Leeuw-Saint-Pierre -Lefschetz -Legendre -Léger -Lehmer -Leibnitz -Leibniz -Leila -Leipzig -Lejeune -Léman -Léna -Lénine -Leningrad -Lenny -Lens -Léo -Léon -Léonard -Léonce -Leone -Léone -Léonidas -Léonie -Léontine -Léopold -Leopoldt -Léopoldville -Leslie -Lesotho -Lesse -Lettonie -Levallois-Perret -Levi -Lévi-Strauss -Levinson -Lévis -Lévitique -Levy -Lévy -Liapunov -Liban -Liberia -Libourne -Libreville -Libye -Liechtenstein -Liège -Liénard -Lierre -Liévin -Lilas -Lilian -Liliane -Lille -Lilongwe -Lilou -Lima -Limbourg -Limoges -Limousin -Lina -Lincoln -Linda -Line -Linux -Lionel -Liouville -Lipschitz -Lisa -Lisbonne -Lise -Lisieux -Lissajous -Liszt -Littlewood -Littré -Lituanie -Liverpool -Livourne -Livry-Gargan -Ljubljana -Lobatchevski -Lochristi -Locke -Loewner -Logan -Loïc -Loir -Loire -Loire-Atlantique -Loiret -Loir-et-Cher -Loïse -Lojasiewicz -Lokeren -Lola -Lombardie -Lomé -Lommel -Londres -Longjumeau -Longueuil -Lons-le-Saunier -Loos -Lorentz -Lorenz -Lorenzo -Lorette -Lorient -Lormont -Lorraine -Lot -Lot-et-Garonne -Lothaire -Lotharingie -Lou -Loubet -Louis -Louise -Louisette -Louisiane -Louksor -Louvain -Louvière -Louvre -Lovecraft -Lozère -Luanda -Lubéron -Lubumbashi -Luc -Luca -Lucas -Lucerne -Lucette -Lucie -Lucien -Lucienne -Lucifer -Lucile -Lucrèce -Ludivine -Ludovic -Lugano -Lully -Lumière -Lumpur -Lune -Lunel -Lunéville -Lure -Lusaka -Lusin -Luther -Luxembourg -Lyapunov -Lydia -Lydie -Lyon -M -MM -MP3 -MST -Maaseik -Maasmechelen -Maastricht -Mac -MacLane -Mac-Mahon -Macaulay -Macdonald -Macédoine -Mach -Machhad -Maclaurin -Mâcon -Mâconnais -Madagascar -Madeleine -Madras -Madrid -Maël -Maëlle -Maëlys -Maéva -Magali -Magalie -Magdebourg -Magellan -Maghreb -Maginot -Magnus -Magog -Magritte -Magyar/S. -Mahâbhârata -Maharashtra -Mahler -Mahomet -Maillol -Maine -Maine-et-Loire -Maisons-Alfort -Maisons-Laffitte -Maïwen -Maïwenn -Majorque -Malabo -Malachie -Malaisie -Malakoff -Malawi -Malcev -Maldegem -Maldives -Malebranche -Mali -Malik -Malika -Malines -Mallarmé -Malouines -Malraux -Malte -Managua -Manama -Manche -Manchester -Manet -Manhattan -Manicouagan -Maniema -Manille -Manitoba -Manon -Manosque -Mans -Mantes-la-Jolie -Mao -Maputo -Maracaïbo -Marat -Marc -Marcel -Marcelle -Marcellin -Marcelline -Marche -Marche-en-Famenne -Marcq-en-Barœul -Mardouk -Margaux -Margot -Marguerite -Maria -Marianne -Marie -Marie-Ange -Marie-Antoinette -Marie-Chantal -Marie-Christine -Marie-Claire -Marie-Claude -Marie-France -Marie-Françoise -Marie-Hélène -Marie-Jeanne -Marie-José -Marie-Josèphe -Marie-Laure -Marie-Line -Marie-Louise -Marie-Madeleine -Marie-Noëlle -Marie-Paule -Marie-Pierre -Marie-Rose -Marie-Thérèse -Marielle -Mariette -Marignan -Marignane -Marilyne -Marina -Marine -Mario -Marion -Marius -Marivaux -Marjorie -Markov -Marlène -Marne -Maroc -Marrakech -Mars -Marseille -Marshall -Marthe -Martial -Martigues -Martin -Martine -Martinet -Martini -Martinien -Martinique -Marvin -Marx -Mary -Maryland -Marylène -Maryline -Maryse -Maryvonne -Mascate -Mascouche -Massachusetts -Massy -Mathéo -Mathias -Mathieu -Mathilde -Mathis -Mathys -Matignon -Matteo -Matthias -Matthieu -Maubeuge -Maud -Maupassant -Maure/S. -Mauriac -Maurice -Mauricette -Mauricie -Mauritanie -Max -Maxence -Maxime -Maximilien -Mayence -Mayenne -Mayotte -Mazarin -Mbit/||-- -Mbuji-Mayi -McKinley -Me/S. -Meaux -Mecklembourg -Mecklembourg-Poméranie-Occidentale -Mecque -Médard -Médée -Medellín -Médicis -Mée-sur-Seine -Mégane -Mehdi -Meknès -Mélaine -Mélanésie -Mélanie -Melba -Melbourne -Melchior -Méliès -Mélina -Méline -Mélissa -Mellin -Melun -Melvin -Memphis -Mende -Mendel -Mendeleïev -Mené -Menin -Menton -Méphistophélès -Mercantour -Mercator -Mercure -Merelbeke -Mérida -Mérignac -Mésopotamie -Messaline -Metz -Meudon -Meurthe -Meurthe-et-Moselle -Meuse -Mexico -Mexique -Meyzieu -Mézières -Mgr/S. -Miami -Mibit/||-- -Michael -Michaël -Michée -Michel -Michel-Ange -Michèle -Michelet -Micheline -Michelle -Michigan -Mickaël -Micronésie -Midas -Midgard -Midi-Pyrénées -Miguel -Mikaël -Mike -Milan -Milgram -Mill -Millau -Millerand -Milne -Milton -Mimas -Minakshisundaram -Minkowski -Minnesota -Minos -Minsk -Mio/||-- -Miquelon -Mirabeau -Mirabel -Miramas -Miranda -Mireille -Miró -Mississippi -Missouri -Mithra -Mithridate -Mitterrand -Mlle/S. -Mme/S. -Mnémosyne -Mo/||-- -Möbius -Modigliani -Mogadiscio -Mohamed -Mohammed -Moire/S. -Moïse -Moisezon -Mol -Moldavie -Molenbeek-Saint-Jean -Molière -Molotov -Monaco -Monet -Monge -Mongolie -Monique -Monrovia -Mons -Mons-en-Barœul -Mont-Blanc -Mont-Saint-Aignan -Montaigne -Montaigu-Zichem -Montana -Montauban -Montbéliard -Montceau-les-Mines -Mont-de-Marsan -Monte-Carlo -Montel -Montélimar -Monténégro -Montérégie -Monterrey -Montesquieu -Montevideo -Montfermeil -Montgeron -Montigny-le-Bretonneux -Montigny-lès-Metz -Montluçon -Montmartre -Montmorency -Montpellier -Montréal -Montreuil -Montreux -Montrouge -Moravie -Morbihan -Mordell -Morera -Moresby -Morgan -Morgane -Morita -Morphée -Morse -Morton -Mortsel -Morvan -Moscou -Moscovie -Moselle -Moser -Mossad -Moulins -Mourad -Mouscron -Moyen-Orient -Mozambique -Mozart -Mozilla -Mpc/||-- -Mt/||-- -Mucha -Mulhouse -Mumbai -Munch -Münchhausen -Munich -Murcie -Mureaux -Muret -Muriel -Murielle -Musset -Mussolini -Mustapha -Mx/||-- -Myanmar -Mylène -Myriam -N/U.||-- -NASA -NDLR -N'Djamena -Nabil -Nadège -Nadia -Nadine -Nagasaki -Nagata -Nagoya -Nagy -Nahoum -Naimark -Nairobi -Nakayama -Namibie -Namur -Nancy -Nankin -Nanterre -Nantes -Naples -Napoléon -Narbonne -Narcisse -Nash -Nasser -Nassim -Natacha -Nathalie -Nathan -Nathanaël -Nauru -Navarre -Navier-Stokes -Naypyidaw -Nazaire -Nazareth -Nazca -Nebraska -Néfertiti -Néguev -Néhémie -Nehru -Nelly -Némésis -Népal -Neptune -Néréide/S. -Néron -Nessus -Nestor -Neuchâtel -Neuilly-sur-Marne -Neuilly-sur-Seine -Neumann -Neustrie -Nevada -Nevanlinna -Nevers -New -Newton -Niagara -Niamey -Nicaragua -Nice -Nicée -Nicholas -Nicodème -Nicolas -Nicole -Nicosie -Nidwald -Nietzsche -Nièvre -Niger -Nigeria -Nijlen -Nikodym -Nil -Nîmes -Nina -Ninon -Ninove -Niort -Nivelles -Nivernais -Noa -Noah -Nobel -Noé -Noël -Noëlle -Noémie -Noether -Nogent-sur-Marne -Noirmoutier -Noisy-le-Grand -Noisy-le-Sec -Nolan -Nolwenn -Nora -Norbert -Nord -Nord-Kivu -Nord-Pas-de-Calais -Nord-du-Québec -Nordine -Normandie -Norne/S. -Norvège -Notre-Dame -Nouakchott -Nouméa -Nouveau-Brunswick -Nouveau-Mexique -Nouveau-Québec -Nouvelle-Calédonie -Nouvelle-Écosse -Nouvelle-Galles -Nouvelle-Guinée -Nouvelle-Orléans -Nouvelle-Zélande -Nouvelles-Hébrides -Np/||-- -Nubie -Nunavik -Nunavut -Nuremberg -Nyons -Nyquist -OCDE/L' -Œdipe/D'Q' -OGM/L'D'Q' -OK -OMC/L' -OMS/L' -ONG/L'D'Q' -ONU/L' -OPA/L'D'Q' -OPE/L'D'Q' -OPR/L'D'Q' -OPV/L'D'Q' -ORL/L'D'Q' -OS/L'D'Q' -OTAN/L' -Obama/D'Q' -Obéron/D'Q' -Obwald/D' -Occam/D'Q' -Occitanie/L'D' -Océane/D'Q' -Océanie/L'D' -Ockham/D'Q' -Octave/D'Q' -Odéon/L' -Odessa/D'Q' -Odette/D'Q' -Odile/D'Q' -Odilon/D' -Odin/D'Q' -Oe/||-- -Offenbach/D'Q' -Ohio/L'D' -Ohm/D'Q' -Oisans/D' -Oise/L' -Oklahoma/L'D' -Olivet/D'Q' -Olivia/D'Q' -Olivier/D'Q' -Olympie/D'Q' -Oman/D'Q' -Omar/D'Q' -Omdourman/D' -Ontario/L' -Oort/D'Q' -Oostkamp/D'Q' -Ophélie/D'Q' -Oppenheimer/D'Q' -Oran/D'Q' -Orange/D'Q' -Orcades -Oregon/L'D' -Origène/D'Q' -Orion/D'Q' -Orléans/D'Q' -Orlon/L'D' -Orly/D'Q' -Orne/L'D' -Oronte/L' -Orphée/D'Q' -Orsay/D'Q' -Orvault/D'Q' -Orwell/D'Q' -Osaka/D'Q' -Oscar/L'D'Q' -Osiris/D'Q' -Oslo/D'Q' -Ossétie/L'D' -Ostende/D'Q' -Otez/D' -Othe/L'D' -Ottawa/D'Q' -Ottignies-Louvain-la-Neuve/D'Q' -Ouagadougou/D'Q' -Ouganda/L'D' -Oulan-Bator/D'Q' -Oullins/D'Q' -Oural/L' -Ouranos/D'Q' -Ouroboros/L'D' -Ourthe/L' -Outaouais/L' -Ouzbékistan/L'D' -Overijse/D'Q' -Ovide/D'Q' -Oxford/D'Q' -Oyonnax/D'Q' -Ozoir-la-Ferrière/D'Q' -P/||-- -PAO -PC -PDF -P-DG -PGCD -PIB -PNB -PPCM -PVC -Pa/U.||-- -Pablo -Pacôme -Padé -Pagnol -Pakistan -Palaiseau -Palaos -Palerme -Palestine -Paley -Pallas -Panamá -Pandore -Pangée -Pantin -Paola -Papeete -Papouasie -Papouasie-Nouvelle-Guinée -Paracelse -Paraguay -Paramaribo -Pareto -Parfait -Paris -Pâris -Parme -Parménide -Parque/S. -Parthie -Pascal -Pascale -Pas-de-Calais -Passau -Passy -Pasteur -Patagonie -Paterne -Patodi -Patras -Patrice -Patricia -Patrick -Pau -Paul -Paule -Paulette -Paulin -Pauline -Paulo -Pausanias -Pays-Bas -Paz -Pbit/||-- -Peano -Peggy -Pékin -Pélagie -Péloponnèse -Pénélope -Penh -Penjab -Pennsylvanie -Pépin -Perceval -Pergame -Périclès -Périgord -Périgueux -Perm -Pérou -Perpignan -Perrault -Perreux-sur-Marne -Perrine -Perse -Persée -Perséphone -Perth -Pessac -Pétain -Petit-Quevilly -Petrograd -Phénicie -Philadelphie -Philippe -Philippeville -Philippines -Philomène -Phnom -Phobos -Phœbé -Phragmen -Pibit/||-- -Picard -Picardie -Picasso -Pie -Piémont -Pierre -Pierre-Louis -Pierre-Yves -Pierrefitte-sur-Seine -Pierrette -Pierrick -Pierrot -Pigalle -Pikine -Pilate -Pinocchio -Pinochet -Pio/||-- -Pirandello -Pise -Pitot -Pittsburgh -Pizarro -Pl/||-- -Placide -Plaisir -Plancherel -Planck -Platon -Pleijel -Plemelj -Plessis-Robinson -Pline -Plotin -Plutarque -Pluton -Pô -Po/||-- -Podgorica -Poincaré -Pointe-Claire -Poisson -Poissy -Poitiers -Poitou -Poitou-Charentes -Pologne -Polya -Polynésie -Poméranie -Pompéi -Pompidou -Pontault-Combault -Pontoise -Pontryagin -Poona -Port -Port-Gentil -Port-au-Prince -Portia -Porto -Porto-Novo -Portugal -Poséidon -Possession -Potsdam -Pouchkine -Pr/S. -Prague -Praia -Prairie -Prandtl -Pre/S. -Pretoria -Prévert -Priam -Priape -Princeton -Prisca -Priscilla -Pristina -Privas -Prokofiev -Prométhée -Prosper -Protée -Proudhon -Proust -Provence -Provence-Alpes-Côte -Prudence -Prusse -Ptolémée -Puccini -Puck -Puiseux -Puteaux -Puy-de-Dôme -Puy-en-Velay -Pyongyang -Pyrénées -Pyrénées-Atlantiques -Pyrénées-Orientales -Pyrrha -Pyrrhus -Pythagore -QI -Qatar -Québec -Queensland -Quentin -Quercy -Quetzalcóatl -Quichotte -Quimper -Quito -Qumrân -R/||-- -RAM -RDA -RER -RFA -RIB -RMI -RMIste/S. -ROM -RSA -RUB/-- -Râ -Rabat -Rabelais -Rachel -Rachid -Rachmaninov -Racine -Rademacher -Radon -Ragnarök -Raïssa -Rajasthan -Râmâyana -Rambouillet -Ramsès -Ramuz -Rangoon -Raoul -Raphaël -Raphaëlle -Raphson -Rapperswil-Jona -Ratisbonne -Rauch -Ravel -Rayan -Raymond -Raymonde -Reagan -Rebecca -Recife -Reconquista -Regina -Régine -Reich -Reidemeister -Reims -Reine -Reiten -Rellich -Rembrandt -Rémi -Rémus -Rémy -Renaix -Renaud -René -Renée -Rennes -Renoir -Repentigny -Retz -Réunion -Reykjavík -Reynolds -Rezé -Rham -Rhéa -Rhénanie -Rhénanie-Palatinat -Rhénanie-du-Nord-Westphalie -Rhin -Rhode -Rhodes -Rhodes-Extérieures -Rhodes-Intérieures -Rhodésie -Rhodia -Rhône -Rhône-Alpes -Rhovyl -Rhue -Rica -Riccati -Ricci -Richard -Richelieu -Richter -Rico -Riehen -Riemann -Riesz -Riga -Rigaud -Rillieux-la-Pape -Rimbaud -Rimouski -Rio -Ris-Orangis -Ritt -Riyad -R'n'B -Roald -Roanne -Robert -Roberte -Roberval -Robespierre -Robin -Robinson -Roch -Rochefort -Rochefoucauld -Rochelle -Roche-sur-Yon -Rodez -Rodolphe -Rodrigue -Roger -Rokhlin -Roland -Rolande -Romain -Romainville -Romans-sur-Isère -Romaric -Romberg -Rome -Roméo -Romuald -Romulus -Ronan -Roncevaux -Roosevelt -Roquefort -Rosalie -Rose -Rose-Marie -Roseline -Roselyne -Roselyse -Rosine -Rosny-sous-Bois -Rossini -Rostand -Roth -Roubaix -Rouen -Rouergue -Roulers -Roumanie -Rousseau -Roussillon -Rouyn-Noranda -Roxane -Royaume-Uni -Ruanda -Rubens -Rudy -Rueil-Malmaison -Ruffin -Ruhr -Rûmî -Runge-Kutta -Russie/S. -Ruth -Rutherford -Rutishauser -Rwanda -Ryan -S/U.||-- -SA -SARL -SDF -SMS -SOS -SPF -SPRL -SS -Sabine -Sabrina -Sacha -Sade -Saguenay -Saguenay–Lac-Saint-Jean -Sahara -Saïd -Saint-André -Saint-Benoît -Saint-Brieuc -Saint-Bruno-de-Montarville -Saint-Chamond -Saint-Cloud -Saint-Constant -Saint-Denis -Saint-Dié-des-Vosges -Saint-Dizier -Saint-Domingue -Saint-Étienne -Saint-Étienne-du-Rouvray -Saint-Eustache -Saint-Exupéry -Saint-Gall -Saint-Georges -Saint-Germain-en-Laye -Saint-Ghislain -Saint-Herblain -Saint-Hyacinthe -Saint-Jacques-de-Compostelle -Saint-Jean -Saint-Jean-Baptiste -Saint-Jean-sur-Richelieu -Saint-Jérôme -Saint-Joseph -Saint-Kitts-et-Nevis -Saint-Lambert -Saint-Laurent -Saint-Laurent-du-Var -Saint-Leu -Saint-Lô -Saint-Louis -Saint-Malo -Saint-Martin-d'Hères -Saint-Maur-des-Fossés -Saint-Médard-en-Jalles -Saint-Michel-sur-Orge -Saint-Nazaire -Saint-Nicolas -Saint-Office -Saint-Ouen -Saint-Paul -Saint-Pétersbourg -Saint-Pierre -Saint-Pol-sur-Mer -Saint-Priest -Saint-Quentin -Saint-Raphaël -Saint-Sébastien-sur-Loire -Saint-Siège -Saint-Trond -Saint-Tropez -Saint-Valentin -Sainte-Foy-lès-Lyon -Sainte-Geneviève-des-Bois -Sainte-Julie -Sainte-Thérèse -Saintes -Saintonge -Salaberry-de-Valleyfield -Saladin -Salem -Salisbury -Salomé -Salomon -Salon-de-Provence -Salonique -Salpetrière -Salvador -Samantha -Sambre -Sami -Samia -Samir -Samira -Samoa -Samson -Samuel -Samy -San -Sanaa -Sancerrois -Sand -Sandra -Sandrine -Sannois -Santerre -Santiago -Saône -Saône-et-Loire -Sapporo -Sara -Saragosse -Sarah -Sarajevo -Sarcelles -Sard -Sardaigne -Sarkozy -Sarre -Sarrebruck -Sarreguemines -Sarthe -Sartre -Sartrouville -Saskatchewan -Satan -Sato -Saturne -Saturnin -Saul -Saumur -Savigny-le-Temple -Savigny-sur-Orge -Savoie -Savonarole -Saxe -Saxe-Anhalt -Saxe-Cobourg -Scandinavie -Schaerbeek -Schaffhouse -Schauder -Schengen -Schiller -Schiltigheim -Schleswig-Holstein -Schmitt -Schnirelmann -Schoenberg -Schopenhauer -Schoten -Schottky -Schouten -Schreier -Schrödinger -Schubert -Schumann -Schumpeter -Schur -Schwartz -Schwarz -Schwarzschild -Schwerin -Schwytz -Scipion -Scoville -Scylla -SeaMonkey -Seattle -Sébastien -Sedan -Segal -Ségolène -Seidel -Seifert -Seine -Seine-Maritime -Seine-Saint-Denis -Seine-et-Marne -Seltz -Sémélé -Sémiramis -Semois -Sénégal -Sénégambie -Sénèque -Sens -Séoul -Sept-Îles -Seraing -Sérapis -Serbie -Serge -Sésostris -Sète -Seth -Severi -Séverin -Séverine -Sévigné -Séville -Sevran -Sèvre/S. -Seychelles -Seyne-sur-Mer -Shakespeare -Shanghai -Shapiro -Shawinigan -Shéhérazade -Shelley -Shenyang -Sherbrooke -Shikoku -Shimura -Shoah -Sibérie -Sibylle -Sichuan -Sicile -Siddhartha -Sidoine -Sidonie -Siegel -Siegfried -Sierpiński -Sierra -Sigebert -Silvère -Simmel -Simon -Simone -Simpson -Sinaï -Singapour -Sion -Sirius -Sisyphe -Six-Fours-les-Plages -Skopje -Slovaquie -Slovénie -Smith -Smolensk -Sobolev -Socrate -Sodome -Sofia -Sofiane -Soignies -Soissons -Solange -Solène -Soleure -Soliman -Sologne -Somalie -Somme -Sommerfeld -Sonia -Sophie -Sophonie -Sorbonne -Sorel-Tracy -Sotteville-lès-Rouen -Soudan -Souriau -Spa -Sparks -Spencer -Spinoza -Split -Sri -Sri-Lanka -St/||-- -Staël -Stains -Staline -Stalingrad -Stanislas -Stanleyville -Stasi -Steeve -Stefan -Stein -Steinhaus -Stendhal -Stephan -Stéphane -Stéphanie -Steve -Steven -Stieltjes -Stirling -Stockholm -Stokes -Stradivarius -Strasbourg -Strauss -Stravinski -Sturm -Stuttgart -Styx -Sucy-en-Brie -Sud-Kivu -Sudètes -Suède -Suétone -Suisse -Sumatra -Sumer -Surcouf -Suresnes -Surinam -Suriname -Suzanne -Sv/U.||-- -Svalbard -Sverdlovsk -Swaziland -Sycorax -Sydney -Sylow -Sylvain -Sylvaine -Sylvère -Sylvestre -Sylvette -Sylvia -Sylviane -Sylvie -Syracuse -Syrie -São -T/U.||-- -TGV -TNT -TTC -TV -TVA -Tachkent -Tadjikistan -Tahiti -Taipei -Taïwan -Talence -Talleyrand -Tallinn -Tamagawa -Tamise -Tampico -Tampon -Tananarive -Tanger -Tanguy -Tanzanie -Tao -Tarbes -Tarn -Tarn-et-Garonne -Tarski -Tartempion -Tasmanie -Tatiana -Taverny -Taylor -Tbilissi -Tbit/||-- -Tchad -Tchaïkovski -Tchebotarev -Tchebychev -Tchécoslovaquie -Tcheliabinsk -Tchéquie -Tchernobyl -Teddy -Tegucigalpa -Téhéran -Teichmüller -Tel-Aviv -Télémaque -Tennessee -Térésa -Termonde -Terre -Terre-Neuve -Terrebonne -Tertullien -Tervuren -Tesla -Tessin -Teste-de-Buch -Téthys -Texas -Thaddée -Thaïlande -Thalès -Thalie -Thanatos -Thanksgiving/S. -Thatcher -Thèbes -Thècle -Thémis -Théo -Théocrite -Théodebert -Théodore -Théophile -Thérèse -Thermopyles -Thésée -Thessalie -Thetford -Theux -Thiais -Thibaud -Thibault -Thibaut -Thiérache -Thierry -Thiers -Thiès -Thionville -Thomas -Thompson -Thonon-les-Bains -Thor -Thoune -Thrace -Thucydide -Thunderbird -Thurgovie -Thuringe -Tianjin -Tibère -Tibet -Tibit/||-- -Tibre -Tiers-Monde -Tietze -Tiffany -Tiffauges -Timor -Timothée -Tio/||-- -Tiphaine -Tirana -Tirlemont -Titan -Titania -Titchmarsh -Tite-Live -Titicaca -Titograd -Titouan -Titus -To/||-- -Tobie -Tocqueville -Toda -Toeplitz -Togo -Tokyo -Tolède -Tolkien -Tolstoï -Tom -Tomé -Tonga -Tongres -Tony -Torcy -Torelli -Toronto -Torr/||-- -Torricelli -Toscane -Toulon -Toulouse -Touraine -Tourcoing -Tournai -Tournefeuille -Tournier -Tours -Toussaint -Toutankhamon -Transylvanie -Trappes-en-Yvelines -Tremblay-en-France -Trinité-et-Tobago -Tripoli -Triptolème -Tristan -Troie -Trois-Rivières -Trotsky -Troyes -Tsahal -Tubize -Tulle -Tunis -Tunisie -Turin -Turing -Turkménistan -Turku -Turner -Turnhout -Turquie -Tutte -Tuttlingen -Tuvalu -Twain -Tychonoff -Tyrol -UE/L' -ULM/L'D'Q' -UNESCO/L' -UNICEF/L' -UNIX/D'Q' -URL/L'D' -URSS/L'D' -USA -USB/L'D'Q' -USD/-- -Uccle/D'Q' -Ugo/D'Q' -Ukraine/L'D' -Ulam/D'Q' -Ulis -Ulm/D'Q' -Ulrich/D'Q' -Ulysse/D'Q' -Umbriel/D'Q' -Ungava/L'D' -Unicode/L' -Uranus/D'Q' -Urbain/D'Q' -Uri/L'D' -Ursule/D'Q' -Uruguay/L'D' -Usenet/L'D' -Ushuaïa/D'Q' -Uster/D'Q' -Utah/L'D' -Utique/D'Q' -Utrecht/D'Q' -V/-- -V/U.||-- -VA/U.||-- -VI/-- -VIH -VII/-- -VIII/-- -VIIIe/-- -VIIe/-- -VIP -VIe/-- -VTT -Vaduz -Valais -Val-d'Oise -Val-d'Or -Val-de-Marne -Valence -Valenciennes -Valentin -Valentine -Valère -Valérie -Valérien -Valéry -Valette-du-Var -Vallauris -Valois -Valparaiso -Vancouver -Vandœuvre-lès-Nancy -Vanessa -Vannes -Vanoise -Vanuatu -Vanves -Var -Varennes -Varsovie -Varuna -Vatican -Vauban -Vaucluse -Vaud -Vaudreuil-Dorion -Vaulx-en-Velin -Ve/-- -Véda/S. -Velay -Vélizy-Villacoublay -Velázquez -Vendée -Vendôme -Vénétie -Venezuela -Vénézuela -Venise -Vénissieux -Venn -Vénus -Vercingétorix -Vercors -Verdi -Verdun -Verlaine -Vermeer -Vermont -Verne -Vernier -Vernon -Vérone -Véronique -Versailles -Vertou -Verviers -Vesoul -Vesta -Vésuve -Vexin -Vichy -Victoire -Victor -Victoria -Victoriaville -Victorien -Victorine -Vienne -Vientiane -Vierzon -Vietnam -Vietoris -Vigneux-sur-Seine -Vilaine -Villefranche-sur-Saône -Villejuif -Villemomble -Villenave-d'Ornon -Villeneuve -Villeneuve-Saint-Georges -Villeneuve-d'Ascq -Villeneuve-la-Garenne -Villeneuve-sur-Lot -Villeparisis -Villepinte -Villeurbanne -Villiers-le-Bel -Villiers-sur-Marne -Vilnius -Vilvorde -Vincennes -Vincent -Vinci -Violette -Virasoro -Virgile -Virginia -Virginie -Virginie-Occidentale -Virton -Viry-Châtillon -Visconsin -Vistule -Vitali -Vitrolles -Vitry-sur-Seine -Vivaldi -Viviane -Vivien -Vladimir -Vladivostok -Voiron -Volga -Voltaire -Volterra -Vosges -Vries -Vve -W/U.||-- -WASP -WC -Wadowice -Waerden -Wagner -Walhalla -Walid -Wallis -Wallonie -Walter -Waregem -Waremme -Waring -Washington -Waterloo -Watson -Watt -Watteau -Wattrelos -Wavre -Wb/U.||-- -Weber -Wedderburn -Weierstrass -Weimar -Wellington -Wenceslas -Westende -Westerlo -Westhoek -Westmount -Westphalie -Wetteren -Wevelgem -Weyl -Wh/U.||-- -Wheatstone -Whitehead -Whitehorse -Whitney -Wiener -Wiesbaden -Wightman -Wigner -Wilde -Wilfrid -Wilfried -Willebroek -William -Willy -Windhoek -Windows -Winnipeg -Winterthour -Wisconsin -Witt -Wittgenstein -Wolfgang -Wuhan -Wyoming -X/-- -XAF/-- -XI/-- -XII/-- -XIII/-- -XIIIe/-- -XIIe/-- -XIV/-- -XIVe/-- -XIX/-- -XIXe/-- -XIe/-- -XL/-- -XLI/-- -XLII/-- -XLIII/-- -XLIIIe/-- -XLIIe/-- -XLIV/-- -XLIVe/-- -XLIX/-- -XLIXe/-- -XLIe/-- -XLV/-- -XLVI/-- -XLVII/-- -XLVIII/-- -XLVIIIe/-- -XLVIIe/-- -XLVIe/-- -XLVe/-- -XLe/-- -XOF/-- -XPF/-- -XV/-- -XVI/-- -XVII/-- -XVIII/-- -XVIIIe/-- -XVIIe/-- -XVIe/-- -XVe/-- -XX/-- -XXI/-- -XXII/-- -XXIII/-- -XXIIIe/-- -XXIIe/-- -XXIV/-- -XXIVe/-- -XXIX/-- -XXIXe/-- -XXIe/-- -XXV/-- -XXVI/-- -XXVII/-- -XXVIII/-- -XXVIIIe/-- -XXVIIe/-- -XXVIe/-- -XXVe/-- -XXX/-- -XXXI/-- -XXXII/-- -XXXIII/-- -XXXIIIe/-- -XXXIIe/-- -XXXIV/-- -XXXIVe/-- -XXXIX/-- -XXXIXe/-- -XXXIe/-- -XXXV/-- -XXXVI/-- -XXXVII/-- -XXXVIII/-- -XXXVIIIe/-- -XXXVIIe/-- -XXXVIe/-- -XXXVe/-- -XXXe/-- -XXe/-- -Xavier -Xavière -Xe/-- -Xerxès -Xinjiang -YHWH -Yacine -Yahvé -Yahweh -Yalta -Yamabe -Yamoussoukro -Yanis -Yann -Yannick -Yannis -Yaoundé -Yasmina -Yasmine -Yassine -Ybit/||-- -Yellowknife -Yémen -Yerres/D'Q' -Yggdrasil/D'Q' -Yibit/||-- -Yio/||-- -Yo/||-- -Yoan -Yoann -Yohan -Yohann -Yokohama -Yolande -Yonne/L'D' -York -Yougoslavie -Younes -Young -Youssef -Ypres/D'Q' -Yser/L' -Yucatán -Yukon -Yvain/D'Q' -Yvan/D'Q' -Yvelines -Yverdon-les-Bains/D'Q' -Yves/D'Q' -Yvette/D'Q' -Yvon/D'Q' -Yvonne/D'Q' -Zacharie -Zagreb -Zaïre -Zambie -Zarathoustra -Zariski -Zaventem -Zbit/||-- -Zedelgem -Zélande -Zele -Zemst -Zener -Zénon -Zermelo -Zeus -Zibit/||-- -Zimbabwe -Zio/||-- -Zita -Zo/||-- -Zoé -Zoersel -Zola -Zonhoven -Zorn -Zoroastre -Zottegem -Zoug -Zoute -Zurich -Zwevegem -Zwin -Zwingli -Zygmund -a -à/L'D'Q'Qj -a/||-- -ab -abaca/S*() -abacule/S*() -abaissable/S*() -abaissante/F*() -abaissée/F*() -abaissée/S*() -abaisse-langue/L'D'Q' -abaissement/S*() -abaisser/a4a+() -abaisseur/S*() -abajoue/S*() -abalober -abalone/S*() -abalourdir -abandon/S*() -abandonnataire/S*() -abandonnatrice/F*() -abandonnée/F*() -abandonnement/S*() -abandonner/a4a+() -abandonnique/S*() -abaque/S*() -abarticulaire/S*() -abasie/S*() -abasourdie/F*() -abasourdir/f2f+() -abasourdissante/F*() -abasourdissement/S*() -abat/S*() -abâtardie/F*() -abâtardir/f4f+() -abâtardissement/S*() -abat-carrage/L'D' -abat-carre/S*() -abat-carrer/a2a+() -abatée/S*() -abat-feuille/S*() -abat-foin/L'D'Q' -abatis/L'D'Q' -abat-jour/L'D'Q' -abat-son/S*() -abattable/S*() -abattage/S*() -abattant/S*() -abattée/S*() -abattement/S*() -abatteuse/F*() -abattoir/S*() -abattre/uA() -abattue/F*() -abatture/S*() -abat-vent/L'D'Q' -abat-voix/L'D'Q' -abbasside/S*() -abbatiale/S*() -abbatiale/W*() -abbatiat/S*() -abbaye/S*() -abbé/S*() -abbesse/S*() -abbevillienne/F*() -abc/L' -abcéder/c4a+() -abcès/L'D'Q' -abdicataire/S*() -abdication/S*() -abdiquer/a2a+() -abdomen/S*() -abdominale/W*() -abdomino-génitale/W*() -abducteur/S*() -abduction/S*() -abeaudir -abeausir -abécédaire/S*() -abéchée/F*() -abécher -abécher/L'D' -abecquer -abée/S*() -abeillage/S*() -abeille/S*() -abeillère/F*() -abeillerolle/S*() -abeillier/S*() -abeillon/S*() -abélianisation/S*() -abélianisée/F*() -abélienne/F*() -abéquer -aber/S*() -aberrance/S*() -aberrante/F*() -aberration/S*() -aberrer/a1() -abessif/S*() -abêtie/F*() -abêtifiée/F*() -abêtifier -abêtir/f4f+() -abêtissante/F*() -abêtissement/S*() -abhorrée/F*() -abhorrer/a2a+() -abicher -abies/L'D'Q' -abiétacée/S*() -abiétine/F*() -abiétinée/S*() -abigotir -abillot/S*() -abîme/S*() -abîmée/F*() -abîmer/a4a+() -abiogenèse/S*() -abiotique/S*() -abiotrophie/S*() -abjecte/F*() -abjectement/D'Q' -abjection/S*() -abjuration/S*() -abjurer/a2a+() -abkhaze/S*() -ablactation/S*() -ablater/a4a+() -ablation/S*() -ablatir -ablative/F*() -able/S*() -ablégat/S*() -ableret/S*() -ablette/S*() -abloc/S*() -ablocage/S*() -abloquer/a2a+() -abloquir -abluer -ablutiomanie/S*() -ablution/S*() -ablutionner -abnégation/S*() -aboi/S*() -aboiement/S*() -abolie/F*() -abolir/f2f+() -abolissement/S*() -abolisseur/S*() -abolition/S*() -abolitionnisme/S*() -abolitionniste/S*() -abolitive/F*() -abomber/a1() -abominable/S*() -abominablement/D'Q' -abomination/S*() -abominer/a2a+() -abondamment/D'Q' -abondance/S*() -abondanciste/S*() -abondante/F*() -abondée/F*() -abondement/S*() -abonder/a1() -abonnée/F*() -abonnement/S*() -abonner/a4a+() -abonnie/F*() -abonnir/f4f+() -abonnissement/S*() -aborale/W*() -abord/S*() -abordable/S*() -abordage/S*() -abordée/F*() -aborder/a4a+() -abordeur/S*() -aborigène/S*() -abornée/F*() -abornement/S*() -aborner -abortive/F*() -abot/S*() -aboteau/X*() -abotée/F*() -aboter -abottée/F*() -abotter -abouchement/S*() -aboucher/a4a+() -abougrie/F*() -abougrir -abouler/a4a+() -aboulie/S*() -aboulique/S*() -abouquer -about/S*() -aboutage/S*() -aboutée/F*() -aboutement/S*() -abouter/a2a+() -abouteuse/S*() -aboutie/F*() -aboutir/f1f+() -aboutissant/S*() -aboutissement/S*() -aboutonner -aboyée/F*() -aboyer/a2a+() -aboyeuse/F*() -abracadabra/S*() -abracadabrante/F*() -abracadabrantesque/S*() -abracadabrer -abraquer -abraser/a4a+() -abrasion/S*() -abrasive/F*() -abraxas/L'D'Q' -abréaction/S*() -abréagir/f1f+() -abrégé/S*() -abrégée/F*() -abrègement/S*() -abréger/c4a+() -abreuvage/S*() -abreuvée/F*() -abreuvement/S*() -abreuver/a4a+() -abreuvoir/S*() -abréviation/S*() -abréviative/F*() -abréviativement/D'Q' -abréviatrice/F*() -abréviée/F*() -abrévier -abreyer -abri/S*() -abribus/L'D'Q' -abricot/S*() -abricotée/F*() -abricoter/a2a+() -abricotier/S*() -abricotine/S*() -abrier -abri-sous-roche/L'D'Q' -abris-sous-roche/D'Q' -abritée/F*() -abriter/a4a+() -abrivent/S*() -abriver -abrogation/S*() -abrogative/F*() -abrogatoire/S*() -abrogeable/S*() -abrogée/F*() -abroger/a2a+() -abroutie/F*() -abroutir -abroutissement/S*() -abrupte/F*() -abruptement/D'Q' -abrutie/F*() -abrutir/f4f+() -abrutissante/F*() -abrutissement/S*() -abscisse/S*() -abscission/S*() -absconder -abscondre -absconse/F*() -absconser -absence/S*() -absente/F*() -absentéisme/S*() -absentéiste/S*() -absenter/a2a+() -absenter/a3a+() -absidale/W*() -abside/S*() -absidiole/S*() -absinthe/S*() -absinthisme/S*() -absolue/F*() -absoluité/S*() -absolument/D'Q' -absolution/S*() -absolutisme/S*() -absolutiste/S*() -absolutoire/S*() -absorbable/S*() -absorbante/F*() -absorbée/F*() -absorber/a4a+() -absorbeur/S*() -absorption/S*() -absorptivité/S*() -absoudre/xN() -absoute/F*() -absoute/S*() -abstème/S*() -abstenir/i2i+() -abstention/S*() -abstentionnisme/S*() -abstentionniste/S*() -abstinence/S*() -abstinente/F*() -abstract/S*() -abstracteur/S*() -abstraction/S*() -abstractionnisme/S*() -abstraire/wL() -abstraite/F*() -abstraitement/D'Q' -abstruse/F*() -absurde/S*() -absurdement/D'Q' -absurdisme/S*() -absurdiste/S*() -absurdité/S*() -abus/L'D'Q' -abusée/F*() -abuser/a4a+() -abusive/F*() -abusivement/D'Q' -abyme -abyssale/W*() -abysse/S*() -abyssine/F*() -abyssinienne/F*() -abzyme/S*() -ac -acabit/S*() -acacia/S*() -académicienne/F*() -académie/S*() -académique/S*() -académiquement/D'Q' -académisme/S*() -académiste/S*() -acadianisme/S*() -acadienne/F*() -acagnardée/F*() -acagnarder/a3a+() -acajou/S*() -acalèphe/S*() -acanthacée/S*() -acanthe/S*() -acanthocéphale/S*() -acanthoptérygien/S*() -acariâtre/S*() -acariâtreté/S*() -acaricide/S*() -acarien/S*() -acarus/L'D'Q' -acaule/S*() -accablante/F*() -accablée/F*() -accablement/S*() -accabler/a4a+() -accalmie/S*() -accalmir -accaparante/F*() -accaparée/F*() -accaparement/S*() -accaparer/a2a+() -accapareuse/F*() -accastillage/S*() -accastillée/F*() -accastiller/a2a+() -accastilleuse/F*() -accédée/F*() -accéder/c5() -accelerando/D'Q' -accélérando/S*() -accélérateur/S*() -accélération/S*() -accélératoire/S*() -accélératrice/F*() -accélérée/F*() -accélérer/c4a+() -accélérographe/S*() -accéléromètre/S*() -accent/S*() -accenteur/S*() -accentuation/S*() -accentuée/F*() -accentuelle/F*() -accentuer/a4a+() -acceptabilité/S*() -acceptable/S*() -acceptante/F*() -acceptation/S*() -acceptée/F*() -accepter/a4a+() -accepteur/S*() -acception/S*() -accès/L'D'Q' -accesseur/S*() -accessibilité/S*() -accessible/S*() -accession/S*() -accessit/S*() -accessoire/S*() -accessoirement/D'Q' -accessoirisée/F*() -accessoiriser/a2a+() -accessoiriste/S*() -accident/S*() -accidentée/F*() -accidentelle/F*() -accidentellement/D'Q' -accidenter/a2a+() -accidentologie/S*() -accipitridé/S*() -accise/S*() -acclamation/S*() -acclamée/F*() -acclamer/a2a+() -acclimatable/S*() -acclimatation/S*() -acclimatée/F*() -acclimatement/S*() -acclimater/a4a+() -accœurer -accointance/S*() -accointer/a3a+() -accolade/S*() -accolage/S*() -accolée/F*() -accolement/S*() -accoler/a4a+() -accommodable/S*() -accommodante/F*() -accommodat/S*() -accommodation/S*() -accommodatrice/F*() -accommodée/F*() -accommodement/S*() -accommoder/a4a+() -accompagnante/F*() -accompagnatrice/F*() -accompagnée/F*() -accompagnement/S*() -accompagner/a4a+() -accomplie/F*() -accomplir/f4f+() -accomplissement/S*() -accoquiner/a4a+() -accord/S*() -accordable/S*() -accordage/S*() -accordailles/D'Q' -accordée/F*() -accordement/S*() -accordéon/S*() -accordéoniste/S*() -accorder/a4a+() -accordeuse/F*() -accordoir/S*() -accorer/a2a+() -accorte/F*() -accostable/S*() -accostage/S*() -accostée/F*() -accoster/a4a+() -accot/S*() -accotée/F*() -accotement/S*() -accoter/a4a+() -accotoir/S*() -accouardir -accouchée/S*() -accouchement/S*() -accoucher/a4a+() -accoucheuse/F*() -accoudée/F*() -accoudement/S*() -accouder/a3a+() -accoudoir/S*() -accouer/a2a+() -accouplée/F*() -accouplement/S*() -accoupler/a4a+() -accoupleuse/F*() -accourcie/F*() -accourcir/f2f+() -accourcissement/S*() -accourir/iD() -accoutrée/F*() -accoutrement/S*() -accoutrer/a4a+() -accoutumance/S*() -accoutumée/F*() -accoutumer/a4a+() -accouvage/S*() -accouveuse/F*() -accréditation/S*() -accréditée/F*() -accréditement/S*() -accréditer/a4a+() -accréditive/F*() -accréditrice/F*() -accrescente/F*() -accrétion/S*() -accrobranche/S*() -accroc/S*() -accrochage/S*() -accroche/S*() -accroche-cœur/S*() -accrochée/F*() -accroche-plat/S*() -accrocher/a4a+() -accrocheuse/F*() -accroire/xB() -accroissement/S*() -accroître/wV() -accroupie/F*() -accroupir/f3f+() -accroupissement/S*() -accu/S*() -accueil/S*() -accueillante/F*() -accueillie/F*() -accueillir/iR() -accul/S*() -acculée/F*() -acculer/a2a+() -acculturation/S*() -acculturée/F*() -acculturer/a2a+() -accumulateur/S*() -accumulation/S*() -accumulée/F*() -accumuler/a4a+() -accusable/S*() -accusation/S*() -accusative/F*() -accusatoire/S*() -accusatrice/F*() -accusée/F*() -accuser/a4a+() -ace/S*() -acenser/a2a+() -acéphale/S*() -acéphalie/S*() -acéracée/S*() -acerbe/S*() -acerbité/S*() -acérée/F*() -acérer/c2a+() -acescence/S*() -acescente/F*() -acésulfame/S*() -acétabulaire/S*() -acétamide/S*() -acétate/S*() -acétification/S*() -acétifiée/F*() -acétifier/a2a+() -acétique/S*() -acétobacter/S*() -acétone/S*() -acétonémie/S*() -acétonurie/S*() -acétylcholine/S*() -acétylcystéine/S*() -acétylée/F*() -acétylène/S*() -acétylénique/S*() -acétyler/a2a+() -acétylsalicylique/S*() -acétylure/S*() -achalandage/S*() -achalandée/F*() -achalander/a2a+() -achaler/a2a+() -achards/D'Q' -acharnée/F*() -acharnement/S*() -acharner/a4a+() -achat/S*() -ache/S*() -achéenne/F*() -achéménide/S*() -acheminée/F*() -acheminement/S*() -acheminer/a4a+() -achemineuse/F*() -achetable/S*() -achète/S*() -achetée/F*() -acheter/b4a+() -acheteuse/F*() -acheuléenne/F*() -achevée/F*() -achèvement/S*() -achever/b4a+() -achigan/S*() -achillée/S*() -acholie/S*() -achondroplase/S*() -achondroplasie/S*() -achoppement/S*() -achopper/a4a+() -achromat/S*() -achromaticité/S*() -achromatique/S*() -achromatisée/F*() -achromatiser/a2a+() -achromatisme/S*() -achromatopsie/S*() -achrome/S*() -achromie/S*() -achromique/S*() -achronique/S*() -achylie/S*() -aciculaire/S*() -acidalie/S*() -acide/S*() -acidifiable/S*() -acidifiante/F*() -acidification/S*() -acidifiée/F*() -acidifier/a4a+() -acidimètre/S*() -acidimétrie/S*() -acidiphile/S*() -acidité/S*() -acidophile/S*() -acidose/S*() -acidulée/F*() -aciduler/a2a+() -acier/S*() -aciérage/S*() -aciération/S*() -aciérée/F*() -aciérer/c2a+() -aciérie/S*() -aciériste/S*() -acinésie/S*() -acinus/I*() -aciseler/b2a+() -aclinique/S*() -acmé/S*() -acné/S*() -acnéique/S*() -acœlomate/S*() -acolytat/S*() -acolyte/S*() -acompte/S*() -acon/S*() -aconage/S*() -aconière/F*() -aconit/S*() -aconitine/S*() -acoquinante/F*() -acoquinée/F*() -acoquinement/S*() -acoquiner/a3a+() -acore/S*() -à-côté/S*() -acotylédone/S*() -acoumètre/S*() -acoumétrie/S*() -à-coup/S*() -acouphène/S*() -acousticienne/F*() -acoustique/S*() -acoustiquement/D'Q' -acquéresse/S*() -acquéreuse/F*() -acquérir/iK() -acquêt/S*() -acquiescement/S*() -acquiescer/a5() -acquis/L'D'Q' -acquise/F*() -acquisition/S*() -acquisitive/F*() -acquit/S*() -acquittable/S*() -acquittée/F*() -acquittement/S*() -acquitter/a4a+() -acra/S*() -acre/S*() -âcre/S*() -âcrement/D'Q' -âcreté/S*() -acridien/S*() -acridienne/F*() -acridine/S*() -acrimonie/S*() -acrimonieuse/W*() -acrimonieusement/D'Q' -acroamatique/S*() -acrobate/S*() -acrobatie/S*() -acrobatique/S*() -acrobatiquement/D'Q' -acrocéphale/S*() -acrocéphalie/S*() -acrocyanose/S*() -acroléine/S*() -acromégalie/S*() -acromégalique/S*() -acromion/S*() -acronyme/S*() -acronyque/S*() -acrophobie/S*() -acropole/S*() -acrosome/S*() -acrosport/S*() -acrostiche/S*() -acrotère/S*() -acrylamide/S*() -acrylique/S*() -actancielle/F*() -actant/S*() -acte/S*() -actée/S*() -actéon/S*() -acter/a2a+() -actigramme/S*() -actine/S*() -acting-out/L'D'Q' -actinide/S*() -actinidia/S*() -actinie/S*() -actinique/S*() -actinisme/S*() -actinite/S*() -actinium/S*() -actinologie/S*() -actinomètre/S*() -actinométrie/S*() -actinométrique/S*() -actinomycète/S*() -actinomycose/S*() -actinoptérygien/S*() -actinote/S*() -actinothérapie/S*() -action/S*() -actionnable/S*() -actionnaire/S*() -actionnariale/W*() -actionnariat/S*() -actionnée/F*() -actionnement/S*() -actionner/a2a+() -actionneur/S*() -actionnisme/S*() -activable/S*() -activateur/S*() -activation/S*() -activatrice/F*() -active/F*() -activée/F*() -activement/D'Q' -activer/a4a+() -activeur/S*() -activisme/S*() -activiste/S*() -activité/S*() -actrice/F*() -actu/S*() -actuaire/S*() -actualisable/S*() -actualisation/S*() -actualisée/F*() -actualiser/a2a+() -actualisme/S*() -actualité/S*() -actuariat/S*() -actuarielle/F*() -actuation/S*() -actuelle/F*() -actuellement/D'Q' -acuité/S*() -acul/S*() -aculéate/S*() -acuminée/F*() -acupunctrice/F*() -acupuncture/S*() -acutance/S*() -acutangle/S*() -acyclicité/S*() -acyclique/S*() -acylation/S*() -acyle/S*() -ad -adage/S*() -adagio/D'Q' -adagio/S*() -adamantine/F*() -adamique/S*() -adamisme/S*() -adaptabilité/S*() -adaptable/S*() -adaptation/S*() -adaptative/F*() -adaptatrice/F*() -adaptée/F*() -adapter/a4a+() -addenda/L'D'Q' -addendum/L'D'Q' -addiction/S*() -addictive/F*() -addictologie/S*() -addictologique/S*() -addictologue/S*() -addition/S*() -additionnable/S*() -additionnée/F*() -additionnelle/F*() -additionner/a4a+() -additive/F*() -additivement/D'Q' -additivité/S*() -adducteur/S*() -adduction/S*() -adduit/S*() -adèle/S*() -adénine/S*() -adénite/S*() -adénocarcinome/S*() -adénoïde/S*() -adénome/S*() -adénopathie/S*() -adénosine/S*() -adénovirus/L'D'Q' -adent -adent/S*() -adepte/S*() -adéquate/F*() -adéquatement/D'Q' -adéquation/S*() -adextrée/F*() -adhérence/S*() -adhérente/F*() -adhérer/c5() -adhésion/S*() -adhésive/F*() -adhésivité/S*() -adiabatique/S*() -adiabatiquement/D'Q' -adiante/S*() -adiaphorèse/S*() -adieu -adieu/X*() -adipeuse/W*() -adipique/S*() -adipolyse/S*() -adipopexie/S*() -adipose/S*() -adiposité/S*() -adiposo-génitale/W*() -adipsie/S*() -adique/S*() -adire/yG() -adirer/aE() -adjacence/S*() -adjacente/F*() -adjectif/S*() -adjectivale/W*() -adjectivation/S*() -adjective/F*() -adjectivement/D'Q' -adjectiver/a2a+() -adjectivisation/S*() -adjectiviser/a2a+() -adjoindre/wB() -adjointe/F*() -adjonction/S*() -adjudant-chef/L'D'Q' -adjudante/F*() -adjudants-chefs/D'Q' -adjudicataire/S*() -adjudication/S*() -adjudicative/F*() -adjudicatrice/F*() -adjugée/F*() -adjuger/a4a+() -adjuration/S*() -adjurer/a2a+() -adjuvant/S*() -adjuvante/F*() -adjuvat/S*() -admettre/vA() -adminicule/S*() -administrable/S*() -administration/S*() -administrationaliser -administrative/F*() -administrativement/D'Q' -administratrice/F*() -administrée/F*() -administrer/a4a+() -admirable/S*() -admirablement/D'Q' -admiration/S*() -admirative/F*() -admirativement/D'Q' -admiratrice/F*() -admirée/F*() -admirer/a4a+() -admise/F*() -admissibilité/S*() -admissible/S*() -admission/S*() -admittance/S*() -admixtion/S*() -admonestation/S*() -admonestée/F*() -admonester/a4a+() -admonition/S*() -adnée/F*() -ado/S*() -adobe/S*() -adolescence/S*() -adolescente/F*() -adonis/L'D'Q' -adonisée/F*() -adoniser/a3a+() -adonnée/F*() -adonner/a3a+() -adoptable/S*() -adoptante/F*() -adoptée/F*() -adopter/a2a+() -adoption/S*() -adoptive/F*() -adorable/S*() -adorablement/D'Q' -adoration/S*() -adoratrice/F*() -adorée/F*() -adorer/a4a+() -adorner/a4a+() -ados/L'D'Q' -adossée/F*() -adossement/S*() -adosser/a4a+() -adoubée/F*() -adoubement/S*() -adouber/a2a+() -adoucie/F*() -adoucir/f4f+() -adoucissage/S*() -adoucissante/F*() -adoucissement/S*() -adoucisseur/S*() -adragante/F*() -adrénaline/S*() -adrénergique/S*() -adrénolytique/S*() -adressable/S*() -adressage/S*() -adresse/S*() -adressée/F*() -adresser/a4a+() -adret/S*() -adriatique/S*() -adroite/F*() -adroitement/D'Q' -adsorbable/S*() -adsorbante/F*() -adsorbée/F*() -adsorber/a2a+() -adsorption/S*() -adstrat/S*() -adulaire/S*() -adulation/S*() -adulatrice/F*() -adulée/F*() -aduler/a4a+() -adulescence/S*() -adulescente/F*() -adulte/S*() -adultération/S*() -adultère/S*() -adultérée/F*() -adultérer/c2a+() -adultérine/F*() -adultisme/S*() -adustible/S*() -advection/S*() -advenir/iA() -adventice/S*() -adventiste/S*() -adventive/F*() -adverbe/S*() -adverbiale/W*() -adverbialement/D'Q' -adverbialiser/a2a+() -adversaire/S*() -adversative/F*() -adverse/S*() -adversité/S*() -adynamie/S*() -adynamique/S*() -aède/S*() -ægagropile/S*() -ægipan/S*() -ægosome/S*() -ægyrine/S*() -æpyornis/L'D'Q' -æquo -æquo -aérage/S*() -aérateur/S*() -aération/S*() -aérée/F*() -aérer/c4a+() -aérienne/F*() -aérium/S*() -aérobic/S*() -aérobie/S*() -aéro-club/S*() -aérodigestive/F*() -aérodrome/S*() -aérodynamicienne/F*() -aérodynamique/S*() -aérodynamisme/S*() -aéroélectrique/S*() -aérofrein/S*() -aérogare/S*() -aérogastrie/S*() -aérogel/S*() -aéroglisseur/S*() -aérographe/S*() -aérolite/S*() -aérolithe/S*() -aérologie/S*() -aéromancie/S*() -aéromètre/S*() -aérométrie/S*() -aéromodélisme/S*() -aéromodéliste/S*() -aéronaute/S*() -aéronautique/S*() -aéronavale/F*() -aéronavale/S*() -aéronef/S*() -aéronomie/S*() -aérophagie/S*() -aéroplane/S*() -aéroponie/S*() -aéroponique/S*() -aéroport/S*() -aéroportée/F*() -aéroportuaire/S*() -aéropostale/W*() -aéroréfrigérant/S*() -aéroréfrigérante/F*() -aérosol/S*() -aérosondage/S*() -aérospatiale/W*() -aérostat/S*() -aérostation/S*() -aérostatique/S*() -aérostière/F*() -aérotherme/S*() -aérothermique/S*() -aérotrain/S*() -æschne/S*() -æschnidé/S*() -affabilité/S*() -affable/S*() -affablement/D'Q' -affabulation/S*() -affabulatrice/F*() -affabulée/F*() -affabuler/a2a+() -affacturage/S*() -affadie/F*() -affadir/f4f+() -affadissante/F*() -affadissement/S*() -affaiblie/F*() -affaiblir/f4f+() -affaiblissante/F*() -affaiblissement/S*() -affainéantie/F*() -affainéantir -affaire/S*() -affairée/F*() -affairement/S*() -affairer/a3a+() -affairisme/S*() -affairiste/S*() -affaissée/F*() -affaissement/S*() -affaisser/a4a+() -affaitage/S*() -affaitement/S*() -affaîter -affalée/F*() -affalement/S*() -affaler/a4a+() -affamée/F*() -affamer/a2a+() -affameuse/F*() -afféager/a2a+() -affect/S*() -affectation/S*() -affectée/F*() -affecter/a4a+() -affection/S*() -affectionnée/F*() -affectionner/a2a+() -affective/F*() -affectivement/D'Q' -affectivité/S*() -affectueuse/W*() -affectueusement/D'Q' -affectuosité/S*() -affenage/S*() -afférente/F*() -afférer/c1() -affermage/S*() -affermer/a2a+() -affermie/F*() -affermir/f4f+() -affermissement/S*() -affétée/F*() -afféterie/S*() -affichable/S*() -affichage/S*() -affiche/S*() -affichée/F*() -afficher/a4a+() -affichette/S*() -afficheuse/F*() -affichiste/S*() -affidavit/S*() -affidée/F*() -affilage/S*() -affilée/F*() -affiler/a2a+() -affileuse/F*() -affiliation/S*() -affiliée/F*() -affilier/a4a+() -affiloir/S*() -affinage/S*() -affine/F*() -affinée/F*() -affinement/S*() -affiner/a4a+() -affinerie/S*() -affineuse/F*() -affinité/S*() -affinoir/S*() -affiquet/S*() -affirmation/S*() -affirmative/F*() -affirmativement/D'Q' -affirmée/F*() -affirmer/a4a+() -affixale/W*() -affixation/S*() -affixe/S*() -affleurante/F*() -affleurement/S*() -affleurer/a2a+() -affliction/S*() -afflictive/F*() -affligeante/F*() -affligée/F*() -affliger/a4a+() -afflouer/a2a+() -affluence/S*() -affluent/S*() -affluente/F*() -affluer/a1() -afflux/L'D'Q' -affolante/F*() -affolée/F*() -affolement/S*() -affoler/a4a+() -affolir -affouage/S*() -affouagée/F*() -affouager/a2a+() -affouillement/S*() -affouiller/a2a+() -affouragement/S*() -affourager/a2a+() -affourchée/F*() -affourcher/a2a+() -affourrager/a2a+() -affranchie/F*() -affranchir/f4f+() -affranchissement/S*() -affranchisseuse/F*() -affres/D' -affrétée/F*() -affrètement/S*() -affréter/c2a+() -affréteuse/F*() -affreuse/W*() -affreusement/D'Q' -affriandée/F*() -affriander/a2a+() -affricher/a2a+() -affriolante/F*() -affrioler/a2a+() -affriquée/F*() -affriquée/S*() -affriter/a2a+() -affront/S*() -affrontée/F*() -affrontement/S*() -affronter/a4a+() -affronteuse/F*() -affruiter/a2a+() -affublée/F*() -affublement/S*() -affubler/a4a+() -affurer/a2a+() -affusion/S*() -affût/S*() -affûtage/S*() -affûtée/F*() -affûter/a2a+() -affûteuse/F*() -affûtiaux/D'Q' -affûtoir/S*() -afghane/F*() -aficionado/S*() -afin -afocale/W*() -africaine/F*() -africanisation/S*() -africanisée/F*() -africaniser/a4a+() -africanisme/S*() -africaniste/S*() -afrikaans/L'D'Q' -afrikander/S*() -afrikaner/S*() -afro/L'D' -afro-américaine/F*() -afro-asiatique/S*() -afrobeat/S*() -afro-cubaine/F*() -after-shave/L'D'Q' -agaçante/F*() -agacée/F*() -agacement/S*() -agacer/a4a+() -agacerie/S*() -agaillardie/F*() -agaillardir -agalactie/S*() -agame/S*() -agamète/S*() -agami/S*() -agamidé/S*() -agamie/S*() -agammaglobulinémie/S*() -agamospermie/S*() -agapanthe/S*() -agape/S*() -agapète/S*() -agar/S*() -agar-agar/L'D'Q' -agaric/S*() -agaricale/S*() -agars-agars/D'Q' -agate/S*() -agatisée/F*() -agavacée/S*() -agave/S*() -agavé/S*() -age/S*() -âge/S*() -âgée/F*() -agence/S*() -agencée/F*() -agencement/S*() -agencer/a4a+() -agencière/F*() -agenda/S*() -agender/a2a+() -agénésie/S*() -agenouillée/F*() -agenouillement/S*() -agenouiller/a3a+() -agenouilliste/S*() -agenouilloir/S*() -agente/F*() -agérate/S*() -ageratum/S*() -agger/S*() -aggiornamento/S*() -agglo/S*() -agglomérant/S*() -agglomérante/F*() -agglomérat/S*() -agglomération/S*() -aggloméré/S*() -agglomérée/F*() -agglomérer/c4a+() -agglutinante/F*() -agglutination/S*() -agglutinée/F*() -agglutinement/S*() -agglutiner/a4a+() -agglutinine/S*() -agglutinogène/S*() -aggravante/F*() -aggravation/S*() -aggravée/F*() -aggraver/a4a+() -aggrédir -agha/S*() -agile/S*() -agilement/D'Q' -agilité/S*() -agio/S*() -agiotage/S*() -agioter/a1() -agioteur/S*() -agir/L' -agir/f1() -âgisme/S*() -agissante/F*() -agissement/S*() -agitante/F*() -agitation/S*() -agitato/D'Q' -agitatrice/F*() -agitée/F*() -agiter/a4a+() -aglyphe/S*() -agnate/F*() -agnathe/S*() -agnation/S*() -agnatique/S*() -agneau/X*() -agnelage/S*() -agneler/d1() -agnelet/S*() -agneline/F*() -agnosie/S*() -agnosique/S*() -agnosticisme/S*() -agnostique/S*() -agnus/L'D' -agnus-castus/L'D'Q' -agonie/S*() -agonir/f2f+() -agonisante/F*() -agoniser/a1() -agoniste/S*() -agora/S*() -agoraphobe/S*() -agoraphobie/S*() -agouti/S*() -agrafage/S*() -agrafe/S*() -agrafée/F*() -agrafer/a2a+() -agrafeuse/F*() -agrainage/S*() -agrainer/a2a+() -agraire/S*() -agrammaticale/W*() -agrammatisme/S*() -agrandie/F*() -agrandir/f4f+() -agrandissement/S*() -agrandisseuse/F*() -agranulocytose/S*() -agraphie/S*() -agrarienne/F*() -agréable/S*() -agréablement/D'Q' -agréage/S*() -agréation/S*() -agréée/F*() -agréer/a4a+() -agréeuse/F*() -agrégat/S*() -agrégateur/S*() -agrégation/S*() -agrégative/F*() -agrégée/F*() -agréger/c4a+() -agrément/S*() -agrémentée/F*() -agrémenter/a2a+() -agrès/L'D'Q' -agressée/F*() -agresser/a2a+() -agresseur/S*() -agression/S*() -agressive/F*() -agressivement/D'Q' -agressivité/S*() -agreste/S*() -agricher/a2a+() -agricole/S*() -agricultrice/F*() -agriculture/S*() -agriffer/a3a+() -agrile/S*() -agrion/S*() -agriote/S*() -agripaume/S*() -agrippée/F*() -agrippement/S*() -agripper/a4a+() -agroalimentaire/S*() -agrobiologie/S*() -agrobiologique/S*() -agrobiologiste/S*() -agrocarburant/S*() -agrochimie/S*() -agrochimique/S*() -agrochimiste/S*() -agroclimatologie/S*() -agro-industrie/S*() -agro-industrielle/F*() -agrologie/S*() -agronome/S*() -agronomie/S*() -agronomique/S*() -agropastoralisme/S*() -agropastoraliste/S*() -agropyrum/S*() -agrostide/S*() -agrostis/L'D'Q' -agrotechnicienne/F*() -agrotis/L'D'Q' -agrotourisme/S*() -agrume/S*() -aguardiente/S*() -aguerrie/F*() -aguerrir/f4f+() -aguerrissement/S*() -aguets/D' -agueusie/S*() -agui/S*() -aguichage/S*() -aguichante/F*() -aguichée/F*() -aguicher/a2a+() -aguicheuse/F*() -ah -ahan/S*() -ahaner/a1() -aheurtée/F*() -aheurter/a3a+() -ahurie/F*() -ahurir/f2f+() -ahurissante/F*() -ahurissement/S*() -aï/S*() -aidante/F*() -aide/S*() -aide-comptable/L'D'Q' -aidée/F*() -aide-mémoire/L'D'Q' -aider/a4a+() -aides-comptables/D'Q' -aïe -aïeule/F*() -aïeux/D'Q' -aigle/S*() -aiglefin/S*() -aiglette/S*() -aiglonne/F*() -aigre/S*() -aigre-douce/L'D'Q' -aigre-doux/L'D'Q' -aigrefin/S*() -aigrelette/F*() -aigrement/D'Q' -aigremoine/S*() -aigres-douces/D'Q' -aigres-doux/D'Q' -aigrette/F*() -aigrettée/F*() -aigreur/S*() -aigrie/F*() -aigrir/f4f+() -aiguail/S*() -aiguë/F*() -aigue-marine/L'D'Q' -aigues-marines/D'Q' -aiguière/S*() -aiguillage/S*() -aiguillat/S*() -aiguille/S*() -aiguillée/F*() -aiguiller/a2a+() -aiguilleter/d2a+() -aiguilleteuse/F*() -aiguilleuse/F*() -aiguillier/S*() -aiguillon/S*() -aiguillonnée/F*() -aiguillonner/a2a+() -aiguillot/S*() -aiguisage/S*() -aiguise-crayon/S*() -aiguisée/F*() -aiguisement/S*() -aiguiser/a4a+() -aiguiseuse/F*() -aiguisoir/S*() -aïkido/S*() -ail/S*() -ailante/S*() -aile/S*() -ailée/F*() -aileron/S*() -ailette/S*() -ailier/S*() -ailler/a2a+() -ailleurs/L'D'Q' -ailloli/S*() -aimable/S*() -aimablement/D'Q' -aimant/S*() -aimantation/S*() -aimante/F*() -aimantée/F*() -aimanter/a4a+() -aimantin/S*() -aimantine/F*() -aimée/F*() -aimer/a4a+() -aine/S*() -aînée/F*() -aînesse/S*() -aïnou/S*() -ainsi/D'Q' -aïoli/S*() -air/S*() -airain/S*() -aire/S*() -airedale/S*() -airedale-terrier/S*() -airelle/S*() -airer/a1() -ais/L'D'Q' -aisance/S*() -aise/S*() -aisée/F*() -aisément/D'Q' -aisseau/X*() -aisselle/S*() -aisy/S*() -aître/S*() -ajointer/a2a+() -ajonc/S*() -ajoupa/S*() -ajour/S*() -ajourée/F*() -ajourer/a2a+() -ajournable/S*() -ajournée/F*() -ajournement/S*() -ajourner/a2a+() -ajout/S*() -ajoutée/F*() -ajouter/a4a+() -ajustable/S*() -ajustage/S*() -ajustée/F*() -ajustement/S*() -ajuster/a4a+() -ajusteuse/F*() -akène/S*() -akinésie/S*() -akkadienne/F*() -alabandine/S*() -alabastrite/S*() -alâchir -alacrité/S*() -alaire/S*() -alaise/S*() -alambic/S*() -alambique/S*() -alambiquée/F*() -alambiquer/a2a+() -alandier/S*() -alangourer -alanguie/F*() -alanguir/f4f+() -alanguissement/S*() -alanine/S*() -alarmante/F*() -alarme/S*() -alarmée/F*() -alarmer/a4a+() -alarmisme/S*() -alarmiste/S*() -alastrim/S*() -alaterne/S*() -albanaise/F*() -albanophone/S*() -albâtre/S*() -albatros/L'D'Q' -albédo/S*() -alberge/S*() -albergier/S*() -albigeoise/F*() -albinisme/S*() -albinos/L'D'Q' -albite/S*() -albuginée/F*() -albugo/S*() -album/S*() -albumen/S*() -albumine/S*() -albuminée/F*() -albumineuse/W*() -albuminoïde/S*() -albuminurie/S*() -albuminurique/S*() -albumose/S*() -alcade/S*() -alcaïque/S*() -alcalescence/S*() -alcalescente/F*() -alcali/S*() -alcalifiante/F*() -alcalimètre/S*() -alcalimétrie/S*() -alcaline/F*() -alcalinisation/S*() -alcalinisée/F*() -alcaliniser/a2a+() -alcalinité/S*() -alcalino-terreuse/W*() -alcalisée/F*() -alcaliser/a2a+() -alcaloïde/S*() -alcalose/S*() -alcane/S*() -alcarazas/L'D'Q' -alcazar/S*() -alcédinidé/S*() -alcène/S*() -alchémille/S*() -alchimie/S*() -alchimique/S*() -alchimiste/S*() -alcoholiser -alcool/S*() -alcoolat/S*() -alcoolature/S*() -alcoolé/S*() -alcoolémie/S*() -alcoolification/S*() -alcoolique/S*() -alcoolisable/S*() -alcoolisation/S*() -alcoolisée/F*() -alcooliser/a4a+() -alcoolisme/S*() -alcoologie/S*() -alcoologue/S*() -alcoomètre/S*() -alcootest/S*() -alcoran/S*() -alcôve/S*() -alcoylation/S*() -alcoyle/S*() -alcyne/S*() -alcyon/S*() -alcyonaire/S*() -alcyonienne/F*() -aldéhyde/S*() -aldéhydique/S*() -aldine/F*() -aldol/S*() -aldostérone/S*() -ale/S*() -aléa/S*() -aléatoire/S*() -aléatoirement/D'Q' -alémanique/S*() -alêne/S*() -alénois/L'D'Q' -alentie/F*() -alentir/f2f+() -alentour -alentour/S*() -aléoute/S*() -aléoutienne/F*() -aleph/S*() -alépine/F*() -alérion/S*() -alerte/S*() -alertée/F*() -alertement/D'Q' -alerter/a2a+() -alésage/S*() -alèse/S*() -alésée/F*() -aléser/c2a+() -aléseuse/F*() -alésoir/S*() -alestir -aleurite/S*() -aleurode/S*() -aleurone/S*() -alevin/S*() -alevinage/S*() -aleviner/a2a+() -alevinière/F*() -alexandra/L'D' -alexandrine/F*() -alexandrinisme/S*() -alexie/S*() -alexine/S*() -alexithymie/S*() -alezane/F*() -alfa/S*() -alfange/S*() -alfatière/F*() -alfénide/S*() -algarade/S*() -algazelle/S*() -algèbre/S*() -algébricité/S*() -algébrique/S*() -algébriquement/D'Q' -algébrisation/S*() -algébriste/S*() -algérienne/F*() -algéroise/F*() -algide/S*() -algidité/S*() -algie/S*() -alginate/S*() -algine/S*() -algique/S*() -algocultrice/F*() -algoculture/S*() -algologie/S*() -algologue/S*() -algonquine/F*() -algorithme/S*() -algorithmie/S*() -algorithmique/S*() -algorithmiquement/D'Q' -algothérapie/S*() -algue/S*() -alias -alias/L'D'Q' -alibi/S*() -aliboufier/S*() -alicament/S*() -alicante/S*() -alidade/S*() -aliénabilité/S*() -aliénable/S*() -aliénante/F*() -aliénataire/S*() -aliénation/S*() -aliénatrice/F*() -aliénée/F*() -aliéner/c4a+() -aliéniste/S*() -alifère/S*() -alignée/F*() -alignement/S*() -aligner/a4a+() -aligot/S*() -aligoté/S*() -aliment/S*() -alimentaire/S*() -alimentation/S*() -alimentatrice/F*() -alimentée/F*() -alimenter/a4a+() -alinéa/S*() -alios/L'D'Q' -aliphatique/S*() -aliquante/S*() -aliquote/S*() -alise/S*() -alisier/S*() -alismacée/S*() -alisme/S*() -alitée/F*() -alitement/S*() -aliter/a4a+() -alizari/S*() -alizarine/S*() -alizé/S*() -alkaest/L'D' -alkékenge/S*() -alkermès/L'D'Q' -alkylant/S*() -alkylante/F*() -alkylation/S*() -alkyle/S*() -alkyler/a4a+() -allaitante/F*() -allaitée/F*() -allaitement/S*() -allaiter/a2a+() -allante/F*() -allantoïde/S*() -alléchante/F*() -alléchée/F*() -allèchement/S*() -allécher/c2a+() -allée/S*() -allégation/S*() -allégeance/S*() -allégée/F*() -allègement/S*() -alléger/c4a+() -allégérir -allégir/f2f+() -allégorie/S*() -allégorique/S*() -allégoriquement/D'Q' -allégoriser/a2a+() -allègre/S*() -allègrement/D'Q' -allégresse/S*() -allegretto/D'Q' -allégretto/S*() -allegro/D'Q' -allégro/S*() -alléguée/F*() -alléguer/c2a+() -allèle/S*() -allélique/S*() -allélomorphe/S*() -allélopathie/S*() -alléluia -alléluia/S*() -allemande/F*() -allène/S*() -aller/S*() -aller/aA() -allergène/S*() -allergie/S*() -allergique/S*() -allergisante/F*() -allergologie/S*() -allergologiste/S*() -allergologue/S*() -aller-retour/S*() -alleu/X*() -alliacée/F*() -alliage/S*() -alliance/S*() -alliée/F*() -allier/a4a+() -alligator/S*() -allitération/S*() -allô -allocataire/S*() -allocation/S*() -allocentrique/S*() -allocentrisme/S*() -allochtone/S*() -allocutaire/S*() -allocution/S*() -allodiale/W*() -allogamie/S*() -allogène/S*() -allogreffe/S*() -allomorphe/S*() -allonge/S*() -allongée/F*() -allongement/S*() -allonger/a4a+() -allopathe/S*() -allopathie/S*() -allopathique/S*() -allosaure/S*() -allostérie/S*() -allotir/f2f+() -allotissement/S*() -allotropie/S*() -allotropique/S*() -allouée/F*() -allouer/a4a+() -alluchon/S*() -allumage/S*() -allume-cigare/S*() -allumée/F*() -allume-feu/X*() -allume-gaz/L'D'Q' -allumer/a4a+() -allumette/S*() -allumettière/F*() -allumeuse/F*() -allure/S*() -allurée/F*() -allusion/S*() -allusive/F*() -alluviale/W*() -alluvion/S*() -alluvionnaire/S*() -alluvionnement/S*() -alluvionner/a1() -allyle/S*() -allylique/S*() -almanach/S*() -almandin/S*() -almasilium/S*() -almée/S*() -aloès/L'D'Q' -alogie/S*() -alogique/S*() -aloi/D' -alopécie/S*() -alors/D'Q'Qj -alose/S*() -alouate/S*() -alouette/S*() -alourdie/F*() -alourdir/f4f+() -alourdissante/F*() -alourdissement/S*() -aloyau/X*() -alpaga/S*() -alpage/S*() -alpaguée/F*() -alpaguer/a2a+() -alpax/L'D'Q' -alpe/S*() -alpestre/S*() -alpha/L'D'Q' -alphabet/S*() -alphabétique/S*() -alphabétiquement/D'Q' -alphabétisation/S*() -alphabétisée/F*() -alphabétiser/a2a+() -alphabétisme/S*() -alphanumérique/S*() -alpine/F*() -alpinisme/S*() -alpiniste/S*() -alpiste/S*() -alsacienne/F*() -altaïque/S*() -alter/L'D'Q' -altérabilité/S*() -altérable/S*() -altéragène/S*() -altérante/F*() -altération/S*() -altercation/S*() -altérée/F*() -altérer/c4a+() -altérite/S*() -altérité/S*() -altermondialisation/S*() -altermondialisme/S*() -altermondialiste/S*() -alternance/S*() -alternante/F*() -alternat/S*() -alternateur/S*() -alternative/F*() -alternativement/D'Q' -alternée/F*() -alterner/a2a+() -altesse/S*() -althæa/S*() -althée/S*() -altière/F*() -altimètre/S*() -altimétrie/S*() -altimétrique/S*() -altiport/S*() -altise/S*() -altiste/S*() -altitude/S*() -alto/S*() -altocumulus/L'D'Q' -altostratus/L'D'Q' -altruisme/S*() -altruiste/S*() -alu/S*() -alucite/S*() -alule/S*() -aluminage/S*() -aluminate/S*() -alumine/S*() -aluminée/F*() -aluminer/a2a+() -alumineuse/W*() -aluminiage/S*() -aluminium/S*() -aluminothermie/S*() -alun/S*() -alunée/F*() -aluner/a2a+() -alunir/f1f+() -alunissage/S*() -alunite/S*() -alvéolaire/S*() -alvéole/S*() -alvéolée/F*() -alvéolite/S*() -alvine/F*() -alyte/S*() -amabilité/S*() -amadou/S*() -amadouée/F*() -amadouer/a2a+() -amadouvier/S*() -amaigrie/F*() -amaigrir/f4f+() -amaigrissante/F*() -amaigrissement/S*() -amalgamation/S*() -amalgame/S*() -amalgamée/F*() -amalgamer/a4a+() -amandaie/S*() -amande/S*() -amanderaie/S*() -amandier/S*() -amandine/S*() -amanite/S*() -amante/F*() -amarante/S*() -amareyeuse/F*() -amarile/F*() -amarinée/F*() -amariner/a4a+() -amarrage/S*() -amarre/S*() -amarrée/F*() -amarrer/a4a+() -amaryllidacée/S*() -amaryllis/L'D'Q' -amas/L'D'Q' -amassée/F*() -amasser/a4a+() -amateurisme/S*() -amatie/F*() -amatir/f2f+() -amatrice/F*() -amaurose/S*() -amazone/S*() -amazonienne/F*() -amazonite/S*() -ambages/D'Q' -ambassade/S*() -ambassadrice/F*() -ambiance/S*() -ambiancer/a1() -ambianceur/S*() -ambiante/F*() -ambidextre/S*() -ambifier/a3a+() -ambiguë/F*() -ambiguïté/S*() -ambigument/D'Q' -ambisexuée/F*() -ambitieuse/W*() -ambitieusement/D'Q' -ambition/S*() -ambitionnée/F*() -ambitionner/a2a+() -ambivalence/S*() -ambivalente/F*() -ambler/a1() -ambleuse/F*() -amblyope/S*() -amblyopie/S*() -amblyoscope/S*() -amblystome/S*() -ambon/S*() -ambre/L'D'Q' -ambre/S*() -ambrée/F*() -ambrer/a2a+() -ambroisie/S*() -ambrosienne/F*() -ambulacraire/S*() -ambulacre/S*() -ambulance/S*() -ambulancière/F*() -ambulante/F*() -ambulateur/S*() -ambulatoire/S*() -âme/S*() -améliorable/S*() -améliorante/F*() -amélioration/S*() -amélioratrice/F*() -améliorée/F*() -améliorer/a4a+() -amen -aménageable/S*() -aménagée/F*() -aménagement/S*() -aménager/a4a+() -aménageuse/F*() -amendable/S*() -amende/S*() -amendée/F*() -amendement/S*() -amender/a4a+() -amenée/F*() -amener/b4a+() -aménité/S*() -aménorrhée/S*() -amentifère/S*() -amenuisée/F*() -amenuisement/S*() -aménuiser -amenuiser/a2a+() -amère/F*() -amèrement/D'Q' -américaine/F*() -américanisation/S*() -américanisée/F*() -américaniser/a4a+() -américanisme/S*() -américaniste/S*() -américium/S*() -amérindianisme/S*() -amérindienne/F*() -amerloque/S*() -amerrir/f1f+() -amerrissage/S*() -amertume/S*() -amétabole/S*() -améthyste/S*() -amétrope/S*() -amétropie/S*() -ameublement/S*() -ameublie/F*() -ameublir/f2f+() -ameublissement/S*() -ameuter/a4a+() -amharique/S*() -amiable/S*() -amiante/S*() -amiantée/F*() -amibe/S*() -amibiase/S*() -amibienne/F*() -amiboïde/S*() -amicale/W*() -amicalement/D'Q' -amicalisme/S*() -amicaliste/S*() -amict/S*() -amide/S*() -amidon/S*() -amidonnage/S*() -amidonnée/F*() -amidonner/a2a+() -amidonnerie/S*() -amidonnière/F*() -amidopyrine/S*() -amie/F*() -amination/S*() -amincie/F*() -amincir/f4f+() -amincissante/F*() -amincissement/S*() -amine/S*() -aminée/F*() -aminer/a1() -aminoacide/S*() -aminoplaste/S*() -aminoside/S*() -amirale/W*() -amirauté/S*() -amitié/S*() -amitose/S*() -ammodyte/S*() -ammoniac/S*() -ammoniacale/W*() -ammoniaque/S*() -ammonisation/S*() -ammonite/S*() -ammonium/S*() -ammophile/S*() -amnésie/S*() -amnésique/S*() -amniocentèse/S*() -amnios/L'D'Q' -amnioscopie/S*() -amniotique/S*() -amnistiable/S*() -amnistiante/F*() -amnistie/S*() -amnistiée/F*() -amnistier/a2a+() -amochée/F*() -amocher/a4a+() -amodiataire/S*() -amodiation/S*() -amodiée/F*() -amodier/a2a+() -amoindrie/F*() -amoindrir/f4f+() -amoindrissement/S*() -amollie/F*() -amollir/f4f+() -amollissante/F*() -amollissement/S*() -amome/S*() -amoncelée/F*() -amonceler/d4a+() -amoncellement/S*() -amont/S*() -amorale/W*() -amoralisme/S*() -amoralité/S*() -amorçage/S*() -amorce/S*() -amorcée/F*() -amorcer/a4a+() -amordancée/F*() -amordancer/a2a+() -amoroso/D'Q' -amorphe/S*() -amorti/S*() -amortie/F*() -amortir/f4f+() -amortissable/S*() -amortissement/S*() -amortisseur/S*() -amour/S*() -amourachée/F*() -amouracher/a3a+() -amourer/a2a+() -amourette/S*() -amoureuse/W*() -amoureusement/D'Q' -amour-propre/L'D'Q' -amours-propres/D'Q' -amovibilité/S*() -amovible/S*() -ampélographe/S*() -ampélographie/S*() -ampélographique/S*() -ampélopsis/L'D'Q' -ampérage/S*() -ampère/Um() -ampère-heure/L'D'Q' -ampèremètre/S*() -ampères-heures/D'Q' -amphétamine/S*() -amphétaminique/S*() -amphi/S*() -amphiarthrose/S*() -amphibie/S*() -amphibienne/F*() -amphibole/S*() -amphibologie/S*() -amphibologique/S*() -amphibologiquement/D'Q' -amphictyon/S*() -amphictyonie/S*() -amphigouri/S*() -amphigourique/S*() -amphigourisme/S*() -amphimixie/S*() -amphioxus/L'D'Q' -amphipode/S*() -amphiprion/S*() -amphisbène/S*() -amphistère/S*() -amphithéâtre/S*() -amphitryon/S*() -ampholyte/S*() -amphore/S*() -amphorisque/S*() -amphotère/S*() -ample/S*() -amplective/F*() -amplement/D'Q' -ampleur/S*() -ampli/S*() -ampliation/S*() -ampliative/F*() -amplifiable/S*() -amplifiante/F*() -amplification/S*() -amplificatrice/F*() -amplifiée/F*() -amplifier/a4a+() -ampliforme/S*() -amplis-syntoniseurs/D'Q' -amplis-tuners/D'Q' -ampli-syntoniseur/L'D'Q' -amplitude/S*() -ampli-tuner/L'D'Q' -ampoule/S*() -ampoulée/F*() -amputation/S*() -amputée/F*() -amputer/a4a+() -amuïr -amuïssement/S*() -amulette/S*() -amurer/a2a+() -amusante/F*() -amusée/F*() -amuse-gueule/S*() -amusement/S*() -amuser/a4a+() -amusette/S*() -amuseuse/F*() -amusie/S*() -amygdale/S*() -amygdalectomie/S*() -amygdalite/S*() -amylacée/F*() -amylase/S*() -amyle/S*() -amylène/S*() -amylique/S*() -amylobacter/S*() -amyotrophie/S*() -an/S*() -ana/L'D'Q' -anabaptisme/S*() -anabaptiste/S*() -anabatique/S*() -anabolisante/F*() -anabolisme/S*() -anabolite/S*() -anacardiacée/S*() -anacardier/S*() -anachorète/S*() -anachorétique/S*() -anachorétisme/S*() -anachronique/S*() -anachroniquement/D'Q' -anachronisme/S*() -anacoluthe/S*() -anaconda/S*() -anacréontique/S*() -anacrouse/S*() -anaérobie/S*() -anaérobiose/S*() -anaglyphe/S*() -anaglyptique/S*() -anagnoste/S*() -anagogie/S*() -anagogique/S*() -anagrammatique/S*() -anagrammatisme/S*() -anagramme/S*() -anale/W*() -analecta/L'D' -analepse/S*() -analeptique/S*() -analgésie/S*() -analgésier/a2a+() -analgésique/S*() -analité/S*() -anallergique/S*() -analogie/S*() -analogique/S*() -analogiquement/D'Q' -analogon/S*() -analogue/S*() -analphabète/S*() -analphabétisme/S*() -analycité/S*() -analysable/S*() -analysante/F*() -analyse/S*() -analysée/F*() -analyser/a4a+() -analyseur/S*() -analyste/S*() -analyticité/S*() -analytique/S*() -analytiquement/D'Q' -anamnèse/S*() -anamorphe/S*() -anamorphique/S*() -anamorphose/S*() -anamorphosée/F*() -anamorphoseur/S*() -anamostoser/a4a+() -ananas/L'D'Q' -anapeste/S*() -anaphase/S*() -anaphore/S*() -anaphorèse/S*() -anaphorique/S*() -anaphrodisiaque/S*() -anaphrodisie/S*() -anaphylactique/S*() -anaphylaxie/S*() -anaplastie/S*() -anar/S*() -anarchie/S*() -anarchique/S*() -anarchiquement/D'Q' -anarchisante/F*() -anarchisme/S*() -anarchiste/S*() -anarcho-syndicalisme/S*() -anarcho-syndicaliste/S*() -anarthrie/S*() -anasarque/S*() -anastigmat/S*() -anastomose/S*() -anastomosée/F*() -anastomoser/a3a+() -anastrophe/S*() -anathématiser/a2a+() -anathème/S*() -anatidé/S*() -anatife/S*() -anatocisme/S*() -anatolienne/F*() -anatomie/S*() -anatomique/S*() -anatomiquement/D'Q' -anatomiser/a2a+() -anatomiste/S*() -anatomopathologie/S*() -anatopisme/S*() -anavenin/S*() -ancestrale/W*() -ancêtre/S*() -anche/S*() -anchois/L'D'Q' -ancienne/F*() -anciennement/D'Q' -ancienneté/S*() -ancillaire/S*() -ancolie/S*() -ancrage/S*() -ancre/S*() -ancrée/F*() -ancrer/a4a+() -andain/S*() -andalou/S*() -andalouse/S*() -andalousite/S*() -andante/S*() -andantino/S*() -andésine/S*() -andésite/S*() -andine/F*() -andorrane/F*() -andouille/S*() -andouiller/S*() -andouillette/S*() -andrène/S*() -andrinople/S*() -androcée/S*() -androcéphale/S*() -androgène/S*() -androgenèse/S*() -androgénie/S*() -androgyne/S*() -androïde/S*() -androlâtre/S*() -androlâtrie/S*() -andrologie/S*() -andrologique/S*() -andrologue/S*() -andropause/S*() -androstérone/S*() -âne/S*() -anéantie/F*() -anéantir/f4f+() -anéantissement/S*() -anecdote/S*() -anecdotière/F*() -anecdotique/S*() -anecdotiquement/D'Q' -anémiée/F*() -anémier/a2a+() -anémique/S*() -anémographe/S*() -anémomètre/S*() -anémone/S*() -anémophile/S*() -ânerie/S*() -anéroïde/S*() -ânesse/F*() -anesthésiante/F*() -anesthésie/S*() -anesthésiée/F*() -anesthésier/a4a+() -anesthésiologie/S*() -anesthésiologiste/S*() -anesthésique/S*() -anesthésiste/S*() -aneth/S*() -anévrismale/W*() -anévrisme/S*() -anfractuosité/S*() -angarie/S*() -ange/S*() -angéite/S*() -angélique/S*() -angéliquement/D'Q' -angélisme/S*() -angelot/S*() -angélus/L'D'Q' -angemme/S*() -angenne/S*() -angevine/F*() -angiectasie/S*() -angine/S*() -angineuse/W*() -angiocardiographie/S*() -angiocholite/S*() -angiogenèse/S*() -angiographie/S*() -angiologie/S*() -angiologue/S*() -angiome/S*() -angiosperme/S*() -angiotensine/S*() -angiotensinogène/S*() -anglaise/F*() -anglaisée/F*() -anglaiser/a2a+() -angle/S*() -angledozer/S*() -anglet/S*() -anglicane/F*() -anglicanisme/S*() -anglicisation/S*() -anglicisée/F*() -angliciser/a4a+() -anglicisme/S*() -angliciste/S*() -anglo-américaine/F*() -anglo-arabe/S*() -anglomane/S*() -anglomanie/S*() -anglo-normande/F*() -anglophile/S*() -anglophilie/S*() -anglophobe/S*() -anglophobie/S*() -anglophone/S*() -anglo-saxonne/F*() -angoissante/F*() -angoisse/S*() -angoissée/F*() -angoisser/a4a+() -angolaise/F*() -angon/S*() -angor/S*() -angora/S*() -angström/S*() -anguiforme/S*() -anguille/S*() -anguillère/S*() -anguillule/S*() -angulaire/S*() -anguleuse/W*() -angusticlave/S*() -angustura/S*() -angusture/S*() -anharmonique/S*() -anhélation/S*() -anhéler/c1() -anhidrose/S*() -anhydre/S*() -anhydride/S*() -anhydrite/S*() -anhypothétique/S*() -anicroche/S*() -ânière/F*() -aniline/S*() -anilisme/S*() -animadversion/S*() -animal/X*() -animalcule/S*() -animale/W*() -animalerie/S*() -animalesque/S*() -animalière/F*() -animalisation/S*() -animalisée/F*() -animaliser/a2a+() -animalité/S*() -animation/S*() -animatrice/F*() -animée/F*() -animer/a4a+() -animisme/S*() -animiste/S*() -animosité/S*() -anion/S*() -anionique/S*() -anis/L'D'Q' -anisé/S*() -anisée/F*() -anisée/S*() -aniser/a2a+() -anisette/S*() -anisogamie/S*() -anisole/S*() -anisotrope/S*() -anisotropie/S*() -ankylosaure/S*() -ankylosée/F*() -ankyloser/a4a+() -ankylostome/S*() -annale/W*() -annales/D'Q' -annaliste/S*() -annalité/S*() -annamite/S*() -anneau/X*() -année/S*() -année-lumière/L'D'Q' -années-lumière/D'Q' -annelée/F*() -anneler/d2a+() -annelet/S*() -annélide/S*() -annexe/S*() -annexée/F*() -annexer/a4a+() -annexion/S*() -annexionnisme/S*() -annexionniste/S*() -annihilante/F*() -annihilation/S*() -annihilée/F*() -annihiler/a4a+() -anniversaire/S*() -annonce/S*() -annoncée/F*() -annoncer/a4a+() -annonceure/S*() -annonceuse/F*() -annonciation/S*() -annonciatrice/F*() -annoncière/F*() -annone/S*() -annotation/S*() -annotatrice/F*() -annotée/F*() -annoter/a2a+() -annuaire/S*() -annualisée/F*() -annualiser/a2a+() -annualité/S*() -annuelle/F*() -annuellement/D'Q' -annuitaire/S*() -annuité/S*() -annulable/S*() -annulaire/S*() -annulation/S*() -annulatrice/F*() -annulée/F*() -annuler/a4a+() -anoblie/F*() -anoblir/f4f+() -anoblissement/S*() -anode/S*() -anodine/F*() -anodisation/S*() -anodisée/F*() -anodiser/a2a+() -anodiseuse/F*() -anodonte/S*() -anomale/W*() -anomalie/S*() -anomaloscope/S*() -anomie/S*() -ânon/S*() -anonacée/S*() -anone/S*() -ânonnement/S*() -ânonner/a2a+() -anonymat/S*() -anonyme/S*() -anonymement/D'Q' -anonymiser/a4a+() -anophèle/S*() -anorak/S*() -anordir/f1() -anorexie/S*() -anorexigène/S*() -anorexique/S*() -anormale/W*() -anormalement/D'Q' -anormalité/S*() -anosmie/S*() -anoure/S*() -anovulation/S*() -anovulatoire/S*() -anoxémie/S*() -anse/S*() -ansée/F*() -ansériforme/S*() -ansérine/F*() -ansérine/S*() -antagonique/S*() -antagonisme/S*() -antagoniste/S*() -antalgique/S*() -antamanide/S*() -antan/D' -antarctique/S*() -ante/S*() -antécédence/S*() -antécédente/F*() -antéchrist/S*() -antédiluvienne/F*() -antéfixe/S*() -antenaise/F*() -anténatale/F*() -antenne/S*() -antenniste/S*() -antépénultième/S*() -antéposer/a2a+() -antéposition/S*() -antérieure/F*() -antérieurement/D'Q' -antériorité/S*() -antérograde/S*() -anthémis/L'D'Q' -anthère/S*() -anthérozoïde/S*() -anthologie/S*() -anthonome/S*() -anthozoaire/S*() -anthracène/S*() -anthracite/S*() -anthracnose/S*() -anthracose/S*() -anthraquinone/S*() -anthrax/L'D'Q' -anthrène/S*() -anthropique/S*() -anthropisation/S*() -anthropocentrique/S*() -anthropocentrisme/S*() -anthropogenèse/S*() -anthropoïde/S*() -anthropologie/S*() -anthropologique/S*() -anthropologiquement/D'Q' -anthropologiste/S*() -anthropologue/S*() -anthropométrie/S*() -anthropométrique/S*() -anthropomorphe/S*() -anthropomorphique/S*() -anthropomorphiser/a4a+() -anthropomorphisme/S*() -anthroponyme/S*() -anthroponymie/S*() -anthroponymique/S*() -anthropophage/S*() -anthropophagie/S*() -antiabolitionniste/S*() -antiacarien/S*() -antiacarienne/F*() -antiacnéique/S*() -antiaérienne/F*() -anti-âge/L'D'Q' -antialcoolique/S*() -antialcoolisme/S*() -antialiasing/S*() -antiallergique/S*() -antiamarile/F*() -antiaméricaine/F*() -antiaméricanisme/S*() -antiatome/S*() -antiatomique/S*() -antiautomorphisme/S*() -antibactérienne/F*() -antibélier/S*() -antibiogramme/S*() -antibiorésistance/S*() -antibiotique/S*() -antibois/L'D'Q' -antibrouillage/S*() -antibrouillard/S*() -antibrouillée/F*() -antibruit/L'D'Q' -anticancéreuse/W*() -anticapitaliste/S*() -anticasseur/S*() -anticathode/S*() -antichambre/S*() -antichar/S*() -anticholérique/S*() -anticholinergique/S*() -antichômage/L'D'Q' -antichrèse/S*() -antichrétienne/F*() -antichrist/S*() -anticipation/S*() -anticipée/F*() -anticiper/a2a+() -anticléricale/W*() -anticléricalisme/S*() -anticlinale/W*() -anticoagulante/F*() -anticolonialisme/S*() -anticolonialiste/S*() -anticomanie/S*() -anticommunisme/S*() -anticommuniste/S*() -anticommutative/F*() -anticommutée/F*() -anticommuter/a2a+() -anticonceptionnelle/F*() -anticoncurrentielle/F*() -anticonformisme/S*() -anticonformiste/S*() -anticonjoncturelle/F*() -anticonstitutionnelle/F*() -anticonstitutionnellement/D'Q' -anticorps/L'D'Q' -anticorpuscule/S*() -anticrénelage/S*() -anticryptogamique/S*() -anticyclique/S*() -anticyclonale/W*() -anticyclone/S*() -anticyclonique/S*() -antidatée/F*() -antidater/a2a+() -antidéflagrante/F*() -antidémarrage/L'D'Q' -antidémarrage/S*() -antidémocratique/S*() -antidéplacement/S*() -antidépresseur/S*() -antidérapante/F*() -antidérivation/S*() -antidétonante/F*() -antidiabétique/S*() -antidiagonale/W*() -antidiphtérique/S*() -antidiurétique/S*() -antidopage/L'D'Q' -antidoping/L'D'Q' -antidote/S*() -antidrogue/L'D'Q' -antidumping/L'D'Q' -antieffraction/L'D'Q' -antiémétique/S*() -antiémeute/L'D'Q' -antienne/S*() -antiépileptique/S*() -antiesclavagiste/S*() -antiétatique/S*() -antifascisme/S*() -antifasciste/S*() -antifiscale/W*() -antifongique/S*() -antifriction/S*() -anti-g/L'D'Q' -antigang/L'D'Q' -antigel/S*() -antigène/S*() -antigivrante/F*() -antiglisse/L'D'Q' -antigouvernementale/W*() -antigravifique/S*() -antigravitation/S*() -antigravitationnelle/F*() -antihalo/L'D'Q' -antihalo/S*() -antihausse/L'D'Q' -antihermitienne/F*() -antihéros/L'D'Q' -antihistaminique/S*() -antiholomorphe/S*() -antihoraire/S*() -antihygiénique/S*() -anti-impérialisme/S*() -anti-impérialiste/S*() -anti-inflammatoire/S*() -anti-inflationniste/S*() -antijeu/X*() -antilinéaire/S*() -antilithique/S*() -antillaise/F*() -antilogarithme/S*() -antilope/S*() -antimatière/S*() -antimilitarisme/S*() -antimilitariste/S*() -antimissile/S*() -antimite/S*() -antimitotique/S*() -antimoine/S*() -antimonarchique/S*() -antimonarchiste/S*() -antimondialisation/S*() -antimondialiste/S*() -antimoniure/S*() -antimycosique/S*() -antinationale/W*() -antinaturelle/F*() -antinazie/F*() -antinazisme/S*() -antinévralgique/S*() -antinomie/S*() -antinomique/S*() -antinucléaire/S*() -antioncogène/S*() -antioxydant/S*() -antioxydante/F*() -antipaludéenne/F*() -antipaludique/S*() -antipanique/L'D'Q' -antipape/S*() -antiparallèle/S*() -antiparasite/S*() -antiparlementaire/S*() -antiparlementarisme/S*() -antiparticule/S*() -antipathie/S*() -antipathique/S*() -antipatriote/S*() -antipatriotique/S*() -antipatriotisme/S*() -antipéristaltique/S*() -antipersonnel/L'D'Q' -antiphilosophique/S*() -antiphlogistique/S*() -antiphonaire/S*() -antiphrase/S*() -antipodale/W*() -antipode/S*() -antipodiste/S*() -antipoison/S*() -antipoliomyélitique/S*() -antipollupostage/S*() -antipollution/L'D'Q' -antiprotéase/S*() -antipyrétique/S*() -antipyrine/S*() -antiquaille/S*() -antiquaire/S*() -antiquark/S*() -antique/S*() -antiquée/F*() -antiquement/D'Q' -antiquer/a2a+() -antiquité/S*() -antirabique/S*() -antirachitique/S*() -antiracisme/S*() -antiraciste/S*() -antiradar/S*() -antiradiation/S*() -antireflet/S*() -antiréglementaire/S*() -antirejet/L'D'Q' -antireligieuse/W*() -antirétroviral/X*() -antirétrovirale/W*() -antirévolutionnaire/S*() -antirides/L'D'Q' -antirouille/S*() -antisatellite/S*() -antiscientifique/S*() -antiscorbutique/S*() -antisèche/S*() -antiségrégationniste/S*() -antisémite/S*() -antisémitisme/S*() -antiséparatif/S*() -antisepsie/S*() -antiseptique/S*() -antisérotoninergique/S*() -antislash/S*() -antisociale/W*() -anti-sous-marine/F*() -antispasmodique/S*() -antisportive/F*() -antistatique/S*() -antistress/L'D'Q' -antistrophe/S*() -antisymétrique/S*() -antisyphilitique/S*() -antitache/L'D'Q' -antiterrorisme/S*() -antiterroriste/S*() -antitétanique/S*() -antithermique/S*() -antithèse/S*() -antithétique/S*() -antitoxine/S*() -antitoxique/S*() -antitrust/L'D'Q' -antituberculeuse/W*() -antitussive/F*() -antivariolique/S*() -antivénérienne/F*() -antivenimeuse/W*() -antiviral/X*() -antivirale/W*() -antivirus/L'D'Q' -antivol/S*() -antonyme/S*() -antonymie/S*() -antre/S*() -antrustion/S*() -anurie/S*() -anus/L'D'Q' -anversoise/F*() -anxiété/S*() -anxieuse/W*() -anxieusement/D'Q' -anxiogène/S*() -anxiolytique/S*() -aoriste/S*() -aorte/S*() -aortique/S*() -aortite/S*() -août/S*() -aoûtage/S*() -aoûtat/S*() -aoûtée/F*() -aoûtement/S*() -aoûter/a2a+() -aoûteron/S*() -aoûtienne/F*() -apache/S*() -apagogie/S*() -apaisante/F*() -apaisée/F*() -apaisement/S*() -apaiser/a4a+() -apanage/S*() -apanagée/F*() -apanager/a2a+() -apanagiste/S*() -aparté/S*() -apartheid/S*() -apatamer/a1() -apathie/S*() -apathique/S*() -apatite/S*() -apatosaure/S*() -apatride/S*() -apepsie/S*() -aperception/S*() -apercevoir/pK() -aperçu/S*() -aperçue/F*() -apériodique/S*() -apériteur/S*() -apéritif/S*() -apéritive/F*() -apéro/S*() -aperture/S*() -apesanteur/S*() -apétale/S*() -à-peu-près/L'D' -apeurée/F*() -apeurer/a2a+() -apex/L'D'Q' -aphasie/S*() -aphasique/S*() -aphélie/S*() -aphérèse/S*() -aphodius/L'D'Q' -aphone/S*() -aphonie/S*() -aphorisme/S*() -aphotique/S*() -aphrodisiaque/S*() -aphrodisie/S*() -aphrodite/S*() -aphte/S*() -aphteuse/W*() -aphylle/S*() -api/S*() -à-pic/S*() -apicale/W*() -apicultrice/F*() -apiculture/S*() -apidé/S*() -apiéceuse/F*() -apiol/S*() -apion/S*() -apiquage/S*() -apiquée/F*() -apiquer/a2a+() -apitoiement/S*() -apitoyée/F*() -apitoyer/a4a+() -apivore/S*() -aplanétique/S*() -aplanie/F*() -aplanir/f4f+() -aplanissement/S*() -aplasie/S*() -aplat/S*() -aplatie/F*() -aplatir/f4f+() -aplatissage/S*() -aplatissement/S*() -aplatisseur/S*() -aplatissoir/S*() -aplatissoire/S*() -aplomb/S*() -aplomber/a4a+() -aplustre/S*() -apnée/S*() -apnéiste/S*() -apoastre/S*() -apocalypse/S*() -apocalyptique/S*() -apocope/S*() -apocrisiaire/S*() -apocryphe/S*() -apocynacée/S*() -apode/S*() -apodictique/S*() -apodictiquement/D'Q' -apoenzyme/S*() -apogamie/S*() -apogée/S*() -apographe/S*() -apolipoprotéine/S*() -apolitique/S*() -apolitisme/S*() -apollinienne/F*() -apollon/S*() -apologétique/S*() -apologie/S*() -apologiste/S*() -apologue/S*() -apomixie/S*() -apomorphe/S*() -apomorphie/S*() -apomorphine/S*() -aponévrose/S*() -aponévrotique/S*() -apophonie/S*() -apophtegme/S*() -apophysaire/S*() -apophyse/S*() -apoplectique/S*() -apoplexie/S*() -apoptose/S*() -aporétique/S*() -aporie/S*() -aposiopèse/S*() -apostasie/S*() -apostasier/a1() -apostate/F*() -apostée/F*() -aposter/a2a+() -apostille/S*() -apostillée/F*() -apostiller/a2a+() -apostolat/S*() -apostolique/S*() -apostoliquement/D'Q' -apostrophe/S*() -apostrophée/F*() -apostropher/a4a+() -apothème/S*() -apothéose/S*() -apothicaire/S*() -apôtre/S*() -appairage/S*() -appairée/F*() -appairer/a2a+() -appalachienne/F*() -apparaître/wQ() -apparat/S*() -apparatchik/S*() -apparaux/D'Q' -appareil/S*() -appareillade/S*() -appareillage/S*() -appareillée/F*() -appareillement/S*() -appareiller/a4a+() -appareilleuse/F*() -apparemment/D'Q' -apparence/S*() -apparente/F*() -apparentée/F*() -apparentement/S*() -apparenter/a4a+() -appariée/F*() -appariement/S*() -apparier/a4a+() -apparition/S*() -apparitrice/F*() -apparoir/pR() -appartement/S*() -appartenance/S*() -appartenir/iB() -apparue/F*() -appas/D'Q' -appassionato/D'Q' -appât/S*() -appâter/a2a+() -appauvrie/F*() -appauvrir/f4f+() -appauvrissante/F*() -appauvrissement/S*() -appeau/X*() -appel/S*() -appelable/S*() -appelante/F*() -appelée/F*() -appeler/d4a+() -appellation/S*() -appellative/F*() -appendice/S*() -appendicectomie/S*() -appendicite/S*() -appendiculaire/S*() -appendre/tA() -appentis/L'D'Q' -appertisation/S*() -appertiser/a2a+() -appesantie/F*() -appesantir/f4f+() -appesantissement/S*() -appétence/S*() -appéter/c2a+() -appétissante/F*() -appétit/S*() -appétitive/F*() -applaudie/F*() -applaudimètre/S*() -applaudir/f4f+() -applaudissement/S*() -applet/S*() -applicabilité/S*() -applicable/S*() -applicage/S*() -application/S*() -applicative/F*() -applicatrice/F*() -applique/S*() -appliquée/F*() -appliquer/a4a+() -appliquette/S*() -appoggiature/S*() -appogiature/S*() -appoint/S*() -appointage/S*() -appointée/F*() -appointements/D'Q' -appointer/a4a+() -appointir/f2f+() -apponse/S*() -appontage/S*() -appontée/F*() -appontement/S*() -apponter/a1() -apponteur/S*() -apport/S*() -apportée/F*() -apporter/a2a+() -apporteur/S*() -apposée/F*() -apposer/a2a+() -apposition/S*() -appréciabilité/S*() -appréciable/S*() -appréciablement/D'Q' -appréciation/S*() -appréciative/F*() -appréciatrice/F*() -appréciée/F*() -apprécier/a4a+() -appréhendée/F*() -appréhender/a2a+() -appréhension/S*() -appréhensive/F*() -apprenante/F*() -apprendre/tF() -apprentie/F*() -apprentissage/S*() -apprêt/S*() -apprêtage/S*() -apprêtée/F*() -apprêter/a4a+() -apprêteuse/F*() -apprise/F*() -apprivoisable/S*() -apprivoisée/F*() -apprivoisement/S*() -apprivoiser/a4a+() -apprivoiseuse/F*() -approbation/S*() -approbative/F*() -approbativement/D'Q' -approbativité/S*() -approbatrice/F*() -approchable/S*() -approchante/F*() -approche/S*() -approchée/F*() -approcher/a4a+() -approfondie/F*() -approfondir/f4f+() -approfondissement/S*() -appropriable/S*() -appropriation/S*() -appropriée/F*() -approprier/a4a+() -approuvable/S*() -approuvée/F*() -approuver/a4a+() -approvisionnée/F*() -approvisionnement/S*() -approvisionner/a4a+() -approvisionneuse/F*() -approximation/S*() -approximative/F*() -approximativement/D'Q' -approximer/a2a+() -appui/S*() -appuie-bras/L'D'Q' -appuie-livres/L'D'Q' -appuie-main/L'D'Q' -appuie-nuque/L'D'Q' -appuie-tête/L'D'Q' -appuyée/F*() -appuyer/a4a+() -apragmatisme/S*() -apraxie/S*() -apraxique/S*() -âpre/S*() -âprement -après/L'D'Q'Qj -après-demain/D'Q' -après-dîner/S*() -après-guerre/S*() -après-midi/L'D'Q' -après-rasage/L'D'Q' -après-rasage/S*() -après-ski/S*() -après-vente/L'D'Q' -âpreté/S*() -apriorique/S*() -apriorisme/S*() -aprioriste/S*() -à-propos/L'D'Q' -apside/S*() -apte/S*() -aptère/S*() -aptéryx/L'D'Q' -aptienne/F*() -aptitude/S*() -apurement/S*() -apurer/a2a+() -aquacole/S*() -aquacultrice/F*() -aquaculture/S*() -aquafortiste/S*() -aquagym/S*() -aquaplane/S*() -aquarelle/S*() -aquarelliste/S*() -aquariophile/S*() -aquariophilie/S*() -aquarium/S*() -aquatinte/S*() -aquatintiste/S*() -aquatique/S*() -aquavit/S*() -aqueduc/S*() -aqueuse/W*() -aquicole/S*() -aquicultrice/F*() -aquiculture/S*() -aquifère/S*() -aquiger/a1() -aquilin/S*() -aquilon/S*() -aquitaine/F*() -ara/S*() -arabe/S*() -arabesque/S*() -arabica/S*() -arabique/S*() -arabisante/F*() -arabisation/S*() -arabisée/F*() -arabiser/a4a+() -arabisme/S*() -arable/S*() -arabo-andalou/S*() -arabo-andalouse/S*() -arabo-islamique/S*() -arabo-musulmane/F*() -arabophone/S*() -aracée/S*() -arachide/S*() -arachnéenne/F*() -arachnide/S*() -arachnoïde/S*() -arachnophobe/S*() -arachnophobie/S*() -aragonaise/F*() -aragonite/S*() -araignée/S*() -araine/S*() -araire/S*() -araldite/S*() -araméenne/F*() -aramon/S*() -aranais/L'D'Q' -aranéide/S*() -arantèle/S*() -arasée/F*() -arasement/S*() -araser/a2a+() -aratoire/S*() -araucaria/S*() -arbalète/S*() -arbalétrière/F*() -arbitrage/S*() -arbitragiste/S*() -arbitraire/S*() -arbitrairement/D'Q' -arbitrale/W*() -arbitralement/D'Q' -arbitre/S*() -arbitrée/F*() -arbitrer/a2a+() -arborée/F*() -arborer/a2a+() -arborescence/S*() -arborescente/F*() -arboretum/S*() -arboricole/S*() -arboricultrice/F*() -arboriculture/S*() -arborification/S*() -arborifiée/F*() -arborisation/S*() -arborisée/F*() -arboriser/a1() -arbouse/S*() -arbousier/S*() -arbre/S*() -arbrisseau/X*() -arbuste/S*() -arbustive/F*() -arc/S*() -arcade/S*() -arcane/S*() -arcanson/S*() -arcasse/S*() -arcature/S*() -arc-boutant/L'D'Q' -arc-boutée/F*() -arc-bouter/a4a+() -arc-doubleau/L'D'Q' -arceau/X*() -arc-en-ciel/L'D'Q' -archaïque/S*() -archaïsante/F*() -archaïser/a1() -archaïsme/S*() -archal/L'D' -archange/S*() -archangélique/S*() -arche/S*() -archée/S*() -archéenne/F*() -archégone/S*() -archelle/S*() -archéobactérie/S*() -archéologie/S*() -archéologique/S*() -archéologiquement/D'Q' -archéologue/S*() -archéoptéryx/L'D'Q' -archère/F*() -archerie/S*() -archet/S*() -archetière/F*() -archétype/S*() -archevêché/S*() -archevêque/S*() -archiatre/S*() -archiconfrérie/S*() -archicube/S*() -archidiacre/S*() -archidiocésaine/F*() -archiduc/S*() -archiduché/S*() -archiduchesse/S*() -archiépiscopale/W*() -archiépiscopat/S*() -archimandrite/S*() -archipel/S*() -archiphonème/S*() -archipresbytérale/W*() -archiprêtresse/F*() -archiptère/S*() -architecte/S*() -architectonie/S*() -architectonique/S*() -architecturale/W*() -architecturalement/D'Q' -architecture/S*() -architecturée/F*() -architecturer/a2a+() -architrave/S*() -archivage/S*() -archive/S*() -archivée/F*() -archiver/a2a+() -archiviste/S*() -archivistique/S*() -archivolte/S*() -archonte/S*() -arçon/S*() -arçonnée/F*() -arçonner/a2a+() -arcs-boutants/D'Q' -arcs-doubleaux/D'Q' -arcs-en-ciel/D'Q' -arctique/S*() -arcure/S*() -ardéchoise/S*() -ardemment/D'Q' -ardennaise/F*() -ardente/F*() -arder/a1() -ardeur/S*() -ardillon/S*() -ardoise/S*() -ardoisée/F*() -ardoiser/a2a+() -ardoisière/F*() -ardre -ardue/F*() -are/S*() -aréage/S*() -arec/S*() -arécacée/S*() -aréflexie/S*() -aréique/S*() -areligieuse/W*() -aréna/S*() -arénacée/F*() -arène/S*() -arénicole/S*() -arénite/S*() -aréolaire/S*() -aréole/S*() -aréologie/S*() -aréomètre/S*() -aréométrie/S*() -aréopage/S*() -aréostyle/S*() -aréquier/S*() -arête/S*() -arêtière/F*() -argan/S*() -arganier/S*() -argas/L'D'Q' -argent/S*() -argentan/S*() -argentée/F*() -argenter/a4a+() -argenterie/S*() -argenteuse/F*() -argentière/F*() -argentifère/S*() -argentine/F*() -argentique/S*() -argentite/S*() -argenture/S*() -argilacée/F*() -argile/S*() -argileuse/W*() -arginine/S*() -argiope/S*() -argon/S*() -argonaute/S*() -argot/S*() -argotique/S*() -argotiser/a1() -argotisme/S*() -argotiste/S*() -argougner/a2a+() -argousier/S*() -argousin/S*() -arguer/a4a+() -argument/S*() -argumentaire/S*() -argumentateur/S*() -argumentation/S*() -argumentative/F*() -argumentée/F*() -argumenter/a1() -argus/L'D' -argutie/S*() -argyrisme/S*() -argyronète/S*() -argyrose/S*() -aria/S*() -arianisme/S*() -aride/S*() -aridité/S*() -arienne/F*() -ariette/S*() -arille/S*() -arion/S*() -arioso/S*() -ariser/a2a+() -aristocrate/S*() -aristocratie/S*() -aristocratique/S*() -aristocratiquement/D'Q' -aristocratisme/S*() -aristoloche/S*() -aristotélicienne/F*() -aristotélique/S*() -aristotélisme/S*() -arithméticienne/F*() -arithmétique/S*() -arithmétiquement/D'Q' -arithmétisation/S*() -arlequin/S*() -arlequinade/S*() -arlésienne/F*() -armada/S*() -armagnac/S*() -armailli/S*() -armatrice/F*() -armature/S*() -arme/S*() -armée/F*() -armée/S*() -armeline/S*() -armement/S*() -arménienne/F*() -armer/a4a+() -armet/S*() -armeuse/S*() -armillaire/S*() -armilles/D'Q' -arminienne/F*() -armistice/S*() -armoire/S*() -armoiries/D'Q' -armoise/S*() -armon/S*() -armoriale/W*() -armoricaine/F*() -armoriée/F*() -armorier/a2a+() -armoriste/S*() -armure/S*() -armurée/F*() -armurerie/S*() -armurière/F*() -arnachée/F*() -arnacher/a2a+() -arnaque/S*() -arnaquée/F*() -arnaquer/a2a+() -arnaqueuse/F*() -arnica/S*() -arobase/F*() -arolle/S*() -aromate/S*() -aromathérapie/S*() -aromaticienne/F*() -aromatique/S*() -aromatisation/S*() -aromatisée/F*() -aromatiser/a2a+() -arôme/S*() -aronde/S*() -arpège/S*() -arpégée/F*() -arpéger/c2a+() -arpent/S*() -arpentage/S*() -arpentée/F*() -arpenter/a2a+() -arpenteuse/F*() -arpète/S*() -arpette/S*() -arpigner/a2a+() -arpion/S*() -arquebusade/S*() -arquebuse/S*() -arquebuser/a2a+() -arquebusier/S*() -arquée/F*() -arquepincer/a2a+() -arquer/a4a+() -arrachage/S*() -arrachée/F*() -arrachement/S*() -arracher/a4a+() -arrache-racine/L'D'Q' -arracheuse/F*() -arrachis/L'D'Q' -arraisonnée/F*() -arraisonnement/S*() -arraisonner/a2a+() -arrangeable/S*() -arrangeante/F*() -arrangée/F*() -arrangement/S*() -arranger/a4a+() -arrangeuse/F*() -arrenter/a2a+() -arrérager/a3a+() -arrérages/D' -arrestation/S*() -arrêt/S*() -arrêté/S*() -arrête-bœuf/L'D'Q' -arrêtée/F*() -arrêter/a4a+() -arrêtiste/S*() -arrêtoir/S*() -arrhes/D'Q' -arriération/S*() -arrière/S*() -arrière-ban/S*() -arrière-bec/S*() -arrière-bouche/S*() -arrière-boutique/S*() -arrière-cerveau/X*() -arrière-chœur/S*() -arrière-corps/L'D' -arrière-cour/S*() -arrière-cuisine/S*() -arriérée/F*() -arrière-faix/L'D'Q' -arrière-fond/S*() -arrière-garde/S*() -arrière-gorge/S*() -arrière-goût/S*() -arrière-grand-mère/L'D'Q' -arrière-grand-oncle/S*() -arrière-grand-père/L'D'Q' -arrière-grands-mères/D'Q' -arrière-grands-oncles/D'Q' -arrière-grands-parents/D'Q' -arrière-grands-pères/D'Q' -arrière-grand-tante/S*() -arrière-main/S*() -arrière-pays/L'D'Q' -arrière-pensée/S*() -arrière-petite-fille/L'D'Q' -arrière-petite-nièce/L'D'Q' -arrière-petites-filles/D'Q' -arrière-petites-nièces/D'Q' -arrière-petit-fils/L'D'Q' -arrière-petit-neveu/L'D'Q' -arrière-petits-enfants/D'Q' -arrière-petits-fils/D'Q' -arrière-petits-neveux/D'Q' -arrière-plan/S*() -arriérer/c2a+() -arrière-saison/S*() -arrière-train/S*() -arrière-vassal/X*() -arrimage/S*() -arrimée/F*() -arrimer/a2a+() -arrimeuse/F*() -arriser/a2a+() -arrivage/S*() -arrivante/F*() -arrivée/F*() -arrivée/S*() -arriver/a2() -arrivisme/S*() -arriviste/S*() -arrobe/S*() -arroche/S*() -arrogamment/D'Q' -arrogance/S*() -arrogante/F*() -arroger/a3a+() -arrondi/S*() -arrondie/F*() -arrondir/f4f+() -arrondissage/S*() -arrondissement/S*() -arrondisseuse/F*() -arrosable/S*() -arrosage/S*() -arrosée/F*() -arrosement/S*() -arroser/a4a+() -arroseuse/F*() -arrosoir/S*() -arroyo/S*() -ars/L'D' -arsenal/X*() -arséniate/S*() -arsenic/S*() -arsenicale/W*() -arsénieuse/W*() -arsénite/S*() -arséniure/S*() -arsine/F*() -arsouille/S*() -arsouiller/a3a+() -art/S*() -artefact/S*() -artel/S*() -artémia/S*() -artère/S*() -artériectomie/S*() -artérielle/F*() -artériographie/S*() -artériole/S*() -artériologie/S*() -artérioscléreuse/W*() -artériosclérose/S*() -artériotomie/S*() -artérite/S*() -artéritique/S*() -artésienne/F*() -arthralgie/S*() -arthrite/S*() -arthritique/S*() -arthritisme/S*() -arthrodie/S*() -arthrographie/S*() -arthropathie/S*() -arthropode/S*() -arthroscopie/S*() -arthroscopique/S*() -arthrose/S*() -arthurienne/F*() -artichaut/S*() -artichautière/S*() -article/S*() -articulaire/S*() -articulation/S*() -articulatoire/S*() -articulée/F*() -articuler/a4a+() -articulet/S*() -artifice/S*() -artificielle/F*() -artificiellement/D'Q' -artificière/F*() -artificieuse/W*() -artificieusement/D'Q' -artiller/a1() -artillerie/S*() -artilleur/S*() -artimon/S*() -artisanale/W*() -artisanalement/D'Q' -artisanat/S*() -artisane/F*() -artison/S*() -artiste/S*() -artistement/D'Q' -artistique/S*() -artistiquement/D'Q' -artocarpe/S*() -arum/S*() -arvale/S*() -arvine/S*() -aryenne/F*() -aryle/S*() -aryténoïde/S*() -arythmie/S*() -as/L'D'Q' -as/||-- -asbeste/S*() -asbestose/S*() -ascaride/S*() -ascaridiase/S*() -ascaridiose/S*() -ascendance/S*() -ascendante/F*() -ascenseur/S*() -ascension/S*() -ascensionnelle/F*() -ascensionner/a2a+() -ascensionniste/S*() -ascensoriste/S*() -ascèse/S*() -ascète/S*() -ascétique/S*() -ascétisme/S*() -ascidie/S*() -ascite/S*() -ascitique/S*() -asclépiadacée/S*() -asclépiade/S*() -ascomycète/S*() -ascorbique/S*() -asepsie/S*() -aseptique/S*() -aseptisation/S*() -aseptisée/F*() -aseptiser/a2a+() -asexualité/S*() -asexuée/F*() -asexuelle/F*() -ashkénaze/S*() -ashram/S*() -asialie/S*() -asiate/S*() -asiatique/S*() -asilaire/S*() -asile/S*() -asinienne/F*() -asociabilité/S*() -asociale/W*() -asparagine/S*() -asparagus/L'D'Q' -aspartame/S*() -aspartate/S*() -aspartique/S*() -aspe/S*() -aspect/S*() -aspectée/F*() -aspecter/a2a+() -asperge/S*() -aspergée/F*() -asperger/a4a+() -aspergille/S*() -aspergillose/S*() -aspérité/S*() -aspermatisme/S*() -asperme/S*() -aspersion/S*() -aspersoir/S*() -aspérule/S*() -asphaltage/S*() -asphalte/S*() -asphaltée/F*() -asphalter/a2a+() -asphalteuse/F*() -asphaltique/S*() -asphérique/S*() -asphodèle/S*() -asphyxiante/F*() -asphyxie/S*() -asphyxiée/F*() -asphyxier/a4a+() -aspic/S*() -aspidistra/S*() -aspirante/F*() -aspirateur/S*() -aspiration/S*() -aspiratoire/S*() -aspirée/F*() -aspirée/S*() -aspirer/a4a+() -aspirine/S*() -asple/S*() -asque/S*() -assa-fœtida/S*() -assagie/F*() -assagir/f4f+() -assagissement/S*() -assaillante/F*() -assaillie/F*() -assaillir/iT() -assainie/F*() -assainir/f2f+() -assainissement/S*() -assainisseuse/F*() -assaisonnée/F*() -assaisonnement/S*() -assaisonner/a2a+() -assamaise/F*() -assarmenter/a2a+() -assassinat/S*() -assassine/F*() -assassinée/F*() -assassiner/a2a+() -assaut/S*() -assavoir -asse/S*() -asseau/X*() -asséchée/F*() -assèchement/S*() -assécher/c4a+() -assemblage/S*() -assemblée/F*() -assemblée/S*() -assemblement/S*() -assembler/a4a+() -assembleuse/F*() -assénée/F*() -asséner/c2a+() -assentiment/S*() -asseoir/pS() -assermentation/S*() -assermentée/F*() -assermenter/a2a+() -assertion/S*() -asservie/F*() -asservir/f4f+() -asservissante/F*() -asservissement/S*() -asservisseur/S*() -assesseure/F*() -assette/S*() -assez/L'D'Q' -assibilation/S*() -assibiler/a4a+() -assidue/F*() -assiduité/S*() -assidûment/D'Q' -assiégeante/F*() -assiégée/F*() -assiéger/c2a+() -assiette/S*() -assiettée/S*() -assignable/S*() -assignat/S*() -assignation/S*() -assignée/F*() -assigner/a2a+() -assimilable/S*() -assimilation/S*() -assimilationniste/S*() -assimilatrice/F*() -assimilée/F*() -assimiler/a4a+() -assise/F*() -assistanat/S*() -assistance/S*() -assistante/F*() -assistée/F*() -assister/a2a+() -associable/S*() -association/S*() -associationnisme/S*() -associationniste/S*() -associative/F*() -associativité/S*() -associatrice/F*() -associée/F*() -associer/a4a+() -assoiffée/F*() -assoiffer/a2a+() -assolée/F*() -assolement/S*() -assoler/a2a+() -assombrie/F*() -assombrir/f4f+() -assombrissement/S*() -assommante/F*() -assommée/F*() -assommer/a4a+() -assommeur/S*() -assommoir/S*() -assomption/S*() -assonance/S*() -assonancée/F*() -assonante/F*() -assoner/a1() -assortie/F*() -assortiment/S*() -assortir/f4f+() -assortisseuse/F*() -assoupie/F*() -assoupir/f4f+() -assoupissante/F*() -assoupissement/S*() -assouplie/F*() -assouplir/f4f+() -assouplissant/S*() -assouplissement/S*() -assouplisseur/S*() -assourdie/F*() -assourdir/f4f+() -assourdissante/F*() -assourdissement/S*() -assouvie/F*() -assouvir/f4f+() -assouvissement/S*() -assuétude/S*() -assujettie/F*() -assujettir/f4f+() -assujettissante/F*() -assujettissement/S*() -assumée/F*() -assumer/a4a+() -assurable/S*() -assurage/S*() -assurance/S*() -assurance-accidents/L'D' -assurance-chômage/L'D' -assurance-crédit/L'D' -assurance-invalidité/L'D' -assurance-maladie/L'D' -assurances-crédits/D'Q' -assurance-vieillesse/L'D' -assurée/F*() -assurément/D'Q' -assurer/a4a+() -assureuse/F*() -assyrienne/F*() -assyriologie/S*() -assyriologue/S*() -astable/S*() -astacicultrice/F*() -astaciculture/S*() -astasie/S*() -astate/S*() -astatique/S*() -aster/S*() -astéréognosie/S*() -astéride/S*() -astérie/S*() -astérisme/S*() -astérisque/S*() -astéroïde/S*() -asthénie/S*() -asthénique/S*() -asthénosphère/S*() -asthmatique/S*() -asthme/S*() -asti/S*() -asticot/S*() -asticotage/S*() -asticotée/F*() -asticoter/a2a+() -astigmate/S*() -astigmatisme/S*() -astiquage/S*() -astiquée/F*() -astiquer/a2a+() -astragale/S*() -astrakan/S*() -astrale/W*() -astre/S*() -astreignante/F*() -astreindre/wB() -astreinte/F*() -astreinte/S*() -astringence/S*() -astringente/F*() -astrobiologie/S*() -astroblème/S*() -astrographe/S*() -astrolabe/S*() -astrolâtrie/S*() -astrologie/S*() -astrologique/S*() -astrologue/S*() -astrométrie/S*() -astronaute/S*() -astronautique/S*() -astronef/S*() -astronome/S*() -astronomie/S*() -astronomique/S*() -astronomiquement/D'Q' -astroparticule/S*() -astrophysicienne/F*() -astrophysique/S*() -astroport/S*() -astuce/S*() -astucieuse/W*() -astucieusement/D'Q' -asturienne/F*() -asymétrie/S*() -asymétrique/S*() -asymétriquement/D'Q' -asymptomatique/S*() -asymptote/S*() -asymptotique/S*() -asymptotiquement/D'Q' -asynchrone/S*() -asynchronisme/S*() -asyndète/S*() -asynergie/S*() -asystolie/S*() -atactique/S*() -ataraxie/S*() -ataraxique/S*() -atavique/S*() -atavisme/S*() -ataxie/S*() -ataxique/S*() -atèle/S*() -atelier/S*() -atemporelle/F*() -atermoiement/S*() -atermoyer/a1() -athanor/S*() -athée/S*() -athéisme/S*() -athématique/S*() -athénée/S*() -athénienne/F*() -athéologie/S*() -athermane/S*() -athermique/S*() -athéromateuse/W*() -athérome/S*() -athérosclérose/S*() -athétose/S*() -athlète/S*() -athlétique/S*() -athlétisme/S*() -athymie/S*() -atlante/S*() -atlantique/S*() -atlantisme/S*() -atlas/L'D'Q' -atm/||-- -atmosphère/S*() -atmosphérique/S*() -atoll/S*() -atome/S*() -atome-gramme/L'D'Q' -atomes-grammes/D'Q' -atomicienne/F*() -atomicité/S*() -atomique/S*() -atomisation/S*() -atomisée/F*() -atomiser/a4a+() -atomiseur/S*() -atomisme/S*() -atomiste/S*() -atomistique/S*() -atonal/S*() -atonale/W*() -atonalité/S*() -atone/S*() -atonie/S*() -atonique/S*() -atopie/S*() -atopique/S*() -atour/S*() -atout/S*() -atoxique/S*() -atrabilaire/S*() -atrabile/S*() -atractyligénine/S*() -âtre/S*() -atrière/F*() -atrium/S*() -atroce/S*() -atrocement/D'Q' -atrocité/S*() -atrophie/S*() -atrophiée/F*() -atrophier/a4a+() -atropine/S*() -attablée/F*() -attabler/a4a+() -attachante/F*() -attache/S*() -attaché-case/L'D'Q' -attachée/F*() -attachement/S*() -attacher/a4a+() -attachés-cases/D'Q' -attacheuse/F*() -attagène/S*() -attaquable/S*() -attaquante/F*() -attaque/S*() -attaquée/F*() -attaquer/a4a+() -attardée/F*() -attarder/a3a+() -atteignable/S*() -atteindre/wB() -atteinte/F*() -atteinte/S*() -attelage/S*() -attelée/F*() -atteler/d4a+() -attelle/S*() -attenante/F*() -attendre/tA() -attendrie/F*() -attendrir/f4f+() -attendrissante/F*() -attendrissement/S*() -attendrisseur/S*() -attendu -attendue/F*() -attentat/S*() -attentatoire/S*() -attente/S*() -attenter/a5() -attention/S*() -attentionnée/F*() -attentisme/S*() -attentiste/S*() -attentive/F*() -attentivement/D'Q' -atténuante/F*() -atténuateur/S*() -atténuation/S*() -atténuée/F*() -atténuer/a4a+() -atterrage/S*() -atterrante/F*() -atterrée/F*() -atterrer/a2a+() -atterrie/F*() -atterrir/f1f+() -atterrissage/S*() -atterrissement/S*() -atterrisseur/S*() -attestation/S*() -attestée/F*() -attester/a2a+() -atticisme/S*() -attiédie/F*() -attiédir/f4f+() -attiédissement/S*() -attifée/F*() -attifement/S*() -attifer/a4a+() -attifet/S*() -attiger/a2a+() -attique/S*() -attirable/S*() -attirail/S*() -attirance/S*() -attirante/F*() -attirée/F*() -attirer/a4a+() -attisée/F*() -attisement/S*() -attiser/a2a+() -attitrée/F*() -attitrer/a2a+() -attitude/S*() -attorney/S*() -attouchement/S*() -attoucher/a4a+() -attracteur/S*() -attraction/S*() -attractive/F*() -attractivité/S*() -attrait/S*() -attrapade/S*() -attrapage/S*() -attrapée/F*() -attrape-mouche/S*() -attrape-nigaud/S*() -attraper/a4a+() -attrape-tout/L'D'Q' -attrapeuse/F*() -attrayante/F*() -attribuable/S*() -attribuée/F*() -attribuer/a4a+() -attribut/S*() -attributaire/S*() -attribution/S*() -attributive/F*() -attriquer/a2a+() -attristante/F*() -attristée/F*() -attrister/a4a+() -attrition/S*() -attroupée/F*() -attroupement/S*() -attrouper/a4a+() -atypique/S*() -au/L'D'Q'QjX. -aubade/S*() -aubaine/F*() -aube/S*() -aubépine/S*() -aubère/S*() -auberge/S*() -aubergine/S*() -aubergiste/S*() -auberon/S*() -aubette/S*() -aubier/S*() -aubin/S*() -aubiner/a1() -auburn/L'D'Q' -aucuba/S*() -aucune/F*() -aucunement/D'Q' -audace/S*() -audacieuse/W*() -audacieusement/D'Q' -au-dedans/Q' -au-dehors/Q' -au-delà/L'D' -au-delà/Q' -au-dessous/Q' -au-dessus/Q' -au-devant/Q' -audibilité/S*() -audible/S*() -audience/S*() -audiencière/F*() -audimètre/S*() -audimutité/S*() -audio/L'D'Q' -audioconférence/S*() -audiodescription/S*() -audiodisque/S*() -audiofréquence/S*() -audiogramme/S*() -audioguide/S*() -audiolivre/S*() -audiomètre/S*() -audiométrie/S*() -audionumérique/S*() -audiophone/S*() -audioprothésiste/S*() -audiotex/L'D'Q' -audiotypiste/S*() -audiovisuel/S*() -audiovisuelle/F*() -audit/S*() -auditer/a2a+() -audition/S*() -auditionnée/F*() -auditionner/a2a+() -auditive/F*() -auditoire/S*() -auditorat/S*() -auditorium/S*() -auditrice/F*() -auge/S*() -augée/S*() -auget/S*() -augette/S*() -augment/S*() -augmentable/S*() -augmentation/S*() -augmentative/F*() -augmentée/F*() -augmenter/a4a+() -augurale/W*() -augure/S*() -augurer/a2a+() -auguste/S*() -augustine/F*() -augustinienne/F*() -augustinisme/S*() -aujourd'hui/D'Q'Qj -aulique/S*() -aulne/S*() -aulx -aumône/S*() -aumônerie/S*() -aumônière/F*() -aune/S*() -auner/a2a+() -auparavant/D'Q' -auprès/Q'Qj -auquel -aura/S*() -aurantiacée/S*() -auréole/S*() -auréolée/F*() -auréoler/a4a+() -auréomycine/S*() -auriculaire/S*() -auricule/S*() -aurifère/S*() -aurification/S*() -aurifiée/F*() -aurifier/a2a+() -aurige/S*() -aurignacienne/F*() -aurique/S*() -aurochs/L'D'Q' -aurore/S*() -auscultation/S*() -auscultatoire/S*() -auscultée/F*() -ausculter/a4a+() -auspices/D'Q' -aussi/D'Q' -aussière/S*() -aussitôt/D'Q' -austère/S*() -austèrement/D'Q' -austérité/S*() -australe/W*() -australienne/F*() -australoïde/S*() -australopithèque/S*() -australs/D'Q' -austro-hongroise/F*() -austronésien/S*() -austronésienne/F*() -autan/S*() -autant/D'Q' -autarcie/S*() -autarcique/S*() -autel/S*() -auteure/F*() -authenticité/S*() -authentification/S*() -authentifiée/F*() -authentifier/a4a+() -authentique/S*() -authentiquement/D'Q' -authentiquer/a2a+() -autisme/S*() -autiste/S*() -autistique/S*() -auto/S*() -autoaccusation/S*() -autoadhésive/F*() -autoadjointe/F*() -autoalarme/S*() -autoallumage/S*() -autoamorçage/S*() -autoberge/S*() -autobiographe/S*() -autobiographie/S*() -autobiographique/S*() -autobloquante/F*() -autobus/L'D'Q' -autocalibration/S*() -autocar/S*() -autocaravane/S*() -autocariste/S*() -autocassable/S*() -autocensure/S*() -autocensurer/a3a+() -autocéphale/S*() -autochenille/S*() -autochrome/S*() -autochtone/S*() -autocinétique/S*() -autocinétisme/S*() -autoclave/S*() -autoclaviste/S*() -autocollante/F*() -autocommutateur/S*() -autoconcurrence/S*() -autoconduction/S*() -autoconsommation/S*() -autocopie/S*() -autocorrection/S*() -autocrate/S*() -autocratie/S*() -autocratique/S*() -autocratiquement/D'Q' -autocratisme/S*() -autocritique/S*() -autocuiseur/S*() -autodafé/S*() -autodéfense/S*() -autodestruction/S*() -autodestructrice/F*() -autodétermination/S*() -autodéterminer/a3a+() -autodétruire/yO() -autodidacte/S*() -autodidactique/S*() -autodidaxie/S*() -autodiscipline/S*() -autodrome/S*() -auto-école/S*() -autoédition/S*() -autoentrepreneuriat/S*() -autoentrepreneuse/F*() -autoentreprise/S*() -autoéquilibrante/F*() -autoérotique/S*() -autoérotisme/S*() -autoethnonyme/S*() -autoévaluante/F*() -autoévaluation/S*() -autoexcitatrice/F*() -autoextractible/S*() -autofiction/S*() -autofinancée/F*() -autofinancement/S*() -autofinancer/a4a+() -autofocus/L'D'Q' -autoformation/S*() -autogame/S*() -autogamie/S*() -autogène/S*() -autogérée/F*() -autogestion/S*() -autogestionnaire/S*() -autogire/S*() -autogoal/S*() -autographe/S*() -autographiée/F*() -autographier/a2a+() -autoguérison/S*() -autoguidage/S*() -autoguidée/F*() -autoguider/a3a+() -auto-immune/F*() -auto-immunisation/S*() -auto-imposition/S*() -auto-intoxication/S*() -autoïque/S*() -automate/S*() -automaticienne/F*() -automaticité/S*() -automation/S*() -automatique/S*() -automatiquement/D'Q' -automatisable/S*() -automatisation/S*() -automatisée/F*() -automatiser/a2a+() -automatiseur/S*() -automatisme/S*() -automédication/S*() -automédon/S*() -automitrailleuse/S*() -automnale/W*() -automne/S*() -automobile/S*() -automobilisable/S*() -automobilisme/S*() -automobiliste/S*() -automorphe/S*() -automorphisme/S*() -automotrice/F*() -automutilation/S*() -autoneige/S*() -autonettoyante/F*() -autonome/S*() -autonomie/S*() -autonomisation/S*() -autonomiser/a4a+() -autonomisme/S*() -autonomiste/S*() -autonyme/S*() -autonymie/S*() -autonymique/S*() -auto-patrouille/L'D'Q' -autophagie/S*() -autoplastie/S*() -autopompe/S*() -autoportante/F*() -autoporteuse/F*() -autoportrait/S*() -autoproclamée/F*() -autoproclamer/a3a+() -autoproduction/S*() -autopropulsée/F*() -autopropulsion/S*() -autopsie/S*() -autopsiée/F*() -autopsier/a2a+() -autopunition/S*() -autoradio/S*() -autoradiographie/S*() -autorail/S*() -autoréglage/S*() -autorégulation/S*() -autorégulatrice/F*() -autorisation/S*() -autorisatrice/F*() -autorisée/F*() -autoriser/a4a+() -autoritaire/S*() -autoritairement/D'Q' -autoritarisme/S*() -autorité/S*() -autoroute/S*() -autoroutière/F*() -autosatisfaction/S*() -autoscopie/S*() -autos-couchettes/L'D'Q' -autosimilaire/S*() -autosomale/W*() -autosome/S*() -autosomique/S*() -autos-patrouilles/D'Q' -auto-stop/S*() -auto-stoppeuse/F*() -autostrade/S*() -autosuffisance/S*() -autosuggestion/S*() -autosuggestionner/a3a+() -autosurveillance/S*() -autotélie/S*() -autotomie/S*() -autotomiser/a3a+() -autotour/S*() -autotrophe/S*() -autotrophie/S*() -autour/D'Q' -autour/S*() -autovaccin/S*() -autovaccination/S*() -autre/S*() -autrefois/D'Q' -autrement/D'Q' -autrice/S*() -autrichienne/F*() -autruche/S*() -autrui/L'D'Q' -auvent/S*() -auvergnate/F*() -auxiliaire/S*() -auxiliairement/D'Q' -auxiliariat/S*() -auxine/S*() -auxquelles/D' -auxquels/D' -avachie/F*() -avachir/f4f+() -avachissement/S*() -aval/S*() -avalanche/S*() -avalancheuse/W*() -avalée/F*() -avalement/S*() -avaler/a2a+() -avale-tout/L'D'Q' -avaleuse/F*() -avalisée/F*() -avaliser/a2a+() -avaliseur/S*() -avaliste/S*() -à-valoir/L'D'Q' -avaloir/S*() -avaloire/S*() -avance/S*() -avancée/F*() -avancée/S*() -avancement/S*() -avancer/a4a+() -avanie/S*() -avant/D'Q' -avant/S*() -avantage/S*() -avantagée/F*() -avantager/a2a+() -avantageuse/W*() -avantageusement/D'Q' -avant-bras/L'D'Q' -avant-centre/L'D'Q' -avant-corps/L'D'Q' -avant-coureur/S*() -avant-creuset/S*() -avant-dernière/F*() -avant-garde/S*() -avant-gardisme/S*() -avant-gardiste/S*() -avant-goût/S*() -avant-guerre/S*() -avant-hier/D'Q' -avant-main/S*() -avant-midi/L'D'Q' -avant-port/S*() -avant-poste/S*() -avant-première/S*() -avant-projet/S*() -avant-propos/L'D'Q' -avant-scène/S*() -avants-centres/D'Q' -avant-soirée/S*() -avant-toit/S*() -avant-train/S*() -avant-veille/S*() -avare/S*() -avarement/D'Q' -avarice/S*() -avaricieuse/W*() -avarie/S*() -avariée/F*() -avarier/a4a+() -avatar/S*() -avec/D'Q' -aveindre -aveline/S*() -avelinier/S*() -aven/S*() -avenante/F*() -avènement/S*() -avenir -avenir/S*() -avent/L'D' -aventure/S*() -aventurée/F*() -aventurer/a4a+() -aventureuse/W*() -aventureusement/D'Q' -aventurière/F*() -aventurine/S*() -aventurisme/S*() -avenue/S*() -avérée/F*() -avérer/c4a+() -avers/L'D' -averse/S*() -aversion/S*() -avertie/F*() -avertir/f2f+() -avertissement/S*() -avertisseuse/F*() -aveu/X*() -aveuglante/F*() -aveugle/S*() -aveuglée/F*() -aveuglément/D'Q' -aveuglement/S*() -aveugler/a4a+() -aveuglette/S*() -aveulie/F*() -aveulir/f4f+() -aveulissement/S*() -aviaire/S*() -aviation/S*() -aviatrice/F*() -avicole/S*() -avicultrice/F*() -aviculture/S*() -avide/S*() -avidement/D'Q' -avidité/S*() -avilie/F*() -avilir/f4f+() -avilissante/F*() -avilissement/S*() -avinée/F*() -aviner/a2a+() -avion/S*() -avion-cargo/L'D'Q' -avionique/S*() -avionnette/S*() -avionneuse/F*() -avions-cargos/D'Q' -aviron/S*() -avis/L'D'Q' -avisée/F*() -aviser/a4a+() -aviso/S*() -avitaillée/F*() -avitaillement/S*() -avitailler/a4a+() -avitailleuse/F*() -avitaminose/S*() -avivage/S*() -avivée/F*() -avivement/S*() -aviver/a2a+() -aviveuse/F*() -avocaillon/S*() -avocasser/a2a+() -avocasserie/S*() -avocassière/F*() -avocate/F*() -avocatier/S*() -avocette/S*() -avoine/S*() -avoinée/F*() -avoiner/a2a+() -avoir/zA() -avoirdupoids/L'D' -avoirs -avoisinante/F*() -avoisiner/a4a+() -avortée/F*() -avortement/S*() -avorter/a2a+() -avorteuse/F*() -avorton/S*() -avouable/S*() -avouée/F*() -avouer/a4a+() -avoyer/a2a+() -avr -avril/S*() -avulsion/S*() -avunculaire/S*() -axe/S*() -axée/F*() -axer/a4a+() -axiale/W*() -axile/S*() -axillaire/S*() -axiologie/S*() -axiologique/S*() -axiomatique/S*() -axiomatisation/S*() -axiomatisée/F*() -axiomatiser/a2a+() -axiome/S*() -axis/L'D'Q' -axoa/S*() -axolotl/S*() -axonaise/F*() -axone/S*() -axonge/S*() -axonométrie/S*() -axonométrique/S*() -ayant/S*() -ayatollah/S*() -ayurvéda/S*() -ayurvédique/S*() -azalée/S*() -azéotrope/S*() -azéotropique/S*() -azerbaïdjanaise/F*() -azérie/F*() -azerole/S*() -azerolier/S*() -azidothymidine/S*() -azimut/S*() -azimutale/W*() -azimuter/a2a+() -azimuther/a2a+() -azoïque/S*() -azolla/S*() -azoospermie/S*() -azotate/S*() -azote/S*() -azotée/F*() -azotémie/S*() -azoteuse/W*() -azotique/S*() -azotite/S*() -azoture/S*() -azoturie/S*() -aztèque/S*() -azulejo/S*() -azulène/S*() -azur/S*() -azurage/S*() -azurant/S*() -azurée/F*() -azuréenne/F*() -azurer/a2a+() -azurite/S*() -azygos/L'D'Q' -azyme/S*() -b -b/||-- -ba/||-- -baasisme/S. -baasiste/S. -baba/S. -babeler/d0() -babelutte/S. -babeurre/S. -babil/S. -babillage/S. -babillarde/F.() -babiller/a0() -babine/S. -babiole/S. -babiroussa/S. -babisme/S. -bâbord -bâbordais -babouche/S. -babouchka/S. -babouin/S. -babouvisme/S. -baby/S. -baby-boom/S. -baby-boomer/S. -baby-foot -babylonienne/F.() -baby-sitter/S. -baby-sitting/S. -bac/S. -baccalauréat/S. -baccara -baccarat -bacchanale/S. -bacchante/S. -bacciforme/S. -bâchage/S. -bachat/S. -bâche/S. -bâchée/F.() -bachelière/F.() -bâcher/a0a+() -bachi/S. -bachi-bouzouk/S. -bachique/S. -bachot/S. -bachotage/S. -bachoter/a0() -bacillaire/S. -bacille/S. -bacilliforme/S. -bacillose/S. -backgammon/S. -back-office/S. -bâclage/S. -bâclée/F.() -bâcler/a0a+() -bacon -bactéricide/S. -bactéridie/S. -bactérie/S. -bactérienne/F.() -bactériologie/S. -bactériologique/S. -bactériologiste/S. -bactériologue/S. -bactériophage/S. -bactériostatique/S. -bacul/S. -badaude/F.() -badauderie/S. -badelaire/S. -bader/a0a+() -baderne/S. -badge/S. -badiane/S. -badigeon/S. -badigeonnage/S. -badigeonnée/F.() -badigeonner/a0a+() -badigeonneur/S. -badigoinces -badinage/S. -badine/F.() -badiner/a0() -badinerie/S. -badminton -baeckeofe/S. -baffe/S. -baffer/a0a+() -baffle/S. -bafouer/a0a+() -bafouillage/S. -bafouille/S. -bafouiller/a0a+() -bafouilleuse/F.() -bafouillis -bâfrer/a0a+() -bâfreuse/F.() -bagad/S. -bagage/S. -bagagiste/S. -bagarre/S. -bagarrer/a0a+() -bagarreuse/F.() -bagasse/S. -bagatelle/S. -bagnarde/F.() -bagne/S. -bagnole/S. -bagote/S. -bagoter/a0() -bagotte/S. -bagotter/a0() -bagou -bagouler/a0() -bagout -baguage/S. -bague/S. -baguée/F.() -baguenauder/a0a+() -baguenaudier/S. -baguer/a0a+() -baguette/S. -baguier/S. -baguiste/S. -bah -bahut/S. -baie/F.() -baignade/S. -baigner/a0a+() -baigneuse/F.() -baignoire/S. -bail/X. -bâillement/S. -bailler/a0a+() -bâiller/a0() -bailleresse/F.() -bâilleuse/F.() -bailli/S. -bailliage/S. -bâillon/S. -bâillonnée/F.() -bâillonnement/S. -bâillonner/a0a+() -bain/S. -bain-marie -bains-marie -baïonnette/S. -baïram/S. -baisable/S. -baise/S. -baisée/F.() -baisemain/S. -baisement/S. -baiser/S. -baiser/a0a+() -baiseuse/F.() -baisse/S. -baissée/F.() -baissement/S. -baisser/a0a+() -baissière/F.() -bajoue/S. -bajoyer/S. -bakchich/S. -bakélite/S. -baklava/S. -bal/S. -balade/S. -balader/a0a+() -baladeuse/F.() -baladin/S. -balado/S. -baladodiffuseuse/F.() -baladodiffusion/S. -balafon/S. -balafre/S. -balafrée/F.() -balafrer/a0a+() -balai/S. -balai-brosse -balais-brosses -balaise/S. -balalaïka/S. -balance/S. -balancée/F.() -balancelle/S. -balancement/S. -balancer/a0a+() -balancière/F.() -balancine/S. -balançoire/S. -balane/S. -balanite/S. -balanoglosse/S. -balanstiquer/a0a+() -balata/S. -balayage/S. -balayée/F.() -balayer/a0a+() -balayette/S. -balayeuse/F.() -balayure/S. -balbutiante/F.() -balbutiée/F.() -balbutiement/S. -balbutier/a0a+() -balbuzard/S. -balcon/S. -balconnet/S. -baldaquin/S. -baleine/S. -baleineau/X. -baleinée/F.() -baleiner/a0a+() -baleinière/F.() -balénoptère/S. -balès -balèvre/S. -balèze/S. -baligander/a0() -balisage/S. -balise/S. -balisée/F.() -baliser/a0a+() -baliseur/S. -balisier/S. -baliste/S. -balisticienne/F.() -balistique/S. -balivage/S. -baliveau/X. -baliverne/S. -balkanique/S. -balkanisation/S. -balkanisée/F.() -balkaniser/a0a+() -ballade/S. -ballante/F.() -ballast/S. -ballastage/S. -ballaster/a0a+() -ballastière/S. -balle/S. -balle-molle -baller/a0() -ballerine/S. -balles-molles -ballet/S. -balletomane/S. -ballon/S. -ballonnée/F.() -ballonnement/S. -ballonner/a0a+() -ballonnet/S. -ballon-sonde -ballons-sondes -ballot/S. -ballote/S. -ballotin/S. -ballottage/S. -ballottée/F.() -ballottement/S. -ballotter/a0a+() -ballottine/S. -ball-trap/S. -balluchon/S. -balnéaire/S. -balnéation/S. -balnéothérapie/S. -balourde/F.() -balourdise/S. -baloutche/S. -baloutchi/S. -balsa/S. -balsamier/S. -balsamine/S. -balsamique/S. -balte/S. -balter/a0a+() -balthazar/S. -baluchithérium/S. -baluchon/S. -baluchonner -balustrade/S. -balustre/S. -balzane/F.() -bambin/S. -bamboche/S. -bambocher/a0() -bambocheuse/F.() -bambou/S. -bamboula/S. -bambouseraie/S. -ban/S. -banachique/S. -banale/F.() -banale/W.() -banalement -banalisation/S. -banalisée/F.() -banaliser/a0a+() -banalité/S. -banane/S. -bananer/a0a+() -bananeraie/S. -bananier/S. -banaste/S. -banc/S. -bancable/S. -bancaire/S. -bancale/F.() -bancarisation/S. -bancassurance/S. -bancassureur/S. -banche/S. -banchée/F.() -bancher/a0a+() -bancheuse/F.() -banco/S. -bancoulier/S. -bancroche/S. -bandage/S. -bandagiste/S. -bandana/S. -bandante/F.() -bande/S. -bandeau/X. -bandée/F.() -bandelette/S. -bander/a0a+() -banderille/S. -banderillero/S. -banderole/S. -bandit/S. -banditisme/S. -bandonéon/S. -bandoulière/S. -bang/S. -banian/S. -banjo/S. -banjoïste/S. -banlieue/S. -banlieusarde/F.() -banlon/S. -banner/a0a+() -banneret/S. -banneton/S. -bannette/S. -bannie/F.() -bannière/S. -bannir/f0f+() -bannissement/S. -banon/S. -banque/S. -banquer/a0() -banqueroute/S. -banqueroutière/F.() -banquet/S. -banqueter/d0() -banqueteur/S. -banquette/S. -banquière/F.() -banquise/S. -banquiste/S. -bantoue/F.() -baobab/S. -baptême/S. -baptisée/F.() -baptiser/a0a+() -baptismale/W.() -baptisme/S. -baptistaire/S. -baptiste/S. -baptistère/S. -baquer/a0a+() -baquet/S. -baqueter/d0a+() -baquetures -bar/S. -bar/||-- -baragouin/S. -baragouinage/S. -baragouinée/F.() -baragouiner/a0a+() -baragouineuse/F.() -baraka/S. -barakie/F.() -baraque/S. -baraquée/F.() -baraquement/S. -baraquer/a0a+() -baraterie/S. -baratin/S. -baratinée/F.() -baratiner/a0a+() -baratineuse/F.() -barattage/S. -baratte/S. -baratter/a0a+() -barbacane/S. -barbante/F.() -barbaque/S. -barbare/S. -barbaresque/S. -barbarie/S. -barbarisme/S. -barbe/S. -barbeau/X. -barbecue/S. -barbée/F.() -barbelé/S. -barbelée/F.() -barbelure/S. -barber/a0a+() -barbet/S. -barbette/F.() -barbiche/S. -barbichette/S. -barbichue/F.() -barbier/S. -barbifier/a0a+() -barbille/S. -barbillon/S. -barbital/S. -barbiturique/S. -barbiturisme/S. -barbon/S. -barbotage/S. -barboter/a0a+() -barboteuse/F.() -barbotière/S. -barbotine/F.() -barbouillage/S. -barbouiller/a0a+() -barbouilleuse/F.() -barbouze/S. -barbue/F.() -barbule/S. -barcarolle/S. -barcasse/S. -bard/S. -bardage/S. -bardane/S. -barde/S. -bardeau/X. -bardée/F.() -barder/a0a+() -barder/a9a+() -bardeuse/F.() -bardis -bardot/S. -barème/S. -barémique/S. -baréter/c0() -barge/S. -barguigner/a0() -barguigneuse/F.() -baribal/S. -baril/S. -barillet/S. -bariolage/S. -bariolée/F.() -barioler/a0a+() -bariolure/S. -barjaquer/a0() -barlongue/F.() -barloquer/a0() -barlotière/S. -barmaid/S. -barman/S. -barn/S. -barnabite/S. -barographe/S. -baromètre/S. -barométrique/S. -baronnage/S. -baronne/F.() -baronner/a0a+() -baronnet/S. -baronnette/S. -baronnie/S. -baroque/S. -baroquisme/S. -baroscope/S. -barotraumatisme/S. -baroud/S. -barouder/a0() -baroudeur/S. -barouf/S. -baroufle/S. -barque/S. -barquerolle/S. -barquette/S. -barracuda/S. -barrage/S. -barragiste/S. -barre/S. -barreau/X. -barrée/F.() -barregraphe/S. -barrel/S. -barrement/S. -barrer/a0a+() -barrette/S. -barreuse/F.() -barricade/S. -barricadée/F.() -barricader/a0a+() -barrière/S. -barrique/S. -barrir/f0() -barrissement/S. -barrot/S. -bartavelle/S. -barycentre/S. -barycentrique/S. -barye/S. -barymétrie/S. -baryon/S. -baryonique/S. -barysphère/S. -baryte/S. -barytine/S. -baryton/S. -baryum/S. -barzoï/S. -bas -bas -basale/W.() -basalte/S. -basaltique/S. -basane/S. -basanée/F.() -basaner/a0a+() -bas-bleu/S. -bas-côté/S. -basculante/F.() -bascule/S. -basculée/F.() -basculement/S. -basculer/a0a+() -basculeur/S. -bas-de-casse -base/S. -base-ball/S. -basée/F.() -baselle/S. -baser/a0a+() -bas-fond/S. -basicité/S. -baside/S. -basidiomycète/S. -basilaire/S. -basilic/S. -basilicale/W.() -basilique/S. -basin/S. -basique/S. -bas-jointée/F.() -basket/S. -basket-ball/S. -basketteuse/F.() -bas-mât/S. -basoche/S. -basophile/S. -basquaise/S. -basque/S. -basquine/S. -bas-relief/S. -basse/S. -basse-contre -basse-cour -basse-courière/F.() -basse-danse -basse-fosse -basse-lisse -basse-lissière/F.() -bassement -basses-contre -basses-cours -basses-danses -basses-fosses -basses-lisses -bassesse/S. -basses-tailles -basses-villes -basset/S. -basse-taille -basse-ville -bassin/S. -bassinante/F.() -bassine/S. -bassiner/a0a+() -bassinet/S. -bassinoire/S. -bassiste/S. -basson/S. -bastaing/S. -baste/S. -baster/a0() -basterne/S. -bastide/S. -bastidon/S. -bastille/S. -bastillée/F.() -bastillonnée/F.() -bastillonner/a0a+() -bastingage/S. -bastion/S. -bastionnée/F.() -bastionner/a0a+() -baston/S. -bastonnade/S. -bastonner/a0a+() -bastos -bastringue/S. -bas-ventre/S. -bât/S. -bataclan/S. -bataille/S. -bataillée/F.() -batailler/a0a+() -batailleuse/F.() -bataillon/S. -bâtarde/F.() -batardeau/X. -bâtardise/S. -batavia/S. -batavique/S. -batayole/S. -bateau/X. -bateau-citerne -bateau-feu -bateau-mouche -bateau-pilote -bateau-pompe -bateaux-citernes -bateaux-feux -bateaux-mouches -bateaux-pilotes -bateaux-pompes -bâtée/F.() -batelage/S. -batelée/F.() -bateler/d0() -batelet/S. -bateleuse/F.() -batelière/F.() -batellerie/S. -bâter/a0a+() -bat-flanc -bath -bathyale/W.() -bathymétrie/S. -bathymétrique/S. -bathyscaphe/S. -bathysphère/S. -bâtie/F.() -bâtière/S. -batifolage/S. -batifolante/F.() -batifoler/a0() -batifoleuse/F.() -batik/S. -bâtiment/S. -bâtir/f0f+() -bâtisseuse/F.() -batiste/S. -bâton/S. -bâtonnat/S. -bâtonnée/F.() -bâtonner/a0a+() -bâtonnet/S. -bâtonnière/F.() -batoude/S. -batracienne/F.() -battage/S. -battante/F.() -batte/S. -battée/S. -battellement/S. -battement/S. -batterie/S. -batteuse/F.() -battiture/S. -battle-dress -battoir/S. -battologie/S. -battre/uA() -battue/F.() -batture/S. -bau/X. -baud/S. -baudet/S. -baudrier/S. -baudroie/S. -baudruche/S. -bauge/S. -baugée/F.() -bauger/a0a+() -baume/S. -baumier/S. -bauquière/S. -bauxite/S. -bavardage/S. -bavarde/F.() -bavarder/a0() -bavaroise/F.() -bavasser/a0() -bave/S. -baver/a0() -bavette/S. -baveuse/W.() -bavochée/F.() -bavocher/a0() -bavochure/S. -bavoir/S. -bavolet/S. -bavure/S. -bayadère/S. -bayer/a0() -bayésienne/F.() -bayle/S. -bayou/S. -bazar/S. -bazardée/F.() -bazarder/a0a+() -bazooka/S. -beach-volley/S. -beagle/S. -béance/S. -béante/F.() -béarnaise/F.() -béate/F.() -béatement -béatifiante/F.() -béatification/S. -béatifiée/F.() -béatifier/a0a+() -béatifique/S. -béatitude/S. -beatnik/S. -beau/X. -beauceronne/F.() -beaucoup -beauf/S. -beau-fils -beau-frère -beaujolais -beau-père -beaupré/S. -beauté/S. -beaux-arts -beaux-fils -beaux-frères -beaux-parents -beaux-pères -bébé/S. -bébête/S. -be-bop -bec/S. -bécane/S. -bécard/S. -bécarre/S. -bécasse/S. -bécasseau/X. -bécassine/S. -bec-croisé -bec-de-cane -bec-de-corbeau -bec-de-corbin -bec-de-lièvre -becfigue/S. -bêchage/S. -béchamel/S. -bêche/S. -bêcher/a0a+() -bêcheuse/F.() -bêcheveter/d0a+() -béchique/S. -bécot/S. -bécoter/a0a+() -becquée/F.() -becquée/S. -becquer/a0a+() -becquerel/Um() -becquet/S. -becquetance/S. -becquetée/F.() -becqueter/d0a+() -becs-croisés -becs-de-cane -becs-de-corbeau -becs-de-corbin -becs-de-lièvre -bectance/S. -becter/a0a+() -bedaine/S. -bédane/S. -bédé/S. -bedeau/X. -bédégar/S. -bédéthèque/S. -bedon/S. -bedonnante/F.() -bedonner/a0() -bédouine/F.() -bée/S. -béer/a0() -beffroi/S. -bégaiement/S. -bégaler/a0a+() -bégayante/F.() -bégayée/F.() -bégayer/a0a+() -bégayeuse/F.() -bégonia/S. -béguë/F.() -bègue/S. -béguer/c0() -béguètement/S. -bégueter/b0() -bégueule/S. -bégueulerie/S. -béguinage/S. -béguine/F.() -bégum/S. -béhaviorisme/S. -béhavioriste/S. -béhémoth/S. -beige/S. -beigne/S. -beignet/S. -béjaune/S. -béké/S. -bel -bel/S. -bélandre/S. -bêlante/F.() -belcanto -bêlement/S. -bélemnite/S. -bêler/a0() -bel-étage -belette/S. -belge/S. -belgicisme/S. -belgitude/S. -belgo-luxembourgeoise/F.() -belgo-néerlandaise/F.() -bélier/S. -bélière/S. -bélinographe/S. -bélître/S. -belladone -bellâtre/S. -belle/S. -belle-de-jour -belle-de-nuit -belle-doche -belle-famille -belle-fille -bellement -belle-mère -belles-de-jour -belles-de-nuit -belles-doches -belles-familles -belles-filles -belles-lettres -belles-mères -belle-sœur -belles-sœurs -bellicisme/S. -belliciste/S. -belligérance/S. -belligérante/F.() -belliqueuse/W.() -belliqueusement -belluaire/S. -belon/S. -belote/S. -beloter/a0() -béluga/S. -belvédère/S. -bémol/S. -bémoliser/a0a+() -ben -bénarde/S. -bendir/S. -bénédicité/S. -bénédictine/F.() -bénédiction/S. -bénef/S. -bénéfice/S. -bénéficiaire/S. -bénéficier/a0() -bénéfique/S. -benêt/S. -bénévolat/S. -bénévole/S. -bénévolement -bénévolence/S. -bengalie/F.() -bénie/F.() -bénigne/F.() -bénignement -bénignité/S. -béninoise/F.() -béni-oui-oui -bénir/f0f+() -bénisseuse/F.() -bénite/F.() -bénitier/S. -benjamine/F.() -benjoin/S. -benne/S. -benner/a0a+() -benoîte/F.() -benoîte/S. -benoîtement -benthique/S. -benthos -bentonite/S. -benzène -benzénique/S. -benzine/S. -benzoate/S. -benzol/S. -benzolisme/S. -benzopyrène/S. -béotienne/F.() -béotisme/S. -béquer/c0a+() -béquet/S. -béqueter/d0a+() -béquille/S. -béquiller/a0a+() -ber/S. -berbère/S. -berbérisme/S. -berbériste/S. -berbérophone/S. -bercail -berçante/S. -berceau/X. -bercée/F.() -bercelonnette/S. -bercement/S. -bercer/a0a+() -berceuse/F.() -berceuse/S. -berdeller/a0a+() -béret/S. -bergamasque/S. -bergamote -bergamotier/S. -berge/S. -bergère/F.() -bergerie/S. -bergeronnette/S. -berginisation/S. -béribéri/S. -berkélium/S. -berline/S. -berlinette/S. -berlingot/S. -berlinoise/F.() -berlue -berlurer/a0a+() -berme/S. -bermuda/S. -bernache/S. -bernacle/S. -bernardine/F.() -bernard-l'ermite -berne/S. -bernée/F.() -berner/a0a+() -bernicle/S. -bernique -bernique/S. -berrichonne/F.() -bersaglier/S. -berthon/S. -bertillonnage/S. -béryl/S. -béryllium/S. -besace/S. -besaiguë/S. -besant/S. -besantée/F.() -bésicles -bésigue/S. -besogne/S. -besogner/a0() -besogneuse/W.() -besoin/S. -bessemer/S. -bessonne/F.() -bessonnière/S. -bestiaire/S. -bestiale/W.() -bestialement -bestialité/S. -bestiau/X. -bestiole/S. -best-seller/S. -bêta -bêta/S. -bétail/S. -bétaillère/S. -bêtasse/S. -bêtathérapie/S. -bêtatron/S. -bête/S. -bétel/S. -bêtement -bêtifiante/F.() -bêtifier/a0a+() -bêtise/S. -bêtiser/a0() -bêtisier/S. -bétoine/S. -bétoire/S. -béton/S. -bétonnage/S. -bétonnée/F.() -bétonner/a0a+() -bétonneuse/F.() -bétonnière/F.() -bette/S. -betterave/S. -betteravière/F.() -bétulacée/S. -bétyle/S. -beuglante/F.() -beuglante/S. -beuglée/F.() -beuglement/S. -beugler/a0a+() -beur/S. -beurette/S. -beurrage/S. -beurre/S. -beurrée/F.() -beurrer/a0a+() -beurrerie/S. -beurrière/F.() -beuverie/S. -bévatron/S. -bévue/S. -bey/S. -beylicale/W.() -beylicat/S. -beylisme/S. -bézef -bézoard/S. -bhoutanaise/F.() -biacide/S. -biacuminée/F.() -biais -biaisée/F.() -biaiser/a0a+() -biangle/S. -biathlète/S. -biathlon/S. -bibande/S. -bibarder/a0() -bibelot/S. -bibeloter/a0() -biberon/S. -biberonner/a0() -bibi/S. -bibine/S. -bibl -bible/S. -bibliobus -bibliogr -bibliographe/S. -bibliographie/S. -bibliographique/S. -bibliomanie/S. -bibliométrie/S. -bibliométrique/S. -bibliophile/S. -bibliophilie/S. -bibliophilique/S. -bibliotechnicienne/F.() -bibliothécaire/S. -bibliothéconomie/S. -bibliothèque/S. -biblique/S. -bibliquement -bic/S. -bicamérale/W.() -bicaméralisme/S. -bicamérisme/S. -bicarbonate/S. -bicarrée/F.() -bicaténaire/S. -bicentenaire/S. -bicéphale/S. -biceps -biche/S. -bicher/a0() -bichette/S. -bichlamar/S. -bichlorure/S. -bichof/S. -bichonnage/S. -bichonne/F.() -bichonner/a0a+() -bichonneuse/F.() -bichoter/a9a+() -bichromate/S. -bichrome/S. -bichromie/S. -bickford/S. -biclé/S. -biclef/S. -bicolore/S. -bicolorié/S. -biconcave/S. -biconvexe/S. -bicoque/S. -bicorne/S. -bicot/S. -bicubique/S. -biculturalisme/S. -biculturelle/F.() -bicycle/S. -bicyclette/S. -bidasse/S. -bide/S. -bidegré/S. -bident/S. -bider/a0a+() -bidet/S. -bidimensionnelle/F.() -bidirectionnalité/S. -bidirectionnelle/F.() -bidoche/S. -bidon/S. -bidonnage/S. -bidonnante/F.() -bidonner/a0a+() -bidonville/S. -bidouillabilité/S. -bidouillable/S. -bidouillage/S. -bidouille/S. -bidouiller/a0a+() -bidouilleuse/F.() -biduale/W.() -bidule/S. -bief/S. -bielle/S. -biellette/S. -biélorusse/S. -bien -bien -bien/S. -bien-aimée/F.() -bien-aller -bien-dire -bien-être -bienfaisance/S. -bienfaisante/F.() -bienfait/S. -bienfaitrice/F.() -bien-fondé/S. -bien-fonds -bienheureuse/W.() -bien-jugé/S. -biennale/W.() -bien-pensance/S. -bien-pensante/F.() -bienséance/S. -bienséante/F.() -biens-fonds -bientôt -bienveillamment -bienveillance/S. -bienveillante/F.() -bienvenir -bienvenue/F.() -bière/S. -bièvre/S. -biface/S. -biffage/S. -biffe/S. -biffée/F.() -biffer/a0a+() -biffetonner/a0() -biffin/S. -biffure/S. -bifide/S. -bifilaire/S. -bifocale/W.() -bifteck/S. -bifurcation/S. -bifurquée/F.() -bifurquer/a0() -bigaille/S. -bigame/S. -bigamie/S. -bigarade/S. -bigaradier/S. -bigarreau/X. -bigarrée/F.() -bigarrer/a0a+() -bigarrure/S. -big-bang -bigèbre/S. -bigle/S. -bigler/a0a+() -bigleuse/W.() -biglouser/a0() -bignonia/S. -bignoniacée/S. -bigophone/S. -bigophoner/a0() -bigorne/S. -bigorneau/X. -bigorner/a0a+() -bigote/F.() -bigoterie/S. -bigotisme/S. -bigouden -bigoudi/S. -bigre -bigrement -bigrer/a0() -bigue/S. -biguine/S. -bihari/S. -bihebdomadaire/S. -biholomorphe/S. -biholomorphisme/S. -bihoreau/X. -bi-infinie/F.() -biinvariante/F.() -bijection/S. -bijective/F.() -bijectivement -bijou/X. -bijouterie/S. -bijoutière/F.() -biker/S. -bikini/S. -bilabiale/S. -bilabiale/W.() -bilabiée/F.() -bilame/S. -bilan/S. -bilaner/a0() -bilatérale/W.() -bilatéralement -bilatéralisme/S. -bilatère/S. -bilboquet/S. -bile/S. -biler/a0a+() -bileuse/W.() -bilharzie/S. -bilharziose/S. -biliaire/S. -bilieuse/W.() -bilinéaire/S. -bilinéarité/S. -bilingue/S. -bilinguisme/S. -bilirubine/S. -bill/S. -billard/S. -bille/S. -billebaude/S. -billebauder/a0() -biller/a0() -billet/S. -billetée/F.() -billette/S. -billetterie/S. -billettiste/S. -billevesée/S. -billion/S. -billon/S. -billonnage/S. -billonner/a0a+() -billot/S. -bilobée/F.() -bilocation/S. -biloculaire/S. -biloquer/a0a+() -biloter/a0a+() -bimane/S. -bimbeloterie/S. -bimensuelle/F.() -bimestrielle/F.() -bimestriellement -bimesurable/S. -bimétallique/S. -bimétallisme/S. -bimétalliste/S. -bimillénaire/S. -bimodule/S. -bimoteur/S. -binage/S. -binaire/S. -binairement -binard/S. -binationale/W.() -binaurale/W.() -biner/a0a+() -binette/S. -bineuse/S. -bingo/S. -biniou/S. -binoclarde/F.() -binocle/S. -binoculaire/S. -binôme/S. -binomiale/W.() -binominale/W.() -bin's -bio/S. -bioacoustique/S. -bioastronomie/S. -biobibliographie/S. -biocarburant/S. -biocénose/S. -biochimie/S. -biochimique/S. -biochimiste/S. -biocide/S. -bioclimatique/S. -bioclimatologie/S. -biocombustible/S. -biodégradabilité/S. -biodégradable/S. -biodégradation/S. -biodiesel/S. -biodisponibilité/S. -biodiversité/S. -biodynamie/S. -biodynamique/S. -bioélectrique/S. -bioénergie/S. -bioéthanol/S. -bioéthique/S. -bio-feed-back -biogaz -biogenèse/S. -biogénétique/S. -biogéographie/S. -biographe/S. -biographie/S. -biographique/S. -bio-informatique/S. -biologie/S. -biologique/S. -biologiquement -biologiser/a0a+() -biologisme/S. -biologiste/S. -bioluminescence/S. -biomasse/S. -biomécanique/S. -biomédicale/W.() -biométrie/S. -biométrique/S. -biomimétique/S. -biomimétisme/S. -biomoléculaire/S. -bionique/S. -biophotonique/S. -biophysicienne/F.() -biophysique/S. -biopic/S. -biopiratage/S. -biopirate/S. -biopiraterie/S. -biopsie/S. -biopsique/S. -biopuce/S. -biosécurité/S. -biosphère/S. -biosphérisation/S. -biostatisticienne/F.() -biostatistique/S. -biosynthèse/S. -biotechnologie/S. -biotechnologique/S. -bioterrorisme/S. -bioterroriste/S. -biothèque/S. -biothérapie/S. -biotique/S. -biotite/S. -biotope/S. -biotype/S. -biotypologie/S. -bioxyde/S. -bipale/S. -bipartie/F.() -bipartisme/S. -bipartite/S. -bipartition/S. -bipasse/S. -bipède/S. -bipédie/S. -bipenne/S. -bipennée/F.() -biphasée/F.() -biphényle/S. -bipied/S. -biplace/S. -biplan/S. -bipoint/S. -bipolaire/S. -bipolarisation/S. -bipolarité/S. -bipôle/S. -bipoutre/S. -bique/S. -biquer/a0() -biquette/F.() -biquotidienne/F.() -birapport/S. -birationnelle/F.() -birationnellement -birbe/S. -biréacteur/S. -biréfringence/S. -biréfringente/F.() -birème/S. -birmane/F.() -biroute/S. -bis -bisaïeule/F.() -bisaïeux -bisaiguë/S. -bisannuelle/F.() -bisbille/S. -bisbrouille/S. -biscaïenne/F.() -biscôme/S. -biscornue/F.() -biscotte/S. -biscotterie/S. -biscuit/S. -biscuitée/F.() -biscuiter/a0a+() -biscuiterie/S. -bise/F*() -bise/S. -biseau/X. -biseautage/S. -biseautée/F.() -biseauter/a0a+() -biseauteuse/F.() -bisegmenter/a0a+() -biser/a0a+() -biset/S. -bisexualité/S. -bisexuée/F.() -bisexuelle/F.() -bisimpliciale/W.() -bismuth/S. -bismuthine/S. -bismuthinite/S. -bison/S. -bisou/S. -bisphénol/S. -bisque/S. -bisquer/a0() -bissau-guinéenne/F.() -bisse/S. -bissection/S. -bissectrice/F.() -bisser/a0a+() -bissexte/S. -bissextile/S. -bissexualité/S. -bissexuée/F.() -bissexuelle/F.() -bistable/S. -bistorte/S. -bistouille/S. -bistouri/S. -bistournage/S. -bistournée/F.() -bistourner/a0a+() -bistre/S. -bistrée/F.() -bistrer/a0a+() -bistro/S. -bistrot/S. -bisulfate/S. -bisulfite/S. -bisulfure/S. -bit/S. -bit/||-- -bite/S. -bitension/S. -biter/a0a+() -bitmap/S. -bitonale/W.() -bitonner/a0() -bitord/S. -bitos -bittacus -bitte/S. -bitter/a0a+() -bitture/S. -bitturer/a0a+() -bitumage/S. -bitume/S. -bitumée/F.() -bitumer/a0a+() -bitumeuse/W.() -bituminer/a0a+() -bitumineuse/W.() -biturbine/S. -biture/S. -biturer/a0a+() -biunivoque/S. -biunivoquement -bivalence/S. -bivalente/F.() -bivaluée/F.() -bivalve/S. -bivariante/F.() -biveau/X. -bivouac/S. -bivouaquer/a0() -biwa/S. -bizarre/S. -bizarrement -bizarrerie/S. -bizarroïde/S. -bizut/S. -bizutage/S. -bizutée/F.() -bizuter/a0a+() -blabla/S. -blablabla/S. -blablater/a0() -black/S. -blackboulage/S. -blackboulée/F.() -blackbouler/a0a+() -black-out -black-rot/S. -blafarde/F.() -blague/S. -blaguer/a0() -blagueuse/F.() -blair/S. -blaireau/X. -blairer/a0a+() -blâmable/S. -blâme/S. -blâmée/F.() -blâmer/a0a+() -blanc-bec -blanc-estoc -blanc-étoc -blanchaille/S. -blanchâtre/S. -blanche/F.() -blanchet/S. -blancheur/S. -blanchie/F.() -blanchiment/S. -blanchir/f0f+() -blanchissage/S. -blanchissante/F.() -blanchissement/S. -blanchisserie/S. -blanchisseuse/F.() -blanc-manger -blancs-becs -blanc-seing -blancs-estocs -blancs-étocs -blancs-mangers -blancs-seings -blandice/S. -blanquette/S. -blaps -blasée/F.() -blasement/S. -blaser/a0a+() -blason/S. -blasonnée/F.() -blasonnement/S. -blasonner/a0a+() -blasonneuse/F.() -blasphématoire/S. -blasphématrice/F.() -blasphème/S. -blasphémer/c0a+() -blastème/S. -blastocèle/S. -blastocyste/S. -blastoderme/S. -blastogenèse/S. -blastomycose/S. -blastopore/S. -blastula/S. -blatérer/c0() -blatte/S. -blazer/S. -blé/S. -blèche/S. -bled/S. -blédard/S. -bleffer/a0() -blême/S. -blêmir/f0f+() -blêmissement/S. -blende/S. -blennie/S. -blennorragie/S. -blennorragique/S. -blennorrhée/S. -blépharite/S. -blèsement/S. -bléser/c0() -blésité/S. -blessante/F.() -blessée/F.() -blesser/a0a+() -blessure/S. -blette/F.() -blette/S. -blettir/f0() -blettissement/S. -blettissure/S. -bleuâtre/S. -bleue/F.() -bleuet/S. -bleuetière/S. -bleuie/F.() -bleuir/f0f+() -bleuissement/S. -bleusaille/S. -bleutée/F.() -bleuter/a0a+() -blindage/S. -blinde/S. -blindé/S. -blindée/F.() -blinder/a0a+() -blindicide/S. -blinquer/a0a+() -blister/S. -blizzard/S. -blobloter/a0() -bloc/S. -blocage/S. -blocaille/S. -bloc-cuisine -bloc-cylindres -bloc-évier -blockbuster/S. -blockhaus -bloc-moteur -bloc-notes -blocs-cuisines -blocs-cylindres -blocs-éviers -blocs-moteurs -blocs-notes -blocus -blog/S. -blogosphère/S. -blogue/S. -bloguer/a0a+() -blogueuse/F.() -blondasse/S. -blonde/F.() -blondel/S. -blondeur/S. -blondie/F.() -blondine/F.() -blondinette/F.() -blondir/f0f+() -blondoyer/a0() -bloomer/S. -bloquante/F.() -bloquée/F.() -bloquer/a0a+() -blottie/F.() -blottir/f0f+() -blousante/F.() -blouse/S. -blousée/F.() -blouser/a0a+() -blouson/S. -blue-jean/S. -blues -bluette/F.() -bluff/S. -bluffer/a0a+() -bluffeuse/F.() -blutage/S. -bluter/a0a+() -blutiner/a0() -blutoir/S. -boa/S. -bob/S. -bobard/S. -bobèche/S. -bobeuse/F.() -bobinage/S. -bobine/S. -bobinée/F.() -bobiner/a0a+() -bobinette/S. -bobineuse/F.() -bobinière/F.() -bobinoir/S. -bobo/S. -bobonne/S. -bobsleigh/S. -bocage/S. -bocagère/F.() -bocal/X. -bocard/S. -bocardage/S. -bocarder/a0a+() -boche/S. -bock/S. -bodhi/S. -bodhisattva/S. -body/S. -bodyboard/S. -bodybuilding/S. -boësse/S. -boëte/S. -boëtte/S. -boetter/a0a+() -bœuf/S. -bof -boghei/S. -bogie/S. -bogue/S. -boguée/F.() -boguet/S. -bohème/S. -bohémienne/F.() -bohrium/S. -boiler/S. -boille/S. -boire/xC() -bois -boisage/S. -boisée/F.() -boisement/S. -boiser/a0a+() -boiserie/S. -boiseuse/F.() -boisseau/X. -boisselière/F.() -boissellerie/S. -boisson/S. -boîte/S. -boitement/S. -boiter/a0a+() -boiterie/S. -boiteuse/W.() -boîtier/S. -boitillante/F.() -boitillement/S. -boitiller/a0() -boit-sans-soif -boitte/S. -bol/S. -bolchevique/S. -bolchevisation/S. -bolcheviser/a0a+() -bolchevisme/S. -bolcheviste/S. -boldo/S. -bolduc/S. -bolée/S. -boléro/S. -bolet/S. -boletale/S. -bolide/S. -bolier/S. -bolivar/S. -bolivares -bolivarienne/F.() -bolivienne/F.() -bollard/S. -bollywoodienne/F.() -bolomètre/S. -bombacée/S. -bombage/S. -bombagiste/S. -bombance/S. -bombante/F.() -bombardée/F.() -bombardement/S. -bombarder/a0a+() -bombardier/S. -bombardon/S. -bombe/S. -bombée/F.() -bombement/S. -bomber/a0a+() -bombeuse/F.() -bombinette/S. -bombyx -bôme/S. -bonace/S. -bonapartisme/S. -bonapartiste/S. -bonasse/S. -bonasserie/S. -bonbon/S. -bonbonne/S. -bonbonnière/S. -bon-chrétien -bond/S. -bonde/S. -bondée/F.() -bondelle/S. -bonder/a0a+() -bondérisation/S. -bondériser/a0a+() -bondieuserie/S. -bondir/f0() -bondissante/F.() -bondissement/S. -bondon/S. -bondonner/a0a+() -bondonnière/S. -bondrée/S. -bonellie/S. -bonheur/S. -bonheur-du-jour -bonheurs-du-jour -bonhomie/S. -bonhomme/S. -boni/S. -bonichon/S. -bonifiante/F.() -bonification/S. -bonifiée/F.() -bonifier/a0a+() -boniment/S. -bonimenter/a0() -bonimenteuse/F.() -bonite/S. -bonjour -bonjour/S. -bonne/F.() -bonne/S. -bonne-maman -bonnement -bonnes-mamans -bonnet/S. -bonneteau/X. -bonneterie/S. -bonneteur/S. -bonnetière/F.() -bonnette/S. -bonniche/S. -bonobo/S. -bon-papa -bonsaï/S. -bons-chrétiens -bonshommes -bonsoir -bonsoir/S. -bons-papas -bonté/S. -bonus -bonze/S. -bonzerie/S. -bookmaker/S. -booléenne/F.() -boom/S. -boomerang/S. -booster/S. -bootlegger/S. -bop -boqueteau/X. -boquilloner/a0() -bora/S. -boraine/F.() -borate/S. -borax -borborygme/S. -borchtch/S. -bord/S. -bordage/S. -bordante/F.() -bordeaux -bordée/F.() -bordel/S. -bordelaise/F.() -bordélique/S. -bordéliser/a0a+() -border/a0a+() -bordereau/X. -borderie/S. -bordeuse/S. -bordière/F.() -bordigue/S. -bordisme/S. -bordure/S. -bordurer/a0a+() -bordurette/S. -bordureuse/S. -bore/S. -boréale/W.() -boréals -borée/S. -borélienne/F.() -borgne/S. -borgnoter/a0a+() -boriquée/F.() -bornage/S. -borne/S. -bornée/F.() -borne-fontaine -borner/a0a+() -bornes-fontaines -bornier/S. -bornitude/S. -bornologie/S. -bornologique/S. -bornoyer/a0a+() -borraginacée/S. -bort/S. -bortsch/S. -bosco/S. -boscotte/F.() -boskoop/S. -bosniaque/S. -bosnienne/F.() -boson/S. -bosonique/S. -bosquet/S. -boss -bossage/S. -bossanova -bosse/S. -bosselage/S. -bosselée/F.() -bosseler/d0a+() -bossellement/S. -bosselure/S. -bosser/a0a+() -bossette/S. -bosseuse/F.() -bossoir/S. -bossue/F.() -bossuée/F.() -bossuer/a0a+() -boston/S. -bostonner/a0() -bostryche/S. -botanique/S. -botaniquement -botaniser/a0() -botaniste/S. -bote/F.() -bothriocéphale/S. -botnet/S. -bottage/S. -botte/S. -bottée/F.() -bottelage/S. -bottelée/F.() -botteler/d0a+() -botteleuse/F.() -botter/a0a+() -botteuse/F.() -bottière/F.() -bottillon/S. -bottin/S. -bottine/S. -bottiner/a0a+() -botulique/S. -botulisme/S. -boubou/S. -boubouler/a0() -bouc/S. -boucan/S. -boucanage/S. -boucane/S. -boucanée/F.() -boucaner/a0a+() -boucanier/S. -boucau/S. -boucaud/S. -bouchage/S. -bouchardage/S. -boucharde/S. -boucharder/a0a+() -bouchardeuse/S. -bouche/S. -bouche-à-bouche -bouchée/F.() -bouchée/S. -bouche-pores -boucher/a0a+() -bouchère/F.() -boucherie/S. -bouche-trou/S. -boucheuse/F.() -boucholeuse/F.() -bouchon/S. -bouchonnée/F.() -bouchonner/a0a+() -bouchonneuse/S. -bouchonnière/F.() -bouchot/S. -bouclage/S. -boucle/S. -bouclée/F.() -bouclement/S. -boucler/a0a+() -bouclette/S. -bouclier/S. -bouddha/S. -bouddhique/S. -bouddhisme -bouddhiste/S. -boudée/F.() -bouder/a0a+() -bouderie/S. -boudeuse/F.() -boudin/S. -boudinage/S. -boudinée/F.() -boudiner/a0a+() -boudineuse/S. -boudoir/S. -boue/S. -bouée/S. -boueur/S. -boueuse/W.() -bouffante/F.() -bouffarde/S. -bouffe/S. -bouffée/F.() -bouffée/S. -bouffer/a0a+() -bouffetance/S. -bouffette/S. -bouffeuse/F.() -bouffie/F.() -bouffir/f0f+() -bouffissure/S. -bouffon/S. -bouffonner/a0() -bouffonnerie/S. -bougainvillée/S. -bougainvillier/S. -bouge/S. -bougeoir/S. -bougeotte/S. -bouger/a0a+() -bougie/S. -bougnat/S. -bougnoule/S. -bougonne/F.() -bougonnement/S. -bougonner/a0a+() -bougran/S. -bougrement -bougresse/F.() -boui-boui -bouif/S. -bouillabaisse/S. -bouillante/F.() -bouilleuse/F.() -bouillie/F.() -bouillie/S. -bouillir/iQ() -bouilloire/S. -bouillon/S. -bouillonnante/F.() -bouillonnée/F.() -bouillonnement/S. -bouillonner/a0a+() -bouillotte/S. -bouillotter/a0() -bouis-bouis -boulaie/S. -boulanger/a0a+() -boulangère/F.() -boulangerie/S. -boulangisme/S. -boulangiste/S. -boulbène/S. -boule/S. -bouleau/X. -boule-de-neige -bouledogue/S. -boulée/F.() -bouler/a0a+() -boules-de-neige -bouletée/F.() -boulette/F.() -boulevard/S. -boulevardière/F.() -bouleversante/F.() -bouleversée/F.() -bouleversement/S. -bouleverser/a0a+() -boulgour/S. -boulier/S. -boulimie/S. -boulimique/S. -boulin/S. -bouline/S. -bouliner/a0a+() -boulingrin/S. -boulinière/F.() -bouliste/S. -boulocher/a0() -boulodrome/S. -bouloir/S. -boulon/S. -boulonnage/S. -boulonner/a0a+() -boulonnerie/S. -boulonneuse/S. -boulonnière/F.() -boulote/F.() -boulotte/F.() -boulotter/a0a+() -boumer/a9() -bouquet/S. -bouquetière/F.() -bouquetin/S. -bouquin/S. -bouquiner/a0a+() -bouquinerie/S. -bouquineuse/F.() -bouquiniste/S. -bourbe/S. -bourbeuse/W.() -bourbier/S. -bourbillon/S. -bourbon/S. -bourbonienne/F.() -bourdaine/S. -bourde/S. -bourder/a0() -bourdon/S. -bourdonnante/F.() -bourdonnée/F.() -bourdonnement/S. -bourdonner/a0() -bourdonneuse/F.() -bourg/S. -bourgade/S. -bourge/S. -bourgeoise/F.() -bourgeoisement -bourgeoisiale/W.() -bourgeoisie/S. -bourgeon/S. -bourgeonnante/F.() -bourgeonnement/S. -bourgeonner/a0() -bourgeonneuse/W.() -bourgeron/S. -bourgmestre/S. -bourgogne/S. -bourguignonne/F.() -bourlinguer/a0() -bourlingueuse/F.() -bourrache/S. -bourrade/S. -bourrage/S. -bourrasque/S. -bourrative/F.() -bourre/S. -bourreau/X. -bourrée/F.() -bourrée/S. -bourrelée/F.() -bourrèlement/S. -bourreler/d0a+() -bourrelet/S. -bourrelière/F.() -bourrellerie/S. -bourrer/a0a+() -bourrette/S. -bourreuse/F.() -bourriche/S. -bourrichon/S. -bourricot/S. -bourrin/S. -bourrique/S. -bourriquet/S. -bourroir/S. -bourrue/F.() -bourse/S. -boursicotage/S. -boursicoter/a0() -boursicoteuse/F.() -boursicotière/F.() -boursière/F.() -boursouflage/S. -boursouflée/F.() -boursouflement/S. -boursoufler/a0a+() -boursouflure/S. -bouscueil/S. -bousculade/S. -bousculée/F.() -bousculer/a0a+() -bouse/S. -bouseuse/W.() -bousier/S. -bousillage/S. -bousillée/F.() -bousiller/a0a+() -bousilleuse/F.() -bousin/S. -boussole/S. -boustifaille/S. -boustifailler/a0() -boustrophédon/S. -bout/S. -boutade/S. -boutante/F.() -boutargue/S. -bout-dehors -boutée/F.() -boute-en-train -boutefas -boutefeu/X. -bouteille/S. -bouteiller/S. -bouteiller/a0a+() -bouteillon/S. -bouter/a0a+() -bouterolle/S. -bouteroue/S. -boute-selle -bouteur/S. -boutique/S. -boutiquière/F.() -boutisme/S. -boutisse/S. -boutiste/S. -boutoir/S. -bouton/S. -bouton-d'argent -bouton-d'or -boutonnage/S. -boutonnée/F.() -boutonner/a0a+() -boutonneuse/W.() -boutonnière/F.() -bouton-poussoir -bouton-pression -boutons-d'argent -boutons-d'or -boutons-pression -boutre/S. -bouts-dehors -bouts-rimés -bouturage/S. -bouture/S. -bouturer/a0a+() -bouverie/S. -bouvet/S. -bouveteuse/S. -bouvière/F.() -bouvillon/S. -bouvreuil/S. -bouvril/S. -bovarysme/S. -bovidé/S. -bovine/F.() -bowling/S. -bow-window/S. -box -box-calf/S. -boxe/S. -boxer/S. -boxer/a0a+() -boxeuse/F.() -box-office/S. -boxonner/a0() -boy/S. -boyard/S. -boyau/X. -boyauderie/S. -boyaudière/F.() -boyauter/a0a+() -boycott/S. -boycottage/S. -boycottée/F.() -boycotter/a0a+() -boycotteuse/F.() -boy-scout/S. -brabançonne/F.() -brabant/S. -bracelet/S. -bracelet-montre -bracelets-montres -brachiale/W.() -brachiopode/S. -brachiosaure/S. -brachycéphale/S. -brachylogie/S. -braconnage/S. -braconnée/F.() -braconner/a0a+() -braconnière/F.() -bractéale/W.() -bractée/S. -bradage/S. -bradée/F.() -bradel/S. -brader/a0a+() -braderie/S. -bradeuse/F.() -bradycardie/S. -bradype/S. -braguette/S. -brahmane/S. -brahmanique/S. -brahmanisme/S. -brai/S. -braillante/F.() -braillarde/F.() -braille/S. -braillement/S. -brailler/a0a+() -brailleuse/F.() -braiment/S. -brainstorming/S. -brain-trust/S. -braire/wM() -braise/S. -braisée/F.() -braiser/a0a+() -braisière/S. -brame/S. -bramement/S. -bramer/a0() -bran/S. -brancard/S. -brancardage/S. -brancarder/a0a+() -brancardière/F.() -branchage/S. -branche/S. -branchée/F.() -branchement/S. -brancher/a0a+() -branchette/S. -branchiale/W.() -branchie/S. -branchiopode/S. -branchue/F.() -brandade/S. -brande/S. -brandebourg/S. -brandie/F.() -brandiller/a0a+() -brandir/f0f+() -brandon/S. -brandy/S. -branlante/F.() -branle/S. -branle-bas -branlée/S. -branlement/S. -branler/a0a+() -branlette/S. -branleuse/F.() -branlocher/a0a+() -brante/S. -braquage/S. -braque/S. -braquée/F.() -braquemart/S. -braquer/a0a+() -braquet/S. -braqueuse/F.() -bras -brasage/S. -braser/a0a+() -brasero/S. -braseuse/F.() -brasier/S. -brasiller/a0() -bras-le-corps -brassage/S. -brassard/S. -brasse/S. -brassée/F.() -brassée/S. -brasser/a0a+() -brasserie/S. -brasseuse/F.() -brasseyer/a0a+() -brassicole/S. -brassière/S. -brassin/S. -brasure/S. -bravache/S. -bravade/S. -brave/S. -bravée/F.() -bravement -braver/a0a+() -bravo -bravo/I. -bravo/S. -bravoure/S. -brayer/a0a+() -break/S. -breakfast/S. -brebis -brèche/S. -brèche-dent -bréchet/S. -bréchique/S. -bredouillage/S. -bredouille/S. -bredouillée/F.() -bredouillement/S. -bredouiller/a0a+() -bredouilleuse/F.() -bredouillis -breffage/S. -brelan/S. -brèle/S. -brêler/a0a+() -brelle/S. -breller/a0a+() -breloque/S. -brème/S. -bren/S. -brésil -brésilienne/F.() -brésiller/a0a+() -bretèche/S. -bretelle/S. -bretessée/F.() -bretonnante/F.() -bretonne/F.() -bretteler/d0a+() -bretter/a0a+() -bretteur/S. -bretzel/S. -breuvage/S. -brève/F.() -brevet/S. -brevetabilité/S. -brevetable/S. -brevetée/F.() -breveter/d0a+() -bréviaire/S. -bréviligne/S. -brévité/S. -briard/S. -bribe/S. -bric -bric-à-brac -brick/S. -bricolage/S. -bricole/S. -bricolée/F.() -bricoler/a0a+() -bricoleuse/F.() -bridage/S. -bride/S. -bridée/F.() -brider/a0a+() -brideuse/F.() -bridge/S. -bridger/a0() -bridgeuse/F.() -bridon/S. -brie/S. -briefer/a0a+() -briefing/S. -brièvement -brièveté/S. -briffe/S. -briffer/a0a+() -brigade/S. -brigadière/F.() -brigand/S. -brigandage/S. -brigander/a0a+() -briganderie/S. -brigandine/S. -brigantine/F.() -brightisme/S. -briguée/F.() -briguer/a0a+() -brillamment -brillance/S. -brillantage/S. -brillante/F.() -brillantée/F.() -brillanter/a0a+() -brillantine/S. -brillantiner/a0a+() -briller/a0() -brimade/S. -brimbalement/S. -brimbaler/a0a+() -brimborion/S. -brimée/F.() -brimer/a0a+() -brin/S. -brindezingue/S. -brindille/S. -bringeure/S. -bringue/S. -bringuebalante/F.() -bringuebaler/a0a+() -brinquebalante/F.() -brinquebaler/a0a+() -brio/S. -brioche/S. -briochée/F.() -briocher/a0a+() -brique/S. -briquée/F.() -briquer/a0a+() -briquet/S. -briquetage/S. -briquetée/F.() -briqueter/d0a+() -briqueterie/S. -briqueteuse/F.() -briquetier/S. -briquette/S. -bris -brisance/S. -brisant/S. -brisante/F.() -briscard/S. -brise/S. -brise-béton -brise-bise -brise-copeaux -brisée/F.() -brisée/S. -brise-fer -brise-glace -brise-jet -brise-lames -brise-mariage -brise-mèche -brisement/S. -brise-mottes -briser/a0a+() -brise-soleil -brise-tout -briseuse/F.() -brise-vent -brisis -briska/S. -brisque/S. -bristol/S. -brisure/S. -britannique/S. -brize/S. -broadcaster/a0a+() -broc/S. -brocantage/S. -brocante/S. -brocanter/a0a+() -brocanteuse/F.() -brocard/S. -brocardée/F.() -brocarder/a0a+() -brocart/S. -brocatelle/S. -brochage/S. -brochante/F.() -broche/S. -brochée/F.() -brocher/a0a+() -brochet/S. -brocheton/S. -brochette/S. -brocheuse/F.() -brochure/S. -brocoli/S. -brodée/F.() -brodequin/S. -broder/a0a+() -broderie/S. -brodeuse/F.() -broiement/S. -broigne/S. -brol/S. -bromate/S. -brome/S. -broméliacée/S. -bromhydrique/S. -bromique/S. -bromisme/S. -bromure/S. -bronche/S. -bronchectasie/S. -broncher/a0() -bronchiectasie/S. -bronchiole/S. -bronchiolite/S. -bronchique/S. -bronchite/S. -bronchiteuse/W.() -bronchitique/S. -broncho -bronchographie/S. -broncho-pneumonie/S. -bronchoscopie/S. -brontosaure/S. -bronzage/S. -bronzante/F.() -bronze/S. -bronzée/F.() -bronzer/a0a+() -bronzette/S. -bronzeuse/F.() -bronzière/F.() -brook/S. -broquanter/a0() -broque/S. -broquer/a0() -broquette/S. -brossage/S. -brosse/S. -brosser/a0a+() -brosserie/S. -brossière/F.() -brou/S. -brouet/S. -brouette/S. -brouetter/a0a+() -brouhaha/S. -brouillage/S. -brouillamini/S. -brouillard/S. -brouillassée/F.() -brouillasser/a9() -brouille/S. -brouillée/F.() -brouiller/a0a+() -brouillerie/S. -brouilleuse/F.() -brouillon/S. -brouillonner/a0a+() -broum -broussaille/S. -broussailleuse/W.() -broussard/S. -brousse/S. -broussin/S. -brout/S. -broutard/S. -broutement/S. -brouter/a0a+() -broutille/S. -brownie/S. -brownienne/F.() -browniennement -browning/S. -broyage/S. -broyée/F.() -broyer/a0a+() -broyeuse/F.() -brrr -bru/S. -bruant/S. -brucelles -brucellose/S. -bruche/S. -brucine/S. -brugnon/S. -brugnonier/S. -bruine/S. -bruinée/F.() -bruiner/a9() -bruineuse/W.() -bruir/f0f+() -bruire/yJ() -bruissage/S. -bruissante/F.() -bruissement/S. -bruisser/a0() -bruit/S. -bruitage/S. -bruitée/F.() -bruiter/a0a+() -bruiteuse/F.() -brûlage/S. -brûlante/F.() -brûle-bouts -brûlée/F.() -brûle-gueule -brûlement/S. -brûle-parfum/S. -brûle-pourpoint -brûler/a0a+() -brûlerie/S. -brûleur/S. -brûlis -brûloir/S. -brûlot/S. -brûlure/S. -brumaire/S. -brumasser/a9() -brume/S. -brumer/a9() -brumeuse/W.() -brumisateur/S. -brunante/S. -brunâtre/S. -brunch/S. -brune/F.() -brunette/F.() -brunie/F.() -brunir/f0f+() -brunissage/S. -brunissante/F.() -brunissement/S. -brunisseuse/F.() -brunissoir/S. -brunissure/S. -brushing/S. -brusque/S. -brusquée/F.() -brusquement -brusquer/a0a+() -brusquerie/S. -brutale/W.() -brutalement -brutalisée/F.() -brutaliser/a0a+() -brutalité/S. -brute/F.() -brute/S. -bruxelloise/F.() -bruyamment -bruyante/F.() -bruyère/S. -bryologie/S. -bryone/S. -bu/||-- -buanderie/S. -buandière/F.() -bubale/S. -bubon/S. -bubonique/S. -buccale/W.() -buccin/S. -buccinateur/S. -bucco -bucco-dentaire/S. -bucco-génitale/W.() -bûche/S. -bûchée/F.() -bûcher/S. -bûcher/a0a+() -bûcheronnage/S. -bûcheronne/F.() -bûcheronner/a0() -bûchette/S. -bûcheuse/F.() -bucolique/S. -bucoliquement -bucrane/S. -budget/S. -budgétaire/S. -budgétairement -budgéter/c0a+() -budgétisation/S. -budgétiser/a0a+() -budgétivore/S. -buée/S. -buffet/S. -buffetière/F.() -bufflesse/F.() -buffleterie/S. -buffletin/S. -bufflonne/F.() -bug/S. -buggy/S. -bugle/S. -buglosse/S. -bugne/S. -bugrane/S. -building/S. -buire/S. -buis -buisson/S. -buissonnante/F.() -buissonneuse/W.() -buissonnière/F.() -bulb/S. -bulbaire/S. -bulbe/S. -bulbeuse/W.() -bulbille/S. -bulgare/S. -bull/S. -bullaire/S. -bulldozer/S. -bulle/S. -bullée/F.() -buller/a0() -bulletin/S. -bulleuse/W.() -bull-finch/S. -bull-terrier/S. -buna/S. -bungalow/S. -bunker/S. -bupreste/S. -buraliste/S. -bure/S. -bureau/X. -bureaucrate/S. -bureaucratie/S. -bureaucratique/S. -bureaucratiquement -bureaucratisation/S. -bureaucratisée/F.() -bureaucratiser/a0a+() -bureauticienne/F.() -bureautique/S. -burèle/S. -burelée/F.() -burelle/S. -burette/S. -burgau/S. -burgaudine/S. -burger/S. -burin/S. -burinage/S. -burinée/F.() -buriner/a0a+() -burineuse/F.() -burlesque/S. -burlesquement -burlingue/S. -burne/S. -burnous -burn-out -buron/S. -buronnière/F.() -burqa/S. -burrito/S. -burundaise/F.() -bus -busard/S. -busc/S. -buse/S. -buser/a0a+() -bush/S. -business -businessman/S. -businesswoman/S. -busquée/F.() -busserole/S. -buste/S. -bustier/S. -but/S. -butadiène/S. -butane -butanier/S. -bute/S. -butée/F.() -butée/S. -butène/S. -buter/a0a+() -buteur/S. -butin/S. -butinée/F.() -butiner/a0a+() -butineuse/F.() -butoir/S. -butome/S. -butor/S. -buttage/S. -butte/S. -buttée/F.() -butter/a0a+() -buttoir/S. -butylène/S. -butylique/S. -butyrate/S. -butyreuse/W.() -butyrine/S. -butyrique/S. -butyromètre/S. -buvable/S. -buvard/S. -buvée/S. -buvetière/F.() -buvette/S. -buveuse/F.() -buvoter/a0() -buxacée/S. -buzz -bye -bye-bye -by-pass -byssinose/S. -byssus -byte/S. -byzantine/F.() -byzantinisme/S. -byzantiniste/S. -byzantinologie/S. -c -cP/||-- -cSt/||-- -ça -çà -cab/S. -cabale/S. -cabaler/a0() -cabalistique/S. -cabalistiquement -caban/S. -cabane/S. -cabaner/a0a+() -cabanon/S. -cabaret/S. -cabaretière/F.() -cabas -cabasset/S. -cabèche/S. -cabernet/S. -cabestan/S. -cabiai/S. -cabillaud/S. -cabillot/S. -cabine/S. -cabiner/a0() -cabinet/S. -câblage/S. -câble/S. -câblée/F.() -câbler/a0a+() -câblerie/S. -câbleuse/F.() -câblière/F.() -câbliste/S. -câblodistributeur/S. -câblodistribution/S. -câblogramme/S. -câblo-opérateur/S. -câblot/S. -cabocharde/F.() -caboche/S. -cabochée/F.() -cabochon/S. -cabosse/S. -cabossée/F.() -cabosser/a0a+() -cabotage/S. -cabote/F.() -caboter/a0() -caboteur/S. -cabotinage/S. -cabotine/F.() -cabotiner/a0() -caboulot/S. -cabrée/F.() -cabrer/a0a+() -cabri/S. -cabriole/S. -cabrioler/a0() -cabriolet/S. -cabus -caca/S. -cacaber/a0() -cacahuète/S. -cacao/S. -cacaotée/F.() -cacaotière/F.() -cacaoyère/F.() -cacarder/a0() -cacatoès -cacatois -cachalot/S. -cache/S. -cache-brassière -cache-cache -cache-cœur -cache-col -cache-corset -cachectique/S. -cachée/F.() -cache-entrée -cache-flamme -cache-lait -cachemire/S. -cache-misère -cache-museau -cache-nez -cache-pot -cache-poussière -cache-prise -cacher/a0a+() -cache-radiateur -cachère/S. -cache-sexe -cachet/S. -cachetage/S. -cache-tampon -cachetée/F.() -cacheter/d0a+() -cacheton/S. -cachetonner/a0() -cachette/S. -cachexie/S. -cachot/S. -cachotterie/S. -cachottière/F.() -cachou/S. -cachucha/S. -cacique/S. -cacochyme/S. -cacodylate/S. -cacographe/S. -cacographie/S. -cacolet/S. -cacologie/S. -cacophonie/S. -cacophonique/S. -cacosmie/S. -cactacée/S. -cactée/S. -cactus -cadancher/a0() -cadastrage/S. -cadastrale/W.() -cadastre/S. -cadastrer/a0a+() -cadavéreuse/W.() -cadavérique/S. -cadavre/S. -caddie/S. -caddy -cade/S. -cadeau/X. -cadeauter/a0a+() -cadenas -cadenassable/S. -cadenassée/F.() -cadenasser/a0a+() -cadence/S. -cadencée/F.() -cadencement/S. -cadencer/a0a+() -cadenette/S. -cadette/F.() -cadi/S. -cadmiage/S. -cadmie/S. -cadmium/S. -cadogan/S. -cadrage/S. -cadran/S. -cadrante/F.() -cadrat/S. -cadratin/S. -cadrature/S. -cadre/S. -cadrer/a0a+() -cadreuse/F.() -caduc/S. -caducée/S. -caducité/S. -caduque/S. -cæcale/W.() -cæcum/S. -cænogenèse/S. -cæsine -cafard/S. -cafardage/S. -cafarder/a0a+() -cafardeuse/F.() -cafardeuse/W.() -café/S. -café-concert -caféière/F.() -caféine/S. -caféisme/S. -cafés-concerts -cafés-théâtres -cafetan/S. -cafeter/d0a+() -cafétéria/S. -café-théâtre -cafetière/F.() -cafouillage/S. -cafouiller/a0() -cafouillis -cafre/S. -caftan/S. -cafter/a0a+() -cafteuse/F.() -cage/S. -cageot/S. -cagerotte/S. -caget/S. -cagette/S. -cagibi/S. -cagnarde/F.() -cagnarder/a0() -cagne/S. -cagner/a0() -cagneuse/W.() -cagnotte/S. -cagote/F.() -cagoterie/S. -cagoularde/F.() -cagoule/S. -cagoulée/F.() -cague/S. -caguer/a0() -cahier/S. -cahin-caha -cahot/S. -cahotante/F.() -cahotée/F.() -cahotement/S. -cahoter/a0a+() -cahoteuse/W.() -cahute/S. -caïd/S. -caïdat/S. -caïeu/X. -caillage/S. -caillassage/S. -caillasser/a0a+() -caille/S. -caillebotis -caillebotte/S. -caillebottée/F.() -caillebotter/a0a+() -caillée/F.() -caillement/S. -cailler/a0a+() -cailleter/d0() -caillot/S. -caillou/X. -cailloutage/S. -cailloutée/F.() -caillouter/a0a+() -caillouteuse/W.() -cailloutis -caïman/S. -caïmanter/a0a+() -caïque/S. -cairn/S. -cairote/S. -caisse/S. -caisserie/S. -caissette/S. -caissière/F.() -caisson/S. -cajeput/S. -cajeputier/S. -cajoler/a0a+() -cajolerie/S. -cajoleuse/F.() -cajou/S. -cajun/S. -cake/S. -cal/S. -cal/U.||-- -calabraise/F.() -calade/S. -caladium/S. -calage/S. -calaison/S. -calamar/S. -calambac/S. -calame/S. -calaminage/S. -calamine/S. -calaminer/a0a+() -calamistrée/F.() -calamistrer/a0a+() -calamité/S. -calamiteuse/W.() -calancher/a0() -calandrage/S. -calandre/S. -calandrer/a0a+() -calandreuse/F.() -calanque/S. -calao/S. -calcaire/S. -calcanéum/S. -calcédoine/S. -calcémie/S. -calcéolaire/S. -calcicole/S. -calcification/S. -calcifiée/F.() -calcifuge/S. -calcin/S. -calcination/S. -calcinée/F.() -calciner/a0a+() -calciphobe/S. -calcique/S. -calcite/S. -calcium/S. -calciurie/S. -calcul/S. -calculabilité/S. -calculable/S. -calculatoire/S. -calculatrice/F.() -calculée/F.() -calculer/a0a+() -calculette/S. -calculeuse/W.() -caldarium/S. -caldeira/S. -cale/S. -calebasse/S. -calebassier/S. -calèche/S. -caleçon/S. -caleçonnade/S. -calédonienne/F.() -calée/F.() -calembour/S. -calembredaine/S. -calendaire/S. -calendes -calendrier/S. -cale-pied/S. -calepin/S. -calepinage/S. -caler/a0a+() -caleter/d0a+() -calfat/S. -calfatage/S. -calfatée/F.() -calfater/a0a+() -calfeutrage/S. -calfeutrée/F.() -calfeutrement/S. -calfeutrer/a0a+() -calibrage/S. -calibration/S. -calibre/S. -calibrée/F.() -calibrer/a0a+() -calibreuse/F.() -calice/S. -calicot/S. -calicule/S. -calière/F.() -califale/W.() -califat/S. -calife/S. -californienne/F.() -californium/S. -califourchon -câlin/S. -câline/F.() -câliner/a0a+() -câlinerie/S. -caliorne/S. -calisson/S. -calleuse/W.() -call-girl/S. -calligramme/S. -calligraphe/S. -calligraphie/S. -calligraphiée/F.() -calligraphier/a0a+() -calligraphique/S. -calligraphiquement -callipyge/S. -callosité/S. -calmante/F.() -calmar/S. -calme/S. -calmée/F.() -calmement -calmer/a0a+() -calmir/f0() -calo -calomel/S. -calomniatrice/F.() -calomnie/S. -calomniée/F.() -calomnier/a0a+() -calomnieuse/W.() -calomnieusement -calorie/Um() -calorifère/S. -calorification/S. -calorifique/S. -calorifuge/S. -calorifugée/F.() -calorifuger/a0a+() -calorifugeuse/F.() -calorimètre/S. -calorimétrie/S. -calorimétrique/S. -calorique/S. -calorisation/S. -calot/S. -calotin/S. -calotte/S. -calotter/a0a+() -caloyère/F.() -calquage/S. -calque/S. -calquée/F.() -calquer/a0a+() -calqueuse/F.() -calter/a0a+() -calumet/S. -calure/S. -calus -calva/S. -calvados -calvaire/S. -calville/S. -calvinisme -calviniste/S. -calvitie/S. -calypso/S. -camaïeu/X. -camail/S. -camaldule/S. -camarade/S. -camaraderie/S. -camarde/F.() -camarilla/S. -cambiale/W.() -cambiste/S. -cambium/S. -cambodgienne/F.() -cambouis -cambrage/S. -cambrée/F.() -cambrement/S. -cambrer/a0a+() -cambrienne/F.() -cambriolage/S. -cambriole/S. -cambriolée/F.() -cambrioler/a0a+() -cambrioleuse/F.() -cambrousard/S. -cambrousse/S. -cambrure/S. -cambuse/S. -cambusier/S. -cambuter/a0a+() -came/S. -camée/F.() -camée/S. -caméléon/S. -camélia/S. -camélidé/S. -camelin/S. -cameline/S. -caméline/S. -camelle/S. -camelot/S. -camelote/S. -cameloter/a0() -camembérer/c0() -camembert/S. -camer/a0a+() -caméra/S. -cameraman/S. -camérier/S. -camériste/S. -camerlingue/S. -camerounaise/F.() -caméscope/S. -camion/S. -camion-citerne -camionnage/S. -camionner/a0a+() -camionnette/S. -camionneuse/F.() -camions-citernes -camisard/S. -camisole/S. -camomille/S. -camouflage/S. -camouflante/F.() -camouflée/F.() -camoufler/a0a+() -camouflet/S. -camoufleur/S. -camp/S. -campagnarde/F.() -campagne/S. -campagnol/S. -campane/S. -campanile/S. -campaniste/S. -campanulacée/S. -campanule/S. -campêche/S. -campée/F.() -campement/S. -camper/a0a+() -campeuse/F.() -camphre/S. -camphrée/F.() -camphrier/S. -campignienne/F.() -camping/S. -camping-car/S. -camping-gaz -campinoise/F.() -campos -campus -camuse/F.() -canada/S. -canadianisme/S. -canadienne/F.() -canaille/S. -canaillerie/S. -canal/X. -canalicule/S. -canalisable/S. -canalisation/S. -canalisatrice/F.() -canalisée/F.() -canaliser/a0a+() -cananéenne/F.() -canapé/S. -canapé-lit -canapés-lits -canard/S. -canardeau/X. -canarder/a0a+() -canardière/F.() -canari/S. -canasson/S. -canasta/S. -cancale/S. -cancan/S. -cancaner/a0() -cancanière/F.() -cancel/S. -cancer/S. -cancéreuse/W.() -cancérigène/S. -cancérisation/S. -cancériser/a0a+() -cancérologie -cancérologue/S. -canche/S. -cancre/S. -cancrelat/S. -candela/Um() -candélabre/S. -candeur/S. -candidate/F.() -candidature/S. -candide/S. -candidement -candidose/S. -candir/f0f+() -cane/S. -canepetière/S. -canéphore/S. -caner/a0() -caneton/S. -canette/S. -canevas -cangue/S. -caniche/S. -caniculaire/S. -canicule/S. -canidé/S. -canif/S. -canine/F.() -canine/S. -canisse/S. -canitie/S. -caniveau/X. -canna/S. -cannabinacée/S. -cannabinol/S. -cannabis -cannabisme/S. -cannage/S. -canne/S. -cannée/F.() -cannelée/F.() -canneler/d0a+() -cannelier/S. -cannelle/S. -cannelloni/S. -cannelure/S. -canner/a0a+() -cannetille/S. -canneuse/F.() -cannibale/S. -cannibaliser/a0a+() -cannibalisme/S. -cannisse/S. -canoë/S. -canoéiste/S. -canoë-kayak -canoës-kayaks -canon/S. -canoniale/W.() -canonicat/S. -canonicité/S. -canonique/S. -canoniquement -canonisable/S. -canonisation/S. -canonisée/F.() -canoniser/a0a+() -canoniste/S. -canonnade/S. -canonnage/S. -canonner/a0a+() -canonnière/F.() -canope/S. -canopée/S. -canot/S. -canotage/S. -canoter/a0() -canoteuse/F.() -canotière/F.() -cantabile -cantabile -cantal/S. -cantaloup/S. -cantate/S. -cantatrice/S. -canter/S. -canthare/S. -cantharellale/S. -cantharide/S. -cantharidine/S. -cantilène/S. -cantilever/S. -cantillation/S. -cantine/S. -cantiner/a0() -cantinière/F.() -cantique/S. -canton/S. -cantonade -cantonaise/F.() -cantonale/W.() -cantonnée/F.() -cantonnement/S. -cantonner/a0a+() -cantonnière/F.() -cantre/S. -canular/S. -canularesque/S. -canule/S. -canuler/a0a+() -canuse/S. -canut/S. -canyon/S. -canyoning/S. -canyonisme/S. -canyoniste/S. -canzone/S. -caoua/S. -caoutchouc/S. -caoutchoutage/S. -caoutchoutée/F.() -caoutchouter/a0a+() -caoutchouteuse/W.() -caoutchoutière/F.() -cap/S. -capable/S. -capacimètre/S. -capacitation/S. -capacité/S. -capacitive/F.() -capahuter/a0a+() -caparaçon/S. -caparaçonnée/F.() -caparaçonner/a0a+() -cape/S. -capéer/a0() -capelage/S. -capelan/S. -capelée/F.() -capeler/d0a+() -capelet/S. -capeline/S. -capésienne/F.() -capétienne/F.() -capeyer/a0() -capharnaüm/S. -capillaire/S. -capillarité/S. -capillicultrice/F.() -capilliculture/S. -capilotade/S. -capiston/S. -capitaine/S. -capitainerie/S. -capitale/W.() -capitalisable/S. -capitalisante/F.() -capitalisation/S. -capitaliser/a0a+() -capitalisme/S. -capitaliste/S. -capitalistique/S. -capitan/S. -capitation/S. -capite/S. -capitée/F.() -capiteuse/W.() -capitole/S. -capitoline/F.() -capiton/S. -capitonnage/S. -capitonnée/F.() -capitonner/a0a+() -capitoul/S. -capitulaire/S. -capitularde/F.() -capitulation/S. -capitule/S. -capitulée/F.() -capituler/a0() -capoeira/S. -caponne/F.() -caponner/a0() -caponnière/S. -caporale/W.() -caporaliser/a0a+() -caporalisme/S. -capot/S. -capotage/S. -capote/S. -capoter/a0a+() -cappa/S. -cappella -cappuccino/S. -câpre/S. -capricante/F.() -capriccio/S. -caprice/S. -capricieuse/W.() -capricieusement -capricorne/S. -câprier/S. -caprifoliacée/S. -caprine/F.() -capron/S. -caprylique/S. -capsaïcine/S. -capselle/S. -capsicum/S. -capside/S. -capsulage/S. -capsulaire/S. -capsule/S. -capsuler/a0a+() -captable/S. -captage/S. -captal/S. -captante/S. -captation/S. -captative/F.() -captativité/S. -captatoire/S. -captatrice/F.() -captée/F.() -capter/a0a+() -capte-suie -capteur/S. -captieuse/W.() -captieusement -captivante/F.() -captive/F.() -captivée/F.() -captiver/a0a+() -captivité/S. -capture/S. -capturée/F.() -capturer/a0a+() -capuce/S. -capuche/S. -capuchon/S. -capuchonnée/F.() -capuchonner/a0a+() -capucinade/S. -capucine/F.() -capulet/S. -caque/S. -caquelon/S. -caquer/a0a+() -caquet/S. -caquetage/S. -caquetante/F.() -caquètement/S. -caqueter/d0() -car -car/S. -carabe/S. -carabin/S. -carabine/S. -carabinée/F.() -carabinier/S. -carabistouille/S. -caracal/S. -caraco/S. -caracole/S. -caracoler/a0() -caractère/S. -caractérielle/F.() -caractérisante/F.() -caractérisation/S. -caractérisée/F.() -caractériser/a0a+() -caractéristique/S. -caractérologie/S. -caractérologique/S. -carafe/S. -carafon/S. -caraïbe/S. -carambolage/S. -carambole/S. -caramboler/a0a+() -carambolier/S. -carambouillage/S. -carambouilleur/S. -caramel/S. -caramélée/F.() -caramélisation/S. -caramélisée/F.() -caraméliser/a0a+() -carapace/S. -carapater/a0a+() -carat/S. -caravagesque/S. -caravagisme/S. -caravagiste/S. -caravanage/S. -caravane/S. -caravanière/F.() -caravaning/S. -caravansérail/S. -caravelle/S. -carbocation/S. -carbochimie/S. -carbonarisme/S. -carbonaro/S. -carbonatation/S. -carbonate/S. -carbonatée/F.() -carbonater/a0a+() -carbone/S. -carbonée/F.() -carbonifère/S. -carbonique/S. -carbonisation/S. -carbonisée/F.() -carboniser/a0a+() -carbonnade/S. -carbono/S. -carbonyle/S. -carborane/S. -carborundum/S. -carboxylase/S. -carboxyle/S. -carboxylique/S. -carburant/S. -carburateur/S. -carburation/S. -carbure/S. -carburéacteur/S. -carburée/F.() -carburer/a0a+() -carburière/F.() -carburologue/S. -carcailler/a0() -carcajou/S. -carcan/S. -carcasse/S. -carcel/S. -carcérale/W.() -carcinogène/S. -carcinogénétique/S. -carcinologie/S. -carcinome/S. -cardage/S. -cardamine/S. -cardamome/S. -cardamone/S. -cardan/S. -cardée/F.() -carder/a0a+() -cardère/S. -cardeuse/F.() -cardia/S. -cardiale/W.() -cardialgie/S. -cardiaque/S. -cardigan/S. -cardinalat/S. -cardinale/W.() -cardinalice/S. -cardiogramme/S. -cardiographe/S. -cardiographie/S. -cardioïde/S. -cardiologie/S. -cardiologue/S. -cardiomyopathie/S. -cardiopathie/S. -cardiopulmonaire/S. -cardiorespiratoire/S. -cardiotomie/S. -cardiotonique/S. -cardiovasculaire/S. -cardite/S. -cardon/S. -carême/S. -carénage/S. -carence/S. -carencer/a0a+() -carène/S. -carénée/F.() -caréner/c0a+() -carentielle/F.() -caressante/F.() -caresse/S. -caressée/F.() -caresser/a0a+() -carex -car-ferry/S. -cargaison/S. -cargo/S. -cargue/S. -carguer/a0a+() -cari/S. -cariacou/S. -cariatide/S. -caribe/S. -caribéenne/F.() -caribou/S. -caricaturale/W.() -caricaturalement -caricature/S. -caricaturée/F.() -caricaturer/a0a+() -caricaturiste/S. -carie/S. -cariée/F.() -carier/a0a+() -carieuse/W.() -carillon/S. -carillonnée/F.() -carillonnement/S. -carillonner/a0a+() -carillonneuse/F.() -cariste/S. -caritative/F.() -carline/F.() -carlingue/S. -carlinguier/S. -carlisme/S. -carliste/S. -carmagnole/S. -carme/S. -carmel/S. -carmeline/S. -carmélitaine/F.() -carmélite/S. -carmer/a0a+() -carmin/S. -carminative/F.() -carminée/F.() -carminer/a0a+() -carnage/S. -carnassière/F.() -carnation/S. -carnaval/S. -carnavalesque/S. -carne/S. -carneau/X. -carnée/F.() -carnèle/S. -carnet/S. -carnettiste/S. -carnier/S. -carnification/S. -carnifier/a0a+() -carnivore/S. -carnotset/S. -caroline/S. -carolingienne/F.() -carolus -caron/S. -caronade/S. -caroncule/S. -carotène/S. -caroténoïde/S. -carotide/S. -carotidienne/F.() -carottage/S. -carotte/S. -carottée/F.() -carotter/a0a+() -carotteuse/F.() -carottière/F.() -caroube/S. -caroubier/S. -carouble/S. -caroubler/a0a+() -carouge/S. -carpatique/S. -carpe/S. -carpeau/X. -carpelle/S. -carpette/S. -carpienne/F.() -carpillon/S. -carpocapse/S. -carpophore/S. -carquois -carrare/S. -carre/S. -carreau/X. -carrée/F.() -carrefour/S. -carrelage/S. -carrelée/F.() -carreler/d0a+() -carrelet/S. -carreleuse/F.() -carrément -carrer/a0a+() -carrick/S. -carrière/F.() -carriérisme/S. -carriériste/S. -carriole/S. -carrossable/S. -carrossage/S. -carrosse/S. -carrossée/F.() -carrosser/a0a+() -carrosserie/S. -carrossière/F.() -carrousel/S. -carroyage/S. -carroyer/a0a+() -carrure/S. -cartable/S. -carte/S. -cartel/S. -carte-lettre -cartellisation/S. -carter/S. -carter/a0a+() -carte-réponse -cartésianisme/S. -cartésienne/F.() -cartes-lettres -cartes-réponses -cartes-vues -carte-vue -carthaginoise/F.() -cartier/S. -cartilage/S. -cartilagineuse/W.() -cartographe/S. -cartographie/S. -cartographiée/F.() -cartographier/a0a+() -cartographique/S. -cartomancie/S. -cartomancienne/F.() -carton/S. -cartonnage/S. -cartonnée/F.() -cartonner/a0a+() -cartonnerie/S. -cartonneuse/W.() -cartonnière/F.() -carton-pâte -cartons-pâtes -cartoon/S. -cartoonesque/S. -cartothèque/S. -cartouche/S. -cartoucher/a0() -cartoucherie/S. -cartouchière/S. -cartulaire/S. -caryologie/S. -caryophyllacée/S. -caryopse/S. -caryotype/S. -cas -casanière/F.() -casaque/S. -casaquin/S. -casbah/S. -cascade/S. -cascader/a0() -cascadeuse/F.() -cascatelle/S. -case/S. -caséeuse/W.() -caséification/S. -caséifier/a0a+() -caséine -casemate/S. -casemater/a0a+() -caser/a0a+() -caserne/S. -casernée/F.() -casernement/S. -caserner/a0a+() -casernière/F.() -cash -casher -cash-flow/S. -casier/S. -casimir/S. -casino/S. -casinotière/F.() -casoar/S. -casquante/F.() -casque/S. -casquée/F.() -casquer/a0a+() -casquette/S. -casquettière/F.() -cassable/S. -cassage/S. -cassante/F.() -cassate/S. -cassation/S. -casse/S. -casseau/X. -casse-cou -casse-croûte -casse-croûter/a0() -casse-cul -casse-dalle -cassée/F.() -casse-graine -casse-gueule -cassement/S. -casse-noisettes -casse-noix -casse-pattes -casse-pieds -casse-pierre/S. -casse-pipe/S. -casser/a0a+() -casserole/S. -casse-tête -cassetin/S. -casse-tout -cassette/S. -casseuse/F.() -cassier/S. -cassine/S. -cassis -cassitérite/S. -cassolette/S. -casson/S. -cassonade/S. -cassoulet/S. -cassure/S. -castagne/S. -castagner/a0a+() -castagnettes -castard/S. -caste/S. -castel/S. -castillane/F.() -castine/S. -casting/S. -castor/S. -castoréum/S. -castrale/W.() -castrat/S. -castration/S. -castratrice/F.() -castrée/F.() -castrer/a0a+() -castrisme/S. -castriste/S. -casuel/S. -casuelle/F.() -casuiste/S. -casuistique/S. -catabatique/S. -catabolisme/S. -catachrèse/S. -cataclysmale/W.() -cataclysme/S. -cataclysmique/S. -catacombe/S. -catadioptre/S. -catadioptrique/S. -catafalque/S. -cataire/S. -catalane/F.() -catalase/S. -catalectique/S. -catalepsie/S. -cataleptique/S. -catalogage/S. -catalogne/S. -catalogue/S. -cataloguée/F.() -cataloguer/a0a+() -catalogueuse/F.() -catalpa/S. -catalyse/S. -catalyser/a0a+() -catalyseur/S. -catalytique/S. -catamaran/S. -cataphote/S. -cataplasme/S. -catapultage/S. -catapulte/S. -catapultée/F.() -catapulter/a0a+() -cataracte/S. -catarrhale/W.() -catarrhe/S. -catarrheuse/W.() -catastrophe/S. -catastrophée/F.() -catastropher/a0a+() -catastrophique/S. -catastrophisme/S. -catatonie/S. -catatonique/S. -catch/S. -catcher/a0() -catcheuse/F.() -catéchèse/S. -catéchiser/a0a+() -catéchisme/S. -catéchiste/S. -catéchistique/S. -catéchuménat/S. -catéchumène/S. -catégorème/S. -catégorie/S. -catégorielle/F.() -catégorique/S. -catégoriquement -catégorisante/F.() -catégorisation/S. -catégoriser/a0a+() -caténaire/S. -caténairiste/S. -cathare/S. -catharisme/S. -catharsique/S. -catharsis -cathartique/S. -cathédrale/S. -cathédrale/W.() -cathèdre/S. -catherinette/S. -cathéter/S. -cathétérisme/S. -catho/S. -cathode/S. -cathodique/S. -catholicisme/S. -catholicité/S. -catholique/S. -catholiquement -cati/S. -catie/F.() -catilinaire/S. -catimini -catin/S. -catiner/a0a+() -cation/S. -cationique/S. -catir/f0f+() -catissage/S. -catoblépas -catogan/S. -catoptrique/S. -cattleya/S. -caucasienne/F.() -caucasique/S. -cauchemar/S. -cauchemarder/a0() -cauchemardesque/S. -cauchemardeuse/W.() -caudale/W.() -caudataire/S. -caudillo/S. -caudrette/S. -caulescente/F.() -caulinaire/S. -cauris -causa -causale/W.() -causalisme/S. -causalité/S. -causante/F.() -causative/F.() -cause/S. -causée/F.() -causer/a0a+() -causerie/S. -causette/S. -causeuse/F.() -causse/S. -causticité/S. -caustique/S. -cautèle/S. -cauteleuse/W.() -cauteleusement -cautère/S. -cautérisante/F.() -cautérisation/S. -cautériser/a0a+() -caution/S. -cautionnée/F.() -cautionnement/S. -cautionner/a0a+() -cavacher/a0() -cavage/S. -cavaillon/S. -cavalcade/S. -cavalcader/a0() -cavale/S. -cavaler/a0a+() -cavalerie/S. -cavaleuse/F.() -cavalière/F.() -cavalièrement -cavatine/S. -cave/S. -caveau/X. -cavée/F.() -caver/a0a+() -caverne/S. -caverneuse/W.() -cavernicole/S. -cavet/S. -caveuse/F.() -caviar/S. -caviardage/S. -caviardée/F.() -caviarder/a0a+() -cavicorne/S. -caviste/S. -cavitation/S. -cavité/S. -cc -cd/U.||-- -ce/S. -céans -cébette/S. -ceci -cécidie/S. -cécité/S. -cédante/F.() -cédée/F.() -céder/c0a+() -cédérom/S. -cédétiste/S. -cedex -cédille/S. -cédraie/S. -cédrat/S. -cédratier/S. -cèdre/S. -cedrela/S. -cédulaire/S. -cédule/S. -cégep/S. -cégésimale/W.() -cégétiste/S. -cégotter/a0a+() -ceindre/wB() -ceinte/F.() -ceinturage/S. -ceinture/S. -ceinturée/F.() -ceinturer/a0a+() -ceinturière/F.() -ceinturon/S. -cela -céladon -célébrant/S. -célébration/S. -célèbre/S. -célébrée/F.() -célébrer/c0a+() -celebret/S. -célébrité/S. -celer/b0a+() -céleri/S. -célérifère/S. -céleri-rave -céleris-raves -célérité/S. -célesta/S. -céleste/S. -célestin/S. -célibat/S. -célibataire/S. -cella/S. -celle/S. -celle-ci -celle-là -cellérière/F.() -celles-ci -celles-là -cellier/S. -cellophane/S. -cellophaneuse/S. -cellulaire/S. -cellular/S. -cellule/S. -cellulite/S. -celluloïd/S. -cellulose/S. -cellulosique/S. -celte/S. -celtique/S. -celtisante/F.() -celtisme/S. -celui -celui-ci -celui-là -cément/S. -cémentation/S. -cémenter/a0a+() -c'en -cénacle/S. -cendre/S. -cendrée/F.() -cendrer/a0a+() -cendreuse/W.() -cendrier/S. -cendrillon/S. -cène/S. -cenelle/S. -cénesthésie/S. -cénesthésique/S. -cénesthopathie/S. -cénesthopathique/S. -cénobite/S. -cénobitique/S. -cénobitisme/S. -cénotaphe/S. -cens -censée/F.() -censément -censeur/S. -censière/F.() -censitaire/S. -censive/S. -censorat/S. -censoriale/W.() -censurable/S. -censure/S. -censurée/F.() -censurer/a0a+() -cent/S. -centaine/S. -centaure/S. -centaurée/S. -centavo/S. -centenaire/S. -centenier/S. -centennale/W.() -center/a0a+() -centésimale/W.() -centiare/S. -centibar/S. -centième/S. -centigrade/S. -centile/S. -centime/S. -centimétrique/S. -centipoise/S. -centistokes -centrafricaine/F.() -centrage/S. -centrale/W.() -centralement -centralienne/F.() -centralisation/S. -centralisatrice/F.() -centralisée/F.() -centraliser/a0a+() -centralisme/S. -centre/S. -centre-auto -centre-avant -centrée/F.() -centrer/a0a+() -centres-autos -centres-avant -centres-tirs -centres-villes -centre-tir -centreuse/F.() -centre-ville -centrifugation/S. -centrifuge/S. -centrifuger/a0a+() -centrifugeuse/F.() -centripète/S. -centrisme/S. -centriste/S. -centromère/S. -centrosome/S. -centuple/S. -centupler/a0a+() -centurie/S. -centurion/S. -cénure/S. -cénurose/S. -cep/S. -cépage/S. -cèpe/S. -cependant -céphalalgie/S. -céphalée/F.() -céphalée/S. -céphalique/S. -céphalopode/S. -céphalo-rachidienne/F.() -céphalothorax -céphéide/S. -cérambyx -cérame/S. -céramide/S. -céramique/S. -céramiste/S. -céramologie/S. -céramologue/S. -céraste/S. -cérat/S. -cerbère/S. -cercaire/S. -cerce/S. -cerceau/X. -cerclage/S. -cercle/S. -cerclée/F.() -cercler/a0a+() -cercopithèque/S. -cercueil/S. -céréale/S. -céréalicultrice/F.() -céréaliculture/S. -céréalière/F.() -cérébelleuse/W.() -cérébrale/W.() -cérébralisation/S. -cérébralité/S. -cérébro-spinale/W.() -cérémonial/S. -cérémonie/S. -cérémonielle/F.() -cérémonieuse/W.() -cérémonieusement -cerf/S. -cerfeuil/S. -cerfs-volants -cerf-volant -cerisaie/S. -cerise/S. -cerisette/S. -cerisier/S. -cérithe/S. -cérium/S. -cerne/S. -cerneau/X. -cernée/F.() -cerner/a0a+() -cerque/S. -certaine/F.() -certaine/F.() -certainement -certes -certificat/S. -certificateur/S. -certification/S. -certifiée/F.() -certifier/a0a+() -certitude/S. -cérulée/F.() -céruléenne/F.() -cérumen -cérumineuse/W.() -céruse/S. -cerveau/X. -cervelas -cervelet/S. -cervelle/S. -cervicale/W.() -cervidé/S. -cervier/S. -cervoise/S. -césalpiniacée/S. -césar/S. -césarienne/F.() -césariser/a0a+() -césarisme/S. -césine -césium/S. -cessante/F.() -cessation/S. -cesser/a0a+() -cessez-le-feu -cessibilité/S. -cessible/S. -cession/S. -cessionnaire/S. -c'est-à-dire -ceste/S. -césure/S. -cet -cétacé/S. -cétane/S. -cetera -cétérach/S. -cétoine/S. -cétone/S. -cétonique/S. -cette -ceux -ceux-ci -ceux-là -cévenole/F.() -cf -cgr/||-- -ch/||-- -chabichou/S. -chabler/a0a+() -chablis -chabot/S. -chabraque/S. -chabrol/S. -chabrot/S. -chacal/S. -cha-cha-cha -chaconne/S. -chacun -chacune -chadburn/S. -chadouf/S. -chafouine/F.() -chagrin/S. -chagrinante/F.() -chagrine/F.() -chagrinée/F.() -chagriner/a0a+() -chah/S. -chahut/S. -chahutée/F.() -chahuter/a0a+() -chahuteuse/F.() -chai/S. -chaînage/S. -chaîne/S. -chaînée/F.() -chaîner/a0a+() -chaînetière/F.() -chaînette/S. -chaîneuse/F.() -chaînière/F.() -chaîniste/S. -chaînon/S. -chair/S. -chaire/S. -chaise/S. -chaisière/F.() -chakra/S. -chalandage/S. -chalande/F.() -chalandise/S. -chalaze/S. -chalazion/S. -chalcogène/S. -chalcographe/S. -chalcographie/S. -chalcolithique/S. -chalcopyrite/S. -chalcosine/S. -chaldéenne/F.() -châle/S. -chalet/S. -chaleur/S. -chaleureuse/W.() -chaleureusement -châlit/S. -challenge/S. -challenger/S. -chaloir/pQ() -chaloupe/S. -chaloupée/F.() -chalouper/a0() -chalumeau/X. -chalumiste/S. -chalut/S. -chalutage/S. -chalutier/S. -chamade/S. -chamærops -chamaille/S. -chamailler/a0a+() -chamaillerie/S. -chamailleuse/F.() -chamane/F.() -chamanique/S. -chamanisme/S. -chamaniste/S. -chamarre/S. -chamarrée/F.() -chamarrer/a0a+() -chamarrure/S. -chambard/S. -chambardement/S. -chambarder/a0a+() -chambellan/S. -chambertin/S. -chamboulement/S. -chambouler/a0a+() -chambranle/S. -chambray/S. -chambre/S. -chambrée/F.() -chambrer/a0a+() -chambrette/S. -chambrière/F.() -chameau/X. -chameauser/a0() -chamelier/S. -chamelle/S. -chamois -chamoisage/S. -chamoisée/F.() -chamoiser/a0a+() -chamoiserie/S. -chamoisette/S. -chamoiseuse/F.() -chamoisine/S. -champ/S. -champagne/S. -champagnisation/S. -champagniser/a0a+() -champart/S. -champée/F.() -champenoise/F.() -champêtre/S. -champi/S. -champignon/S. -champignonnière/S. -champignonniste/S. -championnat/S. -championne/F.() -champisse/S. -champlevée/F.() -champlever/b0a+() -chamsin/S. -chançarde/F.() -chance/S. -chancel/S. -chancelante/F.() -chanceler/d0() -chancelière/F.() -chancellement/S. -chancellerie/S. -chancetiquer/a0() -chanceuse/W.() -chancie/F.() -chancir/f0f+() -chancre/S. -chandail/S. -chandeleur/S. -chandelier/S. -chandelle/S. -chanfrein/S. -chanfreiner/a0a+() -chanfreineuse/S. -change/S. -changeable/S. -changeante/F.() -changée/F.() -changement/S. -changer/a0a+() -changeuse/F.() -chanlatte/S. -chanoinesse/F.() -chanson/S. -chansonner/a0a+() -chansonnette/S. -chansonnière/F.() -chanstiquer/a0a+() -chant/S. -chantage/S. -chantante/F.() -chanteau/X. -chantée/F.() -chantefable/S. -chantepleure/S. -chanter/a0a+() -chanterelle/S. -chanteuse/F.() -chantier/S. -chantignole/S. -chantilly -chantonnement/S. -chantonner/a0a+() -chantournage/S. -chantournée/F.() -chantourner/a0a+() -chantourneuse/F.() -chantre/S. -chanvre/S. -chanvrière/F.() -chaos -chaotique/S. -chaotiquement -chaouch/S. -chapardage/S. -chapardée/F.() -chaparder/a0a+() -chapardeuse/F.() -chape/S. -chapeau/X. -chapeautée/F.() -chapeauter/a0a+() -chapée/F.() -chapelain/S. -chapeler/d0a+() -chapelet/S. -chapelière/F.() -chapelle/S. -chapellenie/S. -chapellerie/S. -chapelure/S. -chaperon/S. -chaperonnée/F.() -chaperonner/a0a+() -chapiste/S. -chapiteau/X. -chapitre/S. -chapitrée/F.() -chapitrer/a0a+() -chapka/S. -chaplinesque/S. -chapon/S. -chaponner/a0a+() -chapska/S. -chaptalisation/S. -chaptalisée/F.() -chaptaliser/a0a+() -chaque -char/S. -charabia/S. -charade/S. -charadriiforme/S. -charançon/S. -charançonnée/F.() -charango/S. -charbon/S. -charbonnage/S. -charbonnée/F.() -charbonner/a0a+() -charbonnerie/S. -charbonnette/S. -charbonneuse/W.() -charbonnière/F.() -charcuter/a0a+() -charcuterie/S. -charcutière/F.() -chardon/S. -chardonneret/S. -charentaise/F.() -charge/S. -chargée/F.() -chargement/S. -charger/a0a+() -chargeuse/F.() -charia/S. -chariboter/a0() -chariot/S. -chariotage/S. -chariotée/S. -charioter/a0a+() -charismatique/S. -charisme/S. -charitable/S. -charitablement -charité/S. -charivari/S. -charlatan/S. -charlatanerie/S. -charlatanesque/S. -charlatanisme/S. -charlater/a0() -charleston/S. -charlot/S. -charlotte/S. -charmante/F.() -charme/S. -charmée/F.() -charmer/a0a+() -charmeuse/F.() -charmille/S. -charnelle/F.() -charnellement -charnier/S. -charnière/S. -charnue/F.() -charognarde/F.() -charogne/S. -charolaise/F.() -charpentage/S. -charpente/S. -charpentée/F.() -charpenter/a0a+() -charpenterie/S. -charpentière/F.() -charpie/S. -charretée/S. -charretière/F.() -charretin/S. -charreton/S. -charrette/S. -charriage/S. -charriée/F.() -charrier/a0a+() -charroi/S. -charronnage/S. -charronne/F.() -charroyer/a0a+() -charruage/S. -charrue/S. -charte/S. -charter/S. -chartériser/a0a+() -chartisme/S. -chartiste/S. -chartreuse/W.() -chartrier/S. -chas -chasse/S. -châsse/S. -chasse-clou/S. -chassé-croisé -chassée/F.() -chasséenne/F.() -chasselas -chasse-marée -chasse-mouches -chasse-neige -chasse-pierres -chassepot/S. -chasser/a0a+() -chasseresse/S. -chasse-rivet/S. -chasse-roue/S. -chassés-croisés -chasseuse/F.() -chasse-vase -chassie/S. -chassieuse/W.() -châssis -chaste/S. -chastement -chasteté/S. -chasuble/S. -chasublerie/S. -châtaigne/S. -châtaigner/a0a+() -châtaigneraie/S. -châtaignier/S. -châtain/S. -château/X. -chateaubriand/S. -châtelaine/F.() -châtelet/S. -châtellenie/S. -chat-huant -châtiée/F.() -châtier/a0a+() -chatière/S. -châtiment/S. -chatoiement/S. -chaton/S. -chatonner/a0() -chatouille/S. -chatouillée/F.() -chatouillement/S. -chatouiller/a0a+() -chatouilleuse/W.() -chatouillis -chatoyante/F.() -chatoyer/a0() -châtrée/F.() -châtrer/a0a+() -chats-huants -chatte/F.() -chattemite/S. -chatterie/S. -chatterton/S. -chaude/F.() -chaudeau/X. -chaudement -chaud-froid -chaudière/S. -chaudrée/S. -chaudron/S. -chaudronnerie/S. -chaudronnière/F.() -chauds-froids -chauffage/S. -chauffagiste/S. -chauffante/F.() -chauffard/S. -chauffe/S. -chauffe-assiette/S. -chauffe-bain/S. -chauffe-biberon/S. -chauffée/F.() -chauffe-eau -chauffe-lit/S. -chauffe-moût/S. -chauffe-pieds -chauffe-plat/S. -chauffer/a0a+() -chaufferette/S. -chaufferie/S. -chauffeuse/F.() -chauffoir/S. -chaufour/S. -chaufournier/S. -chaulage/S. -chaulée/F.() -chauler/a0a+() -chauleuse/S. -chaumage/S. -chaume/S. -chaumer/a0a+() -chaumière/S. -chaumine/S. -chaussante/F.() -chausse/S. -chaussée/F.() -chaussée/S. -chausse-pied/S. -chausser/a0a+() -chausse-trappe/S. -chaussette/S. -chausseuse/F.() -chausson/S. -chaussure/S. -chauve/S. -chauve-souris -chauves-souris -chauvine/F.() -chauvinisme/S. -chauvir/f0() -chaux -chavirée/F.() -chavirement/S. -chavirer/a0a+() -chawer/a0() -chebec/S. -chèche/S. -chéchia/S. -check-list/S. -check-up -chédail/S. -cheddite/S. -cheeseburger/S. -cheesecake/S. -chef/S. -chef-d'œuvre -cheffe/S. -chefferie/S. -cheffesse/S. -chef-lieu -chefs-d'œuvre -chefs-lieux -cheftaine/S. -cheikh/S. -cheire/S. -chélate/S. -chélateur/S. -chélation/S. -chélatrice/F.() -chelem/S. -chélicérate/S. -chélicère/S. -chélidoine/S. -chélifère/S. -chelléenne/F.() -chemin/S. -chemineau/X. -cheminée/S. -cheminement/S. -cheminer/a0() -cheminote/F.() -chemisage/S. -chemise/S. -chemiser/a0a+() -chemiserie/S. -chemisette/S. -chemisière/F.() -chênaie/S. -chenal/X. -chenapan/S. -chêne/S. -chéneau/X. -chêne-liège -chênes-lièges -chenet/S. -chènevière/S. -chènevis -chenil/S. -chenillard/S. -chenille/S. -chenillée/F.() -chenillette/S. -chénopode/S. -chénopodiacée/S. -chenue/F.() -cheptel/S. -chèque/S. -chèque-restaurant -chèques-restaurant -chéquier/S. -cherchée/F.() -chercher/a0a+() -chercheuse/F.() -chère/F.() -chère/S. -chèrement -chérer/c0() -chergui/S. -chérie/F.() -chérif/S. -chérifienne/F.() -chérir/f0f+() -chérot/S. -cherrer/a0() -cherry/S. -cherté/S. -chérubin/S. -chervis -chester/S. -chétive/F.() -chétivement -chétognathe/S. -chevaine/S. -cheval/X. -chevalement/S. -chevaler/a0a+() -chevaleresque/S. -chevalerie/S. -chevalet/S. -chevalière/F.() -chevaline/F.() -cheval-vapeur -chevauchante/F.() -chevauchée/F.() -chevauchée/S. -chevauchement/S. -chevaucher/a0a+() -chevaux-vapeur -chevêche/S. -chevelue/F.() -chevelure/S. -chevenne/S. -chevesne/S. -chevet/S. -chevêtre/S. -cheveu/X. -chevillarde/F.() -cheville/S. -chevillée/F.() -cheviller/a0a+() -chevillette/S. -cheviotte/S. -chèvre/S. -chevreau/X. -chèvrefeuille/S. -chèvre-pied/S. -chevreter/d0() -chevrette/S. -chevreuil/S. -chevrière/F.() -chevron/S. -chevronnage/S. -chevronnée/F.() -chevronner/a0a+() -chevrotage/S. -chevrotante/F.() -chevrotement/S. -chevrotin/S. -chevrotine/S. -chewing-gum/S. -chez -chez-eux -chez-moi -chez-nous -chez-soi -chez-toi -chez-vous -chiade/S. -chiadée/F.() -chiader/a0a+() -chialer/a0() -chialeuse/F.() -chiante/F.() -chianti/S. -chiasma/S. -chiasme/S. -chibouk/S. -chibouque/S. -chic/S. -chicane/S. -chicaner/a0a+() -chicanerie/S. -chicaneuse/F.() -chicanière/F.() -chicha/S. -chiche/S. -chiche-kebab -chichement -chichi/S. -chichiteuse/W.() -chichon/S. -chicon/S. -chicorée/S. -chicorer/a0a+() -chicorner/a0a+() -chicot/S. -chicote/S. -chicoter/a0() -chicotin/S. -chicotte/S. -chicotter/a0a+() -chiée/F.() -chiendent/S. -chienlit/S. -chien-loup -chienne/F.() -chienner/a0() -chiennerie/S. -chiens-loups -chier/a0a+() -chieuse/F.() -chiffe/S. -chiffon/S. -chiffonnade/S. -chiffonnage/S. -chiffonnée/F.() -chiffonnement/S. -chiffonner/a0a+() -chiffonnière/F.() -chiffrable/S. -chiffrage/S. -chiffre/S. -chiffrée/F.() -chiffrement/S. -chiffrer/a0a+() -chiffreuse/F.() -chiffrier/S. -chigner/a0() -chignole/S. -chignon/S. -chihuahua/S. -chiisme/S. -chiite/S. -chikungunya/S. -chilienne/F.() -chimer/a0a+() -chimère/S. -chimérique/S. -chimériquement -chimie/S. -chimio/S. -chimiosynthèse/S. -chimiotactique/S. -chimiotactisme/S. -chimiotaxie/S. -chimiothèque/S. -chimiothérapie/S. -chimique/S. -chimiquement -chimiquier/S. -chimisme/S. -chimiste/S. -chimpanzé/S. -chinage/S. -chinchilla/S. -chinée/F.() -chiner/a0a+() -chineuse/F.() -chinoise/F.() -chinoiser/a0() -chinoiserie/S. -chinook/S. -chintz -chinure/S. -chiot/S. -chiotte/S. -chiourme/S. -chiper/a0a+() -chipie/S. -chipolata/S. -chipotage/S. -chipoter/a0() -chipoteuse/F.() -chips -chique/S. -chiquée/F.() -chiquement -chiquenaude/S. -chiquer/a0a+() -chiqueuse/F.() -chirale/W.() -chiralité/S. -chirographaire/S. -chirographie/S. -chirographier/a0a+() -chiromancie/S. -chiromancienne/F.() -chiropractie/S. -chiropractrice/F.() -chiropraticienne/F.() -chiropraxie/S. -chiroptère/S. -chirurgicale/W.() -chirurgicalement -chirurgie/S. -chirurgien-dentiste -chirurgienne/F.() -chirurgiens-dentistes -chistera/S. -chitine/S. -chitineuse/W.() -chiton/S. -chiure/S. -chlamyde/S. -chlamydia/S. -chleuhe/F.() -chloral/S. -chloramphénicol/S. -chlorate/S. -chlore/S. -chlorée/F.() -chlorer/a0a+() -chlorhydrate/S. -chlorhydrique/S. -chlorique/S. -chloroforme/S. -chloroformer/a0a+() -chlorophycée/S. -chlorophylle/S. -chlorophyllienne/F.() -chloropicrine/S. -chloroplaste/S. -chlorose/S. -chlorotique/S. -chlorure/S. -chlorurée/F.() -chlorurer/a0a+() -chnoque/S. -choanocyte/S. -choc/S. -chochotte/S. -chocolat/S. -chocolatée/F.() -chocolaterie/S. -chocolatière/F.() -chocolatine/S. -chocotte/S. -chocotter/a0a+() -chœur/S. -chofer/a0a+() -choir/pX() -choisie/F.() -choisir/f0f+() -choisisseuse/F.() -choix -cholagogue/S. -cholécystite/S. -cholécystotomie/S. -cholédoque/S. -cholémie/S. -choléra/S. -cholériforme/S. -cholérine/S. -cholérique/S. -cholestérol/S. -cholestérolémie/S. -choline/S. -cholinestérase/S. -cholinestérasique/S. -cholurie/S. -chômable/S. -chômage/S. -chômée/F.() -chômer/a0a+() -chômeuse/F.() -chondrichtyen/S. -chondriome/S. -chondriosome/S. -chondroblaste/S. -chondrostéen/S. -chope/S. -choper/a0a+() -chopine/S. -chopiner/a0() -chopper/a0() -choquante/F.() -choquée/F.() -choquer/a0a+() -chorale/F.() -chorée/S. -chorège/S. -chorégie/S. -chorégraphe/S. -chorégraphie/S. -chorégraphiée/F.() -chorégraphier/a0a+() -chorégraphique/S. -choréique/S. -choreute/S. -chorion/S. -choriste/S. -chorizo/S. -chorographie/S. -choroïde/S. -choroïdienne/F.() -chorus -chose/S. -choser/a0a+() -chosification/S. -chosifiée/F.() -chosifier/a0a+() -chott/S. -chou/X. -chouan/S. -chouannerie/S. -choucas -chouchou/S. -chouchoute/S. -chouchouter/a0a+() -choucroute/S. -chouette/S. -choufer/a0a+() -chou-fleur -chouïa -chouleur/S. -chou-navet -chouquette/S. -chou-rave -chouraver/a0a+() -chourer/a0a+() -chouriner/a0a+() -choux-fleurs -choux-navets -choux-raves -chow-chow -chows-chows -choyée/F.() -choyer/a0a+() -chrême/S. -chrémeau/X. -chrestomathie/S. -chrétien-démocrate -chrétienne/F.() -chrétienne-démocrate -chrétiennement -chrétiennes-démocrates -chrétiens-démocrates -chrétienté/S. -chris-craft -chrisme/S. -christ/S. -christiania/S. -christianisation/S. -christianisée/F.() -christianiser/a0a+() -christianisme/S. -christique/S. -christologie/S. -christologique/S. -chromage/S. -chromate/S. -chromatide/S. -chromatine/S. -chromatique/S. -chromatisme/S. -chromatogramme/S. -chromatographie/S. -chromatographique/S. -chromatopsie/S. -chrome/S. -chromée/F.() -chromer/a0a+() -chromeuse/F.() -chromique/S. -chromiste/S. -chromo/S. -chromodynamique/S. -chromogène/S. -chromolithographie/S. -chromosome/S. -chromosomique/S. -chromosphère/S. -chromotypie/S. -chromotypographie/S. -chronaxie/S. -chronicité/S. -chronique/S. -chroniquement -chroniquer/a0() -chroniqueuse/F.() -chrono/S. -chronobiologie/S. -chronogramme/S. -chronographe/S. -chronologie/S. -chronologique/S. -chronologiquement -chronométrage/S. -chronomètre/S. -chronométrée/F.() -chronométrer/c0a+() -chronométreuse/F.() -chronométrie/S. -chronométrique/S. -chronophage/S. -chronophotographie/S. -chronostratigraphie/S. -chronostratigraphique/S. -chronotachygraphe/S. -chroumer/a0a+() -chrysalide/S. -chrysanthème/S. -chrysanthémique/S. -chryséléphantine/F.() -chrysobéryl/S. -chrysocale/S. -chrysolite/S. -chrysolithe/S. -chrysomèle/S. -chrysopée -chrysoprase/S. -chthonienne/F.() -chtouille/S. -chuchotée/F.() -chuchotement/S. -chuchoter/a0a+() -chuchoterie/S. -chuchoteuse/F.() -chuchotis -chuintante/F.() -chuintante/S. -chuintement/S. -chuinter/a0() -chum/S. -churro/S. -chut -chute/S. -chuter/a0() -chyle/S. -chylifère/S. -chyme/S. -chypriote/S. -ci -ci-après -ci-avant -cibiche/S. -cibiste/S. -ciblage/S. -cible/S. -ciblée/F.() -cibler/a0a+() -ciboire/S. -ciborium/S. -ciboule/S. -ciboulette/S. -ciboulot/S. -cicatrice/S. -cicatricielle/F.() -cicatricule/S. -cicatrisable/S. -cicatrisante/F.() -cicatrisation/S. -cicatrisée/F.() -cicatriser/a0a+() -cicéro/S. -cicérone/S. -cicéronienne/F.() -cicindèle/S. -ci-contre -cicutine/S. -ci-dessous -ci-dessus -ci-devant -cidre/S. -cidrerie/S. -cidricole/S. -ciel/S. -cierge/S. -cierie/S. -cieux -cigale/S. -cigare/S. -cigarette/S. -cigarettière/F.() -cigarière/F.() -cigarillo/S. -ci-gisent -ci-gît -cigogne/S. -cigogneau/X. -ciguë/S. -ci-haut -ci-incluse/F.() -ci-jointe/F.() -cil/S. -ciliaire/S. -cilice/S. -ciliée/F.() -cillement/S. -ciller/a0() -cimaise/S. -cime/S. -ciment/S. -cimentation/S. -cimentée/F.() -cimenter/a0a+() -cimenterie/S. -cimentière/F.() -cimeterre/S. -cimetière/S. -cimier/S. -cimmérienne/F.() -cinabre/S. -cinchonine/S. -cincle/S. -cindynique/S. -ciné/S. -cinéaste/S. -ciné-club/S. -cinéma/S. -cinémascope/S. -cinémathèque/S. -cinématique/S. -cinématographe/S. -cinématographie/S. -cinématographier/a0a+() -cinématographique/S. -cinématographiquement -cinémomètre/S. -ciné-parc/S. -cinéphile/S. -cinéphilie/S. -cinéraire/S. -cinérama -cinérite/S. -cinéroman/S. -ciné-shop/S. -cinéthéodolite/S. -cinétique/S. -cinétir/S. -cinétisme/S. -cinghalaise/F.() -cinglante/F.() -cinglée/F.() -cingler/a0a+() -cinnamome/S. -cinoche/S. -cinoque/S. -cinq -cinquantaine/S. -cinquante -cinquante-cinq -cinquante-deux -cinquante-et-un -cinquante-huit -cinquantenaire/S. -cinquante-neuf -cinquante-quatre -cinquante-sept -cinquante-six -cinquante-trois -cinquantième/S. -cinquième/S. -cinquièmement -cintrage/S. -cintre/S. -cintrée/F.() -cintrer/a0a+() -cintreuse/F.() -cintrière/F.() -cipaye/S. -cipolin/S. -cippe/S. -cirage/S. -circ -circadienne/F.() -circassienne/F.() -circoncire/yV() -circoncis -circoncise/F.() -circoncision/S. -circonférence/S. -circonférentielle/F.() -circonflexe/S. -circonlocution/S. -circonscriptible/S. -circonscription/S. -circonscrire/y1() -circonscrite/F.() -circonspecte/F.() -circonspection/S. -circonstance/S. -circonstanciée/F.() -circonstancielle/F.() -circonstancier/a0a+() -circonvallation/S. -circonvenir/i0i+() -circonvenue/F.() -circonvolution/S. -circuit/S. -circulaire/S. -circulairement -circulante/F.() -circularité/S. -circulateur/S. -circulation/S. -circulatoire/S. -circuler/a0() -circumduction/S. -circumnavigation/S. -circumpolaire/S. -circumterrestre/S. -cire/S. -cirée/F.() -cirer/a0a+() -cireuse/F.() -cireuse/W.() -cirière/F.() -ciron/S. -cirque/S. -cirre/S. -cirrhose/S. -cirrhotique/S. -cirrocumulus -cirrostratus -cirrus -cisaillage/S. -cisaille/S. -cisaillée/F.() -cisaillement/S. -cisailler/a0a+() -cisailleuse/F.() -cisalpine/F.() -ciseau/X. -ciselée/F.() -cisèlement/S. -ciseler/b0a+() -ciselet/S. -ciseleuse/F.() -ciselure/S. -cisoires -ciste/S. -cistercienne/F.() -cistre/S. -cistron/S. -cistude/S. -citadelle/S. -citadine/F.() -citation/S. -citattrice/F.() -cité/S. -cité-dortoir -cité-jardin -citer/a0a+() -citerne/S. -citernière/F.() -cités-dortoirs -cités-jardins -cithare/S. -citharède/S. -cithariste/S. -citoyenne/F.() -citoyenneté/S. -citrate/S. -citrine/F.() -citrique/S. -citron/S. -citronnade/S. -citronnée/F.() -citronnelle/S. -citronnier/S. -citrouille/S. -citrus -civelle/S. -civette/F.() -civière/S. -civile/F.() -civilement -civilisable/S. -civilisation/S. -civilisatrice/F.() -civilisée/F.() -civiliser/a0a+() -civiliste/S. -civilité/S. -civique/S. -civisme/S. -clabaud/S. -clabaudage/S. -clabauder/a0() -clabauderie/S. -clabaudeuse/F.() -clabot/S. -clabotage/S. -claboter/a0a+() -clac -clacher/a0a+() -clade/S. -cladisme/S. -cladistique/S. -cladogramme/S. -cladonie/S. -clafoutis -claie/S. -clairance/S. -claire/F.() -clairement -claires-voies -clairette/F.() -claire-voie -clairière/S. -clair-obscur -clairon/S. -claironnante/F.() -claironnée/F.() -claironner/a0a+() -clairsemée/F.() -clairsemer/b0a+() -clairs-obscurs -clairvoyance/S. -clairvoyante/F.() -clam/S. -clamecer/b0a+() -clamée/F.() -clamer/a0a+() -clameur/S. -clamp/S. -clamper/a0a+() -clamser/a0() -clan/S. -clandé/S. -clandestine/F.() -clandestinement -clandestinité/S. -clanique/S. -clanisme/S. -claper/a0a+() -clapet/S. -clapier/S. -clapir/f0f+() -clapot/S. -clapotage/S. -clapotante/F.() -clapotement/S. -clapoter/a0() -clapotis -clappement/S. -clapper/a0() -clapser/a0() -claquage/S. -claquante/F.() -claque/S. -claquée/F.() -claquement/S. -claquemurée/F.() -claquemurer/a0a+() -claquer/a0a+() -claqueter/d0() -claquette/F.() -claquoir/S. -clarification/S. -clarifiée/F.() -clarifier/a0a+() -clarine/S. -clarinette/S. -clarinettiste/S. -clarisse/S. -clarté/S. -clash/S. -classable/S. -classe/S. -classée/F.() -classement/S. -classer/a0a+() -classeuse/F.() -classicisante/F.() -classicisme/S. -classiciste/S. -classieuse/W.() -classification/S. -classificatoire/S. -classificatrice/F.() -classifiée/F.() -classifier/a0a+() -classique/S. -classiquement -clastique/S. -clathrate/S. -claude/S. -claudicante/F.() -claudication/S. -claudiquer/a0() -clause/S. -claustra/S. -claustrale/W.() -claustration/S. -claustrée/F.() -claustrer/a0a+() -claustrophobe/S. -claustrophobie/S. -clausule/S. -clausus -clavage/S. -clavaire/S. -clavardage/S. -clavarder/a0() -claveau/X. -clavecin/S. -claveciniste/S. -clavée/F.() -clavelée/F.() -claver/a0a+() -clavetage/S. -claveter/d0a+() -clavette/S. -clavetter/a0a+() -clavicorde/S. -claviculaire/S. -clavicule/S. -clavier/S. -clavière/F.() -claviste/S. -clayère/S. -clayette/S. -claymore/S. -clayon/S. -clayonnage/S. -clayonner/a0a+() -clé/S. -clearing/S. -clébard/S. -cléber/a0() -clebs -cléchée/F.() -clef/S. -clématite/S. -clémence/S. -clémente/F.() -clémentine/S. -clémentinier/S. -clenche/S. -clepsydre/S. -cleptomane/S. -cleptomanie/S. -clerc/S. -clergé/S. -clergie/S. -clergyman/S. -cléricale/W.() -cléricalisme/S. -cléricature/S. -clic -clic/S. -clic-clac -clichage/S. -cliche/S. -cliché/S. -clichée/F.() -clicher/a0a+() -clicherie/S. -clicheuse/F.() -cliente/F.() -clientèle/S. -clientélisme/S. -clientéliste/S. -clienter/a0a+() -clignée/F.() -clignement/S. -cligner/a0a+() -clignotante/F.() -clignotement/S. -clignoter/a0() -clignoteur/S. -climat/S. -climatère/S. -climatérique/S. -climatique/S. -climatisante/F.() -climatisation/S. -climatisée/F.() -climatiser/a0a+() -climatiseur/S. -climatisme/S. -climatologie/S. -climatologique/S. -climatologue/S. -climatopathologie/S. -climatothérapie/S. -clin/S. -clinche/S. -clinfoc/S. -clinicat/S. -clinicienne/F.() -clinique/S. -cliniquement -clinomètre/S. -clinorhombique/S. -clinquante/F.() -clip/S. -clipper/S. -clipper/a0a+() -clipser/a0a+() -cliquable/S. -clique/S. -cliquer/a0() -cliquet/S. -cliquetante/F.() -cliquètement/S. -cliqueter/d0() -cliquetis -cliquette/F.() -cliquoter/a0() -clisse/S. -clisser/a0a+() -clitoridectomie/S. -clitoridienne/F.() -clitoris -clivable/S. -clivage/S. -cliver/a0a+() -cliveuse/F.() -cloaque/S. -clocharde/F.() -clochardisation/S. -clochardiser/a0a+() -cloche/S. -cloche-pied -clocher/S. -clocher/a0() -clocheton/S. -clochette/S. -clodo/S. -cloison/S. -cloisonnage/S. -cloisonnante/F.() -cloisonnée/F.() -cloisonnement/S. -cloisonner/a0a+() -cloître/S. -cloîtrée/F.() -cloîtrer/a0a+() -clonage/S. -clone/S. -clonée/F.() -cloner/a0a+() -clope/S. -cloper/a0() -clopin-clopant -clopiner/a0() -clopinettes -cloporte/S. -cloque/S. -cloquée/F.() -cloquer/a0a+() -clore/rArB() -close/F.() -closerie/S. -clôture/S. -clôturée/F.() -clôturer/a0a+() -clou/S. -clouage/S. -clouée/F.() -clouement/S. -clouer/a0a+() -cloueuse/F.() -cloutage/S. -cloutard/S. -cloutée/F.() -clouter/a0a+() -clouterie/S. -cloutier/S. -clovisse/S. -clown/S. -clownerie/S. -clownesque/S. -cloyère/S. -club/S. -clubbeuse/F.() -clubiste/S. -clunisienne/F.() -cluse/S. -clystère/S. -cnémide/S. -cnidaire/S. -cnidoblaste/S. -cnidosporidie/S. -coaccusée/F.() -coach/S. -coaching/S. -coacquéreur/S. -coadjutrice/F.() -coadministratrice/F.() -coagulabilité/S. -coagulable/S. -coagulante/F.() -coagulation/S. -coagulatrice/F.() -coagulée/F.() -coaguler/a0a+() -coagulum/S. -coalescence/S. -coalisée/F.() -coaliser/a0a+() -coalition/S. -coaltar/S. -coaptation/S. -coarctation/S. -coassante/F.() -coassement/S. -coasser/a0a+() -coassociée/F.() -coassurance/S. -coati/S. -coauteur/S. -coaxiale/W.() -cob/S. -cobalt/S. -cobaye/S. -cobéa/S. -cobelligérante/F.() -cobord/S. -cobordisme/S. -cobra/S. -coca/S. -cocagne/S. -cocaïne -cocaïnisation/S. -cocaïnomane/S. -cocaïnomanie/S. -cocaliser/a0a+() -cocarde/S. -cocardière/F.() -cocasse/S. -cocassement -cocasserie/S. -cocaution/S. -coccidie/S. -coccidiose/S. -coccinelle/S. -coccus/I. -coccygienne/F.() -coccyx -cochaîne/S. -coche/S. -cochée/F.() -cochenille/S. -côcher -cocher/a0a+() -cochère/F.() -cochléaire/S. -cochléaria/S. -cochonceté/S. -cochonnaille/S. -cochonne/F.() -cochonner/a0a+() -cochonnerie/S. -cochonnet/S. -cochylis -cocker/S. -cockney/S. -cockpit/S. -cocktail/S. -coco/S. -cocompacte/F.() -cocon/S. -cocontractante/F.() -cocorico/S. -cocoter/a0() -cocotier/S. -cocotte/S. -cocréancière/F.() -coction/S. -cocuage/S. -cocue/F.() -cocufiée/F.() -cocufier/a0a+() -cocycle/S. -cocyclique/S. -cocyle/S. -codable/S. -codage/S. -codante/F.() -code/S. -code-barre/S. -codébitrice/F.() -codec/S. -codécision/S. -codée/F.() -codéine -codemanderesse/F.() -coder/a0a+() -codes-barres -codétentrice/F.() -codétenue/F.() -codeuse/F.() -codex -codicille/S. -codification/S. -codificatrice/F.() -codifiée/F.() -codifier/a0a+() -codimension/S. -codirection/S. -codirectrice/F.() -codominance/S. -codon/S. -coéditée/F.() -coéditer/a0a+() -coédition/S. -coéditrice/F.() -coefficient/S. -cœlacanthe/S. -cœlentéré/S. -cœliaque/S. -cœliochirurgie/S. -cœlioscope/S. -cœlioscopie/S. -cœlioscopique/S. -cœlome/S. -cœlomique/S. -coemption/S. -coenzyme/S. -coéquipière/F.() -coercibilité/S. -coercible/S. -coercition/S. -coercitive/F.() -cœur/S. -cœursage/S. -cœurse/S. -coévolution/S. -coexistante/F.() -coexistence/S. -coexister/a0() -coextensive/F.() -cofacée/F.() -cofacteur/S. -coffin/S. -coffrage/S. -coffre/S. -coffrée/F.() -coffre-fort -coffrer/a0a+() -coffres-forts -coffret/S. -coffretière/F.() -coffreuse/F.() -cofinancement/S. -cofinancer/a0a+() -cofondatrice/F.() -cogénération/S. -cogérance/S. -cogérante/F.() -cogérée/F.() -cogérer/c0a+() -cogestion/S. -cogitation/S. -cogiter/a0a+() -cogito -cognac/S. -cognassier/S. -cognat/S. -cognation/S. -cogne/S. -cognée/F.() -cognée/S. -cognement/S. -cogner/a0a+() -cogneuse/F.() -cogniticienne/F.() -cognition/S. -cognitive/F.() -cognitivement -cognitivisme/S. -cognitiviste/S. -cognoter/a0() -cohabitante/F.() -cohabitation/S. -cohabitationniste/S. -cohabiter/a0() -cohérence/S. -cohérente/F.() -cohéreur/S. -cohériter/a0() -cohéritière/F.() -cohésion/S. -cohésive/F.() -cohomologie/S. -cohomologique/S. -cohomologue/S. -cohorte/S. -cohue/S. -coi/S. -coiffage/S. -coiffante/F.() -coiffe/S. -coiffée/F.() -coiffer/a0a+() -coiffeuse/F.() -coiffure/S. -coin/S. -coinçage/S. -coincée/F.() -coincement/S. -coincer/a0a+() -coinceur/S. -coïncidence/S. -coïncidente/F.() -coïncider/a0() -coin-coin -coïnculpée/F.() -coing/S. -coït/S. -coite/S. -coïter/a0() -coke/S. -cokéfaction/S. -cokéfiante/F.() -cokéfier/a0a+() -cokerie/S. -cokser/a0a+() -col/S. -colatitude/S. -colature/S. -colback/S. -colbertisme/S. -colbertiste/S. -colchicacée/S. -colchicine/S. -colchique/S. -colcotar/S. -cold-cream/S. -col-de-cygne -colégataire/S. -coléoptère/S. -colère/S. -coléreuse/W.() -colérique/S. -colibacille/S. -colibacillose/S. -colibri/S. -colicitante/F.() -colifichet/S. -colimaçon/S. -colin/S. -colinéaire/S. -colinéarité/S. -colineau/X. -colin-maillard/S. -colinot/S. -colin-tampon/S. -colique/S. -colis -colistière/F.() -colite/S. -coll -collabo/S. -collaboration/S. -collaborationniste/S. -collaborative/F.() -collaboratrice/F.() -collaborer/a0a+() -collage/S. -collagène/S. -collagénose/S. -collante/F.() -collapser/a0() -collapsus -collargol -collatérale/W.() -collateur/S. -collation/S. -collationnement/S. -collationner/a0a+() -colle/S. -collectage/S. -collecte/S. -collectée/F.() -collecter/a0a+() -collection/S. -collectionnée/F.() -collectionner/a0a+() -collectionneuse/F.() -collective/F.() -collectivement -collectivisation/S. -collectivisée/F.() -collectiviser/a0a+() -collectivisme/S. -collectiviste/S. -collectivité/S. -collector/S. -collectrice/F.() -collée/F.() -collège/S. -collégiale/W.() -collégialement -collégialité/S. -collégienne/F.() -collègue/S. -coller/a0a+() -collerette/S. -collet/S. -colletée/F.() -colleter/d0a+() -colleteuse/F.() -collets-montés -colleuse/F.() -colley/S. -collier/S. -colliger/a0a+() -collimage/S. -collimateur/S. -collimation/S. -colline/S. -collision/S. -collisionneur/S. -collocation/S. -collodion/S. -colloïdale/W.() -colloïde/S. -colloque/S. -colloquer/a0a+() -collusion/S. -collusoire/S. -collutoire/S. -colluvion/S. -collyre/S. -colmatage/S. -colmatée/F.() -colmater/a0a+() -coloc/S. -colocalisation/S. -colocase/S. -colocataire/S. -colocation/S. -cologarithme/S. -colombage/S. -colombe/S. -colombienne/F.() -colombier/S. -colombine/F.() -colombophile/S. -colombophilie/S. -colon/S. -côlon/S. -colonage/S. -colonat/S. -colonelle/F.() -coloniale/W.() -colonialisme/S. -colonialiste/S. -colonie/S. -colonisable/S. -colonisation/S. -colonisatrice/F.() -colonisée/F.() -coloniser/a0a+() -colonnade/S. -colonne/S. -colonnette/S. -colophane/S. -colophon/S. -coloquinte/S. -colorante/F.() -coloration/S. -colorée/F.() -colorer/a0a+() -coloriage/S. -coloriée/F.() -colorier/a0a+() -colorimètre/S. -colorimétrie/S. -colorimétrique/S. -coloris -colorisation/S. -colorisée/F.() -coloriser/a0a+() -coloriste/S. -coloscopie/S. -colossale/W.() -colossalement -colosse/S. -colostrum/S. -colportage/S. -colportée/F.() -colporter/a0a+() -colporteuse/F.() -colposcopie/S. -cols-de-cygne -colt/S. -coltinage/S. -coltiner/a0a+() -columbarium/S. -columelle/S. -colvert/S. -colza -colzatier/S. -coma/S. -comateuse/W.() -combat/S. -combative/F.() -combativité/S. -combattante/F.() -combattre/uA() -combattue/F.() -combe/S. -combien -combientième/S. -combinable/S. -combinaison/S. -combinarde/F.() -combinat/S. -combinateur/S. -combinatoire/S. -combinatoirement -combine/S. -combinée/F.() -combiner/a0a+() -comblanchien/S. -comble/S. -comblée/F.() -comblement/S. -combler/a0a+() -comburante/F.() -combustibilité/S. -combustible/S. -combustion/S. -come-back -comédie/S. -comédienne/F.() -comédon/S. -comestibilité/S. -comestible/S. -cométaire/S. -comète/S. -comice/S. -comics -comique/S. -comiquement -comité/S. -comma/S. -commandable/S. -commandante/F.() -commande/S. -commandée/F.() -commandement/S. -commander/a0a+() -commanderie/S. -commandeure/F.() -commanditaire/S. -commanditée/F.() -commanditer/a0a+() -commando/S. -comme -commémoraison/S. -commémoration/S. -commémorative/F.() -commémorée/F.() -commémorer/a0a+() -commençante/F.() -commencée/F.() -commencement/S. -commencer/a0a+() -commendataire/S. -commende/S. -commensale/W.() -commensalisme/S. -commensalité/S. -commensurable/S. -comment -commentaire/S. -commentatrice/F.() -commentée/F.() -commenter/a0a+() -commérage/S. -commerçante/F.() -commerce/S. -commercer/a0() -commerciale/W.() -commercialement -commercialisable/S. -commercialisation/S. -commercialisée/F.() -commercialiser/a0a+() -commère/S. -commérer/c0() -commettante/F.() -commettre/vA() -comminatoire/S. -comminutive/F.() -commise/F.() -commisération/S. -commissaire/S. -commissaire-priseur -commissaire-priseuse -commissaires-priseurs -commissaires-priseuses -commissariat/S. -commission/S. -commissionnaire/S. -commissionnée/F.() -commissionnement/S. -commissionner/a0a+() -commissoire/S. -commissurale/W.() -commissure/S. -commodat/S. -commodataire/S. -commode/S. -commodément -commodité/S. -commodore/S. -commotion/S. -commotionnée/F.() -commotionner/a0a+() -commuable/S. -commuée/F.() -commuer/a0a+() -communale/W.() -communalisée/F.() -communaliser/a0a+() -communalisme/S. -communarde/F.() -communautaire/S. -communautarisme/S. -communautariste/S. -communauté/S. -commune/F.() -communément -communiante/F.() -communicabilité/S. -communicable/S. -communicante/F.() -communication/S. -communicationnelle/F.() -communicative/F.() -communicatrice/F.() -communicologue/S. -communier/a0() -communion/S. -communiquée/F.() -communiquer/a0a+() -communisante/F.() -communisme/S. -communiste/S. -commutable/S. -commutateur/S. -commutation/S. -commutative/F.() -commutativité/S. -commutée/F.() -commuter/a0a+() -comorienne/F.() -compacité/S. -compactage/S. -compacte/F.() -compactée/F.() -compacter/a0a+() -compacteuse/F.() -compactification/S. -compactifiée/F.() -compagne/S. -compagnie/S. -compagnonnage/S. -compagnonne/F.() -comparabilité/S. -comparable/S. -comparaison/S. -comparaître/wQ() -comparante/F.() -comparateur/S. -comparatisme/S. -comparatiste/S. -comparative/F.() -comparativement -comparatrice/F.() -comparée/F.() -comparer/a0a+() -comparoir/pP() -comparse/S. -compartiment/S. -compartimentage/S. -compartimentation/S. -compartimentée/F.() -compartimenter/a0a+() -comparue/F.() -comparution/S. -compas -compassée/F.() -compasser/a0a+() -compassion/S. -compassionnelle/F.() -compatibilité/S. -compatible/S. -compatir/f0() -compatissante/F.() -compatriote/S. -compendieuse/W.() -compendieusement -compendium/S. -compensable/S. -compensation/S. -compensatoire/S. -compensatrice/F.() -compensée/F.() -compenser/a0a+() -compérage/S. -compère/S. -compère-loriot -compères-loriots -compétence/S. -compétente/F.() -compéter/c0() -compétition/S. -compétitive/F.() -compétitivité/S. -compétitrice/F.() -compilable/S. -compilation/S. -compilatrice/F.() -compilée/F.() -compiler/a0a+() -compisser/a0a+() -complainte/S. -complaire/wN() -complaisamment -complaisance/S. -complaisante/F.() -complément/S. -complémentaire/S. -complémentarité/S. -complémentation/S. -complémenter/a0a+() -complet/S. -complète/F.() -complétée/F.() -complètement -complètement/S. -compléter/c0a+() -complétion/S. -complétive/F.() -complétude/S. -complexe/S. -complexée/F.() -complexer/a0a+() -complexification/S. -complexifiée/F.() -complexifier/a0a+() -complexion/S. -complexité/S. -complication/S. -complice/S. -complicité/S. -complies -compliment/S. -complimentée/F.() -complimenter/a0a+() -complimenteuse/F.() -compliquée/F.() -compliquer/a0a+() -complot/S. -comploter/a0a+() -comploteuse/F.() -compogravure/S. -componction/S. -componée/F.() -comportement/S. -comportementale/W.() -comportementalisme/S. -comportementaliste/S. -comporter/a0a+() -composable/S. -composacée/S. -composante/F.() -composée/F.() -composer/a0a+() -composeuse/F.() -composite/S. -composition/S. -compositrice/F.() -compost/S. -compostable/S. -compostage/S. -compostée/F.() -composter/a0a+() -composteuse/F.() -compote/S. -compotier/S. -compound -compréhensibilité/S. -compréhensible/S. -compréhension/S. -compréhensive/F.() -comprendre/tF() -comprenette/S. -compresse/S. -compressée/F.() -compresser/a0a+() -compresseur/S. -compressibilité/S. -compressible/S. -compression/S. -compressive/F.() -comprimable/S. -comprimée/F.() -comprimer/a0a+() -comprise/F.() -compromettante/F.() -compromettre/vA() -compromis -compromise/F.() -compromission/S. -compromissionnaire/S. -compromissoire/S. -comptabilisable/S. -comptabilisation/S. -comptabilisée/F.() -comptabiliser/a0a+() -comptabilité/S. -comptable/S. -comptage/S. -comptant -comptant -comptant/S. -compte/S. -compte-chèques -comptée/F.() -compte-fils -compte-gouttes -compte-minutes -compter/a0a+() -compte-rendu -comptes-chèques -comptes-rendus -compte-tenu -compte-tours -compteuse/F.() -comptine/S. -comptoir/S. -compulsée/F.() -compulser/a0a+() -compulsion/S. -compulsive/F.() -compulsivement -comput/S. -computation/S. -computer/a0a+() -comtale/W.() -comté/S. -comtesse/F.() -comtoise/F.() -conation/S. -conative/F.() -concassage/S. -concassée/F.() -concasser/a0a+() -concasseur/S. -concaténation/S. -concaténée/F.() -concaténer/c0a+() -concave/S. -concavité/S. -concédante/F.() -concédée/F.() -concéder/c0a+() -concélébrée/F.() -concélébrer/c0a+() -concentrateur/S. -concentration/S. -concentrationnaire/S. -concentrée/F.() -concentrer/a0a+() -concentreuse/F.() -concentricité/S. -concentrique/S. -concentriquement -concept/S. -conceptacle/S. -conception/S. -conceptisme/S. -conceptrice/F.() -conceptualisation/S. -conceptualisée/F.() -conceptualiser/a0a+() -conceptualisme/S. -conceptuelle/F.() -concernée/F.() -concerner/aF() -concert/S. -concertante/F.() -concertation/S. -concertée/F.() -concerter/a0a+() -concertino/S. -concertiste/S. -concerto/S. -concession/S. -concessionnaire/S. -concessive/F.() -concetti -concevable/S. -concevoir/pK() -conchier/a0a+() -conchoïdale/W.() -conchoïde/S. -conchylicultrice/F.() -conchyliculture/S. -conchylienne/F.() -conchyliologie/S. -concierge/S. -conciergerie/S. -concile/S. -conciliable/S. -conciliabule/S. -conciliaire/S. -conciliante/F.() -conciliation/S. -conciliatoire/S. -conciliatrice/F.() -conciliée/F.() -concilier/a0a+() -concise/F.() -concision/S. -concitoyenne/F.() -conclave/S. -conclaviste/S. -concluante/F.() -conclue/F.() -conclure/xL() -conclusion/S. -conclusive/F.() -concoctée/F.() -concocter/a0a+() -concoction/S. -concombre/S. -concomitamment -concomitance/S. -concomitante/F.() -concordance/S. -concordante/F.() -concordat/S. -concordataire/S. -concorde/S. -concorder/a0() -concourante/F.() -concourir/iD() -concours -concrescence/S. -concrète/F.() -concrètement -concréter/c0a+() -concrétion/S. -concrétisation/S. -concrétisée/F.() -concrétiser/a0a+() -concubinage/S. -concubinaire/S. -concubine/F.() -conçue/F.() -concupiscence/S. -concupiscente/F.() -concurremment -concurrence/S. -concurrencée/F.() -concurrencer/a0a+() -concurrente/F.() -concurrentielle/F.() -concussion/S. -concussionnaire/S. -condamnable/S. -condamnation/S. -condamnatoire/S. -condamnée/F.() -condamner/a0a+() -condé/S. -condensable/S. -condensat/S. -condensateur/S. -condensation/S. -condensée/F.() -condenser/a0a+() -condenseur/S. -condescendance/S. -condescendante/F.() -condescendre/tE() -condiment/S. -condisciple/S. -condition/S. -conditionnée/F.() -conditionnelle/F.() -conditionnellement -conditionnement/S. -conditionner/a0a+() -conditionneuse/F.() -condoléances -condom/S. -condominium/S. -condor/S. -condottiere/S. -condruzienne/F.() -conductance/S. -conductibilité/S. -conductible/S. -conduction/S. -conductivité/S. -conductrice/F.() -conduire/yM() -conduiseuse/F.() -conduite/F.() -condyle/S. -condylienne/F.() -condylome/S. -cône/S. -conf -confection/S. -confectionnée/F.() -confectionner/a0a+() -confectionneuse/F.() -confédérale/W.() -confédération/S. -confédérée/F.() -confédérer/c0a+() -confer -conférence/S. -conférencière/F.() -conférer/c0a+() -conferve/S. -confesse/S. -confessée/F.() -confesser/a0a+() -confesseur/S. -confession/S. -confessionnal/X. -confessionnalisation/S. -confessionnalisme/S. -confessionnaliste/S. -confessionnelle/F.() -confetti/S. -confiance/S. -confiancer/a0a+() -confiante/F.() -confidence/S. -confidente/F.() -confidentialité/S. -confidentielle/F.() -confidentiellement -confiée/F.() -confier/a0a+() -configurable/S. -configuration/S. -configurée/F.() -configurer/a0a+() -confinée/F.() -confinement/S. -confiner/a0a+() -confins -confire/yV() -confirmande/F.() -confirmation/S. -confirmative/F.() -confirmée/F.() -confirmer/a0a+() -confiscable/S. -confiscation/S. -confiscatoire/S. -confiserie/S. -confiseuse/F.() -confisquée/F.() -confisquer/a0a+() -confite/F.() -confiteor -confiture/S. -confiturer/a0a+() -confiturerie/S. -confiturière/F.() -conflagration/S. -conflictuelle/F.() -conflit/S. -confluence/S. -confluent/S. -confluer/a0() -confondante/F.() -confondre/tA() -confondue/F.() -conformateur/S. -conformation/S. -conformationnelle/F.() -conforme/S. -conformée/F.() -conformément -conformer/a0a+() -conformisme/S. -conformiste/S. -conformité/S. -confort/S. -confortable/S. -confortablement -confortée/F.() -conforter/a0a+() -confraternelle/F.() -confraternellement -confraternité/S. -confrère/S. -confrérie/S. -confrérique/S. -confrontation/S. -confrontée/F.() -confronter/a0a+() -confucianisme/S. -confucianiste/S. -confuse/F.() -confusément -confusion/S. -confusionnelle/F.() -confusionnisme/S. -confusionniste/S. -conga/S. -congaï/S. -congaye/S. -congé/S. -congédiable/S. -congédiée/F.() -congédiement/S. -congédier/a0a+() -congelable/S. -congélateur/S. -congélation/S. -congelée/F.() -congeler/b0a+() -congénère/S. -congénitale/W.() -congère/S. -congestion/S. -congestionnée/F.() -congestionner/a0a+() -congestive/F.() -congiaire/S. -conglomérale/W.() -conglomérat/S. -conglomérée/F.() -conglomérer/c0a+() -conglutination/S. -conglutinée/F.() -conglutiner/a0a+() -congolaise/F.() -congratulation/S. -congratulée/F.() -congratuler/a0a+() -congre/S. -congréer/a0a+() -congréganiste/S. -congrégation/S. -congrès -congressiste/S. -congrue/F.() -congruence/S. -congruente/F.() -congrûment -conicine/S. -conicité/S. -conidie/S. -conifère/S. -conique/S. -coniquement -cônir/f0f+() -conirostre/S. -conjecturale/W.() -conjecturalement -conjecturer/a0a+() -conjoindre/wB() -conjointe/F.() -conjointement -conjoncteur/S. -conjonction/S. -conjonctivale/W.() -conjonctive/F.() -conjonctivite/S. -conjoncture/S. -conjoncturelle/F.() -conjugabilité/S. -conjugaison/S. -conjugale/W.() -conjugalement -conjugalité/S. -conjuguée/F.() -conjuguer/a0a+() -conjugueur/S. -conjungo/S. -conjuration/S. -conjuratoire/S. -conjuratrice/F.() -conjurée/F.() -conjurer/a0a+() -connaissable/S. -connaissance/S. -connaissement/S. -connaisseuse/F.() -connaître/wQ() -connarde/F.() -connasse/S. -conne/F.() -connectabilité/S. -connectable/S. -connectée/F.() -connecter/a0a+() -connecteur/S. -connectique/S. -connective/F.() -connectivité/S. -connement -connerie/S. -connétable/S. -connétablie/S. -connexe/S. -connexion/S. -connexité/S. -connivence/S. -connivente/F.() -connobler -connotation/S. -connotée/F.() -connoter/a0a+() -connue/F.() -conobrer/a0a+() -conoïde/S. -conopée/S. -conormale/W.() -conoyau/X. -conque/S. -conquérante/F.() -conquérir/iK() -conquêt/S. -conquête/S. -conquise/F.() -conquistador/S. -consacrée/F.() -consacrer/a0a+() -consanguine/F.() -consanguinité/S. -consciemment -conscience/S. -consciencieuse/W.() -consciencieusement -conscient/S. -consciente/F.() -conscientiser/a0a+() -conscription/S. -conscrit/S. -consécration/S. -consécution/S. -consécutive/F.() -consécutivement -conseil/S. -conseillée/F.() -conseiller/a0a+() -conseillère/F.() -conseilleuse/F.() -consensuelle/F.() -consensus -consentante/F.() -consentement/S. -consentie/F.() -consentir/i5i+() -conséquemment -conséquence/S. -conséquente/F.() -conservable/S. -conservation/S. -conservatisme/S. -conservative/F.() -conservatoire/S. -conservatrice/F.() -conserve/S. -conservée/F.() -conserver/a0a+() -conserverie/S. -conserveuse/F.() -considérable/S. -considérablement -considération/S. -considérative/F.() -considérée/F.() -considérer/c0a+() -consignataire/S. -consignation/S. -consigne/S. -consignée/F.() -consigner/a0a+() -consistance/S. -consistante/F.() -consister/a0() -consistoire/S. -consistoriale/W.() -consœur/S. -consolable/S. -consolante/F.() -consolation/S. -consolatrice/F.() -console/S. -consolée/F.() -consoler/a0a+() -consolidable/S. -consolidation/S. -consolidée/F.() -consolider/a0a+() -consommable/S. -consommation/S. -consommatrice/F.() -consommée/F.() -consommer/a0a+() -consomptible/S. -consomption/S. -consomptive/F.() -consonance/S. -consonante/F.() -consonantique/S. -consonantisme/S. -consoner/a0() -consonne/S. -consort/S. -consortium/S. -consoude/S. -conspiration/S. -conspirationniste/S. -conspiratrice/F.() -conspirer/a0a+() -conspuée/F.() -conspuer/a0a+() -constable/S. -constamment -constance/S. -constantan/S. -constante/F.() -constante/S. -constat/S. -constatable/S. -constatation/S. -constatée/F.() -constater/a0a+() -constellation/S. -constellée/F.() -consteller/a0a+() -consternante/F.() -consternation/S. -consternée/F.() -consterner/a0a+() -constipation/S. -constipée/F.() -constiper/a0a+() -constituante/F.() -constituée/F.() -constituer/a0a+() -constitution/S. -constitutionnalisée/F.() -constitutionnaliser/a0a+() -constitutionnalisme/S. -constitutionnaliste/S. -constitutionnalité/S. -constitutionnelle/F.() -constitutionnellement -constitutive/F.() -constricteur/S. -constructibilité/S. -constructible/S. -construction/S. -constructive/F.() -constructivisme/S. -constructiviste/S. -constructivité/S. -constructrice/F.() -construire/yM() -construite/F.() -consubstantialité/S. -consubstantiation/S. -consubstantielle/F.() -consulaire/S. -consulat/S. -consule/F.() -consultable/S. -consultance/S. -consultante/F.() -consultation/S. -consultative/F.() -consultée/F.() -consulter/a0a+() -consumée/F.() -consumer/a0a+() -consumérisme/S. -consumériste/S. -contact/S. -contactée/F.() -contacter/a0a+() -contactologie/S. -contactologiste/S. -contactologue/S. -contactrice/F.() -contage/S. -contagieuse/W.() -contagion/S. -contagionner/a0a+() -contagiosité/S. -container/S. -containérisation/S. -containériser/a0a+() -contaminable/S. -contaminante/F.() -contamination/S. -contaminatrice/F.() -contaminée/F.() -contaminer/a0a+() -conte/S. -contée/F.() -contemplation/S. -contemplative/F.() -contemplativement -contemplatrice/F.() -contemplée/F.() -contempler/a0a+() -contemporaine/F.() -contemptrice/F.() -contenance/S. -contenante/F.() -conteneur/S. -conteneurisation/S. -conteneuriser/a0a+() -contenir/i0i+() -contente/F.() -contentée/F.() -contentement/S. -contenter/a0a+() -contentieuse/W.() -contention/S. -contentive/F.() -contenu/S. -contenue/F.() -conter/a0a+() -contestable/S. -contestataire/S. -contestation/S. -contestée/F.() -contester/a0a+() -conteuse/F.() -contexte/S. -contextualisation/S. -contextualiser/a0a+() -contextuelle/F.() -contexture/S. -contiguë/F.() -contiguïté/S. -continence/S. -continent/S. -continentale/W.() -continentalité/S. -continente/F.() -contingence/S. -contingente/F.() -contingentement/S. -contingenter/a0a+() -continuation/S. -continuatrice/F.() -continue/F.() -continuelle/F.() -continuellement -continuer/a0a+() -continuité/S. -continûment -continuo/S. -continuum/S. -contondante/F.() -contorsion/S. -contorsionnée/F.() -contorsionner/a0a+() -contorsionniste/S. -contour/S. -contournable/S. -contournée/F.() -contournement/S. -contourner/a0a+() -contraceptif/S. -contraception/S. -contraceptive/F.() -contractante/F.() -contractée/F.() -contracter/a0a+() -contractibilité/S. -contractile/S. -contractilité/S. -contraction/S. -contractualisation/S. -contractualisée/F.() -contractualiser/a0a+() -contractuelle/F.() -contractuellement -contracture/S. -contracturer/a0a+() -contradicteur/S. -contradiction/S. -contradictoire/S. -contradictoirement -contraignable/S. -contraignante/F.() -contraindre/wO() -contrainte/F.() -contrainte/S. -contraire/S. -contrairement -contralto/S. -contraposée/S. -contrapuntique/S. -contrapuntiste/S. -contrariante/F.() -contrariée/F.() -contrarier/a0a+() -contrariété/S. -contrario -contrarotative/F.() -contrastante/F.() -contraste/S. -contrastée/F.() -contraster/a0a+() -contrat/S. -contravariant/S. -contravention/S. -contre -contre/S. -contre-alizé/S. -contre-allée/S. -contre-amirale/W.() -contre-appel/S. -contre-arc/S. -contre-assurance/S. -contre-attaquable/S. -contre-attaquante/F.() -contre-attaque/S. -contre-attaquer/a0() -contrebalancement/S. -contrebalancer/a0a+() -contrebande/S. -contrebandière/F.() -contrebas -contrebasse/S. -contrebassiste/S. -contrebasson/S. -contrebatte/S. -contrebatterie/S. -contrebattre/uA() -contrebouter/a0a+() -contre-braquer/a0() -contrebutement/S. -contrebuter/a0a+() -contre-calque/S. -contre-calquer/a0a+() -contrecarrée/F.() -contrecarrer/a0a+() -contre-caution/S. -contrechamp/S. -contre-chant/S. -contre-choc/S. -contrecœur/S. -contrecollée/F.() -contrecoup/S. -contre-courant/S. -contre-courbe/S. -contre-culture/S. -contredanse/S. -contre-dénonciation/S. -contre-digue/S. -contredire/yD() -contredite/F.() -contrée/F.() -contre-écrou/S. -contre-électromotrice/F.() -contre-emploi/S. -contre-empreinte/S. -contre-enquête/S. -contre-épaulette/S. -contre-épreuve/S. -contre-espalier/S. -contre-espionnage/S. -contre-essai/S. -contre-exemple/S. -contre-expertise/S. -contre-extension/S. -contre-fa -contrefaçon/S. -contrefactrice/F.() -contrefaire/wD() -contrefaite/F.() -contre-fenêtre/S. -contre-fer/S. -contre-feu/X. -contrefiche/S. -contreficher/a0a+() -contre-fil/S. -contre-filet/S. -contrefixation/S. -contrefort/S. -contreforte/F.() -contrefoutre/tM() -contre-fugue/S. -contre-haut -contre-hermine/S. -contre-hus -contre-indication/S. -contre-indiquée/F.() -contre-indiquer/a0a+() -contre-interrogatoire/S. -contre-jambage/S. -contre-jour/S. -contre-la -contre-lame/S. -contre-lettre/S. -contre-lignage/S. -contremaîtresse/F.() -contremander/a0a+() -contre-manifestante/F.() -contre-manifestation/S. -contre-manifester/a0() -contremarche/S. -contremarquage/S. -contremarque/S. -contremarquer/a0a+() -contre-mesure/S. -contre-mi -contre-mine/S. -contre-miner/a0a+() -contre-mur/S. -contre-murer/a0a+() -contre-offensive/S. -contre-pal/S. -contrepartie/S. -contre-pas -contre-passation/S. -contre-passer/a0a+() -contre-pente/S. -contre-perçage/S. -contreperçante/F.() -contrepercement/S. -contre-percer/a0a+() -contre-performance/S. -contrepet/S. -contrepèterie/S. -contre-pied/S. -contreplacage/S. -contreplaqué/S. -contreplaquée/F.() -contreplaquer/a0a+() -contre-plongée/S. -contrepoids -contre-poinçon/S. -contrepoint/S. -contre-pointe/S. -contrepointiste/S. -contrepoison/S. -contre-porte/S. -contre-pousser/a8a+() -contre-pouvoir/S. -contre-préparation/S. -contre-pression/S. -contre-prestation/S. -contre-productive/F.() -contre-profil/S. -contre-profiler/a0a+() -contre-projet/S. -contre-propagande/S. -contre-proposition/S. -contre-publicité/S. -contrer/a0a+() -contre-rail/S. -contre-ré -contre-réforme/S. -contre-rejet/S. -contre-révolution/S. -contre-révolutionnaire/S. -contrescarpe/S. -contre-sceller/a0a+() -contreseing/S. -contre-sel/S. -contresens -contre-si -contresignataire/S. -contresignature/S. -contresignée/F.() -contresigner/a0a+() -contre-société/S. -contre-sol -contre-sujet/S. -contre-taille/S. -contretemps -contre-terrasse/S. -contre-terrorisme/S. -contre-terroriste/S. -contre-timbre/S. -contre-tirer/a0a+() -contre-torpilleur/S. -contre-transfert/S. -contretype/S. -contre-ut -contre-vair/S. -contre-valeur/S. -contrevenante/F.() -contrevenir/i0i+() -contrevent/S. -contreventement/S. -contrevérité/S. -contre-visite/S. -contre-voie -contre-voie/S. -contribuable/S. -contribuer/a0() -contribution/S. -contributive/F.() -contributrice/F.() -contrister/a0a+() -contrite/F.() -contrition/S. -contrôlabilité/S. -contrôlable/S. -controlatérale/W.() -contrôle/S. -contrôlée/F.() -contrôler/a0a+() -contrôleuse/F.() -contrordre/S. -controuvée/F.() -controuver/a0a+() -controversable/S. -controverse/S. -controversée/F.() -controverser/a0a+() -controversiste/S. -contumace/S. -contumax -contusion/S. -contusionnée/F.() -contusionner/a0a+() -conurbation/S. -convaincante/F.() -convaincre/wP() -convaincue/F.() -convalescence/S. -convalescente/F.() -convecteur/S. -convection/S. -convective/F.() -convenable/S. -convenablement -convenance/S. -convenir/i0i+() -convent/S. -conventicule/S. -convention/S. -conventionnée/F.() -conventionnelle/F.() -conventionnellement -conventionnement/S. -conventionner/a0a+() -conventuelle/F.() -convenue/F.() -convergence/S. -convergente/F.() -converger/a0() -conversation/S. -conversationnelle/F.() -converse/F.() -converser/a0() -conversion/S. -conversive/F.() -convertibilité/S. -convertible/S. -convertie/F.() -convertir/f0f+() -convertisseuse/F.() -convexe/S. -convexité/S. -conviction/S. -conviée/F.() -convier/a0a+() -convive/S. -conviviale/W.() -convivialiser/a0a+() -convivialité/S. -convocation/S. -convoi/S. -convoitée/F.() -convoiter/a0a+() -convoitise/S. -convoler/a0() -convolution/S. -convolutive/F.() -convolvulacée/S. -convoquée/F.() -convoquer/a0a+() -convoyage/S. -convoyée/F.() -convoyer/a0a+() -convoyeuse/F.() -convulsée/F.() -convulser/a0a+() -convulsion/S. -convulsionnée/F.() -convulsionner/a0a+() -convulsive/F.() -convulsivement -cookie/S. -cool -coolie/S. -coopérante/F.() -coopération/S. -coopératisme/S. -coopérative/F.() -coopérative/S. -coopératrice/F.() -coopérer/c0() -cooptation/S. -cooptée/F.() -coopter/a0a+() -coordination/S. -coordinatrice/F.() -coordinence/S. -coordonnatrice/F.() -coordonnée/F.() -coordonnée/S. -coordonner/a0a+() -copaïer/S. -copain/S. -copal/S. -copartage/S. -copartageante/F.() -copeau/X. -copépode/S. -copermuter/a0a+() -copernicienne/F.() -copernicium/S. -copiage/S. -copie/S. -copiée/F.() -copier/a0a+() -copieuse/F.() -copieuse/W.() -copieusement -copilote/S. -copinage/S. -copiner/a0() -copinerie/S. -copion/S. -copiste/S. -copla/S. -coplanaire/S. -copolymère/S. -copolymérisable/S. -copolymérisation/S. -coposséder/c0a+() -copossesseur/S. -coprah/S. -coprésidence/S. -coprésidente/F.() -coprocesseur/S. -coproduction/S. -coproductrice/F.() -coproduire/yM() -coproduite/F.() -coprolithe/S. -coprologie/S. -coprologique/S. -coprophage/S. -coprophagie/S. -coprophile/S. -coprophilie/S. -copropriétaire/S. -copropriété/S. -copte/S. -copulation/S. -copulative/F.() -copulatrice/F.() -copuler/a0() -copyleft -copyright -coq/S. -coq-à-l'âne -coquard/S. -coquart/S. -coque/S. -coquecigrue/S. -coquelet/S. -coqueleux -coquelicot/S. -coqueluche/S. -coquelucheuse/W.() -coquer/a0a+() -coquerico/S. -coquètement -coqueter/d0a+() -coquetier/S. -coquette/F.() -coquettement -coquetterie/S. -coquillage/S. -coquillard/S. -coquillart/S. -coquille/S. -coquillée/F.() -coquiller/a0a+() -coquillette/S. -coquilleuse/F.() -coquillière/F.() -coquine/F.() -coquinement -coquinerie/S. -cor/S. -coracle/S. -corail/X. -corallienne/F.() -corallifère/S. -coralliforme/S. -coralligène/S. -coralloïde/S. -coran/S. -coranique/S. -coraniser/a0a+() -corbeau/X. -corbeille/S. -corbillard/S. -corbillat/S. -corbin/S. -cordage/S. -corde/S. -cordeau/X. -cordée/F.() -cordelée/F.() -cordeler/d0a+() -cordelette/S. -cordelière/F.() -corder/a0a+() -corderie/S. -cordiale/W.() -cordialement -cordialité/S. -cordière/F.() -cordiforme/S. -cordillère/S. -cordon/S. -cordon-bleu -cordonnée/F.() -cordonner/a0a+() -cordonnerie/S. -cordonnet/S. -cordonnière/F.() -cordons-bleus -coréenne/F.() -coreligionnaire/S. -coriace/S. -coriandre/S. -coricide/S. -corindon/S. -corinthienne/F.() -cormier/S. -cormoran/S. -cornac/S. -cornacée/S. -cornaline/S. -cornancher/a0a+() -cornaquer/a0a+() -cornard/S. -corne/S. -corned-beef -cornée/F.() -cornéenne/F.() -corneille/S. -cornélienne/F.() -cornemuse/S. -cornemuseur/S. -corner/a0a+() -cornette/F.() -cornettiste/S. -corn-flake/S. -corniaud/S. -corniche/S. -cornichon/S. -cornière/F.() -cornillon/S. -cornique/S. -corniste/S. -cornouiller/S. -cornue/F.() -corollaire/S. -corollairement -corolle/S. -coron/S. -coronaire/S. -coronale/W.() -coronarienne/F.() -coronarite/S. -coronarographie/S. -coroner/S. -coronille/S. -coronographe/S. -coronographie/S. -corossolier/S. -corozo/S. -corporal/X. -corporation/S. -corporatisme/S. -corporatiste/S. -corporative/F.() -corporelle/F.() -corporellement -corps -corpulence/S. -corpulente/F.() -corpus -corpusculaire/S. -corpuscule/S. -corral/S. -correcte/F.() -correctement -correctif/S. -correction/S. -correctionnaliser/a0a+() -correctionnelle/F.() -corrective/F.() -correctrice/F.() -corrélable/S. -corrélat/S. -corrélation/S. -corrélative/F.() -corrélativement -corrélée/F.() -corréler/c0a+() -correspondance/S. -correspondancière/F.() -correspondante/F.() -correspondre/tE() -corrida/S. -corridor/S. -corrigeable/S. -corrigée/F.() -corriger/a0a+() -corrigible/S. -corroboration/S. -corroborée/F.() -corroborer/a0a+() -corrodée/F.() -corroder/a0a+() -corrompre/tA() -corrompue/F.() -corrosion/S. -corrosive/F.() -corroyage/S. -corroyer/a0a+() -corroyeuse/F.() -corruptible/S. -corruption/S. -corruptrice/F.() -corsage/S. -corsaire/S. -corsée/F.() -corselet/S. -corser/a0a+() -corset/S. -corsetée/F.() -corseter/b0a+() -corseterie/S. -corsetière/F.() -cortège/S. -cortex -corticale/W.() -corticoïde/S. -corticostéroïde/S. -corticosurrénale/S. -corticosurrénale/W.() -cortine/S. -cortisone -coruscante/F.() -corvéable/S. -corvée/S. -corvette/S. -corvidé/S. -coryphée/S. -coryza/S. -cosaque/S. -cosécante/S. -cosignataire/S. -cosignée/F.() -cosigner/a0a+() -cosinus -cosméticienne/F.() -cosmétique/S. -cosmétiquer/a0a+() -cosmétologie/S. -cosmétologue/S. -cosmique/S. -cosmiquement -cosmodrome/S. -cosmogonie/S. -cosmogonique/S. -cosmographe/S. -cosmographie/S. -cosmographique/S. -cosmologie/S. -cosmologique/S. -cosmologiste/S. -cosmologue/S. -cosmonaute/S. -cosmopolite/S. -cosmopolitisme/S. -cosmos -cossarde/F.() -cosse/S. -cosser/a0() -cossue/F.() -costale/W.() -costard/S. -costaude/F.() -costière/S. -costume/S. -costumée/F.() -costumer/a0a+() -costumière/F.() -cosy/S. -cotable/S. -cotangente/S. -cotation/S. -cote/S. -côte/S. -côté/S. -coteau/X. -cotée/F.() -côtelée/F.() -côtelette/S. -coter/a0a+() -coterie/S. -cothurne/S. -cotice/S. -coticée/F.() -cotidale/W.() -côtière/F.() -cotillon/S. -cotir/f0f+() -cotisante/F.() -cotisation/S. -cotiser/a0a+() -côtoiement/S. -coton/S. -cotonnade/S. -cotonnée/F.() -cotonner/a0a+() -cotonnerie/S. -cotonneuse/W.() -cotonnière/F.() -côtoyée/F.() -côtoyer/a0a+() -cotre/S. -cotriade/S. -cottage/S. -cotte/S. -cotylédon/S. -cou/S. -couac/S. -couarde/F.() -couardise/S. -couchage/S. -couchailler/a0() -couchante/F.() -couche/S. -couche-culotte -couchée/F.() -coucher/S. -coucher/a0a+() -coucherie/S. -couches-culottes -couche-tard -couche-tôt -couchette/S. -coucheuse/F.() -couci-couça -coucou -coucou/S. -coucoumelle/S. -coude/S. -coudée/F.() -coudée/S. -cou-de-pied -couder/a0a+() -coudoiement/S. -coudoyer/a0a+() -coudraie/S. -coudre/xO() -coudrier/S. -couenne/S. -couette/S. -couffin/S. -coufique/S. -couguar/S. -couic -couille/S. -couiller/a0a+() -couillon/S. -couillonnade/S. -couillonner/a0a+() -couillue/F.() -couinement/S. -couiner/a0() -coulage/S. -coulante/F.() -coulée/F.() -couler/a0a+() -couleur/S. -couleuvre/S. -couleuvreau/X. -couleuvrine/S. -couleuvrinier/S. -coulis -coulissage/S. -coulissante/F.() -coulisse/S. -coulissée/F.() -coulissement/S. -coulisser/a0a+() -coulissier/S. -couloir/S. -coulomb/Um() -coulommiers -coulpe/S. -coulure/S. -country -coup/S. -coupable/S. -coupablement -coupage/S. -coupaillée/F.() -coupailler/a0a+() -coupante/F.() -coupe/S. -coupeau/X. -coupe-batterie -coupe-choux -coupe-cigares -coupe-circuit -coupe-coupe -coupecoupe/S. -coupé-décalé -coupée/F.() -coupe-faim -coupe-feu -coupe-file -coupe-gorge -coupe-jambon -coupe-jarrets -coupe-légumes -coupelle/S. -coupeller/a0a+() -coupe-mottes -coupe-ongles -coupe-papier -coupe-pâte -couper/a0a+() -coupe-racines -couper-coller -couperet/S. -couperose/S. -couperosée/F.() -coupés-décalés -coupeuse/F.() -coupe-vent -couplage/S. -couple/S. -couplée/F.() -coupler/a0a+() -couplet/S. -coupleur/S. -coupole/S. -coupon/S. -couponnage/S. -coupon-réponse -coupons-réponse -coupure/S. -couque/S. -cour/S. -courage/S. -courageuse/W.() -courageusement -courailler/a0() -couramment -courant -courante/F.() -courbatue/F.() -courbature/S. -courbaturée/F.() -courbaturer/a0a+() -courbe/S. -courbée/F.() -courbement/S. -courber/a0a+() -courbette/S. -courbure/S. -courcaillet/S. -courette/S. -coureuse/F.() -courge/S. -courgette/S. -courir/iE() -courlieu/S. -courlis -couronne/S. -couronnée/F.() -couronnement/S. -couronner/a0a+() -courre -courriel/S. -courrielleur/S. -courrière/F.() -courriériste/S. -courroie/S. -courroucée/F.() -courroucer/a0a+() -courroux -cours -course/S. -coursée/F.() -courser/a0a+() -coursière/F.() -coursive/S. -coursonne/F.() -courtage/S. -courtaude/F.() -courtauder/a0a+() -court-bouillon -court-circuit -court-circuitée/F.() -court-circuiter/a0a+() -court-courrier/S. -courte/F.() -courtepointe/S. -courtière/F.() -courtilière/S. -courtine/S. -courtisane/F.() -courtisanerie/S. -courtisée/F.() -courtiser/a0a+() -courtoise/F.() -courtoisement -courtoisie/S. -courts-bouillons -courts-circuits -courue/F.() -couscous -cous-de-pied -couseuse/F.() -cousinage/S. -cousine/F.() -cousiner/a0() -coussin/S. -coussinet/S. -cousue/F.() -coût/S. -coûtante/F.() -couteau/X. -couteauner/a0a+() -couteau-scie -couteaux-scies -coutelas -coutelière/F.() -coutellerie/S. -coûter/a0a+() -coûteuse/W.() -coûteusement -coutil/S. -coutoner/a0a+() -coutoyer/a0a+() -coutre/S. -coutume/S. -coutumière/F.() -coutumièrement -couture/S. -couturée/F.() -couturer/a0a+() -couturière/F.() -couvain/S. -couvaison/S. -couvée/F.() -couvent/S. -couver/a0a+() -couvercle/S. -couverte/F.() -couverture/S. -couveuse/S. -couvoir/S. -couvrante/F.() -couvre-chef/S. -couvre-feu/X. -couvre-lit/S. -couvre-pied/S. -couvre-pieds -couvreuse/F.() -couvrir/iC() -covalence/S. -covalente/F.() -covariance/S. -covariante/F.() -covecteur/S. -covendeuse/F.() -cover-girl/S. -covoiturage/S. -covolume/S. -cow-boy/S. -coxale/W.() -coxalgie/S. -coxalgique/S. -coxarthrose/S. -coxer/a0a+() -coyau/S. -coyote/S. -cr -crabe/S. -crabier/S. -crabot/S. -crabotage/S. -crac -crac/S. -crachat/S. -crachée/F.() -crachement/S. -cracher/a0a+() -cracheuse/F.() -crachin/S. -crachiner/a9() -crachoir/S. -crachotement/S. -crachoter/a0() -crachouiller/a0a+() -crachouillis -crack/S. -cracker/S. -cracking/S. -cracra -crado/S. -craft -craie/S. -craignos -crailler/a0() -craindre/wO() -crainte/F.() -crainte/S. -craintive/F.() -craintivement -crambé/S. -cramée/F.() -cramer/a0a+() -cramique/S. -cramoisie/F.() -crampe/S. -crampillon/S. -crampon/S. -cramponnée/F.() -cramponnement/S. -cramponner/a0a+() -cramponnet/S. -crampser/a0() -cramser/a0() -cran/S. -crâne/S. -crânement -craner/a0a+() -crâner/a0() -crânerie/S. -crâneuse/F.() -crânienne/F.() -crâniologie -craniologie/S. -crâniologique/S. -crantée/F.() -cranter/a0a+() -crapahuter/a0() -crapaud/S. -crapaudine/S. -crapaüter/a0() -crapette/S. -crapoter/a0() -crapoteuse/W.() -crapouillot/S. -crapoussine/F.() -crapule/S. -crapuler/a0() -crapulerie/S. -crapuleuse/W.() -crapuleusement -craquage/S. -craquante/F.() -craquée/F.() -craquelage/S. -craquelée/F.() -craquèlement/S. -craqueler/d0a+() -craquelure/S. -craquement/S. -craquer/a0a+() -craquètement/S. -craqueter/d0() -craqueur/S. -crase/S. -crash/S. -crasher/a0a+() -crassane/S. -crasse/S. -crasser/a0a+() -crasseuse/W.() -crassier/S. -crassulacée/S. -cratère/S. -craterelle/S. -cratériforme/S. -cravache/S. -cravachée/F.() -cravacher/a0a+() -cravate/S. -cravatée/F.() -cravater/a0a+() -crave/S. -crawl -crawlée/F.() -crawler/a0() -crawleuse/F.() -crayeuse/W.() -crayon/S. -crayonnage/S. -crayonné/S. -crayonner/a0a+() -crayonneuse/W.() -créance/S. -créancière/F.() -créatine/S. -créatinine/S. -création/S. -créationnisme/S. -créationniste/S. -créative/F.() -créativité/S. -créatrice/F.() -créature/S. -crécelle/S. -crécerelle/S. -crèche/S. -crécher/c0() -crédence/S. -crédibiliser/a0a+() -crédibilité/S. -crédible/S. -crédit/S. -crédit-bail -créditée/F.() -créditer/a0a+() -créditiste/S. -créditrice/F.() -crédits-bails -credo -crédule/S. -crédulité/S. -créée/F.() -créer/a0a+() -crémaillère/S. -crémation/S. -crématoire/S. -crématorium/S. -crème/S. -crémée/F.() -crémer/c0() -crèmerie/S. -crémeuse/W.() -crémière/F.() -crémone/S. -crénage/S. -créneau/X. -crénelage/S. -crénelée/F.() -créneler/aY() -crénelure/S. -créner/c0a+() -crénom -crénothérapie/S. -créole/S. -créolisation/S. -créoliser/a0a+() -créolisme/S. -créoliste/S. -créolité/S. -créosote/S. -créosoter/a0a+() -crêpage/S. -crêpe/S. -crêpée/F.() -crêper/a0a+() -crêperie/S. -crépie/F.() -crêpière/F.() -crépin/S. -crépine/S. -crépinette/S. -crépir/f0f+() -crépissage/S. -crépisseuse/F.() -crépitante/F.() -crépitation/S. -crépitement/S. -crépiter/a0() -crépon/S. -crépue/F.() -crépusculaire/S. -crépuscule/S. -crescendo -crescendo/S. -cressicultrice/F.() -cressiculture/S. -cresson/S. -cressonnière/S. -crétacé/S. -crétacée/F.() -crête/S. -crêtée/F.() -crételer/aZ() -crétine/F.() -crétinerie/S. -crétinisation/S. -crétiniser/a0a+() -crétinisme/S. -crétoise/F.() -cretonne/S. -creusage/S. -creuse/W.() -creusée/F.() -creusement/S. -creuser/a0a+() -creuset/S. -crevaison/S. -crevante/F.() -crevarde/F.() -crevasse/S. -crevassée/F.() -crevasser/a0a+() -crève/S. -crève-cœur -crevée/F.() -crève-la-faim -crever/b0a+() -crève-tonneau -crevette/S. -crève-vessie -crevure/S. -cri/S. -criaillement/S. -criailler/a0() -criaillerie/S. -criante/F.() -criarde/F.() -criblage/S. -crible/S. -criblée/F.() -cribler/a0a+() -cribleuse/F.() -cric/S. -cricket/S. -cricri/S. -criée/F.() -criée/S. -crier/a0a+() -crieuse/F.() -crime/S. -criminalisée/F.() -criminaliser/a0a+() -criminaliste/S. -criminalistique/S. -criminalité/S. -criminelle/F.() -criminellement -criminologie/S. -criminologique/S. -criminologiste/S. -criminologue/S. -crin/S. -crinière/S. -crinoïde/S. -crinoline/S. -crique/S. -criquer/a0a+() -criquet/S. -crise/S. -criser/a0() -crispante/F.() -crispation/S. -crispée/F.() -crisper/a0a+() -crissement/S. -crisser/a0() -cristal/X. -cristallerie/S. -cristallière/F.() -cristalline/F.() -cristallinité/S. -cristallisable/S. -cristallisante/F.() -cristallisation/S. -cristallisée/F.() -cristalliser/a0a+() -cristallisoir/S. -cristallochimie/S. -cristallogène/S. -cristallogenèse/S. -cristallographe/S. -cristallographie/S. -cristallographique/S. -critère/S. -critérium/S. -criticailler/a0a+() -criticisme/S. -criticité/S. -critiquable/S. -critique/S. -critiquée/F.() -critiquement -critiquer/a0a+() -croassante/F.() -croassement/S. -croasser/a0() -croate/S. -croc/S. -croc-en-jambe -croche/S. -croche-patte/S. -croche-pied/S. -crocher/a0a+() -crochet/S. -crochetage/S. -crochetée/F.() -crocheter/b0a+() -crocheteur/S. -crochue/F.() -crocodile/S. -crocs-en-jambe -crocus -croire/xA() -croisade/S. -croisée/F.() -croisement/S. -croiser/a0a+() -croisetée/F.() -croisette/S. -croiseur/S. -croisière/S. -croisillon/S. -croissance/S. -croissant/S. -croissante/F.() -croissantée/F.() -croissantière/F.() -croisure/S. -croît/S. -croître/wTwU() -croix -crolle/S. -crollée/F.() -croller/a0() -cromlech/S. -crônir -crooner/S. -croquante/F.() -croquée/F.() -croque-madame -croquemitaine/S. -croque-monsieur -croque-mort/S. -croque-note/S. -croquer/a0a+() -croquette/F.() -croqueuse/F.() -croquis -cross -cross-country/S. -crosse/S. -crossée/F.() -crosser/a0a+() -crotale/S. -crotte/S. -crottée/F.() -crotter/a0a+() -crottin/S. -crouillat/S. -crouille/S. -croulante/F.() -crouler/a0() -crounir -croupe/S. -croupie/F.() -croupière/F.() -croupion/S. -croupionner/a0() -croupir/f0() -croupissante/F.() -croupissement/S. -croustade/S. -croustillante/F.() -croustiller/a0() -croûte/S. -croûter/a0a+() -croûteuse/W.() -croûton/S. -croûtonner/a0a+() -croyable/S. -croyance/S. -croyante/F.() -cruauté/S. -cruche/S. -cruchon/S. -cruciale/W.() -crucifère/S. -crucifiée/F.() -crucifiement/S. -crucifier/a0a+() -crucifix -crucifixion/S. -cruciforme/S. -cruciverbiste/S. -crudité/S. -crue/F.() -cruelle/F.() -cruellement -crumble/S. -crûment -crustacé/S. -cruzeiro/S. -crwth/S. -cryochimie/S. -cryogène/S. -cryogénie/S. -cryogénique/S. -cryogénisée/F.() -cryolite/S. -cryolithe/S. -cryologie/S. -cryométrie/S. -cryophysique/S. -cryoscopie/S. -cryostat/S. -cryotempérature/S. -cryothérapie/S. -cryptage/S. -cryptanalyse/S. -crypte/S. -cryptée/F.() -crypter/a0a+() -cryptique/S. -cryptogame/S. -cryptogamique/S. -cryptogramme/S. -cryptographe/S. -cryptographie/S. -cryptographiée/F.() -cryptographier/a0a+() -cryptographique/S. -cryptologie/S. -cryptologique/S. -cryptologue/S. -cryptozoologie/S. -cubage/S. -cubaine/F.() -cube/S. -cuber/a0a+() -cuberdon/S. -cubique/S. -cubisme/S. -cubiste/S. -cubitus -cucul -cucurbitacée/S. -cucurbite/S. -cucurbitin/S. -cueillette/S. -cueilleuse/F.() -cueillie/F.() -cueillir/iR() -cuesta/S. -cui-cui -cui-cui -cuider/S. -cuiller/S. -cuillère/S. -cuillerée/S. -cuir/S. -cuirasse/S. -cuirassé/S. -cuirassée/F.() -cuirassement/S. -cuirasser/a0a+() -cuirassier/S. -cuire/yL() -cuisante/F.() -cuiseuse/F.() -cuisine/S. -cuisinée/F.() -cuisiner/a0a+() -cuisinette/S. -cuisinière/F.() -cuisiniste/S. -cuissage -cuissarde/F.() -cuisse/S. -cuisseau/X. -cuisson/S. -cuissot/S. -cuistax -cuistot/S. -cuistre/S. -cuistrerie/S. -cuite/F.() -cuite/S. -cuiter/a0a+() -cuivre/S. -cuivrée/F.() -cuivrer/a0a+() -cuivrerie/S. -cuivreuse/W.() -cuivrique/S. -cul/S. -culbutage/S. -culbute/S. -culbutée/F.() -culbuter/a0a+() -culbuteur/S. -cul-de-basse-fosse -cul-de-jatte -cul-de-lampe -cul-de-sac -culée/S. -culer/a0a+() -culeron/S. -culex -culière/S. -culinaire/S. -culminante/F.() -culmination/S. -culminer/a0() -culot/S. -culottage/S. -culotte/S. -culottée/F.() -culotter/a0a+() -culottière/F.() -culpabilisante/F.() -culpabilisation/S. -culpabilisée/F.() -culpabiliser/a0a+() -culpabilité/S. -culs-de-basse-fosse -culs-de-jatte -culs-de-lampe -culs-de-sac -culte/S. -cultisme/S. -cultivable/S. -cultivar/S. -cultivatrice/F.() -cultivée/F.() -cultiver/a0a+() -cultuelle/F.() -culturale/W.() -culturalisme/S. -culture/S. -culturelle/F.() -culturellement -culturisme/S. -culturiste/S. -cumin/S. -cumul/S. -cumulable/S. -cumularde/F.() -cumulative/F.() -cumulativement -cumulatrice/F.() -cumulée/F.() -cumuler/a0a+() -cumulet/S. -cumulonimbus -cumulostratus -cumulo-volcan/S. -cumulus -cunéiforme/S. -cuniculicultrice/F.() -cuniculiculture/S. -cunicultrice/F.() -cuniculture/S. -cunnilinctus -cunnilingus -cupide/S. -cupidement -cupidité/S. -cupidon/S. -cupressinée/S. -cuprifère/S. -cuprique/S. -cuprite/S. -cupule/S. -curable/S. -curaçao -curage/S. -curaillon/S. -curare/S. -curarisante/F.() -curarisation/S. -curatelle/S. -curative/F.() -curatrice/F.() -curcuma/S. -cure/S. -cure-dents -curée/S. -cure-ongles -cure-oreille/S. -cure-pipe/S. -curer/a0a+() -curetage/S. -cureter/d0a+() -cureton/S. -curettage/S. -curette/S. -curiale/W.() -curie/S. -curie/Um() -curiethérapie/S. -curieuse/W.() -curieusement -curiosité/S. -curiste/S. -curium/S. -curling/S. -curriculum/S. -curry/S. -curseur/S. -cursive/F.() -cursus -curule/S. -curviligne/S. -curvimètre/S. -cuscutacée/S. -cuscute/S. -cuspide/S. -custode/S. -cutanée/F.() -cut-back -cuter -cuti -cuticule/S. -cutine/S. -cuti-réaction/S. -cutter/S. -cuvage/S. -cuvaison/S. -cuve/S. -cuveau/X. -cuvelage/S. -cuveler/d0a+() -cuvellement/S. -cuver/a0a+() -cuverie/S. -cuvette/S. -cuvier/S. -cuviste/S. -cyan/S. -cyanamide/S. -cyanhydrique/S. -cyanobactérie/S. -cyanogène/S. -cyanophycée/S. -cyanose/S. -cyanosée/F.() -cyanoser/a0a+() -cyanuration/S. -cyanure/S. -cybercafé/S. -cybercrime/S. -cybercriminalité/S. -cybercriminelle/F.() -cyberdélinquance/S. -cyberdélinquante/F.() -cyberdépendance/S. -cyberespace/S. -cybermonde/S. -cybernéticienne/F.() -cybernétique/S. -cybersquatteuse/F.() -cyborg/S. -cycas -cyclable/S. -cyclamen/S. -cyclane/S. -cycle/S. -cyclicité/S. -cyclique/S. -cycliquement -cyclisation/S. -cyclisme/S. -cycliste/S. -cycloalcane/S. -cyclo-cross -cycloïdale/W.() -cycloïde/S. -cyclomoteur/S. -cyclomotoriste/S. -cyclonale/W.() -cyclone/S. -cyclonique/S. -cyclope/S. -cyclopéenne/F.() -cyclo-pousse -cyclorameur/S. -cyclostome/S. -cyclothymie/S. -cyclothymique/S. -cyclotomie/S. -cyclotomique/S. -cyclotourisme -cyclotouriste/S. -cyclotron/S. -cygne/S. -cylindrage/S. -cylindraxe/S. -cylindre/S. -cylindrée/F.() -cylindrer/a0a+() -cylindreuse/F.() -cylindrique/S. -cymbalaire/S. -cymbale/S. -cymbalière/F.() -cymbaliste/S. -cymbalum/S. -cyme/S. -cynégétique/S. -cynips -cynique/S. -cyniquement -cynisme/S. -cynocéphale/S. -cynodrome/S. -cynoglosse/S. -cynophile/S. -cynorhodon/S. -cyon/S. -cypéracée/S. -cyphose/S. -cyprès -cyprière/S. -cyprin/S. -cyprine/S. -cypriote/S. -cyrien/S. -cyrillique/S. -cystectomie/S. -cystéine/S. -cysticerque/S. -cystine/S. -cystique/S. -cystite/S. -cystographie/S. -cystoscope/S. -cystoscopie/S. -cystotomie/S. -cytise/S. -cytochrome/S. -cytodiagnostic/S. -cytogénéticienne/F.() -cytogénétique/S. -cytologie/S. -cytologique/S. -cytologiste/S. -cytolyse/S. -cytomètre/S. -cytométrie/S. -cytométrique/S. -cytopathologie/S. -cytopathologique/S. -cytopathologiste/S. -cytoplasme/S. -cytoplasmique/S. -cytosine/S. -cytosol/S. -cytosquelette/S. -czimbalum/S. -d -d/||-- -dB/||-- -d'Estaing -dactyle/S. -dactylique/S. -dactylo/S. -dactylographe/S. -dactylographie/S. -dactylographiée/F.() -dactylographier/a0a+() -dactylographique/S. -dactylologie/S. -dactyloscopie/S. -dada/S. -dadais -dadaïsme/S. -dadoter/a0a+() -d'afillée -dague/S. -daguer/a0a+() -daguerréotype/S. -daguet/S. -dahir/S. -dahlia/S. -dahoméenne/F.() -daigner/a0a+() -daim/S. -daïmio/S. -daine/S. -dais -dalaï-lama/S. -daleau/S. -dalembertienne/F.() -dallage/S. -dalle/S. -dallée/F.() -daller/a0a+() -dalleuse/F.() -dalmate/S. -dalmatienne/F.() -dalmatique/S. -dalot/S. -dalton/Um() -daltonienne/F.() -daltonisme/S. -dam -damage/S. -damalisque/S. -daman/S. -damasquinage/S. -damasquinée/F.() -damasquiner/a0a+() -damasquinerie/S. -damasquineuse/F.() -damasquinure/S. -damassée/F.() -damasser/a0a+() -damassine/S. -damassure/S. -dame/S. -dame-jeanne -damer/a0a+() -dames-jeannes -dameuse/F.() -damier/S. -damnable/S. -damnation/S. -damnée/F.() -damner/a0a+() -damoiseau/X. -damoiselle/S. -dan/S. -danaïde/S. -dancing/S. -dandin/S. -dandinement/S. -dandiner/a0a+() -dandinette/S. -dandy/S. -dandysme/S. -danger/S. -dangereuse/W.() -dangereusement -dangerosité/S. -danienne/F.() -danoise/F.() -dans -dansable/S. -dansante/F.() -danse/S. -danser/a0a+() -danseuse/F.() -dansoter/a0() -dantesque/S. -danubienne/F.() -daphné/S. -daphnie/S. -daraise/S. -darbouka/S. -darce/S. -dard/S. -darder/a0a+() -dare-dare -dariole/S. -darique/S. -darmstadtium/S. -darne/S. -d'arrache-pied -darse/S. -dartois -dartre/S. -dartreuse/W.() -dartrose/S. -darwinienne/F.() -darwinisme/S. -darwiniste/S. -dast/||-- -dasyure/S. -datable/S. -datage/S. -datagramme/S. -dataire/S. -datation/S. -datcha/S. -date/S. -datée/F.() -dater/a0a+() -daterie/S. -dateuse/F.() -dation/S. -dative/F.() -datte/S. -dattier/S. -datura/S. -daube/S. -daubée/F.() -dauber/a0a+() -daubeuse/F.() -daubière/S. -dauphin/S. -dauphine/F.() -dauphinelle/S. -dauphinoise/F.() -daurade/S. -davantage -davier/S. -dazibao/S. -de/S. -dé/S. -déactiver/a0a+() -deal/S. -dealer/S. -dealer/a0a+() -déambulateur/S. -déambulation/S. -déambulatoire/S. -déambuler/a0a+() -débâchage/S. -débâchée/F.() -débâcher/a0a+() -débâcle/S. -débâclement/S. -débâcler/a0a+() -débagouler/a0a+() -débâillonner/a0a+() -déballage/S. -déballastage/S. -déballée/F.() -déballer/a0a+() -déballonner/a0a+() -débalourder/a0a+() -débanalisation/S. -débanaliser/a0a+() -débandade/S. -débandage/S. -débander/a0a+() -débaptisée/F.() -débaptiser/a0a+() -débarbante/F.() -débarbe/S. -débarboter/a0a+() -débarbouillage/S. -débarbouillée/F.() -débarbouiller/a0a+() -débarbouillette/S. -débarcadère/S. -débardage/S. -débarder/a0a+() -débardeuse/F.() -débarquée/F.() -débarquement/S. -débarquer/a0a+() -débarrassée/F.() -débarrasser/a0a+() -débarrasseuse/F.() -débarrer/a0a+() -débâter/a0a+() -débâtir/f0f+() -débattement/S. -débatteuse/F.() -débattre/uA() -débattue/F.() -débauchage/S. -débauche/S. -débauchée/F.() -débaucher/a0a+() -débecqueter/d0a+() -débecter/a0a+() -débenzolage/S. -débet/S. -débile/S. -débilement -débilitante/F.() -débilitation/S. -débilité/S. -débiliter/a0a+() -débillarder/a0a+() -débine/S. -débiner/a0a+() -débit/S. -débitable/S. -débitage/S. -débitante/F.() -débitée/F.() -débiter/a0a+() -débiteuse/S. -débitmètre/S. -débitrice/F.() -déblai/S. -déblaiement/S. -déblatérer/c0() -déblayage/S. -déblayée/F.() -déblayer/a0a+() -débleuir/f0f+() -déblocage/S. -débloquée/F.() -débloquer/a0a+() -débobiner/a0a+() -débogage/S. -déboguée/F.() -déboguer/a0a+() -débogueur/S. -déboire/S. -déboisage/S. -déboisée/F.() -déboisement/S. -déboiser/a0a+() -déboîtée/F.() -déboîtement/S. -déboîter/a0a+() -débonder/a0a+() -débonnaire/S. -débonnairement -débonnaireté/S. -débord/S. -débordante/F.() -débordée/F.() -débordement/S. -déborder/a0a+() -débosselage/S. -débosseler/d0a+() -débosseleuse/F.() -débotter/a0a+() -débouchage/S. -débouchée/F.() -débouchement/S. -déboucher/a0a+() -déboucheur/S. -débouchoir/S. -débouclée/F.() -déboucler/a0a+() -débouder/a0a+() -débouilli/S. -débouillir/iQ() -débouler/a0a+() -déboulonnage/S. -déboulonnée/F.() -déboulonnement/S. -déboulonner/a0a+() -débouquement/S. -débouquer/a0() -débourbage/S. -débourber/a0a+() -débourbeur/S. -débourgeoisée/F.() -débourrage/S. -débourrement/S. -débourrer/a0a+() -débourreuse/F.() -débours -déboursement/S. -débourser/a0a+() -déboussolée/F.() -déboussoler/a0a+() -debout -déboutée/F.() -déboutement/S. -débouter/a0a+() -déboutonnage/S. -déboutonnée/F.() -déboutonner/a0a+() -débraguetter/a0a+() -débraillée/F.() -débraillement/S. -débrailler/a0a+() -débranchée/F.() -débranchement/S. -débrancher/a0a+() -débrayage/S. -débrayer/a0a+() -débridée/F.() -débridement/S. -débrider/a0a+() -débriefer/a0a+() -débriefing/S. -débris -débrochage/S. -débrocher/a0a+() -débrôler/a0a+() -débrouillage/S. -débrouillarde/F.() -débrouillardise/S. -débrouillement/S. -débrouiller/a0a+() -débroussaillage/S. -débroussaillée/F.() -débroussaillement/S. -débroussailler/a0a+() -débroussailleuse/F.() -débrousser/a0a+() -débucher/a0a+() -débudgétisation/S. -débudgétiser/a0a+() -débugger/a0a+() -débuller/a0a+() -débureaucratiser/a0a+() -débusquée/F.() -débusquement/S. -débusquer/a0a+() -début/S. -débutante/F.() -débuter/a0a+() -déc -deçà -déca/S. -décachetée/F.() -décacheter/d0a+() -décadaire/S. -décade/S. -décadenassée/F.() -décadenasser/a0a+() -décadence/S. -décadente/F.() -décadi/S. -décadrer/a0a+() -décaèdre/S. -décaféinée/F.() -décaféiner/a0a+() -décagonale/W.() -décagone/S. -décaissement/S. -décaisser/a0a+() -décalage/S. -décalaminage/S. -décalaminée/F.() -décalaminer/a0a+() -décalcariser/a0a+() -décalcification/S. -décalcifiée/F.() -décalcifier/a0a+() -décalcomanie/S. -décalée/F.() -décaler/a0a+() -décalogie/S. -décalogue/S. -décalottée/F.() -décalotter/a0a+() -décalquage/S. -décalquée/F.() -décalquer/a0a+() -décalqueuse/F.() -décalvante/F.() -décamètre/S. -décamper/a0() -décan/S. -décanale/W.() -décanat/S. -décaniller/a0() -décantage/S. -décantation/S. -décantée/F.() -décanter/a0a+() -décanteuse/F.() -décapage/S. -décapante/F.() -décapeler/d0a+() -décaper/a0a+() -décapeuse/F.() -décapitaliser/a0a+() -décapitation/S. -décapitée/F.() -décapiter/a0a+() -décapode/S. -décapotable/S. -décapoter/a0a+() -décapsulage/S. -décapsulation/S. -décapsulée/F.() -décapsuler/a0a+() -décapsuleur/S. -décapuchonner/a0a+() -décarburation/S. -décarburer/a0a+() -décarcassée/F.() -décarcasser/a0a+() -décarpiller/a0a+() -décarreler/d0a+() -décarrer/a0() -décartellisation/S. -décartonner/a0a+() -décastère/S. -décasyllabe/S. -décasyllabique/S. -décathlon/S. -décathlonienne/F.() -décatie/F.() -décatir/f0f+() -décauser/a0a+() -decauville/S. -décavaillonner/a0a+() -décavée/F.() -décaver/a0a+() -décédée/F.() -décéder/c0() -décelable/S. -décelée/F.() -décèlement/S. -déceler/b0a+() -décélération/S. -décélérée/F.() -décélérer/c0() -décembre/S. -décemment -décemvir/S. -décemvirale/W.() -décemvirat/S. -décemviri -décence/S. -décennale/W.() -décennie/S. -décente/F.() -décentralisation/S. -décentralisatrice/F.() -décentralisée/F.() -décentraliser/a0a+() -décentrée/F.() -décentrer/a0a+() -déception/S. -décercler/a0a+() -décérébrante/F.() -décérébrée/F.() -décérébrer/c0a+() -décernée/F.() -décerner/a0a+() -décervelage/S. -décervelée/F.() -décerveler/d0a+() -décès -décesser/a0a+() -décevante/F.() -décevoir/pK() -déchagriner/a0a+() -déchaînée/F.() -déchaînement/S. -déchaîner/a0a+() -déchanter/a0() -déchaper/a0a+() -déchaperonner/a0a+() -décharge/S. -déchargée/F.() -déchargement/S. -déchargeoir/S. -décharger/a0a+() -déchargeuse/F.() -décharnée/F.() -décharnement/S. -décharner/a0a+() -déchaumage/S. -déchaumer/a0a+() -déchaumeuse/F.() -déchaussage/S. -déchaussée/F.() -déchaussement/S. -déchausser/a0a+() -dèche/S. -déchéance/S. -décher/c0a+() -déchet/S. -déchetterie/S. -déchevelante/F.() -déchevêtrer/a0a+() -décheviller/a0a+() -déchiffonner/a0a+() -déchiffrable/S. -déchiffrage/S. -déchiffrée/F.() -déchiffrement/S. -déchiffrer/a0a+() -déchiffreuse/F.() -déchiquetage/S. -déchiquetée/F.() -déchiqueter/d0a+() -déchiqueteuse/F.() -déchiqueture/S. -déchirage/S. -déchirante/F.() -déchirée/F.() -déchirement/S. -déchirer/a0a+() -déchirure/S. -déchlorurer/a0a+() -déchoir/pX() -déchristianisation/S. -déchristianisée/F.() -déchristianiser/a0a+() -déchromer/a0a+() -déchronologie/S. -déchue/F.() -déci/S. -décibel/S. -décidabilité/S. -décidable/S. -décidée/F.() -décidément -décider/a0a+() -décideuse/F.() -déciduale/S. -décigrade/S. -décilage/S. -décile/S. -décimale/W.() -décimalisation/S. -décimaliser/a0a+() -décimalité/S. -décimateur/S. -décimation/S. -décime/S. -décimée/F.() -décimer/a0a+() -décimétrique/S. -decimo -décintrage/S. -décintrement/S. -décintrer/a0a+() -décision/S. -décisionnaire/S. -décisionnelle/F.() -décisive/F.() -décisivement -décisoire/S. -déclamation/S. -déclamatoire/S. -déclamatrice/F.() -déclamée/F.() -déclamer/a0a+() -déclarante/F.() -déclaration/S. -déclarative/F.() -déclaratoire/S. -déclarée/F.() -déclarer/a0a+() -déclassée/F.() -déclassement/S. -déclasser/a0a+() -déclaveter/d0a+() -déclenchable/S. -déclenchée/F.() -déclenchement/S. -déclencher/a0a+() -déclencheur/S. -décléricaliser/a0a+() -déclic/S. -déclin/S. -déclinable/S. -déclinaison/S. -déclinante/F.() -déclinatoire/S. -déclinée/F.() -décliner/a0a+() -décliquetage/S. -décliqueter/d0a+() -déclive/S. -déclivité/S. -décloisonnée/F.() -décloisonnement/S. -décloisonner/a0a+() -déclore/rA() -déclose/F.() -déclouer/a0a+() -décochage/S. -décocher/a0a+() -décoction/S. -décodage/S. -décodée/F.() -décoder/a0a+() -décodeuse/F.() -décoffrage/S. -décoffrer/a0a+() -décohabitation/S. -décohérence/S. -décoiffage/S. -décoiffée/F.() -décoiffement/S. -décoiffer/a0a+() -décoincer/a0a+() -décolérer/c0() -décollage/S. -décollation/S. -décollée/F.() -décollement/S. -décoller/a0a+() -décolletage/S. -décolletée/F.() -décolleter/d0a+() -décolleteuse/F.() -décolonisation/S. -décolonisée/F.() -décoloniser/a0a+() -décolorante/F.() -décoloration/S. -décolorée/F.() -décolorer/a0a+() -décombres -décommandée/F.() -décommander/a0a+() -décommettre -décommuniser/a0a+() -décompacter/a0a+() -décompensation/S. -décompensée/F.() -décompenser/a0() -décompilation/S. -décomplexée/F.() -décomplexer/a0a+() -décomposable/S. -décomposée/F.() -décomposer/a0a+() -décomposition/S. -décompressée/F.() -décompresser/a0a+() -décompression/S. -décomprimée/F.() -décomprimer/a0a+() -décomptage/S. -décompte/S. -décomptée/F.() -décompter/a0a+() -décompteuse/F.() -déconcentration/S. -déconcentrée/F.() -déconcentrer/a0a+() -déconcertante/F.() -déconcertée/F.() -déconcerter/a0a+() -déconcubiner -déconditionnée/F.() -déconditionnement/S. -déconditionner/a0a+() -déconfire/yV() -déconfite/F.() -déconfiture/S. -décongélation/S. -décongelée/F.() -décongeler/b0a+() -décongestion/S. -décongestionnée/F.() -décongestionnement/S. -décongestionner/a0a+() -décongestive/F.() -déconnectée/F.() -déconnecter/a0a+() -déconner/a0() -déconneuse/F.() -déconnexion/S. -déconseillée/F.() -déconseiller/a0a+() -déconsidération/S. -déconsidérée/F.() -déconsidérer/c0a+() -déconsigner/a0a+() -déconstiper/a0a+() -déconstruction/S. -déconstruire/yM() -déconstruisante/F.() -déconstruite/F.() -décontamination/S. -décontaminée/F.() -décontaminer/a0a+() -décontamineur/S. -décontenancée/F.() -décontenancer/a0a+() -décontractante/F.() -décontractée/F.() -décontracter/a0a+() -décontraction/S. -déconventionnement/S. -déconvenue/S. -déconversion/S. -décor/S. -décoration/S. -décorative/F.() -décorativement -décoratrice/F.() -décorcer/a0a+() -décorder/a0a+() -décorée/F.() -décorer/a0a+() -décorner/a0a+() -décorporation/S. -décorrélation/S. -décorticage/S. -décortication/S. -décortiquée/F.() -décortiquer/a0a+() -décortiqueuse/F.() -décorum/S. -décote/S. -décotée/F.() -découchage/S. -découcher/a0() -découdre/xO() -découler/a0() -découpage/S. -découpe/S. -découpée/F.() -découper/a0a+() -découpeuse/F.() -découplage/S. -découplée/F.() -découpler/a0a+() -découpoir/S. -découpure/S. -décourageante/F.() -découragée/F.() -découragement/S. -décourager/a0a+() -découronnée/F.() -découronnement/S. -découronner/a0a+() -décours -décousue/F.() -décousure/S. -découverte/F.() -découvrement/S. -découvreuse/F.() -découvrir/iC() -décrambuter -décramponner/a0a+() -décrapouiller -décrassage/S. -décrassée/F.() -décrassement/S. -décrasser/a0a+() -décrasseur/S. -décréditer/a0a+() -décrément/S. -décrémentation/S. -décrémentée/F.() -décrémenter/a0a+() -décrêpage/S. -décrêpée/F.() -décrêper/a0a+() -décrépie/F.() -décrépir/f0f+() -décrépissage/S. -décrépiter/a0a+() -décrépitude/S. -decrescendo -decrescendo/S. -décret/S. -décrétée/F.() -décréter/c0a+() -décret-loi -décrets-lois -décreusage/S. -décreuser/a0a+() -décri/S. -décriée/F.() -décrier/a0a+() -décriminaliser/a0a+() -décrire/y1() -décrispation/S. -décrisper/a0a+() -décrite/F.() -décrochage/S. -décrochée/F.() -décrochement/S. -décrocher/a0a+() -décrocheuse/F.() -décroiser/a0a+() -décroissance/S. -décroissante/F.() -décroissement/S. -décroît/S. -décroître/wT() -décrottage/S. -décrotter/a0a+() -décrotteur/S. -décrottoir/S. -décroûter/a0a+() -décruage/S. -décrue/S. -décruer/a0a+() -décrusage/S. -décruser/a0a+() -décryptage/S. -décryptée/F.() -décrypter/a0a+() -décubitus -déçue/F.() -décuire -décuivrer/a0a+() -déculasser/a0a+() -déculotter/a0a+() -déculpabiliser/a0a+() -décuplée/F.() -décuplement/S. -décupler/a0a+() -décurion/S. -décurrente/F.() -décuscuteuse/S. -décussée/F.() -décuvage/S. -décuvaison/S. -décuver/a0a+() -dédaignable/S. -dédaignée/F.() -dédaigner/a0a+() -dédaigneuse/W.() -dédaigneusement -dédain/S. -dédale/S. -dédaléenne/F.() -dedans -dedans -dédicace/S. -dédicacée/F.() -dédicacer/a0a+() -dédicataire/S. -dédicatoire/S. -dédiée/F.() -dédier/a0a+() -dédire/yD() -dédommagée/F.() -dédommagement/S. -dédommager/a0a+() -dédorage/S. -dédorée/F.() -dédorer/a0a+() -dédouanée/F.() -dédouanement/S. -dédouaner/a0a+() -dédoublage/S. -dédoublement/S. -dédoubler/a0a+() -dédoubleuse/F.() -dédramatisation/S. -dédramatiser/a0a+() -déductibilité/S. -déductible/S. -déduction/S. -déductive/F.() -déduire/yM() -déduite/F.() -déesse/S. -défaillance/S. -défaillante/F.() -défaillir/iS() -défaire/wD() -défaite/F.() -défaitisme/S. -défaitiste/S. -défalcation/S. -défalquer/a0a+() -défardée/F.() -défarder/a0a+() -défarguer -défatiguer/a0a+() -défaufiler/a0a+() -défaussée/F.() -défausser/a0a+() -défaut/S. -défaveur/S. -défavorable/S. -défavorablement -défavorisée/F.() -défavoriser/a0a+() -défécation/S. -défection/S. -défective/F.() -défectueuse/W.() -défectueusement -défectuosité/S. -défendable/S. -défenderesse/F.() -défendre/tA() -défendue/F.() -défenestration/S. -défenestrée/F.() -défenestrer/a0a+() -défens -défense/S. -défenseure/F.() -défensive/F.() -défensivement -déféquée/F.() -déféquer/c0a+() -déférée/F.() -déférence/S. -déférente/F.() -déférer/c0a+() -déferlante/F.() -déferlée/F.() -déferlement/S. -déferler/a0a+() -déferrage/S. -déferrée/F.() -déferrement/S. -déferrer/a0a+() -déferriser/a0a+() -déferrure/S. -défervescence/S. -défet/S. -défeuillaison/S. -défeuiller/a0a+() -défeutrer/a0a+() -défi/S. -défiance/S. -défiante/F.() -défibrage/S. -défibrer/a0a+() -défibreuse/F.() -défibrillateur/S. -défibrillation/S. -déficeler/d0a+() -déficher/a0a+() -déficience/S. -déficiente/F.() -déficit/S. -déficitaire/S. -défiée/F.() -défier/a0a+() -défiger/a0a+() -défiguration/S. -défigurée/F.() -défigurement/S. -défigurer/a0a+() -défilade/S. -défilage/S. -défilante/F.() -défilateur/S. -défilé/S. -défilée/F.() -défilement/S. -défiler/a0a+() -défileuse/F.() -définie/F.() -définir/f0f+() -définissable/S. -définissante/F.() -définiteur/S. -définition/S. -définitionnelle/F.() -définitive/F.() -définitivement -définitoire/S. -défiscalisation/S. -défiscalisée/F.() -défiscaliser/a0a+() -déflagrante/F.() -déflagrateur/S. -déflagration/S. -déflagrer/a0() -déflaquer/a0() -déflation/S. -déflationniste/S. -défléchie/F.() -défléchir/f0f+() -déflecteur/S. -défleuraison/S. -défleurie/F.() -défleurir/f0f+() -déflexion/S. -déflocage/S. -défloquer/a0a+() -défloraison/S. -défloration/S. -déflorée/F.() -déflorer/a0a+() -défluent/S. -défluviation/S. -défoliante/F.() -défoliation/S. -défoliée/F.() -défolier/a0a+() -défonçage/S. -défonce/S. -défoncée/F.() -défoncement/S. -défoncer/a0a+() -défonceuse/S. -déforcer/a0a+() -déforestation/S. -déformable/S. -déformage/S. -déformante/F.() -déformation/S. -déformatrice/F.() -déformée/F.() -déformer/a0a+() -défoulement/S. -défouler/a0a+() -défouloir/S. -défourailler/a0a+() -défournage/S. -défournement/S. -défourner/a0a+() -défourneuse/F.() -défourrer/a0a+() -défragmentation/S. -défragmenter/a0a+() -défraîchie/F.() -défraîchir/f0f+() -défraiement/S. -défranchie/F.() -défranciser/a0a+() -défrayer/a0a+() -défretter/a0a+() -défrichage/S. -défrichée/F.() -défrichement/S. -défricher/a0a+() -défricheuse/F.() -défringuer/a0a+() -défriper/a0a+() -défrisée/F.() -défrisement/S. -défriser/a0a+() -défroissable/S. -défroissée/F.() -défroisser/a0a+() -défroncer/a0a+() -défroque/S. -défroquée/F.() -défroquer/a0a+() -défruiter/a0a+() -défrusquer -défunte/F.() -dégagée/F.() -dégagement/S. -dégager/a0a+() -dégaine/S. -dégainée/F.() -dégainer/a0a+() -dégalonner/a0a+() -dégantée/F.() -déganter/a0a+() -dégarnie/F.() -dégarnir/f0f+() -dégasolinage/S. -dégasoliner/a0a+() -dégât/S. -dégauchie/F.() -dégauchir/f0f+() -dégauchissage/S. -dégauchissement/S. -dégauchisseuse/S. -dégazage/S. -dégazer/a0a+() -dégazolinage/S. -dégazoliner/a0a+() -dégazonnage/S. -dégazonnement/S. -dégazonner/a0a+() -dégel/S. -dégelée/F.() -dégeler/b0a+() -dégénérative/F.() -dégénérée/F.() -dégénérer/c0a+() -dégénérescence/S. -dégénérescente/F.() -dégermer/a0a+() -dégingandée/F.() -dégingander/a0a+() -dégîter/a0a+() -dégivrage/S. -dégivrée/F.() -dégivrer/a0a+() -dégivreur/S. -déglacée/F.() -déglacement/S. -déglacer/a0a+() -déglaciation/S. -déglinguée/F.() -déglinguer/a0a+() -dégluer/a0a+() -déglutie/F.() -déglutination/S. -déglutir/f0f+() -déglutition/S. -dégobiller/a0a+() -dégoiser/a0a+() -dégommage/S. -dégommée/F.() -dégommer/a0a+() -dégondée/F.() -dégonder/a0a+() -dégonflage/S. -dégonflée/F.() -dégonflement/S. -dégonfler/a0a+() -dégorgée/F.() -dégorgement/S. -dégorgeoir/S. -dégorger/a0a+() -dégoter/a0a+() -dégoudronner/a0a+() -dégoulinade/S. -dégoulinante/F.() -dégoulinement/S. -dégouliner/a0() -dégoupillée/F.() -dégoupiller/a0a+() -dégourdie/F.() -dégourdir/f0f+() -dégourdissante/F.() -dégourdissement/S. -dégourer -dégourrer -dégoût/S. -dégoûtamment -dégoûtante/F.() -dégoûtation/S. -dégoûtée/F.() -dégoûter/a0a+() -dégoutter/a0() -dégradable/S. -dégradante/F.() -dégradateur/S. -dégradation/S. -dégradée/F.() -dégrader/a0a+() -dégrafée/F.() -dégrafer/a0a+() -dégraissage/S. -dégraissante/F.() -dégraissée/F.() -dégraisser/a0a+() -dégraisseuse/F.() -dégravelante/F.() -dégravoyer/a0a+() -degré/S. -dégréer/a0a+() -dégréner/c0a+() -dégressive/F.() -dégressivité/S. -dégrèvement/S. -dégrever/b0a+() -dégriffée/F.() -dégringolade/S. -dégringoler/a0a+() -dégripper/a0a+() -dégrisée/F.() -dégrisement/S. -dégriser/a0a+() -dégrosser/a0a+() -dégrossie/F.() -dégrossir/f0f+() -dégrossissage/S. -dégrossissement/S. -dégrossisseuse/F.() -dégrouiller/a0a+() -dégroupage/S. -dégroupement/S. -dégrouper/a0a+() -déguenillée/F.() -déguerpir/f0f+() -dégueulasse/S. -dégueulassée/F.() -dégueulasser/a0a+() -dégueulasserie/S. -dégueuler/a0a+() -dégueulis -déguisée/F.() -déguisement/S. -déguiser/a0a+() -dégurgitée/F.() -dégurgiter/a0a+() -dégustation/S. -dégustatrice/F.() -dégustée/F.() -déguster/a0a+() -déhâler -déhaler/a0a+() -déhanchée/F.() -déhanchement/S. -déhancher/a0a+() -déharder/a0a+() -déharnachée/F.() -déharnacher/a0a+() -déhiscence/S. -déhiscente/F.() -dehors -dehors -déhotter/a0a+() -déhouiller/a0a+() -dei -déicide/S. -déictique/S. -déification/S. -déifiée/F.() -déifier/a0a+() -déisme -déiste/S. -déité/S. -déjà -déjantée/F.() -déjanter/a0a+() -déjauger/a0() -déjaunir/f0f+() -déjection/S. -déjetée/F.() -déjeter/d0a+() -déjeuner/S. -déjeuner/a0() -déjouer/a0a+() -déjucher/a0a+() -déjuger/a0a+() -delà -délabialiser/a0a+() -délabrée/F.() -délabrement/S. -délabrer/a0a+() -délabyrinther/a0a+() -délacée/F.() -délacer/a0a+() -délai/S. -délainage/S. -délainer/a0a+() -délaissée/F.() -délaissement/S. -délaisser/a0a+() -délaiter/a0a+() -délaiteuse/S. -délarder/a0a+() -délassante/F.() -délassée/F.() -délassement/S. -délasser/a0a+() -délation/S. -délatrice/F.() -délatter/a0a+() -délavage/S. -délavée/F.() -délaver/a0a+() -délayage/S. -délayée/F.() -délayer/a0a+() -delco/S. -deleatur -déléaturer/a0a+() -délébile/S. -délectable/S. -délectation/S. -délecter/a0a+() -délégant/S. -délégataire/S. -délégation/S. -délégatrice/F.() -délégitimer/a0a+() -déléguée/F.() -déléguer/c0a+() -délestage/S. -délester/a0a+() -délétère/S. -délétion/S. -délibérante/F.() -délibération/S. -délibérative/F.() -délibératoire/S. -délibéré/S. -délibérée/F.() -délibérément -délibérer/c0() -délicate/F.() -délicatement -délicatesse/S. -délice/S. -délicieuse/W.() -délicieusement -délictuelle/F.() -délictueuse/W.() -déliée/F.() -déliement/S. -délier/a0a+() -délignage/S. -déligneuse/F.() -délignifier/a0a+() -délimitation/S. -délimitée/F.() -délimiter/a0a+() -délimiteur/S. -délinéament/S. -délinéer/a0a+() -délinquance/S. -délinquante/F.() -déliquescence/S. -déliquescente/F.() -délirante/F.() -délire/S. -délirer/a0() -delirium -délissage/S. -délisser/a0a+() -délit/S. -délitage/S. -délitée/F.() -délitement/S. -déliter/a0a+() -délitescence/S. -délitescente/F.() -délivrance/S. -délivrée/F.() -délivrer/a0a+() -délivreur/S. -délocalisante/F.() -délocalisation/S. -délocalisée/F.() -délocaliser/a0a+() -délogée/F.() -délogement/S. -déloger/a0a+() -déloquer/a0a+() -délot/S. -délover/a0a+() -déloyale/W.() -déloyalement -déloyauté/S. -delphinarium/S. -delphinium/S. -delta -delta/S. -deltacisme/S. -deltaïque/S. -deltaplane/S. -deltiste/S. -deltoïde/S. -deltoïdienne/F.() -déluge/S. -délurée/F.() -délurer/a0a+() -délustrage/S. -délustrée/F.() -délustrer/a0a+() -délutage/S. -déluter/a0a+() -démaçonner/a0a+() -démagnétisation/S. -démagnétisée/F.() -démagnétiser/a0a+() -démagogie/S. -démagogique/S. -démagogue/S. -démaigrir/f0f+() -démaigrissement/S. -démaillage/S. -démailler/a0a+() -démaillotée/F.() -démailloter/a0a+() -demain -demain/S. -démanchée/F.() -démancher/a0a+() -demande/S. -demandée/F.() -demander/a0a+() -demanderesse/S. -demandeuse/F.() -démangeaison/S. -démanger/a0a+() -démantelée/F.() -démantèlement/S. -démanteler/b0a+() -démantibulée/F.() -démantibuler/a0a+() -démaquer/a0a+() -démaquillage/S. -démaquillante/F.() -démaquillée/F.() -démaquiller/a0a+() -démarabouter/a0a+() -démarcation/S. -démarchage/S. -démarchandisation/S. -démarche/S. -démarchée/F.() -démarcher/a0a+() -démarcheuse/F.() -démariage/S. -démarier/a0a+() -démarquage/S. -démarquer/a0a+() -démarqueur/S. -démarrage/S. -démarrer/a0a+() -démarreur/S. -démasclage/S. -démascler/a0a+() -démasquage/S. -démasquée/F.() -démasquer/a0a+() -démastiquer/a0a+() -démâtage/S. -démâtée/F.() -démâter/a0a+() -dématérialisation/S. -dématérialisée/F.() -dématérialiser/a0a+() -démazouter/a0a+() -d'emblée -dème/S. -déméchage/S. -démédicaliser/a0a+() -démêlage/S. -démêlante/F.() -démêlé/S. -démêlée/F.() -démêlement/S. -démêler/a0a+() -démêloir/S. -démêlure/S. -démembrée/F.() -démembrement/S. -démembrer/a0a+() -déménagement/S. -déménager/a0a+() -déménageuse/F.() -démence/S. -démener/b0a+() -démente/F.() -démenti/S. -démentie/F.() -démentielle/F.() -démentir/i5i+() -démerder/a0a+() -démerger/a0a+() -démériter/a0() -démesure/S. -démesurée/F.() -démesurément -déméthaniser/a0a+() -démettre/vA() -démeublée/F.() -démeubler/a0a+() -demeure/S. -demeurée/F.() -demeurer/a0() -demiard/S. -demi-bas -demi-botte/S. -demi-bouteille/S. -demi-brigade/S. -demi-cadratin/S. -demi-cercle/S. -demi-circulaire/S. -demi-clé/S. -demi-clef/S. -demi-colonne/S. -demi-deuil/S. -demi-dieu/X. -demi-douzaine/S. -demi-droite/S. -demie/F.() -démieller/a0a+() -demi-finale/S. -demi-finaliste/S. -demi-fine/F.() -demi-fond -demi-frère/S. -demi-gras -demi-grasse/S. -demi-gros -demi-heure/S. -demi-jour/S. -demi-journée/S. -démilitarisation/S. -démilitarisée/F.() -démilitariser/a0a+() -demi-litre/S. -demi-longueur/S. -demi-lune/S. -demi-mal/X. -demi-mesure/S. -demi-mondaine/S. -demi-monde/S. -demi-morte/F.() -demi-mot -déminage/S. -déminée/F.() -déminer/a0a+() -déminéralisation/S. -déminéralisée/F.() -déminéraliser/a0a+() -démineuse/F.() -demi-pause/S. -demi-pension/S. -demi-pensionnaire/S. -demi-place/S. -demi-plan/S. -demi-portion/S. -demi-produit/S. -demi-quart/S. -demi-queue/S. -demi-reliure/S. -demi-ronde/S. -demi-saison/S. -demi-sang -démise/F.() -demi-sel -demi-sœur/S. -demi-solde/S. -demi-sommeil/S. -demi-soupir/S. -démission/S. -démissionnaire/S. -démissionner/a0() -demi-tarif/S. -demi-teinte/S. -demi-tige/S. -demi-ton/S. -demi-tour/S. -démiurge/S. -demi-volée/S. -démixtion/S. -démobilisable/S. -démobilisation/S. -démobilisatrice/F.() -démobilisée/F.() -démobiliser/a0a+() -démocrate/S. -démocrate-chrétien -démocrate-chrétienne -démocrates-chrétiennes -démocrates-chrétiens -démocratie/S. -démocratique/S. -démocratiquement -démocratisation/S. -démocratiser/a0a+() -démodée/F.() -démoder/a0a+() -demodex -démodulateur/S. -démodulation/S. -démoduler/a0a+() -démographe/S. -démographie/S. -démographique/S. -démographiquement -demoiselle/S. -démolie/F.() -démolir/f0f+() -démolissage/S. -démolisseuse/F.() -démolition/S. -démone/F.() -démonétisation/S. -démonétisée/F.() -démonétiser/a0a+() -démoniaque/S. -démonisme/S. -démoniste/S. -démonographe/S. -démonographie/S. -démonologie/S. -démonomanie/S. -démonstration/S. -démonstrative/F.() -démonstrativement -démonstratrice/F.() -démontable/S. -démontage/S. -démontée/F.() -démonte-pneu/S. -démonter/a0a+() -démonteuse/F.() -démontrable/S. -démontrée/F.() -démontrer/a0a+() -démoralisante/F.() -démoralisation/S. -démoralisatrice/F.() -démoralisée/F.() -démoraliser/a0a+() -démordre/tE() -démotique/S. -démotivante/F.() -démotivation/S. -démotivée/F.() -démotiver/a0a+() -démoucheter/d0a+() -démoulage/S. -démoulante/F.() -démoulée/F.() -démouler/a0a+() -démouleuse/F.() -démouscailler/a0a+() -démoustiquer/a0a+() -d'empoigne -démultiplexage/S. -démultiplexeur/S. -démultiplication/S. -démultiplicatrice/F.() -démultipliée/F.() -démultiplier/a0a+() -démunie/F.() -démunir/f0f+() -démurer/a0a+() -démurger/a0a+() -démuselée/F.() -démuseler/d0a+() -démutisation/S. -démutualisation/S. -démystification/S. -démystificatrice/F.() -démystifiée/F.() -démystifier/a0a+() -démythification/S. -démythifiée/F.() -démythifier/a0a+() -dénantir/f0f+() -denar/S. -dénasalisation/S. -dénasaliser/a0a+() -dénatalité/S. -dénationalisation/S. -dénationalisée/F.() -dénationaliser/a0a+() -dénatter/a0a+() -dénaturalisation/S. -dénaturaliser/a0a+() -dénaturation/S. -dénaturée/F.() -dénaturer/a0a+() -dénazifier/a0a+() -denchée/F.() -dendrite/S. -dendritique/S. -dendrochronologie/S. -dendroclimatologie/S. -dendrographie/S. -dendrologie/S. -dendrologique/S. -dendrologue/S. -dénébuler/a0a+() -dénébuliser/a0a+() -dénégation/S. -dénégatoire/S. -déneigement/S. -déneiger/a0a+() -dénerver/a0a+() -dengue/S. -déni/S. -déniaisée/F.() -déniaiser/a0a+() -dénichée/F.() -dénicher/a0a+() -dénicheuse/F.() -dénickeler/d0a+() -dénicotiniser/a0a+() -dénicotiniseur/S. -denier/S. -dénier/a0a+() -dénigrée/F.() -dénigrement/S. -dénigrer/a0a+() -dénigreuse/F.() -dénitrer/a0a+() -dénitrification/S. -dénitrifier/a0a+() -dénivelé/S. -dénivelée/F.() -déniveler/d0a+() -dénivellation/S. -dénivellement/S. -dénombrabilité/S. -dénombrable/S. -dénombrement/S. -dénombrer/a0a+() -dénominateur/S. -dénomination/S. -dénominative/F.() -dénommée/F.() -dénommer/a0a+() -dénoncée/F.() -dénoncer/a0a+() -dénonciation/S. -dénonciatrice/F.() -dénotation/S. -dénotationnelle/F.() -dénotée/F.() -dénoter/a0a+() -dénouée/F.() -dénouement/S. -dénouer/a0a+() -dénoyautage/S. -dénoyautée/F.() -dénoyauter/a0a+() -dénoyer/a0a+() -denrée/S. -dense/S. -densément -densification/S. -densifier/a0a+() -densimétrie/S. -densité/S. -dent/S. -dentaire/S. -dentale/W.() -dentée/F.() -dentelaire/S. -dentelée/F.() -denteler/d0a+() -denteleuse/F.() -dentelle/S. -dentellerie/S. -dentellière/F.() -dentelure/S. -denticule/S. -denticulée/F.() -dentier/S. -dentifrice/S. -dentine/S. -dentiste/S. -dentisterie/S. -dentition/S. -denture/S. -dénucléariser/a0a+() -dénudation/S. -dénudée/F.() -dénuder/a0a+() -dénuée/F.() -dénuement/S. -dénuer/a0a+() -dénutrition/S. -déodorante/F.() -déontologie/S. -déontologique/S. -déontologue/S. -dépagnoter/a0a+() -dépaillage/S. -dépailler/a0a+() -dépaisseler/d0a+() -dépalisser/a0a+() -dépannage/S. -dépanner/a0a+() -dépanneuse/F.() -dépaquetage/S. -dépaqueter/d0a+() -déparaffinage/S. -déparaffiner/a0a+() -déparasitage/S. -déparasiter/a0a+() -déparée/F.() -dépareillée/F.() -dépareiller/a0a+() -déparer/a0a+() -dépariage/S. -déparier/a0a+() -déparler/a0() -départ/S. -départager/a0a+() -département/S. -départementale/W.() -départementalisation/S. -départementaliser/a0a+() -départir/i5i+() -dépassante/F.() -dépassée/F.() -dépassement/S. -dépasser/a0a+() -dépassionnée/F.() -dépassionner/a0a+() -dépatouiller/a0a+() -dépatrier/a0a+() -dépavage/S. -dépaver/a0a+() -dépaysante/F.() -dépaysée/F.() -dépaysement/S. -dépayser/a0a+() -dépeçage/S. -dépecée/F.() -dépècement/S. -dépecer/b0a+() -dépeceuse/F.() -dépêche/S. -dépêcher/a0a+() -dépeignée/F.() -dépeigner/a0a+() -dépeindre/wB() -dépelotonner/a0a+() -dépenaillée/F.() -dépénalisante/F.() -dépénalisation/S. -dépénalisée/F.() -dépénaliser/a0a+() -dépendance/S. -dépendante/F.() -dépendeuse/F.() -dépendre/tA() -dépens -dépensée/F.() -dépenser/a0a+() -dépensière/F.() -déperdition/S. -dépérir/f0() -dépérissement/S. -déperlance/S. -déperlante/F.() -dépersonnalisable/S. -dépersonnalisation/S. -dépersonnaliser/a0a+() -dépêtrer/a0a+() -dépeuplée/F.() -dépeuplement/S. -dépeupler/a0a+() -déphasage/S. -déphasée/F.() -déphaser/a0a+() -déphosphatation/S. -déphosphoration/S. -déphosphorer/a0a+() -dépiauter/a0a+() -dépicage/S. -dépigeonnage/S. -dépigmentation/S. -dépigmentée/F.() -dépigmenter/a0a+() -dépilage/S. -dépilation/S. -dépilatoire/S. -dépiler/a0a+() -dépingler/a0a+() -dépiquage/S. -dépiquer/a0a+() -dépistage/S. -dépister/a0a+() -dépit/S. -dépitée/F.() -dépiter/a0a+() -déplaçable/S. -déplacée/F.() -déplacement/S. -déplacer/a0a+() -déplafonnement/S. -déplafonner/a0a+() -déplaire/wN() -déplaisante/F.() -déplaisir/S. -déplaner/a0() -déplanquer/a0a+() -déplantage/S. -déplantation/S. -déplanter/a0a+() -déplantoir/S. -déplâtrage/S. -déplâtrer/a0a+() -dépliage/S. -dépliante/F.() -dépliée/F.() -dépliement/S. -déplier/a0a+() -déplissage/S. -déplisser/a0a+() -déploiement/S. -déplombage/S. -déplomber/a0a+() -déplombeur/S. -déplorable/S. -déplorablement -déploration/S. -déplorée/F.() -déplorer/a0a+() -déployable/S. -déployée/F.() -déployer/a0a+() -déplumée/F.() -déplumer/a0a+() -dépocher/a0a+() -dépoétiser/a0a+() -dépoiler -dépointer/a0a+() -dépoitraillée/F.() -dépolarisation/S. -dépolariser/a0a+() -dépolie/F.() -dépolir/f0f+() -dépolissage/S. -dépolitisation/S. -dépolitisée/F.() -dépolitiser/a0a+() -dépolluée/F.() -dépolluer/a0a+() -dépolymériser/a0a+() -déponente/F.() -dépontiller/a0() -dépopulation/S. -déport/S. -déportation/S. -déportée/F.() -déportement/S. -déporter/a0a+() -déposante/F.() -déposée/F.() -déposer/a0a+() -dépositaire/S. -déposition/S. -dépossédée/F.() -déposséder/c0a+() -dépossession/S. -dépôt/S. -dépotage/S. -dépotement/S. -dépoter/a0a+() -dépotoir/S. -dépoudrer/a0a+() -dépouillée/F.() -dépouillement/S. -dépouiller/a0a+() -dépouilleuse/F.() -dépourvoir/pJ() -dépourvue/F.() -dépoussiérage/S. -dépoussiérante/F.() -dépoussiérée/F.() -dépoussiérer/c0a+() -dépoussiéreur/S. -dépravation/S. -dépravée/F.() -dépraver/a0a+() -déprécation/S. -dépréciation/S. -dépréciative/F.() -dépréciatrice/F.() -dépréciée/F.() -déprécier/a0a+() -déprédation/S. -déprédatrice/F.() -déprendre/tG() -dépression/S. -dépressionnaire/S. -dépressive/F.() -dépressurisation/S. -dépressurisée/F.() -dépressuriser/a0a+() -déprimante/F.() -déprime/S. -déprimée/F.() -déprimer/a0a+() -déprise/F.() -dépriser/a0a+() -déprogrammation/S. -déprogrammée/F.() -déprogrammer/a0a+() -déprolétariser/a0a+() -dépropaniser/a0a+() -déprotéger/c0a+() -dépucelage/S. -dépucelée/F.() -dépuceler/d0a+() -depuis -dépulper/a0a+() -dépuration/S. -dépurative/F.() -dépurer/a0a+() -députation/S. -députée/F.() -députer/a0a+() -déqualification/S. -déqualifier/a0a+() -déquiller/a0a+() -der -déracinable/S. -déracinée/F.() -déracinement/S. -déraciner/a0a+() -dérader/a0() -dérager/a0() -déraidir/f0f+() -déraillement/S. -dérailler/a0() -dérailleur/S. -déraison/S. -déraisonnable/S. -déraisonnablement -déraisonner/a0() -déramer/a0a+() -dérangeante/F.() -dérangée/F.() -dérangement/S. -déranger/a0a+() -dérapage/S. -déraper/a0() -déraser/a0a+() -dératée/F.() -dérater/a0a+() -dératisation/S. -dératiser/a0a+() -dératiseuse/F.() -dérayer/a0a+() -dérayure/S. -derby/S. -déréalisation/S. -déréaliser/a0a+() -derechef -déréglage/S. -déréglée/F.() -dérèglement/S. -déréglementaire/S. -déréglementation/S. -déréglementée/F.() -déréglementer/a0a+() -dérégler/c0a+() -dérégulation/S. -dérégulatrice/F.() -déréguler/a0a+() -déréliction/S. -déremboursement/S. -déresponsabilisation/S. -déresponsabiliser/a0a+() -dérésumenter -déridée/F.() -dérider/a0a+() -dérision/S. -dérisoire/S. -dérisoirement -dérivabilité/S. -dérivable/S. -dérivante/F.() -dérivateur/S. -dérivation/S. -dérivative/F.() -dérive/S. -dérivée/F.() -dérivée/S. -dériver/a0a+() -dériveur/S. -dermatite/S. -dermatologie/S. -dermatologique/S. -dermatologiste/S. -dermatologue/S. -dermatopathologie/S. -dermatose/S. -derme/S. -dermeste/S. -dermique/S. -dermite/S. -dermographie/S. -dermopuncture/S. -dernière/F.() -dernièrement -dernière-née -dernières-nées -dernier-né -derniers-nés -derny/S. -dérobade/S. -dérobée/F.() -dérobement/S. -dérober/a0a+() -dérochage/S. -dérochement/S. -dérocher/a0a+() -déroder/a0a+() -dérogation/S. -dérogatoire/S. -déroger/a0() -dérondir -dérougir/f0f+() -dérouiller/a0a+() -déroulage/S. -déroulante/F.() -déroulée/F.() -déroulement/S. -dérouler/a0a+() -dérouleuse/F.() -déroutage/S. -déroutante/F.() -déroute/S. -déroutée/F.() -déroutement/S. -dérouter/a0a+() -derrick/S. -derrière -derrière/S. -derviche/S. -dès -désabonnée/F.() -désabonnement/S. -désabonner/a0a+() -désabusée/F.() -désabusement/S. -désabuser/a0a+() -désaccentuer/a0a+() -désacclimatable/S. -désacclimatation/S. -désacclimatée/F.() -désacclimatement/S. -désacclimater/a0a+() -désaccord/S. -désaccordable/S. -désaccordée/F.() -désaccordement/S. -désaccorder/a0a+() -désaccouplée/F.() -désaccouplement/S. -désaccoupler/a0a+() -désaccoutumance/S. -désaccoutumée/F.() -désaccoutumer/a0a+() -désacidifiée/F.() -désacidifier/a0a+() -désaciérée/F.() -désaciérer/c0a+() -désacralisation/S. -désacralisée/F.() -désacraliser/a0a+() -désactivable/S. -désactivateur/S. -désactivation/S. -désactivée/F.() -désactivement -désactiver/a0a+() -désactiveur/S. -désadaptation/S. -désadaptée/F.() -désadapter/a0a+() -désaérée/F.() -désaérer/c0a+() -désaffectation/S. -désaffectée/F.() -désaffecter/a0a+() -désaffection/S. -désaffectionnée/F.() -désaffectionner/a0a+() -désaffectueuse/W.() -désaffectueusement -désafférentation/S. -désaffilier/a0a+() -désagencée/F.() -désagencement/S. -désagencer/a0a+() -désagrafage/S. -désagrafée/F.() -désagrafer/a0a+() -désagréable/S. -désagréablement -désagrégation/S. -désagrégeante/F.() -désagrégée/F.() -désagréger/c0a+() -désagrément/S. -désaimanter/a0a+() -désaisonnaliser/a0a+() -désajuster/a0a+() -désaliéner/c0a+() -désaligner/a0a+() -désalkylation/S. -désalper/a0() -désaltérante/F.() -désaltérée/F.() -désaltérer/c0a+() -désamarrée/F.() -désamarrer/a0a+() -désambiguïsation/S. -désambiguïsée/F.() -désambiguïser/a0a+() -désâmer/a0a+() -désamiantage/S. -désamiantée/F.() -désamianter/a0a+() -désamidonnée/F.() -désamidonner/a0a+() -désaminer/a0a+() -désamorçage/S. -désamorcée/F.() -désamorcer/a0a+() -désamour/S. -désannexer/a0a+() -désaper/a0a+() -désappariée/F.() -désapparier/a0a+() -désappointée/F.() -désappointement/S. -désappointer/a0a+() -désapprendre/tF() -désapprise/F.() -désapprobation/S. -désapprobatrice/F.() -désapprouvée/F.() -désapprouver/a0a+() -désapprovisionnement/S. -désapprovisionner/a0a+() -désarchivage/S. -désarchiver/a0a+() -désarçonnée/F.() -désarçonner/a0a+() -désargentée/F.() -désargenter/a0a+() -désarmante/F.() -désarmée/F.() -désarmement/S. -désarmer/a0a+() -désarrimage/S. -désarrimée/F.() -désarrimer/a0a+() -désarroi/S. -désarticulation/S. -désarticulée/F.() -désarticuler/a0a+() -désassemblage/S. -désassembler/a0a+() -désassimilation/S. -désassimiler/a0a+() -désassortie/F.() -désassortiment/S. -désassortir/f0f+() -désastre/S. -désastreuse/W.() -désastreusement -désatomiser/a0a+() -désavantagée/F.() -désavantager/a0a+() -désavantageuse/W.() -désavantageusement -désaveu/X. -désaveugler/a0a+() -désavouée/F.() -désavouer/a0a+() -désaxée/F.() -désaxement/S. -désaxer/a0a+() -descellée/F.() -descellement/S. -desceller/a0a+() -descendance/S. -descendante/F.() -descenderie/S. -descendeuse/F.() -descendre/tA() -descenseur/S. -descente/S. -déscolarisation/S. -déscolarité/S. -descripteur/S. -descriptible/S. -description/S. -descriptive/F.() -descriptrice/F.() -déséchouer/a0a+() -désectoriser/a0a+() -déségrégation/S. -désembobiner/a0a+() -désembourbée/F.() -désembourber/a0a+() -désembourgeoisée/F.() -désembourgeoiser/a0a+() -désembouteiller/a0a+() -désembrayer/a0a+() -désembuer/a0a+() -désemmancher/a0a+() -désemparée/F.() -désemparement/S. -désemparer/a0a+() -désempeser/b0a+() -désemplir/f0f+() -désemprisonner/a0a+() -désencadrée/F.() -désencadrer/a0a+() -désencarter/a0a+() -désencastrement/S. -désenchaîner/a0a+() -désenchantée/F.() -désenchantement/S. -désenchanter/a0a+() -désenclavée/F.() -désenclavement/S. -désenclaver/a0a+() -désencombrement/S. -désencombrer/a0a+() -désencrage/S. -désencrasser/a0a+() -désendettement/S. -désendetter/a0a+() -désénerver/a0a+() -désenfiler/a0a+() -désenflammer/a0a+() -désenfler/a0a+() -désenfumer/a0a+() -désengagement/S. -désengager/a0a+() -désengluer/a0a+() -désengorger/a0a+() -désengourdie/F.() -désengourdir/f0f+() -désengrener/b0a+() -désenivrer/a0a+() -désenlacer/a0a+() -désenlaidir/f0f+() -désennuyer/a0a+() -désenrayer/a0a+() -désenrhumer/a0a+() -désenrouer/a0a+() -désensabler/a0a+() -désensibilisateur/S. -désensibilisation/S. -désensibilisée/F.() -désensibiliser/a0a+() -désensorcelée/F.() -désensorceler/d0a+() -désentoilage/S. -désentoiler/a0a+() -désentortiller/a0a+() -désentraver/a0a+() -désenvaser/a0a+() -désenvelopper/a0a+() -désenvenimer/a0a+() -désenverguer/a0a+() -désenvoûtée/F.() -désenvoûter/a0a+() -désépaissir/f0f+() -déséquilibrage/S. -déséquilibrée/F.() -déséquilibrer/a0a+() -déséquiper/a0a+() -déserrage/S. -déserrement/S. -désert/S. -déserte/F.() -désertée/F.() -déserter/a0a+() -déserteuse/F.() -désertifiante/F.() -désertification/S. -désertifier/a0a+() -désertion/S. -désertique/S. -désescalade/S. -désespérance/S. -désespérante/F.() -désespérée/F.() -désespérément -désespérer/c0a+() -désespoir/S. -désétablir/f0f+() -désétamer/a0a+() -désétatiser/a0a+() -désexciter/a0a+() -désexualiser/a0a+() -déshabillage/S. -déshabillée/F.() -déshabiller/a0a+() -déshabituer/a0a+() -désherbage/S. -désherbante/F.() -désherbée/F.() -désherber/a0a+() -déshérence/S. -déshéritée/F.() -déshériter/a0a+() -déshonnête/S. -déshonnêtement -déshonnêteté/S. -déshonneur/S. -déshonorante/F.() -déshonorée/F.() -déshonorer/a0a+() -déshuiler/a0a+() -déshumanisante/F.() -déshumanisation/S. -déshumanisée/F.() -déshumaniser/a0a+() -déshumidifier/a0a+() -déshydratante/F.() -déshydratation/S. -déshydratée/F.() -déshydrater/a0a+() -déshydrogénation/S. -déshydrogéner/c0a+() -déshypothéquer/c0a+() -désidérabilité/S. -desideratum/I. -design/S. -désignation/S. -désignative/F.() -désignée/F.() -designer/S. -désigner/a0a+() -désiliciage/S. -désillusion/S. -désillusionnée/F.() -désillusionner/a0a+() -désincarcérée/F.() -désincarcérer/c0a+() -désincarnation/S. -désincarnée/F.() -désincarner/a0a+() -désincorporer/a0a+() -désincrustation/S. -désincruster/a0a+() -désinculper/a0a+() -désindenter/a0a+() -désindexer/a0a+() -désindustrialisation/S. -désindustrialisée/F.() -désindustrialiser/a0a+() -désinence/S. -désinentielle/F.() -désinfectante/F.() -désinfectée/F.() -désinfecter/a0a+() -désinfection/S. -désinfectrice/F.() -désinflation/S. -désinformation/S. -désinformer/a0a+() -désingularisation/S. -désinhibée/F.() -désinhiber/a0a+() -désinhibition/S. -désinscription/S. -désinscrire/y1() -désinscrite/F.() -désinsectisation/S. -désinsectisée/F.() -désinsectiser/a0a+() -désinsectiseuse/F.() -désinsertion/S. -désinstallation/S. -désinstallée/F.() -désinstaller/a0a+() -désintégration/S. -désintégrée/F.() -désintégrer/c0a+() -désintéressée/F.() -désintéressement/S. -désintéresser/a0a+() -désintérêt/S. -désintoxication/S. -désintoxiquée/F.() -désintoxiquer/a0a+() -désinvestir/f0f+() -désinvestissement/S. -désinviter/a0a+() -désinvolte/S. -désinvolture/S. -désir/S. -désirabilité/S. -désirable/S. -désirée/F.() -désirer/a0a+() -désireuse/W.() -désistement/S. -désister/a0a+() -desman/S. -désobéir/f0() -désobéissance/S. -désobéissante/F.() -désobligeance/S. -désobligeante/F.() -désobliger/a0a+() -désobstruer/a0a+() -désoccupée/F.() -désoccuper/a0a+() -désocialisée/F.() -désocialiser/a0a+() -désodorisante/F.() -désodoriser/a0a+() -désœuvrée/F.() -désœuvrement/S. -désœuvrer -désolante/F.() -désolation/S. -désolée/F.() -désoler/a0a+() -désolidarisation/S. -désolidariser/a0a+() -désoperculer/a0a+() -désopilante/F.() -désopiler/a0a+() -désorber/a0a+() -désorbitation/S. -désorbitée/F.() -désorbiter/a0a+() -désordonnée/F.() -désordonner/a0a+() -désordre/S. -désorganisation/S. -désorganisatrice/F.() -désorganisée/F.() -désorganiser/a0a+() -désorientation/S. -désorientée/F.() -désorienter/a0a+() -désormais -désorption/S. -désossage/S. -désossée/F.() -désossement/S. -désosser/a0a+() -désosseuse/F.() -désouffler/a0a+() -désoxydante/F.() -désoxydation/S. -désoxyder/a0a+() -désoxygénation/S. -désoxygéner/c0a+() -désoxyribonucléique/S. -desperado/S. -despote/S. -despotique/S. -despotiquement -despotisme/S. -desquamation/S. -desquamée/F.() -desquamer/a0a+() -desquelles -desquels -dessabler/a0a+() -dessaisir/f0f+() -dessaisissement/S. -dessalage/S. -dessalée/F.() -dessalement/S. -dessaler/a0a+() -dessangler/a0a+() -dessaouler/a0a+() -dessaper/a0a+() -desséchante/F.() -desséchée/F.() -dessèchement/S. -dessécher/c0a+() -dessein/S. -desseller/a0a+() -desserrage/S. -desserrement/S. -desserrer/a0a+() -dessert/S. -desserte/S. -dessertir/f0f+() -desservante/F.() -desservir/iF() -dessiccation/S. -dessiccative/F.() -dessiller/a0a+() -dessin/S. -dessinatrice/F.() -dessinée/F.() -dessiner/a0a+() -dessolement/S. -dessoler/a0a+() -dessouchage/S. -dessouchement/S. -dessoudée/F.() -dessouder/a0a+() -dessouffler/a0a+() -dessoûler/a0a+() -dessous -dessous-de-bouteille -dessous-de-bras -dessous-de-plat -dessous-de-table -dessuintage/S. -dessuinter/a0a+() -dessus -dessus-de-lit -dessus-de-plat -dessus-de-porte -déstabilisante/F.() -déstabilisation/S. -déstabilisatrice/F.() -déstabilisée/F.() -déstabiliser/a0a+() -déstalinisation/S. -destin/S. -destinataire/S. -destination/S. -destinatrice/F.() -destinée/F.() -destinée/S. -destiner/a0a+() -destituée/F.() -destituer/a0a+() -destitution/S. -déstockage/S. -déstocker/a0a+() -déstresser/a0a+() -destrier/S. -destroyer/S. -destructible/S. -destruction/S. -destructive/F.() -destructrice/F.() -déstructurante/F.() -déstructuration/S. -déstructurée/F.() -déstructurer/a0a+() -désuète/F.() -désuétude/S. -désulfiter/a0a+() -désulfuration/S. -désulfurer/a0a+() -désunie/F.() -désunion/S. -désunir/f0f+() -désynchronisation/S. -désynchronisée/F.() -désynchroniser/a0a+() -détachable/S. -détachage/S. -détachante/F.() -détachée/F.() -détachement/S. -détacher/a0a+() -détacheuse/F.() -détail/S. -détaillante/F.() -détaillée/F.() -détailler/a0a+() -détaler/a0() -détaller/a0a+() -détapisser/a0a+() -détartrage/S. -détartrante/F.() -détartrée/F.() -détartrer/a0a+() -détartreur/S. -détaxation/S. -détaxe/S. -détaxer/a0a+() -détectable/S. -détectée/F.() -détecter/a0a+() -détecteur/S. -détection/S. -détective/S. -détectrice/F.() -déteindre/wB() -déteinte/F.() -dételage/S. -dételée/F.() -dételer/d0a+() -détendeur/S. -détendre/tA() -détendue/F.() -détenir/i0i+() -détente/S. -détention/S. -détentrice/F.() -détenue/F.() -détergence/S. -détergent/S. -détergente/F.() -déterger/a0a+() -détérioration/S. -détériorée/F.() -détériorer/a0a+() -déterminable/S. -déterminante/F.() -détermination/S. -déterminative/F.() -déterminée/F.() -déterminer/a0a+() -déterminisme/S. -déterministe/S. -déterrage/S. -déterrée/F.() -déterrement/S. -déterrer/a0a+() -déterreur/S. -détersion/S. -détersive/F.() -détestable/S. -détestablement -détestation/S. -détestée/F.() -détester/a0a+() -détirer/a0a+() -détireuse/S. -détiser -détisser/a0a+() -détonante/F.() -détonateur/S. -détonation/S. -détoner/a0() -détonneler/d0a+() -détonner/a0() -détordre/tA() -détortiller/a0a+() -détour/S. -détourer/a0a+() -détournée/F.() -détournement/S. -détourner/a0a+() -détoxication/S. -détoxifiante/F.() -détoxification/S. -détoxifier/a0a+() -détoxiquer/a0a+() -détracter/a0a+() -détraction/S. -détractrice/F.() -détrancher/a0() -détransposer/a0a+() -détraquée/F.() -détraquement/S. -détraquer/a0a+() -détrempe/S. -détrempée/F.() -détremper/a0a+() -détresser/a0a+() -détricotée/F.() -détricoter/a0a+() -détriment/S. -détritique/S. -détritus -détroit/S. -détrompage/S. -détrompée/F.() -détromper/a0a+() -détrompeur/S. -détrônable/S. -détroncher/a0() -détrônée/F.() -détrôner/a0a+() -détroquer/a0a+() -détroussée/F.() -détrousser/a0a+() -détrousseuse/F.() -détruire/yM() -détruite/F.() -dette/S. -détumescence/S. -deuil/S. -deutérium/S. -deutérocanonique/S. -deutéron/S. -deux -deux-deux -deux-huit -deuxième/S. -deuxièmement -deux-mâts -deux-pièces -deux-points -deux-ponts -deux-quatre -deux-roues -deux-seize -deux-temps -dévaler/a0a+() -dévaliser/a0a+() -dévalorisante/F.() -dévalorisation/S. -dévalorisée/F.() -dévaloriser/a0a+() -dévaluation/S. -dévaluée/F.() -dévaluer/a0a+() -dévanâgari/S. -devancement/S. -devancer/a0a+() -devancière/F.() -devant -devant/S. -devanture/S. -dévaser/a0a+() -dévastation/S. -dévastatrice/F.() -dévastée/F.() -dévaster/a0a+() -déveine/S. -développable/S. -développante/F.() -développée/F.() -développement/S. -développer/a0a+() -développeuse/F.() -devenir/S. -devenir/i0i+() -déventer/a0a+() -déverbale/W.() -déverdir/f0() -dévergondage/S. -dévergondée/F.() -dévergonder/a0a+() -déverguer/a0a+() -déverminage/S. -déverminer/a0a+() -dévernie/F.() -dévernir/f0f+() -déverrouillage/S. -déverrouillée/F.() -déverrouiller/a0a+() -devers -déverse/F.() -déversement/S. -déverser/a0a+() -déversoir/S. -dévêtir/iG() -dévêtue/F.() -déviance/S. -déviante/F.() -déviation/S. -déviationnisme/S. -déviationniste/S. -déviatrice/F.() -dévidage/S. -dévidée/F.() -dévider/a0a+() -dévideuse/F.() -dévidoir/S. -déviée/F.() -dévier/a0a+() -devin/S. -devinable/S. -devinée/F.() -deviner/a0a+() -devineresse/S. -devinette/S. -dévirer/a0a+() -dévirginer -dévirginiser/a0a+() -déviriliser/a0a+() -déviroler/a0a+() -devis -dévisagée/F.() -dévisager/a0a+() -devise/S. -deviser/a0() -deviseuse/F.() -dévissage/S. -dévissée/F.() -dévisser/a0a+() -dévitalisation/S. -dévitalisée/F.() -dévitaliser/a0a+() -dévitrification/S. -dévitrifier/a0a+() -dévoiement/S. -dévoilée/F.() -dévoilement/S. -dévoiler/a0a+() -devoir/S. -devoir/pCpD() -dévoltage/S. -dévolter/a0a+() -dévolteur/S. -dévolue/F.() -dévolution/S. -dévolutive/F.() -devon/S. -dévonienne/F.() -dévorante/F.() -dévoration/S. -dévoratrice/F.() -dévorée/F.() -dévorer/a0a+() -dévoreuse/F.() -dévot/S. -dévote/F.() -dévotement -dévotion/S. -dévouée/F.() -dévouement/S. -dévouer/a0a+() -dévoyée/F.() -dévoyer/a0a+() -dextérité/S. -dextralité/S. -dextre/S. -dextrine/S. -dextrocardie/S. -dextrochère/S. -dextrogyre/S. -dextrorsum -dextrorsum -dextrose/S. -dey/S. -dézinguer/a0a+() -dgr/||-- -dhamma -dharma/S. -dia -diabète/S. -diabétique/S. -diabétologue/S. -diablement -diablerie/S. -diablesse/F.() -diablotin/S. -diabolique/S. -diaboliquement -diabolisation/S. -diabolisée/F.() -diaboliser/a0a+() -diabolo/S. -diachronie/S. -diachronique/S. -diachylon/S. -diachylum -diacide/S. -diaclase/S. -diacode/S. -diaconale/W.() -diaconat/S. -diaconesse/S. -diacoustique/S. -diacre/S. -diacritique/S. -diadème/S. -diadoque/S. -diagnose/S. -diagnostic/S. -diagnosticienne/F.() -diagnostiquée/F.() -diagnostiquer/a0a+() -diagonale/W.() -diagonalement -diagonalisable/S. -diagrammatique/S. -diagramme/S. -diagraphe/S. -diagraphie/S. -diagraphique/S. -dialectale/W.() -dialectaliser/a0a+() -dialectalisme/S. -dialecte/S. -dialecticienne/F.() -dialectique/S. -dialectiquement -dialectisation/S. -dialectiser/a0a+() -dialectologie/S. -dialectologue/S. -dialogique/S. -dialogue/S. -dialoguée/F.() -dialoguer/a0a+() -dialoguiste/S. -dialypétale/S. -dialysat/S. -dialyse/S. -dialysée/F.() -dialyser/a0a+() -dialyseur/S. -diamagnétisme/S. -diamant/S. -diamantaire/S. -diamantée/F.() -diamanter/a0a+() -diamantifère/S. -diamantine/F.() -diamétrale/W.() -diamétralement -diamètre/S. -diamide/S. -diamidophénol/S. -diamine/S. -diane/S. -diantre -diantrement -diapason/S. -diapédèse/S. -diaphane/S. -diaphanéité/S. -diaphanoscopie/S. -diaphonie/S. -diaphorèse/S. -diaphorétique/S. -diaphragmatique/S. -diaphragme/S. -diaphragmer/a0a+() -diaphyse/S. -diapo/S. -diaporama/S. -diapositive/F.() -diapositive/S. -diaprée/F.() -diaprer/a0a+() -diaprure/S. -diarrhée/S. -diarrhéique/S. -diarthrose/S. -diascope/S. -diascopie/S. -diaspora/S. -diastase/S. -diastasique/S. -diastole/S. -diastolique/S. -diasystème/S. -diathèse/S. -diatomée/S. -diatomique/S. -diatomite/S. -diatonique/S. -diatoniquement -diatribe/S. -diaule/S. -diazoïque/S. -diazote/S. -dibasique/S. -dichotomie/S. -dichotomique/S. -dichroïque/S. -dichroïsme/S. -dichromatique/S. -dicline/S. -dico/S. -dicotylédone/S. -dicrote/S. -dictame/S. -dictaphone/S. -dictatoriale/W.() -dictatorialement -dictatrice/F.() -dictature/S. -dictée/F.() -dictée/S. -dicter/a0a+() -diction/S. -dictionnaire/S. -dicton/S. -didacticiel/S. -didacticienne/F.() -didactique/S. -didactiquement -didactisme/S. -didactyle/S. -didascalie/S. -didone/S. -didot/S. -diduction/S. -didyme/S. -diédrale/W.() -dièdre/S. -diélectrique/S. -diencéphale/S. -diencéphalique/S. -diérèse/S. -diergol/S. -dièse/S. -diesel/S. -diéséliser/a0a+() -diéséliste/S. -diéser/c0a+() -diète/S. -diététicienne/F.() -diététique/S. -dieu/X. -diffa/S. -diffamante/F.() -diffamation/S. -diffamatoire/S. -diffamatrice/F.() -diffamée/F.() -diffamer/a0a+() -difféologie/S. -difféomorphe/S. -difféomorphisme/S. -différé/S. -différée/F.() -différemment -différence/S. -différenciateur/S. -différenciation/S. -différenciée/F.() -différencier/a0a+() -différend/S. -différente/F.() -différentiabilité/S. -différentiable/S. -différentiablement -différentiation/S. -différentiée/F.() -différentielle/F.() -différentier -différer/c0a+() -difficile/S. -difficilement -difficulté/S. -difforme/S. -difformer/a0a+() -difformité/S. -diffracter/a0a+() -diffraction/S. -diffractomètre/S. -diffractométrie/S. -diffuse/F.() -diffusée/F.() -diffusément -diffuser/a0a+() -diffuseuse/F.() -diffusible/S. -diffusiomètre/S. -diffusion/S. -diffusomètre/S. -digamma -digérée/F.() -digérer/c0a+() -digeste/F.() -digesteur/S. -digestibilité/S. -digestible/S. -digestion/S. -digestive/F.() -digicode/S. -digit/S. -digitale/W.() -digitaline/S. -digitalisation/S. -digitaliser/a0a+() -digitaliseur/S. -digitée/F.() -digitiforme/S. -digitigrade/S. -diglossie/S. -diglossique/S. -digne/S. -dignement -dignitaire/S. -dignité/S. -digon/S. -digramme/S. -digraphe/S. -digraphie/S. -digresser/a0() -digression/S. -digressive/F.() -digue/S. -dihydrogène -dijonnaise/F.() -diktat/S. -dilacération/S. -dilacérer/c0a+() -dilapidation/S. -dilapidatrice/F.() -dilapidée/F.() -dilapider/a0a+() -dilatabilité/S. -dilatable/S. -dilatance/S. -dilatante/F.() -dilatateur/S. -dilatation/S. -dilatatrice/F.() -dilatée/F.() -dilater/a0a+() -dilatoire/S. -dilatomètre/S. -dilection/S. -dilemme/S. -dilettante/S. -dilettantisme/S. -diligemment -diligence/S. -diligente/F.() -diligentée/F.() -diligenter/a0a+() -dilogie/S. -diluante/F.() -diluée/F.() -diluer/a0a+() -dilution/S. -diluviale/W.() -diluvienne/F.() -diluvium/S. -dimanche/S. -dîme/S. -dimension/S. -dimensionnée/F.() -dimensionnelle/F.() -dimensionnement/S. -dimensionner/a0a+() -dimère/S. -dimétrodon/S. -diminuée/F.() -diminuendo -diminuendo/S. -diminuer/a0a+() -diminution/S. -diminutive/F.() -dimissoire/S. -dimorphe/S. -dimorphisme/S. -dinanderie/S. -dinandière/F.() -dinar/S. -dînatoire/S. -dinde/S. -dindon/S. -dindonneau/X. -dindonner/a0a+() -dînée/S. -dîner/S. -dîner/a0() -dînette/S. -dîneuse/F.() -ding -dingbats -dinghy/S. -dingo/S. -dingue/S. -dinguer/a0() -dinguerie/S. -dinornis -dinosaure/S. -dinosaurien/S. -dinothérium/S. -diocésaine/F.() -diocèse/S. -diode/S. -dionée/S. -dionysiaque/S. -diophantienne/F.() -dioptre/S. -dioptrie/S. -dioptrique/S. -diorama/S. -diorite/S. -dioxine/S. -dioxyde/S. -dioxygène/S. -dipétale/S. -diphasée/F.() -diphénol/S. -diphtérie/S. -diphtérique/S. -diphtongaison/S. -diphtongue/S. -diphtonguer/a0a+() -diploblastique/S. -diplocoque/S. -diplodocus -diploïde/S. -diplômante/F.() -diplomate/S. -diplomatie/S. -diplomatique/S. -diplomatiquement -diplôme/S. -diplômée/F.() -diplômer/a0a+() -diplopie/S. -dipneumonée/F.() -dipneuste/S. -dipode/S. -dipolaire/S. -dipôle/S. -dipsacée/S. -dipsomane/S. -dipsomanie/S. -diptère/S. -diptyque/S. -dire/yC() -directe/F.() -directement -direction/S. -directionnelle/F.() -directive/F.() -directivisme/S. -directivité/S. -directoire/S. -directorat/S. -directoriale/W.() -directrice/F.() -dires -dirham/S. -dirhem/S. -dirigeable/S. -dirigeante/F.() -dirigée/F.() -diriger/a0a+() -dirigisme/S. -dirigiste/S. -dirimante/F.() -dirimer/a0a+() -disaccharide/S. -discale/W.() -discarthrose/S. -discernable/S. -discernée/F.() -discernement/S. -discerner/a0a+() -disciple/S. -disciplinable/S. -disciplinaire/S. -disciplinairement -discipline/S. -disciplinée/F.() -discipliner/a0a+() -disc-jockey/S. -disco/S. -discobole/S. -discographie/S. -discographique/S. -discoïdale/W.() -discoïde/S. -discompte/S. -discompter/a0a+() -discompteuse/F.() -discontacteur/S. -discontinue/F.() -discontinuer -discontinuité/S. -discontinûment -disconvenir/i0i+() -discopathie/S. -discophile/S. -discophilie/S. -discordance/S. -discordante/F.() -discorde/S. -discorder/a0() -discothécaire/S. -discothèque/S. -discount/S. -discountée/F.() -discounter/a0a+() -discounteur/S. -discoureuse/F.() -discourir/iD() -discours -discourtoise/F.() -discourtoisement -discourtoisie/S. -discrédit/S. -discréditée/F.() -discréditer/a0a+() -discrépance/S. -discrète/F.() -discrètement -discrétion/S. -discrétionnaire/S. -discrétionnairement -discrétisation/S. -discrétoire/S. -discriminante/F.() -discrimination/S. -discriminatoire/S. -discriminée/F.() -discriminer/a0a+() -disculpation/S. -disculpée/F.() -disculper/a0a+() -discuputer/a0() -discursive/F.() -discursiviser -discussion/S. -discutable/S. -discutailler/a0a+() -discutailleuse/F.() -discutée/F.() -discuter/a0a+() -discuteuse/F.() -diserte/F.() -disertement -disette/S. -disetteuse/W.() -diseuse/F.() -disgrâce/S. -disgraciée/F.() -disgracier/a0a+() -disgracieuse/W.() -disgracieusement -disharmonie/S. -disilane/S. -disjoindre/wB() -disjointe/F.() -disjoncter/a0a+() -disjoncteur/S. -disjonction/S. -disjonctive/F.() -dislocation/S. -disloquée/F.() -disloquer/a0a+() -disodique/S. -disparaître/wQ() -disparate/S. -disparation/S. -disparité/S. -disparition/S. -disparue/F.() -dispatcher/a0a+() -dispatcheur/S. -dispatching/S. -dispendieuse/W.() -dispendieusement -dispensable/S. -dispensaire/S. -dispensation/S. -dispensatrice/F.() -dispense/S. -dispensée/F.() -dispenser/a0a+() -dispersal/S. -dispersante/F.() -dispersée/F.() -dispersement/S. -disperser/a0a+() -dispersion/S. -dispersive/F.() -disponibilité/S. -disponible/S. -dispose/F.() -disposée/F.() -disposer/a0a+() -dispositif/S. -disposition/S. -disproportion/S. -disproportionnalité/S. -disproportionnée/F.() -disproportionnelle/F.() -disproportionnellement -disproportionner/a0a+() -disputailler/a0() -dispute/S. -disputée/F.() -disputer/a0a+() -disquaire/S. -disqualification/S. -disqualifiée/F.() -disqualifier/a0a+() -disque/S. -disquette/S. -disruption/S. -disruptive/F.() -dissecteur/S. -dissection/S. -dissemblable/S. -dissemblance/S. -dissémination/S. -disséminée/F.() -disséminer/a0a+() -dissension/S. -dissentiment/S. -disséquée/F.() -disséquer/c0a+() -disséqueur/S. -dissertation/S. -disserter/a0() -dissidence/S. -dissidente/F.() -dissimilation/S. -dissimiler/a0a+() -dissimilitude/S. -dissimulable/S. -dissimulation/S. -dissimulatrice/F.() -dissimulée/F.() -dissimuler/a0a+() -dissipation/S. -dissipative/F.() -dissipatrice/F.() -dissipée/F.() -dissiper/a0a+() -dissociable/S. -dissociation/S. -dissociée/F.() -dissocier/a0a+() -dissolubilité/S. -dissoluble/S. -dissolue/F.() -dissolution/S. -dissolutive/F.() -dissolvante/F.() -dissonance/S. -dissonante/F.() -dissoner/a0() -dissoudre/xN() -dissuadée/F.() -dissuader/a0a+() -dissuasion/S. -dissuasive/F.() -dissyllabe/S. -dissyllabique/S. -dissymétrie/S. -dissymétrique/S. -distale/W.() -distancée/F.() -distancer/a0a+() -distanciation/S. -distancier/a0a+() -distante/F.() -distendre/tA() -distendue/F.() -distension/S. -disthène/S. -distilbène/S. -distillat/S. -distillation/S. -distillatoire/S. -distillatrice/F.() -distillée/F.() -distiller/a0a+() -distillerie/S. -distincte/F.() -distinctement -distinction/S. -distinctive/F.() -distinguable/S. -distinguée/F.() -distinguer/a0a+() -distinguo/S. -distique/S. -distordre/tA() -distordue/F.() -distorsion/S. -distraction/S. -distractive/F.() -distractivité/S. -distraire/wL() -distraite/F.() -distraitement -distrayante/F.() -distribuable/S. -distribuée/F.() -distribuer/a0a+() -distribution/S. -distributionnalisme/S. -distributionnaliste/S. -distributionnelle/F.() -distributive/F.() -distributivement -distributivité/S. -distributrice/F.() -district/S. -distyle/S. -disulfure/S. -dite/F.() -diterpène/S. -dithyrambe/S. -dithyrambique/S. -dito -diurèse/S. -diurétique/S. -diurnal/X. -diurne/S. -div -diva/S. -divagante/F.() -divagation/S. -divagatrice/F.() -divaguer/a0() -divan/S. -divergence/S. -divergente/F.() -diverger/a0() -diverse/F.() -diversement -diversification/S. -diversifiée/F.() -diversifier/a0a+() -diversiforme/S. -diversion/S. -diversité/S. -diverticule/S. -diverticulose/S. -divertie/F.() -divertimento/S. -divertir/f0f+() -divertissante/F.() -divertissement/S. -divette/S. -dividende/S. -divination/S. -divinatoire/S. -divinatrice/F.() -divine/F.() -divinement -divinisation/S. -divinisée/F.() -diviniser/a0a+() -divinité/S. -divise/F.() -divisée/F.() -diviser/a0a+() -diviseur/S. -divisibilité/S. -divisible/S. -division/S. -divisionnaire/S. -divisionnisme/S. -divisionniste/S. -divorce/S. -divorcée/F.() -divorcer/a0() -divulgation/S. -divulgatrice/F.() -divulguable/S. -divulguée/F.() -divulguer/a0a+() -dix -dix-huit -dix-huitième/S. -dixième/S. -dixièmement -dixit -dix-neuf -dix-neuvième/S. -dix-sept -dix-septième/S. -dizain/S. -dizaine/S. -dizygote/S. -djaïn/S. -djaïnisme/S. -djebel/S. -djellaba/S. -djembé/S. -djibser/a0() -djinn/S. -do -doberman/S. -doc -docétisme/S. -doche/S. -docile/S. -docilement -docilité/S. -docimasie/S. -docimologie/S. -dock/S. -docker/S. -docte/S. -doctement -docteure/F.() -doctorale/W.() -doctoralement -doctorante/F.() -doctorat/S. -doctoresse/S. -doctrinaire/S. -doctrinale/W.() -doctrinalement -doctrine/S. -docu-fiction/S. -document/S. -documentaire/S. -documentaliste/S. -documentariste/S. -documentation/S. -documentée/F.() -documenter/a0a+() -dodécaèdre/S. -dodécagonale/W.() -dodécagone/S. -dodécalogie/S. -dodécaphasée/F.() -dodécaphonique/S. -dodécaphonisme/S. -dodécastyle/S. -dodécasyllabe/S. -dodelinement/S. -dodeliner/a0() -dodine/S. -dodo/S. -dodue/F.() -dog-cart/S. -doge/S. -dogger/S. -dogmatique/S. -dogmatiquement -dogmatiser/a0() -dogmatiseur/S. -dogmatisme/S. -dogmatiste/S. -dogme/S. -dogue/S. -doguer/a0a+() -doigt/S. -doigté/S. -doigter/a0a+() -doigtier/S. -dol/S. -dolce -dolcissimo -doléance/S. -doleau/X. -dolente/F.() -doler/a0a+() -dolérite/S. -dolic/S. -dolichocéphale/S. -doline/S. -dollar/S. -dolman/S. -dolmen/S. -doloire/S. -dolomie/S. -dolomite/S. -dolomitique/S. -dolorisme/S. -dolosive/F.() -dom -domaine/S. -domaniale/W.() -domanialité/S. -dôme/S. -domestication/S. -domesticité/S. -domestique/S. -domestiquée/F.() -domestiquer/a0a+() -domicile/S. -domiciliaire/S. -domiciliataire/S. -domiciliation/S. -domiciliée/F.() -domicilier/a0a+() -dominance/S. -dominante/F.() -domination/S. -dominatrice/F.() -dominée/F.() -dominer/a0a+() -dominicaine/F.() -dominicale/W.() -dominion/S. -domino/S. -dominoterie/S. -dominotière/F.() -domisme/S. -dommage/S. -dommageable/S. -dommages-intérêts -domoticienne/F.() -domotique/S. -domptable/S. -domptage/S. -domptée/F.() -dompter/a0a+() -dompteuse/F.() -dompte-venin -don/S. -donacie/S. -donataire/S. -donation/S. -donatisme/S. -donatiste/S. -donatrice/F.() -donc -dondaine/S. -dondon/S. -donjon/S. -donjonnée/F.() -donjuanesque/S. -donjuanisme/S. -donne/S. -donnée/F.() -donnée/S. -donner/a0a+() -donneuse/F.() -donquichottesque/S. -donquichottisme/S. -dont -donzelle/S. -dopage/S. -dopamine/S. -dopante/F.() -dope/S. -doper/a0a+() -doping/S. -dorade/S. -dorage/S. -dorée/F.() -dorénavant -dorer/a0a+() -doreuse/F.() -dorienne/F.() -dorin/S. -dorique/S. -doris -dorlotée/F.() -dorlotement/S. -dorloter/a0a+() -dormance/S. -dormante/F.() -dormeuse/F.() -dormir/iI() -dormition/S. -dormitive/F.() -dorsale/W.() -dorsalgie/S. -dortoir/S. -dorure/S. -doryphore/S. -dos -dosable/S. -dosage/S. -dos-d'âne -dose/S. -doser/a0a+() -dosette/S. -doseuse/F.() -dosimètre/S. -dossard/S. -dosse/S. -dosseret/S. -dossier/S. -dossière/S. -dot/S. -dotale/W.() -dotalité/S. -dotation/S. -doter/a0a+() -douaire/S. -douairière/S. -douane/S. -douanière/F.() -douar/S. -doublage/S. -double/S. -doubleau/X. -double-commande -double-crème -doublée/F.() -doublement -doublement/S. -doubler/a0a+() -doubles-commandes -doubles-crèmes -doublet/S. -doublette/S. -doubleuse/F.() -doublier/S. -doublon/S. -doublonner/a0() -doublure/S. -douce/W.() -douce-amère -douceâtre/S. -doucement -doucereuse/W.() -doucereusement -douces-amères -doucette/F.() -doucettement -douceur/S. -douche/S. -doucher/a0a+() -douchette/S. -doucheuse/F.() -doucin/S. -doucine/S. -doucir/f0f+() -doucissage/S. -doudou/S. -doudouisme/S. -doudoune/S. -douée/F.() -douelle/S. -douer -douille/S. -douiller/a0() -douillette/F.() -douillettement -douilletterie/S. -douleur/S. -douloureuse/W.() -douloureusement -doum/S. -douma/S. -dourine/S. -douro/S. -doute/S. -douter/a0a+() -douteuse/F.() -douteuse/W.() -douteusement -douvain/S. -douve/S. -douvelle/S. -douzain/S. -douzaine/S. -douze -douze-huit -douzième/S. -douzièmement -doxa/S. -doxographe/S. -doxologie/S. -doyenne/F.() -doyenné/S. -doyenneté/S. -dpi -dracéna/S. -dracher/a9() -drachme/S. -draconienne/F.() -drag/S. -dragage/S. -dragée/S. -dragéifiée/F.() -dragéifier/a0a+() -dragéiste/S. -drageoir/S. -drageon/S. -drageonnage/S. -drageonnement/S. -drageonner/a0() -dragline/S. -dragon/S. -dragonnade/S. -dragonne/S. -dragonnée/F.() -dragonner/a0a+() -dragonnier/S. -drague/S. -draguée/F.() -draguer/a0a+() -dragueuse/F.() -draille/S. -drain/S. -drainage/S. -drainée/F.() -drainer/a0a+() -draineuse/F.() -draisienne/S. -draisine/S. -drakkar/S. -dramatique/S. -dramatiquement -dramatisation/S. -dramatiser/a0a+() -dramaturge/S. -dramaturgie/S. -dramaturgique/S. -drame/S. -drap/S. -drapé/S. -drapeau/X. -drapée/F.() -drapeler/d0a+() -drapement/S. -draper/a0a+() -draperie/S. -drap-housse -drapière/F.() -draps-housses -drastique/S. -drastiquement -drave/S. -draver/a0a+() -draveur/S. -dravidienne/F.() -drawback/S. -drayer/a0a+() -drayoir/S. -drayoire/S. -dreadnought/S. -drège/S. -drelin -drenne/S. -drépanocytose/S. -dressage/S. -dressant/S. -dressée/F.() -dressement/S. -dresser/a0a+() -dresse-tube/S. -dresseuse/F.() -dressing/S. -dressing-room/S. -dressoir/S. -drève/S. -dreyfusarde/F.() -dribble/S. -dribbler/a0a+() -dribbleuse/F.() -drill/S. -drille/S. -driller/a0a+() -dring -drink/S. -drisse/S. -drive/S. -drive-in -driver/S. -driver/a0a+() -drogman/S. -drogue/S. -droguée/F.() -droguer/a0a+() -droguerie/S. -droguet/S. -droguiste/S. -droite/F.() -droitement -droit-fil -droitière/F.() -droitisation/S. -droits-fils -droiture/S. -drolatique/S. -drôle/S. -drôlement -drôlerie/S. -drôlesse/F.() -dromadaire/S. -drone/S. -dronte/S. -drop/S. -droper/a0a+() -drop-goal/S. -droppage/S. -droséracée/S. -drosophile/S. -drosser/a0a+() -drue/F.() -drugstore/S. -druidesse/F.() -druidique/S. -druidisme/S. -drumlin/S. -drummer/S. -drums -drupe/S. -druze/S. -dry -dryade/S. -dry-farming/S. -dryopithèque/S. -dt -du -dû -duale/W.() -dualisme/S. -dualiste/S. -dualité/S. -duathlète/S. -duathlon/S. -dubitative/F.() -dubitativement -dubnium/S. -duc/S. -ducale/W.() -ducasse/S. -ducat/S. -duce/S. -duché/S. -duchesse/S. -ducroire/S. -ductile/S. -ductilité/S. -ductus -dudgeonner -dudit -due/S. -duègne/S. -duel/S. -duelliste/S. -duettiste/S. -duetto/S. -duffle-coat/S. -dugong/S. -duit/S. -duite/S. -dulçaquicole/S. -dulcicole/S. -dulcification/S. -dulcifier/a0a+() -dulcinée/S. -dulcite/S. -dulie/S. -dum-dum -dûment -dumping/S. -dunaire/S. -dundee/S. -dune/S. -dunette/S. -duo/S. -duodécimale/W.() -duodénale/W.() -duodénite/S. -duodénum/S. -duodi/S. -duologie/S. -duopole/S. -dupe/S. -dupée/F.() -duper/a0a+() -duperie/S. -dupeuse/F.() -duplex -duplexer/a0a+() -duplicata/S. -duplicateur/S. -duplication/S. -duplicité/S. -dupliquée/F.() -dupliquer/a0a+() -duquel -durabilité/S. -durable/S. -durablement -duralumin/S. -duramen/S. -durant -durative/F.() -durcie/F.() -durcir/f0f+() -durcissement/S. -durcisseur/S. -dure/F.() -durée/S. -durement -dure-mère -durer/a0() -dures-mères -dureté/S. -durillon/S. -durion/S. -durit/S. -dus -duumvir/S. -duumvirat/S. -duumviri -duvet/S. -duvetée/F.() -duveter/d0a+() -duveteuse/W.() -duxelles -dyade/S. -dyadique/S. -dyke/S. -dyn/||-- -dynamique/S. -dynamiquement -dynamisation/S. -dynamiser/a0a+() -dynamisme/S. -dynamiste/S. -dynamitage/S. -dynamite/S. -dynamitée/F.() -dynamiter/a0a+() -dynamiteur/S. -dynamo/S. -dynamoélectrique/S. -dynamogène/S. -dynamogénique/S. -dynamographe/S. -dynamomètre/S. -dynamométrique/S. -dynaste/S. -dynastie/S. -dynastique/S. -dyne/S. -dynode/S. -dysarthrie/S. -dyscalculie/S. -dyschromatopsie/S. -dyschromie/S. -dyscrasie/S. -dysenterie/S. -dysentérique/S. -dysfonction/S. -dysfonctionnement/S. -dysfonctionner/a0() -dysgraphie/S. -dyshidrose/S. -dysidrose/S. -dyskinésie/S. -dysleptique/S. -dyslexie/S. -dyslexique/S. -dysménorrhée/S. -dysmorphie/S. -dysorthographie/S. -dyspepsie/S. -dyspepsique/S. -dyspeptique/S. -dysphasie/S. -dysphonie/S. -dysphorie/S. -dysplasie/S. -dyspnée/S. -dyspraxie/S. -dysprosium/S. -dystasie/S. -dystocie/S. -dystomie/S. -dystonie/S. -dystrophie/S. -dystrophine/S. -dystrophisation/S. -dysurie/S. -dytique/S. -dzêta -e/L' -eV/U.||-- -eau/X*() -eau-de-vie/L'D'Q' -eau-forte/L'D'Q' -eaux-de-vie/D'Q' -eaux-fortes/D'Q' -ébahie/F*() -ébahir/f4f+() -ébahissement/S*() -ébarbage/S*() -ébarber/a2a+() -ébarbeuse/F*() -ébarboir/S*() -ébarbure/S*() -ébat/S*() -ébattre/uC() -ébaubie/F*() -ébaubir/f3f+() -ébauchage/S*() -ébauche/S*() -ébauchée/F*() -ébaucher/a4a+() -ébaucheuse/F*() -ébauchoir/S*() -ébaudir/f4f+() -ébavurer/a2a+() -ébénacée/S*() -ébène/S*() -ébénier/S*() -ébéniste/S*() -ébénisterie/S*() -éberluée/F*() -éberluer/a2a+() -ébiseler/d2a+() -éblouie/F*() -éblouir/f2f+() -éblouissante/F*() -éblouissement/S*() -ébonite/S*() -e-book/S*() -éborgnage/S*() -éborgnée/F*() -éborgnement/S*() -éborgner/a4a+() -ébosser/a2a+() -ébouer/a2a+() -éboueuse/F*() -ébouillantage/S*() -ébouillantée/F*() -ébouillanter/a4a+() -éboulée/F*() -éboulement/S*() -ébouler/a4a+() -éboulis/L'D'Q' -ébouquetée/F*() -ébouqueter -ébourgeonnage/S*() -ébourgeonnement/S*() -ébourgeonner/a2a+() -ébouriffante/F*() -ébouriffée/F*() -ébouriffer/a2a+() -ébourrer/a2a+() -ébouter/a2a+() -ébouzer -ébraiser/a2a+() -ébranchage/S*() -ébrancher/a2a+() -ébranchoir/S*() -ébranlée/F*() -ébranlement/S*() -ébranler/a4a+() -ébrasement/S*() -ébraser/a2a+() -ébréchée/F*() -ébrécher/c4a+() -ébréchure/S*() -ébriété/S*() -ébroudir/f2f+() -ébrouement/S*() -ébrouer/a3a+() -ébruitement/S*() -ébruiter/a4a+() -ébruter/a2a+() -ébulliomètre/S*() -ébulliométrie/S*() -ébullioscope/S*() -ébullioscopie/S*() -ébullition/S*() -éburnée/F*() -éburnéenne/F*() -éburonne/F*() -écachée/F*() -écacher/a2a+() -écaffer/a2a+() -écaillage/S*() -écaille/S*() -écaillée/F*() -écailler/a4a+() -écaillère/F*() -écailleuse/W*() -écaillure/S*() -écaler/a4a+() -écalure/S*() -écang/S*() -écanguer/a2a+() -écarlate/S*() -écarquillée/F*() -écarquiller/a2a+() -écart/S*() -écartée/F*() -écartelée/F*() -écartèlement/S*() -écarteler/b2a+() -écartelure/S*() -écartement/S*() -écarter/a4a+() -écarteur/S*() -écartométrie/S*() -écatir/f2f+() -ecballium/S*() -eccéité/S*() -ecchymose/S*() -ecclésiale/W*() -ecclésiaste/S*() -ecclésiastique/S*() -ecclésiologie/S*() -ecclésiologique/S*() -écervelée/F*() -échafaud/S*() -échafaudage/S*() -échafaudée/F*() -échafauder/a2a+() -échafaudeuse/F*() -échalas/L'D'Q' -échalassée/F*() -échalasser/a2a+() -échalier/S*() -échalote/S*() -échampie/F*() -échampir/f2f+() -échancrée/F*() -échancrer/a2a+() -échancrure/S*() -échanfreinée/F*() -échanfreiner/a2a+() -échange/S*() -échangeable/S*() -échangée/F*() -échanger/a4a+() -échangeur/S*() -échangeuse/F*() -échangisme/S*() -échangiste/S*() -échanson/S*() -échantillon/S*() -échantillonnage/S*() -échantillonnée/F*() -échantillonner/a2a+() -échantillonneuse/F*() -échappatoire/S*() -échappée/F*() -échappée/S*() -échappement/S*() -échapper/a4a+() -écharde/S*() -échardonnage/S*() -échardonnée/F*() -échardonner/a2a+() -écharnage/S*() -écharnée/F*() -écharnement/S*() -écharner/a2a+() -écharneuse/F*() -écharnoir/S*() -écharpe/S*() -écharpée/F*() -écharper/a4a+() -échasse/S*() -échassier/S*() -échauboulure/S*() -échaudage/S*() -échaudée/F*() -échauder/a4a+() -échauffante/F*() -échauffée/F*() -échauffement/S*() -échauffer/a4a+() -échauffourée/S*() -échauguette/S*() -échaulée/F*() -échauler/a2a+() -échaumée/F*() -échaumer/a2a+() -échéance/S*() -échéancier/S*() -échéante/F*() -échec/S*() -échelée/F*() -écheler/d4a+() -échelette/S*() -échelier/S*() -échelle/S*() -échelon/S*() -échelonnée/F*() -échelonnement/S*() -échelonner/a4a+() -échenillage/S*() -échenillée/F*() -écheniller/a2a+() -échenilloir/S*() -écheveau/X*() -échevelée/F*() -écheveler/d2a+() -échevette/S*() -échevin/S*() -échevinage/S*() -échevinale/W*() -échidné/S*() -échine/S*() -échinée/F*() -échiner/a4a+() -échinocactus/L'D'Q' -échinocoque/S*() -échinoderme/S*() -échiquetée/F*() -échiquier/S*() -échiurien/S*() -écho/S*() -échocardiographie/S*() -échoencéphalographie/S*() -échographe/S*() -échographie/S*() -échographique/S*() -échographiste/S*() -échoir/pY() -écholalie/S*() -écholocalisation/S*() -écholocation/S*() -échoppe/S*() -échoppée/F*() -échopper/a2a+() -échotière/F*() -échotomographie/S*() -échouage/S*() -échouée/F*() -échouement/S*() -échouer/a4a+() -écimage/S*() -écimée/F*() -écimer/a2a+() -éclaboussée/F*() -éclaboussement/S*() -éclabousser/a4a+() -éclaboussure/S*() -éclair/S*() -éclairage/S*() -éclairagiste/S*() -éclairante/F*() -éclaircie/F*() -éclaircie/S*() -éclaircir/f4f+() -éclaircissage/S*() -éclaircissement/S*() -éclairée/F*() -éclairement/S*() -éclairer/a4a+() -éclaireuse/F*() -éclampsie/S*() -éclanche/S*() -éclat/S*() -éclatante/F*() -éclatée/F*() -éclatement/S*() -éclater/a4a+() -éclateur/S*() -éclectique/S*() -éclectisme/S*() -éclimètre/S*() -éclipse/S*() -éclipsée/F*() -éclipser/a4a+() -écliptique/S*() -éclisse/S*() -éclisser/a2a+() -éclopée/F*() -écloper/a2a+() -éclore/rC() -éclose/F*() -éclosion/S*() -éclusage/S*() -écluse/S*() -éclusée/S*() -écluser/a2a+() -éclusière/F*() -écobuage/S*() -écobuer/a2a+() -écocide/S*() -écocitoyenne/F*() -écocitoyenneté/S*() -écœurante/F*() -écœurée/F*() -écœurement/S*() -écœurer/a2a+() -écohabitat/S*() -écoinçon/S*() -écolabel/S*() -écolage/S*() -écolâtre/S*() -école/S*() -écolière/F*() -écolleter/d4a+() -écolo/S*() -écologie/S*() -écologique/S*() -écologiquement/D'Q' -écologisme/S*() -écologiste/S*() -écologue/S*() -écomusée/S*() -éconduire/yL() -éconduite/F*() -économat/S*() -économe/S*() -économètre/S*() -économétricienne/F*() -économétrie/S*() -économétrique/S*() -économie/S*() -économique/S*() -économiquement/D'Q' -économisée/F*() -économiser/a4a+() -économiseur/S*() -économisme/S*() -économiste/S*() -écoparticipation/S*() -écopée/F*() -écoper/a2a+() -écoperche/S*() -écoquartier/S*() -écorçage/S*() -écorce/S*() -écorcée/F*() -écorcement/S*() -écorcer/a2a+() -écorceuse/F*() -écorchée/F*() -écorchement/S*() -écorcher/a4a+() -écorcheuse/F*() -écorchure/S*() -écorée/F*() -écorer/a2a+() -écornée/F*() -écorner/a2a+() -écorniflée/F*() -écornifler/a2a+() -écornifleuse/F*() -écornure/S*() -écossaise/F*() -écossée/F*() -écosser/a2a+() -écosystème/S*() -écosystémique/S*() -écot/S*() -écotaxe/S*() -écotée/F*() -écotone/S*() -écotourisme/S*() -écotoxicologie/S*() -écotoxicologue/S*() -écotype/S*() -écoulée/F*() -écoulement/S*() -écouler/a4a+() -écoumène/S*() -écourtée/F*() -écourter/a2a+() -écoutante/F*() -écoute/S*() -écoutée/F*() -écouter/a4a+() -écouteur/S*() -écoutille/S*() -écouvillon/S*() -écouvillonnée/F*() -écouvillonner/a2a+() -écovolontaire/S*() -écovolontariat/S*() -écrabouillage/S*() -écrabouillée/F*() -écrabouillement/S*() -écrabouiller/a2a+() -écran/S*() -écrasante/F*() -écrasée/F*() -écrasement/S*() -écraser/a4a+() -écraseuse/F*() -écrémage/S*() -écrémée/F*() -écrémer/c2a+() -écrémeuse/S*() -écrêtée/F*() -écrêtement/S*() -écrêter/a2a+() -écrevisse/S*() -écrier/a3a+() -écrin/S*() -écrire/y1() -écrit/S*() -écrite/F*() -écriteau/X*() -écritoire/S*() -écriture/S*() -écrivaillée/F*() -écrivailler/a1() -écrivailleuse/F*() -écrivaillon/S*() -écrivaine/F*() -écrivasser/a2a+() -écrivassière/F*() -écrou/S*() -écrouée/F*() -écrouelles/D'Q' -écrouer/a2a+() -écrouie/F*() -écrouir/f2f+() -écrouissage/S*() -écroulée/F*() -écroulement/S*() -écrouler/a3a+() -écroûtage/S*() -écroûtée/F*() -écroûtement/S*() -écroûter/a2a+() -écroûteuse/S*() -écrue/F*() -ecstasy/S*() -ectasie/S*() -ecthyma/S*() -ectoblaste/S*() -ectoderme/S*() -ectodermique/S*() -ectogenèse/S*() -ectoparasite/S*() -ectopie/S*() -ectopique/S*() -ectoplasme/S*() -ectotherme/S*() -ectropion/S*() -écu/S*() -écubier/S*() -écueil/S*() -écuelle/S*() -écuissée/F*() -écuisser/a2a+() -éculée/F*() -éculer/a2a+() -écumage/S*() -écumante/F*() -écume/S*() -écumée/F*() -écumer/a2a+() -écumeur/S*() -écumeuse/W*() -écumoire/S*() -écurée/F*() -écurer/a2a+() -écureuil/S*() -écurie/S*() -écusson/S*() -écussonnage/S*() -écussonnée/F*() -écussonner/a2a+() -écussonnoir/S*() -écuyère/F*() -eczéma/S*() -eczémateuse/W*() -édam/S*() -edelweiss/L'D'Q' -éden/S*() -édénique/S*() -édentée/F*() -édenter/a2a+() -édictée/F*() -édicter/a2a+() -édiction/S*() -édicule/S*() -édifiante/F*() -édification/S*() -édificatrice/F*() -édifice/S*() -édifiée/F*() -édifier/a2a+() -édile/S*() -édilitaire/S*() -édilité/S*() -édit/S*() -éditable/S*() -éditée/F*() -éditer/a2a+() -édition/S*() -éditionnée/F*() -éditionner/a2a+() -éditoriale/W*() -éditorialiste/S*() -éditrice/F*() -édredon/S*() -éducabilité/S*() -éducable/S*() -éducation/S*() -éducationnelle/F*() -éducative/F*() -éducatrice/F*() -édulcorant/S*() -édulcorante/F*() -édulcoration/S*() -édulcorée/F*() -édulcorer/a2a+() -éduquée/F*() -éduquer/a2a+() -éfaufilée/F*() -éfaufiler/a2a+() -effaçable/S*() -effacée/F*() -effacement/S*() -effacer/a4a+() -effaceuse/F*() -effanée/F*() -effaner/a2a+() -effanure/S*() -effarante/F*() -effarée/F*() -effarement/S*() -effarer/a4a+() -effarouchée/F*() -effarouchement/S*() -effaroucher/a4a+() -effarvatte/S*() -effecteur/S*() -effectif/S*() -effective/F*() -effectivement/D'Q' -effectivité/S*() -effectuée/F*() -effectuer/a4a+() -efféminée/F*() -efféminement/S*() -efféminer/a4a+() -effendi/S*() -efférente/F*() -effervescence/S*() -effervescente/F*() -effet/S*() -effeuillage/S*() -effeuillaison/S*() -effeuillée/F*() -effeuillement/S*() -effeuiller/a4a+() -effeuilleuse/S*() -efficace/S*() -efficacement/D'Q' -efficacité/S*() -efficience/S*() -efficiente/F*() -effigie/S*() -effilage/S*() -effilée/F*() -effilement/S*() -effiler/a4a+() -effilochage/S*() -effilochée/F*() -effilochement/S*() -effilocher/a4a+() -effilocheuse/F*() -effilochure/S*() -effilure/S*() -efflanquée/F*() -efflanquer/a4a+() -effleurage/S*() -effleurée/F*() -effleurement/S*() -effleurer/a2a+() -effleurie/F*() -effleurir/f1() -effloraison/S*() -efflorescence/S*() -efflorescente/F*() -effluence/S*() -effluente/F*() -effluve/S*() -effluver/a1() -effondrée/F*() -effondrement/S*() -effondrer/a4a+() -efforcer/a3a+() -effort/S*() -effraction/S*() -effractive/F*() -effrangée/F*() -effranger/a4a+() -effrayante/F*() -effrayée/F*() -effrayer/a4a+() -effrénée/F*() -effritée/F*() -effritement/S*() -effriter/a4a+() -effroi/S*() -effrontée/F*() -effrontément/D'Q' -effronterie/S*() -effroyable/S*() -effroyablement/D'Q' -effusion/S*() -effusive/F*() -éfourceau/X*() -égagropile/S*() -égaiement/S*() -égaillée/F*() -égailler/a3a+() -égalable/S*() -égale/W*() -égalée/F*() -également/D'Q' -égaler/a2a+() -égalisation/S*() -égalisatrice/F*() -égalisée/F*() -égaliser/a2a+() -égaliseur/S*() -égalitaire/S*() -égalitarisme/S*() -égalitariste/S*() -égalité/S*() -égard/S*() -égarée/F*() -égarement/S*() -égarer/a4a+() -égayante/F*() -égayée/F*() -égayement/S*() -égayer/a4a+() -égéenne/F*() -égérie/S*() -égermage/S*() -égermée/F*() -égermer/a2a+() -égide/S*() -égipan/S*() -églantier/S*() -églantine/S*() -églefin/S*() -église/S*() -églogue/S*() -égnaffer -ego -ego/L'D'Q' -égocentrique/S*() -égocentrisme/S*() -égoïne/S*() -égoïner -égoïsme/S*() -égoïste/S*() -égoïstement/D'Q' -égorgée/F*() -égorgement/S*() -égorger/a4a+() -égorgeuse/F*() -égosiller/a3a+() -égotisme/S*() -égotiste/S*() -égout/S*() -égoutière/F*() -égouttage/S*() -égouttement/S*() -égoutter/a4a+() -égouttoir/S*() -égoutture/S*() -égrainage/S*() -égrainée/F*() -égrainer/a4a+() -égrappage/S*() -égrappée/F*() -égrapper/a2a+() -égrappoir/S*() -égratignée/F*() -égratigner/a4a+() -égratignure/S*() -égravillonnée/F*() -égravillonner/a2a+() -égrégore/S*() -égrenage/S*() -égrenée/F*() -égrènement/S*() -égrener/b4a+() -égreneuse/S*() -égrillarde/F*() -égrisage/S*() -égrisée/F*() -égriser/a2a+() -égrotante/F*() -égrugeage/S*() -égrugée/F*() -égrugeoir/S*() -égruger/a2a+() -égrugeure/S*() -égueulée/F*() -égueulement/S*() -égueuler/a2a+() -égyptienne/F*() -égyptologie/S*() -égyptologique/S*() -égyptologue/S*() -eh -éhontée/F*() -éhontément/D'Q' -eider/S*() -eidétique/S*() -einsteinium/S*() -éjaculateur/S*() -éjaculation/S*() -éjaculer/a2a+() -éjarrer/a2a+() -éjectable/S*() -éjectée/F*() -éjecter/a4a+() -éjecteur/S*() -éjection/S*() -éjointée/F*() -éjointer/a2a+() -élaboration/S*() -élaborée/F*() -élaborer/a4a+() -élagage/S*() -élaguée/F*() -élaguer/a2a+() -élagueuse/F*() -élan/S*() -élancée/F*() -élancement/S*() -élancer/a4a+() -élargie/F*() -élargir/f4f+() -élargissement/S*() -élasticimétrie/S*() -élasticité/S*() -élastine/S*() -élastique/S*() -élastomère/S*() -élavée/F*() -elbeuf/S*() -elbot/S*() -eldorado/S*() -e-learning/S*() -éléatique/S*() -élection/S*() -élective/F*() -électivité/S*() -électorale/W*() -électoralement/D'Q' -électoralisme/S*() -électoraliste/S*() -électorat/S*() -électrice/F*() -électricienne/F*() -électricité/S*() -électrification/S*() -électrifiée/F*() -électrifier/a2a+() -électrique/S*() -électriquement/D'Q' -électrisable/S*() -électrisante/F*() -électrisation/S*() -électrisée/F*() -électriser/a2a+() -électroacousticienne/F*() -électroacoustique/S*() -électroaimant/S*() -électrobiologie/S*() -électrocardiogramme/S*() -électrocardiographe/S*() -électrocardiographie/S*() -électrocautère/S*() -électrochimie/S*() -électrochimique/S*() -électrochoc/S*() -électrocoagulation/S*() -électrocutée/F*() -électrocuter/a4a+() -électrocution/S*() -électrode/S*() -électrodiagnostic/S*() -électrodynamique/S*() -électrodynamomètre/S*() -électroencéphalogramme/S*() -électroencéphalographe/S*() -électroencéphalographie/S*() -électrofaible/S*() -électrogène/S*() -électrologie/S*() -électroluminescence/S*() -électroluminescente/F*() -électrolysable/S*() -électrolyse/S*() -électrolysée/F*() -électrolyser/a2a+() -électrolyte/S*() -électrolytique/S*() -électromagnétique/S*() -électromagnétisme/S*() -électromécanique/S*() -électroménager/S*() -électroménagiste/S*() -électrométallurgie/S*() -électromotrice/F*() -électron/S*() -électronégative/F*() -électronégativité/S*() -électronicienne/F*() -électronique/S*() -électroniquement/D'Q' -électronisation/S*() -électronisée/F*() -électroniser/a2a+() -électronvolt/Um() -électro-oculogramme/S*() -électro-oculographie/S*() -électro-optique/S*() -électro-osmose/S*() -électro-osmotique/S*() -électrophone/S*() -électrophorèse/S*() -électrophotographie/S*() -électrophotographique/S*() -électrophysiologie/S*() -électropneumatique/S*() -électropositive/F*() -électropuncture/S*() -électroradiologie/S*() -électroradiologiste/S*() -électroscope/S*() -électrostatique/S*() -électrostriction/S*() -électrotechnicienne/F*() -électrotechnique/S*() -électrothérapie/S*() -électrothermie/S*() -électrothermique/S*() -électrovalence/S*() -électrovanne/S*() -électrum/S*() -électuaire/S*() -élégamment/D'Q' -élégance/S*() -élégante/F*() -élégiaque/S*() -élégie/S*() -élégir/f2f+() -éléis/L'D'Q' -élément/S*() -élémentaire/S*() -éléphante/F*() -éléphanteau/X*() -éléphantesque/S*() -éléphantiasique/S*() -éléphantiasis/L'D'Q' -éléphantine/F*() -élevage/S*() -élévation/S*() -élévatoire/S*() -élévatrice/F*() -élève/S*() -élevée/F*() -élèvement/S*() -élever/b4a+() -éleveuse/F*() -elfe/S*() -elfique/S*() -éliciteur/S*() -élidée/F*() -élider/a4a+() -éligibilité/S*() -éligible/S*() -élimée/F*() -élimer/a2a+() -éliminable/S*() -élimination/S*() -éliminatoire/S*() -éliminatrice/F*() -éliminée/F*() -éliminer/a4a+() -élingue/S*() -élinguée/F*() -élinguer/a2a+() -élire/yB() -élisabéthaine/F*() -élision/S*() -élitaire/S*() -élite/S*() -élitisme/S*() -élitiste/S*() -élixir/S*() -elle/D'Q'S. -elle-même/D'Q' -elles-mêmes/D'Q' -ellipse/S*() -ellipsoïdale/W*() -ellipsoïde/S*() -ellipticité/S*() -elliptique/S*() -elliptiquement/D'Q' -élocution/S*() -élodée/S*() -éloge/S*() -élogieuse/W*() -élogieusement/D'Q' -éloignée/F*() -éloignement/S*() -éloigner/a4a+() -élongation/S*() -élongée/F*() -élonger/a2a+() -éloquemment/D'Q' -éloquence/S*() -éloquente/F*() -élucidation/S*() -élucidée/F*() -élucider/a2a+() -élucubration/S*() -élucubrée/F*() -élucubrer/a2a+() -éludée/F*() -éluder/a2a+() -élue/F*() -éluer/a2a+() -élusive/F*() -éluviale/W*() -éluvion/S*() -élyséenne/F*() -élytre/S*() -elzévir/S*() -elzévirienne/F*() -émaciation/S*() -émaciée/F*() -émacier/a4a+() -e-mail/S*() -émail/X*() -émaillage/S*() -émaillée/F*() -émailler/a2a+() -émaillerie/S*() -émailleuse/F*() -émaillure/S*() -émanation/S*() -émanche/S*() -émanchure/S*() -émancipation/S*() -émancipatrice/F*() -émancipée/F*() -émanciper/a4a+() -émanée/F*() -émaner/a1() -émargée/F*() -émargement/S*() -émarger/a2a+() -émasculation/S*() -émasculée/F*() -émasculer/a2a+() -embabouiner/a2a+() -embâcle/S*() -emballage/S*() -emballée/F*() -emballement/S*() -emballer/a4a+() -emballeuse/F*() -emballottée/F*() -emballotter/a2a+() -embaluchonnée/F*() -embaluchonner/a2a+() -embarbouillée/F*() -embarbouiller/a4a+() -embarcadère/S*() -embarcation/S*() -embardée/S*() -embarder/a4a+() -embardoufler/a4a+() -embargo/S*() -embarquée/F*() -embarquement/S*() -embarquer/a4a+() -embarras/L'D'Q' -embarrassante/F*() -embarrassée/F*() -embarrasser/a4a+() -embarrée/F*() -embarrer/a4a+() -embase/S*() -embasement/S*() -embastillée/F*() -embastiller/a2a+() -embastionnée/F*() -embastionner/a2a+() -embattage/S*() -embattre/uA() -embattue/F*() -embauchage/S*() -embauche/S*() -embauchée/F*() -embaucher/a4a+() -embaucheuse/F*() -embauchoir/S*() -embaumée/F*() -embaumement/S*() -embaumer/a2a+() -embaumeuse/F*() -embecquer/a2a+() -embecqueter -embéguiner/a3a+() -embellie/F*() -embellie/S*() -embellir/f4f+() -embellissement/S*() -emberlificotée/F*() -emberlificoter/a4a+() -emberlificoteuse/F*() -embêtante/F*() -embêtée/F*() -embêtement/S*() -embêter/a4a+() -embidonnée/F*() -embidonner/a2a+() -embistrouiller -emblavage/S*() -emblavée/F*() -emblaver/a2a+() -emblavure/S*() -emblématique/S*() -emblème/S*() -embobelinée/F*() -embobeliner/a2a+() -embobinée/F*() -embobiner/a2a+() -emboire/xD() -emboîtable/S*() -emboîtage/S*() -emboîtée/F*() -emboîtement/S*() -emboîter/a4a+() -emboîture/S*() -embolie/S*() -embolisation/S*() -embolisme/S*() -embonpoint/S*() -embossage/S*() -embossée/F*() -embosser/a4a+() -embosseuse/F*() -embottelée/F*() -embotteler/d2a+() -emboucaner/a1() -embouchée/F*() -emboucher/a2a+() -embouchoir/S*() -embouchure/S*() -embouée/F*() -embouer/a2a+() -embouquement/S*() -embouquer/a2a+() -embourbée/F*() -embourber/a4a+() -embourgeoisée/F*() -embourgeoisement/S*() -embourgeoiser/a4a+() -embourrée/F*() -embourrer/a4a+() -embourrure/S*() -embout/S*() -embouteillage/S*() -embouteillée/F*() -embouteiller/a2a+() -embouteilleuse/F*() -embouter/a2a+() -emboutie/F*() -emboutir/f2f+() -emboutissage/S*() -emboutisseuse/F*() -emboutissoir/S*() -embranchée/F*() -embranchement/S*() -embrancher/a4a+() -embraquée/F*() -embraquer/a2a+() -embrasée/F*() -embrasement/S*() -embraser/a4a+() -embrassade/S*() -embrassée/F*() -embrassement/S*() -embrasser/a4a+() -embrasseuse/F*() -embrasure/S*() -embratteler/d4a+() -embrayage/S*() -embrayée/F*() -embrayer/a2a+() -embrelée/F*() -embreler/d2a+() -embrevée/F*() -embrèvement/S*() -embrever/b2a+() -embrigadée/F*() -embrigadement/S*() -embrigader/a4a+() -embringuée/F*() -embringuer/a4a+() -embrocation/S*() -embrochée/F*() -embrochement/S*() -embrocher/a4a+() -embronchée/F*() -embronchement/S*() -embroncher/a2a+() -embrouillage/S*() -embrouillamini/S*() -embrouille/S*() -embrouillée/F*() -embrouillement/S*() -embrouiller/a4a+() -embroussaillée/F*() -embroussailler/a4a+() -embrumée/F*() -embrumer/a2a+() -embrun/S*() -embrunie/F*() -embrunir/f2f+() -embryogenèse/S*() -embryogénie/S*() -embryogénique/S*() -embryologie/S*() -embryologique/S*() -embryologiste/S*() -embryon/S*() -embryonnaire/S*() -embryonnée/F*() -embryopathie/S*() -embryophagie/S*() -embryotome/S*() -embryotomie/S*() -embûche/S*() -embue/F*() -embuée/F*() -embuer/a4a+() -embuscade/S*() -embusquée/F*() -embusquer/a4a+() -éméchée/F*() -émécher/c2a+() -émeraude/S*() -émergée/F*() -émergence/S*() -émergente/F*() -émerger/a1() -émeri/S*() -émerillon/S*() -émerillonnée/F*() -émerillonner/a2a+() -émerisée/F*() -émeriser/a2a+() -émérite/S*() -émersion/S*() -émerveillée/F*() -émerveillement/S*() -émerveiller/a4a+() -émétine/S*() -émétique/S*() -émettre/vA() -émettrice/F*() -émeu/S*() -émeute/S*() -émeutière/F*() -émiée/F*() -émier/a2a+() -émiettée/F*() -émiettement/S*() -émietter/a4a+() -émigrante/F*() -émigration/S*() -émigrée/F*() -émigrer/a1() -émincée/F*() -émincer/a2a+() -éminemment/D'Q' -éminence/S*() -éminente/F*() -éminentissime/S*() -émir/S*() -émirat/S*() -émise/F*() -émissaire/S*() -émission/S*() -émissive/F*() -émissivité/S*() -émissole/S*() -emmagasinage/S*() -emmagasinée/F*() -emmagasiner/a2a+() -emmaillotée/F*() -emmaillotement/S*() -emmailloter/a4a+() -emmanchée/F*() -emmanchement/S*() -emmancher/a4a+() -emmanchure/S*() -emmantelée/F*() -emmanteler/d4a+() -emmargée/F*() -emmarger/a2a+() -emmêlée/F*() -emmêlement/S*() -emmêler/a4a+() -emménagée/F*() -emménagement/S*() -emménager/a2a+() -emménagogue/S*() -emmenée/F*() -emmener/b2a+() -emmental/S*() -emmerdante/F*() -emmerde/S*() -emmerdée/F*() -emmerdement/S*() -emmerder/a4a+() -emmerderesse/S*() -emmerdeuse/F*() -emmétrée/F*() -emmétrer/c2a+() -emmétrope/S*() -emmétropie/S*() -emmiellée/F*() -emmieller/a2a+() -emmitonnée/F*() -emmitonner/a2a+() -emmitouflée/F*() -emmitoufler/a4a+() -emmortaisée/F*() -emmortaiser/a2a+() -emmottée/F*() -emmouscaillée/F*() -emmouscailler/a2a+() -emmurée/F*() -emmurer/a4a+() -emmuselée/F*() -emmuseler -émoi/S*() -émolliente/F*() -émolument/S*() -émonctoire/S*() -émondage/S*() -émondée/F*() -émonder/a2a+() -émondeur/S*() -émondoir/S*() -émorfilage/S*() -émorfiler/a2a+() -émoticône/S*() -émotion/S*() -émotionnable/S*() -émotionnelle/F*() -émotionner/a2a+() -émotive/F*() -émotivité/S*() -émottage/S*() -émottée/F*() -émotter/a2a+() -émotteuse/F*() -émou/S*() -émouchée/F*() -émoucher/a2a+() -émouchet/S*() -émoucheter/d2a+() -émouchette/S*() -émouchoir/S*() -émoudre/xP() -émoulage/S*() -émouleur/S*() -émoulue/F*() -émoussée/F*() -émoussement/S*() -émousser/a4a+() -émoustillante/F*() -émoustillée/F*() -émoustiller/a4a+() -émouvante/F*() -émouvoir/pH() -empaffée/F*() -empaffer/a2a+() -empagement/S*() -empaillage/S*() -empaillée/F*() -empaillement/S*() -empailler/a2a+() -empailleuse/F*() -empalée/F*() -empalement/S*() -empaler/a4a+() -empaleuse/F*() -empalmer/a2a+() -empan/S*() -empanachée/F*() -empanacher/a2a+() -empannage/S*() -empannée/F*() -empanner/a2a+() -empapaouter/a2a+() -empapillotée/F*() -empapilloter/a2a+() -empaquetage/S*() -empaquetée/F*() -empaqueter/d2a+() -empaqueteuse/F*() -emparer/a3a+() -emparquée/F*() -emparquer/a2a+() -empâtée/F*() -empâtement/S*() -empâter/a4a+() -empathie/S*() -empathique/S*() -empattée/F*() -empattement/S*() -empatter/a2a+() -empaumée/F*() -empaumer/a2a+() -empaumure/S*() -empêchée/F*() -empêchement/S*() -empêcher/a4a+() -empêcheuse/F*() -empeigne/S*() -empeignée/F*() -empeigner/a2a+() -empênée/F*() -empêner/a2a+() -empennage/S*() -empenne/S*() -empennée/F*() -empennelée/F*() -empenneler/d2a+() -empenner/a2a+() -emperchée/F*() -empercher/a2a+() -empereur/S*() -emperlée/F*() -emperler/a2a+() -empesage/S*() -empesée/F*() -empeser/b2a+() -empestée/F*() -empester/a2a+() -empêtrée/F*() -empêtrer/a4a+() -emphase/S*() -emphatique/S*() -emphatiquement/D'Q' -emphysémateuse/W*() -emphysème/S*() -emphytéose/S*() -emphytéote/S*() -emphytéotique/S*() -empiècement/S*() -empiégée/F*() -empiéger/c2a+() -empierrée/F*() -empierrement/S*() -empierrer/a2a+() -empiétement/S*() -empiéter/c1() -empiffrée/F*() -empiffrer/a3a+() -empilage/S*() -empilée/F*() -empilement/S*() -empiler/a4a+() -empileuse/F*() -empire/S*() -empirer/a4a+() -empiriocriticisme/S*() -empirique/S*() -empiriquement/D'Q' -empirisme/S*() -empiriste/S*() -emplacement/S*() -emplafonner/a4a+() -emplanture/S*() -emplâtre/S*() -emplâtrée/F*() -emplâtrer/a2a+() -emplette/S*() -emplie/F*() -emplir/f4f+() -emplissage/S*() -emploi/S*() -employabilité/S*() -employable/S*() -employée/F*() -employer/a4a+() -employeuse/F*() -emplumée/F*() -emplumer/a2a+() -empochée/F*() -empocher/a2a+() -empoignade/S*() -empoignante/F*() -empoignée/F*() -empoigner/a4a+() -empointure/S*() -empois/L'D'Q' -empoisonnante/F*() -empoisonnée/F*() -empoisonnement/S*() -empoisonner/a4a+() -empoisonneuse/F*() -empoissée/F*() -empoisser/a2a+() -empoissonnée/F*() -empoissonnement/S*() -empoissonner/a2a+() -emporium/S*() -emport/S*() -emportée/F*() -emportement/S*() -emporte-pièce/L'D'Q' -emporter/a4a+() -empotée/F*() -empoter/a2a+() -empourprée/F*() -empourprer/a4a+() -empoussiérée/F*() -empoussiérer/c4a+() -empreindre/wB() -empreinte/F*() -empreinte/S*() -empressée/F*() -empressement/S*() -empresser/a3a+() -emprésurée/F*() -emprésurer/a2a+() -emprise/S*() -emprisonnée/F*() -emprisonnement/S*() -emprisonner/a4a+() -emprunt/S*() -empruntée/F*() -emprunter/a2a+() -emprunteuse/F*() -empuantie/F*() -empuantir/f2f+() -empuantissement/S*() -empuse/S*() -empyème/S*() -empyrée/S*() -empyreumatique/S*() -empyreume/S*() -émue/F*() -émulation/S*() -émulatrice/F*() -émule/S*() -émulée/F*() -émuler/a2a+() -émulseur/S*() -émulsifiable/S*() -émulsifiante/F*() -émulsifiée/F*() -émulsifier/a2a+() -émulsine/S*() -émulsion/S*() -émulsionnée/F*() -émulsionner/a2a+() -émulsive/F*() -en/Q'Qjn'd'j'l'm't's' -enamourée/F*() -énamourée/F*() -énamourer/a3a+() -énanthème/S*() -énantiomorphe/S*() -énantiotrope/S*() -énarque/S*() -énarthrose/S*() -en-avant/L'D'Q' -en-but -encabanage/S*() -encabanée/F*() -encabaner/a2a+() -encablure/S*() -encadrante/F*() -encadré/S*() -encadrée/F*() -encadrement/S*() -encadrer/a4a+() -encadreuse/F*() -encagée/F*() -encagement/S*() -encager/a2a+() -encagoulée/F*() -encagouler/a4a+() -encaissable/S*() -encaissage/S*() -encaisse/S*() -encaissée/F*() -encaissement/S*() -encaisser/a2a+() -encaisseur/S*() -encalminée/F*() -encan/S*() -encanaillée/F*() -encanaillement/S*() -encanailler/a4a+() -encaper -encapsulage/S*() -encapsulation/S*() -encapsulée/F*() -encapsuler/a2a+() -encapuchonnée/F*() -encapuchonner/a4a+() -encaquée/F*() -encaquement/S*() -encaquer/a2a+() -encarrer -encart/S*() -encartage/S*() -encartée/F*() -encarter/a2a+() -encarteuse/S*() -encartonnée/F*() -encartonner/a2a+() -encartouchée/F*() -encartoucher/a2a+() -en-cas/L'D'Q' -encasernée/F*() -encaserner/a2a+() -encastelée/F*() -encasteler/b3a+() -encastelure/S*() -encastrable/S*() -encastrée/F*() -encastrement/S*() -encastrer/a4a+() -encaustiquage/S*() -encaustique/S*() -encaustiquée/F*() -encaustiquer/a2a+() -encavage/S*() -encavée/F*() -encavement/S*() -encaver/a2a+() -enceindre/wB() -enceinte/F*() -enceinte/S*() -enceinter/a2a+() -encens/L'D'Q' -encensée/F*() -encensement/S*() -encenser/a4a+() -encenseuse/F*() -encensoir/S*() -encéphale/S*() -encéphalique/S*() -encéphalite/S*() -encéphalogramme/S*() -encéphalographie/S*() -encéphalopathie/S*() -encerclée/F*() -encerclement/S*() -encercler/a2a+() -enchaînée/F*() -enchaînement/S*() -enchaîner/a4a+() -enchantée/F*() -enchanteler -enchantement/S*() -enchanter/a4a+() -enchanteresse/F*() -enchaperonnée/F*() -enchaperonner/a2a+() -encharnée/F*() -encharner/a2a+() -enchâssée/F*() -enchâssement/S*() -enchâsser/a4a+() -enchâssure/S*() -enchatonnée/F*() -enchatonnement/S*() -enchatonner/a2a+() -enchaussée/F*() -enchausser/a2a+() -enchemisage/S*() -enchemisée/F*() -enchemiser/a2a+() -enchère/S*() -enchérie/F*() -enchérir/f2f+() -enchérissement/S*() -enchérisseuse/F*() -enchetarder -enchevalement/S*() -enchevauchée/F*() -enchevaucher/a2a+() -enchevauchure/S*() -enchevêtrée/F*() -enchevêtrement/S*() -enchevêtrer/a4a+() -enchevêtrure/S*() -enchifrenée/F*() -enchifrènement/S*() -enchifrener/b2a+() -enchtiber -enchtourber -encirée/F*() -encirer/a2a+() -enclave/S*() -enclavée/F*() -enclavement/S*() -enclaver/a4a+() -enclenchée/F*() -enclenchement/S*() -enclencher/a4a+() -encline/F*() -encliquetage/S*() -encliquetée/F*() -encliqueter/d2a+() -enclitique/S*() -encloîtrée/F*() -encloîtrer/a2a+() -encloquer -enclore/rA() -enclos/L'D'Q' -enclose/F*() -enclouée/F*() -enclouer/a2a+() -enclouure/S*() -enclume/S*() -encoche/S*() -encochée/F*() -encocher/a2a+() -encodage/S*() -encodée/F*() -encoder/a2a+() -encodeuse/F*() -encoffrée/F*() -encoffrer/a2a+() -encoignure/S*() -encollage/S*() -encollée/F*() -encoller/a2a+() -encolleuse/F*() -encolure/S*() -encombrante/F*() -encombrée/F*() -encombrement/S*() -encombrer/a4a+() -encontre/L' -encorbellement/S*() -encordée/F*() -encorder/a4a+() -encore/D'Q' -encornée/F*() -encorner/a2a+() -encornet/S*() -encourageante/F*() -encouragée/F*() -encouragement/S*() -encourager/a4a+() -encourir/iE() -en-cours/L'D'Q' -encourue/F*() -encrage/S*() -encrassée/F*() -encrassement/S*() -encrasser/a4a+() -encre/S*() -encrée/F*() -encrêpée/F*() -encrêper/a2a+() -encrer/a2a+() -encreur/S*() -encrier/S*() -encrine/S*() -encrister -encrouée/F*() -encroumer -encroûtée/F*() -encroûtement/S*() -encroûter/a4a+() -encryptage/S*() -encrypter/a2a+() -enculée/F*() -enculer/a2a+() -encuvage/S*() -encuvée/F*() -encuver/a2a+() -encyclique/S*() -encyclopédie/S*() -encyclopédique/S*() -encyclopédisme/S*() -encyclopédiste/S*() -endaubée/F*() -endauber/a2a+() -endéans -endémie/S*() -endémique/S*() -endémisme/S*() -endentée/F*() -endenter/a2a+() -endettée/F*() -endettement/S*() -endetter/a4a+() -endeuillée/F*() -endeuiller/a2a+() -endêvée/F*() -endêver -endiablée/F*() -endiabler/a2a+() -endigage/S*() -endiguée/F*() -endiguement/S*() -endiguer/a2a+() -endimanchée/F*() -endimancher/a4a+() -endive/S*() -endivisionnée/F*() -endivisionner/a2a+() -endoblaste/S*() -endocarde/S*() -endocardite/S*() -endocarpe/S*() -endocrine/S*() -endocrinienne/F*() -endocrinologie/S*() -endocrinologiste/S*() -endocrinologue/S*() -endoctrinée/F*() -endoctrinement/S*() -endoctriner/a2a+() -endoderme/S*() -endogame/S*() -endogamie/S*() -endogamique/S*() -endogène/S*() -endolorie/F*() -endolorir/f2f+() -endolorissement/S*() -endomètre/S*() -endométrite/S*() -endommagée/F*() -endommagement/S*() -endommager/a2a+() -endomorphisme/S*() -endonymie/S*() -endoplasme/S*() -endoplasmique/S*() -endormante/F*() -endormeuse/F*() -endormie/F*() -endormir/iJ() -endormissement/S*() -endorphine/S*() -endos/L'D'Q' -endoscope/S*() -endoscopie/S*() -endoscopique/S*() -endosmomètre/S*() -endosmose/S*() -endosquelette/S*() -endossable/S*() -endossataire/S*() -endossée/F*() -endossement/S*() -endosser/a2a+() -endosseur/S*() -endothéliale/W*() -endothélium/S*() -endotherme/S*() -endothermique/S*() -endotoxine/S*() -endroit/S*() -enduire/yM() -enduiseuse/F*() -enduit/S*() -enduite/F*() -endurable/S*() -endurance/S*() -endurante/F*() -endurcie/F*() -endurcir/f4f+() -endurcissement/S*() -endurée/F*() -endurer/a2a+() -enduro/S*() -endymion/S*() -énergéticienne/F*() -énergétique/S*() -énergétiquement/D'Q' -énergétisme/S*() -énergie/S*() -énergique/S*() -énergiquement/D'Q' -énergisante/F*() -énergivore/S*() -énergumène/S*() -énervante/F*() -énervation/S*() -énervée/F*() -énervement/S*() -énerver/a4a+() -enfaîteau/X*() -enfaîtée/F*() -enfaîtement/S*() -enfaîter/a2a+() -enfance/S*() -enfant/S*() -enfantée/F*() -enfantement/S*() -enfanter/a2a+() -enfantillage/S*() -enfantine/F*() -enfarinée/F*() -enfariner/a2a+() -enfer/S*() -enfermée/F*() -enfermement/S*() -enfermer/a4a+() -enferrée/F*() -enferrer/a4a+() -enfeu/S*() -enficelée/F*() -enficeler -enfichable/S*() -enfichée/F*() -enficher/a2a+() -enfiellée/F*() -enfieller/a2a+() -enfiévrée/F*() -enfiévrer/c4a+() -enfilade/S*() -enfilage/S*() -enfilée/F*() -enfiler/a4a+() -enfileuse/F*() -enfin/D'Q' -enfirouapée/F*() -enfirouaper/a2a+() -enflammée/F*() -enflammer/a4a+() -enfléchée/F*() -enflécher/c2a+() -enfléchure/S*() -enflée/F*() -enfler/a4a+() -enfleurage/S*() -enfleurée/F*() -enfleurer/a2a+() -enflure/S*() -enfoirée/F*() -enfoirer -enfoncée/F*() -enfoncement/S*() -enfoncer/a4a+() -enfonceuse/F*() -enfonçure/S*() -enforcir/f1() -enfouie/F*() -enfouiller -enfouir/f4f+() -enfouissement/S*() -enfouisseur/S*() -enfourailler -enfourchée/F*() -enfourchement/S*() -enfourcher/a2a+() -enfourchure/S*() -enfournage/S*() -enfournée/F*() -enfournement/S*() -enfourner/a4a+() -enfreindre/wB() -enfreinte/F*() -enfuir/iO() -enfumage/S*() -enfumée/F*() -enfumer/a4a+() -enfûtage/S*() -enfutaillée/F*() -enfutailler/a2a+() -enfûtée/F*() -enfûter/a2a+() -engageante/F*() -engagée/F*() -engagement/S*() -engager/a4a+() -engainée/F*() -engainer/a2a+() -engamée/F*() -engamer/a2a+() -engargoussée/F*() -engargousser/a2a+() -engavée/F*() -engaver/a2a+() -engazonnée/F*() -engazonnement/S*() -engazonner/a2a+() -engazonneuse/F*() -engeance/S*() -engelure/S*() -engendrable/S*() -engendrée/F*() -engendrement/S*() -engendrer/a2a+() -engerbée/F*() -engerber/a2a+() -engin/S*() -englacée/F*() -englacer/a2a+() -englobante/F*() -englobée/F*() -englober/a2a+() -engloutie/F*() -engloutir/f4f+() -engloutissement/S*() -engluage/S*() -engluée/F*() -engluement/S*() -engluer/a4a+() -engobage/S*() -engobée/F*() -engober/a2a+() -engommage/S*() -engommée/F*() -engommer/a2a+() -engoncée/F*() -engoncer/a2a+() -engorgée/F*() -engorgement/S*() -engorger/a4a+() -engouée/F*() -engouement/S*() -engouer/a3a+() -engouffrée/F*() -engouffrement/S*() -engouffrer/a4a+() -engoulée/F*() -engouler/a2a+() -engoulevent/S*() -engourdie/F*() -engourdir/f4f+() -engourdissement/S*() -engrais/L'D'Q' -engraissage/S*() -engraissée/F*() -engraissement/S*() -engraisser/a4a+() -engraisseuse/F*() -engramme/S*() -engrangée/F*() -engrangement/S*() -engranger/a2a+() -engravée/F*() -engraver/a2a+() -engrêlée/F*() -engrêlure/S*() -engrenage/S*() -engrenée/F*() -engrener/b4a+() -engreneuse/F*() -engrois/L'D'Q' -engrossée/F*() -engrosser/a2a+() -engrumelée/F*() -engrumeler/d4a+() -engueulade/S*() -engueulée/F*() -engueuler/a4a+() -enguichée/F*() -enguichure/S*() -enguirlandée/F*() -enguirlander/a2a+() -enhardie/F*() -enhardir/f4f+() -enharmonie/S*() -enharmonique/S*() -enharnachée/F*() -enharnacher/a2a+() -enherbée/F*() -enherber/a2a+() -éniellée/F*() -énieller/a2a+() -énième/S*() -énigmatique/S*() -énigmatiquement/D'Q' -énigme/S*() -enivrante/F*() -enivrée/F*() -enivrement/S*() -enivrer/a4a+() -enjambée/F*() -enjambement/S*() -enjamber/a2a+() -enjavelée/F*() -enjaveler/d2a+() -enjeu/X*() -enjoindre/wB() -enjointe/F*() -enjôlée/F*() -enjôlement/S*() -enjôler/a2a+() -enjôleuse/F*() -enjolivée/F*() -enjolivement/S*() -enjoliver/a4a+() -enjoliveur/S*() -enjolivure/S*() -enjoncée/F*() -enjoncer/a2a+() -enjouée/F*() -enjouement/S*() -enjouer/a2a+() -enjuguée/F*() -enjuguer/a2a+() -enjuivée/F*() -enjuiver/a4a+() -enjuponnée/F*() -enjuponner/a2a+() -enképhaline/S*() -enkystée/F*() -enkystement/S*() -enkyster/a3a+() -enlacée/F*() -enlacement/S*() -enlacer/a4a+() -enlaidie/F*() -enlaidir/f4f+() -enlaidissement/S*() -enlevage/S*() -enlevée/F*() -enlèvement/S*() -enlever/b4a+() -enlevure/S*() -enliassée/F*() -enliasser/a2a+() -enliée/F*() -enlier/a2a+() -enlignée/F*() -enligner/a2a+() -enlisée/F*() -enlisement/S*() -enliser/a4a+() -enluminée/F*() -enluminer/a2a+() -enlumineuse/F*() -enluminure/S*() -ennéade/S*() -ennéagonale/W*() -ennéagone/S*() -ennealogie/S*() -enneigée/F*() -enneigement/S*() -enneiger/a2a+() -ennemie/F*() -ennoblie/F*() -ennoblir/f2f+() -ennoblissement/S*() -ennuagée/F*() -ennuager/a4a+() -ennui/S*() -ennuyante/F*() -ennuyée/F*() -ennuyer/a4a+() -ennuyeuse/W*() -ennuyeusement/D'Q' -énoncé/S*() -énoncée/F*() -énoncer/a4a+() -énonciation/S*() -énonciative/F*() -énonciatrice/F*() -enorgueillie/F*() -enorgueillir/f4f+() -énorme/S*() -énormément/D'Q' -énormité/S*() -énostose/S*() -énouée/F*() -énouer/a2a+() -enquérir/iM() -enquerre -enquête/S*() -enquêtée/F*() -enquêter/a1() -enquêteuse/F*() -enquêtrice/S*() -enquiller/a1() -enquiquinante/F*() -enquiquinée/F*() -enquiquinement/S*() -enquiquiner/a4a+() -enquiquineuse/F*() -enracinée/F*() -enracinement/S*() -enraciner/a4a+() -enrageante/F*() -enragée/F*() -enrager/a1() -enraiement/S*() -enraillée/F*() -enrailler/a2a+() -enrayage/S*() -enrayée/F*() -enrayement/S*() -enrayer/a4a+() -enrayoir/S*() -enrayure/S*() -enrégimentée/F*() -enrégimenter/a2a+() -enregistrable/S*() -enregistrée/F*() -enregistrement/S*() -enregistrer/a4a+() -enregistreuse/F*() -enrênée/F*() -enrênement/S*() -enrêner/a2a+() -enrésiner/a2a+() -enrhumée/F*() -enrhumer/a4a+() -enrhuner -enrichie/F*() -enrichir/f4f+() -enrichissante/F*() -enrichissement/S*() -enrobage/S*() -enrobée/F*() -enrobement/S*() -enrober/a4a+() -enrobeuse/S*() -enrochée/F*() -enrochement/S*() -enrocher/a2a+() -enrôlée/F*() -enrôlement/S*() -enrôler/a4a+() -enrôleur/S*() -enrouée/F*() -enrouement/S*() -enrouer/a4a+() -enrouiller/a3a+() -enroulée/F*() -enroulement/S*() -enrouler/a4a+() -enrouleuse/F*() -enrubannage/S*() -enrubannée/F*() -enrubanner/a4a+() -enrubanneuse/S*() -ensablée/F*() -ensablement/S*() -ensabler/a4a+() -ensabotée/F*() -ensaboter/a2a+() -ensachage/S*() -ensachée/F*() -ensacher/a2a+() -ensacheuse/F*() -ensaisinée/F*() -ensaisiner/a2a+() -ensanglantée/F*() -ensanglanter/a2a+() -ensauvagée/F*() -ensauvager/a2a+() -ensauvée/F*() -ensauver/a3a+() -enseignante/F*() -enseigne/S*() -enseignée/F*() -enseignement/S*() -enseigner/a4a+() -enseigniste/S*() -ensemble/D'Q' -ensemble/S*() -ensemblier/S*() -ensembliste/S*() -ensemencée/F*() -ensemencement/S*() -ensemencer/a2a+() -enserrée/F*() -enserrer/a2a+() -ensevelie/F*() -ensevelir/f4f+() -ensevelissement/S*() -ensevelisseuse/F*() -ensiforme/S*() -ensilage/S*() -ensilée/F*() -ensiler/a2a+() -en-soi/L'D'Q' -ensoleillée/F*() -ensoleillement/S*() -ensoleiller/a2a+() -ensommeillée/F*() -ensorcelante/F*() -ensorcelée/F*() -ensorceler/d2a+() -ensorceleuse/F*() -ensorcellement/S*() -ensoufrée/F*() -ensoufrer/a2a+() -ensouple/S*() -ensoutanée/F*() -ensoutaner/a2a+() -enstérée/F*() -enstérer/c2a+() -ensuite/D'Q' -ensuivre/xR() -ensuquer/a2a+() -entablée/F*() -entablement/S*() -entabler/a4a+() -entachée/F*() -entacher/a2a+() -entaillage/S*() -entaille/S*() -entaillée/F*() -entailler/a4a+() -entame/S*() -entamée/F*() -entamer/a2a+() -entaquée/F*() -entaquer/a2a+() -entarter/a2a+() -entartrage/S*() -entartrée/F*() -entartrer/a4a+() -entassée/F*() -entassement/S*() -entasser/a4a+() -entée/F*() -entéléchie/S*() -entendante/F*() -entendement/S*() -entendeur/S*() -entendre/tA() -entendue/F*() -enténébrée/F*() -enténébrer/c4a+() -entente/S*() -enter/a2a+() -entéralgie/S*() -entérinée/F*() -entérinement/S*() -entériner/a2a+() -entérique/S*() -entérite/S*() -entérocolite/S*() -entérocoque/S*() -entérokinase/S*() -entéropneuste/S*() -entéro-rénale/W*() -entérotoxine/S*() -entérovaccin/S*() -enterrage/S*() -enterrée/F*() -enterrement/S*() -enterrer/a4a+() -entêtante/F*() -en-tête/S*() -entêtée/F*() -entêtement/S*() -entêter/a4a+() -enthalpie/S*() -enthousiasmante/F*() -enthousiasme/S*() -enthousiasmée/F*() -enthousiasmer/a4a+() -enthousiaste/S*() -enthymème/S*() -entichée/F*() -entichement/S*() -enticher/a3a+() -entière/F*() -entièrement/D'Q' -entièreté/S*() -entifler/a4a+() -entité/S*() -entoilage/S*() -entoilée/F*() -entoiler/a2a+() -entoir/S*() -entôlage/S*() -entôlée/F*() -entôler/a2a+() -entolome/S*() -entomologie/S*() -entomologique/S*() -entomologiste/S*() -entomophage/S*() -entomophile/S*() -entonnage/S*() -entonnaison/S*() -entonnée/F*() -entonnement/S*() -entonner/a2a+() -entonnoir/S*() -entorse/S*() -entorser/a1() -entortillage/S*() -entortillée/F*() -entortillement/S*() -entortiller/a4a+() -entour/S*() -entourage/S*() -entourée/F*() -entourer/a4a+() -entourloupe/S*() -entourlouper/a2a+() -entourloupette/S*() -entournure/S*() -entraccorder/a8a+() -entraccuser/a8a+() -entracte/S*() -entradmirer/a8a+() -entraide/S*() -entraider/a8a+() -entrailles/D'Q' -entr'aimer/a8a+() -entrain/S*() -entraînable/S*() -entraînante/F*() -entraînée/F*() -entraînement/S*() -entraîner/a4a+() -entraîneuse/F*() -entrante/F*() -entrapercevoir/pK() -entrave/S*() -entravée/F*() -entraver/a2a+() -entre/D'Q'Qj -entrebâillée/F*() -entrebâillement/S*() -entrebâiller/a4a+() -entrebâilleur/S*() -entre-bande/S*() -entrebattre/uD() -entrechat/S*() -entrechoquer/a4a+() -entrecôte/S*() -entrecoupée/F*() -entrecouper/a4a+() -entrecroisée/F*() -entrecroisement/S*() -entrecroiser/a4a+() -entrecuisse/S*() -entre-déchirer/a8a+() -entre-détruire/yN() -entre-deux/L'D'Q' -entre-deux-guerres/L'D' -entre-dévorer/a8a+() -entrée/F*() -entrée/S*() -entrefaite/S*() -entrefaites -entrefer/S*() -entrefilet/S*() -entre-frapper/a8a+() -entregent/S*() -entr'égorger/a8a+() -entre-haïr/fB() -entre-heurter/a8a+() -entrejambe/S*() -entrelacée/F*() -entrelacement/S*() -entrelacer/a4a+() -entrelacs/L'D'Q' -entrelardée/F*() -entrelarder/a2a+() -entre-ligne/S*() -entre-louer/a8a+() -entre-manger/a8a+() -entremêlée/F*() -entremêlement/S*() -entremêler/a4a+() -entremet/S*() -entremetteuse/F*() -entremettre/vC() -entremise/S*() -entre-nerf/S*() -entre-nœud/S*() -entre-nuire/yX() -entrepont/S*() -entreposage/S*() -entreposée/F*() -entreposer/a2a+() -entreposeur/S*() -entrepositaire/S*() -entrepôt/S*() -entreprenante/F*() -entreprendre/tF() -entrepreneure/S*() -entrepreneuriale/W*() -entrepreneuriat/S*() -entrepreneuse/F*() -entreprise/F*() -entreprise/S*() -entrer/a2a+() -entre-rail/S*() -entre-regarder/a8a+() -entresol/S*() -entretaille/S*() -entretailler/a3a+() -entre-temps/D'Q' -entretenir/i1i+() -entretenue/F*() -entretien/S*() -entretissée/F*() -entre-tisser/a4a+() -entretoise/S*() -entretoisée/F*() -entretoiser/a2a+() -entre-tuer/a8a+() -entrevoie/S*() -entrevoir/pF() -entrevous/L'D' -entrevoûtée/F*() -entrevoûter/a2a+() -entrevue/F*() -entrevue/S*() -entr'hiverner -entrisme/S*() -entropie/S*() -entropion/S*() -entropique/S*() -entroque/S*() -entrouverte/F*() -entrouvrir/iC() -entubée/F*() -entuber/a2a+() -enturbannée/F*() -enture/S*() -énucléation/S*() -énucléée/F*() -énucléer/a2a+() -énumérable/S*() -énumération/S*() -énumérative/F*() -énumérée/F*() -énumérer/c2a+() -énurésie/S*() -envahie/F*() -envahir/f2f+() -envahissante/F*() -envahissement/S*() -envahisseur/S*() -envasée/F*() -envasement/S*() -envaser/a4a+() -enveloppante/F*() -enveloppe/S*() -enveloppée/F*() -enveloppement/S*() -envelopper/a4a+() -envenimation/S*() -envenimée/F*() -envenimement/S*() -envenimer/a4a+() -envergée/F*() -enverger/a2a+() -enverguée/F*() -enverguer/a2a+() -envergure/S*() -envers/D'Q' -envers/L' -envi/L' -enviable/S*() -enviander/a2a+() -envidée/F*() -envider/a2a+() -envie/S*() -enviée/F*() -envieillie/F*() -envieillir/f4f+() -envier/a2a+() -envieuse/W*() -envieusement/D'Q' -envinée/F*() -environ/D'Q' -environ/S*() -environnante/F*() -environnée/F*() -environnement/S*() -environnementale/W*() -environnementalement/D'Q' -environnementalisme/S*() -environnementaliste/S*() -environner/a4a+() -envisageable/S*() -envisagée/F*() -envisager/a2a+() -envoi/S*() -envoilée/F*() -envoiler/a3a+() -envol/S*() -envolée/F*() -envoler/a3a+() -envoûtante/F*() -envoûtée/F*() -envoûtement/S*() -envoûter/a2a+() -envoûteuse/F*() -envoyée/F*() -envoyer/aD() -envoyeuse/F*() -enzootie/S*() -enzymatique/S*() -enzyme/S*() -enzymologie/S*() -enzymopathie/S*() -éocène/S*() -éolienne/F*() -éolipyle/S*() -éolithe/S*() -éon/S*() -éosine/S*() -éosinophile/S*() -éosinophilie/S*() -épacte/S*() -épagneule/F*() -épagomène/S*() -épair/S*() -épaisse/F*() -épaisseur/S*() -épaissie/F*() -épaissir/f4f+() -épaississante/F*() -épaississement/S*() -épaississeur/S*() -épalée/F*() -épaler/a2a+() -épamprage/S*() -épamprée/F*() -épamprement/S*() -épamprer/a2a+() -épanchée/F*() -épanchement/S*() -épancher/a4a+() -épandage/S*() -épandeuse/F*() -épandre/tA() -épandue/F*() -épannée/F*() -épannelage/S*() -épannelée/F*() -épanneler/d2a+() -épanner/a2a+() -épanouie/F*() -épanouir/f4f+() -épanouissante/F*() -épanouissement/S*() -épar/S*() -éparchie/S*() -épargnante/F*() -épargne/S*() -épargnée/F*() -épargner/a4a+() -éparpillée/F*() -éparpillement/S*() -éparpiller/a4a+() -éparque/S*() -éparse/F*() -épart/S*() -épatamment/D'Q' -épatante/F*() -épatée/F*() -épatement/S*() -épater/a4a+() -épateuse/F*() -épaufrée/F*() -épaufrer/a2a+() -épaufrure/S*() -épaulard/S*() -épaule/S*() -épaulé/S*() -épaulée/F*() -épaulé-jeté/L'D'Q' -épaulement/S*() -épauler/a4a+() -épaulés-jetés/D'Q' -épaulette/S*() -épaulière/S*() -épave/S*() -épeautre/S*() -épée/S*() -épeiche/S*() -épeichette/S*() -épeire/S*() -épeirogénique/S*() -épéisme/S*() -épéiste/S*() -épelée/F*() -épeler/d4a+() -épellation/S*() -épendyme/S*() -épenthèse/S*() -épenthétique/S*() -épépinage/S*() -épépinée/F*() -épépiner/a2a+() -épépineuse/F*() -éperdre/tD() -éperdue/F*() -éperdument/D'Q' -éperlan/S*() -éperon/S*() -éperonnée/F*() -éperonner/a4a+() -épervier/S*() -épervière/S*() -épervin/S*() -épeulée/F*() -épeuler/a2a+() -épeurée/F*() -épeurer/a2a+() -éphèbe/S*() -éphémère/S*() -éphéméride/S*() -éphéméroptère/S*() -éphod/S*() -éphore/S*() -épi/S*() -épiage/S*() -épiaire/S*() -épiaison/S*() -épicarpe/S*() -épice/S*() -épicéa/S*() -épicée/F*() -épicène/S*() -épicentre/S*() -épicer/a2a+() -épicerie/S*() -épicière/F*() -épiclèse/S*() -épicondyle/S*() -épicrânienne/F*() -épicurienne/F*() -épicurisme/S*() -épicycle/S*() -épicycloïdale/W*() -épicycloïde/S*() -épidémicité/S*() -épidémie/S*() -épidémiologie/S*() -épidémiologique/S*() -épidémique/S*() -épiderme/S*() -épidermique/S*() -épidictique/S*() -épididyme/S*() -épiée/F*() -épier/a4a+() -épierrage/S*() -épierrée/F*() -épierrement/S*() -épierrer/a2a+() -épieu/X*() -épieuse/F*() -épigastre/S*() -épigastrique/S*() -épigée/F*() -épigénie/S*() -épiglotte/S*() -épigone/S*() -épigrammatique/S*() -épigramme/S*() -épigraphe/S*() -épigraphie/S*() -épigraphique/S*() -épigraphiste/S*() -épigyne/S*() -épilaryngienne/F*() -épilation/S*() -épilatoire/S*() -épilatrice/F*() -épilée/F*() -épilepsie/S*() -épileptiforme/S*() -épileptique/S*() -épiler/a4a+() -épillet/S*() -épilobe/S*() -épilogue/S*() -épiloguée/F*() -épiloguer/a4a+() -épilogueuse/F*() -épimorphisme/S*() -épinard/S*() -épincée/F*() -épincelée/F*() -épinceler/d2a+() -épincer/a2a+() -épincetée/F*() -épinceter/d2a+() -épine/S*() -épinée/F*() -épiner/a2a+() -épines-vinettes/D'Q' -épinette/S*() -épineuse/W*() -épine-vinette/L'D'Q' -épinglage/S*() -épingle/S*() -épinglée/F*() -épingler/a2a+() -épinglette/S*() -épinglière/F*() -épinier/S*() -épinière/S*() -épinoche/S*() -épinochette/S*() -épiphane/S*() -épiphanie/S*() -épiphénomène/S*() -épiphénoménisme/S*() -épiphénoméniste/S*() -épiphyse/S*() -épiphyte/S*() -épiphytie/S*() -épiploon/S*() -épique/S*() -épirogénique/S*() -épiscopale/W*() -épiscopalienne/F*() -épiscopat/S*() -épiscope/S*() -épisode/S*() -épisodique/S*() -épisodiquement/D'Q' -épissée/F*() -épisser/a2a+() -épissoir/S*() -épissure/S*() -épistasie/S*() -épistaxis/L'D'Q' -épistémique/S*() -épistémologie/S*() -épistémologique/S*() -épistémologiste/S*() -épistémologue/S*() -épistolaire/S*() -épistolière/F*() -épistyle/S*() -épitaphe/S*() -épitaxie/S*() -épite/S*() -épithalame/S*() -épithéliale/W*() -épithélium/S*() -épithème/S*() -épithète/S*() -épitoge/S*() -épitomé/S*() -épître/S*() -épivarder/a3a+() -épizootie/S*() -épizootique/S*() -éplorée/F*() -éployée/F*() -éployer/a4a+() -épluchage/S*() -épluchée/F*() -épluche-légumes/L'D'Q' -éplucher/a2a+() -éplucheuse/F*() -épluchure/S*() -épode/S*() -épointage/S*() -épointée/F*() -épointement/S*() -épointer/a2a+() -éponge/S*() -épongeage/S*() -épongée/F*() -épongement/S*() -éponger/a4a+() -éponte/S*() -épontille/S*() -épontiller/a2a+() -éponyme/S*() -éponymie/S*() -épopée/S*() -époque/S*() -épouillage/S*() -épouillée/F*() -épouiller/a4a+() -époumoner/a3a+() -épousailles/D'Q' -épouse/S*() -épousée/F*() -épouser/a4a+() -épouseur/S*() -époussetage/S*() -époussetée/F*() -épousseter/d2a+() -époustouflante/F*() -époustouflée/F*() -époustoufler/a2a+() -époutier/a2a+() -époutir/f2f+() -épouvantable/S*() -épouvantablement/D'Q' -épouvantail/S*() -épouvante/S*() -épouvantée/F*() -épouvantement/S*() -épouvanter/a4a+() -époux/L'D'Q' -époxyde/S*() -épreindre -épreinte/S*() -éprendre/tG() -épreuve/S*() -éprise/F*() -éprouvante/F*() -éprouvée/F*() -éprouver/a4a+() -éprouvette/S*() -epsilon/L'D'Q' -epsomite/S*() -épucer/a4a+() -épuisable/S*() -épuisante/F*() -épuisée/F*() -épuisement/S*() -épuiser/a4a+() -épuisette/S*() -épulide/S*() -épulie/S*() -épulis/L'D'Q' -épulon/S*() -épulpeur/S*() -épuration/S*() -épurative/F*() -épuratoire/S*() -épuratrice/F*() -épure/S*() -épurée/F*() -épurement/S*() -épurer/a4a+() -épurge/S*() -équanime/S*() -équanimité/S*() -équarrie/F*() -équarrier -équarrir/f2f+() -équarrissage/S*() -équarrissement/S*() -équarrisseuse/F*() -équarrissoir/S*() -équateur/S*() -équation/S*() -équato-guinéenne/F*() -équatorial/X*() -équatoriale/W*() -équatorienne/F*() -équerrage/S*() -équerre/S*() -équerrer/a2a+() -équestre/S*() -équeutage/S*() -équeutée/F*() -équeuter/a2a+() -équiangle/S*() -équidé/S*() -équidimensionnelle/F*() -équidistance/S*() -équidistante/F*() -équilatérale/W*() -équilatère/S*() -équilibrage/S*() -équilibrante/F*() -équilibration/S*() -équilibre/S*() -équilibrée/F*() -équilibrer/a4a+() -équilibriste/S*() -équille/S*() -équimoléculaire/S*() -équimultiple/S*() -équimultiplicité/S*() -équine/F*() -équinisme/S*() -équinoxe/S*() -équinoxiale/W*() -équipage/S*() -équipartition/S*() -équipe/S*() -équipée/F*() -équipement/S*() -équipementière/F*() -équiper/a4a+() -équipière/F*() -équipolé/S*() -équipollé/S*() -équipollence/S*() -équipollente/F*() -équipotent/S*() -équipotentialité/S* -équipotentielle/F*() -équiprobabilité/S*() -équiprobable/S*() -équisingularité/S*() -équisingulière/F*() -équitable/S*() -équitablement/D'Q' -équitante/F*() -équitation/S*() -équité/S*() -équivalence/S*() -équivalent/S*() -équivalente/F*() -équivaloir/pN() -équivariance/S*() -équivariante/F*() -équivoque/S*() -équivoquer/a1() -érable/S*() -érablière/S*() -éradication/S*() -éradicatrice/F*() -éradiquée/F*() -éradiquer/a2a+() -éraflée/F*() -éraflement/S*() -érafler/a4a+() -éraflure/S*() -éraillée/F*() -éraillement/S*() -érailler/a4a+() -éraillure/S*() -érathème/S*() -érayée/F*() -érayer/a2a+() -erbine/S*() -erbium/S*() -ère/S*() -érectile/S*() -érectilité/S*() -érection/S*() -érectrice/F*() -éreintage/S*() -éreintante/F*() -éreintée/F*() -éreintement/S*() -éreinter/a4a+() -éreinteuse/F*() -érémitique/S*() -érémitisme/S*() -érepsine/S*() -érésipèle/S*() -éréthisme/S*() -erg/S*() -erg/||-- -ergastule/S*() -ergodicité/S*() -ergodique/S*() -ergographe/S*() -ergol/S*() -ergologie/S*() -ergonome/S*() -ergonomie/S*() -ergonomique/S*() -ergonomiste/S*() -ergostérol/S*() -ergot/S*() -ergotage/S*() -ergotée/F*() -ergoter/a1() -ergoteuse/F*() -ergothérapeute/S*() -ergothérapie/S*() -ergotine/S*() -ergotisme/S*() -éricacée/S*() -érigée/F*() -ériger/a4a+() -érigéron/S*() -érigne/S*() -érine/S*() -érinye/S*() -éristale/S*() -éristique/S*() -erlenmeyer/S*() -ermitage/S*() -ermite/S*() -érodée/F*() -éroder/a4a+() -érogène/S*() -éros/L'D'Q' -érosion/S*() -érosive/F*() -érotique/S*() -érotiquement/D'Q' -érotisation/S*() -érotisée/F*() -érotiser/a2a+() -érotisme/S*() -érotomane/S*() -érotomaniaque/S*() -érotomanie/S*() -errance/S*() -errante/F*() -errata/L'D'Q' -erratique/S*() -erratum/L'D'Q' -errements/D'Q' -errer/a1() -erreur/S*() -erronée/F*() -erronément/D'Q' -ers/L'D'Q' -ersatz/L'D'Q' -erse/S*() -erseau/X*() -érubescence/S*() -érubescente/F*() -éruciforme/S*() -éructation/S*() -éructée/F*() -éructer/a2a+() -érudite/F*() -érudition/S*() -érugineuse/W*() -éruption/S*() -éruptive/F*() -érysipélateuse/W*() -érysipèle/S*() -érythémateuse/W*() -érythème/S*() -érythréenne/F*() -érythrine/S*() -érythroblaste/S*() -érythroblastose/S*() -érythrocyte/S*() -érythromycine/S*() -érythropoïèse/S*() -érythropoïétine/S*() -érythrosine/S*() -ès -es/zI() -esbaudir/f3f+() -esbignée/F*() -esbigner/a3a+() -esbroufe/S*() -esbroufer/a2a+() -esbroufeuse/F*() -escabeau/X*() -escabelle/S*() -escadre/S*() -escadrille/S*() -escadron/S*() -escalade/S*() -escaladée/F*() -escalader/a2a+() -escaladeuse/F*() -escalator/S*() -escale/S*() -escalier/S*() -escaliéteuse/F*() -escalope/S*() -escamotable/S*() -escamotage/S*() -escamotée/F*() -escamoter/a4a+() -escamoteuse/F*() -escampette/S*() -escapade/S*() -escape/S*() -escarbille/S*() -escarbot/S*() -escarboucle/S*() -escarcelle/S*() -escargot/S*() -escargotière/S*() -escarmouche/S*() -escarmoucher/a1() -escarole/S*() -escarpe/S*() -escarpée/F*() -escarpement/S*() -escarper/a2a+() -escarpin/S*() -escarpolette/S*() -escarre/S*() -escarrifiée/F*() -escarrifier/a2a+() -escharifier -eschatologie/S*() -eschatologique/S*() -esche/S*() -eschée/F*() -escher/a2a+() -escient/S*() -esclaffer/a3a+() -esclandre/S*() -esclavage/S*() -esclavager/a2a+() -esclavagisme/S*() -esclavagiste/S*() -esclave/S*() -esclavonne/F*() -escobar/S*() -escobarderie/S*() -escoffier/a2a+() -escogriffe/S*() -escomptable/S*() -escompte/S*() -escomptée/F*() -escompter/a2a+() -escompteur/S*() -escopette/S*() -escorte/S*() -escortée/F*() -escorter/a2a+() -escorteur/S*() -escot/S*() -escouade/S*() -escourgeon/S*() -escrime/S*() -escrimer/a3a+() -escrimeuse/F*() -escroc/S*() -escroquée/F*() -escroquer/a2a+() -escroquerie/S*() -escudo/S*() -esculape/S*() -esculine/S*() -ésérine/S*() -esgourde/S*() -esgourder/a2a+() -ésotérique/S*() -ésotérisme/S*() -espace/S*() -espacée/F*() -espacement/S*() -espacer/a4a+() -espaces-temps/D'Q' -espace-temps/L'D'Q' -espada/S*() -espadon/S*() -espadrille/S*() -espagnole/F*() -espagnolette/S*() -espagnolisme/S*() -espalier/S*() -espar/S*() -esparcet/S*() -esparcette/S*() -espèce/S*() -espérance/S*() -espérantiste/S*() -espéranto/S*() -espérée/F*() -espérer/c2a+() -esperluette/S*() -espiègle/S*() -espièglerie/S*() -espingole/S*() -espionnage/S*() -espionne/F*() -espionnée/F*() -espionner/a2a+() -espionnite/S*() -esplanade/S*() -espoir/S*() -espolinée/F*() -espoliner/a2a+() -esponton/S*() -espoulinée/F*() -espouliner/a2a+() -espressivo/D'Q' -esprit/S*() -esprit-de-bois/L'D' -esprit-de-sel/L'D' -esprit-de-vin/L'D' -esquichée/F*() -esquicher/a1() -esquif/S*() -esquille/S*() -esquimau/X*() -esquimaude/S*() -esquimautage/S*() -esquintante/F*() -esquintée/F*() -esquinter/a4a+() -esquire/S*() -esquisse/S*() -esquissée/F*() -esquisser/a4a+() -esquive/S*() -esquivée/F*() -esquiver/a4a+() -essai/S*() -essaim/S*() -essaimage/S*() -essaimée/F*() -essaimer/a2a+() -essangeage/S*() -essangée/F*() -essanger/a2a+() -essanvage/S*() -essart/S*() -essartage/S*() -essartée/F*() -essartement/S*() -essarter/a2a+() -essayage/S*() -essayée/F*() -essayer/a4a+() -essayeuse/F*() -essayiste/S*() -esse/S*() -essence/S*() -essencerie/S*() -essencière/F*() -essénienne/F*() -essentialisme/S*() -essentielle/F*() -essentiellement/D'Q' -esseulée/F*() -essieu/X*() -essor/S*() -essorage/S*() -essorée/F*() -essorer/a4a+() -essoreuse/F*() -essorillée/F*() -essoriller/a2a+() -essouchage/S*() -essouchée/F*() -essouchement/S*() -essoucher/a2a+() -essoufflée/F*() -essoufflement/S*() -essouffler/a4a+() -essuie/S*() -essuie-glace/S*() -essuie-mains/L'D'Q' -essuie-meubles/L'D'Q' -essuie-phare/S*() -essuie-pieds/L'D'Q' -essuie-plume/S*() -essuie-tout/L'D'Q' -essuie-verre/S*() -essuyage/S*() -essuyée/F*() -essuyer/a4a+() -essuyeuse/F*() -est/L'D'Q' -establishment/S*() -estacade/S*() -estafette/S*() -estafier/S*() -estafilade/S*() -estagnon/S*() -est-allemande/F*() -estaminet/S*() -estampage/S*() -estampe/S*() -estampée/F*() -estamper/a2a+() -estampeuse/F*() -estampillage/S*() -estampille/S*() -estampillée/F*() -estampiller/a2a+() -estancia/S*() -estarie/S*() -este/S*() -ester -ester/S*() -estérification/S*() -estérifiée/F*() -estérifier/a2a+() -esterlin/S*() -esthésie/S*() -esthésiogène/S*() -esthésiologie/S*() -esthète/S*() -esthéticienne/F*() -esthétique/S*() -esthétiquement/D'Q' -esthétisante/F*() -esthétisée/F*() -esthétiser/a2a+() -esthétisme/S*() -estimable/S*() -estimation/S*() -estimative/F*() -estimatoire/S*() -estimatrice/F*() -estime/S*() -estimée/F*() -estimer/a4a+() -estivage/S*() -estivale/W*() -estivante/F*() -estivation/S*() -estivée/F*() -estiver/a2a+() -estoc/S*() -estocade/S*() -estomac/S*() -estomaquée/F*() -estomaquer/a2a+() -estompage/S*() -estompée/F*() -estomper/a4a+() -estonienne/F*() -estoquée/F*() -estoquer/a2a+() -estouffade/S*() -estourbie/F*() -estourbir/f2f+() -estrade/S*() -estradiène/S*() -estradiol/S*() -estradiot/S*() -estragon/S*() -estran/S*() -estrapade/S*() -estrapadée/F*() -estrapader/a2a+() -estrapassée/F*() -estrapasser/a2a+() -estriol/S*() -estrogène/S*() -estrogénique/S*() -estrogénothérapie/S*() -estrone/S*() -estrope/S*() -estropiée/F*() -estropier/a4a+() -estroprogestative/F*() -estuaire/S*() -estuarienne/F*() -estudiantine/F*() -esturgeon/S*() -eszett/S*() -et -êta/L'D'Q' -étable/S*() -établée/F*() -établer/a2a+() -établi/S*() -établie/F*() -établir/f4f+() -établissement/S*() -étage/S*() -étagée/F*() -étagement/S*() -étager/a4a+() -étagère/S*() -étai/S*() -étaiement/S*() -étain/S*() -étais/zG() -étal/S*() -étalage/S*() -étalagée/F*() -étalager/a2a+() -étalagiste/S*() -étalée/F*() -étalement/S*() -étaler/a4a+() -étaleuse/S*() -étalière/F*() -étalinguée/F*() -étalinguer/a2a+() -étalingure/S*() -étalon/S*() -étalonnage/S*() -étalonnée/F*() -étalonnement/S*() -étalonner/a2a+() -étalonneuse/F*() -étalonnière/F*() -étamage/S*() -étambot/S*() -étambrai/S*() -étamée/F*() -étamer/a2a+() -étameuse/F*() -étamine/S*() -étampage/S*() -étampe/S*() -étampée/F*() -étamper/a2a+() -étamperche/S*() -étampeur/S*() -étampure/S*() -étamure/S*() -étanche/S*() -étanchée/F*() -étanchéiste/S*() -étanchéité/S*() -étanchement/S*() -étancher/a2a+() -étancheuse/F*() -étançon/S*() -étançonnée/F*() -étançonner/a2a+() -étang/S*() -étape/S*() -étarquée/F*() -étarquer/a2a+() -étasunienne/F*() -état/S*() -étatique/S*() -étatisation/S*() -étatisée/F*() -étatiser/a2a+() -étatisme/S*() -étatiste/S*() -état-major/L'D'Q' -états-majors/D'Q' -états-unienne/F*() -étau/X*() -étayage/S*() -étayée/F*() -étayement/S*() -étayer/a4a+() -etc -été/S*() -éteignoir/S*() -éteindre/wB() -éteinte/F*() -étendage/S*() -étendard/S*() -étendoir/S*() -étendre/tA() -étendue/F*() -éternelle/F*() -éternellement/D'Q' -éternisée/F*() -éterniser/a4a+() -éternité/S*() -éternuement/S*() -éternuer/a1() -étésien/S*() -étêtage/S*() -étêtée/F*() -étêtement/S*() -étêter/a2a+() -éteuf/S*() -éteule/S*() -eth -éthane/S*() -éthanol/S*() -éther/S*() -éthérée/F*() -éthérification/S*() -éthérifiée/F*() -éthérifier/a2a+() -éthérisation/S*() -éthérisée/F*() -éthériser/a2a+() -éthérisme/S*() -éthéromane/S*() -éthéromanie/S*() -éthiopienne/F*() -éthique/S*() -ethniciser/a2a+() -ethnie/S*() -ethnique/S*() -ethniquement/D'Q' -ethnocentrique/S*() -ethnocentrisme/S*() -ethnocide/S*() -ethnogenèse/S*() -ethnographe/S*() -ethnographie/S*() -ethnographique/S*() -ethnolinguistique/S*() -ethnologie/S*() -ethnologique/S*() -ethnologiquement/D'Q' -ethnologue/S*() -ethnométhodologie/S*() -ethnonyme/S*() -ethnonymie/S*() -ethnopsychiatrie/S*() -éthographie/S*() -éthologie/S*() -éthologique/S*() -éthologiste/S*() -éthologue/S*() -éthuse/S*() -éthyle/S*() -éthylène/S*() -éthylénique/S*() -éthylique/S*() -éthylisme/S*() -éthylomètre/S*() -éthylotest/S*() -étiage/S*() -étier/S*() -étincelage/S*() -étincelante/F*() -étinceler/d1() -étincelle/S*() -étincellement/S*() -étiolée/F*() -étiolement/S*() -étioler/a4a+() -étiologie/S*() -étiologique/S*() -étique/S*() -étiquetage/S*() -étiquetée/F*() -étiqueter/d2a+() -étiqueteuse/F*() -étiquette/S*() -étirable/S*() -étirage/S*() -étirée/F*() -étirement/S*() -étirer/a4a+() -étireuse/F*() -étisie/S*() -étoc/S*() -étoffe/S*() -étoffée/F*() -étoffement/S*() -étoffer/a4a+() -étoile/S*() -étoilée/F*() -étoilement/S*() -étoiler/a4a+() -étole/S*() -étonnamment/D'Q' -étonnante/F*() -étonnée/F*() -étonnement/S*() -étonner/a4a+() -étouffade/S*() -étouffage/S*() -étouffante/F*() -étouffe-chrétien/L'D'Q' -étouffée/F*() -étouffement/S*() -étouffer/a4a+() -étouffeur/S*() -étouffoir/S*() -étoupe/S*() -étoupée/F*() -étouper/a2a+() -étoupiller/a2a+() -étourderie/S*() -étourdie/F*() -étourdiment/D'Q' -étourdir/f4f+() -étourdissante/F*() -étourdissement/S*() -étourneau/X*() -étrange/S*() -étrangement/D'Q' -étrangère/F*() -étrangeté/S*() -étranglée/F*() -étranglement/S*() -étrangler/a4a+() -étrangleuse/F*() -étrangloir/S*() -étrave/S*() -être/S*() -être/zE() -étrécie/F*() -étrécir/f4f+() -étrécissement/S*() -étreindre/wB() -étreinte/F*() -étreinte/S*() -étrenne/S*() -étrennée/F*() -étrenner/a2a+() -étrésillon/S*() -étrésillonnée/F*() -étrésillonnement/S*() -étrésillonner/a2a+() -étrier/S*() -étrille/S*() -étrillée/F*() -étriller/a2a+() -étripage/S*() -étripailler/a2a+() -étripée/F*() -étriper/a4a+() -étriquée/F*() -étriquer/a2a+() -étrive/S*() -étrivière/S*() -étroite/F*() -étroitement/D'Q' -étroitesse/S*() -étron/S*() -étronçonnée/F*() -étronçonner/a2a+() -étruscologie/S*() -étruscologue/S*() -étrusque/S*() -étude/S*() -étudiante/F*() -étudiée/F*() -étudier/a4a+() -étui/S*() -étuvage/S*() -étuve/S*() -étuvée/S*() -étuver/a2a+() -étuveuse/F*() -étym -étymologie/S*() -étymologique/S*() -étymologiquement/D'Q' -étymologiste/S*() -étymon/S*() -eubactérie/S*() -eucalyptol/S*() -eucalyptus/L'D'Q' -eucaryote/S*() -eucharistie/S*() -eucharistique/S*() -euclidienne/F*() -eucologe/S*() -eudémis/L'D'Q' -eudémonisme/S*() -eudiomètre/S*() -eudiométrie/S*() -eudiométrique/S*() -eudiste/S*() -eugénate/S*() -eugénie/S*() -eugénique/S*() -eugénisme/S*() -eugéniste/S*() -eugénol/S*() -euglène/S*() -euh -eulérienne/F*() -eulogie/S*() -eumélanine/S*() -euménide/S*() -eunecte/S*() -eunuque/S*() -eupatoire/S*() -eupeptique/S*() -euphémique/S*() -euphémiquement/D'Q' -euphémisme/S*() -euphonie/S*() -euphonique/S*() -euphoniquement/D'Q' -euphorbe/S*() -euphorbiacée/S*() -euphorie/S*() -euphorique/S*() -euphorisante/F*() -euphorisée/F*() -euphoriser/a2a+() -euphuisme/S*() -eurafricaine/F*() -eurasiatique/S*() -eurasienne/F*() -eurêka -euro/S*() -eurocentrisme/S*() -eurocentriste/S*() -eurocommunisme/S*() -eurocommuniste/S*() -eurocrate/S*() -eurodéputée/F*() -eurodevise/S*() -eurodollar/S*() -euromarché/S*() -euromissile/S*() -euro-obligataire/S*() -euro-obligation/S*() -européanisation/S*() -européanisée/F*() -européaniser/a4a+() -européanisme/S*() -européenne/F*() -européisme/S*() -europium/S*() -europoïde/S*() -euroscepticisme/S*() -eurosceptique/S*() -eurovision/S*() -eurytherme/S*() -eurythermie/S*() -eurythmie/S*() -eurythmique/S*() -eus/zB() -euscarienne/F*() -euskarienne/F*() -eustache/S*() -eustatique/S*() -eustatisme/S*() -eutectique/S*() -eutexie/S*() -euthanasie/S*() -euthanasiée/F*() -euthanasier/a2a+() -eutrophisation/S*() -eux/D'Q' -eux-mêmes/D'Q' -évacuante/F*() -évacuation/S*() -évacuatrice/F*() -évacuée/F*() -évacuer/a4a+() -évadée/F*() -évader/a3a+() -évagination/S*() -évaginée/F*() -évaluable/S*() -évaluation/S*() -évaluative/F*() -évaluatrice/F*() -évaluée/F*() -évaluer/a4a+() -évanescence/S*() -évanescente/F*() -évangéliaire/S*() -évangélique/S*() -évangéliquement/D'Q' -évangélisation/S*() -évangélisatrice/F*() -évangélisée/F*() -évangéliser/a2a+() -évangélisme/S*() -évangéliste/S*() -évangile/S*() -évanouie/F*() -évanouir/f3f+() -évanouissement/S*() -évaporable/S*() -évaporateur/S*() -évaporation/S*() -évaporatoire/S*() -évaporée/F*() -évaporer/a4a+() -évasée/F*() -évasement/S*() -évaser/a4a+() -évasion/S*() -évasive/F*() -évasivement/D'Q' -évasure/S*() -évêché/S*() -évection/S*() -éveil/S*() -éveillée/F*() -éveiller/a4a+() -éveilleur/S*() -événement/S*() -événementiel/S*() -événementielle/F*() -évent/S*() -éventail/S*() -éventaire/S*() -éventée/F*() -éventement/S*() -éventer/a4a+() -éventration/S*() -éventrée/F*() -éventrement/S*() -éventrer/a4a+() -éventreur/S*() -éventualité/S*() -éventuelle/F*() -éventuellement/D'Q' -évêque/S*() -évergète/S*() -évergétisme/S*() -évertuer/a3a+() -évhémérisme/S*() -éviction/S*() -évidage/S*() -évidée/F*() -évidement/S*() -évidemment/D'Q' -évidence/S*() -évidente/F*() -évider/a2a+() -évier/S*() -évincée/F*() -évincement/S*() -évincer/a2a+() -éviscérée/F*() -éviscérer/c2a+() -évitable/S*() -évitage/S*() -évitée/F*() -évitement/S*() -éviter/a4a+() -évocable/S*() -évocation/S*() -évocatoire/S*() -évocatrice/F*() -évohé -évoluée/F*() -évoluer/a1a+() -évolution/S*() -évolutionnaire/S*() -évolutionnisme/S*() -évolutionniste/S*() -évolutive/F*() -évolutivité/S*() -évoquée/F*() -évoquer/a2a+() -évulsion/S*() -evzone/S*() -ex/L'D'Q' -exabit/S*() -exacerbation/S*() -exacerbée/F*() -exacerber/a4a+() -exacte/F*() -exactement/D'Q' -exaction/S*() -exactitude/S*() -exagération/S*() -exagératrice/F*() -exagérée/F*() -exagérément/D'Q' -exagérer/c4a+() -exaltante/F*() -exaltation/S*() -exaltée/F*() -exalter/a4a+() -examen/S*() -examinatrice/F*() -examinée/F*() -examiner/a4a+() -exanthémateuse/W*() -exanthématique/S*() -exanthème/S*() -exaoctet/S*() -exarchat/S*() -exarque/S*() -exaspérante/F*() -exaspération/S*() -exaspérée/F*() -exaspérer/c4a+() -exaucée/F*() -exaucement/S*() -exaucer/a4a+() -exbibit/S*() -exbioctet/S*() -excavation/S*() -excavatrice/F*() -excavée/F*() -excaver/a2a+() -excédante/F*() -excédée/F*() -excédent/S*() -excédentaire/S*() -excéder/c2a+() -excellemment/D'Q' -excellence/S*() -excellente/F*() -excellentissime/S*() -exceller/a1() -excentration/S*() -excentrée/F*() -excentrer/a2a+() -excentricité/S*() -excentrique/S*() -excentriquement/D'Q' -exceptée/F*() -excepter/a2a+() -exception/S*() -exceptionnelle/F*() -exceptionnellement/D'Q' -excès/L'D'Q' -excessive/F*() -excessivement/D'Q' -excipée/F*() -exciper/a5() -excipient/S*() -excisée/F*() -exciser/a2a+() -exciseuse/F*() -excision/S*() -excitabilité/S*() -excitable/S*() -excitante/F*() -excitation/S*() -excitatrice/F*() -excitée/F*() -exciter/a4a+() -excitomotrice/F*() -exciton/S*() -exclamation/S*() -exclamative/F*() -exclamée/F*() -exclamer/a3a+() -exclue/F*() -exclure/xL() -exclusion/S*() -exclusive/F*() -exclusivement/D'Q' -exclusivisme/S*() -exclusivité/S*() -excommunication/S*() -excommuniée/F*() -excommunier/a2a+() -excoriation/S*() -excoriée/F*() -excorier/a2a+() -excracher -excrément/S*() -excrémenteuse/W*() -excrémentielle/F*() -excrétée/F*() -excréter/c2a+() -excrétion/S*() -excrétoire/S*() -excrétrice/F*() -excroissance/S*() -excursion/S*() -excursionner/a1() -excursionniste/S*() -excusable/S*() -excuse/S*() -excusée/F*() -excuser/a4a+() -exeat/L'D'Q' -exécrable/S*() -exécrablement/D'Q' -exécration/S*() -exécrée/F*() -exécrer/c2a+() -exécutable/S*() -exécutante/F*() -exécutée/F*() -exécuter/a4a+() -exécution/S*() -exécutive/F*() -exécutoire/S*() -exécutrice/F*() -exèdre/S*() -exégèse/S*() -exégète/S*() -exégétique/S*() -exemplaire/S*() -exemplairement/D'Q' -exemplarité/S*() -exemple/S*() -exemplification/S*() -exemplifiée/F*() -exemplifier/a2a+() -exempte/F*() -exemptée/F*() -exempter/a4a+() -exemption/S*() -exequatur/L'D'Q' -exerçante/F*() -exercée/F*() -exercer/a4a+() -exercice/S*() -exerciseur/S*() -exérèse/S*() -exergue/S*() -exfiltration/S*() -exfiltrée/F*() -exfiltrer/a2a+() -exfoliante/F*() -exfoliation/S*() -exfoliée/F*() -exfolier/a4a+() -exhalaison/S*() -exhalation/S*() -exhalée/F*() -exhaler/a4a+() -exhaure/S*() -exhaussée/F*() -exhaussement/S*() -exhausser/a2a+() -exhausteur/S*() -exhaustion/S*() -exhaustive/F*() -exhaustivement/D'Q' -exhaustivité/S*() -exhérédation/S*() -exhérédée/F*() -exhéréder/c2a+() -exhibée/F*() -exhiber/a4a+() -exhibition/S*() -exhibitionnisme/S*() -exhibitionniste/S*() -exhortation/S*() -exhortée/F*() -exhorter/a4a+() -exhumation/S*() -exhumée/F*() -exhumer/a2a+() -exigeante/F*() -exigée/F*() -exigence/S*() -exiger/a2a+() -exigibilité/S*() -exigible/S*() -exiguë/F*() -exiguïté/S*() -exil/S*() -exilée/F*() -exiler/a4a+() -exinscrite/F*() -existante/F*() -existence/S*() -existentialisme/S*() -existentialiste/S*() -existentielle/F*() -exister/a1() -exit/L'D'Q' -ex-libris/L'D'Q' -exobiologie/S*() -exocet/S*() -exocrine/S*() -exode/S*() -exogame/S*() -exogamie/S*() -exogamique/S*() -exogène/S*() -exomphale/S*() -exon/S*() -exondation/S*() -exondée/F*() -exonder/a3a+() -exonération/S*() -exonérée/F*() -exonérer/c4a+() -exonyme/S*() -exonymie/S*() -exophtalmie/S*() -exophtalmique/S*() -exoplanète/S*() -exorable/S*() -exorbitante/F*() -exorbitée/F*() -exorcisation/S*() -exorcisée/F*() -exorciser/a2a+() -exorciseuse/F*() -exorcisme/S*() -exorciste/S*() -exorde/S*() -exoréique/S*() -exoréisme/S*() -exosmose/S*() -exosphère/S*() -exosphérique/S*() -exosquelette/S*() -exostose/S*() -exotérique/S*() -exotérisme/S*() -exoterre/S*() -exothermique/S*() -exotique/S*() -exotiquement/D'Q' -exotisme/S*() -exotoxine/S*() -expactative/F*() -expansée/F*() -expansibilité/S*() -expansible/S*() -expansion/S*() -expansionnisme/S*() -expansionniste/S*() -expansive/F*() -expansivité/S*() -expatriation/S*() -expatriée/F*() -expatrier/a4a+() -expectative/S*() -expectorante/F*() -expectoration/S*() -expectorée/F*() -expectorer/a2a+() -expédiée/F*() -expédient/S*() -expédier/a2a+() -expédition/S*() -expéditionnaire/S*() -expéditive/F*() -expéditivement/D'Q' -expéditrice/F*() -expérience/S*() -expérimentale/W*() -expérimentalement/D'Q' -expérimentation/S*() -expérimentatrice/F*() -expérimentée/F*() -expérimenter/a2a+() -expert-comptable/L'D'Q' -experte/F*() -expertement/D'Q' -expertise/S*() -expertisée/F*() -expertiser/a2a+() -experts-comptables/D'Q' -expiable/S*() -expiation/S*() -expiatoire/S*() -expiée/F*() -expier/a4a+() -expirante/F*() -expiration/S*() -expiratoire/S*() -expirée/F*() -expirer/a2a+() -explétive/F*() -explicable/S*() -explication/S*() -explicative/F*() -explicitation/S*() -explicitée/F*() -explicitement/D'Q' -expliciter/a2a+() -expliquée/F*() -expliquer/a4a+() -exploit/S*() -exploitabilité/S*() -exploitable/S*() -exploitante/F*() -exploitation/S*() -exploitée/F*() -exploiter/a2a+() -exploiteuse/F*() -exploration/S*() -exploratoire/S*() -exploratrice/F*() -explorée/F*() -explorer/a2a+() -explosée/F*() -exploser/a1() -exploseur/S*() -explosible/S*() -explosif/S*() -explosion/S*() -explosive/F*() -expo/S*() -exponentiation/S*() -exponentielle/F*() -exponentiellement/D'Q' -export/S*() -exportable/S*() -exportation/S*() -exportatrice/F*() -exportée/F*() -exporter/a4a+() -exposante/F*() -exposé/S*() -exposée/F*() -exposer/a4a+() -exposition/S*() -exprès/D'Q' -exprès/L'D'Q' -express/L'D'Q' -expresse/S*() -expressément/D'Q' -expression/S*() -expressionnisme/S*() -expressionniste/S*() -expressive/F*() -expressivement/D'Q' -expressivité/S*() -exprimable/S*() -exprimée/F*() -exprimer/a4a+() -expromission/S*() -expropriante/F*() -expropriation/S*() -expropriée/F*() -exproprier/a2a+() -expulsée/F*() -expulser/a4a+() -expulsion/S*() -expurgation/S*() -expurgatoire/S*() -expurgée/F*() -expurger/a2a+() -exquise/F*() -exquisément/D'Q' -exsangue/S*() -exstrophie/S*() -exsudat/S*() -exsudation/S*() -exsudée/F*() -exsuder/a2a+() -extase/S*() -extasiée/F*() -extasier/a3a+() -extatique/S*() -extatiquement/D'Q' -extemporanée/F*() -extemporanément/D'Q' -extenseur/S*() -extensibilité/S*() -extensible/S*() -extension/S*() -extensionnalité/L'D'Q' -extensive/F*() -extenso -extensomètre/S*() -exténuante/F*() -exténuation/S*() -exténuée/F*() -exténuer/a4a+() -extérieur/S*() -extérieure/F*() -extérieurement/D'Q' -extériorisation/S*() -extériorisée/F*() -extérioriser/a4a+() -extériorité/S*() -extermination/S*() -exterminatrice/F*() -exterminée/F*() -exterminer/a2a+() -externalisation/S*() -externalisée/F*() -externaliser/a2a+() -externalité/S*() -externat/S*() -externe/S*() -externer/a2a+() -extéroceptive/F*() -exterritorialité/S*() -extinction/S*() -extinctrice/F*() -extinguible/S*() -extirpable/S*() -extirpateur/S*() -extirpation/S*() -extirpée/F*() -extirper/a4a+() -extorquée/F*() -extorquer/a2a+() -extorqueuse/F*() -extorsion/S*() -extourner/a2a+() -extra/L'D'Q' -extra-atmosphérique/S*() -extraconjugale/W*() -extracourant/S*() -extractible/S*() -extraction/S*() -extractive/F*() -extractrice/F*() -extradée/F*() -extrader/a2a+() -extradition/S*() -extrados/L'D'Q' -extra-dry/L'D'Q' -extrafine/F*() -extraforte/F*() -extragalactique/S*() -extraire/wL() -extrait/S*() -extraite/F*() -extrajudiciaire/S*() -extralégale/W*() -extralinguistique/S*() -extralucide/S*() -extra-muros/D'Q' -extra-muros/L'D'Q' -extranéité/S*() -extranet/S*() -extraordinaire/S*() -extraordinairement/D'Q' -extraparlementaire/S*() -extrapolation/S*() -extrapolée/F*() -extrapoler/a2a+() -extrascolaire/S*() -extrasensible/S*() -extrasensorielle/F*() -extrasolaire/S*() -extrasystole/S*() -extraterrestre/S*() -extraterritorialité/S*() -extravagamment/D'Q' -extravagance/S*() -extravagante/F*() -extravaguer/a1() -extravasation/S*() -extravasée/F*() -extravaser/a4a+() -extraversion/S*() -extravertie/F*() -extrémale/W*() -extrême/S*() -extrêmement/D'Q' -extrême-onction/L'D' -extrême-orientale/W*() -extremis -extrémisme/S*() -extrémiste/S*() -extrémité/S*() -extremum/S*() -extrinsèque/S*() -extrinsèquement/D'Q' -extrorse/S*() -extrovertie/F*() -extrudée/F*() -extruder/a2a+() -extrudeuse/F*() -extrusion/S*() -exubérance/S*() -exubérante/F*() -exubérer -exulcération/S*() -exulcérée/F*() -exulcérer/c2a+() -exultation/S*() -exulter/a1() -exutoire/S*() -ex-voto/L'D'Q' -eye-liner/S*() -f -fa -fabacée/S. -fable/S. -fabliau/X. -fablier/S. -fabricante/F.() -fabrication/S. -fabricatrice/F.() -fabricien/S. -fabrique/S. -fabriquée/F.() -fabriquer/a0a+() -fabulation/S. -fabulatrice/F.() -fabuler/a0() -fabuleuse/W.() -fabuleusement -fabuliste/S. -fac/S. -façade/S. -façadière/F.() -face/S. -face-à-face -face-à-main -faces-à-main -facétie/S. -facétieuse/W.() -facétieusement -facette/S. -facetter/a0a+() -fâchée/F.() -fâcher/a0a+() -fâcherie/S. -fâcheuse/W.() -fâcheusement -facho/S. -faciale/W.() -faciès -facile/S. -facilement -facilitation/S. -facilitatrice/F.() -facilité/S. -facilitée/F.() -faciliter/a0a+() -façon/S. -faconde/S. -façonnage/S. -façonnée/F.() -façonnement/S. -façonner/a0a+() -façonneuse/F.() -façonnière/F.() -fac-similé/S. -factage/S. -factice/S. -facticement -facticité/S. -factieuse/W.() -faction/S. -factionnaire/S. -factitive/F.() -facto -factorage/S. -factorerie/S. -factorielle/F.() -factoring/S. -factorisable/S. -factorisation/S. -factorisée/F.() -factoriser/a0a+() -factotum/S. -factrice/F.() -factuelle/F.() -factum/S. -facturable/S. -facturation/S. -facture/S. -facturée/F.() -facturer/a0a+() -facturette/S. -facturière/F.() -facultative/F.() -facultativement -faculté/S. -fadaise/S. -fadasserie/S. -fade/S. -fadée/F.() -fadement -fader/a0a+() -fadeur/S. -fading/S. -fado/S. -fafiot/S. -fagacée/S. -fagnarde/F.() -fagne/S. -fagot/S. -fagotage/S. -fagotée/F.() -fagoter/a0a+() -fagotier/S. -fagotin/S. -faiblarde/F.() -faible/S. -faiblement -faiblesse/S. -faiblir/f0() -faiblissante/F.() -faïence/S. -faïencée/F.() -faïencerie/S. -faïencière/F.() -faignante/F.() -faignanter/a0() -faille/S. -faillée/F.() -failler/a0a+() -faillibilité/S. -faillible/S. -faillie/F.() -faillir/iU() -faillite/S. -faim/S. -faine/S. -fainéante/F.() -fainéanter/a0() -fainéantise/S. -fainéantiser -faire/wD() -faire-part -faire-valoir/S. -fair-play -faisabilité/S. -faisable/S. -faisandage/S. -faisandeau/X. -faisandée/F.() -faisander/a0a+() -faisanderie/S. -faisane/F.() -faisceau/X. -faiseuse/F.() -faisselle/S. -fait/S. -faîtage/S. -faite/F.() -faîte/S. -faîteau/X. -faîtière/F.() -faitout/S. -faix -fajita/S. -fakir/S. -fakirisme/S. -falafel/S. -falaise/S. -falarique/S. -falbala/S. -falciforme/S. -faldistoire/S. -falerne/S. -fallacieuse/W.() -fallacieusement -falloir/qA() -falote/F.() -faloter -falourde/S. -falsifiabilité/S. -falsifiable/S. -falsification/S. -falsificatrice/F.() -falsifiée/F.() -falsifier/a0a+() -faluche/S. -falun/S. -faluner/a0a+() -falunière/S. -falzar/S. -famée/F.() -famélique/S. -famennoise/F.() -fameuse/W.() -fameusement -familiale/W.() -familiarisation/S. -familiariser/a0a+() -familiarité/S. -familière/F.() -familièrement -familistère/S. -famille/S. -famine/S. -fan/S. -fanage/S. -fanaison/S. -fanal/X. -fanatique/S. -fanatiquement -fanatisante/F.() -fanatisée/F.() -fanatiser/a0a+() -fanatiseuse/F.() -fanatisme/S. -fan-club/S. -fancy-fair/S. -fandango/S. -fane/S. -fanée/F.() -faner/a0a+() -faneuse/F.() -fanfare/S. -fanfaronnade/S. -fanfaronne/F.() -fanfaronner/a0() -fanfreluche/S. -fanfreluchée/F.() -fanfrelucher/a0a+() -fange/S. -fangeuse/W.() -fangothérapie/S. -fanion/S. -fanon/S. -fantaisie/S. -fantaisiste/S. -fantaliser/a0a+() -fantasia/S. -fantasmagorie/S. -fantasmagorique/S. -fantasmatique/S. -fantasme/S. -fantasmée/F.() -fantasmer/a0a+() -fantasque/S. -fantasquement -fantassin/S. -fantastique/S. -fantastiquement -fantasy -fantoche/S. -fantomatique/S. -fantomatiquement -fantôme/S. -fanton/S. -fanzine/S. -faon/S. -faquin/S. -far/S. -farad/Um() -faraday/S. -faradique/S. -faramineuse/W.() -farandole/S. -faraude/F.() -farce/S. -farceuse/F.() -farcie/F.() -farcin/S. -farcir/f0f+() -fard/S. -fardage/S. -farde/S. -fardeau/X. -fardée/F.() -farder/a0a+() -fardier/S. -farfadet/S. -farfelue/F.() -farfouiller/a0a+() -farfouilleuse/F.() -farguer -fargues -faribole/S. -farigoule/S. -farinacée/F.() -farine/S. -farinée/F.() -fariner/a0a+() -farineuse/W.() -farinière/F.() -farlouse/S. -farniente/S. -faro/S. -farouch/S. -farouche/S. -farouchement -farrago/S. -fart/S. -fartage/S. -fartée/F.() -farter/a0a+() -fasce/S. -fascée/F.() -fascia/S. -fasciation/S. -fascicule/S. -fasciculée/F.() -fasciée/F.() -fascinante/F.() -fascination/S. -fascinatrice/F.() -fascinée/F.() -fasciner/a0a+() -fascisante/F.() -fascisation/S. -fascisée/F.() -fasciser/a0a+() -fascisme/S. -fasciste/S. -faséier -faseiller -faseyer -faséyer/c0() -faste/S. -fast-food/S. -fastidieuse/W.() -fastidieusement -fastigiée/F.() -fastoche/S. -fastueuse/W.() -fastueusement -fat/S. -fatale/F.() -fatalement -fatalisme/S. -fataliste/S. -fatalité/S. -fatidique/S. -fatigabilité/S. -fatigable/S. -fatigante/F.() -fatigue/S. -fatiguée/F.() -fatiguer/a0a+() -fatma/S. -fatras -fatrasie/S. -fatuité/S. -fatum -fatwa/S. -fauber/S. -faubérer/c0() -faubert/S. -faubourg/S. -faubourienne/F.() -faucard/S. -faucarder/a0a+() -faucardeur/S. -fauchage/S. -fauchaison/S. -fauchard/S. -fauche/S. -fauchée/F.() -faucher/a0a+() -fauchet/S. -fauchette/S. -faucheuse/F.() -faucheux -fauchon/S. -faucille/S. -faucillon/S. -faucon/S. -fauconneau/X. -fauconner/a0() -fauconnerie/S. -fauconnier/S. -faucre/S. -faufil/S. -faufilage/S. -faufiler/a0a+() -faufilure/S. -faune/S. -faunesque/S. -faunique/S. -faunistique/S. -faussaire/S. -fausse/W.() -faussée/F.() -faussement -fausser/a0a+() -fausset/S. -fausseté/S. -faute/S. -fauter/a0() -fauteuil/S. -fautive/F.() -fautivement -fautrice/F.() -fauve/S. -fauverie/S. -fauvette/S. -fauvisme/S. -faux -faux-bourdon/S. -faux-filet/S. -faux-fuyant/S. -faux-monnayeur/S. -faux-semblant/S. -faux-sens -favela/S. -faverole/S. -faveur/S. -favorable/S. -favorablement -favori/S. -favorisante/F.() -favorisée/F.() -favoriser/a0a+() -favorite/S. -favoritisme/S. -favus -fax -faxée/F.() -faxer/a0a+() -fayard/S. -fayot/S. -fayotage/S. -fayoter/a0() -fazenda/S. -féale/W.() -fébricule/S. -fébrifuge/S. -fébrile/S. -fébrilement -fébrilité/S. -fécale/W.() -fèces -fécial/X. -fécondabilité/S. -fécondable/S. -fécondante/F.() -fécondation/S. -fécondatrice/F.() -féconde/F.() -fécondée/F.() -féconder/a0a+() -fécondité/S. -fécule/S. -féculence/S. -féculent/S. -féculente/F.() -féculer/a0a+() -féculerie/S. -fedayin/S. -fédérale/W.() -fédéralisation/S. -fédéralisée/F.() -fédéraliser/a0a+() -fédéralisme/S. -fédéraliste/S. -fédération/S. -fédérative/F.() -fédératrice/F.() -fédérée/F.() -fédérer/c0a+() -fée/S. -feed-back -féerie/S. -féerique/S. -féeriquement -feignante/F.() -feignanter/a0() -feignasse/S. -feindre/wB() -feinte/F.() -feinte/S. -feintée/F.() -feinter/a0a+() -feinteur/S. -feintise/S. -feld-maréchal/X. -feldspath/S. -feldspathique/S. -feldwebel/S. -fêlée/F.() -fêler/a0a+() -félibre/S. -félibrige/S. -félicitation/S. -félicité/S. -félicitée/F.() -féliciter/a0a+() -félidé/S. -féline/F.() -félinité/S. -fellaga/S. -fellah/S. -fellation/S. -félonie/S. -félonne/F.() -felouque/S. -fêlure/S. -femelle/S. -féminine/F.() -féminisation/S. -féminisée/F.() -féminiser/a0a+() -féminisme/S. -féministe/S. -féminité/S. -femme/S. -femmelette/S. -fémorale/W.() -fémur/S. -fenaison/S. -fendage/S. -fendante/F.() -fendard/S. -fendart/S. -fendeuse/F.() -fendille/S. -fendillée/F.() -fendillement/S. -fendiller/a0a+() -fendoir/S. -fendre/tA() -fendue/F.() -fenestrage/S. -fenestration/S. -fenestrée/F.() -fenestrer/a0a+() -fenêtrage/S. -fenêtre/S. -fenêtrée/F.() -fenêtrer/a0a+() -fenil/S. -fennec/S. -fenouil/S. -fenouillet/S. -fenouillette/S. -fente/S. -fenton/S. -fenugrec/S. -féodale/W.() -féodalement -féodalisation/S. -féodalisme/S. -féodalité/S. -fer/S. -féra/S. -férale/W.() -férals -fer-blanc -ferblanterie/S. -ferblantière/F.() -fériale/W.() -fériée/F.() -férir/iX() -ferler/a0a+() -fermage/S. -fermail/X. -fermante/F.() -ferme/S. -fermée/F.() -fermement -ferment/S. -fermentable/S. -fermentation/S. -fermentative/F.() -fermentée/F.() -fermenter/a0() -fermentescible/S. -fermenteur/S. -fermer/a0a+() -fermeté/S. -fermette/S. -fermeture/S. -fermière/F.() -fermion/S. -fermionique/S. -fermium/S. -fermoir/S. -féroce/S. -férocement -férocité/S. -ferrade/S. -ferrage/S. -ferraillage/S. -ferraille/S. -ferraillement/S. -ferrailler/a0() -ferrailleuse/F.() -ferrate/S. -ferratier/S. -ferrée/F.() -ferrement/S. -ferrer/a0a+() -ferret/S. -ferreur/S. -ferreuse/W.() -ferricyanure/S. -ferrimagnétique/S. -ferrimagnétisme/S. -ferrique/S. -ferrite/S. -ferrocyanure/S. -ferromagnésienne/F.() -ferromagnétique/S. -ferromagnétisme/S. -ferromanganèse/S. -ferronickel/S. -ferronnerie/S. -ferronnière/F.() -ferroprussiate/S. -ferrosilicium/S. -ferrotypie/S. -ferroutage/S. -ferrouter/a0a+() -ferroviaire/S. -ferrugineuse/W.() -ferrure/S. -ferry/S. -ferry-boat/S. -fers-blancs -fertile/S. -fertilement -fertilisable/S. -fertilisante/F.() -fertilisation/S. -fertilisée/F.() -fertiliser/a0a+() -fertilité/S. -férue/F.() -férule/S. -fervemment -fervente/F.() -ferveur/S. -fesse/S. -fessée/S. -fesse-mathieu/X. -fesser/a0a+() -fessière/F.() -fessue/F.() -festin/S. -festival/S. -festivalière/F.() -festive/F.() -festivité/S. -fest-noz -festoiement/S. -feston/S. -festonnée/F.() -festonner/a0a+() -festoyer/a0a+() -fêtard/S. -fête/S. -fêtée/F.() -fêter/a0a+() -fétiche/S. -féticher/a0a+() -féticheur/S. -fétichiser/a0a+() -fétichisme/S. -fétichiste/S. -fétide/S. -fétidité/S. -fétu/S. -fétuque/S. -feu/X. -feudataire/S. -feudiste/S. -feue/F.() -feuil/S. -feuillage/S. -feuillagiste/S. -feuillaison/S. -feuillantine/S. -feuillard/S. -feuillardière/F.() -feuille/S. -feuillée/F.() -feuille-morte -feuiller/a0a+() -feuilleret/S. -feuillet/S. -feuilletage/S. -feuilletée/F.() -feuilleter/d0a+() -feuilletis -feuilletiser/a0a+() -feuilleton/S. -feuilletonesque/S. -feuilletoniste/S. -feuillue/F.() -feuillure/S. -feulement/S. -feuler/a0() -feutrage/S. -feutrante/F.() -feutre/S. -feutrée/F.() -feutrer/a0a+() -feutrine/S. -fève/S. -féverole/S. -févier/S. -févr -février/S. -fez -fi -fiabilisation/S. -fiabiliser/a0a+() -fiabilité/S. -fiable/S. -fiacre/S. -fiançailles -fiancée/F.() -fiancer/a0a+() -fiasco/S. -fiasque/S. -fiat -fibrage/S. -fibranne/S. -fibration/S. -fibre/S. -fibrée/F.() -fibrer/a0a+() -fibreuse/W.() -fibrillaire/S. -fibrillation/S. -fibrille/S. -fibrilleuse/W.() -fibrine/S. -fibrineuse/W.() -fibrinogène/S. -fibroblaste/S. -fibrociment/S. -fibrocyte/S. -fibroïne/S. -fibromateuse/W.() -fibromatose/S. -fibrome/S. -fibromyalgie/S. -fibromyome/S. -fibroscope/S. -fibroscopie/S. -fibrose/S. -fibule/S. -fic/S. -ficaire/S. -ficelage/S. -ficelée/F.() -ficeler/d0a+() -ficellerie/S. -fichage/S. -fiche/S. -fichée/F.() -ficher/a0a+() -fichet/S. -fichier/S. -fichiste/S. -fichoir/S. -fichtre -fichtrement -fichue/F.() -fiction/S. -fictive/F.() -fictivement -ficus -fidéicommis -fidéicommissaire/S. -fidéisme/S. -fidéiste/S. -fidéjusseur/S. -fidéjussion/S. -fidéjussoire/S. -fidèle/S. -fidèlement -fidélisante/F.() -fidélisation/S. -fidélisée/F.() -fidéliser/a0a+() -fidélité/S. -fidjienne/F.() -fiduciaire/S. -fiduciairement -fiducie/S. -fief/S. -fieffée/F.() -fieffer/a0a+() -fiel/S. -fielleuse/W.() -fiente/S. -fienter/a0() -fier/a0a+() -fier-à-bras -fière/F.() -fièrement -fiérote/F.() -fiers-à-bras -fierté/S. -fiesta/S. -fieu/X. -fièvre/S. -fiévreuse/W.() -fiévreusement -fifille/S. -fifre/S. -fifrelin/S. -fifty-fifty -fig -figaro/S. -figée/F.() -figement/S. -figer/a0a+() -fignolage/S. -fignolée/F.() -fignoler/a0a+() -fignoleuse/F.() -figue/S. -figuerie/S. -figuier/S. -figuline/S. -figurante/F.() -figuration/S. -figurative/F.() -figurativement -figure/S. -figurée/F.() -figurément -figurer/a0a+() -figurine/S. -figurisme/S. -figuriste/S. -fil/S. -filable/S. -filage/S. -filaire/S. -filament/S. -filamenteuse/W.() -filandière/S. -filandre/S. -filandreuse/W.() -filante/F.() -filanzane/S. -filariose/S. -filateur/S. -filature/S. -fildefériste/S. -file/S. -filée/F.() -filer/a0a+() -filet/S. -filetage/S. -filetée/F.() -fileter/b0a+() -fileuse/F.() -fileyeur/S. -filiale/W.() -filialement -filialiser/a0a+() -filiation/S. -filicinée/S. -filicophyte/S. -filière/S. -filiforme/S. -filigrane/S. -filigranée/F.() -filigraner/a0a+() -filin/S. -filipendule/S. -fillasse/S. -fille/S. -fillette/S. -filleule/F.() -film/S. -filmage/S. -filmée/F.() -filmer/a0a+() -filmique/S. -filmographie/S. -filmologie/S. -filmothèque/S. -filocher/a0a+() -filon/S. -filonienne/F.() -filoselle/S. -filou/S. -filoutage/S. -filouter/a0a+() -filouterie/S. -fils -filtrable/S. -filtrage/S. -filtrante/F.() -filtrat/S. -filtration/S. -filtre/S. -filtrée/F.() -filtrer/a0a+() -filtreuse/F.() -fin/S. -finage/S. -finale/F.() -finalement -finalisation/S. -finalisée/F.() -finaliser/a0a+() -finalisme/S. -finaliste/S. -finalitaire/S. -finalité/S. -finance/S. -financée/F.() -financement/S. -financer/a0a+() -financiarisation/S. -financiariser/a0a+() -financière/F.() -financièrement -finasser/a0a+() -finasserie/S. -finasseuse/F.() -finassière/F.() -finaude/F.() -finauderie/S. -finaux -fine/F.() -finement -finerie/S. -finesse/S. -finette/S. -finie/F.() -finir/f0f+() -finish -finissage/S. -finissante/F.() -finisseur/S. -finisseuse/F.() -finition/S. -finitude/S. -finlandaise/F.() -finlandiser/a0a+() -finnoise/F.() -finno-ougrien/S. -finno-ougrienne/F.() -finslérienne/S. -fiole/S. -fion/S. -fioriture/S. -fioul/S. -fiqh/S. -firmament/S. -firman/S. -firme/S. -fisc/S. -fiscale/W.() -fiscalement -fiscalisation/S. -fiscaliser/a0a+() -fiscaliste/S. -fiscalité/S. -fissa -fissible/S. -fissile/S. -fission/S. -fissionner/a0a+() -fissuration/S. -fissure/S. -fissurée/F.() -fissurer/a0a+() -fiston/S. -fistot/S. -fistulaire/S. -fistule/S. -fistuleuse/W.() -fistuline/S. -fistulisante/F.() -fitness -fixage/S. -fixation/S. -fixative/F.() -fixatrice/F.() -fixe/S. -fixe-chaussette/S. -fixée/F.() -fixement -fixer/a0a+() -fixette/S. -fixing/S. -fixisme/S. -fixiste/S. -fixité/S. -fjeld/S. -fjord/S. -fla -fla -flabellation/S. -flabelle/S. -flabellée/F.() -flabelliforme/S. -flac -flac/S. -flaccidité/S. -flache/S. -flacherie/S. -flacheuse/W.() -flacon/S. -flaconnage/S. -flaconnier/S. -fla-fla/S. -flagada/S. -flagellaire/S. -flagellation/S. -flagellatrice/F.() -flagelle/S. -flagellée/F.() -flageller/a0a+() -flagelline/S. -flagellum/S. -flageolante/F.() -flageolement/S. -flageoler/a0() -flageolet/S. -flagorner/a0a+() -flagornerie/S. -flagorneuse/F.() -flagrance/S. -flagrante/F.() -flair/S. -flairer/a0a+() -flaireuse/F.() -flamande/F.() -flamant/S. -flambage/S. -flambante/F.() -flambard/S. -flambart/S. -flambe/S. -flambeau/X. -flambée/F.() -flambée/S. -flambement/S. -flamber/a0a+() -flamberge/S. -flambeuse/F.() -flamboiement/S. -flamboyance/S. -flamboyante/F.() -flamboyer/a0() -flamenco/S. -flamine/S. -flamingante/F.() -flamingantisme/S. -flamme/S. -flammèche/S. -flammée/F.() -flammerole/S. -flan/S. -flanc/S. -flancher/a0a+() -flanchet/S. -flanconade/S. -flandricisme/S. -flandrin/S. -flanelle/S. -flâner/a0() -flânerie/S. -flâneuse/F.() -flânocher/a0() -flanquement/S. -flanquer/a0a+() -flapie/F.() -flaque/S. -flaquer/a0() -flash/S. -flashage/S. -flash-back -flasher/a0a+() -flasheuse/F.() -flashmètre/S. -flasque/S. -flattée/F.() -flatter/a0a+() -flatterie/S. -flatteuse/F.() -flatteusement -flatulence/S. -flatulente/F.() -flatuosité/S. -flauper/a0a+() -flavescente/F.() -flavine/S. -flavonoïde/S. -fléau/X. -fléchage/S. -flèche/S. -fléchée/F.() -flécher/c0a+() -fléchette/S. -fléchie/F.() -fléchir/f0f+() -fléchissement/S. -fléchisseur/S. -flegmatique/S. -flegmatiquement -flegmatisant/S. -flegmatisme/S. -flegme/S. -flein/S. -flemmarde/F.() -flemmarder/a0() -flemmardise/S. -flemme/S. -fléole/S. -flétan/S. -flétrie/F.() -flétrir/f0f+() -flétrissante/F.() -flétrissement/S. -flétrissure/S. -flette/F.() -fleur/S. -fleurage/S. -fleuraison/S. -fleurdelisée/F.() -fleurdeliser/a0a+() -fleurée/F.() -fleurer/a0a+() -fleuret/S. -fleurette/S. -fleurettiste/S. -fleurie/F.() -fleurir/f0f+() -fleurissante/F.() -fleurissement/S. -fleuriste/S. -fleuron/S. -fleuronnée/F.() -fleuve/S. -flexibilisée/F.() -flexibiliser/a0a+() -flexibilité/S. -flexible/S. -flexion/S. -flexionnelle/F.() -flexographe/S. -flexueuse/W.() -flexuosité/S. -flexure/S. -flibuste/S. -flibuster/a0a+() -flibusterie/S. -flibustier/S. -flic/S. -flicage/S. -flicaille/S. -flingot/S. -flingoter -flingue/S. -flinguer/a0a+() -flingueuse/F.() -flint/S. -flipot/S. -flipper/S. -flipper/a0() -fliquée/F.() -fliquer/a0a+() -flirt/S. -flirter/a0() -flirteuse/F.() -floc -floc/S. -flocage/S. -floche/S. -flock-book/S. -flocon/S. -floconner/a0() -floconneuse/W.() -floculation/S. -floculer/a0() -flonflon/S. -flood -flop/S. -flopée/S. -floquer/a0a+() -floraison/S. -florale/W.() -floralies -flore/S. -floréal/S. -florence/S. -florencée/F.() -florentine/F.() -florès -floricole/S. -floricultrice/F.() -floriculture/S. -florifère/S. -florilège/S. -florin/S. -florissante/F.() -floristique/S. -flosculeuse/W.() -flot/S. -flottabilité/S. -flottable/S. -flottage/S. -flottaison/S. -flottante/F.() -flottard/S. -flottation/S. -flotte/S. -flottée/F.() -flottement/S. -flotter/a0a+() -flotteur/S. -flottille/S. -floue/F.() -flouée/F.() -flouer/a0a+() -flouser/a0() -floutage/S. -floutée/F.() -flouter/a0a+() -flouve/S. -flouze/S. -fluage/S. -fluate/S. -fluber/a0() -fluctuante/F.() -fluctuation/S. -fluctuer/a0() -fluence/S. -fluer/a0() -fluette/F.() -fluide/S. -fluidifiante/F.() -fluidification/S. -fluidifiée/F.() -fluidifier/a0a+() -fluidique/S. -fluidiser/a0a+() -fluidité/S. -fluocompacte/F.() -fluofibre/S. -fluor/S. -fluoration/S. -fluorescéine/S. -fluorescence/S. -fluorescente/F.() -fluorhydrique/S. -fluorifère/S. -fluorine/S. -fluorisation/S. -fluorisée/F.() -fluoriser/a0a+() -fluorographie/S. -fluorophore/S. -fluoroscopie/S. -fluorose/S. -fluoruration/S. -fluorure/S. -fluotournage/S. -flurer -flush/S. -flûte/S. -flûteau/X. -flûtée/F.() -flûter/a0a+() -flûtiau/X. -flûtiste/S. -fluviale/W.() -fluviatile/S. -fluvio-glaciaire/S. -fluviomètre/S. -fluviométrique/S. -flux -fluxer/a0a+() -fluxion/S. -fluxmètre/S. -fm/||-- -foc/S. -focale/W.() -focalisante/F.() -focalisation/S. -focalisée/F.() -focaliser/a0a+() -focomètre/S. -focométrie/S. -focométrique/S. -focus -fœhn/S. -foéner/c0a+() -fœtale/W.() -fœtida -fœtus -foi/S. -foie/S. -foin/S. -foirade/S. -foirail/S. -foire/S. -foirer/a0() -foireuse/W.() -foirolle/S. -foiron/S. -fois -foison -foisonnante/F.() -foisonnement/S. -foisonner/a0() -fol/S. -folasse/S. -folâtrer/a0() -folâtrerie/S. -foliacée/F.() -foliaire/S. -foliation/S. -folichonne/F.() -folichonner/a0() -folie/S. -foliée/F.() -folio/S. -foliole/S. -foliot/S. -foliotage/S. -folioter/a0a+() -folique/S. -folk/S. -folklore/S. -folklorique/S. -folkloriser/a0a+() -folkloriste/S. -folksong/S. -folle/S. -follement -follette/F.() -folliculaire/S. -follicule/S. -folliculine/S. -folliculite/S. -fomentation/S. -fomentatrice/F.() -fomenter/a0a+() -foncée/F.() -foncer/a0a+() -fonceuse/F.() -foncière/F.() -foncièrement -foncteur/S. -fonction/S. -fonctionnaire/S. -fonctionnalisme/S. -fonctionnalité/S. -fonctionnariat/S. -fonctionnarisation/S. -fonctionnariser/a0a+() -fonctionnarisme/S. -fonctionnelle/F.() -fonctionnellement -fonctionnement/S. -fonctionner/a0() -fonctorialité/S. -fonctorielle/F.() -fondamentale/W.() -fondamentalement -fondamentalisme/S. -fondamentaliste/S. -fondante/F.() -fondation/S. -fondatrice/F.() -fondée/F.() -fondement/S. -fonder/a0a+() -fonderie/S. -fondeuse/F.() -fondoir/S. -fondouk/S. -fondre/tA() -fondrière/S. -fondue/F.() -fongibilité/S. -fongible/S. -fongicide/S. -fongiforme/S. -fongique/S. -fongistatique/S. -fongoïde/S. -fongosité/S. -fongueuse/W.() -fongus -fontaine/S. -fontainebleau/S. -fontainière/F.() -fontanelle/S. -fontange/S. -fontanili -fonte/S. -fontis -fonts -foot/S. -football/S. -footballeuse/F.() -footballistique/S. -footeuse/W.() -footing/S. -for/S. -forage/S. -foraine/F.() -foraminée/F.() -foraminifère/S. -forban/S. -forçage/S. -forçat/S. -force/S. -forcée/F.() -forcément -forcement/S. -forcenée/F.() -forceps -forcer/a0a+() -forcerie/S. -forcing/S. -forcipressure/S. -forcir/f0() -forclore/rD() -forclose/F.() -forclusion/S. -fordisme/S. -forer/a0a+() -foresterie/S. -forestière/F.() -foret/S. -forêt/S. -foreuse/F.() -forfaire/wF() -forfait/S. -forfaitaire/S. -forfaitairement -forfaitiste/S. -forfaiture/S. -forfanterie/S. -forficule/S. -forge/S. -forgeable/S. -forgeage/S. -forgée/F.() -forger/a0a+() -forgeronne/F.() -forgeuse/F.() -forint/S. -forjeter/d0a+() -forlancer/a0a+() -forlane/S. -forligner/a0() -forlonger/a0a+() -formable/S. -formage/S. -formaldéhyde/S. -formalisante/F.() -formalisation/S. -formalisée/F.() -formaliser/a0a+() -formalisme/S. -formaliste/S. -formalité/S. -formariage/S. -format/S. -formatage/S. -formatée/F.() -formater/a0a+() -formation/S. -formative/F.() -formatrice/F.() -forme/S. -formée/F.() -formelle/F.() -formellement -formène/S. -former/a0a+() -formeret/S. -formiate/S. -formica/S. -formicaliser/a0a+() -formicante/F.() -formication/S. -formidable/S. -formidablement -formique/S. -formiste/S. -formol/S. -formolée/F.() -formoler/a0a+() -formulable/S. -formulaire/S. -formulation/S. -formule/S. -formulée/F.() -formuler/a0a+() -fornication/S. -fornicatrice/F.() -forniquer/a0() -forsythia/S. -forte/F.() -fortement -forte-piano -forteresse/S. -fortiche/S. -fortifiante/F.() -fortification/S. -fortifiée/F.() -fortifier/a0a+() -fortin/S. -fortiori -fortissimo -fortissimo/S. -fortraite/F.() -fortraiture/S. -fortuite/F.() -fortuitement -fortune/S. -fortunée/F.() -forum/S. -forure/S. -fosse/S. -fossé/S. -fossette/S. -fossile/S. -fossilifère/S. -fossilisation/S. -fossilisée/F.() -fossiliser/a0a+() -fossoir/S. -fossoyer/a0a+() -fossoyeuse/F.() -fou/S. -fouace/S. -fouacier/S. -fouage/S. -fouaille/S. -fouaillée/F.() -fouailler/a0a+() -foucade/S. -fouchtra -fouder/a0a+() -foudre/S. -foudroiement/S. -foudroyante/F.() -foudroyée/F.() -foudroyer/a0a+() -fouée/S. -fouet/S. -fouettard/S. -fouettée/F.() -fouettement/S. -fouetter/a0a+() -foufou/S. -fougasse/S. -fouger/a0() -fougère/S. -fougerole/S. -fougue/S. -fougueuse/W.() -fougueusement -fouille/S. -fouillée/F.() -fouiller/a0a+() -fouilleuse/F.() -fouillis -fouinarde/F.() -fouine/S. -fouiner/a0() -fouineuse/F.() -fouir/f0f+() -fouisseuse/F.() -foulage/S. -foulante/F.() -foulard/S. -foule/S. -foulée/S. -foulement/S. -fouler/a0a+() -foulerie/S. -fouleuse/F.() -fouloir/S. -foulon/S. -foulonnage/S. -foulonnière/F.() -foulque/S. -foultitude/S. -foulure/S. -four/S. -fourailler/a0a+() -fourbe/S. -fourber/a0a+() -fourberie/S. -fourbie/F.() -fourbir/f0f+() -fourbissage/S. -fourbisseur/S. -fourbue/F.() -fourbure/S. -fourche/S. -fourchée/F.() -fourcher/a0a+() -fourchet/S. -fourchetée/S. -fourchette/S. -fourchon/S. -fourchue/F.() -fourgon/S. -fourgonner/a0() -fourgonnette/S. -fourgue/S. -fourguer/a0a+() -fouriérisme/S. -fouriériste/S. -fourme/S. -fourmi/S. -fourmilier/S. -fourmilière/S. -fourmilion/S. -fourmillante/F.() -fourmillement/S. -fourmiller/a0() -fournaise/S. -fourneau/X. -fournée/S. -fournie/F.() -fournière/F.() -fournil/S. -fourniment/S. -fournir/f0f+() -fournisseuse/F.() -fourniture/S. -fourrage/S. -fourrager/a0a+() -fourragère/F.() -fourrageur/S. -fourreau/X. -fourrée/F.() -fourrer/a0a+() -fourre-tout -fourreuse/F.() -fourrière/F.() -fourrure/S. -fourvoiement/S. -fourvoyante/F.() -fourvoyée/F.() -fourvoyer/a0a+() -foutaise/S. -fouteuse/F.() -foutisme/S. -foutoir/S. -foutrale/F.() -foutraque/S. -foutre/S. -foutre/tM() -foutrement -foutriquet/S. -foutue/F.() -fovéa/S. -fox -foxée/F.() -fox-terrier/S. -fox-trot -foyer/S. -fr -frac/S. -fracas -fracassante/F.() -fracassée/F.() -fracassement/S. -fracasser/a0a+() -fractale/F.() -fractale/S. -fraction/S. -fractionnaire/S. -fractionnée/F.() -fractionnelle/F.() -fractionnement/S. -fractionner/a0a+() -fractionnisme/S. -fractographie/S. -fracture/S. -fracturée/F.() -fracturer/a0a+() -fragile/S. -fragilisante/F.() -fragilisation/S. -fragilisée/F.() -fragiliser/a0a+() -fragilité/S. -fragment/S. -fragmentaire/S. -fragmentairement -fragmentation/S. -fragmentée/F.() -fragmenter/a0a+() -fragon/S. -fragrance/S. -frai/S. -fraîche/F.() -fraîche/S. -fraîchement -fraîcheur/S. -fraîchin/S. -fraîchir/f0() -fraîchissante/F.() -frairie/S. -frais -frais -fraisage/S. -fraise/S. -fraiser/a0a+() -fraiseuse/F.() -fraisier/S. -fraisière/S. -fraisil/S. -fraisure/S. -framboise/S. -framboisée/F.() -framboiser/a0a+() -framboisier/S. -framée/S. -franc/S. -française/F.() -franc-alleu -franc-bord -franc-bourgeois -franche/S. -franchement -franchie/F.() -franchir/f0f+() -franchisage/S. -franchise/S. -franchisée/F.() -franchiser/a0a+() -franchissable/S. -franchissement/S. -francien/S. -francilienne/F.() -francique/S. -francisation/S. -franciscaine/F.() -francisée/F.() -franciser/a0a+() -francisme/S. -francisque/S. -franciste/S. -francité/S. -francium/S. -franc-jeu -franc-maçon -franc-maçonne -franc-maçonnerie/S. -franc-maçonnique/S. -franco -franco-allemande/F.() -franco-américaine/F.() -franco-belge/S. -franco-canadienne/F.() -franco-espagnole/F.() -franco-italienne/F.() -francolin/S. -franco-luxembourgeoise/F.() -francophile/S. -francophilie/S. -francophobe/S. -francophobie/S. -francophone/S. -francophonie/S. -francophoniser/a0a+() -franco-québécoise/F.() -franco-suisse/S. -franc-parler -franc-quartier -francs-alleux -francs-bords -francs-bourgeois -francs-jeux -francs-maçonnes -francs-maçons -francs-parlers -francs-quartiers -francs-tireurs -franc-tireur -frange/S. -frangeante/F.() -frangée/F.() -franger/a0a+() -frangine/F.() -frangipane/S. -frangipanier/S. -franglais -franque/S. -franquette -franquisme -franquiste/S. -fransquillonner/a0() -frappage/S. -frappante/F.() -frappe/S. -frappée/F.() -frappement/S. -frapper/a0a+() -frappeuse/F.() -frasil/S. -frasque/S. -frater/S. -fraternelle/F.() -fraternellement -fraternisation/S. -fraterniser/a0() -fraternité/S. -fratricide/S. -fratrie/S. -fraude/S. -frauder/a0a+() -fraudeuse/F.() -frauduleuse/W.() -frauduleusement -fraxinelle/S. -frayage/S. -frayement/S. -frayer/a0a+() -frayère/S. -frayeur/S. -fredaine/S. -fredonnement/S. -fredonner/a0a+() -free-jazz -free-lance -free-lance/S. -free-martin/S. -free-shop/S. -freesia/S. -freezer/S. -frégate/S. -frégater/a0a+() -frein/S. -freinage/S. -freinante/F.() -freinatrice/F.() -freinée/F.() -freiner/a0a+() -freineuse/F.() -freinte/S. -frelatage/S. -frelatée/F.() -frelater/a0a+() -frêle/S. -frelon/S. -freluquet/S. -frémir/f0() -frémissante/F.() -frémissement/S. -frênaie/S. -frêne/S. -frénésie/S. -frénétique/S. -frénétiquement -fréon/S. -fréquemment -fréquence/S. -fréquencemètre/S. -fréquentable/S. -fréquentation/S. -fréquentative/F.() -fréquente/F.() -fréquentée/F.() -fréquenter/a0a+() -fréquentielle/F.() -frère/S. -frérot/S. -fresque/S. -fresquiste/S. -fressure/S. -fret/S. -fréter/c0a+() -fréteur/S. -frétillante/F.() -frétillement/S. -frétiller/a0() -fretin/S. -frettage/S. -frette/S. -frettée/F.() -fretter/a0a+() -freudienne/F.() -freudisme/S. -freux -friabilité/S. -friable/S. -friande/F.() -friandise/S. -fric/S. -fricadelle/S. -fricandeau/X. -fricassée/S. -fricasser/a0a+() -fricative/F.() -fric-frac -friche/S. -frichti/S. -fricot/S. -fricotage/S. -fricoter/a0a+() -fricoteuse/F.() -friction/S. -frictionnelle/F.() -frictionner/a0a+() -fridolin/S. -frigidaire/S. -frigidarium/S. -frigide/S. -frigidité/S. -frigo/S. -frigolite/S. -frigoporteur/S. -frigorie/S. -frigorifère/S. -frigorifiée/F.() -frigorifier/a0a+() -frigorifique/S. -frigorifuger/a0a+() -frigorigène/S. -frigorimètre/S. -frigoriste/S. -frigothérapie/S. -frileuse/W.() -frileusement -frilosité/S. -frimaire/S. -frime/S. -frimer/a0a+() -frimeuse/F.() -frimousse/S. -fringale/S. -fringante/F.() -fringue/S. -fringuée/F.() -fringuer/a0a+() -frioulane/F.() -fripe/S. -fripée/F.() -friper/a0a+() -friperie/S. -fripière/F.() -friponne/F.() -friponner/a0a+() -friponnerie/S. -fripouille/S. -fripouillerie/S. -friquée/F.() -friquer/a0a+() -friquet/S. -frire/yZ() -frisage/S. -frisante/F.() -frisbee/S. -frise/S. -frisée/F.() -friselis -friser/a0a+() -frisette/S. -frisolée/S. -frisonne/F.() -frisonner -frisottante/F.() -frisotter/a0a+() -frisottis -frisquette/F.() -frisson/S. -frissonnante/F.() -frissonnement/S. -frissonner/a0() -fristouiller/a0a+() -frisure/S. -frite/F.() -frite/S. -friter/a0a+() -friterie/S. -friteuse/S. -fritillaire/S. -frittage/S. -fritter/a0a+() -friture/S. -fritz -frivole/S. -frivolement -frivolité/S. -froc/S. -frocard/S. -froide/F.() -froidement -froideur/S. -froidir/f0() -froidure/S. -froissable/S. -froissante/F.() -froissée/F.() -froissement/S. -froisser/a0a+() -froissure/S. -frôlée/F.() -frôlement/S. -frôler/a0a+() -frôleuse/F.() -fromage/S. -fromagère/F.() -fromagerie/S. -froment/S. -fromental/X. -froncée/F.() -froncement/S. -froncer/a0a+() -froncis -frondaison/S. -fronde/S. -fronder/a0a+() -frondeuse/F.() -front/S. -frontail/S. -frontale/W.() -frontalière/F.() -frontalité/S. -fronteau/X. -frontière/S. -frontignan/S. -frontisme/S. -frontispice/S. -frontiste/S. -fronton/S. -frottage/S. -frottante/F.() -frottée/F.() -frottement/S. -frotter/a0a+() -frotteuse/F.() -frottis -frottoir/S. -frouer/a0() -froufrou/S. -froufroutante/F.() -froufroutement/S. -froufrouter/a0() -froussarde/F.() -frousse/S. -frousser/a0() -fructidor/S. -fructifère/S. -fructification/S. -fructifier/a0() -fructose/S. -fructueuse/W.() -fructueusement -frugale/W.() -frugalement -frugalité/S. -frugivore/S. -fruit/S. -fruitarienne/F.() -fruitée/F.() -fruiterie/S. -fruiticultrice/F.() -fruitière/F.() -frumentacée/F.() -frumentaire/S. -frusque/S. -frusquer/a0a+() -fruste/S. -frustrante/F.() -frustration/S. -frustratoire/S. -frustre/S. -frustrée/F.() -frustrer/a0a+() -frutescente/F.() -frutti -ft/||-- -fuchsia/S. -fuchsienne/F.() -fuchsine/S. -fucus -fuégienne/F.() -fuel-oil/S. -fugace/S. -fugacement -fugacité/S. -fugitive/F.() -fugitivement -fugue/S. -fuguée/F.() -fuguer/a0() -fugueuse/F.() -führer/S. -fuir/f0f+() -fuir/iN() -fuite/S. -fuiter/a0a+() -fulgurance/S. -fulgurante/F.() -fulguration/S. -fulgurer/a0a+() -fuligineuse/W.() -full/S. -fulminante/F.() -fulminate/S. -fulmination/S. -fulminatoire/S. -fulminer/a0a+() -fulminique/S. -fumable/S. -fumage/S. -fumagine/S. -fumaison/S. -fumante/F.() -fumariacée/S. -fume-cigare -fume-cigarette -fumée/F.() -fumée/S. -fumer/a0a+() -fumerie/S. -fumerolle/S. -fumeron/S. -fumet/S. -fumeterre/S. -fumeuse/F.() -fumeuse/W.() -fumier/S. -fumigateur/S. -fumigation/S. -fumigatoire/S. -fumigène/S. -fumiger/a0a+() -fumiste/S. -fumisterie/S. -fumivore/S. -fumoir/S. -fumure/S. -funambule/S. -funambulesque/S. -funboard/S. -funèbre/S. -funérailles -funéraire/S. -funérale/W.() -funérarium/S. -funeste/S. -funestement -funiculaire/S. -funicule/S. -funin/S. -funk -funky -fur -furax -furetage/S. -fureter/b0() -fureteuse/F.() -furette/F.() -fureur/S. -furfuracée/F.() -furfural/S. -furia/S. -furibarde/F.() -furibonde/F.() -furie/S. -furieuse/W.() -furieusement -furigana/S. -furioso -furioso/S. -furole/S. -furoncle/S. -furonculeuse/W.() -furonculose/S. -furtive/F.() -furtivement -furtivité/S. -fus/zH() -fusain/S. -fusainiste/S. -fusante/F.() -fusarolle/S. -fuscine/S. -fuseau/X. -fusée/S. -fusel/S. -fuselage/S. -fuselée/F.() -fuseler/d0a+() -fuséologie/S. -fuséologue/S. -fuser/a0() -fusette/S. -fusibilité/S. -fusible/S. -fusiforme/S. -fusil/S. -fusilière/F.() -fusillade/S. -fusiller/a0a+() -fusilleur/S. -fusil-mitrailleur -fusils-mitrailleurs -fusiniste/S. -fusion/S. -fusionnante/F.() -fusionnée/F.() -fusionnelle/F.() -fusionnement/S. -fusionner/a0a+() -fustanelle/S. -fuste/S. -fustibale/S. -fustigation/S. -fustigée/F.() -fustiger/a0a+() -fût/S. -futaie/S. -futaille/S. -futaine/S. -futée/F.() -futée/S. -fûtier/S. -futile/S. -futilement -futilité/S. -futon/S. -futsal/S. -future/F.() -futurible/S. -futurisme/S. -futuriste/S. -futurologie/S. -futurologue/S. -fuyante/F.() -fuyarde/F.() -g -g/U.||-- -gabardine/S. -gabare/S. -gabariage/S. -gabarier/S. -gabarier/a0a+() -gabarit/S. -gabarre/S. -gabarrier/S. -gabbro/S. -gabegie/S. -gabelle/S. -gabelou/S. -gabier/S. -gabion/S. -gabionnage/S. -gabionner/a0a+() -gâble/S. -gabonaise/F.() -gâchage/S. -gâche/S. -gâchée/F.() -gâcher/a0a+() -gâchette/S. -gâcheuse/F.() -gâchis -gade/S. -gadget/S. -gadgétiser/a0a+() -gadin/S. -gadolinium/S. -gadoue/S. -gaélique/S. -gaffe/S. -gaffer/a0a+() -gaffeuse/F.() -gafouiller -gag/S. -gaga/S. -gage/S. -gagée/F.() -gager/a0a+() -gageure/S. -gagiste/S. -gagman/S. -gagnable/S. -gagnage/S. -gagnante/F.() -gagnée/F.() -gagne-pain -gagne-petit -gagner/a0a+() -gagneuse/F.() -gaïac/S. -gaïacol/S. -gaie/F.() -gaiement -gaieté/S. -gaillarde/F.() -gaillardement -gaillardie/S. -gaillardise/S. -gaillet/S. -gailleterie/S. -gailletin/S. -gaîment -gain/S. -gainage/S. -gaine/S. -gaînée/F.() -gaîner/a0a+() -gainerie/S. -gainière/F.() -gaîté/S. -gal/S. -gal/||-- -gala/S. -galactagogue/S. -galactique/S. -galactogène/S. -galactomètre/S. -galactophore/S. -galactose/S. -galalithe/S. -galamment -galandage/S. -galante/F.() -galanterie/S. -galantin/S. -galantine/S. -galapiat/S. -galaxie/S. -galbante/F.() -galbe/S. -galbée/F.() -galber/a0a+() -gale/S. -galéace/S. -galéasse/S. -galée/S. -galéjade/S. -galéjer/a0() -galène/S. -galénique/S. -galénisme/S. -galéopithèque/S. -galère/S. -galérer/c0() -galerie/S. -galérien/S. -galeriste/S. -galerne/S. -galet/S. -galetas -galette/S. -galetteuse/W.() -galeuse/W.() -galgal/S. -galhauban/S. -galibot/S. -galicienne/F.() -galiléenne/F.() -galimafrée/S. -galimatias -galion/S. -galiote/S. -galipette/S. -galipot/S. -galipoter/a0a+() -galle/S. -gallec/S. -gallérie/S. -gallicane/F.() -gallicanisme/S. -gallicisme/S. -gallicole/S. -galliforme/S. -gallinacée/F.() -gallinule/S. -gallique/S. -gallium/S. -gallo/S. -galloise/F.() -gallomanie/S. -gallon/S. -gallo-romaine/F.() -gallup/S. -galoche/S. -galoisienne/F.() -galon/S. -galonnée/F.() -galonner/a0a+() -galonnière/F.() -galop/S. -galopade/S. -galopante/F.() -galoper/a0a+() -galopeuse/F.() -galopin/S. -galoubet/S. -galuchat/S. -galure/S. -galurin/S. -galvanique/S. -galvaniquement -galvanisante/F.() -galvanisation/S. -galvanisée/F.() -galvaniser/a0a+() -galvaniseuse/F.() -galvanisme/S. -galvanocautère/S. -galvanomagnétique/S. -galvanomètre/S. -galvanométrique/S. -galvanoplaste/S. -galvanoplastie/S. -galvanoplastique/S. -galvanoscope/S. -galvanostégie/S. -galvanotaxie/S. -galvanotropisme/S. -galvanotype/S. -galvanotypie/S. -galvaudage/S. -galvaudée/F.() -galvauder/a0a+() -galvaudeuse/W.() -gamba/S. -gambadante/F.() -gambade/S. -gambader/a0() -gambe/S. -gamberger/a0a+() -gambette/S. -gambienne/F.() -gambier/S. -gambille/S. -gambiller/a0() -gambiste/S. -gambit/S. -gameler/d0a+() -gamelle/S. -gamète/S. -gamin/S. -gamine/F.() -gaminer/a0() -gaminerie/S. -gamma -gammaglobuline/S. -gammagraphie/S. -gammare/S. -gamme/S. -gammée/F.() -gamopétale/S. -gamosépale/S. -gan/S. -ganache/S. -ganacherie/S. -ganaderia/S. -gandin/S. -gandoura/S. -gang/S. -ganga/S. -gangétique/S. -ganglion/S. -ganglionnaire/S. -gangrène/S. -gangrenée/F.() -gangrener/b0a+() -gangreneuse/W.() -gangster/S. -gangstérisme/S. -gangue/S. -ganoïde/S. -ganse/S. -gansée/F.() -ganser/a0a+() -gansette/S. -gant/S. -gantée/F.() -gantelée/F.() -gantelet/S. -ganteline/S. -ganter/a0a+() -ganterie/S. -gantière/F.() -gap/S. -garage/S. -garagiste/S. -garalde/S. -garance/S. -garancer/a0a+() -garancerie/S. -garanceur/S. -garancière/S. -garante/F.() -garantie/F.() -garantir/f0f+() -garbure/S. -garce/S. -garcette/S. -garçonne/F.() -garçonnet/S. -garçonnière/F.() -garde/S. -garde-à-vous -garde-barrière -garde-bœufs -garde-boue -garde-but -garde-cendre -garde-chasse -garde-chiourme -garde-corps -garde-côte -garde-côtes -gardée/F.() -garde-feu -garde-fou -garde-frein -garde-magasin -garde-malade -garde-manège -garde-manger -garde-meubles -garde-mites -gardénal/S. -garde-nappe -gardénia/S. -garden-party/S. -garde-pêche -garde-places -garde-port -garder/a0a+() -garde-rats -garderie/S. -garde-robe/S. -gardes-barrières -gardes-buts -gardes-chasse -gardes-chiourme -gardes-côtes -gardes-freins -gardes-magasins -gardes-maisons -gardes-malades -gardes-manèges -gardes-pêche -gardes-ports -gardes-voies -gardeuse/F.() -garde-voie -garde-vue -gardiane/F.() -gardiennage/S. -gardienne/F.() -gardisme/S. -gardiste/S. -gardon/S. -gare/S. -garée/F.() -garenne/S. -garer/a0a+() -gargamelle/S. -gargantua/S. -gargantuesque/S. -gargariser/a0a+() -gargarisme/S. -gargote/S. -gargoter/a0() -gargotière/F.() -gargouille/S. -gargouillement/S. -gargouiller/a0() -gargouillis -gargoulette/S. -gargousse/S. -garibaldienne/F.() -gariguette/S. -garnement/S. -garnie/F.() -garnir/f0f+() -garnison/S. -garnissage/S. -garnisseuse/F.() -garniture/S. -garou/S. -garrigue/S. -garrot/S. -garrottage/S. -garrottée/F.() -garrotter/a0a+() -gars -gasconnade/S. -gasconne/F.() -gasconner/a0() -gasconnisme/S. -gas-oil/S. -gaspacho/S. -gaspillage/S. -gaspillée/F.() -gaspiller/a0a+() -gaspilleuse/F.() -gastéropode/S. -gastralgie/S. -gastralgique/S. -gastrectomie/S. -gastrique/S. -gastrite/S. -gastro-entérite/S. -gastro-entérologie/S. -gastro-entérologue/S. -gastro-intestinale/W.() -gastronome/S. -gastronomie/S. -gastronomique/S. -gastroplastie/S. -gastropode/S. -gastroscopie/S. -gastrotomie/S. -gastrozoïde/S. -gastrula/S. -gate/S. -gâteau/X. -gâtée/F.() -gâte-métiers -gâte-papiers -gâter/a0a+() -gâterie/S. -gâte-sauce -gâteuse/W.() -gâtifier/a0() -gâtine/S. -gâtisme/S. -gatte/S. -gattilier/S. -gauche/S. -gauchement -gauchère/F.() -gaucherie/S. -gauchie/F.() -gauchir/f0f+() -gauchisante/F.() -gauchisme/S. -gauchissement/S. -gauchiste/S. -gaucho/S. -gaude/S. -gaudir/f0f+() -gaudriole/S. -gaufrage/S. -gaufre/S. -gaufrée/F.() -gaufrer/a0a+() -gaufrette/S. -gaufreuse/F.() -gaufrier/S. -gaufroir/S. -gaufrure/S. -gaulage/S. -gaule/S. -gauler/a0a+() -gaulette/S. -gaulis -gaullienne/F.() -gaullisme/S. -gaulliste/S. -gauloise/F.() -gauloisement -gauloiserie/S. -gaulthérie/S. -gaumaise/F.() -gaupe/S. -gaur/S. -gauss/Um() -gausser/a0a+() -gaussienne/F.() -gavache/S. -gavage/S. -gavée/F.() -gaver/a0a+() -gaveuse/F.() -gavial/S. -gavotte/S. -gavroche/S. -gay -gayal/S. -gaz -gazage/S. -gaze/S. -gazée/F.() -gazéification/S. -gazéifiée/F.() -gazéifier/a0a+() -gazelle/S. -gazer/a0a+() -gazetière/F.() -gazette/S. -gazeuse/W.() -gazière/F.() -gazinière/S. -gazoduc/S. -gazogène/S. -gazole/S. -gazoline/S. -gazomètre/S. -gazon/S. -gazonnage/S. -gazonnée/F.() -gazonnement/S. -gazonner/a0a+() -gazouillante/F.() -gazouillement/S. -gazouiller/a0() -gazouilleuse/F.() -gazouillis -geai/S. -géante/F.() -gecko/S. -geek/S. -géhenne/S. -geignante/F.() -geignarde/F.() -geignement/S. -geindre/wA() -geisha/S. -gel/S. -gélatine/S. -gélatinée/F.() -gélatiner/a0a+() -gélatineuse/W.() -gélatiniser/a0a+() -gélatino-bromure/S. -gélatino-chlorure/S. -gelée/F.() -gelée/S. -geler/b0a+() -gélifiante/F.() -gélification/S. -gélifier/a0a+() -gelinotte/S. -gélisol/S. -gélive/F.() -gélivure/S. -gélose/S. -gélule/S. -gelure/S. -gémeau/X. -gémellaire/S. -gémelle/S. -gémellipare/S. -gémelliparité/S. -gémellité/S. -gémination/S. -géminée/F.() -géminer/a0a+() -gémir/f0f+() -gémissante/F.() -gémissement/S. -gemmage/S. -gemmail/X. -gemmation/S. -gemme/S. -gemmée/F.() -gemmer/a0a+() -gemmeuse/F.() -gemmifère/S. -gemmologie/S. -gemmologiste/S. -gemmologue/S. -gemmule/S. -gémonies -gênante/F.() -gencive/S. -gendarme/S. -gendarmer/a0a+() -gendarmerie/S. -gendarmette/S. -gendre/S. -gène/S. -gêne/S. -généalogie/S. -généalogique/S. -généalogiquement -généalogiste/S. -gênée/F.() -génépi/S. -gêner/a0a+() -généralat/S. -générale/W.() -généralement -généralisable/S. -généralisation/S. -généralisatrice/F.() -généralisée/F.() -généraliser/a0a+() -généralissime/S. -généraliste/S. -généralité/S. -génération/S. -générationnelle/F.() -générative/F.() -génératrice/F.() -générée/F.() -générer/c0a+() -généreuse/W.() -généreusement -généricité/S. -générique/S. -génériquement -générosité/S. -genèse/S. -génésiaque/S. -génésique/S. -genet/S. -genêt/S. -généthliaque/S. -généticienne/F.() -genêtière/S. -génétique/S. -génétiquement -génétisme/S. -genette/S. -gêneuse/F.() -genevoise/F.() -genévrier/S. -géniale/W.() -génialement -génialité/S. -génie/S. -genièvre/S. -génique/S. -génisse/S. -génitale/W.() -génitif/S. -génito-urinaire/S. -génitrice/F.() -génocidaire/S. -génocide/S. -génogramme/S. -génoise/F.() -génome/S. -génomique/S. -génosociogramme/S. -génotype/S. -genou/X. -genouillère/S. -génovéfain/S. -genre/S. -gens -gent/S. -gente/S. -gentianacée/S. -gentiane/S. -gentianée/S. -gentilé/S. -gentilhomme -gentilhommière/S. -gentilité/S. -gentille/F.() -gentillesse/S. -gentillette/F.() -gentilshommes -gentiment -gentleman/S. -gentleman-farmer -gentlemans-farmers -gentrification/S. -gentry/S. -génuflexion/S. -génuine/S. -géobiologie/S. -géobiologique/S. -géobiologiste/S. -géobiologue/S. -géocentrique/S. -géocentrisme/S. -géochimie/S. -géochimique/S. -géochimiste/S. -géochronologie/S. -géochronologique/S. -géocroiseur/S. -géode/S. -géodésie/S. -géodésienne/F.() -géodésique/S. -géodésiquement -géodimètre/S. -géodynamique/S. -géoglyphe/S. -géographe/S. -géographie/S. -géographique/S. -géographiquement -géoïde/S. -geôlage/S. -geôle/S. -geôlière/F.() -géolocalisation/S. -géolocaliser/a0a+() -géologie/S. -géologique/S. -géologiquement -géologue/S. -géomagnétique/S. -géomagnétisme/S. -géomancie/S. -géomancienne/F.() -géomarketing/S. -géomatique/S. -géomembrane/S. -géométral/X. -géomètre/S. -géométrie/S. -géométrique/S. -géométriquement -géométrisation/S. -géométriser/a0a+() -géomorphologie/S. -géomorphologue/S. -géophage/S. -géophagie/S. -géophile/S. -géophone/S. -géophysicienne/F.() -géophysique/S. -géopoliticienne/F.() -géopolitique/S. -géopolitologue/S. -géorgienne/F.() -géoscience/S. -géostationnaire/S. -géostratégie/S. -géostratégique/S. -géostrophique/S. -géosynclinal/X. -géotechnicienne/F.() -géotechnique/S. -géotextile/S. -géothermie/S. -géothermique/S. -géotropisme/S. -géotrupe/S. -gérable/S. -gérance/S. -géraniacée/S. -géraniée/S. -géranium/S. -gérante/F.() -gerbage/S. -gerbante/F.() -gerbe/S. -gerber/a0a+() -gerbera/S. -gerbeuse/F.() -gerbier/S. -gerbière/S. -gerbille/S. -gerboise/S. -gerce/S. -gercée/F.() -gercer/a0a+() -gerçure/S. -gérée/F.() -gérer/c0a+() -gerfaut/S. -gériatre/S. -gériatrie/S. -gériatrique/S. -germaine/F.() -germandrée/S. -germanique/S. -germanisation/S. -germaniser/a0a+() -germanisme/S. -germaniste/S. -germanium/S. -germanophile/S. -germanophobe/S. -germanophone/S. -germanopratine/F.() -germe/S. -germée/F.() -germen/S. -germer/a0() -germicide/S. -germinal/S. -germinale/W.() -germination/S. -germinative/F.() -germinatrice/F.() -germoir/S. -germon/S. -géromé/S. -gérondif/S. -géronte/S. -gérontisme/S. -gérontocratie/S. -gérontologie/S. -gérontologique/S. -gérontologue/S. -gérontophile/S. -gérontophilie/S. -gerseau/X. -gerzeau/X. -gésier/S. -gésine/S. -gésir/iV() -gesse/S. -gestaltisme/S. -gestation/S. -gestatoire/S. -geste/S. -gesticulante/F.() -gesticulation/S. -gesticulatoire/S. -gesticulée/F.() -gesticuler/a0() -gestion/S. -gestionnaire/S. -gestuelle/F.() -getter/S. -geyser/S. -ghanéenne/F.() -ghetto/S. -ghettoïsation/S. -giaour/S. -gibbeuse/W.() -gibbon/S. -gibbosité/S. -gibbsite/S. -gibecière/S. -gibeline/F.() -gibelotte/S. -giberne/S. -gibet/S. -gibibit/S. -gibier/S. -gibioctet/S. -giboulée/S. -giboyer/a0a+() -giboyeuse/W.() -gibus -giclée/S. -giclement/S. -gicler/a0() -gicleur/S. -gifle/S. -gifler/a0a+() -gigabit/S. -gigantesque/S. -gigantesquement -gigantisme/S. -gigantomachie/S. -gigaoctet/S. -gigatonne/S. -gigogne/S. -gigolo/S. -gigot/S. -gigotante/F.() -gigotée/F.() -gigotement/S. -gigoter/a0() -gigoteuse/F.() -gigue/S. -gilet/S. -giletière/F.() -gille/S. -gimblette/S. -gin/S. -gindre/S. -gin-fizz -gingembre/S. -gingivale/W.() -gingivite/S. -ginguet/S. -ginkgo/S. -ginseng/S. -giorno -girafe/S. -girafeau/X. -girafon/S. -girandole/S. -girasol/S. -giration/S. -giratoire/S. -giraumon/S. -giraumont/S. -giravion/S. -girelle/S. -girie/S. -girl/S. -girodyne/S. -girofle/S. -giroflée/S. -giroflier/S. -girolle/S. -giron/S. -gironde/F.() -girondine/F.() -gironnée/F.() -gironner/a0a+() -girouette/S. -girouetter/a0() -gisante/F.() -gisement/S. -gîtage/S. -gitane/F.() -gîte/S. -gîter/a0() -gîtologie/S. -giton/S. -givrage/S. -givrante/F.() -givre/S. -givrée/F.() -givrer/a0a+() -givreuse/W.() -givrure/S. -glabelle/S. -glabre/S. -glaçage/S. -glaçante/F.() -glace/S. -glacée/F.() -glacer/a0a+() -glacerie/S. -glaceur/S. -glaceuse/W.() -glaciaire/S. -glaciale/W.() -glacialement -glacials -glaciation/S. -glacier/S. -glacière/S. -glaciologie/S. -glaciologique/S. -glaciologue/S. -glacis -glaçon/S. -glaçure/S. -gladiateur/S. -glaglater -glagolitique/S. -glaïeul/S. -glaire/S. -glairer/a0a+() -glaireuse/W.() -glairure/S. -glaise/S. -glaiser/a0a+() -glaiseuse/W.() -glaisière/S. -glaive/S. -glamour/S. -glanage/S. -gland/S. -glandage/S. -glande/S. -glandée/F.() -glandée/S. -glander/a0() -glandeuse/F.() -glandouille/S. -glandouiller/a0() -glandulaire/S. -glanduleuse/W.() -glanée/F.() -glaner/a0a+() -glaneuse/F.() -glanure/S. -glapir/f0f+() -glapissante/F.() -glapissement/S. -glaréole/S. -glas -glasnost -glass -glatir/f0() -glaucome/S. -glauque/S. -glaviot/S. -glavioter/a0() -glèbe/S. -gléchome/S. -glène/S. -gléner/c0a+() -glénoïde/S. -glette/S. -gletter/a0() -gliale/W.() -glie/S. -gliome/S. -glissade/S. -glissage/S. -glissante/F.() -glisse/S. -glissée/F.() -glissement/S. -glisser/a0a+() -glisseuse/F.() -glissière/S. -glissoir/S. -glissoire/S. -globale/W.() -globalement -globalisante/F.() -globalisation/S. -globalisée/F.() -globaliser/a0a+() -globalisme/S. -globaliste/S. -globalité/S. -globe/S. -globe-trotteuse/F.() -globigérine/S. -globine/S. -globulaire/S. -globule/S. -globuleuse/W.() -globuline/S. -glockenspiel/S. -gloire/S. -glome/S. -gloméris -glomérule/S. -gloria -gloriette/S. -glorieuse/W.() -glorieusement -glorifiante/F.() -glorification/S. -glorificatrice/F.() -glorifiée/F.() -glorifier/a0a+() -gloriole/S. -glose/S. -gloser/a0a+() -glossaire/S. -glossateur/S. -glossectomie/S. -glossette/S. -glossine/S. -glossite/S. -glossolalie/S. -glosso-pharyngienne/F.() -glossotomie/S. -glottale/W.() -glotte/S. -glottique/S. -glouglou/S. -glougloutante/F.() -glouglouter/a0() -gloussante/F.() -gloussement/S. -glousser/a0() -glouteron/S. -gloutonne/F.() -gloutonnement -gloutonner/a0a+() -gloutonnerie/S. -glu/S. -gluante/F.() -gluau/X. -glucide/S. -glucidique/S. -glucinium/S. -glucomètre/S. -glucose/S. -glucosée/F.() -glucoserie/S. -glucoside/S. -glui/S. -glume/S. -glumelle/S. -gluon/S. -glutamate/S. -glutamique/S. -glutathion/S. -gluten/S. -glutineuse/W.() -glycémie/S. -glycéride/S. -glycérie/S. -glycérine/S. -glycériner/a0a+() -glycérique/S. -glycine/S. -glycocolle/S. -glycogène/S. -glycogénique/S. -glycol/S. -glycolipide/S. -glycolyse/S. -glycoprotéine/S. -glycosurie/S. -glycosurique/S. -glycosylation/S. -glyphe/S. -glyptique/S. -glyptodon/S. -glyptodon/S. -glyptographie/S. -glyptothèque/S. -gnangnan -gnangnan/S. -gnaque/S. -gnathologie/S. -gnathologique/S. -gneiss -gnocchi/S. -gnognotte/S. -gnôle/S. -gnome/S. -gnomique/S. -gnomon/S. -gnomonique/S. -gnomoniste/S. -gnon/S. -gnose/S. -gnoséologie/S. -gnoséologique/S. -gnosie/S. -gnosticisme/S. -gnostique/S. -gnotobiotique/S. -gnou/S. -go -goal/S. -goaler/a0a+() -gobée/F.() -gobelet/S. -gobeleterie/S. -gobeletier/S. -gobeline/F.() -gobe-mouche/S. -gobe-mouches -gober/a0a+() -goberge/S. -goberger/a0a+() -gobeter/d0a+() -gobeuse/F.() -gobie/S. -godage/S. -godaille/S. -godailler/a0() -godelureau/X. -godemiché/S. -goder/a0() -godet/S. -godiche/S. -godillante/F.() -godille/S. -godiller/a0() -godilleur/S. -godillot/S. -godiner/a0a+() -godiveau/X. -godron/S. -godronnage/S. -godronnée/F.() -godronner/a0a+() -goéland/S. -goélette/S. -goémon/S. -goémonière/F.() -goethite/S. -goglu/S. -gogo/S. -goguenarde/F.() -goguenarder/a0() -goguenardise/S. -goguette/S. -goï -goïm -goinfre/S. -goinfrer/a0a+() -goinfrerie/S. -goitre/S. -goitreuse/W.() -golden/S. -golem/S. -golf/S. -golfe/S. -golfeuse/F.() -golmotte/S. -gombo/S. -goménol/S. -goménolée/F.() -gominée/F.() -gominer/a0a+() -gommage/S. -gomme/S. -gommée/F.() -gomme-gutte -gommer/a0a+() -gomme-résine -gommes-guttes -gommes-résines -gommeuse/W.() -gommier/S. -gomorrhéenne/F.() -gomorrhiser -gonade/S. -gonadique/S. -gonadostimuline/S. -gonadotrope/S. -gonadotrophine/S. -gond/S. -gonder/a0a+() -gondolage/S. -gondolante/F.() -gondole/S. -gondolée/F.() -gondolement/S. -gondoler/a0a+() -gondolière/F.() -gonelle/S. -gonfalon/S. -gonfalonier/S. -gonfanon/S. -gonfanonier/S. -gonflable/S. -gonflage/S. -gonflante/F.() -gonflée/F.() -gonflement/S. -gonfler/a0a+() -gonfleur/S. -gong/S. -gongonner/a0() -gongorisme/S. -goniomètre/S. -goniométrie/S. -goniométrique/S. -gonochorisme/S. -gonococcie/S. -gonocoque/S. -gonophore/S. -gonorrhée/S. -gonosome/S. -gonozoïde/S. -gonzesse/F.() -gord/S. -gordien/S. -gore -goret/S. -gorfou/S. -gorge/S. -gorge-de-pigeon -gorgée/F.() -gorgée/S. -gorgeon/S. -gorgeonner -gorger/a0a+() -gorgerette/S. -gorgerin/S. -gorget/S. -gorgone/S. -gorgonzola/S. -gorille/S. -goron/S. -gosette/S. -gosier/S. -gospel/S. -gosse/S. -gothique/S. -gotique/S. -goton/S. -gouache/S. -gouachée/F.() -gouacher/a0a+() -gouacheuse/F.() -gouaille/S. -gouailler/a0() -gouaillerie/S. -gouailleuse/F.() -goualante/S. -goualer/a0a+() -gouape/S. -gouaper/a0() -gouda/S. -goudron/S. -goudronnage/S. -goudronnée/F.() -goudronner/a0a+() -goudronneuse/F.() -goudronneuse/W.() -gouet/S. -gouffre/S. -gouge/S. -gouger/a0a+() -gougère/S. -gougnafier/S. -gougnotte/S. -gougnotter -gouine/S. -goujat/S. -goujaterie/S. -goujon/S. -goujonner/a0a+() -goujonnette/S. -goujonnière/S. -goulache/S. -goulafre/S. -goulag/S. -goule/S. -goulée/S. -goulet/S. -gouleyante/F.() -goulot/S. -goulotte/S. -goulue/F.() -goulûment -goum/S. -goupil/S. -goupille/S. -goupiller/a0a+() -goupillon/S. -goupillonner/a0a+() -gour/S. -gourance/S. -gourancer -gourbi/S. -gourde/F.() -gourdin/S. -gourer/a0a+() -gourgandine/S. -gourmande/F.() -gourmandée/F.() -gourmander/a0a+() -gourmandise/S. -gourme/S. -gourmée/F.() -gourmet/S. -gourmette/S. -gourou/S. -gousse/S. -gousset/S. -goût/S. -goûtée/F.() -goûter/S. -goûter/a0a+() -goûteuse/F.() -goûteuse/W.() -goûte-vin -goutte/S. -goutte-à-goutte -gouttelette/S. -goutter/a0() -gouttereau/X. -goutteur/S. -goutteuse/W.() -gouttière/S. -gouttiner/a9() -gouvernable/S. -gouvernail/S. -gouvernance/S. -gouvernante/F.() -gouverne/S. -gouvernée/F.() -gouvernement/S. -gouvernementale/W.() -gouvernementalisme/S. -gouverner/a0a+() -gouverneure/F.() -gouvernorat/S. -gouzi-gouzi -gouzis-gouzis -goy/S. -goyave/S. -goyavier/S. -gr/||-- -grabat/S. -grabataire/S. -grabatisation/S. -graben/S. -grabuge/S. -grâce -grâce/S. -graciée/F.() -gracier/a0a+() -gracieuse/W.() -gracieusement -gracieuseté/S. -gracile/S. -gracilité/S. -gradateur/S. -gradation/S. -grade/S. -gradée/F.() -gradient/S. -gradin/S. -gradine/S. -gradualisme/S. -graduat/S. -graduation/S. -graduée/F.() -graduelle/F.() -graduellement -graduer/a0a+() -gradus -grafcet/S. -graff/S. -graffer -graffiter/a0a+() -graffiti/S. -grafigner/a0a+() -graille/S. -graillement/S. -grailler/a0a+() -graillon/S. -graillonner/a0() -grain/S. -grainage/S. -graine/S. -grainée/F.() -grainer/a0a+() -graineterie/S. -grainetière/F.() -grainière/F.() -graissage/S. -graissante/F.() -graisse/S. -graissée/F.() -graisser/a0a+() -graisseuse/F.() -graisseuse/W.() -gram -gramen/S. -graminacée/S. -graminée/S. -grammage/S. -grammaire/S. -grammairienne/F.() -grammaticale/W.() -grammaticalement -grammaticalisation/S. -grammaticaliser/a0a+() -grammaticalité/S. -grammatiste/S. -gramme/Um() -gramophone/S. -grand-angle -grand-angulaire -grand-chose -grand-croix -grand-duc -grand-ducale/W.() -grand-duché -grande/F.() -grande-duchesse -grandelette/F.() -grandement -grandes-duchesses -grandesse/S. -grandette/F.() -grandeur/S. -grand-guignolesque/S. -grandie/F.() -grandiloquence/S. -grandiloquente/F.() -grandiose/S. -grandiosement -grandir/f0f+() -grandissante/F.() -grandissime/S. -grand-maman/S. -grand-mère/S. -grand-messe/S. -grand-oncle -grand-papa -grand-peine -grand-père -grands-angles -grands-angulaires -grands-croix -grands-duchés -grands-ducs -grands-mamans -grands-mères -grands-messes -grands-oncles -grands-papas -grands-parents -grands-pères -grands-tantes -grands-voiles -grand-tante/S. -grand-voile/S. -grange/S. -granit/S. -granite/S. -granitée/F.() -graniter/a0a+() -graniteuse/W.() -granitique/S. -granitoïde/S. -granivore/S. -granny-smith -granoclassement/S. -granulaire/S. -granularité -granulat/S. -granulation/S. -granule/S. -granulée/F.() -granuler/a0a+() -granuleuse/W.() -granulie/S. -granulite/S. -granulocyte/S. -granulomatose/S. -granulome/S. -granulométrie/S. -granulométrique/S. -grape-fruit/S. -grapefruit/S. -graphe/S. -graphème/S. -graphène/S. -graphie/S. -graphique/S. -graphiquement -graphisme/S. -graphiste/S. -graphitage/S. -graphite/S. -graphiter/a0a+() -graphiteuse/W.() -graphologie/S. -graphologique/S. -graphologue/S. -graphomètre/S. -grappe/S. -grappillage/S. -grappiller/a0a+() -grappilleuse/F.() -grappillon/S. -grappin/S. -gras -gras-double/S. -grasse/F.() -grassement -grasserie/S. -grasset/S. -grasseyante/F.() -grasseyement/S. -grasseyer/a0a+() -grassmannienne/F.() -grassouillette/F.() -grateron/S. -graticuler/a0a+() -gratifiante/F.() -gratification/S. -gratifiée/F.() -gratifier/a0a+() -gratin/S. -gratinée/F.() -gratiner/a0a+() -gratiole/S. -gratis -gratitude/S. -grattage/S. -gratte/S. -gratte-ciel -gratte-cul -gratte-dos -grattée/F.() -grattelle/S. -grattement/S. -gratte-papier -gratter/a0a+() -gratteron/S. -gratteuse/F.() -grattoir/S. -grattouiller/a0a+() -gratture/S. -gratuiciel/S. -gratuite/F.() -gratuité/S. -gratuitement -grau/X. -gravatière/F.() -gravats -grave/S. -gravée/F.() -gravelée/S. -graveleuse/W.() -gravelle/S. -gravelure/S. -gravement -graver/a0a+() -graveuse/F.() -gravide/S. -gravidique/S. -gravidité/S. -gravie/F.() -gravier/S. -gravillon/S. -gravillonnage/S. -gravillonnée/F.() -gravillonner/a0a+() -gravillonneuse/F.() -gravimètre/S. -gravimétrie/S. -gravimétrique/S. -gravir/f0f+() -gravisphère/S. -gravissime/S. -gravitaire/S. -gravitation/S. -gravitationnelle/F.() -gravité/S. -graviter/a0() -graviton/S. -gravois -gravure/S. -gray/Um() -gré -grèbe/S. -grébiche -grébige/S. -gréciser/a0a+() -grécité -gréco-latine/F.() -gréco-romaine/F.() -grecque/F.() -grecquer/a0a+() -gredine/F.() -gredinerie/S. -gréement/S. -green/S. -gréer/a0a+() -gréeuse/F.() -greffage/S. -greffe/S. -greffée/F.() -greffer/a0a+() -greffeuse/F.() -greffière/F.() -greffoir/S. -greffon/S. -grégaire/S. -grégarisme/S. -grège/S. -grégeois -grégorienne/F.() -grègues -grêle/S. -grêlée/F.() -grêler/a9a+() -grelin/S. -grêlon/S. -grelot/S. -grelote/S. -grelottante/F.() -grelotte/S. -grelottement/S. -grelotter/a0() -greluchon/S. -grémil -grémille/S. -grenache/S. -grenadage/S. -grenade/S. -grenadeur/S. -grenadienne/F.() -grenadière/F.() -grenadille/S. -grenadine/F.() -grenage/S. -grenaille/S. -grenailler/a0a+() -grenailleuse/F.() -grenaison/S. -grenat/S. -grenée/F.() -greneler/d0a+() -grener/b0a+() -grènetis -greneur/S. -grenier/S. -grenobloise/F.() -grenouillage/S. -grenouillante/F.() -grenouille/S. -grenouiller/a0() -grenouillère/S. -grenouillesque/S. -grenouillette/S. -grenue/F.() -grenure/S. -grès -grésage -gréser/c0a+() -gréseux -grésil/S. -grésillement/S. -grésiller/a9() -gressin/S. -grève/S. -gréver/a0() -grever/b0a+() -grévicultrice/F.() -gréviste/S. -gribiche/S. -gribouillage/S. -gribouille/S. -gribouillée/F.() -gribouiller/a0a+() -gribouilleuse/F.() -gribouillis -grièche/S. -grief/S. -grièvement -griffade/S. -griffage/S. -griffe/S. -griffée/F.() -griffer/a0a+() -griffeuse/F.() -griffon/S. -griffonnage/S. -griffonnée/F.() -griffonnement/S. -griffonner/a0a+() -griffonneuse/F.() -griffue/F.() -griffure/S. -grigne/S. -grigner/a0() -grignon/S. -grignotage/S. -grignotement/S. -grignoter/a0a+() -grignoteuse/F.() -grignotis -grigou/S. -grigri/S. -grigriser/a0a+() -gril/S. -grill/S. -grillade/S. -grilladerie/S. -grillage/S. -grillagée/F.() -grillager/a0a+() -grillageur/S. -grille/S. -grillée/F.() -grille-pain -griller/a0a+() -grillette/F.() -grilloir/S. -grillon/S. -grill-room/S. -grimaçante/F.() -grimace/S. -grimacer/a0() -grimacière/F.() -grimage/S. -grimaud/S. -grimée/F.() -grimer/a0a+() -grimoire/S. -grimpante/F.() -grimpe/S. -grimpée/S. -grimper/a0a+() -grimpereau/X. -grimpette/S. -grimpeuse/F.() -grinçante/F.() -grincement/S. -grincer/a0() -grinche/S. -grincher/a0a+() -grincheuse/W.() -gringalet/S. -gringe/S. -gringo/S. -gringolée/F.() -gringue/S. -gringuer/a0() -griotte/F.() -grip/S. -grippage/S. -grippale/W.() -grippe/S. -grippée/F.() -gripper/a0a+() -grippe-sou/S. -grisaille/S. -grisaillée/F.() -grisailler/a0a+() -grisante/F.() -grisard/S. -grisâtre/S. -grisbi/S. -grise/F.() -grisée/F.() -griser/a0a+() -griserie/S. -griset/S. -grisette/S. -grisoler/a0() -grisoller/a0() -grisonnante/F.() -grisonne/F.() -grisonnement/S. -grisonner/a0() -grisou/S. -grisoumètre/S. -grisouteuse/W.() -grive/S. -grivelée/F.() -griveler/d0a+() -grivèlerie/S. -grivelure/S. -griveton/S. -grivoise/F.() -grivoiserie/S. -grizzli/S. -groenendael/S. -groenlandaise/F.() -grog/S. -groggy -grognarde/F.() -grognasse/S. -grognasser/a0() -grogne/S. -grognement/S. -grogner/a0a+() -grognerie/S. -grogneuse/F.() -grognonne/F.() -grognonner/a0() -groin/S. -groisil/S. -grolle/S. -grommeler/d0a+() -grommellement/S. -grondante/F.() -gronde/S. -grondée/F.() -grondement/S. -gronder/a0a+() -gronderie/S. -grondeuse/F.() -grondin/S. -groom/S. -groschen/S. -groseille/S. -groseillier/S. -gros-grain/S. -gros-porteur/S. -grosse/F.() -grosserie/S. -grossesse/S. -grosseur/S. -grossie/F.() -grossière/F.() -grossièrement -grossièreté/S. -grossir/f0f+() -grossissante/F.() -grossissement/S. -grossiste/S. -grosso -grossoyer/a0a+() -grotesque/S. -grotesquement -grotte/S. -grouillante/F.() -grouillement/S. -grouiller/a0a+() -grouillot/S. -groûler/a0() -groumer/a0() -groupage/S. -groupale/W.() -groupe/S. -groupée/F.() -groupement/S. -grouper/a0a+() -groupie/S. -groupiste/S. -groupoïde/S. -groupuscule/S. -grouse/S. -gruau/X. -grue/S. -grugée/F.() -grugeoir/S. -gruger/a0a+() -grulette/S. -grume/S. -grumeau/X. -grumelée/F.() -grumeler/d0a+() -grumeleuse/W.() -grumelure/S. -grumier/S. -gruppetti -gruppetto/S. -grutière/F.() -gruyère/S. -gryphée/S. -guacamole/S. -guadeloupéenne/F.() -guai/S. -guanaco/S. -guanidine/S. -guanine/S. -guano/S. -guarani/S. -guard/S. -guatémaltèque/S. -gué/S. -guéable/S. -guèbre/S. -guède/S. -guéer/a0a+() -guéguerre/S. -guelfe/S. -guelte/S. -guenille/S. -guenon/S. -guépard/S. -guêpe/S. -guêpière/F.() -guère -guéret/S. -guéridon/S. -guérie/F.() -guérilla/S. -guérillero/S. -guérir/f0f+() -guérison/S. -guérissable/S. -guérissante/F.() -guérisseuse/F.() -guérite/S. -guerre/S. -guerrière/F.() -guerroyer/a0a+() -guet/S. -guet-apens -guêtre/S. -guêtrer/a0a+() -guêtron/S. -guets-apens -guette/S. -guetter/a0a+() -guetteuse/F.() -gueulante/F.() -gueularde/F.() -gueule/S. -gueule-de-loup -gueulée/F.() -gueulement/S. -gueuler/a0a+() -gueules-de-loup -gueuleton/S. -gueuletonner/a0() -gueuse/W.() -gueuser/a0a+() -gueuserie/S. -gueuze/S. -gugusse/S. -gui/S. -guibolle/S. -guibre/S. -guiche/S. -guichet/S. -guichetière/F.() -guidage/S. -guidance/S. -guide/S. -guide-âne/S. -guideau/X. -guidée/F.() -guide-fil -guider/a0a+() -guiderope/S. -guidon/S. -guignarde/F.() -guigne/S. -guigner/a0a+() -guignette/S. -guignier/S. -guignol/S. -guignolade/S. -guignolesque/S. -guignolet/S. -guignon/S. -guilde/S. -guili-guili -guillaume/S. -guilledou -guillemet/S. -guillemeter/d0a+() -guillemot/S. -guillerette/F.() -guilleri/S. -guillochage/S. -guillochée/F.() -guillocher/a0a+() -guillocheur/S. -guillochis -guillochure/S. -guillotine/S. -guillotinée/F.() -guillotiner/a0a+() -guillotineuse/F.() -guimauve/S. -guimbarde/S. -guimpe/S. -guinche/S. -guincher/a0() -guindaille/S. -guindailler/a0() -guindeau/X. -guindée/F.() -guinder/a0a+() -guinderesse/S. -guinée/S. -guinéenne/F.() -guingois -guinguette/S. -guipage/S. -guiper/a0a+() -guipoir/S. -guipon/S. -guipure/S. -guirlande/S. -guisarme/S. -guise/S. -guitare/S. -guitariste/S. -guitoune/S. -guivre/S. -guivrée/F.() -gulden/S. -gummifère/S. -gunite/S. -guppy/S. -gus -guss -gustation/S. -gustative/F.() -gustométrie/S. -gutta-percha -guttas-perchas -gutturale/W.() -guyanaise/F.() -guyanienne/F.() -guzla/S. -gym/S. -gymkhana/S. -gymnase/S. -gymnasiarque/S. -gymnaste/S. -gymnastique/S. -gymnique/S. -gymnocarpe/S. -gymnosophiste/S. -gymnosperme/S. -gymnote/S. -gynandromorphisme/S. -gynécée/S. -gynécologie/S. -gynécologique/S. -gynécologiste/S. -gynécologue/S. -gynécomastie/S. -gypaète/S. -gypse/S. -gypserie/S. -gypseuse/W.() -gypsomètre/S. -gypsophile/S. -gyrin/S. -gyrocompas -gyromètre/S. -gyrophare/S. -gyropilote/S. -gyroscope/S. -gyroscopique/S. -gyrostat/S. -h -h/||-- -ha/||-- -hab -habanera/S. -habile/S*() -habilement/D'Q' -habileté/S*() -habilitation/S*() -habilité/S*() -habilitée/F*() -habiliter/a2a+() -habillable/S*() -habillage/S*() -habillée/F*() -habillement/S*() -habiller/a4a+() -habilleuse/F*() -habit/S*() -habitabilité/S*() -habitable/S*() -habitacle/S*() -habitante/F*() -habitat/S*() -habitation/S*() -habitée/F*() -habiter/a2a+() -habituation/S*() -habitude/S*() -habituée/F*() -habituelle/F*() -habituellement/D'Q' -habituer/a4a+() -habitus/L'D'Q' -hâbler/a0a+() -hâblerie/S. -hâbleuse/F.() -hachage/S. -hache/S. -hachée/F.() -hache-fourrage -hache-légumes -hachement/S. -hachémite/S. -hache-paille -hacher/a0a+() -hachereau/X. -hachette/S. -hacheuse/F.() -hache-viande -hachis -hachoir/S. -hachure/S. -hachurée/F.() -hachurer/a0a+() -hacienda/S*() -hacker/S. -hadale/W*() -haddock/S. -hadith/S. -hadji/S. -hadron/S. -hafnium/S. -hagarde/F.() -hagiographe/S*() -hagiographie/S*() -hagiographique/S*() -haïe -haïe/F.() -haie/S. -haïk/S. -haïkaï/S. -haïku/S. -haillon/S. -haillonneuse/W.() -haine/S. -haineuse/W.() -haineusement -haïr/fA() -haire/S. -haïssable/S. -haïtienne/F.() -halage/S. -halal -halbi/S. -halbran/S. -hâle/S. -halecret/S. -halée/F.() -hâlée/F.() -haleine/S*() -halenée/S*() -halener/b0a+() -haler/a0a+() -hâler/a0a+() -haletante/F.() -halètement/S. -haleter/b0() -haleuse/F.() -half-track/S. -halicte/S*() -halieute/S*() -halieutique/S*() -halin/S. -haline/F.() -haliotide/S*() -haliple/S. -halitueuse/W*() -halkiner/a0a+() -hall/S. -hallage/S. -hallali/S*() -halle/S. -hallebarde/S. -hallebardier/S. -hallier/S. -hallstattienne/F.() -hallucinante/F*() -hallucination/S*() -hallucinatoire/S*() -hallucinée/F*() -halluciner/a2a+() -hallucinogène/S*() -hallucinose/S*() -halo/S. -halogénation/S*() -halogène/S*() -halogénure/S*() -halographie/S*() -haloïde/S*() -hâloir/S. -halophile/S*() -halophyte/S*() -halte/S. -haltère/S*() -haltérophile/S*() -haltérophilie/S*() -halva/S. -hamac/S. -hamada/S. -hamadryade/S*() -hamadryas/L'D'Q' -hamamélis/L'D'Q' -hamburger/S. -hameau/X. -hameçon/S*() -hameçonnage/S*() -hameçonnée/F*() -hameçonner/a2a+() -hamiltonienne/F*() -hammam/S. -hammerless -hampe/S. -hamster/S. -han -hanap/S. -hanche/S. -hanchée/F.() -hanchement/S. -hancher/a0a+() -handball/S. -handballeuse/F.() -handeler/d0a+() -handicap/S. -handicapante/F.() -handicapée/F.() -handicaper/a0a+() -handicapeur/S. -handisport/S. -hangar/S. -hanneton/S. -hannetonnage/S. -hannetonner/a0a+() -hansart/S. -hanse/S. -hanséatique/S. -hantée/F.() -hanter/a0a+() -hantise/S. -hapax/L'D'Q' -haploïde/S*() -haplologie/S*() -haplotype/S*() -happe/S. -happement/S. -happening/S. -happer/a0a+() -haquebute/S. -haquenée/S. -haquet/S. -hara-kiri/S. -haranguée/F.() -haranguer/a0a+() -harangueuse/F.() -haras -harassante/F.() -harassée/F.() -harassement/S. -harasser/a0a+() -harcelante/F.() -harcelée/F.() -harcèlement/S. -harceler/b0a+() -harceleuse/F.() -hard -harde/S. -harder/a0a+() -hardeuse/F.() -hardie/F.() -hardiesse/S. -hardiment -hardware/S. -harem/S. -hareng/S. -harengaison/S. -harengère/S. -harenguet/S. -harengueux -harenguier/S. -haret/S. -harfang/S. -hargne/S. -hargneuse/W.() -hargneusement -haricot/S. -haricoter/a0a+() -haridelle/S. -harissa/S. -harka/S. -harkie/F.() -harle/S. -harmattan/S*() -harmonica/S*() -harmoniciste/S*() -harmonicité/S*() -harmonicorde/S*() -harmonie/S*() -harmonieuse/W*() -harmonieusement/D'Q' -harmonique/S*() -harmoniquement/D'Q' -harmonisation/S*() -harmonisée/F*() -harmoniser/a4a+() -harmonium/S*() -harnachée/F.() -harnachement/S. -harnacher/a0a+() -harnacheur/S. -harnais -harnois -haro/S. -harpagon/S*() -harpail/S. -harpailler/a0a+() -harpe/S. -harpée/F.() -harper/a0a+() -harpie/S. -harpiste/S. -harpon/S. -harponnage/S. -harponnée/F.() -harponnement/S. -harponner/a0a+() -harponneur/S. -harrisme/S. -harriste/S. -hart/S. -haruspice/S*() -hasard/S. -hasardée/F.() -hasarder/a0a+() -hasardeuse/W.() -hasch/S. -haschisch/S. -haschischée/F.() -haschischine/F.() -haschischisme/S. -hase/S. -hassidique/S. -hassidisme/S. -hassium/S. -hast/S*() -hastaire/S. -haste/S. -hastée/F.() -hâte/S. -hâtée/F.() -hâtelet/S. -hâtelette/S. -hâtelle/S. -hâter/a0a+() -hâtereau/X. -hâtier/S. -hâtive/F.() -hâtiveau/X. -hâtivement -hauban/S. -haubanage/S. -haubaner/a0a+() -haubert/S. -hausse/S. -hausse-col/S. -haussement/S. -hausser/a0a+() -haussière/F.() -haussmannienne/F*() -haut -haut/S. -hautaine/F.() -hautainement -hautbois -hautboïste/S. -haut-commissaire -haut-commissariat -haut-de-chausse -haut-de-chausses -haut-de-forme -haute/F.() -haute-contre -haute-fidélité -haute-lisse -haute-lissière/F.() -hautement -hautes-contre -hautes-fidélités -hautes-lisses -hautesse/S. -hautes-villes -hauteur/S. -haute-ville -haut-fond -hautin/S. -haut-le-cœur -haut-le-corps -haut-parleur/S. -haut-relief -hauts-commissaires -hauts-commissariats -hauts-de-chausse -hauts-de-chausses -hauts-de-forme -hauts-fonds -hauts-reliefs -hauturière/F.() -havage/S. -havanaise/F.() -havane/S. -hâve/S. -haveneau/X. -havenet/S. -haver/a0a+() -haveuse/F.() -havir/f0f+() -havre/S. -havresac/S. -hawaïenne/F*() -hayon/S. -hé -heaume/S. -heaumier/S. -hebdo/S*() -hebdomadaire/S*() -hebdomadairement/D'Q' -hebdomadière/F*() -hébéphrénie/S*() -hébéphrénique/S*() -hébergée/F*() -hébergement/S*() -héberger/a2a+() -hébergeur/S*() -hébertisme/S*() -hébétée/F*() -hébétement/S*() -hébéter/c4a+() -hébétude/S*() -hébraïque/S*() -hébraïsante/F*() -hébraïser/a2a+() -hébraïsme/S*() -hébreu/X*() -hécatombe/S*() -hectare/S*() -hectique/S*() -hectométrique/S*() -hectopièze/S*() -hédéracée/S*() -hédonisme/S*() -hédoniste/S*() -hégélianisme/S*() -hégélienne/F*() -hégémonie/S*() -hégémonique/S*() -hégire/S*() -heiduque/S. -heimatlos -hein -hélépole/S*() -héler/c0a+() -hélianthe/S*() -hélianthème/S*() -hélianthine/S*() -héliaque/S*() -héliaste/S*() -hélice/S*() -hélicicultrice/F*() -héliciculture/S*() -hélico/S*() -hélicoïdale/W*() -hélicoïde/S*() -hélicon/S*() -hélicoptère/S*() -hélicoptériste/S*() -héligare/S*() -héliocentrique/S*() -héliocentrisme/S*() -héliochromie/S*() -héliogaine/S*() -héliographe/S*() -héliographie/S*() -héliograveur/S*() -héliogravure/S*() -héliomarine/F*() -héliomètre/S*() -hélion/S*() -héliopause/S*() -héliophile/S*() -héliosphère/S*() -héliosphérique/S*() -héliostat/S*() -héliothérapie/S*() -héliotrope/S*() -héliotropine/S*() -héliotropisme/S*() -héliport/S*() -héliportage/S*() -héliportée/F*() -héliporter/a2a+() -hélitreuillée/F*() -hélitreuiller/a2a+() -hélium/S*() -hélix/L'D'Q' -hellébore/S*() -hellène/S*() -hellénique/S*() -hellénisante/F*() -hellénisation/S*() -hellénisée/F*() -helléniser/a4a+() -hellénisme/S*() -helléniste/S*() -hellénistique/S*() -hellénophone/S*() -hello -helminthe/S*() -helminthiase/S*() -helminthique/S*() -helminthologie/S*() -helvelle/S*() -helvète/S*() -helvétique/S*() -helvétisme/S*() -hem -hémarthrose/S*() -hématémèse/S*() -hématidrose/S*() -hématie/S*() -hématine/S*() -hématique/S*() -hématite/S*() -hématologie/S*() -hématologique/S*() -hématologiste/S*() -hématologue/S*() -hématome/S*() -hématopoïèse/S*() -hématopoïétique/S*() -hématose/S*() -hématozoaire/S*() -hématurie/S*() -héméralope/S*() -héméralopie/S*() -hémérocalle/S*() -hémialgie/S*() -hémicrânie/S*() -hémicycle/S*() -hémicylindrique/S*() -hémièdre/S*() -hémiédrie/S*() -hémiédrique/S*() -hémine/S*() -hémione/S*() -hémiparésie/S*() -hémiplégie/S*() -hémiplégique/S*() -hémiptère/S*() -hémisphère/S*() -hémisphérique/S*() -hémistiche/S*() -hémitropie/S*() -hémoculture/S*() -hémocyanine/S*() -hémodialyse/S*() -hémodynamique/S*() -hémogénie/S*() -hémoglobine/S*() -hémogramme/S*() -hémolyse/S*() -hémolysine/S*() -hémolytique/S*() -hémopathie/S*() -hémophile/S*() -hémophilie/S*() -hémoptysie/S*() -hémoptysique/S*() -hémorragie/S*() -hémorragique/S*() -hémorroïdaire/S*() -hémorroïdale/W*() -hémorroïde/S*() -hémosidérine/S*() -hémostase/S*() -hémostatique/S*() -hémotypologie/S*() -hendécagone/S*() -hendécalogie/S*() -hendécasyllabe/S*() -henné/S. -hennin/S. -hennir/f0() -hennissante/F.() -hennissement/S. -hennuyère/F.() -hénothéisme/S*() -henry/Um() -hensélien/S*() -hep -héparine/S*() -hépatalgie/S*() -hépatique/S*() -hépatisation/S*() -hépatisme/S*() -hépatite/S*() -hépatocèle/S*() -hépatographie/S*() -hépatologie/S*() -hépatologue/S*() -hépatomégalie/S*() -heptaèdre/S*() -heptagonale/W*() -heptagone/S*() -heptalogie/S*() -heptamètre/S*() -heptathlon/S*() -héraldique/S*() -héraldiste/S*() -héraut/S. -herbacée/F*() -herbage/S*() -herbagée/F*() -herbager/a2a+() -herbagère/F*() -herbe/S*() -herbée/F*() -herber/a2a+() -herberie/S*() -herbette/S*() -herbeuse/W*() -herbicide/S*() -herbier/S*() -herbivore/S*() -herborisation/S*() -herborisatrice/F*() -herborisée/F*() -herboriser/a1() -herboriste/S*() -herboristerie/S*() -herbue/F*() -herbue/S*() -herchage/S. -hercher/a0() -hercheuse/F.() -hercule/S*() -herculéenne/F*() -hercynienne/F*() -herd-book/S. -hère/S. -héréditaire/S*() -héréditairement/D'Q' -hérédité/S*() -hérédosyphilis/L'D'Q' -hérésiarque/S*() -hérésie/S*() -hérétique/S*() -hérissée/F.() -hérissement/S. -hérisser/a0a+() -hérissonne/F.() -hérissonner/a0a+() -héritage/S*() -héritée/F*() -hériter/a1() -héritière/F*() -hermandad/S. -hermaphrodisme/S*() -hermaphrodite/S*() -herméneute/S*() -herméneutique/S*() -hermès/L'D'Q' -hermesse/S. -herméticité/S*() -hermétique/S*() -hermétiquement/D'Q' -hermétisme/S*() -hermétiste/S*() -hermine/S*() -herminée/F*() -herminette/S*() -hermitienne/F*() -herniaire/S. -hernie/S. -herniée/F.() -hernieuse/W.() -héroï-comique/S*() -héroïne/S*() -héroïnomane/S*() -héroïque/S*() -héroïquement/D'Q' -héroïsme/S*() -héron/S. -héronneau/X. -héronnière/S. -héros -herpe/S. -herpès/L'D'Q' -herpétique/S*() -herpétologie/S*() -herpétologique/S*() -herpétologiste/S*() -hersage/S. -herse/S. -herser/a0a+() -herseuse/F.() -hertz/Um() -hertzienne/F.() -hervienne/F.() -hesbignonne/F.() -hésitante/F*() -hésitation/S*() -hésiter/a1() -hessienne/F.() -hétaïre/S*() -hétairie/S*() -hétéro/S*() -hétérocentrique/S*() -hétérocerque/S*() -hétérochromosome/S*() -hétérochronie/S*() -hétéroclite/S*() -hétérocyclique/S*() -hétérodoxe/S*() -hétérodoxie/S*() -hétérodyne/S*() -hétérogamie/S*() -hétérogène/S*() -hétérogénéité/S*() -hétérogénie/S*() -hétérogreffe/S*() -hétérologue/S*() -hétéromorphe/S*() -hétéromorphisme/S*() -hétéronome/S*() -hétéronomie/S*() -hétéroptère/S*() -hétérosexualité/S*() -hétérosexuelle/F*() -hétérotherme/S*() -hétérothermie/S*() -hétérotrophe/S*() -hétérotrophie/S*() -hétérozygote/S*() -hetman/S*() -hêtraie/S. -hêtre/S. -heu -heure/F*() -heure-homme/L'D'Q' -heure-machine/L'D'Q' -heures-homme/D'Q' -heures-machine/D'Q' -heureuse/W*() -heureusement/D'Q' -heuristique/S*() -heurt/S. -heurtée/F.() -heurter/a0a+() -heurtoir/S. -hévéa/S*() -hexachlorure/S*() -hexacoralliaire/S*() -hexacorde/S*() -hexadécimale/W*() -hexaèdre/S*() -hexagonale/W*() -hexagone/S*() -hexagramme/S*() -hexalogie/S*() -hexamètre/S*() -hexapode/S*() -hexose/S*() -hi -hiatale/W*() -hiatus/L'D'Q' -hibernale/W*() -hibernante/F*() -hibernation/S*() -hiberner/a1() -hibiscus/L'D'Q' -hibou/X. -hic -hickory/S. -hidalgo/S*() -hideur/S. -hideuse/W.() -hideusement -hidrosadénite/S*() -hie/S. -hièble/S*() -hiémale/W*() -hier/D'Q' -hiérarchie/S. -hiérarchique/S. -hiérarchiquement -hiérarchisation/S. -hiérarchisée/F.() -hiérarchiser/a0a+() -hiératique/S*() -hiératiquement/D'Q' -hiératisme/S*() -hiérogamie/S*() -hiérogamique/S*() -hiéroglyphe/S*() -hiéroglyphique/S*() -hiérogrammate/S*() -hiérogrammatiste/S*() -hiérophante/S*() -hi-fi -highlander/S. -hi-han -hi-han -hilaire/S. -hilarante/F*() -hilare/S*() -hilarité/S*() -hilbertienne/F*() -hile/S. -himalayenne/F*() -himation/S*() -hindi -hindoue/F*() -hindouisme/S*() -hindouiste/S*() -hindoustani/S*() -hinterland/S*() -hip-hop -hipparchie/S*() -hipparion/S*() -hipparque/S*() -hippiatre/S*() -hippiatrie/S*() -hippiatrique/S*() -hippie/S. -hippique/S*() -hippisme/S*() -hippocampe/S*() -hippocastanacée/S*() -hippocratique/S*() -hippocratisme/S*() -hippodrome/S*() -hippogriffe/S*() -hippologie/S*() -hippologique/S*() -hippomobile/S*() -hippophagique/S*() -hippopotame/S*() -hippopotamesque/S*() -hippurique/S*() -hiragana/S. -hircine/F*() -hirondeau/X*() -hirondelle/S*() -hirsute/S*() -hirsutisme/S*() -hirudinée/S*() -hispanique/S*() -hispanisante/F*() -hispanisation/S*() -hispaniser/a4a+() -hispanisme/S*() -hispaniste/S*() -hispano-américaine/F*() -hispano-arabe/S*() -hispanophone/S*() -hispide/S*() -hissée/F.() -hisser/a0a+() -histamine/S*() -histaminique/S*() -histidine/S*() -histochimie/S*() -histocompatibilité/S*() -histogenèse/S*() -histogramme/S*() -histoire/S*() -histologie/S*() -histologique/S*() -histologiste/S*() -histolyse/S*() -histone/S*() -histopathologie/S*() -histopathologique/S*() -histopathologiste/S*() -histoplasmose/S*() -historiale/W*() -historiciser/a2a+() -historicisme/S*() -historicité/S*() -historiée/F*() -historienne/F*() -historier/a2a+() -historiette/S*() -historiographe/S*() -historiographie/S*() -historiographique/S*() -historique/S*() -historiquement/D'Q' -historisation/S*() -historisme/S*() -histrion/S*() -hitlérienne/F*() -hitlérisme/S*() -hit-parade/S. -hittite/S. -hiver/S*() -hivernage/S*() -hivernale/W*() -hivernante/F*() -hivernée/F*() -hiverner/a2a+() -hobby/S. -hobbyiste/S. -hobereau/X. -hoc -hocco/S. -hochement/S. -hochequeue/S. -hocher/a0a+() -hochet/S. -hockey/S. -hockeyeuse/F.() -hoir/S*() -hoirie/S*() -holà -holding/S. -hold-up -holisme/S*() -holiste/S*() -holistique/S*() -hollandaise/F.() -hollande/S. -hollywoodienne/F.() -holmium/S*() -holocauste/S*() -holocène/S*() -hologramme/S*() -holographie/S*() -holographier/a2a+() -holographique/S*() -holométabole/S*() -holomorphe/S*() -holomorphie/S*() -holomorphiquement/D'Q' -holonome/S*() -holonomie/S*() -holonyme/S*() -holonymie/S*() -holophrastique/S*() -holoprotéine/S*() -holoside/S*() -holostéen/S*() -holothurie/S*() -holotype/S*() -holster/S. -homard/S. -homarderie/S. -hombre/S*() -home/S. -homélie/S*() -homéomorphe/S*() -homéomorphisme/S*() -homéopathe/S*() -homéopathie/S*() -homéopathique/S*() -homéostasie/S*() -homéostat/S*() -homéostatique/S*() -homéotherme/S*() -homéothermie/S*() -homéotique/S*() -homérique/S*() -homespun/S. -homicide/S*() -homilétique/S*() -hominem -hominidé/S*() -hominisation/S*() -hominisée/F*() -hominoïde/S*() -hommage/S*() -hommasse/S*() -homme/S*() -homme-grenouille/L'D'Q' -homme-orchestre/L'D'Q' -homme-sandwich/L'D'Q' -hommes-grenouilles/D'Q' -hommes-orchestres/D'Q' -hommes-sandwichs/D'Q' -homo/L'D'Q' -homo/S*() -homocentrique/S*() -homocerque/S*() -homochromie/S*() -homocinétique/S*() -homocyclique/S*() -homodonte/S*() -homofocale/W*() -homogamie/S*() -homogène/S*() -homogénéifier/a2a+() -homogénéisation/S*() -homogénéisatrice/F*() -homogénéisée/F*() -homogénéiser/a2a+() -homogénéité/S*() -homographe/S*() -homographie/S*() -homographique/S*() -homogreffe/S*() -homologable/S*() -homologation/S*() -homologie/S*() -homologique/S*() -homologiquement/D'Q' -homologue/S*() -homologuée/F*() -homologuer/a2a+() -homomorphe/S*() -homomorphisme/S*() -homoncule/S*() -homonyme/S*() -homonymie/S*() -homonymique/S*() -homoparentale/W*() -homoparentalité/S*() -homophobe/S*() -homophobie/S*() -homophone/S*() -homophonie/S*() -homoptère/S*() -homosexualité/S*() -homosexuelle/F*() -homothétie/S*() -homothétique/S*() -homotope/S*() -homotopie/S*() -homotopique/S*() -homotopiquement/D'Q' -homozygote/S*() -hondurienne/F.() -hongre/S. -hongrer/a0a+() -hongroierie/S. -hongroise/F.() -hongroyage/S. -hongroyer/a0a+() -hongroyeuse/F.() -honnête/S*() -honnêtement/D'Q' -honnêteté/S*() -honneur/S*() -honnie/F.() -honnir/f0f+() -honorabilité/S*() -honorable/S*() -honorablement/D'Q' -honoraire/S*() -honorariat/S*() -honorée/F*() -honorer/a4a+() -honorifique/S*() -honoris -honte/S. -honteuse/W.() -honteusement -hooligan/S. -hooliganisme/S. -hop -hôpital/X*() -hoplite/S*() -hoquet/S. -hoqueter/d0() -hoqueton/S. -horaire/S*() -horde/S. -hordéine/S*() -horeca/L' -horion/S. -horizon/S*() -horizontale/W*() -horizontalement/D'Q' -horizontalité/S*() -horloge/S*() -horlogère/F*() -horlogerie/S*() -hormis -hormonale/W*() -hormone/S*() -hormonée/F*() -hormoner/a2a+() -hormonothérapie/S*() -hornblende/S. -horocycle/S*() -horocyclique/S*() -horodatage/S*() -horodatée/F*() -horodater/a2a+() -horodatrice/F*() -horographie/S*() -horokilométrique/S*() -horoptère/S*() -horoscope/S*() -horosphère/S*() -horreur/S*() -horrible/S*() -horriblement/D'Q' -horrifiante/F*() -horrifiée/F*() -horrifier/a2a+() -horrifique/S*() -horripilante/F*() -horripilation/S*() -horripilée/F*() -horripiler/a2a+() -hors -horsaine/F.() -hors-bilan -hors-bord -hors-champ -hors-concours -hors-cote -hors-d'œuvre -horse-ball/S. -horse-guard/S. -horse-power -horse-pox -hors-jeu -hors-la-loi -hors-ligne -hors-média -hors-piste -hors-série -hors-série/S. -hors-sol -hors-statut -horst/S. -hors-taxe -hors-texte -hortensia/S*() -horticole/S*() -horticultrice/F*() -horticulture/S*() -hortillonnage/S*() -hortocentre/S*() -hosanna/S*() -hospice/S*() -hospitalière/F*() -hospitalisation/S*() -hospitalisée/F*() -hospitaliser/a2a+() -hospitalisme/S*() -hospitalité/S*() -hospitalo-universitaire/S*() -hospodar/S*() -hostellerie/S*() -hostie/S*() -hostile/S*() -hostilement/D'Q' -hostilité/S*() -hosto/S*() -hot-dog/S. -hôte/S*() -hôtel/S*() -hôtel-Dieu/L'D'Q' -hôtelière/F*() -hôtellerie/S*() -hôtels-Dieu/D'Q' -hôtesse/S*() -hotte/S. -hottée/S. -hottentote/F.() -hottereau/X. -hotteret/S. -hou -houache/S. -houaiche/S. -houblon/S. -houblonnage/S. -houblonner/a0a+() -houblonnière/F.() -houdan/S. -houe/S. -houer/a0a+() -houille/S. -houillère/F.() -houka/S. -houle/S. -houlette/S. -houleuse/W.() -houlque/S. -houp -houppe/S. -houppelande/S. -houpper/a0a+() -houppette/S. -houppier/S. -houque/S. -hourd/S. -hourdage/S. -hourder/a0a+() -hourdir/f0f+() -houri/S. -hourque/S. -hourra -hourra/S. -hourvari/S. -houseau/X. -houspiller/a0a+() -houspilleuse/F.() -houssaie/S. -housse/S. -housser/a0a+() -houssine/S. -houssiner/a0a+() -houssoir/S. -houx -hovercraft/S*() -hoyau/X. -hpz/||-- -huard/S. -huart/S. -hublot/S. -huche/S. -hucher/a0a+() -huchet/S. -huer/a0a+() -huerta/S. -huguenote/F.() -hui/S. -huilage/S*() -huile/S*() -huilée/F*() -huiler/a2a+() -huilerie/S*() -huileuse/W*() -huilière/F*() -huis/L'D'Q' -huisserie/S*() -huissière/F*() -huit -huitain/S. -huitaine/S. -huitante -huitante-cinq -huitante-deux -huitante-et-un -huitante-huit -huitante-neuf -huitante-quatre -huitante-sept -huitante-six -huitante-trois -huitantième/S. -huitième/S. -huitièmement -huître/S*() -huit-reflets -huîtrière/F*() -hulotte/S. -hum -humage/S. -humagne/S*() -humaine/F*() -humainement/D'Q' -humanisation/S*() -humanisée/F*() -humaniser/a4a+() -humanisme/S*() -humaniste/S*() -humanistique/S*() -humanitaire/S*() -humanitarisme/S*() -humanitariste/S*() -humanité/S*() -humanoïde/S*() -humble/S*() -humblement/D'Q' -humectage/S*() -humectant/S*() -humectée/F*() -humecter/a4a+() -humer/a0a+() -humérale/W*() -humérus/L'D'Q' -humeur/S*() -humide/S*() -humidificateur/S*() -humidification/S*() -humidifiée/F*() -humidifier/a2a+() -humidité/S*() -humification/S*() -humiliante/F*() -humiliation/S*() -humiliée/F*() -humilier/a4a+() -humilité/S*() -humorale/W*() -humorisme/S*() -humoriste/S*() -humoristique/S*() -humour/S*() -humus/L'D'Q' -hune/S. -hunier/S. -huppe/S. -huppée/F.() -hurdler/S. -hure/S. -hurlante/F.() -hurlée/F.() -hurlement/S. -hurler/a0a+() -hurleuse/F.() -hurluberlue/F*() -huronienne/F.() -huronne/F.() -hurricane/S. -hussarde/F.() -hussite/S. -hutinet/S. -hutte/S. -hyacinthe/S*() -hyaline/F*() -hyalite/S*() -hyaloïde/S*() -hyaloplasme/S*() -hyaluronique/S*() -hybridation/S*() -hybride/S*() -hybridée/F*() -hybrider/a4a+() -hybridisme/S*() -hybridité/S*() -hydarthrose/S*() -hydatide/S*() -hydne/S*() -hydracide/S*() -hydralcoolique/S*() -hydrargyre/S*() -hydrargyrisme/S*() -hydratable/S*() -hydratante/F*() -hydratation/S*() -hydrate/S*() -hydratée/F*() -hydrater/a4a+() -hydraulicienne/F*() -hydraulique/S*() -hydrauliquement/D'Q' -hydravion/S*() -hydrazine/S*() -hydre/S*() -hydrémie/S*() -hydrie/S*() -hydrique/S*() -hydroalcoolique/S*() -hydrobiologie/S*() -hydrobiologiste/S*() -hydrocarbonate/S*() -hydrocarbonée/F*() -hydrocarbure/S*() -hydrocèle/S*() -hydrocéphale/S*() -hydrocéphalie/S*() -hydrocharidacée/S*() -hydrocharidée/S*() -hydrocoralliaire/S*() -hydrocortisone/S*() -hydrocotyle/S*() -hydrocraquage/S*() -hydroculture/S*() -hydrocution/S*() -hydrodynamique/S*() -hydroélectricité/S*() -hydroélectrique/S*() -hydroélectrolytique/S*() -hydrofoil/S*() -hydrofuge/S*() -hydrofugée/F*() -hydrofuger/a2a+() -hydrogénation/S*() -hydrogène/S*() -hydrogénée/F*() -hydrogéner/c2a+() -hydrogénocarbonate/S*() -hydrogénosulfure/S*() -hydrogéologie/S*() -hydroglisseur/S*() -hydrographe/S*() -hydrographie/S*() -hydrographique/S*() -hydrolase/S*() -hydrolat/S*() -hydrolithe/S*() -hydrologie/S*() -hydrologique/S*() -hydrologiste/S*() -hydrologue/S*() -hydrolysable/S*() -hydrolyse/S*() -hydrolysée/F*() -hydrolyser/a2a+() -hydromancie/S*() -hydromécanique/S*() -hydromel/S*() -hydrométéore/S*() -hydromètre/S*() -hydrométrie/S*() -hydrométrique/S*() -hydrominérale/W*() -hydromorphe/S*() -hydromorphie/S*() -hydronéphrose/S*() -hydropathe/S*() -hydropéricarde/S*() -hydrophile/S*() -hydrophobe/S*() -hydrophobie/S*() -hydrophone/S*() -hydrophyte/S*() -hydropique/S*() -hydropisie/S*() -hydropneumatique/S*() -hydropolitique/S*() -hydroponie/S*() -hydroponique/S*() -hydroptère/S*() -hydroquinone/S*() -hydroscopie/S*() -hydrosilicate/S*() -hydrosoluble/S*() -hydrosphère/S*() -hydrostatique/S*() -hydrothérapie/S*() -hydrothérapique/S*() -hydrothermale/W*() -hydrothermalisme/S*() -hydrothorax/L'D'Q' -hydrotropisme/S*() -hydroxyde/S*() -hydroxyle/S*() -hydroxylée/F*() -hydrozoaire/S*() -hydrure/S*() -hyène/S*() -hygiaphone/S*() -hygiène/S*() -hygiénique/S*() -hygiéniquement/D'Q' -hygiéniste/S*() -hygroma/S*() -hygromètre/S*() -hygrométrie/S*() -hygrométrique/S*() -hygrophile/S*() -hygrophobe/S*() -hygrophyte/S*() -hygroscope/S*() -hygroscopie/S*() -hygroscopique/S*() -hygrostat/S*() -hylobatidé/S*() -hylozoïsme/S*() -hymen/S*() -hyménée/S*() -hyménoptère/S*() -hymne/S*() -hymnologie/S*() -hyoïde/S*() -hyoïdienne/F*() -hypallage/S*() -hyperacidité/S*() -hyperacousie/S*() -hyperactive/F*() -hyperactivité/S*() -hyperalgèbre/S*() -hyperalgésie/S*() -hyperalgie/S*() -hyperbare/S*() -hyperbate/S*() -hyperbole/S*() -hyperbolicité/S*() -hyperbolique/S*() -hyperboliquement/D'Q' -hyperboloïde/S*() -hyperboréenne/F*() -hypercalcémie/S*() -hypercapnie/S*() -hypercentre/S*() -hyperchlorhydrie/S*() -hyperchrome/S*() -hyperchromie/S*() -hypercorrecte/F*() -hypercorrection/S*() -hypercritique/S*() -hypercube/S*() -hyperdolichocéphale/S*() -hyperdulie/S*() -hyperelliptique/S*() -hyperémotive/F*() -hyperémotivité/S*() -hyperespace/S*() -hyperesthésie/S*() -hyperfonction/S*() -hyperfréquence/S*() -hypergenèse/S*() -hypergéométrique/S*() -hyperglycémie/S*() -hypergonar/S*() -hypergraphe/S*() -hypéricacée/S*() -hyperinflation/S*() -hyperkinésie/S*() -hyperkinétique/S*() -hyperlien/S*() -hyperlipémie/S*() -hyperlipidémie/S*() -hypermarché/S*() -hypermédia/S*() -hypermètre/S*() -hypermétrope/S*() -hypermétropie/S*() -hypermnésie/S*() -hypernerveuse/W*() -hypéron/S*() -hyperonyme/S*() -hyperonymie/S*() -hyperplan/S*() -hyperplasie/S*() -hyperréalisme/S*() -hypersécrétion/S*() -hypersensibilité/S*() -hypersensible/S*() -hypersonique/S*() -hypersphère/S*() -hyperstatique/S*() -hypersurface/S*() -hypersustentation/S*() -hypersustentatrice/F*() -hypertélie/S*() -hypertendue/F*() -hypertension/S*() -hypertensive/F*() -hypertexte/S*() -hyperthermie/S*() -hyperthyroïdie/S*() -hypertonie/S*() -hypertonique/S*() -hypertrophie/S*() -hypertrophiée/F*() -hypertrophier/a4a+() -hypertrophique/S*() -hyperventilation/S*() -hyperviseur/S*() -hypnose/S*() -hypnothérapeute/S*() -hypnothérapeutique/S*() -hypnothérapie/S*() -hypnotique/S*() -hypnotiquement/D'Q' -hypnotisable/S*() -hypnotisée/F*() -hypnotiser/a4a+() -hypnotiseuse/F*() -hypnotisme/S*() -hypoacousie/S*() -hypoalgésie/S*() -hypocalorique/S*() -hypocapnie/S*() -hypocauste/S*() -hypocentre/S*() -hypochloreuse/W*() -hypochlorhydrie/S*() -hypochlorite/S*() -hypochrome/S*() -hypocondre/S*() -hypocondriaque/S*() -hypocondrie/S*() -hypocoristique/S*() -hypocras/L'D'Q' -hypocrisie/S*() -hypocrite/S*() -hypocritement/D'Q' -hypocycloïde/S*() -hypoderme/S*() -hypodermique/S*() -hypodermite/S*() -hypodermose/S*() -hypoelliptique/S*() -hypoesthésie/S*() -hypogastre/S*() -hypogastrique/S*() -hypogée/F*() -hypogée/S*() -hypoglosse/S*() -hypoglycémie/S*() -hypoglycémique/S*() -hypogyne/S*() -hypokhâgne/S*() -hypolipémie/S*() -hyponomeute/S*() -hyponyme/S*() -hyponymie/S*() -hypophysaire/S*() -hypophyse/S*() -hypoprotéinémie/S*() -hyposcenium/S*() -hyposécrétion/S*() -hypospadias/L'D'Q' -hypostase/S*() -hypostasiée/F*() -hypostasier/a2a+() -hypostatique/S*() -hypostyle/S*() -hyposulfite/S*() -hyposulfureuse/W*() -hyposynchrone/S*() -hypotendue/F*() -hypotension/S*() -hypoténuse/S*() -hypothalamique/S*() -hypothalamus/L'D'Q' -hypothécable/S*() -hypothécaire/S*() -hypothénar/L'D'Q' -hypothèque/S*() -hypothéquée/F*() -hypothéquer/c4a+() -hypothermie/S*() -hypothèse/S*() -hypothético-déductive/F*() -hypothétique/S*() -hypothétiquement/D'Q' -hypothyroïdie/S*() -hypothyroïdisme/S*() -hypotonie/S*() -hypotonique/S*() -hypotrophie/S*() -hypotypose/S*() -hypoventilation/S*() -hypovigilance/S*() -hypoxie/S*() -hysope/S*() -hystérectomie/S*() -hystérésis/L'D'Q' -hystérie/S*() -hystérique/S*() -hystérographie/S*() -hystérométrie/S*() -hystéroscopie/S*() -hystéroscopique/S*() -i/L' -iambe/S*() -iatrogène/S*() -ibère/S*() -ibéride/S*() -ibérique/S*() -ibid -ibidem -ibis/L'D'Q' -ibuprofène/S*() -icaque/S*() -icaquier/S*() -icarienne/F*() -iceberg/S*() -ice-field/S*() -icelle/D'S. -icelui/D' -ice-shelf/S*() -iceux/D' -ichneumon/S*() -ichnologie/S*() -ichor/S*() -ichoreuse/W*() -ichtyocolle/S*() -ichtyol/S*() -ichtyologie/S*() -ichtyologique/S*() -ichtyologiste/S*() -ichtyologue/S*() -ichtyophage/S*() -ichtyornis/L'D'Q' -ichtyosaure/S*() -ichtyose/S*() -ici/D'Q' -ici-bas/D'Q' -icoglan/S*() -icône/S*() -iconique/S*() -iconiser -iconoclasme/S*() -iconoclaste/S*() -iconoclastie/S*() -iconogène/S*() -iconographe/S*() -iconographie/S*() -iconographique/S*() -iconolâtre/S*() -iconolâtrie/S*() -iconologie/S*() -iconophile/S*() -iconophilie/S*() -iconoscope/S*() -iconostase/S*() -icosaèdre/S*() -ictère/S*() -ictérique/S*() -ictus/L'D'Q' -id -ide/S*() -idéale/W*() -idéalement/D'Q' -idéalisation/S*() -idéalisatrice/F*() -idéalisée/F*() -idéaliser/a4a+() -idéalisme/S*() -idéaliste/S*() -idéalité/S*() -idéals/D'Q' -idéation/S*() -idée/S*() -idée-force/L'D'Q' -idéelle/F*() -idées-forces/D'Q' -idem -idempotente/F*() -identifiable/S*() -identifiant/S*() -identification/S*() -identificatrice/F*() -identifiée/F*() -identifier/a4a+() -identifieur/S*() -identique/S*() -identiquement/D'Q' -identitaire/S*() -identité/S*() -idéogramme/S*() -idéographie/S*() -idéographique/S*() -idéologie/S*() -idéologique/S*() -idéologiquement/D'Q' -idéologisée/F*() -idéologiser/a2a+() -idéologue/S*() -idéomotrice/F*() -ides/D'Q' -idiographique/S*() -idiolecte/S*() -idiomatique/S*() -idiome/S*() -idiopathie/S*() -idiopathique/S*() -idiosyncrasie/S*() -idiote/F*() -idiotement/D'Q' -idiotie/S*() -idiotifier/a2a+() -idiotiser/a2a+() -idiotisme/S*() -idoine/S*() -idolâtre/S*() -idolâtrée/F*() -idolâtrer/a4a+() -idolâtrie/S*() -idolâtrique/S*() -idole/S*() -idylle/S*() -idyllique/S*() -if/S*() -igloo/S*() -igname/S*() -ignare/S*() -ignée/F*() -ignifugation/S*() -ignifuge/S*() -ignifugeante/F*() -ignifugée/F*() -ignifuger/a2a+() -ignimbrite/S*() -ignipuncture/S*() -igniteur/S*() -ignition/S*() -ignivome/S*() -ignoble/S*() -ignoblement/D'Q' -ignominie/S*() -ignominieuse/W*() -ignominieusement/D'Q' -ignorance/S*() -ignorante/F*() -ignorantin/S*() -ignorée/F*() -ignorer/a4a+() -iguane/S*() -iguanodon/S*() -igue/S*() -il/D'Q'SiS. -île/S*() -iléale/W*() -iléite/S*() -iléo-cæcale/W*() -iléon/S*() -îlet/S*() -iléus/L'D'Q' -iliaque/S*() -ilicacée/S*() -îlienne/F*() -ilion/S*() -illégale/W*() -illégalement/D'Q' -illégalité/S*() -illégitime/S*() -illégitimement/D'Q' -illégitimité/S*() -illettrée/F*() -illettrisme/S*() -illicite/S*() -illicitement/D'Q' -illico/D'Q' -illimitée/F*() -illisibilité/S*() -illisible/S*() -illisiblement/D'Q' -illogique/S*() -illogiquement/D'Q' -illogisme/S*() -illumination/S*() -illuminatrice/F*() -illuminée/F*() -illuminer/a4a+() -illuminisme/S*() -illusion/S*() -illusionnée/F*() -illusionner/a4a+() -illusionnisme/S*() -illusionniste/S*() -illusoire/S*() -illusoirement/D'Q' -illustration/S*() -illustrative/F*() -illustratrice/F*() -illustre/S*() -illustré/S*() -illustrée/F*() -illustrement/D'Q' -illustrer/a4a+() -illyrienne/S*() -îlot/S*() -îlotage/S*() -ilote/S*() -îlotière/F*() -ilotisme/S*() -image/S*() -imagée/F*() -imager/a2a+() -imagerie/S*() -imagière/F*() -imaginable/S*() -imaginaire/S*() -imaginairement/D'Q' -imagination/S*() -imaginative/F*() -imaginée/F*() -imaginer/a4a+() -imago/S*() -imam/S*() -imamat/S*() -imanat/S*() -imbattable/S*() -imbécile/S*() -imbécilement/D'Q' -imbécillité/S*() -imberbe/S*() -imbibée/F*() -imbiber/a4a+() -imbibition/S*() -imbrication/S*() -imbriquée/F*() -imbriquer/a4a+() -imbroglio/S*() -imbrûlée/F*() -imbrûlés/D'Q' -imbue/F*() -imbuvable/S*() -imide/S*() -imitable/S*() -imitation/S*() -imitative/F*() -imitatrice/F*() -imitée/F*() -imiter/a2a+() -immaculée/F*() -immanence/S*() -immanente/F*() -immanentisme/S*() -immangeable/S*() -immanquable/S*() -immanquablement/D'Q' -immarcescible/S*() -immariable/S*() -immatérialisée/F*() -immatérialiser/a4a+() -immatérialisme/S*() -immatérialiste/S*() -immatérialité/S*() -immatérielle/F*() -immatriculation/S*() -immatriculée/F*() -immatriculer/a2a+() -immature/S*() -immaturité/S*() -immédiate/F*() -immédiatement/D'Q' -immédiateté/S*() -immémoriale/W*() -immense/S*() -immensément/D'Q' -immensité/S*() -immensurable/S*() -immergée/F*() -immerger/a4a+() -imméritée/F*() -immersion/S*() -immersive/F*() -immettable/S*() -immeuble/S*() -immigrante/F*() -immigration/S*() -immigrée/F*() -immigrer/a1() -imminence/S*() -imminente/F*() -immiscer/a3a+() -immixtion/S*() -immobile/S*() -immobilier/S*() -immobilière/F*() -immobilisation/S*() -immobilisée/F*() -immobiliser/a4a+() -immobilisme/S*() -immobiliste/S*() -immobilité/S*() -immodérée/F*() -immodérément/D'Q' -immodeste/S*() -immodestie/S*() -immolation/S*() -immolée/F*() -immoler/a4a+() -immonde/S*() -immondice/S*() -immorale/W*() -immoralement/D'Q' -immoralisme/S*() -immoraliste/S*() -immoralité/S*() -immortalisation/S*() -immortalisée/F*() -immortaliser/a4a+() -immortalité/S*() -immortelle/F*() -immotivée/F*() -immuabilité/S*() -immuable/S*() -immuablement/D'Q' -immune/F*() -immunisante/F*() -immunisation/S*() -immunisée/F*() -immuniser/a4a+() -immunitaire/S*() -immunité/S*() -immunochimie/S*() -immunocompétente/F*() -immunodéficience/S*() -immunodéficiente/F*() -immunodépresseur/S*() -immunodépressive/F*() -immunogène/S*() -immunogénétique/S*() -immunoglobuline/S*() -immunologie/S*() -immunologique/S*() -immunologiste/S*() -immunologue/S*() -immunopathologie/S*() -immunopathologique/S*() -immunosuppresseur/S*() -immunothérapie/S*() -immunotolérante/F*() -immutabilité/S*() -impact/S*() -impacter/a2a+() -impactite/S*() -impaire/F*() -impala/S*() -impalpabilité/S*() -impalpable/S*() -impaludation/S*() -impaludée/F*() -impanation/S*() -imparable/S*() -impardonnable/S*() -imparfait/S*() -imparfaite/F*() -imparfaitement/D'Q' -imparidigité/S*() -imparipennée/F*() -imparisyllabique/S*() -imparité/S*() -impartageable/S*() -impartiale/W*() -impartialement/D'Q' -impartialité/S*() -impartir/fC() -impasse/S*() -impassibilité/S*() -impassible/S*() -impassiblement/D'Q' -impatiemment/D'Q' -impatience/S*() -impatientante/F*() -impatiente/F*() -impatienter/a4a+() -impatroniser/a4a+() -impavide/S*() -impavidement/D'Q' -impavidité/S*() -impayable/S*() -impayé/S*() -impayée/F*() -impeachment/S*() -impeccabilité/S*() -impeccable/S*() -impeccablement/D'Q' -impécunieuse/W*() -impécuniosité/S*() -impédance/S*() -impédante/F*() -impedimentum/I*() -impénétrabilité/S*() -impénétrable/S*() -impénitence/S*() -impénitente/F*() -impensable/S*() -impensée/F*() -impenses/D'Q' -imper/S*() -impérative/F*() -impérativement/D'Q' -impératrice/S*() -imperceptibilité/S*() -imperceptible/S*() -imperceptiblement/D'Q' -imperdable/S*() -imperfectible/S*() -imperfection/S*() -imperfective/F*() -impériale/W*() -impérialement/D'Q' -impérialisme/S*() -impérialiste/S*() -impérieuse/W*() -impérieusement/D'Q' -impérissable/S*() -impéritie/S*() -imperium/S*() -impermanence/S*() -impermanente/F*() -imperméabilisation/S*() -imperméabiliser/a2a+() -imperméabilité/S*() -imperméable/S*() -impersonnalité/S*() -impersonnelle/F*() -impersonnellement/D'Q' -impertinemment/D'Q' -impertinence/S*() -impertinente/F*() -imperturbabilité/S*() -imperturbable/S*() -imperturbablement/D'Q' -impétigineuse/W*() -impétigo/S*() -impétrante/F*() -impétration/S*() -impétrer/c2a+() -impétueuse/W*() -impétueusement/D'Q' -impétuosité/S*() -impie/S*() -impiété/S*() -impitoyable/S*() -impitoyablement/D'Q' -implacabilité/S*() -implacable/S*() -implacablement/D'Q' -implant/S*() -implantation/S*() -implantée/F*() -implanter/a4a+() -implanteuse/F*() -implantologie/S*() -implantologique/S*() -implantologiste/S*() -implantologue/S*() -implémentation/S*() -implémentée/F*() -implémenter/a2a+() -implexe/S*() -implication/S*() -implicite/S*() -implicitement/D'Q' -impliquée/F*() -impliquer/a4a+() -implorante/F*() -imploration/S*() -implorer/a2a+() -implosée/F*() -imploser/a1() -implosion/S*() -implosive/F*() -impluvium/S*() -impolie/F*() -impoliment/D'Q' -impolitesse/S*() -impolitique/S*() -impondérable/S*() -impopulaire/S*() -impopularité/S*() -import/L'D' -importable/S*() -importance/S*() -importante/F*() -importation/S*() -importatrice/F*() -importée/F*() -importer/a4a+() -import-export/L'D'Q' -importune/F*() -importunée/F*() -importuner/a2a+() -importunité/S*() -imposable/S*() -imposante/F*() -imposée/F*() -imposer/a4a+() -imposeuse/F*() -imposition/S*() -impossibilité/S*() -impossible/S*() -impossiblement/D'Q' -imposte/S*() -imposteur/S*() -imposture/S*() -impôt/S*() -impotence/S*() -impotente/F*() -impraticabilité/S*() -impraticable/S*() -imprécation/S*() -imprécatoire/S*() -imprécatrice/F*() -imprécise/F*() -imprécision/S*() -imprégnation/S*() -imprégnée/F*() -imprégner/c4a+() -imprenable/S*() -impréparation/S*() -imprésario/S*() -imprescriptibilité/S*() -imprescriptible/S*() -impression/S*() -impressionnabilité/S*() -impressionnable/S*() -impressionnante/F*() -impressionnée/F*() -impressionner/a2a+() -impressionnisme/S*() -impressionniste/S*() -imprévisibilité/S*() -imprévisible/S*() -imprévisiblement/D'Q' -imprévision/S*() -imprévoyance/S*() -imprévoyante/F*() -imprévu/S*() -imprévue/F*() -imprimable/S*() -imprimante/F*() -imprimatur/L'D'Q' -imprimé/S*() -imprimée/F*() -imprimer/a4a+() -imprimerie/S*() -imprimeuse/F*() -imprimitive/F*() -improbabilité/S*() -improbable/S*() -improbation/S*() -improbité/S*() -improductive/F*() -improductivité/S*() -impromptu/S*() -impromptue/F*() -imprononçable/S*() -impropre/S*() -improprement/D'Q' -impropriété/S*() -improuvable/S*() -improuver/a2a+() -improvisation/S*() -improvisatrice/F*() -improvisée/F*() -improviser/a4a+() -improviste/L'D' -imprudemment/D'Q' -imprudence/S*() -imprudente/F*() -impubère/S*() -impuberté/S*() -impubliable/S*() -impudemment/D'Q' -impudence/S*() -impudente/F*() -impudeur/S*() -impudicité/S*() -impudique/S*() -impudiquement/D'Q' -impuissance/S*() -impuissante/F*() -impulser/a2a+() -impulsion/S*() -impulsionnelle/F*() -impulsive/F*() -impulsivement/D'Q' -impulsivité/S*() -impunément/D'Q' -impunie/F*() -impunité/S*() -impure/F*() -impureté/S*() -imputabilité/S*() -imputable/S*() -imputation/S*() -imputer/a4a+() -imputrescible/S*() -in -in/||-- -inabordable/S*() -inaboutie/F*() -inabritée/F*() -inaccentuée/F*() -inacceptable/S*() -inacceptation/S*() -inaccessibilité/S*() -inaccessible/S*() -inaccomplie/F*() -inaccomplissement/S*() -inaccordable/S*() -inaccoutumée/F*() -inachevée/F*() -inachèvement/S*() -inaction/S*() -inactivation/S*() -inactive/F*() -inactiver/a2a+() -inactivité/S*() -inactuelle/F*() -inadaptable/S*() -inadaptation/S*() -inadaptée/F*() -inadéquate/F*() -inadéquation/S*() -inadmissibilité/S*() -inadmissible/S*() -inadvertance/S*() -inaliénabilité/S*() -inaliénable/S*() -inaliénation/S*() -inaltérabilité/S*() -inaltérable/S*() -inaltérée/F*() -inamicale/W*() -inamissible/S*() -inamovibilité/S*() -inamovible/S*() -inanalysable/S*() -inanimée/F*() -inanité/S*() -inanitié/S*() -inanition/S*() -inapaisable/S*() -inapaisée/F*() -inaperçue/F*() -inapparente/F*() -inappétence/S*() -inapplicabilité/S*() -inapplicable/S*() -inapplication/S*() -inappliquée/F*() -inappréciable/S*() -inappréciée/F*() -inapprivoisable/S*() -inapprivoisée/F*() -inapprochable/S*() -inappropriée/F*() -inapte/S*() -inaptitude/S*() -inarticulée/F*() -inassimilable/S*() -inassouvie/F*() -inassouvissable/S*() -inassouvissement/S*() -inattaquable/S*() -inatteignable/S*() -inattendue/F*() -inattention/S*() -inattentive/F*() -inaudible/S*() -inaugurale/W*() -inauguration/S*() -inaugurée/F*() -inaugurer/a2a+() -inauthenticité/S*() -inauthentique/S*() -inavouable/S*() -inavouée/F*() -inca/S*() -incalculable/S*() -incandescence/S*() -incandescente/F*() -incantation/S*() -incantatoire/S*() -incantatrice/F*() -incanter/a2a+() -incapable/S*() -incapacitante/F*() -incapacité/S*() -incarcération/S*() -incarcérée/F*() -incarcérer/c2a+() -incarnadine/F*() -incarnardin/S*() -incarnate/F*() -incarnation/S*() -incarnée/F*() -incarner/a4a+() -incartade/S*() -incasique/S*() -incassable/S*() -incendiaire/S*() -incendie/S*() -incendiée/F*() -incendier/a2a+() -incertaine/F*() -incertitude/S*() -incessamment/D'Q' -incessante/F*() -incessibilité/S*() -incessible/S*() -inceste/S*() -incestueuse/W*() -incestueusement/D'Q' -inchangée/F*() -inchantable/S*() -inchauffable/S*() -inchavirable/S*() -inchoative/F*() -incidemment/D'Q' -incidence/S*() -incident/S*() -incidente/F*() -incinérateur/S*() -incinération/S*() -incinérée/F*() -incinérer/c2a+() -incipit/L'D'Q' -incise/S*() -incisée/F*() -inciser/a2a+() -incision/S*() -incisive/F*() -incisive/S*() -incisure/S*() -incitante/F*() -incitation/S*() -incitative/F*() -incitatrice/F*() -incitée/F*() -inciter/a2a+() -incivile/F*() -incivilité/S*() -incivique/S*() -incivisme/S*() -inclassable/S*() -inclémence/S*() -inclémente/F*() -inclinable/S*() -inclinaison/S*() -inclination/S*() -inclinée/F*() -incliner/a4a+() -inclure/xL() -incluse/F*() -inclusion/S*() -inclusive/F*() -inclusivement/D'Q' -incoagulable/S*() -incoercibilité/S*() -incoercible/S*() -incognito/S*() -incohérence/S*() -incohérente/F*() -incoiffable/S*() -incollable/S*() -incolore/S*() -incomber/aG() -incombustibilité/S*() -incombustible/S*() -incomestible/S*() -incommensurabilité/S*() -incommensurable/S*() -incommensurablement/D'Q' -incommodante/F*() -incommode/S*() -incommodée/F*() -incommodément/D'Q' -incommoder/a2a+() -incommodité/S*() -incommunicabilité/S*() -incommunicable/S*() -incommutabilité/S*() -incomparabilité/S*() -incomparable/S*() -incomparablement/D'Q' -incompatibilité/S*() -incompatible/S*() -incompétence/S*() -incompétente/F*() -incomplète/F*() -incomplètement/D'Q' -incomplétude/S*() -incompréhensibilité/S*() -incompréhensible/S*() -incompréhension/S*() -incompréhensive/F*() -incompressibilité/S*() -incompressible/S*() -incomprise/F*() -inconcevable/S*() -inconcevablement/D'Q' -inconciliable/S*() -inconciliablement/D'Q' -inconditionnalité/S*() -inconditionnée/F*() -inconditionnelle/F*() -inconditionnellement/D'Q' -inconduite/S*() -inconfort/S*() -inconfortable/S*() -inconfortablement/D'Q' -incongelable/S*() -incongrue/F*() -incongruité/S*() -incongrûment/D'Q' -inconnaissable/S*() -inconnaissance/S*() -inconnue/F*() -inconsciemment/D'Q' -inconscience/S*() -inconsciente/F*() -inconséquence/S*() -inconséquente/F*() -inconsidérée/F*() -inconsidérément/D'Q' -inconsistance/S*() -inconsistante/F*() -inconsolable/S*() -inconsolée/F*() -inconsommable/S*() -inconstance/S*() -inconstante/F*() -inconstatable/S*() -inconstitutionnalité/S*() -inconstitutionnelle/F*() -inconstitutionnellement/D'Q' -inconstructible/S*() -incontestabilité/S*() -incontestable/S*() -incontestablement/D'Q' -incontestée/F*() -incontinence/S*() -incontinente/F*() -incontournable/S*() -incontrôlable/S*() -incontrôlée/F*() -inconvenance/S*() -inconvenante/F*() -inconvénient/S*() -inconvertibilité/S*() -inconvertible/S*() -incoordination/S*() -incorporable/S*() -incorporation/S*() -incorporatrice/F*() -incorporée/F*() -incorporelle/F*() -incorporer/a4a+() -incorrecte/F*() -incorrectement/D'Q' -incorrection/S*() -incorrigible/S*() -incorrigiblement/D'Q' -incorruptibilité/S*() -incorruptible/S*() -incorruptiblement/D'Q' -incrédule/S*() -incrédulité/S*() -incréée/F*() -incrément/S*() -incrémentale/W*() -incrémentation/S*() -incrémentée/F*() -incrémenter/a2a+() -incrémentielle/F*() -increvable/S*() -incriminable/S*() -incrimination/S*() -incriminée/F*() -incriminer/a4a+() -incristallisable/S*() -incrochetable/S*() -incroyable/S*() -incroyablement/D'Q' -incroyance/S*() -incroyante/F*() -incrustante/F*() -incrustation/S*() -incrustée/F*() -incruster/a4a+() -incrusteuse/F*() -incubation/S*() -incubatrice/F*() -incube/S*() -incuber/a2a+() -incuite/F*() -inculcation/S*() -inculpable/S*() -inculpation/S*() -inculpée/F*() -inculper/a2a+() -inculquée/F*() -inculquer/a2a+() -inculte/S*() -incultivable/S*() -incultivée/F*() -inculture/S*() -incunable/S*() -incurabilité/S*() -incurable/S*() -incurablement/D'Q' -incurie/S*() -incurieuse/W*() -incuriosité/S*() -incursion/S*() -incurvation/S*() -incurvée/F*() -incurver/a4a+() -incuse/S*() -indaguer/a1() -indatable/S*() -inde/S*() -indébrouillable/S*() -indécachetable/S*() -indécelable/S*() -indécemment/D'Q' -indécence/S*() -indécente/F*() -indéchiffrable/S*() -indéchiffrée/F*() -indéchirable/S*() -indécidable/S*() -indécise/F*() -indécision/S*() -indéclinable/S*() -indécollable/S*() -indécomposable/S*() -indécrochable/S*() -indécrottable/S*() -indécrottablement/D'Q' -indéfectibilité/S*() -indéfectible/S*() -indéfectiblement/D'Q' -indéfendable/S*() -indéfinie/F*() -indéfiniment/D'Q' -indéfinissable/S*() -indéformable/S*() -indéfrichable/S*() -indéfrisable/S*() -indélébile/S*() -indélébilement/D'Q' -indélébilité/S*() -indélibérée/F*() -indélicate/F*() -indélicatesse/S*() -indélogeable/S*() -indémaillable/S*() -indemne/S*() -indemnisable/S*() -indemnisation/S*() -indemnisée/F*() -indemniser/a4a+() -indemnitaire/S*() -indemnité/S*() -indémodable/S*() -indémontable/S*() -indémontrable/S*() -indéniable/S*() -indéniablement/D'Q' -indénombrable/S*() -indentation/S*() -indenter/a2a+() -indépassable/S*() -indépendamment/D'Q' -indépendance/S*() -indépendante/F*() -indépendantisme/S*() -indépendantiste/S*() -indéracinable/S*() -indéréglable/S*() -indescriptible/S*() -indésirable/S*() -indestructibilité/S*() -indestructible/S*() -indestructiblement/D'Q' -indétectable/S*() -indéterminable/S*() -indétermination/S*() -indéterminée/F*() -indéterminisme/S*() -indétrônable/S*() -index/L'D'Q' -indexage/S*() -indexation/S*() -indexée/F*() -indexer/a2a+() -indianisme/S*() -indianiste/S*() -indianocéanique/S*() -indican/S*() -indication/S*() -indicative/F*() -indicatrice/F*() -indice/S*() -indicée/F*() -indicer/a2a+() -indiciaire/S*() -indicible/S*() -indiciblement/D'Q' -indicielle/F*() -indiction/S*() -indienne/F*() -indifféremment/D'Q' -indifférence/S*() -indifférenciation/S*() -indifférenciée/F*() -indifférente/F*() -indifférer/c2a+() -indigence/S*() -indigène/S*() -indigénisme/S*() -indigente/F*() -indigeste/S*() -indigestion/S*() -indigète/S*() -indignation/S*() -indigne/S*() -indignée/F*() -indignement/D'Q' -indigner/a4a+() -indignité/S*() -indigo/S*() -indigotier/S*() -indigotine/S*() -indiquée/F*() -indiquer/a2a+() -indirecte/F*() -indirectement/D'Q' -indiscernable/S*() -indiscipline/S*() -indisciplinée/F*() -indiscrète/F*() -indiscrètement/D'Q' -indiscrétion/S*() -indiscutable/S*() -indiscutablement/D'Q' -indiscutée/F*() -indispensable/S*() -indisponibilité/S*() -indisponible/S*() -indisposée/F*() -indisposer/a2a+() -indisposition/S*() -indissociable/S*() -indissociablement/D'Q' -indissolubilité/S*() -indissoluble/S*() -indissolublement/D'Q' -indistincte/F*() -indistinctement/D'Q' -indistinguable/S*() -indium/S*() -individu/S*() -individualisation/S*() -individualisée/F*() -individualiser/a4a+() -individualisme/S*() -individualiste/S*() -individualité/S*() -individuation/S*() -individuelle/F*() -individuellement/D'Q' -indivisaire/S*() -indivise/F*() -indivisément/D'Q' -indivisibilité/S*() -indivisible/S*() -indivision/S*() -in-dix-huit/L'D'Q' -indochinoise/F*() -indocile/S*() -indocilité/S*() -indo-européenne/F*() -indole/S*() -indolemment/D'Q' -indolence/S*() -indolente/F*() -indolore/S*() -indomptable/S*() -indomptée/F*() -indonésienne/F*() -in-douze/L'D'Q' -indubitable/S*() -indubitablement/D'Q' -inductance/S*() -induction/S*() -inductive/F*() -inductrice/F*() -indue/F*() -induire/yL() -induite/F*() -indulgence/S*() -indulgenciée/F*() -indulgencier/a2a+() -indulgente/F*() -induline/S*() -indult/S*() -indûment/D'Q' -induration/S*() -indurée/F*() -indurer/a2a+() -indusie/S*() -industrialisation/S*() -industrialisée/F*() -industrialiser/a4a+() -industrialisme/S*() -industrie/S*() -industrielle/F*() -industriellement/D'Q' -industrieuse/W*() -industrieusement/D'Q' -induvie/S*() -inébranlable/S*() -inébranlablement/D'Q' -inéchangeable/S*() -inécoutable/S*() -inécoutée/F*() -inédite/F*() -ineffable/S*() -ineffablement/D'Q' -ineffaçable/S*() -inefficace/S*() -inefficacement/D'Q' -inefficacité/S*() -inefficiente/F*() -inégalable/S*() -inégale/W*() -inégalée/F*() -inégalement/D'Q' -inégalitaire/S*() -inégalité/S*() -inélasticité/S*() -inélastique/S*() -inélégance/S*() -inélégante/F*() -inéligibilité/S*() -inéligible/S*() -inéluctabilité/S*() -inéluctable/S*() -inéluctablement/D'Q' -inemployable/S*() -inemployée/F*() -inénarrable/S*() -inentamée/F*() -inéprouvée/F*() -inepte/S*() -ineptie/S*() -inépuisable/S*() -inépuisablement/D'Q' -inépuisée/F*() -inéquation/S*() -inéquitable/S*() -inerme/S*() -inertage/S*() -inerte/S*() -inertie/S*() -inertielle/F*() -inescomptable/S*() -inespérée/F*() -inesthétique/S*() -inestimable/S*() -inétendue/F*() -inévitable/S*() -inévitablement/D'Q' -inexacte/F*() -inexactement/D'Q' -inexactitude/S*() -inexcusable/S*() -inexécutable/S*() -inexécutée/F*() -inexécution/S*() -inexercée/F*() -inexhaustible/S*() -inexistante/F*() -inexistence/S*() -inexorabilité/S*() -inexorable/S*() -inexorablement/D'Q' -inexpérience/S*() -inexpérimentée/F*() -inexperte/F*() -inexpiable/S*() -inexpiée/F*() -inexplicabilité/S*() -inexplicable/S*() -inexplicablement/D'Q' -inexpliquée/F*() -inexploitable/S*() -inexploitée/F*() -inexplorable/S*() -inexplorée/F*() -inexplosible/S*() -inexpressive/F*() -inexprimable/S*() -inexprimée/F*() -inexpugnable/S*() -inextensible/S*() -inextinguible/S*() -inextirpable/S*() -inextricable/S*() -inextricablement/D'Q' -infaillibilité/S*() -infaillible/S*() -infailliblement/D'Q' -infaisable/S*() -infalsifiable/S*() -infamante/F*() -infâme/S*() -infamie/S*() -infante/F*() -infanterie/S*() -infanticide/S*() -infantile/S*() -infantilisation/S*() -infantilisée/F*() -infantiliser/a2a+() -infantilisme/S*() -infarctus/L'D'Q' -infatigabilité/S*() -infatigable/S*() -infatigablement/D'Q' -infatuation/S*() -infatuée/F*() -infatuer/a4a+() -inféconde/F*() -infécondité/S*() -infectante/F*() -infecte/F*() -infectée/F*() -infecter/a4a+() -infectieuse/W*() -infectiologie/S*() -infectiologique/S*() -infectiologue/S*() -infection/S*() -inféodation/S*() -inféodée/F*() -inféoder/a4a+() -infère/S*() -inférée/F*() -inférence/S*() -inférer/c2a+() -inférieure/F*() -inférieurement/D'Q' -infériorisation/S*() -infériorisée/F*() -inférioriser/a2a+() -infériorité/S*() -infermentescible/S*() -infernale/W*() -infernalement/D'Q' -infertile/S*() -infertilité/S*() -infestation/S*() -infestée/F*() -infester/a2a+() -infeutrable/S*() -infibulation/S*() -infidèle/S*() -infidèlement/D'Q' -infidélité/S*() -infiltration/S*() -infiltrée/F*() -infiltrer/a4a+() -infime/S*() -infinie/F*() -infiniment/L'D'Q' -infinitaire/S*() -infinité/S*() -infinitésimale/W*() -infinitive/F*() -infinitude/S*() -infirmation/S*() -infirmative/F*() -infirme/S*() -infirmée/F*() -infirmer/a2a+() -infirmerie/S*() -infirmière/F*() -infirmité/S*() -infixe/S*() -inflammabilité/S*() -inflammable/S*() -inflammation/S*() -inflammatoire/S*() -inflation/S*() -inflationnaire/S*() -inflationniste/S*() -infléchie/F*() -infléchir/f4f+() -infléchissement/S*() -inflexibilité/S*() -inflexible/S*() -inflexiblement/D'Q' -inflexion/S*() -infligée/F*() -infliger/a4a+() -inflorescence/S*() -influençable/S*() -influence/S*() -influencée/F*() -influencer/a2a+() -influente/F*() -influenza/S*() -influer/a1() -influx/L'D'Q' -info/S*() -infobulle/S*() -infogérance/S*() -infogérant/S*() -infographe/S*() -infographie/S*() -infographiste/S*() -in-folio/L'D'Q' -infondée/F*() -informaticienne/F*() -information/S*() -informationnelle/F*() -informatique/S*() -informatisable/S*() -informatisation/S*() -informatisée/F*() -informatiser/a4a+() -informative/F*() -informatrice/F*() -informe/S*() -informée/F*() -informelle/F*() -informellement/D'Q' -informer/a4a+() -informulée/F*() -inforoute/S*() -infortune/S*() -infortunée/F*() -infra/L'D' -infraction/S*() -infractionnelle/F*() -infranchissable/S*() -infrangible/S*() -infrarouge/S*() -infrason/S*() -infrasonore/S*() -infrastructure/S*() -infréquentable/S*() -infréquentée/F*() -infroissable/S*() -infructueuse/W*() -infructueusement/D'Q' -infule/S*() -infumable/S*() -infundibuliforme/S*() -infundibulum/S*() -infuse/F*() -infusée/F*() -infuser/a2a+() -infusible/S*() -infusion/S*() -infusoire/S*() -ingagnable/S*() -ingambe/S*() -ingénier/a3a+() -ingénierie/S*() -ingénieur-conseil/L'D'Q' -ingénieure/F*() -ingénieure-conseil/L'D'Q' -ingénieures-conseils/D'Q' -ingénieurs-conseils/D'Q' -ingénieuse/W*() -ingénieusement/D'Q' -ingéniosité/S*() -ingénue/F*() -ingénuité/S*() -ingénument/D'Q' -ingérable/S*() -ingérée/F*() -ingérence/S*() -ingérer/c4a+() -ingestion/S*() -ingouvernable/S*() -ingrate/F*() -ingratement/D'Q' -ingratitude/S*() -ingrédient/S*() -ingression/S*() -inguérissable/S*() -inguinale/W*() -ingurgitation/S*() -ingurgitée/F*() -ingurgiter/a2a+() -inhabile/S*() -inhabileté/S*() -inhabilité/S*() -inhabitable/S*() -inhabitée/F*() -inhabituelle/F*() -inhalateur/S*() -inhalation/S*() -inhalatrice/F*() -inhalée/F*() -inhaler/a2a+() -inharmonieuse/W*() -inhérence/S*() -inhérente/F*() -inhibée/F*() -inhiber/a2a+() -inhibition/S*() -inhibitive/F*() -inhibitrice/F*() -inhomogénéité/S*() -inhospitalière/F*() -inhumaine/F*() -inhumainement/D'Q' -inhumanité/S*() -inhumation/S*() -inhumée/F*() -inhumer/a2a+() -inimaginable/S*() -inimitable/S*() -inimitée/F*() -inimitié/S*() -ininflammable/S*() -inintelligemment/D'Q' -inintelligence/S*() -inintelligente/F*() -inintelligibilité/S*() -inintelligible/S*() -inintelligiblement/D'Q' -inintéressante/F*() -ininterrompue/F*() -inique/S*() -iniquement/D'Q' -iniquité/S*() -initiale/W*() -initialement/D'Q' -initialer/a2a+() -initialisation/S*() -initialisée/F*() -initialiser/a2a+() -initiation/S*() -initiatique/S*() -initiative/S*() -initiatrice/F*() -initiée/F*() -initier/a4a+() -initio -injaculation/S*() -injectable/S*() -injectée/F*() -injecter/a4a+() -injection/S*() -injective/F*() -injectivité/S*() -injectrice/F*() -injoignable/S*() -injonction/S*() -injonctive/F*() -injouable/S*() -injure/S*() -injuriée/F*() -injurier/a4a+() -injurieuse/W*() -injurieusement/D'Q' -injuste/S*() -injustement/D'Q' -injustice/S*() -injustifiable/S*() -injustifiée/F*() -inlandsis/L'D'Q' -inlassable/S*() -inlassablement/D'Q' -inlay/S*() -innée/F*() -innéisme/S*() -innéiste/S*() -innéité/S*() -innervation/S*() -innervée/F*() -innerver/a2a+() -innocemment/D'Q' -innocence/S*() -innocente/F*() -innocentée/F*() -innocenter/a2a+() -innocuité/S*() -innombrable/S*() -innominée/F*() -innommable/S*() -innommée/F*() -innovante/F*() -innovation/S*() -innovatrice/F*() -innovée/F*() -innover/a2a+() -inobservable/S*() -inobservance/S*() -inobservation/S*() -inobservée/F*() -inoccupation/S*() -inoccupée/F*() -in-octavo/L'D'Q' -inoculable/S*() -inoculation/S*() -inoculée/F*() -inoculer/a4a+() -inodore/S*() -inoffensive/F*() -inondable/S*() -inondation/S*() -inondée/F*() -inonder/a4a+() -inopérable/S*() -inopérante/F*() -inopinée/F*() -inopinément/D'Q' -inopportune/F*() -inopportunément/D'Q' -inopportunité/S*() -inopposabilité/S*() -inopposable/S*() -inorganique/S*() -inorganisation/S*() -inorganisée/F*() -inotrope/S*() -inoubliable/S*() -inouïe/F*() -inox/L'D'Q' -inoxydabilité/S*() -inoxydable/S*() -in-plano/L'D'Q' -input/S*() -inqualifiable/S*() -inquart/S*() -in-quarto/L'D'Q' -inquiétante/F*() -inquiète/F*() -inquiétée/F*() -inquiéter/c4a+() -inquiétude/S*() -inquisition/S*() -inquisitoire/S*() -inquisitoriale/W*() -inquisitrice/F*() -inracontable/S*() -inrayable/S*() -insaisissabilité/S*() -insaisissable/S*() -insalissable/S*() -insalivation/S*() -insalubre/S*() -insalubrité/S*() -insane/S*() -insanité/S*() -insatiabilité/S*() -insatiable/S*() -insatiablement/D'Q' -insatisfaction/S*() -insatisfaisante/F*() -insatisfaite/F*() -insaturée/F*() -inscriptible/S*() -inscription/S*() -inscrire/y1() -inscrite/F*() -inscrivante/F*() -insculpée/F*() -insculper/a2a+() -insécabilité/S*() -insécable/S*() -insectarium/S*() -insecte/S*() -insecticide/S*() -insectifuge/S*() -insectivore/S*() -insécurité/S*() -in-seize/L'D'Q' -inselberg/S*() -insémination/S*() -inséminatrice/F*() -inséminée/F*() -inséminer/a2a+() -insensée/F*() -insensibilisation/S*() -insensibilisée/F*() -insensibiliser/a4a+() -insensibilité/S*() -insensible/S*() -insensiblement/D'Q' -inséparabilité/S*() -inséparable/S*() -inséparablement/D'Q' -insérable/S*() -insérée/F*() -insérer/c4a+() -insermentée/F*() -insertion/S*() -insidieuse/W*() -insidieusement/D'Q' -insigne/S*() -insignifiance/S*() -insignifiante/F*() -insincère/S*() -insinuante/F*() -insinuation/S*() -insinuée/F*() -insinuer/a4a+() -insipide/S*() -insipidité/S*() -insistance/S*() -insistante/F*() -insister/a1() -insociabilité/S*() -insociable/S*() -insolation/S*() -insolée/F*() -insolemment/D'Q' -insolence/S*() -insolente/F*() -insoler/a2a+() -insolite/S*() -insolubilisée/F*() -insolubiliser/a2a+() -insolubilité/S*() -insoluble/S*() -insolvabilité/S*() -insolvable/S*() -insomniaque/S*() -insomnie/S*() -insomnieuse/W*() -insondable/S*() -insonore/S*() -insonorisation/S*() -insonorisée/F*() -insonoriser/a2a+() -insonorité/S*() -insortable/S*() -insouciance/S*() -insouciante/F*() -insoucieuse/W*() -insoumise/F*() -insoumission/S*() -insoupçonnable/S*() -insoupçonnée/F*() -insoutenable/S*() -inspectée/F*() -inspecter/a2a+() -inspection/S*() -inspectorat/S*() -inspectrice/F*() -inspirante/F*() -inspiration/S*() -inspiratrice/F*() -inspirée/F*() -inspirer/a4a+() -instabilité/S*() -instable/S*() -installable/S*() -installation/S*() -installatrice/F*() -installée/F*() -installer/a4a+() -installeur/S*() -instamment/D'Q' -instance/S*() -instanciation/S*() -instanciée/F*() -instancier/a2a+() -instant/S*() -instantanée/F*() -instantanéité/S*() -instantanément/D'Q' -instante/F*() -instanton/S*() -instar/L' -instauration/S*() -instauratrice/F*() -instaurée/F*() -instaurer/a4a+() -instigation/S*() -instigatrice/F*() -instiguée/F*() -instiguer/a2a+() -instillation/S*() -instillée/F*() -instiller/a2a+() -instinct/S*() -instinctive/F*() -instinctivement/D'Q' -instinctuelle/F*() -instituer/a4a+() -institut/S*() -institutes/D' -institution/S*() -institutionnalisation/S*() -institutionnalisée/F*() -institutionnaliser/a4a+() -institutionnalisme/S*() -institutionnaliste/S*() -institutionnelle/F*() -institutionnellement/D'Q' -institutrice/F*() -instruction/S*() -instructive/F*() -instructrice/F*() -instruire/yM() -instruite/F*() -instrument/S*() -instrumentaire/S*() -instrumentale/W*() -instrumentalisation/S*() -instrumentalisée/F*() -instrumentaliser/a2a+() -instrumentalisme/S*() -instrumentaliste/S*() -instrumentalité/S*() -instrumentation/S*() -instrumenter/a2a+() -instrumentiste/S*() -insu/L' -insubmersibilité/S*() -insubmersible/S*() -insubordination/S*() -insubordonnée/F*() -insuccès/L'D'Q' -insuffisamment/D'Q' -insuffisance/S*() -insuffisante/F*() -insufflateur/S*() -insufflation/S*() -insuffler/a2a+() -insulaire/S*() -insularité/S*() -insulinase/S*() -insuline/S*() -insulinodépendante/F*() -insulinothérapie/S*() -insultante/F*() -insulte/S*() -insultée/F*() -insulter/a4a+() -insulteur/S*() -insupportable/S*() -insupportablement/D'Q' -insupporter/a3a+() -insurgée/F*() -insurger/a3a+() -insurmontable/S*() -insurpassable/S*() -insurrection/S*() -insurrectionnelle/F*() -intacte/F*() -intactile/S*() -intailler/a2a+() -intangibilité/S*() -intangible/S*() -intarissable/S*() -intarissablement/D'Q' -intégrabilité/S*() -intégrable/S*() -intégrale/S*() -intégrale/W*() -intégralement/D'Q' -intégralité/S*() -intégrante/F*() -intégrateur/S*() -intégration/S*() -intégrationniste/S*() -intègre/S*() -intégrée/F*() -intégrer/c4a+() -intégrisme/S*() -intégriste/S*() -intégrité/S*() -intégrodifférentielle/F*() -intellect/S*() -intellection/S*() -intellectisme/S*() -intellectualisation/S*() -intellectualisée/F*() -intellectualiser/a2a+() -intellectualisme/S*() -intellectualiste/S*() -intellectualité/S*() -intellectuelle/F*() -intellectuellement/D'Q' -intelligemment/D'Q' -intelligence/S*() -intelligente/F*() -intelligentsia/S*() -intelligibilité/S*() -intelligible/S*() -intelligiblement/D'Q' -intello/S*() -intempérance/S*() -intempérante/F*() -intempérie/S*() -intempestive/F*() -intempestivement/D'Q' -intempestivité/S*() -intemporalité/S*() -intemporelle/F*() -intenable/S*() -intendance/S*() -intendante/F*() -intense/S*() -intensément/D'Q' -intensification/S*() -intensifiée/F*() -intensifier/a4a+() -intensité/S*() -intensive/F*() -intensivement/D'Q' -intentée/F*() -intenter/a2a+() -intention/S*() -intentionnalité/S*() -intentionnée/F*() -intentionnelle/F*() -intentionnellement/D'Q' -inter/L'D' -interaction/S*() -interactionnisme/S*() -interactive/F*() -interactivement/D'Q' -interactivité/S*() -interagir/f1f+() -interagissante/F*() -interagissement/S*() -interalliée/F*() -interarmées/L'D'Q' -interarmes/L'D'Q' -interastrale/W*() -interbancaire/S*() -intercalaire/S*() -intercalation/S*() -intercalée/F*() -intercaler/a4a+() -intercéder/c1() -intercellulaire/S*() -interceptée/F*() -intercepter/a2a+() -intercepteur/S*() -interception/S*() -intercesseur/S*() -intercession/S*() -interchangeabilité/S*() -interchangeable/S*() -interclasse/S*() -interclassée/F*() -interclassement/S*() -interclasser/a2a+() -interclubs/D' -intercommunale/W*() -intercommunalité/S*() -intercommunication/S*() -intercompréhension/S*() -interconfessionnelle/F*() -interconnectée/F*() -interconnecter/a2a+() -interconnexion/S*() -intercontinentale/W*() -intercostale/W*() -intercotidale/W*() -intercours/L'D'Q' -intercourse/S*() -interculturalité/S*() -interculturelle/F*() -intercurrente/F*() -interdépartementale/W*() -interdépendance/S*() -interdépendante/F*() -interdiction/S*() -interdigitale/W*() -interdire/yD() -interdisciplinaire/S*() -interdisciplinarité/S*() -interdit/S*() -interdite/F*() -intéressante/F*() -intéressée/F*() -intéressement/S*() -intéresser/a4a+() -intérêt/S*() -interfaçable/S*() -interfaçage/S*() -interface/S*() -interfacée/F*() -interfacer/a2a+() -interférence/S*() -interférentielle/F*() -interférer/c1() -interféromètre/S*() -interférométrie/S*() -interférométrique/S*() -interféron/S*() -interfluve/S*() -interfoliage/S*() -interfoliée/F*() -interfolier/a2a+() -interfonctionnement/S*() -interfonctionner/a9() -intergalactique/S*() -intergénérationnelle/F*() -interglaciaire/S*() -intergouvernementale/W*() -intergroupe/S*() -intérieur/S*() -intérieure/F*() -intérieurement/D'Q' -intérim/S*() -intérimaire/S*() -interindividuelle/F*() -intériorisation/S*() -intériorisée/F*() -intérioriser/a2a+() -intériorité/S*() -interjection/S*() -interjective/F*() -interjetée/F*() -interjeter/d2a+() -interlettrage/S*() -interlignage/S*() -interligne/S*() -interlignée/F*() -interligner/a2a+() -interlinéaire/S*() -interlock/S*() -interlocutoire/S*() -interlocutrice/F*() -interlope/S*() -interloquée/F*() -interloquer/a2a+() -interlude/S*() -intermède/S*() -intermédiaire/S*() -intermezzo/S*() -interminable/S*() -interminablement/D'Q' -interministérielle/F*() -intermittence/S*() -intermittente/F*() -intermodale/W*() -intermodalité/S*() -intermodulation/S*() -intermoléculaire/S*() -inter-mot/L'D' -intermusculaire/S*() -internalisation/S*() -internat/S*() -internationale/W*() -internationalement/D'Q' -internationalisation/S*() -internationalisée/F*() -internationaliser/a4a+() -internationalisme/S*() -internationaliste/S*() -internationalité/S*() -internaute/S*() -interne/S*() -internée/F*() -internement/S*() -interner/a2a+() -internet/L'D'Q' -interniste/S*() -internonce/S*() -interocéanique/S*() -intéroceptive/F*() -interoculaire/S*() -interopérabilité/S*() -interopérable/S*() -interosseuse/W*() -interpariétale/W*() -interparlementaire/S*() -interpellation/S*() -interpellatrice/F*() -interpellée/F*() -interpeller/a2a+() -interpénétration/S*() -interpénétrée/F*() -interpénétrer/c3a+() -interpersonnelle/F*() -interphone/S*() -interplanétaire/S*() -interpolation/S*() -interpolative/F*() -interpolatrice/F*() -interpolée/F*() -interpoler/a2a+() -interposée/F*() -interposer/a4a+() -interposition/S*() -interprétable/S*() -interprétante/F*() -interprétariat/S*() -interprétation/S*() -interprétative/F*() -interprète/S*() -interprétée/F*() -interpréter/c4a+() -interpréteur/S*() -interprofessionnelle/F*() -interraciale/W*() -interrègne/S*() -interrelation/S*() -interrogation/S*() -interrogative/F*() -interrogativement/D'Q' -interrogatoire/S*() -interrogatrice/F*() -interrogeable/S*() -interrogée/F*() -interroger/a4a+() -interrompre/tA() -interrompue/F*() -interruptible/S*() -interruption/S*() -interruptive/F*() -interruptrice/F*() -intersectée/F*() -intersecter/a2a+() -intersection/S*() -intersectorielle/F*() -intersession/S*() -intersexualité/S*() -intersexuée/F*() -intersexuelle/F*() -intersidérale/W*() -intersigne/S*() -interstellaire/S*() -interstice/S*() -interstitielle/F*() -intersubjective/F*() -intersyndicale/W*() -intertextualité/S*() -intertitre/S*() -intertropicale/W*() -interurbaine/F*() -intervallaire/S*() -intervalle/S*() -intervalliste/S*() -intervenante/F*() -intervenir/i0i+() -intervention/S*() -interventionnelle/F*() -interventionnisme/S*() -interventionniste/S*() -intervenue/F*() -interversion/S*() -intervertébrale/W*() -intervertie/F*() -intervertir/f2f+() -interview/S*() -interviewée/F*() -interviewer/a2a+() -intervieweuse/F*() -intervocalique/S*() -interzonale/W*() -interzone/S*() -intestat/S*() -intestin/S*() -intestinale/W*() -intestine/F*() -inti/S*() -intimation/S*() -intime/S*() -intimée/F*() -intimement/D'Q' -intimer/a2a+() -intimidable/S*() -intimidante/F*() -intimidation/S*() -intimidatrice/F*() -intimidée/F*() -intimider/a2a+() -intimisme/S*() -intimiste/S*() -intimité/S*() -intitulé/S*() -intitulée/F*() -intituler/a4a+() -intolérable/S*() -intolérablement/D'Q' -intolérance/S*() -intolérante/F*() -intonation/S*() -intouchabilité/S*() -intouchable/S*() -intoxicante/F*() -intoxication/S*() -intoxiquée/F*() -intoxiquer/a4a+() -intra-atomique/S*() -intracardiaque/S*() -intracellulaire/S*() -intracommunautaire/S*() -intracontinentale/W*() -intracrânienne/F*() -intradermique/S*() -intradermo-réaction/S*() -intrados/L'D'Q' -intraduisible/S*() -intraitable/S*() -intramoléculaire/S*() -intra-muros/D'Q' -intra-muros/L'D'Q' -intramusculaire/S*() -intranet/S*() -intransigeance/S*() -intransigeante/F*() -intransitive/F*() -intransitivement/D'Q' -intransitivité/S*() -intransmissible/S*() -intransportable/S*() -intrant/S*() -intranucléaire/S*() -intraoculaire/S*() -intra-utérine/F*() -intraveineuse/S*() -intraveineuse/W*() -intrépide/S*() -intrépidement/D'Q' -intrépidité/S*() -intrication/S*() -intrigante/F*() -intrigue/S*() -intriguée/F*() -intriguer/a2a+() -intrinsèque/S*() -intrinsèquement/D'Q' -intriquée/F*() -intriquer/a2a+() -introduction/S*() -introductive/F*() -introductrice/F*() -introduire/yM() -introduite/F*() -introït/S*() -introjection/S*() -intromission/S*() -intron/S*() -intronisation/S*() -intronisée/F*() -introniser/a4a+() -introrse/S*() -introspection/S*() -introspective/F*() -introuvable/S*() -introversion/S*() -introvertie/F*() -intruse/F*() -intrusion/S*() -intrusive/F*() -intubation/S*() -intubée/F*() -intuber/a2a+() -intuition/S*() -intuitionnisme/S*() -intuitionniste/S*() -intuitive/F*() -intuitivement/D'Q' -intuitu -intussusception/S*() -inuit/S*() -inule/S*() -inuline/S*() -inusable/S*() -inusitée/F*() -inusuelle/F*() -inutile/S*() -inutilement/D'Q' -inutilisable/S*() -inutilisée/F*() -inutilité/S*() -invagination/S*() -invaginée/F*() -invaginer/a3a+() -invaincue/F*() -invalidante/F*() -invalidation/S*() -invalide/S*() -invalidée/F*() -invalider/a2a+() -invalidité/S*() -invar -invariabilité/S*() -invariable/S*() -invariablement/D'Q' -invariance/S*() -invariante/F*() -invasion/S*() -invasive/F*() -invective/S*() -invectivée/F*() -invectiver/a2a+() -invendable/S*() -invendue/F*() -inventaire/S*() -inventée/F*() -inventer/a4a+() -invention/S*() -inventive/F*() -inventivité/S*() -inventoriage/S*() -inventorier/a2a+() -inventrice/F*() -invérifiable/S*() -inversable/S*() -inverse/S*() -inversée/F*() -inversement/D'Q' -inverser/a4a+() -inverseur/S*() -inversibilité/S*() -inversible/S*() -inversion/S*() -inversive/F*() -invertase/S*() -invertébrée/F*() -invertie/F*() -invertine/S*() -invertir/f2f+() -investie/F*() -investigation/S*() -investigatrice/F*() -investiguer/a1() -investir/f4f+() -investissement/S*() -investisseuse/F*() -investiture/S*() -invétérée/F*() -invétérer/c3a+() -invincibilité/S*() -invincible/S*() -invinciblement/D'Q' -inviolabilité/S*() -inviolable/S*() -inviolablement/D'Q' -inviolée/F*() -invisibilité/S*() -invisible/S*() -invisiblement/D'Q' -invitante/F*() -invitation/S*() -invitatoire/S*() -invite/S*() -invitée/F*() -inviter/a4a+() -invivable/S*() -invocation/S*() -invocatoire/S*() -invocatrice/F*() -involontaire/S*() -involontairement/D'Q' -involucrée/F*() -involutée/F*() -involution/S*() -involutive/F*() -involutivité/S*() -invoquée/F*() -invoquer/a2a+() -invraisemblable/S*() -invraisemblance/S*() -invulnérabilité/S*() -invulnérable/S*() -iodate/S*() -iode/S*() -iodée/F*() -ioder/a2a+() -iodhydrique/S*() -iodique/S*() -iodisme/S*() -iodoforme/S*() -iodure/S*() -iodurée/F*() -ion/S*() -ionienne/F*() -ionique/S*() -ionisante/F*() -ionisation/S*() -ioniser/a2a+() -ionone/S*() -ionosphère/S*() -ionosphérique/S*() -iota/L'D'Q' -iota/S*() -iotacisme/S*() -iouler/a1() -ipéca/S*() -ipécacuanha/S*() -ipomée/S*() -irai/aC() -irakienne/F*() -iranienne/F*() -irascibilité/S*() -irascible/S*() -irato -ire/S*() -irénique/S*() -irénisme/S*() -iridacée/S*() -iridectomie/S*() -iridescente/F*() -iridiée/F*() -iridienne/F*() -iridium/S*() -iridologie/S*() -iridologue/S*() -iris/L'D'Q' -irisable/S*() -irisation/S*() -irisée/F*() -iriser/a4a+() -iritis/L'D'Q' -irlandaise/F*() -irone/S*() -ironie/S*() -ironique/S*() -ironiquement/D'Q' -ironiser/a1() -ironiste/S*() -iroquoise/F*() -irrachetable/S*() -irracontable/S*() -irradiance/S*() -irradiante/F*() -irradiation/S*() -irradiée/F*() -irradier/a4a+() -irraisonnée/F*() -irrationalisme/S*() -irrationalité/S*() -irrationnelle/F*() -irrationnellement/D'Q' -irrattrapable/S*() -irréalisable/S*() -irréalisée/F*() -irréalisme/S*() -irréaliste/S*() -irréalité/S*() -irrecevabilité/S*() -irrecevable/S*() -irréconciliable/S*() -irrécouvrable/S*() -irrécupérable/S*() -irrécusable/S*() -irrécusablement/D'Q' -irrédentisme/S*() -irrédentiste/S*() -irréductibilité/S*() -irréductible/S*() -irréductiblement/D'Q' -irréelle/F*() -irréfléchie/F*() -irréflexion/S*() -irréformable/S*() -irréfragable/S*() -irréfrénable/S*() -irréfutabilité/S*() -irréfutable/S*() -irréfutablement/D'Q' -irréfutée/F*() -irrégularité/S*() -irrégulière/F*() -irrégulièrement/D'Q' -irréligieuse/W*() -irréligion/S*() -irrémédiable/S*() -irrémédiablement/D'Q' -irrémissible/S*() -irrémissiblement/D'Q' -irremplaçable/S*() -irréparable/S*() -irréparablement/D'Q' -irrépétible/S*() -irrépréhensible/S*() -irrépressible/S*() -irrépressiblement/D'Q' -irréprochable/S*() -irréprochablement/D'Q' -irrésistible/S*() -irrésistiblement/D'Q' -irrésolue/F*() -irrésolution/S*() -irrespect/S*() -irrespectueuse/W*() -irrespectueusement/D'Q' -irrespirable/S*() -irresponsabilité/S*() -irresponsable/S*() -irrétrécissable/S*() -irrévérence/S*() -irrévérencieuse/W*() -irrévérencieusement/D'Q' -irréversibilité/S*() -irréversible/S*() -irréversiblement/D'Q' -irrévocabilité/S*() -irrévocable/S*() -irrévocablement/D'Q' -irrigable/S*() -irrigation/S*() -irrigatrice/F*() -irriguée/F*() -irriguer/a2a+() -irritabilité/S*() -irritable/S*() -irritante/F*() -irritation/S*() -irritative/F*() -irritée/F*() -irriter/a4a+() -irruption/S*() -isallobare/S*() -isard/S*() -isarienne/F*() -isatis/L'D'Q' -isba/S*() -ischémie/S*() -ischémique/S*() -ischiatique/S*() -ischion/S*() -isiaque/S*() -islam/L'D' -islamique/S*() -islamisation/S*() -islamisée/F*() -islamiser/a4a+() -islamisme/S*() -islamiste/S*() -islamologie/S*() -islamologue/S*() -islandaise/F*() -ismaélienne/F*() -ismaélisme/S*() -ismaélite/S*() -isobare/S*() -isobarique/S*() -isobarycentre/S*() -isobathe/S*() -isocarde/S*() -isocèle/S*() -isochore/S*() -isochromatique/S*() -isochrone/S*() -isochronisme/S*() -isoclinale/W*() -isocline/S*() -isodynamie/S*() -isodynamique/S*() -isoforme/S*() -isogame/S*() -isogamie/S*() -isogénie/S*() -isoglosse/S*() -isogone/S*() -isohyète/S*() -isohypse/S*() -isolable/S*() -isolante/F*() -isolat/S*() -isolation/S*() -isolationnisme/S*() -isolationniste/S*() -isolatrice/F*() -isolée/F*() -isolément/D'Q' -isolement/S*() -isoler/a4a+() -isologue/S*() -isoloir/S*() -isomérase/S*() -isomère/S*() -isomérie/S*() -isomérisation/S*() -isométrie/S*() -isométrique/S*() -isométriquement/D'Q' -isomonodromique/S*() -isomorphe/S*() -isomorphiquement/D'Q' -isomorphisme/S*() -isonomie/S*() -isopérimètre/S*() -isopérimétrie/S*() -isopérimétrique/S*() -isopet/S*() -isopode/S*() -isoptère/S*() -isoséiste/S*() -isosiste/S*() -isospectrale/W*() -isospectralité/S*() -isostasie/S*() -isostatique/S*() -isotactique/S*() -isotherme/S*() -isotonie/S*() -isotonique/S*() -isotope/S*() -isotopie/S*() -isotopique/S*() -isotrope/S*() -isotropie/S*() -isotypique/S*() -israélienne/F*() -israélite/S*() -issante/F*() -issir/iY() -issue/F*() -isthme/S*() -isthmique/S*() -italianisante/F*() -italianisée/F*() -italianiser/a4a+() -italianisme/S*() -italienne/F*() -italiote/S*() -italique/S*() -italophone/S*() -item -item/S*() -itération/S*() -itérative/F*() -itérée/F*() -itérer/c2a+() -ithyphallique/S*() -itinéraire/S*() -itinérance/S*() -itinérante/F*() -itou -iule/S*() -ive/S*() -ivette/S*() -ivoire/S*() -ivoirerie/S*() -ivoirienne/F*() -ivoirière/F*() -ivoirine/F*() -ivoiriser/a2a+() -ivraie/S*() -ivre/S*() -ivresse/S*() -ivrognerie/S*() -ivrognesse/F*() -ixer/a2a+() -ixia/S*() -ixième/S*() -ixode/S*() -j -jabiru/S. -jable/S. -jabler/a0a+() -jablière/S. -jabloir/S. -jabloire/S. -jaborandi/S. -jabot/S. -jaboter/a0a+() -jacaranda/S. -jacassante/F.() -jacasse/S. -jacassement/S. -jacasser/a0() -jacasserie/S. -jacasseuse/F.() -jacée/S. -jachère/S. -jacinthe/S. -jack/S. -jacket/S. -jackpot/S. -jacobée/S. -jacobien/S. -jacobienne/F.() -jacobine/F.() -jacobinisme/S. -jacobite/S. -jacobus -jaconas -jacot/S. -jacquard/S. -jacquerie/S. -jacquet/S. -jacqueter -jacquier/S. -jacquot/S. -jactance/S. -jacter/a0a+() -jaculatoire/S. -jacuzzi/S. -jade/S. -jadéite/S. -jadis -jaffe/S. -jaffer/a0() -jaguar/S. -jaillir/f0() -jaillissante/F.() -jaillissement/S. -jaïn/S. -jaïna/S. -jaïnisme/S. -jais -jalap/S. -jale/S. -jalon/S. -jalonnée/F.() -jalonnement/S. -jalonner/a0a+() -jalonneur/S. -jalouse/W.() -jalousée/F.() -jalousement -jalouser/a0a+() -jalousie/S. -jam/S. -jamaïcaine/F.() -jamaïquaine/F.() -jamais -jambage/S. -jambe/S. -jambée/F.() -jambette/S. -jambière/F.() -jambon/S. -jambonneau/X. -jambonnée/F.() -jambonner/a0a+() -jamboree/S. -jambose/S. -jambosier/S. -jamerosier/S. -jam-session/S. -jan/S. -jangada/S. -janissaire/S. -janotisme/S. -jansénisme/S. -janséniste/S. -jante/S. -janv -janvier/S. -japon/S. -japonaise/F.() -japonaiserie/S. -japonerie/S. -japonisante/F.() -japonisée/F.() -japoniser/a0a+() -japonisme/S. -japoniste/S. -japonner/a0a+() -jappement/S. -japper/a0() -jappeuse/F.() -jaque/S. -jaquemart/S. -jaquette/S. -jaquier/S. -jar/S. -jard/S. -jarde/S. -jardin/S. -jardinage/S. -jardiner/a0a+() -jardinerie/S. -jardinet/S. -jardineuse/W.() -jardinière/F.() -jardiniste/S. -jardon/S. -jargon/S. -jargonaphasie/S. -jargonnante/F.() -jargonner/a0() -jargonneuse/F.() -jargonneuse/W.() -jarnicoton -jarosse/S. -jarovisation/S. -jarre/S. -jarret/S. -jarretée/F.() -jarretelle/S. -jarreter/d0a+() -jarretière/S. -jas -jaser/a0() -jaseran/S. -jaseron/S. -jaseuse/F.() -jasmin/S. -jaspe/S. -jaspée/F.() -jasper/a0a+() -jaspiner/a0a+() -jaspure/S. -jatte/S. -jattée/S. -jauge/S. -jaugeage/S. -jauger/a0a+() -jaugeur/S. -jaumière/S. -jaunâtre/S. -jaune/S. -jaunette/F.() -jaunie/F.() -jaunir/f0f+() -jaunissage/S. -jaunissante/F.() -jaunissement/S. -java/S. -javanaise/F.() -javart/S. -javeau/X. -javel/S. -javelage/S. -javelée/F.() -javeler/d0a+() -javeleuse/F.() -javeline/S. -javelle/S. -javellisation/S. -javelliser/a0a+() -javelot/S. -javer/a0a+() -jazz -jazzman/S. -je -jean/S. -jean-foutre -jeannette/S. -jectisse/S. -jeep/S. -jéjuno-iléon/S. -jéjunum/S. -je-m'en-fichisme/S. -je-m'en-fichiste/S. -je-m'en-foutisme/S. -je-m'en-foutiste/S. -je-ne-sais-quoi -jennérienne/F.() -jenny/S. -jérémiade/S. -jerez -jerk/S. -jéroboam/S. -jerrycan/S. -jersey/S. -jersiaise/F.() -jésuite/S. -jésuitique/S. -jésuitiquement -jésuitisme/S. -jésus -jet/S. -jetable/S. -jetage/S. -jetée/F.() -jeter/d0a+() -jeteuse/F.() -jeton/S. -jet-set/S. -jet-setteuse/F.() -jet-ski/S. -jet-society/S. -jet-stream/S. -jettatura -jeu/X. -jeudi/S. -jeun -jeune/S. -jeûne/S. -jeunement -jeûner/a0() -jeunesse/S. -jeunette/F.() -jeûneuse/F.() -jeunisme/S. -jeunotte/F.() -jigger/S. -jingle/S. -jiu-jitsu -joaillerie/S. -joaillière/F.() -job/S. -job/S. -jobarde/F.() -jobarder/a0a+() -jobarderie/S. -jobardise/S. -jobelin/S. -jocasse/S. -jociste/S. -jockey/S. -jocoler/a0() -jocrisse/S. -jodhpurs -jodler/a0() -jogger/a0() -joggeuse/F.() -jogging/S. -johannique/S. -johannisberg/S. -johannite/S. -joie/S. -joignable/S. -joindre/wB() -joint/S. -jointe/F.() -jointée/F.() -jointer/a0a+() -jointive/F.() -jointoiement/S. -jointoyer/a0a+() -jointoyeuse/F.() -jointure/S. -joker/S. -jolie/F.() -joliesse/S. -joliment -jonc/S. -joncacée/S. -joncer/a0a+() -jonchaie/S. -jonchée/F.() -joncher/a0a+() -joncheraie/S. -jonchère/S. -jonchet/S. -joncteur/S. -jonction/S. -jonglage/S. -jongler/a0() -jonglerie/S. -jongleuse/F.() -jonkheer/S. -jonque/S. -jonquille/S. -jordanienne/F.() -joseph/S. -jota/S. -jottereau/X. -jouable/S. -jouailler/a0() -joual -joubarbe/S. -joue/S. -jouer/a0a+() -jouet/S. -jouette/S. -joueuse/F.() -joufflue/F.() -joug/S. -jouir/f0() -jouissance/S. -jouissante/F.() -jouisseuse/F.() -jouissive/F.() -joujou/X. -joule/Um() -jour/S. -journal/X. -journaleuse/W.() -journalière/F.() -journalisation/S. -journalisme/S. -journaliste/S. -journalistique/S. -journée/S. -journellement -joute/S. -jouter/a0() -jouteuse/F.() -jouvence/S. -jouvenceau/X. -jouvencelle/S. -jouxter/a0a+() -joviale/W.() -jovialement -jovialité/S. -jovials -jovienne/F.() -joyau/X. -joyeuse/W.() -joyeusement -joyeuseté/S. -joystick/S. -jubarte/S. -jubé/S. -jubilaire/S. -jubilation/S. -jubilatoire/S. -jubilé/S. -jubiler/a0() -juchée/F.() -jucher/a0a+() -juchoir/S. -judaïcité/S. -judaïque/S. -judaïsée/F.() -judaïser/a0a+() -judaïsme/S. -judaïté/S. -judas -judéité/S. -judelle/S. -judéo-chrétienne/F.() -judéo-christianisme/S. -judicature/S. -judiciaire/S. -judiciairement -judiciarisation/S. -judicieuse/W.() -judicieusement -judo/S. -judoka/S. -judokate/S. -jugale/W.() -juge/S. -jugeable/S. -jugée/F.() -jugement/S. -jugeote/S. -juger/a0a+() -jugeuse/F.() -juglandacée/S. -jugulaire/S. -jugulée/F.() -juguler/a0a+() -juil -juillet/S. -juillettiste/S. -juin/S. -juive/F.() -juiverie/S. -jujube/S. -jujubier/S. -juke-box -julep/S. -jules -julienne/F.() -jumbo/S. -jumeau/X. -jumel/S. -jumelage/S. -jumelée/F.() -jumeler/d0a+() -jumelle/S. -jument/S. -jumping/S. -jungle/S. -junior/S. -junker/S. -junkie/S. -junonienne/F.() -junte/S. -jupe/S. -jupe-culotte -jupes-culottes -jupette/S. -jupitérienne/F.() -jupon/S. -juponnée/F.() -juponner/a0a+() -jurande -jurassienne/F.() -jurassique/S. -jurat/S. -juratoire/S. -jurée/F.() -jurement/S. -jurer/a0a+() -jureur/S. -juridiction/S. -juridictionnelle/F.() -juridique/S. -juridiquement -juridisme/S. -jurisconsulte/S. -jurisprudence/S. -jurisprudentielle/F.() -juriste/S. -juron/S. -jury/S. -jus -jusant/S. -jusée/S. -jusqu'à -jusqu'au-boutisme/S. -jusqu'au-boutiste/S. -jusque -jusque-là -jusques -jusquiame/S. -jusqu'ici -jussiée/S. -jussion/S. -justaucorps -juste/S. -justement -juste-milieu/X. -justes-milieux -justesse/S. -justice/S. -justiciable/S. -justicière/F.() -justifiable/S. -justifiante/F.() -justificatif/S. -justification/S. -justificative/F.() -justificatrice/F.() -justifiée/F.() -justifier/a0a+() -jute/S. -juter/a0() -juteuse/W.() -juvénat/S. -juvénile/S. -juvénilité/S. -juxtalinéaire/S. -juxtaposable/S. -juxtaposante/F.() -juxtaposée/F.() -juxtaposer/a0a+() -juxtaposition/S. -k -kabbale/S. -kabbaliste/S. -kabbalistique/S. -kabuki/S. -kabyle/S. -kacha/S. -kache/S. -kachoube/S. -kafkaïenne/F.() -kaïnite/S. -kaiser/S. -kakemono/S. -kaki/S. -kalachnikov/S. -kaléidoscope/S. -kaléidoscopique/S. -kali/S. -kalicytie/S. -kaliémie/S. -kalium/S. -kalmouke/F.() -kamala/S. -kami/S. -kamichi/S. -kamikaze/S. -kana/S. -kanake/F.() -kanban/S. -kandjar/S. -kangourou/S. -kanji/S. -kantienne/F.() -kantisme/S. -kaoliang/S. -kaolin/S. -kaolinisation/S. -kaon/S. -kaoter/a0a+() -kaotiser/a0a+() -kapo/S. -kapok/S. -kapokier/S. -kappa -karakul/S. -karaoké/S. -karaté/S. -karatéka/S. -karbau/S. -karité/S. -karma/S. -karman/S. -karst/S. -karstification/S. -karstique/S. -kart/S. -karting/S. -kascher -kat/U.||-- -katakana/S. -katal/Um() -katana/S. -kava/S. -kawa/S. -kayak/S. -kayakiste/S. -kazakhe/F.() -kbit/||-- -kebab/S. -keepsake/S. -keffieh/S. -kéfir/S. -keiretsu/S. -kelvin/Um() -kelvinomètre/S. -kendo/S. -kénotron/S. -kentia/S. -kentrophylle/S. -kényane/F.() -képi/S. -kérabau/S. -kératine/S. -kératinisation/S. -kératinisée/F.() -kératiniser/a0a+() -kératite/S. -kératose/S. -kératotomie/S. -kéraunique/S. -kermès -kermesse/S. -kérogène/S. -kérosène/S. -kérygme/S. -kétamine/S. -ketch/S. -ketchup/S. -ketmie/S. -keum/S. -kevlar/S. -keynésianisme/S. -keynésienne/F.() -khâgne/S. -khâgneuse/W.() -khamsin/S. -khan/S. -khanat/S. -kharidjisme/S. -kharidjite/S. -khat/S. -khédivale/W.() -khédivat/S. -khédive/S. -khédiviale/W.() -khédiviat/S. -khi -khmère/F.() -khôl/S. -kibboutz -kibibit/S. -kibioctet/S. -kick/S. -kidnappage/S. -kidnappée/F.() -kidnapper/a0a+() -kidnappeuse/F.() -kidnapping/S. -kief/S. -kieselguhr/S. -kiesérite/S. -kif/S. -kiffer/a0a+() -kif-kif -kiki/S. -kil/S. -kilo/S. -kilobit/S. -kilocycle/S. -kilogrammètre/S. -kilométrage/S. -kilométrer/c0a+() -kilométrique/S. -kilooctet/S. -kiloparsec/S. -kilothermie/S. -kilotonne/S. -kilt/S. -kimbanguisme/S. -kimbanguiste/S. -kimono/S. -kinase/S. -kinescope/S. -kinésithérapeute/S. -kinésithérapie/S. -kinesthésie/S. -kinesthésique/S. -kinétochore/S. -kinkajou/S. -kiosque/S. -kipper/S. -kir/S. -kirghize/F.() -kirsch/S. -kit/S. -kitchenette/S. -kitesurf/S. -kitsch -kiwi/S. -klaxon/S. -klaxonner/a0a+() -kleenex -kleinien/S. -klephte/S. -klezmer/S. -klystron/S. -kn/||-- -knickerbockers -knickers -knock-down -knock-out -knout/S. -ko/||-- -koala/S. -kobold/S. -koinè -kola/S. -kolatier/S. -kolinski/S. -kolkhoze/S. -kolkhozienne/F.() -kommandantur/S. -konzern/S. -kopeck/S. -korê/S. -koriste/S. -korrigane/F.() -kosovare/F.() -kot/S. -koter/a0() -koubba/S. -kouglof/S. -kouign-amann/S. -koulak/S. -koumis -kouros -koweïtienne/F.() -kpc/||-- -kraal/S. -krach/S. -kraft/S. -krak/S. -kraken/S. -kremlin/S. -kremlinologie/S. -kreutzer/S. -kriek -krishnaïte/S. -kriss -kronprinz -kroumir/S. -krypton/S. -ksar -kshatriya -ksi -ksour -kt/||-- -kth/||-- -kummel/S. -kumquat/S. -kung-fu -kurde/S. -kvas -kymographe/S. -kymographie/S. -kymrique/S. -kyrie/S. -kyrielle/S. -kyste/S. -kystique/S. -kyudo/S. -l/U.||-- -la -la -là -labadens -labarum/S. -là-bas -labdanum/S. -label/S. -labelle/S. -labellisée/F.() -labelliser/a0a+() -labeur/S. -labiacée/S. -labiale/W.() -labialisation/S. -labialiser/a0a+() -labiée/F.() -labile/S. -labiodentale/S. -labiodentale/W.() -labium/S. -laborante/F.() -laborantine/F.() -laboratoire/S. -laborieuse/W.() -laborieusement -laboriste/S. -labour/S. -labourable/S. -labourage/S. -labourée/F.() -labourer/a0a+() -laboureur/S. -labrador/S. -labre/S. -labri/S. -labridé/S. -labrit/S. -labyrinthe/S. -labyrinthique/S. -labyrinthodon/S. -labyrinthodonte/S. -lac/S. -laçage/S. -lacaniser -laccase/S. -laccolite/S. -laccolithe/S. -l'accoutumée -lacédémonienne/F.() -lacée/F.() -lacement/S. -lacer/a0a+() -lacération/S. -lacérée/F.() -lacérer/c0a+() -lacerie/S. -lacet/S. -laceuse/F.() -lâchage/S. -lâche/S. -lâchée/F.() -lâchement -lâcher/S. -lâcher/a0a+() -lâcheté/S. -lâcheuse/F.() -laciniée/F.() -lacis -laconique/S. -laconiquement -laconisme/S. -lacquemant/S. -lacrima-christi -lacrymale/W.() -lacrymogène/S. -lactaire/S. -lactalbumine/S. -lactase/S. -lactate/S. -lactation/S. -lactée/F.() -lactescence/S. -lactescente/F.() -lactifère/S. -lactique/S. -lactodensimètre/S. -lactoflavine/S. -lactomètre/S. -lactose/S. -lactosérum/S. -lactucarium/S. -lacunaire/S. -lacune/S. -lacuneuse/W.() -lacustre/S. -lad/S. -ladanum/S. -là-dessous -là-dessus -ladin/S. -ladine/F.() -ladite -ladre/S. -ladrerie/S. -lady/S. -lagon/S. -lagopède/S. -lagothrix -lagotriche/S. -lagrangien/S. -lagrangienne/F.() -laguiole/S. -laguis -lagunage/S. -lagunaire/S. -lagune/S. -là-haut -laïc/S. -laïcat/S. -laîche/S. -laïcisation/S. -laïcisée/F.() -laïciser/a0a+() -laïcisme/S. -laïcité/S. -laide/F.() -laidement -laideron/S. -laideur/S. -laie/F.() -lainage/S. -laine/S. -lainée/F.() -lainer/a0a+() -lainerie/S. -laineuse/F.() -laineuse/W.() -lainière/F.() -laïque/S. -laird/S. -laisse/S. -laissée/F.() -laissée-pour-compte -laissées-pour-compte -laissé-pour-compte -laisser/a0a+() -laisser-aller -laissés-pour-compte -laissez-passer -lait/S. -laitage/S. -laitance/S. -laitée/F.() -laiterie/S. -laiteron/S. -laiteuse/W.() -laitière/F.() -laiton/S. -laitonner/a0a+() -laitue/S. -laïus -laïusser/a0() -laïusseuse/F.() -laize/S. -lakiste/S. -lallation/S. -lama/S. -lamage/S. -lamaïque/S. -lamaïsme/S. -lamaïste/S. -lamanage/S. -lamaneuse/F.() -lamantin/S. -lamarckienne/F.() -lamarckisme/S. -lamarckiste/S. -lamaserie/S. -lambada/S. -lambda -lambdacisme/S. -lambeau/X. -lambel/S. -lambic/S. -lambine/F.() -lambiner/a0() -lambinerie/S. -lambourde/S. -lambrequin/S. -lambris -lambrissage/S. -lambrissée/F.() -lambrisser/a0a+() -lambruche/S. -lambrusque/S. -lambswool/S. -lame/S. -lamée/F.() -lamellaire/S. -lamelle/S. -lamellée/F.() -lamelleuse/W.() -lamellibranche/S. -lamelliforme/S. -lamellophone/S. -lamentable/S. -lamentablement -lamentation/S. -lamenter/a0a+() -lamento/S. -lamer/a0a+() -lamie/S. -lamier/S. -lamifiée/F.() -laminage/S. -laminaire/S. -lamination/S. -laminectomie/S. -laminée/F.() -laminer/a0a+() -lamineuse/F.() -laminoir/S. -lampadaire/S. -lampadophore/S. -lamparo/S. -lampassée/F.() -lampe/S. -lamper/a0a+() -lampion/S. -lampiste/S. -lampisterie/S. -lampourde/S. -lamprillon/S. -lamproie/S. -lampyre/S. -lançage/S. -lance/S. -lance-amarres -lance-bombes -lancée/F.() -lance-engins -lance-flammes -lance-fusées -lance-grenades -lancement/S. -lance-missiles -lancéolée/F.() -lance-pierres -lancequiner/a0() -lancer/S. -lancer/a0a+() -lance-roquettes -lance-satellites -lance-torpilles -lancette/S. -lanceuse/F.() -lancier/S. -lancinante/F.() -lanciner/a0a+() -lançon/S. -land -landaise/F.() -landau/S. -landaulet/S. -lande/S. -länder -landgrave/S. -landgraviat/S. -landier/S. -landsturm/S. -langage/S. -langage-machine -langagière/F.() -lange/S. -langer/a0a+() -langoureuse/W.() -langoureusement -langouste/S. -langoustière/F.() -langoustine/S. -langue/S. -languedocienne/F.() -languée/F.() -languette/S. -langueur/S. -langueyage/S. -langueyer/a0a+() -languide/S. -languier/S. -languir/f0f+() -languissamment -languissante/F.() -lanice/S. -lanier/S. -lanière/S. -lanifère/S. -lanigère/S. -lanlaire -lanoline/S. -lansquenet/S. -lansquine/S. -lansquiner/a0() -lantanier/S. -lanterne/S. -lanterneau/X. -lanterner/a0a+() -lanternon/S. -lanthane/S. -lanthanide/S. -lanugineuse/W.() -laotienne/F.() -lapalissade/S. -lapement/S. -laper/a0a+() -lapereau/X. -lapiaz -lapicide/S. -lapidaire/S. -lapidation/S. -lapidée/F.() -lapider/a0a+() -lapidification/S. -lapidifier/a0a+() -lapilli -lapine/F.() -lapiner/a0() -lapinière/S. -lapinisme/S. -lapis -lapis-lazuli -laplacien/S. -laplacienne/F.() -lapone/F.() -laps -lapsus -laptot/S. -laquage/S. -laquais -laque/S. -laquée/F.() -laquelle -laquer/a0a+() -laqueuse/F.() -laqueuse/W.() -laquier/S. -laraire/S. -larbin/S. -larcin/S. -lard/S. -larder/a0a+() -lardoire/S. -lardon/S. -lardonner/a0a+() -lare/S. -largable/S. -largage/S. -large/S. -largement -largesse/S. -largeur/S. -larghetto/S. -largo -largo/S. -larguée/F.() -larguer/a0a+() -largueuse/F.() -larigot/S. -larme/S. -larmier/S. -larmoiement/S. -larmoyante/F.() -larmoyer/a0() -larron/S. -larvaire/S. -larve/S. -larvée/F.() -larvicide/S. -laryngale/S. -laryngale/W.() -laryngectomie/S. -laryngée/F.() -laryngienne/F.() -laryngite/S. -laryngologie/S. -laryngologiste/S. -laryngologue/S. -laryngoscope/S. -laryngoscopie/S. -larynx -lasagne/S. -lascar/S. -lascive/F.() -lascivement -lasciveté/S. -lascivité/S. -laser/S. -lassante/F.() -lasse/F.() -lassée/F.() -lasser/a0a+() -lassis -lassitude/S. -lasso/S. -lastex -lasting/S. -lasure/S. -lat -latanier/S. -latence/S. -latente/F.() -latérale/W.() -latéralement -latéralisation/S. -latéralité/S. -latere -latere -latérite/S. -latéritique/S. -latex -laticifère/S. -laticlave/S. -latifoliée/F.() -latifundiaire/S. -latifundium/S. -latine/F.() -latinisante/F.() -latinisation/S. -latiniser/a0a+() -latinisme/S. -latiniste/S. -latinité/S. -latino-américaine/F.() -latitude/S. -latitudinaire/S. -latomies -latrie/S. -latrines -lattage/S. -latte/S. -latter/a0a+() -lattis -laudanum/S. -laudative/F.() -laudatrice/F.() -laudes -lauracée/S. -laure/S. -lauréate/F.() -laurée/F.() -laurier/S. -laurier-rose -lauriers-roses -lavable/S. -lavabo/S. -lavage/S. -lavallière/S. -lavande/S. -lavandicultrice/F.() -lavandiculture/S. -lavandière/F.() -lavandin/S. -lavaret/S. -lavatory/S. -lave-auto -lave-dos -lavée/F.() -lave-glace -lave-linge -lave-mains -lavement/S. -lave-pont -laver/a0a+() -laverie/S. -lave-tête -lavette/S. -laveuse/F.() -lave-vaisselle -lavis -lavoir/S. -lavure/S. -lawrencium/S. -laxative/F.() -laxisme/S. -laxiste/S. -laxité/S. -layer/a0a+() -layetière/F.() -layette/S. -layon/S. -lazaret/S. -lazariste/S. -lazulite/S. -lazurite/S. -lazzarone/S. -lazzi/S. -lb/||-- -le/S. -lé/S. -leader/S. -leadership/S. -leasing/S. -lebel/S. -léchage/S. -lèche/S. -lèche-bottes -lèche-cul -léchée/F.() -lèchefrite/S. -lèchement/S. -lécher/c0a+() -lécheuse/F.() -lèche-vitrines -lécithine/S. -leçon/S. -lectorat/S. -lectrice/F.() -lecture/S. -ledit -légale/W.() -légalement -légalisation/S. -légalisée/F.() -légaliser/a0a+() -légalisme/S. -légaliste/S. -légalité/S. -légat/S. -légataire/S. -légation/S. -legato -legato/S. -lège/S. -légendaire/S. -légende/S. -légender/a0a+() -legendrienne/F.() -légère/F.() -légèrement -légèreté/S. -leggings -leggins -légiférée/F.() -légiférer/c0() -légion/S. -légionellose/S. -légionnaire/S. -législation/S. -législative/F.() -législatrice/F.() -législature/S. -légiste/S. -légitimation/S. -légitime/S. -légitimée/F.() -légitimement -légitimer/a0a+() -légitimisme/S. -légitimiste/S. -légitimité/S. -legs -léguée/F.() -léguer/c0a+() -légume/S. -légumière/F.() -légumine/S. -légumineuse/W.() -lei -leishmanie/S. -leishmaniose/S. -leitmotiv/S. -lémanique/S. -lemmatiser/a0a+() -lemme/S. -lemming/S. -lemnacée/S. -lemniscate/S. -lémure/S. -lémurien/S. -lendemain/S. -lendit/S. -lénifiante/F.() -lénifier/a0a+() -léninisme/S. -léniniste/S. -lénitive/F.() -lente/F.() -lentement -lenteur/S. -lenticelle/S. -lenticulaire/S. -lentiforme/S. -lentigine/S. -lentigo/S. -lentille/S. -lentillon/S. -lentisque/S. -lento -lento/S. -léonarde/F.() -léonine/F.() -léonure/S. -léopard/S. -léopardée/F.() -lépidodendron/S. -lépidoptère/S. -lépidoptériste/S. -lépidosirène/S. -lépidostée/S. -lépiote/S. -lépisme/S. -lépisostée/S. -lèpre/S. -leprechaun/S. -lépreuse/W.() -léprologie/S. -léprologiste/S. -léprologue/S. -léproserie/S. -leptocéphale/S. -leptolithique/S. -lepton/S. -leptonique/S. -leptospirose/S. -lepture/S. -lequel -lerche -lérot/S. -lès -lesbianisme/S. -lesbienne/F.() -lesdites -lesdits -lésée/F.() -lèse-majesté -léser/c0a+() -lésinante/F.() -lésine/S. -lésiner/a0() -lésinerie/S. -lésineuse/F.() -lésion/S. -lésionnaire/S. -lésionnelle/F.() -lesquelles -lesquels -lessivable/S. -lessivage/S. -lessive/S. -lessivée/F.() -lessiver/a0a+() -lessiveuse/F.() -lessivielle/F.() -lest/S. -lestage/S. -leste/F.() -lestée/F.() -lestement -lester/a0a+() -let -létale/W.() -létalité/S. -léthargie/S. -léthargique/S. -lettone/F.() -lettrage/S. -lettre/S. -lettrée/F.() -lettreuse/F.() -lettrine/S. -lettrisme/S. -leu -leucanie/S. -leucémie/S. -leucémique/S. -leucine/S. -leucite/S. -leucocytaire/S. -leucocyte/S. -leucocytose/S. -leucoderme/S. -leucodermie/S. -leucodystrophie/S. -leucome/S. -leucopénie/S. -leucoplasie/S. -leucorrhée/S. -leucose/S. -leucotomie/S. -leude/S. -leur/S. -leurre/S. -leurrée/F.() -leurrer/a0a+() -lev -levage/S. -levageuse/F.() -levain/S. -levantine/F.() -levée/F.() -lève-glace/S. -lever/S. -lever/b0a+() -leveuse/F.() -lève-vitre/S. -léviathan/S. -levier/S. -lévigation/S. -léviger/a0a+() -lévirat/S. -levis -lévitation/S. -lévite/S. -léviter/a0() -levraut/S. -lèvre/S. -levrette/S. -levrettée/F.() -levretter/a0() -lévrier/S. -levronne/F.() -lévulose/S. -levure/S. -lexème/S. -lexicale/W.() -lexicalisation/S. -lexicalisée/F.() -lexicaliser/a0a+() -lexicographe/S. -lexicographie/S. -lexicographique/S. -lexicologie/S. -lexicologique/S. -lexicologue/S. -lexie/S. -lexique/S. -lexis -lez -lézarde/F.() -lézardée/F.() -lézarder/a0a+() -li/S. -liage/S. -liaison/S. -liaisonner/a0a+() -liane/S. -liante/F.() -liard/S. -liarder/a0() -liasique/S. -libage/S. -libanaise/F.() -libaniser/a0a+() -libation/S. -libelle/S. -libellé/S. -libellée/F.() -libeller/a0a+() -libelliste/S. -libellule/S. -liber/S. -libérable/S. -libérale/W.() -libéralement -libéralisante/F. -libéralisation/S. -libéralisée/F.() -libéraliser/a0a+() -libéralisme/S. -libéralité/S. -libération/S. -libératoire/S. -libératrice/F.() -libérée/F.() -libérer/c0a+() -libérienne/F.() -libériste/S. -libéro-ligneuse/W.() -libertaire/S. -libertarianisme/S. -libertarienne/F.() -liberté/S. -liberticide/S. -libertinage/S. -libertine/F.() -liberty -libidinale/W.() -libidineuse/W.() -libido/S. -libitum -libraire/S. -librairie/S. -libration/S. -libre/S. -libre-échange/S. -libre-échangisme -libre-échangiste/S. -librement -libre-penseur -libre-penseuse -libre-service -libres-penseurs -libres-penseuses -libres-services -librettiste/S. -libretto/S. -librisme/S. -libriste/S. -libyenne/F.() -lice/S. -licéité/S. -licence/S. -licenciée/F.() -licenciement/S. -licencier/a0a+() -licencieuse/W.() -liche/S. -lichen/S. -licher/a0a+() -lichetrogner -lichette/S. -lichoter -lichotter -licière/F.() -licitation/S. -licite/S. -licitement -liciter/a0a+() -licol/S. -licorne/S. -licou/S. -licteur/S. -lidar/S. -lido/S. -lidocaïne/S. -lied/S. -lie-de-vin -liée/F.() -liège/S. -liégée/F.() -liégeoise/F.() -liéger/c0a+() -liégeuse/W.() -lien/S. -lier/a0a+() -lierne/S. -lierre/S. -liesse/S. -lieu/X. -lieu-dit -lieue/S. -lieuse/F.() -lieutenance/S. -lieutenant-colonel -lieutenante/F.() -lieutenants-colonels -lieux-dits -lièvre/S. -lift/S. -lifter/a0a+() -liftière/F.() -lifting/S. -ligament/S. -ligamentaire/S. -ligamenteuse/W.() -ligand/S. -ligase/S. -ligature/S. -ligaturée/F.() -ligaturer/a0a+() -lige/S. -ligérienne/F.() -ligie/S. -lignage/S. -lignarde/F.() -ligne/S. -lignée/S. -ligner/a0a+() -lignerolle/S. -ligneul/S. -ligneuse/F.() -ligneuse/W.() -lignicole/S. -lignifiante/F.() -lignification/S. -lignifiée/F.() -lignifier/a0a+() -lignine/S. -lignite/S. -lignivore/S. -lignomètre/S. -ligot/S. -ligotage/S. -ligotée/F.() -ligoter/a0a+() -ligue/S. -liguée/F.() -liguer/a0a+() -ligueuse/F.() -ligule/S. -ligulée/F.() -liguliflore/S. -ligure/S. -lilas -liliacée/F.() -liliale/W.() -lilliputienne/F.() -limace/S. -limaçon/S. -limage/S. -limaille/S. -liman/S. -limande/S. -limander/a0a+() -limbaire/S. -limbe/S. -limbique/S. -limbourgeoise/F.() -lime/S. -limée/F.() -limer/a0a+() -limerick/S. -limes -limette/S. -limettier/S. -limeuse/F.() -limicole/S. -limier/S. -liminaire/S. -liminale/W.() -limitable/S. -limitation/S. -limitative/F.() -limitativement -limite/S. -limitée/F.() -limiter/a0a+() -limiteur/S. -limitrophe/S. -limnée/S. -limniculture/S. -limnique/S. -limnologie/S. -limogeage/S. -limogée/F.() -limoger/a0a+() -limon/S. -limonade/S. -limonadière/F.() -limonage/S. -limonaire/S. -limonène/S. -limoner/a0a+() -limoneuse/W.() -limonière/F.() -limonite/S. -limoselle/S. -limousinage/S. -limousine/F.() -limousiner/a0a+() -limpide/S. -limpidité/S. -limule/S. -lin/S. -linacée/S. -linaigrette/S. -linaire/S. -linceul/S. -linçoir/S. -linéaire/S. -linéairement -linéale/W.() -linéament/S. -linéarisabilité/S. -linéarisable/S. -linéarisation/S. -linéarité/S. -linéique/S. -liner/S. -linette/S. -linga/S. -lingala/S. -lingam/S. -linge/S. -lingée/F.() -linger/a0a+() -lingère/F.() -lingerie/S. -lingette/S. -lingot/S. -lingotière/S. -linguale/W.() -linguatule/S. -linguette/S. -linguiforme/S. -linguiste/S. -linguistique/S. -linguistiquement -linière/F.() -liniment/S. -linkage/S. -links -linnéenne/F.() -lino/S. -linogravure/S. -linoléum/S. -linon/S. -linotte/S. -linotype/S. -linotypie/S. -linotypiste/S. -linsang/S. -linsoir/S. -linteau/X. -linter/S. -lionceau/X. -lionne/F.() -lionnée/F.() -liparis -lipase/S. -lipémie/S. -lipide/S. -lipidémie/S. -lipidique/S. -lipochrome/S. -lipoïde/S. -lipolyse/S. -lipome/S. -lipophile/S. -lipoprotéine/S. -lipoprotéinémie/S. -liposarcome/S. -liposoluble/S. -lipothymie/S. -lipotrope/S. -lipovaccin/S. -lippe/S. -lippée/S. -lippue/F.() -lipschitzienne/F.() -liquation/S. -liquéfacteur/S. -liquéfaction/S. -liquéfiable/S. -liquéfiante/F.() -liquéfiée/F.() -liquéfier/a0a+() -liquette/S. -liqueur/S. -liquidable/S. -liquidambar/S. -liquidation/S. -liquidative/F.() -liquidatrice/F.() -liquide/S. -liquidée/F.() -liquider/a0a+() -liquidienne/F.() -liquidité/S. -liquoreuse/W.() -liquoriste/S. -lire/S. -lire/yA() -liron/S. -lisage/S. -lisbroquer -lisérage/S. -liseré/S. -liséré/S. -liserer/b0a+() -lisérer/c0a+() -liseron/S. -liseuse/F.() -lisibilité/S. -lisible/S. -lisiblement -lisier/S. -lisière/S. -lissage/S. -lissante/F.() -lisse/S. -lissée/F.() -lisser/a0a+() -lisseron/S. -lisseuse/F.() -lissier/S. -lissoir/S. -listage/S. -liste/S. -listeau/X. -listel/S. -lister/a0a+() -listériose/S. -listing/S. -liston/S. -lit/S. -litanie/S. -litchi/S. -liteau/X. -litée/F.() -litée/S. -liter/a0a+() -literie/S. -litham/S. -litharge/S. -lithergol/S. -lithiase/S. -lithiasique/S. -lithinée/F.() -lithinifère/S. -lithique/S. -lithium/S. -litho/S. -lithodome/S. -lithogène/S. -lithogenèse/S. -lithographe/S. -lithographie/S. -lithographier/a0a+() -lithographique/S. -lithologie/S. -lithologique/S. -lithophage/S. -lithophanie/S. -lithosphère/S. -lithosphérique/S. -lithostatique/S. -lithothamnium/S. -lithotriteur/S. -lithotypographie/S. -litière/S. -litige/S. -litigeur/S. -litigieuse/W.() -litispendance/S. -litorne/S. -litote/S. -litre/Um() -litron/S. -litroner -litsam/S. -litt -littéraire/S. -littérairement -littérale/W.() -littéralement -littéralisme/S. -littéralité/S. -littérarité/S. -littératrice/F.() -littérature/S. -littérisme/S. -littorale/W.() -littorine/S. -lituanienne/F.() -liturgie/S. -liturgique/S. -liturgiste/S. -liure/S. -livarot/S. -live -livèche/S. -livet/S. -livide/S. -lividité/S. -living/S. -living-room/S. -livrable/S. -livraison/S. -livre/S. -livre-cassette -livrée/F.() -livrer/a0a+() -livres-cassettes -livresque/S. -livret/S. -livreuse/F.() -lixiviation/S. -llano/S. -lm/U.||-- -loader/S. -lob/S. -lobaire/S. -lobby/S. -lobbying/S. -lobbyisme/S. -lobbyiste/S. -lobe/S. -lobectomie/S. -lobée/F.() -lobélie/S. -lober/a0a+() -lobotomie/S. -lobotomisée/F.() -lobotomiser/a0a+() -lobulaire/S. -lobulée/F.() -lobuleuse/W.() -local/X. -locale/W.() -localement -localisable/S. -localisante/F.() -localisateur/S. -localisation/S. -localisatrice/F.() -localisée/F.() -localiser/a0a+() -localité/S. -locataire/S. -locataire-gérant -locataires-gérants -location/S. -locations-ventes -location-vente -locative/F.() -locavore/S. -loch/S. -loche/S. -locher/a0a+() -lochies -lock-out -lock-outer/a0a+() -locomobile/S. -locomotion/S. -locomotive/F.() -locomotive/S. -locomotrice/F.() -locotracteur/S. -loculaire/S. -loculée/F.() -loculeuse/W.() -locuste/S. -locution/S. -locutrice/F.() -loden/S. -lods -lœss -lof/S. -lofer/a0() -loft/S. -log/S. -logarithme/S. -logarithmique/S. -loge/S. -logeable/S. -logée/F.() -logement/S. -loger/a0a+() -logette/S. -logeuse/F.() -loggia/S. -logiciel/S. -logicielle/F.() -logiciellement -logicienne/F.() -logicisme/S. -logico-mathématique/S. -logico-positivisme/S. -logigramme/S. -logique/S. -logiquement -logis -logiste/S. -logisticienne/F.() -logistique/S. -logithèque/S. -logo/S. -logogramme/S. -logogrammique/S. -logographe/S. -logographie/S. -logographique/S. -logogriphe/S. -logomachie/S. -logomachique/S. -logopède/S. -logopédie/S. -logopédiste/S. -logorrhée/S. -logorrhéique/S. -logos -logotype/S. -loguer/a0() -loi/S. -loi-cadre -loin -lointaine/F.() -lointainement -loi-programme -loir/S. -lois-cadres -loisible/S. -loisir/S. -lois-programmes -lokoum/S. -lolette/S. -lolita/S. -lolo/S. -lombaire/S. -lombalgie/S. -lombarde/F.() -lombarthrose/S. -lombes -lombo-sacrée/F.() -lombosciatique/S. -lombric/S. -lombricultrice/F.() -lombriculture/S. -lompe/S. -londonienne/F.() -londrès -lône/S. -longane/S. -longanimité/S. -long-courrier/S. -longe/S. -longée/F.() -longeole/S. -longer/a0a+() -longère/S. -longeron/S. -longévité/S. -longicorne/S. -longiforme/S. -longiligne/S. -longitude/S. -longitudinale/W.() -longitudinalement -longotte/S. -longrine/S. -longtemps -longue/F.() -longuement -longues-vues -longuette/F.() -longueur/S. -longue-vue -looch/S. -loofa/S. -look/S. -looping/S. -lopette/S. -lophophore/S. -lopin/S. -loquace/S. -loquacité/S. -loque/S. -loquer/a0a+() -loquet/S. -loqueteau/X. -loqueteuse/W.() -loran/S. -loranthacée/S. -lord/S. -lord-maire -lordose/S. -lords-maires -lorentzienne/F.() -lorette/S. -lorgner/a0a+() -lorgnette/S. -lorgnon/S. -lori/S. -loricaire/S. -loriot/S. -lorraine/F.() -lorry/S. -lors -lorsque -losange/S. -losangée/F.() -lot/S. -loterie/S. -lotie/F.() -lotier/S. -lotion/S. -lotionner/a0a+() -lotir/f0f+() -lotissement/S. -lotisseuse/F.() -loto/S. -lotoise/F.() -lotte/S. -lotus -louable/S. -louablement -louage/S. -louange/S. -louangée/F.() -louanger/a0a+() -louangeuse/F.() -loubar/S. -loubard/S. -louche/S. -loucher/a0() -loucherie/S. -louchet/S. -loucheuse/F.() -louchir/f0() -louchonne/F.() -louée/F.() -louer/a0a+() -loueuse/F.() -loufer/a0() -loufiat/S. -loufoque/S. -loufoquerie/S. -lougre/S. -louis -loukoum/S. -loulou/S. -loup/S. -loupage/S. -loup-cervier -louper/a0a+() -loup-garou -loupiote/F.() -loups-cerviers -loups-garous -louquer -lourdaude/F.() -lourde/F.() -lourdement -lourder/a0a+() -lourdeur/S. -lourdingue/S. -lourée/F.() -lourer/a0a+() -lousse/S. -loustic/S. -loutre/S. -louve/S. -louver/a0a+() -louveteau/X. -louveter/d0() -louveterie/S. -louvetier/S. -louvette/F.() -louvoiement/S. -louvoyante/F. -louvoyer/a0() -lovelace/S. -lover/a0a+() -loxodromie/S. -loxodromique/S. -loyale/W.() -loyalement -loyalisme/S. -loyaliste/S. -loyauté/S. -loyer/S. -lubie/S. -lubricité/S. -lubrifiante/F.() -lubrification/S. -lubrifiée/F.() -lubrifier/a0a+() -lubrique/S. -lubriquement -lucane/S. -lucarne/S. -lucernaire/S. -lucide/S. -lucidement -lucidité/S. -luciférienne/F.() -lucifuge/S. -lucilie/S. -lucimètre/S. -luciole/S. -lucrative/F.() -lucrativement -lucrativité/S. -lucre/S. -luddisme/S. -ludiciel/S. -ludion/S. -ludique/S. -ludisme/S. -ludothécaire/S. -ludothèque/S. -lue/F.() -luétine/S. -luette/S. -lueur/S. -luffa/S. -luge/S. -luger/a0() -lugeuse/F.() -lugubre/S. -lugubrement -lui -lui-même -luire/yU() -luisance/S. -luisante/F.() -lulu/S. -lumachelle/S. -lumbago/S. -lumen/Um() -lumière/S. -lumignon/S. -luminaire/S. -luminance/S. -luminescence/S. -luminescente/F.() -lumineuse/W.() -lumineusement -luminique/S. -luminisme/S. -luministe/S. -luminomètre/S. -luminophore/S. -luminosité/S. -luminothérapie/S. -lumitype/S. -lump/S. -lunaire/S. -lunaison/S. -lunatique/S. -lunch/S. -luncher/a0() -lundi/S. -lune/S. -lunée/F.() -lunette/S. -lunetterie/S. -lunettière/F.() -luni-solaire/S. -lunule/S. -lunure/S. -lupanar/S. -lupercale/W.() -lupercales -lupin/S. -lupuline/F.() -lupus -lurette/S. -luronne/F.() -lusin/S. -lusitanienne/F.() -lusophone/S. -lustrage/S. -lustrale/W.() -lustrante/F.() -lustration/S. -lustre/S. -lustrée/F.() -lustrer/a0a+() -lustrerie/S. -lustreuse/F.() -lustrine/S. -lustroir/S. -lutécienne/F.() -lutécium/S. -lutéine/S. -lutéinisation/S. -luter/a0a+() -luth/S. -luthéranisme/S. -lutherie/S. -luthérienne/F.() -luthière/F.() -luthiste/S. -lutin/S. -lutinée/F.() -lutiner/a0a+() -lutrin/S. -lutte/S. -lutter/a0() -lutteuse/F.() -lux/Um() -luxation/S. -luxe/S. -luxembourgeoise/F.() -luxembourgisme/S. -luxembourgiste/S. -luxer/a0a+() -luxmètre/S. -luxueuse/W.() -luxueusement -luxure/S. -luxuriance/S. -luxuriante/F.() -luxurieuse/W.() -luzerne/S. -luzernière/S. -luzule/S. -lx/U.||-- -lycanthrope/S. -lycanthropie/S. -lycaon/S. -lycée/S. -lycéenne/F.() -lycène/S. -lychnis -lycope/S. -lycopène/S. -lycoperdon/S. -lycopode/S. -lycose/S. -lycra -lyddite/S. -lydienne/F.() -lymphangite/S. -lymphatique/S. -lymphatisme/S. -lymphe/S. -lymphocytaire/S. -lymphocyte/S. -lymphocytose/S. -lymphœdème/S. -lymphogranulomatose/S. -lymphographie/S. -lymphoïde/S. -lymphome/S. -lymphopénie/S. -lynchage/S. -lynchée/F.() -lyncher/a0a+() -lyncheuse/F.() -lynx -lyonnaise/F.() -lyophile/S. -lyophilisat/S. -lyophilisateur/S. -lyophilisation/S. -lyophilisée/F.() -lyophiliser/a0a+() -lyophobe/S. -lyre/S. -lyrée/F.() -lyrer/a0() -lyric/S. -lyrique/S. -lyriquement -lyrisme/S. -lys -lysat/S. -lyse/S. -lyser/a0a+() -lysergamide/S. -lysergide/S. -lysergique/S. -lysimaque/S. -lysine/S. -lysogène/S. -lysogénie/S. -lysogénique/S. -lysosome/S. -lysosomiale/W.() -lysozyme/S. -lytique/S. -m -m/U.||-- -mR/||-- -ma -maboule/F.() -mac/S. -macabre/S. -macache -macadam/S. -macadamiser/a0a+() -macaque/S. -macareux -macaron/S. -macaroni/S. -macaronique/S. -macassar/S. -macchabée/S. -macchaber -macédoine/S. -macédonienne/F.() -macérateur/S. -macération/S. -macérée/F.() -macérer/c0a+() -maceron/S. -macfarlane/S. -mach -machaon/S. -mâche/S. -mâchée/F.() -mâchefer/S. -mâchement/S. -mâcher/a0a+() -machette/S. -mâcheuse/F.() -machiavel/S. -machiavélique/S. -machiavéliquement -machiavélisme/S. -machicoter/a0() -mâchicoulis -machin/S. -machinale/W.() -machinalement -machination/S. -machine/S. -machine-outil -machiner/a0a+() -machinerie/S. -machines-outils -machinisme/S. -machiniste/S. -machisme/S. -machiste/S. -machmètre/S. -macho/S. -mâchoire/S. -mâchon/S. -mâchonnement/S. -mâchonner/a0a+() -mâchouiller/a0a+() -mâchurer/a0a+() -macis -macle/S. -maclée/F.() -macler/a0a+() -mâcon/S. -maçonne/F.() -maçonner/a0a+() -maçonnerie/S. -maçonnique/S. -macque/S. -macquer/a0a+() -macramé/S. -macre/S. -macreuse/S. -macro/S. -macrobiotique/S. -macrocéphale/S. -macrocéphalie/S. -macrocosme/S. -macrocosmique/S. -macrocycle/S. -macrocyclique/S. -macrocyte/S. -macrocytose/S. -macrodécision/S. -macroéconomie/S. -macroéconomique/S. -macrofaune/S. -macrographie/S. -macro-instruction/S. -macromoléculaire/S. -macromolécule/S. -macron/S. -macronutriment/S. -macro-ordinateur/S. -macro-organisme/S. -macrophage/S. -macrophotographie/S. -macropode/S. -macroscélide/S. -macroscopie/S. -macroscopique/S. -macroscopiquement -macroséisme/S. -macrosporange/S. -macrospore/S. -macrostructure/S. -macroure/S. -macula/S. -maculage/S. -maculaire/S. -maculature/S. -macule/S. -maculée/F.() -maculer/a0a+() -madame/S. -madapolam/S. -made -madécasse/S. -madéfier/a0a+() -madeleine/S. -mademoiselle -madère/S. -madériser/a0a+() -madison/S. -madone/S. -madrague/S. -madras -madrée/F.() -madrépore/S. -madréporique/S. -madrier/S. -madrigal/X. -madrigaliser/a0() -madrigaliste/S. -madrilène/S. -maelström/S. -maërl/S. -maestoso -maestria -maestro/S. -mafflue/F.() -mafia/S. -mafieuse/W.() -mafioso/I. -magadhi/S. -maganer/a0a+() -magasin/S. -magasinage/S. -magasiner/a0a+() -magasinière/F.() -magazine/S. -magdalénienne/F.() -mage/S. -magellanique/S. -magenta -maghrébine/F.() -maghzen/S. -magicienne/F.() -magie/S. -magique/S. -magiquement -magister/S. -magistère/S. -magistrale/W.() -magistralement -magistrate/F.() -magistrature/S. -magma/S. -magmatique/S. -magmatisme/S. -magmatologie/S. -magnanarelle/S. -magnanerie/S. -magnanière/F.() -magnanime/S. -magnanimement -magnanimité/S. -magnat/S. -magner/a0a+() -magnésie/S. -magnésienne/F.() -magnésite/S. -magnésium/S. -magnet/S. -magnétique/S. -magnétiquement -magnétisante/F.() -magnétisation/S. -magnétisée/F.() -magnétiser/a0a+() -magnétiseuse/F.() -magnétisme/S. -magnétite/S. -magnéto/S. -magnétocassette/S. -magnétochimie/S. -magnétodynamique/S. -magnétoélasticité/S. -magnétoélectrique/S. -magnétohydrodynamique/S. -magnétomètre/S. -magnétométrie/S. -magnétomotrice/F.() -magnétopause/S. -magnétophone/S. -magnétorésistance/S. -magnétoscope/S. -magnétoscoper/a0a+() -magnétosphère/S. -magnétosphérique/S. -magnétostriction/S. -magnétothermique/S. -magnétron/S. -magnificat/S. -magnificence/S. -magnifiée/F.() -magnifier/a0a+() -magnifique/S. -magnifiquement -magnitude/S. -magnolia/S. -magnoliacée/S. -magnum/S. -magot/S. -magoter/a0a+() -magotte/S. -magouillage/S. -magouille/S. -magouiller/a0a+() -magouilleuse/F.() -magret/S. -magyare/F.() -maharadja/S. -maharaja/S. -maharani/S. -maharashtri/S. -mahatma/S. -mahdi/S. -mahdisme/S. -mahdiste/S. -mah-jong/S. -mahométane/F.() -mahométisme/S. -mahonia/S. -mahonne/S. -mahratte/S. -mai/S. -maïa/S. -maie/S. -maïeur/S. -maïeuticienne/F.() -maïeutique/S. -maigre/S. -maigrelette/F.() -maigrement -maigreur/S. -maigrichonne/F.() -maigriotte/F.() -maigrir/f0f+() -mail/S. -mail-coach/S. -mailing/S. -maillage/S. -maillard/S. -maille/S. -maillechort/S. -maillée/F.() -mailler/a0a+() -maillet/S. -mailleton/S. -mailloche/S. -maillon/S. -maillot/S. -maillotin/S. -maillure/S. -main/S. -mainate/S. -main-d'œuvre -main-forte -mainlevée/S. -mainmettre -mainmise/S. -mainmortable/S. -mainmorte/S. -mains-d'œuvre -mainte/F.() -maintenabilité/S. -maintenable/S. -maintenance/S. -maintenant -mainteneur/S. -maintenicienne/F.() -maintenir/i0i+() -maintenue/F.() -maintien/S. -mairesse/F.() -mairie/S. -mais -mais -mais -maïs -maïserie/S. -maïsicultrice/F.() -maïsiculture/S. -maison/S. -maisonnée/S. -maisonnette/S. -maistrance/S. -maître-à-danser -maître-assistant -maître-assistante -maître-autel -maître-chien -maître-nageur -maîtres-à-danser -maîtres-assistantes -maîtres-assitants -maîtres-autels -maîtres-chiens -maîtres-nageurs -maîtresse/F.() -maîtrisable/S. -maîtrise/S. -maîtrisée/F.() -maîtriser/a0a+() -maïzena/S. -majesté/S. -majestueuse/W.() -majestueusement -majeure/F.() -majolique/S. -major/S. -majorable/S. -majoral/X. -majorante/F.() -majorat/S. -majoration/S. -majordome/S. -majorée/F.() -majorer/a0a+() -majorette/S. -majoritaire/S. -majoritairement -majorité/S. -majuscule/S. -maki/S. -makimono/S. -mal -mal/X. -malabar/S. -malachite/S. -malacologie/S. -malacologiste/S. -malacologue/S. -malade/S. -maladie/S. -maladive/F.() -maladivement -maladrerie/S. -maladresse/S. -maladroite/F.() -maladroitement -malaga/S. -mal-aimée/F.() -malaire/S. -malaise/F.() -malaise/S. -malaisée/F.() -malaisément -malaisienne/F.() -malandre/S. -malandreuse/W.() -malandrin/S. -malapprise/F.() -malard/S. -malaria/S. -malariathérapie/S. -malart/S. -malavisée/F.() -malaxage/S. -malaxer/a0a+() -malaxeur/S. -malayo-polynésien/S. -malayo-polynésienne/F.() -malbar/S. -malbaraise/S. -malbouffe/S. -malchance/S. -malchanceuse/W.() -malcommode/S. -maldonne/S. -mâle/S. -malédiction/S. -maléfice/S. -maléfique/S. -malékisme/S. -malékite/S. -malencontreuse/W.() -malencontreusement -mal-en-point -malentendante/F.() -malentendu/S. -mal-être -malfaçon/S. -malfaire -malfaisance/S. -malfaisante/F.() -malfaiteur/S. -malfamée/F.() -malformation/S. -malfrat/S. -malgache/S. -malgracieuse/W.() -malgré -malhabile/S. -malhabilement -malheur/S. -malheureuse/W.() -malheureusement -malhonnête/S. -malhonnêtement -malhonnêteté/S. -mali/S. -malice/S. -malicieuse/W.() -malicieusement -malienne/F.() -maligne/F.() -malignement -malignité/S. -maline/S. -malingre/S. -malinoise/F.() -malintentionnée/F.() -malique/S. -mal-jugé/S. -malle/S. -malléabilisation/S. -malléabiliser/a0a+() -malléabilité/S. -malléable/S. -malléolaire/S. -malléole/S. -mallette/S. -mallouser/a0a+() -malmenée/F.() -malmener/b0a+() -malnutrition/S. -malocclusion/S. -malodorante/F.() -malotrue/F.() -malpighie/S. -malpolie/F.() -malposition/S. -malpropre/S. -malproprement -malpropreté/S. -malsaine/F.() -malséance/S. -malséante/F.() -malsonnante/F.() -malt/S. -maltage/S. -maltaise/F.() -maltase/S. -malter/a0a+() -malterie/S. -malteur/S. -malthusianisme/S. -malthusienne/F.() -maltose/S. -maltôte/S. -maltraitance/S. -maltraitante/F.() -maltraitée/F.() -maltraiter/a0a+() -malus -malvacée/S. -malveillance/S. -malveillante/F.() -malvenue/F.() -malversation/S. -malvoyante/F.() -maman/S. -mambo/S. -mamelle/S. -mamelon/S. -mamelonnée/F.() -mamelonner/a0a+() -mamelouk/S. -mamelue/F.() -mamie/S. -mamillaire/S. -mammaire/S. -mammalienne/F.() -mammalogie/S. -mammalogique/S. -mammalogiste/S. -mammifère/S. -mammite/S. -mammographie/S. -mammouth/S. -mammy/S. -mamours -mam'selle -mam'zelle -man/S. -mana/S. -manade/S. -manadière/F.() -management/S. -manager/S. -manager/a0a+() -managériale/W.() -manant/S. -mancelle/S. -mancenille/S. -mancenillier/S. -manche/S. -mancheron/S. -manchette/S. -manchon/S. -manchonner/a0a+() -manchote/F.() -mancie/S. -mancipation/S. -mandale/S. -mandante/F.() -mandarinale/W.() -mandarinat/S. -mandarine/F.() -mandarinier/S. -mandat/S. -mandataire/S. -mandat-carte -mandat-contributions -mandatée/F.() -mandatement/S. -mandater/a0a+() -mandat-lettre -mandats-cartes -mandats-contributions -mandats-lettres -mandature/S. -mandchoue/F.() -mandée/F.() -mandement/S. -mander/a0a+() -mandibulaire/S. -mandibule/S. -mandoline/S. -mandoliniste/S. -mandore/S. -mandorle/S. -mandragore/S. -mandrill/S. -mandrin/S. -mandrinage/S. -manducation/S. -manducatrice/F.() -manécanterie/S. -manège/S. -manéger/c0a+() -mânes -maneton/S. -manette/S. -manga/S. -manganate/S. -manganèse/S. -manganeuse/F.() -manganique/S. -manganite/S. -mangeable/S. -mangeaille/S. -mangée/F.() -mangeoire/S. -mangeotter/a0a+() -manger/S. -manger/a0a+() -mange-tout -mangeure/S. -mangeuse/F.() -manglier/S. -mangonneau/X. -mangoustan/S. -mangoustanier/S. -mangouste/S. -mangrove/S. -mangue/S. -manguier/S. -maniabilité/S. -maniable/S. -maniaco-dépressive/F.() -maniaque/S. -maniaquement -maniaquerie/S. -manichéenne/F.() -manichéisme/S. -manichordion/S. -manicle/S. -manicorde/S. -maniée/F.() -maniement/S. -manier/a0a+() -manière/S. -maniérée/F.() -maniérer/c0a+() -maniérisme/S. -maniériste/S. -manieuse/F.() -manifestante/F.() -manifestation/S. -manifeste/S. -manifestée/F.() -manifestement -manifester/a0a+() -manifold/S. -manigance/S. -manigancer/a0a+() -maniguette/S. -manille/S. -manillon/S. -manioc/S. -manipulable/S. -manipulation/S. -manipulatoire/S. -manipulatrice/F.() -manipulée/F.() -manipuler/a0a+() -manique/S. -manitou/S. -manivelle/S. -manne/S. -mannequin/S. -mannequinage/S. -mannequinat/S. -mannequiner/a0a+() -mannite/S. -mannose/S. -manodétendeur/S. -manœuvrabilité/S. -manœuvrable/S. -manœuvre/S. -manœuvrer/a0a+() -manœuvrière/F.() -manoir/S. -manomètre/S. -manométrie/S. -manométrique/S. -manoque/S. -manoquer/a0a+() -manouche/S. -manouvrière/F.() -manquante/F.() -manque/S. -manquée/F.() -manquement/S. -manquer/a0a+() -mansarde/S. -mansardée/F.() -mansarder/a0a+() -manse/S. -mansion/S. -mansuétude/S. -mante/S. -manteau/X. -mantelée/F.() -mantelet/S. -mantelure/S. -mantille/S. -mantique/S. -mantisse/S. -mantra/S. -manuaire/S. -manubrium/S. -manucure/S. -manucurée/F.() -manucurer/a0a+() -manuéline/F.() -manuelle/F.() -manuellement -manufacturable/S. -manufacture/S. -manufacturée/F.() -manufacturer/a0a+() -manufacturière/F.() -manumission/S. -manuscrite/F.() -manutention/S. -manutentionnaire/S. -manutentionner/a0a+() -manuterge/S. -maoïsme/S. -maoïste/S. -maorie/F.() -maousse/F.() -mappemonde/S. -mapper/a0a+() -maquer/a0a+() -maquereau/X. -maquerelle/S. -maquette/S. -maquetter/a0a+() -maquettiste/S. -maquignonnage/S. -maquignonne/F.() -maquignonner/a0a+() -maquillage/S. -maquillée/F.() -maquiller/a0a+() -maquilleuse/F.() -maquis -maquisarde/F.() -marabout/S. -marabouter/a0a+() -maraboutique/S. -maraboutisme/S. -maraîchage/S. -maraîchère/F.() -maraîchine/F.() -marais -maranta/S. -marante/S. -marasme/S. -marasque/S. -marasquin/S. -marathi/S. -marathon/S. -marathonienne/F.() -maratoner/a0() -marâtre/S. -maraudage/S. -maraude/F.() -marauder/a0a+() -maraudeuse/F.() -maravédis -maraver/a0a+() -marbre/S. -marbrée/F.() -marbrer/a0a+() -marbrerie/S. -marbreuse/F.() -marbrière/F.() -marbrure/S. -marc/S. -marcassin/S. -marcassite/S. -marcescence/S. -marcescente/F.() -marcescible/S. -marchandage/S. -marchande/F.() -marchander/a0a+() -marchandeuse/F.() -marchandisage/S. -marchandisation/S. -marchandise/S. -marchante/F.() -marchantie/S. -marche/S. -marché/S. -marchéage/S. -marchepied/S. -marcher/a0() -marchette/S. -marcheuse/F.() -marcottage/S. -marcotte/S. -marcotter/a0a+() -mardi/S. -mare/S. -marécage/S. -marécageuse/W.() -maréchalat -maréchale/W.() -maréchale-ferrante -maréchalerie/S. -maréchales-ferrantes -maréchal-ferrant -maréchaussée/S. -maréchaux-ferrants -marée/S. -marégraphe/S. -marelle/S. -maremmatique/S. -maremme/S. -marémotrice/F.() -marengo -marengo/S. -marennes -maréomètre/S. -mareyage/S. -mareyeuse/F.() -marfil/S. -margaille/S. -margarine/S. -margauder/a0() -margay/S. -marge/S. -margelle/S. -marger/a0a+() -margeuse/F.() -marginale/W.() -marginalement -marginalisation/S. -marginalisée/F.() -marginaliser/a0a+() -marginalisme/S. -marginalité/S. -marginée/F.() -marginer/a0a+() -margis -margoter/a0() -margotin/S. -margouillis -margoulette/S. -margoulin/S. -margrave/S. -margraviat/S. -marguerite/S. -marguillière/F.() -mari/S. -mariable/S. -mariage/S. -marial/S. -mariale/W.() -maricultrice/F.() -mariculture/S. -marie-couche-toi-là -mariée/F.() -marie-jeanne -marier/a0a+() -marieuse/F.() -marigot/S. -marijuana/S. -marinade/S. -marinage/S. -marine/F.() -marine/S. -marinée/F.() -mariner/a0a+() -maringouin/S. -marinière/F.() -marinisme/S. -mariole/S. -marionnette/S. -marionnettiste/S. -mariste/S. -maritale/W.() -maritalement -maritime/S. -maritorne/S. -marivaudage/S. -marivauder/a0() -marjolaine/S. -mark/S. -marketeuse/F.() -marketing/S. -markovienne/F.() -marli/S. -marlou/S. -marmaille/S. -marmelade/S. -marmenteau/X. -marmitage/S. -marmite/S. -marmiter/a0a+() -marmitonne/F.() -marmonnée/F.() -marmonnement/S. -marmonner/a0a+() -marmoréenne/F.() -marmoriser/a0a+() -marmot/S. -marmotte/S. -marmottement/S. -marmotter/a0a+() -marmotteuse/F.() -marmouset/S. -marnage/S. -marnaise/F.() -marne/S. -marner/a0a+() -marneuse/F.() -marneuse/W.() -marnière/S. -marocaine/F.() -maroilles -maronite/S. -maronner/a0() -maroquin/S. -maroquinage/S. -maroquiner/a0a+() -maroquinerie/S. -maroquinière/F.() -marotique/S. -marotte/S. -marouette/S. -marouflage/S. -maroufle/S. -maroufler/a0a+() -maroute/S. -marquage/S. -marquante/F.() -marque/S. -marquée/F.() -marque-page/S. -marquer/a0a+() -marquetée/F.() -marqueter/d0a+() -marqueterie/S. -marqueteur/S. -marqueuse/F.() -marquisat/S. -marquise/F.() -marquoir/S. -marraine/S. -marrante/F.() -marrer/a0a+() -marrie/F.() -marron/S. -marronnage/S. -marronne/F.() -marronner/a0() -marronnier/S. -marrube/S. -mars -marsault/S. -marseillaise/F.() -marsouin/S. -marsouiner/a0() -marsupial/X. -marsupiale/W.() -martagon/S. -marte/S. -marteau/X. -marteau-pilon -marteaux-pilons -martel -martelage/S. -martelée/F.() -martèlement/S. -marteler/b0a+() -marteleuse/F.() -martensite/S. -martiale/W.() -martialement -martienne/F.() -martin/S. -martinet/S. -martingale/S. -martini/S. -martiniquaise/F.() -martin-pêcheur -martins-pêcheurs -martre/S. -martyre/F.() -martyrisée/F.() -martyriser/a0a+() -martyrium/S. -martyrologe/S. -marxienne/F.() -marxiser/a0a+() -marxisme/S. -marxisme-léninisme -marxiste/S. -marxiste-léniniste -marxistes-léninistes -maryland/S. -mas -mas/||-- -mascara/S. -mascarade/S. -mascaret/S. -mascaron/S. -mascarpone/S. -mascogne/S. -mascotte/S. -masculine/F.() -masculinisation/S. -masculiniser/a0a+() -masculinité/S. -maser/S. -maskinongé/S. -maso/S. -masochisme/S. -masochiste/S. -masquage/S. -masquante/F.() -masque/S. -masquée/F.() -masquer/a0a+() -massacrante/F.() -massacre/S. -massacrée/F.() -massacrer/a0a+() -massacreuse/F.() -massage/S. -masse/S. -massée/F.() -masselotte/S. -massepain/S. -masser/a0a+() -masséter/S. -massette/S. -masseuse/F.() -massicot/S. -massicoter/a0a+() -massicotière/F.() -massière/F.() -massif/S. -massification/S. -massifier/a0a+() -massique/S. -massive/F.() -massivement -massivité/S. -massorah/S. -massothérapeute/S. -massothérapie/S. -massue/S. -mastaba/S. -mastectomie/S. -mastéguer -master/S. -mastère/S. -mastic/S. -masticage/S. -masticateur/S. -mastication/S. -masticatoire/S. -masticatrice/F.() -mastiff/S. -mastiquer/a0a+() -mastite/S. -mastoc -mastocyte/S. -mastodonte/S. -mastoïde/S. -mastoïdienne/F.() -mastoïdite/S. -mastologie/S. -mastopathie/S. -mastose/S. -mastroquet/S. -masturbation/S. -masturber/a0a+() -m'as-tu-vu -masure/S. -masurium/S. -mât/S. -matabicher/a0a+() -matador/S. -mataf/S. -matage/S. -matamore/S. -match/S. -matcher/a0a+() -mate/F.() -matefaim/S. -matelas -matelassée/F.() -matelasser/a0a+() -matelassière/F.() -matelote/F.() -mater/a0a+() -mâter/a0a+() -mâtereau/X. -matérialisation/S. -matérialisée/F.() -matérialiser/a0a+() -matérialisme/S. -matérialiste/S. -matérialité/S. -matériau/X. -matérielle/F.() -matériellement -maternage/S. -maternelle/F.() -maternellement -materner/a0a+() -materniser/a0a+() -maternité/S. -mateuse/F.() -math/S. -mathématicienne/F.() -mathématique/S. -mathématiquement -mathématisation/S. -mathématiser/a0a+() -matheuse/W.() -matière/S. -matin/S. -matinale/W.() -matinalement -mâtine/F.() -mâtinée/F.() -matinée/S. -mâtiner/a0a+() -matines -matineuse/W.() -matinière/F.() -matir/f0f+() -matité/S. -matoir/S. -matoise/F.() -matonne/F.() -matos -matou/S. -matouner/a0a+() -matraquage/S. -matraque/S. -matraquée/F.() -matraquer/a0a+() -matraqueuse/F.() -matras -matriarcale/W.() -matriarcat/S. -matriarche/S. -matricaire/S. -matrice/S. -matricer/a0a+() -matricide/S. -matricielle/F.() -matricule/S. -matriculer/a0a+() -matrilinéaire/S. -matrilocale/W.() -matrimoniale/W.() -matrimonialement -matriochka/S. -matroïde/S. -matrone/S. -matte/S. -matthiole/S. -maturation/S. -mature/S. -mâture/S. -maturer/a0a+() -maturité/S. -matutinale/W.() -maubèche/S. -maudire/yF() -maudite/F.() -maugréer/a0a+() -maurandie/S. -maure/S. -maurelle/S. -mauresque/S. -mauricienne/F.() -mauritanienne/F.() -mauser/S. -mausolée/S. -maussade/S. -maussadement -maussaderie/S. -mauvaise/F.() -mauvaiseté/S. -mauve/S. -mauvéine/S. -mauviette/S. -mauvis -max -maxillaire/S. -maxille/S. -maxillo-faciale/W.() -maxima/S. -maximale/W.() -maximalisation/S. -maximaliser/a0a+() -maximalisme/S. -maximaliste/S. -maxime/S. -maximisation/S. -maximisée/F.() -maximiser/a0a+() -maximum/S. -maxwell/S. -maya/S. -maye/S. -mayen/S. -mayonnaise/S. -mazagran/S. -mazdéisme/S. -mazette -mazout/S. -mazouter/a0a+() -mazurka/S. -mbar/||-- -me/S. -mea-culpa -méandre/S. -méandrine/S. -méat/S. -mébibit/S. -mébioctet/S. -mec/S. -mécane/S. -mécanicien-dentiste -mécanicienne/F.() -mécaniciens-dentistes -mécanique/S. -mécaniquement -mécanisation/S. -mécanisée/F.() -mécaniser/a0a+() -mécanisme/S. -mécaniste/S. -mécano/S. -mécanographe/S. -mécanographie/S. -mécanographique/S. -mécanothérapie/S. -mécatronicienne/F.() -mécatronique/S. -meccano/S. -mécénat/S. -mécène/S. -méchage/S. -méchamment -méchanceté/S. -méchante/F.() -mèche/S. -mécher/c0a+() -mécheuse/W.() -méchoui/S. -mechta/S. -mécompte/S. -mécompter/a0a+() -méconduire -méconduite/S. -méconium/S. -méconnaissable/S. -méconnaissance/S. -méconnaître/wQ() -méconnue/F.() -mécontente/F.() -mécontentée/F.() -mécontentement/S. -mécontenter/a0a+() -mécoptère/S. -mécréance/S. -mécréante/F.() -mécroire -médaille/S. -médaillée/F.() -médailler/a0a+() -médailleuse/F.() -médaillier/S. -médailliste/S. -médaillon/S. -mède/S. -médecin/S. -médecine/S. -medecine-ball/S. -medersa/S. -média/S. -médiale/W.() -médialogie/S. -médialogue/S. -médiane/F.() -médianoche/S. -médiante/S. -médiaplanning/S. -médiastin/S. -médiate/F.() -médiathèque/S. -médiation/S. -médiatique/S. -médiatiquement -médiatisation/S. -médiatisée/F.() -médiatiser/a0a+() -médiator/S. -médiatrice/F.() -médicale/W.() -médicalement -médicalisante/F.() -médicalisation/S. -médicalisée/F.() -médicaliser/a0a+() -médicament/S. -médicamenter/a0a+() -médicamenteuse/W.() -médicastre/S. -médication/S. -médicinale/W.() -médicinier/S. -médico-chirurgicale/W.() -médico-légale/W.() -médico-pédagogique/S. -médico-professionnelle/F.() -médico-sociale/W.() -médiévale/W.() -médiévisme/S. -médiéviste/S. -médina/S. -médiocratie/S. -médiocre/S. -médiocrement -médiocrité/S. -médique/S. -médire/yE() -médisance/S. -médisante/F.() -médiser/a0() -méditante/F.() -méditation/S. -méditative/F.() -méditée/F.() -méditer/a0a+() -méditerranée/F.() -méditerranéenne/F.() -médium/S. -médiumnique/S. -médiumnité/S. -médius -médoc/S. -médullaire/S. -médulleuse/W.() -médusante/F.() -méduse/S. -médusée/F.() -méduser/a0a+() -meeting/S. -méfaire -méfait/S. -méfiance/S. -méfiante/F.() -méfier/a0a+() -méforme/S. -méga/S. -mégabit/S. -mégacéros -mégacôlon/S. -mégacycle/S. -mégafaune/S. -mégalithe/S. -mégalithique/S. -mégalithisme/S. -mégalo/S. -mégalomane/S. -mégalomaniaque/S. -mégalomanie/S. -mégalopole/S. -mégaoctet/S. -mégaparsec/S. -mégaphone/S. -mégapixel/S. -mégapode/S. -mégapole/S. -mégaptère/S. -mégarde/S. -mégathérium/S. -mégatonne/S. -mégère/S. -mégir/f0f+() -mégisser/a0a+() -mégisserie/S. -mégissier/S. -mégohmmètre/S. -mégot/S. -mégoter/a0a+() -mehalla/S. -méharée/S. -méhari/S. -méhariste/S. -meïji/S. -meilleure/F.() -méiose/S. -méiotique/S. -meistre/S. -meitnérium/S. -méjanage/S. -méjuger/a0a+() -mél -mélamine/S. -mélaminé/S. -mélaminée/F.() -mélampyre/S. -mélancolie/S. -mélancolique/S. -mélancoliquement -mélanésienne/F.() -mélange/S. -mélangeante/F.() -mélangée/F.() -mélanger/a0a+() -mélangeur-doseur/S. -mélangeurs-doseurs -mélangeuse/F.() -mélanine/S. -mélanique/S. -mélanisme/S. -mélanodermie/S. -mélanome/S. -mélanose/S. -mélanostimuline/S. -mélasse/S. -mélatonine/S. -melba -melchior/S. -méléagrine/S. -mêlé-cass -mêlée/F.() -mêlée/S. -méléna/S. -mêler/a0a+() -mêle-tout -mélèze/S. -mélia/S. -méliacée/S. -mélilot/S. -méli-mélo -mélinite/S. -méliorative/F.() -mélique/S. -mélis-mélos -mélisse/S. -mélitte/S. -melkite/S. -mellah/S. -mellifère/S. -mellification/S. -melliflue/F.() -mellite/S. -mélo/S. -mélodie/S. -mélodieuse/W.() -mélodieusement -mélodique/S. -mélodiste/S. -mélodramatique/S. -mélodrame/S. -mélomane/S. -melon/S. -mélongine/S. -melonnée/F.() -melonnière/S. -mélopée/S. -mélophage/S. -mélusine/S. -membranaire/S. -membrane/S. -membraneuse/W.() -membranule/S. -membre/S. -membrée/F.() -membron/S. -membrue/F.() -membrure/S. -même -mémé/S. -même/S. -mêmement -mémento/S. -mémère/S. -mémétique/S. -mémo/S. -mémoire/S. -mémorable/S. -mémorandum/S. -mémoration/S. -mémorial/X. -mémorialiste/S. -mémorielle/F.() -mémorisable/S. -mémorisation/S. -mémorisée/F.() -mémoriser/a0a+() -menaçante/F.() -menace/S. -menacée/F.() -menacer/a0a+() -ménade/S. -ménage/S. -ménageable/S. -ménagée/F.() -ménagement/S. -ménager/a0a+() -ménagère/F.() -ménagerie/S. -ménagiste/S. -menchevique/S. -mendélévium/S. -mendélienne/F.() -mendélisme/S. -mendiante/F.() -mendicité/S. -mendier/a0a+() -mendigote/F.() -mendigoter/a0a+() -meneau/X. -mener/b0a+() -ménestrel/S. -ménétrier/S. -meneuse/F.() -menhir/S. -menine/F.() -méninge/S. -méningée/F.() -méningiome/S. -méningite/S. -méningitique/S. -méningocoque/S. -ménisque/S. -mennonite/S. -ménologe/S. -ménopause/S. -ménopausée/S. -ménopausique/S. -ménorragie/S. -menottage/S. -menotte/S. -menottée/F.() -menotter/a0a+() -mense/S. -mensonge/S. -mensongère/F.() -mensongèrement -menstruation/S. -menstruelle/F.() -menstrues -mensualisation/S. -mensualisée/F.() -mensualiser/a0a+() -mensualité/S. -mensuelle/F.() -mensuellement -mensuration/S. -mensurer/a0a+() -mentale/W.() -mentalement -mentalisme/S. -mentaliste/S. -mentalité/S. -menterie/S. -menteuse/F.() -menthe/S. -menthol/S. -mentholée/F.() -mention/S. -mentionner/a0a+() -mentir/i5i+() -mentisme/S. -menton/S. -mentonnet/S. -mentonnière/F.() -mentonnière/S. -mentor/S. -mentorat/S. -menue/F.() -menuet/S. -menuiser/a0a+() -menuiserie/S. -menuisière/F.() -ménure/S. -ményanthe/S. -méphistophélique/S. -méphitique/S. -méphitisme/S. -méplat/S. -méplate/F.() -méprendre/tG() -mépris -méprisable/S. -méprisante/F.() -méprise/S. -méprisée/F.() -mépriser/a0a+() -mer/S. -mercanti/S. -mercantile/S. -mercantiliser/a0a+() -mercantilisme/S. -mercantiliste/S. -mercaptan/S. -mercaticienne/F.() -mercatique/S. -mercenaire/S. -mercenariat/S. -mercerie/S. -mercerisage/S. -merceriser/a0a+() -merchandising/S. -merci -merci/S. -mercière/F.() -mercredi/S. -mercure/S. -mercureux -mercuriale/S. -mercurielle/F.() -mercurochrome/S. -merdaille/S. -merdaillon/S. -merde -merde/S. -merder/a0() -merdeuse/W.() -merdier/S. -merdique/S. -merdouiller/a0() -merdoyer/a0() -mère/S. -mère-grand -mères-grand -merguez -méridienne/F.() -méridionale/W.() -meringue/S. -meringuée/F.() -meringuer/a0a+() -mérinos -merise/S. -merisier/S. -méristème/S. -méritante/F.() -mérite/S. -méritée/F.() -mériter/a0a+() -méritocratie/S. -méritocratique/S. -méritoire/S. -merl/S. -merlan/S. -merle/S. -merlette/S. -merlin/S. -merlon/S. -merlu/S. -merluche/S. -méromorphe/S. -méromorphie/S. -méromorphiquement -méronyme/S. -méronymie/S. -mérostome/S. -mérou/S. -mérovingienne/F.() -merrain/S. -merroutage/S. -merveille/S. -merveilleuse/W.() -merveilleusement -mérycisme/S. -mesa/S. -mésalliance/S. -mésallier/a0a+() -mésange/S. -mésangette/S. -mésaventure/S. -mescaline/S. -mesclun/S. -mesdames -mesdemoiselles -mésencéphale/S. -mésenchyme/S. -mésentente/S. -mésentère/S. -mésentérique/S. -mésestimation/S. -mésestime/S. -mésestimée/F.() -mésestimer/a0a+() -mésintelligence/S. -mesmérisme/S. -mésoblaste/S. -mésocarpe/S. -mésocéphale/S. -mésocéphalique/S. -mésoderme/S. -mésolithique/S. -méson/S. -mésopause/S. -mésopotamienne/F.() -mésosphère/S. -mésothéliale/W.() -mésothéliome/S. -mésothélium/S. -mésothorax -mésozoaire/S. -mésozoïque/S. -mesquine/F.() -mesquinement -mesquinerie/S. -mess -message/S. -messagère/F.() -messagerie/S. -messe/S. -messeigneurs -messeoir/pW() -messer/S. -messianique/S. -messianisme/S. -messianité/S. -messidor/S. -messie/S. -messier/S. -messieurs -messire/S. -mestre/S. -mesurabilité/S. -mesurable/S. -mesurablement -mesurage/S. -mesure/S. -mesurée/F.() -mesurer/a0a+() -mesurette/S. -mesureur/S. -mésusage/S. -mésuser/a0() -méta/S. -métabole/S. -métabolique/S. -métabolisation/S. -métabolisée/F.() -métaboliser/a0a+() -métabolisme/S. -métabolite/S. -métacarpe/S. -métacarpienne/F.() -métacentre/S. -métaconnaissance/S. -métadonnée/S. -métairie/S. -métal/X. -métalangage/S. -métalangue/S. -métaldéhyde/S. -métalepse/S. -métalinguistique/S. -métalléité/S. -métallerie/S. -métallicité/S. -métallière/F.() -métallifère/S. -métallique/S. -métallisation/S. -métallisée/F.() -métalliser/a0a+() -métalliste/S. -métallo/S. -métallochromie/S. -métallogénie/S. -métallographe/S. -métallographie/S. -métallographique/S. -métalloïde/S. -métalloplastique/S. -métalloprotéine/S. -métallurgie/S. -métallurgique/S. -métallurgiste/S. -métamathématique/S. -métamère/S. -métamorphique/S. -métamorphiser/a0a+() -métamorphisme/S. -métamorphosable/S. -métamorphose/S. -métamorphoser/a0a+() -métaphase/S. -métaphore/S. -métaphorique/S. -métaphoriquement -métaphorisée/F.() -métaphoriser/a0a+() -métaphosphorique/S. -métaphyse/S. -métaphysicienne/F.() -métaphysique/S. -métaphysiquement -métaplasie/S. -métaplectique/S. -métapsychique/S. -métapsychologie/S. -métastase/S. -métastaser/a0a+() -métastatique/S. -métatarse/S. -métatarsienne/F.() -métathèse/S. -métayage/S. -métayère/F.() -métazoaire/S. -méteil/S. -métempsychose/S. -métempsycose/S. -métencéphale/S. -météo -météore/S. -météorique/S. -météoriser/a0a+() -météorisme/S. -météorite/S. -météoritique/S. -météoroïde/S. -météorologie/S. -météorologique/S. -météorologiste/S. -météorologue/S. -métèque/S. -méthacrylique/S. -méthadone/S. -méthamphétamine/S. -méthane/S. -méthanier/S. -méthanique/S. -méthanoïque/S. -méthanol/S. -méthémoglobine/S. -méthionine/S. -méthode/S. -méthodique/S. -méthodiquement -méthodisme/S. -méthodiste/S. -méthodologie/S. -méthodologique/S. -méthodologiquement -méthylamine/S. -méthyle/S. -méthylène/S. -méthylique/S. -méticuleuse/W.() -méticuleusement -méticulosité/S. -métier/S. -métis -métissage/S. -métisse/S. -métissée/F.() -métisser/a0a+() -métonymie/S. -métonymique/S. -métope/S. -métrage/S. -mètre/Um() -métrer/c0a+() -métreuse/F.() -métricienne/F.() -métrique/S. -métrisable/S. -métrite/S. -métro/S. -métrologie/S. -métrologique/S. -métrologiste/S. -métrologue/S. -métromanie/S. -métronome/S. -métropole/S. -métropolisation/S. -métropolitaine/F.() -métropolite/S. -métrorragie/S. -métrosexuelle/F.() -mettable/S. -metteuse/F.() -mettre/vA() -meublante/F.() -meuble/S. -meublé/S. -meublée/F.() -meubler/a0a+() -meuf/S. -meuglement/S. -meugler/a0() -meulage/S. -meule/S. -meuler/a0a+() -meulette/S. -meuleuse/S. -meulière/F.() -meulon/S. -meunerie/S. -meunière/F.() -meurette/S. -meurtre/S. -meurtrie/F.() -meurtrière/F.() -meurtrir/f0f+() -meurtrissante/F.() -meurtrissure/S. -meute/S. -mévendre/tA() -mévente/S. -mexicaine/F.() -mézail/S. -mézigue/S. -mezzanine/S. -mezzo/S. -mezzo-soprano/S. -mezzotinto/S. -mgr/||-- -mi -mi/||-- -miam -miam-miam -miaou/S. -mi-août -miasmatique/S. -miasme/S. -miaulement/S. -miauler/a0() -miauleuse/F.() -mi-avril -mi-bas -mica/S. -micacée/F.() -mi-carême/S. -micaschiste/S. -micellaire/S. -micelle/S. -miche/S. -micheline/S. -mi-chemin -micheton/S. -michetonner/a0() -mi-close/F.() -micmac/S. -micocoulier/S. -mi-côte -micro/S. -microampèremètre/S. -microanalyse/S. -microbalance/S. -microbe/S. -microbicide/S. -microbienne/F.() -microbiologie/S. -microbiologique/S. -microbiologiste/S. -microbouturage/S. -microbus -micro-casque -microcéphale/S. -microcéphalie/S. -microchimie/S. -microchirurgie/S. -microcinéma/S. -microcircuit/S. -microclimat/S. -microcoque/S. -microcosme/S. -microcosmique/S. -micro-cravate -microcrédit/S. -microcristal/X. -microdifférentiel/S. -microdissection/S. -microdistribution/S. -microéconomie/S. -microéconomique/S. -microélectronique/S. -microentreprise/S. -microfaune/S. -microfibre/S. -microfibrée/F.() -microfiche/S. -microfilm/S. -microfilmer/a0a+() -microflore/S. -microfonction/S. -microglobuline/S. -microglossaire/S. -micrographie/S. -micrographique/S. -microgrenue/F.() -microhistoire/S. -micro-informatique/S. -micro-instruction/S. -micro-irrigation/S. -microlangage/S. -microlite/S. -microlithe/S. -microlithique/S. -microlitique/S. -microlocale/W.() -microlocalement -microlocalisée/F.() -micrologiciel/S. -micromanipulation/S. -micrométrie/S. -micrométrique/S. -micron/S. -micronésienne/F.() -microniser/a0a+() -micronutriment/S. -micro-onde/S. -micro-ondes -micro-ordinateur/S. -micro-organisme/S. -microparticule/S. -micropénis -microphage/S. -microphone/S. -microphonique/S. -microphotographie/S. -microphysique/S. -microprocesseur/S. -microprogramme/S. -micropropagation/S. -micropyle/S. -microrœntgen/S. -micros-casques -microscope/S. -microscopie/S. -microscopique/S. -microscopiquement -micros-cravates -microsillon/S. -microsomatie/S. -microsome/S. -microsomiale/W.() -microsonde/S. -micros-trottoirs -microstructure/S. -microtechnologie/S. -microtome/S. -micro-trottoir -microtubule/S. -microvillosité/S. -microzoaire/S. -miction/S. -mi-décembre -midi/S. -midinette/S. -midship/S. -midshipman/S. -mie/S. -miel/S. -miellée/F.() -mielleuse/W.() -mielleusement -mienne/F.() -miette/S. -mieux -mieux-disante/F.() -mieux-être -mieux-vivre -mièvre/S. -mièvrement -mièvrerie/S. -mi-février -mi-fin/S. -migmatite/S. -mignarde/F.() -mignarder/a0a+() -mignardise/S. -mignonne/F.() -mignonnement -mignonnet/S. -mignonnette/F.() -mignonnette/S. -mignoter/a0a+() -migraine/S. -migraineuse/W.() -migrante/F.() -migration/S. -migratoire/S. -migratrice/F.() -migrer/a0() -mi-jambe -mi-janvier -mijaurée/S. -mijoler/a0() -mijoter/a0a+() -mijoteuse/S. -mi-juillet -mi-juin -mikado/S. -mil/S. -milan/S. -milanaise/F.() -mildiou/S. -mildiousée/F.() -mile/S. -miliaire/S. -milice/S. -milicienne/F.() -milieu/X. -militaire/S. -militairement -militante/F.() -militantisme/S. -militarisation/S. -militarisée/F.() -militariser/a0a+() -militarisme/S. -militariste/S. -militaro-industrielle/F.() -militer/a0() -milk-bar/S. -milk-shake/S. -millage/S. -millas -millasse/S. -mille/S. -mille-feuille/S. -mille-fleurs -millénaire/S. -millénarisme/S. -millénariste/S. -millénium/S. -mille-pattes -millepertuis -millépore/S. -milleraies -millerandage/S. -millerandée/F.() -millésimale/W.() -millésime/S. -millésimée/F.() -millésimer/a0a+() -millet/S. -milliaire/S. -milliard/S. -milliardaire/S. -milliardième/S. -milliasse/S. -millibar/S. -millième/S. -millier/S. -milligrade/S. -millime/S. -millimétrée/F.() -millimétrique/S. -million/S. -millionième/S. -millionnaire/S. -millirœntgen/S. -millithermie/S. -milord/S. -milouin/S. -mi-mai -mi-mars -mime/S. -mimer/a0a+() -mimétique/S. -mimétisme/S. -mimi/S. -mimique/S. -mimodrame/S. -mimographe/S. -mimolette/S. -mimologie/S. -mimosa/S. -mimosacée/S. -mimosée/S. -min -min/S. -min/||-- -minable/S. -minablement -minage/S. -minahouet/S. -minaret/S. -minauder/a0() -minauderie/S. -minaudière/F.() -minbar/S. -mince/S. -minceur/S. -mincir/f0() -mine/S. -minée/F.() -miner/a0a+() -minérale/W.() -minéralier/S. -minéralier-pétrolier/S. -minéraliers-pétroliers -minéralisable/S. -minéralisante/F.() -minéralisation/S. -minéralisatrice/F.() -minéralisée/F.() -minéraliser/a0a+() -minéralogie/S. -minéralogique/S. -minéralogiquement -minéralogiste/S. -minéralurgie/S. -minérographie/S. -minerval/S. -minerve/S. -minerviste/S. -minestrone/S. -minette/F.() -mineure/F.() -mineuse/S. -mini/S. -miniature/S. -miniaturée/F.() -miniaturer/a0a+() -miniaturisation/S. -miniaturisée/F.() -miniaturiser/a0a+() -miniaturiste/S. -minibus -minicar/S. -minicassette/S. -minichaîne/S. -minidisque/S. -minière/F.() -minigolf/S. -minijupe/S. -minima/S. -minimale/W.() -minimalisme/S. -minimaliste/S. -minimalité/S. -minime/S. -minimessage/S. -minimex -minimexée/F.() -minimisante/F.() -minimisation/S. -minimisée/F.() -minimiser/a0a+() -minimum/S. -mini-ordinateur/S. -minispace/S. -ministère/S. -ministérielle/F.() -ministrable/S. -ministre/S. -ministre-président -ministre-présidente -ministres-présidentes -ministres-présidents -minitel/S. -minium/S. -minnesinger/S. -minoenne/F.() -minois -minon/S. -minorante/F.() -minoration/S. -minorative/F.() -minorée/F.() -minorer/a0a+() -minoritaire/S. -minorité/S. -minot/S. -minotaure/S. -minoterie/S. -minotière/F.() -minou/S. -mi-novembre -minuit/S. -minus -minuscule/S. -minutage/S. -minutaire/S. -minute/S. -minutée/F.() -minuter/a0a+() -minuterie/S. -minuteur/S. -minutie/S. -minutier/S. -minutieuse/W.() -minutieusement -miocène/S. -mioche/S. -mi-octobre -mi-partie/F.() -mir/S. -mirabelle/S. -mirabellier/S. -mirabilis -miracle/S. -miraculée/F.() -miraculeuse/W.() -miraculeusement -mirador/S. -mirage/S. -miraillée/F.() -mirbane/S. -mire/S. -mirée/F.() -mire-œufs -mirepoix -mirer/a0a+() -mirettes -mireuse/F.() -mirifique/S. -mirliflor/S. -mirliflore/S. -mirliton/S. -mirmidon/S. -mirmillon/S. -miro/S. -mirobolante/F.() -miroir/S. -miroitante/F.() -miroitée/F.() -miroitement/S. -miroiter/a0() -miroiterie/S. -miroitière/F.() -mironton/S. -miroton/S. -misaine/S. -misandre/S. -misandrie/S. -misanthrope/S. -misanthropie/S. -misanthropique/S. -miscellanées -miscibilité/S. -miscible/S. -mise/F.() -mise/S. -misée/F.() -mi-septembre -miser/a0a+() -misérabilisme/S. -misérabiliste/S. -misérable/S. -misérablement -misère/S. -misérer/c0() -miserere -miséréré/S. -miséreuse/W.() -miséricorde/S. -miséricordieuse/W.() -miséricordieusement -misogyne/S. -misogynie/S. -misologie/S. -misonéisme/S. -misonéiste/S. -mispickel/S. -miss -missel/S. -missile/S. -missilière/F.() -mission/S. -missionnaire/S. -missionner/a0a+() -missive/S. -mistelle/S. -mistigri/S. -mistonne/F.() -mistoufle/S. -mistral/S. -mitage/S. -mitaine/S. -mitan/S. -mitard/S. -mitarder -mite/S. -mitée/F.() -mi-temps -miter/a0a+() -miteuse/W.() -mithraïsme/S. -mithriacisme/S. -mithriaque/S. -mithridatisation/S. -mithridatiser/a0a+() -mithridatisme/S. -mitigation/S. -mitigée/F.() -mitiger/a0a+() -mitigeur/S. -mitochondriale/W.() -mitochondrie/S. -miton/S. -mitonner/a0a+() -mitose/S. -mitoyenne/F.() -mitoyenneté/S. -mitraillade/S. -mitraillage/S. -mitraille/S. -mitraillée/F.() -mitrailler/a0a+() -mitraillette/S. -mitrailleuse/F.() -mitrale/W.() -mitre/S. -mitrée/F.() -mitron/S. -mi-voix -mixage/S. -mixer/a0a+() -mixeuse/F.() -mixité/S. -mixte/S. -mixtion/S. -mixtionner/a0a+() -mixture/S. -ml -mmHg/||-- -mnémonique/S. -mnémotechnie/S. -mnémotechnique/S. -moabite/S. -mob/S. -mobile/S. -mobilier/S. -mobilière/F.() -mobilisable/S. -mobilisante/F.() -mobilisation/S. -mobilisatrice/F.() -mobilisée/F.() -mobiliser/a0a+() -mobilité/S. -mobilophone/S. -mobilophonie/S. -mobinaute/S. -moblot/S. -mobutisme/S. -mobylette/S. -mocassin/S. -mocharde/F.() -moche/S. -mocheté/S. -moco/S. -modale/W.() -modalisation/S. -modalité/S. -mode/S. -modelage/S. -modelante/F.() -modèle/S. -modelée/F.() -modeler/b0a+() -modeleuse/F.() -modélisation/S. -modélisatrice/F.() -modélisée/F.() -modéliser/a0a+() -modélisme/S. -modéliste/S. -modem/S. -modénature/S. -modérantisme/S. -modération/S. -moderato -moderato/S. -modératrice/F.() -modérée/F.() -modérément -modérer/c0a+() -moderne/S. -modernisation/S. -modernisée/F.() -moderniser/a0a+() -modernisme/S. -moderniste/S. -modernité/S. -modeste/S. -modestement -modestie/S. -modicité/S. -modifiable/S. -modifiante/F.() -modification/S. -modificative/F.() -modificatrice/F.() -modifiée/F.() -modifier/a0a+() -modillon/S. -modique/S. -modiquement -modiste/S. -modo -modulable/S. -modulaire/S. -modulante/F.() -modularisation/S. -modularité/S. -modulation/S. -modulatrice/F.() -module/S. -modulée/F.() -moduler/a0a+() -modulo -modulor/S. -modus -moelle/S. -moelleuse/W.() -moelleusement -moellon/S. -moere/S. -mœurs -mofette/S. -mofler/a0a+() -moghole/F.() -mohair/S. -moi -moignon/S. -moi-même -moindre/S. -moindrement -moine/S. -moineau/X. -moinerie/S. -moinillon/S. -moins -moins-perçu/S. -moins-value/S. -moirage/S. -moire/S. -moirée/F.() -moirer/a0a+() -moirure/S. -mois -moise/S. -moïse/S. -moiser/a0a+() -moisie/F.() -moisir/f0f+() -moisissure/S. -moissine/S. -moisson/S. -moissonnage/S. -moissonnée/F.() -moissonner/a0a+() -moissonneuse/F.() -moissonneuse-batteuse -moissonneuse-lieuse -moissonneuses-batteuses -moissonneuses-lieuses -moite/S. -moiter/a0() -moiteur/S. -moitié/S. -moitié-moitié -moitir/f0f+() -moka/S. -mol/S. -mol/U.||-- -molaire/S. -molasse/S. -moldave/S. -môle/S. -mole/Um() -moléculaire/S. -molécule/S. -molène/S. -moleskine/S. -molestée/F.() -molester/a0a+() -moletage/S. -moleter/d0a+() -molette/S. -molière/S. -moliéresque/S. -moliniste/S. -molinosiste/S. -mollah/S. -mollard/S. -mollarder/a0a+() -mollasse/S. -mollasserie/S. -mollassonne/F.() -molle/S. -mollement -mollesse/S. -mollet/S. -molletière/S. -molleton/S. -molletonnée/F.() -molletonner/a0a+() -molletonneuse/W.() -mollette/F.() -mollir/f0f+() -mollisol/S. -mollo -molluscum/S. -mollusque/S. -moloch/S. -molosse/S. -molossoïde/S. -moly/S. -molybdate/S. -molybdène/S. -molybdique/S. -molysmologie/S. -môme/S. -moment/S. -momentanée/F.() -momentanément -momerie/S. -momie/S. -momification/S. -momifiée/F.() -momifier/a0a+() -momordique/S. -mon -monacale/W.() -monachisme/S. -monade/S. -monadelphe/S. -monadique/S. -monadisme/S. -monarchie/S. -monarchique/S. -monarchisme/S. -monarchiste/S. -monarque/S. -monastère/S. -monastique/S. -monazite/S. -monceau/X. -mondaine/F.() -mondainement -mondanité/S. -monde/S. -monder/a0a+() -mondiale/W.() -mondialement -mondialisation/S. -mondialisée/F.() -mondialiser/a0a+() -mondialisme/S. -mondialiste/S. -mondovision/S. -monégasque/S. -monel/S. -monème/S. -monétaire/S. -monétarisme/S. -monétariste/S. -monétique/S. -monétisée/F.() -monétiser/a0a+() -mongole/F.() -mongolienne/F.() -mongolique/S. -mongolisme/S. -mongoloïde/S. -moniale/W.() -monisme/S. -moniste/S. -monition/S. -monitoire/S. -monitor/S. -monitorage/S. -monitorat/S. -monitoring/S. -monitrice/F.() -monnayable/S. -monnayage/S. -monnayée/F.() -monnayer/a0a+() -monnayeuse/F.() -mono/S. -monoacide/S. -monoamine/S. -monoatomique/S. -monobloc/S. -monocamérale/W.() -monocaméralisme/S. -monocamérisme/S. -monocaténaire/S. -monocellulaire/S. -monochromatique/S. -monochrome/S. -monochromie/S. -monocle/S. -monoclinale/W.() -monoclinique/S. -monocomposante/F.() -monocoque/S. -monocorde/S. -monocorps -monocotylédone/S. -monocristalline/F.() -monoculaire/S. -monoculture/S. -monocycle/S. -monocyclique/S. -monocyte/S. -monodie/S. -monodique/S. -monodirectionnelle/F.() -monodromie/S. -monodromique/S. -monœcie/S. -monogame/S. -monogamie/S. -monogamique/S. -monogène/S. -monogénique/S. -monogénisme/S. -monogramme/S. -monographie/S. -monographique/S. -monoïde/S. -monoïdéisme/S. -monoïque/S. -monokini/S. -monolingue/S. -monolinguisme/S. -monolithe/S. -monolithique/S. -monolithisme/S. -monologue/S. -monologuer/a0() -monomaniaque/S. -monomanie/S. -monôme/S. -monomère/S. -monométallisme/S. -monométalliste/S. -monomode/S. -monomorphisme/S. -monomoteur/S. -monomotrice/F.() -mononucléaire/S. -mononucléose/S. -monoparentale/W.() -monoparentalité/S. -monopartisme/S. -monophasée/F.() -monophonie/S. -monophonique/S. -monophtongue/S. -monophylétique/S. -monophysisme/S. -monophysite/S. -monoplace/S. -monoplan/S. -monopole/S. -monopôle/S. -monopolisante/F.() -monopolisation/S. -monopolisatrice/F.() -monopolisée/F.() -monopoliser/a0a+() -monopoliste/S. -monopolistique/S. -monoprix -monoprocesseur/S. -monopsone/S. -monoptère/S. -monorail/S. -monorime/S. -monosaccharide/S. -monosépale/S. -monosilane/S. -monoski/S. -monosodique/S. -monospace/S. -monosperme/S. -monostable/S. -monostyle/S. -monosulfite/S. -monosyllabe/S. -monosyllabique/S. -monosyllabisme/S. -monotâche/S. -monoterpène/S. -monothéique/S. -monothéisme/S. -monothéiste/S. -monotone/S. -monotonement -monotonicité/S. -monotonie/S. -monotonique/S. -monotrace/S. -monotrème/S. -monotype/S. -monovalente/F.() -monoxène/S. -monoxyde/S. -monoxyle/S. -monozygote/S. -monseigneur -monsieur -monsignor -monsignore/S. -monsignori -monstrance/S. -monstre/S. -monstrueuse/W.() -monstrueusement -monstruosité/S. -mont/S. -montable/S. -montage/S. -montagnarde/F.() -montagne/S. -montagnette/S. -montagneuse/W.() -montaison/S. -montanisme/S. -montaniste/S. -montante/F.() -mont-blanc -mont-de-piété -monte-charge -montée/F.() -monte-fût -monte-glace -monte-pente -monte-plats -monter/a0a+() -monte-sacs -monteuse/F.() -montgolfière/S. -monticole/S. -monticule/S. -mont-joie -montmorency/S. -montoir/S. -montoise/F.() -montrable/S. -montre/S. -montréalaise/F.() -montre-bracelet -montrée/F.() -montrer/a0a+() -montres-bracelets -montreuse/F.() -monts-blancs -monts-de-piété -monts-joie -montueuse/W.() -monture/S. -monument/S. -monumentale/W.() -monumentalité/S. -moquer/a0a+() -moquerie/S. -moquette/S. -moquetter/a0a+() -moquettiste/S. -moqueuse/F.() -moracée/S. -moraillon/S. -moraine/S. -morainique/S. -morale/W.() -moralement -moralisante/F.() -moralisation/S. -moralisatrice/F.() -moralisée/F.() -moraliser/a0a+() -moralisme/S. -moraliste/S. -moralité/S. -morasse/S. -moratoire/S. -moratorium/S. -morbide/S. -morbidement -morbidité/S. -morbilleuse/W.() -morbleu -morbus -morceau/X. -morcelable/S. -morcelée/F.() -morceler/d0a+() -morcellement/S. -mordache/S. -mordacité/S. -mordançage/S. -mordancer/a0a+() -mordante/F.() -mordicante/F.() -mordicus -mordillement/S. -mordiller/a0a+() -mordorée/F.() -mordorer/a0a+() -mordorure/S. -mordre/tA() -mordue/F.() -more/S. -moreau/X. -morelle/S. -moresque/S. -morfale/W.() -morfaler/a0() -morfil/S. -morfiler/a0a+() -morfler/a0a+() -morfondre/tE() -morfondue/F.() -morganatique/S. -morganatiquement -morgeline/S. -morgue/S. -morguenne -morguienne -moribonde/F.() -moricaude/F.() -morigénée/F.() -morigéner/c0a+() -morille/S. -morillon/S. -morio/S. -morion/S. -mormone/F.() -mormonisme/S. -morne/S. -mornée/F.() -mornement -mornifle/S. -mornifler/a0a+() -morose/S. -morosité/S. -morphème/S. -morphine/S. -morphinique/S. -morphinisme/S. -morphinomane/S. -morphinomanie/S. -morphisme/S. -morphogène/S. -morphogenèse/S. -morphologie/S. -morphologique/S. -morphologiquement -morphopsychologie/S. -morpion/S. -mors -morse/S. -morsure/S. -mort/S. -mortadelle/S. -mortaisage/S. -mortaise/S. -mortaiser/a0a+() -mortaiseuse/F.() -mortalité/S. -mort-aux-rats -morte/F.() -morte-eau -mortelle/F.() -mortellement -morte-saison -mortes-eaux -mortes-saisons -mortier/S. -mortifère/S. -mortifiante/F.() -mortification/S. -mortifiée/F.() -mortifier/a0a+() -mortinatalité/S. -mort-née/F.() -mortuaire/S. -morue/S. -morula/S. -morutière/F.() -morve/S. -morveuse/W.() -mosaïque/S. -mosaïquée/F.() -mosaïsme/S. -mosaïste/S. -mosane/F.() -moscoutaire/S. -moscovite/S. -mosellane/F.() -mosette/S. -mosquée/S. -mot/S. -motamoter/a0() -motarde/F.() -mot-clé -mot-clef -motel/S. -motet/S. -motif/S. -motilité/S. -motion/S. -motionner/a0() -motivante/F.() -motivation/S. -motivée/F.() -motiver/a0a+() -moto/S. -motociste/S. -motocross -motoculteur/S. -motoculture/S. -motocycle/S. -motocyclette/S. -motocyclisme/S. -motocycliste/S. -motogodille/S. -motonautique/S. -motonautisme/S. -motoneige/S. -motoneigiste/S. -motopompe/S. -motopropulseur/S. -motorisation/S. -motorisée/F.() -motoriser/a0a+() -motoriste/S. -motorship/S. -mototracteur/S. -motrice/F.() -motricité/S. -mots-clefs -mots-clés -mots-croisiste/S. -mots-valises -motte/S. -motter/a0a+() -motteux -motus -mot-valise -mou/S. -mouais -mouchage/S. -moucharabieh/S. -mouchardage/S. -moucharde/F.() -moucharder/a0a+() -mouche/S. -moucher/a0a+() -moucherolle/S. -moucheron/S. -moucheronner/a0() -mouchetée/F.() -moucheter/d0a+() -mouchetis -moucheture/S. -moucheuse/F.() -mouchoir/S. -mouchure/S. -moudjahid -moudjahidin -moudre/xP() -moue/S. -mouette/S. -mouetter/a0() -moufeter -moufette/S. -mouffette/S. -mouflage/S. -moufle/S. -mouflée/F.() -moufler/a0a+() -mouflette/F.() -mouflon/S. -moufter/f+() -mouillage/S. -mouillante/F.() -mouillement/S. -mouiller/a0a+() -mouillère/S. -mouillette/S. -mouilleur/S. -mouilloir/S. -mouillure/S. -mouise/S. -moujik/S. -moujingue/S. -moukère/S. -moulage/S. -moulante/F.() -moule/S. -moulée/F.() -mouler/a0a+() -mouleuse/F.() -moulière/S. -moulin/S. -moulinage/S. -mouliner/a0a+() -moulinet/S. -moulinette/S. -moulineuse/F.() -moulinière/F.() -moult -moulue/F.() -moulure/S. -moulurer/a0a+() -moumoute/S. -mourante/F.() -mouride/S. -mouridisme/S. -mourir/iP() -mouroir/S. -mouron/S. -mouronner/a0a+() -mourre/S. -mouscaille/S. -mousmé/S. -mousquet/S. -mousquetade/S. -mousquetaire/S. -mousqueterie/S. -mousqueton/S. -moussaillon/S. -moussaka/S. -moussante/F.() -mousse/S. -mousseline/S. -mousser/a0() -mousseron/S. -mousseuse/W.() -moussoir/S. -mousson/S. -moussue/F.() -moustache/S. -moustachue/F.() -moustérienne/F.() -moustiquaire/S. -moustique/S. -moût/S. -moutard/S. -moutarde/S. -moutardière/F.() -moutier/S. -mouton/S. -moutonnante/F.() -moutonnée/F.() -moutonnement/S. -moutonner/a0() -moutonnerie/S. -moutonneuse/W.() -moutonnière/F.() -mouture/S. -mouvance/S. -mouvante/F.() -mouvement/S. -mouvementée/F.() -mouvementer/a0a+() -mouver/a0a+() -mouvoir/pHpI() -moviola/S. -moxa/S. -moxibustion/S. -moyée/F.() -moyen-âge -moyenâgeuse/W.() -moyen-courrier/S. -moyennabilité/S. -moyennable/S. -moyenne/F.() -moyennement -moyenner/a0a+() -moyennisation/S. -moyette/S. -moyeu/X. -mozabite/S. -mozambicaine/F.() -mozarabe/S. -mozette/S. -mozzarella/S. -ms -mth/||-- -mu -muance/S. -mucher/a0a+() -mucilage/S. -mucilagineuse/W.() -mucor/S. -mucosité/S. -mucoviscidose/S. -mucron/S. -mucus -mudéjare/F.() -mudra/S. -mue/F.() -mue/S. -muée/F.() -muer/a0a+() -muesli/S. -muette/F.() -muezzin/S. -muffin/S. -mufle/S. -muflerie/S. -muflier/S. -mufti/S. -muge/S. -mugir/f0f+() -mugissante/F.() -mugissement/S. -muguet/S. -mugueter/d0a+() -muid/S. -mularde/F.() -mulassière/F.() -mulâtresse/F.() -mule/S. -mule-jenny/S. -mulet/S. -muleta/S. -muletière/F.() -mulette/S. -mulon/S. -mulot/S. -muloter/a0() -mulsion/S. -multibras -multicellulaire/S. -multicolore/S. -multiconfessionnelle/F.() -multicritère/S. -multiculturalisme/S. -multiculturaliste/S. -multiculturelle/F.() -multidiffusion/S. -multidimensionnelle/F.() -multidirectionnalité/S. -multidirectionnelle/F.() -multidisciplinaire/S. -multifactorielle/F.() -multifilaire/S. -multiflore/S. -multifonction/S. -multifonctionnalité/S. -multifonctionnelle/F.() -multiforme/S. -multigénique/S. -multigraduée/F.() -multigraphe/S. -multihomogène/S. -multijoueur/S. -multilatérale/W.() -multilatéralisme/S. -multilatération/S. -multilinéaire/S. -multilingue/S. -multilinguisme/S. -multimédia/S. -multimètre/S. -multimilliardaire/S. -multimillionnaire/S. -multimodale/W.() -multimode/S. -multinationale/W.() -multinationalisation/S. -multipare/S. -multipartisme/S. -multiplate-forme/S. -multiple/S. -multiplex -multiplexage/S. -multiplexe/S. -multiplexer/a0a+() -multiplexeur/S. -multipliable/S. -multiplicande/S. -multiplicateur/S. -multiplication/S. -multiplicative/F.() -multiplicativement -multiplicativité/S. -multiplicatrice/F.() -multiplicité/S. -multipliée/F.() -multiplier/a0a+() -multipolaire/S. -multipôle/S. -multiprise/S. -multiprocesseur/S. -multiprogrammation/S. -multipropriété/S. -multiraciale/W.() -multirécidiviste/S. -multirisque/S. -multisalle/S. -multiséculaire/S. -multisommabilité/S. -multisommable/S. -multistandard/S. -multisupport/S. -multitâche/S. -multitraitement/S. -multitube/S. -multitubulaire/S. -multitude/S. -multivalente/F.() -multivaluée/F.() -multivariée/F.() -multivibrateur/S. -multivoie/S. -multivoque/S. -municipale/W.() -municipalisation/S. -municipalisée/F.() -municipaliser/a0a+() -municipalité/S. -municipe/S. -munie/F.() -munificence/S. -munificente/F.() -munir/f0f+() -munition/S. -munitionnaire/S. -munitionner/a0a+() -munster/S. -muon/S. -muqueuse/W.() -mur/S. -murage/S. -muraille/S. -murailler/a0a+() -murale/W.() -mûre/F.() -mûre/S. -murée/F.() -mûrement -murène/S. -murer/a0a+() -muret/S. -muretin/S. -murette/S. -murex -murge/S. -murger/a0a+() -muriate/S. -muriatique/S. -mûrie/F.() -mûrier/S. -murine/F.() -mûrir/f0f+() -mûrissage/S. -murissante/F.() -mûrissante/F.() -mûrissement/S. -mûrisserie/S. -murmel/S. -murmurante/F.() -murmure/S. -murmurée/F.() -murmurer/a0a+() -mûron/S. -murrhine/F.() -musacée/S. -musagète/S. -musaraigne/S. -musarde/F.() -musarder/a0() -musardise/S. -musc/S. -muscade/S. -muscadet/S. -muscadier/S. -muscadin/S. -muscardine/F.() -muscari/S. -muscarine/S. -muscat/S. -muscinale/W.() -muscinée/S. -muscle/S. -musclée/F.() -muscler/a0a+() -muscovite/S. -musculaire/S. -musculairement -musculation/S. -musculature/S. -musculeuse/W.() -musculo-squelettique/S. -musculotrope/S. -muse/S. -muséale/W.() -museau/X. -musée/S. -muselée/F.() -museler/d0a+() -muselet/S. -muselière/S. -musellement/S. -muséographe/S. -muséographie/S. -muséologie/S. -muséologique/S. -muséologue/S. -muser/a0a+() -muserolle/S. -musette/S. -muséum/S. -musicale/W.() -musicalement -musicalité/S. -music-hall/S. -musicienne/F.() -musicographe/S. -musicographie/S. -musicologie/S. -musicologique/S. -musicologue/S. -musicothérapie/S. -musique/S. -musiquer/a0a+() -musiquette/S. -musoir/S. -musquée/F.() -musquer/a0a+() -musse/S. -musser/a0a+() -mussitation/S. -mussive/F.() -must/S. -mustang/S. -mustélidé/S. -musulmane/F.() -mutabilité/S. -mutable/S. -mutage/S. -mutagène/S. -mutante/F.() -mutateur/S. -mutation/S. -mutationnisme/S. -mutationniste/S. -mutée/F.() -muter/a0a+() -mutilante/F.() -mutilation/S. -mutilatrice/F.() -mutilée/F.() -mutiler/a0a+() -mutine/F.() -mutinée/F.() -mutiner/a0a+() -mutinerie/S. -mutique/S. -mutisme/S. -mutité/S. -mutualisation/S. -mutualisée/F.() -mutualiser/a0a+() -mutualisme/S. -mutualiste/S. -mutualité/S. -mutuelle/F.() -mutuellement -mutule/S. -myalgie/S. -myasthénie/S. -mycélienne/F.() -mycélium/S. -mycénienne/F.() -mycète/S. -mycobactérie/S. -mycoderme/S. -mycodermique/S. -mycologie/S. -mycologique/S. -mycologue/S. -mycoplasme/S. -mycorhization/S. -mycorhize/S. -mycorhizienne/F.() -mycose/S. -mycosique/S. -mydriase/S. -mydriatique/S. -mye/S. -myéline/S. -myélite/S. -myéloblaste/S. -myélocyte/S. -myélogramme/S. -myélographie/S. -myélome/S. -mygale/S. -myiase/S. -myocarde/S. -myocardiopathie/S. -myocardite/S. -myofibrille/S. -myoglobine/S. -myographe/S. -myologie/S. -myome/S. -myopathie/S. -myope/S. -myopie/S. -myopotame/S. -myosis -myosite/S. -myosotis -myotique/S. -myriade/S. -myriamètre/S. -myriapode/S. -myriophylle/S. -myrmécophile/S. -myrmidon/S. -myrobolan/S. -myrosine/S. -myroxyle/S. -myroxylon/S. -myrrhe/S. -myrtacée/S. -myrte/S. -myrtiforme/S. -myrtille/S. -mystagogie/S. -mystagogue/S. -myste/S. -mystère/S. -mystérieuse/W.() -mystérieusement -mysticisme/S. -mysticité/S. -mystifiable/S. -mystifiante/F.() -mystification/S. -mystificatrice/F.() -mystifiée/F.() -mystifier/a0a+() -mystique/S. -mystiquement -mythe/S. -mythifiée/F.() -mythifier/a0a+() -mythique/S. -mythographe/S. -mythologie/S. -mythologique/S. -mythologue/S. -mythomane/S. -mythomaniaque/S. -mythomanie/S. -mytilicultrice/F.() -mytiliculture/S. -mytilotoxine/S. -myxine/S. -myxœdémateuse/W.() -myxœdème/S. -myxomatose/S. -n -na -nabab/S. -nabote/F.() -nacarat/S. -nacelle/S. -nacre/S. -nacrée/F.() -nacrer/a0a+() -nadir/S. -nævocarcinome/S. -nævus -nafé/S. -nagaïka/S. -nage/S. -nagée/S. -nageoire/S. -nager/a0a+() -nageuse/F.() -naguère -nahaïka/S. -naïade/S. -naine/F.() -naissain/S. -naissance/S. -naissante/F.() -naisseuse/F.() -naître/wR() -naïve/F.() -naïvement -naïveté/S. -naja/S. -namibienne/F.() -namuroise/F.() -nana/S. -nanan/S. -nanar/S. -nancéienne/F.() -nandou/S. -nanifier/a0a+() -nanisme/S. -nankin/S. -nanocomposant/S. -nanoélectronique/S. -nanomachine/S. -nanoparticule/S. -nanophysique/S. -nanoscience/S. -nanotechnologie/S. -nanotechnologique/S. -nanotube/S. -nansouk/S. -nantie/F.() -nantir/f0f+() -nantissable/S. -nantissement/S. -nanzouk/S. -naos -napalm/S. -napée/S. -napel/S. -naphtalène/S. -naphtaline/S. -naphte/S. -naphtol/S. -napoléon/S. -napoléonienne/F.() -napolitaine/F.() -nappage/S. -nappe/S. -napper/a0a+() -napperon/S. -narcéine/S. -narcisse/S. -narcissique/S. -narcissiquement -narcissisme/S. -narcoanalyse/S. -narcodollar/S. -narcolepsie/S. -narcoleptique/S. -narcose/S. -narcothérapie/S. -narcotine/S. -narcotique/S. -narcotrafic/S. -narcotrafiquante/F.() -nard/S. -nargue/S. -narguée/F.() -narguer/a0a+() -narguilé/S. -narine/S. -narquoise/F.() -narquoisement -narration/S. -narrative/F.() -narratrice/F.() -narrée/F.() -narrer/a0a+() -narthex -narval/S. -nasale/W.() -nasalisation/S. -nasaliser/a0a+() -nasalité/S. -nasarde/F.() -nase/S. -naseau/X. -nasillarde/F.() -nasillement/S. -nasiller/a0a+() -nasilleuse/F.() -nasique/S. -nasitort/S. -nasonnement/S. -nasse/S. -nassérisme/S. -nassériste/S. -natale/F.() -nataliste/S. -natalité/S. -natation/S. -natatoire/S. -natchaver/a0() -natice/S. -nation/S. -nationale/W.() -nationalement -nationalisation/S. -nationalisée/F.() -nationaliser/a0a+() -nationalisme/S. -nationaliste/S. -nationalité/S. -national-socialisme/S. -national-socialiste -nationaux-socialistes -native/F.() -nativement -nativisme/S. -nativiste/S. -nativité/S. -natoufien/S. -natron/S. -natrum/S. -nattage/S. -natte/S. -nattée/F.() -natter/a0a+() -nattière/F.() -naturalisation/S. -naturalisée/F.() -naturaliser/a0a+() -naturalisme/S. -naturaliste/S. -naturalité/S. -nature/S. -naturelle/F.() -naturellement -naturisme/S. -naturiste/S. -naturopathe/S. -naturopathie/S. -naucore/S. -naufrage/S. -naufragée/F.() -naufrager/a0() -naufrageuse/F.() -naumachie/S. -naupathie/S. -nauplius -nauséabonde/F.() -nausée/S. -nauséeuse/W.() -nautile/S. -nautique/S. -nautisme/S. -nautonière/F.() -navaja/S. -navale/F.() -navaler -navalisation/S. -navarin/S. -navarque/S. -navel/S. -navet/S. -navette/S. -navetteuse/F.() -navicert/S. -naviculaire/S. -navicule/S. -navigabilité/S. -navigable/S. -navigante/F.() -navigation/S. -navigatrice/F.() -naviguer/a0() -naviplane/S. -navire/S. -navire-école -navires-écoles -navisphère/S. -navrante/F.() -navrée/F.() -navrement/S. -navrer/a0a+() -nazaréenne/F.() -nazie/F.() -nazillonne/F.() -nazisme/S. -ne -néandertalien/S. -néandertalienne/F.() -néanmoins -néant/S. -néantisation/S. -néantiser/a0a+() -nebka/S. -nébulaire/S. -nébuleuse/W.() -nébulisation/S. -nébuliseur/S. -nébulosité/S. -nec -nécessaire/S. -nécessairement -nécessitante/F.() -nécessiter/a0a+() -nécessiteuse/W.() -neck/S. -nec-plus-ultra -nécrobie/S. -nécrologe/S. -nécrologie/S. -nécrologique/S. -nécrologue/S. -nécromancie/S. -nécromancienne/F.() -nécromante/F.() -nécrophage/S. -nécrophagie/S. -nécrophile/S. -nécrophilie/S. -nécrophilique/S. -nécrophore/S. -nécropole/S. -nécropsie/S. -nécrose/S. -nécrosée/F.() -nécroser/a0a+() -nécrotique/S. -nectaire/S. -nectar/S. -nectarine/S. -nectarivore/S. -necton/S. -née/F.() -néerlandaise/F.() -néerlandophone/S. -nef/S. -néfaste/S. -nèfle/S. -néflier/S. -négation/S. -négationnisme/S. -négationniste/S. -négative/F.() -négativement -négativisme/S. -négativiste/S. -négativité/S. -négaton/S. -négatoscope/S. -négatrice/F.() -négligeable/S. -négligée/F.() -négligemment -négligence/S. -négligente/F.() -négliger/a0a+() -négoce/S. -négociabilité/S. -négociable/S. -négociante/F.() -négociation/S. -négociatrice/F.() -négociée/F.() -négocier/a0a+() -négondo/S. -nègre/S. -négresse/S. -négrière/F.() -négrifier/a0a+() -négrille/S. -négrillonne/F.() -négritude/S. -négro/S. -négro-africaine/F.() -négroïde/S. -negro-spiritual/S. -néguentropie/S. -négus -neige/S. -neigeoter/a9() -neiger/a9() -neigeuse/W.() -nélombo/S. -némale/S. -némalion/S. -nématoblaste/S. -nématocyste/S. -nématode/S. -nématomorphe/S. -néné/S. -nénette/S. -nénies -nenni -nénuphar/S. -néo -néoblaste/S. -néo-calédonienne/F.() -néocapitalisation/S. -néocapitalisme/S. -néocapitaliste/S. -néoceltique/S. -néoclassicisme/S. -néoclassique/S. -néocolonialisme/S. -néocolonialiste/S. -néocomienne/F.() -néocommunisme/S. -néocommuniste/S. -néoconservatisme/S. -néoconservatrice/F.() -néocriticisme/S. -néocriticiste/S. -néodarwinisme/S. -néodyme/S. -néofascisme/S. -néofasciste/S. -néoformation/S. -néoformée/F.() -néogène/S. -néogothique/S. -néogrecque/F.() -néo-hébridaise/F.() -néokantisme/S. -néolibérale/W.() -néolibéralisme/S. -néolithique/S. -néologie/S. -néologique/S. -néologisme/S. -néoménie/S. -néomycine/S. -néon/S. -néonatale/F.() -néonatalogie/S. -néonatologie/S. -néonazie/F.() -néonazisme/S. -néophyte/S. -néoplasique/S. -néoplasme/S. -néoplatonicienne/F.() -néoplatonisme/S. -néopositivisme/S. -néopositiviste/S. -néoprène/S. -néoréalisme/S. -néoréaliste/S. -néoromane/F.() -néoténie/S. -néotestamentaire/S. -néothomisme/S. -néottie/S. -néovasculaire/S. -néovascularisation/S. -néo-zélandaise/F.() -néozoïque/S. -népalaise/F.() -népenthès -néper/S. -néperienne/F.() -népérienne/F.() -népète/S. -néphéline/S. -néphélinique/S. -néphélion/S. -néphrectomie/S. -néphrétique/S. -néphridie/S. -néphrite/S. -néphrographie/S. -néphrologie/S. -néphrologue/S. -néphron/S. -néphropathie/S. -néphropathologie/S. -néphrose/S. -népotisme/S. -neptunium/S. -nerd/S. -néréide/S. -nerf/S. -néritique/S. -néroli/S. -néronienne/F.() -nerprun/S. -nervation/S. -nerveuse/W.() -nerveusement -nervi/S. -nervin/S. -nervosité/S. -nervure/S. -nervurée/F.() -nervurer/a0a+() -nestorianisme/S. -nestorienne/F.() -netcam/S. -netiquette -nétiquette -nette/F.() -nettement -netteté/S. -nettoiement/S. -nettoyage/S. -nettoyante/F.() -nettoyée/F.() -nettoyer/a0a+() -nettoyeuse/F.() -neumatique/S. -neume/S. -neuneu/S. -neurale/W.() -neurasthénie/S. -neurasthénique/S. -neuroanatomie/S. -neuroanatomiste/S. -neurobiochimie/S. -neurobiochimique/S. -neurobiochimiste/S. -neurobiologie/S. -neurobiologiste/S. -neuroblaste/S. -neurochimie/S. -neurochimique/S. -neurochimiste/S. -neurochirurgicale/W.() -neurochirurgie/S. -neurochirurgienne/F.() -neurodégénérative/F.() -neurodépresseur/S. -neuroendocrinienne/F.() -neuroendocrinologie/S. -neurofibrille/S. -neurofibromatose/S. -neurohistologie/S. -neurohypophyse/S. -neuroleptique/S. -neurolinguistique/S. -neurologie/S. -neurologique/S. -neurologiste/S. -neurologue/S. -neuromédiateur/S. -neuromédiation/S. -neuromotrice/F.() -neuromusculaire/S. -neuronale/W.() -neurone/S. -neuronique/S. -neuropaludisme/S. -neuropathie/S. -neuropathologie/S. -neuropathologique/S. -neuropathologiste/S. -neuropeptide/S. -neuropharmacologie/S. -neurophysiologie/S. -neuroplasticité/S. -neuroplégique/S. -neuropsychiatre/S. -neuropsychiatrie/S. -neuropsychologie/S. -neuropsychologique/S. -neuropsychologue/S. -neuroscience/S. -neurosensorielle/F.() -neurotomie/S. -neurotonie/S. -neurotonique/S. -neurotoxine/S. -neurotoxique/S. -neurotransmetteur/S. -neurotransmission/S. -neurotrope/S. -neurovégétative/F.() -neurula/S. -neutralisante/F.() -neutralisation/S. -neutralisée/F.() -neutraliser/a0a+() -neutralisme/S. -neutraliste/S. -neutralité/S. -neutre/S. -neutrino/S. -neutrographie/S. -neutron/S. -neutronique/S. -neutronographie/S. -neutrophile/S. -neuvaine/S. -neuve/F.() -neuvième/S. -neuvièmement -névé/S. -neveu/X. -névralgie/S. -névralgique/S. -névraxe/S. -névrilème/S. -névrite/S. -névritique/S. -névrodermite/S. -névroglie/S. -névropathe/S. -névropathie/S. -névroptère/S. -névrose/S. -névrosée/F.() -névrotique/S. -new-look -news -newton/Um() -newtonienne/F.() -new-yorkaise/F.() -nexus -nez -ni -niable/S. -niaise/F.() -niaisement -niaiser/a0() -niaiserie/S. -niaouli/S. -niaque/S. -nib -nicaraguayenne/F.() -niche/S. -nichée/F.() -nicher/a0a+() -nichet/S. -nicheuse/F.() -nichoir/S. -nichon/S. -nichrome/S. -nickel/S. -nickelage/S. -nickelée/F.() -nickeler/d0a+() -nickélifère/S. -nicnac/S. -nicodème/S. -niçoise/F.() -nicol/S. -nicolaïsme/S. -nicotine/S. -nicotinique/S. -nicotiniser/a0a+() -nicotinisme/S. -nictation/S. -nictitante/F.() -nictitation/S. -nid/S. -nidation/S. -nid-d'abeilles -nid-de-poule -nidification/S. -nidifier/a0() -nids-d'abeilles -nids-de-poule -nièce/S. -niée/F.() -niellage/S. -nielle/S. -nieller/a0a+() -nielleur/S. -niellure/S. -nier/a0a+() -nietzschéenne/F.() -nietzschéisme/S. -nife/S. -nigaude/F.() -nigauderie/S. -nigelle/S. -nigériane/F.() -nigérianiser/a0a+() -nigérienne/F.() -night-club/S. -nihilisme/S. -nihiliste/S. -nihilo -nilgaut/S. -nille/S. -nilotique/S. -nilpotence/S. -nilpotente/F.() -nilvariété/S. -nimbe/S. -nimbée/F.() -nimber/a0a+() -nimbostratus -nimbus -nîmoise/F.() -n'importe -ninas -ninja/S. -ninjato/S. -niobium/S. -niôle/S. -nippe/S. -nipper/a0a+() -nippone/F.() -niqab/S. -nique/S. -niquedouille/S. -niquer/a0a+() -niqueuse/F.() -nirvana/S. -nitescence/S. -nitratation/S. -nitrate/S. -nitratée/F.() -nitrater/a0a+() -nitration/S. -nitre/S. -nitrée/F.() -nitrer/a0a+() -nitreuse/W.() -nitrière/S. -nitrification/S. -nitrifier/a0a+() -nitrile/S. -nitrique/S. -nitrite/S. -nitrobenzène/S. -nitrobenzine/S. -nitrocellulose/S. -nitroglycérine/S. -nitrophile/S. -nitrosation/S. -nitrotoluène/S. -nitruration/S. -nitrure/S. -nitrurer/a0a+() -nivale/W.() -nivaquiner/a0() -nivéale/W.() -niveau/X. -nivelage/S. -nivelée/F.() -niveler/d0a+() -nivelette/S. -niveleuse/F.() -nivellement/S. -nivéole/S. -nivernaise/F.() -nivo-glaciaire/S. -nivologie/S. -nivologue/S. -nivo-pluviale/W.() -nivôse/S. -nivosité/S. -nixe/S. -nizeré/S. -no -nô -nobélium/S. -nobiliaire/S. -nobilité/S. -noblaillon/S. -noble/S. -noblement -noblesse/S. -nobliau/X. -nobscuriter/a0() -noce/S. -nocer/a0() -noceuse/F.() -nocher/S. -nociception/S. -nociceptive/F.() -nocive/F.() -nocivité/S. -noctambule/S. -noctambulisme/S. -noctiluque/S. -noctuelle/S. -noctule/S. -nocturne/S. -nocuité/S. -nodale/W.() -nodosité/S. -nodulaire/S. -nodule/S. -noduleuse/W.() -noël/S. -noethérienne/F.() -noétique/S. -nœud/S. -noirâtre/S. -noiraude/F.() -noirceur/S. -noircie/F.() -noircir/f0f+() -noircissante/F.() -noircissement/S. -noircisseur/S. -noircissure/S. -noire/F.() -noise/S. -noiseraie/S. -noisetier/S. -noisette/S. -noix -noli-me-tangere -nolis -noliser/a0a+() -nolissement/S. -nom/S. -nomade/S. -nomadiser/a0() -nomadisme/S. -nombrable/S. -nombre/S. -nombrée/F.() -nombrer/a0a+() -nombreuse/W.() -nombril/S. -nombrilisme/S. -nombriliste/S. -nome/S. -nomenclatrice/F.() -nomenclature/S. -nominale/W.() -nominalement -nominalisation/S. -nominaliser/a0a+() -nominalisme/S. -nominaliste/S. -nominante/F.() -nomination/S. -nominative/F.() -nominativement -nominée/F.() -nominer/a0a+() -nominette/S. -nommage/S. -nommée/F.() -nommément -nommer/a0a+() -nomogramme/S. -nomographie/S. -nomothétique/S. -non -non -non-acceptation/S. -non-activité/S. -nonagénaire/S. -non-agression/S. -nonaire/S. -non-alignée/F.() -non-alignement/S. -non-animé/S. -nonantaine/S. -nonante -nonante-cinq -nonante-deux -nonante-et-un -nonante-huit -nonante-neuf -nonante-quatre -nonante-sept -nonante-six -nonante-trois -nonantième/S. -non-appartenance/S. -non-assistance/S. -non-belligérance/S. -non-belligérante/F.() -nonce/S. -noncer/a0() -nonchalamment -nonchalance/S. -nonchalante/F.() -nonchaloir/S. -nonciature/S. -non-combattante/F.() -non-comparante/F.() -non-comparution/S. -non-comptable/S. -non-conciliation/S. -non-concurrence -non-conformisme/S. -non-conformiste/S. -non-conformité/S. -non-contradiction/S. -non-croyante/F.() -non-cumul/S. -non-directive/F.() -non-directivité/S. -non-discrimination/S. -non-dit/S. -non-droit/S. -none/S. -non-engagée/F.() -non-engagement/S. -non-être -non-euclidienne/F.() -non-événement/S. -non-exécution/S. -non-existence/S. -non-figuration/S. -non-figurative/F.() -non-fumeuse/F.() -non-gage/S. -nonidi/S. -nonillion/S. -non-ingérence/S. -non-initiée/F.() -non-inscrite/F.() -non-intervention/S. -non-interventionniste/S. -non-jouissance/S. -non-lieu/X. -non-linéaire/S. -non-métal/X. -non-moi -nonne/S. -nonnette/S. -nono -nonobstant -non-paiement/S. -nonpareille/F.() -non-participation/S. -non-prolifération/S. -non-rapatriement/S. -non-recevoir -non-remboursement/S. -non-réponse/S. -non-résidente/F.() -non-respect/S. -non-responsabilité/S. -non-retour -non-rétroactivité/S. -non-satisfaction/S. -non-sens -non-spécialiste/S. -non-stop -non-tissé/S. -non-usage/S. -non-valeur/S. -non-viable/S. -non-violence/S. -non-violente/F.() -non-voyante/F.() -noologique/S. -noosphère/S. -noosphérique/S. -nopal/S. -nope/S. -noper/a0a+() -noradrénaline/S. -nord -nord-africaine/F.() -nord-américaine/F.() -nord-coréenne/F.() -nord-est -nordique/S. -nordir/f0() -nordiste/S. -nord-ouest -nord-vietnamienne/F.() -noria/S. -normale/W.() -normalement -normalienne/F.() -normalisable/S. -normalisation/S. -normalisatrice/F.() -normalisée/F.() -normaliser/a0a+() -normalité/S. -normande/F.() -normative/F.() -normativité/S. -norme/S. -normée/F.() -normographe/S. -norois -noroît/S. -norroise/F.() -norvégienne/F.() -nos -nosocomiale/W.() -nosographie/S. -nosologie/S. -nosophobie/S. -nostalgie/S. -nostalgique/S. -nostalgiquement -nostoc/S. -notabilité/S. -notable/S. -notablement -notaire/S. -notairesse/S. -notamment -notariale/W.() -notariat/S. -notariée/F.() -notation/S. -notatrice/F.() -note/S. -notée/F.() -noter/a0a+() -notice/S. -notification/S. -notifiée/F.() -notifier/a0a+() -notion/S. -notionnelle/F.() -notoire/S. -notoirement -notonecte/S. -notoriété/S. -notre -nôtre/S. -notule/S. -nouage/S. -nouaison/S. -nouba/S. -noue/S. -nouée/F.() -nouer/a0a+() -noueuse/F.() -noueuse/W.() -nougat/S. -nougatine/S. -nouille/S. -noulet/S. -noumène/S. -nounou/S. -nounours -nourrain/S. -nourrice/S. -nourricerie/S. -nourricière/F.() -nourrie/F.() -nourrir/f0f+() -nourrissage/S. -nourrissante/F.() -nourrisseur/S. -nourrisson/S. -nourriture/S. -nous -nous-mêmes -nouure/S. -nouveau/X. -nouveau-née/F.() -nouveauté/S. -nouvel -nouvelle/S. -nouvellement -nouvelliste/S. -nov -nova -novæ -novation/S. -novatoire/S. -novatrice/F.() -novélisation/S. -novembre/S. -nover/a0a+() -novice/S. -noviciat/S. -novlangue/S. -novocaïne/S. -noyade/S. -noyau/X. -noyautage/S. -noyautée/F.() -noyauter/a0a+() -noyauteuse/F.() -noyée/F.() -noyer/S. -noyer/a0a+() -nu/S. -nuage/S. -nuageuse/W.() -nuance/S. -nuancée/F.() -nuancer/a0a+() -nubienne/F.() -nubile/S. -nubilité/S. -nucelle/S. -nucléaire/S. -nucléariser/a0a+() -nucléarité/S. -nucléée/F.() -nucléer/a0a+() -nucléide/S. -nucléine/S. -nucléique/S. -nucléoïde/S. -nucléole/S. -nucléolyse/S. -nucléon/S. -nucléonique/S. -nucléophile/S. -nucléoprotéine/S. -nucléoside/S. -nucléosynthèse/S. -nucléotide/S. -nucléotidique/S. -nucléus -nudisme/S. -nudiste/S. -nudité/S. -nue/F.() -nue/S. -nuée/F.() -nuée/S. -nue-propriétaire -nue-propriété -nuer/a0a+() -nues-propriétaires -nues-propriétés -nuire/yU() -nuisance/S. -nuisette/S. -nuisibilité/S. -nuisible/S. -nuisiblement -nuit/S. -nuitamment -nuitée/S. -nullarde/F.() -nulle/F.() -nullement -nullipare/S. -nullité/S. -nûment -numéraire/S. -numérale/W.() -numérateur/S. -numération/S. -numérique/S. -numériquement -numérisation/S. -numérisée/F.() -numériser/a0a+() -numériseur/S. -numéro/S. -numérologie/S. -numérotage/S. -numérotation/S. -numérotée/F.() -numéroter/a0a+() -numéroteur/S. -numerus -numide/S. -numismate/S. -numismatique/S. -nummulite/S. -nummulitique/S. -nunatak/S. -nunchaku/S. -nuncupation/S. -nu-pieds -n-uple/S. -n-uplet/S. -nu-propriétaire -nuptiale/W.() -nuptialité/S. -nuque/S. -nuraghe/S. -nurse/S. -nursery/S. -nus-propriétaires -nutation/S. -nutriment/S. -nutrition/S. -nutritionnelle/F.() -nutritionniste/S. -nutritive/F.() -nyctalope/S. -nyctalopie/S. -nycthémérale/W.() -nycthémère/S. -nycturie/S. -nylon/S. -nymphale/W.() -nymphalidé/S. -nymphe/S. -nymphéa/S. -nymphéacée/S. -nymphée/S. -nymphette/S. -nymphomane/S. -nymphomanie/S. -nymphose/S. -nystagmus -ô -o/L' -o/||-- -oaristys/L'D'Q' -oasienne/F*() -oasis/L'D'Q' -obédience/S*() -obédiencier/S*() -obédientielle/F*() -obéie/F*() -obéir/f5f+() -obéissance/S*() -obéissante/F*() -obel/S*() -obèle/S*() -obélisque/S*() -obérée/F*() -obérer/c4a+() -obèse/S*() -obésité/S*() -obi/S*() -obier/S*() -obit/S*() -obituaire/S*() -objectale/W*() -objectée/F*() -objecter/a2a+() -objecteur/S*() -objectif/S*() -objection/S*() -objectivation/S*() -objective/F*() -objectivée/F*() -objectivement/D'Q' -objectiver/a4a+() -objectivisme/S*() -objectiviste/S*() -objectivité/S*() -objet/S*() -objurgation/S*() -objurguer/a1() -oblate/F*() -oblation/S*() -oblative/F*() -oblicité/S*() -obligataire/S*() -obligation/S*() -obligatoire/S*() -obligatoirement/D'Q' -obligeamment/D'Q' -obligeance/S*() -obligeante/F*() -obligée/F*() -obliger/a4a+() -oblique/S*() -obliquement/D'Q' -obliquer/a1() -obliquité/S*() -oblitération/S*() -oblitératrice/F*() -oblitérée/F*() -oblitérer/c2a+() -oblongue/F*() -obnubilation/S*() -obnubilée/F*() -obnubiler/a2a+() -obole/S*() -obombrée/F*() -obombrer/a2a+() -obscène/S*() -obscènement/D'Q' -obscénité/S*() -obscurantisme/S*() -obscurantiste/S*() -obscurcie/F*() -obscurcir/f4f+() -obscurcissement/S*() -obscure/F*() -obscurément/D'Q' -obscurité/S*() -obsécration/S*() -obsédante/F*() -obsédée/F*() -obséder/c2a+() -obsèques/D'Q' -obséquieuse/W*() -obséquieusement/D'Q' -obséquiosité/S*() -observabilité/S*() -observable/S*() -observance/S*() -observante/F*() -observation/S*() -observationnelle/F*() -observatoire/S*() -observatrice/F*() -observée/F*() -observer/a4a+() -obsession/S*() -obsessionnelle/F*() -obsidienne/S*() -obsidionale/W*() -obsolescence/S*() -obsolescente/F*() -obsolète/S*() -obstacle/S*() -obstétricale/W*() -obstétricienne/F*() -obstétrique/S*() -obstination/S*() -obstinée/F*() -obstinément/D'Q' -obstiner/a3a+() -obstruction/S*() -obstructionnisme/S*() -obstructionniste/S*() -obstructive/F*() -obstruée/F*() -obstruer/a4a+() -obtempérer/c5() -obtenir/i1i+() -obtention/S*() -obtentrice/F*() -obtenue/F*() -obturation/S*() -obturatrice/F*() -obturée/F*() -obturer/a2a+() -obtusangle/S*() -obtuse/F*() -obus/L'D'Q' -obusier/S*() -obvenir/i0i+() -obvers/L'D'Q' -obvier/a5() -oc/D' -ocarina/S*() -occase/S*() -occasion/S*() -occasionnalisme/S*() -occasionnaliste/S*() -occasionnée/F*() -occasionnelle/F*() -occasionnellement/D'Q' -occasionner/a2a+() -occident/S*() -occidentale/W*() -occidentalisation/S*() -occidentalisée/F*() -occidentaliser/a4a+() -occipitale/W*() -occiput/S*() -occire/yY() -occise/F*() -occision/S*() -occitane/F*() -occitanienne/F*() -occitanisme/S*() -occitaniste/S*() -occlure/xK() -occluse/F*() -occlusion/S*() -occlusive/F*() -occultation/S*() -occulte/S*() -occultée/F*() -occulter/a2a+() -occultisme/S*() -occultiste/S*() -occupante/F*() -occupation/S*() -occupée/F*() -occuper/a4a+() -occurrence/S*() -occurrente/F*() -océan/S*() -océanaute/S*() -océane/S*() -océanide/S*() -océanienne/F*() -océanique/S*() -océaniste/S*() -océanographe/S*() -océanographie/S*() -océanographique/S*() -océanologie/S*() -océanologique/S*() -océanologue/S*() -ocelle/S*() -ocellée/F*() -ocelot/S*() -ocre/S*() -ocrée/F*() -ocrer/a2a+() -ocreuse/W*() -oct -octa/S*() -octaèdre/S*() -octaédrique/S*() -octale/W*() -octalogie/S*() -octane/S*() -octant/S*() -octante/L'D'Q' -octante-cinq/L'D'Q' -octante-deux/L'D'Q' -octante-et-un/L'D'Q' -octante-huit/L'D'Q' -octante-neuf/L'D'Q' -octante-quatre/L'D'Q' -octante-sept/L'D'Q' -octante-six/L'D'Q' -octante-trois/L'D'Q' -octantième/S*() -octave/S*() -octaviée/F*() -octavier/a2a+() -octavin/S*() -octavo/D'Q' -octet/S*() -octidi/S*() -octillion/S*() -octobre/S*() -octocoralliaire/S*() -octogénaire/S*() -octogonale/W*() -octogone/S*() -octonion/S*() -octopode/S*() -octostyle/S*() -octosyllabe/S*() -octosyllabique/S*() -octroi/S*() -octroyée/F*() -octroyer/a4a+() -octuor/S*() -octuple/S*() -octuplée/F*() -octupler/a2a+() -oculaire/S*() -oculariste/S*() -oculiste/S*() -oculométrie/S*() -oculus/L'D'Q' -ocytocine/S*() -odalisque/S*() -ode/S*() -odelette/S*() -odéon/S*() -odeur/S*() -odieuse/W*() -odieusement/D'Q' -odomètre/S*() -odontalgie/S*() -odontoïde/S*() -odontologie/S*() -odontologiste/S*() -odontologue/S*() -odontostomatologie/S*() -odorante/F*() -odorat/S*() -odoriférante/F*() -odyssée/S*() -œcuménicité/S*() -œcuménique/S*() -œcuménisme/S*() -œdémateuse/W*() -œdème/S*() -œdicnème/S*() -œdipe/S*() -œdipienne/F*() -œil/S*() -œil-de-bœuf/L'D'Q' -œil-de-chat/L'D'Q' -œil-de-perdrix/L'D'Q' -œil-de-pie/L'D'Q' -œillade/S*() -œillard/S*() -œiller/a2a+() -œillère/S*() -œillet/S*() -œilleton/S*() -œilletonnage/S*() -œilletonnée/F*() -œilletonner/a2a+() -œillette/S*() -œils-de-bœuf/D'Q' -œils-de-chat/D'Q' -œils-de-perdrix/D'Q' -œils-de-pie/D'Q' -œnanthe/S*() -œnanthique/S*() -œnilisme/S*() -œnolique/S*() -œnolisme/S*() -œnologie/S*() -œnologique/S*() -œnologue/S*() -œnomètre/S*() -œnométrie/S*() -œnométrique/S*() -œnotechnie/S*() -œnotechnique/S*() -œnothèque/S*() -œnothera/S*() -œnothéracée/S*() -œnothère/S*() -œrsted/S*() -œrstite/S*() -œsophage/S*() -œsophagectomie/S*() -œsophagienne/F*() -œsophagique/S*() -œsophagisme/S*() -œsophagite/S*() -œsophagomalacie/S*() -œsophagoplastie/S*() -œsophagoscope/S*() -œsophagoscopie/S*() -œsophagostomie/S*() -œsophagotomie/S*() -œstrale/W*() -œstre/S*() -œstromane/S*() -œstromanie/S*() -œstrus/L'D'Q' -œuf/S*() -œufrier/S*() -œuvée/F*() -œuvre/S*() -œuvrer/a1() -œuvrette/S*() -off/L'D'Q' -offensante/F*() -offense/S*() -offensée/F*() -offenser/a4a+() -offenseur/S*() -offensive/F*() -offensivement/D'Q' -offerte/F*() -offerte/S*() -offertoire/S*() -office/S*() -official/X*() -officialisation/S*() -officialisée/F*() -officialiser/a2a+() -officialité/S*() -officiante/F*() -officielle/F*() -officiellement/D'Q' -officier/a1() -officière/F*() -officieuse/W*() -officieusement/D'Q' -officinale/W*() -officine/S*() -offrande/S*() -offrante/F*() -offre/S*() -offreuse/F*() -offrir/iC() -offset/L'D'Q' -offsettiste/S*() -offshore/L'D'Q' -offshore/S*() -offuscation/S*() -offusquée/F*() -offusquer/a4a+() -oflag/S*() -ogham/S*() -oghamique/S*() -ogivale/W*() -ogive/S*() -ogonek/S*() -ogresse/F*() -oh -ohé -ohm/Um() -ohmique/S*() -ohmmètre/S*() -ohnisme/S*() -oïdium/S*() -oie/S*() -oignon/S*() -oignonade/S*() -oignonière/S*() -oïl/D' -oille/S*() -oindre/wB() -oing/S*() -ointe/F*() -oiseau/X*() -oiseau-lyre/L'D'Q' -oiseau-mouche/L'D'Q' -oiseaux-lyres/D'Q' -oiseaux-mouches/D'Q' -oiselée/F*() -oiseler/d2a+() -oiselet/S*() -oiseleuse/F*() -oiselière/F*() -oisellerie/S*() -oiseuse/W*() -oisillon/S*() -oisive/F*() -oisivement/D'Q' -oisiveté/S*() -oison/S*() -okapi/S*() -okoumé/S*() -olé -oléacée/S*() -oléagineuse/W*() -oléate/S*() -oléfiante/F*() -oléfine/S*() -oléicole/S*() -oléicultrice/F*() -oléiculture/S*() -oléifère/S*() -oléiforme/S*() -oléine/S*() -oléique/S*() -oléoduc/S*() -oléolat/S*() -oléomètre/S*() -oléoprotéagineuse/W*() -oléoprotéagineux/L'D'Q' -oléum/S*() -olfaction/S*() -olfactive/F*() -olibrius/L'D'Q' -olifant/S*() -oligarchie/S*() -oligarchique/S*() -oligarque/S*() -oligiste/S*() -oligocène/S*() -oligodendrocyte/S*() -oligoélément/S*() -oligomère/S*() -oligophrénie/S*() -oligopole/S*() -oligopolistique/S*() -oligosaccharide/S*() -oligurie/S*() -olim/L'D'Q' -olivaie/S*() -olivaison/S*() -olivâtre/S*() -olive/S*() -oliveraie/S*() -olivétain/S*() -olivette/S*() -olivier/S*() -olivine/S*() -ollaire/S*() -olmèque/S*() -olographe/S*() -olympe/S*() -olympiade/S*() -olympienne/F*() -olympique/S*() -olympisme/S*() -omanaise/F*() -ombelle/S*() -ombellée/F*() -ombellifère/S*() -ombelliforme/S*() -ombellule/S*() -ombilic/S*() -ombilicale/W*() -ombiliquée/F*() -omble/S*() -ombrage/S*() -ombragée/F*() -ombrager/a2a+() -ombrageuse/W*() -ombrageusement/D'Q' -ombre/S*() -ombrée/F*() -ombrelle/S*() -ombrer/a2a+() -ombrette/S*() -ombreuse/W*() -ombrienne/F*() -ombrine/S*() -ombudsman/S*() -oméga/L'D'Q' -omelette/S*() -omerta/S*() -omettre/vA() -omicron/L'D'Q' -omise/F*() -omission/S*() -omnibus/L'D'Q' -omnicolore/S*() -omnidirectionnalité/S*() -omnidirectionnelle/F*() -omnipotence/S*() -omnipotente/F*() -omnipraticienne/F*() -omniprésence/S*() -omniprésente/F*() -omniscience/S*() -omnisciente/F*() -omnisports/D' -omnium/S*() -omnivore/S*() -omoplate/S*() -omphalos/L'D'Q' -on/L'D'Q' -onagracée/S*() -onagrariée/S*() -onagre/S*() -onanisme/S*() -once/S*() -onciale/W*() -oncle/S*() -oncogène/S*() -oncologie/S*() -oncologiste/S*() -oncologue/S*() -oncotique/S*() -oncques -onction/S*() -onctueuse/W*() -onctueusement/D'Q' -onctuosité/S*() -ondatra/S*() -onde/S*() -ondée/F*() -ondelette/S*() -ondemètre/S*() -ondine/F*() -on-dit -ondoiement/S*() -ondoyante/F*() -ondoyée/F*() -ondoyer/a2a+() -ondulante/F*() -ondulation/S*() -ondulatoire/S*() -ondulée/F*() -onduler/a2a+() -onduleur/S*() -onduleuse/W*() -one-man-show -onéreuse/W*() -onéreusement/D'Q' -one-step/S. -one-woman-show -ongle/S*() -onglée/F*() -onglet/S*() -onglette/S*() -onglier/S*() -onglon/S*() -onguent/S*() -onguiculée/F*() -onguiforme/S*() -ongulé/S*() -ongulée/F*() -onguligrade/S*() -onirique/S*() -onirisme/S*() -onirologie/S*() -onirologue/S*() -oniromancie/S*() -oniromancienne/F*() -onkotique/S*() -onomasiologie/S*() -onomastique/S*() -onomatopée/S*() -onomatopéique/S*() -onques -ont/zC() -ontogenèse/S*() -ontogénie/S*() -ontogénique/S*() -ontologie/S*() -ontologique/S*() -ontologiquement/D'Q' -ontologisme/S*() -onusienne/F*() -onychophagie/S*() -onyx/L'D'Q' -onyxis/L'D'Q' -onzain/S*() -onze/L'D'Q' -onzième/S*() -onzièmement/D'Q' -oocyte/S*() -oogone/S*() -oolite/S*() -oolithe/S*() -oolithique/S*() -oolitique/S*() -oosphère/S*() -oospore/S*() -oothèque/S*() -op -opacification/S*() -opacifiée/F*() -opacifier/a4a+() -opacimétrie/S*() -opacité/S*() -opale/S*() -opalescence/S*() -opalescente/F*() -opaline/F*() -opalisée/F*() -opaliser/a2a+() -opaque/S*() -ope/S*() -open/L'D'Q' -open/S*() -opéra/S*() -opérabilité/S*() -opérable/S*() -opéra-bouffe/L'D'Q' -opéra-comique/L'D'Q' -opérande/S*() -opérante/F*() -opéras-bouffes/D'Q' -opéras-comiques/D'Q' -opération/S*() -opérationnelle/F*() -opérationnellement/D'Q' -opérative/F*() -opératoire/S*() -opératrice/F*() -operculaire/S*() -opercule/S*() -operculée/F*() -opérée/F*() -opérer/c4a+() -opérette/S*() -ophicléide/S*() -ophidien/S*() -ophidienne/F*() -ophioglosse/S*() -ophiographie/S*() -ophiolâtrie/S*() -ophiologie/S*() -ophite/S*() -ophiure/S*() -ophrys/L'D'Q' -ophtalmie/S*() -ophtalmique/S*() -ophtalmologie/S*() -ophtalmologique/S*() -ophtalmologiste/S*() -ophtalmologue/S*() -ophtalmomètre/S*() -ophtalmométrie/S*() -ophtalmoscope/S*() -ophtalmoscopie/S*() -opiacée/F*() -opiacer/a2a+() -opiat/S*() -opime/S*() -opiner/a1() -opiniâtre/S*() -opiniâtrement/D'Q' -opiniâtrer/a3a+() -opiniâtreté/S*() -opinion/S*() -opioïde/S*() -opiomane/S*() -opiomanie/S*() -opisthobranche/S*() -opisthodome/S*() -opisthographe/S*() -opium/S*() -opopanax/L'D'Q' -opoponax/L'D'Q' -opossum/S*() -opothérapie/S*() -oppidum/S*() -opportune/F*() -opportunément/D'Q' -opportunisme/S*() -opportuniste/S*() -opportunité/S*() -opposabilité/S*() -opposable/S*() -opposante/F*() -opposée/F*() -opposer/a4a+() -opposite/S*() -opposition/S*() -oppositionnelle/F*() -oppressante/F*() -oppressée/F*() -oppresser/a2a+() -oppresseur/S*() -oppression/S*() -oppressive/F*() -opprimante/F*() -opprimée/F*() -opprimer/a2a+() -opprobre/S*() -optative/F*() -opter/a1() -opticienne/F*() -optimale/W*() -optimalisée/F*() -optimaliser/a2a+() -optimalité/S*() -optimisation/S*() -optimisée/F*() -optimiser/a2a+() -optimisme/S*() -optimiste/S*() -optimum/S*() -option/S*() -optionnelle/F*() -optionnellement/D'Q' -optique/S*() -optomètre/S*() -optométrie/S*() -optométriste/S*() -opulence/S*() -opulente/F*() -opuntia/S*() -opus/L'D'Q' -opuscule/S*() -or -or/S*() -oracle/S*() -oraculaire/S*() -orage/S*() -orageuse/W*() -orageusement/D'Q' -oraison/S*() -orale/W*() -oralement/D'Q' -oralisation/S*() -oraliser/a2a+() -oralité/S*() -orange/S*() -orangeade/S*() -orangée/F*() -oranger/S*() -oranger/a2a+() -orangeraie/S*() -orangerie/S*() -orangiste/S*() -orang-outan/L'D'Q' -orangs-outans/D'Q' -orante/F*() -oratoire/S*() -oratorien/S*() -oratorio/S*() -oratrice/F*() -orbe/S*() -orbicole/S*() -orbiculaire/S*() -orbitaire/S*() -orbitale/W*() -orbitalement/D'Q' -orbite/S*() -orbiter/a1() -orbiteur/S*() -orcanette/S*() -orchestie/S*() -orchestique/S*() -orchestrale/W*() -orchestration/S*() -orchestratrice/F*() -orchestre/S*() -orchestrée/F*() -orchestrer/a2a+() -orchidacée/S*() -orchidée/S*() -orchis/L'D'Q' -orchite/S*() -ordalie/S*() -ordalique/S*() -ordinaire/S*() -ordinairement/D'Q' -ordinale/W*() -ordinand/S*() -ordinant/S*() -ordinateur/S*() -ordination/S*() -ordinatrice/F*() -ordinogramme/S*() -ordiphone/S*() -ordo/L'D'Q' -ordonnable/S*() -ordonnance/S*() -ordonnancée/F*() -ordonnancement/S*() -ordonnancer/a2a+() -ordonnanceur/S*() -ordonnancière/F*() -ordonnatrice/F*() -ordonnée/F*() -ordonnée/S*() -ordonner/a4a+() -ordre/S*() -ordure/S*() -ordurière/F*() -oréade/S*() -orée/S*() -oreillarde/F*() -oreille/S*() -oreiller/S*() -oreillette/S*() -oreillon/S*() -orémus/L'D'Q' -ores/D' -orfèvre/S*() -orfèvrerie/S*() -orfraie/S*() -orfroi/S*() -organdi/S*() -organe/S*() -organeau/X*() -organicisme/S*() -organigramme/S*() -organique/S*() -organiquement/D'Q' -organisable/S*() -organisation/S*() -organisationnelle/F*() -organisatrice/F*() -organisée/F*() -organiser/a4a+() -organisme/S*() -organiste/S*() -organite/S*() -organoleptique/S*() -organologie/S*() -organothérapie/S*() -organsin/S*() -organsinée/F*() -organsiner/a2a+() -orgasme/S*() -orgasmique/S*() -orgastique/S*() -orge/S*() -orgeat/S*() -orgelet/S*() -orgiaque/S*() -orgie/S*() -orgue/S*() -orgueil/S*() -orgueilleuse/W*() -orgueilleusement/D'Q' -oribus/L'D'Q' -orichalque/S*() -oriel/S*() -orient/S*() -orientable/S*() -orientale/W*() -orientalisée/F*() -orientaliser/a4a+() -orientalisme/S*() -orientaliste/S*() -orientation/S*() -orientatrice/F*() -orientée/F*() -orientement/S*() -orienter/a4a+() -orienteuse/F*() -orifice/S*() -oriflamme/S*() -origami/S*() -origan/S*() -originaire/S*() -originairement/D'Q' -originale/W*() -originalement/D'Q' -originalité/S*() -origine/S*() -originelle/F*() -originellement/D'Q' -orignal/X*() -orillon/S*() -orin/S*() -oringuer/a2a+() -oripeau/X*() -orle/S*() -orléaniste/S*() -ormaie/S*() -orme/S*() -ormeau/X*() -ormille/S*() -ormoie/S*() -ornée/F*() -ornemaniste/S*() -ornement/S*() -ornementale/W*() -ornementation/S*() -ornementée/F*() -ornementer/a2a+() -orner/a4a+() -ornière/S*() -ornithogale/S*() -ornithologie/S*() -ornithologique/S*() -ornithologiste/S*() -ornithologue/S*() -ornithomancie/S*() -ornithorynque/S*() -orobanche/S*() -orobe/S*() -orogène/S*() -orogenèse/S*() -orogénie/S*() -orogénique/S*() -orographie/S*() -orographique/S*() -oronge/S*() -oronymie/S*() -oropharynx/L'D'Q' -orpaillage/S*() -orpailleuse/F*() -orphelinat/S*() -orpheline/F*() -orphéon/S*() -orphéoniste/S*() -orphie/S*() -orphique/S*() -orphisme/S*() -orpiment/S*() -orpin/S*() -orque/S*() -orseille/S*() -orteil/S*() -orthèse/S*() -orthésiste/S*() -orthocentre/S*() -orthochromatique/S*() -orthodontie/S*() -orthodontiste/S*() -orthodoxe/S*() -orthodoxie/S*() -orthodromie/S*() -orthodromique/S*() -orthogenèse/S*() -orthogénie/S*() -orthogonale/W*() -orthogonalement/D'Q' -orthogonalisation/S*() -orthogonalité/S*() -orthographe/S*() -orthographiée/F*() -orthographier/a4a+() -orthographique/S*() -orthographiquement/D'Q' -orthonormale/W*() -orthonormalisation/S*() -orthonormée/F*() -orthopédie/S*() -orthopédique/S*() -orthopédiste/S*() -orthophonie/S*() -orthophoniste/S*() -orthophosphate/S*() -orthophosphorique/S*() -orthopnée/S*() -orthoprothésiste/S*() -orthoptère/S*() -orthoptiste/S*() -orthorhombique/S*() -orthoscopique/S*() -orthose/S*() -orthostatique/S*() -orthostatisme/S*() -orthosympathique/S*() -orthotypographie/S*() -ortie/S*() -ortolan/S*() -orvale/S*() -orvet/S*() -orviétan/S*() -orwellienne/F*() -oryctérope/S*() -os/L'D'Q' -oscabrion/S*() -oscar/S*() -oscillante/F*() -oscillation/S*() -oscillatoire/S*() -oscillatrice/F*() -osciller/a1() -oscillogramme/S*() -oscillographe/S*() -oscillomètre/S*() -oscilloscope/S*() -osculateur/S*() -osculation/S*() -osculatrice/F*() -oscule/S*() -osée/F*() -oseille/S*() -oser/a2a+() -oseraie/S*() -oside/S*() -osier/S*() -osiériculture/S*() -osmique/S*() -osmium/S*() -osmomètre/S*() -osmonde/S*() -osmose/S*() -osmotique/S*() -osque/S*() -ossature/S*() -osséine/S*() -osselet/S*() -ossement/S*() -ossète/S*() -osseuse/W*() -ossianique/S*() -ossification/S*() -ossifiée/F*() -ossifier/a4a+() -osso-buco/L'D'Q' -ossuaire/S*() -ossue/F*() -ost/S*() -ostéalgie/S*() -ostéichtyen/S*() -ostéite/S*() -ostensible/S*() -ostensiblement/D'Q' -ostension/S*() -ostensoir/S*() -ostentation/S*() -ostentatoire/S*() -ostéoblaste/S*() -ostéoblastome/S*() -ostéoclasie/S*() -ostéoclaste/S*() -ostéocyte/S*() -ostéogenèse/S*() -ostéogénie/S*() -ostéologie/S*() -ostéomalacie/S*() -ostéomyélite/S*() -ostéopathe/S*() -ostéopathie/S*() -ostéophyte/S*() -ostéoplastie/S*() -ostéoporose/S*() -ostéosarcome/S*() -ostéosynthèse/S*() -ostéotomie/S*() -ostiak/S*() -ostiole/S*() -ostracisée/F*() -ostraciser/a2a+() -ostracisme/S*() -ostréicole/S*() -ostréicultrice/F*() -ostréiculture/S*() -ostrogothe/F*() -ostrogothique/S*() -otage/S*() -otalgie/S*() -otarie/S*() -ôtée/F*() -ôter/a4a+() -otique/S*() -otite/S*() -otocyon/S*() -otocyste/S*() -otolithe/S*() -otolithique/S*() -otologie/S*() -oto-rhino/S*() -oto-rhino-laryngologie/S*() -oto-rhino-laryngologiste/S*() -otorragie/S*() -otorrhée/S*() -otoscope/S*() -otoscopie/S*() -ottomane/F*() -ottonienne/F*() -ou -où/D'Qj -ouabaïne/S*() -ouaille/S*() -ouais -ouananiche/S*() -ouaouaron/S*() -ouate/S*() -ouatée/F*() -ouater/a2a+() -ouatinée/F*() -ouatiner/a2a+() -oubli/S*() -oubliable/S*() -oubliée/F*() -oublier/a4a+() -oubliette/S*() -oublieuse/W*() -ouche/S*() -oued/S*() -ouest/L'D'Q' -ouest-allemande/F*() -ouf -ougandaise/F*() -ougrienne/F*() -oui -oui -ouï-dire/D' -ouïe/F*() -ouïe/S*() -ouïgour/S*() -ouillée/F*() -ouiller/a2a+() -ouillère/S*() -ouïr/iW() -ouistiti/S. -oukase/S*() -ouléma/S*() -oulipienne/F*() -oumma/S*() -ouragan/S*() -ouralienne/F*() -ouralo-altaïque/S*() -ourder -ourdie/F*() -ourdir/f4f+() -ourdissage/S*() -ourdisserie/S*() -ourdisseuse/F*() -ourdissoir/S*() -ourdou/L'D' -ourlée/F*() -ourler/a2a+() -ourlet/S*() -ourleuse/F*() -ourlienne/F*() -ourse/F*() -oursin/S*() -oursonne/F*() -oust -ouste -out/D'Q' -out/L'D'Q' -outarde/S*() -outardeau/X*() -outil/S*() -outillage/S*() -outillée/F*() -outiller/a4a+() -outilleuse/F*() -outlaw/S*() -output/S*() -outrage/S*() -outrageante/F*() -outragée/F*() -outrager/a2a+() -outrageuse/W*() -outrageusement/D'Q' -outrance/S*() -outrancière/F*() -outrancièrement/D'Q' -outre -outre/S*() -outrecuidance/S*() -outrecuidante/F*() -outrée/F*() -outre-mer -outremer/S*() -outrepassée/F*() -outrepasser/a2a+() -outrer/a2a+() -outre-tombe/L'D'Q' -outsider/S*() -ouverte/F*() -ouvertement/D'Q' -ouverture/S*() -ouvrable/S*() -ouvrage/S*() -ouvragée/F*() -ouvrager/a2a+() -ouvraison/S*() -ouvrante/F*() -ouvreau/X*() -ouvre-boîte/S*() -ouvre-bouteille/S*() -ouvrée/F*() -ouvre-gant/S*() -ouvre-huître/S*() -ouvrer/a2a+() -ouvreuse/F*() -ouvrière/F*() -ouvriérisme/S*() -ouvriériste/S*() -ouvrir/iC() -ouvroir/S*() -ouzbèke/F*() -ovaire/S*() -ovalbumine/S*() -ovale/S*() -ovalisation/S*() -ovalisée/F*() -ovaliser/a2a+() -ovariectomie/S*() -ovarienne/F*() -ovarite/S*() -ovate/S*() -ovation/S*() -ovationnée/F*() -ovationner/a2a+() -ove/S*() -overdose/S*() -ovibos/L'D'Q' -ovidé/S*() -oviducte/S*() -ovin/S*() -ovine/F*() -oviné/S*() -ovipare/S*() -oviparité/S*() -ovipositeur/S*() -oviscapte/S*() -ovni/S*() -ovo -ovocyte/S*() -ovogenèse/S*() -ovoïdale/W*() -ovoïde/S*() -ovovivipare/S*() -ovoviviparité/S*() -ovulaire/S*() -ovulation/S*() -ovulatoire/S*() -ovule/S*() -ovulée/F*() -ovuler/a1() -oxacide/S*() -oxalate/S*() -oxalidacée/S*() -oxalique/S*() -oxford/S*() -oxhydrique/S*() -oxyacétylénique/S*() -oxycarbonée/F*() -oxychlorure/S*() -oxycoupage/S*() -oxycoupeuse/F*() -oxydable/S*() -oxydante/F*() -oxydase/S*() -oxydation/S*() -oxyde/S*() -oxydée/F*() -oxyder/a4a+() -oxydoréduction/S*() -oxygénase/S*() -oxygénation/S*() -oxygène/S*() -oxygénée/F*() -oxygéner/c4a+() -oxygénothérapie/S*() -oxyhémoglobine/S*() -oxylithe/S*() -oxymel/S*() -oxymore/S*() -oxymoron/S*() -oxysulfure/S*() -oxyton/S*() -oxyure/S*() -oxyurose/S*() -oyat/S*() -oz/||-- -ozène/S*() -ozocérite/S*() -ozokérite/S*() -ozone/S*() -ozonée/F*() -ozonisateur/S*() -ozonisation/S*() -ozonisée/F*() -ozoniser/a2a+() -ozoniseur/S*() -p -pH/|| -pH-mètre/S.|| -paca/S. -pacage/S. -pacager/a0a+() -pacemaker/S. -pacfung/S. -pacha/S. -pachalik/S. -pachto -pachyderme/S. -pachydermie/S. -pacification/S. -pacificatrice/F.() -pacifiée/F.() -pacifier/a0a+() -pacifique/S. -pacifiquement -pacifisme/S. -pacifiste/S. -pack/S. -packfung/S. -pacotille/S. -pacquage/S. -pacquer/a0a+() -pacs -pacsée/F.() -pacson/S. -pacte/S. -pactiser/a0() -pactole/S. -paddock/S. -paddocker/a0a+() -paddy/S. -padichah/S. -padou/S. -padoue/S. -paella/S. -paf -pagaille/S. -paganiser/a0a+() -paganisme/S. -pagayer/a0() -pagayeuse/F.() -page/S. -pagel/S. -pageot/S. -pageoter -pager/a0a+() -pagination/S. -paginer/a0a+() -pagne/S. -pagnote/S. -pagnoter/a0a+() -pagode/S. -pagodon/S. -pagre/S. -pagure/S. -pagus -paidologie/S. -paiement/S. -païenne/F.() -paierie/S. -paillage/S. -paillarde/F.() -paillarder/a0a+() -paillardise/S. -paillasson/S. -paillassonnage/S. -paillassonner/a0a+() -paille/S. -paillée/F.() -pailler/a0a+() -paillet/S. -pailletage/S. -pailletée/F.() -pailleter/d0a+() -pailleteur/S. -pailleuse/W.() -paillis -paillon/S. -paillonner/a0a+() -paillot/S. -paillote/S. -pain/S. -paintball/S. -pair-à-pair -paire/F.() -pairesse/S. -pairie/S. -pairle/S. -paisible/S. -paisiblement -paissance/S. -paisseau/X. -paisseler/d0a+() -paître/wS() -paix -pajoter -pakistanaise/F.() -pal/S. -pala/S. -palabre/S. -palabrer/a0() -palace/S. -paladin/S. -palais -palan/S. -palanche/S. -palancrer/a0a+() -palangre/S. -palangrer/a0a+() -palanguer/a0a+() -palanque/S. -palanquée/S. -palanquer/a0a+() -palanquin/S. -palastre/S. -palatale/W.() -palatalisation/S. -palatalisée/F.() -palataliser/a0a+() -palatiale/W.() -palatinat/S. -palatine/F.() -pale/S. -pâle/S. -pale-ale/S. -palée/F.() -palée/S. -palefrenière/F.() -palefroi/S. -palémon/S. -paléoanthropologie/S. -paléoanthropologue/S. -paléobiogéographie/S. -paléobiogéographique/S. -paléobiologie/S. -paléobotanique/S. -paléocène/S. -paléochrétienne/F.() -paléoclimat/S. -paléoclimatologie/S. -paléoenvironnement/S. -paléoenvironnementale/W.() -paléogène/S. -paléogéographie/S. -paléographe/S. -paléographie/S. -paléographique/S. -paléohistologie/S. -paléolithique/S. -paléomagnétisme/S. -paléontologie/S. -paléontologique/S. -paléontologiste/S. -paléontologue/S. -paléo-océanographie/S. -paléorelief/S. -paléosol/S. -paléotempérature/S. -paléothérium/S. -paléozoïque/S. -paléozoologie/S. -paleron/S. -palestinienne/F.() -palestre/S. -palet/S. -paletot/S. -palette/S. -paletter/a0a+() -palettiser/a0a+() -palétuvier/S. -pâleur/S. -palicare/S. -pâlichonne/F.() -pâlie/F.() -palière/F.() -palikare/S. -palilalie/S. -palimpseste/S. -palindrome/S. -palingénésie/S. -palingénésique/S. -palinodie/S. -palinodique/S. -pâlir/f0f+() -palis -palissade/S. -palissader/a0a+() -palissage/S. -palissandre/S. -pâlissante/F.() -palissée/F.() -palisser/a0a+() -palissonner/a0a+() -palissonneur/S. -paliure/S. -palladium/S. -palléale/W.() -palliative/F.() -pallidectomie/S. -pallidum/S. -pallier/a0a+() -pallium/S. -palmacée/S. -palma-christi -palmaire/S. -palmarès -palmature/S. -palme/S. -palmée/F.() -palmer/a0a+() -palmeraie/S. -palmette/S. -palmier/S. -palmifide/S. -palmilobée/F.() -palmipartie/F.() -palmipartite/S. -palmipède/S. -palmiséquée/F.() -palmiste/S. -palmite/S. -palmitine/S. -palmitique/S. -palmure/S. -palombe/S. -palonnier/S. -palot/S. -paloter/a0a+() -pâlotte/F.() -palourde/S. -palpable/S. -palpation/S. -palpébrale/W.() -palpée/F.() -palper/a0a+() -palpeur/S. -palpitante/F.() -palpitation/S. -palpitement/S. -palpiter/a0() -palplanche/S. -palsambleu -paltoquet/S. -paluche/S. -palud/S. -palude/S. -paludéenne/F.() -paludière/F.() -paludine/S. -paludique/S. -paludisme/S. -paludologie/S. -palus -palustre/S. -palynologie/S. -palynologue/S. -pâmée/F.() -pâmer/a0a+() -pâmoison/S. -pampa/S. -pampéro/S. -pamphlet/S. -pamphlétaire/S. -pampille/S. -pamplemousse/S. -pamplemoussier/S. -pampre/S. -pan/S. -panacée/S. -panachage/S. -panache/S. -panachée/F.() -panacher/a0a+() -panachure/S. -panade/S. -panafricaine/F.() -panafricanisme/S. -panama/S. -panaméenne/F.() -panaméricaine/F.() -panaméricanisme/S. -panarabisme/S. -panarde/F.() -panaris -panatela/S. -panathénées -panax -panca/S. -pancalisme/S. -pancarte/S. -panchromatique/S. -panclastite/S. -pancosmisme/S. -pancrace/S. -pancréas -pancréatine/S. -pancréatique/S. -pancréatite/S. -panda/S. -pandanus -pandectes -pandèmes -pandémie/S. -pandémonium/S. -pandiculation/S. -pandit/S. -pandore/S. -panée/F.() -panégyrique/S. -panégyriste/S. -panel/S. -paner/a0a+() -panerée/S. -paneterie/S. -panetière/F.() -paneton/S. -panettone/S. -paneuropéenne/F.() -pangermanisme/S. -pangermaniste/S. -pangolin/S. -pangramme/S. -panhellénique/S. -panhellénisme/S. -panic/S. -panicaut/S. -paniculée/F.() -panière/F.() -panier-repas -paniers-repas -panifiable/S. -panification/S. -panifier/a0a+() -paniquante/F.() -paniquarde/F.() -panique/S. -paniquée/F.() -paniquer/a0a+() -panislamique/S. -panislamisme/S. -panka/S. -panlogisme/S. -panmixie/S. -panne/S. -panneau/X. -panneautage/S. -panneauter/a0a+() -pannée/F.() -panner/a0a+() -panneton/S. -pannicule/S. -panonceau/X. -panophtalmie/S. -panoplie/S. -panoptique/S. -panorama/S. -panoramique/S. -panoramiquer/a0() -panorpe/S. -panosse/S. -panoufle/S. -pansage/S. -panse/S. -pansement/S. -panser/a0a+() -panseuse/F.() -panslavisme/S. -panspermie/S. -pansue/F.() -pantagruélique/S. -pantalon/S. -pantalonnade/S. -pante/S. -pantelante/F.() -panteler/d0() -pantène/S. -pantenne/S. -panthéisme/S. -panthéiste/S. -panthéon/S. -panthère/S. -pantière/S. -pantin/S. -pantographe/S. -pantoire/S. -pantoise/F.() -pantomètre/S. -pantomime/S. -pantouflage/S. -pantouflarde/F.() -pantoufle/S. -pantoufler/a0() -pantouflière/F.() -pantoum/S. -panure/S. -panurgisme/S. -panzer/S. -paonne/F.() -papa/S. -papable/S. -papaïne/S. -papale/W.() -papauté/S. -papaver/S. -papavéracée/S. -papavérine/S. -papaye/S. -papayer/S. -papegai/S. -papelarde/F.() -papelardise/S. -paperasse/S. -paperasserie/S. -paperassière/F.() -papesse/F.() -papeterie/S. -papetière/F.() -papier/S. -papier-monnaie -papiers-monnaies -papilionacée/F.() -papillaire/S. -papille/S. -papilleuse/W.() -papillifère/S. -papillome/S. -papillon/S. -papillonnage/S. -papillonnante/F.() -papillonnement/S. -papillonner/a0() -papillonneuse/F.() -papillotage/S. -papillotante/F.() -papillote/S. -papillotement/S. -papilloter/a0a+() -papion/S. -papisme/S. -papiste/S. -papotage/S. -papoter/a0() -papouille/S. -papouiller/a0a+() -paprika/S. -papule/S. -papuleuse/W.() -papy/S. -papy-boom/S. -papyrologie/S. -papyrologique/S. -papyrologue/S. -papyrus -pâque/S. -paquebot/S. -pâquerette/S. -paquet/S. -paquetage/S. -paqueteuse/F.() -par -parabase/S. -parabellum/S. -parabiose/S. -parabole/S. -parabolique/S. -paraboliquement -paraboloïde/S. -paracentèse/S. -paracétamol -parachèvement/S. -parachever/b0a+() -parachronisme/S. -parachutage/S. -parachutale/W.() -parachute/S. -parachutée/F.() -parachuter/a0a+() -parachutisme/S. -parachutiste/S. -paraclet/S. -paracompacte/S. -parade/S. -parader/a0() -paradeur/S. -paradigmatique/S. -paradigme/S. -paradis -paradisiaque/S. -paradisier/S. -parados -paradoxale/W.() -paradoxalement -paradoxe/S. -paraffinage/S. -paraffine/S. -paraffinée/F.() -paraffiner/a0a+() -parafiscale/W.() -parafiscalité/S. -parafoudre/S. -parage/S. -paragoge/S. -paragogique/S. -paragraphe/S. -paragrêle/S. -paraguante/S. -paraguayenne/F.() -paraisonner/a0a+() -paraître/wQ() -parajudiciaire/S. -paralangage/S. -paralipomènes -paralittéraire/S. -paralittérature/S. -paraliturgie/S. -parallactique/S. -parallaxe/S. -parallèle/S. -parallèlement -parallélépipède/S. -parallélépipédique/S. -parallélisable/S. -parallélisation/S. -paralléliser/a0a+() -parallélisme/S. -parallélogramme/S. -paralogisme/S. -paralympique/S. -paralysante/F.() -paralysée/F.() -paralyser/a0a+() -paralysie/S. -paralytique/S. -paramagnétique/S. -paramagnétisme/S. -paramécie/S. -paramédic/S. -paramédicale/W.() -paramétrable/S. -paramétrage/S. -paramètre/S. -paramétrée/F.() -paramétrer/c0a+() -paramétrique/S. -paramétriquement -paramétrisation/S. -paramilitaire/S. -paramnésie/S. -parangon/S. -parangonnage/S. -parangonner/a0a+() -paranoïa/S. -paranoïaque/S. -paranoïde/S. -paranormale/W.() -paranymphe/S. -parapente/S. -parapentiste/S. -parapet/S. -parapharmacie/S. -paraphasie/S. -paraphe/S. -parapher/a0a+() -paraphernale/W.() -parapheur/S. -paraphilie/S. -paraphimosis -paraphlébite/S. -paraphrase/S. -paraphrasée/F.() -paraphraser/a0a+() -paraphraseuse/F.() -paraphrastique/S. -paraphrénie/S. -paraphyse/S. -paraplégie/S. -paraplégique/S. -parapluie/S. -parapsychique/S. -parapsychologie/S. -parapsychologique/S. -parapublique/F.() -parasange/S. -parascève/S. -parascolaire/S. -parasélène/S. -parasexualité/S. -parasismique/S. -parasitage/S. -parasitaire/S. -parasite/S. -parasitée/F.() -parasiter/a0a+() -parasitisme/S. -parasitologie/S. -parasitologiste/S. -parasitologue/S. -parasitose/S. -parasol/S. -parastatale/W.() -parasurtenseur/S. -parasympathique/S. -parasynthétique/S. -parataxe/S. -parathormone/S. -parathymie/S. -parathyroïde/S. -paratonnerre/S. -parâtre/S. -paratyphique/S. -paratyphoïde/S. -paravalanche/S. -paravent/S. -paraxiale/W.() -parbleu -parc/S. -parcage/S. -parce -parcellaire/S. -parcellarisation/S. -parcellariser/a0a+() -parcelle/S. -parceller/a0a+() -parcellisation/S. -parcelliser/a0a+() -parchemin/S. -parcheminée/F.() -parcheminer/a0a+() -parcheminerie/S. -parcheminière/F.() -par-ci -parcimonie/S. -parcimonieuse/W.() -parcimonieusement -parcmètre/S. -parcomètre/S. -parcourir/iE() -parcours -parcourue/F.() -par-delà -par-derrière -par-dessous -par-dessus -pardessus -par-devant -par-devers -pardi -pardieu -pardon -pardon/S. -pardonnable/S. -pardonnée/F.() -pardonner/a0a+() -paréage/S. -pare-balles -pare-battage -pare-boue -pare-brise -pare-cendres -pare-chocs -pare-clous -parèdre/S. -parée/F.() -pare-éclats -pare-étincelles -pare-étoupilles -pare-feu -pare-fumée -parégorique/S. -pareille/F.() -pareillement -parement/S. -parementer/a0a+() -parémiologie/S. -parenchymateuse/W.() -parenchyme/S. -pare-neige -parentale/W.() -parentalies -parentalité/S. -parente/F.() -parenté/S. -parentèle/S. -parentelle/S. -parentérale/W.() -parenthèse/S. -parenthésée/F.() -paréo/S. -parer/a0a+() -parère/S. -parésie/S. -pare-soleil -paresse/S. -paresser/a0() -paresseuse/W.() -paresseusement -paresthésie/S. -pareuse/F.() -pare-vent -parfaire/wD() -parfaite/F.() -parfaitement -parfilage/S. -parfiler/a0a+() -parfin -parfois -parfondre/tA() -parfum/S. -parfumée/F.() -parfumer/a0a+() -parfumerie/S. -parfumeuse/F.() -parhélie/S. -pari/S. -pariade/S. -pariage/S. -parian/S. -paridigitidée/F.() -parier/a0a+() -pariétaire/S. -pariétale/W.() -parieuse/F.() -parigote/F.() -paripennée/F.() -parisette/S. -parisianisme/S. -parisienne/F.() -parisis -parisyllabique/S. -paritaire/S. -paritairement -paritarisme/S. -parité/S. -parjure/S. -parjurer/a0a+() -parka/S. -parkérisation/S. -parkériser/a0a+() -parking/S. -parkinson/S. -parkinsonienne/F.() -par-là -parlante/F.() -parlée/F.() -parlement/S. -parlementaire/S. -parlementairement -parlementarisme/S. -parlementer/a0() -parler/S. -parler/a0a+() -parleuse/F.() -parloir/S. -parlote/S. -parloter/a0() -parlotte/S. -parme -parmélie/S. -parmenture/S. -parmesan/S. -parmi -parnasse/S. -parnassienne/F.() -parodie/S. -parodiée/F.() -parodier/a0a+() -parodique/S. -parodiste/S. -parodontale/W.() -parodonte/S. -parodontie/S. -parodontiste/S. -parodontite/S. -parodontopathie/S. -paroi/S. -paroisse/S. -paroissiale/W.() -paroissienne/F.() -parole/S. -paroli -parolière/F.() -paronomase/S. -paronyme/S. -paronymie/S. -paronymique/S. -paros -parotide/S. -parotidienne/F.() -parotidite/S. -parousie/S. -paroxysmale/W.() -paroxysme/S. -paroxysmique/S. -paroxystique/S. -paroxyton/S. -parpaillote/F.() -parpaing/S. -parquée/F.() -parquer/a0a+() -parquet/S. -parquetage/S. -parqueter/d0a+() -parqueterie/S. -parqueteuse/F.() -parquetière/F.() -parqueuse/F.() -parrain/S. -parrainage/S. -parrainée/F.() -parrainer/a0a+() -parraineuse/F.() -parricide/S. -parsec/S. -parsemée/F.() -parsemer/b0a+() -parsie/F.() -parsisme/S. -part/S. -partage/S. -partageable/S. -partagée/F.() -partager/a0a+() -partageuse/F.() -partageuse/W.() -partagiciel/S. -partance/S. -partante/F.() -partenaire/S. -partenariat/S. -parterre/S. -parthe/S. -parthénocarpie/S. -parthénogenèse/S. -parthénogénétique/S. -parti/S. -partiaire/S. -partiale/W.() -partialement -partialité/S. -participante/F.() -participation/S. -participative/F.() -participe/S. -participer/a0() -participiale/W.() -particularisation/S. -particulariser/a0a+() -particularisme/S. -particulariste/S. -particularité/S. -particule/S. -particulière/F.() -particulièrement -partie/F.() -partie/S. -partielle/F.() -partiellement -partir/i5i+() -partisane/F.() -partita/S. -partiteur/S. -partition/S. -partitionnement/S. -partitive/F.() -parton/S. -partouse/S. -partouser/a0() -partout -partouzarde/F.() -partouze/S. -partouzer/a0() -parturiente/S. -parturition/S. -parue/F.() -parulie/S. -parure/S. -parurerie/S. -parurière/F.() -parution/S. -parvenir/i0i+() -parvenue/F.() -parvis -pas -pas -pas/||-- -pas-à-pas -pascal/Um() -pascale/W.() -pascaline/S. -pas-d'âne -pas-de-géant -pas-de-porte -paseo/S. -pasionaria/S. -paso-doble -pasquin/S. -passable/S. -passablement -passacaille/S. -passade/S. -passage/S. -passagère/F.() -passagèrement -passante/F.() -passation/S. -passavant/S. -passe/S. -passe-bande -passe-boules -passe-coupe -passe-crassane -passe-droit/S. -passée/F.() -passéisme/S. -passéiste/S. -passe-lacet/S. -passe-lait -passement/S. -passementer/a0a+() -passementerie/S. -passementière/F.() -passe-montagne/S. -passe-partout -passe-passe -passe-pied/S. -passe-pierre/S. -passe-plat/S. -passepoil/S. -passepoile/S. -passepoiler/a0a+() -passeport/S. -passer/a0a+() -passerage/S. -passereau/X. -passerelle/S. -passerine/S. -passerinette/S. -passerose/S. -passe-temps -passe-thé -passeuse/F.() -passe-velours -passe-volant/S. -passible/S. -passif/S. -passiflore/S. -passim -passing-shot/S. -passion/S. -passionnante/F.() -passionnée/F.() -passionnelle/F.() -passionnément -passionner/a0a+() -passionnette/S. -passivation/S. -passive/F.() -passivement -passivité/S. -passoire/S. -pastel/S. -pasteller/a0a+() -pastelliste/S. -pastenague/S. -pastèque/S. -pasteur/S. -pasteurienne/F.() -pasteurisateur/S. -pasteurisation/S. -pasteurisatrice/F.() -pasteurisée/F.() -pasteuriser/a0a+() -pastiche/S. -pastichée/F.() -pasticher/a0a+() -pasticheuse/F.() -pastille/S. -pastiller/a0a+() -pastiquer/a0() -pastis -pastorale/W.() -pastoralisme/S. -pastoraliste/S. -pastoureau/X. -pastourelle/S. -pat -patache/S. -patachon/S. -patafioler/a0a+() -patagonne/F.() -pataphysique/S. -patapouf/S. -pataquès -patarasse/S. -patard/S. -patate/S. -patatoïde/S. -patatras -pataude/F.() -pataugeage/S. -pataugeoire/S. -patauger/a0() -pataugeuse/F.() -patch/S. -patchouli/S. -patchwork/S. -pâte/S. -pâté/S. -pâtée/S. -patelin/S. -patelinage/S. -pateline/F.() -pateliner/a0a+() -patelinerie/S. -patelle/S. -patène/S. -patenôtre/S. -patentable/S. -patentage/S. -patente/F.() -patentée/F.() -patenter/a0a+() -pater/S. -pâter/a0() -patère/S. -paterfamilias -paternalisme/S. -paternaliste/S. -paterne/S. -paternelle/F.() -paternellement -paternité/S. -pâteuse/W.() -pathétique/S. -pathétiquement -pathétisme/S. -pathogène/S. -pathogenèse/S. -pathogénie/S. -pathognomonique/S. -pathologie/S. -pathologique/S. -pathologiquement -pathologiste/S. -pathos -patibulaire/S. -patiemment -patience/S. -patiente/F.() -patienter/a0a+() -patin/S. -patinage/S. -patine/S. -patinée/F.() -patiner/a0a+() -patinette/S. -patineuse/F.() -patinoire/S. -patio/S. -pâtir/f0() -pâtisser/a0() -pâtisserie/S. -pâtissière/F.() -pâtisson/S. -patoche/S. -patois -patoisante/F.() -patoiser/a0() -pâton/S. -patouille/S. -patouiller/a0a+() -patraque/S. -pâtre/S. -patriarcale/W.() -patriarcalement -patriarcat/S. -patriarche/S. -patrice/S. -patriciat/S. -patricienne/F.() -patriclan/S. -patrie/S. -patrilinéaire/S. -patrilocale/W.() -patrimoine/S. -patrimoniale/W.() -patriotarde/F.() -patriote/S. -patriotique/S. -patriotiquement -patriotisme/S. -patristique/S. -patrologie/S. -patronage/S. -patronale/W.() -patronat/S. -patronne/F.() -patronner/a0a+() -patronnesse/S. -patronnière/F.() -patronyme/S. -patronymique/S. -patrouille/S. -patrouiller/a0() -patrouilleur/S. -patte/S. -patte-d'oie -pattée/F.() -pattemouille/S. -patter/a0a+() -pattern/S. -pattes-d'oie -pattier/S. -pattinsonage/S. -pattue/F.() -pâturage/S. -pâture/S. -pâturer/a0a+() -pâturin/S. -paturon/S. -pâturon/S. -pauchouse/S. -paulette/S. -paulienne/F.() -paulinienne/F.() -paulinisme/S. -pauliste/S. -paulownia/S. -paume/S. -paumée/F.() -paumelle/S. -paumer/a0a+() -paumier/S. -paumoyer/a0a+() -paumure/S. -paupérisation/S. -paupérisée/F.() -paupériser/a0a+() -paupérisme/S. -paupière/S. -paupiette/S. -pause/S. -pause-café -pauser/a0() -pauses-café -pauvre/S. -pauvrement -pauvresse/S. -pauvreté/S. -pauvrette/F.() -pavage/S. -pavane/S. -pavaner/a0a+() -pavé/S. -pavée/F.() -pavement/S. -paver/a0a+() -paveur/S. -pavie/S. -pavillon/S. -pavillonnaire/S. -pavillonnée/F.() -pavillonnerie/S. -pavimenteuse/W.() -pavois -pavoisement/S. -pavoiser/a0a+() -pavot/S. -payable/S. -payante/F.() -paye/S. -payement/S. -payer/a0a+() -payeuse/F.() -pays -paysage/S. -paysagère/F.() -paysagiste/S. -paysannat/S. -paysanne/F.() -paysannerie/S. -payse/F.() -pc/||-- -péage/S. -péagère/F.() -péagiste/S. -péan/S. -peau/X. -peaucier/S. -peaufinée/F.() -peaufiner/a0a+() -peau-rouge -peausser/a0() -peausserie/S. -peaussier/S. -peaux-rouges -pébibit/S. -pébioctet/S. -pébrine/S. -pébroc/S. -pébroque/S. -pécaïre -pécari/S. -peccable/S. -peccadille/S. -pechblende/S. -péché/S. -pêche/S. -pêcher/S. -pêcher/a0a+() -pécher/c0() -pécheresse/S. -pêcherie/S. -pêchette/S. -pécheur/S. -pêcheuse/F.() -pêchue/F.() -pecnot/S. -pécoptéris -pécore/S. -pecque/S. -pecquer/a0() -pecten/S. -pectine/S. -pectinée/F.() -pectique/S. -pectorale/W.() -péculat/S. -pécule/S. -pécuniaire/S. -pécuniairement -pédagogie/S. -pédagogique/S. -pédagogiquement -pédagogue/S. -pédalage/S. -pédale/S. -pédaler/a0() -pédaleuse/F.() -pédalier/S. -pédalo/S. -pédante/F.() -pédanterie/S. -pédantesque/S. -pédantisme/S. -pédé/S. -pédégée/F.() -pédégère/S. -pédéraste/S. -pédérastie/S. -pédérastique/S. -pédestre/S. -pédestrement -pédiatre/S. -pédiatrie/S. -pédiatrique/S. -pédicellaire/S. -pédicelle/S. -pédiculaire/S. -pédiculée/F.() -pédiculose/S. -pédicure/S. -pédicurie/S. -pédieuse/W.() -pedigree/S. -pédimane/S. -pédiment/S. -pédipalpe/S. -pédiplaine/S. -pédogenèse/S. -pédologie/S. -pédologue/S. -pédonculaire/S. -pédoncule/S. -pédonculée/F.() -pédophile/S. -pédophilie/S. -pédopornographie/S. -pédopornographique/S. -pédopsychiatre/S. -pédopsychiatrie/S. -pédopsychologie/S. -pédopsychologue/S. -pedum/S. -pedzouille/S. -peeling/S. -peer-to-peer -pégase/S. -pegmatite/S. -pègre/S. -pehlvi -peignage/S. -peigne/S. -peigne-cul -peignée/F.() -peigner/a0a+() -peignette/S. -peigneuse/F.() -peignier/S. -peignoir/S. -peignures -peille/S. -peinarde/F.() -peinardement -peindre/wB() -peine/S. -peinée/F.() -peiner/a0a+() -peinte/F.() -peintre/S. -peinture/S. -peinturer/a0a+() -peinturlurer/a0a+() -péjoration/S. -péjorative/F.() -péjorativement -pékan/S. -pékin/S. -pékinée/F.() -pékinoise/F.() -pelade/S. -pelage/S. -pélagianisme/S. -pélagienne/F.() -pélagique/S. -pelagos -pélamide/S. -pelard/S. -pélargonium/S. -pélasgienne/F.() -pélasgique/S. -pelée/F.() -peléenne/F.() -péléenne/F.() -pêle-mêle -pêle-mêle -peler/b0a+() -pèlerinage/S. -pèlerine/F.() -péliade/S. -pélican/S. -pelisse/S. -pellagre/S. -pellagreuse/W.() -pelle/S. -pelle-pioche -peller/a0a+() -pelles-pioches -pellet/S. -pelletage/S. -pelletée/S. -pelleter/d0a+() -pelleterie/S. -pelleteuse/F.() -pelletière/F.() -pelletiérine/S. -pelliculage/S. -pelliculaire/S. -pellicule/S. -pelliculée/F.() -pelliculeuse/W.() -pellucide/S. -pélobate/S. -pélodyte/S. -pelotage/S. -pelotari/S. -pelote/S. -pelotée/F.() -peloter/a0a+() -peloteuse/F.() -peloton/S. -pelotonnée/F.() -pelotonnement/S. -pelotonner/a0a+() -pelouse/S. -pelta/S. -peltaste/S. -pelte/S. -peltée/F.() -peluche/S. -peluchée/F.() -pelucher/a0() -pelucheuse/W.() -pelure/S. -pelvienne/F.() -pelvigraphie/S. -pelvimètre/S. -pelvimétrie/S. -pelvimétrique/S. -pelvis -pembeniser/a0a+() -pemmican/S. -pénale/W.() -pénalement -pénalisante/F.() -pénalisation/S. -pénalisée/F.() -pénaliser/a0a+() -pénaliste/S. -pénalité/S. -penalty/S. -pénarde/F.() -pénardement -pénates -penaude/F.() -pence -penchant/S. -penchante/F.() -penchée/F.() -pencher/a0a+() -pendable/S. -pendage/S. -pendaison/S. -pendant -pendant -pendant/S. -pendante/F.() -pendard/S. -pendeloque/S. -pendentif/S. -penderie/S. -pendiller/a0() -pendillon/S. -pendoir/S. -pendouiller/a0() -pendre/tA() -pendue/F.() -pendulaire/S. -pendule/S. -penduler/a0() -pendulette/S. -pêne/S. -pénéplaine/S. -pénétrabilité/S. -pénétrable/S. -pénétrante/F.() -pénétration/S. -pénétrée/F.() -pénétrer/c0a+() -pénétromètre/S. -pénibilité/S. -pénible/S. -péniblement -péniche/S. -pénicillée/F.() -pénicilline/S. -pénicillinorésistante/F.() -pénicillium/S. -pénienne/F.() -pénil/S. -péninsulaire/S. -péninsule/S. -pénis -pénitence/S. -pénitencerie/S. -pénitencier/S. -pénitente/F.() -pénitentiaire/S. -pénitentiale/W.() -pénitentielle/F.() -pennage/S. -penne/S. -pennée/F.() -penniforme/S. -pennon/S. -penny/S. -pénologie/S. -pénombre/S. -penon/S. -pensable/S. -pensante/F.() -pense-bête/S. -pensée/F.() -pensée/S. -penser/a0a+() -penseuse/F.() -pension/S. -pensionnaire/S. -pensionnat/S. -pensionnée/F.() -pensionner/a0a+() -pensive/F.() -pensivement -pensum/S. -pentachlorure/S. -pentacle/S. -pentacorde/S. -pentacrine/S. -pentacrinite/S. -pentadactyle/S. -pentadécagone/S. -pentaèdre/S. -pentagonale/W.() -pentagone/S. -pentagramme/S. -pentalogie/S. -pentamère/S. -pentamètre/S. -pentane/S. -pentanol/S. -pentarchie/S. -pentasodique/S. -pentateuque/S. -pentathlon/S. -pentatome/S. -pentatonique/S. -pente/S. -pentecôte/S. -pentecôtisme/S. -pentecôtiste/S. -pentédécagone/S. -penthiobarbital/S. -penthode/S. -penthotal/S. -pentode/S. -pentose/S. -pentue/F.() -penture/S. -pénultième/S. -pénurie/S. -péon/S. -péotte/S. -pep -pépé/S. -pépère/S. -péperin/S. -pépètes -pépie/S. -pépiement/S. -pépier/a0() -pépin/S. -pépinière/S. -pépiniériste/S. -pépite/S. -péplum/S. -pépon/S. -péponide/S. -peppermint/S. -pepsine/S. -peptide/S. -peptidique/S. -peptique/S. -peptone/S. -péquenaude/F.() -péquenotte/F.() -péquin/S. -péquiste/S. -péramèle/S. -perborate/S. -perçage/S. -percale/S. -percaline/S. -perçante/F.() -perce/S. -percée/F.() -percée/S. -percement/S. -perce-muraille/S. -perce-neige -perce-oreille/S. -perce-pierre/S. -percept/S. -perceptibilité/S. -perceptible/S. -perceptiblement -perception/S. -perceptive/F.() -perceptrice/F.() -perceptuelle/F.() -percer/a0a+() -percerette/S. -perceuse/F.() -percevable/S. -percevoir/pK() -perche/S. -perchée/F.() -percher/a0a+() -percheronne/F.() -percheuse/F.() -perchis -perchiste/S. -perchlorate/S. -perchlorique/S. -perchman/S. -perchoir/S. -percluse/F.() -percnoptère/S. -perçoir/S. -percolateur/S. -percolation/S. -perçue/F.() -percussion/S. -percussionniste/S. -percutanée/F.() -percutante/F.() -percutée/F.() -percuter/a0a+() -percuteur/S. -percuti-réaction/S. -perdable/S. -perdante/F.() -perdition/S. -perdre/tA() -perdreau/X. -perdrix -perdue/F.() -perdurable/S. -perdurer/a0() -père/S. -pérégrination/S. -pérégrine/F.() -pérégriner/a0() -péremption/S. -péremptoire/S. -péremptoirement -pérenne/S. -pérennisation/S. -pérenniser/a0a+() -pérennité/S. -péréquater/a0a+() -péréquation/S. -perestroïka -perfectibilité/S. -perfectible/S. -perfection/S. -perfectionnée/F.() -perfectionnement/S. -perfectionner/a0a+() -perfectionnisme/S. -perfectionniste/S. -perfective/F.() -perfide/S. -perfidement -perfidie/S. -perfoliée/F.() -perforage/S. -perforante/F.() -perforation/S. -perforatrice/F.() -perforée/F.() -perforelieuse/F.() -perforer/a0a+() -perforeuse/S. -performance/S. -performante/F.() -performative/F.() -performativité/S. -perfuser/a0a+() -perfusion/S. -pergélisol/S. -pergola/S. -péri/S. -périanthe/S. -péricarde/S. -péricardite/S. -péricarpe/S. -périchondre/S. -périclitante/F.() -périclitation/S. -péricliter/a0() -péricope/S. -péricycle/S. -péridot/S. -péridotite/S. -péridurale/W.() -périe/F.() -périgée/S. -périglaciaire/S. -périgourdine/F.() -périgueux -périhélie/S. -péril/S. -périlleuse/W.() -périlleusement -périmée/F.() -périmer/a0a+() -périmètre/S. -périmétrie/S. -périmétrique/S. -périnatale/F.() -périnatalité/S. -périnéale/W.() -périnée/S. -période/S. -périodicité/S. -périodique/S. -périodiquement -périœsophagienne/F.() -périoste/S. -périostite/S. -péripate/S. -péripatéticienne/F.() -péripatétisme/S. -péripétie/S. -périphérie/S. -périphérique/S. -périphlébite/S. -périphrase/S. -périphraser/a0() -périphrastique/S. -périple/S. -périptère/S. -périr/f0() -périscolaire/S. -périscope/S. -périscopique/S. -périsperme/S. -périspomène/S. -périssable/S. -périssoire/S. -périssologie/S. -péristaltique/S. -péristaltisme/S. -péristome/S. -péristyle/S. -péritel -périthèce/S. -péritoine/S. -péritonéale/W.() -péritonite/S. -pérityphlite/S. -périurbaine/F.() -périurbanisation/S. -périzonium/S. -perle/S. -perlèche/S. -perlée/F.() -perler/a0a+() -perlière/F.() -perlimpinpin -perlon/S. -perlot/S. -perlouse/S. -perlouze/S. -perluète/S. -permaculture/S. -permafrost/S. -permalloy/S. -permanence/S. -permanente/F.() -permanentée/F.() -permanenter/a0a+() -permanganate/S. -permanganique/S. -perméabiliser/a0a+() -perméabilité/S. -perméable/S. -permettre/vA() -permienne/F.() -permis -permise/F.() -permission/S. -permissionnaire/S. -permissive/F.() -permissivité/S. -permittivité/S. -permutabilité/S. -permutable/S. -permutante/F.() -permutateur/S. -permutation/S. -permutée/F.() -permuter/a0a+() -pernicieuse/W.() -pernicieusement -péroné/S. -péronier/S. -péronière/F.() -péronnelle/S. -péroraison/S. -pérorer/a0() -péroreuse/F.() -pérot/S. -peroxydase/S. -peroxyde/S. -peroxyder/a0a+() -perpendiculaire/S. -perpendiculairement -perpendicularité/S. -perpétration/S. -perpétrée/F.() -perpétrer/c0a+() -perpétuation/S. -perpétuée/F.() -perpétuelle/F.() -perpétuellement -perpétuer/a0a+() -perpétuité/S. -perplexe/S. -perplexité/S. -perquisiteur/S. -perquisition/S. -perquisitionnée/F.() -perquisitionner/a0() -perron/S. -perroquet/S. -perruche/S. -perruque/S. -perruquière/F.() -pers -persane/F.() -persanophone/S. -perse/S. -persécutée/F.() -persécuter/a0a+() -persécution/S. -persécutrice/F.() -persel/S. -persévérance/S. -persévérante/F.() -persévération/S. -persévérer/c0() -persicaire/S. -persicot/S. -persienne/S. -persiflage/S. -persifler/a0a+() -persifleuse/F.() -persil/S. -persillade/S. -persillée/F.() -persiller/a0a+() -persillère/S. -persique/S. -persistance/S. -persistante/F.() -persister/a0() -personæ -personnage/S. -personnalisable/S. -personnalisation/S. -personnalisée/F.() -personnaliser/a0a+() -personnalisme/S. -personnaliste/S. -personnalité/S. -personne -personne/S. -personnelle/F.() -personnellement -personnification/S. -personnifiée/F.() -personnifier/a0a+() -perspective/F.() -perspectivement -perspectivisme/S. -perspicace/S. -perspicacement -perspicacité/S. -perspiration/S. -persuadée/F.() -persuader/a0a+() -persuasion/S. -persuasive/F.() -persulfate/S. -persulfure/S. -persulfurée/F.() -perte/S. -pertinemment -pertinence/S. -pertinente/F.() -pertuis -pertuisane/S. -pertuisanier/S. -perturbante/F.() -perturbation/S. -perturbatrice/F.() -perturbée/F.() -perturber/a0a+() -péruvienne/F.() -pervenche/S. -perverse/F.() -perversement -perversion/S. -perversité/S. -pervertie/F.() -pervertir/f0f+() -pervertissement -pervertisseuse/F.() -pervibrage/S. -pervibrer/a0a+() -pesade/S. -pesage/S. -pesamment -pesante/F.() -pesanteur/S. -pèse-acide/S. -pèse-alcool -pèse-bébé/S. -pesée/F.() -pesée/S. -pèse-esprit -pèse-lait -pèse-lettre/S. -pèse-liqueur/S. -pèse-moût/S. -pèse-personne/S. -peser/b0a+() -pèse-sel/S. -pèse-sirop/S. -peseta/S. -pesette/S. -peseuse/F.() -pèse-vin -peso/S. -peson/S. -pessaire/S. -pesse/S. -pessière/S. -pessigner -pessimisme/S. -pessimiste/S. -peste/S. -pesteller/a0() -pester/a0() -pesteuse/W.() -pesticide/S. -pestiférée/F.() -pestiférer/c0a+() -pestilence/S. -pestilentielle/F.() -pet/S. -pétabit/S. -pétage/S. -pétainisme/S. -pétainiste/S. -pétale/S. -pétalisme/S. -pétaloïde/S. -pétamètre/S. -pétanque/S. -pétante/F.() -pétaoctet/S. -pétaradante/F.() -pétarade/S. -pétarader/a0() -pétard/S. -pétarder/a0a+() -pétase/S. -pétaudière/S. -pétaure/S. -pétauriste/S. -pet-de-nonne -pétéchiale/W.() -pétéchie/S. -péter/c0a+() -pète-sec/S. -péteuse/F.() -péteuse/W.() -pétillante/F.() -pétillement/S. -pétiller/a0() -pétiole/S. -pétiolée/F.() -petiote/F.() -petit-beurre -petit-bois -petit-bourgeois -petit-déjeuner -petit-déjeuner/a0() -petite/F.() -petite-bourgeoise -petite-fille -petite-maîtresse -petitement -petite-nièce -petites-bourgeoises -petites-filles -petites-maîtresses -petites-nièces -petitesse/S. -petit-fils -petit-gris -pétition/S. -pétitionnaire/S. -pétitionner/a0() -petit-lait -petit-maître -petit-nègre -petit-neveu -pétitoire/S. -petit-pois -petits-beurre -petits-bois -petits-bourgeois -petits-déjeuners -petits-enfants -petits-fils -petits-gris -petits-laits -petits-maîtres -petits-neveux -petits-pois -petits-suisses -petit-suisse -pétoche/S. -pétocher/a0() -pétoire/S. -peton/S. -pétoncle/S. -pétrarquisante/F.() -pétrarquiser/a0() -pétrarquisme/S. -pétrarquiste/S. -pétrée/F.() -pétrel/S. -pétreuse/W.() -pétrie/F.() -pétrifiante/F.() -pétrification/S. -pétrifiée/F.() -pétrifier/a0a+() -pétrin/S. -pétrir/f0f+() -pétrissable/S. -pétrissage/S. -pétrisseuse/F.() -pétrochimie/S. -pétrochimique/S. -pétrochimiste/S. -pétrodollar/S. -pétrogale/S. -pétrogenèse/S. -pétroglyphe/S. -pétrographe/S. -pétrographie/S. -pétrographique/S. -pétrole/S. -pétrolette/S. -pétroleuse/S. -pétrolière/F.() -pétrolifère/S. -pétrolochimie/S. -pétrolochimique/S. -pétrologie/S. -pets-de-nonne -pétulance/S. -pétulante/F.() -pétun/S. -pétuner/a0() -pétunia/S. -peu -peucédan/S. -peuchère -peuh -peule/F.() -peulven/S. -peuplade/S. -peuple/S. -peuplée/F.() -peuplement/S. -peupler/a0a+() -peupleraie/S. -peuplier/S. -peur/S. -peureuse/W.() -peureusement -peut-être -peyotl/S. -pèze/S. -pézize/S. -pfaffienne/F.() -pfennig/S. -pff -pfft -pfut -ph/||-- -phacochère/S. -phacomètre/S. -phage/S. -phagédénique/S. -phagédénisme/S. -phagocytage/S. -phagocytaire/S. -phagocyte/S. -phagocytée/F.() -phagocyter/a0a+() -phagocytose/S. -phalange/S. -phalanger/S. -phalangette/S. -phalangienne/F.() -phalangine/S. -phalangiste/S. -phalanstère/S. -phalanstérienne/F.() -phalène/S. -phalère/S. -phalline/S. -phallique/S. -phallocentrique/S. -phallocentrisme/S. -phallocrate/S. -phallocratie/S. -phalloïde/S. -phallus -phanère/S. -phanérogame/S. -phanie/S. -pharaonienne/F.() -pharaonique/S. -pharaonne/F.() -phare/S. -pharillon/S. -pharisaïque/S. -pharisaïsme/S. -pharisienne/F.() -pharmaceutique/S. -pharmacie/S. -pharmacienne/F.() -pharmacodépendance/S. -pharmacodynamie/S. -pharmacodynamique/S. -pharmacogénétique/S. -pharmacognosie/S. -pharmacologie/S. -pharmacologique/S. -pharmacologiste/S. -pharmacologue/S. -pharmacomanie/S. -pharmacopée/S. -pharmacothérapie/S. -pharmacovigilance/S. -pharyngale/W.() -pharyngée/F.() -pharyngienne/F.() -pharyngite/S. -pharyngo-laryngite/S. -pharynx -phasage/S. -phascolome/S. -phase/S. -phasemètre/S. -phaser/a0() -phasme/S. -phelloderme/S. -phellogène/S. -phénakisticope/S. -phénakistiscope/S. -phénanthrène/S. -phénate/S. -phénicienne/F.() -phénicoptère/S. -phénique/S. -phéniquée/F.() -phénix -phénobarbital/S. -phénol/S. -phénolique/S. -phénoménale/W.() -phénoménalement -phénoménalisme/S. -phénoménalité/S. -phénomène/S. -phénoménique/S. -phénoménisme/S. -phénoméniste/S. -phénoménologie/S. -phénoménologique/S. -phénoménologue/S. -phénotype/S. -phénotypique/S. -phénylalanine/S. -phéochromocytome/S. -phéomélanine/S. -phéon/S. -phéophycée/S. -phéromonale/W.() -phéromone/S. -phi -philanthrope/S. -philanthropie/S. -philanthropique/S. -philatélie/S. -philatélique/S. -philatéliste/S. -philharmonie/S. -philharmonique/S. -philippine/F.() -philippique/S. -philistin/S. -philistinisme/S. -philo/S. -philodendron/S. -philologie/S. -philologique/S. -philologiquement -philologue/S. -philosophale/F.() -philosophe/S. -philosopher/a0() -philosophie/S. -philosophique/S. -philosophiquement -philosophisme/S. -philtre/S. -phlébite/S. -phlébographie/S. -phlébologie/S. -phlébologue/S. -phlébotomie/S. -phlegmasie/S. -phlegmasique/S. -phlegmon/S. -phlegmoneuse/W.() -phlogistique/S. -phlox -phlyctène/S. -phobie/S. -phobique/S. -phocéenne/F.() -phœnix -pholade/S. -pholiote/S. -phonation/S. -phonatoire/S. -phonatrice/F.() -phone/S. -phonématique/S. -phonème/S. -phonémique/S. -phonéticienne/F.() -phonétique/S. -phonétiquement -phonétisme/S. -phoniatrie/S. -phonie/S. -phonique/S. -phono/S. -phonogénie/S. -phonogénique/S. -phonogramme/S. -phonogrammique/S. -phonographe/S. -phonographie/S. -phonographique/S. -phonolite/S. -phonolithe/S. -phonolithique/S. -phonolitique/S. -phonologie/S. -phonologique/S. -phonologiquement -phonologisation/S. -phonologue/S. -phonométrie/S. -phonothèque/S. -phoque/S. -phormium/S. -phosgène/S. -phosphatage/S. -phosphatation/S. -phosphate/S. -phosphatée/F.() -phosphater/a0a+() -phosphaturie/S. -phosphène/S. -phosphine/S. -phosphite/S. -phospholipide/S. -phosphore/S. -phosphorée/F.() -phosphorer/a0() -phosphorescence/S. -phosphorescente/F.() -phosphoreuse/W.() -phosphorique/S. -phot/S. -photique/S. -photo/S. -photocalque/S. -photocatalyse/S. -photocatalytique/S. -photocellule/S. -photochimie/S. -photochimique/S. -photochrome/S. -photochromie/S. -photochromique/S. -photochromisme/S. -photocomposeuse/S. -photocomposition/S. -photoconductivité/S. -photoconductrice/F.() -photocopie/S. -photocopiée/F.() -photocopier/a0a+() -photocopieuse/F.() -photodiode/S. -photoélasticimétrie/S. -photoélectricité/S. -photoélectrique/S. -photoémettrice/F.() -photoémission/S. -photo-finish -photogène/S. -photogénie/S. -photogénique/S. -photogramme/S. -photogrammétrie/S. -photographe/S. -photographie/S. -photographiée/F.() -photographier/a0a+() -photographique/S. -photographiquement -photograveuse/F.() -photogravure/S. -photohéliographe/S. -photojournalisme/S. -photojournaliste/S. -photojournalistique/S. -photolithographie/S. -photoluminescence/S. -photolyse/S. -photomacrographie/S. -photomaton/S. -photomécanique/S. -photomètre/S. -photométrie/S. -photométrique/S. -photomicrographie/S. -photomontage/S. -photomultiplicateur/S. -photon/S. -photonique/S. -photopériode/S. -photopériodique/S. -photopériodisme/S. -photophobie/S. -photophore/S. -photopile/S. -photorécepteur/S. -photorésistance/S. -photorésistante/F.() -photo-robot -photosensibilisant/S. -photosensibilisante/F.() -photosensibilisation/S. -photosensible/S. -photos-finish -photosphère/S. -photos-robots -photostat/S. -photostyle/S. -photosynthèse/S. -photosynthétique/S. -phototactisme/S. -photothèque/S. -photothérapie/S. -phototropisme/S. -phototype/S. -phototypie/S. -photovoltaïque/S. -phragmite/S. -phrase/S. -phraséologie/S. -phraséologique/S. -phraser/a0a+() -phraseuse/F.() -phrasicoter -phrastique/S. -phratrie/S. -phréatique/S. -phrénique/S. -phrénologie/S. -phrénologique/S. -phrénologiste/S. -phrénologue/S. -phrygane/S. -phrygienne/F.() -phtalate/S. -phtaléine/S. -phtalique/S. -phtiriase/S. -phtiriasis -phtisie/S. -phtisiologie/S. -phtisiologue/S. -phtisique/S. -phycoérythrine/S. -phylactère/S. -phylarque/S. -phylétique/S. -phyllade/S. -phyllie/S. -phyllosilicate/S. -phylloxéra/S. -phylloxérée/F.() -phylloxérienne/F.() -phylloxérique/S. -phylogenèse/S. -phylogénétique/S. -phylogénie/S. -phylogénique/S. -phylogéographie/S. -phylum/S. -physalie/S. -physalis -physiatre/S. -physiatrie/S. -physicalisme/S. -physicienne/F.() -physico-chimie/S. -physico-chimique/S. -physico-mathématique/S. -physico-théologique/S. -physiocrate/S. -physiocratie/S. -physiocratique/S. -physiognomonie/S. -physiognomonique/S. -physiognomoniste/S. -physiographie/S. -physiographique/S. -physiologie/S. -physiologique/S. -physiologiquement -physiologiste/S. -physionomie/S. -physionomique/S. -physionomiste/S. -physiopathologie/S. -physiothérapie/S. -physique/S. -physiquement -physisorption/S. -physostigma/S. -phytéléphas -phytoalexine/S. -phytoécologie/S. -phytogéographie/S. -phytohormone/S. -phytolithe/S. -phytopathologie/S. -phytophage/S. -phytopharmaceutique/S. -phytopharmacie/S. -phytophthora/S. -phytoplancton/S. -phytosanitaire/S. -phytothérapeute/S. -phytothérapie/S. -phytotron/S. -phytozoaire/S. -pi -pi/||-- -piaculaire/S. -piaf/S. -piaffante/F.() -piaffement/S. -piaffer/a0() -piaffeuse/F.() -piaillarde/F.() -piaillement/S. -piailler/a0() -piaillerie/S. -piailleuse/F.() -pian/S. -pianissimo -pianissimo/S. -pianiste/S. -pianistique/S. -piano -piano/S. -pianoforte/S. -pianotage/S. -pianoter/a0a+() -piassava/S. -piastre/S. -piaule/S. -piaulement/S. -piauler/a0() -pibale/S. -pibrock/S. -pic/S. -pica/S. -picador/S. -picage/S. -picaillon/S. -picardan/S. -picarde/F.() -picarel/S. -picaresque/S. -piccolo/S. -pichenette/S. -pichet/S. -picholine/S. -pickles -pickpocket/S. -pick-up -picoler/a0a+() -picoleuse/F.() -picorer/a0a+() -picot/S. -picotée/F.() -picotement/S. -picoter/a0a+() -picotin/S. -picpoul/S. -picrate/S. -picridium/S. -picrique/S. -picris -picte/S. -picter/a0a+() -pictogramme/S. -pictographie/S. -pictographique/S. -picturale/W.() -pidgin/S. -pie/S. -pièce/S. -piécette/S. -pied/S. -pied-à-terre -pied-bot -pied-d'alouette -pied-de-biche -pied-de-cheval -pied-de-chèvre -pied-de-loup -pied-de-mouton -pied-de-poule -pied-de-veau -pied-d'oiseau -piédestal/X. -pied-noir -piédouche/S. -pied-plat -piédroit/S. -pieds-bots -pieds-d'alouette -pieds-de-biche -pieds-de-cheval -pieds-de-chèvre -pieds-de-loup -pieds-de-mouton -pieds-de-poule -pieds-de-veau -pieds-d'oiseau -pieds-noirs -pieds-plats -piéfort/S. -piège/S. -piégeage/S. -piégée/F.() -piéger/c0a+() -piégeur/S. -pie-grièche -piémont/S. -piémontaise/F.() -piercing/S. -piéride/S. -pierraille/S. -pierre/S. -pierrer/a0a+() -pierreries -pierrette/S. -pierreuse/W.() -pierrier/S. -pierrière/S. -pierrot/S. -pies-grièches -pietà -piétaille/S. -piété/S. -piétement/S. -piéter/c0a+() -piétin/S. -piétinante/F.() -piétinée/F.() -piétinement/S. -piétiner/a0a+() -piétisme/S. -piétiste/S. -piétonne/F.() -piétonnière/F.() -piètre/S. -piètrement -pieu/X. -pieuse/W.() -pieusement -pieuter/a0a+() -pieuvre/S. -pièze/S. -piézoélectricité/S. -piézoélectrique/S. -piézographe/S. -piézomètre/S. -piézométrie/S. -piézométrique/S. -pif/S. -piffer/a0a+() -pifomètre/S. -pige/S. -pigeonnante/F.() -pigeonne/F.() -pigeonneau/X. -pigeonnée/F.() -pigeonner/a0a+() -pigeonnier/S. -piger/a0a+() -pigiste/S. -pigment/S. -pigmentaire/S. -pigmentation/S. -pigmentée/F.() -pigmenter/a0a+() -pignada/S. -pignade/S. -pignatelle/S. -pigne/S. -pignocher/a0a+() -pignon/S. -pignorative/F.() -pignouf/S. -pilaf/S. -pilage/S. -pilaire/S. -pilastre/S. -pilchard/S. -pile/S. -piler/a0a+() -pîler/a0() -pilet/S. -pileuse/F.() -pileuse/W.() -pilier/S. -pilifère/S. -pillage/S. -pillarde/F.() -pillée/F.() -piller/a0a+() -pilleuse/F.() -pilocarpe/S. -pilocarpine/S. -pilon/S. -pilonnage/S. -pilonnée/F.() -pilonner/a0a+() -pilori/S. -pilo-sébacée/F.() -piloselle/S. -pilosisme/S. -pilosité/S. -pilot/S. -pilotable/S. -pilotage/S. -pilote/S. -pilotée/F.() -piloter/a0a+() -pilotin/S. -pilotis -pilou/S. -pils -pilulaire/S. -pilule/S. -piluler/a0() -pilulier/S. -pilum/S. -pimbêche/S. -piment/S. -pimentée/F.() -pimenter/a0a+() -pimer/a0a+() -pimpante/F.() -pimprenelle/S. -pin/S. -pinacée/S. -pinacle/S. -pinacothèque/S. -pinaillage/S. -pinailler/a0() -pinailleuse/F.() -pinard/S. -pinardier/S. -pinasse/S. -pinastre/S. -pince/S. -pinceau/X. -pincée/F.() -pincée/S. -pince-fesses -pincelier/S. -pince-maille/S. -pincement/S. -pince-monseigneur -pince-nez -pince-notes -pince-oreille/S. -pincer/a0a+() -pince-sans-rire -pinces-monseigneur -pincette/S. -pincharde/F.() -pinçon/S. -pinçure/S. -pindarique/S. -pindariser/a0() -pindouler/a0() -pinéale/W.() -pineau/X. -pinède/S. -pineraie/S. -pingler -pingouin/S. -ping-pong/S. -pingre/S. -pingrerie/S. -pinière/S. -pinne/S. -pinnothère/S. -pinnule/S. -pinot/S. -pin's -pinson/S. -pintade/S. -pintadeau/X. -pintadine/S. -pinte/S. -pinter/a0a+() -pin-up -pinyin -piochage/S. -pioche/S. -piocher/a0a+() -piocheuse/F.() -pioger/a0() -piolet/S. -pioncer/a0() -pionne/F.() -pionner/a0() -pionnière/F.() -pioupiou/S. -pipe/S. -pipeau/X. -pipée/F.() -pipelette/F.() -pipeline/S. -piper/a0a+() -piperade/S. -piperie/S. -pipérine/S. -pipéronal/S. -pipette/S. -pipeuse/F.() -pipi/S. -pipière/F.() -pipistrelle/S. -pipit/S. -piquage/S. -piquante/F.() -pique/S. -pique-assiette/S. -pique-bœuf/S. -piquée/F.() -pique-feu -pique-fleurs -pique-fruits -pique-nique/S. -pique-niquer/a0() -pique-niqueuse/F.() -pique-notes -piquer/a0a+() -piquet/S. -piquetage/S. -piquetée/F.() -piqueter/d0a+() -piquette/S. -piqueur/S. -piqueuse/W.() -piquier/S. -piquouse/S. -piquouser/a0a+() -piqûre/S. -piranha/S. -piratage/S. -pirate/S. -piratée/F.() -pirater/a0a+() -piraterie/S. -piraya/S. -pire -pire/S. -piriforme/S. -pirogue/S. -piroguière/F.() -pirojki -pirole/S. -pirouette/S. -pirouettement/S. -pirouetter/a0() -pis -pis -pis-aller -piscicole/S. -piscicultrice/F.() -pisciculture/S. -pisciforme/S. -piscine/S. -piscivore/S. -pisé/S. -pisolite/S. -pisolithe/S. -pisolithique/S. -pisolitique/S. -pissaladière/S. -pissat/S. -pisse/S. -pisse-froid -pissenlit/S. -pisser/a0a+() -pissette/S. -pisseuse/F.() -pisseuse/W.() -pisse-vinaigre -pissoir/S. -pissoter/a0() -pissotière/S. -pistache/S. -pistacher/a0a+() -pistachier/S. -pistage/S. -pistard/S. -piste/S. -pistée/F.() -pister/a0a+() -pisteur/S. -pistil/S. -pistole/S. -pistolet/S. -pistolet-mitrailleur -pistolets-mitrailleurs -piston/S. -pistonnée/F.() -pistonner/a0a+() -pistou/S. -pitance/S. -pitancher/a0a+() -pitbull/S. -pitch/S. -pitchpin/S. -pite/S. -piter/a0() -piteuse/W.() -piteusement -pithécanthrope/S. -pithiatique/S. -pithiatisme/S. -pithiviers -pitié/S. -piton/S. -pitonnage/S. -pitonner/a0() -pitoyable/S. -pitoyablement -pitre/S. -pitrerie/S. -pittoresque/S. -pittoresquement -pittosporum/S. -pituitaire/S. -pituite/S. -pityriasis -pive/S. -pivert/S. -pivoine/S. -pivot/S. -pivotage/S. -pivotante/F.() -pivotement/S. -pivoter/a0() -pixel/S. -pixelisée/F.() -pixeliser/a0a+() -pixellisation/S. -pizza/S. -pizzeria/S. -pizzicato/S. -placage/S. -placard/S. -placarder/a0a+() -place/S. -placebo/S. -placée/F.() -placement/S. -placenta/S. -placentaire/S. -placentation/S. -placer/S. -placer/a0a+() -placette/F.() -placeuse/F.() -placide/S. -placidement -placidité/S. -placier/S. -placoter/a0() -plafond/S. -plafonnage/S. -plafonnée/F.() -plafonnement/S. -plafonner/a0a+() -plafonneur/S. -plafonnier/S. -plagale/W.() -plage/S. -plagiaire/S. -plagiat/S. -plagiée/F.() -plagier/a0a+() -plagiste/S. -plaid/S. -plaidante/F.() -plaidée/F.() -plaider/a0a+() -plaideuse/F.() -plaidoirie/S. -plaidoyer/S. -plaie/S. -plaignante/F.() -plain/S. -plain-chant -plaindre/wO() -plaine/F.() -plainer/a0a+() -plain-pied -plains-chants -plainte/F.() -plainte/S. -plaintive/F.() -plaintivement -plaire/wN() -plaisamment -plaisance/S. -plaisancier/S. -plaisante/F.() -plaisanter/a0a+() -plaisanterie/S. -plaisantin/S. -plaisir/S. -plan/S. -planage/S. -planaire/S. -planar/S. -planarisation/S. -planche/S. -planchéiage/S. -planchéier/a0a+() -plancher/S. -plancher/a0() -planchette/S. -plan-concave/S. -plan-convexe/S. -plancton/S. -planctonique/S. -plane/F.() -planée/F.() -planéité/S. -planer/a0a+() -planétaire/S. -planétairement -planétarisation/S. -planétarium/S. -planète/S. -planétoïde/S. -planétologie/S. -planétologue/S. -planeuse/F.() -planèze/S. -planification/S. -planificatrice/F.() -planifiée/F.() -planifier/a0a+() -planimètre/S. -planimétrie/S. -planimétrique/S. -planisme/S. -planisphère/S. -planiste/S. -planning/S. -planoir/S. -planorbe/S. -planque/S. -planquée/F.() -planquer/a0a+() -plan-séquence -plans-séquences -plantage/S. -plantaginacée/S. -plantain/S. -plantaire/S. -plantation/S. -plante/F.() -plantée/F.() -planter/a0a+() -planteuse/F.() -plantigrade/S. -plantoir/S. -planton/S. -plantule/S. -plantureuse/W.() -plantureusement -planure/S. -plaquage/S. -plaque/S. -plaquée/F.() -plaquemine/S. -plaqueminier/S. -plaquer/a0a+() -plaquette/S. -plaqueuse/F.() -plaquiste/S. -plasma/S. -plasmagène/S. -plasmatique/S. -plasmide/S. -plasmifier/a0a+() -plasmique/S. -plasmocyte/S. -plasmode/S. -plasmodium/S. -plasmolyse/S. -plaste/S. -plastic/S. -plasticage/S. -plasticienne/F.() -plasticine/S. -plasticité/S. -plastie/S. -plastifiante/F.() -plastification/S. -plastifiée/F.() -plastifier/a0a+() -plastigel/S. -plastination/S. -plastiquage/S. -plastique/S. -plastiquée/F.() -plastiquement -plastiquer/a0a+() -plastiqueur/S. -plastisol/S. -plastron/S. -plastronner/a0a+() -plasturgie/S. -plasturgique/S. -plasturgiste/S. -platane/S. -plataniste/S. -plate/F.() -plateau/X. -plate-bande -platée/S. -plate-forme -platelage/S. -platement -plateresque/S. -plates-bandes -plates-formes -plathelminthe/S. -platière/S. -platinage/S. -platine/S. -platinée/F.() -platiner/a0a+() -platiniser/a0a+() -platinocyanure/S. -platitude/S. -platonicienne/F.() -platonique/S. -platoniquement -platonisme/S. -plâtrage/S. -plâtre/S. -plâtrée/F.() -plâtrée/S. -plâtrer/a0a+() -plâtrerie/S. -plâtreuse/W.() -plâtrière/F.() -plausibilité/S. -plausible/S. -plausiblement -play-back -play-boy/S. -playon/S. -pléban/S. -plèbe/S. -plébéienne/F.() -plébiscitaire/S. -plébiscite/S. -plébiscitée/F.() -plébisciter/a0a+() -plecquer/a0() -plectre/S. -pléiade/S. -pleine/F.() -pleinement -plein-emploi -pleins-temps -pleins-vents -plein-temps -plein-vent -pléistocène/S. -plénière/F.() -plénièrement -plénipotentiaire/S. -plénitude/S. -plénum/S. -pléonasme/S. -pléonastique/S. -plérôme/S. -plésiomorphe/S. -plésiosaure/S. -pléthore/S. -pléthorique/S. -pleur/S. -pleurage/S. -pleurale/W.() -pleurante/F.() -pleurarde/F.() -pleure-misère -pleurer/a0a+() -pleurésie/S. -pleurétique/S. -pleureuse/F.() -pleurite/S. -pleurnicharde/F.() -pleurnichement/S. -pleurnicher/a0() -pleurnicherie/S. -pleurnicheuse/F.() -pleurobranche/S. -pleurodynie/S. -pleuronecte/S. -pleuronectiforme/S. -pleuropneumonie/S. -pleurote/S. -pleurotomie/S. -pleutre/S. -pleutrerie/S. -pleuvasser/a9() -pleuviner/a9() -pleuvioter/a9() -pleuvoir/pZ() -pleuvoter/a9() -plèvre/S. -plexiglas -plexus -pleyon/S. -pli/S. -pliable/S. -pliage/S. -pliante/F.() -plie/S. -pliée/F.() -pliement/S. -plier/a0a+() -plieuse/F.() -plinthe/S. -pliocène/S. -plioir/S. -plique/S. -plissage/S. -plissée/F.() -plissement/S. -plisser/a0a+() -plisseuse/F.() -plissure/S. -pliure/S. -ploc -ploiement/S. -plomb/S. -plombage/S. -plombagine/S. -plombe/S. -plombée/F.() -plomber/a0a+() -plomberie/S. -plombeur/S. -plombeuse/W.() -plombière/F.() -plombifère/S. -plomboir/S. -plombure/S. -plommée/S. -plonge/S. -plongeable/S. -plongeante/F.() -plongement/S. -plongeoir/S. -plongeon/S. -plonger/a0a+() -plongeuse/F.() -ploquer/a0a+() -plot/S. -plouc/S. -plouf -plouk/S. -ploutocrate/S. -ploutocratie/S. -ploutocratique/S. -ployable/S. -ployer/a0a+() -pluche/S. -plucher/a0() -plucheuse/W.() -pluie/S. -plumage/S. -plumaison/S. -plumard/S. -plumasserie/S. -plumassière/F.() -plume/S. -plumeau/X. -plumée/F.() -plumer/a0a+() -plumet/S. -plumetée/F.() -plumetis -plumeuse/F.() -plumeuse/W.() -plumier/S. -plumitif/S. -plum-pudding/S. -plumule/S. -plupart -plurale/W.() -pluralisation/S. -pluralisme/S. -pluraliste/S. -pluralité/S. -pluriannuelle/F.() -pluricellulaire/S. -pluridisciplinaire/S. -pluridisciplinarité/S. -plurielle/F.() -plurilatérale/W.() -plurilingue/S. -plurilinguisme/S. -plurinationale/W.() -pluripartisme/S. -pluripotente/F.() -plurisousharmonique/S. -plurivalente/F.() -plurivoque/S. -plus -plusieurs -plus-que-parfait/S. -plus-value/S. -pluton/S. -plutonienne/F.() -plutonigène/S. -plutonique/S. -plutonisme/S. -plutonium/S. -plutôt -pluviale/W.() -pluvian/S. -pluvier/S. -pluvieuse/W.() -pluviner/a9() -pluviomètre/S. -pluviométrie/S. -pluviométrique/S. -pluviôse/S. -pluviosité/S. -pneu/S. -pneumatique/S. -pneumatologie/S. -pneumatophore/S. -pneumatothérapie/S. -pneumectomie/S. -pneumoconiose/S. -pneumocoque/S. -pneumogastrique/S. -pneumographie/S. -pneumologie/S. -pneumologue/S. -pneumonie/S. -pneumonique/S. -pneumopathie/S. -pneumothorax -po/||-- -pochade/S. -pochage/S. -pocharde/F.() -pocharder/a0a+() -pochardise/S. -poche/S. -pochée/F.() -pocher/a0a+() -pochetée/S. -pochetronner/a0a+() -pochette/S. -pochettes-surprises -pochette-surprise -pocheuse/S. -pochoir/S. -pochon/S. -pochouse/S. -podagre/S. -podaire/S. -podcast/S. -podcasteuse/F.() -podcasting/S. -podestat/S. -podium/S. -podologie/S. -podologue/S. -podomètre/S. -podoscaphe/S. -podzol/S. -podzolique/S. -podzoliser/a0a+() -pœcilandrie/S. -pœcile/S. -pœcilitique/S. -pœcilogynie/S. -pœcilotherme/S. -pœcilothermie/S. -poêle/S. -poêlée/F.() -poêler/a0a+() -poêlon/S. -poème/S. -poésie/S. -poète/S. -poétereau/X. -poétesse/S. -poétique/S. -poétiquement -poétiser/a0a+() -pogne/S. -pogner/a0a+() -pognon/S. -pogrom/S. -poids -poignante/F.() -poignard/S. -poignardée/F.() -poignarder/a0a+() -poigne/S. -poignée/S. -poignet/S. -poïkilotherme/S. -poïkilothermie/S. -poil/S. -poilante/F.() -poiler/a0a+() -poilue/F.() -poinçon/S. -poinçonnage/S. -poinçonnée/F.() -poinçonnement/S. -poinçonner/a0a+() -poinçonneuse/F.() -poindre/wB() -poing/S. -point -point/S. -pointage/S. -pointal/X. -pointe/S. -pointeau/X. -pointée/F.() -pointer/S. -pointer/a0a+() -pointeuse/F.() -pointillage/S. -pointillé/S. -pointillée/F.() -pointiller/a0a+() -pointilleuse/W.() -pointillisme/S. -pointilliste/S. -points-virgules -pointue/F.() -pointure/S. -point-virgule -poire/S. -poireau/X. -poireauter/a0() -poirée/F.() -poirier/S. -poiroter/a0() -pois -poiscaille/S. -poise/S. -poiseuille/S. -poison/S. -poissarde/F.() -poisse/S. -poisser/a0a+() -poisseuse/W.() -poisson/S. -poisson-chat -poisson-clown -poissonnerie/S. -poissonneuse/W.() -poissonnière/F.() -poissons-chats -poissons-clowns -poitevine/F.() -poitrail/S. -poitrinaire/S. -poitrine/S. -poitrinière/S. -poivrade/S. -poivre/S. -poivrée/F.() -poivrer/a0a+() -poivrière/F.() -poivron/S. -poivrote/F.() -poivroter/a0a+() -poix -poker/S. -polacre/S. -polaire/S. -polaque/S. -polar/S. -polard/S. -polarimètre/S. -polarisable/S. -polarisante/F.() -polarisation/S. -polarisatrice/F.() -polariscope/S. -polarisée/F.() -polariser/a0a+() -polariseur/S. -polarité/S. -polaroid/S. -polatouche/S. -polder/S. -pôle/S. -polémarque/S. -polémique/S. -polémiquer/a0() -polémiste/S. -polémologie/S. -polenta/S. -police/S. -policée/F.() -policeman/S. -policer/a0a+() -polichinelle/S. -policière/F.() -policlinique/S. -polie/F.() -poliment -polio/S. -poliomyélite/S. -poliomyélitique/S. -poliorcétique/S. -polir/f0f+() -polissable/S. -polissage/S. -polisseuse/F.() -polissoir/S. -polissoire/S. -polissonne/F.() -polissonner/a0() -polissonnerie/S. -polissure/S. -politesse/S. -politicarde/F.() -politicienne/F.() -politique/S. -politiquement -politiquer/a0() -politisation/S. -politisée/F.() -politiser/a0a+() -politologie/S. -politologique/S. -politologue/S. -polka/S. -pollen/S. -pollinique/S. -pollinisation/S. -pollinisatrice/F.() -polliniser/a0a+() -pollinose/S. -polluante/F.() -polluée/F.() -polluer/a0a+() -pollueuse/F.() -pollupostage/S. -polluposteuse/F.() -pollution/S. -polo/S. -polochon/S. -polonaise/F.() -polonium/S. -poltronne/F.() -poltronnerie/S. -polyacide/S. -polyacrylate/S. -polyacrylique/S. -polyakène/S. -polyalcool/S. -polyamide/S. -polyamine/S. -polyandre/S. -polyandrie/S. -polyarthrite/S. -polybasique/S. -polycarbonate/S. -polycentrique/S. -polycentrisme/S. -polycéphale/S. -polycercle/S. -polychlorure/S. -polychroïsme/S. -polychrome/S. -polychromie/S. -polyclinique/S. -polycondensat/S. -polycondensation/S. -polycopie/S. -polycopiée/F.() -polycopier/a0a+() -polycristalline/F.() -polyculture/S. -polycycle/S. -polycyclique/S. -polydactyle/S. -polydactylie/S. -polydisque/S. -polyédrale/W.() -polyèdre/S. -polyédrique/S. -polyélectrolyte/S. -polyembryonie/S. -polyester/S. -polyéther/S. -polyéthylène/S. -polygala/S. -polygale/S. -polygame/S. -polygamie/S. -polygamique/S. -polygénisme/S. -polygéniste/S. -polyglobulie/S. -polyglotte/S. -polygonale/W.() -polygonation/S. -polygone/S. -polygraphe/S. -polygraphie/S. -polyimide/S. -polyiodure/S. -polylobée/F.() -polymathe/S. -polymathie/S. -polymathique/S. -polymérase/S. -polymère/S. -polymérisable/S. -polymérisation/S. -polymériser/a0a+() -polymétallique/S. -polymorphe/S. -polymorphie/S. -polymorphique/S. -polymorphisme/S. -polynésienne/F.() -polynévrite/S. -polynôme/S. -polynomiale/W.() -polynucléaire/S. -polyoside/S. -polype/S. -polypeptide/S. -polypeptidique/S. -polypétale/S. -polypeuse/W.() -polyphasée/F.() -polyphénol/S. -polyphonie/S. -polyphonique/S. -polyphosphate/S. -polyphylétique/S. -polypier/S. -polyploïde/S. -polyploïdie/S. -polypode/S. -polypore/S. -polyptère/S. -polyptyque/S. -polyrythmie/S. -polysaccharide/S. -polysème/S. -polysémie/S. -polysémique/S. -polysoc/S. -polystyle/S. -polystyrène/S. -polysulfure/S. -polysyllabe/S. -polysyllabique/S. -polysynodie/S. -polysynthétique/S. -polytechnicienne/F.() -polytechnique/S. -polyterpène/S. -polythéisme/S. -polythéiste/S. -polythène/S. -polytonale/W.() -polytonique/S. -polytope/S. -polytoxicomanie/S. -polytraumatisée/F.() -polytraumatisme/S. -polytric/S. -polyurie/S. -polyvalence/S. -polyvalente/F.() -polyvinyle/S. -polyvinylique/S. -polyvitamine/S. -polyxène/S. -pomélo/S. -poméranienne/F.() -pomerium/S. -pommade/S. -pommader/a0a+() -pommard/S. -pomme/S. -pommeau/X. -pommée/F.() -pommelée/F.() -pommeler/d0a+() -pommer/a0() -pommeraie/S. -pommetée/F.() -pommette/S. -pommier/S. -pomologie/S. -pomologique/S. -pomologiste/S. -pomologue/S. -pompage/S. -pompe/S. -pompée/F.() -pompéienne/F.() -pomper/a0a+() -pompette/S. -pompeuse/F.() -pompeuse/W.() -pompeusement -pompière/F.() -pompiérisme/S. -pompile/S. -pompiste/S. -pompon/S. -pomponnée/F.() -pomponner/a0a+() -ponant/S. -ponantaise/F.() -ponçage/S. -ponce/S. -ponceau/X. -poncée/F.() -poncelet/S. -poncer/a0a+() -ponceuse/F.() -ponceuse/W.() -poncho/S. -poncif/S. -ponction/S. -ponctionner/a0a+() -ponctualité/S. -ponctuation/S. -ponctuée/F.() -ponctuelle/F.() -ponctuellement -ponctuer/a0a+() -pondaison/S. -pondérable/S. -pondérale/W.() -pondération/S. -pondératrice/F.() -pondérée/F.() -pondérer/c0a+() -pondéreuse/W.() -pondeuse/F.() -pondoir/S. -pondre/tA() -poney/S. -pongé/S. -pongée/S. -pongiste/S. -pontage/S. -ponte/F.() -pontée/F.() -ponter/a0a+() -pontet/S. -pontier/S. -pontife/S. -pontifiante/F.() -pontificale/W.() -pontificat/S. -pontifier/a0() -pontil/S. -pontiller/a0a+() -pont-levis -ponton/S. -pontonnier/S. -pont-promenade -ponts-levis -ponts-promenades -pontuseau/X. -pool/S. -pop -pop-corn -pope/S. -popeline/S. -poplitée/F.() -popote/S. -popotin/S. -populace/S. -populacière/F.() -populage/S. -populaire/S. -populairement -popularisation/S. -popularisée/F.() -populariser/a0a+() -popularité/S. -population/S. -populationniste/S. -populéum/S. -populeuse/W.() -populicultrice/F.() -populiculture/S. -populisme/S. -populiste/S. -populo/S. -popup/S. -poquer/a0() -poquet/S. -porc/S. -porcelaine/S. -porcelainière/F.() -porcelet/S. -porc-épic -porchaison/S. -porche/S. -porchère/F.() -porcherie/S. -porcine/F.() -porcs-épics -pore/S. -poreuse/W.() -porion/S. -porno/S. -pornographe/S. -pornographie/S. -pornographique/S. -porosité/S. -porphyra/S. -porphyre/S. -porphyrine/S. -porphyrique/S. -porphyriser/a0a+() -porphyrogénète/S. -porphyroïde/S. -porque/S. -porreau/X. -porrection/S. -porridge/S. -port/S. -portabilité/S. -portable/S. -portage/S. -portail/S. -portance/S. -portante/F.() -portative/F.() -porte/F.() -porte-aéronefs -porte-à-faux -porte-affiche/S. -porte-aigle/S. -porte-aiguille/S. -porte-allumettes -porte-amarre/S. -porte-à-porte -porte-avions -porte-bagages -porte-baïonnette/S. -porte-balais -porte-bannière/S. -porte-barges -porte-bébé/S. -porte-billets -porte-bois -porte-bonheur -porte-bouquet/S. -porte-bouteilles -porte-brancard/S. -porte-cartes -porte-chapeau/X. -porte-cigares -porte-cigarettes -porte-clefs -porte-clés -porte-conteneurs -porte-copie/S. -porte-couteau/X. -porte-crayon/S. -porte-croix -porte-crosse/S. -porte-documents -porte-drapeau/X. -portée/F.() -portée/S. -porte-enseigne/S. -porte-épée/S. -porte-étendard/S. -porte-étriers -porte-étrivière/S. -portefaix -porte-fanion/S. -porte-fenêtre -portefeuille/S. -porte-fort -porte-glaive/S. -porte-greffe/S. -porte-hauban/S. -porte-hélicoptères -porte-jarretelles -porte-jupe/S. -porte-lame/S. -porte-malheur -portemanteau/X. -portement/S. -porte-menu/S. -portemine/S. -porte-monnaie -porte-montre/S. -porte-mors -porte-musique -porte-objet/S. -porte-outil/S. -porte-papier -porte-parapluie/S. -porte-parole -porte-plume/S. -porte-queue/S. -porter/a0a+() -porte-revues -porterie/S. -porte-savon/S. -porte-serviette -porte-serviette/S. -portes-fenêtres -porte-trait/S. -porteuse/F.() -porte-vent -porte-voix -portfolio/S. -portière/F.() -portillon/S. -portion/S. -portionnaire/S. -portique/S. -portland/S. -portlandien/S. -porto/S. -portoir/S. -portor/S. -portrait/S. -portraitiste/S. -portrait-robot -portraits-robots -portraiturer/a0a+() -portuaire/S. -portugaise/F.() -portulan/S. -portune/S. -posada/S. -pose/S. -posée/F.() -posément -posemètre/S. -poser/a0a+() -poseuse/F.() -position/S. -positionnelle/F.() -positionnement/S. -positionner/a0a+() -positive/F.() -positivement -positiver/a0a+() -positivisme/S. -positiviste/S. -positivité/S. -positon/S. -positonium/S. -positron/S. -positronium/S. -posologie/S. -posologique/S. -possédante/F.() -possédée/F.() -posséder/c0a+() -possesseur/S. -possession/S. -possessionnelle/F.() -possessive/F.() -possessivité/S. -possessoire/S. -possibilité/S. -possible/S. -possiblement -post-abortum -postage/S. -postale/W.() -postclassique/S. -postcombustion/S. -postcommunion/S. -postcondition/S. -postcure/S. -postdatée/F.() -postdater/a0a+() -postdoctorale/W.() -postdoctorante/F.() -postdoctorat/S. -poste/S. -poste-à-poste -postée/F.() -poster/S. -poster/a0a+() -postérieure/F.() -postérieurement -posteriori -postériorité/S. -postérité/S. -postface/S. -postglaciaire/S. -posthite/S. -posthume/S. -posthypophyse/S. -postiche/S. -posticher/a0() -posticheur/S. -postière/F.() -postillon/S. -postillonner/a0() -postindustrielle/F.() -post-it -postlude/S. -post-marché/S. -postmoderne/S. -postmodernisme/S. -postmoderniste/S. -postmodernité/S. -postnatale/F.() -postopératoire/S. -post-partum -postposer/a0a+() -postposition/S. -postproduction/S. -postromantique/S. -postscolaire/S. -post-scriptum -post-soixante-huitarde/F.() -postsonorisation/S. -postsynchronisation/S. -postsynchroniser/a0a+() -post-tonique/S. -post-traumatique/S. -postulante/F.() -postulat/S. -postulation/S. -postuler/a0a+() -posturale/W.() -posture/S. -potable/S. -potache/S. -potage/S. -potager/S. -potagère/F.() -potamochère/S. -potamologie/S. -potamot/S. -potard/S. -potasse/S. -potassée/F.() -potasser/a0a+() -potasseur/S. -potassique/S. -potassium/S. -pot-au-feu -pot-de-vin -pote/F.() -poteau/X. -potée/S. -potelée/F.() -potelet/S. -potence/S. -potencée/F.() -potentat/S. -potentialisation/S. -potentialiser/a0a+() -potentialiste/S. -potentialité/S. -potentielle/F.() -potentiellement -potentille/S. -potentiomètre/S. -poter/a0() -poterie/S. -poterne/S. -potestative/F.() -potiche/S. -potière/F.() -potin/S. -potiner/a0() -potinière/F.() -potion/S. -potiron/S. -potlatch -potomètre/S. -pot-pourri -pots-de-vin -pots-pourris -potto/S. -pou/X. -pouacre/S. -pouah -poubelle/S. -pouce/S. -pouce-pied -pouces-pieds -poucettes -poucier/S. -pou-de-soie -poudingue/S. -poudrage/S. -poudre/S. -poudrée/F.() -poudrer/a0a+() -poudrerie/S. -poudrette/S. -poudreuse/W.() -poudrière/F.() -poudroiement/S. -poudroyer -pouf/S. -pouffer/a0() -pouffiasse/S. -pouillard/S. -pouille/S. -pouillé/S. -pouiller/a0a+() -pouillerie/S. -pouilleuse/W.() -pouillot/S. -poujadisme/S. -poulailler/S. -poulaine/F.() -poularde/S. -poulbot/S. -poule/S. -poulet/S. -poulette/S. -pouliche/S. -poulie/S. -pouliner/a0() -poulinière/S. -pouliot/S. -poulote/F.() -poulpe/S. -pouls -poult-de-soie -poults-de-soie -poumon/S. -poupard/S. -poupe/S. -poupée/S. -poupine/F.() -poupon/S. -pouponnée/F.() -pouponner/a0() -pouponnière/S. -pour -pourboire/S. -pourceau/X. -pour-cent -pourcentage/S. -pourchassée/F.() -pourchasser/a0a+() -pourcompte/S. -pourfendeur/S. -pourfendre/tA() -pourfendue/F.() -pourlécher/c0a+() -pourparlers -pourpier/S. -pourpoint/S. -pourpre/S. -pourprée/F.() -pourprer/a0a+() -pourprine/F.() -pourquoi -pourridié/S. -pourrie/F.() -pourriel/S. -pourrir/f0f+() -pourrissage/S. -pourrissante/F.() -pourrissement/S. -pourrissoir/S. -pourriture/S. -pour-soi -poursuite/S. -poursuivante/F.() -poursuiveuse/F.() -poursuivie/F.() -poursuivre/xQ() -pourtant -pourtour/S. -pourvoi/S. -pourvoir/pJ() -pourvoirie/S. -pourvoyeuse/F.() -pourvue/F.() -poussage/S. -poussah/S. -pousse/S. -pousse-café -pousse-cailloux -pousse-cul -poussée/F.() -poussée/S. -pousse-pied -pousse-pousse -pousser/a0a+() -pousse-toc -poussette/S. -pousseur/S. -pousse-wagon -poussier/S. -poussière/S. -poussiéreuse/W.() -poussine/F.() -poussinière/S. -poussive/F.() -poussivement -poussoir/S. -poutargue/S. -pout-de-soie -poutine/S. -poutraison/S. -poutre/S. -poutrelle/S. -pouts-de-soie -poutser/a0a+() -pouture/S. -pouvoir/S. -pouvoir/pA() -poux-de-soie -pouzzolane/S. -pp -ppb/||-- -ppm/||-- -ppp -ppq/||-- -ppt/||-- -pragmatique/S. -pragmatiquement -pragmatisme/S. -pragmatiste/S. -praire/S. -prairial/S. -prairie/S. -pralin/S. -pralinage/S. -praline/S. -pralinée/F.() -praliner/a0a+() -prame/S. -prao/S. -praséodyme/S. -praticabilité/S. -praticable/S. -praticienne/F.() -praticité/S. -pratiquante/F.() -pratique/S. -pratiquée/F.() -pratiquement -pratiquer/a0a+() -praxéologie/S. -praxis -pré/S. -préachetable/S. -préacheter/b0a+() -préactionneur/S. -préadamisme/S. -préadamite/S. -préadolescence/S. -préalable/S. -préalablement -préalpine/F.() -préambule/S. -préardennaise/F.() -préau/X. -préavis -préaviser/a0a+() -prébende/S. -prébendée/F.() -prébendier/S. -prébiotique/S. -précaire/S. -précairement -précambrienne/F.() -précampagne/S. -précarisation/S. -précarisée/F.() -précariser/a0a+() -précarité/S. -précaution/S. -précautionnée/F.() -précautionner/a0a+() -précautionneuse/W.() -précautionneusement -précédemment -précédence/S. -précédente/F.() -précéder/c0a+() -préceinte/S. -précellence/S. -précepte/S. -préceptorat/S. -préceptrice/F.() -précéramique/S. -précession/S. -préchambre/S. -préchargée/F.() -préchargement/S. -précharger/a0a+() -préchauffage/S. -préchauffe/S. -préchauffée/F.() -préchauffer/a0a+() -prêche/S. -prêcher/a0a+() -prêcheuse/F.() -prêchi-prêcha -précieuse/W.() -précieusement -préciosité/S. -précipice/S. -précipitamment -précipitation/S. -précipitée/F.() -précipiter/a0a+() -préciput/S. -préciputaire/S. -précis -précise/F.() -précisément -préciser/a0a+() -précision/S. -précitée/F.() -précoce/S. -précocement -précocité/S. -précognition/S. -précolombienne/F.() -précombustion/S. -précompilation/S. -précompte/S. -précompter/a0a+() -préconception/S. -préconçue/F.() -précondition/S. -préconisateur/S. -préconisation/S. -préconisée/F.() -préconiser/a0a+() -préconiseur/S. -préconscient/S. -préconsciente/F.() -précontrainte/F.() -précordiale/W.() -précuisson/S. -précuite/F.() -précurseur/S. -prédatée/F.() -prédation/S. -prédatrice/F.() -prédécesseur/S. -prédécoupée/F.() -prédéfinie/F.() -prédéfinir/f0f+() -prédestination/S. -prédestinée/F.() -prédestiner/a0a+() -prédétermination/S. -prédéterminée/F.() -prédéterminer/a0a+() -prédéterminisme/S. -prédicable/S. -prédicant/S. -prédicat/S. -prédication/S. -prédicative/F.() -prédicatrice/F.() -prédictibilité/S. -prédiction/S. -prédictive/F.() -prédigérée/F.() -prédilection/S. -prédiquer/a0a+() -prédire/yD() -prédisposée/F.() -prédisposer/a0a+() -prédisposition/S. -prédite/F.() -prédominance/S. -prédominante/F.() -prédominer/a0() -préélectorale/W.() -préemballée/F.() -prééminence/S. -prééminente/F.() -préemptée/F.() -préempter/a0a+() -préemption/S. -préencollée/F.() -préétablie/F.() -préétablir/f0f+() -préexistante/F.() -préexistence/S. -préexister/a0() -préfabrication/S. -préfabriquée/F.() -préface/S. -préfacée/F.() -préfacer/a0a+() -préfacier/S. -préfanage/S. -préfectorale/W.() -préfecture/S. -préférable/S. -préférablement -préférée/F.() -préférence/S. -préférentielle/F.() -préférentiellement -préférer/c0a+() -préfète/F.() -préfiguration/S. -préfigurer/a0a+() -préfinancement/S. -préfixation/S. -préfixe/S. -préfixée/F.() -préfixer/a0a+() -préfixion/S. -préfloraison/S. -préfoliation/S. -préformatage/S. -préformatée/F.() -préformation/S. -préforme/S. -préformée/F.() -préformer/a0a+() -prégénérateur/S. -prégéodésique/S. -préglaciaire/S. -prégnance/S. -prégnante/F.() -préhellénique/S. -préhenseur/S. -préhensile/S. -préhension/S. -préhistoire/S. -préhistorienne/F.() -préhistorique/S. -préhomogène/S. -préhospitalière/F.() -préimplantation/S. -préindustrielle/F.() -préislamique/S. -préjudice/S. -préjudiciable/S. -préjudicielle/F.() -préjudicier/a0() -préjugé/S. -préjuger/a0a+() -prélart/S. -prélasser/a0a+() -prélat/S. -prélatine/F.() -prélature/S. -prélavage/S. -prèle/S. -prêle/S. -prélegs -prélevée/F.() -prélèvement/S. -prélever/b0a+() -préliminaire/S. -préliminairement -prélogique/S. -prélude/S. -préluder/a0() -prématurée/F.() -prématurément -prématurité/S. -prémédication/S. -préméditation/S. -préméditée/F.() -préméditer/a0a+() -prémenstruelle/F.() -prémices -première/F.() -premièrement -première-née -premières-nées -premier-maître -premier-né -premiers-maîtres -premiers-nés -prémilitaire/S. -prémisse/S. -prémolaire/S. -prémonition/S. -prémonitoire/S. -prémontrée/F.() -prémunie/F.() -prémunir/f0f+() -prémunition/S. -prenable/S. -prenante/F.() -prénatale/F.() -prendre/tF() -preneuse/F.() -prénom/S. -prénommée/F.() -prénommer/a0a+() -prénormale/W.() -prénuptiale/W.() -préoccupante/F.() -préoccupation/S. -préoccupée/F.() -préoccuper/a0a+() -préopératoire/S. -préorale/W.() -préouverture/S. -préparatif/S. -préparation/S. -préparatoire/S. -préparatrice/F.() -préparée/F.() -préparer/a0a+() -prépayée/F.() -prépayer/a0a+() -prépension/S. -prépensionnée/F.() -prépensionner/a0a+() -prépondérance/S. -prépondérante/F.() -préposée/F.() -préposer/a0a+() -préposition/S. -prépositionnelle/F.() -prépositionner/a0a+() -prépositive/F.() -prépositivement -prépotence/S. -préprocesseur/S. -préproduction/S. -préprogrammée/F.() -prépsychotique/S. -prépublication/S. -prépuce/S. -préraphaélite/S. -prérégler/c0a+() -prérequis -préretraite/S. -prérogative/S. -préromane/F.() -préromantique/S. -préromantisme/S. -près -présage/S. -présager/a0a+() -présalaire/S. -pré-salé -présanctifiée/F.() -presbyopie/S. -presbyte/S. -presbytérale/W.() -presbytère/S. -presbytérianisme/S. -presbytérienne/F.() -presbytie/S. -presbytisme/S. -préschéma/S. -prescience/S. -presciente/F.() -préscolaire/S. -prescriptible/S. -prescription/S. -prescriptive/F.() -prescriptrice/F.() -prescrire/y1() -prescrite/F.() -préséance/S. -présélecteur/S. -présélection/S. -présélectionnée/F.() -présélectionner/a0a+() -présence/S. -présent/S. -présentable/S. -présentatif/S. -présentation/S. -présentatrice/F.() -présente/F.() -présentée/F.() -présentéisme/S. -présentement -présenter/a0a+() -présentoir/S. -présérie/S. -préservatif/S. -préservation/S. -préservatrice/F.() -préservée/F.() -préserver/a0a+() -présidée/F.() -présidence/S. -président-directeur -présidente/F.() -présidente-directrice -présidentes-directrices -présidentiable/S. -présidentialisation/S. -présidentialisme/S. -présidentielle/F.() -présidents-directeurs -présider/a0a+() -présidial/X. -présidium/S. -présocratique/S. -présomption/S. -présomptive/F.() -présomptueuse/W.() -présomptueusement -présonorisation/S. -presque -presqu'île/S. -pressage/S. -prés-salés -pressante/F.() -press-book/S. -presse/S. -presse-agrumes -presse-bouton -presse-citron/S. -pressée/F.() -presse-étoupe/S. -presse-fruits -pressentie/F.() -pressentiment/S. -pressentir/i5i+() -presse-papiers -presse-purée -presser/a0a+() -presse-raquette/S. -presseuse/F.() -presse-viande -pressier/S. -pressing/S. -pression/S. -pressoir/S. -pressostat/S. -pressurage/S. -pressurée/F.() -pressurer/a0a+() -pressureuse/F.() -pressurisation/S. -pressurisée/F.() -pressuriser/a0a+() -pressuriseur/S. -prestance/S. -prestant/S. -prestataire/S. -prestation/S. -preste/S. -prestement -prester/a0a+() -prestesse/S. -prestidigitation/S. -prestidigitatrice/F.() -prestige/S. -prestigieuse/W.() -prestissimo -prestissimo/S. -presto -présumable/S. -présumée/F.() -présumer/a0a+() -présupposée/F.() -présupposer/a0a+() -présupposition/S. -présure/S. -présurer/a0a+() -prêt/S. -prétantaine/S. -prêt-à-porter -prêt-bail -prêtée/F.() -prétendante/F.() -prétendre/tA() -prétendue/F.() -prétendument -prête-nom/S. -prétentaine/S. -prétentiarde/F.() -prétentieuse/W.() -prétentieusement -prétention/S. -prêter/a0a+() -prétérit/S. -prétérition/S. -préteuse/F.() -prêteuse/F.() -prétexte/S. -prétexter/a0a+() -pretintaille/S. -prétoire/S. -prétoriale/W.() -prétorienne/F.() -prétraitement/S. -prêtresse/F.() -prêtrise/S. -prêts-à-porter -prêts-bails -préture/S. -preuve/S. -preux -prévalence/S. -prévaloir/pN() -prévarication/S. -prévaricatrice/F.() -prévariquer/a0() -prévenance/S. -prévenante/F.() -prévenir/i0i+() -prévention/S. -préventive/F.() -préventivement -préventorium/S. -prévenue/F.() -préverbe/S. -prévisibilité/S. -prévisible/S. -prévision/S. -prévisionnelle/F.() -prévisionniste/S. -prévisualisation/S. -prévisualiser/a0a+() -prévoir/pF() -prévôt/S. -prévôtale/W.() -prévôté/S. -prévoyance/S. -prévoyante/F.() -prévue/F.() -priante/F.() -priapée/S. -priapisme/S. -prie-Dieu -priée/F.() -prier/a0a+() -prière/S. -prieure/F.() -prieuré/S. -prima-donna/I. -primage/S. -primaire/S. -primale/W.() -primalité/S. -primariser/a0a+() -primarité/S. -primat/S. -primate/S. -primatiale/W.() -primatie/S. -primatologie/S. -primatologue/S. -primauté/S. -prime/S. -primée/F.() -primer/a0a+() -primerose/S. -primesautière/F.() -primeur/S. -primeuriste/S. -primevère/S. -primidi/S. -primipare/S. -primipilaire/S. -primipile/S. -primitive/F.() -primitivement -primitivisme/S. -primo -primogéniture/S. -primo-infection/S. -primordiale/W.() -primordialement -primulacée/S. -prince-de-galles -princeps -princesse/F.() -princière/F.() -princièrement -principalat/S. -principale/W.() -principalement -principat/S. -principauté/S. -principe/S. -printanière/F.() -printanisation/S. -printemps -priodonte/S. -prion/S. -priorat/S. -priori -prioriser/a0a+() -prioritaire/S. -prioritairement -priorité/S. -prise/F.() -prise/S. -prisée/F.() -priser/a0a+() -priseuse/F.() -prismatique/S. -prismatiquement -prisme/S. -prison/S. -prisonnière/F.() -privat-docent/S. -privat-dozent/S. -privation/S. -privatique/S. -privatisation/S. -privatisée/F.() -privatiser/a0a+() -privative/F.() -privatrice/F.() -privauté/S. -privée/F.() -priver/a0a+() -privilège/S. -privilégiée/F.() -privilégier/a0a+() -prix -pro/S. -proactive/F.() -proactivité/S. -proarthropode/S. -probabilisable/S. -probabilisée/F.() -probabilisme/S. -probabiliste/S. -probabilité/S. -probable/S. -probablement -probante/F.() -probation/S. -probatique/S. -probatoire/S. -probe/S. -prober/a0a+() -probité/S. -problématique/S. -problème/S. -procaryote/S. -procédé/S. -procéder/c0() -procédurale/W.() -procédure/S. -procédurière/F.() -procès -processeur/S. -procession/S. -processionnaire/S. -processionnelle/F.() -processionnellement -processionner/a0() -processive/F.() -processus -procès-verbal/X. -prochaine/F.() -prochainement -proche/S. -prochinoise/F.() -proclamation/S. -proclamée/F.() -proclamer/a0a+() -proclitique/S. -proconsul/S. -proconsulaire/S. -proconsulat/S. -procrastination/S. -procréation/S. -procréatrice/F.() -procréer/a0a+() -proctalgie/S. -proctite/S. -proctologie/S. -proctologue/S. -proctorrhée/S. -procuratie/S. -procuration/S. -procuratrice/F.() -procurer/a0a+() -procureure/S. -procureuse/F.() -procyclique/S. -prodigalité/S. -prodige/S. -prodigieuse/W.() -prodigieusement -prodigue/S. -prodiguer/a0a+() -prodrome/S. -prodromique/S. -productible/S. -production/S. -productique/S. -productive/F.() -productivisme/S. -productiviste/S. -productivité/S. -productrice/F.() -produire/yM() -produit/S. -produite/F.() -proéminence/S. -proéminente/F.() -prof/S. -profanation/S. -profanatrice/F.() -profane/S. -profanée/F.() -profaner/a0a+() -proférée/F.() -proférer/c0a+() -profès -professe/S. -professée/F.() -professer/a0a+() -professeure/F.() -profession/S. -professionnalisation/S. -professionnalisée/F.() -professionnaliser/a0a+() -professionnalisme/S. -professionnelle/F.() -professionnellement -professorale/W.() -professorat/S. -profil/S. -profilage/S. -profilée/F.() -profiler/a0a+() -profit/S. -profitabilité/S. -profitable/S. -profitablement -profiter/a0() -profiterole/S. -profiteuse/F.() -profonde/F.() -profondément -profondeur/S. -profuse/F.() -profusément -profusion/S. -progénitrice/F.() -progéniture/S. -progestative/F.() -progestérone/S. -progiciel/S. -proglottis -prognathe/S. -prognathisme/S. -programmable/S. -programmation/S. -programmatique/S. -programmatiquement -programmatrice/F.() -programme/S. -programmée/F.() -programmer/a0a+() -programmeuse/F.() -programmiste/S. -progrès -progresser/a0() -progression/S. -progressisme/S. -progressiste/S. -progressive/F.() -progressivement -progressivité/S. -prohibée/F.() -prohiber/a0a+() -prohibition/S. -prohibitionnisme/S. -prohibitionniste/S. -prohibitive/F.() -proie/S. -projecteur/S. -projectile/S. -projection/S. -projectionniste/S. -projective/F.() -projectivement -projectivisée/F.() -projecture/S. -projet/S. -projetable/S. -projetée/F.() -projeter/d0a+() -projeteur/S. -prolactine/S. -prolamine/S. -prolan/S. -prolapsus -prolégomènes -prolepse/S. -prolétaire/S. -prolétariat/S. -prolétarienne/F.() -prolétarisation/S. -prolétariser/a0a+() -prolifération/S. -proliférer/c0() -prolificité/S. -prolifique/S. -prolixe/S. -prolixité/S. -prolo/S. -prologue/S. -prolongateur/S. -prolongation/S. -prolongeable/S. -prolongée/F.() -prolongement/S. -prolonger/a0a+() -promenade/S. -promener/b0a+() -promeneuse/F.() -promenoir/S. -promesse/S. -prométhéenne/F.() -prométhéum/S. -prometteuse/F.() -promettre/vA() -promiscuité/S. -promise/F.() -promo/S. -promontoire/S. -promotion/S. -promotionnaire/S. -promotionnelle/F.() -promotionner/a0a+() -promotrice/F.() -promouvoir/pH() -prompte/F.() -promptement -prompteur/S. -promptitude/S. -promue/F.() -promulgation/S. -promulguée/F.() -promulguer/a0a+() -pronaos -pronation/S. -pronatrice/F.() -prônée/F.() -prôner/a0a+() -prôneuse/F.() -pronom/S. -pronominale/W.() -pronominalement -prononçable/S. -prononcée/F.() -prononcer/a0a+() -prononciation/S. -pronostic/S. -pronostiquée/F.() -pronostiquer/a0a+() -pronostiqueuse/F.() -pronunciamiento/S. -propagande/S. -propagandiste/S. -propagation/S. -propagatrice/F.() -propagée/F.() -propager/a0a+() -propagule/S. -propanal/S. -propane/S. -propanier/S. -propanoïque/S. -proparoxyton/S. -propective/S. -propédeute/S. -propédeutique/S. -propène/S. -propension/S. -propergol/S. -propérispomène/S. -propharmacienne/F.() -prophase/S. -prophète/S. -prophétesse/S. -prophétie/S. -prophétique/S. -prophétiquement -prophétisée/F.() -prophétiser/a0a+() -prophétisme/S. -prophylactique/S. -prophylaxie/S. -propice/S. -propionique/S. -propitiation/S. -propitiatoire/S. -propolis -proportion/S. -proportionnalité/S. -proportionnée/F.() -proportionnelle/F.() -proportionnellement -proportionner/a0a+() -propos -proposable/S. -proposée/F.() -proposer/a0a+() -proposition/S. -propositionnelle/F.() -propre/S. -propre-à-rien -proprement -propres-à-rien -propreté/S. -propréteur/S. -proprette/F.() -propréture/S. -propriétaire/S. -propriété/S. -proprio/S. -proprioceptive/F.() -propulsée/F.() -propulser/a0a+() -propulseur/S. -propulsion/S. -propulsive/F.() -propylée/S. -propylène/S. -prorata -prorogation/S. -prorogative/F.() -prorogée/F.() -proroger/a0a+() -prosaïque/S. -prosaïquement -prosaïsme/S. -prosateur/S. -proscenium/S. -proscripteur/S. -proscription/S. -proscrire/y1() -proscrite/F.() -prose/S. -prosecteur/S. -prosectorat/S. -prosélyte/S. -prosélytisme/S. -prosimien/S. -prosociale/W.() -prosodie/S. -prosodier/a0a+() -prosodique/S. -prosopopée/S. -prospect/S. -prospectée/F.() -prospecter/a0a+() -prospection/S. -prospective/F.() -prospectrice/F.() -prospectus -prospérer/c0() -prospérité/S. -prostaglandine/S. -prostate/S. -prostatectomie/S. -prostatique/S. -prostatisme/S. -prosternation/S. -prosternée/F.() -prosternement/S. -prosterner/a0a+() -prosthèse/S. -prosthétique/S. -prostituée/F.() -prostituer/a0a+() -prostitution/S. -prostration/S. -prostrée/F.() -prostyle/S. -protactinium/S. -protagoniste/S. -protase/S. -prote/S. -protéase/S. -protection/S. -protectionnelle/F.() -protectionnisme/S. -protectionniste/S. -protectorat/S. -protectrice/F.() -protée/S. -protège-cahier/S. -protège-dents -protégée/F.() -protéger/c0a+() -protège-tibia/S. -protéide/S. -protéiforme/S. -protéine/S. -protéinée/F.() -protéinémie/S. -protéinurie/S. -protéique/S. -protèle/S. -protéolyse/S. -protéolytique/S. -protéome/S. -protéomique/S. -protérandrie/S. -protestante/F.() -protestantisme/S. -protestataire/S. -protestation/S. -protester/a0a+() -protêt/S. -prothalle/S. -prothèse/S. -prothésiste/S. -prothétique/S. -prothorax -prothrombine/S. -protide/S. -protidique/S. -protiste/S. -protistologie/S. -protistologue/S. -protocarbure/S. -protochlorure/S. -protococcus -protocolaire/S. -protocole/S. -protoétoile/S. -protogalaxie/S. -protogine/S. -protogynie/S. -protohistoire/S. -protohistorienne/F.() -protohistorique/S. -proto-industrialisation/S. -protomé/S. -proton/S. -protonéma/S. -protonique/S. -protonotaire/S. -protophyte/S. -protoplanétaire/S. -protoplanète/S. -protoplasme/S. -protoplasmique/S. -protoptère/S. -prototypage/S. -prototype/S. -protoxyde/S. -protozoaire/S. -protractile/S. -protubérance/S. -protubérante/F.() -protutrice/F.() -prou -proudhonienne/F.() -proue/S. -prouesse/S. -prouter/a0() -prouvable/S. -prouver/a0a+() -provéditeur/S. -provenance/S. -provençale/W.() -provende/S. -provenir/i0i+() -proverbe/S. -proverbiale/W.() -proverbialement -proverbialiser/a0a+() -providence/S. -providentialisme/S. -providentielle/F.() -providentiellement -provignage/S. -provignement/S. -provigner/a0a+() -provin/S. -province/S. -provincialat/S. -provinciale/W.() -provincialisme/S. -proviseure/F.() -provision/S. -provisionnée/F.() -provisionnelle/F.() -provisionner/a0a+() -provisoire/S. -provisoirement -provisorat/S. -provitamine/S. -provo/S. -provocante/F.() -provocation/S. -provocatrice/F.() -provoquée/F.() -provoquer/a0a+() -proxémique/S. -proxénète/S. -proxénétisme/S. -proximale/W.() -proximité/S. -proyer/S. -prude/S. -prudemment -prudence/S. -prudente/F.() -pruderie/S. -prud'homale/W.() -prud'homie/S. -prud'homme/S. -prudhommerie/S. -prudhommesque/S. -pruine/S. -prune/S. -pruneau/X. -prunelaie/S. -prunelée/S. -prunelle/S. -prunellier/S. -pruner -prunier/S. -prunus -prurigineuse/W.() -prurigo/S. -prurit/S. -prussiate/S. -prussienne/F.() -prussique/S. -prytane/S. -prytanée/S. -psallette/S. -psalliote/S. -psalmiste/S. -psalmodiée/F.() -psalmodier/a0a+() -psalmodique/S. -psaltérion/S. -psaume/S. -psautier/S. -pschent/S. -pschitt -pseudarthrose/S. -pseudo/S. -pseudobulbaire/S. -pseudoconvexe/S. -pseudoconvexité/S. -pseudocycle/S. -pseudodifférentielle/F.() -pseudofécondation/S. -pseudogroupe/S. -pseudo-intégrable/S. -pseudomembrane/S. -pseudomembraneuse/W.() -pseudonévroptère/S. -pseudonyme/S. -pseudopode/S. -pseudoriemannienne/F.() -pseudosection/S. -psi -psitt -psittacisme/S. -psittacose/S. -psoas -psoque/S. -psoriasis -pst -psy/S. -psychanalyse/S. -psychanalysée/F.() -psychanalyser/a0a+() -psychanalyste/S. -psychanalytique/S. -psychasthénie/S. -psyché/S. -psychédélique/S. -psychédélisme/S. -psychiatre/S. -psychiatrie/S. -psychiatrique/S. -psychiatrisée/F.() -psychiatriser/a0a+() -psychique/S. -psychiquement -psychisme/S. -psychoanaleptique/S. -psychobiologie/S. -psychochirurgie/S. -psychocritique/S. -psychodramatique/S. -psychodrame/S. -psychodynamique/S. -psychodysleptique/S. -psychoéducation/S. -psychoéducative/F.() -psychoéducatrice/F.() -psycholeptique/S. -psycholinguistique/S. -psychologie/S. -psychologique/S. -psychologiquement -psychologiser/a0a+() -psychologisme/S. -psychologue/S. -psychométrie/S. -psychométrique/S. -psychomotrice/F.() -psychomotricienne/F.() -psychomotricité/S. -psychonévrose/S. -psychopathe/S. -psychopathie/S. -psychopathologie/S. -psychopathologique/S. -psychopédagogie/S. -psychopharmacologie/S. -psychophysiologie/S. -psychophysiologique/S. -psychophysique/S. -psychopompe/S. -psychorigide/S. -psychorigidité/S. -psychose/S. -psychosensorielle/F.() -psycho-sensori-motrice/F.() -psychosociale/W.() -psychosociologie/S. -psychosomatique/S. -psychotechnicienne/F.() -psychotechnique/S. -psychothérapeute/S. -psychothérapie/S. -psychotique/S. -psychotrope/S. -pt/S. -pt/||-- -ptéridophyte/S. -ptérodactyle/S. -ptérygotus -ptolémaïque/S. -ptomaïne/S. -ptôse/S. -ptôsis -ptyaline/S. -ptyalisme/S. -puante/F.() -puanteur/S. -pub/S. -pubère/S. -pubertaire/S. -puberté/S. -pubescence/S. -pubescente/F.() -pubienne/F.() -pubis -publiable/S. -public/S. -publicain/S. -publication/S. -publiciser/a0a+() -publiciste/S. -publicitaire/S. -publicité/S. -publiée/F.() -publier/a0a+() -publi-information/S. -publipostage/S. -publique/S. -publiquement -publireportage/S. -puccinia/S. -puccinie/S. -puce/S. -puceau/X. -pucelage/S. -pucelle/S. -puceron/S. -puche/S. -pucheux -pucier/S. -pudding/S. -puddlage/S. -puddler/a0a+() -puddleur/S. -pudeur/S. -pudibonde/F.() -pudibonderie/S. -pudicité/S. -pudique/S. -pudiquement -puer/a0a+() -puéricultrice/S. -puériculture/S. -puérile/F.() -puérilement -puérilisme/S. -puérilité/S. -puerpérale/W.() -puffin/S. -pugilat/S. -pugiliste/S. -pugilistique/S. -pugnace/S. -pugnacité/S. -puînée/F.() -puisage/S. -puisard/S. -puisatier/S. -puisement/S. -puiser/a0a+() -puisette/S. -puisque -puissamment -puissance/S. -puissante/F.() -puits -pulicaire/S. -pull/S. -pullman/S. -pullorose/S. -pull-over/S. -pullulante/F.() -pullulation/S. -pullulement/S. -pulluler/a0() -pulmonaire/S. -pulpaire/S. -pulpe/S. -pulpectomie/S. -pulpeuse/W.() -pulque/S. -pulsante/F.() -pulsar/S. -pulsation/S. -pulsative/F.() -pulsée/F.() -pulser/a0a+() -pulsion/S. -pulsionnelle/F.() -pulsoréacteur/S. -pultacée/F.() -pulvérin/S. -pulvérisable/S. -pulvérisateur/S. -pulvérisation/S. -pulvérisée/F.() -pulvériser/a0a+() -pulvériseur/S. -pulvérulence/S. -pulvérulente/F.() -puma/S. -puna/S. -punaise/S. -punaiser/a0a+() -punch/S. -puncheur/S. -punching-ball/S. -puncture/S. -punie/F.() -punique/S. -punir/f0f+() -punissable/S. -punition/S. -punitive/F.() -punk/S. -puntarelle/S. -puntillero/S. -pupazzo/S. -pupe/S. -pupillaire/S. -pupillarité/S. -pupille/S. -pupinisation/S. -pupitre/S. -pupitreuse/F.() -pure/F.() -pureau/X. -purée/S. -purement -pureté/S. -purgation/S. -purgative/F.() -purgatoire/S. -purge/S. -purgée/F.() -purgeoir/S. -purger/a0a+() -purgeur/S. -purifiante/F.() -purification/S. -purificatoire/S. -purificatrice/F.() -purifiée/F.() -purifier/a0a+() -purin/S. -purine/S. -purique/S. -purisme/S. -puriste/S. -puritaine/F.() -puritanisme/S. -purot/S. -purotin/S. -purpura/S. -purpurine/F.() -pur-sang -purulence/S. -purulente/F.() -puseyisme/S. -pusillanime/S. -pusillanimité/S. -pustule/S. -pustuleuse/W.() -putain/S. -putassassière/F.() -putative/F.() -pute/S. -putier/S. -putiet/S. -putois -putréfaction/S. -putréfiable/S. -putréfiée/F.() -putréfier/a0a+() -putrescence/S. -putrescente/F.() -putrescibilité/S. -putrescible/S. -putride/S. -putridité/S. -putsch/S. -putschiste/S. -putt/S. -putter/S. -putter/a0() -putting/S. -putto/S. -puy/S. -puzzle/S. -px/||-- -pycnogonide/S. -pycnomètre/S. -pycnose/S. -pyélite/S. -pygargue/S. -pygmée/S. -pyjama/S. -pylône/S. -pylore/S. -pylorique/S. -pyodermite/S. -pyogène/S. -pyorrhée/S. -pyracanthe/S. -pyrale/S. -pyramidale/W.() -pyramide/S. -pyramidée/F.() -pyramider/a0() -pyramidion/S. -pyrène/S. -pyrénéenne/F.() -pyrénéite/S. -pyrénomycète/S. -pyrèthre/S. -pyrex -pyrexie/S. -pyridoxine/S. -pyrimidine/S. -pyrimidique/S. -pyrite/S. -pyriteuse/W.() -pyroclastique/S. -pyroélectricité/S. -pyroélectrique/S. -pyrogallique/S. -pyrogallol/S. -pyrogénation/S. -pyrogène/S. -pyrographe/S. -pyrogravée/F.() -pyrograver/a0a+() -pyrograveuse/F.() -pyrogravure/S. -pyroligneuse/W.() -pyrolusite/S. -pyrolyse/S. -pyromane/S. -pyromanie/S. -pyromètre/S. -pyrométrie/S. -pyrométrique/S. -pyrophore/S. -pyrophosphorique/S. -pyrophyte/S. -pyroscaphe/S. -pyrosis -pyrotechnicienne/F.() -pyrotechnie/S. -pyrotechnique/S. -pyroxène/S. -pyroxénite/S. -pyroxylée/F.() -pyrrhique/S. -pyrrhonienne/F.() -pyrrhonisme/S. -pyrrhotite/S. -pyrrole/S. -pyrrolique/S. -pythagoricienne/F.() -pythagorique/S. -pythagorisme/S. -pythie/S. -pythienne/F.() -pythique/S. -python/S. -pythonisse/S. -pyurie/S. -pyxide/S. -pz/||-- -q -qanat/S. -qatarienne/F.() -quadragénaire/S. -quadragésimale/W.() -quadragésime/S. -quadrangle/S. -quadrangulaire/S. -quadrant/S. -quadratin/S. -quadratique/S. -quadrature/S. -quadrette/S. -quadricentenaire/S. -quadriceps -quadrichromie/S. -quadricycle/S. -quadriennale/W.() -quadrifide/S. -quadrige/S. -quadrilatère/S. -quadrilingue/S. -quadrilinguisme/S. -quadrillage/S. -quadrille/S. -quadrillée/F.() -quadriller/a0a+() -quadrillion/S. -quadrilobe/S. -quadrilobée/F.() -quadrilogie/S. -quadrimoteur/S. -quadripartie/F.() -quadripartite/S. -quadriphonie/S. -quadripôle/S. -quadrique/S. -quadriréacteur/S. -quadrirème/S. -quadrisyllabe/S. -quadrisyllabique/S. -quadrivalence/S. -quadrivalente/F.() -quadrumane/S. -quadrupède/S. -quadruple/S. -quadruplée/F.() -quadruplement/S. -quadrupler/a0a+() -quadruplet/S. -quadruplex -quai/S. -quaker/S. -quakeresse/S. -qualifiable/S. -qualifiante/F.() -qualification/S. -qualificative/F.() -qualifiée/F.() -qualifier/a0a+() -qualitative/F.() -qualitativement -qualité/S. -quand -quant -quant-à-soi -quantième/S. -quantifiable/S. -quantificateur/S. -quantification/S. -quantifiée/F.() -quantifier/a0a+() -quantile/S. -quantique/S. -quantitative/F.() -quantitativement -quantité/S. -quantum/I. -quarantaine/S. -quarante -quarante-cinq -quarante-deux -quarante-et-un -quarante-huit -quarantenaire/S. -quarante-neuf -quarante-quatre -quarante-sept -quarante-six -quarante-trois -quarantième/S. -quarderonner/a0a+() -quark/S. -quarrer/a0a+() -quartager/a0a+() -quartanier/S. -quartation/S. -quartaut/S. -quarte/F.() -quarté/S. -quartefeuille/S. -quartenier/S. -quarter/a0a+() -quarteronne/F.() -quartet/S. -quartette/S. -quartidi/S. -quartier/S. -quartier-maître -quartiers-maîtres -quartile/S. -quartique/S. -quart-monde -quarto -quarts-mondes -quartz -quartzeuse/W.() -quartzifère/S. -quartzite/S. -quasar/S. -quasi -quasi/S. -quasi-contrat/S. -quasi-cristal/X. -quasi-délit/S. -quasiment -quasimodo/S. -quasi-monnaie/S. -quassia/S. -quassier/S. -quassine/S. -quater -quaternaire/S. -quaterne/S. -quaternion/S. -quatorze -quatorzième/S. -quatorzièmement -quatrain/S. -quatre -quatre-de-chiffre -quatre-épices -quatre-feuilles -quatre-mâts -quatre-quarts -quatre-saisons -quatre-temps -quatre-vingt/S. -quatre-vingt-cinq -quatre-vingt-deux -quatre-vingt-dix -quatre-vingt-dix-huit -quatre-vingt-dix-neuf -quatre-vingt-dix-sept -quatre-vingt-douze -quatre-vingt-huit -quatre-vingtième/S. -quatre-vingt-neuf -quatre-vingt-onze -quatre-vingt-quatorze -quatre-vingt-quatre -quatre-vingt-quinze -quatre-vingt-seize -quatre-vingt-sept -quatre-vingt-six -quatre-vingt-treize -quatre-vingt-trois -quatre-vingt-un -quatrième/S. -quatrièmement -quattrocento -quatuor/S. -qubit/S. -que -québécisme/S. -québécoise/F.() -quebracho/S. -quelconque/S. -quelle/F.() -quelque/S. -quelquefois -quelques-unes -quelques-uns -quelqu'un -quelqu'une -quémande/S. -quémandée/F.() -quémander/a0a+() -quémandeuse/F.() -qu'en-dira-t-on -quenelle/S. -quenotte/S. -quenouille/S. -quéquette/S. -quérable/S. -quercitrine/S. -quercitron/S. -querelle/S. -quereller/a0a+() -querelleuse/F.() -quérir -quérulence/S. -quérulente/F.() -questeur/S. -question/S. -questionnaire/S. -questionnée/F.() -questionnement/S. -questionner/a0a+() -questionneuse/F.() -questure/S. -quétaine/S. -quétainerie/S. -quête/S. -quêter/a0a+() -quêteuse/F.() -quetsche/S. -quetschier/S. -quetter/a0a+() -quetzal/S. -quetzales -queue/S. -queue-d'aronde -queue-de-cheval -queue-de-cochon -queue-de-morue -queue-de-pie -queue-de-rat -queue-de-renard -queues-d'aronde -queues-de-cheval -queues-de-cochon -queues-de-morue -queues-de-pie -queues-de-rat -queues-de-renard -queusot/S. -queuter/a0a+() -queux -qui -quiche/S. -quichenotte/S. -quichua/S. -quiconque -quidam/S. -quiddité/S. -quiescence/S. -quiète/F.() -quiétisme/S. -quiétiste/S. -quiétude/S. -quignon/S. -quille/S. -quiller/a0a+() -quilleuse/F.() -quillier/S. -quillon/S. -quimper/a0() -quinaire/S. -quinaude/F.() -quincaillerie/S. -quincaillière/F.() -quinconce/S. -quine/S. -quinée/F.() -quinine/S. -quinoa/S. -quinoléine/S. -quinquagénaire/S. -quinquagésime/S. -quinquennale/W.() -quinquennat/S. -quinquet/S. -quinquina/S. -quintaine/S. -quintal/X. -quinte/F.() -quinté/S. -quintefeuille/S. -quintessence/S. -quintessenciée/F.() -quintessencier/a0a+() -quintet/S. -quintette/S. -quinteuse/W.() -quintidi/S. -quintillion/S. -quinto -quintologie/S. -quintuple/S. -quintuplée/F.() -quintupler/a0a+() -quintuplet/S. -quinzaine/S. -quinze -quinzième/S. -quinzièmement -quinzomadaire/S. -quipou/S. -quiproquo/S. -quirite/S. -quiscale/S. -quittance/S. -quittancer/a0a+() -quitter/a0a+() -quitus -qui-vive -quiz -quo -quoi -quoique -quolibet/S. -quorum/S. -quota/S. -quote-part -quotes-parts -quotidienne/F.() -quotidiennement -quotidienneté/S. -quotient/S. -quotité/S. -quotter/a0() -r -ra/S. -rabâchage/S. -rabâcher/a0a+() -rabâcheuse/F.() -rabais -rabaissement/S. -rabaisser/a0a+() -raban/S. -rabane/S. -rabanter/a0a+() -rabat/S. -rabat-eau -rabat-joie -rabattable/S. -rabattage/S. -rabattant/S. -rabattante/F.() -rabattement/S. -rabatteur/S. -rabatteuse/F.() -rabattoir/S. -rabattre/uA() -rabattue/F.() -rabat-vent -rabbi/S. -rabbin/S. -rabbinat/S. -rabbinique/S. -rabbinisme/S. -rabdomancie/S. -rabelaisienne/F.() -rabiauter -rabibochage/S. -rabibocher/a0a+() -rabiot/S. -rabiotée/F.() -rabioter/a0a+() -rabique/S. -rabistoquer/a0a+() -râble/S. -râblée/F.() -râbler/a0a+() -râblure/S. -rabonnir/f0f+() -rabot/S. -rabotage/S. -rabotée/F.() -rabotement/S. -raboter/a0a+() -raboteuse/F.() -raboteuse/W.() -rabougrie/F.() -rabougrir/f0f+() -rabougrissement/S. -rabouillère/S. -rabouilleuse/F.() -raboutage/S. -rabouter/a0a+() -rabrouée/F.() -rabrouement/S. -rabrouer/a0a+() -racabouillir -racaille/S. -raccommodable/S. -raccommodage/S. -raccommodée/F.() -raccommodement/S. -raccommoder/a0a+() -raccommodeuse/F.() -raccompagner/a0a+() -raccord/S. -raccordement/S. -raccorder/a0a+() -raccourcie/F.() -raccourcir/f0f+() -raccourcissement/S. -raccoutrer/a0a+() -raccoutumer/a0a+() -raccroc/S. -raccrochage/S. -raccrocher/a0a+() -raccrocheuse/F.() -raccuser/a0() -raccuspoter/a0() -race/S. -racée/F.() -racémique/S. -racer/S. -rachat/S. -rachetable/S. -rachetée/F.() -racheter/b0a+() -rachialgie/S. -rachianesthésie/S. -rachidienne/F.() -rachis -rachitique/S. -rachitisme/S. -raciale/W.() -racialement -racialisme/S. -racialiste/S. -racinage/S. -racinaire/S. -racinal/X. -racine/S. -racinée/F.() -raciner/a0a+() -racinienne/F.() -raciologie/S. -racisme/S. -raciste/S. -racket/S. -rackettée/F.() -racketter/a0a+() -racketteuse/F.() -raclage/S. -racle/S. -raclée/S. -raclement/S. -racler/a0a+() -raclette/S. -racleuse/F.() -racloir/S. -raclure/S. -racolage/S. -racoler/a0a+() -racoleuse/F.() -racontable/S. -racontar/S. -racontée/F.() -raconter/a0a+() -raconteuse/F.() -racornie/F.() -racornir/f0f+() -racornissement/S. -racrapoter/a0a+() -rad/||-- -radar/S. -radariste/S. -rade/S. -radeau/X. -rader/a0a+() -radeuse/S. -radiaire/S. -radiale/W.() -radialement -radian/S. -radiance/S. -radiant/S. -radiante/F.() -radiateur/S. -radiation/S. -radiative/F.() -radicalaire/S. -radicale/W.() -radicalement -radicale-socialiste -radicales-socialistes -radicalisation/S. -radicalisée/F.() -radicaliser/a0a+() -radicalisme/S. -radicalité/S. -radical-socialisme -radical-socialiste -radicande/S. -radicante/F.() -radicaux-socialistes -radicelle/S. -radiculaire/S. -radicule/S. -radiée/F.() -radier/a0a+() -radiesthésie/S. -radiesthésiste/S. -radieuse/W.() -radieusement -radine/F.() -radiner/a0a+() -radinerie/S. -radio/S. -radioactive/F.() -radioactivité/S. -radioalignement/S. -radioaltimètre/S. -radioamatrice/F.() -radioastronome/S. -radioastronomie/S. -radiobalisage/S. -radiobalise/S. -radiobaliser/a0a+() -radioborne/S. -radiocarbone/S. -radiocassette/S. -radiochimie/S. -radiochimique/S. -radiochimiste/S. -radiochronologie/S. -radiocobalt/S. -radiocommunication/S. -radiocompas -radioconducteur/S. -radiocristallographie/S. -radiodiagnostic/S. -radiodiffusée/F.() -radiodiffuser/a0a+() -radiodiffuseur/S. -radiodiffusion/S. -radioélectricité/S. -radioélectrique/S. -radiofréquence/S. -radiogoniomètre/S. -radiogoniométrie/S. -radiogoniométrique/S. -radiogramme/S. -radiographie/S. -radiographiée/F.() -radiographier/a0a+() -radiographique/S. -radioguidage/S. -radioguider/a0a+() -radio-isotope/S. -radiolaire/S. -radiolésion/S. -radiologie/S. -radiologique/S. -radiologiste/S. -radiologue/S. -radiolyse/S. -radiométallographie/S. -radiomètre/S. -radiométrie/S. -radiométrique/S. -radionavigant/S. -radionavigante/F.() -radionavigation/S. -radionécrose/S. -radionucléide/S. -radiophare/S. -radiophonie/S. -radiophonique/S. -radiophotographie/S. -radioprotection/S. -radioreportage/S. -radioreporter/S. -radioscope/S. -radioscoper/a0a+() -radioscopie/S. -radiosondage/S. -radiosonde/S. -radio-taxi/S. -radiotechnique/S. -radiotélégraphie/S. -radiotélégraphier/a0a+() -radiotélégraphique/S. -radiotélégraphiste/S. -radiotéléphone/S. -radiotéléphonie/S. -radiotéléphoniste/S. -radiotélescope/S. -radiotélévisée/F.() -radiothérapeute/S. -radiothérapie/S. -radis -radium/S. -radius -radja/S. -radôme/S. -radon/S. -radotage/S. -radoter/a0() -radoteuse/F.() -radoub/S. -radouber/a0a+() -radoucir/f0f+() -radoucissement/S. -rafale/S. -rafantir/a0() -raffermir/f0f+() -raffermissement/S. -raffinage/S. -raffinée/F.() -raffinement/S. -raffiner/a0a+() -raffinerie/S. -raffineuse/F.() -rafflesia/S. -rafflésie/S. -raffoler/a0() -raffut/S. -raffûter/a0a+() -rafiot/S. -rafistolage/S. -rafistolée/F.() -rafistoler/a0a+() -rafle/S. -rafler/a0a+() -rafraîchie/F.() -rafraîchir/f0f+() -rafraîchissante/F.() -rafraîchissement/S. -raft/S. -rafting/S. -ragaillardir/f0f+() -rage/S. -rageante/F.() -rager/a0() -rageuse/F.() -rageusement -raggamuffin/S. -raglan/S. -ragondin/S. -ragot/S. -ragoter/a0() -ragougnasse/S. -ragoût/S. -ragoutante/F.() -ragoûtante/F.() -ragoûter/a0a+() -ragrafer/a0a+() -ragréer/a0a+() -ragréeuse/F.() -ragtime/S. -rague/S. -raguer/a0() -rahat-lokoum/S. -rahat-loukoum/S. -rai/S. -raïa/S. -raide/F.() -rai-de-cœur -raidement -raider/S. -raideur/S. -raidie/F.() -raidillon/S. -raidir/f0f+() -raidissement/S. -raidisseur/S. -raifort/S. -rail/S. -raille/S. -raillée/F.() -railler/a0a+() -raillerie/S. -railleuse/F.() -railleusement -rail-route -rainage/S. -raine/S. -rainer/a0a+() -raineter/d0a+() -rainette/S. -rainurage/S. -rainure/S. -rainurée/F.() -rainurer/a0a+() -raiponce/S. -raire/wM() -rais-de-cœur -raisin/S. -raisiné/S. -raison/S. -raisonnable/S. -raisonnablement -raisonnée/F.() -raisonnement/S. -raisonner/a0a+() -raisonneuse/F.() -raja/S. -rajeunie/F.() -rajeunir/f0f+() -rajeunissante/F.() -rajeunissement/S. -rajout/S. -rajouter/a0a+() -rajustement/S. -rajuster/a0a+() -raki/S. -râlante/F.() -râle/S. -râlement/S. -ralentie/F.() -ralentir/f0f+() -ralentissement/S. -ralentisseur/S. -râler/a0() -râleuse/F.() -ralingue/S. -ralinguer/a0a+() -ralléger/c0() -ralliée/F.() -ralliement/S. -rallier/a0a+() -rallonge/S. -rallongement/S. -rallonger/a0a+() -rallumer/a0a+() -rallye/S. -ramadan/S. -ramage/S. -ramagée/F.() -ramager/a0a+() -ramailler/a0a+() -ramander/a0a+() -ramarrer/a0a+() -ramassage/S. -ramasse/S. -ramasse-couverts -ramassée/F.() -ramasse-feuilles -ramasse-miettes -ramasse-monnaie -ramasse-pâtes -ramasse-poussière -ramasser/a0a+() -ramassette/S. -ramasseuse/F.() -ramassis -ramastiquer/a0a+() -rambarde/S. -rambiner/a0() -rambour/S. -ramdam/S. -rame/S. -rameau/X. -ramée/F.() -ramée/S. -ramender/a0a+() -ramendeuse/F.() -ramener/b0a+() -ramequin/S. -ramer/a0a+() -ramereau/X. -ramerot/S. -ramescence/S. -rameter/d0() -ramette/S. -rameuse/F.() -rameuse/W.() -rameutée/F.() -rameuter/a0a+() -rami/S. -ramie/S. -ramier/S. -ramification/S. -ramifiée/F.() -ramifier/a0a+() -ramille/S. -ramingue/S. -ramollie/F.() -ramollir/f0f+() -ramollissante/F.() -ramollissement/S. -ramollo/S. -ramonage/S. -ramoner/a0a+() -ramoneuse/F.() -rampante/F.() -rampe/S. -rampeau/X. -rampement/S. -ramper/a0() -ramponeau/X. -ramponneau/X. -ramure/S. -ranatre/S. -rancard/S. -rancarder/a0a+() -rancart/S. -rance/S. -rancescible/S. -ranch/S. -ranche/S. -rancher/S. -rancie/F.() -rancio/S. -rancir/f0f+() -rancissement/S. -rancissure/S. -rancœur/S. -rançon/S. -rançonnée/F.() -rançonnement/S. -rançonner/a0a+() -rancune/S. -rancunière/F.() -rand/S. -randomisation/S. -randonnée/S. -randonner/a0() -randonneuse/F.() -rang/S. -rangée/F.() -rangée/S. -rangement/S. -ranger/a0a+() -rangeuse/F.() -rani/S. -ranimée/F.() -ranimer/a0a+() -ranz -raouster -raout/S. -rap/S. -rapace/S. -rapacité/S. -râpage/S. -rapapilloter/a0a+() -rapatriée/F.() -rapatriement/S. -rapatrier/a0a+() -rapatronnage/S. -râpe/S. -râpée/F.() -râper/a0a+() -râperie/S. -rapetassage/S. -rapetasser/a0a+() -rapetissée/F.() -rapetissement/S. -rapetisser/a0a+() -râpeuse/W.() -raphia/S. -rapiate/F.() -rapide/S. -rapidement -rapidité/S. -rapiéçage/S. -rapiécée/F.() -rapiécer/c0a+() -rapiéceter/d0a+() -rapière/S. -rapin/S. -rapine/S. -rapiner/a0() -rapinerie/S. -rapipoter/a0() -raplatie/F.() -raplatir/f0f+() -rapointir/f0f+() -rappareiller/a0a+() -rappariement/S. -rapparier/a0a+() -rappée/F.() -rappel/S. -rappelable/S. -rappelée/F.() -rappeler/d0a+() -rapper/a0() -rappeuse/F.() -rappliquer/a0() -rappointir/f0f+() -rapport/S. -rapportable/S. -rapportage/S. -rapportée/F.() -rapporter/a0a+() -rapporteuse/F.() -rapprendre -rapprochée/F.() -rapprochement/S. -rapprocher/a0a+() -rapproprier/a0a+() -rapprovisionner/a0a+() -rapt/S. -râpure/S. -raquer/a0a+() -raquette/S. -rare/S. -raréfaction/S. -raréfiée/F.() -raréfier/a0a+() -rarement -rarescente/F.() -rareté/S. -rarissime/S. -ras -rasade/S. -rasage/S. -rasance/S. -rasante/F.() -rascasse/S. -rase/F.() -rasée/F.() -rase-mottes -rase-pet -raser/a0a+() -rasette/S. -raseuse/F.() -rash/S. -rasibus -rasoir/S. -raspoutitsa/S. -rassasiée/F.() -rassasiement/S. -rassasier/a0a+() -rassemblée/F.() -rassemblement/S. -rassembler/a0a+() -rassembleuse/F.() -rasseoir/pS() -rassérénée/F.() -rasséréner/c0a+() -rassie/F.() -rassir/f0f+() -rassise/F.() -rassortiment/S. -rassortir -rassurante/F.() -rassurée/F.() -rassurer/a0a+() -rasta/S. -rastafarisme/S. -rastaquouère/S. -raster/S. -ratafia/S. -ratage/S. -rataplan -ratatinée/F.() -ratatiner/a0a+() -ratatouille/S. -ratatouiller/a0() -rate/F.() -râteau/X. -ratée/F.() -ratel/S. -râtelage/S. -râteler/d0a+() -râteleuse/F.() -râtelier/S. -râtelures -rater/a0a+() -ratiboisée/F.() -ratiboiser/a0a+() -ratichon/S. -ratière/F.() -ratification/S. -ratifiée/F.() -ratifier/a0a+() -ratinage/S. -ratiner/a0a+() -ratio/S. -ratiocination/S. -ratiociner/a0() -ratiocineur/S. -ration/S. -rational/X. -rationalisation/S. -rationalisée/F.() -rationaliser/a0a+() -rationalisme/S. -rationaliste/S. -rationalité/S. -rationnaire/S. -rationnée/F.() -rationnelle/F.() -rationnellement -rationnement/S. -rationner/a0a+() -ratissage/S. -ratissée/F.() -ratisser/a0a+() -ratissoire/S. -raton/S. -ratonnade/S. -rattachable/S. -rattachement/S. -rattacher/a0a+() -rattachiste/S. -rattrapable/S. -rattrapage/S. -rattraper/a0a+() -raturage/S. -rature/S. -raturée/F.() -raturer/a0a+() -rauchage/S. -raucheur/S. -raucité/S. -raugmenter/a0a+() -rauque/S. -rauquement/S. -rauquer/a0() -rauwolfia/S. -ravage/S. -ravagée/F.() -ravager/a0a+() -ravageuse/F.() -ravalée/F.() -ravalement/S. -ravaler/a0a+() -ravaleur/S. -ravaudage/S. -ravauder/a0a+() -ravaudeuse/F.() -rave/S. -ravelin/S. -ravenala/S. -ravenelle/S. -ravie/F.() -ravier/S. -ravière/S. -ravigotante/F.() -ravigote/S. -ravigoter/a0a+() -ravilir/f0f+() -ravine/F.() -ravinée/F.() -ravinement/S. -raviner/a0a+() -ravioli/S. -ravir/f0f+() -raviser/a0a+() -ravissante/F.() -ravissement/S. -ravisseuse/F.() -ravitaillée/F.() -ravitaillement/S. -ravitailler/a0a+() -ravitailleur/S. -ravivage/S. -raviver/a0a+() -ravoir -rayage/S. -rayée/F.() -rayer/a0a+() -rayère/S. -ray-grass -rayon/S. -rayonnage/S. -rayonnante/F.() -rayonnée/F.() -rayonnement/S. -rayonner/a0a+() -rayure/S. -raz -razzia/S. -razzier/a0a+() -ré -réabonnée/F.() -réabonnement/S. -réabonner/a0a+() -réabsorber/a0a+() -réabsorption/S. -réac/S. -réaccoutumer/a0a+() -réacheminement/S. -réacquérir/iK() -réacquise/F.() -réactance/S. -réaction/S. -réactionnaire/S. -réactionnelle/F.() -réactivation/S. -réactive/F.() -réactivée/F.() -réactiver/a0a+() -réactivité/S. -réactrice/F.() -réactualiser/a0a+() -réadaptation/S. -réadapter/a0a+() -réadmettre/vA() -réadmise/F.() -réadmission/S. -réadressage/S. -réaffectation/S. -réaffectée/F.() -réaffecter/a0a+() -réaffirmation/S. -réaffirmée/F.() -réaffirmer/a0a+() -réaffûter/a0a+() -réagir/f0() -réajustement/S. -réajuster/a0a+() -réale/W.() -réaléser/c0a+() -réalgar/S. -réalignement/S. -réalimentation/S. -réalimenter/a0a+() -réalisable/S. -réalisation/S. -réalisatrice/F.() -réalisée/F.() -réaliser/a0a+() -réalisme/S. -réaliste/S. -réalistement -réalité/S. -reality-show/S. -réaménagée/F.() -réaménagement/S. -réaménager/a0a+() -réamorçage/S. -réamorcée/F.() -réamorcer/a0a+() -réanalyser/a0a+() -réanimation/S. -réanimatrice/F.() -réanimer/a0a+() -réapparaître/wQ() -réapparition/S. -réapprendre/tF() -réapprentissage/S. -réappropriation/S. -réappropriée/F.() -réapproprier/a0a+() -réapprovisionnée/F.() -réapprovisionnement/S. -réapprovisionner/a0a+() -réargenter/a0a+() -réarmée/F.() -réarmement/S. -réarmer/a0a+() -réarrangement/S. -réarranger/a0a+() -réassigner/a0a+() -réassort/S. -réassortiment/S. -réassortir/f0f+() -réassumer/a0a+() -réassurance/S. -réattribuer/a0a+() -rebab/S. -rebaisser/a0() -rebander/a0a+() -rebaptisée/F.() -rebaptiser/a0a+() -rébarbative/F.() -rebâtie/F.() -rebâtir/f0f+() -rebattement/S. -rebattre/uA() -rebattue/F.() -rebec/S. -rebecter/a0a+() -rebelle/S. -rebeller/a0a+() -rébellion/S. -rébellionner -rebelote -rebiffer/a0a+() -rebiquer/a0() -reblanchir/f0f+() -reblochon/S. -reboisée/F.() -reboisement/S. -reboiser/a0a+() -rebond/S. -rebondie/F.() -rebondir/f0f+() -rebondissante/F.() -rebondissement/S. -rebonneter -rebord/S. -rebordée/F.() -reborder/a0a+() -rebouchage/S. -rebouchée/F.() -reboucher/a0a+() -rebouiser -rebours -reboutée/F.() -rebouter/a0a+() -rebouteuse/F.() -rebouteux -reboutonner/a0a+() -rebraguetter/a0a+() -rebrancher/a0a+() -rebroder/a0a+() -rebroussement/S. -rebrousse-poil -rebrousser/a0a+() -rebrûler/a0() -rebuffade/S. -rébus -rebut/S. -rebutante/F.() -rebuter/a0a+() -recacheter/d0a+() -recadrage/S. -recadrer/a0a+() -recalage/S. -recalcification/S. -recalcifier/a0a+() -récalcitrante/F.() -recalculée/F.() -recalculer/a0a+() -recalée/F.() -recaler/a0a+() -recalibrer/a0a+() -recapitalisation/S. -récapitulation/S. -récapitulative/F.() -récapituler/a0a+() -recarburation/S. -recarder/a0a+() -recarreler/d0a+() -recaser/a0a+() -recasquante/F.() -recauser/a0() -recéder/c0a+() -recel/S. -receler/b0a+() -receleuse/F.() -récemment -recensée/F.() -recensement/S. -recenser/a0a+() -recenseuse/F.() -recension/S. -récente/F.() -recentrage/S. -recentrée/F.() -recentrer/a0a+() -recépage/S. -recépée/S. -recéper/c0a+() -récépissé/S. -réceptacle/S. -réception/S. -réceptionnaire/S. -réceptionner/a0a+() -réceptionniste/S. -réceptive/F.() -réceptivité/S. -réceptrice/F.() -recercler/a0a+() -recès -récession/S. -récessive/F.() -recette/S. -recevabilité/S. -recevable/S. -receveuse/F.() -recevoir/pK() -recez -rechampir/f0f+() -réchampir/f0f+() -rechampissage/S. -réchampissage/S. -rechange/S. -rechanger/a0a+() -rechanter/a0a+() -rechapage/S. -rechapée/F.() -rechaper/a0a+() -réchapper/a0() -recharge/S. -rechargeable/S. -rechargée/F.() -rechargement/S. -recharger/a0a+() -rechasser/a0a+() -réchaud/S. -réchauffage/S. -réchauffante/F.() -réchauffée/F.() -réchauffement/S. -réchauffer/a0a+() -réchauffeur/S. -rechaussement/S. -rechausser/a0a+() -rêche/S. -recherche/S. -recherchée/F.() -rechercher/a0a+() -recherchiste/S. -rechigner/a0() -rechristianisée/F.() -rechristianiser/a0a+() -rechute/S. -rechuter/a0() -récidivante/F.() -récidive/S. -récidiver/a0() -récidivisme/S. -récidiviste/S. -récif/S. -récifale/W.() -récipiendaire/S. -récipient/S. -réciprocité/S. -réciproque/S. -réciproquement -réciproquer/a0a+() -récit/S. -récital/S. -récitante/F.() -récitatif/S. -récitation/S. -récitée/F.() -réciter/a0a+() -réclamation/S. -réclame/S. -réclamée/F.() -réclamer/a0a+() -reclaper/a0a+() -reclassée/F.() -reclassement/S. -reclasser/a0a+() -reclassification/S. -récliner/a0() -reclouer/a0a+() -reclure/xJ() -recluse/F.() -réclusion/S. -réclusionnaire/S. -recognition/S. -récognitive/F.() -recoiffer/a0a+() -recoin/S. -récolement/S. -récoler/a0a+() -recollage/S. -récollection/S. -recollement/S. -recoller/a0a+() -récollet/S. -recolorer/a0a+() -récoltante/F.() -récolte/S. -récoltée/F.() -récolter/a0a+() -récolteur/S. -recombinaison/S. -recommandable/S. -recommandation/S. -recommandé/S. -recommandée/F.() -recommander/a0a+() -recommencée/F.() -recommencement/S. -recommencer/a0a+() -recomparaître/wQ() -récompense/S. -récompensée/F.() -récompenser/a0a+() -recomposable/S. -recomposée/F.() -recomposer/a0a+() -recomposition/S. -recompresser/a0a+() -recomptée/F.() -recompter/a0a+() -réconciliable/S. -réconciliation/S. -réconciliatrice/F.() -réconciliée/F.() -réconcilier/a0a+() -recondamner/a0a+() -reconditionnement/S. -reconductible/S. -reconduction/S. -reconduire/yL() -reconfigurer/a0a+() -réconfort/S. -réconfortante/F.() -réconfortée/F.() -réconforter/a0a+() -recongélation/S. -recongelée/F.() -recongeler/b0a+() -reconnaissable/S. -reconnaissance/S. -reconnaissante/F.() -reconnaître/wQ() -reconnecter/a0a+() -reconnexion/S. -reconnue/F.() -reconquérante/F.() -reconquérir/iK() -reconquête/S. -reconquise/F.() -reconsidération/S. -reconsidérée/F.() -reconsidérer/c0a+() -reconsolidée/F.() -reconsolider/a0a+() -reconstituante/F.() -reconstituée/F.() -reconstituer/a0a+() -reconstitution/S. -reconstruction/S. -reconstructive/F.() -reconstructrice/F.() -reconstruire/yM() -reconstruite/F.() -recontacter/a0a+() -reconventionnelle/F.() -reconversion/S. -reconvertie/F.() -reconvertir/f0f+() -recopiage/S. -recopiée/F.() -recopier/a0a+() -recoquillée/F.() -recoquiller/a0a+() -record/S. -recordage/S. -recordée/F.() -recorder/a0a+() -recordman/S. -recordwoman/S. -recorriger/a0a+() -recors -recoucher/a0a+() -recoudre/xO() -recoupe/S. -recoupée/F.() -recoupement/S. -recouper/a0a+() -recoupette/S. -recouponner/a0a+() -recourbée/F.() -recourbement/S. -recourber/a0a+() -recourbure/S. -recourir/iD() -recours -recousue/F.() -recouverte/F.() -recouvrable/S. -recouvrage/S. -recouvrance/S. -recouvrante/F.() -recouvrée/F.() -recouvrement/S. -recouvrer/a0a+() -recouvrir/iC() -recracher/a0a+() -récré/S. -recréation/S. -récréation/S. -récréative/F.() -recréée/F.() -recréer/a0a+() -récréer/a0a+() -recrépir/f0f+() -recreuser/a0a+() -récriée/F.() -récrier/a0a+() -récrimination/S. -récriminatrice/F.() -récriminée/F.() -récriminer/a0() -récrire/y1() -recristallisation/S. -recristalliser/a0a+() -recroiser/a0a+() -recroître/wT() -recroller/a0() -recroquevillée/F.() -recroquevillement/S. -recroqueviller/a0a+() -recrû/S. -recrudescence/S. -recrudescente/F.() -recrue/F.() -recrutée/F.() -recrutement/S. -recruter/a0a+() -recruteuse/F.() -recta -rectale/W.() -rectangle/S. -rectangulaire/S. -rectifiable/S. -rectification/S. -rectificative/F.() -rectificatrice/F.() -rectifiée/F.() -rectifier/a0a+() -rectifieuse/F.() -rectiligne/S. -rectilinéaire/S. -rection/S. -rectite/S. -rectitude/S. -recto/S. -rectocolite/S. -rectorale/W.() -rectorat/S. -rectoscope/S. -rectoscopie/S. -rectrice/F.() -rectum/S. -reçue/F.() -recueil/S. -recueillement/S. -recueillie/F.() -recueillir/iR() -recuire/yL() -recuite/F.() -recul/S. -reculade/S. -reculée/F.() -reculement/S. -reculer/a0a+() -reculotter/a0a+() -récupérable/S. -récupération/S. -récupératrice/F.() -récupérée/F.() -récupérer/c0a+() -récurage/S. -récurée/F.() -récurer/a0a+() -récurrence/S. -récurrente/F.() -récursion/S. -récursive/F.() -récursivement -récursivité/S. -récursoire/S. -récusable/S. -récusation/S. -récusée/F.() -récuser/a0a+() -recyclable/S. -recyclage/S. -recyclée/F.() -recycler/a0a+() -rédaction/S. -rédactionnelle/F.() -rédactrice/F.() -redan/S. -reddition/S. -redécorer/a0a+() -redécoupage/S. -redécouper/a0a+() -redécouverte/F.() -redécouverte/S. -redécouvrir/iC() -redéfaire/wD() -redéfinie/F.() -redéfinir/f0f+() -redéfinition/S. -redemander/a0a+() -redémarrage/S. -redémarrer/a0() -redémolir/f0f+() -rédemption/S. -rédemptoriste/S. -rédemptrice/F.() -redent/S. -redentée/F.() -redéploiement/S. -redéployer/a0a+() -redescendre/tA() -redessiner/a0a+() -redevable/S. -redevance/S. -redevenir/i0i+() -redevoir/pC() -rédhibition/S. -rédhibitoire/S. -rédie/S. -rediffusée/F.() -rediffuser/a0a+() -rediffusion/S. -rédigée/F.() -rédiger/a0a+() -rédimée/F.() -redimensionnée/F.() -redimensionnement/S. -redimensionner/a0a+() -rédimer/a0a+() -redingote/S. -rédintégration/S. -redire/yC() -redirection/S. -rediriger/a0a+() -rediscuter/a0a+() -redisposer/a0a+() -redistribuée/F.() -redistribuer/a0a+() -redistribution/S. -redite/S. -redondance/S. -redondante/F.() -redondée/F.() -redonder/a0() -redonner/a0a+() -redorer/a0a+() -redorte/S. -redoublante/F.() -redoublée/F.() -redoublement/S. -redoubler/a0a+() -redoutable/S. -redoutablement -redoute/S. -redoutée/F.() -redouter/a0a+() -redoux -redressée/F.() -redressement/S. -redresser/a0a+() -redresseur/S. -réductase/S. -réductibilité/S. -réductible/S. -réduction/S. -réductionnisme/S. -réductionniste/S. -réductive/F.() -réductrice/F.() -réduire/yM() -réduit/S. -réduite/F.() -réduplication/S. -réduplicative/F.() -réduve/S. -rééchelonnement/S. -rééchelonner/a0a+() -réécouter/a0a+() -réécrire/y1() -réécrite/F.() -réécriture/S. -réédification/S. -réédifier/a0a+() -rééditer/a0a+() -réédition/S. -rééducation/S. -rééducatrice/F.() -rééduquée/F.() -rééduquer/a0a+() -réélection/S. -rééligible/S. -réélire/yB() -réelle/F.() -réellement -réélue/F.() -réembauche/S. -réembauchée/F.() -réembaucher/a0a+() -réémetteur/S. -réémettre/vA() -réémission/S. -réemploi/S. -réemployer/a0a+() -réemprunter/a0a+() -réencastrement/S. -réenchantement/S. -réenclencher/a0a+() -réengagement/S. -réengager/a0a+() -réenregistrable/S. -réenregistrement/S. -réensemencée/F.() -réensemencement/S. -réensemencer/a0a+() -réentendre -rééquilibrage/S. -rééquilibre/S. -rééquilibrée/F.() -rééquilibrer/a0a+() -rééquipement/S. -réer/a0() -réescomptable/S. -réescompte/S. -réescompter/a0a+() -réescompteur/S. -réessayage/S. -réessayer/a0a+() -réétudier/a0a+() -réévaluation/S. -réévaluée/F.() -réévaluer/a0a+() -réexamen/S. -réexaminée/F.() -réexaminer/a0a+() -réexpédiée/F.() -réexpédier/a0a+() -réexpédition/S. -réexportation/S. -réexporter/a0a+() -réf -refabriquer/a0a+() -refaçonner/a0a+() -réfaction/S. -refaire/wD() -refaite/F.() -réfection/S. -réfectoire/S. -refendeuse/F.() -refendre/tA() -refente/S. -référé/S. -référence/S. -référencée/F.() -référencement/S. -référencer/a0a+() -référendaire/S. -référendum/S. -référent/S. -référentielle/F.() -référer/c0a+() -refermentation/S. -refermer/a0a+() -refiler/a0a+() -refinancement/S. -refixer/a0a+() -réfléchie/F.() -réfléchir/f0f+() -réfléchissante/F.() -réflecteur/S. -réflective/F.() -réflectivité/S. -reflet/S. -refléter/c0a+() -refleurir/f0f+() -refleurissement/S. -reflex -réflexe/S. -réflexibilité/S. -réflexible/S. -réflexion/S. -réflexive/F.() -réflexivement -réflexivité/S. -réflexogène/S. -réflexogramme/S. -réflexologie/S. -réflexothérapie/S. -refluer/a0() -reflux -refondation/S. -refonder/a0a+() -refondre/tA() -refonte/S. -reforestation/S. -reforger/a0a+() -réformable/S. -reformatage/S. -réformatrice/F.() -réforme/S. -réformée/F.() -reformer/a0a+() -réformer/a0a+() -réformette/S. -réformisme/S. -réformiste/S. -reformulation/S. -reformuler/a0a+() -refouillement/S. -refouiller/a0a+() -refoulée/F.() -refoulement/S. -refouler/a0a+() -refouloir/S. -refourguée/F.() -refourguer/a0a+() -refourrer/a0a+() -refoutre -réfractaire/S. -réfractée/F.() -réfracter/a0a+() -réfraction/S. -réfractomètre/S. -réfractométrie/S. -réfractrice/F.() -refrain/S. -réfrangibilité/S. -réfrangible/S. -refrènement/S. -refréner/c0a+() -réfrigérante/F.() -réfrigérateur/S. -réfrigération/S. -réfrigérée/F.() -réfrigérer/c0a+() -réfringence/S. -réfringente/F.() -refroidie/F.() -refroidir/f0f+() -refroidissement/S. -refroidisseur/S. -refuge/S. -réfugiée/F.() -réfugier/a0a+() -refus -refusable/S. -refusée/F.() -refuser/a0a+() -refusion/S. -réfutabilité/S. -réfutable/S. -réfutation/S. -réfutée/F.() -réfuter/a0a+() -refuznik/S. -reg/S. -regagner/a0a+() -regain/S. -régal/S. -régalade/S. -régalage/S. -régale/F.() -régalec/S. -régalement/S. -régaler/a0a+() -régalienne/F.() -regard/S. -regardable/S. -regardante/F.() -regarder/a0a+() -regarnie/F.() -regarnir/f0f+() -régate/S. -régater/a0() -régatière/F.() -regazonner/a0a+() -regeler/b0a+() -régence/S. -régénération/S. -régénératrice/F.() -régénérée/F.() -régénérer/c0a+() -régénérescence/S. -régente/F.() -régenter/a0a+() -reggae/S. -régicide/S. -regimbement/S. -regimber/a0a+() -regimbeuse/F.() -régime/S. -régiment/S. -régimentaire/S. -reginglard/S. -région/S. -régionale/W.() -régionalement -régionalisation/S. -régionalisée/F.() -régionaliser/a0a+() -régionalisme/S. -régionaliste/S. -régir/f0f+() -régisseuse/F.() -registraire/S. -registre/S. -réglable/S. -réglage/S. -réglante/F.() -règle/S. -réglée/F.() -règlement/S. -réglementaire/S. -réglementairement -réglementarisme/S. -réglementariste/S. -réglementation/S. -réglementée/F.() -réglementer/a0a+() -régler/c0a+() -réglet/S. -réglette/S. -régleuse/F.() -réglisse/S. -réglo/S. -régloir/S. -réglure/S. -régnante/F.() -règne/S. -régner/c0() -régolite/S. -regonfler/a0a+() -regorgement/S. -regorger/a0() -regrat/S. -regratter/a0a+() -regrattière/F.() -regréer/a0a+() -regreffer/a0a+() -régressée/F.() -régresser/a0() -régression/S. -régressive/F.() -regret/S. -regrettable/S. -regrettablement -regrettée/F.() -regretter/a0a+() -regrèvement/S. -regrimper/a0a+() -regrossir/f0() -regroupement/S. -regrouper/a0a+() -régularisante/F.() -régularisation/S. -régularisée/F.() -régulariser/a0a+() -régularité/S. -régulation/S. -régulatrice/F.() -régule/S. -régulée/F.() -réguler/a0a+() -régulière/F.() -régulièrement -régurgitation/S. -régurgitée/F.() -régurgiter/a0a+() -réhabilitable/S. -réhabilitation/S. -réhabilitée/F.() -réhabiliter/a0a+() -réhabituer/a0a+() -rehausse/S. -rehaussée/F.() -rehaussement/S. -rehausser/a0a+() -rehausseur/S. -rehaut/S. -réhydratant/S. -réhydratante/F.() -réhydratation/S. -réhydratée/F.() -réhydrater/a0a+() -reichsmark/S. -reichstag/S. -réification/S. -réifiée/F.() -réifier/a0a+() -réimperméabiliser/a0a+() -réimplantation/S. -réimplanter/a0a+() -réimportation/S. -réimporter/a0a+() -réimposer/a0a+() -réimposition/S. -réimpression/S. -réimprimer/a0a+() -réimputation/S. -rein/S. -réincarcérer/c0a+() -réincarnation/S. -réincarnée/F.() -réincarner/a0a+() -réincorporation/S. -réincorporer/a0a+() -réincrudation/S. -réindustrialisée/F.() -réindustrialiser/a0a+() -reine/S. -reine-claude -reine-des-prés -reine-marguerite -reines-claudes -reines-des-prés -reines-marguerites -reinette/S. -réinfecter/a0a+() -réinitialisation/S. -réinitialisée/F.() -réinitialiser/a0a+() -réinjectée/F.() -réinjecter/a0a+() -réinjection/S. -réinscription/S. -réinscrire/y1() -réinsérer/c0a+() -réinsertion/S. -réinstallation/S. -réinstaller/a0a+() -réinstaurer/a0a+() -réintégrable/S. -réintégration/S. -réintégrer/c0a+() -réinterprétation/S. -réinterprétée/F.() -réinterpréter/c0a+() -réinterrogation/S. -réinterroger/a0a+() -réintroduction/S. -réintroduire/yM() -réinventée/F.() -réinventer/a0a+() -réinvention/S. -réinvestie/F.() -réinvestir/f0f+() -réinvestissement/S. -réinviter/a0a+() -reis -réitération/S. -réitérative/F.() -réitérer/c0a+() -reître/S. -rejaillir/f0() -rejaillissement/S. -réjection/S. -rejet/S. -rejetable/S. -rejetée/F.() -rejeter/d0a+() -rejeton/S. -rejeu/X. -rejoindre/wB() -rejointe/F.() -rejointoyer/a0a+() -rejointoyeuse/F.() -rejouer/a0a+() -réjouie/F.() -réjouir/f0f+() -réjouissance/S. -réjouissante/F.() -rel -relacer/a0a+() -relâche/S. -relâchée/F.() -relâchement/S. -relâcher/a0a+() -relais -relaisser/a0a+() -relance/S. -relancée/F.() -relancer/a0a+() -relapse/F.() -relargage/S. -rélargir/f0f+() -relarguer/a0a+() -relater/a0a+() -relation/S. -relationnelle/F.() -relative/F.() -relativement -relativisation/S. -relativisée/F.() -relativiser/a0a+() -relativisme/S. -relativiste/S. -relativité/S. -relaver/a0a+() -relax -relaxante/F.() -relaxation/S. -relaxe/S. -relaxée/F.() -relaxer/a0a+() -relayage/S. -relayée/F.() -relayer/a0a+() -relayeuse/F.() -relectrice/F.() -relecture/S. -relégation/S. -reléguée/F.() -reléguer/c0a+() -relent/S. -relevable/S. -relevage/S. -relevailles -relevante/F.() -relevé/S. -relève/S. -relevée/F.() -relèvement/S. -relever/b0a+() -releveuse/F.() -reliée/F.() -relief/S. -relier/a0a+() -relieuse/F.() -religieuse/W.() -religieusement -religion/S. -religionnaire/S. -religiosité/S. -reliquaire/S. -reliquat/S. -relique/S. -relire/yA() -reliure/S. -relocalisation/S. -relogée/F.() -relogement/S. -reloger/a0a+() -relookée/F.() -relooker/a0a+() -relouer/a0a+() -réluctance/S. -relue/F.() -reluire/yU() -reluisante/F.() -reluquer/a0a+() -rem/S. -remâchée/F.() -remâcher/a0a+() -remaillage/S. -remailler/a0a+() -remake/S. -rémanence/S. -rémanente/F.() -remanger/a0a+() -remaniée/F.() -remaniement/S. -remanier/a0a+() -remaquiller/a0a+() -remarcher/a0() -remariage/S. -remarier/a0a+() -remarquable/S. -remarquablement -remarquée/F.() -remarquer/a0a+() -remastérisée/F.() -remastériser/a0a+() -remastiquer/a0a+() -remballage/S. -remballée/F.() -remballer/a0a+() -rembarquement/S. -rembarquer/a0a+() -rembarrer/a0a+() -rembauchée/F.() -rembaucher/a0a+() -rembiner/a0a+() -remblai/S. -remblaiement/S. -remblaver/a0a+() -remblayage/S. -remblayer/a0a+() -rembobinée/F.() -rembobiner/a0a+() -remboîtage/S. -remboîtement/S. -remboîter/a0a+() -rembouger/a0a+() -rembourrage/S. -rembourrée/F.() -rembourrer/a0a+() -rembourrure/S. -remboursable/S. -remboursée/F.() -remboursement/S. -rembourser/a0a+() -rembroquer -rembrunir/f0f+() -rembrunissement/S. -rembucher/a0a+() -remède/S. -remédiable/S. -remédiation/S. -remédier/a0() -remembrement/S. -remembrer/a0a+() -remémoration/S. -remémorée/F.() -remémorer/a0a+() -remerciée/F.() -remerciement/S. -remercier/a0a+() -réméré/S. -remétrer -remettage/S. -remettante/F.() -remettre/vA() -remeublée/F.() -remeubler/a0a+() -rémige/S. -remilitarisation/S. -remilitarisée/F.() -remilitariser/a0a+() -réminiscence/S. -remisage/S. -remise/F.() -remise/S. -remisée/F.() -remiser/a0a+() -remisier/S. -rémissible/S. -rémission/S. -rémittence/S. -rémittente/F.() -remix -remixer/a0a+() -rémiz -remmaillage/S. -remmailler/a0a+() -remmailleuse/S. -remmailloter/a0a+() -remmancher/a0a+() -remmener/b0a+() -remmoulage/S. -remmouleur/S. -remodelage/S. -remodelée/F.() -remodeler/b0a+() -remontage/S. -remontante/F.() -remontée/F.() -remonte-pente/S. -remonter/a0a+() -remonteuse/F.() -remontoir/S. -remontrance/S. -remontrer/a0a+() -rémora/S. -remordre/tA() -remorquage/S. -remorque/S. -remorquée/F.() -remorquer/a0a+() -remorqueuse/F.() -remotivée/F.() -remotiver/a0a+() -remoucher/a0a+() -remoudre/xP() -remouiller/a0a+() -rémoulade/S. -remoulage/S. -rémouleur/S. -remoulue/F.() -remous -rempaillage/S. -rempailler/a0a+() -rempailleuse/F.() -rempaqueter/d0a+() -remparder -remparer/a0a+() -rempart/S. -rempiétement/S. -rempiéter/c0a+() -rempiler/a0a+() -remplaçable/S. -remplaçante/F.() -remplacée/F.() -remplacement/S. -remplacer/a0a+() -remplage/S. -remplie/F.() -remplier/a0a+() -remplir/f0f+() -remplissage/S. -remplisseuse/F.() -remploi/S. -remployer/a0a+() -remplumer/a0a+() -rempocher/a0a+() -rempoissonner/a0a+() -remporter/a0a+() -rempoter/a0a+() -remprunter/a0a+() -remuante/F.() -remuée/F.() -remue-ménage -remue-méninges -remuement/S. -remuer/a0a+() -remugle/S. -rémunération/S. -rémunératoire/S. -rémunératrice/F.() -rémunérée/F.() -rémunérer/c0a+() -remutualisation/S. -renâcler/a0() -renaissance/S. -renaissante/F.() -renaître/wR() -rénale/W.() -renarde/F.() -renardeau/X. -renardée/F.() -renarder/a0() -renardière/S. -renauder/a0() -rencaissage/S. -rencaissement/S. -rencaisser/a0a+() -rencard/S. -rencardée/F.() -rencarder/a0a+() -rencart/S. -renchaîner/a0a+() -renchérie/F.() -renchérir/f0f+() -renchérissement/S. -renchérisseuse/F.() -rencogner/a0a+() -rencontre/S. -rencontrée/F.() -rencontrer/a0a+() -rendement/S. -rendez-vous -rendormie/F.() -rendormir/iJ() -rendosser/a0a+() -rendre/tA() -rendu/S. -rendue/F.() -rêne/S. -renégate/F.() -renégociation/S. -renégocier/a0a+() -reneiger/a9() -rénette/S. -renfaîtage/S. -renfaîter/a0a+() -renfermée/F.() -renfermement/S. -renfermer/a0a+() -renfiler/a0a+() -renflammer/a0a+() -renflée/F.() -renflement/S. -renfler/a0a+() -renflouage/S. -renflouée/F.() -renflouement/S. -renflouer/a0a+() -renfoncée/F.() -renfoncement/S. -renfoncer/a0a+() -renforçante/F.() -renforcée/F.() -renforcement/S. -renforcer/a0a+() -renformir/f0f+() -renfort/S. -renfrognée/F.() -renfrognement/S. -renfrogner/a0a+() -rengagée/F.() -rengagement/S. -rengager/a0a+() -rengaine/S. -rengainée/F.() -rengainer/a0a+() -rengorgement/S. -rengorger/a0a+() -rengracier/a0() -rengrener/b0a+() -rengréner/c0a+() -reniée/F.() -reniement/S. -renier/a0a+() -reniflage/S. -reniflard/S. -reniflement/S. -renifler/a0a+() -renifleuse/F.() -réniforme/S. -rénitence/S. -renne/S. -renom/S. -renommage/S. -renommée/F.() -renommer/a0a+() -renoncement/S. -renoncer/a0a+() -renonciataire/S. -renonciation/S. -renonciatrice/F.() -renonculacée/S. -renoncule/S. -renormalisable/S. -renormalisation/S. -renouement/S. -renouer/a0a+() -renouveau/X. -renouvelable/S. -renouvelante/F.() -renouvelée/F.() -renouveler/d0a+() -renouvellement/S. -rénovation/S. -rénovatrice/F.() -rénovée/F.() -rénover/a0a+() -renquiller/a0a+() -renseignée/F.() -renseignement/S. -renseigner/a0a+() -rentabilisation/S. -rentabilisée/F.() -rentabiliser/a0a+() -rentabilité/S. -rentable/S. -rentamer/a0a+() -rente/S. -rentée/F.() -renter/a0a+() -rentière/F.() -rentoiler/a0a+() -rentoileuse/F.() -rentraire -rentrante/F.() -rentrayer/a0a+() -rentre-dedans -rentrée/F.() -rentrée/S. -rentrer/a0a+() -rentrouverte/F.() -rentrouvrir/iC() -renumérotation/S. -renuméroter/a0a+() -renvelopper/a0a+() -renvenimer/a0a+() -renverger/a0a+() -renversante/F.() -renverse/S. -renversée/F.() -renversement/S. -renverser/a0a+() -renvidage/S. -renvider/a0a+() -renvideur/S. -renvier/a0a+() -renvoi/S. -renvoyée/F.() -renvoyer/aD() -réoccupation/S. -réoccuper/a0a+() -réopérer/c0a+() -réorchestrer/a0a+() -réordonnancer/a0a+() -réordonner/a0a+() -réorganisation/S. -réorganisatrice/F.() -réorganisée/F.() -réorganiser/a0a+() -réorientation/S. -réorientée/F.() -réorienter/a0a+() -réouverture/S. -repaire/S. -repairer/a0() -repaître/wS() -répandre/tA() -répandue/F.() -réparable/S. -reparaître/wQ() -reparamétrage/S. -réparation/S. -réparatrice/F.() -réparée/F.() -réparer/a0a+() -reparler/a0a+() -repartager/a0a+() -répartement/S. -répartie/F.() -repartie/S. -repartir/f0f+() -répartir/f0f+() -repartir/i5i+() -répartissable/S. -répartiteur/S. -répartition/S. -repas -repassage/S. -repassée/F.() -repasser/a0a+() -repasseuse/F.() -repatiner/a0a+() -repaver/a0a+() -repayer/a0a+() -repêchage/S. -repêchée/F.() -repêcher/a0a+() -repeigner/a0a+() -repeindre/wB() -repeinte/F.() -rependre/tA() -repenser/a0a+() -repentance/S. -repentante/F.() -repentie/F.() -repentir/S. -repentir/i5i+() -repérable/S. -repérage/S. -repercer/a0a+() -répercussion/S. -répercuter/a0a+() -reperdre/tA() -repère/S. -repérée/F.() -repérer/c0a+() -répertoire/S. -répertoriée/F.() -répertorier/a0a+() -répétabilité/S. -répétable/S. -répétée/F.() -répéter/c0a+() -répéteur/S. -répétibilité/S. -répétition/S. -répétitive/F.() -répétitivité/S. -répétitorat/S. -répétitrice/F.() -repeuplée/F.() -repeuplement/S. -repeupler/a0a+() -repic -repincer/a0a+() -repiquage/S. -repiquer/a0a+() -répit/S. -replacée/F.() -replacement/S. -replacer/a0a+() -replantée/F.() -replanter/a0a+() -replat/S. -replâtrage/S. -replâtrée/F.() -replâtrer/a0a+() -replète/F.() -réplétion/S. -réplétive/F.() -repleuvoir/pZ() -repli/S. -repliable/S. -réplication/S. -repliée/F.() -repliement/S. -replier/a0a+() -réplique/S. -répliquer/a0a+() -replisser/a0a+() -replonger/a0a+() -reployée/F.() -reployer/a0a+() -repointer/a0a+() -repolir/f0f+() -répondante/F.() -répondeuse/F.() -répondre/tA() -répons -réponse/S. -repopulation/S. -report/S. -reportage/S. -reportée/F.() -reporter/S. -reporter/a0a+() -reporter-cameraman -reporters-cameramans -reportrice/F.() -repos -reposante/F.() -reposée/F.() -repose-pied/S. -reposer/a0a+() -repose-tête -repositionnable/S. -repositionnement/S. -repositionner/a0a+() -reposoir/S. -repoudrée/F.() -repoudrer/a0a+() -repoussage/S. -repoussante/F.() -repousse/S. -repoussée/F.() -repoussement/S. -repousser/a0a+() -repoussoir/S. -répréhensible/S. -répréhension/S. -reprendre/tF() -repreneuse/F.() -représailles -représentable/S. -représentante/F.() -représentation/S. -représentative/F.() -représentativité/S. -représentée/F.() -représenter/a0a+() -répressible/S. -répression/S. -répressive/F.() -réprimande/S. -réprimandée/F.() -réprimander/a0a+() -réprimée/F.() -réprimer/a0a+() -reprisage/S. -reprise/F.() -reprise/S. -reprisée/F.() -repriser/a0a+() -repriseuse/S. -réprobation/S. -réprobatrice/F.() -reprochable/S. -reproche/S. -reprochée/F.() -reprocher/a0a+() -reproductibilité/S. -reproductible/S. -reproduction/S. -reproductive/F.() -reproductrice/F.() -reproduire/yM() -reproduite/F.() -reprogrammée/F.() -reprogrammer/a0a+() -reprographie/S. -reprographiée/F.() -reprographier/a0a+() -réprouvée/F.() -reprouver/a0a+() -réprouver/a0a+() -reps -reptation/S. -reptile/S. -reptilienne/F.() -républicaine/F.() -républicaniser/a0a+() -républicanisme/S. -république/S. -répudiation/S. -répudiée/F.() -répudier/a0a+() -repue/F.() -répugnance/S. -répugnante/F.() -répugner/a0a+() -répulsion/S. -répulsive/F.() -réputation/S. -réputée/F.() -réputer/a0a+() -requalification/S. -requalifiée/F.() -requalifier/a0a+() -requérante/F.() -requérir/iK() -requestionner/a0a+() -requête/S. -requiem/S. -requin/S. -requinquée/F.() -requinquer/a0a+() -requise/F.() -réquisit/S. -réquisition/S. -réquisitionnée/F.() -réquisitionner/a0a+() -réquisitoire/S. -réquisitoriale/W.() -resaler/a0a+() -resalir/f0f+() -resaluer/a0a+() -resarcelée/F.() -rescapée/F.() -rescindable/S. -rescindante/F.() -rescinder/a0a+() -rescision/S. -rescisoire/S. -rescousse/S. -rescription/S. -rescrit/S. -réseau/X. -résection/S. -réséda/S. -resemer/b0a+() -réséquer/c0a+() -réserpine/S. -réservataire/S. -réservation/S. -réserve/S. -réservée/F.() -réserver/a0a+() -réserviste/S. -réservoir/S. -résidence/S. -résidente/F.() -résidentielle/F.() -résider/a0() -résidu/S. -résiduaire/S. -résiduelle/F.() -résignataire/S. -résignation/S. -résignée/F.() -résigner/a0a+() -résiliable/S. -résiliation/S. -résiliée/F.() -résilience/S. -résilier/a0a+() -résille/S. -résine/S. -résiner/a0a+() -résineuse/W.() -résinière/F.() -résinifère/S. -résinifier/a0a+() -résipiscence/S. -résistance/S. -résistante/F.() -résister/a0() -résistible/S. -résistive/F.() -résistivité/S. -résistor/S. -résolubilité/S. -résoluble/S. -résolue/F.() -résolument -résolution/S. -résolutive/F.() -résolutoire/S. -résolvante/F.() -résonance/S. -résonante/F.() -résonateur/S. -résonatrice/F.() -résonnante/F.() -résonner/a0() -résorbable/S. -résorbée/F.() -résorber/a0a+() -résorcine/S. -résorption/S. -résoudre/xN() -respect/S. -respectabilité/S. -respectable/S. -respectée/F.() -respecter/a0a+() -respective/F.() -respectivement -respectueuse/W.() -respectueusement -respirable/S. -respirateur/S. -respiration/S. -respiratoire/S. -respirer/a0a+() -resplendir/f0() -resplendissante/F.() -resplendissement/S. -responsabilisation/S. -responsabilisée/F.() -responsabiliser/a0a+() -responsabilité/S. -responsable/S. -resquillage/S. -resquille/S. -resquiller/a0a+() -resquilleuse/F.() -ressac/S. -ressaigner/a0a+() -ressaisir/f0f+() -ressaisissement/S. -ressassée/F.() -ressassement/S. -ressasser/a0a+() -ressasseur/S. -ressaut/S. -ressauter/a0a+() -ressayage/S. -ressayer/a0a+() -ressemblance/S. -ressemblante/F.() -ressembler/a0a+() -ressemelage/S. -ressemeler/d0a+() -ressemeleuse/F.() -ressemer/b0a+() -ressenti/S. -ressentie/F.() -ressentiment/S. -ressentir/i5i+() -resserrage/S. -resserre/S. -resserrée/F.() -resserrement/S. -resserrer/a0a+() -resservir/iF() -ressort/S. -ressortir/f0() -ressortir/i5i+() -ressortissante/F.() -ressouder/a0a+() -ressource/S. -ressourcement/S. -ressourcer/a0a+() -ressouvenir/i0i+() -ressuer/a0a+() -ressui/S. -ressuscitée/F.() -ressusciter/a0a+() -ressuyage/S. -ressuyée/F.() -ressuyer/a0a+() -restanque/S. -restante/F.() -restaurant/S. -restauration/S. -restauratrice/F.() -restaurée/F.() -restaurer/a0a+() -reste/S. -rester/a0a+() -restituable/S. -restituée/F.() -restituer/a0a+() -restitution/S. -resto/S. -restoroute/S. -restreindre/wB() -restreinte/F.() -restriction/S. -restrictive/F.() -restringente/F.() -restructuration/S. -restructurée/F.() -restructurer/a0a+() -restyler -resucée/S. -résultante/F.() -résultat/S. -résulter/aG() -résumé/S. -résumée/F.() -résumer/a0a+() -résurgence/S. -résurgente/F.() -resurgir/f0() -résurrection/S. -résurrectionnelle/F.() -resynchronisation/S. -resynchronisée/F.() -resynchroniser/a0a+() -retable/S. -rétablie/F.() -rétablir/f0f+() -rétablissement/S. -retaille/S. -retailler/a0a+() -rétamage/S. -rétamée/F.() -rétamer/a0a+() -rétameur/S. -retape/S. -retapée/F.() -retaper/a0a+() -retapissée/F.() -retapisser/a0a+() -retard/S. -retardataire/S. -retardatrice/F.() -retardée/F.() -retardement/S. -retarder/a0a+() -retâter/a0a+() -reteindre/wB() -retéléphoner/a0() -retendre/tA() -retenir/i0i+() -retenter/a0a+() -rétention/S. -retentir/f0() -retentissante/F.() -retentissement/S. -rétentrice/F.() -retenue/F.() -retenue/S. -retercer/a0a+() -reterser/a0a+() -rétiaire/S. -réticence/S. -réticente/F.() -réticulaire/S. -réticulation/S. -réticule/S. -réticulée/F.() -réticuler/a0a+() -réticulo-endothéliale/W.() -réticulum/S. -rétine/S. -rétinienne/F.() -rétinite/S. -rétinoïde/S. -rétinol/S. -rétinopathie/S. -retirage/S. -retiration/S. -retirée/F.() -retirement/S. -retirer/a0a+() -retisser/a0a+() -rétive/F.() -rétivité/S. -retombante/F.() -retombée/S. -retombement/S. -retomber/a0() -retondre/tA() -retoquer/a0a+() -retordage/S. -retordement/S. -retordeuse/F.() -retordre/tA() -rétorquer/a0a+() -retorse/F.() -rétorsion/S. -retouchable/S. -retouche/S. -retouchée/F.() -retoucher/a0a+() -retoucheuse/F.() -retour/S. -retournage/S. -retournée/F.() -retournement/S. -retourner/a0a+() -retracer/a0a+() -rétractable/S. -rétractation/S. -rétractée/F.() -rétracter/a0a+() -rétracteur/S. -rétractibilité/S. -rétractile/S. -rétractilité/S. -rétraction/S. -rétractrice/F.() -retraduction/S. -retraduire/yL() -retraduite/F.() -retraire/wL() -retraitante/F.() -retraite/F.() -retraite/S. -retraitée/F.() -retraitement/S. -retraiter/a0a+() -retranchée/F.() -retranchement/S. -retrancher/a0a+() -retranscription/S. -retranscrire/y1() -retranscrite/F.() -retransmetteur/S. -retransmettre/vA() -retransmise/F.() -retransmission/S. -retravaillée/F.() -retravailler/a0a+() -retraverser/a0a+() -retrayante/F.() -rétrécie/F.() -rétrécir/f0f+() -rétrécissante/F.() -rétrécissement/S. -retreindre -rétreindre -retreinte/F.() -rétreinte/F.() -retrempe/S. -retremper/a0a+() -rétribuée/F.() -rétribuer/a0a+() -rétribution/S. -retriever/S. -rétro/S. -rétroactes -rétroaction/S. -rétroactive/F.() -rétroactivement -rétroactivité/S. -rétroagir/f0() -rétrocédée/F.() -rétrocéder/c0a+() -rétrocession/S. -rétrocompatibilité/S. -rétrocompatible/S. -rétrocontrôle/S. -rétrodiffusion/S. -rétroéclairage/S. -rétroflexe/S. -rétrofusée/S. -rétrogradation/S. -rétrograde/S. -rétrogradée/F.() -rétrograder/a0a+() -rétrogression/S. -rétro-ingénierie/S. -rétropédalage/S. -rétroposition/S. -rétroprojecteur/S. -rétropropulsion/S. -rétrospection/S. -rétrospective/F.() -rétrospectivement -retroussage/S. -retroussée/F.() -retroussement/S. -retrousser/a0a+() -retroussis -retrouvable/S. -retrouvailles -retrouvée/F.() -retrouver/a0a+() -rétroversion/S. -rétrovirus -rétroviseur/S. -rets -retuber/a0a+() -réunie/F.() -réunification/S. -réunifiée/F.() -réunifier/a0a+() -réunion/S. -réunionnaise/F.() -réunir/f0f+() -réunissage/S. -réusiner/a0a+() -réussie/F.() -réussir/f0f+() -réussite/S. -réutilisable/S. -réutilisation/S. -réutilisée/F.() -réutiliser/a0a+() -revacciner/a0a+() -revalidation/S. -revalider/a0a+() -revaloir/pO() -revalorisation/S. -revalorisée/F.() -revaloriser/a0a+() -revancharde/F.() -revanche/S. -revancher/a0a+() -revanchisme/S. -revascularisation/S. -rêvasser/a0() -rêvasserie/S. -rêvasseuse/F.() -rêve/S. -revêche/S. -rêvée/F.() -réveil/S. -réveillée/F.() -réveille-matin -réveiller/a0a+() -réveilleuse/F.() -réveillon/S. -réveillonner/a0() -réveillonneur/S. -révélation/S. -révélatrice/F.() -révélée/F.() -révéler/c0a+() -revenant-bon -revenante/F.() -revendable/S. -revendeuse/F.() -revendication/S. -revendicative/F.() -revendicatrice/F.() -revendiquée/F.() -revendiquer/a0a+() -revendre/tA() -revendue/F.() -revenir/i0i+() -revente/S. -revenu/S. -revenue/F.() -rêver/a0a+() -réverbérante/F.() -réverbération/S. -réverbère/S. -réverbérée/F.() -réverbérer/c0a+() -reverdie/F.() -reverdir/f0f+() -révérée/F.() -révérence/S. -révérencielle/F.() -révérencieuse/W.() -révérencieusement -révérende/F.() -révérendissime/S. -révérer/c0a+() -rêverie/S. -revérification/S. -revérifier/a0a+() -revernir/f0f+() -revers -reversée/F.() -reversement/S. -reverser/a0a+() -réversibilité/S. -réversible/S. -réversion/S. -revêtement/S. -revêtir/iG() -rêveuse/F.() -rêveusement -revigorante/F.() -revigoration/S. -revigorée/F.() -revigorer/a0a+() -revirement/S. -revirer/a0() -révisable/S. -révisée/F.() -réviser/a0a+() -réviseure/S. -réviseuse/F.() -révision/S. -revisionner/a0a+() -révisionnisme/S. -révisionniste/S. -revisitée/F.() -revisiter/a0a+() -revisser/a0a+() -revitalisation/S. -revitalisée/F.() -revitaliser/a0a+() -revive/F.() -revivifiante/F.() -revivifier/a0a+() -reviviscence/S. -revivre/xS() -révocabilité/S. -révocable/S. -révocation/S. -revoici -revoilà -revoir/pF() -revoler/a0a+() -révoltante/F.() -révolte/S. -révoltée/F.() -révolter/a0a+() -révolue/F.() -révolution/S. -révolutionnaire/S. -révolutionnairement -révolutionnarisme/S. -révolutionnariste/S. -révolutionner/a0a+() -revolver/S. -revolvériser/a0a+() -révoquée/F.() -révoquer/a0a+() -revoter/a0a+() -revouloir -revoyure/S. -revue/F.() -revue/S. -révulsée/F.() -révulser/a0a+() -révulsion/S. -révulsive/F.() -rewriter/S. -rewriter/a0a+() -rewriting/S. -rez -rez-de-chaussée -rez-de-jardin -rhabdomancie/S. -rhabdomancienne/F.() -rhabillage/S. -rhabillement/S. -rhabiller/a0a+() -rhabilleuse/F.() -rhapsode/S. -rhapsodie/S. -rhapsodique/S. -rhé/S. -rhénane/F.() -rhénium/S. -rhéobase/S. -rhéologie/S. -rhéologique/S. -rhéologue/S. -rhéomètre/S. -rhéophile/S. -rhéostat/S. -rhéostatique/S. -rhésus -rhéteur/S. -rhétienne/F.() -rhétique/S. -rhéto/S. -rhétoricienne/F.() -rhétorique/S. -rhétoriqueur/S. -rhéto-romane/F.() -rhinanthe/S. -rhinencéphale/S. -rhingrave/S. -rhinite/S. -rhinocéros -rhino-laryngite/S. -rhinologie/S. -rhinolophe/S. -rhino-pharyngée/F.() -rhino-pharyngienne/F.() -rhino-pharyngite/S. -rhino-pharynx -rhinoplastie/S. -rhizocarpée/F.() -rhizoctone/S. -rhizoïde/S. -rhizomateuse/W.() -rhizome/S. -rhizophage/S. -rhizophore/S. -rhizopode/S. -rhizosphère/S. -rhizostome/S. -rhizotome/S. -rhô -rho/S. -rhodamine/S. -rhodanienne/F.() -rhodiée/F.() -rhodinol/S. -rhodite/S. -rhodium/S. -rhododendron/S. -rhodoïd/S. -rhodonite/S. -rhodophycée/S. -rhodophyte/S. -rhodopsine/S. -rhombe/S. -rhombencéphale/S. -rhombique/S. -rhomboèdre/S. -rhomboédrique/S. -rhomboïdale/W.() -rhomboïde/S. -rhotacisme/S. -rhubarbe/S. -rhum/S. -rhumatisante/F.() -rhumatismale/W.() -rhumatisme/S. -rhumatoïde/S. -rhumatologie/S. -rhumatologique/S. -rhumatologiste/S. -rhumatologue/S. -rhumb/S. -rhume/S. -rhumée/F.() -rhumer/a0a+() -rhumerie/S. -rhynchite/S. -rhynchocéphale/S. -rhynchonelle/S. -rhyolite/S. -rhyolithe/S. -rhytidome/S. -rhyton/S. -ria/S. -rial/S. -riante/F.() -ribambelle/S. -ribaude/F.() -ribaudequin/S. -riblage/S. -ribler/a0a+() -riblon/S. -riboflavine/S. -ribonucléase/S. -ribonucléique/S. -ribose/S. -ribosome/S. -ribosomique/S. -ribote/S. -ribouis -ribouldingue/S. -ribouler/a0() -ricaine/F.() -ricanante/F.() -ricanement/S. -ricaner/a0() -ricaneuse/F.() -riccie/S. -ricercare/I. -richarde/F.() -riche/S. -richelieu/S. -richement -richesse/S. -richissime/S. -ricin -ricine/S. -ricinée/F.() -ricinoléique/S. -rickettsie/S. -rickettsiose/S. -ricoche/S. -ricocher/a0() -ricochet/S. -ric-rac -rictus -ridage/S. -ride/S. -rideau/X. -ridée/F.() -ridelle/S. -ridement/S. -rider/a0a+() -ridicule/S. -ridiculement -ridiculisée/F.() -ridiculiser/a0a+() -ridoir/S. -ridule/S. -rie/S. -riel/S. -riemannienne/F.() -rien/S. -riesling/S. -rieuse/F.() -riffaudée/F.() -riffauder/a0a+() -riffle/S. -rififi/S. -riflard/S. -rifle/S. -rifler/a0a+() -riflette/S. -rifloir/S. -rift/S. -rigaudon/S. -rigide/S. -rigidement -rigidifiée/F.() -rigidifier/a0a+() -rigidité/S. -rigodon/S. -rigolade/S. -rigolage/S. -rigolarde/F.() -rigole/S. -rigoler/a0() -rigoleuse/F.() -rigollot/S. -rigolo/S. -rigolote/S. -rigorisme/S. -rigoriste/S. -rigotte/S. -rigoureuse/W.() -rigoureusement -rigueur/S. -rikiki -rillettes -rillons -rilsan/S. -rimaille/S. -rimailler/a0() -rimailleuse/F.() -rimaye/S. -rime/S. -rimée/F.() -rimer/a0a+() -rimeuse/F.() -rimmel/S. -rinçage/S. -rinceau/X. -rince-bouche -rince-bouteille/S. -rince-doigts -rincée/F.() -rincer/a0a+() -rincette/S. -rinceuse/F.() -rinçure/S. -rinforzando -ring/S. -ringardage/S. -ringarde/F.() -ringarder/a0a+() -ringardise/S. -ringardiser/a0a+() -rink-hockey/S. -ripage/S. -ripaille/S. -ripailler/a0() -ripailleuse/F.() -ripaton/S. -ripatonner -ripe/S. -riper/a0a+() -ripieno/S. -ripolin/S. -ripoliner/a0a+() -riposte/S. -riposter/a0a+() -ripou/X. -ripper/S. -ripuaire/S. -riquiqui -rire/S. -rire/yW() -ris -risban/S. -risberme/S. -risée/S. -risette/S. -risible/S. -risiblement -risorius -risotto/S. -risque/S. -risquée/F.() -risquer/a0a+() -risque-tout -rissole/S. -rissoler/a0a+() -ristourne/S. -ristourner/a0a+() -ritale/F.() -rite/S. -ritournelle/S. -ritualisation/S. -ritualisée/F.() -ritualiser/a0a+() -ritualisme/S. -ritualiste/S. -rituelle/F.() -rituellement -rivage/S. -rivale/W.() -rivaliser/a0() -rivalité/S. -rive/S. -rivée/F.() -rivelaine/S. -river/a0a+() -riveraine/F.() -riveraineté/S. -rivet/S. -rivetage/S. -rivetée/F.() -riveter/d0a+() -riveteuse/S. -riveuse/F.() -rivière/S. -rivoir/S. -rivulaire/S. -rivure/S. -rixdale/S. -rixe/S. -riz -rizerie/S. -rizicole/S. -rizicultrice/F.() -riziculture/S. -rizière/S. -riz-pain-sel -road-movie/S. -roadster/S. -roast-beef/S. -rob/S. -robage/S. -robe/S. -robelage/S. -rober/a0a+() -robert/S. -robin/S. -robinet/S. -robinetier/S. -robinétier/S. -robinetière/F.() -robinetterie/S. -robinier/S. -roborative/F.() -robot/S. -roboticienne/F.() -robotique/S. -robotisation/S. -robotisée/F.() -robotiser/a0a+() -robuste/S. -robustement -robustesse/S. -roc/S. -rocade/S. -rocaillage/S. -rocaille/S. -rocailleur/S. -rocailleuse/W.() -rocambolesque/S. -rochage/S. -rochassière/F.() -roche/S. -rocher -rocher/S. -rochet/S. -rocheuse/W.() -rochier/S. -rock/S. -rockeuse/F.() -rocking-chair/S. -rococo/S. -rocou/S. -rocouyer/S. -rocquer/a0() -rodage/S. -rôdailler/a0() -rôde/S. -rodée/F.() -rodéo/S. -roder/a0a+() -rôder/a0() -rôdeuse/F.() -rodoir/S. -rodomont/S. -rodomontade/S. -rœntgen/S. -rœntgenium/S. -rœntgenthérapie/S. -rogation/S. -rogatoire/S. -rogatoirement -rogaton/S. -rognage/S. -rogne/S. -rognée/F.() -rogne-pied -rogner/a0a+() -rogneuse/F.() -rognon/S. -rognonner/a0() -rognure/S. -rogomme/S. -rogue/S. -roguée/F.() -rohart/S. -roi/S. -roide/S. -roidement -roideur/S. -roidie/F.() -roidir/f0f+() -roitelet/S. -rôle/S. -roller/S. -rolleuse/F.() -rollier/S. -rollmops -romaine/F.() -romaji/S. -roman/S. -romance/S. -romancée/F.() -romancer/a0a+() -romancero/S. -romanche/S. -romancière/F.() -romande/F.() -romane/F.() -romanesque/S. -roman-feuilleton -roman-fleuve -romani/S. -romanichelle/F.() -romanisante/F.() -romanisation/S. -romanisée/F.() -romaniser/a0a+() -romaniste/S. -romanité/S. -romano/S. -roman-photo -romans-feuilletons -romans-fleuves -romans-photos -romantique/S. -romantiquement -romantisme/S. -romarin/S. -rombière/S. -rompre/tA() -rompue/F.() -ronce/S. -ronceraie/S. -ronceuse/W.() -ronchonne/F.() -ronchonneau/X. -ronchonnement/S. -ronchonner/a0() -ronchonneuse/F.() -ronchopathie/S. -roncière/F.() -rondache/S. -rond-de-cuir -ronde/F.() -rondeau/X. -ronde-bosse -rondel/S. -rondelette/F.() -rondelle/S. -rondement -rondes-bosses -rondeur/S. -rondier/S. -rondin/S. -rondir/f0f+() -rondo/S. -rondouillarde/F.() -rond-point -ronds-de-cuir -ronds-points -ronéo/S. -ronéoter/a0a+() -ronéotyper/a0a+() -ronflaguer/a0a+() -ronflante/F.() -ronflement/S. -ronfler/a0() -ronfleuse/F.() -rongée/F.() -rongement/S. -ronger/a0a+() -rongeure/S. -rongeuse/F.() -rônin/S. -ronron/S. -ronronnement/S. -ronronner/a0() -ronsardiser/a0() -rookerie/S. -roque/S. -roquefort/S. -roquelaure/S. -roquentin/S. -roquer/a0() -roquerie/S. -roquet/S. -roquette/S. -rorqual/S. -rosace/S. -rosacée/F.() -rosage/S. -rosaire/S. -rosalbin/S. -rosaniline/S. -rosat -rosâtre/S. -rosbif/S. -rose/S. -roseau/X. -rose-croix -rosée/F.() -rosée/S. -roselet/S. -roselière/F.() -roséole/S. -roser/a0a+() -roseraie/S. -rosette/S. -rosicrucienne/F.() -rosie/F.() -rosière/F.() -rosiériste/S. -rosir/f0f+() -rosissante/F.() -rosissement/S. -rossard/S. -rosse/S. -rosser/a0a+() -rosserie/S. -rossignol/S. -rossignolet/S. -rossinante/S. -rossolis -rösti -rostrale/W.() -rostre/S. -rot/S. -rôt/S. -rotacée/F.() -rotang/S. -rotarien/S. -rotary/S. -rotateur/S. -rotation/S. -rotative/F.() -rotatoire/S. -rotatrice/F.() -rotengle/S. -roténone/S. -roter/a0() -rôtie/F.() -rotifère/S. -rotin/S. -rôtir/f0f+() -rôtissage/S. -rôtisserie/S. -rôtisseuse/F.() -rôtissoire/S. -rotogravure/S. -rotomoulage/S. -rotonde/S. -rotondité/S. -rotor/S. -rotorique/S. -rotrouenge/S. -rotruenge/S. -rottweiler/S. -rotule/S. -rotulienne/F.() -roture/S. -roturière/F.() -rouable/S. -rouage/S. -rouanne/F.() -rouannette/S. -roublarde/F.() -roublardise/S. -rouble/S. -rouchi -roucoulade/S. -roucoulante/F.() -roucoulement/S. -roucouler/a0a+() -roudoudou/S. -roue/S. -rouée/F.() -rouelle/S. -rouennerie/S. -rouer/a0a+() -rouergate/F.() -rouerie/S. -rouette/F.() -rouf/S. -rouflaquette/S. -roufle/S. -roufler/a0a+() -rouge/S. -rougeâtre/S. -rougeaude/F.() -rouge-gorge -rougeoiement/S. -rougeole/S. -rougeoyante/F.() -rougeoyer/a0() -rouge-queue -rouges-gorges -rouges-queues -rouget/S. -rougeur/S. -rougie/F.() -rougir/f0f+() -rougissante/F.() -rougissement/S. -rougnotter/a0() -rouie/F.() -rouille/S. -rouillée/F.() -rouiller/a0a+() -rouillure/S. -rouir/f0f+() -rouissage/S. -rouissoir/S. -roulade/S. -roulage/S. -roulante/F.() -roule/S. -rouleau/X. -rouleautée/F.() -roulé-boulé -roulée/F.() -roulement/S. -rouler/a0a+() -roulés-boulés -roulette/S. -rouleur/S. -roulier/S. -roulis -rouloir/S. -roulotte/S. -roulotter/a0a+() -roulure/S. -roumaine/F.() -roumi/S. -round/S. -roupettes -roupie/S. -roupiller/a0() -roupillon/S. -rouquine/F.() -rouscailler/a0() -rouspétance/S. -rouspéter/c0() -rouspéteuse/F.() -rousquille/S. -roussâtre/S. -rousse/W.() -rousseau/X. -rousseauisme/S. -rousseauiste/S. -rousselet/S. -rousserolle/S. -roussette/S. -rousseur/S. -roussie/F.() -roussin/S. -roussir/f0f+() -roussissement/S. -rouste/S. -roustir/f0f+() -roustons -routage/S. -routarde/F.() -route/S. -router/a0a+() -routeur/S. -routeuse/F.() -routière/F.() -routine/S. -routinière/F.() -rouverain/S. -rouverin/S. -rouvieux -rouvraie/S. -rouvrir/iC() -rowing/S. -royale/W.() -royalement -royalisme/S. -royaliste/S. -royalties -royaume/S. -royauté/S. -rromani -ru/S. -ruade/S. -ruban/S. -rubanée/F.() -rubaner/a0a+() -rubanerie/S. -rubanière/F.() -rubato -rubéfaction/S. -rubéfiante/F.() -rubéfier/a0a+() -rubellite/S. -rubéole/S. -rubéoleuse/W.() -rubescente/F.() -rubiacée/S. -rubican/S. -rubicelle/S. -rubiconde/F.() -rubidium/S. -rubiette/S. -rubigineuse/W.() -rubis -rubrique/S. -ruche/S. -ruchée/F.() -rucher/S. -rucher/a0a+() -rudbeckie/S. -rude/S. -rudement -rudentée/F.() -rudenter/a0a+() -rudenture/S. -rudérale/W.() -rudération/S. -rudesse/S. -rudiment/S. -rudimentaire/S. -rudimentairement -rudoiement/S. -rudoyée/F.() -rudoyer/a0a+() -rue/S. -ruée/S. -ruelle/S. -ruer/a0a+() -ruffian/S. -rufian/S. -rugby/S. -rugbyman/S. -rugination/S. -rugir/f0f+() -rugissante/F.() -rugissement/S. -rugosité/S. -rugueuse/W.() -ruiler/a0a+() -ruine/S. -ruine-babines -ruinée/F.() -ruiner/a0a+() -ruineuse/W.() -ruineusement -ruiniforme/S. -ruiniste/S. -ruinure/S. -ruisseau/X. -ruisselante/F.() -ruisseler/d0() -ruisselet/S. -ruissellement/S. -rumba/S. -rumen/S. -rumeur/S. -rumex -ruminante/F.() -rumination/S. -ruminée/F.() -ruminer/a0a+() -rumsteck/S. -runabout/S. -rune/S. -runiforme/S. -runique/S. -runologue/S. -ruolz -rupestre/S. -rupicole/S. -rupine/F.() -rupiner/a0() -rupteur/S. -rupture/S. -rurale/W.() -ruralité/S. -rurbanisation/S. -ruse/S. -rusée/F.() -ruser/a0() -rush/S. -russe/S. -russification/S. -russifiée/F.() -russifier/a0a+() -russisée/F.() -russiser/a0a+() -russophile/S. -russophone/S. -russule/S. -rustaude/F.() -rustauderie/S. -rusticage/S. -rusticité/S. -rustine/S. -rustique/S. -rustiquement -rustiquer/a0a+() -rustre/S. -rut/S. -rutabaga/S. -rûter/a0() -ruthène/S. -ruthénium/S. -rutherfordium/S. -rutilance/S. -rutilante/F.() -rutilation/S. -rutilement/S. -rutiler/a0() -rwandaise/F.() -rythme/S. -rythmée/F.() -rythmer/a0a+() -rythmicienne/F.() -rythmicité/S. -rythmique/S. -rythmiquement -s -s/U.||-- -sa -s'abader -sabayon/S. -sabbat/S. -sabbathienne/F.() -sabbatique/S. -sabéenne/F.() -sabéisme/S. -sabelle/S. -sabellianisme/S. -sabine/F.() -sabir/S. -sablage/S. -sable/S. -sablée/F.() -sabler/a0a+() -sablerie/S. -sableuse/F.() -sableuse/W.() -sablière/F.() -sablon/S. -sablonner/a0a+() -sablonneuse/W.() -sablonnière/S. -sabord/S. -sabordage/S. -sabordée/F.() -sabordement/S. -saborder/a0a+() -sabot/S. -sabotage/S. -sabotée/F.() -saboter/a0a+() -saboterie/S. -saboteuse/F.() -sabotière/F.() -sabouler/a0a+() -sabra/S. -sabrage/S. -sabre/S. -sabrée/F.() -sabrer/a0a+() -sabretache/S. -sabreuse/F.() -s'abriller -saburrale/W.() -saburre/S. -sac/S. -sacagner/a0a+() -saccade/S. -saccadée/F.() -saccader/a0a+() -saccage/S. -saccagée/F.() -saccagement/S. -saccager/a0a+() -saccageuse/F.() -saccharase/S. -saccharate/S. -sacchareuse/W.() -saccharide/S. -saccharidé/S. -saccharifère/S. -saccharification/S. -saccharifier/a0a+() -saccharimètre/S. -saccharimétrie/S. -saccharimétrique/S. -saccharine/F.() -saccharine/S. -saccharinée/F.() -saccharique/S. -saccharoïde/S. -saccharolé/S. -saccharomyces -saccharose/S. -saccharure/S. -sacciforme/S. -saccule/S. -sacculiforme/S. -sacculine/S. -sacerdoce/S. -sacerdotale/W.() -sachem/S. -sachet/S. -sacoche/S. -sacoléva/S. -sacolève/S. -sacome/S. -sacquebute/S. -sacquée/F.() -sacquer/a0a+() -sacrale/W.() -sacralisation/S. -sacralisée/F.() -sacraliser/a0a+() -sacralité/S. -sacramentaire/S. -sacramental/X. -sacramentelle/F.() -sacre/S. -sacrebleu -sacré-cœur -sacredieu -sacrée/F.() -sacrément -sacrement/S. -sacrer/a0a+() -sacret/S. -sacrifiable/S. -sacrificatoire/S. -sacrificatrice/F.() -sacrifice/S. -sacrificielle/F.() -sacrifiée/F.() -sacrifier/a0a+() -sacrilège/S. -sacripant/S. -sacristain/S. -sacristi -sacristie/S. -sacristine/S. -sacro-sainte/F.() -sacrum/S. -sadd/S. -sadducéenne/F.() -sadique/S. -sadiquement -sadisme/S. -sadomasochisme/S. -sadomasochiste/S. -safari/S. -safari-photo -safaris-photos -safran/S. -safranée/F.() -safraner/a0a+() -safranière/S. -safre/S. -saga/S. -sagace/S. -sagacité/S. -sagaie/S. -sage/S. -sage-femme -sagement -sages-femmes -sagesse/S. -sagette/S. -s'agir/fZ() -sagittaire/S. -sagittale/W.() -sagittée/F.() -sagou/S. -sagouin/S. -sagoutier/S. -sagum/S. -saharienne/F.() -sahel/S. -sahélienne/F.() -saï/S. -saie/S. -saietter/a0a+() -saïga/S. -saignante/F.() -saignement/S. -saigner/a0a+() -saigneuse/F.() -saigneuse/W.() -saignoir/S. -saillante/F.() -saillie/S. -saillir/iS() -saïmiri/S. -sainbois -saindoux -saine/F.() -sainement -sainfoin/S. -saint-bernard -saint-crépin -saint-cyrienne/F.() -sainte/F.() -saintement -sainteté/S. -saint-frusquin -saint-glinglin -saint-honoré -saint-nectaire -saintongeaise/F.() -saint-paulin -saint-père -saint-pierre -saint-simonienne/F.() -saint-simonisme -saints-pères -saisie/F.() -saisie-arrêt -saisie-brandon -saisie-exécution -saisies-arrêts -saisies-brandons -saisies-exécutions -saisine/S. -saisir/f0f+() -saisissable/S. -saisissante/F.() -saisissement/S. -saisisseur/S. -saison/S. -saisonnale/W.() -saisonnalité/S. -saisonner/a0() -saisonnière/F.() -saisonnièrement -saïte/S. -sajou/S. -saké/S. -saki/S. -salace/S. -salacité/S. -salade/S. -saladerie/S. -saladero/S. -saladier/S. -salafisme/S. -salafiste/S. -salage/S. -salaire/S. -salaison/S. -salamalec/S. -salamandre/S. -salami/S. -salangane/S. -salants -salariale/W.() -salariat/S. -salariée/F.() -salarier/a0a+() -salaud/S. -salée/F.() -salement -salep/S. -saler/a0a+() -saleron/S. -salésienne/F.() -saleté/S. -saleuse/F.() -salicaire/S. -salicine/S. -salicional/S. -salicole/S. -salicoque/S. -salicorne/S. -salicoside/S. -salicylate/S. -salicylique/S. -salie/F.() -salienne/F.() -salière/S. -salifère/S. -salifiable/S. -salification/S. -salifier/a0a+() -saligaude/F.() -salignon/S. -saligote/F.() -saligoter/a0a+() -salinage/S. -saline/F.() -salinière/S. -salinisation/S. -salinité/S. -salique/S. -salir/f0f+() -salissante/F.() -salisson/S. -salissure/S. -salivaire/S. -salivation/S. -salive/S. -saliver/a0() -salle/S. -salmigondis -salmis -salmonelle/S. -salmonellose/S. -salmonicultrice/F.() -salmoniculture/S. -saloir/S. -salol/S. -salomé/S. -salon/S. -salonguer/a0() -salonnarde/F.() -salonnarde/F.() -salonnière/F.() -saloon/S. -salop/S. -salopard/S. -salope/S. -salopée/F.() -saloper/a0a+() -saloperie/S. -salopette/S. -salopiaud/S. -salopiot/S. -salpêtrage/S. -salpêtre/S. -salpêtrée/F.() -salpêtrer/a0a+() -salpêtreuse/W.() -salpêtrière/S. -salpêtrisation/S. -salpicon/S. -salpingite/S. -salsa/S. -salse/S. -salsepareille/S. -salsifis -saltarelle/S. -saltation/S. -saltimbanque/S. -salubre/S. -salubrité/S. -saluée/F.() -saluer/a0a+() -salure/S. -salut -salut/S. -salutaire/S. -salutairement -salutation/S. -salutiste/S. -salvadorienne/F.() -salvatrice/F.() -salve/S. -samare/S. -samaritaine/F.() -samarium/S. -samba/S. -samedi/S. -samit/S. -samizdat/S. -samouraï/S. -samovar/S. -samoyède/S. -sampan/S. -sampi -sample/S. -sampler/S. -sampling/S. -sampot/S. -samsâra -samu/S. -sana/S. -sanatorium/S. -san-benito/S. -sancerre/S. -sanctification/S. -sanctificatrice/F.() -sanctifiée/F.() -sanctifier/a0a+() -sanction/S. -sanctionnée/F.() -sanctionner/a0a+() -sanctuaire/S. -sanctuarisée/F.() -sanctuariser/a0a+() -sanctus -sandale/S. -sandalette/S. -sandaraque/S. -sanderling/S. -sandjak/S. -sandow/S. -sandre/S. -sandwich/S. -sandwicher/a0a+() -sandwicherie/S. -sang/S. -sang-froid -sanglante/F.() -sangle/S. -sanglée/F.() -sangler/a0a+() -sanglier/S. -sanglot/S. -sanglotante/F.() -sanglotement/S. -sangloter/a0() -sang-mêlé -sangria/S. -sangs-mêlés -sangsue/S. -sanguinaire/S. -sanguine/F.() -sanguinolente/F.() -sanhédrin/S. -sanicle/S. -sanie/S. -sanieuse/W.() -sanitaire/S. -sans -sans-abri -sans-cœur -sans-culotte/S. -sans-emploi -sansevière/S. -sans-façon -sans-faute -sans-fil -sans-filiste/S. -sans-gêne -sans-grade -sanskrit/S. -sanskrite/F.() -sanskritisme/S. -sanskritiste/S. -sans-le-sou -sans-logis -sansonnet/S. -sans-papiers -sans-parti -sans-patrie -sans-plomb -sans-serif -sans-soin -sans-souci -santal/S. -santé/S. -santer/a0() -santiag/S. -santon/S. -santonner/a0a+() -santonnière/F.() -sanve/S. -sanza/S. -saônoise/F.() -saoudienne/F.() -saoudite/S. -saoule/F.() -saouler/a0a+() -sapajou/S. -sape/S. -sapée/F.() -sapement/S. -sapèque/S. -saper/a0a+() -saperde/S. -saperlipopette -saperlotte -sapeur/S. -sapeur-pompier -sapeurs-pompiers -saphène/S. -saphique/S. -saphir/S. -saphisme/S. -sapide/S. -sapidité/S. -sapience/S. -sapiens -sapientiale/W.() -sapin/S. -sapine/S. -sapinette/S. -sapinière/S. -sapiteur/S. -saponacée/F.() -saponaire/S. -saponifiable/S. -saponification/S. -saponifier/a0a+() -saponine/S. -sapotier/S. -sapristi -saprophage/S. -saprophyte/S. -saquer/a0a+() -sarabande/S. -sarbacane/S. -sarcasme/S. -sarcastique/S. -sarcastiquement -sarcelle/S. -sarclage/S. -sarcler/a0a+() -sarcleuse/F.() -sarcloir/S. -sarcocèle/S. -sarcoïde/S. -sarcologie/S. -sarcomateuse/W.() -sarcome/S. -sarcophage/S. -sarcoplasme/S. -sarcopte/S. -sardanapalesque/S. -sardane/S. -sarde/S. -sardine/S. -sardinerie/S. -sardinière/F.() -sardoine/S. -sardonique/S. -sardoniquement -sardonyx -sargasse/S. -sari/S. -sarigue/S. -sarin/S. -sarisse/S. -sarment/S. -sarmenteuse/W.() -sarong/S. -saros -sarrancolin/S. -sarrasine/F.() -sarrau/S. -sarrette/S. -sarriette/S. -sarroise/F.() -sarter/a0a+() -sas -sassafras -sassanide/S. -sassement/S. -sassenage/S. -sasser/a0a+() -sasseur/S. -satanée/F.() -sataner/a0a+() -satanique/S. -sataniser/a0a+() -satanisme/S. -sataniste/S. -satellisation/S. -satellisée/F.() -satelliser/a0a+() -satellitaire/S. -satellite/S. -sati/S. -satiété/S. -satin/S. -satinage/S. -satinée/F.() -satiner/a0a+() -satinette/S. -satineuse/F.() -satire/S. -satirique/S. -satiriquement -satiriser/a0a+() -satiriste/S. -satisfaction/S. -satisfaire/wD() -satisfaisante/F.() -satisfaite/F.() -satisfecit -satonner/a0a+() -satrape/S. -satrapie/S. -saturabilité/S. -saturable/S. -saturante/F.() -saturateur/S. -saturation/S. -saturée/F.() -saturer/a0a+() -saturnales -saturne/S. -saturnie/S. -saturnienne/F.() -saturnine/F.() -saturnisme/S. -satyre/S. -satyriasis -satyrique/S. -satyrisme/S. -sauce/S. -saucée/F.() -saucer/a0a+() -saucière/F.() -sauciflard/S. -saucisse/S. -saucisson/S. -saucissonnage/S. -saucissonnée/F.() -saucissonner/a0a+() -sauf -sauf/S. -sauf-conduit/S. -sauge/S. -saugrenue/F.() -saulaie/S. -saule/S. -saulée/S. -saumâtre/S. -saumon/S. -saumoneau/X. -saumonée/F.() -saumurage/S. -saumure/S. -saumurée/F.() -saumurer/a0a+() -sauna/S. -saunage/S. -sauner/a0() -saunière/F.() -saupiquet/S. -saupoudrage/S. -saupoudrée/F.() -saupoudrer/a0a+() -saupoudreuse/F.() -saupoudroir/S. -saure/F.() -saurée/F.() -saurer/a0a+() -saurien/S. -saurin/S. -saurir/f0f+() -saurischien/S. -saurissage/S. -saurisserie/S. -saurisseur/S. -sauropode/S. -saussaie/S. -saut/S. -saut-de-lit -saut-de-loup -saut-de-mouton -saute/S. -sautée/F.() -sautelle/S. -saute-mines -saute-mouton -sauter/a0a+() -sautereau/X. -sauterelle/S. -sauterie/S. -sauternes -saute-ruisseau -sauteuse/F.() -sautillante/F.() -sautillement/S. -sautiller/a0() -sautoir/S. -sauts-de-lit -sauts-de-loup -sauts-de-mouton -sauvage/S. -sauvagement -sauvageonne/F.() -sauvagerie/S. -sauvagine/F.() -sauvée/F.() -sauvegarde/S. -sauvegardée/F.() -sauvegarder/a0a+() -sauve-qui-peut -sauver/a0a+() -sauvetage/S. -sauveté/S. -sauveteuse/F.() -sauvette -sauveur/S. -sauveuse/F.() -savamment -savane/S. -savante/F.() -savarin/S. -savart/S. -savate/S. -savater/a0a+() -saveter -savetier/S. -saveur/S. -savoir/S. -savoir/pE() -savoir-faire -savoir-vivre -savoisienne/F.() -savon/S. -savonnage/S. -savonnée/F.() -savonner/a0a+() -savonnerie/S. -savonnette/S. -savonneuse/W.() -savonnière/F.() -savourée/F.() -savourer/a0a+() -savoureuse/W.() -savoureusement -savoyarde/F.() -saxatile/S. -saxe/S. -saxhorn/S. -saxicole/S. -saxifrage/S. -saxo/S. -saxonne/F.() -saxophone/S. -saxophoniste/S. -saynète/S. -sayon/S. -sb/||-- -sbire/S. -scabieuse/W.() -scabreuse/W.() -scaferlati/S. -scalaire/S. -scalairement -scalde/S. -scaldique/S. -scalène/S. -scalp/S. -scalpée/F.() -scalpel/S. -scalper/a0a+() -scampi/S. -scandale/S. -scandaleuse/W.() -scandaleusement -scandalisée/F.() -scandaliser/a0a+() -scandée/F.() -scander/a0a+() -scandinave/S. -scandium/S. -scannée/F.() -scanner/S. -scanner/a0a+() -scannériser/a0a+() -scanographe/S. -scanographie/S. -scansion/S. -scaphandre/S. -scaphandrière/F.() -scaphite/S. -scaphoïde/S. -scapulaire/S. -scapulo-humérale/W.() -scarabée/S. -scare/S. -scarieuse/W.() -scarifiage/S. -scarificateur/S. -scarification/S. -scarifiée/F.() -scarifier/a0a+() -scarlatine/S. -scarole/S. -scat/S. -scatologie/S. -scatologique/S. -scatophile/S. -sceau/X. -sceau-de-Salomon -sceaux-de-Salomon -scélérate/F.() -scélératesse/S. -scellage/S. -scellée/F.() -scellement/S. -sceller/a0a+() -scénarimage/S. -scénario/S. -scénarisée/F.() -scénariser/a0a+() -scénariste/S. -scène/S. -scénette/S. -scénique/S. -scéniquement -scénographe/S. -scénographie/S. -scénographique/S. -scepticisme/S. -sceptique/S. -sceptiquement -sceptre/S. -schako/S. -schappe/S. -schelem/S. -schéma/S. -schématèque/S. -schématique/S. -schématiquement -schématisation/S. -schématisée/F.() -schématiser/a0a+() -schématisme/S. -schème/S. -schéol/S. -scherzo -scherzo/S. -schilling/S. -schismatique/S. -schisme/S. -schiste/S. -schisteuse/W.() -schistoïde/S. -schizogamie/S. -schizogenèse/S. -schizoïde/S. -schizoïdie/S. -schizonévrose/S. -schizophrène/S. -schizophrénie/S. -schizophrénique/S. -schizothymie/S. -schlague/S. -schlamm/S. -schlass -schlich/S. -schlinguer/a0() -schlittage/S. -schlitte/S. -schlitter/a0a+() -schlitteur/S. -schmecter/a0() -schnaps -schnauzer/S. -schnorchel/S. -schnorkel/S. -schnouff/S. -schofar/S. -scholie/S. -schooner/S. -schorre/S. -schupo/S. -schuss -schwarzienne/F.() -sciable/S. -sciage/S. -scialytique/S. -sciatique/S. -scie/S. -sciée/F.() -sciemment -science/S. -science-fiction -sciences-fictions -sciène/S. -scientificité/S. -scientifique/S. -scientifiquement -scientisme/S. -scientiste/S. -scientologie -scientologue/S. -scientométrie/S. -scier/a0a+() -scierie/S. -scieuse/F.() -scille/S. -scindable/S. -scindage/S. -scindée/F.() -scinder/a0a+() -scinque/S. -scintigraphie/S. -scintillante/F.() -scintillation/S. -scintillement/S. -scintiller/a0() -scion/S. -sciotte/S. -sciotter/a0a+() -scirpe/S. -scissile/S. -scission/S. -scissionner/a0() -scissionniste/S. -scissipare/S. -scissiparité/S. -scissure/S. -sciure/S. -sclérale/W.() -scléranthe/S. -scléreuse/W.() -sclérifiante/F.() -sclérifiée/F.() -sclérifier/a0a+() -sclérite/S. -scléro-choroïdite/S. -scléro-conjonctivite/S. -scléroderme/S. -sclérokératite/S. -sclérophylle/S. -scléroprotéine/S. -sclérosante/F.() -sclérose/S. -sclérosée/F.() -scléroser/a0a+() -sclérothérapie/S. -sclérotique/S. -scléterectasie/S. -scléterectomie/S. -scolaire/S. -scolairement -scolarisable/S. -scolarisation/S. -scolarisée/F.() -scolariser/a0a+() -scolarité/S. -scolasticat/S. -scolastique/S. -scolastiquement -scolex -scoliaste/S. -scolie/S. -scoliose/S. -scolopacidé/S. -scolopendre/S. -scolyte/S. -sconse/S. -scoop/S. -scooter/S. -scootériste/S. -scopie/S. -scopolamine/S. -scorbut/S. -scorbutique/S. -score/S. -scoriacée/F.() -scorie/S. -scorifier/a0a+() -scorpioïde/S. -scorpion/S. -scorsonère/S. -scota -scotch/S. -scotchée/F.() -scotcher/a0a+() -scotie/S. -scotisme/S. -scotiste/S. -scotomisation/S. -scots -scottish/S. -scoubidou/S. -scoured/S. -scoute/F.() -scoutisme/S. -scrabble/S. -scramasaxe/S. -scrapbooking/S. -scraper/S. -scratch -scratch/S. -scratcher/a0a+() -scratching/S. -scriban/S. -scribe/S. -scribouillage/S. -scribouillarde/F.() -scribouiller/a0a+() -scribouilleuse/F.() -scripte/F.() -scripteur/S. -script-girl/S. -scriptorium/S. -scripturaire/S. -scripturale/W.() -scrofulaire/S. -scrofule/S. -scrofuleuse/W.() -scrogneugneu/X. -scrolling/S. -scrubber/S. -scrupule/S. -scrupuleuse/W.() -scrupuleusement -scrutation/S. -scrutatrice/F.() -scruter/a0a+() -scrutin/S. -scull/S. -sculptée/F.() -sculpter/a0a+() -sculptrice/F.() -sculpturale/W.() -sculpture/S. -scutellaire/S. -scutum/S. -scythe/S. -scythique/S. -se -seaborgium/S. -séance/S. -séante/F.() -seau/X. -sébacée/F.() -sébaste/S. -sébile/S. -sebkha/S. -séborrhée/S. -séborrhéide/S. -séborrhéique/S. -sébum/S. -sécable/S. -secam/S. -sécante/F.() -sécateur/S. -sécession/S. -sécessionniste/S. -séchage/S. -sèche/F.() -sèche-cheveux -séchée/F.() -sèche-linge -sèche-mains -sèchement -sécher/c0a+() -sécheresse/S. -sécherie/S. -sécheuse/F.() -séchoir/S. -secondaire/S. -secondairement -secondarité/S. -seconde/F.() -seconde/Um() -secondée/F.() -secondement -seconder/a0a+() -secouante/F.() -secouée/F.() -secouement/S. -secouer/a0a+() -secoueur/S. -secourable/S. -secoureur/S. -secourir/iE() -secourisme/S. -secouriste/S. -secours -secourue/F.() -secousse/S. -secrétage/S. -secrétaire/S. -secrétairerie/S. -secrétariat/S. -secrète/F.() -secrétée/F.() -sécrétée/F.() -secrètement -secréter/c0a+() -sécréter/c0a+() -sécréteuse/S. -sécrétine/S. -sécrétion/S. -sécrétoire/S. -sécrétrice/F.() -sectaire/S. -sectarisme/S. -sectatrice/F.() -secte/S. -secteur/S. -section/S. -sectionnée/F.() -sectionnelle/F.() -sectionnement/S. -sectionner/a0a+() -sectionneur/S. -sectorielle/F.() -sectorisation/S. -sectoriser/a0a+() -séculaire/S. -séculairement -sécularisation/S. -sécularisée/F.() -séculariser/a0a+() -sécularité/S. -séculière/F.() -séculièrement -secundo -sécurisante/F.() -sécurisation/S. -sécurisée/F.() -sécuriser/a0a+() -sécuritaire/S. -sécurité/S. -sédation/S. -sédative/F.() -sédénion/S. -sédentaire/S. -sédentarisation/S. -sédentarisée/F.() -sédentariser/a0a+() -sédentarisme/S. -sédentarité/S. -sédiment/S. -sédimentaire/S. -sédimentation/S. -sédimenter/a0a+() -sédimentologie/S. -sédimentologique/S. -sédimentologue/S. -séditieuse/W.() -séditieusement -sédition/S. -séduction/S. -séductrice/F.() -séduire/yL() -séduisante/F.() -séduite/F.() -sedum/S. -séfarade/S. -séga/S. -ségala/S. -segment/S. -segmentaire/S. -segmentale/W.() -segmentation/S. -segmentée/F.() -segmenter/a0a+() -ségrairie/S. -ségrais -ségrégation/S. -ségrégationnisme/S. -ségrégationniste/S. -ségrégative/F.() -ségrégée/F.() -ségréguée/F.() -ségréguer/c0a+() -séguedille/S. -seguia/S. -seguidilla/S. -seiche/S. -séide/S. -seigle/S. -seigneur/S. -seigneuriage/S. -seigneuriale/W.() -seigneurie/S. -seille/S. -seillon/S. -seime/S. -sein/S. -seine/S. -seing/S. -séisme/S. -séismicité/S. -séismique/S. -séismographe/S. -séismologie/S. -seize -seizième/S. -seizièmement -seiziémisme/S. -séjour/S. -séjourner/a0a+() -sel/S. -sélacien/S. -sélaginelle/S. -sélecte/F.() -sélecter/a0a+() -sélection/S. -sélectionnable/S. -sélectionnée/F.() -sélectionner/a0a+() -sélectionneuse/F.() -sélective/F.() -sélectivement -sélectivité/S. -sélectrice/F.() -séléniate/S. -sélénienne/F.() -sélénieux -sélénique/S. -sélénite/S. -séléniteuse/W.() -sélénium/S. -séléniure/S. -sélénographie/S. -sélénographique/S. -sélénologie/S. -séleucide/S. -self/S. -self-control -self-government/S. -self-inductance/S. -self-induction/S. -self-made-man/S. -self-made-woman/S. -self-service/S. -selle/S. -sellée/F.() -seller/a0a+() -sellerie/S. -sellette/S. -sellier/S. -selon -selve/S. -semailles -semaine/S. -semainière/F.() -sémantème/S. -sémanticienne/F.() -sémantique/S. -sémantiquement -sémaphore/S. -sémaphorique/S. -sémasiologie/S. -semblable/S. -semblablement -semblance/S. -semblant/S. -sembler/a0() -semée/F.() -séméiologie/S. -séméiotique/S. -semelle/S. -semence/S. -semer/b0a+() -semestre/S. -semestrielle/F.() -semestriellement -semeuse/F.() -semi/S. -semi-aride/S. -semi-automatique/S. -semi-auxiliaire/S. -semi-chenillée/F.() -semi-circulaire/S. -semi-coke/S. -semi-conducteur/S. -semi-conductrice/F.() -semi-consonne/S. -semi-finie/F.() -sémillante/F.() -sémillon/S. -semi-lunaire/S. -semi-manufacturée/F.() -semi-marathon/S. -semi-marathonienne/F.() -séminaire/S. -séminale/W.() -séminariste/S. -semi-nomade/S. -semi-nomadisme/S. -sémiologie/S. -sémiologique/S. -sémiologue/S. -sémioticienne/F.() -sémiotique/S. -semi-ouvrée/F.() -semi-perméable/S. -semi-polaire/S. -semi-produit/S. -semi-publique/F.() -semi-remorque/S. -semi-rigide/S. -semis -sémite/S. -sémitique/S. -sémitisme/S. -semi-voyelle/S. -semnopithèque/S. -semoir/S. -semonce/S. -semoncer/a0a+() -semoule/S. -semoulerie/S. -sempervirente/F.() -sempervivum -sempiternelle/F.() -sempiternellement -semple/S. -sen -sénaire/S. -sénat/S. -sénatoriale/W.() -sénatrice/F.() -sénatus-consulte/S. -senau/X. -séné/S. -sénéchal/X. -sénéchaussée/S. -séneçon/S. -sénégalaise/F.() -sénégaliser/a0a+() -sénégambienne/F.() -sénescence/S. -sénescente/F.() -senestre/S. -senestrochère/S. -senestrorsum -senestrorsum -sénevé/S. -sénile/S. -sénilité/S. -senior/S. -séniorie/S. -séniorité/S. -senne/S. -señorita/S. -sensass -sensation/S. -sensationnalisme/S. -sensationnaliste/S. -sensationnelle/F.() -sensée/F.() -sensément -senseur/S. -sensibilisante/F.() -sensibilisation/S. -sensibilisatrice/F.() -sensibilisée/F.() -sensibiliser/a0a+() -sensibilité/S. -sensible/S. -sensiblement -sensiblerie/S. -sensitive/F.() -sensitivité/S. -sensitogramme/S. -sensitographe/S. -sensitomètre/S. -sensitométrie/S. -sensitométrique/S. -sensorialité/S. -sensorielle/F.() -sensorimétrie/S. -sensorimétrique/S. -sensorimotrice/F.() -sensu -sensualisme/S. -sensualiste/S. -sensualité/S. -sensuelle/F.() -sensuellement -sentence/S. -sentencieuse/W.() -sentencieusement -senteur/S. -sentie/F.() -sentier/S. -sentiment/S. -sentimentale/W.() -sentimentalement -sentimentalisme/S. -sentimentalité/S. -sentine/S. -sentinelle/S. -sentir/i5i+() -seoir/pU() -seoir/pV() -sep/S. -sépale/S. -sépaloïde/S. -séparabilité/S. -séparable/S. -séparation/S. -séparatisme/S. -séparatiste/S. -séparatrice/F.() -séparée/F.() -séparément -séparer/a0a+() -sépia -sépia/S. -seppuku/S. -sept -sept -septain/S. -septantaine/S. -septante -septante-cinq -septante-deux -septante-et-un -septante-huit -septante-neuf -septante-quatre -septante-sept -septante-six -septante-trois -septantième/S. -septembre/S. -septembrisades -septembriseur/S. -septemvir/S. -septénaire/S. -septennale/W.() -septennalité/S. -septennat/S. -septentrion/S. -septentrionale/W.() -septicémie/S. -septicémique/S. -septicité/S. -septidi/S. -septième/S. -septièmement -septillion/S. -septime/S. -septimo -septique/S. -septmoncel/S. -septomycète/S. -septuagénaire/S. -septuagésime/S. -septum -septuor/S. -septuple/S. -septuplée/F.() -septupler/a0a+() -sépulcrale/W.() -sépulcre/S. -sépulture/S. -séquelle/S. -séquençage/S. -séquence/S. -séquencée/F.() -séquencement/S. -séquencer/a0a+() -séquenceur/S. -séquentialité/S. -séquentielle/F.() -séquentiellement -séquestration/S. -séquestrée/F.() -séquestrer/a0a+() -sequin/S. -séquoia/S. -sérac/S. -sérail/S. -sérancer/a0a+() -sérapéum/S. -séraphin/S. -séraphine/F.() -séraphique/S. -serbe/S. -serbo-croate/S. -serdeau/S. -sereine/F.() -sereinement -sérénade/S. -sérendipité/S. -sérénissime/S. -sérénité/S. -séreuse/W.() -serf/S. -serfouette/S. -serfouir/f0f+() -serfouissage/S. -serge/S. -sergé/S. -sergent/S. -sergent-major -sergents-majors -sergette/S. -sérialisation/S. -sérialisée/F.() -sérialiser/a0a+() -sériation/S. -séricicole/S. -séricicultrice/F.() -sériciculture/S. -séricigène/S. -séricigraphie/S. -série/S. -sérielle/F.() -sérier/a0a+() -sérieuse/W.() -sérieusement -serif/S. -sérigraphie/S. -serine/F.() -sérine/S. -seriner/a0a+() -seringa/S. -seringat/S. -seringue/S. -seringuer/a0a+() -seringuero/S. -sérique/S. -serlienne/S. -serment/S. -sermon/S. -sermonnaire/S. -sermonnée/F.() -sermonner/a0a+() -sermonneuse/F.() -sérodiagnostic/S. -sérologie/S. -sérologique/S. -séropositive/F.() -séropositivité/S. -sérosité/S. -sérothérapie/S. -sérotonine/S. -sérovaccination/S. -serpe/S. -serpent/S. -serpentaire/S. -serpenteau/X. -serpentement/S. -serpenter/a0() -serpentiforme/S. -serpentine/F.() -serpette/S. -serpigineuse/W.() -serpillière/S. -serpolet/S. -serpule/S. -serrage/S. -serran/S. -serrate/S. -serratule/S. -serre/S. -serre-bosse -serre-câble -serrée/F.() -serre-écrou -serre-file/S. -serre-fils -serre-frein/S. -serre-joint/S. -serre-livres -serrement/S. -serre-nez -serre-papiers -serrer/a0a+() -serre-tête -serre-tube/S. -serrure/S. -serrurerie/S. -serrurière/F.() -serte/S. -sertie/F.() -sertir/f0f+() -sertissage/S. -sertisseuse/F.() -sertissure/S. -sertraline/S. -sérum/S. -servage/S. -serval/S. -servante/F.() -serveuse/F.() -serviabilité/S. -serviable/S. -service/S. -servie/F.() -serviette/S. -serviette-éponge -serviettes-éponges -servile/S. -servilement -servilité/S. -servir/iF() -serviteur/S. -servitude/S. -servocommande/S. -servofrein/S. -servomécanisme/S. -servomoteur/S. -ses -sésame/S. -sésamoïde/S. -sesbania/S. -sesbanie/S. -sesquialtère/S. -sesquilinéaire/S. -sesquioxyde/S. -sesquiterpène/S. -sessile/S. -session/S. -sesterce/S. -set/S. -sétacée/F.() -setier/S. -séton/S. -setter/S. -seuil/S. -seuillage/S. -seuillée/F.() -seule/F.() -seulement -seulette/F.() -sève/S. -sévère/S. -sévèrement -sévérité/S. -sévices -sévir/f0() -sevrage/S. -sevrée/F.() -sevrer/b0a+() -sexagénaire/S. -sexagésimale/W.() -sexagésime/S. -sex-appeal/S. -sexe/S. -sexisme/S. -sexiste/S. -sexologie/S. -sexologue/S. -sexonomie/S. -sexothérapeute/S. -sexothérapie/S. -sex-shop/S. -sextant/S. -sexte/S. -sextet/S. -sextidi/S. -sextillion/S. -sextine/S. -sexto -sextolet/S. -sextuor/S. -sextuple/S. -sextuplée/F.() -sextupler/a0a+() -sexualisation/S. -sexualiser/a0a+() -sexualisme/S. -sexualité/S. -sexuée/F.() -sexuelle/F.() -sexuellement -sexy -seyante/F.() -sézigue -sforzando -sfumato/S. -sgraffite/S. -shaker/S. -shakespearienne/F.() -shako/S. -shampoing/S. -shampouiner/a0a+() -shampouineuse/F.() -shantung/S. -shérif/S. -sherpa/S. -sherry/S. -shetland/S. -shiatsu/S. -shilling/S. -shimmy/S. -shinto/S. -shintoïsme/S. -shintoïste/S. -ship/S. -shipchandler/S. -shirt/S. -shocking -shogun/S. -shogunale/W.() -shogunat/S. -shoot/S. -shooter/a0a+() -shopping/S. -short/S. -shot/S. -show/S. -show-business -showroom/S. -shrapnel/S. -shunt/S. -shunter/a0a+() -si -si -si -sial/S. -sialagogue/S. -sialis -sialorrhée/S. -siamoise/F.() -sibérienne/F.() -sibilante/F.() -sibylle/S. -sibylline/F.() -sic -sicaire/S. -siccative/F.() -siccité/S. -sicilienne/F.() -sicle/S. -sida -side-car/S. -sidéenne/F.() -sidérale/W.() -sidérante/F.() -sidérée/F.() -sidérer/c0a+() -sidérite/S. -sidérolithique/S. -sidérose/S. -sidérostat/S. -sidéroxylon/S. -sidérurgie/S. -sidérurgique/S. -sidérurgiste/S. -siècle/S. -siège/S. -siéger/c0() -siemens/Um() -sienne/F.() -sierra/S. -sieste/S. -siester/a0() -sieur/S. -sievert/Um() -sifflage/S. -sifflante/F.() -sifflée/F.() -sifflement/S. -siffler/a0a+() -sifflet/S. -siffleuse/F.() -sifflotement/S. -siffloter/a0a+() -sifilet/S. -sigillaire/S. -sigillée/F.() -sigillographie/S. -sigillographique/S. -sigisbée/S. -siglaison/S. -sigle/S. -sigma -sigmoïde/S. -signal/X. -signalée/F.() -signalement/S. -signaler/a0a+() -signalétique/S. -signaleur/S. -signalisation/S. -signalisée/F.() -signaliser/a0a+() -signataire/S. -signature/S. -signe/S. -signée/F.() -signer/a0a+() -signet/S. -signifiance/S. -signifiante/F.() -signification/S. -significative/F.() -significativement -signifier/a0a+() -sikhe/F.() -sikhisme/S. -sil/S. -silane/S. -silence/S. -silencieuse/W.() -silencieusement -silène/S. -silésienne/S. -silex -silhouette/S. -silhouetter/a0a+() -silicagel/S. -silicate/S. -silicatiser/a0a+() -silice -siliceuse/W.() -silicicole/S. -silicique/S. -silicium/S. -siliciure/S. -silicone/S. -siliconée/F.() -siliconer/a0a+() -silicose/S. -silicule/S. -silionne/S. -silique/S. -sillage/S. -sillet/S. -sillimanite/S. -sillon/S. -sillonnée/F.() -sillonner/a0a+() -silo/S. -silotage/S. -silphe/S. -silure/S. -silurienne/F.() -siluroïde/S. -sima/S. -simagrée/S. -simarre/S. -simaruba/S. -simbleau/X. -simienne/F.() -simiesque/S. -similaire/S. -similairement -similarité/S. -simili/S. -similicuir/S. -similigravure/S. -similisage/S. -similiser/a0a+() -similiste/S. -similitude/S. -similor/S. -simoniaque/S. -simonie/S. -simonienne/F.() -simonisme/S. -simoun/S. -simple/S. -simplement -simplette/F.() -simplex -simplexe/S. -simpliciale/W.() -simplicialement -simplicité/S. -simplifiable/S. -simplification/S. -simplificatrice/F.() -simplifiée/F.() -simplifier/a0a+() -simplisme/S. -simpliste/S. -simulacre/S. -simulation/S. -simulatrice/F.() -simulée/F.() -simuler/a0a+() -simultanée/F.() -simultanéisme/S. -simultanéité/S. -simultanément -sinanthrope/S. -sinapisée/F.() -sinapisme/S. -sincère/S. -sincèrement -sincérité/S. -sincipitale/W.() -sinciput/S. -sinécure/S. -singalette/S. -singapourienne/F.() -singe/S. -singée/F.() -singer/a0a+() -singerie/S. -single/S. -singleton/S. -singularisation/S. -singulariser/a0a+() -singularité/S. -singulet/S. -singulière/F.() -singulièrement -sinisante/F.() -sinisation/S. -siniser/a0a+() -sinistralité/S. -sinistre/S. -sinistrée/F.() -sinistrement -sinité/S. -sinogramme/S. -sinologie/S. -sinologue/S. -sinon -sinophone/S. -sinople/S. -sinueuse/W.() -sinuosité/S. -sinus -sinusale/W.() -sinusite/S. -sinusoïdale/W.() -sinusoïde/S. -sionisme/S. -sioniste/S. -sioux -siphoïde/S. -siphomycète/S. -siphon/S. -siphonnage/S. -siphonnée/F.() -siphonner/a0a+() -sir -sirdar/S. -sire/S. -sirène/S. -sirex -sirli/S. -sirocco/S. -sirop/S. -siroter/a0a+() -sirupeuse/W.() -sirvente/S. -sirventès -sisal/S. -sise/F.() -sismale/W.() -sismicité/S. -sismique/S. -sismographe/S. -sismologie/S. -sismologique/S. -sismologue/S. -sismothérapie/S. -sistership/S. -sistre/S. -sisymbre/S. -sitar/S. -sitcom/S. -site/S. -sit-in -sitogoniomètre/S. -sitôt -sittelle/S. -situ -situation/S. -situationnisme/S. -situationniste/S. -située/F.() -situer/a0a+() -sium/S. -six -sixain/S. -sixième/S. -sixièmement -sixte/S. -sizain/S. -sizerin/S. -skaï/S. -skate/S. -skateboard/S. -skating/S. -sketch/S. -ski/S. -skiable/S. -skiascopie/S. -skier/a0() -skieuse/F.() -skiff/S. -skipper/S. -sky-surf/S. -sky-surfing/S. -slalom/S. -slalomer/a0() -slalomeuse/F.() -slang/S. -slash/S. -slave/S. -slavisante/F.() -slavisée/F.() -slaviser/a0a+() -slaviste/S. -slavonne/F.() -slavophile/S. -sleeping/S. -slice/S. -slicer/a0a+() -slip/S. -slogan/S. -sloop/S. -sloughi/S. -slovaque/S. -slovène/S. -slow/S. -smala/S. -smalt/S. -smaltine/S. -smaragdine/F.() -smaragdite/S. -smart -smartphone/S. -smash/S. -smasher/a0a+() -smectique/S. -smicarde/F.() -smilax -smiley/S. -smillage/S. -smille/S. -smiller/a0a+() -smilodon/S. -smithsonite/S. -smocks -smog/S. -smoking/S. -smolt/S. -smorzando -smurf/S. -snack/S. -snack-bar/S. -sniff -sniffer/a0a+() -snob/S. -snobée/F.() -snober/a0a+() -snobinarde/F.() -snobisme/S. -snooker/S. -snowboard/S. -snow-boot/S. -sobre/S. -sobrement -sobriété/S. -sobriquet/S. -soc/S. -soccer/S. -sociabilité/S. -sociable/S. -social-chrétien -social-démocrate -social-démocratie/S. -sociale/W.() -sociale-chrétienne -sociale-démocrate -socialement -sociales-chrétiennes -sociales-démocrates -socialisante/F.() -socialisation/S. -socialisée/F.() -socialiser/a0a+() -socialisme/S. -socialiste/S. -sociatrie/S. -sociaux-chrétiens -sociaux-démocrates -sociétaire/S. -sociétale/W.() -sociétariat/S. -société/S. -société-écran -sociétés-écrans -socinianisme/S. -socio-affective/F.() -socioculturelle/F.() -sociodrame/S. -socio-économique/S. -socio-éducative/F.() -sociogramme/S. -sociolecte/S. -sociolinguistique/S. -sociologie/S. -sociologique/S. -sociologiquement -sociologisme/S. -sociologue/S. -sociométrie/S. -sociométrique/S. -sociopathe/S. -sociopathie/S. -sociopathique/S. -socioprofessionnelle/F.() -sociothérapie/S. -socle/S. -socque/S. -socquette/S. -socratique/S. -socratiser/a0() -soda/S. -sodalité/S. -sodée/F.() -sodique/S. -sodium/S. -sodoku/S. -sodomie/S. -sodomisée/F.() -sodomiser/a0a+() -sodomite/S. -sœur/S. -sœurette/S. -sofa/S. -soffite/S. -softball/S. -software/S. -soi -soi-disant -soie/S. -soierie/S. -soif/S. -soiffarde/F.() -soignante/F.() -soignée/F.() -soigner/a0a+() -soigneuse/F.() -soigneuse/W.() -soigneusement -soi-même -soin/S. -soir/S. -soirée/S. -soirer/a0() -soit -soit-communiqué/S. -soixantaine/S. -soixante -soixante-cinq -soixante-deux -soixante-dix -soixante-dix-huit -soixante-dix-neuf -soixante-dix-sept -soixante-douze -soixante-et-onze -soixante-et-un -soixante-huit -soixante-huitarde/F.() -soixante-neuf -soixante-quatorze -soixante-quatre -soixante-quinze -soixante-seize -soixante-sept -soixante-six -soixante-treize -soixante-trois -soixantième/S. -soja/S. -sol -sol/S. -solaire/S. -solanée/S. -solarigraphe/S. -solariser/a0a+() -solarium/S. -soldanelle/S. -soldate/F.() -soldatesque/S. -solde/S. -soldée/F.() -solder/a0a+() -soldeuse/F.() -sole/S. -soléaire/S. -solécisme/S. -soleil/S. -solen/S. -solennelle/F.() -solennellement -solenniser/a0a+() -solennité/S. -solénoïdale/W.() -solénoïde/S. -soleret/S. -solex -solfatare/S. -solfège/S. -solfier/a0a+() -solidage/S. -solidaire/S. -solidairement -solidarisée/F.() -solidariser/a0a+() -solidarisme/S. -solidarité/S. -solide/S. -solidement -solidification/S. -solidifiée/F.() -solidifier/a0a+() -solidité/S. -solière/F.() -solière-moquettiste -solières-moquettistes -solier-moquettiste -soliers-moquettistes -solifluer/a0() -solifluxion/S. -soliloque/S. -soliloquer/a0() -solin/S. -solipède/S. -solipsisme/S. -solipsiste/S. -soliste/S. -solitaire/S. -solitairement -soliton/S. -solitude/S. -solive/S. -soliveau/X. -sollicitation/S. -sollicitée/F.() -solliciter/a0a+() -solliciteuse/F.() -sollicitude/S. -solmisation/S. -solmiser/a0a+() -solo/S. -solstice/S. -solsticiale/W.() -solubilisation/S. -solubiliser/a0a+() -solubilité/S. -soluble/S. -soluté/S. -solution/S. -solutionnaire/S. -solutionner/a0a+() -solutréenne/F.() -solvabilité/S. -solvable/S. -solvant/S. -solvatation/S. -soma/S. -somalie/F.() -somalienne/F.() -soman/S. -somation/S. -somatique/S. -somatisation/S. -somatiser/a0a+() -somato-dendritique/S. -somatologie/S. -somato-psychique/S. -somatotrope/S. -somatotrophine/S. -sombre/S. -sombrement -sombrer/a0() -sombrero/S. -somesthésie/S. -somesthésique/S. -somite/S. -sommabilité/S. -sommable/S. -sommaire/S. -sommairement -sommants -sommation/S. -sommatoire/S. -somme/S. -sommée/F.() -sommeil/S. -sommeiller/a0() -sommeilleuse/W.() -sommelière/F.() -sommellerie/S. -sommer/a0a+() -sommet/S. -sommier/S. -sommitale/W.() -sommité/S. -somnambule/S. -somnambulique/S. -somnambuliquement -somnambulisme/S. -somnanbulesque/S. -somnifère/S. -somnolence/S. -somnolente/F.() -somnoler/a0() -somoni/S. -somptuaire/S. -somptueuse/W.() -somptueusement -somptuosité/S. -son -son/S. -sonagramme/S. -sonagraphe/S. -sonal/S. -sonar/S. -sonate/S. -sonatine/S. -sondage/S. -sondagière/F.() -sonde/S. -sondée/F.() -sonder/a0a+() -sondeuse/F.() -songe/S. -songe-creux -songer/a0() -songerie/S. -songeuse/F.() -songeusement -sonique/S. -sonnailler/a0() -sonnante/F.() -sonnée/F.() -sonner/a0a+() -sonnerie/S. -sonnet/S. -sonnette/S. -sonneur/S. -sono/S. -sonomètre/S. -sonore/S. -sonorisation/S. -sonorisée/F.() -sonoriser/a0a+() -sonorité/S. -sonothèque/S. -sonotone/S. -sonrer/a0() -sophisme/S. -sophiste/S. -sophistication/S. -sophistiquée/F.() -sophistiquer/a0a+() -sophora/S. -sophrologie/S. -sophrologue/S. -soporifique/S. -sopraniste/S. -soprano/S. -soquet/S. -soqueter/d0() -sorabe/S. -sorbe/S. -sorbet/S. -sorbetière/S. -sorbier/S. -sorbitol/S. -sorbonnarde/F.() -sorcellerie/S. -sorcière/F.() -sordide/S. -sordidement -sordidité/S. -sore/S. -sorgho/S. -sornette/S. -sororale/W.() -sororalement -sororat/S. -sororité/S. -sort/S. -sortable/S. -sortante/F.() -sorte/S. -sortie/F.() -sortie/S. -sortie-de-bain -sorties-de-bain -sortilège/S. -sortir/fD() -sortir/i5i+() -sosie/S. -sostenuto -sotch/S. -sot-l'y-laisse -sotte/F.() -sottement -sottie/S. -sottise/S. -sottisier/S. -sou/S. -souabe/S. -souahélie/F.() -soubassement/S. -soubattre/uA() -soubresaut/S. -soubresauter/a0() -soubrette/S. -soubreveste/S. -souche/S. -souchet/S. -soucheter/d0a+() -souchever/b0a+() -sou-chong -souci/S. -soucier/a0a+() -soucieuse/W.() -soucieusement -soucoupe/S. -soudable/S. -soudage/S. -soudaine/F.() -soudainement -soudaineté/S. -soudan/S. -soudanaise/F.() -soudante/F.() -soudard/S. -soude/S. -soudée/F.() -souder/a0a+() -soudeuse/F.() -soudière/F.() -soudoyée/F.() -soudoyer/a0a+() -soudure/S. -soue/S. -soufferte/F.() -soufflage/S. -soufflante/F.() -soufflard/S. -soufflée/F.() -soufflement/S. -souffler/a0a+() -soufflerie/S. -soufflet/S. -souffleter/d0a+() -souffletier/S. -souffleuse/F.() -soufflure/S. -souffrance/S. -souffrante/F.() -souffre-douleur -souffreteuse/W.() -souffrir/iC() -soufie/F.() -soufisme/S. -soufrage/S. -soufre/S. -soufrée/F.() -soufrer/a0a+() -soufreuse/F.() -soufrière/S. -soufroir/S. -souhait/S. -souhaitable/S. -souhaitée/F.() -souhaiter/a0a+() -souillarde/F.() -souillée/F.() -souiller/a0a+() -souillon/S. -souillure/S. -souimanga/S. -souk/S. -soulagée/F.() -soulagement/S. -soulager/a0a+() -soulane/S. -soûlante/F.() -soûlarde/F.() -soûlaude/F.() -soûle/F.() -soûler/a0a+() -soûlerie/S. -soulevée/F.() -soulèvement/S. -soulever/b0a+() -soulier/S. -soulignage/S. -soulignée/F.() -soulignement/S. -souligner/a0a+() -soûlographe/S. -soûlographie/S. -souloir -soûlonne/F.() -soûlote/F.() -soulte/S. -soumettre/vA() -soumise/F.() -soumission/S. -soumissionnaire/S. -soumissionner/a0a+() -soupape/S. -soupçon/S. -soupçonnable/S. -soupçonnée/F.() -soupçonner/a0a+() -soupçonneuse/W.() -soupçonneusement -soupe/S. -soupente/S. -souper/S. -souper/a0() -soupesée/F.() -soupeser/b0a+() -soupeuse/F.() -soupière/S. -soupir/S. -soupirail/X. -soupirante/F.() -soupirer/a0a+() -souple/S. -souplement -souplesse/S. -souquenille/S. -souquer/a0a+() -sourate/S. -sourçage/S. -source/S. -sourcière/F.() -sourcil/S. -sourcilière/F.() -sourciller/a0() -sourcilleuse/W.() -sourde/F.() -sourdement -sourde-muette -sourdes-muettes -sourdine/S. -sourdiner/a0a+() -sourdingue/S. -sourd-muet -sourdre/xM() -sourds-muets -souriante/F.() -souriceau/X. -souricière/S. -sourire/S. -sourire/yW() -souris -souris -sournoise/F.() -sournoisement -sournoiserie/S. -sous-activité/S. -sous-admissible/S. -sous-aide/S. -sous-alimentation/S. -sous-alimentée/F.() -sous-alimenter/a0a+() -sous-amendement/S. -sous-arbrisseau/X. -sous-bailleur/S. -sous-barbe/S. -sous-bas -sous-bibliothécaire/S. -sous-bois -sous-brigadier/S. -sous-calibrée/F.() -sous-cavage/S. -sous-chef/S. -sous-classe/S. -sous-clavière/F.() -sous-commission/S. -sous-compte/S. -sous-comptoir/S. -sous-consommation/S. -sous-continent/S. -sous-couche/S. -souscription/S. -souscriptrice/F.() -souscrire/y1() -souscrite/F.() -sous-cutanée/F.() -sous-développée/F.() -sous-développement/S. -sous-diaconat/S. -sous-diacre/S. -sous-diagonale/S. -sous-directrice/F.() -sous-dominante/F.() -sous-économe/S. -sous-embranchement/S. -sous-emploi/S. -sous-employée/F.() -sous-employer/a0a+() -sous-ensemble/S. -sous-entendre/tA() -sous-entendu/S. -sous-entendue/F.() -sous-épidermique/S. -sous-équipée/F.() -sous-équipement/S. -sous-estimation/S. -sous-estimée/F.() -sous-estimer/a0a+() -sous-évaluation/S. -sous-évaluée/F.() -sous-évaluer/a0a+() -sous-exploitation/S. -sous-exploitée/F.() -sous-exploiter/a0a+() -sous-exposée/F.() -sous-exposer/a0a+() -sous-exposition/S. -sous-expression/S. -sous-faîtage/S. -sous-faîte/S. -sous-fifre/S. -sous-filiale/S. -sous-frutescente/F.() -sous-garde/S. -sous-genre/S. -sous-gorge -sous-gouverneur/S. -sousharmonique/S. -sous-homme/S. -sous-imposition/S. -sous-ingénieur/S. -sous-intendante/F.() -sous-investir -sous-jacente/F.() -sous-lieutenante/F.() -souslik/S. -sous-locataire/S. -sous-location/S. -sous-louée/F.() -sous-louer/a0a+() -sous-main -sous-maîtresse/F.() -sous-marin/S. -sous-marinier/S. -sous-multiple/S. -sous-nappe/S. -sous-normale/S. -sous-occipitale/W.() -sous-œuvre/S. -sous-off/S. -sous-officier/S. -sous-orbitaire/S. -sous-ordre/S. -sous-palan -sous-payée/F.() -sous-payer/a0a+() -sous-peuplée/F.() -sous-peuplement/S. -sous-pied/S. -sous-préfecture/S. -sous-préfète/F.() -sous-production/S. -sous-produit/S. -sous-programme/S. -sous-prolétaire/S. -sous-prolétariat/S. -sous-pubienne/F.() -sous-pull/S. -sous-rémunérée/F.() -sous-rémunérer/c0a+() -sous-répertoire/S. -sous-réseau/X. -sous-routine/S. -sous-scapulaire/S. -sous-secrétaire/S. -sous-secrétariat/S. -sous-section/S. -sous-seing -soussignée/F.() -sous-sol/S. -sous-station/S. -sous-système/S. -sous-tangente/S. -sous-tasse/S. -sous-tendre/tA() -sous-tension/S. -sous-titrage/S. -sous-titre/S. -sous-titrée/F.() -sous-titrer/a0a+() -soustracteur/S. -soustraction/S. -soustractive/F.() -soustraire/wL() -sous-traitance/S. -sous-traitante/F.() -soustraite/F.() -sous-traitée/F.() -sous-traiter/a0a+() -sous-utilisée/F.() -sous-utiliser/a0a+() -sous-ventrière/S. -sous-verge -sous-verre -sous-vêtement/S. -sous-virer/a0() -soutache/S. -soutacher/a0a+() -soutane/S. -soutanelle/S. -soute/S. -soutenable/S. -soutenance/S. -soutènement/S. -souteneur/S. -soutenir/i0i+() -soutenue/F.() -souterrain/S. -souterraine/F.() -souterrainement -soutien/S. -soutien-gorge -soutiens-gorge -soutier/S. -soutirage/S. -soutirée/F.() -soutirer/a0a+() -souvenance/S. -souvenir/S. -souvenir/i0i+() -souvent -souveraine/F.() -souverainement -souveraineté/S. -souverainisme/S. -souverainiste/S. -soviet/S. -soviétique/S. -soviétisation/S. -soviétisée/F.() -soviétiser/a0a+() -soviétisme/S. -sovkhoze/S. -soyer/S. -soyeuse/W.() -spa/S. -spacieuse/W.() -spacieusement -spadassin/S. -spadice/S. -spaghetti/S. -spagyrie/S. -spagyrique/S. -spahi/S. -spalax -spallation/S. -spalter/S. -spam/S. -spammer/a0a+() -spammeur/S. -sparadrap/S. -sparage/S. -spardeck/S. -sparganier/S. -spartakisme/S. -spartakiste/S. -sparte/S. -spartéine/S. -sparterie/S. -spartiate/S. -spasme/S. -spasmodique/S. -spasmodiquement -spasmolytique/S. -spasmophilie/S. -spatangue/S. -spath/S. -spathe/S. -spathifier/a0a+() -spathique/S. -spatiale/W.() -spatialement -spatialisation/S. -spatialiser/a0a+() -spatialité/S. -spationaute/S. -spatioport/S. -spatio-temporelle/F.() -spatule/S. -speakeasy/S. -speaker/S. -speakerine/S. -spéciale/W.() -spécialement -spécialisation/S. -spécialisée/F.() -spécialiser/a0a+() -spécialiste/S. -spécialité/S. -spéciation/S. -spécieuse/W.() -spécieusement -spécificateur/S. -spécification/S. -spécificatrice/F.() -spécificité/S. -spécifiée/F.() -spécifier/a0a+() -spécifique/S. -spécifiquement -spécimen/S. -spéciosité/S. -spectacle/S. -spectaculaire/S. -spectaculairement -spectatrice/F.() -spectrale/W.() -spectralement -spectre/S. -spectrographe/S. -spectrographie/S. -spectrographique/S. -spectromètre/S. -spectrométrie/S. -spectrophotomètre/S. -spectrophotométrie/S. -spectroscope/S. -spectroscopie/S. -spectroscopique/S. -spéculaire/S. -spéculation/S. -spéculative/F.() -spéculatrice/F.() -spéculer/a0() -spéculoos -spéculum/S. -speech/S. -speeder/a0a+() -speiss -spéléologie/S. -spéléologique/S. -spéléologue/S. -spéléonaute/S. -spencer/S. -spéos -spergulaire/S. -spergule/S. -spermaceti/S. -spermaphyte/S. -spermatide/S. -spermatie/S. -spermatique/S. -spermatocyte/S. -spermatogenèse/S. -spermatogonie/S. -spermatophyte/S. -spermatozoïde/S. -sperme/S. -spermicide/S. -spermogonie/S. -spermogramme/S. -spermophile/S. -spet/S. -spetsnaz -sphacèle/S. -sphacéler/c0a+() -sphaigne/S. -sphène/S. -sphénodon/S. -sphénoïdale/W.() -sphénoïde/S. -sphère/S. -sphéricité/S. -sphérique/S. -sphéroïdale/W.() -sphéroïde/S. -sphéromètre/S. -sphérule/S. -sphex -sphincter/S. -sphinctérienne/F.() -sphinx -sphygmogramme/S. -sphygmographe/S. -spicule/S. -spider/S. -spin/S. -spina-bifida -spinale/W.() -spina-ventosa -spinelle/S. -spineur/S. -spinnaker/S. -spinorielle/F.() -spinosaure/S. -spinozisme/S. -spinoziste/S. -spintronique/S. -spiracle/S. -spirale/W.() -spiralée/F.() -spiralement -spiralisation/S. -spiraloïde/S. -spirante/F.() -spire/S. -spirée/S. -spirifer/S. -spirille/S. -spirillose/S. -spiritain/S. -spirite/S. -spiritisme/S. -spiritiste/S. -spiritual/S. -spiritualisation/S. -spiritualiser/a0a+() -spiritualisme/S. -spiritualiste/S. -spiritualité/S. -spirituelle/F.() -spirituellement -spiritueuse/W.() -spirochète/S. -spirochétose/S. -spirographe/S. -spiroïdale/W.() -spiroïde/S. -spiromètre/S. -spirométrie/S. -spirorbe/S. -spitante/F.() -spitter/a0a+() -splanchnique/S. -splanchnologie/S. -spleen/S. -spleenétique/S. -splendeur/S. -splendide/S. -splendidement -splénomégalie/S. -spline/S. -splitter/a0a+() -spoliation/S. -spoliatrice/F.() -spoliée/F.() -spolier/a0a+() -spondée/S. -spongiculture/S. -spongieuse/W.() -spongiforme/S. -spongille/S. -spongiosité/S. -sponsor/S. -sponsoring/S. -sponsorisée/F.() -sponsoriser/a0a+() -spontanée/F.() -spontanéisme/S. -spontanéité/S. -spontanément -spontanisme/S. -sporadicité/S. -sporadique/S. -sporadiquement -sporange/S. -spore/S. -sporogone/S. -sporophore/S. -sporophyte/S. -sporotriche/S. -sporotrichose/S. -sport/S. -sportive/F.() -sportivement -sportivité/S. -sportsman/S. -sportule/S. -sporulée/F.() -sporuler/a0() -spot/S. -spotmètre/S. -spoutnik/S. -sprat/S. -spray/S. -sprint/S. -sprinter/a0() -sprinteuse/F.() -sprue/S. -spumeuse/W.() -spumosité/S. -squale/S. -squame/S. -squameuse/W.() -squamifère/S. -squamule/S. -square/S. -squash/S. -squat/S. -squatine/S. -squattée/F.() -squatter/a0a+() -squatteuse/F.() -squaw/S. -squeezer/a0a+() -squelette/S. -squelettique/S. -squille/S. -squire/S. -squirrhe/S. -squirrheuse/W.() -sr/||-- -st/||-- -stabiblisateur/S. -stabilimètre/S. -stabilisante/F.() -stabilisation/S. -stabilisatrice/F.() -stabilisée/F.() -stabiliser/a0a+() -stabilité/S. -stable/S. -stablement -stabulation/S. -staccato -staccato/S. -stade/S. -stadhouder/S. -stadia/S. -staff/S. -staffer/a0a+() -staffeur/S. -stage/S. -stagflation/S. -stagiaire/S. -stagnante/F.() -stagnation/S. -stagner/a0() -stakhanovisme/S. -stakhanoviste/S. -stakning/S. -stalactite/S. -stalag/S. -stalagmite/S. -stalagmomètre/S. -stalagmométrie/S. -stalinienne/F.() -staliniser/a0a+() -stalinisme/S. -stalle/S. -staminale/W.() -staminée/F.() -staminifère/S. -stance/S. -stand/S. -standard/S. -standardisation/S. -standardisée/F.() -standardiser/a0a+() -standardiste/S. -stand-by -standing/S. -stand-up -staphylin/S. -staphyline/F.() -staphylococcie/S. -staphylococcique/S. -staphylocoque/S. -staphylome/S. -star/S. -starets -starie/S. -stariets -stariser/a0a+() -starlette/S. -staroste/S. -starter/S. -starting-block/S. -starting-gate/S. -start-up -stase/S. -stater/a0a+() -statère/S. -stathouder/S. -stathoudérat/S. -statice/S. -station/S. -stationnaire/S. -stationnarité/S. -stationnée/F.() -stationnement/S. -stationner/a0() -station-service -stations-service -statique/S. -statiquement -statisticienne/F.() -statistique/S. -statistiquement -stative/F.() -statokinésimètre/S. -stator/S. -statoréacteur/S. -statorique/S. -statthalter/S. -statu -statuaire/S. -statue/S. -statuer/a0a+() -statuette/S. -statufier/a0a+() -stature/S. -statut/S. -statutaire/S. -statutairement -stawug/S. -stayer/S. -steak/S. -steamer/S. -stéarate/S. -stéarine/S. -stéarinerie/S. -stéarinier/S. -stéarique/S. -stéatite/S. -stéatopyge/S. -stéatose/S. -steeple/S. -steeple-chase/S. -stéganographie/S. -stégomyie/S. -stégosaure/S. -steinbock/S. -stèle/S. -stellage/S. -stellaire/S. -stem/S. -stencil/S. -stenciliste/S. -stendhalienne/F.() -sténo/S. -sténodactylo/S. -sténodactylographe/S. -sténodactylographie/S. -sténogramme/S. -sténographe/S. -sténographie/S. -sténographiée/F.() -sténographier/a0a+() -sténographique/S. -sténographiquement -sténopé/S. -sténosage/S. -sténose/S. -sténotherme/S. -sténothermie/S. -sténotype/S. -sténotyper/a0a+() -sténotypie/S. -sténotypiste/S. -stentor/S. -step/S. -stéphanophore/S. -steppage/S. -steppe/S. -stepper/S. -steppique/S. -stéradian/S. -stercoraire/S. -stercorale/W.() -stère/S. -stéréo/S. -stéréobate/S. -stéréochimie/S. -stéréochromie/S. -stéréocomparateur/S. -stéréoduc/S. -stéréognosie/S. -stéréogramme/S. -stéréographie/S. -stéréographique/S. -stéréométrie/S. -stéréométrique/S. -stéréophonie/S. -stéréophonique/S. -stéréorégulière/F.() -stéréoscope/S. -stéréoscopie/S. -stéréoscopique/S. -stéréospécificité/S. -stéréotomie/S. -stéréotomique/S. -stéréotype/S. -stéréotypée/F.() -stéréotyper/a0a+() -stéréotypie/S. -stérer/c0a+() -stéride/S. -stérile/S. -stérilement -stérilet/S. -stérilisante/F.() -stérilisateur/S. -stérilisation/S. -stérilisatrice/F.() -stérilisée/F.() -stériliser/a0a+() -stérilité/S. -stérique/S. -sterlet/S. -sterling -sternale/W.() -sterne/S. -sterno-cléido-mastoïdienne/F.() -sternum/S. -sternutation/S. -sternutatoire/S. -stéroïde/S. -stéroïdienne/F.() -stérol/S. -stertoreuse/W.() -stéthoscope/S. -steward/S. -sthène/S. -stibiée/F.() -stibine/S. -stichomythie/S. -stick/S. -stigmate/S. -stigmatique/S. -stigmatisation/S. -stigmatisée/F.() -stigmatiser/a0a+() -stigmatisme/S. -stilb/S. -stillation/S. -stilligoutte/S. -stimugène/S. -stimulante/F.() -stimulation/S. -stimulatrice/F.() -stimulée/F.() -stimuler/a0a+() -stimuline/S. -stimulus -stipe/S. -stipendiaire/S. -stipendiée/F.() -stipendier/a0a+() -stipitée/F.() -stipulaire/S. -stipulation/S. -stipulée/F.() -stipuler/a0a+() -stochastique/S. -stock/S. -stockage/S. -stock-car/S. -stockée/F.() -stocker/a0a+() -stockfisch/S. -stockiste/S. -stœchiométrie/S. -stœchiométrique/S. -stoïcienne/F.() -stoïcisme/S. -stoïque/S. -stoïquement -stoker/S. -stokes -stolon/S. -stolonifère/S. -stomacale/W.() -stomachique/S. -stomate/S. -stomatite/S. -stomatologie/S. -stomatologiste/S. -stomatologue/S. -stomatoplastie/S. -stomatorragie/S. -stomatoscope/S. -stomie/S. -stomisée/F.() -stomoxe/S. -stop -stop/S. -stoppage/S. -stopper/a0a+() -stoppeuse/F.() -storax -store/S. -storiste/S. -story-board/S. -stout/S. -strabique/S. -strabisme/S. -stradiot/S. -stradivarius -stramoine/S. -stramonium/S. -strangulation/S. -strangulée/F.() -stranguler/a0a+() -strapontin/S. -strasbourgeoise/F.() -strass -strasse/S. -stratagème/S. -strate/S. -stratège/S. -stratégie/S. -stratégique/S. -stratégiquement -stratification/S. -stratifiée/F.() -stratifier/a0a+() -stratigraphie/S. -stratigraphique/S. -stratiome/S. -stratiomys -stratocumulus -stratopause/S. -stratosphère/S. -stratosphérique/S. -stratovision/S. -stratovolcan/S. -stratum/S. -stratus -streptobacille/S. -streptococcie/S. -streptococcique/S. -streptocoque/S. -streptomycète/S. -streptomycine/S. -stress -stressante/F.() -stressée/F.() -stresser/a0a+() -stretch/S. -strette/S. -striation/S. -stricte/F.() -strictement -striction/S. -stricto -stridence/S. -stridente/F.() -stridor/S. -stridulante/F.() -stridulation/S. -stridulatoire/S. -striduler/a0a+() -striduleuse/W.() -strie/S. -striée/F.() -strier/a0a+() -strige/S. -strigile/S. -string/S. -strioscopie/S. -strioscopique/S. -stripage/S. -stripper/a0a+() -stripping/S. -strip-tease/S. -strip-teaseuse/F.() -striquer/a0a+() -striure/S. -strix -strobile/S. -strobophotographie/S. -stroborama/S. -stroboscope/S. -stroboscopie/S. -stroboscopique/S. -stroma/S. -stromatolite/S. -stromatolithe/S. -strombe/S. -strombolienne/F.() -strongle/S. -strongyle/S. -strongylose/S. -strontiane/S. -strontium/S. -strophante/S. -strophantine/S. -strophantus -strophe/S. -structurable/S. -structurale/W.() -structuralisme/S. -structuraliste/S. -structurante/F.() -structuration/S. -structure/S. -structurée/F.() -structurelle/F.() -structurellement -structurer/a0a+() -structurologie/S. -strume/S. -strychnine/S. -stryge/S. -stuc/S. -stucage/S. -stucateur/S. -stud-book/S. -studette/S. -studieuse/W.() -studieusement -studio/S. -stupa/S. -stupéfaction/S. -stupéfaire/wG() -stupéfaite/F.() -stupéfiante/F.() -stupéfiée/F.() -stupéfier/a0a+() -stupeur/S. -stupide/S. -stupidement -stupidité/S. -stupre/S. -stuquée/F.() -stuquer/a0a+() -style/S. -stylée/F.() -styler/a0a+() -stylet/S. -stylisation/S. -stylisée/F.() -styliser/a0a+() -stylisme/S. -styliste/S. -stylisticienne/F.() -stylistique/S. -stylistiquement -stylite/S. -stylo/S. -stylobate/S. -stylographe/S. -stylographique/S. -styloïde/S. -stylomine/S. -styptique/S. -styrax -styrène/S. -styrolène/S. -styromousse/S. -su -suage/S. -suaire/S. -suante/F.() -suave/S. -suavement -suavité/S. -subaiguë/F.() -subalpine/F.() -subalterne/S. -subantarctique/S. -subaquatique/S. -subarctique/S. -subatomique/S. -subcarpatique/S. -subconscience/S. -subconscient/S. -subconsciente/F.() -subdélégation/S. -subdéléguée/F.() -subdéléguer/c0a+() -subdésertique/S. -subdiviser/a0a+() -subdivision/S. -subdivisionnaire/S. -subduction/S. -subduire/yK() -subduite/F.() -subéquatoriale/W.() -suber/S. -subéreuse/W.() -subérine/S. -subexponentielle/F.() -subfébrile/S. -subie/F.() -subintrante/F.() -subir/f0f+() -subite/F.() -subitement -subito -subjacente/F.() -subjectile/S. -subjectivation/S. -subjective/F.() -subjectivement -subjectivisation/S. -subjectivisme/S. -subjectiviste/S. -subjectivité/S. -subjonctif/S. -subjuguée/F.() -subjuguer/a0a+() -sublétale/W.() -sublimation/S. -sublime/S. -sublimée/F.() -sublimement -sublimer/a0a+() -subliminaire/S. -subliminale/W.() -sublimité/S. -sublinguale/W.() -sublunaire/S. -submergée/F.() -submerger/a0a+() -submersible/S. -submersion/S. -subnarcose/S. -subodorer/a0a+() -suboptimale/W.() -suboptimalité -suborbitale/W.() -subordination/S. -subordonnante/F.() -subordonnée/F.() -subordonner/a0a+() -subornation/S. -subornée/F.() -suborner/a0a+() -suborneuse/F.() -subrécargue/S. -subreptice/S. -subrepticement -subreption/S. -subrogateur/S. -subrogation/S. -subrogative/F.() -subrogatoire/S. -subrogée/F.() -subroger/a0a+() -subsaharienne/F.() -subséquemment -subséquente/F.() -subside/S. -subsidence/S. -subsidiaire/S. -subsidiairement -subsidiante/F.() -subsidiarité/S. -subsidiation/S. -subsidier/a0a+() -subsistance/S. -subsistante/F.() -subsister/a0() -subsomption/S. -subsonique/S. -substance/S. -substantialisme/S. -substantialiste/S. -substantialité/S. -substantielle/F.() -substantiellement -substantifique/S. -substantivation/S. -substantive/F.() -substantivement -substantiver/a0a+() -substituabilité/S. -substituable/S. -substituant/S. -substituée/F.() -substituer/a0a+() -substitut/S. -substitution/S. -substitutive/F.() -substrat/S. -substratum/S. -substruction/S. -subsumer/a0a+() -subterfuge/S. -subtile/F.() -subtilement -subtilisation/S. -subtilisée/F.() -subtiliser/a0a+() -subtilité/S. -subtropicale/W.() -subulée/F.() -suburbaine/F.() -suburbicaire/S. -subvenir/i0() -subvention/S. -subventionnée/F.() -subventionnelle/F.() -subventionnement/S. -subventionner/a0a+() -subversion/S. -subversive/F.() -subversivement -subvertie/F.() -subvertir/f0f+() -suc/S. -succédanée/F.() -succéder/c0a+() -succenturiée/F.() -succès -successeur/S. -successibilité/S. -successible/S. -succession/S. -successive/F.() -successivement -successorale/W.() -succin/S. -succincte/F.() -succinctement -succinique/S. -succion/S. -succombante/F.() -succomber/a0() -succube/S. -succulence/S. -succulente/F.() -succursale/S. -sucée/F.() -sucement/S. -sucer/a0a+() -sucette/S. -suceuse/F.() -suçoir/S. -suçon/S. -suçotement/S. -suçoter/a0a+() -sucrage/S. -sucrante/F.() -sucrase/S. -sucrate/S. -sucre/S. -sucrée/F.() -sucrer/a0a+() -sucrerie/S. -sucrette/S. -sucrière/F.() -sucrin/S. -sud -sud-africaine/F.() -sud-américaine/F.() -sudation/S. -sudatoire/S. -sud-coréenne/F.() -sud-est -sudiste/S. -sudoku/S. -sudorale/W.() -sudorifère/S. -sudorifique/S. -sudoripare/S. -sud-ouest -sud-vietnamienne/F.() -sue/F.() -suède/S. -suédée/F.() -suédine/S. -suédoise/F.() -suée/S. -suer/a0a+() -suette/S. -sueur/S. -suffète/S. -suffire/yV() -suffisamment -suffisance/S. -suffisante/F.() -suffixale/W.() -suffixation/S. -suffixe/S. -suffixée/F.() -suffixer/a0a+() -suffocante/F.() -suffocation/S. -suffoquée/F.() -suffoquer/a0a+() -suffragante/F.() -suffrage/S. -suffragette/S. -suffusion/S. -suggérée/F.() -suggérer/c0a+() -suggestibilité/S. -suggestible/S. -suggestion/S. -suggestionner/a0a+() -suggestive/F.() -suicidaire/S. -suicide/S. -suicidée/F.() -suicider/a0a+() -suie/S. -suif/S. -suifer/a0a+() -suiffer/a0a+() -suiffeuse/W.() -suint/S. -suintante/F.() -suintement/S. -suinter/a0a+() -suis/zF() -suissesse/F.() -suite/S. -suitée/S. -suivante/F.() -suiveuse/F.() -suivi/S. -suivie/F.() -suivisme/S. -suiviste/S. -suivre/xQ() -sujétion/S. -sujette/F.() -sukkeler/d0() -sulcature/S. -sulciforme/S. -sulfamide/S. -sulfatage/S. -sulfate/S. -sulfatée/F.() -sulfater/a0a+() -sulfateuse/F.() -sulfhémoglobine/S. -sulfhydrique/S. -sulfinisation/S. -sulfitage/S. -sulfite/S. -sulfitée/F.() -sulfiter/a0a+() -sulfocarbonate/S. -sulfocarbonique/S. -sulfone/S. -sulfonée/F.() -sulfoner/a0a+() -sulfosel/S. -sulfovinique/S. -sulfoxyde/S. -sulfurage/S. -sulfuration/S. -sulfure/S. -sulfurée/F.() -sulfurer/a0a+() -sulfureuse/W.() -sulfurique/S. -sulfurisée/F.() -sulky/S. -sulpicienne/F.() -sultanat/S. -sultane/F.() -sumac/S. -sumérienne/F.() -summum/S. -sumo/S. -sumotori/S. -sunlight/S. -sunna/S. -sunnisme/S. -sunnite/S. -super -super/S. -super/S. -superalliage/S. -superattractive/F.() -superattractivité/S. -superbe/S. -superbement -superbénéfice/S. -superbombe/S. -supercalculateur/S. -supercarburant/S. -supercarré/S. -supercavitante/F.() -superchampion/S. -supercherie/S. -superciment/S. -superclasse/S. -superconnexion/S. -supercritique/S. -superdensité/S. -superdividende/S. -supère/S. -supérette/S. -superfamille/S. -superfécondation/S. -superfétation/S. -superfétatoire/S. -superficialité/S. -superficie/S. -superficielle/F.() -superficiellement -superfine/F.() -superfinir/f0f+() -superfinition/S. -superflue/F.() -superfluide/S. -superfluidité/S. -superfluité/S. -superforme/S. -superforteresse/S. -superfractionnement/S. -super-géant/S. -supergéante/S. -super-grand/S. -supergrand/S. -supergravité/S. -super-héros -superhétérodyne/S. -super-huit -supérieure/F.() -supérieurement -supériorité/S. -superlatif/S. -superlativement -superluminique/S. -supermalloy/S. -superman/S. -supermarché/S. -supernova -supernovæ -superordinateur/S. -superordonnée/F.() -superordre/S. -superovariée/F.() -superovulation/S. -superoxyde/S. -superparamagnétisme/S. -superpétrolier/S. -superphosphate/S. -superplasticité/S. -superplastique/S. -superpolyamide/S. -superposable/S. -superposée/F.() -superposer/a0a+() -superposition/S. -superpréfet/S. -superprivilège/S. -superproduction/S. -superprofit/S. -superpuissance/S. -superpurgation/S. -superréaction/S. -supersonique/S. -superstar/S. -superstitieuse/W.() -superstitieusement -superstition/S. -superstrat/S. -superstructure/S. -supersymétrie/S. -supersymétrique/S. -supersynthèse/S. -supertanker/S. -supervariété/S. -supervisée/F.() -superviser/a0a+() -superviseure/S. -superviseuse/F.() -supervision/S. -super-welter/S. -supin/S. -supinateur/S. -supination/S. -suppl -supplantation/S. -supplantée/F.() -supplanter/a0a+() -suppléance/S. -suppléante/F.() -suppléer/a0a+() -supplément/S. -supplémentaire/S. -supplémentairement -supplémentation/S. -supplémenter/a0a+() -supplétisme/S. -supplétive/F.() -supplétoire/S. -suppliante/F.() -supplication/S. -supplice/S. -suppliciée/F.() -supplicier/a0a+() -suppliée/F.() -supplier/a0a+() -supplique/S. -support/S. -supportable/S. -supportée/F.() -supporter/a0a+() -supportrice/F.() -supposable/S. -supposée/F.() -supposément -supposer/a0a+() -supposition/S. -suppositoire/S. -suppôt/S. -suppresseur/S. -suppression/S. -supprimable/S. -supprimée/F.() -supprimer/a0a+() -suppurante/F.() -suppuration/S. -suppurative/F.() -suppurée/F.() -suppurer/a0() -supputation/S. -supputée/F.() -supputer/a0a+() -supra -supraconduction/S. -supraconductivité/S. -supraconductrice/F.() -suprahumaine/F.() -supraliminaire/S. -supraluminique/S. -supramoléculaire/S. -supranationale/W.() -supranormale/W.() -suprasegmentale/W.() -suprasensible/S. -suprastructure/S. -supraterrestre/S. -suprématie/S. -suprême/S. -suprêmement -sur -surabondamment -surabondance/S. -surabondante/F.() -surabonder/a0() -suractivée/F.() -suractivité/S. -surah/S. -suraiguë/F.() -surajoutée/F.() -surajouter/a0a+() -surale/W.() -suralimentation/S. -suralimentée/F.() -suralimenter/a0a+() -suraller/a0() -suramplificateur/S. -surannée/F.() -surarbitre/S. -surarmement/S. -surarmer/a0a+() -surbaissée/F.() -surbaissement/S. -surbaisser/a0a+() -surbookée/F.() -surbooking/S. -surboucher/a0a+() -surboum/S. -surbrillance/S. -surbroder/a0a+() -surcapacité/S. -surcapitalisante/F.() -surcapitalisation/S. -surcharge/S. -surchargée/F.() -surcharger/a0a+() -surchauffe/S. -surchauffée/F.() -surchauffer/a0a+() -surchauffeur/S. -surchoix -surclassée/F.() -surclassement/S. -surclasser/a0a+() -surcoller/a0() -surcompensation/S. -surcompensatoire/S. -surcompensatrice/F.() -surcomposée/F.() -surcompression/S. -surcomprimée/F.() -surcomprimer/a0a+() -surconscience/S. -surconsommation/S. -surcontrer/a0a+() -surcoter/a0a+() -surcouche/S. -surcoupe/S. -surcouper/a0() -surcoût/S. -surcreusée/F.() -surcreusement/S. -surcreuser/a0a+() -surcritique/S. -surcroît/S. -surdent/S. -surdéterminante/F.() -surdétermination/S. -surdéterminée/F.() -surdéveloppement/S. -sur-diagonale/S. -surdiagonale/S. -surdi-mutité/S. -surdité/S. -surdorer/a0a+() -surdos -surdosage/S. -surdose/S. -surdouée/F.() -sure/F.() -sûre/F.() -sureau/X. -surédifier/a0a+() -surélévation/S. -surélevée/F.() -surélever/b0a+() -suremballage/S. -sûrement -suremploi/S. -surenchère/S. -surenchérir/f0() -surenchérissement/S. -surenchérisseuse/F.() -surencombrée/F.() -surencombrement/S. -surendettement/S. -surendetter/a0a+() -surentraînée/F.() -surentraînement/S. -surentraîner/a0a+() -suréquipée/F.() -suréquipement/S. -suréquiper/a0a+() -surérogation/S. -surérogatoire/S. -surestimation/S. -surestimée/F.() -surestimer/a0a+() -sûreté/S. -surette/F.() -surévaluation/S. -surévaluée/F.() -surévaluer/a0a+() -surexcitante/F.() -surexcitation/S. -surexcitée/F.() -surexciter/a0a+() -surexploitation/S. -surexploitée/F.() -surexploiter/a0a+() -surexposée/F.() -surexposer/a0a+() -surexposition/S. -surf/S. -surfaçage/S. -surface/S. -surfacer/a0a+() -surfacique/S. -surfacturation/S. -surfacturer/a0a+() -surfaire/wD() -surfait/S. -surfaite/F.() -surfaix -surfer/a0() -surfeuse/F.() -surfil/S. -surfilage/S. -surfiler/a0a+() -surfine/F.() -surfleurir -surfondue/F.() -surfrapper/a0a+() -surfréquentation/S. -surfusion/S. -surgélateur/S. -surgélation/S. -surgelé/S. -surgelée/F.() -surgeler/b0a+() -surgénération/S. -surgénératrice/F.() -surgeon/S. -surgeonner/a0() -surgir/f0() -surgissement/S. -surglacer/a0a+() -surgreffer/a0a+() -surharmonique/S. -surhaussée/F.() -surhaussement/S. -surhausser/a0a+() -surhomme/S. -surhumaine/F.() -surhumainement -surhumanité/S. -suricate/S. -surie/F.() -surimposer/a0a+() -surimposition/S. -surimpression/S. -surin/S. -surinamaise/F.() -suriner/a0a+() -surinfection/S. -surintendance/S. -surintendante/F.() -surintensité/S. -surinterpréter/c0a+() -surinvestir -surir/f0() -surjaler/a0() -surjection/S. -surjective/F.() -surjectivement -surjectivité/S. -surjet/S. -surjeter/d0a+() -surjouer/a0a+() -sur-le-champ -surlendemain/S. -surlier/a0a+() -surlignante/F.() -surlignée/F.() -surligner/a0a+() -surlonge/S. -surloyer/S. -surmédiatisation/S. -surmédicalisation/S. -surmédicalisée/F.() -surmédicaliser/a0a+() -surmenage/S. -surmenée/F.() -surmener/b0a+() -surmoi -surmontable/S. -surmontée/F.() -surmonter/a0a+() -surmontoir/S. -surmortalité/S. -surmoulage/S. -surmoulée/F.() -surmouler/a0a+() -surmulet/S. -surmulot/S. -surmultiplication/S. -surnager/a0() -surnatalité/S. -surnaturalisme/S. -surnaturaliste/S. -surnaturelle/F.() -surnaturellement -surnom/S. -surnombre/S. -surnommée/F.() -surnommer/a0a+() -surnuméraire/S. -suroffre/S. -suroît/S. -suros -suroxyder/a0a+() -suroxygénée/F.() -surpassement/S. -surpasser/a0a+() -surpaye/S. -surpayée/F.() -surpayer/a0a+() -surpêche/S. -surpeuplée/F.() -surpeuplement/S. -surpiquer/a0a+() -surpiqûre/S. -surplace/S. -surplis -surplomb/S. -surplombante/F.() -surplombement/S. -surplomber/a0a+() -surplus -surpopulation/S. -surprenante/F.() -surprendre/tF() -surpression/S. -surprime/S. -surprise/F.() -surprise/S. -surprise-partie -surprises-parties -surproduction/S. -surproductive/F.() -surproductivité/S. -surproductrice/F.() -surproduire/yL() -surprotection/S. -surprotégée/F.() -surprotéger/c0a+() -surpuissance/S. -surpuissante/F.() -surréalisme/S. -surréaliste/S. -surrection/S. -surrégénérateur/S. -surrégime/S. -surrénale/W.() -surréservation/S. -surréservée/F.() -sursalaire/S. -sursalée/F.() -sursaturante/F.() -sursaturation/S. -sursaturée/F.() -sursaturer/a0a+() -sursaut/S. -sursauter/a0() -sursemer/b0a+() -surseoir/pT() -sursitaire/S. -sursouffler/a0a+() -surtailler/a0a+() -surtaux -surtaxe/S. -surtaxée/F.() -surtaxer/a0a+() -surtendre -surtension/S. -surtitrage/S. -surtitre/S. -surtitrée/F.() -surtitrer/a0a+() -surtonte/S. -surtout -survalorisation/S. -surveillance/S. -surveillante/F.() -surveillée/F.() -surveiller/a0a+() -survenance/S. -survenir/i0i+() -survente/S. -survêtement/S. -survêtir/iG() -survie/S. -survirage/S. -survirante/F.() -survirer/a0a+() -survireuse/F.() -survitaminée/F.() -survivance/S. -survivante/F.() -survive/F.() -survivre/xS() -survol/S. -survolante/F.() -survoler/a0a+() -survoltage/S. -survoltée/F.() -survolter/a0a+() -survolteur/S. -survolteur-dévolteur -survolteurs-dévolteurs -susceptibilité/S. -susceptible/S. -suscitée/F.() -susciter/a0a+() -suscription/S. -suscrire/y1() -susdénommée/F.() -susdite/F.() -sus-dominante/S. -sus-hépatique/S. -sushi/S. -susmentionnée/F.() -susnommée/F.() -suspect/S. -suspecter/a0a+() -suspendre/tA() -suspendue/F.() -suspens -suspense/S. -suspenseur/S. -suspension/S. -suspensive/F.() -suspensoir/S. -suspente/S. -suspicieuse/W.() -suspicieusement -suspicion/S. -sustentation/S. -sustentatrice/F.() -sustenter/a0a+() -susurrante/F.() -susurration/S. -susurrement/S. -susurrer/a0a+() -susvisée/F.() -sutra/S. -suturale/W.() -suture/S. -suturée/F.() -suturer/a0a+() -suzeraine/F.() -suzeraineté/S. -svastika/S. -svelte/S. -sveltesse/S. -swahilie/F.() -swap/S. -swastika/S. -sweater/S. -sweating-system/S. -sweat-shirt/S. -sweepstake/S. -swing/S. -swinguer/a0() -sybarite/S. -sybaritique/S. -sybaritisme/S. -sycomore/S. -sycophante/S. -sycosis -syénite/S. -syllabaire/S. -syllabation/S. -syllabe/S. -syllaber/a0a+() -syllabique/S. -syllabisme/S. -syllabus -syllepse/S. -syllogisme/S. -syllogistique/S. -sylphe/S. -sylphide/S. -sylvain/S. -sylve/S. -sylvestre/S. -sylvicole/S. -sylvicultrice/F.() -sylviculture/S. -sylvinite/S. -symbiose/S. -symbiote/S. -symbiotique/S. -symbole/S. -symbolique/S. -symboliquement -symbolisation/S. -symboliser/a0a+() -symbolisme/S. -symboliste/S. -symbologie/S. -symétrie/S. -symétrique/S. -symétriquement -symétrisation/S. -symétriser/a0a+() -sympa -sympathie/S. -sympathique/S. -sympathiquement -sympathisante/F.() -sympathiser/a0() -sympatrie/S. -symphonie/S. -symphonique/S. -symphoniste/S. -symphorine/S. -symphyse/S. -symplectique/S. -symposion/S. -symposium/S. -symptomatique/S. -symptomatiquement -symptomatologie/S. -symptôme/S. -synagogue/S. -synalèphe/S. -synallagmatique/S. -synanthérée/F.() -synapomorphie/S. -synapse/S. -synapside/S. -synaptase/S. -synaptique/S. -synarchie/S. -synarthrose/S. -synchondrose/S. -synchrocyclotron/S. -synchrone/S. -synchronicité/S. -synchronie/S. -synchronique/S. -synchroniquement -synchronisable/S. -synchronisation/S. -synchronisée/F.() -synchroniser/a0a+() -synchroniseuse/F.() -synchronisme/S. -synchrotron/S. -synclinale/W.() -syncopale/W.() -syncope/S. -syncopée/F.() -syncoper/a0a+() -syncrétique/S. -syncrétisme/S. -syncrétiste/S. -syncristalliser/a0() -syndic/S. -syndicale/W.() -syndicalement -syndicalisation/S. -syndicalisée/F.() -syndicaliser/a0a+() -syndicalisme/S. -syndicaliste/S. -syndicat/S. -syndicataire/S. -syndication/S. -syndiquée/F.() -syndiquer/a0a+() -syndrome/S. -synecdoque/S. -synéchie/S. -synérèse/S. -synergie/S. -synergique/S. -synesthésie/S. -syngnathe/S. -synodale/W.() -synode/S. -synodique/S. -synonyme/S. -synonymie/S. -synonymique/S. -synopse/S. -synopsie/S. -synopsis -synoptique/S. -synostose/S. -synovie/S. -syntacticienne/F.() -syntactique/S. -syntagmatique/S. -syntagme/S. -syntaxe/S. -syntaxique/S. -syntaxiquement -synthèse/S. -synthétase/S. -synthétique/S. -synthétiquement -synthétisée/F.() -synthétiser/a0a+() -synthétiseur/S. -syntone/S. -syntonie/S. -syntonisateur/S. -syntonisation/S. -syntoniser/a0a+() -syntoniseur/S. -syphilide/S. -syphiligraphe/S. -syphiligraphie/S. -syphilis -syphilitique/S. -syphilographe/S. -syphilographie/S. -syriaque/S. -syrienne/F.() -syringe/S. -syringomyélie/S. -syrinx -syrphe/S. -systématicienne/F.() -systématique/S. -systématiquement -systématisation/S. -systématisée/F.() -systématiser/a0a+() -systématisme/S. -système/S. -systèmes-experts -systémique/S. -systole/S. -systolique/S. -systyle/S. -syzygie/S. -t -t/||-- -ta -tabac/S. -tabacologie/S. -tabacologue/S. -tabacomanie/S. -tabacultrice/F.() -tabagie/S. -tabagique/S. -tabagisme/S. -tabar/S. -tabard/S. -tabasco/S. -tabassage/S. -tabassée/F.() -tabasser/a0a+() -tabatière/S. -tabellaire/S. -tabellion/S. -tabernacle/S. -tabès -tabétique/S. -tablar/S. -tablature/S. -table/S. -tableau/X. -tableautage/S. -tableautin/S. -tablée/S. -tabler/a0() -tabletière/F.() -tablette/S. -tabletterie/S. -tableur/S. -tablier/S. -tabloïd/S. -tabor/S. -tabou/S. -taboue/F.() -tabouiser/a0a+() -tabouret/S. -tabulaire/S. -tabulation/S. -tabulatrice/F.() -tabuler/a0a+() -tabun/S. -tac/S. -tacaud/S. -tacca/S. -tacet/S. -tachante/F.() -tache/S. -tâche/S. -tachée/F.() -tachéographe/S. -tachéomètre/S. -tachéométrie/S. -tacher/a0a+() -tâcher/a0a+() -tâcheron/S. -tachetée/F.() -tacheter/d0a+() -tacheture/S. -tachine/S. -tachisme/S. -tachiste/S. -tachistoscope/S. -tachistoscopique/S. -tachyarythmie/S. -tachycardie/S. -tachygenèse/S. -tachygraphe/S. -tachygraphie/S. -tachymètre/S. -tachyon/S. -tachyphémie/S. -tachyphylaxie/S. -tacite/S. -tacitement -taciturne/S. -taciturnité/S. -tacle/S. -tacler/a0a+() -taco/S. -tacon/S. -taconeos -tacot/S. -tact/S. -tacticienne/F.() -tacticité/S. -tactile/S. -tactique/S. -tactiquement -tactisme/S. -tadorne/S. -taekwondo/S. -taekwondoïste/S. -tænia/S. -taffetas -tafia/S. -tag/S. -tagal/S. -tagalog/S. -tagète/S. -tagliatelle/S. -taguée/F.() -taguer/a0a+() -tahitienne/F.() -taïaut -taie/S. -taïga/S. -taiji/S. -taïkonaute/S. -taillable/S. -taillade/S. -tailladée/F.() -taillader/a0a+() -taillage/S. -taillanderie/S. -taillandier/S. -taille/S. -taille-crayon/S. -taille-douce -taillée/F.() -taille-mer -taille-ongles -tailler/a0a+() -taille-racines -taillerie/S. -tailles-douces -tailleuse/F.() -taille-vent -taillis -tailloir/S. -taillole/S. -tain/S. -taire/wN() -taiseuse/W.() -tajine/S. -take-off -talc/S. -talée/F.() -talent/S. -talentueuse/W.() -talentueusement -taler/a0a+() -taleth/S. -talibane/F.() -talion/S. -talisman/S. -talismanique/S. -talitre/S. -talkies-walkies -talkie-walkie -talk-show/S. -tallage/S. -talle/S. -tallée/F.() -taller/a0() -tallipot/S. -talmouse/S. -talmud/S. -talmudique/S. -talmudiste/S. -taloche/S. -talocher/a0a+() -talon/S. -talonnade/S. -talonnage/S. -talonnement/S. -talonner/a0a+() -talonnette/S. -talonneur/S. -talonnière/S. -talpack/S. -talpidé/S. -talquer/a0a+() -talqueuse/W.() -talure/S. -talus -talweg/S. -tamandua/S. -tamanoir/S. -tamarin/S. -tamarinier/S. -tamaris -tamarix -tambouille/S. -tambouler/a0() -tambour/S. -tambourin/S. -tambourinage/S. -tambourinaire/S. -tambourinement/S. -tambouriner/a0a+() -tambourineuse/F.() -tambour-major -tambours-majors -tamia/S. -tamier/S. -tamile/F.() -tamis -tamisage/S. -tamisée/F.() -tamiser/a0a+() -tamiserie/S. -tamiseuse/F.() -tamisière/F.() -tamoule/F.() -tampico/S. -tampon/S. -tamponnade/S. -tamponnée/F.() -tamponnement/S. -tamponner/a0a+() -tamponneuse/F.() -tamponnoir/S. -tam-tam/S. -tan/S. -tanagra/S. -tanaisie/S. -tancer/a0a+() -tanche/S. -tandem/S. -tandis -tangage/S. -tangara/S. -tangence/S. -tangente/F.() -tangenter/a9() -tangentielle/F.() -tangentiellement -tangibilité/S. -tangible/S. -tangiblement -tango/S. -tangon/S. -tanguer/a0() -tanguière/S. -tanière/S. -tanin/S. -tanisage/S. -taniser/a0a+() -tank/S. -tanker/S. -tankiste/S. -tannage/S. -tannante/F.() -tanne/S. -tannée/F.() -tanner/a0a+() -tannerie/S. -tanneuse/F.() -tannique/S. -tanrec/S. -tansad/S. -tant -tantale/S. -tante/S. -tantième/S. -tantine/S. -tantinet/S. -tantôt -tantrique/S. -tantrisme/S. -tanzanienne/F.() -tao/S. -taoïsme/S. -taoïste/S. -taon/S. -tapage/S. -tapager/a0() -tapageuse/F.() -tapageusement -tapante/F.() -tape/S. -tapecul/S. -tapée/F.() -tapement/S. -tapenade/S. -taper/a0a+() -tapette/S. -tapeuse/F.() -taphophilie/S. -tapie/F.() -tapin/S. -tapiner/a0() -tapinois -tapioca/S. -tapir/S. -tapir/f0f+() -tapis -tapis-brosse/S. -tapissage/S. -tapisser/a0a+() -tapisserie/S. -tapissière/F.() -tapon/S. -taponner/a0a+() -tapotage/S. -tapotement/S. -tapoter/a0a+() -tapuscrit/S. -taque/S. -taquer/a0a+() -taquet/S. -taquine/F.() -taquiner/a0a+() -taquinerie/S. -taquoir/S. -tarabiscot/S. -tarabiscotage/S. -tarabiscotée/F.() -tarabiscoter/a0a+() -tarabuster/a0a+() -tarage/S. -tarama/S. -tararage/S. -tarare/S. -tarasque/S. -taratata -taraud/S. -taraudage/S. -tarauder/a0a+() -taraudeuse/F.() -taravelle/S. -tarbouch/S. -tarbouche/S. -tard -tarder/a0() -tardigrade/S. -tardillonne/F.() -tardive/F.() -tardivement -tardiveté/S. -tare/S. -tarée/F.() -tarente/S. -tarentelle/S. -tarentule/S. -tarer/a0a+() -taret/S. -targe/S. -targette/S. -targuer/a0a+() -targui -targuie -taricheute/S. -tarie/F.() -tarière/S. -tarif/S. -tarifaire/S. -tarifer/a0a+() -tarification/S. -tarifier/a0a+() -tarin/S. -tarir/f0f+() -tarissable/S. -tarissement/S. -tarlatane/S. -tarmacadam/S. -taro/S. -tarot/S. -tarotée/F.() -tarpan/S. -tarpon/S. -tarsale/W.() -tarse/S. -tarsectomie/S. -tarsienne/F.() -tarsier/S. -tartan/S. -tartane/S. -tartare/S. -tartarin/S. -tarte/S. -tartelette/S. -tartiflette/S. -tartignole/S. -tartine/S. -tartiner/a0a+() -tartir/f0() -tartrate/S. -tartre/S. -tartreuse/W.() -tartrique/S. -tartufe/S. -tartuferie/S. -tarzan/S. -tas -tassage/S. -tasse/S. -tasseau/X. -tassée/F.() -tassement/S. -tasser/a0a+() -tassette/S. -tassili/S. -taste-vin -tata/S. -tatami/S. -tatane/S. -tatare/F.() -tâter/a0a+() -tâteur/S. -tâte-vin -tatillonne/F.() -tatillonner/a0() -tâtonnante/F.() -tâtonnement/S. -tâtonner/a0() -tatou/S. -tatouage/S. -tatouée/F.() -tatouer/a0a+() -tatoueuse/F.() -tau -taud/S. -taudis -taularde/F.() -taule/S. -taulière/F.() -tauon/S. -taupe/S. -taupée/F.() -taupe-grillon -tauper/a0a+() -taupes-grillons -taupière/F.() -taupin/S. -taupinière/S. -taure/S. -taureau/X. -taurillon/S. -taurine/F.() -taurobole/S. -tauromachie/S. -tauromachique/S. -tautochrone/S. -tautologie/S. -tautologique/S. -tautologue/S. -tautomère/S. -tautomérie/S. -taux -tauzin/S. -tavaillon/S. -tavaïolle/S. -tavelée/F.() -taveler/d0a+() -tavelure/S. -taverne/S. -tavernière/F.() -tavillon/S. -taxable/S. -taxage/S. -taxateur/S. -taxation/S. -taxative/F.() -taxe/S. -taxée/F.() -taxer/a0a+() -taxi/S. -taxidermie/S. -taxidermiste/S. -taxie/S. -taximètre/S. -taxinomie/S. -taxinomique/S. -taxinomiste/S. -taxiphone/S. -taxiway/S. -taxodium/S. -taxon/S. -taxonomie/S. -taxonomique/S. -taxonomiste/S. -taxum/S. -taylorisation/S. -tayloriser/a0a+() -taylorisme/S. -tchadienne/F.() -tchadiser/a0a+() -tchador/S. -tchao -tcharchaf/S. -tchatcher/a0() -tchécoslovaque/S. -tchèque/S. -tchérémisse/S. -tchernoziom/S. -tchervonets -tchervontsy -tchétchène/S. -tchin-tchin -tchitola/S. -te/S. -té/S. -tébibit/S. -tébioctet/S. -tec/||-- -technétium/S. -technétronique/S. -technicienne/F.() -technicisation/S. -techniciser/a0a+() -technicisme/S. -technicité/S. -technico-commerciale/W.() -technicolor/S. -technique/S. -techniquement -techniser/a0a+() -techniverrière/F.() -techno/S. -technobureaucratique/S. -technocrate/S. -technocratie/S. -technocratique/S. -technocratisation/S. -technocratiser/a0a+() -technocratisme/S. -technoéconomique/S. -technologie/S. -technologique/S. -technologiquement -technologiste/S. -technologue/S. -technophile/S. -technopole/S. -technopôle/S. -technostructure/S. -teck/S. -teckel/S. -tecker/a0() -tectonique/S. -tectrice/S. -tee/S. -teen-ager/S. -tee-shirt/S. -téflon/S. -tégénaire/S. -tégument/S. -tégumentaire/S. -teigneuse/W.() -teillage/S. -teille/S. -teiller/a0a+() -teilleuse/F.() -teindre/wB() -teinte/F.() -teinte/S. -teintée/F.() -teinter/a0a+() -teinture/S. -teinturerie/S. -teinturière/F.() -tél -télamon/S. -télé/S. -téléachat/S. -téléactrice/F.() -téléassistance/S. -téléavertisseur/S. -télébenne/S. -téléboutique/S. -télécabine/S. -télécarte/S. -télécentre/S. -téléchargeable/S. -téléchargée/F.() -téléchargement/S. -télécharger/a0a+() -téléchirurgie/S. -télécinéma/S. -télécommande/S. -télécommandée/F.() -télécommander/a0a+() -télécommunication/S. -téléconduite/F.() -téléconduite/S. -téléconférence/S. -téléconseil/S. -téléconseillère/F.() -télécontrôle/S. -télécopie/S. -télécopier/a0a+() -télécopieur/S. -télédéclarante/F.() -télédéclaration/S. -télédétection/S. -télédiffuser/a0a+() -télédiffusion/S. -télédistribution/S. -télé-enseignement/S. -télé-évangélisme/S. -télé-évangéliste/S. -téléfilm/S. -téléga/S. -télégénique/S. -télégestion/S. -télégramme/S. -télégraphe/S. -télégraphier/a0a+() -télégraphique/S. -télégraphiquement -télégraphiste/S. -télègue/S. -téléguidage/S. -téléguidée/F.() -téléguider/a0a+() -téléimprimeur/S. -téléinformatique/S. -téléjournal/X. -télékinésie/S. -télémaintenance/S. -télémanipulateur/S. -télémanipulation/S. -télémark/S. -télémarketing/S. -télématique/S. -télémécanicienne/F.() -télémécanique/S. -télémédecine/S. -télémercatique/S. -télémessage/S. -télémesure/S. -télémètre/S. -télémétrer/c0a+() -télémétreur/S. -télémétrie/S. -télémétrique/S. -télencéphale/S. -téléobjectif/S. -téléologie/S. -téléologique/S. -téléonomie/S. -téléopérateur/S. -téléopération/S. -téléopératrice/F.() -téléosaure/S. -téléostéen/S. -télépathe/S. -télépathie/S. -télépathique/S. -télépathiquement -télépéage/S. -téléphérage/S. -téléphérique/S. -téléphonage/S. -téléphone/S. -téléphonée/F.() -téléphoner/a0a+() -téléphonie/S. -téléphonique/S. -téléphoniquement -téléphoniste/S. -téléphotographie/S. -télépointage/S. -téléportation/S. -téléporter/a0a+() -téléprompteur/S. -téléprospection/S. -téléprospectrice/F.() -téléradio/S. -téléradiographie/S. -télé-réalité/S. -téléreportage/S. -télérobotique/S. -téléroman/S. -téléscaphe/S. -télescopage/S. -télescope/S. -télescoper/a0a+() -télescopique/S. -téléscripteur/S. -télésecours -télésiège/S. -télésignalisation/S. -téléski/S. -téléspectatrice/F.() -télesthésie/S. -télésurveillance/S. -télétexte/S. -téléthèque/S. -télétoxie/S. -télétoxique/S. -télétraitement/S. -télétransmission/S. -télétravail/S. -télétravailleuse/F.() -télétype/S. -télévangélisme/S. -télévangéliste/S. -télévendeuse/F.() -télévente/S. -télévérité/S. -téléversement/S. -téléverser/a0a+() -télévisée/F.() -téléviser/a0a+() -téléviseur/S. -télévision/S. -télévisuelle/F.() -télex -télexer/a0a+() -télexiste/S. -tell/S. -telle/F.() -tellement -tellière/S. -tellurate/S. -tellure/S. -tellureuse/W.() -tellurhydrique/S. -tellurienne/F.() -tellurique/S. -tellurisme/S. -tellurure/S. -télolécithe/S. -télomérase/S. -télomère/S. -télophase/S. -telson/S. -téméraire/S. -témérairement -témérité/S. -témoignage/S. -témoigner/a0a+() -témoin/S. -tempe/S. -tempera -tempera -tempérament/S. -tempérance/S. -tempérante/F.() -température/S. -tempérée/F.() -tempérer/c0a+() -tempête/S. -tempêter/a0() -tempétueuse/W.() -temple/S. -templier/S. -tempo/S. -temporaire/S. -temporairement -temporale/W.() -temporaliser/a0a+() -temporalité/S. -temporelle/F.() -temporellement -temporisation/S. -temporisatrice/F.() -temporiser/a0a+() -temps -temps-réel -tenable/S. -tenace/S. -tenacement -ténacité/S. -tenaille/S. -tenaillement/S. -tenailler/a0a+() -tenancière/F.() -tenante/F.() -tendance/S. -tendancielle/F.() -tendancieuse/W.() -tendancieusement -tendelle/S. -tender/S. -tenderie/S. -tendeuse/F.() -tendineuse/W.() -tendinite/S. -tendoir/S. -tendon/S. -tendre/S. -tendre/tA() -tendrement -tendresse/S. -tendreté/S. -tendron/S. -tendue/F.() -ténèbres -ténébreuse/W.() -ténébreusement -ténébrion/S. -tènement/S. -ténesme/S. -teneur/S. -teneurmètre/S. -teneuse/F.() -ténia/S. -ténifuge/S. -tenir/i0i+() -tennis -tennisman/S. -tennistique/S. -tenniswoman/S. -tenon/S. -tenonner/a0a+() -tenonneuse/S. -ténor/S. -ténorino/S. -ténoriser/a0() -ténorite/S. -ténotomie/S. -tenrec/S. -tenségrité/S. -tenseur/S. -tensioactive/F.() -tensiomètre/S. -tension/S. -tenson/S. -tensorielle/F.() -tentaculaire/S. -tentacule/S. -tentante/F.() -tentation/S. -tentative/S. -tentatrice/F.() -tente/S. -tente-abri -tenter/a0a+() -tentes-abris -tenthrède/S. -tenture/S. -ténue/F.() -tenue/S. -ténuité/S. -tenure/S. -tenuto -téocalli/S. -tep/||-- -tepidarium/S. -tequila/S. -ter -térabit/S. -téraoctet/S. -tératogène/S. -tératogenèse/S. -tératogénie/S. -tératologie/S. -tératologique/S. -tératologiste/S. -tératologue/S. -terbine/S. -terbium/S. -tercer/a0a+() -tercet/S. -térébelle/S. -terebellum/S. -térébenthine/S. -térébinthacée/S. -térébinthe/S. -térébique/S. -térébrante/F.() -térébratule/S. -tergal/S. -tergiversation/S. -tergiverser/a0() -termaillage/S. -terme/S. -terminaison/S. -terminale/W.() -terminateur/S. -terminée/F.() -terminer/a0a+() -terminologie/S. -terminologique/S. -terminologue/S. -terminus -termite/S. -termitière/S. -ternaire/S. -terne/S. -ternie/F.() -ternir/f0f+() -ternissement/S. -ternissure/S. -terpène/S. -terpénique/S. -terpénoïde/S. -terpine/S. -terpinéol/S. -terpinol/S. -terraformation/S. -terrafungine/S. -terrage/S. -terrain/S. -terramare/S. -terraplane/S. -terraquée/F.() -terrarium/S. -terrasse/S. -terrassée/F.() -terrassement/S. -terrasser/a0a+() -terrassier/S. -terre/S. -terreau/X. -terreautage/S. -terreauter/a0a+() -terre-neuvas -terre-neuve -terre-neuvienne/F.() -terre-neuvier/S. -terre-plein/S. -terrer/a0a+() -terrestre/S. -terreur/S. -terreuse/W.() -terrible/S. -terriblement -terricole/S. -terrienne/F.() -terrier/S. -terrifiante/F.() -terrifiée/F.() -terrifier/a0a+() -terrifique/S. -terrigène/S. -terril/S. -terrine/S. -terrir/f0() -territoire/S. -territoriale/W.() -territorialement -territorialité/S. -terroir/S. -terrorisante/F.() -terrorisée/F.() -terroriser/a0a+() -terrorisme/S. -terroriste/S. -terser/a0a+() -tertiaire/S. -tertiairisation/S. -tertiarisation/S. -tertio -tertre/S. -tervueren/S. -terzetto/S. -teseter/d0a+() -tesla/Um() -tesselation/S. -tesselle/S. -tessiture/S. -tesson/S. -test/S. -testabilité/S. -testable/S. -testacée/F.() -testacelle/S. -testage/S. -testament/S. -testamentaire/S. -testatrice/F.() -testée/F.() -tester/a0a+() -testeuse/F.() -testiculaire/S. -testicule/S. -testimoniale/W.() -testologie/S. -teston/S. -testostérone/S. -tétanie/S. -tétaniforme/S. -tétanique/S. -tétanisante/F.() -tétanisation/S. -tétanisée/F.() -tétaniser/a0a+() -tétanisme/S. -tétanos -tétanotoxine/S. -têtard/S. -tête/S. -tête-à-queue -tête-à-tête -têteau/X. -tête-bêche -tête-de-Maure -tête-de-clou -tête-de-loup -tête-de-moineau -tête-de-mort -tête-de-nègre -tête-de-nègre -tétée/S. -téter/c0a+() -téterelle/S. -têtes-de-Maure -têtes-de-clou -têtes-de-loup -têtes-de-moineau -têtes-de-mort -têtes-de-nègre -têtière/S. -tétin/S. -tétine/S. -téton/S. -tétonnière/S. -tétra/S. -tétrachlorure/S. -tétracorde/S. -tétracycline/S. -tétradactyle/S. -tétrade/S. -tétradrachme/S. -tétraèdre/S. -tétragone/S. -tétragramme/S. -tétrahydronaphtaline/S. -tétralogie/S. -tétramère/S. -tétramètre/S. -tétramorphe/S. -tétraphonie/S. -tétraplégie/S. -tétraplégique/S. -tétraploïde/S. -tétraploïdie/S. -tétrapode/S. -tétrapolaire/S. -tétraptère/S. -tétrarchat/S. -tétrarchie/S. -tétrarchique/S. -tétrarque/S. -tétras -tétrasodique/S. -tétrastyle/S. -tétrasyllabe/S. -tétrasyllabique/S. -tétraterpène/S. -tétratomicité/S. -tétratomique/S. -tétravalence/S. -tétravalente/F.() -tétrodon/S. -tétrodotoxine/S. -tette/S. -têtue/F.() -têtuer/a0a+() -teufs-teufs -teuf-teuf -teutonique/S. -teutonne/F.() -tex -tex/||-- -texane/F.() -texte/S. -textile/S. -texto/S. -textualiser/a0a+() -textuelle/F.() -textuellement -texture/S. -texturée/F.() -texturer/a0a+() -texturisation/S. -texturiser/a0a+() -th/||-- -thaïe/F.() -thaïlandaise/F.() -thalamique/S. -thalamus -thalassémie/S. -thalassothérapeute/S. -thalassothérapie/S. -thalassotoque/S. -thaler/S. -thalidomide/S. -thalle/S. -thallium/S. -thanatologie/S. -thanatopraxie/S. -thanatos -thaumaturge/S. -thaumaturgie/S. -thaumaturgique/S. -thé/S. -théatin/S. -théâtrale/W.() -théâtralement -théâtraliser/a0a+() -théâtralisme/S. -théâtralité/S. -théâtre/S. -thébaïde/S. -thébaine/F.() -thébaïne/S. -thébaïque/S. -thébaïsme/S. -théière/F.() -théine/S. -théisme/S. -théiste/S. -thématique/S. -thématiser/a0a+() -thématisme/S. -thème/S. -thénar/S. -théobromine/S. -théocrate/S. -théocratie/S. -théocratique/S. -théodicée/S. -théodolite/S. -théogonie/S. -théogonique/S. -théologale/W.() -théologie/S. -théologienne/F.() -théologique/S. -théologiquement -théophanie/S. -théophilanthrope/S. -théophilanthropie/S. -théophylline/S. -théorbe/S. -théorématique/S. -théorème/S. -théorétique/S. -théoricienne/F.() -théorie/S. -théorique/S. -théoriquement -théorisation/S. -théoriser/a0a+() -théosophe/S. -théosophie/S. -thèque/S. -thérapeute/S. -thérapeutique/S. -thérapie/S. -thériaque/S. -théridion/S. -thermale/W.() -thermalisme/S. -thermes -thermicienne/F.() -thermidor/S. -thermie/S. -thermique/S. -thermiquement -thermistance/S. -thermisteur/S. -thermistor/S. -thermite/S. -thermocautère/S. -thermochimie/S. -thermochimique/S. -thermocinétique/S. -thermocolorimètre/S. -thermocouple/S. -thermodurcissable/S. -thermodynamicienne/F.() -thermodynamique/S. -thermoélectricité/S. -thermoélectrique/S. -thermoformage/S. -thermogène/S. -thermogenèse/S. -thermographie/S. -thermogravimétrie/S. -thermohaline/F.() -thermolabile/S. -thermoludique/S. -thermoludisme/S. -thermoluminescence/S. -thermolyse/S. -thermomagnétique/S. -thermomètre/S. -thermométrie/S. -thermométrique/S. -thermonucléaire/S. -thermophile/S. -thermoplastique/S. -thermopompe/S. -thermopropulsée/F.() -thermopropulsion/S. -thermopropulsive/F.() -thermorégulation/S. -thermorégulatrice/F.() -thermorésistante/F.() -thermos -thermoscope/S. -thermosiphon/S. -thermosphère/S. -thermostable/S. -thermostat/S. -thermostatique/S. -thermothérapie/S. -théropode/S. -thésarde/F.() -thésaurisation/S. -thésaurisée/F.() -thésauriser/a0a+() -thésauriseuse/F.() -thésaurus -thèse/S. -thesmophories -thesmothète/S. -thêta -thétique/S. -théurge/S. -théurgie/S. -théurgique/S. -théurgiste/S. -thiamine/S. -thiase/S. -thibaude/S. -thioalcool/S. -tholos -thomisme/S. -thomiste/S. -thon/S. -thonaire/S. -thonier/S. -thora/S. -thoracentèse/S. -thoracique/S. -thoracocentèse/S. -thoracoplastie/S. -thorax -thorine/S. -thorite/S. -thorium/S. -thorn/S. -thoron/S. -thrace/S. -thrène/S. -thréonine/S. -thridace/S. -thriller/S. -thrips -thrombine/S. -thrombocyte/S. -thromboplastine/S. -thrombose/S. -thrombus -thulium/S. -thune/S. -thuriféraire/S. -thuya/S. -thylacine/S. -thym/S. -thymie/S. -thymine/S. -thymique/S. -thymol/S. -thymus -thyratron/S. -thyréotrope/S. -thyristor/S. -thyroglobuline/S. -thyroïde/S. -thyroïdectomie/S. -thyroïdienne/F.() -thyroïdisme/S. -thyroïdite/S. -thyrotrophine/S. -thyroxine/S. -thyrse/S. -tian/S. -tiare/S. -tibétaine/F.() -tibia/S. -tibiale/W.() -tic/S. -ticket/S. -tic-tac -tictaquer/a0() -tiédasse/S. -tiède/S. -tièdement -tiédeur/S. -tiédir/f0f+() -tiédissement/S. -tienne/F.() -tierce/S. -tiercée/F.() -tiercefeuille/S. -tiercelet/S. -tiercer/a0a+() -tierceron/S. -tiers -tiers-monde/S. -tiers-mondisme/S. -tiers-mondiste/S. -tiers-point/S. -tif/S. -tiffe/S. -tifosi -tige/S. -tigelle/S. -tigette/S. -tiglon/S. -tignasse/S. -tigrée/F.() -tigrer/a0a+() -tigresse/F.() -tigridie/S. -tigron/S. -tiki/S. -tilbury/S. -tilde/S. -tiliacée/S. -tillac/S. -tillage/S. -tillandsie/S. -tille/S. -tiller/a0a+() -tilleul/S. -tilt/S. -tiltée/F.() -tilter/a0a+() -timbale/S. -timbalier/S. -timbrage/S. -timbre/S. -timbre-amende -timbrée/F.() -timbre-poste -timbre-quittance -timbrer/a0a+() -timbres-amendes -timbres-poste -timbres-quittances -timide/S. -timidement -timidité/S. -timing/S. -timocratie/S. -timon/S. -timonerie/S. -timonière/F.() -timorée/F.() -tin/S. -tinamou/S. -tincal/S. -tinctoriale/W.() -tinette/S. -tintamarre/S. -tintement/S. -tinter/a0a+() -tintin -tintinnabulante/F.() -tintinnabulement/S. -tintinnabuler/a0() -tintouin/S. -tipi/S. -tipule/S. -tique/S. -tiquer/a0() -tiquetée/F.() -tiqueture/S. -tiqueuse/F.() -tir/S. -tirade/S. -tirage/S. -tiraillante/F.() -tiraillée/F.() -tiraillement/S. -tirailler/a0a+() -tiraillerie/S. -tirailleur/S. -tiramisu/S. -tirant/S. -tire/S. -tire-au-cul -tire-au-flanc -tire-balle/S. -tire-bonde/S. -tire-botte/S. -tire-bouchon/S. -tire-bouchonnée/F.() -tire-bouchonner/a0a+() -tire-bourre -tire-bouton/S. -tire-braise -tire-clou/S. -tire-crins -tire-d'aile -tirée/F.() -tire-fesses -tire-feu -tire-filet/S. -tire-fond -tire-jus -tire-laine -tire-lait -tire-larigot -tire-ligne/S. -tirelire/S. -tire-lisse -tire-l'œil -tire-pied/S. -tirer/a0a+() -tire-sac/S. -tire-sou/S. -tiret/S. -tiretaine/S. -tireté/S. -tire-terre -tirette/S. -tireuse/F.() -tire-veille -tire-veine/S. -tiroir/S. -tiroir-caisse -tiroirs-caisses -tisane/S. -tisaner/a0a+() -tiser/a0a+() -tison/S. -tisonnée/F.() -tisonner/a0a+() -tisonnier/S. -tissage/S. -tissée/F.() -tisser/a0a+() -tisserande/F.() -tisserin/S. -tisseuse/F.() -tissu/S. -tissu-éponge -tissulaire/S. -tissure/S. -tissus-éponges -tistre/tU() -titan/S. -titane/S. -titanesque/S. -titanide/S. -titanique/S. -titanite/S. -titi/S. -titillation/S. -titiller/a0a+() -titisme/S. -titiste/S. -titrage/S. -titraille/S. -titre/S. -titrée/F.() -titrer/a0a+() -titre-restaurant -titres-restaurant -titrisation/S. -titrisée/F.() -titriser/a0a+() -titubante/F.() -titubation/S. -tituber/a0() -titulaire/S. -titularisation/S. -titularisée/F.() -titulariser/a0a+() -titulature/S. -tmèse/S. -toast/S. -toaster/S. -toaster/a0a+() -toasteur/S. -toboggan/S. -toc/S. -tocante/S. -tocarde/F.() -toccata/S. -tocsin/S. -tofu/S. -toge/S. -togolaise/F.() -togoliser/a0a+() -tohu-bohu -toi -toile/S. -toiler/a0a+() -toilerie/S. -toilettage/S. -toilette/S. -toiletter/a0a+() -toi-même -toise/S. -toiser/a0a+() -toison/S. -toit/S. -toiture/S. -tokai/S. -tokamak/S. -tokay/S. -tokharienne/F.() -tôle/S. -tôlée/S. -tolérable/S. -tolérance/S. -tolérante/F.() -tolérantisme/S. -tolérée/F.() -tolérer/c0a+() -tôlerie/S. -tolet/S. -tôlière/F.() -tolite/S. -tollé/S. -toltèque/S. -tolu/S. -toluène/S. -toluidine/S. -toluol/S. -tomahawk/S. -tomaison/S. -tomate/S. -tombac/S. -tombale/W.() -tombante/F.() -tombe/S. -tombeau/X. -tombée/F.() -tombelle/S. -tomber/a0a+() -tombereau/X. -tombeur/S. -tombola/S. -tome/S. -tomenteuse/W.() -tomer/a0a+() -tomette/S. -tomme/S. -tommy/S. -tomodensitomètre/S. -tomodensitométrie/S. -tomodensitométrique/S. -tomographe/S. -tomographie/S. -tomographique/S. -tom-pouce -ton -ton/S. -tonale/F.() -tonalité/S. -tondage/S. -tondaison/S. -tondeuse/F.() -tondre/tA() -tondue/F.() -toner/S. -tonicardiaque/S. -tonicité/S. -tonie/S. -tonifiante/F.() -tonification/S. -tonifier/a0a+() -tonique/S. -tonitruante/F.() -tonitruer/a0() -tonka/S. -tonlieu/X. -tonnage/S. -tonnante/F.() -tonne/S. -tonneau/X. -tonnelage/S. -tonnelet/S. -tonnelier/S. -tonnelle/S. -tonnellerie/S. -tonner/a0() -tonnerre/S. -tonofibrille/S. -tonologie/S. -tonométrie/S. -tonsure/S. -tonsurée/F.() -tonsurer/a0a+() -tonte/S. -tontine/S. -tontiner/a0a+() -tontinière/F.() -tontisse/S. -tonton/S. -tonture/S. -tonus -top/S. -topaze/S. -tope -toper/a0() -topette/S. -tophet/S. -tophus -topicaliser/a0a+() -topinambour/S. -topique/S. -topless -topo/S. -topographe/S. -topographie/S. -topographique/S. -topographiquement -topologie/S. -topologique/S. -topologiquement -toponyme/S. -toponymie/S. -toponymique/S. -toponymiste/S. -toquade/S. -toque/S. -toquée/F.() -toquer/a0a+() -toquet/S. -torah/S. -torche/S. -torche-cul/S. -torchée/F.() -torcher/a0a+() -torchère/S. -torchis -torchon/S. -torchonner/a0a+() -torcol/S. -tordage/S. -tordante/F.() -tord-boyaux -tordeuse/F.() -tordoir/S. -tordre/tA() -tordue/F.() -tore/S. -toréador/S. -toréer/a0() -torero/S. -toreutique/S. -torgnole/S. -torii -toril/S. -torique/S. -tormentille/S. -tornade/S. -toroïdale/W.() -toron/S. -toronner/a0a+() -toronneuse/S. -torpédo/S. -torpeur/S. -torpide/S. -torpillage/S. -torpille/S. -torpillée/F.() -torpiller/a0a+() -torpillerie/S. -torpilleur/S. -torque/S. -torr/S. -torréfacteur/S. -torréfaction/S. -torréfier/a0a+() -torrent/S. -torrentielle/F.() -torrentiellement -torrentueuse/W.() -torride/S. -torsade/S. -torsadée/F.() -torsader/a0a+() -torse/S. -torseur/S. -torsion/S. -tort/S. -torticolis -tortil/S. -tortillage/S. -tortillard/S. -tortille/S. -tortillement/S. -tortiller/a0a+() -tortillon/S. -tortionnaire/S. -tortis -tortorer/a0a+() -tortue/S. -tortueuse/W.() -tortueusement -torturante/F.() -torture/S. -torturée/F.() -torturer/a0a+() -torve/S. -tory/S. -torysme/S. -toscane/F.() -tosser/a0() -tôt -totale/W.() -totalement -totalisation/S. -totalisatrice/F.() -totalisée/F.() -totaliser/a0a+() -totaliseur/S. -totalitaire/S. -totalitarisme/S. -totalité/S. -totem/S. -totémique/S. -totémisme/S. -tôt-fait/S. -toto/S. -toton/S. -touage/S. -touaille/S. -touareg/S. -touarègue/S. -toubabiser/a0a+() -toubib/S. -toucan/S. -touchable/S. -touchante/F.() -touchau/X. -touche/S. -touche-à-tout -touchée/F.() -toucher/S. -toucher/a0a+() -touchette/S. -toucheur/S. -touer/a0a+() -toueur/S. -touffe/S. -touffeur/S. -touffue/F.() -touillage/S. -touille/S. -touiller/a0a+() -touillette/S. -toujours -touloupe/S. -toulousaine/F.() -toundra/S. -toungouse/S. -toupet/S. -toupie/S. -toupiller/a0a+() -toupilleuse/F.() -toupillon/S. -toupiner/a0() -touque/S. -tour/S. -touraillage/S. -touraille/S. -touranienne/F.() -tourbe/S. -tourber/a0() -tourbeuse/W.() -tourbière/F.() -tourbillon/S. -tourbillonnaire/S. -tourbillonnante/F.() -tourbillonnement/S. -tourbillonner/a0() -tourd/S. -tourdille/S. -tourelle/S. -touret/S. -tourie/S. -tourière/F.() -tourillon/S. -tourillonner/a0() -tourisme/S. -touriste/S. -touristique/S. -tourmaline/S. -tourment/S. -tourmente/S. -tourmentée/F.() -tourmenter/a0a+() -tourmenteuse/F.() -tourmentin/S. -tournage/S. -tournailler/a0() -tournante/F.() -tournasser/a0a+() -tournebouler/a0a+() -tournebride/S. -tournebroche/S. -tourne-disque -tourne-disque/S. -tournedos -tournée/F.() -tournée/S. -tourne-feuille -tournemain/S. -tourne-oreille -tourne-pierre/S. -tourner/a0a+() -tournerie/S. -tourne-soc -tournesol/S. -tournette/S. -tourneuse/F.() -tourne-vent -tournevis -tournicoter/a0() -tourniller/a0() -tourniole/S. -tourniquer/a0() -tourniquet/S. -tournis -tournisse/S. -tournoi/S. -tournoiement/S. -tournoyante/F.() -tournoyer/a0() -tournure/S. -touron/S. -tour-opérateur/S. -tours-opérateurs -tourte/S. -tourteau/X. -tourtelée/F.() -tourtelette/S. -tourtereau/X. -tourterelle/S. -tourtière/S. -tous -touselle/S. -toussailler/a0() -tousser/a0() -tousserie/S. -tousseuse/F.() -toussotement/S. -toussoter/a0() -tout-à-l'égout -toute/F.() -toute-bonne -toute-épice -toutefois -toute-puissance -toute-puissante -touter/a0() -toutes-boîtes -toutes-bonnes -toutes-épices -toutes-puissantes -tout-fou/S. -toutim -toutou/S. -tout-petit/S. -tout-puissant/S. -tout-venant -toux -toxémie/S. -toxicité/S. -toxico/S. -toxicodermie/S. -toxicologie/S. -toxicologique/S. -toxicologue/S. -toxicomane/S. -toxicomaniaque/S. -toxicomanie/S. -toxicose/S. -toxine/S. -toxique/S. -toxoplasme/S. -toxoplasmose/S. -toyotisme/S. -tr/||-- -trabe/S. -trabée/S. -trabouler/a0() -trac/S. -traçabilité/S. -traçable/S. -traçage/S. -tracaner/a0a+() -traçante/F.() -tracas -tracassée/F.() -tracasser/a0a+() -tracasserie/S. -tracassière/F.() -tracassin/S. -trace/S. -tracé/S. -tracée/F.() -tracement/S. -tracéologie/S. -tracer/a0a+() -traceret/S. -traceuse/F.() -trachéale/W.() -trachée/S. -trachée-artère -trachéenne/F.() -trachées-artères -trachéide/S. -trachéite/S. -trachéo-bronchite/S. -trachéostomie/S. -trachéotomie/S. -trachome/S. -trachyte/S. -traçoir/S. -tract/S. -tractable/S. -tractage/S. -tractation/S. -tractée/F.() -tracter/a0a+() -traction/S. -tractionnaire/S. -tractive/F.() -tractoriste/S. -tractrice/F.() -tractus -trad -trader/S. -tradescantia/S. -trade-union/S. -traditeur/S. -tradition/S. -traditionalisme/S. -traditionaliste/S. -traditionnaire/S. -traditionnelle/F.() -traditionnellement -traduction/S. -traductrice/F.() -traduire/yM() -traduisible/S. -traduite/F.() -trafic/S. -traficoter/a0() -traficoteuse/F.() -trafiquante/F.() -trafiquée/F.() -trafiquer/a0a+() -trafiqueuse/F.() -tragédie/S. -tragédienne/F.() -tragi-comédie/S. -tragi-comique/S. -tragique/S. -tragiquement -trahie/F.() -trahir/f0f+() -trahison/S. -traille/S. -train/S. -traînage/S. -traînailler/a0() -traînante/F.() -traînarde/F.() -traînasser/a0a+() -traîne/S. -traîneau/X. -traîne-bûche -traîne-buisson -traînée/S. -traîne-malheur -traînement/S. -traîne-misère -traîner/a0a+() -traîne-savates -traîne-semelles -traîneuse/F.() -trainglot/S. -training/S. -train-train -traire/wL() -trait/S. -traitable/S. -traitance/S. -traitante/F.() -traite/F.() -traite/S. -traitée/F.() -traitement/S. -traiter/a0a+() -traiteur/S. -traîtresse/F.() -traîtreusement -traîtrise/S. -trajectographie/S. -trajectoire/S. -trajet/S. -tralala -tralala/S. -tram/S. -tramage/S. -tramail/S. -trame/S. -tramer/a0a+() -traminot/S. -tramontane/S. -tramp/S. -trampoline/S. -tramway/S. -tranchage/S. -tranchante/F.() -tranche/S. -tranchée/F.() -tranchée/S. -tranchée-abri -tranchées-abris -tranchefiler/a0a+() -trancher/a0a+() -tranchet/S. -trancheuse/F.() -tranchoir/S. -tranquille/S. -tranquillement -tranquillisante/F.() -tranquillisation/S. -tranquillisée/F.() -tranquilliser/a0a+() -tranquillité/S. -transaction/S. -transactionnelle/F.() -transafricaine/F.() -transalpine/F.() -transandine/F.() -transat/S. -transatlantique/S. -transbahutement/S. -transbahuter/a0a+() -transbordement/S. -transborder/a0a+() -transbordeur/S. -transcanadienne/F.() -transcaspienne/F.() -transcendance/S. -transcendantale/W.() -transcendantalisme/S. -transcendantaliste/S. -transcendante/F.() -transcendée/F.() -transcender/a0a+() -transcodage/S. -transcoder/a0a+() -transcodeur/S. -transcontinentale/W.() -transcripteur/S. -transcription/S. -transcrire/y1() -transcrite/F.() -transdisciplinaire/S. -transducteur/S. -transduction/S. -transe/S. -transept/S. -transfection/S. -transférable/S. -transférée/F.() -transfèrement/S. -transférentielle/F.() -transférer/c0a+() -transfert/S. -transfiguration/S. -transfiguratrice/F.() -transfigurée/F.() -transfigurer/a0a+() -transfiler/a0a+() -transfinie/F.() -transfixion/S. -transfo/S. -transformable/S. -transformante/F.() -transformation/S. -transformationnelle/F.() -transformatrice/F.() -transformée/F.() -transformer/a0a+() -transformisme/S. -transformiste/S. -transfrontalière/F.() -transfuge/S. -transfusée/F.() -transfuser/a0a+() -transfusion/S. -transgénérationnelle/F.() -transgenèse/S. -transgénique/S. -transgénose/S. -transgresser/a0a+() -transgresseur/S. -transgression/S. -transgressive/F.() -transhumance/S. -transhumante/F.() -transhumer/a0a+() -transie/F.() -transiger/a0() -transillumination/S. -transir/f0f+() -transistor/S. -transistorisation/S. -transistoriser/a0a+() -transit/S. -transitaire/S. -transiter/a0a+() -transition/S. -transitionnelle/F.() -transitive/F.() -transitivement -transitivité/S. -transitoire/S. -transitoirement -translatée/F.() -translater/a0a+() -translation/S. -translationnelle/F.() -translative/F.() -translittération/S. -translittérer/c0a+() -translocation/S. -translucide/S. -translucidité/S. -transmetteur/S. -transmettre/vA() -transmigration/S. -transmigrer/a0() -transmise/F.() -transmissibilité/S. -transmissible/S. -transmissiomètre/S. -transmission/S. -transmuable/S. -transmuée/F.() -transmuer/a0a+() -transmutabilité/S. -transmutable/S. -transmutation/S. -transmutatoire/S. -transmutée/F.() -transmuter/a0a+() -transnationale/W.() -transneptunienne/F.() -transocéanienne/F.() -transocéanique/S. -transparaître/wQ() -transparence/S. -transparente/F.() -transpercée/F.() -transpercement/S. -transpercer/a0a+() -transpirante/F.() -transpiration/S. -transpirer/a0a+() -transplant/S. -transplantable/S. -transplantation/S. -transplanter/a0a+() -transplantoir/S. -transpolaire/S. -transpondeur/S. -transport/S. -transportable/S. -transportation/S. -transportée/F.() -transporter/a0a+() -transporteuse/F.() -transposable/S. -transposée/F.() -transposer/a0a+() -transposition/S. -transpositrice/F.() -transpyrénéenne/F.() -transsaharienne/F.() -transsexualisme/S. -transsexuelle/F.() -transsibérienne/F.() -transsonique/S. -transsubstantiation/S. -transsubstantier/a0a+() -transsudat/S. -transsudation/S. -transsuder/a0a+() -transvasement/S. -transvaser/a0a+() -transvection/S. -transversale/W.() -transversalement -transversalité/S. -transverse/S. -transvestisme/S. -transvider/a0a+() -transylvaine/F.() -trantran/S. -trapèze/S. -trapéziste/S. -trapézoïdale/W.() -trapézoïde/S. -trappe/S. -trappeur/S. -trappillon/S. -trappiste/S. -trappistine/S. -trapue/F.() -traque/S. -traquée/F.() -traquenard/S. -traquer/a0a+() -traquet/S. -traqueuse/F.() -trattoria/S. -trauma/S. -traumatique/S. -traumatisante/F.() -traumatisée/F.() -traumatiser/a0a+() -traumatisme/S. -traumatologie/S. -traumatologique/S. -traumatologiste/S. -traumatologue/S. -travail/X. -travaillée/F.() -travailler/a0a+() -travailleuse/F.() -travaillisme/S. -travailliste/S. -travailloter/a0() -travée/S. -travelage/S. -traveller's -travelling/S. -travelo/S. -traversable/S. -traversante/F.() -traverse/F.() -traversée/F.() -traversée/S. -traverser/a0a+() -traversière/F.() -traversin/S. -travertin/S. -travestie/F.() -travestir/f0f+() -travestisme/S. -travestissement/S. -trayeuse/F.() -trayon/S. -trébuchante/F.() -trébuchement/S. -trébucher/a0a+() -trébuchet/S. -tréfilage/S. -tréfiler/a0a+() -tréfilerie/S. -tréfileuse/F.() -trèfle/S. -tréflée/F.() -tréflière/S. -tréfondre -tréfonds -tréhalose/S. -treillage/S. -treillager/a0a+() -treillageur/S. -treillagiste/S. -treille/S. -treillis -treillisser/a0a+() -treize -treizième/S. -treizièmement -treiziste/S. -trek/S. -trekkeuse/F.() -trekking/S. -trélingage/S. -tréma/S. -trémail/S. -trématage/S. -trémater/a0a+() -tremblante/F.() -tremblée/F.() -tremblement/S. -trembler/a0() -trembleuse/F.() -tremblotante/F.() -tremblote/S. -tremblotement/S. -trembloter/a0() -trémelle/S. -tremens -trémie/S. -trémière/S. -trémolo/S. -trémoussement/S. -trémousser/a0a+() -trempage/S. -trempe/S. -trempée/F.() -tremper/a0a+() -trempette/S. -tremplin/S. -trémulation/S. -trémuler/a0a+() -trench-coat/S. -trentain/S. -trentaine/S. -trente -trente-cinq -trente-deux -trente-et-quarante -trente-et-un -trente-huit -trentenaire/S. -trente-neuf -trente-quatre -trente-sept -trente-six -trente-trois -trentième/S. -trépan/S. -trépanation/S. -trépanée/F.() -trépaner/a0a+() -trépang/S. -trépas -trépassée/F.() -trépasser/a0() -tréphocyte/S. -tréphone/S. -trépidante/F.() -trépidation/S. -trépider/a0() -trépied/S. -trépignement/S. -trépigner/a0a+() -trépigneuse/S. -trépointe/S. -tréponème/S. -très -trésaille/S. -trescheur/S. -trésor/S. -trésorerie/S. -trésorière/F.() -tressage/S. -tressaillement/S. -tressaillir/iS() -tressautement/S. -tressauter/a0() -tresse/S. -tressée/F.() -tresser/a0a+() -tréteau/X. -treuil/S. -treuillage/S. -treuiller/a0a+() -trêve/S. -trévirer/a0a+() -tri/S. -triac/S. -triacide/S. -triade/S. -triage/S. -triaire/S. -trial/S. -trialcool/S. -triandine/S. -triandrie/S. -triangle/S. -triangulabilité/S. -triangulable/S. -triangulaire/S. -triangulairement -triangularisation/S. -triangularité/S. -triangulation/S. -trianguler/a0a+() -triasique/S. -triathlon/S. -triatomique/S. -tribade/S. -tribale/W.() -tribalisme/S. -triballer/a0a+() -tribart/S. -tribasique/S. -triboélectricité/S. -triboélectrique/S. -tribologie/S. -triboluminescence/S. -tribomètre/S. -tribométrie/S. -tribord/S. -tribordais -triboulet/S. -tribu/S. -tribulation/S. -tribun/S. -tribunal/X. -tribunat/S. -tribune/S. -tribunitienne/F.() -tribut/S. -tributaire/S. -tric/S. -tricennale/W.() -tricentenaire/S. -tricéphale/S. -triceps -tricératops -triche/S. -tricher/a0() -tricherie/S. -tricheuse/F.() -trichiasis -trichinée/F.() -trichineuse/W.() -trichinose/S. -trichite/S. -trichloracétique/S. -trichloréthylène/S. -trichlorure/S. -trichocéphale/S. -tricholome/S. -trichoma/S. -trichome/S. -trichomonas -trichophagie/S. -trichophyton/S. -trichotillomanie/S. -trichrome/S. -trichromie/S. -trick/S. -triclinique/S. -triclinium/S. -tricoise/S. -tricolore/S. -tricorne/S. -tricot/S. -tricotage/S. -tricotée/F.() -tricoter/a0a+() -tricotets -tricoteuse/F.() -tricouni/S. -tricourant -trictrac/S. -tricuspide/S. -tricycle/S. -tricyclique/S. -tridacne/S. -tridactyle/S. -trident/S. -tridentée/F.() -tridi/S. -tridiagonale/S. -tridimensionnalité/S. -tridimensionnelle/F.() -trièdre/S. -triennale/W.() -trier/a0a+() -triérarque/S. -trière/S. -trieuse/F.() -trifide/S. -trifoliolée/F.() -triforium/S. -trifouiller/a0a+() -trigémellaire/S. -trigéminée/F.() -trigle/S. -triglyphe/S. -trigonale/W.() -trigonalisation/S. -trigone/S. -trigonelle/S. -trigonocéphale/S. -trigonométrie/S. -trigonométrique/S. -trigonométriquement -trigramme/S. -trijumeau/X. -trikini/S. -trilatérale/W.() -trilatération/S. -trilinéaire/S. -trilingue/S. -trilinguisme/S. -trilitère/S. -trille/S. -triller/a0a+() -trilliard/S. -trillion/S. -trilobée/F.() -trilobite/S. -triloculaire/S. -trilogie/S. -trimaran/S. -trimard/S. -trimarder/a0a+() -trimardeur/S. -trimbalage/S. -trimbalement/S. -trimbaler/a0a+() -trimer/a0() -trimère/S. -trimestre/S. -trimestrielle/F.() -trimestriellement -trimètre/S. -trimmer/S. -trimoteur/S. -trine/F.() -trinervée/F.() -tringle/S. -tringler/a0a+() -tringlot/S. -trinitaire/S. -trinité/S. -trinitrobenzène/S. -trinitrotoluène/S. -trinôme/S. -trinquer/a0() -trinquette/S. -trinqueur/S. -trio/S. -triode/S. -triol/S. -triolet/S. -triomphale/W.() -triomphalement -triomphalisme/S. -triomphaliste/S. -triomphante/F.() -triomphatrice/F.() -triomphe/S. -triompher/a0() -trionyx -trip/S. -tripaille/S. -tripale/S. -tripang/S. -tripartie/F.() -tripartisme/S. -tripartite/S. -tripartition/S. -tripatouillage/S. -tripatouiller/a0a+() -tripatouilleuse/F.() -tripe/S. -triperie/S. -tripette/S. -triphasée/F.() -triphosphate/S. -tripière/F.() -triplace/S. -triple/S. -triplée/F.() -triplement/S. -tripler/a0a+() -triplet/S. -triplette/S. -triplex -triplicata/S. -triploïde/S. -triploïdie/S. -triplure/S. -tripode/S. -tripodie/S. -tripolaire/S. -tripoli/S. -triporteur/S. -tripot/S. -tripotage/S. -tripoter/a0a+() -tripoteuse/F.() -tripous -tripoux -triptyque/S. -trique/S. -triqueballe/S. -triquer/a0a+() -triquet/S. -trirectangle/S. -trirègne/S. -trirème/S. -trisaïeule/F.() -trisaïeux -trisannuelle/F.() -trisection/S. -trisectrice/F.() -triséquer/c0a+() -trisme/S. -trismégiste/S. -trismus -trisoc/S. -trisodique/S. -trisomie/S. -trisomique/S. -trisser/a0a+() -triste/S. -tristement -tristesse/S. -tristounette/F.() -trisyllabe/S. -trisyllabique/S. -triterpène/S. -trithérapie/S. -triticale/S. -tritium/S. -triton/S. -triturable/S. -triturateur/S. -trituration/S. -triturer/a0a+() -triumvir/S. -triumvirale/W.() -triumvirat/S. -trivalence/S. -trivalente/F.() -trivalve/S. -triviale/W.() -trivialement -trivialisable/S. -trivialisation/S. -trivialité/S. -troc/S. -trocart/S. -trochaïque/S. -trochanter/S. -troche/S. -trochée/S. -trochet/S. -trochile/S. -trochin/S. -trochiter/S. -trochlée/S. -trochure/S. -troène/S. -troglobie/S. -troglodyte/S. -troglodytique/S. -trogne/S. -trognon/S. -troïka/S. -trois -trois-deux -trois-étoiles -trois-huit -troisième/S. -troisièmement -trois-mâts -trois-points -trois-quarts -trois-quatre -trois-six -trôler/a0() -troll/S. -trolle/S. -troller/a0() -trolley/S. -trolleybus -trombe/S. -trombidion/S. -trombidiose/S. -trombine/S. -trombinoscope/S. -tromblon/S. -trombone/S. -tromboniste/S. -trommel/S. -trompe/S. -trompée/F.() -trompe-la-mort -trompe-l'œil -tromper/a0a+() -tromperie/S. -trompeter/d0a+() -trompette/S. -trompette-des-morts -trompettes-des-morts -trompettiste/S. -trompeuse/F.() -trompeusement -trompillon/S. -tronc/S. -troncation/S. -troncature/S. -tronche/S. -tronchet/S. -tronçon/S. -tronconique/S. -tronçonnage/S. -tronçonnée/F.() -tronçonnement/S. -tronçonner/a0a+() -tronçonneuse/F.() -tronculaire/S. -trône/S. -trôner/a0() -tronquée/F.() -tronquer/a0a+() -trop -trope/S. -tropézienne/F.() -trophée/S. -trophique/S. -trophoblaste/S. -trophoblastique/S. -trophomicrobienne/F.() -tropicale/W.() -tropicalisation/S. -tropicaliser/a0a+() -tropique/S. -tropisme/S. -tropopause/S. -troposphère/S. -troposphérique/S. -trop-perçu/S. -trop-plein/S. -troquée/F.() -troquer/a0a+() -troquet/S. -troqueuse/F.() -trot/S. -trotskisme/S. -trotskiste/S. -trottante/F.() -trotte/S. -trotter/a0a+() -trotteuse/F.() -trottin/S. -trottinante/F.() -trottinement/S. -trottiner/a0() -trottinette/S. -trottoir/S. -trou/S. -troubade/S. -troubadour/S. -troublante/F.() -trouble/S. -troubleau/X. -troublée/F.() -trouble-fête/S. -troubler/a0a+() -trouée/F.() -trouée/S. -trouer/a0a+() -troufignon/S. -troufion/S. -trouillarde/F.() -trouille/S. -trouillomètre/S. -trouilloter/a0() -trou-madame -troupe/S. -troupeau/X. -troupiale/S. -troupier/S. -trous-madame -troussage/S. -trousse/S. -trousseau/X. -troussée/F.() -trousse-galant -trousse-pet -trousse-pète -trousse-pied -trousse-queue -troussequin/S. -troussequiner/a0a+() -trousser/a0a+() -trousseur/S. -trou-trou/S. -trouvable/S. -trouvaille/S. -trouvée/F.() -trouver/a0a+() -trouvère/S. -trouveuse/F.() -troyenne/F.() -truandage/S. -truande/F.() -truander/a0a+() -truanderie/S. -truble/S. -trublion/S. -truc/S. -trucage/S. -truchement/S. -trucidée/F.() -trucider/a0a+() -truck/S. -trucmuche/S. -truculence/S. -truculente/F.() -trudgeon/S. -truelle/S. -truellée/S. -truffe/S. -truffée/F.() -truffer/a0a+() -trufficulture/S. -truffière/F.() -truie/S. -truisme/S. -truite/S. -truitée/F.() -truiticulture/S. -trullo/S. -trumeau/X. -truquage/S. -truquée/F.() -truquer/a0a+() -truqueuse/F.() -truquiste/S. -trusquin/S. -trusquiner/a0a+() -trust/S. -truster/a0a+() -trusteur/S. -trypanosome/S. -trypanosomiase/S. -trypsine/S. -trypsinogène/S. -tryptophane/S. -tsar/S. -tsarévitch/S. -tsarine/S. -tsarisme/S. -tsariste/S. -tsé-tsé -t-shirt/S. -tsigane/S. -tsoin-tsoin -tsoin-tsoin -tss -tss-tss -tsunami/S. -tuable/S. -tuage/S. -tuante/F.() -tub/S. -tubage/S. -tubaire/S. -tubarde/F.() -tube/S. -tuber/a0a+() -tubéracée/F.() -tubercule/S. -tuberculeuse/W.() -tuberculide/S. -tuberculination/S. -tuberculine/S. -tuberculiner/a0a+() -tuberculinique/S. -tuberculinisation/S. -tuberculiniser/a0a+() -tuberculisation/S. -tuberculiser/a0a+() -tuberculose/S. -tubéreuse/W.() -tubériforme/S. -tubérisation/S. -tubérisée/F.() -tubérosité/S. -tubicole/S. -tubifex -tubipore/S. -tubiste/S. -tubulaire/S. -tubule/S. -tubulée/F.() -tubuleuse/W.() -tubuliflore/S. -tubuline/S. -tubulure/S. -tudesque/S. -tudieu -tue-chien -tue-diable -tuée/F.() -tue-loup -tue-mouche -tuer/a0a+() -tuerie/S. -tue-tête -tueuse/F.() -tuf/S. -tuffeau/X. -tufière/F.() -tuile/S. -tuileau/X. -tuilée/F.() -tuiler/a0a+() -tuilerie/S. -tuilette/S. -tuilière/F.() -tularémie/S. -tulipe/S. -tulipier/S. -tulle/S. -tullerie/S. -tullière/F.() -tulliste/S. -tuméfaction/S. -tuméfiée/F.() -tuméfier/a0a+() -tumescence/S. -tumescente/F.() -tumeur/S. -tumorale/W.() -tumorothèque/S. -tumulaire/S. -tumulte/S. -tumultueuse/W.() -tumultueusement -tumulus -tune/S. -tuner/S. -tungar/S. -tungstate/S. -tungstène/S. -tungstique/S. -tunicelle/S. -tuning/S. -tunique/S. -tuniquée/F.() -tunisienne/F.() -tunnel/S. -tunnelier/S. -tupaïa/S. -tupie/F.() -tupinambis -tuple/S. -tupperware/S. -tuque/S. -turban/S. -turbe/S. -turbé/S. -turbeh/S. -turbide/S. -turbidité/S. -turbin/S. -turbinage/S. -turbine/S. -turbinée/F.() -turbinelle/S. -turbiner/a0a+() -turbith/S. -turbo -turbo/S. -turboagitateur/S. -turboalternateur/S. -turbocompresseur/S. -turbofiltre/S. -turbomachine/S. -turbomoteur/S. -turbopompe/S. -turbopropulseur/S. -turboréacteur/S. -turbosoufflante/F.() -turbot/S. -turbotière/S. -turbotin/S. -turbotrain/S. -turbulence/S. -turbulente/F.() -turbulette/S. -turcique/S. -turco/S. -turco-mongole/F.() -turcophone/S. -turf/S. -turfiste/S. -turgescence/S. -turgescente/F.() -turgide/S. -turion/S. -turkmène/S. -turlupiner/a0a+() -turlurette/S. -turlutaine/S. -turlute/S. -turluter/a0a+() -turlutte/S. -turlututu -turlututu/S. -turne/S. -turnep/S. -turnover/S. -turonienne/F.() -turpide/S. -turpidement -turpitude/S. -turque/F.() -turquerie/S. -turquette/S. -turquin/S. -turquoise/S. -turriculée/F.() -turritelle/S. -tussah/S. -tussilage/S. -tussor/S. -tussore/S. -tutélaire/S. -tûteler/d0a+() -tutelle/S. -tûter/a0a+() -tuteurage/S. -tuteurer/a0a+() -tuthie/S. -tutoiement/S. -tutorale/F.() -tutorat/S. -tutoriel/S. -tutoyer/a0a+() -tutoyeuse/F.() -tutrice/F.() -tutti -tutu/S. -tuyau/X. -tuyautage/S. -tuyautée/F.() -tuyauter/a0a+() -tuyauterie/S. -tuyauteuse/F.() -tuyère/S. -tweed/S. -twin-set/S. -twist/S. -twister/a0() -tylenchus -tympan/S. -tympanal/X. -tympanique/S. -tympaniser/a0a+() -tympanisme/S. -tympanon/S. -tyndallisation/S. -type/S. -typée/F.() -typer/a0a+() -typha/S. -typhique/S. -typhlite/S. -typhoïde/S. -typhoïdique/S. -typhomycine/S. -typhon/S. -typhose/S. -typhus -typique/S. -typiquement -typiser/a0a+() -typo/S. -typochromie/S. -typographe/S. -typographie/S. -typographiée/F.() -typographier/a0a+() -typographique/S. -typographiquement -typolithographie/S. -typologie/S. -typologique/S. -typomètre/S. -typon/S. -typothèque/S. -typtologie/S. -tyran/S. -tyranneau/X. -tyrannicide/S. -tyrannie/S. -tyrannique/S. -tyranniquement -tyrannisée/F.() -tyranniser/a0a+() -tyrannosaure/S. -tyrolienne/F.() -tyrosine/S. -tyrrhénienne/F.() -tzigane/S. -u -u/||-- -ua/||-- -ubac/S*() -ubérale/S*() -ubiquité/S*() -ubuesque/S*() -ufologie/S*() -ufologique/S*() -ufologue/S*() -ukrainienne/F*() -ukulélé/S*() -ulcération/S*() -ulcérative/F*() -ulcère/S*() -ulcérée/F*() -ulcérer/c4a+() -ulcéreuse/W*() -ulcéroïde/S*() -uliginaire/S*() -ulmaire/S*() -ulmiste/S*() -ulnaire/S*() -ultérieure/F*() -ultérieurement/D'Q' -ultimatum/S*() -ultime/S*() -ultimement/D'Q' -ultimo -ultra/S*() -ultracentrifugation/S*() -ultra-chic/S*() -ultracolonialisme/S*() -ultracolonialiste/S*() -ultracourte/F*() -ultrafiltration/S*() -ultrafiltre/S*() -ultralibérale/W*() -ultralibéralisme/S*() -ultramarine/F*() -ultramétrique/S*() -ultramicroscope/S*() -ultramicroscopie/S*() -ultramicroscopique/S*() -ultramoderne/S*() -ultramontaine/F*() -ultramontanisme/S*() -ultraorthodoxe/S*() -ultra-petita/D'Q' -ultra-petita/L'D'Q' -ultraponie/S*() -ultraponique/S*() -ultrapression/S*() -ultrarésistante/F*() -ultrarévolutionnaire/S*() -ultraroyaliste/S*() -ultrasensible/S*() -ultrason/S*() -ultrasonique/S*() -ultraviolet/S*() -ultraviolette/F*() -ululement/S*() -ululer/a1() -ulve/S*() -umlaut/S*() -un/L'D'Q' -unaire/S*() -unanime/S*() -unanimement/D'Q' -unanimisme/S*() -unanimiste/S*() -unanimité/S*() -unau/S*() -unciforme/S*() -uncinée/F*() -underground/L'D'Q' -underground/S*() -une/L'D'Q' -unes -unetelle/S*() -unguéale/W*() -unguifère/S*() -unguis/L'D'Q' -uniate/S*() -uniaxe/S*() -unicaule/S*() -unicellulaire/S*() -unicité/S*() -unicolore/S*() -unicorne/S*() -unidimensionnelle/F*() -unidirectionnalité/S*() -unidirectionnelle/F*() -unie/F*() -unième/S*() -unièmement/D'Q' -unifère/S*() -unifiable/S*() -unification/S*() -unificatrice/F*() -unifiée/F*() -unifier/a4a+() -unifilaire/S*() -uniflore/S*() -unifoliée/F*() -uniforme/S*() -uniformément/D'Q' -uniformisante/F*() -uniformisation/S*() -uniformisée/F*() -uniformiser/a2a+() -uniformitarisme/S*() -uniformité/S*() -unijambiste/S*() -unilatérale/W*() -unilatéralement/D'Q' -unilatéralisme/S*() -unilatéralité/S*() -unilinéaire/S*() -unilingue/S*() -unilobée/F*() -uniloculaire/S*() -uniment/D'Q' -unimodulaire/S*() -uninominale/W*() -union/S*() -unionisme/S*() -unioniste/S*() -unipare/S*() -unipolaire/S*() -unipotente/F*() -unique/S*() -uniquement/D'Q' -unir/f4f+() -unisexe/S*() -unisexualité/S*() -unisexuée/F*() -unisson/S*() -unitaire/S*() -unitairement/D'Q' -unitarienne/F*() -unitarisme/S*() -unitarité/S*() -unité/S*() -unitive/F*() -univalence/S*() -univalente/F*() -univalve/S*() -univers/L'D'Q' -universalisation/S*() -universalisée/F*() -universaliser/a4a+() -universalisme/S*() -universaliste/S*() -universalité/S*() -universaux/D'Q' -universelle/F*() -universellement/D'Q' -universitaire/S*() -université/S*() -univitelline/F*() -univocité/S*() -univoque/S*() -univoquement/D'Q' -uns -untel/S*() -ununhexium/S*() -ununoctium/S*() -ununpentium/S*() -ununquadium/S*() -ununseptium/S*() -ununtrium/S*() -upas/L'D'Q' -upérisation/S*() -uppercut/S*() -upsilon/L'D'Q' -uracile/S*() -uraète/S*() -uræus/L'D'Q' -uranate/S*() -urane/S*() -uranie/S*() -uranifère/S*() -uraninite/S*() -uranique/S*() -uranisme/S*() -uranium/S*() -uranographie/S*() -uranoplastie/S*() -uranoscope/S*() -uranyle/S*() -urate/S*() -urbaine/F*() -urbanisation/S*() -urbanisée/F*() -urbaniser/a4a+() -urbanisme/S*() -urbaniste/S*() -urbanistique/S*() -urbanité/S*() -urcéolée/F*() -ure/S*() -urédospore/S*() -urée/S*() -uréide/S*() -urémie/S*() -urémique/S*() -urétérale/W*() -uretère/S*() -urétérite/S*() -uréthane/S*() -urétrale/W*() -urètre/S*() -urétrite/S*() -urgemment/D'Q' -urgence/S*() -urgente/F*() -urgentissime/S*() -urgentiste/S*() -urgentologue/S*() -urger/a9() -uricémie/S*() -uridine/S*() -urinaire/S*() -urinal/X*() -urine/S*() -uriner/a2a+() -urineuse/W*() -urinifère/S*() -urinoir/S*() -urique/S*() -urne/S*() -urobiline/S*() -urobilinogène/S*() -urobilinurie/S*() -urochrome/S*() -urodèle/S*() -uro-génitale/W*() -urogénitale/W*() -urographie/S*() -urolagnie/S*() -urologie/S*() -urologique/S*() -urologue/S*() -uromètre/S*() -uropode/S*() -uropygiale/W*() -uropygienne/F*() -uroscopie/S*() -uroscopique/S*() -ursuline/S*() -urticaire/S*() -urticante/F*() -urtication/S*() -urticée/S*() -urubu/S*() -uruguayenne/F*() -urus/L'D'Q' -us/D'Q' -usage/S*() -usagée/F*() -usagère/F*() -usante/F*() -usée/F*() -user/a4a+() -usinabilité/S*() -usinage/S*() -usine/S*() -usinée/F*() -usiner/a2a+() -usinière/F*() -usitée/F*() -usnée/S*() -ustensile/S*() -usucapion/S*() -usuelle/F*() -usuellement/D'Q' -usufructuaire/S*() -usufruit/S*() -usufruitière/F*() -usuraire/S*() -usurairement/D'Q' -usure/S*() -usurière/F*() -usurpation/S*() -usurpatoire/S*() -usurpatrice/F*() -usurpée/F*() -usurper/a2a+() -ut/L'D'Q' -utérine/F*() -utérus/L'D'Q' -utile/S*() -utilement/D'Q' -utilisabilité/S*() -utilisable/S*() -utilisation/S*() -utilisatrice/F*() -utilisée/F*() -utiliser/a2a+() -utilitaire/S*() -utilitarisme/S*() -utilitariste/S*() -utilité/S*() -utopie/S*() -utopique/S*() -utopisme/S*() -utopiste/S*() -utriculaire/S*() -utricule/S*() -utriculeuse/W*() -uvale/W*() -uva-ursi/L'D'Q' -uvée/S*() -uvéite/S*() -uvula/S*() -uvulaire/S*() -uvule/S*() -uxorilocale/W*() -v -va -vacance/S. -vacancière/F.() -vacante/F.() -vacarme/S. -vacataire/S. -vacation/S. -vaccaire/S. -vaccin/S. -vaccinable/S. -vaccinale/W.() -vaccination/S. -vaccinatrice/F.() -vaccine/S. -vaccinée/F.() -vaccinelle/S. -vacciner/a0a+() -vaccinide/S. -vaccinier/S. -vaccinifère/S. -vaccinogène/S. -vaccinoïde/S. -vaccinostyle/S. -vaccinothérapie/S. -vacharde/F.() -vache/S. -vachement -vachère/F.() -vacherie/S. -vacherin/S. -vachette/S. -vacillante/F.() -vacillation/S. -vacillement/S. -vaciller/a0() -vacive/S. -vacuité/S. -vacuolaire/S. -vacuole/S. -vacuolisation/S. -vacuoliser/a0a+() -vacuome/S. -vacuum -vade-mecum -vadrouille/S. -vadrouiller/a0() -vadrouilleuse/F.() -va-et-vient -vagabondage/S. -vagabonde/F.() -vagabonder/a0() -vagin/S. -vaginale/W.() -vaginisme/S. -vaginite/S. -vagir/f0() -vagissante/F.() -vagissement/S. -vagolytique/S. -vagotonie/S. -vagotonique/S. -vague/S. -vaguelette/S. -vaguement -vaguemestre/S. -vaguer/a0a+() -vahiné/S. -vaigrage/S. -vaigre/S. -vaillamment -vaillance/S. -vaillante/F.() -vaillantie/S. -vaincre/wP() -vaincue/F.() -vaine/F.() -vainement -vainqueur/S. -vair/S. -vairée/F.() -vairon/S. -vaironner/a0() -vais/aB() -vaisseau/X. -vaisselier/S. -vaisselle/S. -val/S. -valable/S. -valablement -valaque/S. -valdinguer/a0() -valence/S. -valences-grammes -valencienne/F.() -valentine/F.() -valentinite/S. -valériane/S. -valérianelle/S. -valérianique/S. -valet/S. -valetaille/S. -valeter/d0() -valétudinaire/S. -valeur/S. -valeureuse/W.() -valeureusement -valgus -validation/S. -validatrice/F.() -valide/S. -validée/F.() -validement -valider/a0a+() -validité/S. -valine/S. -valise/S. -valiser/a0a+() -valkyrie/S. -vallée/S. -valleuse/S. -vallisnérie/S. -vallon/S. -vallonnée/F.() -vallonnement/S. -vallonner/a0a+() -valoche/S. -valoir/pM() -valorem -valorisable/S. -valorisante/F.() -valorisation/S. -valoriser/a0a+() -valouser/a0a+() -valse/S. -valse-hésitation -valser/a0a+() -valses-hésitations -valseuse/F.() -valuation/S. -valvaire/S. -valve/S. -valvée/F.() -valvulaire/S. -valvule/S. -vamp/S. -vamper/a0a+() -vampire/S. -vampirique/S. -vampirisée/F.() -vampiriser/a0a+() -vampirisme/S. -van/S. -vanadate/S. -vanadinite/S. -vanadique/S. -vanadium/S. -vanda/S. -vandale/S. -vandalisée/F.() -vandaliser/a0a+() -vandalisme/S. -vandoise/S. -vanesse/S. -vanille/S. -vanillée/F.() -vanillier/S. -vanilline/S. -vanillisme/S. -vanillon/S. -vanité/S. -vaniteuse/W.() -vaniteusement -vannage/S. -vanne/S. -vanneau/X. -vannée/F.() -vannelle/S. -vanner/a0a+() -vannerie/S. -vanneuse/F.() -vannière/F.() -vannure/S. -vantail/X. -vantarde/F.() -vantardise/S. -vanter/a0a+() -vanterie/S. -va-nu-pieds -vape/S. -vapeur/S. -vaporeuse/W.() -vaporeusement -vaporisage/S. -vaporisateur/S. -vaporisation/S. -vaporisée/F.() -vaporiser/a0a+() -vaquer/a0() -var/S. -var/U.||-- -varaigne/S. -varan/S. -varangue/S. -varappe/S. -varapper/a0() -varappeuse/F.() -varech/S. -vareuse/S. -varheure/S. -varia -variabilité/S. -variable/S. -variablement -variance/S. -variante/F.() -variante/S. -variateur/S. -variation/S. -variationnelle/F.() -varice/S. -varicelle/S. -varicocèle/S. -variée/F.() -varier/a0a+() -variétale/W.() -variété/S. -variole/S. -variolée/F.() -varioleuse/W.() -variolique/S. -variolisation/S. -variorum -variqueuse/W.() -varistance/S. -varlet/S. -varlope/S. -varloper/a0a+() -varron/S. -varus -varve/S. -vasarde/F.() -vasculaire/S. -vascularisation/S. -vascularisée/F.() -vascularite/S. -vase/S. -vasectomie/S. -vaseline/S. -vaseliner/a0a+() -vaser/a9() -vaseuse/W.() -vasière/S. -vasistas -vasoconstriction/S. -vasoconstrictrice/F.() -vasodilatation/S. -vasodilatatrice/F.() -vasomotrice/F.() -vasouillarde/F.() -vasouiller/a0() -vasque/S. -vassale/W.() -vassalisation/S. -vassaliser/a0a+() -vassalité/S. -vassiveau/X. -vaste/S. -vastement -vastité/S. -vastitude/S. -va-t-en-guerre -vaticane/S. -vaticanesque/S. -vaticination/S. -vaticinatrice/F.() -vaticiner/a0() -va-tout -vau/X. -vauchérie/S. -vauclusienne/F.() -vaudeville/S. -vaudevillesque/S. -vaudevilliste/S. -vaudoise/F.() -vaudou -vau-l'eau -vaurienne/F.() -vautour/S. -vautrée/F.() -vautrer/a0a+() -vauvert -vavasseur/S. -va-vite -veau/X. -vécés -vectorielle/F.() -vectorisation/S. -vectrice/F.() -vécu/S. -vécue/F.() -vedettariat/S. -vedette/S. -vedika/S. -védique/S. -védisme/S. -végétal/X. -végétale/W.() -végétalienne/F.() -végétalisation/S. -végétalisée/F.() -végétaliser/a0a+() -végétalisme/S. -végétaliste/S. -végétarienne/F.() -végétarisme/S. -végétation/S. -végétative/F.() -végétativement -végéter/c0() -véhémence/S. -véhémente/F.() -véhémentement -véhiculaire/S. -véhicule/S. -véhiculée/F.() -véhiculer/a0a+() -veille/S. -veillée/S. -veiller/a0a+() -veilleuse/F.() -veinarde/F.() -veine/S. -veinée/F.() -veiner/a0a+() -veinette/S. -veineuse/W.() -veinotonique/S. -veinule/S. -veinure/S. -vêlage/S. -vélaire/S. -vélar/S. -vélariser/a0a+() -vélarium/S. -velche/S. -velcro/S. -veld/S. -vêlement/S. -vêler/a0a+() -vélie/S. -vélin/S. -véliplanchiste/S. -vélique/S. -vélite/S. -vélivole/S. -velléitaire/S. -velléité/S. -vélo/S. -véloce/S. -vélocement -vélocimètre/S. -vélocimétrie/S. -vélocimétrique/S. -vélocipède/S. -vélocipédique/S. -vélociraptor/S. -vélocité/S. -vélodrome/S. -vélomoteur/S. -vélo-pousse -véloski/S. -vélos-taxis -velot/S. -vélo-taxi -velours -velouté/S. -veloutée/F.() -veloutement/S. -velouter/a0a+() -velouteuse/W.() -veloutier/S. -veloutine/S. -velte/S. -velue/F.() -vélum/S. -velux -venaison/S. -vénale/W.() -vénalement -vénalité/S. -venante/F.() -vendable/S. -vendange/S. -vendangeoir/S. -vendanger/a0a+() -vendangerot/S. -vendangette/S. -vendangeuse/F.() -vendéenne/F.() -vendémiaire/S. -vendetta/S. -vendeuse/F.() -vendre/tA() -vendredi/S. -vendue/F.() -venelle/S. -vénéneuse/W.() -vénérable/S. -vénérablement -vénération/S. -vénérée/F.() -vénéréologie/S. -vénérer/c0a+() -vénéricarde/S. -vénerie/S. -vénérienne/F.() -vénérologue/S. -venet/S. -venette/S. -veneur/S. -vénézuelienne/F.() -vénézuélienne/F.() -vengeance/S. -vengée/F.() -venger/a0a+() -vengeresse/F.() -vénielle/F.() -véniellement -venimeuse/W.() -venimosité/S. -venin/S. -venir/i0i+() -vénitienne/F.() -vent/S. -ventage/S. -ventail/X. -vente/S. -ventée/F.() -venter/a9() -venteuse/W.() -ventilateur/S. -ventilation/S. -ventilatoire/S. -ventilée/F.() -ventiler/a0a+() -ventileuse/S. -ventis -ventôse/S. -ventouse/S. -ventouser/a0a+() -ventrale/W.() -ventralement -ventre/S. -ventrebleu -ventrèche/S. -ventrée/S. -ventriculaire/S. -ventricule/S. -ventrière/S. -ventriloque/S. -ventriloquie/S. -ventripotente/F.() -ventrue/F.() -venturi/S. -venue/F.() -venue/S. -vénus -vénusienne/F.() -vénusté/S. -vêpres -ver/S. -véracité/S. -véraison/S. -véranda/S. -vératre/S. -vératrine/S. -verbale/W.() -verbalement -verbalisation/S. -verbalisée/F.() -verbaliser/a0a+() -verbalisme/S. -verbatim/S. -verbe/S. -verbénacée/S. -verbeuse/W.() -verbeusement -verbiage/S. -verbiager/a0() -verbigération/S. -verbomanie/S. -verboquet/S. -verbosité/S. -verdage/S. -verdâtre/S. -verdelette/F.() -verdet/S. -verdeur/S. -verdict/S. -verdier/S. -verdir/f0f+() -verdissage/S. -verdissement/S. -verdoiement/S. -verdoyante/F.() -verdoyer/a0() -verdunisation/S. -verduniser/a0a+() -verdure/S. -vérétille/S. -véreuse/W.() -verge/S. -vergée/F.() -vergence/S. -vergeoise/S. -verger/S. -verger/a0() -vergerette/S. -vergetée/F.() -vergette/S. -vergeture/S. -vergeure/S. -verglaçante/F.() -verglacée/F.() -verglacer/a9() -verglas -vergne/S. -vergobret/S. -vergogne/S. -vergue/S. -véridicité/S. -véridique/S. -véridiquement -vérifiabilité -vérifiable/S. -vérification/S. -vérificative/F.() -vérificatrice/F.() -vérifiée/F.() -vérifier/a0a+() -vérifieuse/F.() -vérin/S. -vérine/S. -vérisme/S. -vériste/S. -véritable/S. -véritablement -vérité/S. -verjus -verjutée/F.() -verjuter/a0a+() -verlan/S. -vermée/S. -vermeille/F.() -vermet/S. -vermicelle/S. -vermicide/S. -vermiculaire/S. -vermicule/S. -vermiculée/F.() -vermiculer/a0() -vermiculure/S. -vermiforme/S. -vermifuge/S. -vermiller/a0() -vermillonne/F.() -vermillonnée/F.() -vermillonner/a0a+() -vermine/S. -vermineuse/W.() -vermis -vermisseau/X. -vermouler/a0a+() -vermoulue/F.() -vermoulure/S. -vermouth/S. -vernaculaire/S. -vernale/W.() -vernalisation/S. -vernation/S. -vernie/F.() -vernier/S. -vernir/f0f+() -vernis -vernissage/S. -vernissée/F.() -vernisser/a0a+() -vernisseuse/F.() -vérole/S. -vérolée/F.() -véronal/S. -véronique/S. -verranne/S. -verrat/S. -verre/S. -verrée/F.() -verrerie/S. -verrière/F.() -verrine/S. -verroterie/S. -verrou/S. -verrouillable/S. -verrouillage/S. -verrouillée/F.() -verrouiller/a0a+() -verrucosité/S. -verrue/S. -verruqueuse/W.() -vers -vers -versaillaise/F.() -versant/S. -versante/F.() -versatile/S. -versatilité/S. -verse/S. -verseau/X. -versée/F.() -versement/S. -verser/a0a+() -verset/S. -verseuse/F.() -versicolore/S. -versicule/S. -versification/S. -versificatrice/F.() -versifier/a0a+() -version/S. -vers-librisme/S. -vers-libriste/S. -verso/S. -versoir/S. -verste/S. -versus -vert-de-gris -vert-de-grisée/F.() -verte/F.() -vertébrale/W.() -vertèbre/S. -vertébrée/F.() -vertement -vertex -verticale/W.() -verticalement -verticalité/S. -verticille/S. -verticillée/F.() -vertige/S. -vertigineuse/W.() -vertigineusement -vertigo/S. -vertisol/S. -vertu/S. -vertubleu -vertuchou -vertueuse/W.() -vertueusement -vertugadin/S. -verve/S. -verveine/S. -vervelle/S. -verveuse/W.() -vésanie/S. -vesce/S. -vésicale/W.() -vésicante/F.() -vésication/S. -vésicatoire/S. -vésiculaire/S. -vésicule/S. -vésiculeuse/W.() -vespa/S. -vespasienne/S. -vespérale/W.() -vespertilion/S. -vespiste/S. -vesse/S. -vesse-de-loup -vesser/a0() -vesses-de-loup -vessie/S. -vessigon/S. -vestale/S. -veste/S. -vestiaire/S. -vestibulaire/S. -vestibule/S. -vestige/S. -vestigiale/W.() -vestimentaire/S. -vestimentairement -veston/S. -vêtage/S. -vêtement/S. -vétéran/S. -vétérance/S. -vétérinaire/S. -vétérotestamentaire/S. -vétillarde/F.() -vétille/S. -vétiller/a0() -vétilleuse/W.() -vêtir/iG() -vétiver/S. -veto -vêtue/F.() -vêture/S. -vétuste/S. -vétusté/S. -veuglaire/S. -veule/S. -veulerie/S. -veuvage/S. -veuve/F.() -vévé/S. -veveysanne/F.() -vexante/F.() -vexation/S. -vexatoire/S. -vexatrice/F.() -vexée/F.() -vexer/a0a+() -vexillaire/S. -vexille/S. -vexillologie/S. -vexillologue/S. -vg/||-- -via -viabilisation/S. -viabilisée/F.() -viabiliser/a0a+() -viabilité/S. -viable/S. -viaduc/S. -viagère/F.() -viande/S. -viander/a0a+() -viatique/S. -vibord/S. -vibrage/S. -vibrance/S. -vibrante/F.() -vibraphone/S. -vibraphoniste/S. -vibrateur/S. -vibratile/S. -vibration/S. -vibrationnelle/F.() -vibrato/S. -vibratoire/S. -vibrer/a0a+() -vibreur/S. -vibrion/S. -vibrionner/a0() -vibrisse/S. -vibromasseur/S. -vicaire/S. -vicariale/W.() -vicariante/F.() -vicariat/S. -vice/S. -vice-amiral/X. -vice-chancelier/S. -vice-consul/S. -vice-consulat/S. -vicelarde/F.() -vice-légat/S. -vice-légation/S. -vicennale/W.() -vice-première/F.() -vice-présidence/S. -vice-présidente/F.() -vice-recteur/S. -vice-reine/S. -vice-roi/S. -vice-royauté/S. -vicésimale/W.() -vice-versa -vichy/S. -vichyssoise/F.() -vichyste/S. -viciable/S. -viciation/S. -viciatrice/F.() -viciée/F.() -vicier/a0a+() -vicieuse/W.() -vicieusement -vicinale/W.() -vicinalité/S. -vicissitude/S. -vicomtale/W.() -vicomté/S. -vicomtesse/F.() -victimaire/S. -victime/S. -victimisation/S. -victimiser/a0a+() -victimologie/S. -victimologue/S. -victoire/S. -victoria/S. -victorienne/F.() -victorieuse/W.() -victorieusement -victuailles -vidage/S. -vidame/S. -vidamie/S. -vidange/S. -vidangée/F.() -vidanger/a0a+() -vidangeur/S. -vide/S. -vidéaste/S. -vide-bouteille/S. -vide-cave/S. -vidée/F.() -videlle/S. -vidéo/S. -vidéocassette/S. -vidéoclip/S. -vidéoconférence/S. -vidéodisque/S. -vidéofréquence/S. -vidéophonie/S. -vidéoprojecteur/S. -vidéoprojection/S. -vide-ordures -vidéosphère/S. -vidéotex -vidéothécaire/S. -vidéothèque/S. -vide-poche/S. -vide-pomme/S. -vider/a0a+() -vide-tourie/S. -videuse/F.() -vide-vite -vidimer/a0a+() -vidimus -vidoir/S. -viduité/S. -vidure/S. -vie/S. -vieil -vieillarde/F.() -vieille/S. -vieillerie/S. -vieillesse/S. -vieillie/F.() -vieillir/f0f+() -vieillissante/F.() -vieillissement/S. -vieillotte/F.() -vielle/S. -vieller/a0() -vielleuse/F.() -vielleuse/W.() -vielliste/S. -viennoise/F.() -viennoiserie/S. -vierge/S. -vietnamienne/F.() -vieux -vif-argent -vigie/S. -vigilamment -vigilance/S. -vigilante/F.() -vigile/S. -vigiler/a0a+() -vigne/S. -vigneau/X. -vigneronne/F.() -vignetage/S. -vignettage/S. -vignette/S. -vignettiste/S. -vigneture/S. -vignoble/S. -vignot/S. -vigogne/S. -vigoureuse/W.() -vigoureusement -viguerie/S. -vigueur/S. -viguier/S. -viking/S. -vilaine/F.() -vilainement -vilayet/S. -vile/F.() -vilebrequin/S. -vilement -vilené/S. -vilenie/S. -vilipendée/F.() -vilipender/a0a+() -villa/S. -village/S. -villageoise/F.() -villanelle/S. -ville/S. -ville-champignon -ville-dortoir -villégiateur/S. -villégiature/S. -villégiaturer/a0() -villes-champignons -villes-dortoirs -villosité/S. -vin/S. -vinage/S. -vinaigre/S. -vinaigrée/F.() -vinaigrer/a0a+() -vinaigrerie/S. -vinaigrette/S. -vinaigrier/S. -vinaire/S. -vinasse/S. -vindicative/F.() -vindicativement -vindicte/S. -viner/a0a+() -vinette/S. -vineuse/W.() -vingt/S. -vingtaine/S. -vingt-cinq -vingt-deux -vingt-et-un -vingt-huit -vingtième/S. -vingtièmement -vingt-neuf -vingt-quatre -vingt-sept -vingt-six -vingt-trois -vinicole/S. -viniculture/S. -vinifère/S. -vinification/S. -vinifier/a0a+() -vinique/S. -vinosité/S. -vintage -vintage/S. -vinyle/S. -vinylique/S. -vinylite/S. -vioc/S. -viol/S. -violacée/F.() -violacer/a0a+() -violat/S. -violation/S. -violâtre/S. -violatrice/F.() -viole/S. -violée/F.() -violemment -violence/S. -violente/F.() -violentée/F.() -violenter/a0a+() -violer/a0a+() -violette/F.() -violette/S. -violeuse/F.() -violier/S. -violine/S. -violiste/S. -violon/S. -violoncelle/S. -violoncelliste/S. -violonée/F.() -violoner/a0a+() -violoneuse/W.() -violoniste/S. -vioque/S. -vioquir/f0() -viorne/S. -vipère/S. -vipéreau/X. -vipérine/F.() -virage/S. -virago/S. -virale/W.() -virée/F.() -virée/S. -virelai/S. -virement/S. -virer/a0a+() -virescence/S. -vireton/S. -vireuse/F.() -vireuse/W.() -virevoltante/F.() -virevolter/a0() -virginale/W.() -virginie/S. -virginité/S. -virgule/S. -virguler/a0a+() -virile/F.() -virilement -virilisation/S. -viriliser/a0a+() -virilisme/S. -virilité/S. -virilocale/W.() -virion/S. -virolage/S. -virole/S. -virolée/F.() -viroler/a0a+() -virolier/S. -virologie/S. -virologiste/S. -virologue/S. -virophage/S. -virose/S. -virostatique/S. -virtualisation/S. -virtualiser/a0a+() -virtualité/S. -virtuelle/F.() -virtuellement -virtuose/S. -virtuosité/S. -virulence/S. -virulente/F.() -virure/S. -virus -visa/S. -visage/S. -visagiste/S. -vis-à-vis -viscache/S. -viscérale/W.() -viscéralement -viscère/S. -viscose/S. -viscosimètre/S. -viscosité/S. -visée/F.() -viser/a0a+() -viseur/S. -viseuse/W.() -visibilité/S. -visible/S. -visiblement -visière/S. -visioconférence/S. -vision/S. -visionique/S. -visionnage/S. -visionnaire/S. -visionnée/F.() -visionnement/S. -visionner/a0a+() -visionneuse/F.() -visiophone/S. -visiophonie/S. -visiophonique/S. -visitandine/S. -visitation/S. -visite/S. -visitée/F.() -visiter/a0a+() -visiteuse/F.() -visnage/S. -vison/S. -visonnière/S. -visqueuse/W.() -vissage/S. -vissée/F.() -visser/a0a+() -visserie/S. -visseuse/S. -visualisation/S. -visualisée/F.() -visualiser/a0a+() -visualiseur/S. -visuelle/F.() -visuellement -vitae -vitæ -vitale/W.() -vitalisation/S. -vitalisme/S. -vitaliste/S. -vitalité/S. -vitamine/S. -vitaminée/F.() -vitaminique/S. -vite -vite/S. -vitelline/F.() -vitellus -vitelotte/S. -vitement -vitesse/S. -viticole/S. -viticultrice/F.() -viticulture/S. -vitiligo/S. -vitrage/S. -vitrail/X. -vitre/S. -vitrée/F.() -vitrer/a0a+() -vitrerie/S. -vitreuse/W.() -vitrière/F.() -vitrifiabilité/S. -vitrifiable/S. -vitrification/S. -vitrificative/F.() -vitrificatrice/F.() -vitrifiée/F.() -vitrifier/a0a+() -vitrine/S. -vitriol/S. -vitriolage/S. -vitriolée/F.() -vitrioler/a0a+() -vitrioleuse/F.() -vitro -vitrocéramique/S. -vitulaire/S. -vitupération/S. -vitupératrice/F.() -vitupérer/c0a+() -vivable/S. -vivace/S. -vivacité/S. -vivandière/F.() -vivante/F.() -vivarium/S. -vivat/S. -vive/F.() -vivement -vivendi -viveuse/F.() -vivier/S. -vivifiante/F.() -vivification/S. -vivificatrice/F.() -vivifiée/F.() -vivifier/a0a+() -vivipare/S. -viviparité/S. -vivisection/S. -vivoter/a0() -vivre/xSxT() -vivrée/F.() -vivres -vivrière/F.() -vizir/S. -vizirat/S. -vlan -vocable/S. -vocabulaire/S. -vocale/W.() -vocalement -vocalique/S. -vocalisation/S. -vocalisatrice/F.() -vocaliser/a0a+() -vocalisme/S. -vocaliste/S. -vocatif/S. -vocation/S. -voceratrice/S. -vocero/S. -vociférante/F.() -vocifération/S. -vocifératrice/F.() -vociférée/F.() -vociférer/c0a+() -vodka/S. -vœu/X. -vogoule/F.() -vogoule/S. -vogue/S. -voguer/a0() -voici -voïévodie/S. -voilà -voilage/S. -voile/S. -voilée/F.() -voilement/S. -voiler/a0a+() -voilerie/S. -voilette/S. -voilier/S. -voilure/S. -voir/pFpG() -voire -voirie/S. -voisée/F.() -voisement/S. -voisinage/S. -voisine/F.() -voisiner/a0() -voiturage/S. -voiture/S. -voiturer/a0a+() -voiture-restaurant -voitures-restaurants -voiturette/S. -voiturier/S. -voiturin/S. -voïvodat/S. -voïvode/S. -voïvodie/S. -voix -vol/S. -volable/S. -volage/S. -volaille/S. -volailler/S. -volailleuse/F.() -volante/F.() -volapük/S. -volatile/F.() -volatile/S. -volatilisable/S. -volatilisation/S. -volatilisée/F.() -volatiliser/a0a+() -volatilité/S. -vol-au-vent -volcan/S. -volcanique/S. -volcaniser/a0a+() -volcanisme/S. -volcanologie/S. -volcanologique/S. -volcanologue/S. -volée/F.() -volée/S. -voler/a0a+() -volerie/S. -volet/S. -voleter/d0() -volettement/S. -voleuse/F.() -volière/S. -voligeage/S. -voliger/a0a+() -volis -volition/S. -volitionnelle/F.() -volitive/F.() -volley/S. -volley-ball/S. -volleyer/a0() -volleyeuse/F.() -volontaire/S. -volontairement -volontariat/S. -volontarisme/S. -volontariste/S. -volonté/S. -volontiers -volt/Um() -voltage/S. -voltaïque/S. -voltaire/S. -voltairianisme/S. -voltairienne/F.() -voltaïsation/S. -voltamètre/S. -voltampère/Um() -volte-face -volter/a0() -voltige/S. -voltigement/S. -voltiger/a0() -voltigeuse/F.() -voltmètre/S. -volubile/S. -volubilement -volubilis -volubilité/S. -volucelle/S. -volucompteur/S. -volume/S. -volumétrie/S. -volumétrique/S. -volumineuse/W.() -volumique/S. -volupté/S. -voluptuaire/S. -voluptueuse/W.() -voluptueusement -volute/S. -volvaire/S. -volve/S. -volvox -volvulus -vomer/S. -vomérienne/F.() -vomie/F.() -vomique/S. -vomiquier/S. -vomir/f0f+() -vomissement/S. -vomissure/S. -vomitive/F.() -vomito/S. -vomitoire/S. -vomito-negro -vorace/S. -voracement -voracité/S. -vortex -vorticelle/S. -vos -vosgienne/F.() -votante/F.() -votation/S. -vote/S. -voter/a0a+() -votive/F.() -votre -vôtre/S. -vouée/F.() -vouer/a0a+() -vouge/S. -vouivre/S. -vouloir/pB() -voulue/F.() -vous -vous-même/S. -vousseau/X. -voussoiement/S. -voussoir/S. -voussoyer/a0a+() -voussure/S. -voûtain/S. -voûte/S. -voûtée/F.() -voûter/a0a+() -vouvoiement/S. -vouvoyer/a0a+() -voyage/S. -voyager/a0() -voyageuse/F.() -voyagiste/S. -voyance/S. -voyante/F.() -voyelle/S. -voyer/S. -voyeurisme/S. -voyeuse/F.() -voyou/S. -voyoucratie/S. -vrac -vraie/F.() -vraiment -vraisemblable/S. -vraisemblablement -vraisemblance/S. -vraquier/S. -vreneli/S. -vrillage/S. -vrille/S. -vrillée/F.() -vrillement/S. -vriller/a0a+() -vrillette/S. -vrombir/f0() -vrombissante/F.() -vrombissement/S. -vs -vu -vue/F.() -vulcain/S. -vulcanales -vulcanienne/F.() -vulcanisable/S. -vulcanisation/S. -vulcaniser/a0a+() -vulcanologie/S. -vulcanologue/S. -vulgaire/S. -vulgairement -vulganiser/a0a+() -vulgarisation/S. -vulgarisatrice/F.() -vulgarisée/F.() -vulgariser/a0a+() -vulgarisme/S. -vulgarité/S. -vulgate/S. -vulgo -vulnérabilité/S. -vulnérable/S. -vulnéraire/S. -vulnérante/F.() -vulpin/S. -vulvaire/S. -vulve/S. -w -wading/S. -wagage/S. -wagnérienne/F.() -wagon/S. -wagon-bar -wagon-citerne -wagon-foudre -wagon-lit -wagonnée/S. -wagonnet/S. -wagonnette/S. -wagonnier/S. -wagon-poste -wagon-réservoir -wagon-restaurant -wagon-salon -wagons-bars -wagons-citernes -wagons-foudres -wagons-lits -wagons-poste -wagons-réservoirs -wagons-restaurants -wagons-salons -wagons-tombereaux -wagons-trémies -wagons-vannes -wagon-tombereau -wagon-trémie -wagon-vanne -wahhabisme/S. -wahhabiste/S. -wakizashi/S. -walkies-talkies -walkie-talkie -walkman/S. -walk-over -walkyrie/S. -wallaby/S. -wallingante/F.() -wallonisme/S. -wallonne/F.() -wapiti/S. -wargame/S. -warning/S. -warrant/S. -warrantage/S. -warranter/a0a+() -washingtonia/S. -wassingue/S. -water-ballast/S. -water-closet/S. -watergang/S. -wateringue/S. -water-polo/S. -waterproof/S. -waters -watt/Um() -wattheure/Um() -wattman/S. -wattmètre/S. -web -webcam/S. -webcaméra/S. -weber/Um() -weblog/S. -webmestre/S. -webmestrie/S. -webradio/S. -webtélé/S. -week-end/S. -week-ender/a0() -welche/S. -wellingtonia/S. -weltanschauung/S. -welter/S. -wergeld/S. -western/S. -westphalienne/F.() -wharf/S. -whig/S. -whipcord/S. -whisky/S. -whist/S. -white-spirit/S. -widget/S. -wi-fi -wigwam/S. -wiki/S. -wilaya/S. -williamine/S. -winch/S. -winchester/S. -windsurf/S. -wintergreen/S. -wishbone/S. -wisigothe/F.() -wisigothique/S. -witloof/S. -wok/S. -wolfram/S. -wolophiser/a0a+() -wombat/S. -won/S. -woofer/S. -wormien/S. -würmienne/F.() -wyandotte/S. -x -xanthate/S. -xanthélasma/S. -xanthie/S. -xanthine/S. -xanthique/S. -xanthoderme/S. -xanthogénate/S. -xanthogénique/S. -xanthome/S. -xanthophycée/S. -xanthophylle/S. -xanthopsie/S. -xénarthre/S. -xénélasie/S. -xénocristal/X. -xénogreffe/S. -xénolite/S. -xénolithe/S. -xénon/S. -xénophile/S. -xénophilie/S. -xénophobe/S. -xénophobie/S. -xéranthème/S. -xérès -xérodermie/S. -xérographie/S. -xérophile/S. -xérophtalmie/S. -xérus -xi -ximénie/S. -xiphias -xipho/S. -xiphoïde/S. -xiphoïdienne/F.() -xiphophore/S. -xylème/S. -xylène/S. -xylidine/S. -xylocope/S. -xylographe/S. -xylographie/S. -xylographique/S. -xylophage/S. -xylophone/S. -xyste/S. -y/Q'n'd'j'l'm't's' -yacht/S. -yacht-club/S. -yachting/S. -yachtman/S. -yachtwoman/S. -yailler/a2a+() -yak/S. -yang -yankee/S. -yaourt/S. -yaourtière/S. -yard/S. -yatagan/S. -yawl/S. -yd/||-- -yearling/S. -yèble/S. -yéménite/S. -yen/S. -yeoman/S. -yeomanry/S. -yéti/S. -yeuse/S*() -yeux/D' -yé-yé -yiddish -yin -ylangs-ylangs/D'Q' -ylang-ylang/L'D'Q' -yobibit/S. -yobioctet/S. -yod/S. -yodiser/a2a+() -yoga/S. -yogi/S. -yogourt/S. -yohimbehe/S. -yohimbine/S. -yole/S. -yoper/a2a+() -yottabit/S. -yottaoctet/S. -yougoslave/S. -youpi -youpie -youpine/F.() -yourte/S. -youyou/S. -yo-yo -yoyottante/F.() -yoyotter/a1() -ypérite/S*() -ypréau/X*() -ytterbine/S*() -ytterbium/S*() -yttria/S*() -yttrialite/S*() -yttrifère/S*() -yttrique/S*() -yttrium/S*() -yuan/S. -yucca/S. -z -zabre/S. -zaibatsu/S. -zain/S. -zaïroise/F.() -zakouski -zamak/S. -zambienne/F.() -zancle/S. -zani/S. -zanzi/S. -zanzibar/S. -zaouïa/S. -zapateado/S. -zapatiste/S. -zapper/a0a+() -zappeuse/F.() -zapping/S. -zarabe/S. -zarzuela/S. -zaydite/S. -zazoue/F.() -zébibit/S. -zébioctet/S. -zèbre/S. -zébrée/F.() -zébrer/c0a+() -zébrure/S. -zébu/S. -zée/S. -zélandaise/F.() -zélatrice/F.() -zèle/S. -zélée/F.() -zellige/S. -zélote/S. -zemstvo/S. -zen -zenana/S. -zende/F.() -zénith/S. -zénithale/W.() -zénitude/S. -zéolite/S. -zéolithe/S. -zéphyr/S. -zéphyrienne/F.() -zéphyrine/S. -zeppelin/S. -zéro/S. -zérotage/S. -zérumbet/S. -zerver/a0a+() -zeste/S. -zester/a0a+() -zêta -zétète/S. -zététicienne/F.() -zététique/S. -zettabit/S. -zettaoctet/S. -zeugma/S. -zeugme/S. -zeuzère/S. -zézaiement/S. -zézayer/a0() -zibeline/S. -ziber/a0a+() -zidovudine/S. -zieuter/a0a+() -zig/S. -ziggourat/S. -zigoteau/X. -zigoto/S. -zigouillage/S. -zigouillée/F.() -zigouiller/a0a+() -zigounette/S. -zigue/S. -ziguer/a0a+() -zigzag/S. -zigzagante/F.() -zigzaguer/a0() -zimbabwéenne/F.() -zinc/S. -zincage/S. -zincate/S. -zincifère/S. -zincographie/S. -zincogravure/S. -zingage/S. -zingara -zingaro/S. -zingue/S. -zinguer/a0a+() -zinguerie/S. -zingueuse/F.() -zinjanthrope/S. -zinnia/S. -zinzin/S. -zinzinuler/a0() -zinzoline/F.() -zip/S. -zippée/F.() -zipper/a0a+() -zircon/S. -zircone/S. -zirconite/S. -zirconium/S. -zizanie/S. -zizi/S. -zloty/S. -zoanthaire/S. -zoanthropie/S. -zodiac/S. -zodiacale/W.() -zodiaque/S. -zoé/S. -zoïle/S. -zombi/S. -zombie/S. -zona/S. -zonage/S. -zonale/W.() -zonalité/S. -zonarde/F.() -zonation/S. -zone/S. -zonée/F.() -zoner/a0a+() -zonier/S. -zoning/S. -zonure/S. -zonzonner/a0() -zoo/S. -zoogamète/S. -zoogéographie/S. -zooglée/S. -zooïde/S. -zoolâtre/S. -zoolâtrie/S. -zoolâtrique/S. -zoolite/S. -zoolithe/S. -zoologie/S. -zoologique/S. -zoologiquement -zoologiste/S. -zoologue/S. -zoom/S. -zoomer/a0a+() -zoomorphe/S. -zoomorphisme/S. -zoonose/S. -zoopathie/S. -zoophile/S. -zoophilie/S. -zoophobie/S. -zoophore/S. -zoophyte/S. -zooplancton/S. -zoopsie/S. -zoosémiotique/S. -zoosporange/S. -zoospore/S. -zootaxie/S. -zootechnicienne/F.() -zootechnie/S. -zootechnique/S. -zoothérapeute/S. -zoothérapeutique/S. -zoothérapie/S. -zorille/S. -zoroastrienne/F.() -zoroastrisme/S. -zostère/S. -zostérienne/F.() -zou -zouave/S. -zouaver/a0a+() -zouk/S. -zouker/a0() -zouloue/F.() -zozo/S. -zozotement/S. -zozoter/a0() -zucchette/S. -zuchette/S. -zûner/a0() -zurichoise/F.() -zut -zutique/S. -zutiste/S. -zwanze/S. -zwanzer/a0() -zwinglianisme/S. -zyeuter/a0a+() -zygène/S. -zygoma/S. -zygomatique/S. -zygomorphe/S. -zygomycète/S. -zygopétale/S. -zygote/S. -zygotique/S. -zyklon/S. -zymase/S. -zymotechnie/S. -zymotique/S. -zython/S. -zythum/S. -µR/||-- -µas/||-- -α -β -γ -δ -ε -ζ -η -θ -ι -κ -λ -μ -ν -ξ -ο -π -ρ -σ -τ -υ -φ -χ -ψ -ω -Ω/U.||-- diff --git a/tests/dictionaries/la/README_la.txt b/tests/dictionaries/la/README_la.txt deleted file mode 100755 index 1e79461..0000000 --- a/tests/dictionaries/la/README_la.txt +++ /dev/null @@ -1,380 +0,0 @@ -20020503 -1. Version -2. Copyright - -This dictionary is based on the iroma Ispell dictionary from -http://j3e.de/ispell/iroma/. - -The dcitionary and all contained wordlists are licensed under the -GNU General Public License (version 2) - -Author: Bjoern Jacke , - Jean-Pierre Sutto - - -3. Install - -As OpenOffice 1.0 does not have Latin as supported languages, you'll have to -add the "la" dictionary for a different language, for example Italian and set -this language for your Latin documents. - -For example, to add to your Italian as Latin substitution just add to dictionary.lst: - -DICT it IT it_IT -DICT it IT la - -This will allow both to be considered Italian. Could be set to English or whatever. -[RH]] - -Forthcoming OpenOffice versions might also support Latin as language. - -Further generic dictionary install instrucions: -http://lang.openoffice.org/de/about-spellcheck.html - -Support: -http://lang.openoffice.org/de/contact-forums.html - - -4. Copying - - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19yy name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. - diff --git a/tests/dictionaries/la/la.aff b/tests/dictionaries/la/la.aff deleted file mode 100755 index 2af893f..0000000 --- a/tests/dictionaries/la/la.aff +++ /dev/null @@ -1,4824 +0,0 @@ -SET ISO8859-1 -TRY esianrtolcdugmphbyfvkw -SFX a Y 124 -SFX a a a a -SFX a a ae a -SFX a a am a -SFX a a as a -SFX a a arum a -SFX a a is a -SFX a 0 que a -SFX a 0 ne a -SFX a 0 ve a -SFX a a aeque a -SFX a a aene a -SFX a a aeve a -SFX a a amque a -SFX a a amne a -SFX a a amve a -SFX a a asque a -SFX a a asne a -SFX a a asve a -SFX a a arumque a -SFX a a arumne a -SFX a a arumve a -SFX a a isque a -SFX a a isne a -SFX a a isve a -SFX a ae ae ae -SFX a ae am ae -SFX a ae as ae -SFX a ae arum ae -SFX a ae is ae -SFX a ae aeque ae -SFX a ae aene ae -SFX a ae aeve ae -SFX a ae amque ae -SFX a ae amne ae -SFX a ae amve ae -SFX a ae asque ae -SFX a ae asne ae -SFX a ae asve ae -SFX a ae arumque ae -SFX a ae arumne ae -SFX a ae arumve ae -SFX a ae isque ae -SFX a ae isne ae -SFX a ae isve ae -SFX a i i i -SFX a i a i -SFX a i am i -SFX a i ae i -SFX a i as i -SFX a i arum i -SFX a 0 que i -SFX a 0 ne i -SFX a 0 ve i -SFX a i aque i -SFX a i ane i -SFX a i ave i -SFX a i amque i -SFX a i amne i -SFX a i amve i -SFX a i aeque i -SFX a i aene i -SFX a i aeve i -SFX a i asque i -SFX a i asne i -SFX a i asve i -SFX a i arumque i -SFX a i arumne i -SFX a i arumve i -SFX a us us us -SFX a us a us -SFX a us am us -SFX a us ae us -SFX a us as us -SFX a us arum us -SFX a us is us -SFX a 0 que us -SFX a 0 ne us -SFX a 0 ve us -SFX a us aque us -SFX a us ane us -SFX a us ave us -SFX a us amque us -SFX a us amne us -SFX a us amve us -SFX a us aeque us -SFX a us aene us -SFX a us aeve us -SFX a us asque us -SFX a us asne us -SFX a us asve us -SFX a us arumque us -SFX a us arumne us -SFX a us arumve us -SFX a us isque us -SFX a us isne us -SFX a us isve us -SFX a r r r -SFX a 0 a r -SFX a 0 am r -SFX a 0 ae r -SFX a 0 as r -SFX a 0 arum r -SFX a 0 is r -SFX a 0 que r -SFX a 0 ne r -SFX a 0 ve r -SFX a 0 aque r -SFX a 0 ane r -SFX a 0 ave r -SFX a 0 amque r -SFX a 0 amne r -SFX a 0 amve r -SFX a 0 aeque r -SFX a 0 aene r -SFX a 0 aeve r -SFX a 0 asque r -SFX a 0 asne r -SFX a 0 asve r -SFX a 0 arumque r -SFX a 0 arumne r -SFX a 0 arumve r -SFX a 0 isque r -SFX a 0 isne r -SFX a 0 isve r -SFX b Y 84 -SFX b us us us -SFX b us e us -SFX b us um us -SFX b us i us -SFX b us o us -SFX b us os us -SFX b us orum us -SFX b us is us -SFX b 0 que us -SFX b 0 ne us -SFX b 0 ve us -SFX b us eque us -SFX b us ene us -SFX b us eve us -SFX b us umque us -SFX b us umne us -SFX b us umve us -SFX b us ique us -SFX b us ine us -SFX b us ive us -SFX b us oque us -SFX b us one us -SFX b us ove us -SFX b us osque us -SFX b us osne us -SFX b us osve us -SFX b us orumque us -SFX b us orumne us -SFX b us orumve us -SFX b us isque us -SFX b us isne us -SFX b us isve us -SFX b i i i -SFX b i um i -SFX b i o i -SFX b i os i -SFX b i orum i -SFX b i is i -SFX b 0 que i -SFX b 0 ne i -SFX b 0 ve i -SFX b i umque i -SFX b i umne i -SFX b i umve i -SFX b i oque i -SFX b i one i -SFX b i ove i -SFX b i osque i -SFX b i osne i -SFX b i osve i -SFX b i orumque i -SFX b i orumne i -SFX b i orumve i -SFX b i isque i -SFX b i isne i -SFX b i isve i -SFX b r r r -SFX b 0 um r -SFX b 0 i r -SFX b 0 o r -SFX b 0 os r -SFX b 0 orum r -SFX b 0 is r -SFX b 0 que r -SFX b 0 ne r -SFX b 0 ve r -SFX b 0 umque r -SFX b 0 umne r -SFX b 0 umve r -SFX b 0 ique r -SFX b 0 ine r -SFX b 0 ive r -SFX b 0 oque r -SFX b 0 one r -SFX b 0 ove r -SFX b 0 osque r -SFX b 0 osne r -SFX b 0 osve r -SFX b 0 orumque r -SFX b 0 orumne r -SFX b 0 orumve r -SFX b 0 isque r -SFX b 0 isne r -SFX b 0 isve r -SFX c Y 76 -SFX c um um um -SFX c um i um -SFX c um o um -SFX c um a um -SFX c um orum um -SFX c um is um -SFX c 0 que um -SFX c 0 ne um -SFX c 0 ve um -SFX c um ique um -SFX c um ine um -SFX c um ive um -SFX c um oque um -SFX c um one um -SFX c um ove um -SFX c um aque um -SFX c um ane um -SFX c um ave um -SFX c um orumque um -SFX c um orumne um -SFX c um orumve um -SFX c um isque um -SFX c um isne um -SFX c um isve um -SFX c us us us -SFX c us i us -SFX c us o us -SFX c us a us -SFX c us orum us -SFX c us is us -SFX c us um us -SFX c 0 que us -SFX c 0 ne us -SFX c 0 ve us -SFX c us ique us -SFX c us ine us -SFX c us ive us -SFX c us oque us -SFX c us one us -SFX c us ove us -SFX c us aque us -SFX c us ane us -SFX c us ave us -SFX c us orumque us -SFX c us orumne us -SFX c us orumve us -SFX c us isque us -SFX c us isne us -SFX c us isve us -SFX c us umque us -SFX c us umne us -SFX c us umve us -SFX c i i i -SFX c i o i -SFX c i a i -SFX c i orum i -SFX c i is i -SFX c i um i -SFX c 0 que i -SFX c 0 ne i -SFX c 0 ve i -SFX c i oque i -SFX c i one i -SFX c i ove i -SFX c i aque i -SFX c i ane i -SFX c i ave i -SFX c i orumque i -SFX c i orumne i -SFX c i orumve i -SFX c i isque i -SFX c i isne i -SFX c i isve i -SFX c i umque i -SFX c i umne i -SFX c i umve i -SFX d Y 71 -SFX d is is is -SFX d is em is -SFX d is i is -SFX d is e is -SFX d is es is -SFX d is ibus is -SFX d 0 que is -SFX d 0 ne is -SFX d 0 ve is -SFX d is emque is -SFX d is emne is -SFX d is emve is -SFX d is ique is -SFX d is ine is -SFX d is ive is -SFX d is eque is -SFX d is ene is -SFX d is eve is -SFX d is esque is -SFX d is esne is -SFX d is esve is -SFX d is ibusque is -SFX d is ibusne is -SFX d is ibusve is -SFX d is ium [^aeiouy][^aeiouy]is # ars, artis, f. -SFX d is um [aeiouy][^aeiouy]is # quantitas, quantitatis, f. -SFX d is um [^aeiouy][aeiouy]is -SFX d is um [aeiouy][aeiouy]is -SFX d is iumque [^aeiouy][^aeiouy]is -SFX d is iumne [^aeiouy][^aeiouy]is -SFX d is iumve [^aeiouy][^aeiouy]is -SFX d is umque [aeiouy][^aeiouy]is -SFX d is umne [aeiouy][^aeiouy]is -SFX d is umve [aeiouy][^aeiouy]is -SFX d is umque [^aeiouy][aeiouy]is -SFX d is umne [^aeiouy][aeiouy]is -SFX d is umve [^aeiouy][aeiouy]is -SFX d is umque [aeiouy][aeiouy]is -SFX d is umne [aeiouy][aeiouy]is -SFX d is umve [aeiouy][aeiouy]is -SFX d 0 em [^i][^s] -SFX d 0 is [^i][^s] -SFX d 0 i [^i][^s] -SFX d 0 e [^i][^s] -SFX d 0 es [^i][^s] -SFX d 0 um [^i][^s] -SFX d 0 ibus [^i][^s] -SFX d 0 que [^i][^s] -SFX d 0 ne [^i][^s] -SFX d 0 ve [^i][^s] -SFX d 0 emque [^i][^s] -SFX d 0 emne [^i][^s] -SFX d 0 emve [^i][^s] -SFX d 0 isque [^i][^s] -SFX d 0 isne [^i][^s] -SFX d 0 isve [^i][^s] -SFX d 0 ique [^i][^s] -SFX d 0 ine [^i][^s] -SFX d 0 ive [^i][^s] -SFX d 0 eque [^i][^s] -SFX d 0 ene [^i][^s] -SFX d 0 eve [^i][^s] -SFX d 0 esque [^i][^s] -SFX d 0 esne [^i][^s] -SFX d 0 esve [^i][^s] -SFX d 0 umque [^i][^s] -SFX d 0 umne [^i][^s] -SFX d 0 umve [^i][^s] -SFX d 0 ibusque [^i][^s] -SFX d 0 ibusne [^i][^s] -SFX d 0 ibusve [^i][^s] -SFX e Y 36 -SFX e is is is -SFX e is i is -SFX e is e is -SFX e is a is -SFX e is ibus is -SFX e 0 que is -SFX e 0 ne is -SFX e 0 ve is -SFX e is ique is -SFX e is ine is -SFX e is ive is -SFX e is eque is -SFX e is ene is -SFX e is eve is -SFX e is aque is -SFX e is ane is -SFX e is ave is -SFX e is ibusque is -SFX e is ibusne is -SFX e is ibusve is -SFX e is ium [^aeiouy][^aeiouy]is # os, ossis, n. -SFX e is um [aeiouy][^aeiouy]is # corpus, corporis, n. -SFX e is um [^aeiouy][aeiouy]is -SFX e is um [aeiouy][aeiouy]is -SFX e is iumque [^aeiouy][^aeiouy]is -SFX e is iumne [^aeiouy][^aeiouy]is -SFX e is iumve [^aeiouy][^aeiouy]is -SFX e is umque [aeiouy][^aeiouy]is -SFX e is umne [aeiouy][^aeiouy]is -SFX e is umve [aeiouy][^aeiouy]is -SFX e is umque [^aeiouy][aeiouy]is -SFX e is umne [^aeiouy][aeiouy]is -SFX e is umve [^aeiouy][aeiouy]is -SFX e is umque [aeiouy][aeiouy]is -SFX e is umne [aeiouy][aeiouy]is -SFX e is umve [aeiouy][aeiouy]is -SFX f Y 28 -SFX f is is is -SFX f is em is -SFX f is i is -SFX f is e is -SFX f is es is -SFX f is ium is -SFX f is ibus is -SFX f 0 que is -SFX f 0 ne is -SFX f 0 ve is -SFX f is emque is -SFX f is emne is -SFX f is emve is -SFX f is ique is -SFX f is ine is -SFX f is ive is -SFX f is eque is -SFX f is ene is -SFX f is eve is -SFX f is esque is -SFX f is esne is -SFX f is esve is -SFX f is iumque is -SFX f is iumne is -SFX f is iumve is -SFX f is ibusque is -SFX f is ibusne is -SFX f is ibusve is -SFX g Y 20 -SFX g is is is -SFX g is i is -SFX g is ia is -SFX g is ium is -SFX g is ibus is -SFX g 0 que is -SFX g 0 ne is -SFX g 0 ve is -SFX g is ique is -SFX g is ine is -SFX g is ive is -SFX g is iaque is -SFX g is iane is -SFX g is iave is -SFX g is iumque is -SFX g is iumne is -SFX g is iumve is -SFX g is ibusque is -SFX g is ibusne is -SFX g is ibusve is -SFX h Y 56 -SFX h us us us -SFX h us um us -SFX h us us us -SFX h us ui us -SFX h us um us -SFX h us u us -SFX h us uum us -SFX h us ibus us -SFX h 0 que us -SFX h 0 ne us -SFX h 0 ve us -SFX h us umque us -SFX h us umne us -SFX h us umve us -SFX h us usque us -SFX h us usne us -SFX h us usve us -SFX h us uique us -SFX h us uine us -SFX h us uive us -SFX h us umque us -SFX h us umne us -SFX h us umve us -SFX h us uque us -SFX h us une us -SFX h us uve us -SFX h us uumque us -SFX h us uumne us -SFX h us uumve us -SFX h us ibusque us -SFX h us ibusne us -SFX h us ibusve us -SFX h u u u -SFX h u us u -SFX h u ui u -SFX h u ua u -SFX h u uum u -SFX h u ibus u -SFX h 0 que u -SFX h 0 ne u -SFX h 0 ve u -SFX h u usque u -SFX h u usne u -SFX h u usve u -SFX h u uique u -SFX h u uine u -SFX h u uive u -SFX h u uaque u -SFX h u uane u -SFX h u uave u -SFX h u uumque u -SFX h u uumne u -SFX h u uumve u -SFX h u ibusque u -SFX h u ibusne u -SFX h u ibusve u -SFX i Y 24 -SFX i es es es -SFX i es em es -SFX i es ei es -SFX i es e es -SFX i es erum es -SFX i es ebus es -SFX i 0 que es -SFX i 0 ne es -SFX i 0 ve es -SFX i es emque es -SFX i es emne es -SFX i es emve es -SFX i es eique es -SFX i es eine es -SFX i es eive es -SFX i es eque es -SFX i es ene es -SFX i es eve es -SFX i es erumque es -SFX i es erumne es -SFX i es erumve es -SFX i es ebusque es -SFX i es ebusne es -SFX i es ebusve es -SFX j Y 87 -SFX j as as as -SFX j as a as -SFX j as an as -SFX j as ae as -SFX j as as as -SFX j as arum as -SFX j as is as -SFX j 0 que as -SFX j 0 ne as -SFX j 0 ve as -SFX j as aque as -SFX j as ane as -SFX j as ave as -SFX j as anque as -SFX j as anne as -SFX j as anve as -SFX j as aeque as -SFX j as aene as -SFX j as aeve as -SFX j as asque as -SFX j as asne as -SFX j as asve as -SFX j as arumque as -SFX j as arumne as -SFX j as arumve as -SFX j as isque as -SFX j as isne as -SFX j as isve as -SFX j es es es -SFX j es e es -SFX j es en es -SFX j es ae es -SFX j es as es -SFX j es arum es -SFX j es is es -SFX j 0 que es -SFX j 0 ne es -SFX j 0 ve es -SFX j es esque es -SFX j es esne es -SFX j es esve es -SFX j es eque es -SFX j es ene es -SFX j es eve es -SFX j es enque es -SFX j es enne es -SFX j es enve es -SFX j es aeque es -SFX j es aene es -SFX j es aeve es -SFX j es asque es -SFX j es asne es -SFX j es asve es -SFX j es arumque es -SFX j es arumne es -SFX j es arumve es -SFX j es isque es -SFX j es isne es -SFX j es isve es -SFX j e e e -SFX j e en e -SFX j e es e -SFX j e ae e -SFX j e as e -SFX j e arum e -SFX j e is e -SFX j 0 que e -SFX j 0 ne e -SFX j 0 ve e -SFX j e enque e -SFX j e enne e -SFX j e enve e -SFX j e esque e -SFX j e esne e -SFX j e esve e -SFX j e aeque e -SFX j e aene e -SFX j e aeve e -SFX j e asque e -SFX j e asne e -SFX j e asve e -SFX j e arumque e -SFX j e arumne e -SFX j e arumve e -SFX j e isque e -SFX j e isne e -SFX j e isve e -SFX q Y 3 -SFX q 0 que . -SFX q 0 ne . -SFX q 0 ve . -SFX r Y 220 -SFX r us us [^i]us -SFX r us ior [^i]us -SFX r us iorem [^i]us -SFX r us ioris [^i]us -SFX r us iori [^i]us -SFX r us iore [^i]us -SFX r us ius [^i]us -SFX r us iores [^i]us -SFX r us iorum [^i]us -SFX r us ioribus [^i]us -SFX r us iora [^i]us -SFX r 0 que [^i]us -SFX r 0 ne [^i]us -SFX r 0 ve [^i]us -SFX r us iorque [^i]us -SFX r us iorne [^i]us -SFX r us iorve [^i]us -SFX r us ioremque [^i]us -SFX r us ioremne [^i]us -SFX r us ioremve [^i]us -SFX r us iorisque [^i]us -SFX r us iorisne [^i]us -SFX r us iorisve [^i]us -SFX r us iorique [^i]us -SFX r us iorine [^i]us -SFX r us iorive [^i]us -SFX r us ioreque [^i]us -SFX r us iorene [^i]us -SFX r us ioreve [^i]us -SFX r us iusque [^i]us -SFX r us iusne [^i]us -SFX r us iusve [^i]us -SFX r us ioresque [^i]us -SFX r us ioresne [^i]us -SFX r us ioresve [^i]us -SFX r us iorumque [^i]us -SFX r us iorumne [^i]us -SFX r us iorumve [^i]us -SFX r us ioribusque [^i]us -SFX r us ioribusne [^i]us -SFX r us ioribusve [^i]us -SFX r us ioraque [^i]us -SFX r us iorane [^i]us -SFX r us iorave [^i]us -SFX r us us ius -SFX r us or ius -SFX r us orem ius -SFX r us oris ius -SFX r us ori ius -SFX r us ore ius -SFX r us us ius -SFX r us ores ius -SFX r us orum ius -SFX r us oribus ius -SFX r us ora ius -SFX r 0 que ius -SFX r 0 ne ius -SFX r 0 ve ius -SFX r us orque ius -SFX r us orne ius -SFX r us orve ius -SFX r us oremque ius -SFX r us oremne ius -SFX r us oremve ius -SFX r us orisque ius -SFX r us orisne ius -SFX r us orisve ius -SFX r us orique ius -SFX r us orine ius -SFX r us orive ius -SFX r us oreque ius -SFX r us orene ius -SFX r us oreve ius -SFX r us usque ius -SFX r us usne ius -SFX r us usve ius -SFX r us oresque ius -SFX r us oresne ius -SFX r us oresve ius -SFX r us orumque ius -SFX r us orumne ius -SFX r us orumve ius -SFX r us oribusque ius -SFX r us oribusne ius -SFX r us oribusve ius -SFX r us oraque ius -SFX r us orane ius -SFX r us orave ius -SFX r i i i -SFX r i ior i -SFX r i iorem i -SFX r i ioris i -SFX r i iori i -SFX r i iore i -SFX r i ius i -SFX r i iores i -SFX r i iorum i -SFX r i ioribus i -SFX r i iora i -SFX r 0 que i -SFX r 0 ne i -SFX r 0 ve i -SFX r i iorque i -SFX r i iorne i -SFX r i iorve i -SFX r i ioremque i -SFX r i ioremne i -SFX r i ioremve i -SFX r i iorisque i -SFX r i iorisne i -SFX r i iorisve i -SFX r i iorique i -SFX r i iorine i -SFX r i iorive i -SFX r i ioreque i -SFX r i iorene i -SFX r i ioreve i -SFX r i iusque i -SFX r i iusne i -SFX r i iusve i -SFX r i ioresque i -SFX r i ioresne i -SFX r i ioresve i -SFX r i iorumque i -SFX r i iorumne i -SFX r i iorumve i -SFX r i ioribusque i -SFX r i ioribusne i -SFX r i ioribusve i -SFX r i ioraque i -SFX r i iorane i -SFX r i iorave i -SFX r is is is -SFX r is ior is -SFX r is iorem is -SFX r is ioris is -SFX r is iori is -SFX r is iore is -SFX r is ior is -SFX r is ius is -SFX r is iores is -SFX r is iorum is -SFX r is ioribus is -SFX r is iora is -SFX r 0 que is -SFX r 0 ne is -SFX r 0 ve is -SFX r is iorque is -SFX r is iorne is -SFX r is iorve is -SFX r is ioremque is -SFX r is ioremne is -SFX r is ioremve is -SFX r is iorisque is -SFX r is iorisne is -SFX r is iorisve is -SFX r is iorique is -SFX r is iorine is -SFX r is iorive is -SFX r is ioreque is -SFX r is iorene is -SFX r is ioreve is -SFX r is iorque is -SFX r is iorne is -SFX r is iorve is -SFX r is iusque is -SFX r is iusne is -SFX r is iusve is -SFX r is ioresque is -SFX r is ioresne is -SFX r is ioresve is -SFX r is iorumque is -SFX r is iorumne is -SFX r is iorumve is -SFX r is ioribusque is -SFX r is ioribusne is -SFX r is ioribusve is -SFX r is ioraque is -SFX r is iorane is -SFX r is iorave is -SFX r or or or -SFX r or orem or -SFX r or oris or -SFX r or ori or -SFX r or ore or -SFX r or us or -SFX r or ores or -SFX r or orum or -SFX r or oribus or -SFX r or ora or -SFX r 0 que or -SFX r 0 ne or -SFX r 0 ve or -SFX r or oremque or -SFX r or oremne or -SFX r or oremve or -SFX r or orisque or -SFX r or orisne or -SFX r or orisve or -SFX r or orique or -SFX r or orine or -SFX r or orive or -SFX r or oreque or -SFX r or orene or -SFX r or oreve or -SFX r or usque or -SFX r or usne or -SFX r or usve or -SFX r or oresque or -SFX r or oresne or -SFX r or oresve or -SFX r or orumque or -SFX r or orumne or -SFX r or orumve or -SFX r or oribusque or -SFX r or oribusne or -SFX r or oribusve or -SFX r or oraque or -SFX r or orane or -SFX r or orave or -SFX s Y 166 -SFX s us issimus us -SFX s us issimus us -SFX s us issime us -SFX s us issimum us -SFX s us issimi us -SFX s us issimo us -SFX s us issima us -SFX s us issimam us -SFX s us issimae us -SFX s us issimos us -SFX s us issimis us -SFX s us issimas us -SFX s us issimarum us -SFX s us issimorum us -SFX s 0 que us -SFX s 0 ne us -SFX s 0 ve us -SFX s us issimusque us -SFX s us issimusne us -SFX s us issimusve us -SFX s us issimeque us -SFX s us issimene us -SFX s us issimeve us -SFX s us issimumque us -SFX s us issimumne us -SFX s us issimumve us -SFX s us issimique us -SFX s us issimine us -SFX s us issimive us -SFX s us issimoque us -SFX s us issimone us -SFX s us issimove us -SFX s us issimaque us -SFX s us issimane us -SFX s us issimave us -SFX s us issimamque us -SFX s us issimamne us -SFX s us issimamve us -SFX s us issimaeque us -SFX s us issimaene us -SFX s us issimaeve us -SFX s us issimosque us -SFX s us issimosne us -SFX s us issimosve us -SFX s us issimisque us -SFX s us issimisne us -SFX s us issimisve us -SFX s us issimasque us -SFX s us issimasne us -SFX s us issimasve us -SFX s us issimarumque us -SFX s us issimarumne us -SFX s us issimarumve us -SFX s us issimorumque us -SFX s us issimorumne us -SFX s us issimorumve us -SFX s 0 rimus er -SFX s 0 rime er -SFX s 0 rimum er -SFX s 0 rimi er -SFX s 0 rimo er -SFX s 0 rima er -SFX s 0 rimam er -SFX s 0 rimae er -SFX s 0 rimos er -SFX s 0 rimis er -SFX s 0 rimas er -SFX s 0 rimarum er -SFX s 0 rimorum er -SFX s 0 que er -SFX s 0 ne er -SFX s 0 ve er -SFX s 0 rimusque er -SFX s 0 rimusne er -SFX s 0 rimusve er -SFX s 0 rimeque er -SFX s 0 rimene er -SFX s 0 rimeve er -SFX s 0 rimumque er -SFX s 0 rimumne er -SFX s 0 rimumve er -SFX s 0 rimique er -SFX s 0 rimine er -SFX s 0 rimive er -SFX s 0 rimoque er -SFX s 0 rimone er -SFX s 0 rimove er -SFX s 0 rimaque er -SFX s 0 rimane er -SFX s 0 rimave er -SFX s 0 rimamque er -SFX s 0 rimamne er -SFX s 0 rimamve er -SFX s 0 rimaeque er -SFX s 0 rimaene er -SFX s 0 rimaeve er -SFX s 0 rimosque er -SFX s 0 rimosne er -SFX s 0 rimosve er -SFX s 0 rimisque er -SFX s 0 rimisne er -SFX s 0 rimisve er -SFX s 0 rimasque er -SFX s 0 rimasne er -SFX s 0 rimasve er -SFX s 0 rimarumque er -SFX s 0 rimarumne er -SFX s 0 rimarumve er -SFX s 0 rimorumque er -SFX s 0 rimorumne er -SFX s 0 rimorumve er -SFX s is issimus is -SFX s is issime is -SFX s is issimum is -SFX s is issimi is -SFX s is issimo is -SFX s is issima is -SFX s is issimam is -SFX s is issimae is -SFX s is issimos is -SFX s is issimis is -SFX s is issimas is -SFX s is issimarum is -SFX s is issimorum is -SFX s 0 que is -SFX s 0 ne is -SFX s 0 ve is -SFX s is issimusque is -SFX s is issimusne is -SFX s is issimusve is -SFX s is issimeque is -SFX s is issimene is -SFX s is issimeve is -SFX s is issimumque is -SFX s is issimumne is -SFX s is issimumve is -SFX s is issimique is -SFX s is issimine is -SFX s is issimive is -SFX s is issimoque is -SFX s is issimone is -SFX s is issimove is -SFX s is issimaque is -SFX s is issimane is -SFX s is issimave is -SFX s is issimamque is -SFX s is issimamne is -SFX s is issimamve is -SFX s is issimaeque is -SFX s is issimaene is -SFX s is issimaeve is -SFX s is issimosque is -SFX s is issimosne is -SFX s is issimosve is -SFX s is issimisque is -SFX s is issimisne is -SFX s is issimisve is -SFX s is issimasque is -SFX s is issimasne is -SFX s is issimasve is -SFX s is issimarumque is -SFX s is issimarumne is -SFX s is issimarumve is -SFX s is issimorumque is -SFX s is issimorumne is -SFX s is issimorumve is -SFX t Y 4 -SFX t is iter is -SFX t is iterque is -SFX t is iterne is -SFX t is iterve is -SFX A Y 590 -SFX A o o o -SFX A o as o # actif infectum personnel indicatif prsent -SFX A o asque o -SFX A o asne o -SFX A o asve o -SFX A o at o -SFX A o atque o -SFX A o atne o -SFX A o atve o -SFX A o amus o -SFX A o amusque o -SFX A o amusne o -SFX A o amusve o -SFX A o atis o -SFX A o atisque o -SFX A o atisne o -SFX A o atisve o -SFX A o ant o -SFX A o antque o -SFX A o antne o -SFX A o antve o -SFX A o abam o # actif infectum personnel indicatif imparfait -SFX A o abamque o -SFX A o abamne o -SFX A o abamve o -SFX A o abas o -SFX A o abasque o -SFX A o abasne o -SFX A o abasve o -SFX A o abat o -SFX A o abatque o -SFX A o abatne o -SFX A o abatve o -SFX A o abamus o -SFX A o abamusque o -SFX A o abamusne o -SFX A o abamusve o -SFX A o abatis o -SFX A o abatisque o -SFX A o abatisne o -SFX A o abatisve o -SFX A o abant o -SFX A o abantque o -SFX A o abantne o -SFX A o abantve o -SFX A o abo o # actif infectum personnel indicatif futur -SFX A o aboque o -SFX A o abone o -SFX A o above o -SFX A o abis o -SFX A o abisque o -SFX A o abisne o -SFX A o abisve o -SFX A o abit o -SFX A o abitque o -SFX A o abitne o -SFX A o abitve o -SFX A o abimus o -SFX A o abimusque o -SFX A o abimusne o -SFX A o abimusve o -SFX A o abitis o -SFX A o abitisque o -SFX A o abitisne o -SFX A o abitisve o -SFX A o abunt o -SFX A o abuntque o -SFX A o abuntne o -SFX A o abuntve o -SFX A o em o # actif infectum personnel subjonctif prsent -SFX A o emque o -SFX A o emne o -SFX A o emve o -SFX A o es o -SFX A o esque o -SFX A o esne o -SFX A o esve o -SFX A o et o -SFX A o etque o -SFX A o etne o -SFX A o etve o -SFX A o emus o -SFX A o emusque o -SFX A o emusne o -SFX A o emusve o -SFX A o etis o -SFX A o etisque o -SFX A o etisne o -SFX A o etisve o -SFX A o ent o -SFX A o entque o -SFX A o entne o -SFX A o entve o -SFX A o arem o # actif infectum personnel subjonctif imparfait -SFX A o aremque o -SFX A o aremne o -SFX A o aremve o -SFX A o ares o -SFX A o aresque o -SFX A o aresne o -SFX A o aresve o -SFX A o aret o -SFX A o aretque o -SFX A o aretne o -SFX A o aretve o -SFX A o aremus o -SFX A o aremusque o -SFX A o aremusne o -SFX A o aremusve o -SFX A o aretis o -SFX A o aretisque o -SFX A o aretisne o -SFX A o aretisve o -SFX A o arent o -SFX A o arentque o -SFX A o arentne o -SFX A o arentve o -SFX A o a o # actif infectum personnel impratif prsent -SFX A o aque o -SFX A o ane o -SFX A o ave o -SFX A o ate o -SFX A o ateque o -SFX A o atene o -SFX A o ateve o -SFX A o are o # actif infectum impersonnel infinitif prsent -SFX A o areque o -SFX A o arene o -SFX A o areve o -SFX A o andum o # grondif -SFX A o andumque o -SFX A o andumne o -SFX A o andumve o -SFX A o andi o -SFX A o andique o -SFX A o andine o -SFX A o andive o -SFX A o ando o -SFX A o andoque o -SFX A o andone o -SFX A o andove o -SFX A o ans o # participe prsent actif -SFX A o ansque o -SFX A o ansne o -SFX A o ansve o -SFX A o antem o -SFX A o antemque o -SFX A o antemne o -SFX A o antemve o -SFX A o antis o -SFX A o antisque o -SFX A o antisne o -SFX A o antisve o -SFX A o anti o -SFX A o antique o -SFX A o antine o -SFX A o antive o -SFX A o ante o -SFX A o anteque o -SFX A o antene o -SFX A o anteve o -SFX A o antes o -SFX A o antesque o -SFX A o antesne o -SFX A o antesve o -SFX A o antium o -SFX A o antiumque o -SFX A o antiumne o -SFX A o antiumve o -SFX A o antibus o -SFX A o antibusque o -SFX A o antibusne o -SFX A o antibusve o -SFX A o antia o -SFX A o antiaque o -SFX A o antiane o -SFX A o antiave o -SFX A 0 r o # passif infectum personnel indicatif prsent -SFX A 0 rque o -SFX A 0 rne o -SFX A 0 rve o -SFX A o aris o -SFX A o arisque o -SFX A o arisne o -SFX A o arisve o -SFX A o atur o -SFX A o aturque o -SFX A o aturne o -SFX A o aturve o -SFX A o amur o -SFX A o amurque o -SFX A o amurne o -SFX A o amurve o -SFX A o amini o -SFX A o aminique o -SFX A o aminine o -SFX A o aminive o -SFX A o antur o -SFX A o anturque o -SFX A o anturne o -SFX A o anturve o -SFX A o abar o # passif infectum personnel indicatif imparfait -SFX A o abarque o -SFX A o abarne o -SFX A o abarve o -SFX A o abaris o -SFX A o abarisque o -SFX A o abarisne o -SFX A o abarisve o -SFX A o abatur o -SFX A o abaturque o -SFX A o abaturne o -SFX A o abaturve o -SFX A o abamur o -SFX A o abamurque o -SFX A o abamurne o -SFX A o abamurve o -SFX A o abamini o -SFX A o abaminique o -SFX A o abaminine o -SFX A o abaminive o -SFX A o abantur o -SFX A o abanturque o -SFX A o abanturne o -SFX A o abanturve o -SFX A o abor o # passif infectum personnel indicatif futur -SFX A o aborque o -SFX A o aborne o -SFX A o aborve o -SFX A o aberis o -SFX A o aberisque o -SFX A o aberisne o -SFX A o aberisve o -SFX A o abitur o -SFX A o abiturque o -SFX A o abiturne o -SFX A o abiturve o -SFX A o abimur o -SFX A o abimurque o -SFX A o abimurne o -SFX A o abimurve o -SFX A o abimini o -SFX A o abiminique o -SFX A o abiminine o -SFX A o abiminive o -SFX A o abuntur o -SFX A o abunturque o -SFX A o abunturne o -SFX A o abunturve o -SFX A o er o # passif infectum personnel subjonctif prsent -SFX A o erque o -SFX A o erne o -SFX A o erve o -SFX A o eris o -SFX A o erisque o -SFX A o erisne o -SFX A o erisve o -SFX A o etur o -SFX A o eturque o -SFX A o eturne o -SFX A o eturve o -SFX A o emur o -SFX A o emurque o -SFX A o emurne o -SFX A o emurve o -SFX A o emini o -SFX A o eminique o -SFX A o eminine o -SFX A o eminive o -SFX A o entur o -SFX A o enturque o -SFX A o enturne o -SFX A o enturve o -SFX A o arer o # passif infectum personnel subjonctif imparfait -SFX A o arerque o -SFX A o arerne o -SFX A o arerve o -SFX A o areris o -SFX A o arerisque o -SFX A o arerisne o -SFX A o arerisve o -SFX A o aretur o -SFX A o areturque o -SFX A o areturne o -SFX A o areturve o -SFX A o aremur o -SFX A o aremurque o -SFX A o aremurne o -SFX A o aremurve o -SFX A o aremini o -SFX A o areminique o -SFX A o areminine o -SFX A o areminive o -SFX A o arentur o -SFX A o arenturque o -SFX A o arenturne o -SFX A o arenturve o -SFX A o are o # passif infectum impratif -SFX A o areque o -SFX A o arene o -SFX A o areve o -SFX A o amini o -SFX A o aminique o -SFX A o aminine o -SFX A o aminive o -SFX A o ari o # passif infectum impersonnel infinitif -SFX A o arique o -SFX A o arine o -SFX A o arive o -SFX A o andus o # adjectif verbal -SFX A o andusque o -SFX A o andusne o -SFX A o andusve o -SFX A o ande o -SFX A o andeque o -SFX A o andene o -SFX A o andeve o -SFX A o andum o -SFX A o andumque o -SFX A o andumne o -SFX A o andumve o -SFX A o andi o -SFX A o andique o -SFX A o andine o -SFX A o andive o -SFX A o ando o -SFX A o andoque o -SFX A o andone o -SFX A o andove o -SFX A o anda o -SFX A o andaque o -SFX A o andane o -SFX A o andave o -SFX A o andam o -SFX A o andamque o -SFX A o andamne o -SFX A o andamve o -SFX A o andae o -SFX A o andaeque o -SFX A o andaene o -SFX A o andaeve o -SFX A o andos o -SFX A o andosque o -SFX A o andosne o -SFX A o andosve o -SFX A o andorum o -SFX A o andorumque o -SFX A o andorumne o -SFX A o andorumve o -SFX A o andis o -SFX A o andisque o -SFX A o andisne o -SFX A o andisve o -SFX A o andas o -SFX A o andasque o -SFX A o andasne o -SFX A o andasve o -SFX A o andarum o -SFX A o andarumque o -SFX A o andarumne o -SFX A o andarumve o -SFX A 0 or or -SFX A 0 r or # infectum personnel indicatif prsent -SFX A 0 rque or -SFX A 0 rne or -SFX A 0 rve or -SFX A or aris or -SFX A or arisque or -SFX A or arisne or -SFX A or arisve or -SFX A or atur or -SFX A or aturque or -SFX A or aturne or -SFX A or aturve or -SFX A or amur or -SFX A or amurque or -SFX A or amurne or -SFX A or amurve or -SFX A or amini or -SFX A or aminique or -SFX A or aminine or -SFX A or aminive or -SFX A or antur or -SFX A or anturque or -SFX A or anturne or -SFX A or anturve or -SFX A or abar or # infectum personnel indicatif imparfait -SFX A or abarque or -SFX A or abarne or -SFX A or abarve or -SFX A or abaris or -SFX A or abarisque or -SFX A or abarisne or -SFX A or abarisve or -SFX A or abatur or -SFX A or abaturque or -SFX A or abaturne or -SFX A or abaturve or -SFX A or abamur or -SFX A or abamurque or -SFX A or abamurne or -SFX A or abamurve or -SFX A or abamini or -SFX A or abaminique or -SFX A or abaminine or -SFX A or abaminive or -SFX A or abantur or -SFX A or abanturque or -SFX A or abanturne or -SFX A or abanturve or -SFX A or abor or # infectum personnel indicatif futur -SFX A or aborque or -SFX A or aborne or -SFX A or aborve or -SFX A or aberis or -SFX A or aberisque or -SFX A or aberisne or -SFX A or aberisve or -SFX A or abitur or -SFX A or abiturque or -SFX A or abiturne or -SFX A or abiturve or -SFX A or abimur or -SFX A or abimurque or -SFX A or abimurne or -SFX A or abimurve or -SFX A or abimini or -SFX A or abiminique or -SFX A or abiminine or -SFX A or abiminive or -SFX A or abuntur or -SFX A or abunturque or -SFX A or abunturne or -SFX A or abunturve or -SFX A or er or # infectum personnel subjonctif prsent -SFX A or erque or -SFX A or erne or -SFX A or erve or -SFX A or eris or -SFX A or erisque or -SFX A or erisne or -SFX A or erisve or -SFX A or etur or -SFX A or eturque or -SFX A or eturne or -SFX A or eturve or -SFX A or emur or -SFX A or emurque or -SFX A or emurne or -SFX A or emurve or -SFX A or emini or -SFX A or eminique or -SFX A or eminine or -SFX A or eminive or -SFX A or entur or -SFX A or enturque or -SFX A or enturne or -SFX A or enturve or -SFX A or arer or # infectum personnel subjonctif imparfait -SFX A or arerque or -SFX A or arerne or -SFX A or arerve or -SFX A or areris or -SFX A or arerisque or -SFX A or arerisne or -SFX A or arerisve or -SFX A or aretur or -SFX A or areturque or -SFX A or areturne or -SFX A or areturve or -SFX A or aremur or -SFX A or aremurque or -SFX A or aremurne or -SFX A or aremurve or -SFX A or aremini or -SFX A or areminique or -SFX A or areminine or -SFX A or areminive or -SFX A or arentur or -SFX A or arenturque or -SFX A or arenturne or -SFX A or arenturve or -SFX A or are or # impratif prsent -SFX A or areque or -SFX A or arene or -SFX A or areve or -SFX A or ari or # infinitif prsent -SFX A or arique or -SFX A or arine or -SFX A or arive or -SFX A or ans or # participe prsent -SFX A or ansque or -SFX A or ansne or -SFX A or ansve or -SFX A or antem or -SFX A or antemque or -SFX A or antemne or -SFX A or antemve or -SFX A or antis or -SFX A or antisque or -SFX A or antisne or -SFX A or antisve or -SFX A or anti or -SFX A or antique or -SFX A or antine or -SFX A or antive or -SFX A or ante or -SFX A or anteque or -SFX A or antene or -SFX A or anteve or -SFX A or antes or -SFX A or antesque or -SFX A or antesne or -SFX A or antesve or -SFX A or antium or -SFX A or antiumque or -SFX A or antiumne or -SFX A or antiumve or -SFX A or antibus or -SFX A or antibusque or -SFX A or antibusne or -SFX A or antibusve or -SFX A or antia or -SFX A or antiaque or -SFX A or antiane or -SFX A or antiave or -SFX A or andum or # grondif -SFX A or andumque or -SFX A or andumne or -SFX A or andumve or -SFX A or andi or -SFX A or andique or -SFX A or andine or -SFX A or andive or -SFX A or ando or -SFX A or andoque or -SFX A or andone or -SFX A or andove or -SFX A or andus or # adjectif verbal -SFX A or andusque or -SFX A or andusne or -SFX A or andusve or -SFX A or ande or -SFX A or andeque or -SFX A or andene or -SFX A or andeve or -SFX A or andum or -SFX A or andumque or -SFX A or andumne or -SFX A or andumve or -SFX A or andi or -SFX A or andique or -SFX A or andine or -SFX A or andive or -SFX A or ando or -SFX A or andoque or -SFX A or andone or -SFX A or andove or -SFX A or anda or -SFX A or andaque or -SFX A or andane or -SFX A or andave or -SFX A or andam or -SFX A or andamque or -SFX A or andamne or -SFX A or andamve or -SFX A or andae or -SFX A or andaeque or -SFX A or andaene or -SFX A or andaeve or -SFX A or andos or -SFX A or andosque or -SFX A or andosne or -SFX A or andosve or -SFX A or andorum or -SFX A or andorumque or -SFX A or andorumne or -SFX A or andorumve or -SFX A or andis or -SFX A or andisque or -SFX A or andisne or -SFX A or andisve or -SFX A or andas or -SFX A or andasque or -SFX A or andasne or -SFX A or andasve or -SFX A or andarum or -SFX A or andarumque or -SFX A or andarumne or -SFX A or andarumve or -SFX B Y 1806 -SFX B o o eo -SFX B o s eo # actif infectum personnel indicatif prsent -SFX B o sque eo -SFX B o sne eo -SFX B o sve eo -SFX B o t eo -SFX B o tque eo -SFX B o tne eo -SFX B o tve eo -SFX B o mus eo -SFX B o musque eo -SFX B o musne eo -SFX B o musve eo -SFX B o tis eo -SFX B o tisque eo -SFX B o tisne eo -SFX B o tisve eo -SFX B o nt eo -SFX B o ntque eo -SFX B o ntne eo -SFX B o ntve eo -SFX B o bam eo # actif infectum personnel indicatif imparfait -SFX B o bamque eo -SFX B o bamne eo -SFX B o bamve eo -SFX B o bas eo -SFX B o basque eo -SFX B o basne eo -SFX B o basve eo -SFX B o bat eo -SFX B o batque eo -SFX B o batne eo -SFX B o batve eo -SFX B o bamus eo -SFX B o bamusque eo -SFX B o bamusne eo -SFX B o bamusve eo -SFX B o batis eo -SFX B o batisque eo -SFX B o batisne eo -SFX B o batisve eo -SFX B o bant eo -SFX B o bantque eo -SFX B o bantne eo -SFX B o bantve eo -SFX B o bo eo # actif infectum personnel indicatif futur -SFX B o boque eo -SFX B o bone eo -SFX B o bove eo -SFX B o bis eo -SFX B o bisque eo -SFX B o bisne eo -SFX B o bisve eo -SFX B o bit eo -SFX B o bitque eo -SFX B o bitne eo -SFX B o bitve eo -SFX B o bimus eo -SFX B o bimusque eo -SFX B o bimusne eo -SFX B o bimusve eo -SFX B o bitis eo -SFX B o bitisque eo -SFX B o bitisne eo -SFX B o bitisve eo -SFX B o bunt eo -SFX B o buntque eo -SFX B o buntne eo -SFX B o buntve eo -SFX B o am eo # actif infectum personnel subjonctif prsent -SFX B o amque eo -SFX B o amne eo -SFX B o amve eo -SFX B o as eo -SFX B o asque eo -SFX B o asne eo -SFX B o asve eo -SFX B o at eo -SFX B o atque eo -SFX B o atne eo -SFX B o atve eo -SFX B o amus eo -SFX B o amusque eo -SFX B o amusne eo -SFX B o amusve eo -SFX B o atis eo -SFX B o atisque eo -SFX B o atisne eo -SFX B o atisve eo -SFX B o ant eo -SFX B o antque eo -SFX B o antne eo -SFX B o antve eo -SFX B o rem eo # actif infectum personnel subjonctif imparfait -SFX B o remque eo -SFX B o remne eo -SFX B o remve eo -SFX B o res eo -SFX B o resque eo -SFX B o resne eo -SFX B o resve eo -SFX B o ret eo -SFX B o retque eo -SFX B o retne eo -SFX B o retve eo -SFX B o remus eo -SFX B o remusque eo -SFX B o remusne eo -SFX B o remusve eo -SFX B o retis eo -SFX B o retisque eo -SFX B o retisne eo -SFX B o retisve eo -SFX B o rent eo -SFX B o rentque eo -SFX B o rentne eo -SFX B o rentve eo -SFX B eo e eo # actif infectum personnel impratif prsent -SFX B eo eque eo -SFX B eo ene eo -SFX B eo eve eo -SFX B o te eo -SFX B o teque eo -SFX B o tene eo -SFX B o teve eo -SFX B o re eo # actif infectum impersonnel infinitif prsent -SFX B o reque eo -SFX B o rene eo -SFX B o reve eo -SFX B o ndum eo # grondif -SFX B o ndumque eo -SFX B o ndumne eo -SFX B o ndumve eo -SFX B o ndi eo -SFX B o ndique eo -SFX B o ndine eo -SFX B o ndive eo -SFX B o ndo eo -SFX B o ndoque eo -SFX B o ndone eo -SFX B o ndove eo -SFX B o ns eo # participe prsent actif -SFX B o nsque eo -SFX B o nsne eo -SFX B o nsve eo -SFX B o ntem eo -SFX B o ntemque eo -SFX B o ntemne eo -SFX B o ntemve eo -SFX B o ntis eo -SFX B o ntisque eo -SFX B o ntisne eo -SFX B o ntisve eo -SFX B o nti eo -SFX B o ntique eo -SFX B o ntine eo -SFX B o ntive eo -SFX B o nte eo -SFX B o nteque eo -SFX B o ntene eo -SFX B o nteve eo -SFX B o ntes eo -SFX B o ntesque eo -SFX B o ntesne eo -SFX B o ntesve eo -SFX B o ntium eo -SFX B o ntiumque eo -SFX B o ntiumne eo -SFX B o ntiumve eo -SFX B o ntibus eo -SFX B o ntibusque eo -SFX B o ntibusne eo -SFX B o ntibusve eo -SFX B o ntia eo -SFX B o ntiaque eo -SFX B o ntiane eo -SFX B o ntiave eo -SFX B 0 r eo # passif infectum personnel indicatif prsent -SFX B 0 rque eo -SFX B 0 rne eo -SFX B 0 rve eo -SFX B o ris eo -SFX B o risque eo -SFX B o risne eo -SFX B o risve eo -SFX B o tur eo -SFX B o turque eo -SFX B o turne eo -SFX B o turve eo -SFX B o mur eo -SFX B o murque eo -SFX B o murne eo -SFX B o murve eo -SFX B o mini eo -SFX B o minique eo -SFX B o minine eo -SFX B o minive eo -SFX B o ntur eo -SFX B o nturque eo -SFX B o nturne eo -SFX B o nturve eo -SFX B o bar eo # passif infectum personnel indicatif imparfait -SFX B o barque eo -SFX B o barne eo -SFX B o barve eo -SFX B o baris eo -SFX B o barisque eo -SFX B o barisne eo -SFX B o barisve eo -SFX B o batur eo -SFX B o baturque eo -SFX B o baturne eo -SFX B o baturve eo -SFX B o bamur eo -SFX B o bamurque eo -SFX B o bamurne eo -SFX B o bamurve eo -SFX B o bamini eo -SFX B o baminique eo -SFX B o baminine eo -SFX B o baminive eo -SFX B o bantur eo -SFX B o banturque eo -SFX B o banturne eo -SFX B o banturve eo -SFX B o bor eo # passif infectum personnel indicatif futur -SFX B o borque eo -SFX B o borne eo -SFX B o borve eo -SFX B o beris eo -SFX B o berisque eo -SFX B o berisne eo -SFX B o berisve eo -SFX B o bitur eo -SFX B o biturque eo -SFX B o biturne eo -SFX B o biturve eo -SFX B o bimur eo -SFX B o bimurque eo -SFX B o bimurne eo -SFX B o bimurve eo -SFX B o bimini eo -SFX B o biminique eo -SFX B o biminine eo -SFX B o biminive eo -SFX B o buntur eo -SFX B o bunturque eo -SFX B o bunturne eo -SFX B o bunturve eo -SFX B o ar eo # passif infectum personnel subjonctif prsent -SFX B o arque eo -SFX B o arne eo -SFX B o arve eo -SFX B o aris eo -SFX B o arisque eo -SFX B o arisne eo -SFX B o arisve eo -SFX B o atur eo -SFX B o aturque eo -SFX B o aturne eo -SFX B o aturve eo -SFX B o amur eo -SFX B o amurque eo -SFX B o amurne eo -SFX B o amurve eo -SFX B o amini eo -SFX B o aminique eo -SFX B o aminine eo -SFX B o aminive eo -SFX B o antur eo -SFX B o anturque eo -SFX B o anturne eo -SFX B o anturve eo -SFX B o rer eo # passif infectum personnel subjonctif imparfait -SFX B o rerque eo -SFX B o rerne eo -SFX B o rerve eo -SFX B o reris eo -SFX B o rerisque eo -SFX B o rerisne eo -SFX B o rerisve eo -SFX B o retur eo -SFX B o returque eo -SFX B o returne eo -SFX B o returve eo -SFX B o remur eo -SFX B o remurque eo -SFX B o remurne eo -SFX B o remurve eo -SFX B o remini eo -SFX B o reminique eo -SFX B o reminine eo -SFX B o reminive eo -SFX B o rentur eo -SFX B o renturque eo -SFX B o renturne eo -SFX B o renturve eo -SFX B o re eo # imperatif passif -SFX B o reque eo -SFX B o rene eo -SFX B o reve eo -SFX B o mini eo -SFX B o minique eo -SFX B o minine eo -SFX B o minive eo -SFX B o ri eo # passif infectum impersonnel infinitif -SFX B o rique eo -SFX B o rine eo -SFX B o rive eo -SFX B o ndus eo # adjectif verbal -SFX B o ndusque eo -SFX B o ndusne eo -SFX B o ndusve eo -SFX B o nde eo -SFX B o ndeque eo -SFX B o ndene eo -SFX B o ndeve eo -SFX B o ndum eo -SFX B o ndumque eo -SFX B o ndumne eo -SFX B o ndumve eo -SFX B o ndi eo -SFX B o ndique eo -SFX B o ndine eo -SFX B o ndive eo -SFX B o ndo eo -SFX B o ndoque eo -SFX B o ndone eo -SFX B o ndove eo -SFX B o nda eo -SFX B o ndaque eo -SFX B o ndane eo -SFX B o ndave eo -SFX B o ndam eo -SFX B o ndamque eo -SFX B o ndamne eo -SFX B o ndamve eo -SFX B o ndae eo -SFX B o ndaeque eo -SFX B o ndaene eo -SFX B o ndaeve eo -SFX B o ndos eo -SFX B o ndosque eo -SFX B o ndosne eo -SFX B o ndosve eo -SFX B o ndorum eo -SFX B o ndorumque eo -SFX B o ndorumne eo -SFX B o ndorumve eo -SFX B o ndis eo -SFX B o ndisque eo -SFX B o ndisne eo -SFX B o ndisve eo -SFX B o ndas eo -SFX B o ndasque eo -SFX B o ndasne eo -SFX B o ndasve eo -SFX B o ndarum eo -SFX B o ndarumque eo -SFX B o ndarumne eo -SFX B o ndarumve eo -SFX B or or eor -SFX B or ris eor # infectum personnel indicatif prsent -SFX B or risque eor -SFX B or risne eor -SFX B or risve eor -SFX B or tur eor -SFX B or turque eor -SFX B or turne eor -SFX B or turve eor -SFX B or mur eor -SFX B or murque eor -SFX B or murne eor -SFX B or murve eor -SFX B or mini eor -SFX B or minique eor -SFX B or minine eor -SFX B or minive eor -SFX B or ntur eor -SFX B or nturque eor -SFX B or nturne eor -SFX B or nturve eor -SFX B or bar eor # infectum personnel indicatif imparfait -SFX B or barque eor -SFX B or barne eor -SFX B or barve eor -SFX B or baris eor -SFX B or barisque eor -SFX B or barisne eor -SFX B or barisve eor -SFX B or batur eor -SFX B or baturque eor -SFX B or baturne eor -SFX B or baturve eor -SFX B or bamur eor -SFX B or bamurque eor -SFX B or bamurne eor -SFX B or bamurve eor -SFX B or bamini eor -SFX B or baminique eor -SFX B or baminine eor -SFX B or baminive eor -SFX B or bantur eor -SFX B or banturque eor -SFX B or banturne eor -SFX B or banturve eor -SFX B or bor eor # infectum personnel indicatif futur -SFX B or borque eor -SFX B or borne eor -SFX B or borve eor -SFX B or beris eor -SFX B or berisque eor -SFX B or berisne eor -SFX B or berisve eor -SFX B or bitur eor -SFX B or biturque eor -SFX B or biturne eor -SFX B or biturve eor -SFX B or bimur eor -SFX B or bimurque eor -SFX B or bimurne eor -SFX B or bimurve eor -SFX B or bimini eor -SFX B or biminique eor -SFX B or biminine eor -SFX B or biminive eor -SFX B or buntur eor -SFX B or bunturque eor -SFX B or bunturne eor -SFX B or bunturve eor -SFX B or ar eor # infectum personnel subjonctif prsent -SFX B or arque eor -SFX B or arne eor -SFX B or arve eor -SFX B or aris eor -SFX B or arisque eor -SFX B or arisne eor -SFX B or arisve eor -SFX B or atur eor -SFX B or aturque eor -SFX B or aturne eor -SFX B or aturve eor -SFX B or amur eor -SFX B or amurque eor -SFX B or amurne eor -SFX B or amurve eor -SFX B or amini eor -SFX B or aminique eor -SFX B or aminine eor -SFX B or aminive eor -SFX B or antur eor -SFX B or anturque eor -SFX B or anturne eor -SFX B or anturve eor -SFX B or rer eor # infectum personnel subjonctif imparfait -SFX B or rerque eor -SFX B or rerne eor -SFX B or rerve eor -SFX B or reris eor -SFX B or rerisque eor -SFX B or rerisne eor -SFX B or rerisve eor -SFX B or retur eor -SFX B or returque eor -SFX B or returne eor -SFX B or returve eor -SFX B or remur eor -SFX B or remurque eor -SFX B or remurne eor -SFX B or remurve eor -SFX B or remini eor -SFX B or reminique eor -SFX B or reminine eor -SFX B or reminive eor -SFX B or rentur eor -SFX B or renturque eor -SFX B or renturne eor -SFX B or renturve eor -SFX B or re eor # impratif prsent -SFX B or reque eor -SFX B or rene eor -SFX B or reve eor -SFX B or ri eor # infinitif prsent -SFX B or rique eor -SFX B or rine eor -SFX B or rive eor -SFX B or ns eor # participe prsent -SFX B or nsque eor -SFX B or nsne eor -SFX B or nsve eor -SFX B or ntem eor -SFX B or ntemque eor -SFX B or ntemne eor -SFX B or ntemve eor -SFX B or ntis eor -SFX B or ntisque eor -SFX B or ntisne eor -SFX B or ntisve eor -SFX B or nti eor -SFX B or ntique eor -SFX B or ntine eor -SFX B or ntive eor -SFX B or nte eor -SFX B or nteque eor -SFX B or ntene eor -SFX B or nteve eor -SFX B or ntes eor -SFX B or ntesque eor -SFX B or ntesne eor -SFX B or ntesve eor -SFX B or ntium eor -SFX B or ntiumque eor -SFX B or ntiumne eor -SFX B or ntiumve eor -SFX B or ntibus eor -SFX B or ntibusque eor -SFX B or ntibusne eor -SFX B or ntibusve eor -SFX B or ntia eor -SFX B or ntiaque eor -SFX B or ntiane eor -SFX B or ntiave eor -SFX B or ndum eor # grondif -SFX B or ndumque eor -SFX B or ndumne eor -SFX B or ndumve eor -SFX B or ndi eor -SFX B or ndique eor -SFX B or ndine eor -SFX B or ndive eor -SFX B or ndo eor -SFX B or ndoque eor -SFX B or ndone eor -SFX B or ndove eor -SFX B or ndus eor # adjectif verbal -SFX B or ndusque eor -SFX B or ndusne eor -SFX B or ndusve eor -SFX B or nde eor -SFX B or ndeque eor -SFX B or ndene eor -SFX B or ndeve eor -SFX B or ndum eor -SFX B or ndumque eor -SFX B or ndumne eor -SFX B or ndumve eor -SFX B or ndi eor -SFX B or ndique eor -SFX B or ndine eor -SFX B or ndive eor -SFX B or ndo eor -SFX B or ndoque eor -SFX B or ndone eor -SFX B or ndove eor -SFX B or nda eor -SFX B or ndaque eor -SFX B or ndane eor -SFX B or ndave eor -SFX B or ndam eor -SFX B or ndamque eor -SFX B or ndamne eor -SFX B or ndamve eor -SFX B or ndae eor -SFX B or ndaeque eor -SFX B or ndaene eor -SFX B or ndaeve eor -SFX B or ndos eor -SFX B or ndosque eor -SFX B or ndosne eor -SFX B or ndosve eor -SFX B or ndorum eor -SFX B or ndorumque eor -SFX B or ndorumne eor -SFX B or ndorumve eor -SFX B or ndis eor -SFX B or ndisque eor -SFX B or ndisne eor -SFX B or ndisve eor -SFX B or ndas eor -SFX B or ndasque eor -SFX B or ndasne eor -SFX B or ndasve eor -SFX B or ndarum eor -SFX B or ndarumque eor -SFX B or ndarumne eor -SFX B or ndarumve eor -SFX B o o io -SFX B o s io # actif infectum personnel indicatif prsent -SFX B o sque io -SFX B o sne io -SFX B o sve io -SFX B o t io -SFX B o tque io -SFX B o tne io -SFX B o tve io -SFX B o mus io -SFX B o musque io -SFX B o musne io -SFX B o musve io -SFX B o tis io -SFX B o tisque io -SFX B o tisne io -SFX B o tisve io -SFX B o unt io -SFX B o untque io -SFX B o untne io -SFX B o untve io -SFX B o ebam io # actif infectum personnel indicatif imparfait -SFX B o ebamque io -SFX B o ebamne io -SFX B o ebamve io -SFX B o ebas io -SFX B o ebasque io -SFX B o ebasne io -SFX B o ebasve io -SFX B o ebat io -SFX B o ebatque io -SFX B o ebatne io -SFX B o ebatve io -SFX B o ebamus io -SFX B o ebamusque io -SFX B o ebamusne io -SFX B o ebamusve io -SFX B o ebatis io -SFX B o ebatisque io -SFX B o ebatisne io -SFX B o ebatisve io -SFX B o ebant io -SFX B o ebantque io -SFX B o ebantne io -SFX B o ebantve io -SFX B o am io # actif infectum personnel indicatif futur -SFX B o amque io -SFX B o amne io -SFX B o amve io -SFX B o es io -SFX B o esque io -SFX B o esne io -SFX B o esve io -SFX B o et io -SFX B o etque io -SFX B o etne io -SFX B o etve io -SFX B o emus io -SFX B o emusque io -SFX B o emusne io -SFX B o emusve io -SFX B o etis io -SFX B o etisque io -SFX B o etisne io -SFX B o etisve io -SFX B o ent io -SFX B o entque io -SFX B o entne io -SFX B o entve io -SFX B o am io # actif infectum personnel subjonctif prsent -SFX B o amque io -SFX B o amne io -SFX B o amve io -SFX B o as io -SFX B o asque io -SFX B o asne io -SFX B o asve io -SFX B o at io -SFX B o atque io -SFX B o atne io -SFX B o atve io -SFX B o amus io -SFX B o amusque io -SFX B o amusne io -SFX B o amusve io -SFX B o atis io -SFX B o atisque io -SFX B o atisne io -SFX B o atisve io -SFX B o ant io -SFX B o antque io -SFX B o antne io -SFX B o antve io -SFX B io erem io # actif infectum personnel subjonctif imparfait -SFX B io eremque io -SFX B io eremne io -SFX B io eremve io -SFX B io eres io -SFX B io eresque io -SFX B io eresne io -SFX B io eresve io -SFX B io eret io -SFX B io eretque io -SFX B io eretne io -SFX B io eretve io -SFX B io eremus io -SFX B io eremusque io -SFX B io eremusne io -SFX B io eremusve io -SFX B io eretis io -SFX B io eretisque io -SFX B io eretisne io -SFX B io eretisve io -SFX B io erent io -SFX B io erentque io -SFX B io erentne io -SFX B io erentve io -SFX B io e io # actif infectum personnel impratif prsent -SFX B io eque io -SFX B io ene io -SFX B io eve io -SFX B io ite io -SFX B io iteque io -SFX B io itene io -SFX B io iteve io -SFX B io ere io # actif infectum impersonnel infinitif prsent -SFX B io ereque io -SFX B io erene io -SFX B io ereve io -SFX B o endum io # grondif -SFX B o endumque io -SFX B o endumne io -SFX B o endumve io -SFX B o endi io -SFX B o endique io -SFX B o endine io -SFX B o endive io -SFX B o endo io -SFX B o endoque io -SFX B o endone io -SFX B o endove io -SFX B o ens io # participe prsent actif -SFX B o ensque io -SFX B o ensne io -SFX B o ensve io -SFX B o entem io -SFX B o entemque io -SFX B o entemne io -SFX B o entemve io -SFX B o entis io -SFX B o entisque io -SFX B o entisne io -SFX B o entisve io -SFX B o enti io -SFX B o entique io -SFX B o entine io -SFX B o entive io -SFX B o ente io -SFX B o enteque io -SFX B o entene io -SFX B o enteve io -SFX B o entes io -SFX B o entesque io -SFX B o entesne io -SFX B o entesve io -SFX B o entium io -SFX B o entiumque io -SFX B o entiumne io -SFX B o entiumve io -SFX B o entibus io -SFX B o entibusque io -SFX B o entibusne io -SFX B o entibusve io -SFX B o entia io -SFX B o entiaque io -SFX B o entiane io -SFX B o entiave io -SFX B 0 r io # passif infectum personnel indicatif prsent -SFX B 0 rque io -SFX B 0 rne io -SFX B 0 rve io -SFX B io eris io -SFX B io erisque io -SFX B io erisne io -SFX B io erisve io -SFX B io itur io -SFX B io iturque io -SFX B io iturne io -SFX B io iturve io -SFX B io imur io -SFX B io imurque io -SFX B io imurne io -SFX B io imurve io -SFX B io imini io -SFX B io iminique io -SFX B io iminine io -SFX B io iminive io -SFX B io iuntur io -SFX B io iunturque io -SFX B io iunturne io -SFX B io iunturve io -SFX B o ebar io # passif infectum personnel indicatif imparfait -SFX B o ebarque io -SFX B o ebarne io -SFX B o ebarve io -SFX B o ebaris io -SFX B o ebarisque io -SFX B o ebarisne io -SFX B o ebarisve io -SFX B o ebatur io -SFX B o ebaturque io -SFX B o ebaturne io -SFX B o ebaturve io -SFX B o ebamur io -SFX B o ebamurque io -SFX B o ebamurne io -SFX B o ebamurve io -SFX B o ebamini io -SFX B o ebaminique io -SFX B o ebaminine io -SFX B o ebaminive io -SFX B o ebantur io -SFX B o ebanturque io -SFX B o ebanturne io -SFX B o ebanturve io -SFX B o ar io # passif infectum personnel indicatif futur -SFX B o arque io -SFX B o arne io -SFX B o arve io -SFX B o eris io -SFX B o erisque io -SFX B o erisne io -SFX B o erisve io -SFX B o etur io -SFX B o eturque io -SFX B o eturne io -SFX B o eturve io -SFX B o emur io -SFX B o emurque io -SFX B o emurne io -SFX B o emurve io -SFX B o emini io -SFX B o eminique io -SFX B o eminine io -SFX B o eminive io -SFX B o entur io -SFX B o enturque io -SFX B o enturne io -SFX B o enturve io -SFX B o ar io # passif infectum personnel subjonctif prsent -SFX B o arque io -SFX B o arne io -SFX B o arve io -SFX B o aris io -SFX B o arisque io -SFX B o arisne io -SFX B o arisve io -SFX B o atur io -SFX B o aturque io -SFX B o aturne io -SFX B o aturve io -SFX B o amur io -SFX B o amurque io -SFX B o amurne io -SFX B o amurve io -SFX B o amini io -SFX B o aminique io -SFX B o aminine io -SFX B o aminive io -SFX B o antur io -SFX B o anturque io -SFX B o anturne io -SFX B o anturve io -SFX B io erer io # passif infectum personnel subjonctif imparfait -SFX B io ererque io -SFX B io ererne io -SFX B io ererve io -SFX B io ereris io -SFX B io ererisque io -SFX B io ererisne io -SFX B io ererisve io -SFX B io eretur io -SFX B io ereturque io -SFX B io ereturne io -SFX B io ereturve io -SFX B io eremur io -SFX B io eremurque io -SFX B io eremurne io -SFX B io eremurve io -SFX B io eremini io -SFX B io ereminique io -SFX B io ereminine io -SFX B io ereminive io -SFX B io erentur io -SFX B io erenturque io -SFX B io erenturne io -SFX B io erenturve io -SFX B io ere io # imperatif passif -SFX B io ereque io -SFX B io erene io -SFX B io ereve io -SFX B io imini io -SFX B io iminique io -SFX B io iminine io -SFX B io iminive io -SFX B io i io # passif infectum impersonnel infinitif -SFX B io ique io -SFX B io ine io -SFX B io ive io -SFX B o endus io # adjectif verbal -SFX B o endusque io -SFX B o endusne io -SFX B o endusve io -SFX B o ende io -SFX B o endeque io -SFX B o endene io -SFX B o endeve io -SFX B o endum io -SFX B o endumque io -SFX B o endumne io -SFX B o endumve io -SFX B o endi io -SFX B o endique io -SFX B o endine io -SFX B o endive io -SFX B o endo io -SFX B o endoque io -SFX B o endone io -SFX B o endove io -SFX B o enda io -SFX B o endaque io -SFX B o endane io -SFX B o endave io -SFX B o endam io -SFX B o endamque io -SFX B o endamne io -SFX B o endamve io -SFX B o endae io -SFX B o endaeque io -SFX B o endaene io -SFX B o endaeve io -SFX B o endos io -SFX B o endosque io -SFX B o endosne io -SFX B o endosve io -SFX B o endorum io -SFX B o endorumque io -SFX B o endorumne io -SFX B o endorumve io -SFX B o endis io -SFX B o endisque io -SFX B o endisne io -SFX B o endisve io -SFX B o endas io -SFX B o endasque io -SFX B o endasne io -SFX B o endasve io -SFX B o endarum io -SFX B o endarumque io -SFX B o endarumne io -SFX B o endarumve io -SFX B ior ior ior -SFX B ior eris ior # infectum personnel indicatif prsent -SFX B ior erisque ior -SFX B ior erisne ior -SFX B ior erisve ior -SFX B ior itur ior -SFX B ior iturque ior -SFX B ior iturne ior -SFX B ior iturve ior -SFX B ior imur ior -SFX B ior imurque ior -SFX B ior imurne ior -SFX B ior imurve ior -SFX B ior imini ior -SFX B ior iminique ior -SFX B ior iminine ior -SFX B ior iminive ior -SFX B ior iuntur ior -SFX B ior iunturque ior -SFX B ior iunturne ior -SFX B ior iunturve ior -SFX B ior iebar ior # infectum personnel indicatif imparfait -SFX B ior iebarque ior -SFX B ior iebarne ior -SFX B ior iebarve ior -SFX B ior iebaris ior -SFX B ior iebarisque ior -SFX B ior iebarisne ior -SFX B ior iebarisve ior -SFX B ior iebatur ior -SFX B ior iebaturque ior -SFX B ior iebaturne ior -SFX B ior iebaturve ior -SFX B ior iebamur ior -SFX B ior iebamurque ior -SFX B ior iebamurne ior -SFX B ior iebamurve ior -SFX B ior iebamini ior -SFX B ior iebaminique ior -SFX B ior iebaminine ior -SFX B ior iebaminive ior -SFX B ior iebantur ior -SFX B ior iebanturque ior -SFX B ior iebanturne ior -SFX B ior iebanturve ior -SFX B ior iar ior # infectum personnel indicatif futur -SFX B ior iarque ior -SFX B ior iarne ior -SFX B ior iarve ior -SFX B ior ieris ior -SFX B ior ierisque ior -SFX B ior ierisne ior -SFX B ior ierisve ior -SFX B ior ietur ior -SFX B ior ieturque ior -SFX B ior ieturne ior -SFX B ior ieturve ior -SFX B ior iemur ior -SFX B ior iemurque ior -SFX B ior iemurne ior -SFX B ior iemurve ior -SFX B ior iemini ior -SFX B ior ieminique ior -SFX B ior ieminine ior -SFX B ior ieminive ior -SFX B ior ientur ior -SFX B ior ienturque ior -SFX B ior ienturne ior -SFX B ior ienturve ior -SFX B ior iar ior # infectum personnel subjonctif prsent -SFX B ior iarque ior -SFX B ior iarne ior -SFX B ior iarve ior -SFX B ior iaris ior -SFX B ior iarisque ior -SFX B ior iarisne ior -SFX B ior iarisve ior -SFX B ior iatur ior -SFX B ior iaturque ior -SFX B ior iaturne ior -SFX B ior iaturve ior -SFX B ior iamur ior -SFX B ior iamurque ior -SFX B ior iamurne ior -SFX B ior iamurve ior -SFX B ior iamini ior -SFX B ior iaminique ior -SFX B ior iaminine ior -SFX B ior iaminive ior -SFX B ior iantur ior -SFX B ior ianturque ior -SFX B ior ianturne ior -SFX B ior ianturve ior -SFX B ior erer ior # infectum personnel subjonctif imparfait -SFX B ior ererque ior -SFX B ior ererne ior -SFX B ior ererve ior -SFX B ior eris ior -SFX B ior erisque ior -SFX B ior erisne ior -SFX B ior erisve ior -SFX B ior eremur ior -SFX B ior eremurque ior -SFX B ior eremurne ior -SFX B ior eremurve ior -SFX B ior eremini ior -SFX B ior ereminique ior -SFX B ior ereminine ior -SFX B ior ereminive ior -SFX B ior erentur ior -SFX B ior erenturque ior -SFX B ior erenturne ior -SFX B ior erenturve ior -SFX B ior ere ior # infectum personnel impratif prsent -SFX B ior ereque ior -SFX B ior erene ior -SFX B ior ereve ior -SFX B ior i ior # infectum impersonnel infinitif prsent -SFX B ior ique ior -SFX B ior ine ior -SFX B ior ive ior -SFX B or endum ior # grondif -SFX B or endumque ior -SFX B or endumne ior -SFX B or endumve ior -SFX B or endi ior -SFX B or endique ior -SFX B or endine ior -SFX B or endive ior -SFX B or endo ior -SFX B or endoque ior -SFX B or endone ior -SFX B or endove ior -SFX B or ens ior # participe prsent actif -SFX B or ensque ior -SFX B or ensne ior -SFX B or ensve ior -SFX B or entem ior -SFX B or entemque ior -SFX B or entemne ior -SFX B or entemve ior -SFX B or entis ior -SFX B or entisque ior -SFX B or entisne ior -SFX B or entisve ior -SFX B or enti ior -SFX B or entique ior -SFX B or entine ior -SFX B or entive ior -SFX B or ente ior -SFX B or enteque ior -SFX B or entene ior -SFX B or enteve ior -SFX B or entes ior -SFX B or entesque ior -SFX B or entesne ior -SFX B or entesve ior -SFX B or entium ior -SFX B or entiumque ior -SFX B or entiumne ior -SFX B or entiumve ior -SFX B or entibus ior -SFX B or entibusque ior -SFX B or entibusne ior -SFX B or entibusve ior -SFX B or entia ior -SFX B or entiaque ior -SFX B or entiane ior -SFX B or entiave ior -SFX B or endus ior # adjectif verbal -SFX B or endusque ior -SFX B or endusne ior -SFX B or endusve ior -SFX B or ende ior -SFX B or endeque ior -SFX B or endene ior -SFX B or endeve ior -SFX B or endum ior -SFX B or endumque ior -SFX B or endumne ior -SFX B or endumve ior -SFX B or endi ior -SFX B or endique ior -SFX B or endine ior -SFX B or endive ior -SFX B or endo ior -SFX B or endoque ior -SFX B or endone ior -SFX B or endove ior -SFX B or enda ior -SFX B or endaque ior -SFX B or endane ior -SFX B or endave ior -SFX B or endam ior -SFX B or endamque ior -SFX B or endamne ior -SFX B or endamve ior -SFX B or endae ior -SFX B or endaeque ior -SFX B or endaene ior -SFX B or endaeve ior -SFX B or endos ior -SFX B or endosque ior -SFX B or endosne ior -SFX B or endosve ior -SFX B or endorum ior -SFX B or endorumque ior -SFX B or endorumne ior -SFX B or endorumve ior -SFX B or endis ior -SFX B or endisque ior -SFX B or endisne ior -SFX B or endisve ior -SFX B or endas ior -SFX B or endasque ior -SFX B or endasne ior -SFX B or endasve ior -SFX B or endarum ior -SFX B or endarumque ior -SFX B or endarumne ior -SFX B or endarumve ior -SFX B o o [^ei]o -SFX B o is [^ei]o # actif infectum personnel indicatif prsent -SFX B o isque [^ei]o -SFX B o isne [^ei]o -SFX B o isve [^ei]o -SFX B o it [^ei]o -SFX B o itque [^ei]o -SFX B o itne [^ei]o -SFX B o itve [^ei]o -SFX B o imus [^ei]o -SFX B o imusque [^ei]o -SFX B o imusne [^ei]o -SFX B o imusve [^ei]o -SFX B o itis [^ei]o -SFX B o itisque [^ei]o -SFX B o itisne [^ei]o -SFX B o itisve [^ei]o -SFX B o unt [^ei]o -SFX B o untque [^ei]o -SFX B o untne [^ei]o -SFX B o untve [^ei]o -SFX B o ebam [^ei]o # actif infectum personnel indicatif imparfait -SFX B o ebamque [^ei]o -SFX B o ebamne [^ei]o -SFX B o ebamve [^ei]o -SFX B o ebas [^ei]o -SFX B o ebasque [^ei]o -SFX B o ebasne [^ei]o -SFX B o ebasve [^ei]o -SFX B o ebat [^ei]o -SFX B o ebatque [^ei]o -SFX B o ebatne [^ei]o -SFX B o ebatve [^ei]o -SFX B o ebamus [^ei]o -SFX B o ebamusque [^ei]o -SFX B o ebamusne [^ei]o -SFX B o ebamusve [^ei]o -SFX B o ebatis [^ei]o -SFX B o ebatisque [^ei]o -SFX B o ebatisne [^ei]o -SFX B o ebatisve [^ei]o -SFX B o ebant [^ei]o -SFX B o ebantque [^ei]o -SFX B o ebantne [^ei]o -SFX B o ebantve [^ei]o -SFX B o am [^ei]o # actif infectum personnel indicatif futur -SFX B o amque [^ei]o -SFX B o amne [^ei]o -SFX B o amve [^ei]o -SFX B o es [^ei]o -SFX B o esque [^ei]o -SFX B o esne [^ei]o -SFX B o esve [^ei]o -SFX B o et [^ei]o -SFX B o etque [^ei]o -SFX B o etne [^ei]o -SFX B o etve [^ei]o -SFX B o emus [^ei]o -SFX B o emusque [^ei]o -SFX B o emusne [^ei]o -SFX B o emusve [^ei]o -SFX B o etis [^ei]o -SFX B o etisque [^ei]o -SFX B o etisne [^ei]o -SFX B o etisve [^ei]o -SFX B o ent [^ei]o -SFX B o entque [^ei]o -SFX B o entne [^ei]o -SFX B o entve [^ei]o -SFX B o am [^ei]o # actif infectum personnel subjonctif prsent -SFX B o amque [^ei]o -SFX B o amne [^ei]o -SFX B o amve [^ei]o -SFX B o as [^ei]o -SFX B o asque [^ei]o -SFX B o asne [^ei]o -SFX B o asve [^ei]o -SFX B o at [^ei]o -SFX B o atque [^ei]o -SFX B o atne [^ei]o -SFX B o atve [^ei]o -SFX B o amus [^ei]o -SFX B o amusque [^ei]o -SFX B o amusne [^ei]o -SFX B o amusve [^ei]o -SFX B o atis [^ei]o -SFX B o atisque [^ei]o -SFX B o atisne [^ei]o -SFX B o atisve [^ei]o -SFX B o ant [^ei]o -SFX B o antque [^ei]o -SFX B o antne [^ei]o -SFX B o antve [^ei]o -SFX B o erem [^ei]o # actif infectum personnel subjonctif imparfait -SFX B o eremque [^ei]o -SFX B o eremne [^ei]o -SFX B o eremve [^ei]o -SFX B o eres [^ei]o -SFX B o eresque [^ei]o -SFX B o eresne [^ei]o -SFX B o eresve [^ei]o -SFX B o eret [^ei]o -SFX B o eretque [^ei]o -SFX B o eretne [^ei]o -SFX B o eretve [^ei]o -SFX B o eremus [^ei]o -SFX B o eremusque [^ei]o -SFX B o eremusne [^ei]o -SFX B o eremusve [^ei]o -SFX B o eretis [^ei]o -SFX B o eretisque [^ei]o -SFX B o eretisne [^ei]o -SFX B o eretisve [^ei]o -SFX B o erent [^ei]o -SFX B o erentque [^ei]o -SFX B o erentne [^ei]o -SFX B o erentve [^ei]o -SFX B o e [^ei]o # actif infectum personnel impratif prsent -SFX B o eque [^ei]o -SFX B o ene [^ei]o -SFX B o eve [^ei]o -SFX B o ite [^ei]o -SFX B o iteque [^ei]o -SFX B o itene [^ei]o -SFX B o iteve [^ei]o -SFX B o ere [^ei]o # actif infectum impersonnel infinitif prsent -SFX B o ereque [^ei]o -SFX B o erene [^ei]o -SFX B o ereve [^ei]o -SFX B o endum [^ei]o # grondif -SFX B o endumque [^ei]o -SFX B o endumne [^ei]o -SFX B o endumve [^ei]o -SFX B o endi [^ei]o -SFX B o endique [^ei]o -SFX B o endine [^ei]o -SFX B o endive [^ei]o -SFX B o endo [^ei]o -SFX B o endoque [^ei]o -SFX B o endone [^ei]o -SFX B o endove [^ei]o -SFX B o ens [^ei]o # participe prsent actif -SFX B o ensque [^ei]o -SFX B o ensne [^ei]o -SFX B o ensve [^ei]o -SFX B o entem [^ei]o -SFX B o entemque [^ei]o -SFX B o entemne [^ei]o -SFX B o entemve [^ei]o -SFX B o entis [^ei]o -SFX B o entisque [^ei]o -SFX B o entisne [^ei]o -SFX B o entisve [^ei]o -SFX B o enti [^ei]o -SFX B o entique [^ei]o -SFX B o entine [^ei]o -SFX B o entive [^ei]o -SFX B o ente [^ei]o -SFX B o enteque [^ei]o -SFX B o entene [^ei]o -SFX B o enteve [^ei]o -SFX B o entes [^ei]o -SFX B o entesque [^ei]o -SFX B o entesne [^ei]o -SFX B o entesve [^ei]o -SFX B o entium [^ei]o -SFX B o entiumque [^ei]o -SFX B o entiumne [^ei]o -SFX B o entiumve [^ei]o -SFX B o entibus [^ei]o -SFX B o entibusque [^ei]o -SFX B o entibusne [^ei]o -SFX B o entibusve [^ei]o -SFX B o entia [^ei]o -SFX B o entiaque [^ei]o -SFX B o entiane [^ei]o -SFX B o entiave [^ei]o -SFX B 0 r [^ei]o # passif infectum personnel indicatif prsent -SFX B 0 rque [^ei]o -SFX B 0 rne [^ei]o -SFX B 0 rve [^ei]o -SFX B o eris [^ei]o -SFX B o erisque [^ei]o -SFX B o erisne [^ei]o -SFX B o erisve [^ei]o -SFX B o itur [^ei]o -SFX B o iturque [^ei]o -SFX B o iturne [^ei]o -SFX B o iturve [^ei]o -SFX B o imur [^ei]o -SFX B o imurque [^ei]o -SFX B o imurne [^ei]o -SFX B o imurve [^ei]o -SFX B o imini [^ei]o -SFX B o iminique [^ei]o -SFX B o iminine [^ei]o -SFX B o iminive [^ei]o -SFX B o untur [^ei]o -SFX B o unturque [^ei]o -SFX B o unturne [^ei]o -SFX B o unturve [^ei]o -SFX B o ebar [^ei]o # passif infectum personnel indicatif imparfait -SFX B o ebarque [^ei]o -SFX B o ebarne [^ei]o -SFX B o ebarve [^ei]o -SFX B o ebaris [^ei]o -SFX B o ebarisque [^ei]o -SFX B o ebarisne [^ei]o -SFX B o ebarisve [^ei]o -SFX B o ebatur [^ei]o -SFX B o ebaturque [^ei]o -SFX B o ebaturne [^ei]o -SFX B o ebaturve [^ei]o -SFX B o ebamur [^ei]o -SFX B o ebamurque [^ei]o -SFX B o ebamurne [^ei]o -SFX B o ebamurve [^ei]o -SFX B o ebamini [^ei]o -SFX B o ebaminique [^ei]o -SFX B o ebaminine [^ei]o -SFX B o ebaminive [^ei]o -SFX B o ebantur [^ei]o -SFX B o ebanturque [^ei]o -SFX B o ebanturne [^ei]o -SFX B o ebanturve [^ei]o -SFX B o ar [^ei]o # passif infectum personnel indicatif futur -SFX B o arque [^ei]o -SFX B o arne [^ei]o -SFX B o arve [^ei]o -SFX B o eris [^ei]o -SFX B o erisque [^ei]o -SFX B o erisne [^ei]o -SFX B o erisve [^ei]o -SFX B o etur [^ei]o -SFX B o eturque [^ei]o -SFX B o eturne [^ei]o -SFX B o eturve [^ei]o -SFX B o emur [^ei]o -SFX B o emurque [^ei]o -SFX B o emurne [^ei]o -SFX B o emurve [^ei]o -SFX B o emini [^ei]o -SFX B o eminique [^ei]o -SFX B o eminine [^ei]o -SFX B o eminive [^ei]o -SFX B o entur [^ei]o -SFX B o enturque [^ei]o -SFX B o enturne [^ei]o -SFX B o enturve [^ei]o -SFX B o ar [^ei]o # passif infectum personnel subjonctif prsent -SFX B o arque [^ei]o -SFX B o arne [^ei]o -SFX B o arve [^ei]o -SFX B o aris [^ei]o -SFX B o arisque [^ei]o -SFX B o arisne [^ei]o -SFX B o arisve [^ei]o -SFX B o atur [^ei]o -SFX B o aturque [^ei]o -SFX B o aturne [^ei]o -SFX B o aturve [^ei]o -SFX B o amur [^ei]o -SFX B o amurque [^ei]o -SFX B o amurne [^ei]o -SFX B o amurve [^ei]o -SFX B o amini [^ei]o -SFX B o aminique [^ei]o -SFX B o aminine [^ei]o -SFX B o aminive [^ei]o -SFX B o antur [^ei]o -SFX B o anturque [^ei]o -SFX B o anturne [^ei]o -SFX B o anturve [^ei]o -SFX B o erer [^ei]o # passif infectum personnel subjonctif imparfait -SFX B o ererque [^ei]o -SFX B o ererne [^ei]o -SFX B o ererve [^ei]o -SFX B o ereris [^ei]o -SFX B o ererisque [^ei]o -SFX B o ererisne [^ei]o -SFX B o ererisve [^ei]o -SFX B o eretur [^ei]o -SFX B o ereturque [^ei]o -SFX B o ereturne [^ei]o -SFX B o ereturve [^ei]o -SFX B o eremur [^ei]o -SFX B o eremurque [^ei]o -SFX B o eremurne [^ei]o -SFX B o eremurve [^ei]o -SFX B o eremini [^ei]o -SFX B o ereminique [^ei]o -SFX B o ereminine [^ei]o -SFX B o ereminive [^ei]o -SFX B o erentur [^ei]o -SFX B o erenturque [^ei]o -SFX B o erenturne [^ei]o -SFX B o erenturve [^ei]o -SFX B o ere [^ei]o # imperatif passif -SFX B o ereque [^ei]o -SFX B o erene [^ei]o -SFX B o ereve [^ei]o -SFX B o imini [^ei]o -SFX B o iminique [^ei]o -SFX B o iminine [^ei]o -SFX B o iminive [^ei]o -SFX B o i [^ei]o # passif infectum impersonnel infinitif -SFX B o ique [^ei]o -SFX B o ine [^ei]o -SFX B o ive [^ei]o -SFX B o endus [^ei]o # adjectif verbal -SFX B o endusque [^ei]o -SFX B o endusne [^ei]o -SFX B o endusve [^ei]o -SFX B o ende [^ei]o -SFX B o endeque [^ei]o -SFX B o endene [^ei]o -SFX B o endeve [^ei]o -SFX B o endum [^ei]o -SFX B o endumque [^ei]o -SFX B o endumne [^ei]o -SFX B o endumve [^ei]o -SFX B o endi [^ei]o -SFX B o endique [^ei]o -SFX B o endine [^ei]o -SFX B o endive [^ei]o -SFX B o endo [^ei]o -SFX B o endoque [^ei]o -SFX B o endone [^ei]o -SFX B o endove [^ei]o -SFX B o enda [^ei]o -SFX B o endaque [^ei]o -SFX B o endane [^ei]o -SFX B o endave [^ei]o -SFX B o endam [^ei]o -SFX B o endamque [^ei]o -SFX B o endamne [^ei]o -SFX B o endamve [^ei]o -SFX B o endae [^ei]o -SFX B o endaeque [^ei]o -SFX B o endaene [^ei]o -SFX B o endaeve [^ei]o -SFX B o endos [^ei]o -SFX B o endosque [^ei]o -SFX B o endosne [^ei]o -SFX B o endosve [^ei]o -SFX B o endorum [^ei]o -SFX B o endorumque [^ei]o -SFX B o endorumne [^ei]o -SFX B o endorumve [^ei]o -SFX B o endis [^ei]o -SFX B o endisque [^ei]o -SFX B o endisne [^ei]o -SFX B o endisve [^ei]o -SFX B o endas [^ei]o -SFX B o endasque [^ei]o -SFX B o endasne [^ei]o -SFX B o endasve [^ei]o -SFX B o endarum [^ei]o -SFX B o endarumque [^ei]o -SFX B o endarumne [^ei]o -SFX B o endarumve [^ei]o -SFX B or or [^ei]or -SFX B or eris [^ei]or # infectum personnel indicatif prsent -SFX B or erisque [^ei]or -SFX B or erisne [^ei]or -SFX B or erisve [^ei]or -SFX B or itur [^ei]or -SFX B or iturque [^ei]or -SFX B or iturne [^ei]or -SFX B or iturve [^ei]or -SFX B or imur [^ei]or -SFX B or imurque [^ei]or -SFX B or imurne [^ei]or -SFX B or imurve [^ei]or -SFX B or imini [^ei]or -SFX B or iminique [^ei]or -SFX B or iminine [^ei]or -SFX B or iminive [^ei]or -SFX B or untur [^ei]or -SFX B or unturque [^ei]or -SFX B or unturne [^ei]or -SFX B or unturve [^ei]or -SFX B or ebar [^ei]or # infectum personnel indicatif imparfait -SFX B or ebarque [^ei]or -SFX B or ebarne [^ei]or -SFX B or ebarve [^ei]or -SFX B or ebaris [^ei]or -SFX B or ebarisque [^ei]or -SFX B or ebarisne [^ei]or -SFX B or ebarisve [^ei]or -SFX B or ebatur [^ei]or -SFX B or ebaturque [^ei]or -SFX B or ebaturne [^ei]or -SFX B or ebaturve [^ei]or -SFX B or ebamur [^ei]or -SFX B or ebamurque [^ei]or -SFX B or ebamurne [^ei]or -SFX B or ebamurve [^ei]or -SFX B or ebamini [^ei]or -SFX B or ebaminique [^ei]or -SFX B or ebaminine [^ei]or -SFX B or ebaminive [^ei]or -SFX B or ebantur [^ei]or -SFX B or ebanturque [^ei]or -SFX B or ebanturne [^ei]or -SFX B or ebanturve [^ei]or -SFX B or ar [^ei]or # infectum personnel indicatif futur -SFX B or arque [^ei]or -SFX B or arne [^ei]or -SFX B or arve [^ei]or -SFX B or eris [^ei]or -SFX B or erisque [^ei]or -SFX B or erisne [^ei]or -SFX B or erisve [^ei]or -SFX B or etur [^ei]or -SFX B or eturque [^ei]or -SFX B or eturne [^ei]or -SFX B or eturve [^ei]or -SFX B or emur [^ei]or -SFX B or emurque [^ei]or -SFX B or emurne [^ei]or -SFX B or emurve [^ei]or -SFX B or emini [^ei]or -SFX B or eminique [^ei]or -SFX B or eminine [^ei]or -SFX B or eminive [^ei]or -SFX B or entur [^ei]or -SFX B or enturque [^ei]or -SFX B or enturne [^ei]or -SFX B or enturve [^ei]or -SFX B or ar [^ei]or # personnel subjonctif prsent -SFX B or arque [^ei]or -SFX B or arne [^ei]or -SFX B or arve [^ei]or -SFX B or aris [^ei]or -SFX B or arisque [^ei]or -SFX B or arisne [^ei]or -SFX B or arisve [^ei]or -SFX B or atur [^ei]or -SFX B or aturque [^ei]or -SFX B or aturne [^ei]or -SFX B or aturve [^ei]or -SFX B or amur [^ei]or -SFX B or amurque [^ei]or -SFX B or amurne [^ei]or -SFX B or amurve [^ei]or -SFX B or amini [^ei]or -SFX B or aminique [^ei]or -SFX B or aminine [^ei]or -SFX B or aminive [^ei]or -SFX B or antur [^ei]or -SFX B or anturque [^ei]or -SFX B or anturne [^ei]or -SFX B or anturve [^ei]or -SFX B or erer [^ei]or # infectum personnel subjonctif imparfait -SFX B or ererque [^ei]or -SFX B or ererne [^ei]or -SFX B or ererve [^ei]or -SFX B or ereris [^ei]or -SFX B or ererisque [^ei]or -SFX B or ererisne [^ei]or -SFX B or ererisve [^ei]or -SFX B or eretur [^ei]or -SFX B or ereturque [^ei]or -SFX B or ereturne [^ei]or -SFX B or ereturve [^ei]or -SFX B or eremur [^ei]or -SFX B or eremurque [^ei]or -SFX B or eremurne [^ei]or -SFX B or eremurve [^ei]or -SFX B or eremini [^ei]or -SFX B or ereminique [^ei]or -SFX B or ereminine [^ei]or -SFX B or ereminive [^ei]or -SFX B or erentur [^ei]or -SFX B or erenturque [^ei]or -SFX B or erenturne [^ei]or -SFX B or erenturve [^ei]or -SFX B or ere [^ei]or # imperatif -SFX B or ereque [^ei]or -SFX B or erene [^ei]or -SFX B or ereve [^ei]or -SFX B or i [^ei]or # infectum impersonnel infinitif -SFX B or ique [^ei]or -SFX B or ine [^ei]or -SFX B or ive [^ei]or -SFX B or endus [^ei]or # adjectif verbal -SFX B or endusque [^ei]or -SFX B or endusne [^ei]or -SFX B or endusve [^ei]or -SFX B or ende [^ei]or -SFX B or endeque [^ei]or -SFX B or endene [^ei]or -SFX B or endeve [^ei]or -SFX B or endum [^ei]or -SFX B or endumque [^ei]or -SFX B or endumne [^ei]or -SFX B or endumve [^ei]or -SFX B or endi [^ei]or -SFX B or endique [^ei]or -SFX B or endine [^ei]or -SFX B or endive [^ei]or -SFX B or endo [^ei]or -SFX B or endoque [^ei]or -SFX B or endone [^ei]or -SFX B or endove [^ei]or -SFX B or enda [^ei]or -SFX B or endaque [^ei]or -SFX B or endane [^ei]or -SFX B or endave [^ei]or -SFX B or endam [^ei]or -SFX B or endamque [^ei]or -SFX B or endamne [^ei]or -SFX B or endamve [^ei]or -SFX B or endae [^ei]or -SFX B or endaeque [^ei]or -SFX B or endaene [^ei]or -SFX B or endaeve [^ei]or -SFX B or endos [^ei]or -SFX B or endosque [^ei]or -SFX B or endosne [^ei]or -SFX B or endosve [^ei]or -SFX B or endorum [^ei]or -SFX B or endorumque [^ei]or -SFX B or endorumne [^ei]or -SFX B or endorumve [^ei]or -SFX B or endis [^ei]or -SFX B or endisque [^ei]or -SFX B or endisne [^ei]or -SFX B or endisve [^ei]or -SFX B or endas [^ei]or -SFX B or endasque [^ei]or -SFX B or endasne [^ei]or -SFX B or endasve [^ei]or -SFX B or endarum [^ei]or -SFX B or endarumque [^ei]or -SFX B or endarumne [^ei]or -SFX B or endarumve [^ei]or -SFX B or endum [^ei]or # grondif -SFX B or endumque [^ei]or -SFX B or endumne [^ei]or -SFX B or endumve [^ei]or -SFX B or endi [^ei]or -SFX B or endique [^ei]or -SFX B or endine [^ei]or -SFX B or endive [^ei]or -SFX B or endo [^ei]or -SFX B or endoque [^ei]or -SFX B or endone [^ei]or -SFX B or endove [^ei]or -SFX B or ens [^ei]or # participe prsent -SFX B or ensque [^ei]or -SFX B or ensne [^ei]or -SFX B or ensve [^ei]or -SFX B or entem [^ei]or -SFX B or entemque [^ei]or -SFX B or entemne [^ei]or -SFX B or entemve [^ei]or -SFX B or entis [^ei]or -SFX B or entisque [^ei]or -SFX B or entisne [^ei]or -SFX B or entisve [^ei]or -SFX B or enti [^ei]or -SFX B or entique [^ei]or -SFX B or entine [^ei]or -SFX B or entive [^ei]or -SFX B or ente [^ei]or -SFX B or enteque [^ei]or -SFX B or entene [^ei]or -SFX B or enteve [^ei]or -SFX B or entes [^ei]or -SFX B or entesque [^ei]or -SFX B or entesne [^ei]or -SFX B or entesve [^ei]or -SFX B or entium [^ei]or -SFX B or entiumque [^ei]or -SFX B or entiumne [^ei]or -SFX B or entiumve [^ei]or -SFX B or entibus [^ei]or -SFX B or entibusque [^ei]or -SFX B or entibusne [^ei]or -SFX B or entibusve [^ei]or -SFX B or entia [^ei]or -SFX B or entiaque [^ei]or -SFX B or entiane [^ei]or -SFX B or entiave [^ei]or -SFX B or endus [^ei]or # adjectif verbal -SFX B or endusque [^ei]or -SFX B or endusne [^ei]or -SFX B or endusve [^ei]or -SFX B or ende [^ei]or -SFX B or endeque [^ei]or -SFX B or endene [^ei]or -SFX B or endeve [^ei]or -SFX B or endum [^ei]or -SFX B or endumque [^ei]or -SFX B or endumne [^ei]or -SFX B or endumve [^ei]or -SFX B or endi [^ei]or -SFX B or endique [^ei]or -SFX B or endine [^ei]or -SFX B or endive [^ei]or -SFX B or endo [^ei]or -SFX B or endoque [^ei]or -SFX B or endone [^ei]or -SFX B or endove [^ei]or -SFX B or enda [^ei]or -SFX B or endaque [^ei]or -SFX B or endane [^ei]or -SFX B or endave [^ei]or -SFX B or endam [^ei]or -SFX B or endamque [^ei]or -SFX B or endamne [^ei]or -SFX B or endamve [^ei]or -SFX B or endae [^ei]or -SFX B or endaeque [^ei]or -SFX B or endaene [^ei]or -SFX B or endaeve [^ei]or -SFX B or endos [^ei]or -SFX B or endosque [^ei]or -SFX B or endosne [^ei]or -SFX B or endosve [^ei]or -SFX B or endorum [^ei]or -SFX B or endorumque [^ei]or -SFX B or endorumne [^ei]or -SFX B or endorumve [^ei]or -SFX B or endis [^ei]or -SFX B or endisque [^ei]or -SFX B or endisne [^ei]or -SFX B or endisve [^ei]or -SFX B or endas [^ei]or -SFX B or endasque [^ei]or -SFX B or endasne [^ei]or -SFX B or endasve [^ei]or -SFX B or endarum [^ei]or -SFX B or endarumque [^ei]or -SFX B or endarumne [^ei]or -SFX B or endarumve [^ei]or -SFX C Y 630 -SFX C o o o -SFX C o s o # actif infectum personnel indicatif prsent -SFX C o sque o -SFX C o sne o -SFX C o sve o -SFX C o t o -SFX C o tque o -SFX C o tne o -SFX C o tve o -SFX C o mus o -SFX C o musque o -SFX C o musne o -SFX C o musve o -SFX C o tis o -SFX C o tisque o -SFX C o tisne o -SFX C o tisve o -SFX C o unt o -SFX C o untque o -SFX C o untne o -SFX C o untve o -SFX C o ebam o # actif infectum personnel indicatif imparfait -SFX C o ebamque o -SFX C o ebamne o -SFX C o ebamve o -SFX C o ebas o -SFX C o ebasque o -SFX C o ebasne o -SFX C o ebasve o -SFX C o ebat o -SFX C o ebatque o -SFX C o ebatne o -SFX C o ebatve o -SFX C o ebamus o -SFX C o ebamusque o -SFX C o ebamusne o -SFX C o ebamusve o -SFX C o ebatis o -SFX C o ebatisque o -SFX C o ebatisne o -SFX C o ebatisve o -SFX C o ebant o -SFX C o ebantque o -SFX C o ebantne o -SFX C o ebantve o -SFX C o am o # actif infectum personnel indicatif futur -SFX C o amque o -SFX C o amne o -SFX C o amve o -SFX C o es o -SFX C o esque o -SFX C o esne o -SFX C o esve o -SFX C o et o -SFX C o etque o -SFX C o etne o -SFX C o etve o -SFX C o emus o -SFX C o emusque o -SFX C o emusne o -SFX C o emusve o -SFX C o etis o -SFX C o etisque o -SFX C o etisne o -SFX C o etisve o -SFX C o ent o -SFX C o entque o -SFX C o entne o -SFX C o entve o -SFX C o am o # actif infectum personnel subjonctif prsent -SFX C o amque o -SFX C o amne o -SFX C o amve o -SFX C o as o -SFX C o asque o -SFX C o asne o -SFX C o asve o -SFX C o at o -SFX C o atque o -SFX C o atne o -SFX C o atve o -SFX C o amus o -SFX C o amusque o -SFX C o amusne o -SFX C o amusve o -SFX C o atis o -SFX C o atisque o -SFX C o atisne o -SFX C o atisve o -SFX C o ant o -SFX C o antque o -SFX C o antne o -SFX C o antve o -SFX C o rem o # actif infectum personnel subjonctif imparfait -SFX C o remque o -SFX C o remne o -SFX C o remve o -SFX C o res o -SFX C o resque o -SFX C o resne o -SFX C o resve o -SFX C o ret o -SFX C o retque o -SFX C o retne o -SFX C o retve o -SFX C o remus o -SFX C o remusque o -SFX C o remusne o -SFX C o remusve o -SFX C o retis o -SFX C o retisque o -SFX C o retisne o -SFX C o retisve o -SFX C o rent o -SFX C o rentque o -SFX C o rentne o -SFX C o rentve o -SFX C o ire o # actif infectum impersonnel infinitif prsent -SFX C o ireque o -SFX C o irene o -SFX C o ireve o -SFX C o endum o # grondif -SFX C o endumque o -SFX C o endumne o -SFX C o endumve o -SFX C o endi o -SFX C o endique o -SFX C o endine o -SFX C o endive o -SFX C o endo o -SFX C o endoque o -SFX C o endone o -SFX C o endove o -SFX C o ens o # participe prsent actif -SFX C o ensque o -SFX C o ensne o -SFX C o ensve o -SFX C o entem o -SFX C o entemque o -SFX C o entemne o -SFX C o entemve o -SFX C o entis o -SFX C o entisque o -SFX C o entisne o -SFX C o entisve o -SFX C o enti o -SFX C o entique o -SFX C o entine o -SFX C o entive o -SFX C o ente o -SFX C o enteque o -SFX C o entene o -SFX C o enteve o -SFX C o entes o -SFX C o entesque o -SFX C o entesne o -SFX C o entesve o -SFX C o entium o -SFX C o entiumque o -SFX C o entiumne o -SFX C o entiumve o -SFX C o entibus o -SFX C o entibusque o -SFX C o entibusne o -SFX C o entibusve o -SFX C o entia o -SFX C o entiaque o -SFX C o entiane o -SFX C o entiave o -SFX C 0 r o # passif infectum personnel indicatif prsent -SFX C 0 rque o -SFX C 0 rne o -SFX C 0 rve o -SFX C o ris o -SFX C o risque o -SFX C o risne o -SFX C o risve o -SFX C o tur o -SFX C o turque o -SFX C o turne o -SFX C o turve o -SFX C o mur o -SFX C o murque o -SFX C o murne o -SFX C o murve o -SFX C o mini o -SFX C o minique o -SFX C o minine o -SFX C o minive o -SFX C o untur o -SFX C o unturque o -SFX C o unturne o -SFX C o unturve o -SFX C o ebar o # passif infectum personnel indicatif imparfait -SFX C o ebarque o -SFX C o ebarne o -SFX C o ebarve o -SFX C o ebaris o -SFX C o ebarisque o -SFX C o ebarisne o -SFX C o ebarisve o -SFX C o ebatur o -SFX C o ebaturque o -SFX C o ebaturne o -SFX C o ebaturve o -SFX C o ebamur o -SFX C o ebamurque o -SFX C o ebamurne o -SFX C o ebamurve o -SFX C o ebamini o -SFX C o ebaminique o -SFX C o ebaminine o -SFX C o ebaminive o -SFX C o ebantur o -SFX C o ebanturque o -SFX C o ebanturne o -SFX C o ebanturve o -SFX C o ar o # passif infectum personnel indicatif futur -SFX C o arque o -SFX C o arne o -SFX C o arve o -SFX C o eris o -SFX C o erisque o -SFX C o erisne o -SFX C o erisve o -SFX C o etur o -SFX C o eturque o -SFX C o eturne o -SFX C o eturve o -SFX C o emur o -SFX C o emurque o -SFX C o emurne o -SFX C o emurve o -SFX C o emini o -SFX C o eminique o -SFX C o eminine o -SFX C o eminive o -SFX C o entur o -SFX C o enturque o -SFX C o enturne o -SFX C o enturve o -SFX C o ar o # passif infectum personnel subjonctif prsent -SFX C o arque o -SFX C o arne o -SFX C o arve o -SFX C o aris o -SFX C o arisque o -SFX C o arisne o -SFX C o arisve o -SFX C o atur o -SFX C o aturque o -SFX C o aturne o -SFX C o aturve o -SFX C o amur o -SFX C o amurque o -SFX C o amurne o -SFX C o amurve o -SFX C o amini o -SFX C o aminique o -SFX C o aminine o -SFX C o aminive o -SFX C o antur o -SFX C o anturque o -SFX C o anturne o -SFX C o anturve o -SFX C o rer o # passif infectum personnel subjonctif imparfait -SFX C o rerque o -SFX C o rerne o -SFX C o rerve o -SFX C o reris o -SFX C o rerisque o -SFX C o rerisne o -SFX C o rerisve o -SFX C o retur o -SFX C o returque o -SFX C o returne o -SFX C o returve o -SFX C o remur o -SFX C o remurque o -SFX C o remurne o -SFX C o remurve o -SFX C o remini o -SFX C o reminique o -SFX C o reminine o -SFX C o reminive o -SFX C o rentur o -SFX C o renturque o -SFX C o renturne o -SFX C o renturve o -SFX C o re o # passif infectum impratif -SFX C o reque o -SFX C o rene o -SFX C o reve o -SFX C o mini o -SFX C o minique o -SFX C o minine o -SFX C o minive o -SFX C o ri o # passif infectum impersonnel infinitif -SFX C o rique o -SFX C o rine o -SFX C o rive o -SFX C o endus o # adjectif verbal -SFX C o endusque o -SFX C o endusne o -SFX C o endusve o -SFX C o ende o -SFX C o endeque o -SFX C o endene o -SFX C o endeve o -SFX C o endum o -SFX C o endumque o -SFX C o endumne o -SFX C o endumve o -SFX C o endi o -SFX C o endique o -SFX C o endine o -SFX C o endive o -SFX C o endo o -SFX C o endoque o -SFX C o endone o -SFX C o endove o -SFX C o enda o -SFX C o endaque o -SFX C o endane o -SFX C o endave o -SFX C o endam o -SFX C o endamque o -SFX C o endamne o -SFX C o endamve o -SFX C o endae o -SFX C o endaeque o -SFX C o endaene o -SFX C o endaeve o -SFX C o endos o -SFX C o endosque o -SFX C o endosne o -SFX C o endosve o -SFX C o endorum o -SFX C o endorumque o -SFX C o endorumne o -SFX C o endorumve o -SFX C o endis o -SFX C o endisque o -SFX C o endisne o -SFX C o endisve o -SFX C o endas o -SFX C o endasque o -SFX C o endasne o -SFX C o endasve o -SFX C o endarum o -SFX C o endarumque o -SFX C o endarumne o -SFX C o endarumve o -SFX C or or or -SFX C or ris or # passif infectum personnel indicatif prsent -SFX C or risque or -SFX C or risne or -SFX C or risve or -SFX C or tur or -SFX C or turque or -SFX C or turne or -SFX C or turve or -SFX C or mur or -SFX C or murque or -SFX C or murne or -SFX C or murve or -SFX C or mini or -SFX C or minique or -SFX C or minine or -SFX C or minive or -SFX C or untur or -SFX C or unturque or -SFX C or unturne or -SFX C or unturve or -SFX C or ebar or # passif infectum personnel indicatif imparfait -SFX C or ebarque or -SFX C or ebarne or -SFX C or ebarve or -SFX C or ebaris or -SFX C or ebarisque or -SFX C or ebarisne or -SFX C or ebarisve or -SFX C or ebatur or -SFX C or ebaturque or -SFX C or ebaturne or -SFX C or ebaturve or -SFX C or ebamur or -SFX C or ebamurque or -SFX C or ebamurne or -SFX C or ebamurve or -SFX C or ebamini or -SFX C or ebaminique or -SFX C or ebaminine or -SFX C or ebaminive or -SFX C or ebantur or -SFX C or ebanturque or -SFX C or ebanturne or -SFX C or ebanturve or -SFX C or ar or # passif infectum personnel indicatif futur -SFX C or arque or -SFX C or arne or -SFX C or arve or -SFX C or eris or -SFX C or erisque or -SFX C or erisne or -SFX C or erisve or -SFX C or etur or -SFX C or eturque or -SFX C or eturne or -SFX C or eturve or -SFX C or emur or -SFX C or emurque or -SFX C or emurne or -SFX C or emurve or -SFX C or emini or -SFX C or eminique or -SFX C or eminine or -SFX C or eminive or -SFX C or entur or -SFX C or enturque or -SFX C or enturne or -SFX C or enturve or -SFX C or ar or # passif infectum personnel subjonctif prsent -SFX C or arque or -SFX C or arne or -SFX C or arve or -SFX C or aris or -SFX C or arisque or -SFX C or arisne or -SFX C or arisve or -SFX C or atur or -SFX C or aturque or -SFX C or aturne or -SFX C or aturve or -SFX C or amur or -SFX C or amurque or -SFX C or amurne or -SFX C or amurve or -SFX C or amini or -SFX C or aminique or -SFX C or aminine or -SFX C or aminive or -SFX C or antur or -SFX C or anturque or -SFX C or anturne or -SFX C or anturve or -SFX C or rer or # passif infectum personnel subjonctif imparfait -SFX C or rerque or -SFX C or rerne or -SFX C or rerve or -SFX C or reris or -SFX C or rerisque or -SFX C or rerisne or -SFX C or rerisve or -SFX C or retur or -SFX C or returque or -SFX C or returne or -SFX C or returve or -SFX C or remur or -SFX C or remurque or -SFX C or remurne or -SFX C or remurve or -SFX C or remini or -SFX C or reminique or -SFX C or reminine or -SFX C or reminive or -SFX C or rentur or -SFX C or renturque or -SFX C or renturne or -SFX C or renturve or -SFX C or re or # passif infectum impratif -SFX C or reque or -SFX C or rene or -SFX C or reve or -SFX C or ri or # passif infectum impersonnel infinitif -SFX C or rique or -SFX C or rine or -SFX C or rive or -SFX C or endus or # adjectif verbal -SFX C or endusque or -SFX C or endusne or -SFX C or endusve or -SFX C or ende or -SFX C or endeque or -SFX C or endene or -SFX C or endeve or -SFX C or endum or -SFX C or endumque or -SFX C or endumne or -SFX C or endumve or -SFX C or endi or -SFX C or endique or -SFX C or endine or -SFX C or endive or -SFX C or endo or -SFX C or endoque or -SFX C or endone or -SFX C or endove or -SFX C or enda or -SFX C or endaque or -SFX C or endane or -SFX C or endave or -SFX C or endam or -SFX C or endamque or -SFX C or endamne or -SFX C or endamve or -SFX C or endae or -SFX C or endaeque or -SFX C or endaene or -SFX C or endaeve or -SFX C or endos or -SFX C or endosque or -SFX C or endosne or -SFX C or endosve or -SFX C or endorum or -SFX C or endorumque or -SFX C or endorumne or -SFX C or endorumve or -SFX C or endis or -SFX C or endisque or -SFX C or endisne or -SFX C or endisve or -SFX C or endas or -SFX C or endasque or -SFX C or endasne or -SFX C or endasve or -SFX C or endarum or -SFX C or endarumque or -SFX C or endarumne or -SFX C or endarumve or -SFX C or endum or # grondif -SFX C or endumque or -SFX C or endumne or -SFX C or endumve or -SFX C or endi or -SFX C or endique or -SFX C or endine or -SFX C or endive or -SFX C or endo or -SFX C or endoque or -SFX C or endone or -SFX C or endove or -SFX C or ens or # participe prsent actif -SFX C or ensque or -SFX C or ensne or -SFX C or ensve or -SFX C or entem or -SFX C or entemque or -SFX C or entemne or -SFX C or entemve or -SFX C or entis or -SFX C or entisque or -SFX C or entisne or -SFX C or entisve or -SFX C or enti or -SFX C or entique or -SFX C or entine or -SFX C or entive or -SFX C or ente or -SFX C or enteque or -SFX C or entene or -SFX C or enteve or -SFX C or entes or -SFX C or entesque or -SFX C or entesne or -SFX C or entesve or -SFX C or entium or -SFX C or entiumque or -SFX C or entiumne or -SFX C or entiumve or -SFX C or entibus or -SFX C or entibusque or -SFX C or entibusne or -SFX C or entibusve or -SFX C or entia or -SFX C or entiaque or -SFX C or entiane or -SFX C or entiave or -SFX C or endus or # adjectif verbal -SFX C or endusque or -SFX C or endusne or -SFX C or endusve or -SFX C or ende or -SFX C or endeque or -SFX C or endene or -SFX C or endeve or -SFX C or endum or -SFX C or endumque or -SFX C or endumne or -SFX C or endumve or -SFX C or endi or -SFX C or endique or -SFX C or endine or -SFX C or endive or -SFX C or endo or -SFX C or endoque or -SFX C or endone or -SFX C or endove or -SFX C or enda or -SFX C or endaque or -SFX C or endane or -SFX C or endave or -SFX C or endam or -SFX C or endamque or -SFX C or endamne or -SFX C or endamve or -SFX C or endae or -SFX C or endaeque or -SFX C or endaene or -SFX C or endaeve or -SFX C or endos or -SFX C or endosque or -SFX C or endosne or -SFX C or endosve or -SFX C or endorum or -SFX C or endorumque or -SFX C or endorumne or -SFX C or endorumve or -SFX C or endis or -SFX C or endisque or -SFX C or endisne or -SFX C or endisve or -SFX C or endas or -SFX C or endasque or -SFX C or endasne or -SFX C or endasve or -SFX C or endarum or -SFX C or endarumque or -SFX C or endarumne or -SFX C or endarumve or -SFX P Y 429 -SFX P i i i # actif perfectum personnel indicatif parfait -SFX P i ique i -SFX P i ine i -SFX P i ive i -SFX P i isti i -SFX P i istique i -SFX P i istine i -SFX P i istive i -SFX P i it i -SFX P i itque i -SFX P i itne i -SFX P i itve i -SFX P i imus i -SFX P i imusque i -SFX P i imusne i -SFX P i imusve i -SFX P i istis i -SFX P i istisque i -SFX P i istisne i -SFX P i istisve i -SFX P i erunt i -SFX P i eruntque i -SFX P i eruntne i -SFX P i eruntve i -SFX P i ere i #forme alternative de la 3e personne pluriel -SFX P i ereque i -SFX P i erene i -SFX P i ereve i -SFX P vi vi vi -SFX P vi i vi # actif perfectum personnel indicatif parfait contract -SFX P vi ique vi -SFX P vi ine vi -SFX P vi ive vi -SFX P vi sti vi -SFX P vi stique vi -SFX P vi stine vi -SFX P vi stive vi -SFX P vi t vi -SFX P vi tque vi -SFX P vi tne vi -SFX P vi tve vi -SFX P vi mus vi -SFX P vi musque vi -SFX P vi musne vi -SFX P vi musve vi -SFX P vi stis vi -SFX P vi stisque vi -SFX P vi stisne vi -SFX P vi stisve vi -SFX P vi runt vi -SFX P vi runtque vi -SFX P vi runtne vi -SFX P vi runtve vi -SFX P i eram i # actif perfectum personnel indicatif pqp -SFX P i eramque i -SFX P i eramne i -SFX P i eramve i -SFX P i eras i -SFX P i erasque i -SFX P i erasne i -SFX P i erasve i -SFX P i erat i -SFX P i eratque i -SFX P i eratne i -SFX P i eratve i -SFX P i eramus i -SFX P i eramusque i -SFX P i eramusne i -SFX P i eramusve i -SFX P i eratis i -SFX P i eratisque i -SFX P i eratisne i -SFX P i eratisve i -SFX P i erant i -SFX P i erantque i -SFX P i erantne i -SFX P i erantve i -SFX P vi ram vi # actif perfectum personnel indicatif pqp contract -SFX P vi ramque vi -SFX P vi ramne vi -SFX P vi ramve vi -SFX P vi ras vi -SFX P vi rasque vi -SFX P vi rasne vi -SFX P vi rasve vi -SFX P vi rat vi -SFX P vi ratque vi -SFX P vi ratne vi -SFX P vi ratve vi -SFX P vi ramus vi -SFX P vi ramusque vi -SFX P vi ramusne vi -SFX P vi ramusve vi -SFX P vi ratis vi -SFX P vi ratisque vi -SFX P vi ratisne vi -SFX P vi ratisve vi -SFX P vi rant vi -SFX P vi rantque vi -SFX P vi rantne vi -SFX P vi rantve vi -SFX P i ero i # actif perfectum personnel indicatif futur -SFX P i eroque i -SFX P i erone i -SFX P i erove i -SFX P i eris i -SFX P i erisque i -SFX P i erisne i -SFX P i erisve i -SFX P i erit i -SFX P i eritque i -SFX P i eritne i -SFX P i eritve i -SFX P i erimus i -SFX P i erimusque i -SFX P i erimusne i -SFX P i erimusve i -SFX P i eritis i -SFX P i eritisque i -SFX P i eritisne i -SFX P i eritisve i -SFX P i erint i -SFX P i erintque i -SFX P i erintne i -SFX P i erintve i -SFX P vi ro vi # actif perfectum personnel indicatif futur contract -SFX P vi roque vi -SFX P vi rone vi -SFX P vi rove vi -SFX P vi ris vi -SFX P vi risque vi -SFX P vi risne vi -SFX P vi risve vi -SFX P vi rit vi -SFX P vi ritque vi -SFX P vi ritne vi -SFX P vi ritve vi -SFX P vi rimus vi -SFX P vi rimusque vi -SFX P vi rimusne vi -SFX P vi rimusve vi -SFX P vi ritis vi -SFX P vi ritisque vi -SFX P vi ritisne vi -SFX P vi ritisve vi -SFX P vi rint vi -SFX P vi rintque vi -SFX P vi rintne vi -SFX P vi rintve vi -SFX P i erim i # actif perfectum personnel subjonctif parfait -SFX P i erimque i -SFX P i erimne i -SFX P i erimve i -SFX P vi rim vi # actif perfectum personnel subjonctif parfait contract -SFX P vi rimque vi -SFX P vi rimne vi -SFX P vi rimve vi -SFX P i issem i # actif perfectum personnel subjonctif pqp -SFX P i issemque i -SFX P i issemne i -SFX P i issemve i -SFX P i isses i -SFX P i issesque i -SFX P i issesne i -SFX P i issesve i -SFX P i isset i -SFX P i issetque i -SFX P i issetne i -SFX P i issetve i -SFX P i issemus i -SFX P i issemusque i -SFX P i issemusne i -SFX P i issemusve i -SFX P i issetis i -SFX P i issetisque i -SFX P i issetisne i -SFX P i issetisve i -SFX P i issent i -SFX P i issentque i -SFX P i issentne i -SFX P i issentve i -SFX P vi ssem vi # actif perfectum personnel subjonctif pqp contract -SFX P vi ssemque vi -SFX P vi ssemne vi -SFX P vi ssemve vi -SFX P vi sses vi -SFX P vi ssesque vi -SFX P vi ssesne vi -SFX P vi ssesve vi -SFX P vi sset vi -SFX P vi ssetque vi -SFX P vi ssetne vi -SFX P vi ssetve vi -SFX P vi ssemus vi -SFX P vi ssemusque vi -SFX P vi ssemusne vi -SFX P vi ssemusve vi -SFX P vi ssetis vi -SFX P vi ssetisque vi -SFX P vi ssetisne vi -SFX P vi ssetisve vi -SFX P vi ssent vi -SFX P vi ssentque vi -SFX P vi ssentne vi -SFX P vi ssentve vi -SFX P i isse i # actif perfectum impersonnel infinitif -SFX P i isseque i -SFX P i issene i -SFX P i isseve i -SFX P vi sse vi # actif perfectum impersonnel infinitif contract -SFX P vi sseque vi -SFX P vi ssene vi -SFX P vi sseve vi -SFX P o avi o # actif perfectum personnel indicatif parfait -SFX P o avique o -SFX P o avine o -SFX P o avive o -SFX P o avisti o -SFX P o avistique o -SFX P o avistine o -SFX P o avistive o -SFX P o avit o -SFX P o avitque o -SFX P o avitne o -SFX P o avitve o -SFX P o avimus o -SFX P o avimusque o -SFX P o avimusne o -SFX P o avimusve o -SFX P o avistis o -SFX P o avistisque o -SFX P o avistisne o -SFX P o avistisve o -SFX P o averunt o -SFX P o averuntque o -SFX P o averuntne o -SFX P o averuntve o -SFX P o avere o -SFX P o avereque o -SFX P o averene o -SFX P o avereve o -SFX P o ai o # actif perfectum personnel indicatif parfait contract -SFX P o aque o -SFX P o ane o -SFX P o ave o -SFX P o asti o -SFX P o astique o -SFX P o astine o -SFX P o astive o -SFX P o at o -SFX P o atque o -SFX P o atne o -SFX P o atve o -SFX P o amus o -SFX P o amusque o -SFX P o amusne o -SFX P o amusve o -SFX P o astis o -SFX P o astisque o -SFX P o astisne o -SFX P o astisve o -SFX P o arunt o -SFX P o aruntque o -SFX P o aruntne o -SFX P o aruntve o -SFX P o are o -SFX P o areque o -SFX P o arene o -SFX P o areve o -SFX P o averam o # actif perfectum personnel indicatif pqp -SFX P o averamque o -SFX P o averamne o -SFX P o averamve o -SFX P o averas o -SFX P o averasque o -SFX P o averasne o -SFX P o averasve o -SFX P o averat o -SFX P o averatque o -SFX P o averatne o -SFX P o averatve o -SFX P o averamus o -SFX P o averamusque o -SFX P o averamusne o -SFX P o averamusve o -SFX P o averatis o -SFX P o averatisque o -SFX P o averatisne o -SFX P o averatisve o -SFX P o averant o -SFX P o averantque o -SFX P o averantne o -SFX P o averantve o -SFX P o aram o # actif perfectum personnel indicatif pqp contract -SFX P o aramque o -SFX P o aramne o -SFX P o aramve o -SFX P o aras o -SFX P o arasque o -SFX P o arasne o -SFX P o arasve o -SFX P o arat o -SFX P o aratque o -SFX P o aratne o -SFX P o aratve o -SFX P o aramus o -SFX P o aramusque o -SFX P o aramusne o -SFX P o aramusve o -SFX P o aratis o -SFX P o aratisque o -SFX P o aratisne o -SFX P o aratisve o -SFX P o arant o -SFX P o arantque o -SFX P o arantne o -SFX P o arantve o -SFX P o avero o # actif perfectum personnel indicatif futur -SFX P o averoque o -SFX P o averone o -SFX P o averove o -SFX P o averis o -SFX P o averisque o -SFX P o averisne o -SFX P o averisve o -SFX P o averit o -SFX P o averitque o -SFX P o averitne o -SFX P o averitve o -SFX P o averimus o -SFX P o averimusque o -SFX P o averimusne o -SFX P o averimusve o -SFX P o averitis o -SFX P o averitisque o -SFX P o averitisne o -SFX P o averitisve o -SFX P o averint o -SFX P o averintque o -SFX P o averintne o -SFX P o averintve o -SFX P o aro o # actif perfectum personnel indicatif futur contract -SFX P o aroque o -SFX P o arone o -SFX P o arove o -SFX P o aris o -SFX P o arisque o -SFX P o arisne o -SFX P o arisve o -SFX P o arit o -SFX P o aritque o -SFX P o aritne o -SFX P o aritve o -SFX P o arimus o -SFX P o arimusque o -SFX P o arimusne o -SFX P o arimusve o -SFX P o aritis o -SFX P o aritisque o -SFX P o aritisne o -SFX P o aritisve o -SFX P o arint o -SFX P o arintque o -SFX P o arintne o -SFX P o arintve o -SFX P o averim o # actif perfectum personnel subjonctif parfait -SFX P o averimque o -SFX P o averimne o -SFX P o averimve o -SFX P o arim o # actif perfectum personnel subjonctif parfait contract -SFX P o arimque o -SFX P o arimne o -SFX P o arimve o -SFX P o avissem o # actif perfectum personnel subjonctif pqp -SFX P o avissemque o -SFX P o avissemne o -SFX P o avissemve o -SFX P o avisses o -SFX P o avissesque o -SFX P o avissesne o -SFX P o avissesve o -SFX P o avisset o -SFX P o avissetque o -SFX P o avissetne o -SFX P o avissetve o -SFX P o avissemus o -SFX P o avissemusque o -SFX P o avissemusne o -SFX P o avissemusve o -SFX P o avissetis o -SFX P o avissetisque o -SFX P o avissetisne o -SFX P o avissetisve o -SFX P o avissent o -SFX P o avissentque o -SFX P o avissentne o -SFX P o avissentve o -SFX P o assem o # actif perfectum personnel subjonctif pqp contract -SFX P o assemque o -SFX P o assemne o -SFX P o assemve o -SFX P o asses o -SFX P o assesque o -SFX P o assesne o -SFX P o assesve o -SFX P o asset o -SFX P o assetque o -SFX P o assetne o -SFX P o assetve o -SFX P o assemus o -SFX P o assemusque o -SFX P o assemusne o -SFX P o assemusve o -SFX P o assetis o -SFX P o assetisque o -SFX P o assetisne o -SFX P o assetisve o -SFX P o assent o -SFX P o assentque o -SFX P o assentne o -SFX P o assentve o -SFX P o avisse o # actif perfectum impersonnel infinitif -SFX P o avisseque o -SFX P o avissene o -SFX P o avisseve o -SFX P o asse o # actif perfectum impersonnel infinitif contract -SFX P o asseque o -SFX P o assene o -SFX P o asseve o -SFX S Y 346 -SFX S um um um -SFX S um urus um # participe futur et infinitif futur (actifs) -SFX S um ure um # le vocatif a-t-il un sens ici ? -SFX S um uri um -SFX S um uro um -SFX S um ura um -SFX S um uram um -SFX S um urae um -SFX S um urum um -SFX S um uros um -SFX S um urorum um -SFX S um uras um -SFX S um urarum um -SFX S um uris um -SFX S 0 que um -SFX S 0 ne um -SFX S 0 ve um -SFX S um urusque um -SFX S um urusne um -SFX S um urusve um -SFX S um ureque um -SFX S um urene um -SFX S um ureve um -SFX S um urique um -SFX S um urine um -SFX S um urive um -SFX S um uroque um -SFX S um urone um -SFX S um urove um -SFX S um uraque um -SFX S um urane um -SFX S um urave um -SFX S um uramque um -SFX S um uramne um -SFX S um uramve um -SFX S um uraeque um -SFX S um uraene um -SFX S um uraeve um -SFX S um urumque um -SFX S um urumne um -SFX S um urumve um -SFX S um urosque um -SFX S um urosne um -SFX S um urosve um -SFX S um urorumque um -SFX S um urorumne um -SFX S um urorumve um -SFX S um urasque um -SFX S um urasne um -SFX S um urasve um -SFX S um urarumque um -SFX S um urarumne um -SFX S um urarumve um -SFX S um urisque um -SFX S um urisne um -SFX S um urisve um -SFX S um u um # supin -SFX S um uque um -SFX S um une um -SFX S um uve um -SFX S um us um # participe et infinitif parfaits (passifs) -SFX S um e um # le vocatif a-t-il un sens ici ? -SFX S um i um -SFX S um o um -SFX S um a um -SFX S um am um -SFX S um ae um -SFX S um um um -SFX S um os um -SFX S um orum um -SFX S um is um -SFX S um as um -SFX S um arum um -SFX S um usque um -SFX S um usne um -SFX S um usve um -SFX S um eque um -SFX S um ene um -SFX S um eve um -SFX S um ique um -SFX S um ine um -SFX S um ive um -SFX S um oque um -SFX S um one um -SFX S um ove um -SFX S um aque um -SFX S um ane um -SFX S um ave um -SFX S um amque um -SFX S um amne um -SFX S um amve um -SFX S um aeque um -SFX S um aene um -SFX S um aeve um -SFX S um umque um -SFX S um umne um -SFX S um umve um -SFX S um osque um -SFX S um osne um -SFX S um osve um -SFX S um orumque um -SFX S um orumne um -SFX S um orumve um -SFX S um isque um -SFX S um isne um -SFX S um isve um -SFX S um asque um -SFX S um asne um -SFX S um asve um -SFX S um arumque um -SFX S um arumne um -SFX S um arumve um -SFX S us us us -SFX S us urus us # participe futur et infinitif futur (actifs) -SFX S us ure us # le vocatif a-t-il un sens ici ? -SFX S us uri us -SFX S us uro us -SFX S us ura us -SFX S us uram us -SFX S us urae us -SFX S us urum us -SFX S us uros us -SFX S us urorum us -SFX S us uras us -SFX S us urarum us -SFX S us uris us -SFX S 0 que um -SFX S 0 ne um -SFX S 0 ve um -SFX S us urusque us -SFX S us urusne us -SFX S us urusve us -SFX S us ureque us -SFX S us urene us -SFX S us ureve us -SFX S us urique us -SFX S us urine us -SFX S us urive us -SFX S us uroque us -SFX S us urone us -SFX S us urove us -SFX S us uraque us -SFX S us urane us -SFX S us urave us -SFX S us uramque us -SFX S us uramne us -SFX S us uramve us -SFX S us uraeque us -SFX S us uraene us -SFX S us uraeve us -SFX S us urumque us -SFX S us urumne us -SFX S us urumve us -SFX S us urosque us -SFX S us urosne us -SFX S us urosve us -SFX S us urorumque us -SFX S us urorumne us -SFX S us urorumve us -SFX S us urasque us -SFX S us urasne us -SFX S us urasve us -SFX S us urarumque us -SFX S us urarumne us -SFX S us urarumve us -SFX S us urisque us -SFX S us urisne us -SFX S us urisve us -SFX S us u us # supin -SFX S us uque us -SFX S us une us -SFX S us uve us -SFX S us um us # participe et infinitif parfaits (passifs) -SFX S us e us # le vocatif a-t-il un sens ici ? -SFX S us i us -SFX S us o us -SFX S us a us -SFX S us am us -SFX S us ae us -SFX S us um us -SFX S us os us -SFX S us orum us -SFX S us is us -SFX S us as us -SFX S us arum us -SFX S 0 que us -SFX S 0 ne us -SFX S 0 ve us -SFX S us umque us -SFX S us umne us -SFX S us umve us -SFX S us eque us -SFX S us ene us -SFX S us eve us -SFX S us ique us -SFX S us ine us -SFX S us ive us -SFX S us oque us -SFX S us one us -SFX S us ove us -SFX S us aque us -SFX S us ane us -SFX S us ave us -SFX S us amque us -SFX S us amne us -SFX S us amve us -SFX S us aeque us -SFX S us aene us -SFX S us aeve us -SFX S us umque us -SFX S us umne us -SFX S us umve us -SFX S us osque us -SFX S us osne us -SFX S us osve us -SFX S us orumque us -SFX S us orumne us -SFX S us orumve us -SFX S us isque us -SFX S us isne us -SFX S us isve us -SFX S us asque us -SFX S us asne us -SFX S us asve us -SFX S us arumque us -SFX S us arumne us -SFX S us arumve us -SFX S o aturus o # participe futur et infinitif futur (actifs) -SFX S o ature o # le vocatif a-t-il un sens ici ? -SFX S o aturum o -SFX S o aturi o -SFX S o aturo o -SFX S o atura o -SFX S o aturam o -SFX S o aturae o -SFX S o aturum o -SFX S o aturos o -SFX S o aturorum o -SFX S o aturis o -SFX S o aturas o -SFX S o aturarum o -SFX S 0 que o -SFX S 0 ne o -SFX S 0 ve o -SFX S o aturusque o -SFX S o aturusne o -SFX S o aturusve o -SFX S o atureque o -SFX S o aturene o -SFX S o atureve o -SFX S o aturumque o -SFX S o aturumne o -SFX S o aturumve o -SFX S o aturique o -SFX S o aturine o -SFX S o aturive o -SFX S o aturoque o -SFX S o aturone o -SFX S o aturove o -SFX S o aturaque o -SFX S o aturane o -SFX S o aturave o -SFX S o aturamque o -SFX S o aturamne o -SFX S o aturamve o -SFX S o aturaeque o -SFX S o aturaene o -SFX S o aturaeve o -SFX S o aturumque o -SFX S o aturumne o -SFX S o aturumve o -SFX S o aturosque o -SFX S o aturosne o -SFX S o aturosve o -SFX S o aturorumque o -SFX S o aturorumne o -SFX S o aturorumve o -SFX S o aturisque o -SFX S o aturisne o -SFX S o aturisve o -SFX S o aturasque o -SFX S o aturasne o -SFX S o aturasve o -SFX S o aturarumque o -SFX S o aturarumne o -SFX S o aturarumve o -SFX S o atu o # supin -SFX S o atuque o -SFX S o atune o -SFX S o atuve o -SFX S o atus o # participe et infinitif parfaits (passifs) -SFX S o ate o # le vocatif a-t-il un sens ici ? -SFX S o atum o -SFX S o ati o -SFX S o ato o -SFX S o ata o -SFX S o atam o -SFX S o atae o -SFX S o atum o -SFX S o atos o -SFX S o atorum o -SFX S o atis o -SFX S o atas o -SFX S o atarum o -SFX S o atusque o -SFX S o atusne o -SFX S o atusve o -SFX S o ateque o -SFX S o atene o -SFX S o ateve o -SFX S o atumque o -SFX S o atumne o -SFX S o atumve o -SFX S o atique o -SFX S o atine o -SFX S o ative o -SFX S o atoque o -SFX S o atone o -SFX S o atove o -SFX S o ataque o -SFX S o atane o -SFX S o atave o -SFX S o atamque o -SFX S o atamne o -SFX S o atamve o -SFX S o ataeque o -SFX S o ataene o -SFX S o ataeve o -SFX S o atumque o -SFX S o atumne o -SFX S o atumve o -SFX S o atosque o -SFX S o atosne o -SFX S o atosve o -SFX S o atorumque o -SFX S o atorumne o -SFX S o atorumve o -SFX S o atisque o -SFX S o atisne o -SFX S o atisve o -SFX S o atasque o -SFX S o atasne o -SFX S o atasve o -SFX S o atarumque o -SFX S o atarumne o -SFX S o atarumve o -REP 2 -REP ph f -REP f ph diff --git a/tests/dictionaries/la/la.dic b/tests/dictionaries/la/la.dic deleted file mode 100755 index 52d5380..0000000 --- a/tests/dictionaries/la/la.dic +++ /dev/null @@ -1,11620 +0,0 @@ -11619 -a -ab -abacus/b -abbas/q -abbatis/d -abdumen/q -abduminis/d -aberam/q -aberamus/q -aberant/q -aberas/q -aberatis/q -aberat/q -aberimus/q -aberis/q -aberitis/q -aberit/q -abero/q -aberro/APS -aberunt/q -abes/q -abessem/q -abessemus/q -abessent/q -abesse/q -abesses/q -abessetis/q -abesset/q -abeste/q -abestis/q -abesto/q -abestote/q -abest/q -abfore/q -abfuere/q -abfui/P -abfuturam/q -abfuturum/q -abfuturus/q -abhorreo/B -abhorrui/P -abieci/P -abiectum/S -abiicio/B -ablatum/S -aboleo/B -abolevi/P -abolitum/S -abomino/AP -Abraamus/b -abrado/B -abrasi/P -abrasum/S -abscedo/B -abscessi/P -abscessum/S -abscidi/P -abscido/B -abscindo/B -abscisionis/d -abscisio/q -abscissionis/d -abscissio/q -abscissum/S -abscisum/S -absens/q -absentia/a -absentis/fg -absimilis/fgrt -absim/q -absimus/q -absint/q -absis/q -absitis/q -absit/q -absolubilis/fg -absolutum/S -absolvi/P -absolvo/B -absonus/abc -absorbeo/B -absorbui/P -abs/q -abstentum/S -abstineo/B -abstinui/P -abstractum/S -abstraho/B -abstraxi/P -abstuli/P -absumo/B -absumpsi/P -absumptum/S -absum/q -absumus/q -absunto/q -absunt/q -absurditas/q -absurditatis/d -absurdus/abcs -abunde/q -abundo/APS -abundus/abcr -ac -academia/a -accedo/B -accelero/APS -accendi/P -accendo/B -accensum/S -accentus/h -accepi/P -acceptum/S -accersito/A -accessionis/d -accessio/q -accessi/P -accessum/S -accessus/h -accidi/P -accido/B -accipio/B -accisum/S -accommodo/APS -accresco/B -accretum/S -accrevi/P -accumulationis/d -accumulatio/q -accumulo/APS -accuro/APS -accurri/P -accurro/B -accusationis/d -accusatio/q -acer/q -acervus/b -acies/i -acquiro/B -acquisitum/S -acquisivi/P -acris/fgrst -actenus/q -actionis/d -actio/q -actito/APS -activus/abc -actum/S -acubus/q -acui/Pq -acumen/q -acuminatus/abc -acuminis/e -acum/q -acuo/B -acu/q -acus/q -acutum/S -acutus/abcrs -acuum/q -ad -adactum/S -adaequo/APS -adamo/APS -adamussim -adapto/APS -adauctum/S -adaugeo/B -adauxi/P -adcommodo/APS -addidi/P -additamentum/c -additionis/d -additio/q -additum/S -additus/abc -addo/B -adduco/B -adductum/S -adduxi/P -adeam/q -adeamus/q -adeant/q -adeas/q -adeatis/q -adeat/q -adegi/P -ademi/P -ademptus/S -adeo/q -adeptus/abc -aderam/q -aderamus/q -aderant/q -aderas/q -aderatis/q -aderat/q -aderimus/q -aderis/q -aderitis/q -aderit/q -adero/q -aderunt/q -ades/q -adessem/q -adessemus/q -adessent/q -adesse/q -adesses/q -adessetis/q -adesset/q -adeste/q -adestis/q -adesto/q -adestote/q -adest/q -adeundi/q -adeundo/q -adeundum/q -adeuntem/q -adeunte/q -adeuntes/q -adeuntia/q -adeuntibus/q -adeunti/q -adeuntis/q -adeuntium/q -adeunt/q -adfirmo/APS -adfore/q -adfuere/q -adfui/P -adfuturam/q -adfuturum/q -adfuturus/q -adhaereo/B -adhaeresco/B -adhibeo/B -adhibitum/S -adhibui/P -adhuc -adiaceo/B -adiacui/P -adibam/q -adibamus/q -adibant/q -adibas/q -adibatis/q -adibat/q -adibimus/q -adibis/q -adibitis/q -adibit/q -adibo/q -adibunt/q -adieci/P -adiectionis/d -adiectio/q -adiectivus/abc -adiectum/S -adiens/q -adieram/q -adieramus/q -adierant/q -adieras/q -adieratis/q -adierat/q -adierim/q -adierimus/q -adierint/q -adieris/q -adieritis/q -adierit/q -adiero/q -adigo/B -adiicio/B -adimo/B -adimus/q -adinstar -adinvenio/C -adinveni/P -adinventum/S -adinvicem -adipiscor/B -adi/q -adirem/q -adiremus/q -adirent/q -adire/q -adires/q -adiretis/q -adiret/q -adis/q -adisse/q -adite/q -aditis/q -adit/q -aditum/S -aditu/q -aditurus/abc -adiumentum/c -adiunctum/S -adiungo/B -adiunxi/P -adiutum/S -adiuvi/P -adiuvo/A -adiveram/q -adiveramus/q -adiverant/q -adiveras/q -adiveratis/q -adiverat/q -adiverim/q -adiverimus/q -adiverint/q -adiveris/q -adiveritis/q -adiverit/q -adivero/q -adivissem/q -adivissemus/q -adivissent/q -adivisse/q -adivisses/q -adivissetis/q -adivisset/q -adivitierunt/q -adivitimus/q -adiviti/q -adivitis/q -adivititis/q -adivitit/q -adlatum/S -adminiculum/c -administrationis/d -administratio/q -admirabilis/fgrs -admirationis/d -admiratio/q -admiratus/S -admiror/A -admisceo/B -admiscui/P -admisi/P -admissionis/d -admissio/q -admissum/S -admitto/B -admixtum/S -admodum -admoneo/B -admonevi/P -admonitum/S -admotum/S -admoveo/B -admovi/P -adnecto/B -adnexui/P -adnexum/S -adnotationis/d -adnotatio/q -adnoto/APS -adnumero/APS -adolescens/q -adolescentis/fg -adorno/APS -adpendi/P -adpendo/B -adpensum/S -adpictum/S -adpingo/B -adpinxi/P -adquiro/B -adquisitum/S -adquisivi/P -adscribo/B -adscripsi/P -adscriptum/S -adsecutus/S -adsequi/P -adsequor/B -adsigno/APS -adsim/q -adsimus/q -adsint/q -adsis/q -adsitis/q -adsit/q -adstructum/S -adstruo/B -adstruxi/P -adsum/q -adsumus/q -adsunto/q -adsunt/q -adtactum/S -adtigi/P -adtingo/B -adtractum/S -adtraho/B -adtraxi/P -adtribui/P -adtribuo/B -adtributum/S -adulatorius/abc -adumbrationis/d -adumbratio/q -adumbro/APS -adunationis/d -adunatio/q -advenio/C -adveni/P -adventum/S -adverbium/c -adversarius/abc -adversatus/S -adversor/A -adversum/S -adverti/P -adverto/B -adytum/c -aedes/q -aedificium/c -aedis/f -aegritudinis/d -aegritudo/q -aegyptius/abc -Aegyptus/b -aemulatricis/d -aemulatrix/q -aemulatus/S -aemulor/A -aemulus/abc -aeneus/abc -aequalis/fgt -aequalitas/q -aequalitatis/d -aequal/q -aequationis/d -aequatio/q -aequatoris/d -aequator/q -aequedistans/q -aequedistantis/fgt -aequedisto/A -aequependeo/B -aequepependi/P -aequepondero/APS -aequiangulus/abc -aequidistans/q -aequidistantia/a -aequidistantis/fg -aequidisto/A -aequilaterus/abc -aequilibrium/c -aequinoctialis/fg -aequinoctium/c -aequiparo/APS -aequipero/APS -aequipollentia/a -aequipondero/A -aequivaleo/B -aequivocus/abc -aequo/APS -aequus/abc -aera/a -aerarium/c -aeris/d -aer/q -aes/q -aestas/q -aestatis/d -aestimationis/d -aestimatio/q -aestivalis/fg -aestivus/abc -aestus/h -aetas/q -aetatis/d -aeternus/abc -Aethiopia/a -Aethiopicus/abc -affabre -affatim -affeci/P -affecto/APS -affectum/S -affectuosus/abc -afferamini/q -afferam/q -afferamur/q -afferamus/q -afferant/q -afferantur/q -afferaris/q -afferar/q -afferas/q -afferatis/q -afferat/q -afferatur/q -afferebamini/q -afferebam/q -afferebamur/q -afferebamus/q -afferebant/q -afferebantur/q -afferebaris/q -afferebar/q -afferebas/q -afferebatis/q -afferebat/q -afferebatur/q -afferemini/q -afferemur/q -afferemus/q -afferendi/q -afferendo/q -afferendum/q -afferendus/abc -afferens/q -afferentis/fg -afferent/q -afferentur/q -affereris/q -afferes/q -afferetis/q -afferet/q -afferetur/q -afferimini/q -afferimur/q -afferimus/q -affero/q -afferor/q -affer/q -afferremini/q -afferrem/q -afferremur/q -afferremus/q -afferrent/q -afferrentur/q -afferre/q -afferreris/q -afferrer/q -afferres/q -afferretis/q -afferret/q -afferretur/q -afferri/q -afferris/q -affers/q -afferte/q -affertis/q -affert/q -affertur/q -afferunt/q -afferuntur/q -afficio/B -affinis/fg -affinitas/q -affinitatis/d -affirmationis/d -affirmatio/q -affirmo/APS -affixus/abc -affluxus/abc -ager/q -aggemino/APS -aggravo/APS -aggredior/B -aggregationis/d -aggregatio/q -aggrego/APS -aggressus/S -agilis/fgrst -agilitas/q -agilitatis/d -agitationis/d -agitatio/q -agito/APS -agnitum/S -agnosco/B -agnovi/P -ago/B -agri/b -agricola/a -Agrippa/a -agrius/abc -aiebam/q -aiebamus/q -aiebant/q -aiebas/q -aiebatis/q -aiebat/q -aio/q -ais/q -ait/q -aiumentum/c -aiunt/q -ala/a -alba/a -Albategnius/b -albedinis/d -albedo/q -Albertus/b -alboris/d -albor/q -albugineus/abc -albus/abc -Alceus/b -Alcmaeonis/d -Alcmaeon/q -Alexander/q -Alexandria/a -Alexandri/b -alexandrinus/abc -alfonsinus/abc -Alfonsus/b -Alfraganus/b -algebra/a -algorismus/b -aliae/q -aliam/q -alia/q -aliarum/q -alias/q -alibi -alicubi -alicui -alicuius -alienus/abc -alii/q -aliis/q -alimentum/c -alio/q -alioqui -alioquin -aliorsum -aliorum/q -alios/q -aliqua -aliquae -aliquam -aliquando -aliquantisper -aliquantum/c -aliquarum -aliquas -aliquatenus -aliquem -aliqui -aliquibus -aliquid -aliquis -aliquo -aliquod -aliquorum -aliquos -aliquot -aliter/q -aliud/q -alium/q -aliunde -alius/q -allatum/S -allectum/S -allegoria/a -allexi/P -allicio/B -alligo/APS -alo/B -alterae/q -alteram/q -altera/q -alterarum/q -alteras/q -alterationis/d -alteratio/q -alterato/A -alteratus/abc -alteri/q -alteris/q -alteriusmodi/q -alterius/q -alternatim -alterno/APS -alternus/abc -altero/Bq -alterorum/q -alteros/q -alter/q -alterum/q -alterutri/abc -altitudinis/d -altitudo/q -altum/S -altus/abcrs -alui/P -alumen/q -aluminis/e -alvus/b -amatoris/d -amatorius/abc -amator/q -ambabus/q -ambae/q -ambages/q -ambagis/f -ambarum/q -ambas/q -ambigo/B -ambiguitas/q -ambiguitatis/d -ambiguus/abc -ambii/P -ambio/C -ambitionis/d -ambitio/q -ambitiosus/abc -ambitum/S -ambitus/h -ambligonius/abc -amblygonius/abc -ambobus/q -ambo/q -amborum/q -ambos/q -ambrosius/abc -amicus/b -amisi/P -amissum/S -amitto/B -amo/APS -amoris/d -amor/q -amotum/S -amoveo/B -amovi/P -Amphion -Amphionis/d -amplus/abcrs -ampulla/a -amputo/APS -Amulius/b -amussim/q -anabibazon/q -anabibazontis/d -analogia/a -anatomia/a -Anaximander/q -Anaximandri/b -anceps/q -ancipitis/fg -anfractus/h -angularis/fgt -angulatus/abc -angulus/b -angustia/a -angustus/abcrs -anima/a -animadversionis/d -animadversio/q -animadversum/S -animadverti/P -animadverto/B -animalis/de -animans/q -animantis/fg -animo/APS -animosus/abc -animus/b -annecto/B -annexionis/d -annexio/q -annexui/P -annexum/S -annitor/B -annixus/S -annotamentum/c -annus/b -annuus/abc -ansa/a -ante -antea -antecedo/B -antecessi/P -antecessum/S -antedictus/abc -antenna/a -antepono/B -antepositum/S -anteposui/P -antepraemissus/abc -antequam -anteriorandus/abc -anterioris/d -anterior/q -antichthonis/dq -anticipationis/d -anticipatio/q -anticipo/APS -antipodas/q -antipodes/q -antipodum/q -antiquitus -antiquus/abcrs -Antonius/b -aperio/C -apertum/S -apertus/abcrs -aperui/P -apes/q -apex/q -apicis/d -apis/f -Apollinis/d -Apollonius/b -Apollo/q -Aporon/q -apotome/j -apparentia/a -appareo/B -apparitionis/d -apparitio/q -apparitum/S -apparo/APS -apparui/P -appellationis/d -appellatio/q -appello/APS -appendicis/d -appendiculum/c -appendi/P -appendix/q -appendo/B -appensionis/d -appensio/q -appensum/S -appetitum/S -appetivi/P -appeto/B -Appia/a -Appianus/abc -Appius/b -applaudo/B -applausi/P -applausum/S -applicationis/d -applicatio/q -applico/APS -appono/B -apporto/APS -appositionis/d -appositio/q -appositum/S -apposui/P -apprehendi/P -apprehendo/B -apprehensum/S -apprimus/abc -approbo/APS -appropinquo/APS -approximo/AP -aprilis/f -apto/APS -aptus/abcrs -apud -aqua/a -aquarius/abc -aquilonis/d -aquilo/q -ara/a -Arabia/a -arabicus/abs -arabis/de -Arabs/q -araneum/c -Aratus/b -arbitrarius/abc -arbitratus/P -arbitro/A -arbitror/A -arboris/d -arbor/q -arceo/B -archetypum/c -Archimedes/q -archimedeus/abc -Archimedis/d -archimedius/abc -Architas/a -architector/A -architectura/a -architectus/b -Archytas/a -arcis/d -arcticus/abc -Arcturus/b -arctus/abcrs -arcubus/q -arcui/Pq -arcula/a -arcum/q -arcu/q -arcus/q -arcuum/q -ardeo/B -area/a -arefacio/B -arefactus/S -arefeci/P -arena/a -arenarius/abc -arenula/a -argenteus/abc -argentum/c -argui/P -argumentationis/d -argumentatio/q -argumentor/A -argumentum/c -argumentus/S -arguo/B -argutum/S -aridus/abc -aries/q -arietis/d -arieto/APS -Arionis/d -Arion/q -Aristarchus/b -Aristoteles/q -Aristotelis/d -Aristoxenus/b -arithmeticus/abc -armilla/a -arreptum/S -arrideo/B -arripio/B -arripui/P -arrisi/P -arrisum/S -arrogo/APS -arsi/P -ars/q -arsurus/S -artifex/q -artificialis/fg -artificiose/q -artificiosus/abcs -artificis/de -artificium/c -artis/d -arundinis/d -arundo/q -arx/q -Ascalonitae/q -Ascalonitarum/q -Ascalonitas/q -Ascalonitis/q -ascendi/P -ascendo/B -ascensionalis/fg -ascensionis/d -ascensio/q -ascensum/S -ascribo/B -ascripsi/P -ascriptum/S -aspectus/h -aspergo/B -asperi/abc -asperitas/q -asperitatis/d -aspero/APS -asper/q -aspersi/P -aspersum/S -aspiro/APS -assecutus/S -assensi/P -assensus/S -assentio/C -assentior/C -assentum/S -assequi/P -assequor/B -assero/B -assertum/S -asserui/P -assiduus/abc -assigno/APS -assimilo/APS -assisto/B -associo/APS -assoleo/B -assuesco/B -assuetum/S -assuevi/P -assumo/B -assumpsi/P -assumptum/S -assumptus/abc -assus/abc -ast -astrologia/a -astrologus/b -astronomia/a -astronomicus/abc -astronomus/b -astructum/S -astrum/c -astruo/B -astruxi/P -at -athenaeus/abc -atlanticus/abc -atomus/abc -atque -atramentum/c -attactum/S -attamen -attempero/AS -attendi/P -attendo/B -attento/APS -attentum/S -attero/B -attigi/P -attingo/B -attollo/B -attractum/S -attraho/B -attraxi/P -attribui/P -attribuo/B -attributum/S -attritum/S -attrivi/P -attuli/P -attulo/B -auctoris/d -auctoritatis/d -auctor/q -auctum/S -audacis/fg -audax/q -audeo/B -audio/C -auditum/S -audivi/P -auferamini/q -auferam/q -auferamur/q -auferamus/q -auferant/q -auferantur/q -auferaris/q -auferar/q -auferas/q -auferatis/q -auferat/q -auferatur/q -auferebamini/q -auferebam/q -auferebamur/q -auferebamus/q -auferebant/q -auferebantur/q -auferebaris/q -auferebar/q -auferebas/q -auferebatis/q -auferebat/q -auferebatur/q -auferemini/q -auferemur/q -auferemus/q -auferendi/q -auferendo/q -auferendum/q -auferendus/abc -auferens/q -auferentis/fg -auferent/q -auferentur/q -aufereris/q -auferes/q -auferetis/q -auferet/q -auferetur/q -auferimini/q -auferimur/q -auferimus/q -aufero/q -auferor/q -aufer/q -auferremini/q -auferrem/q -auferremur/q -auferremus/q -auferrent/q -auferrentur/q -auferre/q -auferreris/q -auferrer/q -auferres/q -auferretis/q -auferret/q -auferretur/q -auferri/q -auferris/q -aufers/q -auferte/q -aufertis/q -aufert/q -aufertur/q -auferunt/q -auferuntur/q -augeo/B -augmento/AS -augmentum/c -Augustinus/b -augustus/abc -aura/a -aureus/abc -auris/f -aurora/a -aurum/c -auspico/APS -auster/q -australis/fg -austri/b -ausus/S -aut -autem -autenticus/abc -authenticus/abc -authoris/d -authoritas/q -authoritatis/d -author/q -Autolycus/b -autoris/d -autor/q -autumnalis/fg -autumnus/b -autumo/APS -auxilium/c -auxi/P -aversum/S -aversus/abc -averti/P -averto/B -avicula/a -avidus/abcr -avis/f -axim/q -axis/f -bacillus/b -baculum/c -baiulo/A -ballista/a -balneum/c -Baptista/a -barbarus/abc -basiliscus/b -basim/q -basis/f -beatum/S -beavi/P -bellicus/abc -bellua/a -bellum/c -bene -benefactoris/d -benefactor/q -beneficium/c -beneficus/abc -benevolentia/a -beo/A -bibliotheca/a -bifarius/abc -bilancis/de -bilanx/q -bilibris/fg -bimedialis/fg -bimembris/fg -bimembrum/c -binae/q -bina/q -binarius/abc -binarum/q -binas/q -bini/q -binis/q -binomialis/fg -binominis/fg -binomium/c -binorum/q -binos/q -bis -bisextilis/fg -bisextus/abc -bis/q -bisquadratus/b -bissextilis/fg -bissextum/c -Blanchinus/b -blandior/C -blanditus/S -blandus/abc -boatus/h -boetianus/abc -Boetius/b -bombycis/d -bombyx/q -bonus/abc -borealis/fg -boreus/abc -brachium/c -bractea/a -breviarius/abc -breviatoris/d -breviator/q -brevio/APS -brevis/fgrst -brevitas/q -brevitatis/d -brumalis/fg -bucca/a -bustum/c -byzantius/abc -cacumen/q -cacuminis/e -cado/B -caducus/abc -caecus/abcr -caedes/q -caedis/f -caelestis/fg -caelus/b -caementum/c -caenobium/c -caepa/a -caeptus/abc -caeruleus/abc -Caesareus/abc -Caesaris/d -Caesar/q -caeterus/abc -calamitas/q -calamitatis/d -calamus/b -calcaris/d -calcar/q -calcis/d -calculationis/d -calculatio/q -calculatoris/d -calculator/q -calculo/AS -calculus/b -calefaciendus/abcq -calefaciens/q -calefacientis/fq -calefacio/B -calefactum/S -calefeci/P -calefiam/q -calefiamus/q -calefiant/q -calefias/q -calefiatis/q -calefiat/q -calefiebam/q -calefiebamus/q -calefiebant/q -calefiebas/q -calefiebatis/q -calefiebat/q -calefiemus/q -calefient/q -calefierem/q -calefieremus/q -calefierent/q -calefieres/q -calefieretis/q -calefieret/q -calefieri/q -calefies/q -calefietis/q -calefiet/q -calefimus/q -calefio/q -calefis/q -calefitis/q -calefit/q -calefiunt/q -caliginis/d -caligo/APSq -calleo/B -calliditas/q -calliditatis/d -callis/f -Callisthenes/q -Callisthenis/f -callui/P -caloris/d -calor/q -calx/q -Campanus/b -canabis/f -canaliculus/b -canalis/f -cancer/q -cancri/b -candela/a -candeo/B -candido/APS -candidus/abc -candoris/d -candor/q -candui/P -canna/a -cannula/a -cano/B -canonicus/abc -canonis/d -canon/q -canoris/d -canor/q -Cantabria/a -cantilena/a -cantoris/d -cantor/q -cantum/S -capacis/fgs -capacitas/q -capacitatis/d -capessivi/P -capesso/B -capio/B -capitis/d -capiturus/S -capricornus/b -capto/APS -captum/S -Capuanus/abc -caput/q -caracteris/d -caracter/q -carbonis/d -carbo/q -carchesium/c -Cardanus/b -cardinalis/fg -cardonis/d -cardo/q -careiturus/S -careo/B -careui/P -carmelitanus/abc -carmen/q -carminis/e -carniprivii/q -carnis/d -carnisprivium/q -caro/q -carpo/B -carpsi/P -carptim/q -carptum/S -carta/a -castellum/c -castigo/APS -casum/S -casus/h -catalogus/b -Catana/a -catanensis/fg -catapulta/a -catena/a -cathetus/b -Caucasus/b -cauda/a -causa/a -caussa/a -cautionis/d -cautio/q -cautum/S -cavaedium/c -caveo/B -caverna/a -cavillationis/d -cavillatio/q -cavi/P -cavitas/q -cavitatis/d -cavus/abc -cecidi/P -cecini/P -cedo/B -celeber/qs -celebris/fg -celebro/APS -celeris/der -celeritas/q -celeritatis/d -celeriter/q -celer/q -cellula/a -celo/APS -celonis/d -celo/q -celsitudinis/d -celsitudo/q -celsus/abcrs -censeo/B -censui/P -censum/S -census/h -centenae/q -centena/q -centenarius/abc -centenarum/q -centenas/q -centeni/q -centenis/q -centenorum/q -centenos/q -centesimus/abc -centies/q -centralis/fg -centraliter/q -centrum/c -centum/q -centuplus/abc -cepi/P -cera/a -cerebrum/c -cereris/d -ceres/q -cerno/B -certatim -certifico/AS -certitudinis/d -certitudo/q -certus/abcrs -cerula/a -cessi/P -cesso/APS -cessum/S -ceterus/abc -ceu -characteris/d -character/q -charta/a -charybdis/f -chirurgus/b -chorda/a -chorea/a -chorographia/a -Christophorus/b -chromaticus/abc -chronicus/abc -chrystallinus/abc -cicercula/a -Ciceronis/d -Cicero/q -ciconia/a -cieo/B -cifra/a -cilium/c -cineris/d -cingulum/c -cinis/q -circa/q -circinus/b -circuitus/abch -circularis/fg -circularitas/q -circularitatis/d -circulariter/q -circulatim/q -circulationis/d -circulatio/q -circulatus/S -circulo/APS -circulor/A -circulus/b -circum -circumactum/S -circumago/B -circumcisus/abc -circumdatum/S -circumdedi/P -circumdo/A -circumduco/B -circumductionis/d -circumductio/q -circumductum/S -circumduxi/P -circumegi/P -circumferamini/q -circumferam/q -circumferamur/q -circumferamus/q -circumferant/q -circumferantur/q -circumferaris/q -circumferar/q -circumferas/q -circumferatis/q -circumferat/q -circumferatur/q -circumferebamini/q -circumferebam/q -circumferebamur/q -circumferebamus/q -circumferebant/q -circumferebantur/q -circumferebaris/q -circumferebar/q -circumferebas/q -circumferebatis/q -circumferebat/q -circumferebatur/q -circumferemini/q -circumferemur/q -circumferemus/q -circumferendi/q -circumferendo/q -circumferendum/q -circumferendus/abc -circumferens/q -circumferentia/a -circumferentis/fg -circumferent/q -circumferentur/q -circumfereris/q -circumferes/q -circumferetis/q -circumferet/q -circumferetur/q -circumferimini/q -circumferimur/q -circumferimus/q -circumfero/q -circumferor/q -circumfer/q -circumferremini/q -circumferrem/q -circumferremur/q -circumferremus/q -circumferrent/q -circumferrentur/q -circumferre/q -circumferreris/q -circumferrer/q -circumferres/q -circumferretis/q -circumferret/q -circumferretur/q -circumferri/q -circumferris/q -circumfers/q -circumferte/q -circumfertis/q -circumfert/q -circumfertur/q -circumferunt/q -circumferuntur/q -circumflecto/B -circumflexi/P -circumflexum/S -circumfractus/abc -circumfudi/P -circumfundo/B -circumfusum/S -circumlationis/d -circumlatio/q -circumlatum/S -circumpono/B -circumpositum/S -circumposui/P -circumquaque -circumscribo/B -circumscripsi/P -circumscriptionis/d -circumscriptio/q -circumscriptum/S -circumscriptus/abc -circumsepio/B -circumsepsi/P -circumseptum/S -circumstantia/a -circumsteti/P -circumsto/A -circumtuli/P -circumvenio/B -circumveni/P -circumventum/S -circumvolo/APS -circumvolutionis/d -circumvolutio/q -circumvolutum/S -circumvolvi/P -circumvolvo/B -circundatum/S -circundedi/P -circundo/B -citationis/d -citatio/q -citerior/r -cithara/a -citharedus/b -citimus/abc -cito/APS -citra -citro -citrum/c -citum/S -citus/abcrs -civi/P -civis/f -clam -clamo/APS -clangoris/d -clangor/q -claresco/B -clarui/P -clarus/abcrs -claudianus/abc -claudicationis/d -claudicatio/q -claudo/B -clausi/P -clausum/S -Clavius/b -clavus/b -clepsydra/a -clima/q -climatis/e -coacervationis/d -coacervatio/q -coacervo/APS -coacium/S -coactus/abc -coadunationis/d -coadunatio/q -coadunatioris/d -coadunatior/q -coaduno/APS -coagmentationis/d -coagmentatio/q -coagmento/APS -coalesco/B -coalitum/S -coalternus/abc -coalui/P -coaptationis/d -coaptatio/q -coapto/APS -coarcervo/APS -coarctationis/d -coarctatio/q -coarcto/APS -coargui/P -coarguo/B -coargutum/S -coartationis/d -coartatio/q -coarto/APS -coassumo/B -coassumpsi/P -coassumptum/S -cochlea/a -coclearis/fg -coctum/S -coda/a -codex/q -codicis/d -coeam/q -coeamus/q -coeant/q -coeas/q -coeatis/q -coeat/q -coegi/P -coelestis/fg -coelus/b -coeo/q -coeperam/q -coeperamus/q -coeperant/q -coeperas/q -coeperatis/q -coeperat/q -coeperimus/q -coeperis/q -coeperitis/q -coeperit/q -coepero/q -coeperunt/q -coepimus/q -coepi/q -coepisse/q -coepisti/q -coepitis/q -coepit/q -coerceo/B -coercitum/S -coercui/P -coeterus/abc -coetus/h -coeundi/q -coeundo/q -coeundum/q -coeuntem/q -coeunte/q -coeuntes/q -coeuntia/q -coeuntibus/q -coeunti/q -coeuntis/q -coeuntium/q -coeunt/q -cogitationis/d -cogitatio/q -cognatus/abc -cognitionis/d -cognitio/q -cognitum/S -cognitus/abc -cognomen/q -cognominis/e -cognomino/AS -cognosco/B -cognovi/P -cogo/B -cohaereo/B -cohaesi/P -cohaesum/S -cohibeo/B -cohibitum/S -cohibui/P -coibam/q -coibamus/q -coibant/q -coibas/q -coibatis/q -coibat/q -coibimus/q -coibis/q -coibitis/q -coibit/q -coibo/q -coibunt/q -coiens/q -coieram/q -coieramus/q -coierant/q -coieras/q -coieratis/q -coierat/q -coierim/q -coierimus/q -coierint/q -coieris/q -coieritis/q -coierit/q -coiero/q -coiire/q -coiissem/q -coiissemus/q -coiissent/q -coiisse/q -coiisses/q -coiissetis/q -coiisset/q -coiitierunt/q -coiitimus/q -coiiti/q -coiitis/q -coiititis/q -coiitit/q -coimus/q -coincidentia/a -coincido/B -coi/q -coirem/q -coiremus/q -coirent/q -coires/q -coiretis/q -coiret/q -cois/q -coisse/q -coite/q -coitis/q -coit/q -coitum/S -coitu/q -coitur/q -coiturus/abc -coiveram/q -coiveramus/q -coiverant/q -coiveras/q -coiveratis/q -coiverat/q -coiverim/q -coiverimus/q -coiverint/q -coiveris/q -coiveritis/q -coiverit/q -coivero/q -coivissem/q -coivissemus/q -coivissent/q -coivisse/q -coivisses/q -coivissetis/q -coivisset/q -coivitierunt/q -coivitimus/q -coiviti/q -coivitis/q -coivititis/q -coivitit/q -colaphus/b -collabor/B -collapsus/S -collateralis/fgt -collatero/APS -collationis/f -collatio/q -collatum/S -collectum/S -collectus/abc -collegi/P -collegium/c -collibro/APS -collido/B -colligantia/a -colligentia/a -colligo/ABPS -collimo/APS -collisionis/d -collisio/q -collisi/P -collisum/S -collocationis/d -collocatio/q -colloco/APS -collum/c -collustro/APS -colo/B -colophonius/abc -colorationis/d -coloratio/q -coloratus/abcrs -coloris/d -coloro/APS -color/q -colubrina/a -colui/P -columba/a -columna/a -columnaris/fg -colurus/abc -combinationis/d -combinatio/q -combino/AS -comburo/B -combussi/P -combustum/S -cometes/j -comitatus/S -comitor/A -comma/q -commata/q -commatis/e -commatorum/q -commemoro/APS -commendationis/d -commendatio/q -commendatus/abcrs -commendo/APS -commensurabilis/fgt -commensurabilitas/q -commensurabilitatis/d -commensurationis/d -commensuratio/q -commensuratus/abc -commentariolus/b -commentarium/c -commentarius/b -commentatoris/d -commentator/q -commentum/c -commentus/S -commercium/c -comminiscor/B -comminui/P -comminuo/B -comminutum/S -commisceo/B -commiscui/P -commissura/a -commistum/S -commixtum/S -commoditas/q -commoditatis/d -commodus/abcr -commonstro/APS -commoratus/S -commoror/A -commostro/APS -commotum/S -commoveo/B -commovi/P -communico/APS -communis/fgrst -commuto/APS -compactus/abc -compages/q -compaginationis/d -compaginatio/q -compagino/A -compagis/d -comparationis/f -comparatio/q -comparo/APS -compassionis/d -compassio/q -compassus/S -compatior/B -compello/ABPS -compendium/c -compenso/APS -comperio/C -comperi/P -compertum/S -competitum/S -competivi/P -competo/B -complector/B -complementum/c -compleo/B -complettor/B -completum/S -completus/abc -complevi/P -complex/q -complexus/Sh -complicis/fg -complico/APS -complura/q -complures/q -compluribus/q -complurimae/q -complurima/q -complurimarum/q -complurimas/q -complurimi/q -complurimis/q -complurimorum/q -complurimos/q -complurium/q -complusculus/abc -compono/B -comporto/APS -compositionis/d -compositio/q -compositum/S -compositus/abc -composui/P -compotationis/d -compotatio/q -comprehendi/P -comprehendo/B -comprehensum/S -comprendo/B -compressi/P -compressum/S -compressus/abcrs -comprimo/B -comprobo/APS -compuli/P -compulsum/S -computo/APS -computus/b -conatus/S -concalefacio/B -concalefactum/S -concalefeci/P -concateno/APS -concavitas/q -concavitatis/d -concavus/abcr -concedo/B -concentricus/abc -concentus/h -concepi/P -conceptionis/d -conceptio/q -conceptum/S -concessibilis/fg -concessi/P -concessum/S -concidi/P -concido/B -concinno/APS -concinnus/abcrs -concipio/B -concisionis/d -concisio/q -concisum/S -concitus/abc -concivis/f -concludo/B -conclusionis/d -conclusio/q -conclusi/P -conclusum/S -concomitatus/S -concomitor/A -concordantia/a -concordia/a -concordo/APS -concreatus/abc -conculco/APS -concurri/P -concurro/B -concurso/APS -concursum/S -concursus/h -concussi/P -concussum/S -concutio/C -condemno/APS -condenso/APS -condescendo/B -condictionis/d -condictio/q -condidi/P -conditionis/d -conditio/q -conditum/S -condo/B -conduco/B -conductum/S -conduxi/P -conecto/B -conexui/P -conexum/S -confeci/P -confectionis/d -confectio/q -confectum/S -conferamini/q -conferam/q -conferamur/q -conferamus/q -conferant/q -conferantur/q -conferaris/q -conferar/q -conferas/q -conferatis/q -conferat/q -conferatur/q -conferebamini/q -conferebam/q -conferebamur/q -conferebamus/q -conferebant/q -conferebantur/q -conferebaris/q -conferebar/q -conferebas/q -conferebatis/q -conferebat/q -conferebatur/q -conferemini/q -conferemur/q -conferemus/q -conferendi/q -conferendo/q -conferendum/q -conferendus/abc -conferens/q -conferentis/fg -conferent/q -conferentur/q -confereris/q -conferes/q -conferetis/q -conferet/q -conferetur/q -conferimini/q -conferimur/q -conferimus/q -confero/q -conferor/q -confer/q -conferremini/q -conferrem/q -conferremur/q -conferremus/q -conferrent/q -conferrentur/q -conferre/q -conferreris/q -conferrer/q -conferres/q -conferretis/q -conferret/q -conferretur/q -conferri/q -conferris/q -confers/q -conferte/q -confertis/q -confert/q -confertur/q -conferunt/q -conferuntur/q -confestim -confiant -confiat -conficio/B -confictum/S -confido/B -confierent -confieret -confieri -configo/B -configuro/APS -confingo/B -confinxi/P -confirmo/APS -confisus/S -confit -confiunt -confixi/P -confixum/S -conflicto/APS -conflictum/S -confligo/B -conflixi/P -conflo/APS -confluo/B -confluxi/P -confoedero/APS -conformis/fgr -conformitas/q -conformitatis/d -conformo/APS -confudi/P -confundo/B -confusionis/d -confusio/q -confusum/S -confutationis/d -confutatio/q -confuto/APS -congeries/i -congero/B -congessi/P -congestum/S -conglobatim -conglobatus/abcrs -conglobo/APS -conglutino/APS -congredior/B -congregationis/d -congregatio/q -congrego/APS -congressionis/d -congressio/q -congressus/Sh -congruens/q -congruentia/a -congruentis/fg -congrui/P -congruo/B -congruus/abc -conicio/B -conicus/abc -conieci/P -coniecto/APS -coniectum/S -coniectura/a -coniicio/B -coniugium/c -coniugo/APS -coniunctim -coniunctionis/d -coniunctio/q -coniunctum/S -coniunctus/abc -coniungo/B -coniunxi/P -connecto/B -connexionis/d -connexio/q -connexui/P -connexum/S -connumero/APS -conoidalis/fg -conoidis/d -conois/q -Cononis/d -Conon/q -conor/A -conprehendi/P -conprehendo/B -conprehensum/S -conquiesco/B -conquietum/S -conquievi/P -conscribo/B -conscripsi/P -conscriptum/S -consecutus/S -consensi/P -consensum/S -consentaneus/abc -consentio/C -consequens/q -consequenter -consequentia/a -consequentis/fg -consequor/B -conservationis/d -conservatio/q -conservo/APS -considerationis/d -consideratio/q -considero/APS -consilium/c -consimilis/fgrt -consisto/B -consisus/abcrs -consolatus/P -consolidativus/abc -consolor/A -consonantia/a -consono/A -consonui/P -consonus/abc -conspectum/S -conspexi/P -conspicilium/c -conspicio/B -conspiro/APS -conspisso/APS -constaturus/S -constellationis/d -constellatio/q -constiti/P -constitui/P -constituo/B -constitutionis/d -constitutio/q -constitutricis/d -constitutrix/q -constitutum/S -consto/A -constructionis/d -constructio/q -constructum/S -constructus/abc -construo/B -construxi/P -consuesco/B -consuetudinis/d -consuetudo/q -consuetum/S -consuevi/P -consui/P -consul/d -consulo/B -consultum/S -consultus/abcrs -consului/P -consummatus/abcs -consummo/APS -consumo/B -consumpsi/P -consumptum/S -consuo/B -consurgo/B -consurrectum/S -consurrexi/P -consutum/S -consyderationis/d -consyderatio/q -consydero/APS -contactum/S -contactus/h -contemno/B -contemplatricis/d -contemplatrix/q -contemplatus/S -contemplor/A -contempsi/P -contemptum/S -contendi/P -contendo/B -contentum/S -contentus/abc -contermino/APS -conterminus/abc -contero/B -contestatus/S -contestor/A -contexo/B -contextum/S -contextus/h -contexui/P -contigi/P -contiguus/abc -continens/q -continentis/fg -contineo/B -contingenter -contingentia/a -contingo/B -continuatim -continuationis/d -continuatio/q -continui/P -continuo/APS -continuus/abc -contractum/S -contractus/h -contradico/B -contradictionis/d -contradictio/q -contradictum/S -contradixi/P -contraho/B -contranisus/S -contranitocrr/B -contranitor/B -contrapendentum/S -contrapendo/B -contrapono/B -contrapositus/abc -contra/q -contrarius/abc -contraxi/P -contrecto/APS -contritum/S -contrivi/P -controversia/a -contuli/P -contumelia/a -conturbo/APS -conus/b -convalesco/B -convalui/P -conveniens/q -convenienter -convenientia/a -convenientis/fgr -convenio/C -conveni/P -conventum/S -conversim -conversionis/d -conversio/q -conversum/S -conversus/abc -converti/P -converto/B -convestio/C -convestitum/S -convestivi/P -convexitas/q -convexitatis/d -convexus/abcrs -convici/P -convictum/S -convinco/B -convitium/c -convivo/A -convolutum/S -convolvi/P -convolvo/B -coorior/C -coortus/S -copia/a -copior/A -copiosus/abcrs -copulo/APS -coquo/B -coram/q -corda/a -corneus/abc -corniculatus/abc -cornu/h -corollarium/c -corona/a -coronarius/abc -coronidis/d -coronis/q -corono/APS -corporeus/abc -corporis/e -corpulentia/a -corpulentus/abc -corpusculum/c -corpus/q -correctionis/d -correctio/q -correctum/S -correctus/abcrs -correlativus/abc -correptum/S -correspondeo/B -correxi/P -corrigo/B -corripio/B -corripui/P -corroboro/APS -corrodo/B -corrosi/P -corrui/P -corrumpo/B -corruo/B -corrupi/P -corruptibilis/fg -corruptum/S -corruptus/abcrs -corrusum/S -corusco/APS -cosmicus/abc -cosmographia/a -cothurnus/b -counio/C -coxa/a -coxi/P -crassities/i -crassitudinis/d -crassitudo/q -crassus/abcrs -creatum/S -creber/s -crebri/abcr -crebritas/q -crebritatis/d -credibilis/fg -credidi/P -creditum/S -credo/B -crementum/c -cremonensis/fg -creo/AP -crepatura/a -cresco/B -cretaceus/abc -cretensis/fg -cretum/S -crevi/P -croceus/abc -crocus/b -crucio/APS -crucis/d -cruris/e -crus/q -crux/q -crystallinus/abc -cubicus/abc -cubus/abc -cucurri/P -cudi/P -cudo/B -cui -cuicumque -cuicunque -cuidam/q -cuilibet -cuipiam -cuiquam -cuique -cuius -cuiuscumque -cuiuscunque -cuiusdam/q -cuiuslibet -cuiusmodi -cuiuspiam -cuiusquam -cuiusque -cuiusvis/q -cuivis/q -culpa/a -culter/q -cultoris/d -cultor/q -cultri/b -cultum/S -cum -cumque -cumulationis/d -cumulatio/q -cumulo/APS -cumulus/b -cunctus/abc -cuneus/b -cunque -cupiditas/q -cupiditatis/d -cupii/P -cupio/B -cupitum/S -cupivi/P -cur -cura/a -curiositas/q -curiositatis/d -curiosus/abcrs -curo/APS -curro/B -currus/h -cursum/S -curtus/abcrs -curvatus/abcr -curvilineus/abc -curvitas/q -curvitatis/d -curvo/APS -curvus/abc -cuspidis/d -cuspis/q -cusum/S -cutis/f -cyclus/b -cylindricus/abc -cylindrulus/b -cylindrus/b -cynosura/a -cyrenaeus/abc -daedalus/abc -damno/APS -damnosus/abc -damnum/c -datum/S -datus/abc -Davidis/d -David/q -de -debeo/B -debilis/fgr -debilitas/q -debilitatio/q -debilitatis/d -debilitionis/d -debilito/APS -debitum/S -debui/P -decadicum/c -decadis/fg -decagonus/abc -deceat/q -decebat/q -decebit/q -decedo/B -december/q -decembris/f -decem/q -decens/q -decentis/fgs -decepi/P -deceptum/S -decere/q -deceret/q -decerno/B -decerpo/B -decerpsi/P -decerptum/S -decessi/P -decessum/S -decet/q -decies/q -decimus/abc -decipio/B -decipula/a -declaro/APS -declinabilis/fg -declinationis/d -declinatio/q -declino/APS -decocta/a -decoris/e -decoro/APS -decrementum/c -decresco/B -decretum/S -decrevi/P -decubui/P -decuerat/q -decuierit/q -decuisset/q -decuit/q -decumbo/B -decuplo/APS -decuplus/abc -decurri/P -decurro/B -decursum/S -decus/q -dedeceat/q -dedecebat/q -dedecebit/q -dedecere/q -dedeceret/q -dedecet/q -dedecuerit/q -dedecuierat/q -dedecuisset/q -dedecuit/q -dedicatus/abc -dedico/APS -dedi/P -deditus/abc -Dedomena/q -deduco/B -deductum/S -deduxi/P -deeram/q -deeramus/q -deerant/q -deeras/q -deeratis/q -deerat/q -deerimus/q -deeris/q -deeritis/q -deerit/q -deero/q -deerunt/q -dees/q -deessem/q -deessemus/q -deessent/q -deesse/q -deesses/q -deessetis/q -deesset/q -deeste/q -deestis/q -deesto/q -deestote/q -deest/q -defeci/P -defectionis/d -defectio/q -defectum/S -deferamini/q -deferam/q -deferamur/q -deferamus/q -deferant/q -deferantur/q -deferaris/q -deferar/q -deferas/q -deferatis/q -deferat/q -deferatur/q -deferebamini/q -deferebam/q -deferebamur/q -deferebamus/q -deferebant/q -deferebantur/q -deferebaris/q -deferebar/q -deferebas/q -deferebatis/q -deferebat/q -deferebatur/q -deferemini/q -deferemur/q -deferemus/q -deferendi/q -deferendo/q -deferendum/q -deferendus/abc -deferens/q -deferentis/fg -deferent/q -deferentur/q -defereris/q -deferes/q -deferetis/q -deferet/q -deferetur/q -deferimini/q -deferimur/q -deferimus/q -defero/q -deferor/q -defer/q -deferremini/q -deferrem/q -deferremur/q -deferremus/q -deferrent/q -deferrentur/q -deferre/q -deferreris/q -deferrer/q -deferres/q -deferretis/q -deferret/q -deferretur/q -deferri/q -deferris/q -defers/q -deferte/q -defertis/q -defert/q -defertur/q -deferunt/q -deferuntur/q -deficio/B -definio/C -definitionis/d -definitio/q -definitum/S -definivi/P -deflecto/B -deflexi/P -deflexum/S -defluo/B -defluxi/P -defore/q -deformis/fg -deformitas/q -deformitatis/d -deformo/APS -defuere/q -defui/P -defuturam/q -defuturum/q -defuturus/q -degenero/APS -dego/B -degusto/APS -deieci/P -deiectum/S -deiicio/C -dein -deinceps -deinde -dein/q -delabor/B -delapsus/S -delatum/S -delebilis/fg -delectabilis/fg -delectationis/d -delectatio/q -delecto/APS -delectum/S -delegi/P -deleo/APS -deletus/abc -delibo/APS -delicatus/abcrs -deligo/B -deliniatum/S -deliniavi/P -delinio/A -delitesco/B -delitui/P -delius/abc -demensum/S -demergo/B -demersi/P -demersum/S -demetior/C -deminui/P -deminuo/B -deminutionis/d -deminutio/q -deminutum/S -demisi/P -demissum/S -demitto/B -demo/B -demolior/C -demolitus/S -demonstrationis/d -demonstratio/q -demonstrativus/abc -demonstratus/abc -demonstro/APS -dempsi/P -demptum/S -demptus/abc -demulceo/B -demulsi/P -demultum/S -demum -denarius/abc -denique -denominationis/d -denominatio/q -denominatoris/d -denominator/q -denomino/APS -denoto/APS -densitas/q -densitatis/d -denso/APS -dens/q -densus/abcrs -denticulus/b -dentis/d -denuo -deorsum -dependi/P -dependo/B -depensum/S -depictum/S -depingo/B -depinxi/P -deploro/APS -deprehendi/P -deprehendo/B -deprehensionis/d -deprehensio/q -deprehensum/S -deprendi/P -deprendo/B -deprensum/S -depressi/P -depressum/S -depressus/r -deprimo/B -depromo/B -deprompsi/P -depromptum/S -depugno/APS -deque -derivo/APS -desaevii/P -desaevio/C -desaevitum/S -descendi/P -descendo/B -descensionis/d -descensio/q -descensum/S -describo/B -descripsi/P -descriptionis/d -descriptio/q -descriptum/S -descriptus/abc -deseco/A -desectum/S -desecui/P -desero/B -desertum/S -deserui/P -desiderium/c -desidero/APS -desidia/a -designo/APS -desii/P -desim/q -desimus/q -desino/B -desint/q -desis/q -desisto/B -desitis/q -desit/q -desitum/S -despero/A -destino/APS -destiti/P -destitui/P -destitum/S -destituo/B -destitutum/S -destructionis/d -destructio/q -destructum/S -destruo/B -destruxi/P -desumo/B -desumpsi/P -desumptum/S -desum/q -desumus/q -desunto/q -desunt/q -desuper -desydero/APS -detectum/S -detego/B -deterior/r -determino/APS -deterrimus/abc -detexi/P -detorqueo/B -detorsi/P -detortum/S -detractator/q -detractionis/f -detractio/q -detractoris/d -detractum/S -detractus/abc -detraho/B -detraxi/P -detrecto/APS -detrudo/B -detrusi/P -detrusum/S -detuli/P -deus/b -devenio/C -deveni/P -deventum/S -deviationis/d -deviatio/q -devio/APS -devolo/APS -devolutum/S -devolvi/P -devolvo/B -devotionis/d -devotio/q -devotus/abc -dexteri/abcr -dexteritas/q -dexteritatis/d -dexter/q -dextri/abc -diagonalis/fg -dialecticus/abc -dialogus/b -diameter/q -diametralis/fgt -diametri/b -diapason -diapente -diaphanus/abc -diarium/c -diatessaron -diatonicus/abc -dico/ABPS -dicto/APS -dictum/S -dictus/abc -didici/P -dieseon/q -dieseos/q -dieses/q -dies/i -diesibus/q -diesim/q -diesi/q -diesis/q -differamini/q -differam/q -differamur/q -differamus/q -differant/q -differantur/q -differaris/q -differar/q -differas/q -differatis/q -differat/q -differatur/q -differebamini/q -differebam/q -differebamur/q -differebamus/q -differebant/q -differebantur/q -differebaris/q -differebar/q -differebas/q -differebatis/q -differebat/q -differebatur/q -differemini/q -differemur/q -differemus/q -differendi/q -differendo/q -differendum/q -differendus/abc -differens/q -differentia/a -differentis/fg -different/q -differentur/q -differeris/q -differes/q -differetis/q -differet/q -differetur/q -differimini/q -differimur/q -differimus/q -differo/q -differor/q -differ/q -differremini/q -differrem/q -differremur/q -differremus/q -differrent/q -differrentur/q -differre/q -differreris/q -differrer/q -differres/q -differretis/q -differret/q -differretur/q -differri/q -differris/q -differs/q -differte/q -differtis/q -differt/q -differtur/q -differunt/q -differuntur/q -difficilis/fgrt -difficillimus/abc -difficultas/q -difficultatis/d -difficulter -diffinio/C -diffinitionis/d -diffinitio/q -diffinitum/S -diffinivi/P -difflo/A -diffudi/P -diffundo/B -diffusum/S -digero/B -digessi/P -digestum/S -digitalis/fg -digitus/b -dignitas/q -dignitatis/d -dignosco/B -dignotum/S -dignovi/P -dignus/abcrs -digredior/B -digressus/Sh -dilatationis/d -dilatatio/q -dilato/APS -dilatum/S -dilectum/S -dilexi/P -diligens/q -diligenter -diligentia/a -diligentis/fgs -diligo/B -dimensionis/d -dimensio/q -dimensus/S -dimetiens/q -dimetientis/d -dimetior/C -dimico/APS -dimidiatus/abc -dimidius/abc -diminuo/B -diminutionis/d -diminutio/q -dimisi/P -dimissum/S -dimitto/B -dimotum/S -dimoveo/B -dimovi/P -Diocles/q -Dioclis/f -Diodorus/b -Diogenes/q -Diogenis/d -Dionysius/b -Diophantus/b -directionis/d -directio/q -directum/S -directus/abcr -diremi/P -diremptum/S -direxi/P -dirigo/B -dirimo/B -discedo/B -discerno/B -discessi/P -discessum/S -discidi/P -discindo/B -disciplina/a -discipula/a -discipulus/b -discissum/S -discitum/S -disco/B -discordantia/a -discordo/APS -discrepantia/a -discrepo/AP -discretum/S -discrevi/P -discrimen/q -discriminis/e -discrimino/APS -discriptionis/d -discriptio/q -discurri/P -discurro/B -discursum/S -discussionis/d -discussio/q -discussi/P -discussum/S -discutio/B -disdiapason -disertum/S -disgregationis/d -disgregatio/q -disgrego/APS -disieci/P -disiectum/S -disiicio/C -disiunctim -disiunctum/S -disiungo/B -disiunxi/P -dislatum/S -dispectum/S -dispello/B -dispendium/c -dispenso/A -dispesco/B -dispescui/P -dispexi/P -dispicio/B -displico/A -dispono/B -dispositionis/d -dispositio/q -dispositum/S -dispositus/abc -disposui/P -dispuli/P -dispulsum/S -disputationis/d -disputatio/q -disputatoris/d -disputator/q -disputo/APS -disseco/A -dissectum/S -dissecui/P -dissedi/P -dissero/B -disserui/P -dissessum/S -dissideo/B -dissimilis/fg -dissimilitudinis/d -dissimilitudo/q -dissimillimus/abc -dissimulo/APS -dissitus/abc -dissonantia/a -distantia/a -distermino/APS -distinctionis/d -distinctio/q -distinctum/S -distinctus/abcr -distinguo/B -distinxi/P -distiti/P -disto/A -distractum/S -distraho/B -distraxi/P -distribui/P -distribuo/B -distributionis/d -distributio/q -distributum/S -distuli/P -disturbo/APS -ditonum/c -ditonus/b -diu -diurnus/abc -dius/abc -diuturnus/abc -diversicoloris/df -diversicolor/q -diversificatus/abc -diversifico/AS -diversitas/q -diversitatis/d -diversum/S -diversus/abcr -diverti/P -diverto/B -dives/q -divido/B -divinationis/d -divinatio/q -divino/APS -divinus/abcs -divisibilis/fg -divisim -divisionis/d -divisio/q -divisi/P -divisoris/d -divisor/q -divisum/S -divisus/abc -divitiae/q -divitiarum/q -divitias/q -divitiis/q -divitis/de -dixi/P -do/A -doceo/B -doctrina/a -doctum/S -doctus/abcrs -docui/P -dodecagonicus/abc -dodecagonus/b -dodecahedrus/b -dodecuplus/abc -doleo/B -dolitum/S -dolium/c -doloris/d -dolor/q -dolui/P -dominatus/S -dominicalis/fg -dominicus/abc -dominium/c -dominor/A -dominus/b -Domitianus/b -domitricis/d -domitrix/q -domus/bh -donec -Dorius/b -Dorotheus/b -dorsum/c -Dositheus/b -dos/q -dotis/d -doto/APS -drachma/a -draconis/d -draco/q -duabus/q -duae/q -duarum/q -duas/q -dubitationis/d -dubitatio/q -dubito/APS -dubium/c -ducentesimus/abc -ducenties -ducis/d -duco/B -ductarius/abc -ductionis/d -ductio/q -ducto/APS -ductoris/d -ductor/q -ductum/S -dudum -dulcis/fg -dulcisonus/abc -dum -dumetum/c -dummodo -dumtaxat -duntaxat -duobus/q -duodecim/q -duodecimus/abc -duodecuplus/abc -duodenarius/abc -duodevicesimus/abc -duodevigintuplus/abc -duo/q -duorum/q -duos/q -duplex/q -duplicationis/d -duplicatio/q -duplicis/fg -duplicitas/q -duplicitatis/d -dupliciter/q -duplico/APS -duplo/AS -duplus/abc -durities/i -duro/APS -durus/abc -duxi/P -dux/q -dyameter/q -dyametri/b -eadem/q -eaedem/q -eae/q -eamdem/q -eam/q -eamus/q -eandem/q -eant/q -ea/q -earumdem/q -earum/q -earundem/q -easdem/q -eas/q -eatenus -eatis/q -eat/q -ebrius/abc -eccam -ecca/q -ecce -eccentricitas/q -eccentricitatis/d -eccentricus/abc -eccessus/h -ecclesia/a -ecclesiasticus/abc -eclipsim/q -eclipsis/f -eclipticus/abc -econtrario/q -edam/q -edamus/q -edant/q -edas/q -edatis/q -edat/q -edebam/q -edebamus/q -edebant/q -edebatis/q -edebat/q -ede/q -ederem/q -ederemus/q -ederent/q -edere/q -ederes/q -ederetis/q -ederet/q -edidi/P -edimus/q -edi/P -edis/q -edite/q -editionis/d -editio/q -editis/q -edit/q -editum/S -edo/Bq -educationis/d -educatio/q -educo/B -eductum/S -edunt/q -eduxi/P -effeci/P -effectum/S -effectus/h -efferamini/q -efferam/q -efferamur/q -efferamus/q -efferant/q -efferantur/q -efferaris/q -efferar/q -efferas/q -efferatis/q -efferat/q -efferatur/q -efferebamini/q -efferebam/q -efferebamur/q -efferebamus/q -efferebant/q -efferebantur/q -efferebaris/q -efferebar/q -efferebas/q -efferebatis/q -efferebat/q -efferebatur/q -efferemini/q -efferemur/q -efferemus/q -efferendi/q -efferendo/q -efferendum/q -efferendus/abc -efferens/q -efferentis/fg -efferent/q -efferentur/q -effereris/q -efferes/q -efferetis/q -efferet/q -efferetur/q -efferimini/q -efferimur/q -efferimus/q -effero/q -efferor/q -effer/q -efferremini/q -efferrem/q -efferremur/q -efferremus/q -efferrent/q -efferrentur/q -efferre/q -efferreris/q -efferrer/q -efferres/q -efferretis/q -efferret/q -efferretur/q -efferri/q -efferris/q -effers/q -efferte/q -effertis/q -effert/q -effertur/q -efferunt/q -efferuntur/q -efficacia/a -efficacis/fgrs -efficax/q -efficio/B -effictum/S -effigies/i -effingo/B -effinxi/P -effluo/B -effluxi/P -effluxus/abc -efformo/APS -effudi/P -effulsionis/d -effulsio/q -effundo/B -effusum/S -egeo/B -egeui/P -egi/P -egomet/q -ego/q -egredior/B -egregius/abc -egressionis/d -egressio/q -egressus/Sh -eiaculo/APS -eidem/q -eieci/P -eiectum/S -eiicio/B -ei/q -eisdem/q -eis/q -eiusdem/q -eiusmodi -eius/q -elabor/B -elaboro/APS -elapsus/S -elatum/S -electionis/d -electio/q -electum/S -elegans/q -elegantia/a -elegantis/fg -elegi/P -elementa/q -elementaris/fg -elementarius/abc -elementis/q -elementorum/q -elementum/c -elevationis/d -elevatio/q -elevo/APS -elicio/B -elicitum/S -elicui/P -elido/B -eligo/B -elimo/APS -eliquo/APS -elisi/P -elisum/S -ellipseon -ellipseos -ellipses -ellipsi -ellipsibus -ellipsim -ellipsin -ellipsis -ellipsium -ellipticus/abc -ellychnium/c -elongationis/d -elongatio/q -eluctatus/S -eluctor/A -eludo/B -elusi/P -elusum/S -emaculo/APS -emano/APS -emendationis/d -emendatio/q -emendatus/abcs -emendo/APS -ementior/C -ementitus/S -emergo/B -emersi/P -emersum/S -eminens/q -eminentis/g -emineo/B -eminui/P -emisi/P -emissum/S -emitto/B -Empedocles/q -Empedoclis/d -emunctum/S -emungo/B -emunxi/P -enchiridii/c -enchiridion/q -enim -enimvero -enisus/S -enitor/B -enneachordus/abc -enneagonus/abc -enormis/fg -eodem/q -eo/q -eorumdem/q -eorum/q -eorundem/q -eosdem/q -eos/q -ephemeridis/d -ephemeris/q -Ephesus/b -epibata/a -Epicurus/b -epicyclus/b -epigramma/q -epigrammata/q -epigrammatis/e -epigrammatorum/q -epilogus/b -episcopus/b -epistola/a -epistolium/c -epistula/a -epitome/j -epitritus/abc -eques/q -equidem -equitis/d -equus/b -eram/q -eramus/q -erant/q -Erasmus/b -eras/q -eratis/q -Eratosthenes/q -Eratosthenis/d -erat/q -erectionis/d -erectio/q -erectum/S -erectus/abcr -ereptum/S -erexi/P -erga -ergo -erigo/B -erimus/q -eripio/B -eripui/P -eris/q -eritis/q -erit/q -ero/q -erratus/h -erro/APS -erroris/d -error/q -erubesco/B -erubui/P -eruditus/abcrs -erumpo/B -erunt/q -erupi/P -eruptum/S -esca/a -es/q -essem/q -essemus/q -essent/q -esse/q -esses/q -essetis/q -esset/q -este/q -estis/q -esto/q -estote/q -est/q -esum/S -et -etc -etenim -etiam -etiamnum/q -etiamsi -etsi -etymologia/a -eucharistia/a -Euclides/q -euclideus/abc -Euclidis/df -Eudemus/b -Eudoxus/abc -eumdem/q -eum/q -eundem/q -eundi/q -eundo/q -eundum/q -euntem/q -eunte/q -euntes/q -euntia/q -euntibus/q -eunti/q -euntis/q -euntium/q -eunt/q -europa/a -Eutocius/b -evacuo/APS -evado/B -evanesco/B -evanui/P -evasi/P -evasum/S -evenio/C -eveni/P -eventum/S -eversim -eversum/S -everti/P -everto/B -evidens/q -evidentis/fgrs -evito/APS -evolutum/S -evolvi/P -evolvo/B -exactum/S -exactus/abcrs -exaequo/APS -exalto/APS -examen/q -examinis/e -examino/APS -exaro/APS -exaspero/APS -excandesco/B -excandui/P -excavo/APS -excedo/B -excellens/q -excellentia/a -excellentis/fg -excello/B -excellui/P -excelsus/abcr -excepi/P -exceptum/S -excerpo/B -excerpsi/P -excerptum/S -excessi/P -excessivus/abc -excessum/S -excessus/h -excidi/P -excido/B -excipio/B -excisum/S -excito/APS -exclamo/APS -excludo/B -exclusi/P -exclusum/S -excogito/APS -excrementum/c -excresco/B -excretum/S -excrevi/P -excubiae/q -excubiarum/q -excubias/q -excubiis/q -excudi/P -excudo/B -excursionis/d -excursio/q -excuso/APS -excussionis/d -excussio/q -excussi/P -excussum/S -excusum/S -excutio/B -exeam/q -exeamus/q -exeant/q -exeas/q -exeatis/q -exeat/q -execrabilis/fg -executionis/d -executio/q -executus/S -exegi/P -exemi/P -exemplaris/e -exemplarium/c -exemplar/q -exemplo/APS -exemplum/c -exemptum/S -exeo/q -exequor/B -exequutionis/d -exequutio/q -exerceo/B -exercitamentum/c -exercitionis/e -exercitio/q -exercitium/c -exercito/APS -exercitum/S -exercui/P -exeundi/q -exeundo/q -exeundum/q -exeuntem/q -exeunte/q -exeuntes/q -exeuntia/q -exeuntibus/q -exeunti/q -exeuntis/q -exeuntium/q -exeunt/q -exhalationis/d -exhalatio/q -exhaurio/C -exhausi/P -exhaustum/S -exhibeo/B -exhibitum/S -exhibui/P -exibam/q -exibamus/q -exibant/q -exibas/q -exibatis/q -exibat/q -exibimus/q -exibis/q -exibitis/q -exibit/q -exibo/q -exibunt/q -exiens/q -exientis/q -exieram/q -exieramus/q -exierant/q -exieras/q -exieratis/q -exierat/q -exierim/q -exierimus/q -exierint/q -exieris/q -exieritis/q -exierit/q -exiero/q -exigo/B -exiguus/abcrs -exiissem/q -exiissemus/q -exiissent/q -exiisse/q -exiisses/q -exiissetis/q -exiisset/q -exiitierunt/q -exiitimus/q -exiiti/q -exiitis/q -exiititis/q -exiitit/q -exilio/C -exilis/fgr -exilui/P -eximo/B -eximus/q -exinde -exi/q -exirem/q -exiremus/q -exirent/q -exire/q -exires/q -exiretis/q -exiret/q -exis/q -exisse/q -existimo/APS -existo/B -exite/q -exitialis/fg -exitis/q -exit/q -exitum/S -exitu/q -exitur/q -exiturus/abc -exiveram/q -exiveramus/q -exiverant/q -exiveras/q -exiveratis/q -exiverat/q -exiverim/q -exiverimus/q -exiverint/q -exiveris/q -exiveritis/q -exiverit/q -exivero/q -exivissem/q -exivissemus/q -exivissent/q -exivisse/q -exivisses/q -exivissetis/q -exivisset/q -exivitierunt/q -exivitimus/q -exiviti/q -exivitis/q -exivititis/q -exivitit/q -exonero/APS -exordior/C -exordium/c -exorior/C -exorno/APS -exorsus/S -exortus/S -exoticus/abc -expansionis/d -expansio/q -expansus/abcrs -expectationis/d -expectatio/q -expecto/APS -expedio/C -expeditum/S -expeditus/abcr -expedivi/P -expello/B -expendo/B -expensi/P -expensum/S -experientia/a -experimentum/c -experior/C -expers/q -expertis/de -expertus/S -expetitum/S -expetivi/P -expeto/B -explanationis/d -explanatio/q -explano/APS -explausi/P -explausum/S -expleo/B -expletum/S -explevi/P -explicationis/d -explicatio/q -explicitum/S -explico/APS -explicui/P -explodo/B -exploro/APS -expono/B -expoposci/P -exposcitum/S -exposco/B -expositionis/d -expositio/q -expositoris/d -expositor/q -expositum/S -expostulo/APS -exposui/P -expressi/P -expressum/S -expressus/abcr -exprimo/B -expui/P -expuli/P -expulsum/S -expultricis/d -expultrix/q -expunctum/S -expungo/B -expunxi/P -expuo/B -exputum/S -ex/q -exquiro/B -exquisitum/S -exquisivi/P -exsicco/APS -exsisto/B -exspatior/A -exspatus/S -exstiti/P -extendi/P -extendo/B -extensum/S -extensus/abcr -extenuo/APS -extergeo/B -exterior/r -externa/a -extimo/A -extiti/P -exto/A -extollo/B -extractionis/d -extractio/q -extractum/S -extraho/B -extra/q -extraxi/P -extrema/a -extremitas/q -extremitatis/d -extremus/abc -extrinsecus/abc -extrorsum -extructum/S -extruo/B -extruxi/P -extuli/P -exulo/APS -exulto/APS -exultum/S -exundantia/a -exupero/APS -exurectum/S -exurgo/B -exuro/B -exurrexi/P -exusi/P -exustum/S -faber/q -fabri/b -fabrica/a -fabrico/APS -fabrilis/fg -fabula/a -fabulosus/abcs -fabulus/b -facetus/abc -faciendus/abc -faciens/q -facientis/fg -facies/i -facilis/fgrt -facilitas/q -facilitatis/d -facillimus/abc -facinorosus/abc -facio/B -factito/APS -factum/S -factus/abch -facultas/q -facultatis/d -facundia/a -falcis/de -fallacia/a -fallacis/fg -fallax/q -fallo/B -falsum/S -falsus/abcrs -falx/q -fama/a -familiaris/fg -famulatus/S -famulor/A -fanum/c -farina/a -fassus/S -fastidiosus/abcrs -fastidium/c -fastigium/c -fastus/abc -fateor/B -fatigo/APS -fauces/q -faucibus/q -faucium/q -favilla/a -favoris/d -favor/q -februarius/abc -feci/P -fecundus/abc -fefelli/P -felicis/fgrt -felicitas/q -felicitatis/d -felix/q -femoris/e -femur/q -fenestra/a -feramini/q -feram/q -feramur/q -feramus/q -ferant/q -ferantur/q -feraris/q -ferar/q -feras/q -feratis/q -ferat/q -feratur/q -fere -ferebamini/q -ferebam/q -ferebamur/q -ferebamus/q -ferebant/q -ferebantur/q -ferebaris/q -ferebar/q -ferebas/q -ferebatis/q -ferebat/q -ferebatur/q -feremini/q -feremur/q -feremus/q -ferendi/q -ferendo/q -ferendum/q -ferendus/abc -ferens/q -ferentis/fg -ferent/q -ferentur/q -fereris/q -feres/q -feretis/q -feret/q -feretur/q -ferimini/q -ferimur/q -ferimus/q -ferio/C -ferme -fero/q -feror/q -fer/q -ferremini/q -ferrem/q -ferremur/q -ferremus/q -ferrent/q -ferrentur/q -ferre/q -ferreris/q -ferrer/q -ferres/q -ferretis/q -ferret/q -ferretur/q -ferreus/abc -ferri/q -ferris/q -ferrum/c -fers/q -ferte/q -fertilis/fgt -fertis/q -fert/q -fertur/q -ferula/a -ferunt/q -feruntur/q -festinanter/q -festino/APS -festivitas/q -festivitatis/d -festivus/abc -festuca/a -festus/abc -fiam/q -fiamus/q -fiant/q -fias/q -fiatis/q -fiat/q -fictum/S -fidelis/fgt -fides/i -fidi/P -fidis/f -fiebam/q -fiebamus/q -fiebant/q -fiebas/q -fiebatis/q -fiebat/q -fiemus/q -fient/q -fierem/q -fieremus/q -fierent/q -fieres/q -fieretis/q -fieret/q -fieri/q -fies/q -fietis/q -fiet/q -figo/B -figulus/b -figura/a -figurationis/d -figuratio/q -figuro/APS -filamen/q -filaminis/e -filius/b -filum/c -fimus/q -findo/B -fingo/B -finio/C -finis/fq -finitum/S -finivi/P -finxi/P -fio/q -firmamentum/c -Firmicus/b -firmiter -firmo/APS -firmus/abcrs -fis/q -fissum/S -fistula/a -fitis/q -fit/q -fiunt/q -fixi/P -fixum/S -fixus/abc -flabellum/c -flamen/q -flaminis/e -flamma/a -flammeus/abc -flammor/APS -flatus/h -flavesco/B -flavus/abc -flebilis/fg -flecto/B -fleo/B -fletum/S -flevi/P -flexibilis/fgr -flexionis/d -flexio/q -flexi/P -flexum/S -flo/APS -floccus/b -Florus/b -fluctuationis/d -fluctuatio/q -fluctuo/APS -fluctus/h -fluvius/b -fluxus/abch -fodina/a -foecundus/abc -foedus/abc -foemina/a -folium/c -follis/f -fomes/q -fomitis/d -fons/q -fontis/d -foramen/q -foraminatus/abc -foraminis/e -forceps/q -forcipis/d -forensis/fg -fore/q -forfex/q -forficis/d -forma/a -formationis/d -formatio/q -formidabilis/fg -formido/APS -formo/APS -foro/APS -forsan -fortasse -fortifico/APS -fortis/fgrs -fortitudinis/d -fortitudo/q -fortuitus/abc -fortunatus/abc -fotum/S -foveo/B -fovi/P -fractionis/d -fractio/q -fractum/S -fragmentum/c -fragoris/d -fragor/q -Franciscus/b -frango/B -frater/q -fratris/f -fraudo/APS -fregi/P -frequens/q -frequentis/fgrs -frequento/APS -fretum/c -frigiditas/q -frigiditatis/d -frigidus/abc -frivolus/abc -frondis/d -frons/q -frontis/d -fructuosus/abcr -frustratorius/abc -frustro/APS -frustum/c -fuere/q -fugio/B -fugi/P -fugiturus/S -fui/P -fulcimentum/c -fulcio/C -fulcrum/c -fulgeo/B -fulgetrum/c -fulgoris/d -fulgor/q -fulguris/e -fulgur/q -fulmen/q -fulminis/e -fulsionis/d -fulsio/q -fulsi/P -fultum/S -fumus/b -functus/S -funda/a -fundamentum/c -fundo/APS -fungor/B -funiculus/b -funis/f -furcula/a -furibundus/abc -furtum/c -fusus/abcr -futilis/fg -futuram/q -futurum/abcq -futurus/abcq -galaxias/a -gallus/b -garrio/C -garritum/S -garrivi/P -garrulus/abc -gaudeo/B -gaudium/c -Gauricus/b -gavisus/P -gazum/c -Gellius/b -Gelonis/d -Gelo/q -gelum/q -gelu/q -gemino/APS -geminus/abc -gemma/aq -gemmata/q -gemmatis/e -gemmatorum/q -genealogia/a -generalis/fgrst -generationis/d -generatio/q -generis/d -genero/APS -generosus/abc -genitricis/d -genitrix/q -genitum/S -genitus/abc -geno/B -gens/q -gentis/d -genu/h -genui/P -genus/q -geographia/a -geographus/b -geometra/a -geometria/a -geometricus/abc -Georgius/b -Germania/a -gero/B -gessi/P -gesto/APS -gestum/S -gigno/B -giro/APS -glacialis/fg -glacies/i -gladius/b -globosus/abc -globulus/b -globus/b -gloria/a -gloriatus/S -glorior/A -gluten/q -glutinis/e -gnomonicus/abc -gnomonis/d -gnomon/q -gnomo/q -gortynius/abc -gplips/q -gracilis/fgrs -gracillimus/abc -gradatim/q -gradior/B -gradus/h -graecus/abc -grammaticus/abc -grandis/fgr -gratia/a -gratus/abcrs -gravis/fgrst -gravitas/q -gravitatis/d -gravo/APS -gressus/S -grossus/abcrs -gruis/d -grus/q -gubernaculum/c -gubernatoris/d -gubernator/q -Guidonis/d -Guido/q -gutta/a -guttula/a -gymnasium/c -gyrus/b -habena/a -habeo/B -habitabilis/fg -habitationis/d -habitatio/q -habito/APS -habitudinis/d -habitudo/q -habitum/S -habui/P -hac/q -hactenus -haecine/q -haec/q -hae/q -hanc/q -harena/a -harmonia/a -harmonica/a -harmonicus/abc -harum/q -has/q -hasta/a -haud -haudquaquam/q -haurio/C -hausi/P -haustum/S -hebdomada/a -hecatontadicum/c -heliacus/abc -helicis/d -helix/q -hemicirculus/b -hemicylindrus/b -hemisphaerium/c -hemitonium/c -heptachordus/abc -heptagonus/abc -herba/a -Hercules/q -Herculis/d -heroicus/abc -Hesiodus/b -hexachordus/abc -hexagonalis/fg -hexagonus/abc -hexahedrus/abc -hiatus/h -hicine/q -hic/q -hiemalis/fg -Hieronis/d -Hieronymus/b -Hiero/q -hilaris/fg -hilaro/APS -hinc -hinnitus/h -Hipparchus/b -Hippocrates/q -Hippocratis/d -hi/q -hisce/q -hisco/B -his/q -historia/a -historicus/abc -hocine/q -hoc/q -hodie -hodiernus/abc -Homerus/b -hominis/d -homogeneus/abc -homologus/abc -homo/q -honoris/d -honor/q -hora/a -horarius/abc -horizon/q -horizontalis/fg -horizontis/d -horologium/c -horoscopo/A -horresco/B -horrui/P -hortus/b -horum/q -hosce/q -hospes/q -hospitis/d -hos/q -hostilis/fg -hostis/f -huc -hucusque -huic/q -huiusce/q -huiusmodi -huius/q -humanitas/q -humanitatis/d -humanus/abcs -humerus/b -humiditas/q -humiditatis/d -humidus/abc -humilitas/q -humilitatis/d -humillimus/abc -humoris/d -humor/q -hunc/q -hydraulicus/abc -hymnus/b -hypate/j -hyperbola/a -hyperbole/j -hyperbolicus/abc -hyperdorius/abc -hypermixolydius/abc -hyperphrygius/abc -hypodorius/abc -hypolydius/abc -hypomixolydius/abc -hypophrygius/abc -hypothemisa/a -hypothesim/q -hypothesi/q -hypothesis/q -I -iaceo/B -iacio/B -iaciturus/S -Iacobus/b -iactum/S -iacui/P -iaculationis/d -iaculatio/q -iaculatus/S -iaculor/A -iaculum/c -iam -Iamblicus/b -iamdudum -iampridem -iam/q -ianuarius/abc -iaspidis/d -iaspis/q -ibam/q -ibamus/q -ibant/q -ibas/q -ibatis/q -ibat/q -ibatur/q -ibidem -ibimus/q -ibi/q -ibis/q -ibitis/q -ibit/q -ibo/q -ibunt/q -iccirco -icio/B -ici/P -ico/B -icosahedrus/b -icosichordus/abc -ictum/S -ictus/h -idcirco -idem/q -identidem -identitas/q -identitatis/d -ideo/q -idest -idibus/q -idipsum -idolum/c -idoneus/abc -id/q -idus/q -iduum/q -ieci/P -ieiune/q -iens/q -ieram/q -ieramus/q -ierant/q -ieras/q -ieratis/q -ierat/q -ierim/q -ierimus/q -ierint/q -ieris/q -ieritis/q -ierit/q -iero/q -igitur -ignarus/abc -ignesco/B -igneus/abc -ignio/C -ignis/f -ignitum/S -ignivi/P -ignominia/a -ignorantia/a -ignoro/APS -ignosco/B -ignotum/S -ignovi/P -II -iidem/q -III -IIII -ii/q -iisdem/q -iis/q -iissem/q -iissemus/q -iissent/q -iisse/q -iisses/q -iissetis/q -iisset/q -iitierunt/q -iitimus/q -iiti/q -iitis/q -iititis/q -iitit/q -ilex/q -ilicet -ilicis/d -illabor/B -illac -illae/q -illam/q -illapsus/S -illa/q -illarum/q -illas/q -illatum/S -ille/q -illic -illico -illido/B -illi/q -illisi/P -illis/q -illisum/S -illius/q -illo/q -illorum/q -illos/q -illotus/abc -illuc -illuceo/B -illucesco/B -illud/q -illumino/APS -illum/q -illustratus/abcr -illustris/fgrst -illustro/APS -illuxi/P -imaginarius/abc -imaginatus/S -imaginis/d -imaginor/A -imago/q -imaguncula/a -imbecillitas/q -imbecillitatis/d -imbecillus/abcrs -imbibi/S -imbibo/B -imitabilis/fg -imitationis/d -imitatio/q -imitatricis/d -imitatrix/q -imitatus/S -imitor/A -immanis/fgr -immature/q -immediatus/abc -immensus/abc -immergo/B -immeritus/abc -immersi/P -immersum/S -immineo/B -immisi/P -immissum/S -immitto/B -immo -immobilis/fgt -immobilitas/q -immobilitatis/d -immoderatus/abcrs -immoratus/S -immoror/A -immortalis/fg -immortalitas/q -immortalitatis/d -immotus/abc -immunis/fg -immuto/APS -imo -imparis/fg -imparitas/q -imparitatis/d -impariter/q -impar/q -impartio/C -impartitum/S -impartivi/P -impatiens/q -impatientis/fg -impedimentum/c -impedio/C -impeditum/S -impedivi/P -impello/B -impendeo/B -imperfectus/abc -imperium/c -impermisceo/B -impermixtum/S -impero/APS -impertio/C -impertitum/S -impertivi/P -impeto/B -impetro/A -impetus/h -impleo/B -impletum/S -implevi/P -implico/APS -impono/B -impositum/S -impossibilis/fg -impossibilitas/q -impossibilitatis/d -imposui/P -impotentia/a -impressionis/d -impressio/q -impressi/P -impressum/S -imprimo/B -imprudens/q -imprudentis/fgrs -impuli/P -impulsoris/d -impulsor/q -impulsum/S -imputo/APS -imus/abcq -in -inaccessus/abc -inaequalis/fgt -inaequalitas/q -inaequalitatis/d -inanis/fg -inauro/APS -incedo/B -incendi/P -incendium/c -incendo/B -incensum/S -incepi/P -inceptum/S -incertus/abc -incessi/P -incessum/S -inchoo/APS -incidentia/a -incidi/P -incido/B -incipio/B -incisum/S -incito/APS -inclinationis/d -inclinatio/q -inclinatus/abcrs -inclino/APS -includo/B -inclusi/P -inclusive/q -inclusum/S -incognitus/abc -incolumis/fg -incolumitas/q -incolumitatis/d -incommensurabilis/fgt -incommensurabilitas/q -incommensurabilitatis/f -incommoditas/q -incommoditatis/d -incompertum/abc -incomprehensibilis/fg -inconcessibilis/fg -incongruus/abc -inconveniens/q -inconvenientis/f -increatus/abc -incredibilis/fg -incrementum/c -incrusto/APS -incubitum/S -incubui/P -incudis/d -inculco/APS -incumbo/B -incunabula/q -incunabulis/q -incunabulorum/q -incuria/a -incurri/P -incurro/B -incursum/S -incurvo/APS -incus/q -incussionis/d -incussio/q -incussi/P -incussus/S -incutio/B -indago/APS -indeficiens/q -indeficientis/fg -indefinitus/abc -index/q -indicis/f -indicium/c -indico/ABPS -indictionis/d -indictio/q -indictum/S -indidem/q -indidi/P -indigeo/B -indignatus/S -indignor/A -indigui/P -indirectus/abc -inditum/S -indivisibilis/fgt -indivisus/abc -indixi/P -indo/B -indocte/q -indoles/q -indolis/f -induco/B -inductionis/d -inductio/q -inductum/S -indui/P -indulgentia/a -induo/B -industria/a -indutum/S -induxi/P -ineam/q -ineamus/q -ineant/q -ineas/q -ineatis/q -ineat/q -inebriatum/S -inebrio/AP -ineffabilis/fgt -ineo/q -ineptiae/q -ineptiarum/q -ineptias/q -ineptiis/q -ineptus/abc -ineram/q -ineramus/q -inerant/q -ineras/q -ineratis/q -inerat/q -inerimus/q -ineris/q -ineritis/q -inerit/q -inero/q -inerrans/q -inerrantis/fg -inerunt/q -ines/q -inessem/q -inessemus/q -inessent/q -inesse/q -inesses/q -inessetis/q -inesset/q -ineste/q -inestis/q -inesto/q -inestote/q -inest/q -ineundi/q -ineundo/q -ineundum/q -ineuntem/q -ineunte/q -ineuntes/q -ineuntia/q -ineuntibus/q -ineunti/q -ineuntis/q -ineuntium/q -ineunt/q -inexplebilis/fg -inexplicabilis/fg -inexplicatus/abc -inexpugnabilis/fg -inextricabilis/fg -infectionis/d -infectio/q -infectus/abc -inferamini/q -inferam/q -inferamur/q -inferamus/q -inferant/q -inferantur/q -inferaris/q -inferar/q -inferas/q -inferatis/q -inferat/q -inferatur/q -inferebamini/q -inferebam/q -inferebamur/q -inferebamus/q -inferebant/q -inferebantur/q -inferebaris/q -inferebar/q -inferebas/q -inferebatis/q -inferebat/q -inferebatur/q -inferemini/q -inferemur/q -inferemus/q -inferendi/q -inferendo/q -inferendum/q -inferendus/abc -inferens/q -inferentis/fg -inferent/q -inferentur/q -infereris/q -inferes/q -inferetis/q -inferet/q -inferetur/q -inferimini/q -inferimur/q -inferimus/q -inferior/r -infernus/abc -infero/q -inferor/q -infer/q -inferremini/q -inferrem/q -inferremur/q -inferremus/q -inferrent/q -inferrentur/q -inferre/q -inferreris/q -inferrer/q -inferres/q -inferretis/q -inferret/q -inferretur/q -inferri/q -inferris/q -infers/q -inferte/q -infertis/q -infert/q -infertur/q -inferunt/q -inferuntur/q -inferus/abc -infigo/B -infimus/abc -infinitas/q -infinitatis/d -infinitus/abc -infixi/P -infixum/S -inflammationis/d -inflammatio/q -inflatus/abc -inflecto/B -inflexionis/d -inflexio/q -inflexi/P -inflexum/S -inflo/APS -influo/B -influxi/P -influxum/S -infore/q -infra -infractionis/d -infractio/q -infudi/P -infudo/B -infuere/q -infui/P -infusum/S -infuturam/q -infuturum/q -infuturus/q -ingeniosus/abcrs -ingenitum/S -ingenium/c -ingens/q -ingentis/fg -ingenui/P -ingenuus/abc -ingero/B -ingessi/P -ingestum/S -ingigno/B -ingredior/B -ingressionis/d -ingressio/q -ingressus/Sh -inhabitabilis/fg -inhabito/APS -inhaereo/B -inhaeresco/B -inhaesi/P -inhaesum/S -inibam/q -inibamus/q -inibant/q -inibas/q -inibatis/q -inibat/q -inibi -inibimus/q -inibis/q -inibitis/q -inibit/q -inibo/q -inibunt/q -inieci/P -iniectum/S -iniens/q -inieram/q -inieramus/q -inierant/q -inieras/q -inieratis/q -inierat/q -inierim/q -inierimus/q -inierint/q -inieris/q -inieritis/q -inierit/q -iniero/q -iniicio/B -iniissem/q -iniissemus/q -iniissent/q -iniisse/q -iniisses/q -iniissetis/q -iniisset/q -iniitierunt/q -iniitimus/q -iniiti/q -iniitis/q -iniititis/q -iniitit/q -inimicitia/a -inimicus/abc -inimus/q -ini/q -iniquus/abc -inirem/q -iniremus/q -inirent/q -inire/q -inires/q -iniretis/q -iniret/q -inis/q -inisse/q -inite/q -initio/APS -initis/q -initium/c -init/q -initum/S -initu/q -initur/q -initurus/abc -iniuria/a -iniustus/abc -iniveram/q -iniveramus/q -iniverant/q -iniveras/q -iniveratis/q -iniverat/q -iniverim/q -iniverimus/q -iniverint/q -iniveris/q -iniveritis/q -iniverit/q -inivero/q -inivissem/q -inivissemus/q -inivissent/q -inivisse/q -inivisses/q -inivissetis/q -inivisset/q -inivitierunt/q -inivitimus/q -iniviti/q -inivitis/q -inivititis/q -inivitit/q -innato/APS -innitor/B -innixus/S -innotesco/B -innotui/P -innui/P -innumerus/abc -innuo/B -innutum/S -inopia/a -inordinatus/abcs -inquam -inquiebat -inquies/q -inquiet -inquietis/de -inquiro/B -inquis -inquisitum/S -inquisivi/P -inquisti -inquit -inquiunt -insaturabilis/fg -inscitia/a -inscribo/B -inscripsi/P -inscriptionis/d -inscriptio/q -inscriptum/S -insculpo/B -insculpsi/P -insculpum/S -insedi/P -insensibilis/fgt -inseparabilis/fg -insero/B -insertum/S -inserui/P -inservio/C -inservitum/S -inservivi/P -insessum/S -insideo/B -insignis/fgr -insignitus/abc -insim/q -insimus/q -insint/q -insinuo/APS -insis/q -insisto/B -insitis/q -insit/q -insono/A -insonui/P -inspectionis/d -inspectio/q -inspecto/APS -inspectoris/d -inspector/q -inspectum/S -inspexi/P -inspicio/B -inspissatus/abc -inspisso/APS -instans/q -instantis/fg -instaturus/S -instauro/APS -institi/P -institui/P -instituo/B -institutionis/d -institutio/q -institutum/S -insto/B -instructum/S -instrumentum/c -instruo/B -instruxi/P -insudo/AP -insufflo/APS -insula/a -insulse/q -insum/q -insumus/q -insunto/q -insunt/q -insuper -intactus/abc -intectum/S -integer/q -intego/B -integrationis/d -integratio/q -integri/abc -integritas/q -integritatis/d -integro/APS -intellectum/S -intellectus/h -intellego/B -intellexi/P -intelligentia/a -intelligo/B -intempestivus/abc -intempestus/abc -intendi/P -intendo/B -intensus/abcrs -intentionis/d -intentio/q -intentum/S -intentus/abcr -inter -intercalationis/d -intercalatio/q -intercalo/APS -intercedo/B -intercepi/P -interceptum/S -intercessi/P -intercessum/S -intercidi/P -intercido/B -intercipio/B -intercisum/S -intercludo/B -interclusi/P -interclusum/S -interdiu -interdum -inteream/q -intereamus/q -intereant/q -interea/q -intereas/q -intereatis/q -intereat/q -interemi/P -interemptum/S -intereo/q -intereram/q -intereramus/q -intererant/q -intereras/q -intereratis/q -intererat/q -intererimus/q -intereris/q -intereritis/q -intererit/q -interero/q -intererunt/q -interes/q -interessem/q -interessemus/q -interessent/q -interesse/q -interesses/q -interessetis/q -interesset/q -intereste/q -interestis/q -interesto/q -interestote/q -interest/q -intereundi/q -intereundo/q -intereundum/q -intereuntem/q -intereunte/q -intereuntes/q -intereuntia/q -intereuntibus/q -intereunti/q -intereuntis/q -intereuntium/q -intereunt/q -interfore/q -interfuere/q -interfui/P -interfuturam/q -interfuturum/q -interfuturus/q -interiaceo/B -interiacio/B -interibam/q -interibamus/q -interibant/q -interibas/q -interibatis/q -interibat/q -interibimus/q -interibis/q -interibitis/q -interibit/q -interibo/q -interibunt/q -interieci/P -interiectum/S -interiens/q -interieram/q -interieramus/q -interierant/q -interieras/q -interieratis/q -interierat/q -interierim/q -interierimus/q -interierint/q -interieris/q -interieritis/q -interierit/q -interiero/q -interiicio/B -interiissem/q -interiissemus/q -interiissent/q -interiisse/q -interiisses/q -interiissetis/q -interiisset/q -interiitierunt/q -interiitimus/q -interiiti/q -interiitis/q -interiititis/q -interiitit/q -interim -interimo/B -interimus/q -interior/r -interi/q -interirem/q -interiremus/q -interirent/q -interire/q -interires/q -interiretis/q -interiret/q -interis/q -interisse/q -interite/q -interitis/q -interit/q -interitum/S -interitu/q -interitur/q -interiturus/abc -interiveram/q -interiveramus/q -interiverant/q -interiveras/q -interiveratis/q -interiverat/q -interiverim/q -interiverimus/q -interiverint/q -interiveris/q -interiveritis/q -interiverit/q -interivero/q -interivissem/q -interivissemus/q -interivissent/q -interivisse/q -interivisses/q -interivissetis/q -interivisset/q -interivitierunt/q -interivitimus/q -interiviti/q -interivitis/q -interivititis/q -interivitit/q -intermedius/abc -intermisceo/B -intermiscui/P -intermisi/P -intermissum/S -intermitto/B -intermixtum/S -internosco/B -internotum/S -internovi/P -internus/abc -interpono/B -interpositionis/d -interpositio/q -interpositum/S -interposui/P -interpres/q -interpretatus/S -interpretis/d -interpretor/A -interrogo/APS -interscribo/B -interscripsi/P -interscriptum/S -interscui/P -interseco/A -intersectionis/d -intersectio/q -intersectum/S -intersero/B -intersevi/P -intersim/q -intersimus/q -intersint/q -intersis/q -intersitis/q -intersit/q -intersitum/S -interstitium/c -intersum/q -intersumus/q -intersunto/q -intersunt/q -interturbo/A -intervallum/c -intervenio/B -interveni/P -interventum/S -intestinus/abc -intexi/P -intexo/B -intextum/S -intexui/P -intimus/abc -intra -intremisco/B -intremui/P -intrinsecus/abc -intro/APS -introduco/B -introductionis/d -introductio/q -introductorius/abc -introductum/S -introduxi/P -introrsum -intrudo/B -intrusi/P -intrusum/S -intueor/B -intuitus/Sh -intuli/P -intus/q -inutilis/fgrst -invado/B -invariabilis/fg -invasionis/d -invasio/q -invasi/P -invasum/S -invenio/C -inveni/P -inventionis/d -inventio/q -inventoris/d -inventor/q -inventricis/d -inventrix/q -inventum/S -inversionis/d -inversio/q -inversum/S -inverti/P -inverto/B -invetero/APS -invicem/q -invitus/abc -invius/abc -involucrum/c -involutum/S -involvi/P -involvo/B -Ioannes/q -Ioannis/d -iocosus/abc -iocundus/abc -Iordanus/b -Iosephus/b -Iove/Iemoqv -iovialis/fg -Iovi/q -Iovis/q -ipsaemet/q -ipsae/q -ipsamet/q -ipsammet/q -ipsam/q -ipsa/q -ipsarummet/q -ipsarum/q -ipsasmet/q -ipsas/q -ipsemet/q -ipse/q -ipsimet/q -ipsi/q -ipsismet/q -ipsis/q -ipsiusmet/q -ipsius/q -ipsomet/q -ipso/q -ipsorummet/q -ipsorum/q -ipsosmet/q -ipsos/q -ipsummet/q -ipsum/q -i/q -iracundia/a -iracundus/abc -irem/q -iremus/q -irent/q -ire/q -ires/q -iretis/q -iret/q -iridis/d -iri/q -iris/q -irradiatus/S -irradio/A -irrationalis/fgt -irregularis/fg -irrigo/APS -irrito/APS -irrorationis/d -irroratio/q -irroro/APS -irrumpo/B -irrupi/P -irruptum/S -isagoge/j -isagogicus/abc -isoperimetrus/abc -isopleuri/c -isoploron/q -isosceles/q -isoscelis/f -is/q -isse/q -ista -istae -istaec -istam -istarum -istas -iste -Ister/q -isthaec -isthic -isthoc -isthuc -isti -istic -istis -istius -isto -istoc -istorum -istos -Istri/b -istuc -istud -istum -itaque -itaut/q -item/q -ite/q -itero/APS -iter/q -iterum -itidem -itinerarius/abc -itineris/e -itis/q -it/q -itum/S -itu/q -itur/q -iturus/abc -iubeo/B -iucunditas/q -iucunditatis/d -iucundus/abcs -iudex/q -iudiciarius/abc -iudicis/d -iudicium/c -iudico/APS -iugiter -iugo/APS -iugum/c -iulius/abc -iunctum/S -iunctus/abc -iuncus/b -iungo/B -iunior/r -Iunius/abc -iunxi/P -Iupiter/q -Iuppiter -iuris/e -ius/q -iussi/P -iussum/S -Iustinus/b -iustus/abc -iutum/S -iuvenilis/fg -iuvenis/fg -iuvi/P -iuvo/A -iuxta -IV -iveram/q -iveramus/q -iverant/q -iveras/q -iveratis/q -iverat/q -iverim/q -iverimus/q -iverint/q -iveris/q -iveritis/q -iverit/q -ivero/q -ivissem/q -ivissemus/q -ivissent/q -ivisse/q -ivisses/q -ivissetis/q -ivisset/q -ivitierunt/q -ivitimus/q -iviti/q -ivitis/q -ivititis/q -ivitit/q -IX -Jacobus/b -Jordanus/b -kalendae/q -kalendarium/c -kalendarum/q -kalendas/q -kalendis/q -kathetus/b -labasco/B -labes/q -labis/f -labo/APS -labor/B -laboriosus/abc -laboris/d -laboro/APS -labor/q -labrum/c -Lacedaemonis/d -Lacedaemon/q -lacessitum/S -lacessivi/P -lacesso/B -lacteus/abc -lacubus/q -lacui/q -lacum/q -lacu/q -lacus/q -lacuum/q -laetifico/APS -laetitia/a -laevus/abc -lamentabilis/fg -lamina/a -lampadis/d -lampas/q -lana/a -lanceola/a -lancis/d -languesco/B -languidus/abcrs -langui/P -lanx/q -lapideus/abc -lapidis/d -lapi/q -lapis/q -lapsus/S -largior/C -largitus/S -lascivii/P -lascivio/C -lascivitum/S -lascivus/abc -lasso/APS -lateo/B -lateralis/fgt -lateratus/abc -lateris/e -laterus/abc -latinus/abc -lationis/d -latio/q -latitudinis/d -latitudo/q -Latium/c -latui/P -latum/S -latus/abcqrs -laudabilis/fgt -laudis/d -laudo/APS -laus/q -laxo/APS -lectionis/d -lectio/q -lectito/APS -lectoris/d -lector/q -lectulus/b -lectum/S -legi/P -legis/d -legitimus/abc -lego/ABPS -lemma/q -lemmata/q -lemmatis/e -lemmatorum/q -lenis/fg -lenitas/q -lenitatis/d -lenocinium/c -lens/q -lentesco/B -lenticularis/fg -lentis/d -lentus/abcrs -lepidus/abc -Lesbi/b -lesbius/abc -Lesbos/q -levis/fgrst -levitas/q -levitatis/d -levo/APS -lex/q -libeat/q -libebat/q -libebit/q -libellus/b -liberalis/fg -libere/q -liberet/q -liber/q -libertas/q -libertatis/d -libet/q -libidinis/d -libido/q -libitum/q -libra/a -libramentum/c -libri/b -libro/APS -libuerit/q -libuierat/q -libuisset/q -libuit/q -liceat/q -licebat/q -licebit/q -licere/q -liceret/q -licet/q -licitum/q -licuerat/q -licuerit/q -licuesset/q -licui/P -licuit/q -ligatura/a -ligneus/abc -lignum/c -ligo/APS -LIII -limen/q -limes/q -liminis/d -limitis/d -limus/abc -linea/a -lineamentum/c -linearis/fg -lineationis/d -lineatio/q -lineatoris/d -lineator/q -lineatus/abc -lineo/APS -lineus/abc -lingua/a -linum/c -liqueo/B -liquidus/abc -liquoris/d -liquor/q -lis/q -litera/a -literarius/abc -literatus/abcs -literula/a -litis/d -litoris/d -littera/a -litterula/a -litus/q -Livius/b -localis/fg -loco/APS -locus/b -locutus/S -longitudinis/d -longitudo/q -longiusculus/abc -longus/abcrs -loqui/P -loquor/B -lorum/c -lubet/q -Luca/a -Lucanus/b -lucidus/abcr -lucis/d -lucrifacio/B -lucrum/c -lucubrationis/d -lucubratio/q -lucubratiuncula/a -lucus/b -ludibrium/c -ludo/B -ludus/b -lues/q -luis/d -lumen/q -luminare/q -luminaris/g -luminis/e -luminosus/abcrs -luna/a -lunaris/fg -lunationis/d -lunatio/q -luscus/abc -lusi/P -lustro/APS -lusum/S -lutetianus/abc -lux/q -luxus/h -LVII -LXVIII -lychnuchus/b -lydius/abc -Lydus/abc -lyra/a -Macedonia/a -machina/a -machinamentum/c -machinarius/abc -machinatoris/d -machinator/q -madeo/B -madui/P -magis/q -magister/q -magistra/a -magistratus/h -magistri/b -magnesia/a -magnes/q -magnetis/d -magnifacio/B -magnificus/abc -magnitudinis/d -magnitudo/q -magnopere/q -magnus/abc -magus/abc -maiestas/q -maiestatis/d -maior/r -maius/abc -malam/q -malebam/q -malebamus/q -malebant/q -malebas/q -malebatis/q -malebat/q -maledicentia/a -malemus/q -malent/q -males/q -maletis/q -malet/q -malim/q -malimus/q -malint/q -malis/q -malitis/q -malit/q -malleatus/abc -mallem/q -mallemus/q -mallent/q -malle/q -malles/q -malletis/q -mallet/q -malleus/b -malo/q -malui/P -maluisse/q -malumus/q -malunt/q -malus/abc -mamertinus/abc -mancus/abc -mando/APS -maneo/B -manifestus/abcrs -Manilius/b -mansi/P -mansum/S -manubrium/c -manus/h -Marcellus/b -marceo/B -Marcus/b -marem/q -mare/q -mares/q -margarita/a -marginis/d -margo/q -maribus/q -marinus/abc -mari/q -maris/gq -marium/q -mars/q -martialis/fg -martis/d -martius/abc -martyrologium/c -mas/q -massa/a -materia/a -materialis/fg -materies/i -mater/q -mathematicus/abc -mathesim/q -mathesis/q -matris/d -maturus/abcr -matutinus/abc -Maurolicus/b -Maurolycus/b -mavis/q -mavultis/q -mavult/q -maximus/abc -MDL -MDLIII -MDXLIX -MDXVIII -MDXXXXVII -meatus/h -mechanicus/abc -mecum -media/a -medialis/fg -medianus/abc -mediationis/d -mediatio/q -medicus/abc -medietas/q -medietatis/d -medio/A -mediocris/fgt -mediocritas/q -mediocritatis/d -meditatus/S -meditor/A -medium/cq -medius/abc -meimet/q -mei/q -melancholicus/abc -melior/r -mellis/e -mellitus/abc -mel/q -membrana/a -membrum/c -memento/q -mementote/q -memet/q -memineram/q -memineramus/q -meminerant/q -memineras/q -memineratis/q -meminerat/q -meminerimus/q -memineris/q -memineritis/q -meminerit/q -meminero/q -meminerunt/q -meminimus/q -memini/q -meminisse/q -meministi/q -meministis/q -meminit/q -Memmius/b -memoria/a -memoro/APS -Menaechmus/b -menda/a -mendacis/fg -mendax/q -mendico/APS -mendosus/abc -Menechmus/b -Menelaus/b -meniscus/b -mensis/f -mens/q -mensula/a -mensura/a -mensuro/APS -mensus/S -mentionis/d -mentio/q -mentior/C -mentis/d -mentitus/S -mentum/c -meo/APS -me/q -merces/q -mercis/f -mercurialis/fg -Mercurius/b -mereo/B -meridianus/abc -meridies/i -meridionalis/fg -meritum/S -meritus/abcrs -merui/P -merus/abc -mese/j -Messana/a -messanensis/fg -Messenius/abc -meta/a -metallum/c -metaphora/a -metatus/S -metior/C -metitus/S -metor/A -metrum/c -metui/P -metuo/B -metutum/S -meus/abc -mihimet/q -mihi/q -milesius/abc -miles/q -Mileum/c -miliadicum/c -milia/q -milibus/q -milies/q -militaris/fg -militis/d -milium/q -millecuplus/abc -millenarius/abc -millenus/abc -mille/q -millesimus/abc -millia/q -millibus/q -millies/q -millium/q -minimus/abc -ministra/a -minoro/APS -minor/qr -minui/P -minuo/B -minutia/a -minutionis/d -minutio/q -minutum/S -minutus/abcrs -mirabilis/fg -miraculum/c -miratus/S -miror/A -mirus/abc -misceo/B -miscui/P -miseret/q -miseretur/q -misi/P -missilis/fg -missum/S -mitigativus/abc -mitigo/APS -mitis/fgr -mitto/B -Mixolydius/b -mixtim -mixtionis/d -mixtio/q -mixtum/S -mixtura/a -mobilis/fg -moderatus/Sabcrs -moderor/A -modestia/a -modestus/abcrs -modicus/abcrs -modius/b -modulabilis/fg -modulamen/q -modulaminis/d -modulationis/d -modulatio/q -modulatus/S -modulor/A -modulus/b -modus/b -moenia/q -moenibus/q -moenium/q -mola/a -molendinum/c -moles/q -moleste/q -molestia/a -molior/C -molis/d -molitus/S -mollis/fgrt -mollitia/a -mollities/i -momentum/c -monadicus/abc -monadis/d -monas/q -monasterium/c -moneo/B -moneta/a -monitorius/abc -monitum/S -mons/q -monstro/APS -montis/d -montius/abc -monui/P -monumentum/c -mora/a -moralis/fg -moratus/S -morbus/b -moris/d -moror/A -mors/q -mortalis/fg -mortariolum/c -mortis/d -mos/q -motionis/d -motio/q -motoris/d -motor/q -motum/S -motus/h -moveo/B -movi/P -mox/q -Moyses/q -Moysis/d -mulcta/a -mulieris/d -mulier/q -multiangulus/abc -multicoloris/fg -multilaterus/abc -multimodus/abc -multiplex/q -multiplicationis/d -multiplicatio/q -multiplicatoris/d -multiplicator/q -multiplicatus/abc -multiplicis/fgt -multiplicitas/q -multiplicitatis/d -multiplico/APS -multitudinis/d -multitudo/q -multus/abc -mundanus/abc -mundus/b -muneris/e -munificentia/a -munimen/q -muniminis/d -munio/C -munitum/S -munivi/P -munus/q -muralis/fg -murmuris/e -murmur/q -murus/b -Musa/a -musculus/b -musica/a -musice/j -musicus/abc -mutabilis/fg -mutationis/d -mutatio/q -mutilo/APS -mutilus/abc -muto/APS -mutuatus/S -mutuor/A -mutus/abc -mutuus/abc -myriadis/d -myrias/q -Nabuchodonosor/q -nactus/S -nam/q -nanciscor/B -naris/f -narro/APS -nascor/B -natalis/fg -natalitius/abc -nationis/d -natio/q -nativus/abc -natura/a -naturalis/fgt -natus/S -nauta/a -nauticus/abc -navigationis/d -navigatio/q -navigium/c -navigo/APS -navim/q -navis/f -navo/APS -ne -nec -necessarius/abc -necesse -necessitas/q -necessitatis/d -necnon -necto/B -necubi -nedum -negationis/d -negatio/q -neglectum/S -neglego/B -neglexi/P -negligenter -negligo/B -nego/APS -negocium/c -negotium/c -nelim/q -nelimus/q -nelint/q -nelis/q -nelitis/q -nelit/q -nellem/q -nellemus/q -nellent/q -nelles/q -nelletis/q -nellet/q -neminis/d -nemo/q -nempe -nepos/q -nepotis/d -nequaquam -neque -nequeam/q -nequeamus/q -nequeant/q -nequeas/q -nequeatis/q -nequeat/q -nequeo/q -nequeundi/q -nequeundo/q -nequeundum/q -nequeunt/q -nequibam/q -nequibamus/q -nequibant/q -nequibas/q -nequibatis/q -nequibat/q -nequibimus/q -nequibis/q -nequibitis/q -nequibit/q -nequibo/q -nequibunt/q -nequicquam -nequiens/q -nequientis/q -nequieram/q -nequieramus/q -nequierant/q -nequieras/q -nequieratis/q -nequierat/q -nequierim/q -nequierimus/q -nequierint/q -nequieris/q -nequieritis/q -nequierit/q -nequiero/q -nequimus/q -nequi/q -nequirem/q -nequiremus/q -nequirent/q -nequire/q -nequires/q -nequiretis/q -nequiret/q -nequis/q -nequisse/q -nequite/q -nequitis/q -nequit/q -nequitum/S -nequiturus/abc -nequiveram/q -nequiveramus/q -nequiverant/q -nequiveras/q -nequiveratis/q -nequiverat/q -nequiverim/q -nequiverimus/q -nequiverint/q -nequiveris/q -nequiveritis/q -nequiverit/q -nequivero/q -nequivissem/q -nequivissemus/q -nequivissent/q -nequivisse/q -nequivisses/q -nequivissetis/q -nequivisset/q -nequivitierunt/q -nequivitimus/q -nequiviti/q -nequivitis/q -nequivititis/q -nequivitit/q -nervosus/abcr -nervus/b -nescio/C -nescitum/S -nescivi/P -nete/j -netus/i -neuter/q -neutri/abc -nexui/P -nexum/S -nexus/h -Nicephorus/b -Nicolaus/b -Nicomachus/b -Nicomedes/q -Nicomedis/d -niger/q -nigri/abc -nihilominus -nihil/q -nihilum/c -nil -nimirum -nimis -nimium/c -nimius/abc -nisi -niti/P -nitor/B -nitratus/abc -nitrum/c -nixus/S -no/APS -nobilis/fgrs -nobilitas/q -nobilitatis/d -nobismet/q -nobis/q -noceo/B -nocitum/S -nociva/abc -noctis/d -noctu/q -nocturnus/abc -nocui/P -nocumentum/c -nodus/b -nolam/q -nolebam/q -nolebamus/q -nolebant/q -nolebas/q -nolebatis/q -nolebat/q -nolemus/q -nolens/q -nolentis/fg -nolent/q -noles/q -noletis/q -nolet/q -noli/q -nolite/q -nolle/q -nolo/q -nolui/P -noluisse/q -nolumus/q -nolunt/q -nomenclatura/a -nomen/q -nominabilis/fg -nominatus/abc -nominis/e -nomino/APS -non -nonagesimus/abc -nonagies/q -nonagincuplus/abc -nondum -nonne -nonnihil/q -nonnullus/abc -nonnumquam -nonnunquam -nontangens/q -nontangentis/fg -nonullus/abc -nonuplus/abc -nonus/abc -noram -noramus -norant -noras -norat -noratis -norim -norimus -noris -norit -noritis -norma/a -norunt -nosco/B -nosmet/q -nos/q -nosse -nossem -nossemus -nossent -nosses -nosset -nossetis -noster/q -nosti -nostis -nostras/q -nostratis/de -nostri/abc -nostrimet/q -nostri/q -nostrummet/q -nostrum/q -nostrus/abc -nota/a -notabilis/fgrt -notatus/abc -notesco/B -notifico/A -notitia/a -noto/APS -notui/P -notula/a -notum/S -notus/abcrs -november/q -novembris/d -novem/q -novenarius/abc -novies/q -novi/P -novo/APS -novus/abc -noxius/abc -nox/q -nubes/q -nubilosus/abc -nubis/d -nucis/d -nudus/abc -nullae/q -nullam/q -nulla/q -nullatenus -nulli/q -nullius/q -nullo/q -nullum/q -nullus/q -num -numeralis/fg -numerarius/abc -numerationis/d -numeratio/q -numeratoris/d -numerator/q -numero/APS -numerose -numerositas/q -numerositatis/d -numerosus/abcr -numerus/b -numquam -numquid -nunc -nuncupo/APS -nunquam -nuper -nuperrimus/abc -nuperus/abc -nusquam -nutrimentum/c -nutrio/C -nutritum/S -nutrivi/P -nutus/h -nux/q -ob -obambulo/APS -obeam/q -obeamus/q -obeant/q -obeas/q -obeatis/q -obeat/q -obelus/b -obeo/q -oberam/q -oberamus/q -oberant/q -oberas/q -oberatis/q -oberat/q -oberimus/q -oberis/q -oberitis/q -oberit/q -obero/q -oberunt/q -obes/q -obessem/q -obessemus/q -obessent/q -obesse/q -obesses/q -obessetis/q -obesset/q -obeste/q -obestis/q -obesto/q -obestote/q -obest/q -obeundi/q -obeundo/q -obeundum/q -obeuntem/q -obeunte/q -obeuntes/q -obeuntia/q -obeuntibus/q -obeunti/q -obeuntis/q -obeuntium/q -obeunt/q -obfore/q -obfuere/q -obfui/P -obfuturam/q -obfuturum/q -obfuturus/q -obibam/q -obibamus/q -obibant/q -obibas/q -obibatis/q -obibat/q -obibimus/q -obibis/q -obibitis/q -obibit/q -obibo/q -obibunt/q -obieci/P -obiectum/S -obiens/q -obieram/q -obieramus/q -obierant/q -obieras/q -obieratis/q -obierat/q -obierim/q -obierimus/q -obierint/q -obieris/q -obieritis/q -obierit/q -obiero/q -obiicio/B -obiissem/q -obiissemus/q -obiissent/q -obiisse/q -obiisses/q -obiissetis/q -obiisset/q -obiitierunt/q -obiitimus/q -obiiti/q -obiitis/q -obiititis/q -obiitit/q -obimus/q -obi/q -obirem/q -obiremus/q -obirent/q -obire/q -obires/q -obiretis/q -obiret/q -obis/q -obisse/q -obite/q -obitis/q -obit/q -obitum/S -obitu/q -obitur/q -obiturus/abc -obiveram/q -obiveramus/q -obiverant/q -obiveras/q -obiveratis/q -obiverat/q -obiverim/q -obiverimus/q -obiverint/q -obiveris/q -obiveritis/q -obiverit/q -obivero/q -obivissem/q -obivissemus/q -obivissent/q -obivisse/q -obivisses/q -obivissetis/q -obivisset/q -obivitierunt/q -obivitimus/q -obiviti/q -obivitis/q -obivititis/q -obivitit/q -oblatum/S -oblectationis/d -oblectatio/q -oblecto/APS -obliquationis/d -obliquatio/q -obliquitas/q -obliquitatis/d -obliquo/APS -obliquus/abcrs -oblitus/S -oblivionis/d -oblivio/q -obliviscor/B -oblongus/abcrs -obnoxius/abc -obrui/P -obruo/B -obrutum/S -obscuritas/q -obscuritatis/d -obscuro/APS -obscurus/abcrs -obsedi/P -obsequium/c -observationis/d -observatio/q -observatoris/d -observator/q -observo/APS -obsessum/S -obsideo/B -obsim/q -obsimus/q -obsint/q -obsis/q -obsisto/B -obsitis/q -obsit/q -obstaculum/c -obstaturus/S -obstiti/P -obsto/B -obsum/q -obsumus/q -obsunto/q -obsunt/q -obtempero/APS -obtenebro/A -obtentum/S -obtineo/B -obtinui/P -obtudi/P -obtuli/P -obtundo/B -obtusiangulus/abc -obtusum/S -obtusus/abcrs -obtutus/h -obumbrationis/d -obumbratio/q -obumbro/APS -obvius/abc -occasionis/d -occasio/q -occasum/S -occasus/h -occidentalis/fg -occidi/P -occido/B -occiduus/abc -occisum/S -occludo/B -occlusi/P -occlusum/S -occulo/B -occultationis/d -occultatio/q -occulto/APS -occultum/S -occului/P -occupo/APS -occurri/P -occurro/B -occurso/APS -occursum/S -occursus/h -oceanus/b -ocium/c -ocius/q -octadis/d -octahedrus/b -octangulus/abc -octas/q -octavus/abc -october/q -octobris/d -octochordus/abc -octogonus/abc -octonarius/abc -octonus/abc -octo/q -octuplicatus/abc -octuplus/abc -oculatus/abcs -oculus/b -odoratus/S -odoror/A -offendi/P -offendo/B -offensum/S -offeramini/q -offeram/q -offeramur/q -offeramus/q -offerant/q -offerantur/q -offeraris/q -offerar/q -offeras/q -offeratis/q -offerat/q -offeratur/q -offerebamini/q -offerebam/q -offerebamur/q -offerebamus/q -offerebant/q -offerebantur/q -offerebaris/q -offerebar/q -offerebas/q -offerebatis/q -offerebat/q -offerebatur/q -offeremini/q -offeremur/q -offeremus/q -offerendi/q -offerendo/q -offerendum/q -offerendus/abc -offerens/q -offerentis/fg -offerent/q -offerentur/q -offereris/q -offeres/q -offeretis/q -offeret/q -offeretur/q -offerimini/q -offerimur/q -offerimus/q -offero/q -offeror/q -offer/q -offerremini/q -offerrem/q -offerremur/q -offerremus/q -offerrent/q -offerrentur/q -offerre/q -offerreris/q -offerrer/q -offerres/q -offerretis/q -offerret/q -offerretur/q -offerri/q -offerris/q -offers/q -offerte/q -offertis/q -offert/q -offertur/q -offerunt/q -offeruntur/q -officina/a -officiosus/abcs -officium/c -offundi/P -offundo/B -offusco/APS -offusum/S -olim -oliva/a -omisi/P -omissus/S -omitto/B -omnifarius/abc -omnimodus/abc -omnino -omnis/fg -oneris/e -onero/APS -onerosus/abc -onus/q -onustus/abc -opacitas/q -opacitatis/d -opacus/abc -opera/a -operationis/d -operatio/q -operativus/abc -operis/e -opero/A -operosus/abc -Opheus/abc -opifex/q -opificis/d -opinatus/S -opinionis/d -opinio/q -opinor/A -oporteat/q -oportebat/q -oportebit/q -oportere/q -oporteret/q -oportet/q -oportuerat/q -oportuerit/q -oportuisset/q -oportuit/q -oportune/q -oportunitas/q -oportunus/abc -oppidanus/abc -oppidum/c -oppono/B -opportunitatis/d -opportunus/abcrs -oppositionis/d -oppositio/q -oppositum/S -oppostus/abc -opposui/P -opprobrium/c -oppugnationis/d -oppugnatio/q -oppugno/APS -opticus/abc -optimus/abc -opto/APS -opulentus/abc -opusculum/c -opus/q -ora/a -orationis/d -oratio/q -orbicularis/fg -orbiculatus/abc -orbiculus/b -orbis/f -orbita/a -ordinatim -ordinatus/abcs -ordinis/d -ordino/APS -ordior/C -ordo/q -organum/c -oriens/q -orientalis/fg -orientis/fg -originis/d -origo/q -orior/C -oris/e -ornamentum/c -orno/APS -oro/APS -Orontius/b -Orpheus/b -orsus/S -orthogonalis/fgt -orthogonius/abc -orthogonus/abc -orthographia/a -ortus/Sh -oscitans/q -oscitantis/fg -oscito/APS -osculum/c -os/q -ostendi/P -ostendo/B -ostensum/S -ostentationis/d -ostentatio/q -ostento/APS -ostentum/S -ostium/c -ostreum/c -otium/c -ovalis/fg -ovum/c -oxygonius/abc -pacis/d -pactus/abc -pagina/a -pala/a -palea/a -Palladis/d -Pallas/q -palma/a -palmaris/fg -palmula/a -palpebra/a -Panhormus/b -pannus/b -papaveris/d -papaver/q -Pappus/b -parabola/a -parabolen/q -parabole/q -paraboles/q -parabolicus/abc -parallelepipedum/c -parallelogrammus/abc -parallelus/abc -paramese/j -paranete/j -parco/B -parcus/abcrs -pareo/B -parhypate/j -paries/q -parietis/d -pario/ABPS -paris/fg -pariter -paritum/S -paro/APS -par/q -parsi/P -pars/q -parsum/S -parthus/abc -partialis/fgt -participo/APS -particula/a -particularis/fgrst -partim/q -partio/C -partior/B -partis/f -partitionis/d -partitio/q -partitum/S -partitus/Sabc -partivi/P -partum/S -parui/P -parum -parvipendo/B -parvipensum/S -parvipependi/P -parvitas/q -parvitatis/d -parvus/abc -Pascha/a -paschalis/fg -passim -passionis/d -passio/q -passivus/abc -passus/S -pastillus/b -pastoralis/fg -patefiam/q -patefiamus/q -patefiant/q -patefias/q -patefiatis/q -patefiat/q -patefiebam/q -patefiebamus/q -patefiebant/q -patefiebas/q -patefiebatis/q -patefiebat/q -patefiemus/q -patefient/q -patefierem/q -patefieremus/q -patefierent/q -patefieres/q -patefieretis/q -patefieret/q -patefieri/q -patefies/q -patefietis/q -patefiet/q -patefimus/q -patefio/q -patefis/q -patefitis/q -patefit/q -patefiunt/q -pateo/B -pater/q -patesco/B -patior/B -patria/a -patriarcha/a -patris/d -patritius/abc -patrocinium/c -patui/P -patulus/abc -paucus/abcrs -paulatim -paulisper -paulo -paululum -paulus/abc -pauperis/de -pauper/s -pavimentum/c -pavonis/d -pavo/q -pax/q -pecco/APS -pectoris/e -pectus/q -peculiaris/fgrst -pecunia/a -pedes/q -pedis/d -peditis/d -peior/r -pelagus/b -pellicula/a -pellis/f -pello/B -pellucidus/abc -Peloponnesus/b -pelvis/f -pendeo/B -pendo/B -pene -penes -penetralis/fg -penetro/APS -penitus -penna/a -pensionis/d -pensio/q -pensum/S -pentagonicus/abc -pentagonus/abc -penultimus/abc -penuria/a -pependi/P -peperci/P -peperi/P -pepuli/P -peractum/S -perago/B -peragro/APS -perambulo/APS -peramplus/abc -perangustus/abcr -percepi/P -perceptum/S -percipio/B -percucurri/P -percurro/B -percursum/S -percussionis/d -percussio/q -percussi/P -percussum/S -percutio/B -perdidici/P -perdidi/P -perdisco/B -perditum/S -perdo/B -peregi/P -peregrinatus/S -peregrinor/A -peremi/P -peremptum/S -perennis/fgt -pereo/B -perfabrico/APS -perfeci/P -perfectionis/d -perfectio/q -perfectum/S -perfectus/abcrs -perferamini/q -perferam/q -perferamur/q -perferamus/q -perferant/q -perferantur/q -perferaris/q -perferar/q -perferas/q -perferatis/q -perferat/q -perferatur/q -perferebamini/q -perferebam/q -perferebamur/q -perferebamus/q -perferebant/q -perferebantur/q -perferebaris/q -perferebar/q -perferebas/q -perferebatis/q -perferebat/q -perferebatur/q -perferemini/q -perferemur/q -perferemus/q -perferendi/q -perferendo/q -perferendum/q -perferendus/abc -perferens/q -perferentis/fg -perferent/q -perferentur/q -perfereris/q -perferes/q -perferetis/q -perferet/q -perferetur/q -perferimini/q -perferimur/q -perferimus/q -perfero/q -perferor/q -perfer/q -perferremini/q -perferrem/q -perferremur/q -perferremus/q -perferrent/q -perferrentur/q -perferre/q -perferreris/q -perferrer/q -perferres/q -perferretis/q -perferret/q -perferretur/q -perferri/q -perferris/q -perfers/q -perferte/q -perfertis/q -perfert/q -perfertur/q -perferunt/q -perferuntur/q -perficio/B -perfluo/B -perfluxi/P -perfluxum/S -perforo/APS -perfrictionis/d -perfrictio/q -pergaeus/abc -pergamenus/abc -pergamus/b -Pergeus/b -perhibeo/B -perhibitum/S -perhibui/P -periclitatus/S -periclitor/A -periferia/a -perii/P -perimeter/q -perimetri/b -perimo/B -perinde -periodus/b -periphaeria/a -peripheria/a -peritia/a -peritus/Sabcrs -perivi/P -perlatum/S -permaneo/B -permansi/P -permansum/S -permeatum/S -permeavi/P -permeo/A -permisi/P -permissum/S -permitto/B -permultus/abc -permutatim -permuto/APS -pernecessarius/abc -pernicitas/q -pernicitatis/d -peroro/APS -perparce -perpendicularis/fgt -perpendiculum/c -perpendi/P -perpendo/B -perpensum/S -perperam/q -perpetuus/abc -perplexus/abc -perpolio/C -perpolitum/S -perpolivi/P -per/q -perquiro/B -perquisitum/S -perquisivi/P -perrectus/abc -perscrutatus/S -perscrutor/A -persevero/APS -persisto/B -personitum/S -persono/A -personui/P -perspectiva/a -perspecto/APS -perspectum/S -perspectus/abc -perspexi/P -perspicacis/fgrst -perspicacius/abcr -perspicio/B -perspicuitas/q -perspicuitatis/d -perspicuus/abcrs -perstiti/P -perstrepo/B -perstrepui/P -perstrictum/S -perstringo/B -perstrinxi/P -persuadeo/B -persuasi/P -persuasum/S -pertica/a -pertinacis/fgt -pertinax/q -pertineo/B -pertinui/P -pertracto/APS -pertractum/S -pertraho/B -pertranseam/q -pertranseamus/q -pertranseant/q -pertranseas/q -pertranseatis/q -pertranseat/q -pertranseo/q -pertranseundi/q -pertranseundo/q -pertranseundum/q -pertranseunt/q -pertransibam/q -pertransibamus/q -pertransibant/q -pertransibas/q -pertransibatis/q -pertransibat/q -pertransibimus/q -pertransibis/q -pertransibitis/q -pertransibit/q -pertransibo/q -pertransibunt/q -pertransiens/q -pertransientis/q -pertransieram/q -pertransieramus/q -pertransierant/q -pertransieras/q -pertransieratis/q -pertransierat/q -pertransierim/q -pertransierimus/q -pertransierint/q -pertransieris/q -pertransieritis/q -pertransierit/q -pertransiero/q -pertransiisse/q -pertransimus/q -pertransi/q -pertransirem/q -pertransiremus/q -pertransirent/q -pertransire/q -pertransires/q -pertransiretis/q -pertransiret/q -pertransis/q -pertransisse/q -pertransite/q -pertransitis/q -pertransit/q -pertransitum/S -pertransitu/q -pertransiturus/abc -pertransiveram/q -pertransiveramus/q -pertransiverant/q -pertransiveras/q -pertransiveratis/q -pertransiverat/q -pertransiverim/q -pertransiverimus/q -pertransiverint/q -pertransiveris/q -pertransiveritis/q -pertransiverit/q -pertransivero/q -pertransivissem/q -pertransivissemus/q -pertransivissent/q -pertransivisse/q -pertransivisses/q -pertransivissetis/q -pertransivisset/q -pertransivitierunt/q -pertransivitimus/q -pertransiviti/q -pertransivitis/q -pertransivititis/q -pertransivitit/q -pertraxi/P -pertuli/P -perturbo/APS -pervenio/C -perveni/P -perventum/S -perversum/S -perversus/abc -perverti/P -perverto/B -pervius/abc -pes/q -pessimus/abc -pestilentia/a -petitionis/d -petitio/q -petitum/S -petivi/P -peto/B -petrarium/c -Petrus/b -petulans/q -petulantis/fg -Peurbachius/b -Philippus/b -Philolaus/b -Philonis/d -Philon/q -philosophia/a -philosophicus/abc -philosophor/AP -philosophus/abc -Phineus/b -phrygionis/d -phrygio/q -phrygium/c -phrygius/abc -physicus/abc -pictoris/d -pictor/q -pictura/a -pietas/q -pietatis/d -pigritia/a -pila/a -pilula/a -pilum/c -pinguis/fg -pinnula/a -pinso/B -pinsui/P -piraticus/abc -piscatoris/d -piscator/q -piscis/f -pistum/S -pius/abc -pixidis/d -pixis/q -placeo/B -placitum/S -placui/P -plaga/a -planeta/a -planetae/q -planetarum/q -planetas/q -planetis/q -planicies/i -planities/i -planus/abcrs -platanus/b -platonicus/abc -Platonis/d -Plato/q -plectrum/c -plenilunium/c -plenus/abcr -plerus/abc -plinianus/abc -Plinius/b -pluma/a -plumbeus/abc -plumbum/c -pluralitas/q -pluralitatis/d -plura/q -plures/q -pluribus/q -pluries -plurifariam -plurimae/q -plurima/q -plurimarum/q -plurimas/q -plurimi/q -plurimis/q -plurimorum/q -plurimos/q -plurimus/abc -pluris/e -plurium/q -plus/q -plusquam -Plutarchus/b -pluteus/b -pluvia/a -pluvialis/fg -pluviosus/abcs -pluvius/abcs -Plynius/b -poculum/c -poena/a -poeniteo/B -poenitui/P -poeta/a -poeticus/abc -polio/C -politum/S -polivi/P -polleo/B -polliceor/B -pollicitus/S -polus/b -Polybius/b -Polydorus/b -polygonium/c -polygonus/b -ponderis/e -pondero/APS -ponderosus/abcs -pondo -pondus/q -pono/B -pons/q -pontifex/q -pontificalis/fg -pontificis/d -pontis/d -pontus/b -poposci/P -popularis/fg -populus/b -Porimon/q -porisma/q -porismata/q -porismate/q -porismati/q -porismatis/q -porismatorum/q -porrectum/S -porrexi/P -porrigo/B -porro -porta/a -portentosus/abcs -porticus/h -portionis/d -portio/q -portiuncula/a -porto/APS -portus/h -porus/b -posco/B -positionis/d -positio/q -positum/S -possedi/P -possem/q -possemus/q -possent/q -posse/q -posses/q -possessum/S -possetis/q -posset/q -possibilis/fgt -possibilitas/q -possibilitatis/d -possido/B -possim/q -possimus/q -possint/q -possis/q -possitis/q -possit/q -possum/q -possumus/q -possunt/q -post -postea -posterior/r -posterus/abc -posthabeo/B -posthabitum/S -posthabui/P -posthac/q -posthaec -posticus/abc -postpono/B -postpositum/S -postposui/P -postquam -postremus/abc -postridie/q -postulo/APS -posui/P -potens/q -potentia/a -potentialis/fgt -potentis/fgrs -poteram/q -poteramus/q -poterant/q -poteras/q -poteratis/q -poterat/q -poterimus/q -poteris/q -poteritis/q -poterit/q -potero/q -poterunt/q -potes/q -potestas/q -potestatis/d -potestis/q -potest/q -potior/r -potis/fgs -potius -potiusquam/q -potui/P -practicus/abc -prae -praeambulum/c -praebeo/B -praebitum/S -praebui/P -praececini/P -praecedo/B -praecepi/P -praeceptionis/d -praeceptio/q -praeceptum/S -praecessionis/d -praecessio/q -praecessi/P -praecessum/S -praecino/B -praecipio/B -praecipuus/abc -praecisus/abc -praeclarus/abcrs -praecognitionis/d -praecognitio/q -praeconatus/abc -praeconor/A -praecultus/abc -praedico/ABPS -praedictum/S -praedictus/abc -praeditus/abc -praedixi/P -praedurus/abc -praeeram/q -praeeramus/q -praeerant/q -praeeras/q -praeeratis/q -praeerat/q -praeerimus/q -praeeris/q -praeeritis/q -praeerit/q -praeero/q -praeerunt/q -praees/q -praeessem/q -praeessemus/q -praeessent/q -praeesse/q -praeesses/q -praeessetis/q -praeesset/q -praeeste/q -praeestis/q -praeesto/q -praeestote/q -praeest/q -praeexisto/B -praefacionis/d -praefatio/q -praefatus/S -praefeci/P -praefectum/S -praeficio/B -praefor/A -praefore/q -praefuere/q -praefui/P -praefuturam/q -praefuturum/q -praefuturus/q -praehendo/B -praelibo/AS -praelium/c -praelum/c -praemeditatus/S -praemeditor/A -praemisi/P -praemissum/S -praemissus/abc -praemitto/B -praemium/c -praemonstro/APS -praenoto/APS -praeparationis/d -praeparatio/q -praeparo/APS -praepono/B -praepositum/S -praeposterus/abc -praeposui/P -praereptum/S -praeripio/B -praeripui/P -praerogativus/abc -praesagio/C -praesagivi/P -praescribo/B -praescripsi/P -praescriptum/S -praesens/q -praesentia/a -praesentis/fg -praesento/A -praesertim -praeses/q -praesidis/d -praesidium/c -praesim/q -praesimus/q -praesint/q -praesis/q -praesitis/q -praesit/q -praestans/q -praestantis/fgrs -praestatum/S -praestiti/P -praesto/A -praestructum/S -praestruo/B -praestruxi/P -praesulis/d -praesul/q -praesum/q -praesumus/q -praesunto/q -praesunt/q -praeter -praeterea -praeteream/q -praetereamus/q -praetereant/q -praetereas/q -praetereatis/q -praetereat/q -praetereo/q -praetereundi/q -praetereundo/q -praetereundum/q -praetereuntem/q -praetereunte/q -praetereuntes/q -praetereuntia/q -praetereuntibus/q -praetereunti/q -praetereuntis/q -praetereuntium/q -praetereunt/q -praeteribam/q -praeteribamus/q -praeteribant/q -praeteribas/q -praeteribatis/q -praeteribat/q -praeteribimus/q -praeteribis/q -praeteribitis/q -praeteribit/q -praeteribo/q -praeteribunt/q -praeteriens/q -praeterieram/q -praeterieramus/q -praeterierant/q -praeterieras/q -praeterieratis/q -praeterierat/q -praeterierim/q -praeterierimus/q -praeterierint/q -praeterieris/q -praeterieritis/q -praeterierit/q -praeteriero/q -praeteriissem/q -praeteriissemus/q -praeteriissent/q -praeteriisse/q -praeteriisses/q -praeteriissetis/q -praeteriisset/q -praeteriitierunt/q -praeteriitimus/q -praeteriiti/q -praeteriitis/q -praeteriititis/q -praeteriitit/q -praeterimus/q -praeteri/q -praeterirem/q -praeteriremus/q -praeterirent/q -praeterire/q -praeterires/q -praeteriretis/q -praeteriret/q -praeteris/q -praeterisse/q -praeterite/q -praeteritis/q -praeterit/q -praeteritum/S -praeteritu/q -praeteritur/q -praeteriturus/abc -praeteriveram/q -praeteriveramus/q -praeteriverant/q -praeteriveras/q -praeteriveratis/q -praeteriverat/q -praeteriverim/q -praeteriverimus/q -praeteriverint/q -praeteriveris/q -praeteriveritis/q -praeteriverit/q -praeterivero/q -praeterivissem/q -praeterivissemus/q -praeterivissent/q -praeterivisse/q -praeterivisses/q -praeterivissetis/q -praeterivisset/q -praeterivitierunt/q -praeterivitimus/q -praeteriviti/q -praeterivitis/q -praeterivititis/q -praeterivitit/q -praeterlabor/B -praeterlapsus/S -praetermisi/P -praetermissum/S -praetermitto/B -praeterquam -praevalens/q -praevalentis/fg -praevenio/C -praeveni/P -praeventum/S -praevius/abc -praxim/q -praxi/q -praxis/q -precem/q -prece/q -preces/q -precibus/q -preciosus/abcs -preci/q -precis/q -precium/c -precor/A -precum/q -prehendi/P -prehendo/B -prehensum/S -premo/B -pressi/P -pressum/S -pretium/c -prex/q -pridem -primarius/abc -primas/q -primatis/d -primordium/c -primus/abc -princeps/q -principalis/fg -principis/de -principium/c -prior/r -priscus/abc -prisma/q -prismata/q -prismatis/e -prismatorum/q -priusquam -privilegium/c -privo/APS -probatus/abcs -probe -problema/q -problemata/q -problematis/e -problematorum/q -probo/APS -probrum/c -procedo/B -procerus/abc -processi/P -processum/S -procidi/P -procido/B -proclivis/fgrs -Proclus/b -proconsul/d -procrastino/A -procreatum/S -procreo/AP -procudi/P -procudo/B -procul -proculdubio/q -procuro/APS -procurri/P -procurro/B -procursum/S -procusum/S -prodeam/q -prodeamus/q -prodeant/q -prodeas/q -prodeatis/q -prodeat/q -prodeo/q -proderam/q -proderamus/q -proderant/q -proderas/q -proderatis/q -proderat/q -proderimus/q -proderis/q -proderitis/q -proderit/q -prodero/q -proderunt/q -prodes/q -prodessem/q -prodessemus/q -prodessent/q -prodesse/q -prodesses/q -prodessetis/q -prodesset/q -prodeste/q -prodestis/q -prodesto/q -prodestote/q -prodest/q -prodeundi/q -prodeundo/q -prodeundum/q -prodeuntem/q -prodeunte/q -prodeuntes/q -prodeuntia/q -prodeuntibus/q -prodeunti/q -prodeuntis/q -prodeuntium/q -prodeunt/q -prodibam/q -prodibamus/q -prodibant/q -prodibas/q -prodibatis/q -prodibat/q -prodibimus/q -prodibis/q -prodibitis/q -prodibit/q -prodibo/q -prodibunt/q -prodidi/P -prodiens/q -prodientis/q -prodieram/q -prodieramus/q -prodierant/q -prodieras/q -prodieratis/q -prodierat/q -prodierim/q -prodierimus/q -prodierint/q -prodieris/q -prodieritis/q -prodierit/q -prodiero/q -prodigiosus/abc -prodimus/q -prodi/q -prodirem/q -prodiremus/q -prodirent/q -prodire/q -prodires/q -prodiretis/q -prodiret/q -prodis/q -prodisse/q -prodite/q -proditis/q -prodit/q -proditum/S -proditu/q -proditurus/abc -prodiveram/q -prodiveramus/q -prodiverant/q -prodiveras/q -prodiveratis/q -prodiverat/q -prodiverim/q -prodiverimus/q -prodiverint/q -prodiveris/q -prodiveritis/q -prodiverit/q -prodivero/q -prodivissem/q -prodivissemus/q -prodivissent/q -prodivisse/q -prodivisses/q -prodivissetis/q -prodivisset/q -prodivitierunt/q -prodivitimus/q -prodiviti/q -prodivitis/q -prodivititis/q -prodivitit/q -prodo/B -produco/B -productum/S -productus/abc -produxi/P -profeci/P -profectionis/d -profectio/q -profectum/S -proferamini/q -proferam/q -proferamur/q -proferamus/q -proferant/q -proferantur/q -proferaris/q -proferar/q -proferas/q -proferatis/q -proferat/q -proferatur/q -proferebamini/q -proferebam/q -proferebamur/q -proferebamus/q -proferebant/q -proferebantur/q -proferebaris/q -proferebar/q -proferebas/q -proferebatis/q -proferebat/q -proferebatur/q -proferemini/q -proferemur/q -proferemus/q -proferendi/q -proferendo/q -proferendum/q -proferendus/abc -proferens/q -proferentis/fg -proferent/q -proferentur/q -profereris/q -proferes/q -proferetis/q -proferet/q -proferetur/q -proferimini/q -proferimur/q -proferimus/q -profero/q -proferor/q -profer/q -proferremini/q -proferrem/q -proferremur/q -proferremus/q -proferrent/q -proferrentur/q -proferre/q -proferreris/q -proferrer/q -proferres/q -proferretis/q -proferret/q -proferretur/q -proferri/q -proferris/q -profers/q -proferte/q -profertis/q -profert/q -profertur/q -proferunt/q -proferuntur/q -professionis/d -professio/q -professoris/d -professor/q -professus/S -proficio/B -profiteor/B -profluctum/S -profluo/B -profluxi/P -profudi/P -profui/P -profundo/B -profundus/abcrs -profusum/S -profuturam/q -profuturum/q -profuturus/q -progenitum/S -progenui/P -progigno/B -prognosticus/abc -progredior/B -progressionis/d -progressio/q -progressus/Sh -prohibeo/B -prohibitum/S -prohibui/P -proieci/P -proiectionis/d -proiectio/q -proiectum/S -proiicio/B -proinde/q -prolationis/d -prolatio/q -prolatum/S -prolegomena/q -prolegomenis/q -prolegomenorum/q -prologus/b -promereo/B -promeritum/S -promerui/P -Prometheus/b -promineo/B -prominui/S -promisi/P -promissum/S -promitto/B -promo/B -promotum/S -promoveo/B -promovi/P -prompsi/P -promptu -promptum/S -promptus/abcrs -pronuncio/APS -pronuntio/APS -prooemium/c -propago/APS -propalam -prope -propediem/q -propello/B -propemodum -propero/APS -propheta/a -propino/APS -propinquitas/q -propinquitatis/d -propinquo/APS -propinquus/abcrs -propior/r -propitius/abc -propono/B -proportionalis/fgt -proportionalitas/q -proportionalitatis/d -proportionatus/abc -proportionis/d -proportio/q -propositionis/d -propositio/q -propositum/S -propositus/abc -proposui/P -proprietas/q -proprietatis/d -proprius/abcr -propte -propterea/q -propter/q -propugnaculum/c -propuli/P -propulsum/S -pro/q -prora/a -proregis/d -prorex/q -prorsus -proseco/B -prosectum/S -prosecui/P -prosecutus/S -prosequor/B -prosilio/C -prosilui/P -prosim/q -prosimus/q -prosint/q -prosis/q -prositis/q -prosit/q -prospecto/APS -prosum/q -prosumus/q -prosunt/q -protectionis/d -protectio/q -protelo/APS -protendi/P -protendo/B -protensum/S -protentum/S -protheoria/a -protinus -protractum/S -protraho/B -protraxi/P -protuli/P -prout -provectum/S -proveho/B -provenio/C -proveni/P -proventum/S -proverbium/c -provexi/P -providentia/a -provideo/B -providi/P -provincia/a -provisum/S -provoco/A -proximus/abc -prudens/q -prudentis/fgrs -Ptolemaeus/b -ptolemaicus/abc -Ptolemeus/b -publicus/abc -pudeo/B -puditum/S -pudui/P -puer/b -puerilis/fg -pueriliter/q -pugno/APS -pulcher/s -pulchre/q -pulchri/abcr -pullulo/APS -pulso/APS -pulsum/S -pulsus/h -pulveris/d -pulvis/q -punctum/c -puniceus/abc -pupa/a -pupilla/a -pupillaris/fg -puppim/q -puppis/f -puritas/q -puritatis/d -purpureus/abc -purus/abcrs -pusillus/abc -puteus/b -puto/APS -putrefactionis/d -putrefactio/q -pyramidalis/fg -pyramidis/d -pyramis/q -Pythagoras/q -pythagoricus/abc -qua -quacumque -quacunque -quadam/q -quadra/a -quadragesimus/abc -quadraginta/q -quadrangulus/abc -quadratus/abc -quadrifariam -quadrilaterus/abc -quadrinomium/c -quadro/APS -quadruplex/q -quadruplicationis/d -quadruplicatio/q -quadruplicis/de -quadruplico/AS -quadruplo/AS -quadruplor/A -quadruplus/abc -quae -quaecumque -quaecunque -quaedam/q -quaelibet -quaepiam -quaequam -quaeque -quaero/B -quaesitum/S -quaesitus/abc -quaesivi/P -quaeso/B -quaestionis/d -quaestio/q -quaestiuncula/a -quaestoris/d -quaestor/q -quaestuosus/abcs -quaevis/q -qualecumque -qualecunque -qualemcumque -qualemcunque -qualescumque -qualescunque -qualiacumque -qualiacunque -qualibet -qualibuscumque -qualibuscunque -qualicumque -qualicunque -qualiscumque/q -qualiscunque -qualis/fg -qualitas/q -qualitatis/d -qualiumcumque -qualiumcunque -quam -quamcumque -quamcunque -quamdam/q -quamlibet -quamobrem -quampiam -quamplurimae/q -quamplurima/q -quamplurimarum/q -quamplurimas/q -quamplurimi/q -quamplurimis/q -quamplurimorum/q -quamplurimos/q -quamquam -quamque -quamvis/q -quandam/q -quandocumque -quandocunque -quando/q -quandoquidem -quanquam/q -quantacumque -quantacunque -quantaecumque -quantaecunque -quantaelibet -quantaevis -quantalibet -quantamcumque -quantamcunque -quantamlibet -quantamvis -quantarumcumque -quantarumcunque -quantarumlibet -quantarumvis -quantascumque -quantascunque -quantaslibet -quantasvis -quantavis -quantecumque -quantecunque -quantelibet -quantevis -quanticumque -quanticunque -quantilibet -quantiscumque -quantiscunque -quantislibet -quantisvis -quantitas/q -quantitatis/d -quantivis -quantocumque -quantocunque -quantolibet -quantorumcumque -quantorumcunque -quantorumlibet -quantorumvis -quantoscumque -quantoscunque -quantoslibet -quantosvis -quantovis -quantumcumque -quantumcunque/q -quantumlibet -quantumvis -quantus/abc -quantuscumque -quantuscunque -quantuslibet -quantusvis -quanvis/q -quapiam -quapropter -quaqua -quaquam -quaque -quare -quartus/abc -quarum -quarumcumque -quarumcunque -quarumdam/q -quarumlibet -quarumpiam -quarumquam -quarumque -quarumvis/q -quas -quascumque -quascunque -quasdam/q -quasi -quaslibet -quaspiam -quasquam -quasque -quasvis/q -quatenus -quaternarius/abc -quaternionis/d -quaternio/q -quaternus/abc -quater/q -quattuordecim/q -quattuor/q -quatuordecim/q -quatuordecuplus/abc -quatuor/q -quavis/q -que -queam/q -queamus/q -queant/q -queas/q -queatis/q -queat/q -quem -quemadmodum -quemcumque -quemcunque -quemdam/q -quemlibet -quempiam -quemquam -quemque -quemvis/q -quendam/q -queo/q -queror/B -querulus/abc -questionis/d -questio/q -questus/S -queundi/q -queundo/q -queundum/q -queunt/q -qui -quia -quibam/q -quibamus/q -quibant/q -quibas/q -quibatis/q -quibat/q -quibimus/q -quibis/q -quibitis/q -quibit/q -quibo/q -quibunt/q -quibus -quibuscumque -quibuscunque -quibusdam/q -quibuslibet -quibuspiam -quibusquam -quibusque -quibusvis/q -quicquam -quicquid -quicumque -quicunque -quid -quidam/q -quiddam/q -quidem -quidlibet -quidpiam -quidquam -quidque -quidquid -quieram/q -quieramus/q -quierant/q -quieras/q -quieratis/q -quierat/q -quierim/q -quierimus/q -quierint/q -quieris/q -quieritis/q -quierit/q -quiero/q -quiesco/B -quies/q -quietis/d -quietum/S -quietus/abcr -quievi/P -quiissem/q -quiissemus/q -quiissent/q -quiisse/q -quiisses/q -quiissetis/q -quiisset/q -quiitierunt/q -quiitimus/q -quiiti/q -quiitis/q -quiititis/q -quiitit/q -quilibet -quimus/q -quin -quinae/q -quina/q -quinarius/abc -quinarum/q -quinas/q -quincuplex/q -quincuplicatus/abc -quincuplicis/fg -quincuplico/A -quincuplus/abc -quindecies/q -quindecim/q -quindecimus/abc -quindecuplus/abc -quindenarius/abc -quinimmo -quini/q -quinis/q -quinorum/q -quinos/q -quinquagesimus/abc -quinquaginta/q -quinquangulus/abc -quinque/q -quinquies/q -quintuplus/abc -quintus/abc -quipiam -quippe -quiquam -quique -quirem/q -quiremus/q -quirent/q -quire/q -quires/q -quiretis/q -quiret/q -quis -quisdam/q -quislibet -quispiam -quis/q -quisquam -quisque -quisquiliae/q -quisquiliarum/q -quisquilias/q -quisquiliis/q -quisquis -quisse/q -quitis/q -quit/q -quitur/q -quiveram/q -quiveramus/q -quiverant/q -quiveras/q -quiveratis/q -quiverat/q -quiverim/q -quiverimus/q -quiverint/q -quiveris/q -quiveritis/q -quiverit/q -quivero/q -quivis/q -quivissem/q -quivissemus/q -quivissent/q -quivisse/q -quivisses/q -quivissetis/q -quivisset/q -quivitierunt/q -quivitimus/q -quiviti/q -quivitis/q -quivititis/q -quivitit/q -quo -quoad -quocumque -quocunque -quod -quodammodo -quodam/q -quodcumque -quodcunque -quoddam/q -quodlibet -quodpiam -quodquam -quodque -quodvis/q -quolibet -quomodo -quomodocumque -quonam -quondam/q -quoniam -quopiam -quoquam -quoque -quoquo -quorsum -quorum -quorumcumque -quorumcunque -quorumdam/q -quorumlibet -quorumpiam -quorumquam -quorumque -quorumvis/q -quorundam -quos -quoscumque -quoscunque -quosdam/q -quoslibet -quospiam -quosquam -quosque -quosvis/q -quot -quotacumque -quotacunque -quotaecumque -quotaecunque -quotamcumque -quotamcunque -quotarumcumque -quotarumcunque -quotascumque -quotascunque -quotcumque -quotcunque -quotecumque -quotecunque -quoticumque -quoticunque -quotidianus/abc -quotidie -quotiens/q -quotientis/d -quoties -quotiescumque -quotiescunque -quotiscumque -quotiscunque -quotlibet -quotocumque -quotocunque -quotorumcumque -quotorumcunque -quotoscumque -quotoscunque -quotquot -quotumcumque -quotumcunque -quotuplex/q -quotuplicis/fgt -quotuplus/abc -quotus/abc -quotuscumque -quotuscunque -quotvis/q -quousque -quovis/q -quum/q -radiationis/d -radiatio/q -radicis/d -radio/APS -radiosus/abc -radius/b -radix/q -rapacitas/q -rapacitatis/d -rapio/B -raptum/S -rapui/P -rarefacio/B -rarefactum/S -rarefeci/P -raritas/q -raritatis/d -rarus/abcrs -ratiocinatus/S -ratiocinium/c -ratiocinor/A -rationalis/fgt -rationis/d -ratio/q -ratus/S -realis/fgt -rebuspublicis/q -recedo/B -recenseo/B -recensitum/S -recens/q -recensui/P -recentis/fgrs -recepi/P -receptaculum/c -receptum/S -receptus/h -recessionis/d -recessio/q -recessi/P -recessum/S -recessus/h -recidi/P -recido/B -recipio/B -reciprocationis/d -reciprocatio/q -reciproco/APS -reciprocus/abc -recisum/S -recito/APS -recognitum/S -recognosco/B -recognovi/P -recollectum/S -recollegi/P -recolligo/B -recolo/B -recolui/P -recompenso/APS -recordatus/S -recordor/A -recreo/APS -rectangulum/c -rectificationis/d -rectificatio/q -rectifico/APS -rectilineus/abc -rectitudinis/d -rectitudo/q -rectum/S -rectus/abcrs -recultum/S -recussi/P -recussum/S -recutio/B -redactum/S -reddidi/P -redditum/S -reddo/B -redeam/q -redeamus/q -redeant/q -redeas/q -redeatis/q -redeat/q -redegi/P -redemptoris/d -redemptor/q -redeo/q -redeundi/q -redeundo/q -redeundum/q -redeuntem/q -redeunte/q -redeuntes/q -redeuntia/q -redeuntibus/q -redeunti/q -redeuntis/q -redeuntium/q -redeunt/q -redibam/q -redibamus/q -redibant/q -redibas/q -redibatis/q -redibat/q -redibimus/q -redibis/q -redibitis/q -redibit/q -redibo/q -redibunt/q -rediens/q -redieram/q -redieramus/q -redierant/q -redieras/q -redieratis/q -redierat/q -redierim/q -redierimus/q -redierint/q -redieris/q -redieritis/q -redierit/q -rediero/q -redigo/B -rediissem/q -rediissemus/q -rediissent/q -rediisse/q -rediisses/q -rediissetis/q -rediisset/q -rediitierunt/q -rediitimus/q -rediiti/q -rediitis/q -rediititis/q -rediitit/q -redimus/q -redi/q -redirem/q -rediremus/q -redirent/q -redire/q -redires/q -rediretis/q -rediret/q -redis/q -redisse/q -redite/q -reditionis/d -reditio/q -reditis/q -redit/q -reditum/S -reditu/q -reditur/q -rediturus/abc -rediveram/q -rediveramus/q -rediverant/q -rediveras/q -rediveratis/q -rediverat/q -rediverim/q -rediverimus/q -rediverint/q -rediveris/q -rediveritis/q -rediverit/q -redivero/q -redivissem/q -redivissemus/q -redivissent/q -redivisse/q -redivisses/q -redivissetis/q -redivisset/q -redivitierunt/q -redivitimus/q -rediviti/q -redivitis/q -redivititis/q -redivitit/q -reduco/B -reductionis/d -reductio/q -reductum/S -reduxi/P -referamini/q -referam/q -referamur/q -referamus/q -referant/q -referantur/q -referaris/q -referar/q -referas/q -referatis/q -referat/q -referatur/q -referebamini/q -referebam/q -referebamur/q -referebamus/q -referebant/q -referebantur/q -referebaris/q -referebar/q -referebas/q -referebatis/q -referebat/q -referebatur/q -referemini/q -referemur/q -referemus/q -referendi/q -referendo/q -referendum/q -referendus/abc -referens/q -referentis/fg -referent/q -referentur/q -refereris/q -referes/q -referetis/q -referet/q -referetur/q -referimini/q -referimur/q -referimus/q -refero/q -referor/q -refer/q -referremini/q -referrem/q -referremur/q -referremus/q -referrent/q -referrentur/q -referre/q -referreris/q -referrer/q -referres/q -referretis/q -referret/q -referretur/q -referri/q -referris/q -refers/q -referte/q -refertis/q -refert/q -refertur/q -refertus/abcr -referunt/q -referuntur/q -reflecto/B -reflexionis/d -reflexio/q -reflexi/P -reflexum/S -refluo/B -reformo/APS -refractionis/d -refractio/q -refractum/S -refragor/AS -refregi/P -refringo/B -refudi/P -refugio/B -refugi/P -refundo/B -refusum/S -regia/a -Regimontanus/b -Regimontius/b -regina/a -Regiomontanus/b -Regiomontius/b -regionis/d -regio/q -regis/d -regnum/c -rego/B -regredior/B -regressionis/d -regressio/q -regressus/S -regula/a -regularis/fgt -reieci/P -reiectum/S -reiicio/B -reipublicae/q -relationis/d -relatio/q -relativus/abc -relatum/S -relaxo/APS -relego/APS -relictum/S -relictus/abc -religionis/d -religio/q -religo/APS -relinquo/B -reliquiae/q -reliquiarum/q -reliquias/q -reliquiis/q -reliqui/P -reliquus/abc -remaneo/B -remansi/P -remansum/S -remedium/c -remex/q -remigis/d -remigo/APS -remisi/P -remissionis/d -remissio/q -remissum/S -remissus/abcr -remitto/B -remoratus/S -remoror/A -remotionis/d -remotio/q -remotum/S -remotus/abcrs -removeo/B -removi/P -rempublicam/q -remus/b -reor/B -reparo/APS -repastinationis/d -repastinatio/q -repello/B -repenso/APS -repentinus/abc -repercussionis/d -repercussio/q -repercussi/P -repercussum/S -repercutio/B -reperio/C -reperi/P -repertum/S -repetii/P -repetitionis/d -repetitio/q -repetitum/S -repetitus/abc -repetivi/P -repeto/B -repleo/B -repletum/S -replevi/P -repo/B -repono/B -repositum/S -reposui/P -repperi/P -repraesento/APS -reprehendi/P -reprehendo/B -reprehensionis/d -reprehensio/q -reprehensum/S -repsi/P -reptum/S -republicae/q -republica/q -repugno/APS -repuli/P -repulsum/S -reputo/A -requiro/B -requisitum/S -requisivi/P -rerumpublicarum/q -resarcio/C -resarsi/P -resartum/S -rescribo/B -rescripsi/P -rescriptum/S -reseco/A -resectum/S -resecui/P -resedi/P -resessum/S -res/i -resideo/B -resido/B -residualis/fg -residuo/A -residuum/c -residuus/abc -resistentia/a -resolutionis/d -resolutio/q -resolutum/S -resolvi/P -resolvo/B -respectum/S -respexi/P -respicio/B -respiro/APS -respondeo/B -respondi/P -responsionis/d -responsio/q -responsum/S -respublicae/q -respublica/q -respublicas/q -respui/P -respuo/B -resteti/P -restitui/P -restituo/B -restitutionis/d -restitutio/q -restitutum/S -resto/A -restrictum/S -restringo/B -restrinxi/P -retardo/APS -retentum/S -retinaculum/c -retineo/B -retinui/P -retrocedo/B -retrocessionis/d -retrocessio/q -retrocessi/P -retrogradationis/d -retrogradatio/q -retrogrado/A -retrogradus/abc -retro/q -retrorsum -rettuli/P -retudi/P -retuli/P -retundo/B -retusum/S -reverberationis/d -reverberatio/q -reverbero/APS -reverendus/abcs -reversionis/d -reversio/q -reversum/S -reverti/P -reverto/B -revisi/P -reviso/B -revisum/S -revivisco/B -revivixi/P -revivo/B -revixi/P -revoco/A -revolutionis/d -revolutio/q -revolutum/S -revolvi/P -revolvo/B -rexi/P -rex/q -rhetoris/e -rhetor/q -rhomboides/q -rhomboidis/f -rhombus/b -rhythmicus/abc -rideo/B -ridiculus/abc -rigesco/B -rima/a -rimatus/S -rimor/A -rimula/a -risgui/P -risi/P -risum/S -rite/q -rivalis/fg -rivulus/b -rivus/b -roborationis/d -roboratio/q -roboris/e -roboro/APS -robur/q -robustus/abcrs -rogationis/d -rogatio/q -Rogerius/b -rogo/APS -Roma/a -romanus/abc -rorationis/d -roratio/q -roridus/abc -roris/d -roro/APS -rosa/a -ros/q -rostrum/c -rota/a -rotationis/d -rotatio/q -roto/APS -rotunditas/q -rotunditatis/d -rotundo/APS -rotundus/abcs -ruber/q -rubesco/B -rubescui/P -rubicundus/abcrs -rubri/abc -rudimentum/c -rudis/fg -rufus/abc -rumpo/B -rupes/q -rupi/P -rupis/f -ruptum/S -rursum/q -rursus/q -rusus/abc -sabbatum/c -sacco/APS -sacerdos/q -sacerdotis/d -sacer/q -sacoma/q -sacomata/q -sacomatis/e -sacomatorum/q -sacri/abc -Sacroboscus/b -saeculum/c -saepe -saepes/q -saepio/C -saepior/r -saepis/d -saepissimus/abc -saepsi/P -saeptum/P -sagacis/fg -sagacitas/q -sagacitatis/d -sagax/q -sagitta/a -sagittarius/abc -sagittula/a -salio/C -salsura/a -salsus/abc -saltem/q -salto/APS -saltum/S -saltus/h -salui/P -salum/c -salus/abcq -salutis/d -saluto/APS -salvo/AS -sambuca/a -Samius/abc -sanctus/abcs -sanguinis/d -sanguis/q -sanitas/q -sanitatis/d -sanus/abc -sapiens/q -sapientia/a -sapientis/fgr -sapii/S -sapio/B -Saraceni/q -Saracenis/q -Saracenorum/q -Saracenos/q -sat -satago/B -satisfaciendus/abcq -satisfaciens/q -satisfacientis/fq -satisfacio/B -satisfacionis/d -satisfacio/q -satisfactum/S -satisfeci/P -satisfiam/q -satisfiamus/q -satisfiant/q -satisfias/q -satisfiatis/q -satisfiat/q -satisfiebam/q -satisfiebamus/q -satisfiebant/q -satisfiebas/q -satisfiebatis/q -satisfiebat/q -satisfiemus/q -satisfient/q -satisfierem/q -satisfieremus/q -satisfierent/q -satisfieres/q -satisfieretis/q -satisfieret/q -satisfieri/q -satisfies/q -satisfietis/q -satisfiet/q -satisfimus/q -satisfio/q -satisfis/q -satisfitis/q -satisfit/q -satisfiunt/q -satis/q -satius/q -saturabilis/fg -saturi/abcr -saturnus/b -satur/q -saxum/c -scabellum/c -scaber/q -scabri/abc -scala/a -scalaris/fg -scalatim -scalenus/abc -scalmus/b -scamnum/c -scandi/P -scando/B -scansum/S -scapus/b -schema/q -schemata/q -schematis/e -schematorum/q -schola/a -scholium/c -sciaticum/c -scidi/P -scientia/a -scilicet -scindo/B -scintilla/a -scio/C -Scipionis/d -Scipio/q -sciscatus/S -sciscitor/A -scissibilitas/q -scissibilitatis/d -scissum/S -scitum/S -scivi/P -scola/a -scopulus/b -scopus/b -scribo/B -scripsi/P -scriptoris/d -scriptor/q -scriptum/S -scrutatus/S -scrutor/A -sculptoris/d -sculptor/q -sculptura/a -scutica/a -scytala/a -secedo/B -secerno/B -secesssi/P -secessum/S -secludo/B -seclusi/P -seclusum/S -seco/A -secretum/S -secrevi/P -sectionis/d -sectio/q -sector/A -sectoris/d -sector/q -sectum/S -sectus/abc -secui/P -seculum/c -secum -secundarius/abc -secundina/a -secundus/abc -securim/q -securis/f -securus/abc -secus -secutus/S -sed -sedecim/q -sedecimus/abc -sedenarius/b -sedeo/B -sedes/q -sedile/q -sedilis/f -sedi/P -sedis/d -sedo/APS -segmentum/c -segnis/fgr -segrego/APS -seipsae/q -seipsam/q -seipsa/q -seipsarum/q -seipsas/q -seipse/q -seipsi/q -seipsis/q -seipsius/q -seipso/q -seipsorum/q -seipsos/q -seipsum/q -seiunctum/S -seiungo/B -seiunxi/P -selectum/S -selegi/P -seligo/B -sellularius/abc -semel/q -semet/q -semicirculus/b -semidiameter/q -semidiametri/b -semiditonus/b -semiperipheria/a -semipoligonium/c -semipolygonium/c -semis/q -semissis/d -semitonium/c -semitonus/b -semiuncia/a -semotus/abc -semper/q -senae/q -sena/q -senarius/abc -senarum/q -senas/q -senex/q -senilis/fg -seni/q -senis/deq -senorum/q -senos/q -sensibilis/fgt -sensilis/fg -sensim -sensi/P -sensum/S -sensus/h -sententia/a -sentina/a -sentio/C -seorsus/abc -separabilis/fg -separatim -separo/APS -septangulus/abc -september/q -septembris/d -septemdecies/q -septem/q -septenae/q -septena/q -septenarius/abc -septenarum/q -septenas/q -septeni/q -septenis/q -septenorum/q -septenos/q -septentrionalis/fg -septentrionis/d -septentrio/q -septichordus/abc -septies/q -septimus/abc -septingentesimus/abc -septuagesimus/abc -septumplex/q -septumplicis/d -septuplicatus/abc -septuplum/c -sepulchrum/c -se/q -sequacis/fg -sequax/q -sequens/q -sequentis/fg -sequor/B -serenus/abcs -seriatim -sericum/c -sericus/abc -seriebus/q -seriei/q -seriem/q -serie/q -series/q -sermonis/d -sermo/q -serratile/q -serratilis/g -servatoris/d -servator/q -servatus/abc -servilis/fg -servio/C -servitium/c -servitum/S -servitus/q -servitutis/d -servivi/P -servo/APS -sese/q -sesque/q -sesquialteri/abc -sesquialter/q -sesquioctavus/abc -sesqui/q -sesquiquartus/abc -sesquiseptimus/abc -sesquitertius/abc -sessum/S -seu -severus/abc -sexagesimus/abc -sexaginta/q -sexangulus/abc -sexcentae/q -sexcenta/q -sexcentarum/q -sexcentas/q -sexcenti/q -sexcentis/q -sexcentorum/q -sexcentos/q -sexcuplicatus/abc -sexcuplus/abc -sexdecim/q -sexies/q -sex/q -sexquialteri/abc -sexquialter/q -sextans/q -sextantis/d -sextarius/b -sextuplus/abc -sextus/abc -si -sibimet/q -sibi/q -Sicani/q -Sicanis/q -Sicanorum/q -Sicanos/q -Sicilia/a -sic/q -sicubi -siculus/abc -sicut -sicuti -sideris/e -sidus/q -sigillum/c -signifer/q -significatus/abc -significo/APS -signifri/abc -signo/APS -signum/c -silentium/c -silex/q -silicis/d -Simeonis/d -Simeon/q -simia/a -similis/fgrt -similitudinis/d -similitudo/q -simillimus/abc -simplex/q -simplicis/fgrst -simplus/abc -sim/q -simulacrum/c -simulo/APS -simul/q -simus/q -sin -sincerus/abc -sine -singillatim -singularis/fg -singulatim -singulus/abc -sinister/q -sinistri/abcr -sino/B -sint/q -sinus/h -siphonis/d -sipho/q -siquidem -sis/q -sisto/B -siticulosus/abc -sitis/q -sit/q -situm/S -situs/abch -sive -sivi/P -sobrius/abc -socio/APS -solae/q -solam/q -sola/q -solaris/fg -solarium/c -solarius/abc -solatium/c -solemnitas/q -solemnitatis/d -soleo/B -solers/q -solertia/a -solertis/de -soliditas/q -soliditatis/d -solidus/abc -soli/q -solis/d -solitudinis/d -solitudo/q -solitus/S -solium/c -solius/q -solo/q -sol/q -solstitialis/fg -solstitium/c -solubilis/fg -solummodo -solum/q -solus/abcq -solutionis/d -solutio/q -solutum/S -solvi/P -solvo/B -somnio/APS -somnolentia/a -somnus/b -sonitum/S -sono/A -sonoritas/q -sonoritatis/d -sonorus/abc -sonui/P -sonus/b -sophisma/q -sophismatis/e -sortior/C -sortitus/S -spacium/c -spargo/B -sparsim/q -sparsi/P -sparsum/S -spatium/c -specialis/fg -speciatim -species/i -specillum/c -specimen/q -speciminis/e -spectaculum/c -spectatoris/d -spectator/q -specto/APS -specubus/q -specui/q -specularis/fg -speculationis/d -speculatio/q -speculativus/abc -speculatoris/d -speculator/q -speculatus/S -speculor/A -speculum/c -specum/q -specu/q -specus/q -specuum/q -sperno/B -spero/APS -spes/i -sphaera/a -sphaeralis/fg -sphaericus/abc -sphaeroidis/fg -spira/a -spiralis/f -spiritalis/fg -spiritus/h -spiro/APS -spissamentum/c -spissus/abcr -splendidus/abcrs -spondeus/b -sponte -spretum/S -sprevi/P -stabilio/C -stabilis/fg -stabilitum/S -stabilivi/P -stadium/c -stamen/q -staminis/e -statera/a -statim -stationarius/abc -stationis/d -statio/q -statua/a -statui/P -statum/S -statuo/B -staturus/S -statutum/S -stella/a -stellatus/abc -stereometria/a -sterno/B -steti/P -stilla/a -stillicidium/c -stillo/APS -stipendium/c -stipo/APS -stiti/P -sto/A -Stoeflerinus/c -Stoflerinus/b -stramentum/c -strategus/b -stratum/S -stravi/P -strepitus/h -strictum/S -stridulus/abc -stringo/B -strinxi/P -strophium/c -structim/q -structum/S -structura/a -struo/B -struxi/P -studiosus/abcs -studium/c -stultitia/a -stupeo/B -stuppa/a -stupui/P -stylus/b -suaemet/q -suamet/q -suammet/q -suapte/q -suarummet/q -suasmet/q -suavis/fgrst -suavitas/q -suavitatis/d -sub -subcontrarius/abc -subduco/B -subductum/S -subduplus/abc -subduxi/P -subeam/q -subeamus/q -subeant/q -subeas/q -subeatis/q -subeat/q -subeo/q -suberam/q -suberamus/q -suberant/q -suberas/q -suberatis/q -suberat/q -suberimus/q -suberis/q -suberitis/q -suberit/q -subero/q -suberunt/q -subes/q -subessem/q -subessemus/q -subessent/q -subesse/q -subesses/q -subessetis/q -subesset/q -subeste/q -subestis/q -subesto/q -subestote/q -subest/q -subeundi/q -subeundo/q -subeundum/q -subeuntem/q -subeunte/q -subeuntes/q -subeuntia/q -subeuntibus/q -subeunti/q -subeuntis/q -subeuntium/q -subeunt/q -subferamini/q -subferam/q -subferamur/q -subferamus/q -subferant/q -subferantur/q -subferaris/q -subferar/q -subferas/q -subferatis/q -subferat/q -subferatur/q -subferebamini/q -subferebam/q -subferebamur/q -subferebamus/q -subferebant/q -subferebantur/q -subferebaris/q -subferebar/q -subferebas/q -subferebatis/q -subferebat/q -subferebatur/q -subferemini/q -subferemur/q -subferemus/q -subferendi/q -subferendo/q -subferendum/q -subferendus/abc -subferens/q -subferentis/fg -subferent/q -subferentur/q -subfereris/q -subferes/q -subferetis/q -subferet/q -subferetur/q -subferimini/q -subferimur/q -subferimus/q -subfero/q -subferor/q -subfer/q -subferremini/q -subferrem/q -subferremur/q -subferremus/q -subferrent/q -subferrentur/q -subferre/q -subferreris/q -subferrer/q -subferres/q -subferretis/q -subferret/q -subferretur/q -subferri/q -subferris/q -subfers/q -subferte/q -subfertis/q -subfert/q -subfertur/q -subferunt/q -subferuntur/q -subfore/q -subfuere/q -subfui/P -subfuturam/q -subfuturum/q -subfuturus/q -subiaceo/B -subiacui/P -subibam/q -subibamus/q -subibant/q -subibas/q -subibatis/q -subibat/q -subibimus/q -subibis/q -subibitis/q -subibit/q -subibo/q -subibunt/q -subieci/P -subiectum/S -subiens/q -subieram/q -subieramus/q -subierant/q -subieras/q -subieratis/q -subierat/q -subierim/q -subierimus/q -subierint/q -subieris/q -subieritis/q -subierit/q -subiero/q -subiicio/B -subiissem/q -subiissemus/q -subiissent/q -subiisse/q -subiisses/q -subiissetis/q -subiisset/q -subiitierunt/q -subiitimus/q -subiiti/q -subiitis/q -subiititis/q -subiitit/q -subimus/q -subinde -subi/q -subirem/q -subiremus/q -subirent/q -subire/q -subires/q -subiretis/q -subiret/q -subis/q -subisse/q -subitaneus/abc -subite/q -subitis/q -subit/q -subitum/S -subitu/q -subitur/q -subiturus/abc -subiugalis/fg -subiunctum/S -subiungo/B -subiunxi/P -subiveram/q -subiveramus/q -subiverant/q -subiveras/q -subiveratis/q -subiverat/q -subiverim/q -subiverimus/q -subiverint/q -subiveris/q -subiveritis/q -subiverit/q -subivero/q -subivissem/q -subivissemus/q -subivissent/q -subivisse/q -subivisses/q -subivissetis/q -subivisset/q -subivitierunt/q -subivitimus/q -subiviti/q -subivitis/q -subivititis/q -subivitit/q -sublatum/S -sublimis/fgr -suborior/C -subrogo/APS -subsanno/APS -subscribo/B -subscripsi/P -subscriptum/S -subscriptus/abc -subseco/A -subsectum/S -subsecui/B -subsecutus/S -subsedi/P -subsequor/B -subsessum/S -subsido/B -subsilio/C -subsilui/P -subsim/q -subsimus/q -subsint/q -subsis/q -subsitis/q -subsit/q -substantia/a -substitui/P -substituo/B -substitutum/S -subsum/q -subsumus/q -subsunto/q -subsunt/q -subtaceo/B -subtendi/P -subtendo/B -subtensum/S -subtentum/S -subter -subterpositus/abc -subtexo/B -subtextum/S -subtexui/P -subtilis/fgrst -subtilitas/q -subtilitatis/d -subtractionis/d -subtractio/q -subtractum/S -subtractus/abc -subtraho/B -subtraxi/P -subtriplum/c -subtuli/P -succedo/B -succendi/P -succendo/B -succenseo/B -succensui/P -succensum/S -successionis/d -successio/q -successi/P -successivus/abc -successum/S -succincte/q -succinus/abc -succollo/APS -succula/a -succurri/P -succurro/B -succursum/S -sudo/APS -suemet/q -sueratio/q -suesco/B -suetum/S -suevi/P -suffeci/P -suffectum/S -sufficiens/q -sufficienter -sufficientis/fg -sufficio/B -suffuratum/S -suffuror/A -suimet/q -sui/q -suismet/q -sulco/APS -sulcus/b -sulphureus/abc -sulphuris/e -sulphur/q -summas/q -summatim/q -summatis/d -summitas/q -summitatis/d -summum/c -summus/abc -sumo/B -sumpsi/P -sumptum/S -sum/q -sumus/q -sunto/q -sunt/q -suomet/q -suopte/q -suorummet/q -suosmet/q -superadditum/S -superaddo/B -superationis/d -supercilium/c -supereram/q -supereramus/q -supererant/q -supereras/q -supereratis/q -supererat/q -supererimus/q -supereris/q -supereritis/q -supererit/q -superero/q -supererunt/q -superes/q -superessem/q -superessemus/q -superessent/q -superesse/q -superesses/q -superessetis/q -superesset/q -supereste/q -superestis/q -superesto/q -superestote/q -superest/q -superficialis/fg -superficies/i -superfluitas/q -superfluitatis/d -superfluus/abc -superfore/q -superfuere/q -superfui/P -superfuturam/q -superfuturum/q -superfuturus/q -superiaceo/B -superior/r -superne -supernus/abc -supero/APS -superparticularis/fg -superparticularitas/q -superparticularitatis/d -superpartiens/q -superpartientis/d -superpono/B -superpositum/S -superposui/P -super/q -supersim/q -supersimus/q -supersint/q -supersis/q -supersitis/q -supersit/q -superstitionis/d -superstitio/q -superstitiose/q -supersum/q -supersumus/q -supersunto/q -supersunt/q -supertexo/B -supertextum/S -supertexui/P -superus/abc -supervacuus/abc -supervenio/C -superveni/P -superventum/S -suppedito/APS -suppetitum/S -suppetivi/P -suppeto/B -supplementum/c -suppleo/B -suppletum/S -supplevi/P -suppono/B -suppositionis/d -suppositio/q -suppositum/S -suppositus/abc -supposui/P -supprapositus/abc -supputationis/d -supputatio/q -supputo/APS -supradictus/abc -suprapositus/abc -supra/q -suprascriptus/abc -supremus/abc -surculus/b -surgo/B -surrectum/S -surrexi/P -sursum -suscepi/P -susceptum/S -suscipio/B -suspectum/S -suspendi/P -suspendo/B -suspensionis/d -suspensio/q -suspensum/S -suspexi/P -suspicatus/S -suspicio/B -suspicor/A -sustentaculum/c -sustento/APS -sustentum/S -sustineo/B -sustinui/P -sustollo/B -suummet/q -suus/abc -suusmet/q -syderalis/fg -syllaba/a -syllabicus/abc -syllogismus/b -syllogizo/A -sylva/a -sylvosus/abs -symmetria/a -symphonia/a -synodus/b -Syracusae/q -syracusanus/abc -Syracusarum/q -Syracusas/q -Syracusis/q -syriacus/abc -systema/q -systemata/q -systematis/e -systematorum/q -tabella/a -tabula/a -tabularis/fg -taceo/B -tacitum/S -tactum/S -tactus/h -tacui/P -taedeat/q -taedebat/q -taedebit/q -taedere/q -taederet/q -taedet/q -taedium/c -taeduerat/q -taeduierit/q -taeduisset/q -taeduit/q -talis/fg -talitrum/c -tamdiu/q -tamen/q -tametsi -tam/q -tamquam -tandem/q -tango/B -tanquam -tantillum/c -tantisper -tantopere -tantumdem -tantummodo -tantum/S -tantundem -tantus/abc -tarditas/q -tarditatis/d -tardus/abcrs -tarentinus/abc -tata/a -tebitius/abc -tectum/S -tecum -tego/B -tela/a -telum/c -temere -temonis/d -temo/q -temperies/i -tempero/APS -tempestas/q -tempestatis/d -templum/c -temporarius/abc -temporis/e -tempto/APS -tempus/q -tenacis/fgrst -tenacitas/q -tenacitatis/d -tenax/q -tendo/B -tenebrae/q -tenebrarum/q -tenebras/q -tenebris/q -teneo/B -tener/abcrs -tenoris/d -tenor/q -tento/APS -tentum/S -tenui/P -tenuis/fgrs -te/q -teres/q -teretis/de -tergo/B -termino/APS -terminus/b -ternarius/abc -ternus/abc -tero/B -Terpander/q -Terpandri/b -ter/q -terra/a -terrenus/abc -terrestris/fg -terreus/abc -terroris/d -terror/q -tersi/P -tersum/S -tertiarius/abc -tertius/abc -tessellatum/c -testatus/S -testimonium/c -testis/f -testor/A -testudinis/d -testudo/q -tetendi/P -tetigi/P -tetrachordus/abc -tetradis/d -tetragonicus/abc -tetragonismus/b -tetragonus/abc -tetrahedrus/b -tetras/q -texi/P -textoris/d -textor/q -textum/c -textura/a -textus/abc -Thamyris/f -theatrum/c -Thebae/q -thebanus/abc -Thebarum/q -Thebas/q -Thebis/q -Theodosius/b -theologia/a -theologicus/abc -Theonis/d -Theon/q -Theophrastus/b -theorema/q -theoremata/q -theorematis/e -theorematorum/q -theoria/a -theoricus/abc -thermae/q -thermarum/q -thermas/q -thermis/q -thesaurus/b -tholus/b -Thracis/d -Thrax/q -Thucydides/q -Thucydidi/b -Thyrrhenus/abc -tibia/a -tibi/q -tigillum/c -tignum/c -Timochares/q -Timocharis/d -Timotheus/c -tinea/a -tintinnabulum/c -titulus/b -tolero/APS -toletanus/abc -tonitrus/h -tonitruum/c -tonus/b -torculum/c -tormentum/c -tornatilis/fg -torno/APS -torqueo/B -torsi/P -tortum/S -totalis/fg -totam/q -tota/q -totidem/q -totiens -toties/q -toti/q -totius/q -toto/q -tot/q -totum/q -totuplex/q -totuplicis/d -totus/abcq -trabis/d -trabs/q -tractationis/d -tractatio/q -tractatus/h -tractionis/d -tractio/q -tracto/APS -tractorius/abc -tractum/S -tradidi/P -traditionis/d -traditio/q -traditum/S -trado/B -traduco/B -traductum/S -traduxi/P -traho/B -Traianus/b -traieci/P -traiectum/S -traiicio/B -tralationis/d -tralatio/q -tralatoris/d -tralator/q -tralatum/S -trames/q -tramitis/d -tranquillitas/q -tranquillitatis/d -tranquillus/abc -transcribo/B -transcripsi/P -transcriptum/S -transeam/q -transeamus/q -transeant/q -transeas/q -transeatis/q -transeat/q -transeo/q -transeundi/q -transeundo/q -transeundum/q -transeuntem/q -transeunte/q -transeuntes/q -transeuntia/q -transeuntibus/q -transeunti/q -transeuntis/q -transeuntium/q -transeunt/q -transferamini/q -transferam/q -transferamur/q -transferamus/q -transferant/q -transferantur/q -transferaris/q -transferar/q -transferas/q -transferatis/q -transferat/q -transferatur/q -transferebamini/q -transferebam/q -transferebamur/q -transferebamus/q -transferebant/q -transferebantur/q -transferebaris/q -transferebar/q -transferebas/q -transferebatis/q -transferebat/q -transferebatur/q -transferemini/q -transferemur/q -transferemus/q -transferendi/q -transferendo/q -transferendum/q -transferendus/abc -transferens/q -transferentis/fg -transferent/q -transferentur/q -transfereris/q -transferes/q -transferetis/q -transferet/q -transferetur/q -transferimini/q -transferimur/q -transferimus/q -transfero/q -transferor/q -transfer/q -transferremini/q -transferrem/q -transferremur/q -transferremus/q -transferrent/q -transferrentur/q -transferre/q -transferreris/q -transferrer/q -transferres/q -transferretis/q -transferret/q -transferretur/q -transferri/q -transferris/q -transfers/q -transferte/q -transfertis/q -transfert/q -transfertur/q -transferunt/q -transferuntur/q -transibam/q -transibamus/q -transibant/q -transibas/q -transibatis/q -transibat/q -transibimus/q -transibis/q -transibitis/q -transibit/q -transibo/q -transibunt/q -transiens/q -transieram/q -transieramus/q -transierant/q -transieras/q -transieratis/q -transierat/q -transierim/q -transierimus/q -transierint/q -transieris/q -transieritis/q -transierit/q -transiero/q -transiisse/q -transimus/q -transi/q -transirem/q -transiremus/q -transirent/q -transire/q -transires/q -transiretis/q -transiret/q -transis/q -transisse/q -transite/q -transitis/q -transit/q -transitum/S -transitu/q -transitur/q -transiturus/abc -transiveram/q -transiveramus/q -transiverant/q -transiveras/q -transiveratis/q -transiverat/q -transiverim/q -transiverimus/q -transiverint/q -transiveris/q -transiveritis/q -transiverit/q -transivero/q -transivissem/q -transivissemus/q -transivissent/q -transivisse/q -transivisses/q -transivissetis/q -transivisset/q -transivitierunt/q -transivitimus/q -transiviti/q -transivitis/q -transivititis/q -transivitit/q -translatum/S -transmeo/APS -transmisi/P -transmissionis/d -transmissio/q -transmissum/S -transmitto/B -transparens/q -transparentis/fg -transpareo/B -transparitum/S -transparui/P -transpono/B -transpositum/S -transposui/P -transtrum/c -transtuli/P -transvectum/S -transveho/B -transversarius/abc -transversus/abc -transvexi/P -trapetium/c -trapezium/c -traxi/P -trecentae/q -trecenta/q -trecentarum/q -trecentas/q -trecenties/q -trecenti/q -trecentis/q -trecentorum/q -trecentos/q -tredecies/q -tredecim/q -tredecimus/abc -tredecuplus/abc -tremebundus/abc -tremefacio/B -tremefactum/S -tremefeci/P -tremefiam/q -tremefiamus/q -tremefiant/q -tremefias/q -tremefiatis/q -tremefiat/q -tremefiebam/q -tremefiebamus/q -tremefiebant/q -tremefiebas/q -tremefiebatis/q -tremefiebat/q -tremefiemus/q -tremefient/q -tremefierem/q -tremefieremus/q -tremefierent/q -tremefieres/q -tremefieretis/q -tremefieret/q -tremefieri/q -tremefies/q -tremefietis/q -tremefiet/q -tremefimus/q -tremefio/q -tremefis/q -tremefitis/q -tremefit/q -tremefiunt/q -tremo/B -tremoris/d -tremor/q -tremui/P -trepidationis/d -trepidatio/q -tres/q -triadis/d -triangularis/fgt -triangulum/c -triangulus/abc -tria/q -trias/q -tribui/P -tribuo/B -tribus/q -tributum/S -tricenae/q -tricena/q -tricenarum/q -tricenas/q -triceni/q -tricenis/q -tricenorum/q -tricenos/q -tricesimus/abc -triennium/c -triens/q -trientis/fg -trifarius/abc -trigecuplus/abc -trigesies/q -trigesimus/abc -triginta/q -trigonalis/fg -trigonicus/abc -trigonus/abc -trilaterus/abc -Trinacria/a -trinae/q -trina/q -trinas/q -trini/q -trinis/q -trinomium/c -trinorum/q -trinos/q -triplex/q -triplicis/fgt -triplicitas/q -triplicitatis/d -triplico/APS -triplo/AS -triplus/abc -triremis/fg -trispasti/b -trispastos/q -tristis/fg -tritonus/b -tritum/S -trium/q -trivialis/fg -trivi/P -trochus/b -troclea/a -Troglodytae/q -Troglodytarum/q -Troglodytas/q -Troglodytis/q -Trogus/b -tropicus/abc -trucido/APS -trulla/a -trutina/a -trutino/APS -tuba/a -tubulus/b -tueor/B -tui/q -tuitus/S -tuli/P -Tullius/b -tumoris/d -tumor/q -tum/q -tumultus/h -tunc/q -tunica/a -tu/q -turbe/q -turbinatus/abc -turbinis/d -turbo/APS -turis/e -turmatim -turpiter/q -turris/f -tus/q -tutamen/q -tutamentum/c -tutaminis/d -tutatus/S -tute/q -tutor/A -tutus/abcrs -tuus/abc -tympanum/c -typographus/b -typus/b -ubi -ubicumque -ubicunque -ubinam/q -ubique -ubivis -ulciscor/B -ullam/q -ulla/q -ulli/q -ullius/q -ullo/q -ullum/q -ullus/abcq -ulterior/r -ultimus/abc -ultra/q -ultro/q -ultus/S -umbilicus/b -umbra/a -umbrosus/abcr -unam/q -unamquamque -una/q -unaquaeque -unaquoque -uncia/a -uncus/b -unda/A -unde -undecies/q -undecim/q -undecimus/abc -undecumque -undecunque -undecuplus/abc -undenarius/abc -undevicesimus/abc -undevigesies/q -undique -unguis/f -unicuique -unicus/abc -uniformis/fg -uniformitas/q -uniformitatis/d -unimembris/fg -unio/C -unionis/d -unio/q -uni/q -unisonus/abc -unita/a -unitas/q -unitatis/d -unitus/S -uniuscuiusque -unius/q -universalis/fgrt -universus/abc -uno/q -unoquoque -unquam -unum/q -unumquemque -unumquidque -unumquodque -unus/q -unusquisque -urbis/f -urbs/q -urgeo/B -ursi/P -usitatus/abc -usque -ustoris/d -ustor/q -usus/Sh -usuvenit/q -usuveniunt/q -utcumque -utcunque -uterlibet -uter/q -uterque -utervis/q -utilis/fgrst -utilitas/q -utilitatis/d -utinam -utinque -utique -utor/B -utpote -utputa -ut/q -utrae/q -utraeque -utralibet -utramlibet -utram/q -utramque -utramvis/q -utra/q -utraque -utrarum/q -utras/q -utravis/q -utrilibet -utrimque -utrinque -utri/q -utrique -utris/q -utriuslibet -utrius/q -utriusque -utriusvis/q -utrivis/q -utrobique -utrolibet -utro/q -utroque -utrorum/q -utros/q -utrovis/q -utrumlibet -utrum/q -utrumque -utrumvis/q -uva/a -V -vacillo/APS -vaco/APS -vacuus/abc -vado/B -vafer/q -vafri/abc -vagatus/S -vagor/A -valde -vale -valens/q -valentis/fgrs -valeo/B -Valerius/b -validus/abcrs -valitum/S -Valla/q -vallis/f -valoris/d -valor/q -valui/P -vaporis/d -vapor/q -vapulo/A -variabilis/fg -variationis/d -variatio/q -variatum/S -varietas/q -varietatis/d -vario/AP -varius/abc -vasa/q -vase/q -vasi/q -vasis/q -vasorum/q -vas/q -vaticinius/abc -vectis/f -vecto/APS -vectum/S -vehemens/q -vehementer -vehementis/fgrs -veho/B -vel -velifico/APS -velim/q -velimus/q -velint/q -velis/q -velitis/q -velit/q -vellem/q -vellemus/q -vellent/q -velle/q -velles/q -velletis/q -vellet/q -vello/B -velo/APS -velocis/fgrst -velocitas/q -velocitatis/d -velox/q -velum/c -velut -veluti -vendico/APS -venerabilis/fg -Veneris/d -venia/a -venio/C -veni/P -venter/q -ventilabrum/c -ventilo/APS -ventris/d -ventum/S -Venus/q -veracis/fgrs -verax/q -verbera/q -verberibus/q -verberum/q -verbosus/abc -verbum/c -vergo/B -verifico/A -veritas/q -veritatis/d -vernus/abc -verper/d -versatilis/fg -versiculus/b -verso/APS -versum/S -versus/h -vertebra/a -vertex/q -verticalis/fg -verticis/d -vertiginis/d -vertigo/q -verti/P -verto/B -verumtamen -verus/abcrs -vesperis/d -vesper/q -vespertinus/abc -vester/q -vestigium/c -vestigo/APS -vestio/C -vestis/d -vestitum/S -vestivi/P -vestri/abc -vestrimet/q -vestri/q -vestrummet/q -vestrum/q -veteris/der -veterrimus/abc -vetitum/S -veto/A -vetui/P -vetus/q -vetustas/q -vetustatis/d -vetustus/abcrs -vexi/P -VI -via/a -vibrationis/d -vibratio/q -vicem/q -vice/q -vicesimus/abcs -vices/q -viceversa/q -vicibus/q -vicies/q -vicinia/a -vicinitas/q -vicinitatis/d -vicinus/abcrs -vici/P -vicis/q -vicissim -victoria/a -victum/S -videlicet -video/B -vidi/P -vidua/a -viennensis/fg -vigecuplus/abc -vigesimus/abc -vigilium/c -viginti/q -VII -VIII -villosus/abc -vim/q -vinco/B -vindico/APS -violaceus/abc -violenter -violentus/abc -violo/APS -vi/q -vireo/B -viresco/B -vires/q -virga/a -Virgilius/b -virgula/a -viri/b -viridas/q -viridis/fg -viriditatis/d -virium/q -vir/q -virtus/q -virtutis/d -virui/P -visibilis/fg -visionis/d -visio/q -visorium/c -vis/q -visualis/fg -visum/S -visus/abch -vita/a -Vitellionis/d -Vitellio/q -vitio/APS -vitium/c -vito/APS -vitreus/abc -vitrum/c -Vitruvius/b -vivi/P -vivo/B -vivus/abc -vix -vixi/P -vobismet/q -vobis/q -vocabulum/c -vocalis/fg -vocis/d -voco/APS -volam/q -volebam/q -volebamus/q -volebant/q -volebas/q -volebatis/q -volebat/q -volemus/q -volens/q -volentis/fg -volent/q -voles/q -voletis/q -volet/q -volito/APS -volo/APSq -volubilis/fg -volucer/q -volucris/de -volucrum/q -volui/P -voluisse/q -volumen/q -voluminis/e -volumus/q -volunt/q -voluptas/q -voluptatis/d -voluto/AP -volutum/S -volvi/P -volvo/B -voracitas/q -voracitatis/d -voraginis/d -vorago/q -vorsura/a -vortex/q -vorticis/d -vorticosus/abc -vosmet/q -vos/q -votivus/abc -vox/q -vulgaris/fg -vulgo/APS -vulgus/b -vulneris/e -vulnero/APS -vulnus/q -vulsi/P -vulsum/S -vultis/q -vult/q -X -XI -XII -XIII -XIV -XIX -XL -XLI -XLII -XLIII -XLIV -XLIX -XLV -XLVI -XLVII -XLVIII -XV -XVI -XVII -XVIII -XX -XXI -XXII -XXIII -XXIV -XXIX -XXV -XXVI -XXVII -XXVIII -XXVIX -XXX -XXXI -XXXII -XXXIII -XXXIV -XXXIX -XXXV -XXXVI -XXXVII -XXXVIII -XXXX -XXXXI -XXXXII -XXXXIII -XXXXIV -XXXXIX -XXXXV -XXXXVI -XXXXVII -XXXXVIII -Zambertus/b -zelotypia/a -Zeuxippus/b -zifra/a -zodiacus/b -zona/a diff --git a/tests/english.html b/tests/english.html deleted file mode 100644 index 959d28b..0000000 --- a/tests/english.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Typo.js English Test Suite - - - - - - - - -

    Typo.js English Test Suite

    -

    -
    -

    -
      - - \ No newline at end of file diff --git a/tests/english.js b/tests/english.js deleted file mode 100644 index c09b972..0000000 --- a/tests/english.js +++ /dev/null @@ -1,176 +0,0 @@ -function run() { - var utilityDict = new Typo(); - var affData = utilityDict._readFile(chrome.extension.getURL("../typo/dictionaries/en_US/en_US.aff")); - var wordData = utilityDict._readFile(chrome.extension.getURL("../typo/dictionaries/en_US/en_US.dic")); - - var hashDict = new Typo("en_US", affData, wordData); - - testDictionary(hashDict); - - var dict = new Typo("en_US", null, null, { dictionaryPath : "../typo/dictionaries", asyncLoad : true, loadedCallback : function () { - testDictionary(dict); - }}); -} - -function testDictionary(dict) { - test("Dictionary object attributes are properly set", function () { - equal(dict.dictionary, "en_US"); - }); - - test("Suggestions", function () { - deepEqual(dict.suggest("speling", 3), [ "spelling", "spieling", "spewing" ]); - - // Repeated calls function properly. - deepEqual(dict.suggest("speling", 1), [ "spelling" ]); - deepEqual(dict.suggest("speling"), [ "spelling", "spieling", "spewing", "selling", "peeling" ]); - deepEqual(dict.suggest("speling", 2), [ "spelling", "spieling" ]); - deepEqual(dict.suggest("speling"), [ "spelling", "spieling", "spewing", "selling", "peeling" ]); - - // Requesting more suggestions than will be returned doesn't break anything. - deepEqual(dict.suggest("spartang", 50), [ "spartan", "sparing", "starting", "sprang", "sporting", "spurting", "smarting", "sparking", "sparling", "sparring", "parting", "spatting" ]); - deepEqual(dict.suggest("spartang", 30), [ "spartan", "sparing", "starting", "sprang", "sporting", "spurting", "smarting", "sparking", "sparling", "sparring", "parting", "spatting" ]); - deepEqual(dict.suggest("spartang", 1), [ "spartan" ]); - - deepEqual(dict.suggest("spitting"), [ ], "Correctly spelled words receive no suggestions."); - deepEqual(dict.suggest("spitting"), [ ], "Correctly spelled words receive no suggestions."); - - // Words that are object properties don't break anything. - deepEqual(dict.suggest("length"), [ ], "Correctly spelled words receive no suggestions."); - deepEqual(dict.suggest("length"), [ ], "Correctly spelled words receive no suggestions."); - }); - - test("Correct checking of words with no affixes", function () { - equal(dict.check("I"), true); - equal(dict.check("is"), true); - equal(dict.check("makes"), true); - equal(dict.check("example"), true); - equal(dict.check("a"), true); - equal(dict.check("aback"), true); - equal(dict.check("juicily"), true); - equal(dict.check("palmate"), true); - equal(dict.check("palpable"), true); - }); - - test("Correct checking of root words with single affixes (affixes not used)", function () { - equal(dict.check("paling"), true); - equal(dict.check("arrangeable"), true); - equal(dict.check("arrant"), true); - equal(dict.check("swabby"), true); - }); - - test("Correct checking of root words with single affixes (affixes used)", function () { - equal(dict.check("palmer's"), true); - equal(dict.check("uncritically"), true); - equal(dict.check("hypersensitiveness"), true); - equal(dict.check("illusive"), true); - }); - - test("Capitalization is respected.", function () { - equal(dict.check("A"), true); - equal(dict.check("a"), true); - equal(dict.check("AA"), true); - equal(dict.check("ABANDONER"), true); - equal(dict.check("abandonER"), true); - equal(dict.check("Abandoner"), true); - equal(dict.check("Abbe"), true); - equal(dict.check("Abbott's"), true); - equal(dict.check("abbott's"), false); - equal(dict.check("Abba"), true); - equal(dict.check("ABBA"), true); - equal(dict.check("Abba's"), true); - equal(dict.check("Yum"), true); - equal(dict.check("yum"), true); - equal(dict.check("YUM"), true); - equal(dict.check("aa"), false); - equal(dict.check("aaron"), false); - equal(dict.check("abigael"), false); - equal(dict.check("YVES"), true); - equal(dict.check("yves"), false); - equal(dict.check("Yves"), true); - equal(dict.check("MACARTHUR"), true); - equal(dict.check("MacArthur"), true); - equal(dict.check("Alex"), true); - equal(dict.check("alex"), false); - }); - - test("Words not in the dictionary in any form are marked as misspelled.", function () { - equal(dict.check("aaraara"), false); - equal(dict.check("aaraara"), false); - equal(dict.check("aaraara"), false); - equal(dict.check("aaraara"), false); - equal(dict.check("aaraara"), false); - }); - - test("Leading and trailing whitespace is ignored.", function () { - equal(dict.check("concept "), true); - equal(dict.check(" concept"), true); - equal(dict.check(" concept"), true); - equal(dict.check("concept "), true); - equal(dict.check(" concept "), true); - }); - - test("ONLYINCOMPOUND flag is respected", function () { - equal(dict.check("1th"), false); - equal(dict.check("2th"), false); - equal(dict.check("3th"), false); - }); - - test("Compound words", function () { - equal(dict.check("1st"), true); - equal(dict.check("2nd"), true); - equal(dict.check("3rd"), true); - equal(dict.check("4th"), true); - equal(dict.check("5th"), true); - equal(dict.check("6th"), true); - equal(dict.check("7th"), true); - equal(dict.check("8th"), true); - equal(dict.check("9th"), true); - equal(dict.check("10th"), true); - equal(dict.check("11th"), true); - equal(dict.check("12th"), true); - equal(dict.check("13th"), true); - equal(dict.check("1th"), false); - equal(dict.check("2rd"), false); - equal(dict.check("3th"), false); - equal(dict.check("4rd"), false); - equal(dict.check("100st"), false); - }); - - test("Possessives are properly checked.", function () { - equal(dict.check("concept's"), true); - // acceptability's is in the dictionary including the 's - equal(dict.check("acceptability's's"), false); - }); - - test("Replacement rules are implemented", function () { - deepEqual(dict.suggest("wagh"), [ "weigh" ]); - deepEqual(dict.suggest("ceit"), [ "cat" ]); - deepEqual(dict.suggest("seau"), [ "so" ]); - deepEqual(dict.suggest("shaccable"), [ "shakable" ]); - deepEqual(dict.suggest("soker"), [ "choker" ]); - }); - - test("Contractions", function () { - equal(dict.check("aren't"), true); - equal(dict.check("I'm"), true); - equal(dict.check("we're"), true); - equal(dict.check("didn't"), true); - equal(dict.check("didn'ts"), false); - equal(dict.check("he're"), false); - }); - - test("Capitalizations are handled properly.", function () { - deepEqual(dict.suggest("Wagh"), ["Weigh"]); - deepEqual(dict.suggest("CEIT"), [ "CERT", "CHIT", "CIT", "CENT", "CUT" ]); - }); - - test("NOSUGGEST is respected", function () { - // 'fart' is marked NOSUGGEST, and I've confirmed that it would be in the suggestions if we don't respect that flag. - equal(dict.suggest("faxt").indexOf('fart'), -1); - - // If a NOSUGGEST word would be in the top 10 ('fart' is #5), Typo should still return the expected number of results. - equal(dict.suggest("faxt", 10).length, 10); - }); -} - -addEventListener( "load", run, false ); \ No newline at end of file diff --git a/tests/french.html b/tests/french.html deleted file mode 100644 index e2e3257..0000000 --- a/tests/french.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Typo.js French Test Suite - - - - - - - - -

      Typo.js French Test Suite

      -

      -
      -

      -
        - - \ No newline at end of file diff --git a/tests/french.js b/tests/french.js deleted file mode 100644 index 9ec43c5..0000000 --- a/tests/french.js +++ /dev/null @@ -1,61 +0,0 @@ -function run() { - var utilityDict = new Typo(); - var affData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/fr_FR/fr_FR.aff"), "UTF-8"); - var wordData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/fr_FR/fr_FR.dic"), "UTF-8"); - - var hashDict = new Typo("fr_FR", affData, wordData); - testDictionary(hashDict); - - var dict = new Typo("fr_FR", null, null, { dictionaryPath : "tests/dictionaries", asyncLoad : true, loadedCallback : function () { - testDictionary(dict); - }}); -} - -function testDictionary(dict) { - test("Dictionary object attributes are properly set", function () { - equal(dict.dictionary, "fr_FR"); - }); - - test("Correct checking of words with affixes", function () { - equal(dict.check("marchons"), true); - }); - - test("KEEPCASE flag is respected", function () { - equal(dict.check("Bq"), true); - equal(dict.check("BQ"), false); - equal(dict.check("pH"), true); - equal(dict.check("mmHg"), true); - equal(dict.check("MMHG"), false); - equal(dict.check("Mmhg"), false); - }); - - test("Contractions are recognized", function () { - equal(dict.check("j'espère"), true); - equal(dict.check("j'espére"), false); - equal(dict.check("c'est"), true); - equal(dict.check("C'est"), true); - }); - - test("Continuation classes", function () { - equal(dict.check("l'impedimentum"), true); - equal(dict.check("d'impedimentum"), true); - equal(dict.check("d'impedimenta"), true); - equal(dict.check("espérés"), true); - equal(dict.check("espérée"), true); - equal(dict.check("espérées"), true); - equal(dict.check("qu'espérés"), true); - equal(dict.check("qu'espérée"), true); - equal(dict.check("qu'espérées"), true); - }); - - test("NEEDAFFIX is respected", function () { - // Not flagged with NEEDAFFIX - equal(dict.check("espressivo"), true); - - // Is flagged with NEEDAFFIX, but has an empty affix rule - equal(dict.check("espérance"), true); - equal(dict.check("esperluette"), true); - }); -} - -addEventListener( "load", run, false ); \ No newline at end of file diff --git a/tests/general.html b/tests/general.html deleted file mode 100644 index 1eb2b8f..0000000 --- a/tests/general.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Typo.js General Test Suite - - - - - - - - -

        Typo.js General Test Suite

        -

        -
        -

        -
          - - \ No newline at end of file diff --git a/tests/general.js b/tests/general.js deleted file mode 100644 index fe3a763..0000000 --- a/tests/general.js +++ /dev/null @@ -1,74 +0,0 @@ -function run() { - var empty_dict = new Typo(); - - test("Dictionary instantiated without arguments is essentially empty.", function () { - deepEqual(empty_dict.rules, {}); - deepEqual(empty_dict.dictionaryTable, {}); - deepEqual(empty_dict.dictionary, null); - }); - - test("Comments are removed from affix files", function () { - equal(empty_dict._removeAffixComments("# abc\ndef # ghi\n # jkl\nmnop qrst\n##"), "def # ghi\nmnop qrst", "Comment-only lines are removed."); - equal(empty_dict._removeAffixComments(""), "", "Handles empty input."); - equal(empty_dict._removeAffixComments("abc"), "abc", "Handles input that doesn't need changing."); - equal(empty_dict._removeAffixComments(" abc"), "abc", "Leading whitespace is removed."); - equal(empty_dict._removeAffixComments(" abc "), "abc", "Leading and trailing whitespace is removed."); - equal(empty_dict._removeAffixComments("\n\n\abc\n"), "abc", "Leading and trailing newlines are removed."); - equal(empty_dict._removeAffixComments("\n\n"), "", "Consecutive newlines are removed."); - equal(empty_dict._removeAffixComments("\t"), "", "Tabs are treated as whitespace."); - equal(empty_dict._removeAffixComments("\n\t \t\n\n"), "", "All whitespace is treated the same."); - }); - - test("_readFile can load a file synchronously", function() { - var data = empty_dict._readFile(chrome.extension.getURL("../typo/dictionaries/en_US/en_US.dic")); - ok(data && data.length > 0); - }); - - asyncTest("_readFile can load a file asynchronously", function(assert) { - empty_dict._readFile(chrome.extension.getURL("../typo/dictionaries/en_US/en_US.dic"), null, true).then(function(data) { - assert.ok(data && data.length > 0); - QUnit.start(); - }, function(err) { - QUnit.pushFailure(err); - QUnit.start(); - }); - }); - - function checkLoadedDict(dict) { - ok(dict); - ok(dict.compoundRules.length > 0); - ok(dict.replacementTable.length > 0); - } - - test("Dictionary instantiated with preloaded data is setup correctly", function() { - var affData = empty_dict._readFile(chrome.extension.getURL("../typo/dictionaries/en_US/en_US.aff")); - var wordData = empty_dict._readFile(chrome.extension.getURL("../typo/dictionaries/en_US/en_US.dic")); - var dict = new Typo("en_US", affData, wordData); - checkLoadedDict(dict); - }); - - test("Synchronous load of dictionary data", function() { - var dict = new Typo("en_US"); - checkLoadedDict(dict); - }); - - asyncTest("Asynchronous load of dictionary data", function() { - var dict = new Typo("en_US", null, null, { asyncLoad: true, loadedCallback: function() { - checkLoadedDict(dict); - QUnit.start(); - }}); - }); - - test("Public API throws exception if called before dictionary is loaded", function() { - var expected = function(err) { - return err === "Dictionary not loaded."; - }; - - throws(empty_dict.check, expected); - throws(empty_dict.checkExact, expected); - throws(empty_dict.hasFlag, expected); - throws(empty_dict.check, expected); - }); -} - -addEventListener( "load", run, false ); \ No newline at end of file diff --git a/tests/german.html b/tests/german.html deleted file mode 100644 index 7abd414..0000000 --- a/tests/german.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Typo.js German Test Suite - - - - - - - - -

          Typo.js German Test Suite

          -

          -
          -

          -
            - - \ No newline at end of file diff --git a/tests/german.js b/tests/german.js deleted file mode 100644 index 9f6f607..0000000 --- a/tests/german.js +++ /dev/null @@ -1,38 +0,0 @@ -function run() { - var utilityDict = new Typo(); - var affData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/de_DE/de_DE.aff"), "ISO8859-1"); - var wordData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/de_DE/de_DE.dic"), "ISO8859-1"); - - var hashDict = new Typo("de_DE", affData, wordData); - testDictionary(hashDict); - - var dict = new Typo("de_DE", null, null, { dictionaryPath : "tests/dictionaries", asyncLoad : true, loadedCallback : function () { - testDictionary(dict); - }}); -} - -function testDictionary(dict) { - test("Dictionary object attributes are properly set", function () { - equal(dict.dictionary, "de_DE"); - }); - - test("Capitalization is respected", function typo_german_capitalization() { - equal(dict.check("Liebe"), true); - equal(dict.check("LIEBE"), true); - - // liebe is flagged with ONLYINCOMPOUND, but lieb has a suffix rule that generates liebe - equal(dict.check("liebe"), true); - }); - - test("Issue #21", function typo_german_issue_21() { - equal(dict.check("Paar"), true); - equal(dict.check("paar"), true); - equal(dict.check("auch"), true); - equal(dict.check("man"), true); - equal(dict.check("nutzen"), true); - equal(dict.check("paarbildung"), false); - equal(dict.check("Bild"), true); - }); -} - -addEventListener( "load", run, false ); \ No newline at end of file diff --git a/tests/index.html b/tests/index.html deleted file mode 100644 index 0984919..0000000 --- a/tests/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - Typo.js Test Suites - - - -

            Test suites:

            - - - \ No newline at end of file diff --git a/tests/latin.html b/tests/latin.html deleted file mode 100644 index 8a3bca0..0000000 --- a/tests/latin.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - Typo.js Latin Test Suite - - - - - - - - -

            Typo.js Latin Test Suite

            -

            -
            -

            -
              - - \ No newline at end of file diff --git a/tests/latin.js b/tests/latin.js deleted file mode 100644 index 375afb2..0000000 --- a/tests/latin.js +++ /dev/null @@ -1,68 +0,0 @@ -function run() { - var utilityDict = new Typo(); - var affData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/la/la.aff")); - var wordData = utilityDict._readFile(chrome.extension.getURL("tests/dictionaries/la/la.dic")); - - var hashDict = new Typo("la", affData, wordData, "hash"); - testDictionary(hashDict); - - var dict = new Typo("la", null, null, { dictionaryPath : "tests/dictionaries", asyncLoad : true, loadedCallback : function () { - testDictionary(dict); - }}); -} - -function testDictionary(dict) { - test("Dictionary object attributes are properly set", function () { - equal(dict.dictionary, "la"); - }); - - test("Correct checking of words with no affixes", function () { - equal(dict.check("firmiter"), true); - equal(dict.check("quaequam"), true); - equal(dict.check("quantarumcumque"), true); - }); - - test("Correct checking of root words with single affixes (affixes not used)", function () { - equal(dict.check("pertransiveris"), true); - equal(dict.check("saxum"), true); - equal(dict.check("sepulchrum"), true); - equal(dict.check("terra"), true); - }); - - test("Correct checking of root words with single affixes rules that can be applied multiple times", function () { - equal(dict.check("pertransiverisque"), true); - equal(dict.check("pertransiverisne"), true); - equal(dict.check("pertransiverisve"), true); - }); - - test("Correct checking of root words with single affixes (affixes used)", function () { - equal(dict.check("pertransiverisque"), true); - equal(dict.check("saxi"), true); - equal(dict.check("sepulchra"), true); - equal(dict.check("terrae"), true); - }); - - test("Words not in the dictionary in any form are marked as misspelled.", function () { - equal(dict.check("labhfblhbf"), false); - equal(dict.check("weluhf73"), false); - equal(dict.check("nxnxnxnxn"), false); - equal(dict.check("saxiii"), false); - }); - - test("Leading and trailing whitespace is ignored.", function () { - equal(dict.check("saxi "), true); - equal(dict.check(" saxi"), true); - equal(dict.check(" saxi"), true); - equal(dict.check("saxi "), true); - equal(dict.check(" saxi "), true); - }); - - /* - test("Ligature", function () { - equal(dict.check("FILIAE"), true); - equal(dict.check("FILIÆ"), true); - }); - */ -} - -addEventListener( "load", run, false ); \ No newline at end of file diff --git a/tests/lib/jquery-1.9.1.js b/tests/lib/jquery-1.9.1.js deleted file mode 100644 index e2c203f..0000000 --- a/tests/lib/jquery-1.9.1.js +++ /dev/null @@ -1,9597 +0,0 @@ -/*! - * jQuery JavaScript Library v1.9.1 - * http://jquery.com/ - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * - * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2013-2-4 - */ -(function( window, undefined ) { - -// Can't do this because several apps including ASP.NET trace -// the stack via arguments.caller.callee and Firefox dies if -// you try to trace through "use strict" call chains. (#13335) -// Support: Firefox 18+ -//"use strict"; -var - // The deferred used on DOM ready - readyList, - - // A central reference to the root jQuery(document) - rootjQuery, - - // Support: IE<9 - // For `typeof node.method` instead of `node.method !== undefined` - core_strundefined = typeof undefined, - - // Use the correct document accordingly with window argument (sandbox) - document = window.document, - location = window.location, - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$, - - // [[Class]] -> type pairs - class2type = {}, - - // List of deleted data cache ids, so we can reuse them - core_deletedIds = [], - - core_version = "1.9.1", - - // Save a reference to some core methods - core_concat = core_deletedIds.concat, - core_push = core_deletedIds.push, - core_slice = core_deletedIds.slice, - core_indexOf = core_deletedIds.indexOf, - core_toString = class2type.toString, - core_hasOwn = class2type.hasOwnProperty, - core_trim = core_version.trim, - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Used for matching numbers - core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, - - // Used for splitting on whitespace - core_rnotwhite = /\S+/g, - - // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, - rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([\da-z])/gi, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }, - - // The ready event handler - completed = function( event ) { - - // readyState === "complete" is good enough for us to call the dom ready in oldIE - if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { - detach(); - jQuery.ready(); - } - }, - // Clean-up method for dom ready events - detach = function() { - if ( document.addEventListener ) { - document.removeEventListener( "DOMContentLoaded", completed, false ); - window.removeEventListener( "load", completed, false ); - - } else { - document.detachEvent( "onreadystatechange", completed ); - window.detachEvent( "onload", completed ); - } - }; - -jQuery.fn = jQuery.prototype = { - // The current version of jQuery being used - jquery: core_version, - - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - - // scripts is true for back-compat - jQuery.merge( this, jQuery.parseHTML( - match[1], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - // Properties of context are called as methods if possible - if ( jQuery.isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || rootjQuery ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return core_slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - ret.context = this.context; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Add the callback - jQuery.ready.promise().done( fn ); - - return this; - }, - - slice: function() { - return this.pushStack( core_slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: core_push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - var src, copyIsArray, copy, name, options, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - if ( window.$ === jQuery ) { - window.$ = _$; - } - - if ( deep && window.jQuery === jQuery ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.trigger ) { - jQuery( document ).trigger("ready").off("ready"); - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - isWindow: function( obj ) { - return obj != null && obj == obj.window; - }, - - isNumeric: function( obj ) { - return !isNaN( parseFloat(obj) ) && isFinite( obj ); - }, - - type: function( obj ) { - if ( obj == null ) { - return String( obj ); - } - return typeof obj === "object" || typeof obj === "function" ? - class2type[ core_toString.call(obj) ] || "object" : - typeof obj; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - try { - // Not own constructor property must be Object - if ( obj.constructor && - !core_hasOwn.call(obj, "constructor") && - !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - } catch ( e ) { - // IE8,9 Will throw exceptions on certain host objects #9897 - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || core_hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - var name; - for ( name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw new Error( msg ); - }, - - // data: string of html - // context (optional): If specified, the fragment will be created in this context, defaults to document - // keepScripts (optional): If true, will include scripts passed in the html string - parseHTML: function( data, context, keepScripts ) { - if ( !data || typeof data !== "string" ) { - return null; - } - if ( typeof context === "boolean" ) { - keepScripts = context; - context = false; - } - context = context || document; - - var parsed = rsingleTag.exec( data ), - scripts = !keepScripts && []; - - // Single tag - if ( parsed ) { - return [ context.createElement( parsed[1] ) ]; - } - - parsed = jQuery.buildFragment( [ data ], context, scripts ); - if ( scripts ) { - jQuery( scripts ).remove(); - } - return jQuery.merge( [], parsed.childNodes ); - }, - - parseJSON: function( data ) { - // Attempt to parse using the native JSON parser first - if ( window.JSON && window.JSON.parse ) { - return window.JSON.parse( data ); - } - - if ( data === null ) { - return data; - } - - if ( typeof data === "string" ) { - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - if ( data ) { - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test( data.replace( rvalidescape, "@" ) - .replace( rvalidtokens, "]" ) - .replace( rvalidbraces, "")) ) { - - return ( new Function( "return " + data ) )(); - } - } - } - - jQuery.error( "Invalid JSON: " + data ); - }, - - // Cross-browser xml parsing - parseXML: function( data ) { - var xml, tmp; - if ( !data || typeof data !== "string" ) { - return null; - } - try { - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - } catch( e ) { - xml = undefined; - } - if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; - }, - - noop: function() {}, - - // Evaluates a script in a global context - // Workarounds based on findings by Jim Driscoll - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context - globalEval: function( data ) { - if ( data && jQuery.trim( data ) ) { - // We use execScript on Internet Explorer - // We use an anonymous function so that context is window - // rather than jQuery in Firefox - ( window.execScript || function( data ) { - window[ "eval" ].call( window, data ); - } )( data ); - } - }, - - // Convert dashed to camelCase; used by the css and data modules - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - }, - - // args is for internal usage only - each: function( obj, callback, args ) { - var value, - i = 0, - length = obj.length, - isArray = isArraylike( obj ); - - if ( args ) { - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback.apply( obj[ i ], args ); - - if ( value === false ) { - break; - } - } - } else { - for ( i in obj ) { - value = callback.apply( obj[ i ], args ); - - if ( value === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback.call( obj[ i ], i, obj[ i ] ); - - if ( value === false ) { - break; - } - } - } else { - for ( i in obj ) { - value = callback.call( obj[ i ], i, obj[ i ] ); - - if ( value === false ) { - break; - } - } - } - } - - return obj; - }, - - // Use native String.trim function wherever possible - trim: core_trim && !core_trim.call("\uFEFF\xA0") ? - function( text ) { - return text == null ? - "" : - core_trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArraylike( Object(arr) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - core_push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - var len; - - if ( arr ) { - if ( core_indexOf ) { - return core_indexOf.call( arr, elem, i ); - } - - len = arr.length; - i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; - - for ( ; i < len; i++ ) { - // Skip accessing in sparse arrays - if ( i in arr && arr[ i ] === elem ) { - return i; - } - } - } - - return -1; - }, - - merge: function( first, second ) { - var l = second.length, - i = first.length, - j = 0; - - if ( typeof l === "number" ) { - for ( ; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var retVal, - ret = [], - i = 0, - length = elems.length; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var value, - i = 0, - length = elems.length, - isArray = isArraylike( elems ), - ret = []; - - // Go through the array, translating each of the items to their - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - } - - // Flatten any nested arrays - return core_concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - var args, proxy, tmp; - - if ( typeof context === "string" ) { - tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - args = core_slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || jQuery.guid++; - - return proxy; - }, - - // Multifunctional method to get and set values of a collection - // The value/s can optionally be executed if it's a function - access: function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - length = elems.length, - bulk = key == null; - - // Sets many values - if ( jQuery.type( key ) === "object" ) { - chainable = true; - for ( i in key ) { - jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !jQuery.isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < length; i++ ) { - fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); - } - } - } - - return chainable ? - elems : - - // Gets - bulk ? - fn.call( elems ) : - length ? fn( elems[0], key ) : emptyGet; - }, - - now: function() { - return ( new Date() ).getTime(); - } -}); - -jQuery.ready.promise = function( obj ) { - if ( !readyList ) { - - readyList = jQuery.Deferred(); - - // Catch cases where $(document).ready() is called after the browser event has already occurred. - // we once tried to use readyState "interactive" here, but it caused issues like the one - // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - setTimeout( jQuery.ready ); - - // Standards-based browsers support DOMContentLoaded - } else if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed, false ); - - // If IE event model is used - } else { - // Ensure firing before onload, maybe late but safe also for iframes - document.attachEvent( "onreadystatechange", completed ); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", completed ); - - // If IE and not a frame - // continually check to see if the document is ready - var top = false; - - try { - top = window.frameElement == null && document.documentElement; - } catch(e) {} - - if ( top && top.doScroll ) { - (function doScrollCheck() { - if ( !jQuery.isReady ) { - - try { - // Use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - top.doScroll("left"); - } catch(e) { - return setTimeout( doScrollCheck, 50 ); - } - - // detach all dom ready events - detach(); - - // and execute any waiting functions - jQuery.ready(); - } - })(); - } - } - } - return readyList.promise( obj ); -}; - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -function isArraylike( obj ) { - var length = obj.length, - type = jQuery.type( obj ); - - if ( jQuery.isWindow( obj ) ) { - return false; - } - - if ( obj.nodeType === 1 && length ) { - return true; - } - - return type === "array" || type !== "function" && - ( length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj ); -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); -// String to Object options format cache -var optionsCache = {}; - -// Convert String-formatted options into Object-formatted ones and store in cache -function createOptions( options ) { - var object = optionsCache[ options ] = {}; - jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { - object[ flag ] = true; - }); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - ( optionsCache[ options ] || createOptions( options ) ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - // Last fire value (for non-forgettable lists) - memory, - // Flag to know if list was already fired - fired, - // End of the loop when firing - firingLength, - // Index of currently firing callback (modified by remove if needed) - firingIndex, - // First callback to fire (used internally by add and fireWith) - firingStart, - // Actual callback list - list = [], - // Stack of fire calls for repeatable lists - stack = !options.once && [], - // Fire callbacks - fire = function( data ) { - memory = options.memory && data; - fired = true; - firingIndex = firingStart || 0; - firingStart = 0; - firingLength = list.length; - firing = true; - for ( ; list && firingIndex < firingLength; firingIndex++ ) { - if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { - memory = false; // To prevent further calls using add - break; - } - } - firing = false; - if ( list ) { - if ( stack ) { - if ( stack.length ) { - fire( stack.shift() ); - } - } else if ( memory ) { - list = []; - } else { - self.disable(); - } - } - }, - // Actual Callbacks object - self = { - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - // First, we save the current length - var start = list.length; - (function add( args ) { - jQuery.each( args, function( _, arg ) { - var type = jQuery.type( arg ); - if ( type === "function" ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && type !== "string" ) { - // Inspect recursively - add( arg ); - } - }); - })( arguments ); - // Do we need to add the callbacks to the - // current firing batch? - if ( firing ) { - firingLength = list.length; - // With memory, if we're not firing then - // we should call right away - } else if ( memory ) { - firingStart = start; - fire( memory ); - } - } - return this; - }, - // Remove a callback from the list - remove: function() { - if ( list ) { - jQuery.each( arguments, function( _, arg ) { - var index; - while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - // Handle firing indexes - if ( firing ) { - if ( index <= firingLength ) { - firingLength--; - } - if ( index <= firingIndex ) { - firingIndex--; - } - } - } - }); - } - return this; - }, - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); - }, - // Remove all callbacks from the list - empty: function() { - list = []; - return this; - }, - // Have the list do nothing anymore - disable: function() { - list = stack = memory = undefined; - return this; - }, - // Is it disabled? - disabled: function() { - return !list; - }, - // Lock the list in its current state - lock: function() { - stack = undefined; - if ( !memory ) { - self.disable(); - } - return this; - }, - // Is it locked? - locked: function() { - return !stack; - }, - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - if ( list && ( !fired || stack ) ) { - if ( firing ) { - stack.push( args ); - } else { - fire( args ); - } - } - return this; - }, - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; -jQuery.extend({ - - Deferred: function( func ) { - var tuples = [ - // action, add listener, listener list, final state - [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], - [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], - [ "notify", "progress", jQuery.Callbacks("memory") ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - then: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - return jQuery.Deferred(function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - var action = tuple[ 0 ], - fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; - // deferred[ done | fail | progress ] for forwarding actions to newDefer - deferred[ tuple[1] ](function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise() - .done( newDefer.resolve ) - .fail( newDefer.reject ) - .progress( newDefer.notify ); - } else { - newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); - } - }); - }); - fns = null; - }).promise(); - }, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Keep pipe for back-compat - promise.pipe = promise.then; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 3 ]; - - // promise[ done | fail | progress ] = list.add - promise[ tuple[1] ] = list.add; - - // Handle state - if ( stateString ) { - list.add(function() { - // state = [ resolved | rejected ] - state = stateString; - - // [ reject_list | resolve_list ].disable; progress_list.lock - }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); - } - - // deferred[ resolve | reject | notify ] - deferred[ tuple[0] ] = function() { - deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); - return this; - }; - deferred[ tuple[0] + "With" ] = list.fireWith; - }); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( subordinate /* , ..., subordinateN */ ) { - var i = 0, - resolveValues = core_slice.call( arguments ), - length = resolveValues.length, - - // the count of uncompleted subordinates - remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, - - // the master Deferred. If resolveValues consist of only a single Deferred, just use that. - deferred = remaining === 1 ? subordinate : jQuery.Deferred(), - - // Update function for both resolve and progress values - updateFunc = function( i, contexts, values ) { - return function( value ) { - contexts[ i ] = this; - values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; - if( values === progressValues ) { - deferred.notifyWith( contexts, values ); - } else if ( !( --remaining ) ) { - deferred.resolveWith( contexts, values ); - } - }; - }, - - progressValues, progressContexts, resolveContexts; - - // add listeners to Deferred subordinates; treat others as resolved - if ( length > 1 ) { - progressValues = new Array( length ); - progressContexts = new Array( length ); - resolveContexts = new Array( length ); - for ( ; i < length; i++ ) { - if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { - resolveValues[ i ].promise() - .done( updateFunc( i, resolveContexts, resolveValues ) ) - .fail( deferred.reject ) - .progress( updateFunc( i, progressContexts, progressValues ) ); - } else { - --remaining; - } - } - } - - // if we're not waiting on anything, resolve the master - if ( !remaining ) { - deferred.resolveWith( resolveContexts, resolveValues ); - } - - return deferred.promise(); - } -}); -jQuery.support = (function() { - - var support, all, a, - input, select, fragment, - opt, eventName, isSupported, i, - div = document.createElement("div"); - - // Setup - div.setAttribute( "className", "t" ); - div.innerHTML = "
              a"; - - // Support tests won't run in some limited or non-browser environments - all = div.getElementsByTagName("*"); - a = div.getElementsByTagName("a")[ 0 ]; - if ( !all || !a || !all.length ) { - return {}; - } - - // First batch of tests - select = document.createElement("select"); - opt = select.appendChild( document.createElement("option") ); - input = div.getElementsByTagName("input")[ 0 ]; - - a.style.cssText = "top:1px;float:left;opacity:.5"; - support = { - // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) - getSetAttribute: div.className !== "t", - - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: div.firstChild.nodeType === 3, - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText instead) - style: /top/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: a.getAttribute("href") === "/a", - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.5/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) - checkOn: !!input.value, - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: opt.selected, - - // Tests for enctype support on a form (#6743) - enctype: !!document.createElement("form").enctype, - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", - - // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode - boxModel: document.compatMode === "CSS1Compat", - - // Will be defined later - deleteExpando: true, - noCloneEvent: true, - inlineBlockNeedsLayout: false, - shrinkWrapBlocks: false, - reliableMarginRight: true, - boxSizingReliable: true, - pixelPosition: false - }; - - // Make sure checked status is properly cloned - input.checked = true; - support.noCloneChecked = input.cloneNode( true ).checked; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Support: IE<9 - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - - // Check if we can trust getAttribute("value") - input = document.createElement("input"); - input.setAttribute( "value", "" ); - support.input = input.getAttribute( "value" ) === ""; - - // Check if an input maintains its value after becoming a radio - input.value = "t"; - input.setAttribute( "type", "radio" ); - support.radioValue = input.value === "t"; - - // #11217 - WebKit loses check when the name is after the checked attribute - input.setAttribute( "checked", "t" ); - input.setAttribute( "name", "t" ); - - fragment = document.createDocumentFragment(); - fragment.appendChild( input ); - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - support.appendChecked = input.checked; - - // WebKit doesn't clone checked state correctly in fragments - support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE<9 - // Opera does not clone events (and typeof div.attachEvent === undefined). - // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() - if ( div.attachEvent ) { - div.attachEvent( "onclick", function() { - support.noCloneEvent = false; - }); - - div.cloneNode( true ).click(); - } - - // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) - // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php - for ( i in { submit: true, change: true, focusin: true }) { - div.setAttribute( eventName = "on" + i, "t" ); - - support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; - } - - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - // Run tests that need a body at doc ready - jQuery(function() { - var container, marginDiv, tds, - divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", - body = document.getElementsByTagName("body")[0]; - - if ( !body ) { - // Return for frameset docs that don't have a body - return; - } - - container = document.createElement("div"); - container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; - - body.appendChild( container ).appendChild( div ); - - // Support: IE8 - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - div.innerHTML = "
              t
              "; - tds = div.getElementsByTagName("td"); - tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; - isSupported = ( tds[ 0 ].offsetHeight === 0 ); - - tds[ 0 ].style.display = ""; - tds[ 1 ].style.display = "none"; - - // Support: IE8 - // Check if empty table cells still have offsetWidth/Height - support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); - - // Check box-sizing and margin behavior - div.innerHTML = ""; - div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; - support.boxSizing = ( div.offsetWidth === 4 ); - support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); - - // Use window.getComputedStyle because jsdom on node.js will break without it. - if ( window.getComputedStyle ) { - support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; - support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; - - // Check if div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container. (#3333) - // Fails in WebKit before Feb 2011 nightlies - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - marginDiv = div.appendChild( document.createElement("div") ); - marginDiv.style.cssText = div.style.cssText = divReset; - marginDiv.style.marginRight = marginDiv.style.width = "0"; - div.style.width = "1px"; - - support.reliableMarginRight = - !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); - } - - if ( typeof div.style.zoom !== core_strundefined ) { - // Support: IE<8 - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - div.innerHTML = ""; - div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; - support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); - - // Support: IE6 - // Check if elements with layout shrink-wrap their children - div.style.display = "block"; - div.innerHTML = "
              "; - div.firstChild.style.width = "5px"; - support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - - if ( support.inlineBlockNeedsLayout ) { - // Prevent IE 6 from affecting layout for positioned elements #11048 - // Prevent IE from shrinking the body in IE 7 mode #12869 - // Support: IE<8 - body.style.zoom = 1; - } - } - - body.removeChild( container ); - - // Null elements to avoid leaks in IE - container = div = tds = marginDiv = null; - }); - - // Null elements to avoid leaks in IE - all = select = fragment = opt = a = input = null; - - return support; -})(); - -var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, - rmultiDash = /([A-Z])/g; - -function internalData( elem, name, data, pvt /* Internal Use Only */ ){ - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, ret, - internalKey = jQuery.expando, - getByName = typeof name === "string", - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - elem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - cache[ id ] = {}; - - // Avoids exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - if ( !isNode ) { - cache[ id ].toJSON = jQuery.noop; - } - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( getByName ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; -} - -function internalRemoveData( elem, name, pvt ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var i, l, thisCache, - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split(" "); - } - } - } else { - // If "name" is an array of keys... - // When data is initially created, via ("key", "val") signature, - // keys will be converted to camelCase. - // Since there is no way to tell _how_ a key was added, remove - // both plain key and camelCase key. #12786 - // This will only penalize the array argument path. - name = name.concat( jQuery.map( name, jQuery.camelCase ) ); - } - - for ( i = 0, l = name.length; i < l; i++ ) { - delete thisCache[ name[i] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject( cache[ id ] ) ) { - return; - } - } - - // Destroy the cache - if ( isNode ) { - jQuery.cleanData( [ elem ], true ); - - // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) - } else if ( jQuery.support.deleteExpando || cache != cache.window ) { - delete cache[ id ]; - - // When all else fails, null - } else { - cache[ id ] = null; - } -} - -jQuery.extend({ - cache: {}, - - // Unique for each copy of jQuery on the page - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", - "applet": true - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data ) { - return internalData( elem, name, data ); - }, - - removeData: function( elem, name ) { - return internalRemoveData( elem, name ); - }, - - // For internal use only. - _data: function( elem, name, data ) { - return internalData( elem, name, data, true ); - }, - - _removeData: function( elem, name ) { - return internalRemoveData( elem, name, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - // Do not set data on non-element because it will not be cleared (#8335). - if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { - return false; - } - - var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; - - // nodes accept data unless otherwise specified; rejection can be conditional - return !noData || noData !== true && elem.getAttribute("classid") === noData; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var attrs, name, - elem = this[0], - i = 0, - data = null; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - attrs = elem.attributes; - for ( ; i < attrs.length; i++ ) { - name = attrs[i].name; - - if ( !name.indexOf( "data-" ) ) { - name = jQuery.camelCase( name.slice(5) ); - - dataAttr( elem, name, data[ name ] ); - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - return jQuery.access( this, function( value ) { - - if ( value === undefined ) { - // Try to fetch any internally stored data first - return elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; - } - - this.each(function() { - jQuery.data( this, key, value ); - }); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - // Only convert to a number if it doesn't change the string - +data + "" === data ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - var name; - for ( name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} -jQuery.extend({ - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || jQuery.isArray(data) ) { - queue = jQuery._data( elem, type, jQuery.makeArray(data) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - hooks.cur = fn; - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // not intended for public consumption - generates a queueHooks object, or returns the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return jQuery._data( elem, key ) || jQuery._data( elem, key, { - empty: jQuery.Callbacks("once memory").add(function() { - jQuery._removeData( elem, type + "queue" ); - jQuery._removeData( elem, key ); - }) - }); - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[0], type ); - } - - return data === undefined ? - this : - this.each(function() { - var queue = jQuery.queue( this, type, data ); - - // ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); - hooks.stop = function() { - clearTimeout( timeout ); - }; - }); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while( i-- ) { - tmp = jQuery._data( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -}); -var nodeHook, boolHook, - rclass = /[\t\r\n]/g, - rreturn = /\r/g, - rfocusable = /^(?:input|select|textarea|button|object)$/i, - rclickable = /^(?:a|area)$/i, - rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i, - ruseDefault = /^(?:checked|selected)$/i, - getSetAttribute = jQuery.support.getSetAttribute, - getSetInput = jQuery.support.input; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each(function() { - jQuery.removeAttr( this, name ); - }); - }, - - prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, - - addClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).addClass( value.call( this, j, this.className ) ); - }); - } - - if ( proceed ) { - // The disjunction here is for better compressibility (see removeClass) - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - " " - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - elem.className = jQuery.trim( cur ); - - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = arguments.length === 0 || typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).removeClass( value.call( this, j, this.className ) ); - }); - } - if ( proceed ) { - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - "" - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - elem.className = value ? jQuery.trim( cur ) : ""; - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( i ) { - jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.match( core_rnotwhite ) || []; - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space separated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - // Toggle whole class name - } else if ( type === core_strundefined || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // If the element has a class name or if we're passed "false", - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " ", - i = 0, - l = this.length; - for ( ; i < l; i++ ) { - if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - var ret, hooks, isFunction, - elem = this[0]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - // handle most common string cases - ret.replace(rreturn, "") : - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each(function( i ) { - var val, - self = jQuery(this); - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, self.val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map(val, function ( value ) { - return value == null ? "" : value + ""; - }); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - valHooks: { - option: { - get: function( elem ) { - // attributes.value is undefined in Blackberry 4.7 but - // uses .value. See #6932 - var val = elem.attributes.value; - return !val || val.specified ? elem.value : elem.text; - } - }, - select: { - get: function( elem ) { - var value, option, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one" || index < 0, - values = one ? null : [], - max = one ? index + 1 : options.length, - i = index < 0 ? - max : - one ? index : 0; - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // oldIE doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - // Don't return options that are disabled or in a disabled optgroup - ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && - ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var values = jQuery.makeArray( value ); - - jQuery(elem).find("option").each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - elem.selectedIndex = -1; - } - return values; - } - } - }, - - attr: function( elem, name, value ) { - var hooks, notxml, ret, - nType = elem.nodeType; - - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === core_strundefined ) { - return jQuery.prop( elem, name, value ); - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( notxml ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - - if ( value === null ) { - jQuery.removeAttr( elem, name ); - - } else if ( hooks && notxml && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - elem.setAttribute( name, value + "" ); - return value; - } - - } else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - - // In IE9+, Flash objects don't have .getAttribute (#12945) - // Support: IE9+ - if ( typeof elem.getAttribute !== core_strundefined ) { - ret = elem.getAttribute( name ); - } - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? - undefined : - ret; - } - }, - - removeAttr: function( elem, value ) { - var name, propName, - i = 0, - attrNames = value && value.match( core_rnotwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( (name = attrNames[i++]) ) { - propName = jQuery.propFix[ name ] || name; - - // Boolean attributes get special treatment (#10870) - if ( rboolean.test( name ) ) { - // Set corresponding property to false for boolean attributes - // Also clear defaultChecked/defaultSelected (if appropriate) for IE<8 - if ( !getSetAttribute && ruseDefault.test( name ) ) { - elem[ jQuery.camelCase( "default-" + name ) ] = - elem[ propName ] = false; - } else { - elem[ propName ] = false; - } - - // See #9699 for explanation of this approach (setting first, then removal) - } else { - jQuery.attr( elem, name, "" ); - } - - elem.removeAttribute( getSetAttribute ? name : propName ); - } - } - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { - // Setting the type on a radio button after the value resets the value in IE6-9 - // Reset value to default in case type is set after value during creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - propFix: { - tabindex: "tabIndex", - readonly: "readOnly", - "for": "htmlFor", - "class": "className", - maxlength: "maxLength", - cellspacing: "cellSpacing", - cellpadding: "cellPadding", - rowspan: "rowSpan", - colspan: "colSpan", - usemap: "useMap", - frameborder: "frameBorder", - contenteditable: "contentEditable" - }, - - prop: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set properties on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - if ( notxml ) { - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - return ( elem[ name ] = value ); - } - - } else { - if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - return elem[ name ]; - } - } - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - var attributeNode = elem.getAttributeNode("tabindex"); - - return attributeNode && attributeNode.specified ? - parseInt( attributeNode.value, 10 ) : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - } - } -}); - -// Hook for boolean attributes -boolHook = { - get: function( elem, name ) { - var - // Use .prop to determine if this attribute is understood as boolean - prop = jQuery.prop( elem, name ), - - // Fetch it accordingly - attr = typeof prop === "boolean" && elem.getAttribute( name ), - detail = typeof prop === "boolean" ? - - getSetInput && getSetAttribute ? - attr != null : - // oldIE fabricates an empty string for missing boolean attributes - // and conflates checked/selected into attroperties - ruseDefault.test( name ) ? - elem[ jQuery.camelCase( "default-" + name ) ] : - !!attr : - - // fetch an attribute node for properties not recognized as boolean - elem.getAttributeNode( name ); - - return detail && detail.value !== false ? - name.toLowerCase() : - undefined; - }, - set: function( elem, value, name ) { - if ( value === false ) { - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - // IE<8 needs the *property* name - elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); - - // Use defaultChecked and defaultSelected for oldIE - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; - } - - return name; - } -}; - -// fix oldIE value attroperty -if ( !getSetInput || !getSetAttribute ) { - jQuery.attrHooks.value = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - return jQuery.nodeName( elem, "input" ) ? - - // Ignore the value *property* by using defaultValue - elem.defaultValue : - - ret && ret.specified ? ret.value : undefined; - }, - set: function( elem, value, name ) { - if ( jQuery.nodeName( elem, "input" ) ) { - // Does not return so that setAttribute is also used - elem.defaultValue = value; - } else { - // Use nodeHook if defined (#1954); otherwise setAttribute is fine - return nodeHook && nodeHook.set( elem, value, name ); - } - } - }; -} - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = jQuery.valHooks.button = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ? - ret.value : - undefined; - }, - set: function( elem, value, name ) { - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - elem.setAttributeNode( - (ret = elem.ownerDocument.createAttribute( name )) - ); - } - - ret.value = value += ""; - - // Break association with cloned elements by also using setAttribute (#9646) - return name === "value" || value === elem.getAttribute( name ) ? - value : - undefined; - } - }; - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - get: nodeHook.get, - set: function( elem, value, name ) { - nodeHook.set( elem, value === "" ? false : value, name ); - } - }; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each([ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }); - }); -} - - -// Some attributes require a special call on IE -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !jQuery.support.hrefNormalized ) { - jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - get: function( elem ) { - var ret = elem.getAttribute( name, 2 ); - return ret == null ? undefined : ret; - } - }); - }); - - // href/src property should get the full normalized URL (#10299/#12915) - jQuery.each([ "href", "src" ], function( i, name ) { - jQuery.propHooks[ name ] = { - get: function( elem ) { - return elem.getAttribute( name, 4 ); - } - }; - }); -} - -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Note: IE uppercases css property names, but if we were to .toLowerCase() - // .cssText, that would destroy case senstitivity in URL's, like in "background" - return elem.style.cssText || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = value + "" ); - } - }; -} - -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }); -} - -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - -// Radios and checkboxes getter/setter -if ( !jQuery.support.checkOn ) { - jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - get: function( elem ) { - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - return elem.getAttribute("value") === null ? "on" : elem.value; - } - }; - }); -} -jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); - } - } - }); -}); -var rformElems = /^(?:input|select|textarea)$/i, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|contextmenu)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - var tmp, events, t, handleObjIn, - special, eventHandle, handleObj, - handlers, type, namespaces, origType, - elemData = jQuery._data( elem ); - - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !(events = elemData.events) ) { - events = elemData.events = {}; - } - if ( !(eventHandle = elemData.handle) ) { - eventHandle = elemData.handle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = ( types || "" ).match( core_rnotwhite ) || [""]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend({ - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join(".") - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !(handlers = events[ type ]) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - var j, handleObj, tmp, - origCount, t, events, - special, handlers, type, - namespaces, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ); - - if ( !elemData || !(events = elemData.events) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( core_rnotwhite ) || [""]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - delete elemData.handle; - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery._removeData( elem, "events" ); - } - }, - - trigger: function( event, data, elem, onlyHandlers ) { - var handle, ontype, cur, - bubbleType, special, tmp, i, - eventPath = [ elem || document ], - type = core_hasOwn.call( event, "type" ) ? event.type : event, - namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; - - cur = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf(".") >= 0 ) { - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split("."); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf(":") < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - event.isTrigger = true; - event.namespace = namespaces.join("."); - event.namespace_re = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === (elem.ownerDocument || document) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { - - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { - event.preventDefault(); - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && - !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - try { - elem[ type ](); - } catch ( e ) { - // IE<9 dies on focus/blur to hidden element (#1486,#12518) - // only reproducible on winXP IE8 native, not IE9 in IE8 mode - } - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event ); - - var i, ret, handleObj, matched, j, - handlerQueue = [], - args = core_slice.call( arguments ), - handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[0] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { - - // Triggered event must either 1) have no namespace, or - // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). - if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) - .apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( (event.result = ret) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var sel, handleObj, matches, i, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - // Black-hole SVG instance trees (#13180) - // Avoid non-left-click bubbling in Firefox (#3861) - if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { - - for ( ; cur != this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { - matches = []; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matches[ sel ] === undefined ) { - matches[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) >= 0 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matches[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push({ elem: cur, handlers: matches }); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( delegateCount < handlers.length ) { - handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); - } - - return handlerQueue; - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, copy, - type = event.type, - originalEvent = event, - fixHook = this.fixHooks[ type ]; - - if ( !fixHook ) { - this.fixHooks[ type ] = fixHook = - rmouseEvent.test( type ) ? this.mouseHooks : - rkeyEvent.test( type ) ? this.keyHooks : - {}; - } - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = new jQuery.Event( originalEvent ); - - i = copy.length; - while ( i-- ) { - prop = copy[ i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Support: IE<9 - // Fix target property (#1925) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Support: Chrome 23+, Safari? - // Target should not be a text node (#504, #13143) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Support: IE<9 - // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) - event.metaKey = !!event.metaKey; - - return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split(" "), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function( event, original ) { - var body, eventDoc, doc, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - special: { - load: { - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { - this.click(); - return false; - } - } - }, - focus: { - // Fire native event if possible so blur/focus sequence is correct - trigger: function() { - if ( this !== document.activeElement && this.focus ) { - try { - this.focus(); - return false; - } catch ( e ) { - // Support: IE<9 - // If we error on focus to hidden element (#1486, #12518), - // let .trigger() run the handlers - } - } - }, - delegateType: "focusin" - }, - blur: { - trigger: function() { - if ( this === document.activeElement && this.blur ) { - this.blur(); - return false; - } - }, - delegateType: "focusout" - }, - - beforeunload: { - postDispatch: function( event ) { - - // Even when returnValue equals to undefined Firefox will still show alert - if ( event.result !== undefined ) { - event.originalEvent.returnValue = event.result; - } - } - } - }, - - simulate: function( type, elem, event, bubble ) { - // Piggyback on a donor event to simulate a different one. - // Fake originalEvent to avoid donor's stopPropagation, but if the - // simulated event prevents default then we do the same on the donor. - var e = jQuery.extend( - new jQuery.Event(), - event, - { type: type, - isSimulated: true, - originalEvent: {} - } - ); - if ( bubble ) { - jQuery.event.trigger( e, null, elem ); - } else { - jQuery.event.dispatch.call( elem, e ); - } - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - var name = "on" + type; - - if ( elem.detachEvent ) { - - // #8545, #7054, preventing memory leaks for custom events in IE6-8 - // detachEvent needed property on element, by name of that event, to properly expose it to GC - if ( typeof elem[ name ] === core_strundefined ) { - elem[ name ] = null; - } - - elem.detachEvent( name, handle ); - } - }; - -jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !(this instanceof jQuery.Event) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - if ( !e ) { - return; - } - - // If preventDefault exists, run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // Support: IE - // Otherwise set the returnValue property of the original event to false - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - if ( !e ) { - return; - } - // If stopPropagation exists, run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - - // Support: IE - // Set the cancelBubble property of the original event to true - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - } -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !jQuery.contains( target, related )) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -}); - -// IE submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; - if ( form && !jQuery._data( form, "submitBubbles" ) ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submit_bubble = true; - }); - jQuery._data( form, "submitBubbles", true ); - } - }); - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - // If form was submitted by the user, bubble the event up the tree - if ( event._submit_bubble ) { - delete event._submit_bubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event, true ); - } - } - }, - - teardown: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !jQuery.support.changeBubbles ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._just_changed = true; - } - }); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._just_changed && !event.isTrigger ) { - this._just_changed = false; - } - // Allow triggered, simulated change events (#11500) - jQuery.event.simulate( "change", this, event, true ); - }); - } - return false; - } - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event, true ); - } - }); - jQuery._data( elem, "changeBubbles", true ); - } - }); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return !rformElems.test( this.nodeName ); - } - }; -} - -// Create "bubbling" focus and blur events -if ( !jQuery.support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler while someone wants focusin/focusout - var attaches = 0, - handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - if ( attaches++ === 0 ) { - document.addEventListener( orig, handler, true ); - } - }, - teardown: function() { - if ( --attaches === 0 ) { - document.removeEventListener( orig, handler, true ); - } - } - }; - }); -} - -jQuery.fn.extend({ - - on: function( types, selector, data, fn, /*INTERNAL*/ one ) { - var type, origFn; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - this.on( type, selector, data, types[ type ], one ); - } - return this; - } - - if ( data == null && fn == null ) { - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return this; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return this.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - }); - }, - one: function( types, selector, data, fn ) { - return this.on( types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each(function() { - jQuery.event.remove( this, types, fn, selector ); - }); - }, - - bind: function( types, data, fn ) { - return this.on( types, null, data, fn ); - }, - unbind: function( types, fn ) { - return this.off( types, null, fn ); - }, - - delegate: function( selector, types, data, fn ) { - return this.on( types, selector, data, fn ); - }, - undelegate: function( selector, types, fn ) { - // ( namespace ) or ( selector, types [, fn] ) - return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - triggerHandler: function( type, data ) { - var elem = this[0]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -}); -/*! - * Sizzle CSS Selector Engine - * Copyright 2012 jQuery Foundation and other contributors - * Released under the MIT license - * http://sizzlejs.com/ - */ -(function( window, undefined ) { - -var i, - cachedruns, - Expr, - getText, - isXML, - compile, - hasDuplicate, - outermostContext, - - // Local document vars - setDocument, - document, - docElem, - documentIsXML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - sortOrder, - - // Instance-specific data - expando = "sizzle" + -(new Date()), - preferredDoc = window.document, - support = {}, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - - // General-purpose constants - strundefined = typeof undefined, - MAX_NEGATIVE = 1 << 31, - - // Array methods - arr = [], - pop = arr.pop, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf if we can't use a native one - indexOf = arr.indexOf || function( elem ) { - var i = 0, - len = this.length; - for ( ; i < len; i++ ) { - if ( this[i] === elem ) { - return i; - } - } - return -1; - }, - - - // Regular expressions - - // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - // http://www.w3.org/TR/css3-syntax/#characters - characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", - - // Loosely modeled on CSS identifier characters - // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors - // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = characterEncoding.replace( "w", "w#" ), - - // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors - operators = "([*^$|!~]?=)", - attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + - "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", - - // Prefer arguments quoted, - // then not containing pseudos/brackets, - // then attribute selectors/non-parenthetical expressions, - // then anything else - // These preferences are here to reduce the number of selectors - // needing tokenize in the PSEUDO preFilter - pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + characterEncoding + ")" ), - "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), - "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), - "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rsibling = /[\x20\t\r\n\f]*[+~]/, - - rnative = /^[^{]+\{\s*\[native code/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rescape = /'|\\/g, - rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, - - // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = /\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g, - funescape = function( _, escaped ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - return high !== high ? - escaped : - // BMP codepoint - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }; - -// Use a stripped-down slice if we can't use a native one -try { - slice.call( preferredDoc.documentElement.childNodes, 0 )[0].nodeType; -} catch ( e ) { - slice = function( i ) { - var elem, - results = []; - while ( (elem = this[i++]) ) { - results.push( elem ); - } - return results; - }; -} - -/** - * For feature detection - * @param {Function} fn The function to test for native support - */ -function isNative( fn ) { - return rnative.test( fn + "" ); -} - -/** - * Create key-value caches of limited size - * @returns {Function(string, Object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var cache, - keys = []; - - return (cache = function( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key += " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key ] = value); - }); -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created div and expects a boolean result - */ -function assert( fn ) { - var div = document.createElement("div"); - - try { - return fn( div ); - } catch (e) { - return false; - } finally { - // release memory in IE - div = null; - } -} - -function Sizzle( selector, context, results, seed ) { - var match, elem, m, nodeType, - // QSA vars - i, groups, old, nid, newContext, newSelector; - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - - context = context || document; - results = results || []; - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { - return []; - } - - if ( !documentIsXML && !seed ) { - - // Shortcuts - if ( (match = rquickExpr.exec( selector )) ) { - // Speed-up: Sizzle("#ID") - if ( (m = match[1]) ) { - if ( nodeType === 9 ) { - elem = context.getElementById( m ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE, Opera, and Webkit return items - // by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - } else { - // Context is not a document - if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && - contains( context, elem ) && elem.id === m ) { - results.push( elem ); - return results; - } - } - - // Speed-up: Sizzle("TAG") - } else if ( match[2] ) { - push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); - return results; - - // Speed-up: Sizzle(".CLASS") - } else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) { - push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); - return results; - } - } - - // QSA path - if ( support.qsa && !rbuggyQSA.test(selector) ) { - old = true; - nid = expando; - newContext = context; - newSelector = nodeType === 9 && selector; - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - groups = tokenize( selector ); - - if ( (old = context.getAttribute("id")) ) { - nid = old.replace( rescape, "\\$&" ); - } else { - context.setAttribute( "id", nid ); - } - nid = "[id='" + nid + "'] "; - - i = groups.length; - while ( i-- ) { - groups[i] = nid + toSelector( groups[i] ); - } - newContext = rsibling.test( selector ) && context.parentNode || context; - newSelector = groups.join(","); - } - - if ( newSelector ) { - try { - push.apply( results, slice.call( newContext.querySelectorAll( - newSelector - ), 0 ) ); - return results; - } catch(qsaError) { - } finally { - if ( !old ) { - context.removeAttribute("id"); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Detect xml - * @param {Element|Object} elem An element or a document - */ -isXML = Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = elem && (elem.ownerDocument || elem).documentElement; - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var doc = node ? node.ownerDocument || node : preferredDoc; - - // If no document and documentElement is available, return - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Set our document - document = doc; - docElem = doc.documentElement; - - // Support tests - documentIsXML = isXML( doc ); - - // Check if getElementsByTagName("*") returns only elements - support.tagNameNoComments = assert(function( div ) { - div.appendChild( doc.createComment("") ); - return !div.getElementsByTagName("*").length; - }); - - // Check if attributes should be retrieved by attribute nodes - support.attributes = assert(function( div ) { - div.innerHTML = ""; - var type = typeof div.lastChild.getAttribute("multiple"); - // IE8 returns a string for some attributes even when not present - return type !== "boolean" && type !== "string"; - }); - - // Check if getElementsByClassName can be trusted - support.getByClassName = assert(function( div ) { - // Opera can't find a second classname (in 9.6) - div.innerHTML = ""; - if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { - return false; - } - - // Safari 3.2 caches class attributes and doesn't catch changes - div.lastChild.className = "e"; - return div.getElementsByClassName("e").length === 2; - }); - - // Check if getElementById returns elements by name - // Check if getElementsByName privileges form controls or returns elements by ID - support.getByName = assert(function( div ) { - // Inject content - div.id = expando + 0; - div.innerHTML = "
              "; - docElem.insertBefore( div, docElem.firstChild ); - - // Test - var pass = doc.getElementsByName && - // buggy browsers will return fewer than the correct 2 - doc.getElementsByName( expando ).length === 2 + - // buggy browsers will return more than the correct 0 - doc.getElementsByName( expando + 0 ).length; - support.getIdNotName = !doc.getElementById( expando ); - - // Cleanup - docElem.removeChild( div ); - - return pass; - }); - - // IE6/7 return modified attributes - Expr.attrHandle = assert(function( div ) { - div.innerHTML = ""; - return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && - div.firstChild.getAttribute("href") === "#"; - }) ? - {} : - { - "href": function( elem ) { - return elem.getAttribute( "href", 2 ); - }, - "type": function( elem ) { - return elem.getAttribute("type"); - } - }; - - // ID find and filter - if ( support.getIdNotName ) { - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== strundefined && !documentIsXML ) { - var m = context.getElementById( id ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [m] : []; - } - }; - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute("id") === attrId; - }; - }; - } else { - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== strundefined && !documentIsXML ) { - var m = context.getElementById( id ); - - return m ? - m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? - [m] : - undefined : - []; - } - }; - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); - return node && node.value === attrId; - }; - }; - } - - // Tag - Expr.find["TAG"] = support.tagNameNoComments ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== strundefined ) { - return context.getElementsByTagName( tag ); - } - } : - function( tag, context ) { - var elem, - tmp = [], - i = 0, - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( (elem = results[i++]) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Name - Expr.find["NAME"] = support.getByName && function( tag, context ) { - if ( typeof context.getElementsByName !== strundefined ) { - return context.getElementsByName( name ); - } - }; - - // Class - Expr.find["CLASS"] = support.getByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) { - return context.getElementsByClassName( className ); - } - }; - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21), - // no need to also add to buggyMatches since matches checks buggyQSA - // A support test would require too much code (would include document ready) - rbuggyQSA = [ ":focus" ]; - - if ( (support.qsa = isNative(doc.querySelectorAll)) ) { - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert(function( div ) { - // Select is set to empty string on purpose - // This is to test IE's treatment of not explictly - // setting a boolean content attribute, - // since its presence should be enough - // http://bugs.jquery.com/ticket/12359 - div.innerHTML = ""; - - // IE8 - Some boolean attributes are not treated correctly - if ( !div.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - }); - - assert(function( div ) { - - // Opera 10-12/IE8 - ^= $= *= and empty values - // Should not select anything - div.innerHTML = ""; - if ( div.querySelectorAll("[i^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":enabled").length ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - div.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector || - docElem.mozMatchesSelector || - docElem.webkitMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( div ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( div, "div" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( div, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = new RegExp( rbuggyMatches.join("|") ); - - // Element contains another - // Purposefully does not implement inclusive descendent - // As in, an element does not contain itself - contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - // Document order sorting - sortOrder = docElem.compareDocumentPosition ? - function( a, b ) { - var compare; - - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - if ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) { - if ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) { - if ( a === doc || contains( preferredDoc, a ) ) { - return -1; - } - if ( b === doc || contains( preferredDoc, b ) ) { - return 1; - } - return 0; - } - return compare & 4 ? -1 : 1; - } - - return a.compareDocumentPosition ? -1 : 1; - } : - function( a, b ) { - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - - // Parentless nodes are either documents or disconnected - } else if ( !aup || !bup ) { - return a === doc ? -1 : - b === doc ? 1 : - aup ? -1 : - bup ? 1 : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - // Always assume the presence of duplicates if sort doesn't - // pass them to our comparison function (as in Google Chrome). - hasDuplicate = false; - [0, 0].sort( sortOrder ); - support.detectDuplicates = hasDuplicate; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - // Make sure that attribute selectors are quoted - expr = expr.replace( rattributeQuotes, "='$1']" ); - - // rbuggyQSA always contains :focus, so no need for an existence check - if ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) { - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch(e) {} - } - - return Sizzle( expr, document, null, [elem] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - var val; - - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - if ( !documentIsXML ) { - name = name.toLowerCase(); - } - if ( (val = Expr.attrHandle[ name ]) ) { - return val( elem ); - } - if ( documentIsXML || support.attributes ) { - return elem.getAttribute( name ); - } - return ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ? - name : - val && val.specified ? val.value : null; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -// Document sorting and removing duplicates -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - i = 1, - j = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - results.sort( sortOrder ); - - if ( hasDuplicate ) { - for ( ; (elem = results[i]); i++ ) { - if ( elem === results[ i - 1 ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - return results; -}; - -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE ); - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( (cur = cur.nextSibling) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -// Returns a function to use in pseudos for input types -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -// Returns a function to use in pseudos for buttons -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -// Returns a function to use in pseudos for positionals -function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { - argument = +argument; - return markFunction(function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); - } - } - }); - }); -} - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - for ( ; (node = elem[i]); i++ ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (see #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[5] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[4] ) { - match[2] = match[4]; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeName ) { - if ( nodeName === "*" ) { - return function() { return true; }; - } - - nodeName = nodeName.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, outerCache, node, diff, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - // Seek `elem` from a previously-cached index - outerCache = parent[ expando ] || (parent[ expando ] = {}); - cache = outerCache[ type ] || []; - nodeIndex = cache[0] === dirruns && cache[1]; - diff = cache[0] === dirruns && cache[2]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - outerCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - // Use previously-cached element index if available - } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { - diff = cache[1]; - - // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) - } else { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { - // Cache the index of each encountered element - if ( useCache ) { - (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf.call( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - return function( elem ) { - return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifider - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsXML ? - elem.getAttribute("xml:lang") || elem.getAttribute("lang") : - elem.lang) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": function( elem ) { - return elem.disabled === false; - }, - - "disabled": function( elem ) { - return elem.disabled === true; - }, - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), - // not comment, processing instructions, or others - // Thanks to Diego Perini for the nodeName shortcut - // Greater than "@" means alpha characters (specifically not starting with "#" or "?") - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) - // use getAttribute instead to test this case - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -function tokenize( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( tokens = [] ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push( { - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -} - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - checkNonElements = base && dir === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var data, cache, outerCache, - dirkey = dirruns + " " + doneName; - - // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { - if ( (data = cache[1]) === true || data === cachedruns ) { - return data === true; - } - } else { - cache = outerCache[ dir ] = [ dirkey ]; - cache[1] = matcher( elem, context, xml ) || cachedruns; - if ( cache[1] === true ) { - return true; - } - } - } - } - } - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf.call( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - // A counter to specify which element is currently being matched - var matcherCachedRuns = 0, - bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, expandContext ) { - var elem, j, matcher, - setMatched = [], - matchedCount = 0, - i = "0", - unmatched = seed && [], - outermost = expandContext != null, - contextBackup = outermostContext, - // We must always have either seed elements or context - elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); - - if ( outermost ) { - outermostContext = context !== document && context; - cachedruns = matcherCachedRuns; - } - - // Add elements passing elementMatchers directly to results - // Keep `i` a string if there are no elements so `matchedCount` will be "00" below - for ( ; (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - cachedruns = ++matcherCachedRuns; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // Apply set filters to unmatched elements - matchedCount += i; - if ( bySet && i !== matchedCount ) { - j = 0; - while ( (matcher = setMatchers[j++]) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !group ) { - group = tokenize( selector ); - } - i = group.length; - while ( i-- ) { - cached = matcherFromTokens( group[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - } - return cached; -}; - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function select( selector, context, results, seed ) { - var i, tokens, token, type, find, - match = tokenize( selector ); - - if ( !seed ) { - // Try to minimize operations if there is only one group - if ( match.length === 1 ) { - - // Take a shortcut and set the context if the root selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - context.nodeType === 9 && !documentIsXML && - Expr.relative[ tokens[1].type ] ) { - - context = Expr.find["ID"]( token.matches[0].replace( runescape, funescape ), context )[0]; - if ( !context ) { - return results; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && context.parentNode || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, slice.call( seed, 0 ) ); - return results; - } - - break; - } - } - } - } - } - - // Compile and execute a filtering function - // Provide `match` to avoid retokenization if we modified the selector above - compile( selector, match )( - seed, - context, - documentIsXML, - results, - rsibling.test( selector ) - ); - return results; -} - -// Deprecated -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Easy API for creating new setFilters -function setFilters() {} -Expr.filters = setFilters.prototype = Expr.pseudos; -Expr.setFilters = new setFilters(); - -// Initialize with the default document -setDocument(); - -// Override sizzle attribute retrieval -Sizzle.attr = jQuery.attr; -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.pseudos; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})( window ); -var runtil = /Until$/, - rparentsprev = /^(?:parents|prev(?:Until|All))/, - isSimple = /^.[^:#\[\.,]*$/, - rneedsContext = jQuery.expr.match.needsContext, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var i, ret, self, - len = this.length; - - if ( typeof selector !== "string" ) { - self = this; - return this.pushStack( jQuery( selector ).filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - }) ); - } - - ret = []; - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, this[ i ], ret ); - } - - // Needed because $( selector, context ) becomes $( context ).find( selector ) - ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); - ret.selector = ( this.selector ? this.selector + " " : "" ) + selector; - return ret; - }, - - has: function( target ) { - var i, - targets = jQuery( target, this ), - len = targets.length; - - return this.filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false) ); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true) ); - }, - - is: function( selector ) { - return !!selector && ( - typeof selector === "string" ? - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - rneedsContext.test( selector ) ? - jQuery( selector, this.context ).index( this[0] ) >= 0 : - jQuery.filter( selector, this ).length > 0 : - this.filter( selector ).length > 0 ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - ret = [], - pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( ; i < l; i++ ) { - cur = this[i]; - - while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { - if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { - ret.push( cur ); - break; - } - cur = cur.parentNode; - } - } - - return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[0], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( jQuery.unique(all) ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter(selector) - ); - } -}); - -jQuery.fn.andSelf = jQuery.fn.addBack; - -function sibling( cur, dir ) { - do { - cur = cur[ dir ]; - } while ( cur && cur.nodeType !== 1 ); - - return cur; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; - - if ( this.length > 1 && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 ? - jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : - jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, keep ) { - - // Can't pass null or undefined to indexOf in Firefox 4 - // Set to 0 to skip string check - qualifier = qualifier || 0; - - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - var retVal = !!qualifier.call( elem, i, elem ); - return retVal === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem ) { - return ( elem === qualifier ) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem ) { - return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; - }); -} -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + - "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", - rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, - rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, - rtagName = /<([\w:]+)/, - rtbody = /\s*$/g, - - // We have to close these tags to support XHTML (#13200) - wrapMap = { - option: [ 1, "" ], - legend: [ 1, "
              ", "
              " ], - area: [ 1, "", "" ], - param: [ 1, "", "" ], - thead: [ 1, "", "
              " ], - tr: [ 2, "", "
              " ], - col: [ 2, "", "
              " ], - td: [ 3, "", "
              " ], - - // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, - // unless wrapped in a div with non-breaking characters in front of it. - _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
              ", "
              " ] - }, - safeFragment = createSafeFragment( document ), - fragmentDiv = safeFragment.appendChild( document.createElement("div") ); - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -jQuery.fn.extend({ - text: function( value ) { - return jQuery.access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); - }, null, value, arguments.length ); - }, - - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapAll( html.call(this, i) ); - }); - } - - if ( this[0] ) { - // The elements to wrap the target around - var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); - - if ( this[0].parentNode ) { - wrap.insertBefore( this[0] ); - } - - wrap.map(function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - }).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapInner( html.call(this, i) ); - }); - } - - return this.each(function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - }); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each(function(i) { - jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); - }); - }, - - unwrap: function() { - return this.parent().each(function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - }).end(); - }, - - append: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.appendChild( elem ); - } - }); - }, - - prepend: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.insertBefore( elem, this.firstChild ); - } - }); - }, - - before: function() { - return this.domManip( arguments, false, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - }); - }, - - after: function() { - return this.domManip( arguments, false, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - }); - }, - - // keepData is for internal use only--do not document - remove: function( selector, keepData ) { - var elem, - i = 0; - - for ( ; (elem = this[i]) != null; i++ ) { - if ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) { - if ( !keepData && elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem ) ); - } - - if ( elem.parentNode ) { - if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { - setGlobalEval( getAll( elem, "script" ) ); - } - elem.parentNode.removeChild( elem ); - } - } - } - - return this; - }, - - empty: function() { - var elem, - i = 0; - - for ( ; (elem = this[i]) != null; i++ ) { - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - - // If this is a select, ensure that it displays empty (#12336) - // Support: IE<9 - if ( elem.options && jQuery.nodeName( elem, "select" ) ) { - elem.options.length = 0; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function () { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - }); - }, - - html: function( value ) { - return jQuery.access( this, function( value ) { - var elem = this[0] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - undefined; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && - ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { - - value = value.replace( rxhtmlTag, "<$1>" ); - - try { - for (; i < l; i++ ) { - // Remove element nodes and prevent memory leaks - elem = this[i] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch(e) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function( value ) { - var isFunc = jQuery.isFunction( value ); - - // Make sure that the elements are removed from the DOM before they are inserted - // this can help fix replacing a parent with child elements - if ( !isFunc && typeof value !== "string" ) { - value = jQuery( value ).not( this ).detach(); - } - - return this.domManip( [ value ], true, function( elem ) { - var next = this.nextSibling, - parent = this.parentNode; - - if ( parent ) { - jQuery( this ).remove(); - parent.insertBefore( elem, next ); - } - }); - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, table, callback ) { - - // Flatten any nested arrays - args = core_concat.apply( [], args ); - - var first, node, hasScripts, - scripts, doc, fragment, - i = 0, - l = this.length, - set = this, - iNoClone = l - 1, - value = args[0], - isFunction = jQuery.isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { - return this.each(function( index ) { - var self = set.eq( index ); - if ( isFunction ) { - args[0] = value.call( this, index, table ? self.html() : undefined ); - } - self.domManip( args, table, callback ); - }); - } - - if ( l ) { - fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - if ( first ) { - table = table && jQuery.nodeName( first, "tr" ); - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( - table && jQuery.nodeName( this[i], "table" ) ? - findOrAppend( this[i], "tbody" ) : - this[i], - node, - i - ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { - - if ( node.src ) { - // Hope ajax is available... - jQuery.ajax({ - url: node.src, - type: "GET", - dataType: "script", - async: false, - global: false, - "throws": true - }); - } else { - jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); - } - } - } - } - - // Fix #11809: Avoid leaking memory - fragment = first = null; - } - } - - return this; - } -}); - -function findOrAppend( elem, tag ) { - return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - var attr = elem.getAttributeNode("type"); - elem.type = ( attr && attr.specified ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - if ( match ) { - elem.type = match[1]; - } else { - elem.removeAttribute("type"); - } - return elem; -} - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var elem, - i = 0; - for ( ; (elem = elems[i]) != null; i++ ) { - jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); - } -} - -function cloneCopyEvent( src, dest ) { - - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function fixCloneNodeIssues( src, dest ) { - var nodeName, e, data; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 copies events bound via attachEvent when using cloneNode. - if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { - data = jQuery._data( dest ); - - for ( e in data.events ) { - jQuery.removeEvent( dest, e, data.handle ); - } - - // Event data gets referenced instead of copied if the expando gets copied too - dest.removeAttribute( jQuery.expando ); - } - - // IE blanks contents when cloning scripts, and tries to evaluate newly-set text - if ( nodeName === "script" && dest.text !== src.text ) { - disableScript( dest ).text = src.text; - restoreScript( dest ); - - // IE6-10 improperly clones children of object elements using classid. - // IE10 throws NoModificationAllowedError if parent is null, #12132. - } else if ( nodeName === "object" ) { - if ( dest.parentNode ) { - dest.outerHTML = src.outerHTML; - } - - // This path appears unavoidable for IE9. When cloning an object - // element in IE9, the outerHTML strategy above is not sufficient. - // If the src has innerHTML and the destination does not, - // copy the src.innerHTML into the dest.innerHTML. #10324 - if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { - dest.innerHTML = src.innerHTML; - } - - } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - - dest.defaultChecked = dest.checked = src.checked; - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.defaultSelected = dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - i = 0, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone(true); - jQuery( insert[i] )[ original ]( elems ); - - // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() - core_push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -}); - -function getAll( context, tag ) { - var elems, elem, - i = 0, - found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : - typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) : - undefined; - - if ( !found ) { - for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { - if ( !tag || jQuery.nodeName( elem, tag ) ) { - found.push( elem ); - } else { - jQuery.merge( found, getAll( elem, tag ) ); - } - } - } - - return tag === undefined || tag && jQuery.nodeName( context, tag ) ? - jQuery.merge( [ context ], found ) : - found; -} - -// Used in buildFragment, fixes the defaultChecked property -function fixDefaultChecked( elem ) { - if ( manipulation_rcheckableType.test( elem.type ) ) { - elem.defaultChecked = elem.checked; - } -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var destElements, node, clone, i, srcElements, - inPage = jQuery.contains( elem.ownerDocument, elem ); - - if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { - clone = elem.cloneNode( true ); - - // IE<=8 does not properly clone detached, unknown element nodes - } else { - fragmentDiv.innerHTML = elem.outerHTML; - fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); - } - - if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && - (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { - - // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - // Fix all IE cloning issues - for ( i = 0; (node = srcElements[i]) != null; ++i ) { - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[i] ) { - fixCloneNodeIssues( node, destElements[i] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0; (node = srcElements[i]) != null; i++ ) { - cloneCopyEvent( node, destElements[i] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - destElements = srcElements = node = null; - - // Return the cloned set - return clone; - }, - - buildFragment: function( elems, context, scripts, selection ) { - var j, elem, contains, - tmp, tag, tbody, wrap, - l = elems.length, - - // Ensure a safe fragment - safe = createSafeFragment( context ), - - nodes = [], - i = 0; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || safe.appendChild( context.createElement("div") ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - - tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; - - // Descend through wrappers to the right content - j = wrap[0]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Manually add leading whitespace removed by IE - if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); - } - - // Remove IE's autoinserted from table fragments - if ( !jQuery.support.tbody ) { - - // String was a , *may* have spurious - elem = tag === "table" && !rtbody.test( elem ) ? - tmp.firstChild : - - // String was a bare or - wrap[1] === "
              " && !rtbody.test( elem ) ? - tmp : - 0; - - j = elem && elem.childNodes.length; - while ( j-- ) { - if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { - elem.removeChild( tbody ); - } - } - } - - jQuery.merge( nodes, tmp.childNodes ); - - // Fix #12392 for WebKit and IE > 9 - tmp.textContent = ""; - - // Fix #12392 for oldIE - while ( tmp.firstChild ) { - tmp.removeChild( tmp.firstChild ); - } - - // Remember the top-level container for proper cleanup - tmp = safe.lastChild; - } - } - } - - // Fix #11356: Clear elements from fragment - if ( tmp ) { - safe.removeChild( tmp ); - } - - // Reset defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - if ( !jQuery.support.appendChecked ) { - jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); - } - - i = 0; - while ( (elem = nodes[ i++ ]) ) { - - // #4087 - If origin and destination elements are the same, and this is - // that element, do not do anything - if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( safe.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( (elem = tmp[ j++ ]) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - tmp = null; - - return safe; - }, - - cleanData: function( elems, /* internal */ acceptData ) { - var elem, type, id, data, - i = 0, - internalKey = jQuery.expando, - cache = jQuery.cache, - deleteExpando = jQuery.support.deleteExpando, - special = jQuery.event.special; - - for ( ; (elem = elems[i]) != null; i++ ) { - - if ( acceptData || jQuery.acceptData( elem ) ) { - - id = elem[ internalKey ]; - data = id && cache[ id ]; - - if ( data ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Remove cache only if it was not already removed by jQuery.event.remove - if ( cache[ id ] ) { - - delete cache[ id ]; - - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( deleteExpando ) { - delete elem[ internalKey ]; - - } else if ( typeof elem.removeAttribute !== core_strundefined ) { - elem.removeAttribute( internalKey ); - - } else { - elem[ internalKey ] = null; - } - - core_deletedIds.push( id ); - } - } - } - } - } -}); -var iframe, getStyles, curCSS, - ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity\s*=\s*([^)]*)/, - rposition = /^(top|right|bottom|left)$/, - // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" - // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rmargin = /^margin/, - rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), - rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), - rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), - elemdisplay = { BODY: "block" }, - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: 0, - fontWeight: 400 - }, - - cssExpand = [ "Top", "Right", "Bottom", "Left" ], - cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; - -// return a css property mapped to a potentially vendor prefixed property -function vendorPropName( style, name ) { - - // shortcut for names that are not vendor prefixed - if ( name in style ) { - return name; - } - - // check for vendor prefixed names - var capName = name.charAt(0).toUpperCase() + name.slice(1), - origName = name, - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in style ) { - return name; - } - } - - return origName; -} - -function isHidden( elem, el ) { - // isHidden might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); -} - -function showHide( elements, show ) { - var display, elem, hidden, - values = [], - index = 0, - length = elements.length; - - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - values[ index ] = jQuery._data( elem, "olddisplay" ); - display = elem.style.display; - if ( show ) { - // Reset the inline display of this element to learn if it is - // being hidden by cascaded rules or not - if ( !values[ index ] && display === "none" ) { - elem.style.display = ""; - } - - // Set elements which have been overridden with display: none - // in a stylesheet to whatever the default browser style is - // for such an element - if ( elem.style.display === "" && isHidden( elem ) ) { - values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); - } - } else { - - if ( !values[ index ] ) { - hidden = isHidden( elem ); - - if ( display && display !== "none" || !hidden ) { - jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); - } - } - } - } - - // Set the display of most of the elements in a second loop - // to avoid the constant reflow - for ( index = 0; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - if ( !show || elem.style.display === "none" || elem.style.display === "" ) { - elem.style.display = show ? values[ index ] || "" : "none"; - } - } - - return elements; -} - -jQuery.fn.extend({ - css: function( name, value ) { - return jQuery.access( this, function( elem, name, value ) { - var len, styles, - map = {}, - i = 0; - - if ( jQuery.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - }, - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - var bool = typeof state === "boolean"; - - return this.each(function() { - if ( bool ? state : isHidden( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - }); - } -}); - -jQuery.extend({ - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Exclude the following css properties to add px - cssNumber: { - "columnCount": true, - "fillOpacity": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = jQuery.camelCase( name ), - style = elem.style; - - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // convert relative number strings (+= or -=) to relative numbers. #7345 - if ( type === "string" && (ret = rrelNum.exec( value )) ) { - value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); - // Fixes bug #9237 - type = "number"; - } - - // Make sure that NaN and null values aren't set. See: #7116 - if ( value == null || type === "number" && isNaN( value ) ) { - return; - } - - // If a number was passed in, add 'px' to the (except for certain CSS properties) - if ( type === "number" && !jQuery.cssNumber[ origName ] ) { - value += "px"; - } - - // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, - // but it would mean to define eight (for every problematic property) identical functions - if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { - - // Wrapped to prevent IE from throwing errors when 'invalid' values are provided - // Fixes bug #5509 - try { - style[ name ] = value; - } catch(e) {} - } - - } else { - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var num, val, hooks, - origName = jQuery.camelCase( name ); - - // Make sure that we're working with the right name - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - //convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Return, converting to number if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; - } - return val; - }, - - // A method for quickly swapping in/out CSS properties to get correct calculations - swap: function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; - } -}); - -// NOTE: we've included the "window" in window.getComputedStyle -// because jsdom on node.js will break without it. -if ( window.getComputedStyle ) { - getStyles = function( elem ) { - return window.getComputedStyle( elem, null ); - }; - - curCSS = function( elem, name, _computed ) { - var width, minWidth, maxWidth, - computed = _computed || getStyles( elem ), - - // getPropertyValue is only needed for .css('filter') in IE9, see #12537 - ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, - style = elem.style; - - if ( computed ) { - - if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right - // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels - // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values - if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret; - }; -} else if ( document.documentElement.currentStyle ) { - getStyles = function( elem ) { - return elem.currentStyle; - }; - - curCSS = function( elem, name, _computed ) { - var left, rs, rsLeft, - computed = _computed || getStyles( elem ), - ret = computed ? computed[ name ] : undefined, - style = elem.style; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && style[ name ] ) { - ret = style[ name ]; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - // but not position css attributes, as those are proportional to the parent element instead - // and we can't measure the parent instead because it might trigger a "stacking dolls" problem - if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { - - // Remember the original values - left = style.left; - rs = elem.runtimeStyle; - rsLeft = rs && rs.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - rs.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - rs.left = rsLeft; - } - } - - return ret === "" ? "auto" : ret; - }; -} - -function setPositiveNumber( elem, value, subtract ) { - var matches = rnumsplit.exec( value ); - return matches ? - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : - value; -} - -function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { - var i = extra === ( isBorderBox ? "border" : "content" ) ? - // If we already have the right measurement, avoid augmentation - 4 : - // Otherwise initialize for horizontal or vertical properties - name === "width" ? 1 : 0, - - val = 0; - - for ( ; i < 4; i += 2 ) { - // both box models exclude margin, so add it if we want it - if ( extra === "margin" ) { - val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); - } - - if ( isBorderBox ) { - // border-box includes padding, so remove it if we want content - if ( extra === "content" ) { - val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // at this point, extra isn't border nor margin, so remove border - if ( extra !== "margin" ) { - val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } else { - // at this point, extra isn't content, so add padding - val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // at this point, extra isn't content nor padding, so add border - if ( extra !== "padding" ) { - val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - return val; -} - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property, which is equivalent to the border-box value - var valueIsBorderBox = true, - val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - styles = getStyles( elem ), - isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // some non-html elements return undefined for offsetWidth, so check for null/undefined - // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 - // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 - if ( val <= 0 || val == null ) { - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name, styles ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test(val) ) { - return val; - } - - // we need the check for style in case a browser which returns unreliable values - // for getComputedStyle silently falls back to the reliable elem.style - valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - } - - // use the active box-sizing model to add/subtract irrelevant styles - return ( val + - augmentWidthOrHeight( - elem, - name, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles - ) - ) + "px"; -} - -// Try to determine the default display value of an element -function css_defaultDisplay( nodeName ) { - var doc = document, - display = elemdisplay[ nodeName ]; - - if ( !display ) { - display = actualDisplay( nodeName, doc ); - - // If the simple way fails, read from inside an iframe - if ( display === "none" || !display ) { - // Use the already-created iframe if possible - iframe = ( iframe || - jQuery("